diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index 1aab0cef2..000000000
--- a/.gitignore
+++ /dev/null
@@ -1,3 +0,0 @@
-.DS_Store
-.vscode/
-plants.txt
diff --git a/01_materials/slides/01_data_types.ipynb b/01_materials/slides/01_data_types.ipynb
deleted file mode 100644
index 481169455..000000000
--- a/01_materials/slides/01_data_types.ipynb
+++ /dev/null
@@ -1,340 +0,0 @@
-{
- "cells": [
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "# Data Types\n",
- "We will be learning the fundamental data types used often in Python.\n",
- "\n",
- "
"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "# Contents:\n",
- "\n",
- "1. Types\n",
- "2. Statements and Expressions\n",
- "3. Additional Arithmetic Operators\n",
- "4. Logical\n",
- "5. Variables"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## Types\n",
- "\n",
- "Every piece of data in Python has a _type_. Data types dictate how values are stored by the computer and what operations we can perform on the data. For example, an `int`, or integer, value must be a whole number, and we can use it for arithmetic. The `float`, or floating point data type supports decimal numbers. There are other types for text (`string`), true/false values (`bool`), and more complex data that we will go into later.\n",
- "\n",
- "## Statements and Expressions\n",
- "\n",
- "A _statement_ in programming is a command. You can think of them as the smallest units of code. An _expression_ is a statement that produces a single value.\n",
- "\n",
- "We can use arithmetic operators like `+` and `-` to write simple expressions."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "5 + 6"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "`5 + 6` is an expression. \n",
- "`+` is an operator. \n",
- "`5` and `6` are operands. \n",
- "`11` is a value.\n",
- "\n",
- "The result of an expression may be a different data type than its inputs."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "5 / 2"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## Additional Arithmetic Operators\n",
- "\n",
- "| Operator | Description |\n",
- "|---|---|\n",
- "| // | Integer division (always rounds down)|\n",
- "| % | Modulo or remainder |\n",
- "| ** | Exponentiation |"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "### Examples"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "10 // 3\n",
- "10 % 3\n",
- "10 / 3\n",
- "10 ** 3"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "# Logical \n",
- "\n",
- "## True/False\n",
- "\n",
- "Python also has a data type, `bool`, for `True` and `False` values. The term `bool` derives from Boolean, which is itself a reference to the mathematician and logician George Boole, whose work underpins information and computing.\n",
- "\n",
- "## Comparison operators\n",
- "\n",
- "Python has comparison operators as well as arithmetic operators. Unlike arithmetic expressions, which produce integer or float values, comparison expressions produce a Boolean value.\n",
- "\n",
- "| Operator | Description |\n",
- "| --- | --- |\n",
- "| `>` | Greater than |\n",
- "| `>=` | Greater than or equal to |\n",
- "| `<` | Less than |\n",
- "| `<=` | Less than or equal to |\n",
- "| `==` | Equal to |\n",
- "| `!=` | Not equal to |\n",
- "\n",
- "### Examples"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "50 > 25\n",
- "-15 >= -14.99\n",
- "20 == 20"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## Exercise\n",
- "Create three (3) additional examples using the operators above."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "# Your code goes here"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## Operator precedence\n",
- "\n",
- "Arithmetic and comparison operators are evaluated in the following order. We can enclose operations in parentheses to override the order of precedence -- operations in parentheses are evaluated before the rest of the expression.\n",
- "\n",
- "| Order | Operator | Description |\n",
- "|---|---|---|\n",
- "| 1 | `**` | Exponentiation |\n",
- "| 2 | `-`| Negation |\n",
- "| 3 | `*`, `/`, `//`, `%` | Multiplication, division, integer division, and modulo |\n",
- "| 4 | `+`, `-` | Addition and subtraction |\n",
- "| 5 | `<`, `<=`, `>`, `>=`, `==`, `!=` | Less than, less than or equal to, greater than, greater than or equal to, equal, not equal |"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "# Variables\n",
- "\n",
- "## What is a variable?\n",
- "\n",
- "A _variable_ is a name that refers to a value. Variables make it easier to keep track of data.\n",
- "\n",
- "Variable names in Python can include letters, digits, and underscores. They cannot start with a digit. They are also case sensitive, so `variable` and `Variable` would be two different variables!\n",
- "\n",
- "## Creating variables\n",
- "\n",
- "To create a variable, we assign it a value using the assignment operator `=`."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "degrees_celsius = 25"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "This statement is called an _assignment statement_. Now that the variable `degrees_celsius` has been assigned a value, we can use it anywhere we would use that value."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "degrees_fahrenheit = (9 / 5) * degrees_celsius + 32\n",
- "degrees_fahrenheit"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## Reassigning variables\n",
- "\n",
- "When we reassign a variable, we change the value that variable refers to. Reassigning a variable does not change any other variable. Notice that `degrees_fahrenheit` stayed the same, even when we reassigned `degrees_celsius`."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "degrees_celsius = 0\n",
- "degrees_fahrenheit"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "We can use a variable on both sides of an assignment statement. This is useful for updating a variable based on its current value."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "degrees_celsius = degrees_celsius + 10\n",
- "degrees_celsius"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "Notice what happens when we set one variable equal to another, then reassign the first one."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "a = 1\n",
- "b = a\n",
- "b"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "a = 2\n",
- "b"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "print(id(a))\n",
- "print(id(b))"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## Augmented assignment\n",
- "\n",
- "While `degrees_celsius = degrees_celsius + 10` is a valid statement, there is a more concise way to express this: by putting the operator `+` before the assignment operator `=`."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "degrees_celsius = 0\n",
- "degrees_celsius += 10\n",
- "degrees_celsius"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "Similarly, subtraction, multiplication, division, expontiation, integer division, and modulo can be used as an augmented assignment."
- ]
- }
- ],
- "metadata": {
- "kernelspec": {
- "display_name": "Python 3",
- "language": "python",
- "name": "python3"
- },
- "language_info": {
- "codemirror_mode": {
- "name": "ipython",
- "version": 3
- },
- "file_extension": ".py",
- "mimetype": "text/x-python",
- "name": "python",
- "nbconvert_exporter": "python",
- "pygments_lexer": "ipython3",
- "version": "3.11.8"
- }
- },
- "nbformat": 4,
- "nbformat_minor": 2
-}
diff --git a/01_materials/slides/02_comments_and_errors.ipynb b/01_materials/slides/02_comments_and_errors.ipynb
deleted file mode 100644
index 721282ef6..000000000
--- a/01_materials/slides/02_comments_and_errors.ipynb
+++ /dev/null
@@ -1,159 +0,0 @@
-{
- "cells": [
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "# Errors\n",
- "\n",
- "## Contents:\n",
- "1. Errors\n",
- "2. Comments\n",
- "3. Readability\n",
- "\n",
- "## What causes errors?\n",
- "\n",
- "Errors indicate that there is something in the code that the computer cannot execute. We will see some of the reasons that can happen. When an error occurs, Python produces an error message called a _traceback_. Tracebacks can be quite cryptic, but they tell us what code was running at the time of the error. When in doubt, copying the error message at the bottom of a traceback into a search engine can help.\n",
- "\n",
- "## Syntax errors\n",
- "\n",
- "A _syntax error_ occurs when our program contains code that isn't valid Python. Below, we are trying to assign the value `x` to the variable `12` -- but variable names that start with digits are not allowed in Python!"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "12 = x"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "Below, Python expects another operand to the right of `-`, and throws a syntax error because there isn't a second operand."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "25 -"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## Name errors\n",
- "\n",
- "A _name error_ occurs when we try to use a variable that hasn't been assigned yet. Name errors are especially common when working in notebooks, where code is often not run from top to bottom."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "my_variable + 1"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "# Comments\n",
- "\n",
- "## What are comments?\n",
- "\n",
- "Comments are a way to annotate code within code. They're used to explain parts of code to human audiences. In Python, comments start with a `#` symbol. The interpreter ignores everything from the `#` to the end of the line when translating a program into machine instructions."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "# This is a comment. It is not evaluated when we run our code"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "student1_grade = 90\n",
- "student2_grade = 50\n",
- "student3_grade = 74\n",
- "average_grade = (student1_grade + student2_grade + student3_grade) / 3\n",
- "average_grade # These lines of code will produce a value.\n",
- "# Python will ignore everything after the # symbol."
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "# Readability\n",
- "\n",
- "## What is readable code and why should we care?\n",
- "\n",
- "Code that is easier to read is easier to debug and maintain. Readability becomes more important the larger the codebase or the team is.\n",
- "\n",
- "Some practices that make code easier to read: \n",
- "* **White space**: A space to either side of an operand helps readability. We can also split code across multiple lines by wrapping it in parentheses.\n",
- "* **Comments**: Comments communicate the gist of a program and help explain complicated sections of code. They can also be used to plan future work in plain language, or to toggle lines of code on and off for debugging.\n",
- "* **Clear and consistent variable names**: Descriptive variable names contribute to self-documenting code and reduce the need for comments. Consistent naming practices reduce the likelihood of referencing the wrong variable or raising a NameError.\n",
- "\n",
- "## Which code is easier to read and follow?\n",
- "\n",
- "Version 1\n",
- "```python\n",
- "studentone_grade=90\n",
- "StudentGrade2=50\n",
- "stu3gr=74\n",
- "avggrade=(studentone_grade+StudentGrade2+stut3gr)/3\n",
- "```\n",
- "\n",
- "Version 2 \n",
- "```python\n",
- "student1_grade = 90\n",
- "student2_grade = 50\n",
- "student3_grade = 74\n",
- "average_grade = ((student1_grade\n",
- " + student2_grade\n",
- " + student3_grade)\n",
- " / 3)\n",
- "```\n"
- ]
- }
- ],
- "metadata": {
- "kernelspec": {
- "display_name": "Python 3",
- "language": "python",
- "name": "python3"
- },
- "language_info": {
- "codemirror_mode": {
- "name": "ipython",
- "version": 3
- },
- "file_extension": ".py",
- "mimetype": "text/x-python",
- "name": "python",
- "nbconvert_exporter": "python",
- "pygments_lexer": "ipython3",
- "version": "3.11.5"
- }
- },
- "nbformat": 4,
- "nbformat_minor": 2
-}
diff --git a/01_materials/slides/03_functions.ipynb b/01_materials/slides/03_functions.ipynb
deleted file mode 100644
index dd0ba5fe4..000000000
--- a/01_materials/slides/03_functions.ipynb
+++ /dev/null
@@ -1,816 +0,0 @@
-{
- "cells": [
- {
- "cell_type": "markdown",
- "id": "f31cc4a9",
- "metadata": {
- "id": "f31cc4a9"
- },
- "source": [
- "# Functions"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "14665d06",
- "metadata": {},
- "source": [
- "## Contents\n",
- "1. What is a function?\n",
- "2. Built-in functions\n",
- "3. More built-in functions\n",
- "4. Nesting functions\n",
- "5. Writing your own functions\n",
- "6. Documenting functions\n",
- "7. Docstrings\n",
- "8. Structure of a function\n",
- "9. Variable Scope\n",
- "10. Function Design Recipe"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "3a700ac7",
- "metadata": {
- "id": "3a700ac7"
- },
- "source": [
- "## What is a function?\n",
- "\n",
- "A _function_ is a block of code that performs a task. A function takes zero or more inputs and _returns_ an output.\n",
- "\n",
- "When we use a function, we say we are _calling_ it. We call a function by typing out the function's name followed by parentheses. Inside the parentheses, we can _pass_ in data for the function to use. These values are called _arguments_."
- ]
- },
- {
- "cell_type": "markdown",
- "id": "b79adc3b",
- "metadata": {
- "id": "b79adc3b"
- },
- "source": [
- "## Built-in functions\n",
- "\n",
- "Python comes with several functions already built in. To display information, for example, we can call the `print()` function. (Note that if the last line in a notebook cell is an expression, the notebook will automatically display the result, no `print()` function needed.)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "345bda77",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "345bda77",
- "outputId": "600f7c37-4cd3-45ee-a5a3-04137eedaeb8"
- },
- "outputs": [],
- "source": [
- "print(42)"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "d25e6107",
- "metadata": {
- "id": "d25e6107"
- },
- "source": [
- "To check the data type of a value, we can call the `type()` function."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "d4bad1e7",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "d4bad1e7",
- "outputId": "0a4308b2-73e4-413f-83ad-da40c20749f7"
- },
- "outputs": [],
- "source": [
- "type(42)"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "f70b9a2d",
- "metadata": {
- "id": "f70b9a2d"
- },
- "source": [
- "We can pass in expressions as arguments."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "47c6ffff",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "47c6ffff",
- "outputId": "fcc37f1c-563f-4416-93d1-e03dc1a2693b"
- },
- "outputs": [],
- "source": [
- "print(10 ** 2)"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "aa7eec74",
- "metadata": {
- "id": "aa7eec74"
- },
- "source": [
- "## More built-in functions\n",
- "\n",
- "Some other useful built-in functions include `abs()` for absolute values, `round()` for rounding, and `int()` and `float()` for type conversion into integers and floats, respectively."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "3cf13d07",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "3cf13d07",
- "outputId": "3bbf3381-4353-4db0-8682-e0d541affc88"
- },
- "outputs": [],
- "source": [
- "abs(-43)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "bf9825ec",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "bf9825ec",
- "outputId": "27d9c8f6-426f-4595-fc36-b2bb7e67d857"
- },
- "outputs": [],
- "source": [
- "round(2/3)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "c1bff1ca",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "c1bff1ca",
- "outputId": "e3c36027-b473-440f-d30e-07765bc5ab64"
- },
- "outputs": [],
- "source": [
- "int(3.99)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "9c79d3da",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "9c79d3da",
- "outputId": "63f9f2a8-ef80-4a62-c732-cec979ea55da"
- },
- "outputs": [],
- "source": [
- "float(7)"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "93f36746",
- "metadata": {
- "id": "93f36746"
- },
- "source": [
- "## Nesting functions\n",
- "\n",
- "We can also _nest_ functions within one another. Nested functions are evaluated from the inside out. The code below is evaluated in the following order:\n",
- "\n",
- "1. `2 * 1.5`\n",
- "2. `round()`\n",
- "3. `type()`\n",
- "4. `print()`"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "49041e2a",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "49041e2a",
- "outputId": "b247fd1b-5004-472a-f036-336f5a8e28e7"
- },
- "outputs": [],
- "source": [
- "print(type(round(2 * 1.5)))"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "5d6190cf",
- "metadata": {},
- "source": [
- "## Getting help\n",
- "\n",
- "How do we know what a function does or what arguments it can take? One way is by looking up documentation online. Another is by using the built in `help()` function, with the name of the function we want to know about passed in as an argument."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "95c23628",
- "metadata": {},
- "outputs": [],
- "source": [
- "help(round)"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "b8e495fb",
- "metadata": {
- "id": "b8e495fb"
- },
- "source": [
- "## Writing our own functions\n",
- "\n",
- "We can also create our own functions, which allows us to reuse code without copying and pasting. As we write longer programs, functions also help structure our code."
- ]
- },
- {
- "cell_type": "markdown",
- "id": "ffe15547",
- "metadata": {
- "id": "ffe15547"
- },
- "source": [
- "We use the `def` keyword to start a _function definition statement_. The function name follows `def`. Function names can use letters, digits, and underscores; they cannot start with a digit; and they are case sensitive. Functions in Python typically start with lowercase letters.\n",
- "\n",
- "After the function name comes parameter names enclosed in parentheses. A _parameter_ is a variable used only within a function. When we pass an argument to a function, the argument value is assigned to a corresponding parameter.\n",
- "\n",
- "After the closing parenthesis comes a colon (`:`). The function _body_ follows on the next lines. The function body is an indented block of code that runs whenever we call the function. It can include comments as well as statements. The body does not run when we define the function, though!\n",
- "\n",
- "Finally, the body ends with a `return` statement. The return statement tells the function what value, if any, to output when it is called. Some functions, like `print()`, return `None` -- a special data type representing no data. If we don't write a `return` statement, Python will fill in an implicit one and return `None`."
- ]
- },
- {
- "cell_type": "markdown",
- "id": "01274079",
- "metadata": {
- "id": "01274079"
- },
- "source": [
- "`degrees_fahrenheit = (9 / 5) * degrees_celsius + 32`\n",
- "\n",
- "Let's turn our Celsius-to-Fahrenheit conversion code from earlier into a function. "
- ]
- },
- {
- "cell_type": "markdown",
- "id": "bdcf02c8",
- "metadata": {
- "id": "bdcf02c8"
- },
- "source": [
- "We want our output to be a number representing degrees Fahrenheit. Our input is a number representing degrees Celsius.\n",
- "\n",
- "To make it easy to understand what our function does, let's call it `c_to_f()`. We'll need a parameter name for our input within the parentheses as well -- let's use `degrees_c`. Before writing any code in the body, we can add a comment briefly explaining what the function does.\n",
- "\n",
- "The output is the result of the expression `(9 / 5) * degrees_c + 32`. This calculation is pretty short, so we can put it in the `return` statement as is."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "69a1cfea",
- "metadata": {
- "id": "69a1cfea"
- },
- "outputs": [],
- "source": [
- "def c_to_f(degrees_c):\n",
- " # Convert degrees from Celsius to Fahrenheit\n",
- " return ((9 / 5) * degrees_c + 32)"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "ce855b6f",
- "metadata": {
- "id": "ce855b6f"
- },
- "source": [
- "Let's try `c_to_f()` out!"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "c9ed1dff",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "c9ed1dff",
- "outputId": "3ea1b703-5025-41ab-92f4-cddac7bbe136"
- },
- "outputs": [],
- "source": [
- "print(c_to_f(100))\n",
- "print(c_to_f(-11))"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "d0dd42b0",
- "metadata": {
- "id": "d0dd42b0"
- },
- "source": [
- "We can save the output of a function by assigning it to a variable."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "f27a7980",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "f27a7980",
- "outputId": "53a6e7a6-8d5d-4ba5-bf0a-0562cc0b486c"
- },
- "outputs": [],
- "source": [
- "freezing_f = c_to_f(0)\n",
- "freezing_f"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "c68d1a1f",
- "metadata": {},
- "source": [
- "### Exercise 1\n",
- "Write a function to convert F to C."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "5fb6b608",
- "metadata": {},
- "outputs": [],
- "source": [
- "# Your code goes here"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "936d16a9",
- "metadata": {
- "id": "936d16a9"
- },
- "source": [
- "### Multiple parameters\n",
- "\n",
- "Functions can have multiple parameters. In this case, the order that arguments are passed in matters. The first argument corresponds to the first parameter, the second argument to the second parameter, and so on."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "e8f57c4f",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "e8f57c4f",
- "outputId": "2254f921-da30-4709-f668-f6afdfbcf901"
- },
- "outputs": [],
- "source": [
- "def divide(dividend, divisor):\n",
- " return dividend / divisor\n",
- "\n",
- "print(divide(0, 2))"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "81d0aa06",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 276
- },
- "id": "81d0aa06",
- "outputId": "0b4bfb64-27f4-44a0-ccdd-543e1e1a0cb9"
- },
- "outputs": [],
- "source": [
- "print(divide(2, 0))"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "7f49baa4",
- "metadata": {
- "id": "7f49baa4"
- },
- "source": [
- "### Optional parameters and default arguments\n",
- "\n",
- "Functions can have default values for parameters. This is convenient when there is a commonly used default -- it means we do not have to supply that argument if the default value works for our purposes. To override the default, we can pass in an additional argument.\n",
- "\n",
- "Below, we define a sales tax calculator that uses Ontario's tax rate as the default."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "2287bab3",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "2287bab3",
- "outputId": "a9692e79-99cd-4911-f494-af60185a90c7"
- },
- "outputs": [],
- "source": [
- "def calc_sales_tax(price, tax_rate=0.13):\n",
- " return price * tax_rate\n",
- "\n",
- "print(calc_sales_tax(5))\n",
- "print(calc_sales_tax(5, .08))"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "58e03fa7",
- "metadata": {
- "id": "58e03fa7"
- },
- "source": [
- "### Keyword arguments\n",
- "\n",
- "If there are multiple optional parameters, use _keyword arguments_ to specify which parameter a value should be used for. Using a keyword argument resembles assigning a variable.\n",
- "\n",
- "The function below has multiple optional parameters."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "1e81e377",
- "metadata": {
- "id": "1e81e377"
- },
- "outputs": [],
- "source": [
- "def calc_total_bill(price, tax_rate=0.13, tip_rate=0.2):\n",
- " tax = price * tax_rate\n",
- " tip = price * tip_rate\n",
- " return price + tax + tip"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "39510068",
- "metadata": {
- "id": "39510068"
- },
- "source": [
- "Accept all defaults:"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "34b595e3",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "34b595e3",
- "outputId": "2cbdadef-e05c-4d6f-b9de-39ebca33259c"
- },
- "outputs": [],
- "source": [
- "calc_total_bill(100)"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "c2485199",
- "metadata": {
- "id": "c2485199"
- },
- "source": [
- "Python assumes the second argument is for the second parameter, `tax_rate`."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "bede3708",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "bede3708",
- "outputId": "1408e666-dc36-4504-abe6-86bfabb0e762"
- },
- "outputs": [],
- "source": [
- "print(calc_total_bill(100, 0.22))"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "a2cffd6f",
- "metadata": {
- "id": "a2cffd6f"
- },
- "source": [
- "Use the `tip_rate` keyword argument to specify that the second argument is not the tax rate."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "d1d9f3d2",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "d1d9f3d2",
- "outputId": "42cd36d2-717b-4729-9f87-d7b073793a37"
- },
- "outputs": [],
- "source": [
- "print(calc_total_bill(100, tip_rate=0.22))"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "fc58762b",
- "metadata": {
- "id": "fc58762b"
- },
- "source": [
- "## Documenting functions\n",
- "\n",
- "We can call `help()` on user-defined functions as well as built-in functions."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "8dc69f93",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "8dc69f93",
- "outputId": "a4575900-536e-4a9d-d3cb-8da053af11d5"
- },
- "outputs": [],
- "source": [
- "help(c_to_f)"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "5747c4ed",
- "metadata": {
- "id": "5747c4ed"
- },
- "source": [
- "## Docstrings\n",
- "\n",
- "In order to get useful results, though, a user-defined function needs a docstring. A _docstring_ is a special kind of string, or text data, that describes what a function does. It is the first thing in a function after the definition statement, and it is typically surrounded by triple single or double quotes (`'''` or `\"\"\"`). `help()` looks for a docstring when it is called."
- ]
- },
- {
- "cell_type": "markdown",
- "id": "cedc4bcc",
- "metadata": {
- "id": "cedc4bcc"
- },
- "source": [
- "Let's convert our comment from earlier into a docstring, then try calling `help()` again."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "5c55eb30",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "5c55eb30",
- "outputId": "9528ca9e-50f6-4d24-b4d8-da0f7029c4c2"
- },
- "outputs": [],
- "source": [
- "def c_to_f(degrees_c):\n",
- " '''Convert degrees from Celsius to Fahrenheit'''\n",
- " return ((9 / 5) * degrees_c + 32)\n",
- "\n",
- "help(c_to_f)"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "182f59a6",
- "metadata": {
- "id": "182f59a6"
- },
- "source": [
- "## Structure of a function\n",
- "\n",
- "Now that we've written our first function, let's review the structure.\n",
- "\n",
- "`c_to_f(degrees_c)` is the _function header_. It tells us what the function name and parameters are.\n",
- "\n",
- "`'''Convert degrees from Celsius to Fahrenheit'''` is the _docstring_. It briefly describes what the function does. Docstrings can include more information about the function, such as examples, what types of data are accepted as arguments, or what gets returned.\n",
- "\n",
- "`return ((9 / 5) * degrees_c + 32)` makes up the function _body_, or the code that runs when a function is called. This is typically more than one line of code. The body ends with a `return` statement specifying what the output of the function should be. If no `return` statement is written out, the function will return `None`."
- ]
- },
- {
- "cell_type": "markdown",
- "id": "a243134e",
- "metadata": {
- "id": "a243134e"
- },
- "source": [
- "## Variable Scope\n",
- "\n",
- "We mentioned that parameters were variables used only in functions. This means that the parameter does not exist outside of the function call -- if we try to access `degrees_c` outside of `c_to_f()`, we get a NameError."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "3799ebfc",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 174
- },
- "id": "3799ebfc",
- "outputId": "ae4453b0-1607-4f16-f98b-2ef866ad0e1e"
- },
- "outputs": [],
- "source": [
- "degrees_c"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "69e2892f",
- "metadata": {
- "id": "69e2892f"
- },
- "source": [
- "Parameters are _locally scoped_ variables. _Scope_ refers to the context in which a variable can be accessed. _Local_ indicates that the variable can only be accessed within the function itself."
- ]
- },
- {
- "cell_type": "markdown",
- "id": "b3bedf20",
- "metadata": {
- "id": "b3bedf20"
- },
- "source": [
- "In contrast, a variable defined outside of a function has _global scope_. It can be accessed from anywhere in the program."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "8d6408c9",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "8d6408c9",
- "outputId": "81da20d0-3622-4c9e-8aac-57ee1be6dbf9"
- },
- "outputs": [],
- "source": [
- "# boiling_c is a global variable\n",
- "boiling_c = 100\n",
- "\n",
- "# boiling_f is too\n",
- "boiling_f = c_to_f(100)\n",
- "\n",
- "print(boiling_c, boiling_f)"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "722d2c13",
- "metadata": {
- "id": "722d2c13"
- },
- "source": [
- "## Exercise 2: Function Design Recipe\n",
- "\n",
- "This function design recipe standardizes the steps to write a function.\n",
- "\n",
- "1. Think about what your function does. Come up with a few examples of inputs and outputs.\n",
- "2. Think of a meaningful function name.\n",
- "3. Write thorough function documentation.\n",
- "4. Code the function body.\n",
- "5. Test the function against the examples from step 1."
- ]
- },
- {
- "cell_type": "markdown",
- "id": "34d71c1c",
- "metadata": {},
- "source": [
- "# References\n",
- "\n",
- "- Bostroem, Bekolay, and Staneva (eds): \"Software Carpentry: Programming with Python\" Version 2016.06, June 2016, https://github.com/swcarpentry/python-novice-inflammation, 10.5281/zenodo.57492.\n",
- "- Chapters 1, 2, 3, and 4, Gries, Campbell, and Montojo, 2017, *Practical Programming: An Introduction to Computer Science Using Python 3.6*\n",
- "- Chapter 8, Adhikari, DeNero, and Wagner, 2021, *Computational and Inferential Thinking: The Foundations of Data Science*\n",
- "- \"String methods\", Python Software Foundation, *Python Language Reference, version 3.* Available at https://docs.python.org/3/library/stdtypes.html#string-methods"
- ]
- }
- ],
- "metadata": {
- "celltoolbar": "Slideshow",
- "colab": {
- "collapsed_sections": [
- "0294d7fe",
- "b3f69e98",
- "cd134d80",
- "16f27979",
- "f1caca54",
- "3a700ac7",
- "722d2c13",
- "ed8b70b9"
- ],
- "provenance": [],
- "toc_visible": true
- },
- "kernelspec": {
- "display_name": "Python 3 (ipykernel)",
- "language": "python",
- "name": "python3"
- },
- "language_info": {
- "codemirror_mode": {
- "name": "ipython",
- "version": 3
- },
- "file_extension": ".py",
- "mimetype": "text/x-python",
- "name": "python",
- "nbconvert_exporter": "python",
- "pygments_lexer": "ipython3",
- "version": "3.11.8"
- },
- "rise": {
- "scroll": true,
- "theme": "solarized",
- "transition": "none"
- }
- },
- "nbformat": 4,
- "nbformat_minor": 5
-}
diff --git a/01_materials/slides/04_strings.ipynb b/01_materials/slides/04_strings.ipynb
deleted file mode 100644
index 8641eeb3e..000000000
--- a/01_materials/slides/04_strings.ipynb
+++ /dev/null
@@ -1,833 +0,0 @@
-{
- "cells": [
- {
- "cell_type": "markdown",
- "id": "f0a75cf8",
- "metadata": {},
- "source": [
- "# Strings"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "c97abf3e",
- "metadata": {},
- "source": [
- "## Contents:\n",
- "1. What is a string?\n",
- "2. String examples\n",
- "3. Multiline strings\n",
- "4. Escape sequences\n",
- "5. Working with strings and overloading\n",
- "6. Strings within strings\n",
- "7. Strings and functions\n",
- "8. String methods\n",
- "9. Formatting strings"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "ed8b70b9",
- "metadata": {
- "id": "ed8b70b9"
- },
- "source": [
- "## What is a string?\n",
- "\n",
- "`str`, short for _string_, is Python's text data type. Strings are sequences of characters, including digits and symbols. Strings are surrounded by either single (`'`) or double (`\"`) quotes. Which one to use is a matter of preference, but they must be the consistent around a string and should be consistent across our code. The presence of apostrophes, single quotes, or double quotes in our text may require us to use a different quote option, though."
- ]
- },
- {
- "cell_type": "markdown",
- "id": "9e2bdd59",
- "metadata": {
- "id": "9e2bdd59"
- },
- "source": [
- "## String examples"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "12eb8ee1",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 35
- },
- "id": "12eb8ee1",
- "outputId": "3df3cf07-49ba-4d55-dde1-1c7d69b8910d"
- },
- "outputs": [],
- "source": [
- "'This is a string'"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "4ac33807",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 35
- },
- "id": "4ac33807",
- "outputId": "eb260431-9797-418c-85d9-7cd213af2c83"
- },
- "outputs": [],
- "source": [
- "\"So is this\""
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "352e8161",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 140
- },
- "id": "352e8161",
- "outputId": "0c511efe-8df2-4211-d053-346e4082715d"
- },
- "outputs": [],
- "source": [
- "\"these quotes do not match'"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "b555fd3c",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 140
- },
- "id": "b555fd3c",
- "outputId": "0e405bf8-9768-4b3a-cd10-b54c67a1499f"
- },
- "outputs": [],
- "source": [
- "'Let's see if this works"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "5d695d24",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 35
- },
- "id": "5d695d24",
- "outputId": "ae0c4066-a0cd-4022-bac4-c8da8daa633d"
- },
- "outputs": [],
- "source": [
- "# use double quotes to avoid the error\n",
- "\"Let's see if this works now\""
- ]
- },
- {
- "cell_type": "markdown",
- "id": "e1404f58",
- "metadata": {
- "id": "e1404f58"
- },
- "source": [
- "## Multiline strings\n",
- "\n",
- "If we want a string to span multiple lines of code, we need to wrap it in triple quotations (`'''` or `\"\"\"`). We saw this before with our docstrings!"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "af1875b1",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 35
- },
- "id": "af1875b1",
- "outputId": "9bab7296-f900-4e56-ab10-d3479acc2f25"
- },
- "outputs": [],
- "source": [
- "'''\n",
- "I am a multiline string\n",
- "\n",
- "I'm very useful for documenting functions\n",
- "and for storing longer texts.\n",
- "\n",
- "And you don't have to worry about apostrophes or \"quote\"s!\n",
- "'''"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "991542af",
- "metadata": {},
- "source": [
- "## Exercise 1\n",
- "Create a multiline variable on anything of your choice and output it."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "7bd99207",
- "metadata": {},
- "outputs": [],
- "source": [
- "# Your code goes here"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "b19547d6",
- "metadata": {
- "id": "b19547d6"
- },
- "source": [
- "## Escape sequences\n",
- "\n",
- "Where did those `\\n` characters come from and where did our line breaks go in that last string? `\\n` is an _escape sequence_, a combination of characters that means something else. Here, it means \"new line\", not literally \"\\n\". More generally, the backslash (`\\`) is an escape character that can be used to indicate that the next character should be treated differently."
- ]
- },
- {
- "cell_type": "markdown",
- "id": "b6191db7",
- "metadata": {
- "id": "b6191db7"
- },
- "source": [
- "### Escape sequences\n",
- "\n",
- "| Escape sequence | Description |\n",
- "|-----------------|--------------------|\n",
- "| \\\\' | Single quote |\n",
- "| \\\\\" | Double quote |\n",
- "| \\\\\\\\ | Backslash |\n",
- "| \\\\t | Tab |\n",
- "| \\\\n | Newline |\n",
- "| \\\\r | Carriage return |"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "9e15d76e",
- "metadata": {},
- "source": [
- "There are other escape sequences in Python that do not require a `print` statement to be correctly interpreted within a string. These escape sequences can be used directly in the string definition and will work as expected. Here are some common escape sequences:\n",
- "\n",
- "1. `\\\\`: This escape sequence represents a single backslash character. You can use it directly in a string to include a backslash.\n",
- " \n",
- " Example:\n",
- " ```python\n",
- " my_string = 'This is a backslash: \\\\'\n",
- " ```\n",
- "\n",
- "2. `\\\"`: This escape sequence represents a double quotation mark (`\"`). It allows you to include double quotes within a double-quoted string.\n",
- "\n",
- " Example:\n",
- " ```python\n",
- " my_string = \"This is a double-quoted string with a quote inside: \\\"example\\\"\"\n",
- " ```\n",
- "\n",
- "3. `\\'`: As previously mentioned, this escape sequence represents a single quotation mark (`'`) and can be used within a single-quoted string.\n",
- "\n",
- " Example:\n",
- " ```python\n",
- " my_string = 'This is a single-quoted string with a quote inside: won\\'t'\n",
- " ```\n",
- "\n",
- "These escape sequences work in the same way as `\\'` and do not require a `print` statement for proper interpretation within a string. They allow you to include special characters within your string literals."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "f798ecd5",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 35
- },
- "id": "f798ecd5",
- "outputId": "ef00a60a-3e44-4415-f36c-d2bdf25e2fe1"
- },
- "outputs": [],
- "source": [
- "'This string won\\'t result in an error thanks to the escape sequence'"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "11052d21",
- "metadata": {
- "id": "11052d21"
- },
- "source": [
- "## Working with strings and overloading\n",
- "\n",
- "Some arithmetic and comparison operators also work with strings, though their meaning changes. When an operator does different things depending on the data provided, we say that it is _overloaded_. It's important to understand what type of data is being used with an overloaded operator so that the results are as expected."
- ]
- },
- {
- "cell_type": "markdown",
- "id": "1732a7cd",
- "metadata": {
- "id": "1732a7cd"
- },
- "source": [
- "### Strings and arithmetic operators"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "4e36d1f4",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 35
- },
- "id": "4e36d1f4",
- "outputId": "b8e57f97-1c4e-4a47-acd0-f81bfa38210c"
- },
- "outputs": [],
- "source": [
- "# adding strings together concatenates them\n",
- "'hello' + ' ' + 'world'"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "69d734a3",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 35
- },
- "id": "69d734a3",
- "outputId": "819999ca-6460-4588-ed16-8da34c4ebae4"
- },
- "outputs": [],
- "source": [
- "# multiplying a string repeats it\n",
- "'ha' * 3"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "444cd7f1",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 191
- },
- "id": "444cd7f1",
- "outputId": "2c58cc3f-dc2e-44cc-81e1-d467bef8db4e"
- },
- "outputs": [],
- "source": [
- "# mixing data types results in an error\n",
- "'The year is ' + 2020"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "beca20a7",
- "metadata": {
- "id": "beca20a7"
- },
- "source": [
- "### Strings and comparison operators\n",
- "\n",
- "We can use the `==` and `!=` operators to compare strings, as well as to compare strings and numbers."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "b922b788",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "b922b788",
- "outputId": "a40e63ee-89bb-479e-dc21-c04b53502d2b"
- },
- "outputs": [],
- "source": [
- "'apple' == 'Apple'"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "5f0f4faa",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "5f0f4faa",
- "outputId": "3c0a30f0-dc4b-4a93-f1f0-d89a8806cd5a"
- },
- "outputs": [],
- "source": [
- "'apple' != 'Apple'"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "1158f00c",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "1158f00c",
- "outputId": "a88646b6-af0a-4100-fcfe-e3439a3097cd"
- },
- "outputs": [],
- "source": [
- "'20' == 20"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "fb078997",
- "metadata": {
- "id": "fb078997"
- },
- "source": [
- "## Strings within strings\n",
- "\n",
- "\n",
- "We can extract a piece of a string by _slicing_ it. For example, if we want to get initials from a first name and last name, we may slice the first letter of each.\n",
- "\n",
- "To slice a string, we add square brackets (`[]`) to the end of it. To get a single character, we then put the _index_ or position, of the character we want to get.\n",
- "\n",
- "To get multiple characters, we put the starting index of our slice, then a colon (`:`) and finally the index where we want to end our slice. **Strings in Python are _zero-indexed_, meaning that the first letter is at index 0, not 1.** Slices do not include the character at the ending index position."
- ]
- },
- {
- "cell_type": "markdown",
- "id": "f07856bf",
- "metadata": {
- "id": "f07856bf"
- },
- "source": [
- "### Slicing single characters"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "c231d8f4",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "c231d8f4",
- "outputId": "c98c26a1-0f5f-417a-e0dc-7335d7f31491"
- },
- "outputs": [],
- "source": [
- "first_name = 'Ada'\n",
- "last_name = 'Lovelace'\n",
- "\n",
- "# print initials\n",
- "print('Initials are', first_name[0], last_name[0])"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "b2ad7ff0",
- "metadata": {
- "id": "b2ad7ff0"
- },
- "source": [
- "If we don't provide a starting index, our string slice will go from the beginning to the ending index. Similarly, if we don't provide an ending index, our string slice will go from the starting index to the end."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "2a8ab4a2",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "2a8ab4a2",
- "outputId": "d8ba7212-f7fb-45ea-d702-a650a66063ef"
- },
- "outputs": [],
- "source": [
- "print(first_name[:1], last_name[4:])"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "474b7246",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 35
- },
- "id": "474b7246",
- "outputId": "0eab5c5c-1800-4285-8634-dc4d14e2f017"
- },
- "outputs": [],
- "source": [
- "phone_number = '+1 555-123-4567'\n",
- "\n",
- "# get the area code\n",
- "phone_number[3:6]"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "6c8352ae",
- "metadata": {
- "id": "6c8352ae"
- },
- "source": [
- "We can even use negative indices. Here, we slice from the fourth-to-last character to the end."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "41ee9c63",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 35
- },
- "id": "41ee9c63",
- "outputId": "a28e1821-c5d8-49d7-8eb9-0f5efced5092"
- },
- "outputs": [],
- "source": [
- "phone_number[-4:]"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "6cddb18b",
- "metadata": {},
- "source": [
- "## Exercise 2\n",
- "Get the middle 6 letters of this word: `supercalifragilisticexpialidocious`"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "a6c3691a",
- "metadata": {},
- "outputs": [],
- "source": [
- "# Your code goes here"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "11b03c70",
- "metadata": {
- "id": "11b03c70"
- },
- "source": [
- "### Checking for strings\n",
- "\n",
- "We can also check for character sequences, or _substrings_ within a string. There are multiple ways to do this, but one of the simplest is with the `in` operator."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "052d6727",
- "metadata": {
- "id": "052d6727"
- },
- "outputs": [],
- "source": [
- "job_qualifications = 'The successful applicant will be proficient in R, Python, SQL, statistics, and data visualization.'"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "22261d43",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "22261d43",
- "outputId": "98df15ab-64db-4b14-ad0e-3b760beccdc1"
- },
- "outputs": [],
- "source": [
- "'R' in job_qualifications"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "0345fd67",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "0345fd67",
- "outputId": "26583257-42da-4bab-b326-c7249f67c613"
- },
- "outputs": [],
- "source": [
- "' r ' in job_qualifications"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "c54f65ef",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "c54f65ef",
- "outputId": "ede4fcad-d092-46d1-a1ca-ffa1f8a8bec5"
- },
- "outputs": [],
- "source": [
- "'JavaScript' in job_qualifications"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "327e7b49",
- "metadata": {},
- "source": [
- "## Strings and functions\n",
- "\n",
- "String data works with some of the functions we've seen before, like `print()`, as well as with built-in functions like `len()`, which tells us how long the argument we pass in is."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "0556df8e",
- "metadata": {},
- "outputs": [],
- "source": [
- "# We can print strings, ints, and floats together\n",
- "print(1, 'fish,', 2, 'fish')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "6a7903e2",
- "metadata": {},
- "outputs": [],
- "source": [
- "len('Sometimes we type long-winded sentences to meet word counts or character counts.')"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "659dd1a9",
- "metadata": {},
- "source": [
- "## String methods\n",
- "\n",
- "Strings in Python also have _methods_, which are functions that work only for a specific type of data. We'll learn about methods in more depth later. The key points here are:\n",
- "\n",
- "- String methods work only on strings -- not on integers, floats, or booleans\n",
- "- Methods are called differently from other functions"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "c9ff4ece",
- "metadata": {},
- "source": [
- "To use a string method, we specify a string, then follow it with a period and the method being called."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "6cee9074",
- "metadata": {},
- "outputs": [],
- "source": [
- "# convert a string to all caps\n",
- "'I am not yelling'.upper()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "2c7eafdf",
- "metadata": {},
- "outputs": [],
- "source": [
- "# count the 'e's\n",
- "'This string is unusual'.count('e')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "9e016ebe",
- "metadata": {},
- "outputs": [],
- "source": [
- "# check if a string ends with a substring\n",
- "'file_name.csv'.endswith('.csv')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "a9beef6b",
- "metadata": {},
- "outputs": [],
- "source": [
- "# replace text\n",
- "'long file name with spaces.csv'.replace(' ', '_')"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "9fefba25",
- "metadata": {},
- "source": [
- "For a full list of string methods, see the [Python documentation](https://docs.python.org/3/library/stdtypes.html#string-methods)."
- ]
- },
- {
- "cell_type": "markdown",
- "id": "5e237cbd",
- "metadata": {},
- "source": [
- "### Formatting Strings\n",
- "\n",
- "The `format()` string method makes it easier to combine text with other data. We can create text templates with curly braces (`{}`), then pass values in."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "5ae0487a",
- "metadata": {},
- "outputs": [],
- "source": [
- "first_name = 'Ada'\n",
- "last_name = 'Lovelace'\n",
- "\n",
- "'Ada Lovelace\\'s initials are {}. {}.'.format(first_name[0], last_name[0])"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "81ea999f",
- "metadata": {},
- "source": [
- "If we preface the string with `f`, we can pass values directly into the curly braces."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "05e7baca",
- "metadata": {},
- "outputs": [],
- "source": [
- "f'Ada Lovelace\\'s initials are {first_name[0]}. {last_name[0]}.'"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "c6ffa29a",
- "metadata": {},
- "source": [
- "- **f-string**: `f'...'` is an f-string, it allows for more concise and readable string interpolation by directly embedding expressions within the string.\n",
- "- **`.format()` method**: This method allows for string formatting by specifying placeholders `{}` within the string and providing values to replace those placeholders in the `.format()` method.\n",
- "\n",
- "Both expressions essentially achieve the same outcome: they insert the first characters of the `first_name` and `last_name` variables into the string to state Ada Lovelace's initials. The choice between them often comes down to personal preference and the Python version being used. Many developers prefer f-strings for their simplicity and readability."
- ]
- },
- {
- "cell_type": "markdown",
- "id": "9a7a5359",
- "metadata": {},
- "source": [
- "When in doubt, we can call for `help()`!"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "31fed757",
- "metadata": {},
- "outputs": [],
- "source": [
- "help(str.lower)"
- ]
- }
- ],
- "metadata": {
- "celltoolbar": "Slideshow",
- "colab": {
- "collapsed_sections": [
- "0294d7fe",
- "b3f69e98",
- "cd134d80",
- "16f27979",
- "f1caca54",
- "3a700ac7",
- "722d2c13",
- "ed8b70b9"
- ],
- "provenance": [],
- "toc_visible": true
- },
- "kernelspec": {
- "display_name": "Python 3 (ipykernel)",
- "language": "python",
- "name": "python3"
- },
- "language_info": {
- "codemirror_mode": {
- "name": "ipython",
- "version": 3
- },
- "file_extension": ".py",
- "mimetype": "text/x-python",
- "name": "python",
- "nbconvert_exporter": "python",
- "pygments_lexer": "ipython3",
- "version": "3.11.8"
- },
- "rise": {
- "scroll": true,
- "theme": "solarized",
- "transition": "none"
- }
- },
- "nbformat": 4,
- "nbformat_minor": 5
-}
diff --git a/01_materials/slides/05_converting_types.ipynb b/01_materials/slides/05_converting_types.ipynb
deleted file mode 100644
index 45dffd465..000000000
--- a/01_materials/slides/05_converting_types.ipynb
+++ /dev/null
@@ -1,251 +0,0 @@
-{
- "cells": [
- {
- "cell_type": "markdown",
- "id": "94b61ac0",
- "metadata": {
- "id": "94b61ac0"
- },
- "source": [
- "## Converting between types\n",
- "\n",
- "Sometimes, we'll get string data that should be treated as a number, or vice versa. We can use the `str()`, `int()` and `float()` functions to convert between data types. If the argument to the type conversion function is not valid in the target data type, Python will produce an error."
- ]
- },
- {
- "cell_type": "markdown",
- "id": "2a84b460",
- "metadata": {},
- "source": [
- "## Contents:\n",
- "1. String to integer\n",
- "2. String to float\n",
- "3. Float and int to string"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "edb37e4d",
- "metadata": {
- "id": "edb37e4d"
- },
- "source": [
- "#### String to integer"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "5af84a29",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "5af84a29",
- "outputId": "c3c7a489-8725-42a9-a740-4a7d9f953774"
- },
- "outputs": [],
- "source": [
- "int('17')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "fbf1894e",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 174
- },
- "id": "fbf1894e",
- "outputId": "aef07162-6ee3-4abc-ed20-f43dd5362213"
- },
- "outputs": [],
- "source": [
- "int('17.4')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "ed698bf3",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 174
- },
- "id": "ed698bf3",
- "outputId": "1e2528eb-4798-4f7b-a6ce-1134d726ce01"
- },
- "outputs": [],
- "source": [
- "int('me')"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "5fc3ae9b",
- "metadata": {
- "id": "5fc3ae9b"
- },
- "source": [
- "#### String to float"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "516644f7",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "516644f7",
- "outputId": "448db8d0-6a53-400f-cc7e-7ae4a123dbed"
- },
- "outputs": [],
- "source": [
- "float('892')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "f9013665",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 174
- },
- "id": "f9013665",
- "outputId": "5b9ffe68-6a40-4394-a1e6-da8c1d62c2ef"
- },
- "outputs": [],
- "source": [
- "float('you')"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "018ce02a",
- "metadata": {
- "id": "018ce02a"
- },
- "source": [
- "#### Float and int to string"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "d750cc4f",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 35
- },
- "id": "d750cc4f",
- "outputId": "ac7d3c7a-e1da-4588-fd31-afa7fed415ed"
- },
- "outputs": [],
- "source": [
- "str(37.5)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "40d832c1",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 35
- },
- "id": "40d832c1",
- "outputId": "a32f85c1-3574-4c35-e020-10b7204bebb9"
- },
- "outputs": [],
- "source": [
- "str(20)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "bdc67737",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 35
- },
- "id": "bdc67737",
- "outputId": "60231eaf-67a3-4014-a660-e1e3660652a8"
- },
- "outputs": [],
- "source": [
- "'20' + str(37.5)"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "6432e98f",
- "metadata": {},
- "source": [
- "## Exercise\n",
- "Fix the error in the previous notebook example:"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "1f021388",
- "metadata": {},
- "outputs": [],
- "source": [
- "'The year is ' + 2020"
- ]
- }
- ],
- "metadata": {
- "celltoolbar": "Slideshow",
- "colab": {
- "collapsed_sections": [
- "0294d7fe",
- "b3f69e98",
- "cd134d80",
- "16f27979",
- "f1caca54",
- "3a700ac7",
- "722d2c13",
- "ed8b70b9"
- ],
- "provenance": [],
- "toc_visible": true
- },
- "kernelspec": {
- "display_name": "Python 3 (ipykernel)",
- "language": "python",
- "name": "python3"
- },
- "language_info": {
- "codemirror_mode": {
- "name": "ipython",
- "version": 3
- },
- "file_extension": ".py",
- "mimetype": "text/x-python",
- "name": "python",
- "nbconvert_exporter": "python",
- "pygments_lexer": "ipython3",
- "version": "3.11.5"
- },
- "rise": {
- "scroll": true,
- "theme": "solarized",
- "transition": "none"
- }
- },
- "nbformat": 4,
- "nbformat_minor": 5
-}
diff --git a/01_materials/slides/06_inputs.ipynb b/01_materials/slides/06_inputs.ipynb
deleted file mode 100644
index 3f1c56bec..000000000
--- a/01_materials/slides/06_inputs.ipynb
+++ /dev/null
@@ -1,133 +0,0 @@
-{
- "cells": [
- {
- "cell_type": "markdown",
- "id": "5645a11c",
- "metadata": {
- "id": "5645a11c"
- },
- "source": [
- "# Input"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "ca2ed9ad",
- "metadata": {},
- "source": [
- "## Contents:\n",
- "1. Getting user input"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "3ac38293",
- "metadata": {
- "id": "3ac38293"
- },
- "source": [
- "## Getting user input\n",
- "\n",
- "Sometimes, we may want to work with data given to us by the user running the program. One way to get user input is with the `input()` function, which prompts the user and returns their response as a string. `input()` takes a prompt string as an argument.\n",
- "\n",
- "Be careful when using `input()` -- there's no guarantee that the user will answer in a way you expect!"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "69f1ae7d",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 52
- },
- "id": "69f1ae7d",
- "outputId": "eef68880-b940-4f06-ab27-fd3e6ea9a7cd"
- },
- "outputs": [],
- "source": [
- "age = input('How old are you? ')\n",
- "age"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "b81e701c",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "b81e701c",
- "outputId": "7524c0f2-64da-4907-b682-dd132e8b7dea"
- },
- "outputs": [],
- "source": [
- "# to do arithmetic on an input, we need to convert it\n",
- "age_next_bday = int(age) + 1\n",
- "print('Next birthday you will be {}'.format(age_next_bday))"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "d2e043ce",
- "metadata": {},
- "source": [
- "## Exercise\n",
- "Create a program to take in a first name, then a last name as two inputs, and output it them together as a full name."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "d4349146",
- "metadata": {},
- "outputs": [],
- "source": [
- "# Your code goes here"
- ]
- }
- ],
- "metadata": {
- "celltoolbar": "Slideshow",
- "colab": {
- "collapsed_sections": [
- "0294d7fe",
- "b3f69e98",
- "cd134d80",
- "16f27979",
- "f1caca54",
- "3a700ac7",
- "722d2c13",
- "ed8b70b9"
- ],
- "provenance": [],
- "toc_visible": true
- },
- "kernelspec": {
- "display_name": "Python 3 (ipykernel)",
- "language": "python",
- "name": "python3"
- },
- "language_info": {
- "codemirror_mode": {
- "name": "ipython",
- "version": 3
- },
- "file_extension": ".py",
- "mimetype": "text/x-python",
- "name": "python",
- "nbconvert_exporter": "python",
- "pygments_lexer": "ipython3",
- "version": "3.11.5"
- },
- "rise": {
- "scroll": true,
- "theme": "solarized",
- "transition": "none"
- }
- },
- "nbformat": 4,
- "nbformat_minor": 5
-}
diff --git a/01_materials/slides/07_control_flow.ipynb b/01_materials/slides/07_control_flow.ipynb
deleted file mode 100644
index f33653fc8..000000000
--- a/01_materials/slides/07_control_flow.ipynb
+++ /dev/null
@@ -1,3237 +0,0 @@
-{
- "cells": [
- {
- "cell_type": "markdown",
- "id": "40d3f376",
- "metadata": {
- "id": "40d3f376"
- },
- "source": [
- "# Dealing with Reality: Control Flow and Iterables"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "e5e5ab47",
- "metadata": {
- "id": "e5e5ab47"
- },
- "source": [
- "# Contents:\n",
- "\n",
- "1. Logic, Revisited\n",
- "2. Control Flow: Conditionals\n",
- "3. Collections of Values\n",
- " 1. Lists and Tuples\n",
- " 3. Sets\n",
- " 4. Dictionaries\n",
- "4. Control Flow: Iteration"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "c28a8f55",
- "metadata": {
- "id": "c28a8f55"
- },
- "source": [
- "# Logic"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "dcda64da",
- "metadata": {
- "id": "dcda64da"
- },
- "source": [
- "## Logic Operators\n",
- "\n",
- "Earlier, we introduced the `bool` data type, which has only two possible values: `True` and `False`. There are _boolean_ or _logic operators_ that work with Boolean values:\n",
- "\n",
- "* `not`: negates the truth value of the statement\n",
- "* `and`: check if the statements on both sides are true\n",
- "* `or`: check if at least one of the statements are true"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "410fed7f",
- "metadata": {
- "id": "410fed7f"
- },
- "source": [
- "## `not`\n",
- "\n",
- "|X|`not` X|\n",
- "|-|-|\n",
- "|True|False|\n",
- "|False|True|"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "6436bb1e",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "6436bb1e",
- "outputId": "a246c1a1-b9c9-4fe9-ba47-893d8d2e47db"
- },
- "outputs": [],
- "source": [
- "not True"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "e46591dc",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "e46591dc",
- "outputId": "03267ccb-3360-4f65-cc60-bec50f16a31d"
- },
- "outputs": [],
- "source": [
- "3 == 3"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "5c5d2b17",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "5c5d2b17",
- "outputId": "8dd373a5-d4fb-4acd-8eab-c2096613fc0a"
- },
- "outputs": [],
- "source": [
- "not (3 == 3)"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "f555e138",
- "metadata": {
- "id": "f555e138"
- },
- "source": [
- "## `and`\n",
- "\n",
- "Evaluates to `True` if both statements are true.\n",
- "\n",
- "|X|Y|X `and` Y|\n",
- "|-|-|-|\n",
- "|True|True|True|\n",
- "|False|True|False|\n",
- "|True|False|False|\n",
- "|False|False|False|"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "be67c37a",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "be67c37a",
- "outputId": "6465dd3e-c150-4869-e623-a1a7433d033a"
- },
- "outputs": [],
- "source": [
- "7 == 7.0 and 32 > 9"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "a1a68c4f",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "a1a68c4f",
- "outputId": "fa6eaffd-c4c0-4815-e951-d04f596b550c"
- },
- "outputs": [],
- "source": [
- "'Python' == 'python' and True"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "81cc08f5",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "81cc08f5",
- "outputId": "a8a14822-75a4-4121-a6f6-4b93b9c32d24"
- },
- "outputs": [],
- "source": [
- "is_summer = True\n",
- "is_sunny = True\n",
- "is_summer and is_sunny"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "36602c44",
- "metadata": {},
- "source": [
- "**Note that the behavior of the `and` operator returns the first falsy value encountered or the last truthy value if all operands are `true` based on the conditions provided.**\n",
- "\n",
- "**Example 1:**\n",
- "```python\n",
- "is_winter = \"True\" # String with value \"True\"\n",
- "is_cloudy = True # Boolean with value True\n",
- "\n",
- "# Explanation:\n",
- "# - `is_winter` is a non-empty string, which in a boolean context, is considered `True` (non-empty strings are truthy in Python).\n",
- "# - `is_cloudy` is a boolean with a value of `True`.\n",
- "# - When you use the `and` operator, both conditions are `True`. \n",
- "# - According to the behavior of the `and` operator, it returns the second operand (`is_cloudy`) because both operands are truthy.\n",
- "# Therefore, the result is `True`.\n",
- "result = is_winter and is_cloudy\n",
- "print(result) # Output: True\n",
- "```\n",
- "\n",
- "**Example 2:**\n",
- "```python\n",
- "is_winter = True # Boolean with value True\n",
- "is_cloudy = \"True\" # String with value \"True\"\n",
- "\n",
- "# Explanation:\n",
- "# - `is_winter` is a boolean with a value of `True`.\n",
- "# - `is_cloudy` is a string with the value `\"True\"`.\n",
- "# - When you use the `and` operator, Python evaluates the first operand (`is_winter`).\n",
- "# - Since it's True, it then evaluates the second operand.\n",
- "# - In logical operations, Python doesn't convert the string \"True\" to a boolean; instead, it returns the second operand (is_cloudy) which is the string \"True\" itself.\n",
- "result = is_winter and is_cloudy\n",
- "print(result) # Output: \"True\"\n",
- "```\n",
- "\n",
- "**Example 3:**\n",
- "```python\n",
- "# Explanation:\n",
- "# - `\"Python\"` is a non-empty string, which is considered truthy.\n",
- "# - `\"python\"` is also a non-empty string, which is also considered truthy.\n",
- "# - Since both operands are truthy, the `and` operator returns the last evaluated operand, which is `\"python\"`.\n",
- "# This happens because Python doesn't directly return a boolean result for non-boolean operands in an `and` operation.\n",
- "result = \"Python\" and \"python\"\n",
- "print(result) # Output: \"python\"\n",
- "```"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "3e98c97b",
- "metadata": {
- "id": "3e98c97b"
- },
- "source": [
- "## `or`\n",
- "\n",
- "Evaluates to `True` if just one of the statements is true.\n",
- "\n",
- "|X|Y|X `or` Y|\n",
- "|-|-|-|\n",
- "|True|True|True|\n",
- "|False|True|True|\n",
- "|True|False|True|\n",
- "|False|False|False|"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "2dbfb92a",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "2dbfb92a",
- "outputId": "e1324eaf-822e-4ef2-e64b-de51cf0c1b1f"
- },
- "outputs": [],
- "source": [
- "'Python' == 'python' or True"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "92880290",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "92880290",
- "outputId": "454d8067-6d07-43dd-d911-e10114793c60"
- },
- "outputs": [],
- "source": [
- "not (7 % 2 == 1) or False"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "3244469d",
- "metadata": {},
- "source": [
- "**The behavior of the `or` operator returns the first truthy value encountered or the last falsy value if all operands are `False` based on the conditions provided.**\n",
- "\n",
- "**Example 1:**\n",
- "```python\n",
- "is_winter = \"True\" # String with value \"True\"\n",
- "is_cloudy = True # Boolean with value True\n",
- "\n",
- "# Explanation:\n",
- "# - `is_winter` is a non-empty string, which is considered truthy.\n",
- "# - `is_cloudy` is a boolean with a value of `True`.\n",
- "# - When you use the `or` operator, the first operand \"is_winter\" is truthy, so it returns the first truthy value, which is \"True\".\n",
- "print(result) # Output: \"True\"\n",
- "```\n",
- "\n",
- "**Example 2:**\n",
- "```python\n",
- "is_winter = True # Boolean with value True\n",
- "is_cloudy = \"True\" # String with value \"True\"\n",
- "\n",
- "# Explanation:\n",
- "# - `is_winter` is a boolean with a value of `True`.\n",
- "# - `is_cloudy` is a string with the value `\"True\"`.\n",
- "# - When you use the `or` operator, the first operand \"is_winter\" is truthy.\n",
- "# - The second operand is a comparison expression, which evaluates to True because \"is_cloudy\" is equal to \"True\".\n",
- "# Since the first operand is truthy, the `or` operator returns the first truthy value, which is True.\n",
- "print(result) # Output: True\n",
- "```\n",
- "\n",
- "**Example 3:**\n",
- "```python\n",
- "# Explanation:\n",
- "# - `\"Python\"` is a non-empty string, which is considered truthy.\n",
- "# - `\"python\"` is also a non-empty string, which is also considered truthy.\n",
- "# - Since both operands are truthy, the `or` operator returns the first truthy value, which is \"Python\".\n",
- "print(result) # Output: \"Python\"\n",
- "```\n",
- "\n",
- "To summarize, the `or` operator returns the first truthy value encountered or the last falsy value if all operands are `False`."
- ]
- },
- {
- "cell_type": "markdown",
- "id": "06d2c862",
- "metadata": {},
- "source": [
- "## To avoid confusion and ensure consistent behaviour, it's recommended to use boolean values (`True` or `False`) explicitly when working with logical operations to ensure predictable outcomes based on boolean logic."
- ]
- },
- {
- "cell_type": "markdown",
- "id": "fa05eeb9",
- "metadata": {
- "id": "fa05eeb9"
- },
- "source": [
- "## Operator precedence\n",
- "\n",
- "Boolean operators are evaluated after arithmetic and comparison operators.\n",
- "\n",
- "| Order | Operator | Description |\n",
- "|---|---|---|\n",
- "| 1 | `**` | Exponentiation |\n",
- "| 2 | `-`| Negation |\n",
- "| 3 | `*`, `/`, `//`, `%` | Multiplication, division, integer division, and modulo |\n",
- "| 4 | `+`, `-` | Addition and subtraction |\n",
- "| 5 | `<`, `<=`, `>`, `>=`, `==`, `!=` | Less than, less than or equal to, greater than, greater than or equal to, equal, not equal |\n",
- "| 6 | `not` | Not |\n",
- "| 7 | `and` | And |\n",
- "| 8 | `or` | Or|"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "e92b6a3a",
- "metadata": {
- "id": "e92b6a3a"
- },
- "source": [
- "# Control Flow"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "319df456",
- "metadata": {
- "id": "319df456"
- },
- "source": [
- "## What is control flow?\n",
- "\n",
- "_Control flow_ refers to the way computers execute programs. More specifically, control flow determines the order in which functions are called and statements are executed. Up until now, the code we have written has been more or less linear."
- ]
- },
- {
- "cell_type": "markdown",
- "id": "6a4d1def",
- "metadata": {
- "id": "6a4d1def"
- },
- "source": [
- "## Conditionals\n",
- "\n",
- "With a conditional statement, Python will run different lines of code depending on whether the condition is met -- in other words, whether the condition evaluates to `True`."
- ]
- },
- {
- "cell_type": "markdown",
- "id": "70765b71",
- "metadata": {
- "id": "70765b71"
- },
- "source": [
- "### `if`\n",
- "\n",
- "Conditional statements start with `if` followed by a condition. If the condition evaluates to `True`, the indented code block below the `if` statement runs. If the condition evaluates to `False`, the code block does not run."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "df30db67",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "df30db67",
- "outputId": "001e0d5c-d1ee-409c-b8bf-5f1c30b9ee7a"
- },
- "outputs": [],
- "source": [
- "year = 2022\n",
- "\n",
- "if year >= 2000:\n",
- " print('We are in the 21st century.')"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "5a3c9bac",
- "metadata": {
- "id": "5a3c9bac"
- },
- "source": [
- "### `else`\n",
- "\n",
- "We can use an `else` statement to tell Python what code to run if the condition evaluates to `False`. An `else` statement must always be paired with an `if` statement, but as we have seen, `if` statements do not need to be paired with `else`."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "d639d8a5",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "d639d8a5",
- "outputId": "2bae8f94-ae1b-4b16-8934-043499e15259"
- },
- "outputs": [],
- "source": [
- "year = 1999\n",
- "\n",
- "if year >= 2000:\n",
- " print('We are in the 21st century.')\n",
- "else:\n",
- " print('We are not in the 21st century.')"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "8bb36f3c",
- "metadata": {
- "id": "8bb36f3c"
- },
- "source": [
- "### `elif`\n",
- "\n",
- "We can evaluate several conditions one after another with `elif`, which is short for \"else if\". Conditions are checked in the order they appear. Python will execute the code block under the first `True` condition and skip subsequent `elif` and `else` statements after without evaluating them."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "1f623bb3",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "1f623bb3",
- "outputId": "acdb38de-1bd8-4a8d-f9cf-6be1e99cf717"
- },
- "outputs": [],
- "source": [
- "year = 1867\n",
- "\n",
- "if year >= 2000:\n",
- " print('We are in the 21st century.')\n",
- "elif year >= 1900:\n",
- " print('We are in the 20th century.')\n",
- "elif year >= 1800:\n",
- " print('We are in the 19th century.')\n",
- "elif year >= 1700:\n",
- " print('We are in the 18th century.')\n",
- "else:\n",
- " print('We have gone way back in time!')"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "47414a15",
- "metadata": {},
- "source": [
- "## Exercise\n",
- "Write a program where it outputs how cold the weather is based on these conditions:\n",
- "* Less than 0C, it is freezing cold!\n",
- "* Between 1 and 15C, it is cold!\n",
- "* Between 16 and 30C, it is hot!\n",
- "* Between 31 and 45C, it is really hot!\n",
- "* Over 45C, it is extremely hot!"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "a014bfd8",
- "metadata": {},
- "outputs": [],
- "source": [
- "# Your code goes here"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "60fd6461",
- "metadata": {
- "id": "60fd6461"
- },
- "source": [
- "### Building more complex conditionals with logical operators\n",
- "\n",
- "We can use logical operators to check more complex conditions."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "f1cf3a8d",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "f1cf3a8d",
- "outputId": "7f85d36f-4927-4193-c0bb-ed572775ec8e"
- },
- "outputs": [],
- "source": [
- "day_of_week = 'Thursday'\n",
- "\n",
- "if day_of_week == 'Saturday' or day_of_week == 'Sunday':\n",
- " print('Weekend')\n",
- "else:\n",
- " print('Weekday')"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "da2b9507",
- "metadata": {
- "id": "da2b9507"
- },
- "source": [
- "### Nested conditionals\n",
- "\n",
- "Conditionals can be nested within one another. This offers another way to test more complex conditionals. Whether to use conditions with logical operators, nested conditionals, or both can depend on personal preference and what we're trying to check.\n",
- "\n",
- "### Conditionals in functions\n",
- "\n",
- "We can also use conditionals in functions to return different values."
- ]
- },
- {
- "cell_type": "markdown",
- "id": "a8203091",
- "metadata": {
- "id": "a8203091"
- },
- "source": [
- "#### Example: Will OHIP cover an eye exam?\n",
- "\n",
- "OHIP covers eye exams [in some cases](https://www.ontario.ca/page/what-ohip-covers#section-6). We can translate the eligibility criteria into conditionals."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "1565990f",
- "metadata": {
- "id": "1565990f"
- },
- "outputs": [],
- "source": [
- "def eye_exam_covered(age, qualifying_condition, time_since_last_exam):\n",
- " if age <= 19:\n",
- " if time_since_last_exam >= 12:\n",
- " return \"You are eligible for 1 major eye exam and any minor assessments.\"\n",
- " else:\n",
- " return \"It hasn't been 12 months since your last major eye exam.\"\n",
- " elif 20 <= age <= 64:\n",
- " if qualifying_condition:\n",
- " if time_since_last_exam >= 12:\n",
- " return \"You are eligible for 1 major eye exam and 2 additional follow-up minor assessments.\"\n",
- " else:\n",
- " return \"It hasn't been 12 months since your last major eye exam.\"\n",
- " else:\n",
- " return \"You do not have an eligible medical condition affecting your eyes.\"\n",
- " elif age >= 65:\n",
- " if time_since_last_exam >= 18:\n",
- " return \"You are eligible for 1 major eye exam and 2 additional follow-up minor assessments.\"\n",
- " else:\n",
- " return \"It hasn't been 18 months since your last major eye exam.\"\n",
- " else:\n",
- " return \"Invalid age input.\"\n"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "e210905c",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "e210905c",
- "outputId": "162ef0b8-a03c-420a-b24b-c7bda0b96c1c"
- },
- "outputs": [],
- "source": [
- "eye_exam_covered(19, False, 11)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "5ee26253",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "5ee26253",
- "outputId": "a252f667-f7cf-47dc-ac49-62604f6a7e56"
- },
- "outputs": [],
- "source": [
- "eye_exam_covered(27, True, 15)"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "602b56d0",
- "metadata": {
- "id": "602b56d0"
- },
- "source": [
- "# Collections of values"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "006eb53a",
- "metadata": {
- "id": "006eb53a"
- },
- "source": [
- "## Working with multiple values\n",
- "\n",
- "So far, we've worked with individual values: integers, floating point numbers, strings, and booleans. However, we often want to work with groups of values\n",
- "\n",
- "Python offers built-in data types to store and work with multiple values together. They are _lists_, _tuples_, _sets_, and _dictionaries_."
- ]
- },
- {
- "cell_type": "markdown",
- "id": "1e277da4",
- "metadata": {
- "id": "1e277da4"
- },
- "source": [
- "## Lists\n",
- "\n",
- "Python lists let us store and work with multiple values at once. We can create a list by putting values in square brackets (`[]`)"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "baf64490",
- "metadata": {
- "id": "baf64490"
- },
- "source": [
- "## Creating lists\n",
- "\n",
- "We can create a list by putting values in square brackets."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "88635d63",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "88635d63",
- "outputId": "9d5703ee-6918-48f0-d230-ca1cde6ab375"
- },
- "outputs": [],
- "source": [
- "vowels = ['a', 'e', 'i', 'o', 'u']\n",
- "print(f'{vowels} are vowels.')"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "483f9f18",
- "metadata": {
- "id": "483f9f18"
- },
- "source": [
- "We can create an empty list by just using square brackets with nothing in them. It is also possible to create an empty list with the `list()` function, but this is not considered best practice."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "0a973fe6",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "0a973fe6",
- "outputId": "57a9d969-c1c1-44f2-f219-671decbc92fc"
- },
- "outputs": [],
- "source": [
- "# create an empty list the conventional way\n",
- "empty_list = []\n",
- "print('empty_list is', type(empty_list))\n",
- "\n",
- "# this also works\n",
- "empty_list2 = list()\n",
- "print('empty_list2 is', type(empty_list2))"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "a8274795",
- "metadata": {
- "id": "a8274795"
- },
- "source": [
- "The values in a list can be different types. They can also repeat."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "38f7147d",
- "metadata": {
- "id": "38f7147d"
- },
- "outputs": [],
- "source": [
- "# all valid lists!\n",
- "scores = [90, 80, 82, 91, 80]\n",
- "grades = ['K', 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]\n",
- "summary_functions = [len, sum, max, min]"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "e13bc874",
- "metadata": {
- "id": "e13bc874"
- },
- "source": [
- "We can even store lists within lists. The list below is written out over multiple lines so that it is easier to read."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "40052e17",
- "metadata": {
- "id": "40052e17"
- },
- "outputs": [],
- "source": [
- "mystery_solvers = [\n",
- " ['Sherlock', 'Watson'],\n",
- " ['Scooby', 'Shaggy', 'Fred', 'Velma', 'Daphne'],\n",
- " 'Poirot'\n",
- "]"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "fa641860",
- "metadata": {
- "id": "fa641860"
- },
- "source": [
- "## Accessing items in a list\n",
- "\n",
- "Lists are _ordered_, which means that each item in a list can be referenced by its index, or position in the list. Just like getting characters from a string, we can get items from a list by index. We can also slice lists by providing the indices to start and end at in square brackets, separated by a colon. Negative indices count backwards from the end. If we try to access an item at an index that doesn't exist, we will get an error."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "16979fa9",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 35
- },
- "id": "16979fa9",
- "outputId": "0e7b1a07-cda6-4bdc-f1bf-ef722c451e10"
- },
- "outputs": [],
- "source": [
- "# get the first school grade\n",
- "grades[0]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "c7105f5e",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "c7105f5e",
- "outputId": "b300f7ea-e8ed-4674-bfeb-39c834081160"
- },
- "outputs": [],
- "source": [
- "# get middle school grades\n",
- "grades[6:9]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "2d2d13af",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "2d2d13af",
- "outputId": "c9371dd8-f443-42a6-f5d2-caf6cd945110"
- },
- "outputs": [],
- "source": [
- "# get high school grades\n",
- "grades[-4:]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "34c6721a",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 174
- },
- "id": "34c6721a",
- "outputId": "d359a850-fc41-4760-f71a-3fc741f0533a"
- },
- "outputs": [],
- "source": [
- "grades[13]"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "0dae8395",
- "metadata": {
- "id": "0dae8395"
- },
- "source": [
- "### List membership\n",
- "\n",
- "We can check if a value is in a list with the `in` operator."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "a1ce4d32",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "a1ce4d32",
- "outputId": "930f1ec1-6c0f-49ea-a364-c4e1676bf7c8"
- },
- "outputs": [],
- "source": [
- "# recall the vowels list\n",
- "vowels"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "4867a3fb",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "4867a3fb",
- "outputId": "bfbdd490-57d2-4878-b0f2-b10e1855ed5b"
- },
- "outputs": [],
- "source": [
- "'e' in vowels"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "30641400",
- "metadata": {
- "id": "30641400"
- },
- "source": [
- "## Mutating lists\n",
- "\n",
- "Lists are _mutable_, which means they can be modified in place. In contrast, data types like strings and numbers are _immutable_. They cannot be changed. When we update a string or numeric variable, we are actually replacing the value entirely."
- ]
- },
- {
- "cell_type": "markdown",
- "id": "8d052370",
- "metadata": {
- "id": "8d052370"
- },
- "source": [
- "To _mutate_, or change a value in a list, we access it by its index and assign the new value."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "f9b6627b",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "f9b6627b",
- "outputId": "589aef25-246b-4c6d-c279-9b34adbfff96"
- },
- "outputs": [],
- "source": [
- "perfect_squares = [1, 4, 9, 16, 25, 37, 49]\n",
- "\n",
- "# fix the error\n",
- "perfect_squares[5] = 36\n",
- "perfect_squares"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "8045c00a",
- "metadata": {
- "id": "8045c00a"
- },
- "source": [
- "## Mutator beware\n",
- "\n",
- "List variables behave in ways that can be surprising."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "e385b52d",
- "metadata": {
- "id": "e385b52d"
- },
- "outputs": [],
- "source": [
- "sandwich = ['bread', 'cheese', 'bread']"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "cc2bdfbc",
- "metadata": {
- "id": "cc2bdfbc"
- },
- "outputs": [],
- "source": [
- "sandwich_copy = sandwich"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "aa04a766",
- "metadata": {
- "id": "aa04a766"
- },
- "outputs": [],
- "source": [
- "# change original sandwich filling\n",
- "sandwich[1] = 'ham'"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "ca9105c9",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "ca9105c9",
- "outputId": "d0df3d22-5cfe-4785-9497-890172233b14"
- },
- "outputs": [],
- "source": [
- "sandwich_copy"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "e7ab8cea",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "e7ab8cea",
- "outputId": "7eaa6786-4b3f-475b-860c-ad7793d23d57"
- },
- "outputs": [],
- "source": [
- "sandwich_copy[1] = 'tomato'\n",
- "print(sandwich)\n",
- "print(id(sandwich))\n",
- "print(id(sandwich_copy))"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "f8da2d7e",
- "metadata": {
- "id": "f8da2d7e"
- },
- "source": [
- "### What just happened?\n",
- "\n",
- "When we assign a value to a variable, the value is stored somewhere in the computer's memory. This somewhere has an _address_. Python keeps track of the addresses where different variable values can be found.\n",
- "\n",
- "When we assigned `sandwich` to `sandwich_copy`, we did not actually tell Python that the value of `sandwich_copy` is `['bread', 'cheese', 'bread']`. We told Python that the value of `sandwich_copy` can be found at the same memory address as the value of `sandwich`.\n",
- "\n",
- "Remember how we said that lists mutate \"in place\"? The \"in place\" refers to a place in memory. When we updated `sandwich`, we updated the value stored at the memory address linked to both `sandwich` and `sandwich_copy`. As a result, `sandwich_copy` is now also a ham sandwich.\n",
- "\n",
- "Mutating `sandwich_copy` will similarly update the value of `sandwich`."
- ]
- },
- {
- "cell_type": "markdown",
- "id": "7b97ffb0",
- "metadata": {
- "id": "7b97ffb0"
- },
- "source": [
- "### Why doesn't this happen with string and numeric variables?\n",
- "\n",
- "Because strings and numeric values are immutable, they cannot be changed in place. When we update a string or numeric variable, the memory address where the value is found changes."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "319588e8",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "319588e8",
- "outputId": "5be9744d-35ef-4aa1-ee74-ff90eb587320"
- },
- "outputs": [],
- "source": [
- "# Python tracks where in memory 1 is stored\n",
- "a = 1\n",
- "\n",
- "# Python will look for b's value at the same memory address as a's value\n",
- "b = a\n",
- "\n",
- "# 2 is stored at a new address. 1 is still stored at the old address\n",
- "a = 2\n",
- "\n",
- "# Python still looks to the old address a and b shared to find b's value\n",
- "b"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "1c3314f6",
- "metadata": {
- "id": "1c3314f6"
- },
- "source": [
- "### Making an independent copy of a list\n",
- "\n",
- "To make an independent copy of a list, we can pass the list we want to copy to the `list()` function."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "f6ad422d",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "f6ad422d",
- "outputId": "a3ae5ee3-ec3d-4460-9d40-f13de729b34b"
- },
- "outputs": [],
- "source": [
- "combo = ['burger', 'fries', 'drink']\n",
- "kid_meal = list(combo)\n",
- "combo[0] = 'chicken sandwich'\n",
- "kid_meal"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "7ecc552c",
- "metadata": {
- "id": "7ecc552c"
- },
- "source": [
- "## Operations on lists\n",
- "\n",
- "There are many ways to manipulate data in a list. Some produce summary statistics about the values in the list."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "a00d5f22",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "a00d5f22",
- "outputId": "49c772b1-707b-4515-cb7a-f9ac8b7aa4c6"
- },
- "outputs": [],
- "source": [
- "len(perfect_squares)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "e6207e4d",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "e6207e4d",
- "outputId": "9fbca13b-a15e-4c86-e493-37d63daefefa"
- },
- "outputs": [],
- "source": [
- "max(perfect_squares)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "f35e3c9d",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "f35e3c9d",
- "outputId": "26dd0254-d258-4bf1-b975-2f0f28652cf3"
- },
- "outputs": [],
- "source": [
- "sum(perfect_squares)"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "15a35d8e",
- "metadata": {
- "id": "15a35d8e"
- },
- "source": [
- "The `+` and `*` operators work on lists as well. `+` concatenates two lists."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "4b3f1abb",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "4b3f1abb",
- "outputId": "1f7c30c7-1765-44a4-9103-a495ef4bdda3"
- },
- "outputs": [],
- "source": [
- "letters = ['a', 'b', 'c']\n",
- "numbers = [1, 2, 3]\n",
- "characters = letters + numbers\n",
- "characters"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "c5b26a22",
- "metadata": {
- "id": "c5b26a22"
- },
- "source": [
- "`*` repeats the list's items `int` times."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "e0946f89",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "e0946f89",
- "outputId": "b7994553-ca9a-412b-fc05-31068ba00ea4"
- },
- "outputs": [],
- "source": [
- "letters * 2"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "70327087",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "70327087",
- "outputId": "a0883073-f733-4981-aaef-ded158eac54f"
- },
- "outputs": [],
- "source": [
- "numbers * 2"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "7369a425",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "7369a425",
- "outputId": "4e05ed99-0c67-41b1-c017-54ef3ad6f7ed"
- },
- "outputs": [],
- "source": [
- "letters"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "7b8573c0",
- "metadata": {
- "id": "7b8573c0"
- },
- "source": [
- "Notice that `letters` did not change. `+` and `*` do not mutate lists."
- ]
- },
- {
- "cell_type": "markdown",
- "id": "32dd471b",
- "metadata": {
- "id": "32dd471b"
- },
- "source": [
- "## List methods\n",
- "\n",
- "Lists, like strings, have their own methods. Remember that methods are called with the pattern `value.method(arguments)`.\n",
- "\n",
- "Almost all list methods modify lists in place. That is, they mutate them."
- ]
- },
- {
- "cell_type": "markdown",
- "id": "e8f64e9b",
- "metadata": {
- "id": "e8f64e9b"
- },
- "source": [
- "### Adding items\n",
- "\n",
- "We can add items to the end of a list with `append()` and `extend()`. `append()` takes one (and only one!) argument and tacks that value on to the end of a list."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "a30b6271",
- "metadata": {
- "id": "a30b6271"
- },
- "outputs": [],
- "source": [
- "rainbow = ['red', 'orange', 'yellow', 'green', 'light blue', 'blue', 'violet']"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "48b89f8f",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "48b89f8f",
- "outputId": "4940d7f6-f9b2-4f9c-c7f9-0a6e12bb3693"
- },
- "outputs": [],
- "source": [
- "rainbow.append('purple')\n",
- "rainbow"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "d296dab5",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "d296dab5",
- "outputId": "713c4452-5c2d-45e1-a780-e2d6f9310de6"
- },
- "outputs": [],
- "source": [
- "# try appending a list\n",
- "rainbow.append(['purple'])\n",
- "rainbow"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "f5652c01",
- "metadata": {
- "id": "f5652c01"
- },
- "source": [
- "`extend()` also adds a single argument to the end of a list. Notice the difference -- it adds the argument value in pieces."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "3b3684ca",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "3b3684ca",
- "outputId": "5ef6587e-4b22-41b8-f944-25fd824c8af6"
- },
- "outputs": [],
- "source": [
- "rainbow.extend(['magenta', 'pink'])\n",
- "rainbow"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "59ae62c6",
- "metadata": {
- "id": "59ae62c6"
- },
- "source": [
- "Strings get broken up into single characters."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "26a9b6f6",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "26a9b6f6",
- "outputId": "ef92d9ec-b5df-460a-a19e-b664d7895352"
- },
- "outputs": [],
- "source": [
- "rainbow.extend('pale pink')\n",
- "rainbow"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "dd3b4077",
- "metadata": {
- "id": "dd3b4077"
- },
- "source": [
- "And numbers don't work with `extend()` at all."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "35dd6e4a",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 174
- },
- "id": "35dd6e4a",
- "outputId": "8d898f70-a642-4db6-8fec-e632389bfdb7"
- },
- "outputs": [],
- "source": [
- "rainbow.extend(2.3)"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "8e9de0fe",
- "metadata": {
- "id": "8e9de0fe"
- },
- "source": [
- "What happens if we try to append data and assign the list to a new variable?"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "a8e0c225",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "a8e0c225",
- "outputId": "eedf3937-9319-469a-9f92-40a8d84883de"
- },
- "outputs": [],
- "source": [
- "new_rainbow = rainbow.append('dark purple')\n",
- "print(new_rainbow)"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "e0b4e5c7",
- "metadata": {
- "id": "e0b4e5c7"
- },
- "source": [
- "**List methods that only mutate a list return `None`, or no data.** The data we're looking for is in the original list."
- ]
- },
- {
- "cell_type": "markdown",
- "id": "0d03bf24",
- "metadata": {
- "id": "0d03bf24"
- },
- "source": [
- "### Inserting items\n",
- "\n",
- "If we want to add an item somewhere else to a list besides the end, we can use the `insert()` method, passing in the index to insert data into and what value to put in. Like the `append()` and `extend()`, `insert()` modifies the list in place."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "5d8b8486",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "5d8b8486",
- "outputId": "a8fbeb8d-6493-431f-a9f4-e83183d6a9fb"
- },
- "outputs": [],
- "source": [
- "rainbow.insert(6, 'indigo')\n",
- "rainbow"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "f6da6b49",
- "metadata": {
- "id": "f6da6b49"
- },
- "source": [
- "### Removing items\n",
- "\n",
- "We can remove items by value with the `remove()` method. Notice that `remove()` only gets rid of the first match."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "87836c7c",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "87836c7c",
- "outputId": "78a75920-af6c-4f45-d51d-774e492e0187"
- },
- "outputs": [],
- "source": [
- "rainbow.remove('p')\n",
- "rainbow"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "413912d9",
- "metadata": {
- "id": "413912d9"
- },
- "source": [
- "We can also remove one or more items by index with the `del` operator."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "d057d783",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "d057d783",
- "outputId": "60bbd5b1-458b-4449-ed73-65fcb5fa7cb4",
- "scrolled": true
- },
- "outputs": [],
- "source": [
- "# get rid of all the stuff we appended and extended\n",
- "del rainbow[-13:]\n",
- "rainbow"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "5d08aa26",
- "metadata": {
- "id": "5d08aa26"
- },
- "source": [
- "To empty a list out completely, we can `clear()` it."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "466b4610",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "466b4610",
- "outputId": "4885d05c-05ee-41dc-e84f-4d12b34e56c8"
- },
- "outputs": [],
- "source": [
- "rainbow.clear()\n",
- "rainbow"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "d384d98b",
- "metadata": {
- "id": "d384d98b"
- },
- "source": [
- "## Sorting lists\n",
- "\n",
- "Lists are ordered, which means that the elements maintain a specific sequence, and this sequence is preserved. You can access elements by their index (position) in the collection.\n",
- "\n",
- "Since lists are ordered you are able to sort them, and there are two ways to do this. Which way to use depends on if we want to modify the original list in place or if we want to make a brand new list.\n",
- "\n",
- "It can be easier to follow code that creates a brand new list. Mutating the original list, on the other hand, is more efficient for large lists."
- ]
- },
- {
- "cell_type": "markdown",
- "id": "d8ca8dff",
- "metadata": {
- "id": "d8ca8dff"
- },
- "source": [
- "### Modifying in place\n",
- "\n",
- "The `sort()` method reorders a list's values in place and returns `None`."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "32e6b82f",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "32e6b82f",
- "outputId": "bab3f36d-2887-46da-e0d5-7d545b0088e5"
- },
- "outputs": [],
- "source": [
- "fruits = ['pineapple', 'apple', 'kiwi', 'banana']\n",
- "print(f'Output of sort(): {fruits.sort()}')\n",
- "print(f'Original list: {fruits}')"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "c7a3aac5",
- "metadata": {
- "id": "c7a3aac5"
- },
- "source": [
- "### Make a new sorted list\n",
- "\n",
- "The `sorted()` function takes a list as an argument and returns a new list with sorted values."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "781702f0",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "781702f0",
- "outputId": "fcd90582-bf70-4d0e-c165-396b1aaf9057"
- },
- "outputs": [],
- "source": [
- "veggies = ['potato', 'celery', 'cabbage', 'bell pepper', 'onion']\n",
- "print(f'Output of sorted(): {sorted(veggies)}')\n",
- "print(f'Original list: {veggies}')"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "9d3cd462",
- "metadata": {
- "id": "9d3cd462"
- },
- "source": [
- "### Defining sorting criteria\n",
- "\n",
- "By default, numerical data types (integers and floats) will be sorted in ascending order. For strings, will be sorted alphabetically based on the Unicode code point value of each character. This means strings are sorted lexicographically (dictionary order) where uppercase letters come before lowercase letters due to their Unicode values. For example, in Unicode, 'A' (65) is less than 'a' (97), so uppercase letters come before lowercase letters in the default sort order.\n",
- "\n",
- "Both `sort()` and `sorted()` take an optional `key` argument. We can pass any function name without parentheses to `key` depending on how we want to sort a list."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "a1f89496",
- "metadata": {
- "id": "a1f89496"
- },
- "outputs": [],
- "source": [
- "def last_letter(text):\n",
- " return text[-1]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "1413b3fb",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "1413b3fb",
- "outputId": "6eba6d33-6ff0-4949-9ab6-14bb8387f733"
- },
- "outputs": [],
- "source": [
- "sorted(veggies, key=last_letter)"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "f644b1fe",
- "metadata": {
- "id": "f644b1fe"
- },
- "source": [
- "We can use our own functions to even sort nested lists."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "c739ca0d",
- "metadata": {
- "id": "c739ca0d"
- },
- "outputs": [],
- "source": [
- "students_per_class = [['Grade 9', 20], ['Grade 10', 17], ['Grade 11', 13], ['Grade 12', 22]]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "48df2d04",
- "metadata": {
- "id": "48df2d04"
- },
- "outputs": [],
- "source": [
- "def second_element(item):\n",
- " return item[1]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "afb408d0",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "afb408d0",
- "outputId": "95fa4e0a-d007-4155-cd9a-a747e944caca"
- },
- "outputs": [],
- "source": [
- "students_per_class.sort(key = second_element)\n",
- "students_per_class"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "012f3f7c",
- "metadata": {
- "id": "012f3f7c"
- },
- "source": [
- "## Tuples\n",
- "\n",
- "_Tuples_ are a built-in data type similar to lists. Like lists, they are ordered collections of values. We can store multiple values in them, access values by index, slice them, and do things like calculate their length.\n",
- "\n",
- "**The key difference is that tuples are _immutable_: they cannot be changed once they are created.** We cannot update a tuple to add, remove, replace, or reorder items in place. This makes tuples a good choice for storing values that should be read-only."
- ]
- },
- {
- "cell_type": "markdown",
- "id": "ed57cd80",
- "metadata": {
- "id": "ed57cd80"
- },
- "source": [
- "## Creating tuples\n",
- "\n",
- "We can create a tuple by surrounding values in parentheses."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "03a4588b",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "03a4588b",
- "outputId": "db2c020b-5558-495d-f82a-000a54f258cf"
- },
- "outputs": [],
- "source": [
- "mutable_synonyms = ('changeable', 'fluctuating', 'inconstant', 'variable')\n",
- "mutable_synonyms"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "78dbe8b5",
- "metadata": {
- "id": "78dbe8b5"
- },
- "source": [
- "To create an empty tuple, we can use either parentheses or the `tuple()` function. We can't add things to an empty tuple later!"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "dd7866e6",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "dd7866e6",
- "outputId": "52c5b256-f870-4cec-c3a5-08f6fddcb2b1"
- },
- "outputs": [],
- "source": [
- "empty = ()\n",
- "type(empty)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "a1455b74",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "a1455b74",
- "outputId": "b6dcd6c9-d457-4ae3-e352-7ee2e6fb2d1c"
- },
- "outputs": [],
- "source": [
- "also_empty = tuple()\n",
- "type(also_empty)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "3b7b303b",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 191
- },
- "id": "3b7b303b",
- "outputId": "70b57f43-fc66-48f2-9968-80e05d2b1d98"
- },
- "outputs": [],
- "source": [
- "# not an actual tuple method\n",
- "empty.append('hi')"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "738e9291",
- "metadata": {
- "id": "738e9291"
- },
- "source": [
- "## Working with tuples\n",
- "\n",
- "Functions that work on lists _and do not modify the list in place_ also work on tuples."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "6704df77",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "6704df77",
- "outputId": "da587002-bb41-40ee-8671-7d941e3dc8a7"
- },
- "outputs": [],
- "source": [
- "len(mutable_synonyms)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "06cf3451",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "06cf3451",
- "outputId": "0f131b32-a699-409e-f1a0-81444d78ad9f"
- },
- "outputs": [],
- "source": [
- "sorted(mutable_synonyms)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "fd3265cc",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "fd3265cc",
- "outputId": "86b572c0-accd-46b9-864c-c1098e4dbdb5"
- },
- "outputs": [],
- "source": [
- "mutable_synonyms + ('modifiable', 'shifting')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "a37eb94c",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "a37eb94c",
- "outputId": "15e14d67-4374-45f7-f108-d9d3c0083bd9"
- },
- "outputs": [],
- "source": [
- "# check that mutable_synonyms hasn't changed\n",
- "mutable_synonyms"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "61112f8b",
- "metadata": {
- "id": "61112f8b"
- },
- "source": [
- "## Sets\n",
- "\n",
- "_Sets_ are another built-in data type. Like lists, they are mutable. Unlike lists and tuples, the items in a set are **unordered and distinct**. \n",
- "\n",
- "Since sets are unordered, the elements do not maintain any specific order, and the order in which you iterate over the elements is not guaranteed to be the same as the order in which you inserted them. \n",
- "\n",
- "Since sets are distinct, all elements are unique. This means that when you create a set or add elements to it, duplicates will be automatically removed. Also, if you try to add an element that is already present in the set, the set will not change. \n",
- "\n",
- "This makes them well-suited for cases where we do not want any duplicates in our data, like when de-duping a list or comparing unique values."
- ]
- },
- {
- "cell_type": "markdown",
- "id": "06cf4974",
- "metadata": {
- "id": "06cf4974"
- },
- "source": [
- "## Creating Sets\n",
- "\n",
- "We can create a set by surrounding values in curly braces."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "5d80afd8",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "5d80afd8",
- "outputId": "5181f775-1263-4bd6-ed47-15570b96756b"
- },
- "outputs": [],
- "source": [
- "things = {'coat', 'lock', 'box', 'book', 'apple', 'hair','xylophone', 'lock', 'book'}\n",
- "things"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "b0b6379a",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "b0b6379a",
- "outputId": "e0a23ee4-1638-414d-aa41-849e8c0a4dac"
- },
- "outputs": [],
- "source": [
- "# turn a list into a set to remove duplicates\n",
- "visitor_post_codes = ['M5R', 'M5V', 'M1M', 'M1M', 'M1T']\n",
- "set(visitor_post_codes)"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "f3335d87",
- "metadata": {
- "id": "f3335d87"
- },
- "source": [
- "The only way to create an empty set is with the `set()` function."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "6bac952a",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "6bac952a",
- "outputId": "06a45aaf-a454-46e9-bbe4-5da679f23d54"
- },
- "outputs": [],
- "source": [
- "empty_set = set()\n",
- "empty_set"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "df56002b",
- "metadata": {
- "id": "df56002b"
- },
- "source": [
- "## Working with sets\n",
- "\n",
- "Sets are mutable, so we can add and remove items, and the set will be modified in place. This also means we have to be careful when setting one set equal to another -- modifying one means modifying both!"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "6e30c27e",
- "metadata": {
- "id": "6e30c27e"
- },
- "source": [
- "If an item is already in a set, it won't be duplicated."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "a6f6df51",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "a6f6df51",
- "outputId": "18b16665-6eb7-4709-b4da-65b9e93769dd"
- },
- "outputs": [],
- "source": [
- "# check for membership\n",
- "'lock' in things"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "08ad81be",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "08ad81be",
- "outputId": "b096abed-50a7-4cee-a168-1812fa810115"
- },
- "outputs": [],
- "source": [
- "# the set will not update\n",
- "things.add('lock')\n",
- "things"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "9136a509",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "9136a509",
- "outputId": "e2748e26-8356-454b-a82c-728b201fb7ba"
- },
- "outputs": [],
- "source": [
- "# notice where mirror appears in the set\n",
- "things.add('mirror')\n",
- "things"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "2f0e8e77",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "2f0e8e77",
- "outputId": "d40a1e3f-8615-4bf9-8fab-1406a53762cb"
- },
- "outputs": [],
- "source": [
- "things.remove('apple')\n",
- "things"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "78dd87cf",
- "metadata": {
- "id": "78dd87cf"
- },
- "source": [
- "Since sets are unordered, we cannot slice them or access items by index."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "1f861290",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 174
- },
- "id": "1f861290",
- "outputId": "9b25543a-bc75-43dc-ebc4-43be5a863637"
- },
- "outputs": [],
- "source": [
- "things[1]"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "92127bd7",
- "metadata": {
- "id": "92127bd7"
- },
- "source": [
- "## Set operations\n",
- "\n",
- "There are some operations that are unique to sets. A _union_ combines two sets to get the unique values in both. An _intersection_ finds the values two sets have in common. A _symmetric difference_ finds the values that are in only one of two sets. And _difference_ finds the values in the first set that are not in the second set.\n",
- "\n",
- "Each operation has a corresponding set method."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "31a4a0b4",
- "metadata": {
- "id": "31a4a0b4"
- },
- "outputs": [],
- "source": [
- "rainbow = {'red', 'orange', 'yellow', 'green', 'blue', 'indigo', 'violet'}\n",
- "olympic_flag = {'red', 'green', 'yellow', 'blue', 'black'}"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "77906906",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "77906906",
- "outputId": "4a75c52f-5926-4416-ac54-ee8a2e4f17d7"
- },
- "outputs": [],
- "source": [
- "print(f'In the rainbow but not the Olympic flag: {rainbow.difference(olympic_flag)}')\n",
- "print(f'In the Olympic flag but not the rainbow: {olympic_flag.difference(rainbow)}')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "0f70aa26",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "0f70aa26",
- "outputId": "83ace290-4513-4913-9306-65125f4a1db5"
- },
- "outputs": [],
- "source": [
- "print(f'Only in one: {rainbow.symmetric_difference(olympic_flag)}')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "eca13bed",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "eca13bed",
- "outputId": "062f832d-8d79-4d41-a1ca-66bfc42b9551"
- },
- "outputs": [],
- "source": [
- "print(f'Common colours : {rainbow.intersection(olympic_flag)}')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "26c9bc0d",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "26c9bc0d",
- "outputId": "e9e5ba5e-cb7d-4354-c046-cfd51769e363"
- },
- "outputs": [],
- "source": [
- "print(f'All colours: {rainbow.union(olympic_flag)}')"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "351c544b",
- "metadata": {
- "id": "351c544b"
- },
- "source": [
- "## Dictionaries\n",
- "\n",
- "Dictionaries are our last collection of data. They store data in _key:value_ pairs and let us look up values by key. Dictionaries, like lists, are ordered and mutable. Every key in a dictionary is unique."
- ]
- },
- {
- "cell_type": "markdown",
- "id": "eddaf0db",
- "metadata": {
- "id": "eddaf0db"
- },
- "source": [
- "## Creating dictionaries\n",
- "\n",
- "To make a dictionary, we place curly braces around key:value pairs. Keys can be any immutable data type -- strings, numbers, booleans, and tuples all work. Values can be any data type."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "4ebcf461",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "4ebcf461",
- "outputId": "ce3ccb1a-f249-4845-aa64-5fcc9996afb1"
- },
- "outputs": [],
- "source": [
- "capitals = {'Canada': 'Ottawa',\n",
- " 'United States': 'Washington, D.C.',\n",
- " 'Mexico': 'Mexico City'}\n",
- "capitals"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "26204e75",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "26204e75",
- "outputId": "2af033a8-3ceb-45e7-f244-9dc62ba4679d"
- },
- "outputs": [],
- "source": [
- "olympics_cities = {2020: 'Tokyo', 2016: 'Rio de Janiero', 2012: 'London'}\n",
- "olympics_cities"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "dbef9ac7",
- "metadata": {
- "id": "dbef9ac7"
- },
- "source": [
- "We can nest dictionaries within dictionaries."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "9567a42f",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "9567a42f",
- "outputId": "59470523-941a-4b35-e046-ee0f1ced7e41"
- },
- "outputs": [],
- "source": [
- "all_olympics_hosts = {'summer': olympics_cities,\n",
- " 'winter': {2022: 'Beijing', 2018: 'Pyeongchang'}}\n",
- "all_olympics_hosts"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "b6456f09",
- "metadata": {
- "id": "b6456f09"
- },
- "source": [
- "The preferred way to create an empty dictionary is with curly braces, but the `dict()` function also works."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "82ea8a74",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "82ea8a74",
- "outputId": "3bac7409-d1a3-4f64-d8c7-4cf77c69728e"
- },
- "outputs": [],
- "source": [
- "empty_dictionary = {}\n",
- "type(empty_dictionary)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "740e8ab8",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "740e8ab8",
- "outputId": "75013ccf-664c-4fb1-8b6e-8462b6cf3270"
- },
- "outputs": [],
- "source": [
- "still_empty = dict()\n",
- "type(still_empty)"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "0273d8d1",
- "metadata": {
- "id": "0273d8d1"
- },
- "source": [
- "## Accessing, adding, and updating dictionary items\n",
- "\n",
- "We access the content of a dictionary by specifying the dictionary, then the key to look up in square brackets. To access nested values, we _chain_ together bracket selections."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "d8c5c78b",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 35
- },
- "id": "d8c5c78b",
- "outputId": "2702af14-b7b7-4bb5-ca16-a039638df12b"
- },
- "outputs": [],
- "source": [
- "olympics_cities[2016]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "8c3ef741",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 35
- },
- "id": "8c3ef741",
- "outputId": "6b4ae8be-a240-429e-920d-a89bac3af54b"
- },
- "outputs": [],
- "source": [
- "all_olympics_hosts['winter'][2018]"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "07cfdbaa",
- "metadata": {
- "id": "07cfdbaa"
- },
- "source": [
- "Trying to access a key that doesn't exist results in an error."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "22e5885c",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 174
- },
- "id": "22e5885c",
- "outputId": "5411f9dc-8829-4d84-e398-4e57d5b42e86"
- },
- "outputs": [],
- "source": [
- "olympics_cities[2014]"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "49190dce",
- "metadata": {
- "id": "49190dce"
- },
- "source": [
- "The `get()` method provides a safe way to work with dictionary values. It takes the name of the key to look up and the default value to create a new key:value pair if the key does not exist."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "2db879ff",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "2db879ff",
- "outputId": "d2aefe14-0fcb-4b54-b5c2-003591e28081"
- },
- "outputs": [],
- "source": [
- "olympics_cities.get(2004, 'Athens')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "0ba675d1",
- "metadata": {},
- "outputs": [],
- "source": [
- "olympics_cities"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "5b266b2a",
- "metadata": {
- "id": "5b266b2a"
- },
- "source": [
- "We can check to see if a key is in a dictionary with `in`."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "bbaf14b2",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "bbaf14b2",
- "outputId": "81f005e7-37bf-4ad1-83a5-6812cc36d397"
- },
- "outputs": [],
- "source": [
- "2016 in olympics_cities"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "e9980b1e",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "e9980b1e",
- "outputId": "5ada2602-ed03-4c43-d4b5-20e89c679c03"
- },
- "outputs": [],
- "source": [
- "# 'in' looks for matching keys\n",
- "'Rio de Janiero' in olympics_cities"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "d995abbd",
- "metadata": {
- "id": "d995abbd"
- },
- "source": [
- "If we assign a value to a key that doesn't exist, the key:value pair will be added to the dictionary. If we assign a value to a key that already exists, the value for that key will be updated."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "b4716837",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "b4716837",
- "outputId": "21dbad30-f511-47ed-f25c-9b60c03b4be4"
- },
- "outputs": [],
- "source": [
- "olympics_cities[2008] = 'Barcelona'\n",
- "olympics_cities"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "24f9054f",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "24f9054f",
- "outputId": "904c966e-2232-472a-f79b-3e374ded9fd6"
- },
- "outputs": [],
- "source": [
- "# fix 2008's city\n",
- "olympics_cities[2008] = 'Beijing'\n",
- "olympics_cities"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "eff9bfad",
- "metadata": {
- "id": "eff9bfad"
- },
- "source": [
- "### Mutations, mutations\n",
- "\n",
- "Notice that updating a dictionary will also change other variables that reference it! Let's take a look at our `all_olympics_hosts` dictionary."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "3b592169",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "3b592169",
- "outputId": "30e6f21c-9b93-4d8e-afae-5b986698904e"
- },
- "outputs": [],
- "source": [
- "all_olympics_hosts"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "16a219ae",
- "metadata": {
- "id": "16a219ae"
- },
- "source": [
- "## Deleting dictionary items\n",
- "\n",
- "To remove a key:value pair from a dictionary, we can use the `del` operator."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "1f186d4c",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "1f186d4c",
- "outputId": "6782e3ff-22e0-4658-a7d2-c64ee69244af"
- },
- "outputs": [],
- "source": [
- "del olympics_cities[2020]\n",
- "olympics_cities"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "bad3cc3f",
- "metadata": {
- "id": "bad3cc3f"
- },
- "source": [
- "## Dictionary methods\n",
- "\n",
- "Python dictionaries have methods for getting keys, values, and items (that is, key:value pairs). This is useful for getting all dictionary keys, checking for values in a dictionary, and, as we'll see soon, working with keys, values, and items one-by-one."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "9765afb3",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "9765afb3",
- "outputId": "aaeeaf75-b2a5-4373-fa10-b2f5a4850cfa"
- },
- "outputs": [],
- "source": [
- "all_olympics_hosts.keys()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "1790f770",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "1790f770",
- "outputId": "0459e303-4571-4f14-c7e5-d2cbcd02f525"
- },
- "outputs": [],
- "source": [
- "if 'London' in olympics_cities.values():\n",
- " print('London was a host city')\n",
- "else:\n",
- " print('London was not a host city')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "c8061f92",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "c8061f92",
- "outputId": "b52a12bc-6f3e-4b65-b688-1e0e94a7a947"
- },
- "outputs": [],
- "source": [
- "# get keys and values for the nested winter dictionary\n",
- "all_olympics_hosts['winter'].items()"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "66118b34",
- "metadata": {
- "id": "66118b34"
- },
- "source": [
- "## Collections: a summary\n",
- "\n",
- "(Adapted from: Table 17, Chapter 11, _Practical Programming: An Introduction to Computer Science Using Python 3.6_)\n",
- "\n",
- "| Collection | Mutable? | Ordered? | Use when...|\n",
- "|---|---|---|---|\n",
- "| `str` | No | Yes | You want to keep track of text. |\n",
- "| `list` | Yes | Yes | You want to keep track of and update an ordered sequence.|\n",
- "| `tuple` | No | Yes | You want to build an ordered sequence that you know won't change or that you want to use as a key in a dictionary or as a value in a set. |\n",
- "| `set` | Yes | No | You want to keep track of values, but order doesn't matter, and you don't want duplicates. The values must be immutable. |\n",
- "| `dict` | Yes | No | You want to keep a mapping of keys to values. The keys must be immutable. |"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "60cda1ba",
- "metadata": {
- "id": "60cda1ba"
- },
- "source": [
- "# Control Flow: Iteration"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "ca6a6ced",
- "metadata": {
- "id": "ca6a6ced"
- },
- "source": [
- "## What are iteration and loops?\n",
- "\n",
- "Earlier, we saw how to control the flow of a program through `if`/`elif`/`else` statements, which tell Python to run or skip blocks of code depending on whether a condition is met.\n",
- "\n",
- "We can also tell Python to repeat code in a loop for a certain number of times or until a condition is met, a technique called _iteration_. For example, we may want to manipulate every item in a list individually. Copy/pasting code for each item is inefficient and error-prone. Instead, we can use one of Python's two loops: `for` loops or `while` loops."
- ]
- },
- {
- "cell_type": "markdown",
- "id": "a2dfa50a",
- "metadata": {
- "id": "a2dfa50a"
- },
- "source": [
- "## `for` loops\n",
- "\n",
- "A `for` loop runs an indented block of code for every item in an _iterable_ -- a data type like a list, tuple, set, dictionary, or even string. When setting up a `for` loop, we have to specify a variable name to refer to individual items by. Try to pick one that makes sense, but if you're in a rush, `i` (for index) is conventional."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "d248517f",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "d248517f",
- "outputId": "cf2eddd0-89b2-4d74-f5dd-3cdf38267212"
- },
- "outputs": [],
- "source": [
- "for vowel in vowels:\n",
- " print(f'Give me an {vowel}!')"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "8e1ba720",
- "metadata": {
- "id": "8e1ba720"
- },
- "source": [
- "If we simply want to run a block of code _n_ number of times, we can use the `range()` function to create an iterable to loop over."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "0e0b74ff",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "0e0b74ff",
- "outputId": "e7ae4e42-0f6f-4de2-b928-10b88531c6eb"
- },
- "outputs": [],
- "source": [
- "for i in range(7):\n",
- " print(i, i*2)"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "2ad93ebf",
- "metadata": {
- "id": "2ad93ebf"
- },
- "source": [
- "We can use loops to build new lists (and other iterables)."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "e01cb12f",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "e01cb12f",
- "outputId": "34037d18-ff0e-42eb-9359-ce6c66ac1c66"
- },
- "outputs": [],
- "source": [
- "input_files = ['data_01.csv', 'data_02.csv', 'data_03.csv', 'data_04.csv']\n",
- "output_files = []\n",
- "\n",
- "for i in input_files:\n",
- " output_file_name = 'processed_' + i.replace('.csv', '.xlsx')\n",
- " output_files.append(output_file_name)\n",
- "\n",
- "output_files"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "d5949e22",
- "metadata": {
- "id": "d5949e22"
- },
- "source": [
- "## Looping with multiple values\n",
- "\n",
- "It is often useful to iterate over more than one value at once, such as when working with functions like `enumerate()` and methods like `dict.items()`, which give us index:value and key:value pairs, respectively. Because these methods give us two values at once, we need to supply two looping variables. The returned value pairs are _unpacked_ to our variables."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "dbf18fa4",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "dbf18fa4",
- "outputId": "bcedc555-debf-4cdb-b3ec-6d9c7340d303"
- },
- "outputs": [],
- "source": [
- "stops = ['Sheppard-Yonge', 'Bayview', 'Bessarion', 'Leslie', 'Don Mills']\n",
- "for idx, stop in enumerate(stops):\n",
- " print(f'Stop {idx + 1} is {stop}.')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "dffcff90",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "dffcff90",
- "outputId": "66fddd3f-ce24-4ee7-a35f-eecb055e64d1"
- },
- "outputs": [],
- "source": [
- "# double a list in place\n",
- "numbers = [1, 10, 100, 1000]\n",
- "for idx, val in enumerate(numbers):\n",
- " numbers[idx] = val * 2\n",
- "numbers"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "3859b887",
- "metadata": {
- "id": "3859b887"
- },
- "source": [
- "## Looping over two iterables at once\n",
- "\n",
- "To loop over more than one iterable at the same time, we can `zip()` them up. Note that if the iterables are different lengths, we won't get the \"extra\" values in the longer iterable."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "1df5c753",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "1df5c753",
- "outputId": "b670d4e9-cfe5-42cc-869d-7f7e9078d0df"
- },
- "outputs": [],
- "source": [
- "lats = (43.650, 45.520, 49.280)\n",
- "lons = (-79.380, -73.570, -123.130)\n",
- "\n",
- "for i, j in zip(lats, lons):\n",
- " print(f'({i}, {j})')"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "c93d6c38",
- "metadata": {
- "id": "c93d6c38"
- },
- "source": [
- "## Loops within loops\n",
- "\n",
- "We can nest loops within each other, indenting once more each time. The variables from the higher-level loop are available at the lower levels.\n",
- "\n",
- "One thing to keep in mind is that the number of times code runs increases very quickly with nested loops -- slightly longer iterables can mean a longer-running program than expected!"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "d2fa7beb",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "d2fa7beb",
- "outputId": "ca56c393-9ee3-42ee-a23a-0de4f0b60318"
- },
- "outputs": [],
- "source": [
- "for key, value in all_olympics_hosts.items():\n",
- " for year, city in value.items():\n",
- " print(f'The {year} {key.title()} Olympics were in {city}.')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "123ca926",
- "metadata": {
- "id": "123ca926"
- },
- "outputs": [],
- "source": [
- "def print_table(n):\n",
- " \"\"\"Print the multiplication table for numbers 1 through n inclusive.\n",
- " >>> print_table(3)\n",
- " 1 2 3\n",
- " 1 1 2 3\n",
- " 2 2 4 6\n",
- " 3 3 6 9\n",
- " \"\"\"\n",
- " # The numbers to include in the table.\n",
- " numbers = list(range(1, n + 1))\n",
- " # Print the header row.\n",
- " for i in numbers:\n",
- " print(f'\\t{i}', end='')\n",
- " # End the header row.\n",
- " print()\n",
- " # Print each row number and the contents of each row.\n",
- " for i in numbers:\n",
- " print (i, end='')\n",
- " for j in numbers:\n",
- " print(f'\\t{i * j}', end='')\n",
- " # End the current row.\n",
- " print()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "26858eb7",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "26858eb7",
- "outputId": "f9738465-5d8b-415a-9571-746ea265717a"
- },
- "outputs": [],
- "source": [
- "print_table(5)"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "cd0a8cd4",
- "metadata": {
- "id": "cd0a8cd4"
- },
- "source": [
- "## `while` loops\n",
- "\n",
- "What if we aren't sure how many times code needs to run, but we know how to tell when we're done? In that case, we can use a `while` loop, which runs an indented block of code until a condition is met."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "755633ee",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "755633ee",
- "outputId": "0cda116b-fb50-4f7b-9190-295581c803cd"
- },
- "outputs": [],
- "source": [
- "countdown = 4\n",
- "\n",
- "while countdown > 0:\n",
- " print(countdown)\n",
- " countdown -= 1"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "9dead781",
- "metadata": {
- "id": "9dead781"
- },
- "source": [
- "## Infinite loops\n",
- "\n",
- "What happens if we omit the last line of code in the countdown example? The countdown never changes, so it never hits zero, and our program keeps printing \"4\". We've just created an _infinite loop_.\n",
- "\n",
- "(**NOTE**: If you try this, you will need to interrupt the program. In Anaconda, press `Ctrl+C` (Windows/Linux) or `Cmd+C` (Mac) on your keyboard or go to **Kernel --> Interrupt** in the toolbar. You may want to try this in a new notebook.)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "bab8a554",
- "metadata": {
- "id": "bab8a554"
- },
- "outputs": [],
- "source": [
- "# uncomment the lines below to run\n",
- "#countdown = 4\n",
- "\n",
- "#while countdown > 0:\n",
- "# print(countdown)"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "60840e98",
- "metadata": {
- "id": "60840e98"
- },
- "source": [
- "Infinite loops are sometimes necessary. They are used extensively in gaming or to run a connection to a server, for example. To create an intentional infinite loop, we make the `while` condition `True`."
- ]
- },
- {
- "cell_type": "markdown",
- "id": "0d942f1c",
- "metadata": {
- "id": "0d942f1c"
- },
- "source": [
- "## `break`ing free\n",
- "\n",
- "A `break` statement interrupts the execution of a loop."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "b497e524",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "b497e524",
- "outputId": "7e839855-8907-442d-e2d1-4de8990f8caa"
- },
- "outputs": [],
- "source": [
- "countdown = 4\n",
- "\n",
- "while countdown > 0:\n",
- " print(countdown)\n",
- " if countdown == 3:\n",
- " print('We are breaking the loop early.')\n",
- " break\n",
- " countdown -=1\n",
- "\n",
- "print('Done iterating.')"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "3b5ab52c",
- "metadata": {
- "id": "3b5ab52c"
- },
- "source": [
- "Even infinite loops can be exited."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "055270c4",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "055270c4",
- "outputId": "aee02a18-e058-4e60-876c-52310d1d16bf",
- "scrolled": true
- },
- "outputs": [],
- "source": [
- "while True:\n",
- " password = input(\"What's the password? \")\n",
- " # case-insensitive comparison\n",
- " if password.lower() == 'open sesame':\n",
- " print(\"You're in!\")\n",
- " break"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "a7b6ffbc",
- "metadata": {
- "id": "a7b6ffbc"
- },
- "source": [
- "## Please `continue`...\n",
- "\n",
- "Lastly, we can interrupt a loop with a `continue` statement, which tells Python to leave the current iteration of the loop and start back up at the top"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "fdcea735",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "fdcea735",
- "outputId": "e82418da-a0e8-44e4-fcda-7894520fcada"
- },
- "outputs": [],
- "source": [
- "wishes = 3\n",
- "while wishes > 0:\n",
- " wish = input('Make a wish: ')\n",
- " if 'infinite wishes' in wish.lower():\n",
- " print('You can\\'t do that!')\n",
- " continue\n",
- " else:\n",
- " print('Wish granted.')\n",
- " wishes -= 1\n",
- "print('You have used all your wishes.')"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "0d1c483c",
- "metadata": {
- "id": "0d1c483c"
- },
- "source": [
- "# References\n",
- "\n",
- "- Bostroem, Bekolay, and Staneva (eds): \"Software Carpentry: Programming with Python\" Version 2016.06, June 2016, https://github.com/swcarpentry/python-novice-inflammation, 10.5281/zenodo.57492.\n",
- "- Chapter 8, 9, and 11, Gries, Campbell, and Montojo, 2017, *Practical Programming: An Introduction to Computer Science Using Python 3.6*"
- ]
- }
- ],
- "metadata": {
- "celltoolbar": "Slideshow",
- "colab": {
- "collapsed_sections": [
- "fa05eeb9",
- "319df456",
- "006eb53a",
- "1e277da4",
- "f8da2d7e",
- "012f3f7c",
- "61112f8b",
- "351c544b",
- "66118b34",
- "ca6a6ced",
- "9dead781"
- ],
- "provenance": []
- },
- "kernelspec": {
- "display_name": "Python 3 (ipykernel)",
- "language": "python",
- "name": "python3"
- },
- "language_info": {
- "codemirror_mode": {
- "name": "ipython",
- "version": 3
- },
- "file_extension": ".py",
- "mimetype": "text/x-python",
- "name": "python",
- "nbconvert_exporter": "python",
- "pygments_lexer": "ipython3",
- "version": "3.11.5"
- },
- "rise": {
- "scroll": true,
- "theme": "solarized",
- "transition": "none"
- }
- },
- "nbformat": 4,
- "nbformat_minor": 5
-}
diff --git a/01_materials/slides/08_reading_and_writing_files.ipynb b/01_materials/slides/08_reading_and_writing_files.ipynb
deleted file mode 100644
index 3b68f1a2e..000000000
--- a/01_materials/slides/08_reading_and_writing_files.ipynb
+++ /dev/null
@@ -1,236 +0,0 @@
-{
- "cells": [
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "# Reading and Writing Files"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## Contents:\n",
- "1. Opening, reading, and writing Files\n",
- "2. Working with specific file formats\n",
- "3. Navigating folders\n",
- "4. Manipulating paths"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## Opening, Reading, and Writing Files\n",
- "\n",
- "Python has a built-in function, `open()` for opening files. `open()` takes a string indicating the _file path_, or location, of the file to open, plus a one-character string indicating whether we should open the file in read-only, overwrite, or append mode.\n",
- "\n",
- "| `open()` mode | Description |\n",
- "|---|---|\n",
- "|`'r'` | Read-only. Produces an error if the file does not already exist. |\n",
- "|`'w'` | Write. Creates a new file if one does not exist. If the file already exists, the current contents are deleted and overwritten. |\n",
- "|`'a'`| Append. Adds to an existing file. If the file does not exist, it will be created. |"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "### Opening files\n",
- "\n",
- "To open a file, we use a `with` statement, which follows the pattern `with open('file_path') as file_variable_name:`, then an indented block of code to process the file. The `with` statement ensures that Python closes the file when we're done working with it."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "with open('../../05_src/data/slides_data/california_housing_test.csv', 'r') as f:\n",
- " print(f)"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "### Reading files\n",
- "\n",
- "Opening a file doesn't immediately get us the file's contents. To do that, we must use a read method.\n",
- "\n",
- "* `read()` returns the full file contents, which can be overwhelming for larger files.\n",
- "* `readline()` returns only the next line in the file. Python keeps track of where it is in the file.\n",
- "* `readlines()` returns the full file as a list. Each item is one line in the file."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "with open('../../05_src/data/slides_data/california_housing_test.csv', 'r') as f:\n",
- " for i in range(5):\n",
- " print(f.readline())"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "### Writing files\n",
- "\n",
- "There are corresponding `write()` methods for files.\n",
- "\n",
- "* `write()` writes a string to file.\n",
- "* `writelines()` writes each item in an iterable to file, with no separating text in between."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "provinces = ['BC', 'AB', 'SK', 'MB', 'ON', 'QC', 'NL', 'NB', 'NS', 'PE']\n",
- "with open('provinces.txt', 'w') as province_file:\n",
- " province_file.writelines(provinces)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "with open('provinces.txt', 'r') as province_file:\n",
- " print(province_file.read())"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## Working with specific file formats\n",
- "\n",
- "Python has built-in modules for working with specific file formats, like `csv` and `json`. We won't spend much time here, as we will soon be working with libraries that let us open, analyze, and write data in both formats."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "import csv\n",
- "\n",
- "with open('../../05_src/data/slides_data/california_housing_test.csv', 'r') as f:\n",
- " contents = csv.reader(f)\n",
- " for row in contents:\n",
- " print(row)"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## Navigating folders\n",
- "\n",
- "Being able to navigate the computer's file system enables us to work with entire folders' worth of files stored locally on a computer (or \"locally\" in an environment like Colab). Python's built-in `os` module lets us do just that."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "import os"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "# get the path to the folder we're currently in\n",
- "os.getcwd()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "# see the contents of the current folder\n",
- "os.listdir()"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## Manipulating paths\n",
- "\n",
- "The `os.path` submodule provides safe ways to manipulate paths. `os.path.join()` lets us create properly formatted paths from separate folder and file names, without worrying about getting slashes right. `os.path.exists()` lets us check for a file before trying to open or accidentally overwriting it."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "# create full paths for sample data files\n",
- "\n",
- "cwd = os.getcwd()\n",
- "full_paths = []\n",
- "for i in os.listdir():\n",
- " full_paths.append(os.path.join(cwd,\n",
- " i))\n",
- "full_paths"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "# check if a file exists to avoid overwriting it\n",
- "text = 'Lavender is a small purple flower.'\n",
- "\n",
- "if os.path.exists('plants.txt'):\n",
- " print('plants.txt already exists')\n",
- "else:\n",
- " with open('plants.txt', 'w') as f:\n",
- " f.write(text)"
- ]
- }
- ],
- "metadata": {
- "kernelspec": {
- "display_name": "dsi_participant",
- "language": "python",
- "name": "python3"
- },
- "language_info": {
- "codemirror_mode": {
- "name": "ipython",
- "version": 3
- },
- "file_extension": ".py",
- "mimetype": "text/x-python",
- "name": "python",
- "nbconvert_exporter": "python",
- "pygments_lexer": "ipython3",
- "version": "3.11.8"
- }
- },
- "nbformat": 4,
- "nbformat_minor": 2
-}
diff --git a/01_materials/slides/09_object_oriented_programming.ipynb b/01_materials/slides/09_object_oriented_programming.ipynb
deleted file mode 100644
index 26b4ae65f..000000000
--- a/01_materials/slides/09_object_oriented_programming.ipynb
+++ /dev/null
@@ -1,324 +0,0 @@
-{
- "cells": [
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "# Object Oriented Programming"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## Contents:\n",
- "1. Whay is Object Oriented Programming?\n",
- "2. Getters and Setters\n",
- "3. Validations"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "# What is Object Oriented Programming?\n",
- "\n",
- "Object Oriented Programming, also known as OOP, is a programming paradigm that encapsulates real life entities around the concept of objects. It is widely used in programming languages such as Java, C++, and Python.\n",
- "\n",
- "For example, if we use a real life entity such as a car, how would we capture a single car?\n",
- "\n",
- "```python\n",
- "car_name = \"Taylor\"\n",
- "car_brand = \"Honda\"\n",
- "car_model = \"Civic\"\n",
- "car_vin = \"1VWAT7A32EC093779\"\n",
- "```\n",
- "\n",
- "Now, how can we capture this if we have two cars? Thousands? Or even millions? If we do it the same way above, it is highly inefficient. This is where OOP comes in handy! We can take a generic entity such as a car, and turn it into a blueprint known as a class. This \"blueprint\" will let us create as many cars as we want.\n",
- "\n",
- "```python\n",
- "class Car:\n",
- " def __init__(self, name, brand, model, vin):\n",
- " self.name = name\n",
- " self.brand = brand\n",
- " self.model = model\n",
- " self.vin = vin\n",
- "```\n",
- "\n",
- "You can think of classes as a model, where it can be used many times and be populated with data."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "class Car:\n",
- " def __init__(self, name, brand, model, vin):\n",
- " self.name = name\n",
- " self.brand = brand\n",
- " self.model = model\n",
- " self.vin = vin\n",
- "\n",
- "# Let's create a car object and print its VIN!\n",
- "car = Car(\"Taylor\", \"Honda\", \"Civic\", \"1VWAT7A32EC093779\")\n",
- "print(car.vin)"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## Class methods\n",
- "\n",
- "What else can a car do? It can honk! But then, how do we add that to our `car` class? We would just create a function under the class!"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "class Car:\n",
- " def __init__(self, name, brand, model, vin):\n",
- " self._name = name\n",
- " self._brand = brand\n",
- " self._model = model\n",
- " self._vin = vin\n",
- " \n",
- " def honk(self):\n",
- " print(\"beep beep\")\n",
- "\n",
- "car = Car(\"Taylor\", \"Honda\", \"Civic\", \"1VWAT7A32EC093779\")\n",
- "car.honk()"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## What is the self used for?\n",
- "\n",
- "By now, you may had noticed the `self` we declared as an argument in all our methods. The `self` is required for all class methods in Python, even if we do not require any arguments at all. It is used as a reference to the current instance of the class, and allow us to access variables within the class.\n",
- "\n",
- "For more information, check out [Programiz](https://www.programiz.com/article/python-self-why)."
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "# Exercise 1\n",
- "\n",
- "Create a class called `Person`, and create a Person object with the following attributes and methods:\n",
- "\n",
- "**Attributes**\n",
- "- first_name\n",
- "- middle_name\n",
- "- last_name\n",
- "- date_of_birth\n",
- "\n",
- "**Methods**\n",
- "- full_name --> Takes the first and last name and prints out the full name\n",
- "- age --> Takes today's date and the date of birth and subtracts it. The result should print out the age"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "# Your code goes here"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "# Getters and Setters\n",
- "\n",
- "Currently, the attributes in our `car` object can be accessed publicly and directly. This is considered bad practice, because the purpose of OOP is to encapsulate everything into an object, and its direct attributes can only be accessed internally. If that's the case, how we can publicly access it? In many OOP languages, we use `getters` to access a private attribute from a class. While we use `setters` to set an attribute value for a class. This is known as data encapsulation.\n",
- "\n",
- "To keep an attribute or even method private, we would use `_` or `__` as the prefix. Unfortunately in Python, it doesn't enforced scoping, meaning it is only private technically.\n",
- "\n",
- "## Adding getters and setters"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "class Car:\n",
- " def __init__(self, name, brand, model, vin):\n",
- " self._name = name\n",
- " self._brand = brand\n",
- " self._model = model\n",
- " self._vin = vin\n",
- "\n",
- " def get_name(self):\n",
- " return self._name\n",
- " \n",
- " def set_name(self, name):\n",
- " self._name = name\n",
- " \n",
- " def get_brand(self):\n",
- " return self._brand\n",
- " \n",
- " def set_brand(self, brand):\n",
- " self._brand = brand\n",
- " \n",
- " def get_model(self):\n",
- " return self._model\n",
- "\n",
- " def set_model(self, model):\n",
- " self._model = model\n",
- " \n",
- " def get_vin(self):\n",
- " return self._vin\n",
- " \n",
- " def set_vin(self, vin):\n",
- " self._vin = vin\n",
- "\n",
- "car = Car(\"Taylor\", \"Honda\", \"Civic\", \"1VWAT7A32EC093779\")\n",
- "car.get_vin()"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "\n",
- "## Why are getters and setters important?\n",
- "\n",
- "We want to make sure the object's attributes are private, and cannot be accessed and changed publicly outside of its class. If an object's attribute does need to be changed, then we need to ensure the new value is valid. But how can we do that? Let's check out below!"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "# Validations\n",
- "\n",
- "Currently, if we try to replace the car's name from `Honda` to `2308943940284923`, the object would accept it as a valid replacement. But how can we ensure only strings for examples are allowed as the name? We would modify our setter method to ensure the setter takes only a string value. If it is not valid, we would raise an exception."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "class Car:\n",
- " def __init__(self, name, brand, model, vin):\n",
- " self._name = name\n",
- " self._brand = brand\n",
- " self._model = model\n",
- " self._vin = vin\n",
- "\n",
- " def get_name(self):\n",
- " return self._name\n",
- " \n",
- " def set_name(self, name):\n",
- " if type(name) == str:\n",
- " self._name = name\n",
- " else:\n",
- " raise TypeError(\"Only strings are allowed.\") \n",
- "\n",
- "car = Car(\"Taylor\", \"Honda\", \"Civic\", \"1VWAT7A32EC093779\")\n",
- "car.set_name(124234213)\n",
- "car.get_name()\n",
- "\n",
- "# Uncomment me and comment the two lines above to try me out\n",
- "# car.set_name(\"Toyota\")\n",
- "# car.get_name()"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## Exercise 2\n",
- "\n",
- "Add validations for the rest of the setters."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "class Car:\n",
- " def __init__(self, name, brand, model, vin):\n",
- " self._name = name\n",
- " self._brand = brand\n",
- " self._model = model\n",
- " self._vin = vin\n",
- "\n",
- " def get_name(self):\n",
- " return self._name\n",
- " \n",
- " def set_name(self, name):\n",
- " self._name = name\n",
- " \n",
- " def get_brand(self):\n",
- " return self._brand\n",
- " \n",
- " def set_brand(self, brand):\n",
- " self._brand = brand\n",
- " \n",
- " def get_model(self):\n",
- " return self._model\n",
- "\n",
- " def set_model(self, model):\n",
- " self._model = model\n",
- " \n",
- " def get_vin(self):\n",
- " return self._vin\n",
- " \n",
- " def set_vin(self, vin):\n",
- " self._vin = vin\n",
- "\n",
- "car = Car(\"Taylor\", \"Honda\", \"Civic\", \"1VWAT7A32EC093779\")"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "# Resources: More about OOP\n",
- "\n",
- "We will not be covering everything about OOP, but if you're interested in learning more, here are some resources to check out:\n",
- "- [GeeksForGeeks](https://www.geeksforgeeks.org/python-oops-concepts/)\n",
- "- [RealPython](https://realpython.com/python3-object-oriented-programming/)\n",
- "- [W3School](https://www.w3schools.com/python/python_classes.asp)"
- ]
- }
- ],
- "metadata": {
- "kernelspec": {
- "display_name": "Python 3",
- "language": "python",
- "name": "python3"
- },
- "language_info": {
- "codemirror_mode": {
- "name": "ipython",
- "version": 3
- },
- "file_extension": ".py",
- "mimetype": "text/x-python",
- "name": "python",
- "nbconvert_exporter": "python",
- "pygments_lexer": "ipython3",
- "version": "3.11.5"
- }
- },
- "nbformat": 4,
- "nbformat_minor": 2
-}
diff --git a/01_materials/slides/10_numpy.ipynb b/01_materials/slides/10_numpy.ipynb
deleted file mode 100644
index 924e4458f..000000000
--- a/01_materials/slides/10_numpy.ipynb
+++ /dev/null
@@ -1,1573 +0,0 @@
-{
- "cells": [
- {
- "cell_type": "markdown",
- "id": "40d3f376",
- "metadata": {
- "id": "40d3f376"
- },
- "source": [
- "# Introduction to `numpy`"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "e5e5ab47",
- "metadata": {
- "id": "e5e5ab47"
- },
- "source": [
- "# Contents:\n",
- "\n",
- "Dataset used: california_housing_test.csv\n",
- "\n",
- "1. Setup\n",
- "2. `numpy`\n",
- " 1. Intro and arrays\n",
- " 2. Loading `numpy`\n",
- " 3. Creating arrays\n",
- " 4. Reshaping\n",
- " 5. Basic operations\n",
- " 6. Logic and filtering\n",
- " 7. Loading data"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "b80d4fb6",
- "metadata": {
- "id": "b80d4fb6"
- },
- "source": [
- "# `numpy`"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "4339b9f2",
- "metadata": {
- "id": "4339b9f2"
- },
- "source": [
- "## What is `numpy`?\n",
- "\n",
- "`numpy` is a Python package for scientific computing. It gives us _homogenous multidimensional arrays_ -- a way of representing grids of elements where all elements are the same data type -- and functions to work efficiently with them. `numpy` both underpins and complements other data science libraries, including `pandas`, `matplotlib`, and `scikit-learn`."
- ]
- },
- {
- "cell_type": "markdown",
- "id": "135cb217",
- "metadata": {
- "id": "135cb217"
- },
- "source": [
- "## Arrays vs lists\n",
- "\n",
- "| `numpy` arrays | Python `list` |\n",
- "|---|---|\n",
- "| all elements must be the same type | elements can be different types |\n",
- "| fixed size | can change size |\n",
- "| n-dimensional | 1-dimensional |\n",
- "| faster to process | slower to process |\n",
- "| consumes less memory | consumes more memory |"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "50f9c343",
- "metadata": {
- "id": "50f9c343"
- },
- "source": [
- "## Loading `numpy`\n",
- "\n",
- "We can `import` numpy like any other module. For convenience, `numpy` is typically loaded `as np` -- an alias that makes referencing it easier."
- ]
- },
- {
- "cell_type": "markdown",
- "id": "ca881dfe",
- "metadata": {},
- "source": [
- "In our Python code, we will import `numpy` as `np`."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "cea5f938",
- "metadata": {
- "id": "cea5f938"
- },
- "outputs": [],
- "source": [
- "import numpy as np"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "7e774e1e",
- "metadata": {
- "id": "7e774e1e"
- },
- "source": [
- "## `numpy` arrays\n",
- "\n",
- "The main object in `numpy` is the `ndarray`, also referred to as the `array`. Dimensions in an array are called _axes_. Most arrays we'll work with will be one-dimensional _vectors_ and two-dimensional _matrices_.\n",
- "\n",
- "We can create an array by calling `np.array()` and passing in data as a single value, like a list. Below is a matrix. The first axis has a length of two, and the second axis has a length of 3."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "cf533fdd",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "cf533fdd",
- "outputId": "4ad1a1e1-cab0-4f5b-c3af-2a3412e15c42"
- },
- "outputs": [],
- "source": [
- "a = np.array([[1, 2, 3],\n",
- " [3, 2, 1]])\n",
- "a"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "b0f1b710",
- "metadata": {
- "id": "b0f1b710"
- },
- "source": [
- "An `array` has an `ndim` attribute indicating the number of its axes, a `size` indicating the number of values it has, and a `shape` indicating its size in each dimension. It also has a `dtype` describing what data type all of the elements in the array are."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "aa7267e0",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "aa7267e0",
- "outputId": "208c112b-0841-4b24-ff58-3eb5b9de911e"
- },
- "outputs": [],
- "source": [
- "# number of dimensions\n",
- "print(a.ndim)\n",
- "\n",
- "# notice that the shape is rows x columns\n",
- "print(a.shape)\n",
- "\n",
- "# notice that the size is rows * columns\n",
- "print(a.size)\n",
- "\n",
- "# int32 is a numpy-provided dtype\n",
- "print(a.dtype)"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "19868422",
- "metadata": {
- "id": "19868422"
- },
- "source": [
- "We can create arrays with placeholder content in several ways. This is useful when we know how many elements will be in an array, but not their values, as `numpy` arrays have fixed size. The full list is in [`numpy`'s documentation](https://numpy.org/devdocs/user/basics.creation.html#arrays-creation)."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "1fbe0b9b",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "1fbe0b9b",
- "outputId": "56167f5a-fd81-4a25-bf1f-98b541ae35bf"
- },
- "outputs": [],
- "source": [
- "# create an 2x3x2 array of zeros. notice the double parentheses\n",
- "np.zeros((2, 3, 2))"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "ecbd2b2b",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "ecbd2b2b",
- "outputId": "a1b55b46-0fc7-4cb8-cb75-8e6970fb8711"
- },
- "outputs": [],
- "source": [
- "# create an array of ones based on the earlier a array\n",
- "np.ones_like(a)"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "c24cee39",
- "metadata": {
- "id": "c24cee39"
- },
- "source": [
- "We can also create arrays by specifying a range of values through `arange()` or generating random ones through functions like `random.randint()` and `random.random()`."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "1310f431",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "1310f431",
- "outputId": "1acd1a79-534b-40fd-9321-5374cd619dd9"
- },
- "outputs": [],
- "source": [
- "# create a 1D array from 1 til 10 in steps of 2\n",
- "np.arange(1, 10, 2)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "15ab7ec5",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "15ab7ec5",
- "outputId": "adce8fe7-6fd7-4a07-fc89-798a715791ef"
- },
- "outputs": [],
- "source": [
- "# create a 1D array from 0 to 1 in steps of 0.1\n",
- "np.arange(0, 1, 0.1)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "d4f35396",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "d4f35396",
- "outputId": "26a9ca69-444b-48a5-8b71-dbe19fa7a0b6"
- },
- "outputs": [],
- "source": [
- "# seed is used to create a reproducible random example\n",
- "np.random.seed(1)\n",
- "# create a 3x4 array of random integers between 1 and 10\n",
- "np.random.randint(1, 10, (3, 4))"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "c7c9f568",
- "metadata": {
- "id": "c7c9f568"
- },
- "source": [
- "We can repeat values and arrays to create bigger ones with `repeat()` and `tile()`.\n",
- "\n",
- "`repeat()` repeats each element of an array a specified number or times.\n",
- "`tile()` repeats the whole input array a specified number of times."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "4e688f6f",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "4e688f6f",
- "outputId": "8035124b-db41-46cc-83dd-3a3ea4fe9f81"
- },
- "outputs": [],
- "source": [
- "# create a 1D array through repetition\n",
- "np.repeat(10, 5)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "z0XDhLZFllzB",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "z0XDhLZFllzB",
- "outputId": "9c05353b-f179-4a8e-aecc-d738d9fc8c74"
- },
- "outputs": [],
- "source": [
- "onedim_arr = np.array([1, 2, 3, 4, 5])\n",
- "multidim_arr = np.repeat(onedim_arr, 5)\n",
- "multidim_arr"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "d82d4e65",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "d82d4e65",
- "outputId": "e2994978-1459-4969-d85f-39c370b022ad"
- },
- "outputs": [],
- "source": [
- "# create a 2D array through repetition\n",
- "multidim_arr = np.tile(onedim_arr, (5,1))\n",
- "multidim_arr"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "5de34ff9",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "5de34ff9",
- "outputId": "5d40d080-75b2-491f-e99d-d4901911b975"
- },
- "outputs": [],
- "source": [
- "# repeat onedim_arr in multiple directions\n",
- "another_arr = np.tile(onedim_arr, (3,3))\n",
- "another_arr"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "0ae13590",
- "metadata": {
- "id": "0ae13590"
- },
- "source": [
- "### Simulating data\n",
- "\n",
- "Sometimes, it can be useful to simulate data to make sure an analysis works as expected. `numpy`'s `random` submodule provides support for drawing random samples from a variety of distributions. To generate random samples, we first call `default_rng()` to create a sample Generator. Then, we use the Generator's various distribution methods, like `normal()`, to create sample arrays."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "7cd8a282",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "7cd8a282",
- "outputId": "74222bc5-452d-4a66-a604-d25cec3d0243"
- },
- "outputs": [],
- "source": [
- "# create the sample Generator\n",
- "rng = np.random.default_rng(seed=42)\n",
- "\n",
- "# create a 5x4 array w/ normally distributed data\n",
- "# distribution has mean 10, standard dev. 2.5\n",
- "randrng = rng.normal(10, 2.5, (5, 4))\n",
- "randrng"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "f6bd79cb",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "f6bd79cb",
- "outputId": "84f52f0e-b30d-4628-8c52-112ab9d31fe4"
- },
- "outputs": [],
- "source": [
- "# using the same Generator to draw a random sample from a Poisson distribution\n",
- "# lam is 1 and size is 5x6\n",
- "poissonrng = rng.poisson(1, (5, 6))\n",
- "poissonrng"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "a9db9083",
- "metadata": {
- "id": "a9db9083"
- },
- "source": [
- "## Reshaping arrays\n",
- "\n",
- "We can change the shape of an array in various ways, leaving the elements the same."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "cff90fbf",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "cff90fbf",
- "outputId": "b5e78188-b6de-4042-a7be-d591c435bc45"
- },
- "outputs": [],
- "source": [
- "# get the transpose of an array\n",
- "b = np.array([[5, 4, 3, 2, 1, 0],\n",
- " [10, 8, 6, 4, 2, 0]])\n",
- "b.T"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "588fdb6f",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "588fdb6f",
- "outputId": "319b42c6-bcd6-4c1c-9c40-e38263794921"
- },
- "outputs": [],
- "source": [
- "# change dimensions\n",
- "b.reshape(4, 3)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "e7a4a530",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "e7a4a530",
- "outputId": "e21e5f35-0530-4126-d3db-d703db030639"
- },
- "outputs": [],
- "source": [
- "# collapse an array to one dimension\n",
- "b.flatten()"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "62ddbb94",
- "metadata": {
- "id": "62ddbb94"
- },
- "source": [
- "If two arrays share the same size along an axis, we can stack them with `np.hstack()` and `np.vstack()`. Notice that we pass the arrays to stack as a tuple."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "96677720",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "96677720",
- "outputId": "b3b65f88-b655-41b6-f775-86b571cf80d2"
- },
- "outputs": [],
- "source": [
- "# stack a and b horizontally\n",
- "np.hstack((b, a))"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "d84a8fdc",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "d84a8fdc",
- "outputId": "e5b20499-ebbe-45a4-cf60-f5493ca00085"
- },
- "outputs": [],
- "source": [
- "# reshape b before stacking vertically\n",
- "np.vstack((b.reshape(4, 3), a))"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "ecf0d862",
- "metadata": {
- "id": "ecf0d862"
- },
- "source": [
- "## Basic operations\n",
- "\n",
- "`numpy` arrays let us perform vector operations, manipulating all the elements in an axis without writing loops."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "c8789eee",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "c8789eee",
- "outputId": "df95b44c-9762-4db3-e6a6-baf3f604051c"
- },
- "outputs": [],
- "source": [
- "arr1 = np.array([5, 10, 15, 20])\n",
- "arr1"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "3221b5ee",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "3221b5ee",
- "outputId": "02a3399f-3890-405c-a145-904aa48670ff"
- },
- "outputs": [],
- "source": [
- "arr2 = np.arange(5, 9)\n",
- "arr2"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "355a767b",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "355a767b",
- "outputId": "16cc0ef5-ec63-45ab-e65a-034f05cd80fa"
- },
- "outputs": [],
- "source": [
- "np.sin(np.arange(0, 360, 45) * np.pi/180)"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "1a39707c",
- "metadata": {
- "id": "1a39707c"
- },
- "source": [
- "We can perform operations when arrays are the same length along the axis in use, or when values can be _broadcast_, or repeated, along an axis."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "e5dada56",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "e5dada56",
- "outputId": "5cad00b0-8f45-4cec-9223-1f6ffe3a7d2e"
- },
- "outputs": [],
- "source": [
- "# arr1 and arr2 are the same length\n",
- "arr1 - arr2"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "70a2b6b7",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "70a2b6b7",
- "outputId": "3a25d030-a820-4000-f758-b14cb2751a75"
- },
- "outputs": [],
- "source": [
- "results = []\n",
- "for i, j in zip(arr1, arr2):\n",
- " results.append(i - j)\n",
- "\n",
- "results"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "11d5c9ab",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "11d5c9ab",
- "outputId": "2b7a9f91-e050-4e9d-a6d3-efbbb5d25aa2"
- },
- "outputs": [],
- "source": [
- "# multiple each element in arr1 by 2\n",
- "arr1 * 2"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "d96c4676",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 191
- },
- "id": "d96c4676",
- "outputId": "78f89eb2-f4a8-46e3-8d42-829004a612d9"
- },
- "outputs": [],
- "source": [
- "# incompatible shapes\n",
- "arr2 + np.array([1, 2])"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "e775898d",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "e775898d",
- "outputId": "84b745d4-5ee8-49f7-a6cd-31ed1e06f6e6"
- },
- "outputs": [],
- "source": [
- "short_output = []\n",
- "for i, j in zip(arr2, np.array([1, 2])):\n",
- " short_output.append(i + j)\n",
- "\n",
- "short_output"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "48205385",
- "metadata": {
- "id": "48205385"
- },
- "source": [
- "We can also summarize the values in an array."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "c97fff71",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "c97fff71",
- "outputId": "1dd22e1d-709a-4900-dab1-33177fd29eb7"
- },
- "outputs": [],
- "source": [
- "print(f'''arr1 sums to {arr1.sum()}.\n",
- "Its max value is {arr1.max()}, and its mean is {arr1.mean()}.''')"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "729111af",
- "metadata": {
- "id": "729111af"
- },
- "source": [
- "Some descriptive statistics are only `numpy` functions, and are not available as `array` methods like we saw above."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "0a29625a",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "0a29625a",
- "outputId": "406843b2-3c27-4d7e-90ef-df9998e584a6"
- },
- "outputs": [],
- "source": [
- "np.median(arr1)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "306e7f1f",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 174
- },
- "id": "306e7f1f",
- "outputId": "1e585ed0-4f91-464c-e7d5-dfeb9581da7c"
- },
- "outputs": [],
- "source": [
- "arr1.median()"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "2efda296",
- "metadata": {
- "id": "2efda296"
- },
- "source": [
- "## Operations in multiple dimensions\n",
- "\n",
- "In a multi-dimensional array like a matrix, elements of same-sized arrays will be paired up for operations, just as with vectors. If we perform an operation with a matrix and a vector of the same size in one dimension, the vector can be _broadcast_ to repeat along the other dimension."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "3a9faa69",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "3a9faa69",
- "outputId": "cd336091-ae9c-4ec0-cdfe-1cbf3f19d504"
- },
- "outputs": [],
- "source": [
- "tens = np.arange(0, 120, 10).reshape(3, 4)\n",
- "tens"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "a1983e0d",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "a1983e0d",
- "outputId": "0dc0870a-d00f-49fc-e457-c35a5e48a32c"
- },
- "outputs": [],
- "source": [
- "horizontal = np.array([-5, -10, -15, -20])\n",
- "\n",
- "tens + horizontal"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "309f58eb",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "309f58eb",
- "outputId": "a864d48e-1516-45d0-a2eb-6138168a82be"
- },
- "outputs": [],
- "source": [
- "vertical = np.array([[100],\n",
- " [200],\n",
- " [300]])\n",
- "tens + vertical"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "1094644a",
- "metadata": {
- "id": "1094644a"
- },
- "source": [
- "We can still calculate statistics for multidimensional arrays, but we must specify the axis to calculate over. To calculate values for each column, we use `axis=0`. To calculate for each row, we use `axis=1`.\n",
- "\n",
- "#### 1. `axis=0`: Column-wise Operation\n",
- "\n",
- "When you set `axis=0`, the operation is performed along the vertical axis of the array, i.e., down the rows. This is often referred to as a column-wise operation.\n",
- "\n",
- "- **In a 2D array**: This calculates the mean of each column.\n",
- "- **Example**: If you have a 2x3 array (2 rows, 3 columns), using `axis=0` with `.mean()` will result in a 1D array with 3 elements, each being the mean of the columns.\n",
- "\n",
- "#### 2. `axis=1`: Row-wise Operation\n",
- "\n",
- "Conversely, when you set `axis=1`, the operation is performed along the horizontal axis of the array, i.e., across the columns. This is referred to as a row-wise operation.\n",
- "\n",
- "- **In a 2D array**: This calculates the mean of each row.\n",
- "- **Example**: If you have a 2x3 array, using `axis=1` with `.mean()` will yield a 1D array with 2 elements, each being the mean of the rows.\n",
- "\n",
- "#### Summary\n",
- "\n",
- "- `axis=0`: Column-wise operation (down the rows).\n",
- "- `axis=1`: Row-wise operation (across the columns)."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "b3c1440f",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "b3c1440f",
- "outputId": "0e5891f0-4117-46f2-b31f-5847ee0ba96c"
- },
- "outputs": [],
- "source": [
- "tens.mean(axis=0)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "d332e5f7",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "d332e5f7",
- "outputId": "454c27eb-ffaa-4d02-a4e1-9a1bda31c7be"
- },
- "outputs": [],
- "source": [
- "tens.mean(axis=1)"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "a2628461",
- "metadata": {
- "id": "a2628461"
- },
- "source": [
- "## Indexing, slicing, and iterating\n",
- "\n",
- "We can index and slice arrays like we would a list."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "5b09c0ee",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "5b09c0ee",
- "outputId": "4872f924-f8ab-4df0-ce2e-cd874b72e417"
- },
- "outputs": [],
- "source": [
- "arr1"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "a353dd04",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "a353dd04",
- "outputId": "1ba7264a-6d17-4d21-8258-6c3a6589d8f7"
- },
- "outputs": [],
- "source": [
- "arr1[1]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "47f8ffeb",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "47f8ffeb",
- "outputId": "040a8a4b-14e5-4476-de84-de24bd9844fb"
- },
- "outputs": [],
- "source": [
- "arr1[1:3]"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "93d7176b",
- "metadata": {
- "id": "93d7176b"
- },
- "source": [
- "We can iterate over arrays as well, though vectorized `numpy` operations are preferred when possible."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "649cbd88",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "649cbd88",
- "outputId": "3bc02537-1202-47bd-f219-472ee38e832a"
- },
- "outputs": [],
- "source": [
- "for i in arr1:\n",
- " print(i)"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "e1f1ae92",
- "metadata": {
- "id": "e1f1ae92"
- },
- "source": [
- "Multidimensional arrays like matrices have one index per axis. We can pass in more than one index within the square brackets."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "53cf1386",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "53cf1386",
- "outputId": "58ee4d97-3462-4078-f7c7-3481a24f0eea"
- },
- "outputs": [],
- "source": [
- "tens"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "261defc4",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "261defc4",
- "outputId": "0327418b-6673-4276-8174-0592fd0f8986"
- },
- "outputs": [],
- "source": [
- "# indexing goes row, column\n",
- "tens[1, 2]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "6947bfd8",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "6947bfd8",
- "outputId": "2f749b3d-cdc7-4b88-d5ef-775a7b3d6bb5"
- },
- "outputs": [],
- "source": [
- "# get the first row\n",
- "tens[0]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "f3dffa04",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "f3dffa04",
- "outputId": "96b8dd07-24c2-4b7e-fe5c-e3c1b86781ee"
- },
- "outputs": [],
- "source": [
- "# get the first column\n",
- "tens[:,0]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "7d0c42cc",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "7d0c42cc",
- "outputId": "434273a4-e68f-421d-e901-4d0b05088fb8"
- },
- "outputs": [],
- "source": [
- "# slice rows 1-2, columns 2-3\n",
- "tens[0:2, 1:3]"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "425049f9",
- "metadata": {
- "id": "425049f9"
- },
- "source": [
- "## Mutations and copies\n",
- "\n",
- "We can also update individual elements in an array. Note that any variables that refer to that array will also change, just like with mutating lists. To make an independent copy of an array, use the `.copy()` method."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "72097846",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "72097846",
- "outputId": "ebac9615-ab43-4ff6-8020-a6af5dc27e83"
- },
- "outputs": [],
- "source": [
- "# create a 3x4 array of random integers\n",
- "matrix = np.random.randint(1, 11, 12).reshape(3, 4)\n",
- "matrix2 = matrix\n",
- "\n",
- "#make a copy\n",
- "matrix3 = matrix.copy()\n",
- "\n",
- "matrix"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "ddaa9d8d",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "ddaa9d8d",
- "outputId": "65737a83-53ca-46b6-f622-b262151d1d3b"
- },
- "outputs": [],
- "source": [
- "# replace the second row\n",
- "matrix2[1] = [0, 0, 0, 0]\n",
- "matrix2"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "a2aaf95f",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "a2aaf95f",
- "outputId": "b92d347d-a62a-49b1-9599-c0342ccf2ce1"
- },
- "outputs": [],
- "source": [
- "# the original also changed\n",
- "matrix"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "8e084715",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "8e084715",
- "outputId": "5631f106-97cd-4c14-ba66-4f39aa9cc566"
- },
- "outputs": [],
- "source": [
- "# the copy did not\n",
- "matrix3"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "f3f13b89",
- "metadata": {
- "id": "f3f13b89"
- },
- "source": [
- "## Logic and filtering\n",
- "\n",
- "`numpy` arrays work with boolean expressions. Each element is checked, and the result is an array of `True`/`False` values. They resulting arrays sometimes called _masks_ because they are used to mask, or filter, data."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "5f267d1d",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "5f267d1d",
- "outputId": "890ddabe-7fec-4848-eb97-f66e28177d20"
- },
- "outputs": [],
- "source": [
- "tens"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "2b39604e",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "2b39604e",
- "outputId": "1f61d0bf-b83c-4ab2-e196-911f7205584d"
- },
- "outputs": [],
- "source": [
- "# evaluate whether each element is divisible by 3\n",
- "tens % 3 == 0"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "f0cff4b0",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "f0cff4b0",
- "outputId": "1686ff21-8213-44c7-ec36-26b881b46f19"
- },
- "outputs": [],
- "source": [
- "# the same thing with for loops\n",
- "masked = []\n",
- "\n",
- "for row in tens:\n",
- " masked_row = []\n",
- " for col in row:\n",
- " masked_row.append(col % 3 == 0)\n",
- " masked.append(masked_row)\n",
- "\n",
- "masked"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "bae12ead",
- "metadata": {
- "id": "bae12ead"
- },
- "source": [
- "To filter use a boolean expression as a mask, pass it into square brackets after the array to mask."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "6f5fa220",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "6f5fa220",
- "outputId": "5c8a0521-0cec-4dcc-cd7c-bccd4e8cd271"
- },
- "outputs": [],
- "source": [
- "tens[tens % 3 == 0]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "0b7d3b7f",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "0b7d3b7f",
- "outputId": "e5f0ad8a-7dc4-4b13-e9e4-5d925fc240cc"
- },
- "outputs": [],
- "source": [
- "# also works\n",
- "mask = tens % 3 == 0\n",
- "tens[mask]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "a2f02b2b",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "a2f02b2b",
- "outputId": "aa03e388-00b2-45c3-fa36-f370d974f449"
- },
- "outputs": [],
- "source": [
- "# comparison in standard python\n",
- "filtered_data = []\n",
- "\n",
- "for row in tens:\n",
- " for col in row:\n",
- " if col % 3 == 0:\n",
- " filtered_data.append(col)\n",
- "\n",
- "filtered_data"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "cb4a4676",
- "metadata": {
- "id": "cb4a4676"
- },
- "source": [
- "We can even use masks to generate new arrays with conditionals. `np.where()` takes as its arguments a boolean expression, an expression to evaluate if `True`, and an expression to evaluate elsewise. This is analagous to creating a new array based on an old one with a `for` loop and `if`/`else` statements, but much faster."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "71a2aa2d",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "71a2aa2d",
- "outputId": "2e508d65-a12d-4cee-8e61-5746fee05239"
- },
- "outputs": [],
- "source": [
- "np.where(tens % 3 == 0, # condition\n",
- " tens, # return the element if True\n",
- " 0) # return 0 if False"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "b207b630",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "b207b630",
- "outputId": "34b1fa63-e905-4ab1-e039-3b146b41cef4"
- },
- "outputs": [],
- "source": [
- "result = []\n",
- "\n",
- "for row in tens:\n",
- " result_row = []\n",
- " for col in row:\n",
- " if col % 3 == 0:\n",
- " result_row.append(col)\n",
- " else:\n",
- " result_row.append(0)\n",
- " result.append(result_row)\n",
- "\n",
- "result"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "6536654d",
- "metadata": {
- "id": "6536654d"
- },
- "source": [
- "## Loading flat files to `numpy` arrays\n",
- "\n",
- "We can also load data from files into `numpy` arrays. Recall the California housing csv we loaded earlier:"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "4f53edf1",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "4f53edf1",
- "outputId": "4d86bbd1-56aa-4ad4-c1e9-c37eea0990e4"
- },
- "outputs": [],
- "source": [
- "with open('../../05_src/data/slides_data/california_housing_test.csv', 'r') as f:\n",
- " # print the first five lines\n",
- " for i in range(5):\n",
- " print(f.readline())"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "1b18537e",
- "metadata": {
- "id": "1b18537e"
- },
- "source": [
- "We can load this data to a `numpy` array using `genfromtxt()`, which takes a path to a file as an argument. We should also include a `delimiter` argument, indicating how values are separated. Useful optional arguments include `names`, which we can use to tell `numpy` that the first row contains column names; `skip_header`, which we can use to skip the first few lines; and arguments for how to handle missing values."
- ]
- },
- {
- "cell_type": "markdown",
- "id": "d811f466",
- "metadata": {
- "id": "d811f466"
- },
- "source": [
- "There is also `loadtxt()`, which is simpler than `genfromtxt()`. The former does not have options for using header names or handling missing values.\n",
- "To fill missing values, we need to set the `usemask` parameter to `True`. The result will be a masked array in that case, which we can then convert to a regular array with the `filled(np.nan)` method. Note that this only works for float columns."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "d11869bd",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "d11869bd",
- "outputId": "86a00772-4c6b-4a62-a031-88fab7b69787"
- },
- "outputs": [],
- "source": [
- "hd = np.loadtxt('../../05_src/data/slides_data/california_housing_test.csv',\n",
- " delimiter=',',\n",
- " skiprows=1)\n",
- "hd.shape"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "96435f13",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "96435f13",
- "outputId": "24caf154-eeef-4264-aa70-e028180c5f69"
- },
- "outputs": [],
- "source": [
- "housing_data = np.genfromtxt('../../05_src/data/slides_data/california_housing_test.csv',\n",
- " delimiter=',',\n",
- " #skip_header=1, # let's use names instead\n",
- " names=True,\n",
- " missing_values=500001.0,\n",
- " usemask=True # replace missing values\n",
- " )\n",
- "\n",
- "housing_data.filled(np.nan)"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "acf39b55",
- "metadata": {
- "id": "acf39b55"
- },
- "source": [
- "If you look closely, the array we got back is not a matrix. Each row looks like a tuple with comma-separated values. If we check the `shape`, we see 3000 rows and what looks like no columns. The `dtype` attribute lists all our field names."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "3c0b6b97",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "3c0b6b97",
- "outputId": "799a1be7-0b13-4f9e-cbef-338d80776576"
- },
- "outputs": [],
- "source": [
- "housing_data.shape"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "47f76c0d",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "47f76c0d",
- "outputId": "8380b1c1-bdfb-4c37-f1b3-fc8c2cdd6667"
- },
- "outputs": [],
- "source": [
- "housing_data.dtype"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "d2979b21",
- "metadata": {
- "id": "d2979b21"
- },
- "source": [
- "In this case, `genfromtxt` returned a _structured array_, a different type of array than the ones we have seen so far. We can refer to fields by putting the field name as a string in square brackets, similar to referencing a dictionary key. However, we will soon see a data type in another package, `pandas`, that is even better suited to working with columns in tabular data like this."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "6e46f077",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "6e46f077",
- "outputId": "d0ef0097-273c-4916-e7bd-d6e58aa14071"
- },
- "outputs": [],
- "source": [
- "np.median(housing_data['housing_median_age'])"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "64ed4558",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "64ed4558",
- "outputId": "319468cd-5d5a-4dc4-c9bc-0d4c3235f526"
- },
- "outputs": [],
- "source": [
- "housing_data['median_income'].mean()"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "0d1c483c",
- "metadata": {
- "id": "0d1c483c"
- },
- "source": [
- "# References\n",
- "\n",
- "- NumPy. _Basic Numpy_. https://numpy.org/devdocs/user/quickstart.html\n",
- "- NumPy. _Numpy Routines_. https://numpy.org/doc/stable/reference/routines.html"
- ]
- }
- ],
- "metadata": {
- "celltoolbar": "Slideshow",
- "colab": {
- "provenance": []
- },
- "kernelspec": {
- "display_name": "Python 3 (ipykernel)",
- "language": "python",
- "name": "python3"
- },
- "language_info": {
- "codemirror_mode": {
- "name": "ipython",
- "version": 3
- },
- "file_extension": ".py",
- "mimetype": "text/x-python",
- "name": "python",
- "nbconvert_exporter": "python",
- "pygments_lexer": "ipython3",
- "version": "3.11.8"
- },
- "rise": {
- "scroll": true,
- "theme": "solarized",
- "transition": "none"
- }
- },
- "nbformat": 4,
- "nbformat_minor": 5
-}
diff --git a/01_materials/slides/DSI-introduction.pdf b/01_materials/slides/DSI-introduction.pdf
deleted file mode 100644
index 1807528f4..000000000
Binary files a/01_materials/slides/DSI-introduction.pdf and /dev/null differ
diff --git a/02_activities/assignments/assignment_2.ipynb b/02_activities/assignments/assignment_2.ipynb
index 8ad027e9f..7d1900159 100644
--- a/02_activities/assignments/assignment_2.ipynb
+++ b/02_activities/assignments/assignment_2.ipynb
@@ -1,339 +1,503 @@
{
- "cells": [
- {
- "cell_type": "markdown",
- "metadata": {
- "id": "QmzeljDgm4Ll"
- },
- "source": [
- "# Assignment #2: Efficacy Analysis of a Hypothetical Arthritis Drug\n",
- "\n",
- "**Objective**: In this assignment, your task is to utilize Python programming skills to evaluate the effectiveness of a fictional medication designed to reduce inflammation caused by arthritis flare-ups.\n",
- "\n",
- "**Background**: Imagine a clinical trial where 60 patients were administered a new drug for arthritis. Data from this trial has been recorded in a series of CSV files. Evaluate the effectiveness of a fictional medication designed to reduce inflammation caused by arthritis flare-ups.\n",
- "\n",
- "**Data Structure**:\n",
- "- Each CSV file corresponds to a specific check-in session with the patients.\n",
- "- There are 12 such CSV files, reflecting 12 different sessions where patients reported their experiences.\n",
- "- Inside each file:\n",
- " - Rows: Each of the 60 rows represents a unique patient.\n",
- " - Columns: Each of the 40 columns corresponds to a day, detailing the number of inflammation flare-ups the patient experienced on that day.\n",
- "\n",
- "**Your Role**: Analyze this data to determine how effective the new drug has been in managing arthritis inflammation across the trial period."
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## Submission Information\n",
- "\n",
- "🚨 **Please review our [Assignment Submission Guide](https://github.com/UofT-DSI/onboarding/blob/main/onboarding_documents/submissions.md)** 🚨 for detailed instructions on how to format, branch, and submit your work. Following these guidelines is crucial for your submissions to be evaluated correctly.\n",
- "\n",
- "### Submission Parameters:\n",
- "* Submission Due Date: `11:59 PM - Dec 8, 2024`\n",
- "* The branch name for your repo should be: `assignment-2`\n",
- "* What to submit for this assignment:\n",
- " * This Jupyter Notebook (assignment_2.ipynb) should be populated and should be the only change in your pull request.\n",
- "* What the pull request link should look like for this assignment: `https://github.com//python/pull/`\n",
- " * Open a private window in your browser. Copy and paste the link to your pull request into the address bar. Make sure you can see your pull request properly. This helps the technical facilitator and learning support staff review your submission easily.\n",
- "\n",
- "Checklist:\n",
- "- [ ] Created a branch with the correct naming convention.\n",
- "- [ ] Ensured that the repository is public.\n",
- "- [ ] Reviewed the PR description guidelines and adhered to them.\n",
- "- [ ] Verify that the link is accessible in a private browser window.\n",
- "\n",
- "If you encounter any difficulties or have questions, please don't hesitate to reach out to our team via our Slack at `#cohort-3-help`. Our Technical Facilitators and Learning Support staff are here to help you navigate any challenges."
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {
- "id": "yMsC2qsiKNP8"
- },
- "source": [
- "**The file is located under `../05_src/data/assignment_2_data/`.**\n",
- "\n",
- "The filtered list has been made for you:\n",
- "\n",
- "```python\n",
- "all_paths = [\n",
- " \"../../05_src/data/assignment_2_data/inflammation_01.csv\",\n",
- " \"../../05_src/data/assignment_2_data/inflammation_02.csv\",\n",
- " \"../../05_src/data/assignment_2_data/inflammation_03.csv\",\n",
- " \"../../05_src/data/assignment_2_data/inflammation_04.csv\",\n",
- " \"../../05_src/data/assignment_2_data/inflammation_05.csv\",\n",
- " \"../../05_src/data/assignment_2_data/inflammation_06.csv\",\n",
- " \"../../05_src/data/assignment_2_data/inflammation_07.csv\",\n",
- " \"../../05_src/data/assignment_2_data/inflammation_08.csv\",\n",
- " \"../../05_src/data/assignment_2_data/inflammation_09.csv\",\n",
- " \"../../05_src/data/assignment_2_data/inflammation_10.csv\",\n",
- " \"../../05_src/data/assignment_2_data/inflammation_11.csv\",\n",
- " \"../../05_src/data/assignment_2_data/inflammation_12.csv\"\n",
- "]\n",
- "```"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {
- "id": "JhJAJb1m-nkn"
- },
- "source": [
- "## 1. Reading and Displaying Data from the First File\n",
- "\n",
- "With the list of the relevant `inflammation_xx.csv` file paths above, write a program to read the `inflammation_xx.csv` files, and display the contents of the first file in this list.\n",
- "\n",
- "**Hint**: Remember to use appropriate Python file handling and data reading methods. If you need guidance on how to handle CSV files in Python, refer to the relevant sections in your Python learning resources."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {
- "id": "n0m48JsS-nMC"
- },
- "outputs": [],
- "source": [
- "with open(all_paths[0], 'r') as f:\n",
- " # YOUR CODE HERE: Use the readline() or readlines() method to read the .csv file into 'contents'\n",
- " \n",
- " # YOUR CODE HERE: Iterate through 'contents' using a for loop and print each row for inspection"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {
- "id": "sacozX7oB1VP"
- },
- "source": [
- "## 2. Data Summarization Function: `patient_summary`\n",
- "\n",
- "Your next step is to create a function named `patient_summary` that will compute summary statistics for each patient's data over a 40-day period.\n",
- "\n",
- "**Function Specifications**:\n",
- "- **Function Name**: `patient_summary`\n",
- "- **Parameters**:\n",
- " 1. `file_path`: A string representing the path to the CSV file containing the patient data.\n",
- " 2. `operation`: A string specifying the type of summary operation to perform. Acceptable values are \"mean\", \"max\", or \"min\". This will determine whether the function calculates the average, maximum, or minimum number of flare-ups for each patient over the 40 days.\n",
- "\n",
- "**Expected Behavior**:\n",
- "- Your function should read the data from the file at `file_path`.\n",
- "- Perform the specified `operation` (mean, max, or min) to summarize the flare-ups data for each of the 60 patients.\n",
- "- Return an array with 60 elements, each element being the result of the summary operation for a corresponding patient.\n",
- "\n",
- "**Expected Output**:\n",
- "- The output should be an array with a length of 60, aligning with the number of patients in the study.\n",
- "\n",
- "**Hints for Implementation**:\n",
- "1. **Utilizing NumPy**: For efficient data manipulation and computation, consider using NumPy, as discussed in the `10_numpy` slides.\n",
- "2. **Output Shape**: Ensure that the shape of your output data matches the number of patients, which is 60."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {
- "id": "82-bk4CBB1w4"
- },
- "outputs": [],
- "source": [
- "import numpy as np\n",
- "\n",
- "def patient_summary(file_path, operation):\n",
- " # load the data from the file\n",
- " data = np.loadtxt(fname=file_path, delimiter=',')\n",
- " ax = 1 # this specifies that the operation should be done for each row (patient)\n",
- "\n",
- " # implement the specific operation based on the 'operation' argument\n",
- " if operation == 'mean':\n",
- " # YOUR CODE HERE: calculate the mean (average) number of flare-ups for each patient\n",
- "\n",
- " elif operation == 'max':\n",
- " # YOUR CODE HERE: calculate the maximum number of flare-ups experienced by each patient\n",
- "\n",
- " elif operation == 'min':\n",
- " # YOUR CODE HERE: calculate the minimum number of flare-ups experienced by each patient\n",
- "\n",
- " else:\n",
- " # if the operation is not one of the expected values, raise an error\n",
- " raise ValueError(\"Invalid operation. Please choose 'mean', 'max', or 'min'.\")\n",
- "\n",
- " return summary_values"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {
- "id": "3TYo0-1SDLrd"
- },
- "outputs": [],
- "source": [
- "# test it out on the data file we read in and make sure the size is what we expect i.e., 60\n",
- "# Your output for the first file should be 60\n",
- "data_min = patient_summary(all_paths[0], 'min')\n",
- "print(len(data_min))"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {
- "id": "I-5m0RvxFx4J"
- },
- "source": [
- "## 3. Error Detection in Patient Data\n",
- "\n",
- "Your final task is to develop a function named `detect_problems` that identifies any irregularities in the patient data, specifically focusing on detecting patients with a mean inflammation score of 0.\n",
- "\n",
- "**Function Specifications**:\n",
- "- **Function Name**: `detect_problems`\n",
- "- **Parameter**:\n",
- " - `file_path`: A string that specifies the path to the CSV file containing patient data.\n",
- "\n",
- "**Expected Behavior**:\n",
- "- The function should read the patient data from the file at `file_path`.\n",
- "- Utilize the previously defined `patient_summary()` function to calculate the mean inflammation for each patient.\n",
- "- Employ an additional helper function `check_zeros(x)` (provided) to determine if there are any zero values in the array of mean inflammations.\n",
- "- The `detect_problems()` function should return `True` if there is at least one patient with a mean inflammation score of 0, and `False` otherwise.\n",
- "\n",
- "**Hints for Implementation**:\n",
- "1. Call `patient_summary(file_path, 'mean')` to get the mean inflammation scores for all patients.\n",
- "2. Use `check_zeros()` to evaluate the mean scores. This helper function takes an array as input and returns `True` if it finds zero values in the array.\n",
- "3. Based on the output from `check_zeros()`, the `detect_problems()` function should return `True` (indicating an issue) if any mean inflammation scores of 0 are found, or `False` if none are found.\n",
- "\n",
- "**Note**: This function is crucial for identifying potential data entry errors, such as healthy individuals being mistakenly included in the dataset or other data-related issues."
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {
- "id": "pb9EugDCJA4c"
- },
- "source": [
- "**Understanding the `check_zeros(x)` Helper Function**\n",
- "\n",
- "The `check_zeros(x)` function is provided as a tool to assist with your data analysis. While you do not need to modify or fully understand the internal workings of this function, it's important to grasp its input, output, and what the output signifies:\n",
- "\n",
- "1. **Input**:\n",
- " - **Parameter `x`**: This function takes an array of numbers as its input. In the context of your assignment, this array will typically represent a set of data points from your patient data, such as mean inflammation scores.\n",
- "\n",
- "2. **Output**:\n",
- " - The function returns a boolean value: either `True` or `False`.\n",
- "\n",
- "3. **Interpreting the Output**:\n",
- " - **Output is `True`**: This indicates that the array `x` contains at least one zero value. In the context of your analysis, this means that at least one patient has a mean inflammation score of 0, signaling a potential issue or anomaly in the data.\n",
- " - **Output is `False`**: This signifies that there are no zero values in the array `x`. For your patient data, it means no patient has a mean inflammation score of 0, and thus no apparent anomalies of this type were detected.\n",
- "\n",
- "**Usage in Your Analysis**:\n",
- "When using `check_zeros(x)` in conjunction with your `patient_summary()` function in the `detect_problems()` function, you'll be checking whether any patient in your dataset has an average (mean) inflammation score of 0."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {
- "id": "_svDiRkdIwiT"
- },
- "outputs": [],
- "source": [
- "# Run this cell so you can use this helper function\n",
- "\n",
- "def check_zeros(x):\n",
- " '''\n",
- " Given an array, x, check whether any values in x equal 0.\n",
- " Return True if any values found, else returns False.\n",
- " '''\n",
- " # np.where() checks every value in x against the condition (x == 0) and returns a tuple of indices where it was True (i.e. x was 0)\n",
- " flag = np.where(x == 0)[0]\n",
- "\n",
- " # Checks if there are any objects in flag (i.e. not empty)\n",
- " # If not empty, it found at least one zero so flag is True, and vice-versa.\n",
- " return len(flag) > 0"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {
- "id": "LEYPM5v4JT0i"
- },
- "outputs": [],
- "source": [
- "# Define your function `detect_problems` here\n",
- "\n",
- "def detect_problems(file_path):\n",
- " #YOUR CODE HERE: use patient_summary() to get the means and check_zeros() to check for zeros in the means\n",
- "\n",
- " return"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "# Test out your code here\n",
- "# Your output for the first file should be False\n",
- "print(detect_problems(all_paths[0]))"
- ]
- },
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "QmzeljDgm4Ll"
+ },
+ "source": [
+ "# Assignment #2: Efficacy Analysis of a Hypothetical Arthritis Drug\n",
+ "\n",
+ "**Objective**: In this assignment, your task is to utilize Python programming skills to evaluate the effectiveness of a fictional medication designed to reduce inflammation caused by arthritis flare-ups.\n",
+ "\n",
+ "**Background**: Imagine a clinical trial where 60 patients were administered a new drug for arthritis. Data from this trial has been recorded in a series of CSV files. Evaluate the effectiveness of a fictional medication designed to reduce inflammation caused by arthritis flare-ups.\n",
+ "\n",
+ "**Data Structure**:\n",
+ "- Each CSV file corresponds to a specific check-in session with the patients.\n",
+ "- There are 12 such CSV files, reflecting 12 different sessions where patients reported their experiences.\n",
+ "- Inside each file:\n",
+ " - Rows: Each of the 60 rows represents a unique patient.\n",
+ " - Columns: Each of the 40 columns corresponds to a day, detailing the number of inflammation flare-ups the patient experienced on that day.\n",
+ "\n",
+ "**Your Role**: Analyze this data to determine how effective the new drug has been in managing arthritis inflammation across the trial period."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Submission Information\n",
+ "\n",
+ "🚨 **Please review our [Assignment Submission Guide](https://github.com/UofT-DSI/onboarding/blob/main/onboarding_documents/submissions.md)** 🚨 for detailed instructions on how to format, branch, and submit your work. Following these guidelines is crucial for your submissions to be evaluated correctly.\n",
+ "\n",
+ "### Submission Parameters:\n",
+ "* Submission Due Date: `11:59 PM - Dec 8, 2024`\n",
+ "* The branch name for your repo should be: `assignment-2`\n",
+ "* What to submit for this assignment:\n",
+ " * This Jupyter Notebook (assignment_2.ipynb) should be populated and should be the only change in your pull request.\n",
+ "* What the pull request link should look like for this assignment: `https://github.com//python/pull/`\n",
+ " * Open a private window in your browser. Copy and paste the link to your pull request into the address bar. Make sure you can see your pull request properly. This helps the technical facilitator and learning support staff review your submission easily.\n",
+ "\n",
+ "Checklist:\n",
+ "- [ ] Created a branch with the correct naming convention.\n",
+ "- [ ] Ensured that the repository is public.\n",
+ "- [ ] Reviewed the PR description guidelines and adhered to them.\n",
+ "- [ ] Verify that the link is accessible in a private browser window.\n",
+ "\n",
+ "If you encounter any difficulties or have questions, please don't hesitate to reach out to our team via our Slack at `#cohort-3-help`. Our Technical Facilitators and Learning Support staff are here to help you navigate any challenges."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "yMsC2qsiKNP8"
+ },
+ "source": [
+ "**The file is located under `../05_src/data/assignment_2_data/`.**\n",
+ "\n",
+ "The filtered list has been made for you:\n",
+ "\n",
+ "```python\n",
+ "all_paths = [\n",
+ " \"../../05_src/data/assignment_2_data/inflammation_01.csv\",\n",
+ " \"../../05_src/data/assignment_2_data/inflammation_02.csv\",\n",
+ " \"../../05_src/data/assignment_2_data/inflammation_03.csv\",\n",
+ " \"../../05_src/data/assignment_2_data/inflammation_04.csv\",\n",
+ " \"../../05_src/data/assignment_2_data/inflammation_05.csv\",\n",
+ " \"../../05_src/data/assignment_2_data/inflammation_06.csv\",\n",
+ " \"../../05_src/data/assignment_2_data/inflammation_07.csv\",\n",
+ " \"../../05_src/data/assignment_2_data/inflammation_08.csv\",\n",
+ " \"../../05_src/data/assignment_2_data/inflammation_09.csv\",\n",
+ " \"../../05_src/data/assignment_2_data/inflammation_10.csv\",\n",
+ " \"../../05_src/data/assignment_2_data/inflammation_11.csv\",\n",
+ " \"../../05_src/data/assignment_2_data/inflammation_12.csv\"\n",
+ "]\n",
+ "```"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "JhJAJb1m-nkn"
+ },
+ "source": [
+ "## 1. Reading and Displaying Data from the First File\n",
+ "\n",
+ "With the list of the relevant `inflammation_xx.csv` file paths above, write a program to read the `inflammation_xx.csv` files, and display the contents of the first file in this list.\n",
+ "\n",
+ "**Hint**: Remember to use appropriate Python file handling and data reading methods. If you need guidance on how to handle CSV files in Python, refer to the relevant sections in your Python learning resources."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 2,
+ "metadata": {
+ "id": "n0m48JsS-nMC"
+ },
+ "outputs": [
{
- "cell_type": "markdown",
- "metadata": {
- "id": "j9SUzhiGuHhS"
- },
- "source": [
- "| Criteria | Complete Criteria | Incomplete Criteria |\n",
- "|------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------|\n",
- "| **General Criteria** | | |\n",
- "| Code Execution | All code cells execute without errors. | Any code cell produces an error upon execution. |\n",
- "| Code Quality | Code is well-organized, concise, and includes necessary comments for clarity. | Code is unorganized, verbose, or lacks necessary comments. |\n",
- "| Data Handling | Data files are correctly handled and processed. | Data files are not handled or processed correctly. |\n",
- "| Adherence to Instructions | Follows all instructions and requirements as per the assignment. | Misses or incorrectly implements one or more of the assignment requirements. |\n",
- "| **Specific Criteria** | | |\n",
- "| 1. Reading in our files | Correctly prints out information from the first file. | Fails to print out information from the first file. |\n",
- "| 2. Summarizing our data | Correctly defines `patient_summary()` function. Function processes data as per `operation` and outputs correctly shaped data (60 entries). | Incomplete or incorrect definition of `patient_summary()`. Incorrect implementation of operation or wrong output shape.|\n",
- "| 3. Checking for Errors | Correctly defines `detect_problems()` function. Function uses `patient_summary()` and `check_zeros()` to identify mean inflammation of 0 accurately. | Incorrect definition or implementation of `detect_problems()` function. Fails to accurately identify mean inflammation of 0.|\n",
- "| **Overall Assessment** | Meets all the general and specific criteria, indicating a strong understanding of the assignment objectives. | Fails to meet one or more of the general or specific criteria, indicating a need for further learning or clarification.|\n"
- ]
- },
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "0,0,1,3,1,2,4,7,8,3,3,3,10,5,7,4,7,7,12,18,6,13,11,11,7,7,4,6,8,8,4,4,5,7,3,4,2,3,0,0\n",
+ "\n",
+ "0,1,2,1,2,1,3,2,2,6,10,11,5,9,4,4,7,16,8,6,18,4,12,5,12,7,11,5,11,3,3,5,4,4,5,5,1,1,0,1\n",
+ "\n",
+ "0,1,1,3,3,2,6,2,5,9,5,7,4,5,4,15,5,11,9,10,19,14,12,17,7,12,11,7,4,2,10,5,4,2,2,3,2,2,1,1\n",
+ "\n",
+ "0,0,2,0,4,2,2,1,6,7,10,7,9,13,8,8,15,10,10,7,17,4,4,7,6,15,6,4,9,11,3,5,6,3,3,4,2,3,2,1\n",
+ "\n",
+ "0,1,1,3,3,1,3,5,2,4,4,7,6,5,3,10,8,10,6,17,9,14,9,7,13,9,12,6,7,7,9,6,3,2,2,4,2,0,1,1\n",
+ "\n",
+ "0,0,1,2,2,4,2,1,6,4,7,6,6,9,9,15,4,16,18,12,12,5,18,9,5,3,10,3,12,7,8,4,7,3,5,4,4,3,2,1\n",
+ "\n",
+ "0,0,2,2,4,2,2,5,5,8,6,5,11,9,4,13,5,12,10,6,9,17,15,8,9,3,13,7,8,2,8,8,4,2,3,5,4,1,1,1\n",
+ "\n",
+ "0,0,1,2,3,1,2,3,5,3,7,8,8,5,10,9,15,11,18,19,20,8,5,13,15,10,6,10,6,7,4,9,3,5,2,5,3,2,2,1\n",
+ "\n",
+ "0,0,0,3,1,5,6,5,5,8,2,4,11,12,10,11,9,10,17,11,6,16,12,6,8,14,6,13,10,11,4,6,4,7,6,3,2,1,0,0\n",
+ "\n",
+ "0,1,1,2,1,3,5,3,5,8,6,8,12,5,13,6,13,8,16,8,18,15,16,14,12,7,3,8,9,11,2,5,4,5,1,4,1,2,0,0\n",
+ "\n",
+ "0,1,0,0,4,3,3,5,5,4,5,8,7,10,13,3,7,13,15,18,8,15,15,16,11,14,12,4,10,10,4,3,4,5,5,3,3,2,2,1\n",
+ "\n",
+ "0,1,0,0,3,4,2,7,8,5,2,8,11,5,5,8,14,11,6,11,9,16,18,6,12,5,4,3,5,7,8,3,5,4,5,5,4,0,1,1\n",
+ "\n",
+ "0,0,2,1,4,3,6,4,6,7,9,9,3,11,6,12,4,17,13,15,13,12,8,7,4,7,12,9,5,6,5,4,7,3,5,4,2,3,0,1\n",
+ "\n",
+ "0,0,0,0,1,3,1,6,6,5,5,6,3,6,13,3,10,13,9,16,15,9,11,4,6,4,11,11,12,3,5,8,7,4,6,4,1,3,0,0\n",
+ "\n",
+ "0,1,2,1,1,1,4,1,5,2,3,3,10,7,13,5,7,17,6,9,12,13,10,4,12,4,6,7,6,10,8,2,5,1,3,4,2,0,2,0\n",
+ "\n",
+ "0,1,1,0,1,2,4,3,6,4,7,5,5,7,5,10,7,8,18,17,9,8,12,11,11,11,14,6,11,2,10,9,5,6,5,3,4,2,2,0\n",
+ "\n",
+ "0,0,0,0,2,3,6,5,7,4,3,2,10,7,9,11,12,5,12,9,13,19,14,17,5,13,8,11,5,10,9,8,7,5,3,1,4,0,2,1\n",
+ "\n",
+ "0,0,0,1,2,1,4,3,6,7,4,2,12,6,12,4,14,7,8,14,13,19,6,9,12,6,4,13,6,7,2,3,6,5,4,2,3,0,1,0\n",
+ "\n",
+ "0,0,2,1,2,5,4,2,7,8,4,7,11,9,8,11,15,17,11,12,7,12,7,6,7,4,13,5,7,6,6,9,2,1,1,2,2,0,1,0\n",
+ "\n",
+ "0,1,2,0,1,4,3,2,2,7,3,3,12,13,11,13,6,5,9,16,9,19,16,11,8,9,14,12,11,9,6,6,6,1,1,2,4,3,1,1\n",
+ "\n",
+ "0,1,1,3,1,4,4,1,8,2,2,3,12,12,10,15,13,6,5,5,18,19,9,6,11,12,7,6,3,6,3,2,4,3,1,5,4,2,2,0\n",
+ "\n",
+ "0,0,2,3,2,3,2,6,3,8,7,4,6,6,9,5,12,12,8,5,12,10,16,7,14,12,5,4,6,9,8,5,6,6,1,4,3,0,2,0\n",
+ "\n",
+ "0,0,0,3,4,5,1,7,7,8,2,5,12,4,10,14,5,5,17,13,16,15,13,6,12,9,10,3,3,7,4,4,8,2,6,5,1,0,1,0\n",
+ "\n",
+ "0,1,1,1,1,3,3,2,6,3,9,7,8,8,4,13,7,14,11,15,14,13,5,13,7,14,9,10,5,11,5,3,5,1,1,4,4,1,2,0\n",
+ "\n",
+ "0,1,1,1,2,3,5,3,6,3,7,10,3,8,12,4,12,9,15,5,17,16,5,10,10,15,7,5,3,11,5,5,6,1,1,1,1,0,2,1\n",
+ "\n",
+ "0,0,2,1,3,3,2,7,4,4,3,8,12,9,12,9,5,16,8,17,7,11,14,7,13,11,7,12,12,7,8,5,7,2,2,4,1,1,1,0\n",
+ "\n",
+ "0,0,1,2,4,2,2,3,5,7,10,5,5,12,3,13,4,13,7,15,9,12,18,14,16,12,3,11,3,2,7,4,8,2,2,1,3,0,1,1\n",
+ "\n",
+ "0,0,1,1,1,5,1,5,2,2,4,10,4,8,14,6,15,6,12,15,15,13,7,17,4,5,11,4,8,7,9,4,5,3,2,5,4,3,2,1\n",
+ "\n",
+ "0,0,2,2,3,4,6,3,7,6,4,5,8,4,7,7,6,11,12,19,20,18,9,5,4,7,14,8,4,3,7,7,8,3,5,4,1,3,1,0\n",
+ "\n",
+ "0,0,0,1,4,4,6,3,8,6,4,10,12,3,3,6,8,7,17,16,14,15,17,4,14,13,4,4,12,11,6,9,5,5,2,5,2,1,0,1\n",
+ "\n",
+ "0,1,1,0,3,2,4,6,8,6,2,3,11,3,14,14,12,8,8,16,13,7,6,9,15,7,6,4,10,8,10,4,2,6,5,5,2,3,2,1\n",
+ "\n",
+ "0,0,2,3,3,4,5,3,6,7,10,5,10,13,14,3,8,10,9,9,19,15,15,6,8,8,11,5,5,7,3,6,6,4,5,2,2,3,0,0\n",
+ "\n",
+ "0,1,2,2,2,3,6,6,6,7,6,3,11,12,13,15,15,10,14,11,11,8,6,12,10,5,12,7,7,11,5,8,5,2,5,5,2,0,2,1\n",
+ "\n",
+ "0,0,2,1,3,5,6,7,5,8,9,3,12,10,12,4,12,9,13,10,10,6,10,11,4,15,13,7,3,4,2,9,7,2,4,2,1,2,1,1\n",
+ "\n",
+ "0,0,1,2,4,1,5,5,2,3,4,8,8,12,5,15,9,17,7,19,14,18,12,17,14,4,13,13,8,11,5,6,6,2,3,5,2,1,1,1\n",
+ "\n",
+ "0,0,0,3,1,3,6,4,3,4,8,3,4,8,3,11,5,7,10,5,15,9,16,17,16,3,8,9,8,3,3,9,5,1,6,5,4,2,2,0\n",
+ "\n",
+ "0,1,2,2,2,5,5,1,4,6,3,6,5,9,6,7,4,7,16,7,16,13,9,16,12,6,7,9,10,3,6,4,5,4,6,3,4,3,2,1\n",
+ "\n",
+ "0,1,1,2,3,1,5,1,2,2,5,7,6,6,5,10,6,7,17,13,15,16,17,14,4,4,10,10,10,11,9,9,5,4,4,2,1,0,1,0\n",
+ "\n",
+ "0,1,0,3,2,4,1,1,5,9,10,7,12,10,9,15,12,13,13,6,19,9,10,6,13,5,13,6,7,2,5,5,2,1,1,1,1,3,0,1\n",
+ "\n",
+ "0,1,1,3,1,1,5,5,3,7,2,2,3,12,4,6,8,15,16,16,15,4,14,5,13,10,7,10,6,3,2,3,6,3,3,5,4,3,2,1\n",
+ "\n",
+ "0,0,0,2,2,1,3,4,5,5,6,5,5,12,13,5,7,5,11,15,18,7,9,10,14,12,11,9,10,3,2,9,6,2,2,5,3,0,0,1\n",
+ "\n",
+ "0,0,1,3,3,1,2,1,8,9,2,8,10,3,8,6,10,13,11,17,19,6,4,11,6,12,7,5,5,4,4,8,2,6,6,4,2,2,0,0\n",
+ "\n",
+ "0,1,1,3,4,5,2,1,3,7,9,6,10,5,8,15,11,12,15,6,12,16,6,4,14,3,12,9,6,11,5,8,5,5,6,1,2,1,2,0\n",
+ "\n",
+ "0,0,1,3,1,4,3,6,7,8,5,7,11,3,6,11,6,10,6,19,18,14,6,10,7,9,8,5,8,3,10,2,5,1,5,4,2,1,0,1\n",
+ "\n",
+ "0,1,1,3,3,4,4,6,3,4,9,9,7,6,8,15,12,15,6,11,6,18,5,14,15,12,9,8,3,6,10,6,8,7,2,5,4,3,1,1\n",
+ "\n",
+ "0,1,2,2,4,3,1,4,8,9,5,10,10,3,4,6,7,11,16,6,14,9,11,10,10,7,10,8,8,4,5,8,4,4,5,2,4,1,1,0\n",
+ "\n",
+ "0,0,2,3,4,5,4,6,2,9,7,4,9,10,8,11,16,12,15,17,19,10,18,13,15,11,8,4,7,11,6,7,6,5,1,3,1,0,0,0\n",
+ "\n",
+ "0,1,1,3,1,4,6,2,8,2,10,3,11,9,13,15,5,15,6,10,10,5,14,15,12,7,4,5,11,4,6,9,5,6,1,1,2,1,2,1\n",
+ "\n",
+ "0,0,1,3,2,5,1,2,7,6,6,3,12,9,4,14,4,6,12,9,12,7,11,7,16,8,13,6,7,6,10,7,6,3,1,5,4,3,0,0\n",
+ "\n",
+ "0,0,1,2,3,4,5,7,5,4,10,5,12,12,5,4,7,9,18,16,16,10,15,15,10,4,3,7,5,9,4,6,2,4,1,4,2,2,2,1\n",
+ "\n",
+ "0,1,2,1,1,3,5,3,6,3,10,10,11,10,13,10,13,6,6,14,5,4,5,5,9,4,12,7,7,4,7,9,3,3,6,3,4,1,2,0\n",
+ "\n",
+ "0,1,2,2,3,5,2,4,5,6,8,3,5,4,3,15,15,12,16,7,20,15,12,8,9,6,12,5,8,3,8,5,4,1,3,2,1,3,1,0\n",
+ "\n",
+ "0,0,0,2,4,4,5,3,3,3,10,4,4,4,14,11,15,13,10,14,11,17,9,11,11,7,10,12,10,10,10,8,7,5,2,2,4,1,2,1\n",
+ "\n",
+ "0,0,2,1,1,4,4,7,2,9,4,10,12,7,6,6,11,12,9,15,15,6,6,13,5,12,9,6,4,7,7,6,5,4,1,4,2,2,2,1\n",
+ "\n",
+ "0,1,2,1,1,4,5,4,4,5,9,7,10,3,13,13,8,9,17,16,16,15,12,13,5,12,10,9,11,9,4,5,5,2,2,5,1,0,0,1\n",
+ "\n",
+ "0,0,1,3,2,3,6,4,5,7,2,4,11,11,3,8,8,16,5,13,16,5,8,8,6,9,10,10,9,3,3,5,3,5,4,5,3,3,0,1\n",
+ "\n",
+ "0,1,1,2,2,5,1,7,4,2,5,5,4,6,6,4,16,11,14,16,14,14,8,17,4,14,13,7,6,3,7,7,5,6,3,4,2,2,1,1\n",
+ "\n",
+ "0,1,1,1,4,1,6,4,6,3,6,5,6,4,14,13,13,9,12,19,9,10,15,10,9,10,10,7,5,6,8,6,6,4,3,5,2,1,1,1\n",
+ "\n",
+ "0,0,0,1,4,5,6,3,8,7,9,10,8,6,5,12,15,5,10,5,8,13,18,17,14,9,13,4,10,11,10,8,8,6,5,5,2,0,2,0\n",
+ "\n",
+ "0,0,1,0,3,2,5,4,8,2,9,3,3,10,12,9,14,11,13,8,6,18,11,9,13,11,8,5,5,2,8,5,3,5,4,1,3,1,1,0\n",
+ "\n"
+ ]
+ }
+ ],
+ "source": [
+ "\n",
+ "all_paths = [ \n",
+ " r\"C:\\Users\\peeu3\\OneDrive\\Desktop\\MINE\\EY Van_File Transfer\\UofT\\Course\\GIT REPOs\\python\\05_src\\data\\assignment_2_data\\inflammation_01.csv\",\n",
+ " r\"C:\\Users\\peeu3\\OneDrive\\Desktop\\MINE\\EY Van_File Transfer\\UofT\\Course\\GIT REPOs\\python\\05_src\\data\\assignment_2_data\\inflammation_02.csv\",\n",
+ " r\"C:\\Users\\peeu3\\OneDrive\\Desktop\\MINE\\EY Van_File Transfer\\UofT\\Course\\GIT REPOs\\python\\05_src\\data\\assignment_2_data\\inflammation_03.csv\",\n",
+ " r\"C:\\Users\\peeu3\\OneDrive\\Desktop\\MINE\\EY Van_File Transfer\\UofT\\Course\\GIT REPOs\\python\\05_src\\data\\assignment_2_data\\inflammation_04.csv\",\n",
+ " r\"C:\\Users\\peeu3\\OneDrive\\Desktop\\MINE\\EY Van_File Transfer\\UofT\\Course\\GIT REPOs\\python\\05_src\\data\\assignment_2_data\\inflammation_05.csv\",\n",
+ " r\"C:\\Users\\peeu3\\OneDrive\\Desktop\\MINE\\EY Van_File Transfer\\UofT\\Course\\GIT REPOs\\python\\05_src\\data\\assignment_2_data\\inflammation_06.csv\",\n",
+ " r\"C:\\Users\\peeu3\\OneDrive\\Desktop\\MINE\\EY Van_File Transfer\\UofT\\Course\\GIT REPOs\\python\\05_src\\data\\assignment_2_data\\inflammation_07.csv\",\n",
+ " r\"C:\\Users\\peeu3\\OneDrive\\Desktop\\MINE\\EY Van_File Transfer\\UofT\\Course\\GIT REPOs\\python\\05_src\\data\\assignment_2_data\\inflammation_08.csv\",\n",
+ " r\"C:\\Users\\peeu3\\OneDrive\\Desktop\\MINE\\EY Van_File Transfer\\UofT\\Course\\GIT REPOs\\python\\05_src\\data\\assignment_2_data\\inflammation_09.csv\",\n",
+ " r\"C:\\Users\\peeu3\\OneDrive\\Desktop\\MINE\\EY Van_File Transfer\\UofT\\Course\\GIT REPOs\\python\\05_src\\data\\assignment_2_data\\inflammation_10.csv\",\n",
+ " r\"C:\\Users\\peeu3\\OneDrive\\Desktop\\MINE\\EY Van_File Transfer\\UofT\\Course\\GIT REPOs\\python\\05_src\\data\\assignment_2_data\\inflammation_11.csv\",\n",
+ " r\"C:\\Users\\peeu3\\OneDrive\\Desktop\\MINE\\EY Van_File Transfer\\UofT\\Course\\GIT REPOs\\python\\05_src\\data\\assignment_2_data\\inflammation_12.csv\"\n",
+ "]\n",
+ "\n",
+ "''' To read the csv file'''\n",
+ "with open(all_paths[0], 'r') as f:\n",
+ " # YOUR CODE HERE: Use the readline() or readlines() method to read the .csv file into 'contents'\n",
+ " contents = f.readlines()\n",
+ " \n",
+ " # YOUR CODE HERE: Iterate through 'contents' using a for loop and print each row for inspection\n",
+ " for i in contents:\n",
+ " print (i)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "sacozX7oB1VP"
+ },
+ "source": [
+ "## 2. Data Summarization Function: `patient_summary`\n",
+ "\n",
+ "Your next step is to create a function named `patient_summary` that will compute summary statistics for each patient's data over a 40-day period.\n",
+ "\n",
+ "**Function Specifications**:\n",
+ "- **Function Name**: `patient_summary`\n",
+ "- **Parameters**:\n",
+ " 1. `file_path`: A string representing the path to the CSV file containing the patient data.\n",
+ " 2. `operation`: A string specifying the type of summary operation to perform. Acceptable values are \"mean\", \"max\", or \"min\". This will determine whether the function calculates the average, maximum, or minimum number of flare-ups for each patient over the 40 days.\n",
+ "\n",
+ "**Expected Behavior**:\n",
+ "- Your function should read the data from the file at `file_path`.\n",
+ "- Perform the specified `operation` (mean, max, or min) to summarize the flare-ups data for each of the 60 patients.\n",
+ "- Return an array with 60 elements, each element being the result of the summary operation for a corresponding patient.\n",
+ "\n",
+ "**Expected Output**:\n",
+ "- The output should be an array with a length of 60, aligning with the number of patients in the study.\n",
+ "\n",
+ "**Hints for Implementation**:\n",
+ "1. **Utilizing NumPy**: For efficient data manipulation and computation, consider using NumPy, as discussed in the `10_numpy` slides.\n",
+ "2. **Output Shape**: Ensure that the shape of your output data matches the number of patients, which is 60."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 3,
+ "metadata": {
+ "id": "82-bk4CBB1w4"
+ },
+ "outputs": [],
+ "source": [
+ "import numpy as np\n",
+ "\n",
+ "def patient_summary(file_path, operation):\n",
+ " ''' Statistics for each patient's data over a 40-day period'''\n",
+ " data = np.loadtxt(fname=file_path, delimiter=',')\n",
+ " ax = 1 \n",
+ "\n",
+ " ''' Mean, maximum and minimum number of flare-ups for each patient '''\n",
+ " if operation == 'mean':\n",
+ " summary_values = data.mean(axis=1)\n",
+ " \n",
+ " elif operation == 'max':\n",
+ " summary_values = data.max(axis=1)\n",
+ " \n",
+ " elif operation == 'min':\n",
+ " summary_values = data.min(axis=1)\n",
+ " \n",
+ " else:\n",
+ " raise ValueError(\"Invalid operation. Please choose 'mean', 'max', or 'min'.\")\n",
+ "\n",
+ " return summary_values"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 4,
+ "metadata": {
+ "id": "3TYo0-1SDLrd"
+ },
+ "outputs": [
{
- "cell_type": "markdown",
- "metadata": {
- "id": "TY_ppBzHvdak"
- },
- "source": [
- "## References\n",
- "\n",
- "### Data Sources\n",
- "- Software Carpentry. _Python Novice Inflammation Data_. http://swcarpentry.github.io/python-novice-inflammation/data/python-novice-inflammation-data.zip\n"
- ]
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "60\n"
+ ]
}
- ],
- "metadata": {
- "colab": {
- "provenance": []
- },
- "kernelspec": {
- "display_name": "Python 3",
- "name": "python3"
- },
- "language_info": {
- "codemirror_mode": {
- "name": "ipython",
- "version": 3
- },
- "file_extension": ".py",
- "mimetype": "text/x-python",
- "name": "python",
- "nbconvert_exporter": "python",
- "pygments_lexer": "ipython3",
- "version": "3.11.8"
+ ],
+ "source": [
+ "# test it out on the data file we read in and make sure the size is what we expect i.e., 60\n",
+ "# Your output for the first file should be 60\n",
+ "data_min = patient_summary(all_paths[0], 'min')\n",
+ "print(len(data_min))"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "I-5m0RvxFx4J"
+ },
+ "source": [
+ "## 3. Error Detection in Patient Data\n",
+ "\n",
+ "Your final task is to develop a function named `detect_problems` that identifies any irregularities in the patient data, specifically focusing on detecting patients with a mean inflammation score of 0.\n",
+ "\n",
+ "**Function Specifications**:\n",
+ "- **Function Name**: `detect_problems`\n",
+ "- **Parameter**:\n",
+ " - `file_path`: A string that specifies the path to the CSV file containing patient data.\n",
+ "\n",
+ "**Expected Behavior**:\n",
+ "- The function should read the patient data from the file at `file_path`.\n",
+ "- Utilize the previously defined `patient_summary()` function to calculate the mean inflammation for each patient.\n",
+ "- Employ an additional helper function `check_zeros(x)` (provided) to determine if there are any zero values in the array of mean inflammations.\n",
+ "- The `detect_problems()` function should return `True` if there is at least one patient with a mean inflammation score of 0, and `False` otherwise.\n",
+ "\n",
+ "**Hints for Implementation**:\n",
+ "1. Call `patient_summary(file_path, 'mean')` to get the mean inflammation scores for all patients.\n",
+ "2. Use `check_zeros()` to evaluate the mean scores. This helper function takes an array as input and returns `True` if it finds zero values in the array.\n",
+ "3. Based on the output from `check_zeros()`, the `detect_problems()` function should return `True` (indicating an issue) if any mean inflammation scores of 0 are found, or `False` if none are found.\n",
+ "\n",
+ "**Note**: This function is crucial for identifying potential data entry errors, such as healthy individuals being mistakenly included in the dataset or other data-related issues."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "pb9EugDCJA4c"
+ },
+ "source": [
+ "**Understanding the `check_zeros(x)` Helper Function**\n",
+ "\n",
+ "The `check_zeros(x)` function is provided as a tool to assist with your data analysis. While you do not need to modify or fully understand the internal workings of this function, it's important to grasp its input, output, and what the output signifies:\n",
+ "\n",
+ "1. **Input**:\n",
+ " - **Parameter `x`**: This function takes an array of numbers as its input. In the context of your assignment, this array will typically represent a set of data points from your patient data, such as mean inflammation scores.\n",
+ "\n",
+ "2. **Output**:\n",
+ " - The function returns a boolean value: either `True` or `False`.\n",
+ "\n",
+ "3. **Interpreting the Output**:\n",
+ " - **Output is `True`**: This indicates that the array `x` contains at least one zero value. In the context of your analysis, this means that at least one patient has a mean inflammation score of 0, signaling a potential issue or anomaly in the data.\n",
+ " - **Output is `False`**: This signifies that there are no zero values in the array `x`. For your patient data, it means no patient has a mean inflammation score of 0, and thus no apparent anomalies of this type were detected.\n",
+ "\n",
+ "**Usage in Your Analysis**:\n",
+ "When using `check_zeros(x)` in conjunction with your `patient_summary()` function in the `detect_problems()` function, you'll be checking whether any patient in your dataset has an average (mean) inflammation score of 0."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 5,
+ "metadata": {
+ "id": "_svDiRkdIwiT"
+ },
+ "outputs": [],
+ "source": [
+ "# Run this cell so you can use this helper function\n",
+ "\n",
+ "def check_zeros(x):\n",
+ " '''\n",
+ " Given an array, x, check whether any values in x equal 0.\n",
+ " Return True if any values found, else returns False.\n",
+ " '''\n",
+ " # np.where() checks every value in x against the condition (x == 0) and returns a tuple of indices where it was True (i.e. x was 0)\n",
+ " flag = np.where(x == 0)[0]\n",
+ "\n",
+ " # Checks if there are any objects in flag (i.e. not empty)\n",
+ " # If not empty, it found at least one zero so flag is True, and vice-versa.\n",
+ " return len(flag) > 0\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "LEYPM5v4JT0i"
+ },
+ "outputs": [],
+ "source": [
+ "# Define your function `detect_problems` here\n",
+ "\n",
+ "def detect_problems(file_path):\n",
+ " #YOUR CODE HERE: use patient_summary() to get the means and check_zeros() to check for zeros in the means.\n",
+ " means = patient_summary(file_path, 'mean' )\n",
+ "\n",
+ " return check_zeros(means)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "False\n"
+ ]
}
+ ],
+ "source": [
+ "# Test out your code here.\n",
+ "# Your output for the first file should be False.\n",
+ "print(detect_problems (all_paths[0]))"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "j9SUzhiGuHhS"
+ },
+ "source": [
+ "| Criteria | Complete Criteria | Incomplete Criteria |\n",
+ "|------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------|\n",
+ "| **General Criteria** | | |\n",
+ "| Code Execution | All code cells execute without errors. | Any code cell produces an error upon execution. |\n",
+ "| Code Quality | Code is well-organized, concise, and includes necessary comments for clarity. | Code is unorganized, verbose, or lacks necessary comments. |\n",
+ "| Data Handling | Data files are correctly handled and processed. | Data files are not handled or processed correctly. |\n",
+ "| Adherence to Instructions | Follows all instructions and requirements as per the assignment. | Misses or incorrectly implements one or more of the assignment requirements. |\n",
+ "| **Specific Criteria** | | |\n",
+ "| 1. Reading in our files | Correctly prints out information from the first file. | Fails to print out information from the first file. |\n",
+ "| 2. Summarizing our data | Correctly defines `patient_summary()` function. Function processes data as per `operation` and outputs correctly shaped data (60 entries). | Incomplete or incorrect definition of `patient_summary()`. Incorrect implementation of operation or wrong output shape.|\n",
+ "| 3. Checking for Errors | Correctly defines `detect_problems()` function. Function uses `patient_summary()` and `check_zeros()` to identify mean inflammation of 0 accurately. | Incorrect definition or implementation of `detect_problems()` function. Fails to accurately identify mean inflammation of 0.|\n",
+ "| **Overall Assessment** | Meets all the general and specific criteria, indicating a strong understanding of the assignment objectives. | Fails to meet one or more of the general or specific criteria, indicating a need for further learning or clarification.|\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "TY_ppBzHvdak"
+ },
+ "source": [
+ "## References\n",
+ "\n",
+ "### Data Sources\n",
+ "- Software Carpentry. _Python Novice Inflammation Data_. http://swcarpentry.github.io/python-novice-inflammation/data/python-novice-inflammation-data.zip\n"
+ ]
+ }
+ ],
+ "metadata": {
+ "colab": {
+ "provenance": []
+ },
+ "kernelspec": {
+ "display_name": "dsi_participant",
+ "language": "python",
+ "name": "python3"
},
- "nbformat": 4,
- "nbformat_minor": 0
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.9.15"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 0
}
diff --git a/02_activities/homework/01_data_types.ipynb b/02_activities/homework/01_data_types.ipynb
index f60123d4b..d294728e4 100644
--- a/02_activities/homework/01_data_types.ipynb
+++ b/02_activities/homework/01_data_types.ipynb
@@ -1 +1,273 @@
-{"cells":[{"cell_type":"markdown","metadata":{"id":"jNAI57ELh-I8"},"source":["# Getting Started: Python Fundamentals\n","## Practice Problems"]},{"cell_type":"markdown","metadata":{"id":"5xeRB_0jiT5n"},"source":["### 1. What types are involved in the following expressions? What data type will each expression evaluate to?\n","\n","`8 * 2.5`"]},{"cell_type":"code","execution_count":null,"metadata":{"colab":{"base_uri":"https://localhost:8080/"},"executionInfo":{"elapsed":158,"status":"ok","timestamp":1667929890889,"user":{"displayName":"Kaylie Lau","userId":"01284785813595846851"},"user_tz":300},"id":"C6c48sSBOUeE","outputId":"3628ffce-faf6-4d23-daff-5e09edf76541"},"outputs":[],"source":["# Your code here"]},{"cell_type":"markdown","metadata":{"id":"4eICUfHi_Z-K"},"source":["`9 / 2`"]},{"cell_type":"code","execution_count":null,"metadata":{"colab":{"base_uri":"https://localhost:8080/"},"executionInfo":{"elapsed":43,"status":"ok","timestamp":1667929891449,"user":{"displayName":"Kaylie Lau","userId":"01284785813595846851"},"user_tz":300},"id":"QVdbNoA2OiQ_","outputId":"ab9f4fac-b1cc-4afc-cc54-10592b92abb1"},"outputs":[],"source":["# Your code here"]},{"cell_type":"markdown","metadata":{"id":"DhrJoWbj_cNe"},"source":["`9 // -2`"]},{"cell_type":"code","execution_count":null,"metadata":{"colab":{"base_uri":"https://localhost:8080/"},"executionInfo":{"elapsed":39,"status":"ok","timestamp":1667929891450,"user":{"displayName":"Kaylie Lau","userId":"01284785813595846851"},"user_tz":300},"id":"cSsGq3r0Opx6","outputId":"13df11ef-d136-4a42-884e-be1e369aae52"},"outputs":[],"source":["# Your code here"]},{"cell_type":"markdown","metadata":{"id":"lW4UnVfw_eYy"},"source":["`1.5 * 2 >= 7 - 3`"]},{"cell_type":"code","execution_count":null,"metadata":{"colab":{"base_uri":"https://localhost:8080/"},"executionInfo":{"elapsed":34,"status":"ok","timestamp":1667929891452,"user":{"displayName":"Kaylie Lau","userId":"01284785813595846851"},"user_tz":300},"id":"54N6gcNPOylS","outputId":"938208fc-c4c3-4e58-dd18-b50d3acc84d8"},"outputs":[],"source":["# Your code here"]},{"cell_type":"markdown","metadata":{"id":"5T-ytiTw-KvJ"},"source":["### 2. In which order will the expressions be evaluated.\n","\n","`6 * 3 + 7 * 4`\n","\n","\n","\n"," Answer
\n","\n"," `*` > `*` > `+` \n"," \n","\n","\n","`5 - 2 * 3 ** 4`\n","\n","\n"," Answer
\n","\n"," `**` > `*` > `-`\n"," \n","\n","`(5 - 2) * 3 ** 4`\n","\n","\n"," Answer
\n","\n"," `(-)` > `**` > `*` \n"," \n","\n","`5 + 2 >= 3 * 4`\n","\n","\n"," Answer
\n","\n"," `*` > `+` > `>=`\n"," "]}],"metadata":{"colab":{"authorship_tag":"ABX9TyMhUBNX+UP2C+YDtVSxQKBK","collapsed_sections":[],"provenance":[]},"kernelspec":{"display_name":"Python 3","name":"python3"},"language_info":{"name":"python"}},"nbformat":4,"nbformat_minor":0}
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "jNAI57ELh-I8"
+ },
+ "source": [
+ "# Getting Started: Python Fundamentals\n",
+ "## Practice Problems"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "5xeRB_0jiT5n"
+ },
+ "source": [
+ "### 1. What types are involved in the following expressions? What data type will each expression evaluate to?\n",
+ "\n",
+ "`8 * 2.5`"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 15,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "executionInfo": {
+ "elapsed": 158,
+ "status": "ok",
+ "timestamp": 1667929890889,
+ "user": {
+ "displayName": "Kaylie Lau",
+ "userId": "01284785813595846851"
+ },
+ "user_tz": 300
+ },
+ "id": "C6c48sSBOUeE",
+ "outputId": "3628ffce-faf6-4d23-daff-5e09edf76541"
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Types involved: Integer and Float\n",
+ "Result data type: Integer \n"
+ ]
+ }
+ ],
+ "source": [
+ "print(\"\"\"Types involved: Integer and Float\n",
+ "Result data type: Integer \"\"\")\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": []
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "4eICUfHi_Z-K"
+ },
+ "source": [
+ "`9 / 2`"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 16,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "executionInfo": {
+ "elapsed": 43,
+ "status": "ok",
+ "timestamp": 1667929891449,
+ "user": {
+ "displayName": "Kaylie Lau",
+ "userId": "01284785813595846851"
+ },
+ "user_tz": 300
+ },
+ "id": "QVdbNoA2OiQ_",
+ "outputId": "ab9f4fac-b1cc-4afc-cc54-10592b92abb1"
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Types involved: Integer and Integer\n",
+ "Result data type: Float \n"
+ ]
+ }
+ ],
+ "source": [
+ "print(\"\"\"Types involved: Integer and Integer\n",
+ "Result data type: Float \"\"\")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "DhrJoWbj_cNe"
+ },
+ "source": [
+ "`9 // -2`"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 17,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "executionInfo": {
+ "elapsed": 39,
+ "status": "ok",
+ "timestamp": 1667929891450,
+ "user": {
+ "displayName": "Kaylie Lau",
+ "userId": "01284785813595846851"
+ },
+ "user_tz": 300
+ },
+ "id": "cSsGq3r0Opx6",
+ "outputId": "13df11ef-d136-4a42-884e-be1e369aae52"
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Types involved: Integer and Integer\n",
+ "Result data type: Integer \n"
+ ]
+ }
+ ],
+ "source": [
+ "print(\"\"\"Types involved: Integer and Integer\n",
+ "Result data type: Integer \"\"\")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "lW4UnVfw_eYy"
+ },
+ "source": [
+ "`1.5 * 2 >= 7 - 3`"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 22,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "executionInfo": {
+ "elapsed": 34,
+ "status": "ok",
+ "timestamp": 1667929891452,
+ "user": {
+ "displayName": "Kaylie Lau",
+ "userId": "01284785813595846851"
+ },
+ "user_tz": 300
+ },
+ "id": "54N6gcNPOylS",
+ "outputId": "938208fc-c4c3-4e58-dd18-b50d3acc84d8"
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Types involved: Integer and Float\n",
+ "Result data type: Boolean \n"
+ ]
+ }
+ ],
+ "source": [
+ "print(\"\"\"Types involved: Integer and Float\n",
+ "Result data type: Boolean \"\"\") "
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "5T-ytiTw-KvJ"
+ },
+ "source": [
+ "### 2. In which order will the expressions be evaluated.\n",
+ "\n",
+ "`6 * 3 + 7 * 4`\n",
+ "\n",
+ "\n",
+ "\n",
+ " Answer
\n",
+ "\n",
+ " `*` > `*` > `+` \n",
+ " \n",
+ "\n",
+ "\n",
+ "`5 - 2 * 3 ** 4`\n",
+ "\n",
+ "\n",
+ " Answer
\n",
+ "\n",
+ " `**` > `*` > `-`\n",
+ " \n",
+ "\n",
+ "`(5 - 2) * 3 ** 4`\n",
+ "\n",
+ "\n",
+ " Answer
\n",
+ "\n",
+ " `(-)` > `**` > `*` \n",
+ " \n",
+ "\n",
+ "`5 + 2 >= 3 * 4`\n",
+ "\n",
+ "\n",
+ " Answer
\n",
+ "\n",
+ " `*` > `+` > `>=`\n",
+ " "
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": []
+ }
+ ],
+ "metadata": {
+ "colab": {
+ "authorship_tag": "ABX9TyMhUBNX+UP2C+YDtVSxQKBK",
+ "collapsed_sections": [],
+ "provenance": []
+ },
+ "kernelspec": {
+ "display_name": "dsi_participant",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.9.15"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 0
+}
diff --git a/04_this_cohort/bonus_slides/01_testing.ipynb b/04_this_cohort/bonus_slides/01_testing.ipynb
deleted file mode 100644
index 4e590f17f..000000000
--- a/04_this_cohort/bonus_slides/01_testing.ipynb
+++ /dev/null
@@ -1,185 +0,0 @@
-{
- "cells": [
- {
- "cell_type": "markdown",
- "id": "f31cc4a9",
- "metadata": {
- "id": "f31cc4a9"
- },
- "source": [
- "# Testing"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "687131d2",
- "metadata": {},
- "source": [
- "## Contents:\n",
- "1. Testing\n",
- "2. Writing a test"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "3a700ac7",
- "metadata": {
- "id": "3a700ac7"
- },
- "source": [
- "## Why are tests an integral part of coding?\n",
- "\n",
- "- We should always consider how the code needs to be tested when writing it\n",
- " - Impact and risk (code authority) vs. cost of testing\n",
- " - When using rm *.txt, it’s easy to double-check for typos and run ls *.txt first\n",
- " - It’s probably not worth writing an entire testing program with SOPs\n",
- " - Using ls *.txt is very low risk, so might decide to run first and check that way\n",
- " - Which parts of the code need more focus?\n",
- " - What are edge/unexpected cases that the code might need to handle?\n",
- " - Testing the code’s ability to gracefully and accurately handle errors\n",
- "\n",
- "## What are the two common paradigms for testing?\n",
- "\n",
- "1. Test-Driven Development\n",
- "2. Checking-driven development"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "2894c294",
- "metadata": {},
- "source": [
- "### Test-Driven Development\n",
- "\n",
- "- Rather than writing code and then writing tests, we write tests first and then write just enough code to make them pass\n",
- "- Advocates claim that it leads to better code because:\n",
- " - Writing tests clarifies what the code is supposed to do.\n",
- " - It eliminates confirmation bias.\n",
- " - If someone has just written a function, they are predisposed to want it to be\n",
- " right, so they will bias their tests towards proving that it is correct instead of trying to uncover errors.\n",
- " - Writing tests first ensures that they get written."
- ]
- },
- {
- "cell_type": "markdown",
- "id": "2a9eba20",
- "metadata": {},
- "source": [
- "### Checking-driven development\n",
- "\n",
- "- Writing just a few lines of code and testing it before moving on rather than writing several pages of code and then spending hours on testing\n",
- "- For example: every time we add a step to our pipeline\n",
- " - Look at its output\n",
- " - Write a test or check of some kind to the pipeline\n",
- " - Ensure that what we are checking remains true if it were run on other data or if the pipeline evolves"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "53d496c7",
- "metadata": {},
- "source": [
- "# Writing a test\n",
- "\n",
- "Let's say we have a function called `is_even_number`, which check to see if a number is an even number"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "f4c3de3b",
- "metadata": {},
- "outputs": [],
- "source": [
- "def is_even_number(number):\n",
- " return number % 2 == 0\n",
- "\n",
- "print(is_even_number(2234234324)) # True\n",
- "print(is_even_number(5646453)) # False"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "b3402884",
- "metadata": {},
- "source": [
- "How can we check that the behaviour be what we expect it to do `True` or `False` if the code changes in the future? We can test that out manually, but we would have to do that infinite times! That is super long and by the time we retired, we would still be computing for the answer.\n",
- "\n",
- "This is where we want to write tests using assertions."
- ]
- },
- {
- "cell_type": "markdown",
- "id": "e5d10cf6",
- "metadata": {},
- "source": [
- "### What are assertions?\n",
- "\n",
- "Assert is a built-in Python keyword we use to assert something is `True` confidently, especially when we are debugging. It looks like this:\n",
- "\n",
- "```python\n",
- "assert\n",
- "```"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 18,
- "id": "f3a42f17",
- "metadata": {},
- "outputs": [],
- "source": [
- "def is_even_number(number):\n",
- " return number % 2 == 0\n",
- "\n",
- "# They will not print out. But if you run it and you get a checkmark, then all the tests passes!\n",
- "assert is_even_number(2342323434)\n",
- "assert is_even_number(34345643) == False\n",
- "\n",
- "# This will fail and raise an AssertionError, because assert always expects True. To satisify that statement, we need to put it as a condition as seen above\n",
- "# assert is_even_number(34345643)"
- ]
- }
- ],
- "metadata": {
- "celltoolbar": "Slideshow",
- "colab": {
- "collapsed_sections": [
- "0294d7fe",
- "b3f69e98",
- "cd134d80",
- "16f27979",
- "f1caca54",
- "3a700ac7",
- "722d2c13",
- "ed8b70b9"
- ],
- "provenance": [],
- "toc_visible": true
- },
- "kernelspec": {
- "display_name": "Python 3 (ipykernel)",
- "language": "python",
- "name": "python3"
- },
- "language_info": {
- "codemirror_mode": {
- "name": "ipython",
- "version": 3
- },
- "file_extension": ".py",
- "mimetype": "text/x-python",
- "name": "python",
- "nbconvert_exporter": "python",
- "pygments_lexer": "ipython3",
- "version": "3.11.5"
- },
- "rise": {
- "scroll": true,
- "theme": "solarized",
- "transition": "none"
- }
- },
- "nbformat": 4,
- "nbformat_minor": 5
-}
diff --git a/04_this_cohort/bonus_slides/02_pandas.ipynb b/04_this_cohort/bonus_slides/02_pandas.ipynb
deleted file mode 100644
index f2ebc3275..000000000
--- a/04_this_cohort/bonus_slides/02_pandas.ipynb
+++ /dev/null
@@ -1,1829 +0,0 @@
-{
- "cells": [
- {
- "cell_type": "markdown",
- "id": "40d3f376",
- "metadata": {
- "id": "40d3f376"
- },
- "source": [
- "# Doing More with Data: `pandas`"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "d59f3e1e",
- "metadata": {
- "id": "d59f3e1e"
- },
- "source": [
- "# Contents:\n",
- "\n",
- "1. Setup\n",
- "2. Intro to `pandas`\n",
- "2. Getting data\n",
- "3. Profiling and initial data exploration: changing data types, descriptive statistics\n",
- "4. Wrangling and plotting: concatenating, merging, adding and removing columns, filtering and selecting, null values, grouping and aggregating, plotting\n",
- "5. Writing to file\n",
- "6. More wrangling: reshaping, applying functions"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "617bcc6b",
- "metadata": {
- "id": "617bcc6b"
- },
- "source": [
- "## Data\n",
- "\n",
- "This module uses four datasets: [bike thefts](https://open.toronto.ca/dataset/bicycle-thefts/), [TTC subway delays and subway delay reason codes](https://open.toronto.ca/dataset/ttc-subway-delay-data/), and [neighbourhood profiles](https://open.toronto.ca/dataset/neighbourhood-profiles/). All four are available in the course repo, and originally come from Toronto Open Data.\n",
- "\n",
- "The specific file names are:\n",
- "- bicycle-thefts - 4326.csv\n",
- "- ttc-subway-delay-data-2021.xlsx\n",
- "- ttc-subway-delay-codes.xlsx\n",
- "- neighbourhood-profiles-2016-140-model.csv"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "b80d4fb6",
- "metadata": {
- "id": "b80d4fb6"
- },
- "source": [
- "# `pandas`"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "4339b9f2",
- "metadata": {
- "id": "4339b9f2"
- },
- "source": [
- "## What is `pandas`?\n",
- "\n",
- "`pandas` is a package for data analysis and manipulation. (The name is a reference to panel data, not the animal.) It gives us data frames, which represent data in a table of columns and rows, and functions to manipulate and plot them. `pandas` also provides a slew of functions for reading and writing data to a variety of sources, including files, SQL databases, and compressed binary formats."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "516e431e",
- "metadata": {},
- "outputs": [],
- "source": [
- "# If there are issues with library installation please type the following commands into Terminal:\n",
- "\n",
- "# conda install pandas"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "cea5f938",
- "metadata": {
- "id": "cea5f938"
- },
- "outputs": [],
- "source": [
- "import numpy as np\n",
- "# pd is the conventional alias for pandas\n",
- "import pandas as pd\n",
- "\n",
- "# display all columns\n",
- "pd.set_option(\"display.max_columns\", None)"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "4891c551",
- "metadata": {
- "id": "4891c551"
- },
- "source": [
- "## DataFrames\n",
- "\n",
- "Columns are labeled with their names. Rows also have a label, or _index_. If row labels are not specified, `pandas` uses numbers as the default. Each column is a _Series_, or one-dimensional array, where values share a data type. Unlike `numpy` arrays, DataFrames can have columns of different data types. However, like arrays and lists, **DataFrames are mutable** -- this means that if more than one variable refers to the same DataFrame, updating one updates them all!"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "6536654d",
- "metadata": {
- "id": "6536654d"
- },
- "source": [
- "## Getting data\n",
- "\n",
- "We can create a DataFrame manually with `DataFrame()` constructor. If a dictionary is passed to `DataFrame()`, the keys become column names, and the values become the rows. Calling just `DataFrame()` creates an empty DataFrame to which data can be added later."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "d035bb4a",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 173
- },
- "id": "d035bb4a",
- "outputId": "dca96c28-14db-4ede-803e-55279f475464"
- },
- "outputs": [],
- "source": [
- "trees = pd.DataFrame({\n",
- " 'name': ['sugar maple', 'black oak', 'white ash', 'douglas fir'],\n",
- " 'avg_lifespan': [300, 100, 260, 450],\n",
- " 'quantity': [53, 207, 178, 93]\n",
- "})\n",
- "trees"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "fdc4ca75",
- "metadata": {
- "id": "fdc4ca75"
- },
- "source": [
- "We can create an individual column with `Series()`. The `name` argument corresponds to a column name."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "99aa5f2b",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "99aa5f2b",
- "outputId": "36bc2a39-57fb-4618-ea71-3622ab333108"
- },
- "outputs": [],
- "source": [
- "tree_types = pd.Series(['deciduous', 'deciduous', 'deciduous', 'evergreen'],\n",
- " name='foliage')\n",
- "tree_types"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "4b611794",
- "metadata": {
- "id": "4b611794"
- },
- "source": [
- "### Data from csv\n",
- "\n",
- "Of course, we're more likely to load data into a DataFrame than to create DataFrames manually. `pandas` has read functions for different file formats. To read data from a csv or other delimited file, we use `pd.read_csv()`, then pass in the local file path or the URL of the csv to read. `pandas` will infer the data type of each column based on the values in the first chunk of the file loaded."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "3473e899",
- "metadata": {
- "id": "3473e899"
- },
- "outputs": [],
- "source": [
- "thefts = pd.read_csv('../../05_src/data/slides_data/bicycle_thefts_4326.csv')"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "24d22043",
- "metadata": {
- "id": "24d22043"
- },
- "source": [
- "## Profiling and initial data cleaning\n",
- "\n",
- "We got our data, but now we need to understand what's in it. We can start to understand the DataFrame by checking out its `dtypes` and `shape` attributes, which give column data types and row by column dimensions, respectively. Note that `object` is `pandas`' way of saying values are represented as string data."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "1b4bbb4c",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "1b4bbb4c",
- "outputId": "68c1c782-fcda-4956-f9d7-600a018e6659"
- },
- "outputs": [],
- "source": [
- "thefts.shape"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "21852697",
- "metadata": {},
- "source": [
- "The `object` dtype in a pandas DataFrame represents columns that contain text or mixed types of data. When you use the `.dtypes` method on a pandas DataFrame and see that a column is listed as having the `object` dtype, it typically means that the data within that column is stored as strings (there isn't a dedicated `str` dtype for columns). However, `object` dtype columns can also hold data that is a mix of different types, including numbers, strings, or even more complex objects like lists or dictionaries, if the data within the column is not homogenous.\n",
- "\n",
- "The `object` dtype is essentially a catch-all for columns that don't fit neatly into more specific types like `int64`, `float64`, `datetime64`, etc. "
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "92ccbe1a",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "92ccbe1a",
- "outputId": "67338dd9-95dd-40a1-fe80-0af988bdf892"
- },
- "outputs": [],
- "source": [
- "thefts.dtypes"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "6f1bfa33",
- "metadata": {
- "id": "6f1bfa33"
- },
- "source": [
- "### `head()`s and `tail()`s\n",
- "\n",
- "To check out the first few rows, we can call the DataFrame `head()` method. Similarly, we can see the last few rows with the `tail()` method. Five rows are shown by default, but we can change that by passing an integer as an argument."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "9f2217f1",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 428
- },
- "id": "9f2217f1",
- "outputId": "eca7e551-d812-446e-98cb-f4da50106f21",
- "scrolled": true
- },
- "outputs": [],
- "source": [
- "thefts.head()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "41b2e05c",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 315
- },
- "id": "41b2e05c",
- "outputId": "614a8063-fb46-4bdb-8a68-ff1e3cac25b5"
- },
- "outputs": [],
- "source": [
- "# last 3\n",
- "thefts.tail(3)"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "2ffd0b4b",
- "metadata": {
- "id": "2ffd0b4b"
- },
- "source": [
- "### Renaming columns\n",
- "\n",
- "Most, but not all, of the bike theft columns follow the same naming convention. For convenience's sake, though, let's convert the column names to all lowercase. We can do this with the DataFrame `rename()` method. `rename()` accepts either a dictionary with current column names as the keys and new names as the values, or the name of a function to transform names. Let's write a function."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "7ae1134b",
- "metadata": {
- "id": "7ae1134b"
- },
- "outputs": [],
- "source": [
- "# notice that we do not add () to the function name\n",
- "thefts = thefts.rename(columns=str.lower)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "HamR_aJPTuwb",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 915
- },
- "id": "HamR_aJPTuwb",
- "outputId": "04b7f55f-71bb-499d-dcb4-6896b63ada5d"
- },
- "outputs": [],
- "source": [
- "thefts"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "ae4bdd8a",
- "metadata": {
- "id": "ae4bdd8a"
- },
- "source": [
- "Let's also rename `cost_of_bike` so it follows the pattern of the other bike attribute columns."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "1f221dbc",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "1f221dbc",
- "outputId": "a3db8195-3a9f-404b-dae6-88c7031f4649"
- },
- "outputs": [],
- "source": [
- "thefts = thefts.rename(columns={'cost_of_bike':'bike_cost'})\n",
- "\n",
- "# view column names\n",
- "# when you wrap a DataFrame object with the list() function, Python converts the DataFrame's column headers into a list\n",
- "print(list(thefts))"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "8cf14e92",
- "metadata": {
- "id": "8cf14e92"
- },
- "source": [
- "### Profiling columns\n",
- "\n",
- "It can be useful to focus on a subset of columns, particularly to understand value sets. To select a single column in a DataFrame, we can supply the name of the column in square brackets, just like we did when accessing values in a dictionary. `pandas` will return the column as a Series. To get unique values, we can use the `unique()` Series method. If we want to count how many times each value appears, we can use the `value_counts()` method."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "bab6f2f7",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "bab6f2f7",
- "outputId": "199637e2-23b4-4cb5-ff7b-43d3a06a5a87"
- },
- "outputs": [],
- "source": [
- "thefts['status']"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "1babac10",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "1babac10",
- "outputId": "1a90bcc2-cfa6-43bd-ec8e-cb307ad45934"
- },
- "outputs": [],
- "source": [
- "thefts['status'].unique()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "26976b4b",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "26976b4b",
- "outputId": "d749ee7d-b61a-4d82-9f2a-e4872da8d932"
- },
- "outputs": [],
- "source": [
- "thefts['status'].value_counts()"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "49505d9c",
- "metadata": {
- "id": "49505d9c"
- },
- "source": [
- "We can summarize numeric Series much like we did with `numpy` functions."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "01d6bffa",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "01d6bffa",
- "outputId": "5096f01b-69f7-46c5-904f-c293a786ede8"
- },
- "outputs": [],
- "source": [
- "thefts['bike_cost'].median()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "8a7f4104",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "8a7f4104",
- "outputId": "d0d29f57-cdae-4d12-df7c-1765babd8474"
- },
- "outputs": [],
- "source": [
- "thefts['bike_cost'].quantile(0.9) #qth quantile"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "d34d6368",
- "metadata": {
- "id": "d34d6368"
- },
- "source": [
- "### `info()`\n",
- "\n",
- "We can get an overview of the DataFrame by profiling it with the `info()` method.\n",
- "\n",
- "`info()` prints a lot of information about a DataFrame, including:\n",
- "* the `shape` as the number of rows and columns\n",
- "* column names and their `dtype`\n",
- "* the number of non-null values in each column\n",
- "* how big the DataFrame is in terms of memory usage"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "815e6e4b",
- "metadata": {
- "id": "815e6e4b"
- },
- "source": [
- "The bicycle theft data looks quite complete, though some records are missing bike descriptors like bike_make, bike_model, bike_colour, and bike_cost.\n",
- "\n",
- "Most of the column dtypes make sense. We'll want to convert the dates to proper dates. We may also want to convert string columns with limited value sets, like status, to categorical data."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "a0ff7d64",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "a0ff7d64",
- "outputId": "5d8d883a-6c58-4f89-f96c-64268bb282e2",
- "scrolled": true
- },
- "outputs": [],
- "source": [
- "thefts.info()"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "5533a5de",
- "metadata": {
- "id": "5533a5de"
- },
- "source": [
- "### Changing data types\n",
- "\n",
- "Before exploring the bike theft data further, let's fix the date and categorical columns. To convert a column to datetime, we use the `pd.to_datetime()` function, passing in the column to convert, and reassign the output back to the column we're converting.\n",
- "\n",
- "`pandas` knows how to convert the dates in the bike thefts data, but for less common formats, it is necessary to use the `format` keyword argument to specify how dates should be parsed. `format` strings use `strftime` codes. See https://strftime.org/ for a cheat sheet."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "a42f4c89",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "a42f4c89",
- "outputId": "9b55ef22-c600-46c2-c08f-7432a4a12ead"
- },
- "outputs": [],
- "source": [
- "thefts['occurrence_date'] = pd.to_datetime(thefts['occurrence_date'])\n",
- "thefts['occurrence_date']"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "4722100d",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "4722100d",
- "outputId": "e1791410-324e-4a47-903d-e39ccdb36acf"
- },
- "outputs": [],
- "source": [
- "# convert report_date without the format argument\n",
- "thefts['report_date'] = pd.to_datetime(thefts['report_date'])\n",
- "thefts['report_date']"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "df68b74d",
- "metadata": {
- "id": "df68b74d"
- },
- "source": [
- "All other data type conversions can be done with the `astype()` method. If we were converting to a number, `pd.to_numeric()` provides an easy way to convert without having to pick a specific numeric data type."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "5adc64a3",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "5adc64a3",
- "outputId": "167a698c-ebd0-45bb-80c7-df5417ef5749"
- },
- "outputs": [],
- "source": [
- "# 'category' data type represents a variable that can take on a limited, fixed number of possible values\n",
- "# useful for representing data that can be separated into distinct groups based on certain characteristics\n",
- "# but doesn't necessarily have a mathematical order or numerical relationship between them\n",
- "\n",
- "thefts['status'] = thefts['status'].astype('category')\n",
- "thefts['status']"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "2c574958",
- "metadata": {
- "id": "2c574958"
- },
- "source": [
- "We can select and convert multiple columns at once by passing a list of columns in the square brackets., then using `.astype()`."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "c327ef8b",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "c327ef8b",
- "outputId": "0c4c220a-605b-4555-c198-fe32d6eb4633"
- },
- "outputs": [],
- "source": [
- "thefts[['location_type', 'premises_type']] = thefts[['location_type','premises_type']].astype('category')\n",
- "\n",
- "# check data types\n",
- "thefts[['location_type', 'premises_type']].dtypes"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "4d9c4a20",
- "metadata": {
- "id": "4d9c4a20"
- },
- "source": [
- "### `describe()`\n",
- "\n",
- "To get a sense of the values in a DataFrame, we can use the `describe()` method. `describe()` summarizes only numeric columns by default. Passing the `include='all'` argument will produce summary statistics for other columns as well."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "c8115ab9",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 546
- },
- "id": "c8115ab9",
- "outputId": "86ceb7bb-def7-4ede-a4c1-3de7cfd28e88"
- },
- "outputs": [],
- "source": [
- "thefts.describe(include='all') "
- ]
- },
- {
- "cell_type": "markdown",
- "id": "98f401a5",
- "metadata": {
- "id": "98f401a5"
- },
- "source": [
- "## Wrangling and Plotting"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "076d08b1",
- "metadata": {
- "id": "076d08b1"
- },
- "source": [
- "### Combining datasets: concatenation\n",
- "\n",
- "Just as `pandas` has `read_csv()` for flat files, there is a `read_excel()` function to load Excel files.\n",
- "\n",
- "The TTC publishes subway delay data as a multi-sheet Excel workbook, with a month's worth of data per sheet. `read_excel()` loads just the first sheet in an Excel file by default. To load all sheets, pass in the keyword argument `sheet_name=None`. The result is a dictionary, where each key is the sheet name and each value is a DataFrame with the contents of the sheet."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "bf844e1a",
- "metadata": {},
- "outputs": [],
- "source": [
- "# If there are issues with library installation please type the following commands into Terminal:\n",
- "# conda install openpyxl"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "0ce56e2e",
- "metadata": {
- "id": "0ce56e2e"
- },
- "outputs": [],
- "source": [
- "delays = pd.read_excel('../../05_src/data/slides_data/ttc_subway_delay_data_2021.xlsx', sheet_name=None)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "256c6e97",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "256c6e97",
- "outputId": "00815cab-bb06-4692-b012-d8e622351717"
- },
- "outputs": [],
- "source": [
- "type(delays)"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "4f757ac4",
- "metadata": {
- "id": "4f757ac4"
- },
- "source": [
- "To combine them all, we create an empty DataFrame, then loop through the dictionary items and use `pd.concat()` to append data. `concat()` takes a list of DataFrames to combine. Since we did not specify an index, row labels are numbers: the first row of each sheet has an index of 0, and so on. To reset row labels so that they are sequential again, we set `ignore_index=True`."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "81bd009e",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "81bd009e",
- "outputId": "3783f307-5aad-4d42-b8ec-c35d02224467"
- },
- "outputs": [],
- "source": [
- "# create an empty DataFrame\n",
- "all_delays = pd.DataFrame()\n",
- "\n",
- "for sheet_name, values in delays.items():\n",
- " # print the number of rows\n",
- " print(f'Adding {values.shape[0]} rows from {sheet_name}')\n",
- " # add each sheet to all_delays\n",
- " all_delays = pd.concat([all_delays, values],\n",
- " axis=0, # concatenate rows\n",
- " ignore_index=True) # reset row labels\n",
- "\n",
- "all_delays.shape"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "b407508c",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 204
- },
- "id": "b407508c",
- "outputId": "4a4c9d43-6ff4-4c45-9fe5-2836b26ce952"
- },
- "outputs": [],
- "source": [
- "all_delays.head()"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "5889dc0a",
- "metadata": {
- "id": "5889dc0a"
- },
- "source": [
- "The TTC delays data includes a reason code for the delay. Code definitions, however, are in a separate Excel file, `ttc-subway-delay-codes.xlsx`. This file has been modified slightly to make it easier to work with. Codes are split between two tabs, so we will load both to a DataFrame, `delay_reasons`."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "53e525c3",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 419
- },
- "id": "53e525c3",
- "outputId": "fd6d3160-5b03-41b8-c93d-34da9090a4e5"
- },
- "outputs": [],
- "source": [
- "dr = pd.read_excel('../../05_src/data/slides_data/ttc_subway_delay_codes.xlsx', sheet_name=None)\n",
- "\n",
- "delay_reasons = pd.DataFrame()\n",
- "for sheet_name, values in dr.items():\n",
- " delay_reasons = pd.concat([delay_reasons, values],\n",
- " axis=0,\n",
- " ignore_index=True)\n",
- "\n",
- "delay_reasons"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "fEIT90L-HPny",
- "metadata": {
- "id": "fEIT90L-HPny"
- },
- "source": [
- "We will rename the columns in both `all_delays` and `delay_reasons` so that we replace spaces with underscores as well as convert all letters to lowercase."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "e7c6fd96",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "e7c6fd96",
- "outputId": "43ea8951-5688-4107-b35d-a677fcc0d0fa"
- },
- "outputs": [],
- "source": [
- "def clean_names(string):\n",
- " return string.lower().replace(' ', '_')\n",
- "\n",
- "print(list(delay_reasons))\n",
- "print(list(all_delays))\n",
- "delay_reasons = delay_reasons.rename(columns=clean_names)\n",
- "all_delays = all_delays.rename(columns=clean_names)\n",
- "print(list(delay_reasons))\n",
- "print(list(all_delays))"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "c2b1b5f4",
- "metadata": {
- "id": "c2b1b5f4"
- },
- "source": [
- "## Combining datasets: merging\n",
- "\n",
- "Ideally, the delays data would include code descriptions. We can get descriptions into `all_delays` by _merging_ in `delay_reasons`. Merging is analagous to joining in SQL databases. To merge two DataFrames, we pass them as arguments to the `pd.merge()`. Then, we specify `how` to merge the two DataFrames and what column names to merge `on`."
- ]
- },
- {
- "cell_type": "markdown",
- "id": "32f9f2b2",
- "metadata": {
- "id": "32f9f2b2"
- },
- "source": [
- "Let's review the `all_delays` and `delay_reasons` DataFrames. `code` is equivalent to `rmenu_code`. If we pass in `all_delays` as the first DataFrame, then it will be the left frame, and `delay_reasons` the right one. We want to keep all the delay records, even if there isn't a matching code in `delay_reasons`, so we will perform a left join."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "0fd6c216",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 111
- },
- "id": "0fd6c216",
- "outputId": "3e124116-82da-4a9b-ef08-9e18bd9f46e6"
- },
- "outputs": [],
- "source": [
- "all_delays.head(2)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "8fbb4203",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 111
- },
- "id": "8fbb4203",
- "outputId": "f1e44d73-124b-452a-ae5d-15b3df08e435"
- },
- "outputs": [],
- "source": [
- "delay_reasons.head(2)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "b6f6b219",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 142
- },
- "id": "b6f6b219",
- "outputId": "a4f160a6-3b9b-4ae5-a3dc-ddf1ce908903"
- },
- "outputs": [],
- "source": [
- "delays_w_reasons = pd.merge(all_delays,\n",
- " delay_reasons,\n",
- " how='left',\n",
- " left_on='code',\n",
- " right_on='rmenu_code')\n",
- "delays_w_reasons.head(3)"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "600b645e",
- "metadata": {
- "id": "600b645e"
- },
- "source": [
- "## `drop()`\n",
- "\n",
- "The resulting DataFrame has both our join columns, which is redundant. We can drop one with the `drop()` DataFrame method, passing in the column name(s) we want to drop in the `columns` keyword argument."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "3ad1af1d",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 142
- },
- "id": "3ad1af1d",
- "outputId": "6e74809a-d521-40f9-9199-409b056e5281"
- },
- "outputs": [],
- "source": [
- "delays_w_reasons = delays_w_reasons.drop(columns='rmenu_code')\n",
- "delays_w_reasons.head(3)"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "f3f80a0d",
- "metadata": {
- "id": "f3f80a0d"
- },
- "source": [
- "## Creating new columns\n",
- "\n",
- "Adding a column to a DataFrame looks like adding a key-value pair to a dictionary. At its simplest, we can assign a single value to repeat down a column."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "96c7d550",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "96c7d550",
- "outputId": "5ff71183-ddd7-482a-b744-6b46d5529972"
- },
- "outputs": [],
- "source": [
- "delays_w_reasons['year'] = 2021\n",
- "delays_w_reasons['year'].unique()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "b2ciLvPNkqHP",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 419
- },
- "id": "b2ciLvPNkqHP",
- "outputId": "12447b0a-89f4-40e7-fa38-183e427579cd"
- },
- "outputs": [],
- "source": [
- "delays_w_reasons"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "4472b1c3",
- "metadata": {
- "id": "4472b1c3"
- },
- "source": [
- "We can also write an expression and store the resulting values in a new column."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "67d1a11a",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 204
- },
- "id": "67d1a11a",
- "outputId": "c99c884e-6de5-4cda-a9d1-66732ba11cd3"
- },
- "outputs": [],
- "source": [
- "delays_w_reasons['hour_delay'] = round(delays_w_reasons['min_delay'] / 60, 2)\n",
- "delays_w_reasons[['min_delay', 'hour_delay']].head()"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "ca901417",
- "metadata": {
- "id": "ca901417"
- },
- "source": [
- "It is also possible to extract parts of a datetime column with the `dt` accessor."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "2X2cf70PWkzM",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "2X2cf70PWkzM",
- "outputId": "120c31f5-a7f3-449d-eaae-d560ecf0d06c"
- },
- "outputs": [],
- "source": [
- "delays_w_reasons.info()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "b7bf8880",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "b7bf8880",
- "outputId": "cbdc0e81-f1b7-4ae6-c5dc-5c6e86732a28"
- },
- "outputs": [],
- "source": [
- "delays_w_reasons['month'] = delays_w_reasons['date'].dt.month\n",
- "delays_w_reasons['month']"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "529e579d",
- "metadata": {
- "id": "529e579d"
- },
- "source": [
- "It is possible to create a new integer column, `hour`, that contains the hour in which a delay occurred. Below we highlight two methods."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "f5fd6616",
- "metadata": {
- "id": "f5fd6616"
- },
- "outputs": [],
- "source": [
- "# two ways to extract hour\n",
- "# convert to time, then access hour\n",
- "delays_w_reasons['hour'] = pd.to_datetime(delays_w_reasons['time'], format='%H:%M').dt.hour\n",
- "\n",
- "# split and take first part\n",
- "delays_w_reasons['hour'] = delays_w_reasons['time'].str.split(':', expand=True)[0] #expandbool expands the split strings into separate columns\n",
- "delays_w_reasons['hour'] = delays_w_reasons['hour'].astype(int)"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "b2578e3a",
- "metadata": {
- "id": "b2578e3a"
- },
- "source": [
- "## Filtering and selecting data\n",
- "\n",
- "Let's take another look at the TTC subway delay data. There are only 4 subway lines in Toronto, but `describe()` reported 17 unique values."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "f8d26f1e",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "f8d26f1e",
- "outputId": "640c4c2b-4092-4f50-b324-83d970628eaf"
- },
- "outputs": [],
- "source": [
- "delays_w_reasons['line'].unique()"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "37536ee5",
- "metadata": {
- "id": "37536ee5"
- },
- "source": [
- "Looks like some of the line values should be updated (YU/BD variants) and others should be dropped (e.g., 36 FINCH WEST, NaNs). Luckily there don't seem to be too many affected records, though the NaNs are not shown."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "5449ef1f",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "5449ef1f",
- "outputId": "81c92614-ba62-42fa-e21f-ce291cf411e3"
- },
- "outputs": [],
- "source": [
- "delays_w_reasons['line'].value_counts()"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "4ca268eb",
- "metadata": {
- "id": "4ca268eb"
- },
- "source": [
- "### `.loc[]` and `isna()`\n",
- "\n",
- "To find the records with no line, we can use `.loc[]`, which lets us access rows and columns with either a boolean array or row/column labels.\n",
- "\n",
- "In this case, the boolean array is the product of the `isna()` Series method."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "68732379",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 1000
- },
- "id": "68732379",
- "outputId": "891f0c3d-dfc3-4ebf-ceb1-fd294dd08bf9"
- },
- "outputs": [],
- "source": [
- "# access rows of data where line is NA\n",
- "delays_w_reasons.loc[delays_w_reasons['line'].isna()]"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "e47dcb8a",
- "metadata": {
- "id": "e47dcb8a"
- },
- "source": [
- "`.loc[]` also lets us access data by label, with row conditions first and column conditions second."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "040456d6",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 204
- },
- "id": "040456d6",
- "outputId": "d11f7547-2e3d-42f8-ee1d-95f4edc9f23f"
- },
- "outputs": [],
- "source": [
- "(delays_w_reasons.loc[delays_w_reasons['line'].isna(), # filter rows\n",
- " ['time', 'station', 'line']] # get columns\n",
- " .head()) # first 5 lines to save space"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "91610b43",
- "metadata": {
- "id": "91610b43"
- },
- "source": [
- "### `query()`\n",
- "\n",
- "Alternatively, we can use the DataFrame `query()` method, which takes a filter condition as a string, and returns a DataFrame of records that met the condition. `query()` is slower than `loc[]`, but it can be easier to read."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "OP1Qpdu7yEeN",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "OP1Qpdu7yEeN",
- "outputId": "22406659-4920-46ef-8fd0-3075f2b78593"
- },
- "outputs": [],
- "source": [
- "delays_w_reasons['line'].unique()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "xqJlShnd0fBW",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "xqJlShnd0fBW",
- "outputId": "f7a95c00-6390-41a6-88e1-453271dbf71f"
- },
- "outputs": [],
- "source": [
- "delays_w_reasons['line'].isna()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "35b5eb05",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 204
- },
- "id": "35b5eb05",
- "outputId": "e00dbc13-8cb4-4dbb-c1cd-463ec1898a25"
- },
- "outputs": [],
- "source": [
- "# slower than .loc, but can be easier to read\n",
- "delays_w_reasons.query('line.isna()').head()"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "53f356d2",
- "metadata": {
- "id": "53f356d2"
- },
- "source": [
- "### `dropna()`\n",
- "\n",
- "In this case, the number of records without lines is relatively small. Most do not have delay durations. Some appear to be at rail yards, i.e. not on a rail line. For our analysis, we may drop them with the `dropna()` DataFrame method. We can drop rows missing lines by passing a `subset`."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "af8db773",
- "metadata": {
- "id": "af8db773"
- },
- "outputs": [],
- "source": [
- "delays_w_reasons = delays_w_reasons.dropna(subset=['line'])"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "3b0b4dab",
- "metadata": {
- "id": "3b0b4dab"
- },
- "source": [
- "### Filtering data with `.loc[]` and `isin()`\n",
- "\n",
- "We can use `.loc[]` to create a delays DataFrame without the invalid lines. To to this, we first create a list of values to exclude, then pass the list to the Series `isin()` method. Finally, we negate the expression, and assign the output back to `delays_w_reasons`.\n",
- "\n",
- "**Note: The negation operator here is `~`, not `!`. The `and` and `or` operators are different as well: `&` and `|` respectively.**"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "6841bff3",
- "metadata": {
- "id": "6841bff3"
- },
- "outputs": [],
- "source": [
- "# set up filter list\n",
- "filter_list = ['999', '36 FINCH WEST', '35 JANE', '52', '41 KEELE']"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "f0469986",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "f0469986",
- "outputId": "cd277477-4487-4d19-a13c-0e9579fbb56e"
- },
- "outputs": [],
- "source": [
- "# filter out records with invalid lines\n",
- "delays_w_reasons = delays_w_reasons.loc[~delays_w_reasons['line'].isin(filter_list)]\n",
- "delays_w_reasons['line'].unique()"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "a5ae5e91",
- "metadata": {
- "id": "a5ae5e91"
- },
- "source": [
- "### Replacing values with `str.replace()`\n",
- "\n",
- "To standardize the YU/BD values, we can replace the less common ones. One way to do this is by selecting the line Series and using `str.replace()`, like below for \"YUS\"."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "ed6c34bc",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "ed6c34bc",
- "outputId": "9501aad4-9d44-4bb5-8a27-9a86a120b922"
- },
- "outputs": [],
- "source": [
- "delays_w_reasons['line'] = (delays_w_reasons['line']\n",
- " .str.replace('YUS', 'YU'))\n",
- "delays_w_reasons['line'].unique()"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "ca415f18",
- "metadata": {
- "id": "ca415f18"
- },
- "source": [
- "Another is to assign \"YU/BD\" to values selected by `.loc[]`"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "d478589f",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "d478589f",
- "outputId": "bbd5ff88-00b4-4d35-f644-1a9ec4837e95"
- },
- "outputs": [],
- "source": [
- "yubd_list = ['YONGE/UNIVERSITY/BLOOR',\n",
- " 'YU / BD',\n",
- " 'YU & BD',\n",
- " 'YU & BD LINES']\n",
- "\n",
- "# check the .loc[] selection\n",
- "delays_w_reasons.loc[delays_w_reasons['line'].isin(yubd_list), 'line']"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "8c0d6d26",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "8c0d6d26",
- "outputId": "37e65274-668b-4243-8951-8987e97e5815"
- },
- "outputs": [],
- "source": [
- "delays_w_reasons.loc[delays_w_reasons['line'].isin(yubd_list), 'line'] = 'YU/BD'\n",
- "delays_w_reasons['line'].unique()"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "89c714a8",
- "metadata": {
- "id": "89c714a8"
- },
- "source": [
- "## Grouping\n",
- "\n",
- "A core workflow in `pandas` is _split-apply-combine_:\n",
- "* **splitting** data into groups\n",
- "* **applying** a function to each group, such as calculating group sums, standardizing data, or filtering out some groups\n",
- "* **combining** the results into a data structure"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "796c8a56",
- "metadata": {
- "id": "796c8a56"
- },
- "source": [
- "This workflow starts by grouping data by calling the `groupby()` method. We'll pass in a column name or list of names to group by."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "75abe5b0",
- "metadata": {
- "id": "75abe5b0"
- },
- "outputs": [],
- "source": [
- "line_groups = delays_w_reasons.groupby('line')"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "568b986a",
- "metadata": {
- "id": "568b986a"
- },
- "source": [
- "`groupby()` returns a grouped DataFrame that we can use to calculate groupwise statistics. The grouping column values become indexes, or row labels. **Note that this grouped DataFrame still references the original, so mutating one affects the other.**"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "4ba73a9f",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "4ba73a9f",
- "outputId": "d0cec452-e0d7-4e9c-adc6-1e83c5a7d73e"
- },
- "outputs": [],
- "source": [
- "# how many hours of delays did each line have in 2021?\n",
- "line_groups['hour_delay'].sum()"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "44c2841b",
- "metadata": {
- "id": "44c2841b"
- },
- "source": [
- "We can group by more than one column by passing a list into `groupby()`. Data is grouped in the order of column names."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "7e01fcae",
- "metadata": {
- "id": "7e01fcae"
- },
- "outputs": [],
- "source": [
- "# group by line first, then reason code description\n",
- "line_code_groups = delays_w_reasons.groupby(['line', 'code_description'])"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "ByHPA-phqKO4",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "ByHPA-phqKO4",
- "outputId": "a4b45cd3-da33-47a7-ba90-e42adcc25faa"
- },
- "outputs": [],
- "source": [
- "line_code_groups.size()"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "bfe2015d",
- "metadata": {
- "id": "bfe2015d"
- },
- "source": [
- "### Chaining methods and `unstack()`ing\n",
- "\n",
- "We can _chain_ methods together for convenience and code readability. Here, we calculate the `size()` of each group, then `unstack()` the resulting Series by the first part of the row label, line. The `tail()` method is added to the end so that the output takes less screen space."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "65da4ee2",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 235
- },
- "id": "65da4ee2",
- "outputId": "87045163-e228-4aeb-b60e-dc79587d5d6e"
- },
- "outputs": [],
- "source": [
- "# view the number of delays by reason and line\n",
- "line_code_groups.size().unstack(0).tail()"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "46476768",
- "metadata": {
- "id": "46476768"
- },
- "source": [
- "### `agg()`regating\n",
- "\n",
- "So far, we have applied one function at a time. The `agg()` DataFrame method lets us apply multiple functions on different columns at once.\n",
- "\n",
- "A key feature of agg() is that it can handle multiple aggregation operations at once, even different operations on different columns.\n",
- "\n",
- "`agg()`'s argument syntax is a little unusual. It follows this pattern:\n",
- "```python\n",
- "DataFrame.agg(agg_colname=('column_to_aggregate', 'aggregation_function_name'),\n",
- " agg_colname2=('col_to_agg2', 'agg_func_name'))\n",
- "```"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "9d9c2e24",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 235
- },
- "id": "9d9c2e24",
- "outputId": "d0a4b3b0-af25-42c6-bac3-27b1602109f9"
- },
- "outputs": [],
- "source": [
- "delay_summary = (delays_w_reasons\n",
- " .groupby('date')\n",
- " .agg(delay_count=('station', 'count'),\n",
- " total_delay_min=('min_delay', 'sum'),\n",
- " mean_delay_min=('min_delay', 'mean')))\n",
- "\n",
- "delay_summary.head()"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "3d231ace",
- "metadata": {
- "id": "3d231ace"
- },
- "source": [
- "## Plotting\n",
- "\n",
- "The summary table we just generated can be easily plotted within `pandas`. Since the index contains dates, `pandas` automatically knows to plot values as time series data, with the dates in the x-axis -- we just have to call the `plot()` method."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "305ef7e7",
- "metadata": {},
- "outputs": [],
- "source": [
- "# If there are issues with library installation please type the following commands into Terminal:\n",
- "## conda install matplotlib"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "cdf7e9c6",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 483
- },
- "id": "cdf7e9c6",
- "outputId": "5213e8ca-e074-4650-c34e-178a959d27bd"
- },
- "outputs": [],
- "source": [
- "delay_summary.plot()"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "3642c2b3",
- "metadata": {
- "id": "3642c2b3"
- },
- "source": [
- "To create a separate plot for each column, we can specify `subplots=True`"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "8eb53896",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 500
- },
- "id": "8eb53896",
- "outputId": "784aeca2-e926-4009-f7c5-df06b207efc1"
- },
- "outputs": [],
- "source": [
- "delay_summary.plot(subplots=True)"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "a2a69b4f",
- "metadata": {
- "id": "a2a69b4f"
- },
- "source": [
- "We can plot other aggregations too. Below, we use `line_groups` and calculate the size of each group, i.e., the number of delays reported on each line. Then we plot the data, telling `pandas` that the plot `kind` should be a bar graph, with TTC lines should in the `x`-axis. We also pass in a title."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "669a85d3",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 518
- },
- "id": "669a85d3",
- "outputId": "54757256-ef2a-4c9c-c6d5-f1a853c6ad97"
- },
- "outputs": [],
- "source": [
- "(line_groups\n",
- " .size()\n",
- " .plot(x='line',\n",
- " kind='bar',\n",
- " title='Delays by Subway Line, 2021'))"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "8f62e572",
- "metadata": {
- "id": "8f62e572"
- },
- "source": [
- "It is possible to sum up and plot the total delay time, in hours, by line."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "7b47be79",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 501
- },
- "id": "7b47be79",
- "outputId": "836964a0-5fbf-464a-a063-505a8b891267"
- },
- "outputs": [],
- "source": [
- "(delays_w_reasons\n",
- " .groupby('line')['min_delay']\n",
- " .sum()\n",
- " .plot(x='line', kind='bar'))"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "ab74a77e",
- "metadata": {
- "id": "ab74a77e"
- },
- "source": [
- "# Writing to file"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "7979702c",
- "metadata": {
- "id": "7979702c"
- },
- "source": [
- "## Exporting DataFrames\n",
- "\n",
- "DataFrames have `to_[file format]()` methods, analagous to `pandas` read functions. The counterpart to `pd.read_csv()`, for instance, is `DataFrame.to_csv()`. The export methods generally take a file path to save to as their first argument. Additional arguments vary a bit by export format, but `index` is a common useful one. It takes a boolean of whether to write the index to file -- set it to `False` if the index is the numbered default.\n",
- "\n",
- "Two additional useful parameters in `DataFrame.to_csv()` and `DataFrame.to_excel()` are `na_rep`, which takes a string to use for null values, and `columns`, which lets us write out a subset of columns."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "91f7c8f3",
- "metadata": {
- "id": "91f7c8f3"
- },
- "outputs": [],
- "source": [
- "# write delays_w_reasons to an Excel file\n",
- "delays_w_reasons.to_excel('../../05_src/data/slides_data/ttc_subway_delays_w_reasons.xlsx', index=False)"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "0d1c483c",
- "metadata": {
- "id": "0d1c483c"
- },
- "source": [
- "# References"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "9f0d2c99",
- "metadata": {
- "id": "9f0d2c99"
- },
- "source": [
- "### Programming\n",
- "- pandas development team. _API reference_. https://pandas.pydata.org/pandas-docs/stable/reference/index.html\n",
- "- pandas development team. _User guide_. https://pandas.pydata.org/pandas-docs/stable/user_guide/index.html\n",
- "- _Python strftime cheatsheet_. https://strftime.org/\n",
- "\n",
- "\n",
- "### Data Sources\n",
- "- Open Data Toronto. _Neighbourhood Profiles_. https://open.toronto.ca/dataset/neighbourhood-profiles/\n",
- "- Open Data Toronto. _TTC Subway Delay Data_. https://open.toronto.ca/dataset/ttc-subway-delay-data/\n",
- "- Open Data Toronto. _Bicyle Thefts_. https://open.toronto.ca/dataset/bicycle-thefts/"
- ]
- }
- ],
- "metadata": {
- "celltoolbar": "Slideshow",
- "colab": {
- "collapsed_sections": [
- "4339b9f2",
- "72e9148c",
- "9f0d2c99"
- ],
- "provenance": []
- },
- "kernelspec": {
- "display_name": "Python 3 (ipykernel)",
- "language": "python",
- "name": "python3"
- },
- "language_info": {
- "codemirror_mode": {
- "name": "ipython",
- "version": 3
- },
- "file_extension": ".py",
- "mimetype": "text/x-python",
- "name": "python",
- "nbconvert_exporter": "python",
- "pygments_lexer": "ipython3",
- "version": "3.9.19"
- },
- "rise": {
- "scroll": true,
- "theme": "solarized",
- "transition": "none"
- }
- },
- "nbformat": 4,
- "nbformat_minor": 5
-}
diff --git a/04_this_cohort/bonus_slides/03_visualization.ipynb b/04_this_cohort/bonus_slides/03_visualization.ipynb
deleted file mode 100644
index 798c42c82..000000000
--- a/04_this_cohort/bonus_slides/03_visualization.ipynb
+++ /dev/null
@@ -1,2080 +0,0 @@
-{
- "cells": [
- {
- "cell_type": "markdown",
- "id": "40d3f376",
- "metadata": {
- "id": "40d3f376"
- },
- "source": [
- "# Visualizing Data"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "e5e5ab47",
- "metadata": {
- "id": "e5e5ab47"
- },
- "source": [
- "# Contents:\n",
- "\n",
- "1. Setup\n",
- "2. `matplotlib`\n",
- "3. `seaborn`\n",
- "4. `plotly`"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "NOxbeniZgD-T",
- "metadata": {
- "id": "NOxbeniZgD-T"
- },
- "source": [
- "## Data\n",
- "\n",
- "The specific file names are:\n",
- "- bike_thefts_joined.csv\n",
- "- neighbourhoods.csv"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "f6818543",
- "metadata": {
- "id": "f6818543"
- },
- "source": [
- "## Supporting packages and data\n",
- "\n",
- "Let's import `numpy` and `pandas` and load up some data to work with."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "c6bb6689",
- "metadata": {
- "id": "c6bb6689"
- },
- "outputs": [],
- "source": [
- "import numpy as np\n",
- "import pandas as pd\n",
- "pd.set_option(\"display.max_columns\", None)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "b8d53acd",
- "metadata": {
- "id": "b8d53acd"
- },
- "outputs": [],
- "source": [
- "# load data\n",
- "thefts_joined = pd.read_csv('../../05_src/data/slides_data/bike_thefts_joined.csv',\n",
- " dtype={'n_id': str})\n",
- "neighbourhoods = pd.read_csv('../../05_src/data/slides_data/neighbourhoods.csv',\n",
- " dtype={'n_id': str})\n",
- "\n",
- "# fix dates\n",
- "thefts_joined['occurrence_date'] = pd.to_datetime(thefts_joined['occurrence_date'])\n",
- "thefts_joined['report_date'] = pd.to_datetime(thefts_joined['report_date'])"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "40b46014",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 428
- },
- "id": "40b46014",
- "outputId": "bc60bd57-7b47-40e8-b98c-b11e90e99714"
- },
- "outputs": [],
- "source": [
- "thefts_joined.head()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "aa85b60f",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 204
- },
- "id": "aa85b60f",
- "outputId": "8b7c5e81-3e38-4928-e010-c18b174ba575"
- },
- "outputs": [],
- "source": [
- "# exclude the City of Toronto\n",
- "neighbourhoods = neighbourhoods.loc[neighbourhoods['neighbourhood'] != 'City of Toronto']\n",
- "neighbourhoods.head()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "6f439a4e",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "6f439a4e",
- "outputId": "c179d84d-db06-449b-e68f-1d7f50d729f2"
- },
- "outputs": [],
- "source": [
- "# add new columns showing % of commuters for each mode\n",
- "def calc_pct(mode):\n",
- " return round(mode/neighbourhoods['total_commuters'], 3)\n",
- "\n",
- "# new column names\n",
- "pct_cols = ['pct_drive', 'pct_cp', 'pct_transit', 'pct_walk']\n",
- "neighbourhoods[pct_cols] = neighbourhoods.loc[:, 'drive':'walk'].apply(calc_pct)\n",
- "#.apply() applies a function along an axis of the DataFrame"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "b80d4fb6",
- "metadata": {
- "id": "b80d4fb6"
- },
- "source": [
- "# Overview"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "4339b9f2",
- "metadata": {
- "id": "4339b9f2"
- },
- "source": [
- "## Data visualization in Python\n",
- "\n",
- "So far, we have gotten data, wrangled it, and scratched the surface of exploratory analyses. As part of that exploration, we created charts with `pandas`. However, there are dedicated visualization libraries let us customize our charts further."
- ]
- },
- {
- "cell_type": "markdown",
- "id": "1bc939ac",
- "metadata": {
- "id": "1bc939ac"
- },
- "source": [
- "# `matplotlib`"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "047c2994",
- "metadata": {
- "id": "047c2994"
- },
- "source": [
- "## `matplotlib`\n",
- "\n",
- "`matplotlib` is _the_ foundational data visualization library in Python. `pandas`'s visualization functions are, at their core, `matplotlib` functions. Other popular libraries like `seaborn` similarly build on `matplotlib`."
- ]
- },
- {
- "cell_type": "markdown",
- "id": "50f9c343",
- "metadata": {
- "id": "50f9c343"
- },
- "source": [
- "For historical reasons, when we import `matplotlib`, we really import `matplotlib.pyplot`. The conventional alias is `plt`."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "cea5f938",
- "metadata": {
- "id": "cea5f938"
- },
- "outputs": [],
- "source": [
- "# jupyter-specific \"magic\" command to render plots in-line\n",
- "%matplotlib inline\n",
- "\n",
- "import matplotlib.pyplot as plt"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "3e2fb9ea",
- "metadata": {
- "id": "3e2fb9ea"
- },
- "source": [
- "## Anatomy of a plot\n",
- "\n",
- "`matplotlib` visuals consist of one or more Axes in a Figure. An _Axes_, confusingly, is what we would consider a graph, while the _Figure_ is a container for those graphs. An Axes has an x-_Axis_ and a y-_Axis_.\n",
- "\n",
- "More details can be found at: https://matplotlib.org/stable/tutorials/introductory/quick_start.html"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "c3dc71ce",
- "metadata": {
- "id": "c3dc71ce"
- },
- "source": [
- "## Plotting with `matplotlib`\n",
- "\n",
- "`matplotlib` provides two ways to create visualizations:\n",
- "* by having **`pyplot`** automatically create and manage Figures and Axes, keeping track of which Figure and Axes we are currently working on\n",
- "* by taking an **object-oriented approach**, where we explicitly create Figures and Axes and modify them\n",
- "\n",
- "The object-oriented approach is recommended, but the `pyplot` approach is convenient for quick plots."
- ]
- },
- {
- "cell_type": "markdown",
- "id": "46c48170",
- "metadata": {
- "id": "46c48170"
- },
- "source": [
- "## `pyplot`-style plotting\n",
- "\n",
- "`pyplot`-style plotting is convenient for quick, exploratory plots, where we don't plan on doing a lot of customization. When we plotted data in `pandas`, `pandas` took this approach. Let's plot the neighbourhood data with the `pyplot` approach. `plot()` produces a line plot by default."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "2ae23a00",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 447
- },
- "id": "2ae23a00",
- "outputId": "03e0fa2d-2cde-4ac5-d928-b2773e407a97"
- },
- "outputs": [],
- "source": [
- "plt.plot(neighbourhoods['pop_2016'],\n",
- " neighbourhoods['bike'])"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "3abb2e78",
- "metadata": {
- "id": "3abb2e78"
- },
- "source": [
- "Let's make it a scatterplot instead with the `scatter()` function.\n",
- "We can use keyword arguments like `facecolor` and `edgecolor` to change the styling. `matplotlib` lets us specify colour with RGB(A) tuples, hexadecimal strings, single-character shortcodes, and [even xkcd colours](https://matplotlib.org/stable/tutorials/colors/colors.html)."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "ea816ed2",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 447
- },
- "id": "ea816ed2",
- "outputId": "0dbd6bec-d076-41d5-9b48-e8c53ca051a2"
- },
- "outputs": [],
- "source": [
- "plt.scatter(neighbourhoods['pop_2016'],\n",
- " neighbourhoods['bike'],\n",
- " marker='s', # square marker\n",
- " facecolor='#fb1',\n",
- " edgecolor='k') # black"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "d6c629ff",
- "metadata": {
- "id": "d6c629ff"
- },
- "source": [
- "Using the `pyplot` approach, the outputs of successive function calls in the same cell context are layered on. Let's layer driving and biking commuter counts and add a legend."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "0902ede1",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 447
- },
- "id": "0902ede1",
- "outputId": "ea069f51-5325-4507-b2a1-3db35f48f65b"
- },
- "outputs": [],
- "source": [
- "plt.scatter(neighbourhoods['pop_2016'],\n",
- " neighbourhoods['drive'],\n",
- " edgecolor='k',\n",
- " label='Driving')\n",
- "plt.scatter(neighbourhoods['pop_2016'],\n",
- " neighbourhoods['bike'],\n",
- " edgecolor='w',\n",
- " label='Cycling')\n",
- "plt.legend()"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "37982c4d",
- "metadata": {
- "id": "37982c4d"
- },
- "source": [
- "Calls in a different cell are treated as a new Axes."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "2d5b2370",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 435
- },
- "id": "2d5b2370",
- "outputId": "97b83261-e8e2-4621-e6c3-406ba145c591"
- },
- "outputs": [],
- "source": [
- "plt.grid()"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "3b65fd25",
- "metadata": {
- "id": "3b65fd25"
- },
- "source": [
- "## Object-oriented approach to plotting\n",
- "\n",
- "The object-oriented approach is the preferred method of plotting with `matplotlib`. In this approach, we use the `subplots()` function to create plot objects, then call methods to modify them.\n",
- "\n",
- "By default, `subplots()` returns one Figure and one Axes. We can use Python's unpacking syntax to assign the Figure and Axes to their own variables in one line."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "1da34a27",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 452
- },
- "id": "1da34a27",
- "outputId": "08080941-3a1f-47ac-caec-add109e34561"
- },
- "outputs": [],
- "source": [
- "fig, ax = plt.subplots()\n",
- "print(f'{type(fig)}, {type(ax)}')"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "9e3bb3bd",
- "metadata": {
- "id": "9e3bb3bd"
- },
- "source": [
- "The Axes is empty. Let's plot data on it with the Axes `scatter()` method. This method updates `ax` with a scatterplot. To make it easier to refer to each scatterplot later, we assign the outputs to their own variables, `drivers` and `cyclists`."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "87d91f1e",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 430
- },
- "id": "87d91f1e",
- "outputId": "98a1f0ce-2bec-4a07-be22-9f9884dc3168"
- },
- "outputs": [],
- "source": [
- "drivers = ax.scatter(neighbourhoods['pop_2016'],\n",
- " neighbourhoods['drive'])\n",
- "cyclists = ax.scatter(neighbourhoods['pop_2016'],\n",
- " neighbourhoods['bike'])\n",
- "total = ax.scatter(neighbourhoods['pop_2016'],\n",
- " neighbourhoods['total_commuters'])\n",
- "fig"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "75f9ab18",
- "metadata": {
- "id": "75f9ab18"
- },
- "source": [
- "## Adding labels, a title, and grid\n",
- "\n",
- "This graph doesn't give much context. To add a title, we can use the Axes `set_title()` method, which takes the title as a string, plus optional arguments like `fontsize`. Similarly, we can set x and y labels with the `set_xlabel()` and `set_ylabel()` methods. Finally, let's add a grid with the Axes `grid()` method, and use the `alpha` parameter to make it translucent. We'll also use the `set_axisbelow()` method to make sure markers draw over the grid."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "3cded2b4",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 472
- },
- "id": "3cded2b4",
- "outputId": "805fff9b-594b-422d-b757-9f5f4f42d424",
- "scrolled": true
- },
- "outputs": [],
- "source": [
- "ax.set_title('Neighbourhood Population vs Commuter Population')\n",
- "ax.set_xlabel('Population, 2016')\n",
- "ax.set_ylabel('Commuters')\n",
- "ax.set_axisbelow(True)\n",
- "ax.grid(alpha=0.3)\n",
- "fig"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "d595f7e0",
- "metadata": {
- "id": "d595f7e0"
- },
- "source": [
- "## Adding a legend\n",
- "\n",
- "This graph could use a legend. To add one, we call the Axes `legend()` method. If we passed a `label` argument in the `scatter()` calls, `legend()` would use those labels. However, because we did not, we pass a list of the geometries to use in the legend, plus a list of labels to show."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "0c224034",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 472
- },
- "id": "0c224034",
- "outputId": "958162e7-d219-45fc-c2d4-acda3e0a75b7"
- },
- "outputs": [],
- "source": [
- "ax.legend([drivers, cyclists, total],\n",
- " ['Drivers', 'Cyclists', 'Total Commuters'])\n",
- "fig"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "8363154c",
- "metadata": {
- "id": "8363154c"
- },
- "source": [
- "To place the legend outside the Axes, we can pass a tuple with the `bbox_to_anchor` argument. The legend's `loc` corner will be placed at the coordinates in the `bbox_to_anchor` tuple."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "1640beac",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 472
- },
- "id": "1640beac",
- "outputId": "2e5ebd8c-911b-4110-e427-4824961623ce"
- },
- "outputs": [],
- "source": [
- "ax.legend([drivers, cyclists, total],\n",
- " ['Drivers', 'Cyclists', 'Total Commuters'],\n",
- " bbox_to_anchor=(1, 1),\n",
- " loc='upper left')\n",
- "fig"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "a3fcb064",
- "metadata": {
- "id": "a3fcb064"
- },
- "source": [
- "## Modifying axis ticks\n",
- "\n",
- "We can change how the x-axis and y-axis are formatted by accessing an Axes `xaxis` and `yaxis` attributes and calling methods like `set_ticks()` or `set_major_formatter()`."
- ]
- },
- {
- "cell_type": "markdown",
- "id": "19e02cd9",
- "metadata": {
- "id": "19e02cd9"
- },
- "source": [
- "Some configurations of Python and `matplotlib` allow us to pass a format string by itself to `set_major_formatter()`. Older versions require that we import `matplotlib`'s `ticker` submodule and create a `StrMethodFormatter` with the format string we want to use."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "46604cfd",
- "metadata": {
- "id": "46604cfd"
- },
- "outputs": [],
- "source": [
- "import matplotlib.ticker as tick"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "3aaf30db",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 472
- },
- "id": "3aaf30db",
- "outputId": "63cb9b3b-d4f1-4c8c-f6ad-ea43fd6c9f5c"
- },
- "outputs": [],
- "source": [
- "# label with a thousands place comma and zero decimal places\n",
- "ax.xaxis.set_major_formatter(tick.StrMethodFormatter('{x:,.0f}'))\n",
- "ax.yaxis.set_major_formatter(tick.StrMethodFormatter('{x:,.0f}'))\n",
- "# %:, use comma as thousand separator\n",
- "# .0f zero decimal places\n",
- "fig"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "541195a4",
- "metadata": {
- "id": "541195a4"
- },
- "source": [
- "We can also change axis limits."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "cb42de90",
- "metadata": {
- "id": "cb42de90"
- },
- "outputs": [],
- "source": [
- "#ax.xaxis.set_ticks(np.arange(0, max(neighbourhoods['pop_2016']+10), 10000))"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "eb1d3683",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "eb1d3683",
- "outputId": "0bbaf9ec-b50d-4a2a-8d22-0d3a7f433595"
- },
- "outputs": [],
- "source": [
- "ax.axis()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "0c2f4831",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 472
- },
- "id": "0c2f4831",
- "outputId": "d9737730-a87e-44c2-d71b-6247cf15a332"
- },
- "outputs": [],
- "source": [
- "ax.set(ylim=(0, ax.axis()[1])) # make the y-axis match the x-axis\n",
- "fig"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "0ea5f7b3",
- "metadata": {
- "id": "0ea5f7b3"
- },
- "source": [
- "## Changing styles\n",
- "\n",
- "`matplotlib` comes with a bunch of predefined styles. We can view the available ones with `plt.style.available`. Passing one of the options to `style.use()` makes it the aesthetic style for all new plots. **Already created Figures and Axes are not affected.**"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "fb405481",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "fb405481",
- "outputId": "59ea1025-3768-4177-e9b0-e7a770bc629e",
- "scrolled": true
- },
- "outputs": [],
- "source": [
- "plt.style.available[5:10] # print a subset"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "2bef792f",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 472
- },
- "id": "2bef792f",
- "outputId": "5760ea5e-4f88-43c5-dc71-38f1017251d5"
- },
- "outputs": [],
- "source": [
- "# set style for new plots\n",
- "plt.style.use('fivethirtyeight')\n",
- "\n",
- "# notice that the style of fig did not change\n",
- "fig"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "1cfc9184",
- "metadata": {
- "id": "1cfc9184"
- },
- "source": [
- "## Other plot types\n",
- "\n",
- "Of course, `matplotlib` offers more than just line plots and scatterplots. Among the many kinds of plots we can make are bar plots, histograms, and boxplots. To create each the object-oriented way, we call the appropriate Axes method, like `Axes.boxplot()` or `Axes.barh()`, for a horizontal bar plot."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "c99f72c2",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 309
- },
- "id": "c99f72c2",
- "outputId": "3f83e101-6bcb-43de-f283-70772db06f86"
- },
- "outputs": [],
- "source": [
- "# review the neighbourhoods data\n",
- "neighbourhoods.head()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "5ea6c050",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 549
- },
- "id": "5ea6c050",
- "outputId": "ac0cd050-6830-4b39-b8c0-ed9004ffa381"
- },
- "outputs": [],
- "source": [
- "# get just the 10 biggest neighbourhoods to plot\n",
- "top10_pop = neighbourhoods.sort_values('pop_2016', ascending=False).head(10)\n",
- "top10_pop"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "2cfee7a8",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 525
- },
- "id": "2cfee7a8",
- "outputId": "40ec93f9-752e-4e83-9a38-61fe4cfc5860"
- },
- "outputs": [],
- "source": [
- "bar_fig, bar_ax = plt.subplots()\n",
- "bar_ax.barh(top10_pop['neighbourhood'], top10_pop['pop_2016'])\n",
- "bar_ax.xaxis.set_major_formatter(tick.StrMethodFormatter('{x:,.0f}'))\n",
- "bar_ax.set_axisbelow(True)\n",
- "bar_ax.grid(alpha=0.3)\n",
- "bar_ax.set_title('Most Populous Toronto Neighbourhoods')\n",
- "bar_ax.set_xlabel('Population, 2016')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "2f5a3a5c",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 496
- },
- "id": "2f5a3a5c",
- "outputId": "9827a54e-0b75-46fe-f74f-ca9aafe0b129"
- },
- "outputs": [],
- "source": [
- "# create a box plot\n",
- "box_fig, box_ax = plt.subplots()\n",
- "box_ax.boxplot([neighbourhoods['pct_transit'],\n",
- " neighbourhoods['pct_walk'],\n",
- " neighbourhoods['pct_drive']],\n",
- " # add labels so we know which box is which var\n",
- " labels=['% Transit', '% Walk', '% Drive'])\n",
- "box_ax.yaxis.set_major_formatter(tick.StrMethodFormatter('{x:.0%}'))\n",
- "# percentage format\n",
- "box_ax.set_title('Neighbourhood Commuter Modes')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "0357183b",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 525
- },
- "id": "0357183b",
- "outputId": "bb8e5115-71a8-4aa9-b4d3-e65bd1530730"
- },
- "outputs": [],
- "source": [
- "# create a histogram\n",
- "hist_fig, hist_ax = plt.subplots()\n",
- "hist_ax.hist(neighbourhoods['transit'],\n",
- " # count the neighbourhoods with 0-1000 transit commuters,\n",
- " # 1001-2000 transit commuters, etc\n",
- " bins=range(0, 12000, 1000))\n",
- "hist_ax.xaxis.set_major_formatter(tick.StrMethodFormatter('{x:,.0f}'))\n",
- "hist_ax.set_title('Transit Commuter Distribution')\n",
- "hist_ax.set_xlabel('# of Transit Commuters')\n",
- "hist_ax.set_ylabel('# of Neighbourhoods')"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "8c46068d",
- "metadata": {
- "id": "8c46068d"
- },
- "source": [
- "## Layering plots\n",
- "\n",
- "We've seen that a single Axes can have more than one set of data points plotted on it with our multi-modal scatterplot. We can similarly layer on other graphics, using the `alpha` argument to set transparency."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "24e04bc4",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 156
- },
- "id": "24e04bc4",
- "outputId": "b4a851fa-6d40-4e94-f338-52afe0e6c7da",
- "scrolled": true
- },
- "outputs": [],
- "source": [
- "layer_fig, layer_ax = plt.subplots()\n",
- "\n",
- "settings = {'alpha': 0.4, 'bins': np.arange(0, 1, .05)}\n",
- "\n",
- "layer_ax.hist(neighbourhoods['pct_drive'], label='Drive', **settings)\n",
- "layer_ax.hist(neighbourhoods['pct_transit'], label='Transit', **settings)\n",
- "layer_ax.xaxis.set_major_formatter(tick.StrMethodFormatter('{x:.0%}'))\n",
- "layer_ax.set_axisbelow(True)\n",
- "layer_ax.grid(alpha=0.3, linestyle='--')\n",
- "layer_ax.set_title('Commute Mode Distribution')\n",
- "layer_ax.legend()\n",
- "layer_ax"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "71022ba7",
- "metadata": {
- "id": "71022ba7"
- },
- "source": [
- "## More complex plots\n",
- "\n",
- "Let's try plotting the number of reported bike thefts each year by whether the bike was recovered or not. We'll need to wrangle the theft data a bit to get counts by year and status. Then, we'll use the data to make a `stackplot()`. Finally, we'll style it."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "ec876bd3",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "ec876bd3",
- "outputId": "8c671679-91d7-42c5-a9db-b29f1a28cc7b"
- },
- "outputs": [],
- "source": [
- "# review the available columns\n",
- "thefts_joined.columns"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "8f4630ad",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 441
- },
- "id": "8f4630ad",
- "outputId": "cc8f0375-d955-423b-f59b-ba7fd3112d02"
- },
- "outputs": [],
- "source": [
- "thefts_grouped = (thefts_joined\n",
- " .groupby(['occurrence_year', 'status'])\n",
- " .agg(thefts=('_id', 'count'))\n",
- " .reset_index() # make occurrence year a regular col\n",
- " .pivot(index='occurrence_year', columns='status', values='thefts')\n",
- " .reset_index() # ...and again\n",
- " .fillna(0))\n",
- "thefts_grouped"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "b1d8c05c",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 105
- },
- "id": "b1d8c05c",
- "outputId": "bbb72316-dc9d-421e-f5b0-b630af763551"
- },
- "outputs": [],
- "source": [
- "stfig, stax = plt.subplots()\n",
- "\n",
- "stax.stackplot(thefts_grouped['occurrence_year'], thefts_grouped['STOLEN'],\n",
- " thefts_grouped['RECOVERED'], thefts_grouped['UNKNOWN'],\n",
- " labels=['Stolen', 'Recovered', 'Unknown'])\n",
- "stax.set_axisbelow(True)\n",
- "stax.grid(alpha=0.3)\n",
- "stax.legend(loc='upper left')\n",
- "stax.set_title('Reported Bike Thefts by Recovery Status')\n",
- "stax.set_ylabel('Reported Thefts')\n",
- "stax.set_xlabel('Year')"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "797f9027",
- "metadata": {
- "id": "797f9027"
- },
- "source": [
- "## Subplots\n",
- "\n",
- "We can create multiple Axes in one Figure by passing `nrows` and `ncols` arguments to `subplots()`. The number of Axes we get equals `nrows` * `ncols`. Multiple Axes are returned as a `numpy` array."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "b4e77204",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 54
- },
- "id": "b4e77204",
- "outputId": "46d81eb9-d76c-4044-80b6-96b8fc9158e6",
- "scrolled": true
- },
- "outputs": [],
- "source": [
- "modefig, (ax1, ax2) = plt.subplots(nrows=1, ncols=2, sharey=True)\n",
- "ax1.scatter(neighbourhoods['pop_2016'],\n",
- " neighbourhoods['drive'])\n",
- "ax2.scatter(neighbourhoods['pop_2016'],\n",
- " neighbourhoods['bike'])\n",
- "ax1.set_title('Drivers')\n",
- "ax2.set_title('Cyclists')\n",
- "ax1.yaxis.set_major_formatter(tick.StrMethodFormatter('{x:,.0f}'))\n",
- "ax1.xaxis.set_major_formatter(tick.StrMethodFormatter('{x:,.0f}'))\n",
- "ax2.xaxis.set_major_formatter(tick.StrMethodFormatter('{x:,.0f}'))\n",
- "modefig.suptitle('Commuters by Mode and Neighbourhood Population')\n",
- "modefig.tight_layout()"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "83cf96b4",
- "metadata": {
- "id": "83cf96b4"
- },
- "source": [
- "### Unpacking subplots\n",
- "\n",
- "As the number of subplots grows, it gets cumbersome to unpack them in the assignment statement. We can temporarily assign all of them to a single variable."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "75456e0f",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 224
- },
- "id": "75456e0f",
- "outputId": "a55a9b69-0904-46cf-938f-376064a6c3d6"
- },
- "outputs": [],
- "source": [
- "# make a 2x2 grid of subplots\n",
- "modefig2, mode_ax = plt.subplots(nrows=2, ncols=2, sharey=True, sharex=True)\n",
- "mode_ax"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "a164c83d",
- "metadata": {
- "id": "a164c83d"
- },
- "source": [
- "The Axes are arranged in a 2x2 array. It would be more straightforward to refer to them if we had a 1x4 array instead."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "e466f883",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "e466f883",
- "outputId": "95e8a6b8-e0e6-4613-b0de-da15d67722af"
- },
- "outputs": [],
- "source": [
- "# accessing items in a 2x2 array can be annoying\n",
- "mode_ax"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "a0998f95",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "a0998f95",
- "outputId": "66b6aa5f-3c6c-4a77-c171-c023f5d1fb7d"
- },
- "outputs": [],
- "source": [
- "# example: getting the bottom left Axes\n",
- "mode_ax[1, 0]"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "694b8393",
- "metadata": {
- "id": "694b8393"
- },
- "source": [
- "We can take advantage of `numpy` arrays' `flatten()` method. Recall that `flatten()` returns a new array with all the elements arranged in a single row. We can then unpack the elements of that row and assign them to individual variables."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "15210373",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "15210373",
- "outputId": "bfbf9764-b21e-4bd5-961b-69293a0f3da3"
- },
- "outputs": [],
- "source": [
- "# recall what flatten() does\n",
- "mode_ax.flatten()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "2248ef58",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 54
- },
- "id": "2248ef58",
- "outputId": "5a79fb43-d7e9-4309-d37d-4fe7f4a1caac"
- },
- "outputs": [],
- "source": [
- "a1, a2, a3, a4 = mode_ax.flatten()\n",
- "modefig2 # we haven't changed the Figure"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "560b3cf8",
- "metadata": {
- "id": "560b3cf8"
- },
- "source": [
- "### Plotting with helper functions\n",
- "\n",
- "Plotting commute mode against total population four times will be tedious. To reuse code, we can write a helper function that takes an Axes, the mode we're plotting, and a dictionary of style parameters and updates the Axes. `**param_dict` unpacks the dictionary of parameters and arguments passed to `plot_modes()` and passes them on to `scatter()`."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "1352ce12",
- "metadata": {
- "id": "1352ce12"
- },
- "outputs": [],
- "source": [
- "def plot_modes(ax, mode, param_dict):\n",
- " '''\n",
- " Helper function to plot neighbourhood pop\n",
- " against commuting mode.\n",
- " '''\n",
- " defaults = {'alpha': 0.45, 's': 10} #'s' --> style\n",
- " defaults.update(param_dict)\n",
- " out = ax.scatter(neighbourhoods['pop_2016'],\n",
- " neighbourhoods[mode],\n",
- " **defaults)\n",
- " return out"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "0fdfdbf8",
- "metadata": {
- "id": "0fdfdbf8"
- },
- "source": [
- "Then, we can call `plot_modes` to plot each of the subplots."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "8f27651f",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 54
- },
- "id": "8f27651f",
- "outputId": "871b634c-32be-4b7a-ca3c-b7cee05e3448"
- },
- "outputs": [],
- "source": [
- "# add data to each axes\n",
- "plot_modes(a1, 'drive', {'label': 'drive', 'facecolor': 'k'})\n",
- "plot_modes(a2, 'transit', {'label': 'transit', 'facecolor': 'b'})\n",
- "plot_modes(a3, 'walk', {'label': 'walk', 'facecolor': 'm'})\n",
- "plot_modes(a4, 'bike', {'label': 'bike', 'facecolor': 'g'})\n",
- "modefig2.legend(bbox_to_anchor=(1, 1), loc='upper left')\n",
- "modefig2.tight_layout()\n",
- "modefig2.suptitle('Commuter Modes')\n",
- "modefig2"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "692f2f8c",
- "metadata": {
- "id": "692f2f8c"
- },
- "source": [
- "### Clearing plots\n",
- "\n",
- "Successive method calls on an Axes object layer on graphics. To clear everything from an Axes, we can use its `clear()` method. To clear every subplot in a Figure, we can loop through the flattened array of Axes and `clear()` each Axes in turn."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "f79820d6",
- "metadata": {
- "id": "f79820d6"
- },
- "outputs": [],
- "source": [
- "for axes in mode_ax.flatten():\n",
- " axes.clear()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "83364e70",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 54
- },
- "id": "83364e70",
- "outputId": "8ec3e0cd-b685-4858-dbd5-0de0d4f5893d"
- },
- "outputs": [],
- "source": [
- "modefig2"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "411c8746",
- "metadata": {
- "id": "411c8746"
- },
- "outputs": [],
- "source": [
- "# let's reset our style before moving on\n",
- "plt.style.use('default')"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "372360ad",
- "metadata": {
- "id": "372360ad"
- },
- "source": [
- "# `seaborn`"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "15f60e7c",
- "metadata": {
- "id": "15f60e7c"
- },
- "source": [
- "## Easier plotting with `seaborn`\n",
- "\n",
- "`seaborn` builds upon and complements `matplotlib`, producing nicer-looking Axes with less code, and giving us a few more convenient plot types. `seaborn` is typically given the alias `sns`, after a pop culture reference."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "e3bb2277",
- "metadata": {},
- "outputs": [],
- "source": [
- "# If there are issues with library installation please type the following commands into Terminal:\n",
- "\n",
- "# conda install seaborn"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "c4a4b11a",
- "metadata": {
- "id": "c4a4b11a"
- },
- "outputs": [],
- "source": [
- "import seaborn as sns"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "7d0ee9ed",
- "metadata": {
- "id": "7d0ee9ed"
- },
- "source": [
- "With `seaborn`, we have two ways of structuring arguments to plotting functions:\n",
- "* specifying the `x` and `y` axis columns\n",
- "* specifying the `data` we are visualizing, then the `x` and `y` axis columns"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "17babaa0",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 105
- },
- "id": "17babaa0",
- "outputId": "f00b5fb9-7c03-4e2d-b434-8e44c1af8a53"
- },
- "outputs": [],
- "source": [
- "# use x and y axis columns\n",
- "sns.scatterplot(x=neighbourhoods['pop_dens'],\n",
- " y=neighbourhoods['pct_transit'])"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "50aa79df",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 105
- },
- "id": "50aa79df",
- "outputId": "945bb5d8-6f47-4611-b75b-f78a6789922f"
- },
- "outputs": [],
- "source": [
- "# use the dataframe and column names\n",
- "sns.scatterplot(data=neighbourhoods,\n",
- " x='pop_dens',\n",
- " y='pct_transit')"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "78d42d8a",
- "metadata": {
- "id": "78d42d8a"
- },
- "source": [
- "For comparison, we can create the same plot using `matplotlib`'s `pyplot` approach."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "cb33c707",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 105
- },
- "id": "cb33c707",
- "outputId": "457ccbbf-ab58-4f8b-8c94-ca17f349d150"
- },
- "outputs": [],
- "source": [
- "plt.scatter(neighbourhoods['pop_dens'],\n",
- " neighbourhoods['pct_transit'])"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "40b12ed0",
- "metadata": {
- "id": "40b12ed0"
- },
- "source": [
- "## `seaborn` and object-oriented `matplotlib`\n",
- "\n",
- "We can use `seaborn` as a complement to `matplotlib`'s object-oriented approach. `seaborn` functions that work in individual plots have an optional keyword argument that lets us pass in an existing Axes to update. As a bonus, they return the Axes we're working with, making it easy to chain methods together.\n",
- "\n",
- "Let's revisit our 10 biggest Toronto neighbourhoods chart."
- ]
- },
- {
- "cell_type": "markdown",
- "id": "57edb59a",
- "metadata": {
- "id": "57edb59a"
- },
- "source": [
- "This was the code to create that plot. We'll recreate it with `seaborn`.\n",
- "\n",
- "```python\n",
- "bar_fig, bar_ax = plt.subplots()\n",
- "bar_ax.barh(top10_pop['neighbourhood'], top10_pop['pop_2016'])\n",
- "bar_ax.xaxis.set_major_formatter('{x:,.0f}')\n",
- "bar_ax.set_axisbelow(True)\n",
- "bar_ax.grid(alpha=0.3)\n",
- "bar_ax.set_title('Most Populous Toronto Neighbourhoods')\n",
- "bar_ax.set_xlabel('Population, 2016')\n",
- "```"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "NXSArMgWl79Q",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 549
- },
- "id": "NXSArMgWl79Q",
- "outputId": "051a9651-1193-4bb9-8fff-db85d0e04e6a"
- },
- "outputs": [],
- "source": [
- "top10_pop = neighbourhoods.sort_values('pop_2016', ascending=False).head(10)\n",
- "top10_pop"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "tFakWncZliHl",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 122
- },
- "id": "tFakWncZliHl",
- "outputId": "846ffe6c-948b-4a58-d541-4081e3cc1381"
- },
- "outputs": [],
- "source": [
- "bar_fig, bar_ax = plt.subplots()\n",
- "bar_ax.barh(top10_pop['neighbourhood'], top10_pop['pop_2016'])\n",
- "bar_ax.xaxis.set_major_formatter(tick.StrMethodFormatter('{x:,.0f}'))\n",
- "bar_ax.set_axisbelow(True)\n",
- "bar_ax.grid(alpha=0.3)\n",
- "bar_ax.set_title('Most Populous Toronto Neighbourhoods')\n",
- "bar_ax.set_xlabel('Population, 2016')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "67989ff0",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 54
- },
- "id": "67989ff0",
- "outputId": "1cc075ce-5057-4750-c66d-25491179f2dd"
- },
- "outputs": [],
- "source": [
- "bar_fig"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "eb2e7847",
- "metadata": {
- "id": "eb2e7847"
- },
- "source": [
- "And with `seaborn`:"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "fc1c91e8",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 54
- },
- "id": "fc1c91e8",
- "outputId": "061e0824-2979-4453-b258-fca9fd49dfb5"
- },
- "outputs": [],
- "source": [
- "sns.set_theme() # use seaborn's default style settings going forward\n",
- "\n",
- "sns_fig, sns_ax = plt.subplots() # create a Figure and Axes\n",
- "(sns.barplot(data=top10_pop, # set datasource\n",
- " x='pop_2016', # for a horizontal bar graph\n",
- " y='neighbourhood',\n",
- " ax=sns_ax) # plot on an existing Axes\n",
- " .set(xlabel='Population, 2016',\n",
- " ylabel='Neighbourhood'))\n",
- "\n",
- "# .set() returns text, so we can't chain .set_title()\n",
- "sns_ax.set_title('Most Populous Toronto Neighbourhoods',\n",
- " fontdict={'fontsize': 18})\n",
- "sns_ax.xaxis.set_major_formatter(tick.StrMethodFormatter('{x:,.0f}'))"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "dd6217e3",
- "metadata": {
- "id": "dd6217e3"
- },
- "source": [
- "## Facets\n",
- "\n",
- "With `matplotlib`, we created individual subplots and updated them with a helper function to visualize data for different categories. With `seaborn`, we can create a `FacetGrid` and then use its `map()` method to visualize data by category. `map()` takes the name of the plotting function to use, then the needed arguments, such as the columns to use for the x-axis and y-axis."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "87ef4a97",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 258
- },
- "id": "87ef4a97",
- "outputId": "f0a7a912-3e70-4ac7-b9cb-4b651b90ed8a",
- "scrolled": true
- },
- "outputs": [],
- "source": [
- "# reshape neighbourhood data to support faceting\n",
- "neighbourhoods_reshaped = (neighbourhoods[['neighbourhood',\n",
- " 'pct_transit',\n",
- " 'pct_drive',\n",
- " 'pct_walk',\n",
- " 'pct_bike']]\n",
- " .melt(id_vars='neighbourhood'))\n",
- "neighbourhoods_reshaped.head()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "8e22ebb0",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 105
- },
- "id": "8e22ebb0",
- "outputId": "86d2adbf-9e35-4a9e-c6dd-5970b7f613c7"
- },
- "outputs": [],
- "source": [
- "# specify the data to use and the column to facet by\n",
- "# we'll give each variable its own row\n",
- "facets = sns.FacetGrid(data=neighbourhoods_reshaped,\n",
- " row='variable')\n",
- "\n",
- "# create a histogram for each mode\n",
- "facets.map(sns.histplot, 'value', binwidth=0.05)\n",
- "facets.set_axis_labels('%', '# of Neighbourhoods')"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "05c993d4",
- "metadata": {
- "id": "05c993d4"
- },
- "source": [
- "For another example, we can plot reported bike thefts by year, faceted by status."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "9313fcd1",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 105
- },
- "id": "9313fcd1",
- "outputId": "9660b9ed-7e2d-4db6-ab66-fae4a5ddef29"
- },
- "outputs": [],
- "source": [
- "# reshape the theft counts to support faceting\n",
- "theft_counts_long = thefts_grouped.melt(id_vars='occurrence_year',\n",
- " value_name='Count')\n",
- "\n",
- "# specify the data to use and the column to facet by\n",
- "# we'll give each status its own row\n",
- "facets = sns.FacetGrid(data=theft_counts_long, row='status')\n",
- "\n",
- "# for each status, create a lineplot of counts by year\n",
- "facets.map(sns.lineplot, 'occurrence_year', 'Count')\n",
- "facets.set_axis_labels('Occurrence Year')"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "9700be0f",
- "metadata": {
- "id": "9700be0f"
- },
- "source": [
- "### Visualization for EDA\n",
- "\n",
- "`seaborn`'s pair plots are particularly useful for exploratory analyses. `pairplot()` takes a DataFrame or series of columns and creates a Figure containing grid of scatterplots, allowing us to visually look for relationships between variables."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "dfac4680",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "dfac4680",
- "outputId": "d72188c6-1091-4f89-ee3e-318be32d1fbe"
- },
- "outputs": [],
- "source": [
- "# review the columns available\n",
- "neighbourhoods.columns"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "c949fddd",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "c949fddd",
- "outputId": "af35de95-4f35-40f0-e4d6-53f17b47511a"
- },
- "outputs": [],
- "source": [
- "# review just the numeric columns\n",
- "neighbourhoods.select_dtypes('number').columns"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "d41ad627",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 54
- },
- "id": "d41ad627",
- "outputId": "5cdbb3eb-360d-49ff-ca96-724d6ec9fb43"
- },
- "outputs": [],
- "source": [
- "# select some columns to use in the pair plot\n",
- "cols = ['pop_2016', 'total_commuters', 'pct_drive', 'pct_transit', 'pct_walk', 'pct_bike']\n",
- "simple_pairs = sns.pairplot(neighbourhoods[cols])"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "f128aefa",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 54
- },
- "id": "f128aefa",
- "outputId": "102ee3e9-50e2-4cbf-ae56-5c402baf0f71",
- "scrolled": true
- },
- "outputs": [],
- "source": [
- "# if we include non-numeric variables, they won't be plotted, but we can use them for hue\n",
- "cols = ['pop_2016', 'designation', 'total_commuters', 'pct_drive', 'pct_transit', 'pct_walk', 'pct_bike']\n",
- "pairwise_fig = sns.pairplot(neighbourhoods[cols], hue='designation')"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "bc6cf360",
- "metadata": {
- "id": "bc6cf360"
- },
- "source": [
- "We can combine `seaborn`'s `heatmap()` function with the `pandas` Dataframe `corr()` method to explore correlations in our data."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "bdb4338f",
- "metadata": {},
- "outputs": [],
- "source": [
- "# If there are issues with library installation please type the following commands into Terminal:\n",
- "\n",
- "# conda install scipy"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "b92a6410",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 88
- },
- "id": "b92a6410",
- "outputId": "1f22bc09-38ad-40dd-a57b-011eaca95d9d",
- "scrolled": true
- },
- "outputs": [],
- "source": [
- "# calculate correlations with pandas\n",
- "correlations = neighbourhoods.loc[:, 'pct_bike':].corr('kendall')\n",
- "\n",
- "# create a figure and axes\n",
- "corr_fig, corr_ax = plt.subplots()\n",
- "corr_fig.set_size_inches(5, 4)\n",
- "sns.heatmap(correlations, ax=corr_ax, annot=True)"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "e3509779",
- "metadata": {
- "id": "e3509779"
- },
- "source": [
- "## Saving Plots\n",
- "\n",
- "To save a plot, use the Figure `savefig()` method, which supports exporting figure in common formats like PNG, PDF, and SVG. Setting `bbox_inches='tight'` will make `matplotlib` try to figure out the dimensions of the plot and crop the image appropriately. Note that `seaborn` does not have a plot saving function of its own."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "ed25a8c6",
- "metadata": {
- "id": "ed25a8c6"
- },
- "outputs": [],
- "source": [
- "pairwise_fig.savefig('pairs.svg', bbox_inches='tight')\n",
- "corr_fig.savefig('correlations.png', bbox_inches='tight')"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "8acbc611",
- "metadata": {
- "id": "8acbc611"
- },
- "source": [
- "# `plotly`"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "2a673992",
- "metadata": {
- "id": "2a673992"
- },
- "source": [
- "## Interactive visualizations with `plotly`\n",
- "\n",
- "`plotly` gives us a way to create interactive graphics within Python, building on the plotly.js library rather than `matplotlib`. Plotly Express provides an entry point to making data visualizations with the package. Let's re-create the drivers vs cyclists scatterplot to start."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "2b10dafd",
- "metadata": {},
- "outputs": [],
- "source": [
- "# If there are issues with library installation please type the following commands into Terminal:\n",
- "\n",
- "## conda install plotly\n",
- "## conda install nbformat"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "b466cad4",
- "metadata": {
- "id": "b466cad4"
- },
- "outputs": [],
- "source": [
- "import plotly.express as px"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "25274d77",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 562
- },
- "id": "25274d77",
- "outputId": "c4707a4f-057a-4c4c-fb27-128cfadb94ee"
- },
- "outputs": [],
- "source": [
- "plotly_fig = px.scatter(neighbourhoods,\n",
- " x='drive',\n",
- " y='bike',\n",
- " title='Commute Modes')\n",
- "plotly_fig.show() # ensure plot renders nicely in notebook mode"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "89d24885",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 562
- },
- "id": "89d24885",
- "outputId": "23a89c25-ba58-4c22-a2f6-1cf7e0e2b860"
- },
- "outputs": [],
- "source": [
- "# add hover data\n",
- "plotly_fig = px.scatter(neighbourhoods,\n",
- " x='drive',\n",
- " y='bike',\n",
- " hover_name='neighbourhood', # show neighbourhood on hover\n",
- " labels={'bike': 'Bike', 'drive':'Drive'},\n",
- " title='Commute Modes')\n",
- "plotly_fig.show() # ensure plot renders nicely in notebook mode"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "c6d90ed9",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 664
- },
- "id": "c6d90ed9",
- "outputId": "e137ad93-c52c-46cd-a55e-0370293f4957"
- },
- "outputs": [],
- "source": [
- "print(top10_pop.columns)\n",
- "\n",
- "hist_fig = px.bar(top10_pop,\n",
- " x=['pct_drive', 'pct_cp', 'pct_transit', 'pct_walk', 'pct_bike'],\n",
- " y='neighbourhood',\n",
- " hover_name='neighbourhood',\n",
- " hover_data=['drive', 'car_passenger', 'transit', 'walk', 'bike'],\n",
- " labels={'variable': 'Mode',\n",
- " 'value': '%'}\n",
- " )\n",
- "hist_fig.show()"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "d5fd2816",
- "metadata": {
- "id": "d5fd2816"
- },
- "source": [
- "### Re-create the population bar chart"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "65f86e0b",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "65f86e0b",
- "outputId": "53d6ae79-5fea-4b06-fbf3-6b3e3a954326"
- },
- "outputs": [],
- "source": [
- "# view available themes\n",
- "import plotly.io as pio\n",
- "pio.templates"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "dd6a8682",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 562
- },
- "id": "dd6a8682",
- "outputId": "9ce899cb-c6b9-4360-c776-9a8bd72f5efd"
- },
- "outputs": [],
- "source": [
- "bar_fig = px.bar(top10_pop,\n",
- " x='pop_2016',\n",
- " y='neighbourhood',\n",
- " text='pop_2016',\n",
- " labels={'pop_2016': 'Population, 2016',\n",
- " 'neighbourhood': 'Neighbourhood'},\n",
- " hover_data={'neighbourhood': False,\n",
- " 'pop_2016':False,\n",
- " 'pop_change': ':.2p'}, # add pop change, formatted as %\n",
- " title='Top Toronto Neighbourhoods by Population',\n",
- " template='seaborn'\n",
- " )\n",
- "bar_fig.show()"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "f8e7e1f3",
- "metadata": {
- "id": "f8e7e1f3"
- },
- "source": [
- "## Futher customizing `plotly` graphs\n",
- "\n",
- "For added control over visualizations, we can import `plotly`'s `graph_objects` submodule."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "8b9474e1",
- "metadata": {
- "id": "8b9474e1"
- },
- "outputs": [],
- "source": [
- "import plotly.graph_objects as go"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "58b6da12",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/",
- "height": 562
- },
- "id": "58b6da12",
- "outputId": "51bc3645-7516-4249-df04-b6ed79f55512"
- },
- "outputs": [],
- "source": [
- "transit_hist = go.Histogram(x=neighbourhoods['pct_transit'], name='Transit')\n",
- "drive_hist = go.Histogram(x=neighbourhoods['pct_drive'], name='Drive')\n",
- "\n",
- "data = [drive_hist, transit_hist]\n",
- "\n",
- "layout = go.Layout(template='seaborn',\n",
- " title='Commute Mode Distribution',\n",
- " xaxis={'title': 'Mode %'},\n",
- " yaxis={'title': 'Neighbourhoods'}\n",
- " )\n",
- "\n",
- "fig = go.Figure(data=data, layout=layout)\n",
- "fig.update_layout(hovermode='x')\n",
- "fig.show()"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "ad5a836d",
- "metadata": {
- "id": "ad5a836d"
- },
- "source": [
- "## Saving `plotly` visualizations\n",
- "\n",
- "We can save visualizatons created in `plotly` to image or PDF with the `write_image()` Figure method. Note that `write_image()` needs the `kaleido` package to work."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "bb0281eb",
- "metadata": {},
- "outputs": [],
- "source": [
- "# If there are issues with library installation please type the following commands into Terminal:\n",
- "\n",
- "#conda install -c conda-forge python-kaleido=0.2.1"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "dTdIGaqXHn8R",
- "metadata": {
- "id": "dTdIGaqXHn8R"
- },
- "outputs": [],
- "source": [
- "import kaleido"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "299df222",
- "metadata": {
- "id": "299df222"
- },
- "outputs": [],
- "source": [
- "fig.write_image('fig.pdf', format='pdf')"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "0d1c483c",
- "metadata": {
- "id": "0d1c483c"
- },
- "source": [
- "# References\n",
- "\n",
- "- Matplotlib development team. _Basic usage_. https://matplotlib.org/stable/tutorials/introductory/usage.html\n",
- "- Matplotlib development team. _The lifecycle of a plot_. https://matplotlib.org/stable/tutorials/introductory/lifecycle.html#sphx-glr-tutorials-introductory-lifecycle-py\n",
- "- Matplotlib development team. _API reference_. https://matplotlib.org/stable/api/index.html\n",
- "- Plotly. _Getting started_. https://plotly.com/python/getting-started/\n",
- "- Plotly. _Fundamentals_. https://plotly.com/python/plotly-fundamentals/\n",
- "- Waskom, M. _An introduction to seaborn_. https://seaborn.pydata.org/introduction.html\n",
- "- Waskom, M. _API reference_. https://seaborn.pydata.org/api.html\n"
- ]
- }
- ],
- "metadata": {
- "celltoolbar": "Slideshow",
- "colab": {
- "collapsed_sections": [
- "3e2fb9ea",
- "c3dc71ce",
- "8c46068d",
- "71022ba7",
- "797f9027",
- "83cf96b4",
- "560b3cf8",
- "692f2f8c",
- "15f60e7c",
- "40b12ed0",
- "dd6217e3",
- "9700be0f",
- "e3509779",
- "2a673992",
- "d5fd2816",
- "f8e7e1f3"
- ],
- "provenance": []
- },
- "kernelspec": {
- "display_name": "Python 3 (ipykernel)",
- "language": "python",
- "name": "python3"
- },
- "language_info": {
- "codemirror_mode": {
- "name": "ipython",
- "version": 3
- },
- "file_extension": ".py",
- "mimetype": "text/x-python",
- "name": "python",
- "nbconvert_exporter": "python",
- "pygments_lexer": "ipython3",
- "version": "3.9.19"
- },
- "rise": {
- "scroll": true,
- "theme": "solarized",
- "transition": "none"
- }
- },
- "nbformat": 4,
- "nbformat_minor": 5
-}
diff --git a/04_this_cohort/bonus_slides/04_apis.ipynb b/04_this_cohort/bonus_slides/04_apis.ipynb
deleted file mode 100644
index b7ceb772e..000000000
--- a/04_this_cohort/bonus_slides/04_apis.ipynb
+++ /dev/null
@@ -1,172 +0,0 @@
-{
- "cells": [
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "# APIs\n",
- "\n",
- "# What is a API?\n",
- "\n",
- "- API stands for Application Programming Interface\n",
- "- Allows software programs to communicate with each other\n",
- "- Provides structured way to communicate between applications and devices (expose data and functionality)\n",
- "- Allows other developers to access and integrate with an application without needing to understand complex implementation details\n",
- "\n",
- "# Have we used an API before?\n",
- "\n",
- "YES!!! We used numPy and soon, and later on in the program, we will use pandas."
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## Exercise 1\n",
- "\n",
- "We will call the Open Meteo API!"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "import requests\n",
- "\n",
- "url = \"https://api.open-meteo.com/v1/forecast\"\n",
- "params = {\n",
- " \"latitude\": 43.7001,\n",
- " \"longitude\": -79.4163,\n",
- " \"hourly\": \"temperature_2m\"\n",
- "}\n",
- "data = requests.get(url, params).json()\n",
- "\n",
- "print(data)\n"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "# Why Web APIs?\n",
- "\n",
- "- Your program can interact with the world\n",
- "- Data from more than just files on the computer\n",
- " - Updated datasets\n",
- " - Industrial sensors\n",
- "- Effects and outcomes on real-world objects\n",
- " - Smart home control\n",
- " - Mobile notifications\n",
- "\n",
- "## The RESTful Web API\n",
- "- The RESTful Web APIs are a quasi-standard method of performing actions using or exchanging data with web-connected services\n",
- " - e.g. Retrieve list of repositories from GitHub\n",
- " - e.g. Using GPT-4 to process datasets automatically\n",
- " - e.g. Starting and stopping a container hosted on Microsoft Azure\n",
- "- REST: “Representational State Transfer”\n",
- " - Uses HTTP requests: GET, POST, (PUT), (DELETE)\n",
- " - Generally, returns data in machine-readable formats like JSON\n",
- "- Uniform interface\n",
- " - Every entity (piece of data) is generally retrieved from the same URI\n",
- "- Client-server decoupling\n",
- " - The web interface is assumed to be the only link between the client and the server\n",
- " - Data isn’t getting passed through a separate channel (e.g. file on hard drive)\n",
- "- Statelessness\n",
- " - All required information is included in the request\n",
- " - Identity is established on every request (usually via a secret token)\n",
- "\n",
- "## Exercise 2\n",
- "Read the API document [here](https://open-meteo.com/en/docs)(scrol down to API Documentation), and play around with the code again, and answer the following questions:"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "# 1. What is the current temperature in Tokyo, Japan?\n",
- "# Play with this code again!\n",
- "\n",
- "import requests\n",
- "\n",
- "url = \"https://api.open-meteo.com/v1/forecast\"\n",
- "params = {\n",
- " \"latitude\": 43.7001,\n",
- " \"longitude\": -79.4163,\n",
- " \"hourly\": \"temperature_2m\"\n",
- "}\n",
- "data = requests.get(url, params).json()\n",
- "\n",
- "print(data)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "# 2. How would you include hourly weather code as part of the JSON response?\n",
- "# Play with this code again!\n",
- "\n",
- "import requests\n",
- "\n",
- "url = \"https://api.open-meteo.com/v1/forecast\"\n",
- "params = {\n",
- " \"latitude\": 43.7001,\n",
- " \"longitude\": -79.4163,\n",
- " \"hourly\": \"temperature_2m\"\n",
- "}\n",
- "data = requests.get(url, params).json()\n",
- "\n",
- "print(data)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "# 3. How about getting the current weather code only?\n",
- "# Play with this code again!\n",
- "\n",
- "import requests\n",
- "\n",
- "url = \"https://api.open-meteo.com/v1/forecast\"\n",
- "params = {\n",
- " \"latitude\": 43.7001,\n",
- " \"longitude\": -79.4163,\n",
- " \"hourly\": \"temperature_2m\"\n",
- "}\n",
- "data = requests.get(url, params).json()\n",
- "\n",
- "print(data)"
- ]
- }
- ],
- "metadata": {
- "kernelspec": {
- "display_name": "Python 3",
- "language": "python",
- "name": "python3"
- },
- "language_info": {
- "codemirror_mode": {
- "name": "ipython",
- "version": 3
- },
- "file_extension": ".py",
- "mimetype": "text/x-python",
- "name": "python",
- "nbconvert_exporter": "python",
- "pygments_lexer": "ipython3",
- "version": "3.11.5"
- }
- },
- "nbformat": 4,
- "nbformat_minor": 2
-}
diff --git a/04_this_cohort/live_code/11_26_2024.ipynb b/04_this_cohort/live_code/11_26_2024.ipynb
deleted file mode 100644
index a4917ca3a..000000000
--- a/04_this_cohort/live_code/11_26_2024.ipynb
+++ /dev/null
@@ -1,1964 +0,0 @@
-{
- "cells": [
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "shift + enter -> run the current cell and move to the next cell\n",
- "\n",
- "\n",
- "ctrl + enter -> run the current cell and stay on the same cell\n",
- "\n",
- "alt + enter -> run the current cell and insert a new cell below"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 11,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "11"
- ]
- },
- "execution_count": 11,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "# 5 and 6 are int data type because they are whole numbers\n",
- "# 11 is a int\n",
- "# 5 and 6 are the operands\n",
- "# + is an operator\n",
- "# 11 is a value\n",
- "\n",
- "5 + 6"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 12,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "2.5"
- ]
- },
- "execution_count": 12,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "# 5 and 2 are int data type\n",
- "# 2.5 is a float data type\n",
- "# 5 and 2 are operands\n",
- "# / is an operator\n",
- "# 2.5 is a value\n",
- "\n",
- "5 / 2"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## Additional Arithmetic Operators\n",
- "\n",
- "| Operator | Description |\n",
- "|---|---|\n",
- "| // | Integer division (always rounds down)|\n",
- "| % | Modulo or remainder |\n",
- "| ** | Exponentiation |"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 17,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "3.3333333333333335"
- ]
- },
- "execution_count": 17,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "# / -> division operator, return float\n",
- "\n",
- "10 / 3"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 16,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "3"
- ]
- },
- "execution_count": 16,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "# // -> integer division, divide the first operand by the second, return the quotient rounded down to the nearest integer\n",
- "\n",
- "10 // 3"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 19,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "52.5"
- ]
- },
- "execution_count": 19,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "105 / 2"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 20,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "52"
- ]
- },
- "execution_count": 20,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "105 // 2"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 21,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "1"
- ]
- },
- "execution_count": 21,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "# % -> modulo operator, return the remainder of the division of the first operand by the second\n",
- "\n",
- "10 % 3"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 23,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "2"
- ]
- },
- "execution_count": 23,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "12 % 5"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 24,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "1000"
- ]
- },
- "execution_count": 24,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "# ** -> exponentiation operator, raise a number to a power\n",
- "\n",
- "10 ** 3"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 25,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "8"
- ]
- },
- "execution_count": 25,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "2 ** 3"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 28,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "True"
- ]
- },
- "execution_count": 28,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "# bool data type, which can be true or false\n",
- "\n",
- "True"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 27,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "False"
- ]
- },
- "execution_count": 27,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "False"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## Comparison operators\n",
- "\n",
- "Python has comparison operators as well as arithmetic operators. Unlike arithmetic expressions, which produce integer or float values, comparison expressions produce a Boolean value.\n",
- "\n",
- "| Operator | Description |\n",
- "| --- | --- |\n",
- "| `>` | Greater than |\n",
- "| `>=` | Greater than or equal to |\n",
- "| `<` | Less than |\n",
- "| `<=` | Less than or equal to |\n",
- "| `==` | Equal to |\n",
- "| `!=` | Not equal to |\n"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 29,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "True"
- ]
- },
- "execution_count": 29,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "50 > 25"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 30,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "False"
- ]
- },
- "execution_count": 30,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "-15 >= -14.99"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 32,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "True"
- ]
- },
- "execution_count": 32,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "20 == 20"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 33,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "True"
- ]
- },
- "execution_count": 33,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "30 != 40"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## Operator precedence\n",
- "\n",
- "Arithmetic and comparison operators are evaluated in the following order. We can enclose operations in parentheses to override the order of precedence -- operations in parentheses are evaluated before the rest of the expression.\n",
- "\n",
- "| Order | Operator | Description |\n",
- "|---|---|---|\n",
- "| 1 | `**` | Exponentiation |\n",
- "| 2 | `-`| Negation |\n",
- "| 3 | `*`, `/`, `//`, `%` | Multiplication, division, integer division, and modulo |\n",
- "| 4 | `+`, `-` | Addition and subtraction |\n",
- "| 5 | `<`, `<=`, `>`, `>=`, `==`, `!=` | Less than, less than or equal to, greater than, greater than or equal to, equal, not equal |"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 35,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "False"
- ]
- },
- "execution_count": 35,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "(4 + 5) / (30 % 4) == 5"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 36,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "9"
- ]
- },
- "execution_count": 36,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "4 + 5"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 37,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "2"
- ]
- },
- "execution_count": 37,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "30 % 4"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 38,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "4.5"
- ]
- },
- "execution_count": 38,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "9 / 2"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 46,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "0.5\n"
- ]
- },
- {
- "data": {
- "text/plain": [
- "False"
- ]
- },
- "execution_count": 46,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "1 / 2\n",
- "4.5 == 5"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 42,
- "metadata": {},
- "outputs": [],
- "source": [
- "# variable names can include letters, digits, and underscores\n",
- "# cannot start with a digit\n",
- "# case sensitive\n",
- "\n",
- "kaylie = 1\n",
- "KAYLIE = 10"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 47,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "25"
- ]
- },
- "execution_count": 47,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "degrees_celsius = 25\n",
- "degrees_celsius"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 48,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "77.0"
- ]
- },
- "execution_count": 48,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "degrees_fahrenheit = (9 / 5) * degrees_celsius + 32\n",
- "degrees_fahrenheit"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 49,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "25"
- ]
- },
- "execution_count": 49,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "degrees_celsius"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 50,
- "metadata": {},
- "outputs": [],
- "source": [
- "degrees_celsius = 0"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 51,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "0"
- ]
- },
- "execution_count": 51,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "degrees_celsius"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 52,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "77.0"
- ]
- },
- "execution_count": 52,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "degrees_fahrenheit"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 54,
- "metadata": {},
- "outputs": [],
- "source": [
- "degrees_fahrenheit = (9 / 5) * degrees_celsius + 32"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 55,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "32.0"
- ]
- },
- "execution_count": 55,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "degrees_fahrenheit"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 56,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "0"
- ]
- },
- "execution_count": 56,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "degrees_celsius"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 57,
- "metadata": {},
- "outputs": [],
- "source": [
- "degrees_celsius = degrees_celsius + 10"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 58,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "10"
- ]
- },
- "execution_count": 58,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "degrees_celsius"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 59,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "20"
- ]
- },
- "execution_count": 59,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "degrees_celsius = degrees_celsius + 10\n",
- "degrees_celsius"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 60,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "30"
- ]
- },
- "execution_count": 60,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "degrees_celsius += 10\n",
- "degrees_celsius"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 61,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "20"
- ]
- },
- "execution_count": 61,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "degrees_celsius -= 10\n",
- "degrees_celsius"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 62,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "1"
- ]
- },
- "execution_count": 62,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "a = 1\n",
- "a"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 63,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "1"
- ]
- },
- "execution_count": 63,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "b = a\n",
- "b"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 66,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "2"
- ]
- },
- "execution_count": 66,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "a = 2\n",
- "a"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 67,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "1"
- ]
- },
- "execution_count": 67,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "b"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 68,
- "metadata": {},
- "outputs": [],
- "source": [
- "a = 3"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 69,
- "metadata": {},
- "outputs": [],
- "source": [
- "b = a"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 70,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "3"
- ]
- },
- "execution_count": 70,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "b"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 71,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "3"
- ]
- },
- "execution_count": 71,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "a"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 72,
- "metadata": {},
- "outputs": [],
- "source": [
- "a = 10000"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 73,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "10000"
- ]
- },
- "execution_count": 73,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "a"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 74,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "3"
- ]
- },
- "execution_count": 74,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "b"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 75,
- "metadata": {},
- "outputs": [
- {
- "ename": "SyntaxError",
- "evalue": "cannot assign to literal here. Maybe you meant '==' instead of '='? (3892556776.py, line 3)",
- "output_type": "error",
- "traceback": [
- "\u001b[0;36m Cell \u001b[0;32mIn[75], line 3\u001b[0;36m\u001b[0m\n\u001b[0;31m 12 = x\u001b[0m\n\u001b[0m ^\u001b[0m\n\u001b[0;31mSyntaxError\u001b[0m\u001b[0;31m:\u001b[0m cannot assign to literal here. Maybe you meant '==' instead of '='?\n"
- ]
- }
- ],
- "source": [
- "# syntax error when your program contains code that is not valid Python\n",
- "\n",
- "12 = x"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 76,
- "metadata": {},
- "outputs": [
- {
- "ename": "SyntaxError",
- "evalue": "invalid syntax (3249839057.py, line 1)",
- "output_type": "error",
- "traceback": [
- "\u001b[0;36m Cell \u001b[0;32mIn[76], line 1\u001b[0;36m\u001b[0m\n\u001b[0;31m 25 -\u001b[0m\n\u001b[0m ^\u001b[0m\n\u001b[0;31mSyntaxError\u001b[0m\u001b[0;31m:\u001b[0m invalid syntax\n"
- ]
- }
- ],
- "source": [
- "25 - "
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 79,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "101"
- ]
- },
- "execution_count": 79,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "# name error when you try to use a variable that hasn't been assigned yet\n",
- "\n",
- "my_variable + 1"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 78,
- "metadata": {},
- "outputs": [],
- "source": [
- "my_variable = 100"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 82,
- "metadata": {},
- "outputs": [],
- "source": [
- "#monday = 100\n",
- "tuesday = 200\n",
- "wednesday = 400"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 83,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "71.33333333333333"
- ]
- },
- "execution_count": 83,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "student1_grade = 90\n",
- "student2_grade = 50\n",
- "student3_grade = 74\n",
- "average_grade = (student1_grade + student2_grade +\n",
- " student3_grade) / 3\n",
- "average_grade # These lines of code will produce a value.\n",
- "# Python will ignore everything after the # symbol."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "# readability:\n",
- "\n",
- "# white spaces: a space to either side of an operand helps readability\n",
- "# can also split code across multiple lines by wrapping it in parentheses\n",
- "# comments: annotations, toggle lines of code on/off for debugging\n",
- "# clear and consistent variable names"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## Which code is easier to read and follow?\n",
- "\n",
- "Version 1\n",
- "```python\n",
- "studentone_grade=90\n",
- "StudentGrade2=50\n",
- "stu3gr=74\n",
- "avggrade=(studentone_grade+StudentGrade2+stut3gr)/3\n",
- "```\n",
- "\n",
- "Version 2 \n",
- "```python\n",
- "student1_grade = 90\n",
- "student2_grade = 50\n",
- "student3_grade = 74\n",
- "average_grade = ((student1_grade\n",
- " + student2_grade\n",
- " + student3_grade)\n",
- " / 3)\n",
- "```"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 84,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "42\n"
- ]
- }
- ],
- "source": [
- "print(42)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 85,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "int"
- ]
- },
- "execution_count": 85,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "type(42)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 86,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "float"
- ]
- },
- "execution_count": 86,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "type(42.0)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 87,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "43"
- ]
- },
- "execution_count": 87,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "abs(-43)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 88,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "1"
- ]
- },
- "execution_count": 88,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "round(2/3)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 89,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "3"
- ]
- },
- "execution_count": 89,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "int(3.99)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 90,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "5.0"
- ]
- },
- "execution_count": 90,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "float(5)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 91,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "\n"
- ]
- }
- ],
- "source": [
- "print(type(round(2 * 1.5)))"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 92,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "3.0"
- ]
- },
- "execution_count": 92,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "2 * 1.5"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 93,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "3"
- ]
- },
- "execution_count": 93,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "round(3.0)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 94,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "int"
- ]
- },
- "execution_count": 94,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "type(3)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 95,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "\n"
- ]
- }
- ],
- "source": [
- "print(type(3))"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 96,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "Help on built-in function round in module builtins:\n",
- "\n",
- "round(number, ndigits=None)\n",
- " Round a number to a given precision in decimal digits.\n",
- " \n",
- " The return value is an integer if ndigits is omitted or None. Otherwise\n",
- " the return value has the same type as the number. ndigits may be negative.\n",
- "\n"
- ]
- }
- ],
- "source": [
- "help(round)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 99,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "3.6"
- ]
- },
- "execution_count": 99,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "round(3.56, 1)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 17,
- "metadata": {},
- "outputs": [],
- "source": [
- "def c_to_f(degrees_c):\n",
- " # convert degrees from celsius to fahrenheit\n",
- " degrees_f = (9 / 5) * degrees_c + 32\n",
- " return degrees_f"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 101,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "212.0"
- ]
- },
- "execution_count": 101,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "c_to_f(100)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 103,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "12.2"
- ]
- },
- "execution_count": 103,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "c_to_f(-11)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 104,
- "metadata": {},
- "outputs": [],
- "source": [
- "freezing_f = c_to_f(0)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 105,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "32.0"
- ]
- },
- "execution_count": 105,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "freezing_f"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 106,
- "metadata": {},
- "outputs": [],
- "source": [
- "def divide(dividend, divisor):\n",
- " output = dividend / divisor\n",
- " return output"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 107,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "0.0"
- ]
- },
- "execution_count": 107,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "divide(0, 2)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 108,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "10.0"
- ]
- },
- "execution_count": 108,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "divide(100, 10)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 109,
- "metadata": {},
- "outputs": [
- {
- "ename": "ZeroDivisionError",
- "evalue": "division by zero",
- "output_type": "error",
- "traceback": [
- "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
- "\u001b[0;31mZeroDivisionError\u001b[0m Traceback (most recent call last)",
- "Cell \u001b[0;32mIn[109], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[43mdivide\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m2\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m0\u001b[39;49m\u001b[43m)\u001b[49m\n",
- "Cell \u001b[0;32mIn[106], line 2\u001b[0m, in \u001b[0;36mdivide\u001b[0;34m(dividend, divisor)\u001b[0m\n\u001b[1;32m 1\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21mdivide\u001b[39m(dividend, divisor):\n\u001b[0;32m----> 2\u001b[0m output \u001b[38;5;241m=\u001b[39m \u001b[43mdividend\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m/\u001b[39;49m\u001b[43m \u001b[49m\u001b[43mdivisor\u001b[49m\n\u001b[1;32m 3\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m output\n",
- "\u001b[0;31mZeroDivisionError\u001b[0m: division by zero"
- ]
- }
- ],
- "source": [
- "divide(2, 0)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 1,
- "metadata": {},
- "outputs": [],
- "source": [
- "def calc_sales_tax(price, tax_rate=0.13):\n",
- " tax_amt = price * tax_rate\n",
- " return tax_amt"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 2,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "0.65"
- ]
- },
- "execution_count": 2,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "calc_sales_tax(5)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 3,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "0.65"
- ]
- },
- "execution_count": 3,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "5 * 0.13"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 4,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "0.4"
- ]
- },
- "execution_count": 4,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "calc_sales_tax(5, .08)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 5,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "0.4"
- ]
- },
- "execution_count": 5,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "5 * 0.08"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 6,
- "metadata": {},
- "outputs": [],
- "source": [
- "def calc_total_bill(price, tax_rate=0.13, tip_rate=0.15):\n",
- " tax_amt = price * tax_rate\n",
- " tip_amt = price * tip_rate\n",
- " final_price = price + tax_amt + tip_amt\n",
- " return final_price\n"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 7,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "128.0"
- ]
- },
- "execution_count": 7,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "calc_total_bill(100)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 8,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "128.0"
- ]
- },
- "execution_count": 8,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "100 + 100*0.13 + 100*0.15"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 9,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "137.0"
- ]
- },
- "execution_count": 9,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "calc_total_bill(100, 0.22)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 10,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "137.0"
- ]
- },
- "execution_count": 10,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "100 + 100*0.22 + 100*0.15"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 11,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "135.0"
- ]
- },
- "execution_count": 11,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "calc_total_bill(100, tip_rate=0.22)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 12,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "135.0"
- ]
- },
- "execution_count": 12,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "100 + 100*0.13 + 100*0.22"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 13,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "122.0"
- ]
- },
- "execution_count": 13,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "calc_total_bill(100, 0, 0.22)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 15,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "Help on built-in function print in module builtins:\n",
- "\n",
- "print(*args, sep=' ', end='\\n', file=None, flush=False)\n",
- " Prints the values to a stream, or to sys.stdout by default.\n",
- " \n",
- " sep\n",
- " string inserted between values, default a space.\n",
- " end\n",
- " string appended after the last value, default a newline.\n",
- " file\n",
- " a file-like object (stream); defaults to the current sys.stdout.\n",
- " flush\n",
- " whether to forcibly flush the stream.\n",
- "\n"
- ]
- }
- ],
- "source": [
- "help(print)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 18,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "Help on function c_to_f in module __main__:\n",
- "\n",
- "c_to_f(degrees_c)\n",
- "\n"
- ]
- }
- ],
- "source": [
- "help(c_to_f)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 28,
- "metadata": {},
- "outputs": [],
- "source": [
- "def c_to_f(degrees_c):\n",
- " \"\"\"Convert degrees from celsius to fahrenheit\"\"\"\n",
- " degrees_f = (9 / 5) * degrees_c + 32\n",
- " return degrees_f\n"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 20,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "Help on function c_to_f in module __main__:\n",
- "\n",
- "c_to_f(degrees_c)\n",
- " Convert degrees from celsius to fahrenheit\n",
- "\n"
- ]
- }
- ],
- "source": [
- "help(c_to_f)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 22,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "None\n"
- ]
- }
- ],
- "source": [
- "print(c_to_f(60))"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 24,
- "metadata": {},
- "outputs": [
- {
- "ename": "NameError",
- "evalue": "name 'degrees_c' is not defined",
- "output_type": "error",
- "traceback": [
- "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
- "\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)",
- "Cell \u001b[0;32mIn[24], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[43mdegrees_c\u001b[49m\n",
- "\u001b[0;31mNameError\u001b[0m: name 'degrees_c' is not defined"
- ]
- }
- ],
- "source": [
- "degrees_c"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 25,
- "metadata": {},
- "outputs": [],
- "source": [
- "temp = 37"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 29,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "98.60000000000001\n"
- ]
- }
- ],
- "source": [
- "print(c_to_f(temp))"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": []
- }
- ],
- "metadata": {
- "kernelspec": {
- "display_name": "dsi_participant",
- "language": "python",
- "name": "python3"
- },
- "language_info": {
- "codemirror_mode": {
- "name": "ipython",
- "version": 3
- },
- "file_extension": ".py",
- "mimetype": "text/x-python",
- "name": "python",
- "nbconvert_exporter": "python",
- "pygments_lexer": "ipython3",
- "version": "3.11.8"
- }
- },
- "nbformat": 4,
- "nbformat_minor": 2
-}
diff --git a/04_this_cohort/live_code/11_27_2024.ipynb b/04_this_cohort/live_code/11_27_2024.ipynb
deleted file mode 100644
index 06f81c1a6..000000000
--- a/04_this_cohort/live_code/11_27_2024.ipynb
+++ /dev/null
@@ -1,2000 +0,0 @@
-{
- "cells": [
- {
- "cell_type": "code",
- "execution_count": 1,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "'This is a string'"
- ]
- },
- "execution_count": 1,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "# strings are a text data type\n",
- "# they are sequences of characters\n",
- "# surrounded by either single or double quotes -> must be consistent around a string\n",
- "\n",
- "'This is a string'"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 2,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "'This is also a string'"
- ]
- },
- "execution_count": 2,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "\"This is also a string\""
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 3,
- "metadata": {},
- "outputs": [
- {
- "ename": "SyntaxError",
- "evalue": "unterminated string literal (detected at line 1) (1479919974.py, line 1)",
- "output_type": "error",
- "traceback": [
- "\u001b[0;36m Cell \u001b[0;32mIn[3], line 1\u001b[0;36m\u001b[0m\n\u001b[0;31m \"these quotes do not match'\u001b[0m\n\u001b[0m ^\u001b[0m\n\u001b[0;31mSyntaxError\u001b[0m\u001b[0;31m:\u001b[0m unterminated string literal (detected at line 1)\n"
- ]
- }
- ],
- "source": [
- "\"these quotes do not match'"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 4,
- "metadata": {},
- "outputs": [
- {
- "ename": "SyntaxError",
- "evalue": "invalid syntax (1618629434.py, line 1)",
- "output_type": "error",
- "traceback": [
- "\u001b[0;36m Cell \u001b[0;32mIn[4], line 1\u001b[0;36m\u001b[0m\n\u001b[0;31m 'Let's see if this works\u001b[0m\n\u001b[0m ^\u001b[0m\n\u001b[0;31mSyntaxError\u001b[0m\u001b[0;31m:\u001b[0m invalid syntax\n"
- ]
- }
- ],
- "source": [
- "'Let's see if this works"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 5,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "\"Let's see if this works now\""
- ]
- },
- "execution_count": 5,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "\"Let's see if this works now\""
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 6,
- "metadata": {},
- "outputs": [],
- "source": [
- "def sum(value_1, value_2):\n",
- " \"\"\"\n",
- " Add value_1 and value_2.\n",
- " This will output the sum of the values.\n",
- " \"\"\"\n",
- " sum = value_1 + value_2\n",
- " return sum"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 7,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "5"
- ]
- },
- "execution_count": 7,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "sum(2, 3)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 8,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "Help on function sum in module __main__:\n",
- "\n",
- "sum(value_1, value_2)\n",
- " Add value_1 and value_2.\n",
- " This will output the sum of the values.\n",
- "\n"
- ]
- }
- ],
- "source": [
- "help(sum)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 11,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "'\\nThis is a multiline string\\n\\nIt is very useful for documenting functions\\n'"
- ]
- },
- "execution_count": 11,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "'''\n",
- "This is a multiline string\n",
- "\n",
- "It is very useful for documenting functions\n",
- "'''"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "# escape sequence is a combination of characters that means something else\n",
- "# \"\\n\" means new line and not literally \"\\n\""
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "### Escape sequences\n",
- "\n",
- "| Escape sequence | Description |\n",
- "|-----------------|--------------------|\n",
- "| \\\\' | Single quote |\n",
- "| \\\\\" | Double quote |\n",
- "| \\\\\\\\ | Backslash |\n",
- "| \\\\t | Tab |\n",
- "| \\\\n | Newline |\n",
- "| \\\\r | Carriage return |"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 13,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "\"Let's go to the Ex!\""
- ]
- },
- "execution_count": 13,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "'Let\\'s go to the Ex!'"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 16,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "She said, \"Don't do that!\"\n"
- ]
- }
- ],
- "source": [
- "print('She said, \\\"Don\\'t do that!\\\"')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 17,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "We can include a \t tab!\n"
- ]
- }
- ],
- "source": [
- "print(\"We can include a \\t tab!\")"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 18,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "7"
- ]
- },
- "execution_count": 18,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "3 + 4"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 19,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "'hello world'"
- ]
- },
- "execution_count": 19,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "'hello' + ' ' + 'world'"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 20,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "12"
- ]
- },
- "execution_count": 20,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "4 * 3"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 21,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "'hahaha'"
- ]
- },
- "execution_count": 21,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "'ha' * 3"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 22,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "'wowowowowowowowowowo'"
- ]
- },
- "execution_count": 22,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "'wo' * 10"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 23,
- "metadata": {},
- "outputs": [
- {
- "ename": "TypeError",
- "evalue": "can only concatenate str (not \"int\") to str",
- "output_type": "error",
- "traceback": [
- "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
- "\u001b[0;31mTypeError\u001b[0m Traceback (most recent call last)",
- "Cell \u001b[0;32mIn[23], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[38;5;124;43m'\u001b[39;49m\u001b[38;5;124;43mThe year is\u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[43m \u001b[49m\u001b[38;5;241;43m+\u001b[39;49m\u001b[43m \u001b[49m\u001b[38;5;241;43m2020\u001b[39;49m\n",
- "\u001b[0;31mTypeError\u001b[0m: can only concatenate str (not \"int\") to str"
- ]
- }
- ],
- "source": [
- "'The year is' + 2020"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 24,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "False"
- ]
- },
- "execution_count": 24,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "'apple' == 'Apple'"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 25,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "True"
- ]
- },
- "execution_count": 25,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "'apple' != 'Apple'"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 26,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "False"
- ]
- },
- "execution_count": 26,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "'20' == 20"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 29,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "'a'"
- ]
- },
- "execution_count": 29,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "first_name = 'Ada'\n",
- "last_name = 'Lovelace'\n",
- "\n",
- "first_name[2]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 31,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "'e'"
- ]
- },
- "execution_count": 31,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "last_name[3]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 32,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "'A'"
- ]
- },
- "execution_count": 32,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "first_name[0:1]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 33,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "'ela'"
- ]
- },
- "execution_count": 33,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "last_name[3:6]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "# strings in Python are zero-indexed (means first letter is at index 0, not 1)\n",
- "# slices do not include the character at the ending index position"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 34,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "'555'"
- ]
- },
- "execution_count": 34,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "phone_number = '+1 555-123-4567'\n",
- "\n",
- "phone_number[3:6]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 35,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "'123'"
- ]
- },
- "execution_count": 35,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "phone_number[7:10]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 37,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "'23-4567'"
- ]
- },
- "execution_count": 37,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "phone_number[8:]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 38,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "'4567'"
- ]
- },
- "execution_count": 38,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "phone_number[-4:]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 45,
- "metadata": {},
- "outputs": [],
- "source": [
- "job_qualifications = \"The successful applicant will be proficient in R, Python, SQL, statistics, and data visualization.\""
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 40,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "True"
- ]
- },
- "execution_count": 40,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "'R' in job_qualifications"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 46,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "False"
- ]
- },
- "execution_count": 46,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "' r' in job_qualifications"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 47,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "False"
- ]
- },
- "execution_count": 47,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "'JavaScript' in job_qualifications"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "1 fish 2.0 fish\n"
- ]
- }
- ],
- "source": [
- "# strings and functions\n",
- "\n",
- "print(1, 'fish', 2.0, 'fish')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 50,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "69"
- ]
- },
- "execution_count": 50,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "len(\"Sometimes we have a super long string just to meet a character count!\")"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 58,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "['a', 'a', 'a', 'b', 'n', 'n']"
- ]
- },
- "execution_count": 58,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "# this will be helpful for the assignment!\n",
- "\n",
- "sorted('banana')\n"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 51,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "'I AM NOT YELLING'"
- ]
- },
- "execution_count": 51,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "# string methods\n",
- "\n",
- "'I am not yelling'.upper()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 53,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "3"
- ]
- },
- "execution_count": 53,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "'This string is unusualeee'.count('e')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 55,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "False"
- ]
- },
- "execution_count": 55,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "'file_name.docx'.endswith('.csv')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 56,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "'long_file_name_with_spaces.csv'"
- ]
- },
- "execution_count": 56,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "'long file name with spaces.csv'.replace(' ', '_')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 59,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "\"Ada Lovelace's initials are A. L.\""
- ]
- },
- "execution_count": 59,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "# .format()\n",
- "\n",
- "first_name = 'Ada'\n",
- "last_name = 'Lovelace'\n",
- "\n",
- "'Ada Lovelace\\'s initials are {}. {}.'.format(first_name[0], last_name[0])"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 60,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "\"Ada Lovelace's initials are A. L.\""
- ]
- },
- "execution_count": 60,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "# f-string\n",
- "\n",
- "f'Ada Lovelace\\'s initials are {first_name[0]}. {last_name[0]}.'"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 63,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "'My favourite vegetable is 13'"
- ]
- },
- "execution_count": 63,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "'My favourite vegetable is {}'.format(13)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 64,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "'My favourite vegetable is 13'"
- ]
- },
- "execution_count": 64,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "f\"My favourite vegetable is {13}\""
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 65,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "17"
- ]
- },
- "execution_count": 65,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "int('17')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 66,
- "metadata": {},
- "outputs": [
- {
- "ename": "ValueError",
- "evalue": "invalid literal for int() with base 10: '17.4'",
- "output_type": "error",
- "traceback": [
- "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
- "\u001b[0;31mValueError\u001b[0m Traceback (most recent call last)",
- "Cell \u001b[0;32mIn[66], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[38;5;28;43mint\u001b[39;49m\u001b[43m(\u001b[49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[38;5;124;43m17.4\u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[43m)\u001b[49m\n",
- "\u001b[0;31mValueError\u001b[0m: invalid literal for int() with base 10: '17.4'"
- ]
- }
- ],
- "source": [
- "int('17.4')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 67,
- "metadata": {},
- "outputs": [
- {
- "ename": "ValueError",
- "evalue": "invalid literal for int() with base 10: 'me'",
- "output_type": "error",
- "traceback": [
- "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
- "\u001b[0;31mValueError\u001b[0m Traceback (most recent call last)",
- "Cell \u001b[0;32mIn[67], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[38;5;28;43mint\u001b[39;49m\u001b[43m(\u001b[49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[38;5;124;43mme\u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[43m)\u001b[49m\n",
- "\u001b[0;31mValueError\u001b[0m: invalid literal for int() with base 10: 'me'"
- ]
- }
- ],
- "source": [
- "int('me')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 68,
- "metadata": {},
- "outputs": [
- {
- "ename": "ValueError",
- "evalue": "could not convert string to float: 'you'",
- "output_type": "error",
- "traceback": [
- "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
- "\u001b[0;31mValueError\u001b[0m Traceback (most recent call last)",
- "Cell \u001b[0;32mIn[68], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[38;5;28;43mfloat\u001b[39;49m\u001b[43m(\u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43myou\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m)\u001b[49m\n",
- "\u001b[0;31mValueError\u001b[0m: could not convert string to float: 'you'"
- ]
- }
- ],
- "source": [
- "float(\"you\")"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 69,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "892.0"
- ]
- },
- "execution_count": 69,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "float(\"892\")"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 1,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "'37.5'"
- ]
- },
- "execution_count": 1,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "str(37.5)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 2,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "'20'"
- ]
- },
- "execution_count": 2,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "str(20)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 4,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "'2037.5'"
- ]
- },
- "execution_count": 4,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "'20' + str(37.5)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 11,
- "metadata": {},
- "outputs": [],
- "source": [
- "age = input(\"How old are you? \")"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 12,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "'1000'"
- ]
- },
- "execution_count": 12,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "age"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 9,
- "metadata": {},
- "outputs": [],
- "source": [
- "age_next_bday = int(age) + 1"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 10,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "1001"
- ]
- },
- "execution_count": 10,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "age_next_bday"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 13,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "True"
- ]
- },
- "execution_count": 13,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "5 > 3"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "# not -> negates the truth value of the statement\n",
- "# and -> check if the statements on both sides are true\n",
- "# or -> check if at least one of the states are true"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## `not`\n",
- "\n",
- "|X|`not` X|\n",
- "|-|-|\n",
- "|True|False|\n",
- "|False|True|"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 14,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "False"
- ]
- },
- "execution_count": 14,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "not True"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 15,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "True"
- ]
- },
- "execution_count": 15,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "not False"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 16,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "True"
- ]
- },
- "execution_count": 16,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "3 == 3"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 17,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "False"
- ]
- },
- "execution_count": 17,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "not (3 == 3)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 19,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "False"
- ]
- },
- "execution_count": 19,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "5 >= 10"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 20,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "True"
- ]
- },
- "execution_count": 20,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "not (5 >= 10)"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## `and`\n",
- "\n",
- "Evaluates to `True` if both statements are true.\n",
- "\n",
- "|X|Y|X `and` Y|\n",
- "|-|-|-|\n",
- "|True|True|True|\n",
- "|False|True|False|\n",
- "|True|False|False|\n",
- "|False|False|False|"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 22,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "True"
- ]
- },
- "execution_count": 22,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "(7 == 7) and (32 > 0)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 23,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "False"
- ]
- },
- "execution_count": 23,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "(7 == 8) and (32 > 0)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 24,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "False"
- ]
- },
- "execution_count": 24,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "(7 == 7) and (-32 > 0)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 25,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "False"
- ]
- },
- "execution_count": 25,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "(7 == 8) and (-32 > 0)"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## To avoid confusion and ensure consistent behaviour, it's recommended to use boolean values (`True` or `False`) explicitly when working with logical operations to ensure predictable outcomes based on boolean logic."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 29,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "True"
- ]
- },
- "execution_count": 29,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "is_winter = \"winter\" # string with the value \"True\"\n",
- "is_cloudy = True # boolean with the value True\n",
- "\n",
- "is_winter and is_cloudy"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 30,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "'winter'"
- ]
- },
- "execution_count": 30,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "# return the first falsy value encountered or the last truthy value if all operands are true based on the conditions provided\n",
- "\n",
- "is_cloudy and is_winter"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 31,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "'python'"
- ]
- },
- "execution_count": 31,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "\"Python\" and \"python\""
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 34,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "False"
- ]
- },
- "execution_count": 34,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "('python' == 'python') and ('DOG' == 'dog')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 32,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "True"
- ]
- },
- "execution_count": 32,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "('python' == 'python')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 33,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "False"
- ]
- },
- "execution_count": 33,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "('DOG' == 'dog')"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## `or`\n",
- "\n",
- "Evaluates to `True` if just one of the statements is true.\n",
- "\n",
- "|X|Y|X `or` Y|\n",
- "|-|-|-|\n",
- "|True|True|True|\n",
- "|False|True|True|\n",
- "|True|False|True|\n",
- "|False|False|False|"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 35,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "True"
- ]
- },
- "execution_count": 35,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "(7 == 7) or (32 > 0)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 36,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "True"
- ]
- },
- "execution_count": 36,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "(7 == 8) or (32 > 0)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 37,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "True"
- ]
- },
- "execution_count": 37,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "(7 == 7) or (-32 > 0)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 38,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "False"
- ]
- },
- "execution_count": 38,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "(7 == 8) or (-32 > 0)"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## Operator precedence\n",
- "\n",
- "Boolean operators are evaluated after arithmetic and comparison operators.\n",
- "\n",
- "| Order | Operator | Description |\n",
- "|---|---|---|\n",
- "| 1 | `**` | Exponentiation |\n",
- "| 2 | `-`| Negation |\n",
- "| 3 | `*`, `/`, `//`, `%` | Multiplication, division, integer division, and modulo |\n",
- "| 4 | `+`, `-` | Addition and subtraction |\n",
- "| 5 | `<`, `<=`, `>`, `>=`, `==`, `!=` | Less than, less than or equal to, greater than, greater than or equal to, equal, not equal |\n",
- "| 6 | `not` | Not |\n",
- "| 7 | `and` | And |\n",
- "| 8 | `or` | Or|"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 39,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "False"
- ]
- },
- "execution_count": 39,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "not(7 % 2 == 1) or False"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 40,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "1"
- ]
- },
- "execution_count": 40,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "7 % 2"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 43,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "False"
- ]
- },
- "execution_count": 43,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "not(7 % 2 == 1) or False"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "True"
- ]
- },
- "execution_count": 45,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "# False or True -> True\n",
- "(7 == 3) or (8 == 8)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 46,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "False"
- ]
- },
- "execution_count": 46,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "(7 == 3) and (8 == 8)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 50,
- "metadata": {},
- "outputs": [],
- "source": [
- "year = 1990\n",
- "\n",
- "if year >= 2000:\n",
- " print('We are in the 21st century.')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 52,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "We are in the 21st century.\n"
- ]
- }
- ],
- "source": [
- "year = 2002\n",
- "\n",
- "if year >= 2000:\n",
- " print('We are in the 21st century.')\n",
- "else:\n",
- " print('We are not in the 21st century.')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 57,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "We have gone wayyyyy back in time!\n"
- ]
- }
- ],
- "source": [
- "year = 1600\n",
- "\n",
- "if year >= 2000:\n",
- " print('We are in the 21st century.')\n",
- "elif year >= 1900:\n",
- " print('We are in the 20th century.')\n",
- "elif year >= 1800:\n",
- " print('We are in the 19th century.')\n",
- "elif year >= 1700:\n",
- " print('We are in the 18th century.')\n",
- "else:\n",
- " print('We have gone wayyyyy back in time!')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 59,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "Weekend\n"
- ]
- }
- ],
- "source": [
- "day_of_week = 'Saturday'\n",
- "\n",
- "if day_of_week == 'Saturday' or day_of_week == 'Sunday':\n",
- " print('Weekend')\n",
- "else:\n",
- " print('Weekday')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 60,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "True"
- ]
- },
- "execution_count": 60,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "day_of_week == 'Saturday'"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 61,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "False"
- ]
- },
- "execution_count": 61,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "day_of_week == 'Sunday'"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 71,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "wrong\n"
- ]
- }
- ],
- "source": [
- "age = input(\"What is your age? \")\n",
- "if type(age) == str:\n",
- " print('wrong')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 73,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "str"
- ]
- },
- "execution_count": 73,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "type(age)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 64,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "'700'"
- ]
- },
- "execution_count": 64,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "age"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 67,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "750"
- ]
- },
- "execution_count": 67,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "int(age) + 50"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 68,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "700"
- ]
- },
- "execution_count": 68,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "int(age)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": []
- }
- ],
- "metadata": {
- "kernelspec": {
- "display_name": "dsi_participant",
- "language": "python",
- "name": "python3"
- },
- "language_info": {
- "codemirror_mode": {
- "name": "ipython",
- "version": 3
- },
- "file_extension": ".py",
- "mimetype": "text/x-python",
- "name": "python",
- "nbconvert_exporter": "python",
- "pygments_lexer": "ipython3",
- "version": "3.11.8"
- }
- },
- "nbformat": 4,
- "nbformat_minor": 2
-}
diff --git a/04_this_cohort/live_code/11_30_2024.ipynb b/04_this_cohort/live_code/11_30_2024.ipynb
deleted file mode 100644
index 14eb72740..000000000
--- a/04_this_cohort/live_code/11_30_2024.ipynb
+++ /dev/null
@@ -1,2598 +0,0 @@
-{
- "cells": [
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "def eye_exam_covered(age, qualifying_condition, time_since_last_exam):\n",
- " if age <= 19:\n",
- " if time_since_last_exam >= 12:\n",
- " return \"You are eligible for 1 major eye exam and any minor assessments\"\n",
- " else:\n",
- " return \"It hasn't been 12 months since your last major eye exam.\"\n",
- " elif 20 <= age <= 64:\n",
- " if qualifying_condition:\n",
- " if time_since_last_exam >= 12:\n",
- " return \"You are eligible for 1 major eye exam and 2 additional follow-up minor assessments\"\n",
- " else:\n",
- " return \"It hasn't been 12 months since your last major eye exam.\"\n",
- " else:\n",
- " return \"You do not have an eligible medical condition affecting your eyes.\"\n",
- " elif age >= 65:\n",
- " if time_since_last_exam >= 18:\n",
- " return \"You are elgible for 1 major eye exam and 2 additional follow-up minor assessments.\"\n",
- " else:\n",
- " return \"It hasn't been 18 months since your last major eye exam.\"\n",
- " else:\n",
- " return \"Invalid age input.\""
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 10,
- "metadata": {},
- "outputs": [],
- "source": [
- "eye_exam_output = eye_exam_covered(15, False, 13)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 11,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "'You are eligible for 1 major eye exam and any minor assessments'"
- ]
- },
- "execution_count": 11,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "eye_exam_output"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 12,
- "metadata": {},
- "outputs": [],
- "source": [
- "eye_exam_output = eye_exam_covered(27, False, 24)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 13,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "'You do not have an eligible medical condition affecting your eyes.'"
- ]
- },
- "execution_count": 13,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "eye_exam_output"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 15,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "Here are some vowels: ['a', 'e', 'i', 'o', 'u']\n"
- ]
- }
- ],
- "source": [
- "vowels = ['a', 'e', 'i', 'o', 'u']\n",
- "print(f'Here are some vowels: {vowels}')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 16,
- "metadata": {},
- "outputs": [],
- "source": [
- "# create an empty list the conventional way\n",
- "empty_list = []\n",
- "\n",
- "# this also works\n",
- "empty_list2 = list()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 17,
- "metadata": {},
- "outputs": [],
- "source": [
- "scores = [90, 80, 82, 91, 80]\n",
- "grades = ['K', 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]\n",
- "summary_function = [len, sum, max, min]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 18,
- "metadata": {},
- "outputs": [],
- "source": [
- "mystery_solvers =[\n",
- " ['Sherlock', 'Watson'],\n",
- " ['Scooby', 'Shaggy', 'Fred', 'Velma', 'Daphne'],\n",
- " 'Nancy'\n",
- "]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 20,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "['K', 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]"
- ]
- },
- "execution_count": 20,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "grades"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 44,
- "metadata": {},
- "outputs": [],
- "source": [
- "# lists are ordered -> means that each item in a list can be referenced by its index,\n",
- "# or position, in the list"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 21,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "'K'"
- ]
- },
- "execution_count": 21,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "grades[0]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 22,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "6"
- ]
- },
- "execution_count": 22,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "grades[6]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 23,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "[6, 7, 8]"
- ]
- },
- "execution_count": 23,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "grades[6:9]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 24,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "9"
- ]
- },
- "execution_count": 24,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "grades[-4]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 25,
- "metadata": {},
- "outputs": [
- {
- "ename": "IndexError",
- "evalue": "list index out of range",
- "output_type": "error",
- "traceback": [
- "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
- "\u001b[0;31mIndexError\u001b[0m Traceback (most recent call last)",
- "Cell \u001b[0;32mIn[25], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[43mgrades\u001b[49m\u001b[43m[\u001b[49m\u001b[38;5;241;43m13\u001b[39;49m\u001b[43m]\u001b[49m\n",
- "\u001b[0;31mIndexError\u001b[0m: list index out of range"
- ]
- }
- ],
- "source": [
- "grades[13]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 26,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "[['Sherlock', 'Watson'],\n",
- " ['Scooby', 'Shaggy', 'Fred', 'Velma', 'Daphne'],\n",
- " 'Nancy']"
- ]
- },
- "execution_count": 26,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "mystery_solvers"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 27,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "['Sherlock', 'Watson']"
- ]
- },
- "execution_count": 27,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "mystery_solvers[0]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 28,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "['Scooby', 'Shaggy', 'Fred', 'Velma', 'Daphne']"
- ]
- },
- "execution_count": 28,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "mystery_solvers[1]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 30,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "'Nancy'"
- ]
- },
- "execution_count": 30,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "mystery_solvers[2]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 32,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "'Sherlock'"
- ]
- },
- "execution_count": 32,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "mystery_solvers[0][0]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 33,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "[['Sherlock', 'Watson'],\n",
- " ['Scooby', 'Shaggy', 'Fred', 'Velma', 'Daphne'],\n",
- " 'Nancy']"
- ]
- },
- "execution_count": 33,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "mystery_solvers[:]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 34,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "['K', 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]"
- ]
- },
- "execution_count": 34,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "grades"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 39,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "['K', 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]"
- ]
- },
- "execution_count": 39,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "grades[::]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 40,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "['a', 'e', 'i', 'o', 'u']"
- ]
- },
- "execution_count": 40,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "vowels "
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 42,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "False"
- ]
- },
- "execution_count": 42,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "'k' in vowels"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 45,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "[1, 4, 9, 16, 27, 36, 49]"
- ]
- },
- "execution_count": 45,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "# lists are mutable -> means they can be modified in place\n",
- "\n",
- "perfect_squares = [1, 4, 9, 16, 27, 37, 49]\n",
- "perfect_squares[5] = 36\n",
- "perfect_squares"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 46,
- "metadata": {},
- "outputs": [],
- "source": [
- "a = 1\n",
- "b = a"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 47,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "1"
- ]
- },
- "execution_count": 47,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "b"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 50,
- "metadata": {},
- "outputs": [],
- "source": [
- "a = 2"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 51,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "2"
- ]
- },
- "execution_count": 51,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "a"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 52,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "1"
- ]
- },
- "execution_count": 52,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "b"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 53,
- "metadata": {},
- "outputs": [],
- "source": [
- "a = 1"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 54,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "1"
- ]
- },
- "execution_count": 54,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "a"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 55,
- "metadata": {},
- "outputs": [],
- "source": [
- "b = a"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 56,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "1"
- ]
- },
- "execution_count": 56,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "b"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 57,
- "metadata": {},
- "outputs": [],
- "source": [
- "a = 2"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 58,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "2"
- ]
- },
- "execution_count": 58,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "a"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "1"
- ]
- },
- "execution_count": 59,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "b"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 60,
- "metadata": {},
- "outputs": [],
- "source": [
- "# immutable \n",
- "\n",
- "moniz = 'cheese sandwich' \n",
- "kaylie = moniz"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 61,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "'cheese sandwich'"
- ]
- },
- "execution_count": 61,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "moniz"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 62,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "'cheese sandwich'"
- ]
- },
- "execution_count": 62,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "kaylie"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 63,
- "metadata": {},
- "outputs": [],
- "source": [
- "moniz = 'ham sandwich'"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 64,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "'ham sandwich'"
- ]
- },
- "execution_count": 64,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "moniz"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 65,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "'cheese sandwich'"
- ]
- },
- "execution_count": 65,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "kaylie"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 66,
- "metadata": {},
- "outputs": [],
- "source": [
- "# mutable\n",
- "\n",
- "moniz = ['bread', 'cheese', 'bread']\n",
- "kaylie = moniz"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 67,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "['bread', 'cheese', 'bread']"
- ]
- },
- "execution_count": 67,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "moniz"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 68,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "['bread', 'cheese', 'bread']"
- ]
- },
- "execution_count": 68,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "kaylie"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 69,
- "metadata": {},
- "outputs": [],
- "source": [
- "moniz[1] = 'ham'"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 70,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "['bread', 'ham', 'bread']"
- ]
- },
- "execution_count": 70,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "moniz"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 71,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "['bread', 'ham', 'bread']"
- ]
- },
- "execution_count": 71,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "kaylie"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 72,
- "metadata": {},
- "outputs": [],
- "source": [
- "a = 1\n",
- "b = a"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 73,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "1"
- ]
- },
- "execution_count": 73,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "a"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 74,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "1"
- ]
- },
- "execution_count": 74,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "b"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 75,
- "metadata": {},
- "outputs": [],
- "source": [
- "a = 2"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 76,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "2"
- ]
- },
- "execution_count": 76,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "a"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 77,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "1"
- ]
- },
- "execution_count": 77,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "b"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 78,
- "metadata": {},
- "outputs": [],
- "source": [
- "a = [1, 2]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 79,
- "metadata": {},
- "outputs": [],
- "source": [
- "b = a"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 80,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "[1, 2]"
- ]
- },
- "execution_count": 80,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "a"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 81,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "[1, 2]"
- ]
- },
- "execution_count": 81,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "b"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 82,
- "metadata": {},
- "outputs": [],
- "source": [
- "a[0] = 6"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 83,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "[6, 2]"
- ]
- },
- "execution_count": 83,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "a"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 84,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "[6, 2]"
- ]
- },
- "execution_count": 84,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "b"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 85,
- "metadata": {},
- "outputs": [],
- "source": [
- "# making an independent copy of a list\n",
- "\n",
- "combo = ['burger', 'fries', 'drink']\n",
- "kid_meal = list(combo)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 86,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "['burger', 'fries', 'drink']"
- ]
- },
- "execution_count": 86,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "combo"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 87,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "['burger', 'fries', 'drink']"
- ]
- },
- "execution_count": 87,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "kid_meal"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 88,
- "metadata": {},
- "outputs": [],
- "source": [
- "combo[0] = 'chicken sandwich'"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 89,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "['burger', 'fries', 'drink']"
- ]
- },
- "execution_count": 89,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "kid_meal"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 90,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "[1, 4, 9, 16, 27, 36, 49]"
- ]
- },
- "execution_count": 90,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "perfect_squares"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 91,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "7"
- ]
- },
- "execution_count": 91,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "len(perfect_squares)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 92,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "49"
- ]
- },
- "execution_count": 92,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "max(perfect_squares)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 93,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "142"
- ]
- },
- "execution_count": 93,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "sum(perfect_squares)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 94,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "142"
- ]
- },
- "execution_count": 94,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "1 + 4 + 9 + 16 + 27 + 36 + 49"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 95,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "['a', 'b', 'c', 1, 2, 3]"
- ]
- },
- "execution_count": 95,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "letters = ['a', 'b', 'c']\n",
- "numbers = [1, 2, 3]\n",
- "characters = letters + numbers\n",
- "characters"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 96,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "['a', 'b', 'c', 'a', 'b', 'c']"
- ]
- },
- "execution_count": 96,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "letters * 2"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 97,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "[1, 2, 3, 1, 2, 3, 1, 2, 3]"
- ]
- },
- "execution_count": 97,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "numbers * 3"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 99,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "[1, 4, 9, 16, 27, 36, 49]"
- ]
- },
- "execution_count": 99,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "perfect_squares"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 100,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "['a', 'b', 'c']"
- ]
- },
- "execution_count": 100,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "letters"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 101,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "[1, 2, 3]"
- ]
- },
- "execution_count": 101,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "numbers"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 102,
- "metadata": {},
- "outputs": [],
- "source": [
- "# append() is used to add a single element to the end of a list\n",
- "# it takes an argument and adds that element to the end of the list, \n",
- "# if the element is another list, it will be added as a single element\n",
- "\n",
- "\n",
- "list1 = [1, 2, 3]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 103,
- "metadata": {},
- "outputs": [],
- "source": [
- "list1.append(4)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 104,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "[1, 2, 3, 4]"
- ]
- },
- "execution_count": 104,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "list1"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 105,
- "metadata": {},
- "outputs": [],
- "source": [
- "list2 = [5, 6, 7]\n",
- "list1.append(list2)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 106,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "[1, 2, 3, 4, [5, 6, 7]]"
- ]
- },
- "execution_count": 106,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "list1"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 110,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "[1, 2, 3, 4, 5, 6]"
- ]
- },
- "execution_count": 110,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "# extend() is used to add elements from an iterable to the end of a list\n",
- "# unpacks the elements of the iterable and add them one by one to the end of the original\n",
- "# list\n",
- "\n",
- "list1 = [1, 2, 3]\n",
- "list2 = [4, 5, 6]\n",
- "list1.extend(list2)\n",
- "list1"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 111,
- "metadata": {},
- "outputs": [],
- "source": [
- "rainbow = ['red', 'orange', 'yellow', 'green', 'light blue', 'blue', 'violet']"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 112,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "['red', 'orange', 'yellow', 'green', 'light blue', 'blue', 'violet', 'purple']"
- ]
- },
- "execution_count": 112,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "rainbow.append('purple')\n",
- "rainbow"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 113,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "['red',\n",
- " 'orange',\n",
- " 'yellow',\n",
- " 'green',\n",
- " 'light blue',\n",
- " 'blue',\n",
- " 'violet',\n",
- " 'purple',\n",
- " ['purple']]"
- ]
- },
- "execution_count": 113,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "rainbow.append(['purple'])\n",
- "rainbow"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 114,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "['red',\n",
- " 'orange',\n",
- " 'yellow',\n",
- " 'green',\n",
- " 'light blue',\n",
- " 'blue',\n",
- " 'violet',\n",
- " 'purple',\n",
- " ['purple'],\n",
- " 'magenta',\n",
- " 'pink']"
- ]
- },
- "execution_count": 114,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "rainbow.extend(['magenta', 'pink'])\n",
- "rainbow"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 115,
- "metadata": {},
- "outputs": [],
- "source": [
- "rainbow.extend('pale pink')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 116,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "['red',\n",
- " 'orange',\n",
- " 'yellow',\n",
- " 'green',\n",
- " 'light blue',\n",
- " 'blue',\n",
- " 'violet',\n",
- " 'purple',\n",
- " ['purple'],\n",
- " 'magenta',\n",
- " 'pink',\n",
- " 'p',\n",
- " 'a',\n",
- " 'l',\n",
- " 'e',\n",
- " ' ',\n",
- " 'p',\n",
- " 'i',\n",
- " 'n',\n",
- " 'k']"
- ]
- },
- "execution_count": 116,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "rainbow"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 117,
- "metadata": {},
- "outputs": [
- {
- "ename": "TypeError",
- "evalue": "'float' object is not iterable",
- "output_type": "error",
- "traceback": [
- "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
- "\u001b[0;31mTypeError\u001b[0m Traceback (most recent call last)",
- "Cell \u001b[0;32mIn[117], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[43mrainbow\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mextend\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m2.3\u001b[39;49m\u001b[43m)\u001b[49m\n",
- "\u001b[0;31mTypeError\u001b[0m: 'float' object is not iterable"
- ]
- }
- ],
- "source": [
- "rainbow.extend(2.3)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 118,
- "metadata": {},
- "outputs": [],
- "source": [
- "new_rainbow = rainbow.append('dark purple')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 120,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "None\n"
- ]
- }
- ],
- "source": [
- "print(new_rainbow)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 121,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "['red',\n",
- " 'orange',\n",
- " 'yellow',\n",
- " 'green',\n",
- " 'light blue',\n",
- " 'blue',\n",
- " 'violet',\n",
- " 'purple',\n",
- " ['purple'],\n",
- " 'magenta',\n",
- " 'pink',\n",
- " 'p',\n",
- " 'a',\n",
- " 'l',\n",
- " 'e',\n",
- " ' ',\n",
- " 'p',\n",
- " 'i',\n",
- " 'n',\n",
- " 'k',\n",
- " 'dark purple']"
- ]
- },
- "execution_count": 121,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "rainbow"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 122,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "['red',\n",
- " 'orange',\n",
- " 'yellow',\n",
- " 'green',\n",
- " 'light blue',\n",
- " 'blue',\n",
- " 'indigo',\n",
- " 'violet',\n",
- " 'purple',\n",
- " ['purple'],\n",
- " 'magenta',\n",
- " 'pink',\n",
- " 'p',\n",
- " 'a',\n",
- " 'l',\n",
- " 'e',\n",
- " ' ',\n",
- " 'p',\n",
- " 'i',\n",
- " 'n',\n",
- " 'k',\n",
- " 'dark purple']"
- ]
- },
- "execution_count": 122,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "rainbow.insert(6, 'indigo')\n",
- "rainbow"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 123,
- "metadata": {},
- "outputs": [],
- "source": [
- "rainbow.remove('p')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 124,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "['red',\n",
- " 'orange',\n",
- " 'yellow',\n",
- " 'green',\n",
- " 'light blue',\n",
- " 'blue',\n",
- " 'indigo',\n",
- " 'violet',\n",
- " 'purple',\n",
- " ['purple'],\n",
- " 'magenta',\n",
- " 'pink',\n",
- " 'a',\n",
- " 'l',\n",
- " 'e',\n",
- " ' ',\n",
- " 'p',\n",
- " 'i',\n",
- " 'n',\n",
- " 'k',\n",
- " 'dark purple']"
- ]
- },
- "execution_count": 124,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "rainbow"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 125,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "['red', 'orange', 'yellow', 'green', 'light blue', 'blue', 'indigo', 'violet']"
- ]
- },
- "execution_count": 125,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "del rainbow[-13:]\n",
- "rainbow"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 126,
- "metadata": {},
- "outputs": [],
- "source": [
- "rainbow.clear()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 127,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "[]"
- ]
- },
- "execution_count": 127,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "rainbow"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 129,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "[9, 9]"
- ]
- },
- "execution_count": 129,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "rainbow.insert(1, 9)\n",
- "rainbow"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 130,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "['K', 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]"
- ]
- },
- "execution_count": 130,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "grades"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 131,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "4"
- ]
- },
- "execution_count": 131,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "grades[4]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "# by default, numerical data types (ints and floats) are sorted in ascending order\n",
- "# strings are sorted alphabetically based on the Unicode code point value of each character\n",
- "# uppercase letters come before lower case letters\n",
- "# 'A' (65) 'a' (97)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "['bell pepper', 'cabbage', 'celery', 'onion', 'potato']"
- ]
- },
- "execution_count": 132,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "# typically functions will take a value and return a new value\n",
- "# take a list as an argument and return a new list with sorted values\n",
- "\n",
- "veggies = ['potato', 'celery', 'cabbage', 'bell pepper', 'onion']\n",
- "sorted(veggies)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 135,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "['potato', 'celery', 'cabbage', 'bell pepper', 'onion']"
- ]
- },
- "execution_count": 135,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "veggies"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 133,
- "metadata": {},
- "outputs": [],
- "source": [
- "# typically methods will modify the value in place\n",
- "# take a list and reorder its values in place and return None\n",
- "\n",
- "fruits = ['pineapple', 'apple', 'kiwi', 'banana']\n",
- "fruits.sort()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 134,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "['apple', 'banana', 'kiwi', 'pineapple']"
- ]
- },
- "execution_count": 134,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "fruits"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 136,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "['cabbage', 'onion', 'potato', 'bell pepper', 'celery']"
- ]
- },
- "execution_count": 136,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "def last_letter(text):\n",
- " output = text[-1]\n",
- " return output\n",
- "\n",
- "sorted(veggies, key=last_letter)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 137,
- "metadata": {},
- "outputs": [],
- "source": [
- "students_per_class = [['Grade 9', 20], ['Grade 10', 17], ['Grade 11', 13], ['Grade 12', 22]]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 138,
- "metadata": {},
- "outputs": [],
- "source": [
- "def second_element(item):\n",
- " output = item[1]\n",
- " return output"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 139,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "[['Grade 11', 13], ['Grade 10', 17], ['Grade 9', 20], ['Grade 12', 22]]"
- ]
- },
- "execution_count": 139,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "students_per_class.sort(key=second_element)\n",
- "students_per_class"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "('changeable', 'fluctuating', 'inconstant', 'variable')"
- ]
- },
- "execution_count": 140,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "mutable_synonyms = ('changeable', 'fluctuating', 'inconstant', 'variable')\n",
- "mutable_synonyms"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "# conventional way to create an empty tuple\n",
- "empty = ()\n",
- "\n",
- "# can also make an empty tuple\n",
- "also_tuple = tuple()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 141,
- "metadata": {},
- "outputs": [
- {
- "ename": "NameError",
- "evalue": "name 'empty' is not defined",
- "output_type": "error",
- "traceback": [
- "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
- "\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)",
- "Cell \u001b[0;32mIn[141], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[43mempty\u001b[49m\u001b[38;5;241m.\u001b[39mappend(\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mhi\u001b[39m\u001b[38;5;124m'\u001b[39m)\n",
- "\u001b[0;31mNameError\u001b[0m: name 'empty' is not defined"
- ]
- }
- ],
- "source": [
- "empty.append('hi')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 143,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "('changeable', 'fluctuating', 'inconstant', 'variable')"
- ]
- },
- "execution_count": 143,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "mutable_synonyms"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 142,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "4"
- ]
- },
- "execution_count": 142,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "len(mutable_synonyms)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 144,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "['changeable', 'fluctuating', 'inconstant', 'variable']"
- ]
- },
- "execution_count": 144,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "sorted(mutable_synonyms)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 145,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "('changeable',\n",
- " 'fluctuating',\n",
- " 'inconstant',\n",
- " 'variable',\n",
- " 'modifiable',\n",
- " 'shifting')"
- ]
- },
- "execution_count": 145,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "mutable_synonyms + ('modifiable', 'shifting')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 146,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "('changeable', 'fluctuating', 'inconstant', 'variable')"
- ]
- },
- "execution_count": 146,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "mutable_synonyms"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 147,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "{'apple', 'book', 'box', 'coat', 'hair', 'lock', 'xylophone'}"
- ]
- },
- "execution_count": 147,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "# lists are ordered and mutable []\n",
- "# tuples are ordered and immutable ()\n",
- "# sets are unordered and distinct, and are mutable {}\n",
- "\n",
- "# unordered -> the elements do not maintain any specific order\n",
- "# distinct -> all elements are unique\n",
- "\n",
- "things = {'coat', 'lock', 'box', 'book', 'apple', 'hair', 'xylophone', 'lock', 'book'}\n",
- "things"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 149,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "{'M1M', 'M1T', 'M5R', 'M5V'}"
- ]
- },
- "execution_count": 149,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "visitor_post_codes = ['M5R', 'M5V', 'M1M', 'M1M', 'M1T']\n",
- "set(visitor_post_codes)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 150,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "set()"
- ]
- },
- "execution_count": 150,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "# create an empty set\n",
- "empty_set = set()\n",
- "empty_set"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 151,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "{'apple', 'book', 'box', 'coat', 'hair', 'lock', 'xylophone'}"
- ]
- },
- "execution_count": 151,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "things"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 152,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "True"
- ]
- },
- "execution_count": 152,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "'lock' in things"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 153,
- "metadata": {},
- "outputs": [],
- "source": [
- "things.add('lock')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 154,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "{'apple', 'book', 'box', 'coat', 'hair', 'lock', 'xylophone'}"
- ]
- },
- "execution_count": 154,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "things"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 155,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "{'apple', 'book', 'box', 'coat', 'hair', 'lock', 'mirror', 'xylophone'}"
- ]
- },
- "execution_count": 155,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "things.add('mirror')\n",
- "things"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 156,
- "metadata": {},
- "outputs": [],
- "source": [
- "things.remove('apple')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 157,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "{'book', 'box', 'coat', 'hair', 'lock', 'mirror', 'xylophone'}"
- ]
- },
- "execution_count": 157,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "things"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 158,
- "metadata": {},
- "outputs": [
- {
- "ename": "TypeError",
- "evalue": "'set' object is not subscriptable",
- "output_type": "error",
- "traceback": [
- "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
- "\u001b[0;31mTypeError\u001b[0m Traceback (most recent call last)",
- "Cell \u001b[0;32mIn[158], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[43mthings\u001b[49m\u001b[43m[\u001b[49m\u001b[38;5;241;43m1\u001b[39;49m\u001b[43m]\u001b[49m\n",
- "\u001b[0;31mTypeError\u001b[0m: 'set' object is not subscriptable"
- ]
- }
- ],
- "source": [
- "things[1]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 159,
- "metadata": {},
- "outputs": [],
- "source": [
- "rainbow = {'red', 'orange', 'yellow', 'green', 'blue', 'indigo', 'violet'}\n",
- "olympic_flag = {'red', 'green', 'yellow', 'blue', 'black'}"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 160,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "{'indigo', 'orange', 'violet'}"
- ]
- },
- "execution_count": 160,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "# difference -> find the values in the first set that are not in the second\n",
- "\n",
- "rainbow.difference(olympic_flag)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 161,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "{'black'}"
- ]
- },
- "execution_count": 161,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "olympic_flag.difference(rainbow)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 162,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "{'black', 'indigo', 'orange', 'violet'}"
- ]
- },
- "execution_count": 162,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "# symmetric_difference -> find the values that are in only one of two sets\n",
- "rainbow.symmetric_difference(olympic_flag)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 163,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "{'blue', 'green', 'red', 'yellow'}"
- ]
- },
- "execution_count": 163,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "# intersection -> find the values that the two sets have in common\n",
- "rainbow.intersection(olympic_flag)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 164,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "{'black', 'blue', 'green', 'indigo', 'orange', 'red', 'violet', 'yellow'}"
- ]
- },
- "execution_count": 164,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "# union -> combines two sets to get the unique values in both\n",
- "rainbow.union(olympic_flag)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": []
- }
- ],
- "metadata": {
- "kernelspec": {
- "display_name": "dsi_participant",
- "language": "python",
- "name": "python3"
- },
- "language_info": {
- "codemirror_mode": {
- "name": "ipython",
- "version": 3
- },
- "file_extension": ".py",
- "mimetype": "text/x-python",
- "name": "python",
- "nbconvert_exporter": "python",
- "pygments_lexer": "ipython3",
- "version": "3.11.8"
- }
- },
- "nbformat": 4,
- "nbformat_minor": 2
-}
diff --git a/04_this_cohort/live_code/12_03_2024.ipynb b/04_this_cohort/live_code/12_03_2024.ipynb
deleted file mode 100644
index cc40e4333..000000000
--- a/04_this_cohort/live_code/12_03_2024.ipynb
+++ /dev/null
@@ -1,1079 +0,0 @@
-{
- "cells": [
- {
- "cell_type": "code",
- "execution_count": 1,
- "metadata": {},
- "outputs": [],
- "source": [
- "# lists [] -> mutable, ordered\n",
- "# tuples () -> immutable, ordered\n",
- "# sets {} -> mutable, unordered and distinct\n",
- "\n",
- "\n",
- "# dictionaries {} -> mutable, ordered, key:value pairs, every key is unique\n",
- "# keys can be any immutable data type, values can be any data type\n",
- "\n",
- "capitals = {'Canada': 'Ottawa',\n",
- " 'United States': 'Washington, D.C.',\n",
- " 'Mexico': 'Mexico City'}"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 2,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "{'Canada': 'Ottawa',\n",
- " 'United States': 'Washington, D.C.',\n",
- " 'Mexico': 'Mexico City'}"
- ]
- },
- "execution_count": 2,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "capitals"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 3,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "{2020: 'Tokyo', 2016: 'Rio de Janiero', 2012: 'London'}"
- ]
- },
- "execution_count": 3,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "olympic_cities = {2020: 'Tokyo', 2016: 'Rio de Janiero', 2012: 'London'}\n",
- "olympic_cities"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 4,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "{'summer': {2020: 'Tokyo', 2016: 'Rio de Janiero', 2012: 'London'},\n",
- " 'winter': {2022: 'Beijing', 2018: 'Pyeongchang'}}"
- ]
- },
- "execution_count": 4,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "all_olympics_hosts = {'summer': olympic_cities,\n",
- " 'winter': {2022: 'Beijing', 2018: 'Pyeongchang'}}\n",
- "all_olympics_hosts"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 5,
- "metadata": {},
- "outputs": [],
- "source": [
- "empty_dictionary = {} # this is the conventional method"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 6,
- "metadata": {},
- "outputs": [],
- "source": [
- "still_empty = dict() # this also works"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 7,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "{2020: 'Tokyo', 2016: 'Rio de Janiero', 2012: 'London'}"
- ]
- },
- "execution_count": 7,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "olympic_cities"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 8,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "'Rio de Janiero'"
- ]
- },
- "execution_count": 8,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "olympic_cities[2016]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 9,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "'London'"
- ]
- },
- "execution_count": 9,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "olympic_cities[2012]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 10,
- "metadata": {},
- "outputs": [
- {
- "ename": "KeyError",
- "evalue": "2014",
- "output_type": "error",
- "traceback": [
- "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
- "\u001b[0;31mKeyError\u001b[0m Traceback (most recent call last)",
- "Cell \u001b[0;32mIn[10], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[43molympic_cities\u001b[49m\u001b[43m[\u001b[49m\u001b[38;5;241;43m2014\u001b[39;49m\u001b[43m]\u001b[49m\n",
- "\u001b[0;31mKeyError\u001b[0m: 2014"
- ]
- }
- ],
- "source": [
- "olympic_cities[2014]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 11,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "{'summer': {2020: 'Tokyo', 2016: 'Rio de Janiero', 2012: 'London'},\n",
- " 'winter': {2022: 'Beijing', 2018: 'Pyeongchang'}}"
- ]
- },
- "execution_count": 11,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "all_olympics_hosts"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 12,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "{2020: 'Tokyo', 2016: 'Rio de Janiero', 2012: 'London'}"
- ]
- },
- "execution_count": 12,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "all_olympics_hosts['summer']"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 13,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "'Tokyo'"
- ]
- },
- "execution_count": 13,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "all_olympics_hosts['summer'][2020]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 14,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "{2020: 'Tokyo', 2016: 'Rio de Janiero', 2012: 'London'}"
- ]
- },
- "execution_count": 14,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "olympic_cities"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 15,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "'Athens'"
- ]
- },
- "execution_count": 15,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "olympic_cities.get(2004, 'Athens')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 16,
- "metadata": {},
- "outputs": [],
- "source": [
- "olympic_cities.get(2004)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 17,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "True"
- ]
- },
- "execution_count": 17,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "2016 in olympic_cities"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 18,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "False"
- ]
- },
- "execution_count": 18,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "2024 in olympic_cities"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 19,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "False"
- ]
- },
- "execution_count": 19,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "'Rio de Janiero' in olympic_cities"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 20,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "{2020: 'Tokyo', 2016: 'Rio de Janiero', 2012: 'London'}"
- ]
- },
- "execution_count": 20,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "olympic_cities"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 21,
- "metadata": {},
- "outputs": [],
- "source": [
- "olympic_cities[2008] = 'Barcelona'"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 22,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "{2020: 'Tokyo', 2016: 'Rio de Janiero', 2012: 'London', 2008: 'Barcelona'}"
- ]
- },
- "execution_count": 22,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "olympic_cities"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 23,
- "metadata": {},
- "outputs": [],
- "source": [
- "olympic_cities[2008] = 'Beijing'"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 24,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "{2020: 'Tokyo', 2016: 'Rio de Janiero', 2012: 'London', 2008: 'Beijing'}"
- ]
- },
- "execution_count": 24,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "olympic_cities"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 25,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "{2020: 'Tokyo', 2016: 'Rio de Janiero', 2012: 'London', 2008: 'Beijing'}"
- ]
- },
- "execution_count": 25,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "olympic_cities"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 26,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "{'summer': {2020: 'Tokyo',\n",
- " 2016: 'Rio de Janiero',\n",
- " 2012: 'London',\n",
- " 2008: 'Beijing'},\n",
- " 'winter': {2022: 'Beijing', 2018: 'Pyeongchang'}}"
- ]
- },
- "execution_count": 26,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "all_olympics_hosts"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 27,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "{2016: 'Rio de Janiero', 2012: 'London', 2008: 'Beijing'}"
- ]
- },
- "execution_count": 27,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "del olympic_cities[2020]\n",
- "olympic_cities"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 28,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "dict_keys(['summer', 'winter'])"
- ]
- },
- "execution_count": 28,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "all_olympics_hosts.keys()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 29,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "{'summer': {2016: 'Rio de Janiero', 2012: 'London', 2008: 'Beijing'},\n",
- " 'winter': {2022: 'Beijing', 2018: 'Pyeongchang'}}"
- ]
- },
- "execution_count": 29,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "all_olympics_hosts"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 30,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "dict_values(['Rio de Janiero', 'London', 'Beijing'])"
- ]
- },
- "execution_count": 30,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "olympic_cities.values()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 31,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "{2016: 'Rio de Janiero', 2012: 'London', 2008: 'Beijing'}"
- ]
- },
- "execution_count": 31,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "olympic_cities"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 32,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "London was a host city\n"
- ]
- }
- ],
- "source": [
- "if 'London' in olympic_cities.values():\n",
- " print('London was a host city')\n",
- "else:\n",
- " print('London was not a host city')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 35,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "dict_values([{2016: 'Rio de Janiero', 2012: 'London', 2008: 'Beijing'}, {2022: 'Beijing', 2018: 'Pyeongchang'}])"
- ]
- },
- "execution_count": 35,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "all_olympics_hosts.values()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 33,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "dict_items([('summer', {2016: 'Rio de Janiero', 2012: 'London', 2008: 'Beijing'}), ('winter', {2022: 'Beijing', 2018: 'Pyeongchang'})])"
- ]
- },
- "execution_count": 33,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "all_olympics_hosts.items()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 34,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "dict_items([(2016, 'Rio de Janiero'), (2012, 'London'), (2008, 'Beijing')])"
- ]
- },
- "execution_count": 34,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "olympic_cities.items()"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## Collections: a summary\n",
- "\n",
- "(Adapted from: Table 17, Chapter 11, _Practical Programming: An Introduction to Computer Science Using Python 3.6_)\n",
- "\n",
- "| Collection | Mutable? | Ordered? | Use when...|\n",
- "|---|---|---|---|\n",
- "| `str` | No | Yes | You want to keep track of text. |\n",
- "| `list` | Yes | Yes | You want to keep track of and update an ordered sequence.|\n",
- "| `tuple` | No | Yes | You want to build an ordered sequence that you know won't change or that you want to use as a key in a dictionary or as a value in a set. |\n",
- "| `set` | Yes | No | You want to keep track of values, but order doesn't matter, and you don't want duplicates. The values must be immutable. |\n",
- "| `dict` | Yes | No | You want to keep a mapping of keys to values. The keys must be immutable. |"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "# for loops\n",
- "# runs an intented block of code for every item in an iterable (data type like a list, tuple, set, dictionary, string)\n",
- "\n",
- "vowels = ['a', 'e', 'i', 'o', 'u']"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 38,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "Give me an a!\n",
- "Give me an e!\n",
- "Give me an i!\n",
- "Give me an o!\n",
- "Give me an u!\n"
- ]
- }
- ],
- "source": [
- "for i in vowels:\n",
- " print(f'Give me an {i}!')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 43,
- "metadata": {},
- "outputs": [],
- "source": [
- "participants = ['daniel', 'carlos', 'victor', 'kaylie']"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 44,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "daniel is part of cohort 5!\n",
- "carlos is part of cohort 5!\n",
- "victor is part of cohort 5!\n",
- "kaylie is part of cohort 5!\n"
- ]
- }
- ],
- "source": [
- "for j in participants:# j = 'victor'\n",
- " print(f'{j} is part of cohort 5!') "
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 42,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "daniel is part of cohort 5!\n",
- "carlos is part of cohort 5!\n",
- "victor is part of cohort 5!\n"
- ]
- }
- ],
- "source": [
- "print('daniel is part of cohort 5!') \n",
- "print('carlos is part of cohort 5!') \n",
- "print('victor is part of cohort 5!') "
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "We are on iteration 1\n",
- "We are on iteration 2\n",
- "We are on iteration 3\n",
- "We are on iteration 4\n",
- "We are on iteration 5\n",
- "We are on iteration 6\n",
- "We are on iteration 7\n"
- ]
- }
- ],
- "source": [
- "for i in range(7): # i=3\n",
- " print(f'We are on iteration {i + 1}')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 51,
- "metadata": {},
- "outputs": [],
- "source": [
- "input_files = ['data_01.csv', 'data_02.csv', 'data_03.csv', 'data_04.csv']\n",
- "output_files = []\n",
- "\n",
- "for i in input_files: # i = 'data_04.csv'\n",
- " output_file_name = 'processed_' + i.replace('.csv', '.xlsx') # output_file_name = 'processed_data_03.xlsx'\n",
- " output_files.append(output_file_name) # output_files = ['processed_data_01.xlsx', 'processed_data_02.xlsx', 'processed_data_03.xlsx', 'processed_data_03.xlsx']"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 52,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "['processed_data_01.xlsx',\n",
- " 'processed_data_02.xlsx',\n",
- " 'processed_data_03.xlsx',\n",
- " 'processed_data_04.xlsx']"
- ]
- },
- "execution_count": 52,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "output_files"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "Stop 0 is Sheppard-Yonge.\n",
- "Stop 1 is Bayview.\n",
- "Stop 2 is Bessarion.\n",
- "Stop 3 is Leslie.\n",
- "Stop 4 is Don Mills.\n"
- ]
- }
- ],
- "source": [
- "# enumerate() function is used to iterate over a sequence (i.e., list, tuple, or string) while keeping tack of the index\n",
- "# position of each item\n",
- "\n",
- "stops = ['Sheppard-Yonge', 'Bayview', 'Bessarion', 'Leslie', 'Don Mills']\n",
- "\n",
- "for idx, stop in enumerate(stops): # idx = 4, stop = 'Don Mills'\n",
- " print(f'Stop {idx} is {stop}.')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "[2, 20, 200, 2000]"
- ]
- },
- "execution_count": 54,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "numbers = [1, 10, 100, 1000]\n",
- "\n",
- "for idx, val in enumerate(numbers): # idx = 3, val = 1000\n",
- " numbers[idx] = val * 2 # numbers[3] = 1000 * 2\n",
- "\n",
- "numbers"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "43.65 is the latitude and -79.38 is the longitude\n",
- "45.52 is the latitude and -73.57 is the longitude\n",
- "49.28 is the latitude and -123.13 is the longitude\n"
- ]
- }
- ],
- "source": [
- "lats = (43.650, 45.520, 49.280)\n",
- "lons = (-79.380, -73.570, -123.130, -85.40)\n",
- "\n",
- "for i, j in zip(lats, lons):\n",
- " print(f'{i} is the latitude and {j} is the longitude')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "i is a and j is 1\n",
- "i is a and j is 2\n",
- "i is a and j is 3\n",
- "i is b and j is 1\n",
- "i is b and j is 2\n",
- "i is b and j is 3\n",
- "i is c and j is 1\n",
- "i is c and j is 2\n",
- "i is c and j is 3\n"
- ]
- }
- ],
- "source": [
- "for i in ['a', 'b', 'c']: # i = 'c'\n",
- " for j in [1, 2, 3]: # j = 3\n",
- " print(f'i is {i} and j is {j}')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 60,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "('changeable', 'fluctuating', 'inconstant')"
- ]
- },
- "execution_count": 60,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "# tuples immutable and ordered\n",
- "\n",
- "mutable_synonyms = ('changeable', 'fluctuating', 'inconstant')\n",
- "mutable_synonyms"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 64,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "4\n",
- "3\n",
- "2\n",
- "1\n"
- ]
- }
- ],
- "source": [
- "countdown = 4\n",
- "\n",
- "while countdown > 0:\n",
- " print(countdown)\n",
- " countdown -= 1"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "4\n",
- "3\n",
- "We are breaking the loop early\n"
- ]
- }
- ],
- "source": [
- "# break statement interrupts the execution of a loop\n",
- "\n",
- "# continue statement tells Python to leave the current iteration of the loop and start back up at the top\n",
- "\n",
- "countdown = 4\n",
- "\n",
- "while countdown > 0: # countdown = 3\n",
- " print(countdown)\n",
- " if countdown == 3:\n",
- " print(\"We are breaking the loop early\")\n",
- " break\n",
- " countdown -= 1"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 67,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "You're in!\n"
- ]
- }
- ],
- "source": [
- "while True:\n",
- " password = input(\"What's the password? \")\n",
- " if password.lower() == 'open sesame':\n",
- " print('You\\'re in!')\n",
- " break"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": []
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "wishes = 3\n",
- "\n",
- "while wishes > 0:\n",
- " wish = input('Make a wish: ')\n",
- " if 'INFINITE WISHES' in wish.upper():\n",
- " print('You can\\'t do that!')\n",
- " continue\n",
- " else:\n",
- " print('Wish granted.')\n",
- " wishes -= 1\n",
- "print('You have used all your wishes.')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": []
- }
- ],
- "metadata": {
- "kernelspec": {
- "display_name": "dsi_participant",
- "language": "python",
- "name": "python3"
- },
- "language_info": {
- "codemirror_mode": {
- "name": "ipython",
- "version": 3
- },
- "file_extension": ".py",
- "mimetype": "text/x-python",
- "name": "python",
- "nbconvert_exporter": "python",
- "pygments_lexer": "ipython3",
- "version": "3.11.8"
- }
- },
- "nbformat": 4,
- "nbformat_minor": 2
-}
diff --git a/04_this_cohort/live_code/12_04_2024.ipynb b/04_this_cohort/live_code/12_04_2024.ipynb
deleted file mode 100644
index 481de6a84..000000000
--- a/04_this_cohort/live_code/12_04_2024.ipynb
+++ /dev/null
@@ -1,8132 +0,0 @@
-{
- "cells": [
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "| `open()` mode | Description |\n",
- "|---|---|\n",
- "|`'r'` | Read-only. Produces an error if the file does not already exist. |\n",
- "|`'w'` | Write. Creates a new file if one does not exist. If the file already exists, the current contents are deleted and overwritten. |\n",
- "|`'a'`| Append. Adds to an existing file. If the file does not exist, it will be created. |"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 2,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "<_io.TextIOWrapper name='/Users/kaylielau/Downloads/python/05_src/data/slides_data/california_housing_test.csv' mode='r' encoding='UTF-8'>\n"
- ]
- }
- ],
- "source": [
- "with open(r'/Users/kaylielau/Downloads/python/05_src/data/slides_data/california_housing_test.csv', 'r') as f:\n",
- " print(f)"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "* `read()` returns the full file contents, which can be overwhelming for larger files.\n",
- "* `readline()` returns only the next line in the file. Python keeps track of where it is in the file.\n",
- "* `readlines()` returns the full file as a list. Each item is one line in the file."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 7,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "\"longitude\",\"latitude\",\"housing_median_age\",\"total_rooms\",\"total_bedrooms\",\"population\",\"households\",\"median_income\",\"median_house_value\"\n",
- "-122.050000,37.370000,27.000000,3885.000000,661.000000,1537.000000,606.000000,6.608500,344700.000000\n",
- "-118.300000,34.260000,43.000000,1510.000000,310.000000,809.000000,277.000000,3.599000,176500.000000\n",
- "-117.810000,33.780000,27.000000,3589.000000,507.000000,1484.000000,495.000000,5.793400,270500.000000\n",
- "-118.360000,33.820000,28.000000,67.000000,15.000000,49.000000,11.000000,6.135900,330000.000000\n",
- "-119.670000,36.330000,19.000000,1241.000000,244.000000,850.000000,237.000000,2.937500,81700.000000\n",
- "-119.560000,36.510000,37.000000,1018.000000,213.000000,663.000000,204.000000,1.663500,67000.000000\n",
- "-121.430000,38.630000,43.000000,1009.000000,225.000000,604.000000,218.000000,1.664100,67000.000000\n",
- "-120.650000,35.480000,19.000000,2310.000000,471.000000,1341.000000,441.000000,3.225000,166900.000000\n",
- "-122.840000,38.400000,15.000000,3080.000000,617.000000,1446.000000,599.000000,3.669600,194400.000000\n",
- "-118.020000,34.080000,31.000000,2402.000000,632.000000,2830.000000,603.000000,2.333300,164200.000000\n",
- "-118.240000,33.980000,45.000000,972.000000,249.000000,1288.000000,261.000000,2.205400,125000.000000\n",
- "-119.120000,35.850000,37.000000,736.000000,166.000000,564.000000,138.000000,2.416700,58300.000000\n",
- "-121.930000,37.250000,36.000000,1089.000000,182.000000,535.000000,170.000000,4.690000,252600.000000\n",
- "-117.030000,32.970000,16.000000,3936.000000,694.000000,1935.000000,659.000000,4.562500,231200.000000\n",
- "-117.970000,33.730000,27.000000,2097.000000,325.000000,1217.000000,331.000000,5.712100,222500.000000\n",
- "-117.990000,33.810000,42.000000,161.000000,40.000000,157.000000,50.000000,2.200000,153100.000000\n",
- "-120.810000,37.530000,15.000000,570.000000,123.000000,189.000000,107.000000,1.875000,181300.000000\n",
- "-121.200000,38.690000,26.000000,3077.000000,607.000000,1603.000000,595.000000,2.717400,137500.000000\n",
- "-118.880000,34.210000,26.000000,1590.000000,196.000000,654.000000,199.000000,6.585100,300000.000000\n",
- "-122.590000,38.010000,35.000000,8814.000000,1307.000000,3450.000000,1258.000000,6.172400,414300.000000\n",
- "-122.150000,37.750000,40.000000,1445.000000,256.000000,849.000000,255.000000,3.891300,126300.000000\n",
- "-121.370000,38.680000,36.000000,1775.000000,296.000000,937.000000,305.000000,3.178600,83400.000000\n",
- "-118.160000,34.070000,47.000000,2994.000000,543.000000,1651.000000,561.000000,3.864400,241500.000000\n",
- "-122.200000,37.790000,45.000000,2021.000000,528.000000,1410.000000,480.000000,2.778800,115400.000000\n",
- "-117.280000,33.280000,13.000000,6131.000000,1040.000000,4049.000000,940.000000,3.815600,150700.000000\n",
- "-118.030000,34.160000,36.000000,1401.000000,218.000000,667.000000,225.000000,7.161500,484700.000000\n",
- "-122.420000,37.760000,52.000000,3587.000000,1030.000000,2259.000000,979.000000,2.540300,250000.000000\n",
- "-118.390000,33.990000,32.000000,2612.000000,418.000000,1030.000000,402.000000,6.603000,369200.000000\n",
- "-118.450000,34.070000,19.000000,4845.000000,1609.000000,3751.000000,1539.000000,1.583000,350000.000000\n",
- "-118.480000,34.010000,30.000000,3078.000000,954.000000,1561.000000,901.000000,3.485200,425000.000000\n",
- "-119.350000,36.330000,14.000000,1195.000000,220.000000,568.000000,229.000000,3.148600,105600.000000\n",
- "-118.300000,33.910000,34.000000,1617.000000,493.000000,1530.000000,500.000000,2.618200,172600.000000\n",
- "-121.130000,39.310000,17.000000,3442.000000,705.000000,1693.000000,619.000000,2.810200,128900.000000\n",
- "-118.080000,34.550000,5.000000,16181.000000,2971.000000,8152.000000,2651.000000,4.523700,141800.000000\n",
- "-118.320000,33.940000,38.000000,1067.000000,170.000000,499.000000,169.000000,4.638900,183800.000000\n",
- "-118.110000,34.000000,33.000000,2886.000000,726.000000,2650.000000,728.000000,2.625000,178700.000000\n",
- "-122.530000,37.970000,52.000000,1560.000000,451.000000,700.000000,419.000000,2.512500,270800.000000\n",
- "-118.020000,33.920000,34.000000,1478.000000,251.000000,956.000000,277.000000,5.523800,185300.000000\n",
- "-118.050000,33.930000,31.000000,894.000000,203.000000,883.000000,190.000000,3.677100,141500.000000\n",
- "-119.010000,34.230000,11.000000,5785.000000,1035.000000,2760.000000,985.000000,4.693000,232200.000000\n",
- "-119.320000,36.200000,15.000000,1562.000000,275.000000,961.000000,287.000000,3.423100,83300.000000\n",
- "-116.920000,32.770000,16.000000,2770.000000,406.000000,1269.000000,429.000000,6.678300,275000.000000\n",
- "-118.060000,34.150000,37.000000,1980.000000,226.000000,697.000000,226.000000,15.000100,500001.000000\n",
- "-117.270000,34.090000,36.000000,848.000000,186.000000,737.000000,169.000000,0.983800,79300.000000\n",
- "-118.230000,34.130000,48.000000,1308.000000,286.000000,835.000000,294.000000,4.289100,214800.000000\n",
- "-117.240000,33.170000,4.000000,9998.000000,1874.000000,3925.000000,1672.000000,4.282600,237500.000000\n",
- "-121.910000,37.440000,24.000000,1212.000000,251.000000,799.000000,242.000000,5.080800,212500.000000\n",
- "-118.290000,33.940000,47.000000,1782.000000,338.000000,1003.000000,329.000000,2.539800,105700.000000\n",
- "-121.350000,38.000000,6.000000,1649.000000,369.000000,732.000000,350.000000,3.423100,123800.000000\n",
- "-117.990000,33.780000,19.000000,7399.000000,1698.000000,3554.000000,1593.000000,3.104900,173900.000000\n",
- "-120.990000,37.700000,14.000000,9849.000000,1887.000000,4356.000000,1780.000000,3.587700,160900.000000\n",
- "-119.420000,35.970000,21.000000,554.000000,121.000000,426.000000,122.000000,2.351600,47500.000000\n",
- "-122.210000,37.800000,39.000000,2003.000000,500.000000,1109.000000,464.000000,3.068200,156500.000000\n",
- "-118.170000,33.800000,26.000000,1589.000000,380.000000,883.000000,366.000000,3.531300,187500.000000\n",
- "-117.900000,34.090000,39.000000,1726.000000,333.000000,892.000000,335.000000,4.340900,191800.000000\n",
- "-117.990000,33.930000,36.000000,1287.000000,233.000000,779.000000,229.000000,4.852300,175800.000000\n",
- "-121.420000,38.720000,10.000000,3054.000000,528.000000,1932.000000,510.000000,3.090300,91900.000000\n",
- "-118.770000,34.260000,26.000000,3038.000000,468.000000,1825.000000,468.000000,5.638500,196900.000000\n",
- "-121.930000,37.330000,44.000000,1449.000000,291.000000,676.000000,282.000000,3.575000,292200.000000\n",
- "-121.820000,37.250000,16.000000,2650.000000,600.000000,1969.000000,586.000000,3.946100,194300.000000\n",
- "-122.290000,37.560000,36.000000,805.000000,140.000000,445.000000,139.000000,5.822100,289400.000000\n",
- "-121.780000,37.230000,18.000000,1747.000000,317.000000,1055.000000,285.000000,5.898000,229100.000000\n",
- "-118.410000,34.000000,35.000000,1062.000000,305.000000,1026.000000,307.000000,2.715300,265500.000000\n",
- "-121.670000,40.870000,31.000000,1581.000000,299.000000,776.000000,287.000000,2.906300,77800.000000\n",
- "-118.000000,33.920000,26.000000,2830.000000,399.000000,1204.000000,404.000000,6.127300,289600.000000\n",
- "-117.220000,32.730000,38.000000,3966.000000,768.000000,1640.000000,729.000000,3.840900,291400.000000\n",
- "-121.080000,37.690000,19.000000,6473.000000,1212.000000,3559.000000,1123.000000,3.224600,129300.000000\n",
- "-117.530000,33.920000,12.000000,2290.000000,319.000000,728.000000,228.000000,6.156100,233500.000000\n",
- "-117.460000,34.080000,18.000000,3830.000000,750.000000,2767.000000,702.000000,3.660200,120700.000000\n",
- "-117.970000,33.860000,35.000000,1691.000000,367.000000,1265.000000,378.000000,3.585500,174300.000000\n",
- "-121.920000,37.330000,52.000000,2125.000000,382.000000,930.000000,387.000000,5.283100,299500.000000\n",
- "-118.200000,34.040000,44.000000,1582.000000,544.000000,1998.000000,515.000000,1.688800,125000.000000\n",
- "-118.060000,33.800000,22.000000,1892.000000,442.000000,1015.000000,404.000000,4.137900,212500.000000\n",
- "-122.050000,37.360000,34.000000,2400.000000,419.000000,1017.000000,384.000000,4.136900,316900.000000\n",
- "-123.790000,39.500000,24.000000,1421.000000,291.000000,588.000000,274.000000,2.325000,157300.000000\n",
- "-120.790000,37.490000,44.000000,1186.000000,225.000000,687.000000,234.000000,3.416700,160700.000000\n",
- "-121.890000,37.350000,47.000000,2879.000000,631.000000,2229.000000,606.000000,3.259900,183100.000000\n",
- "-118.430000,34.200000,29.000000,3051.000000,694.000000,1942.000000,679.000000,3.111800,238100.000000\n",
- "-118.750000,34.170000,18.000000,6217.000000,858.000000,2703.000000,834.000000,6.807500,325900.000000\n",
- "-122.470000,37.990000,22.000000,7274.000000,1002.000000,2468.000000,957.000000,7.494000,439200.000000\n",
- "-120.690000,37.400000,46.000000,860.000000,130.000000,496.000000,147.000000,3.516700,137500.000000\n",
- "-118.280000,34.050000,44.000000,968.000000,384.000000,1805.000000,375.000000,1.480100,212500.000000\n",
- "-118.440000,34.250000,35.000000,1583.000000,324.000000,1481.000000,351.000000,3.700000,176000.000000\n",
- "-122.050000,38.260000,21.000000,7195.000000,1416.000000,3927.000000,1377.000000,3.091200,126300.000000\n",
- "-121.990000,37.350000,18.000000,1712.000000,509.000000,972.000000,467.000000,4.397100,238900.000000\n",
- "-121.020000,37.680000,28.000000,2875.000000,560.000000,1608.000000,558.000000,3.548900,106400.000000\n",
- "-119.850000,36.740000,35.000000,1191.000000,190.000000,537.000000,182.000000,3.537500,96700.000000\n",
- "-118.020000,34.080000,28.000000,2769.000000,631.000000,2452.000000,581.000000,2.607100,175900.000000\n",
- "-123.520000,41.010000,17.000000,1564.000000,345.000000,517.000000,222.000000,2.154200,83800.000000\n",
- "-122.400000,37.620000,44.000000,1619.000000,362.000000,1064.000000,335.000000,4.023800,224200.000000\n",
- "-118.130000,34.150000,24.000000,1125.000000,341.000000,579.000000,321.000000,2.812500,141700.000000\n",
- "-122.000000,37.980000,32.000000,1013.000000,169.000000,436.000000,173.000000,5.111800,226900.000000\n",
- "-118.450000,34.250000,36.000000,1453.000000,270.000000,808.000000,275.000000,4.383900,204600.000000\n",
- "-117.500000,33.870000,4.000000,6755.000000,1017.000000,2866.000000,850.000000,5.049300,239800.000000\n",
- "-122.220000,37.840000,50.000000,2935.000000,473.000000,1031.000000,479.000000,7.500000,295200.000000\n",
- "-119.820000,36.640000,30.000000,1694.000000,312.000000,1008.000000,321.000000,2.246600,96000.000000\n",
- "-120.210000,36.770000,20.000000,1745.000000,348.000000,1093.000000,302.000000,2.319400,90600.000000\n",
- "-120.970000,38.420000,16.000000,1748.000000,322.000000,4930.000000,287.000000,4.302900,121900.000000\n",
- "-121.190000,38.870000,20.000000,3118.000000,500.000000,1405.000000,519.000000,6.000000,209400.000000\n",
- "-118.200000,33.770000,52.000000,1375.000000,457.000000,1089.000000,317.000000,2.234400,200000.000000\n",
- "-118.300000,34.020000,49.000000,2120.000000,483.000000,1522.000000,416.000000,1.850000,116800.000000\n",
- "-122.230000,37.790000,43.000000,5963.000000,1344.000000,4367.000000,1231.000000,2.191700,112800.000000\n",
- "-121.310000,38.620000,31.000000,3114.000000,430.000000,1121.000000,456.000000,6.244000,240000.000000\n",
- "-117.250000,32.800000,35.000000,2281.000000,506.000000,1005.000000,496.000000,4.229600,275000.000000\n",
- "-118.260000,33.990000,36.000000,2016.000000,505.000000,1807.000000,464.000000,1.690100,103500.000000\n",
- "-119.390000,36.540000,34.000000,1590.000000,422.000000,1272.000000,407.000000,1.806800,59000.000000\n",
- "-121.510000,38.520000,30.000000,3236.000000,588.000000,1167.000000,569.000000,4.097200,181400.000000\n",
- "-119.180000,34.270000,6.000000,2307.000000,386.000000,910.000000,364.000000,5.215000,279500.000000\n",
- "-118.180000,33.770000,30.000000,1418.000000,439.000000,720.000000,417.000000,2.637100,159400.000000\n",
- "-122.430000,37.740000,52.000000,1514.000000,314.000000,724.000000,301.000000,5.329200,300900.000000\n",
- "-117.930000,33.910000,24.000000,1698.000000,297.000000,676.000000,273.000000,5.201700,364600.000000\n",
- "-124.160000,40.770000,35.000000,2141.000000,438.000000,1053.000000,434.000000,2.852900,85600.000000\n",
- "-117.950000,33.630000,27.000000,2489.000000,481.000000,1082.000000,443.000000,5.877700,358800.000000\n",
- "-118.050000,34.100000,36.000000,1606.000000,318.000000,889.000000,294.000000,4.793100,272600.000000\n",
- "-116.970000,32.810000,19.000000,1573.000000,471.000000,844.000000,414.000000,2.142200,125000.000000\n",
- "-118.850000,34.170000,42.000000,564.000000,96.000000,220.000000,81.000000,4.562500,318800.000000\n",
- "-117.730000,33.630000,15.000000,2874.000000,592.000000,1382.000000,586.000000,5.513700,161800.000000\n",
- "-122.070000,37.340000,30.000000,1851.000000,238.000000,631.000000,236.000000,10.100700,500001.000000\n",
- "-117.180000,33.020000,15.000000,3540.000000,453.000000,1364.000000,425.000000,13.662300,500001.000000\n",
- "-118.410000,34.000000,38.000000,324.000000,70.000000,268.000000,73.000000,2.550000,271400.000000\n",
- "-121.960000,37.300000,20.000000,4228.000000,1006.000000,2334.000000,1007.000000,4.308100,227300.000000\n",
- "-121.740000,38.550000,34.000000,2299.000000,579.000000,1300.000000,536.000000,1.643500,148500.000000\n",
- "-118.210000,33.920000,28.000000,2949.000000,1003.000000,4551.000000,930.000000,1.902600,131900.000000\n",
- "-121.900000,36.610000,29.000000,3412.000000,827.000000,1574.000000,759.000000,2.930900,217100.000000\n",
- "-117.810000,33.840000,17.000000,4343.000000,515.000000,1605.000000,484.000000,10.598100,460100.000000\n",
- "-118.190000,33.930000,42.000000,1829.000000,391.000000,1614.000000,377.000000,3.191200,146400.000000\n",
- "-120.930000,37.730000,14.000000,2799.000000,618.000000,2294.000000,596.000000,2.634300,81500.000000\n",
- "-122.020000,37.960000,25.000000,2615.000000,368.000000,935.000000,366.000000,6.672700,305100.000000\n",
- "-122.470000,37.790000,52.000000,2844.000000,623.000000,1380.000000,596.000000,4.750000,500001.000000\n",
- "-117.190000,34.030000,25.000000,2513.000000,340.000000,900.000000,320.000000,6.496200,182400.000000\n",
- "-117.240000,32.800000,28.000000,1072.000000,331.000000,692.000000,321.000000,2.135700,187500.000000\n",
- "-118.130000,34.100000,19.000000,2742.000000,756.000000,1396.000000,703.000000,2.566300,197500.000000\n",
- "-122.420000,37.730000,50.000000,3426.000000,769.000000,2261.000000,671.000000,2.888000,246400.000000\n",
- "-118.140000,34.710000,32.000000,1164.000000,248.000000,588.000000,270.000000,1.191700,86900.000000\n",
- "-119.760000,36.750000,39.000000,2233.000000,563.000000,2031.000000,491.000000,1.864100,50800.000000\n",
- "-122.340000,37.560000,39.000000,3562.000000,391.000000,1139.000000,391.000000,12.641700,500001.000000\n",
- "-122.450000,40.460000,16.000000,2734.000000,501.000000,1413.000000,484.000000,2.808500,105700.000000\n",
- "-118.290000,33.910000,31.000000,2025.000000,618.000000,2231.000000,593.000000,2.474100,151200.000000\n",
- "-118.320000,33.910000,34.000000,3041.000000,677.000000,1920.000000,640.000000,4.530400,181300.000000\n",
- "-122.040000,37.360000,26.000000,3298.000000,460.000000,1241.000000,472.000000,6.875300,403000.000000\n",
- "-117.390000,34.100000,12.000000,7184.000000,1516.000000,4862.000000,1235.000000,2.449200,103800.000000\n",
- "-122.250000,37.800000,36.000000,1678.000000,606.000000,1645.000000,543.000000,2.230300,116700.000000\n",
- "-117.980000,34.100000,22.000000,5661.000000,1209.000000,5389.000000,1178.000000,3.772700,159700.000000\n",
- "-120.060000,36.950000,24.000000,646.000000,134.000000,454.000000,149.000000,2.125000,61900.000000\n",
- "-121.470000,39.490000,17.000000,1554.000000,242.000000,553.000000,230.000000,3.217400,91800.000000\n",
- "-122.200000,37.790000,35.000000,1802.000000,459.000000,1009.000000,390.000000,2.303600,126000.000000\n",
- "-117.230000,32.750000,23.000000,2415.000000,653.000000,1275.000000,596.000000,3.138900,101800.000000\n",
- "-119.750000,36.740000,39.000000,1740.000000,351.000000,1098.000000,347.000000,1.895800,51300.000000\n",
- "-117.920000,34.030000,35.000000,1341.000000,233.000000,898.000000,216.000000,4.111800,157300.000000\n",
- "-121.640000,39.280000,25.000000,2857.000000,662.000000,2076.000000,685.000000,1.809500,64100.000000\n",
- "-117.140000,32.720000,45.000000,1140.000000,310.000000,840.000000,339.000000,1.615600,156300.000000\n",
- "-122.290000,37.540000,41.000000,1743.000000,349.000000,811.000000,349.000000,4.946400,282400.000000\n",
- "-117.910000,33.940000,15.000000,5799.000000,842.000000,2314.000000,787.000000,6.343300,350500.000000\n",
- "-118.380000,34.270000,8.000000,3248.000000,847.000000,2608.000000,731.000000,2.821400,158300.000000\n",
- "-122.030000,37.600000,24.000000,2077.000000,383.000000,1488.000000,389.000000,4.572100,214700.000000\n",
- "-117.130000,33.150000,16.000000,3907.000000,671.000000,1759.000000,663.000000,3.177600,172600.000000\n",
- "-118.280000,34.000000,42.000000,855.000000,284.000000,890.000000,247.000000,1.277800,112500.000000\n",
- "-122.450000,37.720000,52.000000,1729.000000,319.000000,890.000000,300.000000,4.303600,261800.000000\n",
- "-119.770000,36.770000,38.000000,3065.000000,658.000000,1441.000000,625.000000,2.056400,64700.000000\n",
- "-117.700000,33.640000,15.000000,5743.000000,773.000000,2380.000000,773.000000,8.192600,326600.000000\n",
- "-117.070000,32.790000,36.000000,3583.000000,642.000000,1711.000000,602.000000,3.974500,170800.000000\n",
- "-117.850000,33.620000,13.000000,5192.000000,658.000000,1865.000000,662.000000,15.000100,500001.000000\n",
- "-117.760000,33.710000,15.000000,1010.000000,350.000000,470.000000,342.000000,3.222900,108300.000000\n",
- "-117.190000,34.940000,31.000000,2034.000000,444.000000,1097.000000,367.000000,2.152200,60800.000000\n",
- "-120.970000,37.690000,15.000000,4065.000000,841.000000,1986.000000,680.000000,3.072000,114300.000000\n",
- "-117.190000,33.640000,12.000000,1481.000000,265.000000,757.000000,243.000000,3.235000,210700.000000\n",
- "-118.380000,33.910000,36.000000,2904.000000,515.000000,1463.000000,534.000000,5.837400,289600.000000\n",
- "-121.560000,38.260000,43.000000,1906.000000,327.000000,996.000000,314.000000,2.974400,136800.000000\n",
- "-118.960000,35.870000,17.000000,1668.000000,307.000000,888.000000,277.000000,3.779400,96200.000000\n",
- "-116.960000,32.800000,24.000000,2493.000000,693.000000,1420.000000,643.000000,1.835700,104200.000000\n",
- "-118.270000,33.940000,30.000000,1764.000000,397.000000,1406.000000,362.000000,1.449000,93100.000000\n",
- "-119.180000,34.190000,36.000000,4519.000000,1081.000000,4818.000000,1061.000000,2.856100,179100.000000\n",
- "-118.230000,33.900000,28.000000,1108.000000,284.000000,1498.000000,289.000000,2.470600,88800.000000\n",
- "-120.490000,37.260000,28.000000,2159.000000,416.000000,1283.000000,378.000000,1.893900,83000.000000\n",
- "-121.430000,38.640000,34.000000,2010.000000,411.000000,1501.000000,422.000000,2.041700,65900.000000\n",
- "-118.140000,34.170000,42.000000,2757.000000,713.000000,2112.000000,653.000000,2.714800,166800.000000\n",
- "-119.090000,35.410000,12.000000,3449.000000,522.000000,1754.000000,551.000000,5.623500,130600.000000\n",
- "-118.020000,33.710000,24.000000,2598.000000,443.000000,1184.000000,435.000000,5.862300,287800.000000\n",
- "-121.530000,39.060000,20.000000,561.000000,109.000000,308.000000,114.000000,3.302100,70800.000000\n",
- "-119.290000,34.280000,38.000000,2387.000000,748.000000,1537.000000,741.000000,2.314700,192500.000000\n",
- "-121.840000,37.340000,33.000000,1019.000000,191.000000,938.000000,215.000000,4.092900,165000.000000\n",
- "-117.990000,33.880000,42.000000,1461.000000,302.000000,986.000000,314.000000,3.955900,161100.000000\n",
- "-122.240000,37.550000,3.000000,6164.000000,1175.000000,2198.000000,975.000000,6.741300,435900.000000\n",
- "-121.800000,37.310000,21.000000,2630.000000,446.000000,1789.000000,389.000000,5.054300,232000.000000\n",
- "-117.430000,34.080000,13.000000,4563.000000,1187.000000,2475.000000,1019.000000,2.118900,121700.000000\n",
- "-118.280000,34.020000,29.000000,515.000000,229.000000,2690.000000,217.000000,0.499900,500001.000000\n",
- "-117.300000,33.060000,31.000000,2128.000000,520.000000,1049.000000,485.000000,4.027000,290000.000000\n",
- "-118.200000,34.040000,18.000000,796.000000,227.000000,547.000000,218.000000,1.033300,135400.000000\n",
- "-117.630000,34.110000,30.000000,2674.000000,428.000000,1404.000000,456.000000,4.296900,165600.000000\n",
- "-121.940000,37.330000,37.000000,818.000000,269.000000,576.000000,261.000000,2.190200,250000.000000\n",
- "-118.070000,33.930000,5.000000,906.000000,187.000000,1453.000000,158.000000,4.125000,171900.000000\n",
- "-117.190000,32.830000,30.000000,3225.000000,555.000000,1601.000000,532.000000,4.331700,173300.000000\n",
- "-118.210000,33.890000,42.000000,1739.000000,370.000000,1104.000000,297.000000,2.212500,120700.000000\n",
- "-118.410000,34.190000,39.000000,1169.000000,242.000000,612.000000,247.000000,4.142900,200000.000000\n",
- "-117.000000,32.800000,29.000000,2045.000000,398.000000,912.000000,368.000000,3.018900,144100.000000\n",
- "-116.920000,32.860000,11.000000,2204.000000,518.000000,1472.000000,497.000000,2.369300,127000.000000\n",
- "-121.040000,38.950000,22.000000,1931.000000,445.000000,1009.000000,407.000000,2.750000,153200.000000\n",
- "-122.120000,37.450000,38.000000,1276.000000,314.000000,955.000000,287.000000,2.009600,155700.000000\n",
- "-119.480000,36.540000,28.000000,2112.000000,363.000000,1011.000000,335.000000,4.222200,108900.000000\n",
- "-121.020000,37.680000,25.000000,3262.000000,588.000000,1834.000000,578.000000,3.996000,114500.000000\n",
- "-123.280000,40.770000,25.000000,767.000000,206.000000,301.000000,121.000000,1.625000,79200.000000\n",
- "-122.890000,39.110000,10.000000,1588.000000,333.000000,585.000000,254.000000,2.255100,71100.000000\n",
- "-122.040000,37.970000,21.000000,6445.000000,1839.000000,3621.000000,1735.000000,2.584100,112500.000000\n",
- "-118.080000,33.810000,21.000000,1189.000000,281.000000,577.000000,264.000000,3.315500,237500.000000\n",
- "-118.310000,34.090000,36.000000,787.000000,420.000000,1506.000000,360.000000,1.241200,216700.000000\n",
- "-122.160000,37.750000,35.000000,667.000000,140.000000,406.000000,133.000000,3.804700,94300.000000\n",
- "-121.610000,38.380000,37.000000,1365.000000,276.000000,952.000000,268.000000,4.037000,156900.000000\n",
- "-122.100000,37.680000,31.000000,1892.000000,428.000000,1162.000000,389.000000,3.125000,167100.000000\n",
- "-122.280000,37.870000,49.000000,2026.000000,548.000000,963.000000,521.000000,1.980500,173700.000000\n",
- "-116.910000,34.240000,23.000000,6379.000000,1636.000000,1350.000000,568.000000,1.633600,124500.000000\n",
- "-121.830000,37.280000,33.000000,1115.000000,250.000000,1168.000000,261.000000,3.900900,178600.000000\n",
- "-118.300000,33.810000,17.000000,5544.000000,1068.000000,3008.000000,1038.000000,5.322000,282700.000000\n",
- "-117.960000,33.700000,23.000000,4417.000000,740.000000,1865.000000,693.000000,5.342800,279300.000000\n",
- "-122.140000,40.070000,31.000000,2053.000000,465.000000,1193.000000,447.000000,1.492300,44400.000000\n",
- "-121.440000,38.730000,25.000000,1287.000000,224.000000,727.000000,236.000000,4.739600,135500.000000\n",
- "-122.260000,37.550000,17.000000,4576.000000,814.000000,1941.000000,807.000000,5.957200,443800.000000\n",
- "-121.640000,37.140000,14.000000,5487.000000,1024.000000,2823.000000,979.000000,4.175000,229800.000000\n",
- "-117.180000,34.480000,8.000000,3561.000000,691.000000,2156.000000,659.000000,2.777800,86900.000000\n",
- "-122.280000,38.340000,44.000000,1066.000000,190.000000,416.000000,174.000000,3.638900,304000.000000\n",
- "-117.900000,33.600000,25.000000,2465.000000,585.000000,906.000000,472.000000,3.653800,500001.000000\n",
- "-122.180000,37.780000,33.000000,142.000000,31.000000,575.000000,47.000000,3.875000,225000.000000\n",
- "-121.490000,38.510000,30.000000,3166.000000,607.000000,1857.000000,579.000000,3.176800,79500.000000\n",
- "-118.190000,33.910000,43.000000,1531.000000,357.000000,1509.000000,376.000000,2.635400,128100.000000\n",
- "-118.270000,34.100000,50.000000,2113.000000,398.000000,793.000000,418.000000,4.713200,304600.000000\n",
- "-121.440000,38.610000,34.000000,172.000000,38.000000,149.000000,55.000000,2.644200,55000.000000\n",
- "-121.910000,37.430000,33.000000,2791.000000,496.000000,1714.000000,485.000000,4.830400,224900.000000\n",
- "-117.860000,33.720000,31.000000,1194.000000,297.000000,1602.000000,306.000000,2.333300,157700.000000\n",
- "-118.350000,33.920000,29.000000,736.000000,232.000000,584.000000,231.000000,3.616700,200000.000000\n",
- "-117.260000,33.840000,12.000000,1159.000000,209.000000,523.000000,159.000000,2.723200,123200.000000\n",
- "-122.430000,37.730000,52.000000,3602.000000,738.000000,2270.000000,647.000000,3.893400,251800.000000\n",
- "-121.800000,37.990000,16.000000,3077.000000,465.000000,1575.000000,446.000000,5.500000,179500.000000\n",
- "-122.580000,38.460000,15.000000,2936.000000,517.000000,1182.000000,501.000000,3.398100,246900.000000\n",
- "-122.470000,37.780000,52.000000,2042.000000,378.000000,1153.000000,408.000000,4.185600,404700.000000\n",
- "-118.080000,34.000000,32.000000,1165.000000,358.000000,997.000000,361.000000,0.981700,166300.000000\n",
- "-122.000000,37.350000,20.000000,4304.000000,851.000000,2059.000000,835.000000,5.167400,333000.000000\n",
- "-119.020000,35.410000,21.000000,2534.000000,554.000000,1297.000000,517.000000,2.057500,67000.000000\n",
- "-118.130000,34.180000,52.000000,1464.000000,211.000000,603.000000,226.000000,5.830900,309100.000000\n",
- "-121.940000,37.270000,23.000000,1932.000000,552.000000,997.000000,482.000000,3.662000,211900.000000\n",
- "-120.510000,35.910000,39.000000,768.000000,162.000000,264.000000,118.000000,5.324500,250000.000000\n",
- "-121.650000,38.030000,28.000000,3144.000000,694.000000,1095.000000,482.000000,3.440200,192400.000000\n",
- "-121.620000,39.790000,11.000000,3835.000000,727.000000,1456.000000,658.000000,2.537400,97200.000000\n",
- "-117.080000,32.820000,16.000000,1787.000000,236.000000,770.000000,228.000000,7.129800,278600.000000\n",
- "-123.210000,39.140000,15.000000,2235.000000,545.000000,1376.000000,516.000000,1.903200,100000.000000\n",
- "-119.610000,36.330000,32.000000,1492.000000,284.000000,926.000000,264.000000,3.013900,61500.000000\n",
- "-114.980000,33.070000,18.000000,1183.000000,363.000000,374.000000,127.000000,3.160700,57500.000000\n",
- "-118.380000,34.040000,36.000000,3005.000000,771.000000,2054.000000,758.000000,2.043700,309100.000000\n",
- "-117.990000,33.700000,13.000000,4013.000000,903.000000,1999.000000,859.000000,4.625000,248800.000000\n",
- "-116.260000,33.720000,10.000000,9404.000000,1827.000000,3208.000000,1283.000000,3.108600,105800.000000\n",
- "-118.400000,34.000000,10.000000,1526.000000,339.000000,705.000000,268.000000,5.808300,321800.000000\n",
- "-120.640000,35.460000,6.000000,5876.000000,1406.000000,2877.000000,1304.000000,2.543700,146400.000000\n",
- "-122.030000,37.390000,22.000000,3280.000000,933.000000,1842.000000,795.000000,4.410700,232700.000000\n",
- "-118.290000,33.880000,36.000000,1751.000000,438.000000,1175.000000,419.000000,3.073900,218600.000000\n",
- "-117.020000,32.690000,7.000000,6055.000000,1004.000000,3031.000000,952.000000,4.436000,135000.000000\n",
- "-119.320000,36.300000,15.000000,2864.000000,571.000000,1480.000000,475.000000,2.969800,93400.000000\n",
- "-122.310000,38.010000,18.000000,4123.000000,874.000000,1895.000000,772.000000,3.275900,195000.000000\n",
- "-118.860000,34.190000,27.000000,1931.000000,261.000000,736.000000,244.000000,6.780500,392900.000000\n",
- "-117.140000,33.810000,13.000000,4496.000000,756.000000,2044.000000,695.000000,3.277800,148800.000000\n",
- "-118.640000,34.220000,25.000000,2762.000000,410.000000,1166.000000,439.000000,6.864300,333700.000000\n",
- "-116.630000,33.890000,22.000000,1540.000000,364.000000,610.000000,268.000000,1.522700,71000.000000\n",
- "-118.280000,34.110000,45.000000,1607.000000,331.000000,633.000000,332.000000,3.144500,438300.000000\n",
- "-119.030000,35.380000,52.000000,1695.000000,290.000000,540.000000,260.000000,2.731200,147100.000000\n",
- "-118.260000,33.880000,36.000000,1212.000000,222.000000,775.000000,224.000000,5.559100,136500.000000\n",
- "-117.890000,33.850000,18.000000,2036.000000,414.000000,1292.000000,380.000000,3.875000,273000.000000\n",
- "-122.090000,37.380000,36.000000,2587.000000,416.000000,1055.000000,410.000000,6.199500,407200.000000\n",
- "-122.940000,39.100000,18.000000,681.000000,120.000000,272.000000,105.000000,2.890600,140600.000000\n",
- "-117.100000,32.680000,42.000000,2013.000000,568.000000,1920.000000,557.000000,2.072400,107600.000000\n",
- "-118.980000,35.410000,36.000000,1482.000000,266.000000,640.000000,274.000000,3.875000,94500.000000\n",
- "-120.230000,37.960000,52.000000,1230.000000,262.000000,609.000000,243.000000,2.005700,68200.000000\n",
- "-118.200000,33.940000,43.000000,1934.000000,511.000000,1895.000000,493.000000,2.502900,159700.000000\n",
- "-121.300000,37.950000,9.000000,674.000000,242.000000,575.000000,193.000000,2.202400,45000.000000\n",
- "-121.740000,38.550000,33.000000,6861.000000,1820.000000,3717.000000,1767.000000,1.731100,182600.000000\n",
- "-121.960000,37.330000,35.000000,2294.000000,411.000000,1054.000000,449.000000,4.066700,276900.000000\n",
- "-120.600000,37.360000,27.000000,2521.000000,484.000000,1307.000000,456.000000,3.091100,86900.000000\n",
- "-122.470000,37.700000,44.000000,2034.000000,423.000000,1491.000000,373.000000,4.534100,236500.000000\n",
- "-117.050000,32.580000,23.000000,1918.000000,339.000000,1392.000000,340.000000,4.087000,134800.000000\n",
- "-117.900000,33.870000,34.000000,1411.000000,292.000000,1040.000000,299.000000,3.433800,195200.000000\n",
- "-117.230000,32.870000,15.000000,2290.000000,662.000000,1034.000000,594.000000,3.010400,204200.000000\n",
- "-122.080000,37.880000,24.000000,2059.000000,462.000000,410.000000,294.000000,2.397100,99400.000000\n",
- "-118.210000,33.800000,45.000000,1160.000000,274.000000,1095.000000,269.000000,2.730800,139000.000000\n",
- "-122.080000,37.640000,30.000000,5267.000000,1253.000000,4065.000000,1113.000000,3.347900,182100.000000\n",
- "-118.380000,34.140000,40.000000,1965.000000,354.000000,666.000000,357.000000,6.087600,483800.000000\n",
- "-118.200000,33.800000,45.000000,2456.000000,495.000000,1300.000000,450.000000,3.979200,210200.000000\n",
- "-117.620000,33.430000,27.000000,3858.000000,1062.000000,2321.000000,873.000000,3.315500,231000.000000\n",
- "-122.110000,37.400000,31.000000,2836.000000,490.000000,1138.000000,481.000000,4.951900,500001.000000\n",
- "-122.840000,38.980000,21.000000,939.000000,176.000000,556.000000,178.000000,1.719600,75000.000000\n",
- "-121.260000,38.270000,20.000000,1314.000000,229.000000,712.000000,219.000000,4.412500,144600.000000\n",
- "-116.890000,33.730000,15.000000,2094.000000,316.000000,937.000000,277.000000,5.362300,201300.000000\n",
- "-122.670000,38.440000,32.000000,3771.000000,741.000000,1786.000000,721.000000,3.241500,172200.000000\n",
- "-117.940000,33.870000,46.000000,2066.000000,450.000000,1275.000000,448.000000,3.937500,187000.000000\n",
- "-118.140000,34.690000,34.000000,1439.000000,327.000000,708.000000,298.000000,3.269900,100000.000000\n",
- "-122.400000,37.590000,22.000000,2754.000000,477.000000,1163.000000,479.000000,6.230600,500001.000000\n",
- "-118.080000,33.840000,28.000000,4216.000000,948.000000,2997.000000,896.000000,3.796100,162700.000000\n",
- "-116.360000,33.780000,6.000000,24121.000000,4522.000000,4176.000000,2221.000000,3.379900,239300.000000\n",
- "-117.940000,33.850000,26.000000,1888.000000,429.000000,1550.000000,458.000000,3.339300,168600.000000\n",
- "-117.470000,33.940000,34.000000,559.000000,139.000000,532.000000,137.000000,3.068700,88500.000000\n",
- "-117.640000,33.650000,4.000000,6842.000000,1512.000000,3256.000000,1439.000000,5.413200,216600.000000\n",
- "-118.500000,34.240000,34.000000,2634.000000,412.000000,1114.000000,423.000000,5.940100,315300.000000\n",
- "-118.190000,33.780000,24.000000,225.000000,72.000000,439.000000,71.000000,2.853300,137500.000000\n",
- "-117.660000,34.120000,16.000000,3853.000000,541.000000,1726.000000,497.000000,6.119500,251100.000000\n",
- "-122.300000,37.970000,34.000000,2854.000000,528.000000,1211.000000,452.000000,3.535300,164700.000000\n",
- "-122.140000,37.680000,31.000000,3184.000000,716.000000,1561.000000,628.000000,2.795500,183100.000000\n",
- "-118.260000,33.940000,41.000000,1510.000000,410.000000,1408.000000,389.000000,1.650000,94200.000000\n",
- "-118.230000,33.930000,39.000000,2065.000000,532.000000,2015.000000,535.000000,0.847800,104900.000000\n",
- "-120.960000,38.660000,11.000000,2339.000000,436.000000,1062.000000,380.000000,3.903600,180800.000000\n",
- "-117.840000,35.350000,28.000000,1913.000000,486.000000,858.000000,371.000000,1.996200,50800.000000\n",
- "-119.160000,34.200000,35.000000,2183.000000,636.000000,3504.000000,623.000000,1.970400,160300.000000\n",
- "-122.650000,38.230000,52.000000,1735.000000,347.000000,712.000000,343.000000,3.171100,200800.000000\n",
- "-121.880000,37.370000,14.000000,6016.000000,1404.000000,3258.000000,1316.000000,3.574500,333700.000000\n",
- "-118.400000,34.040000,43.000000,3863.000000,537.000000,1398.000000,511.000000,8.593800,500001.000000\n",
- "-118.270000,34.110000,36.000000,1832.000000,539.000000,934.000000,486.000000,3.052100,276600.000000\n",
- "-118.440000,34.300000,38.000000,1595.000000,314.000000,1181.000000,327.000000,3.400000,155500.000000\n",
- "-121.770000,37.680000,41.000000,1501.000000,299.000000,629.000000,288.000000,4.680600,209400.000000\n",
- "-119.990000,38.880000,17.000000,2807.000000,529.000000,675.000000,251.000000,2.745700,107800.000000\n",
- "-118.360000,33.960000,26.000000,3543.000000,1055.000000,2742.000000,951.000000,2.550400,151300.000000\n",
- "-118.320000,33.970000,52.000000,1778.000000,320.000000,795.000000,279.000000,3.511400,138800.000000\n",
- "-118.270000,34.270000,27.000000,5205.000000,859.000000,2363.000000,888.000000,6.194600,276100.000000\n",
- "-116.810000,33.900000,17.000000,2009.000000,469.000000,820.000000,381.000000,1.328600,81800.000000\n",
- "-118.390000,33.960000,45.000000,1436.000000,374.000000,662.000000,292.000000,3.625000,329400.000000\n",
- "-118.070000,33.910000,29.000000,2387.000000,570.000000,1978.000000,548.000000,3.195700,159200.000000\n",
- "-118.350000,34.220000,30.000000,1260.000000,222.000000,638.000000,229.000000,4.130200,258300.000000\n",
- "-118.430000,34.020000,41.000000,2403.000000,516.000000,1001.000000,514.000000,4.390600,500001.000000\n",
- "-121.730000,37.680000,17.000000,20354.000000,3493.000000,8768.000000,3293.000000,5.449600,238900.000000\n",
- "-117.310000,32.980000,17.000000,2789.000000,648.000000,849.000000,345.000000,4.101200,244700.000000\n",
- "-122.290000,37.560000,12.000000,6474.000000,1467.000000,2516.000000,1390.000000,5.035300,305800.000000\n",
- "-119.690000,34.380000,39.000000,1383.000000,459.000000,677.000000,362.000000,2.250000,281300.000000\n",
- "-122.070000,38.000000,37.000000,978.000000,202.000000,462.000000,184.000000,3.625000,156300.000000\n",
- "-118.050000,34.160000,41.000000,3320.000000,713.000000,1236.000000,659.000000,3.569400,278600.000000\n",
- "-122.070000,37.660000,28.000000,2280.000000,610.000000,1255.000000,587.000000,2.671900,161200.000000\n",
- "-121.800000,37.270000,10.000000,3301.000000,593.000000,2190.000000,575.000000,6.223000,260700.000000\n",
- "-122.690000,38.340000,23.000000,2846.000000,516.000000,1526.000000,492.000000,3.733000,163500.000000\n",
- "-117.080000,32.700000,35.000000,1477.000000,264.000000,852.000000,279.000000,3.178600,100600.000000\n",
- "-119.760000,36.730000,46.000000,1347.000000,282.000000,854.000000,267.000000,1.872300,52600.000000\n",
- "-118.370000,34.050000,52.000000,1563.000000,306.000000,776.000000,308.000000,3.625000,440900.000000\n",
- "-122.700000,38.350000,14.000000,1555.000000,369.000000,493.000000,335.000000,1.603300,67500.000000\n",
- "-118.130000,34.010000,45.000000,1179.000000,268.000000,736.000000,252.000000,2.708300,161800.000000\n",
- "-119.350000,36.210000,26.000000,2481.000000,586.000000,1445.000000,498.000000,1.637800,60300.000000\n",
- "-117.670000,34.030000,20.000000,8561.000000,1411.000000,4861.000000,1450.000000,4.705600,165500.000000\n",
- "-117.970000,34.150000,33.000000,2474.000000,472.000000,1268.000000,437.000000,6.457600,500001.000000\n",
- "-118.080000,34.080000,38.000000,1889.000000,407.000000,1330.000000,396.000000,3.921900,205200.000000\n",
- "-121.230000,38.780000,13.000000,3813.000000,871.000000,1513.000000,783.000000,2.080700,142600.000000\n",
- "-118.200000,34.020000,49.000000,1098.000000,317.000000,1411.000000,301.000000,2.750000,146000.000000\n",
- "-118.170000,34.020000,41.000000,676.000000,216.000000,851.000000,199.000000,2.307700,140600.000000\n",
- "-117.800000,34.060000,34.000000,1081.000000,205.000000,1325.000000,252.000000,3.629800,108500.000000\n",
- "-118.300000,33.970000,46.000000,1425.000000,317.000000,1140.000000,304.000000,3.375000,98500.000000\n",
- "-122.470000,37.690000,30.000000,837.000000,213.000000,606.000000,199.000000,4.875000,258800.000000\n",
- "-118.200000,33.960000,44.000000,2144.000000,477.000000,1760.000000,452.000000,2.322100,161600.000000\n",
- "-117.130000,32.910000,16.000000,2715.000000,581.000000,1619.000000,584.000000,4.000000,154700.000000\n",
- "-119.770000,36.810000,25.000000,1565.000000,271.000000,661.000000,275.000000,3.427900,84700.000000\n",
- "-118.470000,34.250000,21.000000,2692.000000,477.000000,1330.000000,456.000000,4.541700,238900.000000\n",
- "-122.250000,37.800000,42.000000,4120.000000,1065.000000,1715.000000,1015.000000,2.934500,225000.000000\n",
- "-118.500000,34.170000,37.000000,880.000000,154.000000,369.000000,155.000000,4.142900,303600.000000\n",
- "-122.240000,37.490000,38.000000,4105.000000,950.000000,2561.000000,909.000000,3.868400,265600.000000\n",
- "-117.150000,32.930000,16.000000,2718.000000,438.000000,1515.000000,431.000000,5.143300,185300.000000\n",
- "-120.850000,37.770000,35.000000,404.000000,96.000000,261.000000,100.000000,2.458300,75000.000000\n",
- "-122.250000,37.830000,35.000000,1613.000000,428.000000,675.000000,422.000000,3.472200,243100.000000\n",
- "-118.330000,33.770000,33.000000,4244.000000,595.000000,1534.000000,557.000000,9.821400,500001.000000\n",
- "-124.150000,40.780000,41.000000,2127.000000,358.000000,911.000000,349.000000,3.171100,104200.000000\n",
- "-117.940000,33.790000,24.000000,4179.000000,784.000000,1902.000000,733.000000,4.798600,236500.000000\n",
- "-121.590000,39.150000,5.000000,1922.000000,489.000000,938.000000,439.000000,2.047400,61300.000000\n",
- "-122.690000,38.440000,31.000000,1808.000000,315.000000,691.000000,280.000000,3.858300,193200.000000\n",
- "-122.510000,38.760000,9.000000,2589.000000,482.000000,1050.000000,374.000000,4.043500,132600.000000\n",
- "-117.890000,33.610000,45.000000,1883.000000,419.000000,653.000000,328.000000,4.222200,500001.000000\n",
- "-117.190000,32.770000,9.000000,634.000000,152.000000,248.000000,133.000000,3.857100,143800.000000\n",
- "-117.150000,32.750000,40.000000,2261.000000,579.000000,903.000000,525.000000,2.465000,198700.000000\n",
- "-122.210000,37.480000,20.000000,505.000000,216.000000,326.000000,216.000000,2.928600,237500.000000\n",
- "-118.250000,33.790000,38.000000,1730.000000,460.000000,1724.000000,424.000000,2.730800,150400.000000\n",
- "-120.490000,40.310000,16.000000,1821.000000,360.000000,969.000000,359.000000,3.464300,85100.000000\n",
- "-118.300000,33.740000,20.000000,2625.000000,673.000000,1184.000000,606.000000,3.916700,285200.000000\n",
- "-117.140000,32.700000,47.000000,552.000000,161.000000,593.000000,174.000000,0.958900,90000.000000\n",
- "-121.300000,37.970000,52.000000,2259.000000,417.000000,766.000000,385.000000,2.298100,105400.000000\n",
- "-119.780000,36.750000,31.000000,1404.000000,379.000000,1515.000000,387.000000,1.281300,56400.000000\n",
- "-118.380000,34.180000,32.000000,3553.000000,1060.000000,3129.000000,1010.000000,2.560300,174200.000000\n",
- "-118.130000,34.100000,24.000000,4670.000000,1185.000000,2478.000000,1107.000000,3.197500,252400.000000\n",
- "-118.300000,33.730000,42.000000,1731.000000,435.000000,866.000000,403.000000,2.745100,255400.000000\n",
- "-118.440000,33.990000,44.000000,305.000000,72.000000,156.000000,70.000000,5.964100,275000.000000\n",
- "-117.480000,34.080000,17.000000,1834.000000,390.000000,1253.000000,357.000000,3.102800,106400.000000\n",
- "-122.350000,37.970000,31.000000,2892.000000,685.000000,2104.000000,641.000000,3.218800,113800.000000\n",
- "-119.710000,34.410000,31.000000,1034.000000,319.000000,997.000000,308.000000,2.653800,231800.000000\n",
- "-116.920000,32.810000,23.000000,2668.000000,528.000000,1510.000000,524.000000,3.366900,158900.000000\n",
- "-122.110000,37.660000,35.000000,2843.000000,652.000000,1726.000000,643.000000,3.090000,174100.000000\n",
- "-117.410000,33.940000,29.000000,3181.000000,714.000000,1603.000000,706.000000,3.250000,112500.000000\n",
- "-122.450000,37.740000,38.000000,5688.000000,930.000000,2263.000000,908.000000,6.203000,346800.000000\n",
- "-118.360000,33.800000,38.000000,2553.000000,400.000000,1042.000000,393.000000,6.974200,500001.000000\n",
- "-121.660000,36.680000,10.000000,913.000000,265.000000,508.000000,251.000000,0.991400,147500.000000\n",
- "-122.420000,37.760000,52.000000,2038.000000,629.000000,2007.000000,596.000000,2.570100,266700.000000\n",
- "-118.290000,34.050000,30.000000,1417.000000,589.000000,1615.000000,540.000000,1.386700,193800.000000\n",
- "-119.820000,34.430000,15.000000,1482.000000,345.000000,669.000000,379.000000,3.077300,112500.000000\n",
- "-119.340000,36.220000,38.000000,2708.000000,460.000000,1260.000000,455.000000,3.090500,78200.000000\n",
- "-121.500000,38.610000,5.000000,1395.000000,373.000000,638.000000,322.000000,2.674500,225000.000000\n",
- "-121.880000,37.460000,5.000000,1819.000000,245.000000,802.000000,228.000000,10.972200,500001.000000\n",
- "-118.270000,33.940000,34.000000,721.000000,165.000000,661.000000,171.000000,2.078900,92400.000000\n",
- "-122.170000,37.730000,46.000000,2163.000000,470.000000,925.000000,435.000000,3.250000,177500.000000\n",
- "-122.220000,37.850000,28.000000,5287.000000,1048.000000,2031.000000,956.000000,5.457000,337300.000000\n",
- "-117.200000,32.830000,36.000000,1089.000000,240.000000,623.000000,226.000000,2.590900,176000.000000\n",
- "-120.690000,35.490000,16.000000,2666.000000,450.000000,1203.000000,429.000000,4.137500,222400.000000\n",
- "-122.700000,38.970000,17.000000,2554.000000,540.000000,723.000000,319.000000,3.237500,114200.000000\n",
- "-118.370000,34.150000,29.000000,2630.000000,617.000000,1071.000000,573.000000,3.366900,376100.000000\n",
- "-118.350000,34.000000,40.000000,2894.000000,395.000000,1063.000000,409.000000,6.939000,372000.000000\n",
- "-118.390000,37.360000,38.000000,1813.000000,410.000000,902.000000,396.000000,2.326100,98400.000000\n",
- "-118.110000,34.200000,36.000000,4915.000000,725.000000,1897.000000,700.000000,6.827000,359400.000000\n",
- "-121.720000,36.810000,18.000000,1984.000000,379.000000,1078.000000,359.000000,3.296900,229900.000000\n",
- "-118.520000,34.160000,39.000000,2693.000000,478.000000,1219.000000,435.000000,5.170000,335400.000000\n",
- "-118.120000,33.900000,35.000000,3478.000000,730.000000,1885.000000,673.000000,2.937500,206500.000000\n",
- "-119.690000,36.790000,5.000000,2613.000000,476.000000,1490.000000,481.000000,4.099300,83000.000000\n",
- "-118.030000,33.780000,26.000000,2001.000000,302.000000,836.000000,298.000000,5.106100,257500.000000\n",
- "-120.670000,35.620000,6.000000,12779.000000,2441.000000,6085.000000,2157.000000,3.866100,168100.000000\n",
- "-118.430000,34.030000,36.000000,1552.000000,388.000000,867.000000,352.000000,3.646700,346700.000000\n",
- "-121.620000,39.130000,41.000000,1147.000000,243.000000,583.000000,239.000000,2.243100,63400.000000\n",
- "-118.970000,37.640000,13.000000,1907.000000,544.000000,575.000000,234.000000,3.068500,162500.000000\n",
- "-117.250000,32.740000,36.000000,3548.000000,956.000000,1648.000000,866.000000,2.696200,288200.000000\n",
- "-122.280000,37.800000,52.000000,215.000000,87.000000,904.000000,88.000000,0.866800,137500.000000\n",
- "-118.190000,34.140000,38.000000,1826.000000,300.000000,793.000000,297.000000,5.296200,291500.000000\n",
- "-117.900000,33.850000,32.000000,1605.000000,314.000000,986.000000,306.000000,3.337500,186200.000000\n",
- "-119.020000,37.640000,14.000000,5919.000000,1278.000000,265.000000,112.000000,3.243100,221400.000000\n",
- "-118.370000,34.200000,34.000000,2199.000000,609.000000,2488.000000,597.000000,2.986100,171800.000000\n",
- "-122.410000,37.750000,52.000000,1057.000000,276.000000,837.000000,292.000000,2.453100,229000.000000\n",
- "-117.940000,33.920000,28.000000,639.000000,179.000000,1062.000000,169.000000,3.058800,145200.000000\n",
- "-118.220000,34.120000,28.000000,3306.000000,1025.000000,2670.000000,942.000000,3.091900,185400.000000\n",
- "-117.240000,34.040000,4.000000,4289.000000,682.000000,1981.000000,705.000000,5.336600,165100.000000\n",
- "-122.080000,37.660000,33.000000,1547.000000,372.000000,1063.000000,356.000000,2.562500,154300.000000\n",
- "-122.280000,37.850000,48.000000,2063.000000,484.000000,1054.000000,466.000000,2.262500,132900.000000\n",
- "-118.210000,33.900000,35.000000,2420.000000,579.000000,2010.000000,540.000000,2.081700,104600.000000\n",
- "-118.010000,33.920000,35.000000,1606.000000,289.000000,829.000000,273.000000,5.273000,187600.000000\n",
- "-118.290000,34.180000,10.000000,4292.000000,1075.000000,2719.000000,987.000000,3.697400,286600.000000\n",
- "-118.210000,33.960000,48.000000,284.000000,104.000000,422.000000,119.000000,1.282600,145500.000000\n",
- "-117.230000,32.810000,28.000000,1508.000000,263.000000,996.000000,267.000000,3.802600,270000.000000\n",
- "-117.030000,33.130000,15.000000,7000.000000,1185.000000,3555.000000,1118.000000,4.702200,172800.000000\n",
- "-121.850000,37.220000,21.000000,6203.000000,798.000000,2494.000000,800.000000,7.720100,362700.000000\n",
- "-122.400000,37.720000,47.000000,1465.000000,306.000000,1119.000000,315.000000,4.267200,219400.000000\n",
- "-120.470000,34.980000,6.000000,5762.000000,1115.000000,2551.000000,919.000000,3.072300,137300.000000\n",
- "-121.140000,37.480000,6.000000,1772.000000,332.000000,1011.000000,331.000000,3.704500,128100.000000\n",
- "-119.340000,36.620000,26.000000,1922.000000,339.000000,1148.000000,332.000000,2.605800,92200.000000\n",
- "-117.660000,34.080000,36.000000,1485.000000,236.000000,623.000000,261.000000,3.303600,141000.000000\n",
- "-116.840000,33.080000,15.000000,2755.000000,519.000000,1474.000000,460.000000,4.040800,225900.000000\n",
- "-118.290000,34.050000,11.000000,677.000000,370.000000,1143.000000,341.000000,2.386400,350000.000000\n",
- "-119.980000,38.940000,23.000000,1564.000000,298.000000,339.000000,147.000000,4.041700,99300.000000\n",
- "-118.100000,33.910000,35.000000,1653.000000,325.000000,1072.000000,301.000000,3.270800,159700.000000\n",
- "-120.070000,36.960000,42.000000,963.000000,216.000000,471.000000,211.000000,2.289800,66100.000000\n",
- "-119.110000,35.390000,22.000000,984.000000,176.000000,451.000000,170.000000,3.250000,88900.000000\n",
- "-117.720000,34.100000,46.000000,2477.000000,458.000000,1034.000000,455.000000,5.500000,289700.000000\n",
- "-117.900000,33.650000,30.000000,2196.000000,486.000000,1131.000000,460.000000,4.413500,272300.000000\n",
- "-121.980000,37.290000,31.000000,2750.000000,664.000000,1459.000000,660.000000,3.228700,264900.000000\n",
- "-122.030000,36.960000,32.000000,2182.000000,406.000000,1122.000000,370.000000,3.520000,284200.000000\n",
- "-117.420000,34.080000,21.000000,4460.000000,930.000000,2657.000000,839.000000,2.756900,127500.000000\n",
- "-117.660000,34.110000,19.000000,3445.000000,661.000000,1635.000000,580.000000,5.068100,230500.000000\n",
- "-119.290000,34.240000,27.000000,4742.000000,775.000000,1682.000000,696.000000,6.194000,500001.000000\n",
- "-117.020000,32.710000,20.000000,4050.000000,745.000000,2870.000000,761.000000,3.736600,121800.000000\n",
- "-122.850000,38.620000,16.000000,4418.000000,704.000000,1908.000000,697.000000,4.591300,244600.000000\n",
- "-118.330000,33.910000,35.000000,1092.000000,302.000000,962.000000,297.000000,3.590300,183300.000000\n",
- "-118.400000,34.020000,40.000000,593.000000,137.000000,371.000000,132.000000,4.693200,332800.000000\n",
- "-118.380000,33.840000,26.000000,2869.000000,567.000000,1157.000000,538.000000,6.038200,355300.000000\n",
- "-118.050000,34.110000,42.000000,3677.000000,627.000000,1779.000000,622.000000,5.150900,426500.000000\n",
- "-117.430000,33.930000,36.000000,2386.000000,396.000000,1176.000000,374.000000,4.512200,113300.000000\n",
- "-118.100000,34.160000,44.000000,2795.000000,496.000000,1235.000000,469.000000,4.238600,283700.000000\n",
- "-122.530000,37.860000,38.000000,1183.000000,196.000000,628.000000,205.000000,3.750000,478600.000000\n",
- "-118.300000,33.970000,42.000000,944.000000,200.000000,567.000000,190.000000,2.631100,124100.000000\n",
- "-118.200000,33.890000,37.000000,2394.000000,568.000000,2499.000000,551.000000,2.532100,105100.000000\n",
- "-118.020000,34.150000,44.000000,2419.000000,437.000000,1045.000000,432.000000,3.875000,280800.000000\n",
- "-121.530000,39.520000,30.000000,1030.000000,161.000000,448.000000,159.000000,2.482100,73800.000000\n",
- "-117.920000,33.900000,13.000000,1814.000000,320.000000,1010.000000,313.000000,6.348900,337900.000000\n",
- "-118.370000,34.210000,33.000000,2034.000000,470.000000,1990.000000,423.000000,3.745500,159600.000000\n",
- "-118.040000,33.850000,18.000000,3628.000000,546.000000,1922.000000,544.000000,7.505700,328500.000000\n",
- "-118.460000,33.980000,19.000000,2520.000000,726.000000,964.000000,663.000000,3.806800,500001.000000\n",
- "-118.050000,33.900000,36.000000,1047.000000,227.000000,975.000000,239.000000,3.189700,155000.000000\n",
- "-122.950000,40.710000,26.000000,2231.000000,421.000000,987.000000,364.000000,2.479200,88800.000000\n",
- "-122.000000,37.300000,28.000000,5096.000000,1011.000000,2588.000000,954.000000,5.357000,355200.000000\n",
- "-121.860000,37.400000,21.000000,1386.000000,260.000000,946.000000,257.000000,6.522600,258500.000000\n",
- "-119.250000,36.560000,35.000000,1675.000000,373.000000,1131.000000,316.000000,1.672200,59100.000000\n",
- "-118.210000,34.560000,12.000000,2472.000000,408.000000,1048.000000,380.000000,4.709700,262100.000000\n",
- "-118.260000,34.020000,39.000000,698.000000,232.000000,1046.000000,228.000000,2.235600,119500.000000\n",
- "-117.280000,34.150000,32.000000,2170.000000,430.000000,815.000000,401.000000,3.176500,135000.000000\n",
- "-122.440000,37.660000,21.000000,5108.000000,1510.000000,3288.000000,1405.000000,3.192700,252600.000000\n",
- "-118.990000,35.390000,36.000000,1438.000000,348.000000,1054.000000,341.000000,1.831900,55400.000000\n",
- "-117.140000,34.060000,15.000000,3057.000000,510.000000,1154.000000,460.000000,3.974100,141100.000000\n",
- "-122.150000,37.410000,15.000000,2577.000000,360.000000,979.000000,364.000000,10.476000,500001.000000\n",
- "-121.200000,38.670000,26.000000,1546.000000,287.000000,773.000000,299.000000,2.980300,115400.000000\n",
- "-122.150000,37.470000,37.000000,1844.000000,382.000000,1634.000000,417.000000,2.799300,145500.000000\n",
- "-118.340000,33.950000,25.000000,3762.000000,1281.000000,4015.000000,1178.000000,2.158700,143800.000000\n",
- "-118.250000,34.080000,44.000000,1425.000000,438.000000,1121.000000,374.000000,2.110800,200000.000000\n",
- "-119.580000,36.100000,21.000000,1382.000000,327.000000,1469.000000,355.000000,1.396700,46500.000000\n",
- "-121.310000,38.710000,18.000000,3998.000000,744.000000,2071.000000,660.000000,4.383600,102000.000000\n",
- "-118.420000,34.120000,27.000000,2089.000000,303.000000,654.000000,270.000000,12.376700,500001.000000\n",
- "-117.180000,34.060000,52.000000,954.000000,233.000000,533.000000,239.000000,1.302100,100000.000000\n",
- "-115.900000,32.690000,18.000000,414.000000,86.000000,98.000000,54.000000,1.541700,57500.000000\n",
- "-118.360000,33.980000,46.000000,1425.000000,283.000000,782.000000,273.000000,5.057000,246300.000000\n",
- "-122.500000,37.600000,35.000000,2197.000000,369.000000,971.000000,326.000000,4.250000,241700.000000\n",
- "-121.500000,36.810000,20.000000,1345.000000,230.000000,731.000000,217.000000,4.233300,363300.000000\n",
- "-118.190000,33.820000,11.000000,872.000000,203.000000,422.000000,221.000000,4.636400,156300.000000\n",
- "-117.300000,34.150000,40.000000,961.000000,199.000000,509.000000,182.000000,2.060000,85500.000000\n",
- "-118.420000,34.230000,34.000000,1531.000000,278.000000,1064.000000,274.000000,5.668700,207300.000000\n",
- "-118.120000,33.900000,38.000000,1222.000000,282.000000,756.000000,256.000000,4.125000,173900.000000\n",
- "-119.800000,36.790000,45.000000,1337.000000,187.000000,471.000000,187.000000,5.187000,153800.000000\n",
- "-119.740000,34.350000,34.000000,1664.000000,292.000000,705.000000,257.000000,5.000000,329400.000000\n",
- "-121.970000,37.970000,26.000000,1977.000000,264.000000,817.000000,273.000000,5.751200,240200.000000\n",
- "-117.070000,34.050000,14.000000,5764.000000,1006.000000,1876.000000,841.000000,1.969400,173200.000000\n",
- "-122.290000,37.820000,2.000000,158.000000,43.000000,94.000000,57.000000,2.562500,60000.000000\n",
- "-116.310000,33.650000,8.000000,3079.000000,558.000000,1572.000000,474.000000,4.593800,102600.000000\n",
- "-118.270000,34.010000,43.000000,1235.000000,385.000000,1745.000000,372.000000,2.081700,113300.000000\n",
- "-122.440000,37.760000,52.000000,1968.000000,472.000000,784.000000,430.000000,3.370200,370000.000000\n",
- "-118.270000,34.150000,14.000000,1744.000000,536.000000,1494.000000,531.000000,3.217100,230800.000000\n",
- "-118.410000,34.030000,36.000000,3053.000000,635.000000,1234.000000,577.000000,5.163700,500001.000000\n",
- "-121.450000,38.610000,32.000000,2436.000000,612.000000,1509.000000,618.000000,1.042400,81400.000000\n",
- "-117.250000,32.830000,17.000000,2075.000000,262.000000,704.000000,241.000000,10.952900,500001.000000\n",
- "-119.800000,36.820000,24.000000,5377.000000,1005.000000,2010.000000,982.000000,3.454200,121200.000000\n",
- "-121.310000,38.010000,22.000000,2101.000000,514.000000,1304.000000,511.000000,2.834800,101600.000000\n",
- "-118.180000,34.050000,41.000000,762.000000,147.000000,817.000000,176.000000,3.750000,123100.000000\n",
- "-122.130000,37.370000,30.000000,2139.000000,260.000000,742.000000,242.000000,11.806000,500001.000000\n",
- "-119.750000,36.780000,28.000000,3257.000000,752.000000,1981.000000,712.000000,2.293000,71700.000000\n",
- "-117.090000,32.740000,42.000000,1986.000000,472.000000,1472.000000,475.000000,2.175700,110100.000000\n",
- "-122.020000,37.330000,25.000000,3823.000000,584.000000,1689.000000,571.000000,7.369300,373600.000000\n",
- "-117.200000,32.840000,34.000000,3353.000000,544.000000,1583.000000,571.000000,4.550000,187700.000000\n",
- "-118.140000,34.010000,46.000000,1746.000000,447.000000,1296.000000,392.000000,2.392900,156800.000000\n",
- "-122.430000,37.780000,29.000000,1310.000000,364.000000,1009.000000,379.000000,1.384400,177500.000000\n",
- "-118.100000,34.010000,29.000000,2077.000000,564.000000,2087.000000,543.000000,2.660000,189200.000000\n",
- "-118.350000,34.100000,20.000000,2745.000000,782.000000,1161.000000,739.000000,3.904400,436400.000000\n",
- "-118.000000,33.810000,33.000000,2970.000000,547.000000,1869.000000,539.000000,4.363600,201800.000000\n",
- "-121.460000,38.560000,52.000000,1750.000000,372.000000,764.000000,369.000000,2.919100,111800.000000\n",
- "-118.270000,33.870000,21.000000,6108.000000,1130.000000,3244.000000,1113.000000,4.276800,181400.000000\n",
- "-118.260000,33.950000,44.000000,1771.000000,378.000000,1296.000000,399.000000,1.638900,96700.000000\n",
- "-119.010000,35.380000,52.000000,114.000000,26.000000,158.000000,26.000000,1.075000,67500.000000\n",
- "-117.080000,32.800000,32.000000,1587.000000,268.000000,635.000000,249.000000,3.375000,178100.000000\n",
- "-122.200000,40.260000,15.000000,2102.000000,358.000000,957.000000,371.000000,3.190800,137900.000000\n",
- "-119.980000,38.940000,25.000000,1339.000000,328.000000,503.000000,219.000000,1.901800,109700.000000\n",
- "-122.530000,37.950000,22.000000,7446.000000,1979.000000,2980.000000,1888.000000,3.583800,271300.000000\n",
- "-118.300000,34.050000,51.000000,1005.000000,314.000000,1227.000000,306.000000,2.429700,162500.000000\n",
- "-121.860000,39.750000,18.000000,1651.000000,309.000000,856.000000,293.000000,3.504600,118300.000000\n",
- "-122.060000,37.330000,23.000000,4507.000000,751.000000,2167.000000,722.000000,7.010200,500001.000000\n",
- "-122.450000,38.010000,36.000000,4501.000000,832.000000,2196.000000,800.000000,4.318200,252700.000000\n",
- "-117.010000,32.770000,24.000000,2311.000000,536.000000,1005.000000,525.000000,2.900000,185200.000000\n",
- "-120.870000,37.760000,16.000000,1174.000000,249.000000,601.000000,242.000000,1.714300,113300.000000\n",
- "-121.790000,38.540000,7.000000,1777.000000,513.000000,4479.000000,504.000000,1.465300,310000.000000\n",
- "-117.810000,33.820000,22.000000,2898.000000,335.000000,1057.000000,324.000000,10.811100,500001.000000\n",
- "-117.590000,33.660000,3.000000,1206.000000,256.000000,563.000000,287.000000,5.158900,167800.000000\n",
- "-117.360000,34.090000,32.000000,3616.000000,631.000000,2131.000000,593.000000,3.287900,95500.000000\n",
- "-121.520000,39.500000,33.000000,1462.000000,241.000000,569.000000,231.000000,3.283300,82600.000000\n",
- "-122.270000,37.840000,52.000000,1503.000000,298.000000,690.000000,275.000000,2.603300,162900.000000\n",
- "-122.210000,40.200000,19.000000,3404.000000,731.000000,1421.000000,683.000000,2.614900,84400.000000\n",
- "-117.240000,33.180000,19.000000,3337.000000,565.000000,1646.000000,554.000000,5.019500,200200.000000\n",
- "-122.550000,37.980000,31.000000,3807.000000,828.000000,1581.000000,795.000000,3.293000,337500.000000\n",
- "-118.450000,34.000000,46.000000,1777.000000,362.000000,896.000000,334.000000,4.450000,348300.000000\n",
- "-117.880000,33.850000,34.000000,1127.000000,185.000000,588.000000,181.000000,4.375000,224700.000000\n",
- "-117.180000,32.760000,52.000000,2023.000000,301.000000,649.000000,285.000000,4.739600,441700.000000\n",
- "-118.300000,33.880000,29.000000,850.000000,229.000000,563.000000,204.000000,3.737500,247700.000000\n",
- "-122.040000,38.280000,12.000000,3861.000000,795.000000,2129.000000,806.000000,3.676000,135000.000000\n",
- "-122.430000,40.470000,16.000000,3552.000000,704.000000,1801.000000,658.000000,2.149600,97700.000000\n",
- "-118.380000,33.860000,24.000000,3124.000000,560.000000,1312.000000,542.000000,6.302100,333800.000000\n",
- "-119.570000,36.090000,6.000000,2015.000000,413.000000,992.000000,319.000000,2.388900,53200.000000\n",
- "-117.870000,34.120000,34.000000,1004.000000,220.000000,772.000000,217.000000,3.857100,174500.000000\n",
- "-116.880000,32.810000,35.000000,2926.000000,562.000000,1590.000000,506.000000,4.201400,143200.000000\n",
- "-118.580000,34.210000,13.000000,6227.000000,1317.000000,3739.000000,1226.000000,4.031300,299300.000000\n",
- "-122.040000,37.880000,32.000000,3250.000000,550.000000,1230.000000,557.000000,4.642400,312700.000000\n",
- "-122.440000,37.720000,52.000000,1775.000000,347.000000,1102.000000,367.000000,4.312500,267200.000000\n",
- "-121.810000,37.370000,26.000000,2987.000000,539.000000,1931.000000,518.000000,5.109900,213100.000000\n",
- "-122.500000,37.770000,52.000000,2433.000000,454.000000,1070.000000,420.000000,4.125000,359500.000000\n",
- "-121.940000,37.940000,26.000000,1299.000000,174.000000,533.000000,180.000000,6.229600,291700.000000\n",
- "-118.450000,34.120000,20.000000,10722.000000,1617.000000,3731.000000,1511.000000,9.744900,500001.000000\n",
- "-121.700000,39.070000,26.000000,2668.000000,510.000000,1437.000000,505.000000,3.312500,100000.000000\n",
- "-118.100000,34.650000,33.000000,873.000000,177.000000,425.000000,142.000000,2.670000,187500.000000\n",
- "-119.020000,36.060000,41.000000,2279.000000,538.000000,1908.000000,511.000000,1.395200,43100.000000\n",
- "-118.060000,34.080000,42.000000,1988.000000,402.000000,1239.000000,402.000000,3.256900,201500.000000\n",
- "-117.660000,33.610000,17.000000,3464.000000,519.000000,1713.000000,530.000000,6.047100,248400.000000\n",
- "-117.400000,33.940000,30.000000,1198.000000,251.000000,1019.000000,214.000000,3.050900,82700.000000\n",
- "-118.190000,33.830000,30.000000,2246.000000,552.000000,1032.000000,548.000000,3.587100,347100.000000\n",
- "-121.550000,39.510000,50.000000,1050.000000,288.000000,485.000000,260.000000,1.160700,51700.000000\n",
- "-121.980000,37.140000,37.000000,74.000000,19.000000,63.000000,17.000000,9.590800,350000.000000\n",
- "-117.060000,32.610000,24.000000,4369.000000,1353.000000,3123.000000,1247.000000,2.057100,152300.000000\n",
- "-118.320000,34.040000,39.000000,2965.000000,812.000000,2638.000000,794.000000,2.532000,172700.000000\n",
- "-117.130000,32.760000,41.000000,1545.000000,420.000000,747.000000,415.000000,2.375000,154400.000000\n",
- "-122.500000,37.760000,46.000000,2226.000000,480.000000,1272.000000,468.000000,4.264400,284100.000000\n",
- "-120.870000,37.620000,30.000000,455.000000,70.000000,220.000000,69.000000,4.895800,142500.000000\n",
- "-118.240000,34.220000,41.000000,2476.000000,506.000000,1271.000000,485.000000,3.453100,263900.000000\n",
- "-117.690000,33.480000,25.000000,3240.000000,481.000000,1462.000000,497.000000,6.181500,288500.000000\n",
- "-122.200000,39.750000,18.000000,2603.000000,576.000000,1616.000000,588.000000,2.019200,63700.000000\n",
- "-117.080000,32.640000,43.000000,1005.000000,230.000000,548.000000,252.000000,1.867200,145800.000000\n",
- "-117.910000,33.820000,32.000000,1408.000000,307.000000,1331.000000,284.000000,3.701400,179600.000000\n",
- "-122.000000,38.730000,31.000000,371.000000,74.000000,208.000000,84.000000,3.875000,137500.000000\n",
- "-118.290000,33.840000,33.000000,896.000000,208.000000,843.000000,200.000000,3.500000,183000.000000\n",
- "-118.130000,33.860000,45.000000,1320.000000,256.000000,645.000000,256.000000,4.400000,209500.000000\n",
- "-118.350000,33.890000,29.000000,2940.000000,708.000000,2175.000000,684.000000,3.648600,229000.000000\n",
- "-122.130000,40.010000,21.000000,916.000000,194.000000,451.000000,178.000000,2.125000,63300.000000\n",
- "-122.070000,37.960000,37.000000,1217.000000,199.000000,552.000000,194.000000,5.044500,196200.000000\n",
- "-117.260000,32.850000,30.000000,3652.000000,499.000000,978.000000,462.000000,8.237400,500001.000000\n",
- "-117.870000,33.740000,16.000000,1243.000000,365.000000,1925.000000,376.000000,2.763200,158900.000000\n",
- "-121.880000,37.440000,23.000000,1310.000000,267.000000,910.000000,261.000000,5.399400,237900.000000\n",
- "-121.670000,36.580000,11.000000,5892.000000,837.000000,2327.000000,812.000000,6.155100,291800.000000\n",
- "-116.890000,33.790000,12.000000,701.000000,130.000000,434.000000,110.000000,2.057700,56700.000000\n",
- "-122.660000,38.470000,20.000000,2806.000000,477.000000,1369.000000,460.000000,4.750000,190500.000000\n",
- "-121.450000,38.540000,38.000000,1865.000000,384.000000,1052.000000,354.000000,1.789100,60500.000000\n",
- "-121.000000,37.660000,43.000000,2369.000000,413.000000,944.000000,422.000000,3.263200,138100.000000\n",
- "-117.270000,32.840000,34.000000,1655.000000,450.000000,870.000000,411.000000,3.210900,376000.000000\n",
- "-117.870000,34.110000,23.000000,4066.000000,819.000000,2105.000000,737.000000,4.655600,199600.000000\n",
- "-121.440000,37.750000,16.000000,2229.000000,458.000000,1199.000000,445.000000,3.482100,170600.000000\n",
- "-118.130000,33.760000,44.000000,2532.000000,621.000000,961.000000,550.000000,3.935200,406900.000000\n",
- "-118.310000,34.260000,41.000000,1297.000000,327.000000,733.000000,315.000000,3.058300,160300.000000\n",
- "-122.000000,38.370000,18.000000,1048.000000,185.000000,469.000000,162.000000,3.625000,125000.000000\n",
- "-122.270000,41.230000,40.000000,1958.000000,386.000000,725.000000,331.000000,2.189800,65500.000000\n",
- "-120.890000,37.520000,42.000000,1200.000000,221.000000,647.000000,192.000000,2.540200,157500.000000\n",
- "-118.750000,34.290000,17.000000,5512.000000,765.000000,2734.000000,814.000000,6.607300,258100.000000\n",
- "-118.180000,34.020000,36.000000,1138.000000,296.000000,1484.000000,320.000000,2.281300,150700.000000\n",
- "-121.370000,38.410000,14.000000,3727.000000,685.000000,1741.000000,646.000000,3.562500,125700.000000\n",
- "-120.310000,37.290000,36.000000,969.000000,206.000000,732.000000,175.000000,1.593800,57600.000000\n",
- "-117.880000,33.730000,32.000000,1947.000000,355.000000,1786.000000,332.000000,4.572600,177500.000000\n",
- "-117.330000,33.980000,52.000000,1417.000000,353.000000,881.000000,300.000000,1.953100,162500.000000\n",
- "-118.490000,34.030000,30.000000,4061.000000,927.000000,1487.000000,865.000000,4.182700,435100.000000\n",
- "-121.930000,38.010000,9.000000,2294.000000,389.000000,1142.000000,365.000000,5.336300,160800.000000\n",
- "-122.450000,37.700000,46.000000,2193.000000,499.000000,1814.000000,489.000000,4.012500,230100.000000\n",
- "-117.080000,32.750000,20.000000,1886.000000,586.000000,1134.000000,525.000000,1.502900,100000.000000\n",
- "-116.190000,33.690000,11.000000,5692.000000,1346.000000,5682.000000,1273.000000,2.538300,74000.000000\n",
- "-119.730000,36.620000,35.000000,2080.000000,365.000000,1026.000000,333.000000,3.578100,92800.000000\n",
- "-117.120000,32.590000,28.000000,2793.000000,706.000000,1825.000000,676.000000,2.672400,144500.000000\n",
- "-117.630000,34.090000,8.000000,3557.000000,890.000000,2251.000000,765.000000,2.681800,114100.000000\n",
- "-118.260000,34.070000,40.000000,680.000000,273.000000,995.000000,249.000000,2.260700,165600.000000\n",
- "-118.260000,33.970000,46.000000,1521.000000,352.000000,1100.000000,334.000000,1.550000,100600.000000\n",
- "-119.840000,36.750000,34.000000,1186.000000,300.000000,774.000000,271.000000,1.575000,57100.000000\n",
- "-121.280000,38.670000,29.000000,1087.000000,174.000000,430.000000,174.000000,4.362500,158800.000000\n",
- "-117.350000,34.110000,34.000000,2104.000000,388.000000,1578.000000,365.000000,3.083300,88400.000000\n",
- "-121.320000,36.420000,20.000000,1054.000000,269.000000,1219.000000,273.000000,3.043700,76600.000000\n",
- "-118.350000,34.020000,34.000000,3978.000000,1073.000000,2725.000000,1035.000000,1.762200,167900.000000\n",
- "-119.810000,37.670000,24.000000,172.000000,42.000000,79.000000,30.000000,3.833300,93800.000000\n",
- "-118.150000,34.050000,33.000000,3287.000000,649.000000,1783.000000,653.000000,3.847200,293300.000000\n",
- "-121.220000,37.810000,17.000000,2879.000000,542.000000,1802.000000,530.000000,3.637800,126100.000000\n",
- "-119.720000,34.430000,30.000000,2491.000000,656.000000,1091.000000,576.000000,2.513900,279500.000000\n",
- "-117.850000,33.840000,17.000000,2830.000000,502.000000,1370.000000,459.000000,5.178500,247300.000000\n",
- "-117.200000,32.790000,31.000000,3417.000000,533.000000,1245.000000,532.000000,4.778800,276000.000000\n",
- "-118.630000,34.180000,33.000000,5252.000000,760.000000,2041.000000,730.000000,6.797700,389700.000000\n",
- "-117.490000,33.640000,3.000000,8874.000000,1302.000000,3191.000000,1027.000000,6.858800,302000.000000\n",
- "-118.370000,33.840000,35.000000,1792.000000,322.000000,978.000000,326.000000,4.958300,342800.000000\n",
- "-122.020000,38.260000,20.000000,3899.000000,763.000000,2198.000000,779.000000,3.206100,120400.000000\n",
- "-121.330000,38.660000,17.000000,2767.000000,584.000000,1275.000000,568.000000,2.590900,125400.000000\n",
- "-118.740000,36.230000,22.000000,1033.000000,232.000000,442.000000,136.000000,2.644700,137500.000000\n",
- "-117.890000,34.490000,12.000000,3449.000000,598.000000,1502.000000,540.000000,3.704300,150800.000000\n",
- "-117.410000,33.960000,24.000000,4481.000000,901.000000,2398.000000,823.000000,3.864000,123400.000000\n",
- "-118.750000,34.420000,28.000000,1000.000000,206.000000,545.000000,154.000000,2.416700,191700.000000\n",
- "-122.480000,37.740000,52.000000,2285.000000,435.000000,1211.000000,442.000000,4.020800,323100.000000\n",
- "-118.140000,34.040000,43.000000,1949.000000,464.000000,1216.000000,457.000000,3.321400,209300.000000\n",
- "-122.560000,37.900000,36.000000,1760.000000,283.000000,562.000000,246.000000,6.754600,402400.000000\n",
- "-122.090000,37.390000,43.000000,2065.000000,535.000000,1029.000000,500.000000,3.731800,327700.000000\n",
- "-121.800000,36.940000,29.000000,2377.000000,476.000000,1669.000000,499.000000,2.821400,190100.000000\n",
- "-117.830000,33.830000,13.000000,3759.000000,489.000000,1496.000000,499.000000,8.381800,377600.000000\n",
- "-121.680000,36.900000,13.000000,833.000000,130.000000,405.000000,127.000000,5.272900,322900.000000\n",
- "-122.300000,37.880000,52.000000,409.000000,97.000000,208.000000,98.000000,1.697100,138800.000000\n",
- "-121.040000,37.670000,16.000000,19.000000,19.000000,166.000000,9.000000,0.536000,162500.000000\n",
- "-118.320000,34.090000,28.000000,2173.000000,819.000000,2548.000000,763.000000,1.879000,218800.000000\n",
- "-118.120000,33.810000,36.000000,1774.000000,299.000000,784.000000,298.000000,5.044700,249200.000000\n",
- "-121.810000,39.700000,21.000000,5051.000000,1054.000000,2948.000000,980.000000,1.586300,81300.000000\n",
- "-121.840000,36.520000,18.000000,3165.000000,533.000000,1312.000000,434.000000,6.523400,357400.000000\n",
- "-121.790000,37.330000,18.000000,3611.000000,614.000000,2381.000000,642.000000,5.634500,231000.000000\n",
- "-118.160000,34.180000,48.000000,568.000000,145.000000,559.000000,135.000000,2.413500,135700.000000\n",
- "-119.400000,36.590000,37.000000,1486.000000,296.000000,977.000000,290.000000,3.507400,93800.000000\n",
- "-122.270000,37.800000,39.000000,1715.000000,623.000000,1327.000000,467.000000,1.847700,179200.000000\n",
- "-117.730000,33.570000,5.000000,11976.000000,2495.000000,4327.000000,2009.000000,4.848800,194400.000000\n",
- "-121.280000,37.920000,30.000000,1061.000000,230.000000,851.000000,195.000000,2.441200,61600.000000\n",
- "-119.810000,36.770000,43.000000,2341.000000,395.000000,890.000000,375.000000,3.426500,85000.000000\n",
- "-122.260000,37.850000,50.000000,1120.000000,283.000000,697.000000,264.000000,2.125000,140000.000000\n",
- "-117.950000,33.930000,37.000000,2633.000000,630.000000,1904.000000,630.000000,2.612300,161300.000000\n",
- "-120.120000,38.120000,37.000000,3355.000000,666.000000,338.000000,136.000000,2.062500,88900.000000\n",
- "-121.880000,37.350000,52.000000,1704.000000,418.000000,1336.000000,411.000000,2.816700,183500.000000\n",
- "-118.110000,33.870000,15.000000,3254.000000,598.000000,1772.000000,618.000000,5.041700,240800.000000\n",
- "-122.080000,37.690000,42.000000,1414.000000,274.000000,629.000000,244.000000,3.347800,184900.000000\n",
- "-121.680000,39.150000,14.000000,2774.000000,451.000000,1292.000000,428.000000,4.383300,115200.000000\n",
- "-122.160000,37.710000,36.000000,666.000000,132.000000,366.000000,134.000000,3.464300,175000.000000\n",
- "-118.070000,34.090000,35.000000,1224.000000,267.000000,887.000000,276.000000,4.098700,202400.000000\n",
- "-117.690000,33.650000,16.000000,5805.000000,852.000000,2356.000000,795.000000,6.106200,274600.000000\n",
- "-118.350000,34.030000,49.000000,2334.000000,530.000000,1334.000000,447.000000,1.890000,124000.000000\n",
- "-122.790000,39.020000,23.000000,642.000000,203.000000,265.000000,84.000000,1.883300,96900.000000\n",
- "-118.140000,33.890000,33.000000,2867.000000,786.000000,1774.000000,705.000000,2.929200,183400.000000\n",
- "-121.890000,37.420000,26.000000,40.000000,8.000000,52.000000,7.000000,7.719700,225000.000000\n",
- "-122.410000,37.760000,52.000000,492.000000,139.000000,316.000000,168.000000,3.086500,225000.000000\n",
- "-118.600000,34.160000,37.000000,3441.000000,584.000000,1283.000000,544.000000,4.165600,313100.000000\n",
- "-118.410000,34.020000,24.000000,2610.000000,756.000000,1322.000000,692.000000,3.502200,281300.000000\n",
- "-117.530000,33.970000,29.000000,1430.000000,273.000000,872.000000,283.000000,4.083300,141000.000000\n",
- "-117.130000,32.700000,35.000000,365.000000,98.000000,463.000000,112.000000,2.558800,78800.000000\n",
- "-117.140000,32.900000,16.000000,3217.000000,716.000000,2054.000000,687.000000,4.223400,162100.000000\n",
- "-118.160000,34.110000,31.000000,5715.000000,1154.000000,2639.000000,1079.000000,4.166100,364400.000000\n",
- "-117.180000,32.700000,42.000000,1691.000000,286.000000,761.000000,281.000000,5.138600,404500.000000\n",
- "-117.970000,33.720000,24.000000,2991.000000,500.000000,1437.000000,453.000000,5.428600,273400.000000\n",
- "-118.250000,34.090000,52.000000,104.000000,20.000000,32.000000,17.000000,3.750000,241700.000000\n",
- "-118.140000,34.110000,52.000000,3367.000000,545.000000,1427.000000,535.000000,5.229200,444500.000000\n",
- "-120.010000,34.540000,30.000000,2992.000000,609.000000,1288.000000,465.000000,3.937500,292900.000000\n",
- "-117.410000,34.100000,5.000000,4937.000000,1139.000000,2204.000000,812.000000,2.527200,92000.000000\n",
- "-118.220000,34.520000,7.000000,4524.000000,735.000000,2298.000000,717.000000,6.553800,311600.000000\n",
- "-117.910000,33.870000,29.000000,1121.000000,291.000000,762.000000,276.000000,2.500000,143800.000000\n",
- "-117.090000,32.760000,29.000000,1650.000000,496.000000,882.000000,445.000000,2.228700,140000.000000\n",
- "-122.270000,37.820000,52.000000,1630.000000,456.000000,1162.000000,400.000000,1.247500,104200.000000\n",
- "-118.200000,34.060000,46.000000,321.000000,101.000000,401.000000,86.000000,2.102900,109400.000000\n",
- "-118.360000,33.900000,40.000000,1271.000000,276.000000,725.000000,234.000000,5.045200,231900.000000\n",
- "-122.000000,37.860000,18.000000,8953.000000,1074.000000,3011.000000,993.000000,10.737200,500001.000000\n",
- "-121.360000,39.520000,15.000000,2490.000000,527.000000,1229.000000,497.000000,2.391700,85700.000000\n",
- "-122.000000,38.280000,3.000000,7030.000000,1191.000000,3238.000000,1055.000000,4.962000,161700.000000\n",
- "-117.700000,33.680000,29.000000,5650.000000,1084.000000,3985.000000,1056.000000,2.819200,162500.000000\n",
- "-118.280000,34.030000,26.000000,2107.000000,809.000000,2821.000000,572.000000,0.844000,350000.000000\n",
- "-118.250000,34.150000,13.000000,1107.000000,479.000000,616.000000,443.000000,0.818500,187500.000000\n",
- "-122.540000,37.930000,43.000000,2998.000000,470.000000,970.000000,430.000000,5.538500,431800.000000\n",
- "-118.250000,34.020000,50.000000,180.000000,89.000000,356.000000,76.000000,2.194400,158300.000000\n",
- "-122.060000,36.980000,15.000000,3385.000000,669.000000,1571.000000,615.000000,4.225400,320900.000000\n",
- "-122.450000,37.770000,52.000000,2339.000000,548.000000,1090.000000,507.000000,3.367900,350000.000000\n",
- "-118.040000,33.850000,23.000000,3132.000000,469.000000,1646.000000,478.000000,5.777000,315900.000000\n",
- "-118.120000,34.150000,19.000000,557.000000,216.000000,673.000000,212.000000,2.176300,168800.000000\n",
- "-118.310000,33.940000,43.000000,2104.000000,393.000000,1132.000000,394.000000,3.068200,142000.000000\n",
- "-118.440000,34.160000,33.000000,1616.000000,322.000000,580.000000,311.000000,4.039100,337500.000000\n",
- "-118.460000,34.170000,24.000000,2814.000000,675.000000,1463.000000,620.000000,4.187500,309300.000000\n",
- "-117.930000,34.060000,35.000000,1022.000000,183.000000,628.000000,187.000000,3.937500,187500.000000\n",
- "-121.810000,36.570000,13.000000,3030.000000,413.000000,1027.000000,363.000000,6.961500,500001.000000\n",
- "-118.420000,34.000000,33.000000,1139.000000,299.000000,734.000000,257.000000,3.270800,325000.000000\n",
- "-118.330000,34.010000,44.000000,1762.000000,463.000000,786.000000,445.000000,1.923100,188500.000000\n",
- "-118.240000,33.930000,19.000000,325.000000,74.000000,354.000000,87.000000,2.750000,90600.000000\n",
- "-116.940000,32.810000,22.000000,4266.000000,1010.000000,2766.000000,985.000000,2.817500,135200.000000\n",
- "-122.600000,38.240000,16.000000,2621.000000,416.000000,1247.000000,386.000000,4.860300,198400.000000\n",
- "-118.210000,33.970000,52.000000,4220.000000,908.000000,3731.000000,892.000000,3.190100,167600.000000\n",
- "-118.730000,34.270000,25.000000,3409.000000,493.000000,1699.000000,484.000000,5.653000,225800.000000\n",
- "-122.120000,37.370000,37.000000,1446.000000,181.000000,549.000000,190.000000,10.735500,500001.000000\n",
- "-122.420000,40.440000,16.000000,994.000000,185.000000,495.000000,181.000000,2.187500,76400.000000\n",
- "-122.130000,37.720000,26.000000,2862.000000,394.000000,1030.000000,397.000000,7.912000,367300.000000\n",
- "-121.170000,37.880000,22.000000,1283.000000,256.000000,3082.000000,239.000000,3.536500,111800.000000\n",
- "-122.430000,37.720000,48.000000,1289.000000,280.000000,782.000000,235.000000,3.671900,259800.000000\n",
- "-118.220000,33.910000,27.000000,500.000000,159.000000,732.000000,162.000000,2.742600,103100.000000\n",
- "-121.170000,37.970000,28.000000,1374.000000,248.000000,769.000000,229.000000,3.638900,130400.000000\n",
- "-122.270000,37.860000,52.000000,2307.000000,583.000000,1127.000000,548.000000,1.844700,198200.000000\n",
- "-119.190000,36.140000,41.000000,759.000000,140.000000,408.000000,129.000000,3.900000,85900.000000\n",
- "-122.410000,37.600000,31.000000,4424.000000,834.000000,1915.000000,817.000000,4.136400,412000.000000\n",
- "-116.830000,32.810000,18.000000,2367.000000,402.000000,1021.000000,395.000000,4.812500,210500.000000\n",
- "-119.340000,36.330000,17.000000,2250.000000,430.000000,1218.000000,468.000000,4.181200,93700.000000\n",
- "-123.220000,39.160000,29.000000,6121.000000,1222.000000,3595.000000,1189.000000,2.631000,109600.000000\n",
- "-121.920000,37.720000,22.000000,4638.000000,716.000000,2302.000000,687.000000,5.347000,219500.000000\n",
- "-116.570000,33.760000,25.000000,2616.000000,547.000000,581.000000,343.000000,3.136400,301600.000000\n",
- "-118.170000,34.180000,44.000000,1401.000000,246.000000,607.000000,271.000000,2.847200,218800.000000\n",
- "-117.200000,32.800000,36.000000,4018.000000,1067.000000,1620.000000,842.000000,2.359900,168400.000000\n",
- "-117.580000,34.090000,27.000000,754.000000,200.000000,746.000000,185.000000,1.953100,100800.000000\n",
- "-118.240000,33.960000,34.000000,1724.000000,432.000000,1876.000000,416.000000,2.107800,100600.000000\n",
- "-122.240000,40.180000,39.000000,2191.000000,493.000000,1307.000000,499.000000,1.648300,60800.000000\n",
- "-119.690000,36.820000,15.000000,3303.000000,512.000000,1687.000000,505.000000,4.810000,93600.000000\n",
- "-121.690000,36.620000,19.000000,1907.000000,323.000000,681.000000,270.000000,6.033200,244900.000000\n",
- "-119.280000,36.350000,7.000000,3598.000000,701.000000,2080.000000,678.000000,3.111100,72400.000000\n",
- "-117.990000,33.810000,46.000000,38.000000,8.000000,66.000000,14.000000,4.166700,162500.000000\n",
- "-117.650000,35.000000,36.000000,1184.000000,316.000000,672.000000,241.000000,1.910700,39800.000000\n",
- "-118.150000,34.020000,43.000000,2172.000000,605.000000,2386.000000,597.000000,2.823900,150600.000000\n",
- "-122.430000,37.730000,52.000000,1583.000000,347.000000,935.000000,341.000000,4.678600,263200.000000\n",
- "-117.040000,32.730000,36.000000,2084.000000,400.000000,1097.000000,398.000000,3.271700,130700.000000\n",
- "-118.080000,34.140000,45.000000,2923.000000,604.000000,1903.000000,560.000000,3.172900,218700.000000\n",
- "-121.070000,39.200000,45.000000,204.000000,62.000000,133.000000,51.000000,1.000000,90600.000000\n",
- "-117.120000,32.660000,52.000000,16.000000,4.000000,8.000000,3.000000,1.125000,60000.000000\n",
- "-118.130000,34.130000,39.000000,2099.000000,397.000000,1500.000000,380.000000,4.830400,493200.000000\n",
- "-122.220000,37.880000,20.000000,95.000000,13.000000,31.000000,15.000000,2.444400,475000.000000\n",
- "-122.520000,37.930000,34.000000,2782.000000,502.000000,1219.000000,507.000000,5.077900,333900.000000\n",
- "-122.090000,37.630000,36.000000,1570.000000,274.000000,992.000000,249.000000,5.364400,168800.000000\n",
- "-117.970000,33.820000,26.000000,4013.000000,985.000000,2442.000000,922.000000,3.765500,197700.000000\n",
- "-118.280000,34.050000,41.000000,1075.000000,597.000000,2260.000000,614.000000,1.300000,162500.000000\n",
- "-118.390000,33.790000,30.000000,4402.000000,563.000000,1582.000000,551.000000,10.898000,500001.000000\n",
- "-122.400000,37.580000,26.000000,3281.000000,531.000000,1145.000000,480.000000,6.358000,500001.000000\n",
- "-118.260000,34.060000,42.000000,2541.000000,1282.000000,3974.000000,1189.000000,1.585400,87500.000000\n",
- "-122.160000,37.480000,36.000000,2238.000000,479.000000,1949.000000,457.000000,2.376900,157300.000000\n",
- "-117.430000,34.110000,17.000000,4109.000000,884.000000,2544.000000,780.000000,2.775700,109800.000000\n",
- "-118.280000,33.930000,42.000000,1898.000000,460.000000,1503.000000,429.000000,2.517900,97400.000000\n",
- "-118.370000,33.950000,5.000000,6955.000000,2062.000000,3591.000000,1566.000000,3.111000,247600.000000\n",
- "-121.490000,38.560000,52.000000,1777.000000,368.000000,624.000000,350.000000,3.672900,137800.000000\n",
- "-121.800000,38.550000,11.000000,5121.000000,899.000000,2258.000000,901.000000,4.716800,223200.000000\n",
- "-122.190000,39.920000,20.000000,2563.000000,658.000000,1363.000000,611.000000,1.023000,54200.000000\n",
- "-118.010000,33.840000,29.000000,3740.000000,691.000000,1724.000000,638.000000,3.962800,215600.000000\n",
- "-118.310000,33.960000,48.000000,2015.000000,356.000000,1020.000000,338.000000,4.062500,138700.000000\n",
- "-121.060000,39.220000,52.000000,1749.000000,422.000000,837.000000,391.000000,2.325000,109700.000000\n",
- "-121.350000,38.610000,27.000000,3900.000000,776.000000,1549.000000,761.000000,2.778800,115700.000000\n",
- "-118.310000,33.990000,48.000000,2235.000000,433.000000,1363.000000,433.000000,1.655900,101400.000000\n",
- "-121.930000,37.270000,28.000000,3428.000000,753.000000,1753.000000,729.000000,4.103300,281000.000000\n",
- "-117.310000,33.170000,7.000000,2349.000000,312.000000,809.000000,282.000000,5.552000,283900.000000\n",
- "-120.890000,37.480000,27.000000,1118.000000,195.000000,647.000000,209.000000,2.913500,159400.000000\n",
- "-119.470000,35.140000,19.000000,4190.000000,690.000000,1973.000000,702.000000,3.992900,88300.000000\n",
- "-118.410000,34.180000,35.000000,1975.000000,384.000000,882.000000,406.000000,4.375000,291700.000000\n",
- "-119.810000,36.700000,52.000000,314.000000,57.000000,178.000000,66.000000,1.240400,52500.000000\n",
- "-117.080000,33.160000,11.000000,6341.000000,1030.000000,2697.000000,977.000000,4.855400,206700.000000\n",
- "-119.270000,35.870000,12.000000,972.000000,269.000000,1134.000000,286.000000,1.630000,49500.000000\n",
- "-122.310000,40.750000,18.000000,1411.000000,330.000000,494.000000,227.000000,1.491100,75800.000000\n",
- "-117.200000,33.290000,12.000000,6358.000000,1182.000000,2778.000000,1020.000000,4.035700,295900.000000\n",
- "-118.430000,34.260000,43.000000,729.000000,172.000000,935.000000,174.000000,2.951900,140900.000000\n",
- "-121.520000,39.510000,30.000000,3085.000000,610.000000,1688.000000,575.000000,2.334000,72200.000000\n",
- "-118.770000,34.270000,7.000000,3074.000000,794.000000,1816.000000,654.000000,2.713700,196400.000000\n",
- "-124.100000,40.950000,17.000000,1485.000000,345.000000,823.000000,316.000000,1.899300,78400.000000\n",
- "-117.150000,32.800000,27.000000,1937.000000,537.000000,1211.000000,482.000000,2.750000,87500.000000\n",
- "-118.370000,34.160000,11.000000,2901.000000,871.000000,1659.000000,789.000000,3.110600,209400.000000\n",
- "-122.500000,37.740000,44.000000,2792.000000,615.000000,1640.000000,579.000000,4.062500,272800.000000\n",
- "-120.920000,39.560000,48.000000,1276.000000,292.000000,358.000000,145.000000,1.875000,66600.000000\n",
- "-122.470000,38.510000,25.000000,928.000000,195.000000,413.000000,184.000000,3.490400,196900.000000\n",
- "-117.890000,33.610000,41.000000,1790.000000,361.000000,540.000000,284.000000,6.024700,500001.000000\n",
- "-121.350000,38.400000,11.000000,2322.000000,459.000000,1373.000000,424.000000,3.175000,94400.000000\n",
- "-117.920000,34.120000,32.000000,2552.000000,576.000000,2161.000000,548.000000,2.945900,144400.000000\n",
- "-118.310000,33.800000,30.000000,3096.000000,757.000000,2048.000000,704.000000,3.125000,233300.000000\n",
- "-120.350000,37.040000,37.000000,1495.000000,292.000000,858.000000,275.000000,2.930600,46300.000000\n",
- "-122.000000,37.310000,28.000000,3811.000000,585.000000,1795.000000,581.000000,7.838300,372700.000000\n",
- "-118.010000,33.950000,37.000000,1165.000000,210.000000,627.000000,221.000000,4.692300,181000.000000\n",
- "-118.070000,34.090000,40.000000,1745.000000,370.000000,1293.000000,357.000000,2.547400,198100.000000\n",
- "-117.500000,33.920000,28.000000,2101.000000,337.000000,1061.000000,348.000000,4.550000,146800.000000\n",
- "-123.740000,40.660000,25.000000,2395.000000,431.000000,983.000000,375.000000,3.046900,136000.000000\n",
- "-122.030000,37.910000,29.000000,5438.000000,871.000000,2310.000000,890.000000,5.036200,275300.000000\n",
- "-118.910000,34.220000,15.000000,5644.000000,757.000000,2659.000000,783.000000,6.755900,312000.000000\n",
- "-117.960000,34.140000,9.000000,907.000000,207.000000,619.000000,194.000000,3.946400,179600.000000\n",
- "-121.800000,38.010000,46.000000,2273.000000,495.000000,1088.000000,447.000000,2.253200,109400.000000\n",
- "-122.290000,37.530000,35.000000,2043.000000,511.000000,1089.000000,504.000000,3.027800,310600.000000\n",
- "-122.140000,37.670000,34.000000,3036.000000,533.000000,1366.000000,500.000000,4.238600,192300.000000\n",
- "-117.850000,33.790000,52.000000,2102.000000,403.000000,898.000000,365.000000,3.682700,236800.000000\n",
- "-122.100000,37.650000,31.000000,1797.000000,327.000000,796.000000,319.000000,4.442700,204500.000000\n",
- "-122.120000,37.910000,34.000000,5683.000000,755.000000,1962.000000,723.000000,8.367800,455300.000000\n",
- "-119.290000,36.320000,27.000000,1513.000000,374.000000,839.000000,350.000000,1.201200,64600.000000\n",
- "-117.400000,34.010000,25.000000,1858.000000,366.000000,1311.000000,331.000000,2.708300,87800.000000\n",
- "-117.060000,32.770000,32.000000,3888.000000,827.000000,3868.000000,841.000000,3.075500,166800.000000\n",
- "-118.300000,34.250000,44.000000,1442.000000,285.000000,859.000000,292.000000,4.583300,197300.000000\n",
- "-122.230000,40.150000,14.000000,2297.000000,573.000000,1637.000000,551.000000,1.787000,51600.000000\n",
- "-117.910000,33.820000,32.000000,2696.000000,640.000000,2330.000000,626.000000,2.947900,184600.000000\n",
- "-122.530000,37.970000,44.000000,3595.000000,953.000000,1831.000000,910.000000,2.603600,287500.000000\n",
- "-121.790000,37.000000,28.000000,2715.000000,451.000000,1154.000000,386.000000,4.802100,290400.000000\n",
- "-118.460000,33.990000,44.000000,1122.000000,287.000000,531.000000,256.000000,4.059800,335900.000000\n",
- "-118.030000,33.970000,32.000000,2468.000000,552.000000,1190.000000,479.000000,3.827500,238500.000000\n",
- "-122.320000,38.000000,32.000000,2275.000000,397.000000,1233.000000,418.000000,4.043700,162800.000000\n",
- "-118.280000,34.170000,22.000000,2664.000000,651.000000,1553.000000,629.000000,3.635400,256300.000000\n",
- "-119.140000,36.060000,32.000000,1838.000000,441.000000,1628.000000,425.000000,1.645200,41500.000000\n",
- "-117.130000,34.070000,34.000000,2405.000000,541.000000,1342.000000,514.000000,2.803100,86900.000000\n",
- "-120.670000,35.300000,32.000000,4202.000000,986.000000,2309.000000,956.000000,2.216500,231700.000000\n",
- "-118.060000,34.120000,34.000000,2941.000000,558.000000,1660.000000,576.000000,4.566700,271500.000000\n",
- "-122.390000,40.570000,38.000000,855.000000,172.000000,468.000000,150.000000,1.409100,84400.000000\n",
- "-118.390000,33.880000,33.000000,2543.000000,439.000000,1098.000000,416.000000,5.968300,495500.000000\n",
- "-118.160000,34.020000,47.000000,1055.000000,298.000000,1303.000000,302.000000,2.696400,138800.000000\n",
- "-122.580000,37.980000,52.000000,1180.000000,216.000000,467.000000,197.000000,4.961500,292200.000000\n",
- "-118.020000,33.920000,35.000000,2075.000000,424.000000,1312.000000,396.000000,3.796900,164800.000000\n",
- "-119.700000,34.400000,25.000000,1858.000000,493.000000,865.000000,460.000000,3.093800,312500.000000\n",
- "-122.680000,38.430000,29.000000,488.000000,63.000000,161.000000,62.000000,6.077400,334400.000000\n",
- "-121.350000,38.590000,29.000000,1285.000000,193.000000,460.000000,206.000000,5.324300,265700.000000\n",
- "-121.980000,37.270000,25.000000,3075.000000,564.000000,1633.000000,543.000000,5.252800,269400.000000\n",
- "-118.080000,34.580000,5.000000,1113.000000,186.000000,631.000000,168.000000,4.171900,146600.000000\n",
- "-118.250000,34.060000,20.000000,41.000000,17.000000,87.000000,25.000000,1.549100,225000.000000\n",
- "-122.250000,37.820000,26.000000,3959.000000,1196.000000,1749.000000,1217.000000,3.023300,255000.000000\n",
- "-119.050000,34.350000,39.000000,950.000000,300.000000,1366.000000,312.000000,2.244300,146600.000000\n",
- "-117.540000,33.760000,5.000000,5846.000000,1035.000000,3258.000000,1001.000000,4.796500,160800.000000\n",
- "-118.210000,33.880000,31.000000,1332.000000,417.000000,1405.000000,363.000000,2.012500,143000.000000\n",
- "-117.200000,32.790000,29.000000,1213.000000,228.000000,654.000000,246.000000,4.598700,255600.000000\n",
- "-120.960000,37.590000,11.000000,4236.000000,879.000000,2410.000000,850.000000,2.384900,122000.000000\n",
- "-118.240000,34.010000,48.000000,396.000000,99.000000,485.000000,110.000000,2.375000,107500.000000\n",
- "-118.270000,34.000000,43.000000,1638.000000,434.000000,1213.000000,390.000000,1.340300,110800.000000\n",
- "-122.250000,37.890000,41.000000,1125.000000,195.000000,356.000000,181.000000,6.159300,344000.000000\n",
- "-117.300000,34.090000,40.000000,1051.000000,244.000000,745.000000,243.000000,2.184200,75200.000000\n",
- "-120.910000,37.740000,19.000000,1690.000000,327.000000,855.000000,296.000000,3.250000,176700.000000\n",
- "-122.160000,38.900000,33.000000,1221.000000,236.000000,488.000000,199.000000,3.757400,92700.000000\n",
- "-118.310000,33.890000,35.000000,2144.000000,423.000000,1192.000000,417.000000,4.145800,231500.000000\n",
- "-118.180000,34.020000,43.000000,887.000000,219.000000,965.000000,217.000000,2.625000,133900.000000\n",
- "-117.970000,33.750000,32.000000,1564.000000,270.000000,973.000000,290.000000,3.750000,190400.000000\n",
- "-117.950000,35.080000,1.000000,83.000000,15.000000,32.000000,15.000000,4.875000,141700.000000\n",
- "-118.030000,33.910000,35.000000,2323.000000,406.000000,1741.000000,398.000000,4.243700,164100.000000\n",
- "-118.380000,33.970000,43.000000,2715.000000,458.000000,1151.000000,434.000000,7.489700,362600.000000\n",
- "-119.820000,36.720000,25.000000,2581.000000,528.000000,1642.000000,509.000000,1.643500,52600.000000\n",
- "-122.060000,37.680000,30.000000,5367.000000,1207.000000,2667.000000,1047.000000,3.179600,170300.000000\n",
- "-122.410000,40.550000,19.000000,3753.000000,761.000000,1952.000000,738.000000,3.095400,86500.000000\n",
- "-117.880000,33.720000,36.000000,1910.000000,352.000000,1593.000000,329.000000,3.890000,170000.000000\n",
- "-120.800000,38.310000,37.000000,1341.000000,256.000000,533.000000,242.000000,3.213500,123600.000000\n",
- "-118.100000,34.170000,48.000000,1111.000000,229.000000,421.000000,202.000000,3.281300,268100.000000\n",
- "-118.090000,34.120000,38.000000,1713.000000,285.000000,779.000000,286.000000,5.615200,359900.000000\n",
- "-118.310000,34.060000,47.000000,3038.000000,1533.000000,4225.000000,1472.000000,1.672500,187500.000000\n",
- "-118.020000,33.800000,16.000000,2956.000000,393.000000,1379.000000,429.000000,8.495200,359600.000000\n",
- "-121.940000,37.280000,18.000000,4356.000000,1334.000000,1968.000000,1245.000000,3.629400,240000.000000\n",
- "-117.950000,34.080000,37.000000,1137.000000,203.000000,672.000000,226.000000,3.296900,189000.000000\n",
- "-118.150000,33.940000,36.000000,1948.000000,341.000000,992.000000,363.000000,4.259400,242400.000000\n",
- "-121.810000,37.990000,22.000000,2331.000000,359.000000,1086.000000,340.000000,5.143500,150800.000000\n",
- "-121.810000,38.580000,17.000000,1964.000000,314.000000,808.000000,286.000000,5.962900,286000.000000\n",
- "-121.280000,38.770000,6.000000,3819.000000,550.000000,1738.000000,587.000000,5.871800,201400.000000\n",
- "-118.430000,34.010000,43.000000,1487.000000,242.000000,675.000000,247.000000,5.340300,489800.000000\n",
- "-121.380000,38.590000,36.000000,1239.000000,237.000000,764.000000,222.000000,3.015600,103000.000000\n",
- "-117.680000,35.650000,15.000000,2701.000000,576.000000,1245.000000,513.000000,3.326900,81900.000000\n",
- "-117.690000,33.580000,8.000000,2887.000000,351.000000,1176.000000,351.000000,10.395300,500001.000000\n",
- "-118.240000,34.000000,23.000000,588.000000,157.000000,716.000000,173.000000,1.205600,87500.000000\n",
- "-117.700000,33.600000,25.000000,1321.000000,295.000000,396.000000,278.000000,3.113100,77100.000000\n",
- "-118.380000,33.860000,12.000000,4235.000000,735.000000,1798.000000,683.000000,6.424200,365500.000000\n",
- "-117.050000,32.610000,31.000000,4033.000000,715.000000,2585.000000,715.000000,3.509600,139900.000000\n",
- "-121.380000,38.640000,19.000000,4563.000000,1069.000000,2256.000000,926.000000,2.147200,143400.000000\n",
- "-117.100000,32.740000,20.000000,3854.000000,1046.000000,3555.000000,966.000000,1.674700,100000.000000\n",
- "-122.470000,37.760000,48.000000,2064.000000,484.000000,1055.000000,467.000000,2.871100,329600.000000\n",
- "-117.840000,33.760000,16.000000,238.000000,51.000000,93.000000,50.000000,5.375000,215700.000000\n",
- "-122.260000,37.880000,52.000000,2604.000000,837.000000,1798.000000,769.000000,1.725000,287500.000000\n",
- "-118.400000,33.870000,45.000000,2181.000000,505.000000,965.000000,471.000000,5.381600,500001.000000\n",
- "-122.370000,38.330000,29.000000,1868.000000,291.000000,764.000000,284.000000,4.825000,195100.000000\n",
- "-117.980000,34.010000,27.000000,2643.000000,418.000000,1344.000000,381.000000,5.705700,262100.000000\n",
- "-122.700000,38.450000,26.000000,2011.000000,557.000000,855.000000,530.000000,1.125000,233300.000000\n",
- "-118.410000,33.970000,44.000000,2789.000000,503.000000,3732.000000,474.000000,4.617600,352300.000000\n",
- "-121.920000,37.300000,36.000000,2088.000000,358.000000,772.000000,347.000000,4.276200,310100.000000\n",
- "-122.110000,37.370000,49.000000,1068.000000,190.000000,410.000000,171.000000,7.204500,500001.000000\n",
- "-121.870000,37.390000,9.000000,2522.000000,547.000000,1591.000000,481.000000,4.909100,259700.000000\n",
- "-120.180000,39.140000,25.000000,2171.000000,386.000000,248.000000,116.000000,3.037500,171900.000000\n",
- "-117.060000,32.760000,36.000000,2785.000000,577.000000,1275.000000,527.000000,2.301500,156800.000000\n",
- "-117.240000,33.930000,12.000000,7105.000000,1447.000000,4520.000000,1333.000000,3.270500,113200.000000\n",
- "-118.250000,33.980000,47.000000,617.000000,162.000000,754.000000,144.000000,2.296900,116700.000000\n",
- "-117.800000,33.680000,14.000000,2635.000000,516.000000,1150.000000,499.000000,4.439100,306700.000000\n",
- "-119.780000,36.370000,41.000000,831.000000,149.000000,443.000000,146.000000,3.140600,100000.000000\n",
- "-117.040000,32.700000,7.000000,9311.000000,1703.000000,7302.000000,1694.000000,4.419000,156900.000000\n",
- "-118.290000,34.000000,6.000000,1487.000000,468.000000,1509.000000,403.000000,1.463900,112500.000000\n",
- "-118.360000,34.060000,52.000000,2130.000000,455.000000,921.000000,395.000000,2.960500,500001.000000\n",
- "-122.420000,37.620000,39.000000,1355.000000,214.000000,682.000000,246.000000,6.344300,324700.000000\n",
- "-118.420000,34.250000,37.000000,1545.000000,341.000000,1909.000000,352.000000,3.679100,148100.000000\n",
- "-121.100000,38.950000,17.000000,1475.000000,403.000000,943.000000,363.000000,2.128700,55300.000000\n",
- "-117.740000,34.050000,27.000000,852.000000,237.000000,1024.000000,221.000000,2.114100,110900.000000\n",
- "-122.390000,37.740000,52.000000,126.000000,24.000000,37.000000,27.000000,10.226400,225000.000000\n",
- "-118.370000,34.080000,52.000000,2946.000000,695.000000,1258.000000,650.000000,3.978300,374100.000000\n",
- "-122.080000,37.870000,24.000000,6130.000000,1359.000000,1750.000000,1286.000000,2.916700,102700.000000\n",
- "-118.440000,34.200000,28.000000,1732.000000,435.000000,1198.000000,417.000000,2.921900,241300.000000\n",
- "-121.370000,38.560000,19.000000,6308.000000,1167.000000,3012.000000,1112.000000,2.946400,113500.000000\n",
- "-122.100000,37.930000,20.000000,10212.000000,1424.000000,4083.000000,1374.000000,8.039000,382200.000000\n",
- "-117.220000,32.950000,4.000000,18123.000000,3173.000000,7301.000000,2964.000000,6.357000,322500.000000\n",
- "-122.130000,37.460000,31.000000,2247.000000,573.000000,1711.000000,511.000000,3.264200,185600.000000\n",
- "-122.300000,38.290000,20.000000,1789.000000,434.000000,1113.000000,398.000000,2.472800,139700.000000\n",
- "-123.410000,40.610000,17.000000,769.000000,205.000000,301.000000,126.000000,1.787500,55000.000000\n",
- "-120.770000,37.010000,28.000000,1689.000000,378.000000,1057.000000,267.000000,3.125000,156300.000000\n",
- "-118.800000,34.410000,45.000000,1610.000000,406.000000,1148.000000,347.000000,2.700000,120400.000000\n",
- "-119.270000,34.270000,52.000000,1577.000000,343.000000,836.000000,335.000000,3.589300,206600.000000\n",
- "-122.470000,37.740000,52.000000,3797.000000,668.000000,1633.000000,658.000000,5.678700,363600.000000\n",
- "-118.260000,34.130000,25.000000,3208.000000,1111.000000,2843.000000,1005.000000,2.667300,218100.000000\n",
- "-119.770000,36.760000,40.000000,2009.000000,519.000000,2219.000000,505.000000,1.210100,49100.000000\n",
- "-124.160000,41.920000,19.000000,1668.000000,324.000000,841.000000,283.000000,2.133600,75000.000000\n",
- "-119.030000,36.130000,24.000000,2259.000000,408.000000,1169.000000,395.000000,1.710600,95500.000000\n",
- "-122.180000,37.790000,41.000000,1411.000000,233.000000,626.000000,214.000000,7.087500,240700.000000\n",
- "-123.850000,39.390000,23.000000,4671.000000,912.000000,2095.000000,857.000000,3.184000,140500.000000\n",
- "-122.700000,38.330000,16.000000,1244.000000,242.000000,696.000000,236.000000,3.636900,158700.000000\n",
- "-118.100000,33.850000,36.000000,956.000000,159.000000,416.000000,157.000000,4.642900,223700.000000\n",
- "-117.990000,34.080000,35.000000,1032.000000,207.000000,954.000000,191.000000,2.890600,134800.000000\n",
- "-121.930000,37.730000,8.000000,831.000000,231.000000,404.000000,224.000000,3.375000,350000.000000\n",
- "-118.440000,34.230000,43.000000,2257.000000,429.000000,1418.000000,442.000000,4.527800,181800.000000\n",
- "-118.320000,34.260000,24.000000,5106.000000,1010.000000,2310.000000,957.000000,4.437500,191500.000000\n",
- "-118.150000,34.110000,39.000000,2618.000000,582.000000,1314.000000,532.000000,3.587500,309300.000000\n",
- "-117.740000,34.040000,27.000000,2215.000000,440.000000,1987.000000,449.000000,3.042900,129600.000000\n",
- "-121.350000,38.280000,17.000000,2756.000000,557.000000,1986.000000,530.000000,3.223400,82000.000000\n",
- "-122.750000,39.010000,17.000000,4162.000000,967.000000,889.000000,414.000000,3.418700,200500.000000\n",
- "-120.660000,35.460000,17.000000,3748.000000,609.000000,1860.000000,612.000000,4.517900,225600.000000\n",
- "-122.620000,38.920000,13.000000,520.000000,115.000000,249.000000,109.000000,1.841700,84700.000000\n",
- "-117.220000,34.260000,16.000000,8020.000000,1432.000000,1749.000000,540.000000,4.971600,162500.000000\n",
- "-117.920000,33.750000,8.000000,2325.000000,598.000000,1511.000000,565.000000,3.362900,137500.000000\n",
- "-122.280000,37.810000,36.000000,2914.000000,562.000000,1236.000000,509.000000,2.446400,102100.000000\n",
- "-118.120000,33.810000,37.000000,1798.000000,331.000000,860.000000,340.000000,4.214300,228500.000000\n",
- "-119.190000,36.060000,29.000000,1815.000000,376.000000,1421.000000,339.000000,1.909100,71300.000000\n",
- "-117.970000,34.070000,22.000000,1438.000000,364.000000,1325.000000,335.000000,2.780200,162500.000000\n",
- "-118.090000,34.030000,27.000000,3797.000000,597.000000,2043.000000,614.000000,5.500000,276800.000000\n",
- "-121.930000,37.280000,10.000000,3163.000000,832.000000,1537.000000,797.000000,4.167400,214000.000000\n",
- "-122.650000,38.960000,27.000000,2143.000000,580.000000,898.000000,367.000000,1.676900,63200.000000\n",
- "-122.490000,37.750000,48.000000,2387.000000,424.000000,1041.000000,408.000000,3.756200,321200.000000\n",
- "-122.310000,37.560000,45.000000,1792.000000,301.000000,829.000000,318.000000,4.901300,330100.000000\n",
- "-121.270000,38.140000,33.000000,3557.000000,894.000000,2659.000000,894.000000,2.288300,86900.000000\n",
- "-118.390000,34.230000,18.000000,3405.000000,831.000000,3001.000000,795.000000,3.008300,181900.000000\n",
- "-118.390000,34.070000,33.000000,5301.000000,1281.000000,2243.000000,1159.000000,4.238600,500001.000000\n",
- "-117.150000,32.920000,16.000000,2366.000000,392.000000,1482.000000,407.000000,4.902400,182900.000000\n",
- "-122.090000,37.380000,34.000000,1959.000000,342.000000,849.000000,357.000000,6.288400,414700.000000\n",
- "-117.060000,32.610000,23.000000,1630.000000,362.000000,1267.000000,418.000000,2.562500,131100.000000\n",
- "-122.330000,37.910000,36.000000,1954.000000,513.000000,1437.000000,440.000000,1.125000,93800.000000\n",
- "-116.920000,32.760000,7.000000,1659.000000,237.000000,862.000000,242.000000,5.274100,249400.000000\n",
- "-116.000000,34.120000,32.000000,3163.000000,712.000000,1358.000000,544.000000,2.125000,57700.000000\n",
- "-117.690000,33.600000,19.000000,3562.000000,439.000000,1584.000000,470.000000,6.421100,288100.000000\n",
- "-117.230000,33.910000,9.000000,11654.000000,2100.000000,7596.000000,2127.000000,4.047300,127200.000000\n",
- "-117.180000,34.040000,41.000000,1766.000000,288.000000,753.000000,278.000000,4.912500,140700.000000\n",
- "-121.330000,38.280000,14.000000,980.000000,171.000000,659.000000,183.000000,4.430600,170100.000000\n",
- "-121.880000,37.320000,38.000000,1787.000000,508.000000,2113.000000,530.000000,2.638600,177600.000000\n",
- "-122.520000,37.970000,33.000000,563.000000,194.000000,265.000000,169.000000,2.750000,231300.000000\n",
- "-117.770000,34.060000,27.000000,2178.000000,629.000000,2379.000000,591.000000,1.976600,108000.000000\n",
- "-121.010000,37.720000,23.000000,1373.000000,264.000000,677.000000,245.000000,2.548600,161100.000000\n",
- "-117.330000,33.870000,14.000000,2300.000000,335.000000,1001.000000,311.000000,5.104500,161300.000000\n",
- "-118.240000,33.970000,37.000000,1212.000000,314.000000,1403.000000,279.000000,2.553600,117200.000000\n",
- "-117.800000,33.890000,25.000000,3121.000000,381.000000,1278.000000,389.000000,7.021700,357900.000000\n",
- "-119.620000,36.560000,30.000000,1722.000000,372.000000,1467.000000,403.000000,1.887800,51600.000000\n",
- "-122.160000,37.690000,36.000000,1118.000000,219.000000,625.000000,228.000000,3.781300,192200.000000\n",
- "-117.970000,33.800000,35.000000,2985.000000,474.000000,1614.000000,453.000000,5.463100,225600.000000\n",
- "-120.870000,37.760000,16.000000,2022.000000,413.000000,1126.000000,408.000000,2.565500,116400.000000\n",
- "-120.460000,37.310000,26.000000,3170.000000,572.000000,1524.000000,565.000000,3.480000,95300.000000\n",
- "-118.230000,34.140000,39.000000,277.000000,89.000000,182.000000,91.000000,2.395800,175000.000000\n",
- "-121.070000,38.660000,22.000000,1831.000000,274.000000,813.000000,269.000000,4.639400,173400.000000\n",
- "-120.090000,36.950000,16.000000,3222.000000,511.000000,1425.000000,503.000000,4.154400,119400.000000\n",
- "-118.210000,33.960000,38.000000,2090.000000,519.000000,1871.000000,504.000000,2.468800,169000.000000\n",
- "-122.630000,38.230000,37.000000,1966.000000,348.000000,875.000000,381.000000,4.070300,223800.000000\n",
- "-119.400000,36.250000,25.000000,1696.000000,279.000000,909.000000,291.000000,2.300000,132800.000000\n",
- "-117.380000,33.210000,31.000000,1502.000000,367.000000,1514.000000,342.000000,2.644200,103300.000000\n",
- "-117.250000,32.800000,37.000000,1096.000000,260.000000,490.000000,267.000000,3.266300,270600.000000\n",
- "-122.230000,40.570000,18.000000,1633.000000,243.000000,750.000000,252.000000,5.158500,150800.000000\n",
- "-121.230000,38.790000,45.000000,907.000000,176.000000,463.000000,190.000000,2.229200,92000.000000\n",
- "-121.550000,40.480000,14.000000,2413.000000,524.000000,805.000000,329.000000,2.785700,77400.000000\n",
- "-117.890000,33.920000,34.000000,1473.000000,312.000000,1025.000000,315.000000,3.833300,170400.000000\n",
- "-117.230000,32.720000,43.000000,952.000000,209.000000,392.000000,210.000000,2.163500,244200.000000\n",
- "-117.920000,33.790000,35.000000,1785.000000,288.000000,1033.000000,297.000000,4.573900,190500.000000\n",
- "-117.580000,34.110000,14.000000,11635.000000,2055.000000,6443.000000,2009.000000,4.754700,157600.000000\n",
- "-120.850000,38.690000,18.000000,5928.000000,1097.000000,2697.000000,1096.000000,3.487200,141400.000000\n",
- "-121.530000,38.480000,5.000000,27870.000000,5027.000000,11935.000000,4855.000000,4.881100,212200.000000\n",
- "-117.210000,32.820000,31.000000,2035.000000,383.000000,866.000000,360.000000,3.852900,212000.000000\n",
- "-117.350000,34.130000,26.000000,3920.000000,570.000000,1862.000000,552.000000,3.728600,132000.000000\n",
- "-118.170000,33.790000,30.000000,1349.000000,519.000000,2646.000000,552.000000,1.931800,115900.000000\n",
- "-118.300000,34.260000,37.000000,2824.000000,633.000000,1619.000000,573.000000,3.556800,184500.000000\n",
- "-118.020000,33.830000,16.000000,1139.000000,328.000000,665.000000,290.000000,3.293300,260000.000000\n",
- "-116.990000,33.010000,11.000000,1412.000000,185.000000,529.000000,166.000000,7.751700,500001.000000\n",
- "-122.560000,38.010000,21.000000,2144.000000,400.000000,840.000000,398.000000,4.600000,239500.000000\n",
- "-118.150000,34.100000,39.000000,3856.000000,867.000000,1847.000000,830.000000,3.455900,364900.000000\n",
- "-117.930000,33.730000,27.000000,3662.000000,834.000000,3009.000000,743.000000,3.981600,179500.000000\n",
- "-121.090000,38.030000,21.000000,2064.000000,342.000000,1021.000000,359.000000,4.517000,152200.000000\n",
- "-116.660000,33.090000,24.000000,1378.000000,272.000000,532.000000,188.000000,1.590900,221900.000000\n",
- "-118.260000,33.830000,24.000000,3059.000000,729.000000,2064.000000,629.000000,3.551800,184600.000000\n",
- "-117.940000,33.930000,14.000000,999.000000,232.000000,1037.000000,244.000000,2.712500,166100.000000\n",
- "-116.930000,32.830000,19.000000,3038.000000,529.000000,1463.000000,509.000000,3.944000,172500.000000\n",
- "-122.290000,37.850000,52.000000,477.000000,119.000000,218.000000,106.000000,2.568200,120000.000000\n",
- "-122.480000,37.670000,14.000000,3395.000000,1059.000000,2258.000000,945.000000,2.964000,319700.000000\n",
- "-119.330000,36.310000,15.000000,1472.000000,228.000000,892.000000,257.000000,5.390900,113000.000000\n",
- "-118.410000,34.210000,35.000000,1789.000000,292.000000,897.000000,267.000000,5.592000,239900.000000\n",
- "-119.500000,34.350000,39.000000,308.000000,38.000000,59.000000,21.000000,11.779400,500001.000000\n",
- "-118.330000,34.110000,48.000000,1601.000000,464.000000,784.000000,461.000000,3.064200,342900.000000\n",
- "-118.300000,34.100000,29.000000,3403.000000,1367.000000,3432.000000,1174.000000,1.708300,166700.000000\n",
- "-119.750000,34.400000,31.000000,1997.000000,299.000000,826.000000,301.000000,6.892700,500001.000000\n",
- "-120.940000,39.320000,14.000000,3120.000000,595.000000,1569.000000,556.000000,3.538500,157400.000000\n",
- "-117.680000,35.610000,9.000000,4241.000000,832.000000,1929.000000,742.000000,3.598800,84500.000000\n",
- "-122.270000,38.120000,45.000000,4423.000000,1001.000000,2109.000000,874.000000,2.693700,111800.000000\n",
- "-118.210000,34.110000,32.000000,2759.000000,499.000000,1661.000000,533.000000,4.381200,228200.000000\n",
- "-117.230000,33.100000,4.000000,1862.000000,291.000000,685.000000,248.000000,7.745000,237400.000000\n",
- "-119.460000,35.140000,30.000000,2943.000000,697.000000,1565.000000,584.000000,2.531300,45800.000000\n",
- "-119.780000,36.760000,50.000000,1343.000000,322.000000,1063.000000,342.000000,1.750000,49800.000000\n",
- "-117.810000,33.660000,20.000000,2851.000000,490.000000,1192.000000,463.000000,5.875200,274200.000000\n",
- "-119.290000,34.310000,25.000000,1092.000000,190.000000,702.000000,215.000000,3.906300,192700.000000\n",
- "-122.410000,37.610000,46.000000,2975.000000,643.000000,1479.000000,577.000000,3.821400,273600.000000\n",
- "-120.320000,37.290000,38.000000,576.000000,130.000000,478.000000,112.000000,2.338200,59600.000000\n",
- "-118.370000,34.160000,40.000000,1973.000000,382.000000,774.000000,352.000000,4.412200,282300.000000\n",
- "-122.050000,37.050000,41.000000,2422.000000,502.000000,915.000000,366.000000,4.167900,201300.000000\n",
- "-118.460000,34.030000,52.000000,523.000000,124.000000,317.000000,130.000000,2.279400,337500.000000\n",
- "-117.120000,32.760000,43.000000,2336.000000,644.000000,1203.000000,614.000000,2.359400,127800.000000\n",
- "-122.040000,37.570000,12.000000,5719.000000,1064.000000,3436.000000,1057.000000,5.287900,231200.000000\n",
- "-121.970000,37.360000,34.000000,884.000000,153.000000,534.000000,154.000000,6.011600,271200.000000\n",
- "-121.280000,38.530000,18.000000,224.000000,38.000000,95.000000,41.000000,3.104200,165000.000000\n",
- "-119.090000,35.300000,3.000000,2821.000000,519.000000,1353.000000,495.000000,3.685200,109800.000000\n",
- "-121.750000,36.910000,42.000000,1368.000000,468.000000,2312.000000,484.000000,2.559900,151400.000000\n",
- "-121.860000,38.000000,4.000000,4075.000000,927.000000,2239.000000,849.000000,3.585700,165200.000000\n",
- "-118.530000,34.450000,26.000000,828.000000,149.000000,508.000000,158.000000,5.237400,185500.000000\n",
- "-117.940000,33.810000,24.000000,4602.000000,1131.000000,3003.000000,1014.000000,3.677100,172200.000000\n",
- "-119.840000,34.450000,26.000000,4424.000000,616.000000,1839.000000,601.000000,6.365400,331200.000000\n",
- "-118.240000,33.910000,37.000000,1607.000000,377.000000,1526.000000,375.000000,1.715800,94300.000000\n",
- "-117.060000,33.140000,27.000000,3819.000000,674.000000,2447.000000,717.000000,3.818500,137200.000000\n",
- "-120.980000,37.670000,33.000000,1433.000000,298.000000,824.000000,302.000000,2.762100,109100.000000\n",
- "-117.740000,34.090000,30.000000,3199.000000,591.000000,2192.000000,563.000000,3.487100,136400.000000\n",
- "-118.180000,34.010000,39.000000,322.000000,82.000000,319.000000,90.000000,2.636400,148800.000000\n",
- "-118.240000,33.890000,32.000000,1132.000000,266.000000,1211.000000,279.000000,2.183800,98300.000000\n",
- "-123.080000,40.400000,10.000000,365.000000,102.000000,140.000000,49.000000,1.796900,37500.000000\n",
- "-117.320000,34.070000,52.000000,1226.000000,269.000000,693.000000,272.000000,1.996300,76900.000000\n",
- "-118.240000,33.850000,25.000000,9594.000000,1489.000000,5237.000000,1496.000000,5.968400,193300.000000\n",
- "-122.230000,37.780000,52.000000,472.000000,146.000000,415.000000,126.000000,2.642900,71300.000000\n",
- "-121.180000,38.780000,13.000000,3480.000000,528.000000,1432.000000,532.000000,6.164200,277800.000000\n",
- "-118.100000,33.910000,29.000000,505.000000,113.000000,411.000000,113.000000,2.639700,164400.000000\n",
- "-121.970000,38.040000,38.000000,2505.000000,554.000000,1595.000000,498.000000,2.583300,83500.000000\n",
- "-118.470000,34.000000,41.000000,2331.000000,636.000000,1839.000000,537.000000,2.288000,263500.000000\n",
- "-119.310000,36.390000,32.000000,2293.000000,466.000000,1538.000000,468.000000,1.934200,68600.000000\n",
- "-122.170000,37.710000,38.000000,890.000000,200.000000,481.000000,198.000000,3.244000,179800.000000\n",
- "-122.490000,37.680000,35.000000,2405.000000,461.000000,1583.000000,471.000000,5.065900,238000.000000\n",
- "-121.300000,37.980000,39.000000,3375.000000,659.000000,1388.000000,631.000000,2.636400,93800.000000\n",
- "-121.370000,38.570000,22.000000,4899.000000,847.000000,1701.000000,826.000000,5.244900,387000.000000\n",
- "-122.080000,37.610000,6.000000,2605.000000,474.000000,1568.000000,433.000000,5.040600,261400.000000\n",
- "-117.110000,32.570000,32.000000,2723.000000,586.000000,1702.000000,562.000000,3.337100,140500.000000\n",
- "-122.090000,37.400000,22.000000,1489.000000,436.000000,662.000000,470.000000,3.517900,197200.000000\n",
- "-122.010000,36.980000,27.000000,2820.000000,730.000000,1511.000000,745.000000,2.589000,242400.000000\n",
- "-118.250000,34.000000,36.000000,1033.000000,267.000000,1112.000000,229.000000,1.723700,105800.000000\n",
- "-117.830000,33.660000,16.000000,1574.000000,385.000000,515.000000,363.000000,5.342300,291700.000000\n",
- "-121.960000,37.740000,2.000000,200.000000,20.000000,25.000000,9.000000,15.000100,350000.000000\n",
- "-119.810000,36.730000,51.000000,956.000000,196.000000,662.000000,180.000000,2.101000,56700.000000\n",
- "-118.620000,34.060000,25.000000,3546.000000,584.000000,1530.000000,601.000000,7.400100,500001.000000\n",
- "-122.350000,37.960000,35.000000,1326.000000,346.000000,1023.000000,295.000000,2.072400,97700.000000\n",
- "-119.060000,36.100000,21.000000,1344.000000,249.000000,868.000000,221.000000,2.589300,63600.000000\n",
- "-122.470000,37.750000,52.000000,1598.000000,285.000000,689.000000,265.000000,4.607100,337400.000000\n",
- "-122.540000,37.900000,41.000000,3170.000000,622.000000,1091.000000,528.000000,3.781300,389200.000000\n",
- "-119.730000,36.760000,30.000000,1548.000000,282.000000,886.000000,311.000000,3.100000,71300.000000\n",
- "-122.030000,36.960000,40.000000,584.000000,126.000000,316.000000,139.000000,3.593800,243500.000000\n",
- "-119.750000,36.780000,33.000000,1145.000000,197.000000,508.000000,198.000000,2.333300,81300.000000\n",
- "-117.300000,33.060000,24.000000,2171.000000,511.000000,870.000000,442.000000,3.194000,276300.000000\n",
- "-121.990000,36.960000,16.000000,875.000000,201.000000,300.000000,157.000000,2.625000,377300.000000\n",
- "-120.730000,39.630000,17.000000,1791.000000,356.000000,432.000000,190.000000,3.882600,92400.000000\n",
- "-118.480000,34.030000,19.000000,902.000000,284.000000,414.000000,272.000000,1.333300,310000.000000\n",
- "-118.220000,33.950000,36.000000,1679.000000,483.000000,2249.000000,487.000000,2.816700,160400.000000\n",
- "-118.240000,33.970000,43.000000,1357.000000,349.000000,1657.000000,331.000000,2.081900,111800.000000\n",
- "-117.820000,35.030000,30.000000,2555.000000,510.000000,1347.000000,467.000000,3.369300,71800.000000\n",
- "-117.020000,32.700000,18.000000,1643.000000,283.000000,1134.000000,269.000000,5.176900,133000.000000\n",
- "-122.350000,37.940000,47.000000,1275.000000,275.000000,844.000000,273.000000,2.896700,95600.000000\n",
- "-119.800000,36.780000,50.000000,1818.000000,374.000000,737.000000,338.000000,2.261400,73000.000000\n",
- "-122.190000,37.480000,38.000000,1300.000000,269.000000,608.000000,292.000000,4.556800,286900.000000\n",
- "-122.380000,37.590000,31.000000,3052.000000,844.000000,1581.000000,788.000000,3.074400,457700.000000\n",
- "-122.150000,37.750000,44.000000,1938.000000,399.000000,946.000000,331.000000,3.225000,135800.000000\n",
- "-119.350000,36.190000,6.000000,958.000000,226.000000,734.000000,230.000000,1.034900,67800.000000\n",
- "-120.450000,34.950000,7.000000,1479.000000,532.000000,1057.000000,459.000000,2.253800,162500.000000\n",
- "-122.280000,38.290000,19.000000,531.000000,112.000000,139.000000,80.000000,1.987500,325000.000000\n",
- "-122.260000,37.840000,49.000000,713.000000,202.000000,462.000000,189.000000,1.025000,118800.000000\n",
- "-122.300000,37.810000,52.000000,572.000000,109.000000,274.000000,82.000000,1.851600,85000.000000\n",
- "-118.220000,33.900000,22.000000,312.000000,107.000000,583.000000,119.000000,1.942300,98400.000000\n",
- "-117.670000,33.640000,11.000000,2722.000000,554.000000,1565.000000,508.000000,5.164500,164100.000000\n",
- "-122.020000,37.010000,20.000000,1005.000000,138.000000,345.000000,129.000000,10.096800,500001.000000\n",
- "-117.380000,33.190000,17.000000,353.000000,112.000000,359.000000,118.000000,1.562500,162500.000000\n",
- "-118.010000,34.080000,30.000000,2281.000000,522.000000,1969.000000,500.000000,3.653100,166300.000000\n",
- "-118.600000,34.130000,20.000000,14291.000000,1934.000000,5452.000000,1875.000000,9.123200,472000.000000\n",
- "-118.520000,34.200000,19.000000,4315.000000,1304.000000,2490.000000,1222.000000,2.643700,195000.000000\n",
- "-118.420000,34.270000,35.000000,2700.000000,702.000000,3444.000000,679.000000,1.486700,124000.000000\n",
- "-122.080000,37.710000,35.000000,2211.000000,350.000000,1004.000000,365.000000,5.463900,238600.000000\n",
- "-117.650000,33.570000,5.000000,1998.000000,500.000000,1185.000000,446.000000,4.354200,195600.000000\n",
- "-120.540000,37.680000,18.000000,335.000000,76.000000,189.000000,67.000000,1.227300,87500.000000\n",
- "-118.310000,34.050000,40.000000,1667.000000,365.000000,1161.000000,384.000000,3.140600,417600.000000\n",
- "-122.420000,37.600000,34.000000,3562.000000,565.000000,1542.000000,563.000000,5.878300,405100.000000\n",
- "-118.180000,33.980000,38.000000,1477.000000,374.000000,1514.000000,408.000000,2.570300,178600.000000\n",
- "-121.250000,36.320000,12.000000,4776.000000,1082.000000,4601.000000,1066.000000,2.918400,100500.000000\n",
- "-118.170000,34.690000,12.000000,4881.000000,803.000000,2188.000000,724.000000,4.166700,171900.000000\n",
- "-120.330000,39.300000,16.000000,868.000000,178.000000,44.000000,21.000000,3.000000,175000.000000\n",
- "-118.380000,34.060000,29.000000,3946.000000,1008.000000,1676.000000,876.000000,2.782400,450000.000000\n",
- "-119.780000,36.730000,52.000000,1377.000000,319.000000,1280.000000,259.000000,1.234400,43300.000000\n",
- "-118.330000,33.970000,44.000000,2526.000000,579.000000,1423.000000,573.000000,2.536300,158800.000000\n",
- "-118.370000,34.060000,36.000000,1661.000000,395.000000,690.000000,365.000000,3.343800,500001.000000\n",
- "-119.000000,35.390000,51.000000,1373.000000,284.000000,648.000000,300.000000,2.829500,72100.000000\n",
- "-117.950000,33.870000,35.000000,1854.000000,383.000000,1115.000000,381.000000,4.478400,185200.000000\n",
- "-118.380000,34.580000,18.000000,1859.000000,375.000000,913.000000,372.000000,4.345600,148900.000000\n",
- "-118.290000,34.080000,25.000000,2459.000000,823.000000,2635.000000,763.000000,2.400000,173900.000000\n",
- "-120.970000,37.680000,16.000000,2493.000000,535.000000,1370.000000,504.000000,3.336800,121200.000000\n",
- "-122.280000,37.870000,52.000000,589.000000,132.000000,288.000000,131.000000,3.515600,200000.000000\n",
- "-118.140000,33.880000,41.000000,1531.000000,343.000000,1119.000000,341.000000,4.364600,161400.000000\n",
- "-122.060000,37.380000,20.000000,4293.000000,1272.000000,2389.000000,1210.000000,4.271900,270800.000000\n",
- "-118.540000,34.270000,28.000000,2309.000000,300.000000,931.000000,302.000000,6.741500,348200.000000\n",
- "-117.880000,33.840000,25.000000,1781.000000,349.000000,918.000000,378.000000,3.928600,262700.000000\n",
- "-118.300000,34.190000,52.000000,1704.000000,277.000000,746.000000,262.000000,4.798600,326100.000000\n",
- "-117.840000,33.800000,35.000000,1490.000000,251.000000,629.000000,257.000000,4.366100,222100.000000\n",
- "-121.270000,38.650000,25.000000,2787.000000,601.000000,1247.000000,522.000000,2.901600,159800.000000\n",
- "-117.880000,33.870000,21.000000,1519.000000,388.000000,1203.000000,366.000000,3.208300,145300.000000\n",
- "-119.880000,34.420000,22.000000,2367.000000,492.000000,1333.000000,488.000000,3.630400,312200.000000\n",
- "-118.480000,34.010000,31.000000,1829.000000,458.000000,719.000000,392.000000,4.400000,353800.000000\n",
- "-116.950000,33.860000,1.000000,6.000000,2.000000,8.000000,2.000000,1.625000,55000.000000\n",
- "-117.670000,33.510000,17.000000,2112.000000,480.000000,1893.000000,433.000000,4.038800,120400.000000\n",
- "-118.350000,34.040000,38.000000,1626.000000,375.000000,1019.000000,372.000000,2.368700,146800.000000\n",
- "-124.160000,40.800000,52.000000,2167.000000,480.000000,908.000000,451.000000,1.611100,74700.000000\n",
- "-118.350000,34.050000,33.000000,2880.000000,836.000000,1416.000000,736.000000,2.678100,328800.000000\n",
- "-119.080000,34.350000,24.000000,3663.000000,828.000000,2718.000000,778.000000,3.275700,186000.000000\n",
- "-122.510000,37.780000,45.000000,2564.000000,499.000000,1056.000000,460.000000,4.732800,351100.000000\n",
- "-118.360000,34.140000,30.000000,1376.000000,317.000000,629.000000,320.000000,3.682300,295200.000000\n",
- "-121.960000,37.550000,4.000000,3746.000000,993.000000,1606.000000,838.000000,4.138700,162500.000000\n",
- "-117.190000,32.770000,30.000000,2747.000000,640.000000,3185.000000,657.000000,3.765000,238000.000000\n",
- "-118.090000,33.890000,42.000000,1150.000000,215.000000,708.000000,204.000000,3.687500,171500.000000\n",
- "-121.760000,36.900000,44.000000,919.000000,309.000000,1321.000000,301.000000,2.077500,121400.000000\n",
- "-118.140000,33.920000,35.000000,2378.000000,559.000000,1799.000000,546.000000,3.932700,190500.000000\n",
- "-119.060000,34.360000,52.000000,1239.000000,320.000000,934.000000,298.000000,1.861800,183300.000000\n",
- "-118.120000,34.160000,52.000000,2218.000000,437.000000,1211.000000,422.000000,5.023700,241900.000000\n",
- "-117.800000,34.150000,14.000000,7876.000000,1253.000000,3699.000000,1162.000000,5.542300,248700.000000\n",
- "-120.040000,39.240000,30.000000,2369.000000,469.000000,510.000000,213.000000,2.650000,123800.000000\n",
- "-121.470000,38.480000,25.000000,2969.000000,551.000000,1745.000000,487.000000,2.638200,76200.000000\n",
- "-122.270000,37.540000,15.000000,2126.000000,310.000000,905.000000,306.000000,8.908300,500001.000000\n",
- "-122.020000,37.540000,31.000000,1240.000000,264.000000,719.000000,236.000000,3.535000,210300.000000\n",
- "-121.380000,38.400000,15.000000,4155.000000,637.000000,1722.000000,616.000000,4.883100,154400.000000\n",
- "-122.040000,37.350000,20.000000,2016.000000,313.000000,767.000000,310.000000,6.837000,383000.000000\n",
- "-117.120000,32.760000,41.000000,1469.000000,421.000000,803.000000,395.000000,2.185600,120500.000000\n",
- "-117.340000,34.180000,7.000000,2914.000000,481.000000,1584.000000,499.000000,4.631200,124900.000000\n",
- "-121.020000,37.670000,32.000000,3951.000000,797.000000,1916.000000,740.000000,2.672200,111500.000000\n",
- "-119.060000,34.380000,33.000000,1465.000000,262.000000,731.000000,266.000000,3.946400,230300.000000\n",
- "-118.160000,33.910000,35.000000,1403.000000,338.000000,1415.000000,367.000000,3.096700,144000.000000\n",
- "-121.920000,37.340000,52.000000,2584.000000,491.000000,1087.000000,433.000000,4.400000,391300.000000\n",
- "-119.030000,34.210000,11.000000,4528.000000,729.000000,2398.000000,684.000000,5.304400,319000.000000\n",
- "-121.960000,37.340000,37.000000,663.000000,127.000000,293.000000,132.000000,3.781300,247800.000000\n",
- "-114.610000,33.620000,16.000000,1187.000000,261.000000,1115.000000,242.000000,2.175900,61500.000000\n",
- "-117.270000,33.150000,4.000000,23915.000000,4135.000000,10877.000000,3958.000000,4.635700,244900.000000\n",
- "-121.370000,38.620000,27.000000,1743.000000,380.000000,697.000000,368.000000,1.667800,166100.000000\n",
- "-118.180000,33.820000,43.000000,2210.000000,469.000000,1042.000000,418.000000,3.500000,216700.000000\n",
- "-118.020000,33.770000,33.000000,2683.000000,436.000000,1520.000000,456.000000,5.009100,211500.000000\n",
- "-120.050000,34.470000,21.000000,1241.000000,248.000000,746.000000,211.000000,3.805600,425000.000000\n",
- "-118.250000,34.010000,45.000000,782.000000,270.000000,1030.000000,235.000000,1.089800,93400.000000\n",
- "-119.540000,38.510000,14.000000,1250.000000,272.000000,721.000000,234.000000,2.350000,95700.000000\n",
- "-117.270000,34.500000,7.000000,2045.000000,342.000000,878.000000,292.000000,6.029600,194100.000000\n",
- "-121.960000,36.990000,23.000000,3209.000000,748.000000,1423.000000,666.000000,2.737500,238000.000000\n",
- "-118.190000,34.040000,45.000000,963.000000,234.000000,1194.000000,239.000000,2.180600,134900.000000\n",
- "-121.280000,37.950000,49.000000,1200.000000,364.000000,1448.000000,318.000000,1.109400,52500.000000\n",
- "-117.960000,33.790000,29.000000,1813.000000,501.000000,1170.000000,482.000000,2.067700,214500.000000\n",
- "-118.440000,34.170000,25.000000,4966.000000,1134.000000,1941.000000,958.000000,3.808100,286700.000000\n",
- "-122.310000,37.520000,35.000000,1817.000000,262.000000,659.000000,262.000000,6.833600,457200.000000\n",
- "-117.970000,33.920000,24.000000,2017.000000,416.000000,900.000000,436.000000,3.000000,251400.000000\n",
- "-117.710000,34.050000,20.000000,2281.000000,444.000000,1545.000000,481.000000,2.573500,130500.000000\n",
- "-118.420000,34.020000,26.000000,2664.000000,842.000000,1745.000000,789.000000,3.426900,301900.000000\n",
- "-120.250000,37.110000,20.000000,2062.000000,466.000000,1285.000000,456.000000,1.531900,50500.000000\n",
- "-121.350000,38.510000,29.000000,2337.000000,391.000000,1054.000000,352.000000,4.220600,157700.000000\n",
- "-120.250000,38.550000,15.000000,4403.000000,891.000000,1103.000000,433.000000,3.012500,111700.000000\n",
- "-118.020000,34.020000,21.000000,5992.000000,986.000000,2647.000000,969.000000,5.240500,302400.000000\n",
- "-120.660000,35.260000,15.000000,5540.000000,1319.000000,2383.000000,1165.000000,2.265600,226200.000000\n",
- "-120.660000,40.420000,35.000000,1450.000000,325.000000,717.000000,297.000000,2.507400,66400.000000\n",
- "-118.150000,35.060000,15.000000,1069.000000,296.000000,569.000000,263.000000,2.044100,73300.000000\n",
- "-122.510000,37.780000,47.000000,2496.000000,494.000000,1201.000000,454.000000,4.035300,342200.000000\n",
- "-120.460000,34.650000,22.000000,1298.000000,358.000000,1272.000000,363.000000,1.648800,117500.000000\n",
- "-117.930000,33.930000,25.000000,2431.000000,534.000000,1702.000000,523.000000,3.793300,184400.000000\n",
- "-118.210000,33.970000,49.000000,1409.000000,313.000000,1268.000000,317.000000,3.940800,170600.000000\n",
- "-120.180000,34.620000,25.000000,1337.000000,219.000000,671.000000,225.000000,3.191200,226400.000000\n",
- "-122.140000,37.430000,18.000000,2060.000000,563.000000,1144.000000,600.000000,4.068600,378600.000000\n",
- "-123.110000,40.600000,23.000000,708.000000,202.000000,316.000000,136.000000,1.160200,65000.000000\n",
- "-117.940000,33.840000,25.000000,4016.000000,831.000000,2166.000000,774.000000,3.188400,135400.000000\n",
- "-122.750000,38.480000,4.000000,6487.000000,1112.000000,2958.000000,1131.000000,4.541700,197400.000000\n",
- "-121.610000,37.150000,16.000000,5498.000000,729.000000,2051.000000,694.000000,7.860100,416300.000000\n",
- "-122.420000,40.600000,5.000000,2614.000000,433.000000,1275.000000,411.000000,3.446400,122900.000000\n",
- "-119.160000,34.950000,14.000000,4054.000000,787.000000,1581.000000,579.000000,3.088200,148200.000000\n",
- "-118.630000,34.240000,9.000000,4759.000000,924.000000,1884.000000,915.000000,4.833300,277200.000000\n",
- "-121.950000,36.980000,34.000000,3745.000000,958.000000,1622.000000,802.000000,3.154600,261200.000000\n",
- "-117.250000,32.790000,43.000000,906.000000,240.000000,458.000000,205.000000,1.836500,328600.000000\n",
- "-119.180000,34.220000,15.000000,4615.000000,1008.000000,2549.000000,973.000000,3.906300,198700.000000\n",
- "-117.260000,32.820000,34.000000,5846.000000,785.000000,1817.000000,747.000000,8.496000,500001.000000\n",
- "-117.070000,32.790000,25.000000,2489.000000,314.000000,911.000000,309.000000,7.833600,277600.000000\n",
- "-116.760000,34.230000,10.000000,4374.000000,989.000000,1020.000000,376.000000,2.607100,89000.000000\n",
- "-118.250000,34.130000,52.000000,322.000000,88.000000,229.000000,89.000000,2.125000,243800.000000\n",
- "-117.280000,34.260000,18.000000,3895.000000,689.000000,1086.000000,375.000000,3.367200,133600.000000\n",
- "-122.570000,38.110000,32.000000,3521.000000,748.000000,1706.000000,723.000000,3.470500,228600.000000\n",
- "-122.450000,37.790000,52.000000,1457.000000,215.000000,495.000000,208.000000,10.709700,500001.000000\n",
- "-117.770000,33.710000,15.000000,2102.000000,295.000000,1060.000000,303.000000,7.314100,337100.000000\n",
- "-119.440000,36.610000,17.000000,1531.000000,280.000000,775.000000,246.000000,3.907300,91600.000000\n",
- "-118.320000,33.930000,37.000000,2379.000000,462.000000,1327.000000,445.000000,4.250000,172100.000000\n",
- "-118.220000,33.790000,28.000000,3008.000000,629.000000,2537.000000,596.000000,2.300000,137500.000000\n",
- "-122.650000,38.480000,17.000000,1090.000000,164.000000,473.000000,163.000000,5.506100,231800.000000\n",
- "-121.230000,37.960000,44.000000,2204.000000,473.000000,1277.000000,435.000000,1.553900,59200.000000\n",
- "-117.860000,34.090000,26.000000,3408.000000,542.000000,1664.000000,543.000000,6.149800,239100.000000\n",
- "-122.060000,37.860000,16.000000,5187.000000,1014.000000,1512.000000,986.000000,4.455100,252400.000000\n",
- "-117.360000,34.100000,29.000000,2819.000000,637.000000,1683.000000,608.000000,2.320500,87600.000000\n",
- "-117.300000,34.100000,49.000000,60.000000,11.000000,76.000000,13.000000,2.562500,75000.000000\n",
- "-122.140000,38.030000,42.000000,118.000000,34.000000,54.000000,30.000000,2.579500,225000.000000\n",
- "-121.640000,36.800000,18.000000,5915.000000,1000.000000,2975.000000,975.000000,4.581200,255200.000000\n",
- "-122.240000,38.010000,11.000000,3751.000000,565.000000,1949.000000,555.000000,5.786200,269400.000000\n",
- "-116.860000,34.310000,19.000000,1649.000000,328.000000,382.000000,151.000000,4.055600,133000.000000\n",
- "-122.710000,37.880000,21.000000,2845.000000,552.000000,599.000000,250.000000,4.312500,495800.000000\n",
- "-117.090000,32.560000,8.000000,864.000000,156.000000,626.000000,172.000000,4.898400,151500.000000\n",
- "-122.250000,37.470000,35.000000,3183.000000,515.000000,1313.000000,487.000000,5.906200,383200.000000\n",
- "-118.120000,33.770000,20.000000,4534.000000,954.000000,1941.000000,892.000000,6.036200,463500.000000\n",
- "-120.960000,37.670000,17.000000,2434.000000,511.000000,1558.000000,546.000000,2.921900,114300.000000\n",
- "-119.300000,36.320000,23.000000,3521.000000,615.000000,1712.000000,636.000000,3.387500,92500.000000\n",
- "-117.390000,33.960000,52.000000,1992.000000,345.000000,948.000000,358.000000,3.291700,129300.000000\n",
- "-121.000000,37.600000,22.000000,4412.000000,925.000000,3116.000000,817.000000,2.689900,82100.000000\n",
- "-117.090000,32.640000,19.000000,2571.000000,791.000000,1205.000000,783.000000,1.620000,131300.000000\n",
- "-122.050000,37.930000,15.000000,7803.000000,1603.000000,2957.000000,1546.000000,4.450000,184900.000000\n",
- "-120.430000,34.870000,26.000000,1699.000000,272.000000,799.000000,266.000000,3.987100,157700.000000\n",
- "-122.090000,37.690000,43.000000,500.000000,110.000000,273.000000,120.000000,3.312500,150000.000000\n",
- "-118.460000,34.010000,39.000000,711.000000,148.000000,347.000000,153.000000,4.281300,297200.000000\n",
- "-121.980000,37.370000,35.000000,995.000000,202.000000,615.000000,199.000000,5.094200,217500.000000\n",
- "-121.970000,37.760000,8.000000,3743.000000,581.000000,1633.000000,567.000000,6.702700,381900.000000\n",
- "-117.810000,33.830000,8.000000,7326.000000,884.000000,2569.000000,798.000000,10.157000,477100.000000\n",
- "-118.160000,33.890000,38.000000,483.000000,113.000000,389.000000,108.000000,2.185900,143800.000000\n",
- "-115.570000,32.780000,25.000000,2007.000000,301.000000,1135.000000,332.000000,5.128000,99600.000000\n",
- "-117.620000,33.420000,27.000000,1005.000000,266.000000,460.000000,243.000000,3.102900,190600.000000\n",
- "-121.510000,38.560000,43.000000,1048.000000,312.000000,1320.000000,294.000000,1.064900,137500.000000\n",
- "-117.110000,32.750000,18.000000,1943.000000,587.000000,1329.000000,522.000000,1.769600,103100.000000\n",
- "-122.460000,37.720000,37.000000,1833.000000,388.000000,1093.000000,363.000000,3.070300,211800.000000\n",
- "-122.010000,37.580000,17.000000,4313.000000,717.000000,2629.000000,721.000000,5.757900,231800.000000\n",
- "-116.850000,34.260000,18.000000,6988.000000,1635.000000,2044.000000,726.000000,2.430800,90600.000000\n",
- "-122.180000,37.150000,17.000000,1457.000000,289.000000,591.000000,235.000000,5.578500,284100.000000\n",
- "-116.950000,32.820000,19.000000,5308.000000,1058.000000,2852.000000,1092.000000,2.916100,135700.000000\n",
- "-117.230000,32.740000,16.000000,1953.000000,404.000000,798.000000,385.000000,4.816700,169800.000000\n",
- "-117.840000,34.110000,17.000000,3499.000000,621.000000,1911.000000,621.000000,4.889400,191700.000000\n",
- "-122.490000,37.760000,48.000000,1351.000000,270.000000,650.000000,265.000000,3.527800,339800.000000\n",
- "-117.930000,33.710000,10.000000,2775.000000,717.000000,1581.000000,633.000000,4.136600,158800.000000\n",
- "-118.180000,33.740000,30.000000,5915.000000,1750.000000,2136.000000,1503.000000,4.096800,310000.000000\n",
- "-118.080000,33.920000,38.000000,1335.000000,282.000000,1011.000000,269.000000,3.690800,157500.000000\n",
- "-118.300000,34.010000,52.000000,1444.000000,343.000000,1154.000000,334.000000,2.062500,134400.000000\n",
- "-122.170000,39.310000,35.000000,2791.000000,552.000000,1395.000000,476.000000,2.562500,62700.000000\n",
- "-117.140000,32.750000,19.000000,1358.000000,613.000000,766.000000,630.000000,1.035300,150000.000000\n",
- "-117.940000,34.040000,36.000000,1431.000000,354.000000,1367.000000,334.000000,3.559200,160200.000000\n",
- "-121.740000,37.190000,11.000000,1290.000000,197.000000,881.000000,191.000000,4.203900,500001.000000\n",
- "-118.360000,33.810000,26.000000,1575.000000,300.000000,881.000000,309.000000,5.177800,359900.000000\n",
- "-122.440000,37.780000,37.000000,1235.000000,314.000000,481.000000,297.000000,3.687500,492300.000000\n",
- "-118.190000,33.810000,23.000000,954.000000,390.000000,804.000000,373.000000,2.583300,181300.000000\n",
- "-117.290000,33.190000,18.000000,6235.000000,1233.000000,4127.000000,1162.000000,3.070400,151600.000000\n",
- "-117.240000,32.850000,18.000000,3117.000000,475.000000,904.000000,368.000000,6.758700,388500.000000\n",
- "-117.240000,32.800000,29.000000,3376.000000,882.000000,1513.000000,843.000000,3.101000,238200.000000\n",
- "-120.980000,38.660000,9.000000,2073.000000,404.000000,916.000000,373.000000,3.225000,163300.000000\n",
- "-119.630000,36.760000,22.000000,4126.000000,614.000000,1795.000000,613.000000,4.925000,154700.000000\n",
- "-121.650000,37.120000,14.000000,4721.000000,999.000000,2648.000000,888.000000,3.689500,239300.000000\n",
- "-121.900000,37.440000,12.000000,4228.000000,734.000000,2594.000000,732.000000,6.608600,299400.000000\n",
- "-122.110000,37.700000,23.000000,1689.000000,461.000000,828.000000,443.000000,2.155200,161400.000000\n",
- "-118.290000,33.950000,35.000000,1401.000000,362.000000,1357.000000,327.000000,2.091700,99300.000000\n",
- "-117.760000,34.060000,30.000000,1700.000000,504.000000,1719.000000,459.000000,2.227000,91900.000000\n",
- "-118.320000,34.080000,52.000000,2370.000000,473.000000,1053.000000,434.000000,4.142900,380300.000000\n",
- "-117.080000,32.720000,32.000000,2286.000000,468.000000,1741.000000,467.000000,3.044600,101900.000000\n",
- "-117.130000,32.790000,35.000000,1362.000000,243.000000,698.000000,255.000000,3.645800,173800.000000\n",
- "-121.940000,36.980000,24.000000,3010.000000,562.000000,1360.000000,504.000000,4.200600,290700.000000\n",
- "-118.230000,33.960000,36.000000,1062.000000,270.000000,1136.000000,273.000000,1.659700,109100.000000\n",
- "-121.980000,37.360000,34.000000,1735.000000,318.000000,1019.000000,301.000000,4.562500,242700.000000\n",
- "-118.280000,34.120000,50.000000,2384.000000,312.000000,836.000000,337.000000,12.876300,500001.000000\n",
- "-122.130000,37.150000,39.000000,2854.000000,613.000000,1338.000000,518.000000,3.942300,180300.000000\n",
- "-118.200000,33.780000,48.000000,1766.000000,497.000000,1908.000000,466.000000,1.987200,168800.000000\n",
- "-117.730000,34.120000,26.000000,1279.000000,163.000000,412.000000,157.000000,6.173100,293800.000000\n",
- "-117.990000,33.690000,12.000000,2480.000000,858.000000,1441.000000,788.000000,1.670500,350000.000000\n",
- "-117.940000,34.060000,32.000000,3418.000000,662.000000,2003.000000,622.000000,4.033300,210200.000000\n",
- "-117.390000,34.110000,5.000000,2987.000000,457.000000,1821.000000,485.000000,4.888900,138900.000000\n",
- "-122.000000,38.350000,38.000000,1918.000000,364.000000,745.000000,348.000000,2.570700,126000.000000\n",
- "-120.980000,37.590000,2.000000,5042.000000,834.000000,2784.000000,787.000000,4.648400,145900.000000\n",
- "-118.260000,34.120000,45.000000,2839.000000,698.000000,1768.000000,653.000000,3.130600,214000.000000\n",
- "-122.160000,37.680000,16.000000,1687.000000,348.000000,568.000000,352.000000,2.386900,83300.000000\n",
- "-118.120000,33.830000,45.000000,1579.000000,278.000000,687.000000,285.000000,5.042400,225900.000000\n",
- "-117.880000,33.790000,32.000000,1484.000000,295.000000,928.000000,295.000000,5.141800,190300.000000\n",
- "-122.410000,37.710000,40.000000,2054.000000,433.000000,1738.000000,429.000000,4.992600,213900.000000\n",
- "-122.390000,37.730000,43.000000,4864.000000,972.000000,3134.000000,959.000000,4.339300,217300.000000\n",
- "-121.930000,36.630000,33.000000,1740.000000,342.000000,638.000000,329.000000,3.191200,319800.000000\n",
- "-120.310000,38.020000,11.000000,2366.000000,398.000000,1046.000000,387.000000,3.820300,139700.000000\n",
- "-122.470000,37.610000,34.000000,4551.000000,837.000000,2208.000000,834.000000,5.436400,279300.000000\n",
- "-117.680000,34.000000,5.000000,3761.000000,580.000000,2335.000000,648.000000,5.733800,225400.000000\n",
- "-122.280000,37.850000,41.000000,535.000000,123.000000,317.000000,119.000000,2.403800,107500.000000\n",
- "-117.180000,32.920000,4.000000,15025.000000,2616.000000,7560.000000,2392.000000,5.196000,210700.000000\n",
- "-117.700000,33.600000,26.000000,2283.000000,506.000000,634.000000,469.000000,2.377400,74300.000000\n",
- "-122.480000,37.750000,52.000000,2074.000000,401.000000,1136.000000,409.000000,4.770300,331000.000000\n",
- "-117.150000,32.740000,26.000000,3149.000000,832.000000,1320.000000,808.000000,3.025900,211700.000000\n",
- "-119.900000,36.790000,22.000000,1970.000000,332.000000,1066.000000,319.000000,3.312500,106100.000000\n",
- "-117.190000,32.780000,34.000000,4108.000000,664.000000,1659.000000,644.000000,4.409700,252000.000000\n",
- "-118.390000,34.030000,25.000000,3442.000000,1050.000000,1890.000000,914.000000,3.057400,319400.000000\n",
- "-117.780000,33.680000,15.000000,1834.000000,330.000000,841.000000,309.000000,6.063400,234300.000000\n",
- "-119.670000,36.650000,20.000000,2512.000000,449.000000,1464.000000,450.000000,3.921100,92300.000000\n",
- "-118.260000,34.020000,41.000000,848.000000,323.000000,1428.000000,313.000000,1.560300,109600.000000\n",
- "-122.240000,38.010000,16.000000,2084.000000,315.000000,1154.000000,307.000000,6.010200,235600.000000\n",
- "-122.250000,38.160000,17.000000,4459.000000,944.000000,1812.000000,888.000000,2.937500,106700.000000\n",
- "-117.320000,33.800000,11.000000,3196.000000,576.000000,1757.000000,552.000000,4.098200,173300.000000\n",
- "-118.210000,34.060000,52.000000,470.000000,115.000000,434.000000,123.000000,2.095000,109100.000000\n",
- "-119.770000,36.800000,24.000000,3748.000000,770.000000,1827.000000,719.000000,2.722200,83100.000000\n",
- "-121.860000,37.410000,16.000000,1603.000000,287.000000,1080.000000,296.000000,6.125600,266900.000000\n",
- "-117.970000,33.880000,9.000000,1344.000000,279.000000,530.000000,265.000000,5.073100,185100.000000\n",
- "-121.840000,39.720000,52.000000,1457.000000,389.000000,802.000000,342.000000,0.956600,69000.000000\n",
- "-118.510000,34.200000,37.000000,2066.000000,434.000000,1031.000000,414.000000,4.092400,188400.000000\n",
- "-117.930000,33.780000,28.000000,4380.000000,820.000000,2187.000000,835.000000,3.901800,182300.000000\n",
- "-117.750000,33.610000,16.000000,2270.000000,488.000000,709.000000,489.000000,3.284500,227600.000000\n",
- "-121.460000,38.700000,32.000000,965.000000,183.000000,568.000000,188.000000,3.861100,93900.000000\n",
- "-119.280000,36.320000,29.000000,2274.000000,514.000000,1234.000000,521.000000,1.913800,66900.000000\n",
- "-118.740000,34.280000,21.000000,4056.000000,637.000000,1974.000000,634.000000,5.902400,221000.000000\n",
- "-119.330000,36.190000,27.000000,418.000000,163.000000,332.000000,141.000000,1.071400,63800.000000\n",
- "-118.750000,34.270000,24.000000,3241.000000,461.000000,1567.000000,446.000000,5.598300,233300.000000\n",
- "-118.210000,33.930000,33.000000,2739.000000,801.000000,3423.000000,741.000000,2.284700,132700.000000\n",
- "-122.370000,37.960000,37.000000,1572.000000,402.000000,1046.000000,350.000000,0.740300,68600.000000\n",
- "-121.980000,37.280000,27.000000,3526.000000,589.000000,1725.000000,553.000000,5.781200,275000.000000\n",
- "-117.030000,32.610000,23.000000,1553.000000,216.000000,778.000000,229.000000,5.153800,171300.000000\n",
- "-117.280000,34.410000,14.000000,2105.000000,396.000000,960.000000,396.000000,2.993400,118200.000000\n",
- "-118.020000,34.130000,33.000000,2874.000000,458.000000,1239.000000,431.000000,5.232900,430900.000000\n",
- "-117.900000,34.060000,33.000000,1330.000000,209.000000,578.000000,192.000000,5.640600,266200.000000\n",
- "-118.470000,34.240000,19.000000,2405.000000,661.000000,1855.000000,621.000000,2.311100,255400.000000\n",
- "-122.490000,37.860000,35.000000,2729.000000,538.000000,969.000000,528.000000,6.766900,500001.000000\n",
- "-121.440000,38.680000,19.000000,2476.000000,534.000000,1355.000000,463.000000,2.062500,94400.000000\n",
- "-118.360000,34.200000,14.000000,1878.000000,614.000000,1874.000000,559.000000,2.526700,231800.000000\n",
- "-117.280000,33.060000,8.000000,4172.000000,1022.000000,2585.000000,941.000000,4.011800,245800.000000\n",
- "-122.430000,37.730000,52.000000,1142.000000,224.000000,494.000000,206.000000,5.060200,298900.000000\n",
- "-118.130000,34.130000,52.000000,2826.000000,381.000000,924.000000,365.000000,7.997600,500001.000000\n",
- "-118.050000,33.950000,33.000000,1954.000000,390.000000,1600.000000,376.000000,3.612500,170800.000000\n",
- "-121.990000,38.260000,18.000000,921.000000,126.000000,368.000000,120.000000,6.084200,261100.000000\n",
- "-122.470000,37.780000,52.000000,1941.000000,436.000000,955.000000,425.000000,4.133900,396400.000000\n",
- "-121.270000,38.660000,15.000000,2642.000000,520.000000,1032.000000,475.000000,4.138200,189800.000000\n",
- "-122.240000,37.810000,52.000000,2026.000000,482.000000,709.000000,456.000000,3.272700,268500.000000\n",
- "-121.440000,38.470000,5.000000,5666.000000,1178.000000,3139.000000,1131.000000,3.360800,108900.000000\n",
- "-118.120000,33.770000,10.000000,7264.000000,1137.000000,2528.000000,1057.000000,10.223300,500001.000000\n",
- "-117.980000,33.940000,32.000000,2562.000000,491.000000,1222.000000,446.000000,4.098500,226200.000000\n",
- "-118.070000,34.160000,35.000000,2459.000000,438.000000,970.000000,437.000000,4.214300,369400.000000\n",
- "-118.190000,34.140000,46.000000,2387.000000,488.000000,1181.000000,456.000000,3.605800,257900.000000\n",
- "-118.210000,34.120000,52.000000,1301.000000,389.000000,1189.000000,361.000000,2.513900,190000.000000\n",
- "-121.920000,36.630000,36.000000,877.000000,175.000000,349.000000,168.000000,3.416700,339100.000000\n",
- "-117.970000,33.840000,18.000000,1063.000000,209.000000,462.000000,223.000000,2.834800,219000.000000\n",
- "-118.410000,33.990000,39.000000,3014.000000,822.000000,3212.000000,777.000000,1.198500,215000.000000\n",
- "-119.440000,36.600000,34.000000,864.000000,184.000000,579.000000,171.000000,2.041700,72500.000000\n",
- "-122.700000,39.140000,13.000000,532.000000,111.000000,214.000000,62.000000,3.392900,108300.000000\n",
- "-122.300000,37.560000,37.000000,1962.000000,367.000000,1267.000000,382.000000,4.734400,271800.000000\n",
- "-121.990000,37.540000,26.000000,2332.000000,371.000000,1285.000000,404.000000,5.388000,225000.000000\n",
- "-118.380000,33.980000,25.000000,7105.000000,1012.000000,2519.000000,1004.000000,6.811200,500001.000000\n",
- "-117.980000,33.830000,17.000000,3506.000000,992.000000,2104.000000,893.000000,3.300600,185800.000000\n",
- "-117.960000,33.680000,25.000000,2004.000000,349.000000,1085.000000,343.000000,4.765600,230700.000000\n",
- "-117.640000,33.660000,6.000000,5221.000000,1217.000000,2597.000000,1119.000000,4.607600,204000.000000\n",
- "-121.290000,37.330000,36.000000,48.000000,12.000000,27.000000,8.000000,4.000000,75000.000000\n",
- "-122.440000,37.770000,52.000000,5604.000000,1268.000000,2023.000000,1196.000000,4.408500,400000.000000\n",
- "-118.330000,33.980000,28.000000,3889.000000,1199.000000,3121.000000,1046.000000,1.880600,113900.000000\n",
- "-121.290000,37.990000,30.000000,1271.000000,528.000000,2019.000000,524.000000,1.515200,81300.000000\n",
- "-121.800000,37.350000,17.000000,2529.000000,423.000000,1756.000000,429.000000,5.101700,240700.000000\n",
- "-119.290000,36.530000,33.000000,1509.000000,352.000000,1734.000000,336.000000,1.625000,50300.000000\n",
- "-118.110000,34.030000,36.000000,1493.000000,316.000000,989.000000,293.000000,3.527200,213700.000000\n",
- "-121.870000,37.420000,19.000000,12128.000000,2112.000000,6810.000000,2040.000000,6.441900,264500.000000\n",
- "-122.090000,37.700000,33.000000,4413.000000,1107.000000,2239.000000,1051.000000,2.986100,208200.000000\n",
- "-122.290000,37.870000,52.000000,2225.000000,460.000000,1145.000000,430.000000,2.616500,150000.000000\n",
- "-117.110000,32.660000,52.000000,25.000000,5.000000,14.000000,9.000000,1.625000,118800.000000\n",
- "-121.900000,37.390000,42.000000,42.000000,14.000000,26.000000,14.000000,1.736100,500001.000000\n",
- "-117.520000,33.880000,21.000000,722.000000,178.000000,770.000000,165.000000,2.565600,102500.000000\n",
- "-121.470000,38.700000,31.000000,1007.000000,181.000000,563.000000,185.000000,3.625000,91300.000000\n",
- "-122.280000,37.520000,27.000000,2958.000000,655.000000,1285.000000,577.000000,4.080100,397800.000000\n",
- "-118.410000,34.250000,33.000000,827.000000,192.000000,981.000000,184.000000,2.642900,143100.000000\n",
- "-122.250000,37.800000,52.000000,2087.000000,510.000000,1197.000000,488.000000,3.014900,218400.000000\n",
- "-119.050000,34.240000,24.000000,4341.000000,646.000000,1929.000000,703.000000,5.429800,279600.000000\n",
- "-118.260000,34.060000,33.000000,1950.000000,1047.000000,3707.000000,1012.000000,1.723800,110000.000000\n",
- "-117.090000,32.700000,15.000000,869.000000,217.000000,887.000000,216.000000,1.458300,84200.000000\n",
- "-117.390000,34.070000,15.000000,1966.000000,331.000000,1118.000000,323.000000,3.855800,122700.000000\n",
- "-122.220000,37.790000,37.000000,2343.000000,574.000000,1608.000000,523.000000,2.149400,132500.000000\n",
- "-118.430000,34.040000,52.000000,2425.000000,435.000000,962.000000,412.000000,5.858700,494700.000000\n",
- "-117.560000,33.880000,36.000000,838.000000,210.000000,722.000000,180.000000,2.486100,96200.000000\n",
- "-118.130000,34.160000,52.000000,1787.000000,427.000000,1107.000000,410.000000,2.566400,215000.000000\n",
- "-122.210000,37.470000,33.000000,1266.000000,415.000000,1991.000000,334.000000,2.920000,202800.000000\n",
- "-118.080000,33.780000,34.000000,2287.000000,347.000000,1051.000000,346.000000,5.576700,372000.000000\n",
- "-118.230000,34.210000,29.000000,2584.000000,608.000000,1217.000000,568.000000,3.328700,273400.000000\n",
- "-117.230000,32.730000,44.000000,1168.000000,263.000000,509.000000,256.000000,2.727300,269700.000000\n",
- "-118.190000,33.770000,21.000000,2103.000000,727.000000,1064.000000,603.000000,1.617800,137500.000000\n",
- "-117.170000,32.810000,26.000000,788.000000,127.000000,346.000000,125.000000,5.060300,185700.000000\n",
- "-122.000000,36.970000,39.000000,2702.000000,646.000000,1136.000000,491.000000,2.894100,256700.000000\n",
- "-120.610000,35.120000,12.000000,3430.000000,793.000000,1840.000000,720.000000,2.982100,162000.000000\n",
- "-118.170000,33.830000,46.000000,1362.000000,214.000000,531.000000,222.000000,4.312500,290500.000000\n",
- "-117.860000,33.890000,24.000000,2002.000000,253.000000,820.000000,241.000000,6.961200,274500.000000\n",
- "-118.510000,34.220000,36.000000,1493.000000,285.000000,766.000000,272.000000,4.864600,213200.000000\n",
- "-118.260000,33.900000,38.000000,1566.000000,318.000000,981.000000,318.000000,4.023400,111900.000000\n",
- "-118.020000,34.040000,27.000000,5640.000000,1001.000000,3538.000000,978.000000,5.065000,215400.000000\n",
- "-118.370000,34.100000,37.000000,407.000000,67.000000,100.000000,47.000000,15.000100,500001.000000\n",
- "-117.990000,33.790000,35.000000,2301.000000,467.000000,2272.000000,454.000000,3.956600,167800.000000\n",
- "-122.420000,37.710000,44.000000,2080.000000,489.000000,1781.000000,478.000000,3.682700,215300.000000\n",
- "-117.250000,33.930000,8.000000,10110.000000,1761.000000,5804.000000,1703.000000,4.265400,137600.000000\n",
- "-122.040000,37.850000,27.000000,6039.000000,780.000000,2181.000000,761.000000,9.586200,469400.000000\n",
- "-117.230000,32.870000,11.000000,3123.000000,740.000000,1223.000000,634.000000,5.417000,196800.000000\n",
- "-117.160000,32.810000,35.000000,1213.000000,200.000000,532.000000,181.000000,3.680600,172400.000000\n",
- "-118.090000,33.900000,37.000000,1147.000000,258.000000,742.000000,242.000000,4.046100,153500.000000\n",
- "-118.080000,34.070000,32.000000,4089.000000,975.000000,3775.000000,955.000000,3.290000,205500.000000\n",
- "-117.090000,32.790000,31.000000,2019.000000,417.000000,872.000000,386.000000,3.196400,177700.000000\n",
- "-121.660000,37.130000,20.000000,4477.000000,924.000000,2656.000000,871.000000,3.878800,226900.000000\n",
- "-118.240000,33.960000,34.000000,946.000000,254.000000,1101.000000,239.000000,1.739600,105900.000000\n",
- "-122.020000,37.530000,21.000000,4280.000000,673.000000,2216.000000,681.000000,5.707200,242200.000000\n",
- "-117.820000,33.900000,25.000000,1137.000000,170.000000,524.000000,164.000000,7.574400,259300.000000\n",
- "-118.210000,33.940000,34.000000,710.000000,205.000000,1134.000000,233.000000,2.773400,141100.000000\n",
- "-117.880000,34.000000,32.000000,265.000000,51.000000,170.000000,50.000000,3.937500,187500.000000\n",
- "-118.110000,33.860000,36.000000,2750.000000,487.000000,1386.000000,458.000000,4.990400,221700.000000\n",
- "-118.860000,34.070000,16.000000,1409.000000,244.000000,970.000000,172.000000,8.014400,500001.000000\n",
- "-122.490000,38.320000,30.000000,1631.000000,284.000000,788.000000,284.000000,3.309800,195500.000000\n",
- "-121.660000,39.660000,17.000000,3502.000000,655.000000,1763.000000,613.000000,2.962500,101200.000000\n",
- "-122.330000,37.930000,34.000000,2326.000000,471.000000,1356.000000,441.000000,2.347500,90300.000000\n",
- "-117.280000,33.200000,20.000000,4835.000000,854.000000,2983.000000,834.000000,4.342800,152100.000000\n",
- "-122.160000,37.720000,38.000000,1007.000000,245.000000,618.000000,239.000000,2.875000,144800.000000\n",
- "-117.850000,34.120000,30.000000,4367.000000,1033.000000,2524.000000,954.000000,3.044800,192100.000000\n",
- "-119.260000,35.500000,38.000000,2536.000000,409.000000,1133.000000,430.000000,4.237500,78600.000000\n",
- "-123.350000,40.990000,23.000000,141.000000,59.000000,47.000000,23.000000,1.125000,66000.000000\n",
- "-118.140000,34.160000,39.000000,2776.000000,840.000000,2546.000000,773.000000,2.575000,153500.000000\n",
- "-118.390000,34.230000,43.000000,1193.000000,299.000000,1184.000000,320.000000,2.151800,161600.000000\n",
- "-117.030000,32.790000,17.000000,7352.000000,1699.000000,3331.000000,1634.000000,2.700600,166300.000000\n",
- "-117.840000,33.800000,34.000000,2004.000000,331.000000,843.000000,328.000000,3.590000,230600.000000\n",
- "-116.690000,33.500000,13.000000,1187.000000,255.000000,442.000000,179.000000,1.910700,155700.000000\n",
- "-121.090000,37.610000,42.000000,1787.000000,296.000000,921.000000,287.000000,3.886400,171400.000000\n",
- "-117.140000,32.760000,35.000000,2539.000000,661.000000,1308.000000,629.000000,2.677700,146400.000000\n",
- "-122.690000,38.460000,32.000000,2970.000000,504.000000,1117.000000,512.000000,5.000000,275900.000000\n",
- "-121.130000,38.550000,8.000000,530.000000,109.000000,398.000000,96.000000,4.203100,212500.000000\n",
- "-121.870000,37.270000,25.000000,1730.000000,226.000000,721.000000,243.000000,7.584500,279300.000000\n",
- "-117.910000,33.660000,26.000000,5761.000000,1326.000000,2681.000000,1116.000000,4.034100,243300.000000\n",
- "-121.940000,37.340000,42.000000,2174.000000,420.000000,1304.000000,464.000000,3.142900,286500.000000\n",
- "-121.830000,37.950000,17.000000,1133.000000,244.000000,716.000000,235.000000,2.875000,162500.000000\n",
- "-124.170000,41.800000,16.000000,2739.000000,480.000000,1259.000000,436.000000,3.755700,109400.000000\n",
- "-118.330000,34.060000,52.000000,1368.000000,231.000000,737.000000,248.000000,8.361700,433800.000000\n",
- "-118.240000,33.800000,28.000000,636.000000,169.000000,788.000000,143.000000,3.616100,131300.000000\n",
- "-122.590000,38.120000,25.000000,7784.000000,1145.000000,3445.000000,1166.000000,6.013200,287900.000000\n",
- "-122.480000,37.710000,29.000000,1048.000000,150.000000,455.000000,152.000000,6.127800,417600.000000\n",
- "-120.730000,37.380000,37.000000,653.000000,176.000000,827.000000,176.000000,1.923600,64400.000000\n",
- "-117.040000,32.620000,26.000000,3620.000000,607.000000,2000.000000,593.000000,4.996200,156000.000000\n",
- "-118.440000,34.270000,36.000000,1111.000000,275.000000,1333.000000,266.000000,3.534700,158100.000000\n",
- "-121.000000,37.610000,36.000000,2647.000000,604.000000,2045.000000,550.000000,2.273000,62900.000000\n",
- "-117.840000,33.890000,24.000000,3935.000000,625.000000,1912.000000,593.000000,5.795100,226900.000000\n",
- "-122.250000,37.770000,52.000000,1527.000000,320.000000,825.000000,264.000000,3.453100,208800.000000\n",
- "-118.360000,34.100000,37.000000,7097.000000,2010.000000,2913.000000,1939.000000,2.875000,300000.000000\n",
- "-116.920000,32.790000,24.000000,4055.000000,742.000000,2123.000000,744.000000,4.522400,142000.000000\n",
- "-121.940000,38.350000,8.000000,3157.000000,559.000000,1758.000000,569.000000,4.412000,140100.000000\n",
- "-120.870000,35.410000,16.000000,2168.000000,444.000000,782.000000,374.000000,3.018700,278100.000000\n",
- "-118.100000,33.830000,36.000000,2000.000000,343.000000,956.000000,352.000000,5.373500,234400.000000\n",
- "-117.990000,34.070000,31.000000,1507.000000,369.000000,1548.000000,347.000000,3.432700,147200.000000\n",
- "-121.490000,37.940000,31.000000,1860.000000,394.000000,1848.000000,293.000000,2.289100,162500.000000\n",
- "-119.630000,36.320000,36.000000,1518.000000,287.000000,749.000000,255.000000,2.233300,61000.000000\n",
- "-121.890000,39.760000,15.000000,10265.000000,1860.000000,4591.000000,1906.000000,3.070000,142600.000000\n",
- "-117.110000,32.760000,31.000000,2293.000000,549.000000,1108.000000,557.000000,3.385400,204400.000000\n",
- "-118.140000,34.070000,42.000000,1036.000000,199.000000,656.000000,215.000000,4.190200,235000.000000\n",
- "-118.260000,33.950000,38.000000,1387.000000,346.000000,1240.000000,355.000000,1.689800,95100.000000\n",
- "-122.350000,40.560000,16.000000,2801.000000,614.000000,1695.000000,563.000000,1.900000,81600.000000\n",
- "-118.260000,34.060000,40.000000,637.000000,273.000000,1150.000000,263.000000,1.862500,131300.000000\n",
- "-117.820000,33.710000,9.000000,5206.000000,992.000000,4660.000000,978.000000,2.885000,162500.000000\n",
- "-119.980000,38.960000,25.000000,2443.000000,444.000000,868.000000,342.000000,3.541700,114800.000000\n",
- "-118.430000,34.090000,27.000000,1613.000000,200.000000,497.000000,197.000000,7.983500,500001.000000\n",
- "-117.140000,32.750000,20.000000,1182.000000,379.000000,678.000000,326.000000,2.193700,162500.000000\n",
- "-118.470000,34.300000,16.000000,2495.000000,551.000000,2314.000000,567.000000,3.673600,192200.000000\n",
- "-121.780000,38.680000,39.000000,2806.000000,662.000000,1659.000000,638.000000,1.978700,97800.000000\n",
- "-122.280000,37.800000,52.000000,96.000000,31.000000,191.000000,34.000000,0.750000,162500.000000\n",
- "-117.210000,32.800000,19.000000,786.000000,282.000000,525.000000,229.000000,1.727300,137500.000000\n",
- "-121.460000,38.540000,48.000000,1001.000000,205.000000,605.000000,175.000000,1.833300,58200.000000\n",
- "-121.130000,36.210000,30.000000,1484.000000,414.000000,1200.000000,351.000000,1.754800,95800.000000\n",
- "-122.530000,37.970000,52.000000,205.000000,119.000000,228.000000,132.000000,1.906300,200000.000000\n",
- "-122.350000,37.920000,36.000000,921.000000,200.000000,585.000000,236.000000,1.922400,94000.000000\n",
- "-122.120000,37.280000,21.000000,349.000000,64.000000,149.000000,56.000000,5.869100,360000.000000\n",
- "-121.320000,38.260000,4.000000,6125.000000,1063.000000,3077.000000,953.000000,4.117900,134600.000000\n",
- "-121.910000,36.620000,40.000000,1292.000000,271.000000,504.000000,230.000000,2.475000,258300.000000\n",
- "-117.810000,33.710000,16.000000,2666.000000,387.000000,1227.000000,347.000000,7.376900,302400.000000\n",
- "-119.710000,36.810000,19.000000,2282.000000,550.000000,1034.000000,500.000000,1.661800,69700.000000\n",
- "-119.190000,34.170000,27.000000,2183.000000,364.000000,1458.000000,388.000000,4.456700,191100.000000\n",
- "-117.820000,33.790000,26.000000,2641.000000,633.000000,3657.000000,617.000000,4.133900,222300.000000\n",
- "-118.270000,34.160000,48.000000,1301.000000,253.000000,637.000000,260.000000,4.343800,252700.000000\n",
- "-118.330000,34.100000,45.000000,1913.000000,696.000000,1552.000000,611.000000,2.088800,237500.000000\n",
- "-122.290000,37.910000,46.000000,2085.000000,346.000000,748.000000,354.000000,4.053600,262000.000000\n",
- "-118.020000,33.820000,21.000000,2052.000000,456.000000,1173.000000,432.000000,3.788500,204500.000000\n",
- "-118.220000,33.960000,35.000000,1437.000000,474.000000,2113.000000,484.000000,2.617900,158800.000000\n",
- "-116.890000,32.820000,18.000000,2515.000000,443.000000,1442.000000,449.000000,5.020100,154400.000000\n",
- "-117.950000,33.860000,35.000000,2478.000000,431.000000,1333.000000,427.000000,5.209900,191400.000000\n",
- "-122.270000,37.480000,26.000000,3542.000000,507.000000,1392.000000,524.000000,8.518400,500001.000000\n",
- "-120.510000,39.520000,26.000000,2286.000000,444.000000,498.000000,216.000000,2.065000,96100.000000\n",
- "-118.420000,34.090000,40.000000,3552.000000,392.000000,1024.000000,370.000000,15.000100,500001.000000\n",
- "-119.500000,35.270000,23.000000,3827.000000,696.000000,1993.000000,617.000000,3.074200,57900.000000\n",
- "-122.910000,39.070000,21.000000,2202.000000,484.000000,1000.000000,381.000000,2.442300,102300.000000\n",
- "-122.460000,37.770000,52.000000,1824.000000,388.000000,799.000000,363.000000,3.750000,435700.000000\n",
- "-121.540000,36.990000,27.000000,2361.000000,449.000000,1782.000000,397.000000,3.261400,305000.000000\n",
- "-118.450000,34.190000,37.000000,1073.000000,254.000000,739.000000,253.000000,2.466700,192200.000000\n",
- "-117.950000,34.050000,35.000000,1309.000000,276.000000,1113.000000,253.000000,4.375000,156500.000000\n",
- "-120.560000,35.480000,12.000000,4161.000000,731.000000,1609.000000,615.000000,5.094700,267500.000000\n",
- "-122.460000,37.650000,21.000000,2751.000000,502.000000,2027.000000,491.000000,5.257300,322900.000000\n",
- "-117.850000,33.760000,33.000000,1866.000000,327.000000,1053.000000,371.000000,4.546100,213800.000000\n",
- "-118.210000,33.920000,37.000000,1705.000000,403.000000,1839.000000,410.000000,2.583300,132700.000000\n",
- "-118.170000,33.980000,31.000000,1236.000000,329.000000,1486.000000,337.000000,3.093800,155400.000000\n",
- "-121.790000,37.340000,20.000000,2018.000000,328.000000,1196.000000,323.000000,4.931800,262400.000000\n",
- "-117.980000,33.830000,32.000000,1133.000000,166.000000,523.000000,187.000000,6.213000,230800.000000\n",
- "-118.430000,34.300000,37.000000,1394.000000,313.000000,1111.000000,327.000000,3.602300,161800.000000\n",
- "-121.690000,39.360000,34.000000,842.000000,186.000000,635.000000,165.000000,1.835500,63000.000000\n",
- "-117.270000,33.770000,16.000000,2876.000000,576.000000,1859.000000,545.000000,2.087800,101300.000000\n",
- "-122.410000,37.590000,40.000000,2401.000000,383.000000,894.000000,356.000000,5.649300,422400.000000\n",
- "-117.480000,34.100000,30.000000,2287.000000,531.000000,1796.000000,503.000000,2.583300,90600.000000\n",
- "-117.060000,32.700000,12.000000,3943.000000,737.000000,3280.000000,751.000000,4.112000,141400.000000\n",
- "-121.920000,36.630000,40.000000,1076.000000,193.000000,406.000000,180.000000,3.494300,311100.000000\n",
- "-120.440000,37.310000,16.000000,3369.000000,532.000000,1770.000000,574.000000,5.266200,126200.000000\n",
- "-117.180000,32.700000,44.000000,2655.000000,514.000000,1102.000000,489.000000,3.675900,368800.000000\n",
- "-121.570000,39.120000,30.000000,2601.000000,534.000000,1702.000000,506.000000,2.080000,56600.000000\n",
- "-122.210000,37.790000,52.000000,762.000000,190.000000,600.000000,195.000000,3.089300,125000.000000\n",
- "-118.910000,35.300000,28.000000,1793.000000,358.000000,1233.000000,351.000000,2.784500,82200.000000\n",
- "-121.950000,37.320000,20.000000,1145.000000,198.000000,431.000000,173.000000,3.110300,281900.000000\n",
- "-121.350000,38.680000,20.000000,7085.000000,1222.000000,3455.000000,1229.000000,4.311800,120000.000000\n",
- "-121.280000,38.760000,47.000000,2901.000000,631.000000,1276.000000,578.000000,2.136600,101900.000000\n",
- "-118.350000,33.890000,30.000000,1143.000000,299.000000,776.000000,273.000000,4.282900,240000.000000\n",
- "-121.980000,37.970000,26.000000,2714.000000,390.000000,1232.000000,409.000000,5.961700,231100.000000\n",
- "-120.020000,38.920000,24.000000,1194.000000,246.000000,414.000000,151.000000,3.239600,101900.000000\n",
- "-122.280000,37.770000,52.000000,1468.000000,363.000000,870.000000,347.000000,2.968800,220800.000000\n",
- "-118.060000,34.580000,36.000000,1493.000000,258.000000,899.000000,260.000000,3.860000,109300.000000\n",
- "-119.020000,35.380000,52.000000,90.000000,35.000000,36.000000,31.000000,0.805400,60000.000000\n",
- "-122.430000,37.790000,52.000000,6186.000000,1566.000000,2065.000000,1374.000000,5.854300,500001.000000\n",
- "-118.070000,33.860000,17.000000,3666.000000,562.000000,2104.000000,579.000000,5.681800,338900.000000\n",
- "-122.300000,38.000000,34.000000,1712.000000,317.000000,956.000000,341.000000,4.439400,162000.000000\n",
- "-117.170000,33.280000,16.000000,1921.000000,312.000000,862.000000,280.000000,5.178600,376800.000000\n",
- "-117.300000,34.140000,37.000000,1454.000000,261.000000,761.000000,248.000000,2.343800,88100.000000\n",
- "-117.710000,33.600000,25.000000,1949.000000,459.000000,602.000000,428.000000,2.760100,72500.000000\n",
- "-122.500000,37.780000,46.000000,2646.000000,607.000000,1418.000000,563.000000,3.716700,332800.000000\n",
- "-122.720000,38.450000,41.000000,1743.000000,373.000000,780.000000,357.000000,3.146700,175500.000000\n",
- "-118.430000,34.180000,31.000000,2417.000000,510.000000,1102.000000,507.000000,3.890600,282200.000000\n",
- "-118.030000,33.970000,22.000000,2185.000000,623.000000,1644.000000,606.000000,2.593000,192000.000000\n",
- "-118.420000,33.990000,23.000000,5548.000000,1245.000000,2847.000000,1229.000000,4.422800,366900.000000\n",
- "-118.290000,33.960000,31.000000,4022.000000,1208.000000,3707.000000,1007.000000,1.309600,116300.000000\n",
- "-117.980000,33.730000,22.000000,4232.000000,624.000000,2408.000000,660.000000,6.653900,284900.000000\n",
- "-121.910000,39.140000,45.000000,845.000000,155.000000,343.000000,136.000000,2.125000,62000.000000\n",
- "-119.590000,36.640000,27.000000,823.000000,171.000000,798.000000,200.000000,3.052100,113800.000000\n",
- "-118.330000,34.110000,37.000000,2330.000000,434.000000,846.000000,457.000000,8.233500,430200.000000\n",
- "-120.630000,38.750000,17.000000,3145.000000,621.000000,1432.000000,559.000000,2.720100,117500.000000\n",
- "-122.120000,37.750000,28.000000,794.000000,111.000000,329.000000,109.000000,7.692300,329800.000000\n",
- "-118.350000,33.950000,45.000000,1076.000000,213.000000,781.000000,238.000000,3.950000,164000.000000\n",
- "-120.440000,34.960000,29.000000,2374.000000,562.000000,1617.000000,463.000000,2.653100,108300.000000\n",
- "-117.080000,33.120000,43.000000,107.000000,44.000000,107.000000,48.000000,0.705400,137500.000000\n",
- "-121.270000,38.610000,17.000000,6663.000000,1369.000000,2840.000000,1299.000000,2.945200,115600.000000\n",
- "-120.070000,36.960000,32.000000,1268.000000,283.000000,549.000000,273.000000,1.451100,65200.000000\n",
- "-117.660000,34.060000,39.000000,1405.000000,339.000000,1489.000000,336.000000,1.608000,91800.000000\n",
- "-117.060000,33.010000,24.000000,2618.000000,485.000000,726.000000,443.000000,3.519200,159100.000000\n",
- "-117.920000,33.730000,17.000000,1692.000000,293.000000,934.000000,280.000000,4.472800,205800.000000\n",
- "-117.930000,33.920000,34.000000,2271.000000,437.000000,1393.000000,433.000000,4.244300,174400.000000\n",
- "-122.590000,38.920000,15.000000,1410.000000,329.000000,599.000000,273.000000,2.195300,75000.000000\n",
- "-118.140000,33.840000,36.000000,3002.000000,484.000000,1322.000000,471.000000,4.933000,228900.000000\n",
- "-120.790000,37.080000,9.000000,97.000000,20.000000,91.000000,22.000000,2.906300,55000.000000\n",
- "-117.600000,34.110000,18.000000,6025.000000,1062.000000,3360.000000,1028.000000,4.888900,155700.000000\n",
- "-122.020000,37.550000,33.000000,1325.000000,274.000000,909.000000,267.000000,4.568700,177200.000000\n",
- "-118.140000,33.970000,31.000000,1161.000000,267.000000,1175.000000,282.000000,3.011400,177000.000000\n",
- "-122.310000,37.540000,38.000000,1946.000000,407.000000,975.000000,417.000000,4.072600,385400.000000\n",
- "-122.260000,37.830000,52.000000,2432.000000,715.000000,1377.000000,696.000000,2.589800,176000.000000\n",
- "-121.880000,37.680000,23.000000,2234.000000,270.000000,854.000000,286.000000,7.333000,337200.000000\n",
- "-122.530000,37.940000,18.000000,878.000000,255.000000,384.000000,247.000000,4.734400,200000.000000\n",
- "-117.710000,33.630000,16.000000,1565.000000,274.000000,950.000000,280.000000,5.839900,220600.000000\n",
- "-120.100000,39.190000,17.000000,1480.000000,241.000000,202.000000,80.000000,3.937500,213200.000000\n",
- "-117.770000,33.720000,9.000000,2153.000000,316.000000,954.000000,324.000000,7.813900,304700.000000\n",
- "-118.010000,33.840000,35.000000,4166.000000,713.000000,2354.000000,709.000000,5.177500,213400.000000\n",
- "-122.190000,37.710000,36.000000,361.000000,69.000000,158.000000,58.000000,5.546100,262500.000000\n",
- "-120.360000,38.210000,10.000000,4300.000000,845.000000,1480.000000,609.000000,2.820800,139900.000000\n",
- "-117.320000,34.030000,13.000000,3853.000000,761.000000,1685.000000,669.000000,3.902400,122400.000000\n",
- "-117.710000,34.020000,17.000000,12689.000000,2426.000000,7343.000000,2230.000000,3.636100,157700.000000\n",
- "-118.260000,33.910000,33.000000,954.000000,241.000000,655.000000,218.000000,2.588200,92800.000000\n",
- "-121.940000,36.580000,23.000000,4911.000000,693.000000,1480.000000,606.000000,6.777000,500000.000000\n",
- "-121.760000,37.690000,29.000000,3433.000000,711.000000,1919.000000,709.000000,3.384100,184400.000000\n",
- "-121.940000,36.550000,30.000000,2722.000000,584.000000,628.000000,384.000000,3.404800,487100.000000\n",
- "-122.640000,38.010000,36.000000,1199.000000,232.000000,551.000000,229.000000,3.732100,266700.000000\n",
- "-119.340000,36.340000,5.000000,4505.000000,834.000000,1917.000000,775.000000,4.014400,126600.000000\n",
- "-122.060000,37.270000,16.000000,1612.000000,221.000000,567.000000,208.000000,10.579300,500001.000000\n",
- "-117.940000,33.730000,24.000000,4197.000000,718.000000,2468.000000,714.000000,5.256300,211400.000000\n",
- "-118.440000,33.980000,21.000000,18132.000000,5419.000000,7431.000000,4930.000000,5.335900,500001.000000\n",
- "-117.690000,34.010000,30.000000,2598.000000,573.000000,2170.000000,518.000000,2.300000,95600.000000\n",
- "-117.870000,34.150000,24.000000,5745.000000,735.000000,2061.000000,679.000000,8.282700,451400.000000\n",
- "-119.690000,36.380000,25.000000,1688.000000,302.000000,879.000000,277.000000,3.321400,103100.000000\n",
- "-122.280000,38.000000,26.000000,2335.000000,413.000000,980.000000,417.000000,3.447100,178900.000000\n",
- "-118.330000,34.040000,31.000000,1090.000000,251.000000,955.000000,239.000000,2.913000,192500.000000\n",
- "-118.170000,34.070000,37.000000,1155.000000,225.000000,814.000000,241.000000,3.875000,148500.000000\n",
- "-117.950000,34.140000,13.000000,3859.000000,710.000000,2283.000000,759.000000,4.559400,184500.000000\n",
- "-118.280000,33.790000,28.000000,1895.000000,420.000000,1422.000000,389.000000,4.381600,191300.000000\n",
- "-120.860000,37.690000,5.000000,6660.000000,1217.000000,3012.000000,1087.000000,3.080900,143600.000000\n",
- "-120.150000,39.170000,32.000000,1684.000000,359.000000,454.000000,209.000000,2.912500,145800.000000\n",
- "-117.050000,32.710000,25.000000,3292.000000,608.000000,2266.000000,592.000000,3.298600,119200.000000\n",
- "-121.440000,38.520000,36.000000,3446.000000,950.000000,2460.000000,847.000000,1.652100,69700.000000\n",
- "-118.500000,34.190000,26.000000,2156.000000,509.000000,1142.000000,470.000000,4.000000,224700.000000\n",
- "-121.440000,37.760000,5.000000,7264.000000,1285.000000,3670.000000,1146.000000,5.044300,194800.000000\n",
- "-121.950000,37.370000,39.000000,446.000000,129.000000,317.000000,127.000000,3.035700,208300.000000\n",
- "-122.430000,37.770000,52.000000,2685.000000,629.000000,1170.000000,614.000000,3.689400,418800.000000\n",
- "-118.280000,34.010000,48.000000,483.000000,190.000000,775.000000,188.000000,2.330900,126600.000000\n",
- "-118.280000,33.840000,27.000000,2326.000000,533.000000,1697.000000,546.000000,3.863300,187900.000000\n",
- "-118.330000,34.040000,48.000000,2437.000000,443.000000,1400.000000,426.000000,2.628000,251100.000000\n",
- "-118.270000,33.950000,35.000000,2073.000000,494.000000,1753.000000,490.000000,1.500000,93600.000000\n",
- "-120.420000,34.910000,4.000000,6986.000000,1217.000000,2801.000000,1212.000000,3.213500,212700.000000\n",
- "-117.100000,32.830000,16.000000,1049.000000,154.000000,467.000000,160.000000,6.204700,248100.000000\n",
- "-121.890000,36.890000,18.000000,2774.000000,492.000000,1283.000000,353.000000,5.368000,352000.000000\n",
- "-118.220000,33.960000,42.000000,1380.000000,331.000000,1290.000000,288.000000,2.800000,161800.000000\n",
- "-117.270000,33.020000,13.000000,5723.000000,1242.000000,2450.000000,1140.000000,4.717900,376700.000000\n",
- "-121.290000,38.680000,20.000000,1881.000000,378.000000,921.000000,360.000000,1.858900,144000.000000\n",
- "-121.950000,37.310000,27.000000,2462.000000,570.000000,1278.000000,565.000000,3.565200,329500.000000\n",
- "-118.960000,35.370000,41.000000,1463.000000,339.000000,1066.000000,318.000000,1.746700,52400.000000\n",
- "-121.880000,36.580000,29.000000,4910.000000,871.000000,3438.000000,904.000000,4.043200,450000.000000\n",
- "-117.250000,34.410000,13.000000,3682.000000,668.000000,1606.000000,668.000000,2.187500,119700.000000\n",
- "-118.380000,33.770000,17.000000,10950.000000,2207.000000,4713.000000,2043.000000,6.306400,418300.000000\n",
- "-114.550000,32.800000,19.000000,2570.000000,820.000000,1431.000000,608.000000,1.275000,56100.000000\n",
- "-119.810000,34.440000,23.000000,3172.000000,588.000000,1467.000000,559.000000,4.680600,288900.000000\n",
- "-117.120000,33.490000,4.000000,21988.000000,4055.000000,8824.000000,3252.000000,3.996300,191100.000000\n",
- "-118.320000,33.800000,39.000000,1415.000000,298.000000,729.000000,278.000000,3.164800,244800.000000\n",
- "-122.180000,37.730000,43.000000,1391.000000,293.000000,855.000000,285.000000,2.519200,76400.000000\n",
- "-118.100000,34.130000,47.000000,2234.000000,276.000000,749.000000,260.000000,15.000100,500001.000000\n",
- "-122.270000,40.390000,26.000000,1833.000000,422.000000,939.000000,408.000000,1.357100,59000.000000\n",
- "-121.940000,37.730000,22.000000,6719.000000,1068.000000,2843.000000,994.000000,6.126500,260300.000000\n",
- "-121.290000,38.630000,24.000000,2868.000000,527.000000,1284.000000,487.000000,3.318200,213000.000000\n",
- "-117.590000,33.440000,3.000000,5813.000000,1264.000000,2363.000000,1041.000000,4.389700,341300.000000\n",
- "-118.440000,34.190000,29.000000,1599.000000,459.000000,1143.000000,438.000000,2.458300,199100.000000\n",
- "-118.150000,34.030000,42.000000,1481.000000,411.000000,1206.000000,394.000000,2.680600,189300.000000\n",
- "-116.480000,33.800000,15.000000,3004.000000,615.000000,437.000000,210.000000,3.666700,90000.000000\n",
- "-118.410000,33.980000,33.000000,3331.000000,777.000000,1695.000000,735.000000,3.972700,307200.000000\n",
- "-121.050000,37.650000,5.000000,3096.000000,545.000000,1760.000000,519.000000,4.570100,146400.000000\n",
- "-122.420000,37.800000,50.000000,2494.000000,731.000000,958.000000,712.000000,3.235600,500001.000000\n",
- "-117.310000,34.110000,38.000000,1208.000000,321.000000,1225.000000,317.000000,1.466300,64000.000000\n",
- "-116.990000,32.760000,21.000000,3833.000000,595.000000,1645.000000,589.000000,4.625000,273500.000000\n",
- "-122.110000,37.890000,32.000000,2372.000000,516.000000,1067.000000,492.000000,4.323500,279500.000000\n",
- "-122.270000,37.800000,10.000000,105.000000,42.000000,125.000000,39.000000,0.972200,137500.000000\n",
- "-121.870000,37.380000,16.000000,3275.000000,529.000000,1863.000000,527.000000,5.542900,269100.000000\n",
- "-118.200000,33.770000,22.000000,1118.000000,437.000000,1190.000000,399.000000,1.979700,143800.000000\n",
- "-117.120000,32.570000,35.000000,1450.000000,256.000000,930.000000,286.000000,2.671500,133300.000000\n",
- "-118.330000,34.000000,52.000000,1114.000000,169.000000,486.000000,176.000000,4.291700,247600.000000\n",
- "-117.170000,32.820000,21.000000,2869.000000,596.000000,1471.000000,577.000000,3.037500,197600.000000\n",
- "-120.360000,40.450000,19.000000,689.000000,143.000000,355.000000,127.000000,1.733300,70000.000000\n",
- "-116.520000,33.810000,12.000000,12396.000000,2552.000000,2548.000000,1265.000000,3.439400,162200.000000\n",
- "-119.820000,36.770000,41.000000,1441.000000,274.000000,646.000000,296.000000,3.056800,71300.000000\n",
- "-118.350000,33.870000,28.000000,2319.000000,579.000000,1369.000000,564.000000,3.616900,257000.000000\n",
- "-117.340000,34.490000,9.000000,3293.000000,585.000000,1678.000000,530.000000,3.294100,98300.000000\n",
- "-118.550000,34.170000,36.000000,2127.000000,297.000000,761.000000,274.000000,7.839200,500001.000000\n",
- "-122.110000,38.090000,11.000000,673.000000,145.000000,318.000000,137.000000,2.392900,122500.000000\n",
- "-122.260000,37.560000,23.000000,7283.000000,1342.000000,3399.000000,1298.000000,5.668300,391000.000000\n",
- "-121.350000,38.660000,24.000000,3313.000000,769.000000,1631.000000,681.000000,2.555600,105700.000000\n",
- "-118.210000,34.040000,37.000000,845.000000,249.000000,881.000000,252.000000,2.245400,165000.000000\n",
- "-118.340000,34.070000,52.000000,3421.000000,598.000000,1203.000000,564.000000,4.161800,500001.000000\n",
- "-117.880000,34.130000,25.000000,2559.000000,654.000000,1674.000000,623.000000,2.854700,155600.000000\n",
- "-117.870000,33.840000,23.000000,1678.000000,369.000000,912.000000,347.000000,4.500000,237300.000000\n",
- "-117.340000,34.080000,33.000000,4924.000000,1007.000000,3502.000000,953.000000,3.233000,99400.000000\n",
- "-118.330000,34.020000,11.000000,1249.000000,313.000000,625.000000,336.000000,0.870200,170500.000000\n",
- "-118.330000,33.790000,29.000000,4389.000000,873.000000,2069.000000,901.000000,4.107100,365600.000000\n",
- "-119.290000,35.760000,15.000000,3938.000000,789.000000,3500.000000,768.000000,2.129500,59800.000000\n",
- "-117.090000,32.620000,37.000000,1538.000000,298.000000,867.000000,285.000000,3.072900,128700.000000\n",
- "-121.810000,37.250000,5.000000,1975.000000,520.000000,861.000000,440.000000,4.456500,159000.000000\n",
- "-120.290000,37.940000,17.000000,1459.000000,297.000000,753.000000,271.000000,3.050000,144800.000000\n",
- "-120.700000,35.140000,17.000000,5805.000000,1097.000000,1919.000000,932.000000,3.535200,357800.000000\n",
- "-118.170000,34.060000,36.000000,871.000000,201.000000,2862.000000,181.000000,2.184500,123800.000000\n",
- "-117.990000,33.930000,27.000000,3708.000000,718.000000,1921.000000,721.000000,4.375000,210400.000000\n",
- "-118.250000,34.220000,30.000000,2062.000000,396.000000,1089.000000,375.000000,5.536200,301200.000000\n",
- "-118.110000,33.830000,36.000000,1820.000000,313.000000,899.000000,295.000000,4.918000,225200.000000\n",
- "-122.040000,37.330000,22.000000,4011.000000,963.000000,2206.000000,879.000000,4.572100,351200.000000\n",
- "-119.670000,36.570000,32.000000,1604.000000,292.000000,868.000000,276.000000,2.190800,110000.000000\n",
- "-119.560000,36.710000,37.000000,1609.000000,374.000000,1173.000000,344.000000,2.181000,59900.000000\n",
- "-122.350000,37.960000,36.000000,2191.000000,531.000000,1563.000000,524.000000,2.516400,114200.000000\n",
- "-117.080000,32.580000,15.000000,1462.000000,274.000000,1002.000000,271.000000,3.969800,142700.000000\n",
- "-118.610000,34.200000,29.000000,1673.000000,284.000000,794.000000,270.000000,5.519100,245800.000000\n",
- "-118.240000,34.140000,27.000000,2909.000000,1021.000000,2614.000000,935.000000,2.144400,229000.000000\n",
- "-118.400000,34.030000,43.000000,1006.000000,201.000000,520.000000,199.000000,6.566900,372800.000000\n",
- "-116.980000,33.260000,12.000000,5898.000000,1002.000000,3129.000000,945.000000,4.764700,254100.000000\n",
- "-117.930000,33.680000,33.000000,2664.000000,432.000000,1197.000000,429.000000,5.069000,264200.000000\n",
- "-122.250000,37.470000,38.000000,645.000000,124.000000,265.000000,103.000000,5.468800,305000.000000\n",
- "-118.190000,33.840000,44.000000,2731.000000,577.000000,1396.000000,555.000000,4.177100,219100.000000\n",
- "-118.450000,34.320000,23.000000,3481.000000,641.000000,1952.000000,682.000000,4.260000,189400.000000\n",
- "-122.140000,39.970000,27.000000,1079.000000,222.000000,625.000000,197.000000,3.131900,62700.000000\n",
- "-118.300000,34.020000,27.000000,2190.000000,626.000000,1768.000000,528.000000,1.244600,103800.000000\n",
- "-117.900000,33.730000,31.000000,1171.000000,306.000000,1690.000000,301.000000,3.263900,155200.000000\n",
- "-121.580000,39.150000,38.000000,1756.000000,396.000000,837.000000,401.000000,1.912200,55500.000000\n",
- "-121.950000,38.350000,16.000000,2084.000000,292.000000,1099.000000,292.000000,5.826900,150200.000000\n",
- "-117.690000,34.070000,35.000000,3222.000000,559.000000,1970.000000,550.000000,3.708300,131000.000000\n",
- "-117.080000,32.740000,35.000000,1434.000000,253.000000,753.000000,228.000000,2.381200,135100.000000\n",
- "-118.290000,34.000000,41.000000,1807.000000,493.000000,1731.000000,471.000000,1.234700,111700.000000\n",
- "-123.800000,39.460000,35.000000,1718.000000,345.000000,698.000000,299.000000,2.924300,131600.000000\n",
- "-119.120000,35.330000,4.000000,8574.000000,1489.000000,4250.000000,1444.000000,5.103600,103400.000000\n",
- "-121.800000,37.340000,20.000000,2686.000000,414.000000,1507.000000,405.000000,5.806800,263900.000000\n",
- "-117.090000,32.750000,19.000000,2739.000000,707.000000,2004.000000,622.000000,1.631800,117700.000000\n",
- "-122.130000,37.430000,40.000000,3454.000000,648.000000,1498.000000,647.000000,5.211400,438400.000000\n",
- "-117.980000,33.760000,24.000000,1880.000000,405.000000,967.000000,418.000000,4.454500,192500.000000\n",
- "-122.330000,37.940000,43.000000,1876.000000,389.000000,807.000000,377.000000,3.157100,141600.000000\n",
- "-121.440000,38.540000,39.000000,2855.000000,574.000000,1217.000000,562.000000,3.240400,93600.000000\n",
- "-118.020000,33.700000,23.000000,5069.000000,770.000000,2473.000000,769.000000,6.304700,285700.000000\n",
- "-117.880000,33.840000,26.000000,1499.000000,290.000000,755.000000,277.000000,3.589300,238500.000000\n",
- "-120.460000,37.310000,35.000000,2042.000000,378.000000,953.000000,356.000000,2.734400,87800.000000\n",
- "-118.310000,33.720000,26.000000,2711.000000,508.000000,1372.000000,459.000000,4.145100,326700.000000\n",
- "-117.820000,33.670000,17.000000,2895.000000,439.000000,1588.000000,450.000000,6.276000,290700.000000\n",
- "-117.990000,33.870000,17.000000,2334.000000,537.000000,1662.000000,535.000000,3.014700,217000.000000\n",
- "-119.800000,36.860000,7.000000,6434.000000,1201.000000,2733.000000,1045.000000,3.765600,145000.000000\n",
- "-121.470000,38.580000,43.000000,3807.000000,952.000000,1484.000000,850.000000,2.326600,137500.000000\n",
- "-117.600000,33.870000,15.000000,7626.000000,1570.000000,3823.000000,1415.000000,3.441900,138100.000000\n",
- "-117.100000,32.750000,11.000000,2393.000000,726.000000,1905.000000,711.000000,1.344800,91300.000000\n",
- "-117.880000,33.760000,17.000000,1768.000000,474.000000,1079.000000,436.000000,1.782300,205300.000000\n",
- "-118.350000,33.990000,48.000000,2741.000000,439.000000,1115.000000,459.000000,5.051400,269100.000000\n",
- "-121.810000,37.310000,14.000000,2731.000000,578.000000,1109.000000,551.000000,3.138200,139700.000000\n",
- "-120.430000,34.900000,30.000000,2388.000000,393.000000,1117.000000,375.000000,4.105800,164000.000000\n",
- "-118.190000,34.050000,29.000000,855.000000,199.000000,785.000000,169.000000,2.696400,122200.000000\n",
- "-117.890000,33.910000,33.000000,1264.000000,224.000000,527.000000,227.000000,3.732100,216500.000000\n",
- "-118.270000,34.020000,21.000000,1314.000000,375.000000,1505.000000,366.000000,2.319000,97200.000000\n",
- "-116.730000,34.520000,16.000000,1247.000000,315.000000,433.000000,159.000000,1.056800,75000.000000\n",
- "-121.500000,38.520000,37.000000,2008.000000,466.000000,1261.000000,427.000000,2.257400,59100.000000\n",
- "-120.610000,35.120000,16.000000,1671.000000,354.000000,935.000000,340.000000,2.579200,163800.000000\n",
- "-120.630000,36.980000,20.000000,2380.000000,489.000000,1581.000000,505.000000,2.059500,61300.000000\n",
- "-117.060000,32.590000,13.000000,3920.000000,775.000000,2814.000000,760.000000,4.061600,148800.000000\n",
- "-119.020000,35.420000,40.000000,1912.000000,439.000000,1015.000000,413.000000,1.459800,52600.000000\n",
- "-118.140000,34.030000,38.000000,1447.000000,293.000000,1042.000000,284.000000,4.137500,211500.000000\n",
- "-118.310000,33.730000,52.000000,2025.000000,361.000000,957.000000,363.000000,4.205900,350000.000000\n",
- "-121.940000,38.370000,14.000000,1156.000000,216.000000,574.000000,227.000000,3.239600,143800.000000\n",
- "-122.510000,37.920000,32.000000,2622.000000,541.000000,1022.000000,464.000000,3.764700,375000.000000\n",
- "-119.450000,36.160000,27.000000,2119.000000,373.000000,1268.000000,345.000000,2.815200,106900.000000\n",
- "-118.190000,33.970000,27.000000,2911.000000,972.000000,3559.000000,945.000000,1.948500,146300.000000\n",
- "-116.710000,33.750000,25.000000,10665.000000,2161.000000,1874.000000,852.000000,3.062500,150500.000000\n",
- "-118.280000,33.990000,35.000000,1138.000000,304.000000,1128.000000,311.000000,1.881800,100000.000000\n",
- "-118.120000,33.850000,37.000000,2584.000000,453.000000,1333.000000,481.000000,4.366100,219900.000000\n",
- "-122.530000,37.630000,27.000000,2589.000000,658.000000,1386.000000,608.000000,2.908700,228200.000000\n",
- "-121.060000,37.730000,5.000000,2256.000000,420.000000,1246.000000,397.000000,4.923600,155900.000000\n",
- "-120.880000,38.450000,25.000000,1374.000000,297.000000,657.000000,288.000000,2.547600,97900.000000\n",
- "-117.110000,32.580000,12.000000,1086.000000,294.000000,870.000000,290.000000,2.421300,132500.000000\n",
- "-117.900000,33.650000,27.000000,3310.000000,598.000000,1402.000000,563.000000,6.632000,441100.000000\n",
- "-121.870000,37.660000,52.000000,775.000000,134.000000,315.000000,123.000000,5.067700,233300.000000\n",
- "-121.300000,37.960000,52.000000,1354.000000,314.000000,679.000000,311.000000,1.778800,97400.000000\n",
- "-117.800000,33.850000,16.000000,4151.000000,637.000000,1558.000000,604.000000,5.806000,304900.000000\n",
- "-118.550000,34.200000,31.000000,1963.000000,420.000000,1494.000000,415.000000,3.531300,211800.000000\n",
- "-118.440000,34.240000,36.000000,1660.000000,301.000000,1225.000000,307.000000,4.095000,184000.000000\n",
- "-117.910000,33.880000,34.000000,1851.000000,291.000000,784.000000,290.000000,5.233600,235600.000000\n",
- "-118.510000,34.230000,27.000000,4580.000000,918.000000,2252.000000,850.000000,4.792600,454400.000000\n",
- "-119.150000,34.170000,23.000000,2239.000000,537.000000,784.000000,497.000000,1.603800,194300.000000\n",
- "-122.080000,37.900000,32.000000,1075.000000,170.000000,486.000000,173.000000,5.049900,306800.000000\n",
- "-122.410000,37.710000,28.000000,5015.000000,1240.000000,3900.000000,1029.000000,1.226900,181900.000000\n",
- "-122.220000,37.470000,35.000000,367.000000,113.000000,398.000000,109.000000,2.500000,166700.000000\n",
- "-117.870000,33.920000,17.000000,4575.000000,764.000000,2054.000000,737.000000,6.057100,272400.000000\n",
- "-122.000000,36.970000,30.000000,1029.000000,242.000000,753.000000,249.000000,3.120500,240500.000000\n",
- "-117.070000,32.600000,13.000000,1607.000000,435.000000,983.000000,400.000000,2.290300,106300.000000\n",
- "-118.160000,34.060000,27.000000,1675.000000,274.000000,785.000000,275.000000,5.828000,301100.000000\n",
- "-117.050000,33.030000,16.000000,87.000000,20.000000,32.000000,21.000000,4.357100,144600.000000\n",
- "-117.240000,33.200000,26.000000,1701.000000,404.000000,989.000000,367.000000,2.511900,171700.000000\n",
- "-119.730000,34.450000,44.000000,2261.000000,328.000000,763.000000,294.000000,6.744900,415600.000000\n",
- "-117.320000,33.170000,18.000000,2143.000000,299.000000,828.000000,283.000000,4.238300,239000.000000\n",
- "-121.830000,37.270000,14.000000,2855.000000,380.000000,1420.000000,383.000000,6.671200,311500.000000\n",
- "-122.320000,40.420000,17.000000,3019.000000,578.000000,1538.000000,545.000000,2.793000,76500.000000\n",
- "-121.770000,36.940000,18.000000,1063.000000,341.000000,1033.000000,313.000000,2.019200,171300.000000\n",
- "-118.270000,33.790000,39.000000,1513.000000,365.000000,1227.000000,354.000000,3.392900,184600.000000\n",
- "-117.930000,33.830000,30.000000,1561.000000,381.000000,1104.000000,391.000000,3.375000,201900.000000\n",
- "-117.110000,32.820000,17.000000,1787.000000,330.000000,1341.000000,314.000000,2.875000,112500.000000\n",
- "-119.230000,35.740000,16.000000,2275.000000,659.000000,1914.000000,614.000000,2.033000,68400.000000\n",
- "-122.470000,37.710000,42.000000,1961.000000,427.000000,1211.000000,409.000000,3.515600,239400.000000\n",
- "-121.930000,36.630000,41.000000,1049.000000,198.000000,428.000000,183.000000,4.357100,287500.000000\n",
- "-117.280000,33.020000,21.000000,2736.000000,585.000000,1251.000000,576.000000,4.235600,347700.000000\n",
- "-118.990000,35.240000,40.000000,282.000000,59.000000,213.000000,71.000000,2.350000,91700.000000\n",
- "-119.140000,36.230000,22.000000,2935.000000,523.000000,1927.000000,530.000000,2.587500,70400.000000\n",
- "-122.420000,40.590000,24.000000,5045.000000,972.000000,2220.000000,979.000000,2.679200,138900.000000\n",
- "-117.090000,32.660000,37.000000,1232.000000,330.000000,1086.000000,330.000000,1.638900,114300.000000\n",
- "-118.140000,34.700000,36.000000,1205.000000,317.000000,678.000000,290.000000,2.018200,98400.000000\n",
- "-122.040000,36.980000,35.000000,2155.000000,355.000000,866.000000,335.000000,5.618800,404700.000000\n",
- "-117.020000,32.800000,31.000000,2692.000000,445.000000,1129.000000,450.000000,4.458300,170000.000000\n",
- "-117.290000,34.490000,3.000000,7689.000000,1545.000000,3804.000000,1399.000000,3.387100,111800.000000\n",
- "-122.090000,37.210000,15.000000,1969.000000,332.000000,822.000000,324.000000,7.877400,394900.000000\n",
- "-121.010000,37.650000,47.000000,1713.000000,334.000000,570.000000,297.000000,2.196900,149400.000000\n",
- "-116.770000,33.080000,13.000000,1406.000000,260.000000,737.000000,279.000000,5.584200,239100.000000\n",
- "-121.960000,37.340000,36.000000,844.000000,153.000000,373.000000,160.000000,5.791000,254100.000000\n",
- "-119.700000,34.420000,41.000000,725.000000,239.000000,582.000000,214.000000,3.166700,362500.000000\n",
- "-119.460000,35.170000,40.000000,4164.000000,812.000000,1998.000000,773.000000,2.832300,50800.000000\n",
- "-122.010000,37.300000,25.000000,4044.000000,551.000000,1699.000000,533.000000,8.083700,380600.000000\n",
- "-118.060000,33.830000,22.000000,5290.000000,1054.000000,2812.000000,1021.000000,4.530000,226400.000000\n",
- "-118.400000,34.190000,30.000000,521.000000,126.000000,306.000000,129.000000,4.112500,216700.000000\n",
- "-119.630000,34.440000,37.000000,3188.000000,442.000000,984.000000,376.000000,9.452200,500001.000000\n",
- "-117.890000,33.770000,29.000000,2577.000000,445.000000,1849.000000,470.000000,4.473200,194800.000000\n",
- "-119.540000,36.520000,16.000000,2703.000000,415.000000,1106.000000,372.000000,4.204500,120900.000000\n",
- "-118.430000,34.170000,33.000000,1679.000000,404.000000,933.000000,412.000000,2.697900,266000.000000\n",
- "-117.100000,32.580000,33.000000,393.000000,76.000000,330.000000,80.000000,4.102900,122700.000000\n",
- "-122.280000,37.790000,30.000000,4145.000000,869.000000,3668.000000,855.000000,2.544400,275000.000000\n",
- "-118.320000,34.110000,48.000000,4472.000000,1579.000000,2796.000000,1397.000000,2.397400,410700.000000\n",
- "-118.420000,34.020000,28.000000,3167.000000,737.000000,1248.000000,665.000000,3.194100,394700.000000\n",
- "-119.560000,36.510000,9.000000,3860.000000,809.000000,2157.000000,770.000000,2.503300,70100.000000\n",
- "-122.420000,37.780000,19.000000,4065.000000,1645.000000,2079.000000,1470.000000,3.146200,187500.000000\n",
- "-120.910000,37.730000,31.000000,840.000000,154.000000,429.000000,150.000000,2.406300,170200.000000\n",
- "-122.080000,37.590000,16.000000,1816.000000,365.000000,1367.000000,355.000000,4.235000,156300.000000\n",
- "-121.770000,37.310000,16.000000,1649.000000,228.000000,769.000000,230.000000,6.645500,302600.000000\n",
- "-117.050000,33.030000,14.000000,5180.000000,1051.000000,1639.000000,991.000000,4.500000,222200.000000\n",
- "-121.950000,37.260000,34.000000,1482.000000,255.000000,584.000000,246.000000,5.512100,264700.000000\n",
- "-119.030000,35.420000,45.000000,1628.000000,352.000000,754.000000,334.000000,2.570300,62400.000000\n",
- "-121.530000,38.600000,25.000000,5154.000000,1105.000000,3196.000000,1073.000000,2.756600,80200.000000\n",
- "-118.160000,33.960000,24.000000,1635.000000,507.000000,2480.000000,481.000000,2.443200,187500.000000\n",
- "-121.890000,36.600000,40.000000,626.000000,164.000000,337.000000,150.000000,2.791700,225000.000000\n",
- "-117.070000,33.670000,11.000000,939.000000,187.000000,557.000000,190.000000,2.375000,145800.000000\n",
- "-122.390000,37.590000,32.000000,4497.000000,730.000000,1846.000000,715.000000,6.132300,500001.000000\n",
- "-118.440000,34.050000,32.000000,1880.000000,435.000000,798.000000,417.000000,4.710900,500000.000000\n",
- "-121.350000,38.040000,5.000000,4303.000000,613.000000,2206.000000,621.000000,5.584200,159100.000000\n",
- "-122.420000,37.760000,52.000000,4407.000000,1192.000000,2280.000000,1076.000000,3.393700,270000.000000\n",
- "-118.020000,33.940000,33.000000,2382.000000,404.000000,1339.000000,389.000000,5.301600,192200.000000\n",
- "-121.320000,38.030000,16.000000,4045.000000,623.000000,1862.000000,625.000000,4.875000,143100.000000\n",
- "-118.380000,34.050000,49.000000,702.000000,143.000000,458.000000,187.000000,4.895800,333600.000000\n",
- "-119.290000,36.540000,18.000000,2581.000000,628.000000,2732.000000,592.000000,1.842900,58300.000000\n",
- "-117.760000,33.540000,28.000000,2250.000000,329.000000,826.000000,323.000000,6.925700,466400.000000\n",
- "-122.290000,38.290000,52.000000,3217.000000,742.000000,1670.000000,671.000000,2.439800,163100.000000\n",
- "-117.800000,33.810000,14.000000,1206.000000,142.000000,572.000000,149.000000,8.847000,388700.000000\n",
- "-121.950000,37.350000,52.000000,2382.000000,523.000000,1096.000000,492.000000,4.265600,236100.000000\n",
- "-117.870000,33.990000,21.000000,2837.000000,515.000000,2031.000000,555.000000,4.927100,209700.000000\n",
- "-121.460000,38.560000,52.000000,907.000000,180.000000,479.000000,177.000000,2.212500,104000.000000\n",
- "-117.990000,34.080000,11.000000,2399.000000,527.000000,2307.000000,531.000000,3.562500,141000.000000\n",
- "-121.530000,38.500000,17.000000,3087.000000,477.000000,1365.000000,495.000000,6.466700,216800.000000\n",
- "-121.140000,37.520000,37.000000,1358.000000,231.000000,586.000000,214.000000,3.164500,170800.000000\n",
- "-118.290000,33.890000,35.000000,2810.000000,614.000000,1578.000000,601.000000,3.590000,200600.000000\n",
- "-117.100000,33.090000,5.000000,12045.000000,2162.000000,5640.000000,1997.000000,4.437500,353000.000000\n",
- "-123.200000,39.230000,26.000000,786.000000,168.000000,494.000000,161.000000,2.358300,105400.000000\n",
- "-117.120000,32.760000,26.000000,1221.000000,331.000000,620.000000,296.000000,2.482100,123600.000000\n",
- "-120.440000,34.960000,30.000000,1685.000000,315.000000,1290.000000,368.000000,3.472200,112500.000000\n",
- "-115.560000,32.780000,34.000000,2856.000000,555.000000,1627.000000,522.000000,3.208300,76200.000000\n",
- "-121.470000,38.560000,51.000000,2083.000000,559.000000,874.000000,524.000000,2.022100,95800.000000\n",
- "-121.680000,37.930000,44.000000,1014.000000,225.000000,704.000000,238.000000,1.655400,119400.000000\n",
- "-118.100000,34.140000,26.000000,6262.000000,1645.000000,3001.000000,1505.000000,3.657200,213200.000000\n",
- "-118.430000,34.220000,34.000000,1588.000000,360.000000,1080.000000,340.000000,3.660000,184600.000000\n",
- "-120.970000,37.660000,19.000000,1974.000000,393.000000,799.000000,377.000000,3.128600,137500.000000\n",
- "-119.340000,34.390000,27.000000,669.000000,131.000000,314.000000,106.000000,2.465900,231300.000000\n",
- "-118.500000,34.200000,34.000000,1617.000000,344.000000,938.000000,305.000000,3.915000,217700.000000\n",
- "-120.980000,38.670000,13.000000,3432.000000,516.000000,1286.000000,470.000000,5.584000,186600.000000\n",
- "-118.350000,34.000000,28.000000,3085.000000,621.000000,1162.000000,558.000000,3.250000,301000.000000\n",
- "-122.490000,38.220000,33.000000,1486.000000,290.000000,781.000000,274.000000,3.564700,251800.000000\n",
- "-118.320000,33.970000,46.000000,1504.000000,270.000000,814.000000,306.000000,4.391900,157100.000000\n",
- "-117.130000,32.690000,36.000000,1469.000000,400.000000,1271.000000,340.000000,1.043000,90100.000000\n",
- "-117.030000,33.000000,6.000000,6139.000000,793.000000,2693.000000,770.000000,7.756900,387400.000000\n",
- "-122.260000,38.020000,5.000000,3846.000000,786.000000,2053.000000,716.000000,5.047300,184800.000000\n",
- "-117.270000,32.850000,26.000000,1373.000000,336.000000,608.000000,268.000000,4.425000,475000.000000\n",
- "-117.940000,33.860000,36.000000,2824.000000,493.000000,1394.000000,507.000000,4.647700,194700.000000\n",
- "-119.310000,34.700000,19.000000,961.000000,218.000000,479.000000,138.000000,3.343800,156300.000000\n",
- "-122.100000,37.610000,35.000000,2361.000000,458.000000,1727.000000,467.000000,4.528100,173600.000000\n",
- "-118.000000,33.900000,35.000000,1942.000000,332.000000,1127.000000,325.000000,4.514400,206300.000000\n",
- "-117.370000,33.980000,43.000000,2862.000000,772.000000,1878.000000,675.000000,2.115100,96700.000000\n",
- "-121.520000,38.650000,17.000000,1269.000000,233.000000,494.000000,231.000000,3.961500,331300.000000\n",
- "-118.460000,34.070000,42.000000,2564.000000,460.000000,913.000000,414.000000,9.222500,500001.000000\n",
- "-118.040000,34.070000,39.000000,1382.000000,315.000000,1090.000000,308.000000,3.812500,174000.000000\n",
- "-118.080000,33.880000,27.000000,923.000000,186.000000,1014.000000,204.000000,3.825000,159500.000000\n",
- "-122.430000,37.800000,52.000000,2788.000000,813.000000,1302.000000,764.000000,4.199000,400000.000000\n",
- "-119.290000,34.370000,41.000000,1408.000000,311.000000,793.000000,264.000000,2.544100,161200.000000\n",
- "-122.040000,37.000000,52.000000,3365.000000,644.000000,796.000000,333.000000,2.971200,116600.000000\n",
- "-115.570000,32.790000,50.000000,1291.000000,277.000000,864.000000,274.000000,1.666700,68100.000000\n",
- "-117.560000,34.420000,6.000000,4264.000000,749.000000,2005.000000,666.000000,3.469500,138800.000000\n",
- "-120.630000,38.680000,14.000000,1821.000000,316.000000,769.000000,266.000000,3.078900,131700.000000\n",
- "-118.320000,34.090000,44.000000,2666.000000,830.000000,2297.000000,726.000000,1.676000,208800.000000\n",
- "-118.350000,34.080000,52.000000,1710.000000,350.000000,727.000000,355.000000,4.583300,333900.000000\n",
- "-122.270000,37.510000,36.000000,1406.000000,224.000000,598.000000,237.000000,5.896400,414800.000000\n",
- "-119.060000,35.330000,14.000000,5264.000000,1064.000000,3278.000000,1049.000000,3.811700,82800.000000\n",
- "-117.150000,32.900000,12.000000,1681.000000,381.000000,1050.000000,362.000000,4.200800,176100.000000\n",
- "-122.470000,37.760000,39.000000,3200.000000,689.000000,1391.000000,618.000000,3.634600,338000.000000\n",
- "-122.030000,37.310000,19.000000,2885.000000,859.000000,1520.000000,784.000000,3.375000,275700.000000\n",
- "-119.310000,36.320000,23.000000,2945.000000,592.000000,1419.000000,532.000000,2.573300,88800.000000\n",
- "-120.580000,38.770000,15.000000,2155.000000,394.000000,857.000000,356.000000,4.030000,141200.000000\n",
- "-117.210000,34.490000,14.000000,2125.000000,348.000000,1067.000000,360.000000,3.633300,116200.000000\n",
- "-122.080000,37.650000,35.000000,1813.000000,393.000000,1093.000000,374.000000,3.681800,165400.000000\n",
- "-122.250000,40.150000,15.000000,1677.000000,346.000000,858.000000,327.000000,2.437500,59200.000000\n",
- "-118.210000,34.140000,44.000000,1681.000000,407.000000,1105.000000,387.000000,3.222200,186500.000000\n",
- "-122.140000,37.730000,51.000000,2619.000000,403.000000,922.000000,393.000000,4.604200,251900.000000\n",
- "-121.590000,39.770000,24.000000,1535.000000,276.000000,664.000000,273.000000,2.306800,97300.000000\n",
- "-122.190000,37.470000,44.000000,1371.000000,263.000000,589.000000,301.000000,4.806800,312300.000000\n",
- "-120.440000,34.950000,38.000000,3004.000000,794.000000,2601.000000,747.000000,2.274300,106400.000000\n",
- "-121.780000,37.310000,7.000000,1973.000000,328.000000,1047.000000,303.000000,6.234000,292200.000000\n",
- "-118.240000,34.200000,41.000000,2067.000000,452.000000,1282.000000,455.000000,5.575600,309900.000000\n",
- "-121.570000,39.160000,33.000000,2033.000000,375.000000,914.000000,330.000000,2.696400,68500.000000\n",
- "-119.840000,36.830000,17.000000,2273.000000,298.000000,700.000000,263.000000,6.864500,195900.000000\n",
- "-119.290000,34.440000,34.000000,4314.000000,878.000000,2361.000000,831.000000,3.227900,243100.000000\n",
- "-118.140000,34.180000,52.000000,1700.000000,317.000000,996.000000,329.000000,3.968800,175000.000000\n",
- "-119.570000,36.100000,37.000000,1676.000000,316.000000,707.000000,274.000000,2.059500,60700.000000\n",
- "-121.800000,37.320000,23.000000,1829.000000,346.000000,1277.000000,324.000000,4.809200,217400.000000\n",
- "-118.130000,34.160000,52.000000,1596.000000,314.000000,1024.000000,292.000000,3.671900,227900.000000\n",
- "-121.900000,37.460000,29.000000,2385.000000,513.000000,1788.000000,510.000000,3.842100,220700.000000\n",
- "-121.920000,37.330000,52.000000,2962.000000,557.000000,1215.000000,506.000000,4.776800,301100.000000\n",
- "-123.100000,39.360000,19.000000,1056.000000,248.000000,611.000000,226.000000,1.746000,105000.000000\n",
- "-122.860000,40.560000,12.000000,1350.000000,300.000000,423.000000,172.000000,1.739300,81300.000000\n",
- "-122.440000,37.750000,52.000000,3114.000000,637.000000,1144.000000,591.000000,4.000000,375000.000000\n",
- "-120.620000,35.120000,22.000000,1240.000000,294.000000,768.000000,288.000000,2.655000,160000.000000\n",
- "-118.360000,33.880000,22.000000,1388.000000,336.000000,930.000000,287.000000,2.798100,275000.000000\n",
- "-118.360000,33.820000,26.000000,5166.000000,1313.000000,2738.000000,1239.000000,3.356500,360800.000000\n",
- "-118.270000,33.770000,39.000000,1731.000000,485.000000,2115.000000,478.000000,1.536900,141300.000000\n",
- "-122.280000,37.900000,52.000000,2003.000000,250.000000,658.000000,244.000000,10.082500,397000.000000\n",
- "-117.980000,33.660000,26.000000,3527.000000,547.000000,1615.000000,542.000000,6.162400,279400.000000\n",
- "-118.210000,33.930000,39.000000,354.000000,73.000000,184.000000,58.000000,2.767900,108900.000000\n",
- "-120.430000,37.350000,15.000000,1613.000000,203.000000,673.000000,213.000000,5.937800,212200.000000\n",
- "-120.960000,37.480000,32.000000,1256.000000,212.000000,682.000000,236.000000,2.984400,135900.000000\n",
- "-117.330000,34.120000,33.000000,933.000000,219.000000,838.000000,211.000000,1.341700,69000.000000\n",
- "-119.810000,36.780000,36.000000,1650.000000,313.000000,660.000000,298.000000,3.000000,79700.000000\n",
- "-118.380000,34.050000,35.000000,3517.000000,879.000000,1632.000000,784.000000,3.095600,500001.000000\n",
- "-117.960000,33.800000,33.000000,1984.000000,420.000000,1119.000000,387.000000,3.482100,231300.000000\n",
- "-118.430000,34.240000,37.000000,1279.000000,241.000000,987.000000,233.000000,4.005700,172700.000000\n",
- "-117.870000,33.790000,25.000000,2546.000000,545.000000,1543.000000,521.000000,4.192000,219900.000000\n",
- "-124.180000,40.790000,40.000000,1398.000000,311.000000,788.000000,279.000000,1.466800,64600.000000\n",
- "-117.240000,32.830000,18.000000,3109.000000,501.000000,949.000000,368.000000,7.435100,445700.000000\n",
- "-121.570000,37.000000,18.000000,7241.000000,1225.000000,4168.000000,1138.000000,4.571400,260300.000000\n",
- "-117.370000,33.190000,38.000000,861.000000,213.000000,486.000000,204.000000,4.187500,185000.000000\n",
- "-121.890000,37.460000,5.000000,1519.000000,186.000000,705.000000,186.000000,10.379800,500001.000000\n",
- "-122.680000,38.010000,41.000000,1865.000000,392.000000,825.000000,369.000000,4.201100,255400.000000\n",
- "-118.310000,34.020000,46.000000,2217.000000,489.000000,1227.000000,448.000000,1.685100,108800.000000\n",
- "-118.290000,33.890000,33.000000,2138.000000,567.000000,1072.000000,528.000000,2.742800,208900.000000\n",
- "-117.300000,34.120000,43.000000,1018.000000,261.000000,736.000000,215.000000,2.600000,66900.000000\n",
- "-117.300000,33.850000,15.000000,3991.000000,751.000000,2317.000000,657.000000,2.954200,127900.000000\n",
- "-117.350000,33.160000,22.000000,1331.000000,305.000000,580.000000,193.000000,3.975000,500001.000000\n",
- "-122.430000,37.760000,52.000000,2242.000000,459.000000,751.000000,464.000000,4.750000,500001.000000\n",
- "-119.010000,35.390000,29.000000,1820.000000,459.000000,1134.000000,419.000000,1.828900,59400.000000\n",
- "-121.570000,37.010000,44.000000,1448.000000,393.000000,1066.000000,357.000000,2.062500,170300.000000\n",
- "-122.420000,37.650000,39.000000,4402.000000,894.000000,2941.000000,887.000000,3.856500,239800.000000\n",
- "-122.430000,37.780000,49.000000,2246.000000,587.000000,1277.000000,546.000000,2.979200,350000.000000\n",
- "-118.130000,33.900000,36.000000,1477.000000,305.000000,788.000000,291.000000,3.625000,195800.000000\n",
- "-118.060000,33.820000,25.000000,2637.000000,462.000000,965.000000,415.000000,4.583300,190900.000000\n",
- "-119.220000,34.340000,29.000000,3128.000000,672.000000,1815.000000,648.000000,2.982100,175700.000000\n",
- "-121.510000,38.550000,46.000000,1485.000000,278.000000,531.000000,291.000000,2.788500,137200.000000\n",
- "-121.420000,38.500000,24.000000,7740.000000,1539.000000,4333.000000,1397.000000,3.025000,87900.000000\n",
- "-122.260000,37.850000,52.000000,2202.000000,434.000000,910.000000,402.000000,3.203100,281500.000000\n",
- "-118.400000,33.870000,26.000000,6712.000000,1441.000000,2803.000000,1394.000000,5.227600,434500.000000\n",
- "-118.380000,33.890000,35.000000,1778.000000,330.000000,732.000000,312.000000,6.574500,379300.000000\n",
- "-119.950000,36.960000,18.000000,1996.000000,379.000000,1327.000000,356.000000,2.608700,96000.000000\n",
- "-118.120000,34.020000,32.000000,1789.000000,528.000000,1429.000000,517.000000,1.890600,224500.000000\n",
- "-117.900000,36.950000,19.000000,99.000000,26.000000,51.000000,22.000000,1.729200,137500.000000\n",
- "-116.280000,32.840000,18.000000,382.000000,128.000000,194.000000,69.000000,2.517900,58800.000000\n",
- "-122.450000,37.770000,52.000000,1722.000000,465.000000,885.000000,437.000000,3.090600,500001.000000\n",
- "-121.620000,39.760000,14.000000,2063.000000,559.000000,934.000000,529.000000,1.778800,85800.000000\n",
- "-122.000000,38.350000,24.000000,745.000000,116.000000,300.000000,115.000000,3.617600,158500.000000\n",
- "-121.710000,39.250000,37.000000,1871.000000,321.000000,806.000000,294.000000,4.000000,101400.000000\n",
- "-119.190000,34.220000,26.000000,3175.000000,736.000000,2460.000000,775.000000,3.125000,219900.000000\n",
- "-118.060000,33.910000,21.000000,2863.000000,701.000000,1489.000000,621.000000,3.203100,180700.000000\n",
- "-118.000000,33.930000,35.000000,1288.000000,240.000000,758.000000,250.000000,4.920500,173900.000000\n",
- "-118.260000,34.110000,47.000000,2183.000000,510.000000,1445.000000,503.000000,3.666700,210900.000000\n",
- "-118.510000,34.260000,29.000000,2472.000000,354.000000,1109.000000,397.000000,5.543300,332500.000000\n",
- "-117.960000,33.980000,25.000000,1259.000000,184.000000,599.000000,170.000000,5.740700,302200.000000\n",
- "-123.390000,38.990000,28.000000,1416.000000,294.000000,812.000000,258.000000,3.406300,109400.000000\n",
- "-121.690000,38.160000,33.000000,1808.000000,363.000000,824.000000,340.000000,3.293700,96400.000000\n",
- "-121.930000,37.320000,51.000000,2711.000000,728.000000,1607.000000,724.000000,3.000000,184700.000000\n",
- "-117.260000,33.260000,9.000000,4609.000000,798.000000,2582.000000,746.000000,4.342900,173900.000000\n",
- "-121.410000,38.530000,37.000000,1058.000000,224.000000,588.000000,231.000000,2.973700,72100.000000\n",
- "-117.900000,33.900000,18.000000,3821.000000,576.000000,1430.000000,568.000000,6.939900,349600.000000\n",
- "-118.540000,36.120000,11.000000,4103.000000,882.000000,356.000000,171.000000,2.102900,99100.000000\n",
- "-117.240000,32.820000,20.000000,2467.000000,332.000000,731.000000,335.000000,7.255900,392300.000000\n",
- "-121.900000,37.240000,24.000000,7521.000000,1364.000000,3970.000000,1318.000000,4.400400,255800.000000\n",
- "-118.170000,33.870000,49.000000,1937.000000,445.000000,1339.000000,440.000000,3.031900,162800.000000\n",
- "-117.310000,33.160000,4.000000,5846.000000,894.000000,2282.000000,801.000000,5.595600,247800.000000\n",
- "-118.410000,34.170000,35.000000,2027.000000,428.000000,879.000000,402.000000,4.692000,330900.000000\n",
- "-118.380000,34.220000,32.000000,362.000000,100.000000,348.000000,102.000000,2.267900,150000.000000\n",
- "-117.160000,33.730000,10.000000,2381.000000,454.000000,1323.000000,477.000000,2.632200,140700.000000\n",
- "-119.710000,34.400000,27.000000,3782.000000,771.000000,1742.000000,751.000000,4.045100,395100.000000\n",
- "-117.360000,33.200000,26.000000,2447.000000,482.000000,1405.000000,486.000000,3.291700,150800.000000\n",
- "-118.210000,33.800000,41.000000,1251.000000,279.000000,1053.000000,278.000000,3.277800,150800.000000\n",
- "-120.930000,39.900000,20.000000,1511.000000,328.000000,791.000000,320.000000,2.022100,70900.000000\n",
- "-118.130000,33.840000,48.000000,1895.000000,294.000000,881.000000,293.000000,6.336400,307400.000000\n",
- "-118.270000,33.930000,41.000000,570.000000,135.000000,466.000000,121.000000,2.645800,91300.000000\n",
- "-118.050000,33.780000,25.000000,2356.000000,330.000000,937.000000,326.000000,6.626400,359100.000000\n",
- "-118.430000,34.270000,36.000000,1002.000000,250.000000,1312.000000,249.000000,3.024000,148000.000000\n",
- "-118.370000,33.910000,35.000000,1742.000000,283.000000,812.000000,282.000000,5.670400,303700.000000\n",
- "-122.500000,37.750000,46.000000,2298.000000,457.000000,1429.000000,477.000000,4.021700,272400.000000\n",
- "-118.300000,34.010000,52.000000,1908.000000,428.000000,1271.000000,394.000000,2.588500,136200.000000\n",
- "-119.160000,34.150000,23.000000,3204.000000,644.000000,2295.000000,614.000000,3.948500,196600.000000\n",
- "-117.040000,32.680000,14.000000,1320.000000,270.000000,943.000000,260.000000,5.094700,152700.000000\n",
- "-121.400000,38.610000,37.000000,1994.000000,347.000000,782.000000,355.000000,4.148800,136400.000000\n",
- "-118.030000,33.930000,35.000000,2470.000000,416.000000,1386.000000,411.000000,5.273600,179500.000000\n",
- "-119.890000,34.440000,25.000000,2786.000000,470.000000,1669.000000,462.000000,5.518400,268300.000000\n",
- "-120.880000,38.580000,8.000000,3417.000000,604.000000,1703.000000,623.000000,4.082700,170700.000000\n",
- "-118.210000,33.790000,32.000000,2020.000000,613.000000,2557.000000,562.000000,2.139700,145300.000000\n",
- "-121.460000,38.570000,52.000000,1625.000000,419.000000,614.000000,383.000000,2.054900,156700.000000\n",
- "-122.020000,37.310000,34.000000,2629.000000,433.000000,1301.000000,431.000000,6.083000,341400.000000\n",
- "-118.500000,34.160000,34.000000,3547.000000,523.000000,1187.000000,500.000000,7.139000,424000.000000\n",
- "-121.320000,38.660000,26.000000,1149.000000,193.000000,500.000000,194.000000,5.078000,163400.000000\n",
- "-118.090000,33.890000,42.000000,991.000000,215.000000,717.000000,219.000000,4.092600,164400.000000\n",
- "-118.390000,33.820000,30.000000,3433.000000,918.000000,1526.000000,828.000000,4.581700,500001.000000\n",
- "-118.000000,33.960000,37.000000,2414.000000,323.000000,878.000000,305.000000,9.154100,453800.000000\n",
- "-117.260000,33.190000,4.000000,2342.000000,595.000000,1518.000000,545.000000,2.946900,216100.000000\n",
- "-122.470000,37.870000,36.000000,4471.000000,618.000000,1315.000000,582.000000,11.570600,500001.000000\n",
- "-117.060000,32.710000,25.000000,2681.000000,596.000000,1947.000000,553.000000,2.896400,104300.000000\n",
- "-117.440000,33.930000,33.000000,1371.000000,236.000000,715.000000,227.000000,4.375000,129900.000000\n",
- "-118.120000,33.990000,26.000000,2296.000000,534.000000,1777.000000,507.000000,2.539500,191000.000000\n",
- "-118.150000,34.180000,46.000000,2230.000000,488.000000,1985.000000,456.000000,2.232800,142100.000000\n",
- "-120.430000,34.690000,33.000000,2054.000000,373.000000,1067.000000,358.000000,3.602300,128300.000000\n",
- "-120.840000,37.530000,14.000000,3643.000000,706.000000,2070.000000,697.000000,3.152300,141800.000000\n",
- "-122.070000,37.130000,26.000000,1127.000000,199.000000,543.000000,199.000000,4.979200,240000.000000\n",
- "-118.410000,33.960000,32.000000,1044.000000,219.000000,567.000000,222.000000,4.147100,284400.000000\n",
- "-121.510000,38.790000,29.000000,1716.000000,323.000000,850.000000,282.000000,2.932400,137500.000000\n",
- "-117.330000,33.190000,15.000000,3672.000000,845.000000,1827.000000,796.000000,2.971600,173600.000000\n",
- "-116.540000,33.870000,16.000000,3648.000000,1035.000000,1687.000000,581.000000,1.916700,70400.000000\n",
- "-118.500000,34.200000,18.000000,4249.000000,933.000000,2047.000000,909.000000,4.130400,229100.000000\n",
- "-118.300000,33.750000,23.000000,1957.000000,517.000000,1454.000000,526.000000,3.505600,203100.000000\n",
- "-117.990000,33.730000,24.000000,2104.000000,421.000000,1181.000000,414.000000,3.836500,250900.000000\n",
- "-118.110000,33.890000,34.000000,2508.000000,594.000000,1549.000000,545.000000,3.206900,236500.000000\n",
- "-122.730000,38.430000,29.000000,2677.000000,691.000000,1880.000000,664.000000,2.186400,143200.000000\n",
- "-119.640000,36.340000,32.000000,2958.000000,670.000000,1504.000000,627.000000,1.860600,56700.000000\n",
- "-116.870000,34.240000,15.000000,4419.000000,822.000000,622.000000,267.000000,3.968800,182800.000000\n",
- "-118.220000,33.980000,34.000000,2283.000000,809.000000,3032.000000,832.000000,2.438700,175000.000000\n",
- "-122.340000,37.970000,19.000000,392.000000,109.000000,287.000000,81.000000,6.042600,110000.000000\n",
- "-118.080000,33.820000,26.000000,4259.000000,588.000000,1644.000000,581.000000,6.251900,345700.000000\n",
- "-117.700000,33.480000,6.000000,16590.000000,2696.000000,6223.000000,2357.000000,6.308800,340300.000000\n",
- "-118.220000,33.880000,37.000000,1149.000000,280.000000,1016.000000,250.000000,2.125000,101900.000000\n",
- "-120.970000,38.910000,7.000000,4341.000000,716.000000,1978.000000,682.000000,4.831100,172200.000000\n",
- "-122.250000,37.800000,29.000000,2468.000000,864.000000,1335.000000,773.000000,1.392900,193800.000000\n",
- "-118.410000,33.880000,40.000000,925.000000,254.000000,371.000000,227.000000,5.253300,500001.000000\n",
- "-117.040000,32.690000,27.000000,1790.000000,356.000000,1286.000000,347.000000,3.543700,115800.000000\n",
- "-122.410000,38.160000,37.000000,1549.000000,301.000000,863.000000,275.000000,2.745700,254700.000000\n",
- "-120.250000,37.930000,13.000000,493.000000,76.000000,196.000000,68.000000,3.375000,134100.000000\n",
- "-121.980000,38.390000,3.000000,9488.000000,1417.000000,4095.000000,1335.000000,5.178100,191900.000000\n",
- "-122.470000,37.720000,47.000000,1176.000000,286.000000,564.000000,258.000000,3.205900,350000.000000\n",
- "-118.180000,34.130000,39.000000,2902.000000,460.000000,1007.000000,420.000000,6.195300,363000.000000\n",
- "-118.090000,33.990000,35.000000,2787.000000,639.000000,1923.000000,614.000000,3.575700,177900.000000\n",
- "-121.940000,37.750000,16.000000,5121.000000,735.000000,2464.000000,761.000000,6.620400,296100.000000\n",
- "-117.070000,32.740000,38.000000,1901.000000,392.000000,1099.000000,406.000000,2.766100,113900.000000\n",
- "-118.140000,34.040000,40.000000,1966.000000,391.000000,1120.000000,362.000000,3.710900,198800.000000\n",
- "-122.410000,37.810000,25.000000,1178.000000,545.000000,592.000000,441.000000,3.672800,500001.000000\n",
- "-117.710000,33.630000,16.000000,1641.000000,354.000000,945.000000,318.000000,3.426100,219700.000000\n",
- "-119.640000,34.430000,34.000000,3045.000000,570.000000,1002.000000,488.000000,5.623000,500001.000000\n",
- "-118.100000,33.980000,33.000000,1927.000000,482.000000,1623.000000,479.000000,3.526800,152000.000000\n",
- "-122.040000,37.390000,5.000000,8745.000000,2211.000000,3959.000000,2019.000000,4.768500,280100.000000\n",
- "-122.030000,37.180000,10.000000,212.000000,38.000000,78.000000,21.000000,6.062200,390000.000000\n",
- "-122.300000,37.560000,36.000000,1379.000000,228.000000,750.000000,227.000000,5.538100,282000.000000\n",
- "-117.360000,33.920000,7.000000,9376.000000,1181.000000,3570.000000,1107.000000,8.532600,315200.000000\n",
- "-121.380000,37.880000,44.000000,1158.000000,226.000000,1094.000000,224.000000,2.684200,156300.000000\n",
- "-119.980000,38.930000,28.000000,1194.000000,272.000000,494.000000,203.000000,2.328100,85800.000000\n",
- "-117.160000,32.710000,52.000000,845.000000,451.000000,1230.000000,375.000000,1.091800,22500.000000\n",
- "-122.360000,37.930000,17.000000,1258.000000,254.000000,885.000000,229.000000,3.050000,121600.000000\n",
- "-118.230000,34.170000,37.000000,4524.000000,1005.000000,2099.000000,937.000000,3.578100,366700.000000\n",
- "-118.470000,34.100000,32.000000,8041.000000,1141.000000,2768.000000,1106.000000,11.197800,500001.000000\n",
- "-124.140000,40.800000,32.000000,1373.000000,312.000000,872.000000,306.000000,2.500000,72600.000000\n",
- "-117.800000,33.550000,35.000000,2067.000000,428.000000,724.000000,377.000000,5.837100,500001.000000\n",
- "-118.020000,34.120000,38.000000,1778.000000,288.000000,870.000000,281.000000,6.578400,408500.000000\n",
- "-122.740000,38.480000,12.000000,4174.000000,670.000000,1882.000000,647.000000,4.551000,178300.000000\n",
- "-118.340000,33.830000,34.000000,1761.000000,329.000000,965.000000,329.000000,5.399000,358500.000000\n",
- "-120.680000,35.290000,37.000000,1354.000000,293.000000,753.000000,290.000000,3.250000,225000.000000\n",
- "-122.450000,37.640000,19.000000,6326.000000,1025.000000,3444.000000,984.000000,6.249800,353300.000000\n",
- "-122.040000,37.620000,35.000000,1032.000000,173.000000,453.000000,176.000000,6.396000,208500.000000\n",
- "-122.790000,38.540000,5.000000,3986.000000,737.000000,1887.000000,687.000000,3.776800,213800.000000\n",
- "-117.220000,32.860000,4.000000,16289.000000,4585.000000,7604.000000,4176.000000,3.628700,280800.000000\n",
- "-120.080000,39.610000,32.000000,1404.000000,247.000000,544.000000,201.000000,2.777800,72900.000000\n",
- "-118.360000,34.150000,41.000000,3545.000000,698.000000,1221.000000,651.000000,4.300000,500001.000000\n",
- "-121.360000,38.560000,17.000000,6225.000000,938.000000,3064.000000,947.000000,5.288100,138000.000000\n",
- "-122.320000,41.310000,45.000000,1393.000000,294.000000,521.000000,249.000000,1.191500,71900.000000\n",
- "-121.590000,39.750000,20.000000,908.000000,206.000000,481.000000,211.000000,2.200000,80800.000000\n",
- "-117.300000,34.150000,45.000000,942.000000,166.000000,401.000000,174.000000,3.859400,90800.000000\n",
- "-117.710000,33.650000,16.000000,3774.000000,456.000000,1587.000000,430.000000,8.608800,307400.000000\n",
- "-118.310000,34.260000,37.000000,1444.000000,246.000000,624.000000,239.000000,5.760000,239400.000000\n",
- "-122.040000,36.980000,51.000000,1076.000000,206.000000,495.000000,201.000000,2.928600,258300.000000\n",
- "-118.260000,34.240000,35.000000,1535.000000,283.000000,816.000000,287.000000,6.187300,312100.000000\n",
- "-118.280000,33.960000,39.000000,882.000000,221.000000,697.000000,189.000000,1.847200,99100.000000\n",
- "-123.500000,39.670000,22.000000,2124.000000,450.000000,1122.000000,446.000000,2.179300,71500.000000\n",
- "-117.190000,33.140000,12.000000,3652.000000,923.000000,1677.000000,728.000000,2.326700,92000.000000\n",
- "-121.120000,38.860000,17.000000,3949.000000,717.000000,1683.000000,686.000000,3.380200,216500.000000\n",
- "-118.410000,34.210000,35.000000,2215.000000,459.000000,1594.000000,446.000000,4.016700,193200.000000\n",
- "-116.540000,33.820000,12.000000,9482.000000,2501.000000,2725.000000,1300.000000,1.559500,115600.000000\n",
- "-121.610000,39.760000,31.000000,2431.000000,512.000000,1026.000000,427.000000,2.542800,85000.000000\n",
- "-121.990000,37.920000,14.000000,1780.000000,224.000000,764.000000,226.000000,9.024300,427700.000000\n",
- "-122.060000,37.540000,20.000000,6483.000000,1068.000000,3526.000000,1060.000000,5.083800,248200.000000\n",
- "-122.080000,37.720000,32.000000,2476.000000,368.000000,1048.000000,367.000000,5.619400,274700.000000\n",
- "-118.930000,36.100000,19.000000,2988.000000,681.000000,1654.000000,576.000000,2.379200,90000.000000\n",
- "-122.780000,38.970000,11.000000,5175.000000,971.000000,2144.000000,792.000000,3.046600,97300.000000\n",
- "-121.220000,37.970000,37.000000,1514.000000,337.000000,1121.000000,337.000000,2.401000,58400.000000\n",
- "-121.470000,38.610000,35.000000,1372.000000,360.000000,850.000000,328.000000,1.633100,67500.000000\n",
- "-122.310000,37.540000,49.000000,1340.000000,281.000000,660.000000,284.000000,4.163000,393800.000000\n",
- "-122.000000,37.300000,29.000000,3429.000000,524.000000,1518.000000,520.000000,7.218000,400700.000000\n",
- "-122.410000,37.800000,52.000000,812.000000,252.000000,629.000000,247.000000,2.587500,500001.000000\n",
- "-118.290000,34.050000,34.000000,1102.000000,448.000000,1325.000000,439.000000,1.597200,168800.000000\n",
- "-118.610000,34.150000,32.000000,4491.000000,815.000000,1696.000000,749.000000,4.910200,319100.000000\n",
- "-116.480000,33.840000,5.000000,5480.000000,1371.000000,1050.000000,485.000000,1.720400,137500.000000\n",
- "-118.260000,33.780000,27.000000,1672.000000,491.000000,1723.000000,462.000000,2.045800,174500.000000\n",
- "-117.340000,34.510000,6.000000,5667.000000,1385.000000,2447.000000,1199.000000,2.361700,103100.000000\n",
- "-122.460000,37.670000,16.000000,3372.000000,1101.000000,2049.000000,1021.000000,4.130300,146500.000000\n",
- "-118.350000,34.110000,33.000000,7478.000000,1678.000000,2701.000000,1500.000000,4.171700,500001.000000\n",
- "-117.300000,34.100000,44.000000,589.000000,130.000000,504.000000,137.000000,1.775000,63400.000000\n",
- "-118.440000,34.150000,44.000000,1778.000000,251.000000,641.000000,251.000000,10.054900,500001.000000\n",
- "-118.630000,34.180000,32.000000,1646.000000,242.000000,697.000000,233.000000,6.668900,433000.000000\n",
- "-117.950000,33.760000,24.000000,3956.000000,812.000000,3196.000000,795.000000,4.351200,191400.000000\n",
- "-122.250000,37.450000,34.000000,2999.000000,365.000000,927.000000,369.000000,10.281100,500001.000000\n",
- "-117.590000,33.650000,4.000000,1793.000000,390.000000,897.000000,386.000000,4.246300,182800.000000\n",
- "-114.490000,33.970000,17.000000,2809.000000,635.000000,83.000000,45.000000,1.615400,87500.000000\n",
- "-118.510000,34.200000,34.000000,2871.000000,581.000000,1350.000000,535.000000,3.704900,227500.000000\n",
- "-122.030000,38.010000,27.000000,3228.000000,562.000000,1666.000000,588.000000,4.570700,175900.000000\n",
- "-118.430000,33.990000,45.000000,2092.000000,451.000000,1190.000000,429.000000,3.802100,323000.000000\n",
- "-122.510000,37.760000,43.000000,2345.000000,624.000000,1439.000000,614.000000,2.844800,268900.000000\n",
- "-119.550000,36.690000,21.000000,1551.000000,423.000000,1519.000000,406.000000,1.713200,55900.000000\n",
- "-122.240000,38.150000,10.000000,6817.000000,1188.000000,4163.000000,1135.000000,4.452900,144100.000000\n",
- "-117.870000,34.020000,16.000000,3552.000000,575.000000,2120.000000,573.000000,6.433300,271500.000000\n",
- "-122.130000,37.700000,21.000000,4124.000000,1054.000000,2162.000000,998.000000,2.632100,223100.000000\n",
- "-121.330000,38.600000,25.000000,4260.000000,607.000000,1635.000000,640.000000,6.281700,288200.000000\n",
- "-121.910000,37.470000,13.000000,5377.000000,744.000000,2759.000000,760.000000,6.868000,337300.000000\n",
- "-118.530000,34.040000,45.000000,1711.000000,264.000000,735.000000,261.000000,9.107800,500001.000000\n",
- "-121.330000,38.000000,32.000000,4474.000000,929.000000,2177.000000,884.000000,3.288900,98900.000000\n",
- "-117.850000,34.060000,24.000000,3128.000000,497.000000,1406.000000,472.000000,7.528600,462700.000000\n",
- "-118.430000,35.120000,8.000000,1968.000000,376.000000,930.000000,360.000000,3.263200,99800.000000\n",
- "-118.070000,33.970000,36.000000,1265.000000,273.000000,1052.000000,253.000000,4.892900,156200.000000\n",
- "-117.160000,32.780000,34.000000,2515.000000,488.000000,1594.000000,515.000000,3.738100,165000.000000\n",
- "-116.290000,34.180000,15.000000,4203.000000,966.000000,1756.000000,695.000000,2.182000,60800.000000\n",
- "-120.660000,35.290000,16.000000,2272.000000,629.000000,1689.000000,649.000000,1.703100,195000.000000\n",
- "-119.790000,36.770000,30.000000,1610.000000,410.000000,1000.000000,397.000000,2.035700,60200.000000\n",
- "-122.140000,37.750000,33.000000,1334.000000,200.000000,579.000000,202.000000,6.832300,255900.000000\n",
- "-122.320000,37.970000,33.000000,1595.000000,292.000000,991.000000,300.000000,4.693700,134100.000000\n",
- "-119.800000,36.830000,17.000000,1560.000000,261.000000,709.000000,258.000000,4.331500,95800.000000\n",
- "-117.330000,33.160000,29.000000,3559.000000,552.000000,1533.000000,545.000000,4.058500,245500.000000\n",
- "-121.860000,37.230000,24.000000,4337.000000,670.000000,1936.000000,652.000000,5.890400,271400.000000\n",
- "-122.240000,37.810000,52.000000,2093.000000,550.000000,918.000000,483.000000,2.747700,243800.000000\n",
- "-120.850000,37.770000,10.000000,423.000000,110.000000,295.000000,94.000000,1.358300,85200.000000\n",
- "-116.950000,33.790000,20.000000,2399.000000,546.000000,1726.000000,542.000000,1.884500,77700.000000\n",
- "-117.220000,33.220000,16.000000,2134.000000,643.000000,1555.000000,560.000000,1.721700,175000.000000\n",
- "-122.230000,40.170000,21.000000,1401.000000,331.000000,651.000000,299.000000,2.225000,64700.000000\n",
- "-118.450000,34.030000,41.000000,2083.000000,528.000000,993.000000,481.000000,4.023100,353900.000000\n",
- "-118.990000,35.270000,32.000000,444.000000,102.000000,242.000000,87.000000,1.152800,150000.000000\n",
- "-117.580000,33.870000,34.000000,1511.000000,272.000000,773.000000,265.000000,3.531300,142100.000000\n",
- "-118.650000,36.570000,20.000000,1431.000000,416.000000,570.000000,225.000000,1.482100,143300.000000\n",
- "-121.400000,38.660000,50.000000,880.000000,150.000000,1148.000000,148.000000,2.506200,112500.000000\n",
- "-119.460000,35.860000,22.000000,1750.000000,374.000000,1113.000000,338.000000,1.505000,42700.000000\n",
- "-118.220000,33.980000,32.000000,2643.000000,737.000000,2784.000000,711.000000,2.535200,184400.000000\n",
- "-118.380000,33.820000,35.000000,3053.000000,623.000000,1311.000000,589.000000,5.158900,439200.000000\n",
- "-117.770000,33.690000,16.000000,1666.000000,341.000000,479.000000,336.000000,2.140600,55000.000000\n",
- "-118.460000,34.180000,35.000000,1819.000000,465.000000,1336.000000,419.000000,3.458300,253200.000000\n",
- "-122.420000,37.790000,6.000000,670.000000,301.000000,655.000000,284.000000,3.442300,117500.000000\n",
- "-118.310000,33.770000,20.000000,5776.000000,956.000000,2757.000000,936.000000,6.644700,416800.000000\n",
- "-121.670000,37.130000,19.000000,3269.000000,483.000000,1383.000000,452.000000,5.620500,300800.000000\n",
- "-121.330000,38.570000,17.000000,1621.000000,350.000000,706.000000,338.000000,2.368400,150000.000000\n",
- "-120.830000,37.520000,6.000000,1488.000000,252.000000,773.000000,259.000000,4.185900,150000.000000\n",
- "-118.120000,33.990000,27.000000,2316.000000,559.000000,2012.000000,544.000000,2.815500,176800.000000\n",
- "-118.110000,34.070000,39.000000,1270.000000,299.000000,1073.000000,278.000000,3.308800,186600.000000\n",
- "-122.670000,38.240000,29.000000,2644.000000,464.000000,1372.000000,450.000000,5.054400,261800.000000\n",
- "-117.290000,34.090000,24.000000,1451.000000,387.000000,1178.000000,330.000000,1.180600,68300.000000\n",
- "-121.800000,37.190000,45.000000,1797.000000,303.000000,870.000000,281.000000,4.541700,434500.000000\n",
- "-120.300000,37.970000,17.000000,3243.000000,619.000000,1408.000000,566.000000,2.474000,120100.000000\n",
- "-120.450000,34.650000,21.000000,1182.000000,243.000000,733.000000,251.000000,3.144200,131600.000000\n",
- "-119.290000,34.230000,22.000000,2486.000000,608.000000,709.000000,523.000000,2.901800,275000.000000\n",
- "-118.340000,34.020000,49.000000,1609.000000,371.000000,896.000000,389.000000,2.515600,136600.000000\n",
- "-117.940000,33.800000,23.000000,2757.000000,734.000000,1811.000000,707.000000,2.800000,214300.000000\n",
- "-116.850000,34.260000,19.000000,5395.000000,1220.000000,981.000000,366.000000,2.609400,92400.000000\n",
- "-117.890000,33.760000,34.000000,1050.000000,210.000000,723.000000,201.000000,4.800000,192700.000000\n",
- "-118.290000,34.030000,27.000000,1084.000000,287.000000,1085.000000,279.000000,2.135000,119600.000000\n",
- "-118.120000,34.060000,35.000000,1729.000000,438.000000,1308.000000,412.000000,2.532100,197200.000000\n",
- "-121.410000,38.600000,16.000000,5407.000000,1467.000000,2523.000000,1265.000000,2.047100,104200.000000\n",
- "-120.620000,35.130000,26.000000,3971.000000,803.000000,1792.000000,723.000000,2.712800,209900.000000\n",
- "-118.180000,33.800000,42.000000,2301.000000,621.000000,2114.000000,561.000000,2.057900,132700.000000\n",
- "-117.510000,34.160000,2.000000,718.000000,98.000000,119.000000,50.000000,4.100000,315000.000000\n",
- "-118.160000,34.030000,40.000000,2201.000000,636.000000,2682.000000,595.000000,2.359000,143400.000000\n",
- "-118.170000,34.110000,39.000000,1758.000000,436.000000,892.000000,447.000000,3.640600,278900.000000\n",
- "-117.690000,33.650000,15.000000,5394.000000,748.000000,2383.000000,706.000000,7.561900,302000.000000\n",
- "-122.200000,37.770000,41.000000,1547.000000,415.000000,1024.000000,341.000000,2.056200,102000.000000\n",
- "-121.330000,37.960000,42.000000,1619.000000,340.000000,906.000000,339.000000,2.548800,80300.000000\n",
- "-121.840000,38.130000,33.000000,596.000000,105.000000,212.000000,94.000000,4.281300,81300.000000\n",
- "-117.760000,34.050000,36.000000,2910.000000,819.000000,3055.000000,782.000000,1.902900,98000.000000\n",
- "-122.430000,37.790000,52.000000,3219.000000,969.000000,1152.000000,830.000000,4.204200,500001.000000\n",
- "-122.320000,37.570000,33.000000,3384.000000,819.000000,2626.000000,793.000000,3.228500,234800.000000\n",
- "-118.160000,34.070000,42.000000,3836.000000,777.000000,2118.000000,754.000000,3.636400,254600.000000\n",
- "-124.090000,40.950000,18.000000,2250.000000,484.000000,1248.000000,472.000000,2.589300,99600.000000\n",
- "-121.990000,38.350000,45.000000,1778.000000,339.000000,839.000000,319.000000,2.465900,102900.000000\n",
- "-122.720000,38.420000,26.000000,3604.000000,734.000000,2605.000000,704.000000,3.096900,143800.000000\n",
- "-122.110000,37.660000,29.000000,2544.000000,643.000000,2332.000000,603.000000,3.209100,150000.000000\n",
- "-121.840000,36.620000,26.000000,32.000000,8.000000,27.000000,10.000000,2.225000,150000.000000\n",
- "-118.180000,34.120000,29.000000,2640.000000,737.000000,1795.000000,655.000000,2.369000,173400.000000\n",
- "-122.450000,38.270000,25.000000,5024.000000,881.000000,1994.000000,838.000000,4.223700,262300.000000\n",
- "-117.910000,33.650000,17.000000,1328.000000,377.000000,762.000000,344.000000,2.222200,276800.000000\n",
- "-116.470000,33.770000,26.000000,4300.000000,767.000000,1557.000000,669.000000,4.410700,122500.000000\n",
- "-122.410000,37.730000,42.000000,2604.000000,573.000000,1703.000000,507.000000,3.423100,230200.000000\n",
- "-119.780000,36.800000,34.000000,2200.000000,493.000000,1243.000000,431.000000,1.851400,66500.000000\n",
- "-119.710000,34.360000,34.000000,1706.000000,276.000000,628.000000,243.000000,4.184200,364000.000000\n",
- "-118.360000,34.030000,40.000000,2323.000000,661.000000,1847.000000,614.000000,1.831600,113500.000000\n",
- "-121.890000,37.990000,4.000000,2171.000000,597.000000,928.000000,461.000000,4.101600,170500.000000\n",
- "-121.980000,37.330000,25.000000,3223.000000,612.000000,1529.000000,602.000000,5.121000,287600.000000\n",
- "-118.470000,34.250000,34.000000,1732.000000,399.000000,1120.000000,401.000000,4.149200,195700.000000\n",
- "-117.260000,32.990000,16.000000,2127.000000,512.000000,1532.000000,499.000000,2.734800,231300.000000\n",
- "-118.090000,34.070000,45.000000,726.000000,146.000000,568.000000,160.000000,3.034700,183200.000000\n",
- "-118.450000,37.250000,20.000000,1468.000000,283.000000,721.000000,270.000000,3.081700,118800.000000\n",
- "-117.780000,33.540000,29.000000,1421.000000,462.000000,520.000000,339.000000,2.296900,450000.000000\n",
- "-117.460000,33.900000,10.000000,9738.000000,2130.000000,4936.000000,1840.000000,3.318700,144800.000000\n",
- "-121.850000,39.740000,39.000000,1139.000000,265.000000,623.000000,264.000000,2.283300,85800.000000\n",
- "-117.290000,34.110000,48.000000,1498.000000,448.000000,1586.000000,455.000000,1.168700,70800.000000\n",
- "-121.200000,37.790000,36.000000,866.000000,160.000000,502.000000,149.000000,2.479800,101500.000000\n",
- "-118.430000,33.960000,20.000000,1901.000000,270.000000,704.000000,254.000000,8.781900,500001.000000\n",
- "-122.110000,37.400000,15.000000,255.000000,63.000000,138.000000,74.000000,4.659100,175000.000000\n",
- "-119.060000,36.080000,19.000000,2554.000000,443.000000,1301.000000,419.000000,4.185600,72100.000000\n",
- "-118.370000,33.880000,20.000000,2439.000000,474.000000,1219.000000,497.000000,5.961900,335900.000000\n",
- "-120.790000,38.430000,40.000000,1391.000000,246.000000,546.000000,214.000000,3.910700,129800.000000\n",
- "-122.200000,39.930000,9.000000,1296.000000,287.000000,768.000000,260.000000,1.919100,54400.000000\n",
- "-122.230000,37.760000,52.000000,1049.000000,185.000000,374.000000,176.000000,4.145800,248500.000000\n",
- "-121.990000,38.530000,6.000000,4598.000000,834.000000,2561.000000,812.000000,3.418600,127300.000000\n",
- "-118.460000,34.020000,39.000000,3599.000000,776.000000,1569.000000,763.000000,5.257100,405400.000000\n",
- "-115.600000,33.040000,31.000000,314.000000,61.000000,152.000000,56.000000,3.347200,91700.000000\n",
- "-117.220000,32.780000,22.000000,2020.000000,466.000000,1010.000000,429.000000,3.452700,175000.000000\n",
- "-118.630000,34.220000,18.000000,1376.000000,225.000000,670.000000,205.000000,6.514600,277600.000000\n",
- "-124.140000,40.720000,18.000000,2581.000000,499.000000,1375.000000,503.000000,2.844600,100500.000000\n",
- "-116.430000,33.780000,17.000000,4293.000000,712.000000,1091.000000,464.000000,6.143700,232100.000000\n",
- "-117.890000,33.730000,32.000000,728.000000,134.000000,837.000000,135.000000,4.076900,163900.000000\n",
- "-117.700000,33.530000,5.000000,6698.000000,1254.000000,2834.000000,1139.000000,5.908800,288500.000000\n",
- "-122.470000,37.850000,19.000000,1926.000000,593.000000,881.000000,546.000000,2.914500,140400.000000\n",
- "-120.630000,38.730000,11.000000,4577.000000,836.000000,1944.000000,700.000000,4.067500,140200.000000\n",
- "-118.590000,34.200000,18.000000,847.000000,185.000000,733.000000,178.000000,5.214900,201900.000000\n",
- "-118.360000,33.930000,40.000000,1625.000000,500.000000,2036.000000,476.000000,2.629800,156500.000000\n",
- "-118.410000,33.850000,16.000000,6123.000000,1989.000000,2853.000000,1789.000000,4.425000,336400.000000\n",
- "-117.190000,32.770000,16.000000,3273.000000,670.000000,1305.000000,671.000000,4.136800,151000.000000\n",
- "-117.780000,33.860000,16.000000,3471.000000,708.000000,1769.000000,691.000000,4.106400,246100.000000\n",
- "-121.860000,39.740000,13.000000,3494.000000,843.000000,1571.000000,784.000000,1.101900,120200.000000\n",
- "-119.040000,35.310000,11.000000,2161.000000,371.000000,1267.000000,388.000000,4.195700,92700.000000\n",
- "-118.260000,34.020000,40.000000,1259.000000,362.000000,1499.000000,327.000000,1.838200,126400.000000\n",
- "-117.250000,34.490000,4.000000,2372.000000,361.000000,1017.000000,322.000000,5.111200,170900.000000\n",
- "-120.040000,39.270000,24.000000,2237.000000,491.000000,264.000000,95.000000,4.136400,154500.000000\n",
- "-121.420000,38.540000,29.000000,2358.000000,493.000000,1071.000000,470.000000,2.925000,94300.000000\n",
- "-118.150000,34.200000,46.000000,1505.000000,261.000000,857.000000,269.000000,4.500000,184200.000000\n",
- "-118.080000,33.880000,26.000000,1507.000000,270.000000,931.000000,275.000000,5.164500,244900.000000\n",
- "-122.430000,37.800000,52.000000,2696.000000,572.000000,925.000000,552.000000,5.036500,500000.000000\n",
- "-115.490000,32.670000,24.000000,1266.000000,275.000000,1083.000000,298.000000,1.482800,73100.000000\n",
- "-120.980000,38.340000,27.000000,3471.000000,653.000000,1793.000000,600.000000,3.550800,99100.000000\n",
- "-116.140000,34.450000,12.000000,8796.000000,1721.000000,11139.000000,1680.000000,2.261200,137500.000000\n",
- "-117.110000,32.730000,27.000000,3160.000000,627.000000,1628.000000,612.000000,3.886400,132600.000000\n",
- "-118.470000,34.000000,38.000000,1235.000000,390.000000,891.000000,376.000000,2.714300,287500.000000\n",
- "-121.420000,37.740000,19.000000,1393.000000,367.000000,915.000000,355.000000,1.195700,103100.000000\n",
- "-122.250000,37.820000,52.000000,2474.000000,403.000000,1104.000000,398.000000,5.883000,340700.000000\n",
- "-118.050000,33.720000,22.000000,5416.000000,1271.000000,2260.000000,1184.000000,3.803800,174500.000000\n",
- "-122.020000,36.970000,44.000000,594.000000,169.000000,325.000000,139.000000,1.155200,250000.000000\n",
- "-115.570000,32.800000,33.000000,1192.000000,213.000000,1066.000000,211.000000,4.571400,68600.000000\n",
- "-121.290000,37.800000,6.000000,110.000000,26.000000,69.000000,24.000000,3.729200,475000.000000\n",
- "-122.080000,37.880000,26.000000,2947.000000,647.000000,825.000000,626.000000,2.933000,85000.000000\n",
- "-121.770000,37.650000,16.000000,4290.000000,554.000000,1952.000000,576.000000,7.358800,327500.000000\n",
- "-119.810000,36.720000,46.000000,1414.000000,268.000000,902.000000,243.000000,1.583300,56700.000000\n",
- "-118.350000,33.970000,26.000000,1725.000000,431.000000,1130.000000,404.000000,3.270800,128100.000000\n",
- "-118.200000,34.190000,38.000000,2176.000000,266.000000,798.000000,243.000000,15.000100,500001.000000\n",
- "-118.790000,34.140000,7.000000,3003.000000,504.000000,1143.000000,466.000000,5.854800,500001.000000\n",
- "-118.120000,34.160000,30.000000,1762.000000,416.000000,940.000000,398.000000,2.863100,188600.000000\n",
- "-118.220000,33.960000,36.000000,1542.000000,458.000000,1711.000000,468.000000,1.902800,164200.000000\n",
- "-121.300000,37.990000,38.000000,2375.000000,494.000000,1167.000000,471.000000,2.667300,87500.000000\n",
- "-121.840000,36.610000,21.000000,2876.000000,802.000000,2487.000000,795.000000,2.200700,112800.000000\n",
- "-117.900000,34.070000,36.000000,1009.000000,164.000000,466.000000,149.000000,5.851900,249400.000000\n",
- "-120.400000,34.860000,11.000000,1633.000000,348.000000,504.000000,327.000000,2.050800,275000.000000\n",
- "-117.950000,33.800000,32.000000,1219.000000,192.000000,634.000000,197.000000,5.237000,215700.000000\n",
- "-118.300000,33.940000,36.000000,2041.000000,531.000000,1390.000000,464.000000,2.011400,99300.000000\n",
- "-121.600000,37.900000,5.000000,14684.000000,2252.000000,4276.000000,1722.000000,6.905100,340900.000000\n",
- "-122.410000,37.590000,34.000000,3931.000000,622.000000,1717.000000,621.000000,6.294600,450000.000000\n",
- "-118.450000,34.050000,28.000000,801.000000,399.000000,936.000000,406.000000,2.187500,181300.000000\n",
- "-118.180000,33.860000,43.000000,2752.000000,645.000000,1674.000000,614.000000,3.671900,161300.000000\n",
- "-121.780000,40.120000,14.000000,388.000000,108.000000,35.000000,17.000000,6.135900,106300.000000\n",
- "-118.210000,34.040000,47.000000,1325.000000,393.000000,1557.000000,352.000000,2.800000,148400.000000\n",
- "-118.380000,34.090000,28.000000,4001.000000,1352.000000,1799.000000,1220.000000,2.578400,272900.000000\n",
- "-117.180000,32.840000,32.000000,1351.000000,237.000000,823.000000,269.000000,4.276800,167800.000000\n",
- "-117.300000,32.850000,28.000000,2334.000000,694.000000,770.000000,552.000000,3.132400,500001.000000\n",
- "-119.020000,35.420000,42.000000,2271.000000,458.000000,1124.000000,447.000000,2.758300,64900.000000\n",
- "-124.010000,40.970000,21.000000,1513.000000,319.000000,943.000000,301.000000,3.538000,102700.000000\n",
- "-118.100000,34.130000,44.000000,1745.000000,237.000000,693.000000,248.000000,9.791200,500001.000000\n",
- "-119.810000,36.770000,49.000000,1749.000000,314.000000,705.000000,300.000000,3.150000,72200.000000\n",
- "-122.550000,38.000000,18.000000,3119.000000,803.000000,1395.000000,722.000000,3.926500,301100.000000\n",
- "-117.620000,34.080000,30.000000,1372.000000,235.000000,1047.000000,225.000000,3.159700,116300.000000\n",
- "-121.290000,37.960000,52.000000,888.000000,324.000000,630.000000,258.000000,1.241100,112500.000000\n",
- "-119.090000,34.240000,17.000000,10214.000000,1589.000000,3409.000000,1327.000000,5.380600,452100.000000\n",
- "-117.200000,32.770000,30.000000,156.000000,45.000000,77.000000,40.000000,3.267900,137500.000000\n",
- "-122.270000,37.450000,41.000000,830.000000,136.000000,353.000000,153.000000,6.382400,500001.000000\n",
- "-117.310000,34.410000,14.000000,3019.000000,643.000000,1639.000000,582.000000,1.528800,103400.000000\n",
- "-118.280000,33.830000,18.000000,5923.000000,1409.000000,3887.000000,1322.000000,3.471200,194400.000000\n",
- "-118.270000,34.050000,26.000000,1164.000000,674.000000,1685.000000,541.000000,1.572700,225000.000000\n",
- "-118.170000,34.090000,45.000000,1327.000000,271.000000,1069.000000,284.000000,3.397700,153800.000000\n",
- "-122.540000,37.740000,42.000000,2006.000000,415.000000,1230.000000,435.000000,4.178600,271100.000000\n",
- "-118.280000,33.770000,47.000000,307.000000,69.000000,374.000000,65.000000,2.906300,146900.000000\n",
- "-118.040000,33.720000,24.000000,7141.000000,1330.000000,3418.000000,1268.000000,4.664900,237800.000000\n",
- "-117.390000,33.920000,25.000000,2886.000000,583.000000,2327.000000,577.000000,2.385100,113700.000000\n",
- "-119.010000,35.370000,35.000000,120.000000,35.000000,477.000000,41.000000,1.912500,47500.000000\n",
- "-122.410000,37.740000,34.000000,1403.000000,262.000000,839.000000,255.000000,4.703100,255200.000000\n",
- "-118.290000,33.910000,41.000000,2475.000000,532.000000,1416.000000,470.000000,3.837200,156400.000000\n",
- "-117.250000,33.220000,19.000000,2167.000000,443.000000,1654.000000,435.000000,3.500000,135800.000000\n",
- "-117.650000,33.460000,19.000000,7034.000000,1139.000000,2824.000000,1068.000000,6.087300,277300.000000\n",
- "-121.980000,37.800000,17.000000,3354.000000,422.000000,1457.000000,425.000000,7.647300,345800.000000\n",
- "-118.050000,33.840000,21.000000,4890.000000,653.000000,2295.000000,654.000000,6.983000,329700.000000\n",
- "-122.030000,37.270000,25.000000,4460.000000,553.000000,1608.000000,561.000000,10.795800,500001.000000\n",
- "-120.520000,35.240000,5.000000,4413.000000,804.000000,2003.000000,725.000000,5.026700,253300.000000\n",
- "-117.950000,34.140000,33.000000,1943.000000,440.000000,1526.000000,353.000000,3.038000,137500.000000\n",
- "-118.160000,34.690000,35.000000,3114.000000,583.000000,1974.000000,545.000000,3.902800,126800.000000\n",
- "-121.480000,39.100000,19.000000,2043.000000,421.000000,1018.000000,390.000000,2.595200,92400.000000\n",
- "-117.530000,33.940000,21.000000,5675.000000,935.000000,2834.000000,865.000000,4.226300,203200.000000\n",
- "-122.290000,37.910000,40.000000,2085.000000,329.000000,796.000000,339.000000,5.535700,273700.000000\n",
- "-121.780000,38.690000,31.000000,2547.000000,535.000000,1579.000000,509.000000,2.677400,95800.000000\n",
- "-117.970000,33.840000,34.000000,874.000000,153.000000,549.000000,153.000000,4.866700,186800.000000\n",
- "-122.260000,37.860000,52.000000,3774.000000,744.000000,1461.000000,679.000000,2.940500,289500.000000\n",
- "-117.960000,33.690000,20.000000,3123.000000,441.000000,1319.000000,432.000000,6.091000,290400.000000\n",
- "-118.390000,34.190000,36.000000,904.000000,191.000000,627.000000,191.000000,2.416700,192900.000000\n",
- "-122.480000,37.510000,22.000000,1564.000000,278.000000,761.000000,270.000000,4.757800,318500.000000\n",
- "-118.600000,34.210000,19.000000,2581.000000,857.000000,2004.000000,784.000000,2.615900,182300.000000\n",
- "-122.350000,40.560000,12.000000,3900.000000,863.000000,2145.000000,864.000000,1.988100,85200.000000\n",
- "-118.240000,34.030000,52.000000,142.000000,47.000000,137.000000,45.000000,1.833300,312500.000000\n",
- "-117.610000,34.080000,20.000000,3550.000000,736.000000,2229.000000,681.000000,3.019900,128800.000000\n",
- "-121.030000,37.670000,24.000000,2162.000000,459.000000,1468.000000,441.000000,3.185700,98300.000000\n",
- "-119.690000,36.810000,15.000000,2892.000000,496.000000,1634.000000,501.000000,4.493400,88000.000000\n",
- "-118.270000,34.060000,26.000000,513.000000,338.000000,1204.000000,321.000000,1.490400,275000.000000\n",
- "-118.260000,34.070000,30.000000,929.000000,238.000000,763.000000,214.000000,2.522700,187500.000000\n",
- "-120.910000,38.980000,13.000000,7689.000000,1415.000000,3264.000000,1198.000000,3.653000,146800.000000\n",
- "-117.140000,32.710000,32.000000,719.000000,251.000000,894.000000,208.000000,1.845600,103100.000000\n",
- "-117.200000,32.820000,35.000000,2772.000000,537.000000,1392.000000,521.000000,3.337000,172300.000000\n",
- "-123.800000,39.440000,52.000000,1533.000000,336.000000,754.000000,340.000000,1.921300,95000.000000\n",
- "-122.330000,37.980000,32.000000,1967.000000,348.000000,1144.000000,364.000000,4.413500,150100.000000\n",
- "-117.370000,33.970000,38.000000,1156.000000,241.000000,877.000000,200.000000,1.451400,79900.000000\n",
- "-122.040000,37.300000,26.000000,1714.000000,270.000000,778.000000,262.000000,6.075000,417000.000000\n",
- "-118.210000,33.980000,35.000000,1705.000000,562.000000,2212.000000,539.000000,2.325000,161500.000000\n",
- "-117.320000,34.110000,38.000000,1462.000000,337.000000,1208.000000,324.000000,2.260400,68100.000000\n",
- "-118.120000,34.080000,49.000000,1782.000000,374.000000,1010.000000,367.000000,3.158300,268200.000000\n",
- "-121.560000,39.690000,8.000000,2836.000000,522.000000,1163.000000,512.000000,3.130000,168300.000000\n",
- "-117.940000,33.800000,28.000000,2914.000000,489.000000,1500.000000,499.000000,4.942900,254800.000000\n",
- "-117.980000,33.850000,23.000000,2089.000000,377.000000,1085.000000,362.000000,4.765000,181500.000000\n",
- "-122.850000,38.770000,18.000000,2856.000000,513.000000,1027.000000,405.000000,4.695300,241700.000000\n",
- "-116.240000,33.760000,9.000000,1961.000000,595.000000,966.000000,275.000000,3.812500,96700.000000\n",
- "-122.320000,37.960000,25.000000,1728.000000,403.000000,934.000000,412.000000,3.375000,133700.000000\n",
- "-118.950000,35.410000,21.000000,3999.000000,727.000000,1889.000000,688.000000,3.875000,99500.000000\n",
- "-122.420000,37.670000,42.000000,2274.000000,429.000000,1255.000000,397.000000,5.120500,226300.000000\n",
- "-118.250000,33.980000,39.000000,1553.000000,461.000000,2271.000000,437.000000,1.737800,121900.000000\n",
- "-118.400000,34.220000,36.000000,2557.000000,540.000000,1556.000000,491.000000,3.659100,183800.000000\n",
- "-120.560000,38.390000,20.000000,1326.000000,307.000000,563.000000,237.000000,2.666700,86600.000000\n",
- "-121.630000,39.100000,22.000000,3585.000000,548.000000,1757.000000,577.000000,4.174000,100100.000000\n",
- "-122.200000,37.470000,44.000000,1927.000000,332.000000,846.000000,362.000000,4.208300,278200.000000\n",
- "-122.110000,37.110000,46.000000,1993.000000,404.000000,850.000000,327.000000,5.208000,206800.000000\n",
- "-118.250000,33.840000,19.000000,1731.000000,420.000000,1032.000000,364.000000,3.812500,208100.000000\n",
- "-118.350000,34.180000,46.000000,2711.000000,491.000000,1277.000000,490.000000,4.282000,224700.000000\n",
- "-118.140000,33.860000,44.000000,1436.000000,257.000000,745.000000,233.000000,4.625000,213400.000000\n",
- "-122.260000,38.280000,24.000000,2831.000000,502.000000,1462.000000,503.000000,4.500000,158300.000000\n",
- "-120.240000,37.960000,34.000000,1747.000000,395.000000,935.000000,362.000000,1.625000,79400.000000\n",
- "-121.590000,39.740000,17.000000,1646.000000,330.000000,750.000000,344.000000,2.379800,83800.000000\n",
- "-122.720000,40.170000,16.000000,396.000000,78.000000,188.000000,72.000000,1.388900,87500.000000\n",
- "-118.480000,34.310000,31.000000,1091.000000,256.000000,892.000000,238.000000,3.000000,172400.000000\n",
- "-121.100000,38.940000,42.000000,410.000000,117.000000,706.000000,112.000000,1.017900,125000.000000\n",
- "-118.100000,33.970000,35.000000,2426.000000,529.000000,2010.000000,514.000000,2.992200,163500.000000\n",
- "-120.970000,37.670000,16.000000,1499.000000,250.000000,1292.000000,271.000000,4.385100,117300.000000\n",
- "-121.910000,36.970000,19.000000,4920.000000,1092.000000,1807.000000,922.000000,3.511200,231900.000000\n",
- "-121.470000,37.580000,14.000000,1594.000000,292.000000,887.000000,287.000000,4.662500,294000.000000\n",
- "-121.930000,37.720000,26.000000,3816.000000,637.000000,1935.000000,642.000000,4.469700,221300.000000\n",
- "-117.830000,33.790000,29.000000,1454.000000,236.000000,724.000000,262.000000,4.854200,218100.000000\n",
- "-117.890000,33.730000,33.000000,1308.000000,375.000000,2175.000000,347.000000,3.082400,177400.000000\n",
- "-117.840000,34.000000,26.000000,797.000000,117.000000,383.000000,114.000000,6.875800,253800.000000\n",
- "-116.860000,34.240000,19.000000,5411.000000,1042.000000,441.000000,185.000000,3.132400,132000.000000\n",
- "-121.280000,38.740000,33.000000,4384.000000,778.000000,1775.000000,789.000000,4.050000,134700.000000\n",
- "-119.630000,36.640000,33.000000,1036.000000,181.000000,620.000000,174.000000,3.410700,110400.000000\n",
- "-121.060000,38.250000,13.000000,651.000000,102.000000,301.000000,104.000000,3.652800,200000.000000\n",
- "-122.010000,37.400000,24.000000,1297.000000,297.000000,441.000000,282.000000,3.143900,47500.000000\n",
- "-117.220000,33.310000,12.000000,2924.000000,433.000000,1193.000000,394.000000,6.247500,331300.000000\n",
- "-116.310000,33.730000,19.000000,12467.000000,2508.000000,4086.000000,1761.000000,3.284600,131900.000000\n",
- "-121.290000,38.020000,12.000000,2006.000000,426.000000,1849.000000,396.000000,2.543700,99000.000000\n",
- "-121.000000,37.640000,52.000000,530.000000,177.000000,325.000000,158.000000,1.187500,90600.000000\n",
- "-121.080000,39.210000,17.000000,3033.000000,590.000000,1319.000000,583.000000,2.481100,111800.000000\n",
- "-121.880000,37.990000,16.000000,3787.000000,515.000000,1606.000000,507.000000,5.567600,174200.000000\n",
- "-117.180000,32.740000,20.000000,1165.000000,269.000000,459.000000,244.000000,3.175000,191700.000000\n",
- "-117.200000,32.850000,22.000000,3501.000000,631.000000,1297.000000,581.000000,4.789100,295300.000000\n",
- "-117.160000,33.920000,12.000000,3236.000000,502.000000,1610.000000,502.000000,4.756800,143500.000000\n",
- "-118.350000,34.050000,44.000000,1856.000000,493.000000,1374.000000,469.000000,2.098400,158000.000000\n",
- "-119.050000,36.060000,23.000000,2344.000000,407.000000,1184.000000,406.000000,3.162500,70600.000000\n",
- "-121.150000,38.690000,52.000000,240.000000,44.000000,6675.000000,29.000000,6.135900,225000.000000\n",
- "-123.160000,39.130000,33.000000,1320.000000,303.000000,1048.000000,303.000000,1.781300,94700.000000\n",
- "-121.360000,38.590000,32.000000,3303.000000,480.000000,1185.000000,436.000000,5.050800,225700.000000\n",
- "-118.280000,33.730000,52.000000,2085.000000,588.000000,1767.000000,516.000000,2.193500,243200.000000\n",
- "-118.360000,33.890000,27.000000,2837.000000,684.000000,2141.000000,648.000000,3.132500,215000.000000\n",
- "-121.240000,38.630000,4.000000,11021.000000,1565.000000,3857.000000,1494.000000,7.258200,273200.000000\n",
- "-117.690000,33.550000,3.000000,1618.000000,266.000000,710.000000,246.000000,6.074300,274300.000000\n",
- "-118.460000,34.270000,28.000000,1865.000000,463.000000,1182.000000,440.000000,2.619300,172300.000000\n",
- "-122.280000,37.860000,52.000000,3007.000000,691.000000,1582.000000,636.000000,2.565200,157700.000000\n",
- "-118.280000,33.940000,32.000000,1381.000000,375.000000,1268.000000,354.000000,1.105100,94200.000000\n",
- "-122.180000,37.730000,42.000000,909.000000,215.000000,646.000000,198.000000,2.906300,80000.000000\n",
- "-122.870000,38.390000,34.000000,1138.000000,205.000000,541.000000,180.000000,4.514700,271400.000000\n",
- "-119.750000,34.440000,28.000000,1080.000000,298.000000,524.000000,251.000000,1.843200,327300.000000\n",
- "-117.210000,32.850000,15.000000,2593.000000,521.000000,901.000000,456.000000,4.206500,277800.000000\n",
- "-118.200000,33.820000,34.000000,2807.000000,768.000000,2217.000000,744.000000,2.428600,204800.000000\n",
- "-121.880000,37.320000,40.000000,1331.000000,374.000000,1276.000000,389.000000,2.754600,172500.000000\n",
- "-118.460000,34.140000,34.000000,5264.000000,771.000000,1738.000000,753.000000,8.811500,500001.000000\n",
- "-118.290000,34.090000,35.000000,2198.000000,998.000000,3441.000000,912.000000,2.046700,158300.000000\n",
- "-117.880000,34.110000,30.000000,3082.000000,602.000000,2008.000000,619.000000,4.141100,182700.000000\n",
- "-117.680000,33.650000,6.000000,10395.000000,1915.000000,4783.000000,1811.000000,5.928000,239900.000000\n",
- "-120.350000,39.340000,29.000000,1986.000000,474.000000,337.000000,100.000000,4.027800,95800.000000\n",
- "-118.020000,33.820000,19.000000,2485.000000,437.000000,1286.000000,431.000000,4.746600,258300.000000\n",
- "-118.350000,33.920000,24.000000,2728.000000,845.000000,2023.000000,773.000000,2.750000,239700.000000\n",
- "-122.340000,37.970000,19.000000,2237.000000,580.000000,1438.000000,551.000000,2.338200,120700.000000\n",
- "-118.330000,34.020000,46.000000,1528.000000,391.000000,933.000000,366.000000,2.197900,125700.000000\n",
- "-118.400000,33.900000,37.000000,2458.000000,400.000000,920.000000,375.000000,7.892400,500001.000000\n",
- "-117.970000,33.730000,18.000000,3698.000000,574.000000,2046.000000,614.000000,6.298400,269800.000000\n",
- "-121.320000,38.570000,15.000000,3369.000000,499.000000,1733.000000,470.000000,5.310000,127500.000000\n",
- "-117.940000,33.880000,46.000000,1747.000000,312.000000,770.000000,296.000000,5.421700,256000.000000\n",
- "-118.540000,34.150000,26.000000,10111.000000,1295.000000,3599.000000,1257.000000,10.229200,500001.000000\n",
- "-117.860000,33.830000,23.000000,2377.000000,403.000000,1101.000000,408.000000,5.343900,227100.000000\n",
- "-119.950000,36.800000,30.000000,1233.000000,214.000000,620.000000,199.000000,3.429700,112500.000000\n",
- "-121.420000,36.860000,41.000000,440.000000,106.000000,389.000000,94.000000,2.681800,225000.000000\n",
- "-117.090000,32.690000,34.000000,1469.000000,267.000000,1031.000000,267.000000,3.458300,112700.000000\n",
- "-119.200000,34.150000,27.000000,2076.000000,681.000000,1904.000000,647.000000,1.477300,160800.000000\n",
- "-117.170000,32.760000,45.000000,3149.000000,639.000000,1160.000000,661.000000,2.726600,354200.000000\n",
- "-117.900000,33.910000,36.000000,1376.000000,257.000000,687.000000,221.000000,3.540300,195400.000000\n",
- "-122.030000,37.330000,23.000000,4221.000000,671.000000,1782.000000,641.000000,7.486300,412300.000000\n",
- "-118.180000,33.900000,31.000000,2536.000000,603.000000,2625.000000,576.000000,3.090900,150900.000000\n",
- "-119.050000,35.320000,11.000000,7035.000000,1455.000000,3525.000000,1387.000000,3.482700,93600.000000\n",
- "-119.670000,34.470000,35.000000,2700.000000,422.000000,1995.000000,383.000000,4.975700,500001.000000\n",
- "-118.350000,34.170000,44.000000,2572.000000,613.000000,1280.000000,570.000000,3.558300,232000.000000\n",
- "-118.300000,33.870000,31.000000,1398.000000,261.000000,823.000000,263.000000,5.064100,234900.000000\n",
- "-118.250000,34.160000,52.000000,2477.000000,385.000000,993.000000,371.000000,4.913500,368100.000000\n",
- "-117.910000,33.820000,29.000000,1444.000000,326.000000,1038.000000,271.000000,2.384300,182900.000000\n",
- "-118.360000,33.980000,40.000000,1113.000000,234.000000,584.000000,231.000000,3.092700,316000.000000\n",
- "-121.290000,37.990000,45.000000,965.000000,198.000000,498.000000,195.000000,1.694400,75200.000000\n",
- "-122.740000,38.460000,9.000000,2268.000000,594.000000,1311.000000,585.000000,2.660700,91500.000000\n",
- "-118.290000,33.930000,31.000000,3894.000000,1017.000000,3590.000000,962.000000,2.043700,137200.000000\n",
- "-122.050000,37.310000,25.000000,4601.000000,696.000000,2003.000000,666.000000,8.072700,455500.000000\n",
- "-117.080000,32.570000,18.000000,2203.000000,544.000000,1943.000000,497.000000,2.250000,103200.000000\n",
- "-122.040000,37.970000,10.000000,974.000000,316.000000,631.000000,286.000000,2.315200,140600.000000\n",
- "-120.310000,37.110000,38.000000,1696.000000,301.000000,985.000000,278.000000,2.405400,112500.000000\n",
- "-117.270000,34.100000,9.000000,3904.000000,1042.000000,3688.000000,896.000000,1.802200,78000.000000\n",
- "-118.260000,33.950000,44.000000,1481.000000,329.000000,999.000000,315.000000,1.514700,94600.000000\n",
- "-118.110000,34.160000,52.000000,1353.000000,274.000000,852.000000,306.000000,3.458300,239900.000000\n",
- "-118.340000,33.990000,34.000000,397.000000,132.000000,250.000000,121.000000,1.675000,166700.000000\n",
- "-117.890000,33.600000,40.000000,1639.000000,352.000000,498.000000,278.000000,5.633600,500001.000000\n",
- "-119.720000,34.420000,52.000000,1759.000000,387.000000,980.000000,402.000000,4.012500,261000.000000\n",
- "-118.440000,34.180000,36.000000,2077.000000,496.000000,1206.000000,528.000000,2.232600,221000.000000\n",
- "-122.080000,37.970000,9.000000,2643.000000,439.000000,1105.000000,467.000000,6.657900,245200.000000\n",
- "-122.450000,37.760000,50.000000,2518.000000,507.000000,979.000000,516.000000,4.691200,500001.000000\n",
- "-118.220000,33.940000,41.000000,928.000000,249.000000,1108.000000,236.000000,3.432300,144600.000000\n",
- "-118.330000,34.070000,52.000000,1482.000000,171.000000,531.000000,161.000000,15.000100,500001.000000\n",
- "-117.660000,34.050000,14.000000,2644.000000,525.000000,2021.000000,511.000000,3.646700,147500.000000\n",
- "-120.940000,35.420000,18.000000,3418.000000,686.000000,970.000000,453.000000,3.773800,279400.000000\n",
- "-117.300000,34.050000,6.000000,2155.000000,544.000000,1039.000000,391.000000,1.667500,95800.000000\n",
- "-117.920000,33.640000,5.000000,949.000000,287.000000,497.000000,244.000000,2.750000,225000.000000\n",
- "-118.190000,33.990000,37.000000,2073.000000,614.000000,2544.000000,598.000000,2.905400,156300.000000\n",
- "-122.080000,37.940000,44.000000,2185.000000,357.000000,943.000000,366.000000,4.725000,232100.000000\n",
- "-117.720000,34.090000,33.000000,4979.000000,934.000000,2575.000000,874.000000,3.795800,152500.000000\n",
- "-118.190000,34.080000,35.000000,1554.000000,381.000000,1487.000000,374.000000,1.903800,139500.000000\n",
- "-122.240000,38.110000,42.000000,1743.000000,388.000000,889.000000,341.000000,2.324100,99200.000000\n",
- "-121.810000,37.230000,17.000000,2319.000000,324.000000,1076.000000,338.000000,6.466400,278300.000000\n",
- "-118.340000,34.180000,45.000000,3046.000000,633.000000,1448.000000,599.000000,3.240000,226900.000000\n",
- "-120.570000,38.200000,13.000000,4110.000000,847.000000,1796.000000,706.000000,2.641700,122300.000000\n",
- "-120.450000,34.640000,30.000000,2330.000000,422.000000,1255.000000,449.000000,3.851200,134600.000000\n",
- "-118.250000,33.950000,25.000000,764.000000,200.000000,801.000000,220.000000,1.138400,100000.000000\n",
- "-117.950000,33.900000,15.000000,3057.000000,479.000000,1679.000000,498.000000,6.842900,372600.000000\n",
- "-117.200000,33.120000,18.000000,4372.000000,736.000000,1473.000000,675.000000,5.119400,247800.000000\n",
- "-117.300000,34.530000,38.000000,1643.000000,489.000000,1196.000000,406.000000,1.227500,64100.000000\n",
- "-121.870000,37.270000,18.000000,3561.000000,560.000000,1753.000000,553.000000,5.029200,269400.000000\n",
- "-118.280000,34.030000,40.000000,2118.000000,796.000000,2195.000000,658.000000,1.797600,164600.000000\n",
- "-119.770000,36.440000,26.000000,1727.000000,289.000000,802.000000,259.000000,3.208300,75000.000000\n",
- "-122.380000,40.090000,16.000000,2077.000000,388.000000,1155.000000,389.000000,3.136100,84800.000000\n",
- "-118.900000,34.180000,14.000000,2627.000000,328.000000,1121.000000,328.000000,7.050400,333800.000000\n",
- "-121.010000,37.250000,16.000000,2216.000000,458.000000,1135.000000,424.000000,2.731600,97500.000000\n",
- "-116.980000,32.720000,15.000000,4209.000000,680.000000,1914.000000,641.000000,4.513500,158300.000000\n",
- "-119.980000,38.920000,28.000000,1408.000000,312.000000,522.000000,221.000000,2.070800,89600.000000\n",
- "-121.930000,37.720000,26.000000,2806.000000,459.000000,1453.000000,444.000000,4.910700,213800.000000\n",
- "-117.640000,34.090000,34.000000,2839.000000,659.000000,1822.000000,631.000000,3.050000,121300.000000\n",
- "-119.850000,37.390000,14.000000,2744.000000,555.000000,1153.000000,474.000000,2.753000,111100.000000\n",
- "-118.200000,33.980000,43.000000,1091.000000,320.000000,1418.000000,316.000000,2.152200,159400.000000\n",
- "-120.830000,37.070000,16.000000,3736.000000,761.000000,1942.000000,730.000000,2.559800,120200.000000\n",
- "-117.070000,32.580000,25.000000,1607.000000,280.000000,899.000000,260.000000,3.819400,134400.000000\n",
- "-119.050000,35.340000,14.000000,3580.000000,984.000000,1933.000000,912.000000,2.663700,175000.000000\n",
- "-117.570000,34.150000,3.000000,12806.000000,2219.000000,4249.000000,1499.000000,5.485000,343100.000000\n",
- "-121.370000,38.670000,36.000000,1786.000000,338.000000,974.000000,319.000000,2.555000,72700.000000\n",
- "-122.180000,37.700000,36.000000,2639.000000,533.000000,1209.000000,519.000000,4.026800,205500.000000\n",
- "-116.940000,32.810000,8.000000,2517.000000,632.000000,1686.000000,613.000000,2.136000,143500.000000\n",
- "-121.210000,39.240000,7.000000,4194.000000,673.000000,1355.000000,566.000000,4.370200,226100.000000\n",
- "-122.060000,37.710000,36.000000,3541.000000,570.000000,1478.000000,529.000000,4.635000,248600.000000\n",
- "-118.440000,34.190000,11.000000,2891.000000,951.000000,2166.000000,768.000000,2.891000,178100.000000\n",
- "-122.360000,37.720000,10.000000,479.000000,125.000000,355.000000,108.000000,2.708300,180400.000000\n",
- "-121.320000,38.620000,29.000000,2430.000000,448.000000,1087.000000,394.000000,3.086400,177900.000000\n",
- "-118.270000,33.940000,43.000000,1309.000000,344.000000,1182.000000,340.000000,1.662500,88700.000000\n",
- "-122.040000,37.970000,39.000000,1323.000000,245.000000,705.000000,261.000000,3.196800,151000.000000\n",
- "-118.210000,33.960000,39.000000,2050.000000,529.000000,1959.000000,485.000000,2.138900,168900.000000\n",
- "-117.200000,33.580000,2.000000,30450.000000,5033.000000,9419.000000,3197.000000,4.593600,174300.000000\n",
- "-120.500000,37.370000,18.000000,8606.000000,1678.000000,5303.000000,1644.000000,2.401200,79700.000000\n",
- "-118.170000,33.980000,36.000000,627.000000,177.000000,834.000000,175.000000,2.984400,163600.000000\n",
- "-117.880000,33.830000,22.000000,3522.000000,543.000000,1706.000000,524.000000,6.468500,241200.000000\n",
- "-118.290000,33.990000,46.000000,2198.000000,530.000000,2067.000000,497.000000,2.054200,103400.000000\n",
- "-117.420000,34.100000,18.000000,3977.000000,809.000000,2231.000000,742.000000,4.139900,115400.000000\n",
- "-116.960000,32.710000,18.000000,2413.000000,533.000000,1129.000000,551.000000,2.456700,155000.000000\n",
- "-118.360000,34.070000,52.000000,2046.000000,451.000000,944.000000,435.000000,3.426500,456900.000000\n",
- "-122.260000,38.330000,34.000000,2048.000000,316.000000,780.000000,267.000000,5.815000,339200.000000\n",
- "-120.510000,37.290000,20.000000,4927.000000,1042.000000,4205.000000,1009.000000,1.767900,79800.000000\n",
- "-117.940000,33.620000,25.000000,1188.000000,264.000000,569.000000,249.000000,3.660700,500001.000000\n",
- "-118.270000,33.940000,30.000000,1041.000000,275.000000,877.000000,270.000000,1.526800,91600.000000\n",
- "-117.930000,34.090000,37.000000,1185.000000,225.000000,769.000000,235.000000,4.462500,154200.000000\n",
- "-118.220000,33.920000,43.000000,1195.000000,256.000000,1251.000000,262.000000,3.453900,125000.000000\n",
- "-121.840000,37.320000,16.000000,1866.000000,364.000000,1835.000000,412.000000,5.336300,212800.000000\n",
- "-122.030000,37.830000,24.000000,5948.000000,738.000000,1997.000000,710.000000,9.870800,500001.000000\n",
- "-122.460000,38.290000,21.000000,2423.000000,560.000000,1098.000000,503.000000,2.364000,173300.000000\n",
- "-118.320000,34.010000,50.000000,1842.000000,377.000000,817.000000,341.000000,3.154800,157700.000000\n",
- "-118.020000,33.950000,35.000000,2085.000000,400.000000,1112.000000,391.000000,3.488600,173900.000000\n",
- "-118.310000,34.190000,13.000000,3801.000000,1116.000000,1986.000000,1078.000000,2.087500,222700.000000\n",
- "-117.800000,34.100000,13.000000,2996.000000,495.000000,1187.000000,464.000000,6.245600,161700.000000\n",
- "-118.460000,34.260000,33.000000,1358.000000,247.000000,738.000000,235.000000,5.094700,210300.000000\n",
- "-121.940000,37.340000,41.000000,2151.000000,473.000000,1092.000000,469.000000,3.732100,250000.000000\n",
- "-117.640000,33.870000,2.000000,17470.000000,2727.000000,5964.000000,1985.000000,6.230800,257900.000000\n",
- "-117.900000,34.110000,23.000000,4776.000000,1316.000000,4797.000000,1187.000000,2.166700,142600.000000\n",
- "-118.340000,34.110000,51.000000,937.000000,348.000000,527.000000,333.000000,4.357100,468800.000000\n",
- "-122.310000,37.560000,45.000000,1685.000000,321.000000,815.000000,314.000000,4.295500,309700.000000\n",
- "-118.360000,34.210000,41.000000,337.000000,65.000000,198.000000,50.000000,1.892900,152900.000000\n",
- "-122.450000,37.710000,45.000000,2253.000000,431.000000,1382.000000,392.000000,4.256200,221600.000000\n",
- "-118.680000,34.130000,9.000000,11251.000000,1594.000000,3029.000000,1227.000000,6.727300,500001.000000\n",
- "-119.640000,36.850000,15.000000,2397.000000,353.000000,1258.000000,347.000000,4.990400,157300.000000\n",
- "-122.160000,37.760000,45.000000,2299.000000,514.000000,1437.000000,484.000000,2.512200,95500.000000\n",
- "-117.990000,33.670000,19.000000,3808.000000,790.000000,1776.000000,756.000000,4.625000,282200.000000\n",
- "-121.830000,37.400000,27.000000,1145.000000,150.000000,492.000000,160.000000,5.716000,348300.000000\n",
- "-118.190000,35.050000,14.000000,2992.000000,573.000000,1631.000000,526.000000,3.745200,83200.000000\n",
- "-118.030000,33.770000,24.000000,3810.000000,579.000000,1818.000000,590.000000,5.805300,255900.000000\n",
- "-122.260000,37.820000,22.000000,3682.000000,1270.000000,2024.000000,1250.000000,1.218500,170000.000000\n",
- "-118.370000,33.930000,46.000000,442.000000,88.000000,255.000000,94.000000,4.447400,246900.000000\n",
- "-118.220000,34.050000,43.000000,1153.000000,411.000000,1667.000000,409.000000,1.940200,139300.000000\n",
- "-122.490000,37.680000,34.000000,3718.000000,676.000000,2510.000000,632.000000,5.331100,270800.000000\n",
- "-116.510000,33.840000,16.000000,980.000000,193.000000,454.000000,185.000000,4.072900,100000.000000\n",
- "-121.880000,37.660000,29.000000,2702.000000,680.000000,1360.000000,642.000000,3.112700,233000.000000\n",
- "-122.440000,37.800000,52.000000,2869.000000,594.000000,500.000000,335.000000,5.037600,500001.000000\n",
- "-121.340000,38.050000,16.000000,667.000000,92.000000,267.000000,90.000000,5.614700,244700.000000\n",
- "-117.870000,33.840000,16.000000,1545.000000,354.000000,730.000000,350.000000,4.511200,139000.000000\n",
- "-122.280000,37.890000,52.000000,2315.000000,408.000000,835.000000,369.000000,4.589300,290100.000000\n",
- "-121.830000,37.990000,18.000000,2741.000000,449.000000,1507.000000,460.000000,4.756600,142500.000000\n",
- "-119.530000,36.650000,43.000000,1676.000000,320.000000,1056.000000,276.000000,2.556200,93200.000000\n",
- "-117.390000,34.090000,10.000000,5736.000000,945.000000,3528.000000,932.000000,4.395800,130700.000000\n",
- "-118.230000,33.900000,45.000000,1285.000000,238.000000,840.000000,211.000000,3.410700,112500.000000\n",
- "-121.320000,38.670000,21.000000,3455.000000,706.000000,1605.000000,704.000000,3.138200,91600.000000\n",
- "-118.330000,34.050000,46.000000,3015.000000,795.000000,2300.000000,725.000000,2.070600,268500.000000\n",
- "-122.210000,37.840000,44.000000,3424.000000,597.000000,1358.000000,597.000000,6.019400,292300.000000\n",
- "-117.900000,34.530000,8.000000,3484.000000,647.000000,2169.000000,619.000000,3.976600,135800.000000\n",
- "-122.470000,37.510000,15.000000,4974.000000,764.000000,2222.000000,774.000000,6.760600,364300.000000\n",
- "-118.020000,33.770000,7.000000,586.000000,118.000000,232.000000,107.000000,5.207700,181300.000000\n",
- "-119.730000,34.430000,35.000000,2703.000000,654.000000,1383.000000,631.000000,4.527800,340400.000000\n",
- "-120.680000,35.140000,34.000000,3100.000000,617.000000,1155.000000,542.000000,3.093800,245900.000000\n",
- "-122.470000,38.290000,14.000000,3732.000000,846.000000,1277.000000,775.000000,2.565800,208000.000000\n",
- "-121.900000,37.350000,52.000000,1034.000000,239.000000,531.000000,223.000000,2.741100,227100.000000\n",
- "-121.870000,37.260000,17.000000,1051.000000,172.000000,446.000000,173.000000,5.665200,234500.000000\n",
- "-117.970000,33.890000,15.000000,3801.000000,542.000000,1992.000000,526.000000,9.068300,367400.000000\n",
- "-116.870000,33.910000,37.000000,1858.000000,361.000000,1632.000000,310.000000,2.753600,73100.000000\n",
- "-122.150000,37.470000,38.000000,1560.000000,301.000000,1331.000000,316.000000,3.052100,151500.000000\n",
- "-118.310000,34.010000,52.000000,2547.000000,475.000000,1417.000000,444.000000,1.821400,123200.000000\n",
- "-118.440000,34.040000,49.000000,32.000000,7.000000,14.000000,7.000000,2.187500,225000.000000\n",
- "-118.010000,33.850000,29.000000,2064.000000,447.000000,1265.000000,400.000000,3.886400,209300.000000\n",
- "-122.270000,41.200000,52.000000,4513.000000,985.000000,1926.000000,815.000000,1.592300,56000.000000\n",
- "-122.320000,37.560000,49.000000,2016.000000,299.000000,691.000000,288.000000,5.549000,500001.000000\n",
- "-119.770000,36.720000,43.000000,1763.000000,389.000000,1623.000000,390.000000,1.442700,47700.000000\n",
- "-122.140000,37.840000,24.000000,2131.000000,343.000000,874.000000,373.000000,5.634900,355600.000000\n",
- "-118.340000,34.090000,14.000000,3032.000000,999.000000,1691.000000,841.000000,2.200000,210000.000000\n",
- "-117.610000,34.340000,18.000000,5210.000000,912.000000,1301.000000,464.000000,4.862300,176900.000000\n",
- "-118.230000,33.760000,21.000000,49.000000,14.000000,29.000000,16.000000,5.000000,87500.000000\n",
- "-117.890000,33.770000,32.000000,2342.000000,570.000000,1445.000000,453.000000,4.195100,195000.000000\n",
- "-118.260000,33.910000,39.000000,967.000000,256.000000,903.000000,256.000000,1.903800,93100.000000\n",
- "-118.400000,33.990000,39.000000,1613.000000,380.000000,1113.000000,356.000000,2.825000,276700.000000\n",
- "-117.140000,32.920000,15.000000,1558.000000,314.000000,949.000000,332.000000,5.286400,174400.000000\n",
- "-118.150000,33.770000,52.000000,2204.000000,498.000000,899.000000,445.000000,4.176500,393900.000000\n",
- "-118.590000,34.210000,17.000000,2737.000000,868.000000,2924.000000,785.000000,2.579700,183500.000000\n",
- "-121.370000,36.830000,14.000000,3658.000000,612.000000,1951.000000,600.000000,4.760000,216000.000000\n",
- "-120.480000,35.020000,17.000000,2721.000000,477.000000,1672.000000,492.000000,2.979800,204800.000000\n",
- "-118.440000,34.210000,41.000000,1440.000000,325.000000,1014.000000,322.000000,2.875000,168600.000000\n",
- "-122.320000,38.330000,17.000000,851.000000,118.000000,370.000000,123.000000,5.087700,209300.000000\n",
- "-121.870000,37.280000,21.000000,3305.000000,749.000000,2459.000000,701.000000,3.968800,249600.000000\n",
- "-117.100000,33.070000,16.000000,2402.000000,336.000000,1080.000000,365.000000,8.680300,347300.000000\n",
- "-118.030000,33.760000,25.000000,4650.000000,849.000000,2503.000000,790.000000,5.742000,221900.000000\n",
- "-122.400000,37.730000,48.000000,1489.000000,326.000000,1115.000000,356.000000,2.636400,199300.000000\n",
- "-118.340000,34.120000,41.000000,3257.000000,679.000000,1237.000000,638.000000,4.241500,409600.000000\n",
- "-121.040000,39.240000,48.000000,1188.000000,227.000000,471.000000,219.000000,2.312500,125700.000000\n",
- "-117.970000,33.910000,19.000000,8096.000000,1318.000000,3853.000000,1313.000000,6.007600,269500.000000\n",
- "-117.100000,32.680000,45.000000,1183.000000,289.000000,900.000000,266.000000,2.494300,99600.000000\n",
- "-116.610000,33.930000,35.000000,321.000000,71.000000,157.000000,61.000000,2.805600,68100.000000\n",
- "-118.390000,34.080000,27.000000,6605.000000,1710.000000,2665.000000,1520.000000,3.808800,500001.000000\n",
- "-121.230000,38.650000,19.000000,2926.000000,476.000000,1349.000000,480.000000,4.643700,212900.000000\n",
- "-122.200000,37.790000,29.000000,1640.000000,376.000000,939.000000,340.000000,2.832100,150000.000000\n",
- "-117.180000,32.830000,23.000000,2105.000000,525.000000,1218.000000,484.000000,3.375000,184100.000000\n",
- "-118.080000,33.770000,26.000000,2461.000000,562.000000,971.000000,544.000000,2.194400,87500.000000\n",
- "-120.450000,34.660000,7.000000,3329.000000,504.000000,1462.000000,452.000000,4.787500,198300.000000\n",
- "-117.820000,33.680000,4.000000,1346.000000,213.000000,603.000000,219.000000,8.797400,360600.000000\n",
- "-121.920000,36.610000,27.000000,1619.000000,352.000000,831.000000,344.000000,4.300000,226400.000000\n",
- "-122.010000,37.530000,19.000000,4572.000000,712.000000,2346.000000,709.000000,6.066700,245700.000000\n",
- "-118.270000,33.950000,34.000000,987.000000,248.000000,902.000000,221.000000,2.336500,98000.000000\n",
- "-119.960000,38.940000,27.000000,1492.000000,393.000000,717.000000,254.000000,1.890600,104200.000000\n",
- "-121.420000,36.570000,13.000000,2685.000000,621.000000,2474.000000,573.000000,2.877500,134100.000000\n",
- "-120.960000,37.660000,15.000000,2485.000000,434.000000,1296.000000,434.000000,3.854200,145200.000000\n",
- "-118.650000,34.200000,23.000000,7480.000000,1084.000000,3037.000000,1058.000000,6.922300,338400.000000\n",
- "-122.310000,38.000000,29.000000,3108.000000,534.000000,1687.000000,516.000000,4.333300,170800.000000\n",
- "-118.350000,34.070000,48.000000,890.000000,255.000000,434.000000,232.000000,3.611100,450000.000000\n",
- "-118.190000,33.790000,29.000000,3497.000000,1096.000000,2994.000000,919.000000,1.810900,137500.000000\n",
- "-122.140000,37.410000,35.000000,2419.000000,426.000000,949.000000,433.000000,6.458800,437100.000000\n",
- "-119.810000,36.710000,25.000000,1026.000000,221.000000,789.000000,183.000000,1.562500,52800.000000\n",
- "-117.180000,32.680000,29.000000,1539.000000,344.000000,556.000000,289.000000,3.250000,500001.000000\n",
- "-117.770000,34.080000,27.000000,5929.000000,932.000000,2817.000000,828.000000,6.043400,214800.000000\n",
- "-118.110000,33.860000,33.000000,2389.000000,410.000000,1229.000000,393.000000,5.388900,234900.000000\n",
- "-118.280000,34.090000,52.000000,1739.000000,464.000000,938.000000,482.000000,2.442900,228800.000000\n",
- "-117.930000,34.040000,30.000000,1336.000000,239.000000,905.000000,253.000000,4.885400,178100.000000\n",
- "-117.050000,32.760000,37.000000,4879.000000,906.000000,2076.000000,871.000000,3.662500,154800.000000\n",
- "-118.250000,33.870000,18.000000,6812.000000,1263.000000,3704.000000,1216.000000,4.250000,169200.000000\n",
- "-122.410000,37.780000,52.000000,254.000000,72.000000,153.000000,29.000000,3.862500,350000.000000\n",
- "-119.720000,34.470000,34.000000,3262.000000,533.000000,1265.000000,502.000000,5.841100,381800.000000\n",
- "-118.120000,34.150000,22.000000,1671.000000,480.000000,1005.000000,443.000000,3.011900,171400.000000\n",
- "-122.210000,37.830000,40.000000,4991.000000,674.000000,1616.000000,654.000000,7.554400,411500.000000\n",
- "-119.380000,36.560000,14.000000,3965.000000,804.000000,1945.000000,733.000000,2.690600,95300.000000\n",
- "-118.380000,34.280000,22.000000,4428.000000,825.000000,3152.000000,836.000000,4.793200,166300.000000\n",
- "-117.340000,34.120000,26.000000,1008.000000,164.000000,568.000000,196.000000,3.351600,105600.000000\n",
- "-122.060000,37.390000,22.000000,1236.000000,290.000000,413.000000,274.000000,3.687500,40000.000000\n",
- "-118.460000,34.070000,49.000000,2418.000000,301.000000,850.000000,318.000000,14.286700,500001.000000\n",
- "-117.900000,34.150000,21.000000,2056.000000,461.000000,1332.000000,429.000000,3.394200,212800.000000\n",
- "-123.470000,39.800000,18.000000,2130.000000,545.000000,863.000000,346.000000,2.357100,79200.000000\n",
- "-121.910000,37.250000,31.000000,1944.000000,343.000000,975.000000,334.000000,4.920500,240500.000000\n",
- "-122.320000,38.320000,22.000000,2483.000000,528.000000,1478.000000,492.000000,4.087800,164400.000000\n",
- "-118.140000,33.880000,30.000000,2596.000000,580.000000,1662.000000,539.000000,4.050700,179500.000000\n",
- "-117.820000,33.810000,25.000000,2662.000000,402.000000,1247.000000,401.000000,5.439500,244000.000000\n",
- "-118.270000,34.070000,38.000000,1270.000000,556.000000,1692.000000,450.000000,1.870000,170800.000000\n",
- "-117.440000,33.950000,31.000000,914.000000,177.000000,556.000000,161.000000,3.734400,115300.000000\n",
- "-118.100000,34.070000,36.000000,1240.000000,349.000000,1383.000000,338.000000,2.493100,170300.000000\n",
- "-121.830000,37.370000,43.000000,1461.000000,284.000000,800.000000,258.000000,3.227900,182400.000000\n",
- "-120.900000,35.330000,16.000000,1576.000000,287.000000,595.000000,262.000000,3.588000,266300.000000\n",
- "-121.750000,36.920000,48.000000,1801.000000,353.000000,1071.000000,361.000000,3.600000,194500.000000\n",
- "-117.910000,33.650000,24.000000,885.000000,321.000000,590.000000,254.000000,2.625000,217900.000000\n",
- "-117.200000,32.800000,33.000000,2573.000000,436.000000,1084.000000,443.000000,4.241700,294100.000000\n",
- "-118.230000,34.180000,43.000000,1708.000000,280.000000,768.000000,276.000000,6.207000,457400.000000\n",
- "-118.320000,33.930000,34.000000,1536.000000,273.000000,804.000000,287.000000,4.961500,157800.000000\n",
- "-117.760000,34.120000,16.000000,9020.000000,1509.000000,3575.000000,1486.000000,4.241500,275700.000000\n",
- "-118.450000,34.230000,25.000000,4393.000000,1369.000000,3781.000000,1267.000000,2.583300,183700.000000\n",
- "-122.450000,41.280000,15.000000,2740.000000,503.000000,1188.000000,445.000000,3.451900,128800.000000\n",
- "-118.330000,34.010000,43.000000,2227.000000,564.000000,956.000000,472.000000,2.021700,187500.000000\n",
- "-124.160000,40.790000,46.000000,3042.000000,597.000000,1206.000000,541.000000,2.113500,90600.000000\n",
- "-118.140000,34.060000,37.000000,1339.000000,258.000000,706.000000,238.000000,4.756900,253800.000000\n",
- "-121.140000,38.770000,15.000000,10282.000000,1333.000000,3868.000000,1300.000000,6.478900,287800.000000\n",
- "-117.750000,33.830000,14.000000,2452.000000,296.000000,954.000000,275.000000,8.237500,388300.000000\n",
- "-122.120000,37.690000,30.000000,1197.000000,269.000000,695.000000,279.000000,3.437500,157800.000000\n",
- "-117.790000,34.070000,33.000000,1694.000000,333.000000,1689.000000,301.000000,3.758300,116300.000000\n",
- "-118.410000,34.090000,37.000000,2716.000000,302.000000,809.000000,291.000000,15.000100,500001.000000\n",
- "-118.530000,34.440000,19.000000,1285.000000,195.000000,650.000000,193.000000,6.039800,217800.000000\n",
- "-120.780000,38.740000,28.000000,4236.000000,877.000000,2008.000000,881.000000,2.160300,111300.000000\n",
- "-122.350000,37.580000,26.000000,854.000000,246.000000,396.000000,231.000000,2.839300,375000.000000\n",
- "-119.720000,36.820000,15.000000,946.000000,239.000000,550.000000,246.000000,2.263900,52500.000000\n",
- "-118.140000,34.010000,42.000000,1973.000000,510.000000,1841.000000,502.000000,2.532600,156500.000000\n",
- "-117.120000,32.750000,25.000000,2222.000000,634.000000,1025.000000,568.000000,1.640000,130000.000000\n",
- "-117.900000,34.130000,37.000000,1801.000000,422.000000,1564.000000,425.000000,3.159700,133000.000000\n",
- "-117.390000,33.690000,5.000000,6529.000000,997.000000,3464.000000,1006.000000,5.327500,168700.000000\n",
- "-122.450000,40.610000,17.000000,785.000000,155.000000,417.000000,136.000000,2.328900,58200.000000\n",
- "-117.120000,34.210000,19.000000,4641.000000,994.000000,1334.000000,474.000000,4.597200,123900.000000\n",
- "-122.760000,38.460000,14.000000,4742.000000,756.000000,2149.000000,732.000000,4.515200,199200.000000\n",
- "-118.190000,34.120000,46.000000,3387.000000,820.000000,2833.000000,813.000000,2.987000,176900.000000\n",
- "-118.310000,34.060000,36.000000,369.000000,147.000000,145.000000,136.000000,0.880400,450000.000000\n",
- "-122.340000,37.950000,45.000000,1128.000000,240.000000,702.000000,270.000000,3.671900,134100.000000\n",
- "-118.220000,34.660000,17.000000,3810.000000,662.000000,1867.000000,586.000000,4.900000,152400.000000\n",
- "-118.290000,34.050000,40.000000,907.000000,349.000000,1426.000000,323.000000,1.857100,143800.000000\n",
- "-117.960000,33.870000,37.000000,1785.000000,360.000000,1155.000000,403.000000,4.798400,175800.000000\n",
- "-119.570000,34.380000,22.000000,2512.000000,426.000000,919.000000,341.000000,5.759000,425000.000000\n",
- "-118.280000,33.750000,41.000000,1305.000000,381.000000,1384.000000,369.000000,2.450000,186800.000000\n",
- "-121.890000,38.010000,32.000000,1000.000000,188.000000,663.000000,212.000000,4.097200,99200.000000\n",
- "-118.130000,34.160000,52.000000,1872.000000,357.000000,984.000000,364.000000,4.000000,250400.000000\n",
- "-118.040000,34.180000,37.000000,3134.000000,532.000000,1220.000000,508.000000,5.286500,455400.000000\n",
- "-123.220000,39.160000,32.000000,1149.000000,187.000000,499.000000,208.000000,3.658700,154600.000000\n",
- "-120.690000,38.440000,13.000000,1473.000000,265.000000,597.000000,228.000000,4.291700,121300.000000\n",
- "-118.040000,33.800000,33.000000,2685.000000,466.000000,1359.000000,476.000000,5.026100,245100.000000\n",
- "-119.800000,36.730000,45.000000,925.000000,231.000000,797.000000,228.000000,1.701100,44800.000000\n",
- "-117.490000,33.910000,17.000000,5364.000000,1020.000000,3754.000000,936.000000,3.285700,139100.000000\n",
- "-118.340000,34.010000,37.000000,4291.000000,1102.000000,1941.000000,953.000000,1.794500,106300.000000\n",
- "-118.370000,34.190000,41.000000,2924.000000,867.000000,2751.000000,836.000000,2.100000,171600.000000\n",
- "-117.270000,34.450000,8.000000,6463.000000,1095.000000,3213.000000,1031.000000,3.221500,108800.000000\n",
- "-120.450000,34.870000,4.000000,1533.000000,221.000000,545.000000,191.000000,7.569600,328700.000000\n",
- "-122.320000,37.520000,26.000000,4042.000000,591.000000,1611.000000,578.000000,8.469300,419200.000000\n",
- "-121.420000,38.490000,17.000000,13180.000000,2444.000000,7235.000000,2335.000000,3.363000,103000.000000\n",
- "-115.570000,32.780000,29.000000,2321.000000,367.000000,1173.000000,360.000000,4.037500,86400.000000\n",
- "-118.470000,33.990000,52.000000,2167.000000,622.000000,1095.000000,570.000000,2.851400,358700.000000\n",
- "-118.270000,33.960000,42.000000,796.000000,203.000000,697.000000,177.000000,2.037000,92600.000000\n",
- "-118.050000,33.900000,41.000000,550.000000,129.000000,642.000000,125.000000,1.875000,119900.000000\n",
- "-118.960000,35.400000,28.000000,4667.000000,875.000000,2404.000000,841.000000,3.232500,89000.000000\n",
- "-117.130000,32.980000,5.000000,2276.000000,311.000000,1158.000000,317.000000,6.432100,271900.000000\n",
- "-122.040000,37.610000,36.000000,1151.000000,216.000000,727.000000,215.000000,4.171900,187000.000000\n",
- "-116.580000,33.090000,36.000000,992.000000,224.000000,334.000000,126.000000,3.008900,134400.000000\n",
- "-121.980000,38.250000,4.000000,2487.000000,440.000000,1545.000000,452.000000,4.910300,140400.000000\n",
- "-122.300000,37.920000,32.000000,3943.000000,605.000000,1524.000000,614.000000,6.067700,321600.000000\n",
- "-121.570000,39.480000,15.000000,202.000000,54.000000,145.000000,40.000000,0.825200,42500.000000\n",
- "-118.090000,33.920000,36.000000,847.000000,185.000000,713.000000,194.000000,4.854200,167400.000000\n",
- "-117.710000,33.610000,25.000000,3004.000000,718.000000,891.000000,626.000000,2.395000,80300.000000\n",
- "-118.210000,33.900000,41.000000,941.000000,233.000000,973.000000,253.000000,1.958300,102300.000000\n",
- "-118.290000,34.170000,52.000000,1732.000000,305.000000,875.000000,311.000000,4.325000,292600.000000\n",
- "-118.950000,35.400000,23.000000,4483.000000,894.000000,2136.000000,883.000000,3.687500,101700.000000\n",
- "-117.410000,34.230000,17.000000,889.000000,131.000000,439.000000,141.000000,6.142600,155000.000000\n",
- "-121.920000,36.570000,42.000000,3944.000000,738.000000,1374.000000,598.000000,4.174000,394400.000000\n",
- "-121.640000,39.150000,15.000000,2659.000000,396.000000,1159.000000,407.000000,5.234000,124900.000000\n",
- "-120.920000,37.630000,39.000000,45.000000,8.000000,22.000000,9.000000,1.767900,450000.000000\n",
- "-122.270000,37.840000,52.000000,1688.000000,337.000000,853.000000,325.000000,2.180600,99700.000000\n",
- "-118.270000,34.100000,51.000000,3149.000000,519.000000,1082.000000,510.000000,6.445900,421600.000000\n",
- "-121.810000,37.240000,21.000000,3250.000000,610.000000,1978.000000,568.000000,4.500000,234400.000000\n",
- "-114.620000,33.620000,26.000000,18.000000,3.000000,5.000000,3.000000,0.536000,275000.000000\n",
- "-118.090000,34.710000,5.000000,5807.000000,1182.000000,2602.000000,1007.000000,2.401200,159400.000000\n",
- "-118.200000,34.020000,48.000000,2230.000000,593.000000,2419.000000,598.000000,2.394400,130700.000000\n",
- "-119.620000,36.590000,17.000000,2287.000000,390.000000,1330.000000,393.000000,4.019700,88000.000000\n",
- "-118.410000,34.190000,42.000000,779.000000,145.000000,450.000000,148.000000,3.979200,193800.000000\n",
- "-118.300000,33.980000,48.000000,1998.000000,410.000000,1176.000000,382.000000,3.045500,102400.000000\n",
- "-117.330000,34.120000,38.000000,1703.000000,385.000000,1356.000000,363.000000,2.039100,70400.000000\n",
- "-118.500000,34.020000,28.000000,5109.000000,1482.000000,2313.000000,1451.000000,3.326600,483300.000000\n",
- "-118.070000,33.920000,36.000000,1560.000000,320.000000,1348.000000,314.000000,3.622000,174000.000000\n",
- "-117.130000,32.580000,27.000000,2511.000000,615.000000,1427.000000,576.000000,3.164500,156000.000000\n",
- "-117.270000,34.490000,7.000000,2344.000000,351.000000,846.000000,314.000000,4.736100,174500.000000\n",
- "-121.450000,38.600000,44.000000,2324.000000,413.000000,823.000000,375.000000,4.662500,158900.000000\n",
- "-121.980000,37.220000,46.000000,10088.000000,1910.000000,3728.000000,1781.000000,5.232100,500001.000000\n",
- "-120.310000,36.650000,24.000000,943.000000,209.000000,514.000000,156.000000,2.250000,76600.000000\n",
- "-117.950000,33.840000,32.000000,1378.000000,492.000000,1202.000000,448.000000,3.402800,183700.000000\n",
- "-119.700000,36.800000,34.000000,1768.000000,303.000000,888.000000,314.000000,3.808800,87700.000000\n",
- "-121.880000,37.430000,17.000000,3469.000000,896.000000,2762.000000,808.000000,3.388400,245800.000000\n",
- "-118.430000,34.260000,37.000000,1269.000000,348.000000,1835.000000,335.000000,3.258300,147200.000000\n",
- "-121.890000,37.350000,48.000000,1562.000000,439.000000,1469.000000,424.000000,2.567300,177500.000000\n",
- "-121.330000,38.040000,15.000000,2903.000000,440.000000,1325.000000,423.000000,4.517900,145600.000000\n",
- "-123.730000,39.170000,20.000000,4620.000000,1042.000000,1745.000000,794.000000,2.375000,158800.000000\n",
- "-118.040000,33.970000,34.000000,1759.000000,431.000000,1282.000000,391.000000,3.049100,158200.000000\n",
- "-118.150000,34.190000,48.000000,1854.000000,360.000000,1126.000000,382.000000,3.221600,161600.000000\n",
- "-118.110000,34.020000,17.000000,9559.000000,1911.000000,5279.000000,1844.000000,5.151500,318900.000000\n",
- "-121.200000,38.670000,10.000000,3875.000000,668.000000,1632.000000,593.000000,4.690200,171000.000000\n",
- "-118.390000,34.120000,29.000000,6447.000000,1012.000000,2184.000000,960.000000,8.281600,500001.000000\n",
- "-118.370000,34.060000,52.000000,2239.000000,423.000000,832.000000,411.000000,5.085800,470000.000000\n",
- "-118.520000,34.200000,35.000000,2891.000000,594.000000,1757.000000,581.000000,4.357100,199800.000000\n",
- "-118.370000,33.950000,52.000000,836.000000,175.000000,747.000000,166.000000,4.125000,174000.000000\n",
- "-121.340000,37.980000,8.000000,2628.000000,428.000000,1158.000000,393.000000,5.300200,191700.000000\n",
- "-119.320000,36.190000,11.000000,3136.000000,620.000000,2013.000000,583.000000,3.335000,69700.000000\n",
- "-117.840000,34.040000,4.000000,9959.000000,1544.000000,4904.000000,1429.000000,6.975400,402500.000000\n",
- "-118.230000,34.150000,19.000000,2294.000000,716.000000,1686.000000,680.000000,3.028800,258300.000000\n",
- "-115.520000,32.980000,21.000000,1302.000000,327.000000,1244.000000,316.000000,2.205400,66400.000000\n",
- "-117.790000,34.070000,34.000000,975.000000,192.000000,870.000000,183.000000,3.793300,116100.000000\n",
- "-115.590000,32.960000,17.000000,841.000000,146.000000,473.000000,154.000000,3.197900,113500.000000\n",
- "-121.830000,37.300000,17.000000,1299.000000,211.000000,825.000000,217.000000,4.500000,235800.000000\n",
- "-117.270000,34.500000,8.000000,3567.000000,543.000000,1133.000000,419.000000,5.373300,302600.000000\n",
- "-118.040000,33.930000,35.000000,1805.000000,387.000000,1505.000000,366.000000,4.166700,151900.000000\n",
- "-122.090000,37.950000,32.000000,1339.000000,209.000000,601.000000,209.000000,6.026500,247900.000000\n",
- "-122.230000,37.750000,50.000000,1542.000000,289.000000,654.000000,268.000000,3.963200,240000.000000\n",
- "-117.880000,33.720000,38.000000,1421.000000,300.000000,1236.000000,263.000000,3.984400,165300.000000\n",
- "-122.420000,37.750000,52.000000,2164.000000,533.000000,1122.000000,469.000000,3.263200,306000.000000\n",
- "-118.050000,34.140000,39.000000,2125.000000,295.000000,862.000000,303.000000,8.972800,500001.000000\n",
- "-118.060000,34.110000,36.000000,2178.000000,485.000000,914.000000,412.000000,2.765600,239500.000000\n",
- "-118.150000,33.870000,33.000000,2373.000000,552.000000,1673.000000,571.000000,3.068500,181800.000000\n",
- "-117.250000,32.760000,38.000000,2331.000000,493.000000,836.000000,433.000000,4.912500,452600.000000\n",
- "-117.860000,33.740000,34.000000,2254.000000,630.000000,2984.000000,625.000000,2.500000,162500.000000\n",
- "-122.530000,39.090000,11.000000,1264.000000,271.000000,370.000000,177.000000,1.300000,69700.000000\n",
- "-117.970000,33.680000,23.000000,1722.000000,316.000000,865.000000,309.000000,4.645200,273800.000000\n",
- "-118.060000,34.030000,36.000000,21.000000,7.000000,21.000000,9.000000,2.375000,175000.000000\n",
- "-117.820000,33.740000,25.000000,2720.000000,680.000000,1559.000000,631.000000,3.095800,137800.000000\n",
- "-121.800000,37.700000,22.000000,5533.000000,943.000000,2474.000000,910.000000,4.736100,216800.000000\n",
- "-121.730000,36.850000,22.000000,1304.000000,278.000000,887.000000,227.000000,3.660700,206300.000000\n",
- "-118.320000,33.860000,34.000000,495.000000,90.000000,269.000000,93.000000,6.439100,252300.000000\n",
- "-118.280000,34.040000,24.000000,1283.000000,545.000000,1932.000000,516.000000,1.296900,160200.000000\n",
- "-117.030000,32.950000,19.000000,4500.000000,815.000000,2456.000000,782.000000,4.503200,168900.000000\n",
- "-117.870000,33.830000,27.000000,2287.000000,353.000000,1140.000000,351.000000,5.616300,231000.000000\n",
- "-122.090000,37.650000,35.000000,1130.000000,192.000000,543.000000,184.000000,4.389700,190600.000000\n",
- "-117.600000,34.030000,16.000000,1499.000000,232.000000,918.000000,239.000000,5.567700,175400.000000\n",
- "-121.460000,38.610000,43.000000,1111.000000,269.000000,613.000000,290.000000,1.291700,66300.000000\n",
- "-117.960000,34.530000,10.000000,2907.000000,559.000000,1681.000000,531.000000,3.859400,141000.000000\n",
- "-116.460000,33.790000,10.000000,6960.000000,1487.000000,1130.000000,661.000000,2.141100,136400.000000\n",
- "-118.540000,34.370000,27.000000,2051.000000,301.000000,917.000000,287.000000,7.605900,323700.000000\n",
- "-122.160000,37.450000,52.000000,1135.000000,219.000000,441.000000,200.000000,7.541800,492000.000000\n",
- "-117.710000,34.060000,27.000000,2127.000000,628.000000,1970.000000,534.000000,1.472200,91300.000000\n",
- "-118.290000,34.030000,42.000000,907.000000,378.000000,822.000000,288.000000,1.287500,179200.000000\n",
- "-118.180000,33.900000,32.000000,1452.000000,365.000000,1888.000000,366.000000,3.546100,146400.000000\n",
- "-121.360000,38.690000,13.000000,6850.000000,1400.000000,4251.000000,1421.000000,3.698900,93300.000000\n",
- "-122.370000,40.520000,18.000000,4547.000000,774.000000,2269.000000,766.000000,3.789600,98100.000000\n",
- "-122.410000,37.710000,49.000000,1852.000000,429.000000,1615.000000,447.000000,3.495000,217800.000000\n",
- "-118.530000,34.240000,24.000000,2718.000000,719.000000,3018.000000,644.000000,2.907600,275300.000000\n",
- "-121.880000,37.670000,16.000000,4070.000000,624.000000,1543.000000,577.000000,6.521400,311500.000000\n",
- "-120.090000,37.000000,11.000000,3761.000000,675.000000,2374.000000,673.000000,3.459800,74600.000000\n",
- "-117.100000,32.750000,17.000000,871.000000,379.000000,955.000000,351.000000,1.437500,96400.000000\n",
- "-119.640000,36.350000,30.000000,1765.000000,310.000000,746.000000,298.000000,2.812500,70200.000000\n",
- "-118.260000,33.970000,47.000000,1504.000000,374.000000,1168.000000,358.000000,1.462500,94200.000000\n",
- "-117.600000,33.910000,15.000000,1864.000000,271.000000,1006.000000,288.000000,7.237900,251000.000000\n",
- "-122.200000,39.510000,37.000000,2358.000000,413.000000,1060.000000,424.000000,2.833300,69700.000000\n",
- "-122.120000,37.690000,10.000000,2227.000000,560.000000,1140.000000,472.000000,2.397300,167300.000000\n",
- "-118.200000,33.970000,43.000000,825.000000,212.000000,820.000000,184.000000,1.889700,174300.000000\n",
- "-121.280000,38.140000,38.000000,2803.000000,500.000000,1223.000000,509.000000,4.119000,128800.000000\n",
- "-119.030000,34.230000,16.000000,5323.000000,795.000000,2493.000000,779.000000,5.676200,271300.000000\n",
- "-121.700000,38.100000,19.000000,4896.000000,1083.000000,2150.000000,905.000000,3.339800,89700.000000\n",
- "-117.960000,33.830000,30.000000,2838.000000,649.000000,1758.000000,593.000000,3.383100,197400.000000\n",
- "-120.700000,36.990000,32.000000,320.000000,73.000000,222.000000,78.000000,2.927100,87500.000000\n",
- "-122.390000,37.740000,45.000000,1462.000000,308.000000,924.000000,302.000000,2.176700,185300.000000\n",
- "-121.760000,38.410000,19.000000,686.000000,107.000000,348.000000,109.000000,3.930600,93800.000000\n",
- "-121.350000,38.660000,8.000000,3322.000000,805.000000,1694.000000,774.000000,2.701100,130700.000000\n",
- "-118.670000,34.280000,21.000000,4059.000000,598.000000,2133.000000,634.000000,5.694900,235300.000000\n",
- "-118.310000,34.100000,33.000000,766.000000,347.000000,918.000000,305.000000,1.705000,350000.000000\n",
- "-117.690000,34.040000,5.000000,4459.000000,896.000000,2028.000000,881.000000,4.009600,182600.000000\n",
- "-119.600000,36.580000,28.000000,1452.000000,300.000000,919.000000,308.000000,2.828700,73100.000000\n",
- "-121.760000,36.750000,21.000000,1141.000000,257.000000,671.000000,195.000000,3.842400,155700.000000\n",
- "-117.940000,33.860000,35.000000,1235.000000,227.000000,875.000000,220.000000,4.696400,183100.000000\n",
- "-120.860000,37.770000,28.000000,1208.000000,232.000000,535.000000,232.000000,2.352300,94700.000000\n",
- "-121.840000,37.350000,22.000000,2914.000000,768.000000,2962.000000,762.000000,2.203100,164000.000000\n",
- "-121.070000,38.900000,52.000000,1280.000000,281.000000,523.000000,266.000000,1.737500,122200.000000\n",
- "-118.450000,33.960000,24.000000,3097.000000,791.000000,1075.000000,639.000000,5.723000,500001.000000\n",
- "-118.290000,34.180000,52.000000,1602.000000,265.000000,667.000000,251.000000,5.049000,323500.000000\n",
- "-119.970000,36.440000,18.000000,1128.000000,237.000000,772.000000,220.000000,2.177100,39200.000000\n",
- "-121.930000,38.310000,25.000000,185.000000,32.000000,85.000000,32.000000,4.875000,250000.000000\n",
- "-118.200000,33.930000,38.000000,1626.000000,307.000000,1280.000000,295.000000,3.531300,146500.000000\n",
- "-122.180000,38.230000,21.000000,2475.000000,341.000000,812.000000,308.000000,7.258900,320400.000000\n",
- "-118.010000,34.140000,20.000000,3350.000000,831.000000,1816.000000,744.000000,2.835200,161700.000000\n",
- "-117.870000,34.130000,32.000000,1741.000000,373.000000,872.000000,333.000000,3.421900,194500.000000\n",
- "-118.530000,34.270000,32.000000,1931.000000,298.000000,948.000000,314.000000,5.384700,329200.000000\n",
- "-117.140000,32.800000,33.000000,2670.000000,435.000000,1256.000000,431.000000,3.941700,179800.000000\n",
- "-118.070000,34.170000,34.000000,4062.000000,597.000000,1525.000000,566.000000,7.858800,454800.000000\n",
- "-117.580000,33.880000,16.000000,1739.000000,478.000000,1235.000000,420.000000,2.296900,116100.000000\n",
- "-120.060000,36.970000,35.000000,1859.000000,428.000000,1208.000000,399.000000,1.404400,61700.000000\n",
- "-121.830000,38.430000,24.000000,1307.000000,314.000000,917.000000,291.000000,2.224400,98100.000000\n",
- "-122.480000,37.720000,45.000000,1405.000000,338.000000,733.000000,342.000000,4.111600,187500.000000\n",
- "-116.910000,32.750000,5.000000,8710.000000,1614.000000,4372.000000,1527.000000,4.781300,240900.000000\n",
- "-119.770000,36.740000,20.000000,1855.000000,519.000000,1091.000000,443.000000,1.554700,93900.000000\n",
- "-119.460000,36.910000,12.000000,2980.000000,495.000000,1184.000000,429.000000,3.914100,123900.000000\n",
- "-118.180000,33.910000,41.000000,1260.000000,299.000000,1535.000000,322.000000,3.013400,128100.000000\n",
- "-118.390000,34.060000,43.000000,1879.000000,397.000000,873.000000,382.000000,3.815800,500001.000000\n",
- "-118.220000,33.990000,4.000000,1849.000000,577.000000,1529.000000,418.000000,2.770800,186300.000000\n",
- "-116.990000,33.200000,17.000000,2980.000000,539.000000,1531.000000,505.000000,3.155300,250000.000000\n",
- "-117.160000,32.730000,52.000000,1863.000000,559.000000,906.000000,493.000000,1.920300,195800.000000\n",
- "-117.380000,33.980000,10.000000,642.000000,176.000000,462.000000,186.000000,2.152800,162500.000000\n",
- "-122.440000,38.340000,25.000000,3106.000000,715.000000,1262.000000,665.000000,1.948700,233500.000000\n",
- "-117.880000,33.920000,13.000000,3292.000000,727.000000,1565.000000,698.000000,5.457000,308800.000000\n",
- "-119.710000,34.440000,41.000000,2220.000000,367.000000,927.000000,355.000000,5.318400,376000.000000\n",
- "-119.060000,34.370000,32.000000,3885.000000,759.000000,2504.000000,736.000000,3.645300,201700.000000\n",
- "-121.910000,37.310000,16.000000,2962.000000,898.000000,1555.000000,795.000000,2.580400,216300.000000\n",
- "-121.560000,37.000000,20.000000,3976.000000,953.000000,3866.000000,950.000000,2.538700,160100.000000\n",
- "-122.490000,38.000000,26.000000,48.000000,8.000000,19.000000,8.000000,7.719700,400000.000000\n",
- "-118.330000,34.020000,45.000000,1667.000000,399.000000,928.000000,375.000000,1.878300,118200.000000\n",
- "-122.260000,37.510000,29.000000,3703.000000,1075.000000,1611.000000,1025.000000,2.707500,323800.000000\n",
- "-121.990000,37.830000,16.000000,2939.000000,380.000000,1177.000000,396.000000,8.083900,372000.000000\n",
- "-121.420000,37.740000,35.000000,796.000000,132.000000,313.000000,152.000000,3.150000,153200.000000\n",
- "-121.390000,38.610000,35.000000,2024.000000,359.000000,786.000000,364.000000,2.463200,156900.000000\n",
- "-122.420000,37.620000,36.000000,1017.000000,165.000000,407.000000,159.000000,4.800000,306800.000000\n",
- "-121.440000,38.480000,12.000000,4929.000000,1010.000000,2621.000000,870.000000,2.726200,109800.000000\n",
- "-117.480000,33.980000,20.000000,2451.000000,475.000000,1785.000000,456.000000,3.396600,115000.000000\n",
- "-122.050000,37.380000,24.000000,2424.000000,501.000000,1367.000000,507.000000,4.072000,364200.000000\n",
- "-123.920000,41.540000,22.000000,2920.000000,636.000000,1382.000000,499.000000,2.020200,71100.000000\n",
- "-119.010000,35.400000,11.000000,8739.000000,2190.000000,4781.000000,1919.000000,1.710900,44600.000000\n",
- "-122.330000,37.570000,43.000000,2543.000000,621.000000,1301.000000,606.000000,3.111100,318400.000000\n",
- "-120.990000,37.610000,39.000000,512.000000,132.000000,443.000000,127.000000,1.285700,60000.000000\n",
- "-121.960000,37.580000,15.000000,3575.000000,597.000000,1777.000000,559.000000,5.719200,283500.000000\n",
- "-121.580000,39.160000,33.000000,1897.000000,378.000000,888.000000,385.000000,2.111100,68700.000000\n",
- "-120.590000,38.530000,15.000000,432.000000,87.000000,208.000000,73.000000,3.612500,100000.000000\n",
- "-117.580000,33.870000,30.000000,701.000000,131.000000,356.000000,125.000000,3.291700,144300.000000\n",
- "-121.840000,39.750000,29.000000,4362.000000,1053.000000,2053.000000,1000.000000,1.728400,74500.000000\n",
- "-121.800000,36.690000,12.000000,3877.000000,914.000000,2274.000000,858.000000,3.423900,194800.000000\n",
- "-122.220000,37.810000,52.000000,2944.000000,536.000000,1034.000000,521.000000,5.350900,302100.000000\n",
- "-117.640000,33.450000,26.000000,1528.000000,234.000000,607.000000,218.000000,6.287100,325500.000000\n",
- "-120.420000,37.980000,18.000000,3059.000000,609.000000,1335.000000,581.000000,2.512900,115900.000000\n",
- "-118.300000,34.060000,47.000000,1390.000000,872.000000,2860.000000,827.000000,1.468000,137500.000000\n",
- "-122.250000,37.870000,52.000000,1204.000000,460.000000,2016.000000,477.000000,0.949000,350000.000000\n",
- "-120.270000,39.350000,11.000000,2520.000000,401.000000,397.000000,165.000000,4.665000,145600.000000\n",
- "-119.880000,36.930000,12.000000,3174.000000,520.000000,1590.000000,488.000000,4.534700,101200.000000\n",
- "-122.370000,37.580000,52.000000,2188.000000,361.000000,917.000000,357.000000,4.400000,500000.000000\n",
- "-117.820000,33.720000,24.000000,3260.000000,458.000000,1383.000000,442.000000,6.598700,272800.000000\n",
- "-118.220000,33.930000,30.000000,443.000000,170.000000,903.000000,189.000000,2.196400,125000.000000\n",
- "-120.970000,38.650000,9.000000,3707.000000,602.000000,1601.000000,555.000000,4.071400,300600.000000\n",
- "-122.060000,37.700000,33.000000,3906.000000,790.000000,1912.000000,770.000000,3.518700,209400.000000\n",
- "-118.230000,33.920000,32.000000,2698.000000,640.000000,1953.000000,613.000000,1.222200,107200.000000\n",
- "-117.340000,34.460000,9.000000,5983.000000,1122.000000,3515.000000,1064.000000,3.150500,102000.000000\n",
- "-119.240000,36.330000,9.000000,3289.000000,621.000000,1866.000000,631.000000,3.159900,95000.000000\n",
- "-122.180000,37.730000,42.000000,4074.000000,874.000000,2736.000000,780.000000,2.455000,82400.000000\n",
- "-118.200000,33.820000,43.000000,1758.000000,347.000000,954.000000,312.000000,5.260600,198900.000000\n",
- "-117.070000,32.810000,15.000000,2000.000000,402.000000,778.000000,369.000000,4.359400,224200.000000\n",
- "-122.250000,38.020000,16.000000,1803.000000,267.000000,946.000000,266.000000,5.700100,205100.000000\n",
- "-118.420000,34.310000,19.000000,6755.000000,1443.000000,4205.000000,1395.000000,3.958300,163200.000000\n",
- "-122.270000,37.850000,52.000000,1966.000000,347.000000,793.000000,331.000000,2.775000,152500.000000\n",
- "-117.920000,33.650000,28.000000,1087.000000,423.000000,807.000000,425.000000,0.970200,225400.000000\n",
- "-118.160000,34.130000,36.000000,4003.000000,647.000000,1337.000000,631.000000,7.723000,500001.000000\n",
- "-122.490000,37.690000,35.000000,2576.000000,443.000000,1273.000000,433.000000,4.739100,272800.000000\n",
- "-122.480000,38.310000,29.000000,2375.000000,560.000000,1124.000000,502.000000,2.327600,166200.000000\n",
- "-117.670000,34.020000,16.000000,3042.000000,524.000000,1516.000000,475.000000,4.890600,178500.000000\n",
- "-117.150000,32.910000,14.000000,1259.000000,238.000000,889.000000,247.000000,4.946400,174800.000000\n",
- "-118.340000,34.030000,46.000000,2437.000000,502.000000,1151.000000,477.000000,2.444400,134100.000000\n",
- "-121.540000,38.500000,15.000000,6093.000000,1051.000000,2415.000000,997.000000,4.207500,183600.000000\n",
- "-118.150000,33.970000,32.000000,1174.000000,373.000000,1758.000000,361.000000,2.426300,158100.000000\n",
- "-122.540000,38.140000,16.000000,4431.000000,603.000000,1659.000000,630.000000,7.541200,392100.000000\n",
- "-118.010000,33.880000,19.000000,1434.000000,391.000000,1088.000000,341.000000,3.369000,269600.000000\n",
- "-117.680000,35.620000,30.000000,2994.000000,741.000000,1481.000000,581.000000,2.145800,52400.000000\n",
- "-120.640000,35.260000,21.000000,3298.000000,716.000000,1862.000000,687.000000,2.150700,221500.000000\n",
- "-121.290000,38.100000,14.000000,1551.000000,297.000000,785.000000,281.000000,3.775000,163300.000000\n",
- "-120.190000,37.530000,25.000000,1470.000000,341.000000,706.000000,283.000000,1.761400,71300.000000\n",
- "-117.310000,34.100000,28.000000,2899.000000,755.000000,2406.000000,655.000000,1.520800,69500.000000\n",
- "-118.090000,33.870000,31.000000,3498.000000,728.000000,2098.000000,697.000000,3.983700,246000.000000\n",
- "-117.990000,34.120000,37.000000,1527.000000,331.000000,1504.000000,324.000000,3.285700,130100.000000\n",
- "-119.810000,34.470000,26.000000,4382.000000,618.000000,1728.000000,587.000000,7.473400,432200.000000\n",
- "-116.960000,33.520000,9.000000,2802.000000,471.000000,1155.000000,421.000000,4.125000,392100.000000\n",
- "-122.310000,37.570000,37.000000,1437.000000,305.000000,979.000000,331.000000,4.000000,273700.000000\n",
- "-117.390000,33.970000,52.000000,3307.000000,553.000000,1269.000000,529.000000,4.317600,136200.000000\n",
- "-118.510000,34.190000,38.000000,2182.000000,409.000000,1141.000000,379.000000,4.286500,221100.000000\n",
- "-117.300000,34.120000,34.000000,1127.000000,275.000000,971.000000,249.000000,2.058300,64800.000000\n",
- "-120.850000,37.510000,15.000000,1131.000000,285.000000,728.000000,281.000000,1.553100,93100.000000\n",
- "-121.310000,37.930000,21.000000,1556.000000,314.000000,1140.000000,304.000000,2.466700,81400.000000\n",
- "-118.160000,34.090000,33.000000,1515.000000,415.000000,1345.000000,346.000000,2.375000,175000.000000\n",
- "-118.030000,33.840000,30.000000,4781.000000,831.000000,2568.000000,797.000000,5.474600,226400.000000\n",
- "-119.880000,34.400000,25.000000,2741.000000,623.000000,2272.000000,624.000000,2.264700,216700.000000\n",
- "-118.570000,34.170000,35.000000,2072.000000,318.000000,908.000000,342.000000,6.092800,327300.000000\n",
- "-122.110000,37.140000,29.000000,3201.000000,640.000000,1722.000000,570.000000,4.459700,204100.000000\n",
- "-122.430000,37.760000,52.000000,2332.000000,434.000000,861.000000,406.000000,4.431800,437500.000000\n",
- "-118.270000,33.960000,38.000000,1126.000000,270.000000,999.000000,265.000000,0.549500,91700.000000\n",
- "-117.160000,33.760000,11.000000,4934.000000,929.000000,2508.000000,840.000000,2.625000,155400.000000\n",
- "-122.070000,37.890000,38.000000,2139.000000,343.000000,809.000000,340.000000,5.563600,268800.000000\n",
- "-117.090000,34.010000,37.000000,106.000000,18.000000,27.000000,12.000000,4.055600,131300.000000\n",
- "-122.310000,37.920000,12.000000,1895.000000,600.000000,983.000000,519.000000,2.500000,195800.000000\n",
- "-122.190000,37.730000,44.000000,1066.000000,253.000000,825.000000,244.000000,2.153800,79700.000000\n",
- "-117.000000,32.730000,17.000000,6050.000000,1143.000000,3424.000000,1131.000000,3.764700,127600.000000\n",
- "-117.210000,33.190000,21.000000,3765.000000,612.000000,1722.000000,593.000000,4.815200,218500.000000\n",
- "-118.260000,34.140000,51.000000,902.000000,320.000000,650.000000,334.000000,1.541700,268800.000000\n",
- "-122.100000,37.360000,35.000000,2063.000000,266.000000,676.000000,252.000000,8.529400,500001.000000\n",
- "-121.860000,36.600000,33.000000,1409.000000,307.000000,633.000000,290.000000,3.556800,191200.000000\n",
- "-117.240000,33.110000,10.000000,3487.000000,545.000000,1410.000000,557.000000,6.033600,240300.000000\n",
- "-116.370000,33.720000,19.000000,6190.000000,1355.000000,2242.000000,1043.000000,3.002100,152300.000000\n",
- "-121.320000,38.410000,17.000000,4401.000000,655.000000,1970.000000,639.000000,5.823900,247500.000000\n",
- "-118.700000,34.280000,27.000000,3536.000000,646.000000,1837.000000,580.000000,4.496400,238300.000000\n",
- "-118.150000,33.950000,31.000000,1053.000000,230.000000,686.000000,211.000000,4.000000,263200.000000\n",
- "-118.300000,33.730000,47.000000,2852.000000,603.000000,1130.000000,560.000000,4.194000,293900.000000\n",
- "-118.520000,34.190000,37.000000,1892.000000,347.000000,1039.000000,343.000000,4.829500,212100.000000\n",
- "-118.220000,33.990000,6.000000,1499.000000,437.000000,1754.000000,447.000000,4.316400,143200.000000\n",
- "-122.410000,37.650000,32.000000,3436.000000,868.000000,2583.000000,817.000000,3.503900,232400.000000\n",
- "-122.300000,37.890000,46.000000,1520.000000,402.000000,815.000000,375.000000,2.803600,211600.000000\n",
- "-121.430000,38.560000,50.000000,1533.000000,288.000000,532.000000,257.000000,2.541700,125900.000000\n",
- "-117.230000,32.860000,16.000000,1200.000000,468.000000,648.000000,443.000000,3.045000,100000.000000\n",
- "-117.230000,32.790000,23.000000,2578.000000,665.000000,989.000000,622.000000,3.548400,238000.000000\n",
- "-117.160000,32.720000,52.000000,788.000000,463.000000,805.000000,391.000000,0.914200,162500.000000\n",
- "-122.410000,37.660000,34.000000,1075.000000,318.000000,906.000000,294.000000,3.005200,242500.000000\n",
- "-117.230000,32.730000,36.000000,2052.000000,287.000000,699.000000,265.000000,7.555700,441400.000000\n",
- "-118.330000,34.000000,47.000000,1671.000000,388.000000,895.000000,317.000000,2.205400,121500.000000\n",
- "-117.430000,33.550000,8.000000,446.000000,62.000000,188.000000,68.000000,9.435600,465600.000000\n",
- "-118.360000,34.080000,52.000000,1965.000000,480.000000,794.000000,451.000000,3.282400,304800.000000\n",
- "-121.090000,38.970000,13.000000,1467.000000,221.000000,688.000000,231.000000,5.253600,191900.000000\n",
- "-119.450000,35.150000,33.000000,5050.000000,964.000000,2293.000000,919.000000,3.159200,75400.000000\n",
- "-121.270000,38.640000,22.000000,1597.000000,280.000000,657.000000,273.000000,4.309800,213500.000000\n",
- "-118.000000,33.900000,35.000000,1758.000000,309.000000,972.000000,338.000000,4.383100,209800.000000\n",
- "-118.210000,34.050000,45.000000,2146.000000,607.000000,2868.000000,625.000000,2.121000,144000.000000\n",
- "-122.500000,37.770000,52.000000,2299.000000,441.000000,1252.000000,415.000000,5.056200,336700.000000\n",
- "-122.310000,37.920000,38.000000,1250.000000,236.000000,631.000000,279.000000,3.724000,220100.000000\n",
- "-118.300000,34.000000,40.000000,1131.000000,281.000000,859.000000,230.000000,1.180600,134600.000000\n",
- "-121.840000,38.020000,46.000000,66.000000,22.000000,37.000000,21.000000,0.536000,87500.000000\n",
- "-117.250000,32.800000,30.000000,2061.000000,631.000000,1007.000000,577.000000,2.581300,253100.000000\n",
- "-124.140000,40.600000,27.000000,1148.000000,206.000000,521.000000,219.000000,4.025000,128100.000000\n",
- "-118.180000,34.050000,52.000000,1070.000000,231.000000,925.000000,220.000000,1.825000,133000.000000\n",
- "-119.780000,36.800000,34.000000,3426.000000,623.000000,1938.000000,647.000000,2.899400,66000.000000\n",
- "-122.220000,38.080000,37.000000,2811.000000,539.000000,1574.000000,516.000000,3.105300,96700.000000\n",
- "-118.500000,34.260000,33.000000,2831.000000,510.000000,1340.000000,504.000000,4.831600,237300.000000\n",
- "-118.450000,34.180000,34.000000,1843.000000,442.000000,861.000000,417.000000,3.687500,246400.000000\n",
- "-119.790000,36.310000,25.000000,4984.000000,1029.000000,2414.000000,961.000000,2.293700,72300.000000\n",
- "-117.210000,32.740000,45.000000,3025.000000,583.000000,1980.000000,550.000000,2.298200,87500.000000\n",
- "-122.080000,40.640000,14.000000,3099.000000,519.000000,1447.000000,494.000000,4.013200,141200.000000\n",
- "-122.310000,37.520000,24.000000,2328.000000,335.000000,969.000000,354.000000,7.736400,435800.000000\n",
- "-119.740000,36.760000,36.000000,912.000000,216.000000,842.000000,219.000000,1.476600,52800.000000\n",
- "-118.280000,34.010000,52.000000,795.000000,308.000000,1118.000000,275.000000,1.217500,131300.000000\n",
- "-118.270000,34.110000,39.000000,3825.000000,916.000000,1378.000000,746.000000,4.409400,352600.000000\n",
- "-117.200000,33.160000,13.000000,4503.000000,1137.000000,3094.000000,1091.000000,2.315900,91600.000000\n",
- "-122.330000,37.530000,25.000000,1729.000000,383.000000,769.000000,352.000000,4.041700,458500.000000\n",
- "-120.860000,35.400000,21.000000,2787.000000,641.000000,1106.000000,501.000000,2.704300,186200.000000\n",
- "-119.470000,35.400000,32.000000,2167.000000,421.000000,1301.000000,394.000000,1.971800,69800.000000\n",
- "-117.270000,34.160000,32.000000,2894.000000,427.000000,1151.000000,446.000000,6.223600,159700.000000\n",
- "-121.920000,38.020000,8.000000,2750.000000,479.000000,1526.000000,484.000000,5.102000,156500.000000\n",
- "-121.450000,38.560000,51.000000,1250.000000,235.000000,452.000000,232.000000,2.625000,121200.000000\n",
- "-117.910000,33.840000,16.000000,919.000000,253.000000,912.000000,249.000000,1.590300,165400.000000\n",
- "-118.480000,35.610000,17.000000,4002.000000,930.000000,1614.000000,731.000000,1.623600,67300.000000\n",
- "-118.030000,33.840000,28.000000,3857.000000,857.000000,2328.000000,830.000000,4.015600,196000.000000\n",
- "-118.320000,34.040000,48.000000,1184.000000,328.000000,953.000000,311.000000,2.352600,156300.000000\n",
- "-121.300000,38.890000,23.000000,1750.000000,297.000000,1012.000000,315.000000,3.470600,99300.000000\n",
- "-117.690000,34.070000,34.000000,4055.000000,739.000000,2470.000000,753.000000,3.858600,136000.000000\n",
- "-118.340000,33.940000,36.000000,2796.000000,1041.000000,4033.000000,944.000000,2.488600,160700.000000\n",
- "-121.920000,36.620000,52.000000,2584.000000,599.000000,790.000000,444.000000,2.526300,286400.000000\n",
- "-122.110000,37.410000,27.000000,5110.000000,1599.000000,2764.000000,1482.000000,3.419800,351900.000000\n",
- "-117.650000,34.100000,44.000000,2808.000000,585.000000,1444.000000,550.000000,2.715900,139300.000000\n",
- "-121.800000,38.010000,44.000000,3184.000000,581.000000,1399.000000,548.000000,2.723400,110200.000000\n",
- "-122.660000,38.810000,22.000000,852.000000,176.000000,461.000000,142.000000,3.437500,83300.000000\n",
- "-122.390000,37.780000,3.000000,3464.000000,1179.000000,1441.000000,919.000000,4.710500,275000.000000\n",
- "-117.060000,34.870000,14.000000,3348.000000,619.000000,1756.000000,557.000000,3.598700,91400.000000\n",
- "-121.340000,38.660000,16.000000,3154.000000,860.000000,1837.000000,793.000000,1.980500,92900.000000\n",
- "-121.920000,36.950000,29.000000,3457.000000,699.000000,1327.000000,563.000000,3.659700,252300.000000\n",
- "-122.590000,38.040000,25.000000,3412.000000,455.000000,1238.000000,406.000000,8.364600,397300.000000\n",
- "-118.280000,34.110000,46.000000,1156.000000,203.000000,514.000000,213.000000,4.201900,352100.000000\n",
- "-121.390000,38.600000,22.000000,5773.000000,1320.000000,2607.000000,1250.000000,2.523800,118800.000000\n",
- "-122.330000,40.520000,23.000000,2801.000000,507.000000,1318.000000,454.000000,3.508100,116700.000000\n",
- "-118.200000,34.040000,47.000000,1894.000000,408.000000,1629.000000,379.000000,3.761900,127600.000000\n",
- "-121.960000,37.000000,20.000000,3847.000000,727.000000,1725.000000,737.000000,3.344700,305200.000000\n",
- "-117.890000,33.870000,32.000000,1569.000000,422.000000,835.000000,386.000000,3.046500,148900.000000\n",
- "-117.230000,32.880000,18.000000,5566.000000,1465.000000,6303.000000,1458.000000,1.858000,205000.000000\n",
- "-122.000000,37.120000,17.000000,4413.000000,672.000000,1674.000000,608.000000,6.977200,383300.000000\n",
- "-118.400000,34.280000,22.000000,3517.000000,810.000000,3134.000000,847.000000,2.665200,164800.000000\n",
- "-122.460000,37.760000,52.000000,2236.000000,545.000000,1186.000000,532.000000,3.453100,414300.000000\n",
- "-121.990000,37.540000,18.000000,3584.000000,715.000000,1673.000000,661.000000,3.944400,240100.000000\n",
- "-117.230000,32.740000,16.000000,735.000000,139.000000,299.000000,134.000000,4.635400,179200.000000\n",
- "-121.840000,37.290000,4.000000,2937.000000,648.000000,1780.000000,665.000000,4.385100,160400.000000\n",
- "-118.150000,34.860000,10.000000,4597.000000,1009.000000,2227.000000,821.000000,2.614900,83500.000000\n",
- "-118.330000,33.980000,38.000000,3063.000000,796.000000,2153.000000,721.000000,1.847200,149100.000000\n",
- "-120.680000,35.510000,17.000000,1701.000000,298.000000,941.000000,293.000000,4.321800,209100.000000\n",
- "-117.950000,33.790000,34.000000,2912.000000,520.000000,1625.000000,501.000000,4.466700,190600.000000\n",
- "-117.970000,34.050000,33.000000,1452.000000,268.000000,1274.000000,278.000000,3.656300,162700.000000\n",
- "-119.750000,36.870000,3.000000,13802.000000,2244.000000,5226.000000,1972.000000,5.094100,143700.000000\n",
- "-122.080000,37.350000,35.000000,1347.000000,207.000000,548.000000,189.000000,7.706800,500001.000000\n",
- "-122.320000,37.950000,36.000000,1425.000000,245.000000,573.000000,239.000000,4.350000,185000.000000\n",
- "-122.220000,38.100000,38.000000,931.000000,181.000000,566.000000,207.000000,3.022100,93300.000000\n",
- "-124.090000,40.550000,24.000000,2978.000000,553.000000,1370.000000,480.000000,2.764400,97300.000000\n",
- "-121.500000,38.570000,41.000000,1124.000000,344.000000,807.000000,316.000000,1.471200,94600.000000\n",
- "-118.110000,33.910000,19.000000,3056.000000,759.000000,1561.000000,740.000000,3.136900,196900.000000\n",
- "-121.230000,37.960000,37.000000,2351.000000,564.000000,1591.000000,549.000000,1.656300,57200.000000\n",
- "-121.890000,37.280000,35.000000,2418.000000,375.000000,988.000000,374.000000,6.093600,365400.000000\n",
- "-122.480000,37.650000,39.000000,3348.000000,666.000000,1817.000000,668.000000,4.259300,227400.000000\n",
- "-118.310000,34.090000,36.000000,2517.000000,842.000000,2446.000000,689.000000,2.152400,187500.000000\n",
- "-123.020000,38.810000,35.000000,956.000000,213.000000,488.000000,215.000000,3.025000,140600.000000\n",
- "-120.470000,34.650000,32.000000,2193.000000,430.000000,1074.000000,377.000000,2.333300,130200.000000\n",
- "-122.100000,37.680000,37.000000,2116.000000,503.000000,1109.000000,448.000000,2.535000,174000.000000\n",
- "-122.420000,37.790000,52.000000,3364.000000,1100.000000,2112.000000,1045.000000,2.134300,400000.000000\n",
- "-122.640000,41.630000,19.000000,2722.000000,479.000000,1108.000000,430.000000,3.106200,100000.000000\n",
- "-118.020000,33.910000,34.000000,2518.000000,429.000000,1309.000000,421.000000,4.786100,210700.000000\n",
- "-119.020000,35.360000,48.000000,1833.000000,396.000000,947.000000,363.000000,2.282700,70000.000000\n",
- "-121.330000,38.650000,23.000000,2446.000000,523.000000,1132.000000,513.000000,2.626600,198500.000000\n",
- "-118.080000,33.950000,32.000000,1962.000000,387.000000,1274.000000,398.000000,4.830400,160600.000000\n",
- "-118.080000,33.790000,34.000000,2840.000000,395.000000,1127.000000,396.000000,7.614400,376200.000000\n",
- "-118.230000,33.910000,27.000000,1694.000000,393.000000,1890.000000,373.000000,3.034100,89100.000000\n",
- "-118.290000,33.750000,37.000000,1319.000000,292.000000,766.000000,285.000000,2.703100,218900.000000\n",
- "-118.020000,34.130000,34.000000,1966.000000,319.000000,980.000000,297.000000,7.730700,429000.000000\n",
- "-117.890000,33.600000,36.000000,1496.000000,247.000000,441.000000,203.000000,7.816400,500001.000000\n",
- "-118.230000,34.650000,17.000000,1827.000000,348.000000,766.000000,335.000000,3.567300,136300.000000\n",
- "-118.310000,34.020000,45.000000,1423.000000,278.000000,822.000000,276.000000,2.451900,98100.000000\n",
- "-118.070000,33.800000,34.000000,3486.000000,507.000000,1311.000000,503.000000,7.122100,384500.000000\n",
- "-118.250000,33.940000,43.000000,1113.000000,378.000000,1305.000000,334.000000,1.143400,91300.000000\n",
- "-122.440000,37.710000,52.000000,2711.000000,591.000000,1848.000000,524.000000,3.956700,251500.000000\n",
- "-119.750000,34.500000,26.000000,3563.000000,579.000000,1479.000000,575.000000,5.952200,438400.000000\n",
- "-117.940000,33.940000,26.000000,1962.000000,540.000000,1236.000000,520.000000,2.215600,145000.000000\n",
- "-119.230000,34.170000,18.000000,6171.000000,1490.000000,2164.000000,1210.000000,3.687500,500001.000000\n",
- "-118.110000,34.680000,6.000000,7430.000000,1184.000000,3489.000000,1115.000000,5.326700,140100.000000\n",
- "-122.470000,37.770000,52.000000,2241.000000,443.000000,1042.000000,377.000000,4.163500,398400.000000\n",
- "-120.930000,35.760000,11.000000,8997.000000,1698.000000,1825.000000,756.000000,3.230000,154300.000000\n",
- "-118.140000,34.170000,52.000000,2667.000000,486.000000,1681.000000,504.000000,4.052400,173100.000000\n",
- "-122.730000,38.460000,14.000000,4042.000000,1298.000000,2323.000000,1158.000000,2.065100,135400.000000\n",
- "-117.060000,32.760000,37.000000,2356.000000,476.000000,1231.000000,499.000000,2.965000,155700.000000\n",
- "-120.710000,35.500000,12.000000,3098.000000,453.000000,1433.000000,434.000000,5.250800,292900.000000\n",
- "-118.310000,34.050000,35.000000,1692.000000,423.000000,1578.000000,406.000000,2.531300,305800.000000\n",
- "-119.700000,36.750000,11.000000,3626.000000,779.000000,1819.000000,731.000000,2.495600,87500.000000\n",
- "-121.340000,38.640000,17.000000,2761.000000,501.000000,1128.000000,482.000000,3.756200,139700.000000\n",
- "-117.910000,34.090000,20.000000,4327.000000,1037.000000,2296.000000,963.000000,3.044100,185400.000000\n",
- "-119.760000,36.790000,32.000000,2463.000000,468.000000,1261.000000,486.000000,3.328100,75100.000000\n",
- "-120.660000,35.490000,17.000000,4422.000000,945.000000,2307.000000,885.000000,2.828500,171300.000000\n",
- "-118.280000,34.080000,42.000000,1618.000000,522.000000,1454.000000,440.000000,3.160700,182000.000000\n",
- "-122.540000,37.900000,48.000000,2491.000000,460.000000,937.000000,455.000000,4.437500,370000.000000\n",
- "-117.590000,33.880000,13.000000,3239.000000,849.000000,2751.000000,813.000000,2.611100,107000.000000\n",
- "-120.470000,34.940000,17.000000,1368.000000,308.000000,642.000000,303.000000,1.863300,109400.000000\n",
- "-118.250000,33.930000,42.000000,819.000000,233.000000,899.000000,228.000000,1.134600,85400.000000\n",
- "-121.970000,37.290000,25.000000,4096.000000,743.000000,2027.000000,741.000000,5.329400,300300.000000\n",
- "-122.010000,36.970000,43.000000,2162.000000,509.000000,1208.000000,464.000000,2.541700,260900.000000\n",
- "-122.020000,37.600000,32.000000,1295.000000,295.000000,1097.000000,328.000000,3.238600,149600.000000\n",
- "-118.230000,34.090000,49.000000,1638.000000,456.000000,1500.000000,430.000000,2.692300,150000.000000\n",
- "-117.170000,34.280000,13.000000,4867.000000,718.000000,780.000000,250.000000,7.199700,253800.000000\n",
- "-122.330000,37.390000,52.000000,573.000000,102.000000,232.000000,92.000000,6.226300,500001.000000\n",
- "-117.910000,33.600000,37.000000,2088.000000,510.000000,673.000000,390.000000,5.104800,500001.000000\n",
- "-117.930000,33.860000,35.000000,931.000000,181.000000,516.000000,174.000000,5.586700,182500.000000\n",
- "-119.860000,34.420000,23.000000,1450.000000,642.000000,1258.000000,607.000000,1.179000,225000.000000\n",
- "-118.140000,34.060000,27.000000,5257.000000,1082.000000,3496.000000,1036.000000,3.390600,237200.000000\n",
- "-119.700000,36.300000,10.000000,956.000000,201.000000,693.000000,220.000000,2.289500,62000.000000\n",
- "-117.120000,34.100000,40.000000,96.000000,14.000000,46.000000,14.000000,3.270800,162500.000000\n",
- "-119.630000,34.420000,42.000000,1765.000000,263.000000,753.000000,260.000000,8.560800,500001.000000\n",
- "\n"
- ]
- }
- ],
- "source": [
- "with open(r'/Users/kaylielau/Downloads/python/05_src/data/slides_data/california_housing_test.csv', 'r') as f:\n",
- " print(f.read())"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 5,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "\"longitude\",\"latitude\",\"housing_median_age\",\"total_rooms\",\"total_bedrooms\",\"population\",\"households\",\"median_income\",\"median_house_value\"\n",
- "\n",
- "-122.050000,37.370000,27.000000,3885.000000,661.000000,1537.000000,606.000000,6.608500,344700.000000\n",
- "\n",
- "-118.300000,34.260000,43.000000,1510.000000,310.000000,809.000000,277.000000,3.599000,176500.000000\n",
- "\n",
- "-117.810000,33.780000,27.000000,3589.000000,507.000000,1484.000000,495.000000,5.793400,270500.000000\n",
- "\n",
- "-118.360000,33.820000,28.000000,67.000000,15.000000,49.000000,11.000000,6.135900,330000.000000\n",
- "\n"
- ]
- }
- ],
- "source": [
- "with open(r'/Users/kaylielau/Downloads/python/05_src/data/slides_data/california_housing_test.csv', 'r') as f:\n",
- " for i in range(5):\n",
- " print(f.readline())"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "['\"longitude\",\"latitude\",\"housing_median_age\",\"total_rooms\",\"total_bedrooms\",\"population\",\"households\",\"median_income\",\"median_house_value\"\\n', '-122.050000,37.370000,27.000000,3885.000000,661.000000,1537.000000,606.000000,6.608500,344700.000000\\n', '-118.300000,34.260000,43.000000,1510.000000,310.000000,809.000000,277.000000,3.599000,176500.000000\\n', '-117.810000,33.780000,27.000000,3589.000000,507.000000,1484.000000,495.000000,5.793400,270500.000000\\n', '-118.360000,33.820000,28.000000,67.000000,15.000000,49.000000,11.000000,6.135900,330000.000000\\n', '-119.670000,36.330000,19.000000,1241.000000,244.000000,850.000000,237.000000,2.937500,81700.000000\\n', '-119.560000,36.510000,37.000000,1018.000000,213.000000,663.000000,204.000000,1.663500,67000.000000\\n', '-121.430000,38.630000,43.000000,1009.000000,225.000000,604.000000,218.000000,1.664100,67000.000000\\n', '-120.650000,35.480000,19.000000,2310.000000,471.000000,1341.000000,441.000000,3.225000,166900.000000\\n', '-122.840000,38.400000,15.000000,3080.000000,617.000000,1446.000000,599.000000,3.669600,194400.000000\\n', '-118.020000,34.080000,31.000000,2402.000000,632.000000,2830.000000,603.000000,2.333300,164200.000000\\n', '-118.240000,33.980000,45.000000,972.000000,249.000000,1288.000000,261.000000,2.205400,125000.000000\\n', '-119.120000,35.850000,37.000000,736.000000,166.000000,564.000000,138.000000,2.416700,58300.000000\\n', '-121.930000,37.250000,36.000000,1089.000000,182.000000,535.000000,170.000000,4.690000,252600.000000\\n', '-117.030000,32.970000,16.000000,3936.000000,694.000000,1935.000000,659.000000,4.562500,231200.000000\\n', '-117.970000,33.730000,27.000000,2097.000000,325.000000,1217.000000,331.000000,5.712100,222500.000000\\n', '-117.990000,33.810000,42.000000,161.000000,40.000000,157.000000,50.000000,2.200000,153100.000000\\n', '-120.810000,37.530000,15.000000,570.000000,123.000000,189.000000,107.000000,1.875000,181300.000000\\n', '-121.200000,38.690000,26.000000,3077.000000,607.000000,1603.000000,595.000000,2.717400,137500.000000\\n', '-118.880000,34.210000,26.000000,1590.000000,196.000000,654.000000,199.000000,6.585100,300000.000000\\n', '-122.590000,38.010000,35.000000,8814.000000,1307.000000,3450.000000,1258.000000,6.172400,414300.000000\\n', '-122.150000,37.750000,40.000000,1445.000000,256.000000,849.000000,255.000000,3.891300,126300.000000\\n', '-121.370000,38.680000,36.000000,1775.000000,296.000000,937.000000,305.000000,3.178600,83400.000000\\n', '-118.160000,34.070000,47.000000,2994.000000,543.000000,1651.000000,561.000000,3.864400,241500.000000\\n', '-122.200000,37.790000,45.000000,2021.000000,528.000000,1410.000000,480.000000,2.778800,115400.000000\\n', '-117.280000,33.280000,13.000000,6131.000000,1040.000000,4049.000000,940.000000,3.815600,150700.000000\\n', '-118.030000,34.160000,36.000000,1401.000000,218.000000,667.000000,225.000000,7.161500,484700.000000\\n', '-122.420000,37.760000,52.000000,3587.000000,1030.000000,2259.000000,979.000000,2.540300,250000.000000\\n', '-118.390000,33.990000,32.000000,2612.000000,418.000000,1030.000000,402.000000,6.603000,369200.000000\\n', '-118.450000,34.070000,19.000000,4845.000000,1609.000000,3751.000000,1539.000000,1.583000,350000.000000\\n', '-118.480000,34.010000,30.000000,3078.000000,954.000000,1561.000000,901.000000,3.485200,425000.000000\\n', '-119.350000,36.330000,14.000000,1195.000000,220.000000,568.000000,229.000000,3.148600,105600.000000\\n', '-118.300000,33.910000,34.000000,1617.000000,493.000000,1530.000000,500.000000,2.618200,172600.000000\\n', '-121.130000,39.310000,17.000000,3442.000000,705.000000,1693.000000,619.000000,2.810200,128900.000000\\n', '-118.080000,34.550000,5.000000,16181.000000,2971.000000,8152.000000,2651.000000,4.523700,141800.000000\\n', '-118.320000,33.940000,38.000000,1067.000000,170.000000,499.000000,169.000000,4.638900,183800.000000\\n', '-118.110000,34.000000,33.000000,2886.000000,726.000000,2650.000000,728.000000,2.625000,178700.000000\\n', '-122.530000,37.970000,52.000000,1560.000000,451.000000,700.000000,419.000000,2.512500,270800.000000\\n', '-118.020000,33.920000,34.000000,1478.000000,251.000000,956.000000,277.000000,5.523800,185300.000000\\n', '-118.050000,33.930000,31.000000,894.000000,203.000000,883.000000,190.000000,3.677100,141500.000000\\n', '-119.010000,34.230000,11.000000,5785.000000,1035.000000,2760.000000,985.000000,4.693000,232200.000000\\n', '-119.320000,36.200000,15.000000,1562.000000,275.000000,961.000000,287.000000,3.423100,83300.000000\\n', '-116.920000,32.770000,16.000000,2770.000000,406.000000,1269.000000,429.000000,6.678300,275000.000000\\n', '-118.060000,34.150000,37.000000,1980.000000,226.000000,697.000000,226.000000,15.000100,500001.000000\\n', '-117.270000,34.090000,36.000000,848.000000,186.000000,737.000000,169.000000,0.983800,79300.000000\\n', '-118.230000,34.130000,48.000000,1308.000000,286.000000,835.000000,294.000000,4.289100,214800.000000\\n', '-117.240000,33.170000,4.000000,9998.000000,1874.000000,3925.000000,1672.000000,4.282600,237500.000000\\n', '-121.910000,37.440000,24.000000,1212.000000,251.000000,799.000000,242.000000,5.080800,212500.000000\\n', '-118.290000,33.940000,47.000000,1782.000000,338.000000,1003.000000,329.000000,2.539800,105700.000000\\n', '-121.350000,38.000000,6.000000,1649.000000,369.000000,732.000000,350.000000,3.423100,123800.000000\\n', '-117.990000,33.780000,19.000000,7399.000000,1698.000000,3554.000000,1593.000000,3.104900,173900.000000\\n', '-120.990000,37.700000,14.000000,9849.000000,1887.000000,4356.000000,1780.000000,3.587700,160900.000000\\n', '-119.420000,35.970000,21.000000,554.000000,121.000000,426.000000,122.000000,2.351600,47500.000000\\n', '-122.210000,37.800000,39.000000,2003.000000,500.000000,1109.000000,464.000000,3.068200,156500.000000\\n', '-118.170000,33.800000,26.000000,1589.000000,380.000000,883.000000,366.000000,3.531300,187500.000000\\n', '-117.900000,34.090000,39.000000,1726.000000,333.000000,892.000000,335.000000,4.340900,191800.000000\\n', '-117.990000,33.930000,36.000000,1287.000000,233.000000,779.000000,229.000000,4.852300,175800.000000\\n', '-121.420000,38.720000,10.000000,3054.000000,528.000000,1932.000000,510.000000,3.090300,91900.000000\\n', '-118.770000,34.260000,26.000000,3038.000000,468.000000,1825.000000,468.000000,5.638500,196900.000000\\n', '-121.930000,37.330000,44.000000,1449.000000,291.000000,676.000000,282.000000,3.575000,292200.000000\\n', '-121.820000,37.250000,16.000000,2650.000000,600.000000,1969.000000,586.000000,3.946100,194300.000000\\n', '-122.290000,37.560000,36.000000,805.000000,140.000000,445.000000,139.000000,5.822100,289400.000000\\n', '-121.780000,37.230000,18.000000,1747.000000,317.000000,1055.000000,285.000000,5.898000,229100.000000\\n', '-118.410000,34.000000,35.000000,1062.000000,305.000000,1026.000000,307.000000,2.715300,265500.000000\\n', '-121.670000,40.870000,31.000000,1581.000000,299.000000,776.000000,287.000000,2.906300,77800.000000\\n', '-118.000000,33.920000,26.000000,2830.000000,399.000000,1204.000000,404.000000,6.127300,289600.000000\\n', '-117.220000,32.730000,38.000000,3966.000000,768.000000,1640.000000,729.000000,3.840900,291400.000000\\n', '-121.080000,37.690000,19.000000,6473.000000,1212.000000,3559.000000,1123.000000,3.224600,129300.000000\\n', '-117.530000,33.920000,12.000000,2290.000000,319.000000,728.000000,228.000000,6.156100,233500.000000\\n', '-117.460000,34.080000,18.000000,3830.000000,750.000000,2767.000000,702.000000,3.660200,120700.000000\\n', '-117.970000,33.860000,35.000000,1691.000000,367.000000,1265.000000,378.000000,3.585500,174300.000000\\n', '-121.920000,37.330000,52.000000,2125.000000,382.000000,930.000000,387.000000,5.283100,299500.000000\\n', '-118.200000,34.040000,44.000000,1582.000000,544.000000,1998.000000,515.000000,1.688800,125000.000000\\n', '-118.060000,33.800000,22.000000,1892.000000,442.000000,1015.000000,404.000000,4.137900,212500.000000\\n', '-122.050000,37.360000,34.000000,2400.000000,419.000000,1017.000000,384.000000,4.136900,316900.000000\\n', '-123.790000,39.500000,24.000000,1421.000000,291.000000,588.000000,274.000000,2.325000,157300.000000\\n', '-120.790000,37.490000,44.000000,1186.000000,225.000000,687.000000,234.000000,3.416700,160700.000000\\n', '-121.890000,37.350000,47.000000,2879.000000,631.000000,2229.000000,606.000000,3.259900,183100.000000\\n', '-118.430000,34.200000,29.000000,3051.000000,694.000000,1942.000000,679.000000,3.111800,238100.000000\\n', '-118.750000,34.170000,18.000000,6217.000000,858.000000,2703.000000,834.000000,6.807500,325900.000000\\n', '-122.470000,37.990000,22.000000,7274.000000,1002.000000,2468.000000,957.000000,7.494000,439200.000000\\n', '-120.690000,37.400000,46.000000,860.000000,130.000000,496.000000,147.000000,3.516700,137500.000000\\n', '-118.280000,34.050000,44.000000,968.000000,384.000000,1805.000000,375.000000,1.480100,212500.000000\\n', '-118.440000,34.250000,35.000000,1583.000000,324.000000,1481.000000,351.000000,3.700000,176000.000000\\n', '-122.050000,38.260000,21.000000,7195.000000,1416.000000,3927.000000,1377.000000,3.091200,126300.000000\\n', '-121.990000,37.350000,18.000000,1712.000000,509.000000,972.000000,467.000000,4.397100,238900.000000\\n', '-121.020000,37.680000,28.000000,2875.000000,560.000000,1608.000000,558.000000,3.548900,106400.000000\\n', '-119.850000,36.740000,35.000000,1191.000000,190.000000,537.000000,182.000000,3.537500,96700.000000\\n', '-118.020000,34.080000,28.000000,2769.000000,631.000000,2452.000000,581.000000,2.607100,175900.000000\\n', '-123.520000,41.010000,17.000000,1564.000000,345.000000,517.000000,222.000000,2.154200,83800.000000\\n', '-122.400000,37.620000,44.000000,1619.000000,362.000000,1064.000000,335.000000,4.023800,224200.000000\\n', '-118.130000,34.150000,24.000000,1125.000000,341.000000,579.000000,321.000000,2.812500,141700.000000\\n', '-122.000000,37.980000,32.000000,1013.000000,169.000000,436.000000,173.000000,5.111800,226900.000000\\n', '-118.450000,34.250000,36.000000,1453.000000,270.000000,808.000000,275.000000,4.383900,204600.000000\\n', '-117.500000,33.870000,4.000000,6755.000000,1017.000000,2866.000000,850.000000,5.049300,239800.000000\\n', '-122.220000,37.840000,50.000000,2935.000000,473.000000,1031.000000,479.000000,7.500000,295200.000000\\n', '-119.820000,36.640000,30.000000,1694.000000,312.000000,1008.000000,321.000000,2.246600,96000.000000\\n', '-120.210000,36.770000,20.000000,1745.000000,348.000000,1093.000000,302.000000,2.319400,90600.000000\\n', '-120.970000,38.420000,16.000000,1748.000000,322.000000,4930.000000,287.000000,4.302900,121900.000000\\n', '-121.190000,38.870000,20.000000,3118.000000,500.000000,1405.000000,519.000000,6.000000,209400.000000\\n', '-118.200000,33.770000,52.000000,1375.000000,457.000000,1089.000000,317.000000,2.234400,200000.000000\\n', '-118.300000,34.020000,49.000000,2120.000000,483.000000,1522.000000,416.000000,1.850000,116800.000000\\n', '-122.230000,37.790000,43.000000,5963.000000,1344.000000,4367.000000,1231.000000,2.191700,112800.000000\\n', '-121.310000,38.620000,31.000000,3114.000000,430.000000,1121.000000,456.000000,6.244000,240000.000000\\n', '-117.250000,32.800000,35.000000,2281.000000,506.000000,1005.000000,496.000000,4.229600,275000.000000\\n', '-118.260000,33.990000,36.000000,2016.000000,505.000000,1807.000000,464.000000,1.690100,103500.000000\\n', '-119.390000,36.540000,34.000000,1590.000000,422.000000,1272.000000,407.000000,1.806800,59000.000000\\n', '-121.510000,38.520000,30.000000,3236.000000,588.000000,1167.000000,569.000000,4.097200,181400.000000\\n', '-119.180000,34.270000,6.000000,2307.000000,386.000000,910.000000,364.000000,5.215000,279500.000000\\n', '-118.180000,33.770000,30.000000,1418.000000,439.000000,720.000000,417.000000,2.637100,159400.000000\\n', '-122.430000,37.740000,52.000000,1514.000000,314.000000,724.000000,301.000000,5.329200,300900.000000\\n', '-117.930000,33.910000,24.000000,1698.000000,297.000000,676.000000,273.000000,5.201700,364600.000000\\n', '-124.160000,40.770000,35.000000,2141.000000,438.000000,1053.000000,434.000000,2.852900,85600.000000\\n', '-117.950000,33.630000,27.000000,2489.000000,481.000000,1082.000000,443.000000,5.877700,358800.000000\\n', '-118.050000,34.100000,36.000000,1606.000000,318.000000,889.000000,294.000000,4.793100,272600.000000\\n', '-116.970000,32.810000,19.000000,1573.000000,471.000000,844.000000,414.000000,2.142200,125000.000000\\n', '-118.850000,34.170000,42.000000,564.000000,96.000000,220.000000,81.000000,4.562500,318800.000000\\n', '-117.730000,33.630000,15.000000,2874.000000,592.000000,1382.000000,586.000000,5.513700,161800.000000\\n', '-122.070000,37.340000,30.000000,1851.000000,238.000000,631.000000,236.000000,10.100700,500001.000000\\n', '-117.180000,33.020000,15.000000,3540.000000,453.000000,1364.000000,425.000000,13.662300,500001.000000\\n', '-118.410000,34.000000,38.000000,324.000000,70.000000,268.000000,73.000000,2.550000,271400.000000\\n', '-121.960000,37.300000,20.000000,4228.000000,1006.000000,2334.000000,1007.000000,4.308100,227300.000000\\n', '-121.740000,38.550000,34.000000,2299.000000,579.000000,1300.000000,536.000000,1.643500,148500.000000\\n', '-118.210000,33.920000,28.000000,2949.000000,1003.000000,4551.000000,930.000000,1.902600,131900.000000\\n', '-121.900000,36.610000,29.000000,3412.000000,827.000000,1574.000000,759.000000,2.930900,217100.000000\\n', '-117.810000,33.840000,17.000000,4343.000000,515.000000,1605.000000,484.000000,10.598100,460100.000000\\n', '-118.190000,33.930000,42.000000,1829.000000,391.000000,1614.000000,377.000000,3.191200,146400.000000\\n', '-120.930000,37.730000,14.000000,2799.000000,618.000000,2294.000000,596.000000,2.634300,81500.000000\\n', '-122.020000,37.960000,25.000000,2615.000000,368.000000,935.000000,366.000000,6.672700,305100.000000\\n', '-122.470000,37.790000,52.000000,2844.000000,623.000000,1380.000000,596.000000,4.750000,500001.000000\\n', '-117.190000,34.030000,25.000000,2513.000000,340.000000,900.000000,320.000000,6.496200,182400.000000\\n', '-117.240000,32.800000,28.000000,1072.000000,331.000000,692.000000,321.000000,2.135700,187500.000000\\n', '-118.130000,34.100000,19.000000,2742.000000,756.000000,1396.000000,703.000000,2.566300,197500.000000\\n', '-122.420000,37.730000,50.000000,3426.000000,769.000000,2261.000000,671.000000,2.888000,246400.000000\\n', '-118.140000,34.710000,32.000000,1164.000000,248.000000,588.000000,270.000000,1.191700,86900.000000\\n', '-119.760000,36.750000,39.000000,2233.000000,563.000000,2031.000000,491.000000,1.864100,50800.000000\\n', '-122.340000,37.560000,39.000000,3562.000000,391.000000,1139.000000,391.000000,12.641700,500001.000000\\n', '-122.450000,40.460000,16.000000,2734.000000,501.000000,1413.000000,484.000000,2.808500,105700.000000\\n', '-118.290000,33.910000,31.000000,2025.000000,618.000000,2231.000000,593.000000,2.474100,151200.000000\\n', '-118.320000,33.910000,34.000000,3041.000000,677.000000,1920.000000,640.000000,4.530400,181300.000000\\n', '-122.040000,37.360000,26.000000,3298.000000,460.000000,1241.000000,472.000000,6.875300,403000.000000\\n', '-117.390000,34.100000,12.000000,7184.000000,1516.000000,4862.000000,1235.000000,2.449200,103800.000000\\n', '-122.250000,37.800000,36.000000,1678.000000,606.000000,1645.000000,543.000000,2.230300,116700.000000\\n', '-117.980000,34.100000,22.000000,5661.000000,1209.000000,5389.000000,1178.000000,3.772700,159700.000000\\n', '-120.060000,36.950000,24.000000,646.000000,134.000000,454.000000,149.000000,2.125000,61900.000000\\n', '-121.470000,39.490000,17.000000,1554.000000,242.000000,553.000000,230.000000,3.217400,91800.000000\\n', '-122.200000,37.790000,35.000000,1802.000000,459.000000,1009.000000,390.000000,2.303600,126000.000000\\n', '-117.230000,32.750000,23.000000,2415.000000,653.000000,1275.000000,596.000000,3.138900,101800.000000\\n', '-119.750000,36.740000,39.000000,1740.000000,351.000000,1098.000000,347.000000,1.895800,51300.000000\\n', '-117.920000,34.030000,35.000000,1341.000000,233.000000,898.000000,216.000000,4.111800,157300.000000\\n', '-121.640000,39.280000,25.000000,2857.000000,662.000000,2076.000000,685.000000,1.809500,64100.000000\\n', '-117.140000,32.720000,45.000000,1140.000000,310.000000,840.000000,339.000000,1.615600,156300.000000\\n', '-122.290000,37.540000,41.000000,1743.000000,349.000000,811.000000,349.000000,4.946400,282400.000000\\n', '-117.910000,33.940000,15.000000,5799.000000,842.000000,2314.000000,787.000000,6.343300,350500.000000\\n', '-118.380000,34.270000,8.000000,3248.000000,847.000000,2608.000000,731.000000,2.821400,158300.000000\\n', '-122.030000,37.600000,24.000000,2077.000000,383.000000,1488.000000,389.000000,4.572100,214700.000000\\n', '-117.130000,33.150000,16.000000,3907.000000,671.000000,1759.000000,663.000000,3.177600,172600.000000\\n', '-118.280000,34.000000,42.000000,855.000000,284.000000,890.000000,247.000000,1.277800,112500.000000\\n', '-122.450000,37.720000,52.000000,1729.000000,319.000000,890.000000,300.000000,4.303600,261800.000000\\n', '-119.770000,36.770000,38.000000,3065.000000,658.000000,1441.000000,625.000000,2.056400,64700.000000\\n', '-117.700000,33.640000,15.000000,5743.000000,773.000000,2380.000000,773.000000,8.192600,326600.000000\\n', '-117.070000,32.790000,36.000000,3583.000000,642.000000,1711.000000,602.000000,3.974500,170800.000000\\n', '-117.850000,33.620000,13.000000,5192.000000,658.000000,1865.000000,662.000000,15.000100,500001.000000\\n', '-117.760000,33.710000,15.000000,1010.000000,350.000000,470.000000,342.000000,3.222900,108300.000000\\n', '-117.190000,34.940000,31.000000,2034.000000,444.000000,1097.000000,367.000000,2.152200,60800.000000\\n', '-120.970000,37.690000,15.000000,4065.000000,841.000000,1986.000000,680.000000,3.072000,114300.000000\\n', '-117.190000,33.640000,12.000000,1481.000000,265.000000,757.000000,243.000000,3.235000,210700.000000\\n', '-118.380000,33.910000,36.000000,2904.000000,515.000000,1463.000000,534.000000,5.837400,289600.000000\\n', '-121.560000,38.260000,43.000000,1906.000000,327.000000,996.000000,314.000000,2.974400,136800.000000\\n', '-118.960000,35.870000,17.000000,1668.000000,307.000000,888.000000,277.000000,3.779400,96200.000000\\n', '-116.960000,32.800000,24.000000,2493.000000,693.000000,1420.000000,643.000000,1.835700,104200.000000\\n', '-118.270000,33.940000,30.000000,1764.000000,397.000000,1406.000000,362.000000,1.449000,93100.000000\\n', '-119.180000,34.190000,36.000000,4519.000000,1081.000000,4818.000000,1061.000000,2.856100,179100.000000\\n', '-118.230000,33.900000,28.000000,1108.000000,284.000000,1498.000000,289.000000,2.470600,88800.000000\\n', '-120.490000,37.260000,28.000000,2159.000000,416.000000,1283.000000,378.000000,1.893900,83000.000000\\n', '-121.430000,38.640000,34.000000,2010.000000,411.000000,1501.000000,422.000000,2.041700,65900.000000\\n', '-118.140000,34.170000,42.000000,2757.000000,713.000000,2112.000000,653.000000,2.714800,166800.000000\\n', '-119.090000,35.410000,12.000000,3449.000000,522.000000,1754.000000,551.000000,5.623500,130600.000000\\n', '-118.020000,33.710000,24.000000,2598.000000,443.000000,1184.000000,435.000000,5.862300,287800.000000\\n', '-121.530000,39.060000,20.000000,561.000000,109.000000,308.000000,114.000000,3.302100,70800.000000\\n', '-119.290000,34.280000,38.000000,2387.000000,748.000000,1537.000000,741.000000,2.314700,192500.000000\\n', '-121.840000,37.340000,33.000000,1019.000000,191.000000,938.000000,215.000000,4.092900,165000.000000\\n', '-117.990000,33.880000,42.000000,1461.000000,302.000000,986.000000,314.000000,3.955900,161100.000000\\n', '-122.240000,37.550000,3.000000,6164.000000,1175.000000,2198.000000,975.000000,6.741300,435900.000000\\n', '-121.800000,37.310000,21.000000,2630.000000,446.000000,1789.000000,389.000000,5.054300,232000.000000\\n', '-117.430000,34.080000,13.000000,4563.000000,1187.000000,2475.000000,1019.000000,2.118900,121700.000000\\n', '-118.280000,34.020000,29.000000,515.000000,229.000000,2690.000000,217.000000,0.499900,500001.000000\\n', '-117.300000,33.060000,31.000000,2128.000000,520.000000,1049.000000,485.000000,4.027000,290000.000000\\n', '-118.200000,34.040000,18.000000,796.000000,227.000000,547.000000,218.000000,1.033300,135400.000000\\n', '-117.630000,34.110000,30.000000,2674.000000,428.000000,1404.000000,456.000000,4.296900,165600.000000\\n', '-121.940000,37.330000,37.000000,818.000000,269.000000,576.000000,261.000000,2.190200,250000.000000\\n', '-118.070000,33.930000,5.000000,906.000000,187.000000,1453.000000,158.000000,4.125000,171900.000000\\n', '-117.190000,32.830000,30.000000,3225.000000,555.000000,1601.000000,532.000000,4.331700,173300.000000\\n', '-118.210000,33.890000,42.000000,1739.000000,370.000000,1104.000000,297.000000,2.212500,120700.000000\\n', '-118.410000,34.190000,39.000000,1169.000000,242.000000,612.000000,247.000000,4.142900,200000.000000\\n', '-117.000000,32.800000,29.000000,2045.000000,398.000000,912.000000,368.000000,3.018900,144100.000000\\n', '-116.920000,32.860000,11.000000,2204.000000,518.000000,1472.000000,497.000000,2.369300,127000.000000\\n', '-121.040000,38.950000,22.000000,1931.000000,445.000000,1009.000000,407.000000,2.750000,153200.000000\\n', '-122.120000,37.450000,38.000000,1276.000000,314.000000,955.000000,287.000000,2.009600,155700.000000\\n', '-119.480000,36.540000,28.000000,2112.000000,363.000000,1011.000000,335.000000,4.222200,108900.000000\\n', '-121.020000,37.680000,25.000000,3262.000000,588.000000,1834.000000,578.000000,3.996000,114500.000000\\n', '-123.280000,40.770000,25.000000,767.000000,206.000000,301.000000,121.000000,1.625000,79200.000000\\n', '-122.890000,39.110000,10.000000,1588.000000,333.000000,585.000000,254.000000,2.255100,71100.000000\\n', '-122.040000,37.970000,21.000000,6445.000000,1839.000000,3621.000000,1735.000000,2.584100,112500.000000\\n', '-118.080000,33.810000,21.000000,1189.000000,281.000000,577.000000,264.000000,3.315500,237500.000000\\n', '-118.310000,34.090000,36.000000,787.000000,420.000000,1506.000000,360.000000,1.241200,216700.000000\\n', '-122.160000,37.750000,35.000000,667.000000,140.000000,406.000000,133.000000,3.804700,94300.000000\\n', '-121.610000,38.380000,37.000000,1365.000000,276.000000,952.000000,268.000000,4.037000,156900.000000\\n', '-122.100000,37.680000,31.000000,1892.000000,428.000000,1162.000000,389.000000,3.125000,167100.000000\\n', '-122.280000,37.870000,49.000000,2026.000000,548.000000,963.000000,521.000000,1.980500,173700.000000\\n', '-116.910000,34.240000,23.000000,6379.000000,1636.000000,1350.000000,568.000000,1.633600,124500.000000\\n', '-121.830000,37.280000,33.000000,1115.000000,250.000000,1168.000000,261.000000,3.900900,178600.000000\\n', '-118.300000,33.810000,17.000000,5544.000000,1068.000000,3008.000000,1038.000000,5.322000,282700.000000\\n', '-117.960000,33.700000,23.000000,4417.000000,740.000000,1865.000000,693.000000,5.342800,279300.000000\\n', '-122.140000,40.070000,31.000000,2053.000000,465.000000,1193.000000,447.000000,1.492300,44400.000000\\n', '-121.440000,38.730000,25.000000,1287.000000,224.000000,727.000000,236.000000,4.739600,135500.000000\\n', '-122.260000,37.550000,17.000000,4576.000000,814.000000,1941.000000,807.000000,5.957200,443800.000000\\n', '-121.640000,37.140000,14.000000,5487.000000,1024.000000,2823.000000,979.000000,4.175000,229800.000000\\n', '-117.180000,34.480000,8.000000,3561.000000,691.000000,2156.000000,659.000000,2.777800,86900.000000\\n', '-122.280000,38.340000,44.000000,1066.000000,190.000000,416.000000,174.000000,3.638900,304000.000000\\n', '-117.900000,33.600000,25.000000,2465.000000,585.000000,906.000000,472.000000,3.653800,500001.000000\\n', '-122.180000,37.780000,33.000000,142.000000,31.000000,575.000000,47.000000,3.875000,225000.000000\\n', '-121.490000,38.510000,30.000000,3166.000000,607.000000,1857.000000,579.000000,3.176800,79500.000000\\n', '-118.190000,33.910000,43.000000,1531.000000,357.000000,1509.000000,376.000000,2.635400,128100.000000\\n', '-118.270000,34.100000,50.000000,2113.000000,398.000000,793.000000,418.000000,4.713200,304600.000000\\n', '-121.440000,38.610000,34.000000,172.000000,38.000000,149.000000,55.000000,2.644200,55000.000000\\n', '-121.910000,37.430000,33.000000,2791.000000,496.000000,1714.000000,485.000000,4.830400,224900.000000\\n', '-117.860000,33.720000,31.000000,1194.000000,297.000000,1602.000000,306.000000,2.333300,157700.000000\\n', '-118.350000,33.920000,29.000000,736.000000,232.000000,584.000000,231.000000,3.616700,200000.000000\\n', '-117.260000,33.840000,12.000000,1159.000000,209.000000,523.000000,159.000000,2.723200,123200.000000\\n', '-122.430000,37.730000,52.000000,3602.000000,738.000000,2270.000000,647.000000,3.893400,251800.000000\\n', '-121.800000,37.990000,16.000000,3077.000000,465.000000,1575.000000,446.000000,5.500000,179500.000000\\n', '-122.580000,38.460000,15.000000,2936.000000,517.000000,1182.000000,501.000000,3.398100,246900.000000\\n', '-122.470000,37.780000,52.000000,2042.000000,378.000000,1153.000000,408.000000,4.185600,404700.000000\\n', '-118.080000,34.000000,32.000000,1165.000000,358.000000,997.000000,361.000000,0.981700,166300.000000\\n', '-122.000000,37.350000,20.000000,4304.000000,851.000000,2059.000000,835.000000,5.167400,333000.000000\\n', '-119.020000,35.410000,21.000000,2534.000000,554.000000,1297.000000,517.000000,2.057500,67000.000000\\n', '-118.130000,34.180000,52.000000,1464.000000,211.000000,603.000000,226.000000,5.830900,309100.000000\\n', '-121.940000,37.270000,23.000000,1932.000000,552.000000,997.000000,482.000000,3.662000,211900.000000\\n', '-120.510000,35.910000,39.000000,768.000000,162.000000,264.000000,118.000000,5.324500,250000.000000\\n', '-121.650000,38.030000,28.000000,3144.000000,694.000000,1095.000000,482.000000,3.440200,192400.000000\\n', '-121.620000,39.790000,11.000000,3835.000000,727.000000,1456.000000,658.000000,2.537400,97200.000000\\n', '-117.080000,32.820000,16.000000,1787.000000,236.000000,770.000000,228.000000,7.129800,278600.000000\\n', '-123.210000,39.140000,15.000000,2235.000000,545.000000,1376.000000,516.000000,1.903200,100000.000000\\n', '-119.610000,36.330000,32.000000,1492.000000,284.000000,926.000000,264.000000,3.013900,61500.000000\\n', '-114.980000,33.070000,18.000000,1183.000000,363.000000,374.000000,127.000000,3.160700,57500.000000\\n', '-118.380000,34.040000,36.000000,3005.000000,771.000000,2054.000000,758.000000,2.043700,309100.000000\\n', '-117.990000,33.700000,13.000000,4013.000000,903.000000,1999.000000,859.000000,4.625000,248800.000000\\n', '-116.260000,33.720000,10.000000,9404.000000,1827.000000,3208.000000,1283.000000,3.108600,105800.000000\\n', '-118.400000,34.000000,10.000000,1526.000000,339.000000,705.000000,268.000000,5.808300,321800.000000\\n', '-120.640000,35.460000,6.000000,5876.000000,1406.000000,2877.000000,1304.000000,2.543700,146400.000000\\n', '-122.030000,37.390000,22.000000,3280.000000,933.000000,1842.000000,795.000000,4.410700,232700.000000\\n', '-118.290000,33.880000,36.000000,1751.000000,438.000000,1175.000000,419.000000,3.073900,218600.000000\\n', '-117.020000,32.690000,7.000000,6055.000000,1004.000000,3031.000000,952.000000,4.436000,135000.000000\\n', '-119.320000,36.300000,15.000000,2864.000000,571.000000,1480.000000,475.000000,2.969800,93400.000000\\n', '-122.310000,38.010000,18.000000,4123.000000,874.000000,1895.000000,772.000000,3.275900,195000.000000\\n', '-118.860000,34.190000,27.000000,1931.000000,261.000000,736.000000,244.000000,6.780500,392900.000000\\n', '-117.140000,33.810000,13.000000,4496.000000,756.000000,2044.000000,695.000000,3.277800,148800.000000\\n', '-118.640000,34.220000,25.000000,2762.000000,410.000000,1166.000000,439.000000,6.864300,333700.000000\\n', '-116.630000,33.890000,22.000000,1540.000000,364.000000,610.000000,268.000000,1.522700,71000.000000\\n', '-118.280000,34.110000,45.000000,1607.000000,331.000000,633.000000,332.000000,3.144500,438300.000000\\n', '-119.030000,35.380000,52.000000,1695.000000,290.000000,540.000000,260.000000,2.731200,147100.000000\\n', '-118.260000,33.880000,36.000000,1212.000000,222.000000,775.000000,224.000000,5.559100,136500.000000\\n', '-117.890000,33.850000,18.000000,2036.000000,414.000000,1292.000000,380.000000,3.875000,273000.000000\\n', '-122.090000,37.380000,36.000000,2587.000000,416.000000,1055.000000,410.000000,6.199500,407200.000000\\n', '-122.940000,39.100000,18.000000,681.000000,120.000000,272.000000,105.000000,2.890600,140600.000000\\n', '-117.100000,32.680000,42.000000,2013.000000,568.000000,1920.000000,557.000000,2.072400,107600.000000\\n', '-118.980000,35.410000,36.000000,1482.000000,266.000000,640.000000,274.000000,3.875000,94500.000000\\n', '-120.230000,37.960000,52.000000,1230.000000,262.000000,609.000000,243.000000,2.005700,68200.000000\\n', '-118.200000,33.940000,43.000000,1934.000000,511.000000,1895.000000,493.000000,2.502900,159700.000000\\n', '-121.300000,37.950000,9.000000,674.000000,242.000000,575.000000,193.000000,2.202400,45000.000000\\n', '-121.740000,38.550000,33.000000,6861.000000,1820.000000,3717.000000,1767.000000,1.731100,182600.000000\\n', '-121.960000,37.330000,35.000000,2294.000000,411.000000,1054.000000,449.000000,4.066700,276900.000000\\n', '-120.600000,37.360000,27.000000,2521.000000,484.000000,1307.000000,456.000000,3.091100,86900.000000\\n', '-122.470000,37.700000,44.000000,2034.000000,423.000000,1491.000000,373.000000,4.534100,236500.000000\\n', '-117.050000,32.580000,23.000000,1918.000000,339.000000,1392.000000,340.000000,4.087000,134800.000000\\n', '-117.900000,33.870000,34.000000,1411.000000,292.000000,1040.000000,299.000000,3.433800,195200.000000\\n', '-117.230000,32.870000,15.000000,2290.000000,662.000000,1034.000000,594.000000,3.010400,204200.000000\\n', '-122.080000,37.880000,24.000000,2059.000000,462.000000,410.000000,294.000000,2.397100,99400.000000\\n', '-118.210000,33.800000,45.000000,1160.000000,274.000000,1095.000000,269.000000,2.730800,139000.000000\\n', '-122.080000,37.640000,30.000000,5267.000000,1253.000000,4065.000000,1113.000000,3.347900,182100.000000\\n', '-118.380000,34.140000,40.000000,1965.000000,354.000000,666.000000,357.000000,6.087600,483800.000000\\n', '-118.200000,33.800000,45.000000,2456.000000,495.000000,1300.000000,450.000000,3.979200,210200.000000\\n', '-117.620000,33.430000,27.000000,3858.000000,1062.000000,2321.000000,873.000000,3.315500,231000.000000\\n', '-122.110000,37.400000,31.000000,2836.000000,490.000000,1138.000000,481.000000,4.951900,500001.000000\\n', '-122.840000,38.980000,21.000000,939.000000,176.000000,556.000000,178.000000,1.719600,75000.000000\\n', '-121.260000,38.270000,20.000000,1314.000000,229.000000,712.000000,219.000000,4.412500,144600.000000\\n', '-116.890000,33.730000,15.000000,2094.000000,316.000000,937.000000,277.000000,5.362300,201300.000000\\n', '-122.670000,38.440000,32.000000,3771.000000,741.000000,1786.000000,721.000000,3.241500,172200.000000\\n', '-117.940000,33.870000,46.000000,2066.000000,450.000000,1275.000000,448.000000,3.937500,187000.000000\\n', '-118.140000,34.690000,34.000000,1439.000000,327.000000,708.000000,298.000000,3.269900,100000.000000\\n', '-122.400000,37.590000,22.000000,2754.000000,477.000000,1163.000000,479.000000,6.230600,500001.000000\\n', '-118.080000,33.840000,28.000000,4216.000000,948.000000,2997.000000,896.000000,3.796100,162700.000000\\n', '-116.360000,33.780000,6.000000,24121.000000,4522.000000,4176.000000,2221.000000,3.379900,239300.000000\\n', '-117.940000,33.850000,26.000000,1888.000000,429.000000,1550.000000,458.000000,3.339300,168600.000000\\n', '-117.470000,33.940000,34.000000,559.000000,139.000000,532.000000,137.000000,3.068700,88500.000000\\n', '-117.640000,33.650000,4.000000,6842.000000,1512.000000,3256.000000,1439.000000,5.413200,216600.000000\\n', '-118.500000,34.240000,34.000000,2634.000000,412.000000,1114.000000,423.000000,5.940100,315300.000000\\n', '-118.190000,33.780000,24.000000,225.000000,72.000000,439.000000,71.000000,2.853300,137500.000000\\n', '-117.660000,34.120000,16.000000,3853.000000,541.000000,1726.000000,497.000000,6.119500,251100.000000\\n', '-122.300000,37.970000,34.000000,2854.000000,528.000000,1211.000000,452.000000,3.535300,164700.000000\\n', '-122.140000,37.680000,31.000000,3184.000000,716.000000,1561.000000,628.000000,2.795500,183100.000000\\n', '-118.260000,33.940000,41.000000,1510.000000,410.000000,1408.000000,389.000000,1.650000,94200.000000\\n', '-118.230000,33.930000,39.000000,2065.000000,532.000000,2015.000000,535.000000,0.847800,104900.000000\\n', '-120.960000,38.660000,11.000000,2339.000000,436.000000,1062.000000,380.000000,3.903600,180800.000000\\n', '-117.840000,35.350000,28.000000,1913.000000,486.000000,858.000000,371.000000,1.996200,50800.000000\\n', '-119.160000,34.200000,35.000000,2183.000000,636.000000,3504.000000,623.000000,1.970400,160300.000000\\n', '-122.650000,38.230000,52.000000,1735.000000,347.000000,712.000000,343.000000,3.171100,200800.000000\\n', '-121.880000,37.370000,14.000000,6016.000000,1404.000000,3258.000000,1316.000000,3.574500,333700.000000\\n', '-118.400000,34.040000,43.000000,3863.000000,537.000000,1398.000000,511.000000,8.593800,500001.000000\\n', '-118.270000,34.110000,36.000000,1832.000000,539.000000,934.000000,486.000000,3.052100,276600.000000\\n', '-118.440000,34.300000,38.000000,1595.000000,314.000000,1181.000000,327.000000,3.400000,155500.000000\\n', '-121.770000,37.680000,41.000000,1501.000000,299.000000,629.000000,288.000000,4.680600,209400.000000\\n', '-119.990000,38.880000,17.000000,2807.000000,529.000000,675.000000,251.000000,2.745700,107800.000000\\n', '-118.360000,33.960000,26.000000,3543.000000,1055.000000,2742.000000,951.000000,2.550400,151300.000000\\n', '-118.320000,33.970000,52.000000,1778.000000,320.000000,795.000000,279.000000,3.511400,138800.000000\\n', '-118.270000,34.270000,27.000000,5205.000000,859.000000,2363.000000,888.000000,6.194600,276100.000000\\n', '-116.810000,33.900000,17.000000,2009.000000,469.000000,820.000000,381.000000,1.328600,81800.000000\\n', '-118.390000,33.960000,45.000000,1436.000000,374.000000,662.000000,292.000000,3.625000,329400.000000\\n', '-118.070000,33.910000,29.000000,2387.000000,570.000000,1978.000000,548.000000,3.195700,159200.000000\\n', '-118.350000,34.220000,30.000000,1260.000000,222.000000,638.000000,229.000000,4.130200,258300.000000\\n', '-118.430000,34.020000,41.000000,2403.000000,516.000000,1001.000000,514.000000,4.390600,500001.000000\\n', '-121.730000,37.680000,17.000000,20354.000000,3493.000000,8768.000000,3293.000000,5.449600,238900.000000\\n', '-117.310000,32.980000,17.000000,2789.000000,648.000000,849.000000,345.000000,4.101200,244700.000000\\n', '-122.290000,37.560000,12.000000,6474.000000,1467.000000,2516.000000,1390.000000,5.035300,305800.000000\\n', '-119.690000,34.380000,39.000000,1383.000000,459.000000,677.000000,362.000000,2.250000,281300.000000\\n', '-122.070000,38.000000,37.000000,978.000000,202.000000,462.000000,184.000000,3.625000,156300.000000\\n', '-118.050000,34.160000,41.000000,3320.000000,713.000000,1236.000000,659.000000,3.569400,278600.000000\\n', '-122.070000,37.660000,28.000000,2280.000000,610.000000,1255.000000,587.000000,2.671900,161200.000000\\n', '-121.800000,37.270000,10.000000,3301.000000,593.000000,2190.000000,575.000000,6.223000,260700.000000\\n', '-122.690000,38.340000,23.000000,2846.000000,516.000000,1526.000000,492.000000,3.733000,163500.000000\\n', '-117.080000,32.700000,35.000000,1477.000000,264.000000,852.000000,279.000000,3.178600,100600.000000\\n', '-119.760000,36.730000,46.000000,1347.000000,282.000000,854.000000,267.000000,1.872300,52600.000000\\n', '-118.370000,34.050000,52.000000,1563.000000,306.000000,776.000000,308.000000,3.625000,440900.000000\\n', '-122.700000,38.350000,14.000000,1555.000000,369.000000,493.000000,335.000000,1.603300,67500.000000\\n', '-118.130000,34.010000,45.000000,1179.000000,268.000000,736.000000,252.000000,2.708300,161800.000000\\n', '-119.350000,36.210000,26.000000,2481.000000,586.000000,1445.000000,498.000000,1.637800,60300.000000\\n', '-117.670000,34.030000,20.000000,8561.000000,1411.000000,4861.000000,1450.000000,4.705600,165500.000000\\n', '-117.970000,34.150000,33.000000,2474.000000,472.000000,1268.000000,437.000000,6.457600,500001.000000\\n', '-118.080000,34.080000,38.000000,1889.000000,407.000000,1330.000000,396.000000,3.921900,205200.000000\\n', '-121.230000,38.780000,13.000000,3813.000000,871.000000,1513.000000,783.000000,2.080700,142600.000000\\n', '-118.200000,34.020000,49.000000,1098.000000,317.000000,1411.000000,301.000000,2.750000,146000.000000\\n', '-118.170000,34.020000,41.000000,676.000000,216.000000,851.000000,199.000000,2.307700,140600.000000\\n', '-117.800000,34.060000,34.000000,1081.000000,205.000000,1325.000000,252.000000,3.629800,108500.000000\\n', '-118.300000,33.970000,46.000000,1425.000000,317.000000,1140.000000,304.000000,3.375000,98500.000000\\n', '-122.470000,37.690000,30.000000,837.000000,213.000000,606.000000,199.000000,4.875000,258800.000000\\n', '-118.200000,33.960000,44.000000,2144.000000,477.000000,1760.000000,452.000000,2.322100,161600.000000\\n', '-117.130000,32.910000,16.000000,2715.000000,581.000000,1619.000000,584.000000,4.000000,154700.000000\\n', '-119.770000,36.810000,25.000000,1565.000000,271.000000,661.000000,275.000000,3.427900,84700.000000\\n', '-118.470000,34.250000,21.000000,2692.000000,477.000000,1330.000000,456.000000,4.541700,238900.000000\\n', '-122.250000,37.800000,42.000000,4120.000000,1065.000000,1715.000000,1015.000000,2.934500,225000.000000\\n', '-118.500000,34.170000,37.000000,880.000000,154.000000,369.000000,155.000000,4.142900,303600.000000\\n', '-122.240000,37.490000,38.000000,4105.000000,950.000000,2561.000000,909.000000,3.868400,265600.000000\\n', '-117.150000,32.930000,16.000000,2718.000000,438.000000,1515.000000,431.000000,5.143300,185300.000000\\n', '-120.850000,37.770000,35.000000,404.000000,96.000000,261.000000,100.000000,2.458300,75000.000000\\n', '-122.250000,37.830000,35.000000,1613.000000,428.000000,675.000000,422.000000,3.472200,243100.000000\\n', '-118.330000,33.770000,33.000000,4244.000000,595.000000,1534.000000,557.000000,9.821400,500001.000000\\n', '-124.150000,40.780000,41.000000,2127.000000,358.000000,911.000000,349.000000,3.171100,104200.000000\\n', '-117.940000,33.790000,24.000000,4179.000000,784.000000,1902.000000,733.000000,4.798600,236500.000000\\n', '-121.590000,39.150000,5.000000,1922.000000,489.000000,938.000000,439.000000,2.047400,61300.000000\\n', '-122.690000,38.440000,31.000000,1808.000000,315.000000,691.000000,280.000000,3.858300,193200.000000\\n', '-122.510000,38.760000,9.000000,2589.000000,482.000000,1050.000000,374.000000,4.043500,132600.000000\\n', '-117.890000,33.610000,45.000000,1883.000000,419.000000,653.000000,328.000000,4.222200,500001.000000\\n', '-117.190000,32.770000,9.000000,634.000000,152.000000,248.000000,133.000000,3.857100,143800.000000\\n', '-117.150000,32.750000,40.000000,2261.000000,579.000000,903.000000,525.000000,2.465000,198700.000000\\n', '-122.210000,37.480000,20.000000,505.000000,216.000000,326.000000,216.000000,2.928600,237500.000000\\n', '-118.250000,33.790000,38.000000,1730.000000,460.000000,1724.000000,424.000000,2.730800,150400.000000\\n', '-120.490000,40.310000,16.000000,1821.000000,360.000000,969.000000,359.000000,3.464300,85100.000000\\n', '-118.300000,33.740000,20.000000,2625.000000,673.000000,1184.000000,606.000000,3.916700,285200.000000\\n', '-117.140000,32.700000,47.000000,552.000000,161.000000,593.000000,174.000000,0.958900,90000.000000\\n', '-121.300000,37.970000,52.000000,2259.000000,417.000000,766.000000,385.000000,2.298100,105400.000000\\n', '-119.780000,36.750000,31.000000,1404.000000,379.000000,1515.000000,387.000000,1.281300,56400.000000\\n', '-118.380000,34.180000,32.000000,3553.000000,1060.000000,3129.000000,1010.000000,2.560300,174200.000000\\n', '-118.130000,34.100000,24.000000,4670.000000,1185.000000,2478.000000,1107.000000,3.197500,252400.000000\\n', '-118.300000,33.730000,42.000000,1731.000000,435.000000,866.000000,403.000000,2.745100,255400.000000\\n', '-118.440000,33.990000,44.000000,305.000000,72.000000,156.000000,70.000000,5.964100,275000.000000\\n', '-117.480000,34.080000,17.000000,1834.000000,390.000000,1253.000000,357.000000,3.102800,106400.000000\\n', '-122.350000,37.970000,31.000000,2892.000000,685.000000,2104.000000,641.000000,3.218800,113800.000000\\n', '-119.710000,34.410000,31.000000,1034.000000,319.000000,997.000000,308.000000,2.653800,231800.000000\\n', '-116.920000,32.810000,23.000000,2668.000000,528.000000,1510.000000,524.000000,3.366900,158900.000000\\n', '-122.110000,37.660000,35.000000,2843.000000,652.000000,1726.000000,643.000000,3.090000,174100.000000\\n', '-117.410000,33.940000,29.000000,3181.000000,714.000000,1603.000000,706.000000,3.250000,112500.000000\\n', '-122.450000,37.740000,38.000000,5688.000000,930.000000,2263.000000,908.000000,6.203000,346800.000000\\n', '-118.360000,33.800000,38.000000,2553.000000,400.000000,1042.000000,393.000000,6.974200,500001.000000\\n', '-121.660000,36.680000,10.000000,913.000000,265.000000,508.000000,251.000000,0.991400,147500.000000\\n', '-122.420000,37.760000,52.000000,2038.000000,629.000000,2007.000000,596.000000,2.570100,266700.000000\\n', '-118.290000,34.050000,30.000000,1417.000000,589.000000,1615.000000,540.000000,1.386700,193800.000000\\n', '-119.820000,34.430000,15.000000,1482.000000,345.000000,669.000000,379.000000,3.077300,112500.000000\\n', '-119.340000,36.220000,38.000000,2708.000000,460.000000,1260.000000,455.000000,3.090500,78200.000000\\n', '-121.500000,38.610000,5.000000,1395.000000,373.000000,638.000000,322.000000,2.674500,225000.000000\\n', '-121.880000,37.460000,5.000000,1819.000000,245.000000,802.000000,228.000000,10.972200,500001.000000\\n', '-118.270000,33.940000,34.000000,721.000000,165.000000,661.000000,171.000000,2.078900,92400.000000\\n', '-122.170000,37.730000,46.000000,2163.000000,470.000000,925.000000,435.000000,3.250000,177500.000000\\n', '-122.220000,37.850000,28.000000,5287.000000,1048.000000,2031.000000,956.000000,5.457000,337300.000000\\n', '-117.200000,32.830000,36.000000,1089.000000,240.000000,623.000000,226.000000,2.590900,176000.000000\\n', '-120.690000,35.490000,16.000000,2666.000000,450.000000,1203.000000,429.000000,4.137500,222400.000000\\n', '-122.700000,38.970000,17.000000,2554.000000,540.000000,723.000000,319.000000,3.237500,114200.000000\\n', '-118.370000,34.150000,29.000000,2630.000000,617.000000,1071.000000,573.000000,3.366900,376100.000000\\n', '-118.350000,34.000000,40.000000,2894.000000,395.000000,1063.000000,409.000000,6.939000,372000.000000\\n', '-118.390000,37.360000,38.000000,1813.000000,410.000000,902.000000,396.000000,2.326100,98400.000000\\n', '-118.110000,34.200000,36.000000,4915.000000,725.000000,1897.000000,700.000000,6.827000,359400.000000\\n', '-121.720000,36.810000,18.000000,1984.000000,379.000000,1078.000000,359.000000,3.296900,229900.000000\\n', '-118.520000,34.160000,39.000000,2693.000000,478.000000,1219.000000,435.000000,5.170000,335400.000000\\n', '-118.120000,33.900000,35.000000,3478.000000,730.000000,1885.000000,673.000000,2.937500,206500.000000\\n', '-119.690000,36.790000,5.000000,2613.000000,476.000000,1490.000000,481.000000,4.099300,83000.000000\\n', '-118.030000,33.780000,26.000000,2001.000000,302.000000,836.000000,298.000000,5.106100,257500.000000\\n', '-120.670000,35.620000,6.000000,12779.000000,2441.000000,6085.000000,2157.000000,3.866100,168100.000000\\n', '-118.430000,34.030000,36.000000,1552.000000,388.000000,867.000000,352.000000,3.646700,346700.000000\\n', '-121.620000,39.130000,41.000000,1147.000000,243.000000,583.000000,239.000000,2.243100,63400.000000\\n', '-118.970000,37.640000,13.000000,1907.000000,544.000000,575.000000,234.000000,3.068500,162500.000000\\n', '-117.250000,32.740000,36.000000,3548.000000,956.000000,1648.000000,866.000000,2.696200,288200.000000\\n', '-122.280000,37.800000,52.000000,215.000000,87.000000,904.000000,88.000000,0.866800,137500.000000\\n', '-118.190000,34.140000,38.000000,1826.000000,300.000000,793.000000,297.000000,5.296200,291500.000000\\n', '-117.900000,33.850000,32.000000,1605.000000,314.000000,986.000000,306.000000,3.337500,186200.000000\\n', '-119.020000,37.640000,14.000000,5919.000000,1278.000000,265.000000,112.000000,3.243100,221400.000000\\n', '-118.370000,34.200000,34.000000,2199.000000,609.000000,2488.000000,597.000000,2.986100,171800.000000\\n', '-122.410000,37.750000,52.000000,1057.000000,276.000000,837.000000,292.000000,2.453100,229000.000000\\n', '-117.940000,33.920000,28.000000,639.000000,179.000000,1062.000000,169.000000,3.058800,145200.000000\\n', '-118.220000,34.120000,28.000000,3306.000000,1025.000000,2670.000000,942.000000,3.091900,185400.000000\\n', '-117.240000,34.040000,4.000000,4289.000000,682.000000,1981.000000,705.000000,5.336600,165100.000000\\n', '-122.080000,37.660000,33.000000,1547.000000,372.000000,1063.000000,356.000000,2.562500,154300.000000\\n', '-122.280000,37.850000,48.000000,2063.000000,484.000000,1054.000000,466.000000,2.262500,132900.000000\\n', '-118.210000,33.900000,35.000000,2420.000000,579.000000,2010.000000,540.000000,2.081700,104600.000000\\n', '-118.010000,33.920000,35.000000,1606.000000,289.000000,829.000000,273.000000,5.273000,187600.000000\\n', '-118.290000,34.180000,10.000000,4292.000000,1075.000000,2719.000000,987.000000,3.697400,286600.000000\\n', '-118.210000,33.960000,48.000000,284.000000,104.000000,422.000000,119.000000,1.282600,145500.000000\\n', '-117.230000,32.810000,28.000000,1508.000000,263.000000,996.000000,267.000000,3.802600,270000.000000\\n', '-117.030000,33.130000,15.000000,7000.000000,1185.000000,3555.000000,1118.000000,4.702200,172800.000000\\n', '-121.850000,37.220000,21.000000,6203.000000,798.000000,2494.000000,800.000000,7.720100,362700.000000\\n', '-122.400000,37.720000,47.000000,1465.000000,306.000000,1119.000000,315.000000,4.267200,219400.000000\\n', '-120.470000,34.980000,6.000000,5762.000000,1115.000000,2551.000000,919.000000,3.072300,137300.000000\\n', '-121.140000,37.480000,6.000000,1772.000000,332.000000,1011.000000,331.000000,3.704500,128100.000000\\n', '-119.340000,36.620000,26.000000,1922.000000,339.000000,1148.000000,332.000000,2.605800,92200.000000\\n', '-117.660000,34.080000,36.000000,1485.000000,236.000000,623.000000,261.000000,3.303600,141000.000000\\n', '-116.840000,33.080000,15.000000,2755.000000,519.000000,1474.000000,460.000000,4.040800,225900.000000\\n', '-118.290000,34.050000,11.000000,677.000000,370.000000,1143.000000,341.000000,2.386400,350000.000000\\n', '-119.980000,38.940000,23.000000,1564.000000,298.000000,339.000000,147.000000,4.041700,99300.000000\\n', '-118.100000,33.910000,35.000000,1653.000000,325.000000,1072.000000,301.000000,3.270800,159700.000000\\n', '-120.070000,36.960000,42.000000,963.000000,216.000000,471.000000,211.000000,2.289800,66100.000000\\n', '-119.110000,35.390000,22.000000,984.000000,176.000000,451.000000,170.000000,3.250000,88900.000000\\n', '-117.720000,34.100000,46.000000,2477.000000,458.000000,1034.000000,455.000000,5.500000,289700.000000\\n', '-117.900000,33.650000,30.000000,2196.000000,486.000000,1131.000000,460.000000,4.413500,272300.000000\\n', '-121.980000,37.290000,31.000000,2750.000000,664.000000,1459.000000,660.000000,3.228700,264900.000000\\n', '-122.030000,36.960000,32.000000,2182.000000,406.000000,1122.000000,370.000000,3.520000,284200.000000\\n', '-117.420000,34.080000,21.000000,4460.000000,930.000000,2657.000000,839.000000,2.756900,127500.000000\\n', '-117.660000,34.110000,19.000000,3445.000000,661.000000,1635.000000,580.000000,5.068100,230500.000000\\n', '-119.290000,34.240000,27.000000,4742.000000,775.000000,1682.000000,696.000000,6.194000,500001.000000\\n', '-117.020000,32.710000,20.000000,4050.000000,745.000000,2870.000000,761.000000,3.736600,121800.000000\\n', '-122.850000,38.620000,16.000000,4418.000000,704.000000,1908.000000,697.000000,4.591300,244600.000000\\n', '-118.330000,33.910000,35.000000,1092.000000,302.000000,962.000000,297.000000,3.590300,183300.000000\\n', '-118.400000,34.020000,40.000000,593.000000,137.000000,371.000000,132.000000,4.693200,332800.000000\\n', '-118.380000,33.840000,26.000000,2869.000000,567.000000,1157.000000,538.000000,6.038200,355300.000000\\n', '-118.050000,34.110000,42.000000,3677.000000,627.000000,1779.000000,622.000000,5.150900,426500.000000\\n', '-117.430000,33.930000,36.000000,2386.000000,396.000000,1176.000000,374.000000,4.512200,113300.000000\\n', '-118.100000,34.160000,44.000000,2795.000000,496.000000,1235.000000,469.000000,4.238600,283700.000000\\n', '-122.530000,37.860000,38.000000,1183.000000,196.000000,628.000000,205.000000,3.750000,478600.000000\\n', '-118.300000,33.970000,42.000000,944.000000,200.000000,567.000000,190.000000,2.631100,124100.000000\\n', '-118.200000,33.890000,37.000000,2394.000000,568.000000,2499.000000,551.000000,2.532100,105100.000000\\n', '-118.020000,34.150000,44.000000,2419.000000,437.000000,1045.000000,432.000000,3.875000,280800.000000\\n', '-121.530000,39.520000,30.000000,1030.000000,161.000000,448.000000,159.000000,2.482100,73800.000000\\n', '-117.920000,33.900000,13.000000,1814.000000,320.000000,1010.000000,313.000000,6.348900,337900.000000\\n', '-118.370000,34.210000,33.000000,2034.000000,470.000000,1990.000000,423.000000,3.745500,159600.000000\\n', '-118.040000,33.850000,18.000000,3628.000000,546.000000,1922.000000,544.000000,7.505700,328500.000000\\n', '-118.460000,33.980000,19.000000,2520.000000,726.000000,964.000000,663.000000,3.806800,500001.000000\\n', '-118.050000,33.900000,36.000000,1047.000000,227.000000,975.000000,239.000000,3.189700,155000.000000\\n', '-122.950000,40.710000,26.000000,2231.000000,421.000000,987.000000,364.000000,2.479200,88800.000000\\n', '-122.000000,37.300000,28.000000,5096.000000,1011.000000,2588.000000,954.000000,5.357000,355200.000000\\n', '-121.860000,37.400000,21.000000,1386.000000,260.000000,946.000000,257.000000,6.522600,258500.000000\\n', '-119.250000,36.560000,35.000000,1675.000000,373.000000,1131.000000,316.000000,1.672200,59100.000000\\n', '-118.210000,34.560000,12.000000,2472.000000,408.000000,1048.000000,380.000000,4.709700,262100.000000\\n', '-118.260000,34.020000,39.000000,698.000000,232.000000,1046.000000,228.000000,2.235600,119500.000000\\n', '-117.280000,34.150000,32.000000,2170.000000,430.000000,815.000000,401.000000,3.176500,135000.000000\\n', '-122.440000,37.660000,21.000000,5108.000000,1510.000000,3288.000000,1405.000000,3.192700,252600.000000\\n', '-118.990000,35.390000,36.000000,1438.000000,348.000000,1054.000000,341.000000,1.831900,55400.000000\\n', '-117.140000,34.060000,15.000000,3057.000000,510.000000,1154.000000,460.000000,3.974100,141100.000000\\n', '-122.150000,37.410000,15.000000,2577.000000,360.000000,979.000000,364.000000,10.476000,500001.000000\\n', '-121.200000,38.670000,26.000000,1546.000000,287.000000,773.000000,299.000000,2.980300,115400.000000\\n', '-122.150000,37.470000,37.000000,1844.000000,382.000000,1634.000000,417.000000,2.799300,145500.000000\\n', '-118.340000,33.950000,25.000000,3762.000000,1281.000000,4015.000000,1178.000000,2.158700,143800.000000\\n', '-118.250000,34.080000,44.000000,1425.000000,438.000000,1121.000000,374.000000,2.110800,200000.000000\\n', '-119.580000,36.100000,21.000000,1382.000000,327.000000,1469.000000,355.000000,1.396700,46500.000000\\n', '-121.310000,38.710000,18.000000,3998.000000,744.000000,2071.000000,660.000000,4.383600,102000.000000\\n', '-118.420000,34.120000,27.000000,2089.000000,303.000000,654.000000,270.000000,12.376700,500001.000000\\n', '-117.180000,34.060000,52.000000,954.000000,233.000000,533.000000,239.000000,1.302100,100000.000000\\n', '-115.900000,32.690000,18.000000,414.000000,86.000000,98.000000,54.000000,1.541700,57500.000000\\n', '-118.360000,33.980000,46.000000,1425.000000,283.000000,782.000000,273.000000,5.057000,246300.000000\\n', '-122.500000,37.600000,35.000000,2197.000000,369.000000,971.000000,326.000000,4.250000,241700.000000\\n', '-121.500000,36.810000,20.000000,1345.000000,230.000000,731.000000,217.000000,4.233300,363300.000000\\n', '-118.190000,33.820000,11.000000,872.000000,203.000000,422.000000,221.000000,4.636400,156300.000000\\n', '-117.300000,34.150000,40.000000,961.000000,199.000000,509.000000,182.000000,2.060000,85500.000000\\n', '-118.420000,34.230000,34.000000,1531.000000,278.000000,1064.000000,274.000000,5.668700,207300.000000\\n', '-118.120000,33.900000,38.000000,1222.000000,282.000000,756.000000,256.000000,4.125000,173900.000000\\n', '-119.800000,36.790000,45.000000,1337.000000,187.000000,471.000000,187.000000,5.187000,153800.000000\\n', '-119.740000,34.350000,34.000000,1664.000000,292.000000,705.000000,257.000000,5.000000,329400.000000\\n', '-121.970000,37.970000,26.000000,1977.000000,264.000000,817.000000,273.000000,5.751200,240200.000000\\n', '-117.070000,34.050000,14.000000,5764.000000,1006.000000,1876.000000,841.000000,1.969400,173200.000000\\n', '-122.290000,37.820000,2.000000,158.000000,43.000000,94.000000,57.000000,2.562500,60000.000000\\n', '-116.310000,33.650000,8.000000,3079.000000,558.000000,1572.000000,474.000000,4.593800,102600.000000\\n', '-118.270000,34.010000,43.000000,1235.000000,385.000000,1745.000000,372.000000,2.081700,113300.000000\\n', '-122.440000,37.760000,52.000000,1968.000000,472.000000,784.000000,430.000000,3.370200,370000.000000\\n', '-118.270000,34.150000,14.000000,1744.000000,536.000000,1494.000000,531.000000,3.217100,230800.000000\\n', '-118.410000,34.030000,36.000000,3053.000000,635.000000,1234.000000,577.000000,5.163700,500001.000000\\n', '-121.450000,38.610000,32.000000,2436.000000,612.000000,1509.000000,618.000000,1.042400,81400.000000\\n', '-117.250000,32.830000,17.000000,2075.000000,262.000000,704.000000,241.000000,10.952900,500001.000000\\n', '-119.800000,36.820000,24.000000,5377.000000,1005.000000,2010.000000,982.000000,3.454200,121200.000000\\n', '-121.310000,38.010000,22.000000,2101.000000,514.000000,1304.000000,511.000000,2.834800,101600.000000\\n', '-118.180000,34.050000,41.000000,762.000000,147.000000,817.000000,176.000000,3.750000,123100.000000\\n', '-122.130000,37.370000,30.000000,2139.000000,260.000000,742.000000,242.000000,11.806000,500001.000000\\n', '-119.750000,36.780000,28.000000,3257.000000,752.000000,1981.000000,712.000000,2.293000,71700.000000\\n', '-117.090000,32.740000,42.000000,1986.000000,472.000000,1472.000000,475.000000,2.175700,110100.000000\\n', '-122.020000,37.330000,25.000000,3823.000000,584.000000,1689.000000,571.000000,7.369300,373600.000000\\n', '-117.200000,32.840000,34.000000,3353.000000,544.000000,1583.000000,571.000000,4.550000,187700.000000\\n', '-118.140000,34.010000,46.000000,1746.000000,447.000000,1296.000000,392.000000,2.392900,156800.000000\\n', '-122.430000,37.780000,29.000000,1310.000000,364.000000,1009.000000,379.000000,1.384400,177500.000000\\n', '-118.100000,34.010000,29.000000,2077.000000,564.000000,2087.000000,543.000000,2.660000,189200.000000\\n', '-118.350000,34.100000,20.000000,2745.000000,782.000000,1161.000000,739.000000,3.904400,436400.000000\\n', '-118.000000,33.810000,33.000000,2970.000000,547.000000,1869.000000,539.000000,4.363600,201800.000000\\n', '-121.460000,38.560000,52.000000,1750.000000,372.000000,764.000000,369.000000,2.919100,111800.000000\\n', '-118.270000,33.870000,21.000000,6108.000000,1130.000000,3244.000000,1113.000000,4.276800,181400.000000\\n', '-118.260000,33.950000,44.000000,1771.000000,378.000000,1296.000000,399.000000,1.638900,96700.000000\\n', '-119.010000,35.380000,52.000000,114.000000,26.000000,158.000000,26.000000,1.075000,67500.000000\\n', '-117.080000,32.800000,32.000000,1587.000000,268.000000,635.000000,249.000000,3.375000,178100.000000\\n', '-122.200000,40.260000,15.000000,2102.000000,358.000000,957.000000,371.000000,3.190800,137900.000000\\n', '-119.980000,38.940000,25.000000,1339.000000,328.000000,503.000000,219.000000,1.901800,109700.000000\\n', '-122.530000,37.950000,22.000000,7446.000000,1979.000000,2980.000000,1888.000000,3.583800,271300.000000\\n', '-118.300000,34.050000,51.000000,1005.000000,314.000000,1227.000000,306.000000,2.429700,162500.000000\\n', '-121.860000,39.750000,18.000000,1651.000000,309.000000,856.000000,293.000000,3.504600,118300.000000\\n', '-122.060000,37.330000,23.000000,4507.000000,751.000000,2167.000000,722.000000,7.010200,500001.000000\\n', '-122.450000,38.010000,36.000000,4501.000000,832.000000,2196.000000,800.000000,4.318200,252700.000000\\n', '-117.010000,32.770000,24.000000,2311.000000,536.000000,1005.000000,525.000000,2.900000,185200.000000\\n', '-120.870000,37.760000,16.000000,1174.000000,249.000000,601.000000,242.000000,1.714300,113300.000000\\n', '-121.790000,38.540000,7.000000,1777.000000,513.000000,4479.000000,504.000000,1.465300,310000.000000\\n', '-117.810000,33.820000,22.000000,2898.000000,335.000000,1057.000000,324.000000,10.811100,500001.000000\\n', '-117.590000,33.660000,3.000000,1206.000000,256.000000,563.000000,287.000000,5.158900,167800.000000\\n', '-117.360000,34.090000,32.000000,3616.000000,631.000000,2131.000000,593.000000,3.287900,95500.000000\\n', '-121.520000,39.500000,33.000000,1462.000000,241.000000,569.000000,231.000000,3.283300,82600.000000\\n', '-122.270000,37.840000,52.000000,1503.000000,298.000000,690.000000,275.000000,2.603300,162900.000000\\n', '-122.210000,40.200000,19.000000,3404.000000,731.000000,1421.000000,683.000000,2.614900,84400.000000\\n', '-117.240000,33.180000,19.000000,3337.000000,565.000000,1646.000000,554.000000,5.019500,200200.000000\\n', '-122.550000,37.980000,31.000000,3807.000000,828.000000,1581.000000,795.000000,3.293000,337500.000000\\n', '-118.450000,34.000000,46.000000,1777.000000,362.000000,896.000000,334.000000,4.450000,348300.000000\\n', '-117.880000,33.850000,34.000000,1127.000000,185.000000,588.000000,181.000000,4.375000,224700.000000\\n', '-117.180000,32.760000,52.000000,2023.000000,301.000000,649.000000,285.000000,4.739600,441700.000000\\n', '-118.300000,33.880000,29.000000,850.000000,229.000000,563.000000,204.000000,3.737500,247700.000000\\n', '-122.040000,38.280000,12.000000,3861.000000,795.000000,2129.000000,806.000000,3.676000,135000.000000\\n', '-122.430000,40.470000,16.000000,3552.000000,704.000000,1801.000000,658.000000,2.149600,97700.000000\\n', '-118.380000,33.860000,24.000000,3124.000000,560.000000,1312.000000,542.000000,6.302100,333800.000000\\n', '-119.570000,36.090000,6.000000,2015.000000,413.000000,992.000000,319.000000,2.388900,53200.000000\\n', '-117.870000,34.120000,34.000000,1004.000000,220.000000,772.000000,217.000000,3.857100,174500.000000\\n', '-116.880000,32.810000,35.000000,2926.000000,562.000000,1590.000000,506.000000,4.201400,143200.000000\\n', '-118.580000,34.210000,13.000000,6227.000000,1317.000000,3739.000000,1226.000000,4.031300,299300.000000\\n', '-122.040000,37.880000,32.000000,3250.000000,550.000000,1230.000000,557.000000,4.642400,312700.000000\\n', '-122.440000,37.720000,52.000000,1775.000000,347.000000,1102.000000,367.000000,4.312500,267200.000000\\n', '-121.810000,37.370000,26.000000,2987.000000,539.000000,1931.000000,518.000000,5.109900,213100.000000\\n', '-122.500000,37.770000,52.000000,2433.000000,454.000000,1070.000000,420.000000,4.125000,359500.000000\\n', '-121.940000,37.940000,26.000000,1299.000000,174.000000,533.000000,180.000000,6.229600,291700.000000\\n', '-118.450000,34.120000,20.000000,10722.000000,1617.000000,3731.000000,1511.000000,9.744900,500001.000000\\n', '-121.700000,39.070000,26.000000,2668.000000,510.000000,1437.000000,505.000000,3.312500,100000.000000\\n', '-118.100000,34.650000,33.000000,873.000000,177.000000,425.000000,142.000000,2.670000,187500.000000\\n', '-119.020000,36.060000,41.000000,2279.000000,538.000000,1908.000000,511.000000,1.395200,43100.000000\\n', '-118.060000,34.080000,42.000000,1988.000000,402.000000,1239.000000,402.000000,3.256900,201500.000000\\n', '-117.660000,33.610000,17.000000,3464.000000,519.000000,1713.000000,530.000000,6.047100,248400.000000\\n', '-117.400000,33.940000,30.000000,1198.000000,251.000000,1019.000000,214.000000,3.050900,82700.000000\\n', '-118.190000,33.830000,30.000000,2246.000000,552.000000,1032.000000,548.000000,3.587100,347100.000000\\n', '-121.550000,39.510000,50.000000,1050.000000,288.000000,485.000000,260.000000,1.160700,51700.000000\\n', '-121.980000,37.140000,37.000000,74.000000,19.000000,63.000000,17.000000,9.590800,350000.000000\\n', '-117.060000,32.610000,24.000000,4369.000000,1353.000000,3123.000000,1247.000000,2.057100,152300.000000\\n', '-118.320000,34.040000,39.000000,2965.000000,812.000000,2638.000000,794.000000,2.532000,172700.000000\\n', '-117.130000,32.760000,41.000000,1545.000000,420.000000,747.000000,415.000000,2.375000,154400.000000\\n', '-122.500000,37.760000,46.000000,2226.000000,480.000000,1272.000000,468.000000,4.264400,284100.000000\\n', '-120.870000,37.620000,30.000000,455.000000,70.000000,220.000000,69.000000,4.895800,142500.000000\\n', '-118.240000,34.220000,41.000000,2476.000000,506.000000,1271.000000,485.000000,3.453100,263900.000000\\n', '-117.690000,33.480000,25.000000,3240.000000,481.000000,1462.000000,497.000000,6.181500,288500.000000\\n', '-122.200000,39.750000,18.000000,2603.000000,576.000000,1616.000000,588.000000,2.019200,63700.000000\\n', '-117.080000,32.640000,43.000000,1005.000000,230.000000,548.000000,252.000000,1.867200,145800.000000\\n', '-117.910000,33.820000,32.000000,1408.000000,307.000000,1331.000000,284.000000,3.701400,179600.000000\\n', '-122.000000,38.730000,31.000000,371.000000,74.000000,208.000000,84.000000,3.875000,137500.000000\\n', '-118.290000,33.840000,33.000000,896.000000,208.000000,843.000000,200.000000,3.500000,183000.000000\\n', '-118.130000,33.860000,45.000000,1320.000000,256.000000,645.000000,256.000000,4.400000,209500.000000\\n', '-118.350000,33.890000,29.000000,2940.000000,708.000000,2175.000000,684.000000,3.648600,229000.000000\\n', '-122.130000,40.010000,21.000000,916.000000,194.000000,451.000000,178.000000,2.125000,63300.000000\\n', '-122.070000,37.960000,37.000000,1217.000000,199.000000,552.000000,194.000000,5.044500,196200.000000\\n', '-117.260000,32.850000,30.000000,3652.000000,499.000000,978.000000,462.000000,8.237400,500001.000000\\n', '-117.870000,33.740000,16.000000,1243.000000,365.000000,1925.000000,376.000000,2.763200,158900.000000\\n', '-121.880000,37.440000,23.000000,1310.000000,267.000000,910.000000,261.000000,5.399400,237900.000000\\n', '-121.670000,36.580000,11.000000,5892.000000,837.000000,2327.000000,812.000000,6.155100,291800.000000\\n', '-116.890000,33.790000,12.000000,701.000000,130.000000,434.000000,110.000000,2.057700,56700.000000\\n', '-122.660000,38.470000,20.000000,2806.000000,477.000000,1369.000000,460.000000,4.750000,190500.000000\\n', '-121.450000,38.540000,38.000000,1865.000000,384.000000,1052.000000,354.000000,1.789100,60500.000000\\n', '-121.000000,37.660000,43.000000,2369.000000,413.000000,944.000000,422.000000,3.263200,138100.000000\\n', '-117.270000,32.840000,34.000000,1655.000000,450.000000,870.000000,411.000000,3.210900,376000.000000\\n', '-117.870000,34.110000,23.000000,4066.000000,819.000000,2105.000000,737.000000,4.655600,199600.000000\\n', '-121.440000,37.750000,16.000000,2229.000000,458.000000,1199.000000,445.000000,3.482100,170600.000000\\n', '-118.130000,33.760000,44.000000,2532.000000,621.000000,961.000000,550.000000,3.935200,406900.000000\\n', '-118.310000,34.260000,41.000000,1297.000000,327.000000,733.000000,315.000000,3.058300,160300.000000\\n', '-122.000000,38.370000,18.000000,1048.000000,185.000000,469.000000,162.000000,3.625000,125000.000000\\n', '-122.270000,41.230000,40.000000,1958.000000,386.000000,725.000000,331.000000,2.189800,65500.000000\\n', '-120.890000,37.520000,42.000000,1200.000000,221.000000,647.000000,192.000000,2.540200,157500.000000\\n', '-118.750000,34.290000,17.000000,5512.000000,765.000000,2734.000000,814.000000,6.607300,258100.000000\\n', '-118.180000,34.020000,36.000000,1138.000000,296.000000,1484.000000,320.000000,2.281300,150700.000000\\n', '-121.370000,38.410000,14.000000,3727.000000,685.000000,1741.000000,646.000000,3.562500,125700.000000\\n', '-120.310000,37.290000,36.000000,969.000000,206.000000,732.000000,175.000000,1.593800,57600.000000\\n', '-117.880000,33.730000,32.000000,1947.000000,355.000000,1786.000000,332.000000,4.572600,177500.000000\\n', '-117.330000,33.980000,52.000000,1417.000000,353.000000,881.000000,300.000000,1.953100,162500.000000\\n', '-118.490000,34.030000,30.000000,4061.000000,927.000000,1487.000000,865.000000,4.182700,435100.000000\\n', '-121.930000,38.010000,9.000000,2294.000000,389.000000,1142.000000,365.000000,5.336300,160800.000000\\n', '-122.450000,37.700000,46.000000,2193.000000,499.000000,1814.000000,489.000000,4.012500,230100.000000\\n', '-117.080000,32.750000,20.000000,1886.000000,586.000000,1134.000000,525.000000,1.502900,100000.000000\\n', '-116.190000,33.690000,11.000000,5692.000000,1346.000000,5682.000000,1273.000000,2.538300,74000.000000\\n', '-119.730000,36.620000,35.000000,2080.000000,365.000000,1026.000000,333.000000,3.578100,92800.000000\\n', '-117.120000,32.590000,28.000000,2793.000000,706.000000,1825.000000,676.000000,2.672400,144500.000000\\n', '-117.630000,34.090000,8.000000,3557.000000,890.000000,2251.000000,765.000000,2.681800,114100.000000\\n', '-118.260000,34.070000,40.000000,680.000000,273.000000,995.000000,249.000000,2.260700,165600.000000\\n', '-118.260000,33.970000,46.000000,1521.000000,352.000000,1100.000000,334.000000,1.550000,100600.000000\\n', '-119.840000,36.750000,34.000000,1186.000000,300.000000,774.000000,271.000000,1.575000,57100.000000\\n', '-121.280000,38.670000,29.000000,1087.000000,174.000000,430.000000,174.000000,4.362500,158800.000000\\n', '-117.350000,34.110000,34.000000,2104.000000,388.000000,1578.000000,365.000000,3.083300,88400.000000\\n', '-121.320000,36.420000,20.000000,1054.000000,269.000000,1219.000000,273.000000,3.043700,76600.000000\\n', '-118.350000,34.020000,34.000000,3978.000000,1073.000000,2725.000000,1035.000000,1.762200,167900.000000\\n', '-119.810000,37.670000,24.000000,172.000000,42.000000,79.000000,30.000000,3.833300,93800.000000\\n', '-118.150000,34.050000,33.000000,3287.000000,649.000000,1783.000000,653.000000,3.847200,293300.000000\\n', '-121.220000,37.810000,17.000000,2879.000000,542.000000,1802.000000,530.000000,3.637800,126100.000000\\n', '-119.720000,34.430000,30.000000,2491.000000,656.000000,1091.000000,576.000000,2.513900,279500.000000\\n', '-117.850000,33.840000,17.000000,2830.000000,502.000000,1370.000000,459.000000,5.178500,247300.000000\\n', '-117.200000,32.790000,31.000000,3417.000000,533.000000,1245.000000,532.000000,4.778800,276000.000000\\n', '-118.630000,34.180000,33.000000,5252.000000,760.000000,2041.000000,730.000000,6.797700,389700.000000\\n', '-117.490000,33.640000,3.000000,8874.000000,1302.000000,3191.000000,1027.000000,6.858800,302000.000000\\n', '-118.370000,33.840000,35.000000,1792.000000,322.000000,978.000000,326.000000,4.958300,342800.000000\\n', '-122.020000,38.260000,20.000000,3899.000000,763.000000,2198.000000,779.000000,3.206100,120400.000000\\n', '-121.330000,38.660000,17.000000,2767.000000,584.000000,1275.000000,568.000000,2.590900,125400.000000\\n', '-118.740000,36.230000,22.000000,1033.000000,232.000000,442.000000,136.000000,2.644700,137500.000000\\n', '-117.890000,34.490000,12.000000,3449.000000,598.000000,1502.000000,540.000000,3.704300,150800.000000\\n', '-117.410000,33.960000,24.000000,4481.000000,901.000000,2398.000000,823.000000,3.864000,123400.000000\\n', '-118.750000,34.420000,28.000000,1000.000000,206.000000,545.000000,154.000000,2.416700,191700.000000\\n', '-122.480000,37.740000,52.000000,2285.000000,435.000000,1211.000000,442.000000,4.020800,323100.000000\\n', '-118.140000,34.040000,43.000000,1949.000000,464.000000,1216.000000,457.000000,3.321400,209300.000000\\n', '-122.560000,37.900000,36.000000,1760.000000,283.000000,562.000000,246.000000,6.754600,402400.000000\\n', '-122.090000,37.390000,43.000000,2065.000000,535.000000,1029.000000,500.000000,3.731800,327700.000000\\n', '-121.800000,36.940000,29.000000,2377.000000,476.000000,1669.000000,499.000000,2.821400,190100.000000\\n', '-117.830000,33.830000,13.000000,3759.000000,489.000000,1496.000000,499.000000,8.381800,377600.000000\\n', '-121.680000,36.900000,13.000000,833.000000,130.000000,405.000000,127.000000,5.272900,322900.000000\\n', '-122.300000,37.880000,52.000000,409.000000,97.000000,208.000000,98.000000,1.697100,138800.000000\\n', '-121.040000,37.670000,16.000000,19.000000,19.000000,166.000000,9.000000,0.536000,162500.000000\\n', '-118.320000,34.090000,28.000000,2173.000000,819.000000,2548.000000,763.000000,1.879000,218800.000000\\n', '-118.120000,33.810000,36.000000,1774.000000,299.000000,784.000000,298.000000,5.044700,249200.000000\\n', '-121.810000,39.700000,21.000000,5051.000000,1054.000000,2948.000000,980.000000,1.586300,81300.000000\\n', '-121.840000,36.520000,18.000000,3165.000000,533.000000,1312.000000,434.000000,6.523400,357400.000000\\n', '-121.790000,37.330000,18.000000,3611.000000,614.000000,2381.000000,642.000000,5.634500,231000.000000\\n', '-118.160000,34.180000,48.000000,568.000000,145.000000,559.000000,135.000000,2.413500,135700.000000\\n', '-119.400000,36.590000,37.000000,1486.000000,296.000000,977.000000,290.000000,3.507400,93800.000000\\n', '-122.270000,37.800000,39.000000,1715.000000,623.000000,1327.000000,467.000000,1.847700,179200.000000\\n', '-117.730000,33.570000,5.000000,11976.000000,2495.000000,4327.000000,2009.000000,4.848800,194400.000000\\n', '-121.280000,37.920000,30.000000,1061.000000,230.000000,851.000000,195.000000,2.441200,61600.000000\\n', '-119.810000,36.770000,43.000000,2341.000000,395.000000,890.000000,375.000000,3.426500,85000.000000\\n', '-122.260000,37.850000,50.000000,1120.000000,283.000000,697.000000,264.000000,2.125000,140000.000000\\n', '-117.950000,33.930000,37.000000,2633.000000,630.000000,1904.000000,630.000000,2.612300,161300.000000\\n', '-120.120000,38.120000,37.000000,3355.000000,666.000000,338.000000,136.000000,2.062500,88900.000000\\n', '-121.880000,37.350000,52.000000,1704.000000,418.000000,1336.000000,411.000000,2.816700,183500.000000\\n', '-118.110000,33.870000,15.000000,3254.000000,598.000000,1772.000000,618.000000,5.041700,240800.000000\\n', '-122.080000,37.690000,42.000000,1414.000000,274.000000,629.000000,244.000000,3.347800,184900.000000\\n', '-121.680000,39.150000,14.000000,2774.000000,451.000000,1292.000000,428.000000,4.383300,115200.000000\\n', '-122.160000,37.710000,36.000000,666.000000,132.000000,366.000000,134.000000,3.464300,175000.000000\\n', '-118.070000,34.090000,35.000000,1224.000000,267.000000,887.000000,276.000000,4.098700,202400.000000\\n', '-117.690000,33.650000,16.000000,5805.000000,852.000000,2356.000000,795.000000,6.106200,274600.000000\\n', '-118.350000,34.030000,49.000000,2334.000000,530.000000,1334.000000,447.000000,1.890000,124000.000000\\n', '-122.790000,39.020000,23.000000,642.000000,203.000000,265.000000,84.000000,1.883300,96900.000000\\n', '-118.140000,33.890000,33.000000,2867.000000,786.000000,1774.000000,705.000000,2.929200,183400.000000\\n', '-121.890000,37.420000,26.000000,40.000000,8.000000,52.000000,7.000000,7.719700,225000.000000\\n', '-122.410000,37.760000,52.000000,492.000000,139.000000,316.000000,168.000000,3.086500,225000.000000\\n', '-118.600000,34.160000,37.000000,3441.000000,584.000000,1283.000000,544.000000,4.165600,313100.000000\\n', '-118.410000,34.020000,24.000000,2610.000000,756.000000,1322.000000,692.000000,3.502200,281300.000000\\n', '-117.530000,33.970000,29.000000,1430.000000,273.000000,872.000000,283.000000,4.083300,141000.000000\\n', '-117.130000,32.700000,35.000000,365.000000,98.000000,463.000000,112.000000,2.558800,78800.000000\\n', '-117.140000,32.900000,16.000000,3217.000000,716.000000,2054.000000,687.000000,4.223400,162100.000000\\n', '-118.160000,34.110000,31.000000,5715.000000,1154.000000,2639.000000,1079.000000,4.166100,364400.000000\\n', '-117.180000,32.700000,42.000000,1691.000000,286.000000,761.000000,281.000000,5.138600,404500.000000\\n', '-117.970000,33.720000,24.000000,2991.000000,500.000000,1437.000000,453.000000,5.428600,273400.000000\\n', '-118.250000,34.090000,52.000000,104.000000,20.000000,32.000000,17.000000,3.750000,241700.000000\\n', '-118.140000,34.110000,52.000000,3367.000000,545.000000,1427.000000,535.000000,5.229200,444500.000000\\n', '-120.010000,34.540000,30.000000,2992.000000,609.000000,1288.000000,465.000000,3.937500,292900.000000\\n', '-117.410000,34.100000,5.000000,4937.000000,1139.000000,2204.000000,812.000000,2.527200,92000.000000\\n', '-118.220000,34.520000,7.000000,4524.000000,735.000000,2298.000000,717.000000,6.553800,311600.000000\\n', '-117.910000,33.870000,29.000000,1121.000000,291.000000,762.000000,276.000000,2.500000,143800.000000\\n', '-117.090000,32.760000,29.000000,1650.000000,496.000000,882.000000,445.000000,2.228700,140000.000000\\n', '-122.270000,37.820000,52.000000,1630.000000,456.000000,1162.000000,400.000000,1.247500,104200.000000\\n', '-118.200000,34.060000,46.000000,321.000000,101.000000,401.000000,86.000000,2.102900,109400.000000\\n', '-118.360000,33.900000,40.000000,1271.000000,276.000000,725.000000,234.000000,5.045200,231900.000000\\n', '-122.000000,37.860000,18.000000,8953.000000,1074.000000,3011.000000,993.000000,10.737200,500001.000000\\n', '-121.360000,39.520000,15.000000,2490.000000,527.000000,1229.000000,497.000000,2.391700,85700.000000\\n', '-122.000000,38.280000,3.000000,7030.000000,1191.000000,3238.000000,1055.000000,4.962000,161700.000000\\n', '-117.700000,33.680000,29.000000,5650.000000,1084.000000,3985.000000,1056.000000,2.819200,162500.000000\\n', '-118.280000,34.030000,26.000000,2107.000000,809.000000,2821.000000,572.000000,0.844000,350000.000000\\n', '-118.250000,34.150000,13.000000,1107.000000,479.000000,616.000000,443.000000,0.818500,187500.000000\\n', '-122.540000,37.930000,43.000000,2998.000000,470.000000,970.000000,430.000000,5.538500,431800.000000\\n', '-118.250000,34.020000,50.000000,180.000000,89.000000,356.000000,76.000000,2.194400,158300.000000\\n', '-122.060000,36.980000,15.000000,3385.000000,669.000000,1571.000000,615.000000,4.225400,320900.000000\\n', '-122.450000,37.770000,52.000000,2339.000000,548.000000,1090.000000,507.000000,3.367900,350000.000000\\n', '-118.040000,33.850000,23.000000,3132.000000,469.000000,1646.000000,478.000000,5.777000,315900.000000\\n', '-118.120000,34.150000,19.000000,557.000000,216.000000,673.000000,212.000000,2.176300,168800.000000\\n', '-118.310000,33.940000,43.000000,2104.000000,393.000000,1132.000000,394.000000,3.068200,142000.000000\\n', '-118.440000,34.160000,33.000000,1616.000000,322.000000,580.000000,311.000000,4.039100,337500.000000\\n', '-118.460000,34.170000,24.000000,2814.000000,675.000000,1463.000000,620.000000,4.187500,309300.000000\\n', '-117.930000,34.060000,35.000000,1022.000000,183.000000,628.000000,187.000000,3.937500,187500.000000\\n', '-121.810000,36.570000,13.000000,3030.000000,413.000000,1027.000000,363.000000,6.961500,500001.000000\\n', '-118.420000,34.000000,33.000000,1139.000000,299.000000,734.000000,257.000000,3.270800,325000.000000\\n', '-118.330000,34.010000,44.000000,1762.000000,463.000000,786.000000,445.000000,1.923100,188500.000000\\n', '-118.240000,33.930000,19.000000,325.000000,74.000000,354.000000,87.000000,2.750000,90600.000000\\n', '-116.940000,32.810000,22.000000,4266.000000,1010.000000,2766.000000,985.000000,2.817500,135200.000000\\n', '-122.600000,38.240000,16.000000,2621.000000,416.000000,1247.000000,386.000000,4.860300,198400.000000\\n', '-118.210000,33.970000,52.000000,4220.000000,908.000000,3731.000000,892.000000,3.190100,167600.000000\\n', '-118.730000,34.270000,25.000000,3409.000000,493.000000,1699.000000,484.000000,5.653000,225800.000000\\n', '-122.120000,37.370000,37.000000,1446.000000,181.000000,549.000000,190.000000,10.735500,500001.000000\\n', '-122.420000,40.440000,16.000000,994.000000,185.000000,495.000000,181.000000,2.187500,76400.000000\\n', '-122.130000,37.720000,26.000000,2862.000000,394.000000,1030.000000,397.000000,7.912000,367300.000000\\n', '-121.170000,37.880000,22.000000,1283.000000,256.000000,3082.000000,239.000000,3.536500,111800.000000\\n', '-122.430000,37.720000,48.000000,1289.000000,280.000000,782.000000,235.000000,3.671900,259800.000000\\n', '-118.220000,33.910000,27.000000,500.000000,159.000000,732.000000,162.000000,2.742600,103100.000000\\n', '-121.170000,37.970000,28.000000,1374.000000,248.000000,769.000000,229.000000,3.638900,130400.000000\\n', '-122.270000,37.860000,52.000000,2307.000000,583.000000,1127.000000,548.000000,1.844700,198200.000000\\n', '-119.190000,36.140000,41.000000,759.000000,140.000000,408.000000,129.000000,3.900000,85900.000000\\n', '-122.410000,37.600000,31.000000,4424.000000,834.000000,1915.000000,817.000000,4.136400,412000.000000\\n', '-116.830000,32.810000,18.000000,2367.000000,402.000000,1021.000000,395.000000,4.812500,210500.000000\\n', '-119.340000,36.330000,17.000000,2250.000000,430.000000,1218.000000,468.000000,4.181200,93700.000000\\n', '-123.220000,39.160000,29.000000,6121.000000,1222.000000,3595.000000,1189.000000,2.631000,109600.000000\\n', '-121.920000,37.720000,22.000000,4638.000000,716.000000,2302.000000,687.000000,5.347000,219500.000000\\n', '-116.570000,33.760000,25.000000,2616.000000,547.000000,581.000000,343.000000,3.136400,301600.000000\\n', '-118.170000,34.180000,44.000000,1401.000000,246.000000,607.000000,271.000000,2.847200,218800.000000\\n', '-117.200000,32.800000,36.000000,4018.000000,1067.000000,1620.000000,842.000000,2.359900,168400.000000\\n', '-117.580000,34.090000,27.000000,754.000000,200.000000,746.000000,185.000000,1.953100,100800.000000\\n', '-118.240000,33.960000,34.000000,1724.000000,432.000000,1876.000000,416.000000,2.107800,100600.000000\\n', '-122.240000,40.180000,39.000000,2191.000000,493.000000,1307.000000,499.000000,1.648300,60800.000000\\n', '-119.690000,36.820000,15.000000,3303.000000,512.000000,1687.000000,505.000000,4.810000,93600.000000\\n', '-121.690000,36.620000,19.000000,1907.000000,323.000000,681.000000,270.000000,6.033200,244900.000000\\n', '-119.280000,36.350000,7.000000,3598.000000,701.000000,2080.000000,678.000000,3.111100,72400.000000\\n', '-117.990000,33.810000,46.000000,38.000000,8.000000,66.000000,14.000000,4.166700,162500.000000\\n', '-117.650000,35.000000,36.000000,1184.000000,316.000000,672.000000,241.000000,1.910700,39800.000000\\n', '-118.150000,34.020000,43.000000,2172.000000,605.000000,2386.000000,597.000000,2.823900,150600.000000\\n', '-122.430000,37.730000,52.000000,1583.000000,347.000000,935.000000,341.000000,4.678600,263200.000000\\n', '-117.040000,32.730000,36.000000,2084.000000,400.000000,1097.000000,398.000000,3.271700,130700.000000\\n', '-118.080000,34.140000,45.000000,2923.000000,604.000000,1903.000000,560.000000,3.172900,218700.000000\\n', '-121.070000,39.200000,45.000000,204.000000,62.000000,133.000000,51.000000,1.000000,90600.000000\\n', '-117.120000,32.660000,52.000000,16.000000,4.000000,8.000000,3.000000,1.125000,60000.000000\\n', '-118.130000,34.130000,39.000000,2099.000000,397.000000,1500.000000,380.000000,4.830400,493200.000000\\n', '-122.220000,37.880000,20.000000,95.000000,13.000000,31.000000,15.000000,2.444400,475000.000000\\n', '-122.520000,37.930000,34.000000,2782.000000,502.000000,1219.000000,507.000000,5.077900,333900.000000\\n', '-122.090000,37.630000,36.000000,1570.000000,274.000000,992.000000,249.000000,5.364400,168800.000000\\n', '-117.970000,33.820000,26.000000,4013.000000,985.000000,2442.000000,922.000000,3.765500,197700.000000\\n', '-118.280000,34.050000,41.000000,1075.000000,597.000000,2260.000000,614.000000,1.300000,162500.000000\\n', '-118.390000,33.790000,30.000000,4402.000000,563.000000,1582.000000,551.000000,10.898000,500001.000000\\n', '-122.400000,37.580000,26.000000,3281.000000,531.000000,1145.000000,480.000000,6.358000,500001.000000\\n', '-118.260000,34.060000,42.000000,2541.000000,1282.000000,3974.000000,1189.000000,1.585400,87500.000000\\n', '-122.160000,37.480000,36.000000,2238.000000,479.000000,1949.000000,457.000000,2.376900,157300.000000\\n', '-117.430000,34.110000,17.000000,4109.000000,884.000000,2544.000000,780.000000,2.775700,109800.000000\\n', '-118.280000,33.930000,42.000000,1898.000000,460.000000,1503.000000,429.000000,2.517900,97400.000000\\n', '-118.370000,33.950000,5.000000,6955.000000,2062.000000,3591.000000,1566.000000,3.111000,247600.000000\\n', '-121.490000,38.560000,52.000000,1777.000000,368.000000,624.000000,350.000000,3.672900,137800.000000\\n', '-121.800000,38.550000,11.000000,5121.000000,899.000000,2258.000000,901.000000,4.716800,223200.000000\\n', '-122.190000,39.920000,20.000000,2563.000000,658.000000,1363.000000,611.000000,1.023000,54200.000000\\n', '-118.010000,33.840000,29.000000,3740.000000,691.000000,1724.000000,638.000000,3.962800,215600.000000\\n', '-118.310000,33.960000,48.000000,2015.000000,356.000000,1020.000000,338.000000,4.062500,138700.000000\\n', '-121.060000,39.220000,52.000000,1749.000000,422.000000,837.000000,391.000000,2.325000,109700.000000\\n', '-121.350000,38.610000,27.000000,3900.000000,776.000000,1549.000000,761.000000,2.778800,115700.000000\\n', '-118.310000,33.990000,48.000000,2235.000000,433.000000,1363.000000,433.000000,1.655900,101400.000000\\n', '-121.930000,37.270000,28.000000,3428.000000,753.000000,1753.000000,729.000000,4.103300,281000.000000\\n', '-117.310000,33.170000,7.000000,2349.000000,312.000000,809.000000,282.000000,5.552000,283900.000000\\n', '-120.890000,37.480000,27.000000,1118.000000,195.000000,647.000000,209.000000,2.913500,159400.000000\\n', '-119.470000,35.140000,19.000000,4190.000000,690.000000,1973.000000,702.000000,3.992900,88300.000000\\n', '-118.410000,34.180000,35.000000,1975.000000,384.000000,882.000000,406.000000,4.375000,291700.000000\\n', '-119.810000,36.700000,52.000000,314.000000,57.000000,178.000000,66.000000,1.240400,52500.000000\\n', '-117.080000,33.160000,11.000000,6341.000000,1030.000000,2697.000000,977.000000,4.855400,206700.000000\\n', '-119.270000,35.870000,12.000000,972.000000,269.000000,1134.000000,286.000000,1.630000,49500.000000\\n', '-122.310000,40.750000,18.000000,1411.000000,330.000000,494.000000,227.000000,1.491100,75800.000000\\n', '-117.200000,33.290000,12.000000,6358.000000,1182.000000,2778.000000,1020.000000,4.035700,295900.000000\\n', '-118.430000,34.260000,43.000000,729.000000,172.000000,935.000000,174.000000,2.951900,140900.000000\\n', '-121.520000,39.510000,30.000000,3085.000000,610.000000,1688.000000,575.000000,2.334000,72200.000000\\n', '-118.770000,34.270000,7.000000,3074.000000,794.000000,1816.000000,654.000000,2.713700,196400.000000\\n', '-124.100000,40.950000,17.000000,1485.000000,345.000000,823.000000,316.000000,1.899300,78400.000000\\n', '-117.150000,32.800000,27.000000,1937.000000,537.000000,1211.000000,482.000000,2.750000,87500.000000\\n', '-118.370000,34.160000,11.000000,2901.000000,871.000000,1659.000000,789.000000,3.110600,209400.000000\\n', '-122.500000,37.740000,44.000000,2792.000000,615.000000,1640.000000,579.000000,4.062500,272800.000000\\n', '-120.920000,39.560000,48.000000,1276.000000,292.000000,358.000000,145.000000,1.875000,66600.000000\\n', '-122.470000,38.510000,25.000000,928.000000,195.000000,413.000000,184.000000,3.490400,196900.000000\\n', '-117.890000,33.610000,41.000000,1790.000000,361.000000,540.000000,284.000000,6.024700,500001.000000\\n', '-121.350000,38.400000,11.000000,2322.000000,459.000000,1373.000000,424.000000,3.175000,94400.000000\\n', '-117.920000,34.120000,32.000000,2552.000000,576.000000,2161.000000,548.000000,2.945900,144400.000000\\n', '-118.310000,33.800000,30.000000,3096.000000,757.000000,2048.000000,704.000000,3.125000,233300.000000\\n', '-120.350000,37.040000,37.000000,1495.000000,292.000000,858.000000,275.000000,2.930600,46300.000000\\n', '-122.000000,37.310000,28.000000,3811.000000,585.000000,1795.000000,581.000000,7.838300,372700.000000\\n', '-118.010000,33.950000,37.000000,1165.000000,210.000000,627.000000,221.000000,4.692300,181000.000000\\n', '-118.070000,34.090000,40.000000,1745.000000,370.000000,1293.000000,357.000000,2.547400,198100.000000\\n', '-117.500000,33.920000,28.000000,2101.000000,337.000000,1061.000000,348.000000,4.550000,146800.000000\\n', '-123.740000,40.660000,25.000000,2395.000000,431.000000,983.000000,375.000000,3.046900,136000.000000\\n', '-122.030000,37.910000,29.000000,5438.000000,871.000000,2310.000000,890.000000,5.036200,275300.000000\\n', '-118.910000,34.220000,15.000000,5644.000000,757.000000,2659.000000,783.000000,6.755900,312000.000000\\n', '-117.960000,34.140000,9.000000,907.000000,207.000000,619.000000,194.000000,3.946400,179600.000000\\n', '-121.800000,38.010000,46.000000,2273.000000,495.000000,1088.000000,447.000000,2.253200,109400.000000\\n', '-122.290000,37.530000,35.000000,2043.000000,511.000000,1089.000000,504.000000,3.027800,310600.000000\\n', '-122.140000,37.670000,34.000000,3036.000000,533.000000,1366.000000,500.000000,4.238600,192300.000000\\n', '-117.850000,33.790000,52.000000,2102.000000,403.000000,898.000000,365.000000,3.682700,236800.000000\\n', '-122.100000,37.650000,31.000000,1797.000000,327.000000,796.000000,319.000000,4.442700,204500.000000\\n', '-122.120000,37.910000,34.000000,5683.000000,755.000000,1962.000000,723.000000,8.367800,455300.000000\\n', '-119.290000,36.320000,27.000000,1513.000000,374.000000,839.000000,350.000000,1.201200,64600.000000\\n', '-117.400000,34.010000,25.000000,1858.000000,366.000000,1311.000000,331.000000,2.708300,87800.000000\\n', '-117.060000,32.770000,32.000000,3888.000000,827.000000,3868.000000,841.000000,3.075500,166800.000000\\n', '-118.300000,34.250000,44.000000,1442.000000,285.000000,859.000000,292.000000,4.583300,197300.000000\\n', '-122.230000,40.150000,14.000000,2297.000000,573.000000,1637.000000,551.000000,1.787000,51600.000000\\n', '-117.910000,33.820000,32.000000,2696.000000,640.000000,2330.000000,626.000000,2.947900,184600.000000\\n', '-122.530000,37.970000,44.000000,3595.000000,953.000000,1831.000000,910.000000,2.603600,287500.000000\\n', '-121.790000,37.000000,28.000000,2715.000000,451.000000,1154.000000,386.000000,4.802100,290400.000000\\n', '-118.460000,33.990000,44.000000,1122.000000,287.000000,531.000000,256.000000,4.059800,335900.000000\\n', '-118.030000,33.970000,32.000000,2468.000000,552.000000,1190.000000,479.000000,3.827500,238500.000000\\n', '-122.320000,38.000000,32.000000,2275.000000,397.000000,1233.000000,418.000000,4.043700,162800.000000\\n', '-118.280000,34.170000,22.000000,2664.000000,651.000000,1553.000000,629.000000,3.635400,256300.000000\\n', '-119.140000,36.060000,32.000000,1838.000000,441.000000,1628.000000,425.000000,1.645200,41500.000000\\n', '-117.130000,34.070000,34.000000,2405.000000,541.000000,1342.000000,514.000000,2.803100,86900.000000\\n', '-120.670000,35.300000,32.000000,4202.000000,986.000000,2309.000000,956.000000,2.216500,231700.000000\\n', '-118.060000,34.120000,34.000000,2941.000000,558.000000,1660.000000,576.000000,4.566700,271500.000000\\n', '-122.390000,40.570000,38.000000,855.000000,172.000000,468.000000,150.000000,1.409100,84400.000000\\n', '-118.390000,33.880000,33.000000,2543.000000,439.000000,1098.000000,416.000000,5.968300,495500.000000\\n', '-118.160000,34.020000,47.000000,1055.000000,298.000000,1303.000000,302.000000,2.696400,138800.000000\\n', '-122.580000,37.980000,52.000000,1180.000000,216.000000,467.000000,197.000000,4.961500,292200.000000\\n', '-118.020000,33.920000,35.000000,2075.000000,424.000000,1312.000000,396.000000,3.796900,164800.000000\\n', '-119.700000,34.400000,25.000000,1858.000000,493.000000,865.000000,460.000000,3.093800,312500.000000\\n', '-122.680000,38.430000,29.000000,488.000000,63.000000,161.000000,62.000000,6.077400,334400.000000\\n', '-121.350000,38.590000,29.000000,1285.000000,193.000000,460.000000,206.000000,5.324300,265700.000000\\n', '-121.980000,37.270000,25.000000,3075.000000,564.000000,1633.000000,543.000000,5.252800,269400.000000\\n', '-118.080000,34.580000,5.000000,1113.000000,186.000000,631.000000,168.000000,4.171900,146600.000000\\n', '-118.250000,34.060000,20.000000,41.000000,17.000000,87.000000,25.000000,1.549100,225000.000000\\n', '-122.250000,37.820000,26.000000,3959.000000,1196.000000,1749.000000,1217.000000,3.023300,255000.000000\\n', '-119.050000,34.350000,39.000000,950.000000,300.000000,1366.000000,312.000000,2.244300,146600.000000\\n', '-117.540000,33.760000,5.000000,5846.000000,1035.000000,3258.000000,1001.000000,4.796500,160800.000000\\n', '-118.210000,33.880000,31.000000,1332.000000,417.000000,1405.000000,363.000000,2.012500,143000.000000\\n', '-117.200000,32.790000,29.000000,1213.000000,228.000000,654.000000,246.000000,4.598700,255600.000000\\n', '-120.960000,37.590000,11.000000,4236.000000,879.000000,2410.000000,850.000000,2.384900,122000.000000\\n', '-118.240000,34.010000,48.000000,396.000000,99.000000,485.000000,110.000000,2.375000,107500.000000\\n', '-118.270000,34.000000,43.000000,1638.000000,434.000000,1213.000000,390.000000,1.340300,110800.000000\\n', '-122.250000,37.890000,41.000000,1125.000000,195.000000,356.000000,181.000000,6.159300,344000.000000\\n', '-117.300000,34.090000,40.000000,1051.000000,244.000000,745.000000,243.000000,2.184200,75200.000000\\n', '-120.910000,37.740000,19.000000,1690.000000,327.000000,855.000000,296.000000,3.250000,176700.000000\\n', '-122.160000,38.900000,33.000000,1221.000000,236.000000,488.000000,199.000000,3.757400,92700.000000\\n', '-118.310000,33.890000,35.000000,2144.000000,423.000000,1192.000000,417.000000,4.145800,231500.000000\\n', '-118.180000,34.020000,43.000000,887.000000,219.000000,965.000000,217.000000,2.625000,133900.000000\\n', '-117.970000,33.750000,32.000000,1564.000000,270.000000,973.000000,290.000000,3.750000,190400.000000\\n', '-117.950000,35.080000,1.000000,83.000000,15.000000,32.000000,15.000000,4.875000,141700.000000\\n', '-118.030000,33.910000,35.000000,2323.000000,406.000000,1741.000000,398.000000,4.243700,164100.000000\\n', '-118.380000,33.970000,43.000000,2715.000000,458.000000,1151.000000,434.000000,7.489700,362600.000000\\n', '-119.820000,36.720000,25.000000,2581.000000,528.000000,1642.000000,509.000000,1.643500,52600.000000\\n', '-122.060000,37.680000,30.000000,5367.000000,1207.000000,2667.000000,1047.000000,3.179600,170300.000000\\n', '-122.410000,40.550000,19.000000,3753.000000,761.000000,1952.000000,738.000000,3.095400,86500.000000\\n', '-117.880000,33.720000,36.000000,1910.000000,352.000000,1593.000000,329.000000,3.890000,170000.000000\\n', '-120.800000,38.310000,37.000000,1341.000000,256.000000,533.000000,242.000000,3.213500,123600.000000\\n', '-118.100000,34.170000,48.000000,1111.000000,229.000000,421.000000,202.000000,3.281300,268100.000000\\n', '-118.090000,34.120000,38.000000,1713.000000,285.000000,779.000000,286.000000,5.615200,359900.000000\\n', '-118.310000,34.060000,47.000000,3038.000000,1533.000000,4225.000000,1472.000000,1.672500,187500.000000\\n', '-118.020000,33.800000,16.000000,2956.000000,393.000000,1379.000000,429.000000,8.495200,359600.000000\\n', '-121.940000,37.280000,18.000000,4356.000000,1334.000000,1968.000000,1245.000000,3.629400,240000.000000\\n', '-117.950000,34.080000,37.000000,1137.000000,203.000000,672.000000,226.000000,3.296900,189000.000000\\n', '-118.150000,33.940000,36.000000,1948.000000,341.000000,992.000000,363.000000,4.259400,242400.000000\\n', '-121.810000,37.990000,22.000000,2331.000000,359.000000,1086.000000,340.000000,5.143500,150800.000000\\n', '-121.810000,38.580000,17.000000,1964.000000,314.000000,808.000000,286.000000,5.962900,286000.000000\\n', '-121.280000,38.770000,6.000000,3819.000000,550.000000,1738.000000,587.000000,5.871800,201400.000000\\n', '-118.430000,34.010000,43.000000,1487.000000,242.000000,675.000000,247.000000,5.340300,489800.000000\\n', '-121.380000,38.590000,36.000000,1239.000000,237.000000,764.000000,222.000000,3.015600,103000.000000\\n', '-117.680000,35.650000,15.000000,2701.000000,576.000000,1245.000000,513.000000,3.326900,81900.000000\\n', '-117.690000,33.580000,8.000000,2887.000000,351.000000,1176.000000,351.000000,10.395300,500001.000000\\n', '-118.240000,34.000000,23.000000,588.000000,157.000000,716.000000,173.000000,1.205600,87500.000000\\n', '-117.700000,33.600000,25.000000,1321.000000,295.000000,396.000000,278.000000,3.113100,77100.000000\\n', '-118.380000,33.860000,12.000000,4235.000000,735.000000,1798.000000,683.000000,6.424200,365500.000000\\n', '-117.050000,32.610000,31.000000,4033.000000,715.000000,2585.000000,715.000000,3.509600,139900.000000\\n', '-121.380000,38.640000,19.000000,4563.000000,1069.000000,2256.000000,926.000000,2.147200,143400.000000\\n', '-117.100000,32.740000,20.000000,3854.000000,1046.000000,3555.000000,966.000000,1.674700,100000.000000\\n', '-122.470000,37.760000,48.000000,2064.000000,484.000000,1055.000000,467.000000,2.871100,329600.000000\\n', '-117.840000,33.760000,16.000000,238.000000,51.000000,93.000000,50.000000,5.375000,215700.000000\\n', '-122.260000,37.880000,52.000000,2604.000000,837.000000,1798.000000,769.000000,1.725000,287500.000000\\n', '-118.400000,33.870000,45.000000,2181.000000,505.000000,965.000000,471.000000,5.381600,500001.000000\\n', '-122.370000,38.330000,29.000000,1868.000000,291.000000,764.000000,284.000000,4.825000,195100.000000\\n', '-117.980000,34.010000,27.000000,2643.000000,418.000000,1344.000000,381.000000,5.705700,262100.000000\\n', '-122.700000,38.450000,26.000000,2011.000000,557.000000,855.000000,530.000000,1.125000,233300.000000\\n', '-118.410000,33.970000,44.000000,2789.000000,503.000000,3732.000000,474.000000,4.617600,352300.000000\\n', '-121.920000,37.300000,36.000000,2088.000000,358.000000,772.000000,347.000000,4.276200,310100.000000\\n', '-122.110000,37.370000,49.000000,1068.000000,190.000000,410.000000,171.000000,7.204500,500001.000000\\n', '-121.870000,37.390000,9.000000,2522.000000,547.000000,1591.000000,481.000000,4.909100,259700.000000\\n', '-120.180000,39.140000,25.000000,2171.000000,386.000000,248.000000,116.000000,3.037500,171900.000000\\n', '-117.060000,32.760000,36.000000,2785.000000,577.000000,1275.000000,527.000000,2.301500,156800.000000\\n', '-117.240000,33.930000,12.000000,7105.000000,1447.000000,4520.000000,1333.000000,3.270500,113200.000000\\n', '-118.250000,33.980000,47.000000,617.000000,162.000000,754.000000,144.000000,2.296900,116700.000000\\n', '-117.800000,33.680000,14.000000,2635.000000,516.000000,1150.000000,499.000000,4.439100,306700.000000\\n', '-119.780000,36.370000,41.000000,831.000000,149.000000,443.000000,146.000000,3.140600,100000.000000\\n', '-117.040000,32.700000,7.000000,9311.000000,1703.000000,7302.000000,1694.000000,4.419000,156900.000000\\n', '-118.290000,34.000000,6.000000,1487.000000,468.000000,1509.000000,403.000000,1.463900,112500.000000\\n', '-118.360000,34.060000,52.000000,2130.000000,455.000000,921.000000,395.000000,2.960500,500001.000000\\n', '-122.420000,37.620000,39.000000,1355.000000,214.000000,682.000000,246.000000,6.344300,324700.000000\\n', '-118.420000,34.250000,37.000000,1545.000000,341.000000,1909.000000,352.000000,3.679100,148100.000000\\n', '-121.100000,38.950000,17.000000,1475.000000,403.000000,943.000000,363.000000,2.128700,55300.000000\\n', '-117.740000,34.050000,27.000000,852.000000,237.000000,1024.000000,221.000000,2.114100,110900.000000\\n', '-122.390000,37.740000,52.000000,126.000000,24.000000,37.000000,27.000000,10.226400,225000.000000\\n', '-118.370000,34.080000,52.000000,2946.000000,695.000000,1258.000000,650.000000,3.978300,374100.000000\\n', '-122.080000,37.870000,24.000000,6130.000000,1359.000000,1750.000000,1286.000000,2.916700,102700.000000\\n', '-118.440000,34.200000,28.000000,1732.000000,435.000000,1198.000000,417.000000,2.921900,241300.000000\\n', '-121.370000,38.560000,19.000000,6308.000000,1167.000000,3012.000000,1112.000000,2.946400,113500.000000\\n', '-122.100000,37.930000,20.000000,10212.000000,1424.000000,4083.000000,1374.000000,8.039000,382200.000000\\n', '-117.220000,32.950000,4.000000,18123.000000,3173.000000,7301.000000,2964.000000,6.357000,322500.000000\\n', '-122.130000,37.460000,31.000000,2247.000000,573.000000,1711.000000,511.000000,3.264200,185600.000000\\n', '-122.300000,38.290000,20.000000,1789.000000,434.000000,1113.000000,398.000000,2.472800,139700.000000\\n', '-123.410000,40.610000,17.000000,769.000000,205.000000,301.000000,126.000000,1.787500,55000.000000\\n', '-120.770000,37.010000,28.000000,1689.000000,378.000000,1057.000000,267.000000,3.125000,156300.000000\\n', '-118.800000,34.410000,45.000000,1610.000000,406.000000,1148.000000,347.000000,2.700000,120400.000000\\n', '-119.270000,34.270000,52.000000,1577.000000,343.000000,836.000000,335.000000,3.589300,206600.000000\\n', '-122.470000,37.740000,52.000000,3797.000000,668.000000,1633.000000,658.000000,5.678700,363600.000000\\n', '-118.260000,34.130000,25.000000,3208.000000,1111.000000,2843.000000,1005.000000,2.667300,218100.000000\\n', '-119.770000,36.760000,40.000000,2009.000000,519.000000,2219.000000,505.000000,1.210100,49100.000000\\n', '-124.160000,41.920000,19.000000,1668.000000,324.000000,841.000000,283.000000,2.133600,75000.000000\\n', '-119.030000,36.130000,24.000000,2259.000000,408.000000,1169.000000,395.000000,1.710600,95500.000000\\n', '-122.180000,37.790000,41.000000,1411.000000,233.000000,626.000000,214.000000,7.087500,240700.000000\\n', '-123.850000,39.390000,23.000000,4671.000000,912.000000,2095.000000,857.000000,3.184000,140500.000000\\n', '-122.700000,38.330000,16.000000,1244.000000,242.000000,696.000000,236.000000,3.636900,158700.000000\\n', '-118.100000,33.850000,36.000000,956.000000,159.000000,416.000000,157.000000,4.642900,223700.000000\\n', '-117.990000,34.080000,35.000000,1032.000000,207.000000,954.000000,191.000000,2.890600,134800.000000\\n', '-121.930000,37.730000,8.000000,831.000000,231.000000,404.000000,224.000000,3.375000,350000.000000\\n', '-118.440000,34.230000,43.000000,2257.000000,429.000000,1418.000000,442.000000,4.527800,181800.000000\\n', '-118.320000,34.260000,24.000000,5106.000000,1010.000000,2310.000000,957.000000,4.437500,191500.000000\\n', '-118.150000,34.110000,39.000000,2618.000000,582.000000,1314.000000,532.000000,3.587500,309300.000000\\n', '-117.740000,34.040000,27.000000,2215.000000,440.000000,1987.000000,449.000000,3.042900,129600.000000\\n', '-121.350000,38.280000,17.000000,2756.000000,557.000000,1986.000000,530.000000,3.223400,82000.000000\\n', '-122.750000,39.010000,17.000000,4162.000000,967.000000,889.000000,414.000000,3.418700,200500.000000\\n', '-120.660000,35.460000,17.000000,3748.000000,609.000000,1860.000000,612.000000,4.517900,225600.000000\\n', '-122.620000,38.920000,13.000000,520.000000,115.000000,249.000000,109.000000,1.841700,84700.000000\\n', '-117.220000,34.260000,16.000000,8020.000000,1432.000000,1749.000000,540.000000,4.971600,162500.000000\\n', '-117.920000,33.750000,8.000000,2325.000000,598.000000,1511.000000,565.000000,3.362900,137500.000000\\n', '-122.280000,37.810000,36.000000,2914.000000,562.000000,1236.000000,509.000000,2.446400,102100.000000\\n', '-118.120000,33.810000,37.000000,1798.000000,331.000000,860.000000,340.000000,4.214300,228500.000000\\n', '-119.190000,36.060000,29.000000,1815.000000,376.000000,1421.000000,339.000000,1.909100,71300.000000\\n', '-117.970000,34.070000,22.000000,1438.000000,364.000000,1325.000000,335.000000,2.780200,162500.000000\\n', '-118.090000,34.030000,27.000000,3797.000000,597.000000,2043.000000,614.000000,5.500000,276800.000000\\n', '-121.930000,37.280000,10.000000,3163.000000,832.000000,1537.000000,797.000000,4.167400,214000.000000\\n', '-122.650000,38.960000,27.000000,2143.000000,580.000000,898.000000,367.000000,1.676900,63200.000000\\n', '-122.490000,37.750000,48.000000,2387.000000,424.000000,1041.000000,408.000000,3.756200,321200.000000\\n', '-122.310000,37.560000,45.000000,1792.000000,301.000000,829.000000,318.000000,4.901300,330100.000000\\n', '-121.270000,38.140000,33.000000,3557.000000,894.000000,2659.000000,894.000000,2.288300,86900.000000\\n', '-118.390000,34.230000,18.000000,3405.000000,831.000000,3001.000000,795.000000,3.008300,181900.000000\\n', '-118.390000,34.070000,33.000000,5301.000000,1281.000000,2243.000000,1159.000000,4.238600,500001.000000\\n', '-117.150000,32.920000,16.000000,2366.000000,392.000000,1482.000000,407.000000,4.902400,182900.000000\\n', '-122.090000,37.380000,34.000000,1959.000000,342.000000,849.000000,357.000000,6.288400,414700.000000\\n', '-117.060000,32.610000,23.000000,1630.000000,362.000000,1267.000000,418.000000,2.562500,131100.000000\\n', '-122.330000,37.910000,36.000000,1954.000000,513.000000,1437.000000,440.000000,1.125000,93800.000000\\n', '-116.920000,32.760000,7.000000,1659.000000,237.000000,862.000000,242.000000,5.274100,249400.000000\\n', '-116.000000,34.120000,32.000000,3163.000000,712.000000,1358.000000,544.000000,2.125000,57700.000000\\n', '-117.690000,33.600000,19.000000,3562.000000,439.000000,1584.000000,470.000000,6.421100,288100.000000\\n', '-117.230000,33.910000,9.000000,11654.000000,2100.000000,7596.000000,2127.000000,4.047300,127200.000000\\n', '-117.180000,34.040000,41.000000,1766.000000,288.000000,753.000000,278.000000,4.912500,140700.000000\\n', '-121.330000,38.280000,14.000000,980.000000,171.000000,659.000000,183.000000,4.430600,170100.000000\\n', '-121.880000,37.320000,38.000000,1787.000000,508.000000,2113.000000,530.000000,2.638600,177600.000000\\n', '-122.520000,37.970000,33.000000,563.000000,194.000000,265.000000,169.000000,2.750000,231300.000000\\n', '-117.770000,34.060000,27.000000,2178.000000,629.000000,2379.000000,591.000000,1.976600,108000.000000\\n', '-121.010000,37.720000,23.000000,1373.000000,264.000000,677.000000,245.000000,2.548600,161100.000000\\n', '-117.330000,33.870000,14.000000,2300.000000,335.000000,1001.000000,311.000000,5.104500,161300.000000\\n', '-118.240000,33.970000,37.000000,1212.000000,314.000000,1403.000000,279.000000,2.553600,117200.000000\\n', '-117.800000,33.890000,25.000000,3121.000000,381.000000,1278.000000,389.000000,7.021700,357900.000000\\n', '-119.620000,36.560000,30.000000,1722.000000,372.000000,1467.000000,403.000000,1.887800,51600.000000\\n', '-122.160000,37.690000,36.000000,1118.000000,219.000000,625.000000,228.000000,3.781300,192200.000000\\n', '-117.970000,33.800000,35.000000,2985.000000,474.000000,1614.000000,453.000000,5.463100,225600.000000\\n', '-120.870000,37.760000,16.000000,2022.000000,413.000000,1126.000000,408.000000,2.565500,116400.000000\\n', '-120.460000,37.310000,26.000000,3170.000000,572.000000,1524.000000,565.000000,3.480000,95300.000000\\n', '-118.230000,34.140000,39.000000,277.000000,89.000000,182.000000,91.000000,2.395800,175000.000000\\n', '-121.070000,38.660000,22.000000,1831.000000,274.000000,813.000000,269.000000,4.639400,173400.000000\\n', '-120.090000,36.950000,16.000000,3222.000000,511.000000,1425.000000,503.000000,4.154400,119400.000000\\n', '-118.210000,33.960000,38.000000,2090.000000,519.000000,1871.000000,504.000000,2.468800,169000.000000\\n', '-122.630000,38.230000,37.000000,1966.000000,348.000000,875.000000,381.000000,4.070300,223800.000000\\n', '-119.400000,36.250000,25.000000,1696.000000,279.000000,909.000000,291.000000,2.300000,132800.000000\\n', '-117.380000,33.210000,31.000000,1502.000000,367.000000,1514.000000,342.000000,2.644200,103300.000000\\n', '-117.250000,32.800000,37.000000,1096.000000,260.000000,490.000000,267.000000,3.266300,270600.000000\\n', '-122.230000,40.570000,18.000000,1633.000000,243.000000,750.000000,252.000000,5.158500,150800.000000\\n', '-121.230000,38.790000,45.000000,907.000000,176.000000,463.000000,190.000000,2.229200,92000.000000\\n', '-121.550000,40.480000,14.000000,2413.000000,524.000000,805.000000,329.000000,2.785700,77400.000000\\n', '-117.890000,33.920000,34.000000,1473.000000,312.000000,1025.000000,315.000000,3.833300,170400.000000\\n', '-117.230000,32.720000,43.000000,952.000000,209.000000,392.000000,210.000000,2.163500,244200.000000\\n', '-117.920000,33.790000,35.000000,1785.000000,288.000000,1033.000000,297.000000,4.573900,190500.000000\\n', '-117.580000,34.110000,14.000000,11635.000000,2055.000000,6443.000000,2009.000000,4.754700,157600.000000\\n', '-120.850000,38.690000,18.000000,5928.000000,1097.000000,2697.000000,1096.000000,3.487200,141400.000000\\n', '-121.530000,38.480000,5.000000,27870.000000,5027.000000,11935.000000,4855.000000,4.881100,212200.000000\\n', '-117.210000,32.820000,31.000000,2035.000000,383.000000,866.000000,360.000000,3.852900,212000.000000\\n', '-117.350000,34.130000,26.000000,3920.000000,570.000000,1862.000000,552.000000,3.728600,132000.000000\\n', '-118.170000,33.790000,30.000000,1349.000000,519.000000,2646.000000,552.000000,1.931800,115900.000000\\n', '-118.300000,34.260000,37.000000,2824.000000,633.000000,1619.000000,573.000000,3.556800,184500.000000\\n', '-118.020000,33.830000,16.000000,1139.000000,328.000000,665.000000,290.000000,3.293300,260000.000000\\n', '-116.990000,33.010000,11.000000,1412.000000,185.000000,529.000000,166.000000,7.751700,500001.000000\\n', '-122.560000,38.010000,21.000000,2144.000000,400.000000,840.000000,398.000000,4.600000,239500.000000\\n', '-118.150000,34.100000,39.000000,3856.000000,867.000000,1847.000000,830.000000,3.455900,364900.000000\\n', '-117.930000,33.730000,27.000000,3662.000000,834.000000,3009.000000,743.000000,3.981600,179500.000000\\n', '-121.090000,38.030000,21.000000,2064.000000,342.000000,1021.000000,359.000000,4.517000,152200.000000\\n', '-116.660000,33.090000,24.000000,1378.000000,272.000000,532.000000,188.000000,1.590900,221900.000000\\n', '-118.260000,33.830000,24.000000,3059.000000,729.000000,2064.000000,629.000000,3.551800,184600.000000\\n', '-117.940000,33.930000,14.000000,999.000000,232.000000,1037.000000,244.000000,2.712500,166100.000000\\n', '-116.930000,32.830000,19.000000,3038.000000,529.000000,1463.000000,509.000000,3.944000,172500.000000\\n', '-122.290000,37.850000,52.000000,477.000000,119.000000,218.000000,106.000000,2.568200,120000.000000\\n', '-122.480000,37.670000,14.000000,3395.000000,1059.000000,2258.000000,945.000000,2.964000,319700.000000\\n', '-119.330000,36.310000,15.000000,1472.000000,228.000000,892.000000,257.000000,5.390900,113000.000000\\n', '-118.410000,34.210000,35.000000,1789.000000,292.000000,897.000000,267.000000,5.592000,239900.000000\\n', '-119.500000,34.350000,39.000000,308.000000,38.000000,59.000000,21.000000,11.779400,500001.000000\\n', '-118.330000,34.110000,48.000000,1601.000000,464.000000,784.000000,461.000000,3.064200,342900.000000\\n', '-118.300000,34.100000,29.000000,3403.000000,1367.000000,3432.000000,1174.000000,1.708300,166700.000000\\n', '-119.750000,34.400000,31.000000,1997.000000,299.000000,826.000000,301.000000,6.892700,500001.000000\\n', '-120.940000,39.320000,14.000000,3120.000000,595.000000,1569.000000,556.000000,3.538500,157400.000000\\n', '-117.680000,35.610000,9.000000,4241.000000,832.000000,1929.000000,742.000000,3.598800,84500.000000\\n', '-122.270000,38.120000,45.000000,4423.000000,1001.000000,2109.000000,874.000000,2.693700,111800.000000\\n', '-118.210000,34.110000,32.000000,2759.000000,499.000000,1661.000000,533.000000,4.381200,228200.000000\\n', '-117.230000,33.100000,4.000000,1862.000000,291.000000,685.000000,248.000000,7.745000,237400.000000\\n', '-119.460000,35.140000,30.000000,2943.000000,697.000000,1565.000000,584.000000,2.531300,45800.000000\\n', '-119.780000,36.760000,50.000000,1343.000000,322.000000,1063.000000,342.000000,1.750000,49800.000000\\n', '-117.810000,33.660000,20.000000,2851.000000,490.000000,1192.000000,463.000000,5.875200,274200.000000\\n', '-119.290000,34.310000,25.000000,1092.000000,190.000000,702.000000,215.000000,3.906300,192700.000000\\n', '-122.410000,37.610000,46.000000,2975.000000,643.000000,1479.000000,577.000000,3.821400,273600.000000\\n', '-120.320000,37.290000,38.000000,576.000000,130.000000,478.000000,112.000000,2.338200,59600.000000\\n', '-118.370000,34.160000,40.000000,1973.000000,382.000000,774.000000,352.000000,4.412200,282300.000000\\n', '-122.050000,37.050000,41.000000,2422.000000,502.000000,915.000000,366.000000,4.167900,201300.000000\\n', '-118.460000,34.030000,52.000000,523.000000,124.000000,317.000000,130.000000,2.279400,337500.000000\\n', '-117.120000,32.760000,43.000000,2336.000000,644.000000,1203.000000,614.000000,2.359400,127800.000000\\n', '-122.040000,37.570000,12.000000,5719.000000,1064.000000,3436.000000,1057.000000,5.287900,231200.000000\\n', '-121.970000,37.360000,34.000000,884.000000,153.000000,534.000000,154.000000,6.011600,271200.000000\\n', '-121.280000,38.530000,18.000000,224.000000,38.000000,95.000000,41.000000,3.104200,165000.000000\\n', '-119.090000,35.300000,3.000000,2821.000000,519.000000,1353.000000,495.000000,3.685200,109800.000000\\n', '-121.750000,36.910000,42.000000,1368.000000,468.000000,2312.000000,484.000000,2.559900,151400.000000\\n', '-121.860000,38.000000,4.000000,4075.000000,927.000000,2239.000000,849.000000,3.585700,165200.000000\\n', '-118.530000,34.450000,26.000000,828.000000,149.000000,508.000000,158.000000,5.237400,185500.000000\\n', '-117.940000,33.810000,24.000000,4602.000000,1131.000000,3003.000000,1014.000000,3.677100,172200.000000\\n', '-119.840000,34.450000,26.000000,4424.000000,616.000000,1839.000000,601.000000,6.365400,331200.000000\\n', '-118.240000,33.910000,37.000000,1607.000000,377.000000,1526.000000,375.000000,1.715800,94300.000000\\n', '-117.060000,33.140000,27.000000,3819.000000,674.000000,2447.000000,717.000000,3.818500,137200.000000\\n', '-120.980000,37.670000,33.000000,1433.000000,298.000000,824.000000,302.000000,2.762100,109100.000000\\n', '-117.740000,34.090000,30.000000,3199.000000,591.000000,2192.000000,563.000000,3.487100,136400.000000\\n', '-118.180000,34.010000,39.000000,322.000000,82.000000,319.000000,90.000000,2.636400,148800.000000\\n', '-118.240000,33.890000,32.000000,1132.000000,266.000000,1211.000000,279.000000,2.183800,98300.000000\\n', '-123.080000,40.400000,10.000000,365.000000,102.000000,140.000000,49.000000,1.796900,37500.000000\\n', '-117.320000,34.070000,52.000000,1226.000000,269.000000,693.000000,272.000000,1.996300,76900.000000\\n', '-118.240000,33.850000,25.000000,9594.000000,1489.000000,5237.000000,1496.000000,5.968400,193300.000000\\n', '-122.230000,37.780000,52.000000,472.000000,146.000000,415.000000,126.000000,2.642900,71300.000000\\n', '-121.180000,38.780000,13.000000,3480.000000,528.000000,1432.000000,532.000000,6.164200,277800.000000\\n', '-118.100000,33.910000,29.000000,505.000000,113.000000,411.000000,113.000000,2.639700,164400.000000\\n', '-121.970000,38.040000,38.000000,2505.000000,554.000000,1595.000000,498.000000,2.583300,83500.000000\\n', '-118.470000,34.000000,41.000000,2331.000000,636.000000,1839.000000,537.000000,2.288000,263500.000000\\n', '-119.310000,36.390000,32.000000,2293.000000,466.000000,1538.000000,468.000000,1.934200,68600.000000\\n', '-122.170000,37.710000,38.000000,890.000000,200.000000,481.000000,198.000000,3.244000,179800.000000\\n', '-122.490000,37.680000,35.000000,2405.000000,461.000000,1583.000000,471.000000,5.065900,238000.000000\\n', '-121.300000,37.980000,39.000000,3375.000000,659.000000,1388.000000,631.000000,2.636400,93800.000000\\n', '-121.370000,38.570000,22.000000,4899.000000,847.000000,1701.000000,826.000000,5.244900,387000.000000\\n', '-122.080000,37.610000,6.000000,2605.000000,474.000000,1568.000000,433.000000,5.040600,261400.000000\\n', '-117.110000,32.570000,32.000000,2723.000000,586.000000,1702.000000,562.000000,3.337100,140500.000000\\n', '-122.090000,37.400000,22.000000,1489.000000,436.000000,662.000000,470.000000,3.517900,197200.000000\\n', '-122.010000,36.980000,27.000000,2820.000000,730.000000,1511.000000,745.000000,2.589000,242400.000000\\n', '-118.250000,34.000000,36.000000,1033.000000,267.000000,1112.000000,229.000000,1.723700,105800.000000\\n', '-117.830000,33.660000,16.000000,1574.000000,385.000000,515.000000,363.000000,5.342300,291700.000000\\n', '-121.960000,37.740000,2.000000,200.000000,20.000000,25.000000,9.000000,15.000100,350000.000000\\n', '-119.810000,36.730000,51.000000,956.000000,196.000000,662.000000,180.000000,2.101000,56700.000000\\n', '-118.620000,34.060000,25.000000,3546.000000,584.000000,1530.000000,601.000000,7.400100,500001.000000\\n', '-122.350000,37.960000,35.000000,1326.000000,346.000000,1023.000000,295.000000,2.072400,97700.000000\\n', '-119.060000,36.100000,21.000000,1344.000000,249.000000,868.000000,221.000000,2.589300,63600.000000\\n', '-122.470000,37.750000,52.000000,1598.000000,285.000000,689.000000,265.000000,4.607100,337400.000000\\n', '-122.540000,37.900000,41.000000,3170.000000,622.000000,1091.000000,528.000000,3.781300,389200.000000\\n', '-119.730000,36.760000,30.000000,1548.000000,282.000000,886.000000,311.000000,3.100000,71300.000000\\n', '-122.030000,36.960000,40.000000,584.000000,126.000000,316.000000,139.000000,3.593800,243500.000000\\n', '-119.750000,36.780000,33.000000,1145.000000,197.000000,508.000000,198.000000,2.333300,81300.000000\\n', '-117.300000,33.060000,24.000000,2171.000000,511.000000,870.000000,442.000000,3.194000,276300.000000\\n', '-121.990000,36.960000,16.000000,875.000000,201.000000,300.000000,157.000000,2.625000,377300.000000\\n', '-120.730000,39.630000,17.000000,1791.000000,356.000000,432.000000,190.000000,3.882600,92400.000000\\n', '-118.480000,34.030000,19.000000,902.000000,284.000000,414.000000,272.000000,1.333300,310000.000000\\n', '-118.220000,33.950000,36.000000,1679.000000,483.000000,2249.000000,487.000000,2.816700,160400.000000\\n', '-118.240000,33.970000,43.000000,1357.000000,349.000000,1657.000000,331.000000,2.081900,111800.000000\\n', '-117.820000,35.030000,30.000000,2555.000000,510.000000,1347.000000,467.000000,3.369300,71800.000000\\n', '-117.020000,32.700000,18.000000,1643.000000,283.000000,1134.000000,269.000000,5.176900,133000.000000\\n', '-122.350000,37.940000,47.000000,1275.000000,275.000000,844.000000,273.000000,2.896700,95600.000000\\n', '-119.800000,36.780000,50.000000,1818.000000,374.000000,737.000000,338.000000,2.261400,73000.000000\\n', '-122.190000,37.480000,38.000000,1300.000000,269.000000,608.000000,292.000000,4.556800,286900.000000\\n', '-122.380000,37.590000,31.000000,3052.000000,844.000000,1581.000000,788.000000,3.074400,457700.000000\\n', '-122.150000,37.750000,44.000000,1938.000000,399.000000,946.000000,331.000000,3.225000,135800.000000\\n', '-119.350000,36.190000,6.000000,958.000000,226.000000,734.000000,230.000000,1.034900,67800.000000\\n', '-120.450000,34.950000,7.000000,1479.000000,532.000000,1057.000000,459.000000,2.253800,162500.000000\\n', '-122.280000,38.290000,19.000000,531.000000,112.000000,139.000000,80.000000,1.987500,325000.000000\\n', '-122.260000,37.840000,49.000000,713.000000,202.000000,462.000000,189.000000,1.025000,118800.000000\\n', '-122.300000,37.810000,52.000000,572.000000,109.000000,274.000000,82.000000,1.851600,85000.000000\\n', '-118.220000,33.900000,22.000000,312.000000,107.000000,583.000000,119.000000,1.942300,98400.000000\\n', '-117.670000,33.640000,11.000000,2722.000000,554.000000,1565.000000,508.000000,5.164500,164100.000000\\n', '-122.020000,37.010000,20.000000,1005.000000,138.000000,345.000000,129.000000,10.096800,500001.000000\\n', '-117.380000,33.190000,17.000000,353.000000,112.000000,359.000000,118.000000,1.562500,162500.000000\\n', '-118.010000,34.080000,30.000000,2281.000000,522.000000,1969.000000,500.000000,3.653100,166300.000000\\n', '-118.600000,34.130000,20.000000,14291.000000,1934.000000,5452.000000,1875.000000,9.123200,472000.000000\\n', '-118.520000,34.200000,19.000000,4315.000000,1304.000000,2490.000000,1222.000000,2.643700,195000.000000\\n', '-118.420000,34.270000,35.000000,2700.000000,702.000000,3444.000000,679.000000,1.486700,124000.000000\\n', '-122.080000,37.710000,35.000000,2211.000000,350.000000,1004.000000,365.000000,5.463900,238600.000000\\n', '-117.650000,33.570000,5.000000,1998.000000,500.000000,1185.000000,446.000000,4.354200,195600.000000\\n', '-120.540000,37.680000,18.000000,335.000000,76.000000,189.000000,67.000000,1.227300,87500.000000\\n', '-118.310000,34.050000,40.000000,1667.000000,365.000000,1161.000000,384.000000,3.140600,417600.000000\\n', '-122.420000,37.600000,34.000000,3562.000000,565.000000,1542.000000,563.000000,5.878300,405100.000000\\n', '-118.180000,33.980000,38.000000,1477.000000,374.000000,1514.000000,408.000000,2.570300,178600.000000\\n', '-121.250000,36.320000,12.000000,4776.000000,1082.000000,4601.000000,1066.000000,2.918400,100500.000000\\n', '-118.170000,34.690000,12.000000,4881.000000,803.000000,2188.000000,724.000000,4.166700,171900.000000\\n', '-120.330000,39.300000,16.000000,868.000000,178.000000,44.000000,21.000000,3.000000,175000.000000\\n', '-118.380000,34.060000,29.000000,3946.000000,1008.000000,1676.000000,876.000000,2.782400,450000.000000\\n', '-119.780000,36.730000,52.000000,1377.000000,319.000000,1280.000000,259.000000,1.234400,43300.000000\\n', '-118.330000,33.970000,44.000000,2526.000000,579.000000,1423.000000,573.000000,2.536300,158800.000000\\n', '-118.370000,34.060000,36.000000,1661.000000,395.000000,690.000000,365.000000,3.343800,500001.000000\\n', '-119.000000,35.390000,51.000000,1373.000000,284.000000,648.000000,300.000000,2.829500,72100.000000\\n', '-117.950000,33.870000,35.000000,1854.000000,383.000000,1115.000000,381.000000,4.478400,185200.000000\\n', '-118.380000,34.580000,18.000000,1859.000000,375.000000,913.000000,372.000000,4.345600,148900.000000\\n', '-118.290000,34.080000,25.000000,2459.000000,823.000000,2635.000000,763.000000,2.400000,173900.000000\\n', '-120.970000,37.680000,16.000000,2493.000000,535.000000,1370.000000,504.000000,3.336800,121200.000000\\n', '-122.280000,37.870000,52.000000,589.000000,132.000000,288.000000,131.000000,3.515600,200000.000000\\n', '-118.140000,33.880000,41.000000,1531.000000,343.000000,1119.000000,341.000000,4.364600,161400.000000\\n', '-122.060000,37.380000,20.000000,4293.000000,1272.000000,2389.000000,1210.000000,4.271900,270800.000000\\n', '-118.540000,34.270000,28.000000,2309.000000,300.000000,931.000000,302.000000,6.741500,348200.000000\\n', '-117.880000,33.840000,25.000000,1781.000000,349.000000,918.000000,378.000000,3.928600,262700.000000\\n', '-118.300000,34.190000,52.000000,1704.000000,277.000000,746.000000,262.000000,4.798600,326100.000000\\n', '-117.840000,33.800000,35.000000,1490.000000,251.000000,629.000000,257.000000,4.366100,222100.000000\\n', '-121.270000,38.650000,25.000000,2787.000000,601.000000,1247.000000,522.000000,2.901600,159800.000000\\n', '-117.880000,33.870000,21.000000,1519.000000,388.000000,1203.000000,366.000000,3.208300,145300.000000\\n', '-119.880000,34.420000,22.000000,2367.000000,492.000000,1333.000000,488.000000,3.630400,312200.000000\\n', '-118.480000,34.010000,31.000000,1829.000000,458.000000,719.000000,392.000000,4.400000,353800.000000\\n', '-116.950000,33.860000,1.000000,6.000000,2.000000,8.000000,2.000000,1.625000,55000.000000\\n', '-117.670000,33.510000,17.000000,2112.000000,480.000000,1893.000000,433.000000,4.038800,120400.000000\\n', '-118.350000,34.040000,38.000000,1626.000000,375.000000,1019.000000,372.000000,2.368700,146800.000000\\n', '-124.160000,40.800000,52.000000,2167.000000,480.000000,908.000000,451.000000,1.611100,74700.000000\\n', '-118.350000,34.050000,33.000000,2880.000000,836.000000,1416.000000,736.000000,2.678100,328800.000000\\n', '-119.080000,34.350000,24.000000,3663.000000,828.000000,2718.000000,778.000000,3.275700,186000.000000\\n', '-122.510000,37.780000,45.000000,2564.000000,499.000000,1056.000000,460.000000,4.732800,351100.000000\\n', '-118.360000,34.140000,30.000000,1376.000000,317.000000,629.000000,320.000000,3.682300,295200.000000\\n', '-121.960000,37.550000,4.000000,3746.000000,993.000000,1606.000000,838.000000,4.138700,162500.000000\\n', '-117.190000,32.770000,30.000000,2747.000000,640.000000,3185.000000,657.000000,3.765000,238000.000000\\n', '-118.090000,33.890000,42.000000,1150.000000,215.000000,708.000000,204.000000,3.687500,171500.000000\\n', '-121.760000,36.900000,44.000000,919.000000,309.000000,1321.000000,301.000000,2.077500,121400.000000\\n', '-118.140000,33.920000,35.000000,2378.000000,559.000000,1799.000000,546.000000,3.932700,190500.000000\\n', '-119.060000,34.360000,52.000000,1239.000000,320.000000,934.000000,298.000000,1.861800,183300.000000\\n', '-118.120000,34.160000,52.000000,2218.000000,437.000000,1211.000000,422.000000,5.023700,241900.000000\\n', '-117.800000,34.150000,14.000000,7876.000000,1253.000000,3699.000000,1162.000000,5.542300,248700.000000\\n', '-120.040000,39.240000,30.000000,2369.000000,469.000000,510.000000,213.000000,2.650000,123800.000000\\n', '-121.470000,38.480000,25.000000,2969.000000,551.000000,1745.000000,487.000000,2.638200,76200.000000\\n', '-122.270000,37.540000,15.000000,2126.000000,310.000000,905.000000,306.000000,8.908300,500001.000000\\n', '-122.020000,37.540000,31.000000,1240.000000,264.000000,719.000000,236.000000,3.535000,210300.000000\\n', '-121.380000,38.400000,15.000000,4155.000000,637.000000,1722.000000,616.000000,4.883100,154400.000000\\n', '-122.040000,37.350000,20.000000,2016.000000,313.000000,767.000000,310.000000,6.837000,383000.000000\\n', '-117.120000,32.760000,41.000000,1469.000000,421.000000,803.000000,395.000000,2.185600,120500.000000\\n', '-117.340000,34.180000,7.000000,2914.000000,481.000000,1584.000000,499.000000,4.631200,124900.000000\\n', '-121.020000,37.670000,32.000000,3951.000000,797.000000,1916.000000,740.000000,2.672200,111500.000000\\n', '-119.060000,34.380000,33.000000,1465.000000,262.000000,731.000000,266.000000,3.946400,230300.000000\\n', '-118.160000,33.910000,35.000000,1403.000000,338.000000,1415.000000,367.000000,3.096700,144000.000000\\n', '-121.920000,37.340000,52.000000,2584.000000,491.000000,1087.000000,433.000000,4.400000,391300.000000\\n', '-119.030000,34.210000,11.000000,4528.000000,729.000000,2398.000000,684.000000,5.304400,319000.000000\\n', '-121.960000,37.340000,37.000000,663.000000,127.000000,293.000000,132.000000,3.781300,247800.000000\\n', '-114.610000,33.620000,16.000000,1187.000000,261.000000,1115.000000,242.000000,2.175900,61500.000000\\n', '-117.270000,33.150000,4.000000,23915.000000,4135.000000,10877.000000,3958.000000,4.635700,244900.000000\\n', '-121.370000,38.620000,27.000000,1743.000000,380.000000,697.000000,368.000000,1.667800,166100.000000\\n', '-118.180000,33.820000,43.000000,2210.000000,469.000000,1042.000000,418.000000,3.500000,216700.000000\\n', '-118.020000,33.770000,33.000000,2683.000000,436.000000,1520.000000,456.000000,5.009100,211500.000000\\n', '-120.050000,34.470000,21.000000,1241.000000,248.000000,746.000000,211.000000,3.805600,425000.000000\\n', '-118.250000,34.010000,45.000000,782.000000,270.000000,1030.000000,235.000000,1.089800,93400.000000\\n', '-119.540000,38.510000,14.000000,1250.000000,272.000000,721.000000,234.000000,2.350000,95700.000000\\n', '-117.270000,34.500000,7.000000,2045.000000,342.000000,878.000000,292.000000,6.029600,194100.000000\\n', '-121.960000,36.990000,23.000000,3209.000000,748.000000,1423.000000,666.000000,2.737500,238000.000000\\n', '-118.190000,34.040000,45.000000,963.000000,234.000000,1194.000000,239.000000,2.180600,134900.000000\\n', '-121.280000,37.950000,49.000000,1200.000000,364.000000,1448.000000,318.000000,1.109400,52500.000000\\n', '-117.960000,33.790000,29.000000,1813.000000,501.000000,1170.000000,482.000000,2.067700,214500.000000\\n', '-118.440000,34.170000,25.000000,4966.000000,1134.000000,1941.000000,958.000000,3.808100,286700.000000\\n', '-122.310000,37.520000,35.000000,1817.000000,262.000000,659.000000,262.000000,6.833600,457200.000000\\n', '-117.970000,33.920000,24.000000,2017.000000,416.000000,900.000000,436.000000,3.000000,251400.000000\\n', '-117.710000,34.050000,20.000000,2281.000000,444.000000,1545.000000,481.000000,2.573500,130500.000000\\n', '-118.420000,34.020000,26.000000,2664.000000,842.000000,1745.000000,789.000000,3.426900,301900.000000\\n', '-120.250000,37.110000,20.000000,2062.000000,466.000000,1285.000000,456.000000,1.531900,50500.000000\\n', '-121.350000,38.510000,29.000000,2337.000000,391.000000,1054.000000,352.000000,4.220600,157700.000000\\n', '-120.250000,38.550000,15.000000,4403.000000,891.000000,1103.000000,433.000000,3.012500,111700.000000\\n', '-118.020000,34.020000,21.000000,5992.000000,986.000000,2647.000000,969.000000,5.240500,302400.000000\\n', '-120.660000,35.260000,15.000000,5540.000000,1319.000000,2383.000000,1165.000000,2.265600,226200.000000\\n', '-120.660000,40.420000,35.000000,1450.000000,325.000000,717.000000,297.000000,2.507400,66400.000000\\n', '-118.150000,35.060000,15.000000,1069.000000,296.000000,569.000000,263.000000,2.044100,73300.000000\\n', '-122.510000,37.780000,47.000000,2496.000000,494.000000,1201.000000,454.000000,4.035300,342200.000000\\n', '-120.460000,34.650000,22.000000,1298.000000,358.000000,1272.000000,363.000000,1.648800,117500.000000\\n', '-117.930000,33.930000,25.000000,2431.000000,534.000000,1702.000000,523.000000,3.793300,184400.000000\\n', '-118.210000,33.970000,49.000000,1409.000000,313.000000,1268.000000,317.000000,3.940800,170600.000000\\n', '-120.180000,34.620000,25.000000,1337.000000,219.000000,671.000000,225.000000,3.191200,226400.000000\\n', '-122.140000,37.430000,18.000000,2060.000000,563.000000,1144.000000,600.000000,4.068600,378600.000000\\n', '-123.110000,40.600000,23.000000,708.000000,202.000000,316.000000,136.000000,1.160200,65000.000000\\n', '-117.940000,33.840000,25.000000,4016.000000,831.000000,2166.000000,774.000000,3.188400,135400.000000\\n', '-122.750000,38.480000,4.000000,6487.000000,1112.000000,2958.000000,1131.000000,4.541700,197400.000000\\n', '-121.610000,37.150000,16.000000,5498.000000,729.000000,2051.000000,694.000000,7.860100,416300.000000\\n', '-122.420000,40.600000,5.000000,2614.000000,433.000000,1275.000000,411.000000,3.446400,122900.000000\\n', '-119.160000,34.950000,14.000000,4054.000000,787.000000,1581.000000,579.000000,3.088200,148200.000000\\n', '-118.630000,34.240000,9.000000,4759.000000,924.000000,1884.000000,915.000000,4.833300,277200.000000\\n', '-121.950000,36.980000,34.000000,3745.000000,958.000000,1622.000000,802.000000,3.154600,261200.000000\\n', '-117.250000,32.790000,43.000000,906.000000,240.000000,458.000000,205.000000,1.836500,328600.000000\\n', '-119.180000,34.220000,15.000000,4615.000000,1008.000000,2549.000000,973.000000,3.906300,198700.000000\\n', '-117.260000,32.820000,34.000000,5846.000000,785.000000,1817.000000,747.000000,8.496000,500001.000000\\n', '-117.070000,32.790000,25.000000,2489.000000,314.000000,911.000000,309.000000,7.833600,277600.000000\\n', '-116.760000,34.230000,10.000000,4374.000000,989.000000,1020.000000,376.000000,2.607100,89000.000000\\n', '-118.250000,34.130000,52.000000,322.000000,88.000000,229.000000,89.000000,2.125000,243800.000000\\n', '-117.280000,34.260000,18.000000,3895.000000,689.000000,1086.000000,375.000000,3.367200,133600.000000\\n', '-122.570000,38.110000,32.000000,3521.000000,748.000000,1706.000000,723.000000,3.470500,228600.000000\\n', '-122.450000,37.790000,52.000000,1457.000000,215.000000,495.000000,208.000000,10.709700,500001.000000\\n', '-117.770000,33.710000,15.000000,2102.000000,295.000000,1060.000000,303.000000,7.314100,337100.000000\\n', '-119.440000,36.610000,17.000000,1531.000000,280.000000,775.000000,246.000000,3.907300,91600.000000\\n', '-118.320000,33.930000,37.000000,2379.000000,462.000000,1327.000000,445.000000,4.250000,172100.000000\\n', '-118.220000,33.790000,28.000000,3008.000000,629.000000,2537.000000,596.000000,2.300000,137500.000000\\n', '-122.650000,38.480000,17.000000,1090.000000,164.000000,473.000000,163.000000,5.506100,231800.000000\\n', '-121.230000,37.960000,44.000000,2204.000000,473.000000,1277.000000,435.000000,1.553900,59200.000000\\n', '-117.860000,34.090000,26.000000,3408.000000,542.000000,1664.000000,543.000000,6.149800,239100.000000\\n', '-122.060000,37.860000,16.000000,5187.000000,1014.000000,1512.000000,986.000000,4.455100,252400.000000\\n', '-117.360000,34.100000,29.000000,2819.000000,637.000000,1683.000000,608.000000,2.320500,87600.000000\\n', '-117.300000,34.100000,49.000000,60.000000,11.000000,76.000000,13.000000,2.562500,75000.000000\\n', '-122.140000,38.030000,42.000000,118.000000,34.000000,54.000000,30.000000,2.579500,225000.000000\\n', '-121.640000,36.800000,18.000000,5915.000000,1000.000000,2975.000000,975.000000,4.581200,255200.000000\\n', '-122.240000,38.010000,11.000000,3751.000000,565.000000,1949.000000,555.000000,5.786200,269400.000000\\n', '-116.860000,34.310000,19.000000,1649.000000,328.000000,382.000000,151.000000,4.055600,133000.000000\\n', '-122.710000,37.880000,21.000000,2845.000000,552.000000,599.000000,250.000000,4.312500,495800.000000\\n', '-117.090000,32.560000,8.000000,864.000000,156.000000,626.000000,172.000000,4.898400,151500.000000\\n', '-122.250000,37.470000,35.000000,3183.000000,515.000000,1313.000000,487.000000,5.906200,383200.000000\\n', '-118.120000,33.770000,20.000000,4534.000000,954.000000,1941.000000,892.000000,6.036200,463500.000000\\n', '-120.960000,37.670000,17.000000,2434.000000,511.000000,1558.000000,546.000000,2.921900,114300.000000\\n', '-119.300000,36.320000,23.000000,3521.000000,615.000000,1712.000000,636.000000,3.387500,92500.000000\\n', '-117.390000,33.960000,52.000000,1992.000000,345.000000,948.000000,358.000000,3.291700,129300.000000\\n', '-121.000000,37.600000,22.000000,4412.000000,925.000000,3116.000000,817.000000,2.689900,82100.000000\\n', '-117.090000,32.640000,19.000000,2571.000000,791.000000,1205.000000,783.000000,1.620000,131300.000000\\n', '-122.050000,37.930000,15.000000,7803.000000,1603.000000,2957.000000,1546.000000,4.450000,184900.000000\\n', '-120.430000,34.870000,26.000000,1699.000000,272.000000,799.000000,266.000000,3.987100,157700.000000\\n', '-122.090000,37.690000,43.000000,500.000000,110.000000,273.000000,120.000000,3.312500,150000.000000\\n', '-118.460000,34.010000,39.000000,711.000000,148.000000,347.000000,153.000000,4.281300,297200.000000\\n', '-121.980000,37.370000,35.000000,995.000000,202.000000,615.000000,199.000000,5.094200,217500.000000\\n', '-121.970000,37.760000,8.000000,3743.000000,581.000000,1633.000000,567.000000,6.702700,381900.000000\\n', '-117.810000,33.830000,8.000000,7326.000000,884.000000,2569.000000,798.000000,10.157000,477100.000000\\n', '-118.160000,33.890000,38.000000,483.000000,113.000000,389.000000,108.000000,2.185900,143800.000000\\n', '-115.570000,32.780000,25.000000,2007.000000,301.000000,1135.000000,332.000000,5.128000,99600.000000\\n', '-117.620000,33.420000,27.000000,1005.000000,266.000000,460.000000,243.000000,3.102900,190600.000000\\n', '-121.510000,38.560000,43.000000,1048.000000,312.000000,1320.000000,294.000000,1.064900,137500.000000\\n', '-117.110000,32.750000,18.000000,1943.000000,587.000000,1329.000000,522.000000,1.769600,103100.000000\\n', '-122.460000,37.720000,37.000000,1833.000000,388.000000,1093.000000,363.000000,3.070300,211800.000000\\n', '-122.010000,37.580000,17.000000,4313.000000,717.000000,2629.000000,721.000000,5.757900,231800.000000\\n', '-116.850000,34.260000,18.000000,6988.000000,1635.000000,2044.000000,726.000000,2.430800,90600.000000\\n', '-122.180000,37.150000,17.000000,1457.000000,289.000000,591.000000,235.000000,5.578500,284100.000000\\n', '-116.950000,32.820000,19.000000,5308.000000,1058.000000,2852.000000,1092.000000,2.916100,135700.000000\\n', '-117.230000,32.740000,16.000000,1953.000000,404.000000,798.000000,385.000000,4.816700,169800.000000\\n', '-117.840000,34.110000,17.000000,3499.000000,621.000000,1911.000000,621.000000,4.889400,191700.000000\\n', '-122.490000,37.760000,48.000000,1351.000000,270.000000,650.000000,265.000000,3.527800,339800.000000\\n', '-117.930000,33.710000,10.000000,2775.000000,717.000000,1581.000000,633.000000,4.136600,158800.000000\\n', '-118.180000,33.740000,30.000000,5915.000000,1750.000000,2136.000000,1503.000000,4.096800,310000.000000\\n', '-118.080000,33.920000,38.000000,1335.000000,282.000000,1011.000000,269.000000,3.690800,157500.000000\\n', '-118.300000,34.010000,52.000000,1444.000000,343.000000,1154.000000,334.000000,2.062500,134400.000000\\n', '-122.170000,39.310000,35.000000,2791.000000,552.000000,1395.000000,476.000000,2.562500,62700.000000\\n', '-117.140000,32.750000,19.000000,1358.000000,613.000000,766.000000,630.000000,1.035300,150000.000000\\n', '-117.940000,34.040000,36.000000,1431.000000,354.000000,1367.000000,334.000000,3.559200,160200.000000\\n', '-121.740000,37.190000,11.000000,1290.000000,197.000000,881.000000,191.000000,4.203900,500001.000000\\n', '-118.360000,33.810000,26.000000,1575.000000,300.000000,881.000000,309.000000,5.177800,359900.000000\\n', '-122.440000,37.780000,37.000000,1235.000000,314.000000,481.000000,297.000000,3.687500,492300.000000\\n', '-118.190000,33.810000,23.000000,954.000000,390.000000,804.000000,373.000000,2.583300,181300.000000\\n', '-117.290000,33.190000,18.000000,6235.000000,1233.000000,4127.000000,1162.000000,3.070400,151600.000000\\n', '-117.240000,32.850000,18.000000,3117.000000,475.000000,904.000000,368.000000,6.758700,388500.000000\\n', '-117.240000,32.800000,29.000000,3376.000000,882.000000,1513.000000,843.000000,3.101000,238200.000000\\n', '-120.980000,38.660000,9.000000,2073.000000,404.000000,916.000000,373.000000,3.225000,163300.000000\\n', '-119.630000,36.760000,22.000000,4126.000000,614.000000,1795.000000,613.000000,4.925000,154700.000000\\n', '-121.650000,37.120000,14.000000,4721.000000,999.000000,2648.000000,888.000000,3.689500,239300.000000\\n', '-121.900000,37.440000,12.000000,4228.000000,734.000000,2594.000000,732.000000,6.608600,299400.000000\\n', '-122.110000,37.700000,23.000000,1689.000000,461.000000,828.000000,443.000000,2.155200,161400.000000\\n', '-118.290000,33.950000,35.000000,1401.000000,362.000000,1357.000000,327.000000,2.091700,99300.000000\\n', '-117.760000,34.060000,30.000000,1700.000000,504.000000,1719.000000,459.000000,2.227000,91900.000000\\n', '-118.320000,34.080000,52.000000,2370.000000,473.000000,1053.000000,434.000000,4.142900,380300.000000\\n', '-117.080000,32.720000,32.000000,2286.000000,468.000000,1741.000000,467.000000,3.044600,101900.000000\\n', '-117.130000,32.790000,35.000000,1362.000000,243.000000,698.000000,255.000000,3.645800,173800.000000\\n', '-121.940000,36.980000,24.000000,3010.000000,562.000000,1360.000000,504.000000,4.200600,290700.000000\\n', '-118.230000,33.960000,36.000000,1062.000000,270.000000,1136.000000,273.000000,1.659700,109100.000000\\n', '-121.980000,37.360000,34.000000,1735.000000,318.000000,1019.000000,301.000000,4.562500,242700.000000\\n', '-118.280000,34.120000,50.000000,2384.000000,312.000000,836.000000,337.000000,12.876300,500001.000000\\n', '-122.130000,37.150000,39.000000,2854.000000,613.000000,1338.000000,518.000000,3.942300,180300.000000\\n', '-118.200000,33.780000,48.000000,1766.000000,497.000000,1908.000000,466.000000,1.987200,168800.000000\\n', '-117.730000,34.120000,26.000000,1279.000000,163.000000,412.000000,157.000000,6.173100,293800.000000\\n', '-117.990000,33.690000,12.000000,2480.000000,858.000000,1441.000000,788.000000,1.670500,350000.000000\\n', '-117.940000,34.060000,32.000000,3418.000000,662.000000,2003.000000,622.000000,4.033300,210200.000000\\n', '-117.390000,34.110000,5.000000,2987.000000,457.000000,1821.000000,485.000000,4.888900,138900.000000\\n', '-122.000000,38.350000,38.000000,1918.000000,364.000000,745.000000,348.000000,2.570700,126000.000000\\n', '-120.980000,37.590000,2.000000,5042.000000,834.000000,2784.000000,787.000000,4.648400,145900.000000\\n', '-118.260000,34.120000,45.000000,2839.000000,698.000000,1768.000000,653.000000,3.130600,214000.000000\\n', '-122.160000,37.680000,16.000000,1687.000000,348.000000,568.000000,352.000000,2.386900,83300.000000\\n', '-118.120000,33.830000,45.000000,1579.000000,278.000000,687.000000,285.000000,5.042400,225900.000000\\n', '-117.880000,33.790000,32.000000,1484.000000,295.000000,928.000000,295.000000,5.141800,190300.000000\\n', '-122.410000,37.710000,40.000000,2054.000000,433.000000,1738.000000,429.000000,4.992600,213900.000000\\n', '-122.390000,37.730000,43.000000,4864.000000,972.000000,3134.000000,959.000000,4.339300,217300.000000\\n', '-121.930000,36.630000,33.000000,1740.000000,342.000000,638.000000,329.000000,3.191200,319800.000000\\n', '-120.310000,38.020000,11.000000,2366.000000,398.000000,1046.000000,387.000000,3.820300,139700.000000\\n', '-122.470000,37.610000,34.000000,4551.000000,837.000000,2208.000000,834.000000,5.436400,279300.000000\\n', '-117.680000,34.000000,5.000000,3761.000000,580.000000,2335.000000,648.000000,5.733800,225400.000000\\n', '-122.280000,37.850000,41.000000,535.000000,123.000000,317.000000,119.000000,2.403800,107500.000000\\n', '-117.180000,32.920000,4.000000,15025.000000,2616.000000,7560.000000,2392.000000,5.196000,210700.000000\\n', '-117.700000,33.600000,26.000000,2283.000000,506.000000,634.000000,469.000000,2.377400,74300.000000\\n', '-122.480000,37.750000,52.000000,2074.000000,401.000000,1136.000000,409.000000,4.770300,331000.000000\\n', '-117.150000,32.740000,26.000000,3149.000000,832.000000,1320.000000,808.000000,3.025900,211700.000000\\n', '-119.900000,36.790000,22.000000,1970.000000,332.000000,1066.000000,319.000000,3.312500,106100.000000\\n', '-117.190000,32.780000,34.000000,4108.000000,664.000000,1659.000000,644.000000,4.409700,252000.000000\\n', '-118.390000,34.030000,25.000000,3442.000000,1050.000000,1890.000000,914.000000,3.057400,319400.000000\\n', '-117.780000,33.680000,15.000000,1834.000000,330.000000,841.000000,309.000000,6.063400,234300.000000\\n', '-119.670000,36.650000,20.000000,2512.000000,449.000000,1464.000000,450.000000,3.921100,92300.000000\\n', '-118.260000,34.020000,41.000000,848.000000,323.000000,1428.000000,313.000000,1.560300,109600.000000\\n', '-122.240000,38.010000,16.000000,2084.000000,315.000000,1154.000000,307.000000,6.010200,235600.000000\\n', '-122.250000,38.160000,17.000000,4459.000000,944.000000,1812.000000,888.000000,2.937500,106700.000000\\n', '-117.320000,33.800000,11.000000,3196.000000,576.000000,1757.000000,552.000000,4.098200,173300.000000\\n', '-118.210000,34.060000,52.000000,470.000000,115.000000,434.000000,123.000000,2.095000,109100.000000\\n', '-119.770000,36.800000,24.000000,3748.000000,770.000000,1827.000000,719.000000,2.722200,83100.000000\\n', '-121.860000,37.410000,16.000000,1603.000000,287.000000,1080.000000,296.000000,6.125600,266900.000000\\n', '-117.970000,33.880000,9.000000,1344.000000,279.000000,530.000000,265.000000,5.073100,185100.000000\\n', '-121.840000,39.720000,52.000000,1457.000000,389.000000,802.000000,342.000000,0.956600,69000.000000\\n', '-118.510000,34.200000,37.000000,2066.000000,434.000000,1031.000000,414.000000,4.092400,188400.000000\\n', '-117.930000,33.780000,28.000000,4380.000000,820.000000,2187.000000,835.000000,3.901800,182300.000000\\n', '-117.750000,33.610000,16.000000,2270.000000,488.000000,709.000000,489.000000,3.284500,227600.000000\\n', '-121.460000,38.700000,32.000000,965.000000,183.000000,568.000000,188.000000,3.861100,93900.000000\\n', '-119.280000,36.320000,29.000000,2274.000000,514.000000,1234.000000,521.000000,1.913800,66900.000000\\n', '-118.740000,34.280000,21.000000,4056.000000,637.000000,1974.000000,634.000000,5.902400,221000.000000\\n', '-119.330000,36.190000,27.000000,418.000000,163.000000,332.000000,141.000000,1.071400,63800.000000\\n', '-118.750000,34.270000,24.000000,3241.000000,461.000000,1567.000000,446.000000,5.598300,233300.000000\\n', '-118.210000,33.930000,33.000000,2739.000000,801.000000,3423.000000,741.000000,2.284700,132700.000000\\n', '-122.370000,37.960000,37.000000,1572.000000,402.000000,1046.000000,350.000000,0.740300,68600.000000\\n', '-121.980000,37.280000,27.000000,3526.000000,589.000000,1725.000000,553.000000,5.781200,275000.000000\\n', '-117.030000,32.610000,23.000000,1553.000000,216.000000,778.000000,229.000000,5.153800,171300.000000\\n', '-117.280000,34.410000,14.000000,2105.000000,396.000000,960.000000,396.000000,2.993400,118200.000000\\n', '-118.020000,34.130000,33.000000,2874.000000,458.000000,1239.000000,431.000000,5.232900,430900.000000\\n', '-117.900000,34.060000,33.000000,1330.000000,209.000000,578.000000,192.000000,5.640600,266200.000000\\n', '-118.470000,34.240000,19.000000,2405.000000,661.000000,1855.000000,621.000000,2.311100,255400.000000\\n', '-122.490000,37.860000,35.000000,2729.000000,538.000000,969.000000,528.000000,6.766900,500001.000000\\n', '-121.440000,38.680000,19.000000,2476.000000,534.000000,1355.000000,463.000000,2.062500,94400.000000\\n', '-118.360000,34.200000,14.000000,1878.000000,614.000000,1874.000000,559.000000,2.526700,231800.000000\\n', '-117.280000,33.060000,8.000000,4172.000000,1022.000000,2585.000000,941.000000,4.011800,245800.000000\\n', '-122.430000,37.730000,52.000000,1142.000000,224.000000,494.000000,206.000000,5.060200,298900.000000\\n', '-118.130000,34.130000,52.000000,2826.000000,381.000000,924.000000,365.000000,7.997600,500001.000000\\n', '-118.050000,33.950000,33.000000,1954.000000,390.000000,1600.000000,376.000000,3.612500,170800.000000\\n', '-121.990000,38.260000,18.000000,921.000000,126.000000,368.000000,120.000000,6.084200,261100.000000\\n', '-122.470000,37.780000,52.000000,1941.000000,436.000000,955.000000,425.000000,4.133900,396400.000000\\n', '-121.270000,38.660000,15.000000,2642.000000,520.000000,1032.000000,475.000000,4.138200,189800.000000\\n', '-122.240000,37.810000,52.000000,2026.000000,482.000000,709.000000,456.000000,3.272700,268500.000000\\n', '-121.440000,38.470000,5.000000,5666.000000,1178.000000,3139.000000,1131.000000,3.360800,108900.000000\\n', '-118.120000,33.770000,10.000000,7264.000000,1137.000000,2528.000000,1057.000000,10.223300,500001.000000\\n', '-117.980000,33.940000,32.000000,2562.000000,491.000000,1222.000000,446.000000,4.098500,226200.000000\\n', '-118.070000,34.160000,35.000000,2459.000000,438.000000,970.000000,437.000000,4.214300,369400.000000\\n', '-118.190000,34.140000,46.000000,2387.000000,488.000000,1181.000000,456.000000,3.605800,257900.000000\\n', '-118.210000,34.120000,52.000000,1301.000000,389.000000,1189.000000,361.000000,2.513900,190000.000000\\n', '-121.920000,36.630000,36.000000,877.000000,175.000000,349.000000,168.000000,3.416700,339100.000000\\n', '-117.970000,33.840000,18.000000,1063.000000,209.000000,462.000000,223.000000,2.834800,219000.000000\\n', '-118.410000,33.990000,39.000000,3014.000000,822.000000,3212.000000,777.000000,1.198500,215000.000000\\n', '-119.440000,36.600000,34.000000,864.000000,184.000000,579.000000,171.000000,2.041700,72500.000000\\n', '-122.700000,39.140000,13.000000,532.000000,111.000000,214.000000,62.000000,3.392900,108300.000000\\n', '-122.300000,37.560000,37.000000,1962.000000,367.000000,1267.000000,382.000000,4.734400,271800.000000\\n', '-121.990000,37.540000,26.000000,2332.000000,371.000000,1285.000000,404.000000,5.388000,225000.000000\\n', '-118.380000,33.980000,25.000000,7105.000000,1012.000000,2519.000000,1004.000000,6.811200,500001.000000\\n', '-117.980000,33.830000,17.000000,3506.000000,992.000000,2104.000000,893.000000,3.300600,185800.000000\\n', '-117.960000,33.680000,25.000000,2004.000000,349.000000,1085.000000,343.000000,4.765600,230700.000000\\n', '-117.640000,33.660000,6.000000,5221.000000,1217.000000,2597.000000,1119.000000,4.607600,204000.000000\\n', '-121.290000,37.330000,36.000000,48.000000,12.000000,27.000000,8.000000,4.000000,75000.000000\\n', '-122.440000,37.770000,52.000000,5604.000000,1268.000000,2023.000000,1196.000000,4.408500,400000.000000\\n', '-118.330000,33.980000,28.000000,3889.000000,1199.000000,3121.000000,1046.000000,1.880600,113900.000000\\n', '-121.290000,37.990000,30.000000,1271.000000,528.000000,2019.000000,524.000000,1.515200,81300.000000\\n', '-121.800000,37.350000,17.000000,2529.000000,423.000000,1756.000000,429.000000,5.101700,240700.000000\\n', '-119.290000,36.530000,33.000000,1509.000000,352.000000,1734.000000,336.000000,1.625000,50300.000000\\n', '-118.110000,34.030000,36.000000,1493.000000,316.000000,989.000000,293.000000,3.527200,213700.000000\\n', '-121.870000,37.420000,19.000000,12128.000000,2112.000000,6810.000000,2040.000000,6.441900,264500.000000\\n', '-122.090000,37.700000,33.000000,4413.000000,1107.000000,2239.000000,1051.000000,2.986100,208200.000000\\n', '-122.290000,37.870000,52.000000,2225.000000,460.000000,1145.000000,430.000000,2.616500,150000.000000\\n', '-117.110000,32.660000,52.000000,25.000000,5.000000,14.000000,9.000000,1.625000,118800.000000\\n', '-121.900000,37.390000,42.000000,42.000000,14.000000,26.000000,14.000000,1.736100,500001.000000\\n', '-117.520000,33.880000,21.000000,722.000000,178.000000,770.000000,165.000000,2.565600,102500.000000\\n', '-121.470000,38.700000,31.000000,1007.000000,181.000000,563.000000,185.000000,3.625000,91300.000000\\n', '-122.280000,37.520000,27.000000,2958.000000,655.000000,1285.000000,577.000000,4.080100,397800.000000\\n', '-118.410000,34.250000,33.000000,827.000000,192.000000,981.000000,184.000000,2.642900,143100.000000\\n', '-122.250000,37.800000,52.000000,2087.000000,510.000000,1197.000000,488.000000,3.014900,218400.000000\\n', '-119.050000,34.240000,24.000000,4341.000000,646.000000,1929.000000,703.000000,5.429800,279600.000000\\n', '-118.260000,34.060000,33.000000,1950.000000,1047.000000,3707.000000,1012.000000,1.723800,110000.000000\\n', '-117.090000,32.700000,15.000000,869.000000,217.000000,887.000000,216.000000,1.458300,84200.000000\\n', '-117.390000,34.070000,15.000000,1966.000000,331.000000,1118.000000,323.000000,3.855800,122700.000000\\n', '-122.220000,37.790000,37.000000,2343.000000,574.000000,1608.000000,523.000000,2.149400,132500.000000\\n', '-118.430000,34.040000,52.000000,2425.000000,435.000000,962.000000,412.000000,5.858700,494700.000000\\n', '-117.560000,33.880000,36.000000,838.000000,210.000000,722.000000,180.000000,2.486100,96200.000000\\n', '-118.130000,34.160000,52.000000,1787.000000,427.000000,1107.000000,410.000000,2.566400,215000.000000\\n', '-122.210000,37.470000,33.000000,1266.000000,415.000000,1991.000000,334.000000,2.920000,202800.000000\\n', '-118.080000,33.780000,34.000000,2287.000000,347.000000,1051.000000,346.000000,5.576700,372000.000000\\n', '-118.230000,34.210000,29.000000,2584.000000,608.000000,1217.000000,568.000000,3.328700,273400.000000\\n', '-117.230000,32.730000,44.000000,1168.000000,263.000000,509.000000,256.000000,2.727300,269700.000000\\n', '-118.190000,33.770000,21.000000,2103.000000,727.000000,1064.000000,603.000000,1.617800,137500.000000\\n', '-117.170000,32.810000,26.000000,788.000000,127.000000,346.000000,125.000000,5.060300,185700.000000\\n', '-122.000000,36.970000,39.000000,2702.000000,646.000000,1136.000000,491.000000,2.894100,256700.000000\\n', '-120.610000,35.120000,12.000000,3430.000000,793.000000,1840.000000,720.000000,2.982100,162000.000000\\n', '-118.170000,33.830000,46.000000,1362.000000,214.000000,531.000000,222.000000,4.312500,290500.000000\\n', '-117.860000,33.890000,24.000000,2002.000000,253.000000,820.000000,241.000000,6.961200,274500.000000\\n', '-118.510000,34.220000,36.000000,1493.000000,285.000000,766.000000,272.000000,4.864600,213200.000000\\n', '-118.260000,33.900000,38.000000,1566.000000,318.000000,981.000000,318.000000,4.023400,111900.000000\\n', '-118.020000,34.040000,27.000000,5640.000000,1001.000000,3538.000000,978.000000,5.065000,215400.000000\\n', '-118.370000,34.100000,37.000000,407.000000,67.000000,100.000000,47.000000,15.000100,500001.000000\\n', '-117.990000,33.790000,35.000000,2301.000000,467.000000,2272.000000,454.000000,3.956600,167800.000000\\n', '-122.420000,37.710000,44.000000,2080.000000,489.000000,1781.000000,478.000000,3.682700,215300.000000\\n', '-117.250000,33.930000,8.000000,10110.000000,1761.000000,5804.000000,1703.000000,4.265400,137600.000000\\n', '-122.040000,37.850000,27.000000,6039.000000,780.000000,2181.000000,761.000000,9.586200,469400.000000\\n', '-117.230000,32.870000,11.000000,3123.000000,740.000000,1223.000000,634.000000,5.417000,196800.000000\\n', '-117.160000,32.810000,35.000000,1213.000000,200.000000,532.000000,181.000000,3.680600,172400.000000\\n', '-118.090000,33.900000,37.000000,1147.000000,258.000000,742.000000,242.000000,4.046100,153500.000000\\n', '-118.080000,34.070000,32.000000,4089.000000,975.000000,3775.000000,955.000000,3.290000,205500.000000\\n', '-117.090000,32.790000,31.000000,2019.000000,417.000000,872.000000,386.000000,3.196400,177700.000000\\n', '-121.660000,37.130000,20.000000,4477.000000,924.000000,2656.000000,871.000000,3.878800,226900.000000\\n', '-118.240000,33.960000,34.000000,946.000000,254.000000,1101.000000,239.000000,1.739600,105900.000000\\n', '-122.020000,37.530000,21.000000,4280.000000,673.000000,2216.000000,681.000000,5.707200,242200.000000\\n', '-117.820000,33.900000,25.000000,1137.000000,170.000000,524.000000,164.000000,7.574400,259300.000000\\n', '-118.210000,33.940000,34.000000,710.000000,205.000000,1134.000000,233.000000,2.773400,141100.000000\\n', '-117.880000,34.000000,32.000000,265.000000,51.000000,170.000000,50.000000,3.937500,187500.000000\\n', '-118.110000,33.860000,36.000000,2750.000000,487.000000,1386.000000,458.000000,4.990400,221700.000000\\n', '-118.860000,34.070000,16.000000,1409.000000,244.000000,970.000000,172.000000,8.014400,500001.000000\\n', '-122.490000,38.320000,30.000000,1631.000000,284.000000,788.000000,284.000000,3.309800,195500.000000\\n', '-121.660000,39.660000,17.000000,3502.000000,655.000000,1763.000000,613.000000,2.962500,101200.000000\\n', '-122.330000,37.930000,34.000000,2326.000000,471.000000,1356.000000,441.000000,2.347500,90300.000000\\n', '-117.280000,33.200000,20.000000,4835.000000,854.000000,2983.000000,834.000000,4.342800,152100.000000\\n', '-122.160000,37.720000,38.000000,1007.000000,245.000000,618.000000,239.000000,2.875000,144800.000000\\n', '-117.850000,34.120000,30.000000,4367.000000,1033.000000,2524.000000,954.000000,3.044800,192100.000000\\n', '-119.260000,35.500000,38.000000,2536.000000,409.000000,1133.000000,430.000000,4.237500,78600.000000\\n', '-123.350000,40.990000,23.000000,141.000000,59.000000,47.000000,23.000000,1.125000,66000.000000\\n', '-118.140000,34.160000,39.000000,2776.000000,840.000000,2546.000000,773.000000,2.575000,153500.000000\\n', '-118.390000,34.230000,43.000000,1193.000000,299.000000,1184.000000,320.000000,2.151800,161600.000000\\n', '-117.030000,32.790000,17.000000,7352.000000,1699.000000,3331.000000,1634.000000,2.700600,166300.000000\\n', '-117.840000,33.800000,34.000000,2004.000000,331.000000,843.000000,328.000000,3.590000,230600.000000\\n', '-116.690000,33.500000,13.000000,1187.000000,255.000000,442.000000,179.000000,1.910700,155700.000000\\n', '-121.090000,37.610000,42.000000,1787.000000,296.000000,921.000000,287.000000,3.886400,171400.000000\\n', '-117.140000,32.760000,35.000000,2539.000000,661.000000,1308.000000,629.000000,2.677700,146400.000000\\n', '-122.690000,38.460000,32.000000,2970.000000,504.000000,1117.000000,512.000000,5.000000,275900.000000\\n', '-121.130000,38.550000,8.000000,530.000000,109.000000,398.000000,96.000000,4.203100,212500.000000\\n', '-121.870000,37.270000,25.000000,1730.000000,226.000000,721.000000,243.000000,7.584500,279300.000000\\n', '-117.910000,33.660000,26.000000,5761.000000,1326.000000,2681.000000,1116.000000,4.034100,243300.000000\\n', '-121.940000,37.340000,42.000000,2174.000000,420.000000,1304.000000,464.000000,3.142900,286500.000000\\n', '-121.830000,37.950000,17.000000,1133.000000,244.000000,716.000000,235.000000,2.875000,162500.000000\\n', '-124.170000,41.800000,16.000000,2739.000000,480.000000,1259.000000,436.000000,3.755700,109400.000000\\n', '-118.330000,34.060000,52.000000,1368.000000,231.000000,737.000000,248.000000,8.361700,433800.000000\\n', '-118.240000,33.800000,28.000000,636.000000,169.000000,788.000000,143.000000,3.616100,131300.000000\\n', '-122.590000,38.120000,25.000000,7784.000000,1145.000000,3445.000000,1166.000000,6.013200,287900.000000\\n', '-122.480000,37.710000,29.000000,1048.000000,150.000000,455.000000,152.000000,6.127800,417600.000000\\n', '-120.730000,37.380000,37.000000,653.000000,176.000000,827.000000,176.000000,1.923600,64400.000000\\n', '-117.040000,32.620000,26.000000,3620.000000,607.000000,2000.000000,593.000000,4.996200,156000.000000\\n', '-118.440000,34.270000,36.000000,1111.000000,275.000000,1333.000000,266.000000,3.534700,158100.000000\\n', '-121.000000,37.610000,36.000000,2647.000000,604.000000,2045.000000,550.000000,2.273000,62900.000000\\n', '-117.840000,33.890000,24.000000,3935.000000,625.000000,1912.000000,593.000000,5.795100,226900.000000\\n', '-122.250000,37.770000,52.000000,1527.000000,320.000000,825.000000,264.000000,3.453100,208800.000000\\n', '-118.360000,34.100000,37.000000,7097.000000,2010.000000,2913.000000,1939.000000,2.875000,300000.000000\\n', '-116.920000,32.790000,24.000000,4055.000000,742.000000,2123.000000,744.000000,4.522400,142000.000000\\n', '-121.940000,38.350000,8.000000,3157.000000,559.000000,1758.000000,569.000000,4.412000,140100.000000\\n', '-120.870000,35.410000,16.000000,2168.000000,444.000000,782.000000,374.000000,3.018700,278100.000000\\n', '-118.100000,33.830000,36.000000,2000.000000,343.000000,956.000000,352.000000,5.373500,234400.000000\\n', '-117.990000,34.070000,31.000000,1507.000000,369.000000,1548.000000,347.000000,3.432700,147200.000000\\n', '-121.490000,37.940000,31.000000,1860.000000,394.000000,1848.000000,293.000000,2.289100,162500.000000\\n', '-119.630000,36.320000,36.000000,1518.000000,287.000000,749.000000,255.000000,2.233300,61000.000000\\n', '-121.890000,39.760000,15.000000,10265.000000,1860.000000,4591.000000,1906.000000,3.070000,142600.000000\\n', '-117.110000,32.760000,31.000000,2293.000000,549.000000,1108.000000,557.000000,3.385400,204400.000000\\n', '-118.140000,34.070000,42.000000,1036.000000,199.000000,656.000000,215.000000,4.190200,235000.000000\\n', '-118.260000,33.950000,38.000000,1387.000000,346.000000,1240.000000,355.000000,1.689800,95100.000000\\n', '-122.350000,40.560000,16.000000,2801.000000,614.000000,1695.000000,563.000000,1.900000,81600.000000\\n', '-118.260000,34.060000,40.000000,637.000000,273.000000,1150.000000,263.000000,1.862500,131300.000000\\n', '-117.820000,33.710000,9.000000,5206.000000,992.000000,4660.000000,978.000000,2.885000,162500.000000\\n', '-119.980000,38.960000,25.000000,2443.000000,444.000000,868.000000,342.000000,3.541700,114800.000000\\n', '-118.430000,34.090000,27.000000,1613.000000,200.000000,497.000000,197.000000,7.983500,500001.000000\\n', '-117.140000,32.750000,20.000000,1182.000000,379.000000,678.000000,326.000000,2.193700,162500.000000\\n', '-118.470000,34.300000,16.000000,2495.000000,551.000000,2314.000000,567.000000,3.673600,192200.000000\\n', '-121.780000,38.680000,39.000000,2806.000000,662.000000,1659.000000,638.000000,1.978700,97800.000000\\n', '-122.280000,37.800000,52.000000,96.000000,31.000000,191.000000,34.000000,0.750000,162500.000000\\n', '-117.210000,32.800000,19.000000,786.000000,282.000000,525.000000,229.000000,1.727300,137500.000000\\n', '-121.460000,38.540000,48.000000,1001.000000,205.000000,605.000000,175.000000,1.833300,58200.000000\\n', '-121.130000,36.210000,30.000000,1484.000000,414.000000,1200.000000,351.000000,1.754800,95800.000000\\n', '-122.530000,37.970000,52.000000,205.000000,119.000000,228.000000,132.000000,1.906300,200000.000000\\n', '-122.350000,37.920000,36.000000,921.000000,200.000000,585.000000,236.000000,1.922400,94000.000000\\n', '-122.120000,37.280000,21.000000,349.000000,64.000000,149.000000,56.000000,5.869100,360000.000000\\n', '-121.320000,38.260000,4.000000,6125.000000,1063.000000,3077.000000,953.000000,4.117900,134600.000000\\n', '-121.910000,36.620000,40.000000,1292.000000,271.000000,504.000000,230.000000,2.475000,258300.000000\\n', '-117.810000,33.710000,16.000000,2666.000000,387.000000,1227.000000,347.000000,7.376900,302400.000000\\n', '-119.710000,36.810000,19.000000,2282.000000,550.000000,1034.000000,500.000000,1.661800,69700.000000\\n', '-119.190000,34.170000,27.000000,2183.000000,364.000000,1458.000000,388.000000,4.456700,191100.000000\\n', '-117.820000,33.790000,26.000000,2641.000000,633.000000,3657.000000,617.000000,4.133900,222300.000000\\n', '-118.270000,34.160000,48.000000,1301.000000,253.000000,637.000000,260.000000,4.343800,252700.000000\\n', '-118.330000,34.100000,45.000000,1913.000000,696.000000,1552.000000,611.000000,2.088800,237500.000000\\n', '-122.290000,37.910000,46.000000,2085.000000,346.000000,748.000000,354.000000,4.053600,262000.000000\\n', '-118.020000,33.820000,21.000000,2052.000000,456.000000,1173.000000,432.000000,3.788500,204500.000000\\n', '-118.220000,33.960000,35.000000,1437.000000,474.000000,2113.000000,484.000000,2.617900,158800.000000\\n', '-116.890000,32.820000,18.000000,2515.000000,443.000000,1442.000000,449.000000,5.020100,154400.000000\\n', '-117.950000,33.860000,35.000000,2478.000000,431.000000,1333.000000,427.000000,5.209900,191400.000000\\n', '-122.270000,37.480000,26.000000,3542.000000,507.000000,1392.000000,524.000000,8.518400,500001.000000\\n', '-120.510000,39.520000,26.000000,2286.000000,444.000000,498.000000,216.000000,2.065000,96100.000000\\n', '-118.420000,34.090000,40.000000,3552.000000,392.000000,1024.000000,370.000000,15.000100,500001.000000\\n', '-119.500000,35.270000,23.000000,3827.000000,696.000000,1993.000000,617.000000,3.074200,57900.000000\\n', '-122.910000,39.070000,21.000000,2202.000000,484.000000,1000.000000,381.000000,2.442300,102300.000000\\n', '-122.460000,37.770000,52.000000,1824.000000,388.000000,799.000000,363.000000,3.750000,435700.000000\\n', '-121.540000,36.990000,27.000000,2361.000000,449.000000,1782.000000,397.000000,3.261400,305000.000000\\n', '-118.450000,34.190000,37.000000,1073.000000,254.000000,739.000000,253.000000,2.466700,192200.000000\\n', '-117.950000,34.050000,35.000000,1309.000000,276.000000,1113.000000,253.000000,4.375000,156500.000000\\n', '-120.560000,35.480000,12.000000,4161.000000,731.000000,1609.000000,615.000000,5.094700,267500.000000\\n', '-122.460000,37.650000,21.000000,2751.000000,502.000000,2027.000000,491.000000,5.257300,322900.000000\\n', '-117.850000,33.760000,33.000000,1866.000000,327.000000,1053.000000,371.000000,4.546100,213800.000000\\n', '-118.210000,33.920000,37.000000,1705.000000,403.000000,1839.000000,410.000000,2.583300,132700.000000\\n', '-118.170000,33.980000,31.000000,1236.000000,329.000000,1486.000000,337.000000,3.093800,155400.000000\\n', '-121.790000,37.340000,20.000000,2018.000000,328.000000,1196.000000,323.000000,4.931800,262400.000000\\n', '-117.980000,33.830000,32.000000,1133.000000,166.000000,523.000000,187.000000,6.213000,230800.000000\\n', '-118.430000,34.300000,37.000000,1394.000000,313.000000,1111.000000,327.000000,3.602300,161800.000000\\n', '-121.690000,39.360000,34.000000,842.000000,186.000000,635.000000,165.000000,1.835500,63000.000000\\n', '-117.270000,33.770000,16.000000,2876.000000,576.000000,1859.000000,545.000000,2.087800,101300.000000\\n', '-122.410000,37.590000,40.000000,2401.000000,383.000000,894.000000,356.000000,5.649300,422400.000000\\n', '-117.480000,34.100000,30.000000,2287.000000,531.000000,1796.000000,503.000000,2.583300,90600.000000\\n', '-117.060000,32.700000,12.000000,3943.000000,737.000000,3280.000000,751.000000,4.112000,141400.000000\\n', '-121.920000,36.630000,40.000000,1076.000000,193.000000,406.000000,180.000000,3.494300,311100.000000\\n', '-120.440000,37.310000,16.000000,3369.000000,532.000000,1770.000000,574.000000,5.266200,126200.000000\\n', '-117.180000,32.700000,44.000000,2655.000000,514.000000,1102.000000,489.000000,3.675900,368800.000000\\n', '-121.570000,39.120000,30.000000,2601.000000,534.000000,1702.000000,506.000000,2.080000,56600.000000\\n', '-122.210000,37.790000,52.000000,762.000000,190.000000,600.000000,195.000000,3.089300,125000.000000\\n', '-118.910000,35.300000,28.000000,1793.000000,358.000000,1233.000000,351.000000,2.784500,82200.000000\\n', '-121.950000,37.320000,20.000000,1145.000000,198.000000,431.000000,173.000000,3.110300,281900.000000\\n', '-121.350000,38.680000,20.000000,7085.000000,1222.000000,3455.000000,1229.000000,4.311800,120000.000000\\n', '-121.280000,38.760000,47.000000,2901.000000,631.000000,1276.000000,578.000000,2.136600,101900.000000\\n', '-118.350000,33.890000,30.000000,1143.000000,299.000000,776.000000,273.000000,4.282900,240000.000000\\n', '-121.980000,37.970000,26.000000,2714.000000,390.000000,1232.000000,409.000000,5.961700,231100.000000\\n', '-120.020000,38.920000,24.000000,1194.000000,246.000000,414.000000,151.000000,3.239600,101900.000000\\n', '-122.280000,37.770000,52.000000,1468.000000,363.000000,870.000000,347.000000,2.968800,220800.000000\\n', '-118.060000,34.580000,36.000000,1493.000000,258.000000,899.000000,260.000000,3.860000,109300.000000\\n', '-119.020000,35.380000,52.000000,90.000000,35.000000,36.000000,31.000000,0.805400,60000.000000\\n', '-122.430000,37.790000,52.000000,6186.000000,1566.000000,2065.000000,1374.000000,5.854300,500001.000000\\n', '-118.070000,33.860000,17.000000,3666.000000,562.000000,2104.000000,579.000000,5.681800,338900.000000\\n', '-122.300000,38.000000,34.000000,1712.000000,317.000000,956.000000,341.000000,4.439400,162000.000000\\n', '-117.170000,33.280000,16.000000,1921.000000,312.000000,862.000000,280.000000,5.178600,376800.000000\\n', '-117.300000,34.140000,37.000000,1454.000000,261.000000,761.000000,248.000000,2.343800,88100.000000\\n', '-117.710000,33.600000,25.000000,1949.000000,459.000000,602.000000,428.000000,2.760100,72500.000000\\n', '-122.500000,37.780000,46.000000,2646.000000,607.000000,1418.000000,563.000000,3.716700,332800.000000\\n', '-122.720000,38.450000,41.000000,1743.000000,373.000000,780.000000,357.000000,3.146700,175500.000000\\n', '-118.430000,34.180000,31.000000,2417.000000,510.000000,1102.000000,507.000000,3.890600,282200.000000\\n', '-118.030000,33.970000,22.000000,2185.000000,623.000000,1644.000000,606.000000,2.593000,192000.000000\\n', '-118.420000,33.990000,23.000000,5548.000000,1245.000000,2847.000000,1229.000000,4.422800,366900.000000\\n', '-118.290000,33.960000,31.000000,4022.000000,1208.000000,3707.000000,1007.000000,1.309600,116300.000000\\n', '-117.980000,33.730000,22.000000,4232.000000,624.000000,2408.000000,660.000000,6.653900,284900.000000\\n', '-121.910000,39.140000,45.000000,845.000000,155.000000,343.000000,136.000000,2.125000,62000.000000\\n', '-119.590000,36.640000,27.000000,823.000000,171.000000,798.000000,200.000000,3.052100,113800.000000\\n', '-118.330000,34.110000,37.000000,2330.000000,434.000000,846.000000,457.000000,8.233500,430200.000000\\n', '-120.630000,38.750000,17.000000,3145.000000,621.000000,1432.000000,559.000000,2.720100,117500.000000\\n', '-122.120000,37.750000,28.000000,794.000000,111.000000,329.000000,109.000000,7.692300,329800.000000\\n', '-118.350000,33.950000,45.000000,1076.000000,213.000000,781.000000,238.000000,3.950000,164000.000000\\n', '-120.440000,34.960000,29.000000,2374.000000,562.000000,1617.000000,463.000000,2.653100,108300.000000\\n', '-117.080000,33.120000,43.000000,107.000000,44.000000,107.000000,48.000000,0.705400,137500.000000\\n', '-121.270000,38.610000,17.000000,6663.000000,1369.000000,2840.000000,1299.000000,2.945200,115600.000000\\n', '-120.070000,36.960000,32.000000,1268.000000,283.000000,549.000000,273.000000,1.451100,65200.000000\\n', '-117.660000,34.060000,39.000000,1405.000000,339.000000,1489.000000,336.000000,1.608000,91800.000000\\n', '-117.060000,33.010000,24.000000,2618.000000,485.000000,726.000000,443.000000,3.519200,159100.000000\\n', '-117.920000,33.730000,17.000000,1692.000000,293.000000,934.000000,280.000000,4.472800,205800.000000\\n', '-117.930000,33.920000,34.000000,2271.000000,437.000000,1393.000000,433.000000,4.244300,174400.000000\\n', '-122.590000,38.920000,15.000000,1410.000000,329.000000,599.000000,273.000000,2.195300,75000.000000\\n', '-118.140000,33.840000,36.000000,3002.000000,484.000000,1322.000000,471.000000,4.933000,228900.000000\\n', '-120.790000,37.080000,9.000000,97.000000,20.000000,91.000000,22.000000,2.906300,55000.000000\\n', '-117.600000,34.110000,18.000000,6025.000000,1062.000000,3360.000000,1028.000000,4.888900,155700.000000\\n', '-122.020000,37.550000,33.000000,1325.000000,274.000000,909.000000,267.000000,4.568700,177200.000000\\n', '-118.140000,33.970000,31.000000,1161.000000,267.000000,1175.000000,282.000000,3.011400,177000.000000\\n', '-122.310000,37.540000,38.000000,1946.000000,407.000000,975.000000,417.000000,4.072600,385400.000000\\n', '-122.260000,37.830000,52.000000,2432.000000,715.000000,1377.000000,696.000000,2.589800,176000.000000\\n', '-121.880000,37.680000,23.000000,2234.000000,270.000000,854.000000,286.000000,7.333000,337200.000000\\n', '-122.530000,37.940000,18.000000,878.000000,255.000000,384.000000,247.000000,4.734400,200000.000000\\n', '-117.710000,33.630000,16.000000,1565.000000,274.000000,950.000000,280.000000,5.839900,220600.000000\\n', '-120.100000,39.190000,17.000000,1480.000000,241.000000,202.000000,80.000000,3.937500,213200.000000\\n', '-117.770000,33.720000,9.000000,2153.000000,316.000000,954.000000,324.000000,7.813900,304700.000000\\n', '-118.010000,33.840000,35.000000,4166.000000,713.000000,2354.000000,709.000000,5.177500,213400.000000\\n', '-122.190000,37.710000,36.000000,361.000000,69.000000,158.000000,58.000000,5.546100,262500.000000\\n', '-120.360000,38.210000,10.000000,4300.000000,845.000000,1480.000000,609.000000,2.820800,139900.000000\\n', '-117.320000,34.030000,13.000000,3853.000000,761.000000,1685.000000,669.000000,3.902400,122400.000000\\n', '-117.710000,34.020000,17.000000,12689.000000,2426.000000,7343.000000,2230.000000,3.636100,157700.000000\\n', '-118.260000,33.910000,33.000000,954.000000,241.000000,655.000000,218.000000,2.588200,92800.000000\\n', '-121.940000,36.580000,23.000000,4911.000000,693.000000,1480.000000,606.000000,6.777000,500000.000000\\n', '-121.760000,37.690000,29.000000,3433.000000,711.000000,1919.000000,709.000000,3.384100,184400.000000\\n', '-121.940000,36.550000,30.000000,2722.000000,584.000000,628.000000,384.000000,3.404800,487100.000000\\n', '-122.640000,38.010000,36.000000,1199.000000,232.000000,551.000000,229.000000,3.732100,266700.000000\\n', '-119.340000,36.340000,5.000000,4505.000000,834.000000,1917.000000,775.000000,4.014400,126600.000000\\n', '-122.060000,37.270000,16.000000,1612.000000,221.000000,567.000000,208.000000,10.579300,500001.000000\\n', '-117.940000,33.730000,24.000000,4197.000000,718.000000,2468.000000,714.000000,5.256300,211400.000000\\n', '-118.440000,33.980000,21.000000,18132.000000,5419.000000,7431.000000,4930.000000,5.335900,500001.000000\\n', '-117.690000,34.010000,30.000000,2598.000000,573.000000,2170.000000,518.000000,2.300000,95600.000000\\n', '-117.870000,34.150000,24.000000,5745.000000,735.000000,2061.000000,679.000000,8.282700,451400.000000\\n', '-119.690000,36.380000,25.000000,1688.000000,302.000000,879.000000,277.000000,3.321400,103100.000000\\n', '-122.280000,38.000000,26.000000,2335.000000,413.000000,980.000000,417.000000,3.447100,178900.000000\\n', '-118.330000,34.040000,31.000000,1090.000000,251.000000,955.000000,239.000000,2.913000,192500.000000\\n', '-118.170000,34.070000,37.000000,1155.000000,225.000000,814.000000,241.000000,3.875000,148500.000000\\n', '-117.950000,34.140000,13.000000,3859.000000,710.000000,2283.000000,759.000000,4.559400,184500.000000\\n', '-118.280000,33.790000,28.000000,1895.000000,420.000000,1422.000000,389.000000,4.381600,191300.000000\\n', '-120.860000,37.690000,5.000000,6660.000000,1217.000000,3012.000000,1087.000000,3.080900,143600.000000\\n', '-120.150000,39.170000,32.000000,1684.000000,359.000000,454.000000,209.000000,2.912500,145800.000000\\n', '-117.050000,32.710000,25.000000,3292.000000,608.000000,2266.000000,592.000000,3.298600,119200.000000\\n', '-121.440000,38.520000,36.000000,3446.000000,950.000000,2460.000000,847.000000,1.652100,69700.000000\\n', '-118.500000,34.190000,26.000000,2156.000000,509.000000,1142.000000,470.000000,4.000000,224700.000000\\n', '-121.440000,37.760000,5.000000,7264.000000,1285.000000,3670.000000,1146.000000,5.044300,194800.000000\\n', '-121.950000,37.370000,39.000000,446.000000,129.000000,317.000000,127.000000,3.035700,208300.000000\\n', '-122.430000,37.770000,52.000000,2685.000000,629.000000,1170.000000,614.000000,3.689400,418800.000000\\n', '-118.280000,34.010000,48.000000,483.000000,190.000000,775.000000,188.000000,2.330900,126600.000000\\n', '-118.280000,33.840000,27.000000,2326.000000,533.000000,1697.000000,546.000000,3.863300,187900.000000\\n', '-118.330000,34.040000,48.000000,2437.000000,443.000000,1400.000000,426.000000,2.628000,251100.000000\\n', '-118.270000,33.950000,35.000000,2073.000000,494.000000,1753.000000,490.000000,1.500000,93600.000000\\n', '-120.420000,34.910000,4.000000,6986.000000,1217.000000,2801.000000,1212.000000,3.213500,212700.000000\\n', '-117.100000,32.830000,16.000000,1049.000000,154.000000,467.000000,160.000000,6.204700,248100.000000\\n', '-121.890000,36.890000,18.000000,2774.000000,492.000000,1283.000000,353.000000,5.368000,352000.000000\\n', '-118.220000,33.960000,42.000000,1380.000000,331.000000,1290.000000,288.000000,2.800000,161800.000000\\n', '-117.270000,33.020000,13.000000,5723.000000,1242.000000,2450.000000,1140.000000,4.717900,376700.000000\\n', '-121.290000,38.680000,20.000000,1881.000000,378.000000,921.000000,360.000000,1.858900,144000.000000\\n', '-121.950000,37.310000,27.000000,2462.000000,570.000000,1278.000000,565.000000,3.565200,329500.000000\\n', '-118.960000,35.370000,41.000000,1463.000000,339.000000,1066.000000,318.000000,1.746700,52400.000000\\n', '-121.880000,36.580000,29.000000,4910.000000,871.000000,3438.000000,904.000000,4.043200,450000.000000\\n', '-117.250000,34.410000,13.000000,3682.000000,668.000000,1606.000000,668.000000,2.187500,119700.000000\\n', '-118.380000,33.770000,17.000000,10950.000000,2207.000000,4713.000000,2043.000000,6.306400,418300.000000\\n', '-114.550000,32.800000,19.000000,2570.000000,820.000000,1431.000000,608.000000,1.275000,56100.000000\\n', '-119.810000,34.440000,23.000000,3172.000000,588.000000,1467.000000,559.000000,4.680600,288900.000000\\n', '-117.120000,33.490000,4.000000,21988.000000,4055.000000,8824.000000,3252.000000,3.996300,191100.000000\\n', '-118.320000,33.800000,39.000000,1415.000000,298.000000,729.000000,278.000000,3.164800,244800.000000\\n', '-122.180000,37.730000,43.000000,1391.000000,293.000000,855.000000,285.000000,2.519200,76400.000000\\n', '-118.100000,34.130000,47.000000,2234.000000,276.000000,749.000000,260.000000,15.000100,500001.000000\\n', '-122.270000,40.390000,26.000000,1833.000000,422.000000,939.000000,408.000000,1.357100,59000.000000\\n', '-121.940000,37.730000,22.000000,6719.000000,1068.000000,2843.000000,994.000000,6.126500,260300.000000\\n', '-121.290000,38.630000,24.000000,2868.000000,527.000000,1284.000000,487.000000,3.318200,213000.000000\\n', '-117.590000,33.440000,3.000000,5813.000000,1264.000000,2363.000000,1041.000000,4.389700,341300.000000\\n', '-118.440000,34.190000,29.000000,1599.000000,459.000000,1143.000000,438.000000,2.458300,199100.000000\\n', '-118.150000,34.030000,42.000000,1481.000000,411.000000,1206.000000,394.000000,2.680600,189300.000000\\n', '-116.480000,33.800000,15.000000,3004.000000,615.000000,437.000000,210.000000,3.666700,90000.000000\\n', '-118.410000,33.980000,33.000000,3331.000000,777.000000,1695.000000,735.000000,3.972700,307200.000000\\n', '-121.050000,37.650000,5.000000,3096.000000,545.000000,1760.000000,519.000000,4.570100,146400.000000\\n', '-122.420000,37.800000,50.000000,2494.000000,731.000000,958.000000,712.000000,3.235600,500001.000000\\n', '-117.310000,34.110000,38.000000,1208.000000,321.000000,1225.000000,317.000000,1.466300,64000.000000\\n', '-116.990000,32.760000,21.000000,3833.000000,595.000000,1645.000000,589.000000,4.625000,273500.000000\\n', '-122.110000,37.890000,32.000000,2372.000000,516.000000,1067.000000,492.000000,4.323500,279500.000000\\n', '-122.270000,37.800000,10.000000,105.000000,42.000000,125.000000,39.000000,0.972200,137500.000000\\n', '-121.870000,37.380000,16.000000,3275.000000,529.000000,1863.000000,527.000000,5.542900,269100.000000\\n', '-118.200000,33.770000,22.000000,1118.000000,437.000000,1190.000000,399.000000,1.979700,143800.000000\\n', '-117.120000,32.570000,35.000000,1450.000000,256.000000,930.000000,286.000000,2.671500,133300.000000\\n', '-118.330000,34.000000,52.000000,1114.000000,169.000000,486.000000,176.000000,4.291700,247600.000000\\n', '-117.170000,32.820000,21.000000,2869.000000,596.000000,1471.000000,577.000000,3.037500,197600.000000\\n', '-120.360000,40.450000,19.000000,689.000000,143.000000,355.000000,127.000000,1.733300,70000.000000\\n', '-116.520000,33.810000,12.000000,12396.000000,2552.000000,2548.000000,1265.000000,3.439400,162200.000000\\n', '-119.820000,36.770000,41.000000,1441.000000,274.000000,646.000000,296.000000,3.056800,71300.000000\\n', '-118.350000,33.870000,28.000000,2319.000000,579.000000,1369.000000,564.000000,3.616900,257000.000000\\n', '-117.340000,34.490000,9.000000,3293.000000,585.000000,1678.000000,530.000000,3.294100,98300.000000\\n', '-118.550000,34.170000,36.000000,2127.000000,297.000000,761.000000,274.000000,7.839200,500001.000000\\n', '-122.110000,38.090000,11.000000,673.000000,145.000000,318.000000,137.000000,2.392900,122500.000000\\n', '-122.260000,37.560000,23.000000,7283.000000,1342.000000,3399.000000,1298.000000,5.668300,391000.000000\\n', '-121.350000,38.660000,24.000000,3313.000000,769.000000,1631.000000,681.000000,2.555600,105700.000000\\n', '-118.210000,34.040000,37.000000,845.000000,249.000000,881.000000,252.000000,2.245400,165000.000000\\n', '-118.340000,34.070000,52.000000,3421.000000,598.000000,1203.000000,564.000000,4.161800,500001.000000\\n', '-117.880000,34.130000,25.000000,2559.000000,654.000000,1674.000000,623.000000,2.854700,155600.000000\\n', '-117.870000,33.840000,23.000000,1678.000000,369.000000,912.000000,347.000000,4.500000,237300.000000\\n', '-117.340000,34.080000,33.000000,4924.000000,1007.000000,3502.000000,953.000000,3.233000,99400.000000\\n', '-118.330000,34.020000,11.000000,1249.000000,313.000000,625.000000,336.000000,0.870200,170500.000000\\n', '-118.330000,33.790000,29.000000,4389.000000,873.000000,2069.000000,901.000000,4.107100,365600.000000\\n', '-119.290000,35.760000,15.000000,3938.000000,789.000000,3500.000000,768.000000,2.129500,59800.000000\\n', '-117.090000,32.620000,37.000000,1538.000000,298.000000,867.000000,285.000000,3.072900,128700.000000\\n', '-121.810000,37.250000,5.000000,1975.000000,520.000000,861.000000,440.000000,4.456500,159000.000000\\n', '-120.290000,37.940000,17.000000,1459.000000,297.000000,753.000000,271.000000,3.050000,144800.000000\\n', '-120.700000,35.140000,17.000000,5805.000000,1097.000000,1919.000000,932.000000,3.535200,357800.000000\\n', '-118.170000,34.060000,36.000000,871.000000,201.000000,2862.000000,181.000000,2.184500,123800.000000\\n', '-117.990000,33.930000,27.000000,3708.000000,718.000000,1921.000000,721.000000,4.375000,210400.000000\\n', '-118.250000,34.220000,30.000000,2062.000000,396.000000,1089.000000,375.000000,5.536200,301200.000000\\n', '-118.110000,33.830000,36.000000,1820.000000,313.000000,899.000000,295.000000,4.918000,225200.000000\\n', '-122.040000,37.330000,22.000000,4011.000000,963.000000,2206.000000,879.000000,4.572100,351200.000000\\n', '-119.670000,36.570000,32.000000,1604.000000,292.000000,868.000000,276.000000,2.190800,110000.000000\\n', '-119.560000,36.710000,37.000000,1609.000000,374.000000,1173.000000,344.000000,2.181000,59900.000000\\n', '-122.350000,37.960000,36.000000,2191.000000,531.000000,1563.000000,524.000000,2.516400,114200.000000\\n', '-117.080000,32.580000,15.000000,1462.000000,274.000000,1002.000000,271.000000,3.969800,142700.000000\\n', '-118.610000,34.200000,29.000000,1673.000000,284.000000,794.000000,270.000000,5.519100,245800.000000\\n', '-118.240000,34.140000,27.000000,2909.000000,1021.000000,2614.000000,935.000000,2.144400,229000.000000\\n', '-118.400000,34.030000,43.000000,1006.000000,201.000000,520.000000,199.000000,6.566900,372800.000000\\n', '-116.980000,33.260000,12.000000,5898.000000,1002.000000,3129.000000,945.000000,4.764700,254100.000000\\n', '-117.930000,33.680000,33.000000,2664.000000,432.000000,1197.000000,429.000000,5.069000,264200.000000\\n', '-122.250000,37.470000,38.000000,645.000000,124.000000,265.000000,103.000000,5.468800,305000.000000\\n', '-118.190000,33.840000,44.000000,2731.000000,577.000000,1396.000000,555.000000,4.177100,219100.000000\\n', '-118.450000,34.320000,23.000000,3481.000000,641.000000,1952.000000,682.000000,4.260000,189400.000000\\n', '-122.140000,39.970000,27.000000,1079.000000,222.000000,625.000000,197.000000,3.131900,62700.000000\\n', '-118.300000,34.020000,27.000000,2190.000000,626.000000,1768.000000,528.000000,1.244600,103800.000000\\n', '-117.900000,33.730000,31.000000,1171.000000,306.000000,1690.000000,301.000000,3.263900,155200.000000\\n', '-121.580000,39.150000,38.000000,1756.000000,396.000000,837.000000,401.000000,1.912200,55500.000000\\n', '-121.950000,38.350000,16.000000,2084.000000,292.000000,1099.000000,292.000000,5.826900,150200.000000\\n', '-117.690000,34.070000,35.000000,3222.000000,559.000000,1970.000000,550.000000,3.708300,131000.000000\\n', '-117.080000,32.740000,35.000000,1434.000000,253.000000,753.000000,228.000000,2.381200,135100.000000\\n', '-118.290000,34.000000,41.000000,1807.000000,493.000000,1731.000000,471.000000,1.234700,111700.000000\\n', '-123.800000,39.460000,35.000000,1718.000000,345.000000,698.000000,299.000000,2.924300,131600.000000\\n', '-119.120000,35.330000,4.000000,8574.000000,1489.000000,4250.000000,1444.000000,5.103600,103400.000000\\n', '-121.800000,37.340000,20.000000,2686.000000,414.000000,1507.000000,405.000000,5.806800,263900.000000\\n', '-117.090000,32.750000,19.000000,2739.000000,707.000000,2004.000000,622.000000,1.631800,117700.000000\\n', '-122.130000,37.430000,40.000000,3454.000000,648.000000,1498.000000,647.000000,5.211400,438400.000000\\n', '-117.980000,33.760000,24.000000,1880.000000,405.000000,967.000000,418.000000,4.454500,192500.000000\\n', '-122.330000,37.940000,43.000000,1876.000000,389.000000,807.000000,377.000000,3.157100,141600.000000\\n', '-121.440000,38.540000,39.000000,2855.000000,574.000000,1217.000000,562.000000,3.240400,93600.000000\\n', '-118.020000,33.700000,23.000000,5069.000000,770.000000,2473.000000,769.000000,6.304700,285700.000000\\n', '-117.880000,33.840000,26.000000,1499.000000,290.000000,755.000000,277.000000,3.589300,238500.000000\\n', '-120.460000,37.310000,35.000000,2042.000000,378.000000,953.000000,356.000000,2.734400,87800.000000\\n', '-118.310000,33.720000,26.000000,2711.000000,508.000000,1372.000000,459.000000,4.145100,326700.000000\\n', '-117.820000,33.670000,17.000000,2895.000000,439.000000,1588.000000,450.000000,6.276000,290700.000000\\n', '-117.990000,33.870000,17.000000,2334.000000,537.000000,1662.000000,535.000000,3.014700,217000.000000\\n', '-119.800000,36.860000,7.000000,6434.000000,1201.000000,2733.000000,1045.000000,3.765600,145000.000000\\n', '-121.470000,38.580000,43.000000,3807.000000,952.000000,1484.000000,850.000000,2.326600,137500.000000\\n', '-117.600000,33.870000,15.000000,7626.000000,1570.000000,3823.000000,1415.000000,3.441900,138100.000000\\n', '-117.100000,32.750000,11.000000,2393.000000,726.000000,1905.000000,711.000000,1.344800,91300.000000\\n', '-117.880000,33.760000,17.000000,1768.000000,474.000000,1079.000000,436.000000,1.782300,205300.000000\\n', '-118.350000,33.990000,48.000000,2741.000000,439.000000,1115.000000,459.000000,5.051400,269100.000000\\n', '-121.810000,37.310000,14.000000,2731.000000,578.000000,1109.000000,551.000000,3.138200,139700.000000\\n', '-120.430000,34.900000,30.000000,2388.000000,393.000000,1117.000000,375.000000,4.105800,164000.000000\\n', '-118.190000,34.050000,29.000000,855.000000,199.000000,785.000000,169.000000,2.696400,122200.000000\\n', '-117.890000,33.910000,33.000000,1264.000000,224.000000,527.000000,227.000000,3.732100,216500.000000\\n', '-118.270000,34.020000,21.000000,1314.000000,375.000000,1505.000000,366.000000,2.319000,97200.000000\\n', '-116.730000,34.520000,16.000000,1247.000000,315.000000,433.000000,159.000000,1.056800,75000.000000\\n', '-121.500000,38.520000,37.000000,2008.000000,466.000000,1261.000000,427.000000,2.257400,59100.000000\\n', '-120.610000,35.120000,16.000000,1671.000000,354.000000,935.000000,340.000000,2.579200,163800.000000\\n', '-120.630000,36.980000,20.000000,2380.000000,489.000000,1581.000000,505.000000,2.059500,61300.000000\\n', '-117.060000,32.590000,13.000000,3920.000000,775.000000,2814.000000,760.000000,4.061600,148800.000000\\n', '-119.020000,35.420000,40.000000,1912.000000,439.000000,1015.000000,413.000000,1.459800,52600.000000\\n', '-118.140000,34.030000,38.000000,1447.000000,293.000000,1042.000000,284.000000,4.137500,211500.000000\\n', '-118.310000,33.730000,52.000000,2025.000000,361.000000,957.000000,363.000000,4.205900,350000.000000\\n', '-121.940000,38.370000,14.000000,1156.000000,216.000000,574.000000,227.000000,3.239600,143800.000000\\n', '-122.510000,37.920000,32.000000,2622.000000,541.000000,1022.000000,464.000000,3.764700,375000.000000\\n', '-119.450000,36.160000,27.000000,2119.000000,373.000000,1268.000000,345.000000,2.815200,106900.000000\\n', '-118.190000,33.970000,27.000000,2911.000000,972.000000,3559.000000,945.000000,1.948500,146300.000000\\n', '-116.710000,33.750000,25.000000,10665.000000,2161.000000,1874.000000,852.000000,3.062500,150500.000000\\n', '-118.280000,33.990000,35.000000,1138.000000,304.000000,1128.000000,311.000000,1.881800,100000.000000\\n', '-118.120000,33.850000,37.000000,2584.000000,453.000000,1333.000000,481.000000,4.366100,219900.000000\\n', '-122.530000,37.630000,27.000000,2589.000000,658.000000,1386.000000,608.000000,2.908700,228200.000000\\n', '-121.060000,37.730000,5.000000,2256.000000,420.000000,1246.000000,397.000000,4.923600,155900.000000\\n', '-120.880000,38.450000,25.000000,1374.000000,297.000000,657.000000,288.000000,2.547600,97900.000000\\n', '-117.110000,32.580000,12.000000,1086.000000,294.000000,870.000000,290.000000,2.421300,132500.000000\\n', '-117.900000,33.650000,27.000000,3310.000000,598.000000,1402.000000,563.000000,6.632000,441100.000000\\n', '-121.870000,37.660000,52.000000,775.000000,134.000000,315.000000,123.000000,5.067700,233300.000000\\n', '-121.300000,37.960000,52.000000,1354.000000,314.000000,679.000000,311.000000,1.778800,97400.000000\\n', '-117.800000,33.850000,16.000000,4151.000000,637.000000,1558.000000,604.000000,5.806000,304900.000000\\n', '-118.550000,34.200000,31.000000,1963.000000,420.000000,1494.000000,415.000000,3.531300,211800.000000\\n', '-118.440000,34.240000,36.000000,1660.000000,301.000000,1225.000000,307.000000,4.095000,184000.000000\\n', '-117.910000,33.880000,34.000000,1851.000000,291.000000,784.000000,290.000000,5.233600,235600.000000\\n', '-118.510000,34.230000,27.000000,4580.000000,918.000000,2252.000000,850.000000,4.792600,454400.000000\\n', '-119.150000,34.170000,23.000000,2239.000000,537.000000,784.000000,497.000000,1.603800,194300.000000\\n', '-122.080000,37.900000,32.000000,1075.000000,170.000000,486.000000,173.000000,5.049900,306800.000000\\n', '-122.410000,37.710000,28.000000,5015.000000,1240.000000,3900.000000,1029.000000,1.226900,181900.000000\\n', '-122.220000,37.470000,35.000000,367.000000,113.000000,398.000000,109.000000,2.500000,166700.000000\\n', '-117.870000,33.920000,17.000000,4575.000000,764.000000,2054.000000,737.000000,6.057100,272400.000000\\n', '-122.000000,36.970000,30.000000,1029.000000,242.000000,753.000000,249.000000,3.120500,240500.000000\\n', '-117.070000,32.600000,13.000000,1607.000000,435.000000,983.000000,400.000000,2.290300,106300.000000\\n', '-118.160000,34.060000,27.000000,1675.000000,274.000000,785.000000,275.000000,5.828000,301100.000000\\n', '-117.050000,33.030000,16.000000,87.000000,20.000000,32.000000,21.000000,4.357100,144600.000000\\n', '-117.240000,33.200000,26.000000,1701.000000,404.000000,989.000000,367.000000,2.511900,171700.000000\\n', '-119.730000,34.450000,44.000000,2261.000000,328.000000,763.000000,294.000000,6.744900,415600.000000\\n', '-117.320000,33.170000,18.000000,2143.000000,299.000000,828.000000,283.000000,4.238300,239000.000000\\n', '-121.830000,37.270000,14.000000,2855.000000,380.000000,1420.000000,383.000000,6.671200,311500.000000\\n', '-122.320000,40.420000,17.000000,3019.000000,578.000000,1538.000000,545.000000,2.793000,76500.000000\\n', '-121.770000,36.940000,18.000000,1063.000000,341.000000,1033.000000,313.000000,2.019200,171300.000000\\n', '-118.270000,33.790000,39.000000,1513.000000,365.000000,1227.000000,354.000000,3.392900,184600.000000\\n', '-117.930000,33.830000,30.000000,1561.000000,381.000000,1104.000000,391.000000,3.375000,201900.000000\\n', '-117.110000,32.820000,17.000000,1787.000000,330.000000,1341.000000,314.000000,2.875000,112500.000000\\n', '-119.230000,35.740000,16.000000,2275.000000,659.000000,1914.000000,614.000000,2.033000,68400.000000\\n', '-122.470000,37.710000,42.000000,1961.000000,427.000000,1211.000000,409.000000,3.515600,239400.000000\\n', '-121.930000,36.630000,41.000000,1049.000000,198.000000,428.000000,183.000000,4.357100,287500.000000\\n', '-117.280000,33.020000,21.000000,2736.000000,585.000000,1251.000000,576.000000,4.235600,347700.000000\\n', '-118.990000,35.240000,40.000000,282.000000,59.000000,213.000000,71.000000,2.350000,91700.000000\\n', '-119.140000,36.230000,22.000000,2935.000000,523.000000,1927.000000,530.000000,2.587500,70400.000000\\n', '-122.420000,40.590000,24.000000,5045.000000,972.000000,2220.000000,979.000000,2.679200,138900.000000\\n', '-117.090000,32.660000,37.000000,1232.000000,330.000000,1086.000000,330.000000,1.638900,114300.000000\\n', '-118.140000,34.700000,36.000000,1205.000000,317.000000,678.000000,290.000000,2.018200,98400.000000\\n', '-122.040000,36.980000,35.000000,2155.000000,355.000000,866.000000,335.000000,5.618800,404700.000000\\n', '-117.020000,32.800000,31.000000,2692.000000,445.000000,1129.000000,450.000000,4.458300,170000.000000\\n', '-117.290000,34.490000,3.000000,7689.000000,1545.000000,3804.000000,1399.000000,3.387100,111800.000000\\n', '-122.090000,37.210000,15.000000,1969.000000,332.000000,822.000000,324.000000,7.877400,394900.000000\\n', '-121.010000,37.650000,47.000000,1713.000000,334.000000,570.000000,297.000000,2.196900,149400.000000\\n', '-116.770000,33.080000,13.000000,1406.000000,260.000000,737.000000,279.000000,5.584200,239100.000000\\n', '-121.960000,37.340000,36.000000,844.000000,153.000000,373.000000,160.000000,5.791000,254100.000000\\n', '-119.700000,34.420000,41.000000,725.000000,239.000000,582.000000,214.000000,3.166700,362500.000000\\n', '-119.460000,35.170000,40.000000,4164.000000,812.000000,1998.000000,773.000000,2.832300,50800.000000\\n', '-122.010000,37.300000,25.000000,4044.000000,551.000000,1699.000000,533.000000,8.083700,380600.000000\\n', '-118.060000,33.830000,22.000000,5290.000000,1054.000000,2812.000000,1021.000000,4.530000,226400.000000\\n', '-118.400000,34.190000,30.000000,521.000000,126.000000,306.000000,129.000000,4.112500,216700.000000\\n', '-119.630000,34.440000,37.000000,3188.000000,442.000000,984.000000,376.000000,9.452200,500001.000000\\n', '-117.890000,33.770000,29.000000,2577.000000,445.000000,1849.000000,470.000000,4.473200,194800.000000\\n', '-119.540000,36.520000,16.000000,2703.000000,415.000000,1106.000000,372.000000,4.204500,120900.000000\\n', '-118.430000,34.170000,33.000000,1679.000000,404.000000,933.000000,412.000000,2.697900,266000.000000\\n', '-117.100000,32.580000,33.000000,393.000000,76.000000,330.000000,80.000000,4.102900,122700.000000\\n', '-122.280000,37.790000,30.000000,4145.000000,869.000000,3668.000000,855.000000,2.544400,275000.000000\\n', '-118.320000,34.110000,48.000000,4472.000000,1579.000000,2796.000000,1397.000000,2.397400,410700.000000\\n', '-118.420000,34.020000,28.000000,3167.000000,737.000000,1248.000000,665.000000,3.194100,394700.000000\\n', '-119.560000,36.510000,9.000000,3860.000000,809.000000,2157.000000,770.000000,2.503300,70100.000000\\n', '-122.420000,37.780000,19.000000,4065.000000,1645.000000,2079.000000,1470.000000,3.146200,187500.000000\\n', '-120.910000,37.730000,31.000000,840.000000,154.000000,429.000000,150.000000,2.406300,170200.000000\\n', '-122.080000,37.590000,16.000000,1816.000000,365.000000,1367.000000,355.000000,4.235000,156300.000000\\n', '-121.770000,37.310000,16.000000,1649.000000,228.000000,769.000000,230.000000,6.645500,302600.000000\\n', '-117.050000,33.030000,14.000000,5180.000000,1051.000000,1639.000000,991.000000,4.500000,222200.000000\\n', '-121.950000,37.260000,34.000000,1482.000000,255.000000,584.000000,246.000000,5.512100,264700.000000\\n', '-119.030000,35.420000,45.000000,1628.000000,352.000000,754.000000,334.000000,2.570300,62400.000000\\n', '-121.530000,38.600000,25.000000,5154.000000,1105.000000,3196.000000,1073.000000,2.756600,80200.000000\\n', '-118.160000,33.960000,24.000000,1635.000000,507.000000,2480.000000,481.000000,2.443200,187500.000000\\n', '-121.890000,36.600000,40.000000,626.000000,164.000000,337.000000,150.000000,2.791700,225000.000000\\n', '-117.070000,33.670000,11.000000,939.000000,187.000000,557.000000,190.000000,2.375000,145800.000000\\n', '-122.390000,37.590000,32.000000,4497.000000,730.000000,1846.000000,715.000000,6.132300,500001.000000\\n', '-118.440000,34.050000,32.000000,1880.000000,435.000000,798.000000,417.000000,4.710900,500000.000000\\n', '-121.350000,38.040000,5.000000,4303.000000,613.000000,2206.000000,621.000000,5.584200,159100.000000\\n', '-122.420000,37.760000,52.000000,4407.000000,1192.000000,2280.000000,1076.000000,3.393700,270000.000000\\n', '-118.020000,33.940000,33.000000,2382.000000,404.000000,1339.000000,389.000000,5.301600,192200.000000\\n', '-121.320000,38.030000,16.000000,4045.000000,623.000000,1862.000000,625.000000,4.875000,143100.000000\\n', '-118.380000,34.050000,49.000000,702.000000,143.000000,458.000000,187.000000,4.895800,333600.000000\\n', '-119.290000,36.540000,18.000000,2581.000000,628.000000,2732.000000,592.000000,1.842900,58300.000000\\n', '-117.760000,33.540000,28.000000,2250.000000,329.000000,826.000000,323.000000,6.925700,466400.000000\\n', '-122.290000,38.290000,52.000000,3217.000000,742.000000,1670.000000,671.000000,2.439800,163100.000000\\n', '-117.800000,33.810000,14.000000,1206.000000,142.000000,572.000000,149.000000,8.847000,388700.000000\\n', '-121.950000,37.350000,52.000000,2382.000000,523.000000,1096.000000,492.000000,4.265600,236100.000000\\n', '-117.870000,33.990000,21.000000,2837.000000,515.000000,2031.000000,555.000000,4.927100,209700.000000\\n', '-121.460000,38.560000,52.000000,907.000000,180.000000,479.000000,177.000000,2.212500,104000.000000\\n', '-117.990000,34.080000,11.000000,2399.000000,527.000000,2307.000000,531.000000,3.562500,141000.000000\\n', '-121.530000,38.500000,17.000000,3087.000000,477.000000,1365.000000,495.000000,6.466700,216800.000000\\n', '-121.140000,37.520000,37.000000,1358.000000,231.000000,586.000000,214.000000,3.164500,170800.000000\\n', '-118.290000,33.890000,35.000000,2810.000000,614.000000,1578.000000,601.000000,3.590000,200600.000000\\n', '-117.100000,33.090000,5.000000,12045.000000,2162.000000,5640.000000,1997.000000,4.437500,353000.000000\\n', '-123.200000,39.230000,26.000000,786.000000,168.000000,494.000000,161.000000,2.358300,105400.000000\\n', '-117.120000,32.760000,26.000000,1221.000000,331.000000,620.000000,296.000000,2.482100,123600.000000\\n', '-120.440000,34.960000,30.000000,1685.000000,315.000000,1290.000000,368.000000,3.472200,112500.000000\\n', '-115.560000,32.780000,34.000000,2856.000000,555.000000,1627.000000,522.000000,3.208300,76200.000000\\n', '-121.470000,38.560000,51.000000,2083.000000,559.000000,874.000000,524.000000,2.022100,95800.000000\\n', '-121.680000,37.930000,44.000000,1014.000000,225.000000,704.000000,238.000000,1.655400,119400.000000\\n', '-118.100000,34.140000,26.000000,6262.000000,1645.000000,3001.000000,1505.000000,3.657200,213200.000000\\n', '-118.430000,34.220000,34.000000,1588.000000,360.000000,1080.000000,340.000000,3.660000,184600.000000\\n', '-120.970000,37.660000,19.000000,1974.000000,393.000000,799.000000,377.000000,3.128600,137500.000000\\n', '-119.340000,34.390000,27.000000,669.000000,131.000000,314.000000,106.000000,2.465900,231300.000000\\n', '-118.500000,34.200000,34.000000,1617.000000,344.000000,938.000000,305.000000,3.915000,217700.000000\\n', '-120.980000,38.670000,13.000000,3432.000000,516.000000,1286.000000,470.000000,5.584000,186600.000000\\n', '-118.350000,34.000000,28.000000,3085.000000,621.000000,1162.000000,558.000000,3.250000,301000.000000\\n', '-122.490000,38.220000,33.000000,1486.000000,290.000000,781.000000,274.000000,3.564700,251800.000000\\n', '-118.320000,33.970000,46.000000,1504.000000,270.000000,814.000000,306.000000,4.391900,157100.000000\\n', '-117.130000,32.690000,36.000000,1469.000000,400.000000,1271.000000,340.000000,1.043000,90100.000000\\n', '-117.030000,33.000000,6.000000,6139.000000,793.000000,2693.000000,770.000000,7.756900,387400.000000\\n', '-122.260000,38.020000,5.000000,3846.000000,786.000000,2053.000000,716.000000,5.047300,184800.000000\\n', '-117.270000,32.850000,26.000000,1373.000000,336.000000,608.000000,268.000000,4.425000,475000.000000\\n', '-117.940000,33.860000,36.000000,2824.000000,493.000000,1394.000000,507.000000,4.647700,194700.000000\\n', '-119.310000,34.700000,19.000000,961.000000,218.000000,479.000000,138.000000,3.343800,156300.000000\\n', '-122.100000,37.610000,35.000000,2361.000000,458.000000,1727.000000,467.000000,4.528100,173600.000000\\n', '-118.000000,33.900000,35.000000,1942.000000,332.000000,1127.000000,325.000000,4.514400,206300.000000\\n', '-117.370000,33.980000,43.000000,2862.000000,772.000000,1878.000000,675.000000,2.115100,96700.000000\\n', '-121.520000,38.650000,17.000000,1269.000000,233.000000,494.000000,231.000000,3.961500,331300.000000\\n', '-118.460000,34.070000,42.000000,2564.000000,460.000000,913.000000,414.000000,9.222500,500001.000000\\n', '-118.040000,34.070000,39.000000,1382.000000,315.000000,1090.000000,308.000000,3.812500,174000.000000\\n', '-118.080000,33.880000,27.000000,923.000000,186.000000,1014.000000,204.000000,3.825000,159500.000000\\n', '-122.430000,37.800000,52.000000,2788.000000,813.000000,1302.000000,764.000000,4.199000,400000.000000\\n', '-119.290000,34.370000,41.000000,1408.000000,311.000000,793.000000,264.000000,2.544100,161200.000000\\n', '-122.040000,37.000000,52.000000,3365.000000,644.000000,796.000000,333.000000,2.971200,116600.000000\\n', '-115.570000,32.790000,50.000000,1291.000000,277.000000,864.000000,274.000000,1.666700,68100.000000\\n', '-117.560000,34.420000,6.000000,4264.000000,749.000000,2005.000000,666.000000,3.469500,138800.000000\\n', '-120.630000,38.680000,14.000000,1821.000000,316.000000,769.000000,266.000000,3.078900,131700.000000\\n', '-118.320000,34.090000,44.000000,2666.000000,830.000000,2297.000000,726.000000,1.676000,208800.000000\\n', '-118.350000,34.080000,52.000000,1710.000000,350.000000,727.000000,355.000000,4.583300,333900.000000\\n', '-122.270000,37.510000,36.000000,1406.000000,224.000000,598.000000,237.000000,5.896400,414800.000000\\n', '-119.060000,35.330000,14.000000,5264.000000,1064.000000,3278.000000,1049.000000,3.811700,82800.000000\\n', '-117.150000,32.900000,12.000000,1681.000000,381.000000,1050.000000,362.000000,4.200800,176100.000000\\n', '-122.470000,37.760000,39.000000,3200.000000,689.000000,1391.000000,618.000000,3.634600,338000.000000\\n', '-122.030000,37.310000,19.000000,2885.000000,859.000000,1520.000000,784.000000,3.375000,275700.000000\\n', '-119.310000,36.320000,23.000000,2945.000000,592.000000,1419.000000,532.000000,2.573300,88800.000000\\n', '-120.580000,38.770000,15.000000,2155.000000,394.000000,857.000000,356.000000,4.030000,141200.000000\\n', '-117.210000,34.490000,14.000000,2125.000000,348.000000,1067.000000,360.000000,3.633300,116200.000000\\n', '-122.080000,37.650000,35.000000,1813.000000,393.000000,1093.000000,374.000000,3.681800,165400.000000\\n', '-122.250000,40.150000,15.000000,1677.000000,346.000000,858.000000,327.000000,2.437500,59200.000000\\n', '-118.210000,34.140000,44.000000,1681.000000,407.000000,1105.000000,387.000000,3.222200,186500.000000\\n', '-122.140000,37.730000,51.000000,2619.000000,403.000000,922.000000,393.000000,4.604200,251900.000000\\n', '-121.590000,39.770000,24.000000,1535.000000,276.000000,664.000000,273.000000,2.306800,97300.000000\\n', '-122.190000,37.470000,44.000000,1371.000000,263.000000,589.000000,301.000000,4.806800,312300.000000\\n', '-120.440000,34.950000,38.000000,3004.000000,794.000000,2601.000000,747.000000,2.274300,106400.000000\\n', '-121.780000,37.310000,7.000000,1973.000000,328.000000,1047.000000,303.000000,6.234000,292200.000000\\n', '-118.240000,34.200000,41.000000,2067.000000,452.000000,1282.000000,455.000000,5.575600,309900.000000\\n', '-121.570000,39.160000,33.000000,2033.000000,375.000000,914.000000,330.000000,2.696400,68500.000000\\n', '-119.840000,36.830000,17.000000,2273.000000,298.000000,700.000000,263.000000,6.864500,195900.000000\\n', '-119.290000,34.440000,34.000000,4314.000000,878.000000,2361.000000,831.000000,3.227900,243100.000000\\n', '-118.140000,34.180000,52.000000,1700.000000,317.000000,996.000000,329.000000,3.968800,175000.000000\\n', '-119.570000,36.100000,37.000000,1676.000000,316.000000,707.000000,274.000000,2.059500,60700.000000\\n', '-121.800000,37.320000,23.000000,1829.000000,346.000000,1277.000000,324.000000,4.809200,217400.000000\\n', '-118.130000,34.160000,52.000000,1596.000000,314.000000,1024.000000,292.000000,3.671900,227900.000000\\n', '-121.900000,37.460000,29.000000,2385.000000,513.000000,1788.000000,510.000000,3.842100,220700.000000\\n', '-121.920000,37.330000,52.000000,2962.000000,557.000000,1215.000000,506.000000,4.776800,301100.000000\\n', '-123.100000,39.360000,19.000000,1056.000000,248.000000,611.000000,226.000000,1.746000,105000.000000\\n', '-122.860000,40.560000,12.000000,1350.000000,300.000000,423.000000,172.000000,1.739300,81300.000000\\n', '-122.440000,37.750000,52.000000,3114.000000,637.000000,1144.000000,591.000000,4.000000,375000.000000\\n', '-120.620000,35.120000,22.000000,1240.000000,294.000000,768.000000,288.000000,2.655000,160000.000000\\n', '-118.360000,33.880000,22.000000,1388.000000,336.000000,930.000000,287.000000,2.798100,275000.000000\\n', '-118.360000,33.820000,26.000000,5166.000000,1313.000000,2738.000000,1239.000000,3.356500,360800.000000\\n', '-118.270000,33.770000,39.000000,1731.000000,485.000000,2115.000000,478.000000,1.536900,141300.000000\\n', '-122.280000,37.900000,52.000000,2003.000000,250.000000,658.000000,244.000000,10.082500,397000.000000\\n', '-117.980000,33.660000,26.000000,3527.000000,547.000000,1615.000000,542.000000,6.162400,279400.000000\\n', '-118.210000,33.930000,39.000000,354.000000,73.000000,184.000000,58.000000,2.767900,108900.000000\\n', '-120.430000,37.350000,15.000000,1613.000000,203.000000,673.000000,213.000000,5.937800,212200.000000\\n', '-120.960000,37.480000,32.000000,1256.000000,212.000000,682.000000,236.000000,2.984400,135900.000000\\n', '-117.330000,34.120000,33.000000,933.000000,219.000000,838.000000,211.000000,1.341700,69000.000000\\n', '-119.810000,36.780000,36.000000,1650.000000,313.000000,660.000000,298.000000,3.000000,79700.000000\\n', '-118.380000,34.050000,35.000000,3517.000000,879.000000,1632.000000,784.000000,3.095600,500001.000000\\n', '-117.960000,33.800000,33.000000,1984.000000,420.000000,1119.000000,387.000000,3.482100,231300.000000\\n', '-118.430000,34.240000,37.000000,1279.000000,241.000000,987.000000,233.000000,4.005700,172700.000000\\n', '-117.870000,33.790000,25.000000,2546.000000,545.000000,1543.000000,521.000000,4.192000,219900.000000\\n', '-124.180000,40.790000,40.000000,1398.000000,311.000000,788.000000,279.000000,1.466800,64600.000000\\n', '-117.240000,32.830000,18.000000,3109.000000,501.000000,949.000000,368.000000,7.435100,445700.000000\\n', '-121.570000,37.000000,18.000000,7241.000000,1225.000000,4168.000000,1138.000000,4.571400,260300.000000\\n', '-117.370000,33.190000,38.000000,861.000000,213.000000,486.000000,204.000000,4.187500,185000.000000\\n', '-121.890000,37.460000,5.000000,1519.000000,186.000000,705.000000,186.000000,10.379800,500001.000000\\n', '-122.680000,38.010000,41.000000,1865.000000,392.000000,825.000000,369.000000,4.201100,255400.000000\\n', '-118.310000,34.020000,46.000000,2217.000000,489.000000,1227.000000,448.000000,1.685100,108800.000000\\n', '-118.290000,33.890000,33.000000,2138.000000,567.000000,1072.000000,528.000000,2.742800,208900.000000\\n', '-117.300000,34.120000,43.000000,1018.000000,261.000000,736.000000,215.000000,2.600000,66900.000000\\n', '-117.300000,33.850000,15.000000,3991.000000,751.000000,2317.000000,657.000000,2.954200,127900.000000\\n', '-117.350000,33.160000,22.000000,1331.000000,305.000000,580.000000,193.000000,3.975000,500001.000000\\n', '-122.430000,37.760000,52.000000,2242.000000,459.000000,751.000000,464.000000,4.750000,500001.000000\\n', '-119.010000,35.390000,29.000000,1820.000000,459.000000,1134.000000,419.000000,1.828900,59400.000000\\n', '-121.570000,37.010000,44.000000,1448.000000,393.000000,1066.000000,357.000000,2.062500,170300.000000\\n', '-122.420000,37.650000,39.000000,4402.000000,894.000000,2941.000000,887.000000,3.856500,239800.000000\\n', '-122.430000,37.780000,49.000000,2246.000000,587.000000,1277.000000,546.000000,2.979200,350000.000000\\n', '-118.130000,33.900000,36.000000,1477.000000,305.000000,788.000000,291.000000,3.625000,195800.000000\\n', '-118.060000,33.820000,25.000000,2637.000000,462.000000,965.000000,415.000000,4.583300,190900.000000\\n', '-119.220000,34.340000,29.000000,3128.000000,672.000000,1815.000000,648.000000,2.982100,175700.000000\\n', '-121.510000,38.550000,46.000000,1485.000000,278.000000,531.000000,291.000000,2.788500,137200.000000\\n', '-121.420000,38.500000,24.000000,7740.000000,1539.000000,4333.000000,1397.000000,3.025000,87900.000000\\n', '-122.260000,37.850000,52.000000,2202.000000,434.000000,910.000000,402.000000,3.203100,281500.000000\\n', '-118.400000,33.870000,26.000000,6712.000000,1441.000000,2803.000000,1394.000000,5.227600,434500.000000\\n', '-118.380000,33.890000,35.000000,1778.000000,330.000000,732.000000,312.000000,6.574500,379300.000000\\n', '-119.950000,36.960000,18.000000,1996.000000,379.000000,1327.000000,356.000000,2.608700,96000.000000\\n', '-118.120000,34.020000,32.000000,1789.000000,528.000000,1429.000000,517.000000,1.890600,224500.000000\\n', '-117.900000,36.950000,19.000000,99.000000,26.000000,51.000000,22.000000,1.729200,137500.000000\\n', '-116.280000,32.840000,18.000000,382.000000,128.000000,194.000000,69.000000,2.517900,58800.000000\\n', '-122.450000,37.770000,52.000000,1722.000000,465.000000,885.000000,437.000000,3.090600,500001.000000\\n', '-121.620000,39.760000,14.000000,2063.000000,559.000000,934.000000,529.000000,1.778800,85800.000000\\n', '-122.000000,38.350000,24.000000,745.000000,116.000000,300.000000,115.000000,3.617600,158500.000000\\n', '-121.710000,39.250000,37.000000,1871.000000,321.000000,806.000000,294.000000,4.000000,101400.000000\\n', '-119.190000,34.220000,26.000000,3175.000000,736.000000,2460.000000,775.000000,3.125000,219900.000000\\n', '-118.060000,33.910000,21.000000,2863.000000,701.000000,1489.000000,621.000000,3.203100,180700.000000\\n', '-118.000000,33.930000,35.000000,1288.000000,240.000000,758.000000,250.000000,4.920500,173900.000000\\n', '-118.260000,34.110000,47.000000,2183.000000,510.000000,1445.000000,503.000000,3.666700,210900.000000\\n', '-118.510000,34.260000,29.000000,2472.000000,354.000000,1109.000000,397.000000,5.543300,332500.000000\\n', '-117.960000,33.980000,25.000000,1259.000000,184.000000,599.000000,170.000000,5.740700,302200.000000\\n', '-123.390000,38.990000,28.000000,1416.000000,294.000000,812.000000,258.000000,3.406300,109400.000000\\n', '-121.690000,38.160000,33.000000,1808.000000,363.000000,824.000000,340.000000,3.293700,96400.000000\\n', '-121.930000,37.320000,51.000000,2711.000000,728.000000,1607.000000,724.000000,3.000000,184700.000000\\n', '-117.260000,33.260000,9.000000,4609.000000,798.000000,2582.000000,746.000000,4.342900,173900.000000\\n', '-121.410000,38.530000,37.000000,1058.000000,224.000000,588.000000,231.000000,2.973700,72100.000000\\n', '-117.900000,33.900000,18.000000,3821.000000,576.000000,1430.000000,568.000000,6.939900,349600.000000\\n', '-118.540000,36.120000,11.000000,4103.000000,882.000000,356.000000,171.000000,2.102900,99100.000000\\n', '-117.240000,32.820000,20.000000,2467.000000,332.000000,731.000000,335.000000,7.255900,392300.000000\\n', '-121.900000,37.240000,24.000000,7521.000000,1364.000000,3970.000000,1318.000000,4.400400,255800.000000\\n', '-118.170000,33.870000,49.000000,1937.000000,445.000000,1339.000000,440.000000,3.031900,162800.000000\\n', '-117.310000,33.160000,4.000000,5846.000000,894.000000,2282.000000,801.000000,5.595600,247800.000000\\n', '-118.410000,34.170000,35.000000,2027.000000,428.000000,879.000000,402.000000,4.692000,330900.000000\\n', '-118.380000,34.220000,32.000000,362.000000,100.000000,348.000000,102.000000,2.267900,150000.000000\\n', '-117.160000,33.730000,10.000000,2381.000000,454.000000,1323.000000,477.000000,2.632200,140700.000000\\n', '-119.710000,34.400000,27.000000,3782.000000,771.000000,1742.000000,751.000000,4.045100,395100.000000\\n', '-117.360000,33.200000,26.000000,2447.000000,482.000000,1405.000000,486.000000,3.291700,150800.000000\\n', '-118.210000,33.800000,41.000000,1251.000000,279.000000,1053.000000,278.000000,3.277800,150800.000000\\n', '-120.930000,39.900000,20.000000,1511.000000,328.000000,791.000000,320.000000,2.022100,70900.000000\\n', '-118.130000,33.840000,48.000000,1895.000000,294.000000,881.000000,293.000000,6.336400,307400.000000\\n', '-118.270000,33.930000,41.000000,570.000000,135.000000,466.000000,121.000000,2.645800,91300.000000\\n', '-118.050000,33.780000,25.000000,2356.000000,330.000000,937.000000,326.000000,6.626400,359100.000000\\n', '-118.430000,34.270000,36.000000,1002.000000,250.000000,1312.000000,249.000000,3.024000,148000.000000\\n', '-118.370000,33.910000,35.000000,1742.000000,283.000000,812.000000,282.000000,5.670400,303700.000000\\n', '-122.500000,37.750000,46.000000,2298.000000,457.000000,1429.000000,477.000000,4.021700,272400.000000\\n', '-118.300000,34.010000,52.000000,1908.000000,428.000000,1271.000000,394.000000,2.588500,136200.000000\\n', '-119.160000,34.150000,23.000000,3204.000000,644.000000,2295.000000,614.000000,3.948500,196600.000000\\n', '-117.040000,32.680000,14.000000,1320.000000,270.000000,943.000000,260.000000,5.094700,152700.000000\\n', '-121.400000,38.610000,37.000000,1994.000000,347.000000,782.000000,355.000000,4.148800,136400.000000\\n', '-118.030000,33.930000,35.000000,2470.000000,416.000000,1386.000000,411.000000,5.273600,179500.000000\\n', '-119.890000,34.440000,25.000000,2786.000000,470.000000,1669.000000,462.000000,5.518400,268300.000000\\n', '-120.880000,38.580000,8.000000,3417.000000,604.000000,1703.000000,623.000000,4.082700,170700.000000\\n', '-118.210000,33.790000,32.000000,2020.000000,613.000000,2557.000000,562.000000,2.139700,145300.000000\\n', '-121.460000,38.570000,52.000000,1625.000000,419.000000,614.000000,383.000000,2.054900,156700.000000\\n', '-122.020000,37.310000,34.000000,2629.000000,433.000000,1301.000000,431.000000,6.083000,341400.000000\\n', '-118.500000,34.160000,34.000000,3547.000000,523.000000,1187.000000,500.000000,7.139000,424000.000000\\n', '-121.320000,38.660000,26.000000,1149.000000,193.000000,500.000000,194.000000,5.078000,163400.000000\\n', '-118.090000,33.890000,42.000000,991.000000,215.000000,717.000000,219.000000,4.092600,164400.000000\\n', '-118.390000,33.820000,30.000000,3433.000000,918.000000,1526.000000,828.000000,4.581700,500001.000000\\n', '-118.000000,33.960000,37.000000,2414.000000,323.000000,878.000000,305.000000,9.154100,453800.000000\\n', '-117.260000,33.190000,4.000000,2342.000000,595.000000,1518.000000,545.000000,2.946900,216100.000000\\n', '-122.470000,37.870000,36.000000,4471.000000,618.000000,1315.000000,582.000000,11.570600,500001.000000\\n', '-117.060000,32.710000,25.000000,2681.000000,596.000000,1947.000000,553.000000,2.896400,104300.000000\\n', '-117.440000,33.930000,33.000000,1371.000000,236.000000,715.000000,227.000000,4.375000,129900.000000\\n', '-118.120000,33.990000,26.000000,2296.000000,534.000000,1777.000000,507.000000,2.539500,191000.000000\\n', '-118.150000,34.180000,46.000000,2230.000000,488.000000,1985.000000,456.000000,2.232800,142100.000000\\n', '-120.430000,34.690000,33.000000,2054.000000,373.000000,1067.000000,358.000000,3.602300,128300.000000\\n', '-120.840000,37.530000,14.000000,3643.000000,706.000000,2070.000000,697.000000,3.152300,141800.000000\\n', '-122.070000,37.130000,26.000000,1127.000000,199.000000,543.000000,199.000000,4.979200,240000.000000\\n', '-118.410000,33.960000,32.000000,1044.000000,219.000000,567.000000,222.000000,4.147100,284400.000000\\n', '-121.510000,38.790000,29.000000,1716.000000,323.000000,850.000000,282.000000,2.932400,137500.000000\\n', '-117.330000,33.190000,15.000000,3672.000000,845.000000,1827.000000,796.000000,2.971600,173600.000000\\n', '-116.540000,33.870000,16.000000,3648.000000,1035.000000,1687.000000,581.000000,1.916700,70400.000000\\n', '-118.500000,34.200000,18.000000,4249.000000,933.000000,2047.000000,909.000000,4.130400,229100.000000\\n', '-118.300000,33.750000,23.000000,1957.000000,517.000000,1454.000000,526.000000,3.505600,203100.000000\\n', '-117.990000,33.730000,24.000000,2104.000000,421.000000,1181.000000,414.000000,3.836500,250900.000000\\n', '-118.110000,33.890000,34.000000,2508.000000,594.000000,1549.000000,545.000000,3.206900,236500.000000\\n', '-122.730000,38.430000,29.000000,2677.000000,691.000000,1880.000000,664.000000,2.186400,143200.000000\\n', '-119.640000,36.340000,32.000000,2958.000000,670.000000,1504.000000,627.000000,1.860600,56700.000000\\n', '-116.870000,34.240000,15.000000,4419.000000,822.000000,622.000000,267.000000,3.968800,182800.000000\\n', '-118.220000,33.980000,34.000000,2283.000000,809.000000,3032.000000,832.000000,2.438700,175000.000000\\n', '-122.340000,37.970000,19.000000,392.000000,109.000000,287.000000,81.000000,6.042600,110000.000000\\n', '-118.080000,33.820000,26.000000,4259.000000,588.000000,1644.000000,581.000000,6.251900,345700.000000\\n', '-117.700000,33.480000,6.000000,16590.000000,2696.000000,6223.000000,2357.000000,6.308800,340300.000000\\n', '-118.220000,33.880000,37.000000,1149.000000,280.000000,1016.000000,250.000000,2.125000,101900.000000\\n', '-120.970000,38.910000,7.000000,4341.000000,716.000000,1978.000000,682.000000,4.831100,172200.000000\\n', '-122.250000,37.800000,29.000000,2468.000000,864.000000,1335.000000,773.000000,1.392900,193800.000000\\n', '-118.410000,33.880000,40.000000,925.000000,254.000000,371.000000,227.000000,5.253300,500001.000000\\n', '-117.040000,32.690000,27.000000,1790.000000,356.000000,1286.000000,347.000000,3.543700,115800.000000\\n', '-122.410000,38.160000,37.000000,1549.000000,301.000000,863.000000,275.000000,2.745700,254700.000000\\n', '-120.250000,37.930000,13.000000,493.000000,76.000000,196.000000,68.000000,3.375000,134100.000000\\n', '-121.980000,38.390000,3.000000,9488.000000,1417.000000,4095.000000,1335.000000,5.178100,191900.000000\\n', '-122.470000,37.720000,47.000000,1176.000000,286.000000,564.000000,258.000000,3.205900,350000.000000\\n', '-118.180000,34.130000,39.000000,2902.000000,460.000000,1007.000000,420.000000,6.195300,363000.000000\\n', '-118.090000,33.990000,35.000000,2787.000000,639.000000,1923.000000,614.000000,3.575700,177900.000000\\n', '-121.940000,37.750000,16.000000,5121.000000,735.000000,2464.000000,761.000000,6.620400,296100.000000\\n', '-117.070000,32.740000,38.000000,1901.000000,392.000000,1099.000000,406.000000,2.766100,113900.000000\\n', '-118.140000,34.040000,40.000000,1966.000000,391.000000,1120.000000,362.000000,3.710900,198800.000000\\n', '-122.410000,37.810000,25.000000,1178.000000,545.000000,592.000000,441.000000,3.672800,500001.000000\\n', '-117.710000,33.630000,16.000000,1641.000000,354.000000,945.000000,318.000000,3.426100,219700.000000\\n', '-119.640000,34.430000,34.000000,3045.000000,570.000000,1002.000000,488.000000,5.623000,500001.000000\\n', '-118.100000,33.980000,33.000000,1927.000000,482.000000,1623.000000,479.000000,3.526800,152000.000000\\n', '-122.040000,37.390000,5.000000,8745.000000,2211.000000,3959.000000,2019.000000,4.768500,280100.000000\\n', '-122.030000,37.180000,10.000000,212.000000,38.000000,78.000000,21.000000,6.062200,390000.000000\\n', '-122.300000,37.560000,36.000000,1379.000000,228.000000,750.000000,227.000000,5.538100,282000.000000\\n', '-117.360000,33.920000,7.000000,9376.000000,1181.000000,3570.000000,1107.000000,8.532600,315200.000000\\n', '-121.380000,37.880000,44.000000,1158.000000,226.000000,1094.000000,224.000000,2.684200,156300.000000\\n', '-119.980000,38.930000,28.000000,1194.000000,272.000000,494.000000,203.000000,2.328100,85800.000000\\n', '-117.160000,32.710000,52.000000,845.000000,451.000000,1230.000000,375.000000,1.091800,22500.000000\\n', '-122.360000,37.930000,17.000000,1258.000000,254.000000,885.000000,229.000000,3.050000,121600.000000\\n', '-118.230000,34.170000,37.000000,4524.000000,1005.000000,2099.000000,937.000000,3.578100,366700.000000\\n', '-118.470000,34.100000,32.000000,8041.000000,1141.000000,2768.000000,1106.000000,11.197800,500001.000000\\n', '-124.140000,40.800000,32.000000,1373.000000,312.000000,872.000000,306.000000,2.500000,72600.000000\\n', '-117.800000,33.550000,35.000000,2067.000000,428.000000,724.000000,377.000000,5.837100,500001.000000\\n', '-118.020000,34.120000,38.000000,1778.000000,288.000000,870.000000,281.000000,6.578400,408500.000000\\n', '-122.740000,38.480000,12.000000,4174.000000,670.000000,1882.000000,647.000000,4.551000,178300.000000\\n', '-118.340000,33.830000,34.000000,1761.000000,329.000000,965.000000,329.000000,5.399000,358500.000000\\n', '-120.680000,35.290000,37.000000,1354.000000,293.000000,753.000000,290.000000,3.250000,225000.000000\\n', '-122.450000,37.640000,19.000000,6326.000000,1025.000000,3444.000000,984.000000,6.249800,353300.000000\\n', '-122.040000,37.620000,35.000000,1032.000000,173.000000,453.000000,176.000000,6.396000,208500.000000\\n', '-122.790000,38.540000,5.000000,3986.000000,737.000000,1887.000000,687.000000,3.776800,213800.000000\\n', '-117.220000,32.860000,4.000000,16289.000000,4585.000000,7604.000000,4176.000000,3.628700,280800.000000\\n', '-120.080000,39.610000,32.000000,1404.000000,247.000000,544.000000,201.000000,2.777800,72900.000000\\n', '-118.360000,34.150000,41.000000,3545.000000,698.000000,1221.000000,651.000000,4.300000,500001.000000\\n', '-121.360000,38.560000,17.000000,6225.000000,938.000000,3064.000000,947.000000,5.288100,138000.000000\\n', '-122.320000,41.310000,45.000000,1393.000000,294.000000,521.000000,249.000000,1.191500,71900.000000\\n', '-121.590000,39.750000,20.000000,908.000000,206.000000,481.000000,211.000000,2.200000,80800.000000\\n', '-117.300000,34.150000,45.000000,942.000000,166.000000,401.000000,174.000000,3.859400,90800.000000\\n', '-117.710000,33.650000,16.000000,3774.000000,456.000000,1587.000000,430.000000,8.608800,307400.000000\\n', '-118.310000,34.260000,37.000000,1444.000000,246.000000,624.000000,239.000000,5.760000,239400.000000\\n', '-122.040000,36.980000,51.000000,1076.000000,206.000000,495.000000,201.000000,2.928600,258300.000000\\n', '-118.260000,34.240000,35.000000,1535.000000,283.000000,816.000000,287.000000,6.187300,312100.000000\\n', '-118.280000,33.960000,39.000000,882.000000,221.000000,697.000000,189.000000,1.847200,99100.000000\\n', '-123.500000,39.670000,22.000000,2124.000000,450.000000,1122.000000,446.000000,2.179300,71500.000000\\n', '-117.190000,33.140000,12.000000,3652.000000,923.000000,1677.000000,728.000000,2.326700,92000.000000\\n', '-121.120000,38.860000,17.000000,3949.000000,717.000000,1683.000000,686.000000,3.380200,216500.000000\\n', '-118.410000,34.210000,35.000000,2215.000000,459.000000,1594.000000,446.000000,4.016700,193200.000000\\n', '-116.540000,33.820000,12.000000,9482.000000,2501.000000,2725.000000,1300.000000,1.559500,115600.000000\\n', '-121.610000,39.760000,31.000000,2431.000000,512.000000,1026.000000,427.000000,2.542800,85000.000000\\n', '-121.990000,37.920000,14.000000,1780.000000,224.000000,764.000000,226.000000,9.024300,427700.000000\\n', '-122.060000,37.540000,20.000000,6483.000000,1068.000000,3526.000000,1060.000000,5.083800,248200.000000\\n', '-122.080000,37.720000,32.000000,2476.000000,368.000000,1048.000000,367.000000,5.619400,274700.000000\\n', '-118.930000,36.100000,19.000000,2988.000000,681.000000,1654.000000,576.000000,2.379200,90000.000000\\n', '-122.780000,38.970000,11.000000,5175.000000,971.000000,2144.000000,792.000000,3.046600,97300.000000\\n', '-121.220000,37.970000,37.000000,1514.000000,337.000000,1121.000000,337.000000,2.401000,58400.000000\\n', '-121.470000,38.610000,35.000000,1372.000000,360.000000,850.000000,328.000000,1.633100,67500.000000\\n', '-122.310000,37.540000,49.000000,1340.000000,281.000000,660.000000,284.000000,4.163000,393800.000000\\n', '-122.000000,37.300000,29.000000,3429.000000,524.000000,1518.000000,520.000000,7.218000,400700.000000\\n', '-122.410000,37.800000,52.000000,812.000000,252.000000,629.000000,247.000000,2.587500,500001.000000\\n', '-118.290000,34.050000,34.000000,1102.000000,448.000000,1325.000000,439.000000,1.597200,168800.000000\\n', '-118.610000,34.150000,32.000000,4491.000000,815.000000,1696.000000,749.000000,4.910200,319100.000000\\n', '-116.480000,33.840000,5.000000,5480.000000,1371.000000,1050.000000,485.000000,1.720400,137500.000000\\n', '-118.260000,33.780000,27.000000,1672.000000,491.000000,1723.000000,462.000000,2.045800,174500.000000\\n', '-117.340000,34.510000,6.000000,5667.000000,1385.000000,2447.000000,1199.000000,2.361700,103100.000000\\n', '-122.460000,37.670000,16.000000,3372.000000,1101.000000,2049.000000,1021.000000,4.130300,146500.000000\\n', '-118.350000,34.110000,33.000000,7478.000000,1678.000000,2701.000000,1500.000000,4.171700,500001.000000\\n', '-117.300000,34.100000,44.000000,589.000000,130.000000,504.000000,137.000000,1.775000,63400.000000\\n', '-118.440000,34.150000,44.000000,1778.000000,251.000000,641.000000,251.000000,10.054900,500001.000000\\n', '-118.630000,34.180000,32.000000,1646.000000,242.000000,697.000000,233.000000,6.668900,433000.000000\\n', '-117.950000,33.760000,24.000000,3956.000000,812.000000,3196.000000,795.000000,4.351200,191400.000000\\n', '-122.250000,37.450000,34.000000,2999.000000,365.000000,927.000000,369.000000,10.281100,500001.000000\\n', '-117.590000,33.650000,4.000000,1793.000000,390.000000,897.000000,386.000000,4.246300,182800.000000\\n', '-114.490000,33.970000,17.000000,2809.000000,635.000000,83.000000,45.000000,1.615400,87500.000000\\n', '-118.510000,34.200000,34.000000,2871.000000,581.000000,1350.000000,535.000000,3.704900,227500.000000\\n', '-122.030000,38.010000,27.000000,3228.000000,562.000000,1666.000000,588.000000,4.570700,175900.000000\\n', '-118.430000,33.990000,45.000000,2092.000000,451.000000,1190.000000,429.000000,3.802100,323000.000000\\n', '-122.510000,37.760000,43.000000,2345.000000,624.000000,1439.000000,614.000000,2.844800,268900.000000\\n', '-119.550000,36.690000,21.000000,1551.000000,423.000000,1519.000000,406.000000,1.713200,55900.000000\\n', '-122.240000,38.150000,10.000000,6817.000000,1188.000000,4163.000000,1135.000000,4.452900,144100.000000\\n', '-117.870000,34.020000,16.000000,3552.000000,575.000000,2120.000000,573.000000,6.433300,271500.000000\\n', '-122.130000,37.700000,21.000000,4124.000000,1054.000000,2162.000000,998.000000,2.632100,223100.000000\\n', '-121.330000,38.600000,25.000000,4260.000000,607.000000,1635.000000,640.000000,6.281700,288200.000000\\n', '-121.910000,37.470000,13.000000,5377.000000,744.000000,2759.000000,760.000000,6.868000,337300.000000\\n', '-118.530000,34.040000,45.000000,1711.000000,264.000000,735.000000,261.000000,9.107800,500001.000000\\n', '-121.330000,38.000000,32.000000,4474.000000,929.000000,2177.000000,884.000000,3.288900,98900.000000\\n', '-117.850000,34.060000,24.000000,3128.000000,497.000000,1406.000000,472.000000,7.528600,462700.000000\\n', '-118.430000,35.120000,8.000000,1968.000000,376.000000,930.000000,360.000000,3.263200,99800.000000\\n', '-118.070000,33.970000,36.000000,1265.000000,273.000000,1052.000000,253.000000,4.892900,156200.000000\\n', '-117.160000,32.780000,34.000000,2515.000000,488.000000,1594.000000,515.000000,3.738100,165000.000000\\n', '-116.290000,34.180000,15.000000,4203.000000,966.000000,1756.000000,695.000000,2.182000,60800.000000\\n', '-120.660000,35.290000,16.000000,2272.000000,629.000000,1689.000000,649.000000,1.703100,195000.000000\\n', '-119.790000,36.770000,30.000000,1610.000000,410.000000,1000.000000,397.000000,2.035700,60200.000000\\n', '-122.140000,37.750000,33.000000,1334.000000,200.000000,579.000000,202.000000,6.832300,255900.000000\\n', '-122.320000,37.970000,33.000000,1595.000000,292.000000,991.000000,300.000000,4.693700,134100.000000\\n', '-119.800000,36.830000,17.000000,1560.000000,261.000000,709.000000,258.000000,4.331500,95800.000000\\n', '-117.330000,33.160000,29.000000,3559.000000,552.000000,1533.000000,545.000000,4.058500,245500.000000\\n', '-121.860000,37.230000,24.000000,4337.000000,670.000000,1936.000000,652.000000,5.890400,271400.000000\\n', '-122.240000,37.810000,52.000000,2093.000000,550.000000,918.000000,483.000000,2.747700,243800.000000\\n', '-120.850000,37.770000,10.000000,423.000000,110.000000,295.000000,94.000000,1.358300,85200.000000\\n', '-116.950000,33.790000,20.000000,2399.000000,546.000000,1726.000000,542.000000,1.884500,77700.000000\\n', '-117.220000,33.220000,16.000000,2134.000000,643.000000,1555.000000,560.000000,1.721700,175000.000000\\n', '-122.230000,40.170000,21.000000,1401.000000,331.000000,651.000000,299.000000,2.225000,64700.000000\\n', '-118.450000,34.030000,41.000000,2083.000000,528.000000,993.000000,481.000000,4.023100,353900.000000\\n', '-118.990000,35.270000,32.000000,444.000000,102.000000,242.000000,87.000000,1.152800,150000.000000\\n', '-117.580000,33.870000,34.000000,1511.000000,272.000000,773.000000,265.000000,3.531300,142100.000000\\n', '-118.650000,36.570000,20.000000,1431.000000,416.000000,570.000000,225.000000,1.482100,143300.000000\\n', '-121.400000,38.660000,50.000000,880.000000,150.000000,1148.000000,148.000000,2.506200,112500.000000\\n', '-119.460000,35.860000,22.000000,1750.000000,374.000000,1113.000000,338.000000,1.505000,42700.000000\\n', '-118.220000,33.980000,32.000000,2643.000000,737.000000,2784.000000,711.000000,2.535200,184400.000000\\n', '-118.380000,33.820000,35.000000,3053.000000,623.000000,1311.000000,589.000000,5.158900,439200.000000\\n', '-117.770000,33.690000,16.000000,1666.000000,341.000000,479.000000,336.000000,2.140600,55000.000000\\n', '-118.460000,34.180000,35.000000,1819.000000,465.000000,1336.000000,419.000000,3.458300,253200.000000\\n', '-122.420000,37.790000,6.000000,670.000000,301.000000,655.000000,284.000000,3.442300,117500.000000\\n', '-118.310000,33.770000,20.000000,5776.000000,956.000000,2757.000000,936.000000,6.644700,416800.000000\\n', '-121.670000,37.130000,19.000000,3269.000000,483.000000,1383.000000,452.000000,5.620500,300800.000000\\n', '-121.330000,38.570000,17.000000,1621.000000,350.000000,706.000000,338.000000,2.368400,150000.000000\\n', '-120.830000,37.520000,6.000000,1488.000000,252.000000,773.000000,259.000000,4.185900,150000.000000\\n', '-118.120000,33.990000,27.000000,2316.000000,559.000000,2012.000000,544.000000,2.815500,176800.000000\\n', '-118.110000,34.070000,39.000000,1270.000000,299.000000,1073.000000,278.000000,3.308800,186600.000000\\n', '-122.670000,38.240000,29.000000,2644.000000,464.000000,1372.000000,450.000000,5.054400,261800.000000\\n', '-117.290000,34.090000,24.000000,1451.000000,387.000000,1178.000000,330.000000,1.180600,68300.000000\\n', '-121.800000,37.190000,45.000000,1797.000000,303.000000,870.000000,281.000000,4.541700,434500.000000\\n', '-120.300000,37.970000,17.000000,3243.000000,619.000000,1408.000000,566.000000,2.474000,120100.000000\\n', '-120.450000,34.650000,21.000000,1182.000000,243.000000,733.000000,251.000000,3.144200,131600.000000\\n', '-119.290000,34.230000,22.000000,2486.000000,608.000000,709.000000,523.000000,2.901800,275000.000000\\n', '-118.340000,34.020000,49.000000,1609.000000,371.000000,896.000000,389.000000,2.515600,136600.000000\\n', '-117.940000,33.800000,23.000000,2757.000000,734.000000,1811.000000,707.000000,2.800000,214300.000000\\n', '-116.850000,34.260000,19.000000,5395.000000,1220.000000,981.000000,366.000000,2.609400,92400.000000\\n', '-117.890000,33.760000,34.000000,1050.000000,210.000000,723.000000,201.000000,4.800000,192700.000000\\n', '-118.290000,34.030000,27.000000,1084.000000,287.000000,1085.000000,279.000000,2.135000,119600.000000\\n', '-118.120000,34.060000,35.000000,1729.000000,438.000000,1308.000000,412.000000,2.532100,197200.000000\\n', '-121.410000,38.600000,16.000000,5407.000000,1467.000000,2523.000000,1265.000000,2.047100,104200.000000\\n', '-120.620000,35.130000,26.000000,3971.000000,803.000000,1792.000000,723.000000,2.712800,209900.000000\\n', '-118.180000,33.800000,42.000000,2301.000000,621.000000,2114.000000,561.000000,2.057900,132700.000000\\n', '-117.510000,34.160000,2.000000,718.000000,98.000000,119.000000,50.000000,4.100000,315000.000000\\n', '-118.160000,34.030000,40.000000,2201.000000,636.000000,2682.000000,595.000000,2.359000,143400.000000\\n', '-118.170000,34.110000,39.000000,1758.000000,436.000000,892.000000,447.000000,3.640600,278900.000000\\n', '-117.690000,33.650000,15.000000,5394.000000,748.000000,2383.000000,706.000000,7.561900,302000.000000\\n', '-122.200000,37.770000,41.000000,1547.000000,415.000000,1024.000000,341.000000,2.056200,102000.000000\\n', '-121.330000,37.960000,42.000000,1619.000000,340.000000,906.000000,339.000000,2.548800,80300.000000\\n', '-121.840000,38.130000,33.000000,596.000000,105.000000,212.000000,94.000000,4.281300,81300.000000\\n', '-117.760000,34.050000,36.000000,2910.000000,819.000000,3055.000000,782.000000,1.902900,98000.000000\\n', '-122.430000,37.790000,52.000000,3219.000000,969.000000,1152.000000,830.000000,4.204200,500001.000000\\n', '-122.320000,37.570000,33.000000,3384.000000,819.000000,2626.000000,793.000000,3.228500,234800.000000\\n', '-118.160000,34.070000,42.000000,3836.000000,777.000000,2118.000000,754.000000,3.636400,254600.000000\\n', '-124.090000,40.950000,18.000000,2250.000000,484.000000,1248.000000,472.000000,2.589300,99600.000000\\n', '-121.990000,38.350000,45.000000,1778.000000,339.000000,839.000000,319.000000,2.465900,102900.000000\\n', '-122.720000,38.420000,26.000000,3604.000000,734.000000,2605.000000,704.000000,3.096900,143800.000000\\n', '-122.110000,37.660000,29.000000,2544.000000,643.000000,2332.000000,603.000000,3.209100,150000.000000\\n', '-121.840000,36.620000,26.000000,32.000000,8.000000,27.000000,10.000000,2.225000,150000.000000\\n', '-118.180000,34.120000,29.000000,2640.000000,737.000000,1795.000000,655.000000,2.369000,173400.000000\\n', '-122.450000,38.270000,25.000000,5024.000000,881.000000,1994.000000,838.000000,4.223700,262300.000000\\n', '-117.910000,33.650000,17.000000,1328.000000,377.000000,762.000000,344.000000,2.222200,276800.000000\\n', '-116.470000,33.770000,26.000000,4300.000000,767.000000,1557.000000,669.000000,4.410700,122500.000000\\n', '-122.410000,37.730000,42.000000,2604.000000,573.000000,1703.000000,507.000000,3.423100,230200.000000\\n', '-119.780000,36.800000,34.000000,2200.000000,493.000000,1243.000000,431.000000,1.851400,66500.000000\\n', '-119.710000,34.360000,34.000000,1706.000000,276.000000,628.000000,243.000000,4.184200,364000.000000\\n', '-118.360000,34.030000,40.000000,2323.000000,661.000000,1847.000000,614.000000,1.831600,113500.000000\\n', '-121.890000,37.990000,4.000000,2171.000000,597.000000,928.000000,461.000000,4.101600,170500.000000\\n', '-121.980000,37.330000,25.000000,3223.000000,612.000000,1529.000000,602.000000,5.121000,287600.000000\\n', '-118.470000,34.250000,34.000000,1732.000000,399.000000,1120.000000,401.000000,4.149200,195700.000000\\n', '-117.260000,32.990000,16.000000,2127.000000,512.000000,1532.000000,499.000000,2.734800,231300.000000\\n', '-118.090000,34.070000,45.000000,726.000000,146.000000,568.000000,160.000000,3.034700,183200.000000\\n', '-118.450000,37.250000,20.000000,1468.000000,283.000000,721.000000,270.000000,3.081700,118800.000000\\n', '-117.780000,33.540000,29.000000,1421.000000,462.000000,520.000000,339.000000,2.296900,450000.000000\\n', '-117.460000,33.900000,10.000000,9738.000000,2130.000000,4936.000000,1840.000000,3.318700,144800.000000\\n', '-121.850000,39.740000,39.000000,1139.000000,265.000000,623.000000,264.000000,2.283300,85800.000000\\n', '-117.290000,34.110000,48.000000,1498.000000,448.000000,1586.000000,455.000000,1.168700,70800.000000\\n', '-121.200000,37.790000,36.000000,866.000000,160.000000,502.000000,149.000000,2.479800,101500.000000\\n', '-118.430000,33.960000,20.000000,1901.000000,270.000000,704.000000,254.000000,8.781900,500001.000000\\n', '-122.110000,37.400000,15.000000,255.000000,63.000000,138.000000,74.000000,4.659100,175000.000000\\n', '-119.060000,36.080000,19.000000,2554.000000,443.000000,1301.000000,419.000000,4.185600,72100.000000\\n', '-118.370000,33.880000,20.000000,2439.000000,474.000000,1219.000000,497.000000,5.961900,335900.000000\\n', '-120.790000,38.430000,40.000000,1391.000000,246.000000,546.000000,214.000000,3.910700,129800.000000\\n', '-122.200000,39.930000,9.000000,1296.000000,287.000000,768.000000,260.000000,1.919100,54400.000000\\n', '-122.230000,37.760000,52.000000,1049.000000,185.000000,374.000000,176.000000,4.145800,248500.000000\\n', '-121.990000,38.530000,6.000000,4598.000000,834.000000,2561.000000,812.000000,3.418600,127300.000000\\n', '-118.460000,34.020000,39.000000,3599.000000,776.000000,1569.000000,763.000000,5.257100,405400.000000\\n', '-115.600000,33.040000,31.000000,314.000000,61.000000,152.000000,56.000000,3.347200,91700.000000\\n', '-117.220000,32.780000,22.000000,2020.000000,466.000000,1010.000000,429.000000,3.452700,175000.000000\\n', '-118.630000,34.220000,18.000000,1376.000000,225.000000,670.000000,205.000000,6.514600,277600.000000\\n', '-124.140000,40.720000,18.000000,2581.000000,499.000000,1375.000000,503.000000,2.844600,100500.000000\\n', '-116.430000,33.780000,17.000000,4293.000000,712.000000,1091.000000,464.000000,6.143700,232100.000000\\n', '-117.890000,33.730000,32.000000,728.000000,134.000000,837.000000,135.000000,4.076900,163900.000000\\n', '-117.700000,33.530000,5.000000,6698.000000,1254.000000,2834.000000,1139.000000,5.908800,288500.000000\\n', '-122.470000,37.850000,19.000000,1926.000000,593.000000,881.000000,546.000000,2.914500,140400.000000\\n', '-120.630000,38.730000,11.000000,4577.000000,836.000000,1944.000000,700.000000,4.067500,140200.000000\\n', '-118.590000,34.200000,18.000000,847.000000,185.000000,733.000000,178.000000,5.214900,201900.000000\\n', '-118.360000,33.930000,40.000000,1625.000000,500.000000,2036.000000,476.000000,2.629800,156500.000000\\n', '-118.410000,33.850000,16.000000,6123.000000,1989.000000,2853.000000,1789.000000,4.425000,336400.000000\\n', '-117.190000,32.770000,16.000000,3273.000000,670.000000,1305.000000,671.000000,4.136800,151000.000000\\n', '-117.780000,33.860000,16.000000,3471.000000,708.000000,1769.000000,691.000000,4.106400,246100.000000\\n', '-121.860000,39.740000,13.000000,3494.000000,843.000000,1571.000000,784.000000,1.101900,120200.000000\\n', '-119.040000,35.310000,11.000000,2161.000000,371.000000,1267.000000,388.000000,4.195700,92700.000000\\n', '-118.260000,34.020000,40.000000,1259.000000,362.000000,1499.000000,327.000000,1.838200,126400.000000\\n', '-117.250000,34.490000,4.000000,2372.000000,361.000000,1017.000000,322.000000,5.111200,170900.000000\\n', '-120.040000,39.270000,24.000000,2237.000000,491.000000,264.000000,95.000000,4.136400,154500.000000\\n', '-121.420000,38.540000,29.000000,2358.000000,493.000000,1071.000000,470.000000,2.925000,94300.000000\\n', '-118.150000,34.200000,46.000000,1505.000000,261.000000,857.000000,269.000000,4.500000,184200.000000\\n', '-118.080000,33.880000,26.000000,1507.000000,270.000000,931.000000,275.000000,5.164500,244900.000000\\n', '-122.430000,37.800000,52.000000,2696.000000,572.000000,925.000000,552.000000,5.036500,500000.000000\\n', '-115.490000,32.670000,24.000000,1266.000000,275.000000,1083.000000,298.000000,1.482800,73100.000000\\n', '-120.980000,38.340000,27.000000,3471.000000,653.000000,1793.000000,600.000000,3.550800,99100.000000\\n', '-116.140000,34.450000,12.000000,8796.000000,1721.000000,11139.000000,1680.000000,2.261200,137500.000000\\n', '-117.110000,32.730000,27.000000,3160.000000,627.000000,1628.000000,612.000000,3.886400,132600.000000\\n', '-118.470000,34.000000,38.000000,1235.000000,390.000000,891.000000,376.000000,2.714300,287500.000000\\n', '-121.420000,37.740000,19.000000,1393.000000,367.000000,915.000000,355.000000,1.195700,103100.000000\\n', '-122.250000,37.820000,52.000000,2474.000000,403.000000,1104.000000,398.000000,5.883000,340700.000000\\n', '-118.050000,33.720000,22.000000,5416.000000,1271.000000,2260.000000,1184.000000,3.803800,174500.000000\\n', '-122.020000,36.970000,44.000000,594.000000,169.000000,325.000000,139.000000,1.155200,250000.000000\\n', '-115.570000,32.800000,33.000000,1192.000000,213.000000,1066.000000,211.000000,4.571400,68600.000000\\n', '-121.290000,37.800000,6.000000,110.000000,26.000000,69.000000,24.000000,3.729200,475000.000000\\n', '-122.080000,37.880000,26.000000,2947.000000,647.000000,825.000000,626.000000,2.933000,85000.000000\\n', '-121.770000,37.650000,16.000000,4290.000000,554.000000,1952.000000,576.000000,7.358800,327500.000000\\n', '-119.810000,36.720000,46.000000,1414.000000,268.000000,902.000000,243.000000,1.583300,56700.000000\\n', '-118.350000,33.970000,26.000000,1725.000000,431.000000,1130.000000,404.000000,3.270800,128100.000000\\n', '-118.200000,34.190000,38.000000,2176.000000,266.000000,798.000000,243.000000,15.000100,500001.000000\\n', '-118.790000,34.140000,7.000000,3003.000000,504.000000,1143.000000,466.000000,5.854800,500001.000000\\n', '-118.120000,34.160000,30.000000,1762.000000,416.000000,940.000000,398.000000,2.863100,188600.000000\\n', '-118.220000,33.960000,36.000000,1542.000000,458.000000,1711.000000,468.000000,1.902800,164200.000000\\n', '-121.300000,37.990000,38.000000,2375.000000,494.000000,1167.000000,471.000000,2.667300,87500.000000\\n', '-121.840000,36.610000,21.000000,2876.000000,802.000000,2487.000000,795.000000,2.200700,112800.000000\\n', '-117.900000,34.070000,36.000000,1009.000000,164.000000,466.000000,149.000000,5.851900,249400.000000\\n', '-120.400000,34.860000,11.000000,1633.000000,348.000000,504.000000,327.000000,2.050800,275000.000000\\n', '-117.950000,33.800000,32.000000,1219.000000,192.000000,634.000000,197.000000,5.237000,215700.000000\\n', '-118.300000,33.940000,36.000000,2041.000000,531.000000,1390.000000,464.000000,2.011400,99300.000000\\n', '-121.600000,37.900000,5.000000,14684.000000,2252.000000,4276.000000,1722.000000,6.905100,340900.000000\\n', '-122.410000,37.590000,34.000000,3931.000000,622.000000,1717.000000,621.000000,6.294600,450000.000000\\n', '-118.450000,34.050000,28.000000,801.000000,399.000000,936.000000,406.000000,2.187500,181300.000000\\n', '-118.180000,33.860000,43.000000,2752.000000,645.000000,1674.000000,614.000000,3.671900,161300.000000\\n', '-121.780000,40.120000,14.000000,388.000000,108.000000,35.000000,17.000000,6.135900,106300.000000\\n', '-118.210000,34.040000,47.000000,1325.000000,393.000000,1557.000000,352.000000,2.800000,148400.000000\\n', '-118.380000,34.090000,28.000000,4001.000000,1352.000000,1799.000000,1220.000000,2.578400,272900.000000\\n', '-117.180000,32.840000,32.000000,1351.000000,237.000000,823.000000,269.000000,4.276800,167800.000000\\n', '-117.300000,32.850000,28.000000,2334.000000,694.000000,770.000000,552.000000,3.132400,500001.000000\\n', '-119.020000,35.420000,42.000000,2271.000000,458.000000,1124.000000,447.000000,2.758300,64900.000000\\n', '-124.010000,40.970000,21.000000,1513.000000,319.000000,943.000000,301.000000,3.538000,102700.000000\\n', '-118.100000,34.130000,44.000000,1745.000000,237.000000,693.000000,248.000000,9.791200,500001.000000\\n', '-119.810000,36.770000,49.000000,1749.000000,314.000000,705.000000,300.000000,3.150000,72200.000000\\n', '-122.550000,38.000000,18.000000,3119.000000,803.000000,1395.000000,722.000000,3.926500,301100.000000\\n', '-117.620000,34.080000,30.000000,1372.000000,235.000000,1047.000000,225.000000,3.159700,116300.000000\\n', '-121.290000,37.960000,52.000000,888.000000,324.000000,630.000000,258.000000,1.241100,112500.000000\\n', '-119.090000,34.240000,17.000000,10214.000000,1589.000000,3409.000000,1327.000000,5.380600,452100.000000\\n', '-117.200000,32.770000,30.000000,156.000000,45.000000,77.000000,40.000000,3.267900,137500.000000\\n', '-122.270000,37.450000,41.000000,830.000000,136.000000,353.000000,153.000000,6.382400,500001.000000\\n', '-117.310000,34.410000,14.000000,3019.000000,643.000000,1639.000000,582.000000,1.528800,103400.000000\\n', '-118.280000,33.830000,18.000000,5923.000000,1409.000000,3887.000000,1322.000000,3.471200,194400.000000\\n', '-118.270000,34.050000,26.000000,1164.000000,674.000000,1685.000000,541.000000,1.572700,225000.000000\\n', '-118.170000,34.090000,45.000000,1327.000000,271.000000,1069.000000,284.000000,3.397700,153800.000000\\n', '-122.540000,37.740000,42.000000,2006.000000,415.000000,1230.000000,435.000000,4.178600,271100.000000\\n', '-118.280000,33.770000,47.000000,307.000000,69.000000,374.000000,65.000000,2.906300,146900.000000\\n', '-118.040000,33.720000,24.000000,7141.000000,1330.000000,3418.000000,1268.000000,4.664900,237800.000000\\n', '-117.390000,33.920000,25.000000,2886.000000,583.000000,2327.000000,577.000000,2.385100,113700.000000\\n', '-119.010000,35.370000,35.000000,120.000000,35.000000,477.000000,41.000000,1.912500,47500.000000\\n', '-122.410000,37.740000,34.000000,1403.000000,262.000000,839.000000,255.000000,4.703100,255200.000000\\n', '-118.290000,33.910000,41.000000,2475.000000,532.000000,1416.000000,470.000000,3.837200,156400.000000\\n', '-117.250000,33.220000,19.000000,2167.000000,443.000000,1654.000000,435.000000,3.500000,135800.000000\\n', '-117.650000,33.460000,19.000000,7034.000000,1139.000000,2824.000000,1068.000000,6.087300,277300.000000\\n', '-121.980000,37.800000,17.000000,3354.000000,422.000000,1457.000000,425.000000,7.647300,345800.000000\\n', '-118.050000,33.840000,21.000000,4890.000000,653.000000,2295.000000,654.000000,6.983000,329700.000000\\n', '-122.030000,37.270000,25.000000,4460.000000,553.000000,1608.000000,561.000000,10.795800,500001.000000\\n', '-120.520000,35.240000,5.000000,4413.000000,804.000000,2003.000000,725.000000,5.026700,253300.000000\\n', '-117.950000,34.140000,33.000000,1943.000000,440.000000,1526.000000,353.000000,3.038000,137500.000000\\n', '-118.160000,34.690000,35.000000,3114.000000,583.000000,1974.000000,545.000000,3.902800,126800.000000\\n', '-121.480000,39.100000,19.000000,2043.000000,421.000000,1018.000000,390.000000,2.595200,92400.000000\\n', '-117.530000,33.940000,21.000000,5675.000000,935.000000,2834.000000,865.000000,4.226300,203200.000000\\n', '-122.290000,37.910000,40.000000,2085.000000,329.000000,796.000000,339.000000,5.535700,273700.000000\\n', '-121.780000,38.690000,31.000000,2547.000000,535.000000,1579.000000,509.000000,2.677400,95800.000000\\n', '-117.970000,33.840000,34.000000,874.000000,153.000000,549.000000,153.000000,4.866700,186800.000000\\n', '-122.260000,37.860000,52.000000,3774.000000,744.000000,1461.000000,679.000000,2.940500,289500.000000\\n', '-117.960000,33.690000,20.000000,3123.000000,441.000000,1319.000000,432.000000,6.091000,290400.000000\\n', '-118.390000,34.190000,36.000000,904.000000,191.000000,627.000000,191.000000,2.416700,192900.000000\\n', '-122.480000,37.510000,22.000000,1564.000000,278.000000,761.000000,270.000000,4.757800,318500.000000\\n', '-118.600000,34.210000,19.000000,2581.000000,857.000000,2004.000000,784.000000,2.615900,182300.000000\\n', '-122.350000,40.560000,12.000000,3900.000000,863.000000,2145.000000,864.000000,1.988100,85200.000000\\n', '-118.240000,34.030000,52.000000,142.000000,47.000000,137.000000,45.000000,1.833300,312500.000000\\n', '-117.610000,34.080000,20.000000,3550.000000,736.000000,2229.000000,681.000000,3.019900,128800.000000\\n', '-121.030000,37.670000,24.000000,2162.000000,459.000000,1468.000000,441.000000,3.185700,98300.000000\\n', '-119.690000,36.810000,15.000000,2892.000000,496.000000,1634.000000,501.000000,4.493400,88000.000000\\n', '-118.270000,34.060000,26.000000,513.000000,338.000000,1204.000000,321.000000,1.490400,275000.000000\\n', '-118.260000,34.070000,30.000000,929.000000,238.000000,763.000000,214.000000,2.522700,187500.000000\\n', '-120.910000,38.980000,13.000000,7689.000000,1415.000000,3264.000000,1198.000000,3.653000,146800.000000\\n', '-117.140000,32.710000,32.000000,719.000000,251.000000,894.000000,208.000000,1.845600,103100.000000\\n', '-117.200000,32.820000,35.000000,2772.000000,537.000000,1392.000000,521.000000,3.337000,172300.000000\\n', '-123.800000,39.440000,52.000000,1533.000000,336.000000,754.000000,340.000000,1.921300,95000.000000\\n', '-122.330000,37.980000,32.000000,1967.000000,348.000000,1144.000000,364.000000,4.413500,150100.000000\\n', '-117.370000,33.970000,38.000000,1156.000000,241.000000,877.000000,200.000000,1.451400,79900.000000\\n', '-122.040000,37.300000,26.000000,1714.000000,270.000000,778.000000,262.000000,6.075000,417000.000000\\n', '-118.210000,33.980000,35.000000,1705.000000,562.000000,2212.000000,539.000000,2.325000,161500.000000\\n', '-117.320000,34.110000,38.000000,1462.000000,337.000000,1208.000000,324.000000,2.260400,68100.000000\\n', '-118.120000,34.080000,49.000000,1782.000000,374.000000,1010.000000,367.000000,3.158300,268200.000000\\n', '-121.560000,39.690000,8.000000,2836.000000,522.000000,1163.000000,512.000000,3.130000,168300.000000\\n', '-117.940000,33.800000,28.000000,2914.000000,489.000000,1500.000000,499.000000,4.942900,254800.000000\\n', '-117.980000,33.850000,23.000000,2089.000000,377.000000,1085.000000,362.000000,4.765000,181500.000000\\n', '-122.850000,38.770000,18.000000,2856.000000,513.000000,1027.000000,405.000000,4.695300,241700.000000\\n', '-116.240000,33.760000,9.000000,1961.000000,595.000000,966.000000,275.000000,3.812500,96700.000000\\n', '-122.320000,37.960000,25.000000,1728.000000,403.000000,934.000000,412.000000,3.375000,133700.000000\\n', '-118.950000,35.410000,21.000000,3999.000000,727.000000,1889.000000,688.000000,3.875000,99500.000000\\n', '-122.420000,37.670000,42.000000,2274.000000,429.000000,1255.000000,397.000000,5.120500,226300.000000\\n', '-118.250000,33.980000,39.000000,1553.000000,461.000000,2271.000000,437.000000,1.737800,121900.000000\\n', '-118.400000,34.220000,36.000000,2557.000000,540.000000,1556.000000,491.000000,3.659100,183800.000000\\n', '-120.560000,38.390000,20.000000,1326.000000,307.000000,563.000000,237.000000,2.666700,86600.000000\\n', '-121.630000,39.100000,22.000000,3585.000000,548.000000,1757.000000,577.000000,4.174000,100100.000000\\n', '-122.200000,37.470000,44.000000,1927.000000,332.000000,846.000000,362.000000,4.208300,278200.000000\\n', '-122.110000,37.110000,46.000000,1993.000000,404.000000,850.000000,327.000000,5.208000,206800.000000\\n', '-118.250000,33.840000,19.000000,1731.000000,420.000000,1032.000000,364.000000,3.812500,208100.000000\\n', '-118.350000,34.180000,46.000000,2711.000000,491.000000,1277.000000,490.000000,4.282000,224700.000000\\n', '-118.140000,33.860000,44.000000,1436.000000,257.000000,745.000000,233.000000,4.625000,213400.000000\\n', '-122.260000,38.280000,24.000000,2831.000000,502.000000,1462.000000,503.000000,4.500000,158300.000000\\n', '-120.240000,37.960000,34.000000,1747.000000,395.000000,935.000000,362.000000,1.625000,79400.000000\\n', '-121.590000,39.740000,17.000000,1646.000000,330.000000,750.000000,344.000000,2.379800,83800.000000\\n', '-122.720000,40.170000,16.000000,396.000000,78.000000,188.000000,72.000000,1.388900,87500.000000\\n', '-118.480000,34.310000,31.000000,1091.000000,256.000000,892.000000,238.000000,3.000000,172400.000000\\n', '-121.100000,38.940000,42.000000,410.000000,117.000000,706.000000,112.000000,1.017900,125000.000000\\n', '-118.100000,33.970000,35.000000,2426.000000,529.000000,2010.000000,514.000000,2.992200,163500.000000\\n', '-120.970000,37.670000,16.000000,1499.000000,250.000000,1292.000000,271.000000,4.385100,117300.000000\\n', '-121.910000,36.970000,19.000000,4920.000000,1092.000000,1807.000000,922.000000,3.511200,231900.000000\\n', '-121.470000,37.580000,14.000000,1594.000000,292.000000,887.000000,287.000000,4.662500,294000.000000\\n', '-121.930000,37.720000,26.000000,3816.000000,637.000000,1935.000000,642.000000,4.469700,221300.000000\\n', '-117.830000,33.790000,29.000000,1454.000000,236.000000,724.000000,262.000000,4.854200,218100.000000\\n', '-117.890000,33.730000,33.000000,1308.000000,375.000000,2175.000000,347.000000,3.082400,177400.000000\\n', '-117.840000,34.000000,26.000000,797.000000,117.000000,383.000000,114.000000,6.875800,253800.000000\\n', '-116.860000,34.240000,19.000000,5411.000000,1042.000000,441.000000,185.000000,3.132400,132000.000000\\n', '-121.280000,38.740000,33.000000,4384.000000,778.000000,1775.000000,789.000000,4.050000,134700.000000\\n', '-119.630000,36.640000,33.000000,1036.000000,181.000000,620.000000,174.000000,3.410700,110400.000000\\n', '-121.060000,38.250000,13.000000,651.000000,102.000000,301.000000,104.000000,3.652800,200000.000000\\n', '-122.010000,37.400000,24.000000,1297.000000,297.000000,441.000000,282.000000,3.143900,47500.000000\\n', '-117.220000,33.310000,12.000000,2924.000000,433.000000,1193.000000,394.000000,6.247500,331300.000000\\n', '-116.310000,33.730000,19.000000,12467.000000,2508.000000,4086.000000,1761.000000,3.284600,131900.000000\\n', '-121.290000,38.020000,12.000000,2006.000000,426.000000,1849.000000,396.000000,2.543700,99000.000000\\n', '-121.000000,37.640000,52.000000,530.000000,177.000000,325.000000,158.000000,1.187500,90600.000000\\n', '-121.080000,39.210000,17.000000,3033.000000,590.000000,1319.000000,583.000000,2.481100,111800.000000\\n', '-121.880000,37.990000,16.000000,3787.000000,515.000000,1606.000000,507.000000,5.567600,174200.000000\\n', '-117.180000,32.740000,20.000000,1165.000000,269.000000,459.000000,244.000000,3.175000,191700.000000\\n', '-117.200000,32.850000,22.000000,3501.000000,631.000000,1297.000000,581.000000,4.789100,295300.000000\\n', '-117.160000,33.920000,12.000000,3236.000000,502.000000,1610.000000,502.000000,4.756800,143500.000000\\n', '-118.350000,34.050000,44.000000,1856.000000,493.000000,1374.000000,469.000000,2.098400,158000.000000\\n', '-119.050000,36.060000,23.000000,2344.000000,407.000000,1184.000000,406.000000,3.162500,70600.000000\\n', '-121.150000,38.690000,52.000000,240.000000,44.000000,6675.000000,29.000000,6.135900,225000.000000\\n', '-123.160000,39.130000,33.000000,1320.000000,303.000000,1048.000000,303.000000,1.781300,94700.000000\\n', '-121.360000,38.590000,32.000000,3303.000000,480.000000,1185.000000,436.000000,5.050800,225700.000000\\n', '-118.280000,33.730000,52.000000,2085.000000,588.000000,1767.000000,516.000000,2.193500,243200.000000\\n', '-118.360000,33.890000,27.000000,2837.000000,684.000000,2141.000000,648.000000,3.132500,215000.000000\\n', '-121.240000,38.630000,4.000000,11021.000000,1565.000000,3857.000000,1494.000000,7.258200,273200.000000\\n', '-117.690000,33.550000,3.000000,1618.000000,266.000000,710.000000,246.000000,6.074300,274300.000000\\n', '-118.460000,34.270000,28.000000,1865.000000,463.000000,1182.000000,440.000000,2.619300,172300.000000\\n', '-122.280000,37.860000,52.000000,3007.000000,691.000000,1582.000000,636.000000,2.565200,157700.000000\\n', '-118.280000,33.940000,32.000000,1381.000000,375.000000,1268.000000,354.000000,1.105100,94200.000000\\n', '-122.180000,37.730000,42.000000,909.000000,215.000000,646.000000,198.000000,2.906300,80000.000000\\n', '-122.870000,38.390000,34.000000,1138.000000,205.000000,541.000000,180.000000,4.514700,271400.000000\\n', '-119.750000,34.440000,28.000000,1080.000000,298.000000,524.000000,251.000000,1.843200,327300.000000\\n', '-117.210000,32.850000,15.000000,2593.000000,521.000000,901.000000,456.000000,4.206500,277800.000000\\n', '-118.200000,33.820000,34.000000,2807.000000,768.000000,2217.000000,744.000000,2.428600,204800.000000\\n', '-121.880000,37.320000,40.000000,1331.000000,374.000000,1276.000000,389.000000,2.754600,172500.000000\\n', '-118.460000,34.140000,34.000000,5264.000000,771.000000,1738.000000,753.000000,8.811500,500001.000000\\n', '-118.290000,34.090000,35.000000,2198.000000,998.000000,3441.000000,912.000000,2.046700,158300.000000\\n', '-117.880000,34.110000,30.000000,3082.000000,602.000000,2008.000000,619.000000,4.141100,182700.000000\\n', '-117.680000,33.650000,6.000000,10395.000000,1915.000000,4783.000000,1811.000000,5.928000,239900.000000\\n', '-120.350000,39.340000,29.000000,1986.000000,474.000000,337.000000,100.000000,4.027800,95800.000000\\n', '-118.020000,33.820000,19.000000,2485.000000,437.000000,1286.000000,431.000000,4.746600,258300.000000\\n', '-118.350000,33.920000,24.000000,2728.000000,845.000000,2023.000000,773.000000,2.750000,239700.000000\\n', '-122.340000,37.970000,19.000000,2237.000000,580.000000,1438.000000,551.000000,2.338200,120700.000000\\n', '-118.330000,34.020000,46.000000,1528.000000,391.000000,933.000000,366.000000,2.197900,125700.000000\\n', '-118.400000,33.900000,37.000000,2458.000000,400.000000,920.000000,375.000000,7.892400,500001.000000\\n', '-117.970000,33.730000,18.000000,3698.000000,574.000000,2046.000000,614.000000,6.298400,269800.000000\\n', '-121.320000,38.570000,15.000000,3369.000000,499.000000,1733.000000,470.000000,5.310000,127500.000000\\n', '-117.940000,33.880000,46.000000,1747.000000,312.000000,770.000000,296.000000,5.421700,256000.000000\\n', '-118.540000,34.150000,26.000000,10111.000000,1295.000000,3599.000000,1257.000000,10.229200,500001.000000\\n', '-117.860000,33.830000,23.000000,2377.000000,403.000000,1101.000000,408.000000,5.343900,227100.000000\\n', '-119.950000,36.800000,30.000000,1233.000000,214.000000,620.000000,199.000000,3.429700,112500.000000\\n', '-121.420000,36.860000,41.000000,440.000000,106.000000,389.000000,94.000000,2.681800,225000.000000\\n', '-117.090000,32.690000,34.000000,1469.000000,267.000000,1031.000000,267.000000,3.458300,112700.000000\\n', '-119.200000,34.150000,27.000000,2076.000000,681.000000,1904.000000,647.000000,1.477300,160800.000000\\n', '-117.170000,32.760000,45.000000,3149.000000,639.000000,1160.000000,661.000000,2.726600,354200.000000\\n', '-117.900000,33.910000,36.000000,1376.000000,257.000000,687.000000,221.000000,3.540300,195400.000000\\n', '-122.030000,37.330000,23.000000,4221.000000,671.000000,1782.000000,641.000000,7.486300,412300.000000\\n', '-118.180000,33.900000,31.000000,2536.000000,603.000000,2625.000000,576.000000,3.090900,150900.000000\\n', '-119.050000,35.320000,11.000000,7035.000000,1455.000000,3525.000000,1387.000000,3.482700,93600.000000\\n', '-119.670000,34.470000,35.000000,2700.000000,422.000000,1995.000000,383.000000,4.975700,500001.000000\\n', '-118.350000,34.170000,44.000000,2572.000000,613.000000,1280.000000,570.000000,3.558300,232000.000000\\n', '-118.300000,33.870000,31.000000,1398.000000,261.000000,823.000000,263.000000,5.064100,234900.000000\\n', '-118.250000,34.160000,52.000000,2477.000000,385.000000,993.000000,371.000000,4.913500,368100.000000\\n', '-117.910000,33.820000,29.000000,1444.000000,326.000000,1038.000000,271.000000,2.384300,182900.000000\\n', '-118.360000,33.980000,40.000000,1113.000000,234.000000,584.000000,231.000000,3.092700,316000.000000\\n', '-121.290000,37.990000,45.000000,965.000000,198.000000,498.000000,195.000000,1.694400,75200.000000\\n', '-122.740000,38.460000,9.000000,2268.000000,594.000000,1311.000000,585.000000,2.660700,91500.000000\\n', '-118.290000,33.930000,31.000000,3894.000000,1017.000000,3590.000000,962.000000,2.043700,137200.000000\\n', '-122.050000,37.310000,25.000000,4601.000000,696.000000,2003.000000,666.000000,8.072700,455500.000000\\n', '-117.080000,32.570000,18.000000,2203.000000,544.000000,1943.000000,497.000000,2.250000,103200.000000\\n', '-122.040000,37.970000,10.000000,974.000000,316.000000,631.000000,286.000000,2.315200,140600.000000\\n', '-120.310000,37.110000,38.000000,1696.000000,301.000000,985.000000,278.000000,2.405400,112500.000000\\n', '-117.270000,34.100000,9.000000,3904.000000,1042.000000,3688.000000,896.000000,1.802200,78000.000000\\n', '-118.260000,33.950000,44.000000,1481.000000,329.000000,999.000000,315.000000,1.514700,94600.000000\\n', '-118.110000,34.160000,52.000000,1353.000000,274.000000,852.000000,306.000000,3.458300,239900.000000\\n', '-118.340000,33.990000,34.000000,397.000000,132.000000,250.000000,121.000000,1.675000,166700.000000\\n', '-117.890000,33.600000,40.000000,1639.000000,352.000000,498.000000,278.000000,5.633600,500001.000000\\n', '-119.720000,34.420000,52.000000,1759.000000,387.000000,980.000000,402.000000,4.012500,261000.000000\\n', '-118.440000,34.180000,36.000000,2077.000000,496.000000,1206.000000,528.000000,2.232600,221000.000000\\n', '-122.080000,37.970000,9.000000,2643.000000,439.000000,1105.000000,467.000000,6.657900,245200.000000\\n', '-122.450000,37.760000,50.000000,2518.000000,507.000000,979.000000,516.000000,4.691200,500001.000000\\n', '-118.220000,33.940000,41.000000,928.000000,249.000000,1108.000000,236.000000,3.432300,144600.000000\\n', '-118.330000,34.070000,52.000000,1482.000000,171.000000,531.000000,161.000000,15.000100,500001.000000\\n', '-117.660000,34.050000,14.000000,2644.000000,525.000000,2021.000000,511.000000,3.646700,147500.000000\\n', '-120.940000,35.420000,18.000000,3418.000000,686.000000,970.000000,453.000000,3.773800,279400.000000\\n', '-117.300000,34.050000,6.000000,2155.000000,544.000000,1039.000000,391.000000,1.667500,95800.000000\\n', '-117.920000,33.640000,5.000000,949.000000,287.000000,497.000000,244.000000,2.750000,225000.000000\\n', '-118.190000,33.990000,37.000000,2073.000000,614.000000,2544.000000,598.000000,2.905400,156300.000000\\n', '-122.080000,37.940000,44.000000,2185.000000,357.000000,943.000000,366.000000,4.725000,232100.000000\\n', '-117.720000,34.090000,33.000000,4979.000000,934.000000,2575.000000,874.000000,3.795800,152500.000000\\n', '-118.190000,34.080000,35.000000,1554.000000,381.000000,1487.000000,374.000000,1.903800,139500.000000\\n', '-122.240000,38.110000,42.000000,1743.000000,388.000000,889.000000,341.000000,2.324100,99200.000000\\n', '-121.810000,37.230000,17.000000,2319.000000,324.000000,1076.000000,338.000000,6.466400,278300.000000\\n', '-118.340000,34.180000,45.000000,3046.000000,633.000000,1448.000000,599.000000,3.240000,226900.000000\\n', '-120.570000,38.200000,13.000000,4110.000000,847.000000,1796.000000,706.000000,2.641700,122300.000000\\n', '-120.450000,34.640000,30.000000,2330.000000,422.000000,1255.000000,449.000000,3.851200,134600.000000\\n', '-118.250000,33.950000,25.000000,764.000000,200.000000,801.000000,220.000000,1.138400,100000.000000\\n', '-117.950000,33.900000,15.000000,3057.000000,479.000000,1679.000000,498.000000,6.842900,372600.000000\\n', '-117.200000,33.120000,18.000000,4372.000000,736.000000,1473.000000,675.000000,5.119400,247800.000000\\n', '-117.300000,34.530000,38.000000,1643.000000,489.000000,1196.000000,406.000000,1.227500,64100.000000\\n', '-121.870000,37.270000,18.000000,3561.000000,560.000000,1753.000000,553.000000,5.029200,269400.000000\\n', '-118.280000,34.030000,40.000000,2118.000000,796.000000,2195.000000,658.000000,1.797600,164600.000000\\n', '-119.770000,36.440000,26.000000,1727.000000,289.000000,802.000000,259.000000,3.208300,75000.000000\\n', '-122.380000,40.090000,16.000000,2077.000000,388.000000,1155.000000,389.000000,3.136100,84800.000000\\n', '-118.900000,34.180000,14.000000,2627.000000,328.000000,1121.000000,328.000000,7.050400,333800.000000\\n', '-121.010000,37.250000,16.000000,2216.000000,458.000000,1135.000000,424.000000,2.731600,97500.000000\\n', '-116.980000,32.720000,15.000000,4209.000000,680.000000,1914.000000,641.000000,4.513500,158300.000000\\n', '-119.980000,38.920000,28.000000,1408.000000,312.000000,522.000000,221.000000,2.070800,89600.000000\\n', '-121.930000,37.720000,26.000000,2806.000000,459.000000,1453.000000,444.000000,4.910700,213800.000000\\n', '-117.640000,34.090000,34.000000,2839.000000,659.000000,1822.000000,631.000000,3.050000,121300.000000\\n', '-119.850000,37.390000,14.000000,2744.000000,555.000000,1153.000000,474.000000,2.753000,111100.000000\\n', '-118.200000,33.980000,43.000000,1091.000000,320.000000,1418.000000,316.000000,2.152200,159400.000000\\n', '-120.830000,37.070000,16.000000,3736.000000,761.000000,1942.000000,730.000000,2.559800,120200.000000\\n', '-117.070000,32.580000,25.000000,1607.000000,280.000000,899.000000,260.000000,3.819400,134400.000000\\n', '-119.050000,35.340000,14.000000,3580.000000,984.000000,1933.000000,912.000000,2.663700,175000.000000\\n', '-117.570000,34.150000,3.000000,12806.000000,2219.000000,4249.000000,1499.000000,5.485000,343100.000000\\n', '-121.370000,38.670000,36.000000,1786.000000,338.000000,974.000000,319.000000,2.555000,72700.000000\\n', '-122.180000,37.700000,36.000000,2639.000000,533.000000,1209.000000,519.000000,4.026800,205500.000000\\n', '-116.940000,32.810000,8.000000,2517.000000,632.000000,1686.000000,613.000000,2.136000,143500.000000\\n', '-121.210000,39.240000,7.000000,4194.000000,673.000000,1355.000000,566.000000,4.370200,226100.000000\\n', '-122.060000,37.710000,36.000000,3541.000000,570.000000,1478.000000,529.000000,4.635000,248600.000000\\n', '-118.440000,34.190000,11.000000,2891.000000,951.000000,2166.000000,768.000000,2.891000,178100.000000\\n', '-122.360000,37.720000,10.000000,479.000000,125.000000,355.000000,108.000000,2.708300,180400.000000\\n', '-121.320000,38.620000,29.000000,2430.000000,448.000000,1087.000000,394.000000,3.086400,177900.000000\\n', '-118.270000,33.940000,43.000000,1309.000000,344.000000,1182.000000,340.000000,1.662500,88700.000000\\n', '-122.040000,37.970000,39.000000,1323.000000,245.000000,705.000000,261.000000,3.196800,151000.000000\\n', '-118.210000,33.960000,39.000000,2050.000000,529.000000,1959.000000,485.000000,2.138900,168900.000000\\n', '-117.200000,33.580000,2.000000,30450.000000,5033.000000,9419.000000,3197.000000,4.593600,174300.000000\\n', '-120.500000,37.370000,18.000000,8606.000000,1678.000000,5303.000000,1644.000000,2.401200,79700.000000\\n', '-118.170000,33.980000,36.000000,627.000000,177.000000,834.000000,175.000000,2.984400,163600.000000\\n', '-117.880000,33.830000,22.000000,3522.000000,543.000000,1706.000000,524.000000,6.468500,241200.000000\\n', '-118.290000,33.990000,46.000000,2198.000000,530.000000,2067.000000,497.000000,2.054200,103400.000000\\n', '-117.420000,34.100000,18.000000,3977.000000,809.000000,2231.000000,742.000000,4.139900,115400.000000\\n', '-116.960000,32.710000,18.000000,2413.000000,533.000000,1129.000000,551.000000,2.456700,155000.000000\\n', '-118.360000,34.070000,52.000000,2046.000000,451.000000,944.000000,435.000000,3.426500,456900.000000\\n', '-122.260000,38.330000,34.000000,2048.000000,316.000000,780.000000,267.000000,5.815000,339200.000000\\n', '-120.510000,37.290000,20.000000,4927.000000,1042.000000,4205.000000,1009.000000,1.767900,79800.000000\\n', '-117.940000,33.620000,25.000000,1188.000000,264.000000,569.000000,249.000000,3.660700,500001.000000\\n', '-118.270000,33.940000,30.000000,1041.000000,275.000000,877.000000,270.000000,1.526800,91600.000000\\n', '-117.930000,34.090000,37.000000,1185.000000,225.000000,769.000000,235.000000,4.462500,154200.000000\\n', '-118.220000,33.920000,43.000000,1195.000000,256.000000,1251.000000,262.000000,3.453900,125000.000000\\n', '-121.840000,37.320000,16.000000,1866.000000,364.000000,1835.000000,412.000000,5.336300,212800.000000\\n', '-122.030000,37.830000,24.000000,5948.000000,738.000000,1997.000000,710.000000,9.870800,500001.000000\\n', '-122.460000,38.290000,21.000000,2423.000000,560.000000,1098.000000,503.000000,2.364000,173300.000000\\n', '-118.320000,34.010000,50.000000,1842.000000,377.000000,817.000000,341.000000,3.154800,157700.000000\\n', '-118.020000,33.950000,35.000000,2085.000000,400.000000,1112.000000,391.000000,3.488600,173900.000000\\n', '-118.310000,34.190000,13.000000,3801.000000,1116.000000,1986.000000,1078.000000,2.087500,222700.000000\\n', '-117.800000,34.100000,13.000000,2996.000000,495.000000,1187.000000,464.000000,6.245600,161700.000000\\n', '-118.460000,34.260000,33.000000,1358.000000,247.000000,738.000000,235.000000,5.094700,210300.000000\\n', '-121.940000,37.340000,41.000000,2151.000000,473.000000,1092.000000,469.000000,3.732100,250000.000000\\n', '-117.640000,33.870000,2.000000,17470.000000,2727.000000,5964.000000,1985.000000,6.230800,257900.000000\\n', '-117.900000,34.110000,23.000000,4776.000000,1316.000000,4797.000000,1187.000000,2.166700,142600.000000\\n', '-118.340000,34.110000,51.000000,937.000000,348.000000,527.000000,333.000000,4.357100,468800.000000\\n', '-122.310000,37.560000,45.000000,1685.000000,321.000000,815.000000,314.000000,4.295500,309700.000000\\n', '-118.360000,34.210000,41.000000,337.000000,65.000000,198.000000,50.000000,1.892900,152900.000000\\n', '-122.450000,37.710000,45.000000,2253.000000,431.000000,1382.000000,392.000000,4.256200,221600.000000\\n', '-118.680000,34.130000,9.000000,11251.000000,1594.000000,3029.000000,1227.000000,6.727300,500001.000000\\n', '-119.640000,36.850000,15.000000,2397.000000,353.000000,1258.000000,347.000000,4.990400,157300.000000\\n', '-122.160000,37.760000,45.000000,2299.000000,514.000000,1437.000000,484.000000,2.512200,95500.000000\\n', '-117.990000,33.670000,19.000000,3808.000000,790.000000,1776.000000,756.000000,4.625000,282200.000000\\n', '-121.830000,37.400000,27.000000,1145.000000,150.000000,492.000000,160.000000,5.716000,348300.000000\\n', '-118.190000,35.050000,14.000000,2992.000000,573.000000,1631.000000,526.000000,3.745200,83200.000000\\n', '-118.030000,33.770000,24.000000,3810.000000,579.000000,1818.000000,590.000000,5.805300,255900.000000\\n', '-122.260000,37.820000,22.000000,3682.000000,1270.000000,2024.000000,1250.000000,1.218500,170000.000000\\n', '-118.370000,33.930000,46.000000,442.000000,88.000000,255.000000,94.000000,4.447400,246900.000000\\n', '-118.220000,34.050000,43.000000,1153.000000,411.000000,1667.000000,409.000000,1.940200,139300.000000\\n', '-122.490000,37.680000,34.000000,3718.000000,676.000000,2510.000000,632.000000,5.331100,270800.000000\\n', '-116.510000,33.840000,16.000000,980.000000,193.000000,454.000000,185.000000,4.072900,100000.000000\\n', '-121.880000,37.660000,29.000000,2702.000000,680.000000,1360.000000,642.000000,3.112700,233000.000000\\n', '-122.440000,37.800000,52.000000,2869.000000,594.000000,500.000000,335.000000,5.037600,500001.000000\\n', '-121.340000,38.050000,16.000000,667.000000,92.000000,267.000000,90.000000,5.614700,244700.000000\\n', '-117.870000,33.840000,16.000000,1545.000000,354.000000,730.000000,350.000000,4.511200,139000.000000\\n', '-122.280000,37.890000,52.000000,2315.000000,408.000000,835.000000,369.000000,4.589300,290100.000000\\n', '-121.830000,37.990000,18.000000,2741.000000,449.000000,1507.000000,460.000000,4.756600,142500.000000\\n', '-119.530000,36.650000,43.000000,1676.000000,320.000000,1056.000000,276.000000,2.556200,93200.000000\\n', '-117.390000,34.090000,10.000000,5736.000000,945.000000,3528.000000,932.000000,4.395800,130700.000000\\n', '-118.230000,33.900000,45.000000,1285.000000,238.000000,840.000000,211.000000,3.410700,112500.000000\\n', '-121.320000,38.670000,21.000000,3455.000000,706.000000,1605.000000,704.000000,3.138200,91600.000000\\n', '-118.330000,34.050000,46.000000,3015.000000,795.000000,2300.000000,725.000000,2.070600,268500.000000\\n', '-122.210000,37.840000,44.000000,3424.000000,597.000000,1358.000000,597.000000,6.019400,292300.000000\\n', '-117.900000,34.530000,8.000000,3484.000000,647.000000,2169.000000,619.000000,3.976600,135800.000000\\n', '-122.470000,37.510000,15.000000,4974.000000,764.000000,2222.000000,774.000000,6.760600,364300.000000\\n', '-118.020000,33.770000,7.000000,586.000000,118.000000,232.000000,107.000000,5.207700,181300.000000\\n', '-119.730000,34.430000,35.000000,2703.000000,654.000000,1383.000000,631.000000,4.527800,340400.000000\\n', '-120.680000,35.140000,34.000000,3100.000000,617.000000,1155.000000,542.000000,3.093800,245900.000000\\n', '-122.470000,38.290000,14.000000,3732.000000,846.000000,1277.000000,775.000000,2.565800,208000.000000\\n', '-121.900000,37.350000,52.000000,1034.000000,239.000000,531.000000,223.000000,2.741100,227100.000000\\n', '-121.870000,37.260000,17.000000,1051.000000,172.000000,446.000000,173.000000,5.665200,234500.000000\\n', '-117.970000,33.890000,15.000000,3801.000000,542.000000,1992.000000,526.000000,9.068300,367400.000000\\n', '-116.870000,33.910000,37.000000,1858.000000,361.000000,1632.000000,310.000000,2.753600,73100.000000\\n', '-122.150000,37.470000,38.000000,1560.000000,301.000000,1331.000000,316.000000,3.052100,151500.000000\\n', '-118.310000,34.010000,52.000000,2547.000000,475.000000,1417.000000,444.000000,1.821400,123200.000000\\n', '-118.440000,34.040000,49.000000,32.000000,7.000000,14.000000,7.000000,2.187500,225000.000000\\n', '-118.010000,33.850000,29.000000,2064.000000,447.000000,1265.000000,400.000000,3.886400,209300.000000\\n', '-122.270000,41.200000,52.000000,4513.000000,985.000000,1926.000000,815.000000,1.592300,56000.000000\\n', '-122.320000,37.560000,49.000000,2016.000000,299.000000,691.000000,288.000000,5.549000,500001.000000\\n', '-119.770000,36.720000,43.000000,1763.000000,389.000000,1623.000000,390.000000,1.442700,47700.000000\\n', '-122.140000,37.840000,24.000000,2131.000000,343.000000,874.000000,373.000000,5.634900,355600.000000\\n', '-118.340000,34.090000,14.000000,3032.000000,999.000000,1691.000000,841.000000,2.200000,210000.000000\\n', '-117.610000,34.340000,18.000000,5210.000000,912.000000,1301.000000,464.000000,4.862300,176900.000000\\n', '-118.230000,33.760000,21.000000,49.000000,14.000000,29.000000,16.000000,5.000000,87500.000000\\n', '-117.890000,33.770000,32.000000,2342.000000,570.000000,1445.000000,453.000000,4.195100,195000.000000\\n', '-118.260000,33.910000,39.000000,967.000000,256.000000,903.000000,256.000000,1.903800,93100.000000\\n', '-118.400000,33.990000,39.000000,1613.000000,380.000000,1113.000000,356.000000,2.825000,276700.000000\\n', '-117.140000,32.920000,15.000000,1558.000000,314.000000,949.000000,332.000000,5.286400,174400.000000\\n', '-118.150000,33.770000,52.000000,2204.000000,498.000000,899.000000,445.000000,4.176500,393900.000000\\n', '-118.590000,34.210000,17.000000,2737.000000,868.000000,2924.000000,785.000000,2.579700,183500.000000\\n', '-121.370000,36.830000,14.000000,3658.000000,612.000000,1951.000000,600.000000,4.760000,216000.000000\\n', '-120.480000,35.020000,17.000000,2721.000000,477.000000,1672.000000,492.000000,2.979800,204800.000000\\n', '-118.440000,34.210000,41.000000,1440.000000,325.000000,1014.000000,322.000000,2.875000,168600.000000\\n', '-122.320000,38.330000,17.000000,851.000000,118.000000,370.000000,123.000000,5.087700,209300.000000\\n', '-121.870000,37.280000,21.000000,3305.000000,749.000000,2459.000000,701.000000,3.968800,249600.000000\\n', '-117.100000,33.070000,16.000000,2402.000000,336.000000,1080.000000,365.000000,8.680300,347300.000000\\n', '-118.030000,33.760000,25.000000,4650.000000,849.000000,2503.000000,790.000000,5.742000,221900.000000\\n', '-122.400000,37.730000,48.000000,1489.000000,326.000000,1115.000000,356.000000,2.636400,199300.000000\\n', '-118.340000,34.120000,41.000000,3257.000000,679.000000,1237.000000,638.000000,4.241500,409600.000000\\n', '-121.040000,39.240000,48.000000,1188.000000,227.000000,471.000000,219.000000,2.312500,125700.000000\\n', '-117.970000,33.910000,19.000000,8096.000000,1318.000000,3853.000000,1313.000000,6.007600,269500.000000\\n', '-117.100000,32.680000,45.000000,1183.000000,289.000000,900.000000,266.000000,2.494300,99600.000000\\n', '-116.610000,33.930000,35.000000,321.000000,71.000000,157.000000,61.000000,2.805600,68100.000000\\n', '-118.390000,34.080000,27.000000,6605.000000,1710.000000,2665.000000,1520.000000,3.808800,500001.000000\\n', '-121.230000,38.650000,19.000000,2926.000000,476.000000,1349.000000,480.000000,4.643700,212900.000000\\n', '-122.200000,37.790000,29.000000,1640.000000,376.000000,939.000000,340.000000,2.832100,150000.000000\\n', '-117.180000,32.830000,23.000000,2105.000000,525.000000,1218.000000,484.000000,3.375000,184100.000000\\n', '-118.080000,33.770000,26.000000,2461.000000,562.000000,971.000000,544.000000,2.194400,87500.000000\\n', '-120.450000,34.660000,7.000000,3329.000000,504.000000,1462.000000,452.000000,4.787500,198300.000000\\n', '-117.820000,33.680000,4.000000,1346.000000,213.000000,603.000000,219.000000,8.797400,360600.000000\\n', '-121.920000,36.610000,27.000000,1619.000000,352.000000,831.000000,344.000000,4.300000,226400.000000\\n', '-122.010000,37.530000,19.000000,4572.000000,712.000000,2346.000000,709.000000,6.066700,245700.000000\\n', '-118.270000,33.950000,34.000000,987.000000,248.000000,902.000000,221.000000,2.336500,98000.000000\\n', '-119.960000,38.940000,27.000000,1492.000000,393.000000,717.000000,254.000000,1.890600,104200.000000\\n', '-121.420000,36.570000,13.000000,2685.000000,621.000000,2474.000000,573.000000,2.877500,134100.000000\\n', '-120.960000,37.660000,15.000000,2485.000000,434.000000,1296.000000,434.000000,3.854200,145200.000000\\n', '-118.650000,34.200000,23.000000,7480.000000,1084.000000,3037.000000,1058.000000,6.922300,338400.000000\\n', '-122.310000,38.000000,29.000000,3108.000000,534.000000,1687.000000,516.000000,4.333300,170800.000000\\n', '-118.350000,34.070000,48.000000,890.000000,255.000000,434.000000,232.000000,3.611100,450000.000000\\n', '-118.190000,33.790000,29.000000,3497.000000,1096.000000,2994.000000,919.000000,1.810900,137500.000000\\n', '-122.140000,37.410000,35.000000,2419.000000,426.000000,949.000000,433.000000,6.458800,437100.000000\\n', '-119.810000,36.710000,25.000000,1026.000000,221.000000,789.000000,183.000000,1.562500,52800.000000\\n', '-117.180000,32.680000,29.000000,1539.000000,344.000000,556.000000,289.000000,3.250000,500001.000000\\n', '-117.770000,34.080000,27.000000,5929.000000,932.000000,2817.000000,828.000000,6.043400,214800.000000\\n', '-118.110000,33.860000,33.000000,2389.000000,410.000000,1229.000000,393.000000,5.388900,234900.000000\\n', '-118.280000,34.090000,52.000000,1739.000000,464.000000,938.000000,482.000000,2.442900,228800.000000\\n', '-117.930000,34.040000,30.000000,1336.000000,239.000000,905.000000,253.000000,4.885400,178100.000000\\n', '-117.050000,32.760000,37.000000,4879.000000,906.000000,2076.000000,871.000000,3.662500,154800.000000\\n', '-118.250000,33.870000,18.000000,6812.000000,1263.000000,3704.000000,1216.000000,4.250000,169200.000000\\n', '-122.410000,37.780000,52.000000,254.000000,72.000000,153.000000,29.000000,3.862500,350000.000000\\n', '-119.720000,34.470000,34.000000,3262.000000,533.000000,1265.000000,502.000000,5.841100,381800.000000\\n', '-118.120000,34.150000,22.000000,1671.000000,480.000000,1005.000000,443.000000,3.011900,171400.000000\\n', '-122.210000,37.830000,40.000000,4991.000000,674.000000,1616.000000,654.000000,7.554400,411500.000000\\n', '-119.380000,36.560000,14.000000,3965.000000,804.000000,1945.000000,733.000000,2.690600,95300.000000\\n', '-118.380000,34.280000,22.000000,4428.000000,825.000000,3152.000000,836.000000,4.793200,166300.000000\\n', '-117.340000,34.120000,26.000000,1008.000000,164.000000,568.000000,196.000000,3.351600,105600.000000\\n', '-122.060000,37.390000,22.000000,1236.000000,290.000000,413.000000,274.000000,3.687500,40000.000000\\n', '-118.460000,34.070000,49.000000,2418.000000,301.000000,850.000000,318.000000,14.286700,500001.000000\\n', '-117.900000,34.150000,21.000000,2056.000000,461.000000,1332.000000,429.000000,3.394200,212800.000000\\n', '-123.470000,39.800000,18.000000,2130.000000,545.000000,863.000000,346.000000,2.357100,79200.000000\\n', '-121.910000,37.250000,31.000000,1944.000000,343.000000,975.000000,334.000000,4.920500,240500.000000\\n', '-122.320000,38.320000,22.000000,2483.000000,528.000000,1478.000000,492.000000,4.087800,164400.000000\\n', '-118.140000,33.880000,30.000000,2596.000000,580.000000,1662.000000,539.000000,4.050700,179500.000000\\n', '-117.820000,33.810000,25.000000,2662.000000,402.000000,1247.000000,401.000000,5.439500,244000.000000\\n', '-118.270000,34.070000,38.000000,1270.000000,556.000000,1692.000000,450.000000,1.870000,170800.000000\\n', '-117.440000,33.950000,31.000000,914.000000,177.000000,556.000000,161.000000,3.734400,115300.000000\\n', '-118.100000,34.070000,36.000000,1240.000000,349.000000,1383.000000,338.000000,2.493100,170300.000000\\n', '-121.830000,37.370000,43.000000,1461.000000,284.000000,800.000000,258.000000,3.227900,182400.000000\\n', '-120.900000,35.330000,16.000000,1576.000000,287.000000,595.000000,262.000000,3.588000,266300.000000\\n', '-121.750000,36.920000,48.000000,1801.000000,353.000000,1071.000000,361.000000,3.600000,194500.000000\\n', '-117.910000,33.650000,24.000000,885.000000,321.000000,590.000000,254.000000,2.625000,217900.000000\\n', '-117.200000,32.800000,33.000000,2573.000000,436.000000,1084.000000,443.000000,4.241700,294100.000000\\n', '-118.230000,34.180000,43.000000,1708.000000,280.000000,768.000000,276.000000,6.207000,457400.000000\\n', '-118.320000,33.930000,34.000000,1536.000000,273.000000,804.000000,287.000000,4.961500,157800.000000\\n', '-117.760000,34.120000,16.000000,9020.000000,1509.000000,3575.000000,1486.000000,4.241500,275700.000000\\n', '-118.450000,34.230000,25.000000,4393.000000,1369.000000,3781.000000,1267.000000,2.583300,183700.000000\\n', '-122.450000,41.280000,15.000000,2740.000000,503.000000,1188.000000,445.000000,3.451900,128800.000000\\n', '-118.330000,34.010000,43.000000,2227.000000,564.000000,956.000000,472.000000,2.021700,187500.000000\\n', '-124.160000,40.790000,46.000000,3042.000000,597.000000,1206.000000,541.000000,2.113500,90600.000000\\n', '-118.140000,34.060000,37.000000,1339.000000,258.000000,706.000000,238.000000,4.756900,253800.000000\\n', '-121.140000,38.770000,15.000000,10282.000000,1333.000000,3868.000000,1300.000000,6.478900,287800.000000\\n', '-117.750000,33.830000,14.000000,2452.000000,296.000000,954.000000,275.000000,8.237500,388300.000000\\n', '-122.120000,37.690000,30.000000,1197.000000,269.000000,695.000000,279.000000,3.437500,157800.000000\\n', '-117.790000,34.070000,33.000000,1694.000000,333.000000,1689.000000,301.000000,3.758300,116300.000000\\n', '-118.410000,34.090000,37.000000,2716.000000,302.000000,809.000000,291.000000,15.000100,500001.000000\\n', '-118.530000,34.440000,19.000000,1285.000000,195.000000,650.000000,193.000000,6.039800,217800.000000\\n', '-120.780000,38.740000,28.000000,4236.000000,877.000000,2008.000000,881.000000,2.160300,111300.000000\\n', '-122.350000,37.580000,26.000000,854.000000,246.000000,396.000000,231.000000,2.839300,375000.000000\\n', '-119.720000,36.820000,15.000000,946.000000,239.000000,550.000000,246.000000,2.263900,52500.000000\\n', '-118.140000,34.010000,42.000000,1973.000000,510.000000,1841.000000,502.000000,2.532600,156500.000000\\n', '-117.120000,32.750000,25.000000,2222.000000,634.000000,1025.000000,568.000000,1.640000,130000.000000\\n', '-117.900000,34.130000,37.000000,1801.000000,422.000000,1564.000000,425.000000,3.159700,133000.000000\\n', '-117.390000,33.690000,5.000000,6529.000000,997.000000,3464.000000,1006.000000,5.327500,168700.000000\\n', '-122.450000,40.610000,17.000000,785.000000,155.000000,417.000000,136.000000,2.328900,58200.000000\\n', '-117.120000,34.210000,19.000000,4641.000000,994.000000,1334.000000,474.000000,4.597200,123900.000000\\n', '-122.760000,38.460000,14.000000,4742.000000,756.000000,2149.000000,732.000000,4.515200,199200.000000\\n', '-118.190000,34.120000,46.000000,3387.000000,820.000000,2833.000000,813.000000,2.987000,176900.000000\\n', '-118.310000,34.060000,36.000000,369.000000,147.000000,145.000000,136.000000,0.880400,450000.000000\\n', '-122.340000,37.950000,45.000000,1128.000000,240.000000,702.000000,270.000000,3.671900,134100.000000\\n', '-118.220000,34.660000,17.000000,3810.000000,662.000000,1867.000000,586.000000,4.900000,152400.000000\\n', '-118.290000,34.050000,40.000000,907.000000,349.000000,1426.000000,323.000000,1.857100,143800.000000\\n', '-117.960000,33.870000,37.000000,1785.000000,360.000000,1155.000000,403.000000,4.798400,175800.000000\\n', '-119.570000,34.380000,22.000000,2512.000000,426.000000,919.000000,341.000000,5.759000,425000.000000\\n', '-118.280000,33.750000,41.000000,1305.000000,381.000000,1384.000000,369.000000,2.450000,186800.000000\\n', '-121.890000,38.010000,32.000000,1000.000000,188.000000,663.000000,212.000000,4.097200,99200.000000\\n', '-118.130000,34.160000,52.000000,1872.000000,357.000000,984.000000,364.000000,4.000000,250400.000000\\n', '-118.040000,34.180000,37.000000,3134.000000,532.000000,1220.000000,508.000000,5.286500,455400.000000\\n', '-123.220000,39.160000,32.000000,1149.000000,187.000000,499.000000,208.000000,3.658700,154600.000000\\n', '-120.690000,38.440000,13.000000,1473.000000,265.000000,597.000000,228.000000,4.291700,121300.000000\\n', '-118.040000,33.800000,33.000000,2685.000000,466.000000,1359.000000,476.000000,5.026100,245100.000000\\n', '-119.800000,36.730000,45.000000,925.000000,231.000000,797.000000,228.000000,1.701100,44800.000000\\n', '-117.490000,33.910000,17.000000,5364.000000,1020.000000,3754.000000,936.000000,3.285700,139100.000000\\n', '-118.340000,34.010000,37.000000,4291.000000,1102.000000,1941.000000,953.000000,1.794500,106300.000000\\n', '-118.370000,34.190000,41.000000,2924.000000,867.000000,2751.000000,836.000000,2.100000,171600.000000\\n', '-117.270000,34.450000,8.000000,6463.000000,1095.000000,3213.000000,1031.000000,3.221500,108800.000000\\n', '-120.450000,34.870000,4.000000,1533.000000,221.000000,545.000000,191.000000,7.569600,328700.000000\\n', '-122.320000,37.520000,26.000000,4042.000000,591.000000,1611.000000,578.000000,8.469300,419200.000000\\n', '-121.420000,38.490000,17.000000,13180.000000,2444.000000,7235.000000,2335.000000,3.363000,103000.000000\\n', '-115.570000,32.780000,29.000000,2321.000000,367.000000,1173.000000,360.000000,4.037500,86400.000000\\n', '-118.470000,33.990000,52.000000,2167.000000,622.000000,1095.000000,570.000000,2.851400,358700.000000\\n', '-118.270000,33.960000,42.000000,796.000000,203.000000,697.000000,177.000000,2.037000,92600.000000\\n', '-118.050000,33.900000,41.000000,550.000000,129.000000,642.000000,125.000000,1.875000,119900.000000\\n', '-118.960000,35.400000,28.000000,4667.000000,875.000000,2404.000000,841.000000,3.232500,89000.000000\\n', '-117.130000,32.980000,5.000000,2276.000000,311.000000,1158.000000,317.000000,6.432100,271900.000000\\n', '-122.040000,37.610000,36.000000,1151.000000,216.000000,727.000000,215.000000,4.171900,187000.000000\\n', '-116.580000,33.090000,36.000000,992.000000,224.000000,334.000000,126.000000,3.008900,134400.000000\\n', '-121.980000,38.250000,4.000000,2487.000000,440.000000,1545.000000,452.000000,4.910300,140400.000000\\n', '-122.300000,37.920000,32.000000,3943.000000,605.000000,1524.000000,614.000000,6.067700,321600.000000\\n', '-121.570000,39.480000,15.000000,202.000000,54.000000,145.000000,40.000000,0.825200,42500.000000\\n', '-118.090000,33.920000,36.000000,847.000000,185.000000,713.000000,194.000000,4.854200,167400.000000\\n', '-117.710000,33.610000,25.000000,3004.000000,718.000000,891.000000,626.000000,2.395000,80300.000000\\n', '-118.210000,33.900000,41.000000,941.000000,233.000000,973.000000,253.000000,1.958300,102300.000000\\n', '-118.290000,34.170000,52.000000,1732.000000,305.000000,875.000000,311.000000,4.325000,292600.000000\\n', '-118.950000,35.400000,23.000000,4483.000000,894.000000,2136.000000,883.000000,3.687500,101700.000000\\n', '-117.410000,34.230000,17.000000,889.000000,131.000000,439.000000,141.000000,6.142600,155000.000000\\n', '-121.920000,36.570000,42.000000,3944.000000,738.000000,1374.000000,598.000000,4.174000,394400.000000\\n', '-121.640000,39.150000,15.000000,2659.000000,396.000000,1159.000000,407.000000,5.234000,124900.000000\\n', '-120.920000,37.630000,39.000000,45.000000,8.000000,22.000000,9.000000,1.767900,450000.000000\\n', '-122.270000,37.840000,52.000000,1688.000000,337.000000,853.000000,325.000000,2.180600,99700.000000\\n', '-118.270000,34.100000,51.000000,3149.000000,519.000000,1082.000000,510.000000,6.445900,421600.000000\\n', '-121.810000,37.240000,21.000000,3250.000000,610.000000,1978.000000,568.000000,4.500000,234400.000000\\n', '-114.620000,33.620000,26.000000,18.000000,3.000000,5.000000,3.000000,0.536000,275000.000000\\n', '-118.090000,34.710000,5.000000,5807.000000,1182.000000,2602.000000,1007.000000,2.401200,159400.000000\\n', '-118.200000,34.020000,48.000000,2230.000000,593.000000,2419.000000,598.000000,2.394400,130700.000000\\n', '-119.620000,36.590000,17.000000,2287.000000,390.000000,1330.000000,393.000000,4.019700,88000.000000\\n', '-118.410000,34.190000,42.000000,779.000000,145.000000,450.000000,148.000000,3.979200,193800.000000\\n', '-118.300000,33.980000,48.000000,1998.000000,410.000000,1176.000000,382.000000,3.045500,102400.000000\\n', '-117.330000,34.120000,38.000000,1703.000000,385.000000,1356.000000,363.000000,2.039100,70400.000000\\n', '-118.500000,34.020000,28.000000,5109.000000,1482.000000,2313.000000,1451.000000,3.326600,483300.000000\\n', '-118.070000,33.920000,36.000000,1560.000000,320.000000,1348.000000,314.000000,3.622000,174000.000000\\n', '-117.130000,32.580000,27.000000,2511.000000,615.000000,1427.000000,576.000000,3.164500,156000.000000\\n', '-117.270000,34.490000,7.000000,2344.000000,351.000000,846.000000,314.000000,4.736100,174500.000000\\n', '-121.450000,38.600000,44.000000,2324.000000,413.000000,823.000000,375.000000,4.662500,158900.000000\\n', '-121.980000,37.220000,46.000000,10088.000000,1910.000000,3728.000000,1781.000000,5.232100,500001.000000\\n', '-120.310000,36.650000,24.000000,943.000000,209.000000,514.000000,156.000000,2.250000,76600.000000\\n', '-117.950000,33.840000,32.000000,1378.000000,492.000000,1202.000000,448.000000,3.402800,183700.000000\\n', '-119.700000,36.800000,34.000000,1768.000000,303.000000,888.000000,314.000000,3.808800,87700.000000\\n', '-121.880000,37.430000,17.000000,3469.000000,896.000000,2762.000000,808.000000,3.388400,245800.000000\\n', '-118.430000,34.260000,37.000000,1269.000000,348.000000,1835.000000,335.000000,3.258300,147200.000000\\n', '-121.890000,37.350000,48.000000,1562.000000,439.000000,1469.000000,424.000000,2.567300,177500.000000\\n', '-121.330000,38.040000,15.000000,2903.000000,440.000000,1325.000000,423.000000,4.517900,145600.000000\\n', '-123.730000,39.170000,20.000000,4620.000000,1042.000000,1745.000000,794.000000,2.375000,158800.000000\\n', '-118.040000,33.970000,34.000000,1759.000000,431.000000,1282.000000,391.000000,3.049100,158200.000000\\n', '-118.150000,34.190000,48.000000,1854.000000,360.000000,1126.000000,382.000000,3.221600,161600.000000\\n', '-118.110000,34.020000,17.000000,9559.000000,1911.000000,5279.000000,1844.000000,5.151500,318900.000000\\n', '-121.200000,38.670000,10.000000,3875.000000,668.000000,1632.000000,593.000000,4.690200,171000.000000\\n', '-118.390000,34.120000,29.000000,6447.000000,1012.000000,2184.000000,960.000000,8.281600,500001.000000\\n', '-118.370000,34.060000,52.000000,2239.000000,423.000000,832.000000,411.000000,5.085800,470000.000000\\n', '-118.520000,34.200000,35.000000,2891.000000,594.000000,1757.000000,581.000000,4.357100,199800.000000\\n', '-118.370000,33.950000,52.000000,836.000000,175.000000,747.000000,166.000000,4.125000,174000.000000\\n', '-121.340000,37.980000,8.000000,2628.000000,428.000000,1158.000000,393.000000,5.300200,191700.000000\\n', '-119.320000,36.190000,11.000000,3136.000000,620.000000,2013.000000,583.000000,3.335000,69700.000000\\n', '-117.840000,34.040000,4.000000,9959.000000,1544.000000,4904.000000,1429.000000,6.975400,402500.000000\\n', '-118.230000,34.150000,19.000000,2294.000000,716.000000,1686.000000,680.000000,3.028800,258300.000000\\n', '-115.520000,32.980000,21.000000,1302.000000,327.000000,1244.000000,316.000000,2.205400,66400.000000\\n', '-117.790000,34.070000,34.000000,975.000000,192.000000,870.000000,183.000000,3.793300,116100.000000\\n', '-115.590000,32.960000,17.000000,841.000000,146.000000,473.000000,154.000000,3.197900,113500.000000\\n', '-121.830000,37.300000,17.000000,1299.000000,211.000000,825.000000,217.000000,4.500000,235800.000000\\n', '-117.270000,34.500000,8.000000,3567.000000,543.000000,1133.000000,419.000000,5.373300,302600.000000\\n', '-118.040000,33.930000,35.000000,1805.000000,387.000000,1505.000000,366.000000,4.166700,151900.000000\\n', '-122.090000,37.950000,32.000000,1339.000000,209.000000,601.000000,209.000000,6.026500,247900.000000\\n', '-122.230000,37.750000,50.000000,1542.000000,289.000000,654.000000,268.000000,3.963200,240000.000000\\n', '-117.880000,33.720000,38.000000,1421.000000,300.000000,1236.000000,263.000000,3.984400,165300.000000\\n', '-122.420000,37.750000,52.000000,2164.000000,533.000000,1122.000000,469.000000,3.263200,306000.000000\\n', '-118.050000,34.140000,39.000000,2125.000000,295.000000,862.000000,303.000000,8.972800,500001.000000\\n', '-118.060000,34.110000,36.000000,2178.000000,485.000000,914.000000,412.000000,2.765600,239500.000000\\n', '-118.150000,33.870000,33.000000,2373.000000,552.000000,1673.000000,571.000000,3.068500,181800.000000\\n', '-117.250000,32.760000,38.000000,2331.000000,493.000000,836.000000,433.000000,4.912500,452600.000000\\n', '-117.860000,33.740000,34.000000,2254.000000,630.000000,2984.000000,625.000000,2.500000,162500.000000\\n', '-122.530000,39.090000,11.000000,1264.000000,271.000000,370.000000,177.000000,1.300000,69700.000000\\n', '-117.970000,33.680000,23.000000,1722.000000,316.000000,865.000000,309.000000,4.645200,273800.000000\\n', '-118.060000,34.030000,36.000000,21.000000,7.000000,21.000000,9.000000,2.375000,175000.000000\\n', '-117.820000,33.740000,25.000000,2720.000000,680.000000,1559.000000,631.000000,3.095800,137800.000000\\n', '-121.800000,37.700000,22.000000,5533.000000,943.000000,2474.000000,910.000000,4.736100,216800.000000\\n', '-121.730000,36.850000,22.000000,1304.000000,278.000000,887.000000,227.000000,3.660700,206300.000000\\n', '-118.320000,33.860000,34.000000,495.000000,90.000000,269.000000,93.000000,6.439100,252300.000000\\n', '-118.280000,34.040000,24.000000,1283.000000,545.000000,1932.000000,516.000000,1.296900,160200.000000\\n', '-117.030000,32.950000,19.000000,4500.000000,815.000000,2456.000000,782.000000,4.503200,168900.000000\\n', '-117.870000,33.830000,27.000000,2287.000000,353.000000,1140.000000,351.000000,5.616300,231000.000000\\n', '-122.090000,37.650000,35.000000,1130.000000,192.000000,543.000000,184.000000,4.389700,190600.000000\\n', '-117.600000,34.030000,16.000000,1499.000000,232.000000,918.000000,239.000000,5.567700,175400.000000\\n', '-121.460000,38.610000,43.000000,1111.000000,269.000000,613.000000,290.000000,1.291700,66300.000000\\n', '-117.960000,34.530000,10.000000,2907.000000,559.000000,1681.000000,531.000000,3.859400,141000.000000\\n', '-116.460000,33.790000,10.000000,6960.000000,1487.000000,1130.000000,661.000000,2.141100,136400.000000\\n', '-118.540000,34.370000,27.000000,2051.000000,301.000000,917.000000,287.000000,7.605900,323700.000000\\n', '-122.160000,37.450000,52.000000,1135.000000,219.000000,441.000000,200.000000,7.541800,492000.000000\\n', '-117.710000,34.060000,27.000000,2127.000000,628.000000,1970.000000,534.000000,1.472200,91300.000000\\n', '-118.290000,34.030000,42.000000,907.000000,378.000000,822.000000,288.000000,1.287500,179200.000000\\n', '-118.180000,33.900000,32.000000,1452.000000,365.000000,1888.000000,366.000000,3.546100,146400.000000\\n', '-121.360000,38.690000,13.000000,6850.000000,1400.000000,4251.000000,1421.000000,3.698900,93300.000000\\n', '-122.370000,40.520000,18.000000,4547.000000,774.000000,2269.000000,766.000000,3.789600,98100.000000\\n', '-122.410000,37.710000,49.000000,1852.000000,429.000000,1615.000000,447.000000,3.495000,217800.000000\\n', '-118.530000,34.240000,24.000000,2718.000000,719.000000,3018.000000,644.000000,2.907600,275300.000000\\n', '-121.880000,37.670000,16.000000,4070.000000,624.000000,1543.000000,577.000000,6.521400,311500.000000\\n', '-120.090000,37.000000,11.000000,3761.000000,675.000000,2374.000000,673.000000,3.459800,74600.000000\\n', '-117.100000,32.750000,17.000000,871.000000,379.000000,955.000000,351.000000,1.437500,96400.000000\\n', '-119.640000,36.350000,30.000000,1765.000000,310.000000,746.000000,298.000000,2.812500,70200.000000\\n', '-118.260000,33.970000,47.000000,1504.000000,374.000000,1168.000000,358.000000,1.462500,94200.000000\\n', '-117.600000,33.910000,15.000000,1864.000000,271.000000,1006.000000,288.000000,7.237900,251000.000000\\n', '-122.200000,39.510000,37.000000,2358.000000,413.000000,1060.000000,424.000000,2.833300,69700.000000\\n', '-122.120000,37.690000,10.000000,2227.000000,560.000000,1140.000000,472.000000,2.397300,167300.000000\\n', '-118.200000,33.970000,43.000000,825.000000,212.000000,820.000000,184.000000,1.889700,174300.000000\\n', '-121.280000,38.140000,38.000000,2803.000000,500.000000,1223.000000,509.000000,4.119000,128800.000000\\n', '-119.030000,34.230000,16.000000,5323.000000,795.000000,2493.000000,779.000000,5.676200,271300.000000\\n', '-121.700000,38.100000,19.000000,4896.000000,1083.000000,2150.000000,905.000000,3.339800,89700.000000\\n', '-117.960000,33.830000,30.000000,2838.000000,649.000000,1758.000000,593.000000,3.383100,197400.000000\\n', '-120.700000,36.990000,32.000000,320.000000,73.000000,222.000000,78.000000,2.927100,87500.000000\\n', '-122.390000,37.740000,45.000000,1462.000000,308.000000,924.000000,302.000000,2.176700,185300.000000\\n', '-121.760000,38.410000,19.000000,686.000000,107.000000,348.000000,109.000000,3.930600,93800.000000\\n', '-121.350000,38.660000,8.000000,3322.000000,805.000000,1694.000000,774.000000,2.701100,130700.000000\\n', '-118.670000,34.280000,21.000000,4059.000000,598.000000,2133.000000,634.000000,5.694900,235300.000000\\n', '-118.310000,34.100000,33.000000,766.000000,347.000000,918.000000,305.000000,1.705000,350000.000000\\n', '-117.690000,34.040000,5.000000,4459.000000,896.000000,2028.000000,881.000000,4.009600,182600.000000\\n', '-119.600000,36.580000,28.000000,1452.000000,300.000000,919.000000,308.000000,2.828700,73100.000000\\n', '-121.760000,36.750000,21.000000,1141.000000,257.000000,671.000000,195.000000,3.842400,155700.000000\\n', '-117.940000,33.860000,35.000000,1235.000000,227.000000,875.000000,220.000000,4.696400,183100.000000\\n', '-120.860000,37.770000,28.000000,1208.000000,232.000000,535.000000,232.000000,2.352300,94700.000000\\n', '-121.840000,37.350000,22.000000,2914.000000,768.000000,2962.000000,762.000000,2.203100,164000.000000\\n', '-121.070000,38.900000,52.000000,1280.000000,281.000000,523.000000,266.000000,1.737500,122200.000000\\n', '-118.450000,33.960000,24.000000,3097.000000,791.000000,1075.000000,639.000000,5.723000,500001.000000\\n', '-118.290000,34.180000,52.000000,1602.000000,265.000000,667.000000,251.000000,5.049000,323500.000000\\n', '-119.970000,36.440000,18.000000,1128.000000,237.000000,772.000000,220.000000,2.177100,39200.000000\\n', '-121.930000,38.310000,25.000000,185.000000,32.000000,85.000000,32.000000,4.875000,250000.000000\\n', '-118.200000,33.930000,38.000000,1626.000000,307.000000,1280.000000,295.000000,3.531300,146500.000000\\n', '-122.180000,38.230000,21.000000,2475.000000,341.000000,812.000000,308.000000,7.258900,320400.000000\\n', '-118.010000,34.140000,20.000000,3350.000000,831.000000,1816.000000,744.000000,2.835200,161700.000000\\n', '-117.870000,34.130000,32.000000,1741.000000,373.000000,872.000000,333.000000,3.421900,194500.000000\\n', '-118.530000,34.270000,32.000000,1931.000000,298.000000,948.000000,314.000000,5.384700,329200.000000\\n', '-117.140000,32.800000,33.000000,2670.000000,435.000000,1256.000000,431.000000,3.941700,179800.000000\\n', '-118.070000,34.170000,34.000000,4062.000000,597.000000,1525.000000,566.000000,7.858800,454800.000000\\n', '-117.580000,33.880000,16.000000,1739.000000,478.000000,1235.000000,420.000000,2.296900,116100.000000\\n', '-120.060000,36.970000,35.000000,1859.000000,428.000000,1208.000000,399.000000,1.404400,61700.000000\\n', '-121.830000,38.430000,24.000000,1307.000000,314.000000,917.000000,291.000000,2.224400,98100.000000\\n', '-122.480000,37.720000,45.000000,1405.000000,338.000000,733.000000,342.000000,4.111600,187500.000000\\n', '-116.910000,32.750000,5.000000,8710.000000,1614.000000,4372.000000,1527.000000,4.781300,240900.000000\\n', '-119.770000,36.740000,20.000000,1855.000000,519.000000,1091.000000,443.000000,1.554700,93900.000000\\n', '-119.460000,36.910000,12.000000,2980.000000,495.000000,1184.000000,429.000000,3.914100,123900.000000\\n', '-118.180000,33.910000,41.000000,1260.000000,299.000000,1535.000000,322.000000,3.013400,128100.000000\\n', '-118.390000,34.060000,43.000000,1879.000000,397.000000,873.000000,382.000000,3.815800,500001.000000\\n', '-118.220000,33.990000,4.000000,1849.000000,577.000000,1529.000000,418.000000,2.770800,186300.000000\\n', '-116.990000,33.200000,17.000000,2980.000000,539.000000,1531.000000,505.000000,3.155300,250000.000000\\n', '-117.160000,32.730000,52.000000,1863.000000,559.000000,906.000000,493.000000,1.920300,195800.000000\\n', '-117.380000,33.980000,10.000000,642.000000,176.000000,462.000000,186.000000,2.152800,162500.000000\\n', '-122.440000,38.340000,25.000000,3106.000000,715.000000,1262.000000,665.000000,1.948700,233500.000000\\n', '-117.880000,33.920000,13.000000,3292.000000,727.000000,1565.000000,698.000000,5.457000,308800.000000\\n', '-119.710000,34.440000,41.000000,2220.000000,367.000000,927.000000,355.000000,5.318400,376000.000000\\n', '-119.060000,34.370000,32.000000,3885.000000,759.000000,2504.000000,736.000000,3.645300,201700.000000\\n', '-121.910000,37.310000,16.000000,2962.000000,898.000000,1555.000000,795.000000,2.580400,216300.000000\\n', '-121.560000,37.000000,20.000000,3976.000000,953.000000,3866.000000,950.000000,2.538700,160100.000000\\n', '-122.490000,38.000000,26.000000,48.000000,8.000000,19.000000,8.000000,7.719700,400000.000000\\n', '-118.330000,34.020000,45.000000,1667.000000,399.000000,928.000000,375.000000,1.878300,118200.000000\\n', '-122.260000,37.510000,29.000000,3703.000000,1075.000000,1611.000000,1025.000000,2.707500,323800.000000\\n', '-121.990000,37.830000,16.000000,2939.000000,380.000000,1177.000000,396.000000,8.083900,372000.000000\\n', '-121.420000,37.740000,35.000000,796.000000,132.000000,313.000000,152.000000,3.150000,153200.000000\\n', '-121.390000,38.610000,35.000000,2024.000000,359.000000,786.000000,364.000000,2.463200,156900.000000\\n', '-122.420000,37.620000,36.000000,1017.000000,165.000000,407.000000,159.000000,4.800000,306800.000000\\n', '-121.440000,38.480000,12.000000,4929.000000,1010.000000,2621.000000,870.000000,2.726200,109800.000000\\n', '-117.480000,33.980000,20.000000,2451.000000,475.000000,1785.000000,456.000000,3.396600,115000.000000\\n', '-122.050000,37.380000,24.000000,2424.000000,501.000000,1367.000000,507.000000,4.072000,364200.000000\\n', '-123.920000,41.540000,22.000000,2920.000000,636.000000,1382.000000,499.000000,2.020200,71100.000000\\n', '-119.010000,35.400000,11.000000,8739.000000,2190.000000,4781.000000,1919.000000,1.710900,44600.000000\\n', '-122.330000,37.570000,43.000000,2543.000000,621.000000,1301.000000,606.000000,3.111100,318400.000000\\n', '-120.990000,37.610000,39.000000,512.000000,132.000000,443.000000,127.000000,1.285700,60000.000000\\n', '-121.960000,37.580000,15.000000,3575.000000,597.000000,1777.000000,559.000000,5.719200,283500.000000\\n', '-121.580000,39.160000,33.000000,1897.000000,378.000000,888.000000,385.000000,2.111100,68700.000000\\n', '-120.590000,38.530000,15.000000,432.000000,87.000000,208.000000,73.000000,3.612500,100000.000000\\n', '-117.580000,33.870000,30.000000,701.000000,131.000000,356.000000,125.000000,3.291700,144300.000000\\n', '-121.840000,39.750000,29.000000,4362.000000,1053.000000,2053.000000,1000.000000,1.728400,74500.000000\\n', '-121.800000,36.690000,12.000000,3877.000000,914.000000,2274.000000,858.000000,3.423900,194800.000000\\n', '-122.220000,37.810000,52.000000,2944.000000,536.000000,1034.000000,521.000000,5.350900,302100.000000\\n', '-117.640000,33.450000,26.000000,1528.000000,234.000000,607.000000,218.000000,6.287100,325500.000000\\n', '-120.420000,37.980000,18.000000,3059.000000,609.000000,1335.000000,581.000000,2.512900,115900.000000\\n', '-118.300000,34.060000,47.000000,1390.000000,872.000000,2860.000000,827.000000,1.468000,137500.000000\\n', '-122.250000,37.870000,52.000000,1204.000000,460.000000,2016.000000,477.000000,0.949000,350000.000000\\n', '-120.270000,39.350000,11.000000,2520.000000,401.000000,397.000000,165.000000,4.665000,145600.000000\\n', '-119.880000,36.930000,12.000000,3174.000000,520.000000,1590.000000,488.000000,4.534700,101200.000000\\n', '-122.370000,37.580000,52.000000,2188.000000,361.000000,917.000000,357.000000,4.400000,500000.000000\\n', '-117.820000,33.720000,24.000000,3260.000000,458.000000,1383.000000,442.000000,6.598700,272800.000000\\n', '-118.220000,33.930000,30.000000,443.000000,170.000000,903.000000,189.000000,2.196400,125000.000000\\n', '-120.970000,38.650000,9.000000,3707.000000,602.000000,1601.000000,555.000000,4.071400,300600.000000\\n', '-122.060000,37.700000,33.000000,3906.000000,790.000000,1912.000000,770.000000,3.518700,209400.000000\\n', '-118.230000,33.920000,32.000000,2698.000000,640.000000,1953.000000,613.000000,1.222200,107200.000000\\n', '-117.340000,34.460000,9.000000,5983.000000,1122.000000,3515.000000,1064.000000,3.150500,102000.000000\\n', '-119.240000,36.330000,9.000000,3289.000000,621.000000,1866.000000,631.000000,3.159900,95000.000000\\n', '-122.180000,37.730000,42.000000,4074.000000,874.000000,2736.000000,780.000000,2.455000,82400.000000\\n', '-118.200000,33.820000,43.000000,1758.000000,347.000000,954.000000,312.000000,5.260600,198900.000000\\n', '-117.070000,32.810000,15.000000,2000.000000,402.000000,778.000000,369.000000,4.359400,224200.000000\\n', '-122.250000,38.020000,16.000000,1803.000000,267.000000,946.000000,266.000000,5.700100,205100.000000\\n', '-118.420000,34.310000,19.000000,6755.000000,1443.000000,4205.000000,1395.000000,3.958300,163200.000000\\n', '-122.270000,37.850000,52.000000,1966.000000,347.000000,793.000000,331.000000,2.775000,152500.000000\\n', '-117.920000,33.650000,28.000000,1087.000000,423.000000,807.000000,425.000000,0.970200,225400.000000\\n', '-118.160000,34.130000,36.000000,4003.000000,647.000000,1337.000000,631.000000,7.723000,500001.000000\\n', '-122.490000,37.690000,35.000000,2576.000000,443.000000,1273.000000,433.000000,4.739100,272800.000000\\n', '-122.480000,38.310000,29.000000,2375.000000,560.000000,1124.000000,502.000000,2.327600,166200.000000\\n', '-117.670000,34.020000,16.000000,3042.000000,524.000000,1516.000000,475.000000,4.890600,178500.000000\\n', '-117.150000,32.910000,14.000000,1259.000000,238.000000,889.000000,247.000000,4.946400,174800.000000\\n', '-118.340000,34.030000,46.000000,2437.000000,502.000000,1151.000000,477.000000,2.444400,134100.000000\\n', '-121.540000,38.500000,15.000000,6093.000000,1051.000000,2415.000000,997.000000,4.207500,183600.000000\\n', '-118.150000,33.970000,32.000000,1174.000000,373.000000,1758.000000,361.000000,2.426300,158100.000000\\n', '-122.540000,38.140000,16.000000,4431.000000,603.000000,1659.000000,630.000000,7.541200,392100.000000\\n', '-118.010000,33.880000,19.000000,1434.000000,391.000000,1088.000000,341.000000,3.369000,269600.000000\\n', '-117.680000,35.620000,30.000000,2994.000000,741.000000,1481.000000,581.000000,2.145800,52400.000000\\n', '-120.640000,35.260000,21.000000,3298.000000,716.000000,1862.000000,687.000000,2.150700,221500.000000\\n', '-121.290000,38.100000,14.000000,1551.000000,297.000000,785.000000,281.000000,3.775000,163300.000000\\n', '-120.190000,37.530000,25.000000,1470.000000,341.000000,706.000000,283.000000,1.761400,71300.000000\\n', '-117.310000,34.100000,28.000000,2899.000000,755.000000,2406.000000,655.000000,1.520800,69500.000000\\n', '-118.090000,33.870000,31.000000,3498.000000,728.000000,2098.000000,697.000000,3.983700,246000.000000\\n', '-117.990000,34.120000,37.000000,1527.000000,331.000000,1504.000000,324.000000,3.285700,130100.000000\\n', '-119.810000,34.470000,26.000000,4382.000000,618.000000,1728.000000,587.000000,7.473400,432200.000000\\n', '-116.960000,33.520000,9.000000,2802.000000,471.000000,1155.000000,421.000000,4.125000,392100.000000\\n', '-122.310000,37.570000,37.000000,1437.000000,305.000000,979.000000,331.000000,4.000000,273700.000000\\n', '-117.390000,33.970000,52.000000,3307.000000,553.000000,1269.000000,529.000000,4.317600,136200.000000\\n', '-118.510000,34.190000,38.000000,2182.000000,409.000000,1141.000000,379.000000,4.286500,221100.000000\\n', '-117.300000,34.120000,34.000000,1127.000000,275.000000,971.000000,249.000000,2.058300,64800.000000\\n', '-120.850000,37.510000,15.000000,1131.000000,285.000000,728.000000,281.000000,1.553100,93100.000000\\n', '-121.310000,37.930000,21.000000,1556.000000,314.000000,1140.000000,304.000000,2.466700,81400.000000\\n', '-118.160000,34.090000,33.000000,1515.000000,415.000000,1345.000000,346.000000,2.375000,175000.000000\\n', '-118.030000,33.840000,30.000000,4781.000000,831.000000,2568.000000,797.000000,5.474600,226400.000000\\n', '-119.880000,34.400000,25.000000,2741.000000,623.000000,2272.000000,624.000000,2.264700,216700.000000\\n', '-118.570000,34.170000,35.000000,2072.000000,318.000000,908.000000,342.000000,6.092800,327300.000000\\n', '-122.110000,37.140000,29.000000,3201.000000,640.000000,1722.000000,570.000000,4.459700,204100.000000\\n', '-122.430000,37.760000,52.000000,2332.000000,434.000000,861.000000,406.000000,4.431800,437500.000000\\n', '-118.270000,33.960000,38.000000,1126.000000,270.000000,999.000000,265.000000,0.549500,91700.000000\\n', '-117.160000,33.760000,11.000000,4934.000000,929.000000,2508.000000,840.000000,2.625000,155400.000000\\n', '-122.070000,37.890000,38.000000,2139.000000,343.000000,809.000000,340.000000,5.563600,268800.000000\\n', '-117.090000,34.010000,37.000000,106.000000,18.000000,27.000000,12.000000,4.055600,131300.000000\\n', '-122.310000,37.920000,12.000000,1895.000000,600.000000,983.000000,519.000000,2.500000,195800.000000\\n', '-122.190000,37.730000,44.000000,1066.000000,253.000000,825.000000,244.000000,2.153800,79700.000000\\n', '-117.000000,32.730000,17.000000,6050.000000,1143.000000,3424.000000,1131.000000,3.764700,127600.000000\\n', '-117.210000,33.190000,21.000000,3765.000000,612.000000,1722.000000,593.000000,4.815200,218500.000000\\n', '-118.260000,34.140000,51.000000,902.000000,320.000000,650.000000,334.000000,1.541700,268800.000000\\n', '-122.100000,37.360000,35.000000,2063.000000,266.000000,676.000000,252.000000,8.529400,500001.000000\\n', '-121.860000,36.600000,33.000000,1409.000000,307.000000,633.000000,290.000000,3.556800,191200.000000\\n', '-117.240000,33.110000,10.000000,3487.000000,545.000000,1410.000000,557.000000,6.033600,240300.000000\\n', '-116.370000,33.720000,19.000000,6190.000000,1355.000000,2242.000000,1043.000000,3.002100,152300.000000\\n', '-121.320000,38.410000,17.000000,4401.000000,655.000000,1970.000000,639.000000,5.823900,247500.000000\\n', '-118.700000,34.280000,27.000000,3536.000000,646.000000,1837.000000,580.000000,4.496400,238300.000000\\n', '-118.150000,33.950000,31.000000,1053.000000,230.000000,686.000000,211.000000,4.000000,263200.000000\\n', '-118.300000,33.730000,47.000000,2852.000000,603.000000,1130.000000,560.000000,4.194000,293900.000000\\n', '-118.520000,34.190000,37.000000,1892.000000,347.000000,1039.000000,343.000000,4.829500,212100.000000\\n', '-118.220000,33.990000,6.000000,1499.000000,437.000000,1754.000000,447.000000,4.316400,143200.000000\\n', '-122.410000,37.650000,32.000000,3436.000000,868.000000,2583.000000,817.000000,3.503900,232400.000000\\n', '-122.300000,37.890000,46.000000,1520.000000,402.000000,815.000000,375.000000,2.803600,211600.000000\\n', '-121.430000,38.560000,50.000000,1533.000000,288.000000,532.000000,257.000000,2.541700,125900.000000\\n', '-117.230000,32.860000,16.000000,1200.000000,468.000000,648.000000,443.000000,3.045000,100000.000000\\n', '-117.230000,32.790000,23.000000,2578.000000,665.000000,989.000000,622.000000,3.548400,238000.000000\\n', '-117.160000,32.720000,52.000000,788.000000,463.000000,805.000000,391.000000,0.914200,162500.000000\\n', '-122.410000,37.660000,34.000000,1075.000000,318.000000,906.000000,294.000000,3.005200,242500.000000\\n', '-117.230000,32.730000,36.000000,2052.000000,287.000000,699.000000,265.000000,7.555700,441400.000000\\n', '-118.330000,34.000000,47.000000,1671.000000,388.000000,895.000000,317.000000,2.205400,121500.000000\\n', '-117.430000,33.550000,8.000000,446.000000,62.000000,188.000000,68.000000,9.435600,465600.000000\\n', '-118.360000,34.080000,52.000000,1965.000000,480.000000,794.000000,451.000000,3.282400,304800.000000\\n', '-121.090000,38.970000,13.000000,1467.000000,221.000000,688.000000,231.000000,5.253600,191900.000000\\n', '-119.450000,35.150000,33.000000,5050.000000,964.000000,2293.000000,919.000000,3.159200,75400.000000\\n', '-121.270000,38.640000,22.000000,1597.000000,280.000000,657.000000,273.000000,4.309800,213500.000000\\n', '-118.000000,33.900000,35.000000,1758.000000,309.000000,972.000000,338.000000,4.383100,209800.000000\\n', '-118.210000,34.050000,45.000000,2146.000000,607.000000,2868.000000,625.000000,2.121000,144000.000000\\n', '-122.500000,37.770000,52.000000,2299.000000,441.000000,1252.000000,415.000000,5.056200,336700.000000\\n', '-122.310000,37.920000,38.000000,1250.000000,236.000000,631.000000,279.000000,3.724000,220100.000000\\n', '-118.300000,34.000000,40.000000,1131.000000,281.000000,859.000000,230.000000,1.180600,134600.000000\\n', '-121.840000,38.020000,46.000000,66.000000,22.000000,37.000000,21.000000,0.536000,87500.000000\\n', '-117.250000,32.800000,30.000000,2061.000000,631.000000,1007.000000,577.000000,2.581300,253100.000000\\n', '-124.140000,40.600000,27.000000,1148.000000,206.000000,521.000000,219.000000,4.025000,128100.000000\\n', '-118.180000,34.050000,52.000000,1070.000000,231.000000,925.000000,220.000000,1.825000,133000.000000\\n', '-119.780000,36.800000,34.000000,3426.000000,623.000000,1938.000000,647.000000,2.899400,66000.000000\\n', '-122.220000,38.080000,37.000000,2811.000000,539.000000,1574.000000,516.000000,3.105300,96700.000000\\n', '-118.500000,34.260000,33.000000,2831.000000,510.000000,1340.000000,504.000000,4.831600,237300.000000\\n', '-118.450000,34.180000,34.000000,1843.000000,442.000000,861.000000,417.000000,3.687500,246400.000000\\n', '-119.790000,36.310000,25.000000,4984.000000,1029.000000,2414.000000,961.000000,2.293700,72300.000000\\n', '-117.210000,32.740000,45.000000,3025.000000,583.000000,1980.000000,550.000000,2.298200,87500.000000\\n', '-122.080000,40.640000,14.000000,3099.000000,519.000000,1447.000000,494.000000,4.013200,141200.000000\\n', '-122.310000,37.520000,24.000000,2328.000000,335.000000,969.000000,354.000000,7.736400,435800.000000\\n', '-119.740000,36.760000,36.000000,912.000000,216.000000,842.000000,219.000000,1.476600,52800.000000\\n', '-118.280000,34.010000,52.000000,795.000000,308.000000,1118.000000,275.000000,1.217500,131300.000000\\n', '-118.270000,34.110000,39.000000,3825.000000,916.000000,1378.000000,746.000000,4.409400,352600.000000\\n', '-117.200000,33.160000,13.000000,4503.000000,1137.000000,3094.000000,1091.000000,2.315900,91600.000000\\n', '-122.330000,37.530000,25.000000,1729.000000,383.000000,769.000000,352.000000,4.041700,458500.000000\\n', '-120.860000,35.400000,21.000000,2787.000000,641.000000,1106.000000,501.000000,2.704300,186200.000000\\n', '-119.470000,35.400000,32.000000,2167.000000,421.000000,1301.000000,394.000000,1.971800,69800.000000\\n', '-117.270000,34.160000,32.000000,2894.000000,427.000000,1151.000000,446.000000,6.223600,159700.000000\\n', '-121.920000,38.020000,8.000000,2750.000000,479.000000,1526.000000,484.000000,5.102000,156500.000000\\n', '-121.450000,38.560000,51.000000,1250.000000,235.000000,452.000000,232.000000,2.625000,121200.000000\\n', '-117.910000,33.840000,16.000000,919.000000,253.000000,912.000000,249.000000,1.590300,165400.000000\\n', '-118.480000,35.610000,17.000000,4002.000000,930.000000,1614.000000,731.000000,1.623600,67300.000000\\n', '-118.030000,33.840000,28.000000,3857.000000,857.000000,2328.000000,830.000000,4.015600,196000.000000\\n', '-118.320000,34.040000,48.000000,1184.000000,328.000000,953.000000,311.000000,2.352600,156300.000000\\n', '-121.300000,38.890000,23.000000,1750.000000,297.000000,1012.000000,315.000000,3.470600,99300.000000\\n', '-117.690000,34.070000,34.000000,4055.000000,739.000000,2470.000000,753.000000,3.858600,136000.000000\\n', '-118.340000,33.940000,36.000000,2796.000000,1041.000000,4033.000000,944.000000,2.488600,160700.000000\\n', '-121.920000,36.620000,52.000000,2584.000000,599.000000,790.000000,444.000000,2.526300,286400.000000\\n', '-122.110000,37.410000,27.000000,5110.000000,1599.000000,2764.000000,1482.000000,3.419800,351900.000000\\n', '-117.650000,34.100000,44.000000,2808.000000,585.000000,1444.000000,550.000000,2.715900,139300.000000\\n', '-121.800000,38.010000,44.000000,3184.000000,581.000000,1399.000000,548.000000,2.723400,110200.000000\\n', '-122.660000,38.810000,22.000000,852.000000,176.000000,461.000000,142.000000,3.437500,83300.000000\\n', '-122.390000,37.780000,3.000000,3464.000000,1179.000000,1441.000000,919.000000,4.710500,275000.000000\\n', '-117.060000,34.870000,14.000000,3348.000000,619.000000,1756.000000,557.000000,3.598700,91400.000000\\n', '-121.340000,38.660000,16.000000,3154.000000,860.000000,1837.000000,793.000000,1.980500,92900.000000\\n', '-121.920000,36.950000,29.000000,3457.000000,699.000000,1327.000000,563.000000,3.659700,252300.000000\\n', '-122.590000,38.040000,25.000000,3412.000000,455.000000,1238.000000,406.000000,8.364600,397300.000000\\n', '-118.280000,34.110000,46.000000,1156.000000,203.000000,514.000000,213.000000,4.201900,352100.000000\\n', '-121.390000,38.600000,22.000000,5773.000000,1320.000000,2607.000000,1250.000000,2.523800,118800.000000\\n', '-122.330000,40.520000,23.000000,2801.000000,507.000000,1318.000000,454.000000,3.508100,116700.000000\\n', '-118.200000,34.040000,47.000000,1894.000000,408.000000,1629.000000,379.000000,3.761900,127600.000000\\n', '-121.960000,37.000000,20.000000,3847.000000,727.000000,1725.000000,737.000000,3.344700,305200.000000\\n', '-117.890000,33.870000,32.000000,1569.000000,422.000000,835.000000,386.000000,3.046500,148900.000000\\n', '-117.230000,32.880000,18.000000,5566.000000,1465.000000,6303.000000,1458.000000,1.858000,205000.000000\\n', '-122.000000,37.120000,17.000000,4413.000000,672.000000,1674.000000,608.000000,6.977200,383300.000000\\n', '-118.400000,34.280000,22.000000,3517.000000,810.000000,3134.000000,847.000000,2.665200,164800.000000\\n', '-122.460000,37.760000,52.000000,2236.000000,545.000000,1186.000000,532.000000,3.453100,414300.000000\\n', '-121.990000,37.540000,18.000000,3584.000000,715.000000,1673.000000,661.000000,3.944400,240100.000000\\n', '-117.230000,32.740000,16.000000,735.000000,139.000000,299.000000,134.000000,4.635400,179200.000000\\n', '-121.840000,37.290000,4.000000,2937.000000,648.000000,1780.000000,665.000000,4.385100,160400.000000\\n', '-118.150000,34.860000,10.000000,4597.000000,1009.000000,2227.000000,821.000000,2.614900,83500.000000\\n', '-118.330000,33.980000,38.000000,3063.000000,796.000000,2153.000000,721.000000,1.847200,149100.000000\\n', '-120.680000,35.510000,17.000000,1701.000000,298.000000,941.000000,293.000000,4.321800,209100.000000\\n', '-117.950000,33.790000,34.000000,2912.000000,520.000000,1625.000000,501.000000,4.466700,190600.000000\\n', '-117.970000,34.050000,33.000000,1452.000000,268.000000,1274.000000,278.000000,3.656300,162700.000000\\n', '-119.750000,36.870000,3.000000,13802.000000,2244.000000,5226.000000,1972.000000,5.094100,143700.000000\\n', '-122.080000,37.350000,35.000000,1347.000000,207.000000,548.000000,189.000000,7.706800,500001.000000\\n', '-122.320000,37.950000,36.000000,1425.000000,245.000000,573.000000,239.000000,4.350000,185000.000000\\n', '-122.220000,38.100000,38.000000,931.000000,181.000000,566.000000,207.000000,3.022100,93300.000000\\n', '-124.090000,40.550000,24.000000,2978.000000,553.000000,1370.000000,480.000000,2.764400,97300.000000\\n', '-121.500000,38.570000,41.000000,1124.000000,344.000000,807.000000,316.000000,1.471200,94600.000000\\n', '-118.110000,33.910000,19.000000,3056.000000,759.000000,1561.000000,740.000000,3.136900,196900.000000\\n', '-121.230000,37.960000,37.000000,2351.000000,564.000000,1591.000000,549.000000,1.656300,57200.000000\\n', '-121.890000,37.280000,35.000000,2418.000000,375.000000,988.000000,374.000000,6.093600,365400.000000\\n', '-122.480000,37.650000,39.000000,3348.000000,666.000000,1817.000000,668.000000,4.259300,227400.000000\\n', '-118.310000,34.090000,36.000000,2517.000000,842.000000,2446.000000,689.000000,2.152400,187500.000000\\n', '-123.020000,38.810000,35.000000,956.000000,213.000000,488.000000,215.000000,3.025000,140600.000000\\n', '-120.470000,34.650000,32.000000,2193.000000,430.000000,1074.000000,377.000000,2.333300,130200.000000\\n', '-122.100000,37.680000,37.000000,2116.000000,503.000000,1109.000000,448.000000,2.535000,174000.000000\\n', '-122.420000,37.790000,52.000000,3364.000000,1100.000000,2112.000000,1045.000000,2.134300,400000.000000\\n', '-122.640000,41.630000,19.000000,2722.000000,479.000000,1108.000000,430.000000,3.106200,100000.000000\\n', '-118.020000,33.910000,34.000000,2518.000000,429.000000,1309.000000,421.000000,4.786100,210700.000000\\n', '-119.020000,35.360000,48.000000,1833.000000,396.000000,947.000000,363.000000,2.282700,70000.000000\\n', '-121.330000,38.650000,23.000000,2446.000000,523.000000,1132.000000,513.000000,2.626600,198500.000000\\n', '-118.080000,33.950000,32.000000,1962.000000,387.000000,1274.000000,398.000000,4.830400,160600.000000\\n', '-118.080000,33.790000,34.000000,2840.000000,395.000000,1127.000000,396.000000,7.614400,376200.000000\\n', '-118.230000,33.910000,27.000000,1694.000000,393.000000,1890.000000,373.000000,3.034100,89100.000000\\n', '-118.290000,33.750000,37.000000,1319.000000,292.000000,766.000000,285.000000,2.703100,218900.000000\\n', '-118.020000,34.130000,34.000000,1966.000000,319.000000,980.000000,297.000000,7.730700,429000.000000\\n', '-117.890000,33.600000,36.000000,1496.000000,247.000000,441.000000,203.000000,7.816400,500001.000000\\n', '-118.230000,34.650000,17.000000,1827.000000,348.000000,766.000000,335.000000,3.567300,136300.000000\\n', '-118.310000,34.020000,45.000000,1423.000000,278.000000,822.000000,276.000000,2.451900,98100.000000\\n', '-118.070000,33.800000,34.000000,3486.000000,507.000000,1311.000000,503.000000,7.122100,384500.000000\\n', '-118.250000,33.940000,43.000000,1113.000000,378.000000,1305.000000,334.000000,1.143400,91300.000000\\n', '-122.440000,37.710000,52.000000,2711.000000,591.000000,1848.000000,524.000000,3.956700,251500.000000\\n', '-119.750000,34.500000,26.000000,3563.000000,579.000000,1479.000000,575.000000,5.952200,438400.000000\\n', '-117.940000,33.940000,26.000000,1962.000000,540.000000,1236.000000,520.000000,2.215600,145000.000000\\n', '-119.230000,34.170000,18.000000,6171.000000,1490.000000,2164.000000,1210.000000,3.687500,500001.000000\\n', '-118.110000,34.680000,6.000000,7430.000000,1184.000000,3489.000000,1115.000000,5.326700,140100.000000\\n', '-122.470000,37.770000,52.000000,2241.000000,443.000000,1042.000000,377.000000,4.163500,398400.000000\\n', '-120.930000,35.760000,11.000000,8997.000000,1698.000000,1825.000000,756.000000,3.230000,154300.000000\\n', '-118.140000,34.170000,52.000000,2667.000000,486.000000,1681.000000,504.000000,4.052400,173100.000000\\n', '-122.730000,38.460000,14.000000,4042.000000,1298.000000,2323.000000,1158.000000,2.065100,135400.000000\\n', '-117.060000,32.760000,37.000000,2356.000000,476.000000,1231.000000,499.000000,2.965000,155700.000000\\n', '-120.710000,35.500000,12.000000,3098.000000,453.000000,1433.000000,434.000000,5.250800,292900.000000\\n', '-118.310000,34.050000,35.000000,1692.000000,423.000000,1578.000000,406.000000,2.531300,305800.000000\\n', '-119.700000,36.750000,11.000000,3626.000000,779.000000,1819.000000,731.000000,2.495600,87500.000000\\n', '-121.340000,38.640000,17.000000,2761.000000,501.000000,1128.000000,482.000000,3.756200,139700.000000\\n', '-117.910000,34.090000,20.000000,4327.000000,1037.000000,2296.000000,963.000000,3.044100,185400.000000\\n', '-119.760000,36.790000,32.000000,2463.000000,468.000000,1261.000000,486.000000,3.328100,75100.000000\\n', '-120.660000,35.490000,17.000000,4422.000000,945.000000,2307.000000,885.000000,2.828500,171300.000000\\n', '-118.280000,34.080000,42.000000,1618.000000,522.000000,1454.000000,440.000000,3.160700,182000.000000\\n', '-122.540000,37.900000,48.000000,2491.000000,460.000000,937.000000,455.000000,4.437500,370000.000000\\n', '-117.590000,33.880000,13.000000,3239.000000,849.000000,2751.000000,813.000000,2.611100,107000.000000\\n', '-120.470000,34.940000,17.000000,1368.000000,308.000000,642.000000,303.000000,1.863300,109400.000000\\n', '-118.250000,33.930000,42.000000,819.000000,233.000000,899.000000,228.000000,1.134600,85400.000000\\n', '-121.970000,37.290000,25.000000,4096.000000,743.000000,2027.000000,741.000000,5.329400,300300.000000\\n', '-122.010000,36.970000,43.000000,2162.000000,509.000000,1208.000000,464.000000,2.541700,260900.000000\\n', '-122.020000,37.600000,32.000000,1295.000000,295.000000,1097.000000,328.000000,3.238600,149600.000000\\n', '-118.230000,34.090000,49.000000,1638.000000,456.000000,1500.000000,430.000000,2.692300,150000.000000\\n', '-117.170000,34.280000,13.000000,4867.000000,718.000000,780.000000,250.000000,7.199700,253800.000000\\n', '-122.330000,37.390000,52.000000,573.000000,102.000000,232.000000,92.000000,6.226300,500001.000000\\n', '-117.910000,33.600000,37.000000,2088.000000,510.000000,673.000000,390.000000,5.104800,500001.000000\\n', '-117.930000,33.860000,35.000000,931.000000,181.000000,516.000000,174.000000,5.586700,182500.000000\\n', '-119.860000,34.420000,23.000000,1450.000000,642.000000,1258.000000,607.000000,1.179000,225000.000000\\n', '-118.140000,34.060000,27.000000,5257.000000,1082.000000,3496.000000,1036.000000,3.390600,237200.000000\\n', '-119.700000,36.300000,10.000000,956.000000,201.000000,693.000000,220.000000,2.289500,62000.000000\\n', '-117.120000,34.100000,40.000000,96.000000,14.000000,46.000000,14.000000,3.270800,162500.000000\\n', '-119.630000,34.420000,42.000000,1765.000000,263.000000,753.000000,260.000000,8.560800,500001.000000\\n']\n"
- ]
- }
- ],
- "source": [
- "with open(r'/Users/kaylielau/Downloads/python/05_src/data/slides_data/california_housing_test.csv', 'r') as f:\n",
- " print(f.readlines())"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "* `write()` writes a string to file.\n",
- "* `writelines()` writes each item in an iterable to file, with no separating text in between."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 8,
- "metadata": {},
- "outputs": [],
- "source": [
- "provinces = ['BC', 'AB', 'SK', 'MB','ON', 'QC', 'NL', 'NB', 'NS', 'PE']\n",
- "with open('provinces.txt', 'w') as province_file:\n",
- " province_file.writelines(provinces)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "BCABSKMBONQCNLNBNSPE\n"
- ]
- }
- ],
- "source": [
- "with open('provinces.txt', 'r') as province_file:\n",
- " print(province_file.read())"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "with open('text.txt', 'w') as f:\n",
- " f.write(\"It is December 4th!\")"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 12,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "It is December 4th!\n"
- ]
- }
- ],
- "source": [
- "with open('text.txt', 'r') as f:\n",
- " print(f.read())"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 15,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "['longitude', 'latitude', 'housing_median_age', 'total_rooms', 'total_bedrooms', 'population', 'households', 'median_income', 'median_house_value']\n",
- "['-122.050000', '37.370000', '27.000000', '3885.000000', '661.000000', '1537.000000', '606.000000', '6.608500', '344700.000000']\n",
- "['-118.300000', '34.260000', '43.000000', '1510.000000', '310.000000', '809.000000', '277.000000', '3.599000', '176500.000000']\n",
- "['-117.810000', '33.780000', '27.000000', '3589.000000', '507.000000', '1484.000000', '495.000000', '5.793400', '270500.000000']\n",
- "['-118.360000', '33.820000', '28.000000', '67.000000', '15.000000', '49.000000', '11.000000', '6.135900', '330000.000000']\n",
- "['-119.670000', '36.330000', '19.000000', '1241.000000', '244.000000', '850.000000', '237.000000', '2.937500', '81700.000000']\n",
- "['-119.560000', '36.510000', '37.000000', '1018.000000', '213.000000', '663.000000', '204.000000', '1.663500', '67000.000000']\n",
- "['-121.430000', '38.630000', '43.000000', '1009.000000', '225.000000', '604.000000', '218.000000', '1.664100', '67000.000000']\n",
- "['-120.650000', '35.480000', '19.000000', '2310.000000', '471.000000', '1341.000000', '441.000000', '3.225000', '166900.000000']\n",
- "['-122.840000', '38.400000', '15.000000', '3080.000000', '617.000000', '1446.000000', '599.000000', '3.669600', '194400.000000']\n",
- "['-118.020000', '34.080000', '31.000000', '2402.000000', '632.000000', '2830.000000', '603.000000', '2.333300', '164200.000000']\n",
- "['-118.240000', '33.980000', '45.000000', '972.000000', '249.000000', '1288.000000', '261.000000', '2.205400', '125000.000000']\n",
- "['-119.120000', '35.850000', '37.000000', '736.000000', '166.000000', '564.000000', '138.000000', '2.416700', '58300.000000']\n",
- "['-121.930000', '37.250000', '36.000000', '1089.000000', '182.000000', '535.000000', '170.000000', '4.690000', '252600.000000']\n",
- "['-117.030000', '32.970000', '16.000000', '3936.000000', '694.000000', '1935.000000', '659.000000', '4.562500', '231200.000000']\n",
- "['-117.970000', '33.730000', '27.000000', '2097.000000', '325.000000', '1217.000000', '331.000000', '5.712100', '222500.000000']\n",
- "['-117.990000', '33.810000', '42.000000', '161.000000', '40.000000', '157.000000', '50.000000', '2.200000', '153100.000000']\n",
- "['-120.810000', '37.530000', '15.000000', '570.000000', '123.000000', '189.000000', '107.000000', '1.875000', '181300.000000']\n",
- "['-121.200000', '38.690000', '26.000000', '3077.000000', '607.000000', '1603.000000', '595.000000', '2.717400', '137500.000000']\n",
- "['-118.880000', '34.210000', '26.000000', '1590.000000', '196.000000', '654.000000', '199.000000', '6.585100', '300000.000000']\n",
- "['-122.590000', '38.010000', '35.000000', '8814.000000', '1307.000000', '3450.000000', '1258.000000', '6.172400', '414300.000000']\n",
- "['-122.150000', '37.750000', '40.000000', '1445.000000', '256.000000', '849.000000', '255.000000', '3.891300', '126300.000000']\n",
- "['-121.370000', '38.680000', '36.000000', '1775.000000', '296.000000', '937.000000', '305.000000', '3.178600', '83400.000000']\n",
- "['-118.160000', '34.070000', '47.000000', '2994.000000', '543.000000', '1651.000000', '561.000000', '3.864400', '241500.000000']\n",
- "['-122.200000', '37.790000', '45.000000', '2021.000000', '528.000000', '1410.000000', '480.000000', '2.778800', '115400.000000']\n",
- "['-117.280000', '33.280000', '13.000000', '6131.000000', '1040.000000', '4049.000000', '940.000000', '3.815600', '150700.000000']\n",
- "['-118.030000', '34.160000', '36.000000', '1401.000000', '218.000000', '667.000000', '225.000000', '7.161500', '484700.000000']\n",
- "['-122.420000', '37.760000', '52.000000', '3587.000000', '1030.000000', '2259.000000', '979.000000', '2.540300', '250000.000000']\n",
- "['-118.390000', '33.990000', '32.000000', '2612.000000', '418.000000', '1030.000000', '402.000000', '6.603000', '369200.000000']\n",
- "['-118.450000', '34.070000', '19.000000', '4845.000000', '1609.000000', '3751.000000', '1539.000000', '1.583000', '350000.000000']\n",
- "['-118.480000', '34.010000', '30.000000', '3078.000000', '954.000000', '1561.000000', '901.000000', '3.485200', '425000.000000']\n",
- "['-119.350000', '36.330000', '14.000000', '1195.000000', '220.000000', '568.000000', '229.000000', '3.148600', '105600.000000']\n",
- "['-118.300000', '33.910000', '34.000000', '1617.000000', '493.000000', '1530.000000', '500.000000', '2.618200', '172600.000000']\n",
- "['-121.130000', '39.310000', '17.000000', '3442.000000', '705.000000', '1693.000000', '619.000000', '2.810200', '128900.000000']\n",
- "['-118.080000', '34.550000', '5.000000', '16181.000000', '2971.000000', '8152.000000', '2651.000000', '4.523700', '141800.000000']\n",
- "['-118.320000', '33.940000', '38.000000', '1067.000000', '170.000000', '499.000000', '169.000000', '4.638900', '183800.000000']\n",
- "['-118.110000', '34.000000', '33.000000', '2886.000000', '726.000000', '2650.000000', '728.000000', '2.625000', '178700.000000']\n",
- "['-122.530000', '37.970000', '52.000000', '1560.000000', '451.000000', '700.000000', '419.000000', '2.512500', '270800.000000']\n",
- "['-118.020000', '33.920000', '34.000000', '1478.000000', '251.000000', '956.000000', '277.000000', '5.523800', '185300.000000']\n",
- "['-118.050000', '33.930000', '31.000000', '894.000000', '203.000000', '883.000000', '190.000000', '3.677100', '141500.000000']\n",
- "['-119.010000', '34.230000', '11.000000', '5785.000000', '1035.000000', '2760.000000', '985.000000', '4.693000', '232200.000000']\n",
- "['-119.320000', '36.200000', '15.000000', '1562.000000', '275.000000', '961.000000', '287.000000', '3.423100', '83300.000000']\n",
- "['-116.920000', '32.770000', '16.000000', '2770.000000', '406.000000', '1269.000000', '429.000000', '6.678300', '275000.000000']\n",
- "['-118.060000', '34.150000', '37.000000', '1980.000000', '226.000000', '697.000000', '226.000000', '15.000100', '500001.000000']\n",
- "['-117.270000', '34.090000', '36.000000', '848.000000', '186.000000', '737.000000', '169.000000', '0.983800', '79300.000000']\n",
- "['-118.230000', '34.130000', '48.000000', '1308.000000', '286.000000', '835.000000', '294.000000', '4.289100', '214800.000000']\n",
- "['-117.240000', '33.170000', '4.000000', '9998.000000', '1874.000000', '3925.000000', '1672.000000', '4.282600', '237500.000000']\n",
- "['-121.910000', '37.440000', '24.000000', '1212.000000', '251.000000', '799.000000', '242.000000', '5.080800', '212500.000000']\n",
- "['-118.290000', '33.940000', '47.000000', '1782.000000', '338.000000', '1003.000000', '329.000000', '2.539800', '105700.000000']\n",
- "['-121.350000', '38.000000', '6.000000', '1649.000000', '369.000000', '732.000000', '350.000000', '3.423100', '123800.000000']\n",
- "['-117.990000', '33.780000', '19.000000', '7399.000000', '1698.000000', '3554.000000', '1593.000000', '3.104900', '173900.000000']\n",
- "['-120.990000', '37.700000', '14.000000', '9849.000000', '1887.000000', '4356.000000', '1780.000000', '3.587700', '160900.000000']\n",
- "['-119.420000', '35.970000', '21.000000', '554.000000', '121.000000', '426.000000', '122.000000', '2.351600', '47500.000000']\n",
- "['-122.210000', '37.800000', '39.000000', '2003.000000', '500.000000', '1109.000000', '464.000000', '3.068200', '156500.000000']\n",
- "['-118.170000', '33.800000', '26.000000', '1589.000000', '380.000000', '883.000000', '366.000000', '3.531300', '187500.000000']\n",
- "['-117.900000', '34.090000', '39.000000', '1726.000000', '333.000000', '892.000000', '335.000000', '4.340900', '191800.000000']\n",
- "['-117.990000', '33.930000', '36.000000', '1287.000000', '233.000000', '779.000000', '229.000000', '4.852300', '175800.000000']\n",
- "['-121.420000', '38.720000', '10.000000', '3054.000000', '528.000000', '1932.000000', '510.000000', '3.090300', '91900.000000']\n",
- "['-118.770000', '34.260000', '26.000000', '3038.000000', '468.000000', '1825.000000', '468.000000', '5.638500', '196900.000000']\n",
- "['-121.930000', '37.330000', '44.000000', '1449.000000', '291.000000', '676.000000', '282.000000', '3.575000', '292200.000000']\n",
- "['-121.820000', '37.250000', '16.000000', '2650.000000', '600.000000', '1969.000000', '586.000000', '3.946100', '194300.000000']\n",
- "['-122.290000', '37.560000', '36.000000', '805.000000', '140.000000', '445.000000', '139.000000', '5.822100', '289400.000000']\n",
- "['-121.780000', '37.230000', '18.000000', '1747.000000', '317.000000', '1055.000000', '285.000000', '5.898000', '229100.000000']\n",
- "['-118.410000', '34.000000', '35.000000', '1062.000000', '305.000000', '1026.000000', '307.000000', '2.715300', '265500.000000']\n",
- "['-121.670000', '40.870000', '31.000000', '1581.000000', '299.000000', '776.000000', '287.000000', '2.906300', '77800.000000']\n",
- "['-118.000000', '33.920000', '26.000000', '2830.000000', '399.000000', '1204.000000', '404.000000', '6.127300', '289600.000000']\n",
- "['-117.220000', '32.730000', '38.000000', '3966.000000', '768.000000', '1640.000000', '729.000000', '3.840900', '291400.000000']\n",
- "['-121.080000', '37.690000', '19.000000', '6473.000000', '1212.000000', '3559.000000', '1123.000000', '3.224600', '129300.000000']\n",
- "['-117.530000', '33.920000', '12.000000', '2290.000000', '319.000000', '728.000000', '228.000000', '6.156100', '233500.000000']\n",
- "['-117.460000', '34.080000', '18.000000', '3830.000000', '750.000000', '2767.000000', '702.000000', '3.660200', '120700.000000']\n",
- "['-117.970000', '33.860000', '35.000000', '1691.000000', '367.000000', '1265.000000', '378.000000', '3.585500', '174300.000000']\n",
- "['-121.920000', '37.330000', '52.000000', '2125.000000', '382.000000', '930.000000', '387.000000', '5.283100', '299500.000000']\n",
- "['-118.200000', '34.040000', '44.000000', '1582.000000', '544.000000', '1998.000000', '515.000000', '1.688800', '125000.000000']\n",
- "['-118.060000', '33.800000', '22.000000', '1892.000000', '442.000000', '1015.000000', '404.000000', '4.137900', '212500.000000']\n",
- "['-122.050000', '37.360000', '34.000000', '2400.000000', '419.000000', '1017.000000', '384.000000', '4.136900', '316900.000000']\n",
- "['-123.790000', '39.500000', '24.000000', '1421.000000', '291.000000', '588.000000', '274.000000', '2.325000', '157300.000000']\n",
- "['-120.790000', '37.490000', '44.000000', '1186.000000', '225.000000', '687.000000', '234.000000', '3.416700', '160700.000000']\n",
- "['-121.890000', '37.350000', '47.000000', '2879.000000', '631.000000', '2229.000000', '606.000000', '3.259900', '183100.000000']\n",
- "['-118.430000', '34.200000', '29.000000', '3051.000000', '694.000000', '1942.000000', '679.000000', '3.111800', '238100.000000']\n",
- "['-118.750000', '34.170000', '18.000000', '6217.000000', '858.000000', '2703.000000', '834.000000', '6.807500', '325900.000000']\n",
- "['-122.470000', '37.990000', '22.000000', '7274.000000', '1002.000000', '2468.000000', '957.000000', '7.494000', '439200.000000']\n",
- "['-120.690000', '37.400000', '46.000000', '860.000000', '130.000000', '496.000000', '147.000000', '3.516700', '137500.000000']\n",
- "['-118.280000', '34.050000', '44.000000', '968.000000', '384.000000', '1805.000000', '375.000000', '1.480100', '212500.000000']\n",
- "['-118.440000', '34.250000', '35.000000', '1583.000000', '324.000000', '1481.000000', '351.000000', '3.700000', '176000.000000']\n",
- "['-122.050000', '38.260000', '21.000000', '7195.000000', '1416.000000', '3927.000000', '1377.000000', '3.091200', '126300.000000']\n",
- "['-121.990000', '37.350000', '18.000000', '1712.000000', '509.000000', '972.000000', '467.000000', '4.397100', '238900.000000']\n",
- "['-121.020000', '37.680000', '28.000000', '2875.000000', '560.000000', '1608.000000', '558.000000', '3.548900', '106400.000000']\n",
- "['-119.850000', '36.740000', '35.000000', '1191.000000', '190.000000', '537.000000', '182.000000', '3.537500', '96700.000000']\n",
- "['-118.020000', '34.080000', '28.000000', '2769.000000', '631.000000', '2452.000000', '581.000000', '2.607100', '175900.000000']\n",
- "['-123.520000', '41.010000', '17.000000', '1564.000000', '345.000000', '517.000000', '222.000000', '2.154200', '83800.000000']\n",
- "['-122.400000', '37.620000', '44.000000', '1619.000000', '362.000000', '1064.000000', '335.000000', '4.023800', '224200.000000']\n",
- "['-118.130000', '34.150000', '24.000000', '1125.000000', '341.000000', '579.000000', '321.000000', '2.812500', '141700.000000']\n",
- "['-122.000000', '37.980000', '32.000000', '1013.000000', '169.000000', '436.000000', '173.000000', '5.111800', '226900.000000']\n",
- "['-118.450000', '34.250000', '36.000000', '1453.000000', '270.000000', '808.000000', '275.000000', '4.383900', '204600.000000']\n",
- "['-117.500000', '33.870000', '4.000000', '6755.000000', '1017.000000', '2866.000000', '850.000000', '5.049300', '239800.000000']\n",
- "['-122.220000', '37.840000', '50.000000', '2935.000000', '473.000000', '1031.000000', '479.000000', '7.500000', '295200.000000']\n",
- "['-119.820000', '36.640000', '30.000000', '1694.000000', '312.000000', '1008.000000', '321.000000', '2.246600', '96000.000000']\n",
- "['-120.210000', '36.770000', '20.000000', '1745.000000', '348.000000', '1093.000000', '302.000000', '2.319400', '90600.000000']\n",
- "['-120.970000', '38.420000', '16.000000', '1748.000000', '322.000000', '4930.000000', '287.000000', '4.302900', '121900.000000']\n",
- "['-121.190000', '38.870000', '20.000000', '3118.000000', '500.000000', '1405.000000', '519.000000', '6.000000', '209400.000000']\n",
- "['-118.200000', '33.770000', '52.000000', '1375.000000', '457.000000', '1089.000000', '317.000000', '2.234400', '200000.000000']\n",
- "['-118.300000', '34.020000', '49.000000', '2120.000000', '483.000000', '1522.000000', '416.000000', '1.850000', '116800.000000']\n",
- "['-122.230000', '37.790000', '43.000000', '5963.000000', '1344.000000', '4367.000000', '1231.000000', '2.191700', '112800.000000']\n",
- "['-121.310000', '38.620000', '31.000000', '3114.000000', '430.000000', '1121.000000', '456.000000', '6.244000', '240000.000000']\n",
- "['-117.250000', '32.800000', '35.000000', '2281.000000', '506.000000', '1005.000000', '496.000000', '4.229600', '275000.000000']\n",
- "['-118.260000', '33.990000', '36.000000', '2016.000000', '505.000000', '1807.000000', '464.000000', '1.690100', '103500.000000']\n",
- "['-119.390000', '36.540000', '34.000000', '1590.000000', '422.000000', '1272.000000', '407.000000', '1.806800', '59000.000000']\n",
- "['-121.510000', '38.520000', '30.000000', '3236.000000', '588.000000', '1167.000000', '569.000000', '4.097200', '181400.000000']\n",
- "['-119.180000', '34.270000', '6.000000', '2307.000000', '386.000000', '910.000000', '364.000000', '5.215000', '279500.000000']\n",
- "['-118.180000', '33.770000', '30.000000', '1418.000000', '439.000000', '720.000000', '417.000000', '2.637100', '159400.000000']\n",
- "['-122.430000', '37.740000', '52.000000', '1514.000000', '314.000000', '724.000000', '301.000000', '5.329200', '300900.000000']\n",
- "['-117.930000', '33.910000', '24.000000', '1698.000000', '297.000000', '676.000000', '273.000000', '5.201700', '364600.000000']\n",
- "['-124.160000', '40.770000', '35.000000', '2141.000000', '438.000000', '1053.000000', '434.000000', '2.852900', '85600.000000']\n",
- "['-117.950000', '33.630000', '27.000000', '2489.000000', '481.000000', '1082.000000', '443.000000', '5.877700', '358800.000000']\n",
- "['-118.050000', '34.100000', '36.000000', '1606.000000', '318.000000', '889.000000', '294.000000', '4.793100', '272600.000000']\n",
- "['-116.970000', '32.810000', '19.000000', '1573.000000', '471.000000', '844.000000', '414.000000', '2.142200', '125000.000000']\n",
- "['-118.850000', '34.170000', '42.000000', '564.000000', '96.000000', '220.000000', '81.000000', '4.562500', '318800.000000']\n",
- "['-117.730000', '33.630000', '15.000000', '2874.000000', '592.000000', '1382.000000', '586.000000', '5.513700', '161800.000000']\n",
- "['-122.070000', '37.340000', '30.000000', '1851.000000', '238.000000', '631.000000', '236.000000', '10.100700', '500001.000000']\n",
- "['-117.180000', '33.020000', '15.000000', '3540.000000', '453.000000', '1364.000000', '425.000000', '13.662300', '500001.000000']\n",
- "['-118.410000', '34.000000', '38.000000', '324.000000', '70.000000', '268.000000', '73.000000', '2.550000', '271400.000000']\n",
- "['-121.960000', '37.300000', '20.000000', '4228.000000', '1006.000000', '2334.000000', '1007.000000', '4.308100', '227300.000000']\n",
- "['-121.740000', '38.550000', '34.000000', '2299.000000', '579.000000', '1300.000000', '536.000000', '1.643500', '148500.000000']\n",
- "['-118.210000', '33.920000', '28.000000', '2949.000000', '1003.000000', '4551.000000', '930.000000', '1.902600', '131900.000000']\n",
- "['-121.900000', '36.610000', '29.000000', '3412.000000', '827.000000', '1574.000000', '759.000000', '2.930900', '217100.000000']\n",
- "['-117.810000', '33.840000', '17.000000', '4343.000000', '515.000000', '1605.000000', '484.000000', '10.598100', '460100.000000']\n",
- "['-118.190000', '33.930000', '42.000000', '1829.000000', '391.000000', '1614.000000', '377.000000', '3.191200', '146400.000000']\n",
- "['-120.930000', '37.730000', '14.000000', '2799.000000', '618.000000', '2294.000000', '596.000000', '2.634300', '81500.000000']\n",
- "['-122.020000', '37.960000', '25.000000', '2615.000000', '368.000000', '935.000000', '366.000000', '6.672700', '305100.000000']\n",
- "['-122.470000', '37.790000', '52.000000', '2844.000000', '623.000000', '1380.000000', '596.000000', '4.750000', '500001.000000']\n",
- "['-117.190000', '34.030000', '25.000000', '2513.000000', '340.000000', '900.000000', '320.000000', '6.496200', '182400.000000']\n",
- "['-117.240000', '32.800000', '28.000000', '1072.000000', '331.000000', '692.000000', '321.000000', '2.135700', '187500.000000']\n",
- "['-118.130000', '34.100000', '19.000000', '2742.000000', '756.000000', '1396.000000', '703.000000', '2.566300', '197500.000000']\n",
- "['-122.420000', '37.730000', '50.000000', '3426.000000', '769.000000', '2261.000000', '671.000000', '2.888000', '246400.000000']\n",
- "['-118.140000', '34.710000', '32.000000', '1164.000000', '248.000000', '588.000000', '270.000000', '1.191700', '86900.000000']\n",
- "['-119.760000', '36.750000', '39.000000', '2233.000000', '563.000000', '2031.000000', '491.000000', '1.864100', '50800.000000']\n",
- "['-122.340000', '37.560000', '39.000000', '3562.000000', '391.000000', '1139.000000', '391.000000', '12.641700', '500001.000000']\n",
- "['-122.450000', '40.460000', '16.000000', '2734.000000', '501.000000', '1413.000000', '484.000000', '2.808500', '105700.000000']\n",
- "['-118.290000', '33.910000', '31.000000', '2025.000000', '618.000000', '2231.000000', '593.000000', '2.474100', '151200.000000']\n",
- "['-118.320000', '33.910000', '34.000000', '3041.000000', '677.000000', '1920.000000', '640.000000', '4.530400', '181300.000000']\n",
- "['-122.040000', '37.360000', '26.000000', '3298.000000', '460.000000', '1241.000000', '472.000000', '6.875300', '403000.000000']\n",
- "['-117.390000', '34.100000', '12.000000', '7184.000000', '1516.000000', '4862.000000', '1235.000000', '2.449200', '103800.000000']\n",
- "['-122.250000', '37.800000', '36.000000', '1678.000000', '606.000000', '1645.000000', '543.000000', '2.230300', '116700.000000']\n",
- "['-117.980000', '34.100000', '22.000000', '5661.000000', '1209.000000', '5389.000000', '1178.000000', '3.772700', '159700.000000']\n",
- "['-120.060000', '36.950000', '24.000000', '646.000000', '134.000000', '454.000000', '149.000000', '2.125000', '61900.000000']\n",
- "['-121.470000', '39.490000', '17.000000', '1554.000000', '242.000000', '553.000000', '230.000000', '3.217400', '91800.000000']\n",
- "['-122.200000', '37.790000', '35.000000', '1802.000000', '459.000000', '1009.000000', '390.000000', '2.303600', '126000.000000']\n",
- "['-117.230000', '32.750000', '23.000000', '2415.000000', '653.000000', '1275.000000', '596.000000', '3.138900', '101800.000000']\n",
- "['-119.750000', '36.740000', '39.000000', '1740.000000', '351.000000', '1098.000000', '347.000000', '1.895800', '51300.000000']\n",
- "['-117.920000', '34.030000', '35.000000', '1341.000000', '233.000000', '898.000000', '216.000000', '4.111800', '157300.000000']\n",
- "['-121.640000', '39.280000', '25.000000', '2857.000000', '662.000000', '2076.000000', '685.000000', '1.809500', '64100.000000']\n",
- "['-117.140000', '32.720000', '45.000000', '1140.000000', '310.000000', '840.000000', '339.000000', '1.615600', '156300.000000']\n",
- "['-122.290000', '37.540000', '41.000000', '1743.000000', '349.000000', '811.000000', '349.000000', '4.946400', '282400.000000']\n",
- "['-117.910000', '33.940000', '15.000000', '5799.000000', '842.000000', '2314.000000', '787.000000', '6.343300', '350500.000000']\n",
- "['-118.380000', '34.270000', '8.000000', '3248.000000', '847.000000', '2608.000000', '731.000000', '2.821400', '158300.000000']\n",
- "['-122.030000', '37.600000', '24.000000', '2077.000000', '383.000000', '1488.000000', '389.000000', '4.572100', '214700.000000']\n",
- "['-117.130000', '33.150000', '16.000000', '3907.000000', '671.000000', '1759.000000', '663.000000', '3.177600', '172600.000000']\n",
- "['-118.280000', '34.000000', '42.000000', '855.000000', '284.000000', '890.000000', '247.000000', '1.277800', '112500.000000']\n",
- "['-122.450000', '37.720000', '52.000000', '1729.000000', '319.000000', '890.000000', '300.000000', '4.303600', '261800.000000']\n",
- "['-119.770000', '36.770000', '38.000000', '3065.000000', '658.000000', '1441.000000', '625.000000', '2.056400', '64700.000000']\n",
- "['-117.700000', '33.640000', '15.000000', '5743.000000', '773.000000', '2380.000000', '773.000000', '8.192600', '326600.000000']\n",
- "['-117.070000', '32.790000', '36.000000', '3583.000000', '642.000000', '1711.000000', '602.000000', '3.974500', '170800.000000']\n",
- "['-117.850000', '33.620000', '13.000000', '5192.000000', '658.000000', '1865.000000', '662.000000', '15.000100', '500001.000000']\n",
- "['-117.760000', '33.710000', '15.000000', '1010.000000', '350.000000', '470.000000', '342.000000', '3.222900', '108300.000000']\n",
- "['-117.190000', '34.940000', '31.000000', '2034.000000', '444.000000', '1097.000000', '367.000000', '2.152200', '60800.000000']\n",
- "['-120.970000', '37.690000', '15.000000', '4065.000000', '841.000000', '1986.000000', '680.000000', '3.072000', '114300.000000']\n",
- "['-117.190000', '33.640000', '12.000000', '1481.000000', '265.000000', '757.000000', '243.000000', '3.235000', '210700.000000']\n",
- "['-118.380000', '33.910000', '36.000000', '2904.000000', '515.000000', '1463.000000', '534.000000', '5.837400', '289600.000000']\n",
- "['-121.560000', '38.260000', '43.000000', '1906.000000', '327.000000', '996.000000', '314.000000', '2.974400', '136800.000000']\n",
- "['-118.960000', '35.870000', '17.000000', '1668.000000', '307.000000', '888.000000', '277.000000', '3.779400', '96200.000000']\n",
- "['-116.960000', '32.800000', '24.000000', '2493.000000', '693.000000', '1420.000000', '643.000000', '1.835700', '104200.000000']\n",
- "['-118.270000', '33.940000', '30.000000', '1764.000000', '397.000000', '1406.000000', '362.000000', '1.449000', '93100.000000']\n",
- "['-119.180000', '34.190000', '36.000000', '4519.000000', '1081.000000', '4818.000000', '1061.000000', '2.856100', '179100.000000']\n",
- "['-118.230000', '33.900000', '28.000000', '1108.000000', '284.000000', '1498.000000', '289.000000', '2.470600', '88800.000000']\n",
- "['-120.490000', '37.260000', '28.000000', '2159.000000', '416.000000', '1283.000000', '378.000000', '1.893900', '83000.000000']\n",
- "['-121.430000', '38.640000', '34.000000', '2010.000000', '411.000000', '1501.000000', '422.000000', '2.041700', '65900.000000']\n",
- "['-118.140000', '34.170000', '42.000000', '2757.000000', '713.000000', '2112.000000', '653.000000', '2.714800', '166800.000000']\n",
- "['-119.090000', '35.410000', '12.000000', '3449.000000', '522.000000', '1754.000000', '551.000000', '5.623500', '130600.000000']\n",
- "['-118.020000', '33.710000', '24.000000', '2598.000000', '443.000000', '1184.000000', '435.000000', '5.862300', '287800.000000']\n",
- "['-121.530000', '39.060000', '20.000000', '561.000000', '109.000000', '308.000000', '114.000000', '3.302100', '70800.000000']\n",
- "['-119.290000', '34.280000', '38.000000', '2387.000000', '748.000000', '1537.000000', '741.000000', '2.314700', '192500.000000']\n",
- "['-121.840000', '37.340000', '33.000000', '1019.000000', '191.000000', '938.000000', '215.000000', '4.092900', '165000.000000']\n",
- "['-117.990000', '33.880000', '42.000000', '1461.000000', '302.000000', '986.000000', '314.000000', '3.955900', '161100.000000']\n",
- "['-122.240000', '37.550000', '3.000000', '6164.000000', '1175.000000', '2198.000000', '975.000000', '6.741300', '435900.000000']\n",
- "['-121.800000', '37.310000', '21.000000', '2630.000000', '446.000000', '1789.000000', '389.000000', '5.054300', '232000.000000']\n",
- "['-117.430000', '34.080000', '13.000000', '4563.000000', '1187.000000', '2475.000000', '1019.000000', '2.118900', '121700.000000']\n",
- "['-118.280000', '34.020000', '29.000000', '515.000000', '229.000000', '2690.000000', '217.000000', '0.499900', '500001.000000']\n",
- "['-117.300000', '33.060000', '31.000000', '2128.000000', '520.000000', '1049.000000', '485.000000', '4.027000', '290000.000000']\n",
- "['-118.200000', '34.040000', '18.000000', '796.000000', '227.000000', '547.000000', '218.000000', '1.033300', '135400.000000']\n",
- "['-117.630000', '34.110000', '30.000000', '2674.000000', '428.000000', '1404.000000', '456.000000', '4.296900', '165600.000000']\n",
- "['-121.940000', '37.330000', '37.000000', '818.000000', '269.000000', '576.000000', '261.000000', '2.190200', '250000.000000']\n",
- "['-118.070000', '33.930000', '5.000000', '906.000000', '187.000000', '1453.000000', '158.000000', '4.125000', '171900.000000']\n",
- "['-117.190000', '32.830000', '30.000000', '3225.000000', '555.000000', '1601.000000', '532.000000', '4.331700', '173300.000000']\n",
- "['-118.210000', '33.890000', '42.000000', '1739.000000', '370.000000', '1104.000000', '297.000000', '2.212500', '120700.000000']\n",
- "['-118.410000', '34.190000', '39.000000', '1169.000000', '242.000000', '612.000000', '247.000000', '4.142900', '200000.000000']\n",
- "['-117.000000', '32.800000', '29.000000', '2045.000000', '398.000000', '912.000000', '368.000000', '3.018900', '144100.000000']\n",
- "['-116.920000', '32.860000', '11.000000', '2204.000000', '518.000000', '1472.000000', '497.000000', '2.369300', '127000.000000']\n",
- "['-121.040000', '38.950000', '22.000000', '1931.000000', '445.000000', '1009.000000', '407.000000', '2.750000', '153200.000000']\n",
- "['-122.120000', '37.450000', '38.000000', '1276.000000', '314.000000', '955.000000', '287.000000', '2.009600', '155700.000000']\n",
- "['-119.480000', '36.540000', '28.000000', '2112.000000', '363.000000', '1011.000000', '335.000000', '4.222200', '108900.000000']\n",
- "['-121.020000', '37.680000', '25.000000', '3262.000000', '588.000000', '1834.000000', '578.000000', '3.996000', '114500.000000']\n",
- "['-123.280000', '40.770000', '25.000000', '767.000000', '206.000000', '301.000000', '121.000000', '1.625000', '79200.000000']\n",
- "['-122.890000', '39.110000', '10.000000', '1588.000000', '333.000000', '585.000000', '254.000000', '2.255100', '71100.000000']\n",
- "['-122.040000', '37.970000', '21.000000', '6445.000000', '1839.000000', '3621.000000', '1735.000000', '2.584100', '112500.000000']\n",
- "['-118.080000', '33.810000', '21.000000', '1189.000000', '281.000000', '577.000000', '264.000000', '3.315500', '237500.000000']\n",
- "['-118.310000', '34.090000', '36.000000', '787.000000', '420.000000', '1506.000000', '360.000000', '1.241200', '216700.000000']\n",
- "['-122.160000', '37.750000', '35.000000', '667.000000', '140.000000', '406.000000', '133.000000', '3.804700', '94300.000000']\n",
- "['-121.610000', '38.380000', '37.000000', '1365.000000', '276.000000', '952.000000', '268.000000', '4.037000', '156900.000000']\n",
- "['-122.100000', '37.680000', '31.000000', '1892.000000', '428.000000', '1162.000000', '389.000000', '3.125000', '167100.000000']\n",
- "['-122.280000', '37.870000', '49.000000', '2026.000000', '548.000000', '963.000000', '521.000000', '1.980500', '173700.000000']\n",
- "['-116.910000', '34.240000', '23.000000', '6379.000000', '1636.000000', '1350.000000', '568.000000', '1.633600', '124500.000000']\n",
- "['-121.830000', '37.280000', '33.000000', '1115.000000', '250.000000', '1168.000000', '261.000000', '3.900900', '178600.000000']\n",
- "['-118.300000', '33.810000', '17.000000', '5544.000000', '1068.000000', '3008.000000', '1038.000000', '5.322000', '282700.000000']\n",
- "['-117.960000', '33.700000', '23.000000', '4417.000000', '740.000000', '1865.000000', '693.000000', '5.342800', '279300.000000']\n",
- "['-122.140000', '40.070000', '31.000000', '2053.000000', '465.000000', '1193.000000', '447.000000', '1.492300', '44400.000000']\n",
- "['-121.440000', '38.730000', '25.000000', '1287.000000', '224.000000', '727.000000', '236.000000', '4.739600', '135500.000000']\n",
- "['-122.260000', '37.550000', '17.000000', '4576.000000', '814.000000', '1941.000000', '807.000000', '5.957200', '443800.000000']\n",
- "['-121.640000', '37.140000', '14.000000', '5487.000000', '1024.000000', '2823.000000', '979.000000', '4.175000', '229800.000000']\n",
- "['-117.180000', '34.480000', '8.000000', '3561.000000', '691.000000', '2156.000000', '659.000000', '2.777800', '86900.000000']\n",
- "['-122.280000', '38.340000', '44.000000', '1066.000000', '190.000000', '416.000000', '174.000000', '3.638900', '304000.000000']\n",
- "['-117.900000', '33.600000', '25.000000', '2465.000000', '585.000000', '906.000000', '472.000000', '3.653800', '500001.000000']\n",
- "['-122.180000', '37.780000', '33.000000', '142.000000', '31.000000', '575.000000', '47.000000', '3.875000', '225000.000000']\n",
- "['-121.490000', '38.510000', '30.000000', '3166.000000', '607.000000', '1857.000000', '579.000000', '3.176800', '79500.000000']\n",
- "['-118.190000', '33.910000', '43.000000', '1531.000000', '357.000000', '1509.000000', '376.000000', '2.635400', '128100.000000']\n",
- "['-118.270000', '34.100000', '50.000000', '2113.000000', '398.000000', '793.000000', '418.000000', '4.713200', '304600.000000']\n",
- "['-121.440000', '38.610000', '34.000000', '172.000000', '38.000000', '149.000000', '55.000000', '2.644200', '55000.000000']\n",
- "['-121.910000', '37.430000', '33.000000', '2791.000000', '496.000000', '1714.000000', '485.000000', '4.830400', '224900.000000']\n",
- "['-117.860000', '33.720000', '31.000000', '1194.000000', '297.000000', '1602.000000', '306.000000', '2.333300', '157700.000000']\n",
- "['-118.350000', '33.920000', '29.000000', '736.000000', '232.000000', '584.000000', '231.000000', '3.616700', '200000.000000']\n",
- "['-117.260000', '33.840000', '12.000000', '1159.000000', '209.000000', '523.000000', '159.000000', '2.723200', '123200.000000']\n",
- "['-122.430000', '37.730000', '52.000000', '3602.000000', '738.000000', '2270.000000', '647.000000', '3.893400', '251800.000000']\n",
- "['-121.800000', '37.990000', '16.000000', '3077.000000', '465.000000', '1575.000000', '446.000000', '5.500000', '179500.000000']\n",
- "['-122.580000', '38.460000', '15.000000', '2936.000000', '517.000000', '1182.000000', '501.000000', '3.398100', '246900.000000']\n",
- "['-122.470000', '37.780000', '52.000000', '2042.000000', '378.000000', '1153.000000', '408.000000', '4.185600', '404700.000000']\n",
- "['-118.080000', '34.000000', '32.000000', '1165.000000', '358.000000', '997.000000', '361.000000', '0.981700', '166300.000000']\n",
- "['-122.000000', '37.350000', '20.000000', '4304.000000', '851.000000', '2059.000000', '835.000000', '5.167400', '333000.000000']\n",
- "['-119.020000', '35.410000', '21.000000', '2534.000000', '554.000000', '1297.000000', '517.000000', '2.057500', '67000.000000']\n",
- "['-118.130000', '34.180000', '52.000000', '1464.000000', '211.000000', '603.000000', '226.000000', '5.830900', '309100.000000']\n",
- "['-121.940000', '37.270000', '23.000000', '1932.000000', '552.000000', '997.000000', '482.000000', '3.662000', '211900.000000']\n",
- "['-120.510000', '35.910000', '39.000000', '768.000000', '162.000000', '264.000000', '118.000000', '5.324500', '250000.000000']\n",
- "['-121.650000', '38.030000', '28.000000', '3144.000000', '694.000000', '1095.000000', '482.000000', '3.440200', '192400.000000']\n",
- "['-121.620000', '39.790000', '11.000000', '3835.000000', '727.000000', '1456.000000', '658.000000', '2.537400', '97200.000000']\n",
- "['-117.080000', '32.820000', '16.000000', '1787.000000', '236.000000', '770.000000', '228.000000', '7.129800', '278600.000000']\n",
- "['-123.210000', '39.140000', '15.000000', '2235.000000', '545.000000', '1376.000000', '516.000000', '1.903200', '100000.000000']\n",
- "['-119.610000', '36.330000', '32.000000', '1492.000000', '284.000000', '926.000000', '264.000000', '3.013900', '61500.000000']\n",
- "['-114.980000', '33.070000', '18.000000', '1183.000000', '363.000000', '374.000000', '127.000000', '3.160700', '57500.000000']\n",
- "['-118.380000', '34.040000', '36.000000', '3005.000000', '771.000000', '2054.000000', '758.000000', '2.043700', '309100.000000']\n",
- "['-117.990000', '33.700000', '13.000000', '4013.000000', '903.000000', '1999.000000', '859.000000', '4.625000', '248800.000000']\n",
- "['-116.260000', '33.720000', '10.000000', '9404.000000', '1827.000000', '3208.000000', '1283.000000', '3.108600', '105800.000000']\n",
- "['-118.400000', '34.000000', '10.000000', '1526.000000', '339.000000', '705.000000', '268.000000', '5.808300', '321800.000000']\n",
- "['-120.640000', '35.460000', '6.000000', '5876.000000', '1406.000000', '2877.000000', '1304.000000', '2.543700', '146400.000000']\n",
- "['-122.030000', '37.390000', '22.000000', '3280.000000', '933.000000', '1842.000000', '795.000000', '4.410700', '232700.000000']\n",
- "['-118.290000', '33.880000', '36.000000', '1751.000000', '438.000000', '1175.000000', '419.000000', '3.073900', '218600.000000']\n",
- "['-117.020000', '32.690000', '7.000000', '6055.000000', '1004.000000', '3031.000000', '952.000000', '4.436000', '135000.000000']\n",
- "['-119.320000', '36.300000', '15.000000', '2864.000000', '571.000000', '1480.000000', '475.000000', '2.969800', '93400.000000']\n",
- "['-122.310000', '38.010000', '18.000000', '4123.000000', '874.000000', '1895.000000', '772.000000', '3.275900', '195000.000000']\n",
- "['-118.860000', '34.190000', '27.000000', '1931.000000', '261.000000', '736.000000', '244.000000', '6.780500', '392900.000000']\n",
- "['-117.140000', '33.810000', '13.000000', '4496.000000', '756.000000', '2044.000000', '695.000000', '3.277800', '148800.000000']\n",
- "['-118.640000', '34.220000', '25.000000', '2762.000000', '410.000000', '1166.000000', '439.000000', '6.864300', '333700.000000']\n",
- "['-116.630000', '33.890000', '22.000000', '1540.000000', '364.000000', '610.000000', '268.000000', '1.522700', '71000.000000']\n",
- "['-118.280000', '34.110000', '45.000000', '1607.000000', '331.000000', '633.000000', '332.000000', '3.144500', '438300.000000']\n",
- "['-119.030000', '35.380000', '52.000000', '1695.000000', '290.000000', '540.000000', '260.000000', '2.731200', '147100.000000']\n",
- "['-118.260000', '33.880000', '36.000000', '1212.000000', '222.000000', '775.000000', '224.000000', '5.559100', '136500.000000']\n",
- "['-117.890000', '33.850000', '18.000000', '2036.000000', '414.000000', '1292.000000', '380.000000', '3.875000', '273000.000000']\n",
- "['-122.090000', '37.380000', '36.000000', '2587.000000', '416.000000', '1055.000000', '410.000000', '6.199500', '407200.000000']\n",
- "['-122.940000', '39.100000', '18.000000', '681.000000', '120.000000', '272.000000', '105.000000', '2.890600', '140600.000000']\n",
- "['-117.100000', '32.680000', '42.000000', '2013.000000', '568.000000', '1920.000000', '557.000000', '2.072400', '107600.000000']\n",
- "['-118.980000', '35.410000', '36.000000', '1482.000000', '266.000000', '640.000000', '274.000000', '3.875000', '94500.000000']\n",
- "['-120.230000', '37.960000', '52.000000', '1230.000000', '262.000000', '609.000000', '243.000000', '2.005700', '68200.000000']\n",
- "['-118.200000', '33.940000', '43.000000', '1934.000000', '511.000000', '1895.000000', '493.000000', '2.502900', '159700.000000']\n",
- "['-121.300000', '37.950000', '9.000000', '674.000000', '242.000000', '575.000000', '193.000000', '2.202400', '45000.000000']\n",
- "['-121.740000', '38.550000', '33.000000', '6861.000000', '1820.000000', '3717.000000', '1767.000000', '1.731100', '182600.000000']\n",
- "['-121.960000', '37.330000', '35.000000', '2294.000000', '411.000000', '1054.000000', '449.000000', '4.066700', '276900.000000']\n",
- "['-120.600000', '37.360000', '27.000000', '2521.000000', '484.000000', '1307.000000', '456.000000', '3.091100', '86900.000000']\n",
- "['-122.470000', '37.700000', '44.000000', '2034.000000', '423.000000', '1491.000000', '373.000000', '4.534100', '236500.000000']\n",
- "['-117.050000', '32.580000', '23.000000', '1918.000000', '339.000000', '1392.000000', '340.000000', '4.087000', '134800.000000']\n",
- "['-117.900000', '33.870000', '34.000000', '1411.000000', '292.000000', '1040.000000', '299.000000', '3.433800', '195200.000000']\n",
- "['-117.230000', '32.870000', '15.000000', '2290.000000', '662.000000', '1034.000000', '594.000000', '3.010400', '204200.000000']\n",
- "['-122.080000', '37.880000', '24.000000', '2059.000000', '462.000000', '410.000000', '294.000000', '2.397100', '99400.000000']\n",
- "['-118.210000', '33.800000', '45.000000', '1160.000000', '274.000000', '1095.000000', '269.000000', '2.730800', '139000.000000']\n",
- "['-122.080000', '37.640000', '30.000000', '5267.000000', '1253.000000', '4065.000000', '1113.000000', '3.347900', '182100.000000']\n",
- "['-118.380000', '34.140000', '40.000000', '1965.000000', '354.000000', '666.000000', '357.000000', '6.087600', '483800.000000']\n",
- "['-118.200000', '33.800000', '45.000000', '2456.000000', '495.000000', '1300.000000', '450.000000', '3.979200', '210200.000000']\n",
- "['-117.620000', '33.430000', '27.000000', '3858.000000', '1062.000000', '2321.000000', '873.000000', '3.315500', '231000.000000']\n",
- "['-122.110000', '37.400000', '31.000000', '2836.000000', '490.000000', '1138.000000', '481.000000', '4.951900', '500001.000000']\n",
- "['-122.840000', '38.980000', '21.000000', '939.000000', '176.000000', '556.000000', '178.000000', '1.719600', '75000.000000']\n",
- "['-121.260000', '38.270000', '20.000000', '1314.000000', '229.000000', '712.000000', '219.000000', '4.412500', '144600.000000']\n",
- "['-116.890000', '33.730000', '15.000000', '2094.000000', '316.000000', '937.000000', '277.000000', '5.362300', '201300.000000']\n",
- "['-122.670000', '38.440000', '32.000000', '3771.000000', '741.000000', '1786.000000', '721.000000', '3.241500', '172200.000000']\n",
- "['-117.940000', '33.870000', '46.000000', '2066.000000', '450.000000', '1275.000000', '448.000000', '3.937500', '187000.000000']\n",
- "['-118.140000', '34.690000', '34.000000', '1439.000000', '327.000000', '708.000000', '298.000000', '3.269900', '100000.000000']\n",
- "['-122.400000', '37.590000', '22.000000', '2754.000000', '477.000000', '1163.000000', '479.000000', '6.230600', '500001.000000']\n",
- "['-118.080000', '33.840000', '28.000000', '4216.000000', '948.000000', '2997.000000', '896.000000', '3.796100', '162700.000000']\n",
- "['-116.360000', '33.780000', '6.000000', '24121.000000', '4522.000000', '4176.000000', '2221.000000', '3.379900', '239300.000000']\n",
- "['-117.940000', '33.850000', '26.000000', '1888.000000', '429.000000', '1550.000000', '458.000000', '3.339300', '168600.000000']\n",
- "['-117.470000', '33.940000', '34.000000', '559.000000', '139.000000', '532.000000', '137.000000', '3.068700', '88500.000000']\n",
- "['-117.640000', '33.650000', '4.000000', '6842.000000', '1512.000000', '3256.000000', '1439.000000', '5.413200', '216600.000000']\n",
- "['-118.500000', '34.240000', '34.000000', '2634.000000', '412.000000', '1114.000000', '423.000000', '5.940100', '315300.000000']\n",
- "['-118.190000', '33.780000', '24.000000', '225.000000', '72.000000', '439.000000', '71.000000', '2.853300', '137500.000000']\n",
- "['-117.660000', '34.120000', '16.000000', '3853.000000', '541.000000', '1726.000000', '497.000000', '6.119500', '251100.000000']\n",
- "['-122.300000', '37.970000', '34.000000', '2854.000000', '528.000000', '1211.000000', '452.000000', '3.535300', '164700.000000']\n",
- "['-122.140000', '37.680000', '31.000000', '3184.000000', '716.000000', '1561.000000', '628.000000', '2.795500', '183100.000000']\n",
- "['-118.260000', '33.940000', '41.000000', '1510.000000', '410.000000', '1408.000000', '389.000000', '1.650000', '94200.000000']\n",
- "['-118.230000', '33.930000', '39.000000', '2065.000000', '532.000000', '2015.000000', '535.000000', '0.847800', '104900.000000']\n",
- "['-120.960000', '38.660000', '11.000000', '2339.000000', '436.000000', '1062.000000', '380.000000', '3.903600', '180800.000000']\n",
- "['-117.840000', '35.350000', '28.000000', '1913.000000', '486.000000', '858.000000', '371.000000', '1.996200', '50800.000000']\n",
- "['-119.160000', '34.200000', '35.000000', '2183.000000', '636.000000', '3504.000000', '623.000000', '1.970400', '160300.000000']\n",
- "['-122.650000', '38.230000', '52.000000', '1735.000000', '347.000000', '712.000000', '343.000000', '3.171100', '200800.000000']\n",
- "['-121.880000', '37.370000', '14.000000', '6016.000000', '1404.000000', '3258.000000', '1316.000000', '3.574500', '333700.000000']\n",
- "['-118.400000', '34.040000', '43.000000', '3863.000000', '537.000000', '1398.000000', '511.000000', '8.593800', '500001.000000']\n",
- "['-118.270000', '34.110000', '36.000000', '1832.000000', '539.000000', '934.000000', '486.000000', '3.052100', '276600.000000']\n",
- "['-118.440000', '34.300000', '38.000000', '1595.000000', '314.000000', '1181.000000', '327.000000', '3.400000', '155500.000000']\n",
- "['-121.770000', '37.680000', '41.000000', '1501.000000', '299.000000', '629.000000', '288.000000', '4.680600', '209400.000000']\n",
- "['-119.990000', '38.880000', '17.000000', '2807.000000', '529.000000', '675.000000', '251.000000', '2.745700', '107800.000000']\n",
- "['-118.360000', '33.960000', '26.000000', '3543.000000', '1055.000000', '2742.000000', '951.000000', '2.550400', '151300.000000']\n",
- "['-118.320000', '33.970000', '52.000000', '1778.000000', '320.000000', '795.000000', '279.000000', '3.511400', '138800.000000']\n",
- "['-118.270000', '34.270000', '27.000000', '5205.000000', '859.000000', '2363.000000', '888.000000', '6.194600', '276100.000000']\n",
- "['-116.810000', '33.900000', '17.000000', '2009.000000', '469.000000', '820.000000', '381.000000', '1.328600', '81800.000000']\n",
- "['-118.390000', '33.960000', '45.000000', '1436.000000', '374.000000', '662.000000', '292.000000', '3.625000', '329400.000000']\n",
- "['-118.070000', '33.910000', '29.000000', '2387.000000', '570.000000', '1978.000000', '548.000000', '3.195700', '159200.000000']\n",
- "['-118.350000', '34.220000', '30.000000', '1260.000000', '222.000000', '638.000000', '229.000000', '4.130200', '258300.000000']\n",
- "['-118.430000', '34.020000', '41.000000', '2403.000000', '516.000000', '1001.000000', '514.000000', '4.390600', '500001.000000']\n",
- "['-121.730000', '37.680000', '17.000000', '20354.000000', '3493.000000', '8768.000000', '3293.000000', '5.449600', '238900.000000']\n",
- "['-117.310000', '32.980000', '17.000000', '2789.000000', '648.000000', '849.000000', '345.000000', '4.101200', '244700.000000']\n",
- "['-122.290000', '37.560000', '12.000000', '6474.000000', '1467.000000', '2516.000000', '1390.000000', '5.035300', '305800.000000']\n",
- "['-119.690000', '34.380000', '39.000000', '1383.000000', '459.000000', '677.000000', '362.000000', '2.250000', '281300.000000']\n",
- "['-122.070000', '38.000000', '37.000000', '978.000000', '202.000000', '462.000000', '184.000000', '3.625000', '156300.000000']\n",
- "['-118.050000', '34.160000', '41.000000', '3320.000000', '713.000000', '1236.000000', '659.000000', '3.569400', '278600.000000']\n",
- "['-122.070000', '37.660000', '28.000000', '2280.000000', '610.000000', '1255.000000', '587.000000', '2.671900', '161200.000000']\n",
- "['-121.800000', '37.270000', '10.000000', '3301.000000', '593.000000', '2190.000000', '575.000000', '6.223000', '260700.000000']\n",
- "['-122.690000', '38.340000', '23.000000', '2846.000000', '516.000000', '1526.000000', '492.000000', '3.733000', '163500.000000']\n",
- "['-117.080000', '32.700000', '35.000000', '1477.000000', '264.000000', '852.000000', '279.000000', '3.178600', '100600.000000']\n",
- "['-119.760000', '36.730000', '46.000000', '1347.000000', '282.000000', '854.000000', '267.000000', '1.872300', '52600.000000']\n",
- "['-118.370000', '34.050000', '52.000000', '1563.000000', '306.000000', '776.000000', '308.000000', '3.625000', '440900.000000']\n",
- "['-122.700000', '38.350000', '14.000000', '1555.000000', '369.000000', '493.000000', '335.000000', '1.603300', '67500.000000']\n",
- "['-118.130000', '34.010000', '45.000000', '1179.000000', '268.000000', '736.000000', '252.000000', '2.708300', '161800.000000']\n",
- "['-119.350000', '36.210000', '26.000000', '2481.000000', '586.000000', '1445.000000', '498.000000', '1.637800', '60300.000000']\n",
- "['-117.670000', '34.030000', '20.000000', '8561.000000', '1411.000000', '4861.000000', '1450.000000', '4.705600', '165500.000000']\n",
- "['-117.970000', '34.150000', '33.000000', '2474.000000', '472.000000', '1268.000000', '437.000000', '6.457600', '500001.000000']\n",
- "['-118.080000', '34.080000', '38.000000', '1889.000000', '407.000000', '1330.000000', '396.000000', '3.921900', '205200.000000']\n",
- "['-121.230000', '38.780000', '13.000000', '3813.000000', '871.000000', '1513.000000', '783.000000', '2.080700', '142600.000000']\n",
- "['-118.200000', '34.020000', '49.000000', '1098.000000', '317.000000', '1411.000000', '301.000000', '2.750000', '146000.000000']\n",
- "['-118.170000', '34.020000', '41.000000', '676.000000', '216.000000', '851.000000', '199.000000', '2.307700', '140600.000000']\n",
- "['-117.800000', '34.060000', '34.000000', '1081.000000', '205.000000', '1325.000000', '252.000000', '3.629800', '108500.000000']\n",
- "['-118.300000', '33.970000', '46.000000', '1425.000000', '317.000000', '1140.000000', '304.000000', '3.375000', '98500.000000']\n",
- "['-122.470000', '37.690000', '30.000000', '837.000000', '213.000000', '606.000000', '199.000000', '4.875000', '258800.000000']\n",
- "['-118.200000', '33.960000', '44.000000', '2144.000000', '477.000000', '1760.000000', '452.000000', '2.322100', '161600.000000']\n",
- "['-117.130000', '32.910000', '16.000000', '2715.000000', '581.000000', '1619.000000', '584.000000', '4.000000', '154700.000000']\n",
- "['-119.770000', '36.810000', '25.000000', '1565.000000', '271.000000', '661.000000', '275.000000', '3.427900', '84700.000000']\n",
- "['-118.470000', '34.250000', '21.000000', '2692.000000', '477.000000', '1330.000000', '456.000000', '4.541700', '238900.000000']\n",
- "['-122.250000', '37.800000', '42.000000', '4120.000000', '1065.000000', '1715.000000', '1015.000000', '2.934500', '225000.000000']\n",
- "['-118.500000', '34.170000', '37.000000', '880.000000', '154.000000', '369.000000', '155.000000', '4.142900', '303600.000000']\n",
- "['-122.240000', '37.490000', '38.000000', '4105.000000', '950.000000', '2561.000000', '909.000000', '3.868400', '265600.000000']\n",
- "['-117.150000', '32.930000', '16.000000', '2718.000000', '438.000000', '1515.000000', '431.000000', '5.143300', '185300.000000']\n",
- "['-120.850000', '37.770000', '35.000000', '404.000000', '96.000000', '261.000000', '100.000000', '2.458300', '75000.000000']\n",
- "['-122.250000', '37.830000', '35.000000', '1613.000000', '428.000000', '675.000000', '422.000000', '3.472200', '243100.000000']\n",
- "['-118.330000', '33.770000', '33.000000', '4244.000000', '595.000000', '1534.000000', '557.000000', '9.821400', '500001.000000']\n",
- "['-124.150000', '40.780000', '41.000000', '2127.000000', '358.000000', '911.000000', '349.000000', '3.171100', '104200.000000']\n",
- "['-117.940000', '33.790000', '24.000000', '4179.000000', '784.000000', '1902.000000', '733.000000', '4.798600', '236500.000000']\n",
- "['-121.590000', '39.150000', '5.000000', '1922.000000', '489.000000', '938.000000', '439.000000', '2.047400', '61300.000000']\n",
- "['-122.690000', '38.440000', '31.000000', '1808.000000', '315.000000', '691.000000', '280.000000', '3.858300', '193200.000000']\n",
- "['-122.510000', '38.760000', '9.000000', '2589.000000', '482.000000', '1050.000000', '374.000000', '4.043500', '132600.000000']\n",
- "['-117.890000', '33.610000', '45.000000', '1883.000000', '419.000000', '653.000000', '328.000000', '4.222200', '500001.000000']\n",
- "['-117.190000', '32.770000', '9.000000', '634.000000', '152.000000', '248.000000', '133.000000', '3.857100', '143800.000000']\n",
- "['-117.150000', '32.750000', '40.000000', '2261.000000', '579.000000', '903.000000', '525.000000', '2.465000', '198700.000000']\n",
- "['-122.210000', '37.480000', '20.000000', '505.000000', '216.000000', '326.000000', '216.000000', '2.928600', '237500.000000']\n",
- "['-118.250000', '33.790000', '38.000000', '1730.000000', '460.000000', '1724.000000', '424.000000', '2.730800', '150400.000000']\n",
- "['-120.490000', '40.310000', '16.000000', '1821.000000', '360.000000', '969.000000', '359.000000', '3.464300', '85100.000000']\n",
- "['-118.300000', '33.740000', '20.000000', '2625.000000', '673.000000', '1184.000000', '606.000000', '3.916700', '285200.000000']\n",
- "['-117.140000', '32.700000', '47.000000', '552.000000', '161.000000', '593.000000', '174.000000', '0.958900', '90000.000000']\n",
- "['-121.300000', '37.970000', '52.000000', '2259.000000', '417.000000', '766.000000', '385.000000', '2.298100', '105400.000000']\n",
- "['-119.780000', '36.750000', '31.000000', '1404.000000', '379.000000', '1515.000000', '387.000000', '1.281300', '56400.000000']\n",
- "['-118.380000', '34.180000', '32.000000', '3553.000000', '1060.000000', '3129.000000', '1010.000000', '2.560300', '174200.000000']\n",
- "['-118.130000', '34.100000', '24.000000', '4670.000000', '1185.000000', '2478.000000', '1107.000000', '3.197500', '252400.000000']\n",
- "['-118.300000', '33.730000', '42.000000', '1731.000000', '435.000000', '866.000000', '403.000000', '2.745100', '255400.000000']\n",
- "['-118.440000', '33.990000', '44.000000', '305.000000', '72.000000', '156.000000', '70.000000', '5.964100', '275000.000000']\n",
- "['-117.480000', '34.080000', '17.000000', '1834.000000', '390.000000', '1253.000000', '357.000000', '3.102800', '106400.000000']\n",
- "['-122.350000', '37.970000', '31.000000', '2892.000000', '685.000000', '2104.000000', '641.000000', '3.218800', '113800.000000']\n",
- "['-119.710000', '34.410000', '31.000000', '1034.000000', '319.000000', '997.000000', '308.000000', '2.653800', '231800.000000']\n",
- "['-116.920000', '32.810000', '23.000000', '2668.000000', '528.000000', '1510.000000', '524.000000', '3.366900', '158900.000000']\n",
- "['-122.110000', '37.660000', '35.000000', '2843.000000', '652.000000', '1726.000000', '643.000000', '3.090000', '174100.000000']\n",
- "['-117.410000', '33.940000', '29.000000', '3181.000000', '714.000000', '1603.000000', '706.000000', '3.250000', '112500.000000']\n",
- "['-122.450000', '37.740000', '38.000000', '5688.000000', '930.000000', '2263.000000', '908.000000', '6.203000', '346800.000000']\n",
- "['-118.360000', '33.800000', '38.000000', '2553.000000', '400.000000', '1042.000000', '393.000000', '6.974200', '500001.000000']\n",
- "['-121.660000', '36.680000', '10.000000', '913.000000', '265.000000', '508.000000', '251.000000', '0.991400', '147500.000000']\n",
- "['-122.420000', '37.760000', '52.000000', '2038.000000', '629.000000', '2007.000000', '596.000000', '2.570100', '266700.000000']\n",
- "['-118.290000', '34.050000', '30.000000', '1417.000000', '589.000000', '1615.000000', '540.000000', '1.386700', '193800.000000']\n",
- "['-119.820000', '34.430000', '15.000000', '1482.000000', '345.000000', '669.000000', '379.000000', '3.077300', '112500.000000']\n",
- "['-119.340000', '36.220000', '38.000000', '2708.000000', '460.000000', '1260.000000', '455.000000', '3.090500', '78200.000000']\n",
- "['-121.500000', '38.610000', '5.000000', '1395.000000', '373.000000', '638.000000', '322.000000', '2.674500', '225000.000000']\n",
- "['-121.880000', '37.460000', '5.000000', '1819.000000', '245.000000', '802.000000', '228.000000', '10.972200', '500001.000000']\n",
- "['-118.270000', '33.940000', '34.000000', '721.000000', '165.000000', '661.000000', '171.000000', '2.078900', '92400.000000']\n",
- "['-122.170000', '37.730000', '46.000000', '2163.000000', '470.000000', '925.000000', '435.000000', '3.250000', '177500.000000']\n",
- "['-122.220000', '37.850000', '28.000000', '5287.000000', '1048.000000', '2031.000000', '956.000000', '5.457000', '337300.000000']\n",
- "['-117.200000', '32.830000', '36.000000', '1089.000000', '240.000000', '623.000000', '226.000000', '2.590900', '176000.000000']\n",
- "['-120.690000', '35.490000', '16.000000', '2666.000000', '450.000000', '1203.000000', '429.000000', '4.137500', '222400.000000']\n",
- "['-122.700000', '38.970000', '17.000000', '2554.000000', '540.000000', '723.000000', '319.000000', '3.237500', '114200.000000']\n",
- "['-118.370000', '34.150000', '29.000000', '2630.000000', '617.000000', '1071.000000', '573.000000', '3.366900', '376100.000000']\n",
- "['-118.350000', '34.000000', '40.000000', '2894.000000', '395.000000', '1063.000000', '409.000000', '6.939000', '372000.000000']\n",
- "['-118.390000', '37.360000', '38.000000', '1813.000000', '410.000000', '902.000000', '396.000000', '2.326100', '98400.000000']\n",
- "['-118.110000', '34.200000', '36.000000', '4915.000000', '725.000000', '1897.000000', '700.000000', '6.827000', '359400.000000']\n",
- "['-121.720000', '36.810000', '18.000000', '1984.000000', '379.000000', '1078.000000', '359.000000', '3.296900', '229900.000000']\n",
- "['-118.520000', '34.160000', '39.000000', '2693.000000', '478.000000', '1219.000000', '435.000000', '5.170000', '335400.000000']\n",
- "['-118.120000', '33.900000', '35.000000', '3478.000000', '730.000000', '1885.000000', '673.000000', '2.937500', '206500.000000']\n",
- "['-119.690000', '36.790000', '5.000000', '2613.000000', '476.000000', '1490.000000', '481.000000', '4.099300', '83000.000000']\n",
- "['-118.030000', '33.780000', '26.000000', '2001.000000', '302.000000', '836.000000', '298.000000', '5.106100', '257500.000000']\n",
- "['-120.670000', '35.620000', '6.000000', '12779.000000', '2441.000000', '6085.000000', '2157.000000', '3.866100', '168100.000000']\n",
- "['-118.430000', '34.030000', '36.000000', '1552.000000', '388.000000', '867.000000', '352.000000', '3.646700', '346700.000000']\n",
- "['-121.620000', '39.130000', '41.000000', '1147.000000', '243.000000', '583.000000', '239.000000', '2.243100', '63400.000000']\n",
- "['-118.970000', '37.640000', '13.000000', '1907.000000', '544.000000', '575.000000', '234.000000', '3.068500', '162500.000000']\n",
- "['-117.250000', '32.740000', '36.000000', '3548.000000', '956.000000', '1648.000000', '866.000000', '2.696200', '288200.000000']\n",
- "['-122.280000', '37.800000', '52.000000', '215.000000', '87.000000', '904.000000', '88.000000', '0.866800', '137500.000000']\n",
- "['-118.190000', '34.140000', '38.000000', '1826.000000', '300.000000', '793.000000', '297.000000', '5.296200', '291500.000000']\n",
- "['-117.900000', '33.850000', '32.000000', '1605.000000', '314.000000', '986.000000', '306.000000', '3.337500', '186200.000000']\n",
- "['-119.020000', '37.640000', '14.000000', '5919.000000', '1278.000000', '265.000000', '112.000000', '3.243100', '221400.000000']\n",
- "['-118.370000', '34.200000', '34.000000', '2199.000000', '609.000000', '2488.000000', '597.000000', '2.986100', '171800.000000']\n",
- "['-122.410000', '37.750000', '52.000000', '1057.000000', '276.000000', '837.000000', '292.000000', '2.453100', '229000.000000']\n",
- "['-117.940000', '33.920000', '28.000000', '639.000000', '179.000000', '1062.000000', '169.000000', '3.058800', '145200.000000']\n",
- "['-118.220000', '34.120000', '28.000000', '3306.000000', '1025.000000', '2670.000000', '942.000000', '3.091900', '185400.000000']\n",
- "['-117.240000', '34.040000', '4.000000', '4289.000000', '682.000000', '1981.000000', '705.000000', '5.336600', '165100.000000']\n",
- "['-122.080000', '37.660000', '33.000000', '1547.000000', '372.000000', '1063.000000', '356.000000', '2.562500', '154300.000000']\n",
- "['-122.280000', '37.850000', '48.000000', '2063.000000', '484.000000', '1054.000000', '466.000000', '2.262500', '132900.000000']\n",
- "['-118.210000', '33.900000', '35.000000', '2420.000000', '579.000000', '2010.000000', '540.000000', '2.081700', '104600.000000']\n",
- "['-118.010000', '33.920000', '35.000000', '1606.000000', '289.000000', '829.000000', '273.000000', '5.273000', '187600.000000']\n",
- "['-118.290000', '34.180000', '10.000000', '4292.000000', '1075.000000', '2719.000000', '987.000000', '3.697400', '286600.000000']\n",
- "['-118.210000', '33.960000', '48.000000', '284.000000', '104.000000', '422.000000', '119.000000', '1.282600', '145500.000000']\n",
- "['-117.230000', '32.810000', '28.000000', '1508.000000', '263.000000', '996.000000', '267.000000', '3.802600', '270000.000000']\n",
- "['-117.030000', '33.130000', '15.000000', '7000.000000', '1185.000000', '3555.000000', '1118.000000', '4.702200', '172800.000000']\n",
- "['-121.850000', '37.220000', '21.000000', '6203.000000', '798.000000', '2494.000000', '800.000000', '7.720100', '362700.000000']\n",
- "['-122.400000', '37.720000', '47.000000', '1465.000000', '306.000000', '1119.000000', '315.000000', '4.267200', '219400.000000']\n",
- "['-120.470000', '34.980000', '6.000000', '5762.000000', '1115.000000', '2551.000000', '919.000000', '3.072300', '137300.000000']\n",
- "['-121.140000', '37.480000', '6.000000', '1772.000000', '332.000000', '1011.000000', '331.000000', '3.704500', '128100.000000']\n",
- "['-119.340000', '36.620000', '26.000000', '1922.000000', '339.000000', '1148.000000', '332.000000', '2.605800', '92200.000000']\n",
- "['-117.660000', '34.080000', '36.000000', '1485.000000', '236.000000', '623.000000', '261.000000', '3.303600', '141000.000000']\n",
- "['-116.840000', '33.080000', '15.000000', '2755.000000', '519.000000', '1474.000000', '460.000000', '4.040800', '225900.000000']\n",
- "['-118.290000', '34.050000', '11.000000', '677.000000', '370.000000', '1143.000000', '341.000000', '2.386400', '350000.000000']\n",
- "['-119.980000', '38.940000', '23.000000', '1564.000000', '298.000000', '339.000000', '147.000000', '4.041700', '99300.000000']\n",
- "['-118.100000', '33.910000', '35.000000', '1653.000000', '325.000000', '1072.000000', '301.000000', '3.270800', '159700.000000']\n",
- "['-120.070000', '36.960000', '42.000000', '963.000000', '216.000000', '471.000000', '211.000000', '2.289800', '66100.000000']\n",
- "['-119.110000', '35.390000', '22.000000', '984.000000', '176.000000', '451.000000', '170.000000', '3.250000', '88900.000000']\n",
- "['-117.720000', '34.100000', '46.000000', '2477.000000', '458.000000', '1034.000000', '455.000000', '5.500000', '289700.000000']\n",
- "['-117.900000', '33.650000', '30.000000', '2196.000000', '486.000000', '1131.000000', '460.000000', '4.413500', '272300.000000']\n",
- "['-121.980000', '37.290000', '31.000000', '2750.000000', '664.000000', '1459.000000', '660.000000', '3.228700', '264900.000000']\n",
- "['-122.030000', '36.960000', '32.000000', '2182.000000', '406.000000', '1122.000000', '370.000000', '3.520000', '284200.000000']\n",
- "['-117.420000', '34.080000', '21.000000', '4460.000000', '930.000000', '2657.000000', '839.000000', '2.756900', '127500.000000']\n",
- "['-117.660000', '34.110000', '19.000000', '3445.000000', '661.000000', '1635.000000', '580.000000', '5.068100', '230500.000000']\n",
- "['-119.290000', '34.240000', '27.000000', '4742.000000', '775.000000', '1682.000000', '696.000000', '6.194000', '500001.000000']\n",
- "['-117.020000', '32.710000', '20.000000', '4050.000000', '745.000000', '2870.000000', '761.000000', '3.736600', '121800.000000']\n",
- "['-122.850000', '38.620000', '16.000000', '4418.000000', '704.000000', '1908.000000', '697.000000', '4.591300', '244600.000000']\n",
- "['-118.330000', '33.910000', '35.000000', '1092.000000', '302.000000', '962.000000', '297.000000', '3.590300', '183300.000000']\n",
- "['-118.400000', '34.020000', '40.000000', '593.000000', '137.000000', '371.000000', '132.000000', '4.693200', '332800.000000']\n",
- "['-118.380000', '33.840000', '26.000000', '2869.000000', '567.000000', '1157.000000', '538.000000', '6.038200', '355300.000000']\n",
- "['-118.050000', '34.110000', '42.000000', '3677.000000', '627.000000', '1779.000000', '622.000000', '5.150900', '426500.000000']\n",
- "['-117.430000', '33.930000', '36.000000', '2386.000000', '396.000000', '1176.000000', '374.000000', '4.512200', '113300.000000']\n",
- "['-118.100000', '34.160000', '44.000000', '2795.000000', '496.000000', '1235.000000', '469.000000', '4.238600', '283700.000000']\n",
- "['-122.530000', '37.860000', '38.000000', '1183.000000', '196.000000', '628.000000', '205.000000', '3.750000', '478600.000000']\n",
- "['-118.300000', '33.970000', '42.000000', '944.000000', '200.000000', '567.000000', '190.000000', '2.631100', '124100.000000']\n",
- "['-118.200000', '33.890000', '37.000000', '2394.000000', '568.000000', '2499.000000', '551.000000', '2.532100', '105100.000000']\n",
- "['-118.020000', '34.150000', '44.000000', '2419.000000', '437.000000', '1045.000000', '432.000000', '3.875000', '280800.000000']\n",
- "['-121.530000', '39.520000', '30.000000', '1030.000000', '161.000000', '448.000000', '159.000000', '2.482100', '73800.000000']\n",
- "['-117.920000', '33.900000', '13.000000', '1814.000000', '320.000000', '1010.000000', '313.000000', '6.348900', '337900.000000']\n",
- "['-118.370000', '34.210000', '33.000000', '2034.000000', '470.000000', '1990.000000', '423.000000', '3.745500', '159600.000000']\n",
- "['-118.040000', '33.850000', '18.000000', '3628.000000', '546.000000', '1922.000000', '544.000000', '7.505700', '328500.000000']\n",
- "['-118.460000', '33.980000', '19.000000', '2520.000000', '726.000000', '964.000000', '663.000000', '3.806800', '500001.000000']\n",
- "['-118.050000', '33.900000', '36.000000', '1047.000000', '227.000000', '975.000000', '239.000000', '3.189700', '155000.000000']\n",
- "['-122.950000', '40.710000', '26.000000', '2231.000000', '421.000000', '987.000000', '364.000000', '2.479200', '88800.000000']\n",
- "['-122.000000', '37.300000', '28.000000', '5096.000000', '1011.000000', '2588.000000', '954.000000', '5.357000', '355200.000000']\n",
- "['-121.860000', '37.400000', '21.000000', '1386.000000', '260.000000', '946.000000', '257.000000', '6.522600', '258500.000000']\n",
- "['-119.250000', '36.560000', '35.000000', '1675.000000', '373.000000', '1131.000000', '316.000000', '1.672200', '59100.000000']\n",
- "['-118.210000', '34.560000', '12.000000', '2472.000000', '408.000000', '1048.000000', '380.000000', '4.709700', '262100.000000']\n",
- "['-118.260000', '34.020000', '39.000000', '698.000000', '232.000000', '1046.000000', '228.000000', '2.235600', '119500.000000']\n",
- "['-117.280000', '34.150000', '32.000000', '2170.000000', '430.000000', '815.000000', '401.000000', '3.176500', '135000.000000']\n",
- "['-122.440000', '37.660000', '21.000000', '5108.000000', '1510.000000', '3288.000000', '1405.000000', '3.192700', '252600.000000']\n",
- "['-118.990000', '35.390000', '36.000000', '1438.000000', '348.000000', '1054.000000', '341.000000', '1.831900', '55400.000000']\n",
- "['-117.140000', '34.060000', '15.000000', '3057.000000', '510.000000', '1154.000000', '460.000000', '3.974100', '141100.000000']\n",
- "['-122.150000', '37.410000', '15.000000', '2577.000000', '360.000000', '979.000000', '364.000000', '10.476000', '500001.000000']\n",
- "['-121.200000', '38.670000', '26.000000', '1546.000000', '287.000000', '773.000000', '299.000000', '2.980300', '115400.000000']\n",
- "['-122.150000', '37.470000', '37.000000', '1844.000000', '382.000000', '1634.000000', '417.000000', '2.799300', '145500.000000']\n",
- "['-118.340000', '33.950000', '25.000000', '3762.000000', '1281.000000', '4015.000000', '1178.000000', '2.158700', '143800.000000']\n",
- "['-118.250000', '34.080000', '44.000000', '1425.000000', '438.000000', '1121.000000', '374.000000', '2.110800', '200000.000000']\n",
- "['-119.580000', '36.100000', '21.000000', '1382.000000', '327.000000', '1469.000000', '355.000000', '1.396700', '46500.000000']\n",
- "['-121.310000', '38.710000', '18.000000', '3998.000000', '744.000000', '2071.000000', '660.000000', '4.383600', '102000.000000']\n",
- "['-118.420000', '34.120000', '27.000000', '2089.000000', '303.000000', '654.000000', '270.000000', '12.376700', '500001.000000']\n",
- "['-117.180000', '34.060000', '52.000000', '954.000000', '233.000000', '533.000000', '239.000000', '1.302100', '100000.000000']\n",
- "['-115.900000', '32.690000', '18.000000', '414.000000', '86.000000', '98.000000', '54.000000', '1.541700', '57500.000000']\n",
- "['-118.360000', '33.980000', '46.000000', '1425.000000', '283.000000', '782.000000', '273.000000', '5.057000', '246300.000000']\n",
- "['-122.500000', '37.600000', '35.000000', '2197.000000', '369.000000', '971.000000', '326.000000', '4.250000', '241700.000000']\n",
- "['-121.500000', '36.810000', '20.000000', '1345.000000', '230.000000', '731.000000', '217.000000', '4.233300', '363300.000000']\n",
- "['-118.190000', '33.820000', '11.000000', '872.000000', '203.000000', '422.000000', '221.000000', '4.636400', '156300.000000']\n",
- "['-117.300000', '34.150000', '40.000000', '961.000000', '199.000000', '509.000000', '182.000000', '2.060000', '85500.000000']\n",
- "['-118.420000', '34.230000', '34.000000', '1531.000000', '278.000000', '1064.000000', '274.000000', '5.668700', '207300.000000']\n",
- "['-118.120000', '33.900000', '38.000000', '1222.000000', '282.000000', '756.000000', '256.000000', '4.125000', '173900.000000']\n",
- "['-119.800000', '36.790000', '45.000000', '1337.000000', '187.000000', '471.000000', '187.000000', '5.187000', '153800.000000']\n",
- "['-119.740000', '34.350000', '34.000000', '1664.000000', '292.000000', '705.000000', '257.000000', '5.000000', '329400.000000']\n",
- "['-121.970000', '37.970000', '26.000000', '1977.000000', '264.000000', '817.000000', '273.000000', '5.751200', '240200.000000']\n",
- "['-117.070000', '34.050000', '14.000000', '5764.000000', '1006.000000', '1876.000000', '841.000000', '1.969400', '173200.000000']\n",
- "['-122.290000', '37.820000', '2.000000', '158.000000', '43.000000', '94.000000', '57.000000', '2.562500', '60000.000000']\n",
- "['-116.310000', '33.650000', '8.000000', '3079.000000', '558.000000', '1572.000000', '474.000000', '4.593800', '102600.000000']\n",
- "['-118.270000', '34.010000', '43.000000', '1235.000000', '385.000000', '1745.000000', '372.000000', '2.081700', '113300.000000']\n",
- "['-122.440000', '37.760000', '52.000000', '1968.000000', '472.000000', '784.000000', '430.000000', '3.370200', '370000.000000']\n",
- "['-118.270000', '34.150000', '14.000000', '1744.000000', '536.000000', '1494.000000', '531.000000', '3.217100', '230800.000000']\n",
- "['-118.410000', '34.030000', '36.000000', '3053.000000', '635.000000', '1234.000000', '577.000000', '5.163700', '500001.000000']\n",
- "['-121.450000', '38.610000', '32.000000', '2436.000000', '612.000000', '1509.000000', '618.000000', '1.042400', '81400.000000']\n",
- "['-117.250000', '32.830000', '17.000000', '2075.000000', '262.000000', '704.000000', '241.000000', '10.952900', '500001.000000']\n",
- "['-119.800000', '36.820000', '24.000000', '5377.000000', '1005.000000', '2010.000000', '982.000000', '3.454200', '121200.000000']\n",
- "['-121.310000', '38.010000', '22.000000', '2101.000000', '514.000000', '1304.000000', '511.000000', '2.834800', '101600.000000']\n",
- "['-118.180000', '34.050000', '41.000000', '762.000000', '147.000000', '817.000000', '176.000000', '3.750000', '123100.000000']\n",
- "['-122.130000', '37.370000', '30.000000', '2139.000000', '260.000000', '742.000000', '242.000000', '11.806000', '500001.000000']\n",
- "['-119.750000', '36.780000', '28.000000', '3257.000000', '752.000000', '1981.000000', '712.000000', '2.293000', '71700.000000']\n",
- "['-117.090000', '32.740000', '42.000000', '1986.000000', '472.000000', '1472.000000', '475.000000', '2.175700', '110100.000000']\n",
- "['-122.020000', '37.330000', '25.000000', '3823.000000', '584.000000', '1689.000000', '571.000000', '7.369300', '373600.000000']\n",
- "['-117.200000', '32.840000', '34.000000', '3353.000000', '544.000000', '1583.000000', '571.000000', '4.550000', '187700.000000']\n",
- "['-118.140000', '34.010000', '46.000000', '1746.000000', '447.000000', '1296.000000', '392.000000', '2.392900', '156800.000000']\n",
- "['-122.430000', '37.780000', '29.000000', '1310.000000', '364.000000', '1009.000000', '379.000000', '1.384400', '177500.000000']\n",
- "['-118.100000', '34.010000', '29.000000', '2077.000000', '564.000000', '2087.000000', '543.000000', '2.660000', '189200.000000']\n",
- "['-118.350000', '34.100000', '20.000000', '2745.000000', '782.000000', '1161.000000', '739.000000', '3.904400', '436400.000000']\n",
- "['-118.000000', '33.810000', '33.000000', '2970.000000', '547.000000', '1869.000000', '539.000000', '4.363600', '201800.000000']\n",
- "['-121.460000', '38.560000', '52.000000', '1750.000000', '372.000000', '764.000000', '369.000000', '2.919100', '111800.000000']\n",
- "['-118.270000', '33.870000', '21.000000', '6108.000000', '1130.000000', '3244.000000', '1113.000000', '4.276800', '181400.000000']\n",
- "['-118.260000', '33.950000', '44.000000', '1771.000000', '378.000000', '1296.000000', '399.000000', '1.638900', '96700.000000']\n",
- "['-119.010000', '35.380000', '52.000000', '114.000000', '26.000000', '158.000000', '26.000000', '1.075000', '67500.000000']\n",
- "['-117.080000', '32.800000', '32.000000', '1587.000000', '268.000000', '635.000000', '249.000000', '3.375000', '178100.000000']\n",
- "['-122.200000', '40.260000', '15.000000', '2102.000000', '358.000000', '957.000000', '371.000000', '3.190800', '137900.000000']\n",
- "['-119.980000', '38.940000', '25.000000', '1339.000000', '328.000000', '503.000000', '219.000000', '1.901800', '109700.000000']\n",
- "['-122.530000', '37.950000', '22.000000', '7446.000000', '1979.000000', '2980.000000', '1888.000000', '3.583800', '271300.000000']\n",
- "['-118.300000', '34.050000', '51.000000', '1005.000000', '314.000000', '1227.000000', '306.000000', '2.429700', '162500.000000']\n",
- "['-121.860000', '39.750000', '18.000000', '1651.000000', '309.000000', '856.000000', '293.000000', '3.504600', '118300.000000']\n",
- "['-122.060000', '37.330000', '23.000000', '4507.000000', '751.000000', '2167.000000', '722.000000', '7.010200', '500001.000000']\n",
- "['-122.450000', '38.010000', '36.000000', '4501.000000', '832.000000', '2196.000000', '800.000000', '4.318200', '252700.000000']\n",
- "['-117.010000', '32.770000', '24.000000', '2311.000000', '536.000000', '1005.000000', '525.000000', '2.900000', '185200.000000']\n",
- "['-120.870000', '37.760000', '16.000000', '1174.000000', '249.000000', '601.000000', '242.000000', '1.714300', '113300.000000']\n",
- "['-121.790000', '38.540000', '7.000000', '1777.000000', '513.000000', '4479.000000', '504.000000', '1.465300', '310000.000000']\n",
- "['-117.810000', '33.820000', '22.000000', '2898.000000', '335.000000', '1057.000000', '324.000000', '10.811100', '500001.000000']\n",
- "['-117.590000', '33.660000', '3.000000', '1206.000000', '256.000000', '563.000000', '287.000000', '5.158900', '167800.000000']\n",
- "['-117.360000', '34.090000', '32.000000', '3616.000000', '631.000000', '2131.000000', '593.000000', '3.287900', '95500.000000']\n",
- "['-121.520000', '39.500000', '33.000000', '1462.000000', '241.000000', '569.000000', '231.000000', '3.283300', '82600.000000']\n",
- "['-122.270000', '37.840000', '52.000000', '1503.000000', '298.000000', '690.000000', '275.000000', '2.603300', '162900.000000']\n",
- "['-122.210000', '40.200000', '19.000000', '3404.000000', '731.000000', '1421.000000', '683.000000', '2.614900', '84400.000000']\n",
- "['-117.240000', '33.180000', '19.000000', '3337.000000', '565.000000', '1646.000000', '554.000000', '5.019500', '200200.000000']\n",
- "['-122.550000', '37.980000', '31.000000', '3807.000000', '828.000000', '1581.000000', '795.000000', '3.293000', '337500.000000']\n",
- "['-118.450000', '34.000000', '46.000000', '1777.000000', '362.000000', '896.000000', '334.000000', '4.450000', '348300.000000']\n",
- "['-117.880000', '33.850000', '34.000000', '1127.000000', '185.000000', '588.000000', '181.000000', '4.375000', '224700.000000']\n",
- "['-117.180000', '32.760000', '52.000000', '2023.000000', '301.000000', '649.000000', '285.000000', '4.739600', '441700.000000']\n",
- "['-118.300000', '33.880000', '29.000000', '850.000000', '229.000000', '563.000000', '204.000000', '3.737500', '247700.000000']\n",
- "['-122.040000', '38.280000', '12.000000', '3861.000000', '795.000000', '2129.000000', '806.000000', '3.676000', '135000.000000']\n",
- "['-122.430000', '40.470000', '16.000000', '3552.000000', '704.000000', '1801.000000', '658.000000', '2.149600', '97700.000000']\n",
- "['-118.380000', '33.860000', '24.000000', '3124.000000', '560.000000', '1312.000000', '542.000000', '6.302100', '333800.000000']\n",
- "['-119.570000', '36.090000', '6.000000', '2015.000000', '413.000000', '992.000000', '319.000000', '2.388900', '53200.000000']\n",
- "['-117.870000', '34.120000', '34.000000', '1004.000000', '220.000000', '772.000000', '217.000000', '3.857100', '174500.000000']\n",
- "['-116.880000', '32.810000', '35.000000', '2926.000000', '562.000000', '1590.000000', '506.000000', '4.201400', '143200.000000']\n",
- "['-118.580000', '34.210000', '13.000000', '6227.000000', '1317.000000', '3739.000000', '1226.000000', '4.031300', '299300.000000']\n",
- "['-122.040000', '37.880000', '32.000000', '3250.000000', '550.000000', '1230.000000', '557.000000', '4.642400', '312700.000000']\n",
- "['-122.440000', '37.720000', '52.000000', '1775.000000', '347.000000', '1102.000000', '367.000000', '4.312500', '267200.000000']\n",
- "['-121.810000', '37.370000', '26.000000', '2987.000000', '539.000000', '1931.000000', '518.000000', '5.109900', '213100.000000']\n",
- "['-122.500000', '37.770000', '52.000000', '2433.000000', '454.000000', '1070.000000', '420.000000', '4.125000', '359500.000000']\n",
- "['-121.940000', '37.940000', '26.000000', '1299.000000', '174.000000', '533.000000', '180.000000', '6.229600', '291700.000000']\n",
- "['-118.450000', '34.120000', '20.000000', '10722.000000', '1617.000000', '3731.000000', '1511.000000', '9.744900', '500001.000000']\n",
- "['-121.700000', '39.070000', '26.000000', '2668.000000', '510.000000', '1437.000000', '505.000000', '3.312500', '100000.000000']\n",
- "['-118.100000', '34.650000', '33.000000', '873.000000', '177.000000', '425.000000', '142.000000', '2.670000', '187500.000000']\n",
- "['-119.020000', '36.060000', '41.000000', '2279.000000', '538.000000', '1908.000000', '511.000000', '1.395200', '43100.000000']\n",
- "['-118.060000', '34.080000', '42.000000', '1988.000000', '402.000000', '1239.000000', '402.000000', '3.256900', '201500.000000']\n",
- "['-117.660000', '33.610000', '17.000000', '3464.000000', '519.000000', '1713.000000', '530.000000', '6.047100', '248400.000000']\n",
- "['-117.400000', '33.940000', '30.000000', '1198.000000', '251.000000', '1019.000000', '214.000000', '3.050900', '82700.000000']\n",
- "['-118.190000', '33.830000', '30.000000', '2246.000000', '552.000000', '1032.000000', '548.000000', '3.587100', '347100.000000']\n",
- "['-121.550000', '39.510000', '50.000000', '1050.000000', '288.000000', '485.000000', '260.000000', '1.160700', '51700.000000']\n",
- "['-121.980000', '37.140000', '37.000000', '74.000000', '19.000000', '63.000000', '17.000000', '9.590800', '350000.000000']\n",
- "['-117.060000', '32.610000', '24.000000', '4369.000000', '1353.000000', '3123.000000', '1247.000000', '2.057100', '152300.000000']\n",
- "['-118.320000', '34.040000', '39.000000', '2965.000000', '812.000000', '2638.000000', '794.000000', '2.532000', '172700.000000']\n",
- "['-117.130000', '32.760000', '41.000000', '1545.000000', '420.000000', '747.000000', '415.000000', '2.375000', '154400.000000']\n",
- "['-122.500000', '37.760000', '46.000000', '2226.000000', '480.000000', '1272.000000', '468.000000', '4.264400', '284100.000000']\n",
- "['-120.870000', '37.620000', '30.000000', '455.000000', '70.000000', '220.000000', '69.000000', '4.895800', '142500.000000']\n",
- "['-118.240000', '34.220000', '41.000000', '2476.000000', '506.000000', '1271.000000', '485.000000', '3.453100', '263900.000000']\n",
- "['-117.690000', '33.480000', '25.000000', '3240.000000', '481.000000', '1462.000000', '497.000000', '6.181500', '288500.000000']\n",
- "['-122.200000', '39.750000', '18.000000', '2603.000000', '576.000000', '1616.000000', '588.000000', '2.019200', '63700.000000']\n",
- "['-117.080000', '32.640000', '43.000000', '1005.000000', '230.000000', '548.000000', '252.000000', '1.867200', '145800.000000']\n",
- "['-117.910000', '33.820000', '32.000000', '1408.000000', '307.000000', '1331.000000', '284.000000', '3.701400', '179600.000000']\n",
- "['-122.000000', '38.730000', '31.000000', '371.000000', '74.000000', '208.000000', '84.000000', '3.875000', '137500.000000']\n",
- "['-118.290000', '33.840000', '33.000000', '896.000000', '208.000000', '843.000000', '200.000000', '3.500000', '183000.000000']\n",
- "['-118.130000', '33.860000', '45.000000', '1320.000000', '256.000000', '645.000000', '256.000000', '4.400000', '209500.000000']\n",
- "['-118.350000', '33.890000', '29.000000', '2940.000000', '708.000000', '2175.000000', '684.000000', '3.648600', '229000.000000']\n",
- "['-122.130000', '40.010000', '21.000000', '916.000000', '194.000000', '451.000000', '178.000000', '2.125000', '63300.000000']\n",
- "['-122.070000', '37.960000', '37.000000', '1217.000000', '199.000000', '552.000000', '194.000000', '5.044500', '196200.000000']\n",
- "['-117.260000', '32.850000', '30.000000', '3652.000000', '499.000000', '978.000000', '462.000000', '8.237400', '500001.000000']\n",
- "['-117.870000', '33.740000', '16.000000', '1243.000000', '365.000000', '1925.000000', '376.000000', '2.763200', '158900.000000']\n",
- "['-121.880000', '37.440000', '23.000000', '1310.000000', '267.000000', '910.000000', '261.000000', '5.399400', '237900.000000']\n",
- "['-121.670000', '36.580000', '11.000000', '5892.000000', '837.000000', '2327.000000', '812.000000', '6.155100', '291800.000000']\n",
- "['-116.890000', '33.790000', '12.000000', '701.000000', '130.000000', '434.000000', '110.000000', '2.057700', '56700.000000']\n",
- "['-122.660000', '38.470000', '20.000000', '2806.000000', '477.000000', '1369.000000', '460.000000', '4.750000', '190500.000000']\n",
- "['-121.450000', '38.540000', '38.000000', '1865.000000', '384.000000', '1052.000000', '354.000000', '1.789100', '60500.000000']\n",
- "['-121.000000', '37.660000', '43.000000', '2369.000000', '413.000000', '944.000000', '422.000000', '3.263200', '138100.000000']\n",
- "['-117.270000', '32.840000', '34.000000', '1655.000000', '450.000000', '870.000000', '411.000000', '3.210900', '376000.000000']\n",
- "['-117.870000', '34.110000', '23.000000', '4066.000000', '819.000000', '2105.000000', '737.000000', '4.655600', '199600.000000']\n",
- "['-121.440000', '37.750000', '16.000000', '2229.000000', '458.000000', '1199.000000', '445.000000', '3.482100', '170600.000000']\n",
- "['-118.130000', '33.760000', '44.000000', '2532.000000', '621.000000', '961.000000', '550.000000', '3.935200', '406900.000000']\n",
- "['-118.310000', '34.260000', '41.000000', '1297.000000', '327.000000', '733.000000', '315.000000', '3.058300', '160300.000000']\n",
- "['-122.000000', '38.370000', '18.000000', '1048.000000', '185.000000', '469.000000', '162.000000', '3.625000', '125000.000000']\n",
- "['-122.270000', '41.230000', '40.000000', '1958.000000', '386.000000', '725.000000', '331.000000', '2.189800', '65500.000000']\n",
- "['-120.890000', '37.520000', '42.000000', '1200.000000', '221.000000', '647.000000', '192.000000', '2.540200', '157500.000000']\n",
- "['-118.750000', '34.290000', '17.000000', '5512.000000', '765.000000', '2734.000000', '814.000000', '6.607300', '258100.000000']\n",
- "['-118.180000', '34.020000', '36.000000', '1138.000000', '296.000000', '1484.000000', '320.000000', '2.281300', '150700.000000']\n",
- "['-121.370000', '38.410000', '14.000000', '3727.000000', '685.000000', '1741.000000', '646.000000', '3.562500', '125700.000000']\n",
- "['-120.310000', '37.290000', '36.000000', '969.000000', '206.000000', '732.000000', '175.000000', '1.593800', '57600.000000']\n",
- "['-117.880000', '33.730000', '32.000000', '1947.000000', '355.000000', '1786.000000', '332.000000', '4.572600', '177500.000000']\n",
- "['-117.330000', '33.980000', '52.000000', '1417.000000', '353.000000', '881.000000', '300.000000', '1.953100', '162500.000000']\n",
- "['-118.490000', '34.030000', '30.000000', '4061.000000', '927.000000', '1487.000000', '865.000000', '4.182700', '435100.000000']\n",
- "['-121.930000', '38.010000', '9.000000', '2294.000000', '389.000000', '1142.000000', '365.000000', '5.336300', '160800.000000']\n",
- "['-122.450000', '37.700000', '46.000000', '2193.000000', '499.000000', '1814.000000', '489.000000', '4.012500', '230100.000000']\n",
- "['-117.080000', '32.750000', '20.000000', '1886.000000', '586.000000', '1134.000000', '525.000000', '1.502900', '100000.000000']\n",
- "['-116.190000', '33.690000', '11.000000', '5692.000000', '1346.000000', '5682.000000', '1273.000000', '2.538300', '74000.000000']\n",
- "['-119.730000', '36.620000', '35.000000', '2080.000000', '365.000000', '1026.000000', '333.000000', '3.578100', '92800.000000']\n",
- "['-117.120000', '32.590000', '28.000000', '2793.000000', '706.000000', '1825.000000', '676.000000', '2.672400', '144500.000000']\n",
- "['-117.630000', '34.090000', '8.000000', '3557.000000', '890.000000', '2251.000000', '765.000000', '2.681800', '114100.000000']\n",
- "['-118.260000', '34.070000', '40.000000', '680.000000', '273.000000', '995.000000', '249.000000', '2.260700', '165600.000000']\n",
- "['-118.260000', '33.970000', '46.000000', '1521.000000', '352.000000', '1100.000000', '334.000000', '1.550000', '100600.000000']\n",
- "['-119.840000', '36.750000', '34.000000', '1186.000000', '300.000000', '774.000000', '271.000000', '1.575000', '57100.000000']\n",
- "['-121.280000', '38.670000', '29.000000', '1087.000000', '174.000000', '430.000000', '174.000000', '4.362500', '158800.000000']\n",
- "['-117.350000', '34.110000', '34.000000', '2104.000000', '388.000000', '1578.000000', '365.000000', '3.083300', '88400.000000']\n",
- "['-121.320000', '36.420000', '20.000000', '1054.000000', '269.000000', '1219.000000', '273.000000', '3.043700', '76600.000000']\n",
- "['-118.350000', '34.020000', '34.000000', '3978.000000', '1073.000000', '2725.000000', '1035.000000', '1.762200', '167900.000000']\n",
- "['-119.810000', '37.670000', '24.000000', '172.000000', '42.000000', '79.000000', '30.000000', '3.833300', '93800.000000']\n",
- "['-118.150000', '34.050000', '33.000000', '3287.000000', '649.000000', '1783.000000', '653.000000', '3.847200', '293300.000000']\n",
- "['-121.220000', '37.810000', '17.000000', '2879.000000', '542.000000', '1802.000000', '530.000000', '3.637800', '126100.000000']\n",
- "['-119.720000', '34.430000', '30.000000', '2491.000000', '656.000000', '1091.000000', '576.000000', '2.513900', '279500.000000']\n",
- "['-117.850000', '33.840000', '17.000000', '2830.000000', '502.000000', '1370.000000', '459.000000', '5.178500', '247300.000000']\n",
- "['-117.200000', '32.790000', '31.000000', '3417.000000', '533.000000', '1245.000000', '532.000000', '4.778800', '276000.000000']\n",
- "['-118.630000', '34.180000', '33.000000', '5252.000000', '760.000000', '2041.000000', '730.000000', '6.797700', '389700.000000']\n",
- "['-117.490000', '33.640000', '3.000000', '8874.000000', '1302.000000', '3191.000000', '1027.000000', '6.858800', '302000.000000']\n",
- "['-118.370000', '33.840000', '35.000000', '1792.000000', '322.000000', '978.000000', '326.000000', '4.958300', '342800.000000']\n",
- "['-122.020000', '38.260000', '20.000000', '3899.000000', '763.000000', '2198.000000', '779.000000', '3.206100', '120400.000000']\n",
- "['-121.330000', '38.660000', '17.000000', '2767.000000', '584.000000', '1275.000000', '568.000000', '2.590900', '125400.000000']\n",
- "['-118.740000', '36.230000', '22.000000', '1033.000000', '232.000000', '442.000000', '136.000000', '2.644700', '137500.000000']\n",
- "['-117.890000', '34.490000', '12.000000', '3449.000000', '598.000000', '1502.000000', '540.000000', '3.704300', '150800.000000']\n",
- "['-117.410000', '33.960000', '24.000000', '4481.000000', '901.000000', '2398.000000', '823.000000', '3.864000', '123400.000000']\n",
- "['-118.750000', '34.420000', '28.000000', '1000.000000', '206.000000', '545.000000', '154.000000', '2.416700', '191700.000000']\n",
- "['-122.480000', '37.740000', '52.000000', '2285.000000', '435.000000', '1211.000000', '442.000000', '4.020800', '323100.000000']\n",
- "['-118.140000', '34.040000', '43.000000', '1949.000000', '464.000000', '1216.000000', '457.000000', '3.321400', '209300.000000']\n",
- "['-122.560000', '37.900000', '36.000000', '1760.000000', '283.000000', '562.000000', '246.000000', '6.754600', '402400.000000']\n",
- "['-122.090000', '37.390000', '43.000000', '2065.000000', '535.000000', '1029.000000', '500.000000', '3.731800', '327700.000000']\n",
- "['-121.800000', '36.940000', '29.000000', '2377.000000', '476.000000', '1669.000000', '499.000000', '2.821400', '190100.000000']\n",
- "['-117.830000', '33.830000', '13.000000', '3759.000000', '489.000000', '1496.000000', '499.000000', '8.381800', '377600.000000']\n",
- "['-121.680000', '36.900000', '13.000000', '833.000000', '130.000000', '405.000000', '127.000000', '5.272900', '322900.000000']\n",
- "['-122.300000', '37.880000', '52.000000', '409.000000', '97.000000', '208.000000', '98.000000', '1.697100', '138800.000000']\n",
- "['-121.040000', '37.670000', '16.000000', '19.000000', '19.000000', '166.000000', '9.000000', '0.536000', '162500.000000']\n",
- "['-118.320000', '34.090000', '28.000000', '2173.000000', '819.000000', '2548.000000', '763.000000', '1.879000', '218800.000000']\n",
- "['-118.120000', '33.810000', '36.000000', '1774.000000', '299.000000', '784.000000', '298.000000', '5.044700', '249200.000000']\n",
- "['-121.810000', '39.700000', '21.000000', '5051.000000', '1054.000000', '2948.000000', '980.000000', '1.586300', '81300.000000']\n",
- "['-121.840000', '36.520000', '18.000000', '3165.000000', '533.000000', '1312.000000', '434.000000', '6.523400', '357400.000000']\n",
- "['-121.790000', '37.330000', '18.000000', '3611.000000', '614.000000', '2381.000000', '642.000000', '5.634500', '231000.000000']\n",
- "['-118.160000', '34.180000', '48.000000', '568.000000', '145.000000', '559.000000', '135.000000', '2.413500', '135700.000000']\n",
- "['-119.400000', '36.590000', '37.000000', '1486.000000', '296.000000', '977.000000', '290.000000', '3.507400', '93800.000000']\n",
- "['-122.270000', '37.800000', '39.000000', '1715.000000', '623.000000', '1327.000000', '467.000000', '1.847700', '179200.000000']\n",
- "['-117.730000', '33.570000', '5.000000', '11976.000000', '2495.000000', '4327.000000', '2009.000000', '4.848800', '194400.000000']\n",
- "['-121.280000', '37.920000', '30.000000', '1061.000000', '230.000000', '851.000000', '195.000000', '2.441200', '61600.000000']\n",
- "['-119.810000', '36.770000', '43.000000', '2341.000000', '395.000000', '890.000000', '375.000000', '3.426500', '85000.000000']\n",
- "['-122.260000', '37.850000', '50.000000', '1120.000000', '283.000000', '697.000000', '264.000000', '2.125000', '140000.000000']\n",
- "['-117.950000', '33.930000', '37.000000', '2633.000000', '630.000000', '1904.000000', '630.000000', '2.612300', '161300.000000']\n",
- "['-120.120000', '38.120000', '37.000000', '3355.000000', '666.000000', '338.000000', '136.000000', '2.062500', '88900.000000']\n",
- "['-121.880000', '37.350000', '52.000000', '1704.000000', '418.000000', '1336.000000', '411.000000', '2.816700', '183500.000000']\n",
- "['-118.110000', '33.870000', '15.000000', '3254.000000', '598.000000', '1772.000000', '618.000000', '5.041700', '240800.000000']\n",
- "['-122.080000', '37.690000', '42.000000', '1414.000000', '274.000000', '629.000000', '244.000000', '3.347800', '184900.000000']\n",
- "['-121.680000', '39.150000', '14.000000', '2774.000000', '451.000000', '1292.000000', '428.000000', '4.383300', '115200.000000']\n",
- "['-122.160000', '37.710000', '36.000000', '666.000000', '132.000000', '366.000000', '134.000000', '3.464300', '175000.000000']\n",
- "['-118.070000', '34.090000', '35.000000', '1224.000000', '267.000000', '887.000000', '276.000000', '4.098700', '202400.000000']\n",
- "['-117.690000', '33.650000', '16.000000', '5805.000000', '852.000000', '2356.000000', '795.000000', '6.106200', '274600.000000']\n",
- "['-118.350000', '34.030000', '49.000000', '2334.000000', '530.000000', '1334.000000', '447.000000', '1.890000', '124000.000000']\n",
- "['-122.790000', '39.020000', '23.000000', '642.000000', '203.000000', '265.000000', '84.000000', '1.883300', '96900.000000']\n",
- "['-118.140000', '33.890000', '33.000000', '2867.000000', '786.000000', '1774.000000', '705.000000', '2.929200', '183400.000000']\n",
- "['-121.890000', '37.420000', '26.000000', '40.000000', '8.000000', '52.000000', '7.000000', '7.719700', '225000.000000']\n",
- "['-122.410000', '37.760000', '52.000000', '492.000000', '139.000000', '316.000000', '168.000000', '3.086500', '225000.000000']\n",
- "['-118.600000', '34.160000', '37.000000', '3441.000000', '584.000000', '1283.000000', '544.000000', '4.165600', '313100.000000']\n",
- "['-118.410000', '34.020000', '24.000000', '2610.000000', '756.000000', '1322.000000', '692.000000', '3.502200', '281300.000000']\n",
- "['-117.530000', '33.970000', '29.000000', '1430.000000', '273.000000', '872.000000', '283.000000', '4.083300', '141000.000000']\n",
- "['-117.130000', '32.700000', '35.000000', '365.000000', '98.000000', '463.000000', '112.000000', '2.558800', '78800.000000']\n",
- "['-117.140000', '32.900000', '16.000000', '3217.000000', '716.000000', '2054.000000', '687.000000', '4.223400', '162100.000000']\n",
- "['-118.160000', '34.110000', '31.000000', '5715.000000', '1154.000000', '2639.000000', '1079.000000', '4.166100', '364400.000000']\n",
- "['-117.180000', '32.700000', '42.000000', '1691.000000', '286.000000', '761.000000', '281.000000', '5.138600', '404500.000000']\n",
- "['-117.970000', '33.720000', '24.000000', '2991.000000', '500.000000', '1437.000000', '453.000000', '5.428600', '273400.000000']\n",
- "['-118.250000', '34.090000', '52.000000', '104.000000', '20.000000', '32.000000', '17.000000', '3.750000', '241700.000000']\n",
- "['-118.140000', '34.110000', '52.000000', '3367.000000', '545.000000', '1427.000000', '535.000000', '5.229200', '444500.000000']\n",
- "['-120.010000', '34.540000', '30.000000', '2992.000000', '609.000000', '1288.000000', '465.000000', '3.937500', '292900.000000']\n",
- "['-117.410000', '34.100000', '5.000000', '4937.000000', '1139.000000', '2204.000000', '812.000000', '2.527200', '92000.000000']\n",
- "['-118.220000', '34.520000', '7.000000', '4524.000000', '735.000000', '2298.000000', '717.000000', '6.553800', '311600.000000']\n",
- "['-117.910000', '33.870000', '29.000000', '1121.000000', '291.000000', '762.000000', '276.000000', '2.500000', '143800.000000']\n",
- "['-117.090000', '32.760000', '29.000000', '1650.000000', '496.000000', '882.000000', '445.000000', '2.228700', '140000.000000']\n",
- "['-122.270000', '37.820000', '52.000000', '1630.000000', '456.000000', '1162.000000', '400.000000', '1.247500', '104200.000000']\n",
- "['-118.200000', '34.060000', '46.000000', '321.000000', '101.000000', '401.000000', '86.000000', '2.102900', '109400.000000']\n",
- "['-118.360000', '33.900000', '40.000000', '1271.000000', '276.000000', '725.000000', '234.000000', '5.045200', '231900.000000']\n",
- "['-122.000000', '37.860000', '18.000000', '8953.000000', '1074.000000', '3011.000000', '993.000000', '10.737200', '500001.000000']\n",
- "['-121.360000', '39.520000', '15.000000', '2490.000000', '527.000000', '1229.000000', '497.000000', '2.391700', '85700.000000']\n",
- "['-122.000000', '38.280000', '3.000000', '7030.000000', '1191.000000', '3238.000000', '1055.000000', '4.962000', '161700.000000']\n",
- "['-117.700000', '33.680000', '29.000000', '5650.000000', '1084.000000', '3985.000000', '1056.000000', '2.819200', '162500.000000']\n",
- "['-118.280000', '34.030000', '26.000000', '2107.000000', '809.000000', '2821.000000', '572.000000', '0.844000', '350000.000000']\n",
- "['-118.250000', '34.150000', '13.000000', '1107.000000', '479.000000', '616.000000', '443.000000', '0.818500', '187500.000000']\n",
- "['-122.540000', '37.930000', '43.000000', '2998.000000', '470.000000', '970.000000', '430.000000', '5.538500', '431800.000000']\n",
- "['-118.250000', '34.020000', '50.000000', '180.000000', '89.000000', '356.000000', '76.000000', '2.194400', '158300.000000']\n",
- "['-122.060000', '36.980000', '15.000000', '3385.000000', '669.000000', '1571.000000', '615.000000', '4.225400', '320900.000000']\n",
- "['-122.450000', '37.770000', '52.000000', '2339.000000', '548.000000', '1090.000000', '507.000000', '3.367900', '350000.000000']\n",
- "['-118.040000', '33.850000', '23.000000', '3132.000000', '469.000000', '1646.000000', '478.000000', '5.777000', '315900.000000']\n",
- "['-118.120000', '34.150000', '19.000000', '557.000000', '216.000000', '673.000000', '212.000000', '2.176300', '168800.000000']\n",
- "['-118.310000', '33.940000', '43.000000', '2104.000000', '393.000000', '1132.000000', '394.000000', '3.068200', '142000.000000']\n",
- "['-118.440000', '34.160000', '33.000000', '1616.000000', '322.000000', '580.000000', '311.000000', '4.039100', '337500.000000']\n",
- "['-118.460000', '34.170000', '24.000000', '2814.000000', '675.000000', '1463.000000', '620.000000', '4.187500', '309300.000000']\n",
- "['-117.930000', '34.060000', '35.000000', '1022.000000', '183.000000', '628.000000', '187.000000', '3.937500', '187500.000000']\n",
- "['-121.810000', '36.570000', '13.000000', '3030.000000', '413.000000', '1027.000000', '363.000000', '6.961500', '500001.000000']\n",
- "['-118.420000', '34.000000', '33.000000', '1139.000000', '299.000000', '734.000000', '257.000000', '3.270800', '325000.000000']\n",
- "['-118.330000', '34.010000', '44.000000', '1762.000000', '463.000000', '786.000000', '445.000000', '1.923100', '188500.000000']\n",
- "['-118.240000', '33.930000', '19.000000', '325.000000', '74.000000', '354.000000', '87.000000', '2.750000', '90600.000000']\n",
- "['-116.940000', '32.810000', '22.000000', '4266.000000', '1010.000000', '2766.000000', '985.000000', '2.817500', '135200.000000']\n",
- "['-122.600000', '38.240000', '16.000000', '2621.000000', '416.000000', '1247.000000', '386.000000', '4.860300', '198400.000000']\n",
- "['-118.210000', '33.970000', '52.000000', '4220.000000', '908.000000', '3731.000000', '892.000000', '3.190100', '167600.000000']\n",
- "['-118.730000', '34.270000', '25.000000', '3409.000000', '493.000000', '1699.000000', '484.000000', '5.653000', '225800.000000']\n",
- "['-122.120000', '37.370000', '37.000000', '1446.000000', '181.000000', '549.000000', '190.000000', '10.735500', '500001.000000']\n",
- "['-122.420000', '40.440000', '16.000000', '994.000000', '185.000000', '495.000000', '181.000000', '2.187500', '76400.000000']\n",
- "['-122.130000', '37.720000', '26.000000', '2862.000000', '394.000000', '1030.000000', '397.000000', '7.912000', '367300.000000']\n",
- "['-121.170000', '37.880000', '22.000000', '1283.000000', '256.000000', '3082.000000', '239.000000', '3.536500', '111800.000000']\n",
- "['-122.430000', '37.720000', '48.000000', '1289.000000', '280.000000', '782.000000', '235.000000', '3.671900', '259800.000000']\n",
- "['-118.220000', '33.910000', '27.000000', '500.000000', '159.000000', '732.000000', '162.000000', '2.742600', '103100.000000']\n",
- "['-121.170000', '37.970000', '28.000000', '1374.000000', '248.000000', '769.000000', '229.000000', '3.638900', '130400.000000']\n",
- "['-122.270000', '37.860000', '52.000000', '2307.000000', '583.000000', '1127.000000', '548.000000', '1.844700', '198200.000000']\n",
- "['-119.190000', '36.140000', '41.000000', '759.000000', '140.000000', '408.000000', '129.000000', '3.900000', '85900.000000']\n",
- "['-122.410000', '37.600000', '31.000000', '4424.000000', '834.000000', '1915.000000', '817.000000', '4.136400', '412000.000000']\n",
- "['-116.830000', '32.810000', '18.000000', '2367.000000', '402.000000', '1021.000000', '395.000000', '4.812500', '210500.000000']\n",
- "['-119.340000', '36.330000', '17.000000', '2250.000000', '430.000000', '1218.000000', '468.000000', '4.181200', '93700.000000']\n",
- "['-123.220000', '39.160000', '29.000000', '6121.000000', '1222.000000', '3595.000000', '1189.000000', '2.631000', '109600.000000']\n",
- "['-121.920000', '37.720000', '22.000000', '4638.000000', '716.000000', '2302.000000', '687.000000', '5.347000', '219500.000000']\n",
- "['-116.570000', '33.760000', '25.000000', '2616.000000', '547.000000', '581.000000', '343.000000', '3.136400', '301600.000000']\n",
- "['-118.170000', '34.180000', '44.000000', '1401.000000', '246.000000', '607.000000', '271.000000', '2.847200', '218800.000000']\n",
- "['-117.200000', '32.800000', '36.000000', '4018.000000', '1067.000000', '1620.000000', '842.000000', '2.359900', '168400.000000']\n",
- "['-117.580000', '34.090000', '27.000000', '754.000000', '200.000000', '746.000000', '185.000000', '1.953100', '100800.000000']\n",
- "['-118.240000', '33.960000', '34.000000', '1724.000000', '432.000000', '1876.000000', '416.000000', '2.107800', '100600.000000']\n",
- "['-122.240000', '40.180000', '39.000000', '2191.000000', '493.000000', '1307.000000', '499.000000', '1.648300', '60800.000000']\n",
- "['-119.690000', '36.820000', '15.000000', '3303.000000', '512.000000', '1687.000000', '505.000000', '4.810000', '93600.000000']\n",
- "['-121.690000', '36.620000', '19.000000', '1907.000000', '323.000000', '681.000000', '270.000000', '6.033200', '244900.000000']\n",
- "['-119.280000', '36.350000', '7.000000', '3598.000000', '701.000000', '2080.000000', '678.000000', '3.111100', '72400.000000']\n",
- "['-117.990000', '33.810000', '46.000000', '38.000000', '8.000000', '66.000000', '14.000000', '4.166700', '162500.000000']\n",
- "['-117.650000', '35.000000', '36.000000', '1184.000000', '316.000000', '672.000000', '241.000000', '1.910700', '39800.000000']\n",
- "['-118.150000', '34.020000', '43.000000', '2172.000000', '605.000000', '2386.000000', '597.000000', '2.823900', '150600.000000']\n",
- "['-122.430000', '37.730000', '52.000000', '1583.000000', '347.000000', '935.000000', '341.000000', '4.678600', '263200.000000']\n",
- "['-117.040000', '32.730000', '36.000000', '2084.000000', '400.000000', '1097.000000', '398.000000', '3.271700', '130700.000000']\n",
- "['-118.080000', '34.140000', '45.000000', '2923.000000', '604.000000', '1903.000000', '560.000000', '3.172900', '218700.000000']\n",
- "['-121.070000', '39.200000', '45.000000', '204.000000', '62.000000', '133.000000', '51.000000', '1.000000', '90600.000000']\n",
- "['-117.120000', '32.660000', '52.000000', '16.000000', '4.000000', '8.000000', '3.000000', '1.125000', '60000.000000']\n",
- "['-118.130000', '34.130000', '39.000000', '2099.000000', '397.000000', '1500.000000', '380.000000', '4.830400', '493200.000000']\n",
- "['-122.220000', '37.880000', '20.000000', '95.000000', '13.000000', '31.000000', '15.000000', '2.444400', '475000.000000']\n",
- "['-122.520000', '37.930000', '34.000000', '2782.000000', '502.000000', '1219.000000', '507.000000', '5.077900', '333900.000000']\n",
- "['-122.090000', '37.630000', '36.000000', '1570.000000', '274.000000', '992.000000', '249.000000', '5.364400', '168800.000000']\n",
- "['-117.970000', '33.820000', '26.000000', '4013.000000', '985.000000', '2442.000000', '922.000000', '3.765500', '197700.000000']\n",
- "['-118.280000', '34.050000', '41.000000', '1075.000000', '597.000000', '2260.000000', '614.000000', '1.300000', '162500.000000']\n",
- "['-118.390000', '33.790000', '30.000000', '4402.000000', '563.000000', '1582.000000', '551.000000', '10.898000', '500001.000000']\n",
- "['-122.400000', '37.580000', '26.000000', '3281.000000', '531.000000', '1145.000000', '480.000000', '6.358000', '500001.000000']\n",
- "['-118.260000', '34.060000', '42.000000', '2541.000000', '1282.000000', '3974.000000', '1189.000000', '1.585400', '87500.000000']\n",
- "['-122.160000', '37.480000', '36.000000', '2238.000000', '479.000000', '1949.000000', '457.000000', '2.376900', '157300.000000']\n",
- "['-117.430000', '34.110000', '17.000000', '4109.000000', '884.000000', '2544.000000', '780.000000', '2.775700', '109800.000000']\n",
- "['-118.280000', '33.930000', '42.000000', '1898.000000', '460.000000', '1503.000000', '429.000000', '2.517900', '97400.000000']\n",
- "['-118.370000', '33.950000', '5.000000', '6955.000000', '2062.000000', '3591.000000', '1566.000000', '3.111000', '247600.000000']\n",
- "['-121.490000', '38.560000', '52.000000', '1777.000000', '368.000000', '624.000000', '350.000000', '3.672900', '137800.000000']\n",
- "['-121.800000', '38.550000', '11.000000', '5121.000000', '899.000000', '2258.000000', '901.000000', '4.716800', '223200.000000']\n",
- "['-122.190000', '39.920000', '20.000000', '2563.000000', '658.000000', '1363.000000', '611.000000', '1.023000', '54200.000000']\n",
- "['-118.010000', '33.840000', '29.000000', '3740.000000', '691.000000', '1724.000000', '638.000000', '3.962800', '215600.000000']\n",
- "['-118.310000', '33.960000', '48.000000', '2015.000000', '356.000000', '1020.000000', '338.000000', '4.062500', '138700.000000']\n",
- "['-121.060000', '39.220000', '52.000000', '1749.000000', '422.000000', '837.000000', '391.000000', '2.325000', '109700.000000']\n",
- "['-121.350000', '38.610000', '27.000000', '3900.000000', '776.000000', '1549.000000', '761.000000', '2.778800', '115700.000000']\n",
- "['-118.310000', '33.990000', '48.000000', '2235.000000', '433.000000', '1363.000000', '433.000000', '1.655900', '101400.000000']\n",
- "['-121.930000', '37.270000', '28.000000', '3428.000000', '753.000000', '1753.000000', '729.000000', '4.103300', '281000.000000']\n",
- "['-117.310000', '33.170000', '7.000000', '2349.000000', '312.000000', '809.000000', '282.000000', '5.552000', '283900.000000']\n",
- "['-120.890000', '37.480000', '27.000000', '1118.000000', '195.000000', '647.000000', '209.000000', '2.913500', '159400.000000']\n",
- "['-119.470000', '35.140000', '19.000000', '4190.000000', '690.000000', '1973.000000', '702.000000', '3.992900', '88300.000000']\n",
- "['-118.410000', '34.180000', '35.000000', '1975.000000', '384.000000', '882.000000', '406.000000', '4.375000', '291700.000000']\n",
- "['-119.810000', '36.700000', '52.000000', '314.000000', '57.000000', '178.000000', '66.000000', '1.240400', '52500.000000']\n",
- "['-117.080000', '33.160000', '11.000000', '6341.000000', '1030.000000', '2697.000000', '977.000000', '4.855400', '206700.000000']\n",
- "['-119.270000', '35.870000', '12.000000', '972.000000', '269.000000', '1134.000000', '286.000000', '1.630000', '49500.000000']\n",
- "['-122.310000', '40.750000', '18.000000', '1411.000000', '330.000000', '494.000000', '227.000000', '1.491100', '75800.000000']\n",
- "['-117.200000', '33.290000', '12.000000', '6358.000000', '1182.000000', '2778.000000', '1020.000000', '4.035700', '295900.000000']\n",
- "['-118.430000', '34.260000', '43.000000', '729.000000', '172.000000', '935.000000', '174.000000', '2.951900', '140900.000000']\n",
- "['-121.520000', '39.510000', '30.000000', '3085.000000', '610.000000', '1688.000000', '575.000000', '2.334000', '72200.000000']\n",
- "['-118.770000', '34.270000', '7.000000', '3074.000000', '794.000000', '1816.000000', '654.000000', '2.713700', '196400.000000']\n",
- "['-124.100000', '40.950000', '17.000000', '1485.000000', '345.000000', '823.000000', '316.000000', '1.899300', '78400.000000']\n",
- "['-117.150000', '32.800000', '27.000000', '1937.000000', '537.000000', '1211.000000', '482.000000', '2.750000', '87500.000000']\n",
- "['-118.370000', '34.160000', '11.000000', '2901.000000', '871.000000', '1659.000000', '789.000000', '3.110600', '209400.000000']\n",
- "['-122.500000', '37.740000', '44.000000', '2792.000000', '615.000000', '1640.000000', '579.000000', '4.062500', '272800.000000']\n",
- "['-120.920000', '39.560000', '48.000000', '1276.000000', '292.000000', '358.000000', '145.000000', '1.875000', '66600.000000']\n",
- "['-122.470000', '38.510000', '25.000000', '928.000000', '195.000000', '413.000000', '184.000000', '3.490400', '196900.000000']\n",
- "['-117.890000', '33.610000', '41.000000', '1790.000000', '361.000000', '540.000000', '284.000000', '6.024700', '500001.000000']\n",
- "['-121.350000', '38.400000', '11.000000', '2322.000000', '459.000000', '1373.000000', '424.000000', '3.175000', '94400.000000']\n",
- "['-117.920000', '34.120000', '32.000000', '2552.000000', '576.000000', '2161.000000', '548.000000', '2.945900', '144400.000000']\n",
- "['-118.310000', '33.800000', '30.000000', '3096.000000', '757.000000', '2048.000000', '704.000000', '3.125000', '233300.000000']\n",
- "['-120.350000', '37.040000', '37.000000', '1495.000000', '292.000000', '858.000000', '275.000000', '2.930600', '46300.000000']\n",
- "['-122.000000', '37.310000', '28.000000', '3811.000000', '585.000000', '1795.000000', '581.000000', '7.838300', '372700.000000']\n",
- "['-118.010000', '33.950000', '37.000000', '1165.000000', '210.000000', '627.000000', '221.000000', '4.692300', '181000.000000']\n",
- "['-118.070000', '34.090000', '40.000000', '1745.000000', '370.000000', '1293.000000', '357.000000', '2.547400', '198100.000000']\n",
- "['-117.500000', '33.920000', '28.000000', '2101.000000', '337.000000', '1061.000000', '348.000000', '4.550000', '146800.000000']\n",
- "['-123.740000', '40.660000', '25.000000', '2395.000000', '431.000000', '983.000000', '375.000000', '3.046900', '136000.000000']\n",
- "['-122.030000', '37.910000', '29.000000', '5438.000000', '871.000000', '2310.000000', '890.000000', '5.036200', '275300.000000']\n",
- "['-118.910000', '34.220000', '15.000000', '5644.000000', '757.000000', '2659.000000', '783.000000', '6.755900', '312000.000000']\n",
- "['-117.960000', '34.140000', '9.000000', '907.000000', '207.000000', '619.000000', '194.000000', '3.946400', '179600.000000']\n",
- "['-121.800000', '38.010000', '46.000000', '2273.000000', '495.000000', '1088.000000', '447.000000', '2.253200', '109400.000000']\n",
- "['-122.290000', '37.530000', '35.000000', '2043.000000', '511.000000', '1089.000000', '504.000000', '3.027800', '310600.000000']\n",
- "['-122.140000', '37.670000', '34.000000', '3036.000000', '533.000000', '1366.000000', '500.000000', '4.238600', '192300.000000']\n",
- "['-117.850000', '33.790000', '52.000000', '2102.000000', '403.000000', '898.000000', '365.000000', '3.682700', '236800.000000']\n",
- "['-122.100000', '37.650000', '31.000000', '1797.000000', '327.000000', '796.000000', '319.000000', '4.442700', '204500.000000']\n",
- "['-122.120000', '37.910000', '34.000000', '5683.000000', '755.000000', '1962.000000', '723.000000', '8.367800', '455300.000000']\n",
- "['-119.290000', '36.320000', '27.000000', '1513.000000', '374.000000', '839.000000', '350.000000', '1.201200', '64600.000000']\n",
- "['-117.400000', '34.010000', '25.000000', '1858.000000', '366.000000', '1311.000000', '331.000000', '2.708300', '87800.000000']\n",
- "['-117.060000', '32.770000', '32.000000', '3888.000000', '827.000000', '3868.000000', '841.000000', '3.075500', '166800.000000']\n",
- "['-118.300000', '34.250000', '44.000000', '1442.000000', '285.000000', '859.000000', '292.000000', '4.583300', '197300.000000']\n",
- "['-122.230000', '40.150000', '14.000000', '2297.000000', '573.000000', '1637.000000', '551.000000', '1.787000', '51600.000000']\n",
- "['-117.910000', '33.820000', '32.000000', '2696.000000', '640.000000', '2330.000000', '626.000000', '2.947900', '184600.000000']\n",
- "['-122.530000', '37.970000', '44.000000', '3595.000000', '953.000000', '1831.000000', '910.000000', '2.603600', '287500.000000']\n",
- "['-121.790000', '37.000000', '28.000000', '2715.000000', '451.000000', '1154.000000', '386.000000', '4.802100', '290400.000000']\n",
- "['-118.460000', '33.990000', '44.000000', '1122.000000', '287.000000', '531.000000', '256.000000', '4.059800', '335900.000000']\n",
- "['-118.030000', '33.970000', '32.000000', '2468.000000', '552.000000', '1190.000000', '479.000000', '3.827500', '238500.000000']\n",
- "['-122.320000', '38.000000', '32.000000', '2275.000000', '397.000000', '1233.000000', '418.000000', '4.043700', '162800.000000']\n",
- "['-118.280000', '34.170000', '22.000000', '2664.000000', '651.000000', '1553.000000', '629.000000', '3.635400', '256300.000000']\n",
- "['-119.140000', '36.060000', '32.000000', '1838.000000', '441.000000', '1628.000000', '425.000000', '1.645200', '41500.000000']\n",
- "['-117.130000', '34.070000', '34.000000', '2405.000000', '541.000000', '1342.000000', '514.000000', '2.803100', '86900.000000']\n",
- "['-120.670000', '35.300000', '32.000000', '4202.000000', '986.000000', '2309.000000', '956.000000', '2.216500', '231700.000000']\n",
- "['-118.060000', '34.120000', '34.000000', '2941.000000', '558.000000', '1660.000000', '576.000000', '4.566700', '271500.000000']\n",
- "['-122.390000', '40.570000', '38.000000', '855.000000', '172.000000', '468.000000', '150.000000', '1.409100', '84400.000000']\n",
- "['-118.390000', '33.880000', '33.000000', '2543.000000', '439.000000', '1098.000000', '416.000000', '5.968300', '495500.000000']\n",
- "['-118.160000', '34.020000', '47.000000', '1055.000000', '298.000000', '1303.000000', '302.000000', '2.696400', '138800.000000']\n",
- "['-122.580000', '37.980000', '52.000000', '1180.000000', '216.000000', '467.000000', '197.000000', '4.961500', '292200.000000']\n",
- "['-118.020000', '33.920000', '35.000000', '2075.000000', '424.000000', '1312.000000', '396.000000', '3.796900', '164800.000000']\n",
- "['-119.700000', '34.400000', '25.000000', '1858.000000', '493.000000', '865.000000', '460.000000', '3.093800', '312500.000000']\n",
- "['-122.680000', '38.430000', '29.000000', '488.000000', '63.000000', '161.000000', '62.000000', '6.077400', '334400.000000']\n",
- "['-121.350000', '38.590000', '29.000000', '1285.000000', '193.000000', '460.000000', '206.000000', '5.324300', '265700.000000']\n",
- "['-121.980000', '37.270000', '25.000000', '3075.000000', '564.000000', '1633.000000', '543.000000', '5.252800', '269400.000000']\n",
- "['-118.080000', '34.580000', '5.000000', '1113.000000', '186.000000', '631.000000', '168.000000', '4.171900', '146600.000000']\n",
- "['-118.250000', '34.060000', '20.000000', '41.000000', '17.000000', '87.000000', '25.000000', '1.549100', '225000.000000']\n",
- "['-122.250000', '37.820000', '26.000000', '3959.000000', '1196.000000', '1749.000000', '1217.000000', '3.023300', '255000.000000']\n",
- "['-119.050000', '34.350000', '39.000000', '950.000000', '300.000000', '1366.000000', '312.000000', '2.244300', '146600.000000']\n",
- "['-117.540000', '33.760000', '5.000000', '5846.000000', '1035.000000', '3258.000000', '1001.000000', '4.796500', '160800.000000']\n",
- "['-118.210000', '33.880000', '31.000000', '1332.000000', '417.000000', '1405.000000', '363.000000', '2.012500', '143000.000000']\n",
- "['-117.200000', '32.790000', '29.000000', '1213.000000', '228.000000', '654.000000', '246.000000', '4.598700', '255600.000000']\n",
- "['-120.960000', '37.590000', '11.000000', '4236.000000', '879.000000', '2410.000000', '850.000000', '2.384900', '122000.000000']\n",
- "['-118.240000', '34.010000', '48.000000', '396.000000', '99.000000', '485.000000', '110.000000', '2.375000', '107500.000000']\n",
- "['-118.270000', '34.000000', '43.000000', '1638.000000', '434.000000', '1213.000000', '390.000000', '1.340300', '110800.000000']\n",
- "['-122.250000', '37.890000', '41.000000', '1125.000000', '195.000000', '356.000000', '181.000000', '6.159300', '344000.000000']\n",
- "['-117.300000', '34.090000', '40.000000', '1051.000000', '244.000000', '745.000000', '243.000000', '2.184200', '75200.000000']\n",
- "['-120.910000', '37.740000', '19.000000', '1690.000000', '327.000000', '855.000000', '296.000000', '3.250000', '176700.000000']\n",
- "['-122.160000', '38.900000', '33.000000', '1221.000000', '236.000000', '488.000000', '199.000000', '3.757400', '92700.000000']\n",
- "['-118.310000', '33.890000', '35.000000', '2144.000000', '423.000000', '1192.000000', '417.000000', '4.145800', '231500.000000']\n",
- "['-118.180000', '34.020000', '43.000000', '887.000000', '219.000000', '965.000000', '217.000000', '2.625000', '133900.000000']\n",
- "['-117.970000', '33.750000', '32.000000', '1564.000000', '270.000000', '973.000000', '290.000000', '3.750000', '190400.000000']\n",
- "['-117.950000', '35.080000', '1.000000', '83.000000', '15.000000', '32.000000', '15.000000', '4.875000', '141700.000000']\n",
- "['-118.030000', '33.910000', '35.000000', '2323.000000', '406.000000', '1741.000000', '398.000000', '4.243700', '164100.000000']\n",
- "['-118.380000', '33.970000', '43.000000', '2715.000000', '458.000000', '1151.000000', '434.000000', '7.489700', '362600.000000']\n",
- "['-119.820000', '36.720000', '25.000000', '2581.000000', '528.000000', '1642.000000', '509.000000', '1.643500', '52600.000000']\n",
- "['-122.060000', '37.680000', '30.000000', '5367.000000', '1207.000000', '2667.000000', '1047.000000', '3.179600', '170300.000000']\n",
- "['-122.410000', '40.550000', '19.000000', '3753.000000', '761.000000', '1952.000000', '738.000000', '3.095400', '86500.000000']\n",
- "['-117.880000', '33.720000', '36.000000', '1910.000000', '352.000000', '1593.000000', '329.000000', '3.890000', '170000.000000']\n",
- "['-120.800000', '38.310000', '37.000000', '1341.000000', '256.000000', '533.000000', '242.000000', '3.213500', '123600.000000']\n",
- "['-118.100000', '34.170000', '48.000000', '1111.000000', '229.000000', '421.000000', '202.000000', '3.281300', '268100.000000']\n",
- "['-118.090000', '34.120000', '38.000000', '1713.000000', '285.000000', '779.000000', '286.000000', '5.615200', '359900.000000']\n",
- "['-118.310000', '34.060000', '47.000000', '3038.000000', '1533.000000', '4225.000000', '1472.000000', '1.672500', '187500.000000']\n",
- "['-118.020000', '33.800000', '16.000000', '2956.000000', '393.000000', '1379.000000', '429.000000', '8.495200', '359600.000000']\n",
- "['-121.940000', '37.280000', '18.000000', '4356.000000', '1334.000000', '1968.000000', '1245.000000', '3.629400', '240000.000000']\n",
- "['-117.950000', '34.080000', '37.000000', '1137.000000', '203.000000', '672.000000', '226.000000', '3.296900', '189000.000000']\n",
- "['-118.150000', '33.940000', '36.000000', '1948.000000', '341.000000', '992.000000', '363.000000', '4.259400', '242400.000000']\n",
- "['-121.810000', '37.990000', '22.000000', '2331.000000', '359.000000', '1086.000000', '340.000000', '5.143500', '150800.000000']\n",
- "['-121.810000', '38.580000', '17.000000', '1964.000000', '314.000000', '808.000000', '286.000000', '5.962900', '286000.000000']\n",
- "['-121.280000', '38.770000', '6.000000', '3819.000000', '550.000000', '1738.000000', '587.000000', '5.871800', '201400.000000']\n",
- "['-118.430000', '34.010000', '43.000000', '1487.000000', '242.000000', '675.000000', '247.000000', '5.340300', '489800.000000']\n",
- "['-121.380000', '38.590000', '36.000000', '1239.000000', '237.000000', '764.000000', '222.000000', '3.015600', '103000.000000']\n",
- "['-117.680000', '35.650000', '15.000000', '2701.000000', '576.000000', '1245.000000', '513.000000', '3.326900', '81900.000000']\n",
- "['-117.690000', '33.580000', '8.000000', '2887.000000', '351.000000', '1176.000000', '351.000000', '10.395300', '500001.000000']\n",
- "['-118.240000', '34.000000', '23.000000', '588.000000', '157.000000', '716.000000', '173.000000', '1.205600', '87500.000000']\n",
- "['-117.700000', '33.600000', '25.000000', '1321.000000', '295.000000', '396.000000', '278.000000', '3.113100', '77100.000000']\n",
- "['-118.380000', '33.860000', '12.000000', '4235.000000', '735.000000', '1798.000000', '683.000000', '6.424200', '365500.000000']\n",
- "['-117.050000', '32.610000', '31.000000', '4033.000000', '715.000000', '2585.000000', '715.000000', '3.509600', '139900.000000']\n",
- "['-121.380000', '38.640000', '19.000000', '4563.000000', '1069.000000', '2256.000000', '926.000000', '2.147200', '143400.000000']\n",
- "['-117.100000', '32.740000', '20.000000', '3854.000000', '1046.000000', '3555.000000', '966.000000', '1.674700', '100000.000000']\n",
- "['-122.470000', '37.760000', '48.000000', '2064.000000', '484.000000', '1055.000000', '467.000000', '2.871100', '329600.000000']\n",
- "['-117.840000', '33.760000', '16.000000', '238.000000', '51.000000', '93.000000', '50.000000', '5.375000', '215700.000000']\n",
- "['-122.260000', '37.880000', '52.000000', '2604.000000', '837.000000', '1798.000000', '769.000000', '1.725000', '287500.000000']\n",
- "['-118.400000', '33.870000', '45.000000', '2181.000000', '505.000000', '965.000000', '471.000000', '5.381600', '500001.000000']\n",
- "['-122.370000', '38.330000', '29.000000', '1868.000000', '291.000000', '764.000000', '284.000000', '4.825000', '195100.000000']\n",
- "['-117.980000', '34.010000', '27.000000', '2643.000000', '418.000000', '1344.000000', '381.000000', '5.705700', '262100.000000']\n",
- "['-122.700000', '38.450000', '26.000000', '2011.000000', '557.000000', '855.000000', '530.000000', '1.125000', '233300.000000']\n",
- "['-118.410000', '33.970000', '44.000000', '2789.000000', '503.000000', '3732.000000', '474.000000', '4.617600', '352300.000000']\n",
- "['-121.920000', '37.300000', '36.000000', '2088.000000', '358.000000', '772.000000', '347.000000', '4.276200', '310100.000000']\n",
- "['-122.110000', '37.370000', '49.000000', '1068.000000', '190.000000', '410.000000', '171.000000', '7.204500', '500001.000000']\n",
- "['-121.870000', '37.390000', '9.000000', '2522.000000', '547.000000', '1591.000000', '481.000000', '4.909100', '259700.000000']\n",
- "['-120.180000', '39.140000', '25.000000', '2171.000000', '386.000000', '248.000000', '116.000000', '3.037500', '171900.000000']\n",
- "['-117.060000', '32.760000', '36.000000', '2785.000000', '577.000000', '1275.000000', '527.000000', '2.301500', '156800.000000']\n",
- "['-117.240000', '33.930000', '12.000000', '7105.000000', '1447.000000', '4520.000000', '1333.000000', '3.270500', '113200.000000']\n",
- "['-118.250000', '33.980000', '47.000000', '617.000000', '162.000000', '754.000000', '144.000000', '2.296900', '116700.000000']\n",
- "['-117.800000', '33.680000', '14.000000', '2635.000000', '516.000000', '1150.000000', '499.000000', '4.439100', '306700.000000']\n",
- "['-119.780000', '36.370000', '41.000000', '831.000000', '149.000000', '443.000000', '146.000000', '3.140600', '100000.000000']\n",
- "['-117.040000', '32.700000', '7.000000', '9311.000000', '1703.000000', '7302.000000', '1694.000000', '4.419000', '156900.000000']\n",
- "['-118.290000', '34.000000', '6.000000', '1487.000000', '468.000000', '1509.000000', '403.000000', '1.463900', '112500.000000']\n",
- "['-118.360000', '34.060000', '52.000000', '2130.000000', '455.000000', '921.000000', '395.000000', '2.960500', '500001.000000']\n",
- "['-122.420000', '37.620000', '39.000000', '1355.000000', '214.000000', '682.000000', '246.000000', '6.344300', '324700.000000']\n",
- "['-118.420000', '34.250000', '37.000000', '1545.000000', '341.000000', '1909.000000', '352.000000', '3.679100', '148100.000000']\n",
- "['-121.100000', '38.950000', '17.000000', '1475.000000', '403.000000', '943.000000', '363.000000', '2.128700', '55300.000000']\n",
- "['-117.740000', '34.050000', '27.000000', '852.000000', '237.000000', '1024.000000', '221.000000', '2.114100', '110900.000000']\n",
- "['-122.390000', '37.740000', '52.000000', '126.000000', '24.000000', '37.000000', '27.000000', '10.226400', '225000.000000']\n",
- "['-118.370000', '34.080000', '52.000000', '2946.000000', '695.000000', '1258.000000', '650.000000', '3.978300', '374100.000000']\n",
- "['-122.080000', '37.870000', '24.000000', '6130.000000', '1359.000000', '1750.000000', '1286.000000', '2.916700', '102700.000000']\n",
- "['-118.440000', '34.200000', '28.000000', '1732.000000', '435.000000', '1198.000000', '417.000000', '2.921900', '241300.000000']\n",
- "['-121.370000', '38.560000', '19.000000', '6308.000000', '1167.000000', '3012.000000', '1112.000000', '2.946400', '113500.000000']\n",
- "['-122.100000', '37.930000', '20.000000', '10212.000000', '1424.000000', '4083.000000', '1374.000000', '8.039000', '382200.000000']\n",
- "['-117.220000', '32.950000', '4.000000', '18123.000000', '3173.000000', '7301.000000', '2964.000000', '6.357000', '322500.000000']\n",
- "['-122.130000', '37.460000', '31.000000', '2247.000000', '573.000000', '1711.000000', '511.000000', '3.264200', '185600.000000']\n",
- "['-122.300000', '38.290000', '20.000000', '1789.000000', '434.000000', '1113.000000', '398.000000', '2.472800', '139700.000000']\n",
- "['-123.410000', '40.610000', '17.000000', '769.000000', '205.000000', '301.000000', '126.000000', '1.787500', '55000.000000']\n",
- "['-120.770000', '37.010000', '28.000000', '1689.000000', '378.000000', '1057.000000', '267.000000', '3.125000', '156300.000000']\n",
- "['-118.800000', '34.410000', '45.000000', '1610.000000', '406.000000', '1148.000000', '347.000000', '2.700000', '120400.000000']\n",
- "['-119.270000', '34.270000', '52.000000', '1577.000000', '343.000000', '836.000000', '335.000000', '3.589300', '206600.000000']\n",
- "['-122.470000', '37.740000', '52.000000', '3797.000000', '668.000000', '1633.000000', '658.000000', '5.678700', '363600.000000']\n",
- "['-118.260000', '34.130000', '25.000000', '3208.000000', '1111.000000', '2843.000000', '1005.000000', '2.667300', '218100.000000']\n",
- "['-119.770000', '36.760000', '40.000000', '2009.000000', '519.000000', '2219.000000', '505.000000', '1.210100', '49100.000000']\n",
- "['-124.160000', '41.920000', '19.000000', '1668.000000', '324.000000', '841.000000', '283.000000', '2.133600', '75000.000000']\n",
- "['-119.030000', '36.130000', '24.000000', '2259.000000', '408.000000', '1169.000000', '395.000000', '1.710600', '95500.000000']\n",
- "['-122.180000', '37.790000', '41.000000', '1411.000000', '233.000000', '626.000000', '214.000000', '7.087500', '240700.000000']\n",
- "['-123.850000', '39.390000', '23.000000', '4671.000000', '912.000000', '2095.000000', '857.000000', '3.184000', '140500.000000']\n",
- "['-122.700000', '38.330000', '16.000000', '1244.000000', '242.000000', '696.000000', '236.000000', '3.636900', '158700.000000']\n",
- "['-118.100000', '33.850000', '36.000000', '956.000000', '159.000000', '416.000000', '157.000000', '4.642900', '223700.000000']\n",
- "['-117.990000', '34.080000', '35.000000', '1032.000000', '207.000000', '954.000000', '191.000000', '2.890600', '134800.000000']\n",
- "['-121.930000', '37.730000', '8.000000', '831.000000', '231.000000', '404.000000', '224.000000', '3.375000', '350000.000000']\n",
- "['-118.440000', '34.230000', '43.000000', '2257.000000', '429.000000', '1418.000000', '442.000000', '4.527800', '181800.000000']\n",
- "['-118.320000', '34.260000', '24.000000', '5106.000000', '1010.000000', '2310.000000', '957.000000', '4.437500', '191500.000000']\n",
- "['-118.150000', '34.110000', '39.000000', '2618.000000', '582.000000', '1314.000000', '532.000000', '3.587500', '309300.000000']\n",
- "['-117.740000', '34.040000', '27.000000', '2215.000000', '440.000000', '1987.000000', '449.000000', '3.042900', '129600.000000']\n",
- "['-121.350000', '38.280000', '17.000000', '2756.000000', '557.000000', '1986.000000', '530.000000', '3.223400', '82000.000000']\n",
- "['-122.750000', '39.010000', '17.000000', '4162.000000', '967.000000', '889.000000', '414.000000', '3.418700', '200500.000000']\n",
- "['-120.660000', '35.460000', '17.000000', '3748.000000', '609.000000', '1860.000000', '612.000000', '4.517900', '225600.000000']\n",
- "['-122.620000', '38.920000', '13.000000', '520.000000', '115.000000', '249.000000', '109.000000', '1.841700', '84700.000000']\n",
- "['-117.220000', '34.260000', '16.000000', '8020.000000', '1432.000000', '1749.000000', '540.000000', '4.971600', '162500.000000']\n",
- "['-117.920000', '33.750000', '8.000000', '2325.000000', '598.000000', '1511.000000', '565.000000', '3.362900', '137500.000000']\n",
- "['-122.280000', '37.810000', '36.000000', '2914.000000', '562.000000', '1236.000000', '509.000000', '2.446400', '102100.000000']\n",
- "['-118.120000', '33.810000', '37.000000', '1798.000000', '331.000000', '860.000000', '340.000000', '4.214300', '228500.000000']\n",
- "['-119.190000', '36.060000', '29.000000', '1815.000000', '376.000000', '1421.000000', '339.000000', '1.909100', '71300.000000']\n",
- "['-117.970000', '34.070000', '22.000000', '1438.000000', '364.000000', '1325.000000', '335.000000', '2.780200', '162500.000000']\n",
- "['-118.090000', '34.030000', '27.000000', '3797.000000', '597.000000', '2043.000000', '614.000000', '5.500000', '276800.000000']\n",
- "['-121.930000', '37.280000', '10.000000', '3163.000000', '832.000000', '1537.000000', '797.000000', '4.167400', '214000.000000']\n",
- "['-122.650000', '38.960000', '27.000000', '2143.000000', '580.000000', '898.000000', '367.000000', '1.676900', '63200.000000']\n",
- "['-122.490000', '37.750000', '48.000000', '2387.000000', '424.000000', '1041.000000', '408.000000', '3.756200', '321200.000000']\n",
- "['-122.310000', '37.560000', '45.000000', '1792.000000', '301.000000', '829.000000', '318.000000', '4.901300', '330100.000000']\n",
- "['-121.270000', '38.140000', '33.000000', '3557.000000', '894.000000', '2659.000000', '894.000000', '2.288300', '86900.000000']\n",
- "['-118.390000', '34.230000', '18.000000', '3405.000000', '831.000000', '3001.000000', '795.000000', '3.008300', '181900.000000']\n",
- "['-118.390000', '34.070000', '33.000000', '5301.000000', '1281.000000', '2243.000000', '1159.000000', '4.238600', '500001.000000']\n",
- "['-117.150000', '32.920000', '16.000000', '2366.000000', '392.000000', '1482.000000', '407.000000', '4.902400', '182900.000000']\n",
- "['-122.090000', '37.380000', '34.000000', '1959.000000', '342.000000', '849.000000', '357.000000', '6.288400', '414700.000000']\n",
- "['-117.060000', '32.610000', '23.000000', '1630.000000', '362.000000', '1267.000000', '418.000000', '2.562500', '131100.000000']\n",
- "['-122.330000', '37.910000', '36.000000', '1954.000000', '513.000000', '1437.000000', '440.000000', '1.125000', '93800.000000']\n",
- "['-116.920000', '32.760000', '7.000000', '1659.000000', '237.000000', '862.000000', '242.000000', '5.274100', '249400.000000']\n",
- "['-116.000000', '34.120000', '32.000000', '3163.000000', '712.000000', '1358.000000', '544.000000', '2.125000', '57700.000000']\n",
- "['-117.690000', '33.600000', '19.000000', '3562.000000', '439.000000', '1584.000000', '470.000000', '6.421100', '288100.000000']\n",
- "['-117.230000', '33.910000', '9.000000', '11654.000000', '2100.000000', '7596.000000', '2127.000000', '4.047300', '127200.000000']\n",
- "['-117.180000', '34.040000', '41.000000', '1766.000000', '288.000000', '753.000000', '278.000000', '4.912500', '140700.000000']\n",
- "['-121.330000', '38.280000', '14.000000', '980.000000', '171.000000', '659.000000', '183.000000', '4.430600', '170100.000000']\n",
- "['-121.880000', '37.320000', '38.000000', '1787.000000', '508.000000', '2113.000000', '530.000000', '2.638600', '177600.000000']\n",
- "['-122.520000', '37.970000', '33.000000', '563.000000', '194.000000', '265.000000', '169.000000', '2.750000', '231300.000000']\n",
- "['-117.770000', '34.060000', '27.000000', '2178.000000', '629.000000', '2379.000000', '591.000000', '1.976600', '108000.000000']\n",
- "['-121.010000', '37.720000', '23.000000', '1373.000000', '264.000000', '677.000000', '245.000000', '2.548600', '161100.000000']\n",
- "['-117.330000', '33.870000', '14.000000', '2300.000000', '335.000000', '1001.000000', '311.000000', '5.104500', '161300.000000']\n",
- "['-118.240000', '33.970000', '37.000000', '1212.000000', '314.000000', '1403.000000', '279.000000', '2.553600', '117200.000000']\n",
- "['-117.800000', '33.890000', '25.000000', '3121.000000', '381.000000', '1278.000000', '389.000000', '7.021700', '357900.000000']\n",
- "['-119.620000', '36.560000', '30.000000', '1722.000000', '372.000000', '1467.000000', '403.000000', '1.887800', '51600.000000']\n",
- "['-122.160000', '37.690000', '36.000000', '1118.000000', '219.000000', '625.000000', '228.000000', '3.781300', '192200.000000']\n",
- "['-117.970000', '33.800000', '35.000000', '2985.000000', '474.000000', '1614.000000', '453.000000', '5.463100', '225600.000000']\n",
- "['-120.870000', '37.760000', '16.000000', '2022.000000', '413.000000', '1126.000000', '408.000000', '2.565500', '116400.000000']\n",
- "['-120.460000', '37.310000', '26.000000', '3170.000000', '572.000000', '1524.000000', '565.000000', '3.480000', '95300.000000']\n",
- "['-118.230000', '34.140000', '39.000000', '277.000000', '89.000000', '182.000000', '91.000000', '2.395800', '175000.000000']\n",
- "['-121.070000', '38.660000', '22.000000', '1831.000000', '274.000000', '813.000000', '269.000000', '4.639400', '173400.000000']\n",
- "['-120.090000', '36.950000', '16.000000', '3222.000000', '511.000000', '1425.000000', '503.000000', '4.154400', '119400.000000']\n",
- "['-118.210000', '33.960000', '38.000000', '2090.000000', '519.000000', '1871.000000', '504.000000', '2.468800', '169000.000000']\n",
- "['-122.630000', '38.230000', '37.000000', '1966.000000', '348.000000', '875.000000', '381.000000', '4.070300', '223800.000000']\n",
- "['-119.400000', '36.250000', '25.000000', '1696.000000', '279.000000', '909.000000', '291.000000', '2.300000', '132800.000000']\n",
- "['-117.380000', '33.210000', '31.000000', '1502.000000', '367.000000', '1514.000000', '342.000000', '2.644200', '103300.000000']\n",
- "['-117.250000', '32.800000', '37.000000', '1096.000000', '260.000000', '490.000000', '267.000000', '3.266300', '270600.000000']\n",
- "['-122.230000', '40.570000', '18.000000', '1633.000000', '243.000000', '750.000000', '252.000000', '5.158500', '150800.000000']\n",
- "['-121.230000', '38.790000', '45.000000', '907.000000', '176.000000', '463.000000', '190.000000', '2.229200', '92000.000000']\n",
- "['-121.550000', '40.480000', '14.000000', '2413.000000', '524.000000', '805.000000', '329.000000', '2.785700', '77400.000000']\n",
- "['-117.890000', '33.920000', '34.000000', '1473.000000', '312.000000', '1025.000000', '315.000000', '3.833300', '170400.000000']\n",
- "['-117.230000', '32.720000', '43.000000', '952.000000', '209.000000', '392.000000', '210.000000', '2.163500', '244200.000000']\n",
- "['-117.920000', '33.790000', '35.000000', '1785.000000', '288.000000', '1033.000000', '297.000000', '4.573900', '190500.000000']\n",
- "['-117.580000', '34.110000', '14.000000', '11635.000000', '2055.000000', '6443.000000', '2009.000000', '4.754700', '157600.000000']\n",
- "['-120.850000', '38.690000', '18.000000', '5928.000000', '1097.000000', '2697.000000', '1096.000000', '3.487200', '141400.000000']\n",
- "['-121.530000', '38.480000', '5.000000', '27870.000000', '5027.000000', '11935.000000', '4855.000000', '4.881100', '212200.000000']\n",
- "['-117.210000', '32.820000', '31.000000', '2035.000000', '383.000000', '866.000000', '360.000000', '3.852900', '212000.000000']\n",
- "['-117.350000', '34.130000', '26.000000', '3920.000000', '570.000000', '1862.000000', '552.000000', '3.728600', '132000.000000']\n",
- "['-118.170000', '33.790000', '30.000000', '1349.000000', '519.000000', '2646.000000', '552.000000', '1.931800', '115900.000000']\n",
- "['-118.300000', '34.260000', '37.000000', '2824.000000', '633.000000', '1619.000000', '573.000000', '3.556800', '184500.000000']\n",
- "['-118.020000', '33.830000', '16.000000', '1139.000000', '328.000000', '665.000000', '290.000000', '3.293300', '260000.000000']\n",
- "['-116.990000', '33.010000', '11.000000', '1412.000000', '185.000000', '529.000000', '166.000000', '7.751700', '500001.000000']\n",
- "['-122.560000', '38.010000', '21.000000', '2144.000000', '400.000000', '840.000000', '398.000000', '4.600000', '239500.000000']\n",
- "['-118.150000', '34.100000', '39.000000', '3856.000000', '867.000000', '1847.000000', '830.000000', '3.455900', '364900.000000']\n",
- "['-117.930000', '33.730000', '27.000000', '3662.000000', '834.000000', '3009.000000', '743.000000', '3.981600', '179500.000000']\n",
- "['-121.090000', '38.030000', '21.000000', '2064.000000', '342.000000', '1021.000000', '359.000000', '4.517000', '152200.000000']\n",
- "['-116.660000', '33.090000', '24.000000', '1378.000000', '272.000000', '532.000000', '188.000000', '1.590900', '221900.000000']\n",
- "['-118.260000', '33.830000', '24.000000', '3059.000000', '729.000000', '2064.000000', '629.000000', '3.551800', '184600.000000']\n",
- "['-117.940000', '33.930000', '14.000000', '999.000000', '232.000000', '1037.000000', '244.000000', '2.712500', '166100.000000']\n",
- "['-116.930000', '32.830000', '19.000000', '3038.000000', '529.000000', '1463.000000', '509.000000', '3.944000', '172500.000000']\n",
- "['-122.290000', '37.850000', '52.000000', '477.000000', '119.000000', '218.000000', '106.000000', '2.568200', '120000.000000']\n",
- "['-122.480000', '37.670000', '14.000000', '3395.000000', '1059.000000', '2258.000000', '945.000000', '2.964000', '319700.000000']\n",
- "['-119.330000', '36.310000', '15.000000', '1472.000000', '228.000000', '892.000000', '257.000000', '5.390900', '113000.000000']\n",
- "['-118.410000', '34.210000', '35.000000', '1789.000000', '292.000000', '897.000000', '267.000000', '5.592000', '239900.000000']\n",
- "['-119.500000', '34.350000', '39.000000', '308.000000', '38.000000', '59.000000', '21.000000', '11.779400', '500001.000000']\n",
- "['-118.330000', '34.110000', '48.000000', '1601.000000', '464.000000', '784.000000', '461.000000', '3.064200', '342900.000000']\n",
- "['-118.300000', '34.100000', '29.000000', '3403.000000', '1367.000000', '3432.000000', '1174.000000', '1.708300', '166700.000000']\n",
- "['-119.750000', '34.400000', '31.000000', '1997.000000', '299.000000', '826.000000', '301.000000', '6.892700', '500001.000000']\n",
- "['-120.940000', '39.320000', '14.000000', '3120.000000', '595.000000', '1569.000000', '556.000000', '3.538500', '157400.000000']\n",
- "['-117.680000', '35.610000', '9.000000', '4241.000000', '832.000000', '1929.000000', '742.000000', '3.598800', '84500.000000']\n",
- "['-122.270000', '38.120000', '45.000000', '4423.000000', '1001.000000', '2109.000000', '874.000000', '2.693700', '111800.000000']\n",
- "['-118.210000', '34.110000', '32.000000', '2759.000000', '499.000000', '1661.000000', '533.000000', '4.381200', '228200.000000']\n",
- "['-117.230000', '33.100000', '4.000000', '1862.000000', '291.000000', '685.000000', '248.000000', '7.745000', '237400.000000']\n",
- "['-119.460000', '35.140000', '30.000000', '2943.000000', '697.000000', '1565.000000', '584.000000', '2.531300', '45800.000000']\n",
- "['-119.780000', '36.760000', '50.000000', '1343.000000', '322.000000', '1063.000000', '342.000000', '1.750000', '49800.000000']\n",
- "['-117.810000', '33.660000', '20.000000', '2851.000000', '490.000000', '1192.000000', '463.000000', '5.875200', '274200.000000']\n",
- "['-119.290000', '34.310000', '25.000000', '1092.000000', '190.000000', '702.000000', '215.000000', '3.906300', '192700.000000']\n",
- "['-122.410000', '37.610000', '46.000000', '2975.000000', '643.000000', '1479.000000', '577.000000', '3.821400', '273600.000000']\n",
- "['-120.320000', '37.290000', '38.000000', '576.000000', '130.000000', '478.000000', '112.000000', '2.338200', '59600.000000']\n",
- "['-118.370000', '34.160000', '40.000000', '1973.000000', '382.000000', '774.000000', '352.000000', '4.412200', '282300.000000']\n",
- "['-122.050000', '37.050000', '41.000000', '2422.000000', '502.000000', '915.000000', '366.000000', '4.167900', '201300.000000']\n",
- "['-118.460000', '34.030000', '52.000000', '523.000000', '124.000000', '317.000000', '130.000000', '2.279400', '337500.000000']\n",
- "['-117.120000', '32.760000', '43.000000', '2336.000000', '644.000000', '1203.000000', '614.000000', '2.359400', '127800.000000']\n",
- "['-122.040000', '37.570000', '12.000000', '5719.000000', '1064.000000', '3436.000000', '1057.000000', '5.287900', '231200.000000']\n",
- "['-121.970000', '37.360000', '34.000000', '884.000000', '153.000000', '534.000000', '154.000000', '6.011600', '271200.000000']\n",
- "['-121.280000', '38.530000', '18.000000', '224.000000', '38.000000', '95.000000', '41.000000', '3.104200', '165000.000000']\n",
- "['-119.090000', '35.300000', '3.000000', '2821.000000', '519.000000', '1353.000000', '495.000000', '3.685200', '109800.000000']\n",
- "['-121.750000', '36.910000', '42.000000', '1368.000000', '468.000000', '2312.000000', '484.000000', '2.559900', '151400.000000']\n",
- "['-121.860000', '38.000000', '4.000000', '4075.000000', '927.000000', '2239.000000', '849.000000', '3.585700', '165200.000000']\n",
- "['-118.530000', '34.450000', '26.000000', '828.000000', '149.000000', '508.000000', '158.000000', '5.237400', '185500.000000']\n",
- "['-117.940000', '33.810000', '24.000000', '4602.000000', '1131.000000', '3003.000000', '1014.000000', '3.677100', '172200.000000']\n",
- "['-119.840000', '34.450000', '26.000000', '4424.000000', '616.000000', '1839.000000', '601.000000', '6.365400', '331200.000000']\n",
- "['-118.240000', '33.910000', '37.000000', '1607.000000', '377.000000', '1526.000000', '375.000000', '1.715800', '94300.000000']\n",
- "['-117.060000', '33.140000', '27.000000', '3819.000000', '674.000000', '2447.000000', '717.000000', '3.818500', '137200.000000']\n",
- "['-120.980000', '37.670000', '33.000000', '1433.000000', '298.000000', '824.000000', '302.000000', '2.762100', '109100.000000']\n",
- "['-117.740000', '34.090000', '30.000000', '3199.000000', '591.000000', '2192.000000', '563.000000', '3.487100', '136400.000000']\n",
- "['-118.180000', '34.010000', '39.000000', '322.000000', '82.000000', '319.000000', '90.000000', '2.636400', '148800.000000']\n",
- "['-118.240000', '33.890000', '32.000000', '1132.000000', '266.000000', '1211.000000', '279.000000', '2.183800', '98300.000000']\n",
- "['-123.080000', '40.400000', '10.000000', '365.000000', '102.000000', '140.000000', '49.000000', '1.796900', '37500.000000']\n",
- "['-117.320000', '34.070000', '52.000000', '1226.000000', '269.000000', '693.000000', '272.000000', '1.996300', '76900.000000']\n",
- "['-118.240000', '33.850000', '25.000000', '9594.000000', '1489.000000', '5237.000000', '1496.000000', '5.968400', '193300.000000']\n",
- "['-122.230000', '37.780000', '52.000000', '472.000000', '146.000000', '415.000000', '126.000000', '2.642900', '71300.000000']\n",
- "['-121.180000', '38.780000', '13.000000', '3480.000000', '528.000000', '1432.000000', '532.000000', '6.164200', '277800.000000']\n",
- "['-118.100000', '33.910000', '29.000000', '505.000000', '113.000000', '411.000000', '113.000000', '2.639700', '164400.000000']\n",
- "['-121.970000', '38.040000', '38.000000', '2505.000000', '554.000000', '1595.000000', '498.000000', '2.583300', '83500.000000']\n",
- "['-118.470000', '34.000000', '41.000000', '2331.000000', '636.000000', '1839.000000', '537.000000', '2.288000', '263500.000000']\n",
- "['-119.310000', '36.390000', '32.000000', '2293.000000', '466.000000', '1538.000000', '468.000000', '1.934200', '68600.000000']\n",
- "['-122.170000', '37.710000', '38.000000', '890.000000', '200.000000', '481.000000', '198.000000', '3.244000', '179800.000000']\n",
- "['-122.490000', '37.680000', '35.000000', '2405.000000', '461.000000', '1583.000000', '471.000000', '5.065900', '238000.000000']\n",
- "['-121.300000', '37.980000', '39.000000', '3375.000000', '659.000000', '1388.000000', '631.000000', '2.636400', '93800.000000']\n",
- "['-121.370000', '38.570000', '22.000000', '4899.000000', '847.000000', '1701.000000', '826.000000', '5.244900', '387000.000000']\n",
- "['-122.080000', '37.610000', '6.000000', '2605.000000', '474.000000', '1568.000000', '433.000000', '5.040600', '261400.000000']\n",
- "['-117.110000', '32.570000', '32.000000', '2723.000000', '586.000000', '1702.000000', '562.000000', '3.337100', '140500.000000']\n",
- "['-122.090000', '37.400000', '22.000000', '1489.000000', '436.000000', '662.000000', '470.000000', '3.517900', '197200.000000']\n",
- "['-122.010000', '36.980000', '27.000000', '2820.000000', '730.000000', '1511.000000', '745.000000', '2.589000', '242400.000000']\n",
- "['-118.250000', '34.000000', '36.000000', '1033.000000', '267.000000', '1112.000000', '229.000000', '1.723700', '105800.000000']\n",
- "['-117.830000', '33.660000', '16.000000', '1574.000000', '385.000000', '515.000000', '363.000000', '5.342300', '291700.000000']\n",
- "['-121.960000', '37.740000', '2.000000', '200.000000', '20.000000', '25.000000', '9.000000', '15.000100', '350000.000000']\n",
- "['-119.810000', '36.730000', '51.000000', '956.000000', '196.000000', '662.000000', '180.000000', '2.101000', '56700.000000']\n",
- "['-118.620000', '34.060000', '25.000000', '3546.000000', '584.000000', '1530.000000', '601.000000', '7.400100', '500001.000000']\n",
- "['-122.350000', '37.960000', '35.000000', '1326.000000', '346.000000', '1023.000000', '295.000000', '2.072400', '97700.000000']\n",
- "['-119.060000', '36.100000', '21.000000', '1344.000000', '249.000000', '868.000000', '221.000000', '2.589300', '63600.000000']\n",
- "['-122.470000', '37.750000', '52.000000', '1598.000000', '285.000000', '689.000000', '265.000000', '4.607100', '337400.000000']\n",
- "['-122.540000', '37.900000', '41.000000', '3170.000000', '622.000000', '1091.000000', '528.000000', '3.781300', '389200.000000']\n",
- "['-119.730000', '36.760000', '30.000000', '1548.000000', '282.000000', '886.000000', '311.000000', '3.100000', '71300.000000']\n",
- "['-122.030000', '36.960000', '40.000000', '584.000000', '126.000000', '316.000000', '139.000000', '3.593800', '243500.000000']\n",
- "['-119.750000', '36.780000', '33.000000', '1145.000000', '197.000000', '508.000000', '198.000000', '2.333300', '81300.000000']\n",
- "['-117.300000', '33.060000', '24.000000', '2171.000000', '511.000000', '870.000000', '442.000000', '3.194000', '276300.000000']\n",
- "['-121.990000', '36.960000', '16.000000', '875.000000', '201.000000', '300.000000', '157.000000', '2.625000', '377300.000000']\n",
- "['-120.730000', '39.630000', '17.000000', '1791.000000', '356.000000', '432.000000', '190.000000', '3.882600', '92400.000000']\n",
- "['-118.480000', '34.030000', '19.000000', '902.000000', '284.000000', '414.000000', '272.000000', '1.333300', '310000.000000']\n",
- "['-118.220000', '33.950000', '36.000000', '1679.000000', '483.000000', '2249.000000', '487.000000', '2.816700', '160400.000000']\n",
- "['-118.240000', '33.970000', '43.000000', '1357.000000', '349.000000', '1657.000000', '331.000000', '2.081900', '111800.000000']\n",
- "['-117.820000', '35.030000', '30.000000', '2555.000000', '510.000000', '1347.000000', '467.000000', '3.369300', '71800.000000']\n",
- "['-117.020000', '32.700000', '18.000000', '1643.000000', '283.000000', '1134.000000', '269.000000', '5.176900', '133000.000000']\n",
- "['-122.350000', '37.940000', '47.000000', '1275.000000', '275.000000', '844.000000', '273.000000', '2.896700', '95600.000000']\n",
- "['-119.800000', '36.780000', '50.000000', '1818.000000', '374.000000', '737.000000', '338.000000', '2.261400', '73000.000000']\n",
- "['-122.190000', '37.480000', '38.000000', '1300.000000', '269.000000', '608.000000', '292.000000', '4.556800', '286900.000000']\n",
- "['-122.380000', '37.590000', '31.000000', '3052.000000', '844.000000', '1581.000000', '788.000000', '3.074400', '457700.000000']\n",
- "['-122.150000', '37.750000', '44.000000', '1938.000000', '399.000000', '946.000000', '331.000000', '3.225000', '135800.000000']\n",
- "['-119.350000', '36.190000', '6.000000', '958.000000', '226.000000', '734.000000', '230.000000', '1.034900', '67800.000000']\n",
- "['-120.450000', '34.950000', '7.000000', '1479.000000', '532.000000', '1057.000000', '459.000000', '2.253800', '162500.000000']\n",
- "['-122.280000', '38.290000', '19.000000', '531.000000', '112.000000', '139.000000', '80.000000', '1.987500', '325000.000000']\n",
- "['-122.260000', '37.840000', '49.000000', '713.000000', '202.000000', '462.000000', '189.000000', '1.025000', '118800.000000']\n",
- "['-122.300000', '37.810000', '52.000000', '572.000000', '109.000000', '274.000000', '82.000000', '1.851600', '85000.000000']\n",
- "['-118.220000', '33.900000', '22.000000', '312.000000', '107.000000', '583.000000', '119.000000', '1.942300', '98400.000000']\n",
- "['-117.670000', '33.640000', '11.000000', '2722.000000', '554.000000', '1565.000000', '508.000000', '5.164500', '164100.000000']\n",
- "['-122.020000', '37.010000', '20.000000', '1005.000000', '138.000000', '345.000000', '129.000000', '10.096800', '500001.000000']\n",
- "['-117.380000', '33.190000', '17.000000', '353.000000', '112.000000', '359.000000', '118.000000', '1.562500', '162500.000000']\n",
- "['-118.010000', '34.080000', '30.000000', '2281.000000', '522.000000', '1969.000000', '500.000000', '3.653100', '166300.000000']\n",
- "['-118.600000', '34.130000', '20.000000', '14291.000000', '1934.000000', '5452.000000', '1875.000000', '9.123200', '472000.000000']\n",
- "['-118.520000', '34.200000', '19.000000', '4315.000000', '1304.000000', '2490.000000', '1222.000000', '2.643700', '195000.000000']\n",
- "['-118.420000', '34.270000', '35.000000', '2700.000000', '702.000000', '3444.000000', '679.000000', '1.486700', '124000.000000']\n",
- "['-122.080000', '37.710000', '35.000000', '2211.000000', '350.000000', '1004.000000', '365.000000', '5.463900', '238600.000000']\n",
- "['-117.650000', '33.570000', '5.000000', '1998.000000', '500.000000', '1185.000000', '446.000000', '4.354200', '195600.000000']\n",
- "['-120.540000', '37.680000', '18.000000', '335.000000', '76.000000', '189.000000', '67.000000', '1.227300', '87500.000000']\n",
- "['-118.310000', '34.050000', '40.000000', '1667.000000', '365.000000', '1161.000000', '384.000000', '3.140600', '417600.000000']\n",
- "['-122.420000', '37.600000', '34.000000', '3562.000000', '565.000000', '1542.000000', '563.000000', '5.878300', '405100.000000']\n",
- "['-118.180000', '33.980000', '38.000000', '1477.000000', '374.000000', '1514.000000', '408.000000', '2.570300', '178600.000000']\n",
- "['-121.250000', '36.320000', '12.000000', '4776.000000', '1082.000000', '4601.000000', '1066.000000', '2.918400', '100500.000000']\n",
- "['-118.170000', '34.690000', '12.000000', '4881.000000', '803.000000', '2188.000000', '724.000000', '4.166700', '171900.000000']\n",
- "['-120.330000', '39.300000', '16.000000', '868.000000', '178.000000', '44.000000', '21.000000', '3.000000', '175000.000000']\n",
- "['-118.380000', '34.060000', '29.000000', '3946.000000', '1008.000000', '1676.000000', '876.000000', '2.782400', '450000.000000']\n",
- "['-119.780000', '36.730000', '52.000000', '1377.000000', '319.000000', '1280.000000', '259.000000', '1.234400', '43300.000000']\n",
- "['-118.330000', '33.970000', '44.000000', '2526.000000', '579.000000', '1423.000000', '573.000000', '2.536300', '158800.000000']\n",
- "['-118.370000', '34.060000', '36.000000', '1661.000000', '395.000000', '690.000000', '365.000000', '3.343800', '500001.000000']\n",
- "['-119.000000', '35.390000', '51.000000', '1373.000000', '284.000000', '648.000000', '300.000000', '2.829500', '72100.000000']\n",
- "['-117.950000', '33.870000', '35.000000', '1854.000000', '383.000000', '1115.000000', '381.000000', '4.478400', '185200.000000']\n",
- "['-118.380000', '34.580000', '18.000000', '1859.000000', '375.000000', '913.000000', '372.000000', '4.345600', '148900.000000']\n",
- "['-118.290000', '34.080000', '25.000000', '2459.000000', '823.000000', '2635.000000', '763.000000', '2.400000', '173900.000000']\n",
- "['-120.970000', '37.680000', '16.000000', '2493.000000', '535.000000', '1370.000000', '504.000000', '3.336800', '121200.000000']\n",
- "['-122.280000', '37.870000', '52.000000', '589.000000', '132.000000', '288.000000', '131.000000', '3.515600', '200000.000000']\n",
- "['-118.140000', '33.880000', '41.000000', '1531.000000', '343.000000', '1119.000000', '341.000000', '4.364600', '161400.000000']\n",
- "['-122.060000', '37.380000', '20.000000', '4293.000000', '1272.000000', '2389.000000', '1210.000000', '4.271900', '270800.000000']\n",
- "['-118.540000', '34.270000', '28.000000', '2309.000000', '300.000000', '931.000000', '302.000000', '6.741500', '348200.000000']\n",
- "['-117.880000', '33.840000', '25.000000', '1781.000000', '349.000000', '918.000000', '378.000000', '3.928600', '262700.000000']\n",
- "['-118.300000', '34.190000', '52.000000', '1704.000000', '277.000000', '746.000000', '262.000000', '4.798600', '326100.000000']\n",
- "['-117.840000', '33.800000', '35.000000', '1490.000000', '251.000000', '629.000000', '257.000000', '4.366100', '222100.000000']\n",
- "['-121.270000', '38.650000', '25.000000', '2787.000000', '601.000000', '1247.000000', '522.000000', '2.901600', '159800.000000']\n",
- "['-117.880000', '33.870000', '21.000000', '1519.000000', '388.000000', '1203.000000', '366.000000', '3.208300', '145300.000000']\n",
- "['-119.880000', '34.420000', '22.000000', '2367.000000', '492.000000', '1333.000000', '488.000000', '3.630400', '312200.000000']\n",
- "['-118.480000', '34.010000', '31.000000', '1829.000000', '458.000000', '719.000000', '392.000000', '4.400000', '353800.000000']\n",
- "['-116.950000', '33.860000', '1.000000', '6.000000', '2.000000', '8.000000', '2.000000', '1.625000', '55000.000000']\n",
- "['-117.670000', '33.510000', '17.000000', '2112.000000', '480.000000', '1893.000000', '433.000000', '4.038800', '120400.000000']\n",
- "['-118.350000', '34.040000', '38.000000', '1626.000000', '375.000000', '1019.000000', '372.000000', '2.368700', '146800.000000']\n",
- "['-124.160000', '40.800000', '52.000000', '2167.000000', '480.000000', '908.000000', '451.000000', '1.611100', '74700.000000']\n",
- "['-118.350000', '34.050000', '33.000000', '2880.000000', '836.000000', '1416.000000', '736.000000', '2.678100', '328800.000000']\n",
- "['-119.080000', '34.350000', '24.000000', '3663.000000', '828.000000', '2718.000000', '778.000000', '3.275700', '186000.000000']\n",
- "['-122.510000', '37.780000', '45.000000', '2564.000000', '499.000000', '1056.000000', '460.000000', '4.732800', '351100.000000']\n",
- "['-118.360000', '34.140000', '30.000000', '1376.000000', '317.000000', '629.000000', '320.000000', '3.682300', '295200.000000']\n",
- "['-121.960000', '37.550000', '4.000000', '3746.000000', '993.000000', '1606.000000', '838.000000', '4.138700', '162500.000000']\n",
- "['-117.190000', '32.770000', '30.000000', '2747.000000', '640.000000', '3185.000000', '657.000000', '3.765000', '238000.000000']\n",
- "['-118.090000', '33.890000', '42.000000', '1150.000000', '215.000000', '708.000000', '204.000000', '3.687500', '171500.000000']\n",
- "['-121.760000', '36.900000', '44.000000', '919.000000', '309.000000', '1321.000000', '301.000000', '2.077500', '121400.000000']\n",
- "['-118.140000', '33.920000', '35.000000', '2378.000000', '559.000000', '1799.000000', '546.000000', '3.932700', '190500.000000']\n",
- "['-119.060000', '34.360000', '52.000000', '1239.000000', '320.000000', '934.000000', '298.000000', '1.861800', '183300.000000']\n",
- "['-118.120000', '34.160000', '52.000000', '2218.000000', '437.000000', '1211.000000', '422.000000', '5.023700', '241900.000000']\n",
- "['-117.800000', '34.150000', '14.000000', '7876.000000', '1253.000000', '3699.000000', '1162.000000', '5.542300', '248700.000000']\n",
- "['-120.040000', '39.240000', '30.000000', '2369.000000', '469.000000', '510.000000', '213.000000', '2.650000', '123800.000000']\n",
- "['-121.470000', '38.480000', '25.000000', '2969.000000', '551.000000', '1745.000000', '487.000000', '2.638200', '76200.000000']\n",
- "['-122.270000', '37.540000', '15.000000', '2126.000000', '310.000000', '905.000000', '306.000000', '8.908300', '500001.000000']\n",
- "['-122.020000', '37.540000', '31.000000', '1240.000000', '264.000000', '719.000000', '236.000000', '3.535000', '210300.000000']\n",
- "['-121.380000', '38.400000', '15.000000', '4155.000000', '637.000000', '1722.000000', '616.000000', '4.883100', '154400.000000']\n",
- "['-122.040000', '37.350000', '20.000000', '2016.000000', '313.000000', '767.000000', '310.000000', '6.837000', '383000.000000']\n",
- "['-117.120000', '32.760000', '41.000000', '1469.000000', '421.000000', '803.000000', '395.000000', '2.185600', '120500.000000']\n",
- "['-117.340000', '34.180000', '7.000000', '2914.000000', '481.000000', '1584.000000', '499.000000', '4.631200', '124900.000000']\n",
- "['-121.020000', '37.670000', '32.000000', '3951.000000', '797.000000', '1916.000000', '740.000000', '2.672200', '111500.000000']\n",
- "['-119.060000', '34.380000', '33.000000', '1465.000000', '262.000000', '731.000000', '266.000000', '3.946400', '230300.000000']\n",
- "['-118.160000', '33.910000', '35.000000', '1403.000000', '338.000000', '1415.000000', '367.000000', '3.096700', '144000.000000']\n",
- "['-121.920000', '37.340000', '52.000000', '2584.000000', '491.000000', '1087.000000', '433.000000', '4.400000', '391300.000000']\n",
- "['-119.030000', '34.210000', '11.000000', '4528.000000', '729.000000', '2398.000000', '684.000000', '5.304400', '319000.000000']\n",
- "['-121.960000', '37.340000', '37.000000', '663.000000', '127.000000', '293.000000', '132.000000', '3.781300', '247800.000000']\n",
- "['-114.610000', '33.620000', '16.000000', '1187.000000', '261.000000', '1115.000000', '242.000000', '2.175900', '61500.000000']\n",
- "['-117.270000', '33.150000', '4.000000', '23915.000000', '4135.000000', '10877.000000', '3958.000000', '4.635700', '244900.000000']\n",
- "['-121.370000', '38.620000', '27.000000', '1743.000000', '380.000000', '697.000000', '368.000000', '1.667800', '166100.000000']\n",
- "['-118.180000', '33.820000', '43.000000', '2210.000000', '469.000000', '1042.000000', '418.000000', '3.500000', '216700.000000']\n",
- "['-118.020000', '33.770000', '33.000000', '2683.000000', '436.000000', '1520.000000', '456.000000', '5.009100', '211500.000000']\n",
- "['-120.050000', '34.470000', '21.000000', '1241.000000', '248.000000', '746.000000', '211.000000', '3.805600', '425000.000000']\n",
- "['-118.250000', '34.010000', '45.000000', '782.000000', '270.000000', '1030.000000', '235.000000', '1.089800', '93400.000000']\n",
- "['-119.540000', '38.510000', '14.000000', '1250.000000', '272.000000', '721.000000', '234.000000', '2.350000', '95700.000000']\n",
- "['-117.270000', '34.500000', '7.000000', '2045.000000', '342.000000', '878.000000', '292.000000', '6.029600', '194100.000000']\n",
- "['-121.960000', '36.990000', '23.000000', '3209.000000', '748.000000', '1423.000000', '666.000000', '2.737500', '238000.000000']\n",
- "['-118.190000', '34.040000', '45.000000', '963.000000', '234.000000', '1194.000000', '239.000000', '2.180600', '134900.000000']\n",
- "['-121.280000', '37.950000', '49.000000', '1200.000000', '364.000000', '1448.000000', '318.000000', '1.109400', '52500.000000']\n",
- "['-117.960000', '33.790000', '29.000000', '1813.000000', '501.000000', '1170.000000', '482.000000', '2.067700', '214500.000000']\n",
- "['-118.440000', '34.170000', '25.000000', '4966.000000', '1134.000000', '1941.000000', '958.000000', '3.808100', '286700.000000']\n",
- "['-122.310000', '37.520000', '35.000000', '1817.000000', '262.000000', '659.000000', '262.000000', '6.833600', '457200.000000']\n",
- "['-117.970000', '33.920000', '24.000000', '2017.000000', '416.000000', '900.000000', '436.000000', '3.000000', '251400.000000']\n",
- "['-117.710000', '34.050000', '20.000000', '2281.000000', '444.000000', '1545.000000', '481.000000', '2.573500', '130500.000000']\n",
- "['-118.420000', '34.020000', '26.000000', '2664.000000', '842.000000', '1745.000000', '789.000000', '3.426900', '301900.000000']\n",
- "['-120.250000', '37.110000', '20.000000', '2062.000000', '466.000000', '1285.000000', '456.000000', '1.531900', '50500.000000']\n",
- "['-121.350000', '38.510000', '29.000000', '2337.000000', '391.000000', '1054.000000', '352.000000', '4.220600', '157700.000000']\n",
- "['-120.250000', '38.550000', '15.000000', '4403.000000', '891.000000', '1103.000000', '433.000000', '3.012500', '111700.000000']\n",
- "['-118.020000', '34.020000', '21.000000', '5992.000000', '986.000000', '2647.000000', '969.000000', '5.240500', '302400.000000']\n",
- "['-120.660000', '35.260000', '15.000000', '5540.000000', '1319.000000', '2383.000000', '1165.000000', '2.265600', '226200.000000']\n",
- "['-120.660000', '40.420000', '35.000000', '1450.000000', '325.000000', '717.000000', '297.000000', '2.507400', '66400.000000']\n",
- "['-118.150000', '35.060000', '15.000000', '1069.000000', '296.000000', '569.000000', '263.000000', '2.044100', '73300.000000']\n",
- "['-122.510000', '37.780000', '47.000000', '2496.000000', '494.000000', '1201.000000', '454.000000', '4.035300', '342200.000000']\n",
- "['-120.460000', '34.650000', '22.000000', '1298.000000', '358.000000', '1272.000000', '363.000000', '1.648800', '117500.000000']\n",
- "['-117.930000', '33.930000', '25.000000', '2431.000000', '534.000000', '1702.000000', '523.000000', '3.793300', '184400.000000']\n",
- "['-118.210000', '33.970000', '49.000000', '1409.000000', '313.000000', '1268.000000', '317.000000', '3.940800', '170600.000000']\n",
- "['-120.180000', '34.620000', '25.000000', '1337.000000', '219.000000', '671.000000', '225.000000', '3.191200', '226400.000000']\n",
- "['-122.140000', '37.430000', '18.000000', '2060.000000', '563.000000', '1144.000000', '600.000000', '4.068600', '378600.000000']\n",
- "['-123.110000', '40.600000', '23.000000', '708.000000', '202.000000', '316.000000', '136.000000', '1.160200', '65000.000000']\n",
- "['-117.940000', '33.840000', '25.000000', '4016.000000', '831.000000', '2166.000000', '774.000000', '3.188400', '135400.000000']\n",
- "['-122.750000', '38.480000', '4.000000', '6487.000000', '1112.000000', '2958.000000', '1131.000000', '4.541700', '197400.000000']\n",
- "['-121.610000', '37.150000', '16.000000', '5498.000000', '729.000000', '2051.000000', '694.000000', '7.860100', '416300.000000']\n",
- "['-122.420000', '40.600000', '5.000000', '2614.000000', '433.000000', '1275.000000', '411.000000', '3.446400', '122900.000000']\n",
- "['-119.160000', '34.950000', '14.000000', '4054.000000', '787.000000', '1581.000000', '579.000000', '3.088200', '148200.000000']\n",
- "['-118.630000', '34.240000', '9.000000', '4759.000000', '924.000000', '1884.000000', '915.000000', '4.833300', '277200.000000']\n",
- "['-121.950000', '36.980000', '34.000000', '3745.000000', '958.000000', '1622.000000', '802.000000', '3.154600', '261200.000000']\n",
- "['-117.250000', '32.790000', '43.000000', '906.000000', '240.000000', '458.000000', '205.000000', '1.836500', '328600.000000']\n",
- "['-119.180000', '34.220000', '15.000000', '4615.000000', '1008.000000', '2549.000000', '973.000000', '3.906300', '198700.000000']\n",
- "['-117.260000', '32.820000', '34.000000', '5846.000000', '785.000000', '1817.000000', '747.000000', '8.496000', '500001.000000']\n",
- "['-117.070000', '32.790000', '25.000000', '2489.000000', '314.000000', '911.000000', '309.000000', '7.833600', '277600.000000']\n",
- "['-116.760000', '34.230000', '10.000000', '4374.000000', '989.000000', '1020.000000', '376.000000', '2.607100', '89000.000000']\n",
- "['-118.250000', '34.130000', '52.000000', '322.000000', '88.000000', '229.000000', '89.000000', '2.125000', '243800.000000']\n",
- "['-117.280000', '34.260000', '18.000000', '3895.000000', '689.000000', '1086.000000', '375.000000', '3.367200', '133600.000000']\n",
- "['-122.570000', '38.110000', '32.000000', '3521.000000', '748.000000', '1706.000000', '723.000000', '3.470500', '228600.000000']\n",
- "['-122.450000', '37.790000', '52.000000', '1457.000000', '215.000000', '495.000000', '208.000000', '10.709700', '500001.000000']\n",
- "['-117.770000', '33.710000', '15.000000', '2102.000000', '295.000000', '1060.000000', '303.000000', '7.314100', '337100.000000']\n",
- "['-119.440000', '36.610000', '17.000000', '1531.000000', '280.000000', '775.000000', '246.000000', '3.907300', '91600.000000']\n",
- "['-118.320000', '33.930000', '37.000000', '2379.000000', '462.000000', '1327.000000', '445.000000', '4.250000', '172100.000000']\n",
- "['-118.220000', '33.790000', '28.000000', '3008.000000', '629.000000', '2537.000000', '596.000000', '2.300000', '137500.000000']\n",
- "['-122.650000', '38.480000', '17.000000', '1090.000000', '164.000000', '473.000000', '163.000000', '5.506100', '231800.000000']\n",
- "['-121.230000', '37.960000', '44.000000', '2204.000000', '473.000000', '1277.000000', '435.000000', '1.553900', '59200.000000']\n",
- "['-117.860000', '34.090000', '26.000000', '3408.000000', '542.000000', '1664.000000', '543.000000', '6.149800', '239100.000000']\n",
- "['-122.060000', '37.860000', '16.000000', '5187.000000', '1014.000000', '1512.000000', '986.000000', '4.455100', '252400.000000']\n",
- "['-117.360000', '34.100000', '29.000000', '2819.000000', '637.000000', '1683.000000', '608.000000', '2.320500', '87600.000000']\n",
- "['-117.300000', '34.100000', '49.000000', '60.000000', '11.000000', '76.000000', '13.000000', '2.562500', '75000.000000']\n",
- "['-122.140000', '38.030000', '42.000000', '118.000000', '34.000000', '54.000000', '30.000000', '2.579500', '225000.000000']\n",
- "['-121.640000', '36.800000', '18.000000', '5915.000000', '1000.000000', '2975.000000', '975.000000', '4.581200', '255200.000000']\n",
- "['-122.240000', '38.010000', '11.000000', '3751.000000', '565.000000', '1949.000000', '555.000000', '5.786200', '269400.000000']\n",
- "['-116.860000', '34.310000', '19.000000', '1649.000000', '328.000000', '382.000000', '151.000000', '4.055600', '133000.000000']\n",
- "['-122.710000', '37.880000', '21.000000', '2845.000000', '552.000000', '599.000000', '250.000000', '4.312500', '495800.000000']\n",
- "['-117.090000', '32.560000', '8.000000', '864.000000', '156.000000', '626.000000', '172.000000', '4.898400', '151500.000000']\n",
- "['-122.250000', '37.470000', '35.000000', '3183.000000', '515.000000', '1313.000000', '487.000000', '5.906200', '383200.000000']\n",
- "['-118.120000', '33.770000', '20.000000', '4534.000000', '954.000000', '1941.000000', '892.000000', '6.036200', '463500.000000']\n",
- "['-120.960000', '37.670000', '17.000000', '2434.000000', '511.000000', '1558.000000', '546.000000', '2.921900', '114300.000000']\n",
- "['-119.300000', '36.320000', '23.000000', '3521.000000', '615.000000', '1712.000000', '636.000000', '3.387500', '92500.000000']\n",
- "['-117.390000', '33.960000', '52.000000', '1992.000000', '345.000000', '948.000000', '358.000000', '3.291700', '129300.000000']\n",
- "['-121.000000', '37.600000', '22.000000', '4412.000000', '925.000000', '3116.000000', '817.000000', '2.689900', '82100.000000']\n",
- "['-117.090000', '32.640000', '19.000000', '2571.000000', '791.000000', '1205.000000', '783.000000', '1.620000', '131300.000000']\n",
- "['-122.050000', '37.930000', '15.000000', '7803.000000', '1603.000000', '2957.000000', '1546.000000', '4.450000', '184900.000000']\n",
- "['-120.430000', '34.870000', '26.000000', '1699.000000', '272.000000', '799.000000', '266.000000', '3.987100', '157700.000000']\n",
- "['-122.090000', '37.690000', '43.000000', '500.000000', '110.000000', '273.000000', '120.000000', '3.312500', '150000.000000']\n",
- "['-118.460000', '34.010000', '39.000000', '711.000000', '148.000000', '347.000000', '153.000000', '4.281300', '297200.000000']\n",
- "['-121.980000', '37.370000', '35.000000', '995.000000', '202.000000', '615.000000', '199.000000', '5.094200', '217500.000000']\n",
- "['-121.970000', '37.760000', '8.000000', '3743.000000', '581.000000', '1633.000000', '567.000000', '6.702700', '381900.000000']\n",
- "['-117.810000', '33.830000', '8.000000', '7326.000000', '884.000000', '2569.000000', '798.000000', '10.157000', '477100.000000']\n",
- "['-118.160000', '33.890000', '38.000000', '483.000000', '113.000000', '389.000000', '108.000000', '2.185900', '143800.000000']\n",
- "['-115.570000', '32.780000', '25.000000', '2007.000000', '301.000000', '1135.000000', '332.000000', '5.128000', '99600.000000']\n",
- "['-117.620000', '33.420000', '27.000000', '1005.000000', '266.000000', '460.000000', '243.000000', '3.102900', '190600.000000']\n",
- "['-121.510000', '38.560000', '43.000000', '1048.000000', '312.000000', '1320.000000', '294.000000', '1.064900', '137500.000000']\n",
- "['-117.110000', '32.750000', '18.000000', '1943.000000', '587.000000', '1329.000000', '522.000000', '1.769600', '103100.000000']\n",
- "['-122.460000', '37.720000', '37.000000', '1833.000000', '388.000000', '1093.000000', '363.000000', '3.070300', '211800.000000']\n",
- "['-122.010000', '37.580000', '17.000000', '4313.000000', '717.000000', '2629.000000', '721.000000', '5.757900', '231800.000000']\n",
- "['-116.850000', '34.260000', '18.000000', '6988.000000', '1635.000000', '2044.000000', '726.000000', '2.430800', '90600.000000']\n",
- "['-122.180000', '37.150000', '17.000000', '1457.000000', '289.000000', '591.000000', '235.000000', '5.578500', '284100.000000']\n",
- "['-116.950000', '32.820000', '19.000000', '5308.000000', '1058.000000', '2852.000000', '1092.000000', '2.916100', '135700.000000']\n",
- "['-117.230000', '32.740000', '16.000000', '1953.000000', '404.000000', '798.000000', '385.000000', '4.816700', '169800.000000']\n",
- "['-117.840000', '34.110000', '17.000000', '3499.000000', '621.000000', '1911.000000', '621.000000', '4.889400', '191700.000000']\n",
- "['-122.490000', '37.760000', '48.000000', '1351.000000', '270.000000', '650.000000', '265.000000', '3.527800', '339800.000000']\n",
- "['-117.930000', '33.710000', '10.000000', '2775.000000', '717.000000', '1581.000000', '633.000000', '4.136600', '158800.000000']\n",
- "['-118.180000', '33.740000', '30.000000', '5915.000000', '1750.000000', '2136.000000', '1503.000000', '4.096800', '310000.000000']\n",
- "['-118.080000', '33.920000', '38.000000', '1335.000000', '282.000000', '1011.000000', '269.000000', '3.690800', '157500.000000']\n",
- "['-118.300000', '34.010000', '52.000000', '1444.000000', '343.000000', '1154.000000', '334.000000', '2.062500', '134400.000000']\n",
- "['-122.170000', '39.310000', '35.000000', '2791.000000', '552.000000', '1395.000000', '476.000000', '2.562500', '62700.000000']\n",
- "['-117.140000', '32.750000', '19.000000', '1358.000000', '613.000000', '766.000000', '630.000000', '1.035300', '150000.000000']\n",
- "['-117.940000', '34.040000', '36.000000', '1431.000000', '354.000000', '1367.000000', '334.000000', '3.559200', '160200.000000']\n",
- "['-121.740000', '37.190000', '11.000000', '1290.000000', '197.000000', '881.000000', '191.000000', '4.203900', '500001.000000']\n",
- "['-118.360000', '33.810000', '26.000000', '1575.000000', '300.000000', '881.000000', '309.000000', '5.177800', '359900.000000']\n",
- "['-122.440000', '37.780000', '37.000000', '1235.000000', '314.000000', '481.000000', '297.000000', '3.687500', '492300.000000']\n",
- "['-118.190000', '33.810000', '23.000000', '954.000000', '390.000000', '804.000000', '373.000000', '2.583300', '181300.000000']\n",
- "['-117.290000', '33.190000', '18.000000', '6235.000000', '1233.000000', '4127.000000', '1162.000000', '3.070400', '151600.000000']\n",
- "['-117.240000', '32.850000', '18.000000', '3117.000000', '475.000000', '904.000000', '368.000000', '6.758700', '388500.000000']\n",
- "['-117.240000', '32.800000', '29.000000', '3376.000000', '882.000000', '1513.000000', '843.000000', '3.101000', '238200.000000']\n",
- "['-120.980000', '38.660000', '9.000000', '2073.000000', '404.000000', '916.000000', '373.000000', '3.225000', '163300.000000']\n",
- "['-119.630000', '36.760000', '22.000000', '4126.000000', '614.000000', '1795.000000', '613.000000', '4.925000', '154700.000000']\n",
- "['-121.650000', '37.120000', '14.000000', '4721.000000', '999.000000', '2648.000000', '888.000000', '3.689500', '239300.000000']\n",
- "['-121.900000', '37.440000', '12.000000', '4228.000000', '734.000000', '2594.000000', '732.000000', '6.608600', '299400.000000']\n",
- "['-122.110000', '37.700000', '23.000000', '1689.000000', '461.000000', '828.000000', '443.000000', '2.155200', '161400.000000']\n",
- "['-118.290000', '33.950000', '35.000000', '1401.000000', '362.000000', '1357.000000', '327.000000', '2.091700', '99300.000000']\n",
- "['-117.760000', '34.060000', '30.000000', '1700.000000', '504.000000', '1719.000000', '459.000000', '2.227000', '91900.000000']\n",
- "['-118.320000', '34.080000', '52.000000', '2370.000000', '473.000000', '1053.000000', '434.000000', '4.142900', '380300.000000']\n",
- "['-117.080000', '32.720000', '32.000000', '2286.000000', '468.000000', '1741.000000', '467.000000', '3.044600', '101900.000000']\n",
- "['-117.130000', '32.790000', '35.000000', '1362.000000', '243.000000', '698.000000', '255.000000', '3.645800', '173800.000000']\n",
- "['-121.940000', '36.980000', '24.000000', '3010.000000', '562.000000', '1360.000000', '504.000000', '4.200600', '290700.000000']\n",
- "['-118.230000', '33.960000', '36.000000', '1062.000000', '270.000000', '1136.000000', '273.000000', '1.659700', '109100.000000']\n",
- "['-121.980000', '37.360000', '34.000000', '1735.000000', '318.000000', '1019.000000', '301.000000', '4.562500', '242700.000000']\n",
- "['-118.280000', '34.120000', '50.000000', '2384.000000', '312.000000', '836.000000', '337.000000', '12.876300', '500001.000000']\n",
- "['-122.130000', '37.150000', '39.000000', '2854.000000', '613.000000', '1338.000000', '518.000000', '3.942300', '180300.000000']\n",
- "['-118.200000', '33.780000', '48.000000', '1766.000000', '497.000000', '1908.000000', '466.000000', '1.987200', '168800.000000']\n",
- "['-117.730000', '34.120000', '26.000000', '1279.000000', '163.000000', '412.000000', '157.000000', '6.173100', '293800.000000']\n",
- "['-117.990000', '33.690000', '12.000000', '2480.000000', '858.000000', '1441.000000', '788.000000', '1.670500', '350000.000000']\n",
- "['-117.940000', '34.060000', '32.000000', '3418.000000', '662.000000', '2003.000000', '622.000000', '4.033300', '210200.000000']\n",
- "['-117.390000', '34.110000', '5.000000', '2987.000000', '457.000000', '1821.000000', '485.000000', '4.888900', '138900.000000']\n",
- "['-122.000000', '38.350000', '38.000000', '1918.000000', '364.000000', '745.000000', '348.000000', '2.570700', '126000.000000']\n",
- "['-120.980000', '37.590000', '2.000000', '5042.000000', '834.000000', '2784.000000', '787.000000', '4.648400', '145900.000000']\n",
- "['-118.260000', '34.120000', '45.000000', '2839.000000', '698.000000', '1768.000000', '653.000000', '3.130600', '214000.000000']\n",
- "['-122.160000', '37.680000', '16.000000', '1687.000000', '348.000000', '568.000000', '352.000000', '2.386900', '83300.000000']\n",
- "['-118.120000', '33.830000', '45.000000', '1579.000000', '278.000000', '687.000000', '285.000000', '5.042400', '225900.000000']\n",
- "['-117.880000', '33.790000', '32.000000', '1484.000000', '295.000000', '928.000000', '295.000000', '5.141800', '190300.000000']\n",
- "['-122.410000', '37.710000', '40.000000', '2054.000000', '433.000000', '1738.000000', '429.000000', '4.992600', '213900.000000']\n",
- "['-122.390000', '37.730000', '43.000000', '4864.000000', '972.000000', '3134.000000', '959.000000', '4.339300', '217300.000000']\n",
- "['-121.930000', '36.630000', '33.000000', '1740.000000', '342.000000', '638.000000', '329.000000', '3.191200', '319800.000000']\n",
- "['-120.310000', '38.020000', '11.000000', '2366.000000', '398.000000', '1046.000000', '387.000000', '3.820300', '139700.000000']\n",
- "['-122.470000', '37.610000', '34.000000', '4551.000000', '837.000000', '2208.000000', '834.000000', '5.436400', '279300.000000']\n",
- "['-117.680000', '34.000000', '5.000000', '3761.000000', '580.000000', '2335.000000', '648.000000', '5.733800', '225400.000000']\n",
- "['-122.280000', '37.850000', '41.000000', '535.000000', '123.000000', '317.000000', '119.000000', '2.403800', '107500.000000']\n",
- "['-117.180000', '32.920000', '4.000000', '15025.000000', '2616.000000', '7560.000000', '2392.000000', '5.196000', '210700.000000']\n",
- "['-117.700000', '33.600000', '26.000000', '2283.000000', '506.000000', '634.000000', '469.000000', '2.377400', '74300.000000']\n",
- "['-122.480000', '37.750000', '52.000000', '2074.000000', '401.000000', '1136.000000', '409.000000', '4.770300', '331000.000000']\n",
- "['-117.150000', '32.740000', '26.000000', '3149.000000', '832.000000', '1320.000000', '808.000000', '3.025900', '211700.000000']\n",
- "['-119.900000', '36.790000', '22.000000', '1970.000000', '332.000000', '1066.000000', '319.000000', '3.312500', '106100.000000']\n",
- "['-117.190000', '32.780000', '34.000000', '4108.000000', '664.000000', '1659.000000', '644.000000', '4.409700', '252000.000000']\n",
- "['-118.390000', '34.030000', '25.000000', '3442.000000', '1050.000000', '1890.000000', '914.000000', '3.057400', '319400.000000']\n",
- "['-117.780000', '33.680000', '15.000000', '1834.000000', '330.000000', '841.000000', '309.000000', '6.063400', '234300.000000']\n",
- "['-119.670000', '36.650000', '20.000000', '2512.000000', '449.000000', '1464.000000', '450.000000', '3.921100', '92300.000000']\n",
- "['-118.260000', '34.020000', '41.000000', '848.000000', '323.000000', '1428.000000', '313.000000', '1.560300', '109600.000000']\n",
- "['-122.240000', '38.010000', '16.000000', '2084.000000', '315.000000', '1154.000000', '307.000000', '6.010200', '235600.000000']\n",
- "['-122.250000', '38.160000', '17.000000', '4459.000000', '944.000000', '1812.000000', '888.000000', '2.937500', '106700.000000']\n",
- "['-117.320000', '33.800000', '11.000000', '3196.000000', '576.000000', '1757.000000', '552.000000', '4.098200', '173300.000000']\n",
- "['-118.210000', '34.060000', '52.000000', '470.000000', '115.000000', '434.000000', '123.000000', '2.095000', '109100.000000']\n",
- "['-119.770000', '36.800000', '24.000000', '3748.000000', '770.000000', '1827.000000', '719.000000', '2.722200', '83100.000000']\n",
- "['-121.860000', '37.410000', '16.000000', '1603.000000', '287.000000', '1080.000000', '296.000000', '6.125600', '266900.000000']\n",
- "['-117.970000', '33.880000', '9.000000', '1344.000000', '279.000000', '530.000000', '265.000000', '5.073100', '185100.000000']\n",
- "['-121.840000', '39.720000', '52.000000', '1457.000000', '389.000000', '802.000000', '342.000000', '0.956600', '69000.000000']\n",
- "['-118.510000', '34.200000', '37.000000', '2066.000000', '434.000000', '1031.000000', '414.000000', '4.092400', '188400.000000']\n",
- "['-117.930000', '33.780000', '28.000000', '4380.000000', '820.000000', '2187.000000', '835.000000', '3.901800', '182300.000000']\n",
- "['-117.750000', '33.610000', '16.000000', '2270.000000', '488.000000', '709.000000', '489.000000', '3.284500', '227600.000000']\n",
- "['-121.460000', '38.700000', '32.000000', '965.000000', '183.000000', '568.000000', '188.000000', '3.861100', '93900.000000']\n",
- "['-119.280000', '36.320000', '29.000000', '2274.000000', '514.000000', '1234.000000', '521.000000', '1.913800', '66900.000000']\n",
- "['-118.740000', '34.280000', '21.000000', '4056.000000', '637.000000', '1974.000000', '634.000000', '5.902400', '221000.000000']\n",
- "['-119.330000', '36.190000', '27.000000', '418.000000', '163.000000', '332.000000', '141.000000', '1.071400', '63800.000000']\n",
- "['-118.750000', '34.270000', '24.000000', '3241.000000', '461.000000', '1567.000000', '446.000000', '5.598300', '233300.000000']\n",
- "['-118.210000', '33.930000', '33.000000', '2739.000000', '801.000000', '3423.000000', '741.000000', '2.284700', '132700.000000']\n",
- "['-122.370000', '37.960000', '37.000000', '1572.000000', '402.000000', '1046.000000', '350.000000', '0.740300', '68600.000000']\n",
- "['-121.980000', '37.280000', '27.000000', '3526.000000', '589.000000', '1725.000000', '553.000000', '5.781200', '275000.000000']\n",
- "['-117.030000', '32.610000', '23.000000', '1553.000000', '216.000000', '778.000000', '229.000000', '5.153800', '171300.000000']\n",
- "['-117.280000', '34.410000', '14.000000', '2105.000000', '396.000000', '960.000000', '396.000000', '2.993400', '118200.000000']\n",
- "['-118.020000', '34.130000', '33.000000', '2874.000000', '458.000000', '1239.000000', '431.000000', '5.232900', '430900.000000']\n",
- "['-117.900000', '34.060000', '33.000000', '1330.000000', '209.000000', '578.000000', '192.000000', '5.640600', '266200.000000']\n",
- "['-118.470000', '34.240000', '19.000000', '2405.000000', '661.000000', '1855.000000', '621.000000', '2.311100', '255400.000000']\n",
- "['-122.490000', '37.860000', '35.000000', '2729.000000', '538.000000', '969.000000', '528.000000', '6.766900', '500001.000000']\n",
- "['-121.440000', '38.680000', '19.000000', '2476.000000', '534.000000', '1355.000000', '463.000000', '2.062500', '94400.000000']\n",
- "['-118.360000', '34.200000', '14.000000', '1878.000000', '614.000000', '1874.000000', '559.000000', '2.526700', '231800.000000']\n",
- "['-117.280000', '33.060000', '8.000000', '4172.000000', '1022.000000', '2585.000000', '941.000000', '4.011800', '245800.000000']\n",
- "['-122.430000', '37.730000', '52.000000', '1142.000000', '224.000000', '494.000000', '206.000000', '5.060200', '298900.000000']\n",
- "['-118.130000', '34.130000', '52.000000', '2826.000000', '381.000000', '924.000000', '365.000000', '7.997600', '500001.000000']\n",
- "['-118.050000', '33.950000', '33.000000', '1954.000000', '390.000000', '1600.000000', '376.000000', '3.612500', '170800.000000']\n",
- "['-121.990000', '38.260000', '18.000000', '921.000000', '126.000000', '368.000000', '120.000000', '6.084200', '261100.000000']\n",
- "['-122.470000', '37.780000', '52.000000', '1941.000000', '436.000000', '955.000000', '425.000000', '4.133900', '396400.000000']\n",
- "['-121.270000', '38.660000', '15.000000', '2642.000000', '520.000000', '1032.000000', '475.000000', '4.138200', '189800.000000']\n",
- "['-122.240000', '37.810000', '52.000000', '2026.000000', '482.000000', '709.000000', '456.000000', '3.272700', '268500.000000']\n",
- "['-121.440000', '38.470000', '5.000000', '5666.000000', '1178.000000', '3139.000000', '1131.000000', '3.360800', '108900.000000']\n",
- "['-118.120000', '33.770000', '10.000000', '7264.000000', '1137.000000', '2528.000000', '1057.000000', '10.223300', '500001.000000']\n",
- "['-117.980000', '33.940000', '32.000000', '2562.000000', '491.000000', '1222.000000', '446.000000', '4.098500', '226200.000000']\n",
- "['-118.070000', '34.160000', '35.000000', '2459.000000', '438.000000', '970.000000', '437.000000', '4.214300', '369400.000000']\n",
- "['-118.190000', '34.140000', '46.000000', '2387.000000', '488.000000', '1181.000000', '456.000000', '3.605800', '257900.000000']\n",
- "['-118.210000', '34.120000', '52.000000', '1301.000000', '389.000000', '1189.000000', '361.000000', '2.513900', '190000.000000']\n",
- "['-121.920000', '36.630000', '36.000000', '877.000000', '175.000000', '349.000000', '168.000000', '3.416700', '339100.000000']\n",
- "['-117.970000', '33.840000', '18.000000', '1063.000000', '209.000000', '462.000000', '223.000000', '2.834800', '219000.000000']\n",
- "['-118.410000', '33.990000', '39.000000', '3014.000000', '822.000000', '3212.000000', '777.000000', '1.198500', '215000.000000']\n",
- "['-119.440000', '36.600000', '34.000000', '864.000000', '184.000000', '579.000000', '171.000000', '2.041700', '72500.000000']\n",
- "['-122.700000', '39.140000', '13.000000', '532.000000', '111.000000', '214.000000', '62.000000', '3.392900', '108300.000000']\n",
- "['-122.300000', '37.560000', '37.000000', '1962.000000', '367.000000', '1267.000000', '382.000000', '4.734400', '271800.000000']\n",
- "['-121.990000', '37.540000', '26.000000', '2332.000000', '371.000000', '1285.000000', '404.000000', '5.388000', '225000.000000']\n",
- "['-118.380000', '33.980000', '25.000000', '7105.000000', '1012.000000', '2519.000000', '1004.000000', '6.811200', '500001.000000']\n",
- "['-117.980000', '33.830000', '17.000000', '3506.000000', '992.000000', '2104.000000', '893.000000', '3.300600', '185800.000000']\n",
- "['-117.960000', '33.680000', '25.000000', '2004.000000', '349.000000', '1085.000000', '343.000000', '4.765600', '230700.000000']\n",
- "['-117.640000', '33.660000', '6.000000', '5221.000000', '1217.000000', '2597.000000', '1119.000000', '4.607600', '204000.000000']\n",
- "['-121.290000', '37.330000', '36.000000', '48.000000', '12.000000', '27.000000', '8.000000', '4.000000', '75000.000000']\n",
- "['-122.440000', '37.770000', '52.000000', '5604.000000', '1268.000000', '2023.000000', '1196.000000', '4.408500', '400000.000000']\n",
- "['-118.330000', '33.980000', '28.000000', '3889.000000', '1199.000000', '3121.000000', '1046.000000', '1.880600', '113900.000000']\n",
- "['-121.290000', '37.990000', '30.000000', '1271.000000', '528.000000', '2019.000000', '524.000000', '1.515200', '81300.000000']\n",
- "['-121.800000', '37.350000', '17.000000', '2529.000000', '423.000000', '1756.000000', '429.000000', '5.101700', '240700.000000']\n",
- "['-119.290000', '36.530000', '33.000000', '1509.000000', '352.000000', '1734.000000', '336.000000', '1.625000', '50300.000000']\n",
- "['-118.110000', '34.030000', '36.000000', '1493.000000', '316.000000', '989.000000', '293.000000', '3.527200', '213700.000000']\n",
- "['-121.870000', '37.420000', '19.000000', '12128.000000', '2112.000000', '6810.000000', '2040.000000', '6.441900', '264500.000000']\n",
- "['-122.090000', '37.700000', '33.000000', '4413.000000', '1107.000000', '2239.000000', '1051.000000', '2.986100', '208200.000000']\n",
- "['-122.290000', '37.870000', '52.000000', '2225.000000', '460.000000', '1145.000000', '430.000000', '2.616500', '150000.000000']\n",
- "['-117.110000', '32.660000', '52.000000', '25.000000', '5.000000', '14.000000', '9.000000', '1.625000', '118800.000000']\n",
- "['-121.900000', '37.390000', '42.000000', '42.000000', '14.000000', '26.000000', '14.000000', '1.736100', '500001.000000']\n",
- "['-117.520000', '33.880000', '21.000000', '722.000000', '178.000000', '770.000000', '165.000000', '2.565600', '102500.000000']\n",
- "['-121.470000', '38.700000', '31.000000', '1007.000000', '181.000000', '563.000000', '185.000000', '3.625000', '91300.000000']\n",
- "['-122.280000', '37.520000', '27.000000', '2958.000000', '655.000000', '1285.000000', '577.000000', '4.080100', '397800.000000']\n",
- "['-118.410000', '34.250000', '33.000000', '827.000000', '192.000000', '981.000000', '184.000000', '2.642900', '143100.000000']\n",
- "['-122.250000', '37.800000', '52.000000', '2087.000000', '510.000000', '1197.000000', '488.000000', '3.014900', '218400.000000']\n",
- "['-119.050000', '34.240000', '24.000000', '4341.000000', '646.000000', '1929.000000', '703.000000', '5.429800', '279600.000000']\n",
- "['-118.260000', '34.060000', '33.000000', '1950.000000', '1047.000000', '3707.000000', '1012.000000', '1.723800', '110000.000000']\n",
- "['-117.090000', '32.700000', '15.000000', '869.000000', '217.000000', '887.000000', '216.000000', '1.458300', '84200.000000']\n",
- "['-117.390000', '34.070000', '15.000000', '1966.000000', '331.000000', '1118.000000', '323.000000', '3.855800', '122700.000000']\n",
- "['-122.220000', '37.790000', '37.000000', '2343.000000', '574.000000', '1608.000000', '523.000000', '2.149400', '132500.000000']\n",
- "['-118.430000', '34.040000', '52.000000', '2425.000000', '435.000000', '962.000000', '412.000000', '5.858700', '494700.000000']\n",
- "['-117.560000', '33.880000', '36.000000', '838.000000', '210.000000', '722.000000', '180.000000', '2.486100', '96200.000000']\n",
- "['-118.130000', '34.160000', '52.000000', '1787.000000', '427.000000', '1107.000000', '410.000000', '2.566400', '215000.000000']\n",
- "['-122.210000', '37.470000', '33.000000', '1266.000000', '415.000000', '1991.000000', '334.000000', '2.920000', '202800.000000']\n",
- "['-118.080000', '33.780000', '34.000000', '2287.000000', '347.000000', '1051.000000', '346.000000', '5.576700', '372000.000000']\n",
- "['-118.230000', '34.210000', '29.000000', '2584.000000', '608.000000', '1217.000000', '568.000000', '3.328700', '273400.000000']\n",
- "['-117.230000', '32.730000', '44.000000', '1168.000000', '263.000000', '509.000000', '256.000000', '2.727300', '269700.000000']\n",
- "['-118.190000', '33.770000', '21.000000', '2103.000000', '727.000000', '1064.000000', '603.000000', '1.617800', '137500.000000']\n",
- "['-117.170000', '32.810000', '26.000000', '788.000000', '127.000000', '346.000000', '125.000000', '5.060300', '185700.000000']\n",
- "['-122.000000', '36.970000', '39.000000', '2702.000000', '646.000000', '1136.000000', '491.000000', '2.894100', '256700.000000']\n",
- "['-120.610000', '35.120000', '12.000000', '3430.000000', '793.000000', '1840.000000', '720.000000', '2.982100', '162000.000000']\n",
- "['-118.170000', '33.830000', '46.000000', '1362.000000', '214.000000', '531.000000', '222.000000', '4.312500', '290500.000000']\n",
- "['-117.860000', '33.890000', '24.000000', '2002.000000', '253.000000', '820.000000', '241.000000', '6.961200', '274500.000000']\n",
- "['-118.510000', '34.220000', '36.000000', '1493.000000', '285.000000', '766.000000', '272.000000', '4.864600', '213200.000000']\n",
- "['-118.260000', '33.900000', '38.000000', '1566.000000', '318.000000', '981.000000', '318.000000', '4.023400', '111900.000000']\n",
- "['-118.020000', '34.040000', '27.000000', '5640.000000', '1001.000000', '3538.000000', '978.000000', '5.065000', '215400.000000']\n",
- "['-118.370000', '34.100000', '37.000000', '407.000000', '67.000000', '100.000000', '47.000000', '15.000100', '500001.000000']\n",
- "['-117.990000', '33.790000', '35.000000', '2301.000000', '467.000000', '2272.000000', '454.000000', '3.956600', '167800.000000']\n",
- "['-122.420000', '37.710000', '44.000000', '2080.000000', '489.000000', '1781.000000', '478.000000', '3.682700', '215300.000000']\n",
- "['-117.250000', '33.930000', '8.000000', '10110.000000', '1761.000000', '5804.000000', '1703.000000', '4.265400', '137600.000000']\n",
- "['-122.040000', '37.850000', '27.000000', '6039.000000', '780.000000', '2181.000000', '761.000000', '9.586200', '469400.000000']\n",
- "['-117.230000', '32.870000', '11.000000', '3123.000000', '740.000000', '1223.000000', '634.000000', '5.417000', '196800.000000']\n",
- "['-117.160000', '32.810000', '35.000000', '1213.000000', '200.000000', '532.000000', '181.000000', '3.680600', '172400.000000']\n",
- "['-118.090000', '33.900000', '37.000000', '1147.000000', '258.000000', '742.000000', '242.000000', '4.046100', '153500.000000']\n",
- "['-118.080000', '34.070000', '32.000000', '4089.000000', '975.000000', '3775.000000', '955.000000', '3.290000', '205500.000000']\n",
- "['-117.090000', '32.790000', '31.000000', '2019.000000', '417.000000', '872.000000', '386.000000', '3.196400', '177700.000000']\n",
- "['-121.660000', '37.130000', '20.000000', '4477.000000', '924.000000', '2656.000000', '871.000000', '3.878800', '226900.000000']\n",
- "['-118.240000', '33.960000', '34.000000', '946.000000', '254.000000', '1101.000000', '239.000000', '1.739600', '105900.000000']\n",
- "['-122.020000', '37.530000', '21.000000', '4280.000000', '673.000000', '2216.000000', '681.000000', '5.707200', '242200.000000']\n",
- "['-117.820000', '33.900000', '25.000000', '1137.000000', '170.000000', '524.000000', '164.000000', '7.574400', '259300.000000']\n",
- "['-118.210000', '33.940000', '34.000000', '710.000000', '205.000000', '1134.000000', '233.000000', '2.773400', '141100.000000']\n",
- "['-117.880000', '34.000000', '32.000000', '265.000000', '51.000000', '170.000000', '50.000000', '3.937500', '187500.000000']\n",
- "['-118.110000', '33.860000', '36.000000', '2750.000000', '487.000000', '1386.000000', '458.000000', '4.990400', '221700.000000']\n",
- "['-118.860000', '34.070000', '16.000000', '1409.000000', '244.000000', '970.000000', '172.000000', '8.014400', '500001.000000']\n",
- "['-122.490000', '38.320000', '30.000000', '1631.000000', '284.000000', '788.000000', '284.000000', '3.309800', '195500.000000']\n",
- "['-121.660000', '39.660000', '17.000000', '3502.000000', '655.000000', '1763.000000', '613.000000', '2.962500', '101200.000000']\n",
- "['-122.330000', '37.930000', '34.000000', '2326.000000', '471.000000', '1356.000000', '441.000000', '2.347500', '90300.000000']\n",
- "['-117.280000', '33.200000', '20.000000', '4835.000000', '854.000000', '2983.000000', '834.000000', '4.342800', '152100.000000']\n",
- "['-122.160000', '37.720000', '38.000000', '1007.000000', '245.000000', '618.000000', '239.000000', '2.875000', '144800.000000']\n",
- "['-117.850000', '34.120000', '30.000000', '4367.000000', '1033.000000', '2524.000000', '954.000000', '3.044800', '192100.000000']\n",
- "['-119.260000', '35.500000', '38.000000', '2536.000000', '409.000000', '1133.000000', '430.000000', '4.237500', '78600.000000']\n",
- "['-123.350000', '40.990000', '23.000000', '141.000000', '59.000000', '47.000000', '23.000000', '1.125000', '66000.000000']\n",
- "['-118.140000', '34.160000', '39.000000', '2776.000000', '840.000000', '2546.000000', '773.000000', '2.575000', '153500.000000']\n",
- "['-118.390000', '34.230000', '43.000000', '1193.000000', '299.000000', '1184.000000', '320.000000', '2.151800', '161600.000000']\n",
- "['-117.030000', '32.790000', '17.000000', '7352.000000', '1699.000000', '3331.000000', '1634.000000', '2.700600', '166300.000000']\n",
- "['-117.840000', '33.800000', '34.000000', '2004.000000', '331.000000', '843.000000', '328.000000', '3.590000', '230600.000000']\n",
- "['-116.690000', '33.500000', '13.000000', '1187.000000', '255.000000', '442.000000', '179.000000', '1.910700', '155700.000000']\n",
- "['-121.090000', '37.610000', '42.000000', '1787.000000', '296.000000', '921.000000', '287.000000', '3.886400', '171400.000000']\n",
- "['-117.140000', '32.760000', '35.000000', '2539.000000', '661.000000', '1308.000000', '629.000000', '2.677700', '146400.000000']\n",
- "['-122.690000', '38.460000', '32.000000', '2970.000000', '504.000000', '1117.000000', '512.000000', '5.000000', '275900.000000']\n",
- "['-121.130000', '38.550000', '8.000000', '530.000000', '109.000000', '398.000000', '96.000000', '4.203100', '212500.000000']\n",
- "['-121.870000', '37.270000', '25.000000', '1730.000000', '226.000000', '721.000000', '243.000000', '7.584500', '279300.000000']\n",
- "['-117.910000', '33.660000', '26.000000', '5761.000000', '1326.000000', '2681.000000', '1116.000000', '4.034100', '243300.000000']\n",
- "['-121.940000', '37.340000', '42.000000', '2174.000000', '420.000000', '1304.000000', '464.000000', '3.142900', '286500.000000']\n",
- "['-121.830000', '37.950000', '17.000000', '1133.000000', '244.000000', '716.000000', '235.000000', '2.875000', '162500.000000']\n",
- "['-124.170000', '41.800000', '16.000000', '2739.000000', '480.000000', '1259.000000', '436.000000', '3.755700', '109400.000000']\n",
- "['-118.330000', '34.060000', '52.000000', '1368.000000', '231.000000', '737.000000', '248.000000', '8.361700', '433800.000000']\n",
- "['-118.240000', '33.800000', '28.000000', '636.000000', '169.000000', '788.000000', '143.000000', '3.616100', '131300.000000']\n",
- "['-122.590000', '38.120000', '25.000000', '7784.000000', '1145.000000', '3445.000000', '1166.000000', '6.013200', '287900.000000']\n",
- "['-122.480000', '37.710000', '29.000000', '1048.000000', '150.000000', '455.000000', '152.000000', '6.127800', '417600.000000']\n",
- "['-120.730000', '37.380000', '37.000000', '653.000000', '176.000000', '827.000000', '176.000000', '1.923600', '64400.000000']\n",
- "['-117.040000', '32.620000', '26.000000', '3620.000000', '607.000000', '2000.000000', '593.000000', '4.996200', '156000.000000']\n",
- "['-118.440000', '34.270000', '36.000000', '1111.000000', '275.000000', '1333.000000', '266.000000', '3.534700', '158100.000000']\n",
- "['-121.000000', '37.610000', '36.000000', '2647.000000', '604.000000', '2045.000000', '550.000000', '2.273000', '62900.000000']\n",
- "['-117.840000', '33.890000', '24.000000', '3935.000000', '625.000000', '1912.000000', '593.000000', '5.795100', '226900.000000']\n",
- "['-122.250000', '37.770000', '52.000000', '1527.000000', '320.000000', '825.000000', '264.000000', '3.453100', '208800.000000']\n",
- "['-118.360000', '34.100000', '37.000000', '7097.000000', '2010.000000', '2913.000000', '1939.000000', '2.875000', '300000.000000']\n",
- "['-116.920000', '32.790000', '24.000000', '4055.000000', '742.000000', '2123.000000', '744.000000', '4.522400', '142000.000000']\n",
- "['-121.940000', '38.350000', '8.000000', '3157.000000', '559.000000', '1758.000000', '569.000000', '4.412000', '140100.000000']\n",
- "['-120.870000', '35.410000', '16.000000', '2168.000000', '444.000000', '782.000000', '374.000000', '3.018700', '278100.000000']\n",
- "['-118.100000', '33.830000', '36.000000', '2000.000000', '343.000000', '956.000000', '352.000000', '5.373500', '234400.000000']\n",
- "['-117.990000', '34.070000', '31.000000', '1507.000000', '369.000000', '1548.000000', '347.000000', '3.432700', '147200.000000']\n",
- "['-121.490000', '37.940000', '31.000000', '1860.000000', '394.000000', '1848.000000', '293.000000', '2.289100', '162500.000000']\n",
- "['-119.630000', '36.320000', '36.000000', '1518.000000', '287.000000', '749.000000', '255.000000', '2.233300', '61000.000000']\n",
- "['-121.890000', '39.760000', '15.000000', '10265.000000', '1860.000000', '4591.000000', '1906.000000', '3.070000', '142600.000000']\n",
- "['-117.110000', '32.760000', '31.000000', '2293.000000', '549.000000', '1108.000000', '557.000000', '3.385400', '204400.000000']\n",
- "['-118.140000', '34.070000', '42.000000', '1036.000000', '199.000000', '656.000000', '215.000000', '4.190200', '235000.000000']\n",
- "['-118.260000', '33.950000', '38.000000', '1387.000000', '346.000000', '1240.000000', '355.000000', '1.689800', '95100.000000']\n",
- "['-122.350000', '40.560000', '16.000000', '2801.000000', '614.000000', '1695.000000', '563.000000', '1.900000', '81600.000000']\n",
- "['-118.260000', '34.060000', '40.000000', '637.000000', '273.000000', '1150.000000', '263.000000', '1.862500', '131300.000000']\n",
- "['-117.820000', '33.710000', '9.000000', '5206.000000', '992.000000', '4660.000000', '978.000000', '2.885000', '162500.000000']\n",
- "['-119.980000', '38.960000', '25.000000', '2443.000000', '444.000000', '868.000000', '342.000000', '3.541700', '114800.000000']\n",
- "['-118.430000', '34.090000', '27.000000', '1613.000000', '200.000000', '497.000000', '197.000000', '7.983500', '500001.000000']\n",
- "['-117.140000', '32.750000', '20.000000', '1182.000000', '379.000000', '678.000000', '326.000000', '2.193700', '162500.000000']\n",
- "['-118.470000', '34.300000', '16.000000', '2495.000000', '551.000000', '2314.000000', '567.000000', '3.673600', '192200.000000']\n",
- "['-121.780000', '38.680000', '39.000000', '2806.000000', '662.000000', '1659.000000', '638.000000', '1.978700', '97800.000000']\n",
- "['-122.280000', '37.800000', '52.000000', '96.000000', '31.000000', '191.000000', '34.000000', '0.750000', '162500.000000']\n",
- "['-117.210000', '32.800000', '19.000000', '786.000000', '282.000000', '525.000000', '229.000000', '1.727300', '137500.000000']\n",
- "['-121.460000', '38.540000', '48.000000', '1001.000000', '205.000000', '605.000000', '175.000000', '1.833300', '58200.000000']\n",
- "['-121.130000', '36.210000', '30.000000', '1484.000000', '414.000000', '1200.000000', '351.000000', '1.754800', '95800.000000']\n",
- "['-122.530000', '37.970000', '52.000000', '205.000000', '119.000000', '228.000000', '132.000000', '1.906300', '200000.000000']\n",
- "['-122.350000', '37.920000', '36.000000', '921.000000', '200.000000', '585.000000', '236.000000', '1.922400', '94000.000000']\n",
- "['-122.120000', '37.280000', '21.000000', '349.000000', '64.000000', '149.000000', '56.000000', '5.869100', '360000.000000']\n",
- "['-121.320000', '38.260000', '4.000000', '6125.000000', '1063.000000', '3077.000000', '953.000000', '4.117900', '134600.000000']\n",
- "['-121.910000', '36.620000', '40.000000', '1292.000000', '271.000000', '504.000000', '230.000000', '2.475000', '258300.000000']\n",
- "['-117.810000', '33.710000', '16.000000', '2666.000000', '387.000000', '1227.000000', '347.000000', '7.376900', '302400.000000']\n",
- "['-119.710000', '36.810000', '19.000000', '2282.000000', '550.000000', '1034.000000', '500.000000', '1.661800', '69700.000000']\n",
- "['-119.190000', '34.170000', '27.000000', '2183.000000', '364.000000', '1458.000000', '388.000000', '4.456700', '191100.000000']\n",
- "['-117.820000', '33.790000', '26.000000', '2641.000000', '633.000000', '3657.000000', '617.000000', '4.133900', '222300.000000']\n",
- "['-118.270000', '34.160000', '48.000000', '1301.000000', '253.000000', '637.000000', '260.000000', '4.343800', '252700.000000']\n",
- "['-118.330000', '34.100000', '45.000000', '1913.000000', '696.000000', '1552.000000', '611.000000', '2.088800', '237500.000000']\n",
- "['-122.290000', '37.910000', '46.000000', '2085.000000', '346.000000', '748.000000', '354.000000', '4.053600', '262000.000000']\n",
- "['-118.020000', '33.820000', '21.000000', '2052.000000', '456.000000', '1173.000000', '432.000000', '3.788500', '204500.000000']\n",
- "['-118.220000', '33.960000', '35.000000', '1437.000000', '474.000000', '2113.000000', '484.000000', '2.617900', '158800.000000']\n",
- "['-116.890000', '32.820000', '18.000000', '2515.000000', '443.000000', '1442.000000', '449.000000', '5.020100', '154400.000000']\n",
- "['-117.950000', '33.860000', '35.000000', '2478.000000', '431.000000', '1333.000000', '427.000000', '5.209900', '191400.000000']\n",
- "['-122.270000', '37.480000', '26.000000', '3542.000000', '507.000000', '1392.000000', '524.000000', '8.518400', '500001.000000']\n",
- "['-120.510000', '39.520000', '26.000000', '2286.000000', '444.000000', '498.000000', '216.000000', '2.065000', '96100.000000']\n",
- "['-118.420000', '34.090000', '40.000000', '3552.000000', '392.000000', '1024.000000', '370.000000', '15.000100', '500001.000000']\n",
- "['-119.500000', '35.270000', '23.000000', '3827.000000', '696.000000', '1993.000000', '617.000000', '3.074200', '57900.000000']\n",
- "['-122.910000', '39.070000', '21.000000', '2202.000000', '484.000000', '1000.000000', '381.000000', '2.442300', '102300.000000']\n",
- "['-122.460000', '37.770000', '52.000000', '1824.000000', '388.000000', '799.000000', '363.000000', '3.750000', '435700.000000']\n",
- "['-121.540000', '36.990000', '27.000000', '2361.000000', '449.000000', '1782.000000', '397.000000', '3.261400', '305000.000000']\n",
- "['-118.450000', '34.190000', '37.000000', '1073.000000', '254.000000', '739.000000', '253.000000', '2.466700', '192200.000000']\n",
- "['-117.950000', '34.050000', '35.000000', '1309.000000', '276.000000', '1113.000000', '253.000000', '4.375000', '156500.000000']\n",
- "['-120.560000', '35.480000', '12.000000', '4161.000000', '731.000000', '1609.000000', '615.000000', '5.094700', '267500.000000']\n",
- "['-122.460000', '37.650000', '21.000000', '2751.000000', '502.000000', '2027.000000', '491.000000', '5.257300', '322900.000000']\n",
- "['-117.850000', '33.760000', '33.000000', '1866.000000', '327.000000', '1053.000000', '371.000000', '4.546100', '213800.000000']\n",
- "['-118.210000', '33.920000', '37.000000', '1705.000000', '403.000000', '1839.000000', '410.000000', '2.583300', '132700.000000']\n",
- "['-118.170000', '33.980000', '31.000000', '1236.000000', '329.000000', '1486.000000', '337.000000', '3.093800', '155400.000000']\n",
- "['-121.790000', '37.340000', '20.000000', '2018.000000', '328.000000', '1196.000000', '323.000000', '4.931800', '262400.000000']\n",
- "['-117.980000', '33.830000', '32.000000', '1133.000000', '166.000000', '523.000000', '187.000000', '6.213000', '230800.000000']\n",
- "['-118.430000', '34.300000', '37.000000', '1394.000000', '313.000000', '1111.000000', '327.000000', '3.602300', '161800.000000']\n",
- "['-121.690000', '39.360000', '34.000000', '842.000000', '186.000000', '635.000000', '165.000000', '1.835500', '63000.000000']\n",
- "['-117.270000', '33.770000', '16.000000', '2876.000000', '576.000000', '1859.000000', '545.000000', '2.087800', '101300.000000']\n",
- "['-122.410000', '37.590000', '40.000000', '2401.000000', '383.000000', '894.000000', '356.000000', '5.649300', '422400.000000']\n",
- "['-117.480000', '34.100000', '30.000000', '2287.000000', '531.000000', '1796.000000', '503.000000', '2.583300', '90600.000000']\n",
- "['-117.060000', '32.700000', '12.000000', '3943.000000', '737.000000', '3280.000000', '751.000000', '4.112000', '141400.000000']\n",
- "['-121.920000', '36.630000', '40.000000', '1076.000000', '193.000000', '406.000000', '180.000000', '3.494300', '311100.000000']\n",
- "['-120.440000', '37.310000', '16.000000', '3369.000000', '532.000000', '1770.000000', '574.000000', '5.266200', '126200.000000']\n",
- "['-117.180000', '32.700000', '44.000000', '2655.000000', '514.000000', '1102.000000', '489.000000', '3.675900', '368800.000000']\n",
- "['-121.570000', '39.120000', '30.000000', '2601.000000', '534.000000', '1702.000000', '506.000000', '2.080000', '56600.000000']\n",
- "['-122.210000', '37.790000', '52.000000', '762.000000', '190.000000', '600.000000', '195.000000', '3.089300', '125000.000000']\n",
- "['-118.910000', '35.300000', '28.000000', '1793.000000', '358.000000', '1233.000000', '351.000000', '2.784500', '82200.000000']\n",
- "['-121.950000', '37.320000', '20.000000', '1145.000000', '198.000000', '431.000000', '173.000000', '3.110300', '281900.000000']\n",
- "['-121.350000', '38.680000', '20.000000', '7085.000000', '1222.000000', '3455.000000', '1229.000000', '4.311800', '120000.000000']\n",
- "['-121.280000', '38.760000', '47.000000', '2901.000000', '631.000000', '1276.000000', '578.000000', '2.136600', '101900.000000']\n",
- "['-118.350000', '33.890000', '30.000000', '1143.000000', '299.000000', '776.000000', '273.000000', '4.282900', '240000.000000']\n",
- "['-121.980000', '37.970000', '26.000000', '2714.000000', '390.000000', '1232.000000', '409.000000', '5.961700', '231100.000000']\n",
- "['-120.020000', '38.920000', '24.000000', '1194.000000', '246.000000', '414.000000', '151.000000', '3.239600', '101900.000000']\n",
- "['-122.280000', '37.770000', '52.000000', '1468.000000', '363.000000', '870.000000', '347.000000', '2.968800', '220800.000000']\n",
- "['-118.060000', '34.580000', '36.000000', '1493.000000', '258.000000', '899.000000', '260.000000', '3.860000', '109300.000000']\n",
- "['-119.020000', '35.380000', '52.000000', '90.000000', '35.000000', '36.000000', '31.000000', '0.805400', '60000.000000']\n",
- "['-122.430000', '37.790000', '52.000000', '6186.000000', '1566.000000', '2065.000000', '1374.000000', '5.854300', '500001.000000']\n",
- "['-118.070000', '33.860000', '17.000000', '3666.000000', '562.000000', '2104.000000', '579.000000', '5.681800', '338900.000000']\n",
- "['-122.300000', '38.000000', '34.000000', '1712.000000', '317.000000', '956.000000', '341.000000', '4.439400', '162000.000000']\n",
- "['-117.170000', '33.280000', '16.000000', '1921.000000', '312.000000', '862.000000', '280.000000', '5.178600', '376800.000000']\n",
- "['-117.300000', '34.140000', '37.000000', '1454.000000', '261.000000', '761.000000', '248.000000', '2.343800', '88100.000000']\n",
- "['-117.710000', '33.600000', '25.000000', '1949.000000', '459.000000', '602.000000', '428.000000', '2.760100', '72500.000000']\n",
- "['-122.500000', '37.780000', '46.000000', '2646.000000', '607.000000', '1418.000000', '563.000000', '3.716700', '332800.000000']\n",
- "['-122.720000', '38.450000', '41.000000', '1743.000000', '373.000000', '780.000000', '357.000000', '3.146700', '175500.000000']\n",
- "['-118.430000', '34.180000', '31.000000', '2417.000000', '510.000000', '1102.000000', '507.000000', '3.890600', '282200.000000']\n",
- "['-118.030000', '33.970000', '22.000000', '2185.000000', '623.000000', '1644.000000', '606.000000', '2.593000', '192000.000000']\n",
- "['-118.420000', '33.990000', '23.000000', '5548.000000', '1245.000000', '2847.000000', '1229.000000', '4.422800', '366900.000000']\n",
- "['-118.290000', '33.960000', '31.000000', '4022.000000', '1208.000000', '3707.000000', '1007.000000', '1.309600', '116300.000000']\n",
- "['-117.980000', '33.730000', '22.000000', '4232.000000', '624.000000', '2408.000000', '660.000000', '6.653900', '284900.000000']\n",
- "['-121.910000', '39.140000', '45.000000', '845.000000', '155.000000', '343.000000', '136.000000', '2.125000', '62000.000000']\n",
- "['-119.590000', '36.640000', '27.000000', '823.000000', '171.000000', '798.000000', '200.000000', '3.052100', '113800.000000']\n",
- "['-118.330000', '34.110000', '37.000000', '2330.000000', '434.000000', '846.000000', '457.000000', '8.233500', '430200.000000']\n",
- "['-120.630000', '38.750000', '17.000000', '3145.000000', '621.000000', '1432.000000', '559.000000', '2.720100', '117500.000000']\n",
- "['-122.120000', '37.750000', '28.000000', '794.000000', '111.000000', '329.000000', '109.000000', '7.692300', '329800.000000']\n",
- "['-118.350000', '33.950000', '45.000000', '1076.000000', '213.000000', '781.000000', '238.000000', '3.950000', '164000.000000']\n",
- "['-120.440000', '34.960000', '29.000000', '2374.000000', '562.000000', '1617.000000', '463.000000', '2.653100', '108300.000000']\n",
- "['-117.080000', '33.120000', '43.000000', '107.000000', '44.000000', '107.000000', '48.000000', '0.705400', '137500.000000']\n",
- "['-121.270000', '38.610000', '17.000000', '6663.000000', '1369.000000', '2840.000000', '1299.000000', '2.945200', '115600.000000']\n",
- "['-120.070000', '36.960000', '32.000000', '1268.000000', '283.000000', '549.000000', '273.000000', '1.451100', '65200.000000']\n",
- "['-117.660000', '34.060000', '39.000000', '1405.000000', '339.000000', '1489.000000', '336.000000', '1.608000', '91800.000000']\n",
- "['-117.060000', '33.010000', '24.000000', '2618.000000', '485.000000', '726.000000', '443.000000', '3.519200', '159100.000000']\n",
- "['-117.920000', '33.730000', '17.000000', '1692.000000', '293.000000', '934.000000', '280.000000', '4.472800', '205800.000000']\n",
- "['-117.930000', '33.920000', '34.000000', '2271.000000', '437.000000', '1393.000000', '433.000000', '4.244300', '174400.000000']\n",
- "['-122.590000', '38.920000', '15.000000', '1410.000000', '329.000000', '599.000000', '273.000000', '2.195300', '75000.000000']\n",
- "['-118.140000', '33.840000', '36.000000', '3002.000000', '484.000000', '1322.000000', '471.000000', '4.933000', '228900.000000']\n",
- "['-120.790000', '37.080000', '9.000000', '97.000000', '20.000000', '91.000000', '22.000000', '2.906300', '55000.000000']\n",
- "['-117.600000', '34.110000', '18.000000', '6025.000000', '1062.000000', '3360.000000', '1028.000000', '4.888900', '155700.000000']\n",
- "['-122.020000', '37.550000', '33.000000', '1325.000000', '274.000000', '909.000000', '267.000000', '4.568700', '177200.000000']\n",
- "['-118.140000', '33.970000', '31.000000', '1161.000000', '267.000000', '1175.000000', '282.000000', '3.011400', '177000.000000']\n",
- "['-122.310000', '37.540000', '38.000000', '1946.000000', '407.000000', '975.000000', '417.000000', '4.072600', '385400.000000']\n",
- "['-122.260000', '37.830000', '52.000000', '2432.000000', '715.000000', '1377.000000', '696.000000', '2.589800', '176000.000000']\n",
- "['-121.880000', '37.680000', '23.000000', '2234.000000', '270.000000', '854.000000', '286.000000', '7.333000', '337200.000000']\n",
- "['-122.530000', '37.940000', '18.000000', '878.000000', '255.000000', '384.000000', '247.000000', '4.734400', '200000.000000']\n",
- "['-117.710000', '33.630000', '16.000000', '1565.000000', '274.000000', '950.000000', '280.000000', '5.839900', '220600.000000']\n",
- "['-120.100000', '39.190000', '17.000000', '1480.000000', '241.000000', '202.000000', '80.000000', '3.937500', '213200.000000']\n",
- "['-117.770000', '33.720000', '9.000000', '2153.000000', '316.000000', '954.000000', '324.000000', '7.813900', '304700.000000']\n",
- "['-118.010000', '33.840000', '35.000000', '4166.000000', '713.000000', '2354.000000', '709.000000', '5.177500', '213400.000000']\n",
- "['-122.190000', '37.710000', '36.000000', '361.000000', '69.000000', '158.000000', '58.000000', '5.546100', '262500.000000']\n",
- "['-120.360000', '38.210000', '10.000000', '4300.000000', '845.000000', '1480.000000', '609.000000', '2.820800', '139900.000000']\n",
- "['-117.320000', '34.030000', '13.000000', '3853.000000', '761.000000', '1685.000000', '669.000000', '3.902400', '122400.000000']\n",
- "['-117.710000', '34.020000', '17.000000', '12689.000000', '2426.000000', '7343.000000', '2230.000000', '3.636100', '157700.000000']\n",
- "['-118.260000', '33.910000', '33.000000', '954.000000', '241.000000', '655.000000', '218.000000', '2.588200', '92800.000000']\n",
- "['-121.940000', '36.580000', '23.000000', '4911.000000', '693.000000', '1480.000000', '606.000000', '6.777000', '500000.000000']\n",
- "['-121.760000', '37.690000', '29.000000', '3433.000000', '711.000000', '1919.000000', '709.000000', '3.384100', '184400.000000']\n",
- "['-121.940000', '36.550000', '30.000000', '2722.000000', '584.000000', '628.000000', '384.000000', '3.404800', '487100.000000']\n",
- "['-122.640000', '38.010000', '36.000000', '1199.000000', '232.000000', '551.000000', '229.000000', '3.732100', '266700.000000']\n",
- "['-119.340000', '36.340000', '5.000000', '4505.000000', '834.000000', '1917.000000', '775.000000', '4.014400', '126600.000000']\n",
- "['-122.060000', '37.270000', '16.000000', '1612.000000', '221.000000', '567.000000', '208.000000', '10.579300', '500001.000000']\n",
- "['-117.940000', '33.730000', '24.000000', '4197.000000', '718.000000', '2468.000000', '714.000000', '5.256300', '211400.000000']\n",
- "['-118.440000', '33.980000', '21.000000', '18132.000000', '5419.000000', '7431.000000', '4930.000000', '5.335900', '500001.000000']\n",
- "['-117.690000', '34.010000', '30.000000', '2598.000000', '573.000000', '2170.000000', '518.000000', '2.300000', '95600.000000']\n",
- "['-117.870000', '34.150000', '24.000000', '5745.000000', '735.000000', '2061.000000', '679.000000', '8.282700', '451400.000000']\n",
- "['-119.690000', '36.380000', '25.000000', '1688.000000', '302.000000', '879.000000', '277.000000', '3.321400', '103100.000000']\n",
- "['-122.280000', '38.000000', '26.000000', '2335.000000', '413.000000', '980.000000', '417.000000', '3.447100', '178900.000000']\n",
- "['-118.330000', '34.040000', '31.000000', '1090.000000', '251.000000', '955.000000', '239.000000', '2.913000', '192500.000000']\n",
- "['-118.170000', '34.070000', '37.000000', '1155.000000', '225.000000', '814.000000', '241.000000', '3.875000', '148500.000000']\n",
- "['-117.950000', '34.140000', '13.000000', '3859.000000', '710.000000', '2283.000000', '759.000000', '4.559400', '184500.000000']\n",
- "['-118.280000', '33.790000', '28.000000', '1895.000000', '420.000000', '1422.000000', '389.000000', '4.381600', '191300.000000']\n",
- "['-120.860000', '37.690000', '5.000000', '6660.000000', '1217.000000', '3012.000000', '1087.000000', '3.080900', '143600.000000']\n",
- "['-120.150000', '39.170000', '32.000000', '1684.000000', '359.000000', '454.000000', '209.000000', '2.912500', '145800.000000']\n",
- "['-117.050000', '32.710000', '25.000000', '3292.000000', '608.000000', '2266.000000', '592.000000', '3.298600', '119200.000000']\n",
- "['-121.440000', '38.520000', '36.000000', '3446.000000', '950.000000', '2460.000000', '847.000000', '1.652100', '69700.000000']\n",
- "['-118.500000', '34.190000', '26.000000', '2156.000000', '509.000000', '1142.000000', '470.000000', '4.000000', '224700.000000']\n",
- "['-121.440000', '37.760000', '5.000000', '7264.000000', '1285.000000', '3670.000000', '1146.000000', '5.044300', '194800.000000']\n",
- "['-121.950000', '37.370000', '39.000000', '446.000000', '129.000000', '317.000000', '127.000000', '3.035700', '208300.000000']\n",
- "['-122.430000', '37.770000', '52.000000', '2685.000000', '629.000000', '1170.000000', '614.000000', '3.689400', '418800.000000']\n",
- "['-118.280000', '34.010000', '48.000000', '483.000000', '190.000000', '775.000000', '188.000000', '2.330900', '126600.000000']\n",
- "['-118.280000', '33.840000', '27.000000', '2326.000000', '533.000000', '1697.000000', '546.000000', '3.863300', '187900.000000']\n",
- "['-118.330000', '34.040000', '48.000000', '2437.000000', '443.000000', '1400.000000', '426.000000', '2.628000', '251100.000000']\n",
- "['-118.270000', '33.950000', '35.000000', '2073.000000', '494.000000', '1753.000000', '490.000000', '1.500000', '93600.000000']\n",
- "['-120.420000', '34.910000', '4.000000', '6986.000000', '1217.000000', '2801.000000', '1212.000000', '3.213500', '212700.000000']\n",
- "['-117.100000', '32.830000', '16.000000', '1049.000000', '154.000000', '467.000000', '160.000000', '6.204700', '248100.000000']\n",
- "['-121.890000', '36.890000', '18.000000', '2774.000000', '492.000000', '1283.000000', '353.000000', '5.368000', '352000.000000']\n",
- "['-118.220000', '33.960000', '42.000000', '1380.000000', '331.000000', '1290.000000', '288.000000', '2.800000', '161800.000000']\n",
- "['-117.270000', '33.020000', '13.000000', '5723.000000', '1242.000000', '2450.000000', '1140.000000', '4.717900', '376700.000000']\n",
- "['-121.290000', '38.680000', '20.000000', '1881.000000', '378.000000', '921.000000', '360.000000', '1.858900', '144000.000000']\n",
- "['-121.950000', '37.310000', '27.000000', '2462.000000', '570.000000', '1278.000000', '565.000000', '3.565200', '329500.000000']\n",
- "['-118.960000', '35.370000', '41.000000', '1463.000000', '339.000000', '1066.000000', '318.000000', '1.746700', '52400.000000']\n",
- "['-121.880000', '36.580000', '29.000000', '4910.000000', '871.000000', '3438.000000', '904.000000', '4.043200', '450000.000000']\n",
- "['-117.250000', '34.410000', '13.000000', '3682.000000', '668.000000', '1606.000000', '668.000000', '2.187500', '119700.000000']\n",
- "['-118.380000', '33.770000', '17.000000', '10950.000000', '2207.000000', '4713.000000', '2043.000000', '6.306400', '418300.000000']\n",
- "['-114.550000', '32.800000', '19.000000', '2570.000000', '820.000000', '1431.000000', '608.000000', '1.275000', '56100.000000']\n",
- "['-119.810000', '34.440000', '23.000000', '3172.000000', '588.000000', '1467.000000', '559.000000', '4.680600', '288900.000000']\n",
- "['-117.120000', '33.490000', '4.000000', '21988.000000', '4055.000000', '8824.000000', '3252.000000', '3.996300', '191100.000000']\n",
- "['-118.320000', '33.800000', '39.000000', '1415.000000', '298.000000', '729.000000', '278.000000', '3.164800', '244800.000000']\n",
- "['-122.180000', '37.730000', '43.000000', '1391.000000', '293.000000', '855.000000', '285.000000', '2.519200', '76400.000000']\n",
- "['-118.100000', '34.130000', '47.000000', '2234.000000', '276.000000', '749.000000', '260.000000', '15.000100', '500001.000000']\n",
- "['-122.270000', '40.390000', '26.000000', '1833.000000', '422.000000', '939.000000', '408.000000', '1.357100', '59000.000000']\n",
- "['-121.940000', '37.730000', '22.000000', '6719.000000', '1068.000000', '2843.000000', '994.000000', '6.126500', '260300.000000']\n",
- "['-121.290000', '38.630000', '24.000000', '2868.000000', '527.000000', '1284.000000', '487.000000', '3.318200', '213000.000000']\n",
- "['-117.590000', '33.440000', '3.000000', '5813.000000', '1264.000000', '2363.000000', '1041.000000', '4.389700', '341300.000000']\n",
- "['-118.440000', '34.190000', '29.000000', '1599.000000', '459.000000', '1143.000000', '438.000000', '2.458300', '199100.000000']\n",
- "['-118.150000', '34.030000', '42.000000', '1481.000000', '411.000000', '1206.000000', '394.000000', '2.680600', '189300.000000']\n",
- "['-116.480000', '33.800000', '15.000000', '3004.000000', '615.000000', '437.000000', '210.000000', '3.666700', '90000.000000']\n",
- "['-118.410000', '33.980000', '33.000000', '3331.000000', '777.000000', '1695.000000', '735.000000', '3.972700', '307200.000000']\n",
- "['-121.050000', '37.650000', '5.000000', '3096.000000', '545.000000', '1760.000000', '519.000000', '4.570100', '146400.000000']\n",
- "['-122.420000', '37.800000', '50.000000', '2494.000000', '731.000000', '958.000000', '712.000000', '3.235600', '500001.000000']\n",
- "['-117.310000', '34.110000', '38.000000', '1208.000000', '321.000000', '1225.000000', '317.000000', '1.466300', '64000.000000']\n",
- "['-116.990000', '32.760000', '21.000000', '3833.000000', '595.000000', '1645.000000', '589.000000', '4.625000', '273500.000000']\n",
- "['-122.110000', '37.890000', '32.000000', '2372.000000', '516.000000', '1067.000000', '492.000000', '4.323500', '279500.000000']\n",
- "['-122.270000', '37.800000', '10.000000', '105.000000', '42.000000', '125.000000', '39.000000', '0.972200', '137500.000000']\n",
- "['-121.870000', '37.380000', '16.000000', '3275.000000', '529.000000', '1863.000000', '527.000000', '5.542900', '269100.000000']\n",
- "['-118.200000', '33.770000', '22.000000', '1118.000000', '437.000000', '1190.000000', '399.000000', '1.979700', '143800.000000']\n",
- "['-117.120000', '32.570000', '35.000000', '1450.000000', '256.000000', '930.000000', '286.000000', '2.671500', '133300.000000']\n",
- "['-118.330000', '34.000000', '52.000000', '1114.000000', '169.000000', '486.000000', '176.000000', '4.291700', '247600.000000']\n",
- "['-117.170000', '32.820000', '21.000000', '2869.000000', '596.000000', '1471.000000', '577.000000', '3.037500', '197600.000000']\n",
- "['-120.360000', '40.450000', '19.000000', '689.000000', '143.000000', '355.000000', '127.000000', '1.733300', '70000.000000']\n",
- "['-116.520000', '33.810000', '12.000000', '12396.000000', '2552.000000', '2548.000000', '1265.000000', '3.439400', '162200.000000']\n",
- "['-119.820000', '36.770000', '41.000000', '1441.000000', '274.000000', '646.000000', '296.000000', '3.056800', '71300.000000']\n",
- "['-118.350000', '33.870000', '28.000000', '2319.000000', '579.000000', '1369.000000', '564.000000', '3.616900', '257000.000000']\n",
- "['-117.340000', '34.490000', '9.000000', '3293.000000', '585.000000', '1678.000000', '530.000000', '3.294100', '98300.000000']\n",
- "['-118.550000', '34.170000', '36.000000', '2127.000000', '297.000000', '761.000000', '274.000000', '7.839200', '500001.000000']\n",
- "['-122.110000', '38.090000', '11.000000', '673.000000', '145.000000', '318.000000', '137.000000', '2.392900', '122500.000000']\n",
- "['-122.260000', '37.560000', '23.000000', '7283.000000', '1342.000000', '3399.000000', '1298.000000', '5.668300', '391000.000000']\n",
- "['-121.350000', '38.660000', '24.000000', '3313.000000', '769.000000', '1631.000000', '681.000000', '2.555600', '105700.000000']\n",
- "['-118.210000', '34.040000', '37.000000', '845.000000', '249.000000', '881.000000', '252.000000', '2.245400', '165000.000000']\n",
- "['-118.340000', '34.070000', '52.000000', '3421.000000', '598.000000', '1203.000000', '564.000000', '4.161800', '500001.000000']\n",
- "['-117.880000', '34.130000', '25.000000', '2559.000000', '654.000000', '1674.000000', '623.000000', '2.854700', '155600.000000']\n",
- "['-117.870000', '33.840000', '23.000000', '1678.000000', '369.000000', '912.000000', '347.000000', '4.500000', '237300.000000']\n",
- "['-117.340000', '34.080000', '33.000000', '4924.000000', '1007.000000', '3502.000000', '953.000000', '3.233000', '99400.000000']\n",
- "['-118.330000', '34.020000', '11.000000', '1249.000000', '313.000000', '625.000000', '336.000000', '0.870200', '170500.000000']\n",
- "['-118.330000', '33.790000', '29.000000', '4389.000000', '873.000000', '2069.000000', '901.000000', '4.107100', '365600.000000']\n",
- "['-119.290000', '35.760000', '15.000000', '3938.000000', '789.000000', '3500.000000', '768.000000', '2.129500', '59800.000000']\n",
- "['-117.090000', '32.620000', '37.000000', '1538.000000', '298.000000', '867.000000', '285.000000', '3.072900', '128700.000000']\n",
- "['-121.810000', '37.250000', '5.000000', '1975.000000', '520.000000', '861.000000', '440.000000', '4.456500', '159000.000000']\n",
- "['-120.290000', '37.940000', '17.000000', '1459.000000', '297.000000', '753.000000', '271.000000', '3.050000', '144800.000000']\n",
- "['-120.700000', '35.140000', '17.000000', '5805.000000', '1097.000000', '1919.000000', '932.000000', '3.535200', '357800.000000']\n",
- "['-118.170000', '34.060000', '36.000000', '871.000000', '201.000000', '2862.000000', '181.000000', '2.184500', '123800.000000']\n",
- "['-117.990000', '33.930000', '27.000000', '3708.000000', '718.000000', '1921.000000', '721.000000', '4.375000', '210400.000000']\n",
- "['-118.250000', '34.220000', '30.000000', '2062.000000', '396.000000', '1089.000000', '375.000000', '5.536200', '301200.000000']\n",
- "['-118.110000', '33.830000', '36.000000', '1820.000000', '313.000000', '899.000000', '295.000000', '4.918000', '225200.000000']\n",
- "['-122.040000', '37.330000', '22.000000', '4011.000000', '963.000000', '2206.000000', '879.000000', '4.572100', '351200.000000']\n",
- "['-119.670000', '36.570000', '32.000000', '1604.000000', '292.000000', '868.000000', '276.000000', '2.190800', '110000.000000']\n",
- "['-119.560000', '36.710000', '37.000000', '1609.000000', '374.000000', '1173.000000', '344.000000', '2.181000', '59900.000000']\n",
- "['-122.350000', '37.960000', '36.000000', '2191.000000', '531.000000', '1563.000000', '524.000000', '2.516400', '114200.000000']\n",
- "['-117.080000', '32.580000', '15.000000', '1462.000000', '274.000000', '1002.000000', '271.000000', '3.969800', '142700.000000']\n",
- "['-118.610000', '34.200000', '29.000000', '1673.000000', '284.000000', '794.000000', '270.000000', '5.519100', '245800.000000']\n",
- "['-118.240000', '34.140000', '27.000000', '2909.000000', '1021.000000', '2614.000000', '935.000000', '2.144400', '229000.000000']\n",
- "['-118.400000', '34.030000', '43.000000', '1006.000000', '201.000000', '520.000000', '199.000000', '6.566900', '372800.000000']\n",
- "['-116.980000', '33.260000', '12.000000', '5898.000000', '1002.000000', '3129.000000', '945.000000', '4.764700', '254100.000000']\n",
- "['-117.930000', '33.680000', '33.000000', '2664.000000', '432.000000', '1197.000000', '429.000000', '5.069000', '264200.000000']\n",
- "['-122.250000', '37.470000', '38.000000', '645.000000', '124.000000', '265.000000', '103.000000', '5.468800', '305000.000000']\n",
- "['-118.190000', '33.840000', '44.000000', '2731.000000', '577.000000', '1396.000000', '555.000000', '4.177100', '219100.000000']\n",
- "['-118.450000', '34.320000', '23.000000', '3481.000000', '641.000000', '1952.000000', '682.000000', '4.260000', '189400.000000']\n",
- "['-122.140000', '39.970000', '27.000000', '1079.000000', '222.000000', '625.000000', '197.000000', '3.131900', '62700.000000']\n",
- "['-118.300000', '34.020000', '27.000000', '2190.000000', '626.000000', '1768.000000', '528.000000', '1.244600', '103800.000000']\n",
- "['-117.900000', '33.730000', '31.000000', '1171.000000', '306.000000', '1690.000000', '301.000000', '3.263900', '155200.000000']\n",
- "['-121.580000', '39.150000', '38.000000', '1756.000000', '396.000000', '837.000000', '401.000000', '1.912200', '55500.000000']\n",
- "['-121.950000', '38.350000', '16.000000', '2084.000000', '292.000000', '1099.000000', '292.000000', '5.826900', '150200.000000']\n",
- "['-117.690000', '34.070000', '35.000000', '3222.000000', '559.000000', '1970.000000', '550.000000', '3.708300', '131000.000000']\n",
- "['-117.080000', '32.740000', '35.000000', '1434.000000', '253.000000', '753.000000', '228.000000', '2.381200', '135100.000000']\n",
- "['-118.290000', '34.000000', '41.000000', '1807.000000', '493.000000', '1731.000000', '471.000000', '1.234700', '111700.000000']\n",
- "['-123.800000', '39.460000', '35.000000', '1718.000000', '345.000000', '698.000000', '299.000000', '2.924300', '131600.000000']\n",
- "['-119.120000', '35.330000', '4.000000', '8574.000000', '1489.000000', '4250.000000', '1444.000000', '5.103600', '103400.000000']\n",
- "['-121.800000', '37.340000', '20.000000', '2686.000000', '414.000000', '1507.000000', '405.000000', '5.806800', '263900.000000']\n",
- "['-117.090000', '32.750000', '19.000000', '2739.000000', '707.000000', '2004.000000', '622.000000', '1.631800', '117700.000000']\n",
- "['-122.130000', '37.430000', '40.000000', '3454.000000', '648.000000', '1498.000000', '647.000000', '5.211400', '438400.000000']\n",
- "['-117.980000', '33.760000', '24.000000', '1880.000000', '405.000000', '967.000000', '418.000000', '4.454500', '192500.000000']\n",
- "['-122.330000', '37.940000', '43.000000', '1876.000000', '389.000000', '807.000000', '377.000000', '3.157100', '141600.000000']\n",
- "['-121.440000', '38.540000', '39.000000', '2855.000000', '574.000000', '1217.000000', '562.000000', '3.240400', '93600.000000']\n",
- "['-118.020000', '33.700000', '23.000000', '5069.000000', '770.000000', '2473.000000', '769.000000', '6.304700', '285700.000000']\n",
- "['-117.880000', '33.840000', '26.000000', '1499.000000', '290.000000', '755.000000', '277.000000', '3.589300', '238500.000000']\n",
- "['-120.460000', '37.310000', '35.000000', '2042.000000', '378.000000', '953.000000', '356.000000', '2.734400', '87800.000000']\n",
- "['-118.310000', '33.720000', '26.000000', '2711.000000', '508.000000', '1372.000000', '459.000000', '4.145100', '326700.000000']\n",
- "['-117.820000', '33.670000', '17.000000', '2895.000000', '439.000000', '1588.000000', '450.000000', '6.276000', '290700.000000']\n",
- "['-117.990000', '33.870000', '17.000000', '2334.000000', '537.000000', '1662.000000', '535.000000', '3.014700', '217000.000000']\n",
- "['-119.800000', '36.860000', '7.000000', '6434.000000', '1201.000000', '2733.000000', '1045.000000', '3.765600', '145000.000000']\n",
- "['-121.470000', '38.580000', '43.000000', '3807.000000', '952.000000', '1484.000000', '850.000000', '2.326600', '137500.000000']\n",
- "['-117.600000', '33.870000', '15.000000', '7626.000000', '1570.000000', '3823.000000', '1415.000000', '3.441900', '138100.000000']\n",
- "['-117.100000', '32.750000', '11.000000', '2393.000000', '726.000000', '1905.000000', '711.000000', '1.344800', '91300.000000']\n",
- "['-117.880000', '33.760000', '17.000000', '1768.000000', '474.000000', '1079.000000', '436.000000', '1.782300', '205300.000000']\n",
- "['-118.350000', '33.990000', '48.000000', '2741.000000', '439.000000', '1115.000000', '459.000000', '5.051400', '269100.000000']\n",
- "['-121.810000', '37.310000', '14.000000', '2731.000000', '578.000000', '1109.000000', '551.000000', '3.138200', '139700.000000']\n",
- "['-120.430000', '34.900000', '30.000000', '2388.000000', '393.000000', '1117.000000', '375.000000', '4.105800', '164000.000000']\n",
- "['-118.190000', '34.050000', '29.000000', '855.000000', '199.000000', '785.000000', '169.000000', '2.696400', '122200.000000']\n",
- "['-117.890000', '33.910000', '33.000000', '1264.000000', '224.000000', '527.000000', '227.000000', '3.732100', '216500.000000']\n",
- "['-118.270000', '34.020000', '21.000000', '1314.000000', '375.000000', '1505.000000', '366.000000', '2.319000', '97200.000000']\n",
- "['-116.730000', '34.520000', '16.000000', '1247.000000', '315.000000', '433.000000', '159.000000', '1.056800', '75000.000000']\n",
- "['-121.500000', '38.520000', '37.000000', '2008.000000', '466.000000', '1261.000000', '427.000000', '2.257400', '59100.000000']\n",
- "['-120.610000', '35.120000', '16.000000', '1671.000000', '354.000000', '935.000000', '340.000000', '2.579200', '163800.000000']\n",
- "['-120.630000', '36.980000', '20.000000', '2380.000000', '489.000000', '1581.000000', '505.000000', '2.059500', '61300.000000']\n",
- "['-117.060000', '32.590000', '13.000000', '3920.000000', '775.000000', '2814.000000', '760.000000', '4.061600', '148800.000000']\n",
- "['-119.020000', '35.420000', '40.000000', '1912.000000', '439.000000', '1015.000000', '413.000000', '1.459800', '52600.000000']\n",
- "['-118.140000', '34.030000', '38.000000', '1447.000000', '293.000000', '1042.000000', '284.000000', '4.137500', '211500.000000']\n",
- "['-118.310000', '33.730000', '52.000000', '2025.000000', '361.000000', '957.000000', '363.000000', '4.205900', '350000.000000']\n",
- "['-121.940000', '38.370000', '14.000000', '1156.000000', '216.000000', '574.000000', '227.000000', '3.239600', '143800.000000']\n",
- "['-122.510000', '37.920000', '32.000000', '2622.000000', '541.000000', '1022.000000', '464.000000', '3.764700', '375000.000000']\n",
- "['-119.450000', '36.160000', '27.000000', '2119.000000', '373.000000', '1268.000000', '345.000000', '2.815200', '106900.000000']\n",
- "['-118.190000', '33.970000', '27.000000', '2911.000000', '972.000000', '3559.000000', '945.000000', '1.948500', '146300.000000']\n",
- "['-116.710000', '33.750000', '25.000000', '10665.000000', '2161.000000', '1874.000000', '852.000000', '3.062500', '150500.000000']\n",
- "['-118.280000', '33.990000', '35.000000', '1138.000000', '304.000000', '1128.000000', '311.000000', '1.881800', '100000.000000']\n",
- "['-118.120000', '33.850000', '37.000000', '2584.000000', '453.000000', '1333.000000', '481.000000', '4.366100', '219900.000000']\n",
- "['-122.530000', '37.630000', '27.000000', '2589.000000', '658.000000', '1386.000000', '608.000000', '2.908700', '228200.000000']\n",
- "['-121.060000', '37.730000', '5.000000', '2256.000000', '420.000000', '1246.000000', '397.000000', '4.923600', '155900.000000']\n",
- "['-120.880000', '38.450000', '25.000000', '1374.000000', '297.000000', '657.000000', '288.000000', '2.547600', '97900.000000']\n",
- "['-117.110000', '32.580000', '12.000000', '1086.000000', '294.000000', '870.000000', '290.000000', '2.421300', '132500.000000']\n",
- "['-117.900000', '33.650000', '27.000000', '3310.000000', '598.000000', '1402.000000', '563.000000', '6.632000', '441100.000000']\n",
- "['-121.870000', '37.660000', '52.000000', '775.000000', '134.000000', '315.000000', '123.000000', '5.067700', '233300.000000']\n",
- "['-121.300000', '37.960000', '52.000000', '1354.000000', '314.000000', '679.000000', '311.000000', '1.778800', '97400.000000']\n",
- "['-117.800000', '33.850000', '16.000000', '4151.000000', '637.000000', '1558.000000', '604.000000', '5.806000', '304900.000000']\n",
- "['-118.550000', '34.200000', '31.000000', '1963.000000', '420.000000', '1494.000000', '415.000000', '3.531300', '211800.000000']\n",
- "['-118.440000', '34.240000', '36.000000', '1660.000000', '301.000000', '1225.000000', '307.000000', '4.095000', '184000.000000']\n",
- "['-117.910000', '33.880000', '34.000000', '1851.000000', '291.000000', '784.000000', '290.000000', '5.233600', '235600.000000']\n",
- "['-118.510000', '34.230000', '27.000000', '4580.000000', '918.000000', '2252.000000', '850.000000', '4.792600', '454400.000000']\n",
- "['-119.150000', '34.170000', '23.000000', '2239.000000', '537.000000', '784.000000', '497.000000', '1.603800', '194300.000000']\n",
- "['-122.080000', '37.900000', '32.000000', '1075.000000', '170.000000', '486.000000', '173.000000', '5.049900', '306800.000000']\n",
- "['-122.410000', '37.710000', '28.000000', '5015.000000', '1240.000000', '3900.000000', '1029.000000', '1.226900', '181900.000000']\n",
- "['-122.220000', '37.470000', '35.000000', '367.000000', '113.000000', '398.000000', '109.000000', '2.500000', '166700.000000']\n",
- "['-117.870000', '33.920000', '17.000000', '4575.000000', '764.000000', '2054.000000', '737.000000', '6.057100', '272400.000000']\n",
- "['-122.000000', '36.970000', '30.000000', '1029.000000', '242.000000', '753.000000', '249.000000', '3.120500', '240500.000000']\n",
- "['-117.070000', '32.600000', '13.000000', '1607.000000', '435.000000', '983.000000', '400.000000', '2.290300', '106300.000000']\n",
- "['-118.160000', '34.060000', '27.000000', '1675.000000', '274.000000', '785.000000', '275.000000', '5.828000', '301100.000000']\n",
- "['-117.050000', '33.030000', '16.000000', '87.000000', '20.000000', '32.000000', '21.000000', '4.357100', '144600.000000']\n",
- "['-117.240000', '33.200000', '26.000000', '1701.000000', '404.000000', '989.000000', '367.000000', '2.511900', '171700.000000']\n",
- "['-119.730000', '34.450000', '44.000000', '2261.000000', '328.000000', '763.000000', '294.000000', '6.744900', '415600.000000']\n",
- "['-117.320000', '33.170000', '18.000000', '2143.000000', '299.000000', '828.000000', '283.000000', '4.238300', '239000.000000']\n",
- "['-121.830000', '37.270000', '14.000000', '2855.000000', '380.000000', '1420.000000', '383.000000', '6.671200', '311500.000000']\n",
- "['-122.320000', '40.420000', '17.000000', '3019.000000', '578.000000', '1538.000000', '545.000000', '2.793000', '76500.000000']\n",
- "['-121.770000', '36.940000', '18.000000', '1063.000000', '341.000000', '1033.000000', '313.000000', '2.019200', '171300.000000']\n",
- "['-118.270000', '33.790000', '39.000000', '1513.000000', '365.000000', '1227.000000', '354.000000', '3.392900', '184600.000000']\n",
- "['-117.930000', '33.830000', '30.000000', '1561.000000', '381.000000', '1104.000000', '391.000000', '3.375000', '201900.000000']\n",
- "['-117.110000', '32.820000', '17.000000', '1787.000000', '330.000000', '1341.000000', '314.000000', '2.875000', '112500.000000']\n",
- "['-119.230000', '35.740000', '16.000000', '2275.000000', '659.000000', '1914.000000', '614.000000', '2.033000', '68400.000000']\n",
- "['-122.470000', '37.710000', '42.000000', '1961.000000', '427.000000', '1211.000000', '409.000000', '3.515600', '239400.000000']\n",
- "['-121.930000', '36.630000', '41.000000', '1049.000000', '198.000000', '428.000000', '183.000000', '4.357100', '287500.000000']\n",
- "['-117.280000', '33.020000', '21.000000', '2736.000000', '585.000000', '1251.000000', '576.000000', '4.235600', '347700.000000']\n",
- "['-118.990000', '35.240000', '40.000000', '282.000000', '59.000000', '213.000000', '71.000000', '2.350000', '91700.000000']\n",
- "['-119.140000', '36.230000', '22.000000', '2935.000000', '523.000000', '1927.000000', '530.000000', '2.587500', '70400.000000']\n",
- "['-122.420000', '40.590000', '24.000000', '5045.000000', '972.000000', '2220.000000', '979.000000', '2.679200', '138900.000000']\n",
- "['-117.090000', '32.660000', '37.000000', '1232.000000', '330.000000', '1086.000000', '330.000000', '1.638900', '114300.000000']\n",
- "['-118.140000', '34.700000', '36.000000', '1205.000000', '317.000000', '678.000000', '290.000000', '2.018200', '98400.000000']\n",
- "['-122.040000', '36.980000', '35.000000', '2155.000000', '355.000000', '866.000000', '335.000000', '5.618800', '404700.000000']\n",
- "['-117.020000', '32.800000', '31.000000', '2692.000000', '445.000000', '1129.000000', '450.000000', '4.458300', '170000.000000']\n",
- "['-117.290000', '34.490000', '3.000000', '7689.000000', '1545.000000', '3804.000000', '1399.000000', '3.387100', '111800.000000']\n",
- "['-122.090000', '37.210000', '15.000000', '1969.000000', '332.000000', '822.000000', '324.000000', '7.877400', '394900.000000']\n",
- "['-121.010000', '37.650000', '47.000000', '1713.000000', '334.000000', '570.000000', '297.000000', '2.196900', '149400.000000']\n",
- "['-116.770000', '33.080000', '13.000000', '1406.000000', '260.000000', '737.000000', '279.000000', '5.584200', '239100.000000']\n",
- "['-121.960000', '37.340000', '36.000000', '844.000000', '153.000000', '373.000000', '160.000000', '5.791000', '254100.000000']\n",
- "['-119.700000', '34.420000', '41.000000', '725.000000', '239.000000', '582.000000', '214.000000', '3.166700', '362500.000000']\n",
- "['-119.460000', '35.170000', '40.000000', '4164.000000', '812.000000', '1998.000000', '773.000000', '2.832300', '50800.000000']\n",
- "['-122.010000', '37.300000', '25.000000', '4044.000000', '551.000000', '1699.000000', '533.000000', '8.083700', '380600.000000']\n",
- "['-118.060000', '33.830000', '22.000000', '5290.000000', '1054.000000', '2812.000000', '1021.000000', '4.530000', '226400.000000']\n",
- "['-118.400000', '34.190000', '30.000000', '521.000000', '126.000000', '306.000000', '129.000000', '4.112500', '216700.000000']\n",
- "['-119.630000', '34.440000', '37.000000', '3188.000000', '442.000000', '984.000000', '376.000000', '9.452200', '500001.000000']\n",
- "['-117.890000', '33.770000', '29.000000', '2577.000000', '445.000000', '1849.000000', '470.000000', '4.473200', '194800.000000']\n",
- "['-119.540000', '36.520000', '16.000000', '2703.000000', '415.000000', '1106.000000', '372.000000', '4.204500', '120900.000000']\n",
- "['-118.430000', '34.170000', '33.000000', '1679.000000', '404.000000', '933.000000', '412.000000', '2.697900', '266000.000000']\n",
- "['-117.100000', '32.580000', '33.000000', '393.000000', '76.000000', '330.000000', '80.000000', '4.102900', '122700.000000']\n",
- "['-122.280000', '37.790000', '30.000000', '4145.000000', '869.000000', '3668.000000', '855.000000', '2.544400', '275000.000000']\n",
- "['-118.320000', '34.110000', '48.000000', '4472.000000', '1579.000000', '2796.000000', '1397.000000', '2.397400', '410700.000000']\n",
- "['-118.420000', '34.020000', '28.000000', '3167.000000', '737.000000', '1248.000000', '665.000000', '3.194100', '394700.000000']\n",
- "['-119.560000', '36.510000', '9.000000', '3860.000000', '809.000000', '2157.000000', '770.000000', '2.503300', '70100.000000']\n",
- "['-122.420000', '37.780000', '19.000000', '4065.000000', '1645.000000', '2079.000000', '1470.000000', '3.146200', '187500.000000']\n",
- "['-120.910000', '37.730000', '31.000000', '840.000000', '154.000000', '429.000000', '150.000000', '2.406300', '170200.000000']\n",
- "['-122.080000', '37.590000', '16.000000', '1816.000000', '365.000000', '1367.000000', '355.000000', '4.235000', '156300.000000']\n",
- "['-121.770000', '37.310000', '16.000000', '1649.000000', '228.000000', '769.000000', '230.000000', '6.645500', '302600.000000']\n",
- "['-117.050000', '33.030000', '14.000000', '5180.000000', '1051.000000', '1639.000000', '991.000000', '4.500000', '222200.000000']\n",
- "['-121.950000', '37.260000', '34.000000', '1482.000000', '255.000000', '584.000000', '246.000000', '5.512100', '264700.000000']\n",
- "['-119.030000', '35.420000', '45.000000', '1628.000000', '352.000000', '754.000000', '334.000000', '2.570300', '62400.000000']\n",
- "['-121.530000', '38.600000', '25.000000', '5154.000000', '1105.000000', '3196.000000', '1073.000000', '2.756600', '80200.000000']\n",
- "['-118.160000', '33.960000', '24.000000', '1635.000000', '507.000000', '2480.000000', '481.000000', '2.443200', '187500.000000']\n",
- "['-121.890000', '36.600000', '40.000000', '626.000000', '164.000000', '337.000000', '150.000000', '2.791700', '225000.000000']\n",
- "['-117.070000', '33.670000', '11.000000', '939.000000', '187.000000', '557.000000', '190.000000', '2.375000', '145800.000000']\n",
- "['-122.390000', '37.590000', '32.000000', '4497.000000', '730.000000', '1846.000000', '715.000000', '6.132300', '500001.000000']\n",
- "['-118.440000', '34.050000', '32.000000', '1880.000000', '435.000000', '798.000000', '417.000000', '4.710900', '500000.000000']\n",
- "['-121.350000', '38.040000', '5.000000', '4303.000000', '613.000000', '2206.000000', '621.000000', '5.584200', '159100.000000']\n",
- "['-122.420000', '37.760000', '52.000000', '4407.000000', '1192.000000', '2280.000000', '1076.000000', '3.393700', '270000.000000']\n",
- "['-118.020000', '33.940000', '33.000000', '2382.000000', '404.000000', '1339.000000', '389.000000', '5.301600', '192200.000000']\n",
- "['-121.320000', '38.030000', '16.000000', '4045.000000', '623.000000', '1862.000000', '625.000000', '4.875000', '143100.000000']\n",
- "['-118.380000', '34.050000', '49.000000', '702.000000', '143.000000', '458.000000', '187.000000', '4.895800', '333600.000000']\n",
- "['-119.290000', '36.540000', '18.000000', '2581.000000', '628.000000', '2732.000000', '592.000000', '1.842900', '58300.000000']\n",
- "['-117.760000', '33.540000', '28.000000', '2250.000000', '329.000000', '826.000000', '323.000000', '6.925700', '466400.000000']\n",
- "['-122.290000', '38.290000', '52.000000', '3217.000000', '742.000000', '1670.000000', '671.000000', '2.439800', '163100.000000']\n",
- "['-117.800000', '33.810000', '14.000000', '1206.000000', '142.000000', '572.000000', '149.000000', '8.847000', '388700.000000']\n",
- "['-121.950000', '37.350000', '52.000000', '2382.000000', '523.000000', '1096.000000', '492.000000', '4.265600', '236100.000000']\n",
- "['-117.870000', '33.990000', '21.000000', '2837.000000', '515.000000', '2031.000000', '555.000000', '4.927100', '209700.000000']\n",
- "['-121.460000', '38.560000', '52.000000', '907.000000', '180.000000', '479.000000', '177.000000', '2.212500', '104000.000000']\n",
- "['-117.990000', '34.080000', '11.000000', '2399.000000', '527.000000', '2307.000000', '531.000000', '3.562500', '141000.000000']\n",
- "['-121.530000', '38.500000', '17.000000', '3087.000000', '477.000000', '1365.000000', '495.000000', '6.466700', '216800.000000']\n",
- "['-121.140000', '37.520000', '37.000000', '1358.000000', '231.000000', '586.000000', '214.000000', '3.164500', '170800.000000']\n",
- "['-118.290000', '33.890000', '35.000000', '2810.000000', '614.000000', '1578.000000', '601.000000', '3.590000', '200600.000000']\n",
- "['-117.100000', '33.090000', '5.000000', '12045.000000', '2162.000000', '5640.000000', '1997.000000', '4.437500', '353000.000000']\n",
- "['-123.200000', '39.230000', '26.000000', '786.000000', '168.000000', '494.000000', '161.000000', '2.358300', '105400.000000']\n",
- "['-117.120000', '32.760000', '26.000000', '1221.000000', '331.000000', '620.000000', '296.000000', '2.482100', '123600.000000']\n",
- "['-120.440000', '34.960000', '30.000000', '1685.000000', '315.000000', '1290.000000', '368.000000', '3.472200', '112500.000000']\n",
- "['-115.560000', '32.780000', '34.000000', '2856.000000', '555.000000', '1627.000000', '522.000000', '3.208300', '76200.000000']\n",
- "['-121.470000', '38.560000', '51.000000', '2083.000000', '559.000000', '874.000000', '524.000000', '2.022100', '95800.000000']\n",
- "['-121.680000', '37.930000', '44.000000', '1014.000000', '225.000000', '704.000000', '238.000000', '1.655400', '119400.000000']\n",
- "['-118.100000', '34.140000', '26.000000', '6262.000000', '1645.000000', '3001.000000', '1505.000000', '3.657200', '213200.000000']\n",
- "['-118.430000', '34.220000', '34.000000', '1588.000000', '360.000000', '1080.000000', '340.000000', '3.660000', '184600.000000']\n",
- "['-120.970000', '37.660000', '19.000000', '1974.000000', '393.000000', '799.000000', '377.000000', '3.128600', '137500.000000']\n",
- "['-119.340000', '34.390000', '27.000000', '669.000000', '131.000000', '314.000000', '106.000000', '2.465900', '231300.000000']\n",
- "['-118.500000', '34.200000', '34.000000', '1617.000000', '344.000000', '938.000000', '305.000000', '3.915000', '217700.000000']\n",
- "['-120.980000', '38.670000', '13.000000', '3432.000000', '516.000000', '1286.000000', '470.000000', '5.584000', '186600.000000']\n",
- "['-118.350000', '34.000000', '28.000000', '3085.000000', '621.000000', '1162.000000', '558.000000', '3.250000', '301000.000000']\n",
- "['-122.490000', '38.220000', '33.000000', '1486.000000', '290.000000', '781.000000', '274.000000', '3.564700', '251800.000000']\n",
- "['-118.320000', '33.970000', '46.000000', '1504.000000', '270.000000', '814.000000', '306.000000', '4.391900', '157100.000000']\n",
- "['-117.130000', '32.690000', '36.000000', '1469.000000', '400.000000', '1271.000000', '340.000000', '1.043000', '90100.000000']\n",
- "['-117.030000', '33.000000', '6.000000', '6139.000000', '793.000000', '2693.000000', '770.000000', '7.756900', '387400.000000']\n",
- "['-122.260000', '38.020000', '5.000000', '3846.000000', '786.000000', '2053.000000', '716.000000', '5.047300', '184800.000000']\n",
- "['-117.270000', '32.850000', '26.000000', '1373.000000', '336.000000', '608.000000', '268.000000', '4.425000', '475000.000000']\n",
- "['-117.940000', '33.860000', '36.000000', '2824.000000', '493.000000', '1394.000000', '507.000000', '4.647700', '194700.000000']\n",
- "['-119.310000', '34.700000', '19.000000', '961.000000', '218.000000', '479.000000', '138.000000', '3.343800', '156300.000000']\n",
- "['-122.100000', '37.610000', '35.000000', '2361.000000', '458.000000', '1727.000000', '467.000000', '4.528100', '173600.000000']\n",
- "['-118.000000', '33.900000', '35.000000', '1942.000000', '332.000000', '1127.000000', '325.000000', '4.514400', '206300.000000']\n",
- "['-117.370000', '33.980000', '43.000000', '2862.000000', '772.000000', '1878.000000', '675.000000', '2.115100', '96700.000000']\n",
- "['-121.520000', '38.650000', '17.000000', '1269.000000', '233.000000', '494.000000', '231.000000', '3.961500', '331300.000000']\n",
- "['-118.460000', '34.070000', '42.000000', '2564.000000', '460.000000', '913.000000', '414.000000', '9.222500', '500001.000000']\n",
- "['-118.040000', '34.070000', '39.000000', '1382.000000', '315.000000', '1090.000000', '308.000000', '3.812500', '174000.000000']\n",
- "['-118.080000', '33.880000', '27.000000', '923.000000', '186.000000', '1014.000000', '204.000000', '3.825000', '159500.000000']\n",
- "['-122.430000', '37.800000', '52.000000', '2788.000000', '813.000000', '1302.000000', '764.000000', '4.199000', '400000.000000']\n",
- "['-119.290000', '34.370000', '41.000000', '1408.000000', '311.000000', '793.000000', '264.000000', '2.544100', '161200.000000']\n",
- "['-122.040000', '37.000000', '52.000000', '3365.000000', '644.000000', '796.000000', '333.000000', '2.971200', '116600.000000']\n",
- "['-115.570000', '32.790000', '50.000000', '1291.000000', '277.000000', '864.000000', '274.000000', '1.666700', '68100.000000']\n",
- "['-117.560000', '34.420000', '6.000000', '4264.000000', '749.000000', '2005.000000', '666.000000', '3.469500', '138800.000000']\n",
- "['-120.630000', '38.680000', '14.000000', '1821.000000', '316.000000', '769.000000', '266.000000', '3.078900', '131700.000000']\n",
- "['-118.320000', '34.090000', '44.000000', '2666.000000', '830.000000', '2297.000000', '726.000000', '1.676000', '208800.000000']\n",
- "['-118.350000', '34.080000', '52.000000', '1710.000000', '350.000000', '727.000000', '355.000000', '4.583300', '333900.000000']\n",
- "['-122.270000', '37.510000', '36.000000', '1406.000000', '224.000000', '598.000000', '237.000000', '5.896400', '414800.000000']\n",
- "['-119.060000', '35.330000', '14.000000', '5264.000000', '1064.000000', '3278.000000', '1049.000000', '3.811700', '82800.000000']\n",
- "['-117.150000', '32.900000', '12.000000', '1681.000000', '381.000000', '1050.000000', '362.000000', '4.200800', '176100.000000']\n",
- "['-122.470000', '37.760000', '39.000000', '3200.000000', '689.000000', '1391.000000', '618.000000', '3.634600', '338000.000000']\n",
- "['-122.030000', '37.310000', '19.000000', '2885.000000', '859.000000', '1520.000000', '784.000000', '3.375000', '275700.000000']\n",
- "['-119.310000', '36.320000', '23.000000', '2945.000000', '592.000000', '1419.000000', '532.000000', '2.573300', '88800.000000']\n",
- "['-120.580000', '38.770000', '15.000000', '2155.000000', '394.000000', '857.000000', '356.000000', '4.030000', '141200.000000']\n",
- "['-117.210000', '34.490000', '14.000000', '2125.000000', '348.000000', '1067.000000', '360.000000', '3.633300', '116200.000000']\n",
- "['-122.080000', '37.650000', '35.000000', '1813.000000', '393.000000', '1093.000000', '374.000000', '3.681800', '165400.000000']\n",
- "['-122.250000', '40.150000', '15.000000', '1677.000000', '346.000000', '858.000000', '327.000000', '2.437500', '59200.000000']\n",
- "['-118.210000', '34.140000', '44.000000', '1681.000000', '407.000000', '1105.000000', '387.000000', '3.222200', '186500.000000']\n",
- "['-122.140000', '37.730000', '51.000000', '2619.000000', '403.000000', '922.000000', '393.000000', '4.604200', '251900.000000']\n",
- "['-121.590000', '39.770000', '24.000000', '1535.000000', '276.000000', '664.000000', '273.000000', '2.306800', '97300.000000']\n",
- "['-122.190000', '37.470000', '44.000000', '1371.000000', '263.000000', '589.000000', '301.000000', '4.806800', '312300.000000']\n",
- "['-120.440000', '34.950000', '38.000000', '3004.000000', '794.000000', '2601.000000', '747.000000', '2.274300', '106400.000000']\n",
- "['-121.780000', '37.310000', '7.000000', '1973.000000', '328.000000', '1047.000000', '303.000000', '6.234000', '292200.000000']\n",
- "['-118.240000', '34.200000', '41.000000', '2067.000000', '452.000000', '1282.000000', '455.000000', '5.575600', '309900.000000']\n",
- "['-121.570000', '39.160000', '33.000000', '2033.000000', '375.000000', '914.000000', '330.000000', '2.696400', '68500.000000']\n",
- "['-119.840000', '36.830000', '17.000000', '2273.000000', '298.000000', '700.000000', '263.000000', '6.864500', '195900.000000']\n",
- "['-119.290000', '34.440000', '34.000000', '4314.000000', '878.000000', '2361.000000', '831.000000', '3.227900', '243100.000000']\n",
- "['-118.140000', '34.180000', '52.000000', '1700.000000', '317.000000', '996.000000', '329.000000', '3.968800', '175000.000000']\n",
- "['-119.570000', '36.100000', '37.000000', '1676.000000', '316.000000', '707.000000', '274.000000', '2.059500', '60700.000000']\n",
- "['-121.800000', '37.320000', '23.000000', '1829.000000', '346.000000', '1277.000000', '324.000000', '4.809200', '217400.000000']\n",
- "['-118.130000', '34.160000', '52.000000', '1596.000000', '314.000000', '1024.000000', '292.000000', '3.671900', '227900.000000']\n",
- "['-121.900000', '37.460000', '29.000000', '2385.000000', '513.000000', '1788.000000', '510.000000', '3.842100', '220700.000000']\n",
- "['-121.920000', '37.330000', '52.000000', '2962.000000', '557.000000', '1215.000000', '506.000000', '4.776800', '301100.000000']\n",
- "['-123.100000', '39.360000', '19.000000', '1056.000000', '248.000000', '611.000000', '226.000000', '1.746000', '105000.000000']\n",
- "['-122.860000', '40.560000', '12.000000', '1350.000000', '300.000000', '423.000000', '172.000000', '1.739300', '81300.000000']\n",
- "['-122.440000', '37.750000', '52.000000', '3114.000000', '637.000000', '1144.000000', '591.000000', '4.000000', '375000.000000']\n",
- "['-120.620000', '35.120000', '22.000000', '1240.000000', '294.000000', '768.000000', '288.000000', '2.655000', '160000.000000']\n",
- "['-118.360000', '33.880000', '22.000000', '1388.000000', '336.000000', '930.000000', '287.000000', '2.798100', '275000.000000']\n",
- "['-118.360000', '33.820000', '26.000000', '5166.000000', '1313.000000', '2738.000000', '1239.000000', '3.356500', '360800.000000']\n",
- "['-118.270000', '33.770000', '39.000000', '1731.000000', '485.000000', '2115.000000', '478.000000', '1.536900', '141300.000000']\n",
- "['-122.280000', '37.900000', '52.000000', '2003.000000', '250.000000', '658.000000', '244.000000', '10.082500', '397000.000000']\n",
- "['-117.980000', '33.660000', '26.000000', '3527.000000', '547.000000', '1615.000000', '542.000000', '6.162400', '279400.000000']\n",
- "['-118.210000', '33.930000', '39.000000', '354.000000', '73.000000', '184.000000', '58.000000', '2.767900', '108900.000000']\n",
- "['-120.430000', '37.350000', '15.000000', '1613.000000', '203.000000', '673.000000', '213.000000', '5.937800', '212200.000000']\n",
- "['-120.960000', '37.480000', '32.000000', '1256.000000', '212.000000', '682.000000', '236.000000', '2.984400', '135900.000000']\n",
- "['-117.330000', '34.120000', '33.000000', '933.000000', '219.000000', '838.000000', '211.000000', '1.341700', '69000.000000']\n",
- "['-119.810000', '36.780000', '36.000000', '1650.000000', '313.000000', '660.000000', '298.000000', '3.000000', '79700.000000']\n",
- "['-118.380000', '34.050000', '35.000000', '3517.000000', '879.000000', '1632.000000', '784.000000', '3.095600', '500001.000000']\n",
- "['-117.960000', '33.800000', '33.000000', '1984.000000', '420.000000', '1119.000000', '387.000000', '3.482100', '231300.000000']\n",
- "['-118.430000', '34.240000', '37.000000', '1279.000000', '241.000000', '987.000000', '233.000000', '4.005700', '172700.000000']\n",
- "['-117.870000', '33.790000', '25.000000', '2546.000000', '545.000000', '1543.000000', '521.000000', '4.192000', '219900.000000']\n",
- "['-124.180000', '40.790000', '40.000000', '1398.000000', '311.000000', '788.000000', '279.000000', '1.466800', '64600.000000']\n",
- "['-117.240000', '32.830000', '18.000000', '3109.000000', '501.000000', '949.000000', '368.000000', '7.435100', '445700.000000']\n",
- "['-121.570000', '37.000000', '18.000000', '7241.000000', '1225.000000', '4168.000000', '1138.000000', '4.571400', '260300.000000']\n",
- "['-117.370000', '33.190000', '38.000000', '861.000000', '213.000000', '486.000000', '204.000000', '4.187500', '185000.000000']\n",
- "['-121.890000', '37.460000', '5.000000', '1519.000000', '186.000000', '705.000000', '186.000000', '10.379800', '500001.000000']\n",
- "['-122.680000', '38.010000', '41.000000', '1865.000000', '392.000000', '825.000000', '369.000000', '4.201100', '255400.000000']\n",
- "['-118.310000', '34.020000', '46.000000', '2217.000000', '489.000000', '1227.000000', '448.000000', '1.685100', '108800.000000']\n",
- "['-118.290000', '33.890000', '33.000000', '2138.000000', '567.000000', '1072.000000', '528.000000', '2.742800', '208900.000000']\n",
- "['-117.300000', '34.120000', '43.000000', '1018.000000', '261.000000', '736.000000', '215.000000', '2.600000', '66900.000000']\n",
- "['-117.300000', '33.850000', '15.000000', '3991.000000', '751.000000', '2317.000000', '657.000000', '2.954200', '127900.000000']\n",
- "['-117.350000', '33.160000', '22.000000', '1331.000000', '305.000000', '580.000000', '193.000000', '3.975000', '500001.000000']\n",
- "['-122.430000', '37.760000', '52.000000', '2242.000000', '459.000000', '751.000000', '464.000000', '4.750000', '500001.000000']\n",
- "['-119.010000', '35.390000', '29.000000', '1820.000000', '459.000000', '1134.000000', '419.000000', '1.828900', '59400.000000']\n",
- "['-121.570000', '37.010000', '44.000000', '1448.000000', '393.000000', '1066.000000', '357.000000', '2.062500', '170300.000000']\n",
- "['-122.420000', '37.650000', '39.000000', '4402.000000', '894.000000', '2941.000000', '887.000000', '3.856500', '239800.000000']\n",
- "['-122.430000', '37.780000', '49.000000', '2246.000000', '587.000000', '1277.000000', '546.000000', '2.979200', '350000.000000']\n",
- "['-118.130000', '33.900000', '36.000000', '1477.000000', '305.000000', '788.000000', '291.000000', '3.625000', '195800.000000']\n",
- "['-118.060000', '33.820000', '25.000000', '2637.000000', '462.000000', '965.000000', '415.000000', '4.583300', '190900.000000']\n",
- "['-119.220000', '34.340000', '29.000000', '3128.000000', '672.000000', '1815.000000', '648.000000', '2.982100', '175700.000000']\n",
- "['-121.510000', '38.550000', '46.000000', '1485.000000', '278.000000', '531.000000', '291.000000', '2.788500', '137200.000000']\n",
- "['-121.420000', '38.500000', '24.000000', '7740.000000', '1539.000000', '4333.000000', '1397.000000', '3.025000', '87900.000000']\n",
- "['-122.260000', '37.850000', '52.000000', '2202.000000', '434.000000', '910.000000', '402.000000', '3.203100', '281500.000000']\n",
- "['-118.400000', '33.870000', '26.000000', '6712.000000', '1441.000000', '2803.000000', '1394.000000', '5.227600', '434500.000000']\n",
- "['-118.380000', '33.890000', '35.000000', '1778.000000', '330.000000', '732.000000', '312.000000', '6.574500', '379300.000000']\n",
- "['-119.950000', '36.960000', '18.000000', '1996.000000', '379.000000', '1327.000000', '356.000000', '2.608700', '96000.000000']\n",
- "['-118.120000', '34.020000', '32.000000', '1789.000000', '528.000000', '1429.000000', '517.000000', '1.890600', '224500.000000']\n",
- "['-117.900000', '36.950000', '19.000000', '99.000000', '26.000000', '51.000000', '22.000000', '1.729200', '137500.000000']\n",
- "['-116.280000', '32.840000', '18.000000', '382.000000', '128.000000', '194.000000', '69.000000', '2.517900', '58800.000000']\n",
- "['-122.450000', '37.770000', '52.000000', '1722.000000', '465.000000', '885.000000', '437.000000', '3.090600', '500001.000000']\n",
- "['-121.620000', '39.760000', '14.000000', '2063.000000', '559.000000', '934.000000', '529.000000', '1.778800', '85800.000000']\n",
- "['-122.000000', '38.350000', '24.000000', '745.000000', '116.000000', '300.000000', '115.000000', '3.617600', '158500.000000']\n",
- "['-121.710000', '39.250000', '37.000000', '1871.000000', '321.000000', '806.000000', '294.000000', '4.000000', '101400.000000']\n",
- "['-119.190000', '34.220000', '26.000000', '3175.000000', '736.000000', '2460.000000', '775.000000', '3.125000', '219900.000000']\n",
- "['-118.060000', '33.910000', '21.000000', '2863.000000', '701.000000', '1489.000000', '621.000000', '3.203100', '180700.000000']\n",
- "['-118.000000', '33.930000', '35.000000', '1288.000000', '240.000000', '758.000000', '250.000000', '4.920500', '173900.000000']\n",
- "['-118.260000', '34.110000', '47.000000', '2183.000000', '510.000000', '1445.000000', '503.000000', '3.666700', '210900.000000']\n",
- "['-118.510000', '34.260000', '29.000000', '2472.000000', '354.000000', '1109.000000', '397.000000', '5.543300', '332500.000000']\n",
- "['-117.960000', '33.980000', '25.000000', '1259.000000', '184.000000', '599.000000', '170.000000', '5.740700', '302200.000000']\n",
- "['-123.390000', '38.990000', '28.000000', '1416.000000', '294.000000', '812.000000', '258.000000', '3.406300', '109400.000000']\n",
- "['-121.690000', '38.160000', '33.000000', '1808.000000', '363.000000', '824.000000', '340.000000', '3.293700', '96400.000000']\n",
- "['-121.930000', '37.320000', '51.000000', '2711.000000', '728.000000', '1607.000000', '724.000000', '3.000000', '184700.000000']\n",
- "['-117.260000', '33.260000', '9.000000', '4609.000000', '798.000000', '2582.000000', '746.000000', '4.342900', '173900.000000']\n",
- "['-121.410000', '38.530000', '37.000000', '1058.000000', '224.000000', '588.000000', '231.000000', '2.973700', '72100.000000']\n",
- "['-117.900000', '33.900000', '18.000000', '3821.000000', '576.000000', '1430.000000', '568.000000', '6.939900', '349600.000000']\n",
- "['-118.540000', '36.120000', '11.000000', '4103.000000', '882.000000', '356.000000', '171.000000', '2.102900', '99100.000000']\n",
- "['-117.240000', '32.820000', '20.000000', '2467.000000', '332.000000', '731.000000', '335.000000', '7.255900', '392300.000000']\n",
- "['-121.900000', '37.240000', '24.000000', '7521.000000', '1364.000000', '3970.000000', '1318.000000', '4.400400', '255800.000000']\n",
- "['-118.170000', '33.870000', '49.000000', '1937.000000', '445.000000', '1339.000000', '440.000000', '3.031900', '162800.000000']\n",
- "['-117.310000', '33.160000', '4.000000', '5846.000000', '894.000000', '2282.000000', '801.000000', '5.595600', '247800.000000']\n",
- "['-118.410000', '34.170000', '35.000000', '2027.000000', '428.000000', '879.000000', '402.000000', '4.692000', '330900.000000']\n",
- "['-118.380000', '34.220000', '32.000000', '362.000000', '100.000000', '348.000000', '102.000000', '2.267900', '150000.000000']\n",
- "['-117.160000', '33.730000', '10.000000', '2381.000000', '454.000000', '1323.000000', '477.000000', '2.632200', '140700.000000']\n",
- "['-119.710000', '34.400000', '27.000000', '3782.000000', '771.000000', '1742.000000', '751.000000', '4.045100', '395100.000000']\n",
- "['-117.360000', '33.200000', '26.000000', '2447.000000', '482.000000', '1405.000000', '486.000000', '3.291700', '150800.000000']\n",
- "['-118.210000', '33.800000', '41.000000', '1251.000000', '279.000000', '1053.000000', '278.000000', '3.277800', '150800.000000']\n",
- "['-120.930000', '39.900000', '20.000000', '1511.000000', '328.000000', '791.000000', '320.000000', '2.022100', '70900.000000']\n",
- "['-118.130000', '33.840000', '48.000000', '1895.000000', '294.000000', '881.000000', '293.000000', '6.336400', '307400.000000']\n",
- "['-118.270000', '33.930000', '41.000000', '570.000000', '135.000000', '466.000000', '121.000000', '2.645800', '91300.000000']\n",
- "['-118.050000', '33.780000', '25.000000', '2356.000000', '330.000000', '937.000000', '326.000000', '6.626400', '359100.000000']\n",
- "['-118.430000', '34.270000', '36.000000', '1002.000000', '250.000000', '1312.000000', '249.000000', '3.024000', '148000.000000']\n",
- "['-118.370000', '33.910000', '35.000000', '1742.000000', '283.000000', '812.000000', '282.000000', '5.670400', '303700.000000']\n",
- "['-122.500000', '37.750000', '46.000000', '2298.000000', '457.000000', '1429.000000', '477.000000', '4.021700', '272400.000000']\n",
- "['-118.300000', '34.010000', '52.000000', '1908.000000', '428.000000', '1271.000000', '394.000000', '2.588500', '136200.000000']\n",
- "['-119.160000', '34.150000', '23.000000', '3204.000000', '644.000000', '2295.000000', '614.000000', '3.948500', '196600.000000']\n",
- "['-117.040000', '32.680000', '14.000000', '1320.000000', '270.000000', '943.000000', '260.000000', '5.094700', '152700.000000']\n",
- "['-121.400000', '38.610000', '37.000000', '1994.000000', '347.000000', '782.000000', '355.000000', '4.148800', '136400.000000']\n",
- "['-118.030000', '33.930000', '35.000000', '2470.000000', '416.000000', '1386.000000', '411.000000', '5.273600', '179500.000000']\n",
- "['-119.890000', '34.440000', '25.000000', '2786.000000', '470.000000', '1669.000000', '462.000000', '5.518400', '268300.000000']\n",
- "['-120.880000', '38.580000', '8.000000', '3417.000000', '604.000000', '1703.000000', '623.000000', '4.082700', '170700.000000']\n",
- "['-118.210000', '33.790000', '32.000000', '2020.000000', '613.000000', '2557.000000', '562.000000', '2.139700', '145300.000000']\n",
- "['-121.460000', '38.570000', '52.000000', '1625.000000', '419.000000', '614.000000', '383.000000', '2.054900', '156700.000000']\n",
- "['-122.020000', '37.310000', '34.000000', '2629.000000', '433.000000', '1301.000000', '431.000000', '6.083000', '341400.000000']\n",
- "['-118.500000', '34.160000', '34.000000', '3547.000000', '523.000000', '1187.000000', '500.000000', '7.139000', '424000.000000']\n",
- "['-121.320000', '38.660000', '26.000000', '1149.000000', '193.000000', '500.000000', '194.000000', '5.078000', '163400.000000']\n",
- "['-118.090000', '33.890000', '42.000000', '991.000000', '215.000000', '717.000000', '219.000000', '4.092600', '164400.000000']\n",
- "['-118.390000', '33.820000', '30.000000', '3433.000000', '918.000000', '1526.000000', '828.000000', '4.581700', '500001.000000']\n",
- "['-118.000000', '33.960000', '37.000000', '2414.000000', '323.000000', '878.000000', '305.000000', '9.154100', '453800.000000']\n",
- "['-117.260000', '33.190000', '4.000000', '2342.000000', '595.000000', '1518.000000', '545.000000', '2.946900', '216100.000000']\n",
- "['-122.470000', '37.870000', '36.000000', '4471.000000', '618.000000', '1315.000000', '582.000000', '11.570600', '500001.000000']\n",
- "['-117.060000', '32.710000', '25.000000', '2681.000000', '596.000000', '1947.000000', '553.000000', '2.896400', '104300.000000']\n",
- "['-117.440000', '33.930000', '33.000000', '1371.000000', '236.000000', '715.000000', '227.000000', '4.375000', '129900.000000']\n",
- "['-118.120000', '33.990000', '26.000000', '2296.000000', '534.000000', '1777.000000', '507.000000', '2.539500', '191000.000000']\n",
- "['-118.150000', '34.180000', '46.000000', '2230.000000', '488.000000', '1985.000000', '456.000000', '2.232800', '142100.000000']\n",
- "['-120.430000', '34.690000', '33.000000', '2054.000000', '373.000000', '1067.000000', '358.000000', '3.602300', '128300.000000']\n",
- "['-120.840000', '37.530000', '14.000000', '3643.000000', '706.000000', '2070.000000', '697.000000', '3.152300', '141800.000000']\n",
- "['-122.070000', '37.130000', '26.000000', '1127.000000', '199.000000', '543.000000', '199.000000', '4.979200', '240000.000000']\n",
- "['-118.410000', '33.960000', '32.000000', '1044.000000', '219.000000', '567.000000', '222.000000', '4.147100', '284400.000000']\n",
- "['-121.510000', '38.790000', '29.000000', '1716.000000', '323.000000', '850.000000', '282.000000', '2.932400', '137500.000000']\n",
- "['-117.330000', '33.190000', '15.000000', '3672.000000', '845.000000', '1827.000000', '796.000000', '2.971600', '173600.000000']\n",
- "['-116.540000', '33.870000', '16.000000', '3648.000000', '1035.000000', '1687.000000', '581.000000', '1.916700', '70400.000000']\n",
- "['-118.500000', '34.200000', '18.000000', '4249.000000', '933.000000', '2047.000000', '909.000000', '4.130400', '229100.000000']\n",
- "['-118.300000', '33.750000', '23.000000', '1957.000000', '517.000000', '1454.000000', '526.000000', '3.505600', '203100.000000']\n",
- "['-117.990000', '33.730000', '24.000000', '2104.000000', '421.000000', '1181.000000', '414.000000', '3.836500', '250900.000000']\n",
- "['-118.110000', '33.890000', '34.000000', '2508.000000', '594.000000', '1549.000000', '545.000000', '3.206900', '236500.000000']\n",
- "['-122.730000', '38.430000', '29.000000', '2677.000000', '691.000000', '1880.000000', '664.000000', '2.186400', '143200.000000']\n",
- "['-119.640000', '36.340000', '32.000000', '2958.000000', '670.000000', '1504.000000', '627.000000', '1.860600', '56700.000000']\n",
- "['-116.870000', '34.240000', '15.000000', '4419.000000', '822.000000', '622.000000', '267.000000', '3.968800', '182800.000000']\n",
- "['-118.220000', '33.980000', '34.000000', '2283.000000', '809.000000', '3032.000000', '832.000000', '2.438700', '175000.000000']\n",
- "['-122.340000', '37.970000', '19.000000', '392.000000', '109.000000', '287.000000', '81.000000', '6.042600', '110000.000000']\n",
- "['-118.080000', '33.820000', '26.000000', '4259.000000', '588.000000', '1644.000000', '581.000000', '6.251900', '345700.000000']\n",
- "['-117.700000', '33.480000', '6.000000', '16590.000000', '2696.000000', '6223.000000', '2357.000000', '6.308800', '340300.000000']\n",
- "['-118.220000', '33.880000', '37.000000', '1149.000000', '280.000000', '1016.000000', '250.000000', '2.125000', '101900.000000']\n",
- "['-120.970000', '38.910000', '7.000000', '4341.000000', '716.000000', '1978.000000', '682.000000', '4.831100', '172200.000000']\n",
- "['-122.250000', '37.800000', '29.000000', '2468.000000', '864.000000', '1335.000000', '773.000000', '1.392900', '193800.000000']\n",
- "['-118.410000', '33.880000', '40.000000', '925.000000', '254.000000', '371.000000', '227.000000', '5.253300', '500001.000000']\n",
- "['-117.040000', '32.690000', '27.000000', '1790.000000', '356.000000', '1286.000000', '347.000000', '3.543700', '115800.000000']\n",
- "['-122.410000', '38.160000', '37.000000', '1549.000000', '301.000000', '863.000000', '275.000000', '2.745700', '254700.000000']\n",
- "['-120.250000', '37.930000', '13.000000', '493.000000', '76.000000', '196.000000', '68.000000', '3.375000', '134100.000000']\n",
- "['-121.980000', '38.390000', '3.000000', '9488.000000', '1417.000000', '4095.000000', '1335.000000', '5.178100', '191900.000000']\n",
- "['-122.470000', '37.720000', '47.000000', '1176.000000', '286.000000', '564.000000', '258.000000', '3.205900', '350000.000000']\n",
- "['-118.180000', '34.130000', '39.000000', '2902.000000', '460.000000', '1007.000000', '420.000000', '6.195300', '363000.000000']\n",
- "['-118.090000', '33.990000', '35.000000', '2787.000000', '639.000000', '1923.000000', '614.000000', '3.575700', '177900.000000']\n",
- "['-121.940000', '37.750000', '16.000000', '5121.000000', '735.000000', '2464.000000', '761.000000', '6.620400', '296100.000000']\n",
- "['-117.070000', '32.740000', '38.000000', '1901.000000', '392.000000', '1099.000000', '406.000000', '2.766100', '113900.000000']\n",
- "['-118.140000', '34.040000', '40.000000', '1966.000000', '391.000000', '1120.000000', '362.000000', '3.710900', '198800.000000']\n",
- "['-122.410000', '37.810000', '25.000000', '1178.000000', '545.000000', '592.000000', '441.000000', '3.672800', '500001.000000']\n",
- "['-117.710000', '33.630000', '16.000000', '1641.000000', '354.000000', '945.000000', '318.000000', '3.426100', '219700.000000']\n",
- "['-119.640000', '34.430000', '34.000000', '3045.000000', '570.000000', '1002.000000', '488.000000', '5.623000', '500001.000000']\n",
- "['-118.100000', '33.980000', '33.000000', '1927.000000', '482.000000', '1623.000000', '479.000000', '3.526800', '152000.000000']\n",
- "['-122.040000', '37.390000', '5.000000', '8745.000000', '2211.000000', '3959.000000', '2019.000000', '4.768500', '280100.000000']\n",
- "['-122.030000', '37.180000', '10.000000', '212.000000', '38.000000', '78.000000', '21.000000', '6.062200', '390000.000000']\n",
- "['-122.300000', '37.560000', '36.000000', '1379.000000', '228.000000', '750.000000', '227.000000', '5.538100', '282000.000000']\n",
- "['-117.360000', '33.920000', '7.000000', '9376.000000', '1181.000000', '3570.000000', '1107.000000', '8.532600', '315200.000000']\n",
- "['-121.380000', '37.880000', '44.000000', '1158.000000', '226.000000', '1094.000000', '224.000000', '2.684200', '156300.000000']\n",
- "['-119.980000', '38.930000', '28.000000', '1194.000000', '272.000000', '494.000000', '203.000000', '2.328100', '85800.000000']\n",
- "['-117.160000', '32.710000', '52.000000', '845.000000', '451.000000', '1230.000000', '375.000000', '1.091800', '22500.000000']\n",
- "['-122.360000', '37.930000', '17.000000', '1258.000000', '254.000000', '885.000000', '229.000000', '3.050000', '121600.000000']\n",
- "['-118.230000', '34.170000', '37.000000', '4524.000000', '1005.000000', '2099.000000', '937.000000', '3.578100', '366700.000000']\n",
- "['-118.470000', '34.100000', '32.000000', '8041.000000', '1141.000000', '2768.000000', '1106.000000', '11.197800', '500001.000000']\n",
- "['-124.140000', '40.800000', '32.000000', '1373.000000', '312.000000', '872.000000', '306.000000', '2.500000', '72600.000000']\n",
- "['-117.800000', '33.550000', '35.000000', '2067.000000', '428.000000', '724.000000', '377.000000', '5.837100', '500001.000000']\n",
- "['-118.020000', '34.120000', '38.000000', '1778.000000', '288.000000', '870.000000', '281.000000', '6.578400', '408500.000000']\n",
- "['-122.740000', '38.480000', '12.000000', '4174.000000', '670.000000', '1882.000000', '647.000000', '4.551000', '178300.000000']\n",
- "['-118.340000', '33.830000', '34.000000', '1761.000000', '329.000000', '965.000000', '329.000000', '5.399000', '358500.000000']\n",
- "['-120.680000', '35.290000', '37.000000', '1354.000000', '293.000000', '753.000000', '290.000000', '3.250000', '225000.000000']\n",
- "['-122.450000', '37.640000', '19.000000', '6326.000000', '1025.000000', '3444.000000', '984.000000', '6.249800', '353300.000000']\n",
- "['-122.040000', '37.620000', '35.000000', '1032.000000', '173.000000', '453.000000', '176.000000', '6.396000', '208500.000000']\n",
- "['-122.790000', '38.540000', '5.000000', '3986.000000', '737.000000', '1887.000000', '687.000000', '3.776800', '213800.000000']\n",
- "['-117.220000', '32.860000', '4.000000', '16289.000000', '4585.000000', '7604.000000', '4176.000000', '3.628700', '280800.000000']\n",
- "['-120.080000', '39.610000', '32.000000', '1404.000000', '247.000000', '544.000000', '201.000000', '2.777800', '72900.000000']\n",
- "['-118.360000', '34.150000', '41.000000', '3545.000000', '698.000000', '1221.000000', '651.000000', '4.300000', '500001.000000']\n",
- "['-121.360000', '38.560000', '17.000000', '6225.000000', '938.000000', '3064.000000', '947.000000', '5.288100', '138000.000000']\n",
- "['-122.320000', '41.310000', '45.000000', '1393.000000', '294.000000', '521.000000', '249.000000', '1.191500', '71900.000000']\n",
- "['-121.590000', '39.750000', '20.000000', '908.000000', '206.000000', '481.000000', '211.000000', '2.200000', '80800.000000']\n",
- "['-117.300000', '34.150000', '45.000000', '942.000000', '166.000000', '401.000000', '174.000000', '3.859400', '90800.000000']\n",
- "['-117.710000', '33.650000', '16.000000', '3774.000000', '456.000000', '1587.000000', '430.000000', '8.608800', '307400.000000']\n",
- "['-118.310000', '34.260000', '37.000000', '1444.000000', '246.000000', '624.000000', '239.000000', '5.760000', '239400.000000']\n",
- "['-122.040000', '36.980000', '51.000000', '1076.000000', '206.000000', '495.000000', '201.000000', '2.928600', '258300.000000']\n",
- "['-118.260000', '34.240000', '35.000000', '1535.000000', '283.000000', '816.000000', '287.000000', '6.187300', '312100.000000']\n",
- "['-118.280000', '33.960000', '39.000000', '882.000000', '221.000000', '697.000000', '189.000000', '1.847200', '99100.000000']\n",
- "['-123.500000', '39.670000', '22.000000', '2124.000000', '450.000000', '1122.000000', '446.000000', '2.179300', '71500.000000']\n",
- "['-117.190000', '33.140000', '12.000000', '3652.000000', '923.000000', '1677.000000', '728.000000', '2.326700', '92000.000000']\n",
- "['-121.120000', '38.860000', '17.000000', '3949.000000', '717.000000', '1683.000000', '686.000000', '3.380200', '216500.000000']\n",
- "['-118.410000', '34.210000', '35.000000', '2215.000000', '459.000000', '1594.000000', '446.000000', '4.016700', '193200.000000']\n",
- "['-116.540000', '33.820000', '12.000000', '9482.000000', '2501.000000', '2725.000000', '1300.000000', '1.559500', '115600.000000']\n",
- "['-121.610000', '39.760000', '31.000000', '2431.000000', '512.000000', '1026.000000', '427.000000', '2.542800', '85000.000000']\n",
- "['-121.990000', '37.920000', '14.000000', '1780.000000', '224.000000', '764.000000', '226.000000', '9.024300', '427700.000000']\n",
- "['-122.060000', '37.540000', '20.000000', '6483.000000', '1068.000000', '3526.000000', '1060.000000', '5.083800', '248200.000000']\n",
- "['-122.080000', '37.720000', '32.000000', '2476.000000', '368.000000', '1048.000000', '367.000000', '5.619400', '274700.000000']\n",
- "['-118.930000', '36.100000', '19.000000', '2988.000000', '681.000000', '1654.000000', '576.000000', '2.379200', '90000.000000']\n",
- "['-122.780000', '38.970000', '11.000000', '5175.000000', '971.000000', '2144.000000', '792.000000', '3.046600', '97300.000000']\n",
- "['-121.220000', '37.970000', '37.000000', '1514.000000', '337.000000', '1121.000000', '337.000000', '2.401000', '58400.000000']\n",
- "['-121.470000', '38.610000', '35.000000', '1372.000000', '360.000000', '850.000000', '328.000000', '1.633100', '67500.000000']\n",
- "['-122.310000', '37.540000', '49.000000', '1340.000000', '281.000000', '660.000000', '284.000000', '4.163000', '393800.000000']\n",
- "['-122.000000', '37.300000', '29.000000', '3429.000000', '524.000000', '1518.000000', '520.000000', '7.218000', '400700.000000']\n",
- "['-122.410000', '37.800000', '52.000000', '812.000000', '252.000000', '629.000000', '247.000000', '2.587500', '500001.000000']\n",
- "['-118.290000', '34.050000', '34.000000', '1102.000000', '448.000000', '1325.000000', '439.000000', '1.597200', '168800.000000']\n",
- "['-118.610000', '34.150000', '32.000000', '4491.000000', '815.000000', '1696.000000', '749.000000', '4.910200', '319100.000000']\n",
- "['-116.480000', '33.840000', '5.000000', '5480.000000', '1371.000000', '1050.000000', '485.000000', '1.720400', '137500.000000']\n",
- "['-118.260000', '33.780000', '27.000000', '1672.000000', '491.000000', '1723.000000', '462.000000', '2.045800', '174500.000000']\n",
- "['-117.340000', '34.510000', '6.000000', '5667.000000', '1385.000000', '2447.000000', '1199.000000', '2.361700', '103100.000000']\n",
- "['-122.460000', '37.670000', '16.000000', '3372.000000', '1101.000000', '2049.000000', '1021.000000', '4.130300', '146500.000000']\n",
- "['-118.350000', '34.110000', '33.000000', '7478.000000', '1678.000000', '2701.000000', '1500.000000', '4.171700', '500001.000000']\n",
- "['-117.300000', '34.100000', '44.000000', '589.000000', '130.000000', '504.000000', '137.000000', '1.775000', '63400.000000']\n",
- "['-118.440000', '34.150000', '44.000000', '1778.000000', '251.000000', '641.000000', '251.000000', '10.054900', '500001.000000']\n",
- "['-118.630000', '34.180000', '32.000000', '1646.000000', '242.000000', '697.000000', '233.000000', '6.668900', '433000.000000']\n",
- "['-117.950000', '33.760000', '24.000000', '3956.000000', '812.000000', '3196.000000', '795.000000', '4.351200', '191400.000000']\n",
- "['-122.250000', '37.450000', '34.000000', '2999.000000', '365.000000', '927.000000', '369.000000', '10.281100', '500001.000000']\n",
- "['-117.590000', '33.650000', '4.000000', '1793.000000', '390.000000', '897.000000', '386.000000', '4.246300', '182800.000000']\n",
- "['-114.490000', '33.970000', '17.000000', '2809.000000', '635.000000', '83.000000', '45.000000', '1.615400', '87500.000000']\n",
- "['-118.510000', '34.200000', '34.000000', '2871.000000', '581.000000', '1350.000000', '535.000000', '3.704900', '227500.000000']\n",
- "['-122.030000', '38.010000', '27.000000', '3228.000000', '562.000000', '1666.000000', '588.000000', '4.570700', '175900.000000']\n",
- "['-118.430000', '33.990000', '45.000000', '2092.000000', '451.000000', '1190.000000', '429.000000', '3.802100', '323000.000000']\n",
- "['-122.510000', '37.760000', '43.000000', '2345.000000', '624.000000', '1439.000000', '614.000000', '2.844800', '268900.000000']\n",
- "['-119.550000', '36.690000', '21.000000', '1551.000000', '423.000000', '1519.000000', '406.000000', '1.713200', '55900.000000']\n",
- "['-122.240000', '38.150000', '10.000000', '6817.000000', '1188.000000', '4163.000000', '1135.000000', '4.452900', '144100.000000']\n",
- "['-117.870000', '34.020000', '16.000000', '3552.000000', '575.000000', '2120.000000', '573.000000', '6.433300', '271500.000000']\n",
- "['-122.130000', '37.700000', '21.000000', '4124.000000', '1054.000000', '2162.000000', '998.000000', '2.632100', '223100.000000']\n",
- "['-121.330000', '38.600000', '25.000000', '4260.000000', '607.000000', '1635.000000', '640.000000', '6.281700', '288200.000000']\n",
- "['-121.910000', '37.470000', '13.000000', '5377.000000', '744.000000', '2759.000000', '760.000000', '6.868000', '337300.000000']\n",
- "['-118.530000', '34.040000', '45.000000', '1711.000000', '264.000000', '735.000000', '261.000000', '9.107800', '500001.000000']\n",
- "['-121.330000', '38.000000', '32.000000', '4474.000000', '929.000000', '2177.000000', '884.000000', '3.288900', '98900.000000']\n",
- "['-117.850000', '34.060000', '24.000000', '3128.000000', '497.000000', '1406.000000', '472.000000', '7.528600', '462700.000000']\n",
- "['-118.430000', '35.120000', '8.000000', '1968.000000', '376.000000', '930.000000', '360.000000', '3.263200', '99800.000000']\n",
- "['-118.070000', '33.970000', '36.000000', '1265.000000', '273.000000', '1052.000000', '253.000000', '4.892900', '156200.000000']\n",
- "['-117.160000', '32.780000', '34.000000', '2515.000000', '488.000000', '1594.000000', '515.000000', '3.738100', '165000.000000']\n",
- "['-116.290000', '34.180000', '15.000000', '4203.000000', '966.000000', '1756.000000', '695.000000', '2.182000', '60800.000000']\n",
- "['-120.660000', '35.290000', '16.000000', '2272.000000', '629.000000', '1689.000000', '649.000000', '1.703100', '195000.000000']\n",
- "['-119.790000', '36.770000', '30.000000', '1610.000000', '410.000000', '1000.000000', '397.000000', '2.035700', '60200.000000']\n",
- "['-122.140000', '37.750000', '33.000000', '1334.000000', '200.000000', '579.000000', '202.000000', '6.832300', '255900.000000']\n",
- "['-122.320000', '37.970000', '33.000000', '1595.000000', '292.000000', '991.000000', '300.000000', '4.693700', '134100.000000']\n",
- "['-119.800000', '36.830000', '17.000000', '1560.000000', '261.000000', '709.000000', '258.000000', '4.331500', '95800.000000']\n",
- "['-117.330000', '33.160000', '29.000000', '3559.000000', '552.000000', '1533.000000', '545.000000', '4.058500', '245500.000000']\n",
- "['-121.860000', '37.230000', '24.000000', '4337.000000', '670.000000', '1936.000000', '652.000000', '5.890400', '271400.000000']\n",
- "['-122.240000', '37.810000', '52.000000', '2093.000000', '550.000000', '918.000000', '483.000000', '2.747700', '243800.000000']\n",
- "['-120.850000', '37.770000', '10.000000', '423.000000', '110.000000', '295.000000', '94.000000', '1.358300', '85200.000000']\n",
- "['-116.950000', '33.790000', '20.000000', '2399.000000', '546.000000', '1726.000000', '542.000000', '1.884500', '77700.000000']\n",
- "['-117.220000', '33.220000', '16.000000', '2134.000000', '643.000000', '1555.000000', '560.000000', '1.721700', '175000.000000']\n",
- "['-122.230000', '40.170000', '21.000000', '1401.000000', '331.000000', '651.000000', '299.000000', '2.225000', '64700.000000']\n",
- "['-118.450000', '34.030000', '41.000000', '2083.000000', '528.000000', '993.000000', '481.000000', '4.023100', '353900.000000']\n",
- "['-118.990000', '35.270000', '32.000000', '444.000000', '102.000000', '242.000000', '87.000000', '1.152800', '150000.000000']\n",
- "['-117.580000', '33.870000', '34.000000', '1511.000000', '272.000000', '773.000000', '265.000000', '3.531300', '142100.000000']\n",
- "['-118.650000', '36.570000', '20.000000', '1431.000000', '416.000000', '570.000000', '225.000000', '1.482100', '143300.000000']\n",
- "['-121.400000', '38.660000', '50.000000', '880.000000', '150.000000', '1148.000000', '148.000000', '2.506200', '112500.000000']\n",
- "['-119.460000', '35.860000', '22.000000', '1750.000000', '374.000000', '1113.000000', '338.000000', '1.505000', '42700.000000']\n",
- "['-118.220000', '33.980000', '32.000000', '2643.000000', '737.000000', '2784.000000', '711.000000', '2.535200', '184400.000000']\n",
- "['-118.380000', '33.820000', '35.000000', '3053.000000', '623.000000', '1311.000000', '589.000000', '5.158900', '439200.000000']\n",
- "['-117.770000', '33.690000', '16.000000', '1666.000000', '341.000000', '479.000000', '336.000000', '2.140600', '55000.000000']\n",
- "['-118.460000', '34.180000', '35.000000', '1819.000000', '465.000000', '1336.000000', '419.000000', '3.458300', '253200.000000']\n",
- "['-122.420000', '37.790000', '6.000000', '670.000000', '301.000000', '655.000000', '284.000000', '3.442300', '117500.000000']\n",
- "['-118.310000', '33.770000', '20.000000', '5776.000000', '956.000000', '2757.000000', '936.000000', '6.644700', '416800.000000']\n",
- "['-121.670000', '37.130000', '19.000000', '3269.000000', '483.000000', '1383.000000', '452.000000', '5.620500', '300800.000000']\n",
- "['-121.330000', '38.570000', '17.000000', '1621.000000', '350.000000', '706.000000', '338.000000', '2.368400', '150000.000000']\n",
- "['-120.830000', '37.520000', '6.000000', '1488.000000', '252.000000', '773.000000', '259.000000', '4.185900', '150000.000000']\n",
- "['-118.120000', '33.990000', '27.000000', '2316.000000', '559.000000', '2012.000000', '544.000000', '2.815500', '176800.000000']\n",
- "['-118.110000', '34.070000', '39.000000', '1270.000000', '299.000000', '1073.000000', '278.000000', '3.308800', '186600.000000']\n",
- "['-122.670000', '38.240000', '29.000000', '2644.000000', '464.000000', '1372.000000', '450.000000', '5.054400', '261800.000000']\n",
- "['-117.290000', '34.090000', '24.000000', '1451.000000', '387.000000', '1178.000000', '330.000000', '1.180600', '68300.000000']\n",
- "['-121.800000', '37.190000', '45.000000', '1797.000000', '303.000000', '870.000000', '281.000000', '4.541700', '434500.000000']\n",
- "['-120.300000', '37.970000', '17.000000', '3243.000000', '619.000000', '1408.000000', '566.000000', '2.474000', '120100.000000']\n",
- "['-120.450000', '34.650000', '21.000000', '1182.000000', '243.000000', '733.000000', '251.000000', '3.144200', '131600.000000']\n",
- "['-119.290000', '34.230000', '22.000000', '2486.000000', '608.000000', '709.000000', '523.000000', '2.901800', '275000.000000']\n",
- "['-118.340000', '34.020000', '49.000000', '1609.000000', '371.000000', '896.000000', '389.000000', '2.515600', '136600.000000']\n",
- "['-117.940000', '33.800000', '23.000000', '2757.000000', '734.000000', '1811.000000', '707.000000', '2.800000', '214300.000000']\n",
- "['-116.850000', '34.260000', '19.000000', '5395.000000', '1220.000000', '981.000000', '366.000000', '2.609400', '92400.000000']\n",
- "['-117.890000', '33.760000', '34.000000', '1050.000000', '210.000000', '723.000000', '201.000000', '4.800000', '192700.000000']\n",
- "['-118.290000', '34.030000', '27.000000', '1084.000000', '287.000000', '1085.000000', '279.000000', '2.135000', '119600.000000']\n",
- "['-118.120000', '34.060000', '35.000000', '1729.000000', '438.000000', '1308.000000', '412.000000', '2.532100', '197200.000000']\n",
- "['-121.410000', '38.600000', '16.000000', '5407.000000', '1467.000000', '2523.000000', '1265.000000', '2.047100', '104200.000000']\n",
- "['-120.620000', '35.130000', '26.000000', '3971.000000', '803.000000', '1792.000000', '723.000000', '2.712800', '209900.000000']\n",
- "['-118.180000', '33.800000', '42.000000', '2301.000000', '621.000000', '2114.000000', '561.000000', '2.057900', '132700.000000']\n",
- "['-117.510000', '34.160000', '2.000000', '718.000000', '98.000000', '119.000000', '50.000000', '4.100000', '315000.000000']\n",
- "['-118.160000', '34.030000', '40.000000', '2201.000000', '636.000000', '2682.000000', '595.000000', '2.359000', '143400.000000']\n",
- "['-118.170000', '34.110000', '39.000000', '1758.000000', '436.000000', '892.000000', '447.000000', '3.640600', '278900.000000']\n",
- "['-117.690000', '33.650000', '15.000000', '5394.000000', '748.000000', '2383.000000', '706.000000', '7.561900', '302000.000000']\n",
- "['-122.200000', '37.770000', '41.000000', '1547.000000', '415.000000', '1024.000000', '341.000000', '2.056200', '102000.000000']\n",
- "['-121.330000', '37.960000', '42.000000', '1619.000000', '340.000000', '906.000000', '339.000000', '2.548800', '80300.000000']\n",
- "['-121.840000', '38.130000', '33.000000', '596.000000', '105.000000', '212.000000', '94.000000', '4.281300', '81300.000000']\n",
- "['-117.760000', '34.050000', '36.000000', '2910.000000', '819.000000', '3055.000000', '782.000000', '1.902900', '98000.000000']\n",
- "['-122.430000', '37.790000', '52.000000', '3219.000000', '969.000000', '1152.000000', '830.000000', '4.204200', '500001.000000']\n",
- "['-122.320000', '37.570000', '33.000000', '3384.000000', '819.000000', '2626.000000', '793.000000', '3.228500', '234800.000000']\n",
- "['-118.160000', '34.070000', '42.000000', '3836.000000', '777.000000', '2118.000000', '754.000000', '3.636400', '254600.000000']\n",
- "['-124.090000', '40.950000', '18.000000', '2250.000000', '484.000000', '1248.000000', '472.000000', '2.589300', '99600.000000']\n",
- "['-121.990000', '38.350000', '45.000000', '1778.000000', '339.000000', '839.000000', '319.000000', '2.465900', '102900.000000']\n",
- "['-122.720000', '38.420000', '26.000000', '3604.000000', '734.000000', '2605.000000', '704.000000', '3.096900', '143800.000000']\n",
- "['-122.110000', '37.660000', '29.000000', '2544.000000', '643.000000', '2332.000000', '603.000000', '3.209100', '150000.000000']\n",
- "['-121.840000', '36.620000', '26.000000', '32.000000', '8.000000', '27.000000', '10.000000', '2.225000', '150000.000000']\n",
- "['-118.180000', '34.120000', '29.000000', '2640.000000', '737.000000', '1795.000000', '655.000000', '2.369000', '173400.000000']\n",
- "['-122.450000', '38.270000', '25.000000', '5024.000000', '881.000000', '1994.000000', '838.000000', '4.223700', '262300.000000']\n",
- "['-117.910000', '33.650000', '17.000000', '1328.000000', '377.000000', '762.000000', '344.000000', '2.222200', '276800.000000']\n",
- "['-116.470000', '33.770000', '26.000000', '4300.000000', '767.000000', '1557.000000', '669.000000', '4.410700', '122500.000000']\n",
- "['-122.410000', '37.730000', '42.000000', '2604.000000', '573.000000', '1703.000000', '507.000000', '3.423100', '230200.000000']\n",
- "['-119.780000', '36.800000', '34.000000', '2200.000000', '493.000000', '1243.000000', '431.000000', '1.851400', '66500.000000']\n",
- "['-119.710000', '34.360000', '34.000000', '1706.000000', '276.000000', '628.000000', '243.000000', '4.184200', '364000.000000']\n",
- "['-118.360000', '34.030000', '40.000000', '2323.000000', '661.000000', '1847.000000', '614.000000', '1.831600', '113500.000000']\n",
- "['-121.890000', '37.990000', '4.000000', '2171.000000', '597.000000', '928.000000', '461.000000', '4.101600', '170500.000000']\n",
- "['-121.980000', '37.330000', '25.000000', '3223.000000', '612.000000', '1529.000000', '602.000000', '5.121000', '287600.000000']\n",
- "['-118.470000', '34.250000', '34.000000', '1732.000000', '399.000000', '1120.000000', '401.000000', '4.149200', '195700.000000']\n",
- "['-117.260000', '32.990000', '16.000000', '2127.000000', '512.000000', '1532.000000', '499.000000', '2.734800', '231300.000000']\n",
- "['-118.090000', '34.070000', '45.000000', '726.000000', '146.000000', '568.000000', '160.000000', '3.034700', '183200.000000']\n",
- "['-118.450000', '37.250000', '20.000000', '1468.000000', '283.000000', '721.000000', '270.000000', '3.081700', '118800.000000']\n",
- "['-117.780000', '33.540000', '29.000000', '1421.000000', '462.000000', '520.000000', '339.000000', '2.296900', '450000.000000']\n",
- "['-117.460000', '33.900000', '10.000000', '9738.000000', '2130.000000', '4936.000000', '1840.000000', '3.318700', '144800.000000']\n",
- "['-121.850000', '39.740000', '39.000000', '1139.000000', '265.000000', '623.000000', '264.000000', '2.283300', '85800.000000']\n",
- "['-117.290000', '34.110000', '48.000000', '1498.000000', '448.000000', '1586.000000', '455.000000', '1.168700', '70800.000000']\n",
- "['-121.200000', '37.790000', '36.000000', '866.000000', '160.000000', '502.000000', '149.000000', '2.479800', '101500.000000']\n",
- "['-118.430000', '33.960000', '20.000000', '1901.000000', '270.000000', '704.000000', '254.000000', '8.781900', '500001.000000']\n",
- "['-122.110000', '37.400000', '15.000000', '255.000000', '63.000000', '138.000000', '74.000000', '4.659100', '175000.000000']\n",
- "['-119.060000', '36.080000', '19.000000', '2554.000000', '443.000000', '1301.000000', '419.000000', '4.185600', '72100.000000']\n",
- "['-118.370000', '33.880000', '20.000000', '2439.000000', '474.000000', '1219.000000', '497.000000', '5.961900', '335900.000000']\n",
- "['-120.790000', '38.430000', '40.000000', '1391.000000', '246.000000', '546.000000', '214.000000', '3.910700', '129800.000000']\n",
- "['-122.200000', '39.930000', '9.000000', '1296.000000', '287.000000', '768.000000', '260.000000', '1.919100', '54400.000000']\n",
- "['-122.230000', '37.760000', '52.000000', '1049.000000', '185.000000', '374.000000', '176.000000', '4.145800', '248500.000000']\n",
- "['-121.990000', '38.530000', '6.000000', '4598.000000', '834.000000', '2561.000000', '812.000000', '3.418600', '127300.000000']\n",
- "['-118.460000', '34.020000', '39.000000', '3599.000000', '776.000000', '1569.000000', '763.000000', '5.257100', '405400.000000']\n",
- "['-115.600000', '33.040000', '31.000000', '314.000000', '61.000000', '152.000000', '56.000000', '3.347200', '91700.000000']\n",
- "['-117.220000', '32.780000', '22.000000', '2020.000000', '466.000000', '1010.000000', '429.000000', '3.452700', '175000.000000']\n",
- "['-118.630000', '34.220000', '18.000000', '1376.000000', '225.000000', '670.000000', '205.000000', '6.514600', '277600.000000']\n",
- "['-124.140000', '40.720000', '18.000000', '2581.000000', '499.000000', '1375.000000', '503.000000', '2.844600', '100500.000000']\n",
- "['-116.430000', '33.780000', '17.000000', '4293.000000', '712.000000', '1091.000000', '464.000000', '6.143700', '232100.000000']\n",
- "['-117.890000', '33.730000', '32.000000', '728.000000', '134.000000', '837.000000', '135.000000', '4.076900', '163900.000000']\n",
- "['-117.700000', '33.530000', '5.000000', '6698.000000', '1254.000000', '2834.000000', '1139.000000', '5.908800', '288500.000000']\n",
- "['-122.470000', '37.850000', '19.000000', '1926.000000', '593.000000', '881.000000', '546.000000', '2.914500', '140400.000000']\n",
- "['-120.630000', '38.730000', '11.000000', '4577.000000', '836.000000', '1944.000000', '700.000000', '4.067500', '140200.000000']\n",
- "['-118.590000', '34.200000', '18.000000', '847.000000', '185.000000', '733.000000', '178.000000', '5.214900', '201900.000000']\n",
- "['-118.360000', '33.930000', '40.000000', '1625.000000', '500.000000', '2036.000000', '476.000000', '2.629800', '156500.000000']\n",
- "['-118.410000', '33.850000', '16.000000', '6123.000000', '1989.000000', '2853.000000', '1789.000000', '4.425000', '336400.000000']\n",
- "['-117.190000', '32.770000', '16.000000', '3273.000000', '670.000000', '1305.000000', '671.000000', '4.136800', '151000.000000']\n",
- "['-117.780000', '33.860000', '16.000000', '3471.000000', '708.000000', '1769.000000', '691.000000', '4.106400', '246100.000000']\n",
- "['-121.860000', '39.740000', '13.000000', '3494.000000', '843.000000', '1571.000000', '784.000000', '1.101900', '120200.000000']\n",
- "['-119.040000', '35.310000', '11.000000', '2161.000000', '371.000000', '1267.000000', '388.000000', '4.195700', '92700.000000']\n",
- "['-118.260000', '34.020000', '40.000000', '1259.000000', '362.000000', '1499.000000', '327.000000', '1.838200', '126400.000000']\n",
- "['-117.250000', '34.490000', '4.000000', '2372.000000', '361.000000', '1017.000000', '322.000000', '5.111200', '170900.000000']\n",
- "['-120.040000', '39.270000', '24.000000', '2237.000000', '491.000000', '264.000000', '95.000000', '4.136400', '154500.000000']\n",
- "['-121.420000', '38.540000', '29.000000', '2358.000000', '493.000000', '1071.000000', '470.000000', '2.925000', '94300.000000']\n",
- "['-118.150000', '34.200000', '46.000000', '1505.000000', '261.000000', '857.000000', '269.000000', '4.500000', '184200.000000']\n",
- "['-118.080000', '33.880000', '26.000000', '1507.000000', '270.000000', '931.000000', '275.000000', '5.164500', '244900.000000']\n",
- "['-122.430000', '37.800000', '52.000000', '2696.000000', '572.000000', '925.000000', '552.000000', '5.036500', '500000.000000']\n",
- "['-115.490000', '32.670000', '24.000000', '1266.000000', '275.000000', '1083.000000', '298.000000', '1.482800', '73100.000000']\n",
- "['-120.980000', '38.340000', '27.000000', '3471.000000', '653.000000', '1793.000000', '600.000000', '3.550800', '99100.000000']\n",
- "['-116.140000', '34.450000', '12.000000', '8796.000000', '1721.000000', '11139.000000', '1680.000000', '2.261200', '137500.000000']\n",
- "['-117.110000', '32.730000', '27.000000', '3160.000000', '627.000000', '1628.000000', '612.000000', '3.886400', '132600.000000']\n",
- "['-118.470000', '34.000000', '38.000000', '1235.000000', '390.000000', '891.000000', '376.000000', '2.714300', '287500.000000']\n",
- "['-121.420000', '37.740000', '19.000000', '1393.000000', '367.000000', '915.000000', '355.000000', '1.195700', '103100.000000']\n",
- "['-122.250000', '37.820000', '52.000000', '2474.000000', '403.000000', '1104.000000', '398.000000', '5.883000', '340700.000000']\n",
- "['-118.050000', '33.720000', '22.000000', '5416.000000', '1271.000000', '2260.000000', '1184.000000', '3.803800', '174500.000000']\n",
- "['-122.020000', '36.970000', '44.000000', '594.000000', '169.000000', '325.000000', '139.000000', '1.155200', '250000.000000']\n",
- "['-115.570000', '32.800000', '33.000000', '1192.000000', '213.000000', '1066.000000', '211.000000', '4.571400', '68600.000000']\n",
- "['-121.290000', '37.800000', '6.000000', '110.000000', '26.000000', '69.000000', '24.000000', '3.729200', '475000.000000']\n",
- "['-122.080000', '37.880000', '26.000000', '2947.000000', '647.000000', '825.000000', '626.000000', '2.933000', '85000.000000']\n",
- "['-121.770000', '37.650000', '16.000000', '4290.000000', '554.000000', '1952.000000', '576.000000', '7.358800', '327500.000000']\n",
- "['-119.810000', '36.720000', '46.000000', '1414.000000', '268.000000', '902.000000', '243.000000', '1.583300', '56700.000000']\n",
- "['-118.350000', '33.970000', '26.000000', '1725.000000', '431.000000', '1130.000000', '404.000000', '3.270800', '128100.000000']\n",
- "['-118.200000', '34.190000', '38.000000', '2176.000000', '266.000000', '798.000000', '243.000000', '15.000100', '500001.000000']\n",
- "['-118.790000', '34.140000', '7.000000', '3003.000000', '504.000000', '1143.000000', '466.000000', '5.854800', '500001.000000']\n",
- "['-118.120000', '34.160000', '30.000000', '1762.000000', '416.000000', '940.000000', '398.000000', '2.863100', '188600.000000']\n",
- "['-118.220000', '33.960000', '36.000000', '1542.000000', '458.000000', '1711.000000', '468.000000', '1.902800', '164200.000000']\n",
- "['-121.300000', '37.990000', '38.000000', '2375.000000', '494.000000', '1167.000000', '471.000000', '2.667300', '87500.000000']\n",
- "['-121.840000', '36.610000', '21.000000', '2876.000000', '802.000000', '2487.000000', '795.000000', '2.200700', '112800.000000']\n",
- "['-117.900000', '34.070000', '36.000000', '1009.000000', '164.000000', '466.000000', '149.000000', '5.851900', '249400.000000']\n",
- "['-120.400000', '34.860000', '11.000000', '1633.000000', '348.000000', '504.000000', '327.000000', '2.050800', '275000.000000']\n",
- "['-117.950000', '33.800000', '32.000000', '1219.000000', '192.000000', '634.000000', '197.000000', '5.237000', '215700.000000']\n",
- "['-118.300000', '33.940000', '36.000000', '2041.000000', '531.000000', '1390.000000', '464.000000', '2.011400', '99300.000000']\n",
- "['-121.600000', '37.900000', '5.000000', '14684.000000', '2252.000000', '4276.000000', '1722.000000', '6.905100', '340900.000000']\n",
- "['-122.410000', '37.590000', '34.000000', '3931.000000', '622.000000', '1717.000000', '621.000000', '6.294600', '450000.000000']\n",
- "['-118.450000', '34.050000', '28.000000', '801.000000', '399.000000', '936.000000', '406.000000', '2.187500', '181300.000000']\n",
- "['-118.180000', '33.860000', '43.000000', '2752.000000', '645.000000', '1674.000000', '614.000000', '3.671900', '161300.000000']\n",
- "['-121.780000', '40.120000', '14.000000', '388.000000', '108.000000', '35.000000', '17.000000', '6.135900', '106300.000000']\n",
- "['-118.210000', '34.040000', '47.000000', '1325.000000', '393.000000', '1557.000000', '352.000000', '2.800000', '148400.000000']\n",
- "['-118.380000', '34.090000', '28.000000', '4001.000000', '1352.000000', '1799.000000', '1220.000000', '2.578400', '272900.000000']\n",
- "['-117.180000', '32.840000', '32.000000', '1351.000000', '237.000000', '823.000000', '269.000000', '4.276800', '167800.000000']\n",
- "['-117.300000', '32.850000', '28.000000', '2334.000000', '694.000000', '770.000000', '552.000000', '3.132400', '500001.000000']\n",
- "['-119.020000', '35.420000', '42.000000', '2271.000000', '458.000000', '1124.000000', '447.000000', '2.758300', '64900.000000']\n",
- "['-124.010000', '40.970000', '21.000000', '1513.000000', '319.000000', '943.000000', '301.000000', '3.538000', '102700.000000']\n",
- "['-118.100000', '34.130000', '44.000000', '1745.000000', '237.000000', '693.000000', '248.000000', '9.791200', '500001.000000']\n",
- "['-119.810000', '36.770000', '49.000000', '1749.000000', '314.000000', '705.000000', '300.000000', '3.150000', '72200.000000']\n",
- "['-122.550000', '38.000000', '18.000000', '3119.000000', '803.000000', '1395.000000', '722.000000', '3.926500', '301100.000000']\n",
- "['-117.620000', '34.080000', '30.000000', '1372.000000', '235.000000', '1047.000000', '225.000000', '3.159700', '116300.000000']\n",
- "['-121.290000', '37.960000', '52.000000', '888.000000', '324.000000', '630.000000', '258.000000', '1.241100', '112500.000000']\n",
- "['-119.090000', '34.240000', '17.000000', '10214.000000', '1589.000000', '3409.000000', '1327.000000', '5.380600', '452100.000000']\n",
- "['-117.200000', '32.770000', '30.000000', '156.000000', '45.000000', '77.000000', '40.000000', '3.267900', '137500.000000']\n",
- "['-122.270000', '37.450000', '41.000000', '830.000000', '136.000000', '353.000000', '153.000000', '6.382400', '500001.000000']\n",
- "['-117.310000', '34.410000', '14.000000', '3019.000000', '643.000000', '1639.000000', '582.000000', '1.528800', '103400.000000']\n",
- "['-118.280000', '33.830000', '18.000000', '5923.000000', '1409.000000', '3887.000000', '1322.000000', '3.471200', '194400.000000']\n",
- "['-118.270000', '34.050000', '26.000000', '1164.000000', '674.000000', '1685.000000', '541.000000', '1.572700', '225000.000000']\n",
- "['-118.170000', '34.090000', '45.000000', '1327.000000', '271.000000', '1069.000000', '284.000000', '3.397700', '153800.000000']\n",
- "['-122.540000', '37.740000', '42.000000', '2006.000000', '415.000000', '1230.000000', '435.000000', '4.178600', '271100.000000']\n",
- "['-118.280000', '33.770000', '47.000000', '307.000000', '69.000000', '374.000000', '65.000000', '2.906300', '146900.000000']\n",
- "['-118.040000', '33.720000', '24.000000', '7141.000000', '1330.000000', '3418.000000', '1268.000000', '4.664900', '237800.000000']\n",
- "['-117.390000', '33.920000', '25.000000', '2886.000000', '583.000000', '2327.000000', '577.000000', '2.385100', '113700.000000']\n",
- "['-119.010000', '35.370000', '35.000000', '120.000000', '35.000000', '477.000000', '41.000000', '1.912500', '47500.000000']\n",
- "['-122.410000', '37.740000', '34.000000', '1403.000000', '262.000000', '839.000000', '255.000000', '4.703100', '255200.000000']\n",
- "['-118.290000', '33.910000', '41.000000', '2475.000000', '532.000000', '1416.000000', '470.000000', '3.837200', '156400.000000']\n",
- "['-117.250000', '33.220000', '19.000000', '2167.000000', '443.000000', '1654.000000', '435.000000', '3.500000', '135800.000000']\n",
- "['-117.650000', '33.460000', '19.000000', '7034.000000', '1139.000000', '2824.000000', '1068.000000', '6.087300', '277300.000000']\n",
- "['-121.980000', '37.800000', '17.000000', '3354.000000', '422.000000', '1457.000000', '425.000000', '7.647300', '345800.000000']\n",
- "['-118.050000', '33.840000', '21.000000', '4890.000000', '653.000000', '2295.000000', '654.000000', '6.983000', '329700.000000']\n",
- "['-122.030000', '37.270000', '25.000000', '4460.000000', '553.000000', '1608.000000', '561.000000', '10.795800', '500001.000000']\n",
- "['-120.520000', '35.240000', '5.000000', '4413.000000', '804.000000', '2003.000000', '725.000000', '5.026700', '253300.000000']\n",
- "['-117.950000', '34.140000', '33.000000', '1943.000000', '440.000000', '1526.000000', '353.000000', '3.038000', '137500.000000']\n",
- "['-118.160000', '34.690000', '35.000000', '3114.000000', '583.000000', '1974.000000', '545.000000', '3.902800', '126800.000000']\n",
- "['-121.480000', '39.100000', '19.000000', '2043.000000', '421.000000', '1018.000000', '390.000000', '2.595200', '92400.000000']\n",
- "['-117.530000', '33.940000', '21.000000', '5675.000000', '935.000000', '2834.000000', '865.000000', '4.226300', '203200.000000']\n",
- "['-122.290000', '37.910000', '40.000000', '2085.000000', '329.000000', '796.000000', '339.000000', '5.535700', '273700.000000']\n",
- "['-121.780000', '38.690000', '31.000000', '2547.000000', '535.000000', '1579.000000', '509.000000', '2.677400', '95800.000000']\n",
- "['-117.970000', '33.840000', '34.000000', '874.000000', '153.000000', '549.000000', '153.000000', '4.866700', '186800.000000']\n",
- "['-122.260000', '37.860000', '52.000000', '3774.000000', '744.000000', '1461.000000', '679.000000', '2.940500', '289500.000000']\n",
- "['-117.960000', '33.690000', '20.000000', '3123.000000', '441.000000', '1319.000000', '432.000000', '6.091000', '290400.000000']\n",
- "['-118.390000', '34.190000', '36.000000', '904.000000', '191.000000', '627.000000', '191.000000', '2.416700', '192900.000000']\n",
- "['-122.480000', '37.510000', '22.000000', '1564.000000', '278.000000', '761.000000', '270.000000', '4.757800', '318500.000000']\n",
- "['-118.600000', '34.210000', '19.000000', '2581.000000', '857.000000', '2004.000000', '784.000000', '2.615900', '182300.000000']\n",
- "['-122.350000', '40.560000', '12.000000', '3900.000000', '863.000000', '2145.000000', '864.000000', '1.988100', '85200.000000']\n",
- "['-118.240000', '34.030000', '52.000000', '142.000000', '47.000000', '137.000000', '45.000000', '1.833300', '312500.000000']\n",
- "['-117.610000', '34.080000', '20.000000', '3550.000000', '736.000000', '2229.000000', '681.000000', '3.019900', '128800.000000']\n",
- "['-121.030000', '37.670000', '24.000000', '2162.000000', '459.000000', '1468.000000', '441.000000', '3.185700', '98300.000000']\n",
- "['-119.690000', '36.810000', '15.000000', '2892.000000', '496.000000', '1634.000000', '501.000000', '4.493400', '88000.000000']\n",
- "['-118.270000', '34.060000', '26.000000', '513.000000', '338.000000', '1204.000000', '321.000000', '1.490400', '275000.000000']\n",
- "['-118.260000', '34.070000', '30.000000', '929.000000', '238.000000', '763.000000', '214.000000', '2.522700', '187500.000000']\n",
- "['-120.910000', '38.980000', '13.000000', '7689.000000', '1415.000000', '3264.000000', '1198.000000', '3.653000', '146800.000000']\n",
- "['-117.140000', '32.710000', '32.000000', '719.000000', '251.000000', '894.000000', '208.000000', '1.845600', '103100.000000']\n",
- "['-117.200000', '32.820000', '35.000000', '2772.000000', '537.000000', '1392.000000', '521.000000', '3.337000', '172300.000000']\n",
- "['-123.800000', '39.440000', '52.000000', '1533.000000', '336.000000', '754.000000', '340.000000', '1.921300', '95000.000000']\n",
- "['-122.330000', '37.980000', '32.000000', '1967.000000', '348.000000', '1144.000000', '364.000000', '4.413500', '150100.000000']\n",
- "['-117.370000', '33.970000', '38.000000', '1156.000000', '241.000000', '877.000000', '200.000000', '1.451400', '79900.000000']\n",
- "['-122.040000', '37.300000', '26.000000', '1714.000000', '270.000000', '778.000000', '262.000000', '6.075000', '417000.000000']\n",
- "['-118.210000', '33.980000', '35.000000', '1705.000000', '562.000000', '2212.000000', '539.000000', '2.325000', '161500.000000']\n",
- "['-117.320000', '34.110000', '38.000000', '1462.000000', '337.000000', '1208.000000', '324.000000', '2.260400', '68100.000000']\n",
- "['-118.120000', '34.080000', '49.000000', '1782.000000', '374.000000', '1010.000000', '367.000000', '3.158300', '268200.000000']\n",
- "['-121.560000', '39.690000', '8.000000', '2836.000000', '522.000000', '1163.000000', '512.000000', '3.130000', '168300.000000']\n",
- "['-117.940000', '33.800000', '28.000000', '2914.000000', '489.000000', '1500.000000', '499.000000', '4.942900', '254800.000000']\n",
- "['-117.980000', '33.850000', '23.000000', '2089.000000', '377.000000', '1085.000000', '362.000000', '4.765000', '181500.000000']\n",
- "['-122.850000', '38.770000', '18.000000', '2856.000000', '513.000000', '1027.000000', '405.000000', '4.695300', '241700.000000']\n",
- "['-116.240000', '33.760000', '9.000000', '1961.000000', '595.000000', '966.000000', '275.000000', '3.812500', '96700.000000']\n",
- "['-122.320000', '37.960000', '25.000000', '1728.000000', '403.000000', '934.000000', '412.000000', '3.375000', '133700.000000']\n",
- "['-118.950000', '35.410000', '21.000000', '3999.000000', '727.000000', '1889.000000', '688.000000', '3.875000', '99500.000000']\n",
- "['-122.420000', '37.670000', '42.000000', '2274.000000', '429.000000', '1255.000000', '397.000000', '5.120500', '226300.000000']\n",
- "['-118.250000', '33.980000', '39.000000', '1553.000000', '461.000000', '2271.000000', '437.000000', '1.737800', '121900.000000']\n",
- "['-118.400000', '34.220000', '36.000000', '2557.000000', '540.000000', '1556.000000', '491.000000', '3.659100', '183800.000000']\n",
- "['-120.560000', '38.390000', '20.000000', '1326.000000', '307.000000', '563.000000', '237.000000', '2.666700', '86600.000000']\n",
- "['-121.630000', '39.100000', '22.000000', '3585.000000', '548.000000', '1757.000000', '577.000000', '4.174000', '100100.000000']\n",
- "['-122.200000', '37.470000', '44.000000', '1927.000000', '332.000000', '846.000000', '362.000000', '4.208300', '278200.000000']\n",
- "['-122.110000', '37.110000', '46.000000', '1993.000000', '404.000000', '850.000000', '327.000000', '5.208000', '206800.000000']\n",
- "['-118.250000', '33.840000', '19.000000', '1731.000000', '420.000000', '1032.000000', '364.000000', '3.812500', '208100.000000']\n",
- "['-118.350000', '34.180000', '46.000000', '2711.000000', '491.000000', '1277.000000', '490.000000', '4.282000', '224700.000000']\n",
- "['-118.140000', '33.860000', '44.000000', '1436.000000', '257.000000', '745.000000', '233.000000', '4.625000', '213400.000000']\n",
- "['-122.260000', '38.280000', '24.000000', '2831.000000', '502.000000', '1462.000000', '503.000000', '4.500000', '158300.000000']\n",
- "['-120.240000', '37.960000', '34.000000', '1747.000000', '395.000000', '935.000000', '362.000000', '1.625000', '79400.000000']\n",
- "['-121.590000', '39.740000', '17.000000', '1646.000000', '330.000000', '750.000000', '344.000000', '2.379800', '83800.000000']\n",
- "['-122.720000', '40.170000', '16.000000', '396.000000', '78.000000', '188.000000', '72.000000', '1.388900', '87500.000000']\n",
- "['-118.480000', '34.310000', '31.000000', '1091.000000', '256.000000', '892.000000', '238.000000', '3.000000', '172400.000000']\n",
- "['-121.100000', '38.940000', '42.000000', '410.000000', '117.000000', '706.000000', '112.000000', '1.017900', '125000.000000']\n",
- "['-118.100000', '33.970000', '35.000000', '2426.000000', '529.000000', '2010.000000', '514.000000', '2.992200', '163500.000000']\n",
- "['-120.970000', '37.670000', '16.000000', '1499.000000', '250.000000', '1292.000000', '271.000000', '4.385100', '117300.000000']\n",
- "['-121.910000', '36.970000', '19.000000', '4920.000000', '1092.000000', '1807.000000', '922.000000', '3.511200', '231900.000000']\n",
- "['-121.470000', '37.580000', '14.000000', '1594.000000', '292.000000', '887.000000', '287.000000', '4.662500', '294000.000000']\n",
- "['-121.930000', '37.720000', '26.000000', '3816.000000', '637.000000', '1935.000000', '642.000000', '4.469700', '221300.000000']\n",
- "['-117.830000', '33.790000', '29.000000', '1454.000000', '236.000000', '724.000000', '262.000000', '4.854200', '218100.000000']\n",
- "['-117.890000', '33.730000', '33.000000', '1308.000000', '375.000000', '2175.000000', '347.000000', '3.082400', '177400.000000']\n",
- "['-117.840000', '34.000000', '26.000000', '797.000000', '117.000000', '383.000000', '114.000000', '6.875800', '253800.000000']\n",
- "['-116.860000', '34.240000', '19.000000', '5411.000000', '1042.000000', '441.000000', '185.000000', '3.132400', '132000.000000']\n",
- "['-121.280000', '38.740000', '33.000000', '4384.000000', '778.000000', '1775.000000', '789.000000', '4.050000', '134700.000000']\n",
- "['-119.630000', '36.640000', '33.000000', '1036.000000', '181.000000', '620.000000', '174.000000', '3.410700', '110400.000000']\n",
- "['-121.060000', '38.250000', '13.000000', '651.000000', '102.000000', '301.000000', '104.000000', '3.652800', '200000.000000']\n",
- "['-122.010000', '37.400000', '24.000000', '1297.000000', '297.000000', '441.000000', '282.000000', '3.143900', '47500.000000']\n",
- "['-117.220000', '33.310000', '12.000000', '2924.000000', '433.000000', '1193.000000', '394.000000', '6.247500', '331300.000000']\n",
- "['-116.310000', '33.730000', '19.000000', '12467.000000', '2508.000000', '4086.000000', '1761.000000', '3.284600', '131900.000000']\n",
- "['-121.290000', '38.020000', '12.000000', '2006.000000', '426.000000', '1849.000000', '396.000000', '2.543700', '99000.000000']\n",
- "['-121.000000', '37.640000', '52.000000', '530.000000', '177.000000', '325.000000', '158.000000', '1.187500', '90600.000000']\n",
- "['-121.080000', '39.210000', '17.000000', '3033.000000', '590.000000', '1319.000000', '583.000000', '2.481100', '111800.000000']\n",
- "['-121.880000', '37.990000', '16.000000', '3787.000000', '515.000000', '1606.000000', '507.000000', '5.567600', '174200.000000']\n",
- "['-117.180000', '32.740000', '20.000000', '1165.000000', '269.000000', '459.000000', '244.000000', '3.175000', '191700.000000']\n",
- "['-117.200000', '32.850000', '22.000000', '3501.000000', '631.000000', '1297.000000', '581.000000', '4.789100', '295300.000000']\n",
- "['-117.160000', '33.920000', '12.000000', '3236.000000', '502.000000', '1610.000000', '502.000000', '4.756800', '143500.000000']\n",
- "['-118.350000', '34.050000', '44.000000', '1856.000000', '493.000000', '1374.000000', '469.000000', '2.098400', '158000.000000']\n",
- "['-119.050000', '36.060000', '23.000000', '2344.000000', '407.000000', '1184.000000', '406.000000', '3.162500', '70600.000000']\n",
- "['-121.150000', '38.690000', '52.000000', '240.000000', '44.000000', '6675.000000', '29.000000', '6.135900', '225000.000000']\n",
- "['-123.160000', '39.130000', '33.000000', '1320.000000', '303.000000', '1048.000000', '303.000000', '1.781300', '94700.000000']\n",
- "['-121.360000', '38.590000', '32.000000', '3303.000000', '480.000000', '1185.000000', '436.000000', '5.050800', '225700.000000']\n",
- "['-118.280000', '33.730000', '52.000000', '2085.000000', '588.000000', '1767.000000', '516.000000', '2.193500', '243200.000000']\n",
- "['-118.360000', '33.890000', '27.000000', '2837.000000', '684.000000', '2141.000000', '648.000000', '3.132500', '215000.000000']\n",
- "['-121.240000', '38.630000', '4.000000', '11021.000000', '1565.000000', '3857.000000', '1494.000000', '7.258200', '273200.000000']\n",
- "['-117.690000', '33.550000', '3.000000', '1618.000000', '266.000000', '710.000000', '246.000000', '6.074300', '274300.000000']\n",
- "['-118.460000', '34.270000', '28.000000', '1865.000000', '463.000000', '1182.000000', '440.000000', '2.619300', '172300.000000']\n",
- "['-122.280000', '37.860000', '52.000000', '3007.000000', '691.000000', '1582.000000', '636.000000', '2.565200', '157700.000000']\n",
- "['-118.280000', '33.940000', '32.000000', '1381.000000', '375.000000', '1268.000000', '354.000000', '1.105100', '94200.000000']\n",
- "['-122.180000', '37.730000', '42.000000', '909.000000', '215.000000', '646.000000', '198.000000', '2.906300', '80000.000000']\n",
- "['-122.870000', '38.390000', '34.000000', '1138.000000', '205.000000', '541.000000', '180.000000', '4.514700', '271400.000000']\n",
- "['-119.750000', '34.440000', '28.000000', '1080.000000', '298.000000', '524.000000', '251.000000', '1.843200', '327300.000000']\n",
- "['-117.210000', '32.850000', '15.000000', '2593.000000', '521.000000', '901.000000', '456.000000', '4.206500', '277800.000000']\n",
- "['-118.200000', '33.820000', '34.000000', '2807.000000', '768.000000', '2217.000000', '744.000000', '2.428600', '204800.000000']\n",
- "['-121.880000', '37.320000', '40.000000', '1331.000000', '374.000000', '1276.000000', '389.000000', '2.754600', '172500.000000']\n",
- "['-118.460000', '34.140000', '34.000000', '5264.000000', '771.000000', '1738.000000', '753.000000', '8.811500', '500001.000000']\n",
- "['-118.290000', '34.090000', '35.000000', '2198.000000', '998.000000', '3441.000000', '912.000000', '2.046700', '158300.000000']\n",
- "['-117.880000', '34.110000', '30.000000', '3082.000000', '602.000000', '2008.000000', '619.000000', '4.141100', '182700.000000']\n",
- "['-117.680000', '33.650000', '6.000000', '10395.000000', '1915.000000', '4783.000000', '1811.000000', '5.928000', '239900.000000']\n",
- "['-120.350000', '39.340000', '29.000000', '1986.000000', '474.000000', '337.000000', '100.000000', '4.027800', '95800.000000']\n",
- "['-118.020000', '33.820000', '19.000000', '2485.000000', '437.000000', '1286.000000', '431.000000', '4.746600', '258300.000000']\n",
- "['-118.350000', '33.920000', '24.000000', '2728.000000', '845.000000', '2023.000000', '773.000000', '2.750000', '239700.000000']\n",
- "['-122.340000', '37.970000', '19.000000', '2237.000000', '580.000000', '1438.000000', '551.000000', '2.338200', '120700.000000']\n",
- "['-118.330000', '34.020000', '46.000000', '1528.000000', '391.000000', '933.000000', '366.000000', '2.197900', '125700.000000']\n",
- "['-118.400000', '33.900000', '37.000000', '2458.000000', '400.000000', '920.000000', '375.000000', '7.892400', '500001.000000']\n",
- "['-117.970000', '33.730000', '18.000000', '3698.000000', '574.000000', '2046.000000', '614.000000', '6.298400', '269800.000000']\n",
- "['-121.320000', '38.570000', '15.000000', '3369.000000', '499.000000', '1733.000000', '470.000000', '5.310000', '127500.000000']\n",
- "['-117.940000', '33.880000', '46.000000', '1747.000000', '312.000000', '770.000000', '296.000000', '5.421700', '256000.000000']\n",
- "['-118.540000', '34.150000', '26.000000', '10111.000000', '1295.000000', '3599.000000', '1257.000000', '10.229200', '500001.000000']\n",
- "['-117.860000', '33.830000', '23.000000', '2377.000000', '403.000000', '1101.000000', '408.000000', '5.343900', '227100.000000']\n",
- "['-119.950000', '36.800000', '30.000000', '1233.000000', '214.000000', '620.000000', '199.000000', '3.429700', '112500.000000']\n",
- "['-121.420000', '36.860000', '41.000000', '440.000000', '106.000000', '389.000000', '94.000000', '2.681800', '225000.000000']\n",
- "['-117.090000', '32.690000', '34.000000', '1469.000000', '267.000000', '1031.000000', '267.000000', '3.458300', '112700.000000']\n",
- "['-119.200000', '34.150000', '27.000000', '2076.000000', '681.000000', '1904.000000', '647.000000', '1.477300', '160800.000000']\n",
- "['-117.170000', '32.760000', '45.000000', '3149.000000', '639.000000', '1160.000000', '661.000000', '2.726600', '354200.000000']\n",
- "['-117.900000', '33.910000', '36.000000', '1376.000000', '257.000000', '687.000000', '221.000000', '3.540300', '195400.000000']\n",
- "['-122.030000', '37.330000', '23.000000', '4221.000000', '671.000000', '1782.000000', '641.000000', '7.486300', '412300.000000']\n",
- "['-118.180000', '33.900000', '31.000000', '2536.000000', '603.000000', '2625.000000', '576.000000', '3.090900', '150900.000000']\n",
- "['-119.050000', '35.320000', '11.000000', '7035.000000', '1455.000000', '3525.000000', '1387.000000', '3.482700', '93600.000000']\n",
- "['-119.670000', '34.470000', '35.000000', '2700.000000', '422.000000', '1995.000000', '383.000000', '4.975700', '500001.000000']\n",
- "['-118.350000', '34.170000', '44.000000', '2572.000000', '613.000000', '1280.000000', '570.000000', '3.558300', '232000.000000']\n",
- "['-118.300000', '33.870000', '31.000000', '1398.000000', '261.000000', '823.000000', '263.000000', '5.064100', '234900.000000']\n",
- "['-118.250000', '34.160000', '52.000000', '2477.000000', '385.000000', '993.000000', '371.000000', '4.913500', '368100.000000']\n",
- "['-117.910000', '33.820000', '29.000000', '1444.000000', '326.000000', '1038.000000', '271.000000', '2.384300', '182900.000000']\n",
- "['-118.360000', '33.980000', '40.000000', '1113.000000', '234.000000', '584.000000', '231.000000', '3.092700', '316000.000000']\n",
- "['-121.290000', '37.990000', '45.000000', '965.000000', '198.000000', '498.000000', '195.000000', '1.694400', '75200.000000']\n",
- "['-122.740000', '38.460000', '9.000000', '2268.000000', '594.000000', '1311.000000', '585.000000', '2.660700', '91500.000000']\n",
- "['-118.290000', '33.930000', '31.000000', '3894.000000', '1017.000000', '3590.000000', '962.000000', '2.043700', '137200.000000']\n",
- "['-122.050000', '37.310000', '25.000000', '4601.000000', '696.000000', '2003.000000', '666.000000', '8.072700', '455500.000000']\n",
- "['-117.080000', '32.570000', '18.000000', '2203.000000', '544.000000', '1943.000000', '497.000000', '2.250000', '103200.000000']\n",
- "['-122.040000', '37.970000', '10.000000', '974.000000', '316.000000', '631.000000', '286.000000', '2.315200', '140600.000000']\n",
- "['-120.310000', '37.110000', '38.000000', '1696.000000', '301.000000', '985.000000', '278.000000', '2.405400', '112500.000000']\n",
- "['-117.270000', '34.100000', '9.000000', '3904.000000', '1042.000000', '3688.000000', '896.000000', '1.802200', '78000.000000']\n",
- "['-118.260000', '33.950000', '44.000000', '1481.000000', '329.000000', '999.000000', '315.000000', '1.514700', '94600.000000']\n",
- "['-118.110000', '34.160000', '52.000000', '1353.000000', '274.000000', '852.000000', '306.000000', '3.458300', '239900.000000']\n",
- "['-118.340000', '33.990000', '34.000000', '397.000000', '132.000000', '250.000000', '121.000000', '1.675000', '166700.000000']\n",
- "['-117.890000', '33.600000', '40.000000', '1639.000000', '352.000000', '498.000000', '278.000000', '5.633600', '500001.000000']\n",
- "['-119.720000', '34.420000', '52.000000', '1759.000000', '387.000000', '980.000000', '402.000000', '4.012500', '261000.000000']\n",
- "['-118.440000', '34.180000', '36.000000', '2077.000000', '496.000000', '1206.000000', '528.000000', '2.232600', '221000.000000']\n",
- "['-122.080000', '37.970000', '9.000000', '2643.000000', '439.000000', '1105.000000', '467.000000', '6.657900', '245200.000000']\n",
- "['-122.450000', '37.760000', '50.000000', '2518.000000', '507.000000', '979.000000', '516.000000', '4.691200', '500001.000000']\n",
- "['-118.220000', '33.940000', '41.000000', '928.000000', '249.000000', '1108.000000', '236.000000', '3.432300', '144600.000000']\n",
- "['-118.330000', '34.070000', '52.000000', '1482.000000', '171.000000', '531.000000', '161.000000', '15.000100', '500001.000000']\n",
- "['-117.660000', '34.050000', '14.000000', '2644.000000', '525.000000', '2021.000000', '511.000000', '3.646700', '147500.000000']\n",
- "['-120.940000', '35.420000', '18.000000', '3418.000000', '686.000000', '970.000000', '453.000000', '3.773800', '279400.000000']\n",
- "['-117.300000', '34.050000', '6.000000', '2155.000000', '544.000000', '1039.000000', '391.000000', '1.667500', '95800.000000']\n",
- "['-117.920000', '33.640000', '5.000000', '949.000000', '287.000000', '497.000000', '244.000000', '2.750000', '225000.000000']\n",
- "['-118.190000', '33.990000', '37.000000', '2073.000000', '614.000000', '2544.000000', '598.000000', '2.905400', '156300.000000']\n",
- "['-122.080000', '37.940000', '44.000000', '2185.000000', '357.000000', '943.000000', '366.000000', '4.725000', '232100.000000']\n",
- "['-117.720000', '34.090000', '33.000000', '4979.000000', '934.000000', '2575.000000', '874.000000', '3.795800', '152500.000000']\n",
- "['-118.190000', '34.080000', '35.000000', '1554.000000', '381.000000', '1487.000000', '374.000000', '1.903800', '139500.000000']\n",
- "['-122.240000', '38.110000', '42.000000', '1743.000000', '388.000000', '889.000000', '341.000000', '2.324100', '99200.000000']\n",
- "['-121.810000', '37.230000', '17.000000', '2319.000000', '324.000000', '1076.000000', '338.000000', '6.466400', '278300.000000']\n",
- "['-118.340000', '34.180000', '45.000000', '3046.000000', '633.000000', '1448.000000', '599.000000', '3.240000', '226900.000000']\n",
- "['-120.570000', '38.200000', '13.000000', '4110.000000', '847.000000', '1796.000000', '706.000000', '2.641700', '122300.000000']\n",
- "['-120.450000', '34.640000', '30.000000', '2330.000000', '422.000000', '1255.000000', '449.000000', '3.851200', '134600.000000']\n",
- "['-118.250000', '33.950000', '25.000000', '764.000000', '200.000000', '801.000000', '220.000000', '1.138400', '100000.000000']\n",
- "['-117.950000', '33.900000', '15.000000', '3057.000000', '479.000000', '1679.000000', '498.000000', '6.842900', '372600.000000']\n",
- "['-117.200000', '33.120000', '18.000000', '4372.000000', '736.000000', '1473.000000', '675.000000', '5.119400', '247800.000000']\n",
- "['-117.300000', '34.530000', '38.000000', '1643.000000', '489.000000', '1196.000000', '406.000000', '1.227500', '64100.000000']\n",
- "['-121.870000', '37.270000', '18.000000', '3561.000000', '560.000000', '1753.000000', '553.000000', '5.029200', '269400.000000']\n",
- "['-118.280000', '34.030000', '40.000000', '2118.000000', '796.000000', '2195.000000', '658.000000', '1.797600', '164600.000000']\n",
- "['-119.770000', '36.440000', '26.000000', '1727.000000', '289.000000', '802.000000', '259.000000', '3.208300', '75000.000000']\n",
- "['-122.380000', '40.090000', '16.000000', '2077.000000', '388.000000', '1155.000000', '389.000000', '3.136100', '84800.000000']\n",
- "['-118.900000', '34.180000', '14.000000', '2627.000000', '328.000000', '1121.000000', '328.000000', '7.050400', '333800.000000']\n",
- "['-121.010000', '37.250000', '16.000000', '2216.000000', '458.000000', '1135.000000', '424.000000', '2.731600', '97500.000000']\n",
- "['-116.980000', '32.720000', '15.000000', '4209.000000', '680.000000', '1914.000000', '641.000000', '4.513500', '158300.000000']\n",
- "['-119.980000', '38.920000', '28.000000', '1408.000000', '312.000000', '522.000000', '221.000000', '2.070800', '89600.000000']\n",
- "['-121.930000', '37.720000', '26.000000', '2806.000000', '459.000000', '1453.000000', '444.000000', '4.910700', '213800.000000']\n",
- "['-117.640000', '34.090000', '34.000000', '2839.000000', '659.000000', '1822.000000', '631.000000', '3.050000', '121300.000000']\n",
- "['-119.850000', '37.390000', '14.000000', '2744.000000', '555.000000', '1153.000000', '474.000000', '2.753000', '111100.000000']\n",
- "['-118.200000', '33.980000', '43.000000', '1091.000000', '320.000000', '1418.000000', '316.000000', '2.152200', '159400.000000']\n",
- "['-120.830000', '37.070000', '16.000000', '3736.000000', '761.000000', '1942.000000', '730.000000', '2.559800', '120200.000000']\n",
- "['-117.070000', '32.580000', '25.000000', '1607.000000', '280.000000', '899.000000', '260.000000', '3.819400', '134400.000000']\n",
- "['-119.050000', '35.340000', '14.000000', '3580.000000', '984.000000', '1933.000000', '912.000000', '2.663700', '175000.000000']\n",
- "['-117.570000', '34.150000', '3.000000', '12806.000000', '2219.000000', '4249.000000', '1499.000000', '5.485000', '343100.000000']\n",
- "['-121.370000', '38.670000', '36.000000', '1786.000000', '338.000000', '974.000000', '319.000000', '2.555000', '72700.000000']\n",
- "['-122.180000', '37.700000', '36.000000', '2639.000000', '533.000000', '1209.000000', '519.000000', '4.026800', '205500.000000']\n",
- "['-116.940000', '32.810000', '8.000000', '2517.000000', '632.000000', '1686.000000', '613.000000', '2.136000', '143500.000000']\n",
- "['-121.210000', '39.240000', '7.000000', '4194.000000', '673.000000', '1355.000000', '566.000000', '4.370200', '226100.000000']\n",
- "['-122.060000', '37.710000', '36.000000', '3541.000000', '570.000000', '1478.000000', '529.000000', '4.635000', '248600.000000']\n",
- "['-118.440000', '34.190000', '11.000000', '2891.000000', '951.000000', '2166.000000', '768.000000', '2.891000', '178100.000000']\n",
- "['-122.360000', '37.720000', '10.000000', '479.000000', '125.000000', '355.000000', '108.000000', '2.708300', '180400.000000']\n",
- "['-121.320000', '38.620000', '29.000000', '2430.000000', '448.000000', '1087.000000', '394.000000', '3.086400', '177900.000000']\n",
- "['-118.270000', '33.940000', '43.000000', '1309.000000', '344.000000', '1182.000000', '340.000000', '1.662500', '88700.000000']\n",
- "['-122.040000', '37.970000', '39.000000', '1323.000000', '245.000000', '705.000000', '261.000000', '3.196800', '151000.000000']\n",
- "['-118.210000', '33.960000', '39.000000', '2050.000000', '529.000000', '1959.000000', '485.000000', '2.138900', '168900.000000']\n",
- "['-117.200000', '33.580000', '2.000000', '30450.000000', '5033.000000', '9419.000000', '3197.000000', '4.593600', '174300.000000']\n",
- "['-120.500000', '37.370000', '18.000000', '8606.000000', '1678.000000', '5303.000000', '1644.000000', '2.401200', '79700.000000']\n",
- "['-118.170000', '33.980000', '36.000000', '627.000000', '177.000000', '834.000000', '175.000000', '2.984400', '163600.000000']\n",
- "['-117.880000', '33.830000', '22.000000', '3522.000000', '543.000000', '1706.000000', '524.000000', '6.468500', '241200.000000']\n",
- "['-118.290000', '33.990000', '46.000000', '2198.000000', '530.000000', '2067.000000', '497.000000', '2.054200', '103400.000000']\n",
- "['-117.420000', '34.100000', '18.000000', '3977.000000', '809.000000', '2231.000000', '742.000000', '4.139900', '115400.000000']\n",
- "['-116.960000', '32.710000', '18.000000', '2413.000000', '533.000000', '1129.000000', '551.000000', '2.456700', '155000.000000']\n",
- "['-118.360000', '34.070000', '52.000000', '2046.000000', '451.000000', '944.000000', '435.000000', '3.426500', '456900.000000']\n",
- "['-122.260000', '38.330000', '34.000000', '2048.000000', '316.000000', '780.000000', '267.000000', '5.815000', '339200.000000']\n",
- "['-120.510000', '37.290000', '20.000000', '4927.000000', '1042.000000', '4205.000000', '1009.000000', '1.767900', '79800.000000']\n",
- "['-117.940000', '33.620000', '25.000000', '1188.000000', '264.000000', '569.000000', '249.000000', '3.660700', '500001.000000']\n",
- "['-118.270000', '33.940000', '30.000000', '1041.000000', '275.000000', '877.000000', '270.000000', '1.526800', '91600.000000']\n",
- "['-117.930000', '34.090000', '37.000000', '1185.000000', '225.000000', '769.000000', '235.000000', '4.462500', '154200.000000']\n",
- "['-118.220000', '33.920000', '43.000000', '1195.000000', '256.000000', '1251.000000', '262.000000', '3.453900', '125000.000000']\n",
- "['-121.840000', '37.320000', '16.000000', '1866.000000', '364.000000', '1835.000000', '412.000000', '5.336300', '212800.000000']\n",
- "['-122.030000', '37.830000', '24.000000', '5948.000000', '738.000000', '1997.000000', '710.000000', '9.870800', '500001.000000']\n",
- "['-122.460000', '38.290000', '21.000000', '2423.000000', '560.000000', '1098.000000', '503.000000', '2.364000', '173300.000000']\n",
- "['-118.320000', '34.010000', '50.000000', '1842.000000', '377.000000', '817.000000', '341.000000', '3.154800', '157700.000000']\n",
- "['-118.020000', '33.950000', '35.000000', '2085.000000', '400.000000', '1112.000000', '391.000000', '3.488600', '173900.000000']\n",
- "['-118.310000', '34.190000', '13.000000', '3801.000000', '1116.000000', '1986.000000', '1078.000000', '2.087500', '222700.000000']\n",
- "['-117.800000', '34.100000', '13.000000', '2996.000000', '495.000000', '1187.000000', '464.000000', '6.245600', '161700.000000']\n",
- "['-118.460000', '34.260000', '33.000000', '1358.000000', '247.000000', '738.000000', '235.000000', '5.094700', '210300.000000']\n",
- "['-121.940000', '37.340000', '41.000000', '2151.000000', '473.000000', '1092.000000', '469.000000', '3.732100', '250000.000000']\n",
- "['-117.640000', '33.870000', '2.000000', '17470.000000', '2727.000000', '5964.000000', '1985.000000', '6.230800', '257900.000000']\n",
- "['-117.900000', '34.110000', '23.000000', '4776.000000', '1316.000000', '4797.000000', '1187.000000', '2.166700', '142600.000000']\n",
- "['-118.340000', '34.110000', '51.000000', '937.000000', '348.000000', '527.000000', '333.000000', '4.357100', '468800.000000']\n",
- "['-122.310000', '37.560000', '45.000000', '1685.000000', '321.000000', '815.000000', '314.000000', '4.295500', '309700.000000']\n",
- "['-118.360000', '34.210000', '41.000000', '337.000000', '65.000000', '198.000000', '50.000000', '1.892900', '152900.000000']\n",
- "['-122.450000', '37.710000', '45.000000', '2253.000000', '431.000000', '1382.000000', '392.000000', '4.256200', '221600.000000']\n",
- "['-118.680000', '34.130000', '9.000000', '11251.000000', '1594.000000', '3029.000000', '1227.000000', '6.727300', '500001.000000']\n",
- "['-119.640000', '36.850000', '15.000000', '2397.000000', '353.000000', '1258.000000', '347.000000', '4.990400', '157300.000000']\n",
- "['-122.160000', '37.760000', '45.000000', '2299.000000', '514.000000', '1437.000000', '484.000000', '2.512200', '95500.000000']\n",
- "['-117.990000', '33.670000', '19.000000', '3808.000000', '790.000000', '1776.000000', '756.000000', '4.625000', '282200.000000']\n",
- "['-121.830000', '37.400000', '27.000000', '1145.000000', '150.000000', '492.000000', '160.000000', '5.716000', '348300.000000']\n",
- "['-118.190000', '35.050000', '14.000000', '2992.000000', '573.000000', '1631.000000', '526.000000', '3.745200', '83200.000000']\n",
- "['-118.030000', '33.770000', '24.000000', '3810.000000', '579.000000', '1818.000000', '590.000000', '5.805300', '255900.000000']\n",
- "['-122.260000', '37.820000', '22.000000', '3682.000000', '1270.000000', '2024.000000', '1250.000000', '1.218500', '170000.000000']\n",
- "['-118.370000', '33.930000', '46.000000', '442.000000', '88.000000', '255.000000', '94.000000', '4.447400', '246900.000000']\n",
- "['-118.220000', '34.050000', '43.000000', '1153.000000', '411.000000', '1667.000000', '409.000000', '1.940200', '139300.000000']\n",
- "['-122.490000', '37.680000', '34.000000', '3718.000000', '676.000000', '2510.000000', '632.000000', '5.331100', '270800.000000']\n",
- "['-116.510000', '33.840000', '16.000000', '980.000000', '193.000000', '454.000000', '185.000000', '4.072900', '100000.000000']\n",
- "['-121.880000', '37.660000', '29.000000', '2702.000000', '680.000000', '1360.000000', '642.000000', '3.112700', '233000.000000']\n",
- "['-122.440000', '37.800000', '52.000000', '2869.000000', '594.000000', '500.000000', '335.000000', '5.037600', '500001.000000']\n",
- "['-121.340000', '38.050000', '16.000000', '667.000000', '92.000000', '267.000000', '90.000000', '5.614700', '244700.000000']\n",
- "['-117.870000', '33.840000', '16.000000', '1545.000000', '354.000000', '730.000000', '350.000000', '4.511200', '139000.000000']\n",
- "['-122.280000', '37.890000', '52.000000', '2315.000000', '408.000000', '835.000000', '369.000000', '4.589300', '290100.000000']\n",
- "['-121.830000', '37.990000', '18.000000', '2741.000000', '449.000000', '1507.000000', '460.000000', '4.756600', '142500.000000']\n",
- "['-119.530000', '36.650000', '43.000000', '1676.000000', '320.000000', '1056.000000', '276.000000', '2.556200', '93200.000000']\n",
- "['-117.390000', '34.090000', '10.000000', '5736.000000', '945.000000', '3528.000000', '932.000000', '4.395800', '130700.000000']\n",
- "['-118.230000', '33.900000', '45.000000', '1285.000000', '238.000000', '840.000000', '211.000000', '3.410700', '112500.000000']\n",
- "['-121.320000', '38.670000', '21.000000', '3455.000000', '706.000000', '1605.000000', '704.000000', '3.138200', '91600.000000']\n",
- "['-118.330000', '34.050000', '46.000000', '3015.000000', '795.000000', '2300.000000', '725.000000', '2.070600', '268500.000000']\n",
- "['-122.210000', '37.840000', '44.000000', '3424.000000', '597.000000', '1358.000000', '597.000000', '6.019400', '292300.000000']\n",
- "['-117.900000', '34.530000', '8.000000', '3484.000000', '647.000000', '2169.000000', '619.000000', '3.976600', '135800.000000']\n",
- "['-122.470000', '37.510000', '15.000000', '4974.000000', '764.000000', '2222.000000', '774.000000', '6.760600', '364300.000000']\n",
- "['-118.020000', '33.770000', '7.000000', '586.000000', '118.000000', '232.000000', '107.000000', '5.207700', '181300.000000']\n",
- "['-119.730000', '34.430000', '35.000000', '2703.000000', '654.000000', '1383.000000', '631.000000', '4.527800', '340400.000000']\n",
- "['-120.680000', '35.140000', '34.000000', '3100.000000', '617.000000', '1155.000000', '542.000000', '3.093800', '245900.000000']\n",
- "['-122.470000', '38.290000', '14.000000', '3732.000000', '846.000000', '1277.000000', '775.000000', '2.565800', '208000.000000']\n",
- "['-121.900000', '37.350000', '52.000000', '1034.000000', '239.000000', '531.000000', '223.000000', '2.741100', '227100.000000']\n",
- "['-121.870000', '37.260000', '17.000000', '1051.000000', '172.000000', '446.000000', '173.000000', '5.665200', '234500.000000']\n",
- "['-117.970000', '33.890000', '15.000000', '3801.000000', '542.000000', '1992.000000', '526.000000', '9.068300', '367400.000000']\n",
- "['-116.870000', '33.910000', '37.000000', '1858.000000', '361.000000', '1632.000000', '310.000000', '2.753600', '73100.000000']\n",
- "['-122.150000', '37.470000', '38.000000', '1560.000000', '301.000000', '1331.000000', '316.000000', '3.052100', '151500.000000']\n",
- "['-118.310000', '34.010000', '52.000000', '2547.000000', '475.000000', '1417.000000', '444.000000', '1.821400', '123200.000000']\n",
- "['-118.440000', '34.040000', '49.000000', '32.000000', '7.000000', '14.000000', '7.000000', '2.187500', '225000.000000']\n",
- "['-118.010000', '33.850000', '29.000000', '2064.000000', '447.000000', '1265.000000', '400.000000', '3.886400', '209300.000000']\n",
- "['-122.270000', '41.200000', '52.000000', '4513.000000', '985.000000', '1926.000000', '815.000000', '1.592300', '56000.000000']\n",
- "['-122.320000', '37.560000', '49.000000', '2016.000000', '299.000000', '691.000000', '288.000000', '5.549000', '500001.000000']\n",
- "['-119.770000', '36.720000', '43.000000', '1763.000000', '389.000000', '1623.000000', '390.000000', '1.442700', '47700.000000']\n",
- "['-122.140000', '37.840000', '24.000000', '2131.000000', '343.000000', '874.000000', '373.000000', '5.634900', '355600.000000']\n",
- "['-118.340000', '34.090000', '14.000000', '3032.000000', '999.000000', '1691.000000', '841.000000', '2.200000', '210000.000000']\n",
- "['-117.610000', '34.340000', '18.000000', '5210.000000', '912.000000', '1301.000000', '464.000000', '4.862300', '176900.000000']\n",
- "['-118.230000', '33.760000', '21.000000', '49.000000', '14.000000', '29.000000', '16.000000', '5.000000', '87500.000000']\n",
- "['-117.890000', '33.770000', '32.000000', '2342.000000', '570.000000', '1445.000000', '453.000000', '4.195100', '195000.000000']\n",
- "['-118.260000', '33.910000', '39.000000', '967.000000', '256.000000', '903.000000', '256.000000', '1.903800', '93100.000000']\n",
- "['-118.400000', '33.990000', '39.000000', '1613.000000', '380.000000', '1113.000000', '356.000000', '2.825000', '276700.000000']\n",
- "['-117.140000', '32.920000', '15.000000', '1558.000000', '314.000000', '949.000000', '332.000000', '5.286400', '174400.000000']\n",
- "['-118.150000', '33.770000', '52.000000', '2204.000000', '498.000000', '899.000000', '445.000000', '4.176500', '393900.000000']\n",
- "['-118.590000', '34.210000', '17.000000', '2737.000000', '868.000000', '2924.000000', '785.000000', '2.579700', '183500.000000']\n",
- "['-121.370000', '36.830000', '14.000000', '3658.000000', '612.000000', '1951.000000', '600.000000', '4.760000', '216000.000000']\n",
- "['-120.480000', '35.020000', '17.000000', '2721.000000', '477.000000', '1672.000000', '492.000000', '2.979800', '204800.000000']\n",
- "['-118.440000', '34.210000', '41.000000', '1440.000000', '325.000000', '1014.000000', '322.000000', '2.875000', '168600.000000']\n",
- "['-122.320000', '38.330000', '17.000000', '851.000000', '118.000000', '370.000000', '123.000000', '5.087700', '209300.000000']\n",
- "['-121.870000', '37.280000', '21.000000', '3305.000000', '749.000000', '2459.000000', '701.000000', '3.968800', '249600.000000']\n",
- "['-117.100000', '33.070000', '16.000000', '2402.000000', '336.000000', '1080.000000', '365.000000', '8.680300', '347300.000000']\n",
- "['-118.030000', '33.760000', '25.000000', '4650.000000', '849.000000', '2503.000000', '790.000000', '5.742000', '221900.000000']\n",
- "['-122.400000', '37.730000', '48.000000', '1489.000000', '326.000000', '1115.000000', '356.000000', '2.636400', '199300.000000']\n",
- "['-118.340000', '34.120000', '41.000000', '3257.000000', '679.000000', '1237.000000', '638.000000', '4.241500', '409600.000000']\n",
- "['-121.040000', '39.240000', '48.000000', '1188.000000', '227.000000', '471.000000', '219.000000', '2.312500', '125700.000000']\n",
- "['-117.970000', '33.910000', '19.000000', '8096.000000', '1318.000000', '3853.000000', '1313.000000', '6.007600', '269500.000000']\n",
- "['-117.100000', '32.680000', '45.000000', '1183.000000', '289.000000', '900.000000', '266.000000', '2.494300', '99600.000000']\n",
- "['-116.610000', '33.930000', '35.000000', '321.000000', '71.000000', '157.000000', '61.000000', '2.805600', '68100.000000']\n",
- "['-118.390000', '34.080000', '27.000000', '6605.000000', '1710.000000', '2665.000000', '1520.000000', '3.808800', '500001.000000']\n",
- "['-121.230000', '38.650000', '19.000000', '2926.000000', '476.000000', '1349.000000', '480.000000', '4.643700', '212900.000000']\n",
- "['-122.200000', '37.790000', '29.000000', '1640.000000', '376.000000', '939.000000', '340.000000', '2.832100', '150000.000000']\n",
- "['-117.180000', '32.830000', '23.000000', '2105.000000', '525.000000', '1218.000000', '484.000000', '3.375000', '184100.000000']\n",
- "['-118.080000', '33.770000', '26.000000', '2461.000000', '562.000000', '971.000000', '544.000000', '2.194400', '87500.000000']\n",
- "['-120.450000', '34.660000', '7.000000', '3329.000000', '504.000000', '1462.000000', '452.000000', '4.787500', '198300.000000']\n",
- "['-117.820000', '33.680000', '4.000000', '1346.000000', '213.000000', '603.000000', '219.000000', '8.797400', '360600.000000']\n",
- "['-121.920000', '36.610000', '27.000000', '1619.000000', '352.000000', '831.000000', '344.000000', '4.300000', '226400.000000']\n",
- "['-122.010000', '37.530000', '19.000000', '4572.000000', '712.000000', '2346.000000', '709.000000', '6.066700', '245700.000000']\n",
- "['-118.270000', '33.950000', '34.000000', '987.000000', '248.000000', '902.000000', '221.000000', '2.336500', '98000.000000']\n",
- "['-119.960000', '38.940000', '27.000000', '1492.000000', '393.000000', '717.000000', '254.000000', '1.890600', '104200.000000']\n",
- "['-121.420000', '36.570000', '13.000000', '2685.000000', '621.000000', '2474.000000', '573.000000', '2.877500', '134100.000000']\n",
- "['-120.960000', '37.660000', '15.000000', '2485.000000', '434.000000', '1296.000000', '434.000000', '3.854200', '145200.000000']\n",
- "['-118.650000', '34.200000', '23.000000', '7480.000000', '1084.000000', '3037.000000', '1058.000000', '6.922300', '338400.000000']\n",
- "['-122.310000', '38.000000', '29.000000', '3108.000000', '534.000000', '1687.000000', '516.000000', '4.333300', '170800.000000']\n",
- "['-118.350000', '34.070000', '48.000000', '890.000000', '255.000000', '434.000000', '232.000000', '3.611100', '450000.000000']\n",
- "['-118.190000', '33.790000', '29.000000', '3497.000000', '1096.000000', '2994.000000', '919.000000', '1.810900', '137500.000000']\n",
- "['-122.140000', '37.410000', '35.000000', '2419.000000', '426.000000', '949.000000', '433.000000', '6.458800', '437100.000000']\n",
- "['-119.810000', '36.710000', '25.000000', '1026.000000', '221.000000', '789.000000', '183.000000', '1.562500', '52800.000000']\n",
- "['-117.180000', '32.680000', '29.000000', '1539.000000', '344.000000', '556.000000', '289.000000', '3.250000', '500001.000000']\n",
- "['-117.770000', '34.080000', '27.000000', '5929.000000', '932.000000', '2817.000000', '828.000000', '6.043400', '214800.000000']\n",
- "['-118.110000', '33.860000', '33.000000', '2389.000000', '410.000000', '1229.000000', '393.000000', '5.388900', '234900.000000']\n",
- "['-118.280000', '34.090000', '52.000000', '1739.000000', '464.000000', '938.000000', '482.000000', '2.442900', '228800.000000']\n",
- "['-117.930000', '34.040000', '30.000000', '1336.000000', '239.000000', '905.000000', '253.000000', '4.885400', '178100.000000']\n",
- "['-117.050000', '32.760000', '37.000000', '4879.000000', '906.000000', '2076.000000', '871.000000', '3.662500', '154800.000000']\n",
- "['-118.250000', '33.870000', '18.000000', '6812.000000', '1263.000000', '3704.000000', '1216.000000', '4.250000', '169200.000000']\n",
- "['-122.410000', '37.780000', '52.000000', '254.000000', '72.000000', '153.000000', '29.000000', '3.862500', '350000.000000']\n",
- "['-119.720000', '34.470000', '34.000000', '3262.000000', '533.000000', '1265.000000', '502.000000', '5.841100', '381800.000000']\n",
- "['-118.120000', '34.150000', '22.000000', '1671.000000', '480.000000', '1005.000000', '443.000000', '3.011900', '171400.000000']\n",
- "['-122.210000', '37.830000', '40.000000', '4991.000000', '674.000000', '1616.000000', '654.000000', '7.554400', '411500.000000']\n",
- "['-119.380000', '36.560000', '14.000000', '3965.000000', '804.000000', '1945.000000', '733.000000', '2.690600', '95300.000000']\n",
- "['-118.380000', '34.280000', '22.000000', '4428.000000', '825.000000', '3152.000000', '836.000000', '4.793200', '166300.000000']\n",
- "['-117.340000', '34.120000', '26.000000', '1008.000000', '164.000000', '568.000000', '196.000000', '3.351600', '105600.000000']\n",
- "['-122.060000', '37.390000', '22.000000', '1236.000000', '290.000000', '413.000000', '274.000000', '3.687500', '40000.000000']\n",
- "['-118.460000', '34.070000', '49.000000', '2418.000000', '301.000000', '850.000000', '318.000000', '14.286700', '500001.000000']\n",
- "['-117.900000', '34.150000', '21.000000', '2056.000000', '461.000000', '1332.000000', '429.000000', '3.394200', '212800.000000']\n",
- "['-123.470000', '39.800000', '18.000000', '2130.000000', '545.000000', '863.000000', '346.000000', '2.357100', '79200.000000']\n",
- "['-121.910000', '37.250000', '31.000000', '1944.000000', '343.000000', '975.000000', '334.000000', '4.920500', '240500.000000']\n",
- "['-122.320000', '38.320000', '22.000000', '2483.000000', '528.000000', '1478.000000', '492.000000', '4.087800', '164400.000000']\n",
- "['-118.140000', '33.880000', '30.000000', '2596.000000', '580.000000', '1662.000000', '539.000000', '4.050700', '179500.000000']\n",
- "['-117.820000', '33.810000', '25.000000', '2662.000000', '402.000000', '1247.000000', '401.000000', '5.439500', '244000.000000']\n",
- "['-118.270000', '34.070000', '38.000000', '1270.000000', '556.000000', '1692.000000', '450.000000', '1.870000', '170800.000000']\n",
- "['-117.440000', '33.950000', '31.000000', '914.000000', '177.000000', '556.000000', '161.000000', '3.734400', '115300.000000']\n",
- "['-118.100000', '34.070000', '36.000000', '1240.000000', '349.000000', '1383.000000', '338.000000', '2.493100', '170300.000000']\n",
- "['-121.830000', '37.370000', '43.000000', '1461.000000', '284.000000', '800.000000', '258.000000', '3.227900', '182400.000000']\n",
- "['-120.900000', '35.330000', '16.000000', '1576.000000', '287.000000', '595.000000', '262.000000', '3.588000', '266300.000000']\n",
- "['-121.750000', '36.920000', '48.000000', '1801.000000', '353.000000', '1071.000000', '361.000000', '3.600000', '194500.000000']\n",
- "['-117.910000', '33.650000', '24.000000', '885.000000', '321.000000', '590.000000', '254.000000', '2.625000', '217900.000000']\n",
- "['-117.200000', '32.800000', '33.000000', '2573.000000', '436.000000', '1084.000000', '443.000000', '4.241700', '294100.000000']\n",
- "['-118.230000', '34.180000', '43.000000', '1708.000000', '280.000000', '768.000000', '276.000000', '6.207000', '457400.000000']\n",
- "['-118.320000', '33.930000', '34.000000', '1536.000000', '273.000000', '804.000000', '287.000000', '4.961500', '157800.000000']\n",
- "['-117.760000', '34.120000', '16.000000', '9020.000000', '1509.000000', '3575.000000', '1486.000000', '4.241500', '275700.000000']\n",
- "['-118.450000', '34.230000', '25.000000', '4393.000000', '1369.000000', '3781.000000', '1267.000000', '2.583300', '183700.000000']\n",
- "['-122.450000', '41.280000', '15.000000', '2740.000000', '503.000000', '1188.000000', '445.000000', '3.451900', '128800.000000']\n",
- "['-118.330000', '34.010000', '43.000000', '2227.000000', '564.000000', '956.000000', '472.000000', '2.021700', '187500.000000']\n",
- "['-124.160000', '40.790000', '46.000000', '3042.000000', '597.000000', '1206.000000', '541.000000', '2.113500', '90600.000000']\n",
- "['-118.140000', '34.060000', '37.000000', '1339.000000', '258.000000', '706.000000', '238.000000', '4.756900', '253800.000000']\n",
- "['-121.140000', '38.770000', '15.000000', '10282.000000', '1333.000000', '3868.000000', '1300.000000', '6.478900', '287800.000000']\n",
- "['-117.750000', '33.830000', '14.000000', '2452.000000', '296.000000', '954.000000', '275.000000', '8.237500', '388300.000000']\n",
- "['-122.120000', '37.690000', '30.000000', '1197.000000', '269.000000', '695.000000', '279.000000', '3.437500', '157800.000000']\n",
- "['-117.790000', '34.070000', '33.000000', '1694.000000', '333.000000', '1689.000000', '301.000000', '3.758300', '116300.000000']\n",
- "['-118.410000', '34.090000', '37.000000', '2716.000000', '302.000000', '809.000000', '291.000000', '15.000100', '500001.000000']\n",
- "['-118.530000', '34.440000', '19.000000', '1285.000000', '195.000000', '650.000000', '193.000000', '6.039800', '217800.000000']\n",
- "['-120.780000', '38.740000', '28.000000', '4236.000000', '877.000000', '2008.000000', '881.000000', '2.160300', '111300.000000']\n",
- "['-122.350000', '37.580000', '26.000000', '854.000000', '246.000000', '396.000000', '231.000000', '2.839300', '375000.000000']\n",
- "['-119.720000', '36.820000', '15.000000', '946.000000', '239.000000', '550.000000', '246.000000', '2.263900', '52500.000000']\n",
- "['-118.140000', '34.010000', '42.000000', '1973.000000', '510.000000', '1841.000000', '502.000000', '2.532600', '156500.000000']\n",
- "['-117.120000', '32.750000', '25.000000', '2222.000000', '634.000000', '1025.000000', '568.000000', '1.640000', '130000.000000']\n",
- "['-117.900000', '34.130000', '37.000000', '1801.000000', '422.000000', '1564.000000', '425.000000', '3.159700', '133000.000000']\n",
- "['-117.390000', '33.690000', '5.000000', '6529.000000', '997.000000', '3464.000000', '1006.000000', '5.327500', '168700.000000']\n",
- "['-122.450000', '40.610000', '17.000000', '785.000000', '155.000000', '417.000000', '136.000000', '2.328900', '58200.000000']\n",
- "['-117.120000', '34.210000', '19.000000', '4641.000000', '994.000000', '1334.000000', '474.000000', '4.597200', '123900.000000']\n",
- "['-122.760000', '38.460000', '14.000000', '4742.000000', '756.000000', '2149.000000', '732.000000', '4.515200', '199200.000000']\n",
- "['-118.190000', '34.120000', '46.000000', '3387.000000', '820.000000', '2833.000000', '813.000000', '2.987000', '176900.000000']\n",
- "['-118.310000', '34.060000', '36.000000', '369.000000', '147.000000', '145.000000', '136.000000', '0.880400', '450000.000000']\n",
- "['-122.340000', '37.950000', '45.000000', '1128.000000', '240.000000', '702.000000', '270.000000', '3.671900', '134100.000000']\n",
- "['-118.220000', '34.660000', '17.000000', '3810.000000', '662.000000', '1867.000000', '586.000000', '4.900000', '152400.000000']\n",
- "['-118.290000', '34.050000', '40.000000', '907.000000', '349.000000', '1426.000000', '323.000000', '1.857100', '143800.000000']\n",
- "['-117.960000', '33.870000', '37.000000', '1785.000000', '360.000000', '1155.000000', '403.000000', '4.798400', '175800.000000']\n",
- "['-119.570000', '34.380000', '22.000000', '2512.000000', '426.000000', '919.000000', '341.000000', '5.759000', '425000.000000']\n",
- "['-118.280000', '33.750000', '41.000000', '1305.000000', '381.000000', '1384.000000', '369.000000', '2.450000', '186800.000000']\n",
- "['-121.890000', '38.010000', '32.000000', '1000.000000', '188.000000', '663.000000', '212.000000', '4.097200', '99200.000000']\n",
- "['-118.130000', '34.160000', '52.000000', '1872.000000', '357.000000', '984.000000', '364.000000', '4.000000', '250400.000000']\n",
- "['-118.040000', '34.180000', '37.000000', '3134.000000', '532.000000', '1220.000000', '508.000000', '5.286500', '455400.000000']\n",
- "['-123.220000', '39.160000', '32.000000', '1149.000000', '187.000000', '499.000000', '208.000000', '3.658700', '154600.000000']\n",
- "['-120.690000', '38.440000', '13.000000', '1473.000000', '265.000000', '597.000000', '228.000000', '4.291700', '121300.000000']\n",
- "['-118.040000', '33.800000', '33.000000', '2685.000000', '466.000000', '1359.000000', '476.000000', '5.026100', '245100.000000']\n",
- "['-119.800000', '36.730000', '45.000000', '925.000000', '231.000000', '797.000000', '228.000000', '1.701100', '44800.000000']\n",
- "['-117.490000', '33.910000', '17.000000', '5364.000000', '1020.000000', '3754.000000', '936.000000', '3.285700', '139100.000000']\n",
- "['-118.340000', '34.010000', '37.000000', '4291.000000', '1102.000000', '1941.000000', '953.000000', '1.794500', '106300.000000']\n",
- "['-118.370000', '34.190000', '41.000000', '2924.000000', '867.000000', '2751.000000', '836.000000', '2.100000', '171600.000000']\n",
- "['-117.270000', '34.450000', '8.000000', '6463.000000', '1095.000000', '3213.000000', '1031.000000', '3.221500', '108800.000000']\n",
- "['-120.450000', '34.870000', '4.000000', '1533.000000', '221.000000', '545.000000', '191.000000', '7.569600', '328700.000000']\n",
- "['-122.320000', '37.520000', '26.000000', '4042.000000', '591.000000', '1611.000000', '578.000000', '8.469300', '419200.000000']\n",
- "['-121.420000', '38.490000', '17.000000', '13180.000000', '2444.000000', '7235.000000', '2335.000000', '3.363000', '103000.000000']\n",
- "['-115.570000', '32.780000', '29.000000', '2321.000000', '367.000000', '1173.000000', '360.000000', '4.037500', '86400.000000']\n",
- "['-118.470000', '33.990000', '52.000000', '2167.000000', '622.000000', '1095.000000', '570.000000', '2.851400', '358700.000000']\n",
- "['-118.270000', '33.960000', '42.000000', '796.000000', '203.000000', '697.000000', '177.000000', '2.037000', '92600.000000']\n",
- "['-118.050000', '33.900000', '41.000000', '550.000000', '129.000000', '642.000000', '125.000000', '1.875000', '119900.000000']\n",
- "['-118.960000', '35.400000', '28.000000', '4667.000000', '875.000000', '2404.000000', '841.000000', '3.232500', '89000.000000']\n",
- "['-117.130000', '32.980000', '5.000000', '2276.000000', '311.000000', '1158.000000', '317.000000', '6.432100', '271900.000000']\n",
- "['-122.040000', '37.610000', '36.000000', '1151.000000', '216.000000', '727.000000', '215.000000', '4.171900', '187000.000000']\n",
- "['-116.580000', '33.090000', '36.000000', '992.000000', '224.000000', '334.000000', '126.000000', '3.008900', '134400.000000']\n",
- "['-121.980000', '38.250000', '4.000000', '2487.000000', '440.000000', '1545.000000', '452.000000', '4.910300', '140400.000000']\n",
- "['-122.300000', '37.920000', '32.000000', '3943.000000', '605.000000', '1524.000000', '614.000000', '6.067700', '321600.000000']\n",
- "['-121.570000', '39.480000', '15.000000', '202.000000', '54.000000', '145.000000', '40.000000', '0.825200', '42500.000000']\n",
- "['-118.090000', '33.920000', '36.000000', '847.000000', '185.000000', '713.000000', '194.000000', '4.854200', '167400.000000']\n",
- "['-117.710000', '33.610000', '25.000000', '3004.000000', '718.000000', '891.000000', '626.000000', '2.395000', '80300.000000']\n",
- "['-118.210000', '33.900000', '41.000000', '941.000000', '233.000000', '973.000000', '253.000000', '1.958300', '102300.000000']\n",
- "['-118.290000', '34.170000', '52.000000', '1732.000000', '305.000000', '875.000000', '311.000000', '4.325000', '292600.000000']\n",
- "['-118.950000', '35.400000', '23.000000', '4483.000000', '894.000000', '2136.000000', '883.000000', '3.687500', '101700.000000']\n",
- "['-117.410000', '34.230000', '17.000000', '889.000000', '131.000000', '439.000000', '141.000000', '6.142600', '155000.000000']\n",
- "['-121.920000', '36.570000', '42.000000', '3944.000000', '738.000000', '1374.000000', '598.000000', '4.174000', '394400.000000']\n",
- "['-121.640000', '39.150000', '15.000000', '2659.000000', '396.000000', '1159.000000', '407.000000', '5.234000', '124900.000000']\n",
- "['-120.920000', '37.630000', '39.000000', '45.000000', '8.000000', '22.000000', '9.000000', '1.767900', '450000.000000']\n",
- "['-122.270000', '37.840000', '52.000000', '1688.000000', '337.000000', '853.000000', '325.000000', '2.180600', '99700.000000']\n",
- "['-118.270000', '34.100000', '51.000000', '3149.000000', '519.000000', '1082.000000', '510.000000', '6.445900', '421600.000000']\n",
- "['-121.810000', '37.240000', '21.000000', '3250.000000', '610.000000', '1978.000000', '568.000000', '4.500000', '234400.000000']\n",
- "['-114.620000', '33.620000', '26.000000', '18.000000', '3.000000', '5.000000', '3.000000', '0.536000', '275000.000000']\n",
- "['-118.090000', '34.710000', '5.000000', '5807.000000', '1182.000000', '2602.000000', '1007.000000', '2.401200', '159400.000000']\n",
- "['-118.200000', '34.020000', '48.000000', '2230.000000', '593.000000', '2419.000000', '598.000000', '2.394400', '130700.000000']\n",
- "['-119.620000', '36.590000', '17.000000', '2287.000000', '390.000000', '1330.000000', '393.000000', '4.019700', '88000.000000']\n",
- "['-118.410000', '34.190000', '42.000000', '779.000000', '145.000000', '450.000000', '148.000000', '3.979200', '193800.000000']\n",
- "['-118.300000', '33.980000', '48.000000', '1998.000000', '410.000000', '1176.000000', '382.000000', '3.045500', '102400.000000']\n",
- "['-117.330000', '34.120000', '38.000000', '1703.000000', '385.000000', '1356.000000', '363.000000', '2.039100', '70400.000000']\n",
- "['-118.500000', '34.020000', '28.000000', '5109.000000', '1482.000000', '2313.000000', '1451.000000', '3.326600', '483300.000000']\n",
- "['-118.070000', '33.920000', '36.000000', '1560.000000', '320.000000', '1348.000000', '314.000000', '3.622000', '174000.000000']\n",
- "['-117.130000', '32.580000', '27.000000', '2511.000000', '615.000000', '1427.000000', '576.000000', '3.164500', '156000.000000']\n",
- "['-117.270000', '34.490000', '7.000000', '2344.000000', '351.000000', '846.000000', '314.000000', '4.736100', '174500.000000']\n",
- "['-121.450000', '38.600000', '44.000000', '2324.000000', '413.000000', '823.000000', '375.000000', '4.662500', '158900.000000']\n",
- "['-121.980000', '37.220000', '46.000000', '10088.000000', '1910.000000', '3728.000000', '1781.000000', '5.232100', '500001.000000']\n",
- "['-120.310000', '36.650000', '24.000000', '943.000000', '209.000000', '514.000000', '156.000000', '2.250000', '76600.000000']\n",
- "['-117.950000', '33.840000', '32.000000', '1378.000000', '492.000000', '1202.000000', '448.000000', '3.402800', '183700.000000']\n",
- "['-119.700000', '36.800000', '34.000000', '1768.000000', '303.000000', '888.000000', '314.000000', '3.808800', '87700.000000']\n",
- "['-121.880000', '37.430000', '17.000000', '3469.000000', '896.000000', '2762.000000', '808.000000', '3.388400', '245800.000000']\n",
- "['-118.430000', '34.260000', '37.000000', '1269.000000', '348.000000', '1835.000000', '335.000000', '3.258300', '147200.000000']\n",
- "['-121.890000', '37.350000', '48.000000', '1562.000000', '439.000000', '1469.000000', '424.000000', '2.567300', '177500.000000']\n",
- "['-121.330000', '38.040000', '15.000000', '2903.000000', '440.000000', '1325.000000', '423.000000', '4.517900', '145600.000000']\n",
- "['-123.730000', '39.170000', '20.000000', '4620.000000', '1042.000000', '1745.000000', '794.000000', '2.375000', '158800.000000']\n",
- "['-118.040000', '33.970000', '34.000000', '1759.000000', '431.000000', '1282.000000', '391.000000', '3.049100', '158200.000000']\n",
- "['-118.150000', '34.190000', '48.000000', '1854.000000', '360.000000', '1126.000000', '382.000000', '3.221600', '161600.000000']\n",
- "['-118.110000', '34.020000', '17.000000', '9559.000000', '1911.000000', '5279.000000', '1844.000000', '5.151500', '318900.000000']\n",
- "['-121.200000', '38.670000', '10.000000', '3875.000000', '668.000000', '1632.000000', '593.000000', '4.690200', '171000.000000']\n",
- "['-118.390000', '34.120000', '29.000000', '6447.000000', '1012.000000', '2184.000000', '960.000000', '8.281600', '500001.000000']\n",
- "['-118.370000', '34.060000', '52.000000', '2239.000000', '423.000000', '832.000000', '411.000000', '5.085800', '470000.000000']\n",
- "['-118.520000', '34.200000', '35.000000', '2891.000000', '594.000000', '1757.000000', '581.000000', '4.357100', '199800.000000']\n",
- "['-118.370000', '33.950000', '52.000000', '836.000000', '175.000000', '747.000000', '166.000000', '4.125000', '174000.000000']\n",
- "['-121.340000', '37.980000', '8.000000', '2628.000000', '428.000000', '1158.000000', '393.000000', '5.300200', '191700.000000']\n",
- "['-119.320000', '36.190000', '11.000000', '3136.000000', '620.000000', '2013.000000', '583.000000', '3.335000', '69700.000000']\n",
- "['-117.840000', '34.040000', '4.000000', '9959.000000', '1544.000000', '4904.000000', '1429.000000', '6.975400', '402500.000000']\n",
- "['-118.230000', '34.150000', '19.000000', '2294.000000', '716.000000', '1686.000000', '680.000000', '3.028800', '258300.000000']\n",
- "['-115.520000', '32.980000', '21.000000', '1302.000000', '327.000000', '1244.000000', '316.000000', '2.205400', '66400.000000']\n",
- "['-117.790000', '34.070000', '34.000000', '975.000000', '192.000000', '870.000000', '183.000000', '3.793300', '116100.000000']\n",
- "['-115.590000', '32.960000', '17.000000', '841.000000', '146.000000', '473.000000', '154.000000', '3.197900', '113500.000000']\n",
- "['-121.830000', '37.300000', '17.000000', '1299.000000', '211.000000', '825.000000', '217.000000', '4.500000', '235800.000000']\n",
- "['-117.270000', '34.500000', '8.000000', '3567.000000', '543.000000', '1133.000000', '419.000000', '5.373300', '302600.000000']\n",
- "['-118.040000', '33.930000', '35.000000', '1805.000000', '387.000000', '1505.000000', '366.000000', '4.166700', '151900.000000']\n",
- "['-122.090000', '37.950000', '32.000000', '1339.000000', '209.000000', '601.000000', '209.000000', '6.026500', '247900.000000']\n",
- "['-122.230000', '37.750000', '50.000000', '1542.000000', '289.000000', '654.000000', '268.000000', '3.963200', '240000.000000']\n",
- "['-117.880000', '33.720000', '38.000000', '1421.000000', '300.000000', '1236.000000', '263.000000', '3.984400', '165300.000000']\n",
- "['-122.420000', '37.750000', '52.000000', '2164.000000', '533.000000', '1122.000000', '469.000000', '3.263200', '306000.000000']\n",
- "['-118.050000', '34.140000', '39.000000', '2125.000000', '295.000000', '862.000000', '303.000000', '8.972800', '500001.000000']\n",
- "['-118.060000', '34.110000', '36.000000', '2178.000000', '485.000000', '914.000000', '412.000000', '2.765600', '239500.000000']\n",
- "['-118.150000', '33.870000', '33.000000', '2373.000000', '552.000000', '1673.000000', '571.000000', '3.068500', '181800.000000']\n",
- "['-117.250000', '32.760000', '38.000000', '2331.000000', '493.000000', '836.000000', '433.000000', '4.912500', '452600.000000']\n",
- "['-117.860000', '33.740000', '34.000000', '2254.000000', '630.000000', '2984.000000', '625.000000', '2.500000', '162500.000000']\n",
- "['-122.530000', '39.090000', '11.000000', '1264.000000', '271.000000', '370.000000', '177.000000', '1.300000', '69700.000000']\n",
- "['-117.970000', '33.680000', '23.000000', '1722.000000', '316.000000', '865.000000', '309.000000', '4.645200', '273800.000000']\n",
- "['-118.060000', '34.030000', '36.000000', '21.000000', '7.000000', '21.000000', '9.000000', '2.375000', '175000.000000']\n",
- "['-117.820000', '33.740000', '25.000000', '2720.000000', '680.000000', '1559.000000', '631.000000', '3.095800', '137800.000000']\n",
- "['-121.800000', '37.700000', '22.000000', '5533.000000', '943.000000', '2474.000000', '910.000000', '4.736100', '216800.000000']\n",
- "['-121.730000', '36.850000', '22.000000', '1304.000000', '278.000000', '887.000000', '227.000000', '3.660700', '206300.000000']\n",
- "['-118.320000', '33.860000', '34.000000', '495.000000', '90.000000', '269.000000', '93.000000', '6.439100', '252300.000000']\n",
- "['-118.280000', '34.040000', '24.000000', '1283.000000', '545.000000', '1932.000000', '516.000000', '1.296900', '160200.000000']\n",
- "['-117.030000', '32.950000', '19.000000', '4500.000000', '815.000000', '2456.000000', '782.000000', '4.503200', '168900.000000']\n",
- "['-117.870000', '33.830000', '27.000000', '2287.000000', '353.000000', '1140.000000', '351.000000', '5.616300', '231000.000000']\n",
- "['-122.090000', '37.650000', '35.000000', '1130.000000', '192.000000', '543.000000', '184.000000', '4.389700', '190600.000000']\n",
- "['-117.600000', '34.030000', '16.000000', '1499.000000', '232.000000', '918.000000', '239.000000', '5.567700', '175400.000000']\n",
- "['-121.460000', '38.610000', '43.000000', '1111.000000', '269.000000', '613.000000', '290.000000', '1.291700', '66300.000000']\n",
- "['-117.960000', '34.530000', '10.000000', '2907.000000', '559.000000', '1681.000000', '531.000000', '3.859400', '141000.000000']\n",
- "['-116.460000', '33.790000', '10.000000', '6960.000000', '1487.000000', '1130.000000', '661.000000', '2.141100', '136400.000000']\n",
- "['-118.540000', '34.370000', '27.000000', '2051.000000', '301.000000', '917.000000', '287.000000', '7.605900', '323700.000000']\n",
- "['-122.160000', '37.450000', '52.000000', '1135.000000', '219.000000', '441.000000', '200.000000', '7.541800', '492000.000000']\n",
- "['-117.710000', '34.060000', '27.000000', '2127.000000', '628.000000', '1970.000000', '534.000000', '1.472200', '91300.000000']\n",
- "['-118.290000', '34.030000', '42.000000', '907.000000', '378.000000', '822.000000', '288.000000', '1.287500', '179200.000000']\n",
- "['-118.180000', '33.900000', '32.000000', '1452.000000', '365.000000', '1888.000000', '366.000000', '3.546100', '146400.000000']\n",
- "['-121.360000', '38.690000', '13.000000', '6850.000000', '1400.000000', '4251.000000', '1421.000000', '3.698900', '93300.000000']\n",
- "['-122.370000', '40.520000', '18.000000', '4547.000000', '774.000000', '2269.000000', '766.000000', '3.789600', '98100.000000']\n",
- "['-122.410000', '37.710000', '49.000000', '1852.000000', '429.000000', '1615.000000', '447.000000', '3.495000', '217800.000000']\n",
- "['-118.530000', '34.240000', '24.000000', '2718.000000', '719.000000', '3018.000000', '644.000000', '2.907600', '275300.000000']\n",
- "['-121.880000', '37.670000', '16.000000', '4070.000000', '624.000000', '1543.000000', '577.000000', '6.521400', '311500.000000']\n",
- "['-120.090000', '37.000000', '11.000000', '3761.000000', '675.000000', '2374.000000', '673.000000', '3.459800', '74600.000000']\n",
- "['-117.100000', '32.750000', '17.000000', '871.000000', '379.000000', '955.000000', '351.000000', '1.437500', '96400.000000']\n",
- "['-119.640000', '36.350000', '30.000000', '1765.000000', '310.000000', '746.000000', '298.000000', '2.812500', '70200.000000']\n",
- "['-118.260000', '33.970000', '47.000000', '1504.000000', '374.000000', '1168.000000', '358.000000', '1.462500', '94200.000000']\n",
- "['-117.600000', '33.910000', '15.000000', '1864.000000', '271.000000', '1006.000000', '288.000000', '7.237900', '251000.000000']\n",
- "['-122.200000', '39.510000', '37.000000', '2358.000000', '413.000000', '1060.000000', '424.000000', '2.833300', '69700.000000']\n",
- "['-122.120000', '37.690000', '10.000000', '2227.000000', '560.000000', '1140.000000', '472.000000', '2.397300', '167300.000000']\n",
- "['-118.200000', '33.970000', '43.000000', '825.000000', '212.000000', '820.000000', '184.000000', '1.889700', '174300.000000']\n",
- "['-121.280000', '38.140000', '38.000000', '2803.000000', '500.000000', '1223.000000', '509.000000', '4.119000', '128800.000000']\n",
- "['-119.030000', '34.230000', '16.000000', '5323.000000', '795.000000', '2493.000000', '779.000000', '5.676200', '271300.000000']\n",
- "['-121.700000', '38.100000', '19.000000', '4896.000000', '1083.000000', '2150.000000', '905.000000', '3.339800', '89700.000000']\n",
- "['-117.960000', '33.830000', '30.000000', '2838.000000', '649.000000', '1758.000000', '593.000000', '3.383100', '197400.000000']\n",
- "['-120.700000', '36.990000', '32.000000', '320.000000', '73.000000', '222.000000', '78.000000', '2.927100', '87500.000000']\n",
- "['-122.390000', '37.740000', '45.000000', '1462.000000', '308.000000', '924.000000', '302.000000', '2.176700', '185300.000000']\n",
- "['-121.760000', '38.410000', '19.000000', '686.000000', '107.000000', '348.000000', '109.000000', '3.930600', '93800.000000']\n",
- "['-121.350000', '38.660000', '8.000000', '3322.000000', '805.000000', '1694.000000', '774.000000', '2.701100', '130700.000000']\n",
- "['-118.670000', '34.280000', '21.000000', '4059.000000', '598.000000', '2133.000000', '634.000000', '5.694900', '235300.000000']\n",
- "['-118.310000', '34.100000', '33.000000', '766.000000', '347.000000', '918.000000', '305.000000', '1.705000', '350000.000000']\n",
- "['-117.690000', '34.040000', '5.000000', '4459.000000', '896.000000', '2028.000000', '881.000000', '4.009600', '182600.000000']\n",
- "['-119.600000', '36.580000', '28.000000', '1452.000000', '300.000000', '919.000000', '308.000000', '2.828700', '73100.000000']\n",
- "['-121.760000', '36.750000', '21.000000', '1141.000000', '257.000000', '671.000000', '195.000000', '3.842400', '155700.000000']\n",
- "['-117.940000', '33.860000', '35.000000', '1235.000000', '227.000000', '875.000000', '220.000000', '4.696400', '183100.000000']\n",
- "['-120.860000', '37.770000', '28.000000', '1208.000000', '232.000000', '535.000000', '232.000000', '2.352300', '94700.000000']\n",
- "['-121.840000', '37.350000', '22.000000', '2914.000000', '768.000000', '2962.000000', '762.000000', '2.203100', '164000.000000']\n",
- "['-121.070000', '38.900000', '52.000000', '1280.000000', '281.000000', '523.000000', '266.000000', '1.737500', '122200.000000']\n",
- "['-118.450000', '33.960000', '24.000000', '3097.000000', '791.000000', '1075.000000', '639.000000', '5.723000', '500001.000000']\n",
- "['-118.290000', '34.180000', '52.000000', '1602.000000', '265.000000', '667.000000', '251.000000', '5.049000', '323500.000000']\n",
- "['-119.970000', '36.440000', '18.000000', '1128.000000', '237.000000', '772.000000', '220.000000', '2.177100', '39200.000000']\n",
- "['-121.930000', '38.310000', '25.000000', '185.000000', '32.000000', '85.000000', '32.000000', '4.875000', '250000.000000']\n",
- "['-118.200000', '33.930000', '38.000000', '1626.000000', '307.000000', '1280.000000', '295.000000', '3.531300', '146500.000000']\n",
- "['-122.180000', '38.230000', '21.000000', '2475.000000', '341.000000', '812.000000', '308.000000', '7.258900', '320400.000000']\n",
- "['-118.010000', '34.140000', '20.000000', '3350.000000', '831.000000', '1816.000000', '744.000000', '2.835200', '161700.000000']\n",
- "['-117.870000', '34.130000', '32.000000', '1741.000000', '373.000000', '872.000000', '333.000000', '3.421900', '194500.000000']\n",
- "['-118.530000', '34.270000', '32.000000', '1931.000000', '298.000000', '948.000000', '314.000000', '5.384700', '329200.000000']\n",
- "['-117.140000', '32.800000', '33.000000', '2670.000000', '435.000000', '1256.000000', '431.000000', '3.941700', '179800.000000']\n",
- "['-118.070000', '34.170000', '34.000000', '4062.000000', '597.000000', '1525.000000', '566.000000', '7.858800', '454800.000000']\n",
- "['-117.580000', '33.880000', '16.000000', '1739.000000', '478.000000', '1235.000000', '420.000000', '2.296900', '116100.000000']\n",
- "['-120.060000', '36.970000', '35.000000', '1859.000000', '428.000000', '1208.000000', '399.000000', '1.404400', '61700.000000']\n",
- "['-121.830000', '38.430000', '24.000000', '1307.000000', '314.000000', '917.000000', '291.000000', '2.224400', '98100.000000']\n",
- "['-122.480000', '37.720000', '45.000000', '1405.000000', '338.000000', '733.000000', '342.000000', '4.111600', '187500.000000']\n",
- "['-116.910000', '32.750000', '5.000000', '8710.000000', '1614.000000', '4372.000000', '1527.000000', '4.781300', '240900.000000']\n",
- "['-119.770000', '36.740000', '20.000000', '1855.000000', '519.000000', '1091.000000', '443.000000', '1.554700', '93900.000000']\n",
- "['-119.460000', '36.910000', '12.000000', '2980.000000', '495.000000', '1184.000000', '429.000000', '3.914100', '123900.000000']\n",
- "['-118.180000', '33.910000', '41.000000', '1260.000000', '299.000000', '1535.000000', '322.000000', '3.013400', '128100.000000']\n",
- "['-118.390000', '34.060000', '43.000000', '1879.000000', '397.000000', '873.000000', '382.000000', '3.815800', '500001.000000']\n",
- "['-118.220000', '33.990000', '4.000000', '1849.000000', '577.000000', '1529.000000', '418.000000', '2.770800', '186300.000000']\n",
- "['-116.990000', '33.200000', '17.000000', '2980.000000', '539.000000', '1531.000000', '505.000000', '3.155300', '250000.000000']\n",
- "['-117.160000', '32.730000', '52.000000', '1863.000000', '559.000000', '906.000000', '493.000000', '1.920300', '195800.000000']\n",
- "['-117.380000', '33.980000', '10.000000', '642.000000', '176.000000', '462.000000', '186.000000', '2.152800', '162500.000000']\n",
- "['-122.440000', '38.340000', '25.000000', '3106.000000', '715.000000', '1262.000000', '665.000000', '1.948700', '233500.000000']\n",
- "['-117.880000', '33.920000', '13.000000', '3292.000000', '727.000000', '1565.000000', '698.000000', '5.457000', '308800.000000']\n",
- "['-119.710000', '34.440000', '41.000000', '2220.000000', '367.000000', '927.000000', '355.000000', '5.318400', '376000.000000']\n",
- "['-119.060000', '34.370000', '32.000000', '3885.000000', '759.000000', '2504.000000', '736.000000', '3.645300', '201700.000000']\n",
- "['-121.910000', '37.310000', '16.000000', '2962.000000', '898.000000', '1555.000000', '795.000000', '2.580400', '216300.000000']\n",
- "['-121.560000', '37.000000', '20.000000', '3976.000000', '953.000000', '3866.000000', '950.000000', '2.538700', '160100.000000']\n",
- "['-122.490000', '38.000000', '26.000000', '48.000000', '8.000000', '19.000000', '8.000000', '7.719700', '400000.000000']\n",
- "['-118.330000', '34.020000', '45.000000', '1667.000000', '399.000000', '928.000000', '375.000000', '1.878300', '118200.000000']\n",
- "['-122.260000', '37.510000', '29.000000', '3703.000000', '1075.000000', '1611.000000', '1025.000000', '2.707500', '323800.000000']\n",
- "['-121.990000', '37.830000', '16.000000', '2939.000000', '380.000000', '1177.000000', '396.000000', '8.083900', '372000.000000']\n",
- "['-121.420000', '37.740000', '35.000000', '796.000000', '132.000000', '313.000000', '152.000000', '3.150000', '153200.000000']\n",
- "['-121.390000', '38.610000', '35.000000', '2024.000000', '359.000000', '786.000000', '364.000000', '2.463200', '156900.000000']\n",
- "['-122.420000', '37.620000', '36.000000', '1017.000000', '165.000000', '407.000000', '159.000000', '4.800000', '306800.000000']\n",
- "['-121.440000', '38.480000', '12.000000', '4929.000000', '1010.000000', '2621.000000', '870.000000', '2.726200', '109800.000000']\n",
- "['-117.480000', '33.980000', '20.000000', '2451.000000', '475.000000', '1785.000000', '456.000000', '3.396600', '115000.000000']\n",
- "['-122.050000', '37.380000', '24.000000', '2424.000000', '501.000000', '1367.000000', '507.000000', '4.072000', '364200.000000']\n",
- "['-123.920000', '41.540000', '22.000000', '2920.000000', '636.000000', '1382.000000', '499.000000', '2.020200', '71100.000000']\n",
- "['-119.010000', '35.400000', '11.000000', '8739.000000', '2190.000000', '4781.000000', '1919.000000', '1.710900', '44600.000000']\n",
- "['-122.330000', '37.570000', '43.000000', '2543.000000', '621.000000', '1301.000000', '606.000000', '3.111100', '318400.000000']\n",
- "['-120.990000', '37.610000', '39.000000', '512.000000', '132.000000', '443.000000', '127.000000', '1.285700', '60000.000000']\n",
- "['-121.960000', '37.580000', '15.000000', '3575.000000', '597.000000', '1777.000000', '559.000000', '5.719200', '283500.000000']\n",
- "['-121.580000', '39.160000', '33.000000', '1897.000000', '378.000000', '888.000000', '385.000000', '2.111100', '68700.000000']\n",
- "['-120.590000', '38.530000', '15.000000', '432.000000', '87.000000', '208.000000', '73.000000', '3.612500', '100000.000000']\n",
- "['-117.580000', '33.870000', '30.000000', '701.000000', '131.000000', '356.000000', '125.000000', '3.291700', '144300.000000']\n",
- "['-121.840000', '39.750000', '29.000000', '4362.000000', '1053.000000', '2053.000000', '1000.000000', '1.728400', '74500.000000']\n",
- "['-121.800000', '36.690000', '12.000000', '3877.000000', '914.000000', '2274.000000', '858.000000', '3.423900', '194800.000000']\n",
- "['-122.220000', '37.810000', '52.000000', '2944.000000', '536.000000', '1034.000000', '521.000000', '5.350900', '302100.000000']\n",
- "['-117.640000', '33.450000', '26.000000', '1528.000000', '234.000000', '607.000000', '218.000000', '6.287100', '325500.000000']\n",
- "['-120.420000', '37.980000', '18.000000', '3059.000000', '609.000000', '1335.000000', '581.000000', '2.512900', '115900.000000']\n",
- "['-118.300000', '34.060000', '47.000000', '1390.000000', '872.000000', '2860.000000', '827.000000', '1.468000', '137500.000000']\n",
- "['-122.250000', '37.870000', '52.000000', '1204.000000', '460.000000', '2016.000000', '477.000000', '0.949000', '350000.000000']\n",
- "['-120.270000', '39.350000', '11.000000', '2520.000000', '401.000000', '397.000000', '165.000000', '4.665000', '145600.000000']\n",
- "['-119.880000', '36.930000', '12.000000', '3174.000000', '520.000000', '1590.000000', '488.000000', '4.534700', '101200.000000']\n",
- "['-122.370000', '37.580000', '52.000000', '2188.000000', '361.000000', '917.000000', '357.000000', '4.400000', '500000.000000']\n",
- "['-117.820000', '33.720000', '24.000000', '3260.000000', '458.000000', '1383.000000', '442.000000', '6.598700', '272800.000000']\n",
- "['-118.220000', '33.930000', '30.000000', '443.000000', '170.000000', '903.000000', '189.000000', '2.196400', '125000.000000']\n",
- "['-120.970000', '38.650000', '9.000000', '3707.000000', '602.000000', '1601.000000', '555.000000', '4.071400', '300600.000000']\n",
- "['-122.060000', '37.700000', '33.000000', '3906.000000', '790.000000', '1912.000000', '770.000000', '3.518700', '209400.000000']\n",
- "['-118.230000', '33.920000', '32.000000', '2698.000000', '640.000000', '1953.000000', '613.000000', '1.222200', '107200.000000']\n",
- "['-117.340000', '34.460000', '9.000000', '5983.000000', '1122.000000', '3515.000000', '1064.000000', '3.150500', '102000.000000']\n",
- "['-119.240000', '36.330000', '9.000000', '3289.000000', '621.000000', '1866.000000', '631.000000', '3.159900', '95000.000000']\n",
- "['-122.180000', '37.730000', '42.000000', '4074.000000', '874.000000', '2736.000000', '780.000000', '2.455000', '82400.000000']\n",
- "['-118.200000', '33.820000', '43.000000', '1758.000000', '347.000000', '954.000000', '312.000000', '5.260600', '198900.000000']\n",
- "['-117.070000', '32.810000', '15.000000', '2000.000000', '402.000000', '778.000000', '369.000000', '4.359400', '224200.000000']\n",
- "['-122.250000', '38.020000', '16.000000', '1803.000000', '267.000000', '946.000000', '266.000000', '5.700100', '205100.000000']\n",
- "['-118.420000', '34.310000', '19.000000', '6755.000000', '1443.000000', '4205.000000', '1395.000000', '3.958300', '163200.000000']\n",
- "['-122.270000', '37.850000', '52.000000', '1966.000000', '347.000000', '793.000000', '331.000000', '2.775000', '152500.000000']\n",
- "['-117.920000', '33.650000', '28.000000', '1087.000000', '423.000000', '807.000000', '425.000000', '0.970200', '225400.000000']\n",
- "['-118.160000', '34.130000', '36.000000', '4003.000000', '647.000000', '1337.000000', '631.000000', '7.723000', '500001.000000']\n",
- "['-122.490000', '37.690000', '35.000000', '2576.000000', '443.000000', '1273.000000', '433.000000', '4.739100', '272800.000000']\n",
- "['-122.480000', '38.310000', '29.000000', '2375.000000', '560.000000', '1124.000000', '502.000000', '2.327600', '166200.000000']\n",
- "['-117.670000', '34.020000', '16.000000', '3042.000000', '524.000000', '1516.000000', '475.000000', '4.890600', '178500.000000']\n",
- "['-117.150000', '32.910000', '14.000000', '1259.000000', '238.000000', '889.000000', '247.000000', '4.946400', '174800.000000']\n",
- "['-118.340000', '34.030000', '46.000000', '2437.000000', '502.000000', '1151.000000', '477.000000', '2.444400', '134100.000000']\n",
- "['-121.540000', '38.500000', '15.000000', '6093.000000', '1051.000000', '2415.000000', '997.000000', '4.207500', '183600.000000']\n",
- "['-118.150000', '33.970000', '32.000000', '1174.000000', '373.000000', '1758.000000', '361.000000', '2.426300', '158100.000000']\n",
- "['-122.540000', '38.140000', '16.000000', '4431.000000', '603.000000', '1659.000000', '630.000000', '7.541200', '392100.000000']\n",
- "['-118.010000', '33.880000', '19.000000', '1434.000000', '391.000000', '1088.000000', '341.000000', '3.369000', '269600.000000']\n",
- "['-117.680000', '35.620000', '30.000000', '2994.000000', '741.000000', '1481.000000', '581.000000', '2.145800', '52400.000000']\n",
- "['-120.640000', '35.260000', '21.000000', '3298.000000', '716.000000', '1862.000000', '687.000000', '2.150700', '221500.000000']\n",
- "['-121.290000', '38.100000', '14.000000', '1551.000000', '297.000000', '785.000000', '281.000000', '3.775000', '163300.000000']\n",
- "['-120.190000', '37.530000', '25.000000', '1470.000000', '341.000000', '706.000000', '283.000000', '1.761400', '71300.000000']\n",
- "['-117.310000', '34.100000', '28.000000', '2899.000000', '755.000000', '2406.000000', '655.000000', '1.520800', '69500.000000']\n",
- "['-118.090000', '33.870000', '31.000000', '3498.000000', '728.000000', '2098.000000', '697.000000', '3.983700', '246000.000000']\n",
- "['-117.990000', '34.120000', '37.000000', '1527.000000', '331.000000', '1504.000000', '324.000000', '3.285700', '130100.000000']\n",
- "['-119.810000', '34.470000', '26.000000', '4382.000000', '618.000000', '1728.000000', '587.000000', '7.473400', '432200.000000']\n",
- "['-116.960000', '33.520000', '9.000000', '2802.000000', '471.000000', '1155.000000', '421.000000', '4.125000', '392100.000000']\n",
- "['-122.310000', '37.570000', '37.000000', '1437.000000', '305.000000', '979.000000', '331.000000', '4.000000', '273700.000000']\n",
- "['-117.390000', '33.970000', '52.000000', '3307.000000', '553.000000', '1269.000000', '529.000000', '4.317600', '136200.000000']\n",
- "['-118.510000', '34.190000', '38.000000', '2182.000000', '409.000000', '1141.000000', '379.000000', '4.286500', '221100.000000']\n",
- "['-117.300000', '34.120000', '34.000000', '1127.000000', '275.000000', '971.000000', '249.000000', '2.058300', '64800.000000']\n",
- "['-120.850000', '37.510000', '15.000000', '1131.000000', '285.000000', '728.000000', '281.000000', '1.553100', '93100.000000']\n",
- "['-121.310000', '37.930000', '21.000000', '1556.000000', '314.000000', '1140.000000', '304.000000', '2.466700', '81400.000000']\n",
- "['-118.160000', '34.090000', '33.000000', '1515.000000', '415.000000', '1345.000000', '346.000000', '2.375000', '175000.000000']\n",
- "['-118.030000', '33.840000', '30.000000', '4781.000000', '831.000000', '2568.000000', '797.000000', '5.474600', '226400.000000']\n",
- "['-119.880000', '34.400000', '25.000000', '2741.000000', '623.000000', '2272.000000', '624.000000', '2.264700', '216700.000000']\n",
- "['-118.570000', '34.170000', '35.000000', '2072.000000', '318.000000', '908.000000', '342.000000', '6.092800', '327300.000000']\n",
- "['-122.110000', '37.140000', '29.000000', '3201.000000', '640.000000', '1722.000000', '570.000000', '4.459700', '204100.000000']\n",
- "['-122.430000', '37.760000', '52.000000', '2332.000000', '434.000000', '861.000000', '406.000000', '4.431800', '437500.000000']\n",
- "['-118.270000', '33.960000', '38.000000', '1126.000000', '270.000000', '999.000000', '265.000000', '0.549500', '91700.000000']\n",
- "['-117.160000', '33.760000', '11.000000', '4934.000000', '929.000000', '2508.000000', '840.000000', '2.625000', '155400.000000']\n",
- "['-122.070000', '37.890000', '38.000000', '2139.000000', '343.000000', '809.000000', '340.000000', '5.563600', '268800.000000']\n",
- "['-117.090000', '34.010000', '37.000000', '106.000000', '18.000000', '27.000000', '12.000000', '4.055600', '131300.000000']\n",
- "['-122.310000', '37.920000', '12.000000', '1895.000000', '600.000000', '983.000000', '519.000000', '2.500000', '195800.000000']\n",
- "['-122.190000', '37.730000', '44.000000', '1066.000000', '253.000000', '825.000000', '244.000000', '2.153800', '79700.000000']\n",
- "['-117.000000', '32.730000', '17.000000', '6050.000000', '1143.000000', '3424.000000', '1131.000000', '3.764700', '127600.000000']\n",
- "['-117.210000', '33.190000', '21.000000', '3765.000000', '612.000000', '1722.000000', '593.000000', '4.815200', '218500.000000']\n",
- "['-118.260000', '34.140000', '51.000000', '902.000000', '320.000000', '650.000000', '334.000000', '1.541700', '268800.000000']\n",
- "['-122.100000', '37.360000', '35.000000', '2063.000000', '266.000000', '676.000000', '252.000000', '8.529400', '500001.000000']\n",
- "['-121.860000', '36.600000', '33.000000', '1409.000000', '307.000000', '633.000000', '290.000000', '3.556800', '191200.000000']\n",
- "['-117.240000', '33.110000', '10.000000', '3487.000000', '545.000000', '1410.000000', '557.000000', '6.033600', '240300.000000']\n",
- "['-116.370000', '33.720000', '19.000000', '6190.000000', '1355.000000', '2242.000000', '1043.000000', '3.002100', '152300.000000']\n",
- "['-121.320000', '38.410000', '17.000000', '4401.000000', '655.000000', '1970.000000', '639.000000', '5.823900', '247500.000000']\n",
- "['-118.700000', '34.280000', '27.000000', '3536.000000', '646.000000', '1837.000000', '580.000000', '4.496400', '238300.000000']\n",
- "['-118.150000', '33.950000', '31.000000', '1053.000000', '230.000000', '686.000000', '211.000000', '4.000000', '263200.000000']\n",
- "['-118.300000', '33.730000', '47.000000', '2852.000000', '603.000000', '1130.000000', '560.000000', '4.194000', '293900.000000']\n",
- "['-118.520000', '34.190000', '37.000000', '1892.000000', '347.000000', '1039.000000', '343.000000', '4.829500', '212100.000000']\n",
- "['-118.220000', '33.990000', '6.000000', '1499.000000', '437.000000', '1754.000000', '447.000000', '4.316400', '143200.000000']\n",
- "['-122.410000', '37.650000', '32.000000', '3436.000000', '868.000000', '2583.000000', '817.000000', '3.503900', '232400.000000']\n",
- "['-122.300000', '37.890000', '46.000000', '1520.000000', '402.000000', '815.000000', '375.000000', '2.803600', '211600.000000']\n",
- "['-121.430000', '38.560000', '50.000000', '1533.000000', '288.000000', '532.000000', '257.000000', '2.541700', '125900.000000']\n",
- "['-117.230000', '32.860000', '16.000000', '1200.000000', '468.000000', '648.000000', '443.000000', '3.045000', '100000.000000']\n",
- "['-117.230000', '32.790000', '23.000000', '2578.000000', '665.000000', '989.000000', '622.000000', '3.548400', '238000.000000']\n",
- "['-117.160000', '32.720000', '52.000000', '788.000000', '463.000000', '805.000000', '391.000000', '0.914200', '162500.000000']\n",
- "['-122.410000', '37.660000', '34.000000', '1075.000000', '318.000000', '906.000000', '294.000000', '3.005200', '242500.000000']\n",
- "['-117.230000', '32.730000', '36.000000', '2052.000000', '287.000000', '699.000000', '265.000000', '7.555700', '441400.000000']\n",
- "['-118.330000', '34.000000', '47.000000', '1671.000000', '388.000000', '895.000000', '317.000000', '2.205400', '121500.000000']\n",
- "['-117.430000', '33.550000', '8.000000', '446.000000', '62.000000', '188.000000', '68.000000', '9.435600', '465600.000000']\n",
- "['-118.360000', '34.080000', '52.000000', '1965.000000', '480.000000', '794.000000', '451.000000', '3.282400', '304800.000000']\n",
- "['-121.090000', '38.970000', '13.000000', '1467.000000', '221.000000', '688.000000', '231.000000', '5.253600', '191900.000000']\n",
- "['-119.450000', '35.150000', '33.000000', '5050.000000', '964.000000', '2293.000000', '919.000000', '3.159200', '75400.000000']\n",
- "['-121.270000', '38.640000', '22.000000', '1597.000000', '280.000000', '657.000000', '273.000000', '4.309800', '213500.000000']\n",
- "['-118.000000', '33.900000', '35.000000', '1758.000000', '309.000000', '972.000000', '338.000000', '4.383100', '209800.000000']\n",
- "['-118.210000', '34.050000', '45.000000', '2146.000000', '607.000000', '2868.000000', '625.000000', '2.121000', '144000.000000']\n",
- "['-122.500000', '37.770000', '52.000000', '2299.000000', '441.000000', '1252.000000', '415.000000', '5.056200', '336700.000000']\n",
- "['-122.310000', '37.920000', '38.000000', '1250.000000', '236.000000', '631.000000', '279.000000', '3.724000', '220100.000000']\n",
- "['-118.300000', '34.000000', '40.000000', '1131.000000', '281.000000', '859.000000', '230.000000', '1.180600', '134600.000000']\n",
- "['-121.840000', '38.020000', '46.000000', '66.000000', '22.000000', '37.000000', '21.000000', '0.536000', '87500.000000']\n",
- "['-117.250000', '32.800000', '30.000000', '2061.000000', '631.000000', '1007.000000', '577.000000', '2.581300', '253100.000000']\n",
- "['-124.140000', '40.600000', '27.000000', '1148.000000', '206.000000', '521.000000', '219.000000', '4.025000', '128100.000000']\n",
- "['-118.180000', '34.050000', '52.000000', '1070.000000', '231.000000', '925.000000', '220.000000', '1.825000', '133000.000000']\n",
- "['-119.780000', '36.800000', '34.000000', '3426.000000', '623.000000', '1938.000000', '647.000000', '2.899400', '66000.000000']\n",
- "['-122.220000', '38.080000', '37.000000', '2811.000000', '539.000000', '1574.000000', '516.000000', '3.105300', '96700.000000']\n",
- "['-118.500000', '34.260000', '33.000000', '2831.000000', '510.000000', '1340.000000', '504.000000', '4.831600', '237300.000000']\n",
- "['-118.450000', '34.180000', '34.000000', '1843.000000', '442.000000', '861.000000', '417.000000', '3.687500', '246400.000000']\n",
- "['-119.790000', '36.310000', '25.000000', '4984.000000', '1029.000000', '2414.000000', '961.000000', '2.293700', '72300.000000']\n",
- "['-117.210000', '32.740000', '45.000000', '3025.000000', '583.000000', '1980.000000', '550.000000', '2.298200', '87500.000000']\n",
- "['-122.080000', '40.640000', '14.000000', '3099.000000', '519.000000', '1447.000000', '494.000000', '4.013200', '141200.000000']\n",
- "['-122.310000', '37.520000', '24.000000', '2328.000000', '335.000000', '969.000000', '354.000000', '7.736400', '435800.000000']\n",
- "['-119.740000', '36.760000', '36.000000', '912.000000', '216.000000', '842.000000', '219.000000', '1.476600', '52800.000000']\n",
- "['-118.280000', '34.010000', '52.000000', '795.000000', '308.000000', '1118.000000', '275.000000', '1.217500', '131300.000000']\n",
- "['-118.270000', '34.110000', '39.000000', '3825.000000', '916.000000', '1378.000000', '746.000000', '4.409400', '352600.000000']\n",
- "['-117.200000', '33.160000', '13.000000', '4503.000000', '1137.000000', '3094.000000', '1091.000000', '2.315900', '91600.000000']\n",
- "['-122.330000', '37.530000', '25.000000', '1729.000000', '383.000000', '769.000000', '352.000000', '4.041700', '458500.000000']\n",
- "['-120.860000', '35.400000', '21.000000', '2787.000000', '641.000000', '1106.000000', '501.000000', '2.704300', '186200.000000']\n",
- "['-119.470000', '35.400000', '32.000000', '2167.000000', '421.000000', '1301.000000', '394.000000', '1.971800', '69800.000000']\n",
- "['-117.270000', '34.160000', '32.000000', '2894.000000', '427.000000', '1151.000000', '446.000000', '6.223600', '159700.000000']\n",
- "['-121.920000', '38.020000', '8.000000', '2750.000000', '479.000000', '1526.000000', '484.000000', '5.102000', '156500.000000']\n",
- "['-121.450000', '38.560000', '51.000000', '1250.000000', '235.000000', '452.000000', '232.000000', '2.625000', '121200.000000']\n",
- "['-117.910000', '33.840000', '16.000000', '919.000000', '253.000000', '912.000000', '249.000000', '1.590300', '165400.000000']\n",
- "['-118.480000', '35.610000', '17.000000', '4002.000000', '930.000000', '1614.000000', '731.000000', '1.623600', '67300.000000']\n",
- "['-118.030000', '33.840000', '28.000000', '3857.000000', '857.000000', '2328.000000', '830.000000', '4.015600', '196000.000000']\n",
- "['-118.320000', '34.040000', '48.000000', '1184.000000', '328.000000', '953.000000', '311.000000', '2.352600', '156300.000000']\n",
- "['-121.300000', '38.890000', '23.000000', '1750.000000', '297.000000', '1012.000000', '315.000000', '3.470600', '99300.000000']\n",
- "['-117.690000', '34.070000', '34.000000', '4055.000000', '739.000000', '2470.000000', '753.000000', '3.858600', '136000.000000']\n",
- "['-118.340000', '33.940000', '36.000000', '2796.000000', '1041.000000', '4033.000000', '944.000000', '2.488600', '160700.000000']\n",
- "['-121.920000', '36.620000', '52.000000', '2584.000000', '599.000000', '790.000000', '444.000000', '2.526300', '286400.000000']\n",
- "['-122.110000', '37.410000', '27.000000', '5110.000000', '1599.000000', '2764.000000', '1482.000000', '3.419800', '351900.000000']\n",
- "['-117.650000', '34.100000', '44.000000', '2808.000000', '585.000000', '1444.000000', '550.000000', '2.715900', '139300.000000']\n",
- "['-121.800000', '38.010000', '44.000000', '3184.000000', '581.000000', '1399.000000', '548.000000', '2.723400', '110200.000000']\n",
- "['-122.660000', '38.810000', '22.000000', '852.000000', '176.000000', '461.000000', '142.000000', '3.437500', '83300.000000']\n",
- "['-122.390000', '37.780000', '3.000000', '3464.000000', '1179.000000', '1441.000000', '919.000000', '4.710500', '275000.000000']\n",
- "['-117.060000', '34.870000', '14.000000', '3348.000000', '619.000000', '1756.000000', '557.000000', '3.598700', '91400.000000']\n",
- "['-121.340000', '38.660000', '16.000000', '3154.000000', '860.000000', '1837.000000', '793.000000', '1.980500', '92900.000000']\n",
- "['-121.920000', '36.950000', '29.000000', '3457.000000', '699.000000', '1327.000000', '563.000000', '3.659700', '252300.000000']\n",
- "['-122.590000', '38.040000', '25.000000', '3412.000000', '455.000000', '1238.000000', '406.000000', '8.364600', '397300.000000']\n",
- "['-118.280000', '34.110000', '46.000000', '1156.000000', '203.000000', '514.000000', '213.000000', '4.201900', '352100.000000']\n",
- "['-121.390000', '38.600000', '22.000000', '5773.000000', '1320.000000', '2607.000000', '1250.000000', '2.523800', '118800.000000']\n",
- "['-122.330000', '40.520000', '23.000000', '2801.000000', '507.000000', '1318.000000', '454.000000', '3.508100', '116700.000000']\n",
- "['-118.200000', '34.040000', '47.000000', '1894.000000', '408.000000', '1629.000000', '379.000000', '3.761900', '127600.000000']\n",
- "['-121.960000', '37.000000', '20.000000', '3847.000000', '727.000000', '1725.000000', '737.000000', '3.344700', '305200.000000']\n",
- "['-117.890000', '33.870000', '32.000000', '1569.000000', '422.000000', '835.000000', '386.000000', '3.046500', '148900.000000']\n",
- "['-117.230000', '32.880000', '18.000000', '5566.000000', '1465.000000', '6303.000000', '1458.000000', '1.858000', '205000.000000']\n",
- "['-122.000000', '37.120000', '17.000000', '4413.000000', '672.000000', '1674.000000', '608.000000', '6.977200', '383300.000000']\n",
- "['-118.400000', '34.280000', '22.000000', '3517.000000', '810.000000', '3134.000000', '847.000000', '2.665200', '164800.000000']\n",
- "['-122.460000', '37.760000', '52.000000', '2236.000000', '545.000000', '1186.000000', '532.000000', '3.453100', '414300.000000']\n",
- "['-121.990000', '37.540000', '18.000000', '3584.000000', '715.000000', '1673.000000', '661.000000', '3.944400', '240100.000000']\n",
- "['-117.230000', '32.740000', '16.000000', '735.000000', '139.000000', '299.000000', '134.000000', '4.635400', '179200.000000']\n",
- "['-121.840000', '37.290000', '4.000000', '2937.000000', '648.000000', '1780.000000', '665.000000', '4.385100', '160400.000000']\n",
- "['-118.150000', '34.860000', '10.000000', '4597.000000', '1009.000000', '2227.000000', '821.000000', '2.614900', '83500.000000']\n",
- "['-118.330000', '33.980000', '38.000000', '3063.000000', '796.000000', '2153.000000', '721.000000', '1.847200', '149100.000000']\n",
- "['-120.680000', '35.510000', '17.000000', '1701.000000', '298.000000', '941.000000', '293.000000', '4.321800', '209100.000000']\n",
- "['-117.950000', '33.790000', '34.000000', '2912.000000', '520.000000', '1625.000000', '501.000000', '4.466700', '190600.000000']\n",
- "['-117.970000', '34.050000', '33.000000', '1452.000000', '268.000000', '1274.000000', '278.000000', '3.656300', '162700.000000']\n",
- "['-119.750000', '36.870000', '3.000000', '13802.000000', '2244.000000', '5226.000000', '1972.000000', '5.094100', '143700.000000']\n",
- "['-122.080000', '37.350000', '35.000000', '1347.000000', '207.000000', '548.000000', '189.000000', '7.706800', '500001.000000']\n",
- "['-122.320000', '37.950000', '36.000000', '1425.000000', '245.000000', '573.000000', '239.000000', '4.350000', '185000.000000']\n",
- "['-122.220000', '38.100000', '38.000000', '931.000000', '181.000000', '566.000000', '207.000000', '3.022100', '93300.000000']\n",
- "['-124.090000', '40.550000', '24.000000', '2978.000000', '553.000000', '1370.000000', '480.000000', '2.764400', '97300.000000']\n",
- "['-121.500000', '38.570000', '41.000000', '1124.000000', '344.000000', '807.000000', '316.000000', '1.471200', '94600.000000']\n",
- "['-118.110000', '33.910000', '19.000000', '3056.000000', '759.000000', '1561.000000', '740.000000', '3.136900', '196900.000000']\n",
- "['-121.230000', '37.960000', '37.000000', '2351.000000', '564.000000', '1591.000000', '549.000000', '1.656300', '57200.000000']\n",
- "['-121.890000', '37.280000', '35.000000', '2418.000000', '375.000000', '988.000000', '374.000000', '6.093600', '365400.000000']\n",
- "['-122.480000', '37.650000', '39.000000', '3348.000000', '666.000000', '1817.000000', '668.000000', '4.259300', '227400.000000']\n",
- "['-118.310000', '34.090000', '36.000000', '2517.000000', '842.000000', '2446.000000', '689.000000', '2.152400', '187500.000000']\n",
- "['-123.020000', '38.810000', '35.000000', '956.000000', '213.000000', '488.000000', '215.000000', '3.025000', '140600.000000']\n",
- "['-120.470000', '34.650000', '32.000000', '2193.000000', '430.000000', '1074.000000', '377.000000', '2.333300', '130200.000000']\n",
- "['-122.100000', '37.680000', '37.000000', '2116.000000', '503.000000', '1109.000000', '448.000000', '2.535000', '174000.000000']\n",
- "['-122.420000', '37.790000', '52.000000', '3364.000000', '1100.000000', '2112.000000', '1045.000000', '2.134300', '400000.000000']\n",
- "['-122.640000', '41.630000', '19.000000', '2722.000000', '479.000000', '1108.000000', '430.000000', '3.106200', '100000.000000']\n",
- "['-118.020000', '33.910000', '34.000000', '2518.000000', '429.000000', '1309.000000', '421.000000', '4.786100', '210700.000000']\n",
- "['-119.020000', '35.360000', '48.000000', '1833.000000', '396.000000', '947.000000', '363.000000', '2.282700', '70000.000000']\n",
- "['-121.330000', '38.650000', '23.000000', '2446.000000', '523.000000', '1132.000000', '513.000000', '2.626600', '198500.000000']\n",
- "['-118.080000', '33.950000', '32.000000', '1962.000000', '387.000000', '1274.000000', '398.000000', '4.830400', '160600.000000']\n",
- "['-118.080000', '33.790000', '34.000000', '2840.000000', '395.000000', '1127.000000', '396.000000', '7.614400', '376200.000000']\n",
- "['-118.230000', '33.910000', '27.000000', '1694.000000', '393.000000', '1890.000000', '373.000000', '3.034100', '89100.000000']\n",
- "['-118.290000', '33.750000', '37.000000', '1319.000000', '292.000000', '766.000000', '285.000000', '2.703100', '218900.000000']\n",
- "['-118.020000', '34.130000', '34.000000', '1966.000000', '319.000000', '980.000000', '297.000000', '7.730700', '429000.000000']\n",
- "['-117.890000', '33.600000', '36.000000', '1496.000000', '247.000000', '441.000000', '203.000000', '7.816400', '500001.000000']\n",
- "['-118.230000', '34.650000', '17.000000', '1827.000000', '348.000000', '766.000000', '335.000000', '3.567300', '136300.000000']\n",
- "['-118.310000', '34.020000', '45.000000', '1423.000000', '278.000000', '822.000000', '276.000000', '2.451900', '98100.000000']\n",
- "['-118.070000', '33.800000', '34.000000', '3486.000000', '507.000000', '1311.000000', '503.000000', '7.122100', '384500.000000']\n",
- "['-118.250000', '33.940000', '43.000000', '1113.000000', '378.000000', '1305.000000', '334.000000', '1.143400', '91300.000000']\n",
- "['-122.440000', '37.710000', '52.000000', '2711.000000', '591.000000', '1848.000000', '524.000000', '3.956700', '251500.000000']\n",
- "['-119.750000', '34.500000', '26.000000', '3563.000000', '579.000000', '1479.000000', '575.000000', '5.952200', '438400.000000']\n",
- "['-117.940000', '33.940000', '26.000000', '1962.000000', '540.000000', '1236.000000', '520.000000', '2.215600', '145000.000000']\n",
- "['-119.230000', '34.170000', '18.000000', '6171.000000', '1490.000000', '2164.000000', '1210.000000', '3.687500', '500001.000000']\n",
- "['-118.110000', '34.680000', '6.000000', '7430.000000', '1184.000000', '3489.000000', '1115.000000', '5.326700', '140100.000000']\n",
- "['-122.470000', '37.770000', '52.000000', '2241.000000', '443.000000', '1042.000000', '377.000000', '4.163500', '398400.000000']\n",
- "['-120.930000', '35.760000', '11.000000', '8997.000000', '1698.000000', '1825.000000', '756.000000', '3.230000', '154300.000000']\n",
- "['-118.140000', '34.170000', '52.000000', '2667.000000', '486.000000', '1681.000000', '504.000000', '4.052400', '173100.000000']\n",
- "['-122.730000', '38.460000', '14.000000', '4042.000000', '1298.000000', '2323.000000', '1158.000000', '2.065100', '135400.000000']\n",
- "['-117.060000', '32.760000', '37.000000', '2356.000000', '476.000000', '1231.000000', '499.000000', '2.965000', '155700.000000']\n",
- "['-120.710000', '35.500000', '12.000000', '3098.000000', '453.000000', '1433.000000', '434.000000', '5.250800', '292900.000000']\n",
- "['-118.310000', '34.050000', '35.000000', '1692.000000', '423.000000', '1578.000000', '406.000000', '2.531300', '305800.000000']\n",
- "['-119.700000', '36.750000', '11.000000', '3626.000000', '779.000000', '1819.000000', '731.000000', '2.495600', '87500.000000']\n",
- "['-121.340000', '38.640000', '17.000000', '2761.000000', '501.000000', '1128.000000', '482.000000', '3.756200', '139700.000000']\n",
- "['-117.910000', '34.090000', '20.000000', '4327.000000', '1037.000000', '2296.000000', '963.000000', '3.044100', '185400.000000']\n",
- "['-119.760000', '36.790000', '32.000000', '2463.000000', '468.000000', '1261.000000', '486.000000', '3.328100', '75100.000000']\n",
- "['-120.660000', '35.490000', '17.000000', '4422.000000', '945.000000', '2307.000000', '885.000000', '2.828500', '171300.000000']\n",
- "['-118.280000', '34.080000', '42.000000', '1618.000000', '522.000000', '1454.000000', '440.000000', '3.160700', '182000.000000']\n",
- "['-122.540000', '37.900000', '48.000000', '2491.000000', '460.000000', '937.000000', '455.000000', '4.437500', '370000.000000']\n",
- "['-117.590000', '33.880000', '13.000000', '3239.000000', '849.000000', '2751.000000', '813.000000', '2.611100', '107000.000000']\n",
- "['-120.470000', '34.940000', '17.000000', '1368.000000', '308.000000', '642.000000', '303.000000', '1.863300', '109400.000000']\n",
- "['-118.250000', '33.930000', '42.000000', '819.000000', '233.000000', '899.000000', '228.000000', '1.134600', '85400.000000']\n",
- "['-121.970000', '37.290000', '25.000000', '4096.000000', '743.000000', '2027.000000', '741.000000', '5.329400', '300300.000000']\n",
- "['-122.010000', '36.970000', '43.000000', '2162.000000', '509.000000', '1208.000000', '464.000000', '2.541700', '260900.000000']\n",
- "['-122.020000', '37.600000', '32.000000', '1295.000000', '295.000000', '1097.000000', '328.000000', '3.238600', '149600.000000']\n",
- "['-118.230000', '34.090000', '49.000000', '1638.000000', '456.000000', '1500.000000', '430.000000', '2.692300', '150000.000000']\n",
- "['-117.170000', '34.280000', '13.000000', '4867.000000', '718.000000', '780.000000', '250.000000', '7.199700', '253800.000000']\n",
- "['-122.330000', '37.390000', '52.000000', '573.000000', '102.000000', '232.000000', '92.000000', '6.226300', '500001.000000']\n",
- "['-117.910000', '33.600000', '37.000000', '2088.000000', '510.000000', '673.000000', '390.000000', '5.104800', '500001.000000']\n",
- "['-117.930000', '33.860000', '35.000000', '931.000000', '181.000000', '516.000000', '174.000000', '5.586700', '182500.000000']\n",
- "['-119.860000', '34.420000', '23.000000', '1450.000000', '642.000000', '1258.000000', '607.000000', '1.179000', '225000.000000']\n",
- "['-118.140000', '34.060000', '27.000000', '5257.000000', '1082.000000', '3496.000000', '1036.000000', '3.390600', '237200.000000']\n",
- "['-119.700000', '36.300000', '10.000000', '956.000000', '201.000000', '693.000000', '220.000000', '2.289500', '62000.000000']\n",
- "['-117.120000', '34.100000', '40.000000', '96.000000', '14.000000', '46.000000', '14.000000', '3.270800', '162500.000000']\n",
- "['-119.630000', '34.420000', '42.000000', '1765.000000', '263.000000', '753.000000', '260.000000', '8.560800', '500001.000000']\n"
- ]
- }
- ],
- "source": [
- "import csv\n",
- "\n",
- "with open(r'/Users/kaylielau/Downloads/python/05_src/data/slides_data/california_housing_test.csv', 'r') as f:\n",
- " contents = csv.reader(f)\n",
- " for row in contents:\n",
- " print(row)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 16,
- "metadata": {},
- "outputs": [],
- "source": [
- "import os"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 20,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "'/Users/kaylielau/Downloads/python/04_this_cohort/live_code'"
- ]
- },
- "execution_count": 20,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "os.getcwd()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 21,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "['11_27_2024.ipynb',\n",
- " '12_04_2024.ipynb',\n",
- " 'provinces.txt',\n",
- " '.DS_Store',\n",
- " '12_03_2024.ipynb',\n",
- " '11_26_2024.ipynb',\n",
- " 'text.txt',\n",
- " '11_30_2024.ipynb']"
- ]
- },
- "execution_count": 21,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "os.listdir()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "['/Users/kaylielau/Downloads/python/04_this_cohort/live_code/11_27_2024.ipynb',\n",
- " '/Users/kaylielau/Downloads/python/04_this_cohort/live_code/12_04_2024.ipynb',\n",
- " '/Users/kaylielau/Downloads/python/04_this_cohort/live_code/provinces.txt',\n",
- " '/Users/kaylielau/Downloads/python/04_this_cohort/live_code/.DS_Store',\n",
- " '/Users/kaylielau/Downloads/python/04_this_cohort/live_code/12_03_2024.ipynb',\n",
- " '/Users/kaylielau/Downloads/python/04_this_cohort/live_code/11_26_2024.ipynb',\n",
- " '/Users/kaylielau/Downloads/python/04_this_cohort/live_code/text.txt',\n",
- " '/Users/kaylielau/Downloads/python/04_this_cohort/live_code/11_30_2024.ipynb']"
- ]
- },
- "execution_count": 19,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "cwd = os.getcwd() # '/Users/kaylielau/Downloads/python/04_this_cohort/live_code'\n",
- "full_paths = []\n",
- "\n",
- "for i in os.listdir(): # i = '12_04_2024.ipynb'\n",
- " full_paths.append(os.path.join(cwd, i)) # '/Users/kaylielau/Downloads/python/04_this_cohort/live_code/12_04_2024.ipynb'\n",
- "\n",
- "full_paths"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 24,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "plants.txt already exists\n"
- ]
- }
- ],
- "source": [
- "text = 'Lavender is a small purple flower.'\n",
- "\n",
- "if os.path.exists('plants.txt'):\n",
- " print('plants.txt already exists')\n",
- "else:\n",
- " with open('plants.txt', 'w') as f:\n",
- " f.write(text)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "# class: a blueprint or template for create objects, it defines the properties (attributes)\n",
- "# and behaviors (methods) that objects of that class will have\n",
- "\n",
- "# object: specific instance of a class, objects have state/properties(attributes) \n",
- "# and behaviours (methods)\n",
- "\n",
- "# methods: method is a function that is associated with a class, can be called to perform certain actions or operations\n",
- "\n",
- "# attributes: pieces of data that belong to an object, represent the state of the object\n",
- "\n",
- "# __init__ is a special method in Python classes\n",
- "\n",
- "# self is a reference to the current instance of the class"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 29,
- "metadata": {},
- "outputs": [],
- "source": [
- "class Car:\n",
- " def __init__(self, name, brand, model, vin):\n",
- " self.name = name\n",
- " self.brand = brand\n",
- " self.model = model\n",
- " self.vin = vin\n",
- " \n",
- " def honk(self):\n",
- " print('beep beep')\n",
- "\n",
- "car = Car(\"Taylor\", \"Honda\", \"Civic\", \"1VWAT7A32EC093779\")"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 26,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "'Civic'"
- ]
- },
- "execution_count": 26,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "car.model"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 27,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "'Taylor'"
- ]
- },
- "execution_count": 27,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "car.name"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 28,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "'Honda'"
- ]
- },
- "execution_count": 28,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "car.brand"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 30,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "beep beep\n"
- ]
- }
- ],
- "source": [
- "car.honk()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 31,
- "metadata": {},
- "outputs": [],
- "source": [
- "class Person:\n",
- " def __init__(self, name, age):\n",
- " self.name = name\n",
- " self.age = age\n",
- "\n",
- " def greet(self):\n",
- " print(\"hello my name is\", self.name)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 32,
- "metadata": {},
- "outputs": [],
- "source": [
- "person1 = Person(\"alice\", 30)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 33,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "'alice'"
- ]
- },
- "execution_count": 33,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "person1.name"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 34,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "30"
- ]
- },
- "execution_count": 34,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "person1.age"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 35,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "hello my name is alice\n"
- ]
- }
- ],
- "source": [
- "person1.greet()"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## Arrays vs lists\n",
- "\n",
- "| `numpy` arrays | Python `list` |\n",
- "|---|---|\n",
- "| all elements must be the same type | elements can be different types |\n",
- "| fixed size | can change size |\n",
- "| n-dimensional | 1-dimensional |\n",
- "| faster to process | slower to process |\n",
- "| consumes less memory | consumes more memory |"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 36,
- "metadata": {},
- "outputs": [],
- "source": [
- "import numpy as np"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 37,
- "metadata": {},
- "outputs": [],
- "source": [
- "a = np.array([[1, 2, 3],\n",
- " [3, 2, 1]])"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 38,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "2"
- ]
- },
- "execution_count": 38,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "a.ndim"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 39,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "(2, 3)"
- ]
- },
- "execution_count": 39,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "a.shape"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 40,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "6"
- ]
- },
- "execution_count": 40,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "a.size"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 41,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "dtype('int64')"
- ]
- },
- "execution_count": 41,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "a.dtype"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 42,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([[[0., 0.],\n",
- " [0., 0.],\n",
- " [0., 0.]],\n",
- "\n",
- " [[0., 0.],\n",
- " [0., 0.],\n",
- " [0., 0.]]])"
- ]
- },
- "execution_count": 42,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "np.zeros((2, 3, 2))"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 43,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([[1, 2, 3],\n",
- " [3, 2, 1]])"
- ]
- },
- "execution_count": 43,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "a"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 44,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([[1, 1, 1],\n",
- " [1, 1, 1]])"
- ]
- },
- "execution_count": 44,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "np.ones_like(a)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 45,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([1, 3, 5, 7, 9])"
- ]
- },
- "execution_count": 45,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "np.arange(1, 10, 2)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 46,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([0. , 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9])"
- ]
- },
- "execution_count": 46,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "np.arange(0, 1, 0.1)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 83,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([[1, 1, 2, 5],\n",
- " [7, 6, 7, 7],\n",
- " [6, 3, 8, 5]])"
- ]
- },
- "execution_count": 83,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "np.random.seed(50)\n",
- "np.random.randint(1, 10, (3, 4))"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 84,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([10, 10, 10, 10, 10])"
- ]
- },
- "execution_count": 84,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "np.repeat(10, 5)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 86,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 5, 5,\n",
- " 5, 5, 5])"
- ]
- },
- "execution_count": 86,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "onedim_array = np.array([1, 2, 3, 4, 5])\n",
- "\n",
- "multidim_arr = np.repeat(onedim_array, 5)\n",
- "multidim_arr"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 88,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([[1, 2, 3, 4, 5],\n",
- " [1, 2, 3, 4, 5],\n",
- " [1, 2, 3, 4, 5],\n",
- " [1, 2, 3, 4, 5],\n",
- " [1, 2, 3, 4, 5]])"
- ]
- },
- "execution_count": 88,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "multidim_arr = np.tile(onedim_array, (5,1))\n",
- "multidim_arr"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 92,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([[1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5],\n",
- " [1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5],\n",
- " [1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5]])"
- ]
- },
- "execution_count": 92,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "another_arr = np.tile(onedim_array, (3,3))\n",
- "another_arr"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 93,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([[ 5, 10],\n",
- " [ 4, 8],\n",
- " [ 3, 6],\n",
- " [ 2, 4],\n",
- " [ 1, 2],\n",
- " [ 0, 0]])"
- ]
- },
- "execution_count": 93,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "b = np.array([[5, 4, 3, 2, 1, 0],\n",
- " [10, 8, 6, 4, 2, 0]])\n",
- "b.T"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 95,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([[ 5, 4, 3, 2, 1, 0],\n",
- " [10, 8, 6, 4, 2, 0]])"
- ]
- },
- "execution_count": 95,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "b"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 94,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([[ 5, 4, 3],\n",
- " [ 2, 1, 0],\n",
- " [10, 8, 6],\n",
- " [ 4, 2, 0]])"
- ]
- },
- "execution_count": 94,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "b.reshape(4,3)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 96,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([ 5, 4, 3, 2, 1, 0, 10, 8, 6, 4, 2, 0])"
- ]
- },
- "execution_count": 96,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "b.flatten()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 97,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([[1, 2, 3],\n",
- " [3, 2, 1]])"
- ]
- },
- "execution_count": 97,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "a"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 98,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([[ 5, 4, 3, 2, 1, 0],\n",
- " [10, 8, 6, 4, 2, 0]])"
- ]
- },
- "execution_count": 98,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "b"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 99,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([[ 5, 4, 3, 2, 1, 0, 1, 2, 3],\n",
- " [10, 8, 6, 4, 2, 0, 3, 2, 1]])"
- ]
- },
- "execution_count": 99,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "np.hstack((b, a))"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 103,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([[ 5, 4, 3],\n",
- " [ 2, 1, 0],\n",
- " [10, 8, 6],\n",
- " [ 4, 2, 0]])"
- ]
- },
- "execution_count": 103,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "b.reshape(4, 3)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 104,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([[1, 2, 3],\n",
- " [3, 2, 1]])"
- ]
- },
- "execution_count": 104,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "a"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 101,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([[ 5, 4, 3],\n",
- " [ 2, 1, 0],\n",
- " [10, 8, 6],\n",
- " [ 4, 2, 0],\n",
- " [ 1, 2, 3],\n",
- " [ 3, 2, 1]])"
- ]
- },
- "execution_count": 101,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "np.vstack((b.reshape(4, 3), a))"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 105,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([ 5, 10, 15, 20])"
- ]
- },
- "execution_count": 105,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "arr1 = np.array([5, 10, 15, 20])\n",
- "arr1"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 106,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([5, 6, 7, 8])"
- ]
- },
- "execution_count": 106,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "arr2 = np.arange(5, 9)\n",
- "arr2"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 107,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([ 0, 4, 8, 12])"
- ]
- },
- "execution_count": 107,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "arr1 - arr2"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 109,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([ 5, 10, 15, 20])"
- ]
- },
- "execution_count": 109,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "arr1"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 108,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([10, 20, 30, 40])"
- ]
- },
- "execution_count": 108,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "arr1 * 2"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 110,
- "metadata": {},
- "outputs": [],
- "source": [
- "arr3 = np.array([1, 2])"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 111,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([ 5, 10, 15, 20])"
- ]
- },
- "execution_count": 111,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "arr1"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 112,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([1, 2])"
- ]
- },
- "execution_count": 112,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "arr3"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 113,
- "metadata": {},
- "outputs": [
- {
- "ename": "ValueError",
- "evalue": "operands could not be broadcast together with shapes (4,) (2,) ",
- "output_type": "error",
- "traceback": [
- "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
- "\u001b[0;31mValueError\u001b[0m Traceback (most recent call last)",
- "Cell \u001b[0;32mIn[113], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[43marr1\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m+\u001b[39;49m\u001b[43m \u001b[49m\u001b[43marr3\u001b[49m\n",
- "\u001b[0;31mValueError\u001b[0m: operands could not be broadcast together with shapes (4,) (2,) "
- ]
- }
- ],
- "source": [
- "arr1 + arr3"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 117,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([ 5, 10, 15, 20])"
- ]
- },
- "execution_count": 117,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "arr1"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 116,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "50"
- ]
- },
- "execution_count": 116,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "arr1.sum()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 118,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "50"
- ]
- },
- "execution_count": 118,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "5 + 10 + 15 + 20"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 119,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "20"
- ]
- },
- "execution_count": 119,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "arr1.max()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 120,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "12.5"
- ]
- },
- "execution_count": 120,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "arr1.mean()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 122,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "12.5"
- ]
- },
- "execution_count": 122,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "(5 + 10 + 15 + 20)/4"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 123,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "12.5"
- ]
- },
- "execution_count": 123,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "np.median(arr1)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 124,
- "metadata": {},
- "outputs": [
- {
- "ename": "AttributeError",
- "evalue": "'numpy.ndarray' object has no attribute 'median'",
- "output_type": "error",
- "traceback": [
- "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
- "\u001b[0;31mAttributeError\u001b[0m Traceback (most recent call last)",
- "Cell \u001b[0;32mIn[124], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[43marr1\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mmedian\u001b[49m()\n",
- "\u001b[0;31mAttributeError\u001b[0m: 'numpy.ndarray' object has no attribute 'median'"
- ]
- }
- ],
- "source": [
- "arr1.median()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 127,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([[ 0, 10, 20, 30],\n",
- " [ 40, 50, 60, 70],\n",
- " [ 80, 90, 100, 110]])"
- ]
- },
- "execution_count": 127,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "tens = np.arange(0, 120, 10).reshape(3, 4)\n",
- "tens"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 128,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([ -5, -10, -15, -20])"
- ]
- },
- "execution_count": 128,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "horizontal = np.array([-5, -10, -15, -20])\n",
- "horizontal"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 129,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([[-5, 0, 5, 10],\n",
- " [35, 40, 45, 50],\n",
- " [75, 80, 85, 90]])"
- ]
- },
- "execution_count": 129,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "tens + horizontal"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 133,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([[ 0, 10, 20, 30],\n",
- " [ 40, 50, 60, 70],\n",
- " [ 80, 90, 100, 110]])"
- ]
- },
- "execution_count": 133,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "tens"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 134,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([[100],\n",
- " [200],\n",
- " [300]])"
- ]
- },
- "execution_count": 134,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "vertical = np.array([[100],\n",
- " [200],\n",
- " [300]])\n",
- "vertical"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 132,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([[100, 110, 120, 130],\n",
- " [240, 250, 260, 270],\n",
- " [380, 390, 400, 410]])"
- ]
- },
- "execution_count": 132,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "tens + vertical"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "We can still calculate statistics for multidimensional arrays, but we must specify the axis to calculate over. To calculate values for each column, we use `axis=0`. To calculate for each row, we use `axis=1`.\n",
- "\n",
- "#### 1. `axis=0`: Column-wise Operation\n",
- "\n",
- "When you set `axis=0`, the operation is performed along the vertical axis of the array, i.e., down the rows. This is often referred to as a column-wise operation.\n",
- "\n",
- "- **In a 2D array**: This calculates the mean of each column.\n",
- "- **Example**: If you have a 2x3 array (2 rows, 3 columns), using `axis=0` with `.mean()` will result in a 1D array with 3 elements, each being the mean of the columns.\n",
- "\n",
- "#### 2. `axis=1`: Row-wise Operation\n",
- "\n",
- "Conversely, when you set `axis=1`, the operation is performed along the horizontal axis of the array, i.e., across the columns. This is referred to as a row-wise operation.\n",
- "\n",
- "- **In a 2D array**: This calculates the mean of each row.\n",
- "- **Example**: If you have a 2x3 array, using `axis=1` with `.mean()` will yield a 1D array with 2 elements, each being the mean of the rows.\n",
- "\n",
- "#### Summary\n",
- "\n",
- "- `axis=0`: Column-wise operation (down the rows).\n",
- "- `axis=1`: Row-wise operation (across the columns)."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 135,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([[ 0, 10, 20, 30],\n",
- " [ 40, 50, 60, 70],\n",
- " [ 80, 90, 100, 110]])"
- ]
- },
- "execution_count": 135,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "tens"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([40., 50., 60., 70.])"
- ]
- },
- "execution_count": 136,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "tens.mean(axis=0)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 137,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "40.0"
- ]
- },
- "execution_count": 137,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "(0 + 40 +80)/3"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 138,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "50.0"
- ]
- },
- "execution_count": 138,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "(10 + 50 + 90)/3"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 139,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "60.0"
- ]
- },
- "execution_count": 139,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "(20 + 60 + 100)/3"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 140,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "70.0"
- ]
- },
- "execution_count": 140,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "(30 + 70 + 110)/3"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 142,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([[ 0, 10, 20, 30],\n",
- " [ 40, 50, 60, 70],\n",
- " [ 80, 90, 100, 110]])"
- ]
- },
- "execution_count": 142,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "tens"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 141,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([15., 55., 95.])"
- ]
- },
- "execution_count": 141,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "tens.mean(axis=1)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 143,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "15.0"
- ]
- },
- "execution_count": 143,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "(0 + 10 + 20 + 30)/4"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 144,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "55.0"
- ]
- },
- "execution_count": 144,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "(40 + 50 + 60 + 70)/4"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 145,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "95.0"
- ]
- },
- "execution_count": 145,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "(80 + 90 + 100 + 110)/4"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 146,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([ 5, 10, 15, 20])"
- ]
- },
- "execution_count": 146,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "arr1"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 147,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "10"
- ]
- },
- "execution_count": 147,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "arr1[1]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 148,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([10, 15])"
- ]
- },
- "execution_count": 148,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "arr1[1:3]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 149,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "5\n",
- "10\n",
- "15\n",
- "20\n"
- ]
- }
- ],
- "source": [
- "for i in arr1:\n",
- " print(i)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 150,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([[ 0, 10, 20, 30],\n",
- " [ 40, 50, 60, 70],\n",
- " [ 80, 90, 100, 110]])"
- ]
- },
- "execution_count": 150,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "tens"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 151,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "60"
- ]
- },
- "execution_count": 151,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "tens[1, 2]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 152,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([ 0, 10, 20, 30])"
- ]
- },
- "execution_count": 152,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "tens[0]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 153,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([ 0, 40, 80])"
- ]
- },
- "execution_count": 153,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "tens[:,0]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 154,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([[ 0, 10, 20, 30],\n",
- " [ 40, 50, 60, 70],\n",
- " [ 80, 90, 100, 110]])"
- ]
- },
- "execution_count": 154,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "tens"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 155,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([[10, 20],\n",
- " [50, 60]])"
- ]
- },
- "execution_count": 155,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "tens[0:2, 1:3]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 175,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([[10, 4, 7, 1],\n",
- " [ 1, 9, 1, 5],\n",
- " [ 9, 1, 8, 6]])"
- ]
- },
- "execution_count": 175,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "matrix1 = np.random.randint(1, 11, 12).reshape(3, 4)\n",
- "matrix1"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 176,
- "metadata": {},
- "outputs": [],
- "source": [
- "matrix2 = matrix1"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 177,
- "metadata": {},
- "outputs": [],
- "source": [
- "matrix3 = matrix1.copy() # independent copy"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 178,
- "metadata": {},
- "outputs": [],
- "source": [
- "matrix1[1] = [0, 0, 0, 0]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 179,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([[10, 4, 7, 1],\n",
- " [ 0, 0, 0, 0],\n",
- " [ 9, 1, 8, 6]])"
- ]
- },
- "execution_count": 179,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "matrix1"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 180,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([[10, 4, 7, 1],\n",
- " [ 0, 0, 0, 0],\n",
- " [ 9, 1, 8, 6]])"
- ]
- },
- "execution_count": 180,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "matrix2"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 181,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "array([[10, 4, 7, 1],\n",
- " [ 1, 9, 1, 5],\n",
- " [ 9, 1, 8, 6]])"
- ]
- },
- "execution_count": 181,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "matrix3"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": []
- }
- ],
- "metadata": {
- "kernelspec": {
- "display_name": "dsi_participant",
- "language": "python",
- "name": "python3"
- },
- "language_info": {
- "codemirror_mode": {
- "name": "ipython",
- "version": 3
- },
- "file_extension": ".py",
- "mimetype": "text/x-python",
- "name": "python",
- "nbconvert_exporter": "python",
- "pygments_lexer": "ipython3",
- "version": "3.11.8"
- }
- },
- "nbformat": 4,
- "nbformat_minor": 2
-}
diff --git a/05_src/data/assignment_2_data/inflammation_01.csv b/05_src/data/assignment_2_data/inflammation_01.csv
deleted file mode 100644
index 07a2e6040..000000000
--- a/05_src/data/assignment_2_data/inflammation_01.csv
+++ /dev/null
@@ -1,60 +0,0 @@
-0,0,1,3,1,2,4,7,8,3,3,3,10,5,7,4,7,7,12,18,6,13,11,11,7,7,4,6,8,8,4,4,5,7,3,4,2,3,0,0
-0,1,2,1,2,1,3,2,2,6,10,11,5,9,4,4,7,16,8,6,18,4,12,5,12,7,11,5,11,3,3,5,4,4,5,5,1,1,0,1
-0,1,1,3,3,2,6,2,5,9,5,7,4,5,4,15,5,11,9,10,19,14,12,17,7,12,11,7,4,2,10,5,4,2,2,3,2,2,1,1
-0,0,2,0,4,2,2,1,6,7,10,7,9,13,8,8,15,10,10,7,17,4,4,7,6,15,6,4,9,11,3,5,6,3,3,4,2,3,2,1
-0,1,1,3,3,1,3,5,2,4,4,7,6,5,3,10,8,10,6,17,9,14,9,7,13,9,12,6,7,7,9,6,3,2,2,4,2,0,1,1
-0,0,1,2,2,4,2,1,6,4,7,6,6,9,9,15,4,16,18,12,12,5,18,9,5,3,10,3,12,7,8,4,7,3,5,4,4,3,2,1
-0,0,2,2,4,2,2,5,5,8,6,5,11,9,4,13,5,12,10,6,9,17,15,8,9,3,13,7,8,2,8,8,4,2,3,5,4,1,1,1
-0,0,1,2,3,1,2,3,5,3,7,8,8,5,10,9,15,11,18,19,20,8,5,13,15,10,6,10,6,7,4,9,3,5,2,5,3,2,2,1
-0,0,0,3,1,5,6,5,5,8,2,4,11,12,10,11,9,10,17,11,6,16,12,6,8,14,6,13,10,11,4,6,4,7,6,3,2,1,0,0
-0,1,1,2,1,3,5,3,5,8,6,8,12,5,13,6,13,8,16,8,18,15,16,14,12,7,3,8,9,11,2,5,4,5,1,4,1,2,0,0
-0,1,0,0,4,3,3,5,5,4,5,8,7,10,13,3,7,13,15,18,8,15,15,16,11,14,12,4,10,10,4,3,4,5,5,3,3,2,2,1
-0,1,0,0,3,4,2,7,8,5,2,8,11,5,5,8,14,11,6,11,9,16,18,6,12,5,4,3,5,7,8,3,5,4,5,5,4,0,1,1
-0,0,2,1,4,3,6,4,6,7,9,9,3,11,6,12,4,17,13,15,13,12,8,7,4,7,12,9,5,6,5,4,7,3,5,4,2,3,0,1
-0,0,0,0,1,3,1,6,6,5,5,6,3,6,13,3,10,13,9,16,15,9,11,4,6,4,11,11,12,3,5,8,7,4,6,4,1,3,0,0
-0,1,2,1,1,1,4,1,5,2,3,3,10,7,13,5,7,17,6,9,12,13,10,4,12,4,6,7,6,10,8,2,5,1,3,4,2,0,2,0
-0,1,1,0,1,2,4,3,6,4,7,5,5,7,5,10,7,8,18,17,9,8,12,11,11,11,14,6,11,2,10,9,5,6,5,3,4,2,2,0
-0,0,0,0,2,3,6,5,7,4,3,2,10,7,9,11,12,5,12,9,13,19,14,17,5,13,8,11,5,10,9,8,7,5,3,1,4,0,2,1
-0,0,0,1,2,1,4,3,6,7,4,2,12,6,12,4,14,7,8,14,13,19,6,9,12,6,4,13,6,7,2,3,6,5,4,2,3,0,1,0
-0,0,2,1,2,5,4,2,7,8,4,7,11,9,8,11,15,17,11,12,7,12,7,6,7,4,13,5,7,6,6,9,2,1,1,2,2,0,1,0
-0,1,2,0,1,4,3,2,2,7,3,3,12,13,11,13,6,5,9,16,9,19,16,11,8,9,14,12,11,9,6,6,6,1,1,2,4,3,1,1
-0,1,1,3,1,4,4,1,8,2,2,3,12,12,10,15,13,6,5,5,18,19,9,6,11,12,7,6,3,6,3,2,4,3,1,5,4,2,2,0
-0,0,2,3,2,3,2,6,3,8,7,4,6,6,9,5,12,12,8,5,12,10,16,7,14,12,5,4,6,9,8,5,6,6,1,4,3,0,2,0
-0,0,0,3,4,5,1,7,7,8,2,5,12,4,10,14,5,5,17,13,16,15,13,6,12,9,10,3,3,7,4,4,8,2,6,5,1,0,1,0
-0,1,1,1,1,3,3,2,6,3,9,7,8,8,4,13,7,14,11,15,14,13,5,13,7,14,9,10,5,11,5,3,5,1,1,4,4,1,2,0
-0,1,1,1,2,3,5,3,6,3,7,10,3,8,12,4,12,9,15,5,17,16,5,10,10,15,7,5,3,11,5,5,6,1,1,1,1,0,2,1
-0,0,2,1,3,3,2,7,4,4,3,8,12,9,12,9,5,16,8,17,7,11,14,7,13,11,7,12,12,7,8,5,7,2,2,4,1,1,1,0
-0,0,1,2,4,2,2,3,5,7,10,5,5,12,3,13,4,13,7,15,9,12,18,14,16,12,3,11,3,2,7,4,8,2,2,1,3,0,1,1
-0,0,1,1,1,5,1,5,2,2,4,10,4,8,14,6,15,6,12,15,15,13,7,17,4,5,11,4,8,7,9,4,5,3,2,5,4,3,2,1
-0,0,2,2,3,4,6,3,7,6,4,5,8,4,7,7,6,11,12,19,20,18,9,5,4,7,14,8,4,3,7,7,8,3,5,4,1,3,1,0
-0,0,0,1,4,4,6,3,8,6,4,10,12,3,3,6,8,7,17,16,14,15,17,4,14,13,4,4,12,11,6,9,5,5,2,5,2,1,0,1
-0,1,1,0,3,2,4,6,8,6,2,3,11,3,14,14,12,8,8,16,13,7,6,9,15,7,6,4,10,8,10,4,2,6,5,5,2,3,2,1
-0,0,2,3,3,4,5,3,6,7,10,5,10,13,14,3,8,10,9,9,19,15,15,6,8,8,11,5,5,7,3,6,6,4,5,2,2,3,0,0
-0,1,2,2,2,3,6,6,6,7,6,3,11,12,13,15,15,10,14,11,11,8,6,12,10,5,12,7,7,11,5,8,5,2,5,5,2,0,2,1
-0,0,2,1,3,5,6,7,5,8,9,3,12,10,12,4,12,9,13,10,10,6,10,11,4,15,13,7,3,4,2,9,7,2,4,2,1,2,1,1
-0,0,1,2,4,1,5,5,2,3,4,8,8,12,5,15,9,17,7,19,14,18,12,17,14,4,13,13,8,11,5,6,6,2,3,5,2,1,1,1
-0,0,0,3,1,3,6,4,3,4,8,3,4,8,3,11,5,7,10,5,15,9,16,17,16,3,8,9,8,3,3,9,5,1,6,5,4,2,2,0
-0,1,2,2,2,5,5,1,4,6,3,6,5,9,6,7,4,7,16,7,16,13,9,16,12,6,7,9,10,3,6,4,5,4,6,3,4,3,2,1
-0,1,1,2,3,1,5,1,2,2,5,7,6,6,5,10,6,7,17,13,15,16,17,14,4,4,10,10,10,11,9,9,5,4,4,2,1,0,1,0
-0,1,0,3,2,4,1,1,5,9,10,7,12,10,9,15,12,13,13,6,19,9,10,6,13,5,13,6,7,2,5,5,2,1,1,1,1,3,0,1
-0,1,1,3,1,1,5,5,3,7,2,2,3,12,4,6,8,15,16,16,15,4,14,5,13,10,7,10,6,3,2,3,6,3,3,5,4,3,2,1
-0,0,0,2,2,1,3,4,5,5,6,5,5,12,13,5,7,5,11,15,18,7,9,10,14,12,11,9,10,3,2,9,6,2,2,5,3,0,0,1
-0,0,1,3,3,1,2,1,8,9,2,8,10,3,8,6,10,13,11,17,19,6,4,11,6,12,7,5,5,4,4,8,2,6,6,4,2,2,0,0
-0,1,1,3,4,5,2,1,3,7,9,6,10,5,8,15,11,12,15,6,12,16,6,4,14,3,12,9,6,11,5,8,5,5,6,1,2,1,2,0
-0,0,1,3,1,4,3,6,7,8,5,7,11,3,6,11,6,10,6,19,18,14,6,10,7,9,8,5,8,3,10,2,5,1,5,4,2,1,0,1
-0,1,1,3,3,4,4,6,3,4,9,9,7,6,8,15,12,15,6,11,6,18,5,14,15,12,9,8,3,6,10,6,8,7,2,5,4,3,1,1
-0,1,2,2,4,3,1,4,8,9,5,10,10,3,4,6,7,11,16,6,14,9,11,10,10,7,10,8,8,4,5,8,4,4,5,2,4,1,1,0
-0,0,2,3,4,5,4,6,2,9,7,4,9,10,8,11,16,12,15,17,19,10,18,13,15,11,8,4,7,11,6,7,6,5,1,3,1,0,0,0
-0,1,1,3,1,4,6,2,8,2,10,3,11,9,13,15,5,15,6,10,10,5,14,15,12,7,4,5,11,4,6,9,5,6,1,1,2,1,2,1
-0,0,1,3,2,5,1,2,7,6,6,3,12,9,4,14,4,6,12,9,12,7,11,7,16,8,13,6,7,6,10,7,6,3,1,5,4,3,0,0
-0,0,1,2,3,4,5,7,5,4,10,5,12,12,5,4,7,9,18,16,16,10,15,15,10,4,3,7,5,9,4,6,2,4,1,4,2,2,2,1
-0,1,2,1,1,3,5,3,6,3,10,10,11,10,13,10,13,6,6,14,5,4,5,5,9,4,12,7,7,4,7,9,3,3,6,3,4,1,2,0
-0,1,2,2,3,5,2,4,5,6,8,3,5,4,3,15,15,12,16,7,20,15,12,8,9,6,12,5,8,3,8,5,4,1,3,2,1,3,1,0
-0,0,0,2,4,4,5,3,3,3,10,4,4,4,14,11,15,13,10,14,11,17,9,11,11,7,10,12,10,10,10,8,7,5,2,2,4,1,2,1
-0,0,2,1,1,4,4,7,2,9,4,10,12,7,6,6,11,12,9,15,15,6,6,13,5,12,9,6,4,7,7,6,5,4,1,4,2,2,2,1
-0,1,2,1,1,4,5,4,4,5,9,7,10,3,13,13,8,9,17,16,16,15,12,13,5,12,10,9,11,9,4,5,5,2,2,5,1,0,0,1
-0,0,1,3,2,3,6,4,5,7,2,4,11,11,3,8,8,16,5,13,16,5,8,8,6,9,10,10,9,3,3,5,3,5,4,5,3,3,0,1
-0,1,1,2,2,5,1,7,4,2,5,5,4,6,6,4,16,11,14,16,14,14,8,17,4,14,13,7,6,3,7,7,5,6,3,4,2,2,1,1
-0,1,1,1,4,1,6,4,6,3,6,5,6,4,14,13,13,9,12,19,9,10,15,10,9,10,10,7,5,6,8,6,6,4,3,5,2,1,1,1
-0,0,0,1,4,5,6,3,8,7,9,10,8,6,5,12,15,5,10,5,8,13,18,17,14,9,13,4,10,11,10,8,8,6,5,5,2,0,2,0
-0,0,1,0,3,2,5,4,8,2,9,3,3,10,12,9,14,11,13,8,6,18,11,9,13,11,8,5,5,2,8,5,3,5,4,1,3,1,1,0
diff --git a/05_src/data/assignment_2_data/inflammation_02.csv b/05_src/data/assignment_2_data/inflammation_02.csv
deleted file mode 100644
index e30a9b275..000000000
--- a/05_src/data/assignment_2_data/inflammation_02.csv
+++ /dev/null
@@ -1,60 +0,0 @@
-0,0,0,1,3,4,6,5,2,7,7,8,6,11,5,6,10,4,5,9,15,15,14,13,14,12,10,9,8,8,6,6,6,6,5,4,2,1,1,0
-0,0,2,2,4,2,1,7,5,7,3,6,10,5,5,14,14,9,11,10,5,5,5,15,6,6,10,13,6,8,3,5,7,7,3,2,2,0,2,1
-0,1,2,3,2,1,4,1,8,7,4,5,10,3,11,5,11,8,18,4,17,9,5,6,15,14,11,5,6,4,7,2,5,6,4,5,4,0,2,1
-0,0,0,0,1,2,4,7,3,5,8,7,5,13,10,7,11,8,18,6,13,4,10,13,5,5,4,3,8,9,2,3,2,3,5,3,1,3,1,1
-0,1,0,2,1,2,3,6,5,2,9,3,5,12,9,5,8,11,9,4,19,19,15,9,6,12,9,3,6,2,9,9,8,5,3,5,3,0,2,1
-0,0,1,3,4,4,2,2,6,3,2,9,4,11,12,8,6,8,8,7,18,11,13,13,10,5,7,11,3,6,9,6,4,5,1,4,1,0,0,0
-0,1,0,3,2,3,2,2,4,6,4,11,11,8,3,9,11,7,12,16,10,5,17,8,11,15,6,8,11,10,6,9,4,3,3,3,1,3,1,1
-0,1,2,1,4,1,2,7,2,2,8,9,5,6,12,12,6,14,6,5,12,11,11,5,10,7,6,6,10,2,4,5,8,3,5,3,3,0,0,1
-0,0,1,2,2,1,4,2,7,4,10,6,4,3,6,5,8,13,8,8,12,4,13,4,13,4,14,5,12,10,6,3,2,1,5,3,4,3,2,0
-0,1,1,1,4,2,1,3,5,3,2,3,11,3,4,5,14,4,5,8,18,18,13,5,11,4,13,12,11,4,10,9,3,3,6,3,2,0,2,0
-0,1,0,0,2,3,5,2,5,8,4,7,7,8,5,5,8,15,14,4,10,12,8,14,11,14,5,13,4,6,8,3,6,5,5,2,4,2,2,1
-0,1,2,3,2,5,6,4,2,4,6,9,6,9,6,6,14,11,6,18,6,13,18,7,15,13,3,12,8,8,5,2,5,7,4,2,2,3,2,0
-0,0,0,1,4,1,4,1,7,7,8,7,7,4,9,3,8,17,17,9,13,19,5,10,8,7,5,3,7,4,6,5,4,1,5,2,1,0,0,0
-0,0,2,1,1,4,5,7,8,5,5,3,6,9,7,8,10,10,13,19,18,15,4,11,6,4,8,11,7,5,4,3,7,3,5,4,4,0,1,0
-0,1,0,3,4,3,3,7,6,8,4,11,6,10,10,7,12,9,11,17,10,16,17,4,5,8,4,8,10,8,5,5,4,7,4,2,3,1,0,1
-0,0,0,3,1,3,5,1,6,5,3,4,8,11,11,3,4,12,14,17,7,9,4,8,8,15,3,12,9,10,6,6,3,3,2,5,4,3,1,0
-0,1,0,0,4,5,5,6,8,9,2,11,4,13,5,15,13,5,13,7,7,5,12,4,12,10,7,4,4,10,10,7,8,2,4,3,4,0,1,1
-0,0,2,0,2,3,2,4,4,3,10,5,8,9,8,12,15,10,9,4,17,5,13,12,15,5,8,10,9,5,3,9,4,2,6,4,2,0,1,1
-0,0,2,1,3,4,3,2,7,3,5,7,9,8,6,3,7,12,13,15,20,7,5,17,13,5,5,13,8,6,8,4,5,1,1,5,3,2,1,1
-0,0,0,3,4,2,2,5,2,8,6,10,7,13,7,11,10,6,12,14,8,7,9,12,11,5,5,13,7,7,4,9,4,7,2,1,2,3,0,1
-0,1,1,2,4,1,6,3,8,8,8,9,8,7,12,9,5,7,9,11,8,7,11,6,8,13,14,5,3,7,10,6,8,6,5,4,4,2,0,0
-0,0,2,3,3,1,5,3,3,6,8,4,12,8,12,11,14,9,5,7,11,13,13,4,13,12,14,6,7,5,3,4,3,1,1,3,4,3,2,1
-0,1,2,3,2,4,1,3,6,2,10,11,7,3,9,6,11,15,4,19,16,9,18,4,6,12,6,5,9,6,9,5,2,4,6,2,1,3,2,1
-0,1,0,3,4,5,6,5,4,3,3,9,9,13,10,12,14,7,15,16,15,7,15,6,9,7,10,9,4,8,2,6,8,2,6,4,1,3,0,1
-0,1,0,1,4,2,2,7,7,8,7,11,9,5,5,6,14,7,6,14,8,17,5,13,8,6,13,13,10,10,4,2,2,7,6,3,4,1,1,1
-0,0,2,2,2,4,3,7,6,9,10,10,3,5,14,14,9,15,16,17,15,10,4,14,12,6,8,12,4,3,6,4,8,3,2,5,1,1,2,1
-0,1,0,2,3,5,3,6,3,7,6,5,11,7,14,9,7,8,6,4,12,5,12,6,5,6,3,7,3,8,7,7,4,7,5,3,2,2,2,0
-0,1,1,0,2,3,4,1,3,8,8,8,7,6,6,11,13,9,9,9,10,14,8,5,13,4,5,3,3,2,9,2,2,6,5,2,1,1,1,1
-0,0,2,3,4,5,2,3,8,6,6,5,10,8,7,15,14,6,6,6,8,7,12,10,7,12,5,8,12,11,4,5,5,6,6,2,2,2,0,0
-0,0,1,1,3,2,4,3,4,8,4,3,4,13,11,14,6,6,15,16,10,19,10,15,14,13,7,9,4,2,6,8,2,1,1,5,4,2,1,1
-0,1,0,2,2,2,3,1,4,9,9,2,5,6,13,7,13,8,17,15,7,13,11,13,9,5,7,13,10,5,9,3,8,4,6,1,2,3,1,1
-0,0,1,1,1,3,5,4,2,2,6,10,9,9,5,5,5,11,18,18,6,14,12,8,15,5,4,4,11,4,5,7,3,4,6,3,2,1,2,1
-0,1,0,2,2,5,2,3,2,9,4,2,12,11,6,4,9,11,4,18,19,5,4,6,7,7,10,13,9,2,8,4,3,5,4,2,3,0,0,1
-0,1,1,3,2,5,2,5,2,2,9,5,10,11,14,14,15,8,4,13,6,13,11,13,9,5,10,12,8,8,2,2,2,2,6,5,3,1,1,0
-0,1,1,2,2,3,2,7,7,8,7,9,4,5,3,9,8,8,11,19,5,16,13,7,16,12,8,7,11,8,3,4,6,1,1,1,4,3,1,0
-0,1,1,2,4,4,4,4,4,5,5,11,3,5,6,13,8,14,5,14,9,6,9,15,9,6,4,7,4,6,7,2,4,4,4,3,1,2,0,1
-0,0,2,1,1,1,4,7,3,2,9,7,11,4,5,4,16,16,9,4,16,5,16,17,4,9,6,4,10,11,9,9,6,4,6,1,1,0,2,1
-0,0,1,1,3,1,4,4,4,7,9,2,3,11,5,10,12,8,6,6,16,13,10,6,7,10,9,7,4,6,5,7,4,3,6,3,1,2,1,1
-0,0,1,0,3,3,1,7,4,8,8,2,12,5,12,15,4,12,12,13,20,8,14,5,14,15,6,5,4,4,6,9,5,1,2,1,4,2,0,0
-0,1,0,1,4,2,2,5,4,7,3,11,3,12,11,6,4,15,15,16,8,4,16,15,8,7,12,10,5,5,9,5,8,1,3,4,4,2,0,0
-0,0,1,2,3,5,4,6,7,7,2,8,9,6,4,9,7,14,6,11,17,16,13,12,16,12,6,5,8,3,8,5,3,1,4,3,1,2,0,1
-0,1,2,3,1,3,5,2,2,4,5,9,12,4,7,13,15,4,15,12,15,18,5,16,4,15,8,9,4,9,2,2,6,1,2,3,3,2,1,0
-0,1,1,1,2,2,6,3,5,2,10,4,7,13,3,5,14,10,9,16,18,11,15,5,9,14,8,4,3,3,2,8,4,1,4,1,1,1,2,1
-0,1,1,2,1,1,5,3,5,4,9,8,11,3,5,15,6,6,8,19,8,15,18,10,12,10,10,6,9,3,10,9,7,6,3,3,1,2,0,0
-0,1,2,0,2,1,4,1,5,7,3,2,5,6,6,9,4,17,11,10,16,12,17,13,10,7,13,6,8,9,8,3,8,2,6,1,1,3,2,0
-0,0,1,2,3,2,3,5,3,9,8,4,3,9,8,14,6,15,13,4,17,8,9,17,9,5,6,8,10,6,3,7,4,4,3,1,1,0,2,0
-0,1,1,0,1,1,2,7,8,6,4,4,9,3,10,14,14,11,6,8,18,5,13,10,4,5,3,12,9,7,8,8,2,4,3,4,3,2,1,1
-0,0,0,1,1,1,4,2,5,4,10,9,7,9,3,15,12,6,14,17,16,18,5,8,10,12,10,11,11,8,10,9,8,5,1,3,4,3,0,1
-0,0,0,2,4,4,1,2,7,4,7,7,10,7,14,9,6,17,8,8,8,9,6,15,15,12,10,9,11,6,4,7,7,2,4,1,4,1,1,1
-0,1,1,1,1,1,1,3,3,4,10,2,6,7,12,8,6,5,11,19,8,10,6,9,15,7,13,7,10,3,3,8,2,2,1,3,2,0,2,1
-0,1,1,2,2,4,5,3,4,6,2,3,10,3,7,15,10,8,12,7,13,12,9,7,8,4,9,8,12,10,6,2,4,3,4,3,3,1,0,0
-0,0,0,1,3,2,6,5,6,6,7,8,3,13,5,12,4,12,10,18,13,7,7,4,15,13,5,8,10,3,7,6,3,4,5,5,2,1,1,0
-0,0,1,0,2,2,3,3,4,8,5,2,8,7,9,7,9,4,7,4,6,11,10,10,8,14,4,5,3,10,6,5,8,3,6,2,3,3,2,0
-0,0,2,2,2,1,6,4,4,2,2,3,7,4,8,15,8,12,17,10,17,8,13,13,8,7,3,9,6,2,3,4,8,2,1,1,2,1,2,0
-0,0,0,1,4,2,1,4,8,7,7,10,12,5,4,4,12,7,18,9,16,19,11,7,14,8,11,11,10,9,9,8,4,7,6,5,2,2,1,1
-0,0,2,2,4,2,3,6,4,5,4,2,5,4,11,13,4,10,16,16,6,16,7,14,5,7,11,10,12,10,8,6,4,1,2,2,4,1,2,0
-0,1,0,2,2,1,6,2,2,2,9,5,9,12,5,12,10,13,9,4,17,14,5,10,12,3,13,4,9,8,8,6,7,4,4,5,4,0,2,0
-0,0,2,0,4,3,5,5,6,9,4,5,4,3,10,3,7,11,12,10,19,16,17,14,16,9,12,5,10,11,6,7,7,3,3,1,1,0,2,0
-0,0,0,3,3,1,5,7,7,7,6,8,7,6,10,14,6,12,5,15,20,18,14,17,14,11,13,10,9,5,5,5,5,7,1,5,3,2,2,0
-0,1,2,0,4,5,6,6,2,5,10,10,3,7,13,9,5,16,6,18,15,10,13,11,12,15,10,12,3,8,8,7,5,6,2,5,2,3,2,0
diff --git a/05_src/data/assignment_2_data/inflammation_03.csv b/05_src/data/assignment_2_data/inflammation_03.csv
deleted file mode 100644
index c301c9b66..000000000
--- a/05_src/data/assignment_2_data/inflammation_03.csv
+++ /dev/null
@@ -1,60 +0,0 @@
-0,0,0,2,0,4,1,7,2,6,4,7,2,4,10,7,3,13,9,3,0,1,0,15,0,5,12,3,8,6,8,6,4,3,3,2,0,0,0,0
-0,0,0,3,0,4,3,5,3,11,4,13,6,2,8,1,3,0,17,12,4,3,4,4,9,8,8,2,5,3,11,2,3,1,5,0,1,1,0,0
-0,0,1,2,0,1,0,1,6,9,4,3,7,5,4,14,8,5,0,10,5,4,9,12,4,5,5,8,6,2,0,0,1,7,6,1,1,0,0,0
-0,0,0,0,0,3,7,3,2,1,5,2,8,0,10,3,3,1,13,11,12,0,5,0,5,6,10,8,4,3,2,11,3,5,1,1,0,0,0,0
-0,0,1,0,0,2,1,2,3,9,6,14,4,6,13,8,7,13,0,15,3,1,3,1,6,4,4,0,4,2,5,11,3,5,6,0,0,1,0,0
-0,0,0,1,1,2,2,7,4,5,4,6,5,3,11,6,2,14,1,15,8,3,3,1,2,0,8,3,14,5,4,1,2,4,6,3,1,1,0,0
-0,0,1,2,1,0,0,1,1,5,2,14,9,1,12,12,1,13,10,14,2,13,4,16,8,0,12,2,3,4,7,6,3,2,1,0,0,0,0,0
-0,0,0,2,0,5,2,5,1,5,6,11,2,4,2,5,0,0,4,1,7,1,7,17,12,5,5,4,3,6,1,0,5,5,0,2,3,0,0,0
-0,0,0,2,0,2,6,3,1,6,3,9,8,4,11,5,0,10,9,3,9,5,5,16,10,2,2,8,10,1,1,0,0,2,2,1,3,0,0,0
-0,0,0,2,0,3,3,5,6,0,0,12,7,0,16,8,2,19,0,7,2,13,5,8,11,2,5,5,1,5,7,11,5,3,3,3,2,0,0,0
-0,0,0,1,1,5,3,7,5,8,5,10,4,4,13,8,8,6,14,14,8,9,3,1,0,1,6,4,10,4,5,2,1,1,6,0,0,0,0,0
-0,0,0,0,1,4,4,4,1,3,2,10,3,5,10,14,6,11,2,8,10,12,2,3,10,4,0,8,14,1,1,6,1,5,1,2,1,0,0,0
-0,0,1,3,0,2,5,1,5,1,3,8,5,6,7,6,7,14,4,15,0,2,3,0,2,8,16,1,13,0,3,5,0,4,1,2,0,1,0,0
-0,0,0,2,0,4,5,7,6,11,4,14,2,1,14,8,4,5,8,2,8,11,6,9,10,3,14,8,10,2,11,4,1,1,1,0,0,1,0,0
-0,0,0,0,0,5,4,1,6,0,3,7,7,5,11,8,1,7,2,13,12,5,6,10,16,2,12,3,3,6,10,1,2,3,4,3,2,0,0,0
-0,0,1,0,1,1,1,6,2,5,6,2,1,1,4,6,0,10,12,15,6,1,5,0,8,3,1,4,4,6,3,2,2,5,4,0,1,0,0,0
-0,0,1,1,1,0,2,0,1,8,6,5,3,1,2,12,5,12,2,14,9,8,4,1,14,1,11,7,10,1,5,6,4,7,6,3,2,1,0,0
-0,0,1,0,1,0,7,2,0,6,4,7,9,0,12,5,2,18,5,15,6,5,0,4,16,7,2,6,2,5,11,7,1,0,1,3,1,0,0,0
-0,0,1,2,0,1,4,6,1,12,6,9,0,2,8,3,6,0,7,12,5,15,10,5,16,7,1,4,11,6,6,5,2,4,1,1,1,0,0,0
-0,0,1,3,0,0,2,3,0,4,2,9,7,1,11,11,8,0,16,0,4,7,10,14,0,7,15,1,11,4,1,0,2,4,2,3,1,1,0,0
-0,0,1,2,1,3,0,3,6,4,4,5,9,3,14,7,4,20,6,0,6,7,7,5,8,7,13,8,3,4,9,10,3,2,0,0,3,1,0,0
-0,0,0,0,0,3,5,4,1,5,3,14,7,6,15,15,7,20,16,11,10,17,5,16,2,3,9,8,14,0,7,3,5,1,2,0,1,1,0,0
-0,0,1,0,1,0,3,5,6,1,3,13,6,2,16,0,8,11,7,1,10,12,0,1,12,6,6,4,12,3,0,0,1,1,3,1,3,0,0,0
-0,0,1,2,1,5,7,5,3,9,5,12,1,4,1,15,1,5,8,9,5,1,7,3,7,2,12,7,11,2,5,0,0,0,1,0,3,0,0,0
-0,0,0,3,0,0,6,3,5,1,6,14,6,0,4,2,9,13,12,13,8,6,4,15,8,5,16,7,13,3,11,3,4,1,5,3,1,1,0,0
-0,0,1,2,0,2,1,6,1,7,1,1,5,6,15,1,4,10,12,8,0,6,2,1,9,4,10,7,6,6,11,2,5,5,5,0,1,0,0,0
-0,0,0,3,1,1,4,1,0,4,4,5,1,6,14,16,4,10,12,8,10,1,0,19,3,2,9,7,3,5,8,5,4,6,0,3,0,0,0,0
-0,0,1,3,0,3,1,5,1,10,3,5,2,1,0,6,2,9,0,3,12,5,3,5,16,2,9,1,13,5,11,1,1,5,1,2,0,1,0,0
-0,0,0,1,1,3,2,1,4,4,3,7,3,6,1,17,4,11,0,13,6,8,8,2,3,5,0,7,14,1,4,7,0,0,1,1,3,0,0,0
-0,0,0,3,0,3,1,0,4,0,3,1,1,6,5,5,7,18,9,9,2,15,8,1,9,7,8,3,5,5,2,4,0,1,0,1,1,1,0,0
-0,0,1,0,0,5,0,3,2,8,1,6,4,6,15,9,6,15,11,6,3,11,3,13,7,0,7,0,5,0,5,1,1,0,1,0,2,0,0,0
-0,0,0,2,0,1,1,7,2,4,0,8,6,0,1,12,3,5,15,0,12,13,9,7,15,5,16,5,13,5,3,0,0,3,4,0,3,1,0,0
-0,0,0,0,1,5,3,0,1,4,0,12,1,5,13,3,8,20,15,4,2,14,1,6,3,8,3,8,7,3,0,9,1,0,1,1,3,0,0,0
-0,0,0,2,1,3,1,5,2,11,1,2,4,2,4,5,1,7,2,14,5,16,3,16,6,2,15,1,8,2,4,3,4,4,3,1,1,0,0,0
-0,0,0,0,1,0,7,7,2,7,5,10,2,1,17,10,4,8,16,4,9,3,3,8,5,7,6,0,4,1,1,3,0,6,2,1,3,1,0,0
-0,0,0,2,0,1,1,5,5,8,6,8,9,1,7,9,2,3,11,5,10,9,0,15,14,4,14,7,8,1,4,7,1,0,6,1,3,0,0,0
-0,0,1,0,0,1,4,4,5,5,0,8,6,1,17,16,7,20,7,13,5,16,9,6,10,7,4,5,3,5,0,5,2,1,5,0,2,1,0,0
-0,0,1,2,1,1,2,5,3,9,1,5,0,4,2,14,7,6,16,16,6,2,5,13,10,8,8,8,6,5,5,10,1,7,6,1,0,0,0,0
-0,0,1,2,0,0,4,1,0,11,3,0,1,0,14,13,4,16,12,0,10,12,0,18,16,2,10,3,5,5,4,8,5,1,3,3,0,1,0,0
-0,0,0,3,0,5,2,4,3,8,6,9,4,5,10,4,6,17,13,10,5,11,5,18,8,1,4,3,13,0,2,5,0,0,3,1,1,1,0,0
-0,0,1,3,1,4,7,5,5,8,1,3,2,6,8,1,8,3,17,16,1,10,1,9,3,6,1,1,8,0,0,3,5,4,3,2,2,1,0,0
-0,0,1,0,1,3,4,2,1,0,6,14,2,6,13,6,1,18,15,11,9,17,8,15,2,1,9,5,5,4,1,11,3,7,6,3,2,1,0,0
-0,0,1,0,0,5,7,4,1,6,3,2,5,0,16,11,2,6,16,0,7,4,5,7,13,4,2,8,9,2,0,2,1,2,3,3,0,0,0,0
-0,0,0,1,0,5,4,6,1,7,5,14,4,0,12,3,3,13,2,8,11,13,0,0,10,0,15,0,13,1,10,3,0,1,5,3,2,1,0,0
-0,0,1,3,0,0,1,4,5,6,2,9,6,3,3,2,7,19,6,1,12,9,8,18,11,4,7,6,5,1,1,4,4,2,1,2,1,0,0,0
-0,0,1,3,0,5,7,5,4,11,3,0,3,1,10,2,5,8,12,7,11,7,2,9,15,7,7,0,14,4,0,6,4,6,4,1,2,0,0,0
-0,0,1,3,0,4,5,3,5,1,3,10,4,2,2,16,6,1,12,1,11,5,2,5,14,2,2,3,10,6,0,3,5,7,6,0,3,1,0,0
-0,0,1,1,1,0,2,2,3,2,4,4,6,4,6,13,6,11,15,2,10,3,3,2,6,8,7,5,13,3,0,7,3,2,2,0,2,1,0,0
-0,0,1,3,0,3,0,3,6,3,5,9,3,3,10,3,9,1,9,6,12,13,8,11,16,4,2,3,1,5,1,9,4,0,5,3,2,0,0,0
-0,0,1,1,0,1,6,2,5,8,0,7,2,5,13,14,0,19,4,16,9,2,6,16,3,3,6,0,11,0,1,9,2,2,5,1,2,1,0,0
-0,0,1,1,0,3,4,4,5,5,0,6,7,3,14,9,8,7,6,1,0,13,9,3,1,2,5,0,12,5,5,0,5,7,3,1,0,1,0,0
-0,0,1,0,1,2,2,1,5,0,6,8,8,5,3,13,3,6,6,15,7,12,2,19,16,8,10,0,7,1,3,6,3,2,4,1,0,0,0,0
-0,0,1,2,1,3,6,5,0,7,5,7,2,1,11,1,5,4,1,2,6,7,7,7,13,4,2,2,9,1,12,0,4,6,1,0,3,1,0,0
-0,0,1,1,1,3,0,4,3,8,0,1,1,4,2,6,6,6,7,13,12,15,3,12,13,8,11,1,8,2,0,1,2,0,0,2,2,1,0,0
-0,0,0,0,0,3,6,3,3,3,0,11,8,6,4,0,3,17,8,2,8,5,3,18,5,8,1,6,0,6,12,1,3,6,0,1,0,0,0,0
-0,0,1,3,0,2,6,5,6,7,2,10,1,4,14,11,1,19,14,8,10,14,10,4,11,8,8,2,3,5,2,2,3,6,5,0,1,0,0,0
-0,0,1,2,1,2,4,5,3,10,5,10,0,4,12,8,2,12,8,8,4,14,1,13,2,8,6,5,1,4,3,2,3,6,1,2,1,0,0,0
-0,0,1,3,0,3,2,0,3,2,6,11,3,1,0,3,3,0,11,1,6,3,4,16,3,2,13,6,9,4,1,7,5,3,3,1,3,1,0,0
-0,0,1,2,1,0,4,3,1,6,4,14,4,3,14,17,1,0,8,5,4,4,10,2,14,5,11,0,6,4,4,5,0,3,0,0,2,1,0,0
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
diff --git a/05_src/data/assignment_2_data/inflammation_04.csv b/05_src/data/assignment_2_data/inflammation_04.csv
deleted file mode 100644
index 219ae8149..000000000
--- a/05_src/data/assignment_2_data/inflammation_04.csv
+++ /dev/null
@@ -1,60 +0,0 @@
-0,1,2,2,4,4,2,5,2,4,8,4,10,7,3,13,10,11,7,7,9,17,7,6,12,13,12,6,5,4,8,6,7,3,5,1,1,0,1,0
-0,1,1,1,2,1,4,1,4,9,3,10,10,4,7,10,5,15,17,9,6,12,10,11,9,15,7,11,11,9,3,4,8,3,6,2,3,0,1,0
-0,0,1,2,4,1,2,3,6,8,5,6,4,3,8,12,7,4,14,11,15,17,13,4,11,13,10,9,5,6,4,9,4,3,4,2,4,2,1,0
-0,0,2,1,1,2,4,1,5,8,3,2,6,10,6,5,11,9,15,9,5,9,17,13,9,12,5,4,6,3,5,8,8,7,4,2,2,3,2,0
-0,1,2,3,4,2,2,5,5,5,2,9,11,11,5,15,15,16,15,17,18,18,8,12,5,10,12,11,8,2,7,7,4,2,1,5,1,2,0,0
-0,1,0,0,2,2,1,5,6,8,9,7,11,6,4,14,15,11,13,11,18,9,5,16,6,11,10,10,10,2,5,8,7,2,6,4,2,2,2,0
-0,0,0,2,4,5,1,1,5,2,10,6,12,5,12,6,13,15,11,12,19,14,15,17,13,9,14,4,12,8,6,4,7,6,6,4,1,2,0,0
-0,0,1,2,2,2,2,4,2,5,6,6,10,12,8,15,11,14,15,15,20,9,7,9,10,7,9,12,11,2,8,6,2,2,3,5,1,1,2,1
-0,0,1,3,2,5,5,5,7,4,4,3,5,7,9,13,4,13,16,11,13,10,16,13,12,9,6,10,12,6,7,8,8,1,2,3,2,0,0,1
-0,1,0,3,3,4,1,7,7,8,8,10,5,6,11,5,16,5,16,19,9,7,12,15,5,3,7,8,9,8,6,2,2,7,6,3,1,1,1,0
-0,0,0,1,4,1,6,6,2,8,7,10,4,8,11,9,5,4,11,18,7,19,4,5,8,9,5,12,4,11,8,5,3,2,2,5,4,0,1,0
-0,1,2,2,1,2,4,5,5,8,2,10,8,7,12,4,14,14,9,15,20,5,14,12,11,6,12,12,6,9,9,6,5,4,6,4,2,3,1,1
-0,1,0,1,1,3,1,5,5,6,5,11,5,12,14,12,8,16,5,7,15,12,12,10,5,9,14,13,10,6,2,5,4,3,1,5,2,1,0,0
-0,1,0,2,3,5,4,4,5,9,4,8,9,11,12,5,8,4,16,5,14,15,14,12,11,9,3,8,8,6,9,3,7,2,6,1,2,2,2,0
-0,1,2,3,2,4,6,3,7,3,10,2,5,13,10,11,10,17,7,9,7,17,17,13,15,7,9,6,10,10,5,9,8,5,1,4,2,2,0,0
-0,0,0,3,4,2,4,6,4,5,4,3,12,9,3,8,9,8,12,17,20,11,4,9,12,9,3,12,7,8,7,2,2,5,2,5,3,3,0,0
-0,0,0,3,2,5,4,7,3,9,2,2,6,3,3,15,5,7,14,19,11,13,6,16,5,6,8,13,6,2,8,4,3,5,4,5,2,3,0,1
-0,1,0,2,3,3,4,7,7,9,2,3,9,3,6,14,6,4,11,7,17,7,16,11,6,13,7,7,11,2,10,2,8,5,2,4,2,1,1,1
-0,1,1,3,2,1,1,1,8,2,8,10,3,10,9,7,16,17,8,19,18,6,5,7,8,14,14,10,12,5,7,7,2,2,6,3,4,2,2,0
-0,1,1,1,2,2,2,7,5,4,8,3,4,6,4,12,9,11,12,14,6,6,18,12,9,9,11,8,4,3,3,8,3,1,1,2,1,1,1,1
-0,1,1,3,2,2,6,2,7,2,4,5,11,10,13,5,8,6,13,14,19,8,13,4,15,8,12,10,12,8,5,9,2,6,2,4,1,2,1,0
-0,0,1,2,2,5,2,5,8,7,5,2,11,5,14,10,6,14,11,6,18,6,14,9,14,5,6,3,6,11,7,7,4,1,4,1,2,1,2,0
-0,1,1,2,2,3,6,4,6,7,10,10,12,12,6,15,5,15,10,19,7,15,16,10,7,14,12,6,7,2,3,9,8,5,6,4,1,2,1,0
-0,1,0,3,2,3,5,2,2,7,3,6,7,9,12,12,15,15,15,13,14,8,17,12,15,4,9,13,12,4,6,3,5,7,2,5,1,1,0,0
-0,0,0,1,2,4,1,4,2,2,6,4,10,8,5,14,6,11,10,10,17,10,14,16,8,13,3,4,7,3,5,7,2,3,5,5,1,0,2,1
-0,0,0,1,3,4,4,5,6,6,8,7,11,7,9,6,15,7,12,10,16,16,15,11,4,5,14,8,5,9,8,2,6,5,5,1,3,2,0,1
-0,1,0,3,4,2,5,3,2,7,10,2,5,8,4,8,14,15,15,8,15,6,17,14,12,5,12,8,9,9,2,5,4,5,2,5,4,2,1,1
-0,1,0,1,4,3,1,6,4,6,2,6,10,12,6,15,9,7,10,8,15,5,8,16,8,4,7,12,11,4,4,7,6,7,3,4,3,2,2,0
-0,1,2,1,1,2,1,7,2,3,4,6,8,12,3,11,9,11,15,16,17,4,17,5,8,6,3,5,10,11,4,6,4,2,1,4,1,3,0,1
-0,0,1,3,4,5,3,5,5,8,7,6,8,5,14,15,14,9,8,16,20,19,5,6,8,9,5,12,9,2,9,6,6,3,5,5,4,0,0,0
-0,0,0,2,3,2,4,2,6,8,5,10,3,6,12,9,10,4,7,6,15,19,5,7,10,15,6,12,12,10,2,8,6,3,5,4,2,0,1,0
-0,1,0,2,2,4,4,2,8,4,6,7,11,5,4,7,13,11,12,5,9,18,15,4,11,6,11,6,9,4,4,5,6,6,6,5,3,1,2,1
-0,0,0,2,3,2,5,2,5,9,3,4,9,10,10,9,5,12,10,16,12,6,15,9,6,3,8,13,7,8,2,5,4,3,5,4,1,2,2,1
-0,0,0,3,3,2,6,1,8,3,3,5,12,6,8,13,4,14,9,6,14,10,15,13,15,11,12,8,4,4,10,3,4,7,1,2,4,2,2,0
-0,0,1,1,3,4,1,6,5,5,10,9,6,5,11,14,7,14,6,10,11,15,11,10,16,7,4,3,11,7,5,3,3,2,2,3,3,2,0,0
-0,0,1,0,2,3,5,3,5,6,5,3,5,6,6,9,11,10,11,19,19,19,14,5,7,13,5,8,5,6,8,2,8,1,6,3,1,1,1,1
-0,0,1,2,3,2,4,6,8,4,3,7,10,4,5,7,8,6,14,15,6,4,9,17,6,6,8,5,7,8,6,9,3,7,4,1,3,0,0,1
-0,1,1,1,4,4,4,5,2,2,4,7,4,12,11,11,15,13,7,11,10,6,8,4,5,11,13,4,7,11,7,3,8,5,2,1,1,3,0,1
-0,1,1,1,1,2,5,6,5,7,6,3,8,11,13,8,14,14,8,12,8,5,15,13,13,15,10,9,3,4,6,4,7,1,4,4,3,3,2,1
-0,1,0,1,1,4,2,4,3,3,3,8,7,4,10,13,10,6,17,16,20,7,12,16,6,6,11,12,7,4,2,7,7,1,4,4,1,1,1,0
-0,1,2,0,1,2,6,5,8,6,7,6,11,6,7,12,9,7,16,7,10,12,14,9,15,11,5,3,6,9,9,3,5,2,3,5,3,3,1,0
-0,0,1,0,4,4,1,7,4,5,6,9,11,6,3,7,10,15,11,17,19,15,8,14,16,14,14,8,3,2,9,6,5,1,3,5,2,0,1,1
-0,1,0,3,4,5,5,2,8,2,2,4,6,5,6,13,7,9,7,6,8,10,13,4,4,6,14,8,10,3,9,6,7,6,2,1,2,3,1,0
-0,1,1,0,3,3,2,4,2,6,4,3,11,11,6,3,10,10,18,13,14,8,12,8,8,13,6,7,6,5,9,7,8,3,6,5,4,3,2,0
-0,0,1,2,4,3,4,4,4,8,6,8,5,11,13,4,16,11,11,7,6,18,13,9,10,10,5,9,10,4,2,5,8,5,3,5,4,1,1,1
-0,0,0,2,1,2,3,2,6,2,10,2,12,7,8,15,16,8,16,13,11,14,14,16,15,14,7,5,3,4,2,2,2,1,2,2,1,0,2,1
-0,0,1,0,3,4,5,6,5,8,3,4,10,5,3,10,9,15,4,13,5,17,9,4,15,6,6,3,3,3,10,7,7,7,1,1,4,0,0,1
-0,0,0,3,4,5,1,5,4,5,5,5,4,12,14,6,10,14,11,19,12,11,8,16,14,6,13,8,8,9,3,9,3,1,2,5,3,1,2,1
-0,0,2,2,3,2,2,1,7,3,3,8,12,3,12,5,12,11,5,12,10,8,17,16,16,12,5,7,3,2,3,6,8,3,1,5,2,1,1,0
-0,1,2,1,4,5,1,6,2,3,10,7,11,6,11,5,6,4,17,5,5,5,16,6,10,12,11,5,10,11,9,2,2,5,1,2,4,3,0,1
-0,1,2,2,4,2,3,2,4,3,2,3,3,8,8,11,4,6,9,11,14,9,14,14,15,15,10,6,7,2,9,9,6,1,2,2,3,1,0,0
-0,0,2,2,2,1,5,4,7,7,2,9,12,6,7,15,10,4,12,4,20,7,18,16,9,15,4,11,4,10,4,8,5,2,3,1,4,0,0,1
-0,1,0,3,2,4,1,5,8,5,5,10,9,12,10,4,4,14,16,4,20,14,10,15,6,6,6,8,7,5,7,5,5,1,6,5,4,3,1,1
-0,0,0,2,2,3,4,1,8,5,6,5,8,12,14,6,4,10,18,10,10,11,7,15,6,14,11,10,9,2,2,9,3,6,6,2,4,2,2,0
-0,0,2,3,2,4,2,3,2,6,2,10,10,7,4,13,14,11,17,16,6,8,4,16,12,15,6,11,12,5,10,3,6,4,6,3,2,2,1,0
-0,0,0,3,2,1,5,3,4,3,6,5,5,9,13,11,6,6,7,11,8,17,11,16,14,8,13,7,9,9,7,3,2,2,1,2,2,1,0,0
-0,0,1,3,3,3,3,3,5,4,4,9,9,13,4,11,14,5,13,10,11,18,11,8,11,6,8,5,5,2,4,2,6,1,1,5,2,2,1,0
-0,0,1,2,3,5,4,7,3,3,7,7,3,3,8,4,16,9,9,9,5,4,12,6,4,15,3,11,4,4,3,5,4,6,5,2,4,0,1,0
-0,0,2,3,2,1,4,7,8,4,4,11,12,6,9,13,10,11,13,4,17,16,12,5,4,11,11,5,12,2,10,2,4,3,4,2,4,2,0,1
-0,0,2,2,1,1,4,4,5,2,8,10,4,9,13,5,11,5,10,5,9,15,18,14,11,11,7,6,11,10,4,8,2,7,2,2,2,1,0,1
diff --git a/05_src/data/assignment_2_data/inflammation_05.csv b/05_src/data/assignment_2_data/inflammation_05.csv
deleted file mode 100644
index 25ef868c6..000000000
--- a/05_src/data/assignment_2_data/inflammation_05.csv
+++ /dev/null
@@ -1,60 +0,0 @@
-0,1,0,2,4,4,5,1,2,5,5,8,10,12,10,9,15,9,7,9,10,7,5,8,9,6,7,5,11,9,3,8,6,7,5,1,3,0,2,1
-0,0,2,1,1,4,4,6,2,4,4,4,7,12,11,15,10,9,12,15,7,17,14,12,6,12,5,11,3,9,7,8,8,3,3,3,1,1,0,1
-0,1,0,0,1,2,2,3,4,8,5,2,7,13,14,13,15,16,15,13,18,4,10,11,6,3,14,4,4,6,10,8,6,2,6,2,3,0,0,1
-0,1,0,2,1,3,6,1,3,4,10,2,8,11,11,12,14,12,15,15,20,11,12,7,4,15,9,11,9,5,10,7,5,2,3,1,4,2,0,0
-0,0,2,2,3,3,5,1,4,2,9,7,5,7,11,10,14,6,9,7,18,15,15,5,6,14,5,5,11,9,8,9,8,1,6,4,2,1,2,1
-0,0,0,2,3,4,4,5,3,2,9,8,8,12,11,6,15,8,17,14,20,7,8,10,4,11,9,6,7,7,2,3,5,6,3,4,3,3,0,0
-0,1,1,1,3,1,6,4,5,5,2,6,9,13,13,11,10,6,15,16,14,16,14,10,5,9,8,4,9,4,5,9,7,5,6,1,2,1,2,1
-0,0,2,3,1,4,6,6,4,5,3,5,10,8,6,8,4,14,7,17,7,5,17,8,10,10,10,3,11,3,9,6,6,7,2,1,3,1,2,1
-0,0,2,1,4,4,4,7,5,5,10,8,6,12,14,12,6,6,16,5,6,15,10,5,15,13,13,7,3,11,9,3,7,4,5,4,1,2,1,1
-0,1,2,1,2,3,6,1,2,6,10,7,12,6,3,4,4,16,16,18,9,7,10,10,16,12,11,6,3,10,6,8,5,3,4,1,4,2,1,1
-0,0,1,3,2,1,1,4,4,5,10,9,6,5,12,13,4,16,11,19,11,15,13,13,9,7,12,5,3,7,8,8,6,2,5,5,3,3,2,1
-0,0,1,0,1,3,1,3,4,7,7,8,8,6,7,5,10,12,6,15,15,8,12,8,14,5,5,7,9,4,9,2,3,4,5,3,4,2,2,1
-0,1,0,0,2,1,5,1,8,3,7,2,5,13,9,9,10,12,9,5,12,7,5,8,16,5,6,5,4,4,2,2,4,1,3,5,2,1,0,0
-0,1,1,2,1,4,2,3,3,9,2,7,6,7,6,3,13,11,13,15,14,15,8,15,14,13,8,9,10,8,5,9,7,4,6,2,4,3,1,0
-0,1,1,3,2,4,2,7,3,8,5,9,10,7,9,4,4,5,4,10,13,4,9,9,12,8,7,5,3,4,5,9,6,1,4,1,2,0,0,1
-0,0,2,2,4,5,6,2,5,3,5,5,11,6,8,8,6,6,10,17,19,9,11,8,7,11,4,5,12,6,3,8,7,5,2,5,1,3,0,0
-0,1,0,2,4,3,6,7,7,9,2,7,9,5,12,7,8,5,15,12,13,16,18,5,13,15,4,8,3,4,7,8,6,1,5,4,2,1,2,0
-0,1,1,3,4,5,4,3,4,9,10,5,11,10,7,6,10,7,15,18,14,17,15,16,13,14,6,4,6,8,9,6,5,2,4,5,4,1,2,0
-0,0,2,1,3,4,3,6,8,5,6,2,10,11,11,10,5,15,9,18,10,15,11,15,8,15,7,13,7,5,4,3,8,6,5,1,1,0,0,1
-0,1,1,0,2,1,4,4,4,5,10,11,12,10,7,10,7,16,16,8,14,18,8,16,7,13,14,12,9,2,10,9,7,7,2,2,3,2,0,0
-0,1,0,1,1,2,4,1,4,5,5,7,3,12,10,9,5,5,17,4,8,12,5,11,11,4,13,7,6,4,6,8,7,3,6,5,2,1,1,1
-0,0,2,2,2,4,1,4,7,5,8,11,12,5,3,4,6,6,17,17,16,7,4,17,16,4,11,3,11,4,4,2,2,5,3,3,2,1,0,0
-0,1,0,1,4,2,6,3,7,6,9,8,4,9,10,7,7,6,6,5,5,13,17,4,11,15,13,3,10,5,10,4,4,2,4,4,2,2,0,0
-0,0,2,3,2,4,6,4,3,5,6,5,10,10,8,9,15,16,17,14,5,18,17,6,7,6,7,11,7,10,3,2,5,2,2,3,4,3,1,1
-0,0,1,0,1,1,3,1,4,7,8,10,11,11,8,13,9,7,12,14,16,10,10,15,9,4,9,10,3,10,10,9,8,5,2,2,3,3,1,0
-0,0,1,1,4,5,3,4,8,2,10,6,6,5,9,3,16,16,18,10,16,19,11,8,15,3,11,3,6,3,3,5,5,2,1,4,3,1,2,0
-0,0,2,2,3,5,4,5,5,7,4,2,4,12,11,6,7,17,18,4,10,5,8,15,16,10,7,12,6,4,4,8,2,3,4,3,4,1,2,1
-0,0,0,3,2,1,2,7,4,7,10,11,12,3,13,5,6,14,10,16,13,10,11,8,11,13,11,8,12,8,6,3,2,6,5,1,2,1,2,0
-0,1,1,2,4,1,5,7,6,5,4,3,11,10,4,10,9,6,16,12,5,4,4,10,9,5,14,5,6,4,2,4,7,6,3,4,4,2,2,1
-0,0,2,0,3,3,3,7,2,4,3,8,6,13,5,9,7,12,13,18,8,13,6,6,15,3,10,7,10,7,5,5,3,6,4,5,3,1,0,1
-0,0,1,2,4,1,5,7,6,5,4,3,12,12,13,5,15,8,12,5,12,4,7,6,5,9,3,3,7,3,7,7,2,4,4,2,3,3,0,0
-0,0,0,0,1,2,6,3,4,2,2,10,3,9,6,10,6,11,11,19,12,15,14,10,15,9,11,7,3,3,8,7,7,7,5,1,3,0,1,1
-0,0,2,2,1,1,5,6,6,7,5,7,12,5,7,5,15,11,7,13,15,19,14,13,15,4,11,5,6,7,2,4,7,5,5,5,3,1,1,0
-0,0,0,2,1,4,5,3,3,2,7,7,5,4,9,6,16,8,13,12,16,17,5,15,13,6,8,13,12,6,3,7,7,2,2,2,2,1,2,0
-0,1,2,1,4,5,5,1,7,6,5,10,9,4,4,5,16,4,5,4,6,9,11,4,4,5,4,8,10,7,6,7,8,1,6,2,4,1,2,1
-0,1,2,3,4,2,2,1,3,2,9,2,8,9,8,13,5,11,13,8,20,7,6,15,4,7,14,4,8,9,7,6,3,3,5,5,4,2,0,1
-0,0,2,0,4,4,6,3,4,8,4,8,10,13,6,10,10,15,6,13,10,6,16,6,5,3,10,6,9,3,6,7,4,6,1,4,3,2,2,1
-0,0,0,2,3,3,3,3,6,7,5,6,10,8,13,5,14,9,11,6,10,17,7,10,15,3,4,10,12,11,7,7,4,5,6,4,1,1,0,0
-0,1,2,0,3,1,4,7,8,2,5,4,7,11,11,14,12,17,10,11,5,18,14,14,9,7,5,8,9,7,9,8,2,7,3,1,2,1,2,1
-0,0,0,2,1,4,2,1,7,5,9,8,8,6,9,3,11,9,17,6,10,11,17,16,16,10,13,13,6,10,6,9,2,2,2,1,2,0,0,0
-0,0,1,2,4,4,3,5,3,3,2,6,9,13,6,13,6,4,15,6,15,11,6,14,6,7,13,4,3,11,4,4,8,4,1,3,2,1,0,0
-0,0,2,2,4,5,5,1,5,2,9,6,6,7,14,15,11,17,13,19,18,18,16,4,7,15,6,5,6,8,2,4,6,7,5,5,2,2,2,0
-0,0,2,1,2,3,6,5,8,5,3,8,11,4,6,5,15,17,9,7,16,9,18,6,9,13,12,10,6,10,2,7,6,5,3,4,2,0,1,1
-0,0,0,2,1,5,4,2,5,6,7,6,6,9,3,15,9,11,14,14,14,10,5,10,11,11,12,10,6,4,8,7,4,5,2,2,3,3,1,1
-0,0,0,1,1,1,6,3,3,4,7,7,9,7,14,3,7,8,12,7,6,7,7,6,8,14,4,6,8,10,4,3,3,5,6,5,2,3,1,0
-0,0,2,2,4,3,4,2,8,6,2,8,12,9,5,10,11,16,16,14,9,15,7,17,13,11,10,10,3,4,3,6,5,7,3,3,2,2,0,0
-0,0,2,0,3,1,4,4,4,4,9,11,4,9,12,15,4,13,9,13,11,17,5,15,8,6,8,3,12,8,7,3,2,7,3,3,4,0,0,1
-0,0,0,1,1,3,1,5,4,8,8,5,9,3,14,15,7,11,10,17,20,8,13,10,9,7,6,8,3,2,4,4,3,3,1,1,4,0,0,1
-0,1,0,1,4,5,3,7,2,3,9,7,3,11,3,12,6,16,16,13,12,8,14,17,9,13,8,8,9,4,2,8,5,6,1,5,3,2,0,1
-0,0,0,1,4,1,5,6,4,9,3,5,7,9,11,15,10,9,8,18,18,19,12,4,6,4,11,11,5,11,10,3,8,5,4,1,4,2,0,1
-0,1,1,0,3,4,1,7,7,4,2,8,7,12,14,8,6,8,12,15,18,8,12,17,14,4,12,7,10,8,5,2,8,4,2,4,2,0,1,0
-0,1,1,2,2,4,5,2,7,9,7,6,10,9,9,4,16,4,11,12,6,10,16,12,7,11,14,8,12,7,6,7,8,1,4,4,1,0,2,0
-0,0,1,3,3,1,3,3,3,2,6,9,6,3,13,15,7,16,17,15,10,16,4,17,8,13,4,10,12,3,5,7,6,6,4,3,4,0,1,0
-0,0,0,3,2,3,2,5,8,8,7,4,8,6,8,4,8,4,4,4,9,19,8,9,7,8,10,12,4,11,8,9,6,6,6,3,3,1,1,0
-0,0,1,2,3,5,6,4,8,4,10,7,3,6,12,6,6,15,9,19,7,15,16,11,9,9,9,6,8,2,7,7,4,5,6,4,4,0,1,1
-0,0,1,0,1,3,5,5,5,3,4,9,10,5,6,5,13,9,4,6,5,16,5,11,5,12,10,5,7,10,6,9,6,3,4,5,3,2,0,0
-0,1,1,1,2,2,4,1,2,8,9,8,5,11,3,12,4,7,6,7,5,5,11,12,7,12,5,8,6,10,6,7,4,2,1,4,2,1,0,1
-0,0,2,1,3,5,6,2,3,8,6,6,3,3,11,5,4,14,10,11,5,15,10,15,13,12,13,10,3,2,2,5,7,6,1,5,4,0,1,1
-0,1,2,3,4,5,1,2,2,6,7,2,4,8,8,14,14,9,13,13,9,8,10,17,14,15,13,13,9,4,2,6,6,3,2,5,4,1,2,1
-0,0,1,0,3,4,4,3,3,9,3,2,8,11,8,7,9,15,7,19,16,15,6,16,5,13,9,11,5,3,6,9,5,3,3,2,4,1,0,1
diff --git a/05_src/data/assignment_2_data/inflammation_06.csv b/05_src/data/assignment_2_data/inflammation_06.csv
deleted file mode 100644
index 9f3352812..000000000
--- a/05_src/data/assignment_2_data/inflammation_06.csv
+++ /dev/null
@@ -1,60 +0,0 @@
-0,0,2,0,3,4,5,7,6,7,8,4,4,6,9,5,10,12,16,8,19,17,16,16,12,12,12,9,8,4,2,8,3,5,6,3,2,2,0,0
-0,1,0,2,2,4,2,4,2,8,7,8,5,6,12,3,13,14,18,4,10,17,14,11,9,15,3,10,3,8,10,7,6,3,6,1,1,3,0,0
-0,0,1,0,2,2,2,5,5,7,7,6,8,5,7,13,14,11,15,16,6,14,11,10,9,5,4,7,8,7,4,7,2,1,5,2,3,2,0,1
-0,0,0,2,4,2,2,2,4,4,5,8,5,9,8,13,8,9,11,15,7,8,18,14,16,3,6,7,9,6,8,7,2,3,2,2,1,2,0,1
-0,1,2,1,3,2,5,7,3,8,3,6,5,5,3,15,16,6,15,6,18,13,4,10,5,5,12,3,7,7,3,3,4,6,6,1,1,0,2,0
-0,0,1,2,3,1,1,7,8,2,2,6,8,12,12,14,6,5,18,12,13,6,17,8,14,3,4,7,7,4,5,7,4,5,2,2,4,0,2,1
-0,1,0,0,4,3,1,3,8,6,9,3,10,6,3,14,7,15,18,6,7,4,10,5,9,12,4,6,8,5,10,9,4,7,1,5,1,3,1,0
-0,1,0,3,2,1,4,6,5,6,3,9,11,13,11,15,16,13,18,7,9,6,15,10,16,5,7,10,9,9,3,4,7,2,4,2,4,0,2,1
-0,0,1,3,1,4,6,5,5,8,7,8,4,13,6,14,16,16,11,8,16,11,8,8,16,8,6,4,11,5,6,8,7,3,5,4,2,3,0,1
-0,0,0,2,3,3,5,2,3,3,4,2,8,10,5,13,7,4,15,9,11,5,12,4,11,7,4,6,6,3,4,3,8,2,1,5,4,1,2,0
-0,1,2,3,3,5,5,3,2,6,10,9,6,6,10,3,11,4,7,7,20,5,9,8,9,4,6,4,6,8,8,2,5,1,2,1,3,2,2,0
-0,1,1,3,1,1,4,3,5,4,3,6,9,13,10,10,12,14,14,12,5,14,10,9,10,10,11,4,10,6,4,9,2,6,4,2,2,3,2,0
-0,0,1,1,2,3,3,4,7,7,7,9,9,13,12,8,10,15,18,9,11,7,5,13,13,9,4,10,4,8,6,5,7,1,6,2,4,3,2,1
-0,1,0,3,1,3,1,2,3,8,5,5,4,4,6,5,10,7,7,19,15,5,11,6,11,11,7,8,5,8,6,4,6,6,4,1,1,2,1,1
-0,1,1,2,4,3,4,1,6,7,6,2,10,12,9,8,8,14,18,15,16,15,16,9,10,12,14,12,8,5,4,5,2,7,5,1,4,3,1,0
-0,0,2,1,4,1,5,4,5,6,10,11,3,5,13,11,4,8,13,11,6,10,12,5,16,4,9,5,3,4,7,4,6,7,5,2,3,2,2,0
-0,1,2,1,4,4,4,3,2,9,7,2,9,3,11,12,14,8,18,9,8,13,4,12,14,3,10,12,8,8,10,8,6,2,6,3,1,1,2,0
-0,0,1,2,3,4,6,7,2,3,6,5,12,13,4,12,8,14,13,18,7,18,9,9,15,7,12,11,4,7,10,7,2,3,2,5,4,0,1,0
-0,1,1,1,1,3,1,4,8,3,3,10,6,10,9,5,11,10,6,9,19,4,18,7,10,15,3,3,10,9,10,3,6,1,1,2,3,2,1,0
-0,1,0,3,4,5,5,3,6,2,8,4,10,8,12,12,11,4,18,6,19,5,7,14,14,5,8,4,10,6,3,8,7,1,6,5,3,2,0,1
-0,1,0,1,4,1,1,5,5,3,4,3,11,6,11,11,6,12,13,10,16,5,15,15,12,5,13,5,8,6,9,7,3,3,3,1,4,2,1,1
-0,0,2,1,4,2,1,4,4,5,6,11,7,10,8,7,16,11,16,11,9,7,6,17,9,3,4,6,9,11,7,5,8,6,4,2,1,3,2,1
-0,0,0,0,2,5,5,1,6,2,8,3,8,13,10,7,7,6,4,9,7,8,17,15,8,14,4,12,5,3,9,7,7,6,3,5,2,3,0,1
-0,0,0,1,4,4,3,7,8,8,10,11,10,11,7,4,13,8,12,13,12,17,7,16,7,8,4,10,5,7,9,2,7,7,3,1,3,1,0,0
-0,0,1,2,1,5,4,7,2,4,9,10,4,4,10,11,5,8,11,6,8,17,5,15,12,11,8,8,5,5,3,5,4,5,1,4,4,1,1,0
-0,0,2,2,1,4,6,5,8,5,6,9,7,7,10,5,14,7,7,13,6,11,7,11,8,12,10,5,4,5,10,5,3,1,1,2,1,3,2,1
-0,0,2,0,3,1,4,3,7,8,3,11,3,10,9,9,7,5,7,10,9,7,6,7,7,4,11,6,5,7,3,5,3,4,2,2,2,1,1,0
-0,0,2,3,3,3,1,5,3,2,4,11,9,11,14,5,11,14,6,18,14,7,10,13,10,15,13,10,12,5,3,5,6,3,5,2,3,2,0,0
-0,0,2,1,2,3,5,5,6,7,5,4,12,9,5,14,6,14,7,4,7,17,9,9,12,14,6,13,4,3,6,9,8,7,3,1,1,2,1,1
-0,0,0,3,2,3,1,4,8,8,2,2,8,3,5,8,7,4,16,11,18,12,8,9,7,10,12,8,8,7,9,8,5,2,1,5,4,2,1,0
-0,0,0,0,3,4,6,6,8,5,2,9,8,8,11,8,10,12,8,13,9,5,5,17,13,9,3,5,11,4,4,2,4,5,5,2,4,1,1,0
-0,1,2,2,2,1,5,7,2,6,10,4,7,8,4,9,5,15,12,11,13,9,7,16,6,7,13,4,3,6,5,3,3,5,2,3,4,1,0,1
-0,0,1,3,1,5,1,7,5,5,2,7,6,11,10,8,13,16,6,7,11,4,11,14,13,7,6,4,3,10,4,8,2,7,4,4,2,1,1,0
-0,1,1,3,3,1,3,6,2,8,5,6,12,4,4,13,15,17,12,11,6,11,4,7,11,8,13,6,4,9,8,6,2,1,6,1,1,1,2,0
-0,1,0,0,3,3,4,6,2,8,4,9,6,4,8,14,15,16,7,18,6,8,13,7,6,7,9,6,4,7,10,3,7,7,6,4,1,1,1,0
-0,1,1,0,2,5,6,3,8,2,9,9,4,4,9,9,13,14,10,17,10,19,11,12,5,13,7,5,6,5,3,4,4,1,5,2,3,1,1,1
-0,1,1,2,2,1,2,2,8,4,8,10,10,13,7,9,12,5,10,10,17,14,9,12,7,15,11,9,4,11,7,2,5,6,6,4,2,0,1,1
-0,1,1,2,4,1,6,6,7,9,6,2,3,7,14,3,12,14,17,9,17,5,7,15,11,4,8,11,8,7,8,3,6,3,6,2,2,0,2,0
-0,0,0,2,4,5,6,1,6,8,5,9,12,9,12,9,15,4,14,4,18,13,11,8,12,14,11,10,3,7,10,6,2,3,6,4,1,2,2,0
-0,0,0,3,4,5,6,5,5,9,6,3,9,12,14,13,16,14,18,9,6,15,7,10,6,5,7,7,10,11,10,2,6,6,2,2,1,3,1,1
-0,0,1,1,1,5,4,3,5,9,8,10,9,13,5,4,14,7,10,14,20,7,7,12,14,8,12,5,7,8,10,5,7,4,2,4,4,2,0,0
-0,0,1,0,1,2,1,4,6,6,10,5,6,13,4,9,7,10,5,10,18,14,16,10,7,8,11,8,3,2,3,9,4,7,3,2,2,0,2,0
-0,1,1,2,1,1,3,7,2,8,10,10,7,9,10,5,13,4,12,17,5,5,16,16,15,9,7,3,10,10,2,9,3,4,1,4,1,0,0,0
-0,1,0,3,1,3,6,1,2,5,2,11,6,10,8,5,6,8,17,14,16,4,15,13,16,5,5,8,10,7,5,6,6,6,5,2,4,0,0,0
-0,0,2,0,4,5,6,5,6,4,3,6,11,6,11,13,13,4,5,4,9,15,7,5,5,7,12,5,8,3,3,6,4,5,5,2,3,3,0,0
-0,1,2,2,4,1,4,2,6,8,8,3,8,13,6,8,16,11,18,16,11,11,12,6,9,6,12,4,11,6,10,4,5,3,4,5,2,0,1,0
-0,1,0,3,2,4,2,6,5,7,4,3,8,4,8,3,7,7,11,13,7,7,10,17,5,4,6,7,6,3,8,8,8,2,5,3,2,1,2,0
-0,0,0,0,2,1,5,3,3,7,8,9,5,7,8,4,11,9,12,18,6,7,11,16,10,3,6,6,12,5,3,4,2,4,4,5,2,2,1,1
-0,0,1,2,4,3,6,5,4,6,8,7,9,9,13,11,14,7,5,11,9,14,16,11,12,13,7,3,7,10,3,6,4,2,4,4,3,1,1,1
-0,0,2,3,1,2,4,2,3,3,3,10,5,13,7,9,15,13,6,17,14,4,12,10,12,8,13,11,10,3,7,4,2,7,5,5,3,1,0,0
-0,1,0,0,2,1,2,3,3,7,2,9,9,6,12,14,15,13,18,17,14,10,8,14,4,6,3,8,3,11,9,4,2,6,5,3,1,3,0,0
-0,0,1,2,2,2,6,2,3,2,4,8,10,7,6,11,6,17,4,17,12,15,17,11,4,9,9,13,3,7,5,2,5,4,6,2,2,0,1,0
-0,0,2,3,4,2,6,3,4,3,4,7,10,11,11,14,16,6,6,17,7,12,17,7,9,7,10,4,3,8,9,9,6,6,6,4,1,0,1,1
-0,0,1,2,1,5,4,3,8,2,10,11,9,7,8,4,15,7,13,9,12,9,15,13,9,11,11,4,9,5,5,7,3,6,6,2,3,1,1,0
-0,1,1,0,3,2,2,7,2,5,7,9,12,4,5,9,16,11,9,15,18,5,10,13,7,11,3,13,6,11,2,8,7,7,4,4,3,2,0,1
-0,1,0,1,2,2,4,3,6,5,2,4,10,3,8,7,11,10,9,12,11,16,12,14,9,3,10,12,5,2,5,8,7,6,4,1,4,3,2,1
-0,1,0,3,3,1,3,2,3,2,10,5,6,4,3,11,8,7,14,12,7,14,8,9,14,14,3,11,8,9,5,3,6,3,1,3,3,2,2,0
-0,0,2,2,4,3,1,3,4,4,7,3,10,9,11,8,5,8,14,16,16,18,9,12,14,3,9,11,7,8,2,3,7,4,3,4,3,2,2,0
-0,1,0,2,4,1,4,3,6,8,7,7,6,7,6,14,9,7,4,18,13,14,18,4,7,6,10,9,12,10,10,9,6,5,2,3,2,1,0,1
-0,0,1,1,4,3,5,1,3,6,6,6,12,5,7,12,16,14,10,10,9,10,9,8,9,9,6,12,12,2,5,4,8,5,6,5,1,3,2,0
diff --git a/05_src/data/assignment_2_data/inflammation_07.csv b/05_src/data/assignment_2_data/inflammation_07.csv
deleted file mode 100644
index 2e1fd153d..000000000
--- a/05_src/data/assignment_2_data/inflammation_07.csv
+++ /dev/null
@@ -1,60 +0,0 @@
-0,1,0,2,2,5,6,2,4,7,2,2,11,5,6,4,4,7,18,17,9,5,7,15,10,4,10,3,3,2,3,4,3,7,3,3,4,1,1,1
-0,1,0,2,3,4,1,5,3,9,2,5,8,10,10,14,15,16,7,9,10,14,6,9,4,6,6,12,7,3,9,5,6,7,3,2,1,0,0,1
-0,0,1,2,3,4,6,7,6,4,5,9,6,13,5,12,8,10,7,6,7,12,8,13,6,9,14,6,12,2,9,9,3,3,2,2,1,1,1,0
-0,1,2,2,1,1,3,4,7,4,2,7,12,6,9,10,12,8,11,15,5,16,18,10,16,8,7,8,5,4,6,8,4,4,5,2,1,2,2,1
-0,0,2,1,2,5,3,5,6,4,4,2,9,3,10,15,5,17,16,6,6,16,7,6,13,8,4,5,3,10,2,2,8,5,3,3,2,1,0,0
-0,0,1,0,2,5,1,1,7,5,3,10,8,10,7,6,10,11,8,17,8,17,7,7,7,14,8,9,4,5,8,3,7,3,3,5,4,2,2,0
-0,1,0,3,1,1,1,1,6,5,7,3,4,4,9,10,12,8,5,19,14,15,11,5,4,13,7,10,3,5,5,5,8,5,1,3,4,1,0,0
-0,0,1,0,1,2,1,1,6,7,10,10,6,13,11,6,6,11,5,5,14,18,14,14,5,3,12,5,7,8,4,5,7,1,3,4,4,2,2,0
-0,0,2,1,1,4,6,5,5,6,2,2,6,4,10,6,5,15,12,5,12,14,9,16,8,10,9,7,4,10,5,5,7,3,1,3,2,2,1,0
-0,0,2,2,1,1,6,4,6,3,10,6,12,5,5,10,8,6,10,14,15,17,17,4,15,12,7,3,11,6,8,4,4,1,5,4,1,3,1,1
-0,1,2,0,2,2,4,7,4,4,4,3,6,3,9,8,13,12,8,5,6,12,14,5,10,6,7,10,11,7,6,4,8,3,4,5,4,1,1,0
-0,0,2,0,4,2,2,5,3,6,6,7,9,4,3,13,16,10,16,5,12,7,12,5,5,12,4,12,4,9,6,4,6,5,4,3,1,3,0,1
-0,1,0,3,1,5,1,5,7,4,10,4,7,12,11,8,13,17,5,15,18,12,5,17,13,3,8,4,12,2,7,3,8,7,5,4,4,3,0,1
-0,0,1,2,2,4,5,3,6,8,4,11,8,4,4,4,6,17,5,10,15,15,7,13,16,12,4,9,8,4,4,5,4,6,5,2,4,1,0,0
-0,0,0,3,1,4,6,5,4,3,5,9,9,9,8,5,5,5,17,10,19,10,8,9,11,4,9,7,3,8,4,6,3,6,4,4,1,3,2,1
-0,1,1,1,2,2,1,7,2,5,9,5,8,3,7,3,5,7,10,10,13,8,4,5,8,12,7,8,12,2,9,4,4,1,5,3,2,3,1,0
-0,0,1,3,4,5,5,1,3,3,8,2,5,3,8,14,15,5,6,8,16,15,7,12,11,11,7,4,12,7,4,8,8,1,6,2,1,1,2,1
-0,1,1,1,1,4,2,4,4,4,6,8,11,13,12,3,9,11,14,17,12,16,8,13,7,15,14,9,10,7,7,3,2,2,1,3,3,1,0,1
-0,0,1,3,4,1,6,3,4,3,7,3,9,5,12,7,8,11,17,17,13,7,7,5,14,5,11,4,7,2,9,4,7,1,3,4,1,1,1,0
-0,0,1,3,3,2,5,3,6,4,5,8,12,4,12,13,7,5,16,12,20,4,16,7,5,3,10,11,5,10,10,7,2,7,4,5,2,3,2,0
-0,0,1,0,2,2,2,1,4,8,10,4,12,9,6,9,5,13,15,12,20,12,12,11,15,10,4,7,4,7,6,2,5,7,5,5,1,0,2,0
-0,0,1,0,1,2,4,4,3,2,2,5,10,5,10,4,10,16,9,14,5,16,11,13,5,3,9,13,7,6,3,7,2,7,1,1,4,1,1,1
-0,1,1,1,3,3,4,3,2,8,10,9,4,13,4,15,10,12,4,15,7,9,16,16,7,8,8,10,5,9,4,3,4,5,6,2,1,1,0,1
-0,1,0,2,2,4,1,4,5,8,10,5,8,13,10,4,5,7,16,18,20,10,13,12,15,12,12,13,9,9,10,3,3,3,6,4,2,3,1,0
-0,0,1,1,4,5,2,1,2,8,10,7,4,5,11,11,7,7,17,6,14,5,17,8,9,15,9,12,12,5,8,6,6,3,1,1,2,3,1,1
-0,1,1,0,3,1,4,5,4,2,10,4,10,12,5,7,13,9,18,5,8,19,13,8,7,14,4,13,3,11,3,7,3,2,1,1,2,3,2,1
-0,1,2,2,4,2,3,6,4,2,5,7,10,8,5,11,8,16,14,19,11,5,10,10,4,9,9,11,7,9,5,9,3,7,2,4,3,2,1,1
-0,0,1,1,3,4,3,3,4,6,4,5,3,12,11,14,14,9,13,7,19,5,14,16,16,11,10,10,9,3,6,3,4,5,6,1,3,0,0,1
-0,0,0,1,2,4,6,7,7,2,3,5,9,10,8,3,9,13,9,13,17,10,13,14,11,13,13,12,3,3,7,8,7,4,3,3,1,0,0,0
-0,0,2,2,3,5,6,3,7,8,8,11,4,6,6,3,13,5,10,11,14,19,14,12,7,10,14,10,7,4,4,5,2,5,4,1,4,1,2,1
-0,0,2,1,1,2,1,2,8,8,8,5,5,5,11,3,16,6,9,13,15,8,15,5,15,6,7,7,11,2,2,6,3,1,6,5,3,2,1,0
-0,1,1,3,2,5,3,3,4,6,7,2,7,6,14,6,15,13,7,5,5,12,10,7,6,15,14,12,4,6,3,8,7,5,2,4,4,3,1,0
-0,1,1,3,1,5,1,7,8,6,8,8,7,7,7,10,6,17,9,10,15,12,11,13,4,8,11,9,11,5,7,5,4,1,3,4,3,0,2,1
-0,1,0,1,3,3,2,2,4,8,8,4,5,6,6,10,14,5,6,13,12,16,15,12,7,6,4,7,10,7,7,7,3,6,5,3,3,2,0,0
-0,1,1,1,1,1,5,6,4,6,8,9,12,10,7,15,16,14,13,15,15,7,13,11,7,7,11,13,7,3,10,3,3,1,6,2,2,1,1,1
-0,1,2,2,4,4,5,1,2,3,10,3,12,10,11,7,10,8,4,11,14,19,16,14,8,7,14,5,5,4,3,6,4,4,2,3,3,3,1,1
-0,0,1,1,4,1,4,7,6,7,2,6,7,6,12,13,9,9,16,6,16,4,14,6,14,14,9,11,6,11,5,3,4,5,3,3,3,0,1,1
-0,1,0,3,4,2,5,7,5,2,3,10,12,8,7,7,10,10,5,18,13,18,16,13,9,12,12,6,12,6,5,2,7,7,5,1,4,1,1,0
-0,1,1,2,3,2,1,3,8,5,10,7,9,7,6,7,5,4,14,4,14,18,11,13,6,13,6,13,4,11,7,8,2,2,1,5,4,1,2,1
-0,1,1,2,3,2,5,1,3,3,10,10,7,12,4,11,13,9,10,12,13,6,11,11,6,7,11,11,12,3,5,7,3,5,2,3,4,0,0,1
-0,1,2,2,1,5,6,1,4,4,5,4,8,10,4,4,13,16,6,11,13,18,4,15,15,4,5,4,8,3,6,6,2,1,1,1,4,3,2,0
-0,1,1,3,3,3,2,1,2,9,2,2,6,9,10,3,5,16,9,6,18,16,12,8,11,15,7,11,4,8,8,4,8,3,2,1,3,2,2,1
-0,0,1,0,4,1,2,5,7,8,6,4,10,6,5,3,16,16,4,12,14,10,17,10,13,12,10,10,8,2,4,3,5,7,5,3,4,2,1,0
-0,1,0,3,3,1,4,5,5,7,7,8,4,7,13,12,16,7,4,8,5,9,10,17,16,7,9,13,4,6,8,6,5,5,2,3,2,3,0,0
-0,0,2,3,3,2,3,7,7,7,2,8,11,7,10,6,12,5,6,7,14,14,5,4,13,4,9,6,3,10,4,2,3,7,1,1,3,3,0,1
-0,1,1,3,3,4,3,2,6,2,3,5,6,10,6,6,7,6,12,19,19,8,5,14,12,6,4,8,11,6,2,4,4,2,5,2,4,1,0,0
-0,1,1,0,2,3,4,4,6,7,7,9,11,3,10,15,5,9,9,9,20,17,12,6,9,11,3,5,12,11,6,7,4,6,1,1,1,2,1,0
-0,1,2,3,4,3,2,1,4,7,3,10,6,10,4,3,15,12,15,6,11,14,8,4,12,6,4,12,11,7,9,8,6,2,1,2,4,3,1,0
-0,1,2,0,1,2,3,7,5,5,4,9,8,4,4,14,6,8,17,15,5,19,8,6,15,5,12,9,8,7,5,5,7,7,2,2,4,1,0,1
-0,0,1,1,4,5,1,3,5,2,9,10,7,11,5,12,14,15,12,15,16,11,4,6,16,6,12,12,4,2,10,4,8,4,2,5,4,3,2,1
-0,1,0,1,3,5,1,7,4,5,4,7,7,6,13,13,10,14,5,9,16,4,7,9,14,12,5,6,9,11,4,6,5,6,2,3,1,0,0,0
-0,0,0,0,4,3,4,7,3,8,3,6,9,3,3,9,15,6,11,8,20,8,15,10,12,4,14,5,4,9,4,9,5,7,3,4,1,1,1,0
-0,1,1,1,2,2,6,1,2,3,7,3,3,7,5,13,12,6,5,7,7,6,17,11,4,10,12,7,11,7,8,6,5,4,1,4,3,3,2,1
-0,1,1,0,3,4,5,5,8,7,8,6,5,12,4,8,7,8,13,7,6,17,8,4,8,15,3,7,5,11,5,8,6,2,4,4,2,3,0,0
-0,1,2,3,1,3,1,1,5,4,2,9,12,8,7,6,16,15,9,15,16,18,4,12,16,3,12,12,12,10,7,5,2,5,5,3,4,2,2,1
-0,1,2,0,2,3,1,1,2,4,9,6,6,13,7,3,6,13,14,17,12,6,11,14,12,5,13,5,8,11,4,2,6,7,6,4,4,3,2,0
-0,0,0,0,2,5,4,3,3,6,8,8,9,9,10,11,16,5,8,13,11,6,5,12,14,8,4,3,6,6,5,7,7,4,2,4,3,2,2,1
-0,1,2,2,4,2,3,2,4,4,8,8,6,4,3,8,9,12,16,19,5,5,10,11,16,15,11,8,5,6,6,4,4,6,6,4,3,3,2,1
-0,1,0,2,3,4,4,4,4,7,2,6,5,9,14,8,13,12,13,10,7,18,15,17,14,15,3,11,6,3,10,4,3,3,2,1,3,1,0,0
-0,0,0,0,1,3,3,6,2,5,7,7,10,6,12,4,9,15,13,14,15,7,13,16,16,14,9,4,12,11,6,8,6,3,5,3,1,3,0,1
diff --git a/05_src/data/assignment_2_data/inflammation_08.csv b/05_src/data/assignment_2_data/inflammation_08.csv
deleted file mode 100644
index c301c9b66..000000000
--- a/05_src/data/assignment_2_data/inflammation_08.csv
+++ /dev/null
@@ -1,60 +0,0 @@
-0,0,0,2,0,4,1,7,2,6,4,7,2,4,10,7,3,13,9,3,0,1,0,15,0,5,12,3,8,6,8,6,4,3,3,2,0,0,0,0
-0,0,0,3,0,4,3,5,3,11,4,13,6,2,8,1,3,0,17,12,4,3,4,4,9,8,8,2,5,3,11,2,3,1,5,0,1,1,0,0
-0,0,1,2,0,1,0,1,6,9,4,3,7,5,4,14,8,5,0,10,5,4,9,12,4,5,5,8,6,2,0,0,1,7,6,1,1,0,0,0
-0,0,0,0,0,3,7,3,2,1,5,2,8,0,10,3,3,1,13,11,12,0,5,0,5,6,10,8,4,3,2,11,3,5,1,1,0,0,0,0
-0,0,1,0,0,2,1,2,3,9,6,14,4,6,13,8,7,13,0,15,3,1,3,1,6,4,4,0,4,2,5,11,3,5,6,0,0,1,0,0
-0,0,0,1,1,2,2,7,4,5,4,6,5,3,11,6,2,14,1,15,8,3,3,1,2,0,8,3,14,5,4,1,2,4,6,3,1,1,0,0
-0,0,1,2,1,0,0,1,1,5,2,14,9,1,12,12,1,13,10,14,2,13,4,16,8,0,12,2,3,4,7,6,3,2,1,0,0,0,0,0
-0,0,0,2,0,5,2,5,1,5,6,11,2,4,2,5,0,0,4,1,7,1,7,17,12,5,5,4,3,6,1,0,5,5,0,2,3,0,0,0
-0,0,0,2,0,2,6,3,1,6,3,9,8,4,11,5,0,10,9,3,9,5,5,16,10,2,2,8,10,1,1,0,0,2,2,1,3,0,0,0
-0,0,0,2,0,3,3,5,6,0,0,12,7,0,16,8,2,19,0,7,2,13,5,8,11,2,5,5,1,5,7,11,5,3,3,3,2,0,0,0
-0,0,0,1,1,5,3,7,5,8,5,10,4,4,13,8,8,6,14,14,8,9,3,1,0,1,6,4,10,4,5,2,1,1,6,0,0,0,0,0
-0,0,0,0,1,4,4,4,1,3,2,10,3,5,10,14,6,11,2,8,10,12,2,3,10,4,0,8,14,1,1,6,1,5,1,2,1,0,0,0
-0,0,1,3,0,2,5,1,5,1,3,8,5,6,7,6,7,14,4,15,0,2,3,0,2,8,16,1,13,0,3,5,0,4,1,2,0,1,0,0
-0,0,0,2,0,4,5,7,6,11,4,14,2,1,14,8,4,5,8,2,8,11,6,9,10,3,14,8,10,2,11,4,1,1,1,0,0,1,0,0
-0,0,0,0,0,5,4,1,6,0,3,7,7,5,11,8,1,7,2,13,12,5,6,10,16,2,12,3,3,6,10,1,2,3,4,3,2,0,0,0
-0,0,1,0,1,1,1,6,2,5,6,2,1,1,4,6,0,10,12,15,6,1,5,0,8,3,1,4,4,6,3,2,2,5,4,0,1,0,0,0
-0,0,1,1,1,0,2,0,1,8,6,5,3,1,2,12,5,12,2,14,9,8,4,1,14,1,11,7,10,1,5,6,4,7,6,3,2,1,0,0
-0,0,1,0,1,0,7,2,0,6,4,7,9,0,12,5,2,18,5,15,6,5,0,4,16,7,2,6,2,5,11,7,1,0,1,3,1,0,0,0
-0,0,1,2,0,1,4,6,1,12,6,9,0,2,8,3,6,0,7,12,5,15,10,5,16,7,1,4,11,6,6,5,2,4,1,1,1,0,0,0
-0,0,1,3,0,0,2,3,0,4,2,9,7,1,11,11,8,0,16,0,4,7,10,14,0,7,15,1,11,4,1,0,2,4,2,3,1,1,0,0
-0,0,1,2,1,3,0,3,6,4,4,5,9,3,14,7,4,20,6,0,6,7,7,5,8,7,13,8,3,4,9,10,3,2,0,0,3,1,0,0
-0,0,0,0,0,3,5,4,1,5,3,14,7,6,15,15,7,20,16,11,10,17,5,16,2,3,9,8,14,0,7,3,5,1,2,0,1,1,0,0
-0,0,1,0,1,0,3,5,6,1,3,13,6,2,16,0,8,11,7,1,10,12,0,1,12,6,6,4,12,3,0,0,1,1,3,1,3,0,0,0
-0,0,1,2,1,5,7,5,3,9,5,12,1,4,1,15,1,5,8,9,5,1,7,3,7,2,12,7,11,2,5,0,0,0,1,0,3,0,0,0
-0,0,0,3,0,0,6,3,5,1,6,14,6,0,4,2,9,13,12,13,8,6,4,15,8,5,16,7,13,3,11,3,4,1,5,3,1,1,0,0
-0,0,1,2,0,2,1,6,1,7,1,1,5,6,15,1,4,10,12,8,0,6,2,1,9,4,10,7,6,6,11,2,5,5,5,0,1,0,0,0
-0,0,0,3,1,1,4,1,0,4,4,5,1,6,14,16,4,10,12,8,10,1,0,19,3,2,9,7,3,5,8,5,4,6,0,3,0,0,0,0
-0,0,1,3,0,3,1,5,1,10,3,5,2,1,0,6,2,9,0,3,12,5,3,5,16,2,9,1,13,5,11,1,1,5,1,2,0,1,0,0
-0,0,0,1,1,3,2,1,4,4,3,7,3,6,1,17,4,11,0,13,6,8,8,2,3,5,0,7,14,1,4,7,0,0,1,1,3,0,0,0
-0,0,0,3,0,3,1,0,4,0,3,1,1,6,5,5,7,18,9,9,2,15,8,1,9,7,8,3,5,5,2,4,0,1,0,1,1,1,0,0
-0,0,1,0,0,5,0,3,2,8,1,6,4,6,15,9,6,15,11,6,3,11,3,13,7,0,7,0,5,0,5,1,1,0,1,0,2,0,0,0
-0,0,0,2,0,1,1,7,2,4,0,8,6,0,1,12,3,5,15,0,12,13,9,7,15,5,16,5,13,5,3,0,0,3,4,0,3,1,0,0
-0,0,0,0,1,5,3,0,1,4,0,12,1,5,13,3,8,20,15,4,2,14,1,6,3,8,3,8,7,3,0,9,1,0,1,1,3,0,0,0
-0,0,0,2,1,3,1,5,2,11,1,2,4,2,4,5,1,7,2,14,5,16,3,16,6,2,15,1,8,2,4,3,4,4,3,1,1,0,0,0
-0,0,0,0,1,0,7,7,2,7,5,10,2,1,17,10,4,8,16,4,9,3,3,8,5,7,6,0,4,1,1,3,0,6,2,1,3,1,0,0
-0,0,0,2,0,1,1,5,5,8,6,8,9,1,7,9,2,3,11,5,10,9,0,15,14,4,14,7,8,1,4,7,1,0,6,1,3,0,0,0
-0,0,1,0,0,1,4,4,5,5,0,8,6,1,17,16,7,20,7,13,5,16,9,6,10,7,4,5,3,5,0,5,2,1,5,0,2,1,0,0
-0,0,1,2,1,1,2,5,3,9,1,5,0,4,2,14,7,6,16,16,6,2,5,13,10,8,8,8,6,5,5,10,1,7,6,1,0,0,0,0
-0,0,1,2,0,0,4,1,0,11,3,0,1,0,14,13,4,16,12,0,10,12,0,18,16,2,10,3,5,5,4,8,5,1,3,3,0,1,0,0
-0,0,0,3,0,5,2,4,3,8,6,9,4,5,10,4,6,17,13,10,5,11,5,18,8,1,4,3,13,0,2,5,0,0,3,1,1,1,0,0
-0,0,1,3,1,4,7,5,5,8,1,3,2,6,8,1,8,3,17,16,1,10,1,9,3,6,1,1,8,0,0,3,5,4,3,2,2,1,0,0
-0,0,1,0,1,3,4,2,1,0,6,14,2,6,13,6,1,18,15,11,9,17,8,15,2,1,9,5,5,4,1,11,3,7,6,3,2,1,0,0
-0,0,1,0,0,5,7,4,1,6,3,2,5,0,16,11,2,6,16,0,7,4,5,7,13,4,2,8,9,2,0,2,1,2,3,3,0,0,0,0
-0,0,0,1,0,5,4,6,1,7,5,14,4,0,12,3,3,13,2,8,11,13,0,0,10,0,15,0,13,1,10,3,0,1,5,3,2,1,0,0
-0,0,1,3,0,0,1,4,5,6,2,9,6,3,3,2,7,19,6,1,12,9,8,18,11,4,7,6,5,1,1,4,4,2,1,2,1,0,0,0
-0,0,1,3,0,5,7,5,4,11,3,0,3,1,10,2,5,8,12,7,11,7,2,9,15,7,7,0,14,4,0,6,4,6,4,1,2,0,0,0
-0,0,1,3,0,4,5,3,5,1,3,10,4,2,2,16,6,1,12,1,11,5,2,5,14,2,2,3,10,6,0,3,5,7,6,0,3,1,0,0
-0,0,1,1,1,0,2,2,3,2,4,4,6,4,6,13,6,11,15,2,10,3,3,2,6,8,7,5,13,3,0,7,3,2,2,0,2,1,0,0
-0,0,1,3,0,3,0,3,6,3,5,9,3,3,10,3,9,1,9,6,12,13,8,11,16,4,2,3,1,5,1,9,4,0,5,3,2,0,0,0
-0,0,1,1,0,1,6,2,5,8,0,7,2,5,13,14,0,19,4,16,9,2,6,16,3,3,6,0,11,0,1,9,2,2,5,1,2,1,0,0
-0,0,1,1,0,3,4,4,5,5,0,6,7,3,14,9,8,7,6,1,0,13,9,3,1,2,5,0,12,5,5,0,5,7,3,1,0,1,0,0
-0,0,1,0,1,2,2,1,5,0,6,8,8,5,3,13,3,6,6,15,7,12,2,19,16,8,10,0,7,1,3,6,3,2,4,1,0,0,0,0
-0,0,1,2,1,3,6,5,0,7,5,7,2,1,11,1,5,4,1,2,6,7,7,7,13,4,2,2,9,1,12,0,4,6,1,0,3,1,0,0
-0,0,1,1,1,3,0,4,3,8,0,1,1,4,2,6,6,6,7,13,12,15,3,12,13,8,11,1,8,2,0,1,2,0,0,2,2,1,0,0
-0,0,0,0,0,3,6,3,3,3,0,11,8,6,4,0,3,17,8,2,8,5,3,18,5,8,1,6,0,6,12,1,3,6,0,1,0,0,0,0
-0,0,1,3,0,2,6,5,6,7,2,10,1,4,14,11,1,19,14,8,10,14,10,4,11,8,8,2,3,5,2,2,3,6,5,0,1,0,0,0
-0,0,1,2,1,2,4,5,3,10,5,10,0,4,12,8,2,12,8,8,4,14,1,13,2,8,6,5,1,4,3,2,3,6,1,2,1,0,0,0
-0,0,1,3,0,3,2,0,3,2,6,11,3,1,0,3,3,0,11,1,6,3,4,16,3,2,13,6,9,4,1,7,5,3,3,1,3,1,0,0
-0,0,1,2,1,0,4,3,1,6,4,14,4,3,14,17,1,0,8,5,4,4,10,2,14,5,11,0,6,4,4,5,0,3,0,0,2,1,0,0
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
diff --git a/05_src/data/assignment_2_data/inflammation_09.csv b/05_src/data/assignment_2_data/inflammation_09.csv
deleted file mode 100644
index 279e02670..000000000
--- a/05_src/data/assignment_2_data/inflammation_09.csv
+++ /dev/null
@@ -1,60 +0,0 @@
-0,0,0,2,4,5,5,4,4,6,8,2,3,8,7,13,8,14,17,6,5,15,14,13,8,6,9,9,11,10,3,5,3,1,5,4,4,3,2,1
-0,1,0,1,3,1,5,3,8,5,8,7,11,4,14,13,9,6,15,12,6,5,11,11,14,5,6,6,5,5,8,5,5,4,5,2,2,3,2,1
-0,1,2,2,4,1,4,2,7,5,10,6,12,3,9,9,9,5,6,12,14,19,9,6,7,6,14,3,11,2,2,4,3,7,4,5,3,0,2,1
-0,1,1,2,2,1,5,3,5,6,3,7,9,8,11,9,4,16,4,17,13,12,8,4,9,13,5,6,8,10,3,8,2,4,6,2,2,3,0,1
-0,1,2,3,3,5,3,4,4,6,8,7,10,11,6,13,4,6,5,6,10,10,17,6,9,14,13,5,3,9,9,3,7,1,6,1,3,0,1,1
-0,1,0,2,4,2,4,5,5,6,4,4,5,4,10,10,10,11,11,4,18,11,14,14,12,5,13,4,7,11,10,4,2,5,6,1,2,3,0,1
-0,0,0,3,2,4,3,1,6,4,2,6,7,8,10,6,16,10,15,5,16,18,16,4,9,13,7,11,6,7,7,6,5,6,5,4,2,1,2,1
-0,0,1,2,1,1,2,1,8,8,10,7,8,7,6,14,11,9,4,8,6,9,18,6,7,12,4,6,8,3,3,8,2,1,3,1,3,3,0,0
-0,0,2,1,3,1,2,7,2,8,7,7,9,13,5,10,9,10,5,16,7,4,8,6,10,13,11,5,8,4,3,3,5,5,4,5,3,3,1,0
-0,1,1,2,3,5,1,4,5,6,4,6,9,13,11,7,5,8,9,12,8,6,4,14,14,14,14,11,4,8,6,7,3,1,1,5,1,3,1,0
-0,1,0,3,1,2,4,4,6,3,8,9,4,10,10,3,12,17,18,15,13,19,10,8,8,5,12,10,11,4,7,3,7,6,3,5,1,3,2,0
-0,1,0,1,1,3,1,5,8,3,5,5,12,6,6,10,14,11,7,18,19,16,5,15,4,15,4,7,10,11,2,3,4,1,5,2,1,0,1,0
-0,1,0,1,4,2,2,2,2,7,4,4,7,3,6,6,15,10,17,17,20,7,6,16,4,7,9,13,3,11,5,5,7,2,5,3,1,3,1,0
-0,1,0,3,1,1,2,7,6,5,8,2,11,4,3,10,8,9,18,6,20,11,14,9,9,10,4,6,3,10,7,7,4,7,2,5,3,1,2,0
-0,1,0,3,4,3,1,4,3,7,3,6,7,3,11,3,6,7,14,12,18,12,13,9,11,13,13,7,8,4,10,6,7,2,6,2,1,3,0,1
-0,0,0,0,4,1,3,7,5,6,2,6,9,6,3,5,13,14,16,18,9,13,4,4,16,9,11,6,12,2,8,4,4,3,6,3,3,2,2,0
-0,0,0,1,4,4,1,2,8,7,4,9,10,12,11,13,9,10,12,16,7,14,16,17,15,10,12,11,10,5,10,4,7,5,3,1,3,3,0,1
-0,1,1,0,1,5,6,6,2,9,10,7,5,11,9,15,8,11,4,8,15,19,4,13,5,9,11,3,9,10,10,2,7,1,3,1,3,2,1,0
-0,0,2,3,4,3,3,6,6,2,6,11,11,10,10,6,9,5,9,17,7,8,9,13,11,9,10,8,5,7,3,4,6,2,4,2,3,1,1,0
-0,1,2,3,2,3,3,3,5,9,6,9,10,9,14,10,6,4,16,14,6,8,12,7,15,14,7,8,3,10,2,6,2,4,2,1,2,3,2,0
-0,1,2,1,1,4,4,1,5,2,9,4,9,11,9,3,5,13,13,6,16,10,12,16,10,3,10,8,4,7,5,9,5,5,1,5,3,2,2,1
-0,0,0,1,4,4,6,2,4,8,8,4,5,6,14,12,7,5,8,14,5,7,8,17,15,6,5,9,8,8,8,5,2,3,4,1,4,0,1,1
-0,1,1,3,2,2,6,4,5,9,7,8,4,13,3,11,7,7,17,8,12,11,9,6,13,14,11,13,10,3,5,4,7,6,3,4,1,3,1,1
-0,0,2,2,3,4,5,1,7,6,5,6,6,8,10,4,16,15,5,7,6,9,14,11,14,8,6,10,5,11,8,4,5,3,2,1,4,3,1,1
-0,1,1,1,2,2,1,3,5,6,5,6,7,5,8,12,9,5,4,7,12,13,7,14,15,9,3,11,7,9,4,6,2,1,6,1,3,3,2,1
-0,1,0,0,4,5,3,5,5,8,8,5,9,7,8,5,4,4,18,14,16,13,12,7,7,12,12,9,10,6,10,3,2,1,4,3,3,0,2,0
-0,1,0,3,3,5,1,2,3,5,5,5,5,9,11,8,5,6,15,13,9,14,13,6,6,4,6,13,9,6,9,4,6,2,4,3,3,2,0,1
-0,0,0,3,4,5,5,2,3,2,4,7,4,5,4,13,12,14,12,12,11,8,17,17,5,3,7,4,9,2,4,7,7,7,6,1,1,1,2,0
-0,1,0,0,1,5,5,6,3,3,8,9,9,6,7,14,14,9,18,6,12,13,10,12,16,5,10,13,9,7,9,2,6,7,5,3,2,1,1,1
-0,0,2,3,3,2,6,2,5,8,5,10,5,8,9,3,4,13,17,5,7,6,5,10,6,12,7,10,4,11,5,9,5,1,3,2,2,1,0,0
-0,0,1,3,1,5,4,2,4,8,3,7,3,13,6,11,16,16,17,13,13,11,7,17,16,7,4,12,9,10,10,9,5,7,3,2,3,2,1,1
-0,1,1,1,1,2,3,4,8,5,6,8,6,13,7,14,7,12,15,10,5,7,6,6,13,11,10,4,6,11,2,4,2,7,5,5,1,1,0,0
-0,0,2,2,3,2,3,1,8,9,6,6,10,12,6,9,7,12,11,17,15,18,15,13,15,3,11,9,8,10,2,2,3,7,2,2,4,2,2,0
-0,1,0,2,2,3,5,3,3,5,5,4,12,5,10,4,6,10,10,6,13,9,13,12,13,12,11,8,9,9,8,9,5,3,2,2,1,0,0,1
-0,1,1,3,1,5,4,4,6,6,10,10,8,4,4,11,15,6,6,7,10,15,11,17,6,13,7,9,11,6,10,2,3,2,2,5,1,1,0,1
-0,0,0,3,3,2,2,7,7,9,2,8,4,3,7,12,5,5,4,18,19,9,15,13,11,14,9,7,10,6,7,5,8,7,5,1,1,0,2,0
-0,0,2,1,1,5,5,1,7,9,3,9,5,6,8,8,12,4,12,14,18,5,7,11,16,14,12,11,8,5,3,9,2,4,6,4,4,1,2,0
-0,1,0,2,1,2,5,5,2,2,3,11,5,5,6,3,6,9,10,7,14,8,7,7,14,14,5,10,5,8,9,9,6,5,1,1,3,3,1,0
-0,1,1,2,3,4,1,5,6,7,4,2,11,11,11,8,13,4,11,16,12,18,18,11,9,5,3,7,7,11,7,5,4,5,3,1,2,2,1,1
-0,1,2,2,4,2,2,4,4,7,9,8,12,3,6,7,14,9,7,13,9,11,10,12,10,4,4,11,5,7,8,4,6,1,4,5,3,0,1,1
-0,1,2,3,4,1,2,7,5,3,8,7,6,12,6,13,14,11,16,8,8,9,5,15,4,11,10,3,9,7,9,3,7,1,4,5,4,0,1,0
-0,0,1,1,1,5,5,5,8,7,10,10,11,3,3,7,16,8,9,18,13,5,18,4,16,13,5,7,9,4,5,9,6,2,2,3,3,1,0,1
-0,1,1,0,1,3,1,5,5,8,9,6,8,12,13,10,10,11,9,13,14,11,12,15,8,4,11,4,8,8,8,6,6,4,2,5,4,0,1,1
-0,0,0,0,4,4,6,7,7,8,4,5,7,3,14,9,5,15,13,12,20,16,14,15,6,13,6,13,5,4,5,3,2,5,2,4,4,0,0,0
-0,1,0,3,1,3,2,5,5,5,6,2,5,7,9,13,6,17,16,4,15,5,11,13,6,15,9,8,9,9,5,7,5,6,5,4,2,0,2,0
-0,0,1,3,3,3,2,5,3,4,2,11,4,7,11,3,12,4,10,17,6,17,9,7,12,8,8,6,10,5,4,3,3,1,2,4,1,0,2,1
-0,1,1,0,2,3,3,3,6,5,4,11,4,4,9,7,9,16,6,13,10,9,6,13,5,7,12,8,11,7,9,5,6,7,5,1,4,2,2,0
-0,0,1,0,4,2,2,2,3,9,2,9,3,3,9,12,16,9,13,5,15,16,13,5,15,9,11,11,11,7,10,7,6,6,1,2,2,2,0,0
-0,1,2,3,2,1,5,6,5,6,10,5,5,12,6,5,11,15,17,12,11,5,18,9,6,10,5,11,9,6,5,8,8,4,4,2,4,3,2,0
-0,1,0,0,2,1,1,1,4,9,10,5,7,3,5,9,12,17,7,10,9,9,18,13,5,7,3,7,7,8,6,8,6,2,1,3,3,2,0,1
-0,0,0,0,1,1,5,5,8,4,9,2,12,3,4,4,5,5,13,15,17,12,5,17,5,5,11,6,4,8,3,9,3,1,2,2,3,3,2,0
-0,1,2,1,4,1,6,6,3,3,4,9,8,10,9,7,16,7,5,4,20,18,7,6,7,6,11,7,11,9,3,9,5,3,5,5,3,1,2,1
-0,0,0,2,3,1,2,6,3,6,10,11,6,13,5,9,11,8,13,16,20,8,13,5,13,6,6,8,5,3,2,5,3,6,5,4,2,3,2,1
-0,1,1,1,2,2,5,5,5,9,6,4,6,12,4,5,11,17,5,19,10,6,8,7,10,13,14,4,8,2,7,3,2,5,4,5,4,3,0,0
-0,0,0,3,1,1,6,3,4,8,10,10,6,12,13,9,6,10,18,8,8,4,4,15,6,7,14,11,5,2,8,3,3,6,4,1,3,1,1,1
-0,0,1,0,4,1,2,4,7,2,6,7,7,7,13,7,11,7,8,8,5,11,10,12,14,10,6,9,11,8,4,2,8,7,4,2,3,0,0,0
-0,0,2,0,4,3,5,7,5,7,3,8,6,3,11,11,6,9,6,10,5,14,17,17,10,8,3,12,11,10,10,2,8,3,1,1,2,1,2,1
-0,1,2,0,4,3,6,5,2,9,7,2,8,11,9,9,8,14,17,8,15,13,4,4,8,11,13,3,12,2,7,5,3,7,4,1,3,2,0,1
-0,0,0,2,3,2,3,6,3,7,7,3,12,5,7,12,12,15,9,18,11,13,5,15,8,11,3,11,12,11,2,2,2,5,2,3,3,1,1,0
-0,1,2,0,4,2,2,7,5,5,9,8,4,9,7,7,9,12,10,6,18,14,14,10,6,8,4,5,5,10,5,9,7,1,1,4,2,0,0,1
diff --git a/05_src/data/assignment_2_data/inflammation_10.csv b/05_src/data/assignment_2_data/inflammation_10.csv
deleted file mode 100644
index cfb7423ba..000000000
--- a/05_src/data/assignment_2_data/inflammation_10.csv
+++ /dev/null
@@ -1,60 +0,0 @@
-0,1,0,0,3,2,3,6,7,5,10,9,10,9,5,15,12,14,13,9,15,17,4,4,4,8,5,4,7,10,3,4,4,1,1,3,1,3,0,0
-0,1,1,3,2,3,4,3,8,3,4,7,10,5,6,6,8,16,14,5,10,11,7,11,14,13,6,6,3,4,5,3,5,2,1,3,4,0,1,0
-0,1,0,3,1,1,3,5,6,2,2,8,11,9,14,4,13,6,16,15,8,7,6,17,15,14,14,10,10,10,4,4,6,7,4,5,1,0,0,1
-0,0,2,3,3,1,5,6,8,9,6,9,4,13,5,7,15,4,12,8,8,8,15,10,12,14,3,13,12,2,10,4,6,3,3,4,3,0,1,0
-0,0,2,0,1,4,1,3,4,7,8,9,9,11,7,4,13,14,11,16,11,13,10,6,12,11,11,5,11,10,7,4,4,5,1,5,4,3,1,0
-0,1,0,0,1,5,2,3,5,2,10,9,3,12,14,6,13,8,4,9,19,5,11,5,15,15,10,6,4,9,9,7,7,3,5,5,2,0,0,0
-0,1,1,3,3,1,2,5,7,4,10,7,12,3,3,12,10,6,18,5,9,7,11,14,9,5,10,8,9,9,6,7,6,1,6,1,2,0,2,1
-0,0,1,2,4,2,6,6,2,3,10,3,12,7,14,9,15,11,8,17,9,8,7,8,15,3,9,7,10,7,9,4,6,7,5,1,2,1,2,0
-0,0,0,2,3,2,5,6,4,4,6,10,9,6,8,5,11,10,10,8,11,11,13,6,4,7,9,5,8,8,3,2,2,2,4,5,1,2,1,0
-0,0,1,0,2,5,6,2,6,9,6,5,8,3,10,11,8,8,6,7,6,13,9,12,10,4,4,8,11,11,5,8,6,2,5,2,2,3,0,1
-0,0,0,1,4,4,1,7,5,3,3,2,4,5,6,13,9,10,4,19,5,9,16,16,5,10,4,7,8,4,6,2,5,4,5,1,2,3,2,0
-0,0,1,1,4,4,4,4,6,3,3,7,11,12,8,6,9,13,9,13,15,8,16,16,9,4,7,5,4,9,8,2,3,3,1,4,3,2,0,1
-0,1,2,2,1,3,2,3,4,5,10,2,4,6,11,10,13,9,15,18,14,6,12,9,16,9,10,11,5,7,3,3,8,3,4,5,4,1,0,0
-0,0,0,2,4,3,4,2,7,7,8,5,12,5,13,5,11,8,18,13,20,19,10,6,15,15,8,6,7,6,9,3,7,3,5,2,1,1,1,1
-0,0,1,0,3,2,1,4,7,9,4,5,7,13,12,15,13,14,12,7,19,10,7,14,13,13,14,11,11,4,6,8,6,7,6,3,4,2,2,1
-0,0,0,0,2,2,3,1,5,4,4,11,8,5,10,15,16,7,5,10,7,16,14,12,7,10,11,6,11,4,5,4,4,3,1,1,3,2,1,1
-0,1,2,3,4,5,5,7,2,7,5,10,4,13,5,10,6,5,8,11,18,9,13,9,8,14,11,7,6,6,10,9,6,3,6,3,3,3,0,1
-0,1,2,0,2,5,2,3,7,6,8,6,11,11,13,6,12,7,4,12,6,4,8,5,16,11,13,12,7,3,9,7,8,4,4,2,1,3,2,0
-0,1,0,3,4,2,4,4,3,3,10,7,8,7,11,10,12,10,17,7,10,17,12,9,16,11,10,4,6,4,9,2,2,6,1,2,2,0,2,0
-0,1,1,1,1,3,4,3,8,6,4,8,11,3,6,13,9,6,18,9,11,5,12,14,10,4,10,3,12,2,3,7,3,6,6,5,3,2,1,1
-0,1,0,3,2,3,4,5,8,2,2,4,9,10,12,15,12,8,16,5,7,15,12,14,14,12,5,7,11,4,8,2,6,2,1,5,2,2,1,1
-0,1,2,1,4,4,1,2,5,6,10,7,3,10,13,15,7,17,13,4,17,19,16,7,14,12,8,6,3,2,9,7,3,2,4,2,1,2,2,0
-0,0,1,1,1,5,4,5,6,7,8,10,4,8,5,14,13,6,15,17,16,13,5,16,8,14,4,7,7,6,7,2,8,2,6,1,2,2,2,1
-0,1,2,1,1,2,1,5,2,6,2,8,3,3,5,7,10,7,10,15,7,11,10,16,10,8,7,9,9,6,7,5,3,4,5,3,4,3,2,0
-0,0,2,1,3,3,3,6,7,4,3,6,3,6,4,8,5,10,5,6,20,10,18,4,13,12,8,11,4,6,8,5,2,3,5,4,1,0,0,0
-0,1,0,0,1,2,5,7,6,3,8,7,6,3,8,6,14,8,11,17,19,6,18,17,12,10,8,11,12,4,10,2,4,5,6,4,1,2,0,1
-0,1,0,2,2,1,4,3,5,5,3,10,6,6,6,13,6,14,10,8,12,4,10,11,9,4,7,5,4,5,3,3,5,7,2,2,2,2,2,0
-0,1,2,1,3,3,6,2,7,4,6,9,8,5,4,13,4,12,13,5,10,5,10,9,6,14,8,9,3,5,5,2,7,5,4,3,3,3,1,0
-0,1,2,0,3,4,4,6,8,6,8,9,9,10,11,13,16,5,6,15,10,16,14,11,16,15,10,9,10,10,5,5,8,7,5,3,2,3,1,1
-0,0,1,1,3,5,3,4,3,4,8,3,8,12,13,10,10,6,5,18,17,17,7,7,14,6,3,9,11,2,2,3,2,2,2,3,4,1,1,0
-0,1,1,3,1,1,6,3,3,5,10,7,12,7,14,4,11,17,6,9,17,4,15,15,4,5,8,6,7,7,2,2,5,4,3,1,4,0,2,0
-0,1,2,3,3,4,6,6,8,7,3,5,3,9,9,12,7,15,4,5,16,10,6,11,10,12,5,7,12,10,2,4,7,6,2,4,2,1,0,0
-0,0,1,3,4,4,2,4,8,5,7,6,4,3,3,9,15,8,10,15,6,11,18,8,15,13,4,8,10,10,9,4,4,4,2,5,4,2,1,0
-0,1,2,1,2,1,5,6,5,7,6,7,12,5,7,13,11,13,13,19,14,15,6,10,10,4,10,10,4,5,10,3,4,6,5,1,1,2,1,0
-0,1,0,3,4,4,5,5,8,6,9,7,11,11,8,7,5,12,15,9,11,7,8,12,8,15,9,4,10,8,3,7,3,6,1,5,2,3,1,0
-0,1,1,1,1,4,5,3,3,6,9,7,6,8,4,12,5,4,13,7,13,15,18,4,7,15,6,8,8,8,8,4,6,7,2,3,3,0,0,1
-0,1,0,2,3,3,5,6,5,2,8,11,10,13,3,7,9,16,11,12,8,16,18,11,10,13,10,8,8,10,6,5,3,1,2,3,2,2,1,0
-0,1,0,1,1,2,4,6,5,8,10,9,5,10,9,15,8,6,11,10,8,7,17,7,13,10,9,6,9,9,2,8,7,3,1,3,1,0,2,1
-0,1,2,2,2,5,3,2,2,8,3,11,7,9,5,5,6,16,16,11,17,19,14,8,9,13,12,5,7,9,10,2,2,6,1,5,1,1,1,1
-0,0,1,0,1,1,6,1,6,9,6,4,4,4,4,5,4,15,18,11,7,4,4,17,4,12,13,12,7,4,7,3,7,6,4,4,3,2,2,1
-0,1,2,1,2,2,5,1,3,7,5,8,5,7,9,4,14,8,18,14,9,10,12,11,8,5,13,6,10,6,7,8,4,6,4,3,2,1,1,0
-0,0,1,2,4,5,6,7,4,7,9,2,11,10,14,12,12,7,11,14,13,12,14,17,6,7,3,11,4,8,3,3,3,7,6,4,4,3,2,1
-0,1,2,1,4,5,3,7,3,4,10,5,10,8,11,4,10,4,13,7,12,16,9,17,11,11,11,13,9,3,6,9,7,2,3,3,3,1,1,0
-0,0,0,0,1,3,6,2,4,5,10,2,4,3,5,8,16,16,16,12,18,18,14,8,13,3,3,9,7,3,3,8,8,5,1,5,3,1,2,1
-0,1,0,1,3,3,4,7,3,8,9,7,5,8,3,10,5,7,15,13,5,4,6,6,16,7,3,4,9,11,9,9,4,1,2,4,2,3,2,0
-0,1,1,3,4,3,6,6,2,9,9,11,9,10,13,9,7,5,15,18,8,16,18,13,10,6,4,6,6,10,6,5,8,1,2,4,3,1,0,1
-0,0,2,0,4,1,1,3,3,7,5,2,4,6,6,11,7,4,5,15,19,11,13,8,8,13,6,13,7,4,9,5,2,2,6,2,3,3,2,0
-0,1,0,1,1,2,3,3,7,3,5,7,12,10,8,3,16,5,14,10,10,9,8,15,6,12,4,7,8,10,7,4,4,6,6,1,3,3,1,0
-0,0,0,1,1,4,4,1,6,6,3,3,12,6,13,11,16,12,8,8,8,18,5,14,9,15,7,13,6,9,2,4,3,6,6,3,1,0,0,0
-0,1,1,2,2,4,6,6,8,6,6,6,9,5,9,14,15,7,18,4,8,7,6,11,6,10,3,7,7,10,7,9,5,3,4,2,3,3,1,1
-0,1,0,2,3,4,5,1,2,4,5,2,7,13,9,4,16,12,5,11,8,6,16,6,16,8,8,10,6,8,8,9,4,5,2,1,4,1,0,1
-0,0,2,0,4,2,5,1,2,6,10,3,6,13,4,13,10,10,6,6,13,6,6,8,14,12,13,10,11,8,3,4,8,7,2,3,2,0,1,1
-0,1,2,1,2,3,2,5,7,2,2,2,5,8,7,7,6,17,18,13,7,13,17,12,6,13,5,13,3,2,4,5,7,7,1,1,3,2,1,0
-0,0,2,2,1,3,6,6,4,3,8,5,4,9,13,4,8,15,7,7,6,19,12,16,10,14,3,10,3,9,7,7,7,2,4,3,1,1,2,1
-0,0,0,2,1,4,3,6,7,9,5,7,11,3,7,6,10,5,6,15,10,14,10,5,15,15,7,13,5,5,9,2,7,5,4,3,4,1,1,0
-0,1,1,3,1,2,4,6,5,5,6,8,10,7,8,11,15,17,4,10,10,10,6,5,5,11,6,7,11,6,3,4,8,1,3,4,2,2,1,0
-0,1,1,0,1,1,2,2,4,3,2,11,4,4,13,3,8,7,5,5,18,9,18,17,7,7,7,10,5,10,2,9,3,4,4,3,1,2,0,0
-0,1,1,2,3,5,2,2,7,8,7,5,3,13,3,14,11,14,14,14,14,5,13,15,6,12,6,8,9,8,9,7,4,7,1,2,1,2,0,0
-0,0,2,2,3,1,2,6,3,2,7,8,6,11,4,12,12,11,18,14,6,11,8,16,9,3,7,13,6,3,4,3,3,2,1,1,3,2,2,1
-0,0,2,0,1,2,2,7,3,2,4,4,9,7,6,8,10,5,14,5,16,16,8,6,5,3,5,9,12,6,8,7,3,6,3,1,1,3,2,0
diff --git a/05_src/data/assignment_2_data/inflammation_11.csv b/05_src/data/assignment_2_data/inflammation_11.csv
deleted file mode 100644
index c301c9b66..000000000
--- a/05_src/data/assignment_2_data/inflammation_11.csv
+++ /dev/null
@@ -1,60 +0,0 @@
-0,0,0,2,0,4,1,7,2,6,4,7,2,4,10,7,3,13,9,3,0,1,0,15,0,5,12,3,8,6,8,6,4,3,3,2,0,0,0,0
-0,0,0,3,0,4,3,5,3,11,4,13,6,2,8,1,3,0,17,12,4,3,4,4,9,8,8,2,5,3,11,2,3,1,5,0,1,1,0,0
-0,0,1,2,0,1,0,1,6,9,4,3,7,5,4,14,8,5,0,10,5,4,9,12,4,5,5,8,6,2,0,0,1,7,6,1,1,0,0,0
-0,0,0,0,0,3,7,3,2,1,5,2,8,0,10,3,3,1,13,11,12,0,5,0,5,6,10,8,4,3,2,11,3,5,1,1,0,0,0,0
-0,0,1,0,0,2,1,2,3,9,6,14,4,6,13,8,7,13,0,15,3,1,3,1,6,4,4,0,4,2,5,11,3,5,6,0,0,1,0,0
-0,0,0,1,1,2,2,7,4,5,4,6,5,3,11,6,2,14,1,15,8,3,3,1,2,0,8,3,14,5,4,1,2,4,6,3,1,1,0,0
-0,0,1,2,1,0,0,1,1,5,2,14,9,1,12,12,1,13,10,14,2,13,4,16,8,0,12,2,3,4,7,6,3,2,1,0,0,0,0,0
-0,0,0,2,0,5,2,5,1,5,6,11,2,4,2,5,0,0,4,1,7,1,7,17,12,5,5,4,3,6,1,0,5,5,0,2,3,0,0,0
-0,0,0,2,0,2,6,3,1,6,3,9,8,4,11,5,0,10,9,3,9,5,5,16,10,2,2,8,10,1,1,0,0,2,2,1,3,0,0,0
-0,0,0,2,0,3,3,5,6,0,0,12,7,0,16,8,2,19,0,7,2,13,5,8,11,2,5,5,1,5,7,11,5,3,3,3,2,0,0,0
-0,0,0,1,1,5,3,7,5,8,5,10,4,4,13,8,8,6,14,14,8,9,3,1,0,1,6,4,10,4,5,2,1,1,6,0,0,0,0,0
-0,0,0,0,1,4,4,4,1,3,2,10,3,5,10,14,6,11,2,8,10,12,2,3,10,4,0,8,14,1,1,6,1,5,1,2,1,0,0,0
-0,0,1,3,0,2,5,1,5,1,3,8,5,6,7,6,7,14,4,15,0,2,3,0,2,8,16,1,13,0,3,5,0,4,1,2,0,1,0,0
-0,0,0,2,0,4,5,7,6,11,4,14,2,1,14,8,4,5,8,2,8,11,6,9,10,3,14,8,10,2,11,4,1,1,1,0,0,1,0,0
-0,0,0,0,0,5,4,1,6,0,3,7,7,5,11,8,1,7,2,13,12,5,6,10,16,2,12,3,3,6,10,1,2,3,4,3,2,0,0,0
-0,0,1,0,1,1,1,6,2,5,6,2,1,1,4,6,0,10,12,15,6,1,5,0,8,3,1,4,4,6,3,2,2,5,4,0,1,0,0,0
-0,0,1,1,1,0,2,0,1,8,6,5,3,1,2,12,5,12,2,14,9,8,4,1,14,1,11,7,10,1,5,6,4,7,6,3,2,1,0,0
-0,0,1,0,1,0,7,2,0,6,4,7,9,0,12,5,2,18,5,15,6,5,0,4,16,7,2,6,2,5,11,7,1,0,1,3,1,0,0,0
-0,0,1,2,0,1,4,6,1,12,6,9,0,2,8,3,6,0,7,12,5,15,10,5,16,7,1,4,11,6,6,5,2,4,1,1,1,0,0,0
-0,0,1,3,0,0,2,3,0,4,2,9,7,1,11,11,8,0,16,0,4,7,10,14,0,7,15,1,11,4,1,0,2,4,2,3,1,1,0,0
-0,0,1,2,1,3,0,3,6,4,4,5,9,3,14,7,4,20,6,0,6,7,7,5,8,7,13,8,3,4,9,10,3,2,0,0,3,1,0,0
-0,0,0,0,0,3,5,4,1,5,3,14,7,6,15,15,7,20,16,11,10,17,5,16,2,3,9,8,14,0,7,3,5,1,2,0,1,1,0,0
-0,0,1,0,1,0,3,5,6,1,3,13,6,2,16,0,8,11,7,1,10,12,0,1,12,6,6,4,12,3,0,0,1,1,3,1,3,0,0,0
-0,0,1,2,1,5,7,5,3,9,5,12,1,4,1,15,1,5,8,9,5,1,7,3,7,2,12,7,11,2,5,0,0,0,1,0,3,0,0,0
-0,0,0,3,0,0,6,3,5,1,6,14,6,0,4,2,9,13,12,13,8,6,4,15,8,5,16,7,13,3,11,3,4,1,5,3,1,1,0,0
-0,0,1,2,0,2,1,6,1,7,1,1,5,6,15,1,4,10,12,8,0,6,2,1,9,4,10,7,6,6,11,2,5,5,5,0,1,0,0,0
-0,0,0,3,1,1,4,1,0,4,4,5,1,6,14,16,4,10,12,8,10,1,0,19,3,2,9,7,3,5,8,5,4,6,0,3,0,0,0,0
-0,0,1,3,0,3,1,5,1,10,3,5,2,1,0,6,2,9,0,3,12,5,3,5,16,2,9,1,13,5,11,1,1,5,1,2,0,1,0,0
-0,0,0,1,1,3,2,1,4,4,3,7,3,6,1,17,4,11,0,13,6,8,8,2,3,5,0,7,14,1,4,7,0,0,1,1,3,0,0,0
-0,0,0,3,0,3,1,0,4,0,3,1,1,6,5,5,7,18,9,9,2,15,8,1,9,7,8,3,5,5,2,4,0,1,0,1,1,1,0,0
-0,0,1,0,0,5,0,3,2,8,1,6,4,6,15,9,6,15,11,6,3,11,3,13,7,0,7,0,5,0,5,1,1,0,1,0,2,0,0,0
-0,0,0,2,0,1,1,7,2,4,0,8,6,0,1,12,3,5,15,0,12,13,9,7,15,5,16,5,13,5,3,0,0,3,4,0,3,1,0,0
-0,0,0,0,1,5,3,0,1,4,0,12,1,5,13,3,8,20,15,4,2,14,1,6,3,8,3,8,7,3,0,9,1,0,1,1,3,0,0,0
-0,0,0,2,1,3,1,5,2,11,1,2,4,2,4,5,1,7,2,14,5,16,3,16,6,2,15,1,8,2,4,3,4,4,3,1,1,0,0,0
-0,0,0,0,1,0,7,7,2,7,5,10,2,1,17,10,4,8,16,4,9,3,3,8,5,7,6,0,4,1,1,3,0,6,2,1,3,1,0,0
-0,0,0,2,0,1,1,5,5,8,6,8,9,1,7,9,2,3,11,5,10,9,0,15,14,4,14,7,8,1,4,7,1,0,6,1,3,0,0,0
-0,0,1,0,0,1,4,4,5,5,0,8,6,1,17,16,7,20,7,13,5,16,9,6,10,7,4,5,3,5,0,5,2,1,5,0,2,1,0,0
-0,0,1,2,1,1,2,5,3,9,1,5,0,4,2,14,7,6,16,16,6,2,5,13,10,8,8,8,6,5,5,10,1,7,6,1,0,0,0,0
-0,0,1,2,0,0,4,1,0,11,3,0,1,0,14,13,4,16,12,0,10,12,0,18,16,2,10,3,5,5,4,8,5,1,3,3,0,1,0,0
-0,0,0,3,0,5,2,4,3,8,6,9,4,5,10,4,6,17,13,10,5,11,5,18,8,1,4,3,13,0,2,5,0,0,3,1,1,1,0,0
-0,0,1,3,1,4,7,5,5,8,1,3,2,6,8,1,8,3,17,16,1,10,1,9,3,6,1,1,8,0,0,3,5,4,3,2,2,1,0,0
-0,0,1,0,1,3,4,2,1,0,6,14,2,6,13,6,1,18,15,11,9,17,8,15,2,1,9,5,5,4,1,11,3,7,6,3,2,1,0,0
-0,0,1,0,0,5,7,4,1,6,3,2,5,0,16,11,2,6,16,0,7,4,5,7,13,4,2,8,9,2,0,2,1,2,3,3,0,0,0,0
-0,0,0,1,0,5,4,6,1,7,5,14,4,0,12,3,3,13,2,8,11,13,0,0,10,0,15,0,13,1,10,3,0,1,5,3,2,1,0,0
-0,0,1,3,0,0,1,4,5,6,2,9,6,3,3,2,7,19,6,1,12,9,8,18,11,4,7,6,5,1,1,4,4,2,1,2,1,0,0,0
-0,0,1,3,0,5,7,5,4,11,3,0,3,1,10,2,5,8,12,7,11,7,2,9,15,7,7,0,14,4,0,6,4,6,4,1,2,0,0,0
-0,0,1,3,0,4,5,3,5,1,3,10,4,2,2,16,6,1,12,1,11,5,2,5,14,2,2,3,10,6,0,3,5,7,6,0,3,1,0,0
-0,0,1,1,1,0,2,2,3,2,4,4,6,4,6,13,6,11,15,2,10,3,3,2,6,8,7,5,13,3,0,7,3,2,2,0,2,1,0,0
-0,0,1,3,0,3,0,3,6,3,5,9,3,3,10,3,9,1,9,6,12,13,8,11,16,4,2,3,1,5,1,9,4,0,5,3,2,0,0,0
-0,0,1,1,0,1,6,2,5,8,0,7,2,5,13,14,0,19,4,16,9,2,6,16,3,3,6,0,11,0,1,9,2,2,5,1,2,1,0,0
-0,0,1,1,0,3,4,4,5,5,0,6,7,3,14,9,8,7,6,1,0,13,9,3,1,2,5,0,12,5,5,0,5,7,3,1,0,1,0,0
-0,0,1,0,1,2,2,1,5,0,6,8,8,5,3,13,3,6,6,15,7,12,2,19,16,8,10,0,7,1,3,6,3,2,4,1,0,0,0,0
-0,0,1,2,1,3,6,5,0,7,5,7,2,1,11,1,5,4,1,2,6,7,7,7,13,4,2,2,9,1,12,0,4,6,1,0,3,1,0,0
-0,0,1,1,1,3,0,4,3,8,0,1,1,4,2,6,6,6,7,13,12,15,3,12,13,8,11,1,8,2,0,1,2,0,0,2,2,1,0,0
-0,0,0,0,0,3,6,3,3,3,0,11,8,6,4,0,3,17,8,2,8,5,3,18,5,8,1,6,0,6,12,1,3,6,0,1,0,0,0,0
-0,0,1,3,0,2,6,5,6,7,2,10,1,4,14,11,1,19,14,8,10,14,10,4,11,8,8,2,3,5,2,2,3,6,5,0,1,0,0,0
-0,0,1,2,1,2,4,5,3,10,5,10,0,4,12,8,2,12,8,8,4,14,1,13,2,8,6,5,1,4,3,2,3,6,1,2,1,0,0,0
-0,0,1,3,0,3,2,0,3,2,6,11,3,1,0,3,3,0,11,1,6,3,4,16,3,2,13,6,9,4,1,7,5,3,3,1,3,1,0,0
-0,0,1,2,1,0,4,3,1,6,4,14,4,3,14,17,1,0,8,5,4,4,10,2,14,5,11,0,6,4,4,5,0,3,0,0,2,1,0,0
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
diff --git a/05_src/data/assignment_2_data/inflammation_12.csv b/05_src/data/assignment_2_data/inflammation_12.csv
deleted file mode 100644
index 42c877d46..000000000
--- a/05_src/data/assignment_2_data/inflammation_12.csv
+++ /dev/null
@@ -1,60 +0,0 @@
-0,0,2,3,3,1,6,6,3,6,10,6,8,5,5,8,16,12,13,5,13,18,11,12,11,9,10,13,9,4,4,7,7,3,1,5,3,1,1,1
-0,1,0,1,1,1,1,1,7,7,4,2,7,8,4,6,16,17,13,5,17,5,17,8,5,10,3,5,5,5,8,9,4,4,3,4,1,3,0,0
-0,1,2,0,4,5,6,2,5,3,8,3,8,11,7,9,7,4,8,11,5,18,4,5,6,6,5,13,7,4,7,9,4,3,5,5,2,2,2,1
-0,0,2,0,3,2,6,7,5,6,8,5,8,11,13,8,5,11,10,11,9,12,17,5,4,15,7,5,11,3,5,8,4,4,5,4,2,0,2,1
-0,1,1,3,3,1,1,3,4,3,6,3,9,6,6,7,5,15,18,4,9,12,9,4,9,4,9,11,10,8,10,2,6,1,6,4,4,2,0,1
-0,1,0,0,4,2,2,4,4,6,5,9,8,3,14,11,5,7,5,14,9,7,15,10,11,5,11,12,4,7,10,6,6,2,6,3,4,0,2,1
-0,1,2,1,3,1,5,3,8,6,3,3,12,13,12,6,15,10,5,4,16,10,12,14,15,10,6,4,8,7,7,4,5,4,3,5,4,0,0,0
-0,1,1,0,4,5,5,2,7,5,3,5,3,8,11,13,15,9,14,19,16,11,10,17,7,8,3,7,8,9,9,5,4,2,4,1,4,3,1,0
-0,0,2,2,3,5,1,4,6,4,7,7,3,13,7,3,7,6,18,18,10,12,17,8,7,15,13,13,11,4,9,9,8,1,3,1,4,2,1,1
-0,0,1,2,4,5,1,7,7,7,8,2,8,13,10,10,5,16,17,13,8,6,9,5,11,15,5,6,5,10,2,3,8,4,6,4,2,2,0,1
-0,0,2,3,3,2,3,4,8,7,6,11,5,6,8,8,9,16,7,13,14,11,17,9,9,3,11,8,3,6,4,9,8,3,6,3,4,3,2,0
-0,0,1,3,4,1,3,4,8,2,9,6,3,11,11,6,8,6,17,13,17,12,5,11,4,15,7,4,9,4,8,6,3,4,1,5,4,1,1,0
-0,0,0,0,3,4,5,6,6,9,10,6,7,12,9,6,15,15,9,7,10,14,15,10,5,15,13,12,8,5,7,5,4,2,2,1,2,1,0,0
-0,1,0,0,3,5,2,4,3,2,6,5,9,3,6,13,12,16,10,4,15,10,4,15,13,15,4,3,11,2,8,4,5,2,5,1,3,0,0,1
-0,0,2,3,2,2,6,5,2,2,9,2,6,12,14,12,6,6,17,4,8,10,8,10,6,12,13,11,8,5,10,8,7,1,5,2,1,2,1,1
-0,0,0,0,3,2,2,3,7,9,4,9,4,10,6,14,6,10,6,10,12,13,5,6,12,14,9,8,11,3,10,2,5,6,3,5,3,3,1,0
-0,1,1,2,4,2,6,4,8,9,8,6,5,9,12,8,9,6,11,8,6,18,4,16,11,14,9,10,3,10,9,6,6,1,5,2,4,1,1,0
-0,0,0,1,3,3,3,6,7,8,10,8,11,10,10,10,5,6,5,9,15,11,5,17,6,13,5,11,11,3,3,3,6,1,3,2,1,2,2,1
-0,0,1,0,1,5,3,1,8,3,8,5,3,6,7,14,14,5,7,17,13,14,11,6,14,11,10,13,8,6,3,8,3,5,2,3,4,3,0,0
-0,1,1,1,1,4,3,6,4,4,6,8,6,13,10,12,5,15,17,8,15,16,5,10,4,12,12,13,10,4,7,7,2,4,2,2,4,3,2,0
-0,1,1,3,4,3,3,4,7,2,3,10,4,8,10,6,14,5,9,5,14,5,4,17,11,11,7,7,12,8,10,6,6,2,3,1,2,1,2,1
-0,1,2,0,2,4,3,1,7,2,10,2,11,7,3,13,7,11,9,14,10,7,14,4,5,10,8,12,8,6,10,9,2,4,4,5,3,0,1,0
-0,1,0,1,2,4,3,6,5,5,8,11,6,5,11,5,15,7,11,15,17,5,16,5,11,7,11,4,12,7,8,3,8,5,3,1,1,3,0,0
-0,1,2,0,4,5,6,1,5,2,4,4,8,9,7,12,8,12,9,7,5,6,14,10,14,13,10,8,4,9,8,4,3,5,5,3,4,1,0,0
-0,1,1,1,4,3,1,3,6,5,6,2,5,10,8,11,4,8,4,15,20,19,11,4,10,7,8,10,6,6,3,3,6,1,4,3,3,0,2,1
-0,1,2,1,3,1,4,1,4,6,7,2,11,13,6,12,13,14,12,18,18,7,12,6,14,15,3,11,6,5,7,4,6,1,2,4,3,2,2,1
-0,1,1,1,4,2,6,3,7,7,7,2,6,11,3,6,10,15,10,16,6,17,16,7,8,3,10,7,3,8,6,3,7,2,5,5,2,1,1,1
-0,0,2,2,4,5,4,7,6,8,4,8,3,3,3,13,5,16,5,19,16,16,7,13,16,11,7,12,7,11,5,9,5,7,2,4,3,1,0,0
-0,0,2,3,3,5,1,6,3,8,6,6,4,10,5,11,6,8,11,12,12,7,18,8,13,9,4,7,6,6,2,5,4,3,3,1,2,0,1,0
-0,1,1,2,3,1,1,5,5,8,6,11,8,11,13,13,16,16,5,6,18,12,6,9,13,10,12,11,8,5,6,9,2,7,3,5,2,2,1,0
-0,0,1,2,3,1,3,2,2,9,9,10,11,5,5,3,7,16,8,11,9,15,4,12,4,5,9,9,3,3,10,3,7,6,1,3,2,1,0,1
-0,1,1,2,2,3,2,5,4,7,9,10,9,12,14,15,6,7,11,8,17,17,18,9,16,12,7,9,9,8,4,9,8,6,1,5,1,2,1,1
-0,0,1,2,2,2,5,3,4,5,6,10,11,11,12,9,14,10,15,9,14,14,5,15,9,14,13,3,7,10,4,5,5,7,4,3,2,1,1,1
-0,1,1,3,2,1,2,4,6,9,2,6,5,4,10,7,8,12,8,5,19,15,14,16,16,9,13,11,4,4,2,9,8,1,6,5,4,2,2,0
-0,0,0,0,4,5,1,1,7,2,6,9,11,13,4,6,6,4,9,7,17,6,4,16,12,10,5,9,3,2,4,8,8,1,3,5,2,1,2,0
-0,0,2,1,3,1,1,2,6,3,4,3,4,3,7,14,12,6,9,16,10,8,8,7,9,3,7,7,6,3,4,2,7,3,2,3,4,1,1,1
-0,1,0,1,2,2,5,2,5,8,8,7,5,6,13,15,5,6,5,19,6,8,7,12,12,6,10,9,7,3,7,7,3,1,4,2,1,1,0,0
-0,1,0,3,4,5,5,6,6,4,5,9,9,9,4,6,16,14,8,10,10,9,16,10,7,4,5,12,9,8,2,8,6,4,2,1,2,0,2,1
-0,1,0,2,3,2,5,1,7,4,6,3,6,3,9,5,12,5,7,12,6,6,5,17,5,15,12,7,11,6,2,8,3,2,1,3,4,2,2,1
-0,1,2,2,1,5,2,6,3,6,2,2,6,8,9,3,15,5,9,14,8,8,10,5,6,14,14,10,11,11,4,8,2,7,5,5,1,0,1,1
-0,0,0,1,3,3,5,4,3,5,7,3,9,10,13,12,14,13,4,14,17,17,6,4,5,12,3,9,6,6,7,4,5,2,2,2,4,3,1,1
-0,0,0,1,2,4,3,4,8,8,6,7,8,11,3,14,12,14,7,5,5,13,12,14,10,9,8,4,10,5,2,2,3,2,6,5,4,0,2,1
-0,0,0,2,4,4,6,5,2,2,2,7,7,3,12,8,14,11,10,5,16,4,8,10,13,7,8,12,12,4,2,8,4,5,5,2,4,3,2,0
-0,0,0,1,2,3,6,6,2,3,8,2,3,13,14,5,10,5,10,7,16,11,18,7,7,15,11,4,6,4,8,6,8,4,5,2,2,1,1,0
-0,0,0,2,4,3,1,7,4,3,10,8,4,7,14,11,10,13,12,6,13,6,17,11,8,14,9,6,7,7,4,3,5,3,1,4,2,0,1,1
-0,1,0,1,4,5,2,4,5,6,9,9,5,10,11,11,14,4,13,4,19,14,16,13,6,10,3,13,5,2,8,7,3,5,1,1,2,1,2,0
-0,0,2,2,1,1,4,5,3,7,8,10,10,13,5,9,6,7,5,5,10,15,10,17,14,8,12,6,8,7,3,5,5,3,5,4,2,0,2,0
-0,1,0,1,2,3,6,2,6,2,3,11,10,10,5,6,5,7,18,19,14,19,14,15,10,4,13,13,6,10,7,3,7,1,2,3,1,0,1,0
-0,0,0,1,3,1,5,2,5,8,9,2,10,8,5,11,10,17,8,18,7,19,8,13,10,14,8,11,6,5,6,4,3,5,2,3,3,3,1,1
-0,1,2,2,4,5,4,3,2,8,9,4,4,11,6,12,13,17,10,18,13,18,9,7,10,14,11,6,12,9,6,3,4,2,5,1,2,1,0,1
-0,0,2,1,2,4,4,1,8,3,9,6,3,13,9,6,14,15,9,17,14,12,12,4,12,3,11,9,11,10,8,6,8,2,2,3,2,1,1,0
-0,1,1,2,3,5,2,1,6,7,2,9,7,5,7,4,10,6,9,15,11,5,6,7,8,4,10,13,12,5,6,8,4,2,3,1,2,3,2,0
-0,1,0,2,1,1,6,2,8,9,5,11,6,12,11,9,7,16,14,18,8,4,7,5,14,10,4,9,4,2,7,5,4,6,3,4,4,2,0,1
-0,1,0,1,4,2,3,6,4,6,5,3,6,10,7,11,7,13,17,7,18,13,10,14,6,9,4,12,7,5,5,6,8,2,1,1,1,3,0,0
-0,0,0,3,1,1,2,4,7,7,6,11,3,5,8,11,14,12,6,7,13,9,6,5,5,15,6,7,11,9,6,5,6,3,4,3,3,0,1,0
-0,1,0,1,3,3,6,7,2,6,7,11,7,13,11,7,6,4,14,8,8,15,16,8,9,5,7,8,6,9,5,4,7,6,1,5,1,3,0,1
-0,0,1,3,4,1,4,5,7,7,2,3,7,7,6,15,14,8,17,4,20,16,14,4,9,9,4,9,10,7,8,7,6,6,3,4,1,1,2,1
-0,0,2,1,3,5,3,7,2,8,5,4,12,13,7,15,13,16,16,9,18,15,8,4,16,5,13,11,10,5,6,5,2,2,3,2,3,3,2,1
-0,1,0,2,1,5,5,2,6,5,6,7,5,7,13,6,10,8,18,5,7,14,15,7,16,12,8,3,11,11,10,3,3,3,2,2,1,0,0,1
-0,0,0,1,3,3,4,7,8,2,10,11,8,11,3,15,9,4,9,11,11,15,17,11,15,15,14,7,11,4,2,6,7,7,2,5,4,3,0,1
diff --git a/05_src/data/assignment_2_data/small_01.csv b/05_src/data/assignment_2_data/small_01.csv
deleted file mode 100644
index 4d653271f..000000000
--- a/05_src/data/assignment_2_data/small_01.csv
+++ /dev/null
@@ -1,2 +0,0 @@
-0,0,1
-0,1,2
diff --git a/05_src/data/assignment_2_data/small_02.csv b/05_src/data/assignment_2_data/small_02.csv
deleted file mode 100644
index 8fa62dbdb..000000000
--- a/05_src/data/assignment_2_data/small_02.csv
+++ /dev/null
@@ -1,2 +0,0 @@
-9,17,15
-20,8,5
diff --git a/05_src/data/assignment_2_data/small_03.csv b/05_src/data/assignment_2_data/small_03.csv
deleted file mode 100644
index ea233a381..000000000
--- a/05_src/data/assignment_2_data/small_03.csv
+++ /dev/null
@@ -1,2 +0,0 @@
-0,2,0
-1,1,0
diff --git a/05_src/data/slides_data/all_delays.csv b/05_src/data/slides_data/all_delays.csv
deleted file mode 100644
index bc3c3fef7..000000000
--- a/05_src/data/slides_data/all_delays.csv
+++ /dev/null
@@ -1,16371 +0,0 @@
-date,time,day,station,code,min_delay,min_gap,bound,line,vehicle
-2021-01-01,00:33,Friday,BLOOR STATION,MUPAA,0,0,N,YU,6046
-2021-01-01,00:39,Friday,SHERBOURNE STATION,EUCO,5,9,E,BD,5250
-2021-01-01,01:07,Friday,KENNEDY BD STATION,EUCD,5,9,E,BD,5249
-2021-01-01,01:41,Friday,ST CLAIR STATION,MUIS,0,0,,YU,0
-2021-01-01,02:04,Friday,SHEPPARD WEST STATION,MUIS,0,0,,YU,0
-2021-01-01,02:35,Friday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-01-01,02:39,Friday,VAUGHAN MC STATION,MUIS,0,0,,YU,0
-2021-01-01,06:00,Friday,TORONTO TRANSIT COMMIS,MUO,0,0,,YU,0
-2021-01-01,06:00,Friday,TORONTO TRANSIT COMMIS,MUO,0,0,,SHP,0
-2021-01-01,06:00,Friday,TORONTO TRANSIT COMMIS,MRO,0,0,,SRT,0
-2021-01-01,07:50,Friday,VAUGHAN MC STATION,TUO,3,0,S,YU,6086
-2021-01-01,08:33,Friday,VAUGHAN MC STATION,MUATC,5,10,S,YU,5426
-2021-01-01,08:53,Friday,DON MILLS STATION,TUMVS,0,0,E,SHP,6181
-2021-01-01,09:10,Friday,DUNDAS STATION,MUPAA,3,8,S,YU,5506
-2021-01-01,09:29,Friday,KENNEDY BD STATION,TUKEY,4,8,W,BD,5260
-2021-01-01,09:30,Friday,GREENWOOD STATION,MUPLB,26,30,W,BD,5021
-2021-01-01,10:04,Friday,ROYAL YORK STATION,PUSRA,5,9,E,BD,5024
-2021-01-01,10:43,Friday,SHEPPARD-YONGE STATION,TUMVS,0,0,W,SHP,6171
-2021-01-01,11:08,Friday,DUFFERIN STATION,MUIR,9,13,E,BD,5163
-2021-01-01,11:23,Friday,ST GEORGE BD STATION,MUIR,49,53,E,BD,5163
-2021-01-01,13:23,Friday,EGLINTON WEST STATION,MUIS,0,0,S,YU,0
-2021-01-01,13:51,Friday,WELLESLEY STATION,SUDP,9,13,N,YU,5946
-2021-01-01,14:08,Friday,KENNEDY SRT STATION,TRST,0,0,N,SRT,3023
-2021-01-01,14:22,Friday,DUNDAS WEST STATION,SUDP,8,12,W,BD,5371
-2021-01-01,15:15,Friday,OSGOODE STATION,SUDP,7,11,S,YU,5546
-2021-01-01,16:07,Friday,KEELE STATION,EUSC,0,0,E,BD,5163
-2021-01-01,16:13,Friday,KEELE STATION,MUSC,0,0,E,BD,5132
-2021-01-01,16:14,Friday,CHRISTIE STATION,EUSC,0,0,E,BD,5163
-2021-01-01,17:30,Friday,SHERBOURNE STATION,MUIS,0,0,,BD,0
-2021-01-01,17:38,Friday,OSSINGTON STATION,TUMVS,0,0,W,BD,5270
-2021-01-01,19:07,Friday,YORK MILLS STATION,SUDP,9,14,S,YU,5691
-2021-01-01,19:36,Friday,SUMMERHILL STATION,SUDP,7,12,S,YU,5691
-2021-01-01,20:41,Friday,DOWNSVIEW PARK STATION,SUDP,0,0,N,YU,5686
-2021-01-01,21:21,Friday,FINCH STATION,MUPAA,0,0,S,YU,5981
-2021-01-01,21:27,Friday,DONLANDS STATION,MUIS,0,0,E,BD,0
-2021-01-01,22:19,Friday,CHRISTIE STATION,EUNT,5,9,W,BD,5391
-2021-01-02,01:20,Saturday,ROSEDALE STATION,MUATC,7,12,S,YU,6041
-2021-01-02,01:42,Saturday,ROSEDALE STATION,MUATC,4,9,S,YU,5491
-2021-01-02,02:00,Saturday,LINE 1,TUST,0,0,,YU,0
-2021-01-02,02:03,Saturday,SHEPPARD WEST STATION,MUIS,0,0,,YU,0
-2021-01-02,02:21,Saturday,KENNEDY BD STATION,MUI,0,0,E,BD,5204
-2021-01-02,02:45,Saturday,SCARBOROUGH RAPID TRAN,TRST,0,0,,SRT,0
-2021-01-02,03:47,Saturday,SHEPPARD-YONGE STATION,MUIS,0,0,,SHP,0
-2021-01-02,03:57,Saturday,YONGE UNIVERSITY/BLOOR,MUO,0,0,,YU/BD,0
-2021-01-02,06:00,Saturday,VAUGHAN MC STATION,MUNOA,10,20,S,YU,6121
-2021-01-02,06:02,Saturday,ST CLAIR WEST STATION,MUNOA,4,10,S,YU,5746
-2021-01-02,06:38,Saturday,KIPLING STATION,PUSIS,13,18,W,BD,5311
-2021-01-02,06:39,Saturday,LAWRENCE STATION,TUOS,4,9,N,YU,5851
-2021-01-02,07:04,Saturday,KIPLING STATION,MUIR,0,0,,BD,0
-2021-01-02,07:12,Saturday,LAWRENCE STATION,TUOS,0,0,N,YU,5496
-2021-01-02,07:13,Saturday,KIPLING STATION,PUSIS,25,30,E,BD,5125
-2021-01-02,08:31,Saturday,SHERBOURNE STATION,SUAP,0,0,,BD,0
-2021-01-02,09:33,Saturday,SPADINA BD STATION,SUDP,3,8,E,BD,5177
-2021-01-02,09:34,Saturday,FINCH STATION,SUDP,0,0,,YU,0
-2021-01-02,11:08,Saturday,KENNEDY BD STATION,EUTR,4,8,E,BD,5016
-2021-01-02,11:23,Saturday,YORK MILLS STATION,TUSC,0,0,S,YU,5766
-2021-01-02,12:29,Saturday,GREENWOOD STATION,TUNIP,4,8,E,BD,5148
-2021-01-02,12:41,Saturday,ROSEDALE STATION,MUIRS,0,0,,YU,0
-2021-01-02,12:48,Saturday,COXWELL STATION,EUNT,0,0,E,BD,5257
-2021-01-02,12:56,Saturday,KENNEDY BD STATION,TUMVS,0,0,E,BD,5111
-2021-01-02,14:12,Saturday,EGLINTON STATION,EUSC,0,0,S,YU,6016
-2021-01-02,15:46,Saturday,FINCH STATION,MUPAA,0,0,S,YU,5676
-2021-01-02,16:11,Saturday,SHEPPARD STATION,SUPOL,0,0,N,YU,5731
-2021-01-02,16:11,Saturday,SHEPPARD-YONGE STATION,SUO,12,17,E,SHP,6176
-2021-01-02,16:27,Saturday,LAWRENCE EAST STATION,SRAP,20,26,N,SRT,3027
-2021-01-02,16:44,Saturday,DUPONT STATION,MUIS,0,0,N,YU,5541
-2021-01-02,16:49,Saturday,BLOOR STATION,MUI,23,26,S,YU,5951
-2021-01-02,18:15,Saturday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-01-02,18:34,Saturday,VAUGHAN MC STATION,MUI,5,10,S,YU,5876
-2021-01-02,18:38,Saturday,EGLINTON STATION,SUDP,4,7,S,YU,6031
-2021-01-02,19:17,Saturday,KENNEDY BD STATION,TUMVS,0,0,E,BD,5132
-2021-01-02,19:38,Saturday,SHEPPARD STATION,EUSC,0,0,N,YU,5851
-2021-01-02,20:17,Saturday,BLOOR STATION,MUPAA,0,0,N,YU,5756
-2021-01-02,20:54,Saturday,MAIN STREET STATION,SUDP,0,0,,BD,0
-2021-01-02,21:20,Saturday,VAUGHAN MC STATION,TUNOA,5,10,S,YU,5936
-2021-01-02,21:50,Saturday,YONGE BD STATION,MUPLB,11,17,E,BD,5167
-2021-01-02,21:52,Saturday,BLOOR STATION,MUPLB,0,0,S,YU,5766
-2021-01-02,22:00,Saturday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-01-02,22:04,Saturday,DUNDAS WEST STATION,TUMVS,0,0,W,BD,5037
-2021-01-02,22:07,Saturday,HIGH PARK STATION,MUO,6,12,W,BD,5037
-2021-01-02,22:48,Saturday,BLOOR STATION,MUPR1,114,119,S,YU,5756
-2021-01-02,22:49,Saturday,YONGE BD STATION,MUO,0,0,E,BD,5278
-2021-01-02,23:17,Saturday,EGLINTON STATION,MUIS,0,0,,YU,0
-2021-01-02,23:22,Saturday,OSGOODE STATION,MUIS,0,0,,YU,0
-2021-01-02,23:44,Saturday,KENNEDY BD STATION,EUAC,6,12,W,BD,5149
-2021-01-03,00:21,Sunday,EGLINTON WEST STATION,SUDP,0,0,N,YU,5766
-2021-01-03,01:19,Sunday,YORK MILLS STATION,PUTOE,4,9,S,YU,0
-2021-01-03,01:51,Sunday,DUNDAS STATION,EUDO,3,8,N,YU,5871
-2021-01-03,02:04,Sunday,COLLEGE STATION,MUATC,16,0,S,YU,5491
-2021-01-03,06:58,Sunday,YORK MILLS STATION,EUOE,0,0,N,YU,5516
-2021-01-03,10:09,Sunday,KENNEDY BD STATION,MUI,4,8,W,BD,5052
-2021-01-03,11:22,Sunday,BLOOR STATION,MUIS,0,0,,YU,0
-2021-01-03,11:28,Sunday,HIGH PARK STATION,MUNCA,0,0,,BD,0
-2021-01-03,12:21,Sunday,DUNDAS WEST STATION,TUMVS,5,9,W,BD,5054
-2021-01-03,15:16,Sunday,ST ANDREW STATION,SUDP,0,0,S,YU,5591
-2021-01-03,18:21,Sunday,SHEPPARD WEST STATION,MUPAA,0,0,N,YU,5936
-2021-01-03,18:28,Sunday,HIGH PARK STATION,PUMEL,0,0,,BD,0
-2021-01-03,18:36,Sunday,COLLEGE STATION,SUDP,3,8,S,YU,5816
-2021-01-03,18:45,Sunday,ST GEORGE BD STATION,MUPAA,0,0,W,BD,5331
-2021-01-03,20:23,Sunday,DON MILLS STATION,TUMVS,0,0,E,SHP,6176
-2021-01-03,21:03,Sunday,GREENWOOD STATION,PUMST,0,0,W,BD,0
-2021-01-03,21:26,Sunday,BROADVIEW STATION,SUUT,12,16,E,BD,5344
-2021-01-03,22:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-01-03,23:12,Sunday,OSSINGTON STATION,SUO,4,8,E,BD,5132
-2021-01-04,00:09,Monday,CASTLE FRANK STATION,MUIRS,0,0,E,BD,0
-2021-01-04,01:33,Monday,VAUGHAN MC STATION,SUO,30,35,N,YU,5876
-2021-01-04,02:26,Monday,VAUGHAN MC STATION,MUI,0,0,S,YU,5806
-2021-01-04,02:41,Monday,MCCOWAN YARD - 3 TRACK,ERME,0,0,W,SRT,3004
-2021-01-04,06:00,Monday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-01-04,06:19,Monday,KENNEDY BD STATION,MUSC,0,0,W,BD,5051
-2021-01-04,07:10,Monday,VAUGHAN MC STATION,EUBO,3,6,S,YU,5386
-2021-01-04,08:23,Monday,FINCH STATION,SUO,0,0,,YU,0
-2021-01-04,08:27,Monday,WELLESLEY STATION,SUO,0,0,,YU,0
-2021-01-04,08:55,Monday,DUNDAS STATION,SUDP,0,0,S,YU,0
-2021-01-04,10:16,Monday,WARDEN STATION,MUIRS,0,0,,BD,0
-2021-01-04,10:31,Monday,FINCH STATION,MUPAA,0,0,N,YU,5966
-2021-01-04,10:44,Monday,SHEPPARD-YONGE STATION,PUSO,0,0,W,SHP,6161
-2021-01-04,10:55,Monday,EGLINTON STATION,MUIRS,0,0,,YU,0
-2021-01-04,11:00,Monday,CHRISTIE STATION,PUSWZ,0,0,E,BD,5093
-2021-01-04,11:28,Monday,KENNEDY BD STATION,SUDP,0,0,W,BD,5059
-2021-01-04,12:30,Monday,MAIN STREET STATION,SUUT,15,18,W,BD,5021
-2021-01-04,12:42,Monday,WARDEN STATION,MUPAA,3,6,W,BD,5057
-2021-01-04,12:55,Monday,DONLANDS STATION,TUO,3,6,W,BD,5270
-2021-01-04,13:43,Monday,MIDLAND STATION,ERTC,9,15,N,SRT,3026
-2021-01-04,14:00,Monday,UNION STATION,MUTO,3,6,S,YU,5761
-2021-01-04,15:21,Monday,KEELE STATION,SUDP,6,9,W,BD,5109
-2021-01-04,15:38,Monday,ST GEORGE BD STATION,TUMVS,3,6,W,BD,5169
-2021-01-04,15:51,Monday,FINCH STATION,SUO,3,6,S,YU,6001
-2021-01-04,16:09,Monday,SPADINA BD STATION,TUMVS,0,0,E,BD,5316
-2021-01-04,16:21,Monday,COXWELL STATION,MUPR1,141,144,W,BD,5047
-2021-01-04,16:50,Monday,ST CLAIR STATION,SUAP,8,11,N,YU,5806
-2021-01-04,17:04,Monday,QUEEN STATION,SUDP,8,11,S,YU,5821
-2021-01-04,17:18,Monday,QUEEN STATION,SUO,4,7,N,YU,5906
-2021-01-04,17:38,Monday,SHERBOURNE STATION,SUO,0,0,W,BD,5154
-2021-01-04,17:42,Monday,WARDEN STATION,SUAP,7,10,E,BD,5287
-2021-01-04,17:45,Monday,QUEEN STATION,MUIRS,0,0,,YU,0
-2021-01-04,17:46,Monday,WARDEN STATION,MUPAA,5,8,W,BD,5355
-2021-01-04,17:59,Monday,VICTORIA PARK STATION,PUSRA,6,9,E,BD,5177
-2021-01-04,18:16,Monday,DUFFERIN STATION,SUUT,19,22,E,BD,5169
-2021-01-04,18:23,Monday,KIPLING STATION,TUMVS,0,0,W,BD,5347
-2021-01-04,18:54,Monday,UNION STATION,MUIRS,0,0,,YU,0
-2021-01-04,19:21,Monday,ROYAL YORK STATION,MUIS,0,0,E,BD,0
-2021-01-04,21:43,Monday,DAVISVILLE STATION,MUIRS,8,12,S,YU,5951
-2021-01-04,21:52,Monday,WILSON YARD,PUMO,0,0,,YU,0
-2021-01-04,22:00,Monday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-01-05,00:19,Tuesday,DUNDAS STATION,SUDP,5,10,S,YU,5516
-2021-01-05,02:35,Tuesday,KIPLING STATION,SUDP,0,0,,BD,0
-2021-01-05,04:04,Tuesday,FINCH STATION,PUMO,0,0,,YU,0
-2021-01-05,05:23,Tuesday,DAVISVILLE CARHOUSE,MUIE,0,0,,YU,0
-2021-01-05,06:01,Tuesday,WILSON STATION,PUTR,3,6,S,YU,5886
-2021-01-05,06:06,Tuesday,ST CLAIR STATION,MUSC,0,0,S,YU,6111
-2021-01-05,06:13,Tuesday,ROSEDALE STATION,MUATC,5,10,S,YU,6111
-2021-01-05,06:26,Tuesday,KIPLING STATION,MUTO,5,10,E,BD,5357
-2021-01-05,06:30,Tuesday,SHEPPARD WEST STATION,TUO,3,6,N,YU,5876
-2021-01-05,06:49,Tuesday,ROSEDALE STATION,MUATC,3,6,S,YU,5976
-2021-01-05,07:16,Tuesday,SUMMERHILL STATION,SUDP,0,0,S,YU,6001
-2021-01-05,07:33,Tuesday,QUEEN STATION,SUDP,0,0,S,YU,6086
-2021-01-05,07:48,Tuesday,ROSEDALE STATION,MUSC,0,0,N,YU,5871
-2021-01-05,08:33,Tuesday,FINCH STATION,MUSC,0,0,S,YU,6111
-2021-01-05,08:34,Tuesday,BROADVIEW STATION,SUDP,0,0,E,BD,5312
-2021-01-05,09:04,Tuesday,QUEEN'S PARK STATION,MUATC,0,0,N,YU,6046
-2021-01-05,11:01,Tuesday,VICTORIA PARK STATION,MUPLB,36,39,E,BD,5021
-2021-01-05,11:41,Tuesday,WILSON STATION,TUOS,3,6,N,YU,5501
-2021-01-05,12:22,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5866
-2021-01-05,13:02,Tuesday,ISLINGTON STATION,MUPR1,207,210,E,BD,5260
-2021-01-05,13:44,Tuesday,OSGOODE STATION,MUDD,3,6,N,YU,5426
-2021-01-05,13:49,Tuesday,DUNDAS WEST STATION,MUPAA,0,0,E,BD,5137
-2021-01-05,15:09,Tuesday,DAVISVILLE STATION,TUNOA,3,6,S,YU,0
-2021-01-05,15:26,Tuesday,WELLESLEY STATION,MUIR,3,6,S,YU,5821
-2021-01-05,16:31,Tuesday,LAWRENCE WEST STATION,SUDP,0,0,S,YU,5981
-2021-01-05,16:38,Tuesday,KIPLING STATION,TUSC,0,0,E,BD,5312
-2021-01-05,17:07,Tuesday,UNION STATION,SUDP,0,0,,YU,0
-2021-01-05,18:08,Tuesday,COXWELL STATION,SUDP,0,0,W,BD,5347
-2021-01-05,18:15,Tuesday,YONGE BD STATION,SUDP,0,0,,BD,0
-2021-01-05,18:18,Tuesday,BLOOR STATION,MUO,0,0,N,YU,5476
-2021-01-05,18:48,Tuesday,JANE STATION,EUPI,5,8,E,BD,5008
-2021-01-05,18:53,Tuesday,BAY STATION,SUO,0,0,E,BD,5054
-2021-01-05,18:57,Tuesday,BAY STATION,SUDP,0,0,,BD,0
-2021-01-05,19:56,Tuesday,BATHURST STATION,EUCD,4,10,W,BD,5316
-2021-01-05,20:12,Tuesday,SHEPPARD WEST STATION,MUTO,3,6,S,YU,6061
-2021-01-05,21:02,Tuesday,ST GEORGE YU STATION,SUAP,0,0,,YU,0
-2021-01-05,22:00,Tuesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-01-05,22:11,Tuesday,LANSDOWNE STATION,SUO,0,0,E,BD,5137
-2021-01-05,22:46,Tuesday,DUNDAS STATION,SUDP,0,0,,YU,0
-2021-01-05,23:06,Tuesday,BLOOR STATION,SUDP,4,9,S,YU,5816
-2021-01-06,01:23,Wednesday,BATHURST STATION,MUIS,0,0,,BD,4532
-2021-01-06,01:55,Wednesday,BROADVIEW STATION,SUO,0,0,,BD,0
-2021-01-06,02:20,Wednesday,VAUGHAN MC STATION,MUIS,0,0,,YU,0
-2021-01-06,05:54,Wednesday,MAIN STREET STATION,MUPAA,0,0,W,BD,5115
-2021-01-06,06:11,Wednesday,EGLINTON STATION,TUMVS,0,0,N,YU,5911
-2021-01-06,06:37,Wednesday,MAIN STREET STATION,SUDP,0,0,,BD,0
-2021-01-06,07:43,Wednesday,KENNEDY BD STATION,EUDO,3,6,W,BD,5037
-2021-01-06,08:02,Wednesday,SHEPPARD STATION,MUSC,0,0,S,YU,5861
-2021-01-06,08:15,Wednesday,ROSEDALE STATION,TUATC,3,6,S,YU,6066
-2021-01-06,08:20,Wednesday,BLOOR STATION,MUIS,0,0,,YU,0
-2021-01-06,08:53,Wednesday,DON MILLS STATION,SUDP,6,11,E,SHP,6176
-2021-01-06,09:26,Wednesday,WILSON STATION,MUTO,4,7,S,YU,5836
-2021-01-06,10:18,Wednesday,COXWELL STATION,TUNIP,5,8,W,BD,5371
-2021-01-06,11:25,Wednesday,KIPLING STATION,TUMVS,0,0,W,BD,5159
-2021-01-06,11:36,Wednesday,MAIN STREET STATION,PUSTS,4,7,E,BD,5077
-2021-01-06,12:45,Wednesday,UNION STATION,MUIS,0,0,,YU,0
-2021-01-06,13:09,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5791
-2021-01-06,13:13,Wednesday,LAWRENCE STATION,SUO,0,0,S,YU,5426
-2021-01-06,13:50,Wednesday,DAVISVILLE STATION,MUNOA,3,6,S,YU,0
-2021-01-06,13:50,Wednesday,WILSON STATION,MUNOA,3,6,S,YU,0
-2021-01-06,15:27,Wednesday,RUNNYMEDE STATION,MUIRS,0,0,,BD,0
-2021-01-06,16:10,Wednesday,DAVISVILLE STATION,SUDP,3,6,N,YU,6021
-2021-01-06,16:25,Wednesday,SHEPPARD STATION,MUI,6,9,S,YU,5631
-2021-01-06,16:57,Wednesday,SHEPPARD-YONGE STATION,SUUT,8,12,E,SHP,6161
-2021-01-06,17:08,Wednesday,CASTLE FRANK STATION,SUAP,12,15,E,BD,5282
-2021-01-06,17:13,Wednesday,VAUGHAN MC STATION,MUSAN,3,6,S,YU,5836
-2021-01-06,17:46,Wednesday,FINCH STATION,MUIR,3,6,S,YU,5751
-2021-01-06,18:53,Wednesday,ST CLAIR STATION,MUSC,0,0,S,YU,6066
-2021-01-06,19:30,Wednesday,KING STATION,PUMEL,0,0,,YU,0
-2021-01-06,21:49,Wednesday,ELLESMERE STATION,ERTC,10,16,N,SRT,3021
-2021-01-06,22:00,Wednesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-01-06,22:10,Wednesday,SCARBOROUGH CTR STATIO,TRO,6,12,N,SRT,3027
-2021-01-06,22:48,Wednesday,DON MILLS STATION,MUSAN,3,8,W,SHP,6141
-2021-01-06,23:02,Wednesday,WOODBINE STATION,SUDP,6,12,E,BD,5047
-2021-01-06,23:15,Wednesday,ROSEDALE STATION,MUATC,5,10,S,YU,5941
-2021-01-06,23:36,Wednesday,FINCH STATION,MUNOA,5,10,S,YU,5466
-2021-01-06,23:41,Wednesday,VAUGHAN MC STATION,MUIS,0,0,,YU,0
-2021-01-07,00:17,Thursday,YONGE BD STATION,SUDP,0,0,,BD,0
-2021-01-07,02:11,Thursday,BROADVIEW STATION,PUTOE,0,0,W,BD,0
-2021-01-07,03:24,Thursday,YORK MILLS STATION,PUTWZ,0,0,,YU,0
-2021-01-07,05:44,Thursday,WARDEN STATION,PUSO,0,0,E,BD,5315
-2021-01-07,05:54,Thursday,BROADVIEW STATION,MUIS,0,0,,BD,0
-2021-01-07,06:02,Thursday,DONLANDS STATION,PUTR,39,45,W,BD,5115
-2021-01-07,06:05,Thursday,DONLANDS STATION,PUSSW,0,0,W,BD,5150
-2021-01-07,06:20,Thursday,DONLANDS STATION,PUSSW,0,0,W,BD,5109
-2021-01-07,07:02,Thursday,FINCH STATION,MUSC,0,0,S,YU,6011
-2021-01-07,07:47,Thursday,COLLEGE STATION,MUPAA,0,0,S,YU,5521
-2021-01-07,08:00,Thursday,WELLESLEY STATION,MUIRS,0,0,,YU,0
-2021-01-07,08:26,Thursday,WILSON STATION,MUIRS,0,0,,YU,0
-2021-01-07,09:00,Thursday,WILSON STATION,PUMO,0,0,,YU,0
-2021-01-07,09:15,Thursday,COLLEGE STATION,MUPAA,0,0,S,YU,5941
-2021-01-07,09:17,Thursday,ROSEDALE STATION,MUATC,5,8,S,YU,5816
-2021-01-07,09:19,Thursday,LAWRENCE STATION,MUSC,0,0,N,YU,5981
-2021-01-07,10:10,Thursday,BROADVIEW STATION,MUSC,3,6,E,BD,5093
-2021-01-07,11:13,Thursday,SPADINA YUS STATION,MUIRS,0,0,N,YU,6056
-2021-01-07,11:23,Thursday,OLD MILL STATION,MUIR,4,7,E,BD,5021
-2021-01-07,11:38,Thursday,FINCH STATION,MUSC,0,0,S,YU,5816
-2021-01-07,11:46,Thursday,QUEEN STATION,SUUT,15,18,N,YU,6126
-2021-01-07,11:47,Thursday,DUFFERIN STATION,SUUT,0,0,E,BD,5132
-2021-01-07,12:26,Thursday,CASTLE FRANK STATION,MUIR,4,7,W,BD,5335
-2021-01-07,14:05,Thursday,BLOOR STATION,MUIS,0,0,,YU,0
-2021-01-07,14:29,Thursday,COXWELL STATION,TUSUP,6,9,E,BD,5052
-2021-01-07,15:08,Thursday,EGLINTON STATION,MUSC,0,0,S,YU,5932
-2021-01-07,15:15,Thursday,LAWRENCE WEST STATION,PUMEL,0,0,,YU,0
-2021-01-07,15:15,Thursday,ST CLAIR WEST STATION,MUIE,0,0,,YU,0
-2021-01-07,15:34,Thursday,VAUGHAN MC STATION,TUNIP,3,6,S,YU,5751
-2021-01-07,15:37,Thursday,SPADINA BD STATION,PUMO,0,0,E,BD,5350
-2021-01-07,15:45,Thursday,BLOOR STATION,SUDP,0,0,,YU,0
-2021-01-07,16:45,Thursday,ST GEORGE BD STATION,SUDP,0,0,E,BD,5193
-2021-01-07,16:47,Thursday,ST GEORGE YUS STATION,SUDP,0,0,S,YU,6036
-2021-01-07,16:51,Thursday,PIONEER VILLAGE STATIO,SUDP,5,8,S,YU,5791
-2021-01-07,17:13,Thursday,BLOOR STATION,MUIS,0,0,,YU,0
-2021-01-07,17:28,Thursday,MUSEUM STATION,SUDP,3,6,S,YU,5791
-2021-01-07,18:09,Thursday,WELLESLEY STATION,MUSAN,3,6,S,YU,5976
-2021-01-07,18:33,Thursday,WOODBINE STATION,MUI,7,10,W,BD,5331
-2021-01-07,18:35,Thursday,CHRISTIE STATION,MUI,0,0,W,BD,5155
-2021-01-07,19:07,Thursday,DAVISVILLE STATION,SUAP,9,12,N,YU,5856
-2021-01-07,19:08,Thursday,ST CLAIR STATION,PUSTC,4,7,S,YU,6041
-2021-01-07,19:42,Thursday,KENNEDY BD STATION,MUI,6,12,W,BD,1210
-2021-01-07,19:46,Thursday,VAUGHAN MC STATION,MUI,3,6,S,YU,6066
-2021-01-07,19:55,Thursday,DONLANDS STATION,SUDP,4,10,E,BD,5285
-2021-01-07,21:11,Thursday,DUFFERIN STATION,SUUT,9,15,W,BD,5148
-2021-01-07,21:28,Thursday,LAWRENCE STATION,MUPAA,0,0,N,YU,6046
-2021-01-07,22:00,Thursday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-01-07,22:42,Thursday,FINCH STATION,MUNOA,5,10,S,YU,5551
-2021-01-07,22:51,Thursday,KENNEDY BD STATION,EUO,6,12,E,BD,5109
-2021-01-07,23:05,Thursday,FINCH STATION,SUG,3,8,S,YU,5986
-2021-01-07,23:39,Thursday,YORK MILLS STATION,MUI,11,16,S,YU,5526
-2021-01-08,01:25,Friday,EGLINTON STATION,MUIS,0,0,,YU,0
-2021-01-08,01:33,Friday,PAPE STATION,MUSC,0,0,E,BD,5190
-2021-01-08,02:01,Friday,KIPLING STATION,SUDP,0,0,E,BD,5107
-2021-01-08,02:29,Friday,KENNEDY BD STATION,SUDP,0,0,,BD,0
-2021-01-08,02:29,Friday,LAWRENCE STATION,SUUT,0,0,S,YU,25
-2021-01-08,05:56,Friday,EGLINTON STATION,MUTO,3,8,N,YU,5446
-2021-01-08,06:12,Friday,KEELE STATION,MUO,5,10,W,BD,5151
-2021-01-08,06:38,Friday,EGLINTON STATION,MUPAA,3,6,N,YU,5916
-2021-01-08,06:51,Friday,FINCH STATION,MUSC,0,0,S,YU,5661
-2021-01-08,07:13,Friday,SHEPPARD-YONGE STATION,SUDP,0,0,W,SHP,6176
-2021-01-08,07:45,Friday,COLLEGE STATION,SUDP,0,0,,YU,0
-2021-01-08,08:30,Friday,VICTORIA PARK STATION,MUIRS,0,0,,BD,0
-2021-01-08,09:13,Friday,EGLINTON WEST STATION,TUOS,3,6,S,YU,5871
-2021-01-08,09:15,Friday,BLOOR STATION,MUPAA,0,0,S,YU,5856
-2021-01-08,09:23,Friday,SHEPPARD-YONGE STATION,TUSC,0,0,E,SHP,6166
-2021-01-08,09:53,Friday,ST CLAIR WEST STATION,MUNCA,0,0,,YU,0
-2021-01-08,10:28,Friday,FINCH STATION,EUME,0,0,S,YU,5986
-2021-01-08,10:43,Friday,WARDEN STATION,MUIRS,0,0,,BD,0
-2021-01-08,10:49,Friday,COXWELL STATION,MUCL,7,10,W,BD,5371
-2021-01-08,11:00,Friday,COXWELL STATION,MUCL,4,7,W,BD,5084
-2021-01-08,11:04,Friday,UNION STATION,MUPAA,0,0,N,YU,5446
-2021-01-08,11:11,Friday,ROSEDALE STATION,MUATC,5,8,S,YU,5976
-2021-01-08,11:28,Friday,SHEPPARD-YONGE STATION,MUIS,0,0,,SHP,0
-2021-01-08,12:15,Friday,CHRISTIE STATION,PUMEL,0,0,,BD,0
-2021-01-08,12:52,Friday,COXWELL STATION,TUNIP,3,7,W,BD,5344
-2021-01-08,13:33,Friday,ST CLAIR STATION,MUIE,0,0,N,YU,5951
-2021-01-08,13:45,Friday,KENNEDY SRT STATION,PRSO,11,16,S,SRT,3020
-2021-01-08,13:49,Friday,HIGH PARK STATION,MUPAA,0,0,E,BD,5308
-2021-01-08,14:12,Friday,LAWRENCE STATION,TUDOE,9,12,N,YU,5446
-2021-01-08,15:02,Friday,WILSON STATION,EUTRD,3,6,N,YU,5951
-2021-01-08,15:09,Friday,SHEPPARD WEST STATION,MUTO,3,6,N,YU,5551
-2021-01-08,15:18,Friday,VAUGHAN MC STATION,TUATC,4,7,S,YU,5526
-2021-01-08,15:23,Friday,PIONEER VILLAGE STATIO,MUIRS,0,0,,YU,0
-2021-01-08,15:46,Friday,SPADINA YUS STATION,MUI,12,15,N,YU,5456
-2021-01-08,15:57,Friday,KENNEDY BD STATION,EUPI,3,6,W,BD,5105
-2021-01-08,16:06,Friday,ST GEORGE BD STATION,SUO,7,10,W,BD,5084
-2021-01-08,16:32,Friday,VAUGHAN MC STATION,SUDP,0,0,,YU,0
-2021-01-08,16:46,Friday,ST PATRICK STATION,SUO,11,14,S,YU,6036
-2021-01-08,17:19,Friday,KIPLING STATION,MUSAN,0,0,E,BD,5287
-2021-01-08,18:02,Friday,CHESTER STATION,TUO,0,0,E,BD,5362
-2021-01-08,19:41,Friday,WILSON STATION,SUDP,0,0,S,YU,6131
-2021-01-08,19:46,Friday,COXWELL STATION,SUDP,0,0,,BD,0
-2021-01-08,20:15,Friday,FINCH WEST STATION,MUIS,0,0,,YU,0
-2021-01-08,22:00,Friday,YONGE/UNIVERSITY AND B,MUO,0,0,,YU,0
-2021-01-08,22:49,Friday,ISLINGTON STATION,PUMEL,0,0,,BD,0
-2021-01-08,22:58,Friday,BLOOR STATION,MUIRS,0,0,,YU,0
-2021-01-08,23:06,Friday,WELLESLEY STATION,SUDP,4,9,S,YU,5556
-2021-01-08,23:15,Friday,SHERBOURNE STATION,PUSRA,6,12,E,BD,5316
-2021-01-09,00:58,Saturday,UNION STATION,SUDP,3,8,N,YU,6011
-2021-01-09,01:52,Saturday,SPADINA YUS STATION,SUO,5,0,N,YU,5796
-2021-01-09,02:44,Saturday,KIPLING STATION,SUO,0,0,,BD,0
-2021-01-09,04:41,Saturday,DONLANDS STATION,PUSSW,0,0,W,BD,88
-2021-01-09,05:45,Saturday,VAUGHAN MC STATION,MUNOA,10,20,S,YU,5811
-2021-01-09,06:43,Saturday,BLOOR STATION,MUPAA,3,8,S,YU,5661
-2021-01-09,07:02,Saturday,ROSEDALE STATION,MUSC,0,0,N,YU,5831
-2021-01-09,07:05,Saturday,ROSEDALE STATION,MUSC,0,0,N,YU,5791
-2021-01-09,08:02,Saturday,VAUGHAN MC STATION,TUATC,4,9,S,YU,5426
-2021-01-09,08:36,Saturday,ROSEDALE STATION,MUATC,0,0,S,YU,6001
-2021-01-09,08:56,Saturday,ROSEDALE STATION,MUSC,3,8,N,YU,5426
-2021-01-09,09:37,Saturday,DUNDAS STATION,MUPAA,0,0,N,YU,5396
-2021-01-09,11:15,Saturday,BLOOR STATION,MUATC,5,10,S,YU,6001
-2021-01-09,11:35,Saturday,ROSEDALE STATION,MUATC,0,0,S,YU,5591
-2021-01-09,12:17,Saturday,WILSON STATION,MUATC,3,7,S,YU,5971
-2021-01-09,12:34,Saturday,BLOOR STATION,MUPAA,3,8,S,YU,5966
-2021-01-09,13:20,Saturday,SPADINA BD STATION,SUUT,7,11,E,BD,5343
-2021-01-09,13:29,Saturday,BLOOR STATION,MUIS,0,0,S,YU,0
-2021-01-09,13:48,Saturday,ROSEDALE STATION,EUDO,3,6,S,YU,6136
-2021-01-09,13:55,Saturday,SPADINA BD STATION,MUIS,0,0,,BD,0
-2021-01-09,13:59,Saturday,KENNEDY BD STATION,PUMST,0,0,,BD,0
-2021-01-09,14:00,Saturday,HIGH PARK STATION,EUNT,5,9,W,BD,5250
-2021-01-09,14:01,Saturday,DUNDAS STATION,SUAP,0,0,,YU,0
-2021-01-09,14:01,Saturday,ROSEDALE STATION,EUNT,3,6,N,YU,5426
-2021-01-09,14:03,Saturday,QUEEN STATION,SUDP,10,13,S,YU,5656
-2021-01-09,14:27,Saturday,VAUGHAN MC STATION,MUTO,3,6,S,YU,5466
-2021-01-09,15:20,Saturday,VAUGHAN MC STATION,TUNIP,7,9,S,YU,5946
-2021-01-09,16:19,Saturday,YONGE BD STATION,MUIS,0,0,,BD,0
-2021-01-09,16:47,Saturday,DAVISVILLE STATION,TUSC,0,0,S,YU,5591
-2021-01-09,16:57,Saturday,KENNEDY BD STATION,MUPAA,0,0,W,BD,5155
-2021-01-09,17:17,Saturday,ST CLAIR STATION,MUPAA,3,6,S,YU,6011
-2021-01-09,17:30,Saturday,DUNDAS WEST STATION,MUNCA,0,0,,BD,0
-2021-01-09,17:57,Saturday,ST GEORGE BD STATION,SUROB,0,0,W,BD,0
-2021-01-09,18:13,Saturday,BLOOR STATION,SUAE,8,11,N,YU,5651
-2021-01-09,19:33,Saturday,VAUGHAN MC STATION,SUAP,3,8,S,YU,5476
-2021-01-09,20:42,Saturday,YONGE BD STATION,SUDP,6,12,W,BD,5009
-2021-01-09,20:44,Saturday,BLOOR STATION,SUAP,0,0,S,YU,5841
-2021-01-09,20:52,Saturday,KEELE STATION,MUPAA,0,0,E,BD,5010
-2021-01-09,22:00,Saturday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-01-09,22:25,Saturday,VICTORIA PARK STATION,SUO,0,0,,BD,0
-2021-01-09,23:15,Saturday,EGLINTON WEST STATION,SUDP,3,8,S,YU,5956
-2021-01-09,23:16,Saturday,VAUGHAN MC STATION,TUNIP,5,7,S,YU,5516
-2021-01-10,00:04,Sunday,LESLIE STATION,EUSC,0,0,W,SHP,6176
-2021-01-10,00:34,Sunday,VAUGHAN MC STATION,MUTO,4,9,S,YU,5896
-2021-01-10,00:45,Sunday,DUNDAS STATION,SUDP,10,15,N,YU,6061
-2021-01-10,01:25,Sunday,SHEPPARD WEST STATION,SUO,0,0,S,YU,0
-2021-01-10,01:44,Sunday,EGLINTON WEST STATION,MUATC,4,9,N,YU,6076
-2021-01-10,01:59,Sunday,YONGE BD STATION,SUDP,16,0,W,BD,5114
-2021-01-10,09:18,Sunday,DAVISVILLE STATION,SUAP,0,0,,YU,0
-2021-01-10,10:07,Sunday,SHEPPARD STATION,SUDP,5,9,S,YU,5631
-2021-01-10,10:40,Sunday,BESSARION STATION,TUSUP,12,17,E,SHP,6146
-2021-01-10,11:28,Sunday,BLOOR STATION,SUDP,3,8,S,YU,5874
-2021-01-10,13:23,Sunday,LANSDOWNE STATION,MUIR,23,28,W,BD,5091
-2021-01-10,15:22,Sunday,CHESTER STATION,MUPAA,5,10,W,BD,5091
-2021-01-10,15:32,Sunday,YONGE BD STATION,MUIR,5,10,W,BD,5097
-2021-01-10,17:05,Sunday,BAY STATION,MUPAA,0,0,W,BD,5347
-2021-01-10,17:07,Sunday,KENNEDY BD STATION,MUIS,0,0,E,BD,0
-2021-01-10,19:26,Sunday,KENNEDY BD STATION,EUAC,5,10,W,BD,5285
-2021-01-10,19:39,Sunday,WARDEN STATION,TUO,0,0,E,BD,5289
-2021-01-10,19:57,Sunday,DUNDAS STATION,SUDP,3,8,S,YU,5816
-2021-01-10,20:03,Sunday,DUNDAS STATION,SUDP,3,8,S,YU,5671
-2021-01-10,20:11,Sunday,QUEEN STATION,SUDP,3,8,S,YU,5936
-2021-01-10,20:49,Sunday,BLOOR STATION,SUDP,3,8,N,YU,5871
-2021-01-10,21:10,Sunday,ST GEORGE BD STATION,TUMVS,7,12,W,BD,5257
-2021-01-10,21:22,Sunday,ST GEORGE BD STATION,MUIS,0,0,E,BD,5158
-2021-01-10,22:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-01-10,22:03,Sunday,DUNDAS WEST STATION,MUPR1,135,150,W,BD,5051
-2021-01-10,22:36,Sunday,LESLIE STATION,EUSC,0,0,W,SHP,6176
-2021-01-10,22:55,Sunday,ST GEORGE BD STATION,MUPR1,14,19,E,BD,5049
-2021-01-10,23:13,Sunday,BAY STATION,MUO,5,10,E,BD,5049
-2021-01-10,23:22,Sunday,WELLESLEY STATION,SUAP,20,25,N,YU,5691
-2021-01-10,23:58,Sunday,ST CLAIR STATION,MUNOA,5,10,N,YU,5896
-2021-01-11,00:04,Monday,MAIN STREET STATION,SUAE,0,0,,BD,0
-2021-01-11,00:37,Monday,YONGE BD STATION,MUIS,0,0,,BD,0
-2021-01-11,01:19,Monday,DUNDAS WEST STATION,MUO,0,0,,BD,0
-2021-01-11,01:39,Monday,DAVISVILLE STATION,MUSC,0,0,S,YU,5641
-2021-01-11,07:58,Monday,SHERBOURNE STATION,MUD,4,7,W,BD,5310
-2021-01-11,07:59,Monday,SHERBOURNE STATION,TUMVS,0,0,W,BD,5057
-2021-01-11,08:21,Monday,ROSEDALE STATION,TUO,3,6,S,YU,5426
-2021-01-11,08:54,Monday,ROSEDALE STATION,SUUT,14,17,N,YU,5826
-2021-01-11,08:54,Monday,ROSEDALE STATION,MUTO,3,6,N,YU,5826
-2021-01-11,09:38,Monday,RUNNYMEDE STATION,TUMVS,5,8,W,BD,5132
-2021-01-11,09:54,Monday,YORKDALE STATION,EUTL,7,10,N,YU,5886
-2021-01-11,10:06,Monday,KIPLING STATION,MUI,3,6,E,BD,5105
-2021-01-11,10:58,Monday,WELLESLEY STATION,MUPAA,0,0,S,YU,5801
-2021-01-11,11:01,Monday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,5826
-2021-01-11,11:05,Monday,BLOOR STATION,MUPAA,0,0,N,YU,6081
-2021-01-11,11:24,Monday,LAWRENCE WEST STATION,MUI,17,20,S,YU,5681
-2021-01-11,11:35,Monday,WARDEN STATION,SUDP,0,0,E,BD,5257
-2021-01-11,11:49,Monday,ROSEDALE STATION,MUSC,0,0,N,YU,6006
-2021-01-11,11:58,Monday,DUNDAS WEST STATION,TUMVS,0,0,W,BD,5028
-2021-01-11,13:02,Monday,PAPE STATION,EUME,8,11,E,BD,5045
-2021-01-11,13:50,Monday,DUNDAS STATION,SUDP,0,0,S,YU,5426
-2021-01-11,14:15,Monday,FINCH WEST STATION,SUDP,3,6,S,YU,5966
-2021-01-11,14:21,Monday,ROSEDALE STATION,MUSC,0,0,N,YU,6006
-2021-01-11,14:27,Monday,ROSEDALE STATION,TUATC,7,10,S,YU,5456
-2021-01-11,14:50,Monday,SHERBOURNE STATION,EUDO,3,6,W,BD,5310
-2021-01-11,15:01,Monday,BAY STATION,MUDD,7,10,W,BD,5310
-2021-01-11,15:02,Monday,MCCOWAN STATION,TRNIP,3,9,S,SRT,3022
-2021-01-11,16:14,Monday,DUNDAS STATION,MUIR,3,6,S,YU,5781
-2021-01-11,16:27,Monday,YONGE BD STATION,EUCD,4,7,W,BD,5310
-2021-01-11,16:42,Monday,WARDEN STATION,MUO,0,0,,BD,0
-2021-01-11,17:12,Monday,SCARBOROUGH CTR STATIO,MRUI,0,0,,SRT,0
-2021-01-11,17:42,Monday,QUEEN STATION,MUSAN,3,6,N,YU,5385
-2021-01-11,18:02,Monday,ST CLAIR WEST STATION,MUNCA,0,0,,YU,0
-2021-01-11,18:20,Monday,ISLINGTON STATION,SUO,0,0,,BD,0
-2021-01-11,19:09,Monday,WELLESLEY STATION,MUO,3,6,S,YU,6046
-2021-01-11,19:23,Monday,SCARBOROUGH CTR STATIO,PREL,0,0,,SRT,0
-2021-01-11,19:29,Monday,DUFFERIN STATION,MUNCA,0,0,,BD,0
-2021-01-11,21:24,Monday,ST GEORGE YUS STATION,MUIS,0,0,,YU,0
-2021-01-11,21:34,Monday,FINCH STATION,PUTWZ,5,10,S,YU,5516
-2021-01-11,21:40,Monday,ST CLAIR STATION,PUSTC,8,11,S,YU,5781
-2021-01-11,22:00,Monday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-01-11,22:08,Monday,GREENWOOD STATION,SUDP,6,12,W,BD,5315
-2021-01-11,23:23,Monday,QUEEN STATION,MUIS,0,0,S,YU,0
-2021-01-11,23:38,Monday,EGLINTON WEST STATION,PUMEL,0,0,,YU,0
-2021-01-12,01:43,Tuesday,KIPLING STATION,SUDP,0,0,,BD,0
-2021-01-12,02:15,Tuesday,DOWNSVIEW PARK STATION,MUIRS,0,0,,YU,0
-2021-01-12,02:35,Tuesday,SHEPPARD-YONGE STATION,MUIRS,0,0,,SHP,0
-2021-01-12,06:00,Tuesday,TORONTO TRANSIT COMMIS,MUO,0,0,,YU,0
-2021-01-12,06:00,Tuesday,TORONTO TRANSIT COMMIS,MUO,0,0,,SHP,0
-2021-01-12,06:00,Tuesday,TORONTO TRANSIT COMMIS,MRO,0,0,,SRT,0
-2021-01-12,06:58,Tuesday,ST GEORGE YUS STATION,MUPAA,0,0,N,YU,5386
-2021-01-12,09:22,Tuesday,ROSEDALE STATION,TUSC,0,0,N,YU,6041
-2021-01-12,10:38,Tuesday,YORK MILLS STATION,EUNT,3,6,N,YU,5866
-2021-01-12,10:44,Tuesday,ROYAL YORK STATION,TUSC,0,0,E,BD,5079
-2021-01-12,11:30,Tuesday,YORK UNIVERSITY STATIO,EUBK,3,6,N,YU,5391
-2021-01-12,11:45,Tuesday,CHRISTIE STATION,MUIS,0,0,,BD,0
-2021-01-12,12:43,Tuesday,ST GEORGE YUS STATION,MUIS,0,0,,YU,0
-2021-01-12,13:50,Tuesday,BAY STATION,SUDP,3,6,E,BD,5105
-2021-01-12,15:29,Tuesday,VAUGHAN MC STATION,TUNIP,3,6,S,YU,5951
-2021-01-12,15:39,Tuesday,KEELE STATION,MUSC,0,0,W,BD,5324
-2021-01-12,15:49,Tuesday,LAWRENCE EAST STATION,SRDP,0,0,,SRT,0
-2021-01-12,15:53,Tuesday,WARDEN STATION,MUPAA,0,0,E,BD,5105
-2021-01-12,16:54,Tuesday,YONGE BD STATION,SUO,3,6,W,BD,5294
-2021-01-12,17:08,Tuesday,DUNDAS WEST STATION,MUNCA,0,0,,BD,0
-2021-01-12,17:14,Tuesday,DONLANDS STATION,MUI,6,9,E,BD,5075
-2021-01-12,17:27,Tuesday,YORKDALE STATION,MUTD,0,0,N,YU,5966
-2021-01-12,17:49,Tuesday,MAIN STREET STATION,PUMEL,0,0,,BD,0
-2021-01-12,19:49,Tuesday,QUEEN'S PARK STATION,MUPAA,0,0,N,YU,5576
-2021-01-12,20:23,Tuesday,MCCOWAN STATION,SRO,8,12,S,SRT,3022
-2021-01-12,21:14,Tuesday,BLOOR STATION,SUSA,0,0,N,YU,0
-2021-01-12,22:00,Tuesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-01-12,22:36,Tuesday,VICTORIA PARK STATION,SUDP,0,0,W,BD,5356
-2021-01-12,22:39,Tuesday,KENNEDY BD STATION,MUPAA,0,0,,BD,5112
-2021-01-12,23:04,Tuesday,SUMMERHILL STATION,MUPAA,0,0,S,YU,5471
-2021-01-12,23:48,Tuesday,FINCH STATION,SUSA,0,0,,YU,0
-2021-01-13,00:32,Wednesday,YONGE BD STATION,MUIR,3,9,W,BD,5283
-2021-01-13,00:42,Wednesday,EGLINTON STATION,SUDP,5,10,S,YU,5876
-2021-01-13,01:34,Wednesday,HIGHWAY 407 STATION,MUIS,0,0,S,YU,5636
-2021-01-13,01:43,Wednesday,CHRISTIE STATION,SUROB,0,0,,BD,0
-2021-01-13,03:24,Wednesday,YONGE-UNIVERSITY LINE,MUO,0,0,,YU,0
-2021-01-13,05:29,Wednesday,KENNEDY BD STATION,SUROB,0,0,,BD,0
-2021-01-13,05:52,Wednesday,MCCOWAN STATION,MRCL,7,14,S,SRT,3024
-2021-01-13,06:31,Wednesday,COLLEGE STATION,SUUT,0,0,N,YU,5661
-2021-01-13,06:44,Wednesday,ROSEDALE STATION,MUATC,3,6,S,YU,6076
-2021-01-13,06:57,Wednesday,BLOOR STATION,MUATC,3,6,S,YU,6076
-2021-01-13,07:00,Wednesday,KING STATION,MUPAA,0,0,N,YU,5396
-2021-01-13,08:17,Wednesday,WILSON STATION,SUDP,6,9,S,YU,6016
-2021-01-13,08:39,Wednesday,FINCH STATION,MUSC,0,0,S,YU,5966
-2021-01-13,09:15,Wednesday,ROSEDALE STATION,EUBK,5,8,N,YU,6051
-2021-01-13,09:19,Wednesday,ST GEORGE YUS STATION,SUDP,3,6,S,YU,6016
-2021-01-13,09:20,Wednesday,COXWELL STATION,SUDP,7,10,W,BD,5175
-2021-01-13,09:26,Wednesday,ROSEDALE STATION,SUUT,14,17,N,YU,5676
-2021-01-13,11:10,Wednesday,KENNEDY BD STATION,EUDO,5,8,W,BD,5158
-2021-01-13,11:20,Wednesday,ISLINGTON STATION,PUSTS,3,6,W,BD,5346
-2021-01-13,12:10,Wednesday,ISLINGTON STATION,PUSTS,0,0,W,BD,5331
-2021-01-13,12:38,Wednesday,ISLINGTON STATION,PUSTS,5,8,W,BD,5261
-2021-01-13,12:43,Wednesday,FINCH STATION,EUSC,0,0,N,YU,5556
-2021-01-13,12:43,Wednesday,PAPE STATION,PUMEL,0,0,,BD,0
-2021-01-13,13:31,Wednesday,KENNEDY BD STATION,PUMST,0,0,,BD,0
-2021-01-13,13:39,Wednesday,ROSEDALE STATION,MUATC,0,0,N,YU,5961
-2021-01-13,14:31,Wednesday,BLOOR STATION,MUIR,0,0,S,YU,5441
-2021-01-13,15:06,Wednesday,ROSEDALE STATION,MUSC,0,0,N,YU,5556
-2021-01-13,15:22,Wednesday,FINCH WEST STATION,MUSAN,3,6,S,,5751
-2021-01-13,16:35,Wednesday,KENNEDY BD STATION,MUI,3,6,W,BD,5331
-2021-01-13,16:36,Wednesday,SPADINA BD STATION,MUD,3,6,E,BD,5024
-2021-01-13,16:56,Wednesday,ST GEORGE YUS STATION,MUDD,7,10,S,YU,5456
-2021-01-13,17:08,Wednesday,SHEPPARD STATION,EUSC,0,0,N,YU,5511
-2021-01-13,17:25,Wednesday,PAPE STATION,MUO,6,12,E,BD,5021
-2021-01-13,17:25,Wednesday,QUEEN'S PARK STATION,MUSAN,4,7,N,YU,5546
-2021-01-13,17:35,Wednesday,DONLANDS STATION,MUIE,0,0,E,BD,5353
-2021-01-13,18:38,Wednesday,KIPLING STATION,MUTO,3,6,E,BD,5051
-2021-01-13,19:19,Wednesday,KENNEDY BD STATION,SUDP,0,0,,BD,0
-2021-01-13,19:24,Wednesday,VICTORIA PARK STATION,SUDP,8,14,W,BD,5283
-2021-01-13,19:35,Wednesday,FINCH STATION,SUDP,3,6,S,YU,5956
-2021-01-13,19:43,Wednesday,WILSON STATION,MUIS,0,0,,YU,0
-2021-01-13,19:48,Wednesday,BLOOR STATION,SUDP,0,0,N,YU,6041
-2021-01-13,19:57,Wednesday,COLLEGE STATION,PUMEL,0,0,,YU,0
-2021-01-13,20:30,Wednesday,UNION STATION,SUDP,0,0,,YU,0
-2021-01-13,22:00,Wednesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-01-13,22:08,Wednesday,DUNDAS WEST STATION,MUIS,0,0,,BD,0
-2021-01-13,22:08,Wednesday,EGLINTON WEST STATION,PUMEL,0,0,,,0
-2021-01-13,23:00,Wednesday,FINCH TO EGLINTON STAT,MUO,0,0,,YU,0
-2021-01-13,23:03,Wednesday,FINCH STATION,MUIS,0,0,S,YU,0
-2021-01-13,23:20,Wednesday,BLOOR STATION,SUUT,4,9,N,YU,5981
-2021-01-13,23:24,Wednesday,ISLINGTON STATION,TUO,6,12,W,BD,5017
-2021-01-13,23:26,Wednesday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-01-14,00:29,Thursday,CASTLE FRANK STATION,MUI,13,19,E,BD,5270
-2021-01-14,01:29,Thursday,SPADINA BD STATION,SUUT,10,16,W,BD,5155
-2021-01-14,02:37,Thursday,VAUGHAN MC STATION,SUAE,0,0,N,YU,5466
-2021-01-14,03:16,Thursday,VICTORIA PARK STATION,SUO,0,0,,BD,0
-2021-01-14,04:59,Thursday,KENNEDY BD STATION,SUDP,0,0,,BD,0
-2021-01-14,06:00,Thursday,YORK UNIVERSITY STATIO,EUTR,4,7,S,YU,5616
-2021-01-14,06:16,Thursday,KIPLING STATION,MUIRS,0,0,,BD,0
-2021-01-14,06:18,Thursday,LAWRENCE WEST STATION,EUCD,3,6,S,YU,5616
-2021-01-14,06:25,Thursday,ROSEDALE STATION,MUATC,6,9,S,YU,6046
-2021-01-14,06:43,Thursday,GREENWOOD STATION,MUTO,3,6,E,BD,5346
-2021-01-14,06:55,Thursday,DON MILLS STATION,TUSC,0,0,W,SHP,6191
-2021-01-14,08:26,Thursday,FINCH STATION,MUSC,0,0,S,YU,5796
-2021-01-14,08:27,Thursday,UNION STATION,MUIRS,0,0,,YU,0
-2021-01-14,09:39,Thursday,ROSEDALE STATION,MUATC,5,8,N,YU,5786
-2021-01-14,10:28,Thursday,SHERBOURNE STATION,MUIS,0,0,W,BD,0
-2021-01-14,10:39,Thursday,KIPLING STATION,MUSAN,3,6,E,BD,5024
-2021-01-14,10:50,Thursday,BESSARION STATION,EUDO,4,9,W,SHP,6176
-2021-01-14,13:07,Thursday,COXWELL STATION,TUS,4,7,W,BD,5112
-2021-01-14,13:10,Thursday,QUEEN STATION,MUPR1,94,97,N,YU,5906
-2021-01-14,13:18,Thursday,KIPLING STATION,SUDP,3,6,E,BD,5051
-2021-01-14,15:04,Thursday,BLOOR STATION,MUIRS,0,0,S,YU,0
-2021-01-14,15:37,Thursday,KENNEDY BD STATION,MUIS,0,0,W,BD,0
-2021-01-14,16:21,Thursday,QUEEN STATION,MUNCA,0,0,,YU,0
-2021-01-14,17:04,Thursday,WELLESLEY STATION,SUDP,4,7,S,YU,5571
-2021-01-14,17:37,Thursday,FINCH STATION,TUMVS,0,0,N,YU,5446
-2021-01-14,17:50,Thursday,WELLESLEY STATION,SUUT,9,12,N,YU,5946
-2021-01-14,17:59,Thursday,BAYVIEW STATION,TUSC,0,0,E,SHP,6141
-2021-01-14,18:34,Thursday,KENNEDY BD STATION,SUAP,0,0,,BD,0
-2021-01-14,18:47,Thursday,ROYAL YORK STATION,PUMEL,0,0,,BD,0
-2021-01-14,20:12,Thursday,BAY STATION,MUPAA,0,0,E,BD,5298
-2021-01-14,20:18,Thursday,EGLINTON WEST STATION,MUATC,4,7,N,YU,5766
-2021-01-14,20:24,Thursday,COXWELL STATION,SUDP,4,9,E,BD,5298
-2021-01-14,20:24,Thursday,WOODBINE STATION,MUSAN,4,9,E,BD,5298
-2021-01-14,20:29,Thursday,YONGE BD STATION,SUDP,3,6,W,BD,5058
-2021-01-14,21:05,Thursday,WOODBINE STATION,SUDP,3,9,W,BD,5284
-2021-01-14,21:28,Thursday,WILSON STATION,SUDP,5,10,S,YU,6081
-2021-01-14,22:00,Thursday,CHRISTIE STATION,SUDP,0,0,W,BD,5155
-2021-01-14,22:00,Thursday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-01-14,22:39,Thursday,WELLESLEY STATION,MUIRS,0,0,S,YU,0
-2021-01-14,23:26,Thursday,EGLINTON WEST STATION,SUAP,0,0,S,YU,0
-2021-01-14,23:48,Thursday,GREENWOOD STATION,MUDD,5,11,E,BD,5298
-2021-01-15,00:15,Friday,WILSON STATION,MUTO,5,10,N,YU,6026
-2021-01-15,02:01,Friday,VAUGHAN MC STATION,MUIS,0,0,,YU,0
-2021-01-15,02:10,Friday,LANSDOWNE STATION,SUO,0,0,E,BD,0
-2021-01-15,02:18,Friday,VAUGHAN MC STATION,MUIS,0,0,S,YU,6021
-2021-01-15,05:29,Friday,FINCH STATION,EUTL,4,8,S,YU,6011
-2021-01-15,06:00,Friday,TORONTO TRANSIT COMMIS,MUO,0,0,,YU,0
-2021-01-15,06:00,Friday,TORONTO TRANSIT COMMIS,MUO,0,0,,SHP,0
-2021-01-15,06:00,Friday,TORONTO TRANSIT COMMIS,MRO,0,0,,SRT,0
-2021-01-15,06:55,Friday,VAUGHAN MC STATION,EUTL,3,6,S,YU,5911
-2021-01-15,07:52,Friday,EGLINTON WEST STATION,SUDP,0,0,S,YU,5456
-2021-01-15,09:50,Friday,VICTORIA PARK STATION,PUSTS,0,0,W,BD,5030
-2021-01-15,10:02,Friday,KEELE STATION,MUIRS,0,0,E,BD,0
-2021-01-15,11:17,Friday,LAWRENCE WEST STATION,SUDP,0,0,S,YU,5781
-2021-01-15,11:34,Friday,KIPLING STATION,TUMVS,6,10,W,BD,5075
-2021-01-15,11:41,Friday,WILSON CARHOUSE,MUO,0,0,,YU,0
-2021-01-15,11:48,Friday,MAIN STREET STATION,SUDP,0,0,E,BD,5024
-2021-01-15,12:14,Friday,LANSDOWNE STATION,MUIRS,5,8,E,BD,5104
-2021-01-15,12:29,Friday,BATHURST STATION,MUSC,0,0,E,BD,5283
-2021-01-15,13:02,Friday,SHEPPARD WEST STATION,MUIRS,0,0,,YU,0
-2021-01-15,13:34,Friday,YORK MILLS STATION,MUPAA,0,0,S,YU,5591
-2021-01-15,14:19,Friday,EGLINTON STATION,MUPAA,0,0,S,YU,5981
-2021-01-15,15:19,Friday,BROADVIEW STATION,SUO,0,0,W,BD,0
-2021-01-15,15:30,Friday,KIPLING STATION,TUMVS,0,0,W,BD,5063
-2021-01-15,16:07,Friday,SPADINA BD STATION,MUSAN,0,0,W,BD,5365
-2021-01-15,16:11,Friday,BLOOR STATION,MUIR,6,9,N,YU,5381
-2021-01-15,18:48,Friday,SPADINA YUS STATION,SUUT,24,27,N,YU,6051
-2021-01-15,19:19,Friday,BLOOR STATION,SUDP,3,6,S,YU,5641
-2021-01-15,19:55,Friday,LAWRENCE STATION,MUSAN,3,6,S,YU,6031
-2021-01-15,20:46,Friday,YORKDALE STATION,MUATC,7,10,N,YU,6031
-2021-01-15,21:34,Friday,ST GEORGE YUS STATION,MUIS,0,0,N,YU,5441
-2021-01-15,22:00,Friday,YONGE-UNIVERSITY AND B,MUO,0,0,,YONGE/UNIVERSITY/BLOOR,0
-2021-01-15,22:29,Friday,LAWRENCE STATION,TUSC,0,0,N,YU,5876
-2021-01-15,22:59,Friday,YORK MILLS STATION,SUDP,0,0,S,YU,5771
-2021-01-16,00:02,Saturday,WELLESLEY STATION,MUPAA,0,0,S,YU,6136
-2021-01-16,00:55,Saturday,CHESTER STATION,EUCA,12,18,E,BD,5017
-2021-01-16,01:08,Saturday,DUNDAS STATION,MUIRS,0,0,,YU,0
-2021-01-16,01:22,Saturday,FINCH STATION,MUI,0,0,S,YU,5916
-2021-01-16,01:37,Saturday,KENNEDY BD STATION,MUTO,6,12,W,BD,5330
-2021-01-16,02:13,Saturday,FINCH STATION,MUIS,0,0,,YU,0
-2021-01-16,06:05,Saturday,GREENWOOD STATION,EUBO,5,10,E,BD,5066
-2021-01-16,06:24,Saturday,PAPE STATION,EUAC,5,10,E,BD,5084
-2021-01-16,06:49,Saturday,WILSON STATION,EUBK,5,10,N,YU,5466
-2021-01-16,08:56,Saturday,ISLINGTON STATION,SUDP,3,8,W,BD,5010
-2021-01-16,10:09,Saturday,BLOOR STATION,MUIS,0,0,S,YU,0
-2021-01-16,10:28,Saturday,ST CLAIR STATION,MUPAA,0,0,N,YU,6056
-2021-01-16,12:16,Saturday,MCCOWAN STATION,PRSA,32,39,S,SRT,3018
-2021-01-16,12:30,Saturday,ISLINGTON STATION,MUDD,0,0,W,BD,5257
-2021-01-16,12:41,Saturday,DUPONT STATION,MUPAA,0,0,S,YU,6131
-2021-01-16,12:58,Saturday,WILSON STATION,TUNIP,3,6,S,YU,5676
-2021-01-16,13:56,Saturday,KENNEDY BD STATION,TUMVS,4,8,E,BD,5051
-2021-01-16,16:44,Saturday,LAWRENCE STATION,MUPAA,0,0,N,YU,5786
-2021-01-16,19:14,Saturday,KENNEDY BD STATION,MUIS,0,0,,BD,8704
-2021-01-16,20:31,Saturday,DUNDAS WEST STATION,MUIS,0,0,,BD,4546
-2021-01-16,20:38,Saturday,VAUGHAN MC STATION,MUTO,3,8,S,YU,5981
-2021-01-16,22:00,Saturday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-01-16,23:49,Saturday,ROYAL YORK STATION,SUUT,11,17,W,BD,5324
-2021-01-17,01:07,Sunday,LAWRENCE STATION,MUPAA,0,0,S,YU,6046
-2021-01-17,02:09,Sunday,ST GEORGE BD STATION,SUDP,0,0,,BD,0
-2021-01-17,02:10,Sunday,FINCH STATION,SUDP,0,0,,YU,0
-2021-01-17,07:51,Sunday,ROSEDALE STATION,MUSC,0,0,N,YU,5421
-2021-01-17,09:33,Sunday,YONGE BD STATION,MUIRS,0,0,,BD,0
-2021-01-17,12:11,Sunday,BATHURST STATION,SUROB,0,0,,BD,0
-2021-01-17,12:50,Sunday,UNION STATION,MUPAA,0,0,N,YU,6056
-2021-01-17,13:48,Sunday,LAWRENCE STATION,EUSC,0,0,N,YU,5551
-2021-01-17,13:59,Sunday,PAPE STATION,MUSAN,4,8,W,BD,5190
-2021-01-17,14:01,Sunday,CASTLE FRANK STATION,MUIS,0,0,E,BD,0
-2021-01-17,15:55,Sunday,ISLINGTON STATION,TUSC,0,0,W,BD,5121
-2021-01-17,16:12,Sunday,LAWRENCE WEST STATION,MUI,20,24,S,YU,6141
-2021-01-17,16:18,Sunday,BROADVIEW STATION,SUO,0,0,W,BD,5169
-2021-01-17,16:54,Sunday,BAYVIEW STATION,SUDP,0,0,,SHP,0
-2021-01-17,16:54,Sunday,CHESTER STATION,SUUT,0,0,E,BD,5008
-2021-01-17,17:47,Sunday,QUEEN'S PARK STATION,SUDP,10,14,N,YU,6136
-2021-01-17,18:53,Sunday,YONGE BD STATION,SUDP,0,0,W,BD,5292
-2021-01-17,19:57,Sunday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-01-17,21:06,Sunday,WELLESLEY STATION,MUIS,0,0,,YU,0
-2021-01-17,21:35,Sunday,QUEEN STATION,SUEAS,7,12,S,YU,5441
-2021-01-17,22:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-01-17,22:45,Sunday,LAWRENCE STATION,MUI,19,24,N,YU,5911
-2021-01-17,22:55,Sunday,DAVISVILLE STATION,SUDP,5,10,N,YU,5696
-2021-01-17,23:13,Sunday,SPADINA YUS STATION,MUIS,5,10,N,YU,5826
-2021-01-18,00:10,Monday,KENNEDY BD STATION,EUNT,6,12,W,BD,5292
-2021-01-18,00:14,Monday,MUSEUM STATION,EUECD,5,10,N,YU,5746
-2021-01-18,00:47,Monday,SHEPPARD-YONGE STATION,MUIS,0,0,,SHP,0
-2021-01-18,00:57,Monday,ROSEDALE STATION,MUATC,3,8,S,YU,5691
-2021-01-18,01:02,Monday,KENNEDY SRT STATION,ERDO,6,11,N,SRT,3025
-2021-01-18,01:03,Monday,EGLINTON STATION,MUSC,0,0,S,YU,5646
-2021-01-18,02:12,Monday,DON MILLS STATION,MUIS,0,0,,SHP,0
-2021-01-18,02:25,Monday,KIPLING STATION,SUDP,0,0,,BD,0
-2021-01-18,05:23,Monday,SHEPPARD-YONGE STATION,MUSC,0,0,E,SHP,6156
-2021-01-18,05:41,Monday,DON MILLS STATION,MUSC,0,0,W,SHP,6186
-2021-01-18,05:46,Monday,FINCH STATION,MUSC,0,0,S,YU,5441
-2021-01-18,06:00,Monday,TORONTO TRANSIT COMMIS,MUO,0,0,,YU/BD,0
-2021-01-18,06:00,Monday,TORONTO TRANSIT COMMIS,MUO,0,0,,SHP,0
-2021-01-18,06:00,Monday,TORONTO TRANSIT COMMIS,MRO,0,0,,SRT,0
-2021-01-18,08:14,Monday,KENNEDY SRT STATION,ERTC,9,13,N,SRT,3027
-2021-01-18,08:24,Monday,ST GEORGE YUS STATION,SUDP,0,0,S,YU,5451
-2021-01-18,08:49,Monday,EGLINTON WEST STATION,TUATC,3,6,N,YU,6126
-2021-01-18,08:53,Monday,VICTORIA PARK STATION,EUAL,3,6,E,BD,5112
-2021-01-18,09:57,Monday,ST CLAIR STATION,PUTIJ,3,6,S,YU,5801
-2021-01-18,10:42,Monday,SPADINA STATION,PUMO,0,0,N,YU,5816
-2021-01-18,10:49,Monday,SPADINA BD STATION,MUO,0,0,E,BD,5045
-2021-01-18,12:35,Monday,YONGE BD STATION,MUIRS,0,0,,BD,0
-2021-01-18,13:07,Monday,ROYAL YORK STATION,PUMEL,0,0,,BD,0
-2021-01-18,15:08,Monday,CASTLE FRANK STATION,EUDO,9,12,W,BD,5077
-2021-01-18,15:33,Monday,SUMMERHILL STATION,SUDP,3,6,N,YU,5721
-2021-01-18,15:46,Monday,DAVISVILLE STATION,MUPAA,4,7,N,YU,5676
-2021-01-18,15:57,Monday,ST PATRICK STATION,SUDP,7,10,N,YU,6026
-2021-01-18,16:16,Monday,EGLINTON STATION,PUMEL,0,0,,YU,0
-2021-01-18,16:17,Monday,FINCH STATION,TUNIP,3,6,S,YU,5951
-2021-01-18,16:19,Monday,ST GEORGE YUS STATION,MUI,23,26,S,YU,6071
-2021-01-18,16:43,Monday,SPADINA YUS STATION,MUO,31,34,S,YU,5451
-2021-01-18,16:45,Monday,SPADINA BD STATION,SUEAS,18,21,E,BD,5024
-2021-01-18,16:55,Monday,CHESTER STATION,MUPAA,0,0,E,BD,5186
-2021-01-18,16:58,Monday,FINCH STATION,TUNIP,3,6,S,YU,6046
-2021-01-18,17:32,Monday,GREENWOOD STATION,MUPAA,4,7,W,BD,5046
-2021-01-18,17:34,Monday,MAIN STREET STATION,EUCD,9,12,W,BD,5077
-2021-01-18,17:58,Monday,HIGHWAY 407 STATION,SUDP,13,16,N,YU,5631
-2021-01-18,18:04,Monday,YORK MILLS STATION,EUDO,6,9,N,YU,5526
-2021-01-18,18:06,Monday,SHEPPARD STATION,PUSI,0,0,N,YU,5941
-2021-01-18,18:13,Monday,SHEPPARD STATION,EUCD,3,6,N,YU,5526
-2021-01-18,18:17,Monday,SHEPPARD STATION,PUSI,4,7,N,YU,5506
-2021-01-18,18:19,Monday,KENNEDY BD STATION,MUO,3,6,W,BD,5347
-2021-01-18,18:30,Monday,ST CLAIR STATION,EUBK,4,7,S,YU,5501
-2021-01-18,18:34,Monday,MIDLAND STATION,ERTC,7,12,N,SRT,6025
-2021-01-18,19:16,Monday,SPADINA BD STATION,MUPAA,4,7,W,BD,5114
-2021-01-18,19:22,Monday,ST CLAIR STATION,PUTIJ,3,6,S,YU,5771
-2021-01-18,19:23,Monday,LAWRENCE STATION,SUDP,0,0,S,YU,5386
-2021-01-18,20:26,Monday,YONGE BD STATION,SUDP,0,0,E,BD,5143
-2021-01-18,20:37,Monday,ST GEORGE YUS STATION,SUDP,3,6,S,YU,5721
-2021-01-18,22:00,Monday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-01-18,22:01,Monday,ROSEDALE STATION,MUATC,0,0,S,YU,5671
-2021-01-18,23:00,Monday,YONGE-UNIVERSITY SUBWA,MUO,0,0,,YU,0
-2021-01-19,01:34,Tuesday,VAUGHAN MC STATION,SUDP,0,0,S,YU,6051
-2021-01-19,02:17,Tuesday,EGLINTON STATION,MUIRS,0,0,,YU,0
-2021-01-19,02:36,Tuesday,VAUGHAN MC STATION,MUIS,0,0,,YU,0
-2021-01-19,05:24,Tuesday,WILSON DIVISION,MUTO,0,0,,YU,0
-2021-01-19,05:48,Tuesday,DAVISVILLE STATION,EUDO,3,0,S,YU,5501
-2021-01-19,05:54,Tuesday,UNION STATION,MUTO,3,6,N,YU,5821
-2021-01-19,07:22,Tuesday,DON MILLS STATION,MUIS,0,0,,SHP,0
-2021-01-19,08:00,Tuesday,BROADVIEW STATION,TUMVS,6,9,W,BD,5045
-2021-01-19,08:25,Tuesday,FINCH STATION,MUSC,0,0,S,YU,5511
-2021-01-19,09:38,Tuesday,EGLINTON WEST STATION,MUSAN,3,6,N,YU,6136
-2021-01-19,10:22,Tuesday,QUEEN STATION,MUNCA,0,0,,YU,0
-2021-01-19,10:48,Tuesday,DUNDAS STATION,MUPAA,3,6,S,YU,5521
-2021-01-19,11:34,Tuesday,EGLINTON STATION,PUSTS,3,6,S,YU,5396
-2021-01-19,11:39,Tuesday,VAUGHAN MC STATION,MUCL,3,6,S,YU,5971
-2021-01-19,11:56,Tuesday,KIPLING STATION,SUDP,4,7,E,BD,5320
-2021-01-19,13:17,Tuesday,CHRISTIE STATION,MUIR,13,16,E,BD,5024
-2021-01-19,13:22,Tuesday,ROSEDALE STATION,MUATC,3,6,S,YU,5596
-2021-01-19,13:25,Tuesday,YORKDALE STATION,SUO,0,0,N,YU,6126
-2021-01-19,13:43,Tuesday,KEELE STATION,SUDP,6,9,E,BD,5171
-2021-01-19,13:52,Tuesday,DUNDAS WEST STATION,PUMEL,0,0,,BD,0
-2021-01-19,13:52,Tuesday,VAUGHAN MC STATION,TUNIP,3,6,S,YU,6086
-2021-01-19,13:58,Tuesday,CASTLE FRANK STATION,SUO,0,0,E,BD,0
-2021-01-19,14:12,Tuesday,COXWELL STATION,TUNIP,3,6,W,BD,5017
-2021-01-19,14:51,Tuesday,ST CLAIR STATION,MUSAN,4,7,N,YU,5841
-2021-01-19,15:16,Tuesday,BLOOR STATION,PUMST,0,0,,YU,0
-2021-01-19,15:37,Tuesday,BESSARION STATION,SUO,0,0,,SHP,0
-2021-01-19,16:31,Tuesday,ROYAL YORK STATION,SUO,0,0,W,BD,5164
-2021-01-19,16:36,Tuesday,KIPLING STATION,SUO,7,10,E,BD,5204
-2021-01-19,17:56,Tuesday,SHEPPARD STATION,SUDP,0,0,S,YU,5846
-2021-01-19,18:00,Tuesday,BAYVIEW STATION,SUO,10,15,W,SHP,6196
-2021-01-19,18:04,Tuesday,WARDEN STATION,TUMVS,0,0,E,BD,5292
-2021-01-19,20:05,Tuesday,ST CLAIR WEST STATION,MUIR,4,7,S,YU,5806
-2021-01-19,21:20,Tuesday,DON MILLS STATION,TUMVS,0,0,E,SHP,6156
-2021-01-19,21:54,Tuesday,SHEPPARD-YONGE STATION,EUBO,4,9,E,SHP,6156
-2021-01-19,22:00,Tuesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-01-19,22:05,Tuesday,RUNNYMEDE STATION,SUDP,0,0,E,BD,5114
-2021-01-19,22:55,Tuesday,EGLINTON STATION,EUVE,8,13,S,YU,5546
-2021-01-20,01:52,Wednesday,WILSON STATION,MUIS,0,0,,YU,0
-2021-01-20,02:36,Wednesday,VAUGHAN MC STATION,MUI,0,0,S,YU,5806
-2021-01-20,05:37,Wednesday,GREENWOOD STATION,PUTSM,0,0,E,BD,5164
-2021-01-20,06:03,Wednesday,ROYAL YORK STATION,EUME,10,13,E,BD,5010
-2021-01-20,06:22,Wednesday,KEELE YARD,EUCD,0,0,E,BD,5010
-2021-01-20,07:05,Wednesday,WOODBINE STATION,EUDO,7,10,W,BD,5077
-2021-01-20,07:37,Wednesday,SUMMERHILL STATION,MUSC,0,0,N,YU,5831
-2021-01-20,08:23,Wednesday,QUEEN STATION,MUNCA,0,0,,YU,0
-2021-01-20,08:41,Wednesday,SHEPPARD STATION,SUDP,3,6,S,YU,5726
-2021-01-20,09:46,Wednesday,VAUGHAN MC STATION,MUTO,4,7,S,YU,5861
-2021-01-20,10:00,Wednesday,VAUGHAN MC STATION,TUNIP,3,6,S,YU,5721
-2021-01-20,10:09,Wednesday,ST CLAIR STATION,SUDP,4,7,S,YU,5396
-2021-01-20,10:32,Wednesday,ROSEDALE STATION,EUSC,3,6,N,YU,6016
-2021-01-20,10:39,Wednesday,DUNDAS STATION,MUIRS,0,0,N,YU,0
-2021-01-20,12:03,Wednesday,EGLINTON STATION,SUUT,59,62,S,YU,5951
-2021-01-20,12:26,Wednesday,YORK MILLS CENTRE TRAC,EUSC,0,0,N,YU,5551
-2021-01-20,13:21,Wednesday,EGLINTON STATION,EUSC,0,0,S,YU,6026
-2021-01-20,13:36,Wednesday,KENNEDY BD STATION,PUMO,4,7,E,BD,5249
-2021-01-20,14:06,Wednesday,EGLINTON STATION,MUIS,0,0,,YU,0
-2021-01-20,14:22,Wednesday,LAWRENCE WEST STATION,SUUT,63,69,N,YU,5511
-2021-01-20,15:15,Wednesday,EGLINTON STATION,MUPAA,3,6,N,YU,6111
-2021-01-20,16:45,Wednesday,GREENWOOD STATION,EUNT,4,7,E,BD,5222
-2021-01-20,17:40,Wednesday,DUNDAS WEST STATION,MUSC,0,0,E,BD,5169
-2021-01-20,17:50,Wednesday,SHEPPARD STATION,SUAE,0,0,,YU,0
-2021-01-20,18:10,Wednesday,DUNDAS STATION,SUDP,0,0,N,YU,0
-2021-01-20,18:12,Wednesday,YONGE BD STATION,SUO,3,6,E,BD,5256
-2021-01-20,18:17,Wednesday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-01-20,18:53,Wednesday,YONGE BD STATION,PUMEL,0,0,,BD,0
-2021-01-20,19:55,Wednesday,BATHURST STATION,SUDP,3,8,W,BD,5176
-2021-01-20,20:46,Wednesday,YORK MILLS STATION,MUSAN,0,0,N,YU,5941
-2021-01-20,21:24,Wednesday,ST GEORGE YU STATION,MUI,8,13,S,YU,6121
-2021-01-20,21:29,Wednesday,FINCH STATION,SUDP,0,0,N,YU,5591
-2021-01-20,21:37,Wednesday,NORTH YORK CTR STATION,SUDP,0,0,S,YU,5846
-2021-01-20,22:00,Wednesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-01-20,22:16,Wednesday,SHEPPARD WEST STATION,MUATC,7,12,S,YU,5416
-2021-01-20,22:43,Wednesday,YORKDALE STATION,MUATC,3,8,S,YU,5416
-2021-01-20,22:59,Wednesday,WILSON STATION,MUATC,10,15,S,YU,5416
-2021-01-20,23:00,Wednesday,YONGE-UNIVERSITY SUBWA,MUO,0,0,,YU,0
-2021-01-21,00:27,Thursday,SHEPPARD WEST STATION,MUTO,10,15,S,YU,5696
-2021-01-21,01:26,Thursday,ISLINGTON STATION,TUMVS,0,0,E,BD,5371
-2021-01-21,01:54,Thursday,WARDEN STATION,MUIS,0,0,,BD,0
-2021-01-21,02:15,Thursday,VAUGHAN MC STATION,MUIS,0,0,,YU,0
-2021-01-21,05:36,Thursday,FINCH STATION,TUSC,0,0,S,YU,5666
-2021-01-21,06:03,Thursday,BAY STATION,SUEAS,17,21,W,BD,5320
-2021-01-21,06:09,Thursday,BAY STATION,MUPAA,0,0,E,BD,5222
-2021-01-21,06:12,Thursday,VAUGHAN MC STATION,MUATC,5,8,S,YU,5741
-2021-01-21,06:20,Thursday,FINCH STATION,SUO,0,0,,YU,0
-2021-01-21,06:43,Thursday,DON MILLS STATION,PUSO,3,9,E,SHP,6181
-2021-01-21,06:44,Thursday,FINCH STATION,MUSC,0,0,S,YU,5611
-2021-01-21,07:09,Thursday,BESSARION STATION,MUPAA,0,0,E,SHP,6141
-2021-01-21,07:31,Thursday,ROSEDALE STATION,MUATC,4,7,S,YU,6016
-2021-01-21,07:42,Thursday,BLOOR STATION,MUPAA,0,0,S,YU,6136
-2021-01-21,08:49,Thursday,VAUGHAN MC STATION,MUTO,3,6,S,YU,5646
-2021-01-21,09:07,Thursday,SPADINA BD STATION,EUBK,0,0,E,BD,5006
-2021-01-21,09:29,Thursday,KENNEDY BD STATION,PUMEL,0,0,,BD,0
-2021-01-21,09:32,Thursday,SPADINA BD STATION,SUDP,0,0,W,BD,5124
-2021-01-21,09:44,Thursday,WILSON STATION,EUATC,10,13,S,YU,5956
-2021-01-21,10:57,Thursday,ST CLAIR STATION,TUMVS,5,8,N,YU,6051
-2021-01-21,11:11,Thursday,ST CLAIR STATION,PUMEL,0,0,,YU,8339
-2021-01-21,11:55,Thursday,ROSEDALE STATION,MUATC,4,7,S,YU,5426
-2021-01-21,12:05,Thursday,NORTH YORK CTR STATION,SUDP,5,8,N,YU,6021
-2021-01-21,12:43,Thursday,OLD MILL STATION,EUSC,0,0,E,BD,5259
-2021-01-21,14:40,Thursday,BLOOR STATION,SUDP,4,7,N,YU,5596
-2021-01-21,14:43,Thursday,LAWRENCE STATION,EUSC,0,0,N,YU,6036
-2021-01-21,14:45,Thursday,WILSON STATION,SUAE,4,7,S,YU,5576
-2021-01-21,14:53,Thursday,COLLEGE STATION,MUIRS,0,0,S,YU,0
-2021-01-21,15:05,Thursday,WILSON STATION,SUPOL,6,9,N,YU,5426
-2021-01-21,15:08,Thursday,KING STATION,MUATC,4,7,N,YU,5761
-2021-01-21,15:28,Thursday,WELLESLEY STATION,EUDO,0,0,N,YU,5876
-2021-01-21,15:45,Thursday,BAY STATION,SUDP,3,6,E,BD,5117
-2021-01-21,15:45,Thursday,FINCH STATION,MUTO,4,7,S,YU,5766
-2021-01-21,16:01,Thursday,ROYAL YORK STATION,EUSC,0,0,E,BD,5259
-2021-01-21,16:11,Thursday,KENNEDY BD STATION,MUTO,5,8,W,BD,5154
-2021-01-21,16:31,Thursday,YORK MILLS STATION,SUDP,0,0,S,YU,5656
-2021-01-21,16:52,Thursday,DON MILLS STATION,EUBO,5,10,W,SHP,6166
-2021-01-21,17:22,Thursday,YORK MILLS STATION,TUSC,0,0,N,YU,6021
-2021-01-21,17:33,Thursday,YORK MILLS STATION,TUSC,0,0,S,YU,5466
-2021-01-21,17:52,Thursday,SPADINA STATION,MUIS,0,0,,YU,0
-2021-01-21,17:53,Thursday,SPADINA STATION,PUMEL,0,0,,YU,0
-2021-01-21,17:56,Thursday,FINCH WEST STATION,EUAC,15,18,N,YU,5426
-2021-01-21,18:26,Thursday,YORK MILLS STATION,SUDP,0,0,N,YU,5876
-2021-01-21,18:34,Thursday,YONGE BD STATION,SUUT,10,15,W,BD,5331
-2021-01-21,18:57,Thursday,OSSINGTON STATION,SUDP,0,0,E,BD,5371
-2021-01-21,20:04,Thursday,ISLINGTON STATION,SUDP,0,0,,BD,0
-2021-01-21,20:45,Thursday,DON MILLS STATION,TUMVS,0,0,E,SHP,6146
-2021-01-21,21:37,Thursday,BLOOR STATION,SUDP,3,8,N,YU,6061
-2021-01-21,21:53,Thursday,DAVISVILLE STATION,SUDP,5,10,N,YU,6061
-2021-01-21,21:53,Thursday,ST GEORGE YUS STATION,SUDP,0,0,S,YU,6071
-2021-01-21,22:00,Thursday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-01-21,22:20,Thursday,FINCH STATION,SUDP,4,9,S,YU,5801
-2021-01-21,22:32,Thursday,PIONEER VILLAGE STATIO,MUIS,0,0,N,YU,5971
-2021-01-22,00:03,Friday,DUFFERIN STATION,MUIS,0,0,,BD,0
-2021-01-22,01:29,Friday,VICTORIA PARK STATION,MUIS,0,0,,BD,0
-2021-01-22,01:38,Friday,SHEPPARD WEST STATION,MUIS,0,0,S,YU,0
-2021-01-22,03:19,Friday,DANFORTH DIVISION,MUIE,0,0,,BD,0
-2021-01-22,05:46,Friday,DAVISVILLE STATION,MUTO,3,6,N,YU,5616
-2021-01-22,05:51,Friday,DAVISVILLE STATION,MUTO,4,7,N,YU,5696
-2021-01-22,06:19,Friday,FINCH STATION,TUSC,0,0,N,YU,5461
-2021-01-22,06:22,Friday,OLD MILL STATION,MUDD,3,8,W,BD,5042
-2021-01-22,07:47,Friday,YONGE BD STATION,EUBK,5,8,E,BD,5148
-2021-01-22,09:32,Friday,COLLEGE STATION,MUSAN,3,7,N,YU,5651
-2021-01-22,11:28,Friday,KENNEDY BD STATION,EUBK,3,6,E,BD,5343
-2021-01-22,12:59,Friday,WILSON STATION,SUPOL,12,15,N,YU,5516
-2021-01-22,13:53,Friday,FINCH STATION,SUAP,0,0,,YU,0
-2021-01-22,14:23,Friday,ROSEDALE STATION,MUATC,0,0,N,YU,5511
-2021-01-22,14:24,Friday,SPADINA BD STATION,SUDP,15,18,W,BD,5164
-2021-01-22,14:28,Friday,SPADINA YUS STATION,SUO,15,18,S,YU,5731
-2021-01-22,15:53,Friday,DON MILLS STATION,SUUT,16,21,W,SHP,6191
-2021-01-22,16:00,Friday,VAUGHAN MC STATION,SUUT,15,18,N,YU,5551
-2021-01-22,16:15,Friday,ROYAL YORK STATION,MUSC,4,7,E,BD,5259
-2021-01-22,17:09,Friday,EGLINTON WEST STATION,MUIRS,0,0,S,YU,0
-2021-01-22,17:10,Friday,ST CLAIR WEST STATION,SUEAS,15,18,S,YU,6121
-2021-01-22,17:16,Friday,ST GEORGE YUS STATION,MUPAA,3,6,S,YU,5761
-2021-01-22,18:06,Friday,ST GEORGE BD STATION,MUIS,0,0,,BD,0
-2021-01-22,18:21,Friday,WOODBINE STATION,TUOS,3,6,E,BD,5294
-2021-01-22,18:54,Friday,BLOOR STATION,SUAE,0,0,,YU,0
-2021-01-22,19:09,Friday,PAPE STATION,MUIR,3,6,E,BD,5366
-2021-01-22,20:07,Friday,SHEPPARD-YONGE STATION,PUOPO,6,11,E,SHP,6176
-2021-01-22,20:18,Friday,DAVISVILLE STATION,SUDP,4,7,S,YU,6031
-2021-01-22,21:14,Friday,EGLINTON STATION,MUIS,0,0,,YU,0
-2021-01-22,21:14,Friday,WILSON STATION,MUTO,0,0,S,YU,5831
-2021-01-22,21:21,Friday,FINCH STATION,TUSC,0,0,N,YU,6111
-2021-01-22,21:34,Friday,ISLINGTON STATION,MUIRS,0,0,W,BD,0
-2021-01-22,22:00,Friday,YONGE / UNIVERSITY - B,MUO,0,0,,YU / BD,0
-2021-01-22,22:17,Friday,VAUGHAN MC STATION,MUPAA,0,0,N,YU,6086
-2021-01-22,22:20,Friday,LESLIE STATION,EUBO,5,10,E,SHP,6156
-2021-01-22,22:30,Friday,YORK MILLS STATION,MUO,3,8,S,YU,5911
-2021-01-22,23:04,Friday,FINCH STATION,MUI,5,10,S,YU,6081
-2021-01-22,23:34,Friday,KEELE STATION,MUIR,4,10,E,BD,5365
-2021-01-23,00:13,Saturday,BLOOR STATION,MUPAA,3,5,N,YU,6026
-2021-01-23,02:04,Saturday,HIGHWAY 407 STATION,SUDP,6,11,N,YU,5866
-2021-01-23,05:22,Saturday,COXWELL STATION,SUO,0,0,E,BD,5288
-2021-01-23,06:12,Saturday,ST ANDREW STATION,PUSSW,0,0,S,YU,5731
-2021-01-23,06:31,Saturday,UNION STATION,PUSSW,43,48,S,YU,5841
-2021-01-23,06:40,Saturday,WARDEN STATION,PUTIS,3,8,E,BD,5256
-2021-01-23,06:41,Saturday,HIGHWAY 407 STATION,EUTR,0,0,S,YU,5561
-2021-01-23,07:07,Saturday,QUEEN STATION,MUATC,3,8,N,YU,6056
-2021-01-23,07:35,Saturday,WARDEN STATION,TUMVS,0,0,E,BD,5288
-2021-01-23,07:51,Saturday,CHRISTIE STATION,SUUT,7,12,E,BD,5259
-2021-01-23,08:42,Saturday,BATHURST STATION,SUAP,11,16,W,BD,5322
-2021-01-23,10:22,Saturday,DUPONT STATION,PUMEL,0,0,,YU,0
-2021-01-23,10:49,Saturday,PIONEER VILLAGE STATIO,SUDP,0,0,N,YU,5661
-2021-01-23,11:46,Saturday,KENNEDY BD STATION,EUPI,4,8,W,BD,5034
-2021-01-23,12:44,Saturday,GREENWOOD STATION,TUNOA,4,8,E,BD,5089
-2021-01-23,13:19,Saturday,ROSEDALE STATION,SUDP,0,0,S,YU,5686
-2021-01-23,13:22,Saturday,BLOOR STATION,SUDP,0,0,S,YU,5686
-2021-01-23,15:04,Saturday,BAY STATION,MUDD,5,9,E,BD,5170
-2021-01-23,15:51,Saturday,KING STATION,SUUT,22,27,N,YU,5666
-2021-01-23,16:40,Saturday,LAWRENCE EAST STATION,PREL,0,0,,SRT,0
-2021-01-23,16:45,Saturday,YONGE BD STATION,MUSC,0,0,E,BD,5051
-2021-01-23,16:50,Saturday,VAUGHAN MC STATION,TUSUP,5,10,S,YU,5381
-2021-01-23,17:05,Saturday,KENNEDY BD STATION,MUPAA,0,0,E,BD,5051
-2021-01-23,17:36,Saturday,MAIN STREET STATION,EUNT,8,12,W,BD,5170
-2021-01-23,18:52,Saturday,KIPLING STATION,MUI,4,8,E,BD,5324
-2021-01-23,18:54,Saturday,DUFFERIN STATION,SUPOL,0,0,W,BD,5104
-2021-01-23,18:54,Saturday,QUEEN STATION,MUSAN,5,10,N,YU,5776
-2021-01-23,18:59,Saturday,FINCH WEST STATION,PUMEL,0,0,,YU,0
-2021-01-23,19:01,Saturday,BESSARION STATION,SUDP,0,0,,SHP,0
-2021-01-23,19:02,Saturday,ST CLAIR STATION,MUTO,4,9,S,YU,5441
-2021-01-23,19:23,Saturday,BLOOR STATION,MUPAA,12,17,N,YU,5501
-2021-01-23,19:43,Saturday,ST CLAIR STATION,SUDP,7,12,N,YU,5666
-2021-01-23,20:47,Saturday,SHEPPARD-YONGE STATION,SUDP,0,0,E,SHP,0
-2021-01-23,21:11,Saturday,SPADINA YUS STATION,SUDP,9,15,N,YU,5766
-2021-01-23,21:39,Saturday,KENNEDY BD STATION,EUNT,5,10,W,BD,5077
-2021-01-23,21:43,Saturday,BAY STATION,SUO,4,9,E,BD,5148
-2021-01-23,22:49,Saturday,PIONEER VILLAGE STATIO,SUDP,0,0,,YU,0
-2021-01-24,00:49,Sunday,VAUGHAN MC STATION,SUDP,0,0,S,YU,5871
-2021-01-24,01:08,Sunday,FINCH STATION,MUIS,0,0,,YU,8416
-2021-01-24,01:40,Sunday,SUMMERHILL STATION,TUOS,3,8,S,YU,5671
-2021-01-24,06:00,Sunday,YONGE-UNIVERSITY SUBWA,MUO,0,0,,YU,0
-2021-01-24,08:02,Sunday,KEELE STATION,SUG,5,10,W,BD,5319
-2021-01-24,08:30,Sunday,DONLANDS STATION,EUDO,6,10,W,BD,5364
-2021-01-24,08:56,Sunday,YORKDALE STATION,EUBK,3,8,N,YU,5726
-2021-01-24,09:06,Sunday,WILSON STATION,EUCD,3,8,N,YU,5721
-2021-01-24,10:10,Sunday,DAVISVILLE STATION,EUSC,0,0,N,YU,6001
-2021-01-24,10:15,Sunday,GLENCAIRN STATION,TUO,0,0,N,YU,5576
-2021-01-24,11:08,Sunday,LANSDOWNE STATION,SUDP,3,7,E,BD,5259
-2021-01-24,11:34,Sunday,WOODBINE STATION,SUDP,3,7,E,BD,5003
-2021-01-24,11:47,Sunday,WARDEN STATION,SUDP,0,0,E,BD,5256
-2021-01-24,12:16,Sunday,BLOOR STATION,SUDP,0,0,N,YU,5496
-2021-01-24,12:22,Sunday,YONGE BD STATION,SUDP,0,0,W,BD,5046
-2021-01-24,12:59,Sunday,DUNDAS WEST STATION,TUSC,0,0,W,BD,5151
-2021-01-24,15:03,Sunday,KENNEDY SRT STATION,ERTC,7,13,S,SRT,3024
-2021-01-24,16:30,Sunday,BROADVIEW STATION,MUIS,0,0,,BD,0
-2021-01-24,16:42,Sunday,ST CLAIR STATION,SUUT,22,27,N,YU,5981
-2021-01-24,16:51,Sunday,ST GEORGE BD STATION,SUUT,27,31,E,BD,5006
-2021-01-24,17:13,Sunday,DUNDAS STATION,SUDP,16,21,N,YU,5916
-2021-01-24,17:36,Sunday,ELLESMERE STATION,ERDO,3,9,S,SRT,3024
-2021-01-24,17:43,Sunday,EGLINTON WEST STATION,MUPAA,0,0,N,YU,5656
-2021-01-24,20:34,Sunday,KING STATION,SUO,0,0,N,YU,5756
-2021-01-24,20:55,Sunday,VAUGHAN MC STATION,MUI,5,10,S,YU,5806
-2021-01-24,21:50,Sunday,COXWELL STATION,TUO,6,11,E,BD,5274
-2021-01-24,22:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-01-24,22:02,Sunday,LANSDOWNE STATION,MUDD,0,0,W,BD,5077
-2021-01-24,22:39,Sunday,BAY STATION,MUD,5,11,W,BD,5052
-2021-01-24,23:01,Sunday,COLLEGE STATION,SUO,0,0,,YU,0
-2021-01-25,00:36,Monday,BLOOR STATION,MUIS,0,0,N,YU,0
-2021-01-25,01:03,Monday,LAWRENCE STATION,MUIS,0,0,,YU,0
-2021-01-25,01:03,Monday,SHEPPARD STATION,EUDO,5,10,S,YU,5616
-2021-01-25,01:30,Monday,BLOOR STATION,EUCD,4,9,S,YU,5616
-2021-01-25,01:50,Monday,COLLEGE STATION,SUUT,8,0,S,YU,5801
-2021-01-25,01:57,Monday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-01-25,05:31,Monday,FINCH STATION,PUSTS,0,0,S,YU,5876
-2021-01-25,06:01,Monday,ROSEDALE STATION,MUATC,0,0,S,YU,5986
-2021-01-25,06:15,Monday,ISLINGTON STATION,MUNCA,0,0,,BD,0
-2021-01-25,06:39,Monday,SHEPPARD STATION,PUTIJ,5,8,N,YU,5411
-2021-01-25,07:22,Monday,YORK MILLS STATION,EUSC,0,0,N,YU,6016
-2021-01-25,07:24,Monday,SHEPPARD STATION,TUMVS,5,8,N,YU,5556
-2021-01-25,08:19,Monday,DUNDAS STATION,MUIS,0,0,,YU,0
-2021-01-25,08:22,Monday,YORK MILLS STATION,TUMVS,13,16,N,YU,5636
-2021-01-25,08:55,Monday,SHEPPARD STATION,TUMVS,5,8,N,YU,5916
-2021-01-25,09:04,Monday,YORK MILLS STATION,PUSRA,3,6,N,YU,5836
-2021-01-25,10:08,Monday,OSSINGTON STATION,MUIS,0,0,,BD,0
-2021-01-25,10:36,Monday,UNION STATION,SUDP,5,8,N,YU,5446
-2021-01-25,10:57,Monday,PIONEER VILLAGE STATIO,MUATC,7,10,N,YU,5416
-2021-01-25,12:09,Monday,BLOOR STATION,MUIS,0,0,N,YU,5796
-2021-01-25,12:23,Monday,KIPLING STATION,MUIRS,0,0,,BD,0
-2021-01-25,12:23,Monday,LAWRENCE STATION,PUMEL,0,0,S,YU,5801
-2021-01-25,12:46,Monday,DUFFERIN STATION,PUMO,0,0,W,BD,5021
-2021-01-25,12:50,Monday,COLLEGE STATION,MUIS,0,0,,YU,0
-2021-01-25,13:23,Monday,VAUGHAN MC STATION,EUDO,3,6,S,YU,5761
-2021-01-25,13:24,Monday,LAWRENCE STATION,SUPOL,0,0,N,YU,6041
-2021-01-25,14:50,Monday,FINCH STATION,MUTO,3,6,S,YU,5541
-2021-01-25,17:48,Monday,SHEPPARD-YONGE STATION,MUPAA,0,0,E,SHP,6161
-2021-01-25,19:08,Monday,PAPE STATION,MUIS,0,0,,BD,0
-2021-01-25,20:38,Monday,FINCH STATION,MUI,5,10,S,YU,5381
-2021-01-25,22:07,Monday,ST PATRICK STATION,SUO,0,0,S,YU,5806
-2021-01-25,23:00,Monday,FINCH TO SHEPPARD STAT,MUO,0,0,,YU,0
-2021-01-26,00:04,Tuesday,WELLESLEY STATION,SUDP,0,0,,YU,0
-2021-01-26,00:05,Tuesday,EGLINTON WEST STATION,MUATC,5,10,N,YU,5656
-2021-01-26,00:50,Tuesday,SHEPPARD STATION,SUDP,5,10,S,YU,5396
-2021-01-26,01:01,Tuesday,FINCH WEST STATION,SUDP,0,0,,YU,0
-2021-01-26,01:03,Tuesday,ST CLAIR WEST STATION,SUDP,12,17,N,YU,5821
-2021-01-26,01:27,Tuesday,COLLEGE STATION,SUDP,0,0,,YU,0
-2021-01-26,01:32,Tuesday,SHEPPARD WEST STATION,MUATC,5,10,N,YU,5791
-2021-01-26,01:44,Tuesday,EGLINTON WEST STATION,MUIS,0,0,,YU,0
-2021-01-26,01:58,Tuesday,VAUGHAN MC STATION,SUO,0,0,,YU,0
-2021-01-26,02:36,Tuesday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-01-26,05:45,Tuesday,MCCOWAN STATION,ERCO,20,0,S,SRT,3012
-2021-01-26,06:41,Tuesday,MCCOWAN STATION,ERTC,5,10,S,SRT,3011
-2021-01-26,07:00,Tuesday,SCARBOROUGH RAPID TRAN,TRST,0,0,,SRT,0
-2021-01-26,07:51,Tuesday,KING STATION,MUIS,0,0,,YU,0
-2021-01-26,07:54,Tuesday,EGLINTON STATION,EUSC,0,0,S,YU,6016
-2021-01-26,08:24,Tuesday,YONGE/UNIVERSITY-SPADI,TUST,0,0,,YU,0
-2021-01-26,08:32,Tuesday,ROSEDALE STATION,MUATC,5,8,S,YU,5491
-2021-01-26,08:47,Tuesday,KENNEDY BD STATION,MUIS,0,0,E,BD,0
-2021-01-26,09:09,Tuesday,CHESTER STATION,TUSC,0,0,E,BD,5287
-2021-01-26,09:29,Tuesday,KENNEDY BD STATION,TUMVS,0,0,E,BD,5287
-2021-01-26,09:43,Tuesday,BAY STATION,EUNT,4,7,W,BD,5182
-2021-01-26,09:46,Tuesday,BAY STATION,EUDO,7,10,E,BD,5112
-2021-01-26,10:04,Tuesday,DAVISVILLE STATION,TUOS,3,6,S,YU,5851
-2021-01-26,10:11,Tuesday,CASTLE FRANK STATION,MUSC,0,0,E,BD,5112
-2021-01-26,10:35,Tuesday,EGLINTON STATION,EUSC,0,0,S,YU,6016
-2021-01-26,11:20,Tuesday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-01-26,11:38,Tuesday,VAUGHAN MC STATION,MUSAN,3,6,S,YU,5836
-2021-01-26,11:44,Tuesday,ST ANDREW STATION,SUDP,0,0,N,YU,5916
-2021-01-26,12:09,Tuesday,SHEPPARD STATION,SUAP,0,0,N,YU,0
-2021-01-26,12:12,Tuesday,COXWELL STATION,MUDD,3,6,W,BD,5046
-2021-01-26,12:15,Tuesday,CASTLE FRANK STATION,SUAP,0,0,,BD,0
-2021-01-26,12:23,Tuesday,CASTLE FRANK STATION,MUI,3,6,W,BD,5004
-2021-01-26,12:54,Tuesday,CASTLE FRANK STATION,MUIS,0,0,W,BD,0
-2021-01-26,14:18,Tuesday,DUFFERIN STATION,MUIS,0,0,W,BD,5160
-2021-01-26,17:23,Tuesday,VAUGHAN MC STATION,EUATC,3,6,S,YU,5946
-2021-01-26,18:12,Tuesday,PIONEER VILLAGE STATIO,SUDP,0,0,,YU,0
-2021-01-26,18:24,Tuesday,DAVISVILLE STATION,MUSC,0,0,S,YU,5951
-2021-01-26,19:27,Tuesday,SPADINA YUS STATION,SUPOL,0,0,S,YU,5551
-2021-01-26,19:28,Tuesday,SPADINA BD STATION,SUDP,0,0,W,BD,5312
-2021-01-26,19:51,Tuesday,EGLINTON STATION,EUSC,0,0,N,YU,5511
-2021-01-26,20:03,Tuesday,NORTH YORK CTR STATION,EUSC,0,0,N,YU,5511
-2021-01-26,20:27,Tuesday,DUNDAS STATION,MUIR,8,11,N,YU,5836
-2021-01-26,20:39,Tuesday,WELLESLEY STATION,MUSAN,3,6,N,YU,5836
-2021-01-26,21:48,Tuesday,EGLINTON STATION,SUO,0,0,,YU,0
-2021-01-26,22:00,Tuesday,YONGE/UNIVERSITY LINE,MUO,0,0,,YU,0
-2021-01-26,22:19,Tuesday,SHEPPARD STATION,MUIS,0,0,E,YU,0
-2021-01-26,22:38,Tuesday,EGLINTON WEST STATION,PUMEL,0,0,,YU,0
-2021-01-26,23:00,Tuesday,FINCH STATION,MUO,0,0,,YU,0
-2021-01-26,23:05,Tuesday,DUNDAS STATION,MUIS,0,0,S,YU,0
-2021-01-27,00:32,Wednesday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-01-27,01:33,Wednesday,SHEPPARD STATION,TUMVS,18,23,S,YU,5771
-2021-01-27,01:55,Wednesday,YORK MILLS STATION,MUIS,0,0,,YU,0
-2021-01-27,06:02,Wednesday,SHEPPARD WEST STATION,MUATC,5,8,N,YU,5636
-2021-01-27,07:55,Wednesday,DAVISVILLE STATION,MUSC,0,0,S,YU,5831
-2021-01-27,08:02,Wednesday,ST GEORGE BD STATION,MUI,0,0,,BD,0
-2021-01-27,08:54,Wednesday,DON MILLS STATION,SUDP,5,11,E,SHP,6161
-2021-01-27,08:58,Wednesday,OLD MILL STATION,MUSC,0,0,W,BD,5314
-2021-01-27,11:11,Wednesday,ROSEDALE STATION,TUATC,4,7,S,YU,5641
-2021-01-27,11:15,Wednesday,KENNEDY BD STATION,MUSAN,3,6,W,BD,5124
-2021-01-27,12:13,Wednesday,FINCH STATION,TUSC,0,0,N,YU,5691
-2021-01-27,12:29,Wednesday,FINCH STATION,MUSAN,3,6,S,YU,5571
-2021-01-27,12:45,Wednesday,WELLESLEY STATION,MUIS,0,0,,YU,0
-2021-01-27,13:42,Wednesday,YORK MILLS STATION,EUSC,3,6,N,YU,5511
-2021-01-27,13:52,Wednesday,LANSDOWNE STATION,SUDP,4,7,W,BD,5091
-2021-01-27,14:34,Wednesday,WOODBINE STATION,SUDP,4,7,E,BD,5030
-2021-01-27,14:36,Wednesday,WELLESLEY STATION,PUMEL,0,0,S,YU,6076
-2021-01-27,14:46,Wednesday,ST ANDREW STATION,SUDP,0,0,N,YU,6076
-2021-01-27,15:57,Wednesday,DUNDAS WEST STATION,PUTDN,0,0,W,BD,5134
-2021-01-27,16:02,Wednesday,BATHURST STATION,SUDP,5,8,W,BD,5112
-2021-01-27,16:26,Wednesday,WELLESLEY STATION,SUDP,3,6,S,YU,6081
-2021-01-27,18:02,Wednesday,KENNEDY SRT STATION,ERTC,8,13,S,SRT,3027
-2021-01-27,18:50,Wednesday,SHERBOURNE STATION,MUIRS,0,0,E,BD,0
-2021-01-27,18:54,Wednesday,DUNDAS WEST STATION,SUDP,0,0,W,BD,5186
-2021-01-27,19:04,Wednesday,MAIN STREET STATION,SUDP,0,0,E,BD,5281
-2021-01-27,19:12,Wednesday,YORKDALE STATION,SUDP,3,6,N,YU,5801
-2021-01-27,19:16,Wednesday,OSGOODE STATION,SUUT,16,19,N,YU,6081
-2021-01-27,19:49,Wednesday,CASTLE FRANK STATION,SUDP,4,10,W,BD,5089
-2021-01-27,19:49,Wednesday,ST GEORGE YUS STATION,SUO,3,6,S,YU,5656
-2021-01-27,19:58,Wednesday,WARDEN STATION,MUIS,0,0,,BD,0
-2021-01-27,20:24,Wednesday,ST GEORGE YUS STATION,MUPAA,3,6,N,YU,5531
-2021-01-27,20:37,Wednesday,YORK MILLS STATION,SUDP,3,6,N,YU,5521
-2021-01-27,20:50,Wednesday,FINCH STATION,TUSC,0,0,N,YU,5521
-2021-01-27,21:13,Wednesday,ST CLAIR WEST STATION,MUPAA,0,0,S,YU,5496
-2021-01-27,21:15,Wednesday,MCCOWAN STATION,MRPAA,0,0,S,SRT,3002
-2021-01-27,21:28,Wednesday,FINCH STATION,MUSC,3,6,S,YU,6126
-2021-01-27,21:37,Wednesday,YORKDALE STATION,SUAP,0,0,N,YU,5896
-2021-01-27,21:47,Wednesday,ROYAL YORK STATION,SUO,0,0,,BD,0
-2021-01-27,22:00,Wednesday,YONGE-UNIVERSITY AND B,MUO,0,0,,,0
-2021-01-27,23:00,Wednesday,FINCH STATION,MUO,0,0,,,0
-2021-01-27,23:09,Wednesday,BROADVIEW STATION,MUIRS,0,0,,BD,0
-2021-01-27,23:43,Wednesday,FINCH STATION,MUIS,0,0,,YU,0
-2021-01-28,01:18,Thursday,ST GEORGE BD STATION,TUMVS,6,12,W,BD,5339
-2021-01-28,05:26,Thursday,WILSON STATION,PUSAC,0,0,S,YU,5786
-2021-01-28,05:43,Thursday,EGLINTON STATION,MUO,4,10,N,YU,5891
-2021-01-28,05:47,Thursday,GREENWOOD YARD,EUBK,0,0,W,BD,5006
-2021-01-28,05:50,Thursday,GREENWOOD STATION,MUO,5,8,E,BD,5112
-2021-01-28,05:59,Thursday,BLOOR STATION,MUATC,4,0,N,YU,5866
-2021-01-28,06:22,Thursday,KENNEDY SRT STATION,PRSA,9,15,,SRT,3027
-2021-01-28,06:56,Thursday,ST CLAIR STATION,PUTIS,3,6,N,YU,5496
-2021-01-28,07:03,Thursday,ROYAL YORK STATION,MUDD,0,0,W,BD,5124
-2021-01-28,07:12,Thursday,DAVISVILLE STATION,PUTIS,4,7,S,YU,5836
-2021-01-28,07:43,Thursday,YONGE BD STATION,MUDD,0,0,E,BD,5310
-2021-01-28,07:59,Thursday,VAUGHAN MC STATION,TUNIP,5,8,S,YU,5786
-2021-01-28,08:32,Thursday,SHEPPARD WEST STATION,MUTO,0,0,N,YU,5811
-2021-01-28,08:50,Thursday,COLLEGE STATION,MUPAA,0,0,S,YU,5591
-2021-01-28,08:53,Thursday,OSSINGTON STATION,SUAP,0,0,W,BD,0
-2021-01-28,08:55,Thursday,VAUGHAN MC STATION,MUTO,3,6,S,YU,6061
-2021-01-28,09:27,Thursday,EGLINTON WEST STATION,SUO,20,23,S,YU,5411
-2021-01-28,12:40,Thursday,GLENCAIRN STATION,MUD,3,6,S,YU,5476
-2021-01-28,13:32,Thursday,WILSON STATION,SUPOL,3,6,N,YU,5651
-2021-01-28,14:12,Thursday,WOODBINE STATION,TUOS,3,6,W,BD,5089
-2021-01-28,15:14,Thursday,YONGE BD STATION,MUO,0,0,E,BD,5151
-2021-01-28,15:15,Thursday,BLOOR STATION,MUPR1,87,90,N,YU,5646
-2021-01-28,15:30,Thursday,MIDLAND STATION,MRTO,7,12,N,SRT,3021
-2021-01-28,15:37,Thursday,DONLANDS STATION,PUTR,3,6,E,BD,5169
-2021-01-28,16:09,Thursday,DONLANDS STATION,SUDP,0,0,W,BD,5160
-2021-01-28,16:18,Thursday,BROADVIEW STATION,SUDP,4,7,E,BD,5139
-2021-01-28,16:25,Thursday,ST GEORGE BD STATION,TUO,3,6,E,BD,5119
-2021-01-28,16:27,Thursday,ST GEORGE YUS STATION,MUPAA,0,0,S,YU,5636
-2021-01-28,16:54,Thursday,DONLANDS STATION,PUTR,3,6,E,BD,5209
-2021-01-28,17:00,Thursday,BLOOR STATION,SUDP,5,8,N,YU,0
-2021-01-28,17:15,Thursday,ROSEDALE STATION,SUDP,14,17,S,YU,5516
-2021-01-28,17:33,Thursday,LANSDOWNE STATION,SUDP,8,11,W,BD,5037
-2021-01-28,17:37,Thursday,ST CLAIR WEST STATION,MUIS,15,18,S,YU,5596
-2021-01-28,17:57,Thursday,BLOOR STATION,SUEAS,8,11,S,YU,6056
-2021-01-28,18:32,Thursday,SHERBOURNE STATION,MUDD,3,6,W,BD,5350
-2021-01-28,19:02,Thursday,SHERBOURNE STATION,SUDP,3,6,W,BD,5127
-2021-01-28,20:04,Thursday,EGLINTON STATION,EUSC,0,0,N,YU,5511
-2021-01-28,20:05,Thursday,YONGE BD STATION,EUDO,6,12,E,BD,5585
-2021-01-28,20:09,Thursday,LAWRENCE STATION,EUSC,0,0,N,YU,5511
-2021-01-28,20:31,Thursday,WOODBINE STATION,TUCC,3,6,E,BD,5207
-2021-01-28,20:41,Thursday,DUNDAS WEST STATION,MUO,0,0,,BD,0
-2021-01-28,20:50,Thursday,ST GEORGE BD STATION,SUDP,0,0,W,BD,5089
-2021-01-28,21:04,Thursday,DAVISVILLE STATION,TUMVS,0,0,N,YU,5891
-2021-01-28,21:07,Thursday,KIPLING STATION,SUO,0,0,,BD,0
-2021-01-28,21:51,Thursday,GREENWOOD STATION,EUDO,6,12,W,BD,5350
-2021-01-28,22:00,Thursday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-01-28,23:00,Thursday,FINCH TO SHEPPARD STAT,MUO,0,0,,YU,0
-2021-01-28,23:16,Thursday,SHEPPARD STATION,PUSSW,5,10,S,YU,5471
-2021-01-28,23:46,Thursday,KENNEDY SRT STATION,MRUI,20,27,N,SRT,3025
-2021-01-28,23:51,Thursday,VAUGHAN MC STATION,MUNOA,5,10,S,YU,5616
-2021-01-29,00:44,Friday,KIPLING STATION,PUTIS,51,57,E,BD,5204
-2021-01-29,00:57,Friday,ST PATRICK STATION,MUIS,0,0,,YU,0
-2021-01-29,01:26,Friday,KEELE STATION,MUNCA,0,0,,BD,0
-2021-01-29,05:25,Friday,WILSON STATION,PUSAC,0,0,S,YU,5596
-2021-01-29,05:43,Friday,UNION STATION,SUO,0,0,,YU,0
-2021-01-29,05:50,Friday,DUNDAS WEST STATION,PUTIS,0,0,W,BD,5114
-2021-01-29,07:27,Friday,FINCH STATION,EUBK,0,0,S,YU,5426
-2021-01-29,07:54,Friday,ROSEDALE STATION,TUSC,0,0,N,YU,5841
-2021-01-29,08:10,Friday,ST GEORGE BD STATION,MUIR,5,8,W,BD,5324
-2021-01-29,08:29,Friday,BLOOR STATION,SUDP,3,6,S,YU,5441
-2021-01-29,09:46,Friday,FINCH STATION,MUIE,3,6,S,YU,5801
-2021-01-29,10:10,Friday,FINCH STATION,EUBK,0,0,S,YU,5426
-2021-01-29,10:16,Friday,OSGOODE STATION,MUTD,3,6,S,YU,5741
-2021-01-29,10:31,Friday,YORK UNIVERSITY STATIO,MUATC,0,0,N,YU,5751
-2021-01-29,13:06,Friday,WARDEN STATION,SUUT,0,0,E,BD,5169
-2021-01-29,14:10,Friday,ST ANDREW STATION,PUMEL,0,0,N,YU,5966
-2021-01-29,14:57,Friday,DAVISVILLE STATION,SUDP,13,16,N,YU,6076
-2021-01-29,15:01,Friday,ST CLAIR STATION,TUO,3,6,N,YU,6111
-2021-01-29,15:16,Friday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,5696
-2021-01-29,15:31,Friday,EGLINTON STATION,MUIS,0,0,,YU,0
-2021-01-29,15:43,Friday,ROSEDALE STATION,MUATC,6,9,S,YU,6131
-2021-01-29,15:48,Friday,ROSEDALE STATION,MUSC,0,0,N,YU,5741
-2021-01-29,15:52,Friday,BLOOR STATION,TUOS,3,6,S,YU,5801
-2021-01-29,15:59,Friday,KENNEDY BD STATION,SUDP,3,6,W,BD,5317
-2021-01-29,16:33,Friday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-01-29,16:35,Friday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,5801
-2021-01-29,16:41,Friday,EGLINTON STATION,PUSTS,3,6,S,YU,5846
-2021-01-29,16:52,Friday,SCARBOROUGH CTR STATIO,ERDO,0,0,E,SRT,3003
-2021-01-29,17:02,Friday,GREENWOOD STATION,SUDP,0,0,E,BD,5067
-2021-01-29,18:02,Friday,LAWRENCE STATION,SUAP,0,0,,YU,0
-2021-01-29,19:08,Friday,EGLINTON WEST STATION,MUATC,9,12,N,YU,5531
-2021-01-29,19:17,Friday,ST PATRICK STATION,SUDP,0,0,N,YU,5571
-2021-01-29,19:50,Friday,ST PATRICK STATION,SUDP,4,7,N,YU,5571
-2021-01-29,19:56,Friday,FINCH STATION,TUSC,0,0,N,YU,5596
-2021-01-29,20:24,Friday,FINCH WEST STATION,MUIS,0,0,,YU,0
-2021-01-29,20:27,Friday,SUMMERHILL STATION,SUO,0,0,S,YU,5886
-2021-01-29,21:21,Friday,KIPLING STATION,SUDP,0,0,,BD,0
-2021-01-29,21:29,Friday,EGLINTON STATION,SUDP,0,0,,YU,0
-2021-01-29,21:35,Friday,SPADINA YUS STATION,SUDP,6,9,N,YU,5911
-2021-01-29,22:00,Friday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU / BD,0
-2021-01-29,22:02,Friday,MCCOWAN STATION,TRTC,6,12,S,SRT,0
-2021-01-29,22:29,Friday,WELLESLEY STATION,SUDP,3,8,S,YU,5416
-2021-01-29,23:46,Friday,KIPLING STATION,MUIRS,0,0,,BD,0
-2021-01-30,00:27,Saturday,FINCH STATION,MUNOA,5,10,S,YU,5691
-2021-01-30,02:28,Saturday,FINCH STATION,MUIS,0,0,,YU,0
-2021-01-30,06:08,Saturday,WARDEN STATION,TUOS,0,0,W,BD,5186
-2021-01-30,06:45,Saturday,KEELE STATION,PUSIS,0,0,W,BD,5158
-2021-01-30,06:57,Saturday,KEELE STATION,PUSIS,3,8,W,BD,5114
-2021-01-30,07:14,Saturday,ISLINGTON STATION,PUSSW,0,0,W,BD,5182
-2021-01-30,08:50,Saturday,HIGH PARK STATION,SUUT,32,37,W,BD,5121
-2021-01-30,08:55,Saturday,ST ANDREW STATION,MUPAA,4,9,N,YU,6116
-2021-01-30,09:45,Saturday,SHEPPARD-YONGE STATION,TUSC,0,0,E,SHP,6171
-2021-01-30,10:53,Saturday,VICTORIA PARK STATION,PUMEL,0,0,,BD,0
-2021-01-30,12:10,Saturday,GREENWOOD STATION,PUSRA,4,8,E,BD,5175
-2021-01-30,12:19,Saturday,EGLINTON STATION,SUO,0,0,S,YU,0
-2021-01-30,12:42,Saturday,KENNEDY BD STATION,MUPAA,4,8,W,BD,5316
-2021-01-30,12:45,Saturday,KENNEDY BD STATION,MUIRS,0,0,,BD,8732
-2021-01-30,12:51,Saturday,COLLEGE STATION,MUIS,0,0,,YU,0
-2021-01-30,12:54,Saturday,DUPONT STATION,MUIR,4,7,N,YU,6086
-2021-01-30,12:54,Saturday,HIGHWAY 407 STATION,EUTL,9,12,S,YU,5976
-2021-01-30,13:09,Saturday,YORKDALE STATION,MUI,16,19,N,YU,6086
-2021-01-30,13:34,Saturday,BESSARION STATION,TUMVS,5,10,E,SHP,6146
-2021-01-30,14:14,Saturday,WARDEN STATION,SUDP,0,0,,BD,0
-2021-01-30,15:06,Saturday,VAUGHAN MC STATION,MUTO,5,8,S,YU,5741
-2021-01-30,15:10,Saturday,YONGE BD STATION,SUAP,0,0,,BD,0
-2021-01-30,16:45,Saturday,WELLESLEY STATION,MUIS,0,0,,YU,0
-2021-01-30,16:46,Saturday,DAVISVILLE STATION,SUDP,4,7,N,YU,5671
-2021-01-30,16:47,Saturday,NORTH YORK CTR STATION,TUOS,0,0,N,YU,5961
-2021-01-30,16:56,Saturday,BLOOR STATION,MUIS,0,0,,YU,0
-2021-01-30,16:57,Saturday,BLOOR STATION,MUATC,4,7,S,YU,5801
-2021-01-30,17:10,Saturday,YORKDALE STATION,TUATC,3,6,S,YU,6061
-2021-01-30,17:24,Saturday,ST CLAIR WEST STATION,SUDP,0,0,,YU,4599
-2021-01-30,17:31,Saturday,VICTORIA PARK STATION,MUIS,0,0,,BD,0
-2021-01-30,17:34,Saturday,WARDEN STATION,MUIS,0,0,,BD,0
-2021-01-30,18:22,Saturday,GREENWOOD STATION,SUDP,0,0,,BD,0
-2021-01-30,18:28,Saturday,NORTH YORK CTR STATION,MUIS,0,0,S,YU,0
-2021-01-30,19:27,Saturday,VICTORIA PARK STATION,SUDP,0,0,,BD,0
-2021-01-30,19:43,Saturday,MAIN STREET STATION,SUDP,5,9,E,BD,5302
-2021-01-30,19:52,Saturday,FINCH STATION,MUIR,5,10,S,YU,5555
-2021-01-30,19:55,Saturday,BLOOR STATION,MUD,3,8,S,YU,5651
-2021-01-30,19:59,Saturday,SPADINA BD STATION,SUDP,4,8,E,BD,5312
-2021-01-30,20:52,Saturday,SPADINA YUS STATION,MUIRS,0,0,N,YU,5476
-2021-01-30,21:27,Saturday,KENNEDY BD STATION,TUMVS,0,0,E,BD,5006
-2021-01-30,22:00,Saturday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-01-30,22:21,Saturday,VAUGHAN MC STATION,PUMEL,0,0,,YU,0
-2021-01-30,22:23,Saturday,SHEPPARD WEST STATION,MUIRS,0,0,S,YU,5576
-2021-01-31,01:10,Sunday,BLOOR STATION,TUOS,3,8,S,YU,5956
-2021-01-31,01:15,Sunday,SHEPPARD WEST STATION,MUIS,0,0,,YU,0
-2021-01-31,01:24,Sunday,QUEEN STATION,MUIS,0,0,,YU,0
-2021-01-31,01:31,Sunday,YONGE BD STATION,MUIR,4,8,W,BD,5158
-2021-01-31,01:52,Sunday,FINCH STATION,MUIS,0,0,,YU,0
-2021-01-31,01:54,Sunday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-01-31,07:56,Sunday,EGLINTON STATION,MUIS,0,0,,YU,0
-2021-01-31,08:00,Sunday,YONGE-UNIVERSITY LINE,MUO,0,0,,YU,0
-2021-01-31,08:18,Sunday,WOODBINE STATION,EUDO,12,16,E,BD,5285
-2021-01-31,09:01,Sunday,KEELE STATION,MUIS,0,0,,BD,0
-2021-01-31,10:37,Sunday,ROSEDALE STATION,TUSC,0,0,N,YU,5981
-2021-01-31,10:38,Sunday,SHEPPARD STATION,MUPAA,0,0,N,YU,5576
-2021-01-31,10:57,Sunday,EGLINTON STATION,SUDP,3,8,N,YU,5491
-2021-01-31,11:39,Sunday,OSGOODE STATION,MUO,0,0,S,YU,6136
-2021-01-31,13:28,Sunday,NORTH YORK CTR STATION,SUDP,0,0,S,YU,5631
-2021-01-31,13:40,Sunday,LAWRENCE WEST STATION,SUUT,0,0,S,YU,5931
-2021-01-31,14:10,Sunday,ST CLAIR STATION,TUOS,3,7,S,YU,5761
-2021-01-31,14:17,Sunday,EGLINTON STATION,PUMST,0,0,,YU,0
-2021-01-31,14:40,Sunday,SHERBOURNE STATION,SUDP,15,19,W,BD,5182
-2021-01-31,14:48,Sunday,YORK UNIVERSITY STATIO,MUSAN,4,8,N,YU,5836
-2021-01-31,15:11,Sunday,WILSON STATION,PUMEL,0,0,,YU,0
-2021-01-31,15:31,Sunday,YORK MILLS STATION,MUIR,3,7,S,YU,5726
-2021-01-31,15:48,Sunday,ROSEDALE STATION,TUSC,0,0,N,YU,5681
-2021-01-31,16:09,Sunday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-01-31,16:17,Sunday,DUNDAS STATION,MUIRS,0,0,S,YU,0
-2021-01-31,18:30,Sunday,ST CLAIR WEST STATION,TUO,0,0,S,YU,5681
-2021-01-31,20:38,Sunday,ST CLAIR STATION,EUTRD,5,10,N,YU,5741
-2021-01-31,22:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-01-31,22:30,Sunday,EGLINTON STATION,SUPOL,23,28,N,YU,5756
-2021-01-31,23:32,Sunday,COLLEGE STATION,SUDP,0,0,N,YU,5681
-2021-01-31,23:39,Sunday,WILSON STATION,SUDP,0,0,,YU,0
-2021-01-31,23:58,Sunday,MIDLAND STATION,ERDO,3,9,S,SRT,3012
-2021-02-01,00:06,Monday,WILSON STATION,EUECD,5,10,N,YU,5841
-2021-02-01,00:15,Monday,BAY STATION,MUIS,0,0,W,BD,0
-2021-02-01,01:48,Monday,YORK MILLS STATION,TUMVS,0,0,S,YU,5551
-2021-02-01,01:55,Monday,DUNDAS WEST STATION,TUMVS,0,0,W,BD,5165
-2021-02-01,02:40,Monday,KENNEDY BD STATION,SUO,0,0,,BD,0
-2021-02-01,02:52,Monday,FINCH STATION,SUAE,0,0,,YU,0
-2021-02-01,06:28,Monday,KIPLING STATION,MUTO,3,8,E,BD,5125
-2021-02-01,07:36,Monday,ROSEDALE STATION,TUSC,0,0,N,YU,6016
-2021-02-01,07:54,Monday,ROSEDALE STATION,MUSC,0,0,N,YU,6111
-2021-02-01,09:04,Monday,COLLEGE STATION,MUIRS,0,0,,YU,0
-2021-02-01,09:16,Monday,RUNNYMEDE STATION,PUMEL,0,0,,BD,0
-2021-02-01,10:04,Monday,ISLINGTON STATION,SUO,0,0,,BD,0
-2021-02-01,10:40,Monday,ROSEDALE STATION,MUSC,0,0,N,YU,6111
-2021-02-01,10:50,Monday,EGLINTON STATION (ENTE,MUSC,0,0,N,YU,5491
-2021-02-01,10:53,Monday,EGLINTON STATION (LEAV,TUSC,0,0,N,YU,5491
-2021-02-01,11:18,Monday,ROSEDALE STATION,MUATC,5,8,S,YU,5631
-2021-02-01,11:37,Monday,DON MILLS STATION,EUBK,0,0,W,SHP,6156
-2021-02-01,13:50,Monday,ISLINGTON STATION,PUMEL,0,0,,BD,0
-2021-02-01,14:00,Monday,EGLINTON STATION,MUSC,0,0,N,YU,5966
-2021-02-01,14:10,Monday,COXWELL STATION,TUO,7,10,W,BD,5148
-2021-02-01,14:24,Monday,SUMMERHILL STATION,SUUT,8,11,N,YU,5856
-2021-02-01,14:59,Monday,SHERBOURNE STATION,MUIS,0,0,W,BD,0
-2021-02-01,15:40,Monday,UNION STATION,EUDO,8,11,N,YU,5636
-2021-02-01,15:42,Monday,ST CLAIR STATION,MUSC,0,0,S,YU,5661
-2021-02-01,16:02,Monday,COLLEGE STATION,MUIS,0,0,N,YU,0
-2021-02-01,16:51,Monday,COLLEGE STATION,SUDP,6,9,N,YU,5396
-2021-02-01,18:29,Monday,EGLINTON STATION,MUSAN,3,6,N,YU,5461
-2021-02-01,18:39,Monday,KIPLING STATION,EUTL,3,6,E,BD,5367
-2021-02-01,19:13,Monday,BLOOR STATION,MUIRS,0,0,,YU,0
-2021-02-01,19:35,Monday,DUNDAS WEST STATION,EUCD,8,11,E,BD,5367
-2021-02-01,19:55,Monday,KENNEDY BD STATION,PUMST,0,0,,BD,0
-2021-02-01,20:39,Monday,ROSEDALE STATION,TUSC,0,0,N,YU,5381
-2021-02-01,20:42,Monday,KING STATION,MUPAA,0,0,N,YU,6121
-2021-02-01,20:54,Monday,COLLEGE STATION,MUIR,0,0,S,YU,5841
-2021-02-01,20:55,Monday,WARDEN STATION,MUIS,0,0,,BD,0
-2021-02-01,20:57,Monday,DUNDAS STATION,SUAP,0,0,N,YU,0
-2021-02-01,21:06,Monday,DUNDAS STATION,MUIS,0,0,S,YU,0
-2021-02-01,22:00,Monday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-02-01,22:16,Monday,ROYAL YORK STATION,MUIS,0,0,E,BD,0
-2021-02-01,22:59,Monday,EGLINTON WEST STATION,MUIS,0,0,,YU,0
-2021-02-01,23:44,Monday,WILSON STATION,EUTR,5,10,N,YU,5956
-2021-02-02,00:24,Tuesday,ROSEDALE STATION,MUSC,0,0,N,YU,5536
-2021-02-02,00:50,Tuesday,DUFFERIN STATION,SUDP,17,22,E,BD,5158
-2021-02-02,01:48,Tuesday,VAUGHAN MC STATION,SUDP,0,0,S,YU,5721
-2021-02-02,01:51,Tuesday,SCARBOROUGH CTR STATIO,SRDP,0,0,,SRT,0
-2021-02-02,01:56,Tuesday,ROSEDALE STATION,MUIRS,0,0,,YU,0
-2021-02-02,02:34,Tuesday,FINCH STATION,MUIS,0,0,,YU,0
-2021-02-02,04:31,Tuesday,ST GEORGE YU STATION,MUO,0,0,,YU,0
-2021-02-02,05:38,Tuesday,EGLINTON STATION,MUTO,3,0,N,YU,5616
-2021-02-02,06:19,Tuesday,WILSON STATION,SUO,0,0,N,YU,0
-2021-02-02,06:50,Tuesday,KENNEDY BD STATION,EUAC,5,10,W,BD,5201
-2021-02-02,07:05,Tuesday,LAWRENCE STATION,EUSC,3,6,S,YU,6016
-2021-02-02,07:14,Tuesday,ROSEDALE STATION,MUATC,24,27,N,YU,5916
-2021-02-02,07:27,Tuesday,WELLESLEY STATION,SUDP,4,7,S,YU,5451
-2021-02-02,08:28,Tuesday,KEELE STATION,MUSC,3,6,W,BD,5048
-2021-02-02,08:45,Tuesday,EGLINTON STATION,SUDP,0,0,,YU,0
-2021-02-02,09:21,Tuesday,DUFFERIN STATION,MUDD,7,10,W,BD,5338
-2021-02-02,09:48,Tuesday,EGLINTON STATION,EUSC,0,0,S,YU,6016
-2021-02-02,10:27,Tuesday,DUPONT STATION,MUI,15,18,S,YU,5536
-2021-02-02,11:11,Tuesday,MUSEUM STATION,MUSAN,3,6,S,YU,6006
-2021-02-02,11:29,Tuesday,BLOOR STATION,TUOS,6,9,S,YU,5876
-2021-02-02,11:58,Tuesday,BLOOR STATION,MUATC,4,7,S,YU,5836
-2021-02-02,12:04,Tuesday,DUFFERIN STATION,TUKEY,6,9,E,BD,5151
-2021-02-02,12:10,Tuesday,UNION STATION,MUIS,0,0,,YU,0
-2021-02-02,12:33,Tuesday,EGLINTON STATION,EUSC,0,0,S,YU,6016
-2021-02-02,13:01,Tuesday,ST CLAIR WEST STATION,MUIS,0,0,S,YU,5471
-2021-02-02,13:20,Tuesday,SPADINA YUS STATION,SUDP,15,18,N,YU,5896
-2021-02-02,13:26,Tuesday,SPADINA BD STATION,SUDP,10,14,E,BD,5116
-2021-02-02,14:30,Tuesday,WELLESLEY STATION,SUAP,7,10,N,YU,6011
-2021-02-02,14:33,Tuesday,ST GEORGE BD STATION,MUSAN,4,7,W,BD,5124
-2021-02-02,14:35,Tuesday,LAWRENCE WEST STATION,SUDP,5,8,S,YU,5891
-2021-02-02,15:03,Tuesday,EGLINTON WEST STATION,SUAP,19,21,N,YU,5421
-2021-02-02,15:19,Tuesday,ST CLAIR WEST STATION,TUO,4,7,N,YU,5541
-2021-02-02,15:27,Tuesday,ST PATRICK STATION,SUDP,0,0,N,YU,5446
-2021-02-02,16:05,Tuesday,KENNEDY BD STATION,SUDP,3,6,W,BD,5014
-2021-02-02,16:27,Tuesday,WILSON STATION,MUO,3,6,S,YU,5441
-2021-02-02,16:34,Tuesday,MAIN STREET STATION,MUIS,0,0,,BD,0
-2021-02-02,17:06,Tuesday,KIPLING STATION,PUSRA,3,6,W,BD,5068
-2021-02-02,17:27,Tuesday,ST CLAIR STATION,SUDP,0,0,S,YU,0
-2021-02-02,17:46,Tuesday,COXWELL STATION,MUIS,0,0,,BD,0
-2021-02-02,17:49,Tuesday,VAUGHAN MC STATION,MUIRS,0,0,,YU,0
-2021-02-02,18:26,Tuesday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,0
-2021-02-02,18:46,Tuesday,BLOOR STATION,MUIS,0,0,N,YU,0
-2021-02-02,18:59,Tuesday,YORKDALE STATION,EUECD,3,6,N,YU,5831
-2021-02-02,19:16,Tuesday,ISLINGTON STATION,SUUT,19,22,W,BD,5165
-2021-02-02,19:43,Tuesday,SHEPPARD STATION,MUSC,0,0,S,YU,5421
-2021-02-02,19:48,Tuesday,RUNNYMEDE STATION,SUDP,3,6,W,BD,5091
-2021-02-02,20:26,Tuesday,LAWRENCE STATION,SUDP,0,0,N,YU,5646
-2021-02-02,20:43,Tuesday,ST CLAIR WEST STATION,MUPAA,4,7,N,YU,5981
-2021-02-02,21:25,Tuesday,BLOOR STATION,MUATC,3,6,S,YU,5896
-2021-02-02,21:47,Tuesday,VAUGHAN MC STATION,MUIR,0,0,S,YU,5756
-2021-02-02,22:00,Tuesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-02-02,23:00,Tuesday,KENNEDY BD STATION,MUO,0,0,,BD,0
-2021-02-02,23:09,Tuesday,PIONEER VILLAGE STATIO,MUIR,11,16,S,YU,5396
-2021-02-02,23:27,Tuesday,DUNDAS WEST STATION,MUIS,0,0,,BD,0
-2021-02-03,00:50,Wednesday,VAUGHAN MC STATION,SUDP,5,10,S,YU,5726
-2021-02-03,00:51,Wednesday,VAUGHAN MC STATION,SUDP,5,10,S,YU,5676
-2021-02-03,02:26,Wednesday,VAUGHAN MC STATION,SUDP,0,0,S,YU,5986
-2021-02-03,02:28,Wednesday,WARDEN STATION,MUI,0,0,W,BD,5165
-2021-02-03,04:55,Wednesday,SHEPPARD WEST STATION,PUSSW,0,0,S,YU,0
-2021-02-03,06:25,Wednesday,OLD MILL STATION,TUMVS,0,0,W,BD,5161
-2021-02-03,06:33,Wednesday,SPADINA BD STATION,MUIS,0,0,,BD,0
-2021-02-03,06:39,Wednesday,LAWRENCE STATION,EUSC,0,0,S,YU,6016
-2021-02-03,07:09,Wednesday,EGLINTON STATION,EUTRD,3,6,S,YU,5421
-2021-02-03,07:28,Wednesday,SHEPPARD WEST STATION,MUTO,5,8,N,YU,5661
-2021-02-03,08:00,Wednesday,LANSDOWNE STATION,EUNT,5,8,W,BD,5146
-2021-02-03,08:07,Wednesday,BATHURST STATION,MUIRS,0,0,,BD,0
-2021-02-03,09:04,Wednesday,QUEEN STATION,MUIRS,0,0,,YU,0
-2021-02-03,09:05,Wednesday,BROADVIEW STATION,MUIS,0,0,,BD,0
-2021-02-03,09:54,Wednesday,YORK MILLS STATION,MUIR,3,6,N,YU,5461
-2021-02-03,09:58,Wednesday,OSGOODE STATION,MUNCA,0,0,,YU,0
-2021-02-03,10:21,Wednesday,KENNEDY SRT STATION,PRSA,8,15,N,SRT,3019
-2021-02-03,10:26,Wednesday,ST GEORGE YU STATION,PUMST,0,0,,YU,0
-2021-02-03,10:55,Wednesday,DUNDAS WEST STATION,TUMVS,0,0,W,BD,5209
-2021-02-03,11:09,Wednesday,ISLINGTON STATION,TUO,3,6,W,BD,5209
-2021-02-03,11:16,Wednesday,ST CLAIR STATION,MUSC,0,0,S,YU,5446
-2021-02-03,12:26,Wednesday,YORK MILLS STATION,PUMEL,0,0,,YU,0
-2021-02-03,13:12,Wednesday,SHEPPARD STATION,MUIE,6,9,N,YU,5471
-2021-02-03,13:33,Wednesday,SHEPPARD-YONGE STATION,PUMO,0,0,,SHP,0
-2021-02-03,14:08,Wednesday,DUNDAS STATION,MUIRS,0,0,,YU,0
-2021-02-03,14:40,Wednesday,BLOOR STATION,SUDP,0,0,S,YU,5911
-2021-02-03,15:21,Wednesday,VAUGHAN MC STATION,MUSAN,3,6,S,YU,5633
-2021-02-03,15:38,Wednesday,PIONEER VILLAGE STATIO,SUDP,0,0,,YU,3244
-2021-02-03,16:03,Wednesday,PAPE STATION,PUMEL,0,0,,BD,0
-2021-02-03,16:32,Wednesday,LAWRENCE STATION,MUSAN,3,6,N,YU,5641
-2021-02-03,16:51,Wednesday,SPADINA BD STATION,PUMEL,0,0,,BD,0
-2021-02-03,17:11,Wednesday,CHRISTIE STATION,MUPAA,0,0,W,BD,5120
-2021-02-03,17:16,Wednesday,KIPLING STATION,SUDP,0,0,,BD,0
-2021-02-03,17:34,Wednesday,KIPLING STATION,TUMVS,0,0,W,BD,5148
-2021-02-03,17:42,Wednesday,COXWELL STATION,PUMST,0,0,,BD,0
-2021-02-03,18:01,Wednesday,DUNDAS STATION,SUDP,0,0,,YU,0
-2021-02-03,18:11,Wednesday,MUSEUM STATION,SUO,0,0,S,YU,5756
-2021-02-03,18:14,Wednesday,DAVISVILLE STATION,MUI,9,12,N,YU,5851
-2021-02-03,18:40,Wednesday,BLOOR STATION,SUDP,5,8,N,YU,5916
-2021-02-03,18:46,Wednesday,UNION TO KING,MUIS,0,0,N,YU,5541
-2021-02-03,18:57,Wednesday,KIPLING STATION,MUTO,4,7,E,BD,5048
-2021-02-03,19:02,Wednesday,DAVISVILLE STATION,MUI,3,6,N,YU,5916
-2021-02-03,19:41,Wednesday,WILSON STATION,MUPAA,0,0,N,YU,5476
-2021-02-03,19:53,Wednesday,DUFFERIN STATION,PUTDN,15,21,W,BD,5161
-2021-02-03,22:00,Wednesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-02-03,22:03,Wednesday,GLENCAIRN STATION,MUPR1,39,44,S,YU,5956
-2021-02-03,22:49,Wednesday,LAWRENCE WEST STATION,MUI,4,9,S,YU,5681
-2021-02-03,23:00,Wednesday,WARDEN TO KENNEDY,MUO,0,0,,BD,0
-2021-02-04,00:15,Thursday,VICTORIA PARK STATION,SUDP,0,0,,BD,0
-2021-02-04,01:03,Thursday,UNION STATION,SUDP,0,0,S,YU,5511
-2021-02-04,01:10,Thursday,BLOOR STATION,SUROB,0,0,,YU,0
-2021-02-04,01:45,Thursday,LAWRENCE STATION,TUSC,0,0,S,,5596
-2021-02-04,01:47,Thursday,KIPLING STATION,MUIS,0,0,E,BD,5058
-2021-02-04,02:01,Thursday,DON MILLS STATION,PUSO,6,11,W,SHP,6156
-2021-02-04,02:17,Thursday,FINCH STATION,MUIS,0,0,,YU,0
-2021-02-04,07:21,Thursday,ROSEDALE STATION,MUSC,6,9,N,YU,5576
-2021-02-04,08:11,Thursday,DAVISVILLE STATION,SUUT,0,0,S,YU,6071
-2021-02-04,08:13,Thursday,FINCH STATION,MUSC,0,0,S,YU,6111
-2021-02-04,08:19,Thursday,ROSEDALE STATION,MUSAN,3,6,N,YU,5976
-2021-02-04,09:10,Thursday,LESLIE STATION,EUSC,0,0,E,SHP,6151
-2021-02-04,10:16,Thursday,MAIN STREET STATION,MUIRS,0,0,,BD,0
-2021-02-04,10:32,Thursday,ROSEDALE STATION,EUSC,0,0,N,YU,5771
-2021-02-04,10:42,Thursday,KENNEDY BD STATION,MUIS,3,6,W,BD,5052
-2021-02-04,10:52,Thursday,COXWELL STATION,MUPAA,0,0,W,BD,5085
-2021-02-04,10:55,Thursday,EGLINTON WEST STATION,SUDP,6,9,S,YU,5981
-2021-02-04,11:02,Thursday,YORK UNIVERSITY STATIO,PUMEL,0,0,,YU,0
-2021-02-04,11:06,Thursday,ST CLAIR WEST STATION,MUIRS,0,0,,YU,0
-2021-02-04,11:26,Thursday,VAUGHAN MC STATION,SUDP,3,9,S,YU,5986
-2021-02-04,13:05,Thursday,CHESTER STATION,MUSC,0,0,E,BD,5177
-2021-02-04,13:07,Thursday,ROSEDALE STATION,EUSC,0,0,N,YU,5771
-2021-02-04,13:14,Thursday,DUFFERIN STATION,MUIS,0,0,,BD,0
-2021-02-04,13:32,Thursday,WARDEN STATION,SUUT,9,12,E,BD,5302
-2021-02-04,13:47,Thursday,WARDEN STATION,SUUT,5,8,E,BD,5332
-2021-02-04,14:32,Thursday,KEELE STATION,MUSC,0,0,W,BD,5308
-2021-02-04,14:40,Thursday,PIONEER VILLAGE STATIO,SUDP,0,0,S,YU,5491
-2021-02-04,14:50,Thursday,RUNNYMEDE STATION,PUMO,0,0,,BD,0
-2021-02-04,15:21,Thursday,BLOOR STATION,MUIS,0,0,N,YU,0
-2021-02-04,15:29,Thursday,WOODBINE STATION,SUDP,0,0,,BD,0
-2021-02-04,15:41,Thursday,COLLEGE STATION,MUIRS,0,0,,YU,0
-2021-02-04,16:55,Thursday,NORTH YORK CTR STATION,SUDP,3,6,N,YU,6056
-2021-02-04,17:17,Thursday,DUFFERIN STATION,MUIR,4,7,W,BD,5108
-2021-02-04,17:17,Thursday,OSSINGTON STATION,MUNCA,0,0,,BD,0
-2021-02-04,17:21,Thursday,UNION STATION,MUIS,0,0,N,YU,0
-2021-02-04,17:23,Thursday,WELLESLEY STATION,MUIRS,0,0,,YU,0
-2021-02-04,17:32,Thursday,OSGOODE STATION,EUDO,3,6,S,YU,5766
-2021-02-04,18:05,Thursday,WOODBINE STATION,TUOS,3,6,W,BD,5085
-2021-02-04,18:21,Thursday,VAUGHAN MC STATION,SUDP,3,6,S,YU,5746
-2021-02-04,18:25,Thursday,BLOOR STATION,MUIS,0,0,,YU,0
-2021-02-04,18:36,Thursday,FINCH STATION,MUI,3,6,N,YU,5676
-2021-02-04,18:44,Thursday,COXWELL STATION,SUDP,3,6,W,BD,5362
-2021-02-04,18:55,Thursday,BATHURST STATION,SUAP,4,7,E,BD,5081
-2021-02-04,19:08,Thursday,SHERBOURNE STATION,TUMVS,3,6,E,BD,5061
-2021-02-04,19:28,Thursday,BLOOR STATION,SUDP,8,11,N,YU,5966
-2021-02-04,19:38,Thursday,VAUGHAN MC STATION,EUCD,3,6,S,YU,5766
-2021-02-04,20:22,Thursday,PAPE STATION,MUPAA,0,0,E,BD,5124
-2021-02-04,20:34,Thursday,DUPONT STATION,SUUT,5,8,N,YU,5516
-2021-02-04,20:45,Thursday,KENNEDY BD STATION,PUMEL,0,0,,BD,0
-2021-02-04,20:48,Thursday,EGLINTON WEST STATION,MUSAN,3,6,N,YU,5516
-2021-02-04,21:17,Thursday,VAUGHAN MC STATION,MUTO,3,8,S,YU,5516
-2021-02-04,21:29,Thursday,ST CLAIR WEST STATION,SUDP,8,11,N,YU,5981
-2021-02-04,21:59,Thursday,DONLANDS STATION,MUPAA,3,9,E,BD,5302
-2021-02-04,22:00,Thursday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-02-04,22:04,Thursday,QUEEN STATION,SUDP,0,0,S,YU,0
-2021-02-04,22:25,Thursday,UNION STATION,SUDP,0,0,,YU,0
-2021-02-04,22:42,Thursday,OSSINGTON STATION,PUTDN,5,11,W,BD,5331
-2021-02-04,23:00,Thursday,BLOOR-DANFORTH SUBWAY,MUO,0,0,,BD,0
-2021-02-04,23:16,Thursday,BLOOR STATION,MUIRS,0,0,,YU,0
-2021-02-04,23:48,Thursday,SPADINA BD STATION,MUIS,0,0,W,BD,0
-2021-02-05,00:35,Friday,FINCH STATION,EUBO,5,10,N,YU,6126
-2021-02-05,02:10,Friday,FINCH STATION,MUIS,0,0,,YU,0
-2021-02-05,02:17,Friday,ISLINGTON STATION,PUTOE,0,0,,BD,17
-2021-02-05,02:26,Friday,ROYAL YORK STATION,PUSSW,6,0,W,BD,5161
-2021-02-05,05:46,Friday,WARDEN STATION,MUSC,0,0,E,BD,5302
-2021-02-05,06:04,Friday,QUEENS PARK STATION,MUATC,0,0,S,YU,5641
-2021-02-05,06:08,Friday,LAWRENCE STATION,TUOS,7,10,N,YU,5931
-2021-02-05,06:13,Friday,EGLINTON STATION,MUIRS,0,0,,YU,0
-2021-02-05,06:24,Friday,FINCH STATION,SUO,0,0,,YU,0
-2021-02-05,06:30,Friday,MCCOWAN STATION,ERME,5,12,,SRT,3000
-2021-02-05,06:34,Friday,GREENWOOD STATION,MUTO,3,6,E,BD,5256
-2021-02-05,07:07,Friday,FINCH STATION,SUO,3,6,S,YU,5741
-2021-02-05,07:10,Friday,MCCOWAN STATION,ERCD,3,10,S,SRT,3000
-2021-02-05,08:04,Friday,YORK MILLS STATION,EUSC,3,6,S,YU,5876
-2021-02-05,08:26,Friday,SHEPPARD STATION,SUAP,0,0,S,YU,0
-2021-02-05,08:30,Friday,ISLINGTON STATION,TUSC,0,0,E,BD,5302
-2021-02-05,08:34,Friday,SHEPPARD-YONGE STATION,SUUT,0,0,W,SHP,6186
-2021-02-05,08:43,Friday,COLLEGE STATION,MUIS,0,0,,YU,0
-2021-02-05,09:36,Friday,YORK MILLS STATION,SUAP,0,0,N,YU,5491
-2021-02-05,09:52,Friday,FINCH STATION,MUSC,0,0,S,YU,5741
-2021-02-05,11:47,Friday,BAYVIEW STATION,TUOPO,3,8,W,SHP,6156
-2021-02-05,12:04,Friday,NORTH YORK CTR STATION,MUPAA,5,8,N,YU,6086
-2021-02-05,12:13,Friday,RUNNYMEDE STATION,MUIS,0,0,,BD,0
-2021-02-05,12:30,Friday,RUNNYMEDE STATION,MUI,0,0,W,BD,5362
-2021-02-05,12:51,Friday,QUEEN STATION,MUIR,0,0,S,YU,5681
-2021-02-05,12:54,Friday,HIGH PARK STATION,TUO,3,6,E,BD,5362
-2021-02-05,12:54,Friday,HIGH PARK STATION,TUO,3,6,E,BD,0
-2021-02-05,13:11,Friday,ST GEORGE YU STATION,MUPAA,0,0,S,YU,5616
-2021-02-05,13:22,Friday,LANSDOWNE STATION,SUAP,0,0,E,BD,0
-2021-02-05,13:50,Friday,OLD MILL STATION,MUIR,10,13,W,BD,5101
-2021-02-05,13:52,Friday,BROADVIEW STATION,MUIS,0,0,,BD,0
-2021-02-05,14:07,Friday,LAWRENCE WEST STATION,PUMEL,0,0,,YU,0
-2021-02-05,14:17,Friday,NORTH YORK CTR STATION,MUSAN,3,6,S,YU,5806
-2021-02-05,14:57,Friday,VAUGHAN MC STATION,MUIS,0,0,S,YU,5756
-2021-02-05,15:08,Friday,YORK UNIVERSITY STATIO,MUSAN,3,6,N,YU,6116
-2021-02-05,15:10,Friday,KENNEDY BD STATION,PUSCR,3,6,E,BD,5123
-2021-02-05,15:32,Friday,MAIN STREET STATION,MUDD,0,0,W,BD,5123
-2021-02-05,15:41,Friday,BATHURST STATION,MUD,3,6,W,BD,5067
-2021-02-05,16:10,Friday,SHEPPARD WEST STATION,MUPAA,0,0,S,YU,5471
-2021-02-05,16:26,Friday,CHESTER STATION,PUMEL,0,0,W,BD,0
-2021-02-05,17:44,Friday,DUPONT STATION,MUIS,0,0,,YU,0
-2021-02-05,17:52,Friday,UNION STATION,SUAP,0,0,N,YU,6056
-2021-02-05,18:34,Friday,BLOOR STATION,SUAE,0,0,,YU,0
-2021-02-05,18:38,Friday,YORKDALE STATION,SUDP,0,0,S,YU,5591
-2021-02-05,19:14,Friday,DAVISVILLE STATION,MUI,3,6,N,YU,5676
-2021-02-05,19:17,Friday,EGLINTON STATION,SUDP,8,11,N,YU,5556
-2021-02-05,19:33,Friday,BAYVIEW STATION,MUSC,5,10,E,SHP,6146
-2021-02-05,20:12,Friday,KIPLING STATION,PUCSC,0,0,W,BD,5366
-2021-02-05,20:19,Friday,DUFFERIN STATION,SUDP,0,0,,BD,0
-2021-02-05,20:33,Friday,CHESTER STATION,SUDP,0,0,W,BD,5067
-2021-02-05,21:05,Friday,BROADVIEW STATION,MUIS,0,0,,BD,0
-2021-02-05,21:53,Friday,KENNEDY BD STATION,SUDP,7,13,E,BD,5177
-2021-02-05,22:00,Friday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-02-05,22:20,Friday,ST CLAIR STATION,TUOS,3,8,S,YU,6116
-2021-02-05,22:22,Friday,KIPLING STATION,TUMVS,0,0,W,BD,5247
-2021-02-05,22:39,Friday,RUNNYMEDE STATION,TUO,6,12,E,BD,5104
-2021-02-05,22:40,Friday,ST CLAIR STATION,EUBO,0,0,S,YU,6041
-2021-02-05,23:18,Friday,GLENCAIRN STATION,EUCD,5,10,N,YU,6041
-2021-02-05,23:31,Friday,KENNEDY BD STATION,SUDP,6,12,W,BD,5101
-2021-02-05,23:38,Friday,DAVISVILLE STATION,TUNOA,5,10,S,YU,5676
-2021-02-06,00:02,Saturday,FINCH WEST STATION,PUMEL,0,0,,YU,0
-2021-02-06,01:31,Saturday,SHEPPARD WEST STATION,SUDP,0,0,S,YU,5796
-2021-02-06,02:02,Saturday,SCARBOROUGH CTR STATIO,PREL,0,0,,SRT,0
-2021-02-06,02:06,Saturday,KIPLING STATION,SUDP,0,0,,BD,5177
-2021-02-06,02:09,Saturday,KENNEDY BD STATION,SUDP,0,0,,BD,0
-2021-02-06,06:00,Saturday,YONGE UNIVERSITY LINE,MUO,0,0,,YU,0
-2021-02-06,07:33,Saturday,SHEPPARD-YONGE STATION,TUSC,0,0,E,SHP,6156
-2021-02-06,10:18,Saturday,ST CLAIR STATION,SUDP,0,0,N,YU,6116
-2021-02-06,10:23,Saturday,ROSEDALE STATION,MUSC,0,0,N,YU,6036
-2021-02-06,11:14,Saturday,SPADINA YUS STATION,SUDP,4,9,N,YU,5571
-2021-02-06,11:27,Saturday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-02-06,11:31,Saturday,KIPLING STATION,PUCSC,3,8,E,BD,5151
-2021-02-06,12:02,Saturday,ROYAL YORK STATION,SUO,0,0,E,BD,0
-2021-02-06,12:38,Saturday,DAVISVILLE BUILD UP,MUO,0,0,S,YU,5556
-2021-02-06,12:44,Saturday,ST CLAIR WEST STATION,SUDP,0,0,,YU,4439
-2021-02-06,13:04,Saturday,BAY STATION,SUDP,10,14,E,BD,5059
-2021-02-06,14:43,Saturday,QUEEN STATION,PUMST,0,0,N,YU,0
-2021-02-06,14:54,Saturday,DAVISVILLE STATION,EUDO,0,0,S,YU,5761
-2021-02-06,16:00,Saturday,VAUGHAN MC STATION,EUCD,5,10,S,YU,5761
-2021-02-06,16:07,Saturday,ROYAL YORK STATION,MUSAN,3,7,E,BD,5311
-2021-02-06,16:53,Saturday,DUNDAS STATION,MUIS,0,0,S,YU,0
-2021-02-06,17:08,Saturday,ROSEDALE STATION,EUSC,5,10,N,YU,5761
-2021-02-06,17:23,Saturday,WELLESLEY STATION,MUATC,0,0,N,YU,5916
-2021-02-06,17:27,Saturday,DUFFERIN STATION,SUAP,11,15,W,BD,5159
-2021-02-06,17:42,Saturday,WELLESLEY STATION,SUDP,0,0,S,YU,5461
-2021-02-06,17:45,Saturday,WELLESLEY STATION,SUUT,0,0,S,YU,5461
-2021-02-06,17:58,Saturday,WELLESLEY STATION,MUIS,0,0,,YU,0
-2021-02-06,18:02,Saturday,ST CLAIR STATION,MUIR,0,0,N,YU,5796
-2021-02-06,18:20,Saturday,MUSEUM STATION,MUIRS,0,0,S,YU,0
-2021-02-06,18:33,Saturday,DUNDAS STATION,MUIS,0,0,,YU,0
-2021-02-06,18:43,Saturday,ST CLAIR STATION,MUIS,0,0,,YU,0
-2021-02-06,18:48,Saturday,DON MILLS STATION,MUO,0,0,W,SHP,6141
-2021-02-06,19:02,Saturday,PAPE STATION,MUIS,0,0,,BD,0
-2021-02-06,19:33,Saturday,VAUGHAN MC STATION,TUNIP,5,10,S,YU,5526
-2021-02-06,20:12,Saturday,VAUGHAN MC STATION,MUTO,5,10,S,YU,5856
-2021-02-06,20:13,Saturday,DONLANDS STATION,TUO,6,12,E,BD,5055
-2021-02-06,21:54,Saturday,HIGH PARK STATION,MUD,7,13,E,BD,5351
-2021-02-06,22:00,Saturday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-02-06,22:37,Saturday,YORKDALE STATION,SUDP,0,0,,YU,0
-2021-02-06,22:48,Saturday,VICTORIA PARK STATION,PUSTS,0,0,W,BD,5123
-2021-02-06,23:12,Saturday,ST CLAIR STATION,MUIR,28,33,N,YU,6001
-2021-02-06,23:29,Saturday,JANE STATION,MUIS,0,0,,BD,0
-2021-02-06,23:48,Saturday,DAVISVILLE STATION,TUSC,0,0,S,YU,6006
-2021-02-06,23:55,Saturday,ROSEDALE STATION,MUATC,0,0,S,YU,6006
-2021-02-07,01:06,Sunday,FINCH STATION,MUIS,0,0,,YU,0
-2021-02-07,01:50,Sunday,DAVISVILLE CARHOUSE,MUIE,0,0,,YU,0
-2021-02-07,07:07,Sunday,ST PATRICK STATION,MUNCA,0,0,,YU,0
-2021-02-07,08:00,Sunday,YONGE UNIVERSITY LINE,MUO,0,0,,YU,0
-2021-02-07,08:36,Sunday,HIGH PARK STATION,TUOS,0,0,E,BD,5072
-2021-02-07,08:38,Sunday,ROSEDALE STATION,MUATC,11,16,S,YU,5671
-2021-02-07,09:38,Sunday,LAWRENCE WEST STATION,MUIS,0,0,,YU,0
-2021-02-07,09:59,Sunday,ST CLAIR STATION,SUUT,6,11,N,YU,5896
-2021-02-07,10:25,Sunday,VAUGHAN MC STATION,TUNIP,4,9,S,YU,5551
-2021-02-07,10:48,Sunday,COXWELL STATION,MUIS,0,0,,BD,0
-2021-02-07,13:15,Sunday,LANSDOWNE STATION,MUIS,0,0,,BD,0
-2021-02-07,14:17,Sunday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-02-07,14:50,Sunday,ST CLAIR STATION,PUMST,0,0,,YU,0
-2021-02-07,18:16,Sunday,DUNDAS STATION,MUIS,0,0,,YU,0
-2021-02-07,19:56,Sunday,KEELE STATION,TUOS,3,7,E,BD,5186
-2021-02-07,21:04,Sunday,VAUGHAN MC STATION,MUSAN,4,8,S,YU,5721
-2021-02-07,21:17,Sunday,VAUGHAN MC STATION,MUTO,3,7,S,YU,5891
-2021-02-07,21:35,Sunday,ST GEORGE BD STATION,MUIS,0,0,,BD,0
-2021-02-07,22:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-02-07,22:25,Sunday,OLD MILL STATION,TUMVS,0,0,W,BD,5314
-2021-02-07,22:27,Sunday,ROYAL YORK STATION,MUO,5,10,W,BD,5314
-2021-02-07,23:22,Sunday,SHEPPARD WEST STATION,MUPAA,3,8,N,YU,6021
-2021-02-07,23:46,Sunday,SHEPPARD-YONGE STATION,EUDO,5,10,E,SHP,6146
-2021-02-08,01:08,Monday,BLOOR STATION,SUDP,6,11,N,YU,5666
-2021-02-08,01:14,Monday,YONGE BD STATION,SUDP,0,0,W,BD,5134
-2021-02-08,01:30,Monday,KIPLING STATION,MUI,0,0,E,BD,0
-2021-02-08,02:35,Monday,SHEPPARD-YONGE STATION,MUIS,0,0,,SHP,0
-2021-02-08,03:38,Monday,PIONEER VILLAGE STATIO,MUIS,0,0,,YU,0
-2021-02-08,05:47,Monday,GREENWOOD STATION,EUYRD,11,0,E,BD,5282
-2021-02-08,06:26,Monday,JANE STATION,MUIE,0,0,W,BD,5048
-2021-02-08,06:35,Monday,YORK MILLS STATION,EUSC,0,0,S,YU,5601
-2021-02-08,08:03,Monday,ST GEORGE YU STATION,MUIRS,0,0,S,YU,5571
-2021-02-08,09:00,Monday,VAUGHAN MC STATION,MUO,3,6,S,YU,5591
-2021-02-08,09:02,Monday,ST CLAIR WEST STATION,MUSAN,3,6,N,YU,5891
-2021-02-08,09:13,Monday,RUNNYMEDE STATION,PUMST,0,0,,BD,0
-2021-02-08,09:30,Monday,BLOOR STATION,SUO,0,0,S,YU,5761
-2021-02-08,09:37,Monday,YONGE BD STATION,SUPOL,0,0,W,BD,5104
-2021-02-08,09:43,Monday,WILSON STATION,PUSSW,11,14,S,YU,5551
-2021-02-08,11:40,Monday,SPADINA BD STATION,EUDO,3,6,E,BD,5318
-2021-02-08,11:54,Monday,PAPE STATION,EUCD,3,6,E,BD,5318
-2021-02-08,12:01,Monday,ST PATRICK STATION,MUIS,0,0,N,YU,0
-2021-02-08,12:41,Monday,ROSEDALE STATION,MUATC,5,8,S,YU,5661
-2021-02-08,12:55,Monday,CHRISTIE STATION,SUDP,0,0,,BD,0
-2021-02-08,13:05,Monday,LANSDOWNE STATION,MUIRS,0,0,E,BD,5331
-2021-02-08,13:37,Monday,DAVISVILLE STATION,SUDP,7,10,S,YU,6126
-2021-02-08,15:11,Monday,ROSEDALE STATION,MUATC,4,7,S,YU,5661
-2021-02-08,15:56,Monday,BATHURST STATION,SUDP,0,0,E,BD,5146
-2021-02-08,16:34,Monday,VICTORIA PARK STATION,MUPAA,0,0,W,BD,5092
-2021-02-08,16:34,Monday,KING STATION,SUDP,0,0,,YU,0
-2021-02-08,17:06,Monday,EGLINTON STATION,PUCSC,4,7,S,YU,5461
-2021-02-08,17:29,Monday,EGLINTON STATION,MUIS,0,0,,YU,0
-2021-02-08,18:43,Monday,FINCH STATION,PUMEL,0,0,,YU,0
-2021-02-08,18:48,Monday,PAPE STATION,SUO,0,0,,BD,0
-2021-02-08,18:53,Monday,BLOOR STATION,SUDP,3,6,N,YU,6001
-2021-02-08,20:10,Monday,EGLINTON WEST STATION,MUPAA,0,0,N,YU,6006
-2021-02-08,21:47,Monday,ROSEDALE STATION,MUATC,5,8,S,YU,5726
-2021-02-08,21:53,Monday,BLOOR STATION,MUATC,4,7,S,YU,5726
-2021-02-08,21:58,Monday,OLD MILL STATION,MUSAN,0,0,W,BD,5351
-2021-02-08,22:00,Monday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-02-08,22:30,Monday,SPADINA BD STATION,MUSAN,5,11,E,BD,5158
-2021-02-08,22:58,Monday,YONGE BD STATION,EUBK,11,17,W,BD,5161
-2021-02-08,23:00,Monday,YONGE UNIVERSITY LINE,MUO,0,0,,YU,0
-2021-02-08,23:42,Monday,BLOOR STATION,MUIR,4,9,N,YU,5546
-2021-02-09,00:02,Tuesday,SHEPPARD-YONGE STATION,EUDO,0,0,E,SHP,6166
-2021-02-09,00:19,Tuesday,ISLINGTON STATION,SUDP,9,15,E,BD,5332
-2021-02-09,00:50,Tuesday,SHERBOURNE STATION,SUDP,8,14,E,BD,5332
-2021-02-09,01:55,Tuesday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-02-09,05:46,Tuesday,GREENWOOD STATION,MUTO,5,0,E,BD,5056
-2021-02-09,06:05,Tuesday,ROSEDALE STATION,MUATC,3,6,S,YU,5516
-2021-02-09,06:14,Tuesday,VICTORIA PARK STATION,MUSC,0,0,E,BD,5332
-2021-02-09,06:30,Tuesday,FINCH STATION,EUSC,0,0,S,YU,5896
-2021-02-09,06:39,Tuesday,QUEEN'S QUAY STATION,PUMEL,0,0,,YU,0
-2021-02-09,07:09,Tuesday,UNION STATION,MUIRS,0,0,,YU,0
-2021-02-09,07:42,Tuesday,DUPONT STATION,EUTRD,9,12,S,YU,5771
-2021-02-09,07:54,Tuesday,CHRISTIE STATION,EUDO,6,9,W,BD,5318
-2021-02-09,08:02,Tuesday,DUFFERIN STATION,EUCD,3,6,W,BD,5318
-2021-02-09,08:50,Tuesday,ROSEDALE STATION,MUATC,4,7,S,YU,5516
-2021-02-09,09:10,Tuesday,LAWRENCE STATION,MUSC,0,0,N,YU,6046
-2021-02-09,10:25,Tuesday,DUNDAS WEST STATION,TUMVS,4,7,W,BD,5101
-2021-02-09,11:16,Tuesday,COLLEGE STATION,SUO,5,8,N,YU,5811
-2021-02-09,11:28,Tuesday,VAUGHAN MC STATION,SUAP,3,6,S,YU,5551
-2021-02-09,11:57,Tuesday,EGLINTON WEST STATION,MUPAA,0,0,S,YU,5551
-2021-02-09,12:45,Tuesday,WOODBINE STATION,EUPI,3,6,E,BD,5048
-2021-02-09,12:48,Tuesday,FINCH STATION,MUSC,0,0,S,YU,5551
-2021-02-09,14:45,Tuesday,EGLINTON STATION,SUAP,0,0,,YU,0
-2021-02-09,14:49,Tuesday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-02-09,14:52,Tuesday,VICTORIA PARK STATION,SUEAS,12,15,E,BD,5186
-2021-02-09,15:08,Tuesday,ROSEDALE STATION,TUSC,0,0,N,YU,5551
-2021-02-09,15:31,Tuesday,VICTORIA PARK STATION,TUSUP,7,10,W,BD,5069
-2021-02-09,16:06,Tuesday,FINCH STATION,MUIR,3,6,S,YU,5531
-2021-02-09,16:57,Tuesday,YORKDALE STATION,MUATC,0,0,S,YU,5961
-2021-02-09,17:01,Tuesday,QUEEN STATION,SUUT,15,18,N,YU,5751
-2021-02-09,17:30,Tuesday,ST CLAIR STATION,MUTO,7,10,N,YU,5751
-2021-02-09,18:11,Tuesday,ST PATRICK STATION,MUSAN,3,6,S,YU,5911
-2021-02-09,18:23,Tuesday,DAVISVILLE STATION,MUNCA,0,0,,YU,0
-2021-02-09,19:12,Tuesday,LANSDOWNE STATION,MUIS,0,0,W,BD,0
-2021-02-09,20:08,Tuesday,ISLINGTON STATION,SUDP,0,0,E,BD,5293
-2021-02-09,20:17,Tuesday,BLOOR STATION,MUIS,0,0,S,YU,0
-2021-02-09,20:37,Tuesday,WARDEN STATION,MUIS,0,0,,BD,0
-2021-02-09,20:43,Tuesday,KENNEDY BD STATION,PUSNT,0,0,W,BD,5106
-2021-02-09,20:46,Tuesday,YONGE BD STATION,MUO,3,9,E,BD,5351
-2021-02-09,20:55,Tuesday,YORK MILLS STATION,TUSC,0,0,S,YU,5021
-2021-02-09,21:06,Tuesday,VICTORIA PARK STATION,SUDP,0,0,E,BD,5259
-2021-02-09,21:28,Tuesday,ROSEDALE STATION,SUAP,7,12,N,YU,5636
-2021-02-09,21:43,Tuesday,KEELE STATION,SUDP,0,0,W,BD,5159
-2021-02-09,22:00,Tuesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU / BD,0
-2021-02-09,22:40,Tuesday,MAIN STREET STATION,MUIS,0,0,,BD,0
-2021-02-09,23:00,Tuesday,YONGE UNIVERSITY LINE,MUO,0,0,,YU,0
-2021-02-09,23:27,Tuesday,WILSON STATION,SUDP,0,0,,YU,0
-2021-02-10,05:42,Wednesday,DAVISVILLE YARD,PUTSM,5,10,N,YU,6061
-2021-02-10,06:08,Wednesday,KENNEDY BD STATION,EUNT,4,7,W,BD,5313
-2021-02-10,06:22,Wednesday,SHEPPARD WEST STATION,MUNOA,4,8,N,YU,0
-2021-02-10,06:23,Wednesday,FINCH STATION,MUSC,0,0,S,YU,5451
-2021-02-10,06:46,Wednesday,GREENWOOD STATION,MUTO,4,0,E,BD,5117
-2021-02-10,06:51,Wednesday,FINCH STATION,MUSC,0,0,S,YU,5976
-2021-02-10,07:18,Wednesday,EGLINTON STATION,MUIS,0,0,,YU,0
-2021-02-10,08:17,Wednesday,ST CLAIR STATION,SUDP,6,9,N,YU,5396
-2021-02-10,08:28,Wednesday,EGLINTON WEST STATION,EUDO,7,10,S,YU,5576
-2021-02-10,09:16,Wednesday,SHEPPARD WEST STATION,MUSAN,4,7,N,YU,5561
-2021-02-10,09:53,Wednesday,KIPLING STATION,MUI,0,0,,BD,5056
-2021-02-10,09:56,Wednesday,YONGE STATION,SUAE,0,0,,BD,0
-2021-02-10,10:30,Wednesday,DUNDAS WEST STATION,SUDP,5,8,E,BD,5117
-2021-02-10,11:00,Wednesday,VAUGHAN MC STATION,MUESA,3,6,S,YU,5616
-2021-02-10,11:02,Wednesday,ROSEDALE STATION,MUATC,6,9,S,YU,5731
-2021-02-10,11:39,Wednesday,DONLANDS STATION,PUSO,4,7,E,BD,5072
-2021-02-10,11:55,Wednesday,ISLINGTON STATION,PUMEL,0,0,,BD,0
-2021-02-10,12:12,Wednesday,WOODBINE STATION,SUROB,5,8,W,BD,5354
-2021-02-10,12:20,Wednesday,ST CLAIR STATION,MUPAA,0,0,N,YU,6031
-2021-02-10,12:50,Wednesday,ISLINGTON STATION,TUMVS,4,7,E,BD,5317
-2021-02-10,13:17,Wednesday,FINCH STATION,MUSC,0,0,S,YU,5731
-2021-02-10,13:19,Wednesday,OSGOODE STATION,EUDO,7,10,N,YU,5601
-2021-02-10,14:21,Wednesday,MAIN STREET STATION,SUAE,17,20,E,BD,5010
-2021-02-10,14:38,Wednesday,VICTORIA PARK STATION,TUMVS,0,0,W,BD,5050
-2021-02-10,15:05,Wednesday,ST GEORGE BD STATION,MUIR,0,0,E,BD,5351
-2021-02-10,15:53,Wednesday,WARDEN STATION,SUUT,0,0,W,BD,5055
-2021-02-10,16:20,Wednesday,VAUGHAN MC STATION,MUTO,3,6,S,YU,0
-2021-02-10,16:57,Wednesday,ST GEORGE BD STATION,SUDP,0,0,E,BD,5056
-2021-02-10,17:03,Wednesday,LAWRENCE WEST STATION,SUDP,6,9,S,YU,6031
-2021-02-10,17:17,Wednesday,ST CLAIR STATION,MUNCA,0,0,,YU,0
-2021-02-10,17:33,Wednesday,GREENWOOD STATION,MUO,0,0,E,BD,5190
-2021-02-10,17:52,Wednesday,ISLINGTON STATION,MUSAN,0,0,E,BD,5368
-2021-02-10,18:25,Wednesday,YONGE BD STATION,SUDP,19,22,E,BD,5204
-2021-02-10,18:49,Wednesday,HIGH PARK STATION,SUDP,0,0,E,BD,5314
-2021-02-10,19:04,Wednesday,YORKDALE STATION,MUIS,0,0,,YU,0
-2021-02-10,19:08,Wednesday,DONLANDS STATION,SUO,4,7,E,BD,5332
-2021-02-10,19:20,Wednesday,COXWELL STATION,MUIS,0,0,,BD,0
-2021-02-10,19:44,Wednesday,PAPE STATION,SUDP,4,10,E,BD,5284
-2021-02-10,19:45,Wednesday,KENNEDY BD STATION,MUPAA,0,0,E,BD,5117
-2021-02-10,20:15,Wednesday,BAY STATION,SUDP,0,0,E,BD,5301
-2021-02-10,22:00,Wednesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU / BD,0
-2021-02-10,22:19,Wednesday,KIPLING STATION,SUAP,17,23,E,BD,5314
-2021-02-10,22:29,Wednesday,SHEPPARD-YONGE STATION,PUMEL,0,0,,SHP,0
-2021-02-10,23:46,Wednesday,KENNEDY BD STATION,PUMEL,0,0,,BD,0
-2021-02-10,23:47,Wednesday,KENNEDY BD STATION,SUDP,0,0,W,BD,5354
-2021-02-11,00:13,Thursday,SPADINA BD STATION,MUIRS,0,0,E,BD,0
-2021-02-11,01:01,Thursday,KENNEDY BD STATION,MUI,6,12,,BD,5069
-2021-02-11,01:12,Thursday,GREENWOOD CARHOUSE,MUIE,0,0,,,0
-2021-02-11,05:00,Thursday,SPADINA BD STATION,PUSNT,0,0,W,BD,17
-2021-02-11,05:53,Thursday,BLOOR STATION,PUTWZ,6,0,S,YU,5966
-2021-02-11,09:27,Thursday,LESLIE STATION,PUSTS,5,10,E,SHP,6141
-2021-02-11,10:10,Thursday,VICTORIA PARK STATION,PUTO,4,7,W,BD,5351
-2021-02-11,10:12,Thursday,VICTORIA PARK STATION,TUMVS,0,0,W,BD,5209
-2021-02-11,10:21,Thursday,BATHURST STATION,PUMST,0,0,,BD,0
-2021-02-11,10:40,Thursday,BLOOR STATION,MUIRS,0,0,S,YU,0
-2021-02-11,12:04,Thursday,COXWELL STATION,EUO,3,6,W,BD,5302
-2021-02-11,12:13,Thursday,VICTORIA PARK STATION,PUTO,0,0,W,BD,5134
-2021-02-11,13:38,Thursday,COXWELL STATION,MUSAN,0,0,E,BD,5043
-2021-02-11,13:43,Thursday,VICTORIA PARK STATION,PUTO,4,7,W,BD,5209
-2021-02-11,13:45,Thursday,FINCH STATION,MUTO,3,6,S,YU,5786
-2021-02-11,13:46,Thursday,PIONEER VILLAGE STATIO,PUMEL,0,0,,YU,0
-2021-02-11,13:54,Thursday,VICTORIA PARK STATION,TUMVS,0,0,W,BD,5134
-2021-02-11,13:57,Thursday,BATHURST STATION,MUPAA,3,6,W,BD,5351
-2021-02-11,16:15,Thursday,SHEPPARD-YONGE STATION,EUDO,5,10,E,SHP,6166
-2021-02-11,17:49,Thursday,COXWELL STATION,MUSAN,4,7,E,BD,5170
-2021-02-11,18:55,Thursday,KEELE STATION,MUIRS,0,0,E,BD,0
-2021-02-11,19:17,Thursday,MAIN STREET STATION,MUIS,0,0,,BD,0
-2021-02-11,20:06,Thursday,FINCH STATION,MUSAN,3,6,S,YU,5856
-2021-02-11,22:00,Thursday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU / BD,0
-2021-02-11,22:23,Thursday,WELLESLEY STATION,MUIS,0,0,,YU,0
-2021-02-11,23:00,Thursday,YONGE UNIVERSITY LINE,MUO,0,0,,YU,0
-2021-02-12,00:16,Friday,SCARBOROUGH CTR STATIO,ERDO,4,11,N,SRT,3025
-2021-02-12,00:55,Friday,WELLESLEY STATION,MUIS,0,0,N,YU,5936
-2021-02-12,01:44,Friday,SHEPPARD WEST STATION,SUDP,0,0,N,YU,5456
-2021-02-12,06:44,Friday,OLD MILL STATION,MUSC,0,0,E,BD,5312
-2021-02-12,07:45,Friday,FINCH STATION,MUIR,3,6,S,YU,5441
-2021-02-12,07:55,Friday,KIPLING STATION,EUNT,3,6,E,BD,5085
-2021-02-12,08:16,Friday,BAYVIEW STATION,MUIRS,0,0,,SHP,0
-2021-02-12,08:39,Friday,SHEPPARD STATION,SUAE,0,0,,YU,0
-2021-02-12,09:18,Friday,KIPLING STATION,MUSAN,3,6,E,BD,5343
-2021-02-12,09:52,Friday,YORK MILLS STATION,PUTO,19,22,N,YU,5951
-2021-02-12,10:01,Friday,LAWRENCE EAST STATION,MRTO,5,10,N,SRT,3017
-2021-02-12,10:06,Friday,KEELE STATION,PUSRA,5,8,E,BD,5343
-2021-02-12,10:38,Friday,LAWRENCE WEST STATION,MUIS,0,0,N,YU,0
-2021-02-12,10:40,Friday,BLOOR STATION,MUATC,3,6,N,YU,6131
-2021-02-12,11:33,Friday,DUNDAS STATION,MUPAA,0,0,N,YU,5396
-2021-02-12,11:58,Friday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,5496
-2021-02-12,13:18,Friday,SHEPPARD-YONGE STATION,TUSC,0,0,E,SHP,5156
-2021-02-12,13:58,Friday,YONGE BD STATION,SUDP,3,6,E,BD,5015
-2021-02-12,14:33,Friday,QUEEN STATION,MUIRS,0,0,,YU,0
-2021-02-12,14:35,Friday,KENNEDY BD STATION,PUTIJ,4,7,E,BD,5170
-2021-02-12,15:09,Friday,KEELE STATION,MUSC,0,0,W,BD,5368
-2021-02-12,15:33,Friday,GREENWOOD STATION,PUTDN,3,6,E,BD,5056
-2021-02-12,15:43,Friday,ISLINGTON STATION,TUSC,0,0,W,BD,5246
-2021-02-12,15:59,Friday,GREENWOOD STATION,PUTDN,6,9,E,BD,5312
-2021-02-12,16:48,Friday,QUEEN'S PARK STATION,MUNCA,0,0,,YU,0
-2021-02-12,17:03,Friday,WILSON STATION,SUDP,0,0,N,YU,5861
-2021-02-12,18:23,Friday,DUNDAS STATION,SUDP,0,0,,YU,0
-2021-02-12,18:38,Friday,WARDEN STATION,MUD,9,12,E,BD,5196
-2021-02-12,19:14,Friday,KENNEDY BD STATION,MUIR,0,0,W,BD,5092
-2021-02-12,21:05,Friday,COLLEGE STATION,SUDP,0,0,,YU,0
-2021-02-12,21:27,Friday,CASTLE FRANK STATION,MUIR,0,0,,BD,0
-2021-02-12,21:37,Friday,KING STATION,PUMEL,0,0,,YU,0
-2021-02-12,21:39,Friday,ST GEORGE YU STATION,MUIS,0,0,,YU,0
-2021-02-12,21:51,Friday,VAUGHAN MC STATION,SUDP,0,0,S,YU,5851
-2021-02-12,22:00,Friday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-02-12,23:15,Friday,FINCH STATION,MUI,0,0,S,YU,5981
-2021-02-13,00:06,Saturday,GREENWOOD YARD,PUTOE,0,0,,BD,0
-2021-02-13,00:23,Saturday,KEELE STATION,MUSC,0,0,E,BD,5056
-2021-02-13,00:36,Saturday,KING STATION,SUO,12,17,N,YU,5956
-2021-02-13,01:11,Saturday,SHEPPARD STATION,MUPAA,4,9,N,YU,5956
-2021-02-13,02:00,Saturday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-02-13,05:42,Saturday,SHERBOURNE STATION,MUNCA,0,0,,BD,0
-2021-02-13,06:01,Saturday,KENNEDY BD STATION,PUSRA,6,12,W,BD,5085
-2021-02-13,09:40,Saturday,KIPLING STATION,TUNIP,5,10,E,BD,5124
-2021-02-13,10:07,Saturday,BLOOR STATION,SUDP,5,10,S,YU,5381
-2021-02-13,11:06,Saturday,WELLESLEY STATION,SUEAS,12,17,S,YU,5976
-2021-02-13,11:27,Saturday,WILSON STATION,MUNOA,3,6,S,YU,0
-2021-02-13,11:47,Saturday,KENNEDY BD STATION,TUO,0,0,E,BD,5293
-2021-02-13,12:14,Saturday,FINCH STATION,MUSAN,3,6,S,YU,6006
-2021-02-13,12:25,Saturday,DOWNSVIEW PARK STATION,SUDP,4,7,S,YU,5476
-2021-02-13,13:14,Saturday,WILSON YARD,TUNIP,3,6,S,YU,5786
-2021-02-13,13:23,Saturday,ROSEDALE STATION,MUATC,5,8,S,YU,5751
-2021-02-13,13:30,Saturday,BLOOR STATION,MUATC,3,6,S,YU,5751
-2021-02-13,14:08,Saturday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,0
-2021-02-13,14:27,Saturday,MUSEUM STATION,MUIS,0,0,N,YU,0
-2021-02-13,14:44,Saturday,SHEPPARD WEST STATION,SUDP,0,0,,YU,0
-2021-02-13,16:52,Saturday,QUEEN STATION,MUIS,0,0,N,YU,0
-2021-02-13,16:56,Saturday,ST CLAIR STATION,SUDP,3,6,N,YU,6121
-2021-02-13,18:23,Saturday,DONLANDS STATION,SUROB,0,0,E,BD,5354
-2021-02-13,18:58,Saturday,JANE STATION,PUMEL,0,0,,BD,0
-2021-02-13,19:15,Saturday,YORK UNIVERSITY STATIO,EUTRD,3,8,N,YU,5741
-2021-02-13,19:39,Saturday,VAUGHAN MC STATION,TUO,5,10,S,YU,5666
-2021-02-13,20:17,Saturday,DUNDAS STATION,MUIS,0,0,,YU,0
-2021-02-13,20:20,Saturday,BAY STATION,SUDP,4,9,E,BD,5282
-2021-02-13,20:29,Saturday,SHERBOURNE STATION,SUDP,0,0,E,BD,5046
-2021-02-13,20:48,Saturday,EGLINTON STATION,SUDP,0,0,N,YU,6026
-2021-02-13,22:00,Saturday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-02-13,22:01,Saturday,WILSON STATION,MUPLB,19,24,S,YU,5421
-2021-02-13,22:20,Saturday,EGLINTON STATION (APPR,TUMVS,3,8,S,YU,5776
-2021-02-13,22:24,Saturday,ST GEORGE YU STATION,SUDP,12,17,N,YU,5736
-2021-02-13,22:55,Saturday,VICTORIA PARK STATION,TUOS,0,0,W,BD,5069
-2021-02-13,23:38,Saturday,QUEEN STATION,SUDP,6,11,N,YU,5811
-2021-02-14,01:36,Sunday,DUNDAS STATION,MUIS,0,0,,YU,0
-2021-02-14,02:11,Sunday,FINCH STATION,MUIS,0,0,,YU,0
-2021-02-14,02:18,Sunday,JANE STATION,SUDP,0,0,W,BD,0
-2021-02-14,04:25,Sunday,DUNDAS STATION,SUDP,0,0,,YU,0
-2021-02-14,07:57,Sunday,WARDEN TO KENNEDY,MUO,0,0,,BD,0
-2021-02-14,08:06,Sunday,FINCH STATION,TUSC,0,0,S,YU,5391
-2021-02-14,08:27,Sunday,SHEPPARD WEST STATION,EUOE,18,23,N,YU,5656
-2021-02-14,08:43,Sunday,WARDEN STATION,EUDO,4,8,W,BD,5048
-2021-02-14,09:07,Sunday,DON MILLS STATION,TUMVS,4,9,E,SHP,6166
-2021-02-14,09:19,Sunday,VAUGHAN MC STATION,MUTO,5,10,S,YU,5756
-2021-02-14,09:40,Sunday,MCCOWAN STATION,PRSA,31,37,N,SRT,3013
-2021-02-14,10:05,Sunday,MAIN STREET STATION,SUDP,0,0,,BD,0
-2021-02-14,10:31,Sunday,YONGE BD STATION,MUO,3,7,E,BD,5104
-2021-02-14,11:13,Sunday,OSSINGTON STATION,MUIRS,0,0,,BD,0
-2021-02-14,13:05,Sunday,ROYAL YORK STATION,TUSC,0,0,E,BD,5111
-2021-02-14,14:07,Sunday,BESSARION STATION,TUOS,0,0,E,SHP,6186
-2021-02-14,14:11,Sunday,FINCH STATION,TUMVS,0,0,N,YU,5851
-2021-02-14,14:15,Sunday,YORK MILLS STATION,SUROB,0,0,,YU,0
-2021-02-14,15:48,Sunday,ISLINGTON STATION,TUMVS,7,11,E,BD,5151
-2021-02-14,18:06,Sunday,OLD MILL STATION,EUSC,0,0,E,BD,5071
-2021-02-14,18:14,Sunday,KIPLING STATION,SUDP,4,8,E,BD,5046
-2021-02-14,18:24,Sunday,BATHURST STATION,EUSC,0,0,E,BD,5071
-2021-02-14,18:33,Sunday,FINCH STATION,MUSC,0,0,S,YU,6036
-2021-02-14,19:04,Sunday,GREENWOOD CARHOUSE,MUO,0,0,,BD,0
-2021-02-14,20:54,Sunday,HIGH PARK STATION,MUIS,0,0,,BD,0
-2021-02-14,22:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-02-14,23:03,Sunday,LAWRENCE STATION,MUPAA,0,0,N,YU,5946
-2021-02-14,23:18,Sunday,QUEEN'S PARK STATION,MUIS,0,0,,YU,0
-2021-02-15,00:07,Monday,MAIN STREET STATION,MUIS,0,0,,BD,0
-2021-02-15,00:09,Monday,KIPLING STATION,PUSIS,5,10,W,BD,5084
-2021-02-15,01:26,Monday,KIPLING STATION,PUSIS,5,10,E,BD,5180
-2021-02-15,01:27,Monday,SHEPPARD-YONGE STATION,TUSC,0,0,W,SHP,6181
-2021-02-15,01:40,Monday,VAUGHAN MC STATION,SUDP,0,0,S,YU,5691
-2021-02-15,05:47,Monday,KEELE STATION,TUCC,6,0,W,BD,5331
-2021-02-15,05:51,Monday,DAVISVILLE BUILD UP,EUSC,0,0,N,YU,5831
-2021-02-15,05:53,Monday,KIPLING STATION,TUCC,13,17,E,BD,5175
-2021-02-15,06:43,Monday,EGLINTON STATION,MUIRS,0,0,,YU,0
-2021-02-15,07:25,Monday,KIPLING STATION,EUDO,3,7,E,BD,5048
-2021-02-15,08:18,Monday,ISLINGTON STATION,TUMVS,3,7,E,BD,5325
-2021-02-15,08:58,Monday,COLLEGE STATION,MUIRS,0,0,,YU,0
-2021-02-15,09:06,Monday,KENNEDY BD STATION,TUMVS,4,8,E,BD,5325
-2021-02-15,09:17,Monday,BAYVIEW STATION,TUSC,0,0,E,SHP,6166
-2021-02-15,10:12,Monday,ST PATRICK STATION,MUIRS,0,0,,YU,0
-2021-02-15,13:18,Monday,CASTLE FRANK STATION,MUPAA,0,0,E,BD,5050
-2021-02-15,14:01,Monday,ST GEORGE YU STATION,SUDP,0,0,N,YU,6001
-2021-02-15,15:20,Monday,KIPLING STATION,TUCC,10,15,E,BD,0
-2021-02-15,15:32,Monday,YONGE BD STATION,SUDP,5,9,W,BD,5171
-2021-02-15,15:34,Monday,ST CLAIR STATION,SUDP,6,10,S,YU,5901
-2021-02-15,16:06,Monday,MIDLAND STATION,SRDP,0,0,S,SRT,3002
-2021-02-15,16:37,Monday,KIPLING STATION,SUDP,0,0,W,BD,5161
-2021-02-15,17:08,Monday,KIPLING STATION,SUAE,0,0,,BD,0
-2021-02-15,17:20,Monday,DUNDAS STATION,SUUT,11,15,N,YU,5906
-2021-02-15,17:30,Monday,YONGE BD STATION,SUDP,3,8,E,BD,5314
-2021-02-15,18:22,Monday,DUFFERIN STATION,SUDP,3,8,E,BD,5071
-2021-02-15,18:57,Monday,OSSINGTON STATION,MUPLB,58,62,E,BD,5124
-2021-02-15,20:30,Monday,SCARBOROUGH RAPID TRAN,TRST,0,0,,SRT,0
-2021-02-15,20:30,Monday,YONGE UNIVERSITY LINE,TUST,0,0,,BD,0
-2021-02-15,20:36,Monday,OSSINGTON STATION,MUPLB,116,120,W,BD,5282
-2021-02-15,20:51,Monday,KENNEDY BD STATION,SUDP,0,0,,BD,0
-2021-02-15,20:53,Monday,KENNEDY BD STATION,MUPLC,0,0,W,BD,5092
-2021-02-15,21:16,Monday,SUMMERHILL STATION,MUI,24,29,N,YU,5851
-2021-02-15,21:16,Monday,MUSEUM STATION,SUDP,3,8,S,YU,5611
-2021-02-15,21:49,Monday,EGLINTON STATION (LEAV,TUMVS,3,8,S,YU,5696
-2021-02-15,22:00,Monday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-02-15,22:41,Monday,UNION STATION,MUIRS,0,0,,YU,0
-2021-02-15,23:38,Monday,ISLINGTON STATION,MUIS,0,0,,BD,0
-2021-02-15,23:56,Monday,EGLINTON STATION,MUPAA,0,0,N,YU,5946
-2021-02-16,00:08,Tuesday,DAVISVILLE STATION,PUSIS,5,10,S,YU,5661
-2021-02-16,00:40,Tuesday,KENNEDY SRT STATION,ERDO,7,13,N,SRT,3017
-2021-02-16,01:59,Tuesday,VAUGHAN MC STATION,MUIS,0,0,,YU,0
-2021-02-16,02:22,Tuesday,YONGE-UNIVERSITY AND B,TUML,0,0,,YU/BD,0
-2021-02-16,02:40,Tuesday,KENNEDY SRT TO MCCOWA,TRST,0,0,,SRT,3001
-2021-02-16,05:11,Tuesday,ELLESMERE STATION,TRNCA,0,0,,SRT,0
-2021-02-16,05:30,Tuesday,LESLIE STATION,MUWEA,8,0,E,SHP,6196
-2021-02-16,05:44,Tuesday,KEELE STATION,TUML,14,0,W,BD,5063
-2021-02-16,05:49,Tuesday,BLOOR STATION,EUNT,0,0,N,YU,6034
-2021-02-16,05:50,Tuesday,WILSON STATION,MUATC,0,0,S,YU,5386
-2021-02-16,06:00,Tuesday,WILSON STATION,MUNOA,4,8,S,YU,0
-2021-02-16,06:02,Tuesday,HIGHWAY 407 STATION,EUNT,4,8,S,YU,6076
-2021-02-16,06:06,Tuesday,ROSEDALE STATION,MUSC,0,0,N,YU,5756
-2021-02-16,06:08,Tuesday,ROSEDALE STATION,MUATC,0,0,S,YU,5896
-2021-02-16,06:17,Tuesday,ISLINGTON STATION,PUSIS,0,0,E,BD,5159
-2021-02-16,06:20,Tuesday,ROSEDALE STATION,MUSC,0,0,N,YU,5851
-2021-02-16,06:21,Tuesday,WILSON STATION,MUTO,4,8,S,YU,5901
-2021-02-16,06:25,Tuesday,WARDEN STATION,PUSIS,0,0,E,BD,5319
-2021-02-16,06:35,Tuesday,KIPLING STATION,MUIR,0,0,E,BD,5092
-2021-02-16,06:53,Tuesday,WILSON STATION,MUATC,3,7,S,YU,6011
-2021-02-16,06:59,Tuesday,FINCH STATION,MUSC,0,0,S,YU,5976
-2021-02-16,07:28,Tuesday,VAUGHAN MC STATION,MUTO,4,8,S,YU,5771
-2021-02-16,07:36,Tuesday,DONLANDS STATION,EUNT,7,11,W,BD,5166
-2021-02-16,07:46,Tuesday,BROADVIEW STATION,EUME,6,10,W,BD,5166
-2021-02-16,07:51,Tuesday,WILSON STATION,MUTO,3,6,S,YU,6006
-2021-02-16,07:57,Tuesday,YU & BD,MUWEA,0,0,,YU,0
-2021-02-16,07:57,Tuesday,LINE 3 SCARBOROUGH RT,TRST,0,0,,SRT,0
-2021-02-16,08:36,Tuesday,VAUGHAN MC STATION,MUTO,0,0,S,YU,5736
-2021-02-16,08:36,Tuesday,KIPLING STATION,PUSIS,0,0,E,BD,5056
-2021-02-16,09:08,Tuesday,LESLIE STATION,PUMEL,0,0,,SHP,0
-2021-02-16,09:23,Tuesday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,0
-2021-02-16,10:10,Tuesday,FINCH STATION,PUCSC,0,0,N,YU,5966
-2021-02-16,11:11,Tuesday,VAUGHAN MC STATION,MUATC,4,7,S,YU,5671
-2021-02-16,11:44,Tuesday,OLD MILL STATION,TUOS,3,6,W,BD,5084
-2021-02-16,12:00,Tuesday,VAUGHAN MC STATION,TUNIP,3,7,S,YU,5746
-2021-02-16,12:34,Tuesday,DAVISVILLE STATION,SUO,0,0,S,YU,6041
-2021-02-16,12:45,Tuesday,ROSEDALE STATION,MUATC,3,6,S,YU,5676
-2021-02-16,12:58,Tuesday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,0
-2021-02-16,13:33,Tuesday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,0
-2021-02-16,13:46,Tuesday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,0
-2021-02-16,13:57,Tuesday,EGLINTON STATION,SUDP,0,0,S,YU,6136
-2021-02-16,14:12,Tuesday,RUNNYMEDE STATION,MUIR,0,0,E,BD,5155
-2021-02-16,14:24,Tuesday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,0
-2021-02-16,14:45,Tuesday,ST CLAIR STATION,TUOS,3,6,N,YU,5671
-2021-02-16,16:58,Tuesday,WARDEN STATION,PUSIS,4,8,W,BD,5161
-2021-02-16,17:00,Tuesday,WELLESLEY STATION,SUUT,3,7,S,YU,5896
-2021-02-16,17:01,Tuesday,CHESTER STATION,SUDP,6,10,W,BD,5143
-2021-02-16,17:33,Tuesday,SPADINA BD STATION,SUUT,0,0,W,BD,0
-2021-02-16,17:41,Tuesday,SHEPPARD STATION,SUDP,6,9,N,YU,5671
-2021-02-16,17:54,Tuesday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,0
-2021-02-16,17:57,Tuesday,KENNEDY BD STATION,PUTIJ,4,8,W,BD,5137
-2021-02-16,18:01,Tuesday,WOODBINE STATION,SUDP,5,9,E,BD,5106
-2021-02-16,18:25,Tuesday,VICTORIA PARK STATION,SUDP,6,10,E,BD,5208
-2021-02-16,18:30,Tuesday,CHRISTIE STATION,SUDP,8,12,E,BD,5159
-2021-02-16,18:32,Tuesday,BROADVIEW STATION,MUIS,0,0,E,BD,0
-2021-02-16,18:40,Tuesday,KEELE STATION,PUSTS,4,8,W,BD,5069
-2021-02-16,19:03,Tuesday,BLOOR STATION,SUDP,4,7,S,YU,6126
-2021-02-16,19:37,Tuesday,EGLINTON STATION,SUDP,4,7,S,YU,6051
-2021-02-16,20:04,Tuesday,COLLEGE STATION,SUO,7,11,S,YU,6001
-2021-02-16,20:33,Tuesday,OSGOODE STATION,SUUT,0,0,N,YU,6116
-2021-02-16,21:10,Tuesday,QUEEN STATION,MUIS,0,0,S,YU,0
-2021-02-16,21:21,Tuesday,WARDEN STATION,PUSIS,0,0,E,BD,5320
-2021-02-16,21:31,Tuesday,EGLINTON WEST STATION,SUDP,0,0,S,YU,5821
-2021-02-16,21:36,Tuesday,ST CLAIR STATION,SUDP,4,9,N,YU,6056
-2021-02-16,21:46,Tuesday,KENNEDY BD STATION,SUDP,7,14,E,BD,5028
-2021-02-16,22:00,Tuesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-02-16,22:21,Tuesday,ST GEORGE YU STATION,MUD,3,8,S,YU,5671
-2021-02-16,22:42,Tuesday,KENNEDY BD STATION,SUDP,7,14,W,BD,5282
-2021-02-16,22:58,Tuesday,BAYVIEW STATION,PUSTS,0,0,E,SHP,6186
-2021-02-16,23:02,Tuesday,BAYVIEW STATION,PUSTS,0,0,E,SHP,6191
-2021-02-16,23:14,Tuesday,BAYVIEW STATION,PUSTS,0,0,,SHP,6171
-2021-02-16,23:44,Tuesday,MCCOWAN STATION,MRTO,6,12,N,SRT,3021
-2021-02-16,23:46,Tuesday,VAUGHAN MC STATION,MUNOA,5,10,S,YU,0
-2021-02-16,23:58,Tuesday,BAYVIEW STATION,PUSTS,6,11,E,SHP,6166
-2021-02-17,00:00,Wednesday,KENNEDY BD STATION,SUDP,7,14,E,BD,5142
-2021-02-17,01:49,Wednesday,KING STATION,MUIS,0,0,N,YU,0
-2021-02-17,02:00,Wednesday,SCARBOROUGH RAPID TRAN,TRST,0,0,,SRT,0
-2021-02-17,02:11,Wednesday,HIGH PARK STATION,MUI,24,31,W,BD,5166
-2021-02-17,02:30,Wednesday,BLOOR DANFORTH SUBWAY,TUST,0,0,W,BD,5151
-2021-02-17,03:00,Wednesday,YONGE UNIVERSITY LINE,TUST,0,0,,YU,0
-2021-02-17,05:10,Wednesday,YORK MILLS STATION,PUTOE,0,0,S,YU,0
-2021-02-17,05:37,Wednesday,DAVISVILLE STATION,TUSC,0,0,N,YU,5966
-2021-02-17,05:54,Wednesday,DONLANDS STATION,TUNIP,4,9,W,BD,5309
-2021-02-17,06:11,Wednesday,PIONEER VILLAGE STATIO,EUTR,3,6,S,YU,5986
-2021-02-17,06:50,Wednesday,WILSON STATION,TUATC,3,6,S,YU,5631
-2021-02-17,06:57,Wednesday,OSGOODE STATION,MUPAA,0,0,N,YU,6136
-2021-02-17,07:04,Wednesday,WARDEN STATION,PUTIS,0,0,W,BD,5282
-2021-02-17,07:35,Wednesday,VICTORIA PARK STATION,PUTIS,0,0,W,BD,5028
-2021-02-17,07:48,Wednesday,KIPLING STATION,TUS,4,8,E,BD,5019
-2021-02-17,07:57,Wednesday,KIPLING STATION,TUS,4,8,E,BD,5301
-2021-02-17,08:19,Wednesday,ST GEORGE BD STATION,MUIS,0,0,,BD,0
-2021-02-17,09:05,Wednesday,BAY STATION,SUO,11,15,W,BD,5282
-2021-02-17,09:33,Wednesday,CHRISTIE STATION,TUSC,0,0,E,BD,5258
-2021-02-17,09:40,Wednesday,KEELE STATION,MUSC,0,0,W,BD,5258
-2021-02-17,10:42,Wednesday,DAVISVILLE STATION,SUDP,4,7,N,YU,5851
-2021-02-17,11:11,Wednesday,LANSDOWNE STATION,PUMST,0,0,,BD,0
-2021-02-17,11:26,Wednesday,ROSEDALE STATION,TUATC,8,11,S,YU,6061
-2021-02-17,11:30,Wednesday,BLOOR STATION,MUIS,0,0,N,YU,0
-2021-02-17,11:52,Wednesday,KENNEDY SRT STATION,PRSA,13,16,S,SRT,3014
-2021-02-17,12:39,Wednesday,QUEEN STATION,MUPAA,0,0,S,YU,5951
-2021-02-17,13:17,Wednesday,ROYAL YORK STATION,TUSC,0,0,W,BD,5151
-2021-02-17,14:22,Wednesday,CASTLE FRANK STATION,EUNT,5,9,W,BD,5297
-2021-02-17,14:37,Wednesday,MAIN STREET STATION,MUIRS,0,0,,BD,0
-2021-02-17,14:37,Wednesday,BATHURST STATION,TUSC,0,0,W,BD,5104
-2021-02-17,14:38,Wednesday,VAUGHAN MC STATION,MUCL,3,6,S,YU,5661
-2021-02-17,15:01,Wednesday,BATHURST STATION,PUMST,0,0,W,BD,0
-2021-02-17,15:05,Wednesday,RUNNYMEDE STATION,SUDP,0,0,W,BD,5028
-2021-02-17,15:33,Wednesday,BESSARION STATION,PUSTS,0,0,E,SHP,6191
-2021-02-17,15:48,Wednesday,ST CLAIR WEST STATION,SUO,0,0,N,YU,5866
-2021-02-17,15:54,Wednesday,KIPLING STATION,MUIR,4,8,E,BD,5134
-2021-02-17,15:56,Wednesday,YONGE BD STATION,MUIS,0,0,E,BD,5142
-2021-02-17,16:33,Wednesday,DONLANDS STATION,EUPI,4,8,E,BD,5251
-2021-02-17,16:36,Wednesday,FINCH STATION,MUTO,3,6,S,YU,5676
-2021-02-17,16:44,Wednesday,VAUGHAN MC STATION,TUO,3,6,S,YU,5776
-2021-02-17,16:54,Wednesday,SHEPPARD STATION,MUPAA,3,6,S,YU,5391
-2021-02-17,17:00,Wednesday,FINCH STATION,PUCSC,0,0,N,YU,5796
-2021-02-17,17:25,Wednesday,SHEPPARD STATION,SUDP,0,0,S,YU,6001
-2021-02-17,17:37,Wednesday,SHEPPARD-YONGE STATION,TUSC,0,0,E,SHP,6186
-2021-02-17,17:40,Wednesday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,5956
-2021-02-17,17:46,Wednesday,FINCH STATION,MUPAA,0,0,S,YU,5571
-2021-02-17,18:00,Wednesday,BAYVIEW STATION,SUAE,0,0,,SHP,0
-2021-02-17,18:00,Wednesday,FINCH STATION,TUSC,0,0,N,YU,5736
-2021-02-17,18:06,Wednesday,SHERBOURNE STATION,MUNCA,0,0,,BD,0
-2021-02-17,18:08,Wednesday,BLOOR STATION,MUIRS,0,0,,YU,0
-2021-02-17,19:03,Wednesday,BROADVIEW STATION,EUDO,4,8,E,BD,5124
-2021-02-17,19:18,Wednesday,VICTORIA PARK STATION,PUMST,0,0,W,BD,0
-2021-02-17,19:44,Wednesday,ST GEORGE YU STATION,MUSAN,3,6,N,YU,5676
-2021-02-17,19:47,Wednesday,ST ANDREW STATION,MUSAN,3,6,N,YU,5676
-2021-02-17,19:51,Wednesday,KENNEDY BD STATION,MUTO,3,8,W,BD,5030
-2021-02-17,19:55,Wednesday,ST GEORGE YU STATION,TUSUP,4,7,N,YU,5676
-2021-02-17,19:58,Wednesday,BLOOR STATION,SUUT,0,0,S,YU,5526
-2021-02-17,20:35,Wednesday,BAYVIEW STATION,SUO,0,0,,SHP,0
-2021-02-17,21:01,Wednesday,QUEEN STATION,MUIRS,0,0,,YU,0
-2021-02-17,21:15,Wednesday,FINCH STATION,SUDP,0,0,N,YU,5641
-2021-02-17,21:34,Wednesday,DUPONT STATION,MUIS,0,0,,YU,0
-2021-02-17,21:56,Wednesday,ST CLAIR STATION,SUUT,7,12,N,YU,5521
-2021-02-17,22:00,Wednesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-02-17,22:08,Wednesday,MAIN STREET STATION,MUIS,0,0,,BD,0
-2021-02-17,22:55,Wednesday,MAIN STREET STATION,MUIE,0,0,,BD,0
-2021-02-18,00:40,Thursday,BESSARION STATION,TUMVS,5,11,E,SHP,6171
-2021-02-18,01:24,Thursday,SHEPPARD WEST STATION,MUIS,0,0,,YU,0
-2021-02-18,01:28,Thursday,UNION STATION,SUDP,0,0,N,YU,6011
-2021-02-18,01:38,Thursday,KING STATION,MUPAA,3,8,N,YU,5796
-2021-02-18,02:35,Thursday,HIGHWAY 407 STATION,MUIS,0,0,,YU,0
-2021-02-18,06:27,Thursday,YORKDALE STATION,SUO,0,0,N,YU,5651
-2021-02-18,07:16,Thursday,FINCH STATION,MUSC,0,0,S,YU,5846
-2021-02-18,07:20,Thursday,OSGOODE STATION,MUIR,0,0,,YU,0
-2021-02-18,07:40,Thursday,KEELE STATION,TUS,4,8,W,BD,5251
-2021-02-18,07:45,Thursday,KENNEDY BD STATION,EUTR,4,8,W,BD,5104
-2021-02-18,08:34,Thursday,ROSEDALE STATION,MUATC,6,9,S,YU,5831
-2021-02-18,08:41,Thursday,KEELE STATION,TUS,4,8,E,BD,5180
-2021-02-18,09:54,Thursday,GLENCAIRN STATION,MUNCA,0,0,,YU,0
-2021-02-18,10:25,Thursday,DONLANDS STATION,MUIR,13,17,W,BD,5207
-2021-02-18,10:40,Thursday,DAVISVILLE STATION,EUOE,4,7,S,YU,5791
-2021-02-18,10:50,Thursday,FINCH STATION,MUSAN,3,6,S,YU,5961
-2021-02-18,11:15,Thursday,SUMMERHILL STATION,SUDP,0,0,S,YU,5851
-2021-02-18,11:54,Thursday,WELLESLEY STATION,MUPAA,3,6,S,YU,5496
-2021-02-18,12:12,Thursday,MAIN STREET STATION,MUI,20,24,W,BD,5207
-2021-02-18,12:13,Thursday,LAWRENCE WEST STATION,MUIR,0,0,S,YU,5541
-2021-02-18,12:18,Thursday,VAUGHAN MC STATION,TUNIP,3,6,S,YU,5656
-2021-02-18,12:55,Thursday,KIPLING STATION,PUMEL,0,0,,BD,0
-2021-02-18,13:17,Thursday,SCARBOROUGH CTR STATIO,TRO,9,15,S,SRT,3010
-2021-02-18,13:39,Thursday,BLOOR STATION,PUMEL,0,0,,YU,0
-2021-02-18,14:07,Thursday,DAVISVILLE STATION,SUDP,0,0,N,YU,5881
-2021-02-18,14:15,Thursday,SCARBOROUGH CTR STATIO,ERTC,27,33,S,SRT,3010
-2021-02-18,15:25,Thursday,LINE 3 SCARBOROUGH RT,TRST,0,0,,SRT,3000
-2021-02-18,15:40,Thursday,YONGE UNIVERSITY LINE,TUST,0,0,S,YU,6031
-2021-02-18,15:47,Thursday,WELLESLEY STATION,SUDP,5,8,N,YU,5656
-2021-02-18,15:54,Thursday,WELLESLEY STATION,SUO,0,0,N,YU,6006
-2021-02-18,16:02,Thursday,LAWRENCE WEST STATION,SUDP,0,0,N,YU,5526
-2021-02-18,16:24,Thursday,VAUGHAN MC STATION,TUNIP,3,6,S,YU,5901
-2021-02-18,16:33,Thursday,NORTH YORK CTR STATION,SUDP,0,0,N,YU,5826
-2021-02-18,16:38,Thursday,NORTH YORK CTR STATION,MUPAA,6,9,N,YU,5641
-2021-02-18,16:39,Thursday,SHEPPARD STATION,SUAP,0,0,N,YU,5766
-2021-02-18,16:42,Thursday,SHEPPARD-YONGE STATION,SUO,17,22,E,SHP,6191
-2021-02-18,16:59,Thursday,BLOOR DANFORTH SUBWAY,TUST,0,0,W,BD,5091
-2021-02-18,17:16,Thursday,QUEEN STATION,SUDP,0,0,N,YU,5391
-2021-02-18,17:40,Thursday,LAWRENCE STATION,MUPAA,0,0,S,YU,5976
-2021-02-18,17:48,Thursday,SHERBOURNE STATION,MUNCA,0,0,,BD,0
-2021-02-18,18:49,Thursday,FINCH STATION,MUIRS,0,0,,YU,0
-2021-02-18,19:02,Thursday,CHESTER STATION,MUD,5,9,E,BD,5307
-2021-02-18,19:27,Thursday,EGLINTON STATION (LEAV,PUSIS,8,11,S,YU,5816
-2021-02-18,20:19,Thursday,EGLINTON STATION,MUIS,0,0,N,YU,5846
-2021-02-18,20:23,Thursday,SCARBOROUGH CTR STATIO,SRO,0,0,,SRT,0
-2021-02-18,22:00,Thursday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-02-18,22:04,Thursday,WARDEN STATION,PUSIS,0,0,W,BD,5283
-2021-02-18,23:00,Thursday,YONGE UNIVERSITY LINE,MUO,0,0,,YU,0
-2021-02-18,23:05,Thursday,WOODBINE STATION,MUPAA,0,0,E,BD,5174
-2021-02-18,23:19,Thursday,BLOOR STATION,SUDP,0,0,S,YU,6136
-2021-02-19,00:14,Friday,KING STATION,SUDP,0,0,S,YU,5816
-2021-02-19,01:35,Friday,SPADINA BD STATION,MUPAA,0,0,E,BD,5207
-2021-02-19,01:55,Friday,UNION STATION,SUO,0,0,,YU,0
-2021-02-19,02:00,Friday,SCARBOROUGH RAPID TRAN,TRST,0,0,,SRT,0
-2021-02-19,02:02,Friday,VAUGHAN MC STATION,SUO,0,0,,YU,0
-2021-02-19,02:24,Friday,KENNEDY BD STATION,MUIS,0,0,,BD,5111
-2021-02-19,02:32,Friday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-02-19,03:00,Friday,YONGE UNIVERSITY LINE,TUST,0,0,,YU,5761
-2021-02-19,05:41,Friday,OSGOODE STATION,PUTWZ,0,0,S,YU,5761
-2021-02-19,05:54,Friday,QUEEN'S PARK STATION,MUATC,4,9,S,YU,6001
-2021-02-19,06:04,Friday,WARDEN STATION,PUSIS,0,0,W,BD,5134
-2021-02-19,06:05,Friday,EGLINTON STATION,EUYRD,6,11,N,YU,5466
-2021-02-19,06:33,Friday,BLOOR STATION,SUDP,11,14,N,YU,5491
-2021-02-19,06:50,Friday,FINCH STATION,PUMST,0,0,,YU,0
-2021-02-19,06:56,Friday,BAY STATION,EUDO,6,11,E,BD,5059
-2021-02-19,07:02,Friday,FINCH STATION,MUSC,0,0,N,YU,5846
-2021-02-19,07:12,Friday,SPADINA BD STATION,MUD,9,13,W,BD,5283
-2021-02-19,07:12,Friday,VAUGHAN MC STATION,MUIR,3,6,S,YU,6066
-2021-02-19,09:45,Friday,SHERBOURNE STATION,MUIRS,0,0,E,BD,0
-2021-02-19,09:55,Friday,COXWELL STATION,TUS,5,9,E,BD,5069
-2021-02-19,10:05,Friday,VICTORIA PARK STATION,EUNT,6,10,W,BD,5028
-2021-02-19,10:07,Friday,VICTORIA PARK STATION,EUOE,0,0,W,BD,5063
-2021-02-19,11:14,Friday,SUMMERHILL STATION,EUTL,8,11,S,YU,6041
-2021-02-19,11:16,Friday,QUEEN STATION,MUO,0,0,,YU,0
-2021-02-19,11:24,Friday,VAUGHAN MC STATION,MUI,3,6,S,YU,5756
-2021-02-19,12:20,Friday,DUFFERIN STATION,MUIRS,0,0,,BD,0
-2021-02-19,13:11,Friday,DUNDAS WEST STATION,MUIS,0,0,,BD,0
-2021-02-19,13:26,Friday,WARDEN STATION,SUUT,5,9,E,BD,5208
-2021-02-19,13:31,Friday,OSGOODE STATION,MUPAA,0,0,N,YU,5546
-2021-02-19,14:13,Friday,LAWRENCE WEST STATION,SUDP,5,8,N,YU,6021
-2021-02-19,14:45,Friday,SPADINA BD STATION,SUDP,3,7,W,BD,5256
-2021-02-19,14:48,Friday,GLENCAIRN STATION,SUO,0,0,,YU,0
-2021-02-19,15:21,Friday,QUEEN STATION,SUDP,0,0,,YU,0
-2021-02-19,15:50,Friday,FINCH STATION,MUSAN,0,0,N,YU,5756
-2021-02-19,15:55,Friday,BATHURST STATION,MUIRS,0,0,,BD,0
-2021-02-19,15:55,Friday,FINCH STATION,MUIS,0,0,,YU,0
-2021-02-19,16:20,Friday,WARDEN STATION,MUTO,4,8,W,BD,5197
-2021-02-19,16:31,Friday,CASTLE FRANK STATION,MUPAA,0,0,E,BD,5208
-2021-02-19,16:41,Friday,ISLINGTON STATION,PUMEL,0,0,,BD,0
-2021-02-19,16:56,Friday,HIGH PARK STATION,MUI,13,17,W,BD,5104
-2021-02-19,17:08,Friday,DUNDAS STATION,SUDP,6,9,S,YU,5976
-2021-02-19,17:15,Friday,DUNDAS STATION,SUDP,0,0,S,YU,5691
-2021-02-19,17:21,Friday,WARDEN STATION,MUIS,5,9,W,BD,5142
-2021-02-19,17:23,Friday,BESSARION STATION,TUOS,4,9,E,SHP,6171
-2021-02-19,17:47,Friday,KIPLING STATION,SUDP,0,0,E,BD,5208
-2021-02-19,17:53,Friday,WELLESLEY STATION,SUDP,0,0,N,YU,5541
-2021-02-19,17:59,Friday,ROSEDALE STATION,SUAP,4,7,N,YU,5446
-2021-02-19,18:34,Friday,WELLESLEY STATION,SUUT,12,15,N,YU,6121
-2021-02-19,18:44,Friday,QUEEN STATION,SUDP,0,0,S,YU,5526
-2021-02-19,19:21,Friday,VAUGHAN MC STATION,MUIS,0,0,,YU,0
-2021-02-19,19:33,Friday,MAIN STREET STATION,SUDP,0,0,,BD,0
-2021-02-19,20:06,Friday,DUNDAS STATION,MUPAA,0,0,S,YU,5396
-2021-02-19,21:07,Friday,MIDLAND STATION,SRAP,13,20,W,SRT,3018
-2021-02-19,21:10,Friday,GREENWOOD STATION,SUDP,3,9,W,BD,5058
-2021-02-19,22:00,Friday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-02-19,22:46,Friday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-02-19,23:13,Friday,FINCH STATION,MUIR,5,10,S,YU,5691
-2021-02-19,23:15,Friday,MCCOWAN STATION,MRUIR,7,14,N,SRT,3007
-2021-02-20,00:24,Saturday,EGLINTON WEST STATION,MUIS,0,0,,YU,0
-2021-02-20,00:37,Saturday,ST ANDREW STATION,SUDP,3,8,N,YU,5831
-2021-02-20,00:45,Saturday,VAUGHAN MC STATION,MUATC,7,12,S,YU,5666
-2021-02-20,00:57,Saturday,SUMMERHILL STATION,SUDP,4,9,N,YU,5786
-2021-02-20,01:20,Saturday,KENNEDY BD STATION,PUSCR,6,12,W,BD,5047
-2021-02-20,02:08,Saturday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-02-20,02:15,Saturday,MAIN STREET STATION,SUDP,0,0,E,BD,0
-2021-02-20,06:07,Saturday,FINCH STATION,MUSAN,5,10,S,YU,5696
-2021-02-20,06:40,Saturday,VAUGHAN MC STATION,MUATC,10,20,S,YU,5511
-2021-02-20,06:56,Saturday,FINCH STATION,SUDP,0,0,,YU,0
-2021-02-20,07:12,Saturday,VAUGHAN MC STATION,MUIRS,0,0,,YU,0
-2021-02-20,07:48,Saturday,COLLEGE STATION,SUDP,0,0,,YU,0
-2021-02-20,08:50,Saturday,BROADVIEW STATION,MUDD,3,8,E,BD,5025
-2021-02-20,09:14,Saturday,SUMMERHILL STATION,SUO,4,9,N,YU,6026
-2021-02-20,09:21,Saturday,WARDEN STATION,MUIRS,0,0,,BD,0
-2021-02-20,09:23,Saturday,FINCH WEST STATION,SUO,5,10,N,YU,5646
-2021-02-20,09:38,Saturday,ROSEDALE STATION,MUSC,0,0,N,YU,5786
-2021-02-20,09:56,Saturday,ROSEDALE STATION,MUSC,0,0,N,YU,6061
-2021-02-20,10:14,Saturday,ST CLAIR WEST STATION,SUDP,5,10,S,YU,6086
-2021-02-20,10:47,Saturday,SHEPPARD WEST STATION,EUTR,5,10,S,YU,5981
-2021-02-20,10:53,Saturday,BROADVIEW STATION,MUPAA,0,0,W,BD,5089
-2021-02-20,11:02,Saturday,SHERBOURNE STATION,MUPAA,0,0,E,BD,5333
-2021-02-20,11:36,Saturday,PIONEER VILLAGE STATIO,SUDP,0,0,,YU,0
-2021-02-20,12:06,Saturday,GREENWOOD PORTAL (EXIT,EUSC,0,0,E,BD,5319
-2021-02-20,13:13,Saturday,FINCH STATION,MUPAA,0,0,S,YU,5741
-2021-02-20,13:34,Saturday,BAY STATION,MUIS,0,0,,BD,0
-2021-02-20,13:35,Saturday,ST CLAIR STATION,SUDP,0,0,N,YU,5676
-2021-02-20,14:21,Saturday,VAUGHAN MC STATION,MUATC,9,12,S,YU,5666
-2021-02-20,14:57,Saturday,VICTORIA PARK STATION,MUDD,12,16,W,BD,5260
-2021-02-20,16:17,Saturday,QUEEN STATION,MUIS,0,0,S,YU,0
-2021-02-20,16:18,Saturday,MAIN STREET STATION,MUIS,0,0,E,BD,0
-2021-02-20,16:33,Saturday,EGLINTON STATION,MUSAN,3,6,N,YU,5941
-2021-02-20,16:57,Saturday,ROYAL YORK STATION,SUDP,3,7,E,BD,5151
-2021-02-20,17:03,Saturday,COXWELL STATION,TUNIP,3,7,E,BD,5174
-2021-02-20,17:15,Saturday,SUMMERHILL STATION,MUIRS,0,0,,YU,0
-2021-02-20,17:17,Saturday,SHEPPARD-YONGE STATION,TUSC,0,0,W,SHP,6146
-2021-02-20,17:24,Saturday,GREENWOOD STATION,SUDP,0,0,E,BD,5256
-2021-02-20,17:44,Saturday,EGLINTON STATION,MUIS,0,0,,YU,0
-2021-02-20,17:53,Saturday,BLOOR STATION,MUIRS,0,0,S,YU,0
-2021-02-20,18:40,Saturday,MAIN STREET STATION,TUSC,7,11,W,BD,5260
-2021-02-20,18:56,Saturday,EGLINTON STATION,MUIRS,0,0,N,YU,5676
-2021-02-20,19:34,Saturday,WARDEN STATION,SUAP,3,8,W,BD,5104
-2021-02-20,19:37,Saturday,HIGHWAY 407 STATION,MUATC,8,13,S,YU,5666
-2021-02-20,20:45,Saturday,DUPONT STATION,MUDD,3,8,S,YU,5881
-2021-02-20,22:00,Saturday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-02-20,22:26,Saturday,EGLINTON STATION,MUIRS,0,0,,YU,0
-2021-02-20,22:43,Saturday,OLD MILL STATION,MUIS,0,0,E,BD,0
-2021-02-20,22:49,Saturday,DUNDAS STATION,MUIRS,0,0,N,YU,0
-2021-02-21,00:40,Sunday,MCCOWAN STATION,MRUIR,5,10,S,SRT,3018
-2021-02-21,01:46,Sunday,MAIN STREET STATION,MUIS,0,0,,BD,0
-2021-02-21,02:32,Sunday,NORTH YORK CTR STATION,SUDP,0,0,,YU,0
-2021-02-21,02:37,Sunday,FINCH STATION,SUDP,0,0,,YU,0
-2021-02-21,07:14,Sunday,SPADINA BD STATION,MUIS,0,0,,BD,0
-2021-02-21,08:24,Sunday,SHEPPARD WEST STATION,MUATC,6,11,N,YU,6036
-2021-02-21,10:04,Sunday,FINCH STATION,EUSC,0,0,S,YU,6036
-2021-02-21,11:20,Sunday,SPADINA BD STATION,MUIS,0,0,,BD,0
-2021-02-21,12:28,Sunday,LAWRENCE STATION,EUSC,0,0,N,YU,5836
-2021-02-21,14:44,Sunday,BATHURST STATION,PUTDN,13,17,W,BD,5053
-2021-02-21,15:11,Sunday,FINCH STATION,MUIRS,0,0,,YU,0
-2021-02-21,15:58,Sunday,CHESTER STATION,MUPAA,5,9,W,BD,5154
-2021-02-21,16:57,Sunday,BROADVIEW STATION,MUIS,0,0,,BD,0
-2021-02-21,17:10,Sunday,EGLINTON STATION,MUIS,5,9,N,YU,5756
-2021-02-21,17:44,Sunday,KEELE STATION,MUSC,0,0,W,BD,5103
-2021-02-21,18:18,Sunday,DUNDAS STATION,MUIS,0,0,N,YU,0
-2021-02-21,19:07,Sunday,WARDEN STATION,MUIS,0,0,,BD,0
-2021-02-21,19:46,Sunday,FINCH WEST STATION,MUPAA,4,9,S,YU,5556
-2021-02-21,19:50,Sunday,ST GEORGE BD STATION,MUPAA,0,0,W,BD,5010
-2021-02-21,20:16,Sunday,SPADINA YUS STATION,SUDP,3,8,S,YU,6121
-2021-02-21,20:41,Sunday,DUPONT STATION,MUPAA,0,0,S,YU,5861
-2021-02-21,21:07,Sunday,WARDEN STATION,MUIS,0,0,E,BD,0
-2021-02-21,21:15,Sunday,UNION STATION,SUUT,4,9,N,YU,5766
-2021-02-21,21:39,Sunday,MUSEUM STATION,MUIS,0,0,S,YU,0
-2021-02-21,21:53,Sunday,WARDEN STATION,TUO,0,0,W,BD,5159
-2021-02-21,22:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-02-21,22:00,Sunday,DUNDAS STATION,SUDP,3,8,N,YU,5971
-2021-02-21,22:27,Sunday,SPADINA BD STATION,MUPAA,0,0,E,BD,5367
-2021-02-21,23:22,Sunday,UNION STATION,MUIRS,0,0,,YU,0
-2021-02-21,23:52,Sunday,KENNEDY BD STATION,SUDP,3,7,E,BD,5331
-2021-02-22,00:22,Monday,BLOOR STATION,SUO,0,0,,YU,0
-2021-02-22,00:32,Monday,DUNDAS STATION,SUDP,3,8,N,YU,6086
-2021-02-22,01:41,Monday,YONGE BD STATION,MUPAA,4,11,E,BD,5029
-2021-02-22,01:50,Monday,WELLESLEY STATION,SUUT,0,0,S,YU,0
-2021-02-22,01:56,Monday,KIPLING STATION,SUDP,0,0,,BD,0
-2021-02-22,06:19,Monday,OLD MILL STATION,TUOS,0,0,E,BD,5283
-2021-02-22,06:27,Monday,SPADINA YUS STATION,SUDP,0,0,N,YU,5781
-2021-02-22,06:56,Monday,FINCH STATION,MUSC,4,7,S,YU,6001
-2021-02-22,06:59,Monday,ROYAL YORK STATION,MUSC,0,0,E,BD,5336
-2021-02-22,07:12,Monday,KEELE STATION,TUOS,0,0,W,BD,5331
-2021-02-22,07:48,Monday,WILSON STATION,MUATC,3,6,S,YU,5671
-2021-02-22,07:50,Monday,YORK MILLS STATION,TUMVS,4,7,S,YU,5971
-2021-02-22,08:27,Monday,BICHMOUNT DIVISION,MUIE,0,0,,,0
-2021-02-22,09:01,Monday,KEELE STATION,MUSC,0,0,W,BD,5170
-2021-02-22,09:18,Monday,EGLINTON WEST STATION,MUPAA,0,0,N,YU,5136
-2021-02-22,12:10,Monday,MAIN STREET STATION,MUIS,0,0,W,BD,5333
-2021-02-22,12:15,Monday,SHEPPARD WEST STATION,SUO,0,0,,YU,0
-2021-02-22,13:11,Monday,YONGE BD STATION,MUIS,0,0,,BD,0
-2021-02-22,13:13,Monday,WELLESLEY STATION,SUO,0,0,,YU,0
-2021-02-22,13:33,Monday,VAUGHAN MC STATION,MUTO,3,6,S,YU,5941
-2021-02-22,13:35,Monday,HIGHWAY 407 STATION,MUPAA,3,6,S,YU,5794
-2021-02-22,14:52,Monday,WILSON STATION,PUMEL,0,0,,YU,0
-2021-02-22,15:08,Monday,MUSEUM STATION,PUMEL,0,0,,YU,0
-2021-02-22,16:33,Monday,UNION STATION,SUDP,0,0,,YU,0
-2021-02-22,17:12,Monday,LAWRENCE WEST STATION,EUBO,3,6,S,YU,6071
-2021-02-22,17:21,Monday,QUEEN'S PARK STATION,SUO,3,18,N,YU,6551
-2021-02-22,17:49,Monday,UNION STATION,MUIS,0,0,,YU,0
-2021-02-22,17:52,Monday,EGLINTON STATION (LEAV,TUMVS,0,0,N,YU,5576
-2021-02-22,19:07,Monday,VAUGHAN MC STATION,SUG,0,0,S,YU,6021
-2021-02-22,19:18,Monday,VAUGHAN MC STATION,SUG,3,6,N,YU,5486
-2021-02-22,19:21,Monday,SUMMERHILL STATION,TUOS,3,6,N,YU,5881
-2021-02-22,19:23,Monday,ST CLAIR WEST STATION,PUMEL,0,0,,YU,0
-2021-02-22,19:28,Monday,ST CLAIR WEST STATION,SUG,7,10,S,YU,6006
-2021-02-22,19:50,Monday,ST ANDREW STATION,SUO,3,12,S,YU,5946
-2021-02-22,19:57,Monday,EGLINTON WEST STATION,SUDP,5,8,N,YU,5691
-2021-02-22,21:23,Monday,ST CLAIR STATION,MUTO,0,0,,YU,0
-2021-02-22,22:00,Monday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-02-22,22:33,Monday,BLOOR STATION,SUAP,4,9,N,,6006
-2021-02-22,22:38,Monday,DOWNSVIEW PARK STATION,MUIRS,18,23,N,YU,5986
-2021-02-22,23:36,Monday,EGLINTON STATION,MUO,0,0,,,0
-2021-02-23,00:17,Tuesday,YORK UNIVERSITY STATIO,SUO,0,0,S,YU,5876
-2021-02-23,00:30,Tuesday,ST CLAIR STATION,SUAP,6,11,S,YU,6001
-2021-02-23,00:33,Tuesday,WARDEN STATION,MUD,0,0,E,BD,5289
-2021-02-23,01:28,Tuesday,SHEPPARD WEST STATION,MUI,17,22,S,YU,5941
-2021-02-23,01:37,Tuesday,ROSEDALE STATION,TUATC,6,11,S,YU,5551
-2021-02-23,01:38,Tuesday,VAUGHAN MC STATION,MUIS,0,0,,YU,0
-2021-02-23,01:48,Tuesday,WELLESLEY STATION,MUIS,0,0,,YU,0
-2021-02-23,02:09,Tuesday,VAUGHAN MC STATION,SUDP,0,0,,YU,0
-2021-02-23,02:14,Tuesday,FINCH STATION,MUIS,0,0,,YU,0
-2021-02-23,05:38,Tuesday,KENNEDY BD STATION,MUIE,0,0,,BD,0
-2021-02-23,06:49,Tuesday,LAWRENCE STATION,MUPAA,0,0,S,YU,5686
-2021-02-23,07:31,Tuesday,DAVISVILLE STATION,EUSC,0,0,S,YU,6041
-2021-02-23,07:46,Tuesday,WELLESLEY STATION,SUROB,4,7,S,YU,5471
-2021-02-23,09:53,Tuesday,DOWNSVIEW PARK STATION,SUDP,3,6,N,YU,5801
-2021-02-23,10:45,Tuesday,BROADVIEW STATION,PUMST,0,0,,BD,0
-2021-02-23,12:02,Tuesday,SPADINA YUS STATION,SUDP,4,7,N,YU,5756
-2021-02-23,13:05,Tuesday,COLLEGE STATION,SUDP,0,0,N,YU,5946
-2021-02-23,14:07,Tuesday,SCARBOROUGH CTR STATIO,SRO,0,0,,SRT,0
-2021-02-23,14:38,Tuesday,SUMMERHILL STATION,MUSC,0,0,N,YU,5736
-2021-02-23,14:54,Tuesday,BLOOR STATION,MUPAA,4,7,N,YU,5981
-2021-02-23,15:46,Tuesday,COLLEGE STATION,MUPAA,0,0,N,YU,5946
-2021-02-23,16:03,Tuesday,MIDLAND STATION,PRO,0,0,S,SRT,3000
-2021-02-23,16:31,Tuesday,VAUGHAN MC STATION,MUTO,4,7,S,YU,5901
-2021-02-23,16:32,Tuesday,DONLANDS STATION,MUO,4,8,W,BD,5197
-2021-02-23,16:33,Tuesday,BATHURST STATION,MUSAN,4,8,W,BD,5088
-2021-02-23,17:09,Tuesday,SHEPPARD STATION,MUIS,0,0,,YU,0
-2021-02-23,17:12,Tuesday,QUEEN STATION,MUIS,0,0,N,YU,5901
-2021-02-23,17:29,Tuesday,VICTORIA PARK STATION,MUIS,0,0,,BD,0
-2021-02-23,17:37,Tuesday,SCARBOROUGH CTR STATIO,PRO,0,0,,SRT,0
-2021-02-23,18:29,Tuesday,MAIN STREET STATION,MUIS,0,0,,BD,0
-2021-02-23,18:58,Tuesday,WOODBINE STATION,TUSC,0,0,E,BD,5367
-2021-02-23,19:16,Tuesday,ROSEDALE STATION,MUSC,3,6,N,YU,5771
-2021-02-23,20:10,Tuesday,SHEPPARD STATION,MUIS,0,0,,YU,0
-2021-02-23,20:40,Tuesday,KENNEDY BD STATION,MUO,7,14,W,BD,5208
-2021-02-23,20:53,Tuesday,ST PATRICK STATION,SUDP,7,10,N,YU,5521
-2021-02-23,21:29,Tuesday,WELLESLEY STATION,SUO,0,0,N,YU,5911
-2021-02-23,21:51,Tuesday,SHEPPARD-YONGE STATION,TUSC,0,0,E,SHP,6171
-2021-02-23,22:00,Tuesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-02-23,22:46,Tuesday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-02-23,23:00,Tuesday,FINCH STATION TO EGLIN,MUO,0,0,,YU,0
-2021-02-23,23:19,Tuesday,BLOOR STATION,SUO,4,9,N,YU,6056
-2021-02-24,00:23,Wednesday,YORK MILLS STATION,MUIE,0,0,,YU,0
-2021-02-24,01:36,Wednesday,SPADINA BD STATION,MUIS,0,0,E,BD,5180
-2021-02-24,05:29,Wednesday,WILSON STATION,MUATC,0,0,S,YU,5511
-2021-02-24,05:34,Wednesday,LESLIE STATION,TUMVS,3,8,W,SHP,6186
-2021-02-24,05:35,Wednesday,CHRISTIE STATION,MUIE,0,0,,BD,0
-2021-02-24,05:44,Wednesday,YORK MILLS STATION,TUOS,0,0,N,YU,5836
-2021-02-24,06:13,Wednesday,KENNEDY BD STATION,MUTO,4,8,W,BD,5061
-2021-02-24,06:36,Wednesday,WELLESLEY STATION,MUATC,4,7,S,YU,5821
-2021-02-24,07:05,Wednesday,ST ANDREW STATION,SUDP,4,7,N,YU,5646
-2021-02-24,07:38,Wednesday,UNION STATION,MUPAA,0,0,N,YU,5741
-2021-02-24,08:13,Wednesday,LAWRENCE EAST STATION,ERTC,7,12,N,SRT,3025
-2021-02-24,08:30,Wednesday,SCARBOROUGH CTR STATIO,ERCD,5,10,S,SRT,3010
-2021-02-24,08:34,Wednesday,WILSON STATION,MUTO,3,6,N,YU,5756
-2021-02-24,08:37,Wednesday,SPADINA BD STATION,MUIS,0,0,,BD,0
-2021-02-24,08:49,Wednesday,ROSEDALE STATION,MUSC,0,0,N,YU,5511
-2021-02-24,08:55,Wednesday,KENNEDY SRT STATION,ERCD,7,12,N,SRT,3025
-2021-02-24,09:22,Wednesday,KING STATION,SUDP,5,8,N,YU,5766
-2021-02-24,11:06,Wednesday,BAYVIEW STATION,PUSO,13,18,W,SHP,6186
-2021-02-24,11:12,Wednesday,LAWRENCE WEST STATION,MUATC,0,0,S,YU,6046
-2021-02-24,11:29,Wednesday,KEELE STATION,MUSC,0,0,W,BD,5006
-2021-02-24,11:44,Wednesday,SHEPPARD STATION,MUPAA,0,0,N,YU,5491
-2021-02-24,11:52,Wednesday,KING STATION,SUDP,7,10,N,YU,5746
-2021-02-24,12:03,Wednesday,YONGE BD STATION,MUPAA,5,9,W,BD,5355
-2021-02-24,12:21,Wednesday,YONGE BD STATION,SUDP,0,0,E,BD,5190
-2021-02-24,12:36,Wednesday,ISLINGTON STATION,MUI,17,20,E,BD,5137
-2021-02-24,12:47,Wednesday,YORK MILLS STATION,EUSC,0,0,N,YU,5751
-2021-02-24,13:44,Wednesday,BLOOR STATION,SUDP,0,0,S,YU,0
-2021-02-24,14:40,Wednesday,SHERBOURNE STATION,MUIS,0,0,E,BD,0
-2021-02-24,14:50,Wednesday,VICTORIA PARK STATION,SUDP,7,11,E,BD,5324
-2021-02-24,15:01,Wednesday,ST GEORGE YU STATION,EUDO,5,8,N,YU,5821
-2021-02-24,15:40,Wednesday,ST ANDREW STATION,MUIS,0,0,,YU,0
-2021-02-24,15:46,Wednesday,VAUGHAN MC STATION,EUDO,3,6,S,YU,5826
-2021-02-24,15:54,Wednesday,BLOOR STATION,SUUT,0,0,N,YU,5931
-2021-02-24,16:12,Wednesday,DAVISVILLE STATION,MUPAA,4,7,S,YU,6081
-2021-02-24,16:15,Wednesday,DON MILLS STATION,TUMVS,0,0,E,SHP,6171
-2021-02-24,16:41,Wednesday,YORKDALE STATION,EUBK,8,11,S,YU,6046
-2021-02-24,17:47,Wednesday,FINCH STATION,SUDP,19,22,S,YU,5456
-2021-02-24,18:40,Wednesday,ST CLAIR WEST STATION,MUPAA,3,6,N,YU,5426
-2021-02-24,18:40,Wednesday,FINCH STATION,MUTO,4,7,S,YU,5731
-2021-02-24,19:02,Wednesday,COXWELL STATION,SUO,0,0,,BD,0
-2021-02-24,19:05,Wednesday,KENNEDY BD STATION,SUDP,3,9,W,BD,5159
-2021-02-24,19:14,Wednesday,COLLEGE STATION,MUIS,0,0,,YU,0
-2021-02-24,19:39,Wednesday,FINCH STATION,SUDP,9,12,S,YU,5391
-2021-02-24,19:56,Wednesday,DON MILLS STATION,PUSWZ,0,0,E,SHP,6171
-2021-02-24,20:06,Wednesday,BROADVIEW STATION,MUIS,0,0,,BD,0
-2021-02-24,20:09,Wednesday,MAIN STREET STATION,MUDD,5,11,E,BD,5101
-2021-02-24,20:13,Wednesday,ST GEORGE YU STATION,MUIRS,0,0,,YU,0
-2021-02-24,20:16,Wednesday,OSGOODE STATION,MUPAA,0,0,N,YU,5956
-2021-02-24,20:25,Wednesday,OSGOODE STATION,SUDP,6,9,S,YU,5616
-2021-02-24,20:26,Wednesday,QUEEN STATION,SUDP,8,11,N,YU,5406
-2021-02-24,20:46,Wednesday,KENNEDY BD STATION,SUDP,7,14,W,BD,5159
-2021-02-24,20:48,Wednesday,LAWRENCE STATION,MUSC,0,0,N,YU,5941
-2021-02-24,21:00,Wednesday,FINCH STATION,PUMST,0,0,,YU,0
-2021-02-24,21:09,Wednesday,UNION STATION,MUIS,0,0,,YU,0
-2021-02-24,21:10,Wednesday,BLOOR STATION,MUIS,0,0,S,YU,5832
-2021-02-24,22:00,Wednesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-02-24,22:03,Wednesday,ST PATRICK STATION,SUDP,0,0,N,YU,5721
-2021-02-24,22:14,Wednesday,ST GEORGE BD STATION,SUUT,0,0,W,BD,5197
-2021-02-25,00:18,Thursday,WARDEN STATION,MUIS,0,0,,BD,0
-2021-02-25,00:28,Thursday,COLLEGE STATION,SUUT,12,17,S,YU,5761
-2021-02-25,01:32,Thursday,BLOOR STATION,SUUT,10,15,N,YU,5646
-2021-02-25,02:02,Thursday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-02-25,02:25,Thursday,WILSON STATION,MUIS,0,0,,YU,0
-2021-02-25,05:33,Thursday,FINCH STATION,EUOE,0,0,S,YU,6011
-2021-02-25,05:46,Thursday,DAVISVILLE STATION,SUUT,9,14,S,YU,5761
-2021-02-25,05:49,Thursday,KEELE STATION,MUO,5,10,W,BD,5355
-2021-02-25,06:06,Thursday,DUNDAS WEST STATION,PUTR,0,0,W,BD,5093
-2021-02-25,07:19,Thursday,WELLESLEY STATION,SUO,3,6,N,YU,5406
-2021-02-25,07:38,Thursday,ST CLAIR STATION,MUIS,0,0,,YU,0
-2021-02-25,07:47,Thursday,CASTLE FRANK STATION,SUDP,3,7,W,BD,5318
-2021-02-25,07:48,Thursday,BLOOR STATION,SUAP,0,0,S,YU,5976
-2021-02-25,08:29,Thursday,ISLINGTON STATION,PUMST,0,0,,BD,0
-2021-02-25,09:20,Thursday,FINCH STATION,MUSAN,3,6,S,YU,5811
-2021-02-25,10:58,Thursday,VAUGHAN MC STATION,PUMEL,0,0,,YU,0
-2021-02-25,11:06,Thursday,KIPLING STATION,MUTO,3,7,E,BD,5137
-2021-02-25,11:09,Thursday,UNION STATION,MUIR,13,16,N,YU,6051
-2021-02-25,12:30,Thursday,YORK MILLS STATION,MUIR,3,6,N,YU,5861
-2021-02-25,12:32,Thursday,CHRISTIE STATION,SUDP,5,9,W,BD,5093
-2021-02-25,13:11,Thursday,FINCH STATION,SUDP,3,6,S,YU,5401
-2021-02-25,13:24,Thursday,ST ANDREW STATION,SUDP,3,6,N,YU,5831
-2021-02-25,13:39,Thursday,BLOOR STATION,SUDP,0,0,S,YU,6066
-2021-02-25,13:46,Thursday,WELLESLEY STATION,SUDP,0,0,S,YU,5906
-2021-02-25,14:31,Thursday,KENNEDY BD STATION,SUDP,3,7,E,BD,5059
-2021-02-25,14:34,Thursday,QUEEN STATION,SUDP,5,8,N,YU,5916
-2021-02-25,14:48,Thursday,ROSEDALE STATION,MUSC,0,0,N,YU,5916
-2021-02-25,14:57,Thursday,DUNDAS WEST STATION,TUMVS,3,7,W,BD,5336
-2021-02-25,15:08,Thursday,OSGOODE STATION,SUDP,0,0,,YU,0
-2021-02-25,15:59,Thursday,VICTORIA PARK STATION,SUROB,0,0,,BD,0
-2021-02-25,16:28,Thursday,BLOOR STATION,SUDP,0,0,S,YU,5936
-2021-02-25,16:44,Thursday,SHEPPARD STATION,MUPAA,3,6,S,YU,6076
-2021-02-25,17:10,Thursday,HIGH PARK STATION,SUO,0,0,W,BD,5321
-2021-02-25,17:13,Thursday,ISLINGTON STATION,SUDP,0,0,W,BD,5364
-2021-02-25,18:06,Thursday,DUNDAS STATION,SUDP,0,0,N,YU,0
-2021-02-25,18:32,Thursday,KIPLING TO KENNEDY,TUS,6,10,E,BD,5017
-2021-02-25,19:32,Thursday,MAIN STREET STATION,SUDP,0,0,,BD,0
-2021-02-25,19:34,Thursday,NORTH YORK CTR STATION,SUDP,3,6,S,YU,5946
-2021-02-25,19:46,Thursday,WELLESLEY STATION,SUDP,0,0,N,YU,5871
-2021-02-25,19:50,Thursday,WOODBINE STATION,SUO,0,0,,BD,0
-2021-02-25,19:57,Thursday,CASTLE FRANK STATION,PUMEL,0,0,,BD,0
-2021-02-25,20:03,Thursday,UNION STATION,SUO,0,0,,YU,0
-2021-02-25,20:05,Thursday,DUNDAS STATION,SUDP,0,0,S,YU,0
-2021-02-25,20:06,Thursday,LAWRENCE STATION,SUDP,0,0,S,YU,6056
-2021-02-25,20:14,Thursday,KIPLING STATION,SUDP,0,0,,BD,0
-2021-02-25,20:54,Thursday,WILSON YARD,MUATC,0,0,,YU,0
-2021-02-25,22:00,Thursday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-02-25,23:00,Thursday,YONGE UNIVERSITY LINE,MUO,0,0,,YU,0
-2021-02-25,23:02,Thursday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-02-25,23:32,Thursday,SPADINA YUS STATION,MUI,4,9,S,YU,6036
-2021-02-26,00:20,Friday,ST CLAIR WEST STATION,MUIR,5,10,N,YU,6121
-2021-02-26,01:03,Friday,ROYAL YORK STATION,SUDP,0,0,,BD,0
-2021-02-26,01:23,Friday,COXWELL STATION,SUDP,0,0,W,BD,0
-2021-02-26,02:10,Friday,FINCH WEST STATION,MUPAA,0,0,N,YU,6056
-2021-02-26,02:38,Friday,VAUGHAN MC STATION,MUIRS,0,0,,YU,0
-2021-02-26,07:35,Friday,NORTH YORK CTR STATION,MUPR1,57,60,S,YU,5661
-2021-02-26,09:29,Friday,FINCH STATION,TUSC,0,0,N,YU,5516
-2021-02-26,09:54,Friday,BATHURST STATION,MUIRS,0,0,,BD,0
-2021-02-26,10:53,Friday,YORK UNIVERSITY STATIO,MUD,5,8,S,YU,5431
-2021-02-26,11:58,Friday,KEELE STATION,SUDP,0,0,E,BD,5159
-2021-02-26,12:19,Friday,MAIN STREET STATION,PUMEL,0,0,,BD,0
-2021-02-26,12:28,Friday,BLOOR STATION,MUIS,0,0,S,YU,0
-2021-02-26,13:44,Friday,BLOOR STATION,MUIS,0,0,S,YU,6076
-2021-02-26,13:48,Friday,SHEPPARD-YONGE STATION,PUSTS,5,10,E,SHP,6151
-2021-02-26,15:09,Friday,MCCOWAN STATION,MRO,5,10,S,SRT,3000
-2021-02-26,15:23,Friday,ST CLAIR WEST STATION,MUSAN,3,6,N,YU,5906
-2021-02-26,15:39,Friday,DUPONT STATION,MUPAA,5,8,S,YU,5696
-2021-02-26,15:41,Friday,SPADINA BD STATION,MUI,5,9,E,BD,5056
-2021-02-26,15:54,Friday,COLLEGE STATION,SUUT,0,0,S,YU,5631
-2021-02-26,16:07,Friday,YONGE BD STATION,SUDP,0,0,,BD,0
-2021-02-26,16:09,Friday,QUEEN'S PARK STATION,MUIS,0,0,,YU,0
-2021-02-26,16:16,Friday,ST ANDREW STATION,SUDP,10,13,N,YU,6011
-2021-02-26,17:00,Friday,FINCH WEST STATION,PUMEL,0,0,,YU,0
-2021-02-26,18:09,Friday,EGLINTON WEST STATION,SUUT,7,10,S,YU,5816
-2021-02-26,18:11,Friday,WARDEN STATION,MUIRS,0,0,,BD,0
-2021-02-26,18:24,Friday,EGLINTON WEST STATION,SUPOL,4,7,N,YU,5391
-2021-02-26,18:40,Friday,CHESTER STATION,MUDD,7,11,E,BD,5174
-2021-02-26,18:53,Friday,WOODBINE STATION,SUO,0,0,,BD,0
-2021-02-26,19:02,Friday,DAVISVILLE STATION,EUSC,0,0,S,YU,5421
-2021-02-26,19:03,Friday,DONLANDS STATION,SUDP,4,8,E,BD,5155
-2021-02-26,19:32,Friday,MIDLAND STATION,MRPAA,0,0,N,SRT,3007
-2021-02-26,20:59,Friday,SPADINA BD STATION,SUDP,0,0,,BD,0
-2021-02-26,21:21,Friday,WILSON STATION,MUIS,0,0,,YU,0
-2021-02-26,21:32,Friday,ISLINGTON STATION,SUROB,0,0,,BD,0
-2021-02-26,21:50,Friday,ROYAL YORK STATION,MUIS,0,0,E,BD,0
-2021-02-26,22:00,Friday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-02-26,22:18,Friday,SHEPPARD WEST STATION,MUIS,0,0,,YU,0
-2021-02-26,22:34,Friday,WARDEN STATION,EUBK,7,14,E,BD,5159
-2021-02-26,22:51,Friday,CHESTER STATION,EUPI,7,14,W,BD,5032
-2021-02-26,23:05,Friday,BROADVIEW STATION,PUMEL,0,0,,BD,0
-2021-02-26,23:13,Friday,SUMMERHILL STATION,SUDP,5,10,S,YU,5391
-2021-02-26,23:31,Friday,BATHURST STATION,SUUT,13,20,E,BD,5168
-2021-02-27,00:58,Saturday,LAWRENCE WEST STATION,MUIS,0,0,,YU,0
-2021-02-27,01:29,Saturday,SHEPPARD WEST STATION,MUI,16,21,S,YU,5541
-2021-02-27,02:07,Saturday,KENNEDY BD STATION,MUI,0,0,W,BD,5286
-2021-02-27,02:19,Saturday,HIGHWAY 407 STATION,SUDP,0,0,S,YU,6061
-2021-02-27,06:00,Saturday,YONGE UNIVERSITY LINE,MUO,0,0,,YU,0
-2021-02-27,06:16,Saturday,CHRISTIE STATION,SUDP,4,9,E,BD,5283
-2021-02-27,08:06,Saturday,WILSON STATION,MUATC,3,8,N,YU,5551
-2021-02-27,08:15,Saturday,BATHURST STATION,MUIS,0,0,,BD,0
-2021-02-27,09:55,Saturday,SUMMERHILL STATION,MUIS,0,0,N,YU,0
-2021-02-27,13:19,Saturday,WARDEN STATION,MUPLC,0,0,,BD,0
-2021-02-27,13:52,Saturday,LAWRENCE WEST STATION,SUO,0,0,,YU,0
-2021-02-27,15:20,Saturday,VAUGHAN MC STATION,MUTO,9,14,S,YU,6016
-2021-02-27,15:33,Saturday,VAUGHAN MC STATION,TUNIP,5,10,S,YU,5946
-2021-02-27,15:37,Saturday,KENNEDY SRT STATION,SRUT,9,16,S,SRT,3018
-2021-02-27,16:13,Saturday,COLLEGE STATION,MUIS,0,0,N,YU,0
-2021-02-27,16:43,Saturday,ROSEDALE STATION,SUUT,5,9,N,YU,6001
-2021-02-27,17:02,Saturday,DAVISVILLE STATION,EUSC,0,0,N,YU,6001
-2021-02-27,17:26,Saturday,BAY STATION,SUAE,10,14,W,BD,5324
-2021-02-27,18:08,Saturday,EGLINTON STATION,MUIS,0,0,,YU,0
-2021-02-27,18:34,Saturday,BLOOR STATION,SUAP,0,0,S,YU,0
-2021-02-27,18:52,Saturday,COLLEGE STATION,SUDP,4,8,N,YU,6001
-2021-02-27,19:29,Saturday,SPADINA BD STATION,MUIS,0,0,W,BD,5358
-2021-02-27,20:07,Saturday,ST CLAIR STATION,MUIRS,0,0,N,YU,0
-2021-02-27,20:22,Saturday,WOODBINE STATION,SUROB,0,0,,BD,0
-2021-02-27,22:00,Saturday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-02-27,22:33,Saturday,COXWELL STATION,SUDP,0,0,E,BD,5366
-2021-02-27,23:32,Saturday,KENNEDY BD STATION,SUO,19,25,E,BD,5223
-2021-02-27,23:33,Saturday,KENNEDY SRT STATION,SRDP,18,23,S,SRT,3016
-2021-02-28,00:27,Sunday,MUSEUM STATION,EUATC,4,9,S,YU,5821
-2021-02-28,00:45,Sunday,KENNEDY SRT STATION,PRSA,0,0,S,SRT,3016
-2021-02-28,03:27,Sunday,FINCH STATION,MUIRS,0,0,,YU,0
-2021-02-28,07:17,Sunday,SPADINA BD STATION,PUMO,8,23,N,BD,4585
-2021-02-28,08:00,Sunday,YONGE UNIVERSITY LINE,MUO,0,0,,YU,0
-2021-02-28,08:02,Sunday,BLOOR TO COLLEGE,PUTWZ,8,0,S,YU,5696
-2021-02-28,08:05,Sunday,CASTLE FRANK STATION,PUTOE,0,0,E,BD,28
-2021-02-28,08:07,Sunday,BLOOR STATION,MUATC,18,0,S,YU,5596
-2021-02-28,09:32,Sunday,VICTORIA PARK STATION,PUMEL,0,0,,BD,0
-2021-02-28,09:48,Sunday,ROSEDALE STATION,MUSC,0,0,N,YU,5461
-2021-02-28,09:48,Sunday,KIPLING STATION,SUDP,4,8,E,BD,5018
-2021-02-28,09:54,Sunday,WELLESLEY STATION,SUDP,0,0,N,YU,5901
-2021-02-28,10:15,Sunday,ROSEDALE STATION,MUIS,0,0,,YU,0
-2021-02-28,10:25,Sunday,PIONEER VILLAGE STATIO,EUBK,4,9,S,YU,5436
-2021-02-28,11:28,Sunday,DON MILLS STATION,TUMVS,7,12,E,SHP,6141
-2021-02-28,12:34,Sunday,BLOOR STATION,SUDP,3,8,N,YU,5636
-2021-02-28,12:44,Sunday,BAYVIEW STATION,MUPAA,0,0,W,SHP,6146
-2021-02-28,12:46,Sunday,KING STATION,PUTDN,10,15,N,YU,5866
-2021-02-28,13:29,Sunday,GREENWOOD STATION,MUIS,0,0,,BD,0
-2021-02-28,15:26,Sunday,VAUGHAN MC STATION,SUG,4,8,S,YU,5696
-2021-02-28,16:53,Sunday,MUSEUM STATION,SUDP,4,8,N,YU,5906
-2021-02-28,17:10,Sunday,MAIN STREET STATION,SUO,0,0,,BD,0
-2021-02-28,18:03,Sunday,ST CLAIR WEST STATION,MUTO,3,7,S,YU,5906
-2021-02-28,18:31,Sunday,ST CLAIR STATION,MUIS,0,0,N,YU,0
-2021-02-28,19:55,Sunday,QUEEN STATION,SUDP,26,30,N,YU,5456
-2021-02-28,20:36,Sunday,DAVISVILLE STATION,MUSAN,5,9,S,YU,5456
-2021-02-28,21:10,Sunday,DUPONT STATION,SUUT,3,7,S,YU,5931
-2021-02-28,21:41,Sunday,ST CLAIR STATION,MUSAN,10,15,N,YU,5931
-2021-02-28,22:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-02-28,22:01,Sunday,KENNEDY BD STATION,MUPAA,0,0,E,BD,5101
-2021-02-28,22:09,Sunday,BAY STATION,MUIS,0,0,,BD,0
-2021-02-28,22:40,Sunday,EGLINTON STATION,MUIS,0,0,,YU,0
-2021-02-28,22:54,Sunday,WILSON STATION,MUATC,0,0,N,YU,6061
-2021-02-28,23:05,Sunday,FINCH STATION,PUSI,0,0,,YU,0
-2021-02-28,23:47,Sunday,EGLINTON WEST STATION,MUTO,5,10,S,YU,6066
-2021-03-01,00:23,Monday,EGLINTON STATION,PUTTP,8,13,N,YU,5511
-2021-03-01,00:33,Monday,DUFFERIN STATION,MUIS,0,0,,BD,0
-2021-03-01,01:13,Monday,SHERBOURNE STATION,MUIS,0,0,,BD,0
-2021-03-01,05:51,Monday,FINCH STATION,PUSI,3,8,N,YU,5676
-2021-03-01,05:51,Monday,SHEPPARD WEST STATION,PUDCS,31,0,N,YU,5611
-2021-03-01,06:21,Monday,WARDEN STATION,PUSI,0,0,W,BD,5112
-2021-03-01,06:26,Monday,WARDEN STATION,PUSI,0,0,W,BD,5198
-2021-03-01,06:28,Monday,VICTORIA PARK STATION,MUO,3,8,W,BD,5112
-2021-03-01,07:05,Monday,FINCH STATION,PUSI,0,0,N,YU,5476
-2021-03-01,10:12,Monday,FINCH STATION,PUSO,3,7,N,YU,5876
-2021-03-01,10:28,Monday,EGLINTON STATION,MUIS,0,0,,YU,0
-2021-03-01,10:39,Monday,OSSINGTON STATION,SUDP,11,15,W,BD,5343
-2021-03-01,10:54,Monday,ST GEORGE YUS STATION,MUPAA,0,0,N,YU,6126
-2021-03-01,11:18,Monday,FINCH STATION,MUSAN,4,7,S,YU,5526
-2021-03-01,12:25,Monday,SHEPPARD WEST STATION,EUBK,4,8,S,YU,5801
-2021-03-01,12:26,Monday,FINCH WEST STATION,MUPR1,81,84,N,YU,5906
-2021-03-01,12:58,Monday,RUNNYMEDE STATION,SUDP,0,0,E,BD,5307
-2021-03-01,13:01,Monday,BATHURST STATION,EUDO,11,15,W,BD,5313
-2021-03-01,13:17,Monday,KIPLING STATION,MUSAN,4,8,E,BD,5193
-2021-03-01,13:19,Monday,FINCH WEST STATION,MUIS,0,0,,YU,0
-2021-03-01,13:30,Monday,CHRISTIE STATION,MUPAA,3,7,E,BD,5121
-2021-03-01,14:33,Monday,ST GEORGE YUS STATION,SUO,0,0,,YU,0
-2021-03-01,15:12,Monday,VAUGHAN MC STATION,MUSAN,3,6,S,YU,5616
-2021-03-01,16:00,Monday,KEELE STATION,PUMST,0,0,,BD,0
-2021-03-01,16:07,Monday,ST GEORGE YUS STATION,MUSAN,3,6,S,YU,5456
-2021-03-01,16:20,Monday,QUEEN STATION,SUAP,0,0,S,YU,0
-2021-03-01,16:37,Monday,MAIN STREET STATION,PUMEL,0,0,,BD,0
-2021-03-01,16:39,Monday,UNION STATION,SUDP,0,0,,YU,0
-2021-03-01,16:43,Monday,COLLEGE STATION,PUMEL,0,0,,YU,0
-2021-03-01,16:54,Monday,ROSEDALE STATION,MUNCA,0,0,,YU,0
-2021-03-01,16:59,Monday,GREENWOOD STATION,SUUT,5,9,W,BD,5340
-2021-03-01,17:09,Monday,WARDEN STATION,MUPLC,0,0,,BD,0
-2021-03-01,17:12,Monday,FINCH STATION,PUSI,3,6,S,YU,5401
-2021-03-01,17:19,Monday,YONGE BD STATION,SUAP,0,0,,BD,0
-2021-03-01,17:26,Monday,QUEEN STATION,SUDP,3,6,S,YU,5656
-2021-03-01,17:48,Monday,YORK UNIVERSITY STATIO,SUDP,0,0,,YU,0
-2021-03-01,18:40,Monday,KENNEDY BD STATION,MUTO,3,7,W,BD,5317
-2021-03-01,18:59,Monday,COXWELL STATION,SUDP,3,7,W,BD,5104
-2021-03-01,19:39,Monday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-03-01,20:38,Monday,VICTORIA PARK STATION,PUMEL,0,0,W,BD,0
-2021-03-01,22:00,Monday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU/BD,0
-2021-03-01,22:53,Monday,WILSON STATION,MUATC,5,10,N,YU,5506
-2021-03-01,22:55,Monday,FINCH STATION,SUDP,0,0,N,YU,5676
-2021-03-01,23:35,Monday,VAUGHAN MC STATION,MUPAA,0,0,S,YU,5866
-2021-03-02,02:25,Tuesday,WILSON STATION,MUIS,0,0,,YU,0
-2021-03-02,02:39,Tuesday,VAUGHAN MC STATION,SUDP,0,0,,YU,0
-2021-03-02,06:00,Tuesday,FINCH STATION,MUPAA,0,0,S,YU,5576
-2021-03-02,06:19,Tuesday,MAIN STREET STATION,MUDD,10,14,E,BD,5160
-2021-03-02,06:23,Tuesday,GREENWOOD STATION,MUDD,6,10,E,BD,5359
-2021-03-02,06:53,Tuesday,GREENWOOD STATION,MUSC,0,0,E,BD,5261
-2021-03-02,07:39,Tuesday,EGLINTON WEST STATION,EUBK,3,6,N,YU,5431
-2021-03-02,09:24,Tuesday,SHEPPARD STATION,SUDP,3,6,N,YU,5501
-2021-03-02,09:40,Tuesday,BLOOR STATION,SUDP,3,6,S,YU,5566
-2021-03-02,10:08,Tuesday,UNION STATION,SUO,0,0,N,YU,5826
-2021-03-02,10:49,Tuesday,SHEPPARD STATION,MUSC,0,0,N,YU,5111
-2021-03-02,10:57,Tuesday,COXWELL STATION,SUO,4,8,W,BD,5077
-2021-03-02,11:13,Tuesday,YONGE BD STATION,SUDP,9,13,W,BD,5266
-2021-03-02,12:50,Tuesday,BATHURST STATION,MUIS,0,0,,BD,0
-2021-03-02,13:43,Tuesday,ST GEORGE YUS STATION,MUIS,0,0,S,YU,5391
-2021-03-02,13:43,Tuesday,VAUGHAN MC STATION,TUNIP,3,6,,YU,6046
-2021-03-02,13:46,Tuesday,KENNEDY TO MCCOWAN - L,PRS,5,10,N,SRT,3025
-2021-03-02,13:54,Tuesday,KIPLING STATION,MUIRS,0,0,,BD,0
-2021-03-02,15:18,Tuesday,UNION STATION,MUIS,0,0,,YU,0
-2021-03-02,15:20,Tuesday,FINCH STATION,MUIS,0,0,,YU,0
-2021-03-02,15:35,Tuesday,ST CLAIR STATION,MUPAA,3,6,N,YU,5646
-2021-03-02,16:15,Tuesday,ST CLAIR WEST STATION,SUAP,0,0,,YU,0
-2021-03-02,16:27,Tuesday,QUEEN'S PARK STATION,SUPD,4,7,N,YU,5721
-2021-03-02,17:00,Tuesday,CHRISTIE STATION,SUDP,3,7,W,BD,5190
-2021-03-02,17:52,Tuesday,QUEEN STATION,MUPLC,0,0,S,YU,5816
-2021-03-02,18:08,Tuesday,FINCH WEST STATION,PUMEL,0,0,,YU,0
-2021-03-02,18:28,Tuesday,WARDEN STATION,EULV,4,8,E,BD,5155
-2021-03-02,18:43,Tuesday,FINCH STATION,PUSNT,6,9,N,YU,5476
-2021-03-02,20:04,Tuesday,MAIN STREET STATION,SUDP,3,10,W,BD,5003
-2021-03-02,20:06,Tuesday,SHEPPARD STATION,MUIS,13,16,S,YU,5386
-2021-03-02,20:07,Tuesday,SPADINA BD STATION,SUDP,7,14,W,BD,5295
-2021-03-02,21:04,Tuesday,ST ANDREW STATION,TUATC,5,10,S,YU,6111
-2021-03-02,21:10,Tuesday,KIPLING STATION,TUMVS,0,0,W,BD,5106
-2021-03-02,21:32,Tuesday,DUNDAS STATION,MUIS,0,0,,YU,0
-2021-03-02,21:38,Tuesday,VAUGHAN MC STATION,MUSAN,3,8,S,YU,5961
-2021-03-02,21:49,Tuesday,WELLESLEY STATION,MUIS,0,0,N,YU,0
-2021-03-02,22:00,Tuesday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU/BD,0
-2021-03-02,23:00,Tuesday,DUNDAS STATION,MUI,21,26,S,YU,5956
-2021-03-02,23:00,Tuesday,FINCH TO EGLINTON STAT,MUO,0,0,B,YUS,0
-2021-03-03,00:14,Wednesday,ROYAL YORK STATION,MUPAA,3,10,E,BD,5292
-2021-03-03,00:47,Wednesday,ST CLAIR WEST STATION,MUPAA,0,0,N,YU,5461
-2021-03-03,01:26,Wednesday,SHEPPARD WEST STATION,MUIRS,0,0,S,YU,0
-2021-03-03,01:53,Wednesday,WILSON STATION,MUIS,0,0,,YU,0
-2021-03-03,01:56,Wednesday,UNION STATION,MUPAA,0,0,S,YU,5936
-2021-03-03,03:30,Wednesday,VAUGHAN MC STATION,MUIS,0,0,,YU,0
-2021-03-03,04:56,Wednesday,WILSON STATION,PUSSW,0,0,S,YU,0
-2021-03-03,06:10,Wednesday,WILSON STATION,PUSSW,5,8,S,YU,5486
-2021-03-03,06:13,Wednesday,DAVISVILLE STATION,MUSC,0,0,N,YU,5976
-2021-03-03,07:12,Wednesday,ROSEDALE STATION,MUSC,0,0,N,YU,5686
-2021-03-03,07:17,Wednesday,FINCH STATION,EUBK,3,6,S,YU,5436
-2021-03-03,08:17,Wednesday,ROSEDALE STATION,MUSC,0,0,N,YU,5426
-2021-03-03,08:46,Wednesday,SHEPPARD STATION,MUSC,4,7,S,YU,5421
-2021-03-03,10:57,Wednesday,LAWRENCE WEST STATION,EUNT,3,6,N,YU,5576
-2021-03-03,13:27,Wednesday,WELLESLEY STATION,MUIS,0,0,,YU,0
-2021-03-03,14:31,Wednesday,DAVISVILLE STATION,SUAP,0,0,S,YU,0
-2021-03-03,16:16,Wednesday,ROYAL YORK STATION,TUS,8,12,E,BD,5048
-2021-03-03,16:37,Wednesday,LAWRENCE WEST STATION,MUIR,14,17,S,YU,5976
-2021-03-03,17:46,Wednesday,WARDEN STATION,TUS,8,12,W,BD,5124
-2021-03-03,18:23,Wednesday,GREENWOOD STATION,TUO,3,7,W,BD,5263
-2021-03-03,19:06,Wednesday,ST CLAIR STATION,MUIRS,0,0,,YU,0
-2021-03-03,19:19,Wednesday,SPADINA BD STATION,MUD,6,13,W,BD,5119
-2021-03-03,20:03,Wednesday,LAWRENCE WEST STATION,MUSAN,5,8,S,YU,5931
-2021-03-03,20:04,Wednesday,LAWRENCE STATION,MUIRS,0,0,N,YU,5976
-2021-03-03,21:22,Wednesday,LESLIE STATION,MUNCA,0,0,,SHP,0
-2021-03-03,21:41,Wednesday,KIPLING STATION,MUIRS,0,0,,BD,0
-2021-03-03,21:42,Wednesday,FINCH STATION,MUATC,5,10,S,YU,5666
-2021-03-03,22:00,Wednesday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU/BD,0
-2021-03-03,22:06,Wednesday,BATHURST STATION,MUIS,0,0,W,BD,5106
-2021-03-03,22:51,Wednesday,KIPLING STATION,SUROB,0,0,,BD,0
-2021-03-03,22:54,Wednesday,WELLESLEY STATION,SUROB,0,0,S,YU,0
-2021-03-03,23:00,Wednesday,EGLINTON STATION TO FI,MUO,0,0,,YU,0
-2021-03-03,23:26,Wednesday,SHEPPARD-YONGE STATION,MUNOA,5,10,E,SHP,0
-2021-03-04,00:08,Thursday,WILSON STATION,PUTSM,14,19,S,YU,6116
-2021-03-04,00:23,Thursday,ST CLAIR WEST STATION,SUDP,9,14,N,YU,5836
-2021-03-04,01:28,Thursday,ROSEDALE STATION,MUSC,0,0,N,YU,5556
-2021-03-04,01:50,Thursday,WILSON STATION,MUIS,0,0,,YU,0
-2021-03-04,02:49,Thursday,VAUGHAN MC STATION,SUDP,0,0,,YU,0
-2021-03-04,05:35,Thursday,BAYVIEW STATION,MUNOA,7,0,E,SHP,6176
-2021-03-04,06:18,Thursday,FINCH STATION,EUSC,0,0,S,YU,6111
-2021-03-04,06:33,Thursday,ST CLAIR STATION,PUSTC,5,8,S,YU,6111
-2021-03-04,06:39,Thursday,BESSARION STATION,EUDO,4,9,W,SHP,6171
-2021-03-04,06:40,Thursday,ROSEDALE STATION,MUDD,3,6,N,YU,5786
-2021-03-04,06:45,Thursday,DON MILLS STATION,MUSC,5,10,W,SHP,6146
-2021-03-04,06:50,Thursday,ROSEDALE STATION,MUATC,6,9,S,YU,5496
-2021-03-04,08:05,Thursday,FINCH STATION,MUATC,3,6,S,YU,5661
-2021-03-04,08:41,Thursday,ROSEDALE STATION,EUSC,0,0,N,YU,5871
-2021-03-04,10:31,Thursday,LAWRENCE STATION,EUSC,0,0,N,YU,5746
-2021-03-04,10:36,Thursday,YORK MILLS STATION,MUSC,0,0,N,YU,5746
-2021-03-04,10:49,Thursday,BAY STATION,SUDP,0,0,E,BD,5193
-2021-03-04,11:05,Thursday,FINCH STATION,TUSC,0,0,S,YU,5421
-2021-03-04,11:10,Thursday,KIPLING STATION,PUMO,0,0,E,BD,5120
-2021-03-04,11:20,Thursday,ROSEDALE STATION,MUSC,3,6,N,YU,5871
-2021-03-04,12:02,Thursday,EGLINTON WEST STATION,PUMEL,0,0,,YU,0
-2021-03-04,13:03,Thursday,ISLINGTON STATION,TUMVS,0,0,W,BD,5324
-2021-03-04,13:59,Thursday,SHEPPARD-YONGE STATION,MUI,5,10,E,SHP,6171
-2021-03-04,15:54,Thursday,DUNDAS WEST STATION,SUUT,3,7,E,BD,5364
-2021-03-04,16:02,Thursday,OSSINGTON STATION,TUCC,0,0,E,BD,5111
-2021-03-04,16:19,Thursday,CASTLE FRANK STATION,SUUT,23,27,E,BD,5104
-2021-03-04,16:31,Thursday,WARDEN STATION,SUDP,3,7,W,BD,5119
-2021-03-04,17:35,Thursday,BATHURST STATION,SUDP,3,7,E,BD,5174
-2021-03-04,18:51,Thursday,FINCH STATION,EUAC,3,6,S,YU,5746
-2021-03-04,18:56,Thursday,LAWRENCE EAST STATION,SRDP,5,10,N,SRT,3017
-2021-03-04,20:00,Thursday,KIPLING STATION,SUO,0,0,,BD,0
-2021-03-04,20:06,Thursday,SHEPPARD WEST STATION,MUTO,3,6,N,YU,6026
-2021-03-04,22:00,Thursday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU/BD,0
-2021-03-04,23:00,Thursday,EGLINTON - FINCH STATI,MUO,0,0,B,YU,0
-2021-03-04,23:10,Thursday,ST ANDREW STATION,EUCA,15,20,S,YU,5831
-2021-03-05,00:00,Friday,BLOOR STATION,SUAP,0,0,,YU,0
-2021-03-05,00:31,Friday,YORK MILLS STATION,PUTOE,0,0,N,YU,18
-2021-03-05,00:41,Friday,ST GEORGE BD STATION,MUI,0,0,W,BD,5007
-2021-03-05,00:51,Friday,YORKDALE STATION,EUSC,0,0,S,YU,6001
-2021-03-05,02:13,Friday,KIPLING STATION,PUCSC,0,0,W,BD,5067
-2021-03-05,02:26,Friday,KENNEDY BD STATION,PUMEL,0,0,,BD,0
-2021-03-05,02:29,Friday,EGLINTON STATION,PUMO,0,0,,YU,0
-2021-03-05,05:43,Friday,DON MILLS STATION,MUSC,0,0,W,SHP,6156
-2021-03-05,05:50,Friday,DAVISVILLE STATION,MUPAA,0,0,S,YU,6061
-2021-03-05,06:02,Friday,EGLINTON WEST STATION,MUDD,0,0,S,YU,5806
-2021-03-05,06:11,Friday,FINCH STATION,PUSSW,3,6,S,YU,5461
-2021-03-05,06:35,Friday,OLD MILL STATION,MUSC,3,8,E,BD,5077
-2021-03-05,07:33,Friday,COLLEGE STATION,MUD,0,0,S,YU,5941
-2021-03-05,08:13,Friday,GREENWOOD STATION,MUSAN,3,7,W,BD,5362
-2021-03-05,08:45,Friday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-03-05,09:08,Friday,BEDFORD SUBSTATION,MUIE,0,0,,BD,0
-2021-03-05,09:28,Friday,COLLEGE STATION,SUDP,3,6,N,YU,5436
-2021-03-05,09:35,Friday,WELLESLEY STATION,MUIS,0,0,,YU,0
-2021-03-05,09:36,Friday,FINCH STATION,EUBK,3,6,S,YU,5386
-2021-03-05,09:42,Friday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-03-05,11:02,Friday,FINCH STATION,PUSSW,0,0,S,YU,5526
-2021-03-05,11:15,Friday,YORK MILLS STATION,TUSC,0,0,S,YU,6081
-2021-03-05,11:30,Friday,ST GEORGE BD STATION,SUDP,4,8,E,BD,5350
-2021-03-05,12:07,Friday,EGLINTON WEST STATION,MUPAA,3,6,N,YU,5451
-2021-03-05,12:15,Friday,MAIN STREET STATION,PUMEL,0,0,,BD,0
-2021-03-05,12:34,Friday,FINCH STATION,MUSC,0,0,N,YU,5771
-2021-03-05,13:09,Friday,BLOOR STATION,PUMST,0,0,,YU,0
-2021-03-05,13:35,Friday,KING STATION,MUIS,0,0,S,YU,0
-2021-03-05,13:58,Friday,VICTORIA PARK STATION,SUDP,0,0,,BD,0
-2021-03-05,14:27,Friday,DUFFERIN STATION,SUDP,3,7,E,BD,5334
-2021-03-05,14:53,Friday,ST CLAIR WEST STATION,PUMEL,0,0,,YU,0
-2021-03-05,15:10,Friday,GREENWOOD STATION,MUPR1,102,106,E,BD,5111
-2021-03-05,17:08,Friday,FINCH STATION,SUO,9,12,S,YU,5951
-2021-03-05,17:40,Friday,SPADINA BD STATION,SUAE,3,7,E,BD,5077
-2021-03-05,18:00,Friday,DUNDAS WEST STATION,SUDP,0,0,,BD,0
-2021-03-05,18:53,Friday,MUSEUM STATION,SUUT,0,0,N,YU,5756
-2021-03-05,18:56,Friday,DOWNSVIEW PARK STATION,MUIRS,0,0,,YU,0
-2021-03-05,19:00,Friday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-03-05,20:45,Friday,FINCH STATION,MUIS,0,0,,YU,0
-2021-03-05,21:01,Friday,OLD MILL STATION,EUNT,0,0,E,BD,5010
-2021-03-05,21:08,Friday,YORK UNIVERSITY STATIO,MUPAA,3,6,N,YU,5896
-2021-03-05,21:11,Friday,ST CLAIR STATION,PUTIJ,7,12,S,YU,5731
-2021-03-05,21:16,Friday,VICTORIA PARK STATION,MUIRS,3,10,W,BD,5109
-2021-03-05,22:00,Friday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU/BD,0
-2021-03-05,23:00,Friday,FINCH TO ST CLAIR STAT,MUO,0,0,B,YUS,0
-2021-03-05,23:22,Friday,EGLINTON STATION,TUCC,4,9,S,YU,5681
-2021-03-05,23:34,Friday,KING STATION,SUUT,6,11,N,YU,6021
-2021-03-06,02:32,Saturday,VAUGHAN MC STATION,SUDP,0,0,,YU,0
-2021-03-06,02:39,Saturday,VAUGHAN MC STATION,SUDP,26,0,N,YU,6011
-2021-03-06,02:42,Saturday,VAUGHAN MC STATION,MUIS,0,0,,YU,0
-2021-03-06,06:00,Saturday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU,0
-2021-03-06,06:31,Saturday,OLD MILL STATION,TUSC,4,9,E,BD,5077
-2021-03-06,07:15,Saturday,SHEPPARD-YONGE STATION,MUSC,0,0,E,SHP,6151
-2021-03-06,08:38,Saturday,SHERBOURNE STATION,SUDP,0,0,E,BD,5209
-2021-03-06,10:04,Saturday,DON MILLS STATION,SUDP,4,9,W,SHP,6151
-2021-03-06,10:23,Saturday,COXWELL STATION,MUSC,0,0,E,BD,5077
-2021-03-06,10:31,Saturday,VAUGHAN MC STATION,TUNIP,4,9,S,YU,5941
-2021-03-06,11:02,Saturday,UNION STATION,MUIS,0,0,,YU,0
-2021-03-06,12:17,Saturday,ST CLAIR STATION,PUSTC,6,11,S,YU,6086
-2021-03-06,14:16,Saturday,LAWRENCE WEST STATION,SUAP,0,0,,YU,0
-2021-03-06,14:23,Saturday,SPADINA BD STATION,MUD,4,8,W,BD,5297
-2021-03-06,14:57,Saturday,KENNEDY BD STATION,MUNOA,4,8,W,BD,5049
-2021-03-06,14:57,Saturday,SHEPPARD-YONGE STATION,MUSC,0,0,E,SHP,6151
-2021-03-06,15:23,Saturday,COLLEGE STATION,SUDP,3,8,N,YU,5446
-2021-03-06,16:18,Saturday,DUNDAS STATION,MUIRS,0,0,,YU,0
-2021-03-06,16:26,Saturday,OSSINGTON STATION,MUIS,0,0,,BD,0
-2021-03-06,16:55,Saturday,RUNNYMEDE STATION,SUDP,0,0,E,BD,5007
-2021-03-06,17:27,Saturday,MCCOWAN STATION,MRO,3,9,S,SRT,3024
-2021-03-06,17:31,Saturday,SHEPPARD-YONGE STATION,TUCC,3,8,W,SHP,6156
-2021-03-06,17:52,Saturday,ST CLAIR STATION,PUTTC,5,10,S,YU,5476
-2021-03-06,18:07,Saturday,ST CLAIR STATION,PUTTC,6,11,S,YU,5801
-2021-03-06,18:42,Saturday,ST CLAIR STATION,PUTTC,5,10,S,YU,5736
-2021-03-06,19:09,Saturday,SHEPPARD STATION,SUAE,0,0,,YU,0
-2021-03-06,19:37,Saturday,DUNDAS STATION,SUO,0,0,N,YU,5863
-2021-03-06,19:38,Saturday,WILSON STATION,SUDP,4,9,S,YU,5391
-2021-03-06,20:03,Saturday,COLLEGE STATION,SUDP,10,15,S,YU,5861
-2021-03-06,20:28,Saturday,LESLIE STATION,MUDD,3,8,E,SHP,6196
-2021-03-06,21:04,Saturday,BLOOR STATION,SUDP,4,9,N,YU,5616
-2021-03-06,21:23,Saturday,ROSEDALE STATION,MUATC,3,8,S,YU,5611
-2021-03-06,21:41,Saturday,ST CLAIR WEST STATION,SUDP,4,9,S,YU,5806
-2021-03-06,22:00,Saturday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU/BD,0
-2021-03-06,22:29,Saturday,SHEPPARD-YONGE STATION,MUSC,0,0,E,SHP,6181
-2021-03-06,22:34,Saturday,SHEPPARD-YONGE STATION,SUUT,3,8,E,SHP,6196
-2021-03-07,00:20,Sunday,ST GEORGE YUS STATION,SUUT,9,14,N,YU,6131
-2021-03-07,01:08,Sunday,YONGE AUTO ENTRANCE,MUIS,0,0,,BD,0
-2021-03-07,03:40,Sunday,KEELE YARD,SUG,0,0,E,BD,5020
-2021-03-07,07:53,Sunday,BROADVIEW STATION,MUSC,0,0,W,BD,5084
-2021-03-07,08:00,Sunday,WILSON STATION,EUYRD,6,16,S,YU,5986
-2021-03-07,08:00,Sunday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU,0
-2021-03-07,09:42,Sunday,ST CLAIR STATION,TUO,6,12,S,YU,6131
-2021-03-07,09:46,Sunday,KING STATION,SUO,4,9,S,YU,5506
-2021-03-07,10:15,Sunday,UNION STATION,SUDP,0,0,,YU,0
-2021-03-07,11:12,Sunday,SHERBOURNE STATION,MUDD,9,14,E,BD,5019
-2021-03-07,11:51,Sunday,SPADINA YUS STATION,MUPAA,4,9,S,YU,5391
-2021-03-07,12:56,Sunday,BAY STATION,SUUT,31,35,W,BD,5117
-2021-03-07,13:56,Sunday,KIPLING STATION,TUO,3,7,W,BD,5084
-2021-03-07,14:28,Sunday,VAUGHAN MC STATION,SUG,5,10,S,YU,5946
-2021-03-07,14:35,Sunday,DON MILLS STATION,MUIS,0,0,,SHP,0
-2021-03-07,14:39,Sunday,DAVISVILLE STATION,PUSTS,5,10,S,YU,5766
-2021-03-07,15:29,Sunday,YONGE BD STATION,SUO,0,0,,BD,0
-2021-03-07,16:35,Sunday,UNION STATION,MUIS,0,0,,YU,0
-2021-03-07,17:19,Sunday,ST CLAIR STATION,MUI,13,18,N,YU,5896
-2021-03-07,17:20,Sunday,QUEEN STATION,MUSAN,5,10,N,YU,6081
-2021-03-07,19:49,Sunday,KENNEDY BD STATION,MUI,4,8,E,BD,5306
-2021-03-07,20:03,Sunday,WILSON STATION,SUDP,5,10,S,YU,5826
-2021-03-07,21:18,Sunday,VAUGHAN MC STATION,SUDP,0,0,,YU,0
-2021-03-07,22:00,Sunday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU/BD,0
-2021-03-07,22:57,Sunday,BATHURST STATION,EUPI,6,10,E,BD,5010
-2021-03-08,01:14,Monday,OSGOODE STATION,SUDP,8,13,S,YU,5676
-2021-03-08,01:35,Monday,WARDEN STATION,MUIS,0,0,,BD,0
-2021-03-08,01:50,Monday,ISLINGTON STATION,MUPAA,0,0,W,BD,5169
-2021-03-08,01:54,Monday,YONGE BD STATION,TUO,0,0,E,BD,5174
-2021-03-08,02:24,Monday,KIPLING STATION,PUMEL,0,0,,BD,0
-2021-03-08,06:25,Monday,ROYAL YORK STATION,MUSC,0,0,E,BD,5161
-2021-03-08,07:04,Monday,DUNDAS STATION,SUDP,0,0,,YU,0
-2021-03-08,07:27,Monday,VICTORIA PARK STATION,MUD,3,7,E,BD,5151
-2021-03-08,07:48,Monday,BROADVIEW STATION,PUMEL,0,0,,BD,0
-2021-03-08,07:54,Monday,MAIN STREET STATION,MUSC,0,0,W,BD,5303
-2021-03-08,09:19,Monday,WARDEN STATION,MUIS,0,0,E,BD,0
-2021-03-08,10:19,Monday,EGLINTON STATION,TUO,3,6,N,YU,5601
-2021-03-08,10:22,Monday,BAY STATION,PUMO,0,0,,BD,0
-2021-03-08,11:06,Monday,LAWRENCE WEST STATION,SUO,3,6,S,YU,5456
-2021-03-08,13:11,Monday,BLOOR STATION,SUDP,3,8,N,YU,5916
-2021-03-08,13:17,Monday,CHRISTIE STATION,SUDP,0,0,,BD,0
-2021-03-08,13:47,Monday,WARDEN STATION,SUUT,3,6,E,BD,5006
-2021-03-08,15:27,Monday,FINCH STATION,SUG,3,6,S,YU,5536
-2021-03-08,15:28,Monday,MAIN STREET STATION,EUSC,0,0,W,BD,5276
-2021-03-08,15:30,Monday,OSSINGTON STATION,MUIS,0,0,,BD,0
-2021-03-08,15:31,Monday,MUSEUM STATION,SUDP,0,0,N,YU,5491
-2021-03-08,16:18,Monday,KENNEDY BD STATION,MUI,3,7,W,BD,5310
-2021-03-08,16:57,Monday,VAUGHAN MC STATION,MUSAN,3,6,S,YU,5646
-2021-03-08,19:30,Monday,ST ANDREW STATION,PUMEL,0,0,,YU,0
-2021-03-08,20:30,Monday,COXWELL STATION,SUDP,0,0,E,BD,5331
-2021-03-08,20:57,Monday,FINCH STATION,MUSC,0,0,S,YU,5536
-2021-03-08,22:00,Monday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU/BD,0
-2021-03-08,23:13,Monday,ISLINGTON STATION,SUDP,5,12,E,BD,5006
-2021-03-09,00:21,Tuesday,WELLESLEY STATION,MUPAA,6,11,N,YU,5676
-2021-03-09,01:56,Tuesday,VAUGHAN MC STATION,MUI,0,0,S,YU,0
-2021-03-09,02:48,Tuesday,VAUGHAN MC STATION,MUIS,0,0,,YU,0
-2021-03-09,05:08,Tuesday,DUNDAS STATION,MUNCA,0,0,,YU,0
-2021-03-09,06:18,Tuesday,DAVISVILLE YARD,PUTOE,0,0,,YU,0
-2021-03-09,07:17,Tuesday,ROSEDALE STATION,MUATC,3,6,S,YU,5386
-2021-03-09,07:45,Tuesday,ST CLAIR WEST STATION,MUIS,0,0,,YU,0
-2021-03-09,07:56,Tuesday,LAWRENCE WEST STATION,SUDP,4,7,S,YU,5936
-2021-03-09,08:55,Tuesday,UNION STATION,MUD,3,6,N,YU,6061
-2021-03-09,09:50,Tuesday,FINCH STATION,MUTO,3,6,S,YU,5641
-2021-03-09,10:17,Tuesday,DUNDAS STATION,MUIS,0,0,N,YU,0
-2021-03-09,14:31,Tuesday,VAUGHAN MC STATION,SUDP,14,17,N,YU,5766
-2021-03-09,14:37,Tuesday,YONGE BD STATION,PUSTS,0,0,W,BD,5368
-2021-03-09,14:52,Tuesday,COLLEGE STATION,SUUT,0,0,S,YU,5431
-2021-03-09,15:01,Tuesday,YONGE BD STATION,PUSTS,0,0,W,BD,5314
-2021-03-09,16:08,Tuesday,BESSARION STATION,MUSC,0,0,E,SHP,6151
-2021-03-09,17:04,Tuesday,FINCH STATION,SUDP,0,0,,YU,0
-2021-03-09,17:42,Tuesday,SHEPPARD WEST STATION,SUDP,19,22,S,YU,5761
-2021-03-09,19:28,Tuesday,SPADINA YUS STATION,MUIR,8,11,N,YU,5441
-2021-03-09,19:35,Tuesday,DOWNSVIEW PARK STATION,SUDP,32,35,N,YU,6006
-2021-03-09,20:02,Tuesday,BLOOR STATION,SUDP,12,15,N,YU,5936
-2021-03-09,20:11,Tuesday,FINCH STATION,EUNT,3,6,S,YU,6066
-2021-03-09,20:23,Tuesday,EGLINTON STATION,TUMVS,4,7,S,YU,5736
-2021-03-09,21:00,Tuesday,EGLINTON STATION,EUSC,0,0,N,YU,6001
-2021-03-09,21:28,Tuesday,DON MILLS STATION,PUMEL,0,0,W,SHP,6166
-2021-03-09,21:50,Tuesday,VICTORIA PARK STATION,SUDP,0,0,,BD,0
-2021-03-09,21:57,Tuesday,YONGE BD STATION,MUIS,0,0,,BD,0
-2021-03-09,22:00,Tuesday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU/BD,0
-2021-03-09,22:20,Tuesday,ST ANDREW STATION,MUIS,0,0,,YU,0
-2021-03-09,22:54,Tuesday,YONGE BD STATION,EUSC,0,0,W,BD,5149
-2021-03-09,23:00,Tuesday,FINCH TO EGLINTON STAT,MUO,0,0,B,YU,0
-2021-03-09,23:23,Tuesday,ISLINGTON STATION,TUMVS,3,10,E,BD,5180
-2021-03-09,23:30,Tuesday,DUPONT STATION,MUIRS,0,0,S,YU,0
-2021-03-09,23:30,Tuesday,KENNEDY SRT STATION,ERDO,0,0,W,SRT,3003
-2021-03-09,23:30,Tuesday,ST GEORGE BD STATION,PUTDN,9,16,W,BD,5313
-2021-03-09,23:41,Tuesday,EGLINTON STATION,MUIS,0,0,,YU,0
-2021-03-09,23:48,Tuesday,WILSON STATION,MUIS,0,0,,YU,0
-2021-03-10,00:54,Wednesday,KEELE STATION,MUIRS,0,0,W,BD,5146
-2021-03-10,01:21,Wednesday,WELLESLEY STATION,PUMEL,0,0,N,YU,0
-2021-03-10,01:49,Wednesday,DUNDAS WEST STATION,TUMVS,0,0,W,BD,5006
-2021-03-10,01:49,Wednesday,WILSON STATION,SUUT,0,0,,YU,0
-2021-03-10,01:54,Wednesday,EGLINTON STATION,MUIS,0,0,S,YU,5723
-2021-03-10,02:37,Wednesday,SHEPPARD WEST STATION,SUDP,0,0,S,YU,5731
-2021-03-10,02:53,Wednesday,VAUGHAN MC STATION,MUIS,0,0,S,YU,0
-2021-03-10,03:00,Wednesday,VAUGHAN MC STATION,SUDP,0,0,S,YU,5951
-2021-03-10,03:14,Wednesday,VAUGHAN MC STATION,MUO,10,15,N,YU,5130
-2021-03-10,06:36,Wednesday,SUMMERHILL STATION,MUTO,3,6,S,YU,5756
-2021-03-10,06:48,Wednesday,ST GEORGE YUS STATION,MUIRS,0,0,,YU,0
-2021-03-10,06:55,Wednesday,ROSEDALE STATION,MUATC,3,6,S,YU,5626
-2021-03-10,07:02,Wednesday,YORK UNIVERSITY STATIO,MUATC,0,0,S,YU,5796
-2021-03-10,07:51,Wednesday,ROSEDALE STATION,MUSC,3,6,N,YU,5796
-2021-03-10,08:01,Wednesday,UNION STATION,MUD,3,6,N,YU,5836
-2021-03-10,09:14,Wednesday,WELLESLEY STATION,SUDP,0,0,N,YU,5396
-2021-03-10,09:16,Wednesday,LAWRENCE WEST STATION,TUATC,5,8,N,YU,5791
-2021-03-10,09:40,Wednesday,LAWRENCE WEST STATION,MUATC,5,8,N,YU,5981
-2021-03-10,10:41,Wednesday,SUMMERHILL STATION,TUMVS,0,0,S,YU,6116
-2021-03-10,11:16,Wednesday,YONGE BD STATION,MUIS,0,0,W,BD,0
-2021-03-10,11:49,Wednesday,EGLINTON WEST STATION,SUAE,0,0,N,YU,5736
-2021-03-10,12:11,Wednesday,CASTLE FRANK STATION,SUDP,0,0,E,BD,5074
-2021-03-10,12:23,Wednesday,GLENCAIRN STATION,MUPAA,0,0,N,YU,5696
-2021-03-10,12:53,Wednesday,FINCH STATION,MUTO,3,6,S,YU,6051
-2021-03-10,14:18,Wednesday,HIGH PARK STATION,MUIS,0,0,,BD,0
-2021-03-10,14:52,Wednesday,VAUGHAN MC STATION,MUNOA,3,6,N,YU,6076
-2021-03-10,16:13,Wednesday,DAVISVILLE STATION,PUMST,0,0,N,YU,0
-2021-03-10,16:28,Wednesday,SHERBOURNE STATION,MUPAA,8,12,E,BD,5054
-2021-03-10,17:05,Wednesday,WELLESLEY STATION,SUDP,0,0,S,YU,5831
-2021-03-10,17:45,Wednesday,WARDEN STATION,MUPAA,0,0,W,BD,5366
-2021-03-10,18:00,Wednesday,OSSINGTON STATION,TUSC,0,0,W,BD,5146
-2021-03-10,18:38,Wednesday,LAWRENCE WEST STATION,MUIS,0,0,,YU,0
-2021-03-10,18:42,Wednesday,SHEPPARD WEST STATION,MUIR,0,0,S,YU,5646
-2021-03-10,18:48,Wednesday,FINCH STATION,SUDP,3,6,S,YU,5746
-2021-03-10,21:21,Wednesday,WELLESLEY STATION,SUPOL,37,42,S,YU,6051
-2021-03-10,21:37,Wednesday,LAWRENCE STATION,SUPOL,5,10,N,YU,6056
-2021-03-10,22:00,Wednesday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU/BD,0
-2021-03-10,22:18,Wednesday,DAVISVILLE STATION,SUDP,10,15,N,YU,5811
-2021-03-10,23:00,Wednesday,FINCH TO EGLINTON STAT,MUO,0,0,,YU,0
-2021-03-10,23:55,Wednesday,ST GEORGE BD STATION,SUUT,9,16,E,BD,5318
-2021-03-11,00:49,Thursday,DUNDAS WEST STATION,MUIS,0,0,,BD,0
-2021-03-11,05:53,Thursday,KIPLING STATION,SUG,3,8,E,BD,5295
-2021-03-11,07:02,Thursday,PAPE STATION,PUMO,0,0,,BD,0
-2021-03-11,07:06,Thursday,SPADINA YUS STATION,MUIS,0,0,,YU,0
-2021-03-11,07:12,Thursday,ROSEDALE STATION,MUSC,0,0,N,YU,6056
-2021-03-11,07:58,Thursday,SHEPPARD WEST STATION,MUTO,0,0,S,YU,5721
-2021-03-11,11:37,Thursday,VICTORIA PARK STATION,TUMVS,0,0,W,BD,5276
-2021-03-11,12:05,Thursday,WELLESLEY STATION,PUMEL,0,0,,YU,0
-2021-03-11,12:11,Thursday,UNION STATION,MUIRS,0,0,,YU,0
-2021-03-11,12:21,Thursday,ST ANDREW STATION,PUMEL,0,0,,YU,0
-2021-03-11,12:42,Thursday,ST CLAIR STATION,PUSO,10,13,S,YU,5496
-2021-03-11,13:24,Thursday,LANSDOWNE STATION,MUDD,9,13,W,BD,5308
-2021-03-11,13:33,Thursday,BLOOR STATION,PUMEL,0,0,,YU,0
-2021-03-11,14:28,Thursday,SHEPPARD-YONGE STATION,TUSC,0,0,W,SHP,6141
-2021-03-11,14:54,Thursday,DUNDAS WEST STATION,SUO,0,0,,BD,0
-2021-03-11,15:39,Thursday,BLOOR STATION,MUIS,0,0,,YU,0
-2021-03-11,15:46,Thursday,YORK MILLS STATION,MUPAA,3,6,S,YU,5506
-2021-03-11,15:52,Thursday,DAVISVILLE STATION,PUTDN,3,6,S,YU,6136
-2021-03-11,16:04,Thursday,KIPLING STATION,MUDD,3,7,E,BD,5100
-2021-03-11,16:09,Thursday,ISLINGTON STATION,EUCD,5,9,E,BD,5100
-2021-03-11,16:44,Thursday,KENNEDY BD STATION,SUAP,0,0,,BD,0
-2021-03-11,16:44,Thursday,SHEPPARD-YONGE STATION,TUSC,0,0,W,SHP,6186
-2021-03-11,16:53,Thursday,SPADINA YUS STATION,SUDP,3,6,N,YU,5431
-2021-03-11,17:02,Thursday,SPADINA BD STATION,SUDP,3,7,W,BD,5276
-2021-03-11,17:08,Thursday,ST ANDREW STATION,PUMEL,0,0,,YU,0
-2021-03-11,17:25,Thursday,BATHURST STATION,MUIS,0,0,,BD,0
-2021-03-11,17:28,Thursday,BLOOR STATION,SUDP,5,8,N,YU,6056
-2021-03-11,17:59,Thursday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-03-11,18:01,Thursday,DUNDAS STATION,MUNCA,0,0,,YU,0
-2021-03-11,18:24,Thursday,FINCH STATION,MUSAN,3,6,S,YU,6056
-2021-03-11,18:26,Thursday,SPADINA YUS STATION,SUDP,4,7,N,YU,5481
-2021-03-11,18:39,Thursday,BLOOR STATION,SUDP,0,0,,YU,0
-2021-03-11,19:38,Thursday,SHEPPARD-YONGE STATION,SUDP,5,10,E,SHP,6146
-2021-03-11,20:26,Thursday,BLOOR STATION,MUIS,0,0,,YU,0
-2021-03-11,20:39,Thursday,DONLANDS STATION,SUDP,0,0,E,BD,5320
-2021-03-11,21:29,Thursday,DUNDAS WEST STATION,MUIS,0,0,,BD,0
-2021-03-11,22:00,Thursday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU/BD,0
-2021-03-11,22:05,Thursday,DUNDAS WEST STATION,MUPAA,0,0,W,BD,5006
-2021-03-11,22:06,Thursday,WOODBINE STATION,MUPAA,0,0,E,BD,5053
-2021-03-11,22:47,Thursday,YORK MILLS STATION,TUMVS,0,0,S,YU,5541
-2021-03-11,23:00,Thursday,FINCH TO EGLINTON STAT,MUO,0,0,B,YU,0
-2021-03-12,01:59,Friday,FINCH STATION,MUIS,0,0,,YU,0
-2021-03-12,02:35,Friday,WILSON STATION,MUIS,0,0,,YU,0
-2021-03-12,05:39,Friday,FINCH STATION,PUMST,0,0,,YU,0
-2021-03-12,06:49,Friday,BLOOR STATION,MUPAA,0,0,S,YU,5846
-2021-03-12,09:10,Friday,FINCH STATION,SUAE,3,6,S,YU,5756
-2021-03-12,09:12,Friday,UNION STATION,MUIS,0,0,,YU,0
-2021-03-12,10:30,Friday,EGLINTON WEST STATION,SUAP,8,11,N,YU,6076
-2021-03-12,10:35,Friday,EGLINTON STATION,MUO,3,6,S,YU,5691
-2021-03-12,10:35,Friday,MUSEUM STATION,MUATC,10,13,S,YU,5536
-2021-03-12,10:56,Friday,FINCH STATION,MUSC,0,0,S,YU,5631
-2021-03-12,11:06,Friday,SPADINA YUS STATION,MUSAN,3,6,S,YU,5491
-2021-03-12,11:08,Friday,KIPLING STATION,MUTO,4,8,E,BD,5024
-2021-03-12,11:33,Friday,ST CLAIR WEST STATION,SUDP,0,0,S,YU,0
-2021-03-12,11:36,Friday,DUPONT STATION,SUDP,4,7,S,YU,5746
-2021-03-12,11:37,Friday,KENNEDY SRT STATION,SRDP,3,9,N,SRT,3003
-2021-03-12,11:45,Friday,QUEEN'S PARK STATION,SUO,3,6,S,YU,5746
-2021-03-12,13:29,Friday,DUNDAS STATION,MUIS,0,0,,YU,0
-2021-03-12,13:34,Friday,FINCH STATION,MUSC,0,0,S,YU,5631
-2021-03-12,14:02,Friday,PAPE STATION,PUMEL,0,0,,BD,0
-2021-03-12,14:52,Friday,FINCH STATION,MUSC,0,0,S,YU,5576
-2021-03-12,17:06,Friday,SCARBOROUGH CTR STATIO,TRNCA,0,0,,SRT,0
-2021-03-12,17:33,Friday,FINCH STATION,MUSC,0,0,S,YU,5576
-2021-03-12,17:48,Friday,EGLINTON STATION,EUSC,0,0,S,YU,5446
-2021-03-12,18:07,Friday,DOWNSVIEW PARK STATION,MUIS,0,0,S,YU,5461
-2021-03-12,18:30,Friday,HIGHWAY 407 STATION,SUO,0,0,N,YU,5471
-2021-03-12,19:13,Friday,DOWNSVIEW PARK STATION,MUPAA,0,0,S,YU,5511
-2021-03-12,19:22,Friday,BAYVIEW STATION,PUSO,26,31,E,SHP,6161
-2021-03-12,19:28,Friday,EGLINTON WEST STATION,MUPAA,0,0,N,YU,5431
-2021-03-12,19:54,Friday,EGLINTON STATION,MUPAA,0,0,S,YU,5611
-2021-03-12,20:23,Friday,FINCH STATION,MUSAN,3,6,S,YU,5511
-2021-03-12,20:28,Friday,FINCH STATION,MUSAN,3,6,N,YU,6071
-2021-03-12,20:50,Friday,WELLESLEY STATION,MUIS,0,0,,YU,0
-2021-03-12,20:59,Friday,EGLINTON STATION,SUO,0,0,N,YU,5436
-2021-03-12,21:44,Friday,DONLANDS STATION,MUSAN,4,11,W,BD,5163
-2021-03-12,22:00,Friday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU/BD,0
-2021-03-12,22:03,Friday,BATHURST STATION,SUAP,4,11,W,BD,5136
-2021-03-12,22:09,Friday,KENNEDY SRT STATION,MRDD,0,0,N,SRT,3019
-2021-03-12,22:33,Friday,YONGE BD STATION,SUAP,0,0,E,BD,0
-2021-03-12,22:36,Friday,FINCH STATION,EUTRD,5,10,S,YU,5761
-2021-03-12,23:19,Friday,ST CLAIR WEST STATION,MUI,0,0,S,YU,5486
-2021-03-12,23:31,Friday,DUNDAS WEST STATION,SUUT,3,10,W,BD,5084
-2021-03-12,23:42,Friday,UNION STATION,MUIS,0,0,,YU,0
-2021-03-13,02:12,Saturday,SPADINA BD STATION,SUUT,0,0,W,BD,0
-2021-03-13,02:26,Saturday,SHEPPARD WEST STATION,MUIS,0,0,,YU,0
-2021-03-13,02:31,Saturday,VAUGHAN MC STATION,MUIS,0,0,,YU,0
-2021-03-13,06:00,Saturday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU,0
-2021-03-13,07:24,Saturday,KING STATION,MUATC,4,9,S,YU,6131
-2021-03-13,09:05,Saturday,VAUGHAN MC STATION,TUO,5,10,S,YU,5486
-2021-03-13,09:50,Saturday,ST GEORGE YUS STATION,PUSSW,4,9,S,YU,5486
-2021-03-13,10:12,Saturday,EGLINTON STATION,MUIR,5,10,S,YU,5861
-2021-03-13,14:31,Saturday,FINCH STATION,TUSUP,3,8,S,YU,5826
-2021-03-13,14:40,Saturday,FINCH WEST STATION,MUPAA,0,0,S,YU,5816
-2021-03-13,16:26,Saturday,KING STATION,MUATC,4,9,N,YU,5456
-2021-03-13,17:01,Saturday,EGLINTON STATION,MUIR,3,8,S,YU,5821
-2021-03-13,19:14,Saturday,CHRISTIE STATION,MUPAA,6,11,W,BD,5354
-2021-03-13,19:48,Saturday,DUPONT STATION,SUDP,3,8,N,YU,5456
-2021-03-13,19:48,Saturday,ISLINGTON STATION,SUUT,8,13,E,BD,5369
-2021-03-13,19:57,Saturday,ST CLAIR WEST STATION,SUDP,0,0,N,YU,5626
-2021-03-13,20:02,Saturday,KENNEDY BD STATION,SUAP,0,0,,BD,0
-2021-03-13,20:35,Saturday,ST GEORGE BD STATION,SUDP,0,0,E,BD,5024
-2021-03-13,20:37,Saturday,CHRISTIE STATION,TUMVS,0,0,E,BD,5016
-2021-03-13,21:20,Saturday,LANSDOWNE STATION,MUIRS,0,0,W,BD,0
-2021-03-13,21:34,Saturday,UNION STATION,MUIS,0,0,,YU,0
-2021-03-13,21:40,Saturday,KING STATION,MUATC,8,13,S,YU,5691
-2021-03-13,22:00,Saturday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU/BD,0
-2021-03-13,23:27,Saturday,WARDEN STATION,MUIS,0,0,,BD,0
-2021-03-13,23:42,Saturday,ISLINGTON STATION,SUEAS,13,19,W,BD,5163
-2021-03-13,23:52,Saturday,OLD MILL STATION,SUAP,8,14,W,BD,5365
-2021-03-14,00:42,Sunday,WELLESLEY STATION,MUIS,0,0,,YU,0
-2021-03-14,00:58,Sunday,OSSINGTON STATION,MUIS,0,0,E,BD,5121
-2021-03-14,01:51,Sunday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-03-14,03:07,Sunday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-03-14,08:00,Sunday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU,0
-2021-03-14,08:38,Sunday,BLOOR STATION,MUATC,3,8,S,YU,5431
-2021-03-14,09:30,Sunday,RUNNYMEDE STATION,MUIS,0,0,,BD,0
-2021-03-14,10:09,Sunday,KIPLING STATION,SUAE,0,0,,BD,0
-2021-03-14,11:46,Sunday,COLLEGE STATION,SUO,0,0,N,YU,5626
-2021-03-14,11:46,Sunday,WELLESLEY STATION,SUO,0,0,N,YU,5614
-2021-03-14,13:59,Sunday,YONGE BD STATION,MUIS,0,0,E,BD,0
-2021-03-14,14:02,Sunday,SPADINA BD STATION,SUPOL,0,0,E,BD,5240
-2021-03-14,14:05,Sunday,SPADINA YUS STATION,SUPOL,0,0,N,YU,5431
-2021-03-14,14:21,Sunday,KEELE STATION,MUSC,0,0,W,BD,5358
-2021-03-14,15:21,Sunday,LANSDOWNE STATION,SUDP,8,12,W,BD,5261
-2021-03-14,15:30,Sunday,ST GEORGE YUS STATION,MUIS,0,0,S,YU,0
-2021-03-14,16:36,Sunday,BATHURST STATION,MUIRS,0,0,,BD,0
-2021-03-14,16:59,Sunday,CHESTER STATION,TUSC,0,0,W,BD,5261
-2021-03-14,17:33,Sunday,BLOOR STATION,MUI,13,18,N,YU,5721
-2021-03-14,17:52,Sunday,ISLINGTON STATION,SUO,0,0,,BD,0
-2021-03-14,17:54,Sunday,COXWELL STATION,TUNIP,4,8,W,BD,5258
-2021-03-14,18:18,Sunday,CHRISTIE STATION,MUIS,0,0,,BD,0
-2021-03-14,18:40,Sunday,VAUGHAN MC STATION,MUATC,3,8,S,YU,5481
-2021-03-14,20:01,Sunday,BROADVIEW STATION,MUIS,0,0,,BD,0
-2021-03-14,20:52,Sunday,BAY STATION,MUIS,0,0,,BD,0
-2021-03-14,21:49,Sunday,VAUGHAN MC STATION,MUI,5,10,S,YU,5576
-2021-03-14,22:00,Sunday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU/BD,0
-2021-03-15,00:25,Monday,KING STATION,SUDP,0,0,,YU,0
-2021-03-15,00:34,Monday,YONGE BD STATION,SUUT,0,0,,BD,0
-2021-03-15,01:04,Monday,LAWRENCE STATION,MUPAA,3,8,N,YU,5751
-2021-03-15,01:35,Monday,EGLINTON STATION,SUDP,0,0,,YU,0
-2021-03-15,02:05,Monday,NORTH YORK CTR STATION,MUSC,0,0,S,YU,5476
-2021-03-15,02:26,Monday,SHEPPARD WEST STATION,MUIS,0,0,,YU,0
-2021-03-15,05:08,Monday,FINCH STATION,PUMO,0,0,,YU,0
-2021-03-15,05:26,Monday,EGLINTON STATION,MUSC,0,0,N,YU,6131
-2021-03-15,06:00,Monday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU,0
-2021-03-15,07:17,Monday,ROSEDALE STATION,SUDP,4,8,N,YU,5836
-2021-03-15,09:51,Monday,EGLINTON STATION,MUSC,0,0,N,YU,5746
-2021-03-15,10:00,Monday,YORK MILLS STATION,MUSC,0,0,N,YU,5746
-2021-03-15,10:51,Monday,ROSEDALE STATION,TUATC,8,12,S,YU,5446
-2021-03-15,11:08,Monday,YONGE BD STATION,MUIS,0,0,,BD,0
-2021-03-15,11:23,Monday,JANE STATION,MUD,3,7,W,BD,5289
-2021-03-15,11:37,Monday,ISLINGTON STATION,TUS,3,7,E,BD,5031
-2021-03-15,12:22,Monday,WILSON STATION,MUPAA,0,0,N,YU,5801
-2021-03-15,12:34,Monday,EGLINTON STATION,MUIS,0,0,,YU,0
-2021-03-15,13:37,Monday,VAUGHAN MC STATION,TUNIP,5,10,S,YU,5676
-2021-03-15,14:08,Monday,FINCH STATION,MUIS,0,0,,YU,0
-2021-03-15,14:24,Monday,WARDEN STATION,SUDP,10,14,W,BD,5060
-2021-03-15,15:09,Monday,VAUGHAN MC STATION,EUBO,4,8,S,YU,5461
-2021-03-15,16:02,Monday,FINCH STATION,SUAP,0,0,,YU,0
-2021-03-15,16:54,Monday,FINCH STATION,TUSUP,3,7,S,YU,5786
-2021-03-15,17:16,Monday,WELLESLEY STATION,SUDP,3,7,N,YU,5731
-2021-03-15,18:04,Monday,ST GEORGE YUS STATION,MUPAA,0,0,S,YU,5676
-2021-03-15,18:18,Monday,SPADINA BD STATION,SUAP,0,0,E,BD,5307
-2021-03-15,18:45,Monday,BAYVIEW STATION,SUUT,11,16,W,SHP,6161
-2021-03-15,18:49,Monday,SHERBOURNE STATION,MUIS,0,0,W,BD,5014
-2021-03-15,19:59,Monday,COXWELL STATION,MUPAA,0,0,W,BD,5354
-2021-03-15,20:02,Monday,BLOOR STATION,SUAP,0,0,S,YU,5496
-2021-03-15,20:55,Monday,SUMMERHILL STATION,SUUT,6,10,N,YU,6081
-2021-03-15,22:00,Monday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU/BD,0
-2021-03-15,23:07,Monday,YORK MILLS STATION,MUWR,13,18,N,YU,5746
-2021-03-15,23:42,Monday,YORKDALE STATION,EUBK,5,10,N,YU,5391
-2021-03-16,01:31,Tuesday,DON MILLS STATION,TUSC,0,0,W,SHP,6151
-2021-03-16,01:54,Tuesday,DUNDAS STATION,SUDP,3,8,N,YU,5561
-2021-03-16,02:38,Tuesday,FINCH STATION,MUIRS,0,0,,YU,0
-2021-03-16,05:14,Tuesday,FINCH STATION,PUMO,0,0,,YU,0
-2021-03-16,05:20,Tuesday,DAVISVILLE STATION,MUSC,0,0,S,YU,6041
-2021-03-16,05:26,Tuesday,DAVISVILLE STATION,MUSC,0,0,S,YU,6116
-2021-03-16,06:00,Tuesday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU,0
-2021-03-16,06:39,Tuesday,KEELE STATION,PUMO,0,0,,BD,0
-2021-03-16,06:51,Tuesday,NORTH YORK CTR STATION,EUSC,0,0,N,YU,5746
-2021-03-16,07:20,Tuesday,EGLINTON WEST STATION,MUNCA,0,0,,YU,0
-2021-03-16,07:53,Tuesday,SUMMERHILL STATION,EUSC,0,0,N,YU,5746
-2021-03-16,10:14,Tuesday,YORK MILLS STATION,TUSC,0,0,S,YU,6086
-2021-03-16,11:02,Tuesday,YONGE BD STATION,SUDP,0,0,,BD,0
-2021-03-16,11:46,Tuesday,SHERBOURNE STATION,PUMEL,0,0,,BD,0
-2021-03-16,12:11,Tuesday,BAY STATION,MUPR1,40,44,E,BD,5079
-2021-03-16,12:33,Tuesday,WILSON STATION,PUSRA,9,13,N,YU,5506
-2021-03-16,12:34,Tuesday,SUMMERHILL STATION,SUAP,3,7,N,YU,5661
-2021-03-16,12:35,Tuesday,KENNEDY BD STATION,MUO,4,8,W,BD,5142
-2021-03-16,12:46,Tuesday,FINCH STATION,SUO,0,0,,YU,0
-2021-03-16,13:14,Tuesday,KIPLING STATION,MUIRS,0,0,,BD,0
-2021-03-16,13:22,Tuesday,ROYAL YORK STATION,MUO,0,0,,BD,0
-2021-03-16,13:46,Tuesday,ST ANDREW STATION,MUSAN,5,10,S,YU,5661
-2021-03-16,14:17,Tuesday,FINCH STATION,TUO,4,9,S,YU,5556
-2021-03-16,14:30,Tuesday,QUEEN STATION,SUO,0,0,N,YU,0
-2021-03-16,14:54,Tuesday,WILSON STATION,MUIS,0,0,,YU,0
-2021-03-16,14:55,Tuesday,JANE STATION,EUPI,5,9,W,BD,5054
-2021-03-16,15:51,Tuesday,DONLANDS STATION,EUME,11,14,W,BD,5002
-2021-03-16,17:27,Tuesday,QUEEN STATION,MUATC,4,8,N,YU,6136
-2021-03-16,18:24,Tuesday,ST GEORGE BD STATION,MUDD,6,10,W,BD,5108
-2021-03-16,19:29,Tuesday,ST GEORGE YUS STATION,MUIS,0,0,,YU,0
-2021-03-16,19:58,Tuesday,ST ANDREW STATION,MUPAA,0,0,S,YU,5491
-2021-03-16,20:28,Tuesday,LAWRENCE STATION,TUSC,0,0,S,YU,5831
-2021-03-16,20:51,Tuesday,DUNDAS STATION,SUDP,0,0,N,YU,5421
-2021-03-16,21:33,Tuesday,FINCH STATION,SUAP,0,0,N,YU,5746
-2021-03-16,22:00,Tuesday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU/BD,0
-2021-03-16,22:11,Tuesday,SHEPPARD-YONGE STATION,MUNOA,0,0,E,SHP,0
-2021-03-16,22:25,Tuesday,LESLIE STATION,TUSC,0,0,W,SHP,6176
-2021-03-16,23:37,Tuesday,DAVISVILLE YARD,MUO,0,0,,YU,0
-2021-03-17,01:22,Wednesday,FINCH WEST STATION,TUO,10,15,N,YU,5941
-2021-03-17,01:32,Wednesday,ST GEORGE BD STATION,SUROB,6,13,W,BD,5342
-2021-03-17,01:36,Wednesday,ST GEORGE YUS STATION,SUROB,0,0,N,YU,5906
-2021-03-17,01:39,Wednesday,SPADINA YUS STATION,SUROB,11,16,S,YU,6056
-2021-03-17,01:56,Wednesday,KENNEDY BD STATION,MUPAA,0,0,,BD,5109
-2021-03-17,05:15,Wednesday,INGLIS BUILDING,PUMEL,0,0,,,0
-2021-03-17,05:54,Wednesday,DON MILLS STATION,MUSC,0,0,W,SHP,6176
-2021-03-17,06:00,Wednesday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU,0
-2021-03-17,06:18,Wednesday,ROSEDALE STATION,MUATC,3,7,S,YU,5496
-2021-03-17,08:04,Wednesday,YORK MILLS STATION,MUSC,0,0,N,YU,5746
-2021-03-17,08:36,Wednesday,ST GEORGE YUS STATION,SUDP,6,10,S,YU,5901
-2021-03-17,09:11,Wednesday,LAWRENCE STATION,MUSC,0,0,N,YU,5741
-2021-03-17,09:42,Wednesday,FINCH STATION,SUO,0,0,,YU,0
-2021-03-17,11:24,Wednesday,EGLINTON STATION,MUIR,0,0,N,YU,5731
-2021-03-17,11:44,Wednesday,WOODBINE STATION,PUSO,6,10,W,BD,5180
-2021-03-17,12:25,Wednesday,HIGH PARK STATION,PUMEL,0,0,,BD,0
-2021-03-17,12:28,Wednesday,EGLINTON STATION,MUSC,0,0,N,YU,5561
-2021-03-17,13:11,Wednesday,VICTORIA PARK STATION,SUO,3,8,W,BD,5299
-2021-03-17,14:11,Wednesday,BLOOR STATION,SUAP,0,0,,YU,0
-2021-03-17,14:19,Wednesday,ST CLAIR STATION,PUMEL,0,0,,YU,0
-2021-03-17,14:31,Wednesday,ROSEDALE STATION,TUOS,6,10,S,YU,5741
-2021-03-17,14:32,Wednesday,WARDEN STATION,SUROB,0,0,,BD,0
-2021-03-17,14:38,Wednesday,WILSON STATION,MUIS,0,0,,YU,0
-2021-03-17,15:38,Wednesday,KEELE STATION,SUO,4,8,W,BD,5307
-2021-03-17,17:19,Wednesday,COLLEGE STATION,SUO,4,9,S,YU,6116
-2021-03-17,17:50,Wednesday,DUNDAS WEST STATION,SUUT,3,7,W,BD,5342
-2021-03-17,18:19,Wednesday,WILSON STATION,MUIS,0,0,,YU,0
-2021-03-17,18:34,Wednesday,RUNNYMEDE STATION,EUDO,19,23,E,BD,5020
-2021-03-17,18:35,Wednesday,BESSARION STATION,MUSC,0,0,E,SHP,6171
-2021-03-17,18:48,Wednesday,DOWNSVIEW PARK STATION,MUIRS,0,0,,YU,0
-2021-03-17,18:50,Wednesday,ST GEORGE BD STATION,SUDP,4,8,W,BD,5035
-2021-03-17,18:59,Wednesday,DUNDAS WEST STATION,EUCD,4,8,E,BD,5020
-2021-03-17,19:33,Wednesday,FINCH STATION,MUSC,0,0,S,YU,5741
-2021-03-17,19:43,Wednesday,UNION STATION,MUIR,7,11,N,YU,5836
-2021-03-17,20:40,Wednesday,OSSINGTON CENTRE TRACK,SUO,0,0,W,BD,5051
-2021-03-17,21:12,Wednesday,SPADINA BD STATION,SUUT,3,10,E,BD,5187
-2021-03-17,21:36,Wednesday,DAVISVILLE STATION,SUDP,0,0,N,YU,5796
-2021-03-17,22:00,Wednesday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU/BD,0
-2021-03-17,22:19,Wednesday,FINCH WEST STATION,MUIS,0,0,,YU,0
-2021-03-17,23:30,Wednesday,JANE STATION,SUDP,3,10,E,BD,5267
-2021-03-18,00:05,Thursday,PIONEER VILLAGE STATIO,MUIS,0,0,,YU,0
-2021-03-18,00:43,Thursday,CHESTER STATION,MUD,9,13,W,BD,5109
-2021-03-18,01:25,Thursday,WARDEN STATION,MUIS,0,0,,BD,0
-2021-03-18,01:47,Thursday,ST GEORGE YUS STATION,MUATC,10,15,N,YU,5671
-2021-03-18,02:14,Thursday,SHEPPARD STATION,MUPAA,0,0,N,YU,5561
-2021-03-18,02:22,Thursday,YORK MILLS STATION,SUDP,0,0,,YU,0
-2021-03-18,03:13,Thursday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-03-18,05:29,Thursday,ST CLAIR STATION,MUIE,0,0,,YU,0
-2021-03-18,05:33,Thursday,EGLINTON STATION,TUCC,0,0,N,YU,5451
-2021-03-18,05:44,Thursday,ROSEDALE STATION,PUATC,32,40,S,YU,5771
-2021-03-18,05:49,Thursday,ROSEDALE STATION,TUMVS,0,0,S,YU,6041
-2021-03-18,05:58,Thursday,ST GEORGE BD STATION,PUTWZ,0,0,W,BD,5295
-2021-03-18,06:09,Thursday,DON MILLS STATION,SUAE,5,11,W,SHP,5146
-2021-03-18,06:47,Thursday,KIPLING STATION,EUNT,5,10,E,BD,5267
-2021-03-18,06:52,Thursday,MAIN STREET STATION,MUIE,0,0,,BD,0
-2021-03-18,07:09,Thursday,KIPLING STATION,EUNT,4,8,E,BD,5333
-2021-03-18,08:20,Thursday,WARDEN STATION,SUUT,9,13,W,BD,5118
-2021-03-18,09:12,Thursday,QUEEN STATION,MUPAA,0,0,N,YU,5776
-2021-03-18,10:44,Thursday,CHRISTIE STATION,PUSWZ,7,11,E,BD,5178
-2021-03-18,10:53,Thursday,OSSINGTON STATION,PUSWZ,7,11,E,BD,5506
-2021-03-18,11:52,Thursday,KEELE STATION,SUO,0,0,E,BD,5103
-2021-03-18,11:53,Thursday,UNION STATION,MUPAA,0,0,S,YU,5456
-2021-03-18,13:16,Thursday,EGLINTON STATION,SUAE,0,0,,YU,0
-2021-03-18,13:17,Thursday,BROADVIEW STATION,MUD,3,7,E,BD,5122
-2021-03-18,15:23,Thursday,SHERBOURNE STATION,MUO,4,8,W,BD,5051
-2021-03-18,15:39,Thursday,CHRISTIE STATION,MUIS,0,0,,BD,0
-2021-03-18,17:24,Thursday,FINCH STATION,TUSUP,5,10,S,YU,5666
-2021-03-18,18:17,Thursday,FINCH STATION,MUPAA,0,0,S,YU,5786
-2021-03-18,18:58,Thursday,WELLESLEY STATION,SUAP,0,0,S,YU,5566
-2021-03-18,19:13,Thursday,ISLINGTON STATION,SUUT,11,15,E,BD,5099
-2021-03-18,20:15,Thursday,FINCH STATION,TUNIP,5,10,S,YU,5776
-2021-03-18,21:05,Thursday,WELLESLEY STATION,MUPAA,0,0,N,YU,5731
-2021-03-18,21:51,Thursday,BLOOR STATION,SUUT,25,30,S,YU,5771
-2021-03-18,22:00,Thursday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU/BD,0
-2021-03-19,00:00,Friday,BLOOR STATION,SUDP,0,0,N,YU,0
-2021-03-19,00:18,Friday,SHEPPARD-YONGE (TAIL T,SUUT,36,41,E,SHP,6156
-2021-03-19,01:36,Friday,YONGE BD STATION,MUIS,0,0,,BD,0
-2021-03-19,02:09,Friday,BAY STATION,SUROB,0,0,,BD,0
-2021-03-19,05:44,Friday,SUMMERHILL TO BLOOR ST,PUTWZ,15,19,S,YU,5566
-2021-03-19,06:00,Friday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU,0
-2021-03-19,06:01,Friday,YORK MILLS STATION,TUSC,0,0,S,YU,5756
-2021-03-19,06:53,Friday,YORK MILLS STATION,EUTRD,4,8,N,YU,5691
-2021-03-19,06:59,Friday,VAUGHAN MC STATION,EUBO,4,8,S,YU,6126
-2021-03-19,07:31,Friday,SHEPPARD WEST STATION,EUAL,4,8,S,YU,5621
-2021-03-19,07:51,Friday,SHEPPARD STATION,MUPAA,0,0,S,YU,5386
-2021-03-19,08:26,Friday,YONGE BD STATION,SUAP,0,0,,BD,0
-2021-03-19,08:36,Friday,LAWRENCE STATION,SUDP,0,0,,YU,0
-2021-03-19,08:54,Friday,BLOOR STATION,MUPAA,0,0,N,YU,6081
-2021-03-19,08:58,Friday,BLOOR STATION,MUPAA,0,0,S,YU,5566
-2021-03-19,09:03,Friday,BLOOR STATION,SUDP,4,8,S,YU,5471
-2021-03-19,09:06,Friday,ST GEORGE BD STATION,MUD,3,7,W,BD,5182
-2021-03-19,09:32,Friday,ROYAL YORK STATION,MUIS,0,0,,BD,0
-2021-03-19,09:35,Friday,GLENCAIRN STATION,MUD,4,8,N,YU,6051
-2021-03-19,10:00,Friday,WOODBINE STATION,MUNCA,0,0,,BD,0
-2021-03-19,10:25,Friday,DUNDAS WEST STATION,MUSC,0,0,W,BD,5168
-2021-03-19,11:28,Friday,DUNDAS WEST STATION,SUDP,10,14,W,BD,5109
-2021-03-19,13:07,Friday,SPADINA BD STATION,MUPAA,0,0,W,BD,5515
-2021-03-19,13:32,Friday,PAPE STATION,SUDP,0,0,,BD,0
-2021-03-19,14:17,Friday,BESSARION STATION,MUSC,0,0,E,SHP,6141
-2021-03-19,15:28,Friday,KIPLING STATION,TUSUP,4,7,E,BD,5086
-2021-03-19,15:41,Friday,VICTORIA PARK STATION,TUMVS,0,0,W,BD,5146
-2021-03-19,15:52,Friday,KENNEDY SRT STATION,PRSA,13,18,S,SRT,3011
-2021-03-19,18:34,Friday,KING STATION,MUNCA,0,0,,YU,0
-2021-03-19,19:12,Friday,BROADVIEW STATION,SUDP,3,7,E,BD,5106
-2021-03-19,19:15,Friday,YONGE BD STATION,SUDP,9,16,W,BD,5333
-2021-03-19,19:19,Friday,MAIN STREET STATION,SUROB,0,0,,BD,0
-2021-03-19,19:26,Friday,ROYAL YORK STATION,SUDP,3,7,W,BD,5263
-2021-03-19,20:40,Friday,HIGH PARK STATION,SUDP,0,0,W,BD,5342
-2021-03-19,22:00,Friday,YONGE UNIVERSITY SUBWA,MUO,0,0,B,YU/BD,0
-2021-03-19,22:05,Friday,VICTORIA PARK STATION,PUMEL,0,0,E,BD,0
-2021-03-19,23:17,Friday,VAUGHAN MC STATION,TUSUP,19,24,S,YU,5931
-2021-03-20,02:50,Saturday,FINCH STATION,MUIS,0,0,,YU,0
-2021-03-20,04:13,Saturday,WILSON STATION,MUO,0,0,,YU,0
-2021-03-20,05:53,Saturday,SHEPPARD-YONGE STATION,MUSC,0,0,E,SHP,6161
-2021-03-20,06:00,Saturday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU,0
-2021-03-20,07:32,Saturday,DAVISVILLE STATION,SUDP,7,12,S,YU,5701
-2021-03-20,08:16,Saturday,SHEPPARD-YONGE STATION,MUSAN,4,9,E,SHP,6166
-2021-03-20,10:42,Saturday,UNION STATION,MUIS,0,0,,YU,0
-2021-03-20,10:45,Saturday,UNION STATION,MUATC,3,8,S,YU,6041
-2021-03-20,10:55,Saturday,BLOOR STATION,MUIR,3,8,S,YU,6131
-2021-03-20,13:18,Saturday,CHESTER STATION,MUPAA,0,0,E,BD,5190
-2021-03-20,14:02,Saturday,BAY STATION,SUDP,6,10,E,BD,5099
-2021-03-20,14:18,Saturday,COLLEGE STATION,SUDP,9,14,S,YU,6116
-2021-03-20,15:04,Saturday,GREENWOOD STATION,MUD,7,11,W,BD,5292
-2021-03-20,15:49,Saturday,ROSEDALE STATION,SUUT,22,27,S,YU,5691
-2021-03-20,16:03,Saturday,OSSINGTON STATION,MUIS,0,0,,BD,0
-2021-03-20,16:54,Saturday,FINCH STATION,MUSAN,5,10,S,YU,5786
-2021-03-20,17:48,Saturday,KING STATION,SUDP,12,17,N,YU,5836
-2021-03-20,17:53,Saturday,KING STATION,MUPAA,7,12,S,YU,5771
-2021-03-20,19:30,Saturday,FINCH STATION,MUNOA,5,10,S,YU,0
-2021-03-20,19:46,Saturday,KING STATION,MUIS,0,0,S,YU,0
-2021-03-20,20:05,Saturday,DUNDAS STATION,MUNCA,0,0,,YU,0
-2021-03-20,20:21,Saturday,QUEEN STATION,SUDP,4,9,S,YU,5771
-2021-03-20,21:23,Saturday,DUNDAS STATION,SUDP,0,0,N,YU,5661
-2021-03-20,22:00,Saturday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU/BD,0
-2021-03-20,22:55,Saturday,CASTLE FRANK STATION,SUDP,12,18,E,BD,5061
-2021-03-20,23:20,Saturday,SPADINA YUS STATION,SUDP,3,8,S,YU,5401
-2021-03-20,23:34,Saturday,DONLANDS STATION,SUO,0,0,,BD,0
-2021-03-20,23:45,Saturday,SHEPPARD-YONGE TAIL,EUSC,0,0,,SHP,5451
-2021-03-21,00:23,Sunday,ST CLAIR STATION,EUPI,5,10,N,YU,5756
-2021-03-21,00:28,Sunday,QUEEN STATION,SUDP,5,10,N,YU,5781
-2021-03-21,00:34,Sunday,DUNDAS STATION,MUIS,0,0,N,YU,0
-2021-03-21,01:07,Sunday,LESLIE STATION,TUMVS,6,11,E,SHP,6156
-2021-03-21,01:26,Sunday,BLOOR STATION,SUO,0,0,,YU,0
-2021-03-21,01:52,Sunday,WARDEN STATION,EUME,13,17,E,BD,5074
-2021-03-21,02:04,Sunday,SHEPPARD STATION,SUPOL,4,9,W,SHP,6176
-2021-03-21,02:30,Sunday,SHEPPARD-YONGE STATION,MUSC,0,0,,SHP,6181
-2021-03-21,07:59,Sunday,SHEPPARD-YONGE STATION,MUSC,0,0,E,SHP,6186
-2021-03-21,08:00,Sunday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU,0
-2021-03-21,08:05,Sunday,SHEPPARD-YONGE STATION,MUSC,0,0,E,SHP,6141
-2021-03-21,08:10,Sunday,SHEPPARD-YONGE STATION,MUSC,0,0,E,SHP,6156
-2021-03-21,08:21,Sunday,ST ANDREW STATION,EUDO,5,10,N,YU,6041
-2021-03-21,08:38,Sunday,DAVISVILLE BUILDUP,TUCC,5,10,N,YU,5476
-2021-03-21,09:53,Sunday,WELLESLEY STATION,MUIE,0,0,N,YU,6047
-2021-03-21,10:27,Sunday,FINCH STATION,EUCD,5,10,N,YU,6041
-2021-03-21,11:39,Sunday,KENNEDY SRT STATION,PRS,4,10,N,SRT,3017
-2021-03-21,13:03,Sunday,ST GEORGE BD STATION,SUAP,0,0,,BD,0
-2021-03-21,13:37,Sunday,NORTH YORK CTR STATION,MUSAN,5,10,S,YU,5581
-2021-03-21,13:55,Sunday,COXWELL STATION,SUDP,4,8,E,BD,5176
-2021-03-21,14:58,Sunday,LAWRENCE STATION,TUSC,0,0,N,YU,5476
-2021-03-21,16:30,Sunday,VAUGHAN MC STATION,TUNOA,5,10,S,YU,5626
-2021-03-21,16:40,Sunday,VAUGHAN MC STATION,MUNOA,5,10,S,YU,5961
-2021-03-21,16:48,Sunday,FINCH STATION,TUNIP,7,12,S,YU,5706
-2021-03-21,17:49,Sunday,COLLEGE STATION,SUDP,5,10,N,YU,5441
-2021-03-21,19:15,Sunday,FINCH STATION,MUIS,0,0,,YU,0
-2021-03-21,19:55,Sunday,ISLINGTON STATION,MUIS,0,0,,BD,0
-2021-03-21,21:16,Sunday,ST CLAIR STATION,MUIS,0,0,,YU,0
-2021-03-21,21:18,Sunday,BROADVIEW STATION,SUUT,0,0,W,BD,5089
-2021-03-21,21:30,Sunday,LAWRENCE WEST STATION,PUMEL,0,0,,YU,0
-2021-03-21,22:00,Sunday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU/BD,0
-2021-03-21,23:29,Sunday,ST GEORGE YUS STATION,MUPAA,0,0,S,YU,5791
-2021-03-22,00:00,Monday,BATHURST STATION,MUIRS,0,0,,BD,0
-2021-03-22,00:28,Monday,SHERBOURNE STATION,SUUT,0,0,E,BD,5155
-2021-03-22,01:02,Monday,WELLESLEY STATION,SUDP,0,0,S,YU,5786
-2021-03-22,01:28,Monday,ROSEDALE STATION,SUDP,4,9,N,YU,5781
-2021-03-22,05:21,Monday,EGLINTON STATION,TUMVS,0,0,N,YU,5821
-2021-03-22,05:36,Monday,SHEPPARD-YONGE STATION,MUSC,0,0,E,SHP,6186
-2021-03-22,05:48,Monday,DAVISVILLE STATION,PUSTS,4,8,S,YU,5701
-2021-03-22,05:55,Monday,OSSINGTON STATION,TUS,3,0,W,BD,5174
-2021-03-22,06:00,Monday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU,0
-2021-03-22,06:08,Monday,LANSDOWNE STATION,PUSTS,3,7,W,BD,5307
-2021-03-22,06:30,Monday,ST GEORGE YUS STATION,MUATC,4,8,S,YU,5851
-2021-03-22,09:57,Monday,CASTLE FRANK STATION,SUDP,0,0,W,BD,5223
-2021-03-22,11:06,Monday,BLOOR STATION,SUO,0,0,N,YU,6136
-2021-03-22,11:07,Monday,SPADINA BD STATION,SUDP,4,8,W,BD,5307
-2021-03-22,11:07,Monday,SPADINA YUS STATION,SUO,0,0,N,YU,5971
-2021-03-22,12:19,Monday,ST GEORGE YUS STATION,PUSSW,15,19,S,YU,5896
-2021-03-22,12:25,Monday,COXWELL STATION,SUDP,3,7,W,BD,5043
-2021-03-22,13:25,Monday,FINCH STATION,TUSUP,5,10,S,YU,5776
-2021-03-22,13:28,Monday,KIPLING STATION,TUMVS,0,0,W,BD,5089
-2021-03-22,14:06,Monday,DAVISVILLE STATION,MUSC,0,0,N,YU,5746
-2021-03-22,14:51,Monday,ST GEORGE YUS STATION,SUAE,0,0,,YU,0
-2021-03-22,15:09,Monday,BLOOR STATION,PUMEL,0,0,,YU,0
-2021-03-22,15:27,Monday,EGLINTON STATION,SUDP,0,0,,YU,0
-2021-03-22,15:41,Monday,GREENWOOD SHOPS,MUFS,0,0,,999,0
-2021-03-22,15:51,Monday,QUEEN STATION,MUPAA,0,0,S,YU,5496
-2021-03-22,15:58,Monday,GREENWOOD STATION,SUDP,5,9,W,BD,5358
-2021-03-22,15:59,Monday,FINCH STATION,TUNIP,5,9,S,YU,5426
-2021-03-22,16:48,Monday,KIPLING STATION,MUTO,3,7,W,BD,5301
-2021-03-22,16:54,Monday,UNION STATION,SUUT,10,15,N,YU,6086
-2021-03-22,18:18,Monday,WARDEN STATION,MUO,5,9,E,BD,5190
-2021-03-22,18:20,Monday,VICTORIA PARK STATION,SUO,14,19,E,BD,5336
-2021-03-22,18:38,Monday,VICTORIA PARK STATION,PUSTS,6,10,E,BD,5054
-2021-03-22,18:49,Monday,PAPE STATION,MUO,4,8,W,BD,5046
-2021-03-22,19:39,Monday,KEELE STATION,PUSO,6,10,E,BD,5267
-2021-03-22,20:05,Monday,BAY STATION,SUDP,0,0,,BD,0
-2021-03-22,20:10,Monday,EGLINTON STATION,SUDP,5,10,N,YU,5476
-2021-03-22,20:22,Monday,BLOOR STATION,SUDP,17,22,N,YU,5691
-2021-03-22,20:23,Monday,YORK MILLS STATION,MUO,0,0,,YU,0
-2021-03-22,20:24,Monday,LAWRENCE STATION,MUSC,0,0,S,YU,5741
-2021-03-22,20:26,Monday,YONGE BD STATION,SUO,15,22,W,BD,5043
-2021-03-22,21:16,Monday,OSGOODE STATION,PUMEL,0,0,,YU,0
-2021-03-22,21:42,Monday,COXWELL STATION,EUBK,0,0,E,BD,5207
-2021-03-22,22:00,Monday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU/BD,0
-2021-03-22,22:15,Monday,OSSINGTON STATION,EUNT,3,10,E,BD,5301
-2021-03-22,22:25,Monday,ROYAL YORK STATION,MUIRS,0,0,,BD,0
-2021-03-22,22:44,Monday,VICTORIA PARK STATION,MUD,0,0,E,BD,5301
-2021-03-22,23:06,Monday,YORKDALE STATION,MUPAA,3,8,N,YU,5426
-2021-03-22,23:45,Monday,EGLINTON STATION,MUIRS,0,0,,YU,0
-2021-03-23,00:24,Tuesday,SHEPPARD-YONGE STATION,TUSC,0,0,E,SHP,6186
-2021-03-23,00:45,Tuesday,ST GEORGE YUS STATION,MUPAA,3,8,N,YU,5986
-2021-03-23,00:48,Tuesday,COXWELL STATION,MUIS,0,0,,BD,0
-2021-03-23,00:59,Tuesday,KING STATION,SUDP,0,0,S,YU,5741
-2021-03-23,01:16,Tuesday,PIONEER VILLAGE STATIO,MUTO,5,10,S,YU,5896
-2021-03-23,02:25,Tuesday,SHEPPARD-YONGE STATION,MUSC,0,0,W,SHP,6146
-2021-03-23,03:02,Tuesday,UNION STATION,PUMO,0,0,,YU,0
-2021-03-23,05:37,Tuesday,SHEPPARD-YONGE STATION,MUSC,0,0,E,SHP,6141
-2021-03-23,05:52,Tuesday,SCARBOROUGH CTR STATIO,MRTO,0,0,S,SRT,3014
-2021-03-23,05:57,Tuesday,YORK MILLS CENTER TRAC,TUO,4,8,N,YU,5426
-2021-03-23,06:00,Tuesday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU,0
-2021-03-23,06:05,Tuesday,DAVISVILLE STATION,PUSTS,4,8,S,YU,5666
-2021-03-23,06:29,Tuesday,ROSEDALE STATION,MUATC,6,10,S,YU,5426
-2021-03-23,10:01,Tuesday,ISLINGTON STATION,MUPAA,0,0,E,BD,5122
-2021-03-23,10:21,Tuesday,DAVISVILLE STATION,PUCSC,4,8,S,YU,5666
-2021-03-23,10:21,Tuesday,SHEPPARD-YONGE STATION,SUDP,5,10,W,SHP,6141
-2021-03-23,11:16,Tuesday,VAUGHAN MC STATION,MUTO,4,10,S,YU,5991
-2021-03-23,11:30,Tuesday,MCCOWAN STATION,TRNIP,0,0,S,SRT,3018
-2021-03-23,12:14,Tuesday,EGLINTON STATION,MUSAN,12,16,N,YU,5441
-2021-03-23,12:24,Tuesday,VICTORIA PARK STATION,TUMVS,0,0,W,BD,5062
-2021-03-23,12:29,Tuesday,VICTORIA PARK STATION,TUMVS,4,8,W,BD,5320
-2021-03-23,12:36,Tuesday,FINCH STATION,MUTD,12,16,N,YU,5441
-2021-03-23,13:20,Tuesday,DON MILLS STATION,MUSC,0,0,W,SHP,6176
-2021-03-23,13:30,Tuesday,DON MILLS STATION,TUSC,0,0,W,SHP,6146
-2021-03-23,13:41,Tuesday,ISLINGTON STATION,TUMVS,0,0,E,BD,5043
-2021-03-23,14:26,Tuesday,FINCH STATION,TUNIP,9,13,S,YU,6116
-2021-03-23,15:05,Tuesday,MCCOWAN STATION,ERPR,5,10,S,SRT,0
-2021-03-23,17:06,Tuesday,SHERBOURNE STATION,SUDP,10,14,E,BD,5122
-2021-03-23,17:23,Tuesday,BROADVIEW STATION,MUIS,0,0,,BD,0
-2021-03-23,17:35,Tuesday,FINCH STATION,TUSUP,4,9,S,YU,5866
-2021-03-23,17:40,Tuesday,DUFFERIN STATION,SUAP,0,0,W,BD,5056
-2021-03-23,17:42,Tuesday,WARDEN STATION,SUDP,0,0,W,BD,5054
-2021-03-23,17:48,Tuesday,JANE STATION,SUDP,21,25,W,BD,5187
-2021-03-23,19:10,Tuesday,FINCH STATION,TUNIP,6,10,S,YU,5826
-2021-03-23,19:44,Tuesday,LAWRENCE STATION,MUIS,0,0,S,YU,0
-2021-03-23,20:37,Tuesday,BROADVIEW STATION,SUAE,0,0,,BD,0
-2021-03-23,21:06,Tuesday,EGLINTON STATION,MUIS,0,0,,YU,0
-2021-03-23,21:35,Tuesday,FINCH WEST STATION,SUDP,0,0,,YU,0
-2021-03-23,22:00,Tuesday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU/BD,0
-2021-03-23,23:06,Tuesday,DUNDAS STATION,PUMEL,0,0,,YU,0
-2021-03-23,23:41,Tuesday,VAUGHAN MC STATION,MUNOA,5,10,S,YU,5486
-2021-03-24,00:30,Wednesday,SPADINA BD STATION,MUIS,0,0,,BD,0
-2021-03-24,01:40,Wednesday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-03-24,02:24,Wednesday,SHEPPARD-YONGE STATION,MUSC,0,0,W,SHP,6151
-2021-03-24,05:36,Wednesday,SHEPPARD-YONGE STATION,MUSC,0,0,E,SHP,6156
-2021-03-24,06:00,Wednesday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU,0
-2021-03-24,06:08,Wednesday,BROADVIEW STATION,MUIRS,0,0,,BD,0
-2021-03-24,09:13,Wednesday,SHEPPARD WEST STATION,PUMO,23,27,N,YU,5436
-2021-03-24,09:43,Wednesday,YORK UNIVERSITY STATIO,SUAE,0,0,,YU,0
-2021-03-24,09:56,Wednesday,SPADINA BD STATION,MUIS,0,0,,BD,0
-2021-03-24,10:14,Wednesday,FINCH STATION,MUIRS,0,0,,YU,0
-2021-03-24,11:06,Wednesday,WELLESLEY STATION,SUDP,0,0,S,YU,5861
-2021-03-24,11:25,Wednesday,WILSON STATION,EUBO,4,8,N,YU,5841
-2021-03-24,11:39,Wednesday,DON MILLS STATION,MUWR,5,10,E,SHP,6151
-2021-03-24,11:41,Wednesday,WARDEN STATION,SUAE,10,14,E,BD,5085
-2021-03-24,11:44,Wednesday,SHEPPARD STATION,MUIS,0,0,S,YU,5701
-2021-03-24,11:45,Wednesday,SHERBOURNE STATION,SUO,0,0,,BD,0
-2021-03-24,12:03,Wednesday,YONGE BD STATION,SUDP,3,7,W,BD,5346
-2021-03-24,13:20,Wednesday,VAUGHAN MC STATION,MUTO,4,8,S,YU,5431
-2021-03-24,13:29,Wednesday,SHEPPARD-YONGE STATION,SUDP,5,10,E,SHP,6161
-2021-03-24,14:12,Wednesday,SHEPPARD-YONGE STATION,SUDP,5,10,E,SHP,6186
-2021-03-24,14:21,Wednesday,NORTH YORK CTR STATION,TUOS,0,0,S,YU,5826
-2021-03-24,14:27,Wednesday,WILSON STATION,MUTO,3,7,N,YU,5436
-2021-03-24,14:36,Wednesday,ST GEORGE YUS STATION,SUDP,0,0,S,YU,6006
-2021-03-24,14:42,Wednesday,OSSINGTON STATION,PUMEL,0,0,,BD,0
-2021-03-24,14:53,Wednesday,FINCH STATION,MUNCA,0,0,,YU,0
-2021-03-24,16:06,Wednesday,VAUGHAN MC STATION,MUTO,4,8,S,YU,5431
-2021-03-24,16:14,Wednesday,NORTH YORK CTR STATION,TUO,0,0,S,YU,5771
-2021-03-24,17:20,Wednesday,FINCH STATION,TUNIP,5,9,S,YU,0
-2021-03-24,17:31,Wednesday,ST CLAIR WEST STATION,SUAP,0,0,,YU,0
-2021-03-24,18:12,Wednesday,KEELE STATION,SUAP,6,10,W,BD,5240
-2021-03-24,18:15,Wednesday,EGLINTON STATION,SUO,0,0,,YU,0
-2021-03-24,18:15,Wednesday,RUNNYMEDE STATION,SUAP,4,8,E,BD,5111
-2021-03-24,18:29,Wednesday,COXWELL STATION,TUMVS,0,0,E,BD,5105
-2021-03-24,18:38,Wednesday,WARDEN STATION,TUO,3,7,E,BD,5105
-2021-03-24,18:47,Wednesday,ST CLAIR WEST STATION,TUO,5,9,S,YU,5991
-2021-03-24,18:54,Wednesday,WARDEN STATION,SUDP,5,9,W,BD,5044
-2021-03-24,19:13,Wednesday,INGLIS BUILDING,PUMEL,0,0,,,0
-2021-03-24,19:49,Wednesday,DONLANDS STATION,SUDP,0,0,E,BD,5340
-2021-03-24,19:57,Wednesday,MAIN STREET STATION,SUDP,17,24,E,BD,5340
-2021-03-24,20:20,Wednesday,FINCH WEST STATION,SUDP,0,0,,YU,0
-2021-03-24,20:22,Wednesday,WARDEN STATION,SUDP,12,16,E,BD,5340
-2021-03-24,20:47,Wednesday,ST CLAIR WEST STATION,MUD,0,0,S,YU,5921
-2021-03-24,22:00,Wednesday,YONGE UNIVERSITY SUBWA,MUO,0,0,B,YU/BD,0
-2021-03-24,22:03,Wednesday,BESSARION STATION,EUBK,5,10,E,SHP,6171
-2021-03-24,22:14,Wednesday,COLLEGE STATION,SUDP,4,9,N,YU,5706
-2021-03-24,22:30,Wednesday,SHEPPARD-YONGE STATION,MUSC,0,0,W,SHP,6161
-2021-03-24,23:27,Wednesday,VAUGHAN MC STATION,EUPI,5,10,S,YU,5816
-2021-03-24,23:32,Wednesday,ST GEORGE BD STATION,MUSAN,7,14,W,BD,5062
-2021-03-24,23:36,Wednesday,SHEPPARD TAIL TRACK #2,EUOE,0,0,E,SHP,6176
-2021-03-24,23:45,Wednesday,SHEPPARD-YONGE STATION,TUCC,5,10,E,SHP,6141
-2021-03-25,00:33,Thursday,KING STATION,PUTO,14,19,N,YU,5481
-2021-03-25,00:41,Thursday,ST GEORGE YUS STATION,PUTO,3,8,N,YU,6121
-2021-03-25,01:04,Thursday,VAUGHAN MC STATION,MUATC,6,11,S,YU,5746
-2021-03-25,01:22,Thursday,YONGE BD STATION,MUDD,4,11,W,BD,5044
-2021-03-25,01:41,Thursday,WILSON STATION,MUIRS,0,0,S,YU,5972
-2021-03-25,01:49,Thursday,SHEPPARD WEST STATION,MUIS,0,0,,YU,0
-2021-03-25,02:19,Thursday,FINCH STATION,MUIS,0,0,,YU,0
-2021-03-25,05:59,Thursday,KEELE STATION,EUNT,5,10,W,BD,5079
-2021-03-25,06:27,Thursday,FINCH STATION,EUSC,0,0,S,YU,5906
-2021-03-25,06:45,Thursday,FINCH STATION,EUBK,3,6,S,YU,5811
-2021-03-25,06:54,Thursday,VAUGHAN MC STATION,EUBO,3,6,S,YU,5781
-2021-03-25,07:24,Thursday,ROSEDALE STATION,TUSC,3,6,N,YU,5991
-2021-03-25,08:21,Thursday,VAUGHAN MC STATION,MUTO,3,6,S,YU,5886
-2021-03-25,09:48,Thursday,KING STATION,SUAE,0,0,N,YU,0
-2021-03-25,09:54,Thursday,ST GEORGE YUS STATION,MUIS,0,0,,YU,0
-2021-03-25,11:34,Thursday,COLLEGE STATION,MUNCA,0,0,,YU,0
-2021-03-25,11:34,Thursday,VAUGHAN MC STATION,SUDP,0,0,N,YU,0
-2021-03-25,12:11,Thursday,KEELE STATION,PUSTS,3,7,E,BD,5257
-2021-03-25,13:28,Thursday,HIGHWAY 407 STATION,MUSAN,3,6,S,YU,5521
-2021-03-25,14:13,Thursday,VAUGHAN MC STATION,MUSAN,3,6,S,YU,6111
-2021-03-25,14:59,Thursday,DAVISVILLE STATION,SUDP,4,7,N,YU,5706
-2021-03-25,15:15,Thursday,QUEEN STATION,MUIS,0,0,S,YU,0
-2021-03-25,15:35,Thursday,ROSEDALE STATION,SUO,5,8,N,YU,5976
-2021-03-25,16:48,Thursday,DUFFERIN STATION,PUTDN,4,8,E,BD,5246
-2021-03-25,16:56,Thursday,EGLINTON WEST STATION,SUDP,0,0,N,YU,5711
-2021-03-25,17:28,Thursday,CHRISTIE STATION,SUDP,0,0,W,BD,5079
-2021-03-25,17:31,Thursday,DUNDAS WEST STATION,PUTDN,4,8,W,BD,5259
-2021-03-25,17:49,Thursday,QUEEN'S PARK STATION,EUDO,4,7,N,YU,5671
-2021-03-25,17:49,Thursday,RUNNYMEDE STATION,MUPAA,5,9,W,BD,5292
-2021-03-25,18:12,Thursday,KENNEDY BD STATION,SUAP,0,0,,BD,0
-2021-03-25,18:17,Thursday,ROSEDALE STATION,SUO,0,0,S,YU,5636
-2021-03-25,18:39,Thursday,COLLEGE STATION,PUMEL,0,0,,YU,0
-2021-03-25,19:42,Thursday,WARDEN STATION,MUIRS,0,0,,BD,0
-2021-03-25,19:48,Thursday,DUNDAS STATION,SUDP,3,6,S,YU,6086
-2021-03-25,19:50,Thursday,ST GEORGE YUS STATION,SUO,0,0,S,YU,6011
-2021-03-25,20:52,Thursday,FINCH STATION,MUIR,3,6,N,YU,6121
-2021-03-25,21:19,Thursday,OSSINGTON STATION,SUAP,9,16,E,BD,5340
-2021-03-25,21:35,Thursday,CHRISTIE STATION,EUDO,6,13,W,BD,5340
-2021-03-25,22:00,Thursday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU/BD,0
-2021-03-25,22:11,Thursday,VAUGHAN MC STATION,MUATC,3,8,S,YU,5706
-2021-03-25,22:17,Thursday,MAIN STREET STATION,MUPLC,0,0,W,BD,5259
-2021-03-25,22:26,Thursday,KING STATION,PUTO,3,8,N,YU,5921
-2021-03-25,22:36,Thursday,LAWRENCE WEST STATION,MUATC,6,11,S,YU,5706
-2021-03-25,22:38,Thursday,BATHURST STATION,EUCD,3,10,W,BD,5340
-2021-03-25,23:25,Thursday,VAUGHAN MC STATION,PUTO,10,15,S,YU,5731
-2021-03-25,23:59,Thursday,BLOOR STATION,MUSAN,5,10,N,YU,6031
-2021-03-26,01:14,Friday,PIONEER VILLAGE STATIO,MUPAA,4,9,S,YU,5616
-2021-03-26,01:40,Friday,ISLINGTON STATION,MUIS,0,0,E,BD,0
-2021-03-26,01:58,Friday,VAUGHAN MC STATION,MUPAA,0,0,N,YU,6016
-2021-03-26,02:18,Friday,WILSON STATION,MUIS,0,0,,YU,0
-2021-03-26,02:30,Friday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-03-26,02:39,Friday,VAUGHAN MC STATION,MUIS,0,0,,YU,0
-2021-03-26,03:42,Friday,YONGE BD STATION,MUPLB,0,0,E,BD,0
-2021-03-26,05:40,Friday,LAWRENCE STATION,TUOS,4,9,N,YU,5516
-2021-03-26,05:45,Friday,YORK MILLS STATION,TUO,5,10,N,YU,5516
-2021-03-26,07:11,Friday,KEELE STATION,MUSC,0,0,W,BD,5366
-2021-03-26,07:17,Friday,ST ANDREW STATION,SUO,3,6,N,YU,5896
-2021-03-26,07:58,Friday,FINCH STATION,MUSC,0,0,S,YU,5721
-2021-03-26,08:04,Friday,ROSEDALE STATION,SUAP,6,9,N,YU,5911
-2021-03-26,08:07,Friday,SPADINA BD STATION,MUPAA,0,0,E,BD,5085
-2021-03-26,08:34,Friday,ST CLAIR STATION,SUO,8,11,S,YU,5936
-2021-03-26,08:35,Friday,MUSEUM STATION,MUPAA,0,0,S,YU,5631
-2021-03-26,08:39,Friday,FINCH WEST STATION,SUO,5,8,S,YU,5381
-2021-03-26,09:03,Friday,WILSON YARD (SOUTH TAI,PUTO,0,0,,,0
-2021-03-26,11:44,Friday,ST GEORGE BD STATION,SUUT,9,13,W,BD,5246
-2021-03-26,11:57,Friday,BROADVIEW STATION,SUDP,4,8,W,BD,5259
-2021-03-26,11:57,Friday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,5746
-2021-03-26,13:25,Friday,DON MILLS STATION,TUSC,0,0,E,SHP,6186
-2021-03-26,13:25,Friday,SHERBOURNE STATION,MUIS,0,0,,BD,0
-2021-03-26,14:34,Friday,KIPLING STATION,MUPAA,0,0,E,BD,5098
-2021-03-26,14:38,Friday,GREENWOOD STATION,SUDP,6,10,W,BD,5120
-2021-03-26,14:47,Friday,DON MILLS STATION,MUSC,0,0,W,SHP,6151
-2021-03-26,14:50,Friday,LAWRENCE STATION,MUSC,0,0,N,YU,5761
-2021-03-26,15:16,Friday,COXWELL STATION,SUDP,4,8,W,BD,5259
-2021-03-26,15:17,Friday,WELLESLEY STATION,MUSAN,3,6,S,YU,5751
-2021-03-26,15:44,Friday,VAUGHAN MC STATION,TUNIP,3,6,S,YU,5926
-2021-03-26,16:54,Friday,EGLINTON STATION,MUIS,0,0,,YU,0
-2021-03-26,17:57,Friday,DAVISVILLE STATION,SUDP,0,0,N,YU,5626
-2021-03-26,18:28,Friday,SHEPPARD WEST STATION,SUAP,0,0,N,YU,5781
-2021-03-26,19:25,Friday,ST GEORGE YUS STATION,SUDP,5,8,N,YU,5721
-2021-03-26,20:19,Friday,YORK MILLS STATION,MUSAN,3,6,N,YU,5846
-2021-03-26,20:32,Friday,DUPONT STATION,MUIS,0,0,S,YU,0
-2021-03-26,21:03,Friday,DAVISVILLE STATION,EUDO,3,6,S,YU,5451
-2021-03-26,21:42,Friday,ST CLAIR WEST STATION,MUIR,5,8,N,YU,6121
-2021-03-26,22:00,Friday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU/BD,0
-2021-03-26,22:03,Friday,WILSON STATION,SUO,3,6,N,YU,5601
-2021-03-26,22:09,Friday,COLLEGE STATION,MUPAA,0,0,N,YU,5421
-2021-03-26,23:23,Friday,ST ANDREW STATION,SUAP,10,15,N,YU,5711
-2021-03-26,23:29,Friday,BROADVIEW STATION,MUI,9,16,W,BD,5246
-2021-03-26,23:39,Friday,VAUGHAN MC STATION,MUNOA,5,10,S,YU,0
-2021-03-26,23:52,Friday,YONGE BD STATION,MUIS,0,0,,BD,0
-2021-03-27,00:01,Saturday,OSGOODE STATION,SUDP,0,0,N,YU,5486
-2021-03-27,00:21,Saturday,SHEPPARD STATION,SUUT,30,35,N,YU,6126
-2021-03-27,01:55,Saturday,KENNEDY BD STATION,MUIS,0,0,W,BD,5213
-2021-03-27,02:15,Saturday,FINCH STATION,MUIS,0,0,,YU,0
-2021-03-27,02:48,Saturday,VAUGHAN MC STATION,SUO,0,0,,YU,0
-2021-03-27,06:58,Saturday,VAUGHAN MC STATION,MUTO,0,0,S,YU,5626
-2021-03-27,07:53,Saturday,VAUGHAN MC STATION,MUTO,3,8,S,YU,5821
-2021-03-27,07:58,Saturday,FINCH STATION,EUSC,0,0,S,YU,5906
-2021-03-27,08:34,Saturday,BLOOR STATION,MUPAA,0,0,N,YU,5971
-2021-03-27,09:27,Saturday,VAUGHAN MC STATION,MUNOA,4,8,S,YU,0
-2021-03-27,09:28,Saturday,MCCOWAN STATION,MRO,5,10,S,SRT,0
-2021-03-27,09:34,Saturday,QUEEN STATION,PUMEL,0,0,,YU,0
-2021-03-27,11:10,Saturday,EGLINTON STATION,TUNIP,4,8,N,YU,5671
-2021-03-27,11:17,Saturday,GREENWOOD STATION,EUSC,0,0,E,BD,5068
-2021-03-27,12:28,Saturday,YONGE BD STATION,SUDP,0,0,W,BD,5298
-2021-03-27,12:44,Saturday,WILSON STATION,MUNOA,4,8,S,YU,0
-2021-03-27,12:59,Saturday,KENNEDY BD STATION,SUO,4,8,W,BD,5282
-2021-03-27,13:43,Saturday,KENNEDY BD STATION,PUMEL,0,0,,BD,0
-2021-03-27,13:53,Saturday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,0
-2021-03-27,14:12,Saturday,KIPLING STATION,EUNT,4,8,E,BD,5213
-2021-03-27,14:13,Saturday,DUNDAS STATION,SUDP,0,0,S,YU,5766
-2021-03-27,14:25,Saturday,ROSEDALE STATION,SUUT,24,27,N,YU,5571
-2021-03-27,14:25,Saturday,SHEPPARD-YONGE STATION,TUMVS,0,0,E,SHP,6141
-2021-03-27,14:39,Saturday,YORKDALE STATION,MUNOA,3,6,N,YU,0
-2021-03-27,16:10,Saturday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,0
-2021-03-27,17:10,Saturday,DON MILLS STATION,TUSC,0,0,W,SHP,6146
-2021-03-27,17:32,Saturday,WILSON STATION,SUUT,3,6,N,YU,5676
-2021-03-27,18:18,Saturday,WARDEN STATION,TUMVS,0,0,W,BD,5288
-2021-03-27,18:40,Saturday,VAUGHAN MC STATION,SUDP,5,10,S,YU,5571
-2021-03-27,18:45,Saturday,COLLEGE STATION,SUDP,0,0,S,YU,6016
-2021-03-27,19:17,Saturday,VAUGHAN MC STATION,MUNOA,5,9,S,YU,0
-2021-03-27,19:26,Saturday,SPADINA YUS STATION,SUDP,4,9,S,YU,5571
-2021-03-27,21:11,Saturday,HIGHWAY 407 STATION,SUDP,10,12,N,YU,5751
-2021-03-27,21:16,Saturday,LANSDOWNE STATION,MUSAN,3,9,W,BD,5044
-2021-03-27,21:30,Saturday,WILSON STATION,SUDP,3,8,N,YU,5641
-2021-03-27,21:32,Saturday,OSGOODE STATION,SUDP,3,8,S,YU,5971
-2021-03-27,21:50,Saturday,KENNEDY BD STATION,MUIRS,0,0,,BD,0
-2021-03-27,21:52,Saturday,SPADINA YUS STATION,MUIS,0,0,N,YU,0
-2021-03-27,22:00,Saturday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU/BD,0
-2021-03-27,23:01,Saturday,FINCH STATION,MUIS,0,0,,YU,0
-2021-03-27,23:11,Saturday,SHEPPARD WEST STATION,MUSAN,5,10,N,YU,5976
-2021-03-27,23:21,Saturday,SHERBOURNE STATION,MUPLB,9,15,W,BD,5035
-2021-03-27,23:39,Saturday,ISLINGTON STATION,MUIS,0,0,,BD,0
-2021-03-28,00:05,Sunday,BAY STATION,SUO,0,0,E,BD,5106
-2021-03-28,00:26,Sunday,UNION STATION,SUO,0,0,,YU,0
-2021-03-28,01:17,Sunday,HIGHWAY 407 STATION,MUIR,5,10,S,YU,5706
-2021-03-28,01:35,Sunday,SHEPPARD WEST STATION,MUI,0,0,S,YU,5646
-2021-03-28,02:22,Sunday,HIGHWAY 407 STATION,SUDP,5,10,N,YU,5791
-2021-03-28,02:27,Sunday,KIPLING STATION,MUI,8,0,W,BD,5011
-2021-03-28,07:48,Sunday,COXWELL STATION,SUUT,10,0,W,BD,5213
-2021-03-28,08:26,Sunday,YONGE BD STATION,PUTTC,0,0,E,BD,5015
-2021-03-28,09:24,Sunday,BROADVIEW STATION,PUTSC,0,0,W,BD,5091
-2021-03-28,09:26,Sunday,VAUGHAN MC STATION,TUNIP,3,6,S,YU,5551
-2021-03-28,09:55,Sunday,QUEEN STATION,SUUT,28,32,S,YU,5696
-2021-03-28,10:24,Sunday,QUEEN STATION,MUSAN,4,8,S,YU,5696
-2021-03-28,10:42,Sunday,OSSINGTON STATION,SUO,0,0,,BD,0
-2021-03-28,10:53,Sunday,BATHURST STATION,MUSC,0,0,E,BD,5292
-2021-03-28,11:36,Sunday,PIONEER VILLAGE STATIO,MUPAA,0,0,S,YU,5706
-2021-03-28,11:40,Sunday,HIGHWAY 407 STATION,SUEAS,33,37,N,YU,5461
-2021-03-28,11:50,Sunday,DON MILLS STATION,MUO,5,10,W,SHP,6181
-2021-03-28,12:07,Sunday,SHEPPARD WEST STATION,MUTO,9,14,S,YU,5536
-2021-03-28,12:24,Sunday,VAUGHAN MC STATION,TUNIP,5,10,S,YU,5776
-2021-03-28,12:34,Sunday,LESLIE STATION,TUOS,8,13,E,SHP,6161
-2021-03-28,12:58,Sunday,ISLINGTON STATION,MUPLB,37,41,E,BD,5014
-2021-03-28,13:14,Sunday,SUMMERHILL STATION,EUDO,14,18,N,YU,5466
-2021-03-28,13:30,Sunday,RUNNYMEDE STATION,MUIS,0,0,,BD,0
-2021-03-28,14:07,Sunday,ROYAL YORK STATION,MUIRS,0,0,W,BD,5213
-2021-03-28,14:23,Sunday,FINCH STATION,MUPAA,3,7,S,YU,5891
-2021-03-28,15:34,Sunday,OLD MILL STATION,TUMVS,0,0,W,BD,5205
-2021-03-28,16:04,Sunday,VAUGHAN MC STATION,MUNOA,3,7,S,YU,0
-2021-03-28,17:16,Sunday,OSSINGTON STATION,SUDP,9,13,E,BD,5262
-2021-03-28,21:12,Sunday,FINCH STATION,MUIR,5,10,S,YU,5526
-2021-03-28,21:45,Sunday,WILSON STATION,SUDP,0,0,N,YU,5431
-2021-03-28,22:00,Sunday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU/BD,0
-2021-03-28,22:10,Sunday,COXWELL STATION,SUUT,5,9,W,BD,5059
-2021-03-29,00:01,Monday,VAUGHAN MC STATION,MUO,0,0,B,YUS,0
-2021-03-29,00:32,Monday,COLLEGE STATION,SUUT,0,0,N,YU,5586
-2021-03-29,01:27,Monday,DONLANDS STATION,PUTD,9,16,W,BD,5213
-2021-03-29,01:40,Monday,VAUGHAN MC STATION,MUIS,0,0,,YU,0
-2021-03-29,01:50,Monday,PAPE STATION,MUIS,0,0,E,BD,0
-2021-03-29,02:04,Monday,SHEPPARD WEST STATION,MUIS,0,0,,YU,0
-2021-03-29,07:11,Monday,ROSEDALE STATION,MUATC,3,6,S,YU,5686
-2021-03-29,07:42,Monday,ISLINGTON STATION,SUDP,0,0,W,BD,5079
-2021-03-29,07:44,Monday,WILSON STATION,EUDO,4,8,S,YU,5991
-2021-03-29,08:18,Monday,FINCH STATION,MUSC,0,0,S,YU,5841
-2021-03-29,09:16,Monday,DON MILLS STATION,MUO,5,10,W,SHP,6181
-2021-03-29,13:03,Monday,DUNDAS STATION,SUDP,0,0,N,YU,5436
-2021-03-29,13:05,Monday,ST CLAIR WEST STATION,MUIR,15,19,S,YU,5726
-2021-03-29,13:10,Monday,LAWRENCE STATION,SUDP,0,0,N,YU,5846
-2021-03-29,13:12,Monday,WARDEN STATION,SUUT,3,7,E,BD,5080
-2021-03-29,13:25,Monday,WELLESLEY STATION,SUUT,14,18,N,YU,5591
-2021-03-29,13:34,Monday,COXWELL STATION,MUSAN,7,11,E,BD,5085
-2021-03-29,14:41,Monday,PAPE STATION,SUDP,4,8,E,BD,5061
-2021-03-29,14:54,Monday,FINCH STATION,TUNIP,3,6,S,YU,5586
-2021-03-29,15:13,Monday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,0
-2021-03-29,15:47,Monday,DUNDAS STATION,MUIR,0,0,N,YU,5436
-2021-03-29,15:55,Monday,PAPE STATION,MUPAA,0,0,E,BD,5358
-2021-03-29,16:40,Monday,ST GEORGE YUS STATION,MUIS,0,0,N,YU,0
-2021-03-29,16:54,Monday,NORTH YORK CTR STATION,MUSAN,3,6,S,YU,5686
-2021-03-29,16:58,Monday,LAWRENCE STATION,MUSC,0,0,N,YU,5851
-2021-03-29,17:18,Monday,CASTLE FRANK STATION,SUDP,0,0,E,BD,0
-2021-03-29,17:34,Monday,YONGE BD STATION,PUMEL,0,0,,BD,0
-2021-03-29,18:27,Monday,SPADINA BD STATION,MUPAA,0,0,W,BD,5101
-2021-03-29,18:53,Monday,DON MILLS STATION,MUO,5,10,W,SHP,6181
-2021-03-29,19:05,Monday,BLOOR STATION,SUDP,0,0,S,YU,0
-2021-03-29,19:25,Monday,VAUGHAN MC STATION,MUCL,5,12,S,YU,0
-2021-03-29,19:30,Monday,YORK UNIVERSITY STATIO,SUPOL,8,13,N,YU,5886
-2021-03-29,19:50,Monday,DAVISVILLE STATION,MUPAA,0,0,S,YU,5556
-2021-03-29,19:55,Monday,BROADVIEW STATION,SUDP,5,12,W,BD,5355
-2021-03-29,19:58,Monday,DUFFERIN STATION,PUMST,0,0,,BD,0
-2021-03-29,20:41,Monday,KENNEDY BD STATION,MUIRS,0,0,,BD,0
-2021-03-29,20:49,Monday,DON MILLS STATION,SUUT,11,16,W,SHP,6151
-2021-03-29,20:58,Monday,BAYVIEW STATION,TUMVS,10,15,E,SHP,6161
-2021-03-29,21:04,Monday,BAYVIEW STATION,TUSC,0,0,E,SHP,6161
-2021-03-29,21:41,Monday,KING STATION,SUDP,0,0,,YU,0
-2021-03-29,21:47,Monday,BLOOR STATION,SUDP,0,0,S,YU,6011
-2021-03-29,22:00,Monday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU/BD,0
-2021-03-29,22:15,Monday,YORKDALE STATION,SUDP,5,12,N,YU,5841
-2021-03-29,23:00,Monday,FINCH TO SHEPPARD STAT,MUO,0,0,B,YUS,0
-2021-03-29,23:03,Monday,SHEPPARD STATION,PUSTS,0,0,N,YU,6036
-2021-03-29,23:42,Monday,KENNEDY BD STATION,EUME,0,0,W,BD,5213
-2021-03-30,00:00,Tuesday,VAUGHAN MC STATION,MUO,0,0,,YU,0
-2021-03-30,00:36,Tuesday,INGLIS BUILDING,PUMEL,0,0,,,0
-2021-03-30,00:45,Tuesday,ST CLAIR STATION,SUDP,12,19,S,YU,5431
-2021-03-30,00:49,Tuesday,ST CLAIR STATION,SUO,0,0,N,YU,5536
-2021-03-30,01:15,Tuesday,DAVISVILLE STATION,TUCC,5,12,S,YU,5836
-2021-03-30,01:30,Tuesday,PIONEER VILLAGE STATIO,MUPAA,0,0,S,YU,5791
-2021-03-30,02:08,Tuesday,LAWRENCE WEST STATION,SUDP,0,0,,YU,0
-2021-03-30,05:23,Tuesday,KENNEDY BD STATION,MUNCA,0,0,,BD,0
-2021-03-30,05:31,Tuesday,FINCH STATION,PUTWZ,5,10,S,YU,5886
-2021-03-30,05:55,Tuesday,OSSINGTON STATION,TUS,5,0,W,BD,5302
-2021-03-30,06:10,Tuesday,SHEPPARD-YONGE STATION,MUSC,0,0,E,SHP,6161
-2021-03-30,07:49,Tuesday,FINCH STATION,PUMEL,0,0,,YU,0
-2021-03-30,07:51,Tuesday,ROSEDALE STATION,MUSC,0,0,N,YU,5551
-2021-03-30,08:46,Tuesday,DAVISVILLE STATION,PUSNT,50,53,N,YU,5636
-2021-03-30,09:10,Tuesday,ST CLAIR WEST STATION,SUDP,6,9,S,YU,5716
-2021-03-30,09:27,Tuesday,EGLINTON STATION,SUAE,5,8,S,YU,5786
-2021-03-30,09:45,Tuesday,ST CLAIR STATION,MUSC,0,0,N,YU,5636
-2021-03-30,11:01,Tuesday,UNION STATION,MUIRS,0,0,,YU,0
-2021-03-30,12:05,Tuesday,YORK UNIVERSITY STATIO,MUIR,10,13,N,YU,5581
-2021-03-30,13:13,Tuesday,ST GEORGE YUS STATION,SUDP,13,16,N,YU,6076
-2021-03-30,14:06,Tuesday,FINCH STATION,EUSC,3,6,S,YU,5621
-2021-03-30,14:09,Tuesday,KENNEDY BD STATION,EUPI,4,8,W,BD,5108
-2021-03-30,15:01,Tuesday,SPADINA YUS STATION,MUSAN,3,6,N,YU,6061
-2021-03-30,15:16,Tuesday,DUFFERIN STATION,MUPAA,0,0,E,BD,5025
-2021-03-30,15:27,Tuesday,ROYAL YORK STATION,MUIR,0,0,W,BD,5342
-2021-03-30,16:46,Tuesday,BLOOR STATION,MUIS,0,0,S,YU,0
-2021-03-30,18:50,Tuesday,LANSDOWNE STATION,SUDP,3,7,W,BD,5059
-2021-03-30,19:58,Tuesday,VICTORIA PARK STATION,SUDP,0,0,W,BD,5213
-2021-03-30,21:35,Tuesday,UNION STATION,MUPAA,3,10,N,YU,5441
-2021-03-30,22:00,Tuesday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU/BD,0
-2021-03-30,22:27,Tuesday,DAVISVILLE YARD,MUO,0,0,,YU,0
-2021-03-30,22:30,Tuesday,YONGE BD STATION,SUO,0,0,W,BD,0
-2021-03-30,23:00,Tuesday,FINCH TO SHEPPARD STAT,MUO,0,0,B,YUS,0
-2021-03-30,23:31,Tuesday,YORK MILLS STATION,SUAP,0,0,,YU,0
-2021-03-31,00:28,Wednesday,KEELE STATION,MUIS,0,0,E,BD,5302
-2021-03-31,01:09,Wednesday,ROSEDALE STATION,SUDP,0,0,N,YU,5566
-2021-03-31,01:30,Wednesday,CASTLE FRANK STATION,SUDP,0,0,W,BD,5366
-2021-03-31,01:32,Wednesday,DON MILLS STATION,TUMVS,0,0,E,SHP,6196
-2021-03-31,01:33,Wednesday,SHEPPARD STATION,MUIS,0,0,N,YU,0
-2021-03-31,02:02,Wednesday,VAUGHAN MC STATION,MUIRS,0,0,,YU,0
-2021-03-31,02:20,Wednesday,FINCH STATION,SUO,0,0,,YU,0
-2021-03-31,05:45,Wednesday,DUNDAS WEST STATION,MUNCA,0,0,,BD,0
-2021-03-31,05:45,Wednesday,DUNDAS WEST STATION,MUNCA,0,0,,BD,0
-2021-03-31,05:55,Wednesday,OSSINGTON STATION,EUSC,5,0,W,BD,5271
-2021-03-31,08:06,Wednesday,KEELE STATION,MUSC,0,0,W,BD,5246
-2021-03-31,08:13,Wednesday,KEELE STATION,PUSTS,0,0,E,BD,5162
-2021-03-31,08:45,Wednesday,KIPLING STATION,MUPAA,0,0,E,BD,5069
-2021-03-31,09:01,Wednesday,KENNEDY SRT STATION,ERPR,3,8,N,SRT,3021
-2021-03-31,10:00,Wednesday,ROSEDALE STATION,MUSC,3,6,N,YU,5681
-2021-03-31,11:00,Wednesday,COLLEGE STATION,MUNCA,0,0,,YU,0
-2021-03-31,11:50,Wednesday,KIPLING STATION,PUSO,3,7,E,BD,5164
-2021-03-31,12:52,Wednesday,WARDEN STATION,SUUT,3,7,W,BD,5363
-2021-03-31,12:54,Wednesday,OSGOODE STATION,MUO,0,0,,YU,0
-2021-03-31,13:12,Wednesday,DUPONT STATION,PUMO,0,0,,YU,0
-2021-03-31,13:19,Wednesday,SHEPPARD-YONGE STATION,TUSC,0,0,E,SHP,6196
-2021-03-31,14:06,Wednesday,HIGHWAY 407 STATION,MUIS,21,24,S,YU,5706
-2021-03-31,14:08,Wednesday,BLOOR STATION,SUDP,5,9,S,YU,5981
-2021-03-31,14:57,Wednesday,CHRISTIE STATION,PUSTS,0,0,W,BD,5197
-2021-03-31,15:41,Wednesday,FINCH STATION,MUI,0,0,S,YU,5556
-2021-03-31,16:38,Wednesday,QUEEN'S PARK STATION,SUDP,3,6,S,YU,5646
-2021-03-31,16:51,Wednesday,SUMMERHILL STATION,SUUT,22,25,N,YU,6066
-2021-03-31,17:17,Wednesday,DAVISVILLE STATION,MUPAA,0,0,S,YU,5631
-2021-03-31,17:44,Wednesday,LANSDOWNE STATION,MUIS,0,0,W,BD,5271
-2021-03-31,18:12,Wednesday,FINCH STATION,TUMVS,0,0,N,YU,6036
-2021-03-31,18:26,Wednesday,WELLESLEY STATION,SUO,3,6,S,YU,5796
-2021-03-31,19:38,Wednesday,YONGE BD STATION,MUIS,0,0,E,BD,0
-2021-03-31,20:45,Wednesday,PAPE STATION,MUIRS,0,0,,BD,0
-2021-03-31,21:40,Wednesday,ST ANDREW STATION,MUI,22,27,N,YU,5766
-2021-03-31,22:00,Wednesday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU/BD,0
-2021-03-31,22:51,Wednesday,BAY STATION,SUO,4,10,W,BD,5358
-2021-03-31,22:58,Wednesday,EGLINTON STATION,SUO,5,12,S,YU,6056
-2021-03-31,23:00,Wednesday,FINCH TO SHEPPARD STAT,MUO,0,0,B,YU,0
-2021-04-01,01:08,Thursday,PIONEER VILLAGE STATIO,MUATC,3,10,S,YU,5561
-2021-04-01,01:15,Thursday,SHEPPARD WEST STATION,SUUT,0,0,S,YU,5691
-2021-04-01,02:01,Thursday,UNION STATION,MUIS,0,0,,YU,0
-2021-04-01,02:29,Thursday,FINCH WEST STATION,SUDP,0,0,,YU,0
-2021-04-01,05:03,Thursday,KEELE YARD,SUG,5,10,W,BD,5303
-2021-04-01,05:57,Thursday,DAVISVILLE BUILD UP,PUTOE,0,0,N,YU,0
-2021-04-01,06:02,Thursday,GREENWOOD STATION,EUYRD,5,10,E,BD,5315
-2021-04-01,06:05,Thursday,DAVISVILLE STATION,PUCSC,6,9,S,YU,5611
-2021-04-01,07:54,Thursday,ST CLAIR WEST STATION,SUDP,0,0,S,YU,5826
-2021-04-01,08:14,Thursday,BAY STATION,PUSRA,9,13,W,BD,5295
-2021-04-01,08:35,Thursday,SHEPPARD STATION,PUEO,3,6,S,YU,6041
-2021-04-01,09:44,Thursday,DAVISVILLE STATION,PUCSC,3,6,S,YU,5751
-2021-04-01,09:50,Thursday,COLLEGE STATION,MUIS,0,0,,YU,0
-2021-04-01,10:09,Thursday,DUFFERIN STATION,SUDP,11,15,W,BD,5173
-2021-04-01,10:37,Thursday,KIPLING STATION,MUI,6,11,E,BD,5002
-2021-04-01,12:12,Thursday,PAPE STATION,SUDP,0,0,,BD,0
-2021-04-01,12:59,Thursday,YORK MILLS STATION,EUSC,0,0,N,YU,5726
-2021-04-01,13:31,Thursday,DUNDAS STATION,MUIRS,0,0,,YU,0
-2021-04-01,14:01,Thursday,LAWRENCE STATION,SUO,0,0,,YU,0
-2021-04-01,14:19,Thursday,RUNNYMEDE STATION,SUO,4,8,W,BD,5338
-2021-04-01,15:32,Thursday,VICTORIA PARK STATION,MUPLB,32,36,W,BD,5074
-2021-04-01,15:51,Thursday,LAWRENCE STATION,MUPAA,0,0,N,YU,5976
-2021-04-01,16:08,Thursday,YORK MILLS STATION,MUTO,3,6,S,YU,5566
-2021-04-01,16:27,Thursday,BLOOR STATION,MUIS,0,0,S,YU,0
-2021-04-01,16:53,Thursday,PAPE STATION,SUDP,11,15,E,BD,5320
-2021-04-01,17:51,Thursday,FINCH STATION,TUNIP,3,6,S,YU,5701
-2021-04-01,19:13,Thursday,SHEPPARD WEST STATION,SUAP,0,0,N,YU,0
-2021-04-01,19:36,Thursday,MCCOWAN STATION,MRPAA,0,0,S,SRT,3002
-2021-04-01,19:47,Thursday,LAWRENCE EAST STATION,SRDP,18,23,S,SRT,3002
-2021-04-01,20:04,Thursday,EGLINTON WEST STATION,SUAP,4,9,N,YU,6026
-2021-04-01,20:12,Thursday,WELLESLEY STATION,MUIS,0,0,,YU,0
-2021-04-01,20:40,Thursday,MAIN STREET STATION,MUPLC,0,0,,BD,0
-2021-04-01,20:53,Thursday,BATHURST STATION,SUO,0,0,,BD,0
-2021-04-01,21:07,Thursday,DON MILLS STATION,SUO,7,12,W,SHP,6196
-2021-04-01,21:22,Thursday,RUNNYMEDE STATION,SUAP,0,0,W,BD,0
-2021-04-01,22:00,Thursday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-04-01,22:16,Thursday,GLENCAIRN STATION,SUDP,0,0,S,YU,5636
-2021-04-01,22:26,Thursday,SHEPPARD-YONGE STATION,TUSC,0,0,E,SHP,6191
-2021-04-01,22:34,Thursday,VAUGHAN MC STATION,MUATC,3,10,S,YU,5561
-2021-04-01,23:00,Thursday,SHEPPARD STATION,MUO,0,0,,YU,0
-2021-04-02,00:01,Friday,YORK MILLS STATION,MUSC,0,0,S,YU,0
-2021-04-02,00:03,Friday,YORK MILLS STATION,MUSC,0,0,S,YU,5771
-2021-04-02,00:08,Friday,YORK MILLS STATION,MUSC,0,0,S,YU,5556
-2021-04-02,00:11,Friday,YORK MILLS STATION,MUSC,0,0,S,YU,5606
-2021-04-02,00:31,Friday,YORK MILLS STATION,MUSC,0,0,S,YU,6121
-2021-04-02,00:39,Friday,YORK MILLS STATION,MUSC,0,0,S,YU,5611
-2021-04-02,00:42,Friday,YORK MILLS STATION,MUSC,0,0,S,YU,5881
-2021-04-02,00:51,Friday,YORK MILLS STATION,MUSC,0,0,S,YU,5871
-2021-04-02,00:54,Friday,YORK MILLS STATION,MUSC,0,0,S,YU,5976
-2021-04-02,01:00,Friday,YORK MILLS STATION,MUSC,0,0,S,YU,5391
-2021-04-02,01:05,Friday,YORK MILLS STATION,MUSC,0,0,S,YU,5621
-2021-04-02,01:12,Friday,YORK MILLS STATION,MUSC,0,0,S,YU,5941
-2021-04-02,01:19,Friday,EGLINTON STATION,MUIRS,0,0,,YU,0
-2021-04-02,01:24,Friday,YORK MILLS STATION,MUSC,0,0,S,YU,5861
-2021-04-02,01:29,Friday,SHEPPARD WEST STATION,MUIR,0,0,S,YU,5634
-2021-04-02,01:34,Friday,YORK MILLS STATION,MUSC,0,0,S,YU,5986
-2021-04-02,01:43,Friday,YORK MILLS STATION,MUSC,0,0,S,YU,5426
-2021-04-02,05:51,Friday,GREENWOOD STATION,TUNIP,5,9,E,BD,5021
-2021-04-02,06:09,Friday,KIPLING STATION,EUOE,4,8,W,BD,5054
-2021-04-02,06:31,Friday,SPADINA YUS STATION,EUDO,0,0,N,YU,6041
-2021-04-02,07:24,Friday,YORK MILLS STATION,MUPAA,3,8,N,YU,5551
-2021-04-02,08:16,Friday,BAYVIEW STATION,TUSC,0,0,E,SHP,6186
-2021-04-02,08:20,Friday,ST CLAIR STATION,MUIRS,0,0,,YU,0
-2021-04-02,10:13,Friday,WOODBINE STATION,MUIRS,0,0,,BD,0
-2021-04-02,10:48,Friday,ST CLAIR WEST STATION,MUTO,4,9,S,YU,5516
-2021-04-02,11:24,Friday,WILSON STATION,TUNOA,4,8,S,YU,5756
-2021-04-02,11:55,Friday,SPADINA BD STATION,MUIRS,0,0,E,BD,5322
-2021-04-02,13:11,Friday,LANSDOWNE STATION,SUDP,15,19,E,BD,5246
-2021-04-02,13:51,Friday,BATHURST STATION,SUO,0,0,E,BD,5285
-2021-04-02,13:52,Friday,FINCH WEST STATION,MUPAA,0,0,N,YU,5986
-2021-04-02,14:17,Friday,COLLEGE STATION,SUUT,14,18,N,YU,5941
-2021-04-02,14:20,Friday,FINCH WEST STATION,MUIRS,0,0,,YU,0
-2021-04-02,14:35,Friday,DUNDAS STATION,MUATC,4,8,S,YU,5631
-2021-04-02,15:23,Friday,FINCH WEST STATION,PUMEL,0,0,,YU,0
-2021-04-02,15:36,Friday,KENNEDY BD STATION,MUTO,5,10,W,BD,5133
-2021-04-02,17:01,Friday,SPADINA BD STATION,MUIRS,0,0,W,BD,0
-2021-04-02,17:44,Friday,KENNEDY BD STATION,MUNOA,4,8,W,BD,5328
-2021-04-02,19:10,Friday,COXWELL STATION,SUDP,13,17,E,BD,5338
-2021-04-02,19:39,Friday,SPADINA BD STATION,MUIRS,0,0,E,BD,0
-2021-04-02,19:57,Friday,MAIN STREET STATION,MUIS,0,0,,BD,0
-2021-04-02,21:06,Friday,KENNEDY BD STATION,EUNT,4,8,W,BD,5079
-2021-04-02,21:34,Friday,BLOOR STATION,SUDP,0,0,N,YU,5881
-2021-04-02,21:34,Friday,YONGE BD STATION,SUDP,0,0,W,BD,5079
-2021-04-02,21:40,Friday,VAUGHAN MC STATION,MUNOA,5,10,S,YU,5796
-2021-04-02,22:00,Friday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-04-02,23:45,Friday,YORK MILLS STATION,MUSC,0,0,S,YU,5571
-2021-04-02,23:47,Friday,YORK MILLS STATION,MUSC,0,0,S,YU,5566
-2021-04-02,23:52,Friday,YORK MILLS STATION,MUSC,0,0,S,YU,5901
-2021-04-02,23:56,Friday,YORK MILLS STATION,MUSC,0,0,S,YU,5686
-2021-04-03,00:40,Saturday,MCCOWAN STATION,MRUIR,7,14,,SRT,3004
-2021-04-03,05:32,Saturday,GREENWOOD STATION,EUOE,0,0,W,BD,5307
-2021-04-03,05:48,Saturday,KENNEDY BD STATION,TUNOA,5,10,W,BD,5331
-2021-04-03,05:51,Saturday,SPADINA BD STATION,MUIS,0,0,,BD,0
-2021-04-03,05:58,Saturday,EGLINTON STATION,MUO,0,0,N,YU,5421
-2021-04-03,06:02,Saturday,WILSON CARHOUSE,EUME,0,0,,YU,0
-2021-04-03,06:03,Saturday,EGLINTON STATION,MUTO,4,9,N,YU,5981
-2021-04-03,06:32,Saturday,EGLINTON STATION,SUAP,0,0,N,YU,5896
-2021-04-03,07:32,Saturday,ST CLAIR WEST STATION,MUPAA,5,10,S,YU,5561
-2021-04-03,07:38,Saturday,SPADINA YUS STATION,SUDP,0,0,,YU,0
-2021-04-03,09:25,Saturday,KENNEDY BD STATION,TUNOA,5,10,W,BD,5198
-2021-04-03,11:01,Saturday,COXWELL STATION,TUNOA,4,8,E,BD,5303
-2021-04-03,11:28,Saturday,EGLINTON STATION,EUSC,0,0,N,YU,5726
-2021-04-03,11:41,Saturday,EGLINTON STATION,PUTD,6,11,N,YU,5511
-2021-04-03,12:32,Saturday,GREENWOOD STATION,EUYRD,4,8,E,BD,5036
-2021-04-03,12:57,Saturday,DONLANDS STATION,MUIRS,0,0,W,BD,5331
-2021-04-03,13:19,Saturday,VAUGHAN MC STATION,TUO,3,6,S,YU,6016
-2021-04-03,14:10,Saturday,SHERBOURNE STATION,SUROB,0,0,E,BD,0
-2021-04-03,14:16,Saturday,ST GEORGE YUS STATION,SUDP,0,0,S,YU,5991
-2021-04-03,15:05,Saturday,ISLINGTON STATION,TUSC,0,0,W,BD,5332
-2021-04-03,16:03,Saturday,DAVISVILLE STATION,MUPAA,0,0,S,YU,5906
-2021-04-03,16:26,Saturday,OSSINGTON STATION,PUMST,0,0,,BD,0
-2021-04-03,16:32,Saturday,UNION STATION,SUUT,9,12,N,YU,6016
-2021-04-03,16:49,Saturday,DON MILLS STATION,PUMEL,0,0,,SHP,0
-2021-04-03,16:50,Saturday,BATHURST STATION,SUUT,5,9,W,BD,5052
-2021-04-03,17:39,Saturday,ST ANDREW STATION,EUCA,3,6,S,YU,6071
-2021-04-03,17:55,Saturday,WARDEN STATION,EUSC,0,0,E,BD,5260
-2021-04-03,18:17,Saturday,WELLESLEY STATION,SUDP,0,0,S,YU,6001
-2021-04-03,19:54,Saturday,KENNEDY BD STATION,SUDP,0,0,,BD,0
-2021-04-03,20:20,Saturday,SHERBOURNE STATION,SUDP,0,0,E,BD,5081
-2021-04-03,20:25,Saturday,FINCH STATION,MUPAA,0,0,S,YU,6001
-2021-04-03,20:33,Saturday,WILSON STATION,SUAP,0,0,S,YU,5981
-2021-04-03,21:10,Saturday,CHRISTIE STATION,MUTO,3,8,W,BD,5257
-2021-04-03,22:00,Saturday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-04-03,22:25,Saturday,SHEPPARD STATION,EUNT,4,9,S,YU,6011
-2021-04-03,23:28,Saturday,BLOOR STATION,SUDP,0,0,N,YU,5876
-2021-04-03,23:38,Saturday,BROADVIEW STATION,TUO,0,0,E,BD,5329
-2021-04-04,00:25,Sunday,ST ANDREW STATION,SUAP,6,11,S,YU,5791
-2021-04-04,01:03,Sunday,MUSEUM STATION,MUATC,5,10,N,YU,5696
-2021-04-04,01:42,Sunday,EGLINTON STATION,SUDP,8,13,N,YU,5516
-2021-04-04,01:52,Sunday,COLLEGE STATION,SUDP,0,0,,YU,0
-2021-04-04,02:00,Sunday,COLLEGE STATION,SUDP,0,0,,YU,0
-2021-04-04,02:03,Sunday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-04-04,02:32,Sunday,SHEPPARD-YONGE STATION,TUO,3,0,W,SHP,6156
-2021-04-04,08:10,Sunday,SHEPPARD WEST STATION,TUNIP,3,8,N,YU,6026
-2021-04-04,08:12,Sunday,EGLINTON STATION,MUO,6,11,N,YU,5856
-2021-04-04,08:13,Sunday,DAVISVILLE STATION,MUO,9,14,S,YU,5486
-2021-04-04,08:18,Sunday,EGLINTON STATION,MUO,12,19,N,YU,5881
-2021-04-04,08:40,Sunday,FINCH STATION,MUSC,0,0,S,YU,5856
-2021-04-04,09:24,Sunday,VAUGHAN MC STATION,EUTRD,5,10,S,YU,5566
-2021-04-04,09:25,Sunday,BATHURST STATION,MUIS,0,0,,BD,0
-2021-04-04,10:30,Sunday,KEELE STATION,SUROB,0,0,E,BD,5193
-2021-04-04,11:26,Sunday,BAYVIEW STATION,PUMEL,0,0,,SHEP,0
-2021-04-04,11:43,Sunday,CHRISTIE STATION,MUDD,10,14,W,BD,5024
-2021-04-04,11:55,Sunday,UNION STATION,PUMEL,0,0,,YU,0
-2021-04-04,12:25,Sunday,WILSON STATION,EUDO,5,9,N,YU,5611
-2021-04-04,12:39,Sunday,FINCH WEST STATION,EUCD,9,13,N,YU,5611
-2021-04-04,12:49,Sunday,BATHURST STATION,MUIS,0,0,,BD,0
-2021-04-04,13:59,Sunday,KENNEDY BD STATION,SUDP,4,8,W,BD,5138
-2021-04-04,14:19,Sunday,YORK MILLS STATION,SUO,0,0,,YU,0
-2021-04-04,14:47,Sunday,LANSDOWNE STATION,MUIS,0,0,,BD,0
-2021-04-04,16:04,Sunday,BAYVIEW STATION,PUMEL,0,0,,SHP,0
-2021-04-04,16:44,Sunday,BLOOR STATION,SUDP,0,0,N,YU,5781
-2021-04-04,17:39,Sunday,FINCH STATION,TUSC,0,0,S,YU,6051
-2021-04-04,19:54,Sunday,YORK MILLS STATION,MUPAA,0,0,N,YU,6056
-2021-04-04,20:04,Sunday,WELLESLEY STATION,SUDP,5,10,S,YU,5766
-2021-04-04,20:20,Sunday,DAVISVILLE STATION,MUIS,0,0,,YU,0
-2021-04-04,20:43,Sunday,BLOOR STATION,SUDP,0,0,N,YU,5896
-2021-04-04,20:49,Sunday,UNION STATION,MUI,23,28,N,YU,5534
-2021-04-04,22:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-04-05,01:17,Monday,DUNDAS STATION,MUI,7,14,N,YU,5576
-2021-04-05,01:35,Monday,LAWRENCE WEST STATION,SUDP,0,0,S,YU,6871
-2021-04-05,01:37,Monday,BAY STATION,MUPR1,17,24,E,BD,5169
-2021-04-05,02:23,Monday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-04-05,04:08,Monday,UNION STATION,SUDP,0,0,,YU,0
-2021-04-05,06:30,Monday,ROSEDALE STATION,MUSC,0,0,N,YU,5831
-2021-04-05,07:38,Monday,KIPLING STATION,TUMVS,0,0,W,BD,5089
-2021-04-05,08:32,Monday,ROSEDALE STATION,MUSC,0,0,N,YU,5931
-2021-04-05,09:11,Monday,BROADVIEW STATION,MUD,6,10,E,BD,5231
-2021-04-05,10:11,Monday,FINCH STATION,TUSC,0,0,N,YU,5861
-2021-04-05,10:13,Monday,BLOOR STATION,MUIS,0,0,S,YU,0
-2021-04-05,10:19,Monday,DAVISVILLE STATION,PUCSC,5,8,S,YU,5741
-2021-04-05,11:06,Monday,ROSEDALE STATION,MUSC,0,0,S,YU,5931
-2021-04-05,12:17,Monday,ST PATRICK STATION,MUIS,0,0,,YU,0
-2021-04-05,13:05,Monday,HIGHWAY 407 STATION,MUIS,0,0,,YU,0
-2021-04-05,13:52,Monday,SHEPPARD-YONGE STATION,TUNOA,9,14,E,SHP,6186
-2021-04-05,14:33,Monday,DUPONT STATION,MUPAA,3,6,N,YU,6011
-2021-04-05,16:39,Monday,ST GEORGE YUS STATION,MUPAA,0,0,S,YU,5761
-2021-04-05,17:17,Monday,BROADVIEW STATION,MUIS,0,0,,BD,0
-2021-04-05,17:38,Monday,KENNEDY SRT STATION,ERTC,12,17,N,SRT,3004
-2021-04-05,18:12,Monday,ISLINGTON STATION,MUSAN,3,7,E,BD,5310
-2021-04-05,18:15,Monday,KIPLING STATION,SUDP,3,7,E,BD,5050
-2021-04-05,18:28,Monday,LAWRENCE EAST STATION,ERCD,14,19,N,SRT,3004
-2021-04-05,18:36,Monday,MUSEUM STATION,SUDP,3,6,N,YU,5856
-2021-04-05,18:46,Monday,DUFFERIN STATION,SUUT,4,8,E,BD,5169
-2021-04-05,19:00,Monday,LAWRENCE WEST STATION,SUDP,0,0,S,YU,5761
-2021-04-05,19:20,Monday,VAUGHAN MC STATION,MUI,0,0,N,YU,5661
-2021-04-05,20:20,Monday,FINCH STATION,MUSC,0,0,S,YU,5741
-2021-04-05,22:00,Monday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-04-05,23:00,Monday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU,0
-2021-04-05,23:07,Monday,DUNDAS STATION,SUO,0,0,N,YU,0
-2021-04-06,02:37,Tuesday,FINCH WEST STATION,MUIS,0,0,,YU,0
-2021-04-06,05:55,Tuesday,DONLANDS STATION,EUDO,0,0,W,BD,5231
-2021-04-06,06:00,Tuesday,CHESTER STATION,EUNT,3,8,W,BD,5231
-2021-04-06,06:44,Tuesday,VAUGHAN MC STATION,MUTO,0,0,S,YU,6136
-2021-04-06,07:14,Tuesday,BAY STATION,MUO,19,23,E,BD,5074
-2021-04-06,07:37,Tuesday,FINCH STATION,MUIR,3,6,N,YU,5532
-2021-04-06,08:19,Tuesday,DUNDAS STATION,MUPLB,0,0,S,YU,5536
-2021-04-06,08:20,Tuesday,ROSEDALE STATION,TUSC,0,0,N,YU,5726
-2021-04-06,08:25,Tuesday,OLD MILL STATION,MUPAA,0,0,W,BD,5257
-2021-04-06,08:32,Tuesday,SPADINA YUS STATION,MUI,18,21,N,YU,5436
-2021-04-06,09:00,Tuesday,VICTORIA PARK STATION,MUPAA,0,0,W,BD,5010
-2021-04-06,09:11,Tuesday,YONGE BD STATION,SUAP,0,0,,BD,0
-2021-04-06,09:19,Tuesday,DUFFERIN STATION,MUDD,0,0,E,BD,5293
-2021-04-06,09:22,Tuesday,OSSINGTON STATION,EUCD,4,8,E,BD,5293
-2021-04-06,09:50,Tuesday,SHERBOURNE STATION,MUIS,0,0,,BD,0
-2021-04-06,11:41,Tuesday,FINCH STATION,SUAE,0,0,,YU,0
-2021-04-06,12:09,Tuesday,SPADINA YUS STATION,SUAP,0,0,N,YU,0
-2021-04-06,12:17,Tuesday,KING STATION,TUO,3,6,S,YU,6001
-2021-04-06,12:18,Tuesday,DUNDAS STATION,SUDP,0,0,N,YU,0
-2021-04-06,13:13,Tuesday,ROYAL YORK STATION,SUDP,0,0,E,BD,5151
-2021-04-06,14:35,Tuesday,SPADINA BD STATION,MUIR,8,12,E,BD,5218
-2021-04-06,15:46,Tuesday,OSGOODE STATION,MUI,13,16,N,YU,5901
-2021-04-06,15:48,Tuesday,ST GEORGE YUS STATION,MUPAA,3,6,N,YU,5936
-2021-04-06,16:05,Tuesday,YONGE BD STATION,MUIS,0,0,,BD,0
-2021-04-06,16:59,Tuesday,FINCH STATION,MUTO,3,6,S,YU,5961
-2021-04-06,18:04,Tuesday,VAUGHAN MC STATION,SUDP,0,0,,YU,0
-2021-04-06,18:13,Tuesday,KEELE STATION,MUPLB,16,20,E,BD,5151
-2021-04-06,18:33,Tuesday,WARDEN STATION,SUDP,0,0,E,BD,5282
-2021-04-06,18:37,Tuesday,WARDEN STATION,SUDP,0,0,,BD,0
-2021-04-06,18:45,Tuesday,FINCH STATION,MUTO,3,6,S,YU,6001
-2021-04-06,19:33,Tuesday,BLOOR STATION,MUIS,0,0,S,YU,0
-2021-04-06,19:49,Tuesday,YORK MILLS STATION,SUDP,9,14,S,YU,5446
-2021-04-06,19:59,Tuesday,DUNDAS WEST STATION,MUIRS,0,0,,BD,0
-2021-04-06,20:01,Tuesday,YORK MILLS STATION,MUI,0,0,S,YU,5866
-2021-04-06,20:29,Tuesday,DAVISVILLE STATION,SUDP,0,0,S,YU,6131
-2021-04-06,21:56,Tuesday,ROSEDALE STATION,MUPAA,0,0,S,YU,6106
-2021-04-06,22:00,Tuesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-04-06,23:00,Tuesday,FINCH WEST TO LAWRENCE,MUO,0,0,,YU,0
-2021-04-06,23:05,Tuesday,LAWRENCE STATION,SUUT,8,15,N,YU,5746
-2021-04-06,23:30,Tuesday,UNION STATION,MUPAA,0,0,S,YU,5436
-2021-04-06,23:31,Tuesday,DUNDAS STATION,MUPAA,0,0,S,YU,5996
-2021-04-06,23:54,Tuesday,SUMMERHILL STATION,SUUT,0,0,N,YU,6021
-2021-04-07,00:01,Wednesday,ROYAL YORK STATION,SUDP,5,13,E,BD,5079
-2021-04-07,00:21,Wednesday,KING STATION,MUPAA,0,0,N,YU,5716
-2021-04-07,00:25,Wednesday,DUNDAS STATION,SUDP,3,10,N,YU,5716
-2021-04-07,00:29,Wednesday,COLLEGE STATION,SUDP,0,0,N,YU,5716
-2021-04-07,00:44,Wednesday,FINCH STATION,SUDP,8,15,S,YU,5836
-2021-04-07,01:18,Wednesday,FINCH STATION,TUMVS,0,0,N,YU,5821
-2021-04-07,01:34,Wednesday,GREENWOOD STATION,MUIS,0,0,E,BD,0
-2021-04-07,01:56,Wednesday,OSSINGTON STATION,SUDP,0,0,,BD,0
-2021-04-07,05:59,Wednesday,ST GEORGE YUS STATION,EUDO,3,6,S,YU,5961
-2021-04-07,06:27,Wednesday,ROSEDALE STATION,MUSC,3,6,N,YU,5726
-2021-04-07,07:54,Wednesday,DON MILLS STATION,PUSSW,70,75,W,SHP,6161
-2021-04-07,09:07,Wednesday,BROADVIEW STATION,MUPAA,4,8,E,BD,5002
-2021-04-07,09:28,Wednesday,DONLANDS STATION,MUIS,0,0,W,BD,5218
-2021-04-07,10:25,Wednesday,VICTORIA PARK STATION,SUDP,8,12,W,BD,5031
-2021-04-07,10:47,Wednesday,QUEEN STATION,SUAP,0,0,S,YU,0
-2021-04-07,11:05,Wednesday,LESLIE STATION,TUSC,0,0,W,SHP,6161
-2021-04-07,11:09,Wednesday,ST GEORGE YUS STATION,TUS,6,9,S,YU,6076
-2021-04-07,11:43,Wednesday,VAUGHAN MC STATION,TUO,3,6,S,YU,6006
-2021-04-07,11:49,Wednesday,FINCH STATION,MUTO,3,6,S,YU,6071
-2021-04-07,11:56,Wednesday,QUEEN STATION,MUIS,0,0,S,YU,0
-2021-04-07,12:23,Wednesday,KENNEDY BD STATION,PUSRA,4,8,W,BD,5261
-2021-04-07,13:01,Wednesday,VAUGHAN MC STATION,MUPAA,0,0,S,YU,5941
-2021-04-07,14:38,Wednesday,EGLINTON STATION,SUSA,0,0,,YU,0
-2021-04-07,15:35,Wednesday,BATHURST STATION,SUDP,0,0,,BD,0
-2021-04-07,15:46,Wednesday,ST CLAIR WEST STATION,MUIR,6,9,N,YU,5856
-2021-04-07,15:57,Wednesday,EGLINTON WEST STATION,MUIS,0,0,,YU,0
-2021-04-07,16:13,Wednesday,FINCH WEST STATION,MUPAA,0,0,N,YU,5711
-2021-04-07,17:28,Wednesday,OSSINGTON STATION,MUNCA,0,0,,BD,0
-2021-04-07,17:38,Wednesday,OLD MILL STATION,MUPAA,0,0,E,BD,5213
-2021-04-07,17:58,Wednesday,COLLEGE STATION,SUPOL,0,0,S,YU,6031
-2021-04-07,19:54,Wednesday,ST CLAIR WEST STATION,SUDP,0,0,S,YU,6056
-2021-04-07,20:22,Wednesday,QUEEN STATION,SUAP,0,0,,YU,0
-2021-04-07,21:52,Wednesday,DAVISVILLE STATION,SUEAS,11,18,S,YU,5396
-2021-04-07,22:00,Wednesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-04-07,23:00,Wednesday,FINCH WEST TO LAWRENCE,MUO,0,0,,YU,0
-2021-04-07,23:00,Wednesday,SHEPPARD STATION,SUO,0,0,N,YU,6056
-2021-04-07,23:24,Wednesday,BLOOR STATION,SUDP,0,0,S,YU,5876
-2021-04-07,23:24,Wednesday,YONGE BD STATION,SUO,0,0,W,BD,5050
-2021-04-07,23:45,Wednesday,SCARBOROUGH CTR STATIO,MRUIR,0,0,,SRT,0
-2021-04-08,01:26,Thursday,YORK MILLS STATION,SUDP,4,0,S,YU,5461
-2021-04-08,01:29,Thursday,YORK MILLS STATION,SUDP,0,0,N,YU,5961
-2021-04-08,02:23,Thursday,LAWRENCE WEST STATION,SUDP,0,0,S,YU,5856
-2021-04-08,05:44,Thursday,WILSON STATION,MUO,9,0,S,YU,5786
-2021-04-08,05:56,Thursday,WARDEN STATION,MUPAA,0,0,W,BD,5115
-2021-04-08,05:59,Thursday,ST GEORGE YUS STATION,MUO,3,0,S,YU,6021
-2021-04-08,06:20,Thursday,FINCH STATION,MUSC,0,0,S,YU,5711
-2021-04-08,06:29,Thursday,SHEPPARD-YONGE STATION,PUSSW,5,10,W,SHP,6161
-2021-04-08,08:09,Thursday,DUFFERIN STATION,MUDD,3,7,E,BD,5151
-2021-04-08,08:21,Thursday,YORK MILLS STATION,EUSC,0,0,S,YU,6126
-2021-04-08,08:28,Thursday,YORK MILLS STATION,MUSC,0,0,S,YU,6001
-2021-04-08,08:37,Thursday,YORK MILLS STATION,MUSC,0,0,S,YU,6051
-2021-04-08,08:40,Thursday,YORK MILLS STATION,MUSC,0,0,S,YU,6096
-2021-04-08,08:45,Thursday,YORK MILLS STATION,MUSC,0,0,S,YU,5876
-2021-04-08,08:54,Thursday,YORK MILLS STATION,MUSC,0,0,S,YU,5996
-2021-04-08,09:12,Thursday,YORK MILLS STATION,MUSC,3,6,S,YU,5701
-2021-04-08,09:13,Thursday,HIGHWAY 407 STATION,SUDP,0,0,,YU,0
-2021-04-08,09:18,Thursday,YORK MILLS STATION,MUSC,0,0,S,YU,5951
-2021-04-08,09:22,Thursday,YORK MILLS STATION,MUSC,0,0,S,YU,6026
-2021-04-08,09:33,Thursday,YORK MILLS STATION,MUSC,0,0,S,YU,6076
-2021-04-08,09:40,Thursday,YORK MILLS STATION,MUSC,0,0,S,YU,5906
-2021-04-08,10:03,Thursday,FINCH STATION,SUAP,0,0,S,YU,5761
-2021-04-08,10:11,Thursday,YORK MILLS STATION,MUSC,0,0,S,YU,5761
-2021-04-08,10:19,Thursday,SHEPPARD WEST STATION,MUATC,4,7,N,YU,5781
-2021-04-08,10:56,Thursday,YORK MILLS STATION,MUSC,0,0,S,YU,5401
-2021-04-08,11:15,Thursday,YORK MILLS STATION,MUSC,0,0,S,YU,5441
-2021-04-08,11:27,Thursday,YORK MILLS STATION,MUSC,0,0,S,YU,6066
-2021-04-08,11:33,Thursday,LAWRENCE STATION,SUAE,3,6,N,YU,5956
-2021-04-08,14:13,Thursday,COXWELL STATION,MUCL,6,10,W,BD,5155
-2021-04-08,15:23,Thursday,MCCOWAN STATION,MRPAA,0,0,N,SRT,3011
-2021-04-08,15:30,Thursday,YORKDALE STATION,MUDD,6,9,N,YU,6076
-2021-04-08,16:14,Thursday,HIGHWAY 407 STATION,PUMEL,0,0,,YU,0
-2021-04-08,17:32,Thursday,MAIN STREET STATION,TUSC,0,0,W,BD,5275
-2021-04-08,17:56,Thursday,ST CLAIR STATION,TUO,3,6,S,YU,5626
-2021-04-08,17:57,Thursday,MCCOWAN STATION,TRO,3,8,S,SRT,3004
-2021-04-08,19:24,Thursday,OLD MILL STATION,PUSNT,0,0,E,BD,5259
-2021-04-08,19:49,Thursday,ROSEDALE STATION,MUSC,0,0,N,YU,5621
-2021-04-08,20:35,Thursday,ST GEORGE BD STATION,MUDD,0,0,W,BD,5365
-2021-04-08,20:42,Thursday,EGLINTON STATION,SUAP,3,8,S,YU,5936
-2021-04-08,21:20,Thursday,OSGOODE STATION,SUDP,7,12,N,YU,5926
-2021-04-08,21:56,Thursday,COLLEGE STATION,MUDD,5,12,N,YU,6071
-2021-04-08,22:00,Thursday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-04-08,22:26,Thursday,CHRISTIE STATION,SUDP,7,14,W,BD,5170
-2021-04-08,23:00,Thursday,FINCH WEST TO LAWRENCE,MUO,0,0,,YU,0
-2021-04-08,23:43,Thursday,KEELE STATION,MUIS,0,0,W,BD,0
-2021-04-08,23:45,Thursday,DAVISVILLE YARD,MUIE,0,0,,,0
-2021-04-09,00:15,Friday,FINCH STATION,EUBO,11,18,S,YU,5781
-2021-04-09,01:54,Friday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-04-09,05:42,Friday,WARDEN STATION,PUSO,3,0,W,BD,5160
-2021-04-09,06:02,Friday,ROSEDALE STATION,MUATC,5,9,S,YU,5981
-2021-04-09,06:48,Friday,LAWRENCE STATION,SUAP,0,0,,YU,0
-2021-04-09,07:10,Friday,SHEPPARD WEST STATION,MUATC,0,0,N,YU,5781
-2021-04-09,07:23,Friday,WOODBINE STATION,MUDD,8,12,E,BD,5016
-2021-04-09,08:13,Friday,MIDLAND STATION,MRO,3,8,N,SRT,3017
-2021-04-09,08:49,Friday,CHRISTIE STATION,SUAP,0,0,E,BD,0
-2021-04-09,09:02,Friday,KENNEDY SRT STATION,ERDO,5,10,S,SRT,3017
-2021-04-09,09:12,Friday,CASTLE FRANK STATION,TUO,4,8,W,BD,5335
-2021-04-09,09:34,Friday,ST GEORGE YUS STATION,PUMST,0,0,,YU,0
-2021-04-09,12:05,Friday,EGLINTON STATION,SUDP,0,0,N,YU,5906
-2021-04-09,13:03,Friday,KENNEDY BD STATION,EUSC,0,0,E,BD,5332
-2021-04-09,14:12,Friday,LAWRENCE WEST STATION,MUSAN,3,6,S,YU,6006
-2021-04-09,14:54,Friday,SHEPPARD WEST STATION,MUATC,3,6,N,YU,5781
-2021-04-09,15:23,Friday,ST CLAIR STATION,SUDP,3,6,N,YU,6031
-2021-04-09,16:21,Friday,DUNDAS STATION,MUPAA,0,0,S,YU,6131
-2021-04-09,16:26,Friday,ELLESMERE STATION,MRUI,0,0,,SRT,0
-2021-04-09,16:41,Friday,EGLINTON STATION,MUPR1,59,62,S,YU,5946
-2021-04-09,17:14,Friday,EGLINTON STATION,EUSC,0,0,N,YU,5886
-2021-04-09,17:50,Friday,SHEPPARD-YONGE STATION,TUSC,0,0,W,SHP,6181
-2021-04-09,18:10,Friday,KENNEDY SRT STATION,ERPR,4,9,S,SRT,3020
-2021-04-09,18:16,Friday,DAVISVILLE STATION,SUAP,6,9,N,YU,6041
-2021-04-09,18:37,Friday,YORKDALE STATION,MUATC,3,6,N,YU,5781
-2021-04-09,18:47,Friday,YORK MILLS STATION,TUSC,0,0,S,YU,5461
-2021-04-09,18:57,Friday,ST GEORGE YUS STATION,PUMEL,0,0,,YU,0
-2021-04-09,20:17,Friday,DON MILLS STATION,MUSC,0,0,W,SHP,6181
-2021-04-09,20:40,Friday,KIPLING STATION,MUI,7,14,E,BD,5068
-2021-04-09,21:28,Friday,WARDEN STATION,SUO,7,14,E,BD,5223
-2021-04-09,22:00,Friday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-04-09,22:36,Friday,MAIN STREET STATION,PUMST,0,0,W,BD,0
-2021-04-10,01:16,Saturday,ST CLAIR STATION,MUIS,0,0,,YU,0
-2021-04-10,01:42,Saturday,WILSON YARD,EUOE,0,0,,YU,5811
-2021-04-10,01:53,Saturday,ZONE 1,PUSZC,22,27,N,YU,5446
-2021-04-10,05:44,Saturday,CASTLE FRANK STATION,SUO,0,0,,BD,0
-2021-04-10,06:00,Saturday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU,0
-2021-04-10,06:04,Saturday,GREENWOOD STATION,MUIE,0,0,,BD,0
-2021-04-10,06:15,Saturday,ROSEDALE STATION,TUATC,4,9,S,YU,6131
-2021-04-10,11:34,Saturday,KEELE STATION,MUIE,0,0,,BD,0
-2021-04-10,12:52,Saturday,WARDEN STATION,TUO,0,0,E,BD,5371
-2021-04-10,13:16,Saturday,ROYAL YORK STATION,TUSC,0,0,E,BD,5332
-2021-04-10,13:21,Saturday,DAVISVILLE STATION,SUUT,0,0,N,YU,0
-2021-04-10,14:20,Saturday,VICTORIA PARK STATION,MUPAA,11,15,W,BD,5130
-2021-04-10,17:11,Saturday,UNION STATION,SUDP,0,0,,YU,0
-2021-04-10,17:56,Saturday,ISLINGTON STATION,TUMVS,0,0,E,BD,5020
-2021-04-10,18:10,Saturday,BROADVIEW STATION,MUIS,0,0,,BD,0
-2021-04-10,18:16,Saturday,JANE STATION,PUSCR,5,9,E,BD,5020
-2021-04-10,18:33,Saturday,SUMMERHILL STATION,SUUT,10,15,N,YU,5986
-2021-04-10,20:14,Saturday,FINCH STATION,SUDP,0,0,,YU,0
-2021-04-10,20:48,Saturday,ISLINGTON STATION,MUIS,0,0,,BD,0
-2021-04-10,20:59,Saturday,DONLANDS STATION,MUPAA,0,0,W,BD,5261
-2021-04-10,21:47,Saturday,KIPLING STATION,SUDP,17,23,E,BD,5102
-2021-04-10,22:00,Saturday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-04-10,22:56,Saturday,WILSON STATION,MUIS,0,0,,YU,0
-2021-04-10,23:00,Saturday,WARDEN STATION,MUDD,8,13,E,BD,5068
-2021-04-11,01:38,Sunday,WILSON HOSTLER,TUATC,0,0,S,YU,5941
-2021-04-11,03:04,Sunday,HIGHWAY 407 STATION,SUDP,0,0,,YU,0
-2021-04-11,07:29,Sunday,WILSON YARD,MUATC,0,0,N,YU,5806
-2021-04-11,07:49,Sunday,SHEPPARD WEST STATION,MUATC,10,15,N,YU,5981
-2021-04-11,07:53,Sunday,SHEPPARD-YONGE STATION,MUSC,0,0,E,SHP,6146
-2021-04-11,07:59,Sunday,SHEPPARD WEST STATION,MUATC,12,17,N,YU,6106
-2021-04-11,08:00,Sunday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU,0
-2021-04-11,08:04,Sunday,FINCH WEST STATION,MUATC,0,0,N,YU,5801
-2021-04-11,08:09,Sunday,DUPONT STATION,MUATC,4,9,S,YU,5956
-2021-04-11,08:19,Sunday,SHEPPARD WEST STATION,MUATC,10,15,N,YU,5901
-2021-04-11,08:24,Sunday,MUSEUM STATION,MUATC,3,8,N,YU,5456
-2021-04-11,08:27,Sunday,ST CLAIR STATION,MUSC,0,0,S,YU,6001
-2021-04-11,08:41,Sunday,SHEPPARD WEST STATION,MUATC,7,12,N,YU,5446
-2021-04-11,08:43,Sunday,ROSEDALE STATION,MUATC,0,0,S,YU,5991
-2021-04-11,08:50,Sunday,YORKDALE STATION,MUATC,3,8,N,YU,5396
-2021-04-11,08:54,Sunday,ST CLAIR WEST STATION,MUATC,4,9,N,YU,6001
-2021-04-11,09:04,Sunday,ST GEORGE YUS STATION,SUUT,0,0,N,YU,5991
-2021-04-11,09:19,Sunday,ROSEDALE STATION,MUATC,0,0,S,YU,6126
-2021-04-11,09:26,Sunday,ROSEDALE STATION,MUATC,5,10,S,YU,5981
-2021-04-11,09:31,Sunday,ROSEDALE STATION,MUATC,4,9,N,YU,5776
-2021-04-11,09:43,Sunday,ST CLAIR WEST STATION,MUATC,4,9,N,YU,6026
-2021-04-11,09:52,Sunday,FINCH WEST STATION,MUATC,0,0,S,YU,5996
-2021-04-11,09:58,Sunday,ROSEDALE STATION,MUATC,3,8,S,YU,5951
-2021-04-11,10:18,Sunday,DUNDAS WEST STATION,MUSC,0,0,E,BD,5364
-2021-04-11,10:36,Sunday,BLOOR STATION,MUIS,0,0,,YU,0
-2021-04-11,10:56,Sunday,ROSEDALE STATION,MUATC,3,8,S,YU,5791
-2021-04-11,11:12,Sunday,ROSEDALE STATION,MUATC,6,11,S,YU,6091
-2021-04-11,11:22,Sunday,KENNEDY BD STATION,SUDP,0,0,,BD,0
-2021-04-11,11:28,Sunday,COLLEGE STATION,MUATC,0,0,S,YU,6126
-2021-04-11,11:31,Sunday,YONGE UNIVERSITY SUBWA,MUATC,144,149,S,YU,6086
-2021-04-11,11:34,Sunday,PIONEER VILLAGE STATIO,SUDP,0,0,N,YU,5991
-2021-04-11,11:54,Sunday,KENNEDY BD STATION,TUMVS,0,0,E,BD,5035
-2021-04-11,12:32,Sunday,DUNDAS WEST STATION,MUIS,0,0,,BD,0
-2021-04-11,12:46,Sunday,YONGE BD STATION,SUUT,8,12,E,BD,5061
-2021-04-11,13:22,Sunday,DONLANDS STATION,SUDP,0,0,W,BD,5322
-2021-04-11,13:58,Sunday,KIPLING STATION,EUDO,4,8,E,BD,5135
-2021-04-11,15:44,Sunday,WELLESLEY STATION,MUIRS,0,0,,YU,0
-2021-04-11,16:09,Sunday,OSGOODE STATION,MUIS,0,0,,YU,0
-2021-04-11,17:53,Sunday,WILSON STATION,MUIRS,0,0,,YU,0
-2021-04-11,18:32,Sunday,KEELE STATION,MUIS,0,0,,BD,0
-2021-04-11,21:39,Sunday,ST PATRICK STATION,SUDP,3,8,N,YU,5771
-2021-04-11,21:47,Sunday,COXWELL STATION,TUNIP,3,7,E,BD,5259
-2021-04-11,22:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-04-12,00:52,Monday,COXWELL STATION,MUTO,5,13,W,BD,5371
-2021-04-12,02:12,Monday,UNION STATION,MUIS,0,0,,YU,0
-2021-04-12,05:35,Monday,DUFFERIN STATION,MUNCA,0,0,,BD,0
-2021-04-12,05:36,Monday,FINCH STATION,EUBO,4,8,S,YU,5456
-2021-04-12,05:45,Monday,DAVISVILLE STATION,TUSUP,3,7,N,YU,5966
-2021-04-12,05:47,Monday,KIPLING STATION,EUVA,6,12,E,BD,5183
-2021-04-12,06:00,Monday,ST GEORGE YUS STATION,MUO,0,0,,YU/BD,0
-2021-04-12,06:41,Monday,DON MILLS STATION,MUIS,0,0,,SHP,0
-2021-04-12,08:21,Monday,UNION STATION,PUMO,4,8,N,YU,5976
-2021-04-12,09:15,Monday,VICTORIA PARK STATION,MUNCA,0,0,,BD,0
-2021-04-12,10:00,Monday,DUFFERIN STATION,MUDD,10,14,W,BD,5250
-2021-04-12,11:17,Monday,CASTLE FRANK STATION,SUO,3,7,E,BD,5201
-2021-04-12,12:00,Monday,DAVISVILLE STATION,SUO,4,8,S,YU,5501
-2021-04-12,12:36,Monday,WARDEN STATION,PUSTC,9,13,W,BD,5097
-2021-04-12,12:47,Monday,SUMMERHILL STATION,SUDP,0,0,S,YU,5936
-2021-04-12,13:05,Monday,ST CLAIR STATION,PUMEL,0,0,S,YU,0
-2021-04-12,13:08,Monday,ST CLAIR STATION,MUIS,0,0,S,YU,0
-2021-04-12,13:13,Monday,FINCH STATION,PUMO,0,0,,YU,0
-2021-04-12,13:20,Monday,EGLINTON STATION,PUMEL,0,0,,YU,0
-2021-04-12,13:36,Monday,EGLINTON WEST STATION,MUIS,0,0,,YU,0
-2021-04-12,14:14,Monday,SCARBOROUGH CTR STATIO,MRO,7,12,S,SRT,3000
-2021-04-12,14:17,Monday,PIONEER VILLAGE STATIO,SUDP,3,8,N,YU,5801
-2021-04-12,16:17,Monday,DON MILLS STATION,MUSC,0,0,E,SHP,6186
-2021-04-12,16:19,Monday,LAWRENCE EAST STATION,ERDO,11,16,S,SRT,3012
-2021-04-12,16:36,Monday,EGLINTON STATION,MUPAA,4,8,S,YU,5901
-2021-04-12,16:44,Monday,DUPONT STATION,PUMEL,0,0,,YU,0
-2021-04-12,17:36,Monday,YONGE BD STATION,SUDP,9,13,W,BD,5071
-2021-04-12,17:50,Monday,YONGE BD STATION,PUMEL,0,0,,BD,0
-2021-04-12,18:48,Monday,BAYVIEW STATION,SUO,0,0,W,SHP,6141
-2021-04-12,18:57,Monday,WELLESLEY STATION,MUPAA,3,7,N,YU,5466
-2021-04-12,19:19,Monday,FINCH WEST STATION,SUDP,18,23,N,YU,6001
-2021-04-12,19:52,Monday,WARDEN STATION,TUO,3,7,E,BD,5351
-2021-04-12,19:53,Monday,KEELE STATION,MUI,14,18,E,BD,5102
-2021-04-12,20:09,Monday,WARDEN STATION,TUMVS,0,0,E,BD,5079
-2021-04-12,20:14,Monday,DUNDAS WEST STATION,MUPR1,132,138,E,BD,5043
-2021-04-12,21:06,Monday,MIDLAND STATION,ERCD,8,14,N,SRT,3012
-2021-04-12,21:10,Monday,BLOOR STATION,SUDP,0,0,N,YU,5891
-2021-04-12,21:40,Monday,OSSINGTON STATION,TUO,0,0,W,BD,5351
-2021-04-12,21:45,Monday,WELLESLEY STATION,MUPAA,0,0,S,YU,5526
-2021-04-12,22:00,Monday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-04-12,23:31,Monday,CHRISTIE STATION,MUIRS,0,0,,BD,0
-2021-04-13,02:21,Tuesday,VAUGHAN MC STATION,SUDP,3,10,N,YU,5801
-2021-04-13,05:32,Tuesday,FINCH STATION,MUSC,0,0,S,YU,5926
-2021-04-13,05:53,Tuesday,VICTORIA PARK STATION,PUSTC,7,11,W,BD,5090
-2021-04-13,06:00,Tuesday,ST GEORGE YUS STATION,MUO,0,0,,YU,0
-2021-04-13,06:18,Tuesday,SHEPPARD WEST STATION,TUNOA,5,10,N,YU,6076
-2021-04-13,06:57,Tuesday,UNION STATION,MUATC,4,8,N,YU,5916
-2021-04-13,07:40,Tuesday,ST ANDREW STATION,MUIR,4,8,S,YU,5906
-2021-04-13,08:18,Tuesday,FINCH STATION,MUIR,4,8,S,YU,5126
-2021-04-13,08:22,Tuesday,SHEPPARD STATION,MUPAA,0,0,N,YU,5821
-2021-04-13,08:41,Tuesday,UNION STATION,MUATC,4,8,N,YU,6036
-2021-04-13,08:44,Tuesday,WILSON CARHOUSE,MUIE,0,0,,YU,0
-2021-04-13,08:57,Tuesday,EGLINTON STATION,MUSC,0,0,N,YU,5941
-2021-04-13,10:57,Tuesday,SPADINA STATION,SUAE,0,0,,,0
-2021-04-13,11:01,Tuesday,DUFFERIN STATION,MUPAA,0,0,W,BD,5150
-2021-04-13,11:37,Tuesday,ELLESMERE STATION,MRO,0,0,S,SRT,3010
-2021-04-13,11:37,Tuesday,FINCH STATION,TUSUP,4,8,S,YU,5461
-2021-04-13,11:57,Tuesday,SHEPPARD STATION,TUMVS,0,0,N,YU,5821
-2021-04-13,12:15,Tuesday,MIDLAND STATION,ERDO,0,0,N,SRT,3021
-2021-04-13,12:50,Tuesday,DONLANDS STATION,MUPAA,0,0,E,BD,5002
-2021-04-13,13:10,Tuesday,ST CLAIR STATION,TUOS,3,7,S,YU,6056
-2021-04-13,13:49,Tuesday,BAY STATION,SUDP,3,7,W,BD,5020
-2021-04-13,13:55,Tuesday,DUNDAS STATION,SUDP,0,0,S,YU,5901
-2021-04-13,14:08,Tuesday,BATHURST STATION,PUMEL,0,0,,BD,0
-2021-04-13,15:08,Tuesday,DON MILLS STATION,TUO,3,8,E,SHP,6161
-2021-04-13,16:16,Tuesday,KENNEDY BD STATION,SUDP,4,8,E,BD,5069
-2021-04-13,16:45,Tuesday,WARDEN STATION,MUDD,3,7,E,BD,5069
-2021-04-13,17:19,Tuesday,MAIN STREET STATION,MUIRS,0,0,,BD,0
-2021-04-13,17:23,Tuesday,ROSEDALE STATION,TUATC,6,10,S,YU,6011
-2021-04-13,17:26,Tuesday,KENNEDY BD STATION,MUNCA,0,0,,BD,0
-2021-04-13,18:27,Tuesday,FINCH STATION,TUNIP,5,10,S,YU,6011
-2021-04-13,18:42,Tuesday,SHEPPARD STATION,MUIR,0,0,N,YU,5931
-2021-04-13,19:18,Tuesday,LESLIE STATION,PUSWZ,6,11,E,SHP,6186
-2021-04-13,20:10,Tuesday,EGLINTON WEST STATION,MUIS,0,0,,YU,0
-2021-04-13,21:01,Tuesday,PIONEER VILLAGE STATIO,SUDP,0,0,S,YU,6081
-2021-04-13,22:00,Tuesday,YONGE-UNIVERSITY AND B,MUO,0,0,,,0
-2021-04-13,22:25,Tuesday,WOODBINE STATION,SUDP,7,14,W,BD,5148
-2021-04-14,00:21,Wednesday,JANE STATION,SUAP,0,0,,BD,0
-2021-04-14,01:30,Wednesday,UNION STATION,MUIRS,0,0,N,YU,5941
-2021-04-14,02:34,Wednesday,FINCH STATION,MUIS,0,0,,YU,0
-2021-04-14,02:42,Wednesday,VAUGHAN MC STATION,SUDP,0,0,,YU,0
-2021-04-14,05:19,Wednesday,KING STATION,PUMST,0,0,,YU,0
-2021-04-14,05:49,Wednesday,KEELE STATION,EUNT,13,0,W,BD,5284
-2021-04-14,05:59,Wednesday,GREENWOOD STATION,EUNT,4,9,E,BD,5044
-2021-04-14,06:00,Wednesday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU,0
-2021-04-14,06:11,Wednesday,BATHURST STATION,MUIE,0,0,,BD,0
-2021-04-14,06:13,Wednesday,GREENWOOD STATION,TUNIP,5,10,E,BD,5066
-2021-04-14,06:24,Wednesday,BAYVIEW STATION,MUIS,0,0,W,SHP,5618
-2021-04-14,06:39,Wednesday,KIPLING STATION,EUOE,0,0,W,BD,5037
-2021-04-14,06:52,Wednesday,ST CLAIR WEST STATION,PUMEL,0,0,,YU,0
-2021-04-14,07:07,Wednesday,LESLIE STATION,MUIR,13,18,W,SHP,6186
-2021-04-14,07:18,Wednesday,BAYVIEW STATION,PUOPO,5,10,W,SHP,6196
-2021-04-14,07:23,Wednesday,ROYAL YORK STATION,MUSC,0,0,W,BD,5250
-2021-04-14,08:10,Wednesday,BLOOR STATION,MUIS,0,0,,YU,0
-2021-04-14,09:31,Wednesday,KIPLING STATION,TUMVS,3,7,W,BD,5077
-2021-04-14,09:33,Wednesday,DON MILLS STATION,MUSAN,5,11,W,SHP,6181
-2021-04-14,09:38,Wednesday,EGLINTON WEST STATION,MUATC,3,8,N,YU,5816
-2021-04-14,09:46,Wednesday,YONGE BD STATION,PUMEL,0,0,,BD,0
-2021-04-14,11:40,Wednesday,BAYVIEW STATION,SUDP,0,0,,SHP,0
-2021-04-14,11:55,Wednesday,DON MILLS STATION,MUIS,0,0,,SHP,0
-2021-04-14,12:04,Wednesday,BATHURST STATION,MUIS,0,0,,BD,0
-2021-04-14,13:35,Wednesday,ST GEORGE YUS STATION,MUATC,0,0,S,YU,5876
-2021-04-14,14:39,Wednesday,PAPE STATION,PUMST,0,0,,BD,0
-2021-04-14,15:47,Wednesday,ST CLAIR STATION,MUIR,0,0,,YU,0
-2021-04-14,16:05,Wednesday,PIONEER VILLAGE STATIO,PUMEL,0,0,,YU,0
-2021-04-14,16:18,Wednesday,KEELE STATION,SUDP,3,7,W,BD,5320
-2021-04-14,16:21,Wednesday,YONGE BD STATION,MUPAA,3,7,E,BD,5351
-2021-04-14,16:46,Wednesday,MAIN STREET STATION,MUIR,3,7,E,BD,5292
-2021-04-14,16:53,Wednesday,MCCOWAN STATION,ERBO,5,10,N,SRT,3017
-2021-04-14,17:00,Wednesday,DONLANDS STATION,SUO,7,11,W,BD,5053
-2021-04-14,17:06,Wednesday,VICTORIA PARK STATION,SUDP,30,34,E,BD,5160
-2021-04-14,17:18,Wednesday,FINCH STATION,MUNOA,4,8,S,YU,0
-2021-04-14,17:34,Wednesday,UNION STATION,MUDD,0,0,N,YU,5821
-2021-04-14,17:40,Wednesday,VAUGHAN MC STATION,MUIS,0,0,,YU,0
-2021-04-14,19:07,Wednesday,BAYVIEW STATION,SUO,0,0,,SHP,0
-2021-04-14,19:31,Wednesday,CHESTER STATION,MUPAA,0,0,E,BD,5218
-2021-04-14,19:38,Wednesday,ST CLAIR WEST STATION,PUMEL,0,0,,YU,0
-2021-04-14,22:00,Wednesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-04-14,22:09,Wednesday,FINCH WEST STATION,SUDP,0,0,,YU,0
-2021-04-15,05:59,Thursday,SHEPPARD-YONGE STATION,PUSSW,5,10,W,SHP,6161
-2021-04-15,06:00,Thursday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU,0
-2021-04-15,07:18,Thursday,BLOOR STATION,SUO,3,7,S,YU,5461
-2021-04-15,08:54,Thursday,OLD MILL STATION,MUNCA,0,0,,BD,0
-2021-04-15,10:05,Thursday,BATHURST STATION,SUUT,3,7,E,BD,5150
-2021-04-15,10:14,Thursday,SPADINA BD STATION,MUIE,3,6,E,BD,5150
-2021-04-15,12:03,Thursday,KIPLING STATION,MUIRS,0,0,,BD,0
-2021-04-15,12:43,Thursday,KENNEDY BD STATION,PUMEL,0,0,,BD,0
-2021-04-15,13:13,Thursday,SHEPPARD STATION,SUDP,0,0,N,YU,5921
-2021-04-15,13:19,Thursday,LAWRENCE STATION,SUDP,13,17,S,YU,6011
-2021-04-15,13:19,Thursday,SHEPPARD-YONGE STATION,SUAE,5,10,W,SHP,0
-2021-04-15,13:42,Thursday,LAWRENCE STATION,SUDP,0,0,N,YU,5926
-2021-04-15,14:16,Thursday,CASTLE FRANK STATION,MUIRS,0,0,W,BD,5061
-2021-04-15,14:26,Thursday,UNION STATION,SUDP,0,0,,YU,0
-2021-04-15,14:58,Thursday,FINCH STATION,TUNIP,6,10,S,YU,5946
-2021-04-15,15:27,Thursday,OSSINGTON STATION,SUDP,8,12,W,BD,5147
-2021-04-15,15:54,Thursday,OSSINGTON STATION,MUIS,0,0,,BD,0
-2021-04-15,16:15,Thursday,ST GEORGE YUS STATION,MUTO,0,0,N,YU,6026
-2021-04-15,16:32,Thursday,YORK MILLS STATION,MUIRS,0,0,S,YU,0
-2021-04-15,16:42,Thursday,YONGE BD STATION,MUSC,0,0,E,BD,5066
-2021-04-15,17:04,Thursday,KIPLING STATION,SUDP,4,8,E,BD,5181
-2021-04-15,18:42,Thursday,QUEEN STATION,SUO,0,0,,YU,0
-2021-04-15,18:53,Thursday,FINCH WEST STATION,SUDP,0,0,S,YU,5576
-2021-04-15,19:26,Thursday,QUEEN STATION,MUIRS,0,0,N,YU,0
-2021-04-15,19:55,Thursday,WELLESLEY STATION,MUIRS,0,0,S,YU,0
-2021-04-15,20:16,Thursday,SHEPPARD-YONGE STATION,PUSSW,10,15,W,SHP,0
-2021-04-15,20:25,Thursday,HIGH PARK STATION,SUDP,0,0,W,BD,5182
-2021-04-15,20:38,Thursday,COLLEGE STATION,MUIS,0,0,N,YU,5000
-2021-04-15,20:56,Thursday,DONLANDS STATION,SUDP,0,0,W,BD,5061
-2021-04-15,21:01,Thursday,DUFFERIN STATION,SUDP,10,17,W,BD,5196
-2021-04-15,22:00,Thursday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-04-15,22:34,Thursday,DUNDAS WEST STATION,MUIS,0,0,,BD,0
-2021-04-15,22:52,Thursday,DUNDAS STATION,SUDP,6,13,N,YU,5931
-2021-04-15,22:55,Thursday,KENNEDY BD STATION,SUG,7,14,W,BD,5181
-2021-04-15,23:14,Thursday,KENNEDY BD STATION,SUG,7,14,W,BD,5296
-2021-04-15,23:39,Thursday,OSSINGTON STATION,SUAP,0,0,W,BD,0
-2021-04-16,00:59,Friday,BATHURST STATION,MUIRS,0,0,,BD,0
-2021-04-16,01:32,Friday,DUNDAS STATION,SUUT,5,12,N,YU,5976
-2021-04-16,01:46,Friday,WELLESLEY STATION,MUSAN,7,14,N,YU,5976
-2021-04-16,02:31,Friday,VAUGHAN MC STATION,MUIS,0,0,,YU,0
-2021-04-16,06:00,Friday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU,0
-2021-04-16,06:45,Friday,PAPE STATION,SUG,4,8,E,BD,5351
-2021-04-16,07:32,Friday,EGLINTON WEST STATION,MUSAN,5,10,N,YU,5996
-2021-04-16,08:59,Friday,BLOOR STATION,MUTO,0,0,S,YU,5906
-2021-04-16,10:13,Friday,ST GEORGE YUS STATION,SUDP,3,8,S,YU,6021
-2021-04-16,10:37,Friday,SUMMERHILL STATION,MUPAA,3,7,N,YU,5976
-2021-04-16,12:01,Friday,KIPLING STATION,TUS,4,8,W,BD,5136
-2021-04-16,13:03,Friday,ROSEDALE STATION,MUSC,0,0,N,YU,5976
-2021-04-16,13:20,Friday,KENNEDY BD STATION,MUPAA,4,8,W,BD,5266
-2021-04-16,13:47,Friday,MIDLAND STATION,ERDO,3,8,S,SRT,3016
-2021-04-16,13:53,Friday,ELLESMERE STATION,ERCD,3,8,S,SRT,3016
-2021-04-16,14:02,Friday,FINCH STATION,TUNIP,3,7,S,YU,5851
-2021-04-16,14:45,Friday,BROADVIEW STATION,MUIS,0,0,,BD,0
-2021-04-16,15:48,Friday,OLD MILL STATION,SUDP,3,7,E,BD,5112
-2021-04-16,15:49,Friday,SHEPPARD-YONGE STATION,MUSC,0,0,W,SHP,6166
-2021-04-16,16:00,Friday,KEELE STATION,SUDP,3,7,E,BD,5112
-2021-04-16,17:01,Friday,QUEEN STATION,MUNCA,0,0,,YU,0
-2021-04-16,18:50,Friday,BROADVIEW STATION,MUIS,0,0,,BD,0
-2021-04-16,19:04,Friday,KENNEDY SRT STATION,TRSET,5,10,N,SRT,3023
-2021-04-16,19:06,Friday,WARDEN STATION,MUSC,0,0,E,BD,5276
-2021-04-16,19:09,Friday,FINCH STATION,MUIS,0,0,,YU,0
-2021-04-16,19:17,Friday,SPADINA BD STATION,SUDP,7,11,E,BD,5061
-2021-04-16,19:40,Friday,GREENWOOD YARD,MUIE,0,0,,BD,0
-2021-04-16,19:40,Friday,OSSINGTON STATION,TUSC,0,0,W,BD,5268
-2021-04-16,20:02,Friday,COLLEGE STATION,MUPAA,0,0,S,YU,5401
-2021-04-16,21:25,Friday,BLOOR STATION,MUIS,0,0,,YU,0
-2021-04-16,21:41,Friday,DONLANDS STATION,SUAP,9,16,E,BD,5110
-2021-04-16,21:44,Friday,BATHURST STATION,MUPAA,0,0,E,BD,5201
-2021-04-16,22:00,Friday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-04-16,22:09,Friday,BLOOR STATION,SUDP,0,0,N,YU,5821
-2021-04-16,22:57,Friday,DON MILLS STATION,TUMVS,3,8,E,SHP,6141
-2021-04-17,00:35,Saturday,EGLINTON STATION,SUROB,3,10,N,YU,5406
-2021-04-17,02:14,Saturday,VAUGHAN MC STATION,MUIS,0,0,,YU,0
-2021-04-17,05:39,Saturday,SHEPPARD-YONGE STATION,TUSC,0,0,E,SHP,6176
-2021-04-17,05:47,Saturday,DAVISVILLE STATION,TUSUP,5,10,N,YU,5926
-2021-04-17,06:00,Saturday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU,0
-2021-04-17,06:04,Saturday,BLOOR STATION,TUO,4,0,N,YU,5506
-2021-04-17,06:04,Saturday,GREENWOOD PORTAL,MUSC,0,0,E,BD,5084
-2021-04-17,06:06,Saturday,ST ANDREW STATION,TUNIP,5,10,S,YU,5946
-2021-04-17,06:08,Saturday,FINCH STATION,MUSC,0,0,N,YU,5856
-2021-04-17,06:13,Saturday,KENNEDY SRT STATION,ERDO,5,10,N,SRT,3021
-2021-04-17,06:27,Saturday,GREENWOOD STATION,TUCC,8,13,E,BD,5143
-2021-04-17,06:30,Saturday,FINCH STATION,TUO,5,10,S,YU,5501
-2021-04-17,06:38,Saturday,OSSINGTON STATION,TUSC,0,0,E,BD,5165
-2021-04-17,07:50,Saturday,LAWRENCE EAST STATION,ERDO,5,10,S,SRT,3010
-2021-04-17,09:11,Saturday,BESSARION STATION,MUNCA,0,0,,SHP,0
-2021-04-17,09:17,Saturday,COLLEGE STATION,MUIRS,0,0,,YU,0
-2021-04-17,11:19,Saturday,DUPONT STATION,MUPAA,0,0,N,YU,5556
-2021-04-17,11:23,Saturday,KIPLING STATION,SUDP,5,10,E,BD,5102
-2021-04-17,12:04,Saturday,LANSDOWNE STATION,MUSC,0,0,E,BD,5281
-2021-04-17,12:29,Saturday,ST CLAIR STATION,MUPAA,0,0,S,YU,5971
-2021-04-17,12:36,Saturday,YORK MILLS STATION,MUSC,0,0,S,YU,5851
-2021-04-17,12:45,Saturday,YORK MILLS STATION,MUSC,0,0,S,YU,5936
-2021-04-17,13:46,Saturday,FINCH STATION,TUNIP,5,10,S,YU,5856
-2021-04-17,14:41,Saturday,BATHURST STATION,MUIR,0,0,W,BD,0
-2021-04-17,15:54,Saturday,DUFFERIN STATION,MUI,8,12,W,BD,5206
-2021-04-17,17:07,Saturday,YONGE BD STATION,SUO,0,0,E,BD,5288
-2021-04-17,17:09,Saturday,BLOOR STATION,SUO,0,0,S,YU,5961
-2021-04-17,18:14,Saturday,BATHURST STATION,MUIRS,0,0,,BD,0
-2021-04-17,19:42,Saturday,FINCH STATION,MUIS,0,0,,YU,0
-2021-04-17,20:47,Saturday,YORK MILLS STATION,TUSC,0,0,S,YU,5526
-2021-04-17,22:00,Saturday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-04-18,00:25,Sunday,FINCH STATION,MUIS,0,0,,YU,0
-2021-04-18,00:53,Sunday,CHRISTIE STATION,TUMVS,0,0,E,BD,5053
-2021-04-18,01:02,Sunday,UNION STATION,MUPAA,0,0,N,YU,5896
-2021-04-18,01:28,Sunday,KEELE STATION,PUSTS,3,7,E,BD,5174
-2021-04-18,02:26,Sunday,FINCH STATION,MUI,0,0,,YU,0
-2021-04-18,07:48,Sunday,DAVISVILLE STATION,TUSC,0,0,S,YU,5921
-2021-04-18,08:00,Sunday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU,0
-2021-04-18,08:05,Sunday,GREENWOOD PORTAL,MUDD,7,12,E,BD,5059
-2021-04-18,08:23,Sunday,BROADVIEW STATION,SUDP,0,0,W,BD,5281
-2021-04-18,08:23,Sunday,YONGE BD STATION,PUMST,0,0,,BD,0
-2021-04-18,08:26,Sunday,DONLANDS STATION,EUCD,4,9,W,BD,5114
-2021-04-18,08:27,Sunday,GREENWOOD STATION,EUCD,4,7,E,BD,5371
-2021-04-18,09:19,Sunday,ST GEORGE YUS STATION,MUATC,3,8,S,YU,5881
-2021-04-18,09:55,Sunday,SHEPPARD STATION,MUSC,0,0,N,YU,5926
-2021-04-18,10:06,Sunday,MAIN STREET STATION,MUSC,0,0,W,BD,5081
-2021-04-18,10:34,Sunday,KENNEDY BD STATION,TUMVS,0,0,E,BD,5163
-2021-04-18,11:09,Sunday,FINCH STATION,TUMVS,3,8,N,YU,5841
-2021-04-18,11:47,Sunday,MAIN STREET STATION,EUSC,0,0,W,BD,5281
-2021-04-18,12:13,Sunday,DAVISVILLE STATION,PUSTS,6,11,N,YU,5501
-2021-04-18,12:17,Sunday,COLLEGE STATION,TUOS,3,8,S,YU,5961
-2021-04-18,12:23,Sunday,COLLEGE STATION,TUOS,7,12,S,YU,5946
-2021-04-18,13:09,Sunday,KING STATION,TUOS,6,11,N,YU,5986
-2021-04-18,13:09,Sunday,LAWRENCE WEST STATION,MUPAA,0,0,N,YU,6096
-2021-04-18,13:52,Sunday,ISLINGTON STATION,SUEAS,16,20,W,BD,5055
-2021-04-18,14:42,Sunday,WARDEN STATION,MUIS,0,0,,BD,0
-2021-04-18,14:43,Sunday,ST CLAIR STATION,SUDP,0,0,N,YU,5501
-2021-04-18,14:51,Sunday,FINCH WEST STATION,MUPAA,7,12,N,YU,5661
-2021-04-18,16:11,Sunday,FINCH STATION,SUDP,5,10,S,YU,5921
-2021-04-18,16:15,Sunday,SHEPPARD STATION,MUSC,0,0,N,YU,5501
-2021-04-18,16:22,Sunday,VAUGHAN MC STATION,MUNOA,5,10,S,YU,5566
-2021-04-18,17:43,Sunday,DUNDAS WEST STATION,MUIR,9,13,W,BD,5186
-2021-04-18,18:16,Sunday,DONLANDS STATION,SUDP,6,10,E,BD,5330
-2021-04-18,19:40,Sunday,KENNEDY BD STATION,MUI,4,8,E,BD,5033
-2021-04-18,20:43,Sunday,WELLESLEY STATION,MUPAA,5,12,S,YU,5896
-2021-04-18,22:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-04-18,22:38,Sunday,CHRISTIE STATION,SUO,0,0,E,BD,5165
-2021-04-18,22:59,Sunday,YONGE BD STATION,MUDD,0,0,E,BD,5330
-2021-04-18,23:20,Sunday,DUNDAS STATION,SUUT,0,0,N,YU,5986
-2021-04-18,23:29,Sunday,ST GEORGE YUS STATION,SUO,0,0,S,YU,0
-2021-04-19,02:00,Monday,SHEPPARD STATION,TUSC,0,0,S,YU,5846
-2021-04-19,06:00,Monday,ST GEORGE YUS STATION,MUO,0,0,,YU,0
-2021-04-19,06:07,Monday,MCCOWAN STATION,MRCL,5,10,S,SRT,3016
-2021-04-19,07:11,Monday,KEELE STATION,PUSTS,4,8,E,BD,5110
-2021-04-19,07:47,Monday,KENNEDY BD STATION,MUSAN,4,8,W,BD,5109
-2021-04-19,07:47,Monday,SHEPPARD STATION,MUSC,4,8,N,YU,5501
-2021-04-19,10:25,Monday,FINCH STATION,MUTO,3,7,N,YU,0
-2021-04-19,10:33,Monday,ST ANDREW STATION,MUATC,5,9,S,YU,5946
-2021-04-19,11:17,Monday,DUNDAS WEST STATION,PUTO,3,7,E,BD,5259
-2021-04-19,11:20,Monday,DON MILLS STATION,TUMVS,0,0,E,SHP,6156
-2021-04-19,11:48,Monday,COXWELL STATION,TUNIP,4,8,W,BD,5306
-2021-04-19,13:41,Monday,BLOOR STATION,SUAE,15,19,S,YU,5846
-2021-04-19,13:43,Monday,YONGE BD STATION,SUDP,13,17,W,BD,5114
-2021-04-19,15:21,Monday,ST GEORGE YUS STATION,SUAP,0,0,,YU,0
-2021-04-19,15:39,Monday,GREENWOOD STATION,MUTO,0,0,E,BD,5108
-2021-04-19,15:43,Monday,KIPLING STATION,MUTO,4,8,E,BD,5090
-2021-04-19,16:03,Monday,KENNEDY BD STATION,MUTO,4,8,W,BD,5157
-2021-04-19,16:49,Monday,PAPE STATION,SUO,0,0,,BD,0
-2021-04-19,18:13,Monday,YORK MILLS STATION,SUDP,0,0,S,YU,6011
-2021-04-19,18:24,Monday,KING STATION,MUIRS,0,0,S,YU,0
-2021-04-19,18:35,Monday,BATHURST STATION,MUPAA,3,7,W,BD,5084
-2021-04-19,18:48,Monday,KENNEDY BD STATION,MUD,4,8,W,BD,5055
-2021-04-19,18:54,Monday,ST ANDREW STATION,MUPAA,0,0,S,YU,5856
-2021-04-19,19:07,Monday,WILSON STATION,SUUT,0,0,S,YU,5586
-2021-04-19,19:49,Monday,KENNEDY BD STATION,SUO,0,0,E,BD,0
-2021-04-19,20:38,Monday,DAVISVILLE STATION,SUDP,0,0,S,YU,5961
-2021-04-19,20:45,Monday,SUMMERHILL STATION,SUDP,5,12,S,YU,5961
-2021-04-19,20:49,Monday,DUNDAS WEST STATION,SUPOL,3,10,W,BD,5257
-2021-04-19,20:57,Monday,ROSEDALE STATION,MUPAA,0,0,N,YU,5506
-2021-04-19,21:01,Monday,ROSEDALE STATION,MUPAA,3,10,N,YU,5461
-2021-04-19,21:05,Monday,QUEEN STATION,MUIS,0,0,,YU,0
-2021-04-19,22:00,Monday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-04-19,23:00,Monday,SHEPPARD WEST TO LAWRE,MUO,0,0,,,0
-2021-04-19,23:24,Monday,ST CLAIR STATION,MUIS,0,0,,YU,0
-2021-04-19,23:30,Monday,GREENWOOD STATION,SUDP,0,0,,BD,0
-2021-04-19,23:50,Monday,KIPLING STATION,EUVA,7,14,W,BD,5064
-2021-04-20,01:52,Tuesday,KIPLING TO ISLINGTON,SUEAS,12,19,W,BD,5230
-2021-04-20,02:21,Tuesday,FINCH STATION,MUIS,0,0,,YU,0
-2021-04-20,04:46,Tuesday,EGLINTON STATION,PUTOE,0,0,S,YU,0
-2021-04-20,04:51,Tuesday,OSGOODE STATION,PUTWZ,0,0,N,YU,0
-2021-04-20,05:41,Tuesday,LAWRENCE STATION,PUSTS,0,0,S,YU,5851
-2021-04-20,06:00,Tuesday,ST GEORGE YUS STATION,MUO,0,0,,YU,0
-2021-04-20,06:40,Tuesday,ST GEORGE YUS STATION,EUPI,5,10,N,YU,5576
-2021-04-20,07:10,Tuesday,BLOOR STATION,MUIS,0,0,,YU,0
-2021-04-20,08:15,Tuesday,YONGE BD STATION,MUDD,4,8,W,BD,5228
-2021-04-20,08:53,Tuesday,SHEPPARD STATION,MUSC,0,0,N,YU,5906
-2021-04-20,09:07,Tuesday,WELLESLEY STATION,MUPLC,4,8,N,YU,5911
-2021-04-20,09:56,Tuesday,KIPLING STATION,EUNT,4,8,E,BD,5186
-2021-04-20,10:13,Tuesday,ROSEDALE STATION,MUATC,4,8,S,YU,5826
-2021-04-20,10:42,Tuesday,MCCOWAN STATION,MRSAN,5,10,S,SRT,3012
-2021-04-20,10:46,Tuesday,CHRISTIE STATION,SUAP,0,0,,BD,0
-2021-04-20,11:11,Tuesday,KIPLING STATION,SUDP,4,8,E,BD,5325
-2021-04-20,11:28,Tuesday,KIPLING STATION,SUDP,4,8,E,BD,5069
-2021-04-20,11:33,Tuesday,WILSON STATION,SUDP,5,10,S,YU,5591
-2021-04-20,11:50,Tuesday,DON MILLS STATION,MUIE,0,0,W,SHP,6181
-2021-04-20,12:01,Tuesday,FINCH STATION,MUPAA,0,0,N,YU,5456
-2021-04-20,12:28,Tuesday,FINCH STATION,TUO,3,6,S,YU,5406
-2021-04-20,12:34,Tuesday,FINCH STATION,TUNIP,4,8,S,YU,6111
-2021-04-20,12:39,Tuesday,SHEPPARD STATION,MUSC,0,0,N,YU,5976
-2021-04-20,12:44,Tuesday,ST ANDREW STATION,PUMEL,0,0,,YU,0
-2021-04-20,12:54,Tuesday,ROSEDALE STATION,MUATC,4,8,S,YU,5401
-2021-04-20,13:37,Tuesday,YORK MILLS STATION,TUOS,4,7,S,YU,5506
-2021-04-20,13:43,Tuesday,WILSON STATION,MUPAA,0,0,N,YU,5776
-2021-04-20,13:56,Tuesday,WARDEN STATION,SUDP,4,8,W,BD,5156
-2021-04-20,15:17,Tuesday,PAPE STATION,MUIRS,0,0,,BD,0
-2021-04-20,16:04,Tuesday,SCARBOROUGH CTR STATIO,ERDO,4,9,S,SRT,3012
-2021-04-20,16:45,Tuesday,KENNEDY BD STATION,EUBO,4,8,E,BD,5102
-2021-04-20,16:49,Tuesday,DUNDAS STATION,MUPAA,4,7,N,YU,5911
-2021-04-20,17:07,Tuesday,KIPLING STATION,MUPAA,4,8,E,BD,5291
-2021-04-20,17:48,Tuesday,LAWRENCE STATION,PUSTS,3,7,S,YU,5901
-2021-04-20,17:48,Tuesday,ROSEDALE STATION,SUDP,3,7,N,YU,5821
-2021-04-20,18:14,Tuesday,GREENWOOD YARD,MUIE,0,0,,BD,0
-2021-04-20,18:18,Tuesday,SPADINA YUS STATION,PUMEL,0,0,N,YU,0
-2021-04-20,18:21,Tuesday,ST CLAIR WEST STATION,SUUT,14,19,S,YU,5421
-2021-04-20,18:34,Tuesday,KIPLING STATION,EUNT,4,8,E,BD,5066
-2021-04-20,19:07,Tuesday,UNION TO ST ANDREW,SUDP,3,8,N,YU,5916
-2021-04-20,19:09,Tuesday,SUMMERHILL STATION,SUDP,0,0,S,YU,5901
-2021-04-20,19:53,Tuesday,HIGH PARK STATION,PUMO,0,0,,BD,0
-2021-04-20,20:51,Tuesday,WARDEN STATION,MUIRS,0,0,,BD,0
-2021-04-20,21:29,Tuesday,SPADINA BD STATION,MUIS,0,0,,BD,0
-2021-04-20,22:00,Tuesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-04-20,23:00,Tuesday,SHEPPARD WEST TO LAWRE,MUO,0,0,,YU,0
-2021-04-20,23:07,Tuesday,ST ANDREW STATION,MUI,11,18,S,YU,5466
-2021-04-20,23:44,Tuesday,KENNEDY BD STATION,MUIR,7,14,E,BD,5231
-2021-04-21,01:24,Wednesday,ST ANDREW STATION,MUPAA,0,0,S,YU,5821
-2021-04-21,01:35,Wednesday,COXWELL STATION,MUI,9,16,W,BD,5189
-2021-04-21,01:50,Wednesday,SHEPPARD WEST STATION,MUIS,0,0,,YU,0
-2021-04-21,04:06,Wednesday,BROADVIEW STATION,PUMEL,0,0,,BD,0
-2021-04-21,05:55,Wednesday,KEELE STATION,MUCL,5,10,W,BD,5257
-2021-04-21,06:00,Wednesday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU,0
-2021-04-21,06:22,Wednesday,FINCH STATION,MUTO,0,0,S,YU,5461
-2021-04-21,06:33,Wednesday,ROSEDALE STATION,MUSC,0,0,N,YU,5986
-2021-04-21,06:36,Wednesday,ST GEORGE BD STATION,MUDD,3,8,E,BD,5149
-2021-04-21,06:54,Wednesday,BROADVIEW STATION,SUDP,0,0,W,BD,0
-2021-04-21,08:34,Wednesday,LANSDOWNE STATION,SUO,6,10,E,BD,5291
-2021-04-21,08:50,Wednesday,VICTORIA PARK STATION,SUO,4,8,W,BD,5257
-2021-04-21,09:06,Wednesday,SHEPPARD STATION,MUSC,0,0,N,YU,5821
-2021-04-21,09:19,Wednesday,SHEPPARD STATION,SUO,0,0,N,YU,5501
-2021-04-21,09:30,Wednesday,FINCH STATION,MUSAN,4,8,S,YU,5506
-2021-04-21,09:42,Wednesday,COLLEGE STATION,MUPAA,0,0,S,YU,6111
-2021-04-21,09:48,Wednesday,WOODBINE STATION,SUAE,0,0,,BD,0
-2021-04-21,09:58,Wednesday,SPADINA YUS STATION,MUPAA,0,0,N,YU,5471
-2021-04-21,10:21,Wednesday,MAIN STREET STATION,MUPAA,0,0,W,BD,5102
-2021-04-21,12:14,Wednesday,BLOOR STATION,SUDP,3,7,S,YU,5456
-2021-04-21,14:28,Wednesday,DONLANDS STATION,MUIS,0,0,,BD,0
-2021-04-21,14:57,Wednesday,SPADINA YUS STATION,SUDP,5,10,N,YU,5611
-2021-04-21,15:07,Wednesday,ISLINGTON STATION,SUDP,3,7,E,BD,5328
-2021-04-21,15:09,Wednesday,ST CLAIR STATION,SUDP,4,8,S,YU,6126
-2021-04-21,15:25,Wednesday,FINCH STATION,TUNIP,6,10,S,YU,5401
-2021-04-21,15:34,Wednesday,EGLINTON WEST STATION,MUATC,0,0,N,YU,6041
-2021-04-21,16:18,Wednesday,ST GEORGE YUS STATION,MUIR,3,8,S,YU,5616
-2021-04-21,16:22,Wednesday,DUNDAS STATION,SUO,0,0,,YU,0
-2021-04-21,16:25,Wednesday,COLLEGE STATION,SUDP,0,0,N,YU,5456
-2021-04-21,16:49,Wednesday,BLOOR STATION,MUD,3,7,S,YU,6056
-2021-04-21,17:32,Wednesday,WARDEN STATION,SUDP,0,0,,BD,0
-2021-04-21,17:44,Wednesday,EGLINTON WEST STATION,MUPAA,0,0,N,YU,5611
-2021-04-21,17:50,Wednesday,WILSON STATION,PUMEL,0,0,,YU,0
-2021-04-21,17:58,Wednesday,FINCH STATION,MUPAA,0,0,N,YU,5821
-2021-04-21,18:02,Wednesday,ROSEDALE STATION,SUAP,6,10,N,YU,5501
-2021-04-21,18:31,Wednesday,WELLESLEY STATION,SUDP,0,0,N,YU,5856
-2021-04-21,18:59,Wednesday,VICTORIA PARK STATION,MUPAA,5,9,W,BD,5090
-2021-04-21,19:00,Wednesday,OLD MILL STATION,SUAE,7,11,E,BD,5077
-2021-04-21,19:49,Wednesday,KIPLING STATION,TUO,5,12,E,BD,5149
-2021-04-21,20:30,Wednesday,COLLEGE STATION,SUAP,14,21,N,YU,5501
-2021-04-21,21:03,Wednesday,QUEEN STATION,MUNCA,0,0,S,YU,0
-2021-04-21,21:52,Wednesday,BLOOR STATION,MUIS,0,0,,YU,0
-2021-04-21,22:00,Wednesday,YONGE UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-04-21,22:31,Wednesday,COLLEGE STATION,MUD,0,0,N,YU,5855
-2021-04-21,23:00,Wednesday,SHEPPARD WEST TO LAWRE,MUO,0,0,,YU,0
-2021-04-21,23:26,Wednesday,QUEEN STATION,PUMEL,0,0,,YU,0
-2021-04-22,00:38,Thursday,SHEPPARD WEST STATION,MUIS,0,0,,YU,0
-2021-04-22,00:43,Thursday,FINCH STATION,TUO,7,14,S,YU,6081
-2021-04-22,01:51,Thursday,DUNDAS WEST STATION,MUIS,0,0,,BD,0
-2021-04-22,01:57,Thursday,FINCH STATION,MUIS,0,0,S,YU,0
-2021-04-22,02:15,Thursday,YORK MILLS STATION,MUPAA,0,0,N,YU,5856
-2021-04-22,04:47,Thursday,GUNN BUILDING,PUSZC,0,0,,YU,0
-2021-04-22,05:38,Thursday,DAVISVILLE STATION,PUTO,6,0,N,YU,5466
-2021-04-22,05:42,Thursday,FINCH STATION,SUDP,0,0,,YU,0
-2021-04-22,06:01,Thursday,DAVISVILLE STATION,PUSSW,5,10,N,YU,6111
-2021-04-22,06:04,Thursday,DAVISVILLE STATION,PUSSW,3,6,S,YU,5901
-2021-04-22,06:37,Thursday,CHESTER CENTRE TRACK,EUSC,0,0,W,BD,5286
-2021-04-22,08:03,Thursday,BLOOR STATION,SUSA,0,0,,YU,0
-2021-04-22,08:52,Thursday,RUNNYMEDE STATION,MUIRS,0,0,,BD,0
-2021-04-22,09:40,Thursday,OSGOODE STATION,SUDP,3,6,N,YU,5901
-2021-04-22,10:46,Thursday,ISLINGTON STATION,MUIRS,6,10,W,BD,5266
-2021-04-22,11:31,Thursday,KENNEDY BD STATION,TUO,6,10,W,BD,5350
-2021-04-22,12:34,Thursday,DUNDAS STATION,SUUT,14,17,N,YU,5581
-2021-04-22,12:35,Thursday,JANE STATION,EUBO,4,8,E,BD,5069
-2021-04-22,12:57,Thursday,KIPLING STATION,SUO,0,0,,BD,0
-2021-04-22,12:59,Thursday,BLOOR STATION,MUPAA,5,8,N,YU,5676
-2021-04-22,13:10,Thursday,FINCH STATION,MUSAN,3,6,S,YU,5606
-2021-04-22,13:33,Thursday,COXWELL STATION,SUDP,4,8,W,BD,5245
-2021-04-22,14:01,Thursday,COXWELL STATION,TUNIP,3,7,W,BD,5358
-2021-04-22,14:20,Thursday,SPADINA BD STATION,SUDP,13,17,W,BD,5358
-2021-04-22,14:29,Thursday,EGLINTON WEST STATION,SUDP,0,0,N,YU,5826
-2021-04-22,14:50,Thursday,CHRISTIE STATION,MUSC,0,0,E,BD,5230
-2021-04-22,15:14,Thursday,DUPONT STATION,MUPAA,0,0,N,YU,5951
-2021-04-22,15:58,Thursday,KIPLING STATION,MUTO,5,9,E,BD,5212
-2021-04-22,16:04,Thursday,DAVISVILLE STATION,MUPAA,0,0,N,YU,5891
-2021-04-22,16:09,Thursday,FINCH STATION,MUSC,0,0,S,YU,5496
-2021-04-22,16:43,Thursday,SPADINA YU STATION,MUIS,0,0,,YU,0
-2021-04-22,16:55,Thursday,DUFFERIN STATION,SUDP,0,0,,BD,0
-2021-04-22,17:16,Thursday,BLOOR STATION,SUDP,0,0,N,YU,6531
-2021-04-22,17:16,Thursday,YONGE BD STATION,SUDP,0,0,W,BD,5066
-2021-04-22,17:45,Thursday,CASTLE FRANK STATION,SUAP,0,0,,BD,0
-2021-04-22,18:12,Thursday,YORKDALE STATION,SUO,0,0,,YU,0
-2021-04-22,18:50,Thursday,SPADINA BD STATION,TUNCA,0,0,,BD,0
-2021-04-22,18:56,Thursday,FINCH WEST STATION,SUDP,6,11,N,YU,5916
-2021-04-22,19:54,Thursday,COLLEGE STATION,MUPAA,0,0,S,YU,5921
-2021-04-22,20:06,Thursday,BLOOR STATION,MUIRS,0,0,S,YU,0
-2021-04-22,20:06,Thursday,ROSEDALE STATION,MUATC,9,14,S,YU,5401
-2021-04-22,20:16,Thursday,VAUGHAN MC STATION,TUNIP,3,8,S,YU,5891
-2021-04-22,21:30,Thursday,KENNEDY BD STATION,MUIR,3,10,W,BD,5102
-2021-04-22,21:36,Thursday,KING STATION,PUTO,4,10,N,YU,5926
-2021-04-22,21:37,Thursday,YONGE BD STATION,MUD,3,10,W,BD,5257
-2021-04-22,22:00,Thursday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-04-22,22:26,Thursday,SHEPPARD WEST STATION,MUIS,0,0,,YU,0
-2021-04-22,23:00,Thursday,SHEPPARD WEST TO LAWRE,MUO,0,0,,YU,0
-2021-04-22,23:28,Thursday,MCCOWAN STATION,PRSW,12,19,S,SRT,3022
-2021-04-22,23:53,Thursday,WILSON YARD,MUIE,0,0,,YU,0
-2021-04-23,00:18,Friday,WELLESLEY STATION,MUIS,3,10,N,YU,5551
-2021-04-23,01:45,Friday,FINCH STATION,SUDP,0,0,N,YU,5431
-2021-04-23,06:25,Friday,MCCOWAN STATION,PRSW,80,85,S,SRT,3022
-2021-04-23,07:37,Friday,BAY STATION,SUDP,0,0,E,BD,5029
-2021-04-23,07:37,Friday,EGLINTON STATION,MUIRS,0,0,,YU,0
-2021-04-23,07:54,Friday,FINCH STATION,EUSC,0,0,S,YU,5726
-2021-04-23,08:02,Friday,ISLINGTON STATION,MUTO,3,7,E,BD,5322
-2021-04-23,10:04,Friday,DUNDAS STATION,MUIS,0,0,N,YU,0
-2021-04-23,10:21,Friday,LAWRENCE STATION,PUTO,24,27,N,YU,5431
-2021-04-23,10:32,Friday,KEELE STATION,TUOS,4,8,W,BD,5186
-2021-04-23,10:41,Friday,VAUGHAN MC STATION,MUATC,3,6,S,YU,5446
-2021-04-23,11:47,Friday,ELLESMERE STATION,TRO,10,15,N,SRT,3019
-2021-04-23,12:07,Friday,MCCOWAN STATION,TRO,11,16,S,SRT,3020
-2021-04-23,12:08,Friday,FINCH STATION,MUSC,0,0,S,YU,5686
-2021-04-23,12:13,Friday,SHEPPARD WEST STATION,MUIS,0,0,,YU,0
-2021-04-23,12:41,Friday,OSGOODE STATION,MUATC,3,6,N,YU,5686
-2021-04-23,13:24,Friday,BLOOR STATION,MUIRS,0,0,S,YU,0
-2021-04-23,13:59,Friday,HIGHWAY 407 STATION,MUIE,0,0,,YU,0
-2021-04-23,14:20,Friday,BATHURST STATION,MUPAA,4,8,E,BD,5177
-2021-04-23,14:31,Friday,ROSEDALE STATION,MUSAN,4,7,S,YU,6126
-2021-04-23,15:16,Friday,BLOOR STATION,PUTR,5,8,S,YU,5946
-2021-04-23,15:18,Friday,BAY STATION,MUIS,0,0,,BD,0
-2021-04-23,15:38,Friday,KIPLING STATION,MUTO,4,8,E,BD,5169
-2021-04-23,16:31,Friday,DUNDAS STATION,SUDP,0,0,N,YU,0
-2021-04-23,18:24,Friday,ST CLAIR WEST STATION,MUIRS,0,0,,YU,0
-2021-04-23,19:29,Friday,BLOOR STATION,MUIRS,0,0,,YU,0
-2021-04-23,20:27,Friday,LAWRENCE WEST STATION,MUIS,0,0,S,YU,0
-2021-04-23,20:35,Friday,NORTH YORK CTR STATION,SUDP,0,0,N,YU,5451
-2021-04-23,21:47,Friday,DUNDAS WEST STATION,SUAE,13,20,W,BD,5024
-2021-04-23,22:00,Friday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-04-24,00:14,Saturday,CHESTER STATION,MUSAN,7,13,E,BD,5174
-2021-04-24,00:39,Saturday,HIGH PARK STATION,MUIS,0,0,W,BD,5143
-2021-04-24,02:53,Saturday,KIPLING STATION,SUUT,0,0,,BD,0
-2021-04-24,05:47,Saturday,DON MILLS STATION,EUBK,3,7,W,SHP,6196
-2021-04-24,05:56,Saturday,KEELE STATION,EULV,15,20,E,BD,5169
-2021-04-24,06:00,Saturday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU,0
-2021-04-24,06:01,Saturday,KEELE STATION,EUCD,5,10,W,BD,5169
-2021-04-24,06:04,Saturday,KENNEDY BD STATION,EUME,5,10,W,BD,5266
-2021-04-24,06:21,Saturday,HIGH PARK STATION,MUO,15,0,E,BD,5196
-2021-04-24,06:43,Saturday,QUEEN'S PARK STATION,MUIS,0,0,,YU,0
-2021-04-24,09:45,Saturday,ST CLAIR STATION,MUIR,19,25,N,YU,6111
-2021-04-24,10:20,Saturday,KEELE STATION,PUSTC,0,0,E,BD,5156
-2021-04-24,10:22,Saturday,ST CLAIR STATION,MUATC,18,24,S,YU,5741
-2021-04-24,10:32,Saturday,KENNEDY BD STATION,PUSTC,0,0,E,BD,5234
-2021-04-24,11:28,Saturday,QUEEN'S PARK STATION,EUBK,0,0,N,YU,5616
-2021-04-24,12:42,Saturday,GREENWOOD STATION,TUNOA,4,8,E,BD,0
-2021-04-24,12:49,Saturday,KENNEDY BD STATION,TUNOA,4,8,W,BD,0
-2021-04-24,13:18,Saturday,SPADINA YUS STATION,MUNCA,0,0,,YU,0
-2021-04-24,17:17,Saturday,QUEEN STATION,MUNCA,0,0,,YU,0
-2021-04-24,17:56,Saturday,VICTORIA PARK STATION,EUBO,5,9,W,BD,5234
-2021-04-24,18:14,Saturday,COXWELL STATION,MUPAA,0,0,E,BD,5368
-2021-04-24,19:21,Saturday,YORK UNIVERSITY STATIO,MUIS,0,0,S,YU,6086
-2021-04-24,20:44,Saturday,OSSINGTON STATION,MUTO,6,12,E,BD,5134
-2021-04-24,20:57,Saturday,SHEPPARD-YONGE STATION,TUSC,0,0,W,SHP,6186
-2021-04-24,21:21,Saturday,OSSINGTON STATION,MUI,22,28,E,BD,5261
-2021-04-24,22:00,Saturday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-04-25,00:06,Sunday,VAUGHAN MC STATION,TUNIP,7,12,S,YU,5431
-2021-04-25,00:25,Sunday,KENNEDY BD STATION,PUSSW,30,35,W,BD,5303
-2021-04-25,01:33,Sunday,CHESTER STATION,MUIR,3,8,W,BD,5189
-2021-04-25,02:07,Sunday,WARDEN STATION,SUPOL,17,23,E,BD,5325
-2021-04-25,07:49,Sunday,FINCH STATION,SUAE,0,0,,YU,0
-2021-04-25,08:00,Sunday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU,0
-2021-04-25,08:11,Sunday,MAIN STREET STATION,EUCD,4,0,W,BD,5189
-2021-04-25,08:25,Sunday,BROADVIEW STATION,EUOE,44,48,W,BD,5189
-2021-04-25,09:00,Sunday,ST CLAIR STATION,EUSC,0,0,S,YU,5726
-2021-04-25,10:51,Sunday,MAIN STREET STATION,MUSC,0,0,W,BD,5303
-2021-04-25,10:55,Sunday,KEELE STATION,PUTIJ,0,0,E,BD,5218
-2021-04-25,11:05,Sunday,ST CLAIR STATION,EUSC,0,0,S,YU,5726
-2021-04-25,11:23,Sunday,KIPLING STATION,TUMVS,0,0,W,BD,5333
-2021-04-25,11:58,Sunday,WARDEN STATION,MUTO,4,8,E,BD,5147
-2021-04-25,12:30,Sunday,CHRISTIE STATION,SUUT,15,19,E,BD,5081
-2021-04-25,14:37,Sunday,MAIN STREET STATION,SUAP,0,0,,BD,0
-2021-04-25,15:26,Sunday,DUNDAS WEST STATION,SUPOL,10,14,W,BD,5147
-2021-04-25,16:08,Sunday,OSSINGTON STATION,SUDP,4,10,E,BD,5108
-2021-04-25,16:53,Sunday,QUEEN STATION,SUDP,0,0,N,YU,5681
-2021-04-25,17:07,Sunday,BLOOR STATION,MUIS,0,0,,YU,0
-2021-04-25,21:56,Sunday,VICTORIA PARK STATION,MUIS,0,0,,BD,0
-2021-04-25,22:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-04-25,22:32,Sunday,QUEEN STATION,PUTDN,5,10,S,YU,5831
-2021-04-25,22:58,Sunday,UNION STATION,MUIS,0,0,,YU,0
-2021-04-25,23:35,Sunday,EGLINTON STATION,MUIS,0,0,,YU,0
-2021-04-26,00:57,Monday,ST CLAIR WEST STATION,SUDP,7,14,S,YU,6086
-2021-04-26,01:00,Monday,SPADINA BD STATION,SUUT,3,10,E,BD,5073
-2021-04-26,01:16,Monday,QUEEN STATION,SUDP,3,10,S,YU,5731
-2021-04-26,01:30,Monday,GLENCAIRN STATION,PUSCA,4,11,N,YU,6091
-2021-04-26,02:00,Monday,WOODBINE STATION,MUPAA,0,0,E,BD,5116
-2021-04-26,04:36,Monday,QUEEN'S PARK STATION,SUUT,0,0,N,YU,0
-2021-04-26,05:12,Monday,LAWRENCE EAST STATION,TRNCA,0,0,,SRT,0
-2021-04-26,05:33,Monday,CHRISTIE STATION,MUNCA,0,0,,BD,0
-2021-04-26,05:44,Monday,EGLINTON STATION,PUSTS,3,7,S,YU,6076
-2021-04-26,06:00,Monday,SHEPPARD WEST TO WILSO,MUO,0,0,,YU,0
-2021-04-26,06:13,Monday,DAVISVILLE STATION,PUSI,0,0,N,YU,5651
-2021-04-26,06:19,Monday,FINCH STATION,TUMVS,0,0,N,YU,5691
-2021-04-26,06:27,Monday,EGLINTON STATION,TUMVS,0,0,S,YU,5976
-2021-04-26,06:37,Monday,LANSDOWNE STATION,MUIE,0,0,E,BD,5086
-2021-04-26,07:51,Monday,PAPE STATION,SUDP,3,7,W,BD,5004
-2021-04-26,08:06,Monday,FINCH STATION,EUSC,4,8,S,YU,5726
-2021-04-26,09:22,Monday,LAWRENCE WEST STATION,SUAP,4,8,N,YU,6091
-2021-04-26,09:22,Monday,RUNNYMEDE STATION,SUO,5,9,E,BD,5073
-2021-04-26,11:00,Monday,SHEPPARD STATION,MUO,4,8,N,YU,6046
-2021-04-26,11:27,Monday,WILSON STATION,PUTWZ,7,11,S,YU,5976
-2021-04-26,11:55,Monday,EGLINTON WEST STATION,MUI,16,20,S,YU,5651
-2021-04-26,12:54,Monday,KENNEDY BD STATION,MUTD,8,12,W,BD,5316
-2021-04-26,13:46,Monday,LAWRENCE STATION,MUIR,6,10,S,YU,6111
-2021-04-26,14:06,Monday,SHEPPARD STATION,SUDP,4,8,S,YU,5876
-2021-04-26,14:31,Monday,BLOOR STATION,SUDP,4,8,S,YU,5876
-2021-04-26,14:41,Monday,UNION STATION,SUDP,14,18,N,YU,5876
-2021-04-26,15:01,Monday,MCCOWAN STATION,TRNIP,5,10,S,SRT,3027
-2021-04-26,15:10,Monday,KING STATION,PUMEL,0,0,,YU,0
-2021-04-26,15:25,Monday,ST GEORGE YUS STATION,MUPAA,0,0,N,YU,6091
-2021-04-26,16:22,Monday,FINCH STATION,MUSAN,4,8,S,YU,5686
-2021-04-26,16:44,Monday,WILSON STATION,MUIS,0,0,,YU,0
-2021-04-26,16:49,Monday,DONLANDS STATION,MUI,0,0,E,BD,5200
-2021-04-26,17:03,Monday,QUEEN STATION,MUNCA,0,0,,YU,0
-2021-04-26,17:14,Monday,ST CLAIR WEST STATION,MUIRS,0,0,,YU,0
-2021-04-26,17:46,Monday,OLD MILL STATION,SUDP,8,12,E,BD,5250
-2021-04-26,18:59,Monday,KENNEDY SRT STATION,ERDO,13,18,S,SRT,3026
-2021-04-26,19:31,Monday,SHERBOURNE STATION,PUMEL,0,0,,BD,0
-2021-04-26,19:34,Monday,SHEPPARD STATION,MUIS,0,0,,YU,0
-2021-04-26,20:43,Monday,ELLESMERE STATION,ERDO,9,14,S,SRT,3026
-2021-04-26,21:25,Monday,WELLESLEY STATION,MUPAA,3,10,S,YU,5726
-2021-04-26,21:28,Monday,BAY STATION,MUIS,0,0,,BD,0
-2021-04-26,21:29,Monday,KENNEDY BD STATION,EUDO,7,14,W,BD,5200
-2021-04-26,21:51,Monday,DON MILLS STATION,TUSC,0,0,W,SHP,6141
-2021-04-26,22:00,Monday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-04-26,22:53,Monday,SUMMERHILL STATION,SUDP,19,26,S,YU,5696
-2021-04-27,00:37,Tuesday,COXWELL STATION,MUIS,0,0,,BD,0
-2021-04-27,00:38,Tuesday,OSGOODE STATION,MUIR,7,15,S,YU,5396
-2021-04-27,00:48,Tuesday,MCCOWAN YARD,SRO,0,0,,SRT,3022
-2021-04-27,01:56,Tuesday,FINCH STATION,SUAE,0,0,,YU,0
-2021-04-27,02:35,Tuesday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-04-27,05:57,Tuesday,EGLINTON STATION,MUTO,3,7,N,YU,5431
-2021-04-27,06:00,Tuesday,SHEPPARD WEST TO WILSO,MUO,0,0,,YU,0
-2021-04-27,06:00,Tuesday,TORONTO TRANSIT COMMIS,MRO,0,0,,SRT,0
-2021-04-27,06:00,Tuesday,TORONTO TRANSIT COMMIS,MUO,0,0,,YU,0
-2021-04-27,06:00,Tuesday,TORONTO TRANSIT COMMIS,MUO,0,0,,SHP,0
-2021-04-27,06:13,Tuesday,WILSON STATION,MUO,4,8,S,YU,5641
-2021-04-27,06:15,Tuesday,EGLINTON STATION,SUG,3,6,N,YU,5381
-2021-04-27,07:06,Tuesday,QUEEN STATION,MUI,18,22,S,YU,5761
-2021-04-27,08:19,Tuesday,YONGE BD STATION,TUMVS,9,13,W,BD,5160
-2021-04-27,08:52,Tuesday,KIPLING STATION,TUO,4,8,E,BD,5232
-2021-04-27,09:03,Tuesday,WILSON STATION,MUATC,4,8,S,YU,5901
-2021-04-27,09:08,Tuesday,KEELE STATION,SUDP,0,0,,BD,0
-2021-04-27,09:45,Tuesday,SPADINA BD STATION,SUUT,3,7,E,BD,5205
-2021-04-27,12:13,Tuesday,CASTLE FRANK STATION,MUDD,3,7,E,BD,5180
-2021-04-27,12:49,Tuesday,DONLANDS STATION,MUIRS,0,0,,BD,0
-2021-04-27,13:32,Tuesday,EGLINTON WEST STATION,MUIR,10,14,S,YU,5431
-2021-04-27,13:33,Tuesday,OSSINGTON STATION,MUIS,0,0,,BD,0
-2021-04-27,14:43,Tuesday,ST CLAIR WEST STATION,MUSAN,4,8,S,YU,5706
-2021-04-27,15:53,Tuesday,WILSON STATION,TUNIP,6,10,S,YU,5601
-2021-04-27,16:04,Tuesday,BLOOR STATION,MUIS,0,0,,YU,0
-2021-04-27,17:01,Tuesday,CASTLE FRANK STATION,SUAP,0,0,E,BD,5283
-2021-04-27,17:29,Tuesday,UNION STATION,MUIR,0,0,N,YU,5976
-2021-04-27,17:59,Tuesday,YORK MILLS STATION,MUSC,0,0,N,YU,5481
-2021-04-27,18:03,Tuesday,SPADINA YUS STATION,SUUT,5,9,S,YU,6116
-2021-04-27,18:05,Tuesday,ST GEORGE YUS STATION,MUWR,7,11,S,YU,6116
-2021-04-27,18:50,Tuesday,DUNDAS STATION,MUIS,0,0,S,YU,0
-2021-04-27,19:16,Tuesday,VICTORIA PARK STATION,PUSTS,0,0,E,BD,5196
-2021-04-27,19:31,Tuesday,VICTORIA PARK STATION,TUMVS,0,0,E,BD,5033
-2021-04-27,19:52,Tuesday,COXWELL STATION,SUDP,9,16,W,BD,5172
-2021-04-27,21:23,Tuesday,QUEEN'S PARK STATION,SUDP,0,0,N,YU,5961
-2021-04-27,22:00,Tuesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-04-27,22:19,Tuesday,EGLINTON WEST STATION,MUATC,5,13,N,YU,5386
-2021-04-28,00:48,Wednesday,KIPLING STATION,MUTO,8,15,E,BD,5189
-2021-04-28,01:47,Wednesday,WILSON STATION,MUIS,0,0,,YU,0
-2021-04-28,02:24,Wednesday,SHEPPARD STATION,MUIS,0,0,,YU,0
-2021-04-28,02:54,Wednesday,FINCH STATION,MUIS,0,0,,YU,0
-2021-04-28,05:43,Wednesday,WARDEN STATION,MUPAA,0,0,W,BD,5287
-2021-04-28,06:00,Wednesday,SHEPPARD WEST TO WILSO,MUO,0,0,,YU,0
-2021-04-28,06:00,Wednesday,TORONTO TRANSIT COMMIS,MRO,0,0,,SRT,0
-2021-04-28,06:00,Wednesday,TORONTO TRANSIT COMMIS,MUO,0,0,,YU,0
-2021-04-28,06:00,Wednesday,TORONTO TRANSIT COMMIS,MUO,0,0,,SHP,0
-2021-04-28,06:03,Wednesday,EGLINTON STATION,EUVA,4,8,N,YU,5926
-2021-04-28,06:10,Wednesday,WILSON STATION,MUATC,4,8,S,YU,5476
-2021-04-28,06:11,Wednesday,VAUGHAN MC STATION,MUCL,4,8,S,YU,5891
-2021-04-28,06:11,Wednesday,WILSON STATION,MUATC,4,8,S,YU,5691
-2021-04-28,06:17,Wednesday,EGLINTON STATION,MUIS,0,0,,YU,0
-2021-04-28,06:34,Wednesday,WILSON YARD,MUO,0,0,,YU,0
-2021-04-28,06:43,Wednesday,ROSEDALE STATION,MUATC,8,12,S,YU,5596
-2021-04-28,07:25,Wednesday,SHEPPARD-YONGE STATION,MUIR,4,9,E,SHP,6156
-2021-04-28,08:34,Wednesday,ROSEDALE STATION,SUAP,3,7,S,YU,6111
-2021-04-28,09:03,Wednesday,SPADINA YUS STATION,EUDO,3,7,S,YU,5786
-2021-04-28,09:28,Wednesday,COXWELL STATION,TUNIP,4,8,W,BD,5158
-2021-04-28,09:43,Wednesday,EGLINTON WEST STATION,PUSCR,4,8,N,YU,6121
-2021-04-28,09:54,Wednesday,SHEPPARD WEST STATION,PUTWZ,4,8,N,YU,5531
-2021-04-28,10:06,Wednesday,SHEPPARD STATION,SUDP,0,0,N,YU,6116
-2021-04-28,10:36,Wednesday,BROADVIEW STATION,MUSC,3,7,E,BD,5283
-2021-04-28,10:42,Wednesday,ISLINGTON STATION,PUSO,4,8,E,BD,5042
-2021-04-28,10:50,Wednesday,OLD MILL STATION,MUTO,4,8,E,BD,5042
-2021-04-28,11:05,Wednesday,SHEPPARD-YONGE STATION,PUSTS,5,10,W,SHP,6151
-2021-04-28,11:54,Wednesday,DUNDAS STATION,MUIR,0,0,N,YU,5946
-2021-04-28,12:17,Wednesday,VICTORIA PARK STATION,SUDP,13,17,W,BD,5177
-2021-04-28,12:58,Wednesday,QUEEN'S PARK STATION,SUDP,0,0,N,YU,5991
-2021-04-28,13:56,Wednesday,ISLINGTON STATION,MUIS,0,0,,BD,0
-2021-04-28,14:50,Wednesday,FINCH STATION,SUDP,0,0,,YU,0
-2021-04-28,15:23,Wednesday,KENNEDY BD STATION,MUSAN,4,8,W,BD,5217
-2021-04-28,15:30,Wednesday,WILSON STATION,PUMST,0,0,,YU,0
-2021-04-28,15:54,Wednesday,KIPLING STATION,PUSTS,0,0,W,BD,5024
-2021-04-28,15:55,Wednesday,WILSON STATION,TUNIP,5,10,S,YU,5381
-2021-04-28,15:59,Wednesday,KIPLING STATION,PUSTS,6,10,E,BD,5156
-2021-04-28,16:09,Wednesday,SPADINA BD STATION,SUUT,0,0,W,BD,0
-2021-04-28,16:58,Wednesday,KIPLING STATION,MUIR,4,8,E,BD,5207
-2021-04-28,17:09,Wednesday,WARDEN STATION,SUDP,0,0,W,BD,5177
-2021-04-28,17:32,Wednesday,OSSINGTON STATION,MUIS,0,0,,BD,0
-2021-04-28,17:48,Wednesday,BLOOR STATION,SUAP,0,0,S,YU,0
-2021-04-28,18:08,Wednesday,DAVISVILLE STATION,MUIR,0,0,N,YU,6115
-2021-04-28,18:15,Wednesday,JANE STATION,MUIR,5,9,W,BD,5102
-2021-04-28,18:21,Wednesday,OSSINGTON STATION,SUUT,11,15,E,BD,5193
-2021-04-28,18:37,Wednesday,ST GEORGE BD STATION,MUIR,6,10,E,BD,5170
-2021-04-28,19:09,Wednesday,EGLINTON WEST STATION,SUDP,17,22,S,YU,5786
-2021-04-28,19:10,Wednesday,KENNEDY BD STATION,SUAE,0,0,E,BD,5182
-2021-04-28,19:25,Wednesday,MCCOWAN STATION,MRO,5,10,S,SRT,3012
-2021-04-28,20:33,Wednesday,KIPLING STATION,SUDP,3,10,E,BD,5042
-2021-04-28,20:47,Wednesday,OSSINGTON STATION,MUNCA,0,0,,BD,0
-2021-04-28,20:58,Wednesday,DUNDAS STATION,SUROB,9,16,N,YU,5691
-2021-04-28,21:23,Wednesday,BATHURST STATION,SUAE,16,23,W,BD,5158
-2021-04-28,21:34,Wednesday,WARDEN STATION,MUIS,0,0,,BD,0
-2021-04-28,21:35,Wednesday,ST GEORGE BD STATION,MUPAA,0,0,W,BD,5015
-2021-04-28,21:53,Wednesday,COXWELL STATION,SUDP,0,0,,BD,0
-2021-04-28,22:00,Wednesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-04-28,22:17,Wednesday,DUNDAS STATION,MUIS,0,0,,YU,0
-2021-04-28,22:56,Wednesday,KIPLING STATION,MUWR,7,14,E,BD,5189
-2021-04-28,23:15,Wednesday,QUEEN STATION,MUIRS,7,14,S,YU,5436
-2021-04-28,23:17,Wednesday,KENNEDY BD STATION,MUI,7,14,E,BD,5042
-2021-04-28,23:24,Wednesday,FINCH STATION,EUAC,7,14,S,YU,5936
-2021-04-29,00:17,Thursday,YONGE STATION,MUIS,0,0,,YU,0
-2021-04-29,02:05,Thursday,UNION STATION,MUIS,0,0,,YU,0
-2021-04-29,02:44,Thursday,UNION STATION,MUNCA,0,0,,YU,0
-2021-04-29,06:00,Thursday,SHEPPARD WEST TO WILSO,MUO,0,0,B,YU,0
-2021-04-29,06:09,Thursday,WILSON STATION,MUATC,4,8,S,YU,5661
-2021-04-29,06:12,Thursday,DAVISVILLE STATION,EUYRD,4,8,N,YU,6126
-2021-04-29,06:31,Thursday,WARDEN STATION,MUPR1,158,162,W,BD,5015
-2021-04-29,06:32,Thursday,WARDEN STATION,MUIE,4,8,E,BD,5257
-2021-04-29,07:05,Thursday,MAIN STREET STATION,TUSC,0,0,W,BD,5258
-2021-04-29,07:27,Thursday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-04-29,07:56,Thursday,KING STATION,MUIRS,0,0,,YU,0
-2021-04-29,08:25,Thursday,CHESTER STATION,MUSC,0,0,E,BD,5303
-2021-04-29,08:26,Thursday,ROSEDALE STATION,MUATC,4,8,S,YU,5781
-2021-04-29,09:58,Thursday,ST CLAIR STATION,TUOS,4,8,S,YU,5941
-2021-04-29,10:06,Thursday,KENNEDY BD STATION,MUTO,4,8,W,BD,5040
-2021-04-29,10:24,Thursday,SHEPPARD-YONGE STATION,TUMVS,0,0,W,SHP,6151
-2021-04-29,10:25,Thursday,FINCH STATION,MUSAN,4,8,S,YU,5591
-2021-04-29,10:45,Thursday,YORK MILLS STATION,PUSWZ,7,11,S,YU,5446
-2021-04-29,11:14,Thursday,DUNDAS WEST STATION,MUI,6,10,E,BD,5042
-2021-04-29,11:36,Thursday,SHEPPARD-YONGE STATION,TUMVS,0,0,W,SHP,6166
-2021-04-29,11:47,Thursday,KENNEDY BD STATION,EUDO,4,8,W,BD,5069
-2021-04-29,12:10,Thursday,HIGH PARK STATION,EUSC,4,8,E,BD,5355
-2021-04-29,12:49,Thursday,LANSDOWNE STATION,SUDP,4,8,W,BD,5258
-2021-04-29,12:57,Thursday,KENNEDY SRT STATION,MRSAN,8,13,N,SRT,3017
-2021-04-29,13:11,Thursday,BLOOR STATION,MUIRS,0,0,,YU,0
-2021-04-29,13:18,Thursday,OLD MILL STATION,MUSC,0,0,E,BD,5158
-2021-04-29,14:01,Thursday,WARDEN STATION,SUUT,14,18,W,BD,5142
-2021-04-29,14:51,Thursday,DAVISVILLE STATION,EUBO,4,8,S,YU,5446
-2021-04-29,15:18,Thursday,EGLINTON WEST STATION,SUO,20,24,N,YU,5506
-2021-04-29,16:04,Thursday,ISLINGTON STATION,SUDP,0,0,E,BD,5063
-2021-04-29,16:32,Thursday,ST GEORGE BD STATION,MUPAA,0,0,W,BD,5186
-2021-04-29,17:00,Thursday,UNION STATION,MUIRS,0,0,,YU,0
-2021-04-29,17:45,Thursday,YONGE BD STATION,SUSA,0,0,,BD,0
-2021-04-29,18:57,Thursday,DUPONT STATION,MUIR,19,23,N,YU,5801
-2021-04-29,19:27,Thursday,BATHURST STATION,MUIRS,0,0,,BD,0
-2021-04-29,20:03,Thursday,DUNDAS STATION,MUPAA,0,0,N,YU,5806
-2021-04-29,20:17,Thursday,COXWELL STATION,TUNIP,3,10,W,BD,5172
-2021-04-29,21:00,Thursday,WILSON STATION,MUTO,5,12,S,YU,6026
-2021-04-29,21:31,Thursday,WILSON HOSTLER,SUDP,0,0,N,YU,5591
-2021-04-29,22:00,Thursday,YONGE UNIVERSITY SPADI,MUO,0,0,,,0
-2021-04-29,23:05,Thursday,MAIN STREET STATION,MUPAA,0,0,E,BD,5156
-2021-04-29,23:07,Thursday,OSSINGTON STATION,TUMVS,5,12,E,BD,5250
-2021-04-29,23:32,Thursday,EGLINTON STATION,PUMO,0,0,,YU,0
-2021-04-30,01:04,Friday,SHEPPARD WEST STATION,MUIS,0,0,,YU,0
-2021-04-30,01:48,Friday,DUNDAS STATION,SUDP,0,0,,YU,0
-2021-04-30,02:09,Friday,DON MILLS STATION,TUMVS,0,0,E,SHP,6161
-2021-04-30,05:57,Friday,OSSINGTON STATION,MUTO,3,0,W,BD,5165
-2021-04-30,06:00,Friday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU,0
-2021-04-30,06:01,Friday,SHEPPARD WEST STATION,PUTWZ,10,14,N,YU,5456
-2021-04-30,06:15,Friday,SHEPPARD WEST STATION,PUTWZ,255,259,N,YU,0
-2021-04-30,06:15,Friday,UNION STATION,SUDP,0,0,,YU,0
-2021-04-30,06:17,Friday,KIPLING STATION,PUMEL,0,0,,BD,0
-2021-04-30,06:55,Friday,QUEEN STATION,SUO,14,18,S,YU,5916
-2021-04-30,07:13,Friday,YORK MILLS STATION,MUIS,0,0,,YU,0
-2021-04-30,07:46,Friday,KIPLING STATION,PUSCR,4,8,E,BD,5103
-2021-04-30,09:51,Friday,ST CLAIR WEST STATION,MUPAA,4,8,S,YU,5996
-2021-04-30,10:33,Friday,KEELE STATION,PUSO,0,0,E,BD,5217
-2021-04-30,11:58,Friday,COLLEGE STATION,SUO,0,0,,YU,0
-2021-04-30,12:45,Friday,DUNDAS STATION,SUDP,0,0,N,YU,5786
-2021-04-30,13:02,Friday,ST GEORGE BD STATION,SUO,0,0,E,BD,5355
-2021-04-30,13:06,Friday,ST GEORGE YUS STATION,SUDP,0,0,S,YU,5481
-2021-04-30,13:13,Friday,VICTORIA PARK STATION,PUSTS,0,0,E,BD,5086
-2021-04-30,13:27,Friday,ST GEORGE BD STATION,SUBT,17,21,E,BD,5090
-2021-04-30,13:27,Friday,ST GEORGE YUS STATION,SUBT,17,21,S,YU,5661
-2021-04-30,13:41,Friday,SHERBOURNE STATION,MUIR,5,9,W,BD,5197
-2021-04-30,14:08,Friday,EGLINTON WEST STATION,SUDP,5,9,N,YU,5391
-2021-04-30,14:11,Friday,BATHURST STATION,MUTO,4,8,W,BD,5024
-2021-04-30,14:22,Friday,WILSON STATION,PUMEL,0,0,,YU,0
-2021-04-30,14:39,Friday,WILSON STATION,MUTO,4,8,S,YU,5871
-2021-04-30,14:50,Friday,FINCH STATION,SUDP,0,0,,YU,0
-2021-04-30,14:54,Friday,WARDEN STATION,SUUT,15,19,W,BD,5155
-2021-04-30,15:19,Friday,FINCH STATION,MUIS,0,0,,YU,0
-2021-04-30,15:28,Friday,PAPE STATION,SUDP,0,0,,BD,0
-2021-04-30,15:39,Friday,KENNEDY BD STATION,MUTO,6,10,W,BD,5076
-2021-04-30,16:07,Friday,YORK MILLS STATION,TUSC,0,0,S,YU,5486
-2021-04-30,16:24,Friday,SPADINA BD STATION,MUIRS,0,0,,BD,0
-2021-04-30,16:40,Friday,CHESTER STATION,SUDP,8,12,E,BD,5086
-2021-04-30,16:57,Friday,WELLESLEY STATION,MUI,18,22,S,YU,5761
-2021-04-30,17:04,Friday,ST GEORGE BD STATION,MUIRS,0,0,E,BD,0
-2021-04-30,17:04,Friday,YORK MILLS STATION,TUSC,0,0,N,YU,5996
-2021-04-30,17:16,Friday,MIDLAND STATION,ERCO,35,40,N,SRT,3007
-2021-04-30,18:02,Friday,YORKDALE STATION,MUDD,5,9,S,YU,5431
-2021-04-30,18:03,Friday,OSGOODE STATION,SUUT,12,16,S,YU,5826
-2021-04-30,19:02,Friday,DAVISVILLE STATION,SUDP,0,0,N,YU,6046
-2021-04-30,19:15,Friday,DONLANDS STATION,SUDP,4,8,E,BD,5053
-2021-04-30,19:51,Friday,EGLINTON STATION,MUIR,5,10,N,YU,5481
-2021-04-30,19:52,Friday,HIGH PARK STATION,SUDP,3,7,E,BD,5013
-2021-04-30,20:50,Friday,BLOOR STATION,SUUT,15,22,S,YU,6016
-2021-04-30,22:00,Friday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-05-01,01:07,Saturday,YONGE BD STATION,SUAP,0,0,W,BD,5170
-2021-05-01,01:14,Saturday,BLOOR STATION,SUO,0,0,S,YU,5506
-2021-05-01,06:00,Saturday,SHEPPARD WEST - WILSON,MUO,0,0,,YU,0
-2021-05-01,09:04,Saturday,DON MILLS STATION,MUIR,5,10,W,SHP,5141
-2021-05-01,09:04,Saturday,YONGE BD STATION,SUEAS,13,18,W,BD,5106
-2021-05-01,10:17,Saturday,KENNEDY BD STATION,MUTO,9,15,W,BD,5140
-2021-05-01,11:14,Saturday,KENNEDY BD STATION,MUSAN,3,7,W,BD,5069
-2021-05-01,11:30,Saturday,CHESTER STATION,MUI,23,28,E,BD,5355
-2021-05-01,13:31,Saturday,BAY STATION,MUIS,0,0,E,BD,0
-2021-05-01,14:18,Saturday,SHEPPARD WEST STATION,MUATC,5,10,N,YU,5741
-2021-05-01,17:45,Saturday,ST CLAIR WEST STATION,SUAP,15,20,N,YU,6051
-2021-05-01,17:55,Saturday,SPADINA BD STATION,SUUT,31,35,E,BD,5074
-2021-05-01,17:59,Saturday,ST CLAIR WEST STATION,SUDP,0,0,,YU,0
-2021-05-01,18:37,Saturday,VICTORIA PARK STATION,MUI,6,11,E,BD,5140
-2021-05-01,19:32,Saturday,DUNDAS STATION,MUIRS,0,0,N,YU,5656
-2021-05-01,20:54,Saturday,KIPLING STATION,TUMVS,0,0,W,BD,5059
-2021-05-01,21:04,Saturday,DON MILLS STATION,MUIS,0,0,,SHP,0
-2021-05-01,21:36,Saturday,EGLINTON STATION,MUIS,0,0,,YU,0
-2021-05-01,21:39,Saturday,BATHURST STATION,SUDP,0,0,W,BD,5040
-2021-05-01,22:00,Saturday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-05-01,23:01,Saturday,VICTORIA PARK STATION,MUIRS,0,0,,BD,0
-2021-05-01,23:40,Saturday,LAWRENCE STATION,MUIS,0,0,N,YU,0
-2021-05-01,23:57,Saturday,DON MILLS STATION,TUMVS,0,0,E,SHP,6146
-2021-05-01,23:59,Saturday,EGLINTON STATION,MUSAN,5,10,S,YU,6051
-2021-05-02,00:16,Sunday,ST CLAIR WEST STATION,MUIR,0,0,N,YU,5821
-2021-05-02,00:39,Sunday,EGLINTON STATION,TUMVS,3,8,N,YU,5766
-2021-05-02,01:42,Sunday,WILSON STATION,MUI,0,0,N,YU,5821
-2021-05-02,02:31,Sunday,WELLESLEY STATION,SUUT,0,0,,YU,0
-2021-05-02,07:19,Sunday,FINCH STATION,MUIS,0,0,,36 FINCH WEST,3640
-2021-05-02,08:00,Sunday,YONGE UNIVERSITY SUBWA,MUO,0,0,B,YU,0
-2021-05-02,08:09,Sunday,KIPLING STATION,EUBK,9,13,E,BD,5004
-2021-05-02,08:17,Sunday,WILSON STATION,MUO,0,0,,YU,0
-2021-05-02,08:30,Sunday,WILSON STATION,MUATC,7,12,S,YU,6136
-2021-05-02,09:02,Sunday,DAVISVILLE STATION,MUPLB,17,22,N,YU,5626
-2021-05-02,12:35,Sunday,COXWELL STATION,MUPAA,0,0,W,BD,5178
-2021-05-02,13:23,Sunday,KIPLING STATION,MUIRS,0,0,,BD,0
-2021-05-02,13:50,Sunday,OSSINGTON STATION,MUIS,0,0,,BD,0
-2021-05-02,14:59,Sunday,HIGH PARK STATION,SUDP,4,9,E,BD,5212
-2021-05-02,15:22,Sunday,OSSINGTON STATION,MUPLB,31,35,W,BD,5148
-2021-05-02,16:24,Sunday,WELLESLEY STATION,SUROB,0,0,N,YU,0
-2021-05-02,16:25,Sunday,FINCH STATION,MUIS,0,0,,YU,0
-2021-05-02,16:27,Sunday,BLOOR STATION,SUAP,5,10,N,YU,5756
-2021-05-02,16:41,Sunday,KIPLING STATION,SUAP,0,0,,BD,0
-2021-05-02,18:13,Sunday,KENNEDY BD STATION,SUAP,0,0,,BD,0
-2021-05-02,18:20,Sunday,BLOOR STATION,SUUT,8,12,S,YU,6021
-2021-05-02,18:24,Sunday,FINCH STATION,SUO,0,0,,YU,0
-2021-05-02,18:29,Sunday,GREENWOOD STATION,MUNCA,0,0,,BD,0
-2021-05-02,19:05,Sunday,CASTLE FRANK STATION,EUDO,13,18,E,BD,5193
-2021-05-02,19:23,Sunday,EGLINTON STATION,MUPAA,0,0,S,YU,5821
-2021-05-02,19:37,Sunday,CHRISTIE STATION,MUIS,0,0,W,BD,0
-2021-05-02,19:41,Sunday,DUNDAS STATION,SUUT,6,11,S,YU,5741
-2021-05-02,20:36,Sunday,DUNDAS STATION,SUDP,0,0,N,YU,5561
-2021-05-02,20:50,Sunday,KIPLING STATION,SUDP,4,8,E,BD,5325
-2021-05-02,21:21,Sunday,YORK MILLS STATION,EUOE,0,0,S,YU,6196
-2021-05-02,21:56,Sunday,UNION STATION,SUO,0,0,,YU,0
-2021-05-02,22:00,Sunday,YONGE- UNIVERSITY SUBW,MUO,0,0,,YU/BD,0
-2021-05-02,22:29,Sunday,ST ANDREW STATION,MUSAN,5,10,N,YU,5621
-2021-05-02,23:58,Sunday,FINCH STATION,SUO,5,10,S,YU,5781
-2021-05-03,01:03,Monday,WILSON YARD,MUIE,0,0,,YU,0
-2021-05-03,01:20,Monday,FINCH STATION,TUO,3,10,S,YU,5806
-2021-05-03,02:03,Monday,LESLIE STATION,MUIRS,0,0,,SHP,0
-2021-05-03,02:04,Monday,VICTORIA PARK STATION,SUUT,14,18,E,BD,5201
-2021-05-03,02:08,Monday,WARDEN STATION,TUCC,0,0,W,BD,5089
-2021-05-03,05:48,Monday,MIDLAND STATION,ERCO,25,30,S,SRT,3013
-2021-05-03,06:00,Monday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU,0
-2021-05-03,06:04,Monday,MUSEUM STATION,MUATC,4,8,S,YU,5971
-2021-05-03,06:27,Monday,KEELE STATION,PUTD,4,8,E,BD,5285
-2021-05-03,06:47,Monday,SHEPPARD WEST STATION,MUO,0,0,,YU,0
-2021-05-03,07:00,Monday,CHRISTIE STATION,TUSC,0,0,W,BD,5112
-2021-05-03,07:21,Monday,MCCOWAN STATION,ERME,6,11,N,SRT,3007
-2021-05-03,07:22,Monday,COLLEGE STATION,MUI,10,14,N,YU,6046
-2021-05-03,09:00,Monday,ST GEORGE BD STATION,TUMVS,7,11,E,BD,5123
-2021-05-03,09:02,Monday,ST GEORGE BD STATION,MUPAA,0,0,E,BD,5123
-2021-05-03,09:28,Monday,DOWNSVIEW PARK STATION,SUDP,0,0,,YU,0
-2021-05-03,09:31,Monday,DUPONT STATION,SUDP,3,7,S,YU,5516
-2021-05-03,10:06,Monday,COLLEGE STATION,MUIS,0,0,,YU,0
-2021-05-03,10:37,Monday,DUNDAS STATION,MUPAA,3,8,S,YU,5916
-2021-05-03,12:20,Monday,BROADVIEW STATION,TUS,4,8,E,BD,5044
-2021-05-03,12:27,Monday,YORK MILLS STATION,MUIR,0,0,N,YU,5826
-2021-05-03,12:28,Monday,OSGOODE STATION,SUDP,3,7,N,YU,5426
-2021-05-03,13:21,Monday,WILSON STATION,MUIRS,0,0,,YU,0
-2021-05-03,13:24,Monday,OLD MILL STATION,MUDD,3,7,E,BD,5234
-2021-05-03,13:27,Monday,LAWRENCE STATION,SUDP,0,0,N,YU,5561
-2021-05-03,14:22,Monday,CASTLE FRANK STATION,MUSAN,8,12,E,BD,5174
-2021-05-03,14:42,Monday,EGLINTON WEST STATION,MUIRS,0,0,,YU,0
-2021-05-03,15:08,Monday,KENNEDY BD STATION,MUSAN,4,8,,BD,5174
-2021-05-03,15:10,Monday,GREENWOOD STATION,SUO,0,0,E,BD,5258
-2021-05-03,15:18,Monday,KENNEDY BD STATION,MUPAA,0,0,E,BD,5024
-2021-05-03,16:14,Monday,ST CLAIR WEST STATION,MUNCA,0,0,,YU,0
-2021-05-03,16:44,Monday,DUFFERIN STATION,SUO,0,0,E,BD,5201
-2021-05-03,17:13,Monday,YORK MILLS STATION,TUSC,0,0,N,YU,5546
-2021-05-03,17:22,Monday,BLOOR STATION,MUSAN,7,11,S,YU,5976
-2021-05-03,17:43,Monday,FINCH STATION,TUNIP,5,10,S,YU,5476
-2021-05-03,17:44,Monday,BATHURST STATION,SUAP,0,0,,BD,0
-2021-05-03,18:00,Monday,SPADINA BD STATION,MUIS,0,0,,BD,0
-2021-05-03,18:20,Monday,WARDEN STATION,MUIS,0,0,E,BD,0
-2021-05-03,18:45,Monday,COXWELL STATION,TUO,3,7,E,BD,5174
-2021-05-03,19:15,Monday,YONGE BD STATION,SUO,0,0,W,BD,5046
-2021-05-03,19:16,Monday,BLOOR STATION,SUO,0,0,S,YU,6111
-2021-05-03,19:28,Monday,LAWRENCE STATION,EUBK,11,15,N,YU,5476
-2021-05-03,19:41,Monday,LAWRENCE STATION,TUSC,0,0,S,YU,5471
-2021-05-03,20:41,Monday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-05-03,20:45,Monday,WILSON STATION,MUI,5,10,S,YU,5541
-2021-05-03,20:52,Monday,WILSON STATION,MUIS,0,0,,YU,0
-2021-05-03,21:42,Monday,ST GEORGE BD STATION,SUUT,12,19,E,BD,5258
-2021-05-03,21:47,Monday,FINCH STATION,MUIS,0,0,,YU,0
-2021-05-03,22:00,Monday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-05-03,22:29,Monday,DAVISVILLE STATION,MUIS,0,0,,YU,0
-2021-05-03,23:44,Monday,CHRISTIE STATION,TUSC,0,0,W,BD,5076
-2021-05-04,00:32,Tuesday,DONLANDS STATION,MUIS,0,0,,BD,0
-2021-05-04,01:39,Tuesday,DUFFERIN STATION,EUCD,0,0,W,BD,5033
-2021-05-04,03:37,Tuesday,WILSON YARD,MUIE,0,0,,YU,0
-2021-05-04,05:50,Tuesday,FINCH STATION,EUSC,0,0,S,YU,5496
-2021-05-04,06:00,Tuesday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU,0
-2021-05-04,06:02,Tuesday,EGLINTON STATION,EUSC,0,0,S,YU,5496
-2021-05-04,06:07,Tuesday,LESLIE STATION,TUSC,0,0,W,SHP,6166
-2021-05-04,06:20,Tuesday,LAWRENCE STATION,EUVA,4,8,N,YU,5841
-2021-05-04,06:44,Tuesday,PAPE STATION,MUDD,4,8,W,BD,5146
-2021-05-04,07:11,Tuesday,GREENWOOD STATION,EUBO,3,7,E,BD,5220
-2021-05-04,09:54,Tuesday,KENNEDY BD STATION,SUDP,4,8,E,BD,5201
-2021-05-04,10:17,Tuesday,GLENCAIRN STATION,MUI,17,21,N,YU,5816
-2021-05-04,10:51,Tuesday,EGLINTON STATION,SUDP,0,0,N,YU,5806
-2021-05-04,10:58,Tuesday,EGLINTON STATION,MUIRS,0,0,,YU,0
-2021-05-04,11:31,Tuesday,DUNDAS STATION,MUIRS,0,0,S,YU,0
-2021-05-04,11:50,Tuesday,DAVISVILLE STATION,SUDP,4,8,S,YU,5486
-2021-05-04,12:03,Tuesday,RUNNYMEDE STATION,MUPAA,0,0,E,BD,5291
-2021-05-04,12:47,Tuesday,KENNEDY BD STATION,MUIE,0,0,E,BD,5142
-2021-05-04,13:25,Tuesday,KEELE STATION,MUSC,0,0,W,BD,5260
-2021-05-04,14:10,Tuesday,ST PATRICK STATION,SUAP,0,0,N,YU,5541
-2021-05-04,14:30,Tuesday,QUEEN'S PARK STATION,MUI,14,18,N,YU,6006
-2021-05-04,14:42,Tuesday,YONGE BD STATION,MUNCA,0,0,,BD,0
-2021-05-04,15:20,Tuesday,KIPLING STATION,MUTO,4,8,W,BD,5094
-2021-05-04,15:21,Tuesday,BLOOR STATION,MUSAN,4,8,N,YU,6081
-2021-05-04,15:56,Tuesday,ROYAL YORK STATION,SUAP,182,186,E,BD,5270
-2021-05-04,16:06,Tuesday,COXWELL STATION,SUUT,7,11,W,BD,5280
-2021-05-04,16:18,Tuesday,WELLESLEY STATION,MUIRS,0,0,N,YU,0
-2021-05-04,16:26,Tuesday,WELLESLEY STATION,SUDP,3,7,N,YU,5771
-2021-05-04,16:47,Tuesday,KENNEDY BD STATION,TUMVS,0,0,E,BD,5303
-2021-05-04,17:47,Tuesday,DONLANDS STATION,PUMST,0,0,,BD,0
-2021-05-04,17:59,Tuesday,ISLINGTON STATION,SUAP,0,0,,BD,0
-2021-05-04,18:36,Tuesday,EGLINTON WEST STATION,MUO,5,10,S,YU,5786
-2021-05-04,18:46,Tuesday,COLLEGE STATION,SUDP,0,0,N,YU,5806
-2021-05-04,19:01,Tuesday,ROYAL YORK STATION,SUAP,0,0,E,BD,5069
-2021-05-04,19:49,Tuesday,LANSDOWNE STATION,SUUT,0,0,E,BD,0
-2021-05-04,20:20,Tuesday,LAWRENCE STATION,SUPOL,0,0,S,YU,5826
-2021-05-04,20:57,Tuesday,PAPE STATION,SUDP,0,0,E,BD,5081
-2021-05-04,21:15,Tuesday,YONGE BD STATION,EUDO,4,9,E,BD,5086
-2021-05-04,21:33,Tuesday,ROSEDALE STATION,TUO,13,20,N,YU,5546
-2021-05-04,21:40,Tuesday,DUNDAS STATION,MUNCA,0,0,,YU,0
-2021-05-04,21:48,Tuesday,WARDEN STATION,SUUT,6,13,W,BD,5033
-2021-05-04,22:00,Tuesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-05-04,22:53,Tuesday,EGLINTON STATION,SUUT,11,18,N,YU,5806
-2021-05-05,06:00,Wednesday,YONGE UNIVERSTIY SUBWA,MUO,0,0,,YU,0
-2021-05-05,06:06,Wednesday,EGLINTON STATION,MUO,3,6,N,YU,5421
-2021-05-05,06:28,Wednesday,KIPLING STATION,TUSC,0,0,W,BD,5178
-2021-05-05,06:57,Wednesday,ISLINGTON STATION,TUMVS,0,0,E,BD,5291
-2021-05-05,07:11,Wednesday,BLOOR STATION,SUO,0,0,,YU,0
-2021-05-05,08:50,Wednesday,WARDEN STATION,TUS,4,8,E,BD,5276
-2021-05-05,09:02,Wednesday,WILSON STATION,MUTO,5,9,S,YU,5531
-2021-05-05,09:30,Wednesday,WILSON STATION,PUTWZ,0,0,N,YU,5421
-2021-05-05,10:39,Wednesday,GREENWOOD STATION,TUS,4,8,E,BD,5276
-2021-05-05,11:31,Wednesday,YONGE BD STATION,SUUT,10,14,W,BD,5084
-2021-05-05,12:35,Wednesday,WELLESLEY STATION,MUIS,0,0,,YU,0
-2021-05-05,13:04,Wednesday,KENNEDY BD STATION,MUI,4,8,W,BD,5291
-2021-05-05,13:32,Wednesday,WELLESLEY STATION,MUIS,0,0,N,YU,5486
-2021-05-05,14:03,Wednesday,LAWRENCE STATION,MUSC,0,0,N,YU,5606
-2021-05-05,14:46,Wednesday,ST GEORGE BD STATION,MUIS,0,0,E,BD,0
-2021-05-05,15:32,Wednesday,DAVISVILLE STATION,SUDP,0,0,S,YU,0
-2021-05-05,15:42,Wednesday,COLLEGE STATION,SUDP,0,0,,YU,0
-2021-05-05,16:16,Wednesday,BLOOR STATION,SUAP,5,9,N,YU,5806
-2021-05-05,17:21,Wednesday,BATHURST STATION,MUNCA,0,0,,BD,0
-2021-05-05,17:37,Wednesday,COLLEGE STATION,MUIS,0,0,N,YU,0
-2021-05-05,18:20,Wednesday,COLLEGE STATION,MUNCA,0,0,,YU,0
-2021-05-05,19:22,Wednesday,WARDEN STATION,MUIRS,0,0,,BD,0
-2021-05-05,21:09,Wednesday,WILSON STATION,TUSUP,4,11,S,YU,6081
-2021-05-05,21:14,Wednesday,YONGE BD STATION,SUDP,0,0,E,BD,5069
-2021-05-05,21:15,Wednesday,BLOOR STATION,SUDP,0,0,S,YU,5801
-2021-05-05,22:00,Wednesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-05-05,22:15,Wednesday,ST ANDREW STATION,SUDP,10,17,S,YU,6061
-2021-05-05,22:37,Wednesday,ST GEORGE BD STATION,SUDP,0,0,E,BD,5371
-2021-05-05,22:41,Wednesday,DUNDAS WEST STATION,MUIS,0,0,,BD,0
-2021-05-05,23:39,Wednesday,EGLINTON STATION,MUPAA,0,0,S,YU,6021
-2021-05-06,01:51,Thursday,KENNEDY BD STATION,MUIS,0,0,,BD,5310
-2021-05-06,02:26,Thursday,KIPLING STATION,SUDP,0,0,,BD,0
-2021-05-06,02:35,Thursday,KENNEDY BD STATION,MUIRS,0,0,,BD,0
-2021-05-06,05:09,Thursday,FINCH STATION,TUMVS,0,0,N,YU,5481
-2021-05-06,05:42,Thursday,DON MILLS STATION,MUO,5,10,W,SHP,6141
-2021-05-06,05:46,Thursday,COXWELL STATION,MUIS,0,0,,BD,0
-2021-05-06,06:00,Thursday,UNION STATION,SUUT,6,0,N,YU,5516
-2021-05-06,06:00,Thursday,YONGE-UNIVERSITY SPADI,MUO,0,0,,YU,0
-2021-05-06,06:27,Thursday,LANSDOWNE STATION,SUDP,3,8,E,BD,5157
-2021-05-06,06:43,Thursday,KIPLING STATION,MUIRS,0,0,,BD,0
-2021-05-06,07:12,Thursday,GREENWOOD STATION,TUCC,3,7,E,BD,5212
-2021-05-06,07:16,Thursday,LANSDOWNE STATION,SUDP,0,0,W,BD,5146
-2021-05-06,07:58,Thursday,UNION STATION,SUUT,11,15,N,YU,5616
-2021-05-06,08:01,Thursday,KEELE STATION,TUS,4,8,E,BD,5165
-2021-05-06,08:59,Thursday,KENNEDY BD STATION,MUO,3,7,W,BD,5119
-2021-05-06,09:09,Thursday,VICTORIA PARK STATION,TUS,3,7,E,BD,5341
-2021-05-06,10:01,Thursday,LAWRENCE WEST STATION,MUIS,0,0,,YU,0
-2021-05-06,10:03,Thursday,KIPLING STATION,SUDP,7,11,E,BD,5212
-2021-05-06,10:36,Thursday,SHEPPARD WEST STATION,MUIS,0,0,,YU,0
-2021-05-06,11:22,Thursday,CASTLE FRANK STATION,SUDP,13,17,E,BD,5024
-2021-05-06,11:29,Thursday,OLD MILL STATION,TUO,5,9,E,BD,5228
-2021-05-06,11:37,Thursday,COXWELL STATION,MUI,21,25,E,BD,5341
-2021-05-06,11:38,Thursday,BROADVIEW STATION,MUSAN,4,8,E,BD,5024
-2021-05-06,11:54,Thursday,ST GEORGE BD STATION,TUKEY,9,13,W,BD,5323
-2021-05-06,12:03,Thursday,VICTORIA PARK STATION,SUO,0,0,W,BD,5108
-2021-05-06,12:07,Thursday,WILSON STATION,MUSAN,4,8,S,YU,5786
-2021-05-06,12:46,Thursday,WARDEN STATION,MUIS,0,0,,BD,0
-2021-05-06,13:39,Thursday,QUEEN'S PARK STATION,MUIS,0,0,,YU,0
-2021-05-06,14:42,Thursday,EGLINTON WEST STATION,MUIS,0,0,,YU,0
-2021-05-06,15:47,Thursday,MAIN STREET STATION,EUSC,0,0,W,BD,5291
-2021-05-06,16:37,Thursday,FINCH STATION,SUDP,0,0,,YU,0
-2021-05-06,16:40,Thursday,BROADVIEW STATION,MUIRS,0,0,,BD,0
-2021-05-06,18:47,Thursday,KEELE STATION,MUSC,0,0,W,BD,5140
-2021-05-06,19:01,Thursday,OLD MILL STATION,TUOS,0,0,E,BD,5104
-2021-05-06,19:12,Thursday,LANSDOWNE STATION,TUOS,4,8,E,BD,5104
-2021-05-06,19:36,Thursday,QUEEN STATION,MUPAA,0,0,N,YU,5516
-2021-05-06,21:02,Thursday,COLLEGE STATION,SUDP,0,0,S,YU,5711
-2021-05-06,22:00,Thursday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-05-06,22:24,Thursday,BLOOR STATION,MUPAA,3,10,N,YU,6136
-2021-05-06,23:16,Thursday,COLLEGE STATION,MUIRS,0,0,,YU,0
-2021-05-06,23:43,Thursday,OSGOODE STATION,EUDO,7,14,S,YU,5501
-2021-05-07,00:58,Friday,CHRISTIE STATION,PUMEL,0,0,,BD,0
-2021-05-07,02:09,Friday,KIPLING STATION,MUIS,0,0,,BD,5181
-2021-05-07,04:33,Friday,COLLEGE STATION,TUCC,0,0,S,YU,0
-2021-05-07,07:49,Friday,KENNEDY BD STATION,SUDP,0,0,,BD,0
-2021-05-07,08:15,Friday,KIPLING STATION,MUIRS,0,0,,BD,0
-2021-05-07,08:36,Friday,VAUGHAN MC STATION,TUO,3,6,S,YU,5886
-2021-05-07,09:01,Friday,LESLIE STATION,MUIR,16,21,E,SHP,6161
-2021-05-07,09:29,Friday,MAIN STREET STATION,PUMEL,0,0,,BD,0
-2021-05-07,10:32,Friday,SUMMERHILL STATION,SUAP,4,7,S,YU,5816
-2021-05-07,10:47,Friday,DAVISVILLE STATION,MUPAA,0,0,S,YU,5961
-2021-05-07,10:47,Friday,SHEPPARD WEST STATION,EUDO,0,0,S,YU,5696
-2021-05-07,11:28,Friday,WILSON TO SHEPPARD WES,MUATC,5,8,N,YU,5816
-2021-05-07,12:06,Friday,DOWNSVIEW PARK STATION,MUSAN,3,6,S,YU,5766
-2021-05-07,14:57,Friday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,5666
-2021-05-07,15:35,Friday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,5656
-2021-05-07,18:37,Friday,RUNNYMEDE STATION,MUIS,0,0,W,BD,0
-2021-05-07,19:17,Friday,DUPONT STATION,MUSAN,5,10,N,YU,5456
-2021-05-07,19:49,Friday,SHEPPARD-YONGE STATION,TUMVS,0,0,W,SHP,6141
-2021-05-07,20:01,Friday,COLLEGE STATION,SUUT,0,0,N,YU,5881
-2021-05-07,20:24,Friday,LESLIE STATION,SUAP,0,0,W,SHP,0
-2021-05-07,20:33,Friday,HIGH PARK STATION,PUMEL,0,0,,BD,0
-2021-05-07,20:46,Friday,KENNEDY BD STATION,TUMVS,14,21,W,BD,5015
-2021-05-07,20:53,Friday,CHRISTIE STATION,SUAP,3,10,W,BD,5285
-2021-05-07,20:59,Friday,CHRISTIE STATION,SUAP,0,0,,BD,0
-2021-05-07,21:52,Friday,GREENWOOD PORTAL,EUOE,0,0,,BD,5121
-2021-05-07,22:00,Friday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-05-08,00:03,Saturday,DAVISVILLE STATION,MUSAN,4,9,S,YU,5976
-2021-05-08,00:22,Saturday,YORK MILLS STATION,SUAP,0,0,N,YU,5856
-2021-05-08,00:22,Saturday,YORK MILLS STATION,MUSAN,5,10,N,YU,5451
-2021-05-08,00:35,Saturday,BAYVIEW STATION,PUOPO,4,9,W,SHP,6186
-2021-05-08,02:33,Saturday,FINCH STATION,MUIS,0,0,,YU,0
-2021-05-08,05:33,Saturday,SPADINA BD STATION,MUIRS,0,0,,BD,0
-2021-05-08,05:51,Saturday,UNION STATION,MUIRS,0,0,,YU,0
-2021-05-08,06:00,Saturday,YONGE- UNIVERSITY SUBW,MUO,0,0,,YU,0
-2021-05-08,06:26,Saturday,SHEPPARD STATION,EUSC,0,0,S,YU,5851
-2021-05-08,06:27,Saturday,WILSON STATION,MUO,5,10,S,YU,5646
-2021-05-08,06:55,Saturday,PAPE STATION,SUDP,0,0,,BD,0
-2021-05-08,06:56,Saturday,YONGE AND SHEPPARD,SUAE,0,0,S,YU,0
-2021-05-08,07:47,Saturday,WARDEN STATION,EUDO,0,0,E,BD,5329
-2021-05-08,08:26,Saturday,DON MILLS STATION,SUDP,7,12,W,SHP,6186
-2021-05-08,08:29,Saturday,UNION STATION,MUIRS,0,0,,YU,0
-2021-05-08,08:57,Saturday,BLOOR STATION,SUDP,3,8,S,YU,5741
-2021-05-08,09:05,Saturday,OSSINGTON STATION,EUCD,9,14,E,BD,5329
-2021-05-08,09:17,Saturday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU,0
-2021-05-08,09:29,Saturday,KING STATION,SUAP,0,0,S,YU,6106
-2021-05-08,09:33,Saturday,QUEEN STATION,SUROB,0,0,N,YU,0
-2021-05-08,12:11,Saturday,QUEEN'S PARK STATION,MUPAA,0,0,S,YU,5876
-2021-05-08,12:40,Saturday,NORTH YORK CTR STATION,MUPAA,0,0,N,YU,5861
-2021-05-08,13:31,Saturday,DUNDAS STATION,MUIS,0,0,S,YU,0
-2021-05-08,14:30,Saturday,VAUGHAN MC STATION,TUNIP,5,10,S,YU,6121
-2021-05-08,15:51,Saturday,WILSON STATION,PUMEL,0,0,,YU,0
-2021-05-08,16:45,Saturday,KIPLING STATION,EUSC,3,7,E,BD,5333
-2021-05-08,19:47,Saturday,YONGE BD STATION,SUDP,0,0,E,BD,5250
-2021-05-08,19:54,Saturday,VAUGHAN MC STATION,MUIR,3,8,S,YU,5743
-2021-05-08,20:23,Saturday,YORK MILLS STATION,EUSC,0,0,S,YU,6001
-2021-05-08,20:35,Saturday,CASTLE FRANK STATION,SUDP,8,13,W,BD,5290
-2021-05-08,22:00,Saturday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-05-08,23:43,Saturday,ST CLAIR WEST STATION,SUAP,4,9,S,YU,5971
-2021-05-08,23:47,Saturday,DAVISVILLE STATION,SUDP,5,10,S,YU,6126
-2021-05-08,23:52,Saturday,DAVISVILLE STATION,MUO,4,9,N,YU,5676
-2021-05-09,00:00,Sunday,SHEPPARD WEST STATION,MUSAN,7,14,N,YU,6086
-2021-05-09,00:00,Sunday,VAUGHAN MC STATION,TUO,6,13,S,YU,5661
-2021-05-09,00:30,Sunday,NORTH YORK CTR STATION,TUSC,0,0,S,YU,5851
-2021-05-09,01:21,Sunday,VAUGHAN MC STATION,SUDP,0,0,S,YU,5431
-2021-05-09,02:23,Sunday,KENNEDY BD STATION,SUUT,0,0,,BD,0
-2021-05-09,07:27,Sunday,CASTLE FRANK STATION,MUNCA,0,0,,BD,0
-2021-05-09,07:54,Sunday,FINCH STATION,TUNIP,6,0,S,YU,5621
-2021-05-09,08:00,Sunday,BLOOR DANFORTH LINE ,MUO,0,0,,BD,0
-2021-05-09,08:00,Sunday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU,0
-2021-05-09,08:11,Sunday,ST GEORGE BD STATION,MUCL,6,0,W,BD,5245
-2021-05-09,08:15,Sunday,YORK UNIVERSITY STATIO,EUDO,3,8,S,YU,5696
-2021-05-09,08:51,Sunday,ROSEDALE STATION,MUATC,5,11,S,YU,5886
-2021-05-09,10:34,Sunday,WOODBINE STATION,EUSC,0,0,W,BD,5245
-2021-05-09,11:00,Sunday,OSSINGTON STATION,MUIS,0,0,,BD,0
-2021-05-09,11:44,Sunday,ST CLAIR STATION,PUMEL,0,0,,YU,0
-2021-05-09,12:21,Sunday,WOODBINE STATION,EUSC,0,0,W,BD,5245
-2021-05-09,12:45,Sunday,COLLEGE STATION,MUIRS,0,0,,YU,0
-2021-05-09,14:54,Sunday,KEELE STATION,MUSC,0,0,W,BD,5177
-2021-05-09,15:27,Sunday,ISLINGTON STATION,TUSC,0,0,W,BD,5026
-2021-05-09,15:37,Sunday,CHRISTIE STATION,MUNCA,0,0,,BD,0
-2021-05-09,17:29,Sunday,CHESTER STATION,MUIR,11,16,E,BD,5298
-2021-05-09,18:34,Sunday,LANSDOWNE STATION,MUIRS,0,0,,BD,0
-2021-05-09,18:40,Sunday,YONGE BD STATION,SUDP,0,0,E,BD,5285
-2021-05-09,19:47,Sunday,ST ANDREW STATION,SUUT,13,20,N,YU,5816
-2021-05-09,19:51,Sunday,CHESTER STATION,MUIS,0,0,,BD,0
-2021-05-09,21:36,Sunday,OLD MILL STATION,MUDD,3,7,E,BD,5285
-2021-05-09,21:42,Sunday,KEELE STATION,SUDP,9,13,W,BD,5245
-2021-05-09,22:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-05-09,22:04,Sunday,DUNDAS WEST STATION,MUIS,0,0,,BD,0
-2021-05-09,22:24,Sunday,KENNEDY BD STATION,MUD,4,8,W,BD,5212
-2021-05-09,23:04,Sunday,SUMMERHILL STATION,SUDP,12,19,N,YU,5881
-2021-05-09,23:31,Sunday,ISLINGTON STATION,PUMST,0,0,,BD,0
-2021-05-09,23:55,Sunday,KENNEDY BD STATION,MUSAN,3,7,W,BD,5114
-2021-05-10,05:40,Monday,YORK MILLS STATION,TUNIP,5,0,N,YU,5886
-2021-05-10,05:55,Monday,MUSEUM STATION,MUNCA,0,0,,YU,0
-2021-05-10,06:00,Monday,TORONTO TRANSIT COMMIS,MUO,0,0,,YU,0
-2021-05-10,06:00,Monday,TORONTO TRANSIT COMMIS,MUO,0,0,,SHP,0
-2021-05-10,06:00,Monday,TORONTO TRANSIT COMMIS,MRO,0,0,,SRT,0
-2021-05-10,06:33,Monday,ROSEDALE STATION,MUATC,5,8,S,YU,5876
-2021-05-10,06:38,Monday,BLOOR STATION,MUATC,3,6,S,YU,5876
-2021-05-10,07:01,Monday,PAPE STATION,MUNCA,0,0,,BD,0
-2021-05-10,08:00,Monday,YONGE BD STATION,SUUT,5,9,W,BD,5073
-2021-05-10,08:15,Monday,KIPLING STATION,SUDP,0,0,,BD,0
-2021-05-10,09:07,Monday,DUNDAS STATION,MUPAA,3,6,S,YU,5741
-2021-05-10,09:27,Monday,VICTORIA PARK STATION,MUPAA,4,8,E,BD,5198
-2021-05-10,09:34,Monday,SPADINA YUS STATION,SUDP,5,8,S,YU,5536
-2021-05-10,09:48,Monday,QUEEN'S PARK STATION,SUO,9,12,S,YU,6131
-2021-05-10,10:31,Monday,KIPLING STATION,SUDP,0,0,,BD,0
-2021-05-10,10:40,Monday,DAVISVILLE YARD,SUEAS,0,0,,YU,0
-2021-05-10,10:41,Monday,SHEPPARD-YONGE STATION,TUMVS,0,0,W,SHP,6151
-2021-05-10,10:56,Monday,MAIN STREET STATION,MUNCA,0,0,,BD,0
-2021-05-10,12:10,Monday,LAWRENCE STATION,MUIRS,4,7,N,YU,5791
-2021-05-10,12:25,Monday,FINCH STATION,TUO,4,7,N,YU,5791
-2021-05-10,13:04,Monday,TORONTO TRANSIT COMMIS,MRO,0,0,,SRT,0
-2021-05-10,13:26,Monday,KENNEDY BD STATION,SUDP,4,8,W,BD,5304
-2021-05-10,13:49,Monday,BAYVIEW STATION,TUOS,7,12,E,SHP,6166
-2021-05-10,14:05,Monday,GLENCAIRN STATION,MUIR,3,6,N,YU,6096
-2021-05-10,15:00,Monday,LAWRENCE EAST STATION,ERDO,3,8,N,SRT,3011
-2021-05-10,15:06,Monday,ST GEORGE BD STATION,MUPAA,0,0,E,BD,5154
-2021-05-10,15:22,Monday,WOODBINE STATION,SUDP,14,18,W,BD,5147
-2021-05-10,15:41,Monday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-05-10,16:41,Monday,KIPLING STATION,MUTO,3,7,E,BD,5154
-2021-05-10,16:44,Monday,BROADVIEW STATION,SUDP,0,0,E,BD,5322
-2021-05-10,17:16,Monday,KEELE STATION,MUSC,0,0,W,BD,5305
-2021-05-10,18:03,Monday,CASTLE FRANK STATION,SUO,7,11,W,BD,5274
-2021-05-10,18:17,Monday,ROSEDALE STATION,MUATC,3,8,N,YU,5686
-2021-05-10,18:28,Monday,SHEPPARD WEST STATION,PUTDN,10,15,N,YU,6101
-2021-05-10,19:08,Monday,PAPE STATION,SUO,0,0,W,BD,5026
-2021-05-10,19:33,Monday,ST CLAIR WEST STATION,MUIS,19,25,S,YU,5676
-2021-05-10,21:54,Monday,YONGE BD STATION,SUDP,0,0,W,BD,5054
-2021-05-10,22:00,Monday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-05-10,23:00,Monday,FINCH WEST STATION,MUO,0,0,,YU,0
-2021-05-10,23:10,Monday,EGLINTON WEST STATION,SUDP,0,0,N,YU,5566
-2021-05-10,23:52,Monday,SUMMERHILL STATION,SUDP,0,0,N,YU,5441
-2021-05-10,23:56,Monday,KIPLING STATION,TUO,7,14,E,BD,5054
-2021-05-11,05:36,Tuesday,PIONEER VILLAGE STATIO,SUDP,0,0,,YU,0
-2021-05-11,05:38,Tuesday,EGLINTON STATION,MUTO,4,0,N,YU,5576
-2021-05-11,05:48,Tuesday,EGLINTON STATION,EUSC,4,8,N,YU,6111
-2021-05-11,05:54,Tuesday,MAIN STREET STATION,SUDP,0,0,W,BD,0
-2021-05-11,06:00,Tuesday,TORONTO TRANSIT COMMIS,MUO,0,0,,YU,0
-2021-05-11,06:00,Tuesday,TORONTO TRANSIT COMMIS,MUO,0,0,,SHP,0
-2021-05-11,06:00,Tuesday,TORONTO TRANSIT COMMIS,MRO,0,0,,SRT,0
-2021-05-11,06:05,Tuesday,SHEPPARD WEST STATION,EUOE,3,6,N,YU,5801
-2021-05-11,06:41,Tuesday,ST CLAIR STATION,SUO,0,0,N,YU,5666
-2021-05-11,07:43,Tuesday,VAUGHAN MC STATION,MUTO,3,6,S,YU,5871
-2021-05-11,08:09,Tuesday,DUNDAS WEST STATION,MUIS,0,0,,BD,0
-2021-05-11,08:11,Tuesday,BLOOR STATION,SUAP,5,8,N,YU,5571
-2021-05-11,08:32,Tuesday,CHESTER STATION,SUDP,3,7,W,BD,5182
-2021-05-11,09:09,Tuesday,BLOOR STATION,SUAP,0,0,S,YU,5456
-2021-05-11,09:32,Tuesday,OLD MILL STATION,MUPAA,3,7,E,BD,5060
-2021-05-11,09:34,Tuesday,EGLINTON STATION,SUAE,0,0,,YU,0
-2021-05-11,10:20,Tuesday,DUPONT STATION,TUO,3,6,S,YU,5751
-2021-05-11,11:32,Tuesday,UNION STATION,MUDD,3,6,N,YU,5566
-2021-05-11,12:43,Tuesday,KEELE STATION,TUOS,0,0,W,BD,5262
-2021-05-11,13:35,Tuesday,MCCOWAN STATION,MRO,7,14,S,SRT,3015
-2021-05-11,13:57,Tuesday,BATHURST STATION,SUDP,0,0,,BD,0
-2021-05-11,14:23,Tuesday,OLD MILL STATION,MUIS,0,0,E,BD,0
-2021-05-11,15:08,Tuesday,DAVISVILLE STATION,PUMEL,0,0,,YU,0
-2021-05-11,15:30,Tuesday,CASTLE FRANK STATION,SUDP,3,7,E,BD,5040
-2021-05-11,16:39,Tuesday,UNION STATION,PUMST,0,0,,YU,0
-2021-05-11,16:41,Tuesday,KEELE STATION,MUSC,0,0,W,BD,5086
-2021-05-11,17:22,Tuesday,BLOOR STATION,MUIS,0,0,S,YU,0
-2021-05-11,18:00,Tuesday,ST GEORGE BD STATION,SUDP,4,8,W,BD,5161
-2021-05-11,18:05,Tuesday,ST CLAIR WEST STATION,EUDO,15,18,S,YU,5751
-2021-05-11,18:21,Tuesday,BAY STATION,MUIS,0,0,E,BD,5310
-2021-05-11,20:46,Tuesday,BATHURST STATION,MUIR,9,16,W,BD,5204
-2021-05-11,20:46,Tuesday,SCARBOROUGH CTR STATIO,MRO,7,14,N,SRT,3011
-2021-05-11,21:59,Tuesday,ST GEORGE YUS STATION,MUIS,0,0,,YU,0
-2021-05-11,22:00,Tuesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-05-11,22:05,Tuesday,COXWELL STATION,SUDP,6,13,E,BD,5290
-2021-05-11,23:20,Tuesday,EGLINTON STATION,MUPAA,0,0,N,YU,5951
-2021-05-11,23:26,Tuesday,KIPLING STATION,SUDP,7,14,W,BD,5274
-2021-05-11,23:37,Tuesday,DAVISVILLE YARD,MUO,0,0,,YU,0
-2021-05-11,23:55,Tuesday,DUNDAS STATION,SUAE,0,0,N,YU,0
-2021-05-12,00:17,Wednesday,ROSEDALE STATION,MUATC,5,12,S,YU,5656
-2021-05-12,00:41,Wednesday,BAYVIEW STATION,EUSC,0,0,E,SHP,6176
-2021-05-12,02:39,Wednesday,FINCH STATION,MUIS,0,0,,YU,0
-2021-05-12,07:53,Wednesday,KIPLING STATION,MUSC,4,8,E,BD,5332
-2021-05-12,07:59,Wednesday,VAUGHAN MC STATION,MUATC,9,12,N,YU,5711
-2021-05-12,08:00,Wednesday,ROSEDALE STATION,MUSC,0,0,N,YU,5626
-2021-05-12,08:16,Wednesday,BROADVIEW STATION,SUDP,3,7,W,BD,5114
-2021-05-12,09:44,Wednesday,BROADVIEW STATION,SUO,8,12,E,BD,5328
-2021-05-12,10:35,Wednesday,COXWELL STATION,SUAE,12,16,W,BD,5182
-2021-05-12,10:38,Wednesday,YORK MILLS STATION,TUMVS,0,0,N,YU,5641
-2021-05-12,10:39,Wednesday,OSSINGTON STATION,PUMEL,0,0,,BD,0
-2021-05-12,12:03,Wednesday,ROSEDALE STATION,MUATC,3,6,N,YU,5571
-2021-05-12,12:46,Wednesday,SHEPPARD-YONGE STATION,SUDP,5,10,E,SHP,6156
-2021-05-12,13:02,Wednesday,CHESTER STATION,SUDP,4,8,W,BD,5359
-2021-05-12,14:44,Wednesday,ROSEDALE STATION,MUSC,0,0,N,YU,5571
-2021-05-12,18:50,Wednesday,SHERBOURNE STATION,MUIS,0,0,,BD,0
-2021-05-12,20:03,Wednesday,KIPLING STATION,SUDP,14,21,W,BD,5337
-2021-05-12,21:21,Wednesday,YONGE BD STATION,MUI,0,0,E,BD,5076
-2021-05-12,22:00,Wednesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-05-12,22:01,Wednesday,ST CLAIR WEST STATION,MUI,24,31,S,YU,5586
-2021-05-12,22:29,Wednesday,BAYVIEW STATION,EUSC,0,0,W,SHP,6176
-2021-05-12,22:45,Wednesday,KENNEDY BD STATION,MUI,7,14,W,BD,5287
-2021-05-12,22:52,Wednesday,WOODBINE STATION,MUIS,0,0,,BD,0
-2021-05-12,23:00,Wednesday,YONGE UNVERSITY SUBWAY,MUO,0,0,,YU,0
-2021-05-12,23:08,Wednesday,KENNEDY BD STATION,SUO,0,0,,BD,0
-2021-05-12,23:36,Wednesday,LAWRENCE STATION,SUDP,8,15,N,YU,5971
-2021-05-13,00:55,Thursday,KIPLING STATION,EUDO,7,14,E,BD,5203
-2021-05-13,01:08,Thursday,COXWELL STATION,MUIS,0,0,E,BD,0
-2021-05-13,01:21,Thursday,EGLINTON STATION,TUCC,0,0,N,YU,0
-2021-05-13,01:29,Thursday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-05-13,01:41,Thursday,ROSEDALE STATION,MUIS,0,0,,YU,0
-2021-05-13,05:48,Thursday,DON MILLS STATION,MUIS,0,0,,SHP,0
-2021-05-13,05:51,Thursday,SHERBOURNE STATION,TUSC,0,0,W,BD,5140
-2021-05-13,07:34,Thursday,WILSON STATION,TUSUP,3,6,S,YU,5946
-2021-05-13,07:38,Thursday,LAWRENCE STATION,MUIS,0,0,S,YU,0
-2021-05-13,08:15,Thursday,BLOOR STATION,MUSC,0,0,N,YU,5771
-2021-05-13,08:23,Thursday,SHEPPARD WEST STATION,MUPR1,191,194,N,YU,5566
-2021-05-13,09:07,Thursday,KENNEDY BD STATION,MUI,0,0,W,BD,5160
-2021-05-13,09:55,Thursday,ST GEORGE YUS STATION,MUNCA,0,0,,YU,0
-2021-05-13,09:59,Thursday,DUNDAS STATION,MUIS,0,0,S,YU,0
-2021-05-13,10:17,Thursday,DUNDAS WEST STATION,TUS,3,7,W,BD,5299
-2021-05-13,10:56,Thursday,HIGH PARK STATION,TUS,3,7,E,BD,5201
-2021-05-13,10:59,Thursday,QUEEN STATION,SUO,14,0,S,YU,5491
-2021-05-13,11:35,Thursday,LAWRENCE WEST STATION,MUPAA,0,0,S,YU,5586
-2021-05-13,11:56,Thursday,FINCH STATION,TUMVS,0,0,N,YU,5661
-2021-05-13,12:25,Thursday,DUFFERIN STATION,SUPOL,7,11,E,BD,5214
-2021-05-13,12:33,Thursday,DUFFERIN STATION,SUPOL,3,7,E,BD,5012
-2021-05-13,12:40,Thursday,WARDEN STATION,EUSC,3,7,W,BD,5238
-2021-05-13,14:22,Thursday,WOODBINE STATION,MUDD,9,13,W,BD,5287
-2021-05-13,15:07,Thursday,ST CLAIR STATION,EUNT,7,10,S,YU,5891
-2021-05-13,15:29,Thursday,WELLESLEY STATION,MUPAA,0,0,S,YU,5901
-2021-05-13,16:01,Thursday,VAUGHAN MC STATION,MUPAA,0,0,S,YU,5666
-2021-05-13,16:14,Thursday,SPADINA BD STATION,MUI,0,0,W,BD,0
-2021-05-13,16:55,Thursday,SHERBOURNE STATION,MUIS,0,0,,BD,0
-2021-05-13,16:58,Thursday,NORTH YORK CTR STATION,EUSC,0,0,N,YU,5496
-2021-05-13,17:06,Thursday,COXWELL STATION,MUIS,0,0,,BD,0
-2021-05-13,17:16,Thursday,VAUGHAN MC STATION,MUTO,4,7,S,YU,5821
-2021-05-13,18:44,Thursday,EGLINTON STATION,PUMEL,0,0,,YU,0
-2021-05-13,18:50,Thursday,VAUGHAN MC STATION,TUSUP,5,10,S,YU,5621
-2021-05-13,20:05,Thursday,BAY STATION,SUDP,5,9,E,BD,5203
-2021-05-13,22:00,Thursday,YONGE-UNIVERSITY/BLOOR,MUO,0,0,,YU/BD,0
-2021-05-13,23:46,Thursday,MAIN STREET STATION,SUAE,5,12,W,BD,5114
-2021-05-14,01:54,Friday,UNION STATION,SUUT,0,0,N,YU,0
-2021-05-14,05:52,Friday,SHEPPARD-YONGE STATION,TUCC,0,0,W,SHP,6166
-2021-05-14,06:00,Friday,TORONTO TRANSIT COMMIS,MUO,0,0,,YU,0
-2021-05-14,06:00,Friday,TORONTO TRANSIT COMMIS,MUO,0,0,,SHP,0
-2021-05-14,06:00,Friday,TORONTO TRANSIT COMMIS,MRO,0,0,,SRT,0
-2021-05-14,06:18,Friday,SHEPPARD WEST STATION,MUO,6,9,N,YU,5511
-2021-05-14,06:21,Friday,VAUGHAN MC STATION,EUBK,3,6,S,YU,5686
-2021-05-14,06:47,Friday,KEELE STATION,PUMO,0,0,,BD,0
-2021-05-14,07:06,Friday,ST CLAIR WEST STATION,MUTO,3,6,N,YU,5536
-2021-05-14,07:17,Friday,RUNNYMEDE STATION,EUPI,10,14,W,BD,5271
-2021-05-14,07:45,Friday,KIPLING STATION,EUCD,10,14,E,BD,5050
-2021-05-14,08:09,Friday,BATHURST STATION,SUO,0,0,W,BD,5192
-2021-05-14,08:37,Friday,SPADINA BD STATION,SUDP,6,10,W,BD,5114
-2021-05-14,08:52,Friday,BLOOR STATION,SUDP,4,7,N,YU,5861
-2021-05-14,09:08,Friday,KIPLING STATION,TUNIP,4,8,E,BD,5285
-2021-05-14,10:51,Friday,KIPLING STATION,TUO,5,9,E,BD,5140
-2021-05-14,11:47,Friday,JANE STATION,MUIRS,0,0,,BD,0
-2021-05-14,13:14,Friday,ST CLAIR STATION,PUTIJ,0,0,N,YU,5821
-2021-05-14,13:16,Friday,VAUGHAN MC STATION,MUCL,5,8,S,YU,5841
-2021-05-14,14:07,Friday,NORTH YORK CTR STATION,EUSC,0,0,N,YU,5496
-2021-05-14,14:37,Friday,WARDEN STATION,SUUT,0,0,W,BD,5074
-2021-05-14,14:42,Friday,ROSEDALE STATION,PUTO,24,27,N,YU,5881
-2021-05-14,14:42,Friday,WELLESLEY STATION,MUIS,0,0,,YU,0
-2021-05-14,14:43,Friday,DUNDAS WEST STATION,MUIS,0,0,W,BD,5121
-2021-05-14,14:56,Friday,EGLINTON STATION,TUCC,0,0,S,YU,5806
-2021-05-14,14:57,Friday,KENNEDY BD STATION,SUDP,4,8,W,BD,5151
-2021-05-14,15:20,Friday,QUEEN STATION,MUPAA,0,0,N,YU,6011
-2021-05-14,15:23,Friday,WELLESLEY STATION,MUATC,5,8,S,YU,5576
-2021-05-14,15:26,Friday,LAWRENCE STATION,TUSC,0,0,S,YU,5681
-2021-05-14,15:43,Friday,BLOOR STATION,SUDP,0,0,S,YU,0
-2021-05-14,16:05,Friday,YONGE BD STATION,MUIS,0,0,W,BD,5143
-2021-05-14,16:24,Friday,EGLINTON WEST STATION,MUIR,3,6,N,YU,5781
-2021-05-14,16:39,Friday,CASTLE FRANK STATION,MUIRS,0,0,,BD,0
-2021-05-14,16:51,Friday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,6011
-2021-05-14,17:19,Friday,VAUGHAN MC STATION,MUTO,5,8,S,YU,5906
-2021-05-14,17:37,Friday,COLLEGE STATION,MUPAA,0,0,S,YU,5866
-2021-05-14,18:04,Friday,UNION STATION,MUTO,3,6,N,YU,5691
-2021-05-14,19:06,Friday,QUEEN'S PARK STATION,SUDP,0,0,,YU,0
-2021-05-14,19:21,Friday,NORTH YORK CTR STATION,EUSC,0,0,N,YU,5496
-2021-05-14,20:02,Friday,VAUGHAN MC STATION,SUDP,0,0,,YU,0
-2021-05-14,20:05,Friday,ST GEORGE BD STATION,EUSC,0,0,W,BD,5276
-2021-05-14,20:22,Friday,COXWELL STATION,MUI,17,24,E,BD,5034
-2021-05-14,20:34,Friday,BROADVIEW STATION,TUMVS,0,0,E,BD,5310
-2021-05-14,20:39,Friday,MAIN STREET STATION,MUIS,0,0,,BD,0
-2021-05-14,20:46,Friday,COLLEGE STATION,SUDP,0,0,N,YU,0
-2021-05-14,21:47,Friday,ST GEORGE BD STATION,EUSC,0,0,W,BD,5276
-2021-05-14,21:51,Friday,EGLINTON WEST STATION,MUSAN,7,14,S,YU,5656
-2021-05-14,22:00,Friday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-05-14,22:46,Friday,CHESTER STATION,TUO,3,10,E,BD,5332
-2021-05-14,23:04,Friday,KENNEDY BD STATION,TUO,7,14,W,BD,5203
-2021-05-14,23:20,Friday,DON MILLS STATION,TUSC,0,0,E,SHP,6186
-2021-05-15,00:08,Saturday,KENNEDY BD STATION,MUIR,6,12,W,BD,5247
-2021-05-15,01:30,Saturday,LAWRENCE STATION,EUSC,0,0,N,YU,5496
-2021-05-15,01:42,Saturday,ST GEORGE BD STATION,SUDP,10,16,E,BD,5026
-2021-05-15,02:10,Saturday,DON MILLS STATION,EUBK,0,0,E,SHP,6166
-2021-05-15,05:05,Saturday,SPADINA BD STATION,MUNCA,0,0,,,0
-2021-05-15,05:52,Saturday,KIPLING STATION,EUOE,0,0,E,BD,5197
-2021-05-15,06:10,Saturday,BAY STATION,SUAP,6,11,E,BD,5002
-2021-05-15,06:15,Saturday,SPADINA BD STATION,MUIRS,0,0,,BD,0
-2021-05-15,06:59,Saturday,YONGE BD STATION,SUDP,4,9,W,BD,5287
-2021-05-15,08:51,Saturday,WELLESLEY STATION,SUDP,0,0,N,YU,0
-2021-05-15,09:05,Saturday,SHEPPARD WEST STATION,EUDO,3,9,N,YU,5746
-2021-05-15,09:28,Saturday,VAUGHAN MC STATION,EUCD,5,11,S,YU,5741
-2021-05-15,09:53,Saturday,DON MILLS STATION,PUMEL,0,0,,SHP,0
-2021-05-15,09:57,Saturday,VICTORIA PARK STATION,MUPAA,0,0,E,BD,5212
-2021-05-15,10:23,Saturday,EGLINTON STATION,TUO,4,8,N,YU,5921
-2021-05-15,12:14,Saturday,ISLINGTON STATION,TUSC,0,0,W,BD,5247
-2021-05-15,12:20,Saturday,LAWRENCE WEST STATION,SUDP,26,30,S,YU,5741
-2021-05-15,12:58,Saturday,FINCH STATION,TUO,4,8,S,YU,5696
-2021-05-15,13:05,Saturday,FINCH STATION,MUDD,8,12,S,YU,5491
-2021-05-15,13:10,Saturday,SPADINA BD STATION,SUROB,0,0,,BD,0
-2021-05-15,13:15,Saturday,WILSON STATION,MUTO,4,8,N,YU,5686
-2021-05-15,14:35,Saturday,DUFFERIN STATION,MUIS,0,0,,BD,0
-2021-05-15,14:59,Saturday,COLLEGE STATION,MUIS,0,0,,YU,0
-2021-05-15,15:05,Saturday,BLOOR STATION,MUPAA,0,0,N,YU,5911
-2021-05-15,15:13,Saturday,GLENCAIRN STATION,TUOS,10,14,N,YU,5611
-2021-05-15,15:20,Saturday,GLENCAIRN STATION,MUPAA,0,0,N,YU,5611
-2021-05-15,15:34,Saturday,NORTH YORK CTR STATION,EUSC,0,0,N,YU,5496
-2021-05-15,16:30,Saturday,FINCH WEST STATION,SUDP,0,0,,YU,0
-2021-05-15,16:37,Saturday,ROSEDALE STATION,TUSC,0,0,N,YU,5616
-2021-05-15,16:47,Saturday,ROSEDALE STATION,MUSC,0,0,N,YU,5666
-2021-05-15,17:02,Saturday,WARDEN STATION,MUDD,9,13,E,BD,5303
-2021-05-15,17:19,Saturday,DUNDAS STATION,MUNCA,0,0,,YU,0
-2021-05-15,18:19,Saturday,KING STATION,SUDP,7,11,S,YU,5586
-2021-05-15,18:39,Saturday,UNION STATION,MUIS,0,0,,YU,0
-2021-05-15,19:17,Saturday,ROSEDALE STATION,MUSC,0,0,N,YU,5661
-2021-05-15,19:47,Saturday,QUEEN'S PARK STATION,SUO,8,12,N,YU,6026
-2021-05-15,20:37,Saturday,VAUGHAN MC STATION,EUATC,5,10,S,YU,6021
-2021-05-15,20:42,Saturday,NORTH YORK CTR STATION,TUSC,0,0,N,YU,5496
-2021-05-15,20:43,Saturday,LESLIE STATION,TUMVS,9,16,E,SHP,6151
-2021-05-15,21:02,Saturday,OLD MILL STATION,TUOS,0,0,W,BD,5238
-2021-05-15,21:35,Saturday,VAUGHAN MC STATION,MUI,7,14,S,YU,5701
-2021-05-15,21:39,Saturday,UNION STATION,MUIR,5,10,N,YU,5941
-2021-05-15,22:00,Saturday,YONGE-UNIVERSITY / BLO,MUO,0,0,,YU/BD,0
-2021-05-15,23:03,Saturday,LAWRENCE STATION,EUSC,0,0,N,YU,5493
-2021-05-16,00:04,Sunday,MAIN STREET STATION,MUIS,0,0,,BD,0
-2021-05-16,00:37,Sunday,KENNEDY BD STATION,SUDP,23,27,W,BD,5353
-2021-05-16,00:40,Sunday,KENNEDY SRT STATION,SRO,21,27,S,SRT,3016
-2021-05-16,00:57,Sunday,MAIN STREET STATION,SUUT,3,7,E,BD,5214
-2021-05-16,03:37,Sunday,PIONEER VILLAGE STATIO,MUIS,0,0,,YU,0
-2021-05-16,07:39,Sunday,WILSON STATION,MUTO,3,0,S,YU,5931
-2021-05-16,07:55,Sunday,SHEPPARD-YONGE STATION,PUOPO,0,0,E,SHP,6166
-2021-05-16,08:00,Sunday,KIPLING - ISLIINGTON S,MUO,0,0,,BD,0
-2021-05-16,08:40,Sunday,ROSEDALE STATION,MUATC,3,9,S,YU,5941
-2021-05-16,09:40,Sunday,ROSEDALE STATION,MUSC,3,9,N,YU,5796
-2021-05-16,09:44,Sunday,BLOOR STATION,SUDP,4,9,N,YU,5601
-2021-05-16,10:09,Sunday,EGLINTON STATION,MUIR,11,16,S,YU,5721
-2021-05-16,10:31,Sunday,DUFFERIN STATION,MUIS,6,10,E,BD,5332
-2021-05-16,10:52,Sunday,BLOOR STATION,PUTO,7,13,S,YU,5781
-2021-05-16,11:01,Sunday,BLOOR STATION,PUTO,3,9,S,YU,5926
-2021-05-16,14:53,Sunday,YONGE BD STATION,MUI,6,10,E,BD,5033
-2021-05-16,16:33,Sunday,ROYAL YORK STATION,PUMEL,0,0,,BD,0
-2021-05-16,16:40,Sunday,YORK MILLS STATION,TUMVS,0,0,N,YU,5691
-2021-05-16,17:51,Sunday,UNION STATION,MUPAA,0,0,N,YU,5961
-2021-05-16,17:53,Sunday,ST GEORGE YUS STATION,SUDP,7,12,N,YU,5906
-2021-05-16,18:14,Sunday,DUFFERIN STATION,EUTM,9,13,W,BD,5106
-2021-05-16,18:16,Sunday,UNION STATION,SUSA,0,0,,YU,0
-2021-05-16,18:28,Sunday,KING STATION,SUDP,0,0,,YU,0
-2021-05-16,18:48,Sunday,DOWNSVIEW PARK STATION,SUAP,7,12,S,YU,5901
-2021-05-16,20:43,Sunday,SPADINA YUS STATION,SUO,0,0,,YU,0
-2021-05-16,21:32,Sunday,SPADINA YUS STATION,MUATC,5,12,S,YU,5691
-2021-05-16,21:51,Sunday,DON MILLS STATION,PUSNT,0,0,E,SHP,6171
-2021-05-16,21:55,Sunday,DON MILLS STATION,MUTO,5,10,W,SHP,6176
-2021-05-16,22:00,Sunday,ST GEORGE BD STATION,SUO,0,0,E,BD,5331
-2021-05-16,22:00,Sunday,ST GEORGE YUS STATION,SUO,0,0,N,YU,5671
-2021-05-16,22:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-05-16,22:26,Sunday,SHEPPARD-YONGE STATION,TUMVS,0,0,W,SHP,6176
-2021-05-16,23:19,Sunday,SHERBOURNE STATION,MUIR,3,7,E,BD,5033
-2021-05-16,23:28,Sunday,MUSEUM STATION,SUDP,4,11,N,YU,5576
-2021-05-17,01:26,Monday,MAIN STREET STATION,MUIR,0,0,E,BD,5294
-2021-05-17,02:58,Monday,GREENWOOD CAR HOUSE,MUIE,0,0,,BD,0
-2021-05-17,06:00,Monday,YONGE-UNIVERSITY SUBWA,MUO,0,0,,YU,0
-2021-05-17,06:59,Monday,UNION STATION,MUATC,3,6,N,YU,5771
-2021-05-17,07:10,Monday,EGLINTON STATION,PUSNT,0,0,S,YU,0
-2021-05-17,07:17,Monday,ROSEDALE STATION,SUO,0,0,,YU,0
-2021-05-17,08:13,Monday,NORTH YORK CTR STATION,SUDP,0,0,S,YU,0
-2021-05-17,08:20,Monday,BAYVIEW STATION,PUCSC,12,17,W,SHP,6151
-2021-05-17,09:30,Monday,KEELE STATION,TUS,5,9,W,BD,5250
-2021-05-17,10:26,Monday,VICTORIA PARK STATION,SUDP,0,0,,BD,0
-2021-05-17,10:27,Monday,UNION STATION,MUATC,3,6,N,YU,5766
-2021-05-17,11:39,Monday,DUPONT STATION,SUEAS,17,22,N,YU,5856
-2021-05-17,11:50,Monday,FINCH STATION,TUNIP,5,9,S,YU,5556
-2021-05-17,11:55,Monday,SPADINA YUS STATION,SUAP,0,0,N,YU,0
-2021-05-17,12:00,Monday,SPADINA BD STATION,SUPOL,9,13,E,BD,5216
-2021-05-17,12:40,Monday,COXWELL STATION,EUPI,4,8,E,BD,5151
-2021-05-17,13:04,Monday,FINCH STATION,TUNIP,4,8,S,YU,5726
-2021-05-17,13:06,Monday,ST CLAIR WEST STATION,MUATC,5,10,S,YU,6061
-2021-05-17,13:24,Monday,DAVISVILLE STATION,MUPAA,0,0,N,YU,5581
-2021-05-17,13:28,Monday,KIPLING STATION,EUSC,0,0,E,BD,5222
-2021-05-17,14:06,Monday,ST GEORGE BD STATION,EUDO,5,9,W,BD,5355
-2021-05-17,14:38,Monday,ROYAL YORK STATION,EUSC,0,0,E,BD,5220
-2021-05-17,14:53,Monday,GREENWOOD WYE,TUMVS,0,0,,BD,5069
-2021-05-17,15:01,Monday,UNION STATION,MUATC,10,13,N,YU,5646
-2021-05-17,15:13,Monday,ST CLAIR STATION,PUTIJ,3,6,N,YU,5726
-2021-05-17,16:11,Monday,BROADVIEW STATION,SUDP,6,10,E,BD,5271
-2021-05-17,16:19,Monday,ST CLAIR STATION,PUTIJ,5,8,N,YU,5991
-2021-05-17,18:10,Monday,UNION STATION,SUUT,4,7,N,YU,5761
-2021-05-17,18:18,Monday,ST CLAIR WEST STATION,PUMEL,0,0,,YU,0
-2021-05-17,18:26,Monday,WELLESLEY STATION,SUAP,13,18,S,YU,5771
-2021-05-17,19:28,Monday,PAPE STATION,MUD,5,12,E,BD,5310
-2021-05-17,20:07,Monday,DAVISVILLE STATION,MUI,7,14,N,YU,5726
-2021-05-17,20:31,Monday,SUMMERHILL STATION,SUDP,0,0,N,YU,5641
-2021-05-17,21:59,Monday,UNION STATION,SUDP,0,0,N,YU,5731
-2021-05-17,22:00,Monday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-05-17,22:54,Monday,BROADVIEW STATION,MUIS,0,0,,BD,0
-2021-05-17,23:08,Monday,COLLEGE STATION,MUIR,0,0,N,YU,5796
-2021-05-17,23:11,Monday,NORTH YORK CTR STATION,TUSC,0,0,S,YU,5811
-2021-05-17,23:27,Monday,PAPE STATION,SUDP,3,10,E,BD,5218
-2021-05-18,06:00,Tuesday,MUSEUM STATION TO OSGO,MUO,0,0,B,BD,0
-2021-05-18,06:00,Tuesday,YONGE UNIVERSITY SUBWA,MUO,0,0,B,YU,0
-2021-05-18,06:41,Tuesday,DON MILLS STATION,TUSC,0,0,W,SHP,6176
-2021-05-18,07:35,Tuesday,UNION STATION,MUATC,4,8,N,YU,5766
-2021-05-18,08:04,Tuesday,FINCH STATION,MUSC,4,8,N,YU,5721
-2021-05-18,08:10,Tuesday,KIPLING STATION,MUIE,4,8,E,BD,5337
-2021-05-18,09:57,Tuesday,YONGE BD STATION,MUO,10,14,W,BD,5276
-2021-05-18,10:01,Tuesday,LAWRENCE WEST STATION,MUIS,0,0,,YU,0
-2021-05-18,11:50,Tuesday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-05-18,12:18,Tuesday,DONLANDS STATION,SUDP,0,0,W,BD,5135
-2021-05-18,12:24,Tuesday,ROSEDALE STATION,SUAP,0,0,N,YU,5816
-2021-05-18,13:41,Tuesday,FINCH WEST STATION,MUIS,0,0,,YU,0
-2021-05-18,13:43,Tuesday,UNION STATION,EUAC,4,8,N,YU,5471
-2021-05-18,13:54,Tuesday,ST CLAIR STATION,MUIE,0,0,,YU,0
-2021-05-18,14:50,Tuesday,FINCH STATION,TUNIP,4,8,S,YU,5726
-2021-05-18,14:55,Tuesday,BLOOR STATION,MUPLB,19,24,S,YU,5791
-2021-05-18,15:29,Tuesday,ST CLAIR STATION,MUIRS,0,0,,YU,0
-2021-05-18,16:02,Tuesday,ST GEORGE BD STATION,MUIRS,0,0,E,BD,0
-2021-05-18,16:36,Tuesday,UNION STATION,SUDP,4,8,N,YU,5796
-2021-05-18,17:31,Tuesday,FINCH STATION,EUSC,0,0,N,YU,5761
-2021-05-18,18:02,Tuesday,WELLESLEY STATION,MUPAA,0,0,N,YU,5991
-2021-05-18,18:45,Tuesday,MAIN STREET STATION,SUAP,0,0,,BD,0
-2021-05-18,20:03,Tuesday,DUNDAS STATION,SUO,0,0,N,YU,5571
-2021-05-18,20:15,Tuesday,VAUGHAN MC STATION,MUWR,0,0,,,0
-2021-05-18,20:26,Tuesday,KENNEDY BD STATION,SUAP,0,0,,BD,0
-2021-05-18,20:41,Tuesday,BLOOR STATION,SUDP,0,0,S,YU,0
-2021-05-18,22:00,Tuesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-05-18,22:01,Tuesday,LAWRENCE STATION,SUAP,5,12,N,YU,5496
-2021-05-18,22:19,Tuesday,YORK MILLS STATION,SUDP,0,0,N,YU,5591
-2021-05-18,23:08,Tuesday,VAUGHAN MC STATION,MUATC,0,0,S,YU,5026
-2021-05-18,23:27,Tuesday,CHESTER STATION,SUDP,3,10,W,BD,5197
-2021-05-19,00:45,Wednesday,KIPLING STATION,MUO,7,14,E,BD,5064
-2021-05-19,02:36,Wednesday,FINCH WEST STATION,SUDP,0,0,,YU,0
-2021-05-19,05:38,Wednesday,EGLINTON STATION,PUCSC,10,0,N,YU,5761
-2021-05-19,06:00,Wednesday,SPADINA YUS STATION,SUDP,3,6,N,YU,6071
-2021-05-19,06:00,Wednesday,YONGE- UNIVERSITY SUBW,MUO,0,0,,YU,0
-2021-05-19,06:00,Wednesday,YONGE-UNIVERSITY SUBWA,MUO,0,0,,YU,0
-2021-05-19,07:37,Wednesday,OLD MILL STATION,EUSC,0,0,W,BD,5197
-2021-05-19,07:43,Wednesday,LANSDOWNE STATION,TUO,4,8,E,BD,5033
-2021-05-19,09:52,Wednesday,YORK MILLS STATION,TUSC,0,0,N,YU,5731
-2021-05-19,09:56,Wednesday,KIPLING STATION,EUDO,4,8,E,BD,5303
-2021-05-19,10:05,Wednesday,COLLEGE STATION,SUDP,7,11,N,YU,5641
-2021-05-19,10:11,Wednesday,DAVISVILLE STATION,MUSAN,4,8,S,YU,5766
-2021-05-19,10:43,Wednesday,BLOOR STATION,SUDP,4,8,N,YU,5816
-2021-05-19,11:55,Wednesday,BATHURST STATION,MUPAA,0,0,W,BD,5228
-2021-05-19,12:20,Wednesday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-05-19,12:39,Wednesday,SHERBOURNE STATION,MUPAA,3,7,E,BD,5101
-2021-05-19,13:23,Wednesday,COXWELL STATION,MUPAA,3,7,E,BD,5026
-2021-05-19,13:29,Wednesday,KENNEDY BD STATION,SUAE,4,8,W,BD,5085
-2021-05-19,14:21,Wednesday,BLOOR STATION,SUDP,7,12,N,YU,5801
-2021-05-19,14:23,Wednesday,BLOOR STATION,SUDP,0,0,N,YU,5801
-2021-05-19,14:24,Wednesday,YONGE BD STATION,SUDP,0,0,W,BD,5075
-2021-05-19,15:33,Wednesday,CASTLE FRANK STATION,SUUT,43,47,E,BD,5216
-2021-05-19,15:45,Wednesday,EGLINTON STATION,MUPAA,0,0,S,YU,5926
-2021-05-19,16:33,Wednesday,KEELE STATION,MUSC,0,0,W,BD,5307
-2021-05-19,16:50,Wednesday,OSSINGTON STATION,MUD,5,9,W,BD,5305
-2021-05-19,16:59,Wednesday,OSSINGTON STATION,SUDP,0,0,W,BD,5166
-2021-05-19,17:10,Wednesday,YONGE BD STATION,MUSC,0,0,E,BD,5276
-2021-05-19,18:00,Wednesday,SHEPPARD-YONGE STATION,TUCC,22,27,W,SHP,6186
-2021-05-19,18:11,Wednesday,QUEEN'S QUAY STATION,PUMEL,0,0,,,0
-2021-05-19,18:17,Wednesday,ST CLAIR STATION,MUPAA,5,10,N,YU,5616
-2021-05-19,18:22,Wednesday,PAPE STATION,MUIS,0,0,,BD,0
-2021-05-19,18:42,Wednesday,KIPLING STATION,SUO,0,0,E,BD,5026
-2021-05-19,19:55,Wednesday,BLOOR STATION,MUIRS,0,0,,YU,0
-2021-05-19,21:21,Wednesday,KEELE STATION,MUO,7,14,E,BD,5153
-2021-05-19,21:26,Wednesday,SHERBOURNE STATION,SUDP,10,17,E,BD,5213
-2021-05-19,21:49,Wednesday,ST ANDREW STATION,MUIRS,0,0,,YU,0
-2021-05-19,21:57,Wednesday,PAPE STATION,SUDP,4,11,W,BD,5108
-2021-05-19,22:00,Wednesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-05-19,22:04,Wednesday,VAUGHAN MC STATION,PUSRA,13,20,N,YU,5716
-2021-05-19,23:26,Wednesday,KENNEDY BD STATION,MUIR,7,14,W,BD,5085
-2021-05-20,00:56,Thursday,KIPLING STATION,MUI,7,14,E,BD,5195
-2021-05-20,02:19,Thursday,PIONEER VILLAGE STATIO,PUMEL,0,0,,YU,0
-2021-05-20,05:28,Thursday,SHEPPARD-YONGE STATION,MUSC,0,0,E,SHP,6181
-2021-05-20,05:48,Thursday,YORK MILLS STATION,PUSTS,0,0,S,YU,5576
-2021-05-20,06:00,Thursday,YOONGE-UNIVERSITY SUBW,MUO,0,0,,YU,0
-2021-05-20,06:34,Thursday,DON MILLS STATION,EUDO,5,10,W,SHP,6156
-2021-05-20,06:46,Thursday,BATHURST STATION,EUDO,3,7,W,BD,5294
-2021-05-20,08:28,Thursday,FINCH STATION,TUMVS,3,6,N,YU,5751
-2021-05-20,08:55,Thursday,KENNEDY SRT STATION,ERDO,5,10,N,SRT,3005
-2021-05-20,08:57,Thursday,MAIN STREET STATION,MUSC,0,0,W,BD,5297
-2021-05-20,09:13,Thursday,MCCOWAN STATION,ERDO,5,10,N,SRT,3005
-2021-05-20,09:44,Thursday,BESSARION STATION,PUOPO,5,10,E,SHP,6151
-2021-05-20,10:14,Thursday,YORK MILLS STATION,MUIS,0,0,,YU,0
-2021-05-20,10:57,Thursday,COLLEGE STATION,SUDP,6,9,S,YU,5611
-2021-05-20,11:04,Thursday,EGLINTON WEST STATION,MUIRS,0,0,S,YU,0
-2021-05-20,11:16,Thursday,ROSEDALE STATION,SUO,6,9,N,YU,5641
-2021-05-20,11:41,Thursday,SHEPPARD STATION,PUSTS,4,7,N,YU,5641
-2021-05-20,13:19,Thursday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-05-20,13:42,Thursday,COLLEGE STATION,PUMEL,0,0,,YU,0
-2021-05-20,14:07,Thursday,DUNDAS WEST STATION,MUIRS,0,0,,BD,0
-2021-05-20,14:26,Thursday,COXWELL STATION,SUDP,4,8,W,BD,5204
-2021-05-20,15:17,Thursday,SHEPPARD STATION,MUPAA,0,0,S,YU,5771
-2021-05-20,15:32,Thursday,CHRISTIE STATION,MUIS,0,0,E,BD,0
-2021-05-20,15:34,Thursday,CHRISTIE STATION,TUMVS,0,0,E,BD,5241
-2021-05-20,15:43,Thursday,YONGE BD STATION,MUSC,0,0,E,BD,5241
-2021-05-20,16:39,Thursday,PAPE STATION,SUDP,0,0,E,BD,5101
-2021-05-20,17:36,Thursday,KIPLING STATION,MUPAA,0,0,W,BD,5085
-2021-05-20,17:47,Thursday,DUFFERIN STATION,SUO,0,0,E,BD,5315
-2021-05-20,18:57,Thursday,KENNEDY BD STATION,PUSI,25,32,E,BD,5284
-2021-05-20,19:46,Thursday,KENNEDY BD STATION,PUSI,7,14,E,BD,5126
-2021-05-20,20:17,Thursday,YORK MILLS STATION,TUSC,0,0,N,YU,5641
-2021-05-20,20:32,Thursday,WELLESLEY STATION,SUDP,4,11,S,YU,5756
-2021-05-20,20:55,Thursday,ST CLAIR STATION,PUMEL,0,0,,YU,0
-2021-05-20,21:32,Thursday,MAIN STREET STATION,EUCD,5,12,W,BD,5294
-2021-05-20,21:39,Thursday,EGLINTON STATION,MUIS,0,0,,YU,0
-2021-05-20,22:00,Thursday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-05-20,22:16,Thursday,YONGE STATION,SUDP,7,14,E,BD,5075
-2021-05-21,01:13,Friday,ST ANDREW STATION,MUPAA,5,12,S,YU,5761
-2021-05-21,01:21,Friday,DUNDAS WEST STATION,MUIR,3,10,E,BD,5216
-2021-05-21,02:25,Friday,KIPLING STATION,MUI,0,0,,BD,5108
-2021-05-21,03:08,Friday,EGLINTON STATION,PUSNT,0,0,S,YU,5721
-2021-05-21,06:00,Friday,YONGE UNIVERSITY LINE,MUO,0,0,,YU,0
-2021-05-21,07:17,Friday,ST GEORGE YUS STATION,MUD,3,8,S,YU,6046
-2021-05-21,07:18,Friday,OSSINGTON STATION,SUAP,0,0,W,BD,0
-2021-05-21,08:20,Friday,ST GEORGE BD STATION,MUPAA,0,0,W,BD,5267
-2021-05-21,09:00,Friday,VAUGHAN MC STATION,MUSAN,5,10,S,YU,5911
-2021-05-21,09:03,Friday,GREENWOOD YARD,SUEAS,0,0,,BD,0
-2021-05-21,09:52,Friday,ROSEDALE STATION,SUDP,10,14,S,YU,5756
-2021-05-21,10:06,Friday,ROSEDALE STATION,SUDP,6,11,N,YU,5776
-2021-05-21,10:06,Friday,SUMMERHILL STATION,TUMVS,0,0,S,YU,5811
-2021-05-21,10:19,Friday,SUMMERHILL STATION,TUMVS,3,7,S,YU,5906
-2021-05-21,10:51,Friday,SUMMERHILL STATION,SUDP,4,9,S,YU,5721
-2021-05-21,11:10,Friday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-05-21,11:33,Friday,COXWELL STATION,PUSO,3,7,W,BD,5187
-2021-05-21,11:45,Friday,DUFFERIN STATION,MUDD,7,11,E,BD,5298
-2021-05-21,11:53,Friday,NORTH YORK CTR STATION,MUPAA,0,0,S,YU,5576
-2021-05-21,12:25,Friday,ST CLAIR WEST STATION,PUMST,0,0,N,YU,0
-2021-05-21,12:40,Friday,BROADVIEW STATION,MUPAA,0,0,W,BD,5104
-2021-05-21,12:48,Friday,ST ANDREW STATION,MUPAA,0,0,N,YU,5941
-2021-05-21,13:02,Friday,PAPE STATION,MUI,9,13,W,BD,5315
-2021-05-21,13:47,Friday,SHEPPARD WEST STATION,SUDP,0,0,,YU,0
-2021-05-21,14:31,Friday,ST ANDREW STATION,MUSAN,5,10,N,YU,5576
-2021-05-21,14:39,Friday,PIONEER VILLAGE STATIO,MUIRS,0,0,,YU,0
-2021-05-21,14:56,Friday,BLOOR STATION,MUI,17,22,N,YU,5621
-2021-05-21,14:56,Friday,BLOOR STATION,SUO,0,0,S,YU,5771
-2021-05-21,14:56,Friday,HIGH PARK STATION,SUDP,18,22,W,BD,5284
-2021-05-21,14:56,Friday,YONGE BD STATION,SUO,0,0,W,BD,5133
-2021-05-21,15:58,Friday,MAIN STREET STATION,SUDP,0,0,W,BD,5267
-2021-05-21,16:32,Friday,EGLINTON STATION,PUMEL,0,0,,YU,0
-2021-05-21,17:05,Friday,ST GEORGE BD STATION,PUMEL,0,0,,BD,0
-2021-05-21,17:18,Friday,DUNDAS STATION,MUIS,0,0,N,YU,0
-2021-05-21,17:37,Friday,NORTH YORK CTR STATION,SUAP,3,6,S,YU,5736
-2021-05-21,17:42,Friday,COLLEGE STATION,SUAP,0,0,N,YU,5966
-2021-05-21,17:50,Friday,FINCH STATION,TUNIP,6,9,S,YU,5731
-2021-05-21,17:59,Friday,YORK MILLS STATION,MUPAA,0,0,N,YU,5966
-2021-05-21,18:01,Friday,BROADVIEW STATION,PUMEL,0,0,,BD,0
-2021-05-21,18:17,Friday,DUNDAS WEST STATION,TUMVS,4,8,W,BD,5101
-2021-05-21,19:39,Friday,DUNDAS STATION,SUDP,3,8,N,YU,5816
-2021-05-21,20:47,Friday,VICTORIA PARK STATION,SUO,7,14,W,BD,5353
-2021-05-21,20:52,Friday,YORK MILLS STATION,MUSC,0,0,N,YU,5571
-2021-05-21,20:57,Friday,BAY STATION,SUUT,12,19,E,BD,5072
-2021-05-21,21:09,Friday,LAWRENCE WEST STATION,SUO,0,0,N,YU,5741
-2021-05-21,21:13,Friday,UNION STATION,MUPAA,0,0,N,YU,5961
-2021-05-21,22:00,Friday,YONGE/UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-05-21,22:18,Friday,DUNDAS STATION,MUPAA,5,12,S,YU,5766
-2021-05-21,22:52,Friday,KEELE STATION,SUDP,0,0,,BD,0
-2021-05-22,00:56,Saturday,OLD MILL STATION,EUNT,7,14,W,BD,5112
-2021-05-22,06:00,Saturday,YONGE UNIVERSITY LINE,MUO,0,0,,YU,0
-2021-05-22,06:32,Saturday,SHEPPARD-YONGE STATION,TUSC,0,0,E,SHP,6181
-2021-05-22,09:25,Saturday,SCARBOROUGH CTR STATIO,PREL,0,0,,SRT,0
-2021-05-22,10:18,Saturday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-05-22,10:44,Saturday,ST ANDREW STATION,SUDP,8,14,N,YU,5776
-2021-05-22,11:06,Saturday,FINCH STATION,TUNIP,0,0,S,YU,5996
-2021-05-22,14:17,Saturday,ST GEORGE BD STATION,SUDP,3,4,W,BD,5108
-2021-05-22,14:24,Saturday,ST ANDREW STATION,MUPAA,0,0,S,YU,5491
-2021-05-22,14:40,Saturday,OLD MILL STATION,SUSA,0,0,,BD,0
-2021-05-22,15:01,Saturday,DUNDAS WEST STATION,MUNCA,0,0,,BD,0
-2021-05-22,15:05,Saturday,ST CLAIR STATION,MUPAA,0,0,N,YU,5616
-2021-05-22,15:46,Saturday,WARDEN STATION,MUPAA,0,0,W,BD,5108
-2021-05-22,17:15,Saturday,SHEPPARD STATION,PUTR,4,9,S,YU,5906
-2021-05-22,17:18,Saturday,SHEPPARD STATION,PUTR,0,0,S,YU,5906
-2021-05-22,17:44,Saturday,WELLESLEY STATION,MUIS,0,0,N,YU,0
-2021-05-22,17:55,Saturday,ROYAL YORK STATION,SUUT,35,39,W,BD,5104
-2021-05-22,18:26,Saturday,VICTORIA PARK STATION,PUSTS,15,19,W,BD,5119
-2021-05-22,18:28,Saturday,WILSON CARHOUSE,PUMO,0,0,,YU,0
-2021-05-22,18:31,Saturday,LANSDOWNE STATION,MUPAA,0,0,E,BD,5271
-2021-05-22,18:48,Saturday,VICTORIA PARK STATION,PUSTS,5,10,,BD,0
-2021-05-22,19:03,Saturday,OLD MILL STATION,MUSC,0,0,E,BD,5167
-2021-05-22,19:19,Saturday,SCARBOROUGH CTR STATIO,SRUT,147,153,E,SRT,3021
-2021-05-22,20:12,Saturday,DOWNSVIEW PARK STATION,MUPAA,0,0,N,YU,6036
-2021-05-22,21:50,Saturday,COXWELL STATION,MUI,0,0,E,BD,5054
-2021-05-22,22:00,Saturday,YONGE- UNIVERSITY SUBW,MUO,0,0,,YU/BD,0
-2021-05-22,22:26,Saturday,PIONEER VILLAGE STATIO,SUO,0,0,,YU,0
-2021-05-22,22:37,Saturday,EGLINTON STATION,MUIRS,0,0,,YU,0
-2021-05-23,00:28,Sunday,KENNEDY SRT STATION,MRUI,0,0,S,SRT,3006
-2021-05-23,00:32,Sunday,DAVISVILLE STATION,MUSAN,7,14,S,YU,5626
-2021-05-23,01:02,Sunday,VICTORIA PARK STATION,PUMEL,0,0,,BD,0
-2021-05-23,01:25,Sunday,MCCOWAN STATION,PRSL,3,9,N,SRT,3001
-2021-05-23,01:27,Sunday,WARDEN STATION,MUD,0,0,E,BD,5275
-2021-05-23,08:00,Sunday,YONGE UNIVERSTY SUBWAY,MUO,0,0,,YU,0
-2021-05-23,08:16,Sunday,KEELE STATION,EUBK,4,8,W,BD,5267
-2021-05-23,08:20,Sunday,ST ANDREW STATION,MUATC,5,11,S,YU,5796
-2021-05-23,08:30,Sunday,ROYAL YORK STATION,EUCD,4,8,W,BD,5267
-2021-05-23,08:31,Sunday,KIPLING STATION,EUBK,4,8,E,BD,5032
-2021-05-23,08:54,Sunday,KEELE STATION,SUDP,7,11,W,BD,5065
-2021-05-23,09:21,Sunday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-05-23,10:15,Sunday,BROADVIEW STATION,MUIS,0,0,,BD,0
-2021-05-23,10:44,Sunday,ST CLAIR WEST STATION,SUAP,9,15,S,YU,5821
-2021-05-23,12:21,Sunday,BLOOR STATION,MUPAA,3,9,N,YU,5901
-2021-05-23,12:54,Sunday,DONLANDS STATION,SUAP,15,19,W,BD,5119
-2021-05-23,13:02,Sunday,QUEEN STATION,PUMST,0,0,,YU,0
-2021-05-23,13:11,Sunday,LAWRENCE EAST STATION,SRAP,0,0,,SRT,0
-2021-05-23,13:37,Sunday,QUEEN STATION,MUPAA,0,0,N,YU,5901
-2021-05-23,14:21,Sunday,ST CLAIR STATION,TUOS,5,10,N,YU,5921
-2021-05-23,14:36,Sunday,LAWRENCE STATION,MUIR,11,16,N,YU,5921
-2021-05-23,15:22,Sunday,MAIN STREET STATION,SUDP,0,0,E,BD,5164
-2021-05-23,16:38,Sunday,WELLESLEY STATION,MUPAA,0,0,N,YU,5796
-2021-05-23,16:46,Sunday,DON MILLS STATION,SUUT,15,20,E,SHP,6156
-2021-05-23,17:35,Sunday,KIPLING STATION,TUO,4,8,E,BD,5341
-2021-05-23,18:17,Sunday,KENNEDY BD STATION,MUIRS,0,0,,BD,0
-2021-05-23,18:43,Sunday,KENNEDY BD STATION,SUO,4,8,W,BD,5104
-2021-05-23,18:51,Sunday,YONGE BD STATION,MUIRS,0,0,,BD,0
-2021-05-23,22:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-05-23,22:07,Sunday,CHESTER STATION,SUUT,0,0,W,BD,5120
-2021-05-23,22:20,Sunday,BROADVIEW STATION,SUUT,0,0,W,BD,5035
-2021-05-23,22:57,Sunday,ST ANDREW STATION,SUDP,0,0,,YU,0
-2021-05-23,23:19,Sunday,ST ANDREW STATION,SUDP,0,0,,,0
-2021-05-23,23:54,Sunday,KENNEDY BD STATION,MUDD,3,7,W,BD,5200
-2021-05-24,01:12,Monday,ROSEDALE STATION,MUATC,5,12,S,YU,6071
-2021-05-24,01:25,Monday,KENNEDY TO KIPLING STA,TUS,4,8,W,BD,5306
-2021-05-24,05:12,Monday,EGLINTON STATION,SUAE,0,0,,YU,0
-2021-05-24,05:48,Monday,MCCOWAN STATION,PRSL,275,0,S,SRT,3014
-2021-05-24,05:53,Monday,KENNEDY BD STATION,TUNOA,4,8,W,BD,5203
-2021-05-24,06:00,Monday,BAY STATION,SUO,0,0,W,BD,5206
-2021-05-24,06:00,Monday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU,0
-2021-05-24,06:10,Monday,BAY STATION,SUO,14,0,E,BD,5214
-2021-05-24,06:51,Monday,ROYAL YORK STATION,TUS,3,7,W,BD,5167
-2021-05-24,07:08,Monday,QUEEN STATION,MUIRS,0,0,S,YU,0
-2021-05-24,08:54,Monday,LESLIE STATION,TUO,9,14,E,SHP,6161
-2021-05-24,08:57,Monday,DONLANDS STATION,TUO,3,7,W,BD,5060
-2021-05-24,09:20,Monday,BROADVIEW STATION,MUSAN,4,8,E,BD,5015
-2021-05-24,09:36,Monday,FINCH STATION,MUIR,5,11,S,YU,5806
-2021-05-24,09:39,Monday,COXWELL STATION,TUNIP,5,9,E,BD,5328
-2021-05-24,10:14,Monday,SPADINA BD STATION,MUPAA,0,0,W,BD,5337
-2021-05-24,10:34,Monday,DUNDAS WEST STATION,MUIS,0,0,,BD,0
-2021-05-24,10:41,Monday,KENNEDY BD STATION,MUDD,3,7,W,BD,5206
-2021-05-24,11:58,Monday,BATHURST STATION,SUAP,0,0,E,BD,5159
-2021-05-24,12:54,Monday,KENNEDY BD STATION,TUMVS,0,0,E,BD,5284
-2021-05-24,13:13,Monday,UNION STATION,SUUT,0,0,N,YU,5496
-2021-05-24,14:00,Monday,EGLINTON STATION,MUIRS,0,0,,YU,0
-2021-05-24,14:36,Monday,JANE STATION,PUMEL,0,0,,BD,0
-2021-05-24,16:20,Monday,BLOOR STATION,MUPAA,0,0,N,YU,6076
-2021-05-24,17:38,Monday,SUMMERHILL STATION,EUNT,7,17,N,YU,5801
-2021-05-24,18:47,Monday,BLOOR STATION,MUPAA,0,0,N,YU,6076
-2021-05-24,18:48,Monday,SHERBOURNE STATION,MUPAA,0,0,E,BD,5180
-2021-05-24,18:50,Monday,MCCOWAN STATION,ERTC,0,0,N,SRT,3019
-2021-05-24,19:30,Monday,FINCH STATION,SUAP,0,0,,YU,0
-2021-05-24,19:31,Monday,CHRISTIE STATION,TUSC,0,0,W,BD,5035
-2021-05-24,19:51,Monday,BATHURST STATION,MUPAA,0,0,W,BD,5126
-2021-05-24,20:04,Monday,FINCH STATION,MUIS,0,0,,YU,0
-2021-05-24,20:14,Monday,FINCH STATION,SUAP,0,0,,YU,0
-2021-05-24,20:29,Monday,BLOOR STATION,MUIS,0,0,S,YU,0
-2021-05-24,20:36,Monday,YORK MILLS STATION,TUSC,0,0,N,YU,5949
-2021-05-24,20:44,Monday,BLOOR STATION,MUPAA,5,12,N,YU,5616
-2021-05-24,20:47,Monday,DUNDAS STATION,MUIS,0,0,N,YU,0
-2021-05-24,21:16,Monday,SHERBOURNE STATION,MUPAA,3,7,W,BD,5060
-2021-05-24,22:00,Monday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-05-24,22:24,Monday,VICTORIA PARK STATION,SUO,0,0,,BD,0
-2021-05-24,23:06,Monday,BATHURST STATION,EUNT,5,9,W,BD,5060
-2021-05-25,00:19,Tuesday,DUNDA WEST STATION,SUO,0,0,E,,0
-2021-05-25,01:12,Tuesday,DUFFERIN STATION,MUDD,4,11,W,BD,5359
-2021-05-25,06:00,Tuesday,YONGE-UNIVERSITY SUBWA,MUO,0,0,,YU,0
-2021-05-25,06:06,Tuesday,SHEPPARD WEST STATION,TUNOA,5,10,N,YU,5971
-2021-05-25,06:07,Tuesday,MCCOWAN STATION,MRCL,5,10,S,SRT,3022
-2021-05-25,07:05,Tuesday,FINCH STATION,TUSC,0,0,S,YU,5791
-2021-05-25,08:46,Tuesday,VICTORIA PARK STATION,TUMVS,5,9,W,BD,5133
-2021-05-25,08:52,Tuesday,OLD MILL STATION,SUPOL,8,12,E,BD,5140
-2021-05-25,08:53,Tuesday,COXWELL STATION,SUDP,10,14,W,BD,5271
-2021-05-25,09:08,Tuesday,OLD MILL STATION,SUO,0,0,E,BD,5276
-2021-05-25,09:23,Tuesday,ST GEORGE YUS STATION,EUPI,5,10,S,YU,6041
-2021-05-25,10:45,Tuesday,OSSINGTON STATION,SUAP,14,18,W,BD,5136
-2021-05-25,11:09,Tuesday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-05-25,11:16,Tuesday,FINCH STATION,TUNIP,7,12,S,YU,5596
-2021-05-25,11:35,Tuesday,SHEPPARD-YONGE STATION,TUSC,0,0,E,SHP,6171
-2021-05-25,11:45,Tuesday,VAUGHAN MC STATION,TUNIP,5,10,S,YU,5831
-2021-05-25,11:49,Tuesday,KEELE STATION,SUDP,0,0,E,BD,5076
-2021-05-25,11:57,Tuesday,ST GEORGE YUS STATION,PUSSW,8,13,N,YU,5716
-2021-05-25,12:08,Tuesday,UNION STATION,TUO,5,10,N,YU,5771
-2021-05-25,12:17,Tuesday,DONLANDS STATION,EUDO,8,12,W,BD,5120
-2021-05-25,13:23,Tuesday,MCCOWAN STATION,TRNCA,0,0,,SRT,0
-2021-05-25,15:17,Tuesday,YORK MILLS STATION,EUSC,0,0,S,YU,5996
-2021-05-25,15:23,Tuesday,BATHURST STATION,MUIS,0,0,W,BD,0
-2021-05-25,15:33,Tuesday,WELLESLEY STATION,SUDP,0,0,,YU,0
-2021-05-25,16:15,Tuesday,WILSON STATION,SUDP,0,0,,YU,0
-2021-05-25,16:35,Tuesday,JANE STATION,MUPAA,3,7,W,BD,5208
-2021-05-25,16:49,Tuesday,SHERBOURNE STATION,PUMST,0,0,W,BD,0
-2021-05-25,18:09,Tuesday,PAPE STATION,SUUT,0,0,E,BD,5231
-2021-05-25,18:42,Tuesday,YONGE BD STATION,SUDP,0,0,E,BD,5307
-2021-05-25,18:51,Tuesday,DON MILLS STATION,TUO,7,12,E,SHP,6161
-2021-05-25,19:52,Tuesday,CASTLE FRANK STATION,MUIS,0,0,,BD,0
-2021-05-25,20:34,Tuesday,SHERBOURNE STATION,MUPAA,0,0,W,BD,5355
-2021-05-25,20:40,Tuesday,DAVISVILLE STATION,SUDP,11,18,N,YU,5551
-2021-05-25,20:42,Tuesday,BATHURST STATION,SUPOL,3,7,E,BD,5355
-2021-05-25,21:28,Tuesday,NORTH YORK CTR STATION,MUPAA,0,0,N,YU,5816
-2021-05-25,22:00,Tuesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-05-25,22:27,Tuesday,BLOOR STATION,MUIRS,3,10,S,YU,5906
-2021-05-25,23:02,Tuesday,BATHURST STATION,SUUT,3,10,W,BD,5104
-2021-05-25,23:49,Tuesday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-05-25,23:58,Tuesday,WILSON STATION,MUPAA,0,0,N,YU,5681
-2021-05-26,00:18,Wednesday,WILSON STATION,TUO,7,17,S,YU,5876
-2021-05-26,01:31,Wednesday,BLOOR STATION,MUIS,0,0,S,YU,0
-2021-05-26,06:00,Wednesday,TORONTO TRANSIT COMMIS,MUO,0,0,,YU,0
-2021-05-26,06:00,Wednesday,TORONTO TRANSIT COMMIS,MUO,0,0,,SHP,0
-2021-05-26,06:00,Wednesday,TORONTO TRANSIT COMMIS,MRO,0,0,,SRT,0
-2021-05-26,06:00,Wednesday,YONGE- UNIVERSITY SUBW,MUO,0,0,,YU,0
-2021-05-26,06:17,Wednesday,DONLANDS STATION,EUSC,0,0,W,BD,5268
-2021-05-26,06:24,Wednesday,DUNDAS STATION,MUIS,0,0,S,YU,0
-2021-05-26,07:03,Wednesday,EGLINTON STATION,SUSA,0,0,,YU,0
-2021-05-26,07:13,Wednesday,YONGE BD STATION,MUPAA,0,0,W,BD,5140
-2021-05-26,08:07,Wednesday,FINCH STATION,TUSUP,7,11,S,YU,5766
-2021-05-26,10:01,Wednesday,PIONEER VILLAGE STATIO,EUDO,6,11,S,YU,6031
-2021-05-26,11:17,Wednesday,KENNEDY BD STATION,TUNIP,3,7,W,BD,5353
-2021-05-26,11:29,Wednesday,BLOOR STATION,MUIS,0,0,,YU,0
-2021-05-26,13:23,Wednesday,SPADINA BD STATION,SUO,3,7,E,BD,5271
-2021-05-26,14:01,Wednesday,WARDEN STATION,SUUT,6,10,E,BD,5026
-2021-05-26,14:05,Wednesday,BLOOR STATION,MUIS,0,0,,YU,0
-2021-05-26,14:46,Wednesday,FINCH STATION,TUSUP,8,12,S,YU,0
-2021-05-26,14:49,Wednesday,MAIN STREET STATION,EUSC,0,0,W,BD,5268
-2021-05-26,15:05,Wednesday,QUEEN STATION,MUPAA,0,0,N,YU,5921
-2021-05-26,16:04,Wednesday,SPADINA BD STATION,MUIRS,0,0,,BD,0
-2021-05-26,16:36,Wednesday,BLOOR STATION,MUIS,0,0,S,YU,0
-2021-05-26,16:38,Wednesday,ST GEORGE YUS STATION,PUSSW,4,8,N,YU,5386
-2021-05-26,16:53,Wednesday,COLLEGE STATION,MUIS,0,0,N,YU,0
-2021-05-26,16:53,Wednesday,ISLINGTON STATION,MUSAN,3,7,E,BD,5266
-2021-05-26,17:25,Wednesday,PIONEER VILLAGE STATIO,MUATC,5,10,N,YU,5981
-2021-05-26,17:53,Wednesday,SHERBOURNE STATION,MUPAA,0,0,E,BD,5112
-2021-05-26,18:06,Wednesday,SHEPPARD-YONGE STATION,SUDP,0,0,E,SHP,6166
-2021-05-26,18:16,Wednesday,SCARBOROUGH CTR STATIO,MRUIR,0,0,,SRT,0
-2021-05-26,18:29,Wednesday,ROSEDALE STATION,MUATC,7,11,S,YU,5811
-2021-05-26,19:52,Wednesday,BLOOR STATION,MUPAA,0,0,N,YU,5751
-2021-05-26,20:04,Wednesday,DUNDAS STATION,MUIR,4,11,S,YU,5816
-2021-05-26,20:20,Wednesday,YONGE BD STATION,SUDP,5,12,W,BD,5355
-2021-05-26,20:40,Wednesday,YONGE STATION,SUO,0,0,,BD,0
-2021-05-26,21:24,Wednesday,MAIN STREET STATION,MUPAA,0,0,E,BD,5231
-2021-05-26,21:40,Wednesday,FINCH STATION,TUNIP,5,12,S,YU,0
-2021-05-26,21:40,Wednesday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-05-26,22:00,Wednesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-05-26,22:01,Wednesday,KENNEDY SRT STATION,SRO,38,44,S,SRT,3022
-2021-05-26,22:01,Wednesday,KENNEDY BD STATION,SUPOL,38,45,E,BD,5328
-2021-05-26,22:49,Wednesday,BATHURST STATION,MUIS,0,0,,BD,0
-2021-05-26,23:00,Wednesday,KENNEDY BD STATION,PUSSW,7,14,E,BD,5020
-2021-05-27,00:06,Thursday,RUNNYMEDE STATION,MUIS,0,0,E,BD,0
-2021-05-27,00:44,Thursday,BAY STATION,MUIS,0,0,,BD,0
-2021-05-27,01:36,Thursday,VAUGHAN MC STATION,MUIS,0,0,,YU,0
-2021-05-27,01:41,Thursday,KENNEDY BD STATION,SUAE,0,0,,BD,0
-2021-05-27,05:40,Thursday,OSGOODE STATION,MUNCA,0,0,,YU,0
-2021-05-27,05:40,Thursday,ST PATRICK STATION,MUNCA,0,0,,YU,0
-2021-05-27,05:45,Thursday,FINCH STATION,TUNIP,4,8,S,YU,5491
-2021-05-27,06:53,Thursday,YONGE BD STATION,MUPAA,0,0,W,BD,5176
-2021-05-27,07:14,Thursday,SHERBOURNE STATION,MUPAA,0,0,E,BD,5353
-2021-05-27,08:40,Thursday,CHRISTIE STATION,TUMVS,0,0,E,BD,5188
-2021-05-27,09:42,Thursday,KEELE YARD,TUSC,0,0,E,BD,5276
-2021-05-27,10:52,Thursday,DUPONT STATION,SUAP,0,0,,YU,0
-2021-05-27,12:10,Thursday,KENNEDY BD STATION,PUMST,0,0,,BD,0
-2021-05-27,13:08,Thursday,ROYAL YORK STATION,MUPR1,180,186,W,BD,5101
-2021-05-27,13:18,Thursday,SHERBOURNE STATION,SUO,18,22,W,BD,5065
-2021-05-27,13:42,Thursday,ST CLAIR WEST STATION,SUDP,5,8,S,YU,5596
-2021-05-27,14:18,Thursday,QUEEN STATION,SUDP,5,8,N,YU,6046
-2021-05-27,14:45,Thursday,FINCH STATION,TUNIP,3,6,S,YU,5746
-2021-05-27,15:15,Thursday,BLOOR STATION,MUPAA,3,6,N,YU,5946
-2021-05-27,15:19,Thursday,KIPLING STATION,TUMVS,0,0,W,BD,5224
-2021-05-27,15:33,Thursday,QUEEN STATION,MUIRS,0,0,N,YU,5401
-2021-05-27,15:44,Thursday,DUNDAS WEST STATION,MUIS,0,0,E,BD,0
-2021-05-27,15:55,Thursday,ST CLAIR WEST STATION,MUPAA,0,0,N,YU,5386
-2021-05-27,17:11,Thursday,KING STATION,PUMEL,0,0,N,YU,0
-2021-05-27,17:21,Thursday,KENNEDY BD STATION,SUO,0,0,,BD,0
-2021-05-27,17:29,Thursday,DON MILLS STATION,SUO,0,0,,SHP,0
-2021-05-27,18:01,Thursday,BLOOR STATION,MUPAA,4,7,N,YU,5501
-2021-05-27,18:14,Thursday,NORTH YORK CTR STATION,SUDP,0,0,S,YU,0
-2021-05-27,18:24,Thursday,BLOOR STATION,SUUT,6,9,N,YU,5396
-2021-05-27,18:31,Thursday,YORK MILLS STATION,TUMVS,5,8,S,YU,5871
-2021-05-27,20:23,Thursday,SHERBOURNE STATION,MUPAA,4,11,E,BD,5095
-2021-05-27,20:33,Thursday,LESLIE STATION,MUO,0,0,,SHP,0
-2021-05-27,21:05,Thursday,ROYAL YORK STATION,SUO,6,13,E,BD,5112
-2021-05-27,21:07,Thursday,KENNEDY BD STATION,SUO,0,0,W,BD,5286
-2021-05-27,21:16,Thursday,SHEPPARD WEST STATION,MUIS,0,0,,YU,0
-2021-05-27,21:59,Thursday,MCCOWAN STATION,ERDO,4,10,N,SRT,3021
-2021-05-27,22:00,Thursday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-05-27,22:18,Thursday,PAPE STATION,MUIS,0,0,,BD,0
-2021-05-27,22:53,Thursday,OLD MILL STATION,MUD,3,10,E,BD,5112
-2021-05-27,23:12,Thursday,BROADVIEW STATION,SUAE,0,0,W,BD,5087
-2021-05-27,23:15,Thursday,SHEPPARD WEST STATION,MUO,0,0,,YU,0
-2021-05-27,23:28,Thursday,BAYVIEW STATION,MUSC,3,8,E,SHP,6181
-2021-05-27,23:35,Thursday,KIPLING STATION,MUD,4,11,E,BD,5361
-2021-05-28,00:31,Friday,FINCH STATION,MUIS,0,0,,YU,0
-2021-05-28,02:54,Friday,FINCH STATION,SUO,0,0,,YU,0
-2021-05-28,05:27,Friday,ST PATRICK STATION,MUNCA,0,0,,YU,0
-2021-05-28,06:19,Friday,YONGE BD STATION,MUPAA,0,0,W,BD,5140
-2021-05-28,06:40,Friday,ROSEDALE STATION,SUDP,0,0,,YU,0
-2021-05-28,06:48,Friday,SHERBOURNE STATION,MUPAA,0,0,E,BD,5190
-2021-05-28,07:25,Friday,WILSON STATION,TUNIP,3,6,S,YU,5881
-2021-05-28,07:46,Friday,COXWELL STATION,SUDP,4,8,E,BD,5026
-2021-05-28,08:03,Friday,DONLANDS STATION,PUMEL,0,0,,BD,0
-2021-05-28,08:11,Friday,VICTORIA PARK STATION,MUSC,0,0,E,BD,5296
-2021-05-28,08:42,Friday,CHESTER STATION,SUUT,0,0,W,BD,5331
-2021-05-28,09:07,Friday,ISLINGTON STATION,MUO,0,0,E,BD,5275
-2021-05-28,09:17,Friday,YONGE BD STATION,MUI,17,21,E,BD,5026
-2021-05-28,09:50,Friday,MAIN STREET STATION,MUIRS,0,0,,BD,0
-2021-05-28,09:55,Friday,ST GEORGE BD STATION,MUSC,0,0,W,BD,5354
-2021-05-28,10:20,Friday,KENNEDY BD STATION,EUAC,4,8,W,BD,5029
-2021-05-28,10:25,Friday,DAVISVILLE STATION,SUDP,7,12,S,YU,5981
-2021-05-28,10:39,Friday,BAY STATION,MUPAA,0,0,W,BD,5060
-2021-05-28,10:41,Friday,YONGE BD STATION,MUPAA,0,0,E,BD,5182
-2021-05-28,11:05,Friday,SPADINA YUS STATION,MUPAA,5,10,N,YU,5976
-2021-05-28,11:13,Friday,BLOOR STATION,MUPAA,3,6,N,YU,5716
-2021-05-28,11:15,Friday,SHERBOURNE STATION,MUPAA,3,7,E,BD,5026
-2021-05-28,12:44,Friday,UNION STATION,SUAP,0,0,S,YU,0
-2021-05-28,12:48,Friday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,5716
-2021-05-28,12:58,Friday,ST PATRICK STATION,MUATC,8,11,N,YU,5586
-2021-05-28,13:07,Friday,BLOOR STATION,MUPAA,3,6,N,YU,5446
-2021-05-28,13:22,Friday,BLOOR STATION,SUDP,0,0,S,YU,5771
-2021-05-28,13:41,Friday,FINCH STATION,MUSAN,3,6,S,YU,5826
-2021-05-28,13:41,Friday,LANSDOWNE STATION,MUIR,6,10,E,BD,5361
-2021-05-28,13:42,Friday,SPADINA BD STATION,MUIRS,0,0,W,BD,0
-2021-05-28,13:44,Friday,ROYAL YORK STATION,PUEO,0,0,,BD,0
-2021-05-28,13:53,Friday,BLOOR STATION,SUDP,0,0,S,YU,5771
-2021-05-28,14:01,Friday,WILSON STATION,SUO,0,0,S,YU,5401
-2021-05-28,14:10,Friday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,0
-2021-05-28,14:30,Friday,SHEPPARD STATION,MUTO,0,0,N,YU,5426
-2021-05-28,14:33,Friday,KIPLING STATION,MUTO,4,8,E,BD,5328
-2021-05-28,15:28,Friday,ST GEORGE YUS STATION,MUPAA,0,0,S,YU,5771
-2021-05-28,15:56,Friday,KIPLING STATION,TUMVS,0,0,W,BD,5331
-2021-05-28,16:10,Friday,VAUGHAN MC STATION,MUSAN,3,6,N,YU,5812
-2021-05-28,16:40,Friday,ST CLAIR STATION,EUDO,6,9,S,YU,5806
-2021-05-28,16:56,Friday,GREENWOOD STATION,SUAE,16,20,E,BD,5114
-2021-05-28,17:06,Friday,VAUGHAN MC STATION,SUDP,0,0,,YU,0
-2021-05-28,17:09,Friday,DUNDAS STATION,SUDP,0,0,S,YU,5626
-2021-05-28,19:38,Friday,QUEEN STATION,SUDP,4,9,S,YU,5826
-2021-05-28,19:44,Friday,YONGE BD STATION,MUIRS,0,0,,BD,0
-2021-05-28,19:47,Friday,OSGOODE STATION,SUUT,14,19,N,YU,5826
-2021-05-28,19:51,Friday,CHRISTIE STATION,MUD,4,10,W,BD,5065
-2021-05-28,20:10,Friday,OLD MILL STATION,TUOS,3,10,E,BD,5190
-2021-05-28,20:21,Friday,FINCH STATION,MUNCA,0,0,,YU,0
-2021-05-28,21:07,Friday,ISLINGTON STATION,MUPAA,0,0,W,BD,5069
-2021-05-28,22:00,Friday,YONGE/UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-05-28,22:47,Friday,SHERBOURNE STATION,MUD,0,0,W,BD,5135
-2021-05-28,22:54,Friday,SPADINA BD STATION,MUD,0,0,W,BD,5135
-2021-05-28,23:23,Friday,YORK MILLS STATION,MUIS,0,0,,YU,0
-2021-05-28,23:27,Friday,SPADINA YUS STATION,SUDP,7,14,N,YU,5566
-2021-05-29,00:41,Saturday,HIGHWAY 407 STATION,MUATC,9,17,S,YU,5906
-2021-05-29,01:06,Saturday,WARDEN STATION,PUSTS,0,0,W,BD,5180
-2021-05-29,02:04,Saturday,FINCH STATION,MUI,0,0,S,YU,5771
-2021-05-29,05:15,Saturday,KENNEDY BD STATION,MUNCA,0,0,,BD,0
-2021-05-29,06:00,Saturday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU,0
-2021-05-29,09:10,Saturday,CHRISTIE STATION,SUUT,0,0,W,BD,5353
-2021-05-29,09:22,Saturday,KING STATION,MUATC,6,12,S,YU,5956
-2021-05-29,09:53,Saturday,ST GEORGE BD STATION,SUO,3,8,E,BD,5112
-2021-05-29,10:10,Saturday,VICTORIA PARK STATION,MUIRS,0,0,W,BD,5069
-2021-05-29,10:18,Saturday,ST CLAIR WEST STATION,MUIS,0,0,,YU,0
-2021-05-29,10:27,Saturday,SHERBOURNE STATION,MUIS,0,0,W,BD,0
-2021-05-29,13:36,Saturday,MAIN STREET STATION,SUBT,35,39,W,BD,5044
-2021-05-29,14:09,Saturday,EGLINTON STATION,MUATC,4,10,S,YU,5781
-2021-05-29,15:11,Saturday,LESLIE STATION,TUSC,0,0,W,SHP,6146
-2021-05-29,16:10,Saturday,YONGE BD STATION,SUDP,4,8,E,BD,5190
-2021-05-29,17:44,Saturday,MAIN STREET STATION,MUD,5,9,W,BD,5331
-2021-05-29,18:48,Saturday,BATHURST STATION,MUIS,0,0,W,BD,0
-2021-05-29,19:24,Saturday,UNION STATION,PUTDN,7,13,N,YU,5886
-2021-05-29,19:33,Saturday,SHEPPARD WEST STATION,MUIS,0,0,,YU,0
-2021-05-29,19:38,Saturday,YONGE BD STATION,MUPAA,4,8,E,BD,5188
-2021-05-29,20:30,Saturday,HIGH PARK STATION,SUPOL,7,12,E,BD,5026
-2021-05-29,21:59,Saturday,EGLINTON WEST STATION,MUIS,0,0,,YU,0
-2021-05-29,22:00,Saturday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-05-29,23:44,Saturday,DUNDAS STATION,MUIS,0,0,N,YU,0
-2021-05-29,23:49,Saturday,BATHURST STATION,SUSA,10,16,W,BD,5353
-2021-05-30,01:30,Sunday,LESLIE STATION,PUEO,3,8,E,SHP,6161
-2021-05-30,01:41,Sunday,BAY STATION,MUIRS,0,0,,BD,0
-2021-05-30,01:45,Sunday,KENNEDY BD STATION,SUAP,0,0,,BD,0
-2021-05-30,01:47,Sunday,CHRISTIE STATION,MUIR,9,13,W,BD,5331
-2021-05-30,01:59,Sunday,OSSINGTON STATION,MUIR,4,8,W,BD,5331
-2021-05-30,07:39,Sunday,YONGE-UNIVERSITY SUBWA,MUO,0,0,,YU,0
-2021-05-30,09:54,Sunday,MCCOWAN STATION,ERTC,12,18,N,SRT,3027
-2021-05-30,11:14,Sunday,ST ANDREW STATION,SUAP,4,10,S,YU,5656
-2021-05-30,11:19,Sunday,ST ANDREW STATION,SUDP,4,10,N,YU,5721
-2021-05-30,13:20,Sunday,LAWRENCE WEST STATION,EUDO,10,16,N,YU,5836
-2021-05-30,13:45,Sunday,KENNEDY SRT STATION,PRSA,38,43,N,SRT,3015
-2021-05-30,13:56,Sunday,YONGE BD STATION,MUIS,0,0,,BD,0
-2021-05-30,14:08,Sunday,WILSON STATION,PUSSW,4,9,S,YU,5866
-2021-05-30,14:41,Sunday,OLD MILL STATION,MUFS,9,13,E,BD,5076
-2021-05-30,14:50,Sunday,OLD MILL STATION,SUAP,0,0,E,BD,5076
-2021-05-30,15:36,Sunday,BROADVIEW STATION,PUMEL,0,0,,BD,0
-2021-05-30,15:49,Sunday,BATHURST STATION,SUO,5,9,W,BD,5170
-2021-05-30,16:26,Sunday,LAWRENCE WEST STATION,SUO,3,8,N,YU,5791
-2021-05-30,17:29,Sunday,CHRISTIE STATION,MUIRS,0,0,,BD,0
-2021-05-30,19:44,Sunday,OLD MILL STATION,MUPLB,70,75,E,BD,5058
-2021-05-30,22:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-05-30,22:01,Sunday,RUNNYMEDE STATION,MUIR,13,18,E,BD,5275
-2021-05-30,23:32,Sunday,SHERBOURNE STATION,MUIS,0,0,E,BD,0
-2021-05-31,00:06,Monday,ROYAL YORK STATION,SUDP,3,10,W,BD,5301
-2021-05-31,01:21,Monday,CHRISTIE STATION,MUIS,0,0,,BD,0
-2021-05-31,02:14,Monday,DUFFERIN STATION,SUDP,0,0,,BD,0
-2021-05-31,02:17,Monday,VICTORIA PARK STATION,MUIS,0,0,,BD,0
-2021-05-31,05:52,Monday,LAWRENCE STATION,EUTL,5,10,N,YU,5546
-2021-05-31,05:54,Monday,GREENWOOD STATION,MUO,4,9,E,BD,5213
-2021-05-31,06:23,Monday,SHERBOURNE STATION,MUPAA,0,0,E,BD,5004
-2021-05-31,06:40,Monday,KENNEDY SRT STATION,ERDO,0,0,N,SRT,3027
-2021-05-31,06:43,Monday,KENNEDY SRT STATION,MRO,7,12,N,SRT,3015
-2021-05-31,06:57,Monday,FINCH STATION,MUSC,0,0,S,YU,5971
-2021-05-31,07:07,Monday,DUFFERIN STATION,SUDP,3,7,E,BD,5367
-2021-05-31,07:14,Monday,MAIN STREET STATION,MUTO,4,8,E,BD,5245
-2021-05-31,07:57,Monday,YONGE BD STATION,MUPAA,3,7,W,BD,5176
-2021-05-31,08:09,Monday,YONGE BD STATION,MUPAA,3,7,W,BD,5035
-2021-05-31,08:11,Monday,SHERBOURNE STATION,MUPAA,3,7,E,BD,5246
-2021-05-31,08:37,Monday,QUEEN STATION,EUDO,3,6,N,YU,6031
-2021-05-31,08:51,Monday,KENNEDY BD STATION,PUSNT,3,7,W,BD,5051
-2021-05-31,09:12,Monday,BATHURST STATION,MUPAA,0,0,W,BD,5251
-2021-05-31,09:18,Monday,YONGE BD STATION,MUPAA,3,7,E,BD,5055
-2021-05-31,09:19,Monday,SPADINA BD STATION,TUO,4,8,W,BD,5051
-2021-05-31,09:28,Monday,SHERBOURNE STATION,MUPAA,3,7,E,BD,5110
-2021-05-31,09:32,Monday,YONGE BD STATION,MUPAA,0,0,W,BD,5180
-2021-05-31,09:36,Monday,WELLESLEY STATION,MUPAA,0,0,S,YU,5691
-2021-05-31,09:37,Monday,CASTLE FRANK STATION,MUIS,0,0,,BD,0
-2021-05-31,10:14,Monday,SPADINA BD STATION,MUPAA,0,0,E,BD,5361
-2021-05-31,10:56,Monday,SHEPPARD-YONGE STATION,MUPAA,0,0,E,SHP,6161
-2021-05-31,10:57,Monday,UNION STATION,SUDP,3,6,N,YU,5876
-2021-05-31,11:07,Monday,ROSEDALE STATION,MUSC,3,6,N,YU,5436
-2021-05-31,12:06,Monday,LAWRENCE STATION,EUSC,0,0,N,YU,5911
-2021-05-31,12:54,Monday,WELLESLEY STATION,MUIS,0,0,N,YU,0
-2021-05-31,13:32,Monday,KIPLING STATION,SUUT,3,7,W,BD,5035
-2021-05-31,13:41,Monday,DUNDAS WEST STATION,MUIRS,0,0,,BD,0
-2021-05-31,14:01,Monday,MAIN STREET STATION,SUAP,0,0,E,BD,5367
-2021-05-31,14:34,Monday,FINCH STATION,MUTO,3,6,S,YU,5791
-2021-05-31,14:57,Monday,DON MILLS STATION,SUAE,0,0,,SHP,0
-2021-05-31,15:11,Monday,ROSEDALE STATION,MUSC,0,0,N,YU,5436
-2021-05-31,15:22,Monday,YONGE BD STATION,MUPAA,0,0,W,BD,5205
-2021-05-31,16:33,Monday,DONLANDS STATION,SUDP,17,21,W,BD,5166
-2021-05-31,17:01,Monday,DAVISVILLE STATION,MUIR,3,6,N,YU,5886
-2021-05-31,18:05,Monday,SHERBOURNE STATION,MUPAA,0,0,E,BD,5161
-2021-05-31,18:25,Monday,VICTORIA PARK STATION,SUROB,0,0,,BD,0
-2021-05-31,18:42,Monday,ROYAL YORK STATION,MUIR,0,0,W,BD,5186
-2021-05-31,18:52,Monday,VICTORIA PARK STATION,MUIRS,0,0,,BD,0
-2021-05-31,19:21,Monday,KING STATION,MUPAA,0,0,S,YU,5676
-2021-05-31,19:54,Monday,GREENWOOD STATION,PUTDN,11,18,W,BD,5186
-2021-05-31,20:25,Monday,EGLINTON WEST STATION,MUPAA,0,0,S,YU,5601
-2021-05-31,20:38,Monday,EGLINTON WEST STATION,SUUT,9,14,N,YU,5971
-2021-05-31,20:46,Monday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-05-31,21:23,Monday,VICTORIA PARK STATION,SUDP,3,10,W,BD,5178
-2021-05-31,21:28,Monday,SHEPPARD WEST STATION,SUSA,18,25,S,YU,5976
-2021-05-31,21:31,Monday,CHRISTIE STATION,MUIS,0,0,E,BD,0
-2021-05-31,22:00,Monday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-05-31,22:32,Monday,HIGH PARK STATION,MUI,13,20,E,BD,5246
-2021-06-01,05:35,Tuesday,FINCH STATION,TUSC,0,0,S,YU,5896
-2021-06-01,05:40,Tuesday,HIGH PARK STATION,MUPLB,41,48,E,BD,5058
-2021-06-01,05:59,Tuesday,WILSON STATION,TUNIP,3,6,S,YU,6001
-2021-06-01,06:04,Tuesday,JANE STATION,SUDP,0,0,E,BD,5004
-2021-06-01,06:52,Tuesday,KIPLING STATION,TUMVS,0,0,W,BD,5161
-2021-06-01,07:16,Tuesday,DUFFERIN STATION,SUDP,4,8,W,BD,5040
-2021-06-01,07:37,Tuesday,ROSEDALE STATION,MUSC,0,0,N,YU,6011
-2021-06-01,07:37,Tuesday,KIPLING STATION,SUDP,4,8,E,BD,5040
-2021-06-01,08:07,Tuesday,SPADINA BD STATION,PUMEL,0,0,,BD,0
-2021-06-01,08:40,Tuesday,COLLEGE STATION,MUPAA,0,0,N,YU,6051
-2021-06-01,09:04,Tuesday,COLLEGE STATION,MUIS,0,0,,YU,0
-2021-06-01,09:16,Tuesday,SHERBOURNE STATION,MUPAA,0,0,E,BD,5171
-2021-06-01,09:32,Tuesday,KIPLING STATION,TUMVS,0,0,W,BD,5325
-2021-06-01,09:53,Tuesday,VICTORIA PARK STATION,SUO,0,0,,BD,0
-2021-06-01,10:25,Tuesday,YONGE BD STATION,SUDP,4,8,E,BD,5199
-2021-06-01,10:37,Tuesday,ROSEDALE STATION,SUUT,25,28,N,YU,5391
-2021-06-01,10:37,Tuesday,EGLINTON STATION,MUSC,0,0,E,YU,5836
-2021-06-01,11:12,Tuesday,BLOOR STATION,MUPAA,3,6,N,YU,5986
-2021-06-01,11:18,Tuesday,SPADINA BD STATION,MUPAA,0,0,W,BD,5225
-2021-06-01,11:33,Tuesday,RUNNYMEDE STATION,SUBT,15,19,W,BD,5226
-2021-06-01,11:47,Tuesday,HIGH PARK STATION,SUDP,0,0,,BD,0
-2021-06-01,12:28,Tuesday,ST CLAIR WEST STATION,MUIS,0,0,,YU,0
-2021-06-01,12:40,Tuesday,PAPE STATION,SUO,0,0,E,BD,5217
-2021-06-01,13:23,Tuesday,FINCH STATION,TUMVS,0,0,N,YU,5486
-2021-06-01,13:53,Tuesday,LAWRENCE STATION,SUUT,7,10,S,YU,5421
-2021-06-01,14:07,Tuesday,VAUGHAN MC STATION,MUPLC,0,0,,YU,0
-2021-06-01,14:12,Tuesday,KIPLING STATION,TUMVS,0,0,W,BD,5148
-2021-06-01,14:15,Tuesday,YONGE-UNIVERSITY SUBWA,MUO,0,0,,YU,0
-2021-06-01,14:19,Tuesday,COLLEGE STATION,SUDP,0,0,N,YU,0
-2021-06-01,15:00,Tuesday,DONLANDS STATION,MUIRS,0,0,W,BD,5161
-2021-06-01,15:12,Tuesday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,5396
-2021-06-01,16:11,Tuesday,QUEEN STATION,PUSAC,3,6,S,YU,5616
-2021-06-01,16:15,Tuesday,ST CLAIR STATION,MUDD,3,6,S,YU,5836
-2021-06-01,16:26,Tuesday,ST PATRICK STATION,SUDP,3,6,N,YU,5616
-2021-06-01,16:34,Tuesday,YONGE BD STATION,SUDP,6,10,E,BD,5246
-2021-06-01,16:54,Tuesday,DOWNSVIEW PARK STATION,MUIRS,0,0,,YU,0
-2021-06-01,17:47,Tuesday,LAWRENCE WEST STATION,MUIS,0,0,,YU,0
-2021-06-01,17:56,Tuesday,BLOOR STATION,MUPAA,0,0,S,YU,5776
-2021-06-01,18:46,Tuesday,KIPLING STATION,TUMVS,0,0,W,BD,5161
-2021-06-01,19:30,Tuesday,VICTORIA PARK STATION,MUNCA,0,0,,BD,0
-2021-06-01,20:04,Tuesday,ST GEORGE BD STATION,MUIE,0,0,,BD,0
-2021-06-01,20:43,Tuesday,BLOOR STATION,MUPAA,0,0,N,YU,5626
-2021-06-01,21:57,Tuesday,MAIN STREET STATION,MUIS,0,0,,BD,0
-2021-06-01,22:00,Tuesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-06-01,22:32,Tuesday,LANSDOWNE STATION,MUIS,0,0,,BD,0
-2021-06-01,00:00,Tuesday,PIONEER VILLAGE TO VAU,MUO,0,0,,YU,0
-2021-06-01,16:53,Tuesday,SHEPPARD-YONGE STATION,MUPAA,0,0,E,SHP,6171
-2021-06-02,13:08,Wednesday,ELLESMERE STATION,ERTC,5,10,E,SRT,3007
-2021-06-02,03:24,Wednesday,KIPLING STATION,SUUT,0,0,,BD,0
-2021-06-02,03:37,Wednesday,FINCH STATION,SUO,0,0,,YU,0
-2021-06-02,17:10,Wednesday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-06-02,07:44,Wednesday,LANSDOWNE STATION,SUDP,3,7,E,BD,5280
-2021-06-02,08:28,Wednesday,HIGHWAY 407 STATION,MUPAA,3,6,S,YU,5851
-2021-06-02,09:43,Wednesday,EGLINTON STATION,SUDP,4,7,S,YU,6051
-2021-06-02,11:53,Wednesday,WELLESLEY STATION,SUO,0,0,N,YU,5406
-2021-06-02,12:15,Wednesday,COXWELL STATION,MUSAN,3,7,E,BD,5132
-2021-06-02,12:57,Wednesday,BROADVIEW STATION,MUPAA,0,0,E,BD,5280
-2021-06-02,13:00,Wednesday,DUFFERIN STATION,MUDD,4,8,W,BD,5040
-2021-06-02,13:40,Wednesday,FINCH STATION,TUSC,0,0,S,YU,5676
-2021-06-02,13:51,Wednesday,LANSDOWNE STATION,MUPAA,0,0,E,BD,5286
-2021-06-02,13:57,Wednesday,KIPLING STATION,TUMVS,0,0,W,BD,5055
-2021-06-02,14:09,Wednesday,SHEPPARD-YONGE STATION,PUMEL,0,0,,YU,0
-2021-06-02,14:13,Wednesday,FINCH WEST STATION,MUIS,0,0,,YU,0
-2021-06-02,14:53,Wednesday,CHRISTIE STATION,MUPAA,0,0,W,BD,5169
-2021-06-02,15:02,Wednesday,SHERBOURNE STATION,MUPAA,0,0,E,BD,5208
-2021-06-02,16:00,Wednesday,BATHURST STATION,MUPLC,0,0,,BD,0
-2021-06-02,16:05,Wednesday,ROYAL YORK STATION,PUMEL,0,0,,BD,0
-2021-06-02,17:08,Wednesday,VICTORIA PARK STATION,MUTD,0,0,W,BD,5148
-2021-06-02,17:16,Wednesday,RUNNYMEDE STATION,PUMEL,0,0,,BD,0
-2021-06-02,17:37,Wednesday,BROADVIEW STATION,MUIRS,0,0,W,BD,0
-2021-06-02,20:18,Wednesday,FINCH STATION,TUO,5,10,S,YU,6066
-2021-06-02,20:51,Wednesday,VAUGHAN MC STATION,TUNIP,3,10,S,YU,6071
-2021-06-02,21:21,Wednesday,EGLINTON WEST STATION,SUDP,0,0,N,YU,5886
-2021-06-02,21:44,Wednesday,SHERBOURNE STATION,MUIS,0,0,W,BD,5112
-2021-06-02,21:48,Wednesday,OSSINGTON STATION,MUIS,0,0,E,BD,5196
-2021-06-02,22:00,Wednesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-06-02,22:28,Wednesday,WARDEN STATION,MUIRS,0,0,,,0
-2021-06-02,22:31,Wednesday,BATHURST STATION,MUIS,0,0,E,BD,0
-2021-06-02,23:00,Wednesday,FINCH STATION TO EGLIN,MUO,0,0,,YU,0
-2021-06-02,00:53,Wednesday,OSGOODE STATION,SUUT,7,14,N,YU,6036
-2021-06-02,00:56,Wednesday,BAY STATION,SUO,0,0,,,0
-2021-06-02,01:09,Wednesday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-06-03,06:29,Thursday,ELLESMERE STATION,ERDO,3,9,N,SRT,3019
-2021-06-03,03:16,Thursday,QUEEN'S PARK STATION,PUMO,0,0,,YU,0
-2021-06-03,07:00,Thursday,KENNEDY SRT STATION,ERTC,3,9,N,SRT,3027
-2021-06-03,03:48,Thursday,KIPLING STATION,SUO,0,0,,BD,0
-2021-06-03,05:55,Thursday,KEELE STATION,EUVA,5,10,W,BD,5331
-2021-06-03,08:06,Thursday,MCCOWAN STATION,ERTC,6,12,S,SRT,3002
-2021-06-03,08:37,Thursday,MCCOWAN STATION,ERCD,5,11,S,SRT,3014
-2021-06-03,06:32,Thursday,SHEPPARD WEST STATION,EUBK,3,6,S,YU,5921
-2021-06-03,18:31,Thursday,KENNEDY SRT STATION,ERCD,5,10,N,SRT,3009
-2021-06-03,06:44,Thursday,LAWRENCE WEST STATION,EUCD,3,6,S,YU,5921
-2021-06-03,07:41,Thursday,ROSEDALE STATION,MUATC,5,8,S,YU,5386
-2021-06-03,08:01,Thursday,SHEPPARD STATION,MUSC,3,6,S,YU,5876
-2021-06-03,08:19,Thursday,GREENWOOD STATION,SUAE,0,0,W,BD,5148
-2021-06-03,08:29,Thursday,ISLINGTON STATION,PUTIJ,0,0,E,BD,5196
-2021-06-03,08:39,Thursday,ISLINGTON STATION,PUSTC,3,7,E,BD,5196
-2021-06-03,10:03,Thursday,FINCH STATION,MUSC,3,6,S,YU,5386
-2021-06-03,10:53,Thursday,SUMMERHILL STATION,MUSC,0,0,N,YU,5841
-2021-06-03,11:06,Thursday,VAUGHAN MC STATION,TUS,6,9,S,YU,5626
-2021-06-03,11:14,Thursday,CHRISTIE STATION,EUNT,5,9,W,BD,5361
-2021-06-03,11:23,Thursday,KILPING STATION,SUDP,0,0,,BD,7977
-2021-06-03,11:25,Thursday,ISLINGTON STATION,PUSTC,8,12,E,BD,5002
-2021-06-03,11:35,Thursday,SUMMERHILL STATION,EUSC,3,6,N,YU,5836
-2021-06-03,11:41,Thursday,KIPLING STATION,TUO,3,7,E,BD,5279
-2021-06-03,11:50,Thursday,SPADINA BD STATION,MUDD,4,8,E,BD,5253
-2021-06-03,11:58,Thursday,WILSON YARD,PUTO,8,15,S,YU,5851
-2021-06-03,12:11,Thursday,SHERBOURNE STATION,MUPAA,0,0,W,BD,5247
-2021-06-03,12:43,Thursday,LANSDOWNE STATION,SUDP,20,24,E,BD,5240
-2021-06-03,13:19,Thursday,WELLESLEY STATION,MUPAA,3,6,S,YU,5676
-2021-06-03,13:42,Thursday,FINCH STATION,MUNOA,3,6,S,YU,5796
-2021-06-03,14:36,Thursday,MAIN STREET STATION,MUSC,0,0,W,BD,5312
-2021-06-03,15:20,Thursday,SPADINA BD STATION,MUIRS,0,0,W,BD,5211
-2021-06-03,15:31,Thursday,SHERBOURNE STATION,SUDP,0,0,,BD,0
-2021-06-03,16:14,Thursday,ROSEDALE STATION,EUDO,8,11,N,YU,5651
-2021-06-03,16:51,Thursday,SHERBOURNE STATION,MUPAA,0,0,W,BD,5211
-2021-06-03,17:12,Thursday,KENNEDY BD STATION,MUPAA,0,0,,BD,5280
-2021-06-03,17:29,Thursday,YONGE BD STATION,PUMST,0,0,,BD,0
-2021-06-03,18:17,Thursday,GREENWOOD STATION,MUD,6,10,E,BD,5269
-2021-06-03,19:08,Thursday,ST CLAIR STATION,EUNT,3,6,N,YU,5466
-2021-06-03,19:14,Thursday,YORK MILLS STATION,SUAE,0,0,N,YU,0
-2021-06-03,19:29,Thursday,BATHURST STATION,MUIS,0,0,,BD,0
-2021-06-03,20:04,Thursday,KENNEDY BD STATION,EUBO,5,12,W,BD,5086
-2021-06-03,21:24,Thursday,SHERBOURNE STATION,MUPAA,5,12,W,BD,5203
-2021-06-03,22:00,Thursday,WARDEN STATION,SUAP,0,0,W,BD,5245
-2021-06-03,22:00,Thursday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-06-03,22:12,Thursday,SUMMERHILL STATION,MUIS,0,0,N,YU,5931
-2021-06-03,22:23,Thursday,DUNDAS STATION,SUAE,0,0,N,YU,0
-2021-06-03,23:00,Thursday,FINCH STATION TO EGLIN,MUO,0,0,,YU,0
-2021-06-03,23:42,Thursday,SPADINA YUS STATION,SUAP,0,0,N,YU,0
-2021-06-03,23:51,Thursday,COLLEGE STATION,MUPAA,0,0,N,YU,5681
-2021-06-03,00:00,Thursday,VMC STATION TO PIONEER,MUO,0,0,,YU,0
-2021-06-03,00:34,Thursday,DUNDAS WEST STATION,SUPOL,0,0,E,BD,5143
-2021-06-04,13:35,Friday,SRT LINE,MRWEA,0,0,,SRT,0
-2021-06-04,05:40,Friday,WILSON STATION,PUMEL,0,0,,YU,0
-2021-06-04,06:06,Friday,MAIN STREET STATION,MUSC,0,0,W,BD,5219
-2021-06-04,06:14,Friday,SHEPPARD WEST STATION,MUTO,4,8,N,YU,5936
-2021-06-04,06:24,Friday,BLOOR STATION,TUCC,0,0,N,YU,5396
-2021-06-04,08:21,Friday,FINCH STATION,MUSC,0,0,S,YU,5726
-2021-06-04,08:23,Friday,SUMMERHILL STATION,MUSC,0,0,N,YU,5836
-2021-06-04,08:39,Friday,VICTORIA PARK STATION,MUIR,32,36,W,BD,5260
-2021-06-04,08:54,Friday,COLLEGE STATION,MUIS,0,0,N,YU,0
-2021-06-04,09:02,Friday,WARDEN STATION,TUMVS,0,0,W,BD,5226
-2021-06-04,10:33,Friday,ROSEDALE STATION,TUMVS,4,7,S,YU,5436
-2021-06-04,11:35,Friday,YORK MILLS STATION,PUMEL,0,0,,YU,0
-2021-06-04,11:51,Friday,ROYAL YORK STATION,MUIS,0,0,,BD,0
-2021-06-04,11:59,Friday,PAPE STATION,SUPOL,4,8,E,BD,5040
-2021-06-04,12:49,Friday,FINCH STATION,MUSC,0,0,S,YU,5436
-2021-06-04,13:14,Friday,ST CLAIR STATION,MUO,9,12,S,YU,5451
-2021-06-04,13:17,Friday,ISLINGTON STATION,PUSTS,9,13,E,BD,5040
-2021-06-04,14:00,Friday,YORK MILLS STATION,PUMEL,0,0,,YU,0
-2021-06-04,14:06,Friday,DONLANDS STATION,MUIS,0,0,,BD,0
-2021-06-04,14:28,Friday,KENNEDY BD STATION,EUDO,4,8,W,BD,5246
-2021-06-04,14:28,Friday,ROYAL YORK STATION,TUSC,0,0,E,BD,5333
-2021-06-04,14:35,Friday,PAPE STATION,SUPOL,4,8,E,BD,5223
-2021-06-04,14:48,Friday,ISLINGTON STATION,PUSO,5,9,E,BD,5044
-2021-06-04,14:50,Friday,ST GEORGE YUS STATION,SUDP,3,6,S,YU,5591
-2021-06-04,14:55,Friday,BLOOR STATION,SUDP,0,0,N,YU,5786
-2021-06-04,15:15,Friday,COXWELL STATION,SUAE,9,13,W,BD,5262
-2021-06-04,16:00,Friday,ST GEORGE BD STATION,PUMST,0,0,W,BD,0
-2021-06-04,16:11,Friday,ISLINGTON STATION,TUSC,0,0,E,BD,5333
-2021-06-04,16:15,Friday,GLENCAIRN STATION,SUAP,0,0,N,YU,5772
-2021-06-04,16:20,Friday,OSSINGTON STATION,MUI,16,20,W,BD,5211
-2021-06-04,16:22,Friday,WILSON CARHOUSE,PUMEL,0,0,,YU,0
-2021-06-04,16:33,Friday,SPADINA YUS STATION,SUSA,0,0,,YU,0
-2021-06-04,16:54,Friday,DAVISVILLE BUILD-UP,MUIR,3,6,S,YU,5841
-2021-06-04,17:30,Friday,EGLINTON STATION,EUSC,0,0,S,YU,5466
-2021-06-04,17:54,Friday,ROYAL YORK STATION,TUSC,0,0,E,BD,5333
-2021-06-04,17:56,Friday,GLENCAIRN STATION,SUDP,0,0,N,YU,5906
-2021-06-04,18:32,Friday,ST GEORGE BD STATION,MUIS,0,0,,BD,0
-2021-06-04,19:08,Friday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-06-04,19:31,Friday,KENNEDY BD STATION,TUO,7,14,E,BD,5313
-2021-06-04,20:10,Friday,OLD MILL STATION,MUPAA,3,10,E,BD,5206
-2021-06-04,20:54,Friday,UNION STATION,MUIS,0,0,,YU,0
-2021-06-04,22:00,Friday,KENNEDY BD STATION,TUNIP,7,14,W,BD,5152
-2021-06-04,22:00,Friday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-06-04,22:07,Friday,DUFFERIN STATION,SUAP,0,0,,BD,0
-2021-06-04,00:03,Friday,BROADVIEW STATION,SUDP,3,10,E,BD,5305
-2021-06-04,01:37,Friday,VAUGHAN MC STATION,MUIS,0,0,S,YU,5831
-2021-06-05,02:07,Saturday,FINCH STATION,MUIS,0,0,,YU,0
-2021-06-05,09:12,Saturday,SCARBOROUGH RAPID TRA,MRWEA,0,0,,SRT,0
-2021-06-05,02:10,Saturday,KIPLING STATION,SUDP,0,0,,BD,5029
-2021-06-05,05:55,Saturday,UNION STATION,PUSAC,14,0,N,YU,5381
-2021-06-05,05:57,Saturday,ST. PATRICK STATION,MUATC,8,0,S,YU,5886
-2021-06-05,06:23,Saturday,KIPLING STATION,EUNT,5,10,E,BD,5175
-2021-06-05,06:34,Saturday,ROSEDALE STATION,MUSC,0,0,N,YU,5976
-2021-06-05,07:35,Saturday,GLENCAIRN STATION,PUSAC,6,12,N,YU,5881
-2021-06-05,07:52,Saturday,COXWELL STATION,PUTIJ,3,8,E,BD,5262
-2021-06-05,08:13,Saturday,JANE STATION,MUPAA,0,0,W,BD,5312
-2021-06-05,10:17,Saturday,SHERBOURNE STATION,MUPAA,0,0,E,BD,5073
-2021-06-05,10:26,Saturday,ST GEORGE BD STATION,TUCC,3,8,E,BD,5026
-2021-06-05,10:47,Saturday,RUNNYMEDE STATION,MUDD,3,8,E,BD,5325
-2021-06-05,10:58,Saturday,ST CLAIR STATION,SUDP,0,0,,YU,0
-2021-06-05,11:13,Saturday,ROSEDALE STATION,MUATC,6,10,S,YU,5461
-2021-06-05,11:17,Saturday,VICTORIA PARK STATION,MUIS,0,0,W,BD,5084
-2021-06-05,11:28,Saturday,ROSEDALE STATION,MUATC,3,7,S,YU,5871
-2021-06-05,12:03,Saturday,ROSEDALE STATION,SUDP,3,7,S,YU,5751
-2021-06-05,12:14,Saturday,OSSINGTON STATION,EUNT,7,12,E,BD,5269
-2021-06-05,12:48,Saturday,BLOOR STATION,MUPAA,0,0,N,YU,5736
-2021-06-05,13:39,Saturday,EGLINTON STATION,MUPAA,0,0,S,YU,5626
-2021-06-05,13:40,Saturday,VICTORIA PARK STATION,MUIS,0,0,,BD,0
-2021-06-05,13:50,Saturday,FINCH STATION,MUO,5,9,S,YU,5871
-2021-06-05,14:42,Saturday,FINCH STATION,MUPAA,0,0,S,YU,6021
-2021-06-05,16:10,Saturday,BLOOR STATION,MUPAA,0,0,S,YU,5566
-2021-06-05,16:25,Saturday,HIGH PARK STATION,SUDP,0,0,E,BD,5370
-2021-06-05,16:37,Saturday,SHERBOURNE STATION,MUPAA,0,0,E,BD,5262
-2021-06-05,16:53,Saturday,ST CLAIR STATION,SUO,29,33,S,YU,5686
-2021-06-05,17:05,Saturday,RUNNYMEDE STATION,SUO,9,14,W,BD,5169
-2021-06-05,17:47,Saturday,QUEEN STATION,MUIS,0,0,,YU,0
-2021-06-05,18:02,Saturday,COLLEGE STATION,SUDP,0,0,S,YU,5841
-2021-06-05,18:23,Saturday,HIGH PARK STATION,SUEAS,18,22,E,BD,5053
-2021-06-05,19:03,Saturday,WARDEN STATION,SUUT,0,0,E,BD,5062
-2021-06-05,19:10,Saturday,DUNDAS STATION,SUDP,8,13,N,YU,5651
-2021-06-05,19:25,Saturday,VAUGHAN MC STATION,TUNIP,5,10,S,YU,6031
-2021-06-05,19:54,Saturday,HIGH PARK STATION,PUMEL,0,0,,BD,0
-2021-06-05,20:05,Saturday,ST GEORGE YUS STATION,SUDP,3,8,N,YU,5906
-2021-06-05,20:18,Saturday,DAVISVILLE CARHOUSE,MUO,0,0,,YU,0
-2021-06-05,22:00,Saturday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-06-05,22:54,Saturday,GREENWOOD STATION,MUD,8,14,E,BD,5175
-2021-06-05,23:29,Saturday,BATHURST STATION,SUDP,3,9,W,BD,5213
-2021-06-05,23:34,Saturday,GLENCAIRN STATION,MUSAN,7,14,N,YU,5686
-2021-06-05,23:43,Saturday,UNION STATION,SUDP,0,0,,YU,0
-2021-06-05,23:56,Saturday,CHESTER STATION,TUMVS,0,0,E,BD,5189
-2021-06-05,00:15,Saturday,FINCH STATION,SUEAS,8,15,N,YU,5381
-2021-06-05,00:42,Saturday,ST CLAIR WEST STATION,PUMEL,0,0,,YU,0
-2021-06-05,11:11,Saturday,LESLIE STATION (LEAVIN,MUPR1,111,116,W,SHP,6176
-2021-06-05,13:05,Saturday,DON MILLS STATION,MUSC,0,0,W,SHP,6141
-2021-06-05,13:27,Saturday,SHEPPARD-YONGE STATION,MUSC,0,0,E,SHP,6181
-2021-06-05,20:01,Saturday,SHEPPARD-YONGE STATION,TUSC,0,0,W,SHP,6196
-2021-06-06,03:15,Sunday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-06-06,09:07,Sunday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-06-06,06:22,Sunday,SPADINA BD STATION,PUMEL,0,0,,BD,0
-2021-06-06,08:00,Sunday,BLOOR DANFORTH SUBWAY,MUO,0,0,,BD,0
-2021-06-06,08:54,Sunday,SHERBOURNE STATION,MUPAA,0,0,E,BD,5175
-2021-06-06,09:38,Sunday,MAIN STREET STATION,MUD,0,0,W,BD,5266
-2021-06-06,09:55,Sunday,QUEEN STATION,EUDO,5,10,N,YU,6031
-2021-06-06,10:49,Sunday,KENNEDY BD STATION,EUBK,4,8,E,BD,5109
-2021-06-06,11:11,Sunday,ST CLAIR STATION,MUIRS,0,0,,YU,0
-2021-06-06,12:22,Sunday,EGLINTON STATION,TUO,5,10,N,YU,5406
-2021-06-06,12:48,Sunday,CASTLE FRANK STATION,SUDP,0,0,W,BD,5173
-2021-06-06,12:54,Sunday,YONGE BD STATION,SUO,0,0,,BD,0
-2021-06-06,13:44,Sunday,KENNEDY BD STATION,MUTO,5,9,E,BD,5226
-2021-06-06,13:53,Sunday,SHEPPARD STATION,MUPAA,0,0,N,YU,6061
-2021-06-06,14:40,Sunday,ST PATRICK STATION,MUPAA,0,0,N,YU,5816
-2021-06-06,14:48,Sunday,VICTORIA PARK STATION,MUIS,0,0,W,BD,0
-2021-06-06,15:06,Sunday,VAUGHAN MC STATION,MUIS,0,0,,YU,0
-2021-06-06,15:30,Sunday,CASTLE FRANK STATION,MUPAA,0,0,E,BD,5193
-2021-06-06,15:34,Sunday,BATHURST STATION,EUME,7,11,E,BD,5066
-2021-06-06,15:57,Sunday,BLOOR STATION,SUDP,3,8,N,YU,5426
-2021-06-06,16:18,Sunday,KEELE STATION,MUSC,0,0,W,BD,5150
-2021-06-06,16:58,Sunday,WELLESLEY STATION,MUPAA,0,0,N,YU,5766
-2021-06-06,17:22,Sunday,GREENWOOD STATION,MUPR1,97,101,W,BD,5171
-2021-06-06,18:25,Sunday,KIPLING STATION,MUTO,5,9,E,BD,5073
-2021-06-06,18:29,Sunday,KIPLING STATION,MUPAA,0,0,E,BD,5066
-2021-06-06,18:40,Sunday,OSSINGTON STATION,SUAP,0,0,,BD,0
-2021-06-06,18:51,Sunday,KENNEDY BD STATION,TUNIP,5,10,E,BD,5029
-2021-06-06,19:37,Sunday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-06-06,20:10,Sunday,YONGE BD STATION,SUO,4,8,E,BD,5201
-2021-06-06,21:01,Sunday,GREENWOOD YARD,SUG,0,0,,BD,0
-2021-06-06,22:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-06-06,22:43,Sunday,LAWRENCE STATION,MUSC,0,0,N,YU,5756
-2021-06-06,00:45,Sunday,BLOOR STATION,SUDP,3,10,N,YU,5766
-2021-06-06,09:07,Sunday,DON MILLS STATION,TUMVS,5,11,E,SHP,6146
-2021-06-06,23:01,Sunday,BAYVIEW STATION,SUO,0,0,,SHP,0
-2021-06-07,06:29,Monday,FINCH STATION,MUSC,0,0,S,YU,5556
-2021-06-07,09:20,Monday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-06-07,13:07,Monday,LAWRENCE EAST STATION,ERAC,5,10,S,SRT,3008
-2021-06-07,06:30,Monday,ROSEDALE STATION,MUATC,5,8,S,YU,5516
-2021-06-07,23:24,Monday,LAWRENCE EAST STATION,ERDO,3,9,S,SRT,3016
-2021-06-07,08:24,Monday,YONGE BD STATION,MUPAA,0,0,W,BD,5370
-2021-06-07,09:14,Monday,ST PATRICK STATION,SUDP,3,6,N,YU,5651
-2021-06-07,10:38,Monday,EGLINTON STATION,SUO,0,0,N,YU,5931
-2021-06-07,10:39,Monday,DAVISVILLE STATION,EUBK,3,6,S,YU,5466
-2021-06-07,10:45,Monday,PAPE STATION,SUAP,5,9,E,BD,5045
-2021-06-07,10:52,Monday,CHESTER STATION,TUSC,3,7,W,BD,5312
-2021-06-07,11:27,Monday,FINCH STATION,EUAC,3,6,N,YU,5941
-2021-06-07,11:39,Monday,VICTORIA PARK STATION,EUDO,6,10,W,BD,5150
-2021-06-07,11:49,Monday,KEELE STATION,MUIR,9,13,W,BD,5120
-2021-06-07,12:04,Monday,SHEPPARD STATION,MUPAA,0,0,S,YU,5866
-2021-06-07,13:06,Monday,BATHURST STATION,EUTL,6,10,E,BD,5059
-2021-06-07,13:53,Monday,EGLINTON STATION,MUSAN,3,6,S,YU,5936
-2021-06-07,14:30,Monday,YONGE BD STATION,MUPAA,3,7,W,BD,5203
-2021-06-07,14:42,Monday,UNION STATION,EUDO,5,8,N,YU,5841
-2021-06-07,15:00,Monday,LAWRENCE STATION,EUSC,0,0,S,YU,5986
-2021-06-07,16:24,Monday,SHERBOURNE STATION,MUPAA,0,0,E,BD,5183
-2021-06-07,16:42,Monday,KIPLING STATION,EUPI,6,10,W,BD,5164
-2021-06-07,17:21,Monday,BLOOR STATION,MUPAA,0,0,N,YU,5856
-2021-06-07,18:33,Monday,DUNDAS STATION,SUDP,3,6,S,YU,5806
-2021-06-07,18:35,Monday,ST GEORGE BD STATION,MUIR,6,10,W,BD,5232
-2021-06-07,18:53,Monday,SHERBOURNE STATION,MUPAA,0,0,E,BD,5045
-2021-06-07,19:05,Monday,EGLINTON WEST STATION,PUMEL,0,0,,YU,0
-2021-06-07,19:38,Monday,KENNEDY BD STATION,EUPI,5,12,W,BD,5002
-2021-06-07,20:11,Monday,BATHURST STATION,MUIS,0,0,,BD,0
-2021-06-07,20:13,Monday,KEELE STATION,MUIS,0,0,E,BD,0
-2021-06-07,20:34,Monday,EGLINTON STATION,SUO,0,0,N,YU,5431
-2021-06-07,22:00,Monday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-06-07,22:33,Monday,SHERBOURNE STATION,MUPAA,0,0,E,BD,5096
-2021-06-07,22:35,Monday,EGLINTON STATION,PUSCR,7,14,S,YU,5556
-2021-06-07,22:56,Monday,YORK MILLS STATION,TUSC,0,0,S,YU,5926
-2021-06-07,23:00,Monday,YONGE- UNIVERSITY SUBW,MUO,0,0,,YU,0
-2021-06-07,23:42,Monday,DAVISVILLE STATION,MUPAA,0,0,N,YU,5391
-2021-06-07,23:59,Monday,DUPONT STATION,SUDP,21,28,S,YU,5766
-2021-06-07,00:59,Monday,SUMMERHILL STATION,MUSAN,7,14,N,YU,5766
-2021-06-07,09:34,Monday,SHEPPARD-YONGE STATION,PUOPO,3,8,E,SHP,6181
-2021-06-07,09:54,Monday,SHEPPARD-YONGE STATION,PUOPO,5,10,E,SHP,6181
-2021-06-07,13:23,Monday,BAYVIEW STATION,SUUT,23,28,W,SHP,6196
-2021-06-07,14:48,Monday,LESLIE STATION,MUSAN,5,10,W,SHP,6141
-2021-06-07,17:58,Monday,DON MILLS STATION,SUDP,0,0,W,SHP,6186
-2021-06-08,02:24,Tuesday,ROSEDALE STATION,PUTOE,0,0,S,YU,0
-2021-06-08,16:15,Tuesday,SRT LINE,MRWEA,0,0,,SRT,0
-2021-06-08,05:53,Tuesday,DAVISVILLE BUILD-UP,MUSC,0,0,N,YU,5976
-2021-06-08,06:14,Tuesday,SHEPPARD WEST STATION,MUTO,5,9,N,YU,6066
-2021-06-08,06:36,Tuesday,SHERBOURNE STATION,PUMST,0,0,,BD,0
-2021-06-08,07:21,Tuesday,YONGE BD STATION,MUPAA,0,0,W,BD,5062
-2021-06-08,07:25,Tuesday,YORKDALE STATION,MUIS,0,0,,YU,0
-2021-06-08,07:30,Tuesday,SHERBOURNE STATION,MUPAA,0,0,E,BD,5059
-2021-06-08,07:38,Tuesday,KENNEDY BD STATION,EUTL,4,8,W,BD,5058
-2021-06-08,08:12,Tuesday,KENNEDY BD STATION,MUIRS,0,0,,BD,0
-2021-06-08,09:27,Tuesday,SHERBOURNE STATION,MUPAA,0,0,E,BD,5074
-2021-06-08,09:51,Tuesday,YONGE BD STATION,MUPAA,0,0,W,BD,5306
-2021-06-08,09:57,Tuesday,SPADINA BD STATION,MUPAA,0,0,W,BD,5306
-2021-06-08,10:55,Tuesday,ROYAL YORK STATION,TUSC,0,0,E,BD,5261
-2021-06-08,11:08,Tuesday,SHEPPARD STATION,EUSC,0,0,S,YU,5876
-2021-06-08,11:12,Tuesday,YORK MILLS STATION,TUOS,3,6,N,YU,5841
-2021-06-08,11:19,Tuesday,SHEPPARD STATION,PUSWZ,0,0,N,YU,5841
-2021-06-08,11:27,Tuesday,FINCH STATION,TUO,3,6,S,YU,5841
-2021-06-08,11:32,Tuesday,FINCH STATION,SUAP,0,0,,YU,0
-2021-06-08,11:38,Tuesday,VAUGHAN MC STATION,SUAE,3,6,S,YU,6041
-2021-06-08,11:58,Tuesday,BLOOR STATION,MUI,3,6,N,YU,5671
-2021-06-08,12:25,Tuesday,NORTH YORK CTR STATION,PUTO,0,0,S,YU,5426
-2021-06-08,12:46,Tuesday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,0
-2021-06-08,13:56,Tuesday,BLOOR STATION,MUTO,3,6,N,YU,5776
-2021-06-08,13:58,Tuesday,KIPLING STATION,PUMEL,0,0,,BD,0
-2021-06-08,14:40,Tuesday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,0
-2021-06-08,14:40,Tuesday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,0
-2021-06-08,15:43,Tuesday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,0
-2021-06-08,16:37,Tuesday,NORTH YORK CTR STATION,PUTO,0,0,S,YU,5946
-2021-06-08,16:43,Tuesday,SHERBOURNE STATION,MUPAA,0,0,E,BD,5143
-2021-06-08,17:32,Tuesday,ST GEORGE BD STATION,SUDP,4,8,W,BD,5341
-2021-06-08,18:00,Tuesday,LAWRENCE WEST STATION,SUAP,10,13,S,YU,5826
-2021-06-08,18:34,Tuesday,KEELE STATION,MUIS,0,0,,BD,0
-2021-06-08,18:55,Tuesday,FINCH STATION,PUMEL,0,0,,YU,0
-2021-06-08,19:47,Tuesday,ST CLAIR WEST STATION,SUAP,8,13,S,YU,5966
-2021-06-08,20:14,Tuesday,EGLINTON WEST STATION,SUO,0,0,S,YU,0
-2021-06-08,20:28,Tuesday,YORK MILLS STATION,TUSC,0,0,S,YU,5426
-2021-06-08,20:54,Tuesday,VAUGHAN MC STATION,MUNOA,7,14,S,YU,0
-2021-06-08,21:24,Tuesday,HIGH PARK STATION,MUIR,0,0,W,BD,5269
-2021-06-08,22:00,Tuesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-06-08,22:58,Tuesday,WILSON STATION,PUMEL,0,0,,YU,0
-2021-06-08,23:00,Tuesday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU,0
-2021-06-08,23:12,Tuesday,VAUGHAN MC STATION,MUNOA,7,14,S,YU,0
-2021-06-09,06:35,Wednesday,SCARBOROUGH CTR STATIO,ERDO,6,12,S,SRT,3022
-2021-06-09,05:18,Wednesday,UNION STATION,MUIS,0,0,,YU,0
-2021-06-09,09:52,Wednesday,LINE 3 - SCARBOROUGH R,MRWEA,0,0,,SRT,0
-2021-06-09,06:34,Wednesday,ROSEDALE STATION,MUATC,3,6,S,YU,6046
-2021-06-09,07:12,Wednesday,KENNEDY BD STATION,MUSAN,4,8,W,BD,5213
-2021-06-09,14:04,Wednesday,LAWRENCE EAST STATION,MRUIR,0,0,,SRT,0
-2021-06-09,07:44,Wednesday,ROSEDALE STATION,MUSC,3,6,N,YU,5966
-2021-06-09,16:53,Wednesday,SCARBOROUGH CTR STATIO,ERDO,6,12,S,SRT,3012
-2021-06-09,17:20,Wednesday,MCCOWAN STATION,ERCD,5,11,N,SRT,3012
-2021-06-09,07:53,Wednesday,ROSEDALE STATION,TUSC,0,0,N,YU,5726
-2021-06-09,08:03,Wednesday,ST PATRICK STATION,MUIS,0,0,,YU,0
-2021-06-09,08:03,Wednesday,ROSEDALE STATION,TUSC,0,0,N,YU,5876
-2021-06-09,08:09,Wednesday,VAUGHAN MC STATION,TUNIP,5,8,S,YU,5711
-2021-06-09,08:11,Wednesday,DUNDAS WEST STATION,SUO,0,0,,BD,0
-2021-06-09,08:53,Wednesday,ST PATRICK STATION,MUIRS,0,0,,YU,0
-2021-06-09,09:14,Wednesday,ROSEDALE STATION,TUO,3,6,S,YU,6046
-2021-06-09,09:57,Wednesday,SHERBOURNE STATION,MUPAA,3,7,W,BD,5143
-2021-06-09,10:07,Wednesday,ROYAL YORK STATION,MUSC,0,0,E,BD,5119
-2021-06-09,12:21,Wednesday,VAUGHAN MC STATION,SUO,3,6,S,YU,5726
-2021-06-09,13:14,Wednesday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,0
-2021-06-09,13:20,Wednesday,RUNNYMEDE STATION,EUDO,6,10,W,BD,5333
-2021-06-09,13:38,Wednesday,SPADINA BD STATION,MUIS,0,0,,BD,0
-2021-06-09,14:22,Wednesday,WARDEN STATION,SUUT,7,11,W,BD,5179
-2021-06-09,14:32,Wednesday,FINCH STATION,MUPAA,0,0,S,YU,6066
-2021-06-09,14:43,Wednesday,DAVISVILLE BUILD UP,TUSC,0,0,S,YU,5556
-2021-06-09,15:12,Wednesday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,0
-2021-06-09,18:01,Wednesday,CHRISTIE STATION,PUMEL,0,0,,BD,0
-2021-06-09,18:50,Wednesday,WILSON STATION,MUO,4,8,S,YU,5711
-2021-06-09,19:30,Wednesday,KIPLING STATION,SUO,0,0,,BD,0
-2021-06-09,20:00,Wednesday,LAWRENCE STATION,PUSTS,3,8,S,YU,5951
-2021-06-09,20:11,Wednesday,DAVISVILLE STATION,MUIS,0,0,,YU,0
-2021-06-09,21:52,Wednesday,NORTH YORK CTR STATION,MUPLC,0,0,N,YU,5391
-2021-06-09,22:00,Wednesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-06-09,23:00,Wednesday,YONGE UNIVERSITY SUBWA,MUO,0,0,B,YU,0
-2021-06-09,23:18,Wednesday,SHERBOURNE STATION,MUPAA,0,0,W,BD,5143
-2021-06-09,23:22,Wednesday,SHEPPARD STATION,PUSNT,0,0,S,YU,0
-2021-06-09,23:35,Wednesday,KENNEDY BD STATION,TUKEY,0,0,W,BD,5241
-2021-06-10,06:15,Thursday,ROSEDALE STATION,TUSC,3,6,N,YU,5876
-2021-06-10,07:17,Thursday,SPADINA BD STATION,MUD,5,9,W,BD,5119
-2021-06-10,07:29,Thursday,UNION STATION (TO KING,EUDO,5,8,N,YU,5691
-2021-06-10,07:41,Thursday,FINCH STATION,TUSC,4,7,S,YU,5726
-2021-06-10,07:43,Thursday,SHERBOURNE STATION,MUPAA,0,0,E,BD,5189
-2021-06-10,08:28,Thursday,YORK MILLS STATION,TUSC,0,0,S,YU,5766
-2021-06-10,08:37,Thursday,VICTORIA PARK STATION,EUDO,4,8,E,BD,5179
-2021-06-10,08:39,Thursday,WOODBINE STATION,TUCC,0,0,E,BD,5042
-2021-06-10,09:10,Thursday,DUNDAS WEST STATION,SUDP,3,7,E,BD,5189
-2021-06-10,09:34,Thursday,ST PATRICK STATION,EUDO,8,11,N,YU,6066
-2021-06-10,09:39,Thursday,WILSON STATION,MUO,0,0,N,YU,5751
-2021-06-10,09:53,Thursday,VAUGHAN MC STATION,PUSCR,3,6,S,YU,5931
-2021-06-10,10:28,Thursday,WILSON STATION,MUPLB,51,54,N,YU,5436
-2021-06-10,10:44,Thursday,BROADVIEW STATION,SUDP,3,7,E,BD,5333
-2021-06-10,10:48,Thursday,LAWRENCE STATION,SUDP,0,0,S,YU,5861
-2021-06-10,11:46,Thursday,KENNEDY BD STATION,MUO,4,8,W,BD,5241
-2021-06-10,13:05,Thursday,BLOOR STATION,MUIRS,0,0,,YU,0
-2021-06-10,13:38,Thursday,FINCH STATION,SUO,0,0,,YU,0
-2021-06-10,13:45,Thursday,KIPLING STATION,TUNIP,3,7,E,BD,5260
-2021-06-10,13:54,Thursday,EGLINTON STATION,MUIR,16,19,S,YU,5936
-2021-06-10,13:54,Thursday,GLENCAIRN STATION,EUNT,3,6,S,YU,5771
-2021-06-10,14:16,Thursday,WILSON STATION,MUPAA,0,0,N,YU,5526
-2021-06-10,15:36,Thursday,KENNEDY BD STATION,MUSAN,3,7,W,BD,5143
-2021-06-10,15:54,Thursday,COXWELL STATION,EUCD,7,11,E,BD,5179
-2021-06-10,16:38,Thursday,BAY STATION,SUDP,0,0,E,BD,5246
-2021-06-10,17:16,Thursday,PAPE STATION,PUMEL,0,0,,BD,0
-2021-06-10,17:33,Thursday,EGLINTON STATION,MUI,3,6,N,YU,5876
-2021-06-10,19:11,Thursday,ST CLAIR WEST STATION,MUDD,0,0,N,YU,5436
-2021-06-10,19:23,Thursday,YORKDALE STATION,EUBK,5,10,S,YU,5616
-2021-06-10,20:05,Thursday,KENNEDY BD STATION,TUKEY,5,12,W,BD,5241
-2021-06-10,21:40,Thursday,ST CLAIR WEST STATION,SUDP,0,0,S,YU,5386
-2021-06-10,22:00,Thursday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-06-10,22:00,Thursday,RUNNYMEDE STATION,SUDP,0,0,W,BD,5132
-2021-06-10,23:00,Thursday,YONGE-UNIVERSITY SUBWA,MUO,0,0,,YU,0
-2021-06-10,23:45,Thursday,SPADINA BD STATION,MUIS,0,0,,BD,0
-2021-06-10,00:17,Thursday,DONLANDS STATION,SUBT,10,17,W,BD,5198
-2021-06-10,01:03,Thursday,SHERBOURNE STATION,MUPAA,0,0,E,BD,5246
-2021-06-10,01:16,Thursday,ISLINGTON STATION,MUIS,0,0,,BD,0
-2021-06-10,09:36,Thursday,LESLIE STATION,TUMVS,0,0,E,SHP,6186
-2021-06-11,19:35,Friday,KENNEDY SRT STATION,MRUIR,0,0,S,SRT,0
-2021-06-11,02:07,Friday,MUSEUM STATION,TUCC,10,0,N,YU,6041
-2021-06-11,05:19,Friday,KENNEDY BD STATION,MUPLC,0,0,,BD,0
-2021-06-11,19:56,Friday,SCARBOROUGH CTR STATIO,MRUI,0,0,,SRT,0
-2021-06-11,06:04,Friday,GREENWOOD STATION,EUPI,3,8,E,BD,5095
-2021-06-11,06:05,Friday,FINCH STATION,TUSC,0,0,S,YU,5556
-2021-06-11,06:06,Friday,ROSEDALE STATION,MUPLB,39,42,N,YU,5766
-2021-06-11,06:39,Friday,FINCH WEST STATION,EUDO,5,10,S,YU,5536
-2021-06-11,07:03,Friday,WILSON STATION,MUTO,3,6,N,YU,5841
-2021-06-11,07:07,Friday,ROSEDALE STATION,MUATC,3,8,S,YU,5556
-2021-06-11,07:09,Friday,DUNDAS STATION,EUDO,3,6,N,YU,5491
-2021-06-11,07:14,Friday,SHERBOURNE STATION,MUPAA,0,0,E,BD,5050
-2021-06-11,08:28,Friday,KENNEDY BD STATION,EUNT,4,8,W,BD,5241
-2021-06-11,09:20,Friday,FINCH STATION,TUSC,0,0,S,YU,5726
-2021-06-11,09:44,Friday,WILSON YARD,PUEWZ,17,20,S,YU,5636
-2021-06-11,09:50,Friday,KENNEDY BD STATION,EUDO,4,8,W,BD,5333
-2021-06-11,09:56,Friday,RUNNYMEDE STATION,MUIS,0,0,,BD,0
-2021-06-11,10:40,Friday,RUNNYMEDE STATION,SUO,0,0,W,BD,5176
-2021-06-11,10:56,Friday,BAY STATION,EUCD,4,8,E,BD,5095
-2021-06-11,11:10,Friday,COXWELL STATION,TUO,4,8,E,BD,5028
-2021-06-11,11:26,Friday,KENNEDY BD STATION,EUCD,4,8,W,BD,5134
-2021-06-11,11:58,Friday,BLOOR STATION,TUS,7,10,N,YU,5786
-2021-06-11,13:54,Friday,PAPE STATION,SUDP,0,0,,BD,0
-2021-06-11,14:29,Friday,SPADINA BD STATION,SUUT,0,0,W,BD,5224
-2021-06-11,14:36,Friday,FINCH STATION,MUTO,3,6,S,YU,5556
-2021-06-11,14:39,Friday,FINCH STATION,TUMVS,3,6,N,YU,5516
-2021-06-11,15:22,Friday,YORK MILLS STATION,MUIRS,0,0,,YU,0
-2021-06-11,17:10,Friday,FINCH WEST STATION,MUSAN,3,6,S,YU,5936
-2021-06-11,17:29,Friday,LAWRENCE STATION,MUSC,0,0,N,YU,5856
-2021-06-11,17:50,Friday,COXWELL STATION,MUPAA,0,0,E,BD,5280
-2021-06-11,19:27,Friday,COLLEGE STATION,MUSAN,5,10,N,YU,5586
-2021-06-11,19:53,Friday,DUNDAS STATION,MUIS,0,0,,YU,0
-2021-06-11,20:17,Friday,WARDEN STATION,SUO,0,0,W,BD,5153
-2021-06-11,20:19,Friday,CHESTER STATION,SUUT,19,26,W,BD,5153
-2021-06-11,21:01,Friday,ROSEDALE STATION,SUDP,12,17,N,YU,5901
-2021-06-11,21:10,Friday,BATHURST STATION,MUIRS,0,0,,BD,0
-2021-06-11,22:00,Friday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-06-11,22:59,Friday,RUNNYMEDE STATION,SUDP,0,0,W,BD,5206
-2021-06-11,18:33,Friday,BAYVIEW STATION,PUOPO,5,10,W,SHP,6141
-2021-06-11,21:00,Friday,DON MILLS STATION,MUIS,0,0,,SHP,0
-2021-06-12,04:27,Saturday,KIPLING STATION,SUDP,0,0,,BD,0
-2021-06-12,06:00,Saturday,TORONTO TRANSIT CONTRO,MRO,0,0,,SRT,0
-2021-06-12,05:56,Saturday,DONLANDS STATION,MUO,3,8,W,BD,5192
-2021-06-12,09:47,Saturday,MIDLAND STATION,ERDO,0,0,N,SRT,5017
-2021-06-12,09:58,Saturday,MIDLAND STATION,ERCD,0,0,S,SRT,3012
-2021-06-12,06:00,Saturday,TORONTO TRANSIT COMMIS,MUO,0,0,,YU,0
-2021-06-12,12:46,Saturday,KENNEDY SRT STATION,ERCD,3,10,N,SRT,3017
-2021-06-12,06:00,Saturday,YONGE UNIVERSITY SUBWA,MUO,0,0,B,YU,0
-2021-06-12,15:23,Saturday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-06-12,06:02,Saturday,VAUGHAN MC STATION,EUBO,12,24,S,YU,5586
-2021-06-12,17:04,Saturday,MCCOWAN STATION,ERCD,4,10,S,SRT,3012
-2021-06-12,06:05,Saturday,ST PATRICK STATION,MUATC,3,8,S,YU,5916
-2021-06-12,06:40,Saturday,COLLEGE STATION,MUD,6,12,N,YU,6031
-2021-06-12,17:51,Saturday,KENNEDY SRT STATION,ERCD,6,12,N,SRT,3017
-2021-06-12,07:49,Saturday,SHERBOURNE STATION,MUSAN,0,0,E,BD,5189
-2021-06-12,09:19,Saturday,WILSON STATION,MUPLB,6,12,S,YU,6056
-2021-06-12,09:37,Saturday,KENNEDY BD STATION,MUTO,3,8,W,BD,5194
-2021-06-12,09:56,Saturday,HIGH PARK STATION,SUDP,14,19,E,BD,5073
-2021-06-12,10:17,Saturday,YONGE BD STATION,MUIS,0,0,W,BD,0
-2021-06-12,12:31,Saturday,DUNDAS STATION,MUIRS,0,0,S,YU,0
-2021-06-12,14:27,Saturday,PAPE STATION,SUDP,0,0,W,BD,5126
-2021-06-12,15:15,Saturday,FINCH STATION,SUAE,0,0,,YU,0
-2021-06-12,15:16,Saturday,KENNEDY BD STATION,TUSC,0,0,E,BD,5333
-2021-06-12,15:52,Saturday,YONGE BD STATION,SUDP,3,7,W,BD,5150
-2021-06-12,17:06,Saturday,ST CLAIR STATION,MUPAA,3,9,N,YU,6056
-2021-06-12,18:25,Saturday,DUNDAS WEST STATION,MUDD,9,13,E,BD,5084
-2021-06-12,19:25,Saturday,SHEPPARD STATION,PUMEL,0,0,,YU,0
-2021-06-12,20:14,Saturday,WOODBINE STATION,MUPAA,0,0,W,BD,5062
-2021-06-12,20:26,Saturday,WARDEN STATION,SUO,0,0,,BD,0
-2021-06-12,20:29,Saturday,WARDEN STATION,MUPAA,0,0,E,BD,5300
-2021-06-12,20:34,Saturday,HIGH PARK STATION,SUDP,0,0,E,BD,5246
-2021-06-12,21:27,Saturday,ST CLAIR WEST STATION,SUO,0,0,N,YU,0
-2021-06-12,22:00,Saturday,YONGE UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-06-12,22:04,Saturday,ST CLAIR STATION,SUROB,0,0,,YU,0
-2021-06-12,22:16,Saturday,COXWELL STATION,EUBK,0,0,E,BD,5333
-2021-06-12,22:21,Saturday,ISLINGTON STATION,SUSA,0,0,,BD,0
-2021-06-12,23:31,Saturday,ST ANDREW STATION,SUUT,4,11,N,YU,5826
-2021-06-12,23:54,Saturday,YORKDALE STATION,MUPAA,0,0,S,YU,5766
-2021-06-12,06:00,Saturday,TORONTO TRANSIT COMMIS,MUO,0,0,,SHP,0
-2021-06-12,13:15,Saturday,YONGE AND SHEPPARD,SUPOL,11,16,E,SHP,6181
-2021-06-12,21:16,Saturday,SHEPPARD-YONGE STATION,TUOS,0,0,W,SHP,6161
-2021-06-13,02:12,Sunday,KENNEDY BD STATION,MUI,0,0,W,BD,5045
-2021-06-13,11:13,Sunday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-06-13,18:20,Sunday,MCCOWAN STATION,MRUI,6,12,S,SRT,3009
-2021-06-13,04:22,Sunday,YONGE BD STATION,SUO,0,0,E,BD,0
-2021-06-13,07:45,Sunday,WILSON STATION,PUSRA,6,12,S,YU,5936
-2021-06-13,07:57,Sunday,WILSON STATION,PUSCR,10,16,S,YU,6056
-2021-06-13,08:00,Sunday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU,0
-2021-06-13,08:14,Sunday,KIPLING STATION,SUG,5,10,E,BD,5181
-2021-06-13,08:14,Sunday,YORKDALE STATION,MUSAN,3,9,S,YU,5871
-2021-06-13,08:18,Sunday,KIPLING STATION,SUDP,20,24,E,BD,5002
-2021-06-13,10:42,Sunday,VICTORIA PARK STATION,MUPAA,6,10,W,BD,5221
-2021-06-13,10:56,Sunday,DONLANDS STATION,SUAP,0,0,W,BD,5221
-2021-06-13,11:33,Sunday,VICTORIA PARK STATION,MUPR1,98,102,E,BD,5160
-2021-06-13,14:52,Sunday,WARDEN STATION,MUIS,0,0,,BD,0
-2021-06-13,14:57,Sunday,YONGE BD STATION,MUIS,0,0,,BD,0
-2021-06-13,16:09,Sunday,DUNDAS STATION,MUPAA,3,9,S,YU,5881
-2021-06-13,16:46,Sunday,UNION STATION,MUIRS,0,0,,YU,0
-2021-06-13,16:51,Sunday,SHEPPARD WEST STATION,MUIS,0,0,,YU,0
-2021-06-13,17:14,Sunday,SHEPPARD STATION,SUO,0,0,,YU,0
-2021-06-13,20:00,Sunday,YONGE BD STATION,MUIRS,0,0,E,BD,5300
-2021-06-13,20:57,Sunday,YONGE BD STATION,PUMEL,0,0,,BD,0
-2021-06-13,21:18,Sunday,VAUGHAN MC STATION,PUMEL,0,0,,YU,0
-2021-06-13,21:29,Sunday,KENNEDY BD STATION,MUDD,4,8,W,BD,5126
-2021-06-13,21:53,Sunday,ROYAL YORK STATION,SUDP,0,0,W,BD,5082
-2021-06-13,22:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-06-13,22:03,Sunday,CHESTER STATION,TUSC,0,0,W,BD,5196
-2021-06-13,22:30,Sunday,DUNDAS STATION,MUIS,0,0,N,YU,0
-2021-06-13,22:37,Sunday,ST CLAIR STATION,MUIS,0,0,,YU,0
-2021-06-13,23:09,Sunday,KEELE STATION,MUSC,0,0,W,BD,5221
-2021-06-13,23:22,Sunday,SHERBOURNE STATION,SUO,0,0,,BD,0
-2021-06-13,23:36,Sunday,WARDEN STATION,SUDP,0,0,,BD,0
-2021-06-13,00:58,Sunday,FINCH STATION,MUIS,0,0,,YU,0
-2021-06-13,01:12,Sunday,DOWNSVIEW PARK STATION,EUDO,3,10,S,YU,5431
-2021-06-13,01:14,Sunday,KENNEDY BD STATION,MUIRS,0,0,,BD,0
-2021-06-13,01:19,Sunday,ST CLAIR STATION,MUPAA,0,0,N,YU,5871
-2021-06-14,02:17,Monday,FINCH STATION,MUIS,0,0,,YU,0
-2021-06-14,13:07,Monday,SCARBOROUGH CTR STATIO,MRUI,0,0,,SRT,0
-2021-06-14,05:48,Monday,ST CLAIR STATION,MUSC,3,6,S,YU,5826
-2021-06-14,05:55,Monday,WILSON STATION,MUATC,3,6,S,YU,5636
-2021-06-14,06:21,Monday,YONGE BD STATION,MUPAA,3,7,W,BD,5206
-2021-06-14,08:28,Monday,DUFFERIN STATION,SUAP,0,0,,BD,0
-2021-06-14,09:23,Monday,DUFFERIN STATION,MUIS,0,0,,BD,0
-2021-06-14,09:31,Monday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-06-14,09:51,Monday,DAVISVILLE STATION,PUSTC,3,6,N,YU,5961
-2021-06-14,10:59,Monday,FINCH STATION,SUAP,0,0,,YU,0
-2021-06-14,12:08,Monday,FINCH STATION,MUO,6,9,S,YU,5446
-2021-06-14,12:19,Monday,DUNDAS STATION,SUDP,0,0,S,YU,6001
-2021-06-14,13:27,Monday,FINCH STATION,SUDP,4,7,S,YU,5071
-2021-06-14,15:22,Monday,ST CLAIR WEST STATION,PUMEL,0,0,,YU,0
-2021-06-14,15:28,Monday,DAVISVILLE STATION,PUSTC,0,0,N,YU,5796
-2021-06-14,15:37,Monday,CHESTER STATION,MUI,0,0,E,BD,5062
-2021-06-14,16:24,Monday,COLLEGE STATION,SUAP,23,26,S,YU,5881
-2021-06-14,17:22,Monday,BLOOR STATION,MUIRS,0,0,,YU,0
-2021-06-14,17:58,Monday,OSGOODE STATION,MUDD,3,6,N,YU,5431
-2021-06-14,18:36,Monday,SPADINA BD STATION,SUDP,4,8,W,BD,5278
-2021-06-14,18:54,Monday,COLLEGE STATION,MUPAA,3,6,S,YU,6016
-2021-06-14,19:24,Monday,SPADINA BD STATION,PUMEL,0,0,,BD,0
-2021-06-14,20:43,Monday,YORKDALE STATION,SUEAS,9,14,S,YU,5456
-2021-06-14,20:52,Monday,VAUGHAN MC STATION,MUIS,0,0,,YU,0
-2021-06-14,20:53,Monday,LAWRENCE WEST STATION,SUDP,6,11,N,YU,5626
-2021-06-14,20:59,Monday,YORKDALE STATION,SUDP,7,12,N,YU,5626
-2021-06-14,21:10,Monday,WARDEN STATION,SUPOL,0,0,,BD,0
-2021-06-14,21:21,Monday,YONGE BD STATION,MUIS,0,0,,BD,0
-2021-06-14,21:53,Monday,FINCH STATION,MUI,7,14,N,YU,5451
-2021-06-14,22:00,Monday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-06-14,22:35,Monday,YORKDALE STATION,MUIS,0,0,N,YU,0
-2021-06-14,22:43,Monday,YONGE BD STATION,MUIS,0,0,,,0
-2021-06-14,22:53,Monday,GREENWOOD YARD,PUTOE,0,0,E,BD,28
-2021-06-14,23:00,Monday,BLOOR DANFORTH SUBWAY,MUO,0,0,,BD,0
-2021-06-14,23:03,Monday,DUNDAS STATION,MUIS,0,0,,YU,0
-2021-06-14,23:11,Monday,MAIN STREET STATION,SUAE,0,0,,BD,0
-2021-06-14,23:21,Monday,QUEEN'S PARK STATION,MUIRS,0,0,N,YU,5626
-2021-06-14,23:33,Monday,KING STATION,PUMEL,0,0,,YU,0
-2021-06-14,23:53,Monday,SHEPPARD WEST STATION,MUTO,7,14,N,YU,6026
-2021-06-14,02:03,Monday,BAYVIEW STATION,MUPAA,0,0,W,SHP,6186
-2021-06-14,12:20,Monday,SHEPPARD-YONGE STATION,TUSC,0,0,W,SHP,6186
-2021-06-15,02:10,Tuesday,FINCH WEST STATION,SUDP,0,0,S,YU,5536
-2021-06-15,07:05,Tuesday,LAWRENCE EAST STATION,ERDO,4,10,S,SRT,3020
-2021-06-15,05:32,Tuesday,HIGHWAY 407 STATION,MUIE,0,0,,YU,0
-2021-06-15,07:38,Tuesday,KENNEDY SRT STATION,ERCD,5,11,N,SRT,3013
-2021-06-15,18:43,Tuesday,MCCOWAN STATION,ERPR,5,10,S,SRT,3017
-2021-06-15,05:41,Tuesday,YORK MILLS STATION,TUMVS,8,12,N,YU,5391
-2021-06-15,20:18,Tuesday,MCCOWAN STATION,MRO,5,10,S,SRT,3022
-2021-06-15,06:28,Tuesday,ROSEDALE STATION,MUATC,4,7,S,YU,5996
-2021-06-15,20:21,Tuesday,LAWRENCE EAST STATION,MRUI,0,0,S,SRT,0
-2021-06-15,07:01,Tuesday,SUMMERHILL STATION,TUOS,3,6,S,YU,5666
-2021-06-15,07:15,Tuesday,SUBWAY OPERATIONS BUIL,PUMEL,0,0,,,0
-2021-06-15,09:52,Tuesday,ROYAL YORK STATION,PUMST,0,0,,BD,0
-2021-06-15,11:37,Tuesday,VICTORIA PARK STATION,SUDP,0,0,W,BD,5040
-2021-06-15,12:42,Tuesday,LAWRENCE STATION,MUSC,0,0,N,YU,5511
-2021-06-15,13:18,Tuesday,BAY STATION,SUAE,0,0,W,BD,5106
-2021-06-15,13:34,Tuesday,QUEEN STATION,SUO,0,0,,YU,0
-2021-06-15,13:58,Tuesday,WELLESLEY STATION,SUDP,8,11,S,YU,5451
-2021-06-15,14:00,Tuesday,BLOOR STATION,SUDP,7,10,S,YU,6071
-2021-06-15,14:35,Tuesday,BATHURST STATION,PUMEL,0,0,,BD,0
-2021-06-15,15:29,Tuesday,EGLINTON WEST STATION,MUIR,30,33,N,YU,5896
-2021-06-15,15:51,Tuesday,DUNDAS WEST STATION,PUMEL,0,0,,BD,0
-2021-06-15,15:52,Tuesday,CHRISTIE STATION,EUBO,3,7,E,BD,5168
-2021-06-15,17:41,Tuesday,VAUGHAN MC STATION,PUSI,3,6,S,YU,5456
-2021-06-15,17:47,Tuesday,ST CLAIR STATION,SUDP,7,10,S,YU,5951
-2021-06-15,17:56,Tuesday,DAVISVILLE STATION,MUPAA,0,0,N,YU,5536
-2021-06-15,18:15,Tuesday,DUNDAS STATION,SUO,0,0,N,YU,5805
-2021-06-15,18:51,Tuesday,COXWELL STATION,SUAP,0,0,,BD,0
-2021-06-15,20:11,Tuesday,CHESTER STATION,MUSAN,4,8,W,BD,5203
-2021-06-15,20:18,Tuesday,SHERBOURNE STATION,MUPAA,4,11,E,BD,5312
-2021-06-15,20:51,Tuesday,SHERBOURNE STATION,SUUT,11,18,W,BD,5129
-2021-06-15,21:35,Tuesday,GREENWOOD STATION,MUIS,0,0,,BD,0
-2021-06-15,22:00,Tuesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-06-15,23:00,Tuesday,BLOOR DANFORTH SUBWAY,MUO,0,0,,BD,0
-2021-06-15,23:13,Tuesday,ISLINGTON STATION,SUAE,10,18,E,BD,5152
-2021-06-15,23:18,Tuesday,KEELE STATION,TUKEY,6,14,E,BD,5312
-2021-06-15,23:59,Tuesday,BATHURST STATION,SUAP,0,0,W,BD,0
-2021-06-15,00:00,Tuesday,VAUGHAN MC STATION,MUO,0,0,,YU,0
-2021-06-15,00:04,Tuesday,ROYAL YORK STATION,SUDP,4,12,E,BD,5141
-2021-06-15,03:57,Tuesday,SHEPPARD-YONGE STATION,SUUT,0,0,,SHP,0
-2021-06-15,05:31,Tuesday,DON MILLS STATION,SUUT,9,0,W,SHP,6141
-2021-06-15,08:03,Tuesday,SHEPPARD-YONGE STATION,TUSC,0,0,E,SHP,6191
-2021-06-15,19:45,Tuesday,BAYVIEW STATION,PUSWZ,5,10,E,SHP,6191
-2021-06-16,03:13,Wednesday,COLLEGE STATION,SUUT,0,0,N,YU,0
-2021-06-16,04:54,Wednesday,ST ANDREW STATION,PUSAC,0,0,N,YU,5696
-2021-06-16,05:50,Wednesday,MUSEUM STATION,MUATC,0,0,S,YU,5536
-2021-06-16,05:53,Wednesday,HIGH PARK STATION,EUBK,3,9,E,BD,5152
-2021-06-16,06:13,Wednesday,GREENWOOD STATION,MUSC,3,6,E,BD,5011
-2021-06-16,06:25,Wednesday,FINCH STATION,TUSC,4,7,S,YU,5556
-2021-06-16,06:44,Wednesday,UNION STATION (TO KING,MUATC,8,0,N,YU,5536
-2021-06-16,07:01,Wednesday,YONGE BD STATION,MUPAA,0,0,W,BD,5065
-2021-06-16,07:05,Wednesday,SHERBOURNE STATION,MUPAA,0,0,E,BD,5307
-2021-06-16,08:08,Wednesday,DOWNSVIEW PARK STATION,MUIS,0,0,,YU,0
-2021-06-16,09:18,Wednesday,BLOOR STATION,MUO,0,0,,YU,0
-2021-06-16,09:30,Wednesday,SPADINA BD STATION,MUPAA,0,0,E,BD,5266
-2021-06-16,09:46,Wednesday,KENNEDY BD STATION,EUBO,4,8,W,BD,5274
-2021-06-16,10:18,Wednesday,KEELE STATION,MUSC,0,0,E,BD,5276
-2021-06-16,11:55,Wednesday,SHERBOURNE STATION,MUIR,6,10,E,BD,5253
-2021-06-16,12:15,Wednesday,JANE STATION,MUPAA,0,0,W,BD,5027
-2021-06-16,13:04,Wednesday,EGLINTON STATION,SUO,0,0,N,YU,6076
-2021-06-16,15:56,Wednesday,WELLESLEY STATION,SUO,0,0,,YU,0
-2021-06-16,16:22,Wednesday,EGLINTON STATION,SUDP,0,0,S,YU,5651
-2021-06-16,16:37,Wednesday,EGLINTON STATION,MUTO,3,6,S,YU,5571
-2021-06-16,17:08,Wednesday,KEELE STATION,MUSC,0,0,W,BD,5152
-2021-06-16,17:20,Wednesday,ROYAL YORK STATION,EUSC,0,0,E,BD,5332
-2021-06-16,19:08,Wednesday,QUEEN'S PARK STATION,MUSAN,3,6,S,YU,5636
-2021-06-16,19:30,Wednesday,LAWRENCE WEST STATION,MUATC,4,9,S,YU,6066
-2021-06-16,19:55,Wednesday,YORK MILLS STATION,TUSC,0,0,S,YU,5631
-2021-06-16,20:05,Wednesday,BATHURST STATION,SUO,0,0,W,BD,5194
-2021-06-16,20:31,Wednesday,ST CLAIR STATION,SUUT,0,0,S,YU,6031
-2021-06-16,20:40,Wednesday,KEELE STATION,MUIS,0,0,,BD,0
-2021-06-16,21:07,Wednesday,PAPE STATION,MUIS,0,0,,BD,0
-2021-06-16,21:48,Wednesday,DUNDAS WEST STATION,PUMEL,0,0,,BD,0
-2021-06-16,21:48,Wednesday,ST CLAIR STATION,MUIS,0,0,N,YU,5431
-2021-06-16,22:00,Wednesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-06-16,22:30,Wednesday,ROYAL YORK STATION,PUSI,0,0,E,BD,5332
-2021-06-16,22:41,Wednesday,KEELE STATION,PUTD,5,13,E,BD,5332
-2021-06-16,23:23,Wednesday,COXWELL STATION,TUNIP,4,12,W,BD,5194
-2021-06-16,20:07,Wednesday,LESLIE STATION,MUO,0,0,,SHP,0
-2021-06-16,23:00,Wednesday,DON MILLS STATION,SUO,0,0,,SHP,0
-2021-06-17,11:47,Thursday,KENNEDY SRT STATION,TRO,6,12,N,SRT,3001
-2021-06-17,05:42,Thursday,UNION STATION,SUDP,0,0,,YU,0
-2021-06-17,18:09,Thursday,SCARBOROUGH CTR STATIO,SRAE,0,0,N,SRT,3021
-2021-06-17,06:00,Thursday,TORONTO TRANSIT COMMIS,MUO,0,0,,YU,0
-2021-06-17,07:13,Thursday,YONGE BD STATION,SUDP,0,0,W,BD,5307
-2021-06-17,07:18,Thursday,SHERBOURNE STATION,SUDP,3,7,E,BD,5203
-2021-06-17,07:41,Thursday,ST PATRICK STATION,SUAP,0,0,,YU,0
-2021-06-17,08:08,Thursday,GREENWOOD STATION,MUSAN,4,8,E,BD,5074
-2021-06-17,11:17,Thursday,KIPLING STATION,PUTDN,3,7,W,BD,5200
-2021-06-17,12:04,Thursday,VAUGHAN MC STATION,MUTO,3,6,S,YU,5931
-2021-06-17,12:49,Thursday,GREENWOOD SHOP,MUODC,0,0,,BD,0
-2021-06-17,14:10,Thursday,BATHURST STATION,MUIS,0,0,,BD,0
-2021-06-17,14:24,Thursday,FINCH STATION,MUIRS,0,0,,YU,0
-2021-06-17,14:38,Thursday,LAWRENCE STATION,MUSC,0,0,N,YU,5986
-2021-06-17,14:40,Thursday,JANE STATION,MUSC,0,0,W,BD,5096
-2021-06-17,15:23,Thursday,DAVISVILLE STATION,PUSTC,0,0,N,YU,5386
-2021-06-17,16:01,Thursday,FINCH WEST STATION,SUDP,4,7,N,YU,5891
-2021-06-17,16:19,Thursday,LAWRENCE WEST STATION,SUUT,8,11,N,YU,5616
-2021-06-17,16:36,Thursday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5656
-2021-06-17,17:03,Thursday,DUNDAS WEST STATION,MUIRS,0,0,,BD,0
-2021-06-17,17:11,Thursday,ST CLAIR STATION,MUTO,3,6,N,YU,5541
-2021-06-17,17:22,Thursday,ROSEDALE STATION,MUATC,4,7,S,YU,5566
-2021-06-17,17:23,Thursday,WILSON STATION,MUIS,0,0,,YU,0
-2021-06-17,17:25,Thursday,ST CLAIR WEST STATION,SUDP,7,10,S,YU,5901
-2021-06-17,17:57,Thursday,ISLINGTON STATION,MUNCA,0,0,,BD,0
-2021-06-17,18:11,Thursday,DAVISVILLE STATION,PUSTC,0,0,N,YU,5891
-2021-06-17,18:39,Thursday,OSGOODE STATION,MUPAA,3,8,S,YU,5721
-2021-06-17,18:52,Thursday,DUPONT STATION,MUO,0,0,S,YU,5961
-2021-06-17,18:53,Thursday,VAUGHAN MC STATION,MUIS,0,0,,YU,0
-2021-06-17,19:14,Thursday,YONGE BD STATION,MUPAA,3,7,W,BD,5200
-2021-06-17,19:26,Thursday,QUEEN STATION,SUDP,3,8,S,YU,5886
-2021-06-17,19:55,Thursday,YORKDALE STATION,SUDP,3,8,N,YU,5886
-2021-06-17,20:52,Thursday,PIONEER VILLAGE STATIO,SUAP,0,0,S,YU,5566
-2021-06-17,21:20,Thursday,BLOOR STATION,MUPAA,0,0,S,YU,5821
-2021-06-17,21:31,Thursday,MUSEUM STATION,MUPAA,0,0,S,YU,5586
-2021-06-17,21:33,Thursday,QUEEN STATION,MUPAA,0,0,S,YU,5896
-2021-06-17,21:49,Thursday,WOODBINE STATION,SUAP,4,12,W,BD,5034
-2021-06-17,21:59,Thursday,FINCH STATION,MUIR,0,0,S,YU,5951
-2021-06-17,22:00,Thursday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-06-17,22:11,Thursday,FINCH STATION,MUPAA,0,0,N,YU,5586
-2021-06-17,23:00,Thursday,BLOOR DANFORTH SUBWAY,MUO,0,0,,BD,0
-2021-06-17,23:03,Thursday,CHESTER STATION,SUSA,0,0,,BD,0
-2021-06-17,23:45,Thursday,EGLINTON STATION,SUUT,7,14,N,YU,5381
-2021-06-17,23:46,Thursday,COXWELL STATION,MUIS,0,0,,BD,0
-2021-06-17,00:36,Thursday,ST ANDREW STATION,MUPAA,3,10,S,YU,5871
-2021-06-17,01:04,Thursday,WILSON STATION,SUUT,62,69,N,YU,5496
-2021-06-17,01:24,Thursday,KIPLING STATION,TUO,9,18,E,BD,5250
-2021-06-17,01:38,Thursday,SHEPPARD STATION,MUPAA,3,10,N,YU,5901
-2021-06-17,01:48,Thursday,OLD MILL STATION,SUUT,18,27,W,BD,5200
-2021-06-17,01:50,Thursday,SHERBOURNE STATION,SUUT,0,0,W,BD,5134
-2021-06-17,16:03,Thursday,LESLIE STATION,TUMVS,10,15,E,SHP,6146
-2021-06-18,05:45,Friday,EGLINTON STATION,PUSTS,0,0,S,YU,5831
-2021-06-18,05:54,Friday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-06-18,06:15,Friday,GREENWOOD STATION,EUYRD,5,9,E,BD,5172
-2021-06-18,06:18,Friday,DONLANDS STATION,EUYRD,0,0,W,BD,5114
-2021-06-18,06:19,Friday,YONGE BD STATION,MUPAA,0,0,W,BD,5033
-2021-06-18,06:44,Friday,KEELE STATION,MUSC,0,0,W,BD,5133
-2021-06-18,07:32,Friday,WARDEN STATION,MUO,0,0,,BD,0
-2021-06-18,07:46,Friday,FINCH STATION,EUDO,3,6,S,YU,5571
-2021-06-18,08:04,Friday,SUMMERHILL STATION,TUOS,0,0,N,YU,5981
-2021-06-18,08:19,Friday,EGLINTON STATION,TUMVS,0,0,S,YU,5831
-2021-06-18,08:26,Friday,DAVISVILLE STATION,PUTR,0,0,,YU,5841
-2021-06-18,09:05,Friday,DUNDAS STATION,MUIS,0,0,,YU,0
-2021-06-18,09:16,Friday,FINCH STATION,MUTO,3,6,S,YU,5921
-2021-06-18,09:51,Friday,ST GEORGE BD STATION,SUDP,0,0,W,BD,5114
-2021-06-18,10:20,Friday,BROADVIEW STATION,MUTD,0,0,W,BD,5191
-2021-06-18,10:29,Friday,YORK MILLS STATION,TUSC,0,0,N,YU,5836
-2021-06-18,10:43,Friday,SHERBOURNE STATION,MUPAA,0,0,E,BD,5307
-2021-06-18,10:44,Friday,OLD MILL STATION,MUTD,0,0,W,BD,5191
-2021-06-18,10:47,Friday,MAIN STREET STATION,MUDD,3,7,W,BD,5022
-2021-06-18,10:50,Friday,ISLINGTON STATION,PUSNT,0,0,W,BD,5191
-2021-06-18,10:56,Friday,ST CLAIR STATION,EUSC,0,0,S,YU,5951
-2021-06-18,12:06,Friday,DUNDAS STATION,SUO,0,0,S,YU,0
-2021-06-18,12:24,Friday,DONLANDS STATION,MUIRS,0,0,,BD,0
-2021-06-18,12:37,Friday,BATHURST STATION,SUO,18,22,E,BD,5096
-2021-06-18,12:57,Friday,KENNEDY BD STATION,EUNT,4,8,,BD,5111
-2021-06-18,13:25,Friday,WILSON STATION,MUNOA,3,6,S,YU,6186
-2021-06-18,13:30,Friday,BATHURST STATION,MUPAA,3,7,W,BD,5111
-2021-06-18,13:56,Friday,DUPONT STATION,PUMEL,0,0,,YU,0
-2021-06-18,14:25,Friday,BATHURST STATION,SUDP,0,0,,BD,0
-2021-06-18,14:43,Friday,YORK MILLS STATION,TUSC,0,0,S,YU,5891
-2021-06-18,15:04,Friday,CHRISTIE STATION,SUDP,4,8,E,BD,5101
-2021-06-18,15:07,Friday,SPADINA YUS STATION,TUS,3,6,S,YU,5681
-2021-06-18,15:27,Friday,RUNNYMEDE STATION,MUI,9,13,E,BD,5177
-2021-06-18,15:55,Friday,BATHURST STATION,MUSC,0,0,E,BD,5123
-2021-06-18,16:22,Friday,KENNEDY BD STATION,SUAP,0,0,E,BD,5217
-2021-06-18,16:35,Friday,SHEPPARD WEST STATION,SUAE,0,0,N,YU,5726
-2021-06-18,16:42,Friday,KING STATION,MUPAA,0,0,N,YU,5596
-2021-06-18,16:56,Friday,KENNEDY BD STATION,MUIR,3,7,W,BD,5223
-2021-06-18,17:01,Friday,ROYAL YORK STATION,SUEAS,21,25,W,BD,5177
-2021-06-18,17:50,Friday,SHERBOURNE STATION,MUPAA,0,0,E,BD,5096
-2021-06-18,17:57,Friday,CHESTER STATION,MUSC,0,0,E,BD,5123
-2021-06-18,19:20,Friday,KENNEDY BD STATION,SUAP,21,28,W,BD,5033
-2021-06-18,20:09,Friday,ST CLAIR STATION,MUPAA,3,8,N,YU,5436
-2021-06-18,20:50,Friday,SHERBOURNE STATION,SUUT,10,17,E,BD,5134
-2021-06-18,21:53,Friday,UNION STATION,MUPAA,0,0,N,YU,6051
-2021-06-18,22:00,Friday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU / BD,0
-2021-06-18,22:07,Friday,WELLESLEY STATION,MUPAA,0,0,N,YU,5621
-2021-06-18,23:00,Friday,YONGE- UNIVERSITY SUBW,MUO,0,0,,YU,0
-2021-06-18,23:17,Friday,FINCH STATION,TUO,6,13,S,YU,5431
-2021-06-18,23:20,Friday,LAWRENCE STATION,TUSC,5,12,S,YU,5726
-2021-06-18,23:37,Friday,VICTORIA PARK STATION,MUIS,0,0,E,BD,0
-2021-06-18,23:42,Friday,YONGE BD STATION,MUPLB,12,19,W,BD,5200
-2021-06-18,23:50,Friday,PIONEER VILLAGE STATIO,TUO,0,0,N,YU,5626
-2021-06-18,01:35,Friday,DUNDAS WEST STATION,MUIS,0,0,,BD,0
-2021-06-19,10:12,Saturday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-06-19,02:19,Saturday,WARDEN STATION,PUMST,0,0,,BD,0
-2021-06-19,17:58,Saturday,SCARBOROUGH CTR STATIO,MRPAA,0,0,N,SRT,3017
-2021-06-19,06:00,Saturday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU,0
-2021-06-19,06:50,Saturday,VAUGHAN MC STATION,TUNIP,6,12,S,YU,5521
-2021-06-19,07:37,Saturday,ST CLAIR STATION,MUIRS,0,0,S,YU,5591
-2021-06-19,11:32,Saturday,WOODBINE STATION,SUAP,24,28,W,BD,5286
-2021-06-19,11:35,Saturday,RUNNYMEDE STATION,MUIRS,0,0,,BD,0
-2021-06-19,11:41,Saturday,WOODBINE STATION,SUDP,18,22,E,BD,5171
-2021-06-19,12:42,Saturday,KENNEDY STATION,EUCA,4,8,E,BD,5143
-2021-06-19,13:25,Saturday,SHERBOURNE STATION,PUMEL,0,0,W,BD,0
-2021-06-19,14:24,Saturday,DUNDAS WEST STATION,SUDP,4,8,E,BD,5035
-2021-06-19,16:28,Saturday,OLD MILL STATION,SUDP,0,0,E,BD,5074
-2021-06-19,16:35,Saturday,KIPLING STATION,SUROB,0,0,,BD,0
-2021-06-19,16:41,Saturday,BLOOR STATION,EUBO,4,9,S,YU,5616
-2021-06-19,17:00,Saturday,ST CLAIR STATION,MUPAA,3,8,N,YU,5606
-2021-06-19,17:26,Saturday,CHRISTIE STATION,SUO,0,0,E,BD,5105
-2021-06-19,17:58,Saturday,DUNDAS STATION,MUNCA,0,0,E,YU,0
-2021-06-19,18:10,Saturday,KIPLING STATION,SUROB,0,0,E,BD,0
-2021-06-19,18:58,Saturday,OSGOODE STATION,MUI,3,8,N,YU,5666
-2021-06-19,19:34,Saturday,UNION STATION,SUO,8,15,S,YU,5471
-2021-06-19,20:52,Saturday,KEELE STATION,PUSTS,0,0,E,BD,5247
-2021-06-19,21:07,Saturday,DUNDAS WEST STATION,MUIS,0,0,,BD,0
-2021-06-19,21:11,Saturday,KEELE STATION,PUSTS,3,9,E,BD,5013
-2021-06-19,21:41,Saturday,WELLESLEY STATION,MUATC,3,10,N,YU,5481
-2021-06-19,22:00,Saturday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-06-19,22:24,Saturday,KING STATION,MUIS,0,0,,YU,0
-2021-06-19,23:07,Saturday,ST CLAIR STATION,PUMEL,0,0,,YU,0
-2021-06-19,21:45,Saturday,BAYVIEW STATION,MUO,7,12,W,SHP,6141
-2021-06-19,22:19,Saturday,DON MILLS STATION,MUO,7,12,W,SHP,6196
-2021-06-20,15:00,Sunday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-06-20,02:34,Sunday,SPADINA BD STATION,SUDP,0,0,,BD,0
-2021-06-20,06:30,Sunday,UNION STATION,SUAE,0,0,,YU,0
-2021-06-20,08:00,Sunday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU,0
-2021-06-20,08:03,Sunday,WARDEN STATION,PUSTP,3,0,W,BD,5014
-2021-06-20,08:07,Sunday,DONLANDS STATION,MUCL,3,0,W,BD,5085
-2021-06-20,08:20,Sunday,GREENWOOD STATION,MUNOA,3,8,E,BD,5148
-2021-06-20,08:34,Sunday,FINCH WEST STATION,SUDP,0,0,,YU,0
-2021-06-20,08:44,Sunday,OSSINGTON STATION,SUO,0,0,W,BD,5065
-2021-06-20,08:51,Sunday,KIPLING STATION,SUDP,0,0,,BD,0
-2021-06-20,09:01,Sunday,YONGE BD STATION,MUO,3,8,E,BD,5217
-2021-06-20,09:19,Sunday,KENNEDY BD STATION,EUBO,5,10,W,BD,5366
-2021-06-20,10:13,Sunday,DUNDAS STATION,MUPAA,0,0,S,YU,6046
-2021-06-20,10:26,Sunday,KIPLING STATION,MUIS,0,0,E,BD,5357
-2021-06-20,11:00,Sunday,ST GEORGE YUS STATION,SUDP,7,13,N,YU,5686
-2021-06-20,11:43,Sunday,SPADINA YUS STATION,PUTDN,4,10,S,YU,5491
-2021-06-20,13:55,Sunday,BLOOR STATION,SUDP,5,10,S,YU,5856
-2021-06-20,14:38,Sunday,VAUGHAN MC STATION,TUNIP,5,10,S,YU,5696
-2021-06-20,14:41,Sunday,BLOOR STATION,TUNIP,4,9,N,YU,5681
-2021-06-20,15:40,Sunday,WARDEN STATION,MUIRS,0,0,,BD,0
-2021-06-20,16:47,Sunday,QUEEN'S PARK STATION,MUIS,0,0,,YU,0
-2021-06-20,16:57,Sunday,BLOOR STATION,MUPAA,0,0,N,YU,5521
-2021-06-20,17:04,Sunday,SHERBOURNE STATION,MUPAA,3,8,E,BD,5148
-2021-06-20,17:10,Sunday,ST CLAIR WEST STATION,MUNCA,0,0,,YU,0
-2021-06-20,17:14,Sunday,QUEEN STATION,MUNCA,0,0,,YU,0
-2021-06-20,17:47,Sunday,ST CLAIR STATION,MUPAA,3,8,N,YU,5861
-2021-06-20,17:48,Sunday,KENNEDY BD STATION,SUAE,0,0,W,BD,5159
-2021-06-20,18:07,Sunday,MAIN STREET STATION,MUDD,0,0,W,BD,5062
-2021-06-20,18:18,Sunday,DUNDAS STATION,SUDP,0,0,N,YU,0
-2021-06-20,18:35,Sunday,KIPLING STATION,SUO,5,10,W,BD,5159
-2021-06-20,18:39,Sunday,VAUGHAN MC STATION,EUDO,3,9,S,YU,5571
-2021-06-20,19:18,Sunday,WILSON STATION,MUATC,3,9,S,YU,5571
-2021-06-20,19:37,Sunday,KIPLING STATION,SUDP,0,0,,BD,0
-2021-06-20,20:58,Sunday,COXWELL STATION,TUO,0,0,W,BD,5296
-2021-06-20,21:13,Sunday,DUNDAS STATION,MUIS,0,0,N,YU,0
-2021-06-20,22:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-06-20,01:17,Sunday,SUMMERHILL STATION,SUO,0,0,S,YU,5701
-2021-06-21,13:36,Monday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-06-21,02:10,Monday,WILSON STATION,MUATC,5,12,N,YU,5686
-2021-06-21,15:05,Monday,MCCOWAN STATION,PRSA,5,10,S,SRT,3010
-2021-06-21,06:48,Monday,SHERBOURNE STATION,MUPAA,4,9,E,BD,5219
-2021-06-21,20:47,Monday,LAWRENCE EAST STATION,MRUIR,0,0,,SRT,0
-2021-06-21,07:51,Monday,OSSINGTON STATION,MUIS,0,0,,BD,0
-2021-06-21,08:06,Monday,HIGH PARK STATION,TUS,3,7,W,BD,5105
-2021-06-21,08:22,Monday,ISLINGTON STATION,TUKEY,9,13,E,BD,5109
-2021-06-21,08:42,Monday,DAVISVILLE STATION,SUDP,0,0,N,YU,6006
-2021-06-21,09:37,Monday,YORK MILLS STATION,MUSC,0,0,N,YU,5676
-2021-06-21,10:22,Monday,WARDEN STATION,TUS,3,7,W,BD,5238
-2021-06-21,10:28,Monday,YORKDALE STATION,MUIS,0,0,S,YU,6071
-2021-06-21,11:04,Monday,LAWRENCE STATION,MUPAA,0,0,N,YU,5961
-2021-06-21,11:10,Monday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,5971
-2021-06-21,11:12,Monday,ISLINGTON STATION,MUTD,0,0,W,BD,5307
-2021-06-21,11:37,Monday,CASTLE FRANK STATION,MUPR1,109,113,E,BD,5004
-2021-06-21,11:39,Monday,ISLINGTON STATION,TUKEY,4,8,E,BD,5091
-2021-06-21,11:46,Monday,BROADVIEW STATION,SUDP,0,0,E,BD,5027
-2021-06-21,12:44,Monday,GLENCAIRN STATION,MUDD,3,6,S,YU,6021
-2021-06-21,14:18,Monday,NORTH YORK CTR STATION,TUOS,3,6,S,YU,5691
-2021-06-21,14:46,Monday,JANE STATION,SUPOL,0,0,W,BD,5116
-2021-06-21,14:55,Monday,ST GEORGE YUS STATION,MUPAA,0,0,N,YU,5691
-2021-06-21,14:59,Monday,YONGE BD STATION,SUDP,4,8,E,BD,5142
-2021-06-21,15:08,Monday,SUMMERHILL STATION,MUPAA,0,0,N,YU,5436
-2021-06-21,15:19,Monday,RUNNYMEDE STATION,SUPOL,0,0,E,BD,5107
-2021-06-21,15:42,Monday,CASTLE FRANK STATION,MUPLB,5,9,W,BD,5082
-2021-06-21,15:45,Monday,DUNDAS STATION,MUPAA,3,6,N,YU,5656
-2021-06-21,16:46,Monday,OSSINGTON STATION,PUMEL,0,0,,BD,0
-2021-06-21,16:50,Monday,CHESTER STATION,TUMVS,3,7,W,BD,5190
-2021-06-21,16:54,Monday,EGLINTON STATION,TUMVS,0,0,N,YU,5876
-2021-06-21,17:49,Monday,ROSEDALE STATION,MUSC,0,0,N,YU,5831
-2021-06-21,19:28,Monday,DAVISVILLE STATION,SUUT,6,11,S,YU,5726
-2021-06-21,20:22,Monday,VICTORIA PARK STATION,SUO,0,0,,BD,0
-2021-06-21,20:39,Monday,FINCH STATION,MUSAN,5,10,S,YU,5511
-2021-06-21,22:00,Monday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-06-21,22:18,Monday,QUEEN STATION,SUSA,0,0,S,YU,5725
-2021-06-21,22:38,Monday,DUNDAS STATION,MUD,5,12,S,YU,6016
-2021-06-21,22:47,Monday,ST ANDREW STATION,SUAP,18,25,N,YU,6016
-2021-06-21,23:32,Monday,ROSEDALE STATION,SUDP,8,15,S,YU,5851
-2021-06-21,23:59,Monday,SHEPPARD STATION,SUAE,5,12,S,YU,5581
-2021-06-21,00:00,Monday,VAUGHAN MC STATION,MUO,0,0,,YU,0
-2021-06-21,00:00,Monday,BLOOR TO SHEPPARD STAT,MUO,0,0,,YU,0
-2021-06-21,00:51,Monday,WELLESLEY STATION,SUAE,10,17,N,YU,5486
-2021-06-21,01:43,Monday,PIONEER VILLAGE STATIO,MUPAA,0,0,S,YU,6011
-2021-06-22,02:53,Tuesday,DOWNSVIEW PARK STATION,PUMO,0,0,,YU,0
-2021-06-22,06:00,Tuesday,TORONTO TRANSIT COMMIS,MRO,0,0,,SRT,0
-2021-06-22,05:55,Tuesday,FINCH STATION,PUTDN,6,10,N,YU,6071
-2021-06-22,06:00,Tuesday,TORONTO TRANSIT COMMIS,MRO,0,0,,SRT,0
-2021-06-22,06:00,Tuesday,TORONTO TRANSIT COMMIS,MUO,0,0,,YU/BD,0
-2021-06-22,06:00,Tuesday,TORONTO TRANSIT COMMIS,MUO,0,0,,YU/BD,0
-2021-06-22,06:07,Tuesday,WELLESLEY STATION,PUTNT,3,7,N,YU,5716
-2021-06-22,06:11,Tuesday,WELLESLEY STATION,PUTNT,3,7,N,YU,5441
-2021-06-22,07:24,Tuesday,FINCH STATION,MUSC,3,6,S,YU,5976
-2021-06-22,07:32,Tuesday,ROSEDALE STATION,MUSC,0,0,N,YU,5521
-2021-06-22,08:31,Tuesday,MUSEUM STATION,MUPAA,3,6,N,YU,5526
-2021-06-22,09:10,Tuesday,UNION STATION,MUIRS,0,0,,YU,0
-2021-06-22,09:32,Tuesday,VAUGHAN MC STATION,MUCL,3,6,S,YU,5401
-2021-06-22,11:03,Tuesday,COXWELL STATION,SUDP,3,7,E,BD,5111
-2021-06-22,11:30,Tuesday,FINCH STATION,MUI,3,6,S,YU,5691
-2021-06-22,12:15,Tuesday,OLD MILL STATION,TUMVS,0,0,W,BD,5247
-2021-06-22,13:51,Tuesday,JANE STATION,TUMVS,3,7,W,BD,5221
-2021-06-22,14:16,Tuesday,BLOOR STATION,MUPAA,0,0,S,YU,6071
-2021-06-22,14:20,Tuesday,FINCH STATION,MUIS,0,0,,YU,0
-2021-06-22,14:26,Tuesday,ST CLAIR WEST STATION,MUIR,9,12,S,YU,5941
-2021-06-22,14:46,Tuesday,FINCH STATION,TUNIP,5,8,S,YU,5611
-2021-06-22,16:06,Tuesday,SHERBOURNE STATION,MUPAA,0,0,E,BD,5105
-2021-06-22,16:31,Tuesday,ROSEDALE STATION,MUSC,0,0,N,YU,5466
-2021-06-22,16:40,Tuesday,ST CLAIR STATION,PUMEL,0,0,,YU,0
-2021-06-22,17:02,Tuesday,GLENCAIRN STATION,EUDO,4,7,N,YU,5581
-2021-06-22,17:40,Tuesday,DUNDAS STATION,MUIS,0,0,S,YU,0
-2021-06-22,18:25,Tuesday,SHERBOURNE STATION,PUMEL,0,0,,BD,0
-2021-06-22,19:03,Tuesday,BLOOR STATION,MUIS,0,0,,YU,0
-2021-06-22,20:34,Tuesday,EGLINTON WEST STATION,MUIRS,0,0,N,YU,5596
-2021-06-22,21:04,Tuesday,LAWRENCE STATION,TUS,5,9,N,YU,5891
-2021-06-22,21:51,Tuesday,SUMMERHILL STATION,MUIS,0,0,S,YU,0
-2021-06-22,22:00,Tuesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-06-22,22:09,Tuesday,FINCH STATION,MUSC,0,0,S,YU,5461
-2021-06-22,22:34,Tuesday,EGLINTON WEST STATION,MUIS,0,0,S,YU,0
-2021-06-22,22:59,Tuesday,ISLINGTON STATION,TUSC,0,0,W,BD,5186
-2021-06-22,00:23,Tuesday,NORTH YORK CTR STATION,TUO,5,12,S,YU,5476
-2021-06-22,00:51,Tuesday,SHEPPARD STATION,TUSC,0,0,N,YU,5476
-2021-06-22,01:12,Tuesday,SHEPPARD STATION,TUSC,0,0,N,YU,5621
-2021-06-22,01:55,Tuesday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-06-22,06:00,Tuesday,TORONTO TRANSIT COMMIS,MUO,0,0,,SHP,0
-2021-06-22,06:00,Tuesday,TORONTO TRANSIT COMMIS,MUO,0,0,,SHP,0
-2021-06-22,19:17,Tuesday,DON MILLS STATION,MUPAA,0,0,W,SHP,6176
-2021-06-22,22:57,Tuesday,BAYVIEW STATION,TUMVS,0,0,W,SHP,6161
-2021-06-23,15:08,Wednesday,ELLESMERE STATION,ERDO,5,10,S,SRT,3012
-2021-06-23,02:26,Wednesday,ISLINGTON STATION,PUCSS,0,0,E,BD,0
-2021-06-23,04:45,Wednesday,WILSON YARD,PUTWZ,0,0,,YU,0
-2021-06-23,05:00,Wednesday,KEELE STATION,TUCC,0,0,E,BD,0
-2021-06-23,05:32,Wednesday,FINCH STATION,TUSC,0,0,S,YU,5471
-2021-06-23,05:57,Wednesday,BROADVIEW STATION,PUTO,4,10,W,BD,5060
-2021-06-23,06:16,Wednesday,WELLESLEY STATION,MUPAA,0,0,S,YU,5906
-2021-06-23,06:28,Wednesday,BROADVIEW STATION,MUIR,0,0,,BD,0
-2021-06-23,07:01,Wednesday,FINCH STATION,MUSC,0,0,S,YU,5441
-2021-06-23,08:48,Wednesday,EGLINTON WEST STATION,SUDP,3,6,N,YU,5691
-2021-06-23,09:03,Wednesday,COLLEGE STATION,MUIRS,0,0,S,YU,5911
-2021-06-23,09:16,Wednesday,VICTORIA PARK STATION,EUTR,4,8,W,BD,5058
-2021-06-23,10:00,Wednesday,DUNDAS WEST STATION,SUO,0,0,E,BD,5267
-2021-06-23,10:13,Wednesday,YONGE BD STATION,MUIS,0,0,,BD,0
-2021-06-23,12:30,Wednesday,QUEEN STATION,SUAE,0,0,N,YU,5706
-2021-06-23,14:17,Wednesday,SPADINA BD STATION,SUAP,0,0,,BD,0
-2021-06-23,15:23,Wednesday,SPADINA YUS STATION,SUDP,3,6,N,YU,5886
-2021-06-23,15:34,Wednesday,WILSON STATION,SUO,0,0,N,YU,5726
-2021-06-23,15:41,Wednesday,WARDEN STATION,MUIS,0,0,,BD,0
-2021-06-23,15:44,Wednesday,DAVISVILLE STATION,MUIS,0,0,,YU,0
-2021-06-23,15:52,Wednesday,HIGHWAY 407 STATION,MUIS,0,0,N,YU,0
-2021-06-23,15:56,Wednesday,COLLEGE STATION,MUPAA,3,6,N,YU,5916
-2021-06-23,16:15,Wednesday,EGLINTON STATION,MUTO,3,6,N,YU,5561
-2021-06-23,18:19,Wednesday,ST CLAIR STATION,MUPAA,0,0,N,YU,5901
-2021-06-23,20:27,Wednesday,EGLINTON WEST STATION,MUPAA,0,0,S,YU,5901
-2021-06-23,21:33,Wednesday,VAUGHAN MC STATION,MUATC,0,0,S,YU,5641
-2021-06-23,21:45,Wednesday,BLOOR STATION,MUO,0,0,S,YU,5996
-2021-06-23,21:47,Wednesday,VAUGHAN MC STATION,TUO,7,14,S,YU,5946
-2021-06-23,22:00,Wednesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-06-23,22:13,Wednesday,MUSEUM STATION,MUIR,3,8,N,YU,5891
-2021-06-23,22:15,Wednesday,FINCH STATION,TUSC,0,0,N,YU,6031
-2021-06-23,22:32,Wednesday,COLLEGE STATION,MUATC,7,14,N,YU,5641
-2021-06-23,23:12,Wednesday,CHRISTIE STATION,SUAE,0,0,,BD,0
-2021-06-23,23:40,Wednesday,CASTLE FRANK STATION,SUDP,0,0,E,BD,5052
-2021-06-23,23:44,Wednesday,DUNDAS WEST STATION,SUDP,7,14,W,BD,5160
-2021-06-23,00:00,Wednesday,VAUGHAN MC STATION,MUO,0,0,,YU,0
-2021-06-23,00:00,Wednesday,BLOOR TO SHEPPARD STAT,MUO,0,0,,YU,0
-2021-06-24,15:00,Thursday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-06-24,02:24,Thursday,ST GEORGE YUS STATION,MUIRS,0,0,,YU,0
-2021-06-24,02:36,Thursday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-06-24,05:01,Thursday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-06-24,06:14,Thursday,SHEPPARD WEST STATION,MUTO,3,6,N,YU,5961
-2021-06-24,07:43,Thursday,SHERBOURNE STATION,MUPAA,3,7,E,BD,5332
-2021-06-24,07:45,Thursday,FINCH STATION,EUSC,0,0,S,YU,5976
-2021-06-24,08:06,Thursday,OSSINGTON STATION,MUPAA,0,0,E,BD,5330
-2021-06-24,08:16,Thursday,DUNDAS WEST STATION,MUPAA,0,0,W,BD,5284
-2021-06-24,08:39,Thursday,DUNDAS STATION,MUO,0,0,,YU,0
-2021-06-24,09:36,Thursday,KING STATION,MUIR,0,0,S,YU,5921
-2021-06-24,10:11,Thursday,BLOOR STATION,MUIS,0,0,N,YU,0
-2021-06-24,10:50,Thursday,JANE STATION,MUPAA,0,0,W,BD,5234
-2021-06-24,12:21,Thursday,KENNEDY BD STATION,SUO,4,8,E,BD,5134
-2021-06-24,12:37,Thursday,NORTH YORK CTR STATION,MUIS,0,0,,YU,0
-2021-06-24,12:50,Thursday,DUNDAS WEST STATION,SUDP,5,9,E,BD,5065
-2021-06-24,13:07,Thursday,MAIN STREET STATION,MUIS,0,0,W,BD,0
-2021-06-24,13:24,Thursday,DAVISVILLE STATION,PUMEL,0,0,,YU,0
-2021-06-24,14:16,Thursday,YORK MILLS STATION,MUPLB,35,38,S,YU,5926
-2021-06-24,14:20,Thursday,MUSEUM STATION,SUAP,4,7,S,YU,6061
-2021-06-24,14:27,Thursday,KENNEDY BD STATION,MUO,5,9,W,BD,5147
-2021-06-24,14:34,Thursday,ROYAL YORK STATION,TUOS,0,0,W,BD,5201
-2021-06-24,15:11,Thursday,DUNDAS WEST STATION,MUIS,0,0,,BD,0
-2021-06-24,15:32,Thursday,KIPLING STATION,TUSC,0,0,W,BD,5276
-2021-06-24,15:42,Thursday,YONGE BD STATION,MUIS,0,0,W,BD,0
-2021-06-24,15:51,Thursday,SPADINA YUS STATION,SUDP,0,0,N,YU,6021
-2021-06-24,15:54,Thursday,SPADINA BD STATION,SUO,0,0,W,BD,5201
-2021-06-24,16:48,Thursday,BATHURST STATION,SUO,0,0,W,BD,5360
-2021-06-24,17:13,Thursday,EGLINTON STATION,PUSTS,0,0,S,YU,5666
-2021-06-24,17:30,Thursday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,0
-2021-06-24,17:47,Thursday,SHEPPARD WEST STATION,MUIS,0,0,,YU,0
-2021-06-24,17:55,Thursday,BAY STATION,MUIS,0,0,,BD,0
-2021-06-24,17:55,Thursday,FINCH STATION,MUNOA,3,6,S,YU,0
-2021-06-24,17:58,Thursday,VAUGHAN MC STATION,MUCL,3,6,S,YU,5871
-2021-06-24,18:07,Thursday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,0
-2021-06-24,18:14,Thursday,SHERBOURNE STATION,MUNCA,0,0,,BD,0
-2021-06-24,19:54,Thursday,SHERBOURNE STATION,MUPAA,0,0,E,BD,5330
-2021-06-24,20:36,Thursday,BLOOR STATION,MUPAA,0,0,N,YU,5816
-2021-06-24,21:48,Thursday,YORK UNIVERSITY STATIO,MUPAA,8,15,S,YU,5691
-2021-06-24,22:00,Thursday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-06-24,22:18,Thursday,SHEPPARD WEST STATION,MUPAA,0,0,N,YU,5626
-2021-06-24,22:40,Thursday,ISLINGTON STATION,PUMEL,0,0,,BD,0
-2021-06-24,23:16,Thursday,QUEEN'S PARK STATION,SUUT,20,27,N,YU,6021
-2021-06-24,00:00,Thursday,VAUGHAN MC STATION,MUO,0,0,,YU,0
-2021-06-24,00:00,Thursday,BLOOR TO SHEPPARD STAT,MUO,0,0,,YU,0
-2021-06-24,00:04,Thursday,SHEPPARD WEST STATION,MUO,7,14,N,YU,6021
-2021-06-24,01:03,Thursday,BAY STATION,MUIRS,0,0,,BD,0
-2021-06-24,01:43,Thursday,DUNDAS STATION,MUIRS,0,0,,YU,0
-2021-06-24,22:02,Thursday,DON MILLS STATION,MUIS,0,0,,SHP,0
-2021-06-25,14:13,Friday,SRT LINE,MRWEA,0,0,,SRT,0
-2021-06-25,02:01,Friday,WILSON STATION,MUIS,0,0,,YU,0
-2021-06-25,05:46,Friday,HIGH PARK STATION,EUME,4,0,W,BD,5276
-2021-06-25,22:34,Friday,SCARBOROUGH CTR STATIO,SRDP,0,0,S,SRT,3008
-2021-06-25,05:56,Friday,ISLINGTON STATION,TUSC,0,0,W,BD,5276
-2021-06-25,07:02,Friday,FINCH STATION,EUSC,0,0,S,YU,5556
-2021-06-25,07:10,Friday,YONGE BD STATION,SUDP,0,0,W,BD,5276
-2021-06-25,07:27,Friday,SHERBOURNE STATION,MUPAA,3,7,E,BD,5141
-2021-06-25,07:37,Friday,DONLANDS STATION,MUDD,3,7,E,BD,5141
-2021-06-25,07:48,Friday,DUNDAS STATION,EUDO,7,10,N,YU,5656
-2021-06-25,09:16,Friday,FINCH STATION,TUSC,0,0,S,YU,5591
-2021-06-25,11:17,Friday,ST GEORGE YUS STATION,SUAE,0,0,,YU,0
-2021-06-25,11:28,Friday,DAVISVILLE STATION,PUATC,5,8,N,YU,5446
-2021-06-25,12:09,Friday,SPADINA YUS STATION,SUO,17,20,S,YU,5826
-2021-06-25,12:10,Friday,SPADINA BD STATION,SUO,17,21,E,BD,5101
-2021-06-25,13:04,Friday,FINCH STATION,MUTO,3,6,S,YU,6001
-2021-06-25,13:17,Friday,LANSDOWNE STATION,PUMST,0,0,E,BD,0
-2021-06-25,13:44,Friday,EGLINTON STATION,SUDP,0,0,N,YU,0
-2021-06-25,14:12,Friday,QUEEN STATION,SUDP,0,0,,YU,0
-2021-06-25,14:16,Friday,DAVISVILLE STATION,SUAP,0,0,N,YU,5431
-2021-06-25,14:35,Friday,MAIN STREET STATION,PUMEL,0,0,,BD,0
-2021-06-25,14:43,Friday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,0
-2021-06-25,15:02,Friday,FINCH WEST STATION,PUMEL,0,0,,YU,0
-2021-06-25,15:16,Friday,OLD MILL STATION,MUDD,5,9,W,BD,5265
-2021-06-25,15:17,Friday,SHEPPARD WEST STATION,MUATC,3,6,S,YU,5491
-2021-06-25,15:50,Friday,WILSON STATION,MUPAA,0,0,S,YU,5606
-2021-06-25,15:52,Friday,SHEPPARD STATION,MUSC,0,0,N,YU,5781
-2021-06-25,15:53,Friday,KIPLING STATION,MUSC,0,0,W,BD,5276
-2021-06-25,15:57,Friday,SHEPPARD STATION,MUSC,3,6,N,YU,5536
-2021-06-25,16:51,Friday,ST CLAIR WEST STATION,MUTO,3,6,S,YU,5641
-2021-06-25,17:09,Friday,BATHURST STATION,SUDP,7,11,E,BD,5134
-2021-06-25,17:48,Friday,BLOOR STATION,MUIS,0,0,,YU,0
-2021-06-25,17:54,Friday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,0
-2021-06-25,18:10,Friday,BLOOR STATION,MUIS,0,0,,YU,0
-2021-06-25,18:15,Friday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,0
-2021-06-25,18:17,Friday,ROSEDALE STATION,MUSC,3,6,N,YU,5536
-2021-06-25,18:31,Friday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,5996
-2021-06-25,18:44,Friday,ROSEDALE STATION,TUO,7,11,S,YU,5441
-2021-06-25,18:50,Friday,FINCH STATION,SUAE,3,6,S,YU,5661
-2021-06-25,19:42,Friday,RUNNYMEDE STATION,MUPAA,0,0,E,BD,5038
-2021-06-25,21:57,Friday,UNION STATION,MUPAA,0,0,N,YU,5626
-2021-06-25,22:00,Friday,YONGE-UNIVERSITY/BLOOR,MUO,0,0,,YU/BD,0
-2021-06-25,22:23,Friday,MAIN STREET STATION,PUSTS,4,11,E,BD,5134
-2021-06-25,22:31,Friday,PAPE STATION,SUDP,4,11,E,BD,5112
-2021-06-25,22:32,Friday,DUNDAS STATION,MUPAA,0,0,N,YU,6026
-2021-06-25,23:00,Friday,BLOOR DANFORTH SUBWAY,MUO,0,0,,BD,0
-2021-06-25,23:43,Friday,FINCH STATION,TUSC,0,0,S,YU,5666
-2021-06-25,23:47,Friday,WOODBINE STATION,TUMVS,0,0,E,BD,5126
-2021-06-25,01:25,Friday,SPADINA YUS STATION,MUPAA,0,0,S,YU,5661
-2021-06-25,01:44,Friday,SHEPPARD WEST STATION,MUI,11,18,S,YU,5576
-2021-06-25,17:21,Friday,BESSARION STATION,TUMVS,10,15,E,SHP,6146
-2021-06-26,02:42,Saturday,DAVISVILLE BUILD UP,EUOE,0,0,,YU,6021
-2021-06-26,05:55,Saturday,MCCOWAN STATION,TRO,7,14,S,SRT,3022
-2021-06-26,06:00,Saturday,KIPLING TO JANE STATIO,MUO,0,0,,BD,0
-2021-06-26,06:00,Saturday,KENNEDY BD STATION,TUMVS,5,10,E,BD,5186
-2021-06-26,10:28,Saturday,VAUGHAN MC STATION,TUNIP,3,12,S,YU,5851
-2021-06-26,10:35,Saturday,DUNDAS STATION,SUDP,0,0,N,YU,5721
-2021-06-26,10:56,Saturday,WELLESLEY STATION,SUDP,3,6,S,YU,5471
-2021-06-26,11:02,Saturday,JANE STATION,SUDP,3,8,W,BD,5069
-2021-06-26,11:12,Saturday,DUPONT STATION,MUPAA,0,0,S,YU,5486
-2021-06-26,12:01,Saturday,ST CLAIR STATION,EUBO,4,8,N,YU,5616
-2021-06-26,12:37,Saturday,FINCH STATION,EUSC,0,0,S,YU,5556
-2021-06-26,16:51,Saturday,BROADVIEW STATION,SUUT,8,13,W,BD,5158
-2021-06-26,17:03,Saturday,BLOOR STATION,MUIS,0,0,S,YU,0
-2021-06-26,17:10,Saturday,VAUGHAN MC STATION,MUNOA,4,8,S,YU,5666
-2021-06-26,18:25,Saturday,BLOOR STATION,MUPAA,5,9,N,YU,5721
-2021-06-26,18:25,Saturday,QUEEN'S PARK STATION,PUMEL,0,0,,YU,0
-2021-06-26,18:33,Saturday,NORTH YORK CTR STATION,SUO,0,0,S,YU,5911
-2021-06-26,19:01,Saturday,DUPONT STATION,MUO,0,0,S,YU,5621
-2021-06-26,20:07,Saturday,COLLEGE STATION,PUMEL,0,0,S,YU,0
-2021-06-26,21:20,Saturday,YORK MILLS STATION,TUSC,0,0,N,YU,6056
-2021-06-26,22:00,Saturday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-06-26,22:23,Saturday,LAWRENCE STATION,MUIS,0,0,,YU,0
-2021-06-26,23:40,Saturday,FINCH STATION,MUNOA,7,14,S,YU,0
-2021-06-27,08:10,Sunday,MCCOWAN STATION,ERTC,6,12,S,SRT,3000
-2021-06-27,02:27,Sunday,VAUGHAN MC STATION,MUIS,0,0,,YU,0
-2021-06-27,07:46,Sunday,LAWRENCE STATION,SUO,0,0,,YU,0
-2021-06-27,08:24,Sunday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-06-27,08:00,Sunday,KIPLING TO JANE STATIO,MUO,0,0,,BD,0
-2021-06-27,12:10,Sunday,SCARBOROUGH CTR STATIO,ERDO,4,10,S,SRT,3000
-2021-06-27,09:54,Sunday,EGLINTON STATION,MUCL,5,10,N,YU,0
-2021-06-27,10:37,Sunday,MAIN STREET STATION,SUAP,0,0,,BD,0
-2021-06-27,12:42,Sunday,SUMMERHILL STATION,TUOS,4,8,S,YU,5816
-2021-06-27,14:14,Sunday,SHERBOURNE STATION,MUPAA,0,0,E,BD,5352
-2021-06-27,14:49,Sunday,ST GEORGE BD STATION,MUPAA,0,0,W,BD,5116
-2021-06-27,15:48,Sunday,OSSINGTON STATION,SUUT,5,10,W,BD,5065
-2021-06-27,16:41,Sunday,YORKDALE STATION,EUNT,5,10,S,YU,5511
-2021-06-27,17:02,Sunday,NORTH YORK CTR STATION,MUNCA,0,0,,YU,0
-2021-06-27,17:08,Sunday,WILSON HOSTLER,EUYRD,0,0,S,YU,6196
-2021-06-27,17:26,Sunday,COLLEGE STATION,MUNCA,0,0,,YU,0
-2021-06-27,17:28,Sunday,KIPLING STATION,MUNCA,0,0,,BD,0
-2021-06-27,17:37,Sunday,COXWELL STATION,MUTO,5,10,E,BD,5190
-2021-06-27,18:56,Sunday,WELLESLEY STATION,MUPAA,0,0,N,YU,5796
-2021-06-27,19:09,Sunday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-06-27,19:13,Sunday,WARDEN STATION,MUIS,0,0,,BD,0
-2021-06-27,19:21,Sunday,VAUGHAN MC STATION,EUDO,3,10,S,YU,5826
-2021-06-27,19:36,Sunday,BLOOR STATION,MUNOA,0,0,N,YU,5861
-2021-06-27,22:00,Sunday,YONGE UNIVERSITY BLOOR,MUO,0,0,,YU/BD,0
-2021-06-27,22:38,Sunday,DUNDAS STATION,MUIS,0,0,N,YU,0
-2021-06-27,22:53,Sunday,FINCH STATION,MUNOA,7,14,S,YU,5741
-2021-06-27,23:30,Sunday,BATHURST STATION,PUMEL,0,0,,BD,0
-2021-06-27,23:53,Sunday,BATHURST STATION,PUTDN,28,35,E,BD,5142
-2021-06-27,01:49,Sunday,KEELE YARD,TUMVS,0,0,E,BD,5157
-2021-06-27,16:06,Sunday,SHEPPARD-YONGE STATION,MUNCA,0,0,,SHP,0
-2021-06-27,17:19,Sunday,BESSARION STATION,SUAP,0,0,E,SHP,6141
-2021-06-27,17:55,Sunday,DON MILLS STATION,MUIRS,0,0,,SHP,0
-2021-06-28,08:14,Monday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-06-28,05:51,Monday,WELLESLEY STATION,MUIRS,0,0,,YU,0
-2021-06-28,05:53,Monday,KIPLING STATION,SUG,6,12,E,BD,5251
-2021-06-28,08:16,Monday,LAWRENCE EAST STATION,SRDP,0,0,N,SRT,3015
-2021-06-28,05:58,Monday,BLOOR STATION,SUDP,0,0,S,YU,0
-2021-06-28,08:25,Monday,SCARBOROUGH CTR STATIO,SRDP,0,0,N,SRT,3015
-2021-06-28,06:26,Monday,BATHURST STATION,MUIRS,0,0,W,BD,0
-2021-06-28,12:00,Monday,MCCOWAN STATION,SRDP,0,0,,SRT,0
-2021-06-28,06:34,Monday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-06-28,06:34,Monday,YONGE BD STATION,MUPAA,0,0,W,BD,5280
-2021-06-28,07:17,Monday,MAIN STREET STATION,SUDP,0,0,W,BD,5225
-2021-06-28,07:19,Monday,SHERBOURNE STATION,MUIS,0,0,,BD,0
-2021-06-28,07:21,Monday,NORTH YORK CTR STATION,MUSC,0,0,S,YU,5786
-2021-06-28,07:33,Monday,LAWERENCE STATION,EUBO,3,6,N,YU,5996
-2021-06-28,08:03,Monday,QUEEN STATION,MUIRS,0,0,,YU,0
-2021-06-28,08:38,Monday,LAWRENCE STATION,MUI,15,18,S,YU,5526
-2021-06-28,09:01,Monday,ST CLAIR STATION,EUSC,0,0,N,YU,5841
-2021-06-28,09:40,Monday,VAUGHAN MC STATION,MUIS,0,0,,YU,0
-2021-06-28,10:04,Monday,DUFFERIN STATION,SUDP,4,8,W,BD,5136
-2021-06-28,10:15,Monday,HIGHWAY 407 STATION,EUTRD,3,6,S,YU,5796
-2021-06-28,10:19,Monday,LANSDOWNE STATION,SUDP,0,0,W,BD,5095
-2021-06-28,10:41,Monday,LANSDOWNE STATION,MUIS,0,0,,BD,0
-2021-06-28,11:17,Monday,GREENWOOD STATION,TUMVS,0,0,E,BD,5367
-2021-06-28,11:33,Monday,ROSEDALE STATION,EUBK,5,8,N,YU,5486
-2021-06-28,11:56,Monday,ST GEORGE BD STATION,MUIRS,3,7,W,BD,5276
-2021-06-28,12:02,Monday,OLD MILL STATION,MUIS,5,9,W,BD,5136
-2021-06-28,12:18,Monday,BLOOR STATION,MUIR,3,6,S,YU,5561
-2021-06-28,12:51,Monday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5761
-2021-06-28,13:54,Monday,VICTORIA PARK STATION,MUIS,0,0,,BD,0
-2021-06-28,14:13,Monday,DUNDAS WEST STATION,EUSC,0,0,W,BD,5198
-2021-06-28,14:25,Monday,UNION STATION,MUPAA,0,0,N,YU,5596
-2021-06-28,14:31,Monday,KENNEDY BD STATION,PUTSC,19,23,W,BD,5111
-2021-06-28,14:47,Monday,QUEEN STATION,PUMEL,0,0,,YU,0
-2021-06-28,15:28,Monday,QUEEN STATION,MUIS,0,0,S,YU,0
-2021-06-28,15:47,Monday,ST GEORGE BD STATION,MUSC,0,0,W,BD,5011
-2021-06-28,15:49,Monday,DUNDAS WEST STATION,EUSC,3,7,W,BD,5198
-2021-06-28,15:56,Monday,ROSEDALE STATION,EUSC,3,6,N,YU,5976
-2021-06-28,16:21,Monday,COXWELL STATION,MUCL,6,10,E,BD,5122
-2021-06-28,16:22,Monday,KIPLING STATION,SUDP,4,8,E,BD,5029
-2021-06-28,16:29,Monday,KENNEDY BD STATION,PUTSC,4,8,E,BD,5023
-2021-06-28,16:30,Monday,EGLINTON STATION,PUSTS,0,0,S,YU,6006
-2021-06-28,16:35,Monday,LAWRENCE STATION,TUO,6,9,N,YU,5941
-2021-06-28,16:44,Monday,FINCH STATION,EUSC,0,0,N,YU,5726
-2021-06-28,16:44,Monday,BLOOR STATION,MUIR,0,0,N,YU,5566
-2021-06-28,17:57,Monday,KENNEDY BD STATION,PUTSC,7,11,E,BD,5186
-2021-06-28,18:02,Monday,KENNEDY BD STATION,EUBK,4,8,W,BD,5332
-2021-06-28,19:30,Monday,KENNEDY BD STATION,PUTSC,8,12,E,BD,5242
-2021-06-28,19:57,Monday,ST ANDREW STATION,SUDP,0,0,N,YU,5836
-2021-06-28,20:03,Monday,NORTH YORK CTR STATION,MUSC,0,0,S,YU,5536
-2021-06-28,20:08,Monday,NORTH YORK CTR STATION,MUSC,0,0,S,YU,5856
-2021-06-28,20:16,Monday,NORTH YORK CTR STATION,MUSC,0,0,S,YU,5676
-2021-06-28,20:51,Monday,EGLINTON STATION,PUSWZ,0,0,,YU,0
-2021-06-28,21:46,Monday,COLLEGE STATION,PUMEL,0,0,,YU,0
-2021-06-28,23:00,Monday,YONGE- UNIVERSITY SUBW,MUO,0,0,,YU,0
-2021-06-28,23:28,Monday,CHRISTIE STATION,TUMVS,0,0,E,BD,5148
-2021-06-28,23:28,Monday,COXWELL STATION,SUPOL,8,15,E,BD,5101
-2021-06-28,00:14,Monday,SHERBOURNE STATION,MUI,7,14,E,BD,5146
-2021-06-28,01:03,Monday,COXWELL STATION,MUNCA,0,0,,,0
-2021-06-28,01:17,Monday,QUEEN STATION,MUIS,0,0,S,YU,0
-2021-06-28,01:21,Monday,ST CLAIR WEST STATION,MUATC,3,10,N,YU,5386
-2021-06-28,00:14,Monday,SHEPPARD-YONGE STATION,TUSC,0,0,E,SHP,6141
-2021-06-29,10:10,Tuesday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-06-29,05:35,Tuesday,UNION STATION,SUDP,0,0,,YU,0
-2021-06-29,17:47,Tuesday,MCCOWAN STATION,ERDO,4,9,S,SRT,3026
-2021-06-29,05:53,Tuesday,WELLESLEY STATION,SUDP,0,0,,YU,0
-2021-06-29,06:46,Tuesday,YORK MILLS STATION,MUIS,0,0,,YU,0
-2021-06-29,06:54,Tuesday,SHEPPARD STATION,MUIS,0,0,,YU,0
-2021-06-29,06:56,Tuesday,CHRISTIE STATION,MUPAA,0,0,W,BD,5029
-2021-06-29,07:07,Tuesday,MUSEUM STATION,EUTL,13,16,S,YU,5451
-2021-06-29,07:16,Tuesday,YONGE BD STATION,MUPAA,0,0,W,BD,5280
-2021-06-29,07:55,Tuesday,SHEPPARD STATION,EUBO,4,7,S,YU,5841
-2021-06-29,09:06,Tuesday,BLOOR STATION,SUG,4,7,N,YU,5786
-2021-06-29,09:15,Tuesday,YORKDALE STATION,SUDP,6,9,S,YU,5481
-2021-06-29,09:17,Tuesday,YORKDALE STATION,MUPAA,0,0,N,YU,5431
-2021-06-29,09:49,Tuesday,UNION STATION,SUDP,3,6,N,YU,5481
-2021-06-29,10:21,Tuesday,MUSEUM STATION,PUTTP,348,351,S,YU,5631
-2021-06-29,10:31,Tuesday,ST CLAIR STATION,TUOS,3,6,S,YU,5951
-2021-06-29,11:06,Tuesday,KEELE STATION,MUSC,0,0,W,BD,5136
-2021-06-29,11:45,Tuesday,BROADVIEW STATION,MUIS,0,0,E,BD,0
-2021-06-29,12:47,Tuesday,DUFFERIN STATION,PUMEL,0,0,,BD,0
-2021-06-29,13:16,Tuesday,ST CLAIR STATION,MUPAA,0,0,S,YU,5406
-2021-06-29,14:05,Tuesday,WELLESLEY STATION,SUUT,28,31,N,YU,5671
-2021-06-29,14:35,Tuesday,BLOOR STATION,PUMEL,0,0,,YU,0
-2021-06-29,14:45,Tuesday,WELLESLEY STATION,SUDP,3,6,N,YU,5996
-2021-06-29,15:02,Tuesday,BLOOR STATION,MUIS,0,0,,YU,0
-2021-06-29,15:17,Tuesday,EGLINTON STATION,PUSTC,0,0,S,YU,5406
-2021-06-29,15:37,Tuesday,OLD MILL STATION,MUSC,0,0,W,BD,5198
-2021-06-29,15:42,Tuesday,ST GEORGE YUS STATION,TUO,0,0,S,YU,5621
-2021-06-29,18:28,Tuesday,SHERBOURNE STATION,SUO,4,8,W,BD,5029
-2021-06-29,19:32,Tuesday,QUEEN'S PARK STATION,PUMEL,0,0,,YU,0
-2021-06-29,20:19,Tuesday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-06-29,21:07,Tuesday,YORK MILLS STATION,TUSC,0,0,N,YU,5591
-2021-06-29,21:51,Tuesday,UNION STATION,PUMST,0,0,,YU,0
-2021-06-29,22:00,Tuesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-06-29,22:11,Tuesday,YONGE BD STATION,MUIRS,0,0,E,BD,0
-2021-06-29,23:00,Tuesday,ST.CLAIR WEST TO ST.A,MUO,0,0,,YU,0
-2021-06-29,23:39,Tuesday,EGLINTON STATION,MUIR,6,13,S,YU,6076
-2021-06-29,00:58,Tuesday,FINCH STATION,SUAP,7,14,S,YU,5851
-2021-06-29,01:16,Tuesday,WARDEN STATION,MUIRS,0,0,,BD,0
-2021-06-29,16:14,Tuesday,SHEPPARD-YONGE STATION,MUI,5,10,E,SHP,6166
-2021-06-29,19:38,Tuesday,BAYVIEW STATION,PUOPO,0,0,W,SHP,6146
-2021-06-29,21:40,Tuesday,SHEPPARD-YONGE STATION,MUTO,0,0,E,SHP,6161
-2021-06-29,01:09,Tuesday,LESLIE STATION,MUIS,0,0,,SHP,0
-2021-06-30,06:00,Wednesday,TORONTO TRANSIT COMMIS,MUO,0,0,,YU/BD,0
-2021-06-30,06:00,Wednesday,TORONTO TRANSIT COMMIS,MRO,0,0,,SRT,0
-2021-06-30,07:31,Wednesday,KENNEDY SRT STATION,ERDO,4,9,S,SRT,3028
-2021-06-30,06:01,Wednesday,PAPE STATION,MUPAA,0,0,W,BD,5097
-2021-06-30,06:40,Wednesday,BLOOR STATION,MUIRS,0,0,S,YU,6026
-2021-06-30,10:13,Wednesday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-06-30,07:14,Wednesday,MAIN STREET STATION,MUIS,0,0,,BD,0
-2021-06-30,20:08,Wednesday,SCARBOROUGH CTR STATIO,MRUI,0,0,,SRT,0
-2021-06-30,21:13,Wednesday,MCCOWAN STATION,ERO,9,15,S,SRT,3016
-2021-06-30,07:37,Wednesday,YORK MILLS STATION,PUSTC,14,17,S,YU,5641
-2021-06-30,10:28,Wednesday,NORTH YORK CTR STATION,EUSC,3,6,S,YU,5991
-2021-06-30,10:32,Wednesday,ST CLAIR WEST STATION,MUTO,3,6,N,YU,5666
-2021-06-30,10:34,Wednesday,KIPLING STATION,MUPAA,0,0,W,BD,5038
-2021-06-30,11:01,Wednesday,KENNEDY BD STATION,SUO,0,0,,BD,0
-2021-06-30,12:33,Wednesday,SPADINA YUS STATION,MUIRS,0,0,,YU,0
-2021-06-30,12:55,Wednesday,SHEPPARD STATION,PUMEL,0,0,,YU,0
-2021-06-30,13:21,Wednesday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,5681
-2021-06-30,13:31,Wednesday,DAVISVILLE STATION,PUMEL,0,0,,YU,0
-2021-06-30,13:45,Wednesday,ST GEORGE BD STATION,PUMEL,0,0,,BD,0
-2021-06-30,13:59,Wednesday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,0
-2021-06-30,14:35,Wednesday,SUMMERHILL STATION,TUOS,3,6,N,YU,5996
-2021-06-30,14:47,Wednesday,SHEPPARD STATION,PUSIS,3,6,S,YU,5841
-2021-06-30,14:54,Wednesday,SUMMERHILL STATION,MUIS,0,0,S,YU,5856
-2021-06-30,18:03,Wednesday,SPADINA BD STATION,EUDO,8,12,W,BD,5265
-2021-06-30,18:18,Wednesday,YORK MILLS STATION,MUSC,0,0,N,YU,5726
-2021-06-30,18:41,Wednesday,DAVISVILLE STATION,MUI,4,7,N,YU,6066
-2021-06-30,18:53,Wednesday,SHEPPARD STATION,PUSIS,0,0,S,YU,5836
-2021-06-30,19:12,Wednesday,SHEPPARD STATION,PUSO,0,0,S,YU,5861
-2021-06-30,19:49,Wednesday,ROSEDALE STATION,PUSI,5,10,S,YU,5676
-2021-06-30,20:58,Wednesday,JANE STATION,SUDP,0,0,E,BD,5004
-2021-06-30,21:12,Wednesday,ST CLAIR WEST TO ST AN,MUO,0,0,,YU,0
-2021-06-30,21:13,Wednesday,DUFFERIN STATION,MUIS,4,11,W,BD,0
-2021-06-30,21:52,Wednesday,VICTORIA PARK STATION,SUDP,4,11,W,BD,5275
-2021-06-30,22:00,Wednesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-06-30,22:02,Wednesday,WILSON STATION,MUIS,0,0,S,YU,5791
-2021-06-30,22:35,Wednesday,SHERBOURNE STATION,MUI,5,12,W,BD,5109
-2021-06-30,22:44,Wednesday,ST GEORGE YUS STATION,SUDP,4,11,N,YU,5596
-2021-06-30,23:03,Wednesday,KENNEDY STATION,PUMEL,0,0,,BD,0
-2021-06-30,23:41,Wednesday,EGLINTON STATION,EUSC,0,0,S,YU,5786
-2021-06-30,00:11,Wednesday,BAY STATION,PUTDN,0,0,W,BD,5112
-2021-06-30,00:42,Wednesday,VAUGHAN MC STATION,MUPAA,0,0,S,YU,5511
-2021-06-30,00:45,Wednesday,OSSINGTON STATION,MUIRS,0,0,E,BD,0
-2021-06-30,00:47,Wednesday,BATHURST STATION,MUIS,0,0,,BD,0
-2021-06-30,01:23,Wednesday,ST CLAIR STATION,MUIS,0,0,,YU,0
-2021-06-30,06:00,Wednesday,TORONTO TRANSIT COMMIS,MUO,0,0,,SHP,0
-2021-06-30,12:40,Wednesday,LESLIE STATION,MUIS,0,0,,SHP,0
-2021-06-30,20:50,Wednesday,LESLIE STATION,MUTD,9,14,E,SHP,6171
-2021-06-30,00:45,Wednesday,LESLIE STATION,TUMVS,5,10,E,SHP,6166
-2021-07-01,06:02,Thursday,MCCOWAN STATION,TRNIP,6,12,S,SRT,3004
-2021-07-01,03:59,Thursday,ST GEORGE YUS STATION,MUO,0,0,S,YU,0
-2021-07-01,06:10,Thursday,DUNDAS WEST STATION,MUSC,0,0,E,BD,5158
-2021-07-01,15:45,Thursday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-07-01,08:56,Thursday,EGLINTON STATION,TUNIP,5,10,N,YU,5846
-2021-07-01,09:24,Thursday,SHEPPARD STATION,MUDD,5,10,N,YU,5386
-2021-07-01,10:01,Thursday,DUFFERIN STATION,EUNT,3,8,W,BD,5209
-2021-07-01,10:26,Thursday,VAUGHAN MC STATION,MUTO,4,10,S,YU,5841
-2021-07-01,10:58,Thursday,VAUGHAN MC STATION,EUPI,6,12,S,YU,5746
-2021-07-01,11:27,Thursday,ROSEDALE STATION,MUATC,6,11,S,YU,5636
-2021-07-01,11:53,Thursday,FINCH WEST STATION,SUPOL,7,12,S,YU,5666
-2021-07-01,12:22,Thursday,UNION STATION,MUPAA,4,9,N,YU,5691
-2021-07-01,13:10,Thursday,DONLANDS STATION,SUAE,0,0,W,BD,5148
-2021-07-01,13:27,Thursday,LAWRENCE WEST STATION,SUDP,0,0,,YU,0
-2021-07-01,14:46,Thursday,BLOOR STATION,SUDP,4,9,S,YU,5521
-2021-07-01,15:24,Thursday,WILSON STATION,SUAP,6,11,N,YU,5521
-2021-07-01,15:56,Thursday,UNION STATION,PUMEL,0,0,,YU,0
-2021-07-01,16:12,Thursday,YORK MILLS STATION,MUIR,12,17,S,YU,5476
-2021-07-01,16:42,Thursday,FINCH STATION,TUSC,0,0,S,YU,5481
-2021-07-01,17:51,Thursday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-07-01,18:06,Thursday,QUEEN'S PARK STATION,EUDO,5,10,N,YU,5561
-2021-07-01,18:11,Thursday,MUSEUM STATION,EUDO,3,8,N,YU,5561
-2021-07-01,18:27,Thursday,DUPONT STATION,SUDP,11,16,N,YU,5436
-2021-07-01,19:51,Thursday,CHESTER STATION,MUI,13,19,W,BD,5242
-2021-07-01,20:19,Thursday,COLLEGE STATION,PUMEL,0,0,,YU,0
-2021-07-01,22:00,Thursday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-07-01,22:12,Thursday,WELLESLEY STATION,PUMEL,0,0,,YU,0
-2021-07-01,22:59,Thursday,FINCH STATION,MUNOA,7,14,S,YU,5516
-2021-07-01,23:23,Thursday,MAIN STREET STATION,SUDP,0,0,E,BD,5141
-2021-07-01,00:35,Thursday,YORK MILLS STATION,MUSAN,7,14,N,YU,5696
-2021-07-01,00:40,Thursday,ST CLAIR STATION,MUIS,0,0,,YU,0
-2021-07-01,05:55,Thursday,BAYVIEW STATION,TUNIP,4,0,E,SHP,6181
-2021-07-01,15:16,Thursday,SHEPPARD-YONGE STATION,MUSC,0,0,W,SHP,6176
-2021-07-01,23:05,Thursday,SHEPPARD-YONGE STATION,MUPAA,3,9,E,SHP,6181
-2021-07-02,05:05,Friday,QUEEN STATION,MUNCA,0,0,,YU,0
-2021-07-02,06:00,Friday,TORONTO TRANSIT COMMIS,MRO,0,0,,SRT,0
-2021-07-02,06:00,Friday,TORONTO TRANSIT COMMIS,MUO,0,0,,YU,0
-2021-07-02,06:48,Friday,BROADVIEW STATION,EUDO,3,7,E,BD,5265
-2021-07-02,07:09,Friday,MAIN STREET STATION,MUD,3,7,W,BD,5077
-2021-07-02,09:58,Friday,DUPONT STATION,MUIR,0,0,S,YU,5716
-2021-07-02,10:12,Friday,ROSEDALE STATION,SUDP,0,0,N,YU,6056
-2021-07-02,11:25,Friday,SUMMERHILL STATION,MUPAA,0,0,S,YU,6071
-2021-07-02,11:29,Friday,DAVISVILLE STATION,MUPAA,0,0,S,YU,6071
-2021-07-02,11:52,Friday,WELLESLEY STATION,SUDP,3,6,N,YU,5686
-2021-07-02,12:08,Friday,LAWRENCE STATION,MUPAA,0,0,N,YU,5686
-2021-07-02,12:23,Friday,YONGE BD STATION,MUIR,0,0,W,BD,5077
-2021-07-02,12:54,Friday,LAWRENCE STATION,MUPAA,0,0,N,YU,5481
-2021-07-02,13:37,Friday,DAVISVILLE STATION,MUPAA,0,0,S,YU,6051
-2021-07-02,14:10,Friday,SHERBOURNE STATION,SUDP,0,0,W,BD,0
-2021-07-02,15:00,Friday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,5556
-2021-07-02,15:24,Friday,YORK MILLS STATION,TUOS,3,6,N,YU,5501
-2021-07-02,16:45,Friday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,5656
-2021-07-02,16:49,Friday,QUEEN STATION,SUDP,5,8,N,YU,5626
-2021-07-02,16:55,Friday,NORTH YORK CTR STATION,SUSA,12,15,S,YU,5656
-2021-07-02,17:11,Friday,MUSEUM STATION,PUSAC,5,8,N,YU,5786
-2021-07-02,17:21,Friday,KING STATION,PUMEL,0,0,,YU,0
-2021-07-02,17:27,Friday,FINCH STATION,TUSC,0,0,N,YU,5726
-2021-07-02,17:30,Friday,KIPLING STATION,EUPI,4,8,E,BD,5133
-2021-07-02,17:42,Friday,KIPLING STATION,MUIRS,0,0,,BD,0
-2021-07-02,17:54,Friday,OLD MILL STATION,EUCD,4,8,E,BD,5133
-2021-07-02,18:02,Friday,HIGH PARK STATION,EUCD,4,8,E,BD,5133
-2021-07-02,18:03,Friday,FINCH STATION,TUMVS,3,6,N,YU,5501
-2021-07-02,18:40,Friday,FINCH STATION,PUMEL,0,0,,YU,0
-2021-07-02,19:53,Friday,SUMMERHILL STATION,TUOS,5,10,N,YU,5546
-2021-07-02,20:35,Friday,DUNDAS WEST STATION,SUO,0,0,W,BD,5077
-2021-07-02,20:35,Friday,VAUGHAN MC STATION,MUNOA,5,10,S,YU,5506
-2021-07-02,21:06,Friday,PAPE STATION,SUDP,7,14,E,BD,5253
-2021-07-02,21:18,Friday,MUSEUM STATION,MUI,15,22,S,YU,5676
-2021-07-02,21:50,Friday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-07-02,22:00,Friday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-07-02,22:20,Friday,YORKDALE STATION,SUDP,5,12,N,YU,5691
-2021-07-02,22:28,Friday,WILSON STATION,MUIR,8,15,N,YU,5691
-2021-07-02,22:45,Friday,CHESTER STATION,SUPOL,0,0,W,BD,5113
-2021-07-02,22:54,Friday,BATHURST STATION,MUIS,0,0,,BD,0
-2021-07-02,23:18,Friday,COLLEGE STATION,EUDO,0,0,N,YU,5501
-2021-07-02,23:21,Friday,KIPLING STATION,SUPOL,7,14,E,BD,5113
-2021-07-02,23:44,Friday,COXWELL STATION,MUIS,0,0,,BD,0
-2021-07-02,00:04,Friday,LAWRENCE STATION,MUIS,0,0,S,YU,5516
-2021-07-02,01:10,Friday,WELLESLEY STATION,MUIS,0,0,,YU,0
-2021-07-02,06:00,Friday,TORONTO TRANSIT COMMIS,MUO,0,0,,SHP,0
-2021-07-02,13:42,Friday,BAYVIEW TO SHEPAPRD/YO,TUO,0,0,E,SHP,6166
-2021-07-03,19:57,Saturday,SRT LINE,MRWEA,0,0,,SRT,0
-2021-07-03,03:01,Saturday,VAUGHAN MC STATION,MUO,0,0,N,YU,0
-2021-07-03,05:53,Saturday,KEELE STATION,TUCC,0,0,W,BD,5179
-2021-07-03,05:57,Saturday,ST PATRICK STATION,EUDO,10,0,S,YU,5936
-2021-07-03,06:12,Saturday,DUNDAS STATION,SUDP,0,0,,YU,0
-2021-07-03,06:27,Saturday,KING STATION,MUIS,0,0,,YU,0
-2021-07-03,06:52,Saturday,EGLINTON STATION,MUNOA,5,10,N,YU,5521
-2021-07-03,09:03,Saturday,BLOOR STATION,TUS,5,11,S,YU,5621
-2021-07-03,10:16,Saturday,FINCH STATION,MUTO,4,8,S,YU,5706
-2021-07-03,11:15,Saturday,DUFFERIN STATION,MUIR,3,7,E,BD,5081
-2021-07-03,11:38,Saturday,ST CLAIR WEST STATION,PUMEL,0,0,,YU,0
-2021-07-03,11:53,Saturday,EGLINTON STATION,PUSTS,7,11,N,YU,5781
-2021-07-03,11:58,Saturday,KIPLING STATION,MUPAA,0,0,E,BD,5041
-2021-07-03,12:45,Saturday,VAUGHAN MC STATION,MUNOA,4,8,S,YU,5841
-2021-07-03,12:57,Saturday,VAUGHAN MC STATION,MUNOA,4,8,S,YU,5781
-2021-07-03,13:10,Saturday,JANE STATION,SUDP,0,0,,BD,0
-2021-07-03,13:47,Saturday,KENNEDY BD STATION,MUI,4,8,W,BD,5126
-2021-07-03,14:04,Saturday,SUMMERHILL STATION,MUNCA,0,0,,YU,0
-2021-07-03,14:11,Saturday,KENNEDY BD STATION,MUNOA,4,8,E,BD,5288
-2021-07-03,14:19,Saturday,FINCH STATION,TUNIP,5,9,S,YU,5636
-2021-07-03,14:34,Saturday,UNION STATION,MUPAA,0,0,N,YU,5491
-2021-07-03,14:44,Saturday,ST ANDREW STATION,MUPAA,0,0,S,YU,6031
-2021-07-03,14:50,Saturday,JANE STATION,MUIR,0,0,E,BD,5081
-2021-07-03,14:52,Saturday,KING STATION,MUPAA,3,7,N,YU,5616
-2021-07-03,14:58,Saturday,KIPLING STATION,EUDO,4,8,W,BD,5242
-2021-07-03,15:19,Saturday,WILSON STATION,MUNOA,4,8,N,YU,5586
-2021-07-03,16:40,Saturday,PAPE STATION,SUAP,6,10,E,BD,5038
-2021-07-03,17:21,Saturday,COLLEGE STATION,MUPAA,3,7,N,YU,6006
-2021-07-03,17:32,Saturday,WILSON STATION,MUIRS,0,0,,YU,0
-2021-07-03,18:24,Saturday,ST CLAIR WEST STATION,MUIS,0,0,,YU,0
-2021-07-03,18:27,Saturday,VAUGHAN MC STATION,MUNOA,5,10,S,YU,5701
-2021-07-03,19:52,Saturday,FINCH STATION,MUTO,4,9,S,YU,5786
-2021-07-03,20:23,Saturday,SPADINA YUS STATION,MUIS,0,0,N,YU,5681
-2021-07-03,20:52,Saturday,JANE STATION,MUIS,0,0,,BD,0
-2021-07-03,21:29,Saturday,DUNDAS WEST STATION,MUI,0,0,E,BD,5004
-2021-07-03,22:00,Saturday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-07-03,23:00,Saturday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-07-03,23:19,Saturday,FINCH STATION,SUDP,7,14,N,YU,5851
-2021-07-03,23:31,Saturday,WOODBINE STATION,MUIS,0,0,,BD,0
-2021-07-03,23:34,Saturday,LAWRENCE STATION,MUIS,0,0,N,YU,0
-2021-07-03,13:20,Saturday,DON MILLS STATION,TUSUP,0,0,W,SHP,6161
-2021-07-04,08:21,Sunday,NORTH YORK CTR STATION,TUO,0,0,S,YU,5516
-2021-07-04,21:53,Sunday,SCARBOROUGH CTR STATIO,MRUIR,0,0,,SRT,0
-2021-07-04,08:38,Sunday,OSSINGTON STATION,PUMEL,0,0,,BD,0
-2021-07-04,09:52,Sunday,KENNEDY BD STATION,MUIRS,0,0,,BD,0
-2021-07-04,14:22,Sunday,QUEEN STATION,SUUT,7,12,N,YU,5886
-2021-07-04,14:32,Sunday,ST GEORGE YUS STATION,SUDP,0,0,N,YU,0
-2021-07-04,14:38,Sunday,QUEEN STATION,SUDP,8,13,N,YU,5726
-2021-07-04,16:32,Sunday,EGLINTON STATION,MUIS,0,0,,YU,0
-2021-07-04,16:47,Sunday,RUNNYMEDE STATION,SUO,0,0,W,BD,5144
-2021-07-04,17:18,Sunday,BAY STATION,SUO,4,9,E,BD,5004
-2021-07-04,18:10,Sunday,GREENWOOD STATION,MUNCA,0,0,,BD,0
-2021-07-04,18:20,Sunday,ROSEDALE STATION,EUNT,8,13,N,YU,6056
-2021-07-04,18:56,Sunday,LAWRENCE STATION,MUPLC,4,9,N,YU,6021
-2021-07-04,20:05,Sunday,QUEEN STATION,MUPAA,4,9,N,YU,5521
-2021-07-04,20:14,Sunday,VAUGHAN MC STATION,TUNIP,5,12,S,YU,5826
-2021-07-04,21:07,Sunday,WELLESLEY STATION,SUDP,17,24,N,YU,5386
-2021-07-04,21:15,Sunday,KENNEDY BD STATION,SUAE,4,11,E,BD,5043
-2021-07-04,21:20,Sunday,DAVISVILLE STATION,PUMEL,0,0,,YU,0
-2021-07-04,22:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-07-04,22:04,Sunday,SHEPPARD STATION,SUO,0,0,,YU,0
-2021-07-04,23:47,Sunday,COXWELL STATION,SUDP,3,10,E,BD,5157
-2021-07-04,00:42,Sunday,ST ANDREW STATION,EUVE,5,12,N,YU,0
-2021-07-04,00:51,Sunday,ISLINGTON STATION,MUNCA,0,0,,BD,0
-2021-07-04,01:27,Sunday,FINCH STATION,MUIS,0,0,,YU,0
-2021-07-04,01:37,Sunday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-07-05,11:38,Monday,SRT LINE,MRWEA,0,0,,SRT,0
-2021-07-05,02:40,Monday,VAUGHAN MC STATION,MUIRS,0,0,S,YU,0
-2021-07-05,05:45,Monday,KIPLING STATION,EULV,5,10,W,BD,5216
-2021-07-05,18:33,Monday,MCCOWAN STATION,PREL,0,0,,SRT,0
-2021-07-05,19:13,Monday,KENNEDY SRT STATION,PREL,0,0,,SRT,0
-2021-07-05,06:02,Monday,SHEPPARD STATION,MUSC,0,0,N,YU,5841
-2021-07-05,06:43,Monday,FINCH STATION,EUBK,5,8,S,YU,5901
-2021-07-05,06:53,Monday,KING STATION,MUIR,8,11,S,YU,5491
-2021-07-05,07:36,Monday,KIPLING STATION,EUO,0,0,E,BD,5216
-2021-07-05,07:54,Monday,KING STATION,MUIS,0,0,S,YU,5661
-2021-07-05,08:45,Monday,FINCH STATION,MUSC,0,0,S,YU,5716
-2021-07-05,10:20,Monday,DUNDAS STATION,SUAP,12,15,S,YU,5616
-2021-07-05,10:20,Monday,VAUGHAN MC STATION,MUCL,10,13,S,YU,6006
-2021-07-05,10:24,Monday,PAPE STATION,SUUT,3,7,E,BD,5175
-2021-07-05,10:32,Monday,KING STATION,MUATC,3,6,N,YU,5381
-2021-07-05,10:41,Monday,ST GEORGE YUS STATION,MUATC,6,9,S,YU,5711
-2021-07-05,10:47,Monday,DUNDAS WEST STATION,MUIRS,0,0,,BD,0
-2021-07-05,10:53,Monday,HIGHWAY 407 STATION,MUTO,3,6,S,YU,5851
-2021-07-05,11:53,Monday,YONGE BD STATION,MUIS,0,0,E,BD,0
-2021-07-05,12:01,Monday,VICTORIA PARK STATION,PUSTS,3,7,W,BD,5069
-2021-07-05,14:17,Monday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,5616
-2021-07-05,14:19,Monday,COLLEGE STATION,SUPOL,0,0,N,YU,5646
-2021-07-05,14:26,Monday,PAPE STATION,MUIRS,0,0,E,BD,0
-2021-07-05,14:41,Monday,SPADINA BD STATION,SUAP,20,24,E,BD,5183
-2021-07-05,15:20,Monday,ROSEDALE STATION,PUSTC,11,14,S,YU,5476
-2021-07-05,15:33,Monday,SPADINA BD STATION,MUIS,0,0,,YU,0
-2021-07-05,15:50,Monday,MAIN STREET STATION,PUMEL,0,0,,BD,0
-2021-07-05,16:02,Monday,ST GEORGE BD STATION,SUO,3,4,E,BD,5324
-2021-07-05,17:10,Monday,DUNDAS STATION,MUNCA,0,0,S,YU,0
-2021-07-05,17:13,Monday,OSSINGTON STATION,SUO,0,0,,BD,0
-2021-07-05,17:27,Monday,QUEEN STATION,PUMST,0,0,,YU,0
-2021-07-05,18:01,Monday,SHEPPARD WEST STATION,SUSA,0,0,,YU,0
-2021-07-05,18:07,Monday,KENNEDY BD STATION,MUPAA,0,0,,BD,5209
-2021-07-05,18:50,Monday,KENNEDY BD STATION,PUTSC,12,19,E,BD,5215
-2021-07-05,18:53,Monday,ROSEDALE STATION,SUUT,3,6,S,YU,5606
-2021-07-05,19:19,Monday,YORKDALE STATION,SUO,0,0,,YU,0
-2021-07-05,19:25,Monday,EGLINTON STATION,MUSC,0,0,S,YU,5716
-2021-07-05,19:35,Monday,WARDEN STATION,MUIRS,0,0,,BD,0
-2021-07-05,20:13,Monday,ROSEDALE STATION,EUNT,8,13,S,YU,6046
-2021-07-05,20:16,Monday,COXWELL STATION,MUIS,0,0,,BD,0
-2021-07-05,21:05,Monday,EGLINTON STATION,MUIS,0,0,,YU,0
-2021-07-05,21:45,Monday,SHEPPARD STATION,PUSTC,7,14,S,YU,5881
-2021-07-05,22:00,Monday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-07-05,22:01,Monday,ISLINGTON STATION,EUBK,0,0,E,BD,5240
-2021-07-05,22:08,Monday,SHEPPARD STATION,PUSTC,0,0,S,YU,5716
-2021-07-05,22:26,Monday,BLOOR STATION,SUUT,0,0,S,YU,5716
-2021-07-05,22:28,Monday,BATHURST STATION,EUME,9,16,W,BD,5144
-2021-07-05,22:32,Monday,KIPLING STATION,MUIR,6,13,E,BD,5136
-2021-07-05,22:58,Monday,SPADINA BD STATION,SUAP,8,15,E,BD,5183
-2021-07-05,23:00,Monday,KING STATION TO ST CLA,MUO,0,0,B,YU,0
-2021-07-05,23:05,Monday,EGLINTON WEST STATION,MUIS,0,0,N,YU,0
-2021-07-05,23:21,Monday,PAPE STATION,SUAP,0,0,E,BD,0
-2021-07-05,23:30,Monday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-07-05,23:38,Monday,ISLINGTON STATION,MUIR,3,10,W,BD,5101
-2021-07-05,23:50,Monday,SHEPPARD STATION,PUSTC,0,0,S,YU,5516
-2021-07-05,00:08,Monday,SHEPPARD STATION,PUSTC,3,10,S,YU,6071
-2021-07-05,00:33,Monday,ST CLAIR WEST STATION,SUUT,0,0,S,YU,5931
-2021-07-05,20:04,Monday,DON MILLS STATION,PUMO,0,0,,SHP,0
-2021-07-06,09:29,Tuesday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-07-06,06:35,Tuesday,VICTORIA PARK STATION,MUIS,0,0,W,BD,5120
-2021-07-06,06:38,Tuesday,LAWRENCE STATION,TUOS,3,6,N,YU,5751
-2021-07-06,06:50,Tuesday,FINCH STATION,MUSC,0,0,S,YU,5891
-2021-07-06,07:06,Tuesday,YONGE BD STATION,MUPAA,0,0,W,BD,5144
-2021-07-06,07:11,Tuesday,ROYAL YORK STATION,TUSC,4,8,E,BD,5290
-2021-07-06,07:36,Tuesday,BLOOR STATION,MUPLB,31,34,N,YU,5576
-2021-07-06,07:52,Tuesday,QUEEN STATION,SUAE,0,0,,YU,0
-2021-07-06,07:59,Tuesday,UNION STATION,MUPAA,0,0,S,YU,5516
-2021-07-06,08:00,Tuesday,RUNNYMEDE STATION,MUPAA,3,7,W,BD,5084
-2021-07-06,08:23,Tuesday,KENNEDY BD STATION,MUPAA,0,0,W,BD,5144
-2021-07-06,08:57,Tuesday,BLOOR STATION,TUO,3,6,N,YU,5896
-2021-07-06,09:41,Tuesday,WELLESLEY STATION,MUNCA,0,0,,YU,0
-2021-07-06,10:07,Tuesday,OLD MILL STATION,MUSC,0,0,E,BD,5343
-2021-07-06,10:46,Tuesday,VAUGHAN MC STATION,PUMEL,0,0,,YU,0
-2021-07-06,10:57,Tuesday,SHEPPARD STATION,PUTR,5,8,S,YU,5386
-2021-07-06,11:38,Tuesday,SHEPPARD STATION,PUTR,6,9,S,YU,5846
-2021-07-06,11:41,Tuesday,DAVISVILLE STATION,PUSTS,3,6,N,YU,5451
-2021-07-06,13:58,Tuesday,EGLINTON STATION,MUI,10,13,S,YU,5386
-2021-07-06,14:12,Tuesday,DUNDAS WEST STATION,PUMEL,0,0,,BD,0
-2021-07-06,14:32,Tuesday,ST CLAIR STATION,TUO,0,0,S,YU,5481
-2021-07-06,14:48,Tuesday,SHEPPARD STATION,PUTR,3,6,S,YU,5946
-2021-07-06,14:51,Tuesday,SPADINA YUS STATION,SUDP,0,0,N,YU,5526
-2021-07-06,15:21,Tuesday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,5541
-2021-07-06,15:50,Tuesday,KENNEDY BD STATION,PUTSC,4,8,W,BD,5069
-2021-07-06,16:38,Tuesday,KENNEDY BD STATION,PUTSC,4,8,W,BD,5117
-2021-07-06,16:58,Tuesday,WILSON STATION,MUATC,0,0,N,YU,5766
-2021-07-06,17:59,Tuesday,LAWRENCE STATION,MUIRS,4,7,S,YU,5561
-2021-07-06,18:31,Tuesday,BLOOR STATION,MUIS,0,0,N,YU,0
-2021-07-06,18:49,Tuesday,BLOOR STATION,MUATC,0,0,S,YU,6071
-2021-07-06,19:04,Tuesday,KIPLING STATION,PUMST,0,0,,BD,0
-2021-07-06,21:03,Tuesday,VICTORIA PARK STATION,SUUT,6,13,W,BD,5067
-2021-07-06,21:34,Tuesday,DUNDAS WEST STATION,SUAP,0,0,,BD,0
-2021-07-06,22:00,Tuesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU / BD,0
-2021-07-06,22:17,Tuesday,SPADINA BD STATION,MUIS,0,0,,BD,0
-2021-07-06,22:36,Tuesday,SHEPPARD WEST STATION,MUPAA,0,0,N,YU,5746
-2021-07-06,23:00,Tuesday,YONGE-UNIVERSITY AND B,MUO,0,0,B,YU,0
-2021-07-06,23:10,Tuesday,OSGOODE STATION,SUDP,6,13,S,YU,5596
-2021-07-06,23:14,Tuesday,QUEEN'S PARK STATION,SUDP,7,14,N,YU,5836
-2021-07-06,23:45,Tuesday,COXWELL STATION,MUIS,0,0,E,BD,5160
-2021-07-06,00:36,Tuesday,YONGE BD STATION,SUDP,0,0,W,BD,0
-2021-07-06,01:57,Tuesday,KENNEDY BD STATION,PUSTC,17,24,E,BD,5066
-2021-07-06,18:57,Tuesday,BAYVIEW STATION,PUOPO,3,8,E,SHP,6171
-2021-07-06,23:04,Tuesday,LESLIE STATION,PUOPO,3,7,W,SHP,6146
-2021-07-07,08:33,Wednesday,SCARBOROUGH CTR STATIO,ERDO,15,20,S,SRT,3022
-2021-07-07,02:52,Wednesday,YORK MILLS STATION,PUTOE,0,0,N,YU,0
-2021-07-07,03:39,Wednesday,COLLEGE TO KING,PUTO,0,0,,YU,0
-2021-07-07,16:08,Wednesday,SCARBOROUGH CTR STATIO,MRUI,0,0,,SRT,0
-2021-07-07,05:51,Wednesday,GREENWOOD STATION,EUDO,7,12,E,BD,5192
-2021-07-07,22:30,Wednesday,SCARBOROUGH CTR STATIO,SRO,0,0,,SRT,0
-2021-07-07,06:04,Wednesday,UNION STATION,TUO,4,7,N,YU,5426
-2021-07-07,06:20,Wednesday,DAVISVILLE STATION,PUSTS,3,6,N,YU,5426
-2021-07-07,06:23,Wednesday,FINCH STATION,MUSC,0,0,S,YU,5551
-2021-07-07,07:28,Wednesday,RUNNYMEDE STATION,SUAP,0,0,,BD,0
-2021-07-07,09:33,Wednesday,HIGHWAY 407 STATION,SUDP,0,0,N,BD,5646
-2021-07-07,10:33,Wednesday,FINCH STATION,MUPAA,0,0,S,YU,5866
-2021-07-07,11:31,Wednesday,VAUGHAN MC STATION,TUNIP,4,7,S,YU,5791
-2021-07-07,12:29,Wednesday,KENNEDY BD STATION,PUSTC,10,14,W,BD,5059
-2021-07-07,12:39,Wednesday,ROYAL YORK STATION,TUSC,9,13,E,BD,5297
-2021-07-07,13:05,Wednesday,QUEEN STATION,MUIS,0,0,,YU,0
-2021-07-07,13:38,Wednesday,EGLINTON STATION,EUBK,3,7,S,YU,5911
-2021-07-07,14:56,Wednesday,EGLINTON STATION,TUMVS,0,0,N,YU,5701
-2021-07-07,14:56,Wednesday,KEELE STATION,MUSC,3,7,W,BD,5059
-2021-07-07,15:07,Wednesday,EGLINTON STATION,MUIRS,3,6,S,YU,5746
-2021-07-07,15:28,Wednesday,BLOOR STATION,MUIR,3,6,S,YU,5766
-2021-07-07,15:48,Wednesday,BLOOR STATION,MUIS,0,0,N,YU,5901
-2021-07-07,15:48,Wednesday,BLOOR STATION,MUIR,12,15,S,YU,5951
-2021-07-07,16:58,Wednesday,YONGE BD STATION,MUO,4,8,W,BD,5363
-2021-07-07,17:48,Wednesday,SPADINA BD STATION,SUDP,3,7,E,BD,5297
-2021-07-07,19:37,Wednesday,PIONEER VILLAGE STATIO,SUO,0,0,N,YU,5861
-2021-07-07,19:41,Wednesday,PAPE STATION,MUO,0,0,E,BD,5324
-2021-07-07,19:50,Wednesday,SPADINA YUS STATION,SUDP,3,6,N,YU,5676
-2021-07-07,19:53,Wednesday,SPADINA BD STATION,SUDP,0,0,E,BD,5223
-2021-07-07,20:02,Wednesday,CASTLE FRANK STATION,SUDP,0,0,,BD,0
-2021-07-07,20:04,Wednesday,CASTLE FRANK STATION,SUDP,0,0,W,BD,5142
-2021-07-07,20:45,Wednesday,BLOOR STATION,MUIRS,0,0,,YU,0
-2021-07-07,20:51,Wednesday,ST PATRICK STATION,SUDP,4,11,N,YU,5936
-2021-07-07,21:54,Wednesday,YONGE BD STATION,PUSTS,0,0,W,BD,5142
-2021-07-07,22:00,Wednesday,YONGE-UNIVERSITY AND B,MUO,0,0,B,YU/BD,0
-2021-07-07,22:01,Wednesday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-07-07,22:24,Wednesday,YONGE BD STATION,PUSTS,3,10,W,BD,5211
-2021-07-07,22:34,Wednesday,ST ANDREW STATION,SUDP,0,0,N,YU,5926
-2021-07-07,22:42,Wednesday,ST ANDREW STATION,SUDP,5,12,N,YU,6066
-2021-07-07,22:50,Wednesday,ST ANDREW STATION,SUDP,3,10,S,YU,5941
-2021-07-07,23:00,Wednesday,DUPONT STATION,MUPAA,0,0,N,YU,5651
-2021-07-07,23:00,Wednesday,YONGE-UNIVERSITY AND B,MUO,0,0,B,YU,0
-2021-07-07,23:16,Wednesday,DUNDAS STATION,MUIS,0,0,N,YU,0
-2021-07-07,00:00,Wednesday,KENNEDY BD STATION,MUO,0,0,E,BD,0
-2021-07-07,00:30,Wednesday,YORK MILLS STATION,TUOS,4,11,S,YU,5506
-2021-07-07,01:06,Wednesday,FINCH STATION,MUIS,0,0,S,YU,0
-2021-07-08,02:07,Thursday,DAVISVILLE YARD,PUTOE,0,0,N,YU,0
-2021-07-08,12:53,Thursday,MCCOWAN STATION,ERDO,0,0,S,SRT,3022
-2021-07-08,02:27,Thursday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-07-08,05:32,Thursday,JANE STATION,MUIS,0,0,E,BD,0
-2021-07-08,06:01,Thursday,GREENWOOD STATION,MUTO,4,9,E,BD,5113
-2021-07-08,08:28,Thursday,ROSEDALE STATION,MUATC,4,7,S,YU,5526
-2021-07-08,08:40,Thursday,SHEPPARD STATION,MUO,0,0,,YU,0
-2021-07-08,10:03,Thursday,DUNDAS STATION,MUIS,0,0,,YU,0
-2021-07-08,11:20,Thursday,EGLINTON STATION,MUNCA,0,0,,YU,0
-2021-07-08,12:57,Thursday,YORK MILLS STATION,TUSC,0,0,N,YU,5931
-2021-07-08,13:24,Thursday,HIGHWAY 407 STATION,MUPAA,0,0,N,YU,5556
-2021-07-08,13:30,Thursday,QUEEN'S PARK STATION,MUIRS,0,0,N,YU,5616
-2021-07-08,14:06,Thursday,RUNNYMEDE STATION,TUO,0,0,W,BD,5285
-2021-07-08,15:19,Thursday,LAWRENCE STATION,TUOS,3,6,S,YU,5611
-2021-07-08,16:26,Thursday,EGLINTON STATION,EUNT,4,7,S,YU,5431
-2021-07-08,16:33,Thursday,ST ANDREW STATION,EUNT,3,6,S,YU,5516
-2021-07-08,16:53,Thursday,ST GEORGE YUS STATION,MUIE,14,17,S,YU,5666
-2021-07-08,17:01,Thursday,SHEPPARD STATION,MUIRS,0,0,S,YU,0
-2021-07-08,17:04,Thursday,KING STATION,MUIRS,0,0,S,YU,0
-2021-07-08,17:14,Thursday,OSSINGTON STATION,TUNCA,0,0,,BD,0
-2021-07-08,17:31,Thursday,SPADINA BD STATION,MUD,0,0,W,BD,5112
-2021-07-08,17:38,Thursday,PIONEER VILLAGE STATIO,MUSAN,3,6,S,YU,5571
-2021-07-08,17:48,Thursday,WARDEN STATION,TUMVS,0,0,W,BD,5352
-2021-07-08,19:58,Thursday,SUMMERHILL STATION,MUPAA,0,0,S,YU,5761
-2021-07-08,20:26,Thursday,DUNDAS STATION,MUSAN,5,10,N,YU,5966
-2021-07-08,20:28,Thursday,FINCH STATION,PUTD,5,10,N,YU,6076
-2021-07-08,20:59,Thursday,BROADVIEW STATION,PUMST,0,0,,BD,0
-2021-07-08,21:42,Thursday,BROADVIEW STATION,MUIRS,0,0,,BD,0
-2021-07-08,22:00,Thursday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-07-08,22:43,Thursday,BLOOR STATION,SUDP,0,0,N,YU,0
-2021-07-08,23:00,Thursday,ST CLAIR WEST STATION,MUO,0,0,B,YUS,0
-2021-07-08,23:07,Thursday,OSSINGTON STATION,SUDP,7,14,E,BD,5038
-2021-07-08,23:34,Thursday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-07-08,00:54,Thursday,BAY STATION,SUDP,4,11,W,BD,5135
-2021-07-08,01:00,Thursday,ROSEDALE STATION,MUATC,4,11,S,YU,5961
-2021-07-08,11:37,Thursday,DON MILLS STATION,TUSC,0,0,E,SHP,6196
-2021-07-08,12:21,Thursday,SHEPPARD-YONGE STATION,TUMVS,0,0,W,SHP,6186
-2021-07-08,18:51,Thursday,LESLIE STATION,TUSC,0,0,W,SHP,6186
-2021-07-09,07:03,Friday,KING STATION,PUMEL,0,0,,YU,0
-2021-07-09,00:05,Friday,MCCOWAN YARD,MRIE,0,0,,SRT,3014
-2021-07-09,07:05,Friday,KENNEDY BD STATION,SUDP,3,7,W,BD,5120
-2021-07-09,09:56,Friday,COXWELL STATION,MUIS,0,0,,BD,0
-2021-07-09,11:48,Friday,ISLINGTON STATION,SUDP,0,0,,BD,0
-2021-07-09,11:54,Friday,KENNEDY BD STATION,PUMEL,0,0,,BD,0
-2021-07-09,12:04,Friday,UNION STATION,SUUT,4,7,N,YU,5971
-2021-07-09,13:38,Friday,BATHURST STATION,MUIR,11,15,W,BD,5293
-2021-07-09,14:06,Friday,BROADVIEW STATION,MUI,9,13,W,BD,5140
-2021-07-09,14:09,Friday,UNION STATION,MUIR,9,12,N,YU,5936
-2021-07-09,14:18,Friday,KIPLING STATION,MUTO,4,8,E,BD,5211
-2021-07-09,14:27,Friday,DAVISVILLE STATION,MUPAA,0,0,N,YU,5966
-2021-07-09,14:53,Friday,MAIN STREET STATION,TUSC,0,0,W,BD,5290
-2021-07-09,14:58,Friday,FINCH STATION,MUPAA,0,0,S,YU,5626
-2021-07-09,15:09,Friday,SHEPPARD STATION,MUPAA,3,6,S,YU,5556
-2021-07-09,15:59,Friday,KIPLING STATION,MUTO,4,8,W,BD,5211
-2021-07-09,17:18,Friday,ST GEORGE BD STATION,SUDP,3,8,E,BD,5142
-2021-07-09,18:02,Friday,OSSINGTON STATION,MUPLA,61,65,E,BD,5075
-2021-07-09,18:48,Friday,SPADINA BD STATION,MUNCA,0,0,,BD,0
-2021-07-09,18:55,Friday,KIPLING STATION,MUTO,4,8,W,BD,5211
-2021-07-09,18:57,Friday,YONGE BD STATION,SUAP,0,0,,BD,0
-2021-07-09,18:58,Friday,YORK MILLS STATION,MUIS,0,0,S,YU,0
-2021-07-09,18:59,Friday,SHERBOURNE STATION,MUPAA,3,8,E,BD,5216
-2021-07-09,19:39,Friday,DUNDAS STATION,SUUT,0,0,N,YU,5621
-2021-07-09,20:15,Friday,KENNEDY BD STATION,SUAP,7,14,E,BD,5152
-2021-07-09,20:16,Friday,YONGE BD STATION,EUSC,0,0,E,BD,6001
-2021-07-09,20:25,Friday,BROADVIEW STATION,EUSC,0,0,E,BD,6001
-2021-07-09,20:44,Friday,WILSON STATION,MUI,19,26,S,YU,5456
-2021-07-09,21:17,Friday,EGLINTON STATION,PUMEL,0,0,,YU,0
-2021-07-09,21:20,Friday,YONGE BD STATION,MUIS,0,0,,BD,0
-2021-07-09,22:00,Friday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-07-09,22:10,Friday,BLOOR STATION,SUEAS,8,15,N,YU,5651
-2021-07-09,23:30,Friday,SPADINA BD STATION,MUIS,0,0,,BD,0
-2021-07-09,00:35,Friday,COLLEGE STATION,SUDP,0,0,S,YU,5581
-2021-07-09,01:07,Friday,MAIN STREET STATION,MUIRS,0,0,W,BD,0
-2021-07-09,01:18,Friday,KEELE STATION,PUMEL,0,0,,BD,0
-2021-07-09,01:18,Friday,ROSEDALE STATION,MUIS,0,0,N,YU,0
-2021-07-09,10:31,Friday,SHEPPARD STATION,PUMEL,0,0,,SHP,0
-2021-07-09,13:48,Friday,BAYVIEW STATION,MUIRS,0,0,W,SHP,0
-2021-07-09,17:03,Friday,BAYVIEW STATION,PUOPO,5,10,E,SHP,6181
-2021-07-09,17:20,Friday,SHEPPARD-YONGE STATION,MUPAA,5,10,E,SHP,6156
-2021-07-09,17:40,Friday,BESSARION STATION,PUOPO,5,10,E,SHP,6181
-2021-07-10,01:22,Saturday,SCARBOROUGH CTR STATIO,MRUIR,0,0,,SRT,0
-2021-07-10,02:00,Saturday,YORKDALE STATION,TUO,4,11,N,YU,5656
-2021-07-10,06:35,Saturday,FINCH STATION,MUIS,0,0,,YU,0
-2021-07-10,09:28,Saturday,NORTH YORK CTR STATION,MUO,0,0,,YU,0
-2021-07-10,09:36,Saturday,KENNEDY BD STATION,TUMVS,5,10,E,BD,5253
-2021-07-10,10:23,Saturday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-07-10,10:46,Saturday,VAUGHAN MC STATION,MUNOA,4,8,S,YU,0
-2021-07-10,10:51,Saturday,WILSON STATION,EUO,5,9,S,YU,5841
-2021-07-10,11:28,Saturday,VICTORIA PARK STATION,SUAP,0,0,W,BD,5005
-2021-07-10,12:07,Saturday,ISLINGTON STATION,TUMVS,3,7,W,BD,5155
-2021-07-10,12:12,Saturday,KIPLING STATION,TUO,4,8,W,BD,5155
-2021-07-10,12:52,Saturday,ST PATRICK STATION,MUIRS,0,0,S,YU,0
-2021-07-10,12:59,Saturday,OSSINGTON STATION,SUDP,3,7,W,BD,5168
-2021-07-10,13:48,Saturday,ROYAL YORK STATION,MUIR,0,0,W,BD,5227
-2021-07-10,14:11,Saturday,FINCH STATION,TUNIP,4,8,S,YU,5611
-2021-07-10,16:16,Saturday,BROADVIEW STATION,SUDP,3,7,W,BD,5023
-2021-07-10,16:28,Saturday,DUNDAS STATION,SUAP,0,0,,YU,0
-2021-07-10,17:19,Saturday,VAUGHAN MC STATION,MUNOA,4,8,S,YU,0
-2021-07-10,18:20,Saturday,VAUGHAN MC STATION,MUNOA,5,10,S,YU,0
-2021-07-10,18:25,Saturday,YONGE BD STATION,SUAP,0,0,E,BD,0
-2021-07-10,18:29,Saturday,SPADINA BD STATION,MUPAA,0,0,W,BD,5168
-2021-07-10,19:21,Saturday,BATHURST STATION,SUUT,5,9,W,BD,5170
-2021-07-10,20:13,Saturday,LAWRENCE STATION,MUPAA,0,0,S,YU,5866
-2021-07-10,21:25,Saturday,DUNDAS WEST STATION,SUDP,0,0,,BD,0
-2021-07-10,21:30,Saturday,BROADVIEW STATION,SUDP,4,11,E,BD,5189
-2021-07-10,21:40,Saturday,DUNDAS WEST STATION,SUDP,0,0,,BD,0
-2021-07-10,22:00,Saturday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-07-10,22:26,Saturday,ST CLAIR WEST STATION,PUMEL,0,0,,YU,0
-2021-07-10,23:03,Saturday,KENNEDY BD STATION,MUPAA,0,0,E,BD,5112
-2021-07-10,23:13,Saturday,VAUGHAN MC STATION,SUDP,0,0,,YU,0
-2021-07-10,23:24,Saturday,DUNDAS WEST STATION,MUIS,0,0,,BD,0
-2021-07-10,00:20,Saturday,VICTORIA PARK STATION,MUIS,0,0,,BD,0
-2021-07-10,01:43,Saturday,WELLESLEY STATION,SUDP,0,0,N,YU,5666
-2021-07-10,08:21,Saturday,SHEPPARD-YONGE STATION,MUSC,0,0,E,SHP,6191
-2021-07-10,10:55,Saturday,SHEPPARD-YONGE STATION,MUSC,0,0,E,SHP,6191
-2021-07-11,11:29,Sunday,MCCOWAN STATION,MRTO,11,17,S,SRT,3022
-2021-07-11,02:29,Sunday,UNION STATION,SUDP,0,0,,YU,0
-2021-07-11,06:00,Sunday,ST GEORGE STATION TO B,MUO,0,0,,BD,0
-2021-07-11,07:50,Sunday,BLOOR STATION,MUIRS,0,0,,YU,0
-2021-07-11,09:36,Sunday,CHESTER STATION,MUO,14,20,W,BD,5150
-2021-07-11,09:39,Sunday,COXWELL STATION,SUAP,5,11,W,BD,5114
-2021-07-11,09:56,Sunday,EGLINTON STATION,MUNOA,5,10,N,YU,0
-2021-07-11,10:18,Sunday,ST CLAIR STATION,MUIR,25,30,N,YU,5966
-2021-07-11,10:22,Sunday,DUNDAS WEST STATION,EUDO,6,11,E,BD,5189
-2021-07-11,10:37,Sunday,ISLINGTON STATION,TUSC,0,0,W,BD,5006
-2021-07-11,10:58,Sunday,DUNDAS WEST STATION,SUDP,0,0,W,BD,5269
-2021-07-11,11:02,Sunday,VAUGHAN MC STATION,MUNOA,5,10,N,YU,5836
-2021-07-11,11:43,Sunday,WARDEN STATION,SUDP,3,8,E,BD,5341
-2021-07-11,12:43,Sunday,COXWELL STATION,MUDD,5,10,E,BD,5017
-2021-07-11,12:56,Sunday,YORK MILLS STATION,MUPAA,0,0,S,YU,5521
-2021-07-11,13:09,Sunday,ST CLAIR STATION,SUO,0,0,,YU,0
-2021-07-11,16:02,Sunday,BATHURST STATION,MUIS,0,0,,BD,0
-2021-07-11,17:48,Sunday,ROSEDALE STATION,EUSC,0,0,N,YU,5466
-2021-07-11,17:55,Sunday,YORK MILLS STATION,PUMEL,0,0,,YU,0
-2021-07-11,18:37,Sunday,CASTLE FRANK STATION,SUAP,5,10,W,BD,5060
-2021-07-11,21:20,Sunday,VICTORIA PARK STATION,MUIS,0,0,,BD,0
-2021-07-11,21:24,Sunday,WILSON STATION,MUIS,0,0,,YU,0
-2021-07-11,21:38,Sunday,ISLINGTON STATION,MUIS,0,0,W,BD,5213
-2021-07-11,22:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU,0
-2021-07-11,23:13,Sunday,WARDEN STATION,SUAP,5,12,E,BD,5189
-2021-07-11,23:44,Sunday,WARDEN STATION,MUIS,0,0,,BD,0
-2021-07-11,00:11,Sunday,MAIN STREET STATION,SUDP,10,17,E,BD,5096
-2021-07-11,00:36,Sunday,SUMMERHILL STATION,SUAP,14,21,N,YU,5626
-2021-07-11,14:04,Sunday,DON MILLS STATION,PUSTS,0,0,E,SHP,6171
-2021-07-11,16:15,Sunday,SHEPPARD-YONGE STATION,MUPAA,0,0,E,SHP,6161
-2021-07-12,20:24,Monday,ELLESMERE STATION,MRUI,0,0,S,SRT,0
-2021-07-12,02:04,Monday,FINCH STATION,MUIS,0,0,,YU,0
-2021-07-12,05:43,Monday,DONLANDS STATION,EUSC,0,0,W,BD,5061
-2021-07-12,06:40,Monday,ST ANDREW STATION,MUTO,3,6,S,YU,5806
-2021-07-12,06:47,Monday,ROSEDALE STATION,MUATC,8,11,S,YU,5676
-2021-07-12,06:48,Monday,UNION STATION,MUTO,0,0,N,YU,5806
-2021-07-12,07:25,Monday,MAIN STREET STATION,EUSC,0,0,E,BD,5061
-2021-07-12,08:17,Monday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,0
-2021-07-12,08:47,Monday,FINCH STATION,MUIS,0,0,,YU,0
-2021-07-12,09:44,Monday,BLOOR STATION,SUDP,0,0,,YU,0
-2021-07-12,10:04,Monday,KENNEDY BD STATION,TUCC,14,18,W,BD,5010
-2021-07-12,10:16,Monday,SPADINA YUS STATION,MUD,7,10,S,YU,5531
-2021-07-12,10:20,Monday,DUFFERIN STATION,SUO,7,11,E,BD,5084
-2021-07-12,11:13,Monday,YORK MILLS STATION,MUIS,0,0,,YU,0
-2021-07-12,11:21,Monday,KIPLING STATION,MUI,4,8,E,BD,5059
-2021-07-12,12:03,Monday,SPADINA BD STATION,SUO,3,7,W,BD,5072
-2021-07-12,13:13,Monday,BLOOR STATION,MUIS,0,0,,YU,0
-2021-07-12,15:12,Monday,COLLEGE STATION,SUDP,3,6,N,YU,5491
-2021-07-12,15:36,Monday,YONGE-UNIVERSITY AND B,MUATC,54,57,N,YU,5641
-2021-07-12,17:00,Monday,HIGH PARK STATION,MUNCA,0,0,,BD,0
-2021-07-12,18:02,Monday,GLENCAIRN STATION,SUDP,3,6,N,YU,5661
-2021-07-12,18:19,Monday,KEELE STATION,TUMVS,4,8,W,BD,5365
-2021-07-12,18:40,Monday,EGLINTON STATION,SUDP,4,9,N,YU,5781
-2021-07-12,19:05,Monday,GREENWOOD CARHOUSE,PUMO,0,0,,BD,0
-2021-07-12,19:07,Monday,MAIN STREET STATION,MUD,3,7,W,BD,5210
-2021-07-12,19:09,Monday,MAIN STREET STATION,SUO,0,0,W,BD,0
-2021-07-12,19:46,Monday,QUEEN STATION,MUIRS,0,0,,YU,0
-2021-07-12,20:25,Monday,FINCH STATION,PUMEL,0,0,S,YU,0
-2021-07-12,20:27,Monday,SPADINA BD STATION,MUIS,0,0,E,BD,0
-2021-07-12,20:41,Monday,BLOOR STATION,MUIR,12,17,N,YU,5851
-2021-07-12,21:03,Monday,COLLEGE STATION,MUIR,0,0,,YU,0
-2021-07-12,22:00,Monday,YONGE UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-07-12,22:19,Monday,DUNDAS WEST STATION,SUDP,0,0,E,BD,5112
-2021-07-12,23:00,Monday,ST CLAIR WEST TO KING,MUO,0,0,B,YUS,0
-2021-07-12,23:18,Monday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-07-12,00:05,Monday,KIPLING STATION,SUDP,5,17,E,BD,5114
-2021-07-12,00:19,Monday,WILSON STATION,MUIRS,0,0,,YU,0
-2021-07-12,00:43,Monday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-07-12,00:56,Monday,LANSDOWNE STATION,SUPOL,9,17,W,BD,5207
-2021-07-12,01:43,Monday,SHERBOURNE STATION,MUIS,0,0,W,BD,0
-2021-07-12,12:11,Monday,LESLIE STATION,TUMVS,10,15,W,SHP,6161
-2021-07-12,18:31,Monday,BESSARION STATION,PUOPO,4,9,W,SHP,6161
-2021-07-12,19:14,Monday,DON MILLS STATION,MUNCA,0,0,,SHP,0
-2021-07-12,19:53,Monday,BESSARION STATION,PUOPO,4,9,E,SHP,6156
-2021-07-13,02:15,Tuesday,KENNEDY BD STATION,SUAE,0,0,,BD,0
-2021-07-13,14:00,Tuesday,LINE 3 SCARBOROUGH SRT,MRWEA,0,0,,SRT,0
-2021-07-13,05:46,Tuesday,DONLANDS STATION,EUSC,0,0,W,BD,5264
-2021-07-13,17:27,Tuesday,LAWRENCE EAST STATION,TRNCA,0,0,,SRT,0
-2021-07-13,05:50,Tuesday,FINCH STATION,EUTL,4,8,S,YU,5596
-2021-07-13,06:00,Tuesday,ROSEDALE STATION,MUATC,3,7,S,YU,5651
-2021-07-13,06:51,Tuesday,COXWELL STATION,EUSC,0,0,E,BD,5292
-2021-07-13,08:06,Tuesday,YORK MILLS STATION,MUIS,0,0,,YU,0
-2021-07-13,09:13,Tuesday,ST ANDREW STATION,MUPAA,0,0,N,YU,5801
-2021-07-13,09:42,Tuesday,LAWRENCE WEST STATION,MUTD,3,7,S,YU,5541
-2021-07-13,09:57,Tuesday,KEELE STATION,MUSAN,4,8,E,BD,5161
-2021-07-13,10:03,Tuesday,DUNDAS WEST STATION,MUSAN,3,7,E,BD,5161
-2021-07-13,10:43,Tuesday,MAIN STREET STATION,EUSC,0,0,W,BD,5264
-2021-07-13,11:17,Tuesday,LAWRENCE WEST STATION,MUATC,7,10,S,YU,5706
-2021-07-13,11:25,Tuesday,WELLESLEY STATION,MUIRS,0,0,,YU,0
-2021-07-13,11:43,Tuesday,FINCH STATION,TUSC,0,0,N,YU,5511
-2021-07-13,11:57,Tuesday,FINCH STATION,PUMEL,0,0,S,YU,5741
-2021-07-13,12:14,Tuesday,SHEPPARD STATION,MUD,0,0,N,YU,5541
-2021-07-13,12:23,Tuesday,VAUGHAN MC STATION,MUO,3,6,S,YU,5906
-2021-07-13,14:01,Tuesday,OSSINGTON STATION,SUO,0,0,W,BD,5120
-2021-07-13,14:13,Tuesday,WARDEN STATION,PUSTS,3,7,E,BD,5014
-2021-07-13,14:16,Tuesday,YORK MILLS STATION,TUSC,0,0,S,YU,5576
-2021-07-13,15:08,Tuesday,FINCH STATION,EUAC,3,6,S,YU,5646
-2021-07-13,15:29,Tuesday,KIPLING STATION,TUOS,0,0,W,BD,5143
-2021-07-13,16:07,Tuesday,KING STATION,MUI,0,0,N,YU,0
-2021-07-13,17:03,Tuesday,SHEPPARD WEST STATION,MUSAN,3,6,N,YU,5791
-2021-07-13,17:16,Tuesday,KEELE STATION,MUSC,0,0,W,BD,5236
-2021-07-13,17:22,Tuesday,VICTORIA PARK STATION,SUUT,0,0,E,BD,5207
-2021-07-13,17:28,Tuesday,YONGE BD STATION,SUUT,0,0,E,BD,5122
-2021-07-13,17:43,Tuesday,VICTORIA PARK STATION,SUO,0,0,E,BD,5122
-2021-07-13,18:31,Tuesday,SHEPPARD WEST STATION,MUTO,6,9,N,YU,5861
-2021-07-13,18:44,Tuesday,DUFFERIN STATION,SUO,0,0,W,BD,5150
-2021-07-13,20:00,Tuesday,WARDEN STATION,SUO,0,0,E,BD,5133
-2021-07-13,20:58,Tuesday,MAIN STREET STATION,SUO,7,14,E,BD,5043
-2021-07-13,21:43,Tuesday,FINCH STATION,MUIRS,0,0,,YU,0
-2021-07-13,21:48,Tuesday,COXWELL STATION,SUDP,3,10,E,BD,5214
-2021-07-13,22:00,Tuesday,YONGE UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-07-13,22:21,Tuesday,DAVISVILLE STATION,SUDP,0,0,N,YU,5706
-2021-07-13,22:57,Tuesday,COXWELL STATION,MUIS,0,0,,BD,0
-2021-07-13,23:00,Tuesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU,0
-2021-07-13,00:45,Tuesday,VICTORIA PARK STATION,MUIS,0,0,,BD,0
-2021-07-13,00:51,Tuesday,YORK MILLS STATION,EUBK,7,14,S,YU,5786
-2021-07-13,09:17,Tuesday,BAYVIEW STATION,MUPAA,0,0,W,SHP,6196
-2021-07-13,10:05,Tuesday,SHEPPARD-YONGE STATION,PUCSC,12,17,W,SHP,6166
-2021-07-13,15:16,Tuesday,SHEPPARD-YONGE STATION,TUMVS,0,0,W,SHP,6151
-2021-07-13,17:35,Tuesday,BAYVIEW STATION,SUAE,0,0,,SHP,0
-2021-07-13,17:44,Tuesday,BAYVIEW STATION,SUDP,0,0,E,SHP,6181
-2021-07-13,18:33,Tuesday,BAYVIEW STATION,MUNCA,0,0,,SHP,0
-2021-07-14,11:47,Wednesday,KENNEDY SRT STATION,MRWEA,0,0,,SRT,0
-2021-07-14,02:10,Wednesday,KIPLING STATION,MUIS,0,0,,BD,5169
-2021-07-14,17:26,Wednesday,LAWRENCE EAST STATION,ERDO,5,10,S,SRT,3012
-2021-07-14,03:51,Wednesday,TRANSIT CONTROL CENTRE,PUSO,0,0,,,0
-2021-07-14,18:42,Wednesday,MCCOWAN STATION,ERAC,5,10,S,SRT,3020
-2021-07-14,05:58,Wednesday,N/O QUEEN TO MARKDALE,PUTWZ,35,0,N,YU,5721
-2021-07-14,06:22,Wednesday,MAIN STREET STATION,SUAE,0,0,W,BD,5252
-2021-07-14,06:50,Wednesday,BATHURST STATION,EUNT,4,8,E,BD,5204
-2021-07-14,06:52,Wednesday,BLOOR STATION,SUDP,3,6,S,YU,5701
-2021-07-14,07:24,Wednesday,BLOOR STATION,MUIS,0,0,,YU,0
-2021-07-14,08:01,Wednesday,YORK MILLS STATION,MUSC,0,0,S,YU,5476
-2021-07-14,08:02,Wednesday,FINCH STATION,MUTO,3,6,S,YU,5511
-2021-07-14,08:33,Wednesday,ST CLAIR WEST STATION,MUTO,3,6,S,YU,5856
-2021-07-14,08:40,Wednesday,COLLEGE STATION,SUDP,0,0,,YU,0
-2021-07-14,09:02,Wednesday,ROSEDALE STATION,MUSC,3,6,N,YU,5831
-2021-07-14,09:04,Wednesday,YONGE BD STATION,MUIRS,0,0,,BD,0
-2021-07-14,09:07,Wednesday,YORK MILLS STATION,MUIRS,0,0,,YU,0
-2021-07-14,09:23,Wednesday,DANFORTH DIVISION,MUO,0,0,,BD,0
-2021-07-14,09:43,Wednesday,HIGH PARK STATION,PUMST,0,0,W,BD,0
-2021-07-14,10:02,Wednesday,ROSEDALE STATION,MUSC,0,0,N,YU,5466
-2021-07-14,12:54,Wednesday,MAIN STREET STATION,SUDP,5,9,E,BD,5214
-2021-07-14,13:33,Wednesday,YORK MILLS STATION,EUSC,0,0,S,YU,5386
-2021-07-14,13:58,Wednesday,EGLINTON STATION,EUSC,0,0,S,YU,5796
-2021-07-14,14:48,Wednesday,WARDEN STATION,PUSTS,8,12,E,BD,5254
-2021-07-14,15:02,Wednesday,KENNEDY BD STATION,MUO,4,8,W,BD,5210
-2021-07-14,15:09,Wednesday,WARDEN STATION,PUSTS,6,10,E,BD,5337
-2021-07-14,15:35,Wednesday,VAUGHAN MC STATION,PUSRA,3,6,S,YU,5581
-2021-07-14,16:29,Wednesday,FINCH WEST STATION,TUO,3,6,S,YU,5581
-2021-07-14,16:50,Wednesday,SHERBOURNE STATION,SUDP,9,13,E,BD,5301
-2021-07-14,18:16,Wednesday,ST PATRICK STATION,EUBO,5,10,N,YU,5721
-2021-07-14,18:52,Wednesday,WOODBINE STATION,MUIRS,0,0,,BD,0
-2021-07-14,18:55,Wednesday,YORK MILLS STATION,TUOS,0,0,S,YU,5621
-2021-07-14,19:13,Wednesday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-07-14,20:31,Wednesday,DUFFERIN STATION,SUAE,0,0,,BD,0
-2021-07-14,21:21,Wednesday,EGLINTON STATION,PUMEL,0,0,,YU,0
-2021-07-14,21:59,Wednesday,LAWRENCE WEST STATION,EUPI,0,0,S,YU,5431
-2021-07-14,22:00,Wednesday,YONGE UNIVERSITY AND B,MUO,0,0,B,YU/BD,0
-2021-07-14,22:15,Wednesday,BLOOR STATION,MUIS,0,0,,YU,0
-2021-07-14,22:49,Wednesday,CHRISTIE STATION,MUIS,0,0,,BD,0
-2021-07-14,23:00,Wednesday,ST CLAIR WEST TO KING,MUO,0,0,B,YUS,0
-2021-07-14,23:18,Wednesday,QUEEN STATION,SUDP,0,0,N,YU,5516
-2021-07-14,23:19,Wednesday,WELLESLEY STATION,SUUT,3,10,N,YU,5516
-2021-07-14,00:22,Wednesday,KING STATION,PUTWZ,4,11,N,YU,5681
-2021-07-14,00:27,Wednesday,UNION STATION,MUIS,0,0,,YU,0
-2021-07-14,05:46,Wednesday,SHEPPARD-YONGE STATION,EUECD,11,17,E,SHP,6156
-2021-07-14,22:13,Wednesday,BAYVIEW STATION,PUOPO,8,14,W,SHP,6186
-2021-07-14,22:24,Wednesday,BAYVIEW STATION,PUOPO,4,8,E,SHP,6166
-2021-07-15,10:11,Thursday,LAWRENCE EAST STATION,ERDO,6,12,S,SRT,3024
-2021-07-15,03:07,Thursday,TRANSIT CONTROL CENTRE,PUATC,0,0,,YU,0
-2021-07-15,11:57,Thursday,MCCOWAN STATION,MRWEA,0,0,,SRT,0
-2021-07-15,05:59,Thursday,VAUGHAN MC STATION,TUNIP,3,6,S,YU,5886
-2021-07-15,09:28,Thursday,GREENWOOD CARHOUSE,MUIE,0,0,,BD,0
-2021-07-15,15:05,Thursday,MCCOWAN STATION,MRNOA,5,10,S,SRT,3019
-2021-07-15,09:38,Thursday,SHEPPARD STATION,TUOS,3,6,S,YU,5701
-2021-07-15,09:50,Thursday,ROSEDALE STATION,MUSC,0,0,N,YU,5571
-2021-07-15,09:50,Thursday,FINCH STATION,EUBK,3,6,S,YU,5766
-2021-07-15,10:02,Thursday,KENNEDY BD STATION,MUIRS,0,0,,BD,0
-2021-07-15,11:25,Thursday,ST CLAIR STATION,SUDP,3,6,S,YU,5996
-2021-07-15,11:40,Thursday,COXWELL STATION,MUPAA,0,0,W,BD,5280
-2021-07-15,11:48,Thursday,OSSINGTON STATION,MUPAA,3,7,W,BD,5017
-2021-07-15,13:05,Thursday,ISLINGTON STATION,MUIRS,0,0,,BD,0
-2021-07-15,13:35,Thursday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,5671
-2021-07-15,15:00,Thursday,FINCH STATION,MUSAN,3,6,S,YU,6021
-2021-07-15,16:17,Thursday,GLENCAIRN STATION,EUDO,5,8,S,YU,5401
-2021-07-15,16:26,Thursday,VICTORIA PARK STATION,SUO,4,8,W,BD,5017
-2021-07-15,17:15,Thursday,DAVISVILLE STATION,SUUT,0,0,N,YU,6026
-2021-07-15,17:37,Thursday,UNION STATION,MUO,0,0,,YU,0
-2021-07-15,17:48,Thursday,OLD MILL STATION,EUNT,6,10,E,BD,5271
-2021-07-15,18:21,Thursday,CASTLE FRANK STATION,MUIS,0,0,E,BD,0
-2021-07-15,19:09,Thursday,LAWRENCE STATION,TUOS,3,8,N,YU,6056
-2021-07-15,19:21,Thursday,WOODBINE STATION,MUIS,0,0,,BD,0
-2021-07-15,19:49,Thursday,HIGHWAY 407 STATION,SUPOL,11,16,S,YU,5856
-2021-07-15,20:36,Thursday,COXWELL STATION,SUAP,0,0,,BD,0
-2021-07-15,22:00,Thursday,YONGE/UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-07-15,22:35,Thursday,JANE STATION,MUNCA,0,0,,BD,0
-2021-07-15,22:37,Thursday,DUFFERIN STATION,SUDP,3,10,E,BD,5100
-2021-07-15,22:42,Thursday,DUFFERIN STATION,SUDP,0,0,W,BD,5192
-2021-07-15,22:49,Thursday,DUNDAS WEST STATION,MUIS,0,0,W,BD,5192
-2021-07-15,23:00,Thursday,ST. CLAIR WEST TO KING,MUO,0,0,,YU,0
-2021-07-15,23:54,Thursday,FINCH STATION,MUSC,0,0,S,YU,5091
-2021-07-15,00:33,Thursday,VICTORIA PARK STATION,SUDP,0,0,E,BD,5263
-2021-07-15,21:57,Thursday,LESLIE STATION,MUSC,0,0,W,SHP,6176
-2021-07-16,17:47,Friday,MIDLAND STATION,MRDD,3,8,S,SRT,3018
-2021-07-16,03:18,Friday,TRANSIT CONTROL CENTRE,MUATC,0,0,,YU,0
-2021-07-16,06:06,Friday,GREENWOOD STATION,MUO,6,11,E,BD,5197
-2021-07-16,06:14,Friday,SHEPPARD STATION,PUSTC,6,10,S,YU,5936
-2021-07-16,06:23,Friday,FINCH STATION,MUSAN,4,8,S,YU,5786
-2021-07-16,06:33,Friday,ROSEDALE STATION,MUIS,0,0,N,YU,5561
-2021-07-16,08:06,Friday,WOODBINE STATION,MUSAN,4,8,W,BD,5174
-2021-07-16,08:34,Friday,SHEPPARD STATION,PUTR,3,6,S,YU,5801
-2021-07-16,09:40,Friday,WOODBINE STATION,PUMST,0,0,,BD,0
-2021-07-16,09:49,Friday,BATHURST STATION,MUIRS,0,0,W,BD,5161
-2021-07-16,09:53,Friday,EGLINTON STATION,SUO,0,0,N,YU,5501
-2021-07-16,10:23,Friday,KIPLING STATION,MUIRS,0,0,,BD,0
-2021-07-16,11:51,Friday,COXWELL STATION,MUO,8,12,W,BD,5236
-2021-07-16,12:04,Friday,SHEPPARD WEST STATION,SUO,0,0,S,YU,5821
-2021-07-16,14:28,Friday,OSSINGTON STATION,MUIS,0,0,,BD,0
-2021-07-16,15:55,Friday,JANE STATION,SUO,0,0,W,BD,5017
-2021-07-16,16:23,Friday,ROSEDALE STATION,MUSC,0,0,N,YU,5601
-2021-07-16,17:01,Friday,YORK MILLS STATION,MUSC,0,0,S,YU,5696
-2021-07-16,17:27,Friday,FINCH STATION,MUNCA,0,0,,YU,0
-2021-07-16,17:45,Friday,COXWELL STATION,SUDP,0,0,W,BD,5204
-2021-07-16,17:54,Friday,ISLINGTON STATION,MUNCA,0,0,,BD,0
-2021-07-16,18:15,Friday,YORK MILLS STATION,MUSC,0,0,S,YU,5826
-2021-07-16,18:31,Friday,ST GEORGE YUS STATION,SUO,11,14,N,YU,5716
-2021-07-16,20:13,Friday,KEELE STATION,SUPOL,0,0,W,BD,5191
-2021-07-16,22:00,Friday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-07-16,22:37,Friday,PAPE STATION,MUIS,0,0,,BD,0
-2021-07-16,00:49,Friday,DONLANDS STATION,SUDP,3,10,E,BD,5008
-2021-07-16,00:58,Friday,QUEEN STATION,MUIS,0,0,,YU,0
-2021-07-16,01:53,Friday,CHESTER STATION,SUDP,0,0,E,BD,0
-2021-07-16,03:11,Friday,SHEPPARD-YONGE STATION,EUOE,0,0,W,SHP,6151
-2021-07-16,05:31,Friday,DON MILLS STATION,PUSTP,6,0,W,SHP,6151
-2021-07-16,07:29,Friday,DON MILLS STATION,MUIS,0,0,,SHP,0
-2021-07-16,12:38,Friday,SHEPPARD-YONGE STATION,TUMVS,6,11,W,SHP,6151
-2021-07-16,19:18,Friday,DON MILLS STATION,EUSC,0,0,W,SHP,6176
-2021-07-17,02:20,Saturday,FINCH STATION,SUDP,0,0,,YU,0
-2021-07-17,07:58,Saturday,LAWRENCE EAST STATION,ERDO,3,9,S,SRT,3018
-2021-07-17,02:29,Saturday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-07-17,12:15,Saturday,LAWRENCE EAST STATION,MRPAA,3,9,S,SRT,3012
-2021-07-17,02:32,Saturday,SHEPPARD STATION,MUIRS,0,0,,YU,0
-2021-07-17,05:55,Saturday,EGLINTON STATION,MUIRS,0,0,,YU,0
-2021-07-17,05:58,Saturday,ST CLAIR STATION,PUSO,10,0,S,YU,5511
-2021-07-17,07:56,Saturday,OSSINGTON STATION,TUMVS,7,13,E,BD,5100
-2021-07-17,09:05,Saturday,OSGOODE STATION,MUNCA,0,0,,YU,0
-2021-07-17,11:00,Saturday,FINCH STATION,SUDP,15,20,S,YU,5861
-2021-07-17,11:22,Saturday,GREENWOOD STATION,MUNOA,4,8,E,BD,0
-2021-07-17,12:33,Saturday,ST CLAIR STATION,SUDP,6,11,S,YU,5751
-2021-07-17,13:26,Saturday,ST CLAIR STATION,EUTRD,7,14,S,YU,5991
-2021-07-17,13:50,Saturday,MAIN STREET STATION,MUIS,0,0,E,BD,5100
-2021-07-17,14:34,Saturday,PAPE STATION,MUIRS,0,0,W,BD,0
-2021-07-17,14:46,Saturday,ST CLAIR STATION,MUIR,6,13,N,YU,5536
-2021-07-17,14:55,Saturday,ST CLAIR WEST STATION,MUPAA,0,0,S,YU,5931
-2021-07-17,15:18,Saturday,YONGE BD STATION,MUD,8,12,W,BD,5095
-2021-07-17,15:58,Saturday,EGLINTON STATION,SUAE,0,0,,YU,0
-2021-07-17,16:05,Saturday,SUMMERHILL STATION,MUIRS,0,0,,YU,0
-2021-07-17,16:49,Saturday,BAY STATION,MUIR,4,8,W,BD,5179
-2021-07-17,17:23,Saturday,COXWELL STATION,MUNOA,4,8,E,BD,5125
-2021-07-17,17:42,Saturday,LAWRENCE STATION,SUUT,11,17,N,YU,6096
-2021-07-17,17:55,Saturday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-07-17,18:21,Saturday,LAWRENCE STATION,SUPOL,12,18,N,YU,6096
-2021-07-17,18:39,Saturday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-07-17,19:13,Saturday,YORK MILLS STATION,MUPAA,0,0,S,YU,6091
-2021-07-17,19:26,Saturday,EGLINTON STATION,MUIS,0,0,,YU,0
-2021-07-17,19:37,Saturday,VAUGHAN MC STATION,MUIS,0,0,,YU,0
-2021-07-17,20:07,Saturday,QUEEN'S PARK STATION,MUIRS,0,0,,YU,0
-2021-07-17,21:00,Saturday,ST GEORGE BD STATION,SUPOL,13,20,E,BD,5254
-2021-07-17,21:02,Saturday,ST GEORGE YUS STATION,SUPOL,13,20,S,YU,5706
-2021-07-17,21:26,Saturday,BROADVIEW STATION,SUDP,0,0,E,BD,5172
-2021-07-17,21:31,Saturday,ST PATRICK STATION,SUDP,4,11,S,YU,5581
-2021-07-17,22:00,Saturday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-07-17,22:20,Saturday,GLENCAIRN STATION,SUDP,4,11,S,YU,5931
-2021-07-17,22:35,Saturday,MAIN STREET STATION,SUPOL,19,26,W,BD,5180
-2021-07-17,00:30,Saturday,EGLINTON WEST STATION,SUDP,0,0,S,YU,5531
-2021-07-17,00:31,Saturday,BROADVIEW STATION,MUIS,0,0,,BD,0
-2021-07-17,05:47,Saturday,LESLIE STATION,TUNIP,3,0,E,SHP,6166
-2021-07-17,15:48,Saturday,SHEPPARD-YONGE STATION,MUSC,0,0,E,SHP,6171
-2021-07-17,16:32,Saturday,SHEPPARD-YONGE STATION,PUSTS,5,10,E,SHP,6171
-2021-07-17,16:45,Saturday,SHEPPARD-YONGE STATION,PUSTS,0,0,E,SHP,6196
-2021-07-17,16:59,Saturday,SHEPPARD-YONGE STATION,PUSTS,0,0,E,SHP,6181
-2021-07-18,13:06,Sunday,LAWRENCE EAST STATION,PRSL,13,18,S,SRT,3012
-2021-07-18,08:00,Sunday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU,0
-2021-07-18,13:30,Sunday,LINE 3,MRWEA,0,0,,SRT,0
-2021-07-18,09:56,Sunday,ROSEDALE STATION,MUSC,0,0,N,YU,5496
-2021-07-18,13:06,Sunday,DUNDAS WEST STATION,SUDP,0,0,,BD,0
-2021-07-18,13:09,Sunday,BLOOR STATION,MUIRS,0,0,S,YU,5576
-2021-07-18,13:17,Sunday,WARDEN STATION,PUSTS,4,9,E,BD,5099
-2021-07-18,14:42,Sunday,DUNDAS WEST STATION,MUDD,3,8,W,BD,5194
-2021-07-18,15:01,Sunday,KIPLING STATION,TUMVS,0,0,W,BD,5245
-2021-07-18,15:03,Sunday,WARDEN STATION,PUSTS,0,0,E,BD,5099
-2021-07-18,15:08,Sunday,WARDEN STATION,PUSTS,3,8,E,BD,5220
-2021-07-18,15:21,Sunday,WARDEN STATION,PUSTS,3,8,E,BD,5120
-2021-07-18,17:03,Sunday,BLOOR STATION,MUIS,0,0,N,YU,0
-2021-07-18,17:37,Sunday,EGLINTON WEST STATION,MUIS,0,0,N,YU,0
-2021-07-18,20:05,Sunday,ST CLAIR STATION,PUMEL,0,0,,YU,0
-2021-07-18,20:07,Sunday,CHRISTIE STATION,MUIRS,0,0,,BD,0
-2021-07-18,21:57,Sunday,DUNDAS STATION,MUIS,0,0,N,YU,0
-2021-07-18,22:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-07-18,00:27,Sunday,ST CLAIR WEST STATION,SUO,0,0,,YU,0
-2021-07-18,00:58,Sunday,KING STATION,SUDP,0,0,S,YU,5656
-2021-07-19,07:56,Monday,MIDLAND STATION,MRD,4,10,S,SRT,3024
-2021-07-19,05:40,Monday,YORK MILLS STATION,PUSTS,4,0,N,YU,5711
-2021-07-19,11:03,Monday,MCCOWAN STATION,MRWEA,0,0,,SRT,0
-2021-07-19,06:11,Monday,WELLESLEY STATION,MUO,0,0,,YU,0
-2021-07-19,07:44,Monday,EGLINTON WEST STATION,SUUT,0,0,S,YU,0
-2021-07-19,19:06,Monday,LAWRENCE EAST STATION,MRUI,0,0,,SRT,0
-2021-07-19,09:14,Monday,SHERBOURNE STATION,MUNCA,0,0,,BD,0
-2021-07-19,09:31,Monday,LAWRENCE STATION,EUSC,4,7,N,YU,5991
-2021-07-19,09:58,Monday,FINCH STATION,MUSC,0,0,S,YU,5571
-2021-07-19,10:02,Monday,LANSDOWNE STATION,MUIRS,0,0,W,BD,0
-2021-07-19,10:51,Monday,KEELE STATION,SUAP,6,10,W,BD,5096
-2021-07-19,11:31,Monday,KIPLING STATION,PUMEL,0,0,,BD,0
-2021-07-19,11:56,Monday,OLD MILL STATION,MUPAA,0,0,E,BD,5236
-2021-07-19,13:36,Monday,SHERBOURNE STATION,TUOS,4,8,E,BD,5198
-2021-07-19,14:07,Monday,EGLINTON WEST STATION,TUO,3,6,S,YU,5991
-2021-07-19,14:14,Monday,GLENCAIRN STATION,MUATC,3,6,S,YU,5626
-2021-07-19,14:42,Monday,KENNEDY BD STATION,PUTIJ,6,10,E,BD,5250
-2021-07-19,16:44,Monday,ST CLAIR STATION,SUDP,5,8,N,YU,6036
-2021-07-19,17:07,Monday,SPADINA BD STATION,MUIS,0,0,W,BD,5062
-2021-07-19,18:06,Monday,BLOOR STATION,MUO,0,0,N,YU,5861
-2021-07-19,18:19,Monday,ROSEDALE STATION,MUSC,0,0,,YU,5726
-2021-07-19,19:00,Monday,ROSEDALE STATION,MUSC,0,0,N,YU,5661
-2021-07-19,19:38,Monday,PAPE STATION,MUI,5,9,E,BD,5250
-2021-07-19,20:15,Monday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-07-19,20:35,Monday,ROSEDALE STATION,MUSC,0,0,N,YU,5736
-2021-07-19,20:35,Monday,COXWELL STATION,MUIS,0,0,W,BD,0
-2021-07-19,21:53,Monday,VAUGHAN MC STATION,TUO,4,11,S,YU,5811
-2021-07-19,22:00,Monday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-07-19,23:00,Monday,BLOOR DANFORTH LINE,MUO,0,0,,BD,0
-2021-07-19,01:05,Monday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-07-19,01:21,Monday,QUEEN STATION,SUAE,0,0,N,YU,0
-2021-07-19,22:04,Monday,SHEPPARD-YONGE STATION,PUMO,0,0,,SHP,0
-2021-07-20,06:10,Tuesday,KENNEDY BD STATION,EUSC,3,8,W,BD,5260
-2021-07-20,10:43,Tuesday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-07-20,06:18,Tuesday,ST CLAIR WEST STATION,SUEAS,10,13,N,YU,5826
-2021-07-20,07:52,Tuesday,KENNEDY BD STATION,EUSC,0,0,W,BD,5260
-2021-07-20,08:47,Tuesday,KENNEDY BD STATION,EUPI,3,7,W,BD,5187
-2021-07-20,10:04,Tuesday,DUFFERIN STATION,MUPAA,0,0,E,BD,5289
-2021-07-20,10:08,Tuesday,WARDEN STATION,PUSTS,3,7,E,BD,5325
-2021-07-20,10:51,Tuesday,FINCH STATION,MUSAN,5,10,S,YU,6056
-2021-07-20,11:04,Tuesday,VAUGHAN MC STATION,EUDO,3,6,S,YU,6131
-2021-07-20,11:11,Tuesday,VICTORIA PARK STATION,PUMEL,0,0,,BD,0
-2021-07-20,11:40,Tuesday,ROSEDALE STATION,TUMVS,10,13,S,YU,6116
-2021-07-20,12:19,Tuesday,YONGE BD STATION,TUSC,0,0,E,BD,5256
-2021-07-20,13:10,Tuesday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,0
-2021-07-20,14:15,Tuesday,KENNEDY BD STATION,EUNT,4,8,,BD,5064
-2021-07-20,14:39,Tuesday,DUNDAS WEST STATION,PUMEL,0,0,,BD,0
-2021-07-20,14:47,Tuesday,KENNEDY BD STATION,EUNT,4,8,,BD,5126
-2021-07-20,15:03,Tuesday,COLLEGE STATION,MUIR,7,10,N,YU,6036
-2021-07-20,15:04,Tuesday,KIPLING STATION,TUO,4,8,,BD,5235
-2021-07-20,15:12,Tuesday,GREENWOOD STATION,SUDP,4,8,E,BD,5236
-2021-07-20,15:16,Tuesday,BLOOR STATION,EUDO,0,0,S,YU,5621
-2021-07-20,15:26,Tuesday,UNION STATION,EUCD,3,6,N,YU,5621
-2021-07-20,15:40,Tuesday,ST CLAIR WEST STATION,MUTO,4,7,N,YU,6091
-2021-07-20,15:48,Tuesday,LANSDOWNE STATION,SUDP,0,0,E,BD,5256
-2021-07-20,18:21,Tuesday,FINCH STATION,MUSC,0,0,S,YU,5866
-2021-07-20,19:52,Tuesday,ROYAL YORK STATION,PUMEL,0,0,,BD,0
-2021-07-20,19:54,Tuesday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-07-20,19:59,Tuesday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-07-20,20:14,Tuesday,BAY STATION,SUO,5,12,W,BD,5225
-2021-07-20,21:41,Tuesday,QUEEN STATION,MUIRS,0,0,S,YU,0
-2021-07-20,21:46,Tuesday,VAUGHAN MC STATION,MUWR,7,14,S,YU,5991
-2021-07-20,21:49,Tuesday,DUNDAS WEST STATION,SUDP,0,0,W,BD,5150
-2021-07-20,21:52,Tuesday,ROYAL YORK STATION,SUDP,0,0,E,BD,5179
-2021-07-20,22:00,Tuesday,YONGE-UNIVERSITY AND B,MUO,0,0,B,YU/BD,0
-2021-07-20,22:11,Tuesday,WARDEN STATION,SUDP,7,14,E,BD,5236
-2021-07-20,23:00,Tuesday,BLOOR DANFORTH LINE,MUO,0,0,,BD,0
-2021-07-21,13:55,Wednesday,ELLESMERE STATION,MRPAA,0,0,S,SRT,3008
-2021-07-21,02:33,Wednesday,LINE 1 AND LINE 2 AND,PUSRA,0,0,,BD,0
-2021-07-21,05:54,Wednesday,EGLINTON STATION,MUATC,4,9,N,YU,0
-2021-07-21,15:44,Wednesday,MIDLAND STATION,SRDP,3,8,N,SRT,3019
-2021-07-21,07:30,Wednesday,SPADINA BD STATION,MUPAA,0,0,E,BD,5254
-2021-07-21,09:13,Wednesday,EGLINTON STATION,SUDP,5,8,S,YU,5516
-2021-07-21,09:36,Wednesday,ROYAL YORK STATION,MUD,6,10,W,BD,5182
-2021-07-21,11:10,Wednesday,ISLINGTON STATION,MUSC,3,7,W,BD,5039
-2021-07-21,12:00,Wednesday,BLOOR STATION,SUAP,0,0,S,YU,0
-2021-07-21,12:11,Wednesday,DUNDAS WEST STATION,MUIRS,0,0,,BD,0
-2021-07-21,12:40,Wednesday,MUSEUM STATION,MUIR,8,11,N,YU,6106
-2021-07-21,13:03,Wednesday,DUFFERIN STATION,MUIS,0,0,,BD,0
-2021-07-21,14:03,Wednesday,VAUGHAN MC STATION,TUNIP,3,6,S,YU,5681
-2021-07-21,15:52,Wednesday,WARDEN STATION,MUIRS,0,0,W,BD,0
-2021-07-21,16:51,Wednesday,COXWELL STATION,MUI,19,24,E,BD,5168
-2021-07-21,17:27,Wednesday,NORTH YORK CTR STATION,SUAP,0,0,S,YU,0
-2021-07-21,17:28,Wednesday,FINCH STATION,MUNOA,3,6,S,YU,5000
-2021-07-21,17:36,Wednesday,SHERBOURNE STATION,PUTSC,4,8,E,BD,5063
-2021-07-21,18:30,Wednesday,HIGH PARK STATION,MUD,3,7,E,BD,5204
-2021-07-21,18:31,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-07-21,18:58,Wednesday,ROSEDALE STATION,MUSC,0,0,N,YU,5551
-2021-07-21,19:06,Wednesday,ST CLAIR STATION,MUIS,0,0,N,YU,0
-2021-07-21,19:21,Wednesday,ST CLAIR WEST STATION,MUPAA,0,0,N,YU,5676
-2021-07-21,21:16,Wednesday,COLLEGE STATION,MUIS,0,0,N,YU,5596
-2021-07-21,22:00,Wednesday,YONGE-UNIVERSITY AND B,MUO,0,0,B,YUS & BD,0
-2021-07-21,22:16,Wednesday,WOODBINE STATION,MUIS,0,0,,BD,0
-2021-07-21,22:17,Wednesday,SHERBOURNE STATION,SUDP,12,20,E,BD,5250
-2021-07-21,22:20,Wednesday,KIPLING STATION,PUMEL,0,0,,BD,0
-2021-07-21,22:21,Wednesday,OSGOODE STATION,EUOPO,7,14,S,YU,5391
-2021-07-21,22:33,Wednesday,BROADVIEW STATION,SUDP,5,13,E,BD,5209
-2021-07-21,23:00,Wednesday,ST GEORGE STATION TO W,MUO,0,0,,BD,0
-2021-07-21,23:09,Wednesday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-07-21,23:31,Wednesday,FINCH STATION,MUI,7,14,S,YU,5696
-2021-07-21,23:36,Wednesday,KIPLING STATION,MUSAN,8,16,E,BD,5289
-2021-07-21,23:42,Wednesday,ST GEORGE YUS STATION,SUDP,4,11,N,YU,5716
-2021-07-21,23:48,Wednesday,BLOOR STATION,MUIRS,0,0,,YU,0
-2021-07-21,00:06,Wednesday,DOWNSVIEW PARK STATION,MUIR,3,10,N,YU,5686
-2021-07-21,00:37,Wednesday,VAUGHAN MC STATION,MUIS,0,0,S,YU,0
-2021-07-21,01:30,Wednesday,ST CLAIR STATION,MUIS,0,0,,YU,0
-2021-07-21,01:59,Wednesday,BATHURST STATION,SUUT,8,16,E,BD,5049
-2021-07-21,07:42,Wednesday,LESLIE STATION,TUOS,4,9,E,SHP,6171
-2021-07-21,18:05,Wednesday,LESLIE STATION,MUTD,5,10,E,SHP,6166
-2021-07-21,18:08,Wednesday,BESSARION STATION,TUMVS,7,12,E,SHP,6146
-2021-07-21,18:23,Wednesday,DON MILLS STATION,MUNOA,5,10,W,SHP,6146
-2021-07-21,19:36,Wednesday,SHEPPARD-YONGE STATION,TUSC,0,0,W,SHP,6141
-2021-07-21,22:03,Wednesday,SHEPPARD-YONGE STATION,MUTO,3,8,E,SHP,6196
-2021-07-22,02:16,Thursday,DUFFERIN STATION,SUAE,0,0,,BD,0
-2021-07-22,06:12,Thursday,KENNEDY SRT STATION,ERTC,5,11,S,SRT,3013
-2021-07-22,02:30,Thursday,"LINE 1, LINE 2 AND LIN",PUSRA,0,0,,BD,0
-2021-07-22,16:03,Thursday,LINE 3 SCARBOROUGH SRT,MRWEA,0,0,,SRT,0
-2021-07-22,05:39,Thursday,KENNEDY BD STATION,PUTWZ,58,0,W,BD,5194
-2021-07-22,06:43,Thursday,OLD MILL STATION,EUME,5,10,W,BD,5235
-2021-07-22,06:45,Thursday,JANE STATION TO OLD MI,TUMVS,0,0,W,BD,5168
-2021-07-22,08:23,Thursday,SHERBOURNE STATION,PUSNT,0,0,E,BD,5325
-2021-07-22,08:29,Thursday,CHESTER STATION,TUO,4,8,E,BD,5325
-2021-07-22,08:48,Thursday,ISLINGTON STATION,PUSNT,3,7,E,BD,5263
-2021-07-22,09:28,Thursday,KIPLING STATION,TUMVS,0,0,W,BD,5114
-2021-07-22,12:18,Thursday,YORK MILLS STATION,MUSC,0,0,S,YU,6101
-2021-07-22,12:25,Thursday,UNION STATION,MUPAA,0,0,N,YU,5646
-2021-07-22,12:45,Thursday,KENNEDY BD STATION,MUSAN,4,8,E,BD,5254
-2021-07-22,12:46,Thursday,ST CLAIR WEST STATION,MUATC,7,10,S,YU,5381
-2021-07-22,13:47,Thursday,UNION STATION,SUDP,3,6,N,YU,5816
-2021-07-22,13:52,Thursday,VAUGHAN MC STATION,MUCL,4,7,S,YU,5421
-2021-07-22,13:58,Thursday,OSGOODE STATION,MUPAA,0,0,N,YU,5676
-2021-07-22,14:08,Thursday,ST CLAIR WEST STATION,TUO,3,6,N,YU,5816
-2021-07-22,14:28,Thursday,KENNEDY BD STATION,SUDP,4,8,W,BD,5182
-2021-07-22,14:41,Thursday,KIPLING STATION,SUDP,0,0,,BD,0
-2021-07-22,17:08,Thursday,BROADVIEW STATION,SUBT,38,42,W,BD,5271
-2021-07-22,17:21,Thursday,WELLESLEY STATION,MUIS,0,0,,YU,0
-2021-07-22,17:56,Thursday,SPADINA BD STATION,SUUT,0,0,E,BD,5336
-2021-07-22,18:27,Thursday,COXWELL STATION,TUKEY,10,14,W,BD,5121
-2021-07-22,18:39,Thursday,BROADVIEW STATION,SUAP,0,0,,BD,0
-2021-07-22,19:45,Thursday,LAWRENCE STATION,MUPAA,3,8,N,YU,5991
-2021-07-22,19:51,Thursday,SHEPPARD-YONGE STATION,SUO,0,0,S,YU,6101
-2021-07-22,20:01,Thursday,DUNDAS WEST STATION,MUI,20,27,W,BD,5177
-2021-07-22,20:10,Thursday,LAWRENCE STATION,SUDP,6,11,S,YU,5996
-2021-07-22,20:16,Thursday,CHRISTIE STATION,MUSAN,7,11,E,BD,5053
-2021-07-22,20:19,Thursday,YORK MILLS STATION,TUMVS,0,0,S,YU,5571
-2021-07-22,21:06,Thursday,VAUGHAN MC STATION,MUTO,7,14,S,YU,0
-2021-07-22,22:00,Thursday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-07-22,22:19,Thursday,COLLEGE STATION,PUMEL,0,0,,YU,0
-2021-07-22,23:07,Thursday,SHEPPARD STATION,MUPAA,0,0,N,YU,5496
-2021-07-22,23:30,Thursday,VICTORIA PARK STATION,SUAP,0,0,W,BD,0
-2021-07-22,23:49,Thursday,DUFFERIN STATION,MUIRS,0,0,E,BD,5188
-2021-07-22,00:49,Thursday,EGLINTON WEST STATION,SUDP,10,17,N,YU,5651
-2021-07-22,01:30,Thursday,KIPLING STATION,MUTO,13,0,E,BD,5055
-2021-07-22,05:44,Thursday,DON MILLS STATION,MUSC,3,8,E,SHP,6191
-2021-07-22,19:51,Thursday,SHEPPARD-YONGE STATION,SUDP,5,10,W,SHP,6176
-2021-07-23,06:47,Friday,MCCOWAN STATION,ERDB,5,10,N,SRT,3013
-2021-07-23,02:23,Friday,VAUGHAN MC STATION,SUO,0,0,S,YU,5991
-2021-07-23,10:49,Friday,KENNEDY SRT STATION,MRTO,10,15,N,SRT,3003
-2021-07-23,05:52,Friday,KIPLING STATION,MUNOA,6,12,E,BD,5188
-2021-07-23,11:27,Friday,SCARBOROUGH CTR STATIO,MRUIR,3,9,N,SRT,3023
-2021-07-23,05:56,Friday,YONGE BD STATION,MUCL,4,0,W,BD,5237
-2021-07-23,05:56,Friday,BROADVIEW STATION,MUIS,0,0,,BD,0
-2021-07-23,13:49,Friday,SCARBOROUGH CTR STATIO,MRUIR,0,0,,SRT,0
-2021-07-23,15:08,Friday,LINE 3 SCARBOROUGH SRT,MRWEA,0,0,,SRT,0
-2021-07-23,06:21,Friday,OSGOODE STATION,MUIR,0,0,,YU,0
-2021-07-23,22:58,Friday,KENNEDY SRT STATION,ERPR,9,15,S,SRT,3014
-2021-07-23,06:45,Friday,LAWRENCE STATION,MUIS,0,0,S,YU,5466
-2021-07-23,01:02,Friday,MCCOWAN STATION,ERCD,6,12,S,SRT,3014
-2021-07-23,10:20,Friday,WILSON STATION,MUIS,0,0,,YU,0
-2021-07-23,12:23,Friday,ST CLAIR WEST STATION,MUPAA,0,0,S,YU,5916
-2021-07-23,13:25,Friday,OSGOODE STATION,MUNCA,0,0,,YU,0
-2021-07-23,13:54,Friday,DUNDAS WEST STATION,SUAP,10,14,W,BD,5191
-2021-07-23,14:07,Friday,MAIN STREET STATION,SUUT,3,7,W,BD,5220
-2021-07-23,14:11,Friday,EGLINTON STATION,TUMVS,0,0,S,YU,5381
-2021-07-23,14:14,Friday,DAVISVILLE STATION,TUCC,8,11,S,YU,5381
-2021-07-23,14:23,Friday,ST GEORGE BD STATION,MUIR,4,8,E,BD,5188
-2021-07-23,14:34,Friday,ST CLAIR STATION,MUIS,0,0,,YU,0
-2021-07-23,15:54,Friday,BROADVIEW STATION,PUMEL,0,0,,BD,0
-2021-07-23,16:52,Friday,CASTLE FRANK STATION,MUPAA,4,8,E,BD,5232
-2021-07-23,17:31,Friday,KENNEDY BD STATION,TUSUP,4,8,E,BD,5131
-2021-07-23,17:32,Friday,KIPLING STATION,SUAP,0,0,,BD,0
-2021-07-23,17:33,Friday,VAUGHAN MC STATION,SUDP,0,0,,YU,0
-2021-07-23,17:49,Friday,RUNNYMEDE STATION,SUDP,0,0,W,BD,5099
-2021-07-23,19:23,Friday,FINCH STATION,PUMEL,0,0,,YU,0
-2021-07-23,19:39,Friday,WELLESLEY STATION,MUPAA,0,0,N,YU,5801
-2021-07-23,20:07,Friday,DUNDAS STATION,MUIR,3,8,S,YU,5641
-2021-07-23,21:34,Friday,DAVISVILLE STATION,MUIR,4,7,N,YU,6066
-2021-07-23,22:00,Friday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-07-23,23:14,Friday,DUPONT STATION,SUAP,0,0,S,YU,5966
-2021-07-23,23:20,Friday,ST GEORGE YUS STATION,SUDP,0,0,N,YU,5806
-2021-07-23,23:33,Friday,BLOOR STATION,MUIS,0,0,S,YU,0
-2021-07-23,00:26,Friday,WARDEN STATION,PUMEL,0,0,,BD,0
-2021-07-23,01:46,Friday,WARDEN STATION,MUIS,0,0,,BD,0
-2021-07-23,01:50,Friday,KEELE STATION,MUPAA,0,0,W,BD,5053
-2021-07-23,01:55,Friday,KENNEDY BD STATION,SUAE,0,0,,BD,5181
-2021-07-23,01:59,Friday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-07-23,18:27,Friday,DON MILLS STATION,MUSC,3,8,W,SHP,6156
-2021-07-24,02:05,Saturday,FINCH STATION,MUI,0,0,S,YU,5901
-2021-07-24,05:56,Saturday,MCCOWAN STATION,TRNIP,4,10,S,SRT,3016
-2021-07-24,06:16,Saturday,GREENWOOD STATION,MUNOA,7,14,E,BD,0
-2021-07-24,22:15,Saturday,MCCOWAN STATION,SRO,0,0,S,SRT,3022
-2021-07-24,07:50,Saturday,VAUGHAN MC STATION,EUBK,9,15,S,YU,5766
-2021-07-24,08:09,Saturday,SHEPPARD WEST STATION,MUTO,3,8,S,YU,5616
-2021-07-24,08:47,Saturday,SPADINA BD STATION,EUNT,7,12,E,BD,5132
-2021-07-24,08:51,Saturday,SPADINA BD STATION,MUIS,0,0,,BD,0
-2021-07-24,11:23,Saturday,FINCH STATION,MUSAN,4,8,S,YU,5606
-2021-07-24,11:37,Saturday,KENNEDY BD STATION,EUDO,4,8,E,BD,5351
-2021-07-24,12:16,Saturday,VICTORIA PARK STATION,EUCD,4,8,W,BD,5351
-2021-07-24,12:27,Saturday,PAPE STATION,MUPAA,0,0,E,BD,5028
-2021-07-24,12:39,Saturday,MUSEUM STATION,EUDO,4,8,N,YU,6051
-2021-07-24,12:42,Saturday,VAUGHAN MC STATION,MUNOA,4,8,S,YU,0
-2021-07-24,12:51,Saturday,DUNDAS STATION,MUNCA,0,0,,YU,0
-2021-07-24,13:39,Saturday,FINCH STATION,MUIRS,0,0,,YU,0
-2021-07-24,13:43,Saturday,VAUGHAN MC STATION,MUATC,11,15,N,YU,5651
-2021-07-24,13:47,Saturday,SHERBOURNE STATION,SUDP,0,0,E,BD,5223
-2021-07-24,13:59,Saturday,WOODBINE STATION,MUI,12,16,E,BD,5223
-2021-07-24,14:23,Saturday,ISLINGTON STATION,TUSUP,0,0,E,BD,5232
-2021-07-24,14:23,Saturday,DUNDAS WEST STATION,MUNCA,0,0,,BD,0
-2021-07-24,14:32,Saturday,COXWELL STATION,MUNOA,4,8,E,BD,0
-2021-07-24,14:37,Saturday,HIGHWAY 407 STATION,TUOS,4,8,N,YU,5906
-2021-07-24,14:40,Saturday,VAUGHAN MC STATION,MUNOA,4,8,S,YU,0
-2021-07-24,15:02,Saturday,EGLINTON STATION,MUIS,0,0,,YU,0
-2021-07-24,15:17,Saturday,QUEEN'S PARK STATION,SUO,0,0,,YU,0
-2021-07-24,16:01,Saturday,EGLINTON STATION,SUUT,15,19,N,YU,5756
-2021-07-24,16:30,Saturday,UNION STATION,MUIRS,0,0,,YU,0
-2021-07-24,16:38,Saturday,VAUGHAN MC STATION,MUNOA,4,8,S,YU,0
-2021-07-24,16:48,Saturday,SHEPPARD STATION,PUMEL,0,0,,YU,0
-2021-07-24,17:14,Saturday,SHERBOURNE STATION,MUO,0,0,,BD,0
-2021-07-24,18:00,Saturday,COXWELL STATION,MUNOA,4,8,,BD,0
-2021-07-24,18:47,Saturday,RUNNYMEDE STATION,SUSA,0,0,,BD,0
-2021-07-24,19:01,Saturday,KIPLING STATION,PUSTS,0,0,W,BD,5055
-2021-07-24,20:07,Saturday,YORKDALE STATION,MUIRS,0,0,N,YU,5561
-2021-07-24,21:19,Saturday,SHERBOURNE STATION,MUIS,0,0,E,BD,0
-2021-07-24,21:31,Saturday,ST ANDREW STATION,MUPAA,0,0,N,YU,5971
-2021-07-24,21:59,Saturday,COXWELL STATION,MUNOA,4,8,,BD,0
-2021-07-24,22:00,Saturday,YONGE UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-07-24,23:26,Saturday,CHESTER STATION,MUIS,0,0,,BD,0
-2021-07-24,00:07,Saturday,PIONEER VILLAGE STATIO,MUSAN,7,14,S,YU,5991
-2021-07-24,00:31,Saturday,DUFFERIN STATION,MUIS,0,0,,BD,0
-2021-07-24,00:40,Saturday,PAPE STATION,PUMO,0,0,E,BD,0
-2021-07-24,01:25,Saturday,GREENWOOD YARD,MUIE,0,0,,BD,0
-2021-07-24,18:58,Saturday,DON MILLS STATION,MUIR,5,10,W,SHP,6141
-2021-07-25,10:34,Sunday,ELLESMERE STATION,MRO,6,12,N,SRT,3013
-2021-07-25,08:00,Sunday,ST GEORGE TO BROADVIEW,MUO,0,0,,BD,0
-2021-07-25,08:02,Sunday,DONLANDS STATION,MUO,10,0,W,BD,5074
-2021-07-25,11:23,Sunday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-07-25,08:18,Sunday,ROSEDALE STATION,PUTWZ,3,9,N,YU,6066
-2021-07-25,11:38,Sunday,OLD MILL STATION,EUSC,0,0,E,BD,5251
-2021-07-25,12:45,Sunday,CHESTER STATION,SUAP,3,8,E,BD,5362
-2021-07-25,12:58,Sunday,DUNDAS STATION,PUMEL,0,0,,YU,0
-2021-07-25,13:05,Sunday,YONGE BD STATION,SUAE,0,0,,BD,0
-2021-07-25,13:08,Sunday,NORTH YORK CTR STATION,MUIRS,0,0,,YU,0
-2021-07-25,13:14,Sunday,HIGH PARK STATION,SUDP,0,0,,BD,0
-2021-07-25,15:59,Sunday,UNION STATION,MUIR,0,0,N,YU,5636
-2021-07-25,16:45,Sunday,SHERBOURNE STATION,SUUT,16,21,E,BD,5028
-2021-07-25,16:51,Sunday,PIONEER VILLAGE STATIO,MUO,0,0,,YU,0
-2021-07-25,17:07,Sunday,QUEEN'S PARK STATION,MUNCA,0,0,,YU,0
-2021-07-25,17:20,Sunday,SUMMERHILL STATION,MUPAA,0,0,N,YU,5436
-2021-07-25,18:05,Sunday,YONGE BD STATION,MUIS,0,0,W,BD,0
-2021-07-25,18:17,Sunday,OLD MILL STATION,SUDP,0,0,E,BD,5028
-2021-07-25,18:25,Sunday,DUFFERIN STATION,MUD,3,8,W,BD,5225
-2021-07-25,18:56,Sunday,CHRISTIE STATION,SUO,5,10,W,BD,5017
-2021-07-25,19:02,Sunday,SHEPPARD WEST STATION,MUPAA,0,0,S,YU,5456
-2021-07-25,19:26,Sunday,EGLINTON STATION,MUIS,0,0,,YU,0
-2021-07-25,19:49,Sunday,DAVISVILLE CARHOUSE,MUO,0,0,,YU,0
-2021-07-25,20:29,Sunday,DUNDAS WEST STATION,MUIS,0,0,,BD,0
-2021-07-25,20:54,Sunday,FINCH STATION,MUIRS,0,0,,YU,0
-2021-07-25,20:55,Sunday,MAIN STREET STATION,MUPAA,0,0,E,BD,5077
-2021-07-25,22:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-07-25,22:10,Sunday,KIPLING STATION,MUIR,7,14,E,BD,5364
-2021-07-25,00:20,Sunday,ST CLAIR STATION,MUSAN,7,14,N,YU,5646
-2021-07-25,00:47,Sunday,KEELE STATION,MUIRS,0,0,W,BD,0
-2021-07-25,01:49,Sunday,SHERBOURNE STATION,EUVE,26,33,E,BD,5022
-2021-07-25,07:59,Sunday,LESLIE STATION,PUSTP,10,0,E,SHP,6146
-2021-07-25,17:41,Sunday,BESSARION STATION,PUOPO,5,10,W,SHP,6141
-2021-07-25,18:29,Sunday,BAYVIEW STATION,PUSTS,0,0,W,SHP,0
-2021-07-25,22:28,Sunday,BAYVIEW STATION,PUOPO,3,8,W,SHP,6146
-2021-07-26,09:22,Monday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-07-26,02:14,Monday,VAUGHAN MC STATION,SUDP,0,0,,YU,0
-2021-07-26,06:14,Monday,FINCH STATION,MUSC,3,7,S,YU,5991
-2021-07-26,09:31,Monday,MIDLAND STATION,ERME,5,10,S,SRT,3016
-2021-07-26,11:43,Monday,KENNEDY SRT STATION,ERCD,4,9,S,SRT,3016
-2021-07-26,06:37,Monday,WOODBINE STATION,EUSC,0,0,W,BD,5294
-2021-07-26,12:03,Monday,KENNEDY SRT STATION,MRTO,10,15,N,SRT,3005
-2021-07-26,06:44,Monday,QUEEN STATION,MUPAA,0,0,S,YU,5991
-2021-07-26,17:20,Monday,MIDLAND STATION,MRUIR,0,0,N,SRT,3015
-2021-07-26,07:03,Monday,YORK MILLS STATION,SUO,8,11,S,YU,5621
-2021-07-26,07:13,Monday,YORK MILLS STATION,SUDP,0,0,N,YU,5421
-2021-07-26,07:17,Monday,YORK MILLS STATION,SUDP,15,18,N,YU,5471
-2021-07-26,08:42,Monday,VICTORIA PARK STATION,EUDO,3,7,E,BD,5240
-2021-07-26,10:38,Monday,ST CLAIR WEST STATION,SUAE,0,0,N,YU,5756
-2021-07-26,11:52,Monday,CHESTER STATION,TUSC,0,0,E,BD,5152
-2021-07-26,12:16,Monday,FINCH STATION,MUIRS,0,0,,YU,0
-2021-07-26,12:28,Monday,WOODBINE STATION,SUDP,8,12,W,BD,5013
-2021-07-26,12:31,Monday,MUSEUM STATION,MUATC,5,8,S,YU,5831
-2021-07-26,12:50,Monday,YORK UNIVERSITY STATIO,SUDP,4,7,N,YU,5451
-2021-07-26,12:53,Monday,SUMMERHILL STATION,SUDP,19,22,N,YU,5831
-2021-07-26,14:21,Monday,ST ANDREW STATION,MUATC,9,12,N,YU,5701
-2021-07-26,14:42,Monday,SHERBOURNE STATION,PUTSC,3,7,E,BD,5364
-2021-07-26,14:55,Monday,KENNEDY BD STATION,SUAP,0,0,,BD,0
-2021-07-26,15:40,Monday,QUEEN'S PARK STATION,PUMST,0,0,,YU,0
-2021-07-26,15:51,Monday,FINCH STATION,MUNOA,3,6,S,YU,0
-2021-07-26,16:03,Monday,SUMMERHILL STATION,MUIE,3,6,S,YU,5911
-2021-07-26,16:40,Monday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,6026
-2021-07-26,17:26,Monday,GREENWOOD STATION,MUNCA,0,0,,BD,0
-2021-07-26,17:35,Monday,MUSEUM STATION,MUNCA,0,0,,YU,0
-2021-07-26,18:04,Monday,WARDEN STATION,MUPAA,0,0,E,BD,5191
-2021-07-26,18:11,Monday,HIGH PARK STATION,EUNT,5,9,W,BD,5160
-2021-07-26,19:11,Monday,QUEEN STATION,MUPAA,0,0,N,YU,5796
-2021-07-26,19:15,Monday,LAWRENCE STATION,PUSWZ,8,13,S,YU,5591
-2021-07-26,20:32,Monday,WOODBINE STATION,PUSI,4,11,W,BD,5217
-2021-07-26,20:50,Monday,EGLINTON STATION,MUIS,0,0,,YU,0
-2021-07-26,22:00,Monday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-07-26,01:06,Monday,QUEEN STATION,MUIS,0,0,N,YU,5431
-2021-07-26,01:19,Monday,VICTORIA PARK STATION,SUDP,0,0,,BD,0
-2021-07-26,01:58,Monday,FINCH STATION,MUIS,0,0,,YU,0
-2021-07-26,04:55,Monday,DON MILLS STATION,MUNCA,0,0,,SHP,0
-2021-07-26,05:05,Monday,LESLIE STATION,MUNCA,0,0,,SHP,0
-2021-07-26,05:31,Monday,DON MILLS STATION,TUCC,4,0,W,SHP,6141
-2021-07-26,07:24,Monday,BESSARION STATION,TUMVS,5,10,E,SHP,6196
-2021-07-26,18:16,Monday,BESSARION STATION,MUIS,0,0,,SHP,0
-2021-07-27,02:06,Tuesday,UNION STATION,SUEAS,0,0,,YU,0
-2021-07-27,04:24,Tuesday,SPADINA BD STATION,SUAP,0,0,,BD,0
-2021-07-27,04:57,Tuesday,DAVISVILLE STATION,PUSNT,0,0,S,YU,0
-2021-07-27,05:18,Tuesday,SHEPPARD WEST STATION,TUO,4,8,N,YU,5691
-2021-07-27,06:10,Tuesday,ROYAL YORK STATION,PUSI,0,0,E,BD,5360
-2021-07-27,06:27,Tuesday,ROYAL YORK STATION,PUSI,0,0,W,BD,5110
-2021-07-27,08:15,Tuesday,ST GEORGE BD STATION,MUI,0,0,E,BD,5020
-2021-07-27,08:21,Tuesday,ST GEORGE YUS STATION,SUDP,3,6,S,YU,5686
-2021-07-27,08:43,Tuesday,KENNEDY BD STATION,PUMEL,0,0,,BD,0
-2021-07-27,10:47,Tuesday,SPADINA BD STATION,SUDP,0,0,,BD,0
-2021-07-27,10:50,Tuesday,WILSON STATION,MUPAA,0,0,S,YU,5831
-2021-07-27,10:59,Tuesday,KENNEDY BD STATION,MUTO,3,7,W,BD,5254
-2021-07-27,11:00,Tuesday,ST CLAIR WEST STATION,MUIR,0,0,N,YU,5811
-2021-07-27,11:10,Tuesday,VAUGHAN MC STATION,MUO,3,6,N,YU,5964
-2021-07-27,12:10,Tuesday,KENNEDY BD STATION,EUME,4,8,W,BD,5360
-2021-07-27,12:52,Tuesday,WARDEN STATION,TUOS,0,0,E,BD,5331
-2021-07-27,13:14,Tuesday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,0
-2021-07-27,13:40,Tuesday,GREENWOOD SHOP,EUO,0,0,,BD,0
-2021-07-27,13:44,Tuesday,MAIN STREET STATION,EUSC,0,0,W,BD,5294
-2021-07-27,13:52,Tuesday,KEELE STATION,PUSTS,5,9,E,BD,5165
-2021-07-27,13:59,Tuesday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,0
-2021-07-27,14:02,Tuesday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,0
-2021-07-27,14:25,Tuesday,OSSINGTON STATION,SUAP,11,15,E,BD,5130
-2021-07-27,14:59,Tuesday,EGLINTON STATION,SUDP,4,7,N,YU,6121
-2021-07-27,15:16,Tuesday,BATHURST STATION,MUDD,12,16,E,BD,5200
-2021-07-27,15:33,Tuesday,YONGE BD STATION,SUUT,8,12,W,BD,5362
-2021-07-27,15:48,Tuesday,JANE STATION,EUCO,3,7,E,BD,5160
-2021-07-27,17:03,Tuesday,BAY STATION,MUI,8,12,E,BD,5150
-2021-07-27,17:16,Tuesday,SPADINA BD STATION,SUPOL,4,8,W,BD,5238
-2021-07-27,17:27,Tuesday,SPADINA YUS STATION,SUO,14,17,N,YU,5401
-2021-07-27,17:32,Tuesday,SPADINA BD STATION,SUDP,0,0,E,BD,5167
-2021-07-27,18:04,Tuesday,YORKDALE STATION,TUO,5,8,S,YU,5431
-2021-07-27,18:14,Tuesday,SHEPPARD STATION,SUDP,5,8,S,YU,5691
-2021-07-27,18:16,Tuesday,KENNEDY BD STATION,SUO,0,0,,BD,0
-2021-07-27,18:20,Tuesday,WOODBINE STATION,MUNCA,0,0,,BD,0
-2021-07-27,20:41,Tuesday,BLOOR STATION,MUIS,0,0,S,YU,0
-2021-07-27,21:40,Tuesday,YORK MILLS STATION,TUOS,3,10,S,YU,5436
-2021-07-27,22:00,Tuesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU / BD,0
-2021-07-27,23:01,Tuesday,ST CLAIR STATION,SUO,4,11,S,YU,5621
-2021-07-27,00:44,Tuesday,SHERBOURNE STATION,MUIS,0,0,,BD,0
-2021-07-27,01:13,Tuesday,KIPLING STATION,MUIR,7,14,E,BD,5274
-2021-07-27,01:56,Tuesday,ROSEDALE STATION,MUIS,0,0,,YU,0
-2021-07-27,09:51,Tuesday,SHEPPARD-YONGE STATION,TUNIP,0,0,E,SHP,6196
-2021-07-27,18:22,Tuesday,DON MILLS STATION,TUMVS,0,0,E,SHP,6181
-2021-07-28,03:07,Wednesday,GREENWOOD YARD,MUWR,0,0,,BD,0
-2021-07-28,06:07,Wednesday,MCCOWAN STATION,MRO,5,10,S,SRT,3000
-2021-07-28,07:20,Wednesday,MCCOWAN STATION,ERTC,5,10,S,SRT,3012
-2021-07-28,05:42,Wednesday,UNION STATION,MUIRS,0,0,,YU,0
-2021-07-28,13:40,Wednesday,KENNEDY SRT STATION,MRTO,6,12,S,SRT,3012
-2021-07-28,06:37,Wednesday,ROSEDALE STATION,MUSC,0,0,N,YU,6111
-2021-07-28,06:52,Wednesday,CHRISTIE STATION,TUS,3,8,E,BD,5227
-2021-07-28,13:57,Wednesday,KENNEDY SRT STATION,PRSL,136,142,S,SRT,3000
-2021-07-28,07:54,Wednesday,FINCH STATION,MUSC,3,6,S,YU,5466
-2021-07-28,17:23,Wednesday,SCARBOROUGH CTR STATIO,TRNCA,0,0,,SRT,0
-2021-07-28,07:56,Wednesday,ROSEDALE STATION,TUATC,5,8,S,YU,5386
-2021-07-28,08:29,Wednesday,YONGE BD STATION,TUO,0,0,W,BD,5209
-2021-07-28,09:17,Wednesday,EGLINTON STATION,SUDP,3,6,S,YU,5671
-2021-07-28,09:48,Wednesday,ROSEDALE STATION,TUATC,4,7,S,YU,5426
-2021-07-28,09:50,Wednesday,FINCH WEST STATION,EUNT,3,6,N,YU,5766
-2021-07-28,11:03,Wednesday,DONLANDS STATION,MUPAA,0,0,E,BD,5077
-2021-07-28,11:20,Wednesday,YORK MILLS STATION,MUIRS,4,7,S,YU,5881
-2021-07-28,11:23,Wednesday,DAVISVILLE STATION,PUMEL,0,0,,YU,0
-2021-07-28,11:27,Wednesday,BLOOR STATION,MUI,33,35,N,YU,5721
-2021-07-28,13:17,Wednesday,VICTORIA PARK STATION,MUSAN,4,8,W,BD,5124
-2021-07-28,14:03,Wednesday,DUFFERIN STATION,MUIR,5,9,E,BD,5160
-2021-07-28,14:48,Wednesday,UNION STATION,MUO,3,6,N,YU,5426
-2021-07-28,15:52,Wednesday,SPADINA YUS STATION,MUI,0,0,W,BD,5052
-2021-07-28,16:51,Wednesday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,5591
-2021-07-28,17:03,Wednesday,JANE STATION,SUDP,0,0,E,BD,5138
-2021-07-28,17:04,Wednesday,ST CLAIR STATION,MUIRS,0,0,S,YU,0
-2021-07-28,17:05,Wednesday,KENNEDY BD STATION,PUSCR,4,8,E,BD,5193
-2021-07-28,17:13,Wednesday,UNION STATION,MUIR,3,6,N,YU,5496
-2021-07-28,17:16,Wednesday,ST GEORGE YUS STATION,SUDP,0,0,,YU,0
-2021-07-28,17:31,Wednesday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,0
-2021-07-28,18:11,Wednesday,KENNEDY BD STATION,PUTIJ,13,17,W,BD,5351
-2021-07-28,19:53,Wednesday,KENNEDY BD STATION,PUSO,9,16,W,BD,5064
-2021-07-28,20:55,Wednesday,BROADVIEW STATION,MUIS,0,0,,BD,0
-2021-07-28,22:00,Wednesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU / BD,0
-2021-07-28,22:20,Wednesday,KENNEDY BD STATION,SUSA,0,0,,BD,0
-2021-07-28,23:17,Wednesday,COXWELL STATION,SUUT,7,14,W,BD,5064
-2021-07-28,23:38,Wednesday,ISLINGTON STATION,MUIS,0,0,,BD,0
-2021-07-28,01:31,Wednesday,ISLINGTON STATION,EUBK,13,20,W,BD,5064
-2021-07-28,08:27,Wednesday,BAYVIEW STATION,TUOS,7,12,W,SHP,6186
-2021-07-28,22:39,Wednesday,LESLIE STATION,PUOPO,9,14,W,SHP,6191
-2021-07-29,05:59,Thursday,KEELE STATION,EUYRD,5,10,W,BD,0
-2021-07-29,15:10,Thursday,MCCOWAN YARD,ERLT,5,10,,SRT,3000
-2021-07-29,06:16,Thursday,WARDEN STATION,MUTO,4,9,W,BD,5353
-2021-07-29,06:52,Thursday,NORTH YORK CTR STATION,TUOS,0,0,S,YU,5701
-2021-07-29,06:57,Thursday,BLOOR STATION,MUPAA,0,0,N,YU,5676
-2021-07-29,10:42,Thursday,EGLINTON WEST STATION,MUIS,0,0,N,YU,5756
-2021-07-29,11:19,Thursday,BATHURST STATION,MUIS,0,0,,BD,0
-2021-07-29,11:27,Thursday,ROSEDALE STATION,MUSC,0,0,N,YU,5881
-2021-07-29,12:00,Thursday,BLOOR STATION,MUIR,3,6,N,YU,5641
-2021-07-29,12:18,Thursday,EGLINTON STATION,MUPAA,0,0,N,YU,5751
-2021-07-29,12:29,Thursday,DUNDAS WEST STATION,MUIS,0,0,,BD,0
-2021-07-29,12:33,Thursday,MUSEUM STATION,TUATC,3,6,S,YU,5976
-2021-07-29,12:37,Thursday,FINCH STATION,MUI,3,6,S,YU,5671
-2021-07-29,13:08,Thursday,VAUGHAN MC STATION,MUIRS,0,0,,YU,0
-2021-07-29,13:10,Thursday,COXWELL STATION,SUDP,0,0,W,BD,5035
-2021-07-29,14:39,Thursday,HIGH PARK STATION,EUDO,6,10,W,BD,5057
-2021-07-29,14:45,Thursday,OSSINGTON STATION,TUMVS,6,10,E,BD,5168
-2021-07-29,15:49,Thursday,WELLESLEY STATION,MUIS,0,0,,YU,0
-2021-07-29,16:18,Thursday,DUFFERIN STATION,MUD,4,8,W,BD,5203
-2021-07-29,16:19,Thursday,COXWELL STATION,TUOS,0,0,W,BD,5165
-2021-07-29,16:29,Thursday,GREENWOOD STATION,MUIS,0,0,,BD,0
-2021-07-29,16:32,Thursday,KEELE STATION,PUSTS,0,0,W,BD,5167
-2021-07-29,16:36,Thursday,FINCH STATION,TUSC,0,0,N,YU,5766
-2021-07-29,16:49,Thursday,ST GEORGE YUS STATION,MUIS,0,0,,YU,0
-2021-07-29,17:14,Thursday,VAUGHAN MC STATION,MUNOA,3,6,,YU,0
-2021-07-29,17:16,Thursday,RUNNYMEDE STATION,SUDP,3,7,W,BD,5134
-2021-07-29,17:33,Thursday,KIPLING STATION,MUIRS,0,0,,BD,0
-2021-07-29,17:35,Thursday,FINCH STATION,MUIE,3,6,N,YU,5806
-2021-07-29,18:57,Thursday,FINCH WEST STATION,SUDP,3,6,N,YU,6051
-2021-07-29,19:04,Thursday,KENNEDY BD STATION,PUTIJ,7,14,W,BD,0
-2021-07-29,19:12,Thursday,KENNEDY BD STATION,MUI,7,14,W,BD,5235
-2021-07-29,20:05,Thursday,MAIN STREET STATION,SUO,0,0,,BD,0
-2021-07-29,22:00,Thursday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-07-29,22:36,Thursday,FINCH STATION,MUIS,0,0,,YU,0
-2021-07-29,22:51,Thursday,DUNDAS WEST STATION,SUDP,0,0,,BD,0
-2021-07-29,23:11,Thursday,KIPLING STATION,SUDP,0,0,,BD,0
-2021-07-29,23:24,Thursday,FINCH STATION,MUIS,0,0,,YU,0
-2021-07-29,01:30,Thursday,MAIN STREET STATION,MUIS,0,0,,BD,0
-2021-07-29,02:32,Thursday,SHEPPARD-YONGE STATION,MUIS,0,0,,SHP,0
-2021-07-30,02:03,Friday,JANE STATION,MUIS,0,0,,BD,0
-2021-07-30,02:20,Friday,HIGHWAY 407 STATION,SUUT,10,0,S,YU,5756
-2021-07-30,06:09,Friday,COLLEGE STATION,MUIRS,0,0,N,YU,0
-2021-07-30,06:23,Friday,CHRISTIE STATION,EUBK,7,11,E,BD,5063
-2021-07-30,07:06,Friday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-07-30,07:37,Friday,SHEPPARD STATION,SUAE,0,0,,YU,0
-2021-07-30,08:27,Friday,FINCH STATION,MUSC,0,0,S,YU,5726
-2021-07-30,09:02,Friday,LAWRENCE STATION,TUO,7,10,N,YU,6056
-2021-07-30,09:21,Friday,VAUGHAN MC STATION,MUATC,5,8,S,YU,5516
-2021-07-30,09:34,Friday,BLOOR STATION,SUO,3,6,S,YU,5656
-2021-07-30,10:35,Friday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,5476
-2021-07-30,10:43,Friday,EGLINTON STATION,MUSC,0,0,N,YU,5721
-2021-07-30,10:49,Friday,KENNEDY BD STATION,EUCO,4,8,E,BD,5218
-2021-07-30,11:52,Friday,VAUGHAN MC STATION,MUTO,3,6,S,YU,5521
-2021-07-30,12:37,Friday,GREENWOOD STATION,MUSAN,4,8,W,BD,5156
-2021-07-30,13:10,Friday,EGLINTON WEST STATION,MUIS,0,0,,YU,0
-2021-07-30,13:41,Friday,FINCH STATION,MUNOA,3,6,N,YU,6121
-2021-07-30,14:25,Friday,EGLINTON STATION,PUMST,0,0,,YU,0
-2021-07-30,14:56,Friday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,6096
-2021-07-30,15:14,Friday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,6136
-2021-07-30,15:49,Friday,KEELE STATION,SUO,0,0,,BD,0
-2021-07-30,16:07,Friday,WARDEN STATION,SUDP,19,23,E,BD,5048
-2021-07-30,16:45,Friday,PAPE STATION,MUIS,0,0,W,BD,0
-2021-07-30,17:12,Friday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,0
-2021-07-30,18:30,Friday,PIONEER VILLAGE STATIO,MUIR,0,0,S,YU,5711
-2021-07-30,19:07,Friday,PAPE STATION,SUAP,9,13,E,BD,5235
-2021-07-30,19:07,Friday,EGLINTON STATION,SUDP,0,0,,YU,0
-2021-07-30,19:36,Friday,VAUGHAN MC STATION,MUNOA,5,10,S,YU,5516
-2021-07-30,19:57,Friday,YORKDALE STATION,MUIRS,0,0,,YU,0
-2021-07-30,20:03,Friday,WELLESLEY STATION,MUIS,0,0,,YU,0
-2021-07-30,20:21,Friday,COXWELL STATION,SUDP,4,11,W,BD,5015
-2021-07-30,20:22,Friday,CASTLE FRANK STATION,MUIS,0,0,,BD,0
-2021-07-30,22:00,Friday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-07-30,22:09,Friday,VAUGHAN MC STATION,MUNOA,5,10,S,YU,5526
-2021-07-30,22:20,Friday,CASTLE FRANK STATION,MUIRS,0,0,,BD,0
-2021-07-30,22:43,Friday,UNION STATION,MUIS,0,0,,YU,0
-2021-07-30,23:52,Friday,ST CLAIR WEST STATION,MUIRS,0,0,,YU,0
-2021-07-30,23:58,Friday,KIPLING STATION,SUAP,0,0,,BD,8054
-2021-07-30,00:07,Friday,FINCH STATION,MUIS,0,0,,YU,0
-2021-07-30,00:50,Friday,ROSEDALE STATION,SUAP,3,10,N,YU,5536
-2021-07-30,01:39,Friday,FINCH STATION,MUIRS,0,0,,YU,0
-2021-07-30,01:56,Friday,BLOOR STATION,SUDP,3,10,N,YU,5991
-2021-07-31,02:02,Saturday,GLENCAIRN STATION,SUUT,0,0,N,YU,5506
-2021-07-31,11:41,Saturday,LAWRENCE EAST STATION,ERDO,4,10,S,SRT,3026
-2021-07-31,02:05,Saturday,LAWRENCE WEST STATION,SUUT,13,20,N,YU,5506
-2021-07-31,02:39,Saturday,ROSEDALE STATION,PUTOE,0,0,S,YU,83
-2021-07-31,05:45,Saturday,KIPLING TO JANE STATIO,MUO,0,0,,BD,0
-2021-07-31,06:03,Saturday,DAVISVILLE STATION,PUSI,0,0,S,YU,5996
-2021-07-31,06:07,Saturday,ST GEORGE BD STATION,EUDO,5,10,W,BD,5199
-2021-07-31,06:46,Saturday,KEELE STATION,MUIE,0,0,,BD,0
-2021-07-31,09:23,Saturday,HIGH PARK STATION,TUOS,3,7,E,BD,5235
-2021-07-31,10:13,Saturday,EGLINTON STATION,MUSC,0,0,N,YU,5761
-2021-07-31,10:36,Saturday,WILSON STATION,MUNOA,4,8,S,YU,0
-2021-07-31,12:53,Saturday,EGLINTON WEST STATION,MUO,0,0,,YU,0
-2021-07-31,13:07,Saturday,BLOOR STATION,MUIE,0,0,,YU,0
-2021-07-31,13:14,Saturday,VAUGHAN MC STATION,MUNOA,4,8,S,YU,0
-2021-07-31,13:23,Saturday,BLOOR STATION,SUUT,19,23,N,YU,5626
-2021-07-31,13:33,Saturday,JANE STATION,PUMEL,0,0,,BD,0
-2021-07-31,14:03,Saturday,BAY STATION,MUPAA,0,0,E,BD,5152
-2021-07-31,14:11,Saturday,UNION STATION,MUSAN,4,8,S,YU,5526
-2021-07-31,14:11,Saturday,BLOOR STATION,PUMEL,0,0,E,YU,0
-2021-07-31,14:19,Saturday,ST PATRICK STATION,MUIR,10,14,N,YU,5526
-2021-07-31,14:44,Saturday,SPADINA BD STATION,PUMEL,0,0,,BD,0
-2021-07-31,15:09,Saturday,BLOOR STATION,SUUT,5,9,N,YU,5786
-2021-07-31,16:00,Saturday,ST GEORGE BD STATION,TUMVS,6,10,W,BD,5365
-2021-07-31,16:37,Saturday,VAUGHAN MC STATION,MUNOA,4,8,S,YU,0
-2021-07-31,16:49,Saturday,CASTLE FRANK STATION,MUIRS,0,0,,BD,0
-2021-07-31,17:37,Saturday,DUNDAS WEST STATION,SUUT,5,9,W,BD,5177
-2021-07-31,17:41,Saturday,FINCH STATION,PUMEL,0,0,,YU,0
-2021-07-31,17:49,Saturday,WELLESLEY STATION,MUIS,0,0,,YU,0
-2021-07-31,17:55,Saturday,MAIN STREET STATION,MUPAA,0,0,W,BD,5134
-2021-07-31,18:33,Saturday,CHRISTIE STATION,PUTDN,6,10,W,BD,5156
-2021-07-31,20:48,Saturday,KIPLING STATION,MUPAA,3,10,E,BD,5165
-2021-07-31,21:43,Saturday,ST CLAIR STATION,PUSI,0,0,S,YU,5451
-2021-07-31,21:49,Saturday,ST CLAIR STATION,PUSI,0,0,S,YU,6036
-2021-07-31,21:56,Saturday,ST CLAIR STATION,PUSI,0,0,S,YU,6081
-2021-07-31,22:00,Saturday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU / BD,0
-2021-07-31,22:07,Saturday,QUEEN STATION,MUIR,7,14,N,YU,5831
-2021-07-31,22:10,Saturday,ISLINGTON STATION,SUO,0,0,E,BD,5206
-2021-07-31,22:35,Saturday,QUEEN'S PARK STATION,MUIS,0,0,,YU,0
-2021-07-31,23:47,Saturday,FINCH STATION,MUIRS,0,0,,YU,0
-2021-07-31,00:11,Saturday,ST PATRICK STATION,MUIS,0,0,,YU,0
-2021-07-31,00:49,Saturday,QUEEN'S PARK STATION,SUDP,0,0,N,YU,5451
-2021-07-31,01:03,Saturday,DUPONT STATION,MUPAA,3,10,N,YU,6106
-2021-07-31,01:20,Saturday,PIONEER VILLAGE STATIO,MUPAA,4,11,N,YU,5451
-2021-07-31,01:57,Saturday,HIGH PARK STATION,MUIRS,0,0,,BD,0
-2021-07-31,13:08,Saturday,DON MILLS STATION,PUCSC,0,0,W,SHP,6186
-2021-07-31,16:58,Saturday,BESSARION STATION,PUOPO,7,12,E,SHP,6196
-2021-08-01,05:35,Sunday,VMC TO ST GEORGE STATI,MUO,0,0,,YU,0
-2021-08-01,07:36,Sunday,YORK UNIVERSITY STATIO,PUOPO,6,12,N,YU,6121
-2021-08-01,08:00,Sunday,VMC TO ST GEORGE STATI,MUO,0,0,,YU,0
-2021-08-01,08:32,Sunday,KENNEDY BD STATION,MUIE,0,0,W,BD,5023
-2021-08-01,08:47,Sunday,EGLINTON STATION,MUCL,6,12,N,YU,5671
-2021-08-01,09:13,Sunday,ST GEORGE YUS STATION,MUO,5,10,N,YU,5976
-2021-08-01,09:21,Sunday,WILSON STATION,MUWR,5,10,S,YU,6061
-2021-08-01,09:50,Sunday,DUNDAS WEST STATION,MUIS,0,0,,BD,0
-2021-08-01,10:00,Sunday,SPADINA YUS STATION,PUOPO,7,12,N,YU,5676
-2021-08-01,10:09,Sunday,DUPONT STATION,PUOPO,5,10,N,YU,5676
-2021-08-01,10:15,Sunday,ST GEORGE YUS STATION,PUOPO,10,15,N,YU,5701
-2021-08-01,10:53,Sunday,COLLEGE STATION,MUPAA,4,9,S,YU,6066
-2021-08-01,11:06,Sunday,DUPONT STATION,MUI,3,8,N,YU,5426
-2021-08-01,12:54,Sunday,HIGH PARK STATION,MUO,0,0,,BD,0
-2021-08-01,13:06,Sunday,EGLINTON STATION,SUO,0,0,,YU,0
-2021-08-01,13:52,Sunday,BROADVIEW STATION,SUDP,4,9,E,BD,5180
-2021-08-01,13:53,Sunday,YORK MILLS STATION,SUDP,0,0,S,YU,5741
-2021-08-01,14:01,Sunday,WOODBINE STATION,SUDP,12,17,E,BD,5248
-2021-08-01,14:01,Sunday,BAY STATION,PUSRA,4,9,E,BD,5132
-2021-08-01,17:10,Sunday,SUMMERHILL STATION,SUDP,4,9,N,YU,5991
-2021-08-01,17:42,Sunday,ST CLAIR WEST STATION,TUO,5,10,S,YU,6081
-2021-08-01,18:11,Sunday,ISLINGTON STATION,SUDP,0,0,E,BD,5131
-2021-08-01,18:17,Sunday,ROSEDALE STATION,SUDP,0,0,,YU,0
-2021-08-01,19:56,Sunday,EGLINTON STATION,MUSAN,7,14,N,YU,5991
-2021-08-01,20:23,Sunday,UNION STATION,MUIS,0,0,,YU,0
-2021-08-01,21:57,Sunday,BAY STATION,MUO,12,19,E,BD,5156
-2021-08-01,22:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-08-01,23:02,Sunday,WARDEN STATION,EUDO,7,14,E,BD,5132
-2021-08-01,23:12,Sunday,KENNEDY BD STATION,EUCD,7,14,W,BD,5177
-2021-08-01,23:45,Sunday,BATHURST STATION,SUUT,0,0,E,BD,5362
-2021-08-01,23:47,Sunday,CASTLE FRANK STATION,MUDD,9,16,W,BD,5015
-2021-08-01,00:29,Sunday,PAPE STATION,MUIS,0,0,,BD,0
-2021-08-01,01:38,Sunday,BAY STATION,MUIS,0,0,,BD,0
-2021-08-01,01:46,Sunday,QUEEN STATION,MUPAA,0,0,S,YU,5996
-2021-08-01,01:59,Sunday,SHERBOURNE STATION,MUIRS,0,0,E,BD,0
-2021-08-02,05:47,Monday,GREENWOOD STATION,TUNIP,3,0,E,BD,5075
-2021-08-02,18:05,Monday,SCARBOROUGH CTR STATIO,SRDP,0,0,W,SRT,0
-2021-08-02,05:52,Monday,GREENWOOD STATION,MUTO,6,11,E,BD,5341
-2021-08-02,06:17,Monday,OSSINGTON STATION,MUIS,0,0,,BD,0
-2021-08-02,06:54,Monday,EGLINTON STATION,MUNOA,6,12,N,YU,5791
-2021-08-02,08:16,Monday,BLOOR STATION,MUPAA,3,9,N,YU,5806
-2021-08-02,08:20,Monday,WARDEN STATION,SUO,0,0,W,BD,5288
-2021-08-02,08:50,Monday,EGLINTON STATION,EUYRD,5,10,N,YU,6116
-2021-08-02,09:40,Monday,YORK MILLS STATION,SUG,5,10,S,YU,5831
-2021-08-02,10:46,Monday,COXWELL STATION,MUIS,0,0,,BD,0
-2021-08-02,12:35,Monday,WARDEN STATION,SUO,0,0,,BD,0
-2021-08-02,14:38,Monday,DUNDAS STATION,SUDP,0,0,S,YU,5816
-2021-08-02,14:49,Monday,GLENCAIRN STATION,EUNT,7,12,N,YU,5516
-2021-08-02,16:26,Monday,OSSINGTON STATION,PUMEL,0,0,,BD,0
-2021-08-02,16:35,Monday,QUEEN'S PARK STATION,MUIS,0,0,,YU,0
-2021-08-02,17:13,Monday,WELLESLEY STATION,SUDP,0,0,,YU,0
-2021-08-02,18:00,Monday,SHERBOURNE STATION,MUIS,0,0,,BD,0
-2021-08-02,18:43,Monday,NORTH YORK CTR STATION,PUMEL,0,0,,YU,0
-2021-08-02,20:20,Monday,BLOOR STATION,MUIS,0,0,,YU,0
-2021-08-02,21:55,Monday,DOWNSVIEW PARK STATION,MUIS,0,0,,YU,0
-2021-08-02,22:00,Monday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-08-02,23:40,Monday,YORK MILLS STATION,TUSC,0,0,N,YU,5786
-2021-08-02,23:59,Monday,CHRISTIE STATION,MUDD,7,14,E,BD,5144
-2021-08-02,00:19,Monday,RUNNYMEDE STATION,SUDP,13,20,E,BD,5275
-2021-08-02,01:12,Monday,ST GEORGE BD STATION,PUSI,5,12,W,BD,5190
-2021-08-02,07:48,Monday,SHEPPARD-YONGE STATION,MUSC,0,0,E,SHP,6146
-2021-08-02,13:02,Monday,BESSARION STATION,MUNCA,0,0,,SHP,0
-2021-08-02,16:34,Monday,BAYVIEW STATION,PUOPO,0,0,E,SHP,6161
-2021-08-03,05:56,Tuesday,DAVISVILLE STATION,TUNIP,4,10,N,YU,5536
-2021-08-03,04:20,Tuesday,SCARBOROUGH CTR STATIO,MRUI,0,0,,SRT,0
-2021-08-03,13:28,Tuesday,MCCOWAN STATION,MRTO,10,16,N,SRT,3025
-2021-08-03,06:21,Tuesday,ROSEDALE STATION,MUATC,7,10,S,YU,5491
-2021-08-03,07:49,Tuesday,FINCH STATION,MUIE,0,0,,YU,0
-2021-08-03,13:30,Tuesday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-08-03,21:28,Tuesday,LAWRENCE EAST STATION,MRUIR,0,0,,SRT,0
-2021-08-03,07:53,Tuesday,SHEPPARD STATION,SUDP,4,7,S,YU,5476
-2021-08-03,08:09,Tuesday,COXWELL STATION,MUIS,0,0,,BD,0
-2021-08-03,22:33,Tuesday,MCCOWAN STATION,MRO,6,12,S,SRT,3026
-2021-08-03,08:35,Tuesday,SHERBOURNE STATION,MUIRS,0,0,W,BD,0
-2021-08-03,08:59,Tuesday,DAVISVILLE STATION,SUDP,4,7,N,YU,5431
-2021-08-03,09:01,Tuesday,BROADVIEW STATION,MUIS,0,0,,BD,0
-2021-08-03,10:01,Tuesday,ISLINGTON STATION,TUMVS,4,8,E,BD,5144
-2021-08-03,10:48,Tuesday,EGLINTON STATION,MUTO,0,0,N,YU,5466
-2021-08-03,10:57,Tuesday,BATHURST STATION,SUDP,0,0,,BD,0
-2021-08-03,12:35,Tuesday,PAPE STATION,SUAE,19,23,E,BD,5362
-2021-08-03,14:28,Tuesday,QUEEN STATION,MUIRS,0,0,S,YU,5791
-2021-08-03,14:42,Tuesday,QUEEN STATION,MUIRS,0,0,,YU,0
-2021-08-03,14:58,Tuesday,EGLINTON STATION,SUDP,0,0,S,YU,5911
-2021-08-03,15:20,Tuesday,VAUGHAN MC STATION,MUTO,10,13,S,YU,5701
-2021-08-03,15:32,Tuesday,CHRISTIE STATION,MUI,13,17,E,BD,5020
-2021-08-03,16:05,Tuesday,WILSON STATION,PUTWZ,0,0,N,YU,5566
-2021-08-03,17:12,Tuesday,KENNEDY BD STATION,MUIRS,0,0,,BD,0
-2021-08-03,17:30,Tuesday,DONLANDS STATION,MUIS,0,0,,BD,0
-2021-08-03,17:31,Tuesday,ST PATRICK STATION,SUBT,21,24,S,YU,6111
-2021-08-03,18:20,Tuesday,SPADINA YUS STATION,MUIS,0,0,,YU,0
-2021-08-03,18:26,Tuesday,YORK MILLS STATION,MUIRS,0,0,,YU,0
-2021-08-03,18:38,Tuesday,ROYAL YORK STATION,MUPAA,0,0,E,BD,5043
-2021-08-03,19:10,Tuesday,ST CLAIR WEST STATION,MUPAA,0,0,S,YU,6131
-2021-08-03,19:14,Tuesday,YONGE BD STATION,SUDP,0,0,E,BD,5239
-2021-08-03,19:14,Tuesday,BLOOR STATION,SUDP,0,0,N,YU,5806
-2021-08-03,19:18,Tuesday,CASTLE FRANK STATION,SUDP,4,8,E,BD,5035
-2021-08-03,19:36,Tuesday,BLOOR STATION,MUIRS,0,0,,YU,0
-2021-08-03,20:16,Tuesday,YORK MILLS STATION,PUSO,4,9,S,YU,6136
-2021-08-03,21:09,Tuesday,SPADINA BD STATION,MUIS,0,0,E,BD,0
-2021-08-03,21:19,Tuesday,SHEPPARD STATION,MUSC,0,0,N,YU,5666
-2021-08-03,21:21,Tuesday,VAUGHAN MC STATION,SUDP,15,22,S,YU,6131
-2021-08-03,21:26,Tuesday,WARDEN STATION,MUPAA,0,0,E,BD,5131
-2021-08-03,21:49,Tuesday,FINCH STATION,MUIRS,0,0,,YU,0
-2021-08-03,22:00,Tuesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-08-03,22:16,Tuesday,DUNDAS STATION,SUEAS,9,16,N,YU,6096
-2021-08-03,22:45,Tuesday,KIPLING STATION,SUEAS,5,12,E,BD,5284
-2021-08-03,23:05,Tuesday,KING STATION TO SPADIN,MUO,0,0,,YU,0
-2021-08-03,23:33,Tuesday,LAWRENCE STATION,SUUT,12,19,S,YU,5391
-2021-08-03,23:37,Tuesday,WARDEN STATION,MUIRS,0,0,,BD,0
-2021-08-03,23:46,Tuesday,LAWRENCE STATION,MUO,7,14,S,YU,5391
-2021-08-03,23:50,Tuesday,DUNDAS WEST STATION,MUIS,0,0,,BD,0
-2021-08-03,00:04,Tuesday,SUMMERHILL STATION,MUSC,0,0,S,YU,5426
-2021-08-03,00:42,Tuesday,DUPONT STATION,PUTWZ,6,13,N,YU,5461
-2021-08-03,01:00,Tuesday,SHEPPARD STATION,MUSC,0,0,S,YU,5741
-2021-08-03,01:13,Tuesday,VICTORIA PARK STATION,MUIS,0,0,,YU,0
-2021-08-03,01:40,Tuesday,ST CLAIR WEST STATION,MUIS,0,0,,YU,0
-2021-08-03,01:42,Tuesday,SHEPPARD STATION,MUIRS,0,0,,YU,0
-2021-08-03,23:42,Tuesday,DON MILLS STATION,TUMVS,0,0,E,SHP,6196
-2021-08-04,02:24,Wednesday,KIPLING STATION,MUIRS,0,0,,BD,5148
-2021-08-04,05:52,Wednesday,MCCOWAN STATION,MRCL,5,10,S,SRT,3000
-2021-08-04,10:33,Wednesday,SCARBOROUGH CTR STATIO,ERTC,5,10,S,SRT,3022
-2021-08-04,05:19,Wednesday,SHEPPARD STATION,MUIRS,0,0,,YU,0
-2021-08-04,05:58,Wednesday,EGLINTON STATION,TUO,4,9,N,YU,6076
-2021-08-04,11:30,Wednesday,ELLESMERE STATION,MRTO,0,0,N,SRT,3025
-2021-08-04,07:45,Wednesday,BLOOR STATION,MUTO,0,0,S,YU,5541
-2021-08-04,12:25,Wednesday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-08-04,13:11,Wednesday,SCARBOROUGH CTR STATIO,MRTO,4,9,S,SRT,3010
-2021-08-04,08:25,Wednesday,SHERBOURNE STATION,EUNT,5,9,E,BD,5071
-2021-08-04,08:36,Wednesday,EGLINTON STATION,TUOS,0,0,S,YU,5391
-2021-08-04,08:44,Wednesday,ROSEDALE STATION,MUO,6,9,S,YU,5391
-2021-08-04,09:07,Wednesday,ST GEORGE YUS STATION,MUO,3,6,N,YU,5391
-2021-08-04,09:10,Wednesday,ROSEDALE STATION,MUSC,0,0,N,YU,5466
-2021-08-04,10:01,Wednesday,BLOOR STATION,SUDP,5,8,S,YU,5461
-2021-08-04,10:53,Wednesday,NORTH YORK CTR STATION,PUMEL,0,0,,YU,0
-2021-08-04,10:55,Wednesday,SHEPPARD STATION,PUSNT,0,0,N,YU,5396
-2021-08-04,11:00,Wednesday,KENNEDY BD STATION,PUMEL,0,0,,BD,0
-2021-08-04,11:22,Wednesday,BLOOR STATION,MUIS,0,0,N,YU,0
-2021-08-04,11:50,Wednesday,SHEPPARD STATION,SUUT,13,16,N,YU,5736
-2021-08-04,12:17,Wednesday,YORK MILLS STATION,MUTO,0,0,S,YU,5736
-2021-08-04,12:55,Wednesday,DOWNSVIEW PARK STATION,MUPAA,0,0,N,YU,6061
-2021-08-04,14:24,Wednesday,YORK MILLS STATION,TUSC,0,0,N,YU,5991
-2021-08-04,14:28,Wednesday,CHRISTIE STATION,TUMVS,4,8,E,BD,5042
-2021-08-04,16:07,Wednesday,YORK MILLS STATION,TUSC,3,6,N,YU,5471
-2021-08-04,16:25,Wednesday,KIPLING STATION,TUKEY,3,7,E,BD,5216
-2021-08-04,16:42,Wednesday,OLD MILL STATION,SUBT,14,18,E,BD,5209
-2021-08-04,17:18,Wednesday,ST GEORGE BD STATION,SUDP,10,14,W,BD,5023
-2021-08-04,17:50,Wednesday,BLOOR STATION,MUPAA,3,6,N,YU,5386
-2021-08-04,18:49,Wednesday,BLOOR STATION,SUAE,0,0,,YU,0
-2021-08-04,18:59,Wednesday,ROYAL YORK STATION,MUIS,0,0,,BD,0
-2021-08-04,19:21,Wednesday,KIPLING STATION,MUTO,4,8,E,BD,5266
-2021-08-04,19:26,Wednesday,KENNEDY BD STATION,TUSUP,4,11,W,BD,5101
-2021-08-04,21:23,Wednesday,LAWRENCE STATION,SUDP,0,0,,YU,0
-2021-08-04,21:45,Wednesday,ST CLAIR STATION,SUDP,6,13,N,YU,6096
-2021-08-04,23:00,Wednesday,KING STATION TO SPADIN,MUO,0,0,,YU,0
-2021-08-04,00:27,Wednesday,SHERBOURNE STATION,PUMEL,0,0,,BD,0
-2021-08-04,00:34,Wednesday,HIGH PARK STATION,MUIRS,0,0,,BD,0
-2021-08-04,01:16,Wednesday,WOODBINE STATION,MUIS,0,0,W,BD,0
-2021-08-04,09:05,Wednesday,SHEPPARD-YONGE STATION,MUSC,0,0,E,SHP,6156
-2021-08-04,16:40,Wednesday,BAYVIEW STATION,MUIS,0,0,,SHP,0
-2021-08-05,06:48,Thursday,KENNEDY SRT STATION,ERTC,4,10,S,SRT,3026
-2021-08-05,02:30,Thursday,ST GEORGE YUS STATION,PUMO,0,0,,YU,0
-2021-08-05,05:44,Thursday,KEELE STATION,EUBO,5,10,W,BD,5161
-2021-08-05,12:50,Thursday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,B,SRT,0
-2021-08-05,05:52,Thursday,KENNEDY BD STATION,EUME,6,12,W,BD,5101
-2021-08-05,23:26,Thursday,MIDLAND STATION,SRDP,6,12,N,SRT,3021
-2021-08-05,05:53,Thursday,KIPLING STATION,SUG,5,10,E,BD,5266
-2021-08-05,23:32,Thursday,SCARBOROUGH CTR STATIO,SRDP,0,0,N,SRT,3021
-2021-08-05,05:55,Thursday,YONGE BD STATION,MUO,5,0,W,BD,5182
-2021-08-05,06:19,Thursday,ST CLAIR STATION,SUDP,0,0,,YU,0
-2021-08-05,06:24,Thursday,GREENWOOD YARD,MUO,0,0,,BD,0
-2021-08-05,06:58,Thursday,ROSEDALE STATION,MUSC,0,0,N,YU,6096
-2021-08-05,09:58,Thursday,VICTORIA PARK STATION,TUMVS,0,0,W,BD,5012
-2021-08-05,10:31,Thursday,UNION STATION,SUAE,0,0,,YU,0
-2021-08-05,10:49,Thursday,FINCH STATION,MUWR,3,6,N,YU,5711
-2021-08-05,10:56,Thursday,QUEEN STATION,MUO,0,0,S,YU,6061
-2021-08-05,11:02,Thursday,HIGH PARK STATION,PUMEL,0,0,,BD,0
-2021-08-05,11:05,Thursday,WARDEN STATION,EUVA,0,0,E,BD,5027
-2021-08-05,11:41,Thursday,JANE STATION,MUIRS,0,0,,BD,0
-2021-08-05,11:43,Thursday,JANE STATION,PUTWZ,0,0,E,BD,5003
-2021-08-05,12:13,Thursday,COXWELL STATION,MUIE,0,0,E,BD,5003
-2021-08-05,12:31,Thursday,BLOOR STATION,MUPAA,0,0,S,YU,6036
-2021-08-05,15:25,Thursday,RUNNYMEDE STATION,PUMEL,0,0,,BD,0
-2021-08-05,16:23,Thursday,KING STATION,SUDP,0,0,S,YU,5786
-2021-08-05,16:40,Thursday,EGLINTON STATION,SUEAS,13,16,S,YU,5391
-2021-08-05,17:23,Thursday,FINCH STATION,MUIS,0,0,,YU,0
-2021-08-05,17:46,Thursday,KIPLING STATION,MUWR,4,8,W,BD,5298
-2021-08-05,18:11,Thursday,LANSDOWNE STATION,SUDP,3,7,E,BD,5295
-2021-08-05,18:14,Thursday,KEELE STATION,MUIRS,0,0,W,BD,5199
-2021-08-05,18:22,Thursday,ST CLAIR WEST STATION,MUPAA,0,0,S,YU,5396
-2021-08-05,18:30,Thursday,VAUGHAN MC STATION,TUNIP,6,10,,YU,5541
-2021-08-05,18:32,Thursday,ROSEDALE STATION,MUSC,0,0,N,YU,5466
-2021-08-05,20:32,Thursday,WOODBINE STATION,MUO,312,319,W,BD,5232
-2021-08-05,20:57,Thursday,EGLINTON STATION,MUIS,0,0,,YU,0
-2021-08-05,21:08,Thursday,VICTORIA PARK STATION,MUPAA,0,0,W,BD,5002
-2021-08-05,22:00,Thursday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-08-05,22:01,Thursday,ISLINGTON STATION,MUIS,0,0,,BD,0
-2021-08-05,00:26,Thursday,SPADINA STATION TO KIN,MUO,0,0,,YU,0
-2021-08-05,00:57,Thursday,SPADINA YUS STATION,PUEO,6,13,N,YU,5871
-2021-08-05,01:47,Thursday,WELLESLEY STATION,SUUT,0,0,S,YU,0
-2021-08-05,01:58,Thursday,SHEPPARD STATION,PUSI,3,10,N,YU,5881
-2021-08-05,13:57,Thursday,SHEPPARD-YONGE STATION,TUMVS,0,0,E,SHP,6146
-2021-08-06,10:30,Friday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-08-06,02:24,Friday,ST GEORGE YUS STATION,MUIE,0,0,,YU,0
-2021-08-06,11:05,Friday,ELLESMERE STATION,MRPAA,3,8,S,SRT,3024
-2021-08-06,03:03,Friday,WARDEN STATION,PUMO,0,0,,BD,0
-2021-08-06,20:30,Friday,KENNEDY SRT STATION,ERCO,10,16,N,SRT,3000
-2021-08-06,06:28,Friday,SHEPPARD WEST STATION,EUDO,0,0,N,YU,5436
-2021-08-06,06:49,Friday,KENNEDY BD STATION,MUIS,0,0,W,BD,8778
-2021-08-06,20:41,Friday,LAWRENCE EAST STATION,ERCD,15,21,N,SRT,3000
-2021-08-06,06:51,Friday,GREENWOOD STATION,TUNOA,4,8,E,BD,5370
-2021-08-06,00:13,Friday,LAWRENCE EAST STATION,TRSET,6,12,N,SRT,3011
-2021-08-06,07:03,Friday,HIGHWAY 407 STATION,EUDO,8,11,S,YU,5891
-2021-08-06,08:52,Friday,YORK UNIVERSITY STATIO,MUIS,0,0,,YU,0
-2021-08-06,08:54,Friday,ST CLAIR WEST STATION,EUDO,4,7,N,YU,5641
-2021-08-06,10:25,Friday,LAWRENCE STATION,SUDP,0,0,S,YU,5636
-2021-08-06,11:06,Friday,COXWELL STATION,MUIS,0,0,E,BD,0
-2021-08-06,11:30,Friday,ROSEDALE STATION,MUATC,15,18,S,YU,6091
-2021-08-06,11:47,Friday,SUMMERHILL STATION,TUMVS,4,7,S,YU,5796
-2021-08-06,12:15,Friday,KIPLING STATION,MUI,4,8,E,BD,5084
-2021-08-06,12:56,Friday,COLLEGE STATION,MUIE,0,0,,YU,0
-2021-08-06,13:12,Friday,ST ANDREW STATION,MUPAA,4,7,S,YU,5561
-2021-08-06,13:52,Friday,BATHURST STATION,PUMEL,0,0,E,BD,0
-2021-08-06,16:22,Friday,DUFFERIN STATION,MUPAA,0,0,W,BD,5094
-2021-08-06,16:43,Friday,EGLINTON STATION,MUTO,3,6,S,YU,6091
-2021-08-06,17:24,Friday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-08-06,17:58,Friday,EGLINTON STATION,MUPAA,3,6,N,YU,5851
-2021-08-06,18:08,Friday,ROSEDALE STATION,MUATC,5,8,S,YU,5531
-2021-08-06,18:13,Friday,MAIN STREET STATION,MUNCA,0,0,,BD,0
-2021-08-06,18:18,Friday,YONGE BD STATION,SUDP,3,7,W,BD,5193
-2021-08-06,19:16,Friday,LAWRENCE WEST STATION,TUATC,3,8,S,YU,5401
-2021-08-06,20:02,Friday,WOODBINE STATION,PUSO,0,0,W,BD,5261
-2021-08-06,20:09,Friday,YORK MILLS STATION,TUSC,0,0,N,YU,5881
-2021-08-06,20:10,Friday,WILSON STATION,MUIS,0,0,,YU,0
-2021-08-06,20:53,Friday,EGLINTON STATION,MUIE,3,8,N,YU,5811
-2021-08-06,21:16,Friday,SUMMERHILL STATION,MUPAA,5,12,N,YU,6051
-2021-08-06,21:41,Friday,OLD MILL STATION,MUSC,0,0,W,BD,5366
-2021-08-06,22:00,Friday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-08-06,22:25,Friday,QUEEN'S PARK STATION,SUUT,47,54,S,YU,5601
-2021-08-06,22:56,Friday,YORK MILLS STATION,TUSC,0,0,S,YU,5951
-2021-08-06,23:18,Friday,OSGOODE STATION,SUDP,11,18,N,YU,5546
-2021-08-06,23:45,Friday,CHRISTIE STATION,MUIR,10,17,E,BD,5045
-2021-08-06,23:57,Friday,BLOOR STATION,SUDP,0,0,N,YU,0
-2021-08-06,00:32,Friday,PAPE STATION,SUO,4,11,E,BD,5110
-2021-08-06,00:51,Friday,HIGH PARK STATION,SUDP,0,0,,BD,0
-2021-08-06,01:55,Friday,DUNDAS STATION,SUAE,0,0,,YU,0
-2021-08-06,06:55,Friday,DON MILLS STATION,TUSC,0,0,E,SHP,6156
-2021-08-06,00:20,Friday,SHEPPARD-YONGE STATION,TUSC,0,0,E,SHP,6161
-2021-08-07,03:06,Saturday,KIPLING STATION,SUO,0,0,,BD,0
-2021-08-07,06:00,Saturday,ST. CLAIR TO FINCH STA,MUO,0,0,,YUS,0
-2021-08-07,06:03,Saturday,MAIN STREET STATION,TUSC,0,0,W,BD,5291
-2021-08-07,06:43,Saturday,EGLINTON WEST STATION,MUATC,4,10,N,YU,5841
-2021-08-07,06:56,Saturday,GREENWOOD STATION (APP,EUSC,0,0,E,BD,5229
-2021-08-07,07:27,Saturday,ISLINGTON STATION,TUMVS,5,10,E,BD,5053
-2021-08-07,08:35,Saturday,COLLEGE STATION,MUIRS,0,0,,YU,0
-2021-08-07,09:22,Saturday,KENNEDY BD STATION,TUMVS,0,0,E,BD,5042
-2021-08-07,10:16,Saturday,GREENWOOD STATION,MUO,0,0,E,BD,5145
-2021-08-07,12:22,Saturday,ST CLAIR WEST STATION,SUDP,0,0,,YU,0
-2021-08-07,12:51,Saturday,CHESTER STATION,SUAP,0,0,W,BD,5134
-2021-08-07,12:58,Saturday,CASTLE FRANK STATION,SUUT,40,44,W,BD,5030
-2021-08-07,13:20,Saturday,BROADVIEW STATION,TUKEY,3,8,W,BD,5229
-2021-08-07,13:32,Saturday,COLLEGE STATION,MUIS,0,0,,YU,0
-2021-08-07,14:29,Saturday,YORKDALE STATION,MUIR,22,27,N,YU,6006
-2021-08-07,14:49,Saturday,KENNEDY BD STATION,SUO,5,9,,BD,5138
-2021-08-07,15:14,Saturday,CHRISTIE STATION,MUPAA,0,0,,BD,5083
-2021-08-07,15:21,Saturday,BATHURST STATION,SUO,4,8,W,BD,5243
-2021-08-07,15:36,Saturday,ROSEDALE STATION,SUAP,0,0,,YU,0
-2021-08-07,15:38,Saturday,WELLESLEY STATION,MUPAA,0,0,S,YU,5696
-2021-08-07,15:52,Saturday,CHRISTIE STATION,TUMVS,12,16,W,BD,5160
-2021-08-07,17:24,Saturday,SPADINA BD STATION,EUNT,3,7,E,BD,5144
-2021-08-07,17:56,Saturday,ST CLAIR STATION,MUSC,0,0,N,YU,5386
-2021-08-07,18:07,Saturday,ST CLAIR STATION,TUO,12,18,S,YU,5381
-2021-08-07,18:25,Saturday,SPADINA BD STATION,SUUT,25,29,E,BD,5129
-2021-08-07,18:29,Saturday,YORKDALE STATION,MUIS,0,0,N,YU,0
-2021-08-07,18:55,Saturday,CHRISTIE STATION,MUIR,0,0,E,BD,5035
-2021-08-07,19:46,Saturday,HIGH PARK STATION,MUIS,0,0,,BD,0
-2021-08-07,20:36,Saturday,SUMMERHILL STATION,SUUT,5,11,S,YU,5576
-2021-08-07,20:58,Saturday,HIGH PARK STATION,MUIS,0,0,,BD,0
-2021-08-07,21:00,Saturday,ST CLAIR STATION,MUIRS,0,0,S,YU,0
-2021-08-07,22:00,Saturday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-08-07,22:20,Saturday,BATHURST STATION,MUD,4,11,W,BD,5177
-2021-08-07,23:47,Saturday,YONGE BD STATION,MUIRS,0,0,E,BD,0
-2021-08-07,00:29,Saturday,ST CLAIR STATION,MUIS,0,0,N,YU,0
-2021-08-07,13:40,Saturday,SHEPPARD-YONGE STATION,MUCL,7,12,E,SHP,6146
-2021-08-07,00:54,Saturday,LESLIE STATION,MUIS,0,0,,SHP,0
-2021-08-08,10:35,Sunday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-08-08,07:50,Sunday,VAUGHAN MC STATION,MUATC,0,0,S,YU,5391
-2021-08-08,18:43,Sunday,SCARBOROUGH CTR STATIO,SRDP,0,0,,SRT,0
-2021-08-08,08:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU,0
-2021-08-08,08:00,Sunday,BLOOR-DANFORTH SUBWAY,MUO,0,0,,BD,0
-2021-08-08,22:48,Sunday,MCCOWAN STATION,MRO,0,0,N,SRT,3011
-2021-08-08,08:11,Sunday,ST GEORGE BD STATION,TUO,14,0,W,BD,5133
-2021-08-08,08:17,Sunday,ST GEORGE BD STATION,TUO,5,10,W,BD,5280
-2021-08-08,09:23,Sunday,ST GEORGE YUS STATION,MUO,3,9,S,YU,5646
-2021-08-08,09:45,Sunday,KIPLING STATION,PUTWZ,5,10,E,BD,5071
-2021-08-08,09:52,Sunday,ST GEORGE BD STATION,MUPAA,0,0,W,BD,5045
-2021-08-08,11:23,Sunday,DUPONT STATION,PUOPO,6,12,N,YU,5566
-2021-08-08,11:25,Sunday,DAVISVILLE STATION,PUMEL,0,0,,YU,0
-2021-08-08,12:07,Sunday,VAUGHAN MC STATION,TUNIP,3,9,S,YU,5386
-2021-08-08,12:14,Sunday,KIPLING STATION,TUMVS,0,0,W,BD,5232
-2021-08-08,12:29,Sunday,COXWELL STATION,TUO,4,9,E,BD,5165
-2021-08-08,12:40,Sunday,QUEEN STATION,SUUT,26,32,S,YU,5541
-2021-08-08,12:56,Sunday,COXWELL STATION,MUIS,0,0,,BD,0
-2021-08-08,13:18,Sunday,YORKDALE STATION,SUAP,0,0,,YU,0
-2021-08-08,13:26,Sunday,HIGHWAY 407 STATION,PUOPO,0,0,S,YU,5451
-2021-08-08,15:18,Sunday,GREENWOOD YARD,MUO,0,0,,BD,0
-2021-08-08,15:39,Sunday,HIGHWAY 407 STATION,PUOPO,6,12,S,YU,5606
-2021-08-08,16:10,Sunday,SPADINA YUS STATION,PUOPO,0,0,N,YU,6026
-2021-08-08,16:56,Sunday,HIGHWAY 407 STATION,PUOPO,0,0,S,YU,5581
-2021-08-08,17:05,Sunday,HIGHWAY 407 STATION,TUOPO,0,0,N,YU,5776
-2021-08-08,17:27,Sunday,WILSON STATION,MUIS,0,0,,YU,0
-2021-08-08,17:40,Sunday,HIGHWAY 407 STATION,PUOPO,7,12,S,YU,5451
-2021-08-08,17:59,Sunday,ST CLAIR STATION,EUNT,4,9,N,YU,5581
-2021-08-08,18:06,Sunday,HIGHWAY 407 STATION,PUOPO,3,8,N,YU,5856
-2021-08-08,18:15,Sunday,ROSEDALE STATION,SUUT,15,20,S,YU,5481
-2021-08-08,18:23,Sunday,YORKDALE STATION,MUO,5,10,S,YU,5856
-2021-08-08,18:35,Sunday,KENNEDY BD STATION,MUSAN,4,9,W,BD,5232
-2021-08-08,19:39,Sunday,ST CLAIR WEST STATION,PUOPO,7,14,N,YU,5541
-2021-08-08,19:46,Sunday,DAVISVILLE BUILDD UP,TUCC,4,9,,YU,5696
-2021-08-08,21:40,Sunday,SPADINA YUS STATION,PUOPO,0,0,N,YU,6001
-2021-08-08,22:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-08-08,22:06,Sunday,BAY STATION,SUO,9,16,W,BD,5045
-2021-08-08,22:24,Sunday,FINCH WEST STATION,PUOPO,5,12,N,YU,6126
-2021-08-08,22:38,Sunday,PIONEER VILLAGE STATIO,PUOPO,7,14,N,YU,6126
-2021-08-08,00:08,Sunday,HIGHWAY 407 STATION,PUOPO,0,0,S,YU,5451
-2021-08-08,00:16,Sunday,ST CLAIR WEST STATION,PUOPO,7,14,N,YU,5461
-2021-08-08,01:15,Sunday,WILSON STATION,EUOPO,7,14,S,YU,5596
-2021-08-08,01:32,Sunday,ST GEORGE YUS STATION,TUNIP,10,17,N,YU,5456
-2021-08-08,01:41,Sunday,FINCH STATION,MUIS,0,0,,YU,0
-2021-08-08,10:12,Sunday,SHEPPARD-YONGE STATION,TUSC,0,0,E,SHP,6161
-2021-08-09,05:50,Monday,FINCH STATION,EUTRD,4,8,S,YU,5886
-2021-08-09,05:49,Monday,MCCOWAN YARD,MRTO,5,10,S,SRT,3008
-2021-08-09,06:14,Monday,SCARBOROUGH CTR STATIO,MRD,0,0,N,SRT,3020
-2021-08-09,06:01,Monday,VICTORIA PARK STATION,PUMO,0,0,,BD,0
-2021-08-09,06:19,Monday,FINCH STATION,SUDP,0,0,,YU,0
-2021-08-09,06:20,Monday,MCCOWAN STATION,MRTO,0,0,S,SRT,3022
-2021-08-09,06:35,Monday,FINCH STATION,MUSC,0,0,S,YU,5466
-2021-08-09,13:39,Monday,LINE 3 SCARBOROUGH SRT,MRWEA,0,0,,SRT,0
-2021-08-09,07:39,Monday,DUNDAS STATION,MUIS,0,0,S,YU,0
-2021-08-09,14:06,Monday,LAWRENCE EAST STATION,MRUI,0,0,,SRT,0
-2021-08-09,10:36,Monday,ROSEDALE STATION,MUSC,3,6,N,YU,5571
-2021-08-09,11:27,Monday,DUNDAS WEST STATION,SUDP,0,0,,BD,0
-2021-08-09,11:47,Monday,ST CLAIR WEST STATION,SUAP,0,0,,YU,0
-2021-08-09,13:30,Monday,DUFFERIN STATION,SUUT,3,7,E,BD,5248
-2021-08-09,13:49,Monday,KEELE STATION,MUSC,0,0,W,BD,5207
-2021-08-09,14:04,Monday,SHEPPARD STATION,MUIE,11,14,S,YU,5471
-2021-08-09,14:38,Monday,MUSEUM STATION,MUPAA,0,0,S,YU,5566
-2021-08-09,17:13,Monday,FINCH STATION,SUROB,0,0,,YU,0
-2021-08-09,17:24,Monday,OSGOODE STATION,SUUT,0,0,N,YU,5951
-2021-08-09,18:16,Monday,ST GEORGE BD STATION,SUDP,0,0,W,BD,5170
-2021-08-09,18:28,Monday,KIPLING STATION,PUMEL,0,0,,BD,0
-2021-08-09,18:40,Monday,ST PATRICK STATION,SUAP,0,0,,YU,0
-2021-08-09,18:41,Monday,DUNDAS STATION,SUDP,0,0,N,YU,5461
-2021-08-09,19:15,Monday,DON MILLS STATION,SUO,12,17,E,BD,6146
-2021-08-09,19:23,Monday,COLLEGE STATION,SUAP,0,0,,YU,0
-2021-08-09,20:00,Monday,EGLINTON STATION,MUIR,9,14,N,YU,6056
-2021-08-09,20:00,Monday,NORTH YORK CTR STATION,EUNT,7,12,S,YU,5556
-2021-08-09,20:29,Monday,ST CLAIR STATION,SUO,5,10,S,YU,6066
-2021-08-09,21:07,Monday,KIPLING STATION,MUIR,7,14,E,BD,5279
-2021-08-09,21:17,Monday,UNION STATION,MUIRS,0,0,,YU,0
-2021-08-09,21:35,Monday,QUEEN STATION,PUMEL,0,0,,YU,0
-2021-08-09,22:00,Monday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-08-09,23:00,Monday,LAWRENCE STATION,MUSC,5,12,N,YU,6126
-2021-08-09,23:09,Monday,SPADINA YUS STATION,TUO,0,0,N,YU,5841
-2021-08-09,23:25,Monday,QUEEN STATION,SUDP,0,0,N,YU,5881
-2021-08-09,23:25,Monday,SHEPPARD WEST STATION,MUO,0,0,,YU,0
-2021-08-09,01:39,Monday,ST GEORGE BD STATION,MUI,11,18,W,BD,5133
-2021-08-09,01:55,Monday,SHEPPARD WEST STATION,PUATC,0,0,S,YU,5846
-2021-08-09,08:25,Monday,BESSARION STATION,TUMVS,3,8,E,SHP,6146
-2021-08-09,18:13,Monday,SHEPPARD-YONGE STATION,TUNOA,3,8,E,SHP,6196
-2021-08-09,22:11,Monday,DON MILLS STATION,MUO,0,0,,SHP,0
-2021-08-10,02:55,Tuesday,HIGHWAY 407 STATION,PUMO,0,0,,YU,0
-2021-08-10,06:17,Tuesday,LINE 3 SCARBOROUGH SRT,MRWEA,0,0,,SRT,0
-2021-08-10,06:01,Tuesday,SHEPPARD WEST STATION,MUIS,0,0,,YU,0
-2021-08-10,06:09,Tuesday,ST PATRICK STATION,MUIS,0,0,,YU,0
-2021-08-10,07:55,Tuesday,ROSEDALE STATION,MUSC,0,0,N,YU,5571
-2021-08-10,09:41,Tuesday,ROSEDALE STATION,MUSC,0,0,N,YU,5841
-2021-08-10,10:34,Tuesday,DUNDAS WEST STATION,SUUT,22,26,W,BD,5369
-2021-08-10,13:43,Tuesday,DUPONT STATION,SUDP,0,0,S,YU,5971
-2021-08-10,14:14,Tuesday,FINCH STATION,EUSC,3,6,S,YU,5636
-2021-08-10,14:34,Tuesday,FINCH STATION,MUIRS,0,0,,YU,0
-2021-08-10,14:45,Tuesday,HIGHWAY 407 STATION,TUO,3,6,N,YU,6071
-2021-08-10,15:36,Tuesday,ST ANDREW STATION,MUIR,4,7,N,YU,5806
-2021-08-10,16:20,Tuesday,ROYAL YORK STATION,MUSC,0,0,E,BD,5219
-2021-08-10,16:38,Tuesday,LANSDOWNE STATION,MUSC,0,0,E,BD,5214
-2021-08-10,16:48,Tuesday,SHERBOURNE STATION,PUMEL,0,0,,BD,0
-2021-08-10,17:24,Tuesday,PAPE STATION,MUNCA,0,0,,BD,0
-2021-08-10,17:44,Tuesday,SHERBOURNE STATION,MUIS,0,0,,BD,0
-2021-08-10,18:38,Tuesday,ST ANDREW STATION,MUPAA,0,0,N,YU,5876
-2021-08-10,20:37,Tuesday,EGLINTON WEST STATION,PUSAC,7,14,N,YU,5776
-2021-08-10,20:39,Tuesday,SPADINA YUS STATION,MUPAA,0,0,S,YU,5966
-2021-08-10,20:40,Tuesday,LAWRENCE STATION,MUIR,4,9,S,YU,5476
-2021-08-10,20:55,Tuesday,ST CLAIR STATION,MUIS,0,0,S,YU,5821
-2021-08-10,21:05,Tuesday,HIGH PARK STATION,MUIRS,0,0,E,BD,5132
-2021-08-10,21:13,Tuesday,LAWRENCE STATION,SUDP,7,14,N,YU,5966
-2021-08-10,21:23,Tuesday,OSSINGTON STATION,MUPAA,0,0,W,BD,5251
-2021-08-10,21:39,Tuesday,EGLINTON WEST STATION,PUSAC,4,11,N,YU,5856
-2021-08-10,21:42,Tuesday,SHEPPARD STATION,SUDP,7,14,N,YU,5526
-2021-08-10,22:00,Tuesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-08-10,22:50,Tuesday,LAWRENCE STATION,SUO,4,11,S,YU,5591
-2021-08-10,23:00,Tuesday,SHEPPARD WEST TO ST CL,MUO,0,0,,YU,0
-2021-08-10,00:43,Tuesday,SHEPPARD WEST STATION,PUTTP,4,11,N,YU,5551
-2021-08-10,00:50,Tuesday,KEELE STATION,SUO,0,0,W,BD,5251
-2021-08-10,05:19,Tuesday,SHEPPARD-YONGE STATION,EUSC,0,0,E,SHP,6176
-2021-08-10,05:36,Tuesday,DON MILLS STATION,MUSC,0,0,W,SHP,6191
-2021-08-10,05:48,Tuesday,DON MILLS STATION,MUSC,0,0,W,SHP,6151
-2021-08-11,06:26,Wednesday,GLENCAIRN STATION,PUSAC,8,12,N,YU,5866
-2021-08-11,10:14,Wednesday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-08-11,14:22,Wednesday,MCCOWAN STATION,MRUI,0,0,,SRT,0
-2021-08-11,06:34,Wednesday,VAUGHAN MC STATION,MUATC,3,6,S,YU,6066
-2021-08-11,18:45,Wednesday,MCCOWAN STATION,SRAP,0,0,,SRT,0
-2021-08-11,07:02,Wednesday,VAUGHAN MC STATION,TUO,3,6,S,YU,5861
-2021-08-11,07:18,Wednesday,GLENCAIRN STATION,PUSAC,4,7,N,YU,5631
-2021-08-11,23:24,Wednesday,KENNEDY SRT STATION,MRUI,0,0,,SRT,0
-2021-08-11,07:22,Wednesday,WILSON STATION,TUO,9,12,S,YU,5861
-2021-08-11,07:46,Wednesday,TRANSIT CONTROL,MUIE,0,0,,,0
-2021-08-11,09:26,Wednesday,DOWNSVIEW PARK STATION,MUPAA,0,0,S,YU,5966
-2021-08-11,09:33,Wednesday,SHEPPARD STATION,PUMST,0,0,,YU,0
-2021-08-11,10:40,Wednesday,ST CLAIR WEST STATION,MUIS,0,0,,YU,0
-2021-08-11,10:55,Wednesday,SUMMERHILL STATION,TUOS,0,0,N,YU,6096
-2021-08-11,11:04,Wednesday,WELLESLEY STATION,SUDP,0,0,,YU,0
-2021-08-11,12:08,Wednesday,KEELE STATION,PUSO,3,7,W,BD,5020
-2021-08-11,13:35,Wednesday,BAY STATION,MUPAA,0,0,W,BD,5113
-2021-08-11,13:52,Wednesday,SPADINA BD STATION,MUWR,0,0,,BD,0
-2021-08-11,14:16,Wednesday,YORK MILLS STATION,SUDP,0,0,N,YU,5381
-2021-08-11,14:24,Wednesday,HIGH PARK STATION,SUDP,0,0,W,BD,5256
-2021-08-11,14:36,Wednesday,YORK MILLS STATION,TUSC,0,0,S,YU,6111
-2021-08-11,16:42,Wednesday,KING STATION,SUDP,0,0,,YU,0
-2021-08-11,17:46,Wednesday,SHEPPARD WEST STATION,MUPAA,3,6,N,YU,5631
-2021-08-11,18:02,Wednesday,YONGE BD STATION,MUPAA,3,7,W,BD,5035
-2021-08-11,18:29,Wednesday,SHEPPARD STATION,SUO,0,0,,YU,0
-2021-08-11,19:37,Wednesday,KIPLING STATION,MUPAA,0,0,E,BD,5303
-2021-08-11,20:32,Wednesday,FINCH STATION,SUDP,0,0,N,YU,6086
-2021-08-11,20:58,Wednesday,WELLESLEY STATION,MUIS,0,0,,YU,0
-2021-08-11,22:00,Wednesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-08-11,22:32,Wednesday,MUSEUM STATION,MUATC,3,10,N,YU,5866
-2021-08-11,23:02,Wednesday,COLLEGE STATION,PUMST,0,0,,YU,0
-2021-08-11,23:25,Wednesday,SHEPPARD WEST STATION,MUO,0,0,,YU,0
-2021-08-11,23:30,Wednesday,QUEEN STATION,SUDP,0,0,N,YU,0
-2021-08-11,23:53,Wednesday,ST CLAIR WEST STATION,MUO,5,12,N,YU,5391
-2021-08-11,00:09,Wednesday,ST CLAIR WEST STATION,SUDP,10,17,S,YU,5966
-2021-08-11,01:07,Wednesday,FINCH STATION,MUI,7,14,S,YU,6061
-2021-08-11,04:19,Wednesday,SHEPPARD-YONGE STATION,TUMVS,0,0,W,SHP,6141
-2021-08-11,05:28,Wednesday,LESLIE STATION,PUOPO,12,0,E,SHP,6176
-2021-08-11,07:15,Wednesday,SHEPPARD-YONGE STATION,TUO,3,8,E,SHP,6176
-2021-08-11,09:19,Wednesday,BAYVIEW STATION,PUOPO,0,0,E,SHP,6156
-2021-08-11,18:51,Wednesday,SHEPPARD-YONGE STATION,SUDP,0,0,W,SHP,6146
-2021-08-11,00:16,Wednesday,LESLIE STATION,TUMVS,4,10,W,SHP,6141
-2021-08-12,06:20,Thursday,ELLESMERE STATION,ERDO,3,8,N,SRT,3021
-2021-08-12,05:55,Thursday,GREENWOOD STATION,MUTO,4,9,E,BD,5125
-2021-08-12,05:57,Thursday,DUNDAS STATION,SUDP,0,0,,YU,0
-2021-08-12,12:21,Thursday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-08-12,15:49,Thursday,MCCOWAN STATION,ERTC,5,10,S,SRT,3002
-2021-08-12,06:32,Thursday,ROSEDALE STATION,MUSC,0,0,N,YU,5851
-2021-08-12,23:55,Thursday,KENNEDY SRT STATION,MRUI,10,16,N,SRT,3019
-2021-08-12,07:41,Thursday,WILSON STATION,EUNEA,3,6,S,YU,5806
-2021-08-12,07:59,Thursday,PAPE STATION,EUDO,7,11,E,BD,5013
-2021-08-12,08:36,Thursday,WILSON STATION,MUIS,0,0,,YU,0
-2021-08-12,10:50,Thursday,ISLINGTON STATION,MUTO,3,7,E,BD,5378
-2021-08-12,10:58,Thursday,ISLINGTON STATION,TUSC,0,0,W,BD,5105
-2021-08-12,13:14,Thursday,SHEPPARD STATION,MUIS,0,0,,YU,0
-2021-08-12,13:37,Thursday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,0
-2021-08-12,13:39,Thursday,VICTORIA PARK STATION,SUROB,0,0,,BD,0
-2021-08-12,14:07,Thursday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,5701
-2021-08-12,15:51,Thursday,SHEPPARD STATION,SUDP,3,6,N,YU,5571
-2021-08-12,16:16,Thursday,SHEPPARD STATION,MUSC,0,0,N,YU,5391
-2021-08-12,16:19,Thursday,FINCH STATION,MUSC,0,0,S,YU,5726
-2021-08-12,16:22,Thursday,HIGH PARK STATION,PUMEL,0,0,,BD,0
-2021-08-12,16:25,Thursday,SHEPPARD STATION,MUSC,0,0,N,YU,5796
-2021-08-12,16:30,Thursday,DUNDAS STATION,EUNT,4,7,N,YU,5956
-2021-08-12,16:39,Thursday,ROYAL YORK STATION,TUSC,0,0,E,BD,5303
-2021-08-12,17:43,Thursday,KENNEDY BD STATION,PUMEL,0,0,,BD,0
-2021-08-12,18:46,Thursday,ROSEDALE STATION,TUOS,5,10,S,YU,5621
-2021-08-12,19:12,Thursday,DOWNSVIEW PARK STATION,SUDP,4,9,S,YU,5696
-2021-08-12,19:32,Thursday,WILSON STATION,MUPAA,0,0,S,YU,5661
-2021-08-12,19:45,Thursday,DAVISVILLE STATION,MUPLB,16,21,S,YU,5901
-2021-08-12,20:23,Thursday,DUFFERIN STATION,SUO,0,0,,BD,0
-2021-08-12,20:49,Thursday,UNION STATION,PUMEL,0,0,,YU,0
-2021-08-12,21:26,Thursday,DUPONT STATION,PUMEL,0,0,,YU,0
-2021-08-12,22:00,Thursday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-08-12,22:45,Thursday,ROSEDALE STATION,MUSC,3,10,N,YU,5661
-2021-08-12,23:23,Thursday,ST GEORGE YUS STATION,MUATC,3,10,S,YU,5721
-2021-08-12,01:50,Thursday,KIPLING STATION,SUO,17,24,W,BD,5317
-2021-08-12,05:19,Thursday,SHEPPARD-YONGE STATION,MUSC,0,0,E,SHP,6196
-2021-08-12,20:47,Thursday,SHEPPARD-YONGE STATION,TUMVS,0,0,W,SHP,6151
-2021-08-12,23:23,Thursday,DON MILLS STATION,SUO,5,10,W,SHP,6161
-2021-08-12,23:35,Thursday,DON MILLS STATION,SUO,5,10,W,SHP,6151
-2021-08-12,00:17,Thursday,SHEPPARD-YONGE STATION,TUMVS,0,0,W,SHP,6191
-2021-08-13,08:51,Friday,KEELE STATION,MUSC,0,0,W,BD,5116
-2021-08-13,09:04,Friday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-08-13,10:32,Friday,KIPLING STATION,MUIR,0,0,W,BD,5133
-2021-08-13,23:09,Friday,SCARBOROUGH CTR STATIO,SRUT,17,23,S,SRT,3008
-2021-08-13,10:52,Friday,MAIN STREET STATION,PUMEL,0,0,,BD,0
-2021-08-13,11:26,Friday,BATHURST STATION,SUAE,15,19,W,BD,5214
-2021-08-13,11:52,Friday,WILSON STATION,MUPAA,0,0,S,YU,5591
-2021-08-13,12:35,Friday,DAVISVILLE STATION,SUAP,0,0,,YU,0
-2021-08-13,13:27,Friday,ST ANDREW STATION,MUATC,7,10,N,YU,5856
-2021-08-13,13:48,Friday,ROSEDALE STATION,MUATC,3,6,S,YU,5876
-2021-08-13,14:05,Friday,MUSEUM STATION,MUATC,3,6,N,YU,5531
-2021-08-13,14:07,Friday,COXWELL STATION,TUCC,9,14,W,BD,5255
-2021-08-13,14:27,Friday,VAUGHAN MC STATION,TUNIP,3,6,S,YU,0
-2021-08-13,14:29,Friday,MAIN STREET STATION,SUO,0,0,,BD,0
-2021-08-13,14:35,Friday,KIPLING STATION,TUMVS,0,0,W,BD,5133
-2021-08-13,15:16,Friday,YORK MILLS STATION,TUSC,0,0,S,YU,5991
-2021-08-13,15:48,Friday,YORK MILLS STATION,SUDP,0,0,,YU,0
-2021-08-13,16:07,Friday,YORK UNIVERSITY STATIO,MUPAA,0,0,N,YU,6136
-2021-08-13,16:43,Friday,VICTORIA PARK STATION,TUMVS,3,7,W,BD,5116
-2021-08-13,17:25,Friday,JANE STATION,MUIS,0,0,,BD,0
-2021-08-13,18:49,Friday,KEELE STATION,MUIS,0,0,,BD,0
-2021-08-13,18:49,Friday,ROSEDALE STATION,MUSC,8,11,N,YU,5846
-2021-08-13,20:15,Friday,DONLANDS STATION,SUAP,16,23,E,BD,5207
-2021-08-13,21:09,Friday,PAPE STATION,SUAP,6,13,E,BD,5220
-2021-08-13,21:37,Friday,SPADINA YUS STATION,MUPAA,4,9,N,YU,5796
-2021-08-13,21:51,Friday,DUNDAS STATION,MUIS,0,0,N,YU,0
-2021-08-13,22:07,Friday,OSSINGTON STATION,MUIR,3,10,W,BD,5116
-2021-08-13,22:48,Friday,KEELE STATION,MUPAA,0,0,W,BD,5045
-2021-08-13,22:59,Friday,KING STATION,MUATC,9,16,N,YU,5796
-2021-08-13,00:28,Friday,ST GEORGE YUS STATION,MUIRS,0,0,S,YU,0
-2021-08-13,09:13,Friday,DON MILLS STATION,MUNCA,0,0,,SHP,0
-2021-08-13,00:06,Friday,SHEPPARD-YONGE STATION,EUOE,13,18,E,SHP,6186
-2021-08-14,17:10,Saturday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,3000
-2021-08-14,04:27,Saturday,ST CLAIR WEST STATION,MUIRS,0,0,,YU,0
-2021-08-14,05:42,Saturday,EGLINTON STATION,MUNOA,6,12,N,YU,5626
-2021-08-14,23:35,Saturday,SCARBOROUGH CTR STATIO,MRUIR,0,0,S,SRT,0
-2021-08-14,05:43,Saturday,OSGOODE STATION,MUATC,0,0,N,YU,5716
-2021-08-14,05:47,Saturday,ROSEDALE STATION,MUATC,0,0,S,YU,5406
-2021-08-14,06:00,Saturday,SHEPPARD WEST TO ST CL,MUO,0,0,,YU,0
-2021-08-14,06:18,Saturday,OLD MILL STATION,MUIR,14,19,W,BD,5153
-2021-08-14,06:53,Saturday,MAIN STREET STATION,TUSC,0,0,W,BD,5291
-2021-08-14,07:51,Saturday,YONGE BD STATION,MUIS,0,0,W,BD,5248
-2021-08-14,08:00,Saturday,WELLESLEY STATION,MUIRS,0,0,N,YU,0
-2021-08-14,08:09,Saturday,ISLINGTON STATION,MUIRS,0,0,,BD,0
-2021-08-14,10:15,Saturday,EGLINTON STATION,PUMEL,0,0,,YU,0
-2021-08-14,11:00,Saturday,ST CLAIR WEST STATION,MUO,0,0,N,YU,5626
-2021-08-14,11:08,Saturday,PIONEER VILLAGE STATIO,SUDP,0,0,,YU,0
-2021-08-14,11:11,Saturday,ST CLAIR STATION,SUEAS,13,19,S,YU,5656
-2021-08-14,12:08,Saturday,NORTH YORK CTR STATION,MUPR1,151,156,S,YU,5841
-2021-08-14,12:52,Saturday,YONGE BD STATION,SUDP,0,0,E,BD,5223
-2021-08-14,13:03,Saturday,CHRISTIE STATION,SUDP,3,7,W,BD,5013
-2021-08-14,14:57,Saturday,YONGE-UNIVERSITY AND B,SUAP,0,0,,YU,0
-2021-08-14,15:49,Saturday,LAWRENCE STATION,SUDP,14,19,S,YU,6096
-2021-08-14,16:53,Saturday,SPADINA BD STATION,SUDP,3,7,E,BD,5186
-2021-08-14,18:30,Saturday,SHEPPARD WEST STATION,SUDP,0,0,,YU,0
-2021-08-14,18:45,Saturday,EGLINTON STATION,MUPAA,0,0,S,YU,5631
-2021-08-14,18:56,Saturday,MAIN STREET STATION,SUDP,3,7,E,BD,5167
-2021-08-14,19:25,Saturday,WARDEN STATION,SUDP,5,12,W,BD,5129
-2021-08-14,20:33,Saturday,KIPLING STATION,SUSA,8,15,E,BD,5251
-2021-08-14,20:53,Saturday,CASTLE FRANK STATION,MUDD,9,16,W,BD,5029
-2021-08-14,22:00,Saturday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-08-14,22:30,Saturday,KING STATION,PUMEL,0,0,,YU,0
-2021-08-14,22:57,Saturday,YONGE BD STATION,MUIS,0,0,,BD,0
-2021-08-14,23:15,Saturday,DUNDAS STATION,MUIS,0,0,N,YU,0
-2021-08-14,01:26,Saturday,UNION STATION,MUIRS,0,0,N,YU,5961
-2021-08-14,01:42,Saturday,ST CLAIR WEST STATION,MUIRS,0,0,N,YU,0
-2021-08-14,01:46,Saturday,COLLEGE STATION,SUDP,5,10,S,YU,5631
-2021-08-14,01:47,Saturday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-08-14,01:56,Saturday,KING STATION,SUAE,0,0,,YU,0
-2021-08-15,08:03,Sunday,WARDEN STATION,TUSUP,3,0,W,BD,5073
-2021-08-15,08:17,Sunday,GREENWOOD STATION,EUNT,4,9,E,BD,5033
-2021-08-15,08:35,Sunday,KENNEDY BD STATION,PUSTS,4,9,E,BD,5032
-2021-08-15,08:39,Sunday,DOWNSVIEW PARK STATION,PUOPO,0,0,N,YU,6106
-2021-08-15,08:56,Sunday,HIGHWAY 407 STATION,PUOPO,6,12,S,YU,6041
-2021-08-15,09:13,Sunday,BROADVIEW STATION,EUSC,0,0,E,BD,5214
-2021-08-15,09:22,Sunday,DUPONT STATION,PUOPO,6,12,N,YU,5896
-2021-08-15,09:38,Sunday,ST GEORGE YUS STATION,MUTO,3,9,N,YU,5791
-2021-08-15,09:46,Sunday,FINCH STATION,MUSC,0,0,S,YU,5726
-2021-08-15,11:04,Sunday,SPADINA YUS STATION,PUOPO,6,12,N,YU,6036
-2021-08-15,11:11,Sunday,QUEEN STATION,MUIRS,0,0,,YU,0
-2021-08-15,11:16,Sunday,DOWNSVIEW PARK STATION,PUOPO,3,9,S,YU,5496
-2021-08-15,11:28,Sunday,YORKDALE STATION,PUOPO,6,12,S,YU,5496
-2021-08-15,12:36,Sunday,VAUGHAN MC STATION,PUOPO,0,0,S,YU,5911
-2021-08-15,13:16,Sunday,DAVISVILLE STATION,MUPAA,0,0,S,YU,5491
-2021-08-15,13:27,Sunday,YORKDALE STATION,PUOPO,0,0,N,YU,5721
-2021-08-15,13:36,Sunday,ST GEORGE YUS STATION,PUOPO,5,10,N,YU,5491
-2021-08-15,13:46,Sunday,JANE STATION,MUPAA,3,8,W,BD,5299
-2021-08-15,14:25,Sunday,HIGHWAY 407 STATION,PUOPO,3,8,S,YU,5386
-2021-08-15,14:47,Sunday,EGLINTON WEST STATION,PUOPO,0,0,N,YU,5621
-2021-08-15,16:56,Sunday,HIGHWAY 407 STATION,PUOPO,0,0,S,YU,5636
-2021-08-15,17:46,Sunday,ROYAL YORK STATION,TUSC,0,0,E,BD,5214
-2021-08-15,18:10,Sunday,VICTORIA PARK STATION,MUIR,3,8,E,BD,5189
-2021-08-15,18:26,Sunday,WELLESLEY STATION,MUNCA,0,0,,YU,0
-2021-08-15,19:00,Sunday,VAUGHAN MC STATION,PUOPO,0,0,S,YU,5736
-2021-08-15,19:03,Sunday,COLLEGE STATION,MUIS,0,0,,YU,0
-2021-08-15,19:31,Sunday,HIGHWAY 407 STATION,PUOPO,0,0,S,YU,5636
-2021-08-15,20:48,Sunday,HIGHWAY 407 STATION,PUOPO,0,0,S,YU,5686
-2021-08-15,21:47,Sunday,VICTORIA PARK STATION,SUPOL,0,0,W,BD,5105
-2021-08-15,21:50,Sunday,HIGHWAY 407 STATION,PUOPO,0,0,S,YU,6101
-2021-08-15,21:57,Sunday,HIGHWAY 407 STATION,PUOPO,0,0,S,YU,5381
-2021-08-15,22:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-08-15,22:15,Sunday,SHEPPARD WEST STATION,PUOPO,0,0,S,YU,5911
-2021-08-15,23:31,Sunday,KEELE STATION,MUSC,0,0,W,BD,5153
-2021-08-15,23:44,Sunday,YORKDALE STATION,PUOPO,4,11,S,YU,5611
-2021-08-15,01:21,Sunday,FINCH STATION,MUIS,0,0,,YU,0
-2021-08-15,01:25,Sunday,COLLEGE STATION,SUO,0,0,S,YU,0
-2021-08-16,04:40,Monday,CHESTER STATION,PUMO,0,0,,BD,0
-2021-08-16,04:51,Monday,KIPLING STATION,SUEAS,0,0,,BD,0
-2021-08-16,05:54,Monday,ST CLAIR STATION,MUDD,0,0,S,YU,5431
-2021-08-16,07:32,Monday,ROSEDALE STATION,MUSC,0,0,N,YU,5721
-2021-08-16,07:48,Monday,MAIN STREET STATION,PUMEL,0,0,,BD,0
-2021-08-16,09:28,Monday,VAUGHAN MC STATION,TUNIP,3,6,S,YU,5516
-2021-08-16,11:47,Monday,KEELE STATION,MUSC,0,0,W,BD,5076
-2021-08-16,11:56,Monday,YORK MILLS STATION,TUMVS,3,6,N,YU,5666
-2021-08-16,13:42,Monday,KIPLING STATION,PUSRA,4,8,E,BD,5220
-2021-08-16,13:54,Monday,DUNDAS STATION,MUPAA,0,0,S,YU,5601
-2021-08-16,14:41,Monday,LAWRENCE STATION,PUMEL,0,0,,YU,0
-2021-08-16,15:36,Monday,YONGE BD STATION,SUUT,19,23,E,BD,5125
-2021-08-16,15:58,Monday,SUMMERHILL STATION,SUAP,10,13,N,YU,5736
-2021-08-16,16:52,Monday,EGLINTON WEST STATION,MUI,8,11,N,YU,5566
-2021-08-16,17:09,Monday,WARDEN STATION,MUIS,0,0,,BD,0
-2021-08-16,18:55,Monday,MAIN STREET STATION,PUSTS,0,0,W,BD,5076
-2021-08-16,18:57,Monday,HIGH PARK STATION,SUDP,0,0,,BD,0
-2021-08-16,19:47,Monday,VAUGHAN MC STATION,TUNIP,3,8,S,YU,6091
-2021-08-16,19:47,Monday,FINCH WEST STATION,MUIS,0,0,,YU,0
-2021-08-16,19:58,Monday,CASTLE FRANK STATION,MUIS,0,0,,BD,0
-2021-08-16,21:30,Monday,COLLEGE STATION,MUIS,0,0,,YU,0
-2021-08-16,21:33,Monday,KIPLING STATION,MUIRS,0,0,,BD,0
-2021-08-16,21:44,Monday,KIPLING STATION,MUIRS,0,0,,BD,0
-2021-08-16,22:00,Monday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-08-16,22:24,Monday,SPADINA YUS STATION,SUDP,4,11,N,YU,6136
-2021-08-16,23:25,Monday,MAIN STREET STATION,MUIS,0,0,,BD,0
-2021-08-16,23:28,Monday,SHEPPARD WEST STATION,MUO,0,0,,YU,0
-2021-08-16,00:58,Monday,YONGE BD STATION,SUDP,0,0,W,BD,5231
-2021-08-16,00:59,Monday,BLOOR STATION,SUDP,0,0,N,YU,5911
-2021-08-16,01:08,Monday,FINCH STATION,MUIS,0,0,,YU,0
-2021-08-16,01:21,Monday,SHEPPARD WEST STATION,PUTWZ,8,15,N,YU,6081
-2021-08-16,13:35,Monday,LESLIE STATION,SUUT,10,15,E,SHP,6181
-2021-08-16,19:21,Monday,SHEPPARD-YONGE STATION,TUSC,0,0,E,SHP,6166
-2021-08-16,20:05,Monday,DON MILLS STATION,MUIR,5,10,W,SHP,6186
-2021-08-17,09:23,Tuesday,ELLESMERE STATION,ERPR,3,9,S,SRT,3008
-2021-08-17,07:15,Tuesday,ST CLAIR STATION,SUDP,0,0,,YU,0
-2021-08-17,09:21,Tuesday,JANE STATION,EUBO,4,8,E,BD,5129
-2021-08-17,12:21,Tuesday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-08-17,11:17,Tuesday,DUNDAS WEST STATION,MUIR,10,14,E,BD,5035
-2021-08-17,13:13,Tuesday,FINCH WEST STATION,PUMEL,0,0,,YU,0
-2021-08-17,13:22,Tuesday,OLD MILL STATION,TUOS,4,8,E,BD,5002
-2021-08-17,13:28,Tuesday,QUEEN'S PARK STATION,MUPAA,0,0,S,YU,5051
-2021-08-17,14:01,Tuesday,YORK UNIVERSITY STATIO,EUDO,6,9,N,YU,5511
-2021-08-17,14:26,Tuesday,SHEPPARD STATION,MUIS,0,0,S,YU,5566
-2021-08-17,14:38,Tuesday,FINCH STATION,TUNIP,3,6,S,YU,5626
-2021-08-17,14:57,Tuesday,FINCH STATION,EUNT,3,6,S,YU,5746
-2021-08-17,15:25,Tuesday,SHEPPARD WEST STATION,EUAC,3,6,N,YU,5881
-2021-08-17,16:13,Tuesday,FINCH STATION,SUO,3,6,S,YU,5872
-2021-08-17,17:50,Tuesday,FINCH WEST STATION,PUMEL,0,0,,YU,8356
-2021-08-17,17:51,Tuesday,ROYAL YORK STATION,TUSC,4,8,E,BD,5203
-2021-08-17,18:04,Tuesday,BLOOR STATION,MUIRS,0,0,,YU,0
-2021-08-17,18:28,Tuesday,WARDEN STATION,MUIS,0,0,,BD,0
-2021-08-17,18:52,Tuesday,KIPLING STATION,MUIRS,0,0,,BD,0
-2021-08-17,18:58,Tuesday,FINCH STATION,MUIS,0,0,,YU,0
-2021-08-17,19:12,Tuesday,ROSEDALE STATION,TUO,14,19,N,YU,5466
-2021-08-17,19:39,Tuesday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-08-17,20:12,Tuesday,NORTH YORK CTR STATION,SUPOL,21,26,N,YU,5681
-2021-08-17,21:34,Tuesday,DUFFERIN STATION,SUDP,0,0,E,BD,5242
-2021-08-17,22:00,Tuesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-08-17,22:47,Tuesday,BLOOR STATION,MUIS,0,0,,YU,0
-2021-08-17,00:27,Tuesday,YORK MILLS STATION,MUIS,0,0,S,YU,5661
-2021-08-17,01:20,Tuesday,WELLESLEY STATION,SUDP,9,16,N,YU,5786
-2021-08-17,01:37,Tuesday,KENNEDY BD STATION,PUMEL,0,0,E,BD,0
-2021-08-17,02:35,Tuesday,SHEPPARD-YONGE STATION,TUMVS,0,0,W,SHP,6141
-2021-08-17,09:48,Tuesday,SHEPPARD-YONGE STATION,TUSC,0,0,W,SHP,6151
-2021-08-17,12:39,Tuesday,BESSARION STATION,SUDP,0,0,,SHP,0
-2021-08-17,16:20,Tuesday,SHEPPARD-YONGE STATION,TUSC,0,0,E,SHP,6181
-2021-08-17,16:25,Tuesday,BAYVIEW STATION,TUOS,3,8,E,SHP,6181
-2021-08-17,16:38,Tuesday,LESLIE STATION,TUOS,0,0,W,SHP,6181
-2021-08-18,05:52,Wednesday,ROSEDALE STATION,MUATC,5,0,S,YU,5446
-2021-08-18,14:50,Wednesday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-08-18,06:03,Wednesday,BROADVIEW STATION,SUDP,0,0,W,BD,5177
-2021-08-18,06:30,Wednesday,KEELE STATION,MUIS,0,0,,BD,0
-2021-08-18,06:49,Wednesday,FINCH STATION,MUSC,0,0,S,YU,5596
-2021-08-18,11:00,Wednesday,ROSEDALE STATION,MUSC,0,0,N,YU,5466
-2021-08-18,11:17,Wednesday,ISLINGTON STATION,PUSTS,4,8,E,BD,5299
-2021-08-18,11:25,Wednesday,COXWELL STATION,PUSTC,6,10,W,BD,5022
-2021-08-18,11:27,Wednesday,YONGE BD STATION,EUTR,44,48,E,BD,5352
-2021-08-18,11:29,Wednesday,BLOOR STATION,MUO,0,0,N,YU,5591
-2021-08-18,12:14,Wednesday,DUFFERIN STATION,SUDP,4,7,W,BD,5330
-2021-08-18,12:58,Wednesday,WARDEN STATION,MUIRS,0,0,,BD,0
-2021-08-18,13:12,Wednesday,KENNEDY BD STATION,MUIR,4,8,W,BD,5040
-2021-08-18,13:45,Wednesday,DUFFERIN STATION,MUPAA,0,0,E,BD,5045
-2021-08-18,14:03,Wednesday,ST GEORGE BD STATION,MUIS,0,0,,BD,0
-2021-08-18,14:10,Wednesday,BLOOR STATION,MUIS,0,0,N,YU,0
-2021-08-18,14:34,Wednesday,SHEPPARD WEST STATION,MUO,0,0,,YU,0
-2021-08-18,16:13,Wednesday,KENNEDY BD STATION,TUMVS,0,0,,BD,5196
-2021-08-18,17:05,Wednesday,ROYAL YORK STATION,PUMST,0,0,E,BD,0
-2021-08-18,17:22,Wednesday,FINCH STATION,PUMEL,0,0,,YU,0
-2021-08-18,17:47,Wednesday,DUNDAS WEST STATION,SUDP,0,0,W,BD,5191
-2021-08-18,18:08,Wednesday,FINCH STATION,MUIS,0,0,,YU,0
-2021-08-18,19:35,Wednesday,KENNEDY BD STATION,MUI,7,14,,BD,5242
-2021-08-18,20:44,Wednesday,BROADVIEW STATION,EUNT,4,11,W,BD,5002
-2021-08-18,21:05,Wednesday,PAPE STATION,MUIS,0,0,,BD,0
-2021-08-18,21:11,Wednesday,HIGHWAY 407 STATION,EUDO,4,11,N,YU,5511
-2021-08-18,21:16,Wednesday,ST GEORGE BD STATION,MUIS,0,0,S,YU,0
-2021-08-18,22:00,Wednesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU / BD,0
-2021-08-18,23:22,Wednesday,SPADINA BD STATION,SUO,0,0,E,BD,5161
-2021-08-18,23:30,Wednesday,SHEPPARD WEST STATION,MUO,0,0,,YU,0
-2021-08-18,23:36,Wednesday,FINCH STATION,PUMEL,0,0,,YU,0
-2021-08-18,00:10,Wednesday,PIONEER VILLAGE STATIO,SUDP,0,0,N,YU,5761
-2021-08-18,00:38,Wednesday,SHEPPARD WEST STATION,PUTWZ,4,11,S,YU,5766
-2021-08-18,01:53,Wednesday,KIPLING STATION,SUDP,0,0,,BD,0
-2021-08-18,05:25,Wednesday,SHEPPARD-YONGE STATION,MUSC,0,0,E,SHP,6146
-2021-08-18,06:31,Wednesday,DON MILLS STATION,EUNT,5,10,W,SHP,6151
-2021-08-19,05:51,Thursday,MAIN STREET STATION,SUDP,0,0,,BD,0
-2021-08-19,06:00,Thursday,TORONTO TRANSIT COMMIS,MRO,0,0,,SRT,0
-2021-08-19,10:17,Thursday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-08-19,06:00,Thursday,TORONTO TRANSIT COMMIS,MUO,0,0,,BD,0
-2021-08-19,06:51,Thursday,WOODBINE STATION,MUIS,0,0,,BD,0
-2021-08-19,08:38,Thursday,DUFFERIN STATION,MUPAA,0,0,W,BD,5069
-2021-08-19,09:25,Thursday,PIONEER VILLAGE STATIO,MUIS,0,0,N,YU,5541
-2021-08-19,10:57,Thursday,DAVISVILLE STATION,PUMEL,0,0,,YU,0
-2021-08-19,11:46,Thursday,BAY STATION,MUNCA,0,0,,BD,0
-2021-08-19,12:03,Thursday,KENNEDY BD STATION,EUAC,4,8,W,BD,5227
-2021-08-19,12:18,Thursday,FINCH WEST STATION,MUO,0,0,,YU,0
-2021-08-19,12:40,Thursday,BLOOR STATION,MUO,0,0,S,YU,0
-2021-08-19,13:02,Thursday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,0
-2021-08-19,13:10,Thursday,VAUGHAN MC STATION,MUATC,16,20,N,YU,5636
-2021-08-19,13:15,Thursday,ST CLAIR WEST STATION,PUMEL,0,0,,YU,0
-2021-08-19,13:43,Thursday,BATHURST STATION,MUPAA,0,0,W,BD,5115
-2021-08-19,14:21,Thursday,WELLESLEY STATION,MUIRS,0,0,N,YU,5906
-2021-08-19,16:33,Thursday,FINCH STATION,MUATC,3,6,S,YU,6066
-2021-08-19,16:56,Thursday,KENNEDY BD STATION,MUIE,4,8,E,BD,5196
-2021-08-19,17:48,Thursday,RUNNYMEDE STATION,MUIS,0,0,,BD,0
-2021-08-19,18:00,Thursday,EGLINTON STATION,MUNCA,0,0,,YU,0
-2021-08-19,19:47,Thursday,OSSINGTON STATION,PUSO,5,12,E,BD,5220
-2021-08-19,19:53,Thursday,ROYAL YORK STATION,TUOS,0,0,W,BD,5029
-2021-08-19,20:24,Thursday,COXWELL STATION,TUSUP,4,8,E,BD,5346
-2021-08-19,20:36,Thursday,FINCH STATION,MUPAA,0,0,S,YU,5756
-2021-08-19,21:28,Thursday,EGLINTON STATION,SUDP,0,0,N,YU,5606
-2021-08-19,22:00,Thursday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-08-19,22:20,Thursday,ST CLAIR STATION,EUTM,7,14,N,YU,6006
-2021-08-19,23:22,Thursday,ST GEORGE BD STATION,SUAE,18,25,W,BD,5132
-2021-08-19,00:23,Thursday,VICTORIA PARK STATION,SUAP,6,13,W,BD,5029
-2021-08-19,05:05,Thursday,DON MILLS STATION,MUNCA,0,0,,SHP,0
-2021-08-19,06:00,Thursday,TORONTO TRANSIT COMMIS,MUO,0,0,,SHP,0
-2021-08-20,06:11,Friday,SCARBORUOGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-08-20,02:12,Friday,ST CLAIR WEST STATION,MUIS,0,0,,YU,0
-2021-08-20,06:02,Friday,BLOOR STATION,PUTO,3,6,S,YU,5751
-2021-08-20,07:46,Friday,MCCOWAN STATION,PRO,9,14,S,SRT,3016
-2021-08-20,06:07,Friday,BLOOR STATION,PUTO,3,6,S,YU,5611
-2021-08-20,12:07,Friday,MIDLAND STATION,PRO,6,13,N,SRT,3003
-2021-08-20,06:08,Friday,CASTLE FRANK STATION,SUAE,0,0,,BD,0
-2021-08-20,15:02,Friday,MIDLAND STATION,PREL,0,0,,SRT,0
-2021-08-20,06:15,Friday,COLLEGE STATION,TUO,5,8,S,YU,5611
-2021-08-20,15:28,Friday,MCCOWAN STATION,MRPAA,0,0,S,SRT,3013
-2021-08-20,19:43,Friday,MCCOWAN STATION,PRO,17,23,W,SRT,3016
-2021-08-20,06:31,Friday,UNION STATION,MUO,4,7,,YU,5611
-2021-08-20,06:45,Friday,LAWRENCE STATION,MUI,6,9,S,YU,5641
-2021-08-20,07:03,Friday,WILSON STATION,EUNT,3,6,S,YU,5621
-2021-08-20,07:17,Friday,CHESTER STATION,SUDP,0,0,E,BD,5330
-2021-08-20,07:55,Friday,FINCH STATION,PUMEL,0,0,,YU,5465
-2021-08-20,08:04,Friday,FINCH STATION,SUDP,0,0,,YU,0
-2021-08-20,09:03,Friday,KIPLING STATION,TUMVS,0,0,W,BD,5031
-2021-08-20,09:30,Friday,EGLINTON STATION,PUTDN,7,10,N,YU,5936
-2021-08-20,09:55,Friday,QUEEN STATION,MUPAA,0,0,N,YU,5846
-2021-08-20,11:22,Friday,KIPLING STATION,MUO,4,8,E,BD,5066
-2021-08-20,11:40,Friday,OLD MILL STATION,PUSNT,4,8,E,BD,5137
-2021-08-20,11:48,Friday,HIGH PARK STATION,TUO,4,8,E,BD,5137
-2021-08-20,11:53,Friday,JANE STATION,MUSC,0,0,E,BD,5282
-2021-08-20,12:49,Friday,SHEPPARD STATION,SUEAS,10,13,S,YU,5406
-2021-08-20,12:53,Friday,DUPONT STATION,EUDO,5,8,N,YU,5486
-2021-08-20,13:14,Friday,GREENWOOD YARD,PUMO,0,0,,BD,0
-2021-08-20,13:53,Friday,FINCH STATION,MUNOA,3,6,S,YU,0
-2021-08-20,14:04,Friday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,0
-2021-08-20,14:23,Friday,EGLINTON STATION,EUTL,3,6,S,YU,5476
-2021-08-20,14:33,Friday,LANSDOWNE STATION,MUPAA,0,0,E,BD,5116
-2021-08-20,14:52,Friday,SHERBOURNE STATION,MUIS,0,0,E,BD,5231
-2021-08-20,15:27,Friday,YONGE BD STATION,EUBK,17,21,W,BD,5031
-2021-08-20,16:00,Friday,PAPE STATION,SUO,11,15,E,BD,5336
-2021-08-20,16:38,Friday,CHRISTIE STATION,SUO,0,0,E,BD,5116
-2021-08-20,16:58,Friday,ST CLAIR STATION,MUSC,0,0,S,YU,6026
-2021-08-20,18:16,Friday,UNION STATION,SUAP,0,0,,YU,0
-2021-08-20,18:58,Friday,CASTLE FRANK STATION,SUUT,7,11,W,BD,5359
-2021-08-20,19:29,Friday,KENNEDY BD STATION,PUSTC,7,14,W,BD,5002
-2021-08-20,21:30,Friday,GREENWOOD AND DANFORTH,PUMO,0,0,,BD,5245
-2021-08-20,22:00,Friday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-08-20,22:55,Friday,ROSEDALE STATION,MUIRS,0,0,N,YU,5806
-2021-08-20,22:59,Friday,NORTH YORK CTR STATION,SUDP,0,0,,YU,0
-2021-08-20,23:03,Friday,ROSEDALE STATION,MUPAA,3,10,N,YU,5401
-2021-08-20,23:39,Friday,BLOOR VIADUCT,SUO,28,35,W,BD,5236
-2021-08-20,00:32,Friday,CHESTER STATION,MUSAN,7,14,E,BD,5231
-2021-08-20,00:39,Friday,WARDEN STATION,SUDP,6,13,E,BD,5134
-2021-08-20,01:12,Friday,DUNDAS STATION,MUIRS,0,0,N,YU,0
-2021-08-20,01:16,Friday,GLENCAIRN STATION,MUPR1,59,66,N,YU,5426
-2021-08-20,01:45,Friday,BAY STATION,SUDP,0,0,,BD,0
-2021-08-20,01:58,Friday,SHEPPARD WEST STATION,SUDP,0,0,N,YU,5681
-2021-08-21,02:09,Saturday,FINCH STATION,SUDP,0,0,,YU,0
-2021-08-21,06:00,Saturday,KENNEDY TO MCCOWAN,MRO,0,0,,SRT,0
-2021-08-21,02:20,Saturday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-08-21,05:22,Saturday,CHESTER STATION,MUNCA,0,0,,BD,0
-2021-08-21,05:45,Saturday,ST ANDREW STATION,MUNCA,0,0,,YU,0
-2021-08-21,06:19,Saturday,YORKDALE STATION,PUMST,0,0,,YU,0
-2021-08-21,06:56,Saturday,GREENWOOD STATION,MUSC,0,0,W,BD,5255
-2021-08-21,07:05,Saturday,ROSEDALE STATION,MUSC,0,0,N,YU,5466
-2021-08-21,07:24,Saturday,QUEEN STATION,SUAE,0,0,,YU,0
-2021-08-21,08:09,Saturday,LANSDOWNE STATION,SUDP,0,0,W,BD,5300
-2021-08-21,09:15,Saturday,LAWRENCE STATION,TUOS,0,0,S,YU,5431
-2021-08-21,10:06,Saturday,EGLINTON STATION,EUYRD,4,8,N,YU,5391
-2021-08-21,10:47,Saturday,LANSDOWNE STATION,SUDP,3,7,W,BD,5049
-2021-08-21,11:27,Saturday,SUMMERHILL STATION,TUOS,0,0,N,YU,5686
-2021-08-21,12:09,Saturday,EGLINTON STATION,TUOS,0,0,S,YU,5596
-2021-08-21,12:22,Saturday,COXWELL STATION,MUIS,0,0,,BD,0
-2021-08-21,13:37,Saturday,VAUGHAN MC STATION,MUNOA,4,8,S,YU,0
-2021-08-21,14:18,Saturday,DUNDAS WEST STATION,MUIS,0,0,,BD,0
-2021-08-21,15:18,Saturday,ISLINGTON STATION,SUO,0,0,W,BD,0
-2021-08-21,15:44,Saturday,VAUGHAN MC STATION,MUNOA,4,8,S,YU,0
-2021-08-21,17:29,Saturday,YORK MILLS STATION,SUDP,0,0,N,YU,6106
-2021-08-21,17:57,Saturday,VAUGHAN MC STATION,MUNOA,4,8,S,YU,0
-2021-08-21,18:44,Saturday,LANSDOWNE STATION,MUIS,0,0,,BD,0
-2021-08-21,19:05,Saturday,VAUGHAN MC STATION,TUNIP,5,10,S,YU,5481
-2021-08-21,19:33,Saturday,KENNEDY BD STATION,PUSTS,0,0,E,BD,5232
-2021-08-21,19:46,Saturday,VICTORIA PARK STATION,TUO,4,11,W,BD,5164
-2021-08-21,20:58,Saturday,ROSEDALE STATION,SUUT,0,0,N,YU,5526
-2021-08-21,21:02,Saturday,SUMMERHILL STATION,MUPAA,0,0,N,YU,5526
-2021-08-21,21:34,Saturday,BLOOR STATION,MUO,0,0,N,YU,6111
-2021-08-21,22:00,Saturday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-08-21,23:00,Saturday,KING TO EGLINTON STATO,MUO,0,0,,YU,0
-2021-08-21,01:47,Saturday,KING STATION,SUDP,15,0,N,YU,5686
-2021-08-22,07:30,Sunday,RUNNYMEDE STATION,MUNCA,0,0,,BD,0
-2021-08-22,10:01,Sunday,SCARBOROUGH RAPID TRAN,MRO,0,0,,SRT,0
-2021-08-22,08:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU,0
-2021-08-22,08:20,Sunday,SHEPPARD STATION,TUMVS,4,9,S,YU,5576
-2021-08-22,08:57,Sunday,ST GEORGE YUS STATION,MUTO,3,6,S,YU,5656
-2021-08-22,09:09,Sunday,VAUGHAN MC STATION,PUOPO,6,12,S,YU,5676
-2021-08-22,09:24,Sunday,PIONEER VILLAGE STATIO,PUOPO,5,9,S,YU,6066
-2021-08-22,09:31,Sunday,YORK UNIVERSITY STATIO,PUOPO,4,8,S,YU,6066
-2021-08-22,12:52,Sunday,DOWNSVIEW PARK STATION,PUOPO,0,0,S,YU,5466
-2021-08-22,12:57,Sunday,DOWNSVIEW PARK STATION,PUOPO,6,11,N,YU,5446
-2021-08-22,13:15,Sunday,DOWNSVIEW PARK STATION,PUOPO,0,0,N,YU,6081
-2021-08-22,13:17,Sunday,DOWNSVIEW PARK STATION,PUOPO,0,0,N,YU,5806
-2021-08-22,13:44,Sunday,SHEPPARD STATION,TUSC,0,0,N,YU,5571
-2021-08-22,13:50,Sunday,LAWRENCE WEST STATION,MUIRS,0,0,,YU,0
-2021-08-22,14:01,Sunday,VAUGHAN MC STATION,TUO,5,10,S,YU,5731
-2021-08-22,15:23,Sunday,SHERBOURNE STATION,MUI,8,13,E,BD,5018
-2021-08-22,15:39,Sunday,SHERBOURNE STATION,MUPAA,3,8,E,BD,5206
-2021-08-22,15:54,Sunday,QUEEN STATION,PUMEL,0,0,S,YU,0
-2021-08-22,16:00,Sunday,HIGHWAY 407 STATION,PUOPO,0,0,S,YU,5736
-2021-08-22,16:27,Sunday,BROADVIEW STATION,MUPAA,4,9,W,BD,5100
-2021-08-22,17:06,Sunday,NORTH YORK CTR STATION,MUNCA,0,0,,YU,0
-2021-08-22,17:57,Sunday,NORTH YORK CTR STATION,MUPAA,3,8,S,YU,5576
-2021-08-22,18:00,Sunday,HIGHWAY 407 STATION,PUOPO,4,9,S,YU,5491
-2021-08-22,18:21,Sunday,YONGE BD STATION,MUPR1,124,128,W,BD,5228
-2021-08-22,18:58,Sunday,BLOOR STATION,MUO,120,127,N,YU,5766
-2021-08-22,19:16,Sunday,GLENCAIRN STATION,SUUT,0,0,S,YU,5441
-2021-08-22,21:26,Sunday,MUSEUM STATION,MUPAA,4,11,N,YU,5996
-2021-08-22,21:39,Sunday,HIGHWAY 407 STATION,PUOPO,3,10,S,YU,5491
-2021-08-22,22:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-08-22,22:13,Sunday,HIGHWAY 407 STATION,PUOPO,3,10,S,YU,5991
-2021-08-22,22:39,Sunday,SHEPPARD STATION,PUMEL,0,0,,YU,0
-2021-08-22,22:44,Sunday,FINCH STATION,TUSUP,4,11,S,YU,6096
-2021-08-22,23:28,Sunday,HIGHWAY 407 STATION,PUOPO,0,0,S,YU,5491
-2021-08-22,23:34,Sunday,WILSON STATION,SUDP,0,0,S,YU,0
-2021-08-22,00:00,Sunday,BLOOR STATION,EUDO,4,7,S,YU,5651
-2021-08-22,01:15,Sunday,HIGHWAY 407 STATION,PUOPO,0,0,S,YU,5491
-2021-08-22,01:20,Sunday,YORKDALE STATION,PUOPO,13,20,N,YU,5996
-2021-08-22,01:28,Sunday,WILSON STATION,MUIS,0,0,,YU,0
-2021-08-22,01:39,Sunday,ST GEORGE YUS STATION,TUSUP,9,16,S,YU,5811
-2021-08-22,11:24,Sunday,DON MILLS STATION,TUMVS,0,0,E,SHP,6191
-2021-08-23,05:40,Monday,PIONEER VILLAGE STATIO,MUATC,0,0,N,YU,5801
-2021-08-23,09:21,Monday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-08-23,06:01,Monday,FINCH STATION,EUAC,3,6,N,YU,6136
-2021-08-23,23:00,Monday,SCARBOROUGH RAPID TRAN,MRO,0,0,B,SRT,0
-2021-08-23,06:10,Monday,WILSON STATION,PUATC,0,0,S,YU,5801
-2021-08-23,06:10,Monday,VAUGHAN MC STATION,EUDO,3,6,S,YU,5836
-2021-08-23,06:14,Monday,DUFFERIN STATION,PUTD,4,9,E,BD,5170
-2021-08-23,06:15,Monday,FINCH WEST STATION,PUATC,0,0,S,YU,6116
-2021-08-23,06:18,Monday,VAUGHAN MC STATION,PUATC,0,0,N,YU,5476
-2021-08-23,06:19,Monday,GLENCAIRN STATION,PUATC,0,0,N,YU,6096
-2021-08-23,06:21,Monday,OLD MILL STATION,TUMVS,0,0,W,BD,5002
-2021-08-23,06:24,Monday,ROSEDALE STATION,MUATC,7,10,S,YU,5561
-2021-08-23,06:25,Monday,SHEPPARD WEST STATION,EUYRD,3,6,N,YU,5996
-2021-08-23,06:30,Monday,FINCH STATION,TUSC,0,0,S,YU,5796
-2021-08-23,06:35,Monday,WILSON STATION,PUATC,0,0,S,YU,5586
-2021-08-23,06:39,Monday,EGLINTON WEST STATION,EUDO,0,0,S,YU,5836
-2021-08-23,06:48,Monday,FINCH WEST STATION,PUATC,0,0,N,YU,6056
-2021-08-23,07:02,Monday,DOWNSVIEW PARK STATION,MUATC,6,9,N,YU,6101
-2021-08-23,07:05,Monday,ST CLAIR WEST STATION,PUATC,0,0,N,YU,5431
-2021-08-23,07:08,Monday,GLENCAIRN STATION,PUATC,0,0,N,YU,6136
-2021-08-23,07:12,Monday,SHEPPARD WEST STATION,PUATC,0,0,N,YU,5636
-2021-08-23,07:14,Monday,ST GEORGE YUS STATION,PUATC,0,0,S,YU,5931
-2021-08-23,07:16,Monday,PIONEER VILLAGE STATIO,MUATC,3,6,N,YU,6101
-2021-08-23,07:26,Monday,DOWNSVIEW PARK STATION,PUATC,0,0,N,YU,5611
-2021-08-23,07:31,Monday,YORK UNIVERSITY STATIO,PUATC,0,0,S,YU,6106
-2021-08-23,07:45,Monday,HIGHWAY 407 STATION,PUATC,0,0,S,YU,5436
-2021-08-23,07:50,Monday,YORKDALE STATION,PUATC,0,0,S,YU,5671
-2021-08-23,07:54,Monday,DOWNSVIEW PARK STATION,MUATC,4,7,S,YU,5436
-2021-08-23,07:57,Monday,ST GEORGE YUS STATION,PUATC,0,0,S,YU,5481
-2021-08-23,08:05,Monday,YORKDALE STATION,PUATC,0,0,S,YU,5436
-2021-08-23,08:07,Monday,FINCH WEST STATION,PUATC,0,0,S,YU,5596
-2021-08-23,08:12,Monday,EGLINTON WEST STATION,PUATC,0,0,S,YU,5436
-2021-08-23,08:12,Monday,YORK UNIVERSITY STATIO,PUATC,0,0,S,YU,5696
-2021-08-23,08:18,Monday,YORKDALE STATION,PUATC,0,0,S,YU,5596
-2021-08-23,08:19,Monday,DUPONT STATION,PUATC,0,0,S,YU,5616
-2021-08-23,08:26,Monday,YORKDALE STATION,PUATC,0,0,S,YU,5696
-2021-08-23,08:31,Monday,GLENCAIRN STATION,PUATC,0,0,N,YU,5476
-2021-08-23,08:33,Monday,ST GEORGE YUS STATION,PUATC,3,6,N,YU,5816
-2021-08-23,08:40,Monday,SHEPPARD WEST STATION,MUATC,0,0,N,YU,5476
-2021-08-23,08:51,Monday,ROYAL YORK STATION,SUDP,10,14,E,BD,5082
-2021-08-23,08:52,Monday,VAUGHAN MC STATION,PUATC,4,7,S,YU,5746
-2021-08-23,10:09,Monday,CHRISTIE STATION,MUNCA,0,0,,BD,0
-2021-08-23,10:19,Monday,ISLINGTON STATION,PUMEL,0,0,,BD,0
-2021-08-23,10:53,Monday,WILSON STATION,PUMEL,0,0,,YU,0
-2021-08-23,12:09,Monday,LAWRENCE STATION,SUDP,6,9,N,YU,5746
-2021-08-23,12:29,Monday,SHEPPARD STATION,PUSTS,0,0,N,YU,5606
-2021-08-23,12:40,Monday,KIPLING STATION,TUKEY,4,8,E,BD,5154
-2021-08-23,13:21,Monday,KING STATION,SUO,8,11,S,YU,5711
-2021-08-23,13:40,Monday,LAWRENCE STATION,EUSC,0,0,N,YU,6081
-2021-08-23,13:48,Monday,CHESTER STATION,TUMVS,3,7,E,BD,5096
-2021-08-23,13:57,Monday,KENNEDY BD STATION,SUO,4,8,E,BD,5002
-2021-08-23,14:33,Monday,BLOOR STATION,SUDP,0,0,N,YU,5746
-2021-08-23,14:50,Monday,SPADINA YUS STATION,MUPAA,4,7,S,YU,5766
-2021-08-23,15:07,Monday,VAUGHAN MC STATION,MUCL,3,6,S,YU,5631
-2021-08-23,15:38,Monday,WILSON STATION,MUIE,0,0,,YU,0
-2021-08-23,15:49,Monday,WELLESLEY STATION,MUIS,0,0,,YU,0
-2021-08-23,15:57,Monday,HIGH PARK STATION,SUAE,0,0,,BD,0
-2021-08-23,17:01,Monday,WILSON STATION,MUPAA,0,0,S,YU,5471
-2021-08-23,17:48,Monday,ISLINGTON STATION,MUNCA,0,0,,BD,0
-2021-08-23,17:54,Monday,LAWRENCE STATION,MUSAN,3,6,S,YU,5646
-2021-08-23,18:19,Monday,VAUGHAN MC STATION,MUTO,3,6,S,YU,5826
-2021-08-23,18:23,Monday,WARDEN STATION,SUDP,4,8,W,BD,5153
-2021-08-23,18:26,Monday,VICTORIA PARK STATION,MUPAA,0,0,E,BD,5021
-2021-08-23,18:45,Monday,CASTLE FRANK STATION,SUAP,15,19,W,BD,5153
-2021-08-23,20:44,Monday,SHERBOURNE STATION,SUAE,0,0,,BD,0
-2021-08-23,21:53,Monday,ST GEORGE BD STATION,MUSC,0,0,W,BD,5277
-2021-08-23,22:00,Monday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-08-23,00:43,Monday,FINCH STATION,SUDP,7,14,S,YU,5381
-2021-08-23,00:57,Monday,SHEPPARD STATION,PUSTS,7,14,N,YU,5746
-2021-08-23,20:41,Monday,LESLIE STATION,MUIS,0,0,,SHP,0
-2021-08-24,02:08,Tuesday,FINCH STATION,MUIS,0,0,,YU,0
-2021-08-24,10:05,Tuesday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-08-24,05:35,Tuesday,KEELE STATION,MUIRS,0,0,,BD,0
-2021-08-24,15:17,Tuesday,MIDLAND STATION,MRUIR,3,8,N,SRT,3013
-2021-08-24,20:15,Tuesday,SCARBOROUGH CTR STATIO,SRDP,0,0,,SRT,0
-2021-08-24,05:41,Tuesday,WILSON STATION,TUNIP,4,8,S,YU,5886
-2021-08-24,05:57,Tuesday,KIPLING STATION,EUAC,5,10,E,BD,5357
-2021-08-24,23:00,Tuesday,SCARBOROUGH RAPID TRAN,MRO,0,0,,SRT,0
-2021-08-24,06:50,Tuesday,YORK MILLS STATION,TUSC,0,0,N,YU,5786
-2021-08-24,07:12,Tuesday,UNION STATION,PUMEL,0,0,,YU,0
-2021-08-24,07:59,Tuesday,KIPLING STATION,PUSCR,4,8,E,BD,5236
-2021-08-24,08:47,Tuesday,EGLINTON STATION,MUIS,0,0,,YU,0
-2021-08-24,08:54,Tuesday,EGLINTON STATION,MUPAA,0,0,S,YU,5711
-2021-08-24,09:17,Tuesday,MAIN STREET STATION,SUDP,4,8,E,BD,5255
-2021-08-24,09:43,Tuesday,HIGHWAY 407 STATION,MUATC,3,6,S,YU,5541
-2021-08-24,11:04,Tuesday,KENNEDY BD STATION,EUBO,4,8,W,BD,5371
-2021-08-24,11:21,Tuesday,KENNEDY BD STATION,PUMST,0,0,,BD,0
-2021-08-24,13:21,Tuesday,PAPE STATION,PUSRA,4,8,E,BD,5236
-2021-08-24,13:35,Tuesday,COXWELL STATION,SUDP,0,0,,BD,0
-2021-08-24,13:45,Tuesday,JANE STATION,MUSC,0,0,E,BD,5106
-2021-08-24,13:50,Tuesday,OLD MILL STATION,PUSTS,0,0,E,BD,5255
-2021-08-24,13:58,Tuesday,KEELE STATION,TUO,4,8,E,BD,5255
-2021-08-24,14:01,Tuesday,SPADINA BD STATION,SUPOL,0,0,W,BD,5035
-2021-08-24,14:36,Tuesday,ISLINGTON STATION,MUI,5,9,W,BD,5105
-2021-08-24,16:16,Tuesday,LAWRENCE STATION,MUSC,0,0,N,YU,5641
-2021-08-24,16:26,Tuesday,SUMMERHILL STATION,PUMST,0,0,N,YU,5766
-2021-08-24,16:36,Tuesday,KING STATION,SUUT,0,0,S,YU,5991
-2021-08-24,16:55,Tuesday,MUSEUM STATION,SUDP,8,11,N,YU,5821
-2021-08-24,17:12,Tuesday,BLOOR STATION,MUIS,0,0,S,YU,0
-2021-08-24,17:49,Tuesday,WELLESLEY STATION,MUIS,0,0,S,YU,0
-2021-08-24,17:52,Tuesday,DAVISVILLE STATION,SUUT,0,0,S,YU,5381
-2021-08-24,18:26,Tuesday,KENNEDY BD STATION,PUTDN,7,11,E,BD,5206
-2021-08-24,18:56,Tuesday,FINCH STATION,SUO,5,10,S,YU,5581
-2021-08-24,20:19,Tuesday,SHEPPARD STATION,MUI,8,13,N,YU,5971
-2021-08-24,20:49,Tuesday,ST CLAIR STATION,MUPAA,0,0,N,YU,5776
-2021-08-24,22:00,Tuesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-08-24,22:40,Tuesday,WILSON STATION,MUPAA,0,0,N,YU,5646
-2021-08-24,00:53,Tuesday,ROSEDALE STATION,MUSC,0,0,N,YU,5726
-2021-08-24,01:23,Tuesday,COLLEGE STATION,EUDO,5,12,S,YU,5781
-2021-08-24,01:35,Tuesday,SPADINA YUS STATION,MUIS,0,0,S,YU,0
-2021-08-24,01:38,Tuesday,DUPONT STATION,MUIS,0,0,,YU,0
-2021-08-24,02:43,Tuesday,SHEPPARD-YONGE STATION,TUMVS,3,8,W,SHP,6186
-2021-08-24,05:47,Tuesday,DON MILLS STATION,MUSC,0,0,W,SHP,6161
-2021-08-24,09:13,Tuesday,SHEPPARD-YONGE STATION,TUO,9,15,E,SHP,6141
-2021-08-24,09:33,Tuesday,DON MILLS STATION,PUEO,0,0,W,SHP,6161
-2021-08-24,15:18,Tuesday,BAYVIEW STATION,PUOPO,0,0,E,SHP,6181
-2021-08-24,18:26,Tuesday,DON MILLS STATION,PUSTS,3,8,E,SHP,6191
-2021-08-24,19:59,Tuesday,SHEPPARD-YONGE STATION,TUSC,0,0,W,SHP,6186
-2021-08-25,06:09,Wednesday,ELLESMERE STATION,ERDB,5,10,N,SRT,3019
-2021-08-25,04:43,Wednesday,LAWRENCE WEST TO EGLIN,PUTWZ,0,0,,YU,0
-2021-08-25,08:16,Wednesday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-08-25,06:07,Wednesday,VAUGHAN MC STATION,MUATC,3,6,S,YU,5431
-2021-08-25,07:41,Wednesday,WILSON STATION,MUATC,3,6,S,YU,5551
-2021-08-25,08:15,Wednesday,YORK UNIVERSITY STATIO,SUDP,6,9,N,YU,5761
-2021-08-25,08:17,Wednesday,NORTH YORK CTR STATION,SUAP,3,6,S,YU,5791
-2021-08-25,09:41,Wednesday,MAIN STREET STATION,SUAP,0,0,,BD,0
-2021-08-25,09:44,Wednesday,SHEPPARD STATION,SUSP,0,0,,YU,0
-2021-08-25,10:23,Wednesday,MAIN STREET STATION,EUDO,3,7,E,BD,5217
-2021-08-25,10:36,Wednesday,CHRISTIE STATION,SUDP,3,7,E,BD,5236
-2021-08-25,11:08,Wednesday,DUNDAS WEST STATION,MUIS,0,0,,BD,0
-2021-08-25,11:45,Wednesday,KIPLING STATION,EUCD,4,8,E,BD,5217
-2021-08-25,11:51,Wednesday,KIPLING STATION,TUMVS,0,0,W,BD,5336
-2021-08-25,13:41,Wednesday,LAWRENCE STATION,PUATC,0,0,N,YU,0
-2021-08-25,13:54,Wednesday,LAWRENCE WEST STATION,EUBO,3,6,N,YU,5646
-2021-08-25,15:15,Wednesday,WARDEN STATION,MUPAA,0,0,E,BD,5205
-2021-08-25,15:28,Wednesday,MAIN STREET STATION,MUIS,0,0,,BD,0
-2021-08-25,16:02,Wednesday,ST ANDREW STATION,MUPAA,3,6,N,YU,5496
-2021-08-25,16:35,Wednesday,DAVISVILLE STATION,SUEAS,10,13,S,YU,5706
-2021-08-25,16:59,Wednesday,EGLINTON STATION,MUDD,9,12,S,YU,5786
-2021-08-25,17:14,Wednesday,PAPE STATION,MUIRS,0,0,,BD,0
-2021-08-25,17:35,Wednesday,ROSEDALE STATION,MUIR,11,14,N,YU,6021
-2021-08-25,17:49,Wednesday,BATHURST STATION,SUDP,0,0,W,BD,5102
-2021-08-25,18:29,Wednesday,FINCH STATION,MUSC,0,0,N,YU,5881
-2021-08-25,18:51,Wednesday,FINCH STATION,MUSC,0,0,S,YU,5846
-2021-08-25,19:10,Wednesday,ISLINGTON STATION,MUIS,0,0,,BD,0
-2021-08-25,19:55,Wednesday,GREENWOOD STATION,SUDP,4,11,E,BD,5239
-2021-08-25,20:08,Wednesday,COXWELL STATION,SUPOL,11,18,E,BD,5239
-2021-08-25,20:35,Wednesday,DAVISVILLE STATION,SUEAS,8,13,S,YU,5391
-2021-08-25,20:39,Wednesday,SUMMERHILL STATION,MUPLC,0,0,S,YU,0
-2021-08-25,21:53,Wednesday,ROYAL YORK STATION,PUMEL,0,0,,BD,0
-2021-08-25,22:00,Wednesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-08-25,22:27,Wednesday,VICTORIA PARK STATION,MUIS,0,0,,BD,0
-2021-08-25,22:37,Wednesday,HIGHWAY 407 STATION,MUIS,0,0,N,YU,0
-2021-08-25,22:54,Wednesday,ISLINGTON STATION,MUIRS,0,0,,BD,0
-2021-08-25,23:00,Wednesday,BLOOR STATION,SUDP,0,0,S,YU,5496
-2021-08-25,23:10,Wednesday,UNION STATION,MUTO,5,12,S,YU,5496
-2021-08-25,23:48,Wednesday,FINCH STATION,SUDP,0,0,N,YU,0
-2021-08-25,00:34,Wednesday,LAWRENCE STATION,EUSC,0,0,N,YU,5781
-2021-08-25,00:59,Wednesday,FINCH STATION,MUIS,0,0,,YU,0
-2021-08-25,01:16,Wednesday,BAY STATION,MUD,3,10,W,BD,5026
-2021-08-25,05:43,Wednesday,DON MILLS STATION,MUSC,0,0,W,SHP,6146
-2021-08-25,18:28,Wednesday,DON MILLS STATION,SUDP,0,0,,SHP,0
-2021-08-25,19:30,Wednesday,BESSARION STATION,TUMVS,8,13,E,SHP,6141
-2021-08-26,06:00,Thursday,TORONTO TRANSIT COMMIS,MRO,0,0,,SRT,0
-2021-08-26,02:19,Thursday,WILSON STATION,MUIRS,0,0,,YU,0
-2021-08-26,05:36,Thursday,KENNEDY BD STATION,MUPAA,0,0,E,BD,5355
-2021-08-26,07:34,Thursday,KENNEDY SRT STATION,SRDP,0,0,E,SRT,3015
-2021-08-26,05:55,Thursday,KEELE STATION,EUOE,3,7,W,BD,5236
-2021-08-26,09:25,Thursday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-08-26,14:32,Thursday,LAWRENCE EAST STATION,MRUI,0,0,,SRT,1340
-2021-08-26,06:00,Thursday,TORONTO TRANSIT COMMIS,MUO,0,0,,YU/BD,0
-2021-08-26,23:00,Thursday,SCARBOROUGH RAPID TRAN,MRO,0,0,,SRT,0
-2021-08-26,06:16,Thursday,SHEPPARD WEST STATION,TUNIP,4,7,N,YU,5786
-2021-08-26,06:49,Thursday,OSSINGTON STATION,SUDP,0,0,,BD,0
-2021-08-26,06:54,Thursday,FINCH WEST STATION,PUMEL,0,0,,YU,0
-2021-08-26,08:10,Thursday,YORK MILLS STATION,MUPAA,0,0,N,YU,5851
-2021-08-26,08:15,Thursday,ROSEDALE STATION,MUATC,6,9,S,YU,5566
-2021-08-26,09:15,Thursday,QUEEN STATION,SUUT,9,12,N,YU,6051
-2021-08-26,09:25,Thursday,UNION STATION,EUTRD,3,6,N,YU,5731
-2021-08-26,09:26,Thursday,DAVISVILLE STATION,MUPLC,0,0,,YU,0
-2021-08-26,09:54,Thursday,COXWELL STATION,SUDP,8,12,E,BD,5206
-2021-08-26,10:18,Thursday,KENNEDY BD STATION,EUAC,11,15,W,BD,5100
-2021-08-26,10:34,Thursday,PAPE STATION,EUAC,4,8,E,BD,5291
-2021-08-26,11:42,Thursday,KEELE STATION,MUIS,0,0,,BD,0
-2021-08-26,12:02,Thursday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-08-26,12:21,Thursday,ROSEDALE STATION,MUSC,0,0,N,YU,5466
-2021-08-26,13:00,Thursday,DUPONT STATION,SUDP,6,9,N,YU,6026
-2021-08-26,13:13,Thursday,KENNEDY BD STATION,MUIRS,0,0,,BD,0
-2021-08-26,13:46,Thursday,SHEPPARD WEST STATION,SUEAS,11,14,S,YU,5651
-2021-08-26,14:09,Thursday,KENNEDY BD STATION,MUDD,4,8,W,BD,5332
-2021-08-26,14:38,Thursday,VICTORIA PARK STATION,EUAL,4,8,W,BD,5178
-2021-08-26,15:36,Thursday,FINCH STATION,MUIS,0,0,,YU,0
-2021-08-26,15:54,Thursday,KEELE STATION,MUSC,0,0,W,BD,5154
-2021-08-26,16:07,Thursday,ROSEDALE STATION,SUDP,6,9,S,YU,6121
-2021-08-26,16:30,Thursday,ISLINGTON STATION,EUSC,0,0,W,BD,5332
-2021-08-26,17:29,Thursday,MAIN STREET STATION,MUSC,0,0,W,BD,5355
-2021-08-26,17:40,Thursday,DUNDAS WEST STATION,SUAP,0,0,,BD,0
-2021-08-26,18:12,Thursday,COLLEGE STATION,MUNCA,0,0,,YU,0
-2021-08-26,18:46,Thursday,YORK MILLS STATION,TUSC,0,0,S,YU,5786
-2021-08-26,21:38,Thursday,YONGE BD STATION,SUDP,6,13,W,BD,5117
-2021-08-26,21:54,Thursday,EGLINTON STATION,SUDP,3,10,S,YU,6101
-2021-08-26,21:58,Thursday,SPADINA YUS STATION,MUPAA,4,11,S,YU,5586
-2021-08-26,22:00,Thursday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-08-26,23:36,Thursday,FINCH STATION,SUAP,24,31,S,YU,5761
-2021-08-26,23:42,Thursday,FINCH WEST STATION,MUIRS,0,0,S,YU,5586
-2021-08-26,01:22,Thursday,DUPONT STATION,MUSAN,7,14,S,YU,6126
-2021-08-26,06:00,Thursday,TORONTO TRANSIT COMMIS,MUO,0,0,,SHP,0
-2021-08-26,16:53,Thursday,BAYVIEW STATION,TUMVS,0,0,E,SHP,6176
-2021-08-27,05:33,Friday,MAIN STREET STATION,MUNCA,0,0,,BD,0
-2021-08-27,06:00,Friday,TORONTO TRANSIT COMMIS,MRO,0,0,,SRT,0
-2021-08-27,05:56,Friday,BROADVIEW STATION,MUIR,3,8,W,BD,5117
-2021-08-27,13:20,Friday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-08-27,14:00,Friday,LAWRENCE EAST STATION,MRTO,7,13,W,SRT,3003
-2021-08-27,06:00,Friday,TORONTO TRANSIT COMMIS,MUO,0,0,,YU & BD LINES,0
-2021-08-27,06:07,Friday,BLOOR STATION,PUTO,5,8,S,YU,5391
-2021-08-27,06:10,Friday,ROSEDALE STATION,MUATC,8,11,S,YU,5566
-2021-08-27,08:02,Friday,FINCH STATION,MUSC,0,0,S,YU,5721
-2021-08-27,09:08,Friday,ST CLAIR WEST STATION,SUAE,0,0,S,YU,5826
-2021-08-27,10:25,Friday,OSSINGTON STATION,MUIS,0,0,,BD,0
-2021-08-27,10:41,Friday,BLOOR STATION,MUIRS,0,0,N,YU,0
-2021-08-27,10:52,Friday,DOWNSVIEW PARK STATION,MUPAA,0,0,N,YU,5741
-2021-08-27,11:03,Friday,PIONEER VILLAGE STATIO,MUPAA,0,0,N,YU,5741
-2021-08-27,11:13,Friday,SHEPPARD WEST STATION,MUPAA,0,0,N,YU,5886
-2021-08-27,11:19,Friday,KEELE STATION,MUTO,3,7,E,BD,5067
-2021-08-27,11:29,Friday,DAVISVILLE STATION,PUSO,5,8,S,YU,5991
-2021-08-27,12:07,Friday,KING STATION,MUPAA,0,0,S,YU,5656
-2021-08-27,12:12,Friday,NORTH YORK CTR STATION,SUDP,0,0,S,YU,0
-2021-08-27,13:00,Friday,BAY STATION,PUMEL,0,0,,BD,0
-2021-08-27,13:17,Friday,KEELE STATION,MUIS,0,0,,BD,0
-2021-08-27,13:24,Friday,YORK MILLS STATION,TUSC,0,0,S,YU,5596
-2021-08-27,13:43,Friday,CASTLE FRANK STATION,MUIR,7,11,E,BD,5030
-2021-08-27,14:09,Friday,COLLEGE STATION,MUIRS,0,0,,YU,0
-2021-08-27,14:10,Friday,YORK MILLS STATION,TUSC,0,0,S,YU,5461
-2021-08-27,14:18,Friday,KENNEDY BD STATION,PUSTS,4,8,W,BD,5202
-2021-08-27,15:44,Friday,WOODBINE STATION,PUMST,0,0,,BD,0
-2021-08-27,15:45,Friday,ROYAL YORK STATION,MUPAA,0,0,E,BD,5001
-2021-08-27,17:43,Friday,KIPLING STATION,SUDP,0,0,E,BD,5293
-2021-08-27,19:20,Friday,QUEEN STATION,MUPAA,0,0,N,YU,5451
-2021-08-27,21:28,Friday,CHRISTIE STATION,SUDP,10,17,W,BD,5084
-2021-08-27,22:00,Friday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-08-27,06:00,Friday,TORONTO TRANSIT COMMIS,MUO,0,0,,SHP,0
-2021-08-28,04:40,Saturday,DOWNSVIEW PARK STATION,MUNCA,0,0,,YU,0
-2021-08-28,13:20,Saturday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-08-28,05:45,Saturday,KEELE STATION,TUO,3,0,W,BD,5026
-2021-08-28,06:00,Saturday,YONGE BD STATION,TUO,3,9,W,BD,5084
-2021-08-28,06:00,Saturday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU,0
-2021-08-28,06:40,Saturday,DONLANDS STATION,TUNIP,12,0,W,BD,5117
-2021-08-28,07:23,Saturday,KEELE STATION,MUIRS,0,0,,BD,0
-2021-08-28,07:41,Saturday,ISLINGTON STATION,EUDO,6,11,W,BD,5026
-2021-08-28,08:03,Saturday,BLOOR STATION,MUPR1,0,0,N,YU,5546
-2021-08-28,08:06,Saturday,ST CLAIR STATION,MUO,6,12,N,YU,5546
-2021-08-28,08:14,Saturday,YORKDALE STATION,MUIS,0,0,N,YU,0
-2021-08-28,12:49,Saturday,VICTORIA PARK STATION,SUO,0,0,W,BD,5293
-2021-08-28,12:58,Saturday,DONLANDS STATION,SUO,14,18,W,BD,5293
-2021-08-28,14:08,Saturday,ST CLAIR STATION,MUIS,0,0,,YU,0
-2021-08-28,15:04,Saturday,SPADINA BD STATION,SUDP,9,13,W,BD,5165
-2021-08-28,15:17,Saturday,ST GEORGE BD STATION,MUIS,0,0,,BD,0
-2021-08-28,15:41,Saturday,EGLINTON STATION,MUIS,0,0,,YU,0
-2021-08-28,15:49,Saturday,SHEPPARD WEST STATION,SUEAS,10,15,N,YU,5771
-2021-08-28,15:52,Saturday,MAIN STREET STATION,MUSAN,0,0,E,BD,5335
-2021-08-28,16:38,Saturday,DUNDAS WEST STATION,TUMVS,0,0,W,BD,5175
-2021-08-28,18:07,Saturday,OSSINGTON STATION,EUDO,4,9,E,BD,5247
-2021-08-28,18:32,Saturday,BATHURST STATION,MUIS,0,0,,BD,0
-2021-08-28,18:43,Saturday,KENNEDY BD STATION,EUCD,5,10,E,BD,5369
-2021-08-28,19:55,Saturday,ISLINGTON STATION,MUI,17,24,E,BD,5220
-2021-08-28,20:47,Saturday,WILSON STATION,MUTO,3,10,N,YU,5711
-2021-08-28,22:00,Saturday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-08-28,22:00,Saturday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-08-28,22:00,Saturday,SPADINA BD STATION,MUIR,0,0,E,BD,5241
-2021-08-28,22:23,Saturday,COLLEGE STATION,SUUT,17,24,N,YU,5476
-2021-08-28,23:55,Saturday,ST CLAIR STATION,MUI,7,14,N,YU,5711
-2021-08-28,00:40,Saturday,KENNEDY BD STATION,MUSAN,5,12,W,BD,5099
-2021-08-28,01:34,Saturday,FINCH WEST STATION,MUPAA,0,0,N,YU,6066
-2021-08-29,02:35,Sunday,KENNEDY BD STATION,SUAP,0,0,,BD,0
-2021-08-29,08:09,Sunday,KENNEDY SRT STATION,ERPR,6,0,N,SRT,3005
-2021-08-29,02:44,Sunday,KENNEDY BD STATION,SUAE,0,0,,BD,0
-2021-08-29,09:22,Sunday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-08-29,07:40,Sunday,BATHURST STATION,MUNCA,0,0,,BD,0
-2021-08-29,15:12,Sunday,SCARBOROUGH CTR STATIO,MRPAA,0,0,N,SRT,3017
-2021-08-29,07:55,Sunday,CHRISTIE STATION,MUNCA,0,0,,BD,0
-2021-08-29,08:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU,0
-2021-08-29,08:04,Sunday,FINCH WEST STATION,SUO,0,0,S,YU,3620
-2021-08-29,08:16,Sunday,FINCH WEST STATION,PUOPO,6,12,N,YU,5676
-2021-08-29,08:43,Sunday,DUPONT STATION,PUOPO,6,12,N,YU,5736
-2021-08-29,08:46,Sunday,ST GEORGE YUS STATION,PUOPO,7,13,N,YU,5816
-2021-08-29,09:01,Sunday,DUPONT STATION,PUOPO,6,12,N,YU,5816
-2021-08-29,09:17,Sunday,VICTORIA PARK STATION,MUIS,0,0,,BD,0
-2021-08-29,09:57,Sunday,ST CLAIR STATION,MUIS,0,0,,YU,0
-2021-08-29,10:10,Sunday,DUNDAS WEST STATION,MUIR,19,24,E,BD,5076
-2021-08-29,10:22,Sunday,HIGHWAY 407 STATION,PUOPO,0,0,S,YU,5701
-2021-08-29,12:36,Sunday,DUPONT STATION,PUOPO,6,12,N,YU,5766
-2021-08-29,13:00,Sunday,ST CLAIR STATION,MUIRS,0,0,,YU,0
-2021-08-29,13:11,Sunday,YORK UNIVERSITY STATIO,PUOPO,0,0,N,YU,5606
-2021-08-29,14:09,Sunday,ROSEDALE STATION,MUPAA,0,0,N,YU,5601
-2021-08-29,14:18,Sunday,PIONEER VILLAGE STATIO,PUOPO,3,9,N,YU,5651
-2021-08-29,14:26,Sunday,BATHURST STATION,MUIS,0,0,,BD,0
-2021-08-29,14:58,Sunday,LAWRENCE STATION,MUPAA,0,0,N,YU,5681
-2021-08-29,15:36,Sunday,BLOOR STATION,MUIRS,0,0,N,YU,0
-2021-08-29,15:38,Sunday,ST GEORGE YUS STATION,PUOPO,6,12,N,YU,5921
-2021-08-29,15:41,Sunday,BATHURST STATION,SUDP,3,8,W,BD,5081
-2021-08-29,15:49,Sunday,YORKDALE STATION,SUPOL,0,0,,,0
-2021-08-29,16:13,Sunday,YORK MILLS STATION,MUO,0,0,,,0
-2021-08-29,16:26,Sunday,YORK UNIVERSITY STATIO,PUOPO,6,12,S,YU,5701
-2021-08-29,16:29,Sunday,VAUGHAN MC STATION,PUOPO,6,12,S,YU,5636
-2021-08-29,16:58,Sunday,DUNDAS STATION,MUI,5,11,S,YU,5491
-2021-08-29,16:58,Sunday,DOWNSVIEW PARK STATION,PUOPO,0,0,S,YU,6056
-2021-08-29,17:04,Sunday,QUEEN STATION,MUSAN,3,9,S,YU,5491
-2021-08-29,17:25,Sunday,CASTLE FRANK STATION,MUPAA,0,0,E,BD,5247
-2021-08-29,17:57,Sunday,WELLESLEY STATION,MUPAA,0,0,S,YU,6051
-2021-08-29,18:11,Sunday,DUNDAS WEST STATION,SUAP,19,24,E,BD,5001
-2021-08-29,18:53,Sunday,SPADINA YUS STATION,PUOPO,14,19,N,YU,5576
-2021-08-29,18:54,Sunday,HIGHWAY 407 STATION,PUOPO,4,9,S,YU,6056
-2021-08-29,18:59,Sunday,HIGHWAY 407 STATION,PUOPO,8,13,S,YU,5906
-2021-08-29,19:12,Sunday,QUEEN'S PARK STATION,MUPAA,0,0,N,YU,5466
-2021-08-29,19:15,Sunday,ST CLAIR WEST STATION,PUOPO,6,12,W,YU,5576
-2021-08-29,19:52,Sunday,LANSDOWNE STATION,MUIRS,0,0,E,BD,0
-2021-08-29,22:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-08-29,22:05,Sunday,COLLEGE STATION,SUDP,0,0,S,YU,5281
-2021-08-29,22:32,Sunday,HIGHWAY 407 STATION,PUOPO,0,0,S,YU,5866
-2021-08-29,23:46,Sunday,ST GEORGE YUS STATION,MUNOA,8,15,S,YU,5906
-2021-08-29,00:53,Sunday,WARDEN STATION,MUIS,0,0,,BD,0
-2021-08-29,14:17,Sunday,LESLIE STATION,MUNCA,0,0,,SHP,0
-2021-08-30,10:26,Monday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-08-30,05:27,Monday,WELLESLEY STATION,MUIRS,0,0,,YU,0
-2021-08-30,05:58,Monday,KEELE STATION,EUNT,5,10,E,BD,5022
-2021-08-30,13:44,Monday,LAWRENCE EAST STATION,MRPAA,0,0,N,SRT,3017
-2021-08-30,06:20,Monday,SHEPPARD WEST STATION,TUNIP,3,7,N,YU,5791
-2021-08-30,07:00,Monday,KIPLING STATION,EUBO,4,8,E,BD,5345
-2021-08-30,07:12,Monday,FINCH STATION,MUSC,3,6,S,YU,5436
-2021-08-30,07:14,Monday,BROADVIEW STATION,MUPLB,48,51,W,BD,5118
-2021-08-30,08:30,Monday,WARDEN STATION,SUO,0,0,,BD,0
-2021-08-30,08:34,Monday,KIPLING STATION,TUO,4,8,E,BD,5118
-2021-08-30,08:41,Monday,ISLINGTON STATION,MUIRS,0,0,,BD,0
-2021-08-30,09:32,Monday,SPADINA BD STATION,MUIRS,0,0,E,BD,0
-2021-08-30,10:15,Monday,ROSEDALE STATION,MUSAN,3,6,S,YU,5781
-2021-08-30,10:59,Monday,DONLANDS STATION,MUO,4,8,E,BD,5172
-2021-08-30,11:19,Monday,EGLINTON WEST STATION,SUDP,4,7,N,YU,5476
-2021-08-30,11:59,Monday,BLOOR STATION,MUIS,0,0,S,YU,0
-2021-08-30,11:59,Monday,WELLESLEY STATION,MUIR,0,0,N,YU,5491
-2021-08-30,12:57,Monday,KIPLING STATION,MUIE,0,0,,BD,0
-2021-08-30,12:57,Monday,COXWELL STATION,SUDP,4,8,W,BD,5129
-2021-08-30,13:31,Monday,WILSON DIVISION,MUIE,0,0,,YU,0
-2021-08-30,13:32,Monday,CHRISTIE STATION,SUDP,7,11,W,BD,5356
-2021-08-30,13:41,Monday,WILSON STATION,MUIRS,0,0,,YU,0
-2021-08-30,14:11,Monday,EGLINTON STATION,TUMVS,3,6,S,YU,5861
-2021-08-30,14:14,Monday,KIPLING STATION,MUO,4,8,,BD,5289
-2021-08-30,14:54,Monday,SUMMERHILL STATION,EUSC,0,0,S,YU,5426
-2021-08-30,14:59,Monday,KIPLING STATION,MUIRS,0,0,,BD,0
-2021-08-30,16:06,Monday,ISLINGTON STATION,MUPR1,7,11,W,BD,5289
-2021-08-30,16:20,Monday,YONGE BD STATION,PUMEL,0,0,,BD,0
-2021-08-30,16:32,Monday,RUNNYMEDE STATION,PUMEL,0,0,,BD,0
-2021-08-30,17:04,Monday,ROSEDALE STATION,MUNCA,0,0,,YU,0
-2021-08-30,17:08,Monday,HIGHWAY 407 STATION,MUIR,7,10,S,YU,5591
-2021-08-30,18:01,Monday,BROADVIEW STATION,MUNCA,0,0,,BD,0
-2021-08-30,19:10,Monday,ST PATRICK STATION,MUIS,0,0,S,YU,0
-2021-08-30,19:47,Monday,SHEPPARD STATION,SUUT,9,14,S,YU,6081
-2021-08-30,20:25,Monday,CHESTER STATION,MUPAA,0,0,E,BD,5220
-2021-08-30,20:39,Monday,GLENCAIRN STATION,MUIR,15,22,S,YU,5826
-2021-08-30,21:03,Monday,SHEPPARD STATION,EUSC,0,0,N,YU,5396
-2021-08-30,22:00,Monday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-08-30,22:21,Monday,SUMMERHILL STATION,PUTO,3,10,S,YU,5461
-2021-08-30,22:29,Monday,DONLANDS STATION,SUDP,0,0,W,BD,5049
-2021-08-30,22:38,Monday,OSSINGTON STATION,EUBK,7,14,W,BD,5007
-2021-08-30,23:00,Monday,KING TO ST GEORGE STAT,MUO,0,0,B,YU,0
-2021-08-30,23:23,Monday,BLOOR STATION,MUATC,0,0,N,YU,5406
-2021-08-30,23:51,Monday,ST PATRICK STATION,SUO,0,0,,YU,0
-2021-08-30,23:56,Monday,BROADVIEW STATION,PUMEL,0,0,,BD,0
-2021-08-30,00:34,Monday,ROSEDALE STATION,EUATC,4,11,S,YU,5551
-2021-08-30,00:43,Monday,BLOOR STATION,MUATC,4,11,S,YU,5551
-2021-08-30,01:10,Monday,VICTORIA PARK STATION,PUMEL,0,0,,BD,0
-2021-08-30,01:11,Monday,ROSEDALE STATION,MUATC,6,13,S,YU,5576
-2021-08-30,01:20,Monday,DUNDAS WEST STATION,MUIRS,0,0,,BD,0
-2021-08-30,01:33,Monday,QUEEN STATION,MUATC,4,11,N,YU,5571
-2021-08-30,05:22,Monday,SHEPPARD-YONGE STATION,MUSC,0,0,E,SHP,6191
-2021-08-30,08:09,Monday,BESSARION STATION,EUBK,5,10,E,SHP,6141
-2021-08-30,11:51,Monday,SHEPPARD-YONGE STATION,MUSC,0,0,E,SHP,6176
-2021-08-30,15:13,Monday,DON MILLS STATION,MUIS,0,0,,SHP,0
-2021-08-30,17:24,Monday,LESLIE STATION,TUMVS,5,10,E,SHP,6176
-2021-08-31,09:29,Tuesday,KENNEDY SRT STATION,SRUT,10,16,N,SRT,3025
-2021-08-31,05:34,Tuesday,ROSEDALE STATION,TUSC,0,0,N,YU,5671
-2021-08-31,05:36,Tuesday,SUMMERHILL STATION,EUSC,0,0,N,YU,5671
-2021-08-31,05:41,Tuesday,LAWRENCE STATION,SUG,4,8,N,YU,6116
-2021-08-31,06:09,Tuesday,LAWRENCE STATION,EUPI,6,10,N,YU,5671
-2021-08-31,06:50,Tuesday,KENNEDY BD STATION,MUPAA,0,0,W,BD,5005
-2021-08-31,07:11,Tuesday,FINCH STATION,TUSC,5,9,S,YU,5726
-2021-08-31,09:10,Tuesday,ROSEDALE STATION,MUSC,0,0,N,YU,5466
-2021-08-31,10:50,Tuesday,SPADINA BD STATION,SUDP,5,9,E,BD,5358
-2021-08-31,11:10,Tuesday,VAUGHAN MC STATION,MUIR,3,6,S,YU,6056
-2021-08-31,11:21,Tuesday,FINCH STATION,MUSAN,3,6,S,YU,5946
-2021-08-31,11:58,Tuesday,KIPLING STATION,SUO,0,0,,BD,0
-2021-08-31,12:22,Tuesday,KIPLING STATION,MUTO,3,7,E,BD,5134
-2021-08-31,12:49,Tuesday,WARDEN STATION,MUIR,3,7,E,BD,5346
-2021-08-31,13:08,Tuesday,LAWRENCE STATION,MUPAA,0,0,S,YU,5851
-2021-08-31,13:17,Tuesday,WARDEN STATION,SUO,0,0,,BD,0
-2021-08-31,13:37,Tuesday,FINCH STATION,MUSAN,3,6,S,YU,5791
-2021-08-31,13:49,Tuesday,ROYAL YORK STATION,PUMEL,0,0,,BD,0
-2021-08-31,14:00,Tuesday,BROADVIEW STATION,TUCC,3,7,E,BD,5294
-2021-08-31,14:04,Tuesday,QUEEN STATION,SUUT,0,0,S,YU,6092
-2021-08-31,15:11,Tuesday,YONGE BD STATION,SUSA,0,0,,BD,0
-2021-08-31,15:38,Tuesday,KENNEDY BD STATION,MUIRS,0,0,,BD,0
-2021-08-31,15:41,Tuesday,SUMMERHILL STATION,SUDP,0,0,N,YU,5591
-2021-08-31,15:59,Tuesday,DAVISVILLE STATION,TUCC,11,14,S,YU,5956
-2021-08-31,16:13,Tuesday,QUEEN STATION,SUUT,0,0,N,YU,5626
-2021-08-31,16:35,Tuesday,WARDEN STATION,SUDP,0,0,E,BD,5088
-2021-08-31,18:09,Tuesday,COLLEGE STATION,EUDO,0,0,N,YU,5471
-2021-08-31,18:29,Tuesday,EGLINTON STATION,SUDP,3,6,N,YU,6081
-2021-08-31,19:55,Tuesday,EGLINTON STATION,EUDO,0,0,S,YU,5811
-2021-08-31,20:37,Tuesday,EGLINTON WEST STATION,MUPAA,3,10,N,YU,5811
-2021-08-31,20:58,Tuesday,SHEPPARD STATION,SUO,3,10,S,YU,5896
-2021-08-31,21:13,Tuesday,SPADINA BD STATION,MUIS,0,0,,BD,0
-2021-08-31,21:17,Tuesday,DUNDAS STATION,SUO,11,18,N,YU,5776
-2021-08-31,22:00,Tuesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-08-31,23:00,Tuesday,KING TO ST GEORGE STAT,MUO,0,0,B,YU,0
-2021-08-31,23:32,Tuesday,DUNDAS WEST STATION,MUIS,0,0,,BD,0
-2021-08-31,00:55,Tuesday,BATHURST STATION,PUMEL,0,0,,BD,0
-2021-08-31,05:38,Tuesday,BAYVIEW STATION,TUO,5,10,E,SHP,6191
-2021-08-31,05:38,Tuesday,LESLIE STATION,TUO,7,0,E,SHP,6176
-2021-08-31,07:30,Tuesday,LESLIE STATION,EUBK,5,10,W,SHP,6171
-2021-08-31,09:40,Tuesday,LESLIE STATION,EUBK,5,10,W,SHP,6191
-2021-08-31,19:30,Tuesday,DON MILLS STATION,PUMEL,0,0,,SHP,0
-2021-09-01,05:41,Wednesday,VICTORIA PARK STATION,MUIS,0,0,,BD,0
-2021-09-01,06:32,Wednesday,NORTH YORK CTR STATION,EUSC,0,0,S,YU,5726
-2021-09-01,07:58,Wednesday,WARDEN STATION,MUIRS,0,0,,BD,0
-2021-09-01,08:08,Wednesday,ROSEDALE STATION,MUSC,3,6,N,YU,5846
-2021-09-01,08:24,Wednesday,RUNNYMEDE STATION,PUMST,0,0,,BD,0
-2021-09-01,09:26,Wednesday,GREENWOOD STATION,MUD,3,7,W,BD,5253
-2021-09-01,09:47,Wednesday,LANSDOWNE STATION,MUIS,0,0,,BD,0
-2021-09-01,11:10,Wednesday,SPADINA BD STATION,MUDD,3,7,W,BD,5255
-2021-09-01,11:28,Wednesday,DUNDAS STATION,MUPAA,0,0,S,YU,5776
-2021-09-01,11:46,Wednesday,KIPLING STATION,MUIRS,0,0,,BD,0
-2021-09-01,12:17,Wednesday,ROSEDALE STATION,MUSC,0,0,N,YU,5466
-2021-09-01,12:27,Wednesday,ST CLAIR STATION,EUNT,10,13,S,YU,5436
-2021-09-01,14:41,Wednesday,ROSEDALE STATION,SUUT,3,6,S,YU,5866
-2021-09-01,14:55,Wednesday,KIPLING STATION,TUO,4,8,E,BD,5247
-2021-09-01,15:02,Wednesday,ROSEDALE STATION,SUO,3,6,N,YU,5646
-2021-09-01,15:18,Wednesday,COLLEGE STATION,MUPAA,3,6,N,YU,5651
-2021-09-01,15:40,Wednesday,ROYAL YORK STATION,MUIS,3,7,E,BD,5076
-2021-09-01,16:30,Wednesday,EGLINTON STATION,MUSAN,3,6,N,YU,5976
-2021-09-01,17:16,Wednesday,DAVISVILLE STATION,MUIE,0,0,,YU,0
-2021-09-01,17:19,Wednesday,SHEPPARD STATION,MUPAA,0,0,S,YU,5436
-2021-09-01,17:42,Wednesday,RUNNYMEDE STATION,SUAP,6,10,E,BD,5366
-2021-09-01,17:51,Wednesday,HIGH PARK STATION,SUDP,12,16,E,BD,5149
-2021-09-01,17:55,Wednesday,KENNEDY BD STATION,MUSAN,4,8,W,BD,5065
-2021-09-01,18:52,Wednesday,BLOOR STATION,SUDP,4,10,S,YU,5441
-2021-09-01,18:58,Wednesday,BLOOR STATION,MUIR,3,8,S,YU,5956
-2021-09-01,19:00,Wednesday,BLOOR STATION,SUDP,0,0,S,YU,5776
-2021-09-01,19:00,Wednesday,YONGE BD STATION,SUO,0,0,W,BD,5161
-2021-09-01,19:15,Wednesday,WILSON STATION,MUATC,3,8,S,YU,6081
-2021-09-01,19:35,Wednesday,WARDEN STATION,TUMVS,0,0,E,BD,5154
-2021-09-01,19:48,Wednesday,WELLESLEY STATION,MUIS,0,0,,YU,0
-2021-09-01,19:57,Wednesday,ISLINGTON STATION,SUO,0,0,,BD,0
-2021-09-01,20:04,Wednesday,JANE STATION,MUIS,0,0,,BD,0
-2021-09-01,20:35,Wednesday,MAIN STREET AND UNION,MUO,0,0,,,0
-2021-09-01,20:38,Wednesday,QUEEN STATION,MUIRS,0,0,N,YU,0
-2021-09-01,20:57,Wednesday,QUEEN STATION,MUIS,0,0,,YU,0
-2021-09-01,21:00,Wednesday,NORTH YORK CTR STATION,SUDP,3,8,N,YU,5446
-2021-09-01,21:07,Wednesday,BLOOR STATION,MUIS,0,0,S,YU,0
-2021-09-01,21:31,Wednesday,YORK MILLS STATION,MUPAA,3,8,S,YU,5841
-2021-09-01,21:47,Wednesday,KIPLING STATION,EUNT,4,11,E,BD,5247
-2021-09-01,21:53,Wednesday,EGLINTON WEST STATION,SUDP,0,0,N,YU,5441
-2021-09-01,22:00,Wednesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-09-01,22:14,Wednesday,UNION AND KENNEDY STAT,MUO,0,0,,,0
-2021-09-01,22:52,Wednesday,DUNDAS STATION,MUIS,0,0,,YU,0
-2021-09-01,23:13,Wednesday,KING STATION TO ST GEO,MUO,0,0,,YU,0
-2021-09-01,23:25,Wednesday,ROSEDALE STATION,MUSC,0,0,N,YU,5571
-2021-09-01,23:38,Wednesday,ROSEDALE STATION,MUPAA,0,0,N,YU,5711
-2021-09-01,23:53,Wednesday,JANE STATION,SUUT,67,74,E,BD,5079
-2021-09-01,00:29,Wednesday,KENNEDY BD STATION,MUSAN,9,15,W,BD,5072
-2021-09-01,00:31,Wednesday,MAIN STREET STATION,MUIS,0,0,,BD,0
-2021-09-01,00:52,Wednesday,YORK UNIVERSITY STATIO,SUDP,3,10,N,YU,5841
-2021-09-01,01:21,Wednesday,SUMMERHILL STATION,SUDP,15,22,S,YU,5786
-2021-09-01,01:30,Wednesday,NORTH YORK CTR STATION,SUDP,0,0,N,YU,0
-2021-09-01,18:59,Wednesday,DON MILLS STATION,SUDP,10,15,W,SHP,6176
-2021-09-02,05:53,Thursday,EGLINTON STATION,EUPI,10,15,N,YU,5671
-2021-09-02,09:51,Thursday,SCARBOROUGH CTR STATIO,MRPAA,0,0,N,SRT,3017
-2021-09-02,17:27,Thursday,LAWRENCE EAST STATION,MRUI,0,0,,SRT,0
-2021-09-02,06:11,Thursday,MUSEUM STATION,MUPAA,0,0,N,YU,5786
-2021-09-02,06:33,Thursday,FINCH STATION,EUSC,0,0,S,YU,5726
-2021-09-02,07:19,Thursday,FINCH STATION,TUMVS,3,6,S,YU,5796
-2021-09-02,07:51,Thursday,ROSEDALE STATION,MUSC,0,0,N,YU,5571
-2021-09-02,10:38,Thursday,WILSON CARHOUSE,MUIE,0,0,,YU,0
-2021-09-02,10:51,Thursday,COXWELL STATION,EUTR,4,8,W,BD,5253
-2021-09-02,12:15,Thursday,EGLINTON STATION,MUIS,0,0,,YU,0
-2021-09-02,12:35,Thursday,ROSEDALE STATION,MUSC,0,0,N,YU,5661
-2021-09-02,12:44,Thursday,KIPLING STATION,EUME,4,8,E,BD,5131
-2021-09-02,13:00,Thursday,JANE STATION,MUIRS,0,0,,BD,0
-2021-09-02,13:03,Thursday,SHERBOURNE STATION,MUDD,3,7,W,BD,5198
-2021-09-02,13:17,Thursday,DONLANDS STATION,EUCD,4,8,E,BD,5198
-2021-09-02,14:10,Thursday,BAY STATION,MUIS,0,0,,BD,0
-2021-09-02,14:30,Thursday,YONGE BD STATION,SUO,0,0,W,BD,5123
-2021-09-02,14:30,Thursday,BLOOR STATION,SUO,0,0,N,YU,6106
-2021-09-02,14:44,Thursday,WARDEN STATION,MUIS,0,0,,BD,0
-2021-09-02,14:54,Thursday,HIGH PARK STATION,EULT,4,8,E,BD,5138
-2021-09-02,15:02,Thursday,HIGHWAY 407 STATION,PUMEL,0,0,,YU,0
-2021-09-02,15:21,Thursday,YONGE BD STATION,MUPAA,0,0,E,BD,5271
-2021-09-02,15:46,Thursday,PAPE STATION,SUAE,0,0,,BD,0
-2021-09-02,16:08,Thursday,KIPLING STATION,MUTO,4,8,E,BD,5030
-2021-09-02,16:32,Thursday,EGLINTON STATION,SUDP,3,6,S,YU,5551
-2021-09-02,19:18,Thursday,COLLEGE STATION,SUAP,0,0,,YU,0
-2021-09-02,19:23,Thursday,LANSDOWNE STATION,MUIR,0,0,E,BD,0
-2021-09-02,19:25,Thursday,ST CLAIR WEST STATION,SUAE,0,0,N,YU,5991
-2021-09-02,19:31,Thursday,GLENCAIRN STATION,MUIE,3,8,N,YU,5991
-2021-09-02,19:37,Thursday,ROSEDALE STATION,TUATC,4,7,S,YU,5496
-2021-09-02,19:51,Thursday,PAPE STATION,SUDP,0,0,W,BD,5056
-2021-09-02,19:57,Thursday,DUPONT STATION,PUMEL,0,0,,YU,0
-2021-09-02,20:05,Thursday,SHEPPARD STATION,SUAP,0,0,,YU,0
-2021-09-02,20:07,Thursday,CHESTER STATION,SUDP,4,11,W,BD,5061
-2021-09-02,20:14,Thursday,SPADINA BD STATION,PUMEL,0,0,,BD,0
-2021-09-02,20:16,Thursday,BROADVIEW STATION,TUO,7,14,W,BD,5056
-2021-09-02,20:28,Thursday,MUSEUM STATION,SUDP,0,0,N,YU,5866
-2021-09-02,20:33,Thursday,ROSEDALE STATION,MUSC,3,8,N,YU,5846
-2021-09-02,22:00,Thursday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU / BD,0
-2021-09-02,23:00,Thursday,OSSINGTON STATION,MUIS,0,0,W,BD,0
-2021-09-02,23:06,Thursday,PAPE STATION,MUPAA,0,0,E,BD,5149
-2021-09-02,23:15,Thursday,YONGE/UNIVERSITY/SPADI,MUO,0,0,,YU,0
-2021-09-02,23:59,Thursday,BLOOR STATION,SUDP,0,0,,YU,0
-2021-09-02,00:08,Thursday,BATHURST STATION,SUO,0,0,E,BD,5225
-2021-09-02,00:10,Thursday,BLOOR STATION,MUSAN,7,14,S,YU,5441
-2021-09-02,00:23,Thursday,VAUGHAN MC STATION,MUI,5,12,S,YU,5711
-2021-09-02,01:38,Thursday,WARDEN STATION,MUIS,0,0,W,BD,0
-2021-09-02,05:42,Thursday,DON MILLS STATION,MUSC,9,14,W,SHP,6176
-2021-09-02,14:57,Thursday,DON MILLS STATION,PUMEL,0,0,,SHP,0
-2021-09-03,02:08,Friday,KIPLING STATION,MUIS,0,0,E,BD,1009
-2021-09-03,11:00,Friday,MCCOWAN STATION,PRSO,87,92,S,SRT,3014
-2021-09-03,18:03,Friday,MIDLAND STATION,TRNCA,0,0,,SRT,0
-2021-09-03,06:01,Friday,QUEEN STATION,MUPAA,0,0,S,YU,5786
-2021-09-03,06:23,Friday,UNION STATION,MUIRS,0,0,,YU,0
-2021-09-03,06:36,Friday,ROYAL YORK STATION,SUDP,6,11,W,BD,5065
-2021-09-03,06:56,Friday,KIPLING STATION,MUSAN,5,10,E,BD,5065
-2021-09-03,07:13,Friday,VICTORIA PARK STATION,MUPAA,0,0,W,BD,5294
-2021-09-03,07:17,Friday,BROADVIEW STATION,MUIRS,0,0,E,BD,0
-2021-09-03,07:55,Friday,CHRISTIE STATION,TUMVS,0,0,E,BD,5149
-2021-09-03,07:57,Friday,ROSEDALE STATION,MUSC,3,6,,YU,5846
-2021-09-03,08:19,Friday,DUNDAS WEST STATION,SUAE,0,0,,BD,0
-2021-09-03,08:32,Friday,KENNEDY BD STATION,MUTO,4,8,W,BD,5161
-2021-09-03,09:15,Friday,KIPLING STATION,SUDP,4,8,E,BD,5333
-2021-09-03,10:33,Friday,ROSEDALE STATION,EUDO,3,6,S,YU,6046
-2021-09-03,10:42,Friday,WELLESLEY STATION,SUDP,11,14,S,YU,5976
-2021-09-03,11:08,Friday,WELLESLEY STATION,MUIS,0,0,,YU,0
-2021-09-03,11:50,Friday,COLLEGE STATION,SUUT,3,6,N,YU,5721
-2021-09-03,11:58,Friday,KIPLING STATION,MUTO,3,7,E,BD,5356
-2021-09-03,12:12,Friday,DUNDAS STATION,MUNCA,0,0,,YU,0
-2021-09-03,12:14,Friday,KIPLING STATION,SUDP,3,7,W,BD,5229
-2021-09-03,12:42,Friday,ROYAL YORK STATION,SUDP,0,0,E,BD,5220
-2021-09-03,13:14,Friday,VICTORIA PARK STATION,SUDP,0,0,W,BD,0
-2021-09-03,14:00,Friday,VICTORIA PARK STATION,TUMVS,0,0,E,BD,5007
-2021-09-03,14:04,Friday,WARDEN STATION,MUNCA,0,0,,BD,0
-2021-09-03,14:17,Friday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,0
-2021-09-03,14:18,Friday,BROADVIEW STATION,MUIS,8,12,W,BD,5265
-2021-09-03,16:37,Friday,KENNEDY BD STATION,TUMVS,0,0,E,BD,5366
-2021-09-03,17:47,Friday,SUMMERHILL STATION,MUIR,5,8,N,YU,5456
-2021-09-03,17:57,Friday,ST GEORGE YUS STATION,SUUT,3,6,S,YU,5901
-2021-09-03,18:20,Friday,YORK MILLS STATION,TUSC,0,0,S,YU,5451
-2021-09-03,18:32,Friday,YONGE BD STATION,MUPAA,4,8,W,BD,5020
-2021-09-03,18:52,Friday,JANE STATION,SUO,0,0,,BD,0
-2021-09-03,19:00,Friday,VICTORIA PARK STATION,MUIS,0,0,E,BD,5225
-2021-09-03,19:59,Friday,COLLEGE STATION,MUIR,4,9,S,YU,5476
-2021-09-03,20:22,Friday,BATHURST STATION,SUAP,5,12,W,BD,5187
-2021-09-03,21:06,Friday,VAUGHAN MC STATION,MUNOA,7,14,S,YU,0
-2021-09-03,21:47,Friday,BLOOR STATION,MUPAA,0,0,N,YU,5471
-2021-09-03,22:00,Friday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-09-03,23:14,Friday,LAWRENCE WEST STATION,SUO,6,13,N,YU,5541
-2021-09-03,23:31,Friday,KENNEDY BD STATION,PUMEL,0,0,,BD,0
-2021-09-03,01:11,Friday,YORK MILLS STATION,MUIR,9,18,S,YU,5541
-2021-09-03,01:15,Friday,GREENWOOD STATION,MUIS,0,0,,BD,0
-2021-09-03,01:07,Friday,SHEPPARD-YONGE STATION,EUME,4,9,E,SHP,6146
-2021-09-04,16:20,Saturday,SCARBOROUGH CTR STATIO,SRDP,0,0,,SRT,0
-2021-09-04,05:49,Saturday,YORK MILLS STATION,PUSI,0,0,S,YU,5841
-2021-09-04,06:00,Saturday,KIPLING STATION TO ISL,MUO,0,0,,BD,0
-2021-09-04,06:19,Saturday,YORK MILLS STATION,MUSC,0,0,S,YU,5941
-2021-09-04,06:32,Saturday,YORK MILLS STATION,MUSC,0,0,S,YU,5871
-2021-09-04,07:44,Saturday,YORK MILLS STATION,MUSC,0,0,N,YU,5476
-2021-09-04,07:55,Saturday,COLLEGE STATION,EUDO,0,0,S,YU,5566
-2021-09-04,07:59,Saturday,ISLINGTON STATION,MUIS,0,0,,BD,0
-2021-09-04,09:47,Saturday,EGLINTON STATION,MUNOA,4,8,N,YU,0
-2021-09-04,10:08,Saturday,EGLINTON STATION,PUSO,5,11,N,YU,5671
-2021-09-04,10:57,Saturday,WILSON STATION,EUME,3,7,S,YU,5581
-2021-09-04,11:15,Saturday,OSSINGTON STATION,MUPAA,0,0,E,BD,5111
-2021-09-04,11:35,Saturday,DAVISVILLE STATION,SUO,0,0,N,YU,5596
-2021-09-04,11:46,Saturday,SUMMERHILL STATION,SUEAS,9,13,S,YU,5876
-2021-09-04,13:40,Saturday,COXWELL STATION,MUIRS,0,0,W,BD,0
-2021-09-04,15:07,Saturday,WELLESLEY STATION,SUO,0,0,N,YU,5671
-2021-09-04,15:48,Saturday,VICTORIA PARK STATION,PUMEL,0,0,W,BD,0
-2021-09-04,17:20,Saturday,LAWRENCE WEST STATION,MUPAA,0,0,S,YU,6001
-2021-09-04,18:01,Saturday,VAUGHAN MC STATION,TUNIP,3,8,S,YU,5741
-2021-09-04,18:46,Saturday,ROSEDALE STATION,EUME,8,13,S,YU,6046
-2021-09-04,18:48,Saturday,LAWRENCE WEST STATION,MUIS,0,0,,YU,0
-2021-09-04,19:10,Saturday,VAUGHAN MC STATION,TUNIP,3,8,S,YU,5561
-2021-09-04,19:21,Saturday,YONGE BD STATION,EUNT,3,7,W,BD,5300
-2021-09-04,19:40,Saturday,ISLINGTON STATION,TUSC,0,0,E,BD,5261
-2021-09-04,19:55,Saturday,KING STATION,MUPAA,0,0,N,YU,5561
-2021-09-04,20:36,Saturday,DUNDAS STATION,PUMEL,0,0,,YU,0
-2021-09-04,22:00,Saturday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-09-04,00:10,Saturday,CASTLE FRANK STATION,MUPAA,0,0,E,BD,5129
-2021-09-04,01:28,Saturday,DUNDAS STATION,MUIS,0,0,N,YU,0
-2021-09-04,09:15,Saturday,SHEPPARD-YONGE STATION,TUSC,0,0,W,SHP,6141
-2021-09-05,08:00,Sunday,KIPLING STATION TO ISL,MUO,0,0,,BD,0
-2021-09-05,08:31,Sunday,LAWRENCE EAST STATION,SRDP,0,0,,SRT,0
-2021-09-05,08:05,Sunday,EGLINTON STATION,MUSC,8,0,N,YU,5546
-2021-09-05,08:51,Sunday,MCCOWAN STATION,MRO,10,16,S,SRT,3002
-2021-09-05,10:10,Sunday,MCCOWAN STATION,MRTO,6,12,N,SRT,3025
-2021-09-05,08:45,Sunday,SHEPPARD WEST STATION,EUME,8,14,N,YU,5986
-2021-09-05,15:27,Sunday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-09-05,09:42,Sunday,VAUGHAN MC STATION,EUO,6,12,S,YU,5546
-2021-09-05,10:02,Sunday,KENNEDY BD STATION,PUSTS,5,9,E,BD,5261
-2021-09-05,10:06,Sunday,YORKDALE STATION,PUOPO,0,0,N,YU,6061
-2021-09-05,10:10,Sunday,HIGHWAY 407 STATION,PUOPO,10,16,S,YU,6011
-2021-09-05,10:12,Sunday,KENNEDY BD STATION,PUSTS,8,12,E,BD,5120
-2021-09-05,10:14,Sunday,ST GEORGE YUS STATION,PUOPO,0,0,N,YU,5886
-2021-09-05,10:20,Sunday,SPADINA YUS STATION,PUOPO,6,12,N,YU,6036
-2021-09-05,10:23,Sunday,PIONEER VILLAGE STATIO,PUOPO,6,12,S,YU,6011
-2021-09-05,10:24,Sunday,SPADINA YUS STATION,PUOPO,6,12,N,YU,5886
-2021-09-05,11:21,Sunday,SHERBOURNE STATION,MUPAA,0,0,E,BD,5181
-2021-09-05,12:42,Sunday,DUNDAS WEST STATION,TUMVS,0,0,W,BD,5241
-2021-09-05,12:54,Sunday,HIGHWAY 407 STATION,PUOPO,3,8,S,YU,5961
-2021-09-05,13:24,Sunday,PAPE STATION,SUDP,3,7,W,BD,5265
-2021-09-05,13:52,Sunday,PAPE STATION,SUUT,8,12,E,BD,5341
-2021-09-05,15:02,Sunday,ISLINGTON STATION,MUI,4,8,E,BD,5096
-2021-09-05,15:23,Sunday,EGLINTON WEST STATION,MUATC,5,10,N,YU,5651
-2021-09-05,15:55,Sunday,ROSEDALE STATION,EUME,4,9,S,YU,6046
-2021-09-05,16:02,Sunday,LAWRENCE WEST STATION,MUIR,5,10,N,YU,5776
-2021-09-05,17:02,Sunday,DUFFERIN STATION,MUPAA,0,0,E,BD,5096
-2021-09-05,17:02,Sunday,EGLINTON STATION,PUTDN,5,10,S,YU,5871
-2021-09-05,17:10,Sunday,FINCH STATION,MUSC,0,0,S,YU,5651
-2021-09-05,17:55,Sunday,WARDEN STATION,MUIS,0,0,,BD,0
-2021-09-05,18:15,Sunday,CASTLE FRANK STATION,SUDP,18,22,W,BD,5075
-2021-09-05,18:40,Sunday,ISLINGTON STATION,MUO,4,8,E,BD,5025
-2021-09-05,21:02,Sunday,ST GEORGE YUS STATION,SUUT,7,14,N,YU,5636
-2021-09-05,21:20,Sunday,JANE STATION,MUIS,0,0,,BD,0
-2021-09-05,21:31,Sunday,WARDEN STATION,PUSTS,0,0,E,BD,5300
-2021-09-05,22:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-09-05,22:33,Sunday,YORK UNIVERSITY STATIO,PUOPO,4,11,N,YU,5666
-2021-09-05,22:42,Sunday,YORK UNIVERSITY STATIO,PUOPO,0,0,N,YU,5941
-2021-09-05,23:06,Sunday,WARDEN STATION,PUSTS,7,14,E,BD,5366
-2021-09-05,00:30,Sunday,VAUGHAN MC STATION,PUOPO,0,0,S,YU,5981
-2021-09-05,00:35,Sunday,HIGHWAY 407 STATION,PUOPO,6,13,S,YU,5981
-2021-09-05,00:37,Sunday,BLOOR STATION,SUDP,0,0,N,YU,6136
-2021-09-05,00:42,Sunday,PIONEER VILLAGE STATIO,PUOPO,7,14,S,YU,5981
-2021-09-05,00:59,Sunday,HIGHWAY 407 STATION,PUOPO,5,12,S,YU,5856
-2021-09-05,18:18,Sunday,BESSARION STATION,MUIS,0,0,,SHP,0
-2021-09-06,11:02,Monday,KENNEDY SRT STATION,ERTC,7,12,S,SRT,3016
-2021-09-06,05:50,Monday,KIPLING STATION,MUO,5,0,E,BD,5076
-2021-09-06,06:56,Monday,EGLINTON STATION,PUSCR,4,10,N,YU,5471
-2021-09-06,07:00,Monday,WILSON STATION,MUNOA,4,10,S,YU,5761
-2021-09-06,07:29,Monday,NORTH YORK CTR STATION,MUIS,0,0,N,YU,0
-2021-09-06,09:11,Monday,ISLINGTON STATION,EUSC,3,7,E,BD,5261
-2021-09-06,10:58,Monday,ISLINGTON STATION,EUSC,0,0,E,BD,5261
-2021-09-06,11:21,Monday,KIPLING STATION,MUIS,0,0,,BD,8038
-2021-09-06,11:37,Monday,PAPE STATION,MUPAA,3,8,W,BD,5335
-2021-09-06,12:16,Monday,COXWELL STATION,SUDP,6,11,E,BD,5079
-2021-09-06,12:20,Monday,PIONEER VILLAGE STATIO,MUIE,0,0,,YU,0
-2021-09-06,12:22,Monday,BROADVIEW STATION,SUDP,3,8,W,BD,5250
-2021-09-06,14:46,Monday,WELLESLEY STATION,MUNCA,0,0,,YU,0
-2021-09-06,15:22,Monday,VICTORIA PARK STATION,MUIS,0,0,,BD,0
-2021-09-06,15:41,Monday,KENNEDY BD STATION,SUAE,0,0,,BD,0
-2021-09-06,15:53,Monday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-09-06,15:54,Monday,ROSEDALE STATION,EUME,7,12,S,YU,6046
-2021-09-06,16:14,Monday,SPADINA YUS STATION,MUIS,0,0,S,YU,5591
-2021-09-06,17:21,Monday,SPADINA BD STATION,EUSC,0,0,E,BD,5366
-2021-09-06,17:53,Monday,GREENWOOD STATION,MUSAN,5,10,E,BD,5000
-2021-09-06,17:55,Monday,DAVISVILLE STATION,SUDP,0,0,N,YU,5761
-2021-09-06,18:19,Monday,YORKDALE STATION,SUDP,0,0,,YU,0
-2021-09-06,18:46,Monday,QUEEN STATION,MUIS,0,0,,YU,0
-2021-09-06,21:26,Monday,BLOOR STATION,MUIRS,0,0,S,YU,0
-2021-09-06,21:40,Monday,ST ANDREW STATION,MUIRS,0,0,,YU,0
-2021-09-06,22:00,Monday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-09-06,22:36,Monday,YORK MILLS STATION,TUSC,0,0,S,YU,5876
-2021-09-06,22:52,Monday,BLOOR STATION,MUTO,4,7,N,YU,5881
-2021-09-06,23:40,Monday,FINCH STATION,MUESA,7,14,S,YU,5996
-2021-09-06,13:01,Monday,BESSARION STATION,MUNCA,0,0,,SHP,0
-2021-09-07,07:40,Tuesday,MIDLAND STATION,SRO,0,0,,SRT,0
-2021-09-07,05:14,Tuesday,WILSON YARD,MUNOA,0,0,,YU,0
-2021-09-07,09:45,Tuesday,KENNEDY SRT STATION,SRDP,14,21,S,SRT,3004
-2021-09-07,05:16,Tuesday,WILSON YARD,MUNOA,0,0,,YU,0
-2021-09-07,05:55,Tuesday,CHRISTIE STATION,SUO,0,0,,BD,0
-2021-09-07,14:24,Tuesday,SCARBOROUGH CTR STATIO,TRO,0,0,S,SRT,3004
-2021-09-07,17:23,Tuesday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-09-07,06:14,Tuesday,WILSON YARD,MUNOA,0,0,S,YU,0
-2021-09-07,07:43,Tuesday,KEELE STATION,PUMEL,0,0,,BD,0
-2021-09-07,08:56,Tuesday,ROSEDALE STATION,MUATC,6,9,S,YU,5496
-2021-09-07,09:14,Tuesday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,0
-2021-09-07,09:45,Tuesday,KENNEDY BD STATION,SUO,14,17,E,BD,5168
-2021-09-07,09:56,Tuesday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,5496
-2021-09-07,10:12,Tuesday,VAUGHAN MC STATION,SUDP,0,0,,YU,0
-2021-09-07,10:15,Tuesday,BROADVIEW STATION,MUPAA,3,6,W,BD,5361
-2021-09-07,11:23,Tuesday,SHEPPARD STATION,MUIRS,0,0,,YU,0
-2021-09-07,12:07,Tuesday,BROADVIEW STATION,MUPAA,3,6,W,BD,5101
-2021-09-07,12:48,Tuesday,PAPE STATION,MUPAA,0,0,E,BD,5259
-2021-09-07,12:48,Tuesday,MUSEUM STATION,MUPAA,0,0,S,YU,5881
-2021-09-07,12:50,Tuesday,MUSEUM STATION,SUDP,11,14,N,YU,5651
-2021-09-07,12:57,Tuesday,MUSEUM STATION,SUDP,3,6,S,YU,5761
-2021-09-07,13:43,Tuesday,LAWRENCE STATION,EUSC,0,0,S,YU,5721
-2021-09-07,13:53,Tuesday,ST CLAIR WEST STATION,SUG,4,7,N,YU,5391
-2021-09-07,13:53,Tuesday,GREENWOOD STATION,SUDP,3,7,W,BD,5269
-2021-09-07,14:02,Tuesday,EGLINTON WEST STATION,SUG,3,6,N,YU,5391
-2021-09-07,14:06,Tuesday,ROSEDALE STATION,SUUT,12,15,N,YU,5906
-2021-09-07,14:14,Tuesday,DUPONT STATION,MUIR,0,0,S,YU,6026
-2021-09-07,14:25,Tuesday,FINCH STATION,EUSC,0,0,S,YU,5841
-2021-09-07,14:27,Tuesday,FINCH STATION,MUIR,0,0,N,YU,6006
-2021-09-07,14:34,Tuesday,YORK MILLS STATION,MUDD,3,6,N,YU,5586
-2021-09-07,14:53,Tuesday,BLOOR STATION,MUDD,3,6,S,YU,5701
-2021-09-07,14:57,Tuesday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,5491
-2021-09-07,15:12,Tuesday,EGLINTON STATION,MUPAA,0,0,S,YU,5651
-2021-09-07,15:35,Tuesday,ST CLAIR STATION,MUPAA,3,6,S,YU,6011
-2021-09-07,15:47,Tuesday,RUNNYMEDE STATION,SUROB,6,9,W,BD,5229
-2021-09-07,16:45,Tuesday,FINCH STATION,MUPAA,0,0,S,YU,5911
-2021-09-07,17:02,Tuesday,VAUGHAN MC STATION,TUNIP,3,6,S,YU,5636
-2021-09-07,17:17,Tuesday,WARDEN STATION,MUIR,3,6,E,BD,5210
-2021-09-07,17:39,Tuesday,SPADINA BD STATION,SUDP,4,8,E,BD,5135
-2021-09-07,17:43,Tuesday,SPADINA YUS STATION,SUO,0,0,N,YU,5701
-2021-09-07,18:07,Tuesday,LAWRENCE STATION,EUSC,0,0,N,YU,6036
-2021-09-07,18:20,Tuesday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,5471
-2021-09-07,18:25,Tuesday,ISLINGTON STATION,EUDO,4,8,W,BD,5213
-2021-09-07,19:04,Tuesday,LAWRENCE STATION,SUO,0,0,N,YU,5916
-2021-09-07,20:36,Tuesday,OLD MILL STATION,SUAE,0,0,,BD,0
-2021-09-07,20:56,Tuesday,WARDEN STATION,SUDP,6,12,E,BD,5019
-2021-09-07,21:15,Tuesday,UNION STATION,PUMST,0,0,,YU,0
-2021-09-07,22:00,Tuesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-09-07,22:21,Tuesday,BLOOR STATION,MUIRS,0,0,S,YU,0
-2021-09-07,23:00,Tuesday,SHEPPARD WEST TO WILSO,MUO,0,0,,YU,0
-2021-09-07,00:01,Tuesday,COXWELL STATION,MUIS,0,0,,BD,0
-2021-09-07,00:04,Tuesday,KEELE STATION,SUDP,0,0,,BD,0
-2021-09-07,00:09,Tuesday,ROSEDALE STATION,MUSC,0,0,N,YU,5661
-2021-09-07,00:22,Tuesday,PAPE STATION,MUPAA,0,0,W,BD,5022
-2021-09-07,00:23,Tuesday,LAWRENCE STATION,SUDP,9,14,N,YU,5426
-2021-09-07,01:40,Tuesday,KENNEDY BD STATION,MUI,0,0,W,BD,5131
-2021-09-07,01:42,Tuesday,KING STATION,MUIS,0,0,N,YU,0
-2021-09-07,13:41,Tuesday,SHEPPARD-YONGE STATION,TUSC,0,0,E,SHP,6171
-2021-09-08,07:03,Wednesday,KENNEDY BD STATION,EUBO,3,6,W,BD,5331
-2021-09-08,07:07,Wednesday,KENNEDY SRT STATION,MRD,5,12,N,SRT,3011
-2021-09-08,14:22,Wednesday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-09-08,08:25,Wednesday,ST ANDREW STATION,SUAP,4,7,S,YU,5606
-2021-09-08,19:48,Wednesday,MCCOWAN STATION,MRUI,0,0,,SRT,0
-2021-09-08,08:47,Wednesday,ST CLAIR WEST STATION,MUIS,0,0,,YU,0
-2021-09-08,08:54,Wednesday,DUNDAS STATION,SUUT,12,15,N,YU,6021
-2021-09-08,09:01,Wednesday,MUSEUM STATION,PUMEL,0,0,,YU,0
-2021-09-08,09:05,Wednesday,KIPLING STATION,TUMVS,3,6,W,BD,5127
-2021-09-08,09:27,Wednesday,COLLEGE STATION,MUIRS,0,0,,YU,0
-2021-09-08,09:30,Wednesday,DUNDAS STATION,MUIS,0,0,S,YU,0
-2021-09-08,10:50,Wednesday,BATHURST STATION,PUMEL,0,0,E,BD,0
-2021-09-08,12:16,Wednesday,BLOOR STATION,MUPAA,0,0,N,YU,5811
-2021-09-08,12:31,Wednesday,COXWELL STATION,MUPAA,0,0,E,BD,5348
-2021-09-08,13:22,Wednesday,CASTLE FRANK STATION,EUDO,6,9,W,BD,5174
-2021-09-08,13:22,Wednesday,SHEPPARD STATION,EUDO,0,0,N,YU,5991
-2021-09-08,14:47,Wednesday,ROSEDALE STATION,MUATC,3,6,S,YU,5601
-2021-09-08,17:10,Wednesday,COLLEGE STATION,MUPAA,0,0,S,YU,5031
-2021-09-08,17:43,Wednesday,WARDEN STATION,MUIS,0,0,,BD,0
-2021-09-08,18:30,Wednesday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-09-08,18:52,Wednesday,MAIN STREET STATION,PUMEL,0,0,,BD,0
-2021-09-08,18:58,Wednesday,VAUGHAN MC STATION,TUNIP,3,6,S,YU,5721
-2021-09-08,19:09,Wednesday,ROYAL YORK STATION,MUSC,0,0,E,BD,5218
-2021-09-08,19:59,Wednesday,DAVISVILLE STATION,SUDP,3,7,N,YU,6021
-2021-09-08,20:29,Wednesday,ST CLAIR STATION,EUBO,3,6,N,YU,5971
-2021-09-08,20:30,Wednesday,VAUGHAN MC STATION,TUNIP,6,9,S,YU,5991
-2021-09-08,20:32,Wednesday,BROADVIEW STATION,MUPAA,0,0,W,BD,5190
-2021-09-08,20:59,Wednesday,OSGOODE STATION,MUATC,3,8,S,YU,5996
-2021-09-08,21:27,Wednesday,PAPE STATION,MUPAA,3,9,E,BD,5164
-2021-09-08,22:00,Wednesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-09-08,23:00,Wednesday,SHEPPARD WEST TO WILSO,MUO,0,0,,YUS,0
-2021-09-08,23:20,Wednesday,BROADVIEW STATION,SUO,0,0,W,BD,5154
-2021-09-08,23:26,Wednesday,BROADVIEW STATION,MUPAA,0,0,W,BD,5046
-2021-09-08,23:58,Wednesday,SHERBOURNE STATION,SUDP,0,0,E,BD,5349
-2021-09-08,00:08,Wednesday,GREENWOOD STATION,MUTO,6,12,E,BD,5349
-2021-09-08,00:10,Wednesday,PAPE STATION,SUDP,0,0,E,BD,5136
-2021-09-08,01:29,Wednesday,FINCH STATION,MUIS,0,0,,YU,0
-2021-09-08,01:59,Wednesday,DUNDAS STATION,MUIE,0,0,N,YU,0
-2021-09-09,05:57,Thursday,OSSINGTON STATION,PUSTS,3,0,E,BD,5096
-2021-09-09,06:07,Thursday,SHEPPARD WEST STATION,MUATC,8,12,S,YU,5471
-2021-09-09,06:08,Thursday,CHRISTIE STATION,EUYRD,3,0,W,BD,5009
-2021-09-09,06:11,Thursday,YONGE BD STATION,EUYRD,3,0,W,BD,5358
-2021-09-09,06:15,Thursday,ROSEDALE STATION,MUATC,5,8,S,YU,5671
-2021-09-09,06:48,Thursday,DUNDAS WEST STATION,SUDP,0,0,,BD,0
-2021-09-09,07:13,Thursday,FINCH STATION,MUO,3,6,N,YU,5681
-2021-09-09,08:36,Thursday,FINCH STATION,MUSC,0,0,S,YU,5761
-2021-09-09,08:54,Thursday,NORTH YORK CTR STATION,TUSC,0,0,N,YU,5646
-2021-09-09,09:00,Thursday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,0
-2021-09-09,09:11,Thursday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,5606
-2021-09-09,09:40,Thursday,KIPLING STATION,MUSAN,3,6,E,BD,5116
-2021-09-09,10:10,Thursday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,5441
-2021-09-09,10:44,Thursday,ST PATRICK STATION,PUMEL,0,0,,YU,0
-2021-09-09,12:17,Thursday,QUEEN STATION,SUDP,5,8,S,YU,5976
-2021-09-09,12:19,Thursday,YONGE AND STEELES,MUIS,0,0,,YU,0
-2021-09-09,12:23,Thursday,DUFFERIN STATION,SUAE,0,0,,BD,0
-2021-09-09,12:27,Thursday,YONGE BD STATION,MUPAA,0,0,W,BD,5106
-2021-09-09,12:47,Thursday,SHERBOURNE STATION,MUPAA,0,0,E,BD,5156
-2021-09-09,12:54,Thursday,MAIN STREET STATION,SUDP,0,0,,BD,0
-2021-09-09,13:07,Thursday,PAPE STATION,MUPAA,0,0,E,BD,5123
-2021-09-09,13:21,Thursday,BLOOR STATION,MUIRS,0,0,,YU,0
-2021-09-09,13:23,Thursday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,0
-2021-09-09,14:24,Thursday,DUNDAS WEST STATION,SUDP,0,0,,BD,0
-2021-09-09,14:57,Thursday,VAUGHAN MC STATION,MUNOA,3,6,N,YU,0
-2021-09-09,15:35,Thursday,WELLESLEY STATION,MUIS,0,0,,YU,0
-2021-09-09,15:39,Thursday,GREENWOOD STATION,SUDP,3,6,E,BD,5004
-2021-09-09,15:55,Thursday,FINCH WEST STATION,SUDP,0,0,,YU,0
-2021-09-09,16:00,Thursday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,0
-2021-09-09,16:20,Thursday,ST GEORGE BD STATION,MUDD,0,0,E,BD,5123
-2021-09-09,16:25,Thursday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,0
-2021-09-09,16:45,Thursday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,5881
-2021-09-09,16:56,Thursday,RUNNYMEDE STATION,SUPOL,5,8,W,BD,5034
-2021-09-09,17:17,Thursday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,6071
-2021-09-09,17:38,Thursday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,5631
-2021-09-09,17:45,Thursday,GREENWOOD STATION,SUDP,4,7,E,BD,5034
-2021-09-09,17:47,Thursday,ST GEORGE YUS STATION,MUIRS,0,0,,YU,0
-2021-09-09,18:49,Thursday,QUEEN STATION,SUDP,3,6,N,YU,5811
-2021-09-09,19:05,Thursday,YORK MILLS STATION,SUAP,0,0,,YU,0
-2021-09-09,19:28,Thursday,BROADVIEW STATION,SUDP,0,0,E,BD,5000
-2021-09-09,19:30,Thursday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,0
-2021-09-09,19:38,Thursday,PAPE STATION,SUDP,3,6,E,BD,5178
-2021-09-09,20:08,Thursday,CASTLE FRANK STATION,MUI,12,18,E,BD,5022
-2021-09-09,20:57,Thursday,VICTORIA PARK STATION,SUO,0,0,,BD,0
-2021-09-09,21:07,Thursday,QUEEN STATION,MUIS,0,0,N,YU,0
-2021-09-09,21:22,Thursday,VAUGHAN MC STATION,MUNOA,5,10,S,YU,0
-2021-09-09,21:30,Thursday,VAUGHAN MC STATION,MUNOA,5,10,,YU,0
-2021-09-09,21:40,Thursday,ROSEDALE STATION,SUDP,11,16,S,YU,5961
-2021-09-09,22:00,Thursday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-09-09,22:03,Thursday,GREENWOOD STATION,SUDP,0,0,W,BD,5221
-2021-09-09,22:12,Thursday,SHERBOURNE STATION,SUAP,7,13,W,BD,5221
-2021-09-09,22:19,Thursday,SPADINA YUS STATION,MUIS,0,0,,YU,0
-2021-09-09,22:25,Thursday,VAUGHAN MC STATION,SUDP,8,13,S,YU,5471
-2021-09-09,22:33,Thursday,DOWNSVIEW PARK STATION,MUATC,5,10,N,YU,5961
-2021-09-09,23:00,Thursday,VAUGHAN MC STATION,MUATC,5,10,S,YU,6011
-2021-09-09,23:00,Thursday,SHEPPARD WEST TO WILSO,MUO,0,0,,YU,0
-2021-09-09,23:27,Thursday,YORK MILLS STATION,SUDP,4,9,S,YU,5406
-2021-09-09,00:57,Thursday,VAUGHAN MC STATION,MUATC,5,10,S,YU,5711
-2021-09-09,01:39,Thursday,YORK MILLS STATION,MUTD,0,0,S,YU,5911
-2021-09-09,16:28,Thursday,BAYVIEW STATION,TUO,5,10,E,SHP,6171
-2021-09-09,20:27,Thursday,DON MILLS STATION,MUTO,12,17,W,SHP,6166
-2021-09-10,05:07,Friday,GREENWOOD STATION,PUTOE,0,0,E,BD,0
-2021-09-10,06:58,Friday,KENNEDY SRT STATION,SRO,24,31,S,SRT,3000
-2021-09-10,05:41,Friday,JANE STATION,PUTIJ,0,0,E,BD,5261
-2021-09-10,21:23,Friday,SCARBOROUGH CTR STATIO,MRO,0,0,,SRT,0
-2021-09-10,05:43,Friday,GREENWOOD YARD,MUSC,0,0,E,BD,5148
-2021-09-10,06:58,Friday,KENNEDY BD STATION,SUO,21,24,W,BD,5110
-2021-09-10,07:09,Friday,FINCH STATION,EUPI,3,6,N,YU,5551
-2021-09-10,07:15,Friday,WOODBINE STATION,SUDP,13,26,,BD,8759
-2021-09-10,08:08,Friday,FINCH STATION,MUSC,3,6,S,YU,5881
-2021-09-10,08:34,Friday,VAUGHAN MC STATION,EUTRD,3,6,S,YU,5561
-2021-09-10,08:44,Friday,ST CLAIR WEST STATION,SUEAS,15,18,N,YU,5941
-2021-09-10,08:48,Friday,NORTH YORK CTR STATION,SUDP,0,0,,YU,0
-2021-09-10,09:10,Friday,YONGE UNIVERSITY LINE,MUATC,5,8,,YU,0
-2021-09-10,09:21,Friday,NORTH YORK CTR STATION,MUSC,0,0,S,YU,5921
-2021-09-10,10:07,Friday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,0
-2021-09-10,10:19,Friday,ST GEORGE YUS STATION,MUIS,0,0,,YU,0
-2021-09-10,12:17,Friday,FINCH TO ROSEDALE,MUO,12,15,N,YU,5586
-2021-09-10,14:09,Friday,WILSON STATION,TUNOA,3,6,N,YU,0
-2021-09-10,14:32,Friday,WILSON STATION,MUATC,4,7,S,YU,5461
-2021-09-10,14:41,Friday,COXWELL STATION,MUPAA,0,0,E,BD,5143
-2021-09-10,14:55,Friday,BROADVIEW STATION,SUDP,0,0,W,BD,5009
-2021-09-10,14:59,Friday,VAUGHAN MC STATION,MUATC,3,6,S,YU,6101
-2021-09-10,15:10,Friday,YONGE BD STATION,SUDP,0,0,E,BD,5247
-2021-09-10,15:17,Friday,SHERBOURNE STATION,SUAP,7,10,W,BD,5125
-2021-09-10,15:29,Friday,FINCH WEST TO WILSON,MUATC,9,12,S,YU,5566
-2021-09-10,15:46,Friday,BLOOR STATION,MUIS,0,0,S,YU,0
-2021-09-10,15:56,Friday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,6026
-2021-09-10,16:40,Friday,WILSON STATION,MUNOA,3,6,N,YU,0
-2021-09-10,16:50,Friday,BLOOR STATION,MUIS,0,0,N,YU,0
-2021-09-10,17:04,Friday,DAVISVILLE STATION,TUNOA,3,6,S,YU,0
-2021-09-10,17:14,Friday,WILSON STATION,TUNOA,3,6,E,YU,0
-2021-09-10,17:29,Friday,WILSON STATION,TUNOA,3,6,N,YU,0
-2021-09-10,19:21,Friday,OLD MILL STATION,TUMVS,0,0,E,BD,5007
-2021-09-10,19:32,Friday,OLD MILL STATION,TUMVS,0,0,E,BD,5213
-2021-09-10,20:34,Friday,KING STATION,PUMEL,0,0,,YU,0
-2021-09-10,20:35,Friday,WARDEN TO KENNEDY,MUO,13,19,E,BD,5213
-2021-09-10,20:42,Friday,KENNEDY BD STATION,MUO,8,16,E,BD,0
-2021-09-10,22:00,Friday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-09-10,22:02,Friday,WELLESLEY STATION,SUAE,0,0,,YU,0
-2021-09-10,22:08,Friday,WELLESLEY STATION,SUUT,8,13,S,YU,5781
-2021-09-10,22:29,Friday,GREENWOOD YARD,SUG,0,0,,BD,0
-2021-09-10,22:31,Friday,COXWELL STATION,MUIS,0,0,,BD,0
-2021-09-10,22:32,Friday,PIONEER VILLAGE STATIO,MUATC,0,0,N,YU,5896
-2021-09-10,22:40,Friday,FINCH WEST STATION,MUATC,8,13,N,YU,5876
-2021-09-10,00:07,Friday,JANE STATION,TUO,5,11,E,BD,5265
-2021-09-10,00:36,Friday,DUNDAS STATION,SUUT,3,8,N,YU,5876
-2021-09-10,00:56,Friday,WARDEN STATION,MUIS,0,0,,BD,0
-2021-09-11,06:00,Saturday,TORONTO TRANSIT COMMIS,MRO,0,0,,SRT,0
-2021-09-11,06:00,Saturday,TORONTO TRANSIT COMMIS,MUO,0,0,,YU/BD,0
-2021-09-11,06:00,Saturday,TORONTO TRANSIT COMMIS,MRO,0,0,,SRT,0
-2021-09-11,06:00,Saturday,TORONTO TRANSIT COMMIS,MUO,0,0,,YU/BD,0
-2021-09-11,06:08,Saturday,SHEPPARD STATION,MUIS,0,0,,YU,0
-2021-09-11,07:01,Saturday,COLLEGE STATION,MUIS,0,0,,YU,0
-2021-09-11,09:52,Saturday,ROYAL YORK STATION,MUSC,0,0,W,BD,5106
-2021-09-11,11:37,Saturday,CHRISTIE STATION,MUD,6,10,W,BD,5300
-2021-09-11,12:22,Saturday,LAWRENCE STATION,SUAP,0,0,S,YU,5921
-2021-09-11,12:32,Saturday,YORK MILLS STATION,TUSC,0,0,S,YU,5886
-2021-09-11,12:44,Saturday,EGLINTON STATION,PUTTC,10,14,N,YU,5426
-2021-09-11,13:27,Saturday,YORK MILLS STATION,PUTTP,10,14,S,YU,5761
-2021-09-11,13:57,Saturday,KENNEDY BD STATION,PUMEL,0,0,,BD,0
-2021-09-11,14:50,Saturday,LANSDOWNE STATION,SUDP,4,8,E,BD,5202
-2021-09-11,15:34,Saturday,KIPLING STATION,TUMVS,6,10,E,BD,5164
-2021-09-11,15:38,Saturday,VAUGHAN MC STATION,TUNIP,5,9,S,YU,6011
-2021-09-11,15:56,Saturday,UNION STATION,MUPAA,0,0,N,YU,6091
-2021-09-11,16:15,Saturday,YORK MILLS STATION,SUDP,5,9,S,YU,5816
-2021-09-11,16:35,Saturday,PAPE STATION,MUIR,8,12,E,BD,5161
-2021-09-11,16:38,Saturday,KENNEDY BD STATION,SUDP,0,0,,BD,0
-2021-09-11,17:17,Saturday,DUNDAS STATION,MUIS,0,0,S,YU,5906
-2021-09-11,17:23,Saturday,ST GEORGE YUS STATION,MUIS,0,0,,YU,0
-2021-09-11,17:46,Saturday,DUNDAS WEST STATION,MUIS,0,0,,BD,0
-2021-09-11,18:29,Saturday,DOWNSVIEW PARK STATION,SUDP,3,8,N,YU,5591
-2021-09-11,18:38,Saturday,COLLEGE STATION,MUIR,5,8,N,YU,5446
-2021-09-11,18:46,Saturday,VAUGHAN MC STATION,MUNOA,5,10,S,YU,0
-2021-09-11,18:55,Saturday,EGLINTON STATION,EUSC,0,0,S,YU,5506
-2021-09-11,19:18,Saturday,VAUGHAN MC STATION,TUNOA,5,10,S,YU,0
-2021-09-11,19:29,Saturday,DUNDAS STATION,SUDP,0,0,N,YU,0
-2021-09-11,19:38,Saturday,DONLANDS STATION,MUIS,0,0,W,BD,0
-2021-09-11,21:01,Saturday,KENNEDY BD STATION,EULV,5,12,W,BD,5110
-2021-09-11,21:07,Saturday,QUEEN'S PARK STATION,SUDP,0,0,S,YU,5661
-2021-09-11,21:28,Saturday,PAPE STATION,PUMEL,0,0,,BD,0
-2021-09-11,22:00,Saturday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-09-11,22:09,Saturday,WILSON STATION,MUIRS,0,0,S,YU,5571
-2021-09-11,23:00,Saturday,KIPLING STATION,MUPAA,0,0,E,BD,5049
-2021-09-11,23:15,Saturday,YORK UNIVERSITY STATIO,EUBK,7,14,S,YU,6126
-2021-09-11,23:37,Saturday,PAPE STATION,MUIS,0,0,E,BD,5189
-2021-09-11,00:35,Saturday,WILSON STATION,SUDP,0,0,N,YU,5936
-2021-09-11,01:20,Saturday,BLOOR STATION,MUIS,0,0,S,YU,0
-2021-09-11,01:28,Saturday,LAWRENCE STATION,SUEAS,9,16,N,YU,5571
-2021-09-11,01:34,Saturday,BAY STATION,MUIRS,0,0,,BD,0
-2021-09-11,06:00,Saturday,TORONTO TRANSIT COMMIS,MUO,0,0,,SHP,0
-2021-09-11,06:00,Saturday,TORONTO TRANSIT COMMIS,MUO,0,0,,SHP,0
-2021-09-11,10:00,Saturday,SHEPPARD-YONGE STATION,TUSC,0,0,E,SHP,6171
-2021-09-11,22:21,Saturday,SHEPPARD-YONGE STATION,EUOE,5,10,E,SHP,6146
-2021-09-12,08:00,Sunday,KIPLING STATION,MUO,9,0,E,BD,5049
-2021-09-12,08:27,Sunday,SHEPPARD WEST STATION,PUOPO,8,14,N,YU,5916
-2021-09-12,08:49,Sunday,DUPONT STATION,PUOPO,6,12,N,YU,5926
-2021-09-12,09:17,Sunday,ST CLAIR WEST STATION,PUOPO,6,12,S,YU,5911
-2021-09-12,09:28,Sunday,YORK MILLS STATION,TUSC,0,0,S,YU,5766
-2021-09-12,10:26,Sunday,ST ANDREW STATION,EUDO,6,12,N,YU,5726
-2021-09-12,10:58,Sunday,HIGHWAY 407 STATION,PUOPO,0,0,S,YU,5966
-2021-09-12,11:13,Sunday,EGLINTON WEST STATION,MUATC,10,16,N,YU,6091
-2021-09-12,11:14,Sunday,KENNEDY BD STATION,MUTO,3,8,W,BD,5123
-2021-09-12,11:49,Sunday,YORK UNIVERSITY STATIO,PUOPO,6,12,S,YU,6096
-2021-09-12,12:30,Sunday,HIGHWAY 407 STATION,PUOPO,0,0,S,YU,5551
-2021-09-12,13:32,Sunday,HIGHWAY 407 STATION,PUOPO,0,0,S,YU,5966
-2021-09-12,14:22,Sunday,ST GEORGE YUS STATION,PUOPO,5,10,N,YU,5556
-2021-09-12,14:30,Sunday,DUPONT STATION,PUOPO,5,10,N,YU,5556
-2021-09-12,14:51,Sunday,COLLEGE STATION,MUIS,0,0,N,YU,0
-2021-09-12,15:43,Sunday,GLENCAIRN STATION,PUOPO,5,10,N,YU,5496
-2021-09-12,15:50,Sunday,MUSEUM STATION,EUNT,5,10,N,YU,5896
-2021-09-12,16:36,Sunday,DAVISVILLE YARD,SUDP,0,0,,YU,0
-2021-09-12,16:37,Sunday,ST CLAIR STATION,TUOS,5,10,S,YU,5741
-2021-09-12,17:07,Sunday,HIGHWAY 407 STATION,PUOPO,0,0,S,YU,5426
-2021-09-12,17:13,Sunday,ST CLAIR WEST STATION,PUOPO,6,11,N,YU,5591
-2021-09-12,17:22,Sunday,KENNEDY BD STATION,MUTO,5,10,W,BD,5189
-2021-09-12,17:22,Sunday,EGLINTON WEST STATION,PUOPO,5,10,N,YU,5591
-2021-09-12,17:57,Sunday,HIGHWAY 407 STATION,PUOPO,0,0,S,YU,6131
-2021-09-12,18:13,Sunday,WILSON STATION,PUOPO,5,10,S,YU,5676
-2021-09-12,18:18,Sunday,YORKDALE STATION,PUOPO,5,10,S,YU,5676
-2021-09-12,18:28,Sunday,HIGHWAY 407 STATION,PUOPO,0,0,N,YU,5566
-2021-09-12,18:30,Sunday,HIGHWAY 407 STATION,PUOPO,3,8,S,YU,5966
-2021-09-12,18:39,Sunday,ROYAL YORK STATION,EUSC,0,0,W,BD,5106
-2021-09-12,18:44,Sunday,LAWRENCE STATION,SUAP,0,0,S,YU,5976
-2021-09-12,18:55,Sunday,HIGH PARK STATION,SUDP,0,0,E,BD,5367
-2021-09-12,20:34,Sunday,SPADINA YUS STATION,PUOPO,0,0,N,YU,5711
-2021-09-12,20:38,Sunday,DUPONT STATION,PUOPO,7,14,N,YU,5711
-2021-09-12,20:50,Sunday,SHERBOURNE STATION,SUDP,0,0,,BD,0
-2021-09-12,21:25,Sunday,PIONEER VILLAGE STATIO,PUOPO,5,12,S,YU,5701
-2021-09-12,21:33,Sunday,PIONEER VILLAGE STATIO,PUOPO,0,0,S,YU,5796
-2021-09-12,21:38,Sunday,PIONEER VILLAGE STATIO,PUOPO,0,0,S,YU,5631
-2021-09-12,21:41,Sunday,ST CLAIR WEST STATION,PUOPO,0,0,S,YU,5781
-2021-09-12,21:46,Sunday,PIONEER VILLAGE STATIO,PUOPO,0,0,S,YU,5891
-2021-09-12,21:54,Sunday,PIONEER VILLAGE STATIO,PUOPO,0,0,S,YU,6086
-2021-09-12,21:59,Sunday,PIONEER VILLAGE STATIO,PUOPO,0,0,S,YU,5661
-2021-09-12,22:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-09-12,22:07,Sunday,PIONEER VILLAGE STATIO,PUOPO,0,0,S,YU,5626
-2021-09-12,22:08,Sunday,EGLINTON STATION,SUDP,3,10,S,YU,5766
-2021-09-12,22:23,Sunday,DUPONT STATION,MUNCA,0,0,,YU,0
-2021-09-12,22:28,Sunday,VICTORIA PARK STATION,MUIS,0,0,W,BD,5138
-2021-09-12,22:29,Sunday,GREENWOOD STATION,SUO,0,0,W,BD,5138
-2021-09-12,22:34,Sunday,DUNDAS WEST STATION,MUIS,0,0,E,BD,0
-2021-09-12,22:45,Sunday,KENNEDY BD STATION,MUSAN,3,10,W,BD,5127
-2021-09-12,23:26,Sunday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-09-12,23:42,Sunday,HIGHWAY 407 STATION,PUOPO,8,13,S,YU,5966
-2021-09-12,00:08,Sunday,WELLESLEY STATION,SUDP,0,0,N,YU,5856
-2021-09-12,00:42,Sunday,NORTH YORK CTR STATION,MUSC,0,0,N,YU,5506
-2021-09-12,00:55,Sunday,ISLINGTON STATION,SUROB,0,0,,BD,0
-2021-09-12,14:03,Sunday,BAYVIEW STATION,SUDP,3,8,E,SHP,6171
-2021-09-12,15:01,Sunday,DON MILLS STATION,TUSC,0,0,E,SHP,6181
-2021-09-13,06:00,Monday,TORONTO TRANSIT COMMIS,MRO,0,0,,SRT,0
-2021-09-13,06:00,Monday,TORONTO TRANSIT COMMIS,MUO,0,0,,BD,0
-2021-09-13,06:00,Monday,TORONTO TRANSIT COMMIS,MRO,0,0,,SRT,0
-2021-09-13,06:00,Monday,TORONTO TRANSIT COMMIS,MUO,0,0,,YU,0
-2021-09-13,06:00,Monday,TORONTO TRANSIT COMMIS,MRO,0,0,,SRT,0
-2021-09-13,06:00,Monday,TORONTO TRANSIT COMMIS,MUO,0,0,,BD,0
-2021-09-13,08:00,Monday,KIPLING STATION,MUTO,4,7,E,BD,5138
-2021-09-13,21:21,Monday,MCCOWAN STATION,SRUT,0,0,N,SRT,3001
-2021-09-13,09:08,Monday,ST PATRICK STATION,MUPAA,0,0,N,YU,5666
-2021-09-13,09:13,Monday,FINCH STATION,SUDP,3,6,S,YU,5841
-2021-09-13,10:17,Monday,YORK UNIVERSITY STATIO,MUO,4,7,S,YU,5891
-2021-09-13,10:53,Monday,QUEEN'S PARK STATION,MUWR,3,7,S,YU,5891
-2021-09-13,11:00,Monday,BLOOR STATION,SUDP,0,0,N,YU,6086
-2021-09-13,11:20,Monday,ROSEDALE STATION,MUSC,3,6,N,YU,5456
-2021-09-13,13:03,Monday,FINCH STATION,TUNIP,3,6,S,YU,5996
-2021-09-13,13:13,Monday,DUPONT STATION,MUIR,3,6,N,YU,5511
-2021-09-13,13:14,Monday,CASTLE FRANK STATION,SUDP,0,0,,BD,0
-2021-09-13,13:46,Monday,FINCH STATION,SUDP,3,6,N,YU,6086
-2021-09-13,13:54,Monday,DUPONT STATION,SUDP,0,0,N,YU,5786
-2021-09-13,14:14,Monday,ST ANDREW STATION,MUIE,0,0,,YU,0
-2021-09-13,15:11,Monday,ST GEORGE YUS STATION,MUPAA,0,0,N,YU,5821
-2021-09-13,15:16,Monday,BATHURST STATION,SUO,0,0,W,BD,5055
-2021-09-13,15:50,Monday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,5736
-2021-09-13,15:51,Monday,KENNEDY BD STATION,SUAE,0,0,,BD,0
-2021-09-13,15:56,Monday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,5746
-2021-09-13,16:08,Monday,QUEEN STATION,SUAP,0,0,N,YU,5931
-2021-09-13,16:37,Monday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,6011
-2021-09-13,16:41,Monday,WARDEN STATION,MUIS,0,0,,BD,0
-2021-09-13,16:41,Monday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,5706
-2021-09-13,16:55,Monday,EGLINTON WEST STATION,MUPAA,0,0,N,YU,5526
-2021-09-13,17:06,Monday,KING STATION,PUMEL,0,0,,YU,0
-2021-09-13,17:19,Monday,VAUGHAN MC STATION,MUNOA,5,10,S,YU,5456
-2021-09-13,17:20,Monday,MCBRIEN BUILDING,SUO,0,0,,,0
-2021-09-13,17:25,Monday,VAUGHAN MC STATION,MUNOA,5,10,S,YU,5726
-2021-09-13,18:07,Monday,LAWRENCE STATION,EUSC,0,0,S,YU,5881
-2021-09-13,18:10,Monday,ROYAL YORK STATION,SUPOL,0,0,E,BD,5138
-2021-09-13,18:47,Monday,UNION STATION,SUDP,0,0,N,YU,5606
-2021-09-13,18:47,Monday,ROSEDALE STATION,SUDP,6,9,S,YU,5656
-2021-09-13,18:48,Monday,VICTORIA PARK STATION,SUDP,4,7,E,BD,5186
-2021-09-13,19:02,Monday,LAWRENCE WEST STATION,SUDP,8,11,S,YU,5636
-2021-09-13,19:06,Monday,EGLINTON STATION,MUIS,0,0,,YU,0
-2021-09-13,19:11,Monday,ROSEDALE STATION,SUUT,0,0,N,YU,5726
-2021-09-13,20:34,Monday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-09-13,20:35,Monday,BLOOR STATION,SUDP,0,0,N,YU,5781
-2021-09-13,20:38,Monday,YONGE BD STATION,SUO,0,0,E,BD,5201
-2021-09-13,21:01,Monday,JANE STATION,PUTIJ,0,0,E,BD,5287
-2021-09-13,22:00,Monday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-09-13,22:01,Monday,LAWRENCE STATION,MUSC,0,0,N,YU,5561
-2021-09-13,23:00,Monday,KING TO SPADINA STATIO,MUO,0,0,B,YU,0
-2021-09-13,00:00,Monday,PIONEER VILLAGE TO VAU,MUO,0,0,N,YU,0
-2021-09-13,01:08,Monday,SPADINA BD STATION,MUIS,0,0,E,BD,5367
-2021-09-13,06:00,Monday,TORONTO TRANSIT COMMIS,MUO,0,0,,SHP,0
-2021-09-13,06:00,Monday,TORONTO TRANSIT COMMIS,MUO,0,0,,SHP,0
-2021-09-13,06:00,Monday,TORONTO TRANSIT COMMIS,MUO,0,0,,SHP,0
-2021-09-13,11:06,Monday,BESSARION STATION,PUOPO,5,10,E,SHP,6151
-2021-09-13,14:00,Monday,SHEPPARD-YONGE STATION,EUSC,0,0,W,SHP,6176
-2021-09-13,23:18,Monday,SHEPPARD-YONGE STATION,TUO,4,9,E,SHP,6196
-2021-09-14,06:00,Tuesday,TORONTO TRANSIT COMMIS,MRO,0,0,,SRT,0
-2021-09-14,05:44,Tuesday,YORK MILLS STATION,EUSC,0,0,S,YU,5981
-2021-09-14,06:00,Tuesday,TORONTO TRANSIT COMMIS,MRO,0,0,,SRT,0
-2021-09-14,06:00,Tuesday,TORONTO TRANSIT COMMIS,MUO,0,0,,YU/BD,0
-2021-09-14,17:31,Tuesday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-09-14,06:00,Tuesday,TORONTO TRANSIT COMMIS,MUO,0,0,,YU,0
-2021-09-14,06:59,Tuesday,FINCH STATION,TUSC,0,0,S,YU,6036
-2021-09-14,07:11,Tuesday,YORK MILLS STATION,TUSC,0,0,S,YU,5526
-2021-09-14,09:15,Tuesday,KIPLING STATION,MUTO,3,6,E,BD,5294
-2021-09-14,09:53,Tuesday,LAWRENCE WEST STATION,MUIS,0,0,,YU,0
-2021-09-14,09:56,Tuesday,BLOOR STATION,MUIRS,0,0,N,YU,5651
-2021-09-14,11:53,Tuesday,FINCH STATION,MUIS,0,0,,YU,0
-2021-09-14,12:10,Tuesday,WOODBINE STATION,SUDP,0,0,W,BD,5250
-2021-09-14,12:46,Tuesday,BLOOR STATION,SUSA,0,0,,YU,0
-2021-09-14,12:53,Tuesday,EGLINTON STATION,MUIS,0,0,,YU,0
-2021-09-14,13:27,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5506
-2021-09-14,13:31,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,6101
-2021-09-14,13:39,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5706
-2021-09-14,14:17,Tuesday,QUEEN STATION,MUIRS,0,0,,YU,0
-2021-09-14,14:48,Tuesday,ROSEDALE STATION,EUSC,0,0,N,YU,5661
-2021-09-14,14:53,Tuesday,VAUGHAN MC STATION,MUTO,3,6,S,YU,5626
-2021-09-14,14:57,Tuesday,VAUGHAN MC STATION,MUTO,3,6,S,YU,5741
-2021-09-14,14:59,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5846
-2021-09-14,15:12,Tuesday,VAUGHAN MC STATION,MUATC,3,6,S,YU,5986
-2021-09-14,15:28,Tuesday,VAUGHAN MC STATION,MUATC,3,6,N,YU,6131
-2021-09-14,16:04,Tuesday,FINCH WEST STATION,EUDO,8,11,N,YU,5826
-2021-09-14,16:36,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5586
-2021-09-14,16:44,Tuesday,UNION STATION,MUIR,10,13,S,YU,6016
-2021-09-14,18:05,Tuesday,DUNDAS WEST STATION,SUDP,0,0,,BD,0
-2021-09-14,18:13,Tuesday,BROADVIEW STATION,MUIS,0,0,W,BD,0
-2021-09-14,18:52,Tuesday,OSGOODE STATION,MUIS,4,7,S,YU,6091
-2021-09-14,19:28,Tuesday,YORK MILLS STATION,MUIS,0,0,N,YU,0
-2021-09-14,20:20,Tuesday,YONGE BD STATION,PUMEL,0,0,,BD,0
-2021-09-14,20:43,Tuesday,ST PATRICK STATION,MUPAA,0,0,S,YU,5481
-2021-09-14,21:08,Tuesday,YORKDALE STATION,MUPAA,4,9,S,YU,6091
-2021-09-14,21:12,Tuesday,OSGOODE STATION,MUTO,0,0,S,YU,5996
-2021-09-14,21:49,Tuesday,ST GEORGE BD STATION,SUAP,0,0,W,BD,5242
-2021-09-14,22:00,Tuesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-09-14,22:11,Tuesday,VAUGHAN MC STATION,TUNOA,5,10,S,YU,6111
-2021-09-14,22:32,Tuesday,LAWRENCE STATION,SUAE,19,24,S,YU,5881
-2021-09-14,22:50,Tuesday,VAUGHAN MC STATION,TUNOA,5,10,S,YU,5626
-2021-09-14,23:00,Tuesday,SPADINA TO KING STATIO,MUO,0,0,B,YU,0
-2021-09-14,23:08,Tuesday,DAVISVILLE STATION,SUDP,0,0,,YU,0
-2021-09-14,23:11,Tuesday,VAUGHAN MC STATION,TUNOA,5,10,S,YU,5906
-2021-09-14,23:23,Tuesday,LAWRENCE STATION,SUDP,6,11,N,YU,5916
-2021-09-14,00:45,Tuesday,PIONEER VILLAGE TO VAU,MUO,0,0,B,YU,0
-2021-09-14,06:00,Tuesday,TORONTO TRANSIT COMMIS,MUO,0,0,,SHP,0
-2021-09-14,06:00,Tuesday,TORONTO TRANSIT COMMIS,MUO,0,0,,SHP,0
-2021-09-15,06:43,Wednesday,KENNEDY SRT STATION,MRTO,6,13,S,SRT,3001
-2021-09-15,06:10,Wednesday,KIPLING STATION,PUSI,0,0,E,BD,5055
-2021-09-15,06:45,Wednesday,VAUGHAN MC STATION,MUATC,4,7,S,YU,6101
-2021-09-15,07:08,Wednesday,KIPLING STATION,PUSI,3,6,E,BD,5367
-2021-09-15,07:27,Wednesday,ROSEDALE STATION,MUSC,0,0,N,YU,5961
-2021-09-15,08:54,Wednesday,ROYAL YORK STATION,TUSC,0,0,E,BD,5304
-2021-09-15,10:31,Wednesday,COLLEGE STATION,SUDP,3,6,S,YU,6076
-2021-09-15,12:08,Wednesday,COXWELL STATION,EUPI,3,6,W,BD,5153
-2021-09-15,12:42,Wednesday,COXWELL STATION,MUIR,5,8,W,BD,5092
-2021-09-15,13:06,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-09-15,13:20,Wednesday,ROSEDALE STATION,MUATC,4,7,S,YU,5626
-2021-09-15,13:31,Wednesday,WELLESLEY STATION,SUAP,6,9,N,YU,5716
-2021-09-15,13:32,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-09-15,13:56,Wednesday,CHRISTIE STATION,TUOS,3,6,E,BD,5067
-2021-09-15,13:56,Wednesday,ST CLAIR WEST STATION,SUDP,7,10,S,YU,5991
-2021-09-15,14:01,Wednesday,BLOOR STATION,PUMEL,0,0,S,YU,0
-2021-09-15,15:17,Wednesday,VAUGHAN MC STATION,MUDD,3,6,S,YU,5561
-2021-09-15,15:19,Wednesday,DAVISVILLE STATION,TUSC,0,0,S,YU,5866
-2021-09-15,16:54,Wednesday,ST GEORGE YUS STATION,EUBK,3,6,N,YU,5611
-2021-09-15,17:23,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-09-15,17:50,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-09-15,17:54,Wednesday,ST GEORGE BD STATION,SUUT,5,8,E,BD,5282
-2021-09-15,19:06,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-09-15,19:19,Wednesday,COXWELL STATION,MUIR,0,0,W,BD,5099
-2021-09-15,19:24,Wednesday,HIGH PARK STATION,MUO,0,0,,BD,0
-2021-09-15,19:48,Wednesday,BLOOR STATION,MUIS,0,0,S,YU,5711
-2021-09-15,22:00,Wednesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-09-15,23:27,Wednesday,PAPE STATION,MUPAA,0,0,E,BD,5311
-2021-09-15,01:05,Wednesday,PAPE STATION,MUIS,0,0,,BD,0
-2021-09-15,05:24,Wednesday,SHEPPARD-YONGE STATION,MUSC,0,0,E,SHP,6146
-2021-09-15,11:26,Wednesday,SHEPPARD-YONGE STATION,MUSC,8,13,E,SHP,6151
-2021-09-15,17:21,Wednesday,DON MILLS STATION,PUMEL,0,0,,SHP,0
-2021-09-15,19:46,Wednesday,BAYVIEW STATION,MUIS,0,0,,SHP,0
-2021-09-16,05:19,Thursday,HIGH PARK STATION,TUCC,0,0,E,BD,83
-2021-09-16,19:08,Thursday,KENNEDY SRT STATION,SRDP,4,9,N,SRT,3009
-2021-09-16,05:28,Thursday,ST PATRICK STATION,MUNCA,0,0,,YU,0
-2021-09-16,05:36,Thursday,FINCH STATION,MUSAN,4,8,S,YU,6126
-2021-09-16,06:03,Thursday,VICTORIA PARK STATION,MUNCA,0,0,,BD,0
-2021-09-16,07:49,Thursday,CASTLE FRANK STATION,EUNT,5,8,W,BD,5059
-2021-09-16,08:17,Thursday,ROSEDALE STATION,EUBK,4,7,N,YU,5941
-2021-09-16,08:29,Thursday,EGLINTON STATION,EUCD,4,7,N,YU,5941
-2021-09-16,08:34,Thursday,OLD MILL STATION,SUDP,5,8,E,BD,5162
-2021-09-16,08:53,Thursday,SUMMERHILL STATION,TUOS,3,6,S,YU,6096
-2021-09-16,09:41,Thursday,FINCH STATION,MUIS,0,0,,YU,0
-2021-09-16,09:44,Thursday,ROSEDALE STATION,EUSC,0,0,N,YU,5796
-2021-09-16,10:27,Thursday,QUEEN STATION,PUMEL,0,0,,YU,0
-2021-09-16,10:50,Thursday,ROSEDALE STATION,MUSC,0,0,N,YU,6091
-2021-09-16,11:19,Thursday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-09-16,12:38,Thursday,CHRISTIE STATION,EUNT,5,8,E,BD,5131
-2021-09-16,12:58,Thursday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-09-16,13:52,Thursday,KING STATION,PUMEL,0,0,,YU,0
-2021-09-16,14:51,Thursday,ISLINGTON STATION,PUMEL,0,0,,BD,0
-2021-09-16,15:11,Thursday,FINCH STATION,MUSC,0,0,S,YU,6086
-2021-09-16,15:38,Thursday,SHEPPARD STATION,EUSC,0,0,N,YU,5566
-2021-09-16,15:43,Thursday,BROADVIEW STATION,MUIRS,6,9,E,BD,5083
-2021-09-16,15:48,Thursday,FINCH STATION,MUSC,0,0,S,YU,5401
-2021-09-16,16:16,Thursday,ROSEDALE STATION,MUSC,0,0,N,YU,6096
-2021-09-16,16:16,Thursday,KENNEDY BD STATION,MUSAN,3,6,W,BD,5094
-2021-09-16,16:57,Thursday,GREENWOOD STATION,MUDD,3,6,W,BD,5252
-2021-09-16,17:08,Thursday,WELLESLEY STATION,SUAP,0,0,,YU,0
-2021-09-16,17:49,Thursday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5776
-2021-09-16,17:56,Thursday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,6006
-2021-09-16,18:18,Thursday,NORTH YORK CTR STATION,MUTO,0,0,S,YU,5676
-2021-09-16,18:38,Thursday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5886
-2021-09-16,18:41,Thursday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5916
-2021-09-16,18:43,Thursday,BROADVIEW STATION,MUPAA,3,6,W,BD,5045
-2021-09-16,18:47,Thursday,ST GEORGE YUS STATION,SUUT,0,0,S,YU,5571
-2021-09-16,18:50,Thursday,DUNDAS STATION,SUAP,0,0,S,YU,0
-2021-09-16,20:16,Thursday,DUNDAS WEST STATION,MUI,5,11,W,BD,5055
-2021-09-16,20:54,Thursday,SPADINA BD STATION,MUIRS,0,0,E,BD,5174
-2021-09-16,21:14,Thursday,YORK MILLS STATION,TUSC,0,0,S,YU,5951
-2021-09-16,21:47,Thursday,VAUGHAN MC STATION,TUNOA,5,10,S,YU,5596
-2021-09-16,21:54,Thursday,KIPLING STATION,SUDP,8,14,E,BD,5060
-2021-09-16,21:55,Thursday,WARDEN STATION,EULV,7,13,W,BD,5367
-2021-09-16,22:00,Thursday,YONGE-UNIVERSITY AND B,MUO,0,0,B,YU,0
-2021-09-16,22:32,Thursday,ST GEORGE BD STATION,SUO,0,0,,BD,0
-2021-09-16,22:57,Thursday,VAUGHAN MC STATION,MUSAN,5,10,S,YU,6106
-2021-09-16,23:00,Thursday,SPADINA STATION TO KIN,MUO,0,0,,YU,0
-2021-09-16,23:12,Thursday,SUMMERHILL STATION,SUAE,0,0,S,YU,6036
-2021-09-16,23:36,Thursday,VAUGHAN MC STATION,TUNOA,5,10,S,YU,5866
-2021-09-16,23:41,Thursday,VAUGHAN MC STATION,TUNOA,5,10,S,YU,5726
-2021-09-16,23:58,Thursday,BLOOR STATION,SUDP,0,0,S,YU,5791
-2021-09-16,00:00,Thursday,PIONEER VILLAGE STATIO,MUO,0,0,,YU,0
-2021-09-16,00:27,Thursday,PIONEER VILLAGE STATIO,MUATC,3,8,S,YU,5571
-2021-09-16,01:14,Thursday,SPADINA YUS STATION,PUTWZ,9,14,N,YU,6096
-2021-09-16,12:31,Thursday,DON MILLS STATION,PUSO,5,10,W,SHP,6176
-2021-09-16,17:10,Thursday,SHEPPARD-YONGE STATION,TUSC,0,0,E,SHP,0
-2021-09-16,19:33,Thursday,SHEPPARD-YONGE STATION,SUDP,0,0,E,SHP,6196
-2021-09-16,19:37,Thursday,DON MILLS STATION,MUTO,5,10,W,SHP,6176
-2021-09-16,19:49,Thursday,BAYVIEW STATION,TUMVS,3,8,W,SHP,6176
-2021-09-17,02:07,Friday,ROSEDALE STATION,SUUT,0,0,S,YU,0
-2021-09-17,04:41,Friday,STC TO MCCOWAN STATION,SRUT,0,0,,SRT,0
-2021-09-17,05:46,Friday,HIGHWAY 407 STATION,MUIE,0,0,,YU,0
-2021-09-17,10:36,Friday,KENNEDY SRT STATION,SRDP,0,0,N,SRT,3023
-2021-09-17,07:44,Friday,KENNEDY BD STATION,MUTO,3,6,W,BD,5166
-2021-09-17,15:31,Friday,MCCOWAN STATION,PREL,0,0,,SRT,0
-2021-09-17,07:55,Friday,VAUGHAN MC STATION,MUTO,3,6,N,YU,5981
-2021-09-17,09:17,Friday,VICTORIA PARK STATION,MUIS,0,0,,BD,0
-2021-09-17,09:54,Friday,VAUGHAN MC STATION,MUTO,3,6,S,YU,5711
-2021-09-17,13:09,Friday,OSSINGTON STATION,MUPAA,0,0,E,BD,5242
-2021-09-17,14:13,Friday,WILSON STATION,TUNOA,0,0,S,YU,0
-2021-09-17,14:13,Friday,BLOOR STATION,MUATC,5,8,S,YU,5711
-2021-09-17,14:22,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5406
-2021-09-17,14:37,Friday,FINCH WEST STATION,MUPAA,0,0,N,YU,6026
-2021-09-17,15:22,Friday,COLLEGE STATION,MUIRS,0,0,,YU,0
-2021-09-17,15:25,Friday,YONGE BD STATION,PUMST,0,0,N,YU,0
-2021-09-17,16:40,Friday,ST CLAIR WEST STATION,SUUT,0,0,S,YU,5891
-2021-09-17,16:56,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,6116
-2021-09-17,17:20,Friday,ST GEORGE BD STATION,PUMEL,0,0,,BD,0
-2021-09-17,17:24,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5786
-2021-09-17,17:56,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,6046
-2021-09-17,17:57,Friday,FINCH STATION,MUIR,0,0,S,YU,6131
-2021-09-17,18:01,Friday,EGLINTON STATION,MUNCA,0,0,,YU,0
-2021-09-17,18:31,Friday,ST ANDREW STATION,SUDP,0,0,N,YU,6131
-2021-09-17,19:52,Friday,ROSEDALE STATION,SUDP,3,6,N,YU,5976
-2021-09-17,19:59,Friday,KENNEDY BD STATION,MUIRS,0,0,,BD,0
-2021-09-17,20:13,Friday,YORKDALE STATION,MUIS,0,0,,YU,0
-2021-09-17,20:41,Friday,WOODBINE STATION,MUIS,0,0,E,BD,5013
-2021-09-17,21:05,Friday,BATHURST STATION,MUIRS,0,0,E,BD,0
-2021-09-17,21:18,Friday,COXWELL STATION,MUIS,0,0,,BD,0
-2021-09-17,21:39,Friday,EGLINTON STATION,MUNCA,0,0,,YU,0
-2021-09-17,21:40,Friday,VAUGHAN MC STATION,TUNOA,5,6,S,YU,5646
-2021-09-17,22:00,Friday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-09-17,22:39,Friday,VAUGHAN MC STATION,TUNOA,5,10,B,YU,0
-2021-09-17,22:39,Friday,DAVISVILLE STATION,EUSC,0,0,N,YU,5976
-2021-09-17,22:56,Friday,DUNDAS WEST STATION,SUAP,89,95,W,BD,5168
-2021-09-17,23:01,Friday,VAUGHAN MC STATION,TUNOA,5,10,S,YU,5556
-2021-09-17,23:11,Friday,VAUGHAN MC STATION,TUNOA,5,10,S,YU,5716
-2021-09-17,23:41,Friday,VAUGHAN MC STATION,TUNOA,5,10,S,YU,5526
-2021-09-17,23:48,Friday,MAIN STREET STATION,SUO,0,0,,BD,0
-2021-09-17,23:56,Friday,VAUGHAN MC STATION,TUNOA,5,10,S,YU,5606
-2021-09-17,00:17,Friday,OSSIGNTON STATION,MUIS,0,0,,BD,0
-2021-09-17,01:39,Friday,ST PATRICK STATION,MUSAN,5,10,N,YU,5721
-2021-09-17,01:59,Friday,ST CLAIR WEST STATION,SUAE,0,0,,YU,0
-2021-09-17,02:28,Friday,SHEPPARD-YONGE STATION,MUIS,0,0,,SHP,0
-2021-09-17,02:38,Friday,SHEPPARD-YONGE STATION,TUMVS,0,0,W,SHP,6191
-2021-09-17,16:04,Friday,SHEPPARD-YONGE STATION,EUO,5,10,E,SHP,6181
-2021-09-17,19:39,Friday,DON MILLS STATION,MUO,5,10,W,SHP,6151
-2021-09-18,02:03,Saturday,BROADVIEW STATION,MUIRS,0,0,E,BD,0
-2021-09-18,05:00,Saturday,KIPLING TO JANE STATIO,MUO,0,0,,BD,0
-2021-09-18,06:00,Saturday,KIPLING STATION TO JAN,MUO,0,0,,BD,0
-2021-09-18,06:30,Saturday,SPADINA BD STATION,MUPAA,0,0,W,BD,5037
-2021-09-18,09:14,Saturday,CHESTER STATION,MUSAN,0,0,W,BD,5123
-2021-09-18,09:58,Saturday,WELLESLEY STATION,SUUT,0,0,S,YU,0
-2021-09-18,10:25,Saturday,MUSEUM STATION,MUPAA,0,0,N,YU,5961
-2021-09-18,10:39,Saturday,VAUGHAN MC STATION,EUBO,4,8,S,YU,5641
-2021-09-18,10:56,Saturday,FINCH STATION,MUSC,0,0,S,YU,5721
-2021-09-18,12:33,Saturday,ROSEDALE STATION,SUDP,8,11,N,YU,6046
-2021-09-18,13:00,Saturday,VAUGHAN MC STATION,MUPAA,0,0,S,YU,5456
-2021-09-18,13:28,Saturday,YORK MILLS STATION,TUSC,0,0,S,YU,5981
-2021-09-18,13:28,Saturday,BLOOR STATION,MUIS,0,0,,YU,0
-2021-09-18,13:30,Saturday,LAWRENCE STATION,MUSC,0,0,N,YU,5846
-2021-09-18,14:20,Saturday,FINCH STATION,TUNIP,4,8,S,YU,5421
-2021-09-18,16:33,Saturday,UNION STATION,SUDP,3,7,N,YU,5886
-2021-09-18,16:58,Saturday,WILSON STATION,MUATC,4,8,S,YU,5776
-2021-09-18,17:22,Saturday,PAPE STATION,MUPAA,0,0,W,BD,5089
-2021-09-18,17:46,Saturday,ST CLAIR WEST STATION,SUDP,0,0,,YU,0
-2021-09-18,18:00,Saturday,VAUGHAN MC STATION,TUNOA,5,10,S,YU,6136
-2021-09-18,18:03,Saturday,FINCH STATION,TUNOA,4,8,S,YU,5431
-2021-09-18,18:13,Saturday,DUNDAS WEST STATION,MUIR,0,0,E,BD,5203
-2021-09-18,18:15,Saturday,VAUGHAN MC STATION,TUNOA,5,10,S,YU,6136
-2021-09-18,18:46,Saturday,YORK MILLS STATION,MUIR,0,0,S,YU,5721
-2021-09-18,19:25,Saturday,DUNDAS WEST STATION,MUIS,0,0,,BD,0
-2021-09-18,19:38,Saturday,DUNDAS STATION,MUPAA,0,0,N,YU,5766
-2021-09-18,20:59,Saturday,ST GEORGE YUS STATION,SUDP,0,0,N,YU,5611
-2021-09-18,21:04,Saturday,PIONEER VILLAGE STATIO,MUPAA,0,0,N,YU,5971
-2021-09-18,21:12,Saturday,COLLEGE STATION,MUIRS,0,0,,YU,0
-2021-09-18,21:21,Saturday,YONGE BD STATION,SUDP,9,16,E,BD,5238
-2021-09-18,21:22,Saturday,SPADINA BD STATION,SUAP,10,15,,BD,4570
-2021-09-18,21:40,Saturday,OLD MILL STATION,MUIE,0,0,,BD,0
-2021-09-18,22:00,Saturday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-09-18,22:18,Saturday,WELLESLEY STATION,MUIS,0,0,N,YU,0
-2021-09-18,23:42,Saturday,KING STATION,SUDP,0,0,N,YU,5781
-2021-09-18,00:19,Saturday,BLOOR STATION,MUIR,0,0,S,YU,5746
-2021-09-18,00:41,Saturday,EGLINTON STATION,MUPAA,0,0,S,YU,5811
-2021-09-18,01:22,Saturday,KENNEDY BD STATION,MUTO,3,7,W,BD,5033
-2021-09-18,02:36,Saturday,BAYVIEW STATION,SUO,0,0,,SHP,0
-2021-09-18,01:07,Saturday,BAYVIEW STATION,MUI,7,12,W,SHP,6151
-2021-09-18,01:21,Saturday,BAYVIEW STATION,PUOPO,8,13,E,SHP,6166
-2021-09-19,00:30,Sunday,SCARBOROUGH CTR STATIO,MRUI,0,0,,SRT,0
-2021-09-19,02:12,Sunday,VAUGHAN MC STATION,MUIS,0,0,,YU,0
-2021-09-19,02:14,Sunday,JANE STATION,SUDP,4,0,W,BD,5136
-2021-09-19,02:28,Sunday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-09-19,07:40,Sunday,WILSON TO LAWRENCE WES,PUSCA,47,59,S,YU,6011
-2021-09-19,07:42,Sunday,WILSON STATION,PUSCA,5,0,S,YU,5891
-2021-09-19,08:00,Sunday,KIPLING TO JANE STATIO,MUO,0,0,,BD,0
-2021-09-19,08:00,Sunday,BLOOR DANFORTH SUBWAY,MUO,0,0,,BD,0
-2021-09-19,08:06,Sunday,SHEPPARD WEST STATION,PUSCA,24,30,N,YU,5486
-2021-09-19,08:17,Sunday,EGLINTON STATION,MUNOA,6,11,N,YU,5676
-2021-09-19,08:21,Sunday,OSSINGTON STATION,SUDP,0,0,,BD,0
-2021-09-19,08:41,Sunday,VAUGHAN MC STATION,PUOPO,3,9,S,YU,6026
-2021-09-19,08:55,Sunday,ST GEORGE YUS STATION,TUSUP,13,19,N,YU,6041
-2021-09-19,09:51,Sunday,VAUGHAN MC STATION,TUO,6,12,S,YU,5431
-2021-09-19,09:57,Sunday,PIONEER VILLAGE STATIO,PUOPO,5,11,S,YU,5966
-2021-09-19,10:08,Sunday,PIONEER VILLAGE STATIO,PUOPO,5,11,S,YU,5431
-2021-09-19,10:20,Sunday,YORK UNIVERSITY STATIO,PUOPO,0,0,S,YU,5676
-2021-09-19,10:22,Sunday,FINCH STATION,SUAP,0,0,,YU,0
-2021-09-19,10:26,Sunday,WOODBINE STATION,MUPAA,0,0,E,BD,5099
-2021-09-19,10:45,Sunday,ROSEDALE STATION,MUSC,0,0,N,YU,5646
-2021-09-19,11:16,Sunday,SPADINA YUS STATION,MUIS,0,0,,YU,0
-2021-09-19,12:19,Sunday,DOWNSVIEW PARK STATION,PUOPO,5,10,N,YU,5961
-2021-09-19,12:27,Sunday,DOWNSVIEW PARK STATION,PUOPO,0,0,N,YU,5456
-2021-09-19,12:51,Sunday,KENNEDY BD STATION,MUIS,0,0,E,BD,0
-2021-09-19,12:55,Sunday,HIGHWAY 407 STATION,PUOPO,0,0,S,YU,5676
-2021-09-19,12:58,Sunday,VAUGHAN MC STATION,PUOPO,0,0,S,YU,5396
-2021-09-19,13:00,Sunday,WELLESLEY STATION,SUAE,0,0,N,YU,0
-2021-09-19,13:12,Sunday,SHERBOURNE STATION,EUDO,10,15,W,BD,5228
-2021-09-19,13:21,Sunday,COLLEGE STATION,MUIRS,0,0,,YU,0
-2021-09-19,13:36,Sunday,KENNEDY BD STATION,TUMVS,0,0,E,BD,5007
-2021-09-19,13:37,Sunday,LAWRENCE STATION,MUSC,0,0,N,YU,5451
-2021-09-19,13:39,Sunday,EGLINTON WEST STATION,PUOPO,0,0,S,YU,5926
-2021-09-19,15:30,Sunday,OSSINGTON STATION,MUPAA,0,0,E,BD,5152
-2021-09-19,15:32,Sunday,LAWRENCE WEST STATION,PUOPO,0,0,N,YU,5896
-2021-09-19,15:38,Sunday,WOODBINE STATION,MUIRS,0,0,W,BD,0
-2021-09-19,15:43,Sunday,YORK MILLS STATION,TUSC,0,0,S,YU,6086
-2021-09-19,16:37,Sunday,FINCH STATION,TUNOA,5,10,S,YU,5811
-2021-09-19,17:04,Sunday,FINCH STATION,TUNOA,5,10,S,YU,6136
-2021-09-19,17:30,Sunday,PIONEER VILLAGE STATIO,PUOPO,4,9,N,YU,5811
-2021-09-19,17:38,Sunday,PIONEER VILLAGE STATIO,PUOPO,0,0,N,YU,6041
-2021-09-19,17:41,Sunday,PIONEER VILLAGE STATIO,PUOPO,0,0,N,YU,5456
-2021-09-19,17:46,Sunday,ST PATRICK STATION,MUPAA,0,0,S,YU,5881
-2021-09-19,17:46,Sunday,DOWNSVIEW PARK STATION,PUOPO,7,12,S,YU,5431
-2021-09-19,18:03,Sunday,CHESTER STATION,MUPAA,0,0,W,BD,5045
-2021-09-19,18:09,Sunday,CHESTER STATION,EUME,5,10,E,BD,5072
-2021-09-19,18:12,Sunday,ST PATRICK STATION,EUDO,4,9,N,YU,6051
-2021-09-19,19:04,Sunday,HIGHWAY 407 STATION,PUOPO,6,11,N,YU,5426
-2021-09-19,19:36,Sunday,ST CLAIR STATION,EUSC,0,0,S,YU,5456
-2021-09-19,19:41,Sunday,FINCH WEST STATION,PUOPO,0,0,N,YU,5886
-2021-09-19,19:54,Sunday,YORKDALE STATION,PUOPO,4,11,S,YU,5706
-2021-09-19,20:40,Sunday,WOODBINE STATION,SUDP,5,10,E,BD,5079
-2021-09-19,20:56,Sunday,BROADVIEW STATION,MUPAA,3,8,W,BD,5164
-2021-09-19,20:59,Sunday,VAUGHAN MC STATION,PUOPO,3,10,S,YU,5676
-2021-09-19,21:15,Sunday,PAPE STATION,MUPAA,5,10,E,BD,5192
-2021-09-19,21:24,Sunday,YORKDALE STATION,PUOPO,0,0,S,YU,5926
-2021-09-19,21:38,Sunday,DOWNSVIEW PARK STATION,PUOPO,7,14,N,YU,5546
-2021-09-19,21:48,Sunday,FINCH WEST STATION,PUOPO,0,0,N,YU,5546
-2021-09-19,21:53,Sunday,YORK UNIVERSITY STATIO,PUOPO,5,12,N,YU,5546
-2021-09-19,22:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-09-19,22:30,Sunday,VAUGHAN MC STATION,MUATC,10,17,S,YU,5881
-2021-09-19,22:33,Sunday,DOWNSVIEW PARK STATION,MUATC,11,18,N,YU,6121
-2021-09-19,23:00,Sunday,DUNDAS WEST STATION,MUIS,0,0,W,BD,0
-2021-09-19,23:02,Sunday,PIONEER VILLAGE STATIO,PUOPO,3,10,S,YU,6126
-2021-09-19,23:11,Sunday,PIONEER VILLAGE STATIO,PUOPO,0,0,S,YU,6046
-2021-09-19,23:32,Sunday,YORK UNIVERSITY STATIO,PUOPO,6,13,S,YU,5406
-2021-09-19,23:40,Sunday,WELLESLEY STATION,MUIR,6,13,S,YU,5701
-2021-09-19,23:42,Sunday,YORK UNIVERSITY STATIO,PUOPO,3,10,S,YU,5676
-2021-09-19,23:48,Sunday,YORK UNIVERSITY STATIO,PUOPO,3,10,S,YU,5926
-2021-09-19,00:00,Sunday,KEELE STATION,MUIS,0,0,,BD,0
-2021-09-19,00:25,Sunday,ST GEORGE YUS STATION,PUOPO,0,0,N,YU,5886
-2021-09-19,00:28,Sunday,SPADINA YUS STATION,PUOPO,3,10,N,YU,5886
-2021-09-19,00:34,Sunday,DUPONT STATION,PUOPO,8,15,N,YU,5886
-2021-09-19,01:30,Sunday,NORTH YORK CTR STATION,MUPAA,0,0,N,YU,6026
-2021-09-19,01:45,Sunday,DAVISVILLE STATION,MUIRS,0,0,,YU,0
-2021-09-19,01:54,Sunday,DAVISVILLE STATION,PUSTS,0,0,S,YU,6021
-2021-09-19,11:49,Sunday,DON MILLS STATION,MUSC,0,0,E,SHP,6166
-2021-09-19,12:05,Sunday,SHEPPARD-YONGE STATION,MUSC,0,0,E,SHP,6166
-2021-09-19,12:13,Sunday,BAYVIEW STATION,PUOPO,5,10,E,SHP,6166
-2021-09-19,13:17,Sunday,DON MILLS STATION,TUMVS,0,0,E,SHP,6181
-2021-09-20,04:44,Monday,GREENWOOD CARHOUSE,MUO,0,0,,BD,0
-2021-09-20,10:49,Monday,MCCOWAN STATION,PRSA,3,8,S,SRT,3012
-2021-09-20,12:47,Monday,KENNEDY SRT STATION,ERTC,51,56,S,SRT,3004
-2021-09-20,05:40,Monday,KIPLING STATION TO JAN,PUTWZ,30,0,E,BD,5079
-2021-09-20,20:31,Monday,MCCOWAN STATION,MRTO,12,17,S,SRT,3012
-2021-09-20,05:58,Monday,VAUGHAN MC STATION,MUCL,3,6,S,YU,0
-2021-09-20,06:43,Monday,VICTORIA PARK STATION,SUDP,0,0,E,BD,5348
-2021-09-20,06:50,Monday,GLENCAIRN STATION,EUDO,0,0,N,YU,6051
-2021-09-20,11:36,Monday,BROADVIEW STATION,SUUT,32,37,E,BD,5348
-2021-09-20,11:49,Monday,FINCH STATION,MUTO,3,6,S,YU,5581
-2021-09-20,12:10,Monday,FINCH STATION,MUTO,3,6,S,YU,5721
-2021-09-20,12:27,Monday,CASTLE FRANK STATION,SUDP,6,9,W,BD,5230
-2021-09-20,13:32,Monday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-09-20,13:50,Monday,KENNEDY BD STATION,EUTR,3,6,E,BD,5255
-2021-09-20,14:50,Monday,ROYAL YORK STATION,SUPOL,0,0,E,BD,5250
-2021-09-20,17:14,Monday,SHEPPARD WEST STATION,MUATC,0,0,N,YU,6101
-2021-09-20,17:25,Monday,KENNEDY BD STATION,MUO,3,6,W,BD,5264
-2021-09-20,17:36,Monday,OSSINGTON STATION,PUMEL,0,0,,BD,0
-2021-09-20,17:49,Monday,VAUGHAN MC STATION,TUNOA,4,8,S,YU,0
-2021-09-20,17:51,Monday,ISLINGTON STATION,MUNCA,0,0,,BD,0
-2021-09-20,18:45,Monday,VAUGHAN MC STATION,TUNOA,4,8,S,YU,0
-2021-09-20,19:06,Monday,VAUGHAN MC STATION,TUNOA,4,8,S,YU,0
-2021-09-20,19:27,Monday,VAUGHAN MC STATION,MUSAN,3,6,S,YU,5821
-2021-09-20,20:21,Monday,NORTH YORK CTR STATION,TUSC,0,0,S,YU,5771
-2021-09-20,20:45,Monday,UNION TO ST ANDREW,SUDP,0,0,N,YU,5721
-2021-09-20,21:24,Monday,SHEPPARD WEST STATION,MUIS,0,0,,YU,0
-2021-09-20,21:35,Monday,WELLESLEY STATION,MUIRS,0,0,,YU,0
-2021-09-20,21:50,Monday,VAUGHAN MC STATION,TUNOA,5,10,S,YU,0
-2021-09-20,22:00,Monday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-09-20,22:11,Monday,VAUGHAN MC STATION,TUNOA,5,10,S,YU,0
-2021-09-20,22:51,Monday,SPADINA YUS STATION,SUDP,0,0,N,YU,5976
-2021-09-20,22:52,Monday,SPADINA BD STATION,SUDP,0,0,E,BD,5094
-2021-09-20,23:00,Monday,KING TO EGLINTON STATI,MUO,0,0,B,YUS,0
-2021-09-20,23:26,Monday,DUNDAS WEST STATION,SUAP,0,0,,BD,0
-2021-09-20,23:34,Monday,DUNDAS STATION,MUIRS,0,0,N,YU,0
-2021-09-20,23:36,Monday,VAUGHAN MC STATION,TUNOA,5,10,S,YU,0
-2021-09-20,00:00,Monday,PIONEER VILLAGE TO VAU,MUO,0,0,B,YU,0
-2021-09-20,01:21,Monday,SHEPPARD WEST STATION,TUCC,6,13,S,YU,6026
-2021-09-20,01:29,Monday,FINCH STATION,SUAE,0,0,S,YU,5481
-2021-09-20,12:18,Monday,SHEPPARD-YONGE STATION,TUSC,0,0,E,SHP,6196
-2021-09-20,16:34,Monday,DON MILLS STATION,TUMVS,0,0,E,SHP,6156
-2021-09-21,06:32,Tuesday,DUNDAS WEST STATION,SUDP,0,0,,BD,0
-2021-09-21,20:55,Tuesday,LAWRENCE EAST STATION,SRDP,0,0,,SRT,0
-2021-09-21,06:57,Tuesday,FINCH STATION,EUBK,3,6,S,YU,5941
-2021-09-21,07:08,Tuesday,MAIN STREET STATION,EUPI,3,6,W,BD,5228
-2021-09-21,07:34,Tuesday,CHRISTIE STATION,TUMVS,0,0,E,BD,5023
-2021-09-21,07:54,Tuesday,EGLINTON STATION,PUSI,0,0,S,YU,5846
-2021-09-21,08:51,Tuesday,LAWRENCE STATION,MUPAA,3,6,S,YU,5591
-2021-09-21,09:08,Tuesday,MAIN STREET STATION,SUDP,4,7,W,BD,5136
-2021-09-21,10:09,Tuesday,DUNDAS STATION,MUO,4,7,S,YU,5671
-2021-09-21,10:19,Tuesday,BLOOR STATION,MUIS,0,0,S,YU,0
-2021-09-21,10:25,Tuesday,YONGE BD STATION,MUIRS,0,0,,BD,0
-2021-09-21,10:42,Tuesday,LAWRENCE STATION,PUSTS,9,12,N,YU,5766
-2021-09-21,11:48,Tuesday,DUNDAS STATION,MUPAA,0,0,S,YU,6021
-2021-09-21,12:16,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-09-21,12:20,Tuesday,FINCH STATION,EUCD,3,6,S,YU,5941
-2021-09-21,13:08,Tuesday,EGLINTON STATION,MUSAN,3,6,N,YU,5961
-2021-09-21,13:26,Tuesday,PAPE STATION,TUNOA,3,6,E,BD,5299
-2021-09-21,13:30,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-09-21,14:10,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-09-21,15:29,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-09-21,16:15,Tuesday,OLD MILL STATION,SUDP,11,15,W,BD,5172
-2021-09-21,16:43,Tuesday,CASTLE FRANK STATION,SUAP,9,13,W,BD,5068
-2021-09-21,16:46,Tuesday,KIPLING STATION,TUMVS,0,0,W,BD,5013
-2021-09-21,17:08,Tuesday,ROSEDALE STATION,MUIS,0,0,,YU,0
-2021-09-21,18:02,Tuesday,PAPE STATION,TUO,3,6,E,BD,5068
-2021-09-21,18:10,Tuesday,YONGE BD STATION,MUIS,0,0,E,BD,0
-2021-09-21,18:31,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-09-21,19:03,Tuesday,DUFFERIN STATION,MUNCA,0,0,,BD,0
-2021-09-21,19:11,Tuesday,SHEPPARD STATION,MUIS,0,0,N,YU,0
-2021-09-21,19:22,Tuesday,KENNEDY BD STATION,MUIRS,0,0,,BD,0
-2021-09-21,20:00,Tuesday,YONGE BD STATION,SUDP,3,9,E,BD,5152
-2021-09-21,21:25,Tuesday,EGLINTON STATION,MUIRS,0,0,,YU,0
-2021-09-21,21:30,Tuesday,DAVISVILLE STATION,SUDP,5,8,N,YU,5656
-2021-09-21,21:32,Tuesday,EGLINTON WEST STATION,MUIR,5,10,N,YU,6036
-2021-09-21,21:39,Tuesday,COXWELL STATION,MUPAA,0,0,E,BD,5055
-2021-09-21,21:56,Tuesday,FINCH STATION,MUIR,5,10,S,YU,5651
-2021-09-21,22:00,Tuesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-09-21,22:34,Tuesday,BLOOR STATION,SUDP,3,8,S,YU,6021
-2021-09-21,22:48,Tuesday,SHEPPARD STATION,SUDP,0,0,S,YU,6521
-2021-09-21,22:54,Tuesday,EGLINTON WEST STATION,SUDP,3,8,N,YU,5566
-2021-09-21,23:00,Tuesday,KING TO EGLINTON STATI,MUO,0,0,B,YUS,0
-2021-09-21,23:11,Tuesday,VAUGHAN MC STATION,TUNOA,5,10,S,YU,0
-2021-09-21,00:00,Tuesday,PIONEER VILLAGE TO VAU,MUO,0,0,N,YU,0
-2021-09-21,00:39,Tuesday,DUNDAS WEST STATION,SUDP,17,23,E,BD,5271
-2021-09-21,01:37,Tuesday,KIPLING STATION,MUI,0,0,E,BD,5356
-2021-09-21,10:49,Tuesday,SHEPPARD-YONGE STATION,PUCSC,0,0,,SHP,6191
-2021-09-21,12:07,Tuesday,DON MILLS STATION,MUSAN,5,10,W,SHP,6191
-2021-09-21,20:04,Tuesday,DON MILLS STATION,MUTO,3,8,W,SHP,6161
-2021-09-22,04:52,Wednesday,GREENWOOD STATION,PUTOE,0,0,W,BD,73
-2021-09-22,06:08,Wednesday,MIDLAND STATION,ERDO,3,0,N,SRT,3015
-2021-09-22,15:18,Wednesday,LAWRENCE EAST STATION,ERCD,3,8,N,SRT,3015
-2021-09-22,06:02,Wednesday,SHEPPARD WYE,PUSTS,0,0,S,YU,85
-2021-09-22,06:45,Wednesday,LANSDOWNE STATION,SUDP,3,8,W,BD,5266
-2021-09-22,22:44,Wednesday,LAWRENCE EAST STATION,MRO,0,0,,SRT,0
-2021-09-22,07:08,Wednesday,EGLINTON STATION,MUIS,0,0,N,YU,0
-2021-09-22,08:26,Wednesday,ST GEORGE BD STATION,SUUT,7,10,W,BD,5248
-2021-09-22,08:29,Wednesday,EGLINTON STATION,MUPLB,8,11,N,YU,5636
-2021-09-22,09:14,Wednesday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,5426
-2021-09-22,09:45,Wednesday,WARDEN STATION,MUD,6,9,W,BD,5266
-2021-09-22,09:50,Wednesday,HIGH PARK STATION,MUSC,0,0,W,BD,5127
-2021-09-22,10:01,Wednesday,ROSEDALE STATION,SUDP,0,0,S,YU,5381
-2021-09-22,11:06,Wednesday,SPADINA BD STATION,SUEAS,9,12,E,BD,5304
-2021-09-22,11:12,Wednesday,SPADINA YUS STATION,SUO,0,0,N,YU,5956
-2021-09-22,12:02,Wednesday,WELLESLEY STATION,SUUT,9,12,N,YU,5976
-2021-09-22,12:04,Wednesday,WARDEN STATION,PUSWZ,4,7,E,BD,5252
-2021-09-22,13:46,Wednesday,OLD MILL STATION,EUNT,3,6,E,BD,5094
-2021-09-22,15:33,Wednesday,VAUGHAN MC STATION,MUATC,3,6,S,YU,5106
-2021-09-22,15:46,Wednesday,YONGE BD STATION,PUMEL,0,0,S,BD,0
-2021-09-22,16:54,Wednesday,SHEPPARD STATION,MUSC,5,8,S,YU,6111
-2021-09-22,17:04,Wednesday,UNION STATION,SUAE,0,0,,YU,0
-2021-09-22,17:22,Wednesday,WARDEN STATION,SUAP,6,9,W,BD,5115
-2021-09-22,17:22,Wednesday,WARDEN STATION,EUME,9,12,E,BD,5121
-2021-09-22,17:49,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5426
-2021-09-22,18:28,Wednesday,ISLINGTON STATION,PUTO,3,6,E,BD,5110
-2021-09-22,18:45,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5766
-2021-09-22,18:59,Wednesday,SHERBOURNE STATION,SUDP,0,0,E,BD,5233
-2021-09-22,19:06,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5396
-2021-09-22,19:34,Wednesday,SHEPPARD STATION,MUIS,0,0,,YU,0
-2021-09-22,19:34,Wednesday,BATHURST STATION,MUIS,0,0,,BD,0
-2021-09-22,19:44,Wednesday,BATHURST STATION,SUO,0,0,,BD,0
-2021-09-22,20:25,Wednesday,ROSEDALE STATION,SUDP,3,7,N,YU,5711
-2021-09-22,20:39,Wednesday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-09-22,20:50,Wednesday,SPADINA YUS STATION,MUIS,0,0,S,YU,6056
-2021-09-22,21:50,Wednesday,VAUGHAN MC STATION,TUNOA,5,10,S,YU,5981
-2021-09-22,22:00,Wednesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU / BD,0
-2021-09-22,22:09,Wednesday,ST GEORGE BD STATION,MUIRS,3,9,E,BD,5086
-2021-09-22,22:11,Wednesday,VAUGHAN MC STATION,TUNOA,5,10,S,YU,5816
-2021-09-22,22:21,Wednesday,MAIN STREET STATION,SUDP,0,0,W,BD,5171
-2021-09-22,22:43,Wednesday,YONGE BD STATION,TUSC,0,0,E,BD,5237
-2021-09-22,22:55,Wednesday,ROSEDALE STATION,MUATC,3,8,S,YU,6101
-2021-09-22,22:58,Wednesday,BLOOR STATION,SUAP,0,0,N,YU,5721
-2021-09-22,23:00,Wednesday,KING TO EGLINTON STATI,MUO,0,0,B,YUS,0
-2021-09-22,23:07,Wednesday,BLOOR STATION,MUATC,10,15,S,YU,6101
-2021-09-22,23:10,Wednesday,YONGE BD STATION,MUO,0,0,W,BD,5181
-2021-09-22,23:36,Wednesday,VAUGHAN MC STATION,TUNOA,5,10,S,YU,5771
-2021-09-22,00:32,Wednesday,VMC TO PIONEER VILLAGE,MUO,0,0,B,YUS,0
-2021-09-22,00:51,Wednesday,KEELE STATION,MUIS,0,0,,BD,0
-2021-09-22,00:54,Wednesday,ST CLAIR WEST STATION,MUIR,6,11,N,YU,5786
-2021-09-22,01:19,Wednesday,ST CLAIR WEST STATION,MUTO,5,10,N,YU,5401
-2021-09-22,01:57,Wednesday,SHEPPARD WEST STATION,MUI,0,0,S,YU,0
-2021-09-23,11:58,Thursday,KENNEDY SRT STATION,MRUI,0,0,,SRT,0
-2021-09-23,02:27,Thursday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-09-23,05:55,Thursday,NORTH YORK CTR STATION,SUG,4,8,S,YU,5991
-2021-09-23,05:58,Thursday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5611
-2021-09-23,06:20,Thursday,KIPLING STATION,EUBO,5,10,E,BD,5133
-2021-09-23,09:02,Thursday,BATHURST STATION,SUDP,0,0,W,BD,5248
-2021-09-23,09:42,Thursday,ROSEDALE STATION,MUATC,4,7,N,YU,5776
-2021-09-23,09:55,Thursday,LANSDOWNE STATION,SUDP,5,8,W,BD,5015
-2021-09-23,11:05,Thursday,COLLEGE STATION,MUI,19,22,N,YU,5866
-2021-09-23,11:13,Thursday,FINCH WEST STATION,PUMEL,0,0,S,YU,0
-2021-09-23,11:49,Thursday,EGLINTON STATION,EUSC,0,0,S,YU,5506
-2021-09-23,12:09,Thursday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-09-23,12:41,Thursday,DAVISVILLE STATION,SUUT,16,19,S,YU,5936
-2021-09-23,12:54,Thursday,ROYAL YORK STATION,MUO,0,0,W,BD,5356
-2021-09-23,13:05,Thursday,KIPLING STATION,MUTO,5,8,E,BD,5148
-2021-09-23,13:09,Thursday,SUMMERHILL STATION,MUPAA,3,6,S,YU,5936
-2021-09-23,14:32,Thursday,ROYAL YORK STATION,MUIS,0,0,E,BD,5144
-2021-09-23,14:36,Thursday,VAUGHAN MC STATION,TUNOA,3,6,B,YU,0
-2021-09-23,15:05,Thursday,ST CLAIR WEST STATION,MUIS,0,0,,YU,0
-2021-09-23,16:35,Thursday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-09-23,16:40,Thursday,HIGHWAY 407 STATION,MUIS,0,0,,YU,0
-2021-09-23,17:25,Thursday,FINCH WEST STATION,EUPI,3,6,S,YU,5907
-2021-09-23,17:28,Thursday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-09-23,17:31,Thursday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-09-23,17:38,Thursday,WELLESLEY STATION,MUIS,0,0,,YU,0
-2021-09-23,17:49,Thursday,VAUGHAN MC STATION,TUNOA,5,10,B,YU,0
-2021-09-23,18:17,Thursday,ROYAL YORK STATION,MUIRS,0,0,W,BD,0
-2021-09-23,18:51,Thursday,PAPE STATION,SUO,15,18,E,BD,5084
-2021-09-23,19:42,Thursday,SHERBOURNE STATION,SUDP,3,6,E,BD,5081
-2021-09-23,19:59,Thursday,PAPE STATION,MUPAA,0,0,E,BD,5167
-2021-09-23,20:39,Thursday,ST CLAIR STATION,SUDP,11,16,N,YU,5616
-2021-09-23,20:44,Thursday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-09-23,22:00,Thursday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-09-23,22:30,Thursday,COXWELL STATION,TUO,6,12,W,BD,5364
-2021-09-23,23:00,Thursday,KING TO EGLINTON STATI,MUO,0,0,,YU,0
-2021-09-23,23:12,Thursday,COLLEGE STATION,MUIRS,0,0,,YU,0
-2021-09-23,23:41,Thursday,VAUGHAN MC STATION,TUNOA,5,10,B,YU,0
-2021-09-23,00:00,Thursday,VAUGHAN MC STATION,MUO,0,0,,YU,0
-2021-09-23,00:32,Thursday,KING STATION,PUTWZ,4,9,S,YU,5406
-2021-09-23,00:19,Thursday,SHEPPARD-YONGE STATION,MUSAN,3,8,E,SHP,6196
-2021-09-24,06:00,Friday,TORONTO TRANSIT COMMIS,MRO,0,0,,SRT,0
-2021-09-24,06:00,Friday,TORONTO TRANSIT COMMIS,MUO,0,0,,YU,0
-2021-09-24,07:06,Friday,FINCH STATION,MUSC,0,0,S,YU,6056
-2021-09-24,16:36,Friday,MCCOWAN STATION,ERO,5,10,N,SRT,3013
-2021-09-24,17:48,Friday,KENNEDY SRT STATION,ERTC,17,22,N,SRT,3005
-2021-09-24,07:59,Friday,LESLIE STATION,PUMO,0,0,,BD,0
-2021-09-24,07:59,Friday,SPADINA YUS STATION,MUIRS,0,0,,YU,0
-2021-09-24,09:06,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-09-24,09:17,Friday,WELLESLEY STATION,SUPOL,20,23,N,YU,5626
-2021-09-24,09:39,Friday,GLENCAIRN STATION,EUVA,3,6,S,YU,5846
-2021-09-24,10:15,Friday,DUFFERIN STATION,SUUT,24,27,W,BD,5194
-2021-09-24,10:40,Friday,ST CLAIR WEST STATION,SUDP,3,6,S,YU,6131
-2021-09-24,10:53,Friday,HIGH PARK STATION,SUO,0,0,W,BD,5077
-2021-09-24,11:47,Friday,KEELE STATION,MUPAA,0,0,W,BD,5171
-2021-09-24,12:33,Friday,ROYAL YORK STATION,MUIRS,0,0,W,BD,0
-2021-09-24,12:44,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-09-24,12:49,Friday,CHRISTIE STATION,MUIS,0,0,W,BD,0
-2021-09-24,12:56,Friday,VAUGHAN MC STATION,MUTO,3,6,S,YU,5386
-2021-09-24,13:11,Friday,FINCH STATION,MUSC,0,0,S,YU,5661
-2021-09-24,13:28,Friday,SPADINA YUS STATION,SUUT,6,9,N,YU,5746
-2021-09-24,14:27,Friday,VAUGHAN MC STATION,TUMVS,0,0,N,YU,5996
-2021-09-24,14:46,Friday,KEELE STATION,MUTO,3,6,E,BD,5219
-2021-09-24,15:21,Friday,VAUGHAN MC STATION,TUNOA,5,10,S,YU,0
-2021-09-24,15:22,Friday,PAPE STATION,MUPAA,0,0,E,BD,5342
-2021-09-24,15:25,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-09-24,15:30,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-09-24,15:33,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-09-24,15:36,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-09-24,15:37,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-09-24,15:40,Friday,VAUGHAN MC STATION,TUNOA,5,10,S,YU,0
-2021-09-24,15:44,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-09-24,15:44,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-09-24,15:47,Friday,VAUGHAN MC STATION,TUNOA,5,10,S,YU,0
-2021-09-24,15:47,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-09-24,15:49,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-09-24,15:53,Friday,VAUGHAN MC STATION,TUNOA,5,10,S,YU,0
-2021-09-24,15:54,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-09-24,15:55,Friday,BAY STATION,SUDP,19,22,W,BD,5115
-2021-09-24,15:56,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-09-24,15:57,Friday,VAUGHAN MC STATION,TUNOA,5,10,S,YU,0
-2021-09-24,16:44,Friday,KIPLING STATION,MUNOA,3,6,W,BD,5115
-2021-09-24,17:11,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-09-24,17:12,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-09-24,18:13,Friday,WARDEN STATION,TUMVS,0,0,E,BD,5292
-2021-09-24,18:15,Friday,FINCH STATION,SUO,0,0,,YU,0
-2021-09-24,18:24,Friday,WELLESLEY STATION,MUIS,0,0,,YU,0
-2021-09-24,19:47,Friday,KING STATION,MUIRS,0,0,,YU,0
-2021-09-24,20:23,Friday,YORK MILLS STATION,MUIE,3,6,N,YU,5871
-2021-09-24,20:34,Friday,GREENWOOD STATION,PUMST,0,0,W,BD,0
-2021-09-24,21:53,Friday,ST ANDREW STATION,PUMEL,0,0,,YU,0
-2021-09-24,22:00,Friday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-09-24,22:28,Friday,OLD MILL STATION,MUPAA,0,0,E,BD,5346
-2021-09-24,22:57,Friday,BLOOR STATION,SUDP,4,9,N,YU,6116
-2021-09-24,23:14,Friday,DAVISVILLE STATION,MUPLB,5,10,N,YU,6001
-2021-09-24,06:00,Friday,TORONTO TRANSIT COMMIS,MUO,0,0,,SHP,0
-2021-09-24,06:22,Friday,DON MILLS STATION,TUMVS,0,0,E,SHP,6196
-2021-09-24,00:17,Friday,SHEPPARD-YONGE STATION,MUESA,0,0,E,SHP,6196
-2021-09-25,05:11,Saturday,LYTTON EMERGENCY EXIT,MUO,0,0,N,YU,0
-2021-09-25,22:10,Saturday,SCARBOROUGH CTR STATIO,ERDO,4,9,S,SRT,3016
-2021-09-25,06:00,Saturday,YONGE UNIVERSITY LINE,MUO,0,0,,YU,0
-2021-09-25,06:34,Saturday,SHEPPARD STATION,PUSTS,0,0,N,YU,5741
-2021-09-25,07:08,Saturday,WILSON STATION,MUATC,6,12,S,YU,5456
-2021-09-25,11:31,Saturday,KING STATION,SUUT,0,0,N,YU,0
-2021-09-25,13:32,Saturday,BLOOR STATION,MUIRS,0,0,S,YU,0
-2021-09-25,13:36,Saturday,COXWELL STATION,TUNIP,7,11,W,BD,5166
-2021-09-25,13:53,Saturday,BLOOR STATION,MUIS,0,0,,YU,0
-2021-09-25,14:04,Saturday,COLLEGE STATION,MUNCA,0,0,,YU,0
-2021-09-25,16:30,Saturday,SPADINA BD STATION,MUIR,8,12,E,BD,5234
-2021-09-25,16:49,Saturday,DUNDAS WEST STATION,SUAP,0,0,,BD,0
-2021-09-25,17:07,Saturday,UNION STATION,SUAP,6,12,N,YU,6131
-2021-09-25,17:42,Saturday,ST CLAIR WEST STATION,MUIRS,0,0,,YU,0
-2021-09-25,19:04,Saturday,JANE STATION,SUUT,3,7,W,BD,5283
-2021-09-25,19:48,Saturday,LAWRENCE STATION,MUIR,4,10,S,YU,5736
-2021-09-25,20:05,Saturday,UNION STATION,MUIS,0,0,,YU,0
-2021-09-25,20:20,Saturday,KIPLING STATION,SUDP,0,0,W,BD,5161
-2021-09-25,20:25,Saturday,LAWRENCE STATION,MUIR,16,22,S,YU,5731
-2021-09-25,20:33,Saturday,KIPLING STATION,PUSO,0,0,E,BD,5252
-2021-09-25,22:00,Saturday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-09-25,00:15,Saturday,ST ANDREW STATION,PUTO,3,10,N,YU,6136
-2021-09-25,01:51,Saturday,COLLEGE STATION,MUPAA,0,0,N,YU,5386
-2021-09-25,02:29,Saturday,SHEPPARD-YONGE STATION,EUOE,10,15,W,SHP,6161
-2021-09-25,08:36,Saturday,LESLIE STATION,MUSC,0,0,W,SHP,6191
-2021-09-26,08:25,Sunday,KENNEDY SRT STATION,MRTO,3,9,N,SRT,3025
-2021-09-26,02:22,Sunday,ROYAL YORK STATION,MUIS,0,0,,BD,0
-2021-09-26,19:19,Sunday,SCARBOROUGH CTR STATIO,SRO,0,0,W,SRT,3006
-2021-09-26,07:59,Sunday,YORK MILLS STATION,TUSC,0,0,S,YU,6056
-2021-09-26,19:44,Sunday,KENNEDY SRT STATION,MRUIR,5,11,E,SRT,0
-2021-09-26,08:00,Sunday,YONGE UNIVERSITY LINE,MUO,0,0,,YU,0
-2021-09-26,08:05,Sunday,GREENWOOD STATION,TUNOA,5,10,E,BD,0
-2021-09-26,09:37,Sunday,KENNEDY BD STATION,EUNT,5,10,W,BD,5017
-2021-09-26,10:40,Sunday,DUNDAS WEST STATION,EUDO,5,10,E,BD,5094
-2021-09-26,12:08,Sunday,YONGE BD STATION,PUMEL,0,0,,BD,0
-2021-09-26,12:37,Sunday,LAWRENCE STATION,SUO,0,0,S,YU,6056
-2021-09-26,13:00,Sunday,COXWELL STATION,TUNOA,5,10,E,BD,5111
-2021-09-26,15:02,Sunday,WILSON STATION,MUPAA,0,0,N,YU,6071
-2021-09-26,15:02,Sunday,WILSON STATION,PUOPO,3,8,S,YU,5676
-2021-09-26,15:12,Sunday,WILSON STATION,PUOPO,0,0,S,YU,5496
-2021-09-26,15:19,Sunday,ISLINGTON STATION,TUMVS,0,0,E,BD,5044
-2021-09-26,15:30,Sunday,WILSON STATION,PUOPO,0,0,N,YU,5796
-2021-09-26,15:33,Sunday,WILSON STATION,PUOPO,0,0,S,YU,6101
-2021-09-26,15:37,Sunday,WILSON STATION,PUOPO,0,0,N,YU,5421
-2021-09-26,15:39,Sunday,WILSON STATION,PUOPO,0,0,S,YU,5636
-2021-09-26,15:45,Sunday,WILSON STATION,PUOPO,0,0,S,YU,6076
-2021-09-26,15:50,Sunday,WILSON STATION,PUOPO,0,0,N,,5471
-2021-09-26,15:51,Sunday,WILSON STATION,PUOPO,0,0,S,YU,6081
-2021-09-26,15:52,Sunday,ISLINGTON STATION,MUIR,0,0,W,BD,5015
-2021-09-26,15:58,Sunday,WILSON STATION,PUOPO,0,0,N,YU,6061
-2021-09-26,16:03,Sunday,BLOOR STATION,MUIS,0,0,,YU,0
-2021-09-26,16:09,Sunday,WILSON STATION,PUOPO,0,0,S,YU,5791
-2021-09-26,16:16,Sunday,WILSON STATION,PUOPO,0,0,S,YU,5426
-2021-09-26,16:22,Sunday,WILSON STATION,PUOPO,0,0,S,YU,5851
-2021-09-26,17:33,Sunday,ST PATRICK STATION,MUPAA,3,8,S,YU,5676
-2021-09-26,18:07,Sunday,DUNDAS STATION,MUPAA,0,0,S,YU,5671
-2021-09-26,18:45,Sunday,RUNNYMEDE STATION,MUPAA,0,0,W,BD,5052
-2021-09-26,19:21,Sunday,BATHURST STATION,MUPAA,0,0,E,BD,5067
-2021-09-26,19:34,Sunday,BAY STATION,SUDP,0,0,E,BD,5252
-2021-09-26,19:39,Sunday,KING STATION,MUIS,0,0,N,YU,0
-2021-09-26,19:58,Sunday,CASTLE FRANK STATION,SUO,0,0,,BD,0
-2021-09-26,21:14,Sunday,SPADINA BD STATION,SUO,10,17,E,BD,5252
-2021-09-26,21:29,Sunday,SHERBOURNE STATION,MUPAA,0,0,E,BD,5252
-2021-09-26,22:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-09-26,23:02,Sunday,DOWNSVIEW PARK STATION,SUDP,55,62,S,YU,5851
-2021-09-26,23:46,Sunday,ST GEORGE YUS STATION,TUNIP,5,12,N,YU,6066
-2021-09-26,00:11,Sunday,SHEPPARD WEST STATION,MUATC,8,15,N,YU,5491
-2021-09-26,00:32,Sunday,VAUGHAN MC STATION,PUOPO,0,0,S,YU,5496
-2021-09-26,00:35,Sunday,HIGHWAY 407 STATION,PUOPO,17,24,S,YU,5496
-2021-09-26,01:45,Sunday,QUEEN STATION,MUSAN,7,14,N,YU,5826
-2021-09-26,13:07,Sunday,DON MILLS STATION,MUSAN,5,10,W,SHP,6156
-2021-09-26,15:20,Sunday,SHEPPARD-YONGE STATION,TUO,5,10,E,SHP,6196
-2021-09-26,16:29,Sunday,LESLIE STATION,EUBK,5,10,W,SHP,6156
-2021-09-27,05:43,Monday,EGLINTON STATION,TUNOA,4,7,N,YU,0
-2021-09-27,06:00,Monday,YONGE BD STATION,PUMST,0,0,,BD,0
-2021-09-27,06:00,Monday,GREENWOOD STATION,EUNT,4,9,E,BD,5105
-2021-09-27,06:01,Monday,WILSON YARD,TUNOA,4,8,S,YU,0
-2021-09-27,06:04,Monday,ST ANDREW STATION,SUDP,4,0,N,YU,6056
-2021-09-27,07:09,Monday,BLOOR STATION,MUIRS,0,0,S,YU,6011
-2021-09-27,07:14,Monday,RUNNYMEDE STATION,SUAE,24,28,W,BD,5286
-2021-09-27,08:24,Monday,SPADINA BD STATION,SUAP,4,7,W,BD,5348
-2021-09-27,08:29,Monday,DAVISVILLE STATION,EUBK,3,6,S,YU,5541
-2021-09-27,08:40,Monday,OSSINGTON STATION,SUDP,0,0,,BD,0
-2021-09-27,09:02,Monday,ST GEORGE BD STATION,PUSRA,4,7,E,BD,5305
-2021-09-27,09:04,Monday,FINCH WEST STATION,TUNOA,3,6,N,YU,5886
-2021-09-27,10:24,Monday,ROSEDALE STATION,MUSC,0,0,N,YU,5466
-2021-09-27,11:32,Monday,KIPLING STATION,MUSAN,3,6,W,BD,5090
-2021-09-27,11:58,Monday,FINCH STATION,MUTO,3,6,S,YU,5961
-2021-09-27,12:12,Monday,FINCH STATION,EUSC,3,6,N,YU,6016
-2021-09-27,12:31,Monday,COLLEGE STATION,MUPAA,0,0,N,YU,5571
-2021-09-27,13:07,Monday,YORKDALE STATION,PUMST,0,0,,YU,0
-2021-09-27,13:15,Monday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-09-27,13:19,Monday,BAY STATION,MUIS,0,0,,BD,0
-2021-09-27,13:54,Monday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-09-27,13:56,Monday,COLLEGE STATION,MUIR,4,7,N,YU,5826
-2021-09-27,15:05,Monday,ST CLAIR STATION,SUUT,4,7,S,YU,5781
-2021-09-27,15:18,Monday,ROYAL YORK STATION,TUSC,0,0,E,BD,5310
-2021-09-27,15:29,Monday,WOODBINE STATION,SUAP,0,0,,BD,0
-2021-09-27,16:39,Monday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-09-27,17:07,Monday,FINCH STATION,MUIR,3,6,S,YU,5946
-2021-09-27,17:13,Monday,WARDEN STATION,SUPOL,16,19,E,BD,5067
-2021-09-27,17:23,Monday,VICTORIA PARK STATION,MUIS,0,0,,BD,0
-2021-09-27,17:34,Monday,DUNDAS WEST STATION,MUPAA,0,0,W,BD,5283
-2021-09-27,17:35,Monday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-09-27,17:50,Monday,SPADINA BD STATION,MUIS,0,0,,BD,0
-2021-09-27,18:06,Monday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-09-27,18:36,Monday,COXWELL STATION,TUSUP,4,7,E,BD,5183
-2021-09-27,18:45,Monday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-09-27,19:06,Monday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-09-27,19:25,Monday,BLOOR STATION,SUDP,0,0,S,YU,5491
-2021-09-27,19:25,Monday,YONGE BD STATION,SUDP,0,0,E,BD,5015
-2021-09-27,19:52,Monday,ST PATRICK STATION,SUDP,9,12,S,YU,5766
-2021-09-27,19:57,Monday,WELLESLEY STATION,MUPAA,0,0,N,YU,5556
-2021-09-27,20:55,Monday,COXWELL STATION,SUBT,13,19,E,BD,5121
-2021-09-27,21:05,Monday,DUNDAS STATION,SUO,0,0,S,YU,0
-2021-09-27,22:00,Monday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-09-27,23:00,Monday,YONGE/UNIVERSITY/SPADI,MUO,0,0,,YU,0
-2021-09-27,23:27,Monday,SHEPPARD WEST STATION,SUDP,6,13,S,YU,5871
-2021-09-27,23:54,Monday,FINCH STATION,MUIS,0,0,,YU,0
-2021-09-27,00:00,Monday,YONGE/UNIVERSITY/SPADI,MUO,0,0,,YU,0
-2021-09-27,00:25,Monday,DAVISVILLE STATION,TUCC,0,0,N,YU,88
-2021-09-27,00:59,Monday,ROSEDALE STATION,MUATC,4,11,S,YU,6021
-2021-09-27,01:02,Monday,LAWRENCE STATION,MUO,3,10,N,YU,5766
-2021-09-27,01:43,Monday,ROSEDALE STATION,MUATC,3,10,S,YU,5406
-2021-09-27,17:42,Monday,BESSARION STATION,PUOPO,0,0,W,SHP,6171
-2021-09-27,01:34,Monday,SHEPPARD-YONGE STATION,TUNOA,6,12,W,SHP,6166
-2021-09-28,02:08,Tuesday,FINCH STATION,SUAE,0,0,,YU,0
-2021-09-28,18:24,Tuesday,MCCOWAN STATION,ERDO,6,12,W,SRT,0
-2021-09-28,18:36,Tuesday,MCCOWAN STATION,ERAC,6,12,N,SRT,0
-2021-09-28,05:55,Tuesday,YONGE BD STATION,MUSAN,5,0,W,BD,5244
-2021-09-28,05:55,Tuesday,GREENWOOD STATION,TUNOA,5,10,E,BD,0
-2021-09-28,01:39,Tuesday,LAWRENCE EAST STATION,MRO,0,0,,SRT,0
-2021-09-28,06:05,Tuesday,WARDEN STATION,EUNT,4,9,E,BD,5270
-2021-09-28,06:12,Tuesday,GREENWOOD STATION,EUYRD,4,9,E,BD,5163
-2021-09-28,08:00,Tuesday,WARDEN STATION,SUDP,0,0,,BD,0
-2021-09-28,08:33,Tuesday,OLD MILL STATION,TUOS,3,6,E,BD,5213
-2021-09-28,09:23,Tuesday,DUNDAS WEST STATION,MUD,5,8,W,BD,5077
-2021-09-28,09:46,Tuesday,YONGE BD STATION,PUMEL,0,0,,BD,0
-2021-09-28,09:48,Tuesday,ST GEORGE YUS STATION,SUUT,0,0,N,YU,5481
-2021-09-28,09:57,Tuesday,SUMMERHILL STATION,TUOS,0,0,N,YU,5816
-2021-09-28,10:08,Tuesday,YORKDALE STATION,SUO,0,0,N,YU,5941
-2021-09-28,10:22,Tuesday,FINCH STATION,MUTO,3,6,N,YU,5816
-2021-09-28,10:37,Tuesday,WELLESLEY STATION,MUPAA,0,0,N,YU,5976
-2021-09-28,10:47,Tuesday,PAPE STATION,MUIS,0,0,,BD,0
-2021-09-28,10:55,Tuesday,BATHURST STATION,MUIS,0,0,,BD,0
-2021-09-28,12:02,Tuesday,HIGHWAY 407 STATION,MUPAA,0,0,N,YU,6111
-2021-09-28,13:40,Tuesday,WARDEN STATION,MUTO,3,6,E,BD,5077
-2021-09-28,14:25,Tuesday,PAPE STATION,TUNOA,3,6,E,BD,0
-2021-09-28,14:42,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-09-28,14:49,Tuesday,BLOOR STATION,MUIS,0,0,N,YU,0
-2021-09-28,15:14,Tuesday,SHEPPARD STATION,TUMVS,0,0,N,YU,5796
-2021-09-28,15:17,Tuesday,ST CLAIR STATION,SUDP,0,0,S,YU,6011
-2021-09-28,16:19,Tuesday,VICTORIA PARK STATION,MUIS,0,0,,BD,0
-2021-09-28,16:28,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5491
-2021-09-28,16:37,Tuesday,QUEEN STATION,SUDP,6,9,N,YU,5786
-2021-09-28,16:39,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-09-28,16:45,Tuesday,DUNDAS STATION,SUDP,7,10,N,YU,5786
-2021-09-28,17:09,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-09-28,17:27,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-09-28,17:38,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,6131
-2021-09-28,18:11,Tuesday,QUEEN STATION,TUO,0,0,S,YU,6031
-2021-09-28,19:06,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-09-28,19:32,Tuesday,SHERBOURNE STATION,MUPAA,0,0,E,BD,5163
-2021-09-28,20:54,Tuesday,YONGE BD STATION,SUDP,21,27,W,BD,5242
-2021-09-28,21:26,Tuesday,VAUGHAN MC STATION,TUNOA,5,10,S,YU,6121
-2021-09-28,21:31,Tuesday,ST GEORGE BD STATION,SUSA,0,0,,BD,0
-2021-09-28,21:35,Tuesday,CASTLE FRANK STATION,SUO,0,0,E,BD,0
-2021-09-28,22:00,Tuesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-09-28,22:23,Tuesday,QUEEN STATION,MUIRS,0,0,N,YU,0
-2021-09-28,22:29,Tuesday,VAUGHAN MC STATION,TUNOA,5,10,S,YU,5476
-2021-09-28,22:32,Tuesday,FINCH STATION,SUDP,3,8,S,YU,6011
-2021-09-28,23:13,Tuesday,MUSEUM STATION,MUIRS,0,0,S,YU,0
-2021-09-28,23:14,Tuesday,VAUGHAN MC STATION,TUNOA,5,10,S,YU,0
-2021-09-28,23:15,Tuesday,YONGE/UNIVERSITY/SPADI,MUO,0,0,,YU,0
-2021-09-28,23:24,Tuesday,VAUGHAN MC STATION,TUNOA,5,10,S,YU,0
-2021-09-28,23:54,Tuesday,COLLEGE STATION,MUPLC,0,0,,YU,0
-2021-09-28,00:03,Tuesday,YORK UNIVERSITY STATIO,MUATC,3,8,N,YU,5926
-2021-09-28,00:54,Tuesday,YONGE/UNIVERSITY/SPADI,MUO,0,0,,YU,0
-2021-09-28,01:14,Tuesday,ROSEDALE STATION,MUATC,4,11,S,YU,5671
-2021-09-28,01:47,Tuesday,KING STATION,MUIRS,0,0,N,YU,0
-2021-09-28,11:25,Tuesday,SHEPPARD-YONGE STATION,TUSC,0,0,W,SHP,6191
-2021-09-28,12:34,Tuesday,BAYVIEW STATION,EUSC,0,0,E,SHP,6176
-2021-09-28,12:46,Tuesday,DON MILLS STATION,PUSO,13,18,W,SHP,6191
-2021-09-29,02:05,Wednesday,WILSON STATION,MUIRS,0,0,,YU,0
-2021-09-29,05:52,Wednesday,KENNEDY BD STATION,EUBK,6,12,W,BD,5118
-2021-09-29,07:23,Wednesday,COLLEGE STATION,MUI,12,15,S,YU,6066
-2021-09-29,07:46,Wednesday,SHERBOURNE STATION,SUDP,0,0,W,BD,5183
-2021-09-29,09:37,Wednesday,DAVISVILLE STATION,TUATC,3,6,S,YU,6106
-2021-09-29,09:39,Wednesday,COXWELL STATION,TUNOA,3,6,E,BD,0
-2021-09-29,09:44,Wednesday,YONGE BD STATION,MUIR,0,0,W,BD,5140
-2021-09-29,10:20,Wednesday,YORKDALE STATION,MUIR,7,10,N,YU,5781
-2021-09-29,10:49,Wednesday,OSSINGTON STATION,SUDP,8,11,W,BD,5259
-2021-09-29,12:06,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,,YU,5476
-2021-09-29,13:20,Wednesday,COXWELL STATION,TUNOA,3,6,E,BD,0
-2021-09-29,13:46,Wednesday,COXWELL STATION,TUNOA,0,0,E,BD,5000
-2021-09-29,13:46,Wednesday,COXWELL STATION,TUNOA,3,6,E,BD,0
-2021-09-29,13:49,Wednesday,VAUGHAN MC STATION,SUAP,0,0,S,YU,5836
-2021-09-29,14:11,Wednesday,DAVISVILLE STATION,PUSTS,3,6,N,YU,5926
-2021-09-29,14:18,Wednesday,YONGE BD STATION,SUUT,11,14,E,BD,5218
-2021-09-29,14:23,Wednesday,FINCH STATION,MUTO,3,6,S,YU,5581
-2021-09-29,14:57,Wednesday,PAPE STATION,TUNOA,3,7,E,BD,0
-2021-09-29,15:05,Wednesday,COXWELL STATION,TUNOA,0,0,,BD,0
-2021-09-29,15:20,Wednesday,COXWELL STATION,MUNOA,0,0,E,BD,0
-2021-09-29,15:50,Wednesday,VAUGHAN MC STATION,TUSUP,5,8,S,YU,5581
-2021-09-29,16:31,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-09-29,16:52,Wednesday,WOODBINE STATION,MUIS,0,0,W,BD,0
-2021-09-29,17:38,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-09-29,17:48,Wednesday,DUFFERIN STATION,MUNCA,0,0,,BD,0
-2021-09-29,18:09,Wednesday,COXWELL STATION,TUNOA,0,0,E,BD,5000
-2021-09-29,19:12,Wednesday,COXWELL STATION,TUNOA,3,6,E,BD,0
-2021-09-29,20:04,Wednesday,BLOOR STATION,MUTO,3,6,N,YU,5571
-2021-09-29,20:38,Wednesday,FINCH WEST STATION,SUDP,0,0,,YU,0
-2021-09-29,20:47,Wednesday,DUNDAS STATION,SUUT,20,23,S,YU,5871
-2021-09-29,21:47,Wednesday,FINCH STATION,MUSC,0,0,S,YU,5521
-2021-09-29,22:00,Wednesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU / BD,0
-2021-09-29,22:58,Wednesday,YORKDALE STATION,MUPAA,0,0,N,YU,6131
-2021-09-29,23:15,Wednesday,KING STATION TO EGLINT,MUO,0,0,,YU,0
-2021-09-29,00:54,Wednesday,UNION STATION,MUIS,0,0,,YU,0
-2021-09-29,01:04,Wednesday,YORK MILLS STATION,EUSC,0,0,N,YU,5426
-2021-09-29,01:21,Wednesday,DOWNSVIEW PARK STATION,MUPAA,0,0,S,YU,6051
-2021-09-29,01:33,Wednesday,KING STATION,MUIR,5,10,S,YU,5381
-2021-09-29,01:57,Wednesday,SHERBOURNE STATION,MUPAA,0,0,E,BD,5011
-2021-09-29,23:33,Wednesday,SHEPPARD-YONGE STATION,TUO,0,0,E,SHP,6176
-2021-09-30,02:46,Thursday,FINCH STATION,MUIE,0,0,,YU,0
-2021-09-30,03:46,Thursday,DAVISVILLE YARD,MUO,0,0,,YU,0
-2021-09-30,05:13,Thursday,BAY STATION,MUPLB,0,0,W,BD,0
-2021-09-30,05:25,Thursday,DAVISVILLE STATION,PUSTC,6,11,S,YU,5811
-2021-09-30,05:39,Thursday,YORK MILLS STATION,PUTSC,11,0,N,YU,5731
-2021-09-30,06:38,Thursday,DAVISVILLE STATION,SUDP,3,7,S,YU,5731
-2021-09-30,06:58,Thursday,EGLINTON STATION,TUO,6,10,S,YU,6106
-2021-09-30,07:05,Thursday,VAUGHAN MC STATION,PUSTS,3,6,N,YU,5521
-2021-09-30,07:17,Thursday,KEELE STATION,SUO,18,21,W,BD,5354
-2021-09-30,07:43,Thursday,FINCH STATION,MUSC,0,0,S,YU,5446
-2021-09-30,08:17,Thursday,EGLINTON STATION,SUDP,4,7,N,YU,6006
-2021-09-30,09:16,Thursday,WELLESLEY STATION,EULT,3,6,S,YU,5636
-2021-09-30,09:35,Thursday,COXWELL STATION,TUNOA,3,6,E,BD,0
-2021-09-30,09:39,Thursday,COXWELL STATION,TUNOA,3,6,E,BD,0
-2021-09-30,10:03,Thursday,DAVISVILLE STATION,TUOS,3,6,N,YU,5441
-2021-09-30,10:43,Thursday,MAIN STREET STATION,SUDP,0,0,,BD,0
-2021-09-30,10:49,Thursday,ROSEDALE STATION,MUSC,0,0,N,YU,5476
-2021-09-30,12:05,Thursday,ST CLAIR STATION,MUSAN,3,6,S,YU,5731
-2021-09-30,12:14,Thursday,DUNDAS STATION,SUO,0,0,S,YU,5886
-2021-09-30,12:39,Thursday,EGLINTON WEST STATION,MUIRS,0,0,,YU,0
-2021-09-30,12:45,Thursday,EGLINTON STATION,SUAP,0,0,N,YU,5441
-2021-09-30,13:16,Thursday,COXWELL STATION,TUNOA,3,6,,BD,0
-2021-09-30,13:20,Thursday,COXWELL STATION,TUNOA,0,0,E,BD,0
-2021-09-30,13:39,Thursday,WILSON STATION,MUATC,4,7,S,YU,6021
-2021-09-30,15:04,Thursday,KING STATION,MUPAA,4,7,N,YU,5441
-2021-09-30,15:46,Thursday,ROYAL YORK STATION,EUME,11,14,E,BD,5084
-2021-09-30,15:55,Thursday,NORTH YORK CTR STATION,MUSC,0,0,S,YU,5776
-2021-09-30,16:34,Thursday,KING STATION,MUIRS,0,0,S,YU,0
-2021-09-30,16:59,Thursday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,6116
-2021-09-30,17:12,Thursday,KENNEDY BD STATION,MUIR,3,6,E,BD,5338
-2021-09-30,17:16,Thursday,FINCH STATION,MUTO,3,6,S,YU,5566
-2021-09-30,17:16,Thursday,COXWELL STATION,TUNOA,3,6,E,BD,0
-2021-09-30,17:41,Thursday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5856
-2021-09-30,17:51,Thursday,ROSEDALE STATION,SUUT,33,36,N,YU,5561
-2021-09-30,18:23,Thursday,KING STATION,MUO,0,0,,YU,0
-2021-09-30,18:42,Thursday,FINCH STATION,PUSSW,3,6,S,YU,6056
-2021-09-30,19:02,Thursday,WELLESLEY STATION,MUIS,0,0,,YU,0
-2021-09-30,19:40,Thursday,CHESTER STATION,MUIS,0,0,,BD,0
-2021-09-30,20:19,Thursday,SHERBOURNE STATION,MUPAA,3,9,E,BD,5011
-2021-09-30,21:15,Thursday,RUNNYMEDE STATION,MUSC,0,0,W,BD,5338
-2021-09-30,22:00,Thursday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-09-30,22:11,Thursday,WELLESLEY STATION,SUUT,23,28,S,YU,5436
-2021-09-30,22:17,Thursday,DAVISVILLE STATION,PUTDN,4,9,N,YU,5881
-2021-09-30,22:49,Thursday,SPADINA BD STATION,EUDO,0,0,E,BD,5278
-2021-09-30,22:58,Thursday,VICTORIA PARK STATION,MUIR,14,20,E,BD,5307
-2021-09-30,23:00,Thursday,EGLINTON STATION,MUO,0,0,,YU,0
-2021-09-30,23:00,Thursday,OLD MILL STATION,MUIS,0,0,,BD,0
-2021-09-30,23:23,Thursday,LAWRENCE WEST STATION,SUDP,0,0,N,YU,6036
-2021-09-30,23:29,Thursday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5476
-2021-09-30,00:40,Thursday,DUNDAS STATION,MUIS,0,0,,YU,0
-2021-09-30,01:46,Thursday,PAPE STATION,SUUT,11,18,W,BD,5259
-2021-09-30,16:04,Thursday,BAYVIEW STATION,EUSC,0,0,E,SHP,6176
-2021-09-30,18:40,Thursday,SHEPPARD-YONGE STATION,MUSC,0,0,E,SHP,6171
-2021-10-01,02:02,Friday,DUNDAS WEST STATION,MUIS,0,0,,BD,0
-2021-10-01,12:12,Friday,MCCOWAN STATION,TRNOA,6,12,S,SRT,0
-2021-10-01,05:38,Friday,EGLINTON STATION,SUUT,8,0,N,YU,6026
-2021-10-01,12:49,Friday,KENNEDY SRT STATION,PRSA,45,53,S,SRT,3006
-2021-10-01,05:38,Friday,YORK MILLS STATION,SUUT,7,0,N,YU,5871
-2021-10-01,06:26,Friday,DOWNSVIEW PARK STATION,MUSC,0,0,N,YU,5976
-2021-10-01,06:38,Friday,FINCH STATION,MUSC,0,0,S,YU,5816
-2021-10-01,06:54,Friday,KIPLING STATION,TUO,3,6,E,BD,5015
-2021-10-01,07:14,Friday,DUNDAS WEST STATION,SUAE,0,0,,BD,0
-2021-10-01,09:26,Friday,ROSEDALE STATION,MUSC,0,0,S,YU,5466
-2021-10-01,10:30,Friday,YORK MILLS STATION,TUSC,3,6,S,YU,6006
-2021-10-01,11:19,Friday,CHESTER STATION,SUDP,0,0,W,BD,5345
-2021-10-01,11:55,Friday,ST ANDREW STATION,MUPAA,0,0,N,YU,5886
-2021-10-01,12:08,Friday,NORTH YORK CTR STATION,TUMVS,0,0,N,YU,5611
-2021-10-01,13:57,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-01,14:48,Friday,FINCH STATION,MUIE,0,0,N,YU,5861
-2021-10-01,14:53,Friday,FINCH STATION,TUSC,0,0,N,YU,5526
-2021-10-01,15:16,Friday,BROADVIEW STATION,EUME,7,10,W,BD,5259
-2021-10-01,15:24,Friday,BATHURST STATION,MUIRS,0,0,,BD,0
-2021-10-01,15:25,Friday,QUEEN STATION,MUIRS,0,0,N,YU,0
-2021-10-01,15:34,Friday,YONGE BD STATION,SUAE,5,8,E,BD,5307
-2021-10-01,15:35,Friday,VAUGHAN MC STATION,MUIS,0,0,,YU,0
-2021-10-01,15:58,Friday,GREENWOOD STATION,PUMEL,0,0,,BD,0
-2021-10-01,16:28,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-01,16:37,Friday,VAUGHAN MC STATION,MUTO,3,6,S,YU,5466
-2021-10-01,16:58,Friday,UNION STATION,MUIRS,0,0,,YU,0
-2021-10-01,17:16,Friday,SPADINA BD STATION,MUIRS,0,0,W,BD,5022
-2021-10-01,17:56,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-01,18:13,Friday,LAWRENCE STATION,SUAP,0,0,N,YU,0
-2021-10-01,19:32,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-01,19:56,Friday,OSSINGTON STATION,SUDP,3,8,W,BD,5233
-2021-10-01,20:04,Friday,CASTLE FRANK STATION,MUIRS,0,0,E,BD,0
-2021-10-01,20:14,Friday,ST GEORGE YUS STATION,MUI,13,16,N,YU,5731
-2021-10-01,20:56,Friday,DONLANDS STATION,PUSTC,6,12,E,BD,5156
-2021-10-01,20:59,Friday,DUNDAS WEST STATION,TUMVS,0,0,W,BD,5072
-2021-10-01,21:25,Friday,WOODBINE STATION,MUIS,0,0,,BD,0
-2021-10-01,21:36,Friday,ST ANDREW STATION,SUO,0,0,S,YU,6021
-2021-10-01,21:45,Friday,BAY STATION,MUPAA,0,0,E,BD,5278
-2021-10-01,22:00,Friday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-10-01,23:15,Friday,KING STATION TO EGLINT,MUO,0,0,,YU,0
-2021-10-01,23:18,Friday,JANE STATION,TUOS,0,0,E,BD,5119
-2021-10-01,00:02,Friday,EGLINTON STATION,MUPAA,4,11,S,YU,6071
-2021-10-01,00:33,Friday,WELLESLEY STATION,SUDP,0,0,,,0
-2021-10-01,00:59,Friday,LESLIE STATION,MUSC,0,0,W,SHP,6171
-2021-10-02,16:08,Saturday,SCARBOROUGH CTR STATIO,SRAP,0,0,,SRT,0
-2021-10-02,02:30,Saturday,WILSON GARAGE,SUO,0,0,,YU,0
-2021-10-02,19:11,Saturday,LAWRENCE EAST STATION,ERTC,5,10,N,SRT,3013
-2021-10-02,05:49,Saturday,QUEEN'S PARK STATION,MUIRS,0,0,,YU,0
-2021-10-02,19:14,Saturday,LAWRENCE EAST STATION,MRPAA,0,0,N,SRT,3003
-2021-10-02,05:50,Saturday,VAUGHAN MC STATION,MUATC,15,0,S,YU,5856
-2021-10-02,05:56,Saturday,KENNEDY BD STATION,TUKEY,4,10,W,BD,5233
-2021-10-02,22:38,Saturday,LAWRENCE EAST STATION,SREAS,13,18,N,SRT,3023
-2021-10-02,06:01,Saturday,BLOOR STATION,MUATC,54,0,S,YU,5546
-2021-10-02,06:15,Saturday,MAIN STREET STATION,EUPI,5,10,W,BD,5155
-2021-10-02,06:48,Saturday,FINCH STATION,PUTD,0,0,N,YU,5521
-2021-10-02,06:52,Saturday,WILSON STATION,MUATC,0,0,S,YU,5631
-2021-10-02,07:09,Saturday,JANE STATION,EUCD,5,10,E,BD,5204
-2021-10-02,09:43,Saturday,WELLESLEY STATION,SUDP,4,10,N,YU,6011
-2021-10-02,09:51,Saturday,ROYAL YORK STATION,SUAP,0,0,,BD,0
-2021-10-02,10:02,Saturday,GREENWOOD STATION,MUCL,4,8,E,BD,0
-2021-10-02,10:42,Saturday,SHEPPARD WEST STATION,MUSAN,6,12,N,YU,5791
-2021-10-02,12:04,Saturday,VAUGHAN MC STATION,TUNIP,7,13,S,YU,6126
-2021-10-02,12:13,Saturday,CASTLE FRANK STATION,MUIRS,0,0,,BD,0
-2021-10-02,13:10,Saturday,KIPLING STATION,SUDP,4,8,E,BD,5128
-2021-10-02,13:42,Saturday,YONGE BD STATION,SUAE,3,7,E,BD,5128
-2021-10-02,13:54,Saturday,WARDEN STATION,MUO,0,0,,BD,0
-2021-10-02,13:56,Saturday,PAPE STATION,MUDD,3,7,W,BD,5306
-2021-10-02,14:20,Saturday,ST GEORGE TO SHEPPARD,MUATC,0,0,,YU,0
-2021-10-02,15:04,Saturday,PAPE STATION,TUNOA,3,7,E,BD,0
-2021-10-02,16:22,Saturday,LANSDOWNE STATION,MUIR,0,0,E,BD,5033
-2021-10-02,17:25,Saturday,SHEPPARD TO BLOOR,MUATC,0,0,,YU,0
-2021-10-02,18:08,Saturday,WELLESLEY STATION,MUPAA,0,0,N,YU,5981
-2021-10-02,19:36,Saturday,ST CLAIR WEST STATION,PUMEL,0,0,N,YU,0
-2021-10-02,19:46,Saturday,DUPONT STATION,MUIS,0,0,N,YU,5551
-2021-10-02,20:47,Saturday,ISLINGTON STATION,PUMEL,0,0,W,BD,0
-2021-10-02,21:35,Saturday,COXWELL STATION,MUI,0,0,W,BD,5340
-2021-10-02,21:51,Saturday,EGLINTON STATION (APPR,TUATC,4,9,S,YU,5686
-2021-10-02,22:00,Saturday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-10-02,22:19,Saturday,BATHURST STATION,SUO,7,14,W,BD,5036
-2021-10-02,22:55,Saturday,LAWRENCE STATION,TUATC,3,8,N,YU,5541
-2021-10-02,22:55,Saturday,KIPLING STATION,MUSAN,4,11,E,BD,5001
-2021-10-02,23:00,Saturday,ROYAL YORK STATION,SUDP,0,0,W,BD,5135
-2021-10-02,23:19,Saturday,ROYAL YORK STATION,SUEAS,16,23,W,BD,5098
-2021-10-02,00:10,Saturday,SHEPPARD WEST STATION,MUTO,0,0,N,YU,5851
-2021-10-03,08:05,Sunday,EGLINTON STATION,TUATC,4,0,N,YU,5471
-2021-10-03,13:46,Sunday,SCARBOROUGH CTR STATIO,MRPAA,0,0,N,SRT,3018
-2021-10-03,08:14,Sunday,EGLINTON STATION,TUATC,3,9,N,YU,6121
-2021-10-03,08:16,Sunday,WARDEN STATION,MUPAA,0,0,W,BD,5101
-2021-10-03,08:17,Sunday,EGLINTON STATION,TUATC,3,9,S,YU,5761
-2021-10-03,09:17,Sunday,ST GEORGE YUS STATION,PUOPO,0,0,N,YU,5641
-2021-10-03,09:33,Sunday,SPADINA YUS STATION,PUOPO,7,12,N,YU,5641
-2021-10-03,09:42,Sunday,DUPONT STATION,PUOPO,6,11,N,YU,5641
-2021-10-03,10:09,Sunday,EGLINTON STATION,TUATC,3,8,S,YU,5926
-2021-10-03,10:18,Sunday,OSSINGTON STATION,MUSC,0,0,E,BD,5001
-2021-10-03,10:52,Sunday,EGLINTON WEST STATION,PUOPO,0,0,N,YU,5926
-2021-10-03,11:15,Sunday,PIONEER VILLAGE STATIO,PUOPO,3,8,N,YU,5926
-2021-10-03,11:50,Sunday,LANSDOWNE STATION,SUDP,6,11,W,BD,5226
-2021-10-03,12:01,Sunday,EGLINTON STATION,TUATC,3,8,S,YU,5906
-2021-10-03,12:18,Sunday,LAWRENCE STATION,MUSC,0,0,S,YU,5851
-2021-10-03,12:38,Sunday,BLOOR STATION,SUDP,0,0,S,YU,5956
-2021-10-03,13:00,Sunday,UNION STATION,MUIS,0,0,,YU,0
-2021-10-03,13:27,Sunday,SHERBOURNE STATION,MUPAA,3,8,E,BD,5056
-2021-10-03,13:28,Sunday,ST GEORGE YUS STATION,PUOPO,3,8,N,YU,5926
-2021-10-03,14:14,Sunday,ST CLAIR WEST STATION,MUPAA,7,12,N,YU,5761
-2021-10-03,14:21,Sunday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-10-03,15:09,Sunday,FINCH WEST STATION,PUOPO,8,13,S,YU,6011
-2021-10-03,15:23,Sunday,SHEPPARD WEST STATION,PUOPO,5,10,S,YU,6011
-2021-10-03,15:24,Sunday,FINCH STATION,TUNOA,5,10,S,YU,0
-2021-10-03,15:57,Sunday,WARDEN STATION,MUIRS,0,0,,BD,0
-2021-10-03,16:43,Sunday,YORK UNIVERSITY STATIO,PUOPO,0,0,N,YU,5611
-2021-10-03,17:00,Sunday,OSGOODE STATION,MUPAA,0,0,N,YU,6096
-2021-10-03,17:12,Sunday,QUEEN STATION,MUNCA,0,0,,YU,0
-2021-10-03,18:19,Sunday,OSSINGTON STATION,SUUT,18,23,E,BD,5122
-2021-10-03,18:39,Sunday,ST GEORGE BD STATION,PUMST,0,0,E,BD,0
-2021-10-03,19:37,Sunday,MAIN STREET STATION,PUMEL,0,0,,BD,0
-2021-10-03,19:53,Sunday,UNION STATION,MUPAA,0,0,N,YU,5471
-2021-10-03,20:04,Sunday,FINCH STATION,TUNOA,7,14,S,YU,0
-2021-10-03,20:47,Sunday,YORKDALE STATION,MUIS,0,0,,YU,0
-2021-10-03,22:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU / BD,0
-2021-10-03,22:21,Sunday,FINCH STATION,PUTD,0,0,N,YU,6076
-2021-10-03,22:47,Sunday,EGLINTON STATION,TUATC,5,12,S,YU,5636
-2021-10-03,23:31,Sunday,ISLINGTON STATION,SUAP,0,0,,BD,0
-2021-10-03,23:35,Sunday,BROADVIEW STATION,MUIS,0,0,E,BD,0
-2021-10-03,01:30,Sunday,DAVISVILLE STATION,SUDP,3,10,N,YU,6071
-2021-10-03,01:44,Sunday,WELLESLEY STATION,MUIS,0,0,,YU,0
-2021-10-03,01:54,Sunday,BLOOR STATION,SUUT,11,18,S,YU,0
-2021-10-03,12:19,Sunday,BAYVIEW STATION,EUSC,0,0,E,SHP,6176
-2021-10-03,00:21,Sunday,LESLIE STATION,TUSC,0,0,W,SHP,6141
-2021-10-04,02:11,Monday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-10-04,18:52,Monday,KENNEDY SRT STATION,SRO,16,21,S,SRT,3026
-2021-10-04,19:54,Monday,MCCOWAN STATION,TRO,4,9,S,SRT,3016
-2021-10-04,05:35,Monday,ST PATRICK STATION,MUNCA,0,0,,YU,0
-2021-10-04,06:03,Monday,NORTH YORK CTR STATION,MUDD,12,15,N,YU,6031
-2021-10-04,06:07,Monday,DAVISVILLE STATION,SUDP,0,0,S,YU,5461
-2021-10-04,06:20,Monday,UNION STATION,MUPLB,170,173,N,YU,5681
-2021-10-04,06:31,Monday,PIONEER VILLAGE STATIO,PUMEL,0,0,S,35 JANE,1054
-2021-10-04,06:48,Monday,COXWELL STATION,EUBO,3,6,E,BD,5231
-2021-10-04,06:53,Monday,KIPLING STATION,EUDO,4,7,E,BD,5044
-2021-10-04,07:01,Monday,EGLINTON STATION,TUATC,3,6,S,YU,5886
-2021-10-04,07:33,Monday,DONLANDS STATION,EUDO,3,6,E,BD,5044
-2021-10-04,07:54,Monday,VICTORIA PARK STATION,PUSO,5,8,W,BD,5304
-2021-10-04,08:00,Monday,QUEEN'S PARK STATION,MUI,7,10,S,YU,5521
-2021-10-04,08:22,Monday,BATHURST STATION,MUPAA,0,0,W,BD,5001
-2021-10-04,08:27,Monday,YONGE BD STATION,MUIRS,0,0,,BD,0
-2021-10-04,08:36,Monday,OSSINGTON STATION,SUDP,0,0,W,BD,5262
-2021-10-04,09:03,Monday,KIPLING STATION,TUMVS,4,7,W,BD,5119
-2021-10-04,09:26,Monday,VAUGHAN MC STATION,MUATC,3,6,S,YU,5401
-2021-10-04,09:38,Monday,UNION STATION,MUIS,0,0,,YU,0
-2021-10-04,09:54,Monday,ROYAL YORK STATION,MUNCA,0,0,,BD,0
-2021-10-04,10:05,Monday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-10-04,11:25,Monday,YORK MILLS STATION,TUSC,0,0,N,YU,5781
-2021-10-04,11:31,Monday,EGLINTON STATION,MUATC,11,14,S,YU,6086
-2021-10-04,12:27,Monday,BAY STATION,SUAP,10,13,W,BD,5221
-2021-10-04,13:06,Monday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-04,13:23,Monday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5000
-2021-10-04,13:38,Monday,BLOOR STATION,SUEAS,10,13,S,YU,5936
-2021-10-04,13:39,Monday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5000
-2021-10-04,13:48,Monday,KEELE STATION,MUI,6,9,W,BD,5161
-2021-10-04,14:12,Monday,VAUGHAN MC STATION,TUNOA,3,3,S,YU,5916
-2021-10-04,14:30,Monday,UNION STATION,SUAP,0,0,,YU,0
-2021-10-04,14:52,Monday,EGLINTON STATION,MUO,3,6,N,YU,5466
-2021-10-04,15:11,Monday,VAUGHAN MC STATION,MUSAN,3,6,S,YU,5636
-2021-10-04,15:16,Monday,SPADINA BD STATION,SUAE,0,0,W,BD,5013
-2021-10-04,15:54,Monday,PAPE STATION,SUDP,0,0,W,BD,5247
-2021-10-04,16:15,Monday,LANSDOWNE STATION,MUPLB,27,30,W,BD,5056
-2021-10-04,16:32,Monday,DAVISVILLE STATION,MUPAA,0,0,N,YU,5521
-2021-10-04,16:35,Monday,SPADINA BD STATION,PUMEL,0,0,,BD,0
-2021-10-04,16:55,Monday,ISLINGTON STATION,MUPAA,0,0,W,BD,5030
-2021-10-04,17:06,Monday,NORTH YORK CTR STATION,SUDP,4,7,S,YU,5521
-2021-10-04,17:09,Monday,DAVISVILLE STATION,SUDP,5,8,N,YU,6131
-2021-10-04,17:15,Monday,QUEEN STATION,MUPAA,0,0,S,YU,5636
-2021-10-04,17:17,Monday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5000
-2021-10-04,18:17,Monday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5000
-2021-10-04,18:50,Monday,KENNEDY BD STATION,SUO,15,21,E,BD,5018
-2021-10-04,18:52,Monday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5000
-2021-10-04,19:34,Monday,VAUGHAN MC STATION,TUNIP,6,9,S,YU,6126
-2021-10-04,21:19,Monday,VAUGHAN MC STATION,TUNOA,5,10,S,YU,5000
-2021-10-04,21:32,Monday,YORKDALE STATION,MUATC,4,9,S,YU,6131
-2021-10-04,22:00,Monday,ST GEORGE YUS STATION,SUDP,4,9,S,YU,5826
-2021-10-04,22:00,Monday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-10-04,23:06,Monday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5000
-2021-10-04,00:36,Monday,QUEEN STATION,MUIS,0,0,S,YU,0
-2021-10-04,00:55,Monday,ST CLAIR WEST STATION,MUIRS,0,0,,YU,0
-2021-10-04,01:34,Monday,DUNDAS STATION,SUDP,0,0,,YU,0
-2021-10-04,17:59,Monday,LESLIE STATION,EUDO,5,10,E,SHP,6166
-2021-10-05,05:16,Tuesday,DUNDAS WEST STATION,MUIS,0,0,,BD,0
-2021-10-05,07:08,Tuesday,KENNEDY SRT STATION,MRUI,19,24,N,SRT,3007
-2021-10-05,05:42,Tuesday,CASTLE FRANK STATION,PUTSC,0,0,W,BD,5349
-2021-10-05,23:15,Tuesday,MCCOWAN STATION,TRNOA,6,12,N,SRT,3009
-2021-10-05,05:55,Tuesday,CHRISTIE STATION,PUTWZ,3,0,E,BD,5351
-2021-10-05,06:00,Tuesday,FINCH STATION,MUATC,3,6,N,YU,5831
-2021-10-05,06:14,Tuesday,EGLINTON STATION,MUATC,5,8,S,YU,5666
-2021-10-05,08:07,Tuesday,QUEEN'S PARK STATION,MUNCA,0,0,,YU,0
-2021-10-05,08:22,Tuesday,FINCH STATION,MUSC,0,0,S,YU,6466
-2021-10-05,08:27,Tuesday,DUNDAS STATION,MUIS,0,0,S,YU,0
-2021-10-05,08:28,Tuesday,KENNEDY BD STATION,MUTO,3,6,W,BD,5007
-2021-10-05,08:31,Tuesday,GREENWOOD STATION,EUNT,3,6,W,BD,5066
-2021-10-05,09:46,Tuesday,FINCH STATION,MUIRS,0,0,,YU,0
-2021-10-05,10:00,Tuesday,PIONEER VILLAGE STATIO,MUIS,0,0,,YU,0
-2021-10-05,10:11,Tuesday,KENNEDY BD STATION,EUNT,3,6,E,BD,5300
-2021-10-05,11:14,Tuesday,CHESTER STATION,MUPAA,0,0,W,BD,5181
-2021-10-05,11:41,Tuesday,FINCH STATION,SUDP,0,0,,YU,0
-2021-10-05,11:45,Tuesday,EGLINTON STATION,TUATC,3,6,S,YU,5556
-2021-10-05,13:19,Tuesday,SHEPPARD WEST STATION,MUTO,8,11,N,YU,5566
-2021-10-05,13:35,Tuesday,JANE STATION,SUUT,0,0,E,BD,0
-2021-10-05,13:44,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5000
-2021-10-05,13:52,Tuesday,DAVISVILLE STATION,SUDP,4,7,N,YU,5961
-2021-10-05,14:10,Tuesday,VICTORIA PARK STATION,MUIRS,0,0,,BD,0
-2021-10-05,14:11,Tuesday,UNION STATION,MUTO,3,6,N,YU,5846
-2021-10-05,14:16,Tuesday,YORKDALE STATION,TUCC,0,0,S,YU,6121
-2021-10-05,14:39,Tuesday,YORK MILLS STATION,SUAP,5,8,N,YU,6071
-2021-10-05,15:00,Tuesday,KING STATION,SUDP,0,0,S,YU,5986
-2021-10-05,15:19,Tuesday,YORK UNIVERSITY STATIO,MUPAA,0,0,S,YU,5921
-2021-10-05,15:21,Tuesday,WARDEN STATION,MUIRS,4,7,E,BD,5268
-2021-10-05,15:28,Tuesday,EGLINTON STATION,MUSC,3,6,N,YU,6606
-2021-10-05,15:30,Tuesday,SHEPPARD STATION,EUSC,5,8,S,YU,6081
-2021-10-05,16:21,Tuesday,WILSON STATION,SUDP,7,10,N,YU,5411
-2021-10-05,16:40,Tuesday,KING STATION,PUMEL,0,0,,YU,0
-2021-10-05,16:46,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5000
-2021-10-05,16:56,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-05,17:00,Tuesday,EGLINTON STATION,MUATC,10,13,S,YU,5926
-2021-10-05,17:16,Tuesday,ST CLAIR WEST STATION,SUAP,10,13,N,YU,6096
-2021-10-05,17:25,Tuesday,DUNDAS STATION,MUIS,0,0,,YU,0
-2021-10-05,17:59,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5000
-2021-10-05,18:00,Tuesday,KENNEDY BD STATION,MUDD,6,9,,BD,5262
-2021-10-05,18:07,Tuesday,KIPLING STATION,SUAP,0,0,,BD,0
-2021-10-05,18:07,Tuesday,SHEPPARD STATION,MUSC,3,6,S,YU,5566
-2021-10-05,18:09,Tuesday,VICTORIA PARK STATION,EUCD,3,7,W,BD,5262
-2021-10-05,18:23,Tuesday,KENNEDY BD STATION,TUNOA,3,7,W,BD,5000
-2021-10-05,18:36,Tuesday,KENNEDY BD STATION,TUMVS,0,0,W,BD,5015
-2021-10-05,18:49,Tuesday,MAIN STREET STATION,MUTO,3,6,W,BD,5015
-2021-10-05,18:58,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-05,18:58,Tuesday,SHERBOURNE STATION,MUPAA,0,0,E,BD,5070
-2021-10-05,19:00,Tuesday,EGLINTON STATION,SUUT,18,21,N,YU,6091
-2021-10-05,19:07,Tuesday,MUSEUM STATION,MUPAA,0,0,N,YU,5586
-2021-10-05,19:41,Tuesday,OSGOODE STATION,MUSAN,5,8,S,YU,6071
-2021-10-05,19:42,Tuesday,EGLINTON STATION,MUATC,5,8,S,YU,5406
-2021-10-05,19:46,Tuesday,WILSON STATION,PUMEL,0,0,,YU,0
-2021-10-05,20:44,Tuesday,EGLINTON STATION,MUSC,0,0,N,YU,5841
-2021-10-05,21:28,Tuesday,SHERBOURNE STATION,MUPAA,0,0,W,BD,5006
-2021-10-05,22:00,Tuesday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU/BD,0
-2021-10-05,23:09,Tuesday,SHERBOURNE STATION,MUIRS,0,0,W,BD,0
-2021-10-05,00:47,Tuesday,NORTH YORK CTR STATION,SUDP,0,0,S,YU,6031
-2021-10-06,02:25,Wednesday,FINCH STATION,PUTO,10,0,N,YU,6101
-2021-10-06,06:02,Wednesday,MCCOWAN STATION,MRTO,5,10,S,SRT,3010
-2021-10-06,02:26,Wednesday,KENNEDY BD STATION,MUIRS,0,0,,BD,0
-2021-10-06,05:33,Wednesday,YORK MILLS STATION,MUATC,7,0,N,YU,5431
-2021-10-06,05:47,Wednesday,DUNDAS STATION,MUIRS,0,0,,YU,0
-2021-10-06,05:50,Wednesday,SHEPPARD STATION,EUDO,3,0,N,YU,5431
-2021-10-06,05:52,Wednesday,CHRISTIE STATION,PUTWZ,8,0,W,BD,5135
-2021-10-06,05:58,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-06,06:20,Wednesday,BROADVIEW STATION,PUTWZ,4,0,E,BD,5357
-2021-10-06,06:27,Wednesday,ISLINGTON STATION,TUMVS,5,10,E,BD,5154
-2021-10-06,06:34,Wednesday,OLD MILL STATION,TUO,5,10,E,BD,5154
-2021-10-06,06:35,Wednesday,ST GEORGE BD STATION,EUSC,0,0,W,BD,5061
-2021-10-06,06:37,Wednesday,EGLINTON STATION,TUATC,4,7,S,YU,5956
-2021-10-06,06:47,Wednesday,HIGH PARK STATION,EUSC,0,0,W,BD,5061
-2021-10-06,08:16,Wednesday,EGLINTON STATION,TUATC,3,6,S,YU,6006
-2021-10-06,09:01,Wednesday,EGLINTON STATION,MUATC,3,6,S,YU,6136
-2021-10-06,09:14,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5000
-2021-10-06,09:32,Wednesday,EGLINTON STATION,MUSC,0,0,N,YU,5466
-2021-10-06,09:35,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5000
-2021-10-06,10:09,Wednesday,EGLINTON STATION TO VA,PUSIO,16,19,N,YU,5836
-2021-10-06,10:49,Wednesday,KIPLING STATION,TUO,3,6,E,BD,5276
-2021-10-06,11:03,Wednesday,QUEEN STATION,MUIS,0,0,N,YU,0
-2021-10-06,11:13,Wednesday,FINCH STATION,TUMVS,3,6,N,YU,5626
-2021-10-06,11:13,Wednesday,EGLINTON STATION,PUMEL,0,0,,YU,0
-2021-10-06,11:26,Wednesday,ST ANDREW STATION,EUNT,3,6,S,YU,5701
-2021-10-06,12:15,Wednesday,BATHURST STATION,MUIR,0,0,W,BD,5021
-2021-10-06,13:16,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5000
-2021-10-06,13:52,Wednesday,KING STATION,SUDP,3,6,S,YU,5976
-2021-10-06,14:35,Wednesday,OSGOODE STATION,MUPAA,3,6,N,YU,5821
-2021-10-06,14:40,Wednesday,FINCH STATION,TUNOA,3,6,S,YU,5431
-2021-10-06,15:12,Wednesday,BLOOR STATION,MUIS,0,0,N,YU,0
-2021-10-06,15:12,Wednesday,ST GEORGE BD STATION,EUSC,0,0,W,BD,5061
-2021-10-06,15:26,Wednesday,KEELE STATION,MUSC,0,0,W,BD,5061
-2021-10-06,16:09,Wednesday,EGLINTON STATION,SUROB,0,0,,YU,0
-2021-10-06,17:07,Wednesday,KENNEDY BD STATION,MUIR,3,6,W,BD,5275
-2021-10-06,18:11,Wednesday,FINCH STATION,TUSC,0,0,N,YU,5671
-2021-10-06,18:13,Wednesday,GREENWOOD YARD,TUNOA,0,0,W,BD,5000
-2021-10-06,18:45,Wednesday,VAUGHAN MC STATION,MUATC,55,60,N,YU,6111
-2021-10-06,19:47,Wednesday,SUMMERHILL STATION,MUIRS,0,0,S,YU,0
-2021-10-06,20:21,Wednesday,EGLINTON STATION,PUMEL,0,0,,YU,0
-2021-10-06,22:00,Wednesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-10-06,22:38,Wednesday,YONGE BD STATION,SUDP,0,0,,BD,0
-2021-10-06,22:54,Wednesday,WOODBINE STATION,SUAP,0,0,,BD,0
-2021-10-06,23:19,Wednesday,ISLINGTON STATION,MUDD,0,0,E,BD,5116
-2021-10-06,00:23,Wednesday,KENNEDY BD STATION,SUDP,6,12,W,BD,5340
-2021-10-06,00:30,Wednesday,EGLINTON STATION,MUATC,5,10,S,YU,5111
-2021-10-06,00:59,Wednesday,MAIN STREET STATION,MUIS,0,0,,BD,0
-2021-10-06,01:20,Wednesday,ROSEDALE STATION,SUUT,11,16,N,YU,5500
-2021-10-06,01:43,Wednesday,VICTORIA PARK STATION,TUMVS,0,0,W,BD,5016
-2021-10-07,05:38,Thursday,EGLINTON STATION,MUATC,8,0,N,YU,6011
-2021-10-07,14:34,Thursday,MIDLAND STATION,SRDP,0,0,N,SRT,3003
-2021-10-07,06:31,Thursday,SHEPPARD WEST STATION,MUNOA,3,6,N,YU,0
-2021-10-07,07:00,Thursday,FINCH STATION,MUSC,0,0,S,YU,5956
-2021-10-07,08:33,Thursday,ST PATRICK STATION,MUPAA,0,0,S,YU,5971
-2021-10-07,09:31,Thursday,EGLINTON STATION,MUATC,4,7,S,YU,5816
-2021-10-07,09:35,Thursday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-07,10:06,Thursday,KENNEDY BD STATION,MUTO,3,6,W,BD,5369
-2021-10-07,10:23,Thursday,FINCH STATION,MUSC,0,0,N,YU,5921
-2021-10-07,11:03,Thursday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-07,11:56,Thursday,DUNDAS WEST STATION,MUIS,0,0,,BD,0
-2021-10-07,12:01,Thursday,EGLINTON STATION,MUSC,0,0,N,YU,5476
-2021-10-07,12:44,Thursday,SHEPPARD WEST STATION,MUIR,0,0,N,YU,5831
-2021-10-07,13:07,Thursday,KING STATION,MUIS,0,0,,YU,0
-2021-10-07,13:13,Thursday,COLLEGE STATION,MUIR,7,10,S,YU,5496
-2021-10-07,13:19,Thursday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-07,13:54,Thursday,DUFFERIN STATION,MUPAA,3,6,W,BD,5007
-2021-10-07,13:59,Thursday,WILSON HOSTLER,TUNOA,3,6,S,YU,0
-2021-10-07,15:08,Thursday,ISLINGTON STATION,PUTD,0,0,W,BD,5084
-2021-10-07,15:15,Thursday,JANE STATION,MUIRS,0,0,,BD,0
-2021-10-07,15:16,Thursday,HIGHWAY 407 STATION,MUPAA,3,6,N,YU,6016
-2021-10-07,15:34,Thursday,EGLINTON STATION,SUDP,3,6,N,YU,6126
-2021-10-07,16:00,Thursday,CASTLE FRANK STATION,MUIS,0,0,,BD,0
-2021-10-07,16:32,Thursday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-07,16:47,Thursday,KIPLING STATION,SUDP,3,6,W,BD,5015
-2021-10-07,16:49,Thursday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-07,16:56,Thursday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-07,17:23,Thursday,PAPE STATION,SUDP,3,6,E,BD,5291
-2021-10-07,17:38,Thursday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-07,17:42,Thursday,ST GEORGE BD STATION,MUSAN,5,8,E,BD,5083
-2021-10-07,17:45,Thursday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-07,17:53,Thursday,ST PATRICK STATION,MUSAN,4,7,S,YU,5386
-2021-10-07,17:58,Thursday,YORK MILLS STATION,SUDP,0,0,N,YU,5491
-2021-10-07,18:17,Thursday,COLLEGE STATION,MUNCA,0,0,,YU,0
-2021-10-07,18:24,Thursday,HIGH PARK STATION,MUIS,0,0,,BD,0
-2021-10-07,18:28,Thursday,RUNNYMEDE STATION,SUAP,4,7,E,BD,5131
-2021-10-07,18:42,Thursday,LAWRENCE STATION,SUDP,4,7,N,YU,5696
-2021-10-07,19:50,Thursday,DUNDAS STATION,MUIRS,3,6,N,YU,5871
-2021-10-07,20:00,Thursday,RUNNYMEDE STATION,PUMEL,0,0,W,BD,0
-2021-10-07,21:27,Thursday,YONGE BD STATION,MUIS,0,0,E,BD,0
-2021-10-07,21:56,Thursday,KING STATION,MUIS,0,0,,YU,0
-2021-10-07,22:00,Thursday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU/BD,0
-2021-10-07,22:45,Thursday,ST CLAIR STATION,SUDP,3,8,N,YU,5721
-2021-10-07,23:24,Thursday,COXWELL STATION,MUIS,0,0,,BD,0
-2021-10-07,23:40,Thursday,FINCH STATION,MUTO,3,8,S,YU,5896
-2021-10-07,00:18,Thursday,WELLESLEY STATION,MUIRS,0,0,,YU,0
-2021-10-07,00:44,Thursday,COLLEGE STATION,SUDP,0,0,N,YU,5711
-2021-10-07,11:44,Thursday,SHEPPARD-YONGE STATION,TUMVS,3,8,E,SHP,6156
-2021-10-08,05:46,Friday,EGLINTON STATION,MUATC,7,10,N,YU,5956
-2021-10-08,20:52,Friday,KENNEDY SRT STATION,MRUIR,4,11,N,SRT,5011
-2021-10-08,21:06,Friday,MCCOWAN STATION,MRPAA,0,0,N,SRT,3012
-2021-10-08,06:02,Friday,SUMMERHILL STATION,MUO,7,0,N,YU,6106
-2021-10-08,06:11,Friday,EGLINTON STATION (APPR,MUATC,5,8,S,YU,5876
-2021-10-08,22:18,Friday,KENNEDY SRT STATION,MRTO,3,9,S,SRT,3016
-2021-10-08,07:08,Friday,ST GEORGE BD STATION,SUO,3,6,W,BD,5135
-2021-10-08,07:11,Friday,FINCH STATION,MUSC,0,0,S,YU,6011
-2021-10-08,07:25,Friday,GLENCAIRN STATION,SUDP,3,6,S,YU,5881
-2021-10-08,08:23,Friday,ST CLAIR STATION,MUATC,0,0,S,YU,5751
-2021-10-08,11:54,Friday,BLOOR STATION,PUEO,90,93,N,YU,5626
-2021-10-08,12:21,Friday,WARDEN STATION,MUD,3,6,W,BD,5094
-2021-10-08,13:29,Friday,WELLESLEY STATION,SUEAS,13,16,W,YU,5681
-2021-10-08,14:07,Friday,KENNEDY BD STATION,EUAC,3,6,E,BD,5113
-2021-10-08,14:30,Friday,DONLANDS STATION,MUIR,0,0,E,BD,5022
-2021-10-08,14:48,Friday,DUNDAS WEST STATION,TUMVS,0,0,W,BD,5280
-2021-10-08,15:10,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-08,15:21,Friday,VAUGHAN MC STATION,TUNIP,3,6,S,YU,5846
-2021-10-08,15:26,Friday,FINCH STATION,MUSC,0,0,S,YU,5636
-2021-10-08,15:44,Friday,KIPLING STATION,MUIR,3,6,E,BD,5365
-2021-10-08,15:53,Friday,KENNEDY BD STATION,MUPAA,0,0,W,BD,5018
-2021-10-08,16:07,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-08,16:13,Friday,BROADVIEW STATION,MUPAA,3,6,W,BD,5280
-2021-10-08,16:26,Friday,EGLINTON STATION,MUATC,6,9,S,YU,5836
-2021-10-08,16:27,Friday,ST GEORGE YUS STATION,MUIR,0,0,N,YU,5961
-2021-10-08,16:49,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-08,16:56,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5636
-2021-10-08,17:20,Friday,BATHURST STATION,MUIS,0,0,E,BD,0
-2021-10-08,17:45,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5951
-2021-10-08,19:25,Friday,LANSDOWNE STATION,MUIS,0,0,E,BD,5218
-2021-10-08,20:24,Friday,YORK MILLS STATION,MUIR,0,0,S,YU,5416
-2021-10-08,20:39,Friday,DAVISVILLE STATION,SUUT,10,13,N,YU,5706
-2021-10-08,21:08,Friday,ST ANDREW STATION,PUMST,0,0,S,YU,0
-2021-10-08,21:14,Friday,EGLINTON STATION (APPR,MUATC,11,14,S,YU,5956
-2021-10-08,21:29,Friday,CASTLE FRANK STATION,MUIRS,0,0,W,BD,0
-2021-10-08,21:32,Friday,VAUGHAN MC STATION,TUNOA,5,10,S,YU,5601
-2021-10-08,21:40,Friday,VAUGHAN MC STATION,TUNOA,5,10,S,YU,6131
-2021-10-08,21:50,Friday,ST GEORGE YUS STATION,SUO,0,0,N,YU,5956
-2021-10-08,21:51,Friday,ST GEORGE BD STATION,SUDP,0,0,E,BD,5357
-2021-10-08,22:00,Friday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU/BD,0
-2021-10-08,23:12,Friday,LAWRENCE STATION,SUDP,16,21,N,YU,5656
-2021-10-08,23:36,Friday,KING STATION,SUDP,3,8,N,YU,5966
-2021-10-08,23:40,Friday,MAIN STREET STATION,SUUT,27,33,E,BD,5251
-2021-10-08,23:41,Friday,VAUGHAN MC STATION,TUNOA,5,10,S,YU,6016
-2021-10-08,23:54,Friday,WARDEN STATION,MUIS,0,0,,BD,0
-2021-10-08,00:02,Friday,BLOOR STATION,SUAP,0,0,N,YU,6116
-2021-10-08,00:09,Friday,DUFFERIN STATION,SUDP,4,10,W,BD,5194
-2021-10-08,00:14,Friday,LANSDOWNE STATION,SUDP,16,22,W,BD,5194
-2021-10-08,00:36,Friday,DUPONT STATION,MUIR,0,0,S,YU,5406
-2021-10-08,01:24,Friday,JANE STATION,PUTDN,0,0,W,BD,5058
-2021-10-08,01:38,Friday,MAIN STREET STATION,EUVE,7,13,E,BD,5370
-2021-10-08,01:49,Friday,DUNDAS WEST STATION,MUIS,0,0,,BD,0
-2021-10-09,02:09,Saturday,BAY STATION,PUMST,0,0,,BD,0
-2021-10-09,21:36,Saturday,MCCOWAN STATION,MRO,3,9,S,SRT,3006
-2021-10-09,02:35,Saturday,VAUGHAN MC STATION,MUIS,0,0,,YU,0
-2021-10-09,05:46,Saturday,UNION STATION,PUMO,0,0,,YU,0
-2021-10-09,05:53,Saturday,KING STATION,PUMO,0,0,,YU,0
-2021-10-09,05:55,Saturday,UNION STATION,EUYRD,7,0,N,YU,5381
-2021-10-09,06:00,Saturday,FINCH STATION,TUNOA,6,12,S,YU,0
-2021-10-09,06:00,Saturday,BLOOR DANFORTH LINE,MUO,0,0,,BD,0
-2021-10-09,06:38,Saturday,EGLINTON STATION,TUNOA,6,12,N,YU,0
-2021-10-09,06:54,Saturday,KEELE STATION,SUDP,4,9,W,BD,5156
-2021-10-09,06:59,Saturday,WILSON STATION,TUO,6,12,S,YU,6071
-2021-10-09,07:07,Saturday,GREENWOOD STATION,TUSC,0,0,E,BD,5022
-2021-10-09,07:50,Saturday,VAUGHAN MC STATION,MUTO,5,11,S,YU,5401
-2021-10-09,08:01,Saturday,ISLINGTON STATION,MUIE,0,0,E,BD,5300
-2021-10-09,08:08,Saturday,VAUGHAN MC STATION,MUTO,5,11,S,YU,5976
-2021-10-09,08:15,Saturday,YORK MILLS STATION,TUOS,0,0,S,YU,6076
-2021-10-09,08:19,Saturday,EGLINTON STATION (APPR,MUATC,7,13,S,YU,5676
-2021-10-09,09:48,Saturday,MAIN STREET STATION,MUPAA,3,8,W,BD,5304
-2021-10-09,09:56,Saturday,DUNDAS WEST STATION,SUDP,4,7,E,BD,5235
-2021-10-09,11:47,Saturday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-09,12:25,Saturday,FINCH STATION,MUTO,4,8,S,YU,5676
-2021-10-09,12:32,Saturday,ST GEORGE BD STATION,TUMVS,3,7,E,BD,5051
-2021-10-09,13:09,Saturday,OLD MILL STATION,MUIS,0,0,,BD,0
-2021-10-09,13:41,Saturday,FINCH STATION,TUNOA,4,8,S,YU,0
-2021-10-09,14:13,Saturday,VAUGHAN MC STATION,TUNOA,4,8,S,YU,0
-2021-10-09,14:24,Saturday,WELLESLEY STATION,MUPAA,0,0,S,YU,5651
-2021-10-09,14:40,Saturday,WARDEN STATION,MUIS,0,0,,BD,0
-2021-10-09,14:41,Saturday,VAUGHAN MC STATION,TUNOA,4,8,S,YU,0
-2021-10-09,15:07,Saturday,EGLINTON STATION (APPR,MUATC,5,9,S,YU,5566
-2021-10-09,15:34,Saturday,LAWRENCE WEST STATION,XXXXX,0,0,W,52,3369
-2021-10-09,15:34,Saturday,ST CLAIR WEST STATION,PUMEL,0,0,N,YU,0
-2021-10-09,15:35,Saturday,EGLINTON STATION (APPR,MUATC,6,10,S,YU,5626
-2021-10-09,15:53,Saturday,EGLINTON STATION,MUATC,7,11,S,YU,6021
-2021-10-09,16:14,Saturday,YORKDALE STATION,MUIS,0,0,,YU,0
-2021-10-09,16:45,Saturday,EGLINTON STATION,MUATC,9,13,S,YU,5611
-2021-10-09,16:57,Saturday,VAUGHAN MC STATION,TUNOA,4,8,S,YU,0
-2021-10-09,17:36,Saturday,EGLINTON STATION,MUIRS,0,0,N,YU,0
-2021-10-09,18:14,Saturday,WELLESLEY STATION,MUIS,0,0,,YU,0
-2021-10-09,18:31,Saturday,DUNDAS WEST STATION,SUDP,0,0,W,BD,5066
-2021-10-09,19:00,Saturday,YORKDALE STATION,MUPAA,0,0,N,YU,5961
-2021-10-09,19:18,Saturday,VAUGHAN MC STATION,TUNOA,5,10,S,YU,0
-2021-10-09,19:35,Saturday,VAUGHAN MC STATION,SUDP,4,9,S,YU,5751
-2021-10-09,20:24,Saturday,CHESTER STATION,MUIRS,0,0,,BD,0
-2021-10-09,20:32,Saturday,ISLINGTON STATION,MUNOA,7,14,E,BD,5000
-2021-10-09,21:14,Saturday,FINCH STATION,SUDP,0,0,,YU,0
-2021-10-09,21:40,Saturday,SHERBOURNE STATION,MUIR,3,10,E,BD,5337
-2021-10-09,21:48,Saturday,QUEEN STATION,MUIS,0,0,N,YU,0
-2021-10-09,21:49,Saturday,DAVISVILLE STATION,MUIS,0,0,,YU,0
-2021-10-09,22:00,Saturday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU/BD,0
-2021-10-09,22:23,Saturday,WARDEN STATION,SUAP,0,0,,BD,0
-2021-10-09,23:17,Saturday,ROYAL YORK STATION,MUSC,0,0,E,BD,5135
-2021-10-09,00:38,Saturday,RUNNYMEDE STATION,SUO,0,0,,BD,0
-2021-10-09,01:58,Saturday,YONGE BD STATION,PUTOE,0,0,W,BD,56
-2021-10-09,22:39,Saturday,LESLIE STATION,TUMVS,8,13,E,SHP,6181
-2021-10-09,22:50,Saturday,DON MILLS STATION,MUTO,5,10,W,SHP,6161
-2021-10-09,22:55,Saturday,DON MILLS STATION,MUSAN,3,8,W,SHP,6161
-2021-10-10,07:58,Sunday,DONLANDS STATION,EUNT,10,0,W,BD,5313
-2021-10-10,22:27,Sunday,KENNEDY SRT STATION,SRO,15,21,S,SRT,3006
-2021-10-10,08:00,Sunday,ISLINGTON TO KIPLING S,MUO,0,0,,BD,0
-2021-10-10,08:02,Sunday,ISLINGTON STATION,TUNOA,6,0,E,BD,0
-2021-10-10,08:05,Sunday,KEELE STATION,SUG,5,10,W,BD,5226
-2021-10-10,08:17,Sunday,BLOOR STATION,MUPAA,0,0,N,YU,5871
-2021-10-10,08:43,Sunday,ST GEORGE YUS STATION,PUOPO,0,0,N,YU,5926
-2021-10-10,09:01,Sunday,YORKDALE STATION,PUOPO,4,10,N,YU,5926
-2021-10-10,09:13,Sunday,YORKDALE STATION,PUOPO,4,10,N,YU,6076
-2021-10-10,09:16,Sunday,KEELE STATION,MUIS,0,0,,BD,0
-2021-10-10,09:16,Sunday,SHEPPARD WEST STATION,PUOPO,6,12,N,YU,5926
-2021-10-10,09:19,Sunday,YORKDALE STATION,PUOPO,6,12,N,YU,5756
-2021-10-10,09:24,Sunday,LAWRENCE WEST CENTRE,PUSAC,5,10,N,YU,5961
-2021-10-10,09:41,Sunday,LAWRENCE WEST STATION,PUSAC,5,10,S,YU,5671
-2021-10-10,10:06,Sunday,WILSON STATION,MUATC,10,15,S,YU,5751
-2021-10-10,10:07,Sunday,KENNEDY BD STATION,EUNT,5,10,W,BD,5276
-2021-10-10,11:22,Sunday,DAVISVILLE STATION,MUIS,0,0,S,YU,5856
-2021-10-10,11:39,Sunday,WARDEN STATION,MUPAA,5,10,W,BD,5047
-2021-10-10,12:47,Sunday,EGLINTON STATION (APPR,MUATC,6,12,S,YU,6096
-2021-10-10,13:18,Sunday,OSSINGTON STATION,SUDP,3,8,E,BD,5162
-2021-10-10,13:31,Sunday,ISLINGTON STATION,MUIS,0,0,W,BD,0
-2021-10-10,13:39,Sunday,ST GEORGE YUS STATION,SUDP,7,12,N,YU,5716
-2021-10-10,13:46,Sunday,YORK MILLS STATION,MUIS,0,0,,YU,0
-2021-10-10,15:29,Sunday,COXWELL STATION,EUBK,5,10,W,BD,5342
-2021-10-10,17:33,Sunday,QUEEN STATION,MUIS,0,0,,YU,0
-2021-10-10,18:50,Sunday,ISLINGTON STATION,MUO,5,10,W,BD,5144
-2021-10-10,19:06,Sunday,COLLEGE STATION,MUIS,0,0,,YU,0
-2021-10-10,19:25,Sunday,MAIN STREET STATION,PUMEL,0,0,,BD,0
-2021-10-10,19:31,Sunday,SHERBOURNE STATION,MUPAA,3,8,E,BD,5288
-2021-10-10,20:04,Sunday,JANE STATION,SUDP,0,0,E,BD,5128
-2021-10-10,20:08,Sunday,SUMMERHILL STATION,MUPAA,0,0,S,YU,5626
-2021-10-10,20:10,Sunday,BLOOR STATION,TUCC,0,0,N,YU,6111
-2021-10-10,20:48,Sunday,PAPE STATION,SUAE,10,17,E,BD,5149
-2021-10-10,22:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-10-10,22:00,Sunday,COXWELL STATION,EUSC,0,0,W,BD,5313
-2021-10-10,22:23,Sunday,KENNEDY BD STATION,SUDP,17,24,E,BD,5349
-2021-10-10,22:30,Sunday,WILSON STATION,EUCA,7,14,S,YU,6131
-2021-10-10,23:48,Sunday,EGLINTON WEST STATION,PUOPO,0,0,S,YU,5706
-2021-10-10,23:51,Sunday,MAIN STREET STATION,TUSC,0,0,W,BD,5313
-2021-10-10,00:14,Sunday,VAUGHAN MC STATION,PUOPO,0,0,S,YU,5596
-2021-10-10,00:18,Sunday,HIGHWAY 407 STATION,PUOPO,0,0,S,YU,5596
-2021-10-10,00:21,Sunday,PIONEER VILLAGE STATIO,PUOPO,7,14,S,YU,5596
-2021-10-11,00:23,Monday,MIDLAND STATION,SRDP,0,0,N,SRT,0
-2021-10-11,06:58,Monday,ROSEDALE STATION,SUUT,0,0,S,YU,6031
-2021-10-11,07:33,Monday,DUNDAS STATION,MUPAA,4,10,S,YU,5461
-2021-10-11,00:51,Monday,MCCOWAN STATION,TRNCA,0,0,,SRT,0
-2021-10-11,07:40,Monday,SPADINA BD STATION,SUDP,0,0,,BD,0
-2021-10-11,07:57,Monday,SPADINA YUS STATION,SUDP,0,0,,YU,0
-2021-10-11,09:41,Monday,ST GEORGE BD STATION,TUMVS,0,0,W,BD,5161
-2021-10-11,10:38,Monday,VAUGHAN MC STATION,MUSAN,3,9,S,YU,5586
-2021-10-11,11:02,Monday,EGLINTON STATION,MUCL,6,12,N,YU,0
-2021-10-11,13:42,Monday,OSSINGTON STATION,SUO,0,0,E,BD,5338
-2021-10-11,15:31,Monday,FINCH STATION,MUIS,0,0,,YU,0
-2021-10-11,15:31,Monday,EGLINTON STATION,EUSC,0,0,N,YU,5636
-2021-10-11,15:45,Monday,SPADINA BD STATION,EUBK,14,19,E,BD,5340
-2021-10-11,17:37,Monday,SHERBOURNE STATION,MUPAA,0,0,E,BD,5288
-2021-10-11,17:45,Monday,ST GEORGE YUS STATION,MUPAA,3,8,N,YU,5461
-2021-10-11,18:38,Monday,VAUGHAN MC STATION,TUNOA,5,10,S,YU,6126
-2021-10-11,18:48,Monday,LAWRENCE STATION,SUO,17,24,S,YU,6096
-2021-10-11,19:03,Monday,YORK MILLS STATION,TUSC,4,11,S,YU,5721
-2021-10-11,19:10,Monday,YORK MILLS STATION,TUSC,0,0,S,YU,6001
-2021-10-11,19:18,Monday,EGLINTON STATION APPRO,TUATC,3,10,S,YU,5721
-2021-10-11,19:21,Monday,SHEPPARD STATION,MUIS,0,0,S,YU,5681
-2021-10-11,19:42,Monday,DUPONT STATION,MUNCA,0,0,,YU,0
-2021-10-11,20:03,Monday,WELLESLEY STATION,MUIRS,0,0,N,YU,5881
-2021-10-11,20:41,Monday,EGLINTON STATION,EUSC,0,0,N,YU,5636
-2021-10-11,21:12,Monday,YONGE BD STATION,MUO,6,13,E,BD,5073
-2021-10-11,22:00,Monday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU/BD,0
-2021-10-11,22:53,Monday,VAUGHAN MC STATION,TUNOA,7,14,S,YU,0
-2021-10-11,23:13,Monday,COXWELL STATION,MUIE,0,0,,BD,0
-2021-10-11,01:50,Monday,ROYAL YORK STATION,MUIRS,0,0,E,BD,5064
-2021-10-11,18:49,Monday,LESLIE STATION,MUIS,0,0,,SHP,0
-2021-10-11,19:20,Monday,SHEPPARD-YONGE STATION,MUIS,0,0,E,SHP,0
-2021-10-12,18:33,Tuesday,MCCOWAN STATION,ERLV,5,10,N,SRT,3027
-2021-10-12,04:52,Tuesday,YORK MILLS STATION,MUPLB,0,0,,YU,0
-2021-10-12,05:45,Tuesday,FINCH STATION,TUNOA,4,8,S,YU,5631
-2021-10-12,06:13,Tuesday,EGLINTON STATION (APPR,MUATC,6,9,S,YU,5886
-2021-10-12,06:25,Tuesday,DONLANDS STATION,EUYRD,7,10,W,BD,5288
-2021-10-12,06:34,Tuesday,DONLANDS STATION,TUCC,6,9,W,BD,5273
-2021-10-12,06:52,Tuesday,DUNDAS WEST STATION,EUNT,4,7,W,BD,5016
-2021-10-12,07:01,Tuesday,VAUGHAN MC STATION,EUBO,3,6,N,YU,5901
-2021-10-12,07:06,Tuesday,WARDEN STATION,MUIS,0,0,,BD,0
-2021-10-12,07:37,Tuesday,COLLEGE STATION,MUIRS,0,0,N,YU,5671
-2021-10-12,08:02,Tuesday,KENNEDY BD STATION,MUTO,3,6,W,BD,5312
-2021-10-12,08:10,Tuesday,EGLINTON STATION,EUSC,0,0,N,YU,5636
-2021-10-12,08:42,Tuesday,FINCH STATION,SUDP,0,0,,YU,0
-2021-10-12,09:20,Tuesday,DONLANDS STATION,TUNOA,3,6,E,BD,5000
-2021-10-12,09:43,Tuesday,EGLINTON STATION,SUDP,6,9,S,YU,6126
-2021-10-12,10:22,Tuesday,BLOOR STATION,MUIRS,0,0,N,YU,0
-2021-10-12,10:25,Tuesday,EGLINTON STATION,SUDP,6,9,S,YU,5656
-2021-10-12,12:03,Tuesday,EGLINTON STATION,PUSTC,343,347,S,YU,5771
-2021-10-12,12:06,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-12,12:29,Tuesday,GREENWOOD STATION,PUMST,0,0,,BD,0
-2021-10-12,13:34,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-12,14:28,Tuesday,FINCH STATION,MUTO,3,6,S,YU,5765
-2021-10-12,14:48,Tuesday,FINCH STATION,TUMVS,0,0,N,YU,5596
-2021-10-12,15:07,Tuesday,OSSINGTON STATION,MUI,8,11,W,BD,5288
-2021-10-12,15:20,Tuesday,ST GEORGE BD STATION,TUO,0,0,W,BD,5312
-2021-10-12,15:22,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-12,15:30,Tuesday,YONGE BD STATION,SUDP,3,6,W,BD,5335
-2021-10-12,15:45,Tuesday,KIPLING STATION,TUO,3,6,E,BD,0
-2021-10-12,15:50,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-12,16:42,Tuesday,COXWELL STATION,TUNOA,3,6,W,BD,0
-2021-10-12,17:03,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-12,17:16,Tuesday,PAPE STATION,SUDP,0,0,E,BD,5105
-2021-10-12,17:21,Tuesday,SHERBOURNE STATION,MUPAA,0,0,E,BD,5182
-2021-10-12,17:25,Tuesday,KENNEDY BD STATION,TUNOA,3,6,W,BD,0
-2021-10-12,18:45,Tuesday,WARDEN STATION,MUIS,0,0,,BD,0
-2021-10-12,18:46,Tuesday,CHESTER STATION,PUMST,0,0,,BD,0
-2021-10-12,18:48,Tuesday,KIPLING STATION,TUNIP,4,7,E,BD,5066
-2021-10-12,19:37,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-12,20:11,Tuesday,DAVISVILLE STATION,MUPAA,0,0,N,YU,5721
-2021-10-12,22:00,Tuesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-10-12,22:41,Tuesday,KIPLING STATION,MUTO,3,10,E,BD,5149
-2021-10-12,23:45,Tuesday,VMC TO EGLINTON STATIO,MUATC,61,66,,YU,0
-2021-10-12,01:07,Tuesday,YORK UNIVERSITY STATIO,MUIRS,0,0,,YU,0
-2021-10-12,11:46,Tuesday,SHEPPARD-YONGE STATION,MUSC,4,9,W,SHP,6186
-2021-10-12,14:17,Tuesday,BAYVIEW STATION,MUIS,0,0,,SHP,0
-2021-10-12,16:06,Tuesday,SHEPPARD-YONGE STATION,TUSC,0,0,W,SHP,6186
-2021-10-12,19:52,Tuesday,BAYVIEW STATION,MUIRS,0,0,W,SHP,0
-2021-10-13,02:41,Wednesday,LAWRENCE WEST STATION,SUDP,0,0,,YU,0
-2021-10-13,06:02,Wednesday,MCCOWAN STATION,TRO,4,9,W,SRT,3008
-2021-10-13,02:47,Wednesday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-10-13,13:50,Wednesday,SCARBOROUGH RAPID TRAN,MRO,20,25,S,SRT,3006
-2021-10-13,06:07,Wednesday,EGLINTON STATION,MUATC,4,7,N,YU,6011
-2021-10-13,19:11,Wednesday,MCCOWAN STATION,ERBO,5,10,S,SRT,3006
-2021-10-13,06:11,Wednesday,EGLINTON STATION,MUATC,4,7,N,YU,6101
-2021-10-13,06:11,Wednesday,DAVISVILLE STATION,TUCC,13,16,S,YU,5591
-2021-10-13,06:21,Wednesday,COLLEGE STATION,MUNCA,0,0,,YU,0
-2021-10-13,07:22,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5596
-2021-10-13,08:30,Wednesday,OSSINGTON STATION,MUIR,4,7,E,BD,5340
-2021-10-13,09:46,Wednesday,GREENWOOD STATION,MUDD,7,13,W,BD,5232
-2021-10-13,10:02,Wednesday,BLOOR STATION,SUUT,4,7,N,YU,5766
-2021-10-13,10:32,Wednesday,ROSEDALE STATION,SUUT,22,25,N,YU,6071
-2021-10-13,11:24,Wednesday,BLOOR STATION,MUIRS,0,0,,YU,0
-2021-10-13,11:37,Wednesday,VICTORIA PARK STATION,MUIRS,0,0,,BD,0
-2021-10-13,11:38,Wednesday,OSSINGTON STATION,SUDP,3,6,E,BD,5335
-2021-10-13,11:52,Wednesday,YONGE BD STATION,MUIE,0,0,,BD,0
-2021-10-13,11:58,Wednesday,BLOOR STATION,SUDP,0,0,S,YU,0
-2021-10-13,12:15,Wednesday,LAWRENCE WEST STATION,TUOS,0,0,N,YU,5776
-2021-10-13,12:35,Wednesday,LAWRENCE STATION,MUSC,0,0,N,YU,5506
-2021-10-13,13:23,Wednesday,YORK MILLS STATION,TUO,3,6,N,YU,5551
-2021-10-13,14:38,Wednesday,KENNEDY BD STATION,PUSTS,6,9,W,BD,5076
-2021-10-13,14:43,Wednesday,SPADINA YUS STATION,EUDO,3,6,N,YU,5746
-2021-10-13,14:43,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-13,15:04,Wednesday,EGLINTON WEST STATION,MUIRS,0,0,,YU,0
-2021-10-13,15:12,Wednesday,DUNDAS STATION,PUMEL,0,0,N,YU,0
-2021-10-13,15:16,Wednesday,EGLINTON STATION,TUATC,6,9,S,YU,5936
-2021-10-13,15:20,Wednesday,SPADINA YUS STATION,MUIS,0,0,,YU,0
-2021-10-13,15:22,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-13,15:23,Wednesday,ST GEORGE YUS STATION,PUMST,0,0,,YU,0
-2021-10-13,15:26,Wednesday,KENNEDY BD STATION,MUDD,3,6,W,BD,5426
-2021-10-13,16:05,Wednesday,DAVISVILLE STATION,MUPAA,0,0,N,YU,5781
-2021-10-13,16:51,Wednesday,MUSEUM STATION,MUI,18,21,N,YU,5761
-2021-10-13,17:03,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-13,17:20,Wednesday,EGLINTON STATION (APPR,MUATC,3,3,S,YU,5601
-2021-10-13,17:35,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-13,18:06,Wednesday,EGLINTON STATION,MUSC,0,0,N,YU,5636
-2021-10-13,18:47,Wednesday,KIPLING STATION,PUMEL,0,0,,BD,0
-2021-10-13,19:59,Wednesday,KENNEDY BD STATION,TUNOA,6,12,W,BD,0
-2021-10-13,20:40,Wednesday,MAIN STREET STATION,SUDP,4,10,W,BD,5248
-2021-10-13,22:00,Wednesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-10-13,23:05,Wednesday,EGLINTON STATION,MUO,0,0,B,YU,0
-2021-10-13,23:10,Wednesday,SHEPPARD WEST STATION,MUI,0,0,N,YU,5526
-2021-10-13,12:14,Wednesday,DON MILLS STATION,PUSNT,18,23,E,SHP,6166
-2021-10-13,14:30,Wednesday,SHEPPARD-YONGE STATION,MUIRS,0,0,,SHP,0
-2021-10-14,05:52,Thursday,GREENWOOD STATION,MUSAN,7,12,E,BD,5055
-2021-10-14,06:50,Thursday,MCCOWAN STATION,MRTO,0,0,S,SRT,3004
-2021-10-14,17:56,Thursday,SCARBOROUGH CTR STATIO,PREL,0,0,,SRT,0
-2021-10-14,06:02,Thursday,SHEPPARD WEST STATION,TUNOA,5,10,N,YU,5716
-2021-10-14,06:34,Thursday,GREENWOOD YARD,EUYRD,0,0,E,BD,5073
-2021-10-14,06:46,Thursday,EGLINTON STATION (APPR,MUATC,5,8,S,YU,6061
-2021-10-14,07:15,Thursday,EGLINTON STATION (APPR,MUATC,0,0,S,YU,5761
-2021-10-14,07:22,Thursday,EGLINTON STATION (APPR,MUATC,4,7,S,YU,5906
-2021-10-14,07:34,Thursday,FINCH STATION,MUSC,0,0,S,YU,5531
-2021-10-14,08:45,Thursday,KIPLING STATION,TUMVS,0,0,W,BD,5294
-2021-10-14,08:48,Thursday,KENNEDY BD STATION,EUBO,3,6,W,BD,0
-2021-10-14,09:29,Thursday,UNION STATION,MUATC,3,6,S,YU,5746
-2021-10-14,10:04,Thursday,FINCH WEST STATION,MUO,0,0,S,YU,5811
-2021-10-14,12:12,Thursday,KEELE STATION,SUAP,0,0,,BD,0
-2021-10-14,13:20,Thursday,OLD MILL STATION,PUMEL,0,0,,BD,0
-2021-10-14,13:26,Thursday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-14,13:26,Thursday,COXWELL STATION,MUSAN,4,9,W,BD,5154
-2021-10-14,13:54,Thursday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-14,14:22,Thursday,KIPLING STATION,SUPOL,5,8,E,BD,5435
-2021-10-14,14:25,Thursday,ROSEDALE STATION,SUDP,3,6,N,YU,6081
-2021-10-14,15:17,Thursday,PAPE STATION,TUNOA,3,6,E,BD,0
-2021-10-14,15:20,Thursday,KENNEDY BD STATION,EUAC,3,6,W,BD,5206
-2021-10-14,15:38,Thursday,KENNEDY BD STATION,TUNOA,3,6,W,BD,0
-2021-10-14,16:13,Thursday,EGLINTON WEST STATION,SUUT,9,12,N,YU,5631
-2021-10-14,16:18,Thursday,WARDEN STATION,MUIS,0,0,,BD,0
-2021-10-14,16:36,Thursday,EGLINTON STATION,MUATC,3,6,S,YU,5791
-2021-10-14,17:22,Thursday,ST CLAIR STATION,MUATC,6,9,S,YU,5956
-2021-10-14,17:27,Thursday,EGLINTON STATION - MIG,TUATC,3,6,S,YU,5466
-2021-10-14,18:53,Thursday,WOODBINE STATION,MUIRS,0,0,E,BD,0
-2021-10-14,19:10,Thursday,COXWELL STATION,SUAE,0,0,E,BD,0
-2021-10-14,20:21,Thursday,ROYAL YORK STATION,SUAP,17,23,E,BD,5194
-2021-10-14,21:21,Thursday,ST PATRICK STATION,SUUT,24,29,S,YU,5721
-2021-10-14,21:41,Thursday,KENNEDY BD STATION,SUDP,0,0,W,BD,5248
-2021-10-14,21:47,Thursday,KING STATION,TUOS,3,6,S,YU,5711
-2021-10-14,21:57,Thursday,SUMMERHILL STATION,MUPAA,0,0,N,YU,5496
-2021-10-14,22:00,Thursday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-10-14,22:06,Thursday,KIPLING STATION,MUPAA,0,0,W,BD,5194
-2021-10-14,23:00,Thursday,EGLINTON STATION,MUO,0,0,,YU,0
-2021-10-14,23:48,Thursday,MAIN STREET STATION,MUIRS,0,0,E,BD,0
-2021-10-14,00:49,Thursday,KENNEDY BD STATION,MUI,6,12,W,BD,5278
-2021-10-14,01:35,Thursday,FINCH STATION,MUIRS,0,0,,YU,0
-2021-10-14,05:20,Thursday,SHEPPARD-YONGE STATION,MUSC,0,0,E,SHP,6181
-2021-10-14,12:36,Thursday,DON MILLS STATION,TUMVS,5,10,E,SHP,6166
-2021-10-15,06:00,Friday,TORONTO TRANSIT COMMIS,MRO,0,0,,SRT,0
-2021-10-15,05:46,Friday,WILSON STATION,TUO,4,0,S,YU,5816
-2021-10-15,05:51,Friday,GREENWOOD YARD,EUDO,5,10,E,BD,5084
-2021-10-15,10:00,Friday,KENNEDY SRT STATION,ERTC,23,28,N,SRT,3013
-2021-10-15,11:20,Friday,LAWRENCE EAST STATION,TRTC,5,10,N,SRT,3015
-2021-10-15,05:56,Friday,OSSINGTON STATION,PUSNT,5,10,W,BD,5100
-2021-10-15,06:00,Friday,TORONTO TRANSIT COMMIS,MUO,0,0,,YU,0
-2021-10-15,06:06,Friday,KIPLING STATION,MUIRS,0,0,,BD,0
-2021-10-15,07:07,Friday,FINCH WEST STATION,MUPAA,0,0,N,YU,6006
-2021-10-15,08:03,Friday,EGLINTON STATION,MUSC,0,0,N,YU,5921
-2021-10-15,08:05,Friday,EGLINTON STATION (APPR,MUATC,9,12,S,YU,5991
-2021-10-15,08:17,Friday,KENNEDY BD STATION,MUTO,3,6,E,BD,5136
-2021-10-15,08:23,Friday,OSSINGTON STATION,PUMST,0,0,,BD,0
-2021-10-15,08:30,Friday,SHERBOURNE STATION,MUPAA,0,0,E,BD,5213
-2021-10-15,08:49,Friday,EGLINTON STATION (APPR,TUATC,4,7,S,YU,5936
-2021-10-15,09:13,Friday,SUMMERHILL STATION,MUIS,0,0,S,YU,5961
-2021-10-15,09:27,Friday,VAUGHAN MC STATION,PUMEL,0,0,,YU,0
-2021-10-15,09:36,Friday,KENNEDY BD STATION,MUPAA,0,0,E,BD,5155
-2021-10-15,09:48,Friday,ROYAL YORK STATION,MUIS,0,0,E,BD,0
-2021-10-15,09:50,Friday,VICTORIA PARK STATION,PUMO,0,0,,BD,0
-2021-10-15,09:51,Friday,FINCH STATION,MUIE,0,0,,YU,0
-2021-10-15,10:04,Friday,KENNEDY BD STATION,MUTO,3,6,W,BD,5163
-2021-10-15,11:06,Friday,SHEPPARD STATION,MUIE,0,0,,YU,0
-2021-10-15,11:32,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-15,11:46,Friday,DONLANDS STATION,MUPAA,4,7,W,BD,5135
-2021-10-15,11:47,Friday,KEELE STATION,MUDD,3,6,E,BD,5076
-2021-10-15,12:07,Friday,VMC TO EGLINTON STATIO,MUATC,3,6,N,YU,5981
-2021-10-15,12:09,Friday,BATHURST STATION,MUIS,0,0,,BD,0
-2021-10-15,12:13,Friday,VAUGHAN MC STATION,MUPAA,0,0,N,YU,5761
-2021-10-15,12:19,Friday,ST CLAIR WEST STATION,MUPAA,0,0,N,YU,5961
-2021-10-15,12:36,Friday,EGLINTON STATION,SUDP,0,0,S,YU,6066
-2021-10-15,13:09,Friday,DUNDAS STATION,MUIS,0,0,,YU,0
-2021-10-15,13:15,Friday,UNION STATION,MUATC,7,10,N,YU,5721
-2021-10-15,13:24,Friday,KING STATION,MUATC,4,7,N,YU,5721
-2021-10-15,13:31,Friday,GREENWOOD SHOP,MUODC,0,0,,BD,0
-2021-10-15,14:38,Friday,YONGE BD STATION,MUDD,7,10,E,BD,5116
-2021-10-15,14:47,Friday,LAWRENCE WEST STATION,SUDP,3,6,N,YU,5761
-2021-10-15,14:54,Friday,PAPE STATION,EUCD,3,6,E,BD,5116
-2021-10-15,15:26,Friday,EGLINTON STATION (APPR,TUO,6,9,S,YU,6061
-2021-10-15,16:33,Friday,DAVISVILLE BUILDUP,SUDP,3,6,S,YU,5991
-2021-10-15,16:42,Friday,YOUNGE UNIVERSITY SPAD,TUNOA,3,6,B,YU,0
-2021-10-15,17:56,Friday,DUNDAS STATION,SUROB,0,0,N,YU,0
-2021-10-15,17:57,Friday,UNION STATION,SUDP,0,0,S,YU,5566
-2021-10-15,19:37,Friday,FINCH STATION,MUSC,0,0,S,YU,6116
-2021-10-15,20:50,Friday,WELLESLEY STATION,MUPAA,0,0,N,YU,5566
-2021-10-15,20:54,Friday,COLLEGE STATION,MUIRS,0,0,,YU,0
-2021-10-15,21:15,Friday,EGLINTON STATION,PUMST,0,0,,YU,0
-2021-10-15,22:00,Friday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-10-15,22:47,Friday,KIPLING STATION,EUME,6,12,E,BD,5276
-2021-10-15,23:32,Friday,YORK MILLS STATION,MUIS,0,0,,YU,0
-2021-10-15,00:57,Friday,MAIN STREET STATION,MUIS,0,0,,BD,0
-2021-10-15,01:16,Friday,EGLINTON STATION (APPR,MUATC,5,10,S,YU,0
-2021-10-15,04:49,Friday,SHEPPARD-YONGE STATION,MUSC,0,0,W,SHP,6196
-2021-10-15,06:00,Friday,TORONTO TRANSIT COMMIS,MUO,0,0,,SHP,0
-2021-10-15,17:04,Friday,SHEPPARD-YONGE STATION,PUMEL,0,0,,SHP,0
-2021-10-15,18:49,Friday,DON MILLS STATION,TUSC,0,0,W,SHP,6196
-2021-10-16,05:50,Saturday,GREENWOOD STATION,MUO,3,0,E,BD,5288
-2021-10-16,22:00,Saturday,LAWRENCE EAST TO KENNE,MRO,0,0,,SRT,0
-2021-10-16,22:58,Saturday,LAWRENCE EAST STATION,SRAP,0,0,N,SRT,0
-2021-10-16,06:00,Saturday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU,0
-2021-10-16,08:09,Saturday,CHRISTIE STATION,TUMVS,0,0,E,BD,5002
-2021-10-16,00:37,Saturday,MCCOWAN YARD,SRO,0,0,,SRT,3006
-2021-10-16,08:47,Saturday,COXWELL STATION,MUIS,0,0,,BD,0
-2021-10-16,09:58,Saturday,WARDEN STATION,PUSTC,0,0,W,BD,5070
-2021-10-16,10:00,Saturday,WARDEN STATION,PUSTC,7,12,W,BD,5241
-2021-10-16,10:15,Saturday,HIGHWAY 407 STATION,SUO,0,0,N,YU,5551
-2021-10-16,10:39,Saturday,WARDEN STATION,SUAP,0,0,,BD,0
-2021-10-16,11:20,Saturday,OSSINGTON STATION,MUIS,0,0,W,BD,0
-2021-10-16,11:41,Saturday,DUNDAS STATION,PUMST,0,0,S,YU,0
-2021-10-16,12:56,Saturday,VAUGHAN MC STATION,TUNIP,5,11,S,YU,6061
-2021-10-16,13:02,Saturday,KENNEDY BD STATION,TUNOA,4,8,W,BD,5000
-2021-10-16,13:39,Saturday,EGLINTON WEST STATION,SUAP,22,27,N,YU,6031
-2021-10-16,13:58,Saturday,LAWRENCE STATION,MUPAA,0,0,E,YU,5821
-2021-10-16,14:10,Saturday,BROADVIEW STATION,PUTDN,7,11,W,BD,5241
-2021-10-16,14:24,Saturday,YORK MILLS STATION,MUPAA,0,0,S,YU,5936
-2021-10-16,14:41,Saturday,ST CLAIR WEST STATION,TUO,18,23,N,YU,5811
-2021-10-16,14:54,Saturday,COXWELL STATION,MUO,0,0,E,BD,5364
-2021-10-16,15:12,Saturday,DUNDAS WEST STATION,SUDP,0,0,E,BD,5035
-2021-10-16,15:15,Saturday,LANSDOWNE STATION,SUDP,0,0,W,BD,5030
-2021-10-16,15:30,Saturday,DUFFERIN STATION,MUIE,4,8,E,BD,5035
-2021-10-16,16:19,Saturday,RUNNYMEDE STATION,SUUT,10,14,W,BD,5278
-2021-10-16,16:32,Saturday,ST GEORGE BD STATION,MUIE,4,8,E,BD,5139
-2021-10-16,16:57,Saturday,VAUGHAN MC STATION,TUNOA,7,14,B,YU,0
-2021-10-16,17:23,Saturday,ISLINGTON STATION,MUNCA,0,0,,BD,0
-2021-10-16,18:07,Saturday,LAWRENCE STATION,SUAP,0,0,,YU,0
-2021-10-16,19:44,Saturday,JANE STATION,SUAP,0,0,,BD,0
-2021-10-16,19:50,Saturday,GREENWOOD YARD,TUO,0,0,W,BD,5154
-2021-10-16,20:29,Saturday,BLOOR STATION,MUI,11,18,N,YU,5556
-2021-10-16,21:42,Saturday,BATHURST STATION,MUPAA,3,10,E,BD,5162
-2021-10-16,22:00,Saturday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-10-16,23:04,Saturday,EGLINTON WEST STATION,MUPAA,0,0,N,YU,6066
-2021-10-16,23:17,Saturday,LAWRENCE WEST STATION,SUUT,23,30,N,YU,5866
-2021-10-16,23:17,Saturday,ISLINGTON STATION,PUSTS,3,10,W,BD,5181
-2021-10-16,00:22,Saturday,BLOOR STATION,MUATC,3,10,S,YU,5621
-2021-10-16,00:36,Saturday,KIPLING STATION,MUSAN,4,11,E,BD,5227
-2021-10-16,00:43,Saturday,ST GEORGE BD STATION,MUIRS,0,0,,BD,0
-2021-10-16,00:44,Saturday,VICTORIA PARK STATION,SUDP,0,0,,BD,0
-2021-10-16,01:35,Saturday,BLOOR STATION,MUO,5,12,N,YU,6091
-2021-10-16,01:54,Saturday,KEELE YARD,MUIE,0,0,E,BD,5022
-2021-10-16,02:53,Saturday,SHEPPARD-YONGE STATION,PUTOE,0,0,W,SHP,0
-2021-10-16,09:20,Saturday,LESLIE STATION,EUSC,0,0,W,SHP,6176
-2021-10-16,15:58,Saturday,DON MILLS STATION,TUMVS,0,0,W,SHP,6196
-2021-10-16,16:43,Saturday,DON MILLS STATION,TUSC,0,0,E,SHP,6166
-2021-10-16,20:05,Saturday,LESLIE STATION,MUIS,0,0,,SHP,0
-2021-10-17,22:00,Sunday,LAWRENCE EAST TO KENNE,MRO,0,0,,SRT,0
-2021-10-17,02:03,Sunday,WILSON STATION,SUDP,0,0,,YU,0
-2021-10-17,02:34,Sunday,VAUGHAN MC STATION,MUIR,0,0,S,YU,5501
-2021-10-17,07:53,Sunday,WILSON STATION,TUNOA,6,12,S,YU,6006
-2021-10-17,08:06,Sunday,KEELE STATION,SUG,6,12,W,BD,5039
-2021-10-17,08:17,Sunday,WOODBINE STATION,MUPLB,29,34,E,BD,5208
-2021-10-17,09:24,Sunday,FINCH WEST STATION,SUG,6,12,N,YU,5556
-2021-10-17,10:37,Sunday,LAWRENCE WEST STATION,PUOPO,0,0,S,YU,6091
-2021-10-17,10:57,Sunday,VAUGHAN MC STATION,PUSCR,6,12,N,YU,5611
-2021-10-17,11:01,Sunday,SPADINA YUS STATION,PUOPO,3,9,N,YU,6046
-2021-10-17,11:05,Sunday,DUPONT STATION,PUOPO,0,0,N,YU,6046
-2021-10-17,11:06,Sunday,ST CLAIR WEST STATION,PUOPO,6,12,N,YU,6046
-2021-10-17,11:50,Sunday,HIGHWAY 407 STATION,PUOPO,0,0,N,YU,5946
-2021-10-17,12:13,Sunday,SHERBOURNE STATION,SUROB,0,0,W,BD,0
-2021-10-17,12:26,Sunday,DUFFERIN STATION,SUDP,0,0,W,BD,5035
-2021-10-17,13:26,Sunday,COXWELL STATION,PUMST,0,0,,BD,0
-2021-10-17,14:02,Sunday,FINCH WEST STATION,PUOPO,0,0,S,YU,5526
-2021-10-17,14:18,Sunday,WARDEN STATION,SUDP,0,0,W,BD,5055
-2021-10-17,14:59,Sunday,RUNNYMEDE STATION,MUNCA,0,0,,BD,0
-2021-10-17,15:00,Sunday,LAWRENCE STATION,MUPAA,0,0,S,YU,5751
-2021-10-17,15:07,Sunday,WOODBINE STATION,EUDO,0,0,E,BD,5154
-2021-10-17,15:40,Sunday,CHRISTIE STATION,MUO,5,10,E,BD,5055
-2021-10-17,15:51,Sunday,OSSINGTON STATION,PUTDN,5,10,E,BD,5144
-2021-10-17,16:04,Sunday,ISLINGTON STATION,EUTR,5,10,W,BD,5363
-2021-10-17,16:32,Sunday,KIPLING STATION,TUMVS,5,10,W,BD,5364
-2021-10-17,16:32,Sunday,KIPLING STATION,TUMVS,5,10,W,BD,5364
-2021-10-17,16:43,Sunday,KIPLING STATION,MUPAA,0,0,W,BD,5300
-2021-10-17,17:04,Sunday,KIPLING STATION,TUMVS,5,10,W,BD,5181
-2021-10-17,17:21,Sunday,PIONEER VILLAGE STATIO,SUDP,3,8,S,YU,5986
-2021-10-17,17:25,Sunday,CHRISTIE STATION,MUIR,6,11,E,BD,5044
-2021-10-17,17:38,Sunday,VAUGHAN MC STATION,SUDP,3,8,N,YU,5816
-2021-10-17,17:50,Sunday,KENNEDY BD STATION,TUMVS,5,10,E,BD,5042
-2021-10-17,17:59,Sunday,SHERBOURNE STATION,MUPAA,0,0,E,BD,5149
-2021-10-17,18:22,Sunday,ISLINGTON STATION,SUUT,4,9,W,BD,5300
-2021-10-17,20:52,Sunday,ST CLAIR STATION,SUDP,7,14,N,YU,5651
-2021-10-17,21:36,Sunday,ST GEORGE YUS STATION,MUIR,7,14,S,YU,5491
-2021-10-17,21:57,Sunday,LAWRENCE WEST STATION,MUIS,0,0,,YU,0
-2021-10-17,22:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-10-17,22:17,Sunday,WELLESLEY STATION,SUDP,0,0,N,YU,5766
-2021-10-17,22:30,Sunday,UNION STATION,SUDP,3,10,N,YU,5966
-2021-10-17,22:39,Sunday,LAWRENCE STATION,SUAP,0,0,,YU,0
-2021-10-17,22:47,Sunday,WELLESLEY STATION,SUDP,9,16,S,YU,6006
-2021-10-17,23:00,Sunday,OLD MILL TO ROYAL YORK,PUSTC,0,0,W,BD,5114
-2021-10-17,00:08,Sunday,ROYAL YORK STATION,PUSRA,12,17,W,BD,5098
-2021-10-17,00:32,Sunday,VAUGHAN MC STATION,MUIS,0,0,,YU,0
-2021-10-17,01:32,Sunday,ST GEORGE YUS STATION,TUNIP,7,14,S,YU,5406
-2021-10-17,17:05,Sunday,SHEPPARD-YONGE STATION,MUSC,0,0,E,SHP,6191
-2021-10-17,17:49,Sunday,SHEPPARD-YONGE STATION,MUSC,0,0,E,SHP,6191
-2021-10-18,22:00,Monday,LAWRENCE EAST TO KENNE,MRO,0,0,,SRT,0
-2021-10-18,02:32,Monday,VAUGHAN MC STATION,MUIS,0,0,,YU,0
-2021-10-18,05:03,Monday,UNION STATION,MUNCA,0,0,,YU,0
-2021-10-18,05:17,Monday,VAUGHAN MC STATION,MUTO,5,8,S,YU,5526
-2021-10-18,05:37,Monday,ST PATRICK STATION,MUNCA,0,0,,YU,0
-2021-10-18,05:39,Monday,EGLINTON STATION,PUSRA,6,0,N,YU,5406
-2021-10-18,05:57,Monday,KEELE STATION,EUYRD,9,14,W,BD,5098
-2021-10-18,07:35,Monday,EGLINTON STATION (APPR,MUATC,12,15,S,YU,6131
-2021-10-18,07:39,Monday,ROYAL YORK STATION,TUS,3,6,W,BD,5067
-2021-10-18,08:40,Monday,KEELE STATION,MUDD,10,13,E,BD,5025
-2021-10-18,10:03,Monday,KENNEDY BD STATION,PUMST,0,0,,BD,0
-2021-10-18,11:35,Monday,WARDEN STATION,PUSTS,0,0,E,BD,5084
-2021-10-18,12:03,Monday,EGLINTON STATION,SUDP,0,0,S,YU,5796
-2021-10-18,12:11,Monday,PIONEER VILLAGE STATIO,TUATC,3,6,N,YU,5646
-2021-10-18,13:10,Monday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-18,13:25,Monday,OSSINGTON STATION,PUMEL,0,0,,BD,0
-2021-10-18,13:44,Monday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-18,13:52,Monday,OLD MILL STATION,EUDO,11,15,W,BD,5010
-2021-10-18,14:17,Monday,KIPLING STATION,SUDP,3,6,E,BD,5179
-2021-10-18,15:05,Monday,ST PATRICK STATION,PUMEL,0,0,,YU,0
-2021-10-18,15:05,Monday,YONGE BD STATION,SUAP,6,9,E,BD,5286
-2021-10-18,15:44,Monday,YORK MILLS STATION,MUSC,0,0,S,YU,5426
-2021-10-18,15:48,Monday,PAPE STATION,SUDP,0,0,E,BD,5059
-2021-10-18,15:56,Monday,ST GEORGE YUS STATION,SUDP,3,6,N,YU,5991
-2021-10-18,16:18,Monday,EGLINTON STATION (APPR,TUATC,3,6,S,YU,6056
-2021-10-18,16:28,Monday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-18,16:37,Monday,SHEPPARD WEST STATION,MUPAA,0,0,N,YU,6071
-2021-10-18,16:53,Monday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-18,16:54,Monday,WOODBINE STATION,MUPLB,55,58,E,BD,5103
-2021-10-18,17:24,Monday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5391
-2021-10-18,17:34,Monday,COLLEGE STATION,SUUT,7,10,N,YU,5976
-2021-10-18,17:44,Monday,DUNDAS WEST STATION,SUDP,0,0,W,BD,5351
-2021-10-18,17:54,Monday,KIPLING STATION,PUTSC,3,6,W,BD,5059
-2021-10-18,18:59,Monday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5666
-2021-10-18,19:19,Monday,HIGH PARK STATION,SUUT,4,8,W,BD,5118
-2021-10-18,20:32,Monday,YORK MILLS STATION,MUIR,4,7,N,YU,5996
-2021-10-18,22:12,Monday,PAPE STATION,MUIS,0,0,,BD,0
-2021-10-18,22:28,Monday,DUNDAS WEST STATION,MUIRS,0,0,E,BD,0
-2021-10-18,22:35,Monday,KEELE STATION,MUIS,0,0,,BD,0
-2021-10-18,22:48,Monday,LAWRENCE WEST STATION,MUIS,0,0,,YU,0
-2021-10-18,23:15,Monday,EGLINTON TO SHEPPARD S,MUO,0,0,B,YU,0
-2021-10-18,23:24,Monday,EGLINTON STATION,MUIS,0,0,,YU,0
-2021-10-18,00:48,Monday,SHEPPARD STATION,TUSC,0,0,S,YU,5701
-2021-10-18,01:34,Monday,SHEPPARD WEST STATION,MUI,20,25,S,YU,5691
-2021-10-18,21:16,Monday,SHEPPARD-YONGE STATION,TUO,3,8,E,SHP,6166
-2021-10-19,02:02,Tuesday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-10-19,06:00,Tuesday,TORONTO TRANSIT COMMIS,MRO,0,0,,SRT,0
-2021-10-19,22:00,Tuesday,LAWRENCE EAST TO KENNE,MRO,0,0,,SRT,0
-2021-10-19,03:51,Tuesday,YONGE BD STATION,MUPLB,0,0,E,BD,0
-2021-10-19,05:20,Tuesday,BROADVIEW STATION,MUPLB,88,0,E,BD,5199
-2021-10-19,06:00,Tuesday,TORONTO TRANSIT COMMIS,MUO,0,0,,YU/BD,0
-2021-10-19,06:12,Tuesday,NORTH YORK CTR STATION,MUIRS,0,0,,YU,0
-2021-10-19,07:14,Tuesday,KEELE STATION,MUIS,0,0,E,BD,0
-2021-10-19,07:22,Tuesday,HIGH PARK STATION,SUO,4,7,W,BD,5296
-2021-10-19,07:40,Tuesday,KIPLING STATION,MUIE,3,6,E,BD,5013
-2021-10-19,08:20,Tuesday,QUEEN STATION,SUUT,0,0,S,YU,5461
-2021-10-19,08:40,Tuesday,FINCH STATION,MUSC,3,6,S,YU,6056
-2021-10-19,09:16,Tuesday,COXWELL STATION,TUO,3,6,E,BD,0
-2021-10-19,09:31,Tuesday,FINCH STATION,SUSA,0,0,,YU,0
-2021-10-19,11:11,Tuesday,CHESTER STATION,SUDP,0,0,W,BD,5034
-2021-10-19,11:28,Tuesday,EGLINTON WEST STATION,MUPAA,0,0,N,YU,5696
-2021-10-19,12:02,Tuesday,PAPE STATION,PUMO,0,0,,BD,0
-2021-10-19,13:16,Tuesday,FINCH STATION,MUSC,3,6,S,YU,5696
-2021-10-19,13:26,Tuesday,WILSON STATION,TUNOA,3,6,S,YU,0
-2021-10-19,13:33,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-19,14:13,Tuesday,DAVISVILLE STATION,SUDP,15,18,S,YU,5661
-2021-10-19,14:52,Tuesday,KEELE STATION,SUDP,7,10,E,BD,5149
-2021-10-19,15:01,Tuesday,YONGE BD STATION,SUDP,0,0,E,BD,5213
-2021-10-19,15:01,Tuesday,BLOOR STATION,SUDP,0,0,S,YU,6096
-2021-10-19,15:16,Tuesday,FINCH WEST STATION,SUSA,0,0,,YU,0
-2021-10-19,16:21,Tuesday,VAUGHAN MC STATION,MUTO,3,6,S,YU,5876
-2021-10-19,16:38,Tuesday,DUPONT STATION,MUSAN,3,6,S,YU,5576
-2021-10-19,16:40,Tuesday,VAUGHAN MC STATION,MUTO,0,0,S,YU,5876
-2021-10-19,17:15,Tuesday,WARDEN STATION,TUMVS,3,6,W,BD,5192
-2021-10-19,17:35,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-19,18:03,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-19,18:07,Tuesday,KIPLING STATION,MUTO,3,6,W,BD,5212
-2021-10-19,18:16,Tuesday,ISLINGTON STATION,TUSUP,5,8,E,BD,5262
-2021-10-19,18:27,Tuesday,KIPLING STATION,TUMVS,0,0,W,BD,5005
-2021-10-19,18:46,Tuesday,SPADINA BD STATION,MUIS,0,0,,BD,0
-2021-10-19,18:50,Tuesday,FINCH STATION,MUIS,0,0,,YU,0
-2021-10-19,18:59,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-19,19:51,Tuesday,VICTORIA PARK STATION,SUUT,8,14,W,BD,5003
-2021-10-19,20:04,Tuesday,WARDEN STATION,TUO,3,6,E,BD,5130
-2021-10-19,20:10,Tuesday,VICTORIA PARK STATION,SUUT,4,10,W,BD,5063
-2021-10-19,21:20,Tuesday,MUSEUM STATION,MUATC,3,6,N,YU,5551
-2021-10-19,21:34,Tuesday,VICTORIA PARK STATION,PUMST,0,0,,BD,0
-2021-10-19,21:42,Tuesday,FINCH STATION,TUSC,0,0,N,YU,5986
-2021-10-19,22:00,Tuesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-10-19,22:12,Tuesday,YONGE BD STATION,EUME,6,12,W,BD,5032
-2021-10-19,22:36,Tuesday,BATHURST STATION,SUDP,4,10,E,BD,5252
-2021-10-19,23:07,Tuesday,SPADINA BD STATION,SUDP,7,13,E,BD,5032
-2021-10-19,23:10,Tuesday,EGLINTON STATION,SUDP,0,0,S,YU,5416
-2021-10-19,00:35,Tuesday,YORK MILLS STATION,SUDP,0,0,,YU,0
-2021-10-19,00:39,Tuesday,SHEPPARD STATION,PUTWZ,8,13,N,YU,5841
-2021-10-19,06:00,Tuesday,TORONTO TRANSIT COMMIS,MUO,0,0,,SHP,0
-2021-10-19,06:19,Tuesday,BESSARION STATION,TUMVS,7,12,E,SHP,6171
-2021-10-19,12:37,Tuesday,LESLIE STATION,TUSC,0,0,W,SHP,6151
-2021-10-19,12:52,Tuesday,LESLIE STATION,MUIS,0,0,,SHP,0
-2021-10-19,21:08,Tuesday,DON MILLS STATION,TUSC,0,0,W,SHP,6186
-2021-10-19,01:14,Tuesday,LESLIE STATION,MUIS,0,0,,SHP,0
-2021-10-20,18:18,Wednesday,MCCOWAN STATION,PRSA,20,25,N,SRT,3004
-2021-10-20,02:24,Wednesday,SHEPPARD STATION,MUIRS,0,0,,YU,0
-2021-10-20,03:17,Wednesday,HIGH PARK STATION,SUUT,0,0,W,BD,0
-2021-10-20,22:00,Wednesday,LAWRENCE EAST TO KENNE,MRO,0,0,,SRT,0
-2021-10-20,05:32,Wednesday,YORK MILLS STATION,MUATC,5,0,N,YU,5546
-2021-10-20,05:55,Wednesday,CHRISTIE STATION,EUVE,4,0,W,BD,5262
-2021-10-20,05:58,Wednesday,KEELE YARD,EUME,5,10,W,BD,5144
-2021-10-20,06:15,Wednesday,DONLANDS STATION,EUSC,0,0,W,BD,5310
-2021-10-20,06:15,Wednesday,OSGOODE STATION,SUDP,0,0,,YU,0
-2021-10-20,07:11,Wednesday,UNION STATION,MUIS,0,0,,YU,0
-2021-10-20,07:11,Wednesday,LAWRENCE STATION,MUTD,3,6,N,YU,6936
-2021-10-20,07:44,Wednesday,ST GEORGE BD STATION,SUDP,0,0,W,BD,5292
-2021-10-20,08:39,Wednesday,VAUGHAN MC STATION,SUDP,17,20,S,YU,5486
-2021-10-20,09:11,Wednesday,FINCH STATION,SUAE,0,0,,YU,0
-2021-10-20,10:32,Wednesday,NORTH YORK CTR STATION,EUSC,0,0,S,YU,5401
-2021-10-20,13:48,Wednesday,ST PATRICK STATION,PUMEL,0,0,,YU,0
-2021-10-20,14:37,Wednesday,ST CLAIR WEST STATION,MUIS,0,0,,YU,0
-2021-10-20,14:59,Wednesday,CHRISTIE STATION,SUDP,0,0,E,BD,5169
-2021-10-20,15:32,Wednesday,FINCH STATION,MUIRS,0,0,,YU,0
-2021-10-20,16:28,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-20,16:34,Wednesday,FINCH WEST STATION,PUMEL,0,0,,YU,0
-2021-10-20,16:54,Wednesday,VICTORIA PARK STATION,TUMVS,3,6,E,BD,5241
-2021-10-20,17:10,Wednesday,DONLANDS STATION,MUIS,0,0,W,BD,5288
-2021-10-20,17:22,Wednesday,DUNDAS STATION,MUIRS,0,0,S,YU,5696
-2021-10-20,17:38,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-20,17:52,Wednesday,KIPLING STATION,SUO,3,6,W,BD,5208
-2021-10-20,17:54,Wednesday,LAWRENCE STATION,SUDP,0,0,S,YU,5796
-2021-10-20,17:56,Wednesday,EGLINTON STATION,PUMEL,0,0,,YU,0
-2021-10-20,18:30,Wednesday,EGLINTON WEST STATION,MUDD,3,6,N,YU,6001
-2021-10-20,18:51,Wednesday,WILSON STATION,MUTO,3,6,N,YU,5706
-2021-10-20,18:53,Wednesday,VAUGHAN MC STATION,EUPI,5,8,S,YU,5741
-2021-10-20,18:59,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-20,19:48,Wednesday,DONLANDS STATION,MUIS,0,0,,BD,0
-2021-10-20,19:49,Wednesday,ST GEORGE YUS STATION,MUSAN,3,6,N,YU,5882
-2021-10-20,20:09,Wednesday,ISLINGTON STATION,MUO,0,0,W,BD,5171
-2021-10-20,20:12,Wednesday,BROADVIEW STATION,TUO,3,6,E,BD,5241
-2021-10-20,20:20,Wednesday,DUFFERIN STATION,MUIS,0,0,,BD,0
-2021-10-20,22:00,Wednesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU / BD,0
-2021-10-20,22:28,Wednesday,HIGH PARK STATION,SUUT,21,27,W,BD,5288
-2021-10-20,23:38,Wednesday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-10-20,23:54,Wednesday,MAIN STREET STATION,SUUT,15,21,E,BD,5192
-2021-10-20,00:01,Wednesday,ROSEDALE STATION,SUBT,38,45,N,YU,5751
-2021-10-20,00:22,Wednesday,SHERBOURNE STATION,SUO,10,16,E,BD,5003
-2021-10-20,00:54,Wednesday,EGLINTON STATION,MUIS,0,0,,YU,0
-2021-10-20,01:30,Wednesday,ST GEORGE YUS STATION,SUAP,0,0,N,YU,0
-2021-10-20,01:38,Wednesday,SHEPPARD WEST STATION,SUO,4,9,S,YU,5836
-2021-10-20,14:19,Wednesday,BESSARION STATION,MUIR,5,10,W,SHP,6151
-2021-10-20,17:40,Wednesday,BESSARION STATION,MUSC,5,10,E,SHP,6181
-2021-10-21,16:06,Thursday,SCARBOROUGH CTR STATIO,ERDO,10,15,N,SRT,3007
-2021-10-21,02:24,Thursday,SPADINA BD STATION,MUIS,0,0,,BD,0
-2021-10-21,18:42,Thursday,ELLESMERE STATION,MRO,0,0,,SRT,0
-2021-10-21,02:28,Thursday,VAUGHAN MC STATION,SUDP,0,0,S,YU,5491
-2021-10-21,05:50,Thursday,FINCH STATION,EUBO,3,6,S,YU,5536
-2021-10-21,22:00,Thursday,LAWRENCE EAST TO KENNE,MRO,0,0,,SRT,0
-2021-10-21,06:13,Thursday,DAVISVILLE STATION,MUATC,8,11,S,YU,5861
-2021-10-21,06:49,Thursday,EGLINTON STATION,MUSC,3,6,N,YU,5466
-2021-10-21,07:02,Thursday,BAY STATION,MUIRS,0,0,,BD,0
-2021-10-21,07:24,Thursday,FINCH STATION,MUIS,0,0,,YU,0
-2021-10-21,08:11,Thursday,DUNDAS WEST STATION,SUDP,0,0,,YU,0
-2021-10-21,10:15,Thursday,GLENCAIRN STATION,SUUT,5,8,N,YU,5591
-2021-10-21,11:02,Thursday,BLOOR STATION,MUIR,3,6,S,YU,6066
-2021-10-21,11:12,Thursday,EGLINTON STATION,MUATC,9,12,S,YU,6001
-2021-10-21,12:02,Thursday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5426
-2021-10-21,12:41,Thursday,BLOOR STATION,SUDP,0,0,N,YU,5666
-2021-10-21,12:43,Thursday,DAVISVILLE STATION,MUATC,4,7,N,YU,5626
-2021-10-21,12:50,Thursday,DAVISVILLE STATION,MUATC,3,6,N,YU,5666
-2021-10-21,13:35,Thursday,DUFFERIN STATION,MUIRS,0,0,,BD,0
-2021-10-21,13:54,Thursday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5756
-2021-10-21,14:10,Thursday,WILSON STATION,MUATC,5,8,S,YU,5426
-2021-10-21,14:16,Thursday,DUFFERIN STATION,MUPAA,0,0,E,BD,5292
-2021-10-21,15:00,Thursday,FINCH STATION,MUSC,3,6,S,YU,5836
-2021-10-21,15:08,Thursday,ST CLAIR WEST STATION,PUMEL,0,0,,YU,0
-2021-10-21,15:12,Thursday,DUNDAS WEST STATION,MUPAA,0,0,W,BD,5031
-2021-10-21,15:15,Thursday,DUNDAS WEST STATION,TUMVS,3,6,W,BD,5252
-2021-10-21,15:48,Thursday,SHEPPARD WEST STATION,EUBO,3,6,S,YU,5561
-2021-10-21,16:54,Thursday,ISLINGTON STATION,PUSTS,7,10,E,BD,5274
-2021-10-21,16:55,Thursday,ISLINGTON STATION,TUMVS,0,0,E,BD,5180
-2021-10-21,17:12,Thursday,GLENCAIRN STATION,MUIS,0,0,N,YU,5766
-2021-10-21,17:41,Thursday,SPADINA YUS STATION,SUUT,0,0,S,YU,5441
-2021-10-21,17:43,Thursday,EGLINTON STATION,MUI,5,8,N,YU,5466
-2021-10-21,17:54,Thursday,DAVISVILLE STATION,SUAP,9,12,S,YU,5481
-2021-10-21,18:03,Thursday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-21,18:21,Thursday,PAPE STATION,MUPAA,0,0,E,BD,5149
-2021-10-21,19:37,Thursday,YONGE BD STATION,MUPAA,0,0,E,BD,5171
-2021-10-21,21:20,Thursday,UNION STATION,MUIE,0,0,,YU,0
-2021-10-21,21:32,Thursday,COLLEGE STATION,SUDP,0,0,N,YU,5546
-2021-10-21,22:00,Thursday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-10-21,23:18,Thursday,SHEPPARD WEST STATION,SUAE,0,0,,YU,0
-2021-10-21,23:39,Thursday,COXWELL STATION,TUNOA,6,12,E,BD,0
-2021-10-21,23:41,Thursday,EGLINTON STATION,MUTO,5,10,N,YU,5441
-2021-10-21,00:37,Thursday,BLOOR STATION,SUDP,4,9,S,YU,5396
-2021-10-21,01:49,Thursday,DUNDAS STATION,SUAE,0,0,N,YU,0
-2021-10-21,06:59,Thursday,SHEPPARD-YONGE STATION,MUIS,0,0,,SHP,0
-2021-10-21,13:37,Thursday,LESLIE STATION,MUSC,0,0,W,SHP,6196
-2021-10-21,22:10,Thursday,BAYVIEW STATION,PUMO,0,0,,SHP,0
-2021-10-22,22:00,Friday,LAWRENCE EAST STATION,MRO,0,0,,SRT,0
-2021-10-22,02:15,Friday,VAUGHAN MC STATION,MUIS,0,0,S,YU,5911
-2021-10-22,02:29,Friday,OSSINGTON STATION,MUIRS,0,0,E,BD,0
-2021-10-22,02:44,Friday,FINCH STATION,MUIS,0,0,,YU,0
-2021-10-22,06:17,Friday,DUNDAS WEST STATION,MUIRS,0,0,W,BD,0
-2021-10-22,06:28,Friday,DONLANDS STATION,TUO,0,0,W,BD,5000
-2021-10-22,06:53,Friday,KIPLING STATION,MUTO,3,6,E,BD,5363
-2021-10-22,07:28,Friday,DUNDAS WEST STATION,MUIRS,0,0,,BD,0
-2021-10-22,07:33,Friday,VAUGHAN MC STATION,TUNIP,4,7,S,YU,5751
-2021-10-22,07:52,Friday,EGLINTON STATION,MUATC,3,6,S,YU,5911
-2021-10-22,07:58,Friday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-10-22,08:35,Friday,DUNDAS WEST STATION,SUAP,0,0,,BD,0
-2021-10-22,08:43,Friday,LANSDOWNE STATION,EUDO,4,7,W,BD,5354
-2021-10-22,08:49,Friday,UNION STATION,MUPAA,0,0,N,YU,6051
-2021-10-22,09:28,Friday,KENNEDY BD STATION,TUNOA,3,6,W,BD,0
-2021-10-22,09:37,Friday,FINCH STATION,TUSC,3,6,N,YU,5486
-2021-10-22,09:40,Friday,EGLINTON STATION,MUATC,3,6,S,YU,5921
-2021-10-22,09:46,Friday,DAVISVILLE STATION,MUIS,0,0,N,YU,0
-2021-10-22,10:51,Friday,EGLINTON STATION,MUATC,0,0,S,YU,5401
-2021-10-22,11:45,Friday,VICTORIA PARK STATION,EUOE,0,0,W,BD,5354
-2021-10-22,12:38,Friday,WILSON STATION,TUNOA,3,6,S,YU,0
-2021-10-22,12:53,Friday,DUNDAS STATION,MUIS,0,0,N,YU,5886
-2021-10-22,13:03,Friday,BROADVIEW STATION,PUSTC,3,6,W,BD,5050
-2021-10-22,13:10,Friday,OSSINGTON STATION,TUMVS,6,9,E,BD,5241
-2021-10-22,13:12,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-22,13:15,Friday,CHRISTIE STATION,TUO,3,6,E,BD,5241
-2021-10-22,13:34,Friday,QUEEN STATION,SUO,0,0,,YU,0
-2021-10-22,13:38,Friday,QUEEN'S PARK STATION,SUDP,0,0,,YU,0
-2021-10-22,13:46,Friday,PAPE STATION,TUNOA,3,6,E,BD,5041
-2021-10-22,14:08,Friday,BLOOR STATION,SUDP,5,8,S,YU,5591
-2021-10-22,14:34,Friday,UNION STATION,SUDP,0,0,,YU,0
-2021-10-22,15:18,Friday,YONGE BD STATION,PUEWZ,0,0,W,BD,5026
-2021-10-22,15:32,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-22,15:47,Friday,DAVISVILLE STATION,SUDP,3,6,S,YU,6016
-2021-10-22,16:06,Friday,YORK MILLS STATION,SUEAS,12,15,S,YU,5606
-2021-10-22,16:15,Friday,LAWRENCE WEST STATION,SUUT,19,22,N,YU,6131
-2021-10-22,16:45,Friday,DUNDAS STATION,SUUT,4,7,S,YU,5616
-2021-10-22,16:46,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-22,17:06,Friday,FINCH STATION,MUPAA,0,0,S,YU,5391
-2021-10-22,17:14,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-22,17:17,Friday,KEELE STATION,MUIS,0,0,,BD,0
-2021-10-22,17:32,Friday,OSGOODE STATION,SUUT,0,0,S,YU,5926
-2021-10-22,17:39,Friday,EGLINTON STATION,TUATC,3,6,S,YU,5671
-2021-10-22,17:48,Friday,WELLESLEY STATION,MUIS,0,0,N,YU,0
-2021-10-22,18:25,Friday,DUNDAS WEST STATION,MUI,19,22,W,BD,5008
-2021-10-22,19:19,Friday,DONLANDS STATION,PUMST,0,0,,BD,0
-2021-10-22,19:31,Friday,WARDEN STATION,TUMVS,0,0,W,BD,5248
-2021-10-22,20:00,Friday,SPADINA YUS STATION,SUDP,0,0,N,YU,5766
-2021-10-22,20:09,Friday,VAUGHAN MC STATION,MUATC,4,7,S,YU,5496
-2021-10-22,20:16,Friday,EGLINTON STATION,MUATC,4,7,S,YU,5576
-2021-10-22,20:46,Friday,DAVISVILLE STATION,SUDP,3,6,S,YU,6056
-2021-10-22,21:08,Friday,ST ANDREW STATION,MUIS,0,0,N,YU,0
-2021-10-22,21:57,Friday,RUNNYMEDE STATION,SUAP,8,14,E,BD,5265
-2021-10-22,22:00,Friday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-10-22,22:42,Friday,KING STATION,PUMST,0,0,,YU,0
-2021-10-22,22:51,Friday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-10-22,23:02,Friday,SHEPPARD WEST STATION,SUAP,0,0,N,YU,5766
-2021-10-22,23:15,Friday,BLOOR STATION,MUIS,0,0,N,YU,0
-2021-10-22,23:23,Friday,ROSEDALE STATION,SUUT,33,38,N,YU,6066
-2021-10-22,23:41,Friday,VAUGHAN MC STATION,MUIR,3,8,S,YU,5831
-2021-10-22,00:40,Friday,ST GEORGE YUS STATION,MUIR,16,21,N,YU,5796
-2021-10-22,00:43,Friday,OSSINGTON STATION,SUDP,0,0,E,BD,5239
-2021-10-22,01:55,Friday,VAUGHAN MC STATION,SUDP,14,19,N,YU,5401
-2021-10-22,02:15,Friday,SHEPPARD-YONGE STATION,MUIS,0,0,,SHP,0
-2021-10-22,23:58,Friday,SHEPPARD-YONGE STATION,MUIS,0,0,,SHP,0
-2021-10-23,02:01,Saturday,FINCH STATION,SUDP,0,0,S,YU,6131
-2021-10-23,14:21,Saturday,MCCOWAN STATION,TRNOA,6,12,S,SRT,0
-2021-10-23,06:00,Saturday,FINCH STATION TO ST CL,MUO,0,0,,YU,0
-2021-10-23,16:45,Saturday,LAWRENCE EAST STATION,MRPAA,3,9,S,SRT,3008
-2021-10-23,18:46,Saturday,MCCOWAN STATION,TRNOA,8,14,S,SRT,3004
-2021-10-23,06:11,Saturday,ST CLAIR STATION,MUATC,3,8,S,YU,5826
-2021-10-23,06:36,Saturday,EGLINTON WEST STATION,MUPAA,0,0,N,YU,6056
-2021-10-23,19:39,Saturday,SCARBOROUGH CTR STATIO,TRNCA,0,0,,SRT,0
-2021-10-23,07:38,Saturday,DUNDAS WEST STATION,MUIS,0,0,,BD,0
-2021-10-23,22:00,Saturday,LAWRENCE EAST TO KENNE,MRO,0,0,B,SRT,0
-2021-10-23,07:51,Saturday,DOWNSVIEW PARK STATION,SUO,0,0,N,YU,5816
-2021-10-23,08:03,Saturday,YORK UNIVERSITY STATIO,SUO,6,12,N,YU,5816
-2021-10-23,08:45,Saturday,COXWELL STATION,TUNOA,4,8,E,BD,5000
-2021-10-23,13:12,Saturday,COXWELL STATION,TUNOA,4,8,W,BD,0
-2021-10-23,13:30,Saturday,YONGE BD STATION,MUSC,3,8,W,BD,5048
-2021-10-23,13:54,Saturday,KENNEDY BD STATION,EUDO,8,12,W,BD,5145
-2021-10-23,14:26,Saturday,WELLESLEY STATION,SUDP,5,10,S,YU,6056
-2021-10-23,15:14,Saturday,ROSEDALE STATION,MUPAA,0,0,N,YU,6041
-2021-10-23,15:17,Saturday,CHESTER STATION,MUIS,0,0,W,BD,0
-2021-10-23,16:51,Saturday,ST CLAIR WEST STATION,SUAP,0,0,,YU,0
-2021-10-23,17:06,Saturday,WARDEN STATION,PUMEL,0,0,,BD,0
-2021-10-23,17:26,Saturday,ISLINGTON STATION,TUNCA,0,0,,BD,0
-2021-10-23,17:31,Saturday,YONGE BD STATION,SUDP,0,0,W,BD,5304
-2021-10-23,17:43,Saturday,KEELE STATION,SUO,22,26,E,BD,5200
-2021-10-23,18:05,Saturday,COXWELL STATION,TUNOA,4,8,E,BD,0
-2021-10-23,18:05,Saturday,COXWELL STATION,TUNOA,4,8,E,BD,0
-2021-10-23,18:17,Saturday,HIGH PARK STATION,MUSAN,0,0,E,BD,5050
-2021-10-23,18:42,Saturday,COXWELL STATION,TUNOA,4,8,E,BD,5117
-2021-10-23,18:42,Saturday,COXWELL STATION,TUNOA,4,8,E,BD,0
-2021-10-23,19:22,Saturday,VICTORIA PARK STATION,SUO,0,0,W,BD,5192
-2021-10-23,19:58,Saturday,ISLINGTON STATION,PUSTS,7,11,E,BD,5318
-2021-10-23,21:28,Saturday,PIONEER VILLAGE STATIO,SUDP,0,0,,YU,0
-2021-10-23,22:00,Saturday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU/BD,0
-2021-10-23,22:44,Saturday,GLENCAIRN STATION,SUDP,9,16,S,YU,5831
-2021-10-23,23:26,Saturday,VAUGHAN MC STATION,SUUT,7,14,,YU,5666
-2021-10-23,23:36,Saturday,SHEPPARD WEST STATION,EUDO,5,12,S,YU,5746
-2021-10-23,23:51,Saturday,BLOOR STATION,SUEAS,9,16,S,YU,6021
-2021-10-23,00:04,Saturday,SUMMERHILL STATION,MUATC,7,14,N,YU,5811
-2021-10-24,13:22,Sunday,LAWRENCE EAST STATION,ERTC,46,52,N,SRT,3017
-2021-10-24,02:46,Sunday,VAUGHAN MC STATION,MUIS,0,0,,YU,0
-2021-10-24,22:00,Sunday,LAWRENCE EAST TO KENNE,MRO,0,0,B,SRT,0
-2021-10-24,08:00,Sunday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU,0
-2021-10-24,08:12,Sunday,GREENWOOD STATION,TUNOA,5,10,E,BD,0
-2021-10-24,08:23,Sunday,OSSINGTON STATION,SUO,0,0,W,BD,5012
-2021-10-24,08:30,Sunday,OSSINGTON STATION,MUO,0,0,W,BD,5026
-2021-10-24,11:05,Sunday,BROADVIEW STATION,SUO,0,0,W,BD,5306
-2021-10-24,11:08,Sunday,BROADVIEW STATION,SUUT,64,69,E,BD,5195
-2021-10-24,11:13,Sunday,KIPLING STATION,SUDP,0,0,,BD,0
-2021-10-24,11:58,Sunday,LAWRENCE STATION,PUMEL,0,0,,YU,0
-2021-10-24,12:10,Sunday,COXWELL STATION,TUNOA,5,10,E,BD,0
-2021-10-24,12:15,Sunday,SHERBOURNE STATION,MUSC,0,0,W,BD,5308
-2021-10-24,12:33,Sunday,WARDEN STATION,MUIS,0,0,,BD,0
-2021-10-24,12:42,Sunday,ST GEORGE YUS STATION,PUOPO,3,8,N,YU,5911
-2021-10-24,14:12,Sunday,VAUGHAN MC STATION,PUOPO,0,0,S,YU,5521
-2021-10-24,14:15,Sunday,HIGHWAY 407 STATION,PUOPO,6,11,S,YU,5521
-2021-10-24,14:23,Sunday,PIONEER VILLAGE STATIO,PUOPO,5,10,S,YU,5521
-2021-10-24,15:08,Sunday,QUEEN STATION,SUUT,0,0,S,YU,5531
-2021-10-24,15:40,Sunday,WARDEN STATION,SUAP,12,17,E,BD,5152
-2021-10-24,16:17,Sunday,HIGHWAY 407 STATION,PUOPO,4,9,S,YU,5656
-2021-10-24,16:20,Sunday,PIONEER VILLAGE STATIO,PUOPO,0,0,S,YU,5656
-2021-10-24,16:24,Sunday,YORK UNIVERSITY STATIO,PUOPO,5,10,S,YU,5656
-2021-10-24,16:35,Sunday,ST CLAIR STATION,MUTO,5,10,S,YU,5716
-2021-10-24,16:55,Sunday,ST PATRICK STATION,MUNCA,0,0,,YU,0
-2021-10-24,18:01,Sunday,SPADINA BD STATON,MUIRS,0,0,,BD,0
-2021-10-24,19:05,Sunday,CHRISTIE STATION,MUIS,0,0,E,BD,0
-2021-10-24,19:49,Sunday,VAUGHAN MC STATION,SUPOL,0,0,S,YU,5711
-2021-10-24,20:06,Sunday,RUNNYMEDE STATION,MUPAA,0,0,E,BD,5070
-2021-10-24,22:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-10-24,00:09,Sunday,UNION STATION,MUIE,0,0,,YU,0
-2021-10-24,00:13,Sunday,CASTLE FRANK STATION,MUPAA,7,14,W,BD,5167
-2021-10-24,00:34,Sunday,ST CLAIR STATION,MUIS,0,0,S,YU,0
-2021-10-24,01:06,Sunday,COXWELL STATION,MUIS,0,0,W,BD,0
-2021-10-24,01:24,Sunday,SHEPPARD WEST STATION,MUIS,0,0,,YU,0
-2021-10-24,13:24,Sunday,SHEPPARD-YONGE STATION,PUOPO,5,10,E,SHP,6181
-2021-10-25,05:45,Monday,FINCH STATION,PUSNT,0,0,N,YU,5906
-2021-10-25,13:37,Monday,KENNEDY SRT STATION,ERDO,0,0,N,SRT,3027
-2021-10-25,05:46,Monday,EGLINTON STATION,MUATC,7,0,S,YU,5791
-2021-10-25,22:00,Monday,LAWRENCE EAST TO KENNE,MRO,0,0,,SRT,0
-2021-10-25,05:53,Monday,KEELE STATION,EUYRD,9,14,W,BD,5018
-2021-10-25,05:55,Monday,ST CLAIR WEST STATION,EUO,4,0,S,YU,5686
-2021-10-25,05:55,Monday,GREENWOOD STATION,MUSC,12,17,E,BD,5259
-2021-10-25,06:40,Monday,YORK MILLS STATION,SUDP,10,13,N,YU,5666
-2021-10-25,07:16,Monday,LANSDOWNE STATION,MUDD,3,6,E,BD,5060
-2021-10-25,08:01,Monday,EGLINTON STATION,MUATC,10,13,S,YU,5751
-2021-10-25,08:47,Monday,ST CLAIR WEST STATION,MUTO,3,6,N,YU,5551
-2021-10-25,09:24,Monday,EGLINTON STATION,MUATC,7,10,S,YU,5421
-2021-10-25,09:25,Monday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5906
-2021-10-25,09:26,Monday,KIPLING STATION,SUDP,0,0,,BD,0
-2021-10-25,09:49,Monday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-25,10:02,Monday,DUNDAS WEST STATION,SUAP,0,0,W,BD,0
-2021-10-25,11:21,Monday,VAUGHAN MC STATION,TUNIP,3,6,S,YU,5831
-2021-10-25,11:26,Monday,WILSON STATION,MUIRS,0,0,,YU,0
-2021-10-25,11:56,Monday,BLOOR STATION,SUO,0,0,S,YU,6131
-2021-10-25,12:00,Monday,PIONEER VILLAGE STATIO,MUI,25,27,S,YU,5846
-2021-10-25,12:25,Monday,EGLINTON STATION,MUATC,8,11,S,YU,5746
-2021-10-25,12:42,Monday,EGLINTON STATION,MUATC,3,6,S,YU,5786
-2021-10-25,13:32,Monday,EGLINTON STATION,MUTD,10,13,S,YU,5931
-2021-10-25,13:50,Monday,PAPE STATION,TUNOA,3,6,E,BD,0
-2021-10-25,13:56,Monday,WELLESLEY STATION,MUPR1,7,10,S,YU,6131
-2021-10-25,14:16,Monday,PAPE STATION,MUPAA,0,0,E,BD,5275
-2021-10-25,14:50,Monday,BAY STATION,SUAE,10,13,W,BD,5213
-2021-10-25,14:52,Monday,WOODBINE STATION,SUDP,0,0,W,BD,0
-2021-10-25,15:28,Monday,KIPLING STATION,MUTO,3,6,E,BD,5163
-2021-10-25,15:28,Monday,YONGE BD STATION,PUMEL,0,0,,BD,0
-2021-10-25,15:35,Monday,FINCH STATION,TUSC,0,0,N,YU,5826
-2021-10-25,16:04,Monday,DONLANDS STATION,MUI,12,15,W,BD,5159
-2021-10-25,16:07,Monday,UNION STATION,PUMEL,0,0,,YU,0
-2021-10-25,16:27,Monday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-10-25,16:31,Monday,SHEPPARD WEST STATION,SUO,0,0,,YU,0
-2021-10-25,17:12,Monday,VAUGHAN MC STATION,TUNIP,3,6,S,YU,6116
-2021-10-25,18:35,Monday,KING STATION,MUIS,0,0,,YU,0
-2021-10-25,19:20,Monday,KEELE STATION,SUDP,0,0,,BD,0
-2021-10-25,19:44,Monday,SHERBOURNE STATION,PUMST,0,0,,BD,0
-2021-10-25,19:47,Monday,BLOOR STATION,MUSAN,3,6,N,YU,6121
-2021-10-25,19:47,Monday,DAVISVILLE STATION,MUIS,0,0,,YU,0
-2021-10-25,20:10,Monday,SHEPPARD STATION,SUDP,0,0,N,YU,5506
-2021-10-25,21:17,Monday,EGLINTON STATION,MUATC,0,0,S,YU,5716
-2021-10-25,21:30,Monday,COXWELL STATION,PUMEL,0,0,,BD,0
-2021-10-25,22:00,Monday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-10-25,22:15,Monday,KENNEDY BD STATION,TUNOA,6,12,W,BD,0
-2021-10-25,22:52,Monday,UNION STATION,MUWR,0,0,,YU,0
-2021-10-25,23:06,Monday,SHEPPARD STATION,TUSC,0,0,N,YU,5496
-2021-10-25,23:36,Monday,DUNDAS STATION,MUIRS,0,0,,YU,0
-2021-10-25,23:58,Monday,VAUGHAN MC STATION,SUO,0,0,,YU,0
-2021-10-25,00:00,Monday,UNION STATION,MUIS,0,0,,YU,0
-2021-10-25,00:07,Monday,BLOOR STATION,MUIRS,0,0,,YU,0
-2021-10-25,01:34,Monday,ST CLAIR STATION,SUDP,3,8,S,YU,5786
-2021-10-25,20:49,Monday,BAYVIEW STATION,SUDP,0,0,W,SHP,6161
-2021-10-26,02:09,Tuesday,CHESTER STATION,TUMVS,0,0,W,BD,0
-2021-10-26,09:01,Tuesday,MCCOWAN STATION,ERTR,5,10,S,SRT,3000
-2021-10-26,05:38,Tuesday,EGLINTON STATION,MUO,5,0,N,YU,5556
-2021-10-26,10:28,Tuesday,ELLESMERE STATION,ERME,19,24,S,SRT,3018
-2021-10-26,05:42,Tuesday,FINCH STATION,TUNOA,4,8,S,YU,5681
-2021-10-26,13:40,Tuesday,SCARBOROUGH CTR STATIO,ERTC,5,10,S,SRT,3018
-2021-10-26,05:47,Tuesday,EGLINTON STATION,MUO,5,0,S,YU,5501
-2021-10-26,16:18,Tuesday,SCARBOROUGH CTR STATIO,ERCD,5,10,S,SRT,3018
-2021-10-26,06:09,Tuesday,DONLANDS STATION,EUDO,4,9,W,BD,5060
-2021-10-26,16:26,Tuesday,ELLESMERE STATION,ERCD,48,53,S,SRT,3027
-2021-10-26,20:42,Tuesday,SCARBOROUGH CTR STATIO,SRDP,0,0,,SRT,0
-2021-10-26,06:23,Tuesday,VICTORIA PARK STATION,MUSC,3,8,W,BD,5260
-2021-10-26,06:58,Tuesday,EGLINTON STATION,MUATC,6,9,S,YU,5661
-2021-10-26,22:00,Tuesday,LAWRENCE EAST TO KENNE,MRO,0,0,B,SRT,0
-2021-10-26,07:19,Tuesday,ST GEORGE YUS STATION,MUIS,0,0,,YU,0
-2021-10-26,07:35,Tuesday,VAUGHAN MC STATION,EUAC,3,6,S,YU,5736
-2021-10-26,07:52,Tuesday,WELLESLEY STATION,SUAP,0,0,,YU,0
-2021-10-26,08:03,Tuesday,MAIN STREET STATION,SUDP,0,0,,BD,0
-2021-10-26,08:20,Tuesday,DUFFERIN STATION,MUPAA,0,0,W,BD,5223
-2021-10-26,08:57,Tuesday,KENNEDY BD STATION,MUSAN,3,6,W,BD,5206
-2021-10-26,09:09,Tuesday,FINCH STATION,MUIRS,0,0,,YU,0
-2021-10-26,09:46,Tuesday,KIPLING STATION,MUPAA,0,0,E,BD,5173
-2021-10-26,10:38,Tuesday,FINCH STATION,MUSC,0,0,S,YU,5696
-2021-10-26,10:49,Tuesday,DAVISVILLE STATION,MUATC,9,12,S,YU,5451
-2021-10-26,10:56,Tuesday,COLLEGE STATION,SUUT,12,15,S,YU,6116
-2021-10-26,10:59,Tuesday,WARDEN STATION,SUUT,3,6,E,BD,5268
-2021-10-26,11:01,Tuesday,SPADINA BD STATION,MUPAA,0,0,E,BD,5144
-2021-10-26,11:04,Tuesday,EGLINTON STATION,MUSC,0,0,N,YU,5771
-2021-10-26,11:12,Tuesday,ST CLAIR STATION,MUPAA,0,0,S,YU,5641
-2021-10-26,11:16,Tuesday,EGLINTON STATION (APPR,MUTD,13,16,S,YU,5531
-2021-10-26,11:37,Tuesday,FINCH STATION,MUIS,0,0,,YU,0
-2021-10-26,12:48,Tuesday,NORTH YORK CTR STATION,EUSC,0,0,N,YU,5981
-2021-10-26,13:02,Tuesday,KENNEDY BD STATION,TUNOA,3,6,W,BD,0
-2021-10-26,13:26,Tuesday,DAVISVILLE STATION,TUNOA,0,0,S,YU,0
-2021-10-26,13:47,Tuesday,SHEPPARD STATION,MUIRS,0,0,,YU,0
-2021-10-26,14:45,Tuesday,NORTH YORK CTR STATION,MUSC,0,0,S,YU,5721
-2021-10-26,15:02,Tuesday,FINCH STATION,MUTO,3,6,S,YU,6081
-2021-10-26,15:09,Tuesday,FINCH STATION,TUO,3,6,S,YU,5396
-2021-10-26,15:13,Tuesday,FINCH WEST STATION,SUDP,0,0,,YU,0
-2021-10-26,15:21,Tuesday,FINCH STATION,TUMVS,0,0,N,YU,5436
-2021-10-26,15:34,Tuesday,NORTH YORK CTR STATION,EUSC,0,0,N,YU,5981
-2021-10-26,15:55,Tuesday,EGLINTON STATION (APPR,TUATC,3,6,S,YU,5521
-2021-10-26,16:45,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-26,16:49,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-26,17:16,Tuesday,COXWELL STATION,TUNOA,3,6,E,BD,5000
-2021-10-26,17:17,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5000
-2021-10-26,17:33,Tuesday,EGLINTON STATION,MUATC,3,6,S,YU,5561
-2021-10-26,17:36,Tuesday,ST GEORGE BD STATION,MUIRS,0,0,,BD,0
-2021-10-26,17:39,Tuesday,GREENWOOD STATION,SUDP,0,0,,BD,0
-2021-10-26,18:12,Tuesday,COXWELL STATION,TUNOA,3,6,E,BD,5000
-2021-10-26,18:13,Tuesday,BLOOR STATION,SUDP,7,10,S,YU,5881
-2021-10-26,18:27,Tuesday,COXWELL STATION,TUNOA,3,6,,BD,5000
-2021-10-26,18:29,Tuesday,COLLEGE STATION,SUDP,6,9,S,YU,5881
-2021-10-26,18:36,Tuesday,ST CLAIR WEST STATION,MUIS,0,0,,YU,0
-2021-10-26,19:58,Tuesday,WARDEN STATION,SUDP,0,0,,BD,0
-2021-10-26,20:27,Tuesday,SPADINA YUS STATION,SUUT,0,0,N,YU,5896
-2021-10-26,20:54,Tuesday,FINCH STATION,MUIS,0,0,,YU,0
-2021-10-26,21:56,Tuesday,FINCH WEST STATION,EUDO,4,9,N,YU,5746
-2021-10-26,22:00,Tuesday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU/BD,0
-2021-10-26,22:11,Tuesday,BLOOR STATION,MUIS,0,0,,YU,0
-2021-10-26,22:15,Tuesday,COXWELL STATION,TUNOA,7,14,E,BD,5000
-2021-10-26,22:31,Tuesday,VAUGHAN MC STATION,MUIS,0,0,,YU,0
-2021-10-26,22:45,Tuesday,COXWELL STATION,TUNOA,6,12,E,BD,0
-2021-10-26,22:45,Tuesday,COXWELL STATION,TUNOA,7,14,E,BD,5000
-2021-10-26,23:10,Tuesday,SPADINA YUS STATION,MUATC,7,10,N,YU,6076
-2021-10-26,00:27,Tuesday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-10-26,14:51,Tuesday,SHEPPARD-YONGE STATION,SUAP,0,0,,SHP,0
-2021-10-27,05:45,Wednesday,FINCH STATION,MUSC,0,0,S,YU,5696
-2021-10-27,22:00,Wednesday,LAWRENCE EAST TO KENNE,MRO,0,0,,SRT,0
-2021-10-27,05:53,Wednesday,KIPLING STATION,TUSUP,3,9,E,BD,5108
-2021-10-27,06:20,Wednesday,FINCH STATION,TUNOA,3,6,S,YU,0
-2021-10-27,06:25,Wednesday,LAWRENCE WEST STATION,PUMEL,0,0,,YU,0
-2021-10-27,06:58,Wednesday,KIPLING STATION,TUO,3,6,E,BD,5190
-2021-10-27,07:03,Wednesday,YORK MILLS STATION,PUSTS,8,11,S,YU,5501
-2021-10-27,07:21,Wednesday,GREENWOOD STATION,MUSC,0,0,E,BD,5318
-2021-10-27,07:51,Wednesday,VAUGHAN MC STATION,MUPAA,3,6,S,YU,5771
-2021-10-27,08:00,Wednesday,ST CLAIR WEST STATION,MUI,33,36,N,YU,5406
-2021-10-27,09:09,Wednesday,COXWELL STATION,TUNOA,3,6,E,BD,0
-2021-10-27,09:29,Wednesday,VAUGHAN MC STATION,MUIRS,0,0,,YU,0
-2021-10-27,09:32,Wednesday,YORK MILLS STATION,TUMVS,3,6,S,YU,5481
-2021-10-27,09:40,Wednesday,RUNNYMEDE STATION,SUDP,5,8,E,BD,5144
-2021-10-27,09:46,Wednesday,DUNDAS WEST STATION,MUPAA,3,6,E,BD,5190
-2021-10-27,10:08,Wednesday,FINCH STATION,MUSC,0,0,S,YU,5396
-2021-10-27,11:46,Wednesday,EGLINTON STATION,MUSC,0,0,N,YU,5466
-2021-10-27,11:55,Wednesday,FINCH STATION,MUSC,0,0,S,YU,5986
-2021-10-27,12:13,Wednesday,COXWELL STATION,TUNOA,4,7,E,BD,5122
-2021-10-27,12:35,Wednesday,SHEPPARD STATION,PUMO,0,0,,YU,0
-2021-10-27,12:38,Wednesday,SHERBOURNE STATION,MUPAA,0,0,E,BD,5033
-2021-10-27,13:27,Wednesday,KENNEDY BD STATION,TUNOA,3,6,W,BD,5036
-2021-10-27,13:33,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-27,13:52,Wednesday,DUPONT STATION,MUNCA,0,0,,YU,0
-2021-10-27,13:54,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-27,14:23,Wednesday,UNION STATION,MUPAA,3,6,N,YU,5641
-2021-10-27,14:26,Wednesday,KENNEDY BD STATION,TUNOA,3,6,,BD,5094
-2021-10-27,15:01,Wednesday,VICTORIA PARK STATION,SUO,3,6,W,BD,5308
-2021-10-27,15:12,Wednesday,UNION STATION,TUATC,0,0,N,YU,5596
-2021-10-27,15:26,Wednesday,KING STATION,MUPAA,0,0,S,YU,5531
-2021-10-27,15:30,Wednesday,KENNEDY BD STATION,TUNOA,3,6,,BD,5036
-2021-10-27,15:46,Wednesday,YONGE BD STATION,SUAP,0,0,E,BD,0
-2021-10-27,16:49,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-27,17:16,Wednesday,COXWELL STATION,TUNOA,3,6,E,BD,5124
-2021-10-27,17:35,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-27,17:36,Wednesday,KIPLING STATION,EUBK,3,6,E,BD,5247
-2021-10-27,18:18,Wednesday,BROADVIEW STATION,SUO,0,0,,BD,0
-2021-10-27,18:23,Wednesday,VICTORIA PARK STATION,SUO,0,0,,BD,0
-2021-10-27,18:33,Wednesday,KING STATION,SUDP,0,0,N,YU,5691
-2021-10-27,19:06,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-27,19:37,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-27,19:46,Wednesday,DUFFERIN STATION,SUPOL,0,0,W,BD,0
-2021-10-27,19:48,Wednesday,KIPLING STATION,SUO,0,0,,BD,0
-2021-10-27,20:07,Wednesday,SHEPPARD STATION,SUDP,0,0,,YU,0
-2021-10-27,20:35,Wednesday,LAWRENCE STATION,SUDP,23,26,S,YU,5786
-2021-10-27,20:39,Wednesday,OLD MILL STATION,EUNT,4,10,W,BD,5136
-2021-10-27,21:38,Wednesday,FINCH WEST STATION,SUO,26,29,S,YU,5661
-2021-10-27,21:39,Wednesday,COXWELL STATION,TUNOA,6,12,E,BD,5000
-2021-10-27,21:47,Wednesday,ST PATRICK STATION,MUPAA,0,0,S,YU,5911
-2021-10-27,22:00,Wednesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-10-27,22:02,Wednesday,KIPLING STATION,MUI,6,12,E,BD,5059
-2021-10-27,22:04,Wednesday,NORTH YORK CTR STATION,MUPAA,0,0,S,YU,5711
-2021-10-27,22:15,Wednesday,EGLINTON STATION,EUSC,0,0,S,YU,5651
-2021-10-27,22:36,Wednesday,VAUGHAN MC STATION,TUNOA,5,10,S,YU,0
-2021-10-27,22:45,Wednesday,COXWELL STATION,TUNOA,6,12,E,BD,5000
-2021-10-27,23:00,Wednesday,EGLINTON STATION TO SH,MUO,0,0,,YU,0
-2021-10-27,00:10,Wednesday,MAIN STREET STATION,SUDP,0,0,E,BD,5055
-2021-10-27,00:27,Wednesday,DUPONT STATION,SUAP,15,20,S,YU,5911
-2021-10-27,00:30,Wednesday,NORTH YORK CTR STATION,MUSC,0,0,S,YU,6081
-2021-10-27,00:46,Wednesday,UNION STATION,MUPAA,0,0,S,YU,5651
-2021-10-27,01:45,Wednesday,EGLINTON STATION,SUAE,0,0,S,YU,0
-2021-10-27,11:49,Wednesday,LESLIE STATION,TUMVS,7,12,E,SHP,6181
-2021-10-27,11:58,Wednesday,DON MILLS STATION,TUO,5,10,W,SHP,6181
-2021-10-27,13:34,Wednesday,SHEPPARD-YONGE STATION,TUNOA,5,10,E,SHP,6146
-2021-10-28,09:31,Thursday,ELLESMERE STATION,ERDO,0,0,N,SRT,3013
-2021-10-28,05:33,Thursday,UNION STATION,SUO,0,0,,YU,0
-2021-10-28,05:38,Thursday,COLLEGE STATION,MUNCA,0,0,,YU,0
-2021-10-28,11:32,Thursday,KENNEDY SRT STATION,MRTO,18,23,S,SRT,3013
-2021-10-28,06:06,Thursday,FINCH STATION,MUSC,0,0,S,YU,5531
-2021-10-28,21:57,Thursday,KENNEDY SRT TO LAWREN,MRO,0,0,,SRT,0
-2021-10-28,07:06,Thursday,WILSON STATION,TUNOA,3,6,S,YU,0
-2021-10-28,07:22,Thursday,YONGE BD STATION,MUO,3,6,W,BD,5351
-2021-10-28,08:16,Thursday,MUSEUM STATION,MUPAA,3,6,S,YU,5981
-2021-10-28,08:21,Thursday,FINCH STATION,SUDP,0,0,,YU,0
-2021-10-28,09:02,Thursday,FINCH STATION,TUSC,0,0,N,YU,5876
-2021-10-28,09:53,Thursday,VICTORIA PARK STATION,MUIS,0,0,W,BD,0
-2021-10-28,09:58,Thursday,VAUGHAN MC STATION,SUDP,3,6,S,YU,5381
-2021-10-28,10:55,Thursday,COLLEGE STATION,SUDP,0,0,S,YU,5456
-2021-10-28,10:58,Thursday,GREENWOOD CARHOUSE,PUMO,0,0,,BD,0
-2021-10-28,11:06,Thursday,UNION STATION,SUDP,10,13,N,YU,5876
-2021-10-28,11:18,Thursday,BLOOR STATION,MUIS,0,0,,YU,0
-2021-10-28,12:48,Thursday,EGLINTON STATION,MUATC,3,6,S,YU,5996
-2021-10-28,12:57,Thursday,COXWELL STATION,TUNOA,3,6,E,BD,5000
-2021-10-28,13:12,Thursday,FINCH WEST STATION,MUWR,3,6,S,YU,5836
-2021-10-28,13:13,Thursday,KENNEDY BD STATION,TUNOA,3,6,W,BD,0
-2021-10-28,13:54,Thursday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-28,13:55,Thursday,UNION STATION,SUDP,7,10,S,YU,6026
-2021-10-28,14:18,Thursday,VICTORIA PARK STATION,MUIS,0,0,,,0
-2021-10-28,14:28,Thursday,ST CLAIR STATION,MUPAA,0,0,N,YU,5891
-2021-10-28,14:29,Thursday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-28,14:35,Thursday,COXWELL STATION,TUNOA,3,6,E,BD,5000
-2021-10-28,14:54,Thursday,COXWELL STATION,TUNOA,3,6,E,BD,5000
-2021-10-28,14:57,Thursday,FINCH STATION,MUSAN,3,6,S,YU,5981
-2021-10-28,15:00,Thursday,ROYAL YORK STATION,MUSC,0,0,E,BD,5055
-2021-10-28,15:12,Thursday,COXWELL STATION,TUNOA,3,6,E,BD,5000
-2021-10-28,15:54,Thursday,UNION STATION,MUWR,0,0,,YU,0
-2021-10-28,16:23,Thursday,WOODBINE STATION,SUAP,6,9,E,BD,5117
-2021-10-28,16:24,Thursday,ST CLAIR WEST STATION,MUPAA,0,0,N,YU,6136
-2021-10-28,16:51,Thursday,WARDEN STATION,SUO,10,13,E,BD,5154
-2021-10-28,17:16,Thursday,COXWELL STATION,TUNOA,3,6,E,BD,5000
-2021-10-28,17:17,Thursday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-28,17:35,Thursday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-28,17:41,Thursday,RUNNYMEDE STATION,MUI,25,28,W,BD,5233
-2021-10-28,17:52,Thursday,FINCH STATION,SUDP,0,0,,YU,0
-2021-10-28,17:55,Thursday,EGLINTON STATION,MUIRS,0,0,,YU,0
-2021-10-28,18:13,Thursday,ST CLAIR WEST STATION,MUIS,0,0,N,YU,5551
-2021-10-28,18:22,Thursday,WELLESLEY STATION,MUIRS,0,0,,YU,0
-2021-10-28,18:24,Thursday,COXWELL STATION,TUNOA,3,6,E,BD,5000
-2021-10-28,18:43,Thursday,KEELE STATION,MUIS,0,0,,BD,0
-2021-10-28,18:51,Thursday,HIGH PARK STATION,MUO,0,0,,BD,0
-2021-10-28,18:59,Thursday,DONLANDS STATION,EUOE,0,0,E,BD,5063
-2021-10-28,19:34,Thursday,MAIN STREET STATION,SUDP,0,0,W,BD,5312
-2021-10-28,20:13,Thursday,VICTORIA PARK STATION,MUIS,0,0,,BD,0
-2021-10-28,20:20,Thursday,COXWELL STATION,SUDP,0,0,,BD,0
-2021-10-28,20:32,Thursday,SPADINA BD STATION,MUPAA,0,0,W,BD,5279
-2021-10-28,20:52,Thursday,CHESTER STATION,SUO,0,0,W,BD,5286
-2021-10-28,21:04,Thursday,DAVISVILLE STATION,MUIRS,0,0,S,YU,0
-2021-10-28,21:15,Thursday,COXWELL STATION,TUNOA,6,12,E,BD,5000
-2021-10-28,21:15,Thursday,ST GEORGE YUS STATION,SUUT,0,0,N,YU,0
-2021-10-28,21:24,Thursday,FINCH STATION,SUDP,3,6,S,YU,6126
-2021-10-28,22:00,Thursday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-10-28,22:00,Thursday,KIPLING STATION,SUAP,0,0,,BD,0
-2021-10-28,22:09,Thursday,ST GEORGE BD STATION,PUSTC,0,0,W,BD,5279
-2021-10-28,22:45,Thursday,COXWELL STATION,TUNOA,6,12,E,BD,0
-2021-10-28,23:00,Thursday,EGLINTON TO SHEPPARD S,MUO,0,0,,YU,0
-2021-10-28,01:02,Thursday,BLOOR STATION,SUUT,33,37,S,YU,5766
-2021-10-28,01:04,Thursday,FINCH STATION,SUO,0,0,,YU,0
-2021-10-28,01:18,Thursday,SPADINA YUS STATION,MUIS,0,0,S,YU,6131
-2021-10-29,04:40,Friday,MCCOWAN CARHOUSE,MRO,0,0,,SRT,0
-2021-10-29,05:35,Friday,UNION STATION,MUIS,0,0,,YU,0
-2021-10-29,08:50,Friday,KENNEDY SRT STATION,ERDO,12,17,N,SRT,3009
-2021-10-29,06:25,Friday,SHEPPARD WEST STATION,MUATC,11,14,N,YU,5786
-2021-10-29,18:04,Friday,ELLESMERE STATION,TRNCA,0,0,,SRT,0
-2021-10-29,06:28,Friday,ST CLAIR WEST STATION,MUNCA,0,0,,YU,0
-2021-10-29,06:53,Friday,HIGH PARK STATION,SUDP,9,14,E,BD,5152
-2021-10-29,22:05,Friday,LAWRENCE EAST - KENNED,MRO,0,0,,SRT,0
-2021-10-29,06:53,Friday,FINCH STATION,MUSC,0,0,S,YU,5661
-2021-10-29,07:12,Friday,JANE STATION,MUPAA,4,7,W,BD,5270
-2021-10-29,07:17,Friday,EGLINTON STATION,MUATC,3,6,S,YU,5791
-2021-10-29,08:10,Friday,EGLINTON STATION,MUATC,6,9,S,YU,5751
-2021-10-29,08:20,Friday,WILSON YARD,MUIE,0,0,,YU,0
-2021-10-29,08:32,Friday,FINCH STATION,MUIR,3,6,S,YU,5841
-2021-10-29,09:11,Friday,HIGH PARK STATION,SUDP,0,0,E,BD,0
-2021-10-29,10:14,Friday,FINCH STATION,MUIR,3,6,S,YU,6106
-2021-10-29,10:50,Friday,OLD MILL STATION,TUMVS,0,0,E,BD,5080
-2021-10-29,11:14,Friday,EGLINTON STATION,MUSC,3,6,S,YU,5696
-2021-10-29,11:22,Friday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-10-29,11:45,Friday,OSSINGTON STATION,MUIRS,0,0,W,BD,0
-2021-10-29,11:57,Friday,ST PATRICK STATION,SUDP,3,6,S,YU,6116
-2021-10-29,12:01,Friday,HIGH PARK STATION,EUDO,4,7,E,BD,5070
-2021-10-29,12:53,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-10-29,12:53,Friday,BLOOR STATION,MUIRS,0,0,S,YU,0
-2021-10-29,13:48,Friday,VAUGHAN MC STATION,PUMEL,0,0,,YU,0
-2021-10-29,14:15,Friday,PAPE STATION,TUNOA,3,6,E,BD,0
-2021-10-29,15:13,Friday,COXWELL STATION,SUDP,3,6,E,BD,5177
-2021-10-29,15:22,Friday,LANSDOWNE STATION,MUD,3,6,W,BD,5282
-2021-10-29,15:23,Friday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-10-29,16:00,Friday,NORTH YORK CTR STATION,EUSC,0,0,S,YU,5981
-2021-10-29,16:50,Friday,FINCH STATION,SUAP,3,6,S,YU,6136
-2021-10-29,17:22,Friday,BAY STATION,PUMEL,0,0,,BD,0
-2021-10-29,17:57,Friday,SHERBOURNE STATION,SUUT,10,13,E,BD,5053
-2021-10-29,18:01,Friday,SHEPPARD WEST STATION,MUIE,4,7,S,YU,5781
-2021-10-29,18:11,Friday,SHERBOURNE STATION,MUIE,3,6,E,BD,5053
-2021-10-29,18:13,Friday,BLOOR STATION,PUTDN,4,7,S,YU,5991
-2021-10-29,18:58,Friday,KIPLING STATION,TUNIP,3,6,E,BD,5230
-2021-10-29,19:14,Friday,DUNDAS STATION,EUDO,5,8,N,YU,5826
-2021-10-29,20:09,Friday,GLENCAIRN STATION,MUPAA,3,6,S,YU,5876
-2021-10-29,21:18,Friday,CHRISTIE STATION,SUAP,12,18,W,BD,5213
-2021-10-29,21:28,Friday,FINCH STATION,MUSAN,3,6,S,YU,5981
-2021-10-29,21:49,Friday,GREENWOOD STATION,SUDP,0,0,W,BD,5111
-2021-10-29,22:00,Friday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-10-29,22:03,Friday,FINCH STATION,SUDP,0,0,S,YU,5626
-2021-10-29,22:16,Friday,WELLESLEY STATION,SUDP,0,0,N,YU,5416
-2021-10-29,22:17,Friday,SUMMERHILL STATION,SUO,7,12,N,YU,5676
-2021-10-29,22:42,Friday,SHEPPARD WEST STATION,SUDP,3,8,S,YU,5876
-2021-10-29,23:15,Friday,HIGH PARK STATION,MUIR,13,19,W,BD,5136
-2021-10-29,23:33,Friday,WILSON STATION,SUDP,4,9,S,YU,5781
-2021-10-29,23:49,Friday,WELLESLEY STATION,MUPR1,25,30,S,YU,5791
-2021-10-29,23:56,Friday,CHRISTIE STATION,SUDP,0,0,W,BD,5286
-2021-10-29,00:21,Friday,KENNEDY BD STATION,SUDP,0,0,,BD,0
-2021-10-29,00:24,Friday,BLOOR STATION,MUIS,0,0,,YU,0
-2021-10-29,00:34,Friday,ST GEORGE YUS STATION,MUI,4,9,N,YU,5551
-2021-10-29,00:51,Friday,CASTLE FRANK STATION,MUIR,8,14,E,BD,5080
-2021-10-29,00:54,Friday,BLOOR STATION,MUIS,0,0,,YU,0
-2021-10-29,01:11,Friday,EGLINTON STATION,MUPAA,3,8,S,YU,5626
-2021-10-29,01:38,Friday,YORK MILLS STATION,TUMVS,0,0,S,YU,5736
-2021-10-29,01:46,Friday,KIPLING STATION,MUIRS,0,0,,BD,0
-2021-10-29,16:33,Friday,LESLIE STATION,EUSC,0,0,W,SHP,6186
-2021-10-30,12:04,Saturday,KENNEDY SRT STATION,ERDO,0,0,N,SRT,3009
-2021-10-30,02:06,Saturday,VAUGHAN MC STATION,MUIS,0,0,,YU,0
-2021-10-30,02:09,Saturday,FINCH STATION,SUDP,0,0,,YU,0
-2021-10-30,22:00,Saturday,LAWRENCE EAST - KENNE,MRO,0,0,,SRT,0
-2021-10-30,02:31,Saturday,JANE STATION,SUAE,0,0,,BD,0
-2021-10-30,05:45,Saturday,QUEEN'S PARK STATION,SUO,0,0,,YU,0
-2021-10-30,05:56,Saturday,GREENWOOD STATION,TUNOA,6,12,E,BD,5000
-2021-10-30,05:57,Saturday,KIPLING STATION,TUNOA,6,12,E,BD,5000
-2021-10-30,06:08,Saturday,WOODBINE STATION,EUO,5,10,E,BD,5250
-2021-10-30,06:13,Saturday,VICTORIA PARK STATION,MUSC,0,0,E,BD,5250
-2021-10-30,06:34,Saturday,NORTH YORK CTR STATION,TUSC,0,0,N,YU,5981
-2021-10-30,07:34,Saturday,SPADINA BD STATION,SUDP,0,0,,BD,0
-2021-10-30,08:14,Saturday,ROYAL YORK STATION,MUSC,3,7,E,BD,5113
-2021-10-30,08:15,Saturday,SHEPPARD STATION,MUSC,0,0,N,YU,5551
-2021-10-30,09:04,Saturday,COXWELL STATION,TUNOA,4,8,E,BD,5000
-2021-10-30,09:28,Saturday,BLOOR STATION,SUO,0,0,N,YU,5571
-2021-10-30,09:45,Saturday,COXWELL STATION,TUNOA,4,8,E,BD,5000
-2021-10-30,09:46,Saturday,YONGE BD STATION,SUO,0,0,W,BD,5230
-2021-10-30,10:34,Saturday,QUEEN STATION,MUNCA,0,0,,YU,0
-2021-10-30,11:03,Saturday,ROYAL YORK STATION,MUIS,0,0,,BD,0
-2021-10-30,11:48,Saturday,FINCH STATION,TUNOA,4,8,S,YU,5561
-2021-10-30,12:15,Saturday,PIONEER VILLAGE STATIO,MUIS,0,0,,YU,0
-2021-10-30,13:17,Saturday,JANE STATION,MUIS,0,0,,BD,0
-2021-10-30,13:18,Saturday,ST CLAIR STATION,MUSAN,4,8,N,YU,5536
-2021-10-30,13:21,Saturday,CHRISTIE STATION,EUNT,0,0,E,BD,5089
-2021-10-30,13:22,Saturday,CHRISTIE STATION,EUCD,5,10,E,BD,5089
-2021-10-30,13:52,Saturday,EGLINTON WEST STATION,SUDP,4,8,N,YU,5766
-2021-10-30,13:54,Saturday,ROYAL YORK STATION,MUSC,0,0,E,BD,5113
-2021-10-30,14:04,Saturday,LAWRENCE WEST STATION,SUDP,10,14,N,YU,5766
-2021-10-30,14:20,Saturday,VAUGHAN MC STATION,TUNOA,4,8,S,YU,0
-2021-10-30,14:30,Saturday,VAUGHAN MC STATION,TUNOA,4,8,S,YU,0
-2021-10-30,15:58,Saturday,OSGOODE STATION,MUIRS,0,0,,YU,0
-2021-10-30,16:02,Saturday,VAUGHAN MC STATION,TUNIP,4,8,S,YU,5981
-2021-10-30,16:11,Saturday,SHERBOURNE STATION,SUDP,0,0,E,BD,5154
-2021-10-30,16:34,Saturday,KENNEDY BD STATION,SUDP,4,8,E,BD,5154
-2021-10-30,17:12,Saturday,KENNEDY BD STATION,EUOE,0,0,W,BD,5183
-2021-10-30,17:39,Saturday,CASTLE FRANK STATION,MUIS,0,0,W,BD,5168
-2021-10-30,17:42,Saturday,VAUGHAN MC STATION,TUNOA,4,8,S,YU,0
-2021-10-30,18:20,Saturday,OSGOODE STATION,MUIRS,0,0,,YU,0
-2021-10-30,18:22,Saturday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-10-30,18:27,Saturday,SHERBOURNE STATION,MUPAA,0,0,E,BD,5092
-2021-10-30,19:09,Saturday,BLOOR STATION,PUMEL,0,0,N,YU,0
-2021-10-30,19:27,Saturday,ST ANDREW STATION,MUIRS,0,0,N,YU,0
-2021-10-30,20:15,Saturday,KEELE STATION,SUAP,0,0,W,BD,0
-2021-10-30,20:34,Saturday,JANE STATION,MUNCA,0,0,,BD,0
-2021-10-30,20:43,Saturday,DONLANDS STATION,SUDP,0,0,E,BD,5248
-2021-10-30,21:07,Saturday,SPADINA BD STATION,SUDP,0,0,W,BD,5135
-2021-10-30,21:25,Saturday,ST CLAIR WEST STATION,SUDP,5,10,S,YU,5936
-2021-10-30,21:30,Saturday,ST ANDREW STATION,MUPAA,5,10,S,YU,5873
-2021-10-30,21:55,Saturday,CHRISTIE STATION,SUDP,0,0,E,BD,5092
-2021-10-30,22:00,Saturday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-10-30,22:37,Saturday,DUFFERIN STATION,MUPAA,0,0,W,BD,5080
-2021-10-30,22:46,Saturday,BLOOR STATION,MUSAN,7,14,S,YU,5671
-2021-10-30,23:01,Saturday,DUNDAS STATION,SUUT,24,31,S,YU,5441
-2021-10-30,00:09,Saturday,MAIN STREET STATION,MUIS,0,0,,BD,0
-2021-10-30,00:26,Saturday,WARDEN STATION,SUAP,23,30,E,BD,5053
-2021-10-30,00:45,Saturday,ST ANDREW STATION,MUIS,0,0,,YU,0
-2021-10-30,01:42,Saturday,WILSON STATION,SUDP,0,0,S,YU,5761
-2021-10-30,17:56,Saturday,BAYVIEW STATION,MUSAN,5,10,E,SHP,6146
-2021-10-30,20:20,Saturday,DON MILLS STATION,SUDP,0,0,,SHP,0
-2021-10-31,23:00,Sunday,KENNEDY SRT - LAWRENCE,MRO,0,0,,SRT,0
-2021-10-31,07:30,Sunday,WOODBINE STATION,MUNCA,0,0,,BD,0
-2021-10-31,08:04,Sunday,KEELE STATION,MUNCA,0,0,,BD,0
-2021-10-31,08:06,Sunday,EGLINTON STATION,MUATC,4,0,N,YU,5571
-2021-10-31,08:42,Sunday,GREENWOOD STATION,TUNOA,5,10,E,BD,0
-2021-10-31,08:51,Sunday,DAVISVILLE STATION,MUATC,6,12,N,YU,5486
-2021-10-31,09:05,Sunday,ROSEDALE STATION,MUPAA,4,9,S,YU,5766
-2021-10-31,09:09,Sunday,ST GEORGE YUS STATION,PUOPO,3,8,N,YU,5576
-2021-10-31,09:13,Sunday,SPADINA YUS STATION,PUOPO,7,12,N,YU,5576
-2021-10-31,09:25,Sunday,GLENCAIRN STATION,MUIE,0,0,N,YU,0
-2021-10-31,09:59,Sunday,DAVISVILLE STATION,MUATC,0,0,N,YU,5666
-2021-10-31,10:32,Sunday,EGLINTON STATION,SUDP,24,29,N,YU,5861
-2021-10-31,10:52,Sunday,PIONEER VILLAGE STATIO,PUOPO,5,10,S,YU,5781
-2021-10-31,11:17,Sunday,NORTH YORK CTR STATION,EUSC,0,0,N,YU,5981
-2021-10-31,12:12,Sunday,ST PATRICK STATION,MUIS,0,0,,YU,0
-2021-10-31,12:12,Sunday,WELLESLEY STATION,SUAP,5,10,S,YU,6001
-2021-10-31,12:38,Sunday,SHEPPARD WEST STATION,EUOE,4,9,S,YU,5826
-2021-10-31,13:01,Sunday,JANE STATION,SUDP,8,13,E,BD,5135
-2021-10-31,13:31,Sunday,KIPLING STATION,MUI,5,10,E,BD,5113
-2021-10-31,13:47,Sunday,CHESTER STATION,MUIS,3,8,W,BD,5223
-2021-10-31,14:56,Sunday,KENNEDY BD STATION,TUNOA,5,10,W,BD,0
-2021-10-31,15:00,Sunday,RUNNYMEDE STATION,SUO,0,0,W,BD,0
-2021-10-31,15:11,Sunday,WARDEN STATION,SUUT,0,0,E,BD,5087
-2021-10-31,15:36,Sunday,CASTLE FRANK STATION,MUIS,0,0,,BD,0
-2021-10-31,15:47,Sunday,KIPLING STATION,MUSC,5,10,E,BD,5247
-2021-10-31,16:04,Sunday,ST CLAIR STATION,MUPAA,0,0,S,YU,5736
-2021-10-31,16:21,Sunday,FINCH WEST STATION,PUOPO,0,0,S,YU,5451
-2021-10-31,16:24,Sunday,YORKDALE STATION,PUOPO,0,0,S,YU,5486
-2021-10-31,17:15,Sunday,PAPE STATION,MUNCA,0,0,,BD,0
-2021-10-31,17:42,Sunday,MUSEUM STATION,MUPAA,3,8,N,YU,5661
-2021-10-31,17:47,Sunday,SHEPPARD STATION,MUTO,0,0,N,YU,5846
-2021-10-31,18:03,Sunday,WARDEN STATION,TUO,0,0,W,BD,5286
-2021-10-31,18:09,Sunday,EGLINTON STATION,MUSC,0,0,N,YU,5761
-2021-10-31,18:28,Sunday,ST GEORGE BD STATION,MUTO,5,10,W,BD,5126
-2021-10-31,18:42,Sunday,DONLANDS STATION,SUO,0,0,,BD,0
-2021-10-31,18:45,Sunday,WELLESLEY STATION,MUIRS,0,0,S,YU,5501
-2021-10-31,19:35,Sunday,KENNEDY BD STATION,MUIRS,0,0,,BD,0
-2021-10-31,19:40,Sunday,BROADVIEW STATION,SUUT,0,0,W,BD,5221
-2021-10-31,19:46,Sunday,VAUGHAN MC STATION,SUBT,21,28,S,YU,5846
-2021-10-31,20:51,Sunday,BLOOR STATION,MUIS,0,0,,YU,0
-2021-10-31,20:56,Sunday,MAIN STREET STATION,MUPAA,0,0,W,BD,5135
-2021-10-31,20:59,Sunday,DUNDAS STATION,SUUT,0,0,S,YU,5391
-2021-10-31,21:30,Sunday,YONGE BD STATION,SUAE,0,0,W,BD,5221
-2021-10-31,21:36,Sunday,BATHURST STATION,SUO,7,14,W,BD,5221
-2021-10-31,22:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-10-31,22:42,Sunday,CHRISTIE STATION,SUDP,6,13,W,BD,5030
-2021-10-31,00:53,Sunday,COLLEGE STATION,EUTRD,6,13,S,YU,5991
-2021-11-01,02:27,Monday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-11-01,16:00,Monday,MIDLAND STATION,MRTO,5,8,S,SRT,3002
-2021-11-01,02:34,Monday,FINCH STATION,MUIS,0,0,,YU,0
-2021-11-01,19:34,Monday,MIDLAND STATION,TRNCA,0,0,,SRT,0
-2021-11-01,02:51,Monday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-11-01,22:35,Monday,KENNEDY SRT - LAWRENCE,MRO,0,0,,SRT,0
-2021-11-01,03:16,Monday,WILSON STATION,MUIS,0,0,,YU,0
-2021-11-01,05:43,Monday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-11-01,05:57,Monday,NORTH YORK CTR STATION,EUSC,0,0,N,YU,5981
-2021-11-01,06:23,Monday,DAVISVILLE STATION,TUO,15,20,S,YU,5456
-2021-11-01,06:28,Monday,SHEPPARD WEST STATION,EUDO,5,10,N,YU,5946
-2021-11-01,06:57,Monday,KENNEDY BD STATION,PUSRA,3,6,E,BD,5021
-2021-11-01,08:50,Monday,ST CLAIR STATION,MUIR,0,0,S,YU,5546
-2021-11-01,09:22,Monday,BLOOR STATION,SUDP,10,13,N,YU,5826
-2021-11-01,10:10,Monday,CASTLE FRANK STATION,MUSAN,3,6,W,BD,5102
-2021-11-01,10:18,Monday,FINCH STATION,TUMVS,0,0,N,YU,6031
-2021-11-01,11:03,Monday,ST GEORGE BD STATION,SUDP,4,7,E,BD,5038
-2021-11-01,11:30,Monday,KING STATION,MUIRS,0,0,,YU,0
-2021-11-01,12:00,Monday,FINCH STATION,MUIS,0,0,,YU,0
-2021-11-01,12:12,Monday,DUNDAS STATION,MUATC,5,8,N,YU,5921
-2021-11-01,12:45,Monday,DAVISVILLE BUILDUP,MUATC,15,18,S,YU,5671
-2021-11-01,12:49,Monday,EGLINTON STATION,MUPAA,0,0,S,YU,5946
-2021-11-01,13:42,Monday,EGLINTON WEST STATION,MUIS,0,0,,YU,0
-2021-11-01,14:11,Monday,CHESTER STATION,TUSC,0,0,E,BD,5188
-2021-11-01,14:18,Monday,ST GEORGE BD STATION,MUI,8,11,E,BD,5201
-2021-11-01,14:32,Monday,SHEPPARD STATION,SUDP,0,0,S,YU,5526
-2021-11-01,14:50,Monday,KIPLING STATION,EUBK,3,6,E,BD,5247
-2021-11-01,15:11,Monday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-01,15:15,Monday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-01,15:17,Monday,KENNEDY BD STATION,EUVA,3,6,W,BD,5206
-2021-11-01,15:20,Monday,ST GEORGE YUS STATION,SUDP,3,6,N,YU,5626
-2021-11-01,15:24,Monday,QUEEN'S PARK STATION,SUROB,0,0,N,YU,5821
-2021-11-01,15:43,Monday,VICTORIA PARK STATION,SUO,0,0,,BD,0
-2021-11-01,15:43,Monday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5391
-2021-11-01,16:42,Monday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-01,16:53,Monday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-01,16:57,Monday,OLD MILL STATION,SUDP,9,12,E,BD,5286
-2021-11-01,17:03,Monday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-01,18:46,Monday,SUMMERHILL STATION,TUOS,3,6,S,YU,5821
-2021-11-01,19:08,Monday,FINCH WEST STATION,MUIS,0,0,,YU,0
-2021-11-01,19:12,Monday,OSGOODE STATION,MUTO,3,6,N,YU,5526
-2021-11-01,19:25,Monday,QUEEN'S PARK STATION,PUSAC,3,6,S,YU,5961
-2021-11-01,19:42,Monday,EGLINTON WEST STATION,SUDP,17,20,N,YU,5471
-2021-11-01,19:49,Monday,YORK UNIVERSITY STATIO,SUDP,4,7,S,YU,5396
-2021-11-01,20:05,Monday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5521
-2021-11-01,20:12,Monday,PAPE STATION,MUIS,0,0,,BD,0
-2021-11-01,20:31,Monday,UNION STATION,SUAE,0,0,,YU,0
-2021-11-01,20:53,Monday,SPADINA YUS STATION,SUDP,0,0,N,YU,5401
-2021-11-01,21:08,Monday,FINCH STATION,MUSAN,3,6,S,YU,5671
-2021-11-01,21:37,Monday,YONGE BD STATION,SUDP,6,12,W,BD,5170
-2021-11-01,22:00,Monday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-11-01,22:02,Monday,COLLEGE STATION,MUIR,13,18,N,YU,5686
-2021-11-01,22:10,Monday,VAUGHAN MC STATION,TUNIP,4,9,S,YU,5466
-2021-11-01,22:28,Monday,FINCH WEST STATION,PUMEL,0,0,,YU,0
-2021-11-01,22:39,Monday,EGLINTON WEST STATION,TUO,8,13,S,YU,5466
-2021-11-01,22:46,Monday,YONGE BD STATION,MUIRS,0,0,,BD,0
-2021-11-01,23:42,Monday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-11-01,23:50,Monday,LAWRENCE STATION,SUDP,0,0,,YU,0
-2021-11-01,00:03,Monday,WELLESLEY STATION,MUIS,0,0,S,YU,0
-2021-11-01,00:53,Monday,VICTORIA PARK STATION,TUMVS,3,9,W,BD,5113
-2021-11-01,01:21,Monday,QUEEN STATION,MUIS,0,0,S,YU,0
-2021-11-01,01:29,Monday,TORONTO TRANSIT COMMIS,MUO,0,0,,YUS,0
-2021-11-01,01:30,Monday,SHEPPARD WEST STATION,MUI,8,13,S,YU,5496
-2021-11-01,01:46,Monday,FINCH STATION,SUDP,0,0,,YU,0
-2021-11-01,01:10,Monday,DON MILLS STATION,SUDP,4,9,E,SHP,6176
-2021-11-02,16:22,Tuesday,LAWRENCE EAST STATION,MRUI,0,0,,SRT,0
-2021-11-02,05:37,Tuesday,NORTH YORK CTR STATION,MUSC,0,0,S,YU,5971
-2021-11-02,22:00,Tuesday,LAWRENCE EAST STATION,MRO,0,0,B,SRT,0
-2021-11-02,05:39,Tuesday,YORK MILLS STATION,PUTWZ,18,0,N,YU,5791
-2021-11-02,05:39,Tuesday,GREENWOOD STATION,TUNIP,0,0,E,BD,5092
-2021-11-02,05:45,Tuesday,GREENWOOD STATION,MUO,4,0,E,BD,5268
-2021-11-02,05:47,Tuesday,UNION STATION,SUO,0,0,,YU,0
-2021-11-02,06:04,Tuesday,DUNDAS WEST STATION,MUIRS,0,0,,BD,0
-2021-11-02,06:23,Tuesday,MAIN STREET STATION,EUSC,4,9,W,BD,5259
-2021-11-02,06:45,Tuesday,DAVISVILLE STATION,MUATC,3,6,S,YU,6021
-2021-11-02,08:55,Tuesday,COLLEGE STATION,SUDP,3,6,S,YU,5506
-2021-11-02,09:50,Tuesday,WELLESLEY STATION,MUNCA,0,0,,YU,0
-2021-11-02,10:50,Tuesday,EGLINTON STATION,MUATC,12,15,S,YU,5841
-2021-11-02,10:56,Tuesday,KIPLING STATION,MUTO,3,6,E,BD,5270
-2021-11-02,11:10,Tuesday,ROYAL YORK STATION,SUUT,0,0,E,BD,5113
-2021-11-02,11:11,Tuesday,SHERBOURNE STATION,PUMEL,0,0,,BD,0
-2021-11-02,11:46,Tuesday,ISLINGTON STATION,MUTD,0,0,E,BD,5162
-2021-11-02,11:53,Tuesday,VICTORIA PARK STATION,TUOS,3,6,E,BD,5223
-2021-11-02,12:05,Tuesday,KENNEDY BD STATION,MUO,3,6,W,BD,5223
-2021-11-02,12:18,Tuesday,NORTH YORK CTR STATION,MUSC,0,0,S,YU,5431
-2021-11-02,12:22,Tuesday,GREENWOOD SHOP,MUIE,0,0,,,0
-2021-11-02,13:00,Tuesday,KENNEDY BD STATION,TUNOA,3,6,W,BD,5000
-2021-11-02,13:07,Tuesday,EGLINTON STATION,MUSC,0,0,N,YU,5846
-2021-11-02,13:49,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-02,14:02,Tuesday,ROSEDALE STATION,MUPLB,11,14,S,YU,5816
-2021-11-02,14:09,Tuesday,SUMMERHILL STATION,MUPAA,0,0,S,YU,5926
-2021-11-02,14:26,Tuesday,PAPE STATION,EUTR,3,6,E,BD,5299
-2021-11-02,14:30,Tuesday,NORTH YORK CTR STATION,EUSC,0,0,N,YU,5981
-2021-11-02,15:06,Tuesday,DUFFERIN STATION,MUPAA,3,6,E,BD,5303
-2021-11-02,15:07,Tuesday,WARDEN STATION,MUO,5,8,W,BD,5102
-2021-11-02,15:11,Tuesday,DONLANDS STATION,EUDO,10,9,W,BD,5374
-2021-11-02,15:13,Tuesday,ROSEDALE STATION,MUI,7,10,N,YU,5476
-2021-11-02,15:24,Tuesday,BLOOR STATION,MUD,3,6,N,YU,5756
-2021-11-02,15:28,Tuesday,WARDEN STATION,SUO,0,0,W,BD,5208
-2021-11-02,15:48,Tuesday,MUSEUM STATION,MUPAA,0,0,S,YU,5726
-2021-11-02,15:48,Tuesday,OLD MILL STATION,SUO,20,23,W,BD,5014
-2021-11-02,16:28,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-02,16:35,Tuesday,QUEEN STATION,MUPAA,0,0,S,YU,5791
-2021-11-02,16:39,Tuesday,COLLEGE STATION,MUO,0,0,,YU,0
-2021-11-02,16:52,Tuesday,MAIN STREET STATION,MUIRS,0,0,W,BD,0
-2021-11-02,16:59,Tuesday,UNION STATION,MUIRS,0,0,,YU,0
-2021-11-02,17:14,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-02,17:18,Tuesday,MAIN STREET STATION,MUTO,3,6,E,BD,5108
-2021-11-02,17:23,Tuesday,HIGH PARK STATION,SUDP,0,0,,BD,0
-2021-11-02,17:41,Tuesday,FINCH STATION,MUSC,0,0,S,YU,5696
-2021-11-02,17:48,Tuesday,DUFFERIN STATION,EUDO,0,0,E,BD,5286
-2021-11-02,18:55,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-02,18:56,Tuesday,PIONEER VILLAGE STATIO,MUIS,0,0,,41 KEELE,1422
-2021-11-02,19:37,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-02,20:18,Tuesday,DUFFERIN STATION,SUUT,13,19,W,BD,5307
-2021-11-02,20:22,Tuesday,SHEPPARD WEST STATION,MUI,18,21,N,YU,5391
-2021-11-02,20:42,Tuesday,ST PATRICK STATION,SUUT,12,15,N,YU,5531
-2021-11-02,21:26,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-02,22:00,Tuesday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU/BD,0
-2021-11-02,22:01,Tuesday,VAUGHAN MC STATION,TUNOA,5,10,S,YU,0
-2021-11-02,22:34,Tuesday,DONLANDS STATION,EUCA,7,13,W,BD,5053
-2021-11-02,22:46,Tuesday,LAWRENCE WEST STATION,MUIS,0,0,,YU,0
-2021-11-02,22:58,Tuesday,YORK MILLS STATION,SUUT,0,0,N,YU,5536
-2021-11-02,23:01,Tuesday,VAUGHAN MC STATION,TUNOA,5,10,S,YU,0
-2021-11-02,23:20,Tuesday,DUNDAS STATION,MUIS,0,0,,YU,0
-2021-11-02,23:54,Tuesday,WELLESLEY STATION,SUO,0,0,,YU,0
-2021-11-02,00:20,Tuesday,FINCH WEST STATION,MUSAN,3,8,S,YU,5706
-2021-11-02,00:27,Tuesday,DAVISVILLE YARD,PUMO,0,0,,YU,0
-2021-11-02,01:38,Tuesday,MAIN STREET STATION,SUUT,32,38,E,BD,5161
-2021-11-02,01:39,Tuesday,VAUGHAN MC STATION,SUDP,0,0,N,YU,0
-2021-11-02,01:45,Tuesday,DUNDAS STATION,MUIRS,0,0,,YU,0
-2021-11-03,02:06,Wednesday,FINCH STATION,MUIS,0,0,,YU,0
-2021-11-03,17:10,Wednesday,MCCOWAN STATION,TRNOA,5,10,S,SRT,0
-2021-11-03,22:00,Wednesday,LAWRENCE EAST STATION,MRO,0,0,B,SRT,0
-2021-11-03,05:34,Wednesday,UNION STATION,SUDP,0,0,,YU,0
-2021-11-03,05:42,Wednesday,YORK MILLS STATION,MUATC,4,0,N,YU,5941
-2021-11-03,05:46,Wednesday,YORK MILLS STATION,PUTD,0,0,S,YU,5456
-2021-11-03,06:28,Wednesday,GREENWOOD STATION,TUNOA,0,0,E,BD,0
-2021-11-03,06:33,Wednesday,WILSON STATION,EUO,3,7,S,YU,5856
-2021-11-03,07:32,Wednesday,KIPLING STATION,PUMST,0,0,,BD,0
-2021-11-03,08:09,Wednesday,EGLINTON STATION (APPR,MUATC,8,11,S,YU,5666
-2021-11-03,08:41,Wednesday,EGLINTON STATION,MUSC,0,0,N,YU,5906
-2021-11-03,09:09,Wednesday,SHEPPARD WEST TO WILSO,PUSSW,19,22,S,YU,5991
-2021-11-03,09:26,Wednesday,ST ANDREW STATION,MUIR,5,8,S,YU,5861
-2021-11-03,10:00,Wednesday,KENNEDY BD STATION,TUNOA,3,6,W,BD,0
-2021-11-03,10:13,Wednesday,KENNEDY BD STATION,TUNOA,3,6,W,BD,0
-2021-11-03,10:39,Wednesday,BLOOR STATION,SUDP,0,0,N,YU,5601
-2021-11-03,11:45,Wednesday,ST CLAIR STATION,SUDP,0,0,S,YU,5786
-2021-11-03,12:53,Wednesday,YONGE BD STATION,MUPAA,0,0,E,BD,5224
-2021-11-03,13:30,Wednesday,SHEPPARD STATION,MUIR,3,6,S,YU,5686
-2021-11-03,13:54,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-03,15:24,Wednesday,EGLINTON STATION,SUUT,6,9,S,YU,5811
-2021-11-03,16:28,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-03,16:38,Wednesday,VAUGHAN MC STATION,TUNIP,7,10,S,YU,5506
-2021-11-03,17:17,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-03,17:38,Wednesday,LANSDOWNE STATION,MUIS,0,0,E,BD,5188
-2021-11-03,17:43,Wednesday,EGLINTON STATION (MIGR,MUATC,3,6,S,YU,5946
-2021-11-03,18:08,Wednesday,FINCH STATION,TUKEY,3,6,S,YU,5531
-2021-11-03,18:10,Wednesday,DUNDAS STATION,MUIS,0,0,,YU,0
-2021-11-03,18:23,Wednesday,KENNEDY BD STATION,TUNOA,6,12,,BD,5066
-2021-11-03,18:27,Wednesday,NORTH YORK CTR STATION,EUSC,0,0,N,YU,5981
-2021-11-03,18:32,Wednesday,SHERBOURNE STATION,PUMST,0,0,,BD,0
-2021-11-03,18:33,Wednesday,DAVISVILLE STATION,MUIS,0,0,,YU,0
-2021-11-03,18:41,Wednesday,DUFFERIN STATION,MUPAA,0,0,W,BD,5063
-2021-11-03,18:44,Wednesday,COXWELL STATION,MUIR,6,9,W,BD,5260
-2021-11-03,18:44,Wednesday,NORTH YORK CTR STATION,MUSAN,3,6,S,YU,5816
-2021-11-03,19:04,Wednesday,ST GEORGE BD STATION,SUDP,3,6,W,BD,5102
-2021-11-03,19:06,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-03,19:25,Wednesday,HIGH PARK STATION,SUO,0,0,,BD,0
-2021-11-03,19:36,Wednesday,FINCH STATION,SUAP,34,37,S,YU,5606
-2021-11-03,20:14,Wednesday,KENNEDY BD STATION,EUBO,6,12,,BD,5260
-2021-11-03,20:35,Wednesday,EGLINTON STATION,MUNCA,0,0,,YU,0
-2021-11-03,20:38,Wednesday,VICTORIA PARK STATION,SUAE,17,23,W,BD,5083
-2021-11-03,21:34,Wednesday,DAVISVILLE STATION,SUDP,0,0,N,YU,6061
-2021-11-03,21:51,Wednesday,ISLINGTON STATION,SUUT,26,32,W,BD,5126
-2021-11-03,22:00,Wednesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-11-03,22:36,Wednesday,ST CLAIR WEST STATION,SUDP,8,13,S,YU,5496
-2021-11-03,22:58,Wednesday,BLOOR STATION,MUIS,0,0,S,YU,0
-2021-11-03,23:03,Wednesday,WARDEN STATION,MUIS,0,0,,BD,0
-2021-11-03,23:08,Wednesday,FINCH STATION,MUSC,0,0,S,YU,5531
-2021-11-03,00:15,Wednesday,GLENCAIRN STATION,SUDP,13,18,S,YU,5616
-2021-11-03,00:51,Wednesday,PAPE STATION,EUDO,6,12,E,BD,5128
-2021-11-03,01:21,Wednesday,YORK MILLS STATION,TUMVS,11,16,N,YU,5601
-2021-11-03,03:11,Wednesday,DON MILLS STATION,MUIS,0,0,,SHP,0
-2021-11-04,02:47,Thursday,FINCH STATION,MUIS,0,0,,YU,0
-2021-11-04,05:55,Thursday,MIDLAND STATION,ERO,5,10,S,SRT,3002
-2021-11-04,05:40,Thursday,GREENWOOD STATION,TUNOA,5,0,E,BD,5000
-2021-11-04,16:53,Thursday,SCARBOROUGH CTR STATIO,PREL,0,0,,SRT,0
-2021-11-04,22:09,Thursday,KENNEDY - LAWRENCE EAS,MRO,0,0,,SRT,0
-2021-11-04,05:42,Thursday,UNION STATION,SUDP,0,0,,YU,0
-2021-11-04,05:56,Thursday,COXWELL STATION,TUNOA,3,6,E,BD,5000
-2021-11-04,06:08,Thursday,COLLEGE STATION,PUMST,0,0,,YU,0
-2021-11-04,06:10,Thursday,GREENWOOD STATION,SUUT,18,22,E,BD,5113
-2021-11-04,06:17,Thursday,SHEPPARD WEST STATION,TUO,3,6,N,YU,5821
-2021-11-04,06:40,Thursday,WELLESLEY STATION,MUIS,0,0,,YU,0
-2021-11-04,06:45,Thursday,GREENWOOD STATION,SUDP,4,7,W,BD,5253
-2021-11-04,06:49,Thursday,DONLANDS STATION,MUO,3,6,E,BD,5001
-2021-11-04,08:31,Thursday,BATHURST STATION,MUIRS,5,8,W,BD,5167
-2021-11-04,08:57,Thursday,PAPE STATION,MUIS,0,0,,BD,0
-2021-11-04,09:16,Thursday,EGLINTON STATION,MUATC,9,12,S,YU,5946
-2021-11-04,09:40,Thursday,JANE STATION,MUPAA,0,0,W,BD,5066
-2021-11-04,09:48,Thursday,QUEEN'S PARK STATION,SUAP,0,0,,YU,0
-2021-11-04,10:13,Thursday,FINCH STATION,MUTO,3,6,S,YU,5676
-2021-11-04,11:44,Thursday,ROSEDALE STATION,MUI,13,16,N,YU,5876
-2021-11-04,12:54,Thursday,FINCH STATION,TUO,3,6,N,YU,5956
-2021-11-04,13:21,Thursday,EGLINTON STATION,MUATC,8,11,S,YU,6086
-2021-11-04,13:35,Thursday,RUNNYMEDE STATION,PUMEL,0,0,,BD,0
-2021-11-04,14:23,Thursday,BAY STATION,EUPI,4,7,W,BD,5274
-2021-11-04,14:29,Thursday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5000
-2021-11-04,14:35,Thursday,EGLINTON STATION,SUO,3,6,N,YU,5671
-2021-11-04,14:58,Thursday,VAUGHAN MC STATION,TUNIP,3,6,S,YU,5971
-2021-11-04,15:01,Thursday,ST ANDREW STATION,MUPAA,3,6,S,YU,6001
-2021-11-04,15:05,Thursday,COXWELL STATION,TUNOA,3,6,E,BD,0
-2021-11-04,15:20,Thursday,VAUGHAN MC STATION,TUSUP,3,6,S,YU,6101
-2021-11-04,15:33,Thursday,BATHURST STATION,SUO,8,11,W,BD,5239
-2021-11-04,15:34,Thursday,BLOOR STATION,MUIS,0,0,,YU,0
-2021-11-04,15:42,Thursday,KENNEDY BD STATION,MUIRS,0,0,,BD,0
-2021-11-04,15:43,Thursday,LAWRENCE WEST STATION,MUIS,0,0,,YU,0
-2021-11-04,15:44,Thursday,YORKDALE STATION,SUDP,3,6,N,YU,5731
-2021-11-04,15:45,Thursday,WARDEN STATION,EUCD,0,0,E,BD,5143
-2021-11-04,16:20,Thursday,CHRISTIE STATION,EUCD,3,6,W,BD,5274
-2021-11-04,16:21,Thursday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5000
-2021-11-04,16:24,Thursday,DUFFERIN STATION,SUUT,0,0,W,BD,5089
-2021-11-04,16:28,Thursday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5000
-2021-11-04,16:33,Thursday,VAUGHAN MC STATION,MUATC,8,11,S,YU,5671
-2021-11-04,16:55,Thursday,SPADINA YUS STATION,SUUT,18,21,N,YU,5466
-2021-11-04,17:19,Thursday,YORK MILLS STATION,MUIRS,4,7,N,YU,5566
-2021-11-04,17:42,Thursday,DUFFERIN STATION,MUPAA,0,0,E,BD,5095
-2021-11-04,18:46,Thursday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5000
-2021-11-04,19:22,Thursday,LAWRENCE STATION,TUSC,0,0,S,YU,5516
-2021-11-04,19:24,Thursday,SUMMERHILL STATION,SUUT,3,6,S,YU,5481
-2021-11-04,19:36,Thursday,UNION STATION,SUO,3,6,S,YU,5481
-2021-11-04,20:25,Thursday,ISLINGTON STATION,MUD,3,9,W,BD,5029
-2021-11-04,20:28,Thursday,VAUGHAN MC STATION,MUNOA,3,6,S,YU,5481
-2021-11-04,21:12,Thursday,KING STATION,MUPAA,3,6,N,YU,6111
-2021-11-04,22:00,Thursday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-11-04,22:19,Thursday,FINCH STATION,SUDP,5,10,N,YU,5656
-2021-11-04,22:27,Thursday,FINCH WEST STATION,SUO,0,0,,YU,0
-2021-11-04,22:44,Thursday,DONLANDS STATION,MUPAA,0,0,W,BD,5177
-2021-11-04,22:46,Thursday,ST CLAIR WEST STATION,MUIS,0,0,,YU,0
-2021-11-04,22:53,Thursday,QUEEN STATION,SUUT,0,0,,YU,0
-2021-11-04,22:53,Thursday,KIPLING STATION,TUNOA,6,12,E,BD,0
-2021-11-04,23:49,Thursday,FINCH WEST STATION,PUMEL,0,0,,YU,0
-2021-11-04,00:02,Thursday,ST GEORGE YUS STATION,MUIS,0,0,N,YU,5951
-2021-11-04,00:52,Thursday,ST CLAIR STATION,EUVE,5,10,S,YU,6116
-2021-11-04,01:43,Thursday,YONGE BD STATION,MUIS,0,0,,BD,0
-2021-11-04,11:10,Thursday,LESLIE STATION,TUMVS,3,8,W,SHP,6186
-2021-11-05,06:07,Friday,MCCOWAN STATION,TRNIP,5,10,S,SRT,3004
-2021-11-05,02:03,Friday,ST CLAIR STATION,MUIS,0,0,S,YU,0
-2021-11-05,10:44,Friday,ELLESMERE STATION,MRTO,15,20,S,SRT,3018
-2021-11-05,02:28,Friday,WILSON STATION,MUIS,0,0,,YU,0
-2021-11-05,15:24,Friday,MCCOWAN STATION,TRNIP,3,8,S,SRT,3002
-2021-11-05,02:31,Friday,VAUGHAN MC STATION,MUIS,0,0,,YU,0
-2021-11-05,03:41,Friday,FINCH STATION,MUPLB,0,0,S,YU,0
-2021-11-05,22:02,Friday,KENNEDY - LAWRENCE EAS,MRO,0,0,,SRT,0
-2021-11-05,05:31,Friday,FINCH STATION,PUSTP,63,0,S,YU,5631
-2021-11-05,05:39,Friday,KENNEDY BD STATION,MUIRS,0,0,,BD,0
-2021-11-05,05:44,Friday,EGLINTON STATION,PUTWZ,6,0,S,YU,5831
-2021-11-05,05:59,Friday,KEELE STATION,EUNT,12,15,E,BD,5230
-2021-11-05,06:01,Friday,WILSON TRACK AND STRUC,MUO,0,0,,YU,0
-2021-11-05,06:35,Friday,GREENWOOD STATION,TUNOA,3,6,E,BD,0
-2021-11-05,06:36,Friday,SHEPPARD STATION,TUSC,3,6,S,YU,5526
-2021-11-05,07:14,Friday,FINCH STATION,MUSC,0,0,S,YU,5721
-2021-11-05,07:22,Friday,FINCH STATION,PUTSC,7,10,N,YU,5936
-2021-11-05,07:36,Friday,FINCH STATION,SUO,0,0,,YU,0
-2021-11-05,08:27,Friday,EGLINTON STATION (APPR,MUATC,0,0,S,YU,5466
-2021-11-05,08:59,Friday,BLOOR STATION,MUIRS,0,0,S,,0
-2021-11-05,09:22,Friday,BATHURST STATION,MUSC,0,0,E,BD,5084
-2021-11-05,09:37,Friday,EGLINTON STATION,MUSC,0,0,N,YU,5816
-2021-11-05,10:35,Friday,EGLINTON STATION (APPR,MUATC,4,7,S,YU,5931
-2021-11-05,11:03,Friday,WOODBINE STATION,MUSC,0,0,W,BD,5359
-2021-11-05,11:55,Friday,JANE STATION,EUDO,5,8,E,BD,5161
-2021-11-05,11:58,Friday,FINCH STATION,MUSC,0,0,S,YU,5696
-2021-11-05,12:39,Friday,BLOOR STATION,SUROB,0,0,S,YU,0
-2021-11-05,13:07,Friday,KENNEDY BD STATION,TUNOA,3,6,W,BD,0
-2021-11-05,13:39,Friday,NORTH YORK CTR STATION,MUSC,0,0,S,YU,5561
-2021-11-05,13:40,Friday,EGLINTON STATION (APPR,MUATC,5,8,S,YU,5931
-2021-11-05,13:53,Friday,COLLEGE STATION,SUDP,6,9,S,YU,6016
-2021-11-05,13:54,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5000
-2021-11-05,14:05,Friday,LAWRENCE STATION,EUSC,0,0,S,YU,5981
-2021-11-05,14:10,Friday,WELLESLEY STATION,SUDP,5,8,N,YU,5821
-2021-11-05,14:29,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5000
-2021-11-05,14:53,Friday,LAWRENCE STATION,SUEAS,14,17,N,YU,6051
-2021-11-05,15:09,Friday,VICTORIA PARK STATION,SUDP,9,12,W,BD,5092
-2021-11-05,15:20,Friday,VICTORIA PARK STATION,TUMVS,8,11,W,BD,5083
-2021-11-05,15:27,Friday,DUNDAS WEST STATION,PUMEL,0,0,,BD,0
-2021-11-05,15:32,Friday,WELLESLEY STATION,SUUT,11,14,N,YU,6021
-2021-11-05,15:37,Friday,DUFFERIN STATION,MUO,0,0,,BD,0
-2021-11-05,15:50,Friday,DUNDAS STATION,MUIS,0,0,N,YU,0
-2021-11-05,15:51,Friday,ST GEORGE YUS STATION,SUDP,3,6,N,YU,5611
-2021-11-05,15:52,Friday,EGLINTON WEST STATION,MUIRS,0,0,N,YU,0
-2021-11-05,16:51,Friday,EGLINTON STATION,MUATC,7,10,S,YU,5931
-2021-11-05,17:07,Friday,DONLANDS STATION,MUPLB,30,33,W,BD,5170
-2021-11-05,17:39,Friday,VICTORIA PARK STATION,SUUT,18,21,W,BD,5240
-2021-11-05,18:19,Friday,ROYAL YORK STATION,SUDP,0,0,W,BD,5170
-2021-11-05,18:24,Friday,COXWELL STATION,TUNOA,3,6,E,BD,5000
-2021-11-05,18:28,Friday,SPADINA BD STATION,MUTO,10,13,W,BD,5044
-2021-11-05,18:36,Friday,QUEEN STATION,SUAP,3,6,N,YU,6021
-2021-11-05,18:45,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,5000
-2021-11-05,19:12,Friday,CHESTER STATION,MUPAA,0,0,E,BD,5053
-2021-11-05,19:57,Friday,DAVISVILLE STATION,MUPAA,0,0,N,YU,5906
-2021-11-05,20:13,Friday,DUNDAS STATION,MUIS,0,0,,YU,0
-2021-11-05,20:16,Friday,DONLANDS STATION,SUUT,3,9,E,BD,5051
-2021-11-05,20:25,Friday,QUEEN STATION,MUIRS,0,0,,YU,0
-2021-11-05,22:00,Friday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-11-05,23:31,Friday,LAWRENCE STATION,SUDP,4,9,N,YU,6131
-2021-11-05,23:48,Friday,UNION STATION,MUIRS,0,0,,YU,0
-2021-11-05,00:00,Friday,OSSINGTON CENTRE TRACK,TUMVS,0,0,E,BD,5253
-2021-11-05,00:13,Friday,EGLINTON STATION,MUIR,13,18,S,YU,6081
-2021-11-05,00:42,Friday,PAPE STATION,SUO,0,0,W,BD,5239
-2021-11-05,01:38,Friday,VAUGHAN MC STATION,SUDP,0,0,S,YU,5461
-2021-11-05,01:58,Friday,MAIN STREET STATION,MUIS,0,0,,BD,0
-2021-11-05,05:45,Friday,SHEPPARD-YONGE STATION,PUMO,0,0,,SHP,0
-2021-11-06,22:00,Saturday,KENNEDY - LAWRENCE EAS,MRO,0,0,,SRT,0
-2021-11-06,02:46,Saturday,VAUGHAN MC STATION,SUDP,0,0,S,YU,5956
-2021-11-06,06:43,Saturday,FINCH STATION,EUBK,6,12,S,YU,5571
-2021-11-06,00:38,Saturday,MCCOWAN STATION,MRO,5,10,S,SRT,3023
-2021-11-06,06:53,Saturday,FINCH STATION,SUUT,0,0,N,YU,5551
-2021-11-06,07:52,Saturday,KING STATION,SUUT,0,0,N,YU,0
-2021-11-06,08:42,Saturday,WELLESLEY STATION,SUUT,0,0,S,YU,5811
-2021-11-06,10:21,Saturday,SUMMERHILL STATION,MUATC,3,7,N,YU,5716
-2021-11-06,10:22,Saturday,MAIN STREET STATION,PUMEL,0,0,E,BD,0
-2021-11-06,10:38,Saturday,BAY STATION,MUO,0,0,,BD,0
-2021-11-06,14:19,Saturday,PIONEER VILLAGE STATIO,PUMEL,0,0,,YU,0
-2021-11-06,15:53,Saturday,EGLINTON STATION,SUDP,3,7,N,YU,5386
-2021-11-06,16:00,Saturday,OSGOODE STATION,SUDP,0,0,N,YU,6021
-2021-11-06,16:07,Saturday,FINCH STATION,MUSC,3,7,S,YU,5531
-2021-11-06,16:22,Saturday,FINCH WEST STATION,MUATC,3,6,S,YU,5781
-2021-11-06,16:32,Saturday,ISLINGTON STATION,MUSAN,4,8,W,BD,5295
-2021-11-06,16:42,Saturday,DUPONT STATION,MUPAA,0,0,N,YU,6126
-2021-11-06,16:45,Saturday,BLOOR STATION,MUIRS,0,0,S,YU,0
-2021-11-06,17:16,Saturday,KENNEDY BD STATION,MUSAN,13,17,W,BD,5231
-2021-11-06,17:18,Saturday,VAUGHAN MC STATION,TUNIP,3,6,S,YU,5541
-2021-11-06,17:22,Saturday,KENNEDY BD STATION,TUSUP,4,8,E,BD,5004
-2021-11-06,17:22,Saturday,DUNDAS STATION,SUDP,3,7,S,YU,5666
-2021-11-06,17:34,Saturday,MUSEUM STATION,EUATC,4,7,S,YU,5851
-2021-11-06,18:19,Saturday,ISLINGTON STATION,TUSUP,12,16,E,BD,5004
-2021-11-06,18:24,Saturday,ST CLAIR STATION,EUATC,3,6,N,YU,5851
-2021-11-06,18:34,Saturday,MUSEUM STATION,MUIRS,0,0,N,YU,0
-2021-11-06,18:41,Saturday,KENNEDY BD STATION,MUO,0,0,,,0
-2021-11-06,18:47,Saturday,SHEPPARD STATION,MUIR,3,7,N,YU,5486
-2021-11-06,18:47,Saturday,DUPONT STATION,PUMEL,0,0,S,YU,0
-2021-11-06,18:57,Saturday,VICTORIA PARK STATION,SUUT,4,8,W,BD,5092
-2021-11-06,19:10,Saturday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-06,19:15,Saturday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-06,19:20,Saturday,EGLINTON STATION (APPR,MUATC,5,10,S,YU,5791
-2021-11-06,19:44,Saturday,DUNDAS STATION,MUIR,0,0,S,YU,6086
-2021-11-06,20:10,Saturday,LAWRENCE STATION,PUSTS,0,0,S,YU,5401
-2021-11-06,20:11,Saturday,EGLINTON STATION,MUATC,3,8,S,YU,5401
-2021-11-06,20:13,Saturday,DUFFERIN STATION,MUIS,0,0,,BD,0
-2021-11-06,21:12,Saturday,DUNDAS WEST STATION,SUDP,0,0,,BD,0
-2021-11-06,21:26,Saturday,SHEPPARD STATION,MUPAA,4,9,N,YU,5486
-2021-11-06,21:46,Saturday,DUNDAS STATION,MUIS,0,0,N,YU,0
-2021-11-06,23:02,Saturday,KIPLING STATION,PUSI,5,12,E,BD,5212
-2021-11-06,23:42,Saturday,EGLINTON STATION,SUDP,0,0,N,YU,5541
-2021-11-06,00:31,Saturday,VICTORIA PARK STATION,SUEAS,23,30,W,BD,5240
-2021-11-06,01:26,Saturday,PAPE STATION,MUIS,0,0,,BD,0
-2021-11-06,09:41,Saturday,LESLIE STATION,TUOS,0,0,W,SHP,6176
-2021-11-07,07:55,Sunday,FINCH STATION,PUSTC,0,0,S,YU,5616
-2021-11-07,22:00,Sunday,KENNEDY SRT TO LAWREN,MRO,0,0,,SRT,0
-2021-11-07,08:07,Sunday,KEELE STATION,TUNOA,5,10,W,BD,0
-2021-11-07,08:43,Sunday,ST GEORGE YUS STATION,TUNOA,5,11,S,YU,6131
-2021-11-07,08:56,Sunday,VAUGHAN MC STATION,TUO,3,9,S,YU,5386
-2021-11-07,09:03,Sunday,KIPLING STATION,EUDO,13,18,W,BD,5149
-2021-11-07,10:36,Sunday,SPADINA BD STATION,SUUT,0,0,E,BD,5137
-2021-11-07,10:43,Sunday,KENNEDY BD STATION,PUMEL,0,0,,BD,0
-2021-11-07,11:50,Sunday,WARDEN STATION,MUIS,0,0,,BD,0
-2021-11-07,11:56,Sunday,YORK MILLS STATION,MUPAA,0,0,N,YU,6131
-2021-11-07,12:00,Sunday,FINCH STATION,SUPOL,5,10,S,YU,6001
-2021-11-07,12:20,Sunday,DONLANDS STATION,MUIS,0,0,,BD,0
-2021-11-07,13:08,Sunday,COXWELL STATION,TUNOA,5,10,E,BD,0
-2021-11-07,13:41,Sunday,BROADVIEW STATION,MUIS,0,0,,BD,0
-2021-11-07,15:10,Sunday,SHEPPARD STATION,MUPAA,0,0,S,YU,6096
-2021-11-07,15:18,Sunday,QUEEN STATION,SUUT,11,16,S,YU,5706
-2021-11-07,15:22,Sunday,BAY STATION,SUDP,4,9,E,BD,5257
-2021-11-07,15:44,Sunday,DUNDAS WEST STATION,SUDP,23,28,W,BD,5250
-2021-11-07,16:45,Sunday,UNION STATION,MUIS,0,0,,YU,0
-2021-11-07,17:00,Sunday,KING STATION,MUPAA,0,0,N,YU,5821
-2021-11-07,18:45,Sunday,BROADVIEW STATION,SUDP,5,10,E,BD,5084
-2021-11-07,19:26,Sunday,MAIN STREET STATION,MUIRS,0,0,E,BD,0
-2021-11-07,19:59,Sunday,HIGHWAY 407 STATION,PUOPO,7,14,S,YU,5716
-2021-11-07,20:05,Sunday,SHERBOURNE STATION,MUPAA,0,0,E,BD,5170
-2021-11-07,20:50,Sunday,ST GEORGE BD STATION,SUDP,5,12,W,BD,5130
-2021-11-07,20:53,Sunday,QUEEN'S PARK STATION,MUIRS,0,0,N,YU,6001
-2021-11-07,22:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-11-07,22:34,Sunday,YONGE BD STATION,MUIS,0,0,,BD,0
-2021-11-07,23:36,Sunday,EGLINTON STATION,MUATC,3,10,S,YU,6111
-2021-11-07,23:39,Sunday,BATHURST STATION,MUIR,12,19,W,BD,5077
-2021-11-07,00:00,Sunday,FINCH STATION,MUIS,0,0,,YU,0
-2021-11-07,00:10,Sunday,NORTH YORK CTR STATION,SUO,3,10,S,YU,5701
-2021-11-07,01:17,Sunday,YONGE BD STATION,MUIRS,0,0,,BD,0
-2021-11-08,06:52,Monday,MCCOWAN STATION,SRO,5,10,S,SRT,3027
-2021-11-08,02:04,Monday,ROYAL YORK STATION,MUIS,0,0,,BD,0
-2021-11-08,02:18,Monday,SHEPPARD WEST STATION,SUAE,0,0,,YU,0
-2021-11-08,02:43,Monday,FINCH STATION,MUIS,0,0,,YU,0
-2021-11-08,04:10,Monday,FINCH STATION,PUSTP,0,0,,YU,0
-2021-11-08,05:27,Monday,SPADINA BD STATION,SUDP,0,0,,BD,0
-2021-11-08,05:31,Monday,FINCH STATION,PUSTP,10,0,S,YU,5401
-2021-11-08,05:38,Monday,EGLINTON STATION,EUYRD,5,0,N,YU,5526
-2021-11-08,06:03,Monday,FINCH STATION,PUSTP,60,64,S,YU,5516
-2021-11-08,06:08,Monday,DONLANDS STATION,TUNOA,0,0,W,BD,0
-2021-11-08,06:22,Monday,EGLINTON STATION,MUSC,0,0,N,YU,6011
-2021-11-08,06:47,Monday,PAPE STATION,EUME,5,10,E,BD,5004
-2021-11-08,07:13,Monday,KIPLING STATION,EUAC,3,6,E,BD,5011
-2021-11-08,07:52,Monday,MAIN STREET STATION,MUIS,0,0,,BD,0
-2021-11-08,08:06,Monday,JANE STATION,MUPAA,0,0,W,BD,5083
-2021-11-08,08:20,Monday,YONGE BD STATION,MUI,3,6,W,BD,5343
-2021-11-08,09:19,Monday,KIPLING STATION,MUSAN,3,6,E,BD,5137
-2021-11-08,09:29,Monday,OSGOODE STATION,MUIR,0,0,N,YU,5976
-2021-11-08,09:33,Monday,COLLEGE STATION,MUPAA,0,0,S,YU,5966
-2021-11-08,09:41,Monday,NORTH YORK CTR STATION,EUSC,0,0,N,YU,5726
-2021-11-08,10:00,Monday,LAWRENCE STATION,EUSC,0,0,S,YU,5721
-2021-11-08,10:12,Monday,CHRISTIE STATION,MUNCA,0,0,,BD,0
-2021-11-08,11:42,Monday,KIPLING STATION,MUIR,3,6,E,BD,5354
-2021-11-08,13:58,Monday,ST GEORGE BD STATION,MUIS,0,0,,BD,0
-2021-11-08,13:59,Monday,VAUGHAN MC STATION,TUNOA,3,6,,YU,0
-2021-11-08,14:17,Monday,DONLANDS STATION,PUSCR,3,6,E,BD,5317
-2021-11-08,14:54,Monday,VAUGHAN MC STATION,MUTO,3,6,S,YU,6061
-2021-11-08,15:11,Monday,SPADINA YUS STATION,MUIS,0,0,,YU,0
-2021-11-08,16:13,Monday,ST GEORGE YUS STATION,MUO,4,7,S,YU,5971
-2021-11-08,16:53,Monday,CHRISTIE STATION,MUDD,0,0,W,BD,5343
-2021-11-08,16:56,Monday,ST GEORGE BD STATION,MUO,0,0,E,BD,5110
-2021-11-08,17:10,Monday,BROADVIEW STATION,SUDP,4,7,E,BD,5257
-2021-11-08,17:42,Monday,YORK MILLS STATION,TUSC,0,0,N,YU,5691
-2021-11-08,18:05,Monday,FINCH STATION,MUSC,0,0,S,YU,5696
-2021-11-08,18:13,Monday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-08,18:24,Monday,YONGE BD STATION,MUIS,0,0,,BD,0
-2021-11-08,18:36,Monday,SPADINA BD STATION,SUAP,0,0,W,BD,5343
-2021-11-08,18:43,Monday,SPADINA YUS STATION,SUO,0,0,N,YU,6041
-2021-11-08,18:47,Monday,LAWRENCE STATION,SUDP,44,47,S,YU,5866
-2021-11-08,19:03,Monday,KIPLING STATION,SUO,3,6,E,BD,5001
-2021-11-08,19:22,Monday,DAVISVILLE STATION,MUPAA,0,0,S,YU,6036
-2021-11-08,20:31,Monday,KIPLING STATION,SUDP,3,9,E,BD,5231
-2021-11-08,20:46,Monday,OLD MILL STATION,MUSAN,5,11,E,BD,5231
-2021-11-08,22:00,Monday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU/BD,0
-2021-11-08,22:36,Monday,LAWRENCE WEST STATION,MUIS,0,0,,YU,0
-2021-11-08,23:29,Monday,UNION STATION,SUDP,0,0,N,YU,5561
-2021-11-09,05:38,Tuesday,EGLINTON STATION,MUTO,4,9,N,YU,5746
-2021-11-09,22:00,Tuesday,KENNEDY SRT TO LAWREN,MRO,0,0,,SRT,0
-2021-11-09,05:49,Tuesday,WILSON STATION,TUNOA,4,7,S,YU,0
-2021-11-09,05:50,Tuesday,EGLINTON STATION (APPR,MUATC,10,14,S,YU,5766
-2021-11-09,05:55,Tuesday,DONLANDS STATION,PUTWZ,3,8,W,BD,5309
-2021-11-09,06:02,Tuesday,SHEPPARD WEST STATION,TUNOA,5,16,N,YU,0
-2021-11-09,06:50,Tuesday,EGLINTON STATION (APPR,MUATC,8,12,S,YU,5941
-2021-11-09,08:58,Tuesday,FINCH STATION,EUBK,4,8,S,YU,5531
-2021-11-09,09:35,Tuesday,KENNEDY BD STATION,MUTO,4,7,W,BD,5018
-2021-11-09,09:37,Tuesday,BATHURST STATION,PUMEL,0,0,,BD,0
-2021-11-09,09:39,Tuesday,EGLINTON STATION,MUATC,10,13,S,YU,5941
-2021-11-09,10:24,Tuesday,ISLINGTON STATION,TUMVS,4,7,E,BD,5266
-2021-11-09,10:34,Tuesday,JANE STATION,TUO,3,6,E,BD,5266
-2021-11-09,10:38,Tuesday,KIPLING STATION,MUSAN,3,6,E,BD,5071
-2021-11-09,10:56,Tuesday,DAVISVILLE STATION,MUATC,5,8,S,YU,5391
-2021-11-09,11:27,Tuesday,FINCH STATION,TUO,3,6,S,YU,5426
-2021-11-09,11:46,Tuesday,KEELE STATION,MUDD,3,6,E,BD,5297
-2021-11-09,12:23,Tuesday,EGLINTON STATION,MUSC,0,0,N,YU,5661
-2021-11-09,12:29,Tuesday,EGLINTON STATION,MUSC,0,0,N,YU,5881
-2021-11-09,13:42,Tuesday,LAWRENCE STATION,EUSC,0,0,S,YU,5626
-2021-11-09,13:51,Tuesday,BROADVIEW STATION,MUIR,4,7,W,BD,5165
-2021-11-09,13:54,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-09,14:18,Tuesday,EGLINTON STATION,EUSC,0,0,N,YU,5961
-2021-11-09,14:24,Tuesday,DUPONT STATION,SUDP,14,17,S,YU,5781
-2021-11-09,14:33,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-09,15:18,Tuesday,DAVISVILLE STATION,TUOS,7,10,N,YU,5421
-2021-11-09,15:26,Tuesday,BATHURST STATION,SUROB,10,13,E,BD,5084
-2021-11-09,15:28,Tuesday,DAVISVILLE STATION,TUOS,5,8,N,YU,5781
-2021-11-09,15:29,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-09,15:53,Tuesday,EGLINTON STATION,MUEC,31,34,S,YU,5821
-2021-11-09,16:09,Tuesday,DAVISVILLE STATION,MUPAA,0,0,S,YU,5996
-2021-11-09,16:09,Tuesday,ROYAL YORK STATION,SUDP,4,7,W,BD,5363
-2021-11-09,16:31,Tuesday,BROADVIEW STATION,SUDP,23,26,E,BD,5095
-2021-11-09,16:36,Tuesday,ST CLAIR WEST STATION,MUSAN,3,6,N,YU,6106
-2021-11-09,16:42,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-09,17:02,Tuesday,FINCH STATION,MUSAN,3,6,S,YU,6041
-2021-11-09,17:07,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-09,17:25,Tuesday,DUNDAS STATION,MUI,18,21,N,YU,5671
-2021-11-09,17:35,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-09,18:11,Tuesday,VAUGHAN MC STATION,PUMEL,0,0,,YU,0
-2021-11-09,18:41,Tuesday,JANE STATION,PUMEL,0,0,,BD,0
-2021-11-09,19:24,Tuesday,COXWELL STATION,MUIRS,0,0,E,BD,0
-2021-11-09,19:47,Tuesday,KIPLING STATION,MUSAN,6,12,W,BD,5371
-2021-11-09,20:28,Tuesday,MAIN STREET STATION,SUAP,0,0,W,BD,5183
-2021-11-09,20:35,Tuesday,OLD MILL STATION,MUSC,0,0,E,BD,5198
-2021-11-09,20:44,Tuesday,ROYAL YORK STATION,SUO,0,0,,BD,0
-2021-11-09,20:46,Tuesday,COXWELL STATION,MUIRS,0,0,,BD,0
-2021-11-09,21:27,Tuesday,NORTH YORK CTR STATION,TUSC,3,6,S,YU,5396
-2021-11-09,21:35,Tuesday,VAUGHAN MC STATION,SUDP,5,10,S,YU,5961
-2021-11-09,22:00,Tuesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-11-09,22:11,Tuesday,KIPLING STATION,TUCC,22,28,W,BD,5001
-2021-11-09,22:11,Tuesday,MAIN STREET STATION,MUPAA,0,0,E,BD,5071
-2021-11-09,22:21,Tuesday,COXWELL STATION,PUMEL,0,0,,BD,0
-2021-11-09,22:29,Tuesday,VAUGHAN MC STATION,TUNOA,3,8,S,YU,0
-2021-11-09,22:30,Tuesday,SPADINA YUS STATION,MUPAA,0,0,N,YU,5656
-2021-11-09,22:53,Tuesday,BROADVIEW STATION,SUO,0,0,W,BD,5165
-2021-11-09,22:57,Tuesday,VAUGHAN MC STATION,TUNOA,3,8,S,YU,0
-2021-11-09,23:07,Tuesday,WOODBINE STATION,MUIRS,0,0,E,BD,0
-2021-11-09,23:10,Tuesday,EGLINTON STATION (APPR,MUATC,4,9,S,YU,5966
-2021-11-09,23:13,Tuesday,SUMMERHILL STATION,EUDO,3,8,S,YU,5866
-2021-11-09,23:21,Tuesday,VAUGHAN MC STATION,TUNOA,3,8,S,YU,0
-2021-11-09,01:45,Tuesday,VAUGHAN MC STATION,MUIS,0,0,,YU,0
-2021-11-09,12:54,Tuesday,BAYVIEW STATION,MUSC,0,0,W,SHP,6196
-2021-11-09,19:41,Tuesday,LESLIE STATION,MUIE,0,0,,SHP,0
-2021-11-10,05:31,Wednesday,EGLINTON STATION,EUSC,0,0,N,YU,5726
-2021-11-10,05:50,Wednesday,EGLINTON STATION (APPR,MUATC,7,11,S,YU,6106
-2021-11-10,06:02,Wednesday,SHEPPARD WEST STATION,TUNOA,5,16,N,YU,0
-2021-11-10,07:19,Wednesday,FINCH STATION,TUSC,0,0,N,YU,5696
-2021-11-10,07:26,Wednesday,YORK MILLS STATION,EUSC,0,0,N,YU,5981
-2021-11-10,07:28,Wednesday,EGLINTON STATION,MUATC,5,8,S,YU,5951
-2021-11-10,07:44,Wednesday,EGLINTON STATION,MUATC,8,11,S,YU,5691
-2021-11-10,08:00,Wednesday,KENNEDY BD STATION,MUSAN,3,6,E,BD,5083
-2021-11-10,09:16,Wednesday,ST GEORGE BD STATION,MUIR,3,6,E,BD,5073
-2021-11-10,09:43,Wednesday,WILSON STATION,TUS,3,6,N,YU,5436
-2021-11-10,09:56,Wednesday,ST GEORGE BD STATION,PUSTS,3,6,E,BD,5303
-2021-11-10,10:03,Wednesday,NORTH YORK CTR STATION,TUMVS,0,0,N,YU,5981
-2021-11-10,10:27,Wednesday,EGLINTON STATION,MUATC,7,10,S,YU,5691
-2021-11-10,10:55,Wednesday,SPADINA YUS STATION,SUROB,0,0,,YU,0
-2021-11-10,11:03,Wednesday,COXWELL STATION,EUTR,3,6,W,BD,5122
-2021-11-10,12:06,Wednesday,WELLESLEY STATION,MUPAA,0,0,S,YU,5746
-2021-11-10,12:12,Wednesday,FINCH STATION,MUO,3,6,S,YU,5706
-2021-11-10,12:14,Wednesday,OSGOODE STATION,MUD,0,0,N,YU,5941
-2021-11-10,12:38,Wednesday,BLOOR STATION,MUIS,0,0,S,YU,0
-2021-11-10,12:42,Wednesday,LAWRENCE STATION,EUSC,6,9,N,YU,5981
-2021-11-10,12:44,Wednesday,COLLEGE STATION,MUPAA,5,8,S,YU,5706
-2021-11-10,13:33,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-10,13:41,Wednesday,EGLINTON STATION,MUSC,0,0,N,YU,5661
-2021-11-10,13:51,Wednesday,FINCH STATION,MUIS,0,0,,YU,0
-2021-11-10,14:13,Wednesday,ST PATRICK STATION,MUIS,0,0,,YU,0
-2021-11-10,14:43,Wednesday,CHRISTIE STATION,TUMVS,0,0,E,BD,5159
-2021-11-10,15:04,Wednesday,BLOOR STATION,SUDP,28,31,N,YU,5655
-2021-11-10,15:12,Wednesday,YONGE BD STATION,SUDP,26,29,W,BD,5073
-2021-11-10,15:37,Wednesday,COLLEGE STATION,SUDP,0,0,S,YU,6031
-2021-11-10,15:45,Wednesday,VICTORIA PARK STATION,TUOS,0,0,E,BD,5103
-2021-11-10,15:59,Wednesday,OSSINGTON STATION,TUMVS,5,8,W,BD,5238
-2021-11-10,16:25,Wednesday,SUMMERHILL STATION,TUS,3,6,N,,6501
-2021-11-10,16:32,Wednesday,FINCH STATION,TUSUP,3,6,S,YU,6016
-2021-11-10,16:40,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-10,16:46,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-10,16:47,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-10,16:50,Wednesday,VAUGHAN MC STATION,TUNOA,3,3,S,YU,0
-2021-11-10,16:55,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-10,16:59,Wednesday,ST CLAIR WEST STATION,TUO,3,6,N,YU,5916
-2021-11-10,17:00,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-10,17:18,Wednesday,BLOOR STATION,MUIS,0,0,S,YU,0
-2021-11-10,17:29,Wednesday,QUEEN STATION,SUUT,0,0,N,YU,5996
-2021-11-10,17:37,Wednesday,VAUGHAN MC STATION,TUO,3,6,S,YU,5911
-2021-11-10,18:41,Wednesday,UNION STATION,TUCC,3,6,S,YU,5916
-2021-11-10,22:00,Wednesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-11-10,22:17,Wednesday,QUEEN STATION,MUIS,0,0,N,YU,5981
-2021-11-10,23:10,Wednesday,DUNDAS STATION,SUAE,0,0,,YU,0
-2021-11-10,23:12,Wednesday,QUEEN STATION,SUDP,35,40,S,YU,5986
-2021-11-10,00:11,Wednesday,FINCH STATION,MUIR,5,10,S,YU,5566
-2021-11-10,00:18,Wednesday,CASTLE FRANK STATION,MUIS,0,0,E,BD,5103
-2021-11-10,00:26,Wednesday,QUEEN STATION,SUO,0,0,N,YU,5421
-2021-11-10,00:36,Wednesday,BLOOR STATION,MUIS,0,0,N,YU,0
-2021-11-10,00:51,Wednesday,WOODBINE STATION,MUIRS,0,0,E,BD,5046
-2021-11-10,01:36,Wednesday,DAVISVILLE STATION,SUO,0,0,N,YU,5611
-2021-11-10,07:35,Wednesday,SHEPPARD-YONGE STATION,SUUT,10,15,W,SHP,6196
-2021-11-10,17:02,Wednesday,LESLIE STATION,SUDP,0,0,W,SHP,6161
-2021-11-10,17:52,Wednesday,DON MILLS STATION,SUDP,0,0,W,SHP,6196
-2021-11-11,22:00,Thursday,KENNEDY SRT TO LAWREN,MRO,0,0,,SRT,0
-2021-11-11,02:25,Thursday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-11-11,05:31,Thursday,FINCH STATION,EUNT,4,8,S,YU,5531
-2021-11-11,05:38,Thursday,EGLINTON STATION,MUO,3,8,N,YU,5936
-2021-11-11,06:06,Thursday,SHEPPARD WEST STATION,EUYRD,9,15,N,YU,6041
-2021-11-11,06:11,Thursday,CASTLE FRANK STATION,SUUT,0,0,W,BD,5037
-2021-11-11,06:25,Thursday,DONLANDS STATION,MUNCA,0,0,,BD,0
-2021-11-11,06:58,Thursday,COXWELL STATION,EUDO,3,6,W,BD,5054
-2021-11-11,07:36,Thursday,FINCH STATION,SUDP,0,0,,YU,0
-2021-11-11,07:40,Thursday,FINCH WEST STATION,MUIRS,0,0,N,YU,5991
-2021-11-11,08:10,Thursday,EGLINTON STATION,MUATC,5,8,S,YU,6111
-2021-11-11,10:09,Thursday,YORKDALE STATION,MUIS,0,0,,YU,0
-2021-11-11,10:24,Thursday,ROYAL YORK STATION,PUMEL,0,0,,BD,0
-2021-11-11,10:53,Thursday,EGLINTON STATION,MUATC,5,8,S,YU,6111
-2021-11-11,11:04,Thursday,KENNEDY BD STATION,EUNT,10,13,E,BD,5244
-2021-11-11,11:41,Thursday,EGLINTON STATION,SUDP,4,7,N,YU,5701
-2021-11-11,11:43,Thursday,CASTLE FRANK STATION,SUDP,0,0,W,BD,5132
-2021-11-11,11:52,Thursday,SHERBOURNE STATION,PUMEL,0,0,,BD,0
-2021-11-11,12:04,Thursday,DONLANDS STATION,SUO,44,47,W,BD,5253
-2021-11-11,12:12,Thursday,FINCH STATION,EUSC,0,0,S,YU,5726
-2021-11-11,12:18,Thursday,DONLANDS STATION,TUDOE,44,47,W,BD,5253
-2021-11-11,12:24,Thursday,KIPLING STATION,PUMEL,0,0,,BD,0
-2021-11-11,13:07,Thursday,DAVISVILLE STATION,SUDP,5,8,S,YU,5916
-2021-11-11,13:33,Thursday,YONGE BD STATION,MUIS,0,0,,BD,0
-2021-11-11,13:58,Thursday,NORTH YORK CTR STATION,SUAE,52,55,S,YU,5716
-2021-11-11,14:27,Thursday,ROSEDALE STATION,TUOS,5,8,S,YU,5636
-2021-11-11,14:51,Thursday,GREENWOOD SHOP,MUIE,0,0,,BD,0
-2021-11-11,14:55,Thursday,SPADINA YUS STATION,SUDP,0,0,N,YU,5936
-2021-11-11,14:56,Thursday,SPADINA BD STATION,SUO,15,18,W,BD,5041
-2021-11-11,15:16,Thursday,CHRISTIE STATION,MUIRS,0,0,E,BD,5193
-2021-11-11,15:24,Thursday,DAVISVILLE STATION,MUIS,0,0,N,YU,5606
-2021-11-11,16:00,Thursday,YONGE-UNIVERSITY AND B,MUWEA,0,0,,YU,0
-2021-11-11,16:50,Thursday,EGLINTON STATION (APPR,MUATC,7,10,S,YU,5566
-2021-11-11,16:52,Thursday,PAPE STATION,EUNT,3,6,E,BD,5321
-2021-11-11,17:03,Thursday,EGLINTON STATION,MUIRS,0,0,,YU,0
-2021-11-11,17:07,Thursday,FINCH STATION,MUIRS,0,0,,YU,0
-2021-11-11,17:20,Thursday,OSSINGTON STATION,TUS,4,7,E,BD,5103
-2021-11-11,17:27,Thursday,RUNNYMEDE STATION,SUO,0,0,W,BD,5095
-2021-11-11,18:21,Thursday,UNION STATION,MUO,3,6,N,YU,5716
-2021-11-11,18:54,Thursday,KIPLING STATION,MUTO,3,6,E,BD,5308
-2021-11-11,19:09,Thursday,UNION STATION,SUDP,7,10,N,YU,5876
-2021-11-11,19:31,Thursday,ROSEDALE STATION,TUOS,7,10,S,YU,5656
-2021-11-11,19:33,Thursday,DONLANDS STATION,SUDP,4,7,E,BD,5308
-2021-11-11,20:56,Thursday,ST PATRICK STATION,SUDP,6,9,N,YU,5966
-2021-11-11,21:14,Thursday,EGLINTON WEST STATION,MUSAN,3,6,N,YU,5966
-2021-11-11,21:16,Thursday,ROSEDALE STATION,TUOS,3,6,S,YU,5776
-2021-11-11,22:00,Thursday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-11-11,23:03,Thursday,OSSINGTON STATION,SUAP,0,0,W,BD,0
-2021-11-11,23:34,Thursday,DAVISVILLE STATION,MUATC,3,6,S,YU,5716
-2021-11-11,23:36,Thursday,BAY STATION,MUIRS,0,0,,BD,0
-2021-11-11,23:45,Thursday,ST CLAIR STATION,SUDP,6,9,S,YU,5986
-2021-11-11,23:46,Thursday,DAVISVILLE STATION,MUATC,3,6,N,YU,5911
-2021-11-11,00:05,Thursday,ST ANDREW STATION,MUTO,3,11,S,YU,6081
-2021-11-11,00:09,Thursday,LAWRENCE STATION,MUIS,0,0,,YU,0
-2021-11-11,00:33,Thursday,GREENWOOD STATION,MUSAN,6,12,W,BD,5058
-2021-11-11,00:52,Thursday,VAUGHAN MC STATION,TUO,0,0,S,YU,5601
-2021-11-11,00:56,Thursday,EGLINTON STATION,MUIS,0,0,,YU,0
-2021-11-11,01:04,Thursday,DUFFERIN STATION,MUIRS,0,0,E,BD,0
-2021-11-11,18:06,Thursday,LESLIE STATION,MUNCA,0,0,,SHP,0
-2021-11-12,19:44,Friday,LAWRENCE EAST STATION,MRTO,25,30,N,SRT,3017
-2021-11-12,02:08,Friday,MAIN STREET STATION,MUIRS,0,0,,BD,0
-2021-11-12,02:53,Friday,FINCH STATION,MUIS,0,0,,YU,0
-2021-11-12,22:00,Friday,KENNEDY SRT TO LAWREN,MRO,0,0,,SRT,0
-2021-11-12,05:38,Friday,EGLINTON STATION,MUO,3,8,N,YU,6571
-2021-11-12,05:48,Friday,EGLINTON STATION,MUATC,7,12,N,YU,5596
-2021-11-12,07:12,Friday,BLOOR STATION,MUPAA,4,7,N,YU,5626
-2021-11-12,07:20,Friday,WILSON YARD,MUWR,3,6,S,YU,5991
-2021-11-12,07:46,Friday,KING STATION,MUIRS,0,0,S,YU,0
-2021-11-12,07:52,Friday,EGLINTON STATION,TUATC,5,8,S,YU,5826
-2021-11-12,08:06,Friday,CASTLE FRANK STATION,EUPI,3,6,E,BD,5263
-2021-11-12,08:16,Friday,DUNDAS WEST STATION,SUROB,0,0,,BD,0
-2021-11-12,08:32,Friday,KENNEDY BD STATION,EUCD,3,6,W,BD,5272
-2021-11-12,09:08,Friday,BAY STATION,SUAP,0,0,E,BD,5280
-2021-11-12,09:36,Friday,RUNNYMEDE STATION,MUPAA,0,0,W,BD,5073
-2021-11-12,09:44,Friday,JANE STATION,MUPAA,0,0,W,BD,5229
-2021-11-12,10:08,Friday,EGLINTON STATION,MUATC,5,8,S,YU,5616
-2021-11-12,11:22,Friday,KEELE STATION,MUIRS,0,0,,BD,0
-2021-11-12,11:24,Friday,SPADINA YUS STATION,MUPAA,3,6,N,YU,6091
-2021-11-12,12:29,Friday,ISLINGTON STATION,SUDP,0,0,,BD,0
-2021-11-12,13:01,Friday,DAVISVILLE STATION,MUATC,3,6,N,YU,5421
-2021-11-12,13:07,Friday,DAVISVILLE STATION,MUATC,3,6,N,YU,5431
-2021-11-12,13:16,Friday,EGLINTON STATION,MUO,3,6,N,YU,5431
-2021-11-12,13:26,Friday,EGLINTON STATION,MUSC,0,0,N,YU,5696
-2021-11-12,14:06,Friday,YONGE BD STATION,MUPAA,0,0,E,BD,5297
-2021-11-12,14:29,Friday,FINCH STATION,TUSC,0,0,N,YU,6021
-2021-11-12,14:48,Friday,UNION STATION,SUDP,3,6,N,YU,5956
-2021-11-12,14:53,Friday,DUNDAS STATION,TUO,3,6,N,YU,5736
-2021-11-12,15:22,Friday,YONGE BD STATION,MUIRS,0,0,,BD,0
-2021-11-12,15:38,Friday,BROADVIEW STATION,MUTO,4,7,W,BD,5365
-2021-11-12,15:52,Friday,ST PATRICK STATION,MUSAN,3,6,N,YU,5616
-2021-11-12,16:05,Friday,KENNEDY BD STATION,TUNIP,3,6,W,BD,5290
-2021-11-12,16:16,Friday,NORTH YORK CTR STATION,EUSC,3,6,N,YU,5961
-2021-11-12,16:52,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-12,16:57,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-12,17:39,Friday,ST ANDREW STATION,SUAP,0,0,,YU,0
-2021-11-12,17:55,Friday,ST CLAIR WEST STATION,PUMEL,0,0,N,YU,0
-2021-11-12,17:55,Friday,WILSON STATION,TUNOA,3,6,S,YU,0
-2021-11-12,18:00,Friday,WILSON STATION,TUNOA,3,6,S,YU,0
-2021-11-12,18:12,Friday,CASTLE FRANK STATION,MUIR,16,19,W,BD,5366
-2021-11-12,18:39,Friday,FINCH STATION,MUPAA,3,6,S,YU,5626
-2021-11-12,18:40,Friday,EGLINTON STATION,EUSC,0,0,N,YU,5961
-2021-11-12,19:08,Friday,EGLINTON STATION,MUATC,4,7,S,YU,6061
-2021-11-12,19:42,Friday,VAUGHAN MC STATION,MUTO,3,6,S,YU,5441
-2021-11-12,20:42,Friday,CLOSURES BUILDING,MUIE,0,0,,,0
-2021-11-12,20:48,Friday,WELLESLEY STATION,MUD,6,9,S,YU,5941
-2021-11-12,20:57,Friday,DONLANDS STATION,PUMEL,0,0,E,BD,5244
-2021-11-12,20:59,Friday,QUEEN STATION,MUIRS,0,0,,YU,0
-2021-11-12,21:07,Friday,ST ANDREW STATION,MUATC,7,10,S,YU,5961
-2021-11-12,22:00,Friday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-11-12,22:39,Friday,EGLINTON STATION,SUDP,0,0,N,YU,5466
-2021-11-12,23:51,Friday,NORTH YORK CTR STATION,MUIRS,3,8,N,YU,5621
-2021-11-12,00:02,Friday,TRANSIT CONTROL,MUO,0,0,,,0
-2021-11-12,00:33,Friday,CHESTER STATION,SUDP,6,12,W,BD,5058
-2021-11-12,00:48,Friday,EGLINTON WEST STATION,MUPAA,0,0,N,YU,5621
-2021-11-12,00:53,Friday,OSSINGTON STATION,MUO,6,12,W,BD,5058
-2021-11-12,01:26,Friday,SHEPPARD STATION,SUUT,13,18,S,YU,5551
-2021-11-12,15:28,Friday,LESLIE STATION,TUSC,0,0,W,SHP,6166
-2021-11-12,23:20,Friday,LESLIE STATION,TUSC,0,0,W,SHP,6141
-2021-11-13,06:00,Saturday,FINCH STATION TO ST CL,MUO,0,0,,YU,0
-2021-11-13,22:00,Saturday,KENNEDY SRT TO LAWRENC,MRO,0,0,B,SRT,0
-2021-11-13,06:09,Saturday,GREENWOOD STATION,TUO,3,9,E,BD,5308
-2021-11-13,06:18,Saturday,SHERBOURNE STATION,MUSAN,6,12,E,BD,5095
-2021-11-13,06:21,Saturday,WILSON STATION,TUNOA,6,12,S,YU,0
-2021-11-13,07:03,Saturday,DUNDAS WEST STATION,SUDP,0,0,W,BD,0
-2021-11-13,07:08,Saturday,EGLINTON STATION,MUIS,0,0,,YU,0
-2021-11-13,09:03,Saturday,COXWELL STATION,SUDP,0,0,,BD,0
-2021-11-13,10:27,Saturday,GREENWOOD STATION,TUNOA,5,10,E,BD,5000
-2021-11-13,11:24,Saturday,ROSEDALE STATION,SUDP,3,9,N,YU,5931
-2021-11-13,11:44,Saturday,ST CLAIR WEST STATION,MUIR,11,17,S,YU,5596
-2021-11-13,13:55,Saturday,COXWELL STATION,TUNOA,4,8,E,BD,5000
-2021-11-13,14:46,Saturday,YONGE BD STATION,SUDP,3,7,E,BD,5249
-2021-11-13,17:03,Saturday,DUNDAS WEST STATION,SUDP,4,8,W,BD,5269
-2021-11-13,17:31,Saturday,QUEEN STATION,PUMEL,0,0,,YU,0
-2021-11-13,17:32,Saturday,BLOOR STATION,MUNCA,0,0,,YU,0
-2021-11-13,18:31,Saturday,ST CLAIR WEST STATION,MUNCA,0,0,,YU,0
-2021-11-13,19:13,Saturday,OLD MILL STATION,MUPAA,0,0,E,BD,5001
-2021-11-13,20:34,Saturday,CHRISTIE STATION,SUDP,0,0,W,BD,0
-2021-11-13,21:01,Saturday,YONGE BD STATION,MUD,3,10,E,BD,5104
-2021-11-13,22:00,Saturday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-11-13,23:51,Saturday,COXWELL STATION,PUMST,0,0,,BD,0
-2021-11-13,00:16,Saturday,DUPONT STATION,MUIS,0,0,S,YU,0
-2021-11-13,00:29,Saturday,QUEEN STATION,SUUT,16,23,N,YU,5596
-2021-11-13,00:45,Saturday,COXWELL STATION,TUNOA,7,14,E,BD,0
-2021-11-13,00:48,Saturday,KIPLING STATION,SUO,17,24,W,BD,0
-2021-11-13,00:48,Saturday,MAIN STREET STATION,MUIS,0,0,,BD,0
-2021-11-13,01:40,Saturday,VAUGHAN MC STATION,MUIS,0,0,S,YU,0
-2021-11-13,06:20,Saturday,DON MILLS STATION,MUTO,5,10,W,SHP,6141
-2021-11-14,02:28,Sunday,KENNEDY BD STATION,SUDP,0,0,,BD,0
-2021-11-14,22:00,Sunday,KENNEDY SRT TO LAWRENC,MRO,0,0,,SRT,0
-2021-11-14,08:00,Sunday,FINCH STATION TO ST CL,MUO,0,0,,YU,0
-2021-11-14,22:42,Sunday,LAWRENCE EAST STATION,MRTO,0,0,N,SRT,3009
-2021-11-14,08:12,Sunday,GREENWOOD STATION,TUNOA,5,10,E,BD,0
-2021-11-14,08:16,Sunday,ST CLAIR STATION,TUO,6,12,S,YU,5766
-2021-11-14,08:23,Sunday,FINCH WEST STATION,EUNT,7,13,S,YU,5911
-2021-11-14,08:31,Sunday,GREENWOOD YARD,MUO,0,0,,BD,0
-2021-11-14,08:31,Sunday,QUEEN STATION,MUIS,0,0,N,YU,0
-2021-11-14,10:57,Sunday,DUNDAS STATION,MUD,11,17,S,YU,5871
-2021-11-14,11:27,Sunday,HIGHWAY 407 STATION,MUIS,0,0,,YU,0
-2021-11-14,11:48,Sunday,COXWELL STATION,TUNOA,5,10,E,BD,0
-2021-11-14,12:34,Sunday,ST CLAIR STATION,PUMEL,0,0,,YU,0
-2021-11-14,12:47,Sunday,KENNEDY BD STATION,EUME,5,10,W,BD,5274
-2021-11-14,12:48,Sunday,HIGH PARK STATION,MUPAA,0,0,E,BD,5177
-2021-11-14,13:10,Sunday,DOWNSVIEW PARK STATION,MUPAA,7,12,S,YU,5431
-2021-11-14,14:01,Sunday,QUEEN'S PARK STATION,MUATC,0,0,S,YU,5556
-2021-11-14,15:09,Sunday,HIGHWAY 407 STATION,PUOPO,0,0,S,YU,5431
-2021-11-14,15:12,Sunday,PIONEER VILLAGE STATIO,PUOPO,4,10,S,YU,5431
-2021-11-14,15:30,Sunday,SHEPPARD WEST STATION,TUOPO,3,8,S,YU,5761
-2021-11-14,15:38,Sunday,COXWELL STATION,TUNOA,5,10,E,BD,0
-2021-11-14,15:48,Sunday,QUEEN'S PARK STATION,PUTDN,3,8,N,YU,5926
-2021-11-14,15:59,Sunday,HIGHWAY 407 STATION,MUATC,0,0,S,YU,5401
-2021-11-14,16:08,Sunday,KENNEDY BD STATION,TUNOA,5,10,W,BD,0
-2021-11-14,16:21,Sunday,HIGHWAY 407 STATION,PUOPO,0,0,N,YU,5621
-2021-11-14,16:51,Sunday,VAUGHAN MC STATION,PUOPO,0,0,S,YU,6066
-2021-11-14,17:15,Sunday,ST GEORGE YUS STATION,MUIR,3,8,N,YU,5706
-2021-11-14,17:16,Sunday,PAPE STATION,TUNOA,5,10,E,BD,0
-2021-11-14,17:26,Sunday,WILSON STATION,EUTR,6,12,S,YU,5761
-2021-11-14,18:05,Sunday,GREENWOOD STATION,MUPAA,5,11,E,BD,5014
-2021-11-14,18:05,Sunday,ST CLAIR STATION,TUNOA,5,10,S,YU,0
-2021-11-14,18:14,Sunday,GREENWOOD CARHOUSE,MUO,0,0,,BD,0
-2021-11-14,18:37,Sunday,YONGE BD STATION,MUIRS,0,0,W,BD,0
-2021-11-14,18:50,Sunday,ROSEDALE STATION,MUATC,0,0,N,YU,5876
-2021-11-14,18:53,Sunday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-11-14,22:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-11-14,22:52,Sunday,FINCH WEST STATION,SUDP,5,12,S,YU,5946
-2021-11-14,23:12,Sunday,BLOOR STATION,MUIS,0,0,,YU,0
-2021-11-14,00:21,Sunday,SHERBOURNE STATION,SUPOL,8,15,E,BD,5081
-2021-11-14,00:34,Sunday,SHEPPARD WEST STATION,EUVE,7,14,S,YU,5496
-2021-11-14,01:46,Sunday,ST CLAIR STATION,MUIRS,0,0,,YU,0
-2021-11-14,07:56,Sunday,BAYVIEW STATION,PUSWZ,7,0,E,SHP,6166
-2021-11-14,21:51,Sunday,SHEPPARD-YONGE STATION,PUOPO,0,0,E,SHP,6161
-2021-11-15,06:07,Monday,SHEPPARD WEST STATION,MUATC,7,11,N,YU,5836
-2021-11-15,10:46,Monday,SRT LINE,PRS,5,10,N,SRT,3007
-2021-11-15,06:39,Monday,KING STATION,MUATC,4,7,N,YU,5621
-2021-11-15,19:38,Monday,LAWRENCE EAST STATION,SRDP,0,0,,SRT,0
-2021-11-15,22:00,Monday,KENNEDY SRT STATION TO,MRLD,0,0,,SRT,0
-2021-11-15,06:53,Monday,WELLESLEY STATION,MUIS,0,0,N,YU,0
-2021-11-15,07:16,Monday,ST CLAIR WEST STATION,MUIE,0,0,,YU,0
-2021-11-15,07:27,Monday,EGLINTON STATION (MIGR,MUATC,3,6,S,YU,5626
-2021-11-15,07:50,Monday,EGLINTON STATION (MIGR,MUATC,3,6,S,YU,5691
-2021-11-15,07:54,Monday,WOODBINE STATION,TUSC,0,0,W,BD,5366
-2021-11-15,08:11,Monday,VAUGHAN MC STATION,MUWR,3,6,S,YU,5766
-2021-11-15,08:14,Monday,VAUGHAN MC STATION,MUTO,3,6,S,YU,6091
-2021-11-15,08:17,Monday,YORK MILLS STATION,EUSC,0,0,N,YU,5726
-2021-11-15,09:41,Monday,QUEEN STATION,MUNCA,0,0,,YU,0
-2021-11-15,10:17,Monday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-15,10:43,Monday,DUPONT STATION,SUDP,3,6,N,YU,5446
-2021-11-15,10:55,Monday,WELLESLEY STATION,MUIS,0,0,,YU,0
-2021-11-15,11:56,Monday,ISLINGTON STATION,SUAE,0,0,,BD,0
-2021-11-15,13:17,Monday,QUEEN STATION,TUNCA,0,0,,YU,0
-2021-11-15,13:41,Monday,BLOOR STATION,MUIS,0,0,S,YU,0
-2021-11-15,13:51,Monday,BATHURST STATION,SUUT,4,7,E,BD,5028
-2021-11-15,13:54,Monday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-15,13:58,Monday,MAIN STREET STATION,MUIRS,0,0,E,BD,5132
-2021-11-15,13:59,Monday,ST GEORGE YUS STATION,SUDP,3,6,S,YU,5916
-2021-11-15,14:02,Monday,VAUGHAN MC STATION,MUCL,5,8,S,YU,0
-2021-11-15,14:11,Monday,KENNEDY BD STATION,TUNOA,3,6,W,BD,0
-2021-11-15,14:16,Monday,EGLINTON STATION,MUATC,4,7,N,YU,5701
-2021-11-15,14:21,Monday,EGLINTON STATION,MUATC,0,0,N,YU,6036
-2021-11-15,14:26,Monday,DAVISVILLE STATION,MUATC,4,7,N,YU,5916
-2021-11-15,14:34,Monday,ST CLAIR STATION,MUATC,0,0,N,YU,5466
-2021-11-15,15:11,Monday,DUNDAS STATION,SUDP,10,13,N,YU,5666
-2021-11-15,15:16,Monday,YONGE BD STATION,MUPAA,0,0,E,BD,5089
-2021-11-15,15:25,Monday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-15,15:30,Monday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-15,15:32,Monday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-15,15:32,Monday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-15,15:34,Monday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-15,15:38,Monday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-15,15:40,Monday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-15,15:42,Monday,VAUGHAN MC STATION,TUNOA,3,3,S,YU,0
-2021-11-15,15:46,Monday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-15,15:48,Monday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-15,15:51,Monday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-15,16:08,Monday,BLOOR STATION,MUIR,4,7,S,YU,6116
-2021-11-15,16:22,Monday,DUNDAS STATION,SUUT,5,8,N,YU,5956
-2021-11-15,16:27,Monday,KIPLING STATION,SUO,3,6,W,BD,5250
-2021-11-15,17:10,Monday,OLD MILL STATION,MUIS,0,0,,BD,0
-2021-11-15,17:26,Monday,EGLINTON STATION,TUSC,0,0,N,YU,5466
-2021-11-15,17:39,Monday,COXWELL STATION,TUNOA,3,6,E,BD,0
-2021-11-15,18:34,Monday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-15,18:41,Monday,SHERBOURNE STATION,SUO,4,7,E,BD,5089
-2021-11-15,19:28,Monday,OSGOODE STATION,MUIS,0,0,,YU,0
-2021-11-15,19:37,Monday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-15,19:38,Monday,MAIN STREET STATION,SUAE,18,25,W,BD,5142
-2021-11-15,20:09,Monday,SHEPPARD WEST STATION,SUDP,0,0,,YU,0
-2021-11-15,21:31,Monday,COXWELL STATION,EUDO,3,10,E,BD,5139
-2021-11-15,21:46,Monday,VICTORIA PARK STATION,SUDP,6,12,E,BD,5165
-2021-11-15,21:53,Monday,ST GEORGE BD STATION,SUDP,11,18,W,BD,5149
-2021-11-15,22:00,Monday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU,0
-2021-11-15,22:18,Monday,EGLINTON STATION,MUATC,5,10,S,YU,5391
-2021-11-15,23:05,Monday,KENNEDY BD STATION,SUDP,6,12,W,BD,5001
-2021-11-15,23:20,Monday,YONGE BD STATION,SUO,12,18,W,BD,5046
-2021-11-15,23:22,Monday,BLOOR STATION,SUO,12,17,N,YU,5421
-2021-11-15,23:25,Monday,KENNEDY BD STATION,SUDP,6,12,W,BD,5137
-2021-11-15,23:28,Monday,DUNDAS WEST STATION,SUDP,0,0,E,BD,5089
-2021-11-15,23:44,Monday,COXWELL STATION,TUNOA,6,12,E,BD,5000
-2021-11-15,23:50,Monday,VAUGHAN MC STATION,SUDP,0,0,,YU,0
-2021-11-15,00:52,Monday,DUNDAS STATION,MUIRS,0,0,N,YU,0
-2021-11-15,01:07,Monday,EGLINTON WEST STATION,PUMEL,0,0,,YU,0
-2021-11-15,01:21,Monday,COLLEGE STATION,SUDP,5,11,N,YU,5621
-2021-11-15,01:30,Monday,WELLESLEY STATION,MUI,20,25,N,YU,5621
-2021-11-15,22:21,Monday,SHEPPARD-YONGE STATION,MUIE,0,0,,SHP,0
-2021-11-16,06:00,Tuesday,TORONTO TRANSIT COMMIS,MRO,0,0,,SRT,0
-2021-11-16,02:30,Tuesday,VAUGHAN MC STATION,MUIS,0,0,,YU,0
-2021-11-16,05:38,Tuesday,EGLINTON STATION,EUYRD,8,0,N,YU,5756
-2021-11-16,22:00,Tuesday,KENNEDY SRT TO LAWREN,MRO,0,0,,SRT,0
-2021-11-16,05:53,Tuesday,EGLINTON STATION,EUYRD,5,10,N,YU,6036
-2021-11-16,05:57,Tuesday,SHEPPARD WEST STATION,TUNOA,5,10,N,YU,0
-2021-11-16,06:00,Tuesday,TORONTO TRANSIT COMMIS,MUO,0,0,,YU/BD,0
-2021-11-16,06:22,Tuesday,EGLINTON STATION (MIGR,MUATC,3,6,S,YU,5626
-2021-11-16,06:32,Tuesday,DUNDAS STATION,MUATC,3,6,N,YU,5861
-2021-11-16,06:36,Tuesday,WOODBINE STATION,SUDP,6,9,W,BD,5084
-2021-11-16,06:37,Tuesday,COLLEGE STATION,MUATC,3,6,N,YU,5861
-2021-11-16,06:59,Tuesday,ROYAL YORK STATION,TUSC,0,0,E,BD,5317
-2021-11-16,07:01,Tuesday,EGLINTON STATION,MUATC,3,6,S,YU,5431
-2021-11-16,07:07,Tuesday,EGLINTON STATION,EUSC,0,0,N,YU,5876
-2021-11-16,07:25,Tuesday,SHEPPARD WEST STATION,SUUT,5,8,S,YU,6011
-2021-11-16,08:39,Tuesday,VAUGHAN MC STATION,MUTO,3,6,S,YU,5841
-2021-11-16,11:13,Tuesday,JANE STATION,SUDP,0,0,W,BD,5206
-2021-11-16,12:13,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,6071
-2021-11-16,12:43,Tuesday,KENNEDY BD STATION,EUBO,3,6,W,BD,5318
-2021-11-16,13:01,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-16,13:31,Tuesday,KENNEDY BD STATION,EUCA,3,8,W,BD,5077
-2021-11-16,13:44,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-16,13:54,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-16,14:07,Tuesday,VAUGHAN MC STATION,PUATC,17,20,S,YU,5391
-2021-11-16,14:31,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-16,15:08,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-16,15:32,Tuesday,SHEPPARD STATION,SUDP,0,0,N,YU,5391
-2021-11-16,15:51,Tuesday,EGLINTON STATION (APPR,TUATC,3,6,S,YU,6136
-2021-11-16,16:21,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-16,16:45,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-16,17:19,Tuesday,EGLINTON STATION,TUO,3,6,S,YU,5676
-2021-11-16,17:20,Tuesday,ISLINGTON STATION,SUUT,14,17,W,BD,5195
-2021-11-16,17:38,Tuesday,RUNNYMEDE STATION,MUPAA,0,0,E,BD,5094
-2021-11-16,17:59,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-16,18:05,Tuesday,YORKDALE STATION,SUO,0,0,,YU,0
-2021-11-16,18:12,Tuesday,KEELE STATION,PUTR,95,98,E,BD,5011
-2021-11-16,19:04,Tuesday,DAVISVILLE STATION,MUSAN,3,6,S,YU,6076
-2021-11-16,20:47,Tuesday,SHERBOURNE STATION,MUPAA,0,0,E,BD,5365
-2021-11-16,21:05,Tuesday,ST CLAIR STATION,MUPAA,0,0,N,YU,5961
-2021-11-16,21:16,Tuesday,EGLINTON STATION,SUDP,4,7,S,YU,5871
-2021-11-16,22:00,Tuesday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU/BD,0
-2021-11-16,22:05,Tuesday,FINCH STATION,MUIRS,0,0,,YU,0
-2021-11-16,22:36,Tuesday,EGLINTON STATION,MUATC,4,9,S,YU,5381
-2021-11-16,22:49,Tuesday,DOWNSVIEW PARK STATION,MUPAA,0,0,,YU,5736
-2021-11-16,22:53,Tuesday,BLOOR STATION,SUDP,6,11,S,YU,5406
-2021-11-16,23:03,Tuesday,QUEEN STATION,SUUT,0,0,S,YU,5406
-2021-11-16,23:21,Tuesday,MAIN STREET STATION,MUI,19,25,W,BD,5104
-2021-11-16,23:38,Tuesday,DUNDAS WEST STATION,TUMVS,0,0,W,BD,5228
-2021-11-16,23:41,Tuesday,KEELE STATION,MUO,9,15,W,BD,5228
-2021-11-16,00:15,Tuesday,BLOOR DANFORTH LINE,PUTR,6,12,,BD,0
-2021-11-16,00:20,Tuesday,CHRISTIE STATION,SUDP,4,10,W,BD,5060
-2021-11-16,00:27,Tuesday,ST CLAIR STATION,SUDP,7,12,N,YU,6001
-2021-11-16,06:00,Tuesday,TORONTO TRANSIT COMMIS,MUO,0,0,,SHP,0
-2021-11-16,15:36,Tuesday,BAYVIEW STATION,SUO,3,8,W,SHP,6171
-2021-11-17,22:00,Wednesday,KENNEDY SRT TO LAWREN,MRO,0,0,,SRT,0
-2021-11-17,05:44,Wednesday,WILSON YARD,MUATC,0,0,N,YU,5781
-2021-11-17,06:03,Wednesday,SHEPPARD WEST STATION,TUNOA,10,20,N,YU,0
-2021-11-17,06:17,Wednesday,EGLINTON STATION,TUSC,3,6,N,YU,5466
-2021-11-17,06:22,Wednesday,MAIN STREET STATION,TUSC,0,0,W,BD,5325
-2021-11-17,06:31,Wednesday,WILSON STATION,TUNOA,3,6,S,YU,0
-2021-11-17,07:00,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-17,07:42,Wednesday,KENNEDY BD STATION,TUNOA,3,6,W,BD,0
-2021-11-17,08:10,Wednesday,ST CLAIR WEST STATION,PUMO,0,0,N,YU,6101
-2021-11-17,08:41,Wednesday,FINCH STATION,PUSI,0,0,S,YU,5381
-2021-11-17,08:41,Wednesday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-11-17,09:17,Wednesday,ROSEDALE STATION,MUTD,11,14,S,YU,5711
-2021-11-17,09:21,Wednesday,DUNDAS WEST STATION,SUDP,0,0,,BD,0
-2021-11-17,09:35,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-17,10:07,Wednesday,LAWRENCE STATION,SUO,0,0,,YU,0
-2021-11-17,10:12,Wednesday,LAWRENCE WEST STATION,MUSAN,3,6,N,YU,5796
-2021-11-17,10:36,Wednesday,KENNEDY BD STATION,MUIR,3,6,W,BD,5320
-2021-11-17,11:02,Wednesday,LAWRENCE STATION,SUDP,19,22,S,YU,5916
-2021-11-17,11:23,Wednesday,MAIN STREET STATION,MUSC,0,0,W,BD,5325
-2021-11-17,12:34,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-17,12:36,Wednesday,RUNNYMEDE STATION,SUUT,11,14,E,BD,5038
-2021-11-17,12:44,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-17,12:45,Wednesday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-11-17,13:33,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-17,13:36,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-17,13:43,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-17,13:54,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-17,14:33,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-17,14:39,Wednesday,FINCH WEST STATION,MUNCA,0,0,,YU,0
-2021-11-17,15:03,Wednesday,ROSEDALE STATION,MUIRS,0,0,,YU,0
-2021-11-17,15:23,Wednesday,FINCH STATION,MUIRS,0,0,,YU,0
-2021-11-17,17:09,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-17,17:12,Wednesday,OSSINGTON STATION,MUIRS,0,0,,BD,0
-2021-11-17,17:19,Wednesday,SUMMERHILL STATION,SUDP,3,6,S,YU,5921
-2021-11-17,17:28,Wednesday,QUEEN STATION,SUDP,15,18,S,YU,5666
-2021-11-17,17:35,Wednesday,DUFFERIN STATION,PUMEL,0,0,,BD,0
-2021-11-17,17:37,Wednesday,ST GEORGE BD STATION,MUSAN,3,6,W,BD,5187
-2021-11-17,17:39,Wednesday,DUNDAS STATION,MUIRS,0,0,S,YU,0
-2021-11-17,18:23,Wednesday,BLOOR STATION,MUIS,0,0,,YU,0
-2021-11-17,18:32,Wednesday,FINCH STATION,MUIS,0,0,,YU,0
-2021-11-17,19:11,Wednesday,FINCH STATION,MUIS,0,0,,YU,0
-2021-11-17,19:20,Wednesday,BLOOR STATION,MUIS,0,0,S,YU,0
-2021-11-17,20:40,Wednesday,ST GEORGE BD STATION,SUDP,3,10,W,BD,5104
-2021-11-17,22:00,Wednesday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU/BD,0
-2021-11-17,22:50,Wednesday,SPADINA BD STATON,MUIS,0,0,W,BD,0
-2021-11-17,23:59,Wednesday,CASTLE FRANK STATION,MUIRS,0,0,E,BD,5168
-2021-11-17,00:32,Wednesday,SUMMERHILL STATION,MUPAA,4,9,N,YU,5691
-2021-11-17,01:32,Wednesday,MUSEUM STATION,MUATC,5,10,S,YU,5406
-2021-11-18,05:42,Thursday,EGLINTON STATION,MUO,4,0,N,YU,5461
-2021-11-18,10:35,Thursday,LAWRENCE EAST STATION,MRTO,15,20,S,SRT,3018
-2021-11-18,05:45,Thursday,LAWRENCE STATION,MUSC,0,0,N,YU,5466
-2021-11-18,17:33,Thursday,MIDLAND STATION,PREL,0,0,,SRT,0
-2021-11-18,20:59,Thursday,SCARBOROUGH CTR STATIO,SRDP,0,0,N,SRT,3025
-2021-11-18,06:05,Thursday,WELLESLEY STATION,MUIS,0,0,S,YU,0
-2021-11-18,06:19,Thursday,DONLANDS STATION,TUNOA,3,6,W,BD,0
-2021-11-18,22:00,Thursday,KENNEDY SRT STATION TO,MRO,0,0,,SRT,0
-2021-11-18,06:41,Thursday,EGLINTON STATION,MUATC,5,8,S,YU,5971
-2021-11-18,06:52,Thursday,WILSON STATION,TUNOA,10,13,S,YU,0
-2021-11-18,06:52,Thursday,NORTH YORK CTR STATION,EUSC,3,6,S,YU,5981
-2021-11-18,06:55,Thursday,EGLINTON STATION,MUATC,4,7,S,YU,5836
-2021-11-18,07:52,Thursday,FINCH STATION,MUSC,0,0,S,YU,5696
-2021-11-18,08:00,Thursday,KEELE STATION,MUSC,0,0,W,BD,5357
-2021-11-18,08:03,Thursday,EGLINTON STATION,MUATC,3,6,S,YU,5771
-2021-11-18,09:04,Thursday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-18,09:32,Thursday,NORTH YORK CTR STATION,EUSC,0,0,S,YU,5981
-2021-11-18,09:34,Thursday,EGLINTON STATION,MUATC,3,6,S,YU,5836
-2021-11-18,09:39,Thursday,LAWRENCE STATION,EUSC,0,0,S,YU,5981
-2021-11-18,10:23,Thursday,YUS LINE,MUATC,26,29,N,YU,5791
-2021-11-18,10:35,Thursday,SPADINA BD STATION,MUPAA,0,0,E,BD,5011
-2021-11-18,10:40,Thursday,LAWRENCE STATION,MUPAA,5,8,S,YU,5431
-2021-11-18,10:57,Thursday,QUEEN STATION,MUIS,0,0,,YU,0
-2021-11-18,12:30,Thursday,VAUGHAN MC STATION,MUO,3,6,S,YU,5756
-2021-11-18,13:08,Thursday,SPADINA BD STATION,SUUT,0,0,E,BD,5100
-2021-11-18,13:16,Thursday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-18,13:19,Thursday,QUEEN STATION,MUIS,0,0,N,YU,0
-2021-11-18,13:19,Thursday,VAUGHAN MC STATION,TUNOA,3,8,S,YU,0
-2021-11-18,13:23,Thursday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-18,13:25,Thursday,COXWELL STATION,SUUT,11,14,W,BD,5084
-2021-11-18,13:36,Thursday,GREENWOOD STATION,PUSRA,3,6,W,BD,5084
-2021-11-18,14:06,Thursday,DUFFERIN STATION,MUPAA,9,12,W,BD,5197
-2021-11-18,14:13,Thursday,GREENWOOD YARD,EUYRD,0,0,E,BD,5036
-2021-11-18,14:40,Thursday,WELLESLEY STATION,SUDP,0,0,N,YU,5986
-2021-11-18,16:39,Thursday,SHEPPARD STATION,MUPR1,171,174,S,YU,5381
-2021-11-18,17:09,Thursday,EGLINTON STATION,MUPAA,0,0,S,YU,5996
-2021-11-18,18:27,Thursday,GREENWOOD STATION,MUIS,0,0,,BD,0
-2021-11-18,19:03,Thursday,SUMMERHILL STATION,SUDP,20,23,N,YU,5991
-2021-11-18,19:12,Thursday,CASTLE FRANK STATION,SUDP,0,0,W,BD,5261
-2021-11-18,19:29,Thursday,KIPLING STATION,MUO,3,6,E,BD,5100
-2021-11-18,19:54,Thursday,DAVISVILLE STATION,MUATC,10,13,S,YU,5381
-2021-11-18,20:12,Thursday,EGLINTON STATION,MUATC,0,0,N,YU,5656
-2021-11-18,20:20,Thursday,KIPLING STATION,MUTO,6,12,E,BD,5011
-2021-11-18,20:56,Thursday,ST CLAIR WEST STATION,SUDP,16,19,N,YU,5926
-2021-11-18,21:16,Thursday,ROSEDALE STATION,MUIS,0,0,N,YU,5661
-2021-11-18,21:18,Thursday,CHRISTIE STATION,SUDP,0,0,,BD,0
-2021-11-18,22:00,Thursday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-11-18,22:02,Thursday,DUNDAS STATION,MUIS,0,0,N,YU,0
-2021-11-18,22:20,Thursday,EGLINTON STATION,EUBK,0,0,N,YU,6066
-2021-11-18,23:47,Thursday,HIGH PARK STATION,SUDP,0,0,W,BD,0
-2021-11-18,00:42,Thursday,SHEPPARD STATION,SUO,0,0,N,YU,5441
-2021-11-18,01:02,Thursday,KEELE STATION,MUIS,0,0,,BD,0
-2021-11-18,01:36,Thursday,KIPLING STATION,MUI,0,0,W,BD,5230
-2021-11-18,01:36,Thursday,WILSON STATION,SUDP,0,0,S,YU,5661
-2021-11-18,01:56,Thursday,BATHURST STATION,SUUT,0,0,,BD,0
-2021-11-18,01:57,Thursday,KENNEDY BD STATION,SUSA,0,0,,BD,0
-2021-11-18,02:47,Thursday,DON MILLS STATION,MUIS,0,0,,SHP,0
-2021-11-18,00:45,Thursday,SHEPPARD-YONGE STATION,SUO,10,15,E,SHP,6066
-2021-11-19,22:00,Friday,KENNEDY SRT STATION TO,MRO,0,0,B,SRT,0
-2021-11-19,02:13,Friday,SHEPPARD WEST STATION,MUIS,0,0,,YU,0
-2021-11-19,02:22,Friday,FINCH WEST STATION,MUIS,0,0,,YU,0
-2021-11-19,02:34,Friday,SPADINA BD STATON,SUAE,0,0,,BD,0
-2021-11-19,02:56,Friday,FINCH STATION,MUIS,0,0,,YU,0
-2021-11-19,05:08,Friday,UNION STATION,MUATC,0,0,N,YU,5751
-2021-11-19,05:46,Friday,WILSON STATION,MUDD,5,0,S,YU,5586
-2021-11-19,05:53,Friday,ST GEORGE YUS STATION,MUATC,61,0,S,YU,5886
-2021-11-19,05:54,Friday,UNION STATION,MUATC,61,0,N,YU,5891
-2021-11-19,06:00,Friday,BLOOR STATION,MUATC,61,0,N,YU,5751
-2021-11-19,06:00,Friday,ZONE 2,MUATC,61,64,S,YU,5751
-2021-11-19,07:06,Friday,WILSON STATION,TUNOA,3,6,S,YU,5461
-2021-11-19,07:06,Friday,WILSON STATION,TUNIP,3,6,S,YU,5461
-2021-11-19,07:06,Friday,KENNEDY BD STATION,SUDP,6,9,W,BD,5294
-2021-11-19,07:18,Friday,WILSON STATION,TUNIP,3,6,S,YU,5446
-2021-11-19,07:23,Friday,QUEEN'S PARK STATION,MUATC,0,0,S,YU,5581
-2021-11-19,07:32,Friday,WILSON STATION,TUNIP,3,6,S,YU,6136
-2021-11-19,07:40,Friday,EGLINTON STATION,MUATC,6,9,S,YU,6061
-2021-11-19,07:47,Friday,FINCH STATION,MUTO,3,6,N,YU,5456
-2021-11-19,08:20,Friday,FINCH STATION,MUSC,0,0,S,YU,5466
-2021-11-19,08:45,Friday,QUEEN STATION,SUUT,7,10,S,YU,6076
-2021-11-19,08:56,Friday,UNION STATION,MUPAA,0,0,N,YU,5686
-2021-11-19,09:13,Friday,LAWRENCE STATION,TUCC,0,0,N,YU,5861
-2021-11-19,09:16,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-19,09:40,Friday,VAUGHAN MC STATION,MUTO,3,6,S,YU,6096
-2021-11-19,09:43,Friday,VAUGHAN MC STATION,TUNIP,3,6,S,YU,6091
-2021-11-19,10:02,Friday,KEELE STATION,EUSC,0,0,W,BD,5050
-2021-11-19,11:06,Friday,VAUGHAN MC STATION,TUO,3,6,S,YU,5756
-2021-11-19,11:08,Friday,YORK MILLS STATION,SUDP,9,12,N,YU,6051
-2021-11-19,11:24,Friday,DUNDAS STATION,MUIR,0,0,N,YU,6116
-2021-11-19,11:39,Friday,EGLINTON STATION (MIGR,MUATC,6,9,S,YU,5736
-2021-11-19,12:30,Friday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-11-19,12:44,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-19,12:57,Friday,WELLESLEY STATION,SUDP,3,6,N,YU,5821
-2021-11-19,13:00,Friday,VAUGHAN MC STATION,TUSUP,15,18,S,YU,5426
-2021-11-19,13:45,Friday,NORTH YORK CTR STATION,SUAP,0,0,,YU,0
-2021-11-19,13:54,Friday,BLOOR STATION,MUATC,3,6,N,YU,5426
-2021-11-19,14:00,Friday,BLOOR STATION,SUAP,7,10,S,YU,5836
-2021-11-19,14:00,Friday,COLLEGE STATION,SUAE,0,0,,YU,0
-2021-11-19,14:16,Friday,VAUGHAN MC STATION,MUIR,3,6,S,YU,5581
-2021-11-19,14:20,Friday,GREENWOOD STATION,MUTO,3,6,W,BD,5203
-2021-11-19,15:17,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-19,15:24,Friday,CASTLE FRANK STATION,MUSAN,0,0,E,BD,5242
-2021-11-19,15:24,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-19,15:30,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-19,15:35,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-19,15:37,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-19,15:42,Friday,WARDEN STATION,MUIS,0,0,E,BD,0
-2021-11-19,15:46,Friday,VAUGHAN MC STATION,MUI,3,6,N,YU,6096
-2021-11-19,15:48,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-19,15:51,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-19,15:57,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-19,16:00,Friday,SPADINA BD STATION,MUPAA,0,0,E,BD,5154
-2021-11-19,16:00,Friday,FINCH STATION,MUSC,0,0,S,YU,5436
-2021-11-19,16:13,Friday,YORKDALE STATION,MUIRS,0,0,N,YU,0
-2021-11-19,16:17,Friday,YONGE BD STATION,MUIRS,0,0,,BD,0
-2021-11-19,16:30,Friday,WARDEN STATION,MUPAA,0,0,E,BD,5238
-2021-11-19,17:12,Friday,GREENWOOD STATION,SUDP,0,0,W,BD,5071
-2021-11-19,17:36,Friday,YONGE BD STATION,MUIS,0,0,,BD,0
-2021-11-19,17:47,Friday,COXWELL STATION,TUNIP,4,7,E,BD,5187
-2021-11-19,18:15,Friday,GLENCAIRN STATION,SUDP,0,0,N,YU,5506
-2021-11-19,18:21,Friday,VAUGHAN MC STATION,MUCL,5,8,S,YU,5731
-2021-11-19,18:24,Friday,YORKDALE STATION,MUTO,3,6,S,YU,5856
-2021-11-19,18:32,Friday,KIPLING STATION,SUAP,0,0,,BD,0
-2021-11-19,18:49,Friday,OSSINGTON STATION,SUAP,0,0,W,BD,0
-2021-11-19,18:51,Friday,DUFFERIN STATION,MUPAA,0,0,W,BD,5351
-2021-11-19,19:01,Friday,SHEPPARD WEST STATION,MUIS,0,0,,YU,0
-2021-11-19,19:17,Friday,DUNDAS STATION,MUIS,0,0,,YU,0
-2021-11-19,19:21,Friday,KENNEDY BD STATION,MUTO,6,12,E,BD,5187
-2021-11-19,19:31,Friday,OSGOODE STATION,MUPAA,0,0,S,YU,6031
-2021-11-19,19:56,Friday,KENNEDY BD STATION,SUDP,6,12,W,BD,5143
-2021-11-19,20:26,Friday,SPADINA YUS STATION,MUIRS,0,0,,YU,0
-2021-11-19,21:04,Friday,YORKDALE STATION,MUPAA,3,8,S,YU,5956
-2021-11-19,21:16,Friday,MAIN STREET STATION,MUIS,0,0,,BD,0
-2021-11-19,21:26,Friday,VAUGHAN MC STATION,TUNOA,5,10,S,YU,0
-2021-11-19,21:34,Friday,ST CLAIR STATION,SUDP,7,7,N,YU,5821
-2021-11-19,21:59,Friday,KENNEDY BD STATION,MUO,3,9,W,BD,5197
-2021-11-19,22:00,Friday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-11-19,22:24,Friday,FINCH STATION,SUSA,0,0,,YU,0
-2021-11-19,22:44,Friday,UNION STATION,MUIR,4,9,N,YU,6117
-2021-11-19,22:55,Friday,ST GEORGE BD STATION,PUMST,0,0,,BD,0
-2021-11-19,23:05,Friday,BLOOR STATION,MUIS,0,0,N,YU,0
-2021-11-19,23:41,Friday,OLD MILL STATION,EUSC,0,0,W,BD,5050
-2021-11-19,23:58,Friday,ROSEDALE STATION,SUDP,4,9,N,YU,5956
-2021-11-19,00:22,Friday,SHEPPARD STATION,SUDP,0,0,S,YU,6061
-2021-11-19,01:32,Friday,FINCH STATION,SUDP,0,0,S,YU,6036
-2021-11-19,01:47,Friday,DUFFERIN STATION,SUDP,5,12,E,BD,5286
-2021-11-19,00:03,Friday,SHEPPARD-YONGE STATION,SUUT,8,13,E,SHP,6166
-2021-11-20,02:20,Saturday,FINCH STATION,MUIRS,0,0,N,YU,5996
-2021-11-20,14:36,Saturday,KENNEDY SRT STATION,SRO,15,21,S,SRT,3012
-2021-11-20,17:44,Saturday,SCARBOROUGH CTR STATIO,SRO,0,0,S,SRT,3004
-2021-11-20,05:50,Saturday,VAUGHAN MC STATION,MUATC,5,0,N,YU,6076
-2021-11-20,22:00,Saturday,KENNEDY SRT STATION TO,MRO,0,0,B,SRT,0
-2021-11-20,06:00,Saturday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU,0
-2021-11-20,07:03,Saturday,VAUGHAN MC STATION,TUNOA,6,12,S,YU,5741
-2021-11-20,09:18,Saturday,KING STATION,PUTWZ,8,14,N,YU,6091
-2021-11-20,10:11,Saturday,EGLINTON STATION,EUME,4,8,N,YU,6116
-2021-11-20,10:27,Saturday,MUSEUM STATION,EUVE,15,21,N,YU,0
-2021-11-20,10:59,Saturday,EGLINTON STATION,MUATC,11,15,S,YU,6111
-2021-11-20,11:03,Saturday,COXWELL STATION,TUNOA,4,8,E,BD,0
-2021-11-20,11:18,Saturday,KENNEDY BD STATION,EUBK,5,9,W,BD,5247
-2021-11-20,11:26,Saturday,OLD MILL STATION,MUIRS,0,0,,BD,0
-2021-11-20,12:18,Saturday,CHRISTIE STATION,MUIS,0,0,,BD,0
-2021-11-20,13:09,Saturday,NORTH YORK CTR STATION,SUAP,0,0,,YU,0
-2021-11-20,13:12,Saturday,VAUGHAN MC STATION,TUNOA,4,8,S,YU,0
-2021-11-20,13:22,Saturday,DUNDAS WEST STATION,SUDP,0,0,W,BD,5143
-2021-11-20,13:30,Saturday,JANE STATION,MUPAA,0,0,W,BD,5143
-2021-11-20,13:37,Saturday,SHEPPARD STATION,SUDP,14,18,S,YU,6131
-2021-11-20,14:08,Saturday,VAUGHAN MC STATION,TUNOA,4,8,S,YU,0
-2021-11-20,14:11,Saturday,EGLINTON STATION (APPR,MUATC,8,12,N,YU,6111
-2021-11-20,14:26,Saturday,BLOOR STATION,MUD,3,7,N,YU,5856
-2021-11-20,14:36,Saturday,EGLINTON STATION ( MIG,MUATC,3,7,S,YU,5506
-2021-11-20,14:36,Saturday,KENNEDY BD STATION,SUDP,15,19,W,BD,5084
-2021-11-20,14:49,Saturday,VAUGHAN MC STATION,TUNOA,4,8,S,YU,0
-2021-11-20,14:57,Saturday,ST GEORGE BD STATION,MUDD,5,9,W,BD,5238
-2021-11-20,15:10,Saturday,YORKDALE STATION,SUUT,3,6,N,YU,5751
-2021-11-20,15:19,Saturday,DAVISVILLE STATION,SUUT,3,6,S,YU,6026
-2021-11-20,15:29,Saturday,LAWRENCE STATION,TUATC,8,12,N,YU,5461
-2021-11-20,16:03,Saturday,EGLINTON WEST STATION,SUAE,0,0,N,YU,0
-2021-11-20,16:12,Saturday,VAUGHAN MC STATION,MUIS,0,0,,YU,0
-2021-11-20,16:47,Saturday,VAUGHAN MC STATION,TUNOA,4,8,S,YU,0
-2021-11-20,16:54,Saturday,DUNDAS STATION,MUIRS,0,0,S,YU,0
-2021-11-20,17:02,Saturday,KING STATION,TUNCA,0,0,,YU,0
-2021-11-20,17:06,Saturday,VAUGHAN MC STATION,TUNOA,4,8,S,YU,0
-2021-11-20,17:31,Saturday,DUNDAS STATION,SUUT,0,0,N,YU,5886
-2021-11-20,17:37,Saturday,DUFFERIN STATION,MUPAA,0,0,E,BD,5179
-2021-11-20,17:47,Saturday,VAUGHAN MC STATION,TUNOA,4,8,S,YU,0
-2021-11-20,17:49,Saturday,YONGE BD STATION,MUIR,3,7,E,BD,5179
-2021-11-20,17:56,Saturday,YONGE BD STATION,MUPAA,3,7,E,BD,5156
-2021-11-20,18:06,Saturday,DUNDAS STATION,SUDP,3,7,S,YU,6011
-2021-11-20,18:20,Saturday,BLOOR STATION,MUPAA,0,0,N,YU,5821
-2021-11-20,18:29,Saturday,SHERBOURNE STATION,MUPAA,0,0,E,BD,5242
-2021-11-20,18:41,Saturday,DUFFERIN STATION,MUPAA,0,0,W,BD,5082
-2021-11-20,18:41,Saturday,BATHURST STATION,SUDP,3,7,W,BD,5238
-2021-11-20,18:43,Saturday,EGLINTON WEST STATION,MUIS,0,0,S,YU,0
-2021-11-20,18:47,Saturday,EGLINTON STATION,SUUT,29,34,S,YU,5586
-2021-11-20,19:45,Saturday,VAUGHAN MC STATION,TUNOA,4,8,S,YU,0
-2021-11-20,20:32,Saturday,VAUGHAN MC STATION,TUNOA,4,8,S,YU,0
-2021-11-20,20:35,Saturday,JANE STATION,MUIE,0,0,,BD,0
-2021-11-20,20:55,Saturday,KENNEDY BD STATION,MUESA,7,14,E,BD,5000
-2021-11-20,21:12,Saturday,KENNEDY BD STATION,TUNIP,3,7,W,BD,5213
-2021-11-20,21:19,Saturday,DUNDAS STATION,SUO,6,12,S,YU,5476
-2021-11-20,21:23,Saturday,BAY STATION,MUIRS,0,0,,BD,0
-2021-11-20,21:30,Saturday,SPADINA YUS STATION,MUIS,0,0,W,YU,0
-2021-11-20,21:31,Saturday,BROADVIEW STATION,MUIS,0,0,,BD,0
-2021-11-20,22:00,Saturday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-11-20,22:47,Saturday,DAVISVILLE STATION,TUO,3,9,N,YU,6001
-2021-11-20,23:27,Saturday,LAWRENCE WEST STATION,SUDP,0,0,S,YU,5791
-2021-11-20,23:36,Saturday,SHEPPARD WEST STATION,SUDP,4,11,N,YU,5441
-2021-11-20,00:07,Saturday,ROYAL YORK STATION,MUIS,0,0,,BD,0
-2021-11-20,00:31,Saturday,KENNEDY BD STATION,MUSAN,3,10,W,BD,5213
-2021-11-20,00:41,Saturday,HIGHWAY 407 STATION,SUDP,0,0,S,YU,5971
-2021-11-20,01:20,Saturday,QUEEN'S PARK STATION,MUIR,11,18,S,YU,5971
-2021-11-20,01:21,Saturday,FINCH STATION,MUSC,0,0,S,YU,5926
-2021-11-20,01:38,Saturday,DUNDAS STATION,MUIS,0,0,,YU,0
-2021-11-20,01:21,Saturday,BAYVIEW STATION,TUOS,4,9,E,SHP,6156
-2021-11-21,02:00,Sunday,FINCH STATION,MUIR,0,0,S,YU,6026
-2021-11-21,21:45,Sunday,SCARBOROUGH CTR STATIO,MRUI,0,0,,SRT,0
-2021-11-21,02:00,Sunday,BAY STATION,MUIRS,0,0,,BD,0
-2021-11-21,22:00,Sunday,KENNEDY SRT STATION TO,MRO,0,0,B,SRT,0
-2021-11-21,02:26,Sunday,ST CLAIR WEST STATION,SUDP,0,0,,YU,0
-2021-11-21,02:30,Sunday,SPADINA BD STATION,MUIS,0,0,W,BD,0
-2021-11-21,02:49,Sunday,LANSDOWNE STATION,MUIS,0,0,,BD,0
-2021-11-21,08:33,Sunday,YORK MILLS STATION,SUO,4,10,N,YU,5751
-2021-11-21,08:53,Sunday,EGLINTON STATION,MUATC,6,12,S,YU,5781
-2021-11-21,09:03,Sunday,BLOOR STATION,PUMEL,0,0,S,YU,0
-2021-11-21,09:47,Sunday,EGLINTON STATION,MUATC,6,11,S,YU,5761
-2021-11-21,09:52,Sunday,DAVISVILLE BUILDUP,TUNIP,5,10,S,YU,6016
-2021-11-21,10:05,Sunday,FINCH WEST STATION,SUAP,6,11,N,YU,5796
-2021-11-21,11:01,Sunday,BLOOR STATION,MUIRS,0,0,,YU,0
-2021-11-21,11:14,Sunday,SHEPPARD STATION,PUSTS,3,8,S,YU,5401
-2021-11-21,11:19,Sunday,EGLINTON STATION,MUATC,3,8,S,YU,5976
-2021-11-21,11:38,Sunday,SPADINA BD STATION,MUPAA,0,0,E,BD,5365
-2021-11-21,11:50,Sunday,KENNEDY BD STATION,MUNOA,5,10,E,BD,5183
-2021-11-21,11:59,Sunday,QUEEN'S PARK STATION,PUMEL,0,0,,YU,0
-2021-11-21,11:59,Sunday,JANE STATION,MUPAA,0,0,W,BD,5195
-2021-11-21,12:00,Sunday,SHEPPARD WEST STATION,PUMEL,0,0,,YU,0
-2021-11-21,12:15,Sunday,DUNDAS WEST STATION,MUIS,0,0,,BD,0
-2021-11-21,12:30,Sunday,FINCH STATION,SUDP,0,0,N,YU,5906
-2021-11-21,13:43,Sunday,SHERBOURNE STATION,MUPAA,0,0,E,BD,5139
-2021-11-21,14:37,Sunday,GLENCAIRN STATION,PUOPO,3,8,N,YU,6056
-2021-11-21,14:42,Sunday,LAWRENCE WEST STATION,PUOPO,5,10,N,YU,6056
-2021-11-21,14:47,Sunday,WILSON STATION,MUATC,12,17,N,YU,5456
-2021-11-21,14:49,Sunday,DUFFERIN STATION,MUPAA,0,0,W,BD,5371
-2021-11-21,15:06,Sunday,WARDEN STATION,SUDP,0,0,,BD,0
-2021-11-21,15:34,Sunday,ST CLAIR WEST STATION,PUOPO,3,8,S,YU,5981
-2021-11-21,15:37,Sunday,ST GEORGE BD STATION,MUPAA,0,0,W,BD,5291
-2021-11-21,15:39,Sunday,COXWELL STATION,TUNOA,5,10,E,BD,0
-2021-11-21,15:42,Sunday,CHRISTIE STATION,SUDP,8,13,W,BD,5291
-2021-11-21,15:49,Sunday,MAIN STREET STATION,SUDP,0,0,W,BD,0
-2021-11-21,16:04,Sunday,DUNDAS WEST STATION,MUSC,0,0,E,BD,5140
-2021-11-21,16:12,Sunday,EGLINTON STATION,EUSC,0,0,N,YU,5981
-2021-11-21,16:16,Sunday,LAWRENCE STATION,EUSC,0,0,N,YU,5981
-2021-11-21,16:30,Sunday,RUNNYMEDE STATION,MUIRS,3,8,W,BD,5300
-2021-11-21,16:50,Sunday,LAWRENCE WEST STATION,PUMEL,0,0,N,YU,0
-2021-11-21,16:52,Sunday,ST CLAIR STATION,MUI,23,28,N,YU,5991
-2021-11-21,16:54,Sunday,DAVISVILLE STATION,MUNCA,0,0,,YU,0
-2021-11-21,17:05,Sunday,MAIN STREET STATION,TUNCA,0,0,,BD,0
-2021-11-21,17:20,Sunday,KENNEDY BD STATION,MUNCA,0,0,,BD,0
-2021-11-21,17:23,Sunday,ST GEORGE YUS STATION,MUNCA,0,0,,YU,0
-2021-11-21,17:41,Sunday,BAY STATION,SUDP,0,0,E,BD,5351
-2021-11-21,17:47,Sunday,WARDEN STATION,PUMEL,0,0,,BD,0
-2021-11-21,17:53,Sunday,SPADINA YUS STATION,MUPAA,7,12,S,YU,5581
-2021-11-21,18:19,Sunday,WILSON STATION,PUMEL,0,0,,YU,0
-2021-11-21,18:23,Sunday,FINCH STATION,TUNIP,8,13,S,YU,5951
-2021-11-21,18:41,Sunday,KENNEDY BD STATION,TUNOA,5,10,W,BD,0
-2021-11-21,20:04,Sunday,PAPE STATION,TUNOA,5,10,E,BD,0
-2021-11-21,20:12,Sunday,KENNEDY BD STATION,SUDP,3,8,W,BD,5093
-2021-11-21,21:05,Sunday,EGLINTON STATION,MUPAA,0,0,S,YU,6006
-2021-11-21,21:22,Sunday,PAPE STATION,MUDD,3,10,W,BD,5134
-2021-11-21,21:50,Sunday,FINCH STATION,MUIS,0,0,,YU,0
-2021-11-21,22:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-11-21,22:00,Sunday,EGLINTON STATION,MUIRS,4,11,N,YU,5886
-2021-11-21,22:20,Sunday,COXWELL STATION,TUNOA,7,14,E,BD,0
-2021-11-21,23:18,Sunday,GLENCAIRN STATION,MUIS,0,0,,YU,0
-2021-11-21,23:20,Sunday,UNION STATION,MUIRS,0,0,S,YU,0
-2021-11-21,23:26,Sunday,KEELE STATION,MUIS,0,0,,BD,0
-2021-11-21,00:28,Sunday,FINCH STATION,MUIRS,0,0,S,YU,5986
-2021-11-21,00:49,Sunday,SHERBOURNE STATION,SUDP,0,0,,BD,0
-2021-11-21,01:11,Sunday,ST GEORGE YUS STATION,MUO,9,16,S,YU,6091
-2021-11-21,01:35,Sunday,HIGHWAY 407 STATION,MUIS,0,0,,YU,0
-2021-11-21,01:52,Sunday,ST GEORGE YUS STATION,MUO,4,11,S,YU,5966
-2021-11-21,01:55,Sunday,FINCH STATION,MUI,0,0,S,YU,6096
-2021-11-21,14:52,Sunday,SHEPPARD-YONGE STATION,TUOS,3,8,W,SHP,6161
-2021-11-22,08:04,Monday,KENNEDY SRT STATION,MRUIR,0,0,N,SRT,3009
-2021-11-22,02:01,Monday,ST GEORGE BD STATION,MUIS,0,0,,BD,0
-2021-11-22,15:39,Monday,SCARBOROUGH CTR STATIO,PREL,0,0,,SRT,0
-2021-11-22,05:52,Monday,YONGE BD STATION,MUSC,10,0,W,BD,5005
-2021-11-22,22:00,Monday,KENNEDY SRT STATION TO,MRO,0,0,,SRT,0
-2021-11-22,06:02,Monday,SHEPPARD WEST STATION,PUOPO,6,10,N,YU,5521
-2021-11-22,06:03,Monday,EGLINTON STATION,MUATC,5,10,N,YU,5741
-2021-11-22,06:10,Monday,DOWNSVIEW PARK STATION,PUOPO,3,6,N,YU,5521
-2021-11-22,06:40,Monday,DAVISVILLE BUILDUP,MUATC,5,10,S,YU,5721
-2021-11-22,06:45,Monday,EGLINTON STATION (APPR,MUATC,7,10,S,YU,5481
-2021-11-22,07:39,Monday,EGLINTON STATION (APPR,MUATC,6,9,S,YU,5836
-2021-11-22,07:47,Monday,EGLINTON STATION (APPR,TUSUP,5,8,N,YU,5871
-2021-11-22,07:49,Monday,DAVISVILLE STATION,MUATC,15,18,S,YU,5836
-2021-11-22,07:51,Monday,SPADINA YUS STATION,PUOPO,3,6,N,YU,5781
-2021-11-22,08:05,Monday,YORK MILLS STATION,MUPAA,0,0,S,YU,5761
-2021-11-22,08:06,Monday,DUPONT STATION,PUOPO,3,6,N,YU,6086
-2021-11-22,08:40,Monday,NORTH YORK CTR STATION,SUAP,0,0,S,YU,5996
-2021-11-22,09:18,Monday,DUPONT STATION,PUOPO,3,6,N,YU,5781
-2021-11-22,10:01,Monday,ST GEORGE YUS STATION,MUTO,8,11,S,YU,6101
-2021-11-22,10:32,Monday,BLOOR STATION,PUSWZ,3,6,N,YU,5871
-2021-11-22,11:23,Monday,BLOOR STATION,MUIS,0,0,,YU,0
-2021-11-22,12:44,Monday,CASTLE FRANK STATION,SUDP,0,0,,BD,0
-2021-11-22,13:03,Monday,SHERBOURNE STATION,SUUT,25,29,W,BD,5078
-2021-11-22,13:33,Monday,FINCH STATION,TUSC,0,0,N,YU,6101
-2021-11-22,13:44,Monday,SHERBOURNE STATION,MUIS,0,0,W,BD,0
-2021-11-22,13:49,Monday,PAPE STATION,SUAP,0,0,,BD,0
-2021-11-22,14:27,Monday,LAWRENCE WEST STATION,PUOPO,0,0,N,YU,5441
-2021-11-22,14:29,Monday,DUNDAS WEST STATION,SUUT,5,9,E,BD,5236
-2021-11-22,14:31,Monday,YORKDALE STATION,PUOPO,4,8,N,YU,5441
-2021-11-22,15:32,Monday,PAPE STATION,SUO,0,0,E,BD,5206
-2021-11-22,15:35,Monday,KENNEDY BD STATION,SUAP,0,0,E,BD,5099
-2021-11-22,15:59,Monday,KIPLING STATION,SUDP,4,8,E,BD,5168
-2021-11-22,16:26,Monday,VICTORIA PARK STATION,MUSAN,4,8,E,BD,5281
-2021-11-22,16:32,Monday,ST GEORGE YUS STATION,TUNOA,7,10,S,YU,5991
-2021-11-22,16:38,Monday,OSGOODE STATION,SUDP,3,6,S,YU,5991
-2021-11-22,16:40,Monday,COLLEGE STATION,MUIRS,0,0,S,YU,0
-2021-11-22,16:59,Monday,FINCH STATION,MUIR,3,6,S,YU,5961
-2021-11-22,17:14,Monday,HIGHWAY 407 STATION,EUDO,3,6,S,YU,5811
-2021-11-22,17:23,Monday,YONGE BD STATION,SUO,5,9,E,BD,5154
-2021-11-22,17:35,Monday,CHRISTIE STATION,SUO,0,0,W,BD,5275
-2021-11-22,17:47,Monday,EGLINTON STATION,TUATC,8,11,S,YU,5426
-2021-11-22,17:48,Monday,LAWRENCE STATION,TUOS,0,0,N,YU,6126
-2021-11-22,18:07,Monday,YORK UNIVERSITY STATIO,PUOPO,5,8,N,YU,5976
-2021-11-22,18:14,Monday,YORK UNIVERSITY STATIO,PUOPO,3,6,N,YU,5881
-2021-11-22,18:28,Monday,CHRISTIE STATION,MUIRS,0,0,E,BD,5232
-2021-11-22,19:40,Monday,OSSINGTON STATION,SUUT,19,26,W,BD,5066
-2021-11-22,20:50,Monday,WOODBINE STATION,SUDP,7,14,W,BD,5246
-2021-11-22,21:03,Monday,WILSON STATION,MUIS,0,0,,YU,0
-2021-11-22,21:04,Monday,CASTLE FRANK STATION,SUDP,12,19,W,BD,5246
-2021-11-22,21:17,Monday,DOWNSVIEW PARK STATION,PUOPO,4,7,S,YU,5981
-2021-11-22,21:19,Monday,KIPLING STATION,MUI,7,14,E,BD,5084
-2021-11-22,21:27,Monday,CHESTER STATION,MUIS,0,0,,BD,0
-2021-11-22,21:47,Monday,YONGE BD STATION,SUDP,3,10,W,BD,5078
-2021-11-22,22:00,Monday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU/BD,0
-2021-11-22,22:26,Monday,SPADINA BD STATION,SUAP,16,23,W,BD,5242
-2021-11-22,22:34,Monday,FINCH STATION,MUSC,3,8,S,YU,5426
-2021-11-22,22:40,Monday,WILSON STATION,MUI,25,30,N,YU,5391
-2021-11-22,23:00,Monday,LAWRENCE WEST STATION,TUO,3,8,S,YU,5921
-2021-11-22,00:09,Monday,KENNEDY BD STATION,EUBK,7,14,W,BD,5246
-2021-11-22,00:30,Monday,FINCH STATION,MUSC,0,0,S,YU,5866
-2021-11-22,00:45,Monday,ST ANDREW STATION,MUIRS,0,0,,YU,0
-2021-11-22,00:45,Monday,YONGE BD STATION,MUIS,0,0,,BD,0
-2021-11-22,01:13,Monday,KING STATION,PUSCR,0,0,N,YU,5906
-2021-11-22,01:27,Monday,BLOOR STATION,SUUT,4,9,S,YU,5796
-2021-11-22,01:41,Monday,COLLEGE STATION,MUIRS,0,0,N,YU,0
-2021-11-22,01:45,Monday,SHEPPARD WEST STATION,MUIS,0,0,N,YU,0
-2021-11-22,01:56,Monday,BLOOR STATION,MUNOA,22,0,N,YU,5691
-2021-11-23,22:00,Tuesday,KENNEDY SRT STATION TO,MRO,0,0,,SRT,0
-2021-11-23,05:39,Tuesday,UNION STATION,SUO,0,0,,YU,0
-2021-11-23,01:04,Tuesday,KENNEDY SRT STATION,ERDO,5,12,,SRT,3017
-2021-11-23,05:47,Tuesday,VAUGHAN MC STATION,MUTO,0,0,,YU,0
-2021-11-23,06:01,Tuesday,VAUGHAN MC STATION,XXXXX,0,0,S,YU,0
-2021-11-23,06:24,Tuesday,YORK UNIVERSITY STATIO,PUOPO,0,0,N,YU,5866
-2021-11-23,06:29,Tuesday,SHEPPARD WEST STATION,PUOPO,0,0,N,YU,6086
-2021-11-23,06:30,Tuesday,YORK UNIVERSITY STATIO,PUOPO,0,0,N,YU,6046
-2021-11-23,06:30,Tuesday,ST GEORGE YUS STATION,TUO,4,7,S,YU,5791
-2021-11-23,06:34,Tuesday,YORK UNIVERSITY STATIO,PUOPO,0,0,N,YU,6121
-2021-11-23,06:36,Tuesday,DOWNSVIEW PARK STATION,PUOPO,4,7,N,YU,6086
-2021-11-23,06:51,Tuesday,YORK UNIVERSITY STATIO,PUOPO,0,0,N,YU,5406
-2021-11-23,07:11,Tuesday,EGLINTON STATION (MIGR,MUATC,4,7,S,YU,5486
-2021-11-23,08:49,Tuesday,PIONEER VILLAGE STATIO,PUMST,0,0,,YU,0
-2021-11-23,09:05,Tuesday,ST GEORGE BD STATION,TUMVS,5,9,W,BD,5080
-2021-11-23,09:15,Tuesday,WILSON CARHOUSE,MUO,0,0,,YU,0
-2021-11-23,09:51,Tuesday,HIGHWAY 407 STATION,PUOPO,0,0,S,YU,5736
-2021-11-23,09:57,Tuesday,PIONEER VILLAGE STATIO,PUOPO,3,6,S,YU,5736
-2021-11-23,11:00,Tuesday,DOWNSVIEW PARK STATION,PUOPO,5,8,N,YU,5471
-2021-11-23,11:09,Tuesday,FINCH WEST STATION,PUOPO,3,6,N,YU,5471
-2021-11-23,11:10,Tuesday,WARDEN STATION,PUSTS,0,0,W,BD,5134
-2021-11-23,11:37,Tuesday,YONGE BD STATION,MUPAA,0,0,E,BD,5232
-2021-11-23,11:40,Tuesday,BAY STATION,SUDP,0,0,W,BD,5269
-2021-11-23,12:00,Tuesday,WARDEN STATION,PUSNT,3,7,W,BD,5167
-2021-11-23,12:39,Tuesday,DUNDAS WEST STATION,SUDP,0,0,W,BD,5059
-2021-11-23,12:50,Tuesday,ROYAL YORK STATION,PUSTS,0,0,E,BD,5168
-2021-11-23,13:34,Tuesday,DONLANDS STATION,SUUT,0,0,W,BD,5044
-2021-11-23,13:41,Tuesday,COXWELL STATION,MUO,0,0,E,BD,0
-2021-11-23,13:43,Tuesday,KING STATION,MUNCA,0,0,,YU,0
-2021-11-23,13:53,Tuesday,COXWELL STATION,PUMEL,0,0,,BD,0
-2021-11-23,14:34,Tuesday,DUNDAS WEST STATION,SUAP,0,0,,BD,0
-2021-11-23,14:44,Tuesday,DUNDAS WEST STATION,SUO,0,0,E,BD,5055
-2021-11-23,15:01,Tuesday,WARDEN STATION,SUO,0,0,,BD,0
-2021-11-23,15:15,Tuesday,ST GEORGE YUS STATION,MUSAN,3,6,N,YU,5851
-2021-11-23,15:31,Tuesday,GREENWOOD STATION,SUO,0,0,E,BD,5028
-2021-11-23,15:52,Tuesday,KENNEDY BD STATION,MUO,0,0,E,BD,5176
-2021-11-23,16:25,Tuesday,YORK UNIVERSITY STATIO,MUPAA,0,0,N,YU,5763
-2021-11-23,16:27,Tuesday,ST GEORGE YUS STATION,MUPAA,0,0,N,YU,6106
-2021-11-23,16:58,Tuesday,PAPE STATION,PUMST,0,0,,BD,0
-2021-11-23,17:05,Tuesday,SHEPPARD WEST STATION,PUOPO,0,0,N,YU,5816
-2021-11-23,17:14,Tuesday,ST GEORGE YUS STATION,TUNOA,6,9,S,YU,5761
-2021-11-23,17:17,Tuesday,RUNNYMEDE STATION,SUDP,0,0,W,BD,5282
-2021-11-23,17:26,Tuesday,EGLINTON STATION,EUBO,5,8,N,YU,5961
-2021-11-23,17:30,Tuesday,FINCH STATION,MUO,0,0,,YU,0
-2021-11-23,17:31,Tuesday,DUNDAS STATION,MUD,5,8,S,YU,5746
-2021-11-23,17:41,Tuesday,ST GEORGE YUS STATION,TUNIP,5,8,S,YU,5536
-2021-11-23,17:53,Tuesday,ST GEORGE YUS STATION,TUNIP,7,10,S,YU,6056
-2021-11-23,18:05,Tuesday,FINCH STATION,TUSC,0,0,N,YU,5916
-2021-11-23,18:32,Tuesday,FINCH STATION,TUNIP,3,6,S,YU,5391
-2021-11-23,19:02,Tuesday,WOODBINE STATION,SUAP,0,0,E,BD,0
-2021-11-23,19:14,Tuesday,COXWELL STATION,SUDP,7,11,W,BD,5236
-2021-11-23,19:38,Tuesday,LAWRENCE STATION,SUAE,5,8,N,YU,5741
-2021-11-23,19:48,Tuesday,FINCH WEST STATION,SUPOL,32,35,S,YU,5496
-2021-11-23,20:19,Tuesday,LAWRENCE STATION,SUDP,3,6,N,YU,5531
-2021-11-23,21:09,Tuesday,FINCH WEST STATION,MUPAA,4,9,N,YU,5381
-2021-11-23,22:00,Tuesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-11-23,22:07,Tuesday,HIGHWAY 407 STATION,MUPAA,3,8,S,YU,5871
-2021-11-23,22:23,Tuesday,WARDEN STATION,SUAP,0,0,E,BD,5014
-2021-11-23,23:10,Tuesday,KING STATION,SUAP,10,15,S,YU,5781
-2021-11-23,23:12,Tuesday,LAWRENCE STATION,EUSC,0,0,S,YU,5976
-2021-11-23,23:26,Tuesday,YORK UNIVERSITY STATIO,PUOPO,4,9,S,YU,5916
-2021-11-23,23:27,Tuesday,DUNDAS STATION,MUIS,0,0,,YU,0
-2021-11-23,23:34,Tuesday,CHRISTIE STATION,MUIS,0,0,W,BD,5038
-2021-11-23,00:43,Tuesday,ST GEORGE YUS STATION,PUOPO,3,8,N,YU,5691
-2021-11-23,01:30,Tuesday,SHEPPARD WEST STATION,MUI,0,0,S,YU,5696
-2021-11-23,15:52,Tuesday,SHEPPARD-YONGE STATION,MUIS,0,0,E,SHP,6176
-2021-11-23,20:07,Tuesday,SHEPPARD-YONGE STATION,SUUT,11,16,W,SHP,6141
-2021-11-23,20:35,Tuesday,LESLIE STATION,PUSO,8,13,E,SHP,6166
-2021-11-24,05:45,Wednesday,BLOOR STATION,TUCC,0,0,N,YU,5641
-2021-11-24,06:09,Wednesday,MCCOWAN STATION,ERDO,3,8,S,SRT,3024
-2021-11-24,05:49,Wednesday,EGLINTON STATION,MUATC,10,0,N,YU,5401
-2021-11-24,22:37,Wednesday,LAWRENCE EAST STATION,MRO,0,0,,SRT,0
-2021-11-24,06:01,Wednesday,EGLINTON STATION,MUATC,8,12,S,YU,5521
-2021-11-24,06:30,Wednesday,HIGHWAY 407 STATION,PUOPO,3,6,S,YU,5936
-2021-11-24,06:36,Wednesday,PIONEER VILLAGE STATIO,PUOPO,3,6,S,YU,5936
-2021-11-24,06:45,Wednesday,FINCH WEST STATION,TUATC,8,11,S,YU,5471
-2021-11-24,06:48,Wednesday,SHEPPARD WEST STATION,MUIS,0,0,,YU,0
-2021-11-24,08:00,Wednesday,ST GEORGE YUS STATION,MUTO,8,11,S,YU,6106
-2021-11-24,08:05,Wednesday,WELLESLEY STATION,SUDP,5,7,N,YU,5741
-2021-11-24,08:32,Wednesday,JANE STATION,MUPAA,0,0,W,BD,5172
-2021-11-24,08:32,Wednesday,VICTORIA PARK STATION,MUTD,3,7,W,BD,5244
-2021-11-24,09:15,Wednesday,EGLINTON STATION (MIGR,MUATC,3,6,S,YU,5541
-2021-11-24,09:37,Wednesday,EGLINTON STATION,MUATC,5,8,S,YU,5876
-2021-11-24,11:25,Wednesday,ROSEDALE STATION,SUDP,3,6,S,YU,5426
-2021-11-24,11:33,Wednesday,ST CLAIR WEST STATION,EUBK,7,10,S,YU,5551
-2021-11-24,11:53,Wednesday,VICTORIA PARK STATION,SUAE,3,7,W,BD,5002
-2021-11-24,12:37,Wednesday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-11-24,12:52,Wednesday,FINCH STATION,PUSSW,141,144,N,YU,5996
-2021-11-24,13:23,Wednesday,NORTH YORK CTR STATION,MUPAA,0,0,N,YU,5116
-2021-11-24,14:00,Wednesday,EGLINTON STATION,MUTO,3,6,N,YU,0
-2021-11-24,14:03,Wednesday,UNION STATION,MUIS,0,0,,YU,0
-2021-11-24,14:10,Wednesday,MAIN STREET STATION,SUUT,3,7,W,BD,5014
-2021-11-24,14:13,Wednesday,BLOOR STATION,MUPAA,0,0,N,YU,5546
-2021-11-24,14:15,Wednesday,SHEPPARD STATION,TUNIP,10,13,S,YU,5916
-2021-11-24,14:38,Wednesday,YORKDALE STATION,PUMST,0,0,,YU,0
-2021-11-24,14:44,Wednesday,YORK MILLS STATION,PUSTS,0,0,S,YU,5821
-2021-11-24,14:55,Wednesday,EGLINTON STATION,PUMEL,0,0,,YU,0
-2021-11-24,15:08,Wednesday,ST GEORGE YUS STATION,MUATC,6,9,S,YU,5901
-2021-11-24,15:25,Wednesday,WILSON STATION,MUIS,0,0,,YUS,0
-2021-11-24,15:47,Wednesday,LAWRENCE WEST STATION,MUPAA,3,6,N,YU,5541
-2021-11-24,15:50,Wednesday,KENNEDY BD STATION,SUO,0,0,,BD,0
-2021-11-24,15:54,Wednesday,WOODBINE STATION,SUDP,0,0,E,BD,5187
-2021-11-24,16:20,Wednesday,EGLINTON STATION,MUSC,0,0,N,YU,5741
-2021-11-24,16:55,Wednesday,ISLINGTON STATION,SUDP,0,0,E,BD,5360
-2021-11-24,17:00,Wednesday,HIGHWAY 407 STATION,SUDP,5,8,S,YU,5761
-2021-11-24,17:11,Wednesday,QUEEN STATION,SUDP,6,9,S,YU,6136
-2021-11-24,17:17,Wednesday,JANE STATION,MUD,5,9,W,BD,5127
-2021-11-24,17:19,Wednesday,LAWRENCE STATION,EUSC,0,0,S,YU,5981
-2021-11-24,17:29,Wednesday,ST GEORGE YUS STATION,MUNOA,12,15,S,YU,5401
-2021-11-24,17:35,Wednesday,SPADINA YUS STATION,MUPAA,10,13,N,YU,6136
-2021-11-24,17:59,Wednesday,ST CLAIR WEST STATION,MUPAA,3,6,S,YU,6041
-2021-11-24,18:28,Wednesday,JANE STATION,MUIR,5,9,E,BD,5067
-2021-11-24,18:47,Wednesday,LAWRENCE WEST STATION,MUATC,3,6,N,YU,5441
-2021-11-24,19:28,Wednesday,YORK MILLS STATION,MUO,3,6,N,YU,5623
-2021-11-24,19:43,Wednesday,WOODBINE STATION,MUIR,0,0,W,BD,5232
-2021-11-24,20:08,Wednesday,CHRISTIE STATION,SUAP,6,13,W,BD,5176
-2021-11-24,21:57,Wednesday,SPADINA YUS STATION,TUO,8,13,N,YU,5861
-2021-11-24,22:00,Wednesday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU/BD,0
-2021-11-24,22:47,Wednesday,FINCH STATION,MUPAA,0,0,N,YU,5861
-2021-11-24,23:01,Wednesday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-11-24,00:07,Wednesday,SHEPPARD WEST STATION,MUPAA,0,0,N,YU,6096
-2021-11-24,00:31,Wednesday,SPADINA YUS STATION,MUATC,0,0,S,YU,5901
-2021-11-24,01:51,Wednesday,VAUGHAN MC STATION,MUIS,0,0,,YU,0
-2021-11-24,20:50,Wednesday,DON MILLS STATION,PUMO,0,0,W,SHP,6151
-2021-11-25,02:25,Thursday,KENNEDY BD STATION,SUDP,0,0,E,BD,5080
-2021-11-25,08:57,Thursday,SCARBOROUGH CTR STATIO,MRPR1,86,91,S,SRT,3010
-2021-11-25,06:01,Thursday,EGLINTON STATION,MUATC,11,15,S,YU,5646
-2021-11-25,22:22,Thursday,KENNEDY SRT STATION TO,MRO,0,0,,SRT,0
-2021-11-25,06:34,Thursday,KENNEDY BD STATION,MUWEA,3,7,W,BD,5244
-2021-11-25,06:40,Thursday,ST CLAIR WEST STATION,TUO,5,8,S,YU,5401
-2021-11-25,06:55,Thursday,HIGHWAY 407 STATION,PUOPO,3,6,S,YU,5986
-2021-11-25,07:39,Thursday,DUNDAS WEST STATION,SUPOL,9,13,W,BD,5099
-2021-11-25,08:14,Thursday,ST GEORGE YUS STATION,MUPAA,0,0,S,YU,5971
-2021-11-25,08:18,Thursday,SHERBOURNE STATION,SUDP,4,8,E,BD,5134
-2021-11-25,08:30,Thursday,DONLANDS STATION,SUDP,3,7,E,BD,5134
-2021-11-25,08:39,Thursday,FINCH STATION,MUSC,0,0,S,YU,5646
-2021-11-25,09:25,Thursday,ST GEORGE BD STATION,MUDD,4,8,W,BD,5265
-2021-11-25,09:30,Thursday,BAY STATION,SUDP,4,8,E,BD,5212
-2021-11-25,10:28,Thursday,WARDEN STATION,TUMVS,10,14,W,BD,5127
-2021-11-25,10:38,Thursday,VICTORIA PARK STATION,TUO,4,8,W,BD,5127
-2021-11-25,10:56,Thursday,FINCH STATION,TUATC,3,6,S,YU,5391
-2021-11-25,11:43,Thursday,BROADVIEW STATION,SUDP,4,8,W,BD,5038
-2021-11-25,11:48,Thursday,KEELE STATION,MUTO,3,7,W,BD,5229
-2021-11-25,11:59,Thursday,SHERBOURNE STATION,SUDP,0,0,E,BD,5236
-2021-11-25,12:29,Thursday,ST PATRICK STATION,MUTO,0,0,,YU,0
-2021-11-25,12:36,Thursday,ST GEORGE YUS STATION,MUIE,0,0,N,YU,5631
-2021-11-25,12:53,Thursday,FINCH STATION,SUDP,3,6,S,YU,5591
-2021-11-25,13:02,Thursday,EGLINTON STATION,MUPAA,0,0,N,YU,5431
-2021-11-25,14:35,Thursday,FINCH STATION,TUNIP,3,6,S,YU,5426
-2021-11-25,14:43,Thursday,SHEPPARD STATION,TUSC,0,0,N,YU,5516
-2021-11-25,15:05,Thursday,SHEPPARD WEST STATION,MUI,10,13,S,YU,5751
-2021-11-25,15:08,Thursday,ST GEORGE YUS STATION,MUPAA,4,7,S,YU,5381
-2021-11-25,15:38,Thursday,ST ANDREW STATION,MUPAA,3,6,N,YU,5101
-2021-11-25,16:14,Thursday,CASTLE FRANK STATION,PUMEL,0,0,,BD,0
-2021-11-25,16:41,Thursday,UNION STATION,MUD,5,8,N,YU,5766
-2021-11-25,16:52,Thursday,YORK MILLS STATION,MUIS,0,0,,YU,0
-2021-11-25,17:36,Thursday,EGLINTON STATION,EUSC,0,0,S,YU,5456
-2021-11-25,17:50,Thursday,DAVISVILLE STATION,SUAP,13,16,S,YU,5631
-2021-11-25,19:24,Thursday,FINCH STATION,SUDP,3,6,N,YU,5491
-2021-11-25,19:34,Thursday,WELLESLEY STATION,MUIS,0,0,,YU,0
-2021-11-25,20:08,Thursday,EGLINTON STATION,MUATC,3,6,S,YU,5821
-2021-11-25,20:41,Thursday,DOWNSVIEW PARK STATION,SUDP,3,6,N,YU,5921
-2021-11-25,21:05,Thursday,VAUGHAN MC STATION,MUIS,0,0,,YU,0
-2021-11-25,21:10,Thursday,BLOOR STATION,MUPAA,0,0,S,YU,6016
-2021-11-25,21:14,Thursday,MUSEUM STATION,TUO,0,0,N,YU,6031
-2021-11-25,21:14,Thursday,WILSON CARHOUSE,MUIE,0,0,,,0
-2021-11-25,21:31,Thursday,MUSEUM STATION,TUO,0,0,N,YU,6136
-2021-11-25,22:00,Thursday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-11-25,23:23,Thursday,MAIN STREET STATION,SUO,5,12,W,BD,5164
-2021-11-25,23:44,Thursday,SPADINA YUS STATION,SUUT,7,12,S,YU,6106
-2021-11-25,00:56,Thursday,ST CLAIR STATION,SUAE,0,0,S,YU,5766
-2021-11-25,01:10,Thursday,MAIN STREET STATION,SUDP,7,14,W,BD,5244
-2021-11-25,23:57,Thursday,BAYVIEW STATION,EUBK,0,0,W,SHP,6151
-2021-11-26,09:53,Friday,SCARBOROUGH CTR STATIO,MRPAA,0,0,S,SRT,3026
-2021-11-26,02:42,Friday,WELLESLEY STATION,MUO,0,0,,YU,0
-2021-11-26,05:34,Friday,FINCH STATION,PUTWZ,3,0,S,YU,5476
-2021-11-26,22:00,Friday,KENNEDY SRT STATION TO,MRO,0,0,B,SRT,0
-2021-11-26,05:41,Friday,EGLINTON STATION,MUATC,3,0,N,YU,5781
-2021-11-26,06:08,Friday,ST GEORGE YUS STATION,TUNOA,5,8,S,YU,6071
-2021-11-26,06:37,Friday,DOWNSVIEW PARK STATION,PUOPO,3,6,N,YU,6006
-2021-11-26,06:45,Friday,FINCH WEST STATION,PUOPO,3,6,N,YU,6006
-2021-11-26,07:09,Friday,ST GEORGE YUS STATION,MUTO,3,6,S,YU,6086
-2021-11-26,08:02,Friday,WARDEN STATION,MUDD,0,0,W,BD,5013
-2021-11-26,08:16,Friday,HIGH PARK STATION,SUO,0,0,,BD,0
-2021-11-26,08:28,Friday,DAVISVILLE STATION,MUTO,3,6,S,YU,5426
-2021-11-26,08:36,Friday,RUNNYMEDE STATION,MUPAA,0,0,E,BD,5131
-2021-11-26,09:57,Friday,ST GEORGE BD STATION,MUPAA,0,0,E,BD,5288
-2021-11-26,10:08,Friday,SHEPPARD WEST STATION,MUIS,0,0,,YU,0
-2021-11-26,10:21,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-11-26,10:36,Friday,SHEPPARD WEST STATION,PUOPO,0,0,S,YU,5641
-2021-11-26,10:43,Friday,YORKDALE STATION,PUOPO,3,6,S,YU,5641
-2021-11-26,10:50,Friday,YORK MILLS STATION,SUSA,3,6,N,YU,5611
-2021-11-26,11:02,Friday,DUNDAS STATION,MUIS,0,0,S,YU,0
-2021-11-26,11:28,Friday,FINCH STATION,TUNOA,3,6,S,YU,0
-2021-11-26,11:34,Friday,CASTLE FRANK STATION,MUDD,3,7,W,BD,5044
-2021-11-26,11:45,Friday,KIPLING STATION,EUBK,4,8,E,BD,5241
-2021-11-26,12:00,Friday,WILSON STATION,PUEO,0,0,N,YU,5536
-2021-11-26,12:19,Friday,OLD MILL STATION,TUS,5,9,W,BD,5282
-2021-11-26,12:40,Friday,ST PATRICK STATION,SUDP,7,10,N,YU,6061
-2021-11-26,12:46,Friday,ST PATRICK STATION,SUDP,3,6,S,YU,5771
-2021-11-26,12:59,Friday,MUSEUM STATION,TUATC,3,6,N,YU,5976
-2021-11-26,13:28,Friday,TRANSIT CONTROL,PUMO,0,0,,YU,0
-2021-11-26,13:29,Friday,BROADVIEW STATION,MUIS,0,0,,BD,0
-2021-11-26,14:03,Friday,SPADINA BD STATION,MUPAA,0,0,W,BD,5038
-2021-11-26,14:26,Friday,WELLESLEY STATION,SUDP,4,7,S,YU,6031
-2021-11-26,14:27,Friday,BLOOR STATION,MUIS,0,0,,YU,0
-2021-11-26,14:33,Friday,HIGH PARK STATION,SUAE,0,0,E,BD,5236
-2021-11-26,15:08,Friday,YONGE BD STATION,SUUT,21,24,E,BD,5083
-2021-11-26,15:36,Friday,SHERBOURNE STATION,TUNIP,5,9,W,BD,5037
-2021-11-26,15:37,Friday,YONGE BD STATION,MUPAA,0,0,E,BD,5119
-2021-11-26,15:39,Friday,DAVISVILLE BUILDUP,TUO,4,7,S,YU,5926
-2021-11-26,15:56,Friday,QUEEN'S PARK STATION,MUPLC,0,0,N,YU,5776
-2021-11-26,16:19,Friday,LANSDOWNE STATION,MUIR,0,0,E,BD,5259
-2021-11-26,16:23,Friday,DUNDAS STATION,MUIRS,0,0,S,YU,0
-2021-11-26,16:25,Friday,KIPLING STATION,TUMVS,6,10,W,BD,5304
-2021-11-26,16:40,Friday,FINCH STATION,PUMEL,0,0,,YU,0
-2021-11-26,16:44,Friday,YORK UNIVERSITY STATIO,PUOPO,0,0,N,YU,6046
-2021-11-26,16:51,Friday,DONLANDS STATION,PUSTS,9,13,E,BD,5181
-2021-11-26,16:59,Friday,DUFFERIN STATION,MUPLB,28,31,W,BD,0
-2021-11-26,17:20,Friday,YONGE BD STATION,MUPR1,54,57,E,BD,5288
-2021-11-26,17:24,Friday,BLOOR STATION,MUO,0,0,S,YU,5476
-2021-11-26,17:50,Friday,YORKDALE STATION,MUPAA,3,6,N,YU,5896
-2021-11-26,18:18,Friday,QUEEN STATION,MUIS,0,0,S,YU,0
-2021-11-26,18:23,Friday,ST ANDREW STATION,SUDP,32,35,S,YU,6086
-2021-11-26,18:43,Friday,MAIN STREET STATION,MUIS,0,0,,BD,0
-2021-11-26,19:08,Friday,QUEEN'S PARK STATION,MUPAA,7,10,N,YU,5586
-2021-11-26,19:14,Friday,ST CLAIR STATION,MUO,3,6,N,YU,6086
-2021-11-26,19:20,Friday,DUFFERIN STATION,MUPAA,0,0,W,BD,5154
-2021-11-26,19:27,Friday,GLENCAIRN STATION,PUOPO,0,0,S,YU,5996
-2021-11-26,20:10,Friday,DAVISVILLE STATION,MUIR,0,0,S,YU,6121
-2021-11-26,20:45,Friday,VICTORIA PARK STATION,MUO,11,18,W,BD,5312
-2021-11-26,20:52,Friday,YONGE BD STATION,MUDD,5,12,E,BD,5105
-2021-11-26,21:03,Friday,VICTORIA PARK STATION,SUROB,0,0,,BD,0
-2021-11-26,21:25,Friday,ST CLAIR STATION,MUIR,4,9,N,YU,5766
-2021-11-26,21:45,Friday,HIGHWAY 407 STATION,TUO,0,0,S,YU,5826
-2021-11-26,22:00,Friday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-11-26,22:01,Friday,KEELE STATION,PUSTS,5,12,W,BD,5109
-2021-11-26,22:36,Friday,ST GEORGE YUS STATION,MUNOA,5,10,S,YU,0
-2021-11-26,22:53,Friday,ST GEORGE YUS STATION,SUO,0,0,S,YU,5951
-2021-11-26,22:56,Friday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-11-26,23:00,Friday,ST GEORGE YUS STATION,TUNOA,10,15,S,YU,5876
-2021-11-26,23:10,Friday,ST ANDREW STATION,MUSAN,3,8,N,YU,5751
-2021-11-26,23:15,Friday,COLLEGE STATION,MUPAA,4,9,N,YU,5951
-2021-11-26,23:23,Friday,ST CLAIR STATION,SUDP,3,8,S,YU,6101
-2021-11-26,23:31,Friday,KENNEDY BD STATION,SUAP,0,0,,BD,5044
-2021-11-26,00:05,Friday,FINCH STATION,MUI,0,0,S,YU,5911
-2021-11-26,01:01,Friday,DUFFERIN STATION,MUPAA,0,0,W,BD,5013
-2021-11-26,01:14,Friday,PIONEER VILLAGE STATIO,PUOPO,0,0,N,YU,5391
-2021-11-26,01:28,Friday,YORK MILLS STATION,TUMVS,0,0,S,YU,5966
-2021-11-26,01:45,Friday,YONGE BD STATION,MUIS,0,0,,BD,0
-2021-11-26,21:11,Friday,SHEPPARD-YONGE STATION,TUNOA,10,15,W,SHP,6186
-2021-11-26,00:04,Friday,DON MILLS STATION,TUMVS,5,10,E,SHP,6166
-2021-11-27,02:21,Saturday,DUNDAS WEST STATION,MUIS,0,0,E,BD,0
-2021-11-27,06:00,Saturday,TORONTO TRANSIT COMMIS,MRO,0,0,,SRT,0
-2021-11-27,02:50,Saturday,FINCH STATION,SUDP,0,0,,YU,0
-2021-11-27,06:48,Saturday,MIDLAND STATION,MRDD,3,9,S,SRT,3016
-2021-11-27,05:42,Saturday,FINCH STATION,TUCC,5,0,S,YU,6076
-2021-11-27,22:00,Saturday,KENNEDY SRT STATION TO,MRO,0,0,B,SRT,0
-2021-11-27,06:00,Saturday,TORONTO TRANSIT COMMIS,MUO,0,0,,YU/BD,0
-2021-11-27,06:00,Saturday,BAY STATION,MUNCA,0,0,,BD,0
-2021-11-27,06:08,Saturday,EGLINTON STATION,MUATC,5,11,S,YU,5991
-2021-11-27,06:24,Saturday,ST GEORGE YUS STATION,TUCC,10,18,S,YU,5906
-2021-11-27,06:38,Saturday,KENNEDY BD STATION,SUG,5,10,W,BD,5033
-2021-11-27,07:32,Saturday,WOODBINE STATION,SUDP,0,0,W,BD,5127
-2021-11-27,08:46,Saturday,KENNEDY BD STATION,SUDP,20,25,E,BD,5325
-2021-11-27,08:54,Saturday,YONGE BD STATION,MUPAA,0,0,E,BD,5266
-2021-11-27,09:15,Saturday,COLLEGE STATION,SUDP,3,9,N,YU,6131
-2021-11-27,09:34,Saturday,KENNEDY BD STATION,MUSAN,5,10,W,BD,5152
-2021-11-27,10:22,Saturday,HIGHWAY 407 STATION,EUDO,8,12,N,YU,5691
-2021-11-27,10:39,Saturday,LAWRENCE WEST STATION,SUUT,9,13,S,YU,5666
-2021-11-27,10:42,Saturday,DUFFERIN STATION,MUPAA,0,0,W,BD,5251
-2021-11-27,10:52,Saturday,EGLINTON WEST STATION,SUDP,13,17,S,YU,6096
-2021-11-27,10:57,Saturday,FINCH STATION,MUSAN,4,8,S,YU,6101
-2021-11-27,11:07,Saturday,ST CLAIR WEST STATION,MUO,7,11,N,YU,5816
-2021-11-27,11:33,Saturday,WILSON STATION,MUNOA,4,8,S,YU,5541
-2021-11-27,12:26,Saturday,HIGHWAY 407 STATION,MUIS,0,0,,YU,0
-2021-11-27,13:30,Saturday,VAUGHAN MC STATION,PUOPO,0,0,S,YU,5856
-2021-11-27,13:33,Saturday,HIGHWAY 407 STATION,PUOPO,4,8,S,YU,5856
-2021-11-27,14:08,Saturday,YONGE BD STATION,MUIRS,0,0,,BD,0
-2021-11-27,14:54,Saturday,WILSON STATION,EUDO,4,8,S,YU,5856
-2021-11-27,15:02,Saturday,WARDEN STATION,TUMVS,0,0,E,BD,5231
-2021-11-27,15:06,Saturday,KENNEDY BD STATION,TUO,4,8,W,BD,5231
-2021-11-27,15:54,Saturday,VICTORIA PARK STATION,SUDP,4,8,E,BD,5212
-2021-11-27,15:54,Saturday,JANE STATION,MUPAA,0,0,W,BD,5206
-2021-11-27,16:27,Saturday,COXWELL STATION,SUDP,6,8,W,BD,5014
-2021-11-27,16:58,Saturday,KENNEDY BD STATION,TUNOA,4,8,W,BD,0
-2021-11-27,17:50,Saturday,DUNDAS STATION,SUDP,6,10,N,YU,5421
-2021-11-27,18:46,Saturday,ST CLAIR STATION,MUIS,0,0,S,YU,0
-2021-11-27,18:51,Saturday,SPADINA YUS STATION,SUEAS,17,22,S,YU,6066
-2021-11-27,19:19,Saturday,DAVISVILLE STATION,EUDO,3,8,S,YU,5836
-2021-11-27,19:24,Saturday,ST GEORGE YUS STATION,MUTO,0,0,,YU,0
-2021-11-27,19:41,Saturday,KING STATION,PUSAC,0,0,S,YU,5911
-2021-11-27,20:36,Saturday,MUSEUM STATION,MUIS,0,0,N,YU,0
-2021-11-27,20:37,Saturday,EGLINTON STATION,MUIS,0,0,,YU,0
-2021-11-27,20:52,Saturday,FINCH STATION,TUNOA,5,10,S,YU,0
-2021-11-27,21:43,Saturday,DUNDAS STATION,SUDP,0,0,N,YU,0
-2021-11-27,22:00,Saturday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-11-27,22:41,Saturday,OSSINGTON STATION,SUUT,3,10,W,BD,5127
-2021-11-27,23:04,Saturday,WILSON YARD,MUO,0,0,,YU,0
-2021-11-27,23:05,Saturday,EGLINTON STATION,SUO,3,10,S,YU,6006
-2021-11-27,00:26,Saturday,YONGE BD STATION,MUIS,0,0,,BD,0
-2021-11-27,00:33,Saturday,BATHURST STATION,MUIRS,0,0,,BD,0
-2021-11-27,00:35,Saturday,WARDEN STATION,MUIS,0,0,,BD,0
-2021-11-27,06:00,Saturday,TORONTO TRANSIT COMMIS,MUO,0,0,,SHP,0
-2021-11-27,13:54,Saturday,LESLIE STATION,MUSC,3,8,W,SHP,6171
-2021-11-27,19:34,Saturday,LESLIE STATION,MUIS,0,0,W,SHP,6161
-2021-11-27,23:11,Saturday,BAYVIEW STATION,EUSC,5,10,E,SHP,6181
-2021-11-28,07:17,Sunday,EGLINTON STATION TO VM,MUATC,0,0,,YU,0
-2021-11-28,23:00,Sunday,KENNEDY SRT STATION TO,MRO,0,0,B,SRT,0
-2021-11-28,07:42,Sunday,WILSON STATION,PUSAC,20,0,S,YU,5821
-2021-11-28,08:00,Sunday,KEELE STATION,MUO,8,0,W,BD,5205
-2021-11-28,08:06,Sunday,UNION STATION,SUAP,0,0,N,YU,0
-2021-11-28,08:15,Sunday,KIPLING STATION,MUO,9,14,E,BD,5074
-2021-11-28,08:29,Sunday,NORTH YORK CTR STATION,TUOS,4,10,S,YU,5791
-2021-11-28,08:42,Sunday,COXWELL STATION,TUO,5,10,E,BD,5100
-2021-11-28,08:56,Sunday,EGLINTON STATION,SUDP,4,10,S,YU,6006
-2021-11-28,08:56,Sunday,MAIN STREET STATION,MUSC,0,0,W,BD,5291
-2021-11-28,09:07,Sunday,YORKDALE STATION,MUATC,12,17,S,YU,6091
-2021-11-28,09:46,Sunday,ST GEORGE YUS STATION,SUO,12,17,N,YU,5626
-2021-11-28,09:56,Sunday,LAWRENCE WEST STATION,SUAE,10,15,S,YU,5901
-2021-11-28,10:03,Sunday,LAWRENCE WEST STATION,SUAE,0,0,S,YU,6116
-2021-11-28,10:05,Sunday,ST CLAIR STATION,EUDO,3,6,N,YU,5646
-2021-11-28,10:44,Sunday,FINCH STATION,PUSCR,5,10,S,YU,6006
-2021-11-28,11:37,Sunday,BATHURST STATION,MUIRS,0,0,,BD,0
-2021-11-28,12:18,Sunday,FINCH STATION,PUTD,3,8,N,YU,6011
-2021-11-28,12:30,Sunday,EGLINTON STATION,MUATC,3,8,S,YU,5916
-2021-11-28,12:46,Sunday,WELLESLEY STATION,SUO,4,9,N,YU,5531
-2021-11-28,14:29,Sunday,WARDEN STATION,MUPLB,13,18,E,BD,5171
-2021-11-28,14:58,Sunday,FINCH STATION,MUI,3,8,S,YU,5391
-2021-11-28,15:19,Sunday,EGLINTON STATION (APPR,MUATC,0,0,S,YU,5916
-2021-11-28,16:55,Sunday,DUNDAS STATION,MUNCA,0,0,,YU,0
-2021-11-28,16:59,Sunday,BLOOR STATION,MUI,4,9,N,YU,6081
-2021-11-28,17:33,Sunday,SHEPPARD STATION,MUIR,5,10,N,YU,5831
-2021-11-28,18:06,Sunday,DUNDAS STATION,MUIS,0,0,N,YU,0
-2021-11-28,18:28,Sunday,CASTLE FRANK STATION,MUPAA,0,0,W,BD,5208
-2021-11-28,18:40,Sunday,VAUGHAN MC STATION,PUEO,0,0,,YU,0
-2021-11-28,19:02,Sunday,OLD MILL STATION,TUOS,0,0,E,BD,5322
-2021-11-28,19:06,Sunday,EGLINTON STATION,MUATC,3,8,S,YU,5536
-2021-11-28,19:57,Sunday,PIONEER VILLAGE STATIO,EUOPO,0,0,S,YU,5696
-2021-11-28,20:12,Sunday,EGLINTON STATION,TUATC,7,14,S,YU,5906
-2021-11-28,20:21,Sunday,GLENCAIRN STATION,SUDP,3,10,N,YU,5966
-2021-11-28,20:26,Sunday,KENNEDY BD STATION,SUSA,0,0,,BD,0
-2021-11-28,20:29,Sunday,WILSON STATION,SUDP,0,0,N,YU,5966
-2021-11-28,20:39,Sunday,WARDEN STATION,PUMST,0,0,,BD,0
-2021-11-28,20:40,Sunday,SHEPPARD WEST STATION,MUPAA,4,11,N,YU,5441
-2021-11-28,21:36,Sunday,SHEPPARD WEST STATION,MUPAA,0,0,N,YU,5836
-2021-11-28,22:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-11-28,22:51,Sunday,EGLINTON STATION,MUSC,0,0,N,YU,6086
-2021-11-28,23:31,Sunday,DAVISVILLE STATION,MUIR,4,11,N,YU,5696
-2021-11-28,23:35,Sunday,CHESTER STATION,PUMEL,0,0,,BD,0
-2021-11-28,23:48,Sunday,QUEEN STATION,SUUT,3,10,N,YU,5531
-2021-11-28,23:50,Sunday,LAWRENCE STATION,MUIR,5,12,N,YU,5696
-2021-11-28,01:43,Sunday,FINCH STATION,MUIS,0,0,,YU,0
-2021-11-28,16:50,Sunday,BAYVIEW STATION,MUIRS,0,0,,SHP,0
-2021-11-29,22:00,Monday,KENNEDY SRT STATION TO,MRO,0,0,B,SRT,0
-2021-11-29,02:00,Monday,KIPLING STATION,MUI,0,0,E,BD,5212
-2021-11-29,02:16,Monday,DUFFERIN STATION,SUDP,0,0,E,BD,0
-2021-11-29,02:21,Monday,SHEPPARD WEST STATION,MUIS,0,0,,YU,0
-2021-11-29,04:57,Monday,SHEPPARD STATION,MUIRS,0,0,,YU,0
-2021-11-29,05:10,Monday,GO PROTOCOL,MUO,0,0,,,0
-2021-11-29,05:57,Monday,KIPLING STATION,SUDP,5,10,W,BD,5257
-2021-11-29,06:21,Monday,VAUGHAN MC STATION,MUIRS,0,0,,YU,0
-2021-11-29,06:38,Monday,EGLINTON STATION (APPR,MUATC,3,6,S,YU,5481
-2021-11-29,06:51,Monday,FINCH STATION,MUSC,3,6,S,YU,5696
-2021-11-29,07:02,Monday,ST GEORGE YUS STATION,TUO,6,9,S,YU,5691
-2021-11-29,08:06,Monday,OSSINGTON STATION,TUSC,0,0,W,BD,5281
-2021-11-29,08:41,Monday,LAWRENCE STATION,MUIR,9,12,S,YU,6081
-2021-11-29,08:41,Monday,VICTORIA PARK STATION,PUSIS,4,8,W,BD,5257
-2021-11-29,08:44,Monday,CASTLE FRANK STATION,MUIR,3,7,W,BD,5077
-2021-11-29,08:46,Monday,ST GEORGE YUS STATION,PUOPO,3,6,N,YU,5991
-2021-11-29,08:48,Monday,SPADINA YUS STATION,PUOPO,3,6,N,YU,5991
-2021-11-29,09:27,Monday,EGLINTON STATION,TUATC,9,12,S,YU,5966
-2021-11-29,10:03,Monday,KIPLING STATION,MUTO,3,7,E,BD,5037
-2021-11-29,10:07,Monday,ST GEORGE YUS STATION,PUOPO,3,6,N,YU,5896
-2021-11-29,10:36,Monday,VICTORIA PARK STATION,PUSIS,4,8,W,BD,5208
-2021-11-29,11:16,Monday,VICTORIA PARK STATION,PUSIS,0,0,W,BD,5245
-2021-11-29,11:34,Monday,EGLINTON STATION,MUATC,0,0,S,YU,5486
-2021-11-29,11:47,Monday,SHERBOURNE STATION,MUO,4,8,E,BD,5208
-2021-11-29,12:24,Monday,QUEEN STATION,SUDP,18,21,S,YU,5536
-2021-11-29,12:25,Monday,WELLESLEY STATION,SUO,0,0,,YU,0
-2021-11-29,12:51,Monday,DUNDAS WEST STATION,MUIS,0,0,,BD,0
-2021-11-29,12:56,Monday,UNION STATION,MUIS,0,0,,YU,0
-2021-11-29,13:25,Monday,KENNEDY BD STATION,MUIE,4,8,W,BD,5352
-2021-11-29,14:18,Monday,FINCH STATION,TUNIP,5,8,S,YU,5831
-2021-11-29,14:44,Monday,FINCH STATION,TUNIP,4,7,S,YU,5651
-2021-11-29,15:05,Monday,COXWELL STATION,MUO,4,8,E,BD,5083
-2021-11-29,15:21,Monday,GLENCAIRN STATION,PUOPO,0,0,S,YU,5526
-2021-11-29,15:26,Monday,EGLINTON STATION,TUATC,3,6,S,YU,5596
-2021-11-29,15:32,Monday,FINCH STATION,SUDP,4,7,S,YU,5941
-2021-11-29,15:49,Monday,MUSEUM STATION,TUCC,3,6,S,YU,5871
-2021-11-29,16:35,Monday,WOODBINE STATION,SUAE,14,18,E,BD,5275
-2021-11-29,16:46,Monday,QUEEN STATION,MUIRS,0,0,N,YU,0
-2021-11-29,17:25,Monday,ST GEORGE YUS STATION,MUPAA,0,0,N,YU,6076
-2021-11-29,18:02,Monday,OSSINGTON STATION,SUDP,3,7,W,BD,5257
-2021-11-29,18:35,Monday,OSSINGTON STATION,MUIS,0,0,E,BD,0
-2021-11-29,18:39,Monday,KING STATION,SUDP,0,0,,YU,0
-2021-11-29,19:10,Monday,ST ANDREW STATION,MUIS,0,0,,YU,0
-2021-11-29,19:11,Monday,ISLINGTON STATION,SUO,25,29,W,BD,5247
-2021-11-29,19:17,Monday,KENNEDY BD STATION,MUIR,6,12,W,BD,5208
-2021-11-29,19:51,Monday,DUNDAS WEST STATION,MUPAA,0,0,E,BD,5006
-2021-11-29,19:55,Monday,ROYAL YORK STATION,MUPAA,0,0,W,BD,5093
-2021-11-29,20:07,Monday,ROYAL YORK STATION,SUAP,0,0,,BD,0
-2021-11-29,20:10,Monday,LAWRENCE WEST STATION,PUOPO,0,0,S,YU,5401
-2021-11-29,20:24,Monday,KING STATION,SUAP,0,0,N,YU,0
-2021-11-29,20:25,Monday,COLLEGE STATION,SUDP,3,6,N,YU,5471
-2021-11-29,20:25,Monday,SHEPPARD STATION,SUDP,4,7,N,YU,6111
-2021-11-29,20:38,Monday,KENNEDY BD STATION,MUIR,0,0,W,BD,5109
-2021-11-29,21:01,Monday,DUNDAS WEST STATION,MUIRS,3,10,W,BD,5142
-2021-11-29,21:03,Monday,EGLINTON WEST STATION,PUOPO,0,0,S,YU,5506
-2021-11-29,22:00,Monday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-11-29,22:07,Monday,SHEPPARD WEST STATION,MUO,7,14,S,YU,5911
-2021-11-29,22:09,Monday,VAUGHAN MC STATION,MUPAA,0,0,N,YU,6021
-2021-11-29,22:25,Monday,DOWNSVIEW PARK STATION,PUOPO,4,7,N,YU,6061
-2021-11-29,22:26,Monday,OSSINGTON STATION,SUDP,3,10,W,BD,5205
-2021-11-29,22:29,Monday,GREENWOOD STATION,SUG,7,14,W,BD,5308
-2021-11-29,22:32,Monday,FINCH WEST STATION,PUOPO,5,10,N,YU,6061
-2021-11-29,23:14,Monday,BLOOR STATION,SUDP,0,0,S,YU,0
-2021-11-29,23:16,Monday,SPADINA BD STATION,PUMO,0,0,,BD,0
-2021-11-29,23:21,Monday,SPADINA YUS STATION,PUMO,0,0,S,YU,6131
-2021-11-29,00:00,Monday,DUNDAS WEST STATION,SUDP,0,0,,BD,0
-2021-11-29,00:01,Monday,YORK MILLS STATION,TUMVS,0,0,S,YU,5596
-2021-11-29,01:06,Monday,EGLINTON STATION,MUSC,0,0,N,YU,5671
-2021-11-29,01:07,Monday,FINCH WEST STATION,PUOPO,6,11,N,YU,5861
-2021-11-29,01:18,Monday,YORK UNIVERSITY STATIO,PUOPO,8,13,N,YU,5861
-2021-11-29,01:21,Monday,JANE STATION,MUIRS,0,0,W,BD,0
-2021-11-29,01:25,Monday,FINCH WEST STATION,PUOPO,4,9,S,YU,6111
-2021-11-29,01:32,Monday,YORK UNIVERSITY STATIO,PUOPO,4,9,S,YU,6102
-2021-11-29,05:31,Monday,DON MILLS STATION,MUSC,3,0,W,SHP,6191
-2021-11-29,14:55,Monday,BAYVIEW STATION,MUIR,17,22,E,SHP,6196
-2021-11-29,19:02,Monday,SHEPPARD-YONGE STATION,TUMVS,0,0,W,SHP,6186
-2021-11-30,02:01,Tuesday,DUNDAS STATION,MUIS,0,0,,YU,0
-2021-11-30,06:00,Tuesday,TORONTO TRANSIT COMMIS,MRO,0,0,,SRT,0
-2021-11-30,08:23,Tuesday,KENNEDY SRT STATION,MRTO,7,14,N,SRT,3019
-2021-11-30,03:20,Tuesday,SPADINA YUS STATION,EUOE,0,0,N,YU,0
-2021-11-30,05:43,Tuesday,EGLINTON STATION,MUATC,5,9,N,YU,5976
-2021-11-30,15:30,Tuesday,KENNEDY SRT STATION,SRDP,12,17,N,SRT,3021
-2021-11-30,15:42,Tuesday,KENNEDY SRT STATION,ERPR,18,23,N,SRT,3021
-2021-11-30,06:00,Tuesday,TORONTO TRANSIT COMMIS,MUO,0,0,,YU,0
-2021-11-30,17:12,Tuesday,MCCOWAN YARD,PRSW,0,0,,SRT,0
-2021-11-30,06:36,Tuesday,VAUGHAN MC STATION,PUOPO,0,0,S,YU,5981
-2021-11-30,06:40,Tuesday,FINCH STATION,MUTO,3,6,S,YU,5461
-2021-11-30,22:00,Tuesday,KENNEDY SRT TO LAWREN,MRO,0,0,,SRT,0
-2021-11-30,06:40,Tuesday,HIGHWAY 407 STATION,PUOPO,3,6,S,YU,5981
-2021-11-30,06:59,Tuesday,FINCH STATION,EUBK,3,6,S,YU,5531
-2021-11-30,08:36,Tuesday,KENNEDY BD STATION,MUI,4,8,W,BD,5071
-2021-11-30,08:38,Tuesday,WARDEN STATION,MUIR,11,15,E,BD,5014
-2021-11-30,08:42,Tuesday,WILSON DIVISION - 2ND,MUO,0,0,,YU,0
-2021-11-30,08:42,Tuesday,LAWRENCE WEST STATION,PUOPO,0,0,S,YU,5526
-2021-11-30,09:47,Tuesday,FINCH STATION,EUBK,3,6,S,YU,5531
-2021-11-30,09:58,Tuesday,KIPLING STATION,PUMEL,0,0,,BD,0
-2021-11-30,10:56,Tuesday,SHEPPARD WEST STATION,MUIS,0,0,,YU,0
-2021-11-30,10:57,Tuesday,BLOOR STATION,MUIS,0,0,,YU,0
-2021-11-30,11:20,Tuesday,VMC TO EGLINTON STATIO,MUATC,0,0,,YU,0
-2021-11-30,11:25,Tuesday,BLOOR STATION,MUI,4,7,S,YU,5726
-2021-11-30,11:28,Tuesday,FINCH STATION,EUSC,0,0,N,YU,5976
-2021-11-30,11:41,Tuesday,KING STATION,PUSAC,6,9,S,YU,5116
-2021-11-30,11:44,Tuesday,EGLINTON STATION,PUMEL,0,0,,YU,0
-2021-11-30,11:52,Tuesday,WARDEN STATION,PUSTS,4,8,E,BD,5140
-2021-11-30,11:53,Tuesday,KING STATION,TUATC,0,0,N,YU,5501
-2021-11-30,12:03,Tuesday,KENNEDY BD STATION,SUAE,0,0,,BD,0
-2021-11-30,12:07,Tuesday,DUPONT STATION,EUOPO,10,13,S,YU,5546
-2021-11-30,12:13,Tuesday,DUPONT STATION,PUOPO,5,8,N,YU,5481
-2021-11-30,12:23,Tuesday,EGLINTON STATION,MUSC,3,6,N,YU,6036
-2021-11-30,12:32,Tuesday,SHEPPARD STATION,MUPAA,0,0,N,YU,6036
-2021-11-30,12:36,Tuesday,QUEEN'S PARK STATION,PUMO,0,0,,YU,0
-2021-11-30,13:14,Tuesday,DUNDAS STATION,PUMEL,0,0,N,YU,0
-2021-11-30,14:28,Tuesday,VAUGHAN MC STATION,PUOPO,3,6,S,YU,6041
-2021-11-30,14:28,Tuesday,MAIN STREET STATION,MUIS,0,0,,BD,0
-2021-11-30,14:32,Tuesday,HIGHWAY 407 STATION,PUOPO,3,6,S,YU,6041
-2021-11-30,14:40,Tuesday,ST CLAIR STATION,SUDP,19,22,S,YU,5906
-2021-11-30,15:05,Tuesday,ST CLAIR WEST STATION,SUDP,4,7,S,YU,6106
-2021-11-30,15:21,Tuesday,PAPE STATION,SUDP,0,0,,BD,0
-2021-11-30,15:33,Tuesday,KENNEDY BD STATION,SUO,14,18,W,BD,5286
-2021-11-30,15:38,Tuesday,VAUGHAN MC STATION,SUO,0,0,,YU,0
-2021-11-30,15:40,Tuesday,WILSON STATION,MUSAN,3,6,S,YU,5651
-2021-11-30,15:47,Tuesday,DUNDAS STATION,SUDP,0,0,S,YU,5886
-2021-11-30,16:10,Tuesday,KIPLING STATION,MUTO,4,8,E,BD,5229
-2021-11-30,16:15,Tuesday,JANE STATION,MUPAA,0,0,W,BD,5306
-2021-11-30,16:43,Tuesday,WILSON STATION,MUIRS,0,0,,YU,0
-2021-11-30,16:57,Tuesday,YORKDALE STATION,PUOPO,0,0,S,YU,5881
-2021-11-30,17:08,Tuesday,UNION STATION,MUIS,0,0,,YU,0
-2021-11-30,17:29,Tuesday,PIONEER VILLAGE STATIO,MUIR,5,8,S,YU,6086
-2021-11-30,17:38,Tuesday,NORTH YORK CTR STATION,TUMVS,0,0,N,YU,5466
-2021-11-30,17:46,Tuesday,ROSEDALE STATION,SUDP,4,7,N,YU,5831
-2021-11-30,17:46,Tuesday,ST CLAIR WEST STATION,MUIRS,0,0,,YU,0
-2021-11-30,18:00,Tuesday,DONLANDS STATION,MUIRS,0,0,,BD,0
-2021-11-30,18:46,Tuesday,BATHURST STATION,PUMEL,0,0,,BD,0
-2021-11-30,18:51,Tuesday,DUFFERIN STATION,MUIS,0,0,W,BD,0
-2021-11-30,20:07,Tuesday,DONLANDS STATION,MUIS,0,0,W,BD,0
-2021-11-30,20:09,Tuesday,ST ANDREW STATION,MUIS,0,0,,YU,0
-2021-11-30,20:39,Tuesday,OSGOODE STATION,SUDP,0,0,,YU,0
-2021-11-30,21:03,Tuesday,QUEEN STATION,SUO,0,0,,YU,0
-2021-11-30,21:28,Tuesday,BLOOR STATION,MUPAA,0,0,N,YU,5641
-2021-11-30,22:00,Tuesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-11-30,22:48,Tuesday,HIGHWAY 407 STATION,EUDO,13,18,S,YU,5666
-2021-11-30,23:48,Tuesday,DUNDAS STATION,MUIS,0,0,,YU,0
-2021-11-30,01:20,Tuesday,EGLINTON STATION,MUIS,0,0,,YU,0
-2021-11-30,01:42,Tuesday,YORK MILLS STATION,TUSC,0,0,S,YU,5846
-2021-11-30,01:45,Tuesday,SHEPPARD WEST STATION,MUIS,0,0,S,YU,0
-2021-11-30,06:00,Tuesday,TORONTO TRANSIT COMMIS,MUO,0,0,,SHP,0
-2021-12-01,06:06,Wednesday,MCCOWAN STATION,ERCO,5,10,S,SRT,3022
-2021-12-01,03:40,Wednesday,SHEPPARD STATION,PUTOE,0,0,N,YU,34
-2021-12-01,14:34,Wednesday,KENNEDY SRT STATION,MRTO,14,21,N,SRT,3004
-2021-12-01,03:46,Wednesday,NORTH YORK CTR STATION,PUTOE,0,0,N,YU,34
-2021-12-01,05:43,Wednesday,EGLINTON STATION,MUATC,5,10,N,YU,5691
-2021-12-01,22:00,Wednesday,KENNEDY SRT STATION TO,MRO,0,0,,SRT,0
-2021-12-01,06:50,Wednesday,ST GEORGE YUS STATION,TUO,3,6,N,YU,5696
-2021-12-01,06:54,Wednesday,DOWNSVIEW PARK STATION,MUO,0,0,,YU,0
-2021-12-01,07:09,Wednesday,BROADVIEW STATION,MUTO,4,8,W,BD,5268
-2021-12-01,07:21,Wednesday,BAY STATION,SUDP,0,0,W,BD,5119
-2021-12-01,07:33,Wednesday,JANE STATION,MUPAA,0,0,W,BD,5268
-2021-12-01,07:54,Wednesday,MUSEUM STATION,TUO,6,9,S,YU,5446
-2021-12-01,08:18,Wednesday,EGLINTON STATION (APPR,MUATC,4,7,S,YU,5476
-2021-12-01,08:45,Wednesday,DUFFERIN STATION,MUPAA,0,0,E,BD,5259
-2021-12-01,09:27,Wednesday,FINCH STATION,MUTO,3,6,S,YU,5716
-2021-12-01,10:29,Wednesday,WELLESLEY STATION,MUIS,0,0,,YU,0
-2021-12-01,10:35,Wednesday,MUSEUM STATION,MUATC,0,0,S,YU,5446
-2021-12-01,10:48,Wednesday,GREENWOOD SHOP,MUIE,0,0,,BD,0
-2021-12-01,11:00,Wednesday,EGLINTON STATION,MUATC,3,6,S,YU,5461
-2021-12-01,11:10,Wednesday,BLOOR STATION,MUIS,0,0,N,YU,0
-2021-12-01,11:55,Wednesday,KENNEDY BD STATION,MUPAA,0,0,W,BD,5268
-2021-12-01,12:19,Wednesday,EGLINTON STATION,MUIS,0,0,,YU,0
-2021-12-01,12:31,Wednesday,EGLINTON STATION,MUIS,0,0,,YU,0
-2021-12-01,12:45,Wednesday,COLLEGE STATION,SUDP,3,6,N,YU,5386
-2021-12-01,13:25,Wednesday,KENNEDY BD STATION,MUTO,4,8,W,BD,5197
-2021-12-01,13:37,Wednesday,YONGE BD STATION,SUDP,0,0,W,BD,5197
-2021-12-01,14:17,Wednesday,FINCH STATION,SUEAS,10,13,N,YU,6101
-2021-12-01,14:30,Wednesday,VAUGHAN MC STATION,SUDP,0,0,,YU,0
-2021-12-01,15:00,Wednesday,HIGH PARK STATION,SUDP,18,22,E,BD,5076
-2021-12-01,15:40,Wednesday,YORK MILLS STATION,PUMEL,0,0,,YU,0
-2021-12-01,15:48,Wednesday,QUEEN STATION,MUIS,0,0,S,YU,0
-2021-12-01,16:17,Wednesday,KENNEDY BD STATION,SUO,4,8,W,BD,5371
-2021-12-01,16:31,Wednesday,SHEPPARD STATION,MUSC,0,0,N,YU,5486
-2021-12-01,16:32,Wednesday,FINCH STATION,MUIR,3,6,S,YU,5646
-2021-12-01,16:54,Wednesday,DUFFERIN STATION,SUUT,4,8,W,BD,5059
-2021-12-01,17:03,Wednesday,LAWRENCE WEST STATION,SUUT,15,18,N,YU,5961
-2021-12-01,17:04,Wednesday,KIPLING STATION,SUDP,4,8,E,BD,5079
-2021-12-01,17:14,Wednesday,CASTLE FRANK STATION,SUDP,6,10,E,BD,5014
-2021-12-01,17:21,Wednesday,BROADVIEW STATION,SUDP,6,10,E,BD,5014
-2021-12-01,17:26,Wednesday,ST GEORGE BD STATION,TUO,4,8,E,BD,5231
-2021-12-01,20:15,Wednesday,EGLINTON STATION,MUATC,3,6,S,YU,5726
-2021-12-01,20:53,Wednesday,KENNEDY BD STATION,SUUT,13,20,E,BD,5059
-2021-12-01,21:11,Wednesday,ST GEORGE YUS STATION,SUDP,0,0,N,YU,6016
-2021-12-01,21:19,Wednesday,YORKDALE STATION,TUO,11,16,S,YU,5446
-2021-12-01,21:42,Wednesday,MUSEUM STATION,TUO,0,0,S,YU,5446
-2021-12-01,21:48,Wednesday,VICTORIA PARK STATION,MUI,25,32,E,BD,5252
-2021-12-01,22:00,Wednesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-12-01,22:00,Wednesday,OLD MILL STATION,MUIRS,5,12,E,BD,5259
-2021-12-01,22:07,Wednesday,SUMMERHILL STATION,MUATC,3,8,N,YU,5486
-2021-12-01,22:07,Wednesday,VAUGHAN MC STATION,PUOPO,0,0,S,YU,6096
-2021-12-01,22:08,Wednesday,HIGHWAY 407 STATION,PUOPO,5,10,S,YU,6096
-2021-12-01,22:49,Wednesday,COLLEGE STATION,SUDP,12,17,N,YU,5711
-2021-12-01,23:40,Wednesday,KENNEDY BD STATION,MUIS,0,0,E,BD,0
-2021-12-01,00:10,Wednesday,EGLINTON WEST STATION,TUO,4,9,S,YU,5466
-2021-12-01,00:14,Wednesday,LAWRENCE WEST STATION,PUOPO,0,0,S,YU,5486
-2021-12-01,00:22,Wednesday,YORKDALE STATION,MUSAN,5,10,S,YU,5691
-2021-12-01,00:31,Wednesday,DONLANDS STATION,SUDP,8,15,W,BD,5059
-2021-12-01,00:34,Wednesday,YONGE AND BLOOR,MUIS,0,0,N,YU,0
-2021-12-01,01:20,Wednesday,ST PATRICK STATION,MUIS,0,0,,YU,0
-2021-12-01,01:31,Wednesday,FINCH STATION,MUSC,0,0,S,YU,5696
-2021-12-01,01:55,Wednesday,OSGOODE STATION,MUIS,0,0,,YU,0
-2021-12-01,19:24,Wednesday,LESLIE STATION,TUSC,0,0,W,SHP,6171
-2021-12-01,19:45,Wednesday,DON MILLS STATION,PUSO,6,11,E,SHP,6181
-2021-12-01,00:11,Wednesday,SHEPPARD STATION,MUIS,0,0,,SHP,0
-2021-12-02,17:43,Thursday,SCARBOROUGH CTR STATIO,SRDP,0,0,N,SRT,3019
-2021-12-02,02:26,Thursday,VAUGHAN MC STATION,MUIS,0,0,,YU,0
-2021-12-02,02:40,Thursday,FINCH STATION,MUIS,0,0,,YU,0
-2021-12-02,19:18,Thursday,KENNEDY SRT STATION,MRTO,15,20,N,SRT,3027
-2021-12-02,05:41,Thursday,EGLINTON STATION,MUATC,3,0,N,YU,5486
-2021-12-02,22:00,Thursday,KENNEDY SRT TO LAWREN,MRO,0,0,,SRT,0
-2021-12-02,05:42,Thursday,YORK MILLS STATION,MUATC,3,0,N,YU,5891
-2021-12-02,06:22,Thursday,OSSINGTON STATION,EUNT,3,8,E,BD,5275
-2021-12-02,06:50,Thursday,DUPONT STATION,PUOPO,7,10,S,YU,5981
-2021-12-02,06:59,Thursday,SPADINA YUS STATION,PUOPO,3,13,S,YU,5981
-2021-12-02,09:14,Thursday,YORK MILLS STATION,EUSC,0,0,N,YU,5506
-2021-12-02,09:38,Thursday,DUFFERIN STATION,TUOS,4,8,W,BD,5211
-2021-12-02,09:44,Thursday,LANSDOWNE STATION,TUO,3,7,W,BD,0
-2021-12-02,09:45,Thursday,SHEPPARD WEST STATION,PUOPO,3,6,S,YU,5741
-2021-12-02,09:48,Thursday,NORTH YORK CTR STATION,SUDP,3,6,S,YU,5606
-2021-12-02,09:51,Thursday,WILSON STATION,PUOPO,3,6,S,YU,5741
-2021-12-02,10:53,Thursday,YORKDALE STATION,PUOPO,0,0,N,YU,5511
-2021-12-02,11:07,Thursday,ISLINGTON STATION,PUSRA,116,120,W,BD,5197
-2021-12-02,11:46,Thursday,KEELE STATION,TUKEY,3,7,E,BD,5079
-2021-12-02,11:48,Thursday,SPADINA BD STATION,SUDP,3,7,W,BD,5016
-2021-12-02,11:51,Thursday,ST GEORGE BD STATION,MUPAA,0,0,W,BD,5083
-2021-12-02,13:01,Thursday,WARDEN STATION,SUDP,4,8,E,BD,5040
-2021-12-02,13:08,Thursday,ISLINGTON STATION,MUIS,0,0,W,BD,0
-2021-12-02,13:27,Thursday,WILSON STATION,MUIS,0,0,,YU,0
-2021-12-02,13:35,Thursday,COLLEGE STATION,SUAP,0,0,,YU,0
-2021-12-02,14:08,Thursday,ISLINGTON STATION,SUUT,9,13,W,BD,5059
-2021-12-02,14:09,Thursday,ST CLAIR STATION,MUATC,9,12,N,YU,6056
-2021-12-02,15:18,Thursday,SHERBOURNE STATION,SUDP,0,0,W,BD,5024
-2021-12-02,15:23,Thursday,BATHURST STATION,SUDP,3,7,E,BD,5162
-2021-12-02,15:25,Thursday,SPADINA BD STATION,SUDP,5,9,E,BD,5162
-2021-12-02,15:34,Thursday,ST CLAIR STATION,MUATC,6,9,N,YU,6026
-2021-12-02,16:38,Thursday,ROSEDALE STATION,MUATC,3,6,S,YU,5491
-2021-12-02,17:44,Thursday,SHEPPARD STATION,SUAP,6,9,N,YU,5881
-2021-12-02,18:10,Thursday,FINCH STATION,SUDP,3,6,S,YU,5461
-2021-12-02,18:43,Thursday,WELLESLEY STATION,SUAP,0,0,N,YU,0
-2021-12-02,18:44,Thursday,YONGE BD STATION,MUIRS,0,0,,BD,0
-2021-12-02,18:44,Thursday,YORK MILLS STATION,MUPAA,3,6,N,YU,5396
-2021-12-02,19:02,Thursday,ST CLAIR STATION,SUDP,30,33,S,YU,6011
-2021-12-02,19:18,Thursday,NORTH YORK CTR STATION,TUMVS,3,6,S,YU,6046
-2021-12-02,19:25,Thursday,ST GEORGE YUS STATION,MUIS,0,0,N,YU,6111
-2021-12-02,19:41,Thursday,EGLINTON STATION,MUIR,4,7,N,YU,5486
-2021-12-02,19:52,Thursday,ISLINGTON STATION,MUIS,0,0,,BD,0
-2021-12-02,20:03,Thursday,YORKDALE STATION,PUOPO,0,0,N,YU,5526
-2021-12-02,21:01,Thursday,ROYAL YORK STATION,MUIS,0,0,E,BD,5229
-2021-12-02,21:10,Thursday,DUNDAS STATION,SUDP,0,0,S,YU,5886
-2021-12-02,21:33,Thursday,YORKDALE STATION,MUO,0,0,N,YU,5851
-2021-12-02,21:43,Thursday,BROADVIEW STATION,MUIS,0,0,,BD,0
-2021-12-02,21:44,Thursday,OSGOODE STATION,MUIS,0,0,,YU,0
-2021-12-02,22:00,Thursday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-12-02,22:43,Thursday,JANE STATION,MUPAA,0,0,W,BD,5059
-2021-12-02,23:14,Thursday,EGLINTON STATION,MUATC,7,12,S,YU,5616
-2021-12-02,01:03,Thursday,DUNDAS STATION,SUUT,4,9,N,YU,5486
-2021-12-02,01:36,Thursday,WARDEN STATION,MUIS,0,0,,BD,0
-2021-12-03,15:42,Friday,KENNEDY SRT STATION,MRTO,40,45,N,SRT,3005
-2021-12-03,02:43,Friday,PIONEER VILLAGE STATIO,MUIS,0,0,,YU,0
-2021-12-03,06:08,Friday,DAVISVILLE YARD,MUATC,3,6,N,YU,5396
-2021-12-03,22:00,Friday,LAWRENCE EAST TO KENNE,MRO,0,0,,SRT,0
-2021-12-03,06:46,Friday,DAVISVILLE STATION,MUIR,4,6,N,YU,5586
-2021-12-03,07:08,Friday,LAWRENCE WEST STATION,PUOPO,0,0,S,YU,5981
-2021-12-03,07:31,Friday,COXWELL STATION,SUDP,4,8,W,BD,5140
-2021-12-03,07:51,Friday,EGLINTON STATION,EUSC,0,0,N,YU,6981
-2021-12-03,08:15,Friday,EGLINTON STATION,MUATC,7,10,S,YU,5451
-2021-12-03,08:57,Friday,SPADINA YUS STATION,MUPAA,0,0,S,YU,5651
-2021-12-03,09:53,Friday,LAWRENCE WEST STATION,PUOPO,0,0,S,YU,5981
-2021-12-03,09:56,Friday,GLENCAIRN STATION,PUOPO,3,6,S,YU,5981
-2021-12-03,10:17,Friday,JANE STATION,MUI,7,11,E,BD,5276
-2021-12-03,11:04,Friday,ST GEORGE YUS STATION,PUOPO,0,0,N,YU,5606
-2021-12-03,11:21,Friday,FINCH STATION,MUTO,3,6,S,YU,5626
-2021-12-03,11:34,Friday,EGLINTON STATION (MIGR,MUATC,8,11,S,YU,5406
-2021-12-03,12:26,Friday,EGLINTON STATION,TUMVS,3,6,S,YU,6076
-2021-12-03,12:45,Friday,VICTORIA PARK STATION,MUIRS,0,0,,BD,0
-2021-12-03,12:46,Friday,UNION STATION,MUIRS,0,0,,YU,0
-2021-12-03,12:57,Friday,PAPE STATION,MUIS,0,0,E,BD,0
-2021-12-03,13:10,Friday,WELLESLEY STATION,SUDP,0,0,N,YU,0
-2021-12-03,13:12,Friday,VAUGHAN MC STATION,MUIR,3,6,S,YU,6116
-2021-12-03,13:15,Friday,DAVISVILLE STATION,SUDP,10,13,S,YU,6121
-2021-12-03,13:16,Friday,RUNNYMEDE STATION,PUMEL,0,0,,BD,0
-2021-12-03,13:55,Friday,ROSEDALE STATION,SUDP,6,9,N,YU,5496
-2021-12-03,15:30,Friday,CHRISTIE STATION,MUIS,0,0,E,BD,0
-2021-12-03,16:09,Friday,ISLINGTON STATION,MUIS,0,0,,BD,0
-2021-12-03,16:18,Friday,VICTORIA PARK STATION,SUAP,0,0,,BD,0
-2021-12-03,16:25,Friday,JANE STATION,PUMST,0,0,,BD,0
-2021-12-03,16:29,Friday,CHRISTIE STATION,SUDP,0,0,E,BD,5234
-2021-12-03,17:00,Friday,KEELE STATION,SUDP,0,0,W,BD,5104
-2021-12-03,17:15,Friday,ST CLAIR WEST STATION,MUPAA,0,0,S,YU,5546
-2021-12-03,17:47,Friday,DUFFERIN STATION,MUPAA,0,0,W,BD,5213
-2021-12-03,17:47,Friday,BLOOR STATION,PUMEL,0,0,,YU,0
-2021-12-03,18:25,Friday,SHERBOURNE STATION,SUDP,0,0,E,BD,5131
-2021-12-03,18:27,Friday,DUNDAS STATION,SUUT,6,9,S,YU,6111
-2021-12-03,18:41,Friday,UNION STATION,PUSAC,8,11,S,YU,6011
-2021-12-03,18:53,Friday,WELLESLEY STATION,MUPAA,3,6,S,YU,5761
-2021-12-03,18:56,Friday,KIPLING STATION,MUIRS,0,0,,BD,0
-2021-12-03,19:01,Friday,WELLESLEY STATION,SUDP,0,0,S,YU,5761
-2021-12-03,19:10,Friday,ST GEORGE YUS STATION,MUPAA,0,0,N,YU,5426
-2021-12-03,19:12,Friday,COLLEGE STATION,SUDP,0,0,S,YU,5761
-2021-12-03,19:45,Friday,FINCH WEST STATION,PUOPO,0,0,N,YU,5656
-2021-12-03,19:54,Friday,PAPE STATION,SUUT,0,0,E,BD,5211
-2021-12-03,19:54,Friday,QUEEN'S PARK STATION,SUDP,0,0,S,YU,5951
-2021-12-03,19:54,Friday,WILSON STATION,MUIS,0,0,,YU,0
-2021-12-03,20:44,Friday,ST CLAIR WEST STATION,MUIRS,0,0,S,YU,5766
-2021-12-03,21:02,Friday,UNION STATION,PUSAC,0,0,S,YU,0
-2021-12-03,21:09,Friday,EGLINTON STATION (MIGR,MUATC,3,6,S,YU,6111
-2021-12-03,21:14,Friday,DAVISVILLE STATION,MUIR,5,10,N,YU,5762
-2021-12-03,21:36,Friday,OSSINGTON STATION,MUIR,6,13,W,BD,5171
-2021-12-03,22:00,Friday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-12-03,22:16,Friday,PAPE STATION,MUO,0,0,E,BD,5318
-2021-12-03,22:51,Friday,VICTORIA PARK STATION,MUIS,0,0,,BD,0
-2021-12-03,01:13,Friday,KENNEDY BD STATION,SUO,0,0,,BD,0
-2021-12-03,01:16,Friday,JANE STATION,SUO,0,0,,BD,0
-2021-12-03,01:39,Friday,VAUGHAN MC STATION,MUIRS,0,0,,YU,0
-2021-12-03,01:52,Friday,HIGH PARK STATION,MUIRS,0,0,W,BD,0
-2021-12-03,01:56,Friday,FINCH STATION,MUIRS,0,0,,YU,0
-2021-12-03,01:59,Friday,SHERBOURNE STATION,SUDP,0,0,,BD,0
-2021-12-03,15:34,Friday,LESLIE STATION,PUOPO,0,0,W,SHP,6161
-2021-12-03,15:41,Friday,LESLIE STATION,PUOPO,7,12,E,SHP,6181
-2021-12-03,15:49,Friday,LESLIE STATION,PUOPO,0,0,E,SHP,6151
-2021-12-03,16:38,Friday,LESLIE STATION,TUSC,0,0,W,SHP,6156
-2021-12-04,02:11,Saturday,FINCH STATION,SUDP,0,0,,YU,0
-2021-12-04,10:39,Saturday,KENNEDY SRT STATION,MRTO,7,12,N,SRT,3027
-2021-12-04,22:00,Saturday,KENNEDY SRT STATION TO,MRO,0,0,,SRT,0
-2021-12-04,02:39,Saturday,KIPLING STATION,SUDP,0,0,,BD,0
-2021-12-04,04:35,Saturday,BATHURST STATION,MUNCA,0,0,,BD,0
-2021-12-04,06:13,Saturday,BLOOR STATION,SUDP,0,0,,YU,0
-2021-12-04,06:28,Saturday,ST ANDREW STATION,MUATC,7,13,N,YU,5751
-2021-12-04,06:45,Saturday,HIGH PARK STATION,PUTDN,4,10,E,BD,5359
-2021-12-04,06:51,Saturday,HIGH PARK STATION,SUUT,5,11,E,BD,5122
-2021-12-04,07:06,Saturday,JANE STATION,PUMO,0,0,,BD,0
-2021-12-04,07:26,Saturday,RUNNYMEDE STATION,PUTDN,7,12,W,BD,5013
-2021-12-04,08:03,Saturday,EGLINTON STATION,MUSC,0,0,N,YU,5636
-2021-12-04,08:45,Saturday,ST CLAIR WEST STATION,MUNCA,0,0,,YU,0
-2021-12-04,10:00,Saturday,LAWRENCE STATION,EUDO,3,9,S,YU,5946
-2021-12-04,10:54,Saturday,SHERBOURNE STATION,MUPAA,0,0,W,BD,5013
-2021-12-04,11:12,Saturday,VICTORIA PARK STATION,SUDP,4,9,E,BD,5304
-2021-12-04,11:20,Saturday,EGLINTON STATION,PUMEL,0,0,,YU,0
-2021-12-04,11:34,Saturday,YORKDALE STATION,PUOPO,0,0,S,YU,5901
-2021-12-04,12:18,Saturday,VAUGHAN MC STATION,MUIRS,0,0,,YU,0
-2021-12-04,12:34,Saturday,CASTLE FRANK STATION,SUDP,9,13,W,BD,5256
-2021-12-04,13:06,Saturday,ST CLAIR WEST STATION,SUDP,9,13,N,YU,5931
-2021-12-04,13:12,Saturday,KIPLING STATION,TUO,3,6,E,BD,5193
-2021-12-04,13:41,Saturday,ROSEDALE STATION,MUTO,3,7,N,YU,5991
-2021-12-04,13:57,Saturday,ST GEORGE YUS STATION,MUIRS,0,0,,YU,0
-2021-12-04,14:51,Saturday,WARDEN STATION,MUIE,0,0,,BD,0
-2021-12-04,14:59,Saturday,JANE STATION,MUPAA,0,0,W,BD,5083
-2021-12-04,16:50,Saturday,ST CLAIR STATION,SUDP,0,0,S,YU,5631
-2021-12-04,16:51,Saturday,WELLESLEY STATION,MUIR,15,19,N,YU,5896
-2021-12-04,17:38,Saturday,WOODBINE STATION,SUDP,0,0,W,BD,5100
-2021-12-04,17:54,Saturday,MAIN STREET STATION,PUMST,0,0,W,BD,0
-2021-12-04,18:07,Saturday,ST GEORGE YUS STATION,MUIS,0,0,,YU,0
-2021-12-04,18:24,Saturday,KIPLING STATION,MUIRS,0,0,,BD,0
-2021-12-04,18:59,Saturday,WARDEN STATION,MUDD,3,6,E,BD,5077
-2021-12-04,19:05,Saturday,UNION STATION,MUIS,0,0,,YU,0
-2021-12-04,19:14,Saturday,HIGHWAY 407 STATION,MUATC,3,8,S,YU,5486
-2021-12-04,19:35,Saturday,DOWNSVIEW PARK STATION,SUROB,0,0,,YU,0
-2021-12-04,19:57,Saturday,UNION STATION,SUO,0,0,,YU,0
-2021-12-04,20:45,Saturday,ST GEORGE YUS STATION,MUTO,3,8,S,YU,5506
-2021-12-04,20:48,Saturday,KENNEDY BD STATION,SUO,0,0,E,BD,5093
-2021-12-04,21:26,Saturday,KIPLING STATION,MUIRS,0,0,,BD,0
-2021-12-04,21:48,Saturday,EGLINTON STATION,MUIS,0,0,N,YU,0
-2021-12-04,21:54,Saturday,HIGHWAY 407 STATION,PUOPO,0,0,S,YU,5991
-2021-12-04,21:55,Saturday,RUNNYMEDE STATION,MUPAA,0,0,E,BD,5322
-2021-12-04,21:58,Saturday,YORKDALE STATION,PUOPO,0,0,N,YU,6086
-2021-12-04,22:00,Saturday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-12-04,22:07,Saturday,VAUGHAN MC STATION,MUSAN,7,14,S,YU,5651
-2021-12-04,22:43,Saturday,BAY STATION,SUUT,17,24,E,BD,5209
-2021-12-04,23:21,Saturday,DUNDAS STATION,SUUT,26,33,N,YU,6081
-2021-12-04,23:59,Saturday,ST CLAIR STATION,MUATC,7,14,N,YU,5991
-2021-12-04,00:04,Saturday,QUEEN STATION,MUIS,0,0,,YU,0
-2021-12-04,00:09,Saturday,DONLANDS STATION,MUPAA,3,10,E,BD,5181
-2021-12-04,00:41,Saturday,LAWRENCE STATION,MUSAN,7,14,S,YU,5996
-2021-12-04,01:07,Saturday,FINCH STATION,MUTO,4,11,S,YU,6091
-2021-12-04,01:11,Saturday,MAIN STREET STATION,SUDP,16,23,W,BD,5083
-2021-12-04,01:14,Saturday,OSGOODE STATION,MUIS,0,0,,YU,0
-2021-12-04,01:35,Saturday,FINCH STATION,SUDP,0,0,S,YU,6026
-2021-12-04,01:48,Saturday,FINCH STATION,MUIS,0,0,,YU,0
-2021-12-04,01:55,Saturday,KIPLING STATION,MUIS,0,0,E,BD,0
-2021-12-04,12:22,Saturday,LESLIE STATION,TUSC,0,0,W,SHP,6161
-2021-12-04,21:31,Saturday,SHEPPARD-YONGE STATION,TUSC,0,0,W,SHP,6161
-2021-12-05,10:54,Sunday,MCCOWAN STATION,MRO,4,10,S,SRT,3002
-2021-12-05,10:34,Sunday,YORKDALE STATION,PUOPO,0,0,N,YU,5701
-2021-12-05,11:27,Sunday,EGLINTON STATION,TUATC,3,8,N,YU,5017
-2021-12-05,15:31,Sunday,LAWRENCE EAST STATION,MRO,0,0,,SRT,0
-2021-12-05,17:26,Sunday,KENNEDY SRT STATION,SRDP,17,23,N,SRT,3002
-2021-12-05,12:28,Sunday,KIPLING STATION,MUIRS,0,0,,BD,0
-2021-12-05,12:38,Sunday,ISLINGTON STATION,TUSC,0,0,E,BD,5268
-2021-12-05,22:00,Sunday,KENNEDY SRT TO LAWREN,MRO,0,0,B,SRT,0
-2021-12-05,12:54,Sunday,QUEEN'S PARK STATION,MUSAN,5,10,S,YU,6081
-2021-12-05,13:13,Sunday,LAWRENCE WEST STATION,SUDP,3,8,N,YU,5701
-2021-12-05,13:46,Sunday,ST CLAIR WEST STATION,MUIS,0,0,,YU,0
-2021-12-05,14:28,Sunday,FINCH STATION,SUDP,3,8,S,YU,5481
-2021-12-05,14:41,Sunday,VICTORIA PARK STATION,SUDP,26,31,W,BD,5083
-2021-12-05,15:31,Sunday,HIGHWAY 407 STATION,PUOPO,5,10,S,YU,5396
-2021-12-05,16:05,Sunday,DUNDAS STATION,SUAP,0,0,,YU,0
-2021-12-05,17:11,Sunday,EGLINTON WEST STATION,PUOPO,9,14,S,YU,5876
-2021-12-05,17:11,Sunday,QUEEN STATION,MUNCA,0,0,,YU,0
-2021-12-05,17:28,Sunday,KENNEDY BD STATION,SUDP,14,19,E,BD,5029
-2021-12-05,17:39,Sunday,GREENWOOD STATION,SUDP,24,29,E,BD,5181
-2021-12-05,17:49,Sunday,WILSON HOSTLER,EUYRD,5,10,N,YU,5561
-2021-12-05,18:02,Sunday,EGLINTON STATION,SUDP,5,10,N,YU,5506
-2021-12-05,18:06,Sunday,BATHURST STATION,MUNCA,0,0,,BD,0
-2021-12-05,18:43,Sunday,ROSEDALE STATION,MUATC,8,13,S,YU,5501
-2021-12-05,19:07,Sunday,FINCH WEST STATION,PUMEL,0,0,,YU,0
-2021-12-05,19:42,Sunday,VAUGHAN MC STATION,MUATC,7,14,S,YU,5501
-2021-12-05,19:47,Sunday,OSSINGTON STATION,MUD,3,10,W,BD,5016
-2021-12-05,20:21,Sunday,COXWELL STATION,TUO,8,15,W,BD,5306
-2021-12-05,20:22,Sunday,EGLINTON STATION,MUIS,0,0,,YU,0
-2021-12-05,20:26,Sunday,LAWRENCE WEST STATION,PUOPO,5,12,N,YU,5561
-2021-12-05,20:31,Sunday,WARDEN STATION,SUDP,6,13,W,BD,5083
-2021-12-05,20:55,Sunday,LAWRENCE WEST STATION,PUOPO,4,11,N,YU,5631
-2021-12-05,21:05,Sunday,WILSON STATION,PUOPO,7,14,N,YU,5631
-2021-12-05,21:21,Sunday,EGLINTON STATION,MUSAN,7,14,S,YU,5641
-2021-12-05,21:35,Sunday,ST GEORGE BD STATION,MUIS,0,0,,BD,0
-2021-12-05,21:53,Sunday,ST GEORGE YUS STATION,SUDP,3,10,S,YU,5731
-2021-12-05,22:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-12-05,22:07,Sunday,OSGOODE STATION,MUSAN,7,14,S,YU,6106
-2021-12-05,22:34,Sunday,OSSINGTON STATION,PUMEL,0,0,E,BD,0
-2021-12-05,22:41,Sunday,ST CLAIR WEST STATION,PUOPO,0,0,S,YU,5836
-2021-12-05,22:46,Sunday,SPADINA YUS STATION,MUPAA,3,10,S,YU,5386
-2021-12-05,23:11,Sunday,ST GEORGE YUS STATION,MUO,15,22,S,YU,5661
-2021-12-05,23:24,Sunday,SPADINA YUS STATION,PUOPO,12,19,N,YU,5981
-2021-12-05,00:15,Sunday,EGLINTON STATION,MUPAA,0,0,N,YU,5446
-2021-12-05,00:20,Sunday,LAWRENCE WEST STATION,PUOPO,0,0,S,YU,5516
-2021-12-05,01:04,Sunday,WILSON STATION,SUUT,0,0,S,YU,5931
-2021-12-05,01:22,Sunday,DAVISVILLE STATION,EUVE,6,13,N,YU,5661
-2021-12-05,01:30,Sunday,VAUGHAN MC STATION,MUIS,0,0,S,YU,5481
-2021-12-05,01:45,Sunday,KIPLING STATION,SUDP,0,0,E,BD,5163
-2021-12-05,01:54,Sunday,BAY STATION,MUIS,0,0,,BD,0
-2021-12-06,14:25,Monday,MCCOWAN STATION,PRSO,7,14,N,SRT,3025
-2021-12-06,05:52,Monday,WARDEN STATION,MUPLB,51,55,W,BD,5016
-2021-12-06,07:22,Monday,EGLINTON STATION (MIGR,MUATC,9,12,S,YU,5761
-2021-12-06,16:40,Monday,MCCOWAN STATION,ERTR,5,10,N,SRT,3025
-2021-12-06,07:50,Monday,FINCH STATION,SUAP,0,0,,YUS,0
-2021-12-06,16:45,Monday,KENNEDY SRT STATION,MRTO,44,49,S,SRT,3016
-2021-12-06,08:07,Monday,LANSDOWNE STATION,MUD,3,7,E,BD,5231
-2021-12-06,18:45,Monday,MCCOWAN STATION,TRO,20,25,S,SRT,3013
-2021-12-06,08:27,Monday,GLENCAIRN STATION,PUOPO,0,0,S,YU,5716
-2021-12-06,21:50,Monday,MCCOWAN STATION,TRO,5,11,,SRT,3012
-2021-12-06,22:00,Monday,KENNEDY SRT TO LAWREN,MRO,0,0,,SRT,0
-2021-12-06,09:00,Monday,RUNNYMEDE STATION,MUPAA,0,0,W,BD,5016
-2021-12-06,09:09,Monday,JANE STATION,MUPAA,0,0,W,BD,5023
-2021-12-06,22:04,Monday,KENNEDY SRT STATION,TRO,5,11,S,SRT,3012
-2021-12-06,22:28,Monday,KENNEDY SRT STATION,ERRA,6,13,N,SRT,3019
-2021-12-06,10:24,Monday,LAWRENCE STATION,MUSC,0,0,S,YU,5466
-2021-12-06,10:48,Monday,BATHURST STATION,MUIS,0,0,,BD,0
-2021-12-06,10:54,Monday,YONGE BD STATION,SUAP,0,0,,BD,0
-2021-12-06,11:12,Monday,WARDEN STATION,PUMST,0,0,,BD,0
-2021-12-06,13:16,Monday,WELLESLEY STATION,SUDP,5,8,S,YU,5586
-2021-12-06,13:34,Monday,FINCH STATION,MUSC,0,0,S,YU,5521
-2021-12-06,14:01,Monday,OLD MILL STATION,MUIS,0,0,,BD,0
-2021-12-06,14:06,Monday,WARDEN STATION,TUO,4,8,W,BD,5362
-2021-12-06,14:14,Monday,MAIN STREET STATION,MUO,4,8,W,BD,5366
-2021-12-06,14:22,Monday,ISLINGTON STATION,MUO,32,36,W,BD,5205
-2021-12-06,14:23,Monday,ST CLAIR STATION,MUATC,3,6,N,YU,6131
-2021-12-06,14:40,Monday,DUFFERIN STATION,MUPAA,0,0,W,BD,5052
-2021-12-06,15:01,Monday,LAWRENCE STATION,SUDP,4,7,N,YU,5561
-2021-12-06,15:39,Monday,YORKDALE STATION,PUOPO,0,0,N,YU,5616
-2021-12-06,16:16,Monday,ST CLAIR WEST STATION,SUDP,7,10,S,YU,5446
-2021-12-06,16:57,Monday,MUSEUM STATION,SUDP,0,0,S,YU,5711
-2021-12-06,17:15,Monday,QUEEN'S PARK STATION,MUIR,21,24,N,YU,5536
-2021-12-06,17:20,Monday,KIPLING STATION,MUIR,4,8,E,BD,5251
-2021-12-06,17:25,Monday,ST GEORGE YUS STATION,PUSAC,7,10,S,YU,5766
-2021-12-06,17:38,Monday,ROSEDALE STATION,TUATC,3,6,S,YU,5901
-2021-12-06,17:39,Monday,DAVISVILLE STATION,MUIRS,0,0,N,YU,5946
-2021-12-06,17:53,Monday,DUNDAS STATION,SUDP,0,0,S,YU,6031
-2021-12-06,17:56,Monday,ST GEORGE YUS STATION,MUSAN,4,7,N,YU,5441
-2021-12-06,18:23,Monday,KEELE STATION,SUROB,0,0,,BD,0
-2021-12-06,18:33,Monday,ROYAL YORK STATION,SUDP,4,8,E,BD,5259
-2021-12-06,18:38,Monday,DAVISVILLE STATION,TUATC,9,12,S,YU,5586
-2021-12-06,18:46,Monday,DAVISVILLE STATION,MUATC,10,13,S,YU,5696
-2021-12-06,18:49,Monday,COLLEGE STATION,MUATC,0,0,N,YU,5426
-2021-12-06,18:54,Monday,ST PATRICK STATION,SUUT,11,14,N,YU,5761
-2021-12-06,19:05,Monday,ST PATRICK STATION,EUTRD,7,10,S,YU,6081
-2021-12-06,19:38,Monday,ROYAL YORK STATION,SUDP,0,0,E,BD,0
-2021-12-06,19:42,Monday,ST CLAIR STATION,MUATC,6,9,N,YU,6016
-2021-12-06,19:47,Monday,ST GEORGE YUS STATION,MUTO,5,8,S,YU,6051
-2021-12-06,19:56,Monday,ROSEDALE STATION,MUATC,12,15,S,YU,5591
-2021-12-06,20:16,Monday,VICTORIA PARK STATION,MUIR,22,29,E,BD,5236
-2021-12-06,21:12,Monday,FINCH STATION,MUIS,0,0,,YU,0
-2021-12-06,21:18,Monday,KIPLING STATION,SUDP,3,10,E,BD,5052
-2021-12-06,21:22,Monday,HIGH PARK STATION,TUO,0,0,W,BD,5752
-2021-12-06,22:00,Monday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU/BD,0
-2021-12-06,22:46,Monday,KENNEDY BD STATION,MUI,0,0,W,BD,5181
-2021-12-06,23:21,Monday,MAIN STREET STATION,MUIS,0,0,,BD,0
-2021-12-06,23:26,Monday,ISLINGTON STATION,SUDP,0,0,E,BD,5236
-2021-12-06,23:46,Monday,VICTORIA PARK STATION,SUDP,3,10,W,BD,5026
-2021-12-06,23:50,Monday,FINCH STATION,TUSC,0,0,S,YU,5601
-2021-12-06,08:43,Monday,SHEPPARD-YONGE STATION,TUSC,0,0,E,SHP,6151
-2021-12-07,22:00,Tuesday,KENNEDY SRT STATION TO,MRO,0,0,,SRT,0
-2021-12-07,02:12,Tuesday,MAIN STREET STATION,SUUT,0,0,W,BD,0
-2021-12-07,05:40,Tuesday,KIPLING STATION,PUTSM,0,0,,BD,0
-2021-12-07,05:55,Tuesday,CHRISTIE STATION,PUTWZ,7,0,W,BD,5300
-2021-12-07,06:12,Tuesday,DONLANDS STATION,PUTWZ,7,0,E,BD,5369
-2021-12-07,06:53,Tuesday,FINCH STATION,MUSC,0,0,S,YU,5696
-2021-12-07,07:26,Tuesday,BROADVIEW STATION,MUIS,0,0,W,BD,0
-2021-12-07,07:26,Tuesday,ST CLAIR WEST STATION,PUOPO,0,0,S,YU,5526
-2021-12-07,07:51,Tuesday,RUNNYMEDE STATION,MUD,4,8,E,BD,5213
-2021-12-07,08:50,Tuesday,DUNDAS WEST STATION,MUPLC,0,0,,BD,0
-2021-12-07,08:51,Tuesday,SPADINA YUS STATION,SUUT,7,10,N,YU,5471
-2021-12-07,08:57,Tuesday,COLLEGE STATION,MUPAA,0,0,S,YU,5561
-2021-12-07,09:31,Tuesday,EGLINTON WEST STATION,PUOPO,0,0,N,YU,5771
-2021-12-07,09:31,Tuesday,EGLINTON WEST STATION,PUOPO,0,0,S,YU,5606
-2021-12-07,09:40,Tuesday,EGLINTON WEST STATION,PUOPO,0,0,N,YU,5736
-2021-12-07,09:43,Tuesday,ST GEORGE YUS STATION,PUOPO,0,0,N,YU,6011
-2021-12-07,10:09,Tuesday,KIPLING STATION,PUTSM,52,56,E,BD,5259
-2021-12-07,10:22,Tuesday,YORKDALE STATION,PUOPO,0,0,N,YU,5911
-2021-12-07,10:34,Tuesday,ROYAL YORK STATION,PUSTS,0,0,E,BD,5188
-2021-12-07,10:36,Tuesday,BROADVIEW STATION,MUDD,4,8,W,BD,5120
-2021-12-07,10:39,Tuesday,DOWNSVIEW PARK STATION,PUOPO,4,7,N,YU,5531
-2021-12-07,10:47,Tuesday,FINCH WEST STATION,PUOPO,6,9,N,YU,5531
-2021-12-07,11:06,Tuesday,PIONEER VILLAGE STATIO,TUOPO,6,9,S,YU,5646
-2021-12-07,11:34,Tuesday,WILSON STATION,SUAE,0,0,,YU,0
-2021-12-07,12:36,Tuesday,YONGE BD STATION,MUPAA,0,0,E,BD,5048
-2021-12-07,12:46,Tuesday,YORK MILLS STATION,TUMVS,0,0,N,YU,5756
-2021-12-07,13:10,Tuesday,BLOOR STATION,EUTRD,4,7,S,YU,5696
-2021-12-07,13:29,Tuesday,PIONEER VILLAGE STATIO,MUPAA,6,9,S,YU,6131
-2021-12-07,13:46,Tuesday,WELLESLEY STATION,SUDP,4,7,S,YU,5721
-2021-12-07,13:55,Tuesday,DUNDAS WEST STATION,SUUT,29,33,E,BD,0
-2021-12-07,14:05,Tuesday,FINCH STATION,TUNOA,3,6,,YU,0
-2021-12-07,14:48,Tuesday,GLENCAIRN STATION,SUDP,8,11,N,YU,5586
-2021-12-07,15:02,Tuesday,YONGE BD STATION,TUNCA,0,0,,BD,0
-2021-12-07,15:12,Tuesday,FINCH STATION,TUNOA,3,6,N,YU,0
-2021-12-07,15:15,Tuesday,FINCH STATION,TUNOA,3,6,N,YU,0
-2021-12-07,16:04,Tuesday,DUNDAS STATION,SUUT,8,11,N,YU,5581
-2021-12-07,16:28,Tuesday,DUPONT STATION,PUOPO,0,0,N,YU,5981
-2021-12-07,17:00,Tuesday,YONGE BD STATION,MUPAA,0,0,W,BD,5227
-2021-12-07,17:04,Tuesday,SPADINA YUS STATION,SUO,12,15,N,YU,6121
-2021-12-07,17:44,Tuesday,KEELE STATION,SUAP,11,15,W,BD,5072
-2021-12-07,18:27,Tuesday,WARDEN STATION,TUMVS,3,7,E,BD,5153
-2021-12-07,18:48,Tuesday,NORTH YORK CTR STATION,SUDP,37,40,N,YU,5606
-2021-12-07,19:21,Tuesday,SHEPPARD STATION,MUPAA,3,6,S,YU,5471
-2021-12-07,19:33,Tuesday,ST CLAIR WEST STATION,MUIR,8,11,S,YU,6071
-2021-12-07,19:52,Tuesday,ISLINGTON STATION,TUMVS,0,0,W,BD,5002
-2021-12-07,19:58,Tuesday,ST CLAIR WEST STATION,PUOPO,0,0,S,YU,5656
-2021-12-07,20:06,Tuesday,ST CLAIR WEST STATION,PUOPO,0,0,S,YU,6001
-2021-12-07,20:17,Tuesday,CASTLE FRANK STATION,SUDP,11,18,W,BD,5120
-2021-12-07,20:20,Tuesday,VAUGHAN MC STATION,EUCD,0,0,S,YU,5696
-2021-12-07,21:46,Tuesday,ST CLAIR STATION,SUDP,0,0,N,YU,6106
-2021-12-07,21:52,Tuesday,YORK MILLS STATION,EUSC,0,0,N,YU,5726
-2021-12-07,22:00,Tuesday,YUS AND BD SUBWAY,MUO,0,0,,YUS/BD,0
-2021-12-07,22:35,Tuesday,ST GEORGE YUS STATION,MUATC,10,15,S,YU,6126
-2021-12-07,22:55,Tuesday,OLD MILL STATION,TUO,0,0,E,BD,5251
-2021-12-07,23:06,Tuesday,HIGH PARK STATION,TUO,0,0,E,BD,5231
-2021-12-07,23:11,Tuesday,LAWRENCE WEST STATION,PUMEL,0,0,,YU,0
-2021-12-07,23:13,Tuesday,DUNDAS STATION,MUIS,0,0,S,YU,0
-2021-12-07,23:38,Tuesday,FINCH STATION,MUIS,0,0,S,YU,0
-2021-12-07,23:42,Tuesday,KENNEDY BD STATION,TUO,7,15,W,BD,5120
-2021-12-07,00:16,Tuesday,WOODBINE STATION,MUPAA,0,0,W,BD,5147
-2021-12-07,00:43,Tuesday,ST CLAIR STATION,SUDP,0,0,S,YU,5546
-2021-12-07,00:55,Tuesday,ST CLAIR STATION,SUDP,3,8,S,YU,5556
-2021-12-07,01:44,Tuesday,WILSON STATION,MUIR,0,0,S,YU,5406
-2021-12-07,01:47,Tuesday,COLLEGE STATION,MUIS,0,0,,YU,0
-2021-12-07,05:36,Tuesday,DON MILLS STATION,EUDO,5,10,W,SHP,6151
-2021-12-07,19:34,Tuesday,SHEPPARD-YONGE STATION,SUDP,0,0,E,SHP,6196
-2021-12-08,02:16,Wednesday,LAWRENCE WEST STATION,MUIS,0,0,,YU,0
-2021-12-08,06:00,Wednesday,TORONTO TRANSIT COMMIS,MRO,0,0,,SRT,0
-2021-12-08,16:40,Wednesday,SCARBOROUGH CTR STATIO,PREL,0,0,,SRT,0
-2021-12-08,02:23,Wednesday,SHEPPARD WEST STATION,MUIS,0,0,,YU,0
-2021-12-08,04:09,Wednesday,HIGHWAY 407 STATION,SUDP,0,0,,YU,0
-2021-12-08,16:57,Wednesday,LAWRENCE EAST STATION,ERPR,9,14,N,SRT,3013
-2021-12-08,22:00,Wednesday,KENNEDY SRT TO LAWREN,MRO,0,0,B,SRT,0
-2021-12-08,06:00,Wednesday,TORONTO TRANSIT COMMIS,MUO,0,0,,,0
-2021-12-08,06:00,Wednesday,TORONTO TRANSIT COMMIS,MUO,0,0,,YU/BD,0
-2021-12-08,06:02,Wednesday,VICTORIA PARK STATION,PUSIS,5,11,W,BD,5005
-2021-12-08,06:06,Wednesday,ISLINGTON STATION,SUDP,8,13,E,BD,5033
-2021-12-08,07:49,Wednesday,VAUGHAN MC STATION,PUOPO,0,0,S,YU,5946
-2021-12-08,07:51,Wednesday,HIGHWAY 407 STATION,PUOPO,8,11,S,YU,5946
-2021-12-08,08:18,Wednesday,VICTORIA PARK STATION,PUSIS,4,8,W,BD,5074
-2021-12-08,08:53,Wednesday,DOWNSVIEW PARK STATION,PUOPO,4,7,N,YU,5601
-2021-12-08,08:57,Wednesday,FINCH STATION,EUNT,4,7,S,YU,6011
-2021-12-08,09:00,Wednesday,FINCH WEST STATION,PUOPO,5,8,N,YU,5601
-2021-12-08,10:19,Wednesday,FINCH STATION,SUDP,0,0,,YU,0
-2021-12-08,11:12,Wednesday,SPADINA BD STATION,SUUT,5,9,E,BD,5224
-2021-12-08,11:40,Wednesday,FINCH STATION,TUNIP,5,8,N,YU,5396
-2021-12-08,12:11,Wednesday,EGLINTON STATION,MUATC,9,12,S,YU,5761
-2021-12-08,12:21,Wednesday,WILSON STATION,PUOPO,0,0,N,YU,5581
-2021-12-08,13:14,Wednesday,BLOOR STATION,SUUT,0,0,S,YU,5771
-2021-12-08,13:43,Wednesday,DONLANDS STATION,MUIRS,0,0,W,BD,0
-2021-12-08,13:58,Wednesday,KIPLING STATION,MUIS,0,0,,,0
-2021-12-08,14:07,Wednesday,ST GEORGE YUS STATION,SUDP,4,7,N,YU,6136
-2021-12-08,14:47,Wednesday,YORK MILLS STATION,SUDP,0,0,S,YU,5651
-2021-12-08,14:52,Wednesday,ST GEORGE YUS STATION,MUTO,3,6,S,YU,5776
-2021-12-08,14:52,Wednesday,VAUGHAN MC STATION,MUIS,0,0,,YU,0
-2021-12-08,15:08,Wednesday,ST GEORGE YUS STATION,MUATC,4,7,S,YU,5501
-2021-12-08,15:10,Wednesday,BATHURST STATION,SUO,0,0,W,BD,5299
-2021-12-08,15:18,Wednesday,FINCH STATION,MUIRS,0,0,,YU,0
-2021-12-08,15:24,Wednesday,DAVISVILLE STATION,MUIRS,0,0,,YU,0
-2021-12-08,16:06,Wednesday,DUFFERIN STATION,SUO,0,0,E,BD,5066
-2021-12-08,16:08,Wednesday,VAUGHAN MC STATION,PUOPO,3,6,S,YU,6001
-2021-12-08,16:13,Wednesday,YONGE BD STATION,SUDP,4,8,W,BD,5002
-2021-12-08,16:20,Wednesday,ST PATRICK STATION,MUDD,3,6,S,YU,5511
-2021-12-08,17:01,Wednesday,KING STATION,SUDP,0,0,,YU,0
-2021-12-08,17:02,Wednesday,ST CLAIR WEST STATION,MUI,12,15,S,YU,6051
-2021-12-08,17:14,Wednesday,QUEEN'S PARK STATION,MUO,0,0,,,0
-2021-12-08,17:31,Wednesday,FINCH STATION,TUNOA,3,6,S,YU,0
-2021-12-08,17:33,Wednesday,KIPLING STATION,TUMVS,0,0,W,BD,5286
-2021-12-08,17:38,Wednesday,VAUGHAN MC STATION,PUOPO,3,6,S,YU,5386
-2021-12-08,17:46,Wednesday,HIGHWAY 407 STATION,PUOPO,3,6,S,YU,5386
-2021-12-08,17:59,Wednesday,CHESTER STATION,SUDP,10,14,W,BD,5236
-2021-12-08,18:24,Wednesday,ST GEORGE YUS STATION,PUOPO,3,6,N,YU,5741
-2021-12-08,18:56,Wednesday,KENNEDY BD STATION,MUIR,10,14,W,BD,5256
-2021-12-08,19:27,Wednesday,BROADVIEW STATION,MUPAA,3,7,E,BD,5227
-2021-12-08,19:30,Wednesday,BLOOR STATION,SUBT,26,29,S,YU,5676
-2021-12-08,19:51,Wednesday,OSSINGTON STATION,PUMEL,0,0,,BD,0
-2021-12-08,20:23,Wednesday,ST GEORGE YUS STATION,SUPOL,73,78,N,YU,5436
-2021-12-08,20:25,Wednesday,YONGE BD STATION,SUBT,22,29,W,BD,5298
-2021-12-08,21:26,Wednesday,OSSINGTON STATION,SUDP,3,10,W,BD,5225
-2021-12-08,21:36,Wednesday,SPADINA BD STATION,SUUT,13,20,E,BD,0
-2021-12-08,22:00,Wednesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-12-08,22:03,Wednesday,MAIN STREET STATION,PUSTS,3,10,E,BD,5173
-2021-12-08,22:28,Wednesday,OSSINGTON STATION,SUDP,0,0,W,BD,5093
-2021-12-08,22:31,Wednesday,QUEEN STATION,MUIRS,0,0,,YU,0
-2021-12-08,22:33,Wednesday,CASTLE FRANK STATION,MUIR,0,0,W,BD,5365
-2021-12-08,22:42,Wednesday,EGLINTON STATION,SUDP,3,8,N,YU,5501
-2021-12-08,23:00,Wednesday,OLD MILL STATION,MUIRS,7,14,W,BD,5365
-2021-12-08,23:01,Wednesday,QUEEN'S PARK STATION,MUPAA,5,10,S,YU,6041
-2021-12-08,23:05,Wednesday,ST ANDREW STATION,TUO,5,10,S,YU,6041
-2021-12-08,23:28,Wednesday,FINCH WEST STATION,MUIRS,0,0,,YU,0
-2021-12-08,23:58,Wednesday,ST ANDREW STATION,MUPAA,0,0,N,YU,5811
-2021-12-08,00:31,Wednesday,YORK MILLS STATION,SUDP,0,0,N,YU,5461
-2021-12-08,00:48,Wednesday,YORK MILLS STATION,MUIRS,0,0,,YU,0
-2021-12-08,00:59,Wednesday,ST GEORGE BD STATION,SUPOL,73,78,E,BD,5098
-2021-12-08,01:08,Wednesday,DAVISVILLE YARD,SUUT,0,0,,YU,0
-2021-12-08,01:48,Wednesday,PAPE STATION,PUMEL,0,0,,BD,0
-2021-12-08,06:00,Wednesday,TORONTO TRANSIT COMMIS,MUO,0,0,,SHP,0
-2021-12-08,06:44,Wednesday,DON MILLS STATION,TUSC,3,8,E,SHP,6166
-2021-12-08,23:06,Wednesday,SHEPPARD-YONGE STATION,SUDP,9,14,E,SHP,6166
-2021-12-08,23:25,Wednesday,SHEPPARD-YONGE STATION,SUDP,6,11,E,SHP,6196
-2021-12-08,23:58,Wednesday,SHEPPARD-YONGE STATION,EUBK,0,0,W,SHP,6151
-2021-12-09,05:51,Thursday,MAIN STREET STATION,SUDP,0,0,,BD,0
-2021-12-09,20:40,Thursday,MCCOWAN STATION,MRTO,7,12,S,SRT,3013
-2021-12-09,22:00,Thursday,KENNEDY SRT TO LAWRENC,MRO,0,0,B,SRT,0
-2021-12-09,06:09,Thursday,WILSON YARD,EUVE,6,0,S,YU,6016
-2021-12-09,06:13,Thursday,KENNEDY BD STATION,TUKEY,3,8,W,BD,5048
-2021-12-09,06:21,Thursday,WOODBINE STATION,MUTO,4,8,E,BD,5044
-2021-12-09,06:29,Thursday,YONGE BD STATION,SUUT,3,7,W,BD,5227
-2021-12-09,06:56,Thursday,UNION STATION,MUIR,4,7,N,YU,5741
-2021-12-09,07:11,Thursday,ISLINGTON STATION,TUSC,0,0,W,BD,5201
-2021-12-09,08:22,Thursday,FINCH STATION,MUIR,3,7,S,YU,5996
-2021-12-09,09:09,Thursday,DONLANDS STATION,MUSAN,6,10,E,BD,5041
-2021-12-09,12:18,Thursday,SPADINA YUS STATION,SUDP,0,0,N,YU,5096
-2021-12-09,12:53,Thursday,ST GEORGE YUS STATION,MUIR,6,9,N,YU,5761
-2021-12-09,12:57,Thursday,ST GEORGE YUS STATION,MUTO,5,8,S,YU,5581
-2021-12-09,13:01,Thursday,DOWNSVIEW PARK STATION,EUOPO,3,6,S,YU,6091
-2021-12-09,13:12,Thursday,ST GEORGE YUS STATION,MUPAA,0,0,S,YU,5401
-2021-12-09,13:19,Thursday,MAIN STREET STATION,SUDP,8,12,E,BD,5259
-2021-12-09,13:40,Thursday,CHESTER STATION,SUDP,23,27,W,BD,5170
-2021-12-09,13:44,Thursday,DAVISVILLE STATION,SUAP,0,0,N,YU,0
-2021-12-09,13:47,Thursday,HIGHWAY 407 STATION,PUOPO,6,9,S,YU,5711
-2021-12-09,14:04,Thursday,QUEEN STATION,MUIS,0,0,,YU,0
-2021-12-09,14:58,Thursday,CHRISTIE STATION,TUMVS,9,13,E,BD,5044
-2021-12-09,15:14,Thursday,ST CLAIR STATION,MUTO,3,6,N,YU,6116
-2021-12-09,15:34,Thursday,FINCH STATION,TUNOA,3,6,S,YU,5531
-2021-12-09,16:29,Thursday,SUMMERHILL STATION,SUROB,3,6,N,YU,5476
-2021-12-09,17:08,Thursday,FINCH STATION,EUBO,3,6,S,YU,6101
-2021-12-09,17:38,Thursday,ST GEORGE YUS STATION,SUDP,4,7,S,YU,6116
-2021-12-09,18:03,Thursday,MAIN STREET STATION,MUSC,0,0,W,BD,5120
-2021-12-09,18:52,Thursday,GLENCAIRN STATION,PUMEL,0,0,,YU,0
-2021-12-09,19:00,Thursday,DUNDAS STATION,SUUT,0,0,N,YU,5396
-2021-12-09,19:00,Thursday,WELLESLEY STATION,SUDP,30,33,N,YU,5401
-2021-12-09,19:29,Thursday,WARDEN STATION,SUDP,0,0,W,BD,5153
-2021-12-09,19:51,Thursday,UNION STATION,MUPAA,3,6,N,YU,5776
-2021-12-09,20:37,Thursday,GLENCAIRN STATION,TUO,8,13,N,YU,5811
-2021-12-09,21:08,Thursday,YORKDALE STATION,TUO,0,0,N,YU,5436
-2021-12-09,21:23,Thursday,VAUGHAN MC STATION,MUIS,0,0,,YU,0
-2021-12-09,21:46,Thursday,EGLINTON STATION,TUO,10,15,S,YU,6046
-2021-12-09,22:00,Thursday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU/BD,0
-2021-12-09,22:08,Thursday,DONLANDS STATION,MUIRS,0,0,E,BD,5251
-2021-12-09,22:16,Thursday,BLOOR STATION,MUIRS,0,0,S,YU,0
-2021-12-09,22:19,Thursday,RUNNYMEDE STATION,MUPAA,0,0,E,BD,5112
-2021-12-09,22:22,Thursday,MAIN STREET STATION,SUUT,0,0,W,BD,5093
-2021-12-09,22:35,Thursday,DAVISVILLE STATION,MUTO,5,10,N,YU,6121
-2021-12-09,22:42,Thursday,MAIN STREET STATION,MUIRS,0,0,E,BD,0
-2021-12-09,22:44,Thursday,DUNDAS STATION,MUIS,0,0,,YU,0
-2021-12-09,22:58,Thursday,DAVISVILLE STATION,MUIR,10,15,N,YU,5621
-2021-12-09,23:26,Thursday,MAIN STREET STATION,MUPLC,0,0,W,BD,5048
-2021-12-09,23:29,Thursday,WILSON STATION,MUPAA,0,0,N,YU,5996
-2021-12-09,23:34,Thursday,MAIN STREET STATION,SUDP,0,0,W,BD,5164
-2021-12-09,23:44,Thursday,QUEEN STATION,SUO,0,0,S,YU,0
-2021-12-09,00:12,Thursday,ST GEORGE BD STATION,MUPAA,0,0,W,BD,5120
-2021-12-09,00:23,Thursday,ST CLAIR STATION,MUIS,0,0,,YU,0
-2021-12-09,01:43,Thursday,EGLINTON STATION,MUIRS,0,0,S,YU,5811
-2021-12-09,02:31,Thursday,SHEPPARD-YONGE STATION,TUMVS,0,0,W,SHP,6151
-2021-12-10,16:23,Friday,KENNEDY SRT STATION,SRO,13,18,S,SRT,3002
-2021-12-10,05:39,Friday,YORK MILLS STATION,EUYRD,5,0,N,YU,5746
-2021-12-10,05:49,Friday,KING STATION,MUNCA,0,0,,YU,0
-2021-12-10,17:05,Friday,LAWRENCE EAST STATION,SRO,0,0,S,SRT,3014
-2021-12-10,22:00,Friday,KENNEDY SRT STATION TO,MRO,0,0,,SRT,0
-2021-12-10,05:53,Friday,KIPLING STATION,PUSSW,11,16,E,BD,5111
-2021-12-10,06:04,Friday,ISLINGTON STATION,PUSSW,13,18,W,BD,5044
-2021-12-10,07:02,Friday,EGLINTON STATION (MIGR,MUATC,7,10,S,YU,5381
-2021-12-10,07:20,Friday,ST GEORGE YUS STATION,TUNIP,4,7,S,YU,5611
-2021-12-10,08:22,Friday,COXWELL STATION,EUNT,0,0,W,BD,5135
-2021-12-10,08:23,Friday,DUNDAS STATION,MUNCA,0,0,,YU,0
-2021-12-10,09:36,Friday,BLOOR STATION,MUIS,0,0,,YU,0
-2021-12-10,10:06,Friday,SHERBOURNE STATION,MUPAA,0,0,E,BD,5179
-2021-12-10,10:33,Friday,NORTH YORK CTR STATION,TUMVS,0,0,S,YU,6086
-2021-12-10,10:35,Friday,JANE STATION,TUS,4,8,W,BD,5120
-2021-12-10,13:26,Friday,LAWRENCE STATION,SUDP,17,23,S,YU,5626
-2021-12-10,13:28,Friday,EGLINTON STATION,MUATC,0,0,S,YU,6086
-2021-12-10,13:44,Friday,KEELE STATION,SUDP,0,0,,BD,0
-2021-12-10,14:01,Friday,COLLEGE STATION,MUI,20,23,N,YU,5446
-2021-12-10,14:06,Friday,QUEEN STATION,MUIRS,0,0,N,YU,0
-2021-12-10,14:12,Friday,FINCH STATION,TUNOA,3,6,S,YU,0
-2021-12-10,14:21,Friday,DUNDAS STATION,MUIR,10,13,N,YU,5641
-2021-12-10,14:27,Friday,YONGE BD STATION,MUIS,0,0,E,BD,0
-2021-12-10,14:37,Friday,FINCH STATION,TUNOA,3,6,S,YU,0
-2021-12-10,14:38,Friday,ST GEORGE YUS STATION,MUATC,10,13,S,YU,5786
-2021-12-10,15:24,Friday,BATHURST STATION,SUDP,5,9,E,BD,5274
-2021-12-10,16:10,Friday,FINCH STATION,MUSC,0,0,S,YU,6086
-2021-12-10,16:16,Friday,SPADINA YUS STATION,SUUT,3,6,S,YU,5876
-2021-12-10,16:20,Friday,KENNEDY BD STATION,SUO,14,18,W,BD,5266
-2021-12-10,16:57,Friday,YORKDALE STATION,PUOPO,3,6,S,YU,5766
-2021-12-10,17:06,Friday,YORKDALE STATION,PUOPO,6,9,S,YU,5656
-2021-12-10,17:11,Friday,KEELE STATION,SUO,0,0,,BD,0
-2021-12-10,17:13,Friday,YORKDALE STATION,PUOPO,3,6,S,YU,6006
-2021-12-10,17:23,Friday,NORTH YORK CTR STATION,SUDP,0,0,S,YU,5771
-2021-12-10,17:27,Friday,SHEPPARD STATION,SUDP,19,22,S,YU,5771
-2021-12-10,18:14,Friday,KENNEDY BD STATION,MUO,4,8,W,BD,5219
-2021-12-10,18:58,Friday,HIGH PARK STATION,PUMST,0,0,,BD,0
-2021-12-10,19:09,Friday,YORKDALE STATION,PUOPO,0,0,N,YU,5436
-2021-12-10,19:47,Friday,HIGHWAY 407 STATION,PUOPO,4,8,S,YU,5766
-2021-12-10,19:53,Friday,PIONEER VILLAGE STATIO,PUOPO,9,12,S,YU,5766
-2021-12-10,19:54,Friday,GREENWOOD STATION,SUUT,20,27,E,BD,5234
-2021-12-10,19:58,Friday,VAUGHAN MC STATION,MUI,29,32,S,YU,5871
-2021-12-10,20:07,Friday,ROYAL YORK STATION,PUSTS,0,0,E,BD,5179
-2021-12-10,21:09,Friday,KIPLING STATION,MUSAN,7,14,E,BD,5320
-2021-12-10,21:17,Friday,DUFFERIN STATION,MUPAA,4,11,W,BD,5164
-2021-12-10,21:26,Friday,COLLEGE STATION,MUIS,0,0,,YU,0
-2021-12-10,22:00,Friday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-12-10,23:56,Friday,CHESTER STATION,SUDP,0,0,E,BD,5251
-2021-12-10,00:20,Friday,YONGE BD STATION,MUIRS,0,0,E,BD,5366
-2021-12-10,00:51,Friday,COLLEGE STATION,SUDP,0,0,N,YU,0
-2021-12-10,01:31,Friday,BAY STATION,MUIS,0,0,,BD,0
-2021-12-10,01:34,Friday,VAUGHAN MC STATION,MUIS,0,0,,YU,0
-2021-12-10,00:50,Friday,BAYVIEW STATION,SUDP,0,0,,SHP,0
-2021-12-11,02:32,Saturday,HIGHWAY 407 STATION,SUDP,0,0,,YU,0
-2021-12-11,08:25,Saturday,LAWRENCE EAST STATION,MRTO,5,11,N,SRT,3021
-2021-12-11,16:02,Saturday,LINE 3 SCARBOROUGH RT,MRO,0,0,,SRT,0
-2021-12-11,04:29,Saturday,VICTORIA PARK STATION,MUNCA,0,0,,BD,0
-2021-12-11,16:09,Saturday,SCARBOROUGH CTR STATIO,PREL,0,0,W,SRT,0
-2021-12-11,05:11,Saturday,ST CLAIR STATION,MUNCA,0,0,,YU,0
-2021-12-11,17:15,Saturday,KENNEDY SRT STATION,MRTO,30,35,N,SRT,3021
-2021-12-11,05:41,Saturday,OSSINGTON STATION,SUDP,0,0,,BD,0
-2021-12-11,05:44,Saturday,FINCH STATION,MUIRS,0,0,,YU,0
-2021-12-11,22:00,Saturday,KENNEDY SRT TO LAWREN,MRO,0,0,B,SRT,0
-2021-12-11,05:56,Saturday,LAWRENCE WEST STATION,PUOPO,6,12,S,YU,6021
-2021-12-11,06:10,Saturday,LAWRENCE WEST STATION,PUOPO,0,0,S,YU,5545
-2021-12-11,06:17,Saturday,LAWRENCE WEST STATION,PUOPO,0,0,S,YU,5601
-2021-12-11,06:35,Saturday,LAWRENCE WEST STATION,PUOPO,0,0,N,YU,5441
-2021-12-11,06:40,Saturday,LAWRENCE WEST STATION,PUOPO,0,0,N,YU,6056
-2021-12-11,06:40,Saturday,LAWRENCE WEST STATION,PUOPO,0,0,S,YU,5641
-2021-12-11,06:45,Saturday,LAWRENCE WEST STATION,PUOPO,0,0,S,YU,5396
-2021-12-11,06:53,Saturday,LAWRENCE WEST STATION,PUOPO,0,0,N,YU,5771
-2021-12-11,07:19,Saturday,EGLINTON WEST STATION,SUDP,6,12,S,YU,5446
-2021-12-11,07:49,Saturday,HIGHWAY 407 STATION,PUOPO,8,14,S,YU,5711
-2021-12-11,07:59,Saturday,PIONEER VILLAGE STATIO,PUOPO,5,11,S,YU,5711
-2021-12-11,08:04,Saturday,MAIN STREET STATION,EUME,5,10,E,BD,5187
-2021-12-11,08:17,Saturday,EGLINTON STATION,MUATC,8,14,S,YU,5381
-2021-12-11,09:39,Saturday,VAUGHAN MC STATION,MUIR,6,12,S,YU,5446
-2021-12-11,09:46,Saturday,YONGE BD STATION,MUPAA,0,0,E,BD,5298
-2021-12-11,10:03,Saturday,YORK MILLS STATION,TUSC,0,0,S,YU,5606
-2021-12-11,10:46,Saturday,DUNDAS STATION,MUIRS,0,0,N,YU,5871
-2021-12-11,11:02,Saturday,COXWELL STATION,SUDP,5,10,W,BD,5120
-2021-12-11,11:14,Saturday,WILSON STATION,TUOPO,4,10,S,YU,5976
-2021-12-11,11:16,Saturday,OLD MILL STATION,TUOS,0,0,E,BD,5298
-2021-12-11,11:31,Saturday,WILSON STATION,TUNIP,4,8,S,YU,5566
-2021-12-11,11:53,Saturday,ST GEORGE YUS STATION,MUIRS,0,0,,YU,0
-2021-12-11,12:36,Saturday,JANE STATION,SUDP,3,7,W,BD,5135
-2021-12-11,12:48,Saturday,DONLANDS STATION,MUIS,0,0,,BD,0
-2021-12-11,12:50,Saturday,SHEPPARD STATION,SUDP,9,13,S,YU,5826
-2021-12-11,12:53,Saturday,YORK MILLS STATION,PUMEL,0,0,,YU,0
-2021-12-11,13:09,Saturday,LAWRENCE STATION,SUDP,7,11,S,YU,5426
-2021-12-11,13:17,Saturday,QUEEN'S PARK STATION,MUPAA,0,0,S,YU,6076
-2021-12-11,13:28,Saturday,WOODBINE STATION,MUDD,3,7,W,BD,5023
-2021-12-11,14:23,Saturday,FINCH STATION,MUTO,4,8,S,YU,5401
-2021-12-11,14:31,Saturday,OLD MILL STATION,EUO,4,8,W,BD,5135
-2021-12-11,15:01,Saturday,MUSEUM STATION,MUIS,0,0,,YU,0
-2021-12-11,15:04,Saturday,ST GEORGE YUS STATION,TUSET,6,10,N,YU,5951
-2021-12-11,15:07,Saturday,ST GEORGE YUS STATION,MUIR,5,9,N,YU,5751
-2021-12-11,15:37,Saturday,FINCH STATION,SUDP,0,0,,YU,0
-2021-12-11,15:37,Saturday,EGLINTON STATION,MUATC,8,12,N,YU,5421
-2021-12-11,15:45,Saturday,SPADINA BD STATION,PUMEL,0,0,,BD,0
-2021-12-11,16:00,Saturday,BLOOR DANFORTH LINE,MUWEA,0,0,,BD,0
-2021-12-11,16:08,Saturday,EGLINTON STATION,MUSAN,4,8,N,YU,6051
-2021-12-11,16:10,Saturday,WILSON STATION,MUPAA,0,0,N,YU,5541
-2021-12-11,16:48,Saturday,VICTORIA PARK STATION,MUIS,0,0,,BD,0
-2021-12-11,17:01,Saturday,SHEPPARD STATION,PUSTS,4,7,N,YU,5631
-2021-12-11,17:08,Saturday,SHEPPARD STATION,PUSTS,17,21,N,YU,6061
-2021-12-11,17:17,Saturday,WARDEN STATION,MUIR,18,22,W,BD,5207
-2021-12-11,17:41,Saturday,WILSON STATION,MUATC,4,8,N,YU,5876
-2021-12-11,17:49,Saturday,KING STATION,SUUT,0,0,N,YU,5641
-2021-12-11,18:05,Saturday,ST PATRICK STATION,MUNCA,0,0,,YU,0
-2021-12-11,18:23,Saturday,DAVISVILLE STATION,TUOS,0,0,S,YU,5696
-2021-12-11,18:31,Saturday,SHEPPARD STATION,TUMVS,3,7,S,YU,5601
-2021-12-11,19:08,Saturday,EGLINTON STATION,MUPAA,0,0,S,YU,6096
-2021-12-11,19:19,Saturday,BLOOR STATION,MUIS,0,0,N,YU,0
-2021-12-11,20:35,Saturday,WARDEN STATION,MUPAA,0,0,W,BD,5131
-2021-12-11,20:49,Saturday,DAVISVILLE STATION,SUDP,4,9,S,YU,5541
-2021-12-11,22:00,Saturday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-12-11,22:12,Saturday,CASTLE FRANK STATION,MUPAA,0,0,W,BD,5120
-2021-12-11,22:17,Saturday,VAUGHAN MC STATION,MUIS,0,0,,YU,0
-2021-12-11,22:23,Saturday,RUNNYMEDE STATION,PUMEL,0,0,,BD,0
-2021-12-11,22:37,Saturday,BLOOR STATION,SUUT,11,18,S,YU,6066
-2021-12-11,23:02,Saturday,ROSEDALE STATION,MUATC,7,14,S,YU,5876
-2021-12-11,23:22,Saturday,QUEEN STATION,MUNCA,0,0,,YU,0
-2021-12-11,01:42,Saturday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-12-11,01:59,Saturday,VAUGHAN MC STATION,SUO,0,0,,YU,0
-2021-12-11,08:14,Saturday,SHEPPARD-YONGE STATION,TUOS,0,0,W,SHP,6186
-2021-12-11,11:43,Saturday,LESLIE STATION,EUSC,0,0,W,SHP,6176
-2021-12-11,12:27,Saturday,LESLIE STATION,EUSC,0,0,W,SHP,6176
-2021-12-11,18:11,Saturday,DON MILLS STATION,MUPAA,0,0,W,SHP,6161
-2021-12-12,02:12,Sunday,KENNEDY BD STATION,MUI,0,0,W,BD,5016
-2021-12-12,08:52,Sunday,LAWRENCE EAST STATION,MRTO,4,10,S,SRT,3014
-2021-12-12,13:01,Sunday,SCARBOROUGH CTR STATIO,MRUI,0,0,,SRT,0
-2021-12-12,03:00,Sunday,UNION STATION,MUNCA,0,0,,YU,0
-2021-12-12,08:28,Sunday,GREENWOOD STATION,EUYRD,5,10,E,BD,5051
-2021-12-12,15:21,Sunday,LAWRENCE EAST STATION,ERDO,4,10,S,SRT,3020
-2021-12-12,22:00,Sunday,KENNEDY SRT TO LAWRENC,MRO,0,0,B,SRT,0
-2021-12-12,08:56,Sunday,MAIN STREET STATION,EUO,0,0,W,BD,5369
-2021-12-12,09:18,Sunday,VICTORIA PARK STATION,EUDO,3,8,W,BD,5274
-2021-12-12,09:34,Sunday,YONGE BD STATION,MUIRS,0,0,,BD,0
-2021-12-12,09:43,Sunday,OSSINGTON STATION,PUMST,0,0,,BD,0
-2021-12-12,10:06,Sunday,YORK MILLS STATION,PUSI,7,12,S,YU,5521
-2021-12-12,10:23,Sunday,FINCH STATION,MUIS,0,0,,YU,0
-2021-12-12,11:05,Sunday,ST PATRICK STATION,SUDP,3,8,N,YU,6031
-2021-12-12,13:06,Sunday,FINCH STATION,SUDP,0,0,,YU,0
-2021-12-12,14:11,Sunday,VAUGHAN MC STATION,PUOPO,3,8,S,YU,6886
-2021-12-12,14:16,Sunday,HIGHWAY 407 STATION,PUOPO,3,8,S,YU,5886
-2021-12-12,14:18,Sunday,DUNDAS STATION,MUDD,4,9,S,YU,5616
-2021-12-12,14:28,Sunday,DAVISVILLE STATION,SUCOL,0,0,N,YU,5606
-2021-12-12,14:35,Sunday,COXWELL STATION,TUSUP,6,11,E,BD,5117
-2021-12-12,14:46,Sunday,ST CLAIR WEST STATION,MUPAA,3,8,N,YU,5876
-2021-12-12,15:17,Sunday,VICTORIA PARK STATION,SUO,4,9,E,BD,5066
-2021-12-12,15:35,Sunday,EGLINTON STATION (APPR,MUATC,5,10,S,YU,6111
-2021-12-12,15:36,Sunday,BROADVIEW STATION,SUDP,0,0,W,BD,5094
-2021-12-12,16:22,Sunday,YONGE BD STATION,PUTDN,5,9,W,BD,5282
-2021-12-12,17:03,Sunday,HIGH PARK STATION,SUO,11,16,E,BD,5288
-2021-12-12,17:32,Sunday,KIPLING STATION,TUCC,5,10,E,BD,5117
-2021-12-12,18:07,Sunday,NORTH YORK CTR STATION,TUSC,0,0,S,YU,5541
-2021-12-12,18:12,Sunday,DUNDAS STATION,MUIRS,0,0,S,YU,0
-2021-12-12,18:32,Sunday,BLOOR STATION,SUDP,4,9,N,YU,6006
-2021-12-12,18:36,Sunday,COXWELL STATION,PUMEL,0,0,,BD,0
-2021-12-12,18:50,Sunday,YONGE BD STATION,SUUT,17,22,E,BD,5076
-2021-12-12,19:15,Sunday,DUNDAS STATION,MUIRS,0,0,N,YU,0
-2021-12-12,19:31,Sunday,BLOOR STATION,SUDP,0,0,N,YU,5481
-2021-12-12,19:48,Sunday,BATHURST STATION,MUPAA,0,0,E,BD,5288
-2021-12-12,20:04,Sunday,WARDEN STATION,SUO,22,29,E,BD,5288
-2021-12-12,20:45,Sunday,ST ANDREW STATION,MUIS,0,0,,YU,0
-2021-12-12,20:52,Sunday,LAWRENCE WEST STATION,SUDP,7,14,S,YU,5611
-2021-12-12,21:08,Sunday,DONLANDS STATION,SUO,0,0,,BD,0
-2021-12-12,22:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-12-12,22:22,Sunday,VAUGHAN MC STATION,PUOPO,0,0,S,YU,5546
-2021-12-12,22:25,Sunday,HIGHWAY 407 STATION,PUOPO,7,14,S,YU,5546
-2021-12-12,23:14,Sunday,ST CLAIR WEST STATION,SUO,0,0,N,YU,5471
-2021-12-12,01:03,Sunday,FINCH STATION,MUIS,0,0,,YU,0
-2021-12-12,01:42,Sunday,YONGE BD STATION,MUIRS,0,0,,BD,0
-2021-12-12,01:47,Sunday,VAUGHAN MC STATION,MUIS,0,0,,YU,0
-2021-12-12,23:44,Sunday,SHEPPARD-YONGE STATION,TUNOA,0,0,E,SHP,0
-2021-12-12,23:53,Sunday,LESLIE STATION,EUSC,0,0,E,SHP,6176
-2021-12-13,10:57,Monday,SCARBOROUGH CTR STATIO,MRTO,4,9,S,SRT,3002
-2021-12-13,07:17,Monday,ST CLAIR WEST STATION,PUMEL,0,0,,YU,0
-2021-12-13,15:14,Monday,LAWRENCE EAST STATION,ERTC,7,12,S,SRT,3020
-2021-12-13,09:10,Monday,VICTORIA PARK STATION,PUMEL,0,0,,BD,0
-2021-12-13,10:06,Monday,EGLINTON WEST STATION,PUOPO,0,0,S,YU,5406
-2021-12-13,17:17,Monday,KENNEDY SRT STATION,ERTC,12,17,N,SRT,3017
-2021-12-13,17:48,Monday,LAWRENCE EAST STATION,MRUI,0,0,N,SRT,0
-2021-12-13,11:09,Monday,WARDEN STATION,SUAP,0,0,,BD,0
-2021-12-13,18:36,Monday,MIDLAND STATION,ERTC,6,11,N,SRT,3019
-2021-12-13,12:07,Monday,ROYAL YORK STATION,SUDP,3,7,E,BD,5044
-2021-12-13,22:00,Monday,KENNEDY SRT STATION TO,MRO,0,0,,SRT,0
-2021-12-13,12:10,Monday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-12-13,12:43,Monday,FINCH STATION,TUNIP,4,7,S,YU,5516
-2021-12-13,13:02,Monday,VAUGHAN MC STATION,TUO,3,6,S,YU,5381
-2021-12-13,13:07,Monday,PIONEER VILLAGE STATIO,SUDP,0,0,,YU,0
-2021-12-13,13:28,Monday,NORTH YORK CTR STATION,MUPAA,0,0,N,YU,5396
-2021-12-13,13:39,Monday,WARDEN STATION,MUIS,0,0,,BD,0
-2021-12-13,13:59,Monday,YORK MILLS STATION,MUPAA,0,0,S,YU,5461
-2021-12-13,14:29,Monday,LAWRENCE WEST STATION,PUOPO,4,7,S,YU,6021
-2021-12-13,14:36,Monday,GLENCAIRN STATION,PUOPO,3,6,S,YU,6021
-2021-12-13,15:00,Monday,GREENWOOD STATION,PUMEL,0,0,,BD,0
-2021-12-13,15:24,Monday,BATHURST STATION,SUDP,0,0,W,BD,5082
-2021-12-13,16:47,Monday,KING STATION,SUAP,4,7,N,YU,6096
-2021-12-13,17:24,Monday,WILSON STATION,SUO,0,0,,YU,0
-2021-12-13,17:27,Monday,LAWRENCE WEST STATION,SUDP,0,0,S,YU,5846
-2021-12-13,17:56,Monday,SPADINA YUS STATION,TUO,5,8,S,YU,6111
-2021-12-13,18:04,Monday,QUEEN'S PARK STATION,SUUT,0,0,N,YU,5726
-2021-12-13,18:21,Monday,DUPONT STATION,PUOPO,0,0,S,YU,6106
-2021-12-13,18:58,Monday,DAVISVILLE STATION,SUDP,0,0,S,YU,5841
-2021-12-13,19:32,Monday,COXWELL STATION,MUIS,0,0,,BD,0
-2021-12-13,20:06,Monday,LAWRENCE STATION,TUO,3,6,N,YU,6096
-2021-12-13,20:14,Monday,SHEPPARD STATION,TUO,3,6,N,YU,6096
-2021-12-13,20:21,Monday,FINCH STATION,MUTO,5,8,S,YU,6091
-2021-12-13,20:31,Monday,YORK UNIVERSITY STATIO,PUOPO,3,6,S,YU,5731
-2021-12-13,20:44,Monday,FINCH WEST STATION,PUOPO,3,6,S,YU,5731
-2021-12-13,20:59,Monday,DAVISVILLE STATION,MUIR,6,9,N,YU,6036
-2021-12-13,22:00,Monday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU/BD,0
-2021-12-13,22:24,Monday,BROADVIEW STATION,MUIS,0,0,,BD,0
-2021-12-13,22:37,Monday,HIGH PARK STATION,MUIS,0,0,,BD,0
-2021-12-13,22:46,Monday,DUNDAS STATION,MUIS,0,0,S,YU,0
-2021-12-13,23:28,Monday,ROSEDALE STATION,MUIE,0,0,,YU,0
-2021-12-13,23:48,Monday,WELLESLEY STATION,SUO,0,0,N,YU,5621
-2021-12-13,00:03,Monday,LAWRENCE WEST STATION,MUPAA,0,0,N,YU,5451
-2021-12-13,01:14,Monday,WARDEN STATION,MUIS,0,0,,BD,0
-2021-12-13,01:43,Monday,VAUGHAN MC STATION,MUIS,0,0,,YU,0
-2021-12-13,20:24,Monday,SHEPPARD-YONGE STATION,TUMVS,0,0,W,SHP,6186
-2021-12-14,15:53,Tuesday,LAWRENCE EAST STATION,SRAP,0,0,,SRT,0
-2021-12-14,02:30,Tuesday,YONGE BD STATION,PUTOE,0,0,W,BD,0
-2021-12-14,19:02,Tuesday,LAWRENCE EAST STATION,SRAE,0,0,,SRT,0
-2021-12-14,04:01,Tuesday,ST PATRICK STATION,MUO,0,0,S,YU,0
-2021-12-14,19:17,Tuesday,ELLESMERE STATION,SRDP,8,13,S,SRT,3002
-2021-12-14,06:16,Tuesday,KEELE STATION,PUTWZ,4,8,W,BD,5085
-2021-12-14,22:00,Tuesday,KENNEDY SRT STATION TO,MRO,0,0,,SRT,0
-2021-12-14,06:37,Tuesday,ST ANDREW STATION,MUATC,4,7,S,YU,6081
-2021-12-14,07:07,Tuesday,KENNEDY BD STATION,PUSRA,4,8,W,BD,5127
-2021-12-14,08:36,Tuesday,ST GEORGE YUS STATION,SUBT,25,28,S,YU,5826
-2021-12-14,08:36,Tuesday,ST GEORGE BD STATION,SUBT,25,28,W,BD,5267
-2021-12-14,09:24,Tuesday,BATHURST STATION,MUPAA,0,0,E,BD,5153
-2021-12-14,10:46,Tuesday,QUEEN STATION,MUIRS,0,0,,YU,0
-2021-12-14,10:56,Tuesday,WILSON CARHOUSE,MUO,0,0,,YU,0
-2021-12-14,12:27,Tuesday,EGLINTON STATION (MIGR,TUATC,5,8,S,YU,5611
-2021-12-14,13:07,Tuesday,EGLINTON STATION (MIGR,MUATC,5,8,S,YU,6086
-2021-12-14,13:24,Tuesday,MUSEUM STATION,MUPAA,3,6,N,YU,5421
-2021-12-14,13:53,Tuesday,EGLINTON WEST STATION,MUPAA,0,0,S,YU,5866
-2021-12-14,13:54,Tuesday,EGLINTON WEST STATION,SUEAS,19,22,S,YU,5866
-2021-12-14,15:12,Tuesday,RUNNYMEDE STATION,MUIRS,0,0,,BD,0
-2021-12-14,15:19,Tuesday,OSSINGTON STATION,SUO,0,0,W,BD,5051
-2021-12-14,16:18,Tuesday,EGLINTON WEST STATION,MUNCA,0,0,,YU,0
-2021-12-14,16:44,Tuesday,DUNDAS STATION,MUIS,0,0,S,YU,0
-2021-12-14,17:35,Tuesday,FINCH STATION,TUCC,0,0,N,YU,5401
-2021-12-14,18:57,Tuesday,YORKDALE STATION,EUBK,7,10,S,YU,5481
-2021-12-14,19:06,Tuesday,KEELE STATION,SUO,0,0,E,BD,5001
-2021-12-14,19:11,Tuesday,VICTORIA PARK STATION,SUDP,0,0,,BD,0
-2021-12-14,20:09,Tuesday,ROSEDALE STATION,MUIS,0,0,,YU,0
-2021-12-14,20:26,Tuesday,DUNDAS STATION,MUPAA,0,0,N,YU,5611
-2021-12-14,20:27,Tuesday,CHRISTIE STATION,EUDO,7,14,E,BD,5028
-2021-12-14,20:39,Tuesday,BROADVIEW STATION,MUIS,0,0,W,BD,0
-2021-12-14,20:41,Tuesday,DUNDAS STATION,MUIS,0,0,,YU,0
-2021-12-14,20:43,Tuesday,LAWRENCE STATION,MUIS,0,0,,YU,0
-2021-12-14,21:27,Tuesday,EGLINTON WEST STATION,SUDP,4,9,N,YU,5516
-2021-12-14,22:00,Tuesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-12-14,23:48,Tuesday,DAVISVILLE STATION,MUATC,12,17,S,YU,5516
-2021-12-14,00:29,Tuesday,ST ANDREW STATION,MUPAA,5,10,S,YU,5906
-2021-12-14,00:30,Tuesday,FINCH STATION,MUSAN,5,10,S,YU,6071
-2021-12-14,00:55,Tuesday,YORKDALE STATION,PUOPO,0,0,N,YU,5841
-2021-12-14,01:28,Tuesday,COLLEGE STATION,SUDP,4,9,N,YU,5711
-2021-12-14,12:29,Tuesday,SHEPPARD-YONGE STATION,TUSC,0,0,E,SHP,6181
-2021-12-15,07:23,Wednesday,MCCOWAN STATION,MRTO,7,13,S,SRT,3010
-2021-12-15,05:11,Wednesday,OSGOODE STATION,MUNCA,0,0,,YU,0
-2021-12-15,06:07,Wednesday,BLOOR STATION,TUO,8,11,N,YU,5386
-2021-12-15,09:27,Wednesday,MCCOWAN STATION,MRTO,6,11,S,SRT,3010
-2021-12-15,22:00,Wednesday,KENNEDY SRT STATION TO,MRO,0,0,,SRT,0
-2021-12-15,07:28,Wednesday,UNION STATION,SUDP,0,0,,YU,0
-2021-12-15,07:55,Wednesday,DAVISVILLE STATION,MUATC,6,9,S,YU,5586
-2021-12-15,07:57,Wednesday,EGLINTON STATION,MUATC,8,11,N,YU,6076
-2021-12-15,08:05,Wednesday,SUMMERHILL STATION,MUATC,4,7,N,YU,5816
-2021-12-15,09:41,Wednesday,SHEPPARD WEST STATION,MUIS,0,0,,YU,0
-2021-12-15,11:12,Wednesday,LAWRENCE WEST STATION,MUPAA,8,11,S,YU,5556
-2021-12-15,11:36,Wednesday,EGLINTON STATION,MUATC,5,8,S,YU,5811
-2021-12-15,12:19,Wednesday,ST GEORGE YUS STATION,PUOPO,5,8,N,YU,5876
-2021-12-15,12:47,Wednesday,GREENWOOD STATION,PUSTS,3,7,W,BD,5164
-2021-12-15,12:58,Wednesday,SHERBOURNE STATION,MUPAA,0,0,E,BD,5098
-2021-12-15,13:10,Wednesday,EGLINTON WEST STATION,MUPAA,5,8,N,YU,5551
-2021-12-15,13:55,Wednesday,COXWELL STATION,MUIS,0,0,E,BD,0
-2021-12-15,14:03,Wednesday,EGLINTON STATION,PUMST,0,0,,YU,0
-2021-12-15,14:41,Wednesday,EGLINTON STATION,MUSC,0,0,N,YU,5906
-2021-12-15,15:53,Wednesday,COXWELL STATION,SUDP,4,8,W,BD,5047
-2021-12-15,16:40,Wednesday,KIPLING STATION,MUSAN,4,8,E,BD,5089
-2021-12-15,17:03,Wednesday,CASTLE FRANK STATION,MUPAA,0,0,E,BD,5062
-2021-12-15,17:15,Wednesday,VICTORIA PARK STATION,MUDD,0,0,W,BD,5023
-2021-12-15,17:16,Wednesday,FINCH STATION,SUDP,12,15,N,YU,5061
-2021-12-15,17:41,Wednesday,WELLESLEY STATION,MUATC,0,0,N,YU,5426
-2021-12-15,17:54,Wednesday,EGLINTON STATION,MUPAA,3,6,N,YU,5426
-2021-12-15,18:06,Wednesday,LAWRENCE WEST STATION,SUSP,0,0,N,YU,5606
-2021-12-15,18:10,Wednesday,YORK MILLS STATION,PUMO,0,0,,YU,0
-2021-12-15,18:35,Wednesday,EGLINTON STATION (APPR,TUATC,6,9,S,YU,5736
-2021-12-15,18:44,Wednesday,KENNEDY BD STATION,EUDO,4,8,W,BD,5207
-2021-12-15,18:45,Wednesday,DUNDAS STATION,MUIS,0,0,S,YU,0
-2021-12-15,19:32,Wednesday,OSSINGTON STATION,MUIRS,0,0,,BD,0
-2021-12-15,19:33,Wednesday,UNION STATION,MUPAA,5,8,N,YU,5821
-2021-12-15,19:43,Wednesday,YORK MILLS STATION,TUSC,0,0,S,YU,5811
-2021-12-15,20:00,Wednesday,DUNDAS STATION,MUIS,0,0,,YU,0
-2021-12-15,20:03,Wednesday,EGLINTON STATION,MUIS,0,0,,YU,0
-2021-12-15,20:20,Wednesday,LANSDOWNE STATION,PUMST,0,0,E,BD,0
-2021-12-15,20:24,Wednesday,KING STATION,MUNCA,0,0,,YU,0
-2021-12-15,21:06,Wednesday,VAUGHAN MC STATION,PUOPO,3,6,S,YU,5941
-2021-12-15,21:15,Wednesday,HIGHWAY 407 STATION,PUOPO,3,6,S,YU,5941
-2021-12-15,22:00,Wednesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-12-15,22:40,Wednesday,DOWNSVIEW PARK STATION,PUOPO,5,10,N,YU,5671
-2021-12-15,22:47,Wednesday,FINCH WEST STATION,PUOPO,5,10,N,YU,5671
-2021-12-15,23:10,Wednesday,YORK UNIVERSITY STATIO,SUDP,3,8,N,YU,5431
-2021-12-15,23:30,Wednesday,VICTORIA PARK STATION,MUIS,0,0,,BD,0
-2021-12-15,00:00,Wednesday,BLOOR STATION,MUIS,0,0,N,YU,5826
-2021-12-15,01:38,Wednesday,DONLANDS STATION,SUO,0,0,E,BD,5186
-2021-12-15,01:39,Wednesday,KIPLING STATION,SUUT,6,13,E,BD,5220
-2021-12-16,05:46,Thursday,KENNEDY BD STATION,EUPI,6,12,W,BD,5274
-2021-12-16,11:56,Thursday,KENNEDY SRT STATION,PRSA,20,27,S,SRT,3012
-2021-12-16,22:00,Thursday,KENNEDY SRT STATION TO,MRO,0,0,,SRT,0
-2021-12-16,06:28,Thursday,KIPLING STATION,SUDP,3,8,E,BD,5320
-2021-12-16,06:36,Thursday,FINCH STATION,MUO,7,10,N,YU,5681
-2021-12-16,22:42,Thursday,MCCOWAN STATION,TRO,5,12,,SRT,3024
-2021-12-16,06:38,Thursday,KIPLING STATION,SUDP,0,0,E,BD,5274
-2021-12-16,06:46,Thursday,SHEPPARD STATION,MUSC,0,0,S,YU,5696
-2021-12-16,07:02,Thursday,KIPLING STATION,MUIRS,0,0,,BD,0
-2021-12-16,07:09,Thursday,WOODBINE STATION,PUSSW,4,9,E,BD,5313
-2021-12-16,07:18,Thursday,WOODBINE STATION,PUSSW,68,72,W,BD,5151
-2021-12-16,07:24,Thursday,ROSEDALE STATION,MUIRS,0,0,,YU,0
-2021-12-16,07:26,Thursday,WARDEN STATION,SUDP,0,0,W,BD,5009
-2021-12-16,07:44,Thursday,SHEPPARD STATION,MUPAA,0,0,N,YU,5761
-2021-12-16,07:45,Thursday,KENNEDY BD STATION,SUDP,4,8,E,BD,5176
-2021-12-16,09:56,Thursday,OLD MILL STATION,TUMVS,0,0,W,BD,5201
-2021-12-16,11:48,Thursday,WOODBINE STATION,MUNCA,0,0,,BD,0
-2021-12-16,11:50,Thursday,MAIN STREET STATION,PUMEL,0,0,,BD,0
-2021-12-16,12:00,Thursday,DAVISVILLE STATION,SUDP,7,10,N,YU,5786
-2021-12-16,12:27,Thursday,DUFFERIN STATION,SUDP,0,0,W,BD,5029
-2021-12-16,12:27,Thursday,JANE STATION,MUPAA,0,0,W,BD,5024
-2021-12-16,13:17,Thursday,WILSON STATION,PUOPO,6,9,S,YU,6066
-2021-12-16,13:25,Thursday,WILSON STATION,PUMO,5,8,S,YU,5736
-2021-12-16,13:47,Thursday,ST PATRICK STATION,SUO,0,0,N,YU,5421
-2021-12-16,14:33,Thursday,SHEPPARD STATION,MUDD,3,6,N,YU,5401
-2021-12-16,14:42,Thursday,CASTLE FRANK STATION,MUO,0,0,,BD,0
-2021-12-16,14:57,Thursday,ST GEORGE BD STATION,MUIS,0,0,E,BD,5097
-2021-12-16,15:06,Thursday,DUNDAS STATION,MUIS,0,0,,YU,0
-2021-12-16,15:06,Thursday,WARDEN STATION,MUPAA,0,0,E,BD,5086
-2021-12-16,15:08,Thursday,BAY STATION,MUPAA,3,7,W,BD,5168
-2021-12-16,15:20,Thursday,CHRISTIE STATION,TUMVS,3,7,E,BD,5293
-2021-12-16,15:35,Thursday,ST GEORGE BD STATION,PUSTS,0,0,W,BD,5047
-2021-12-16,16:14,Thursday,FINCH STATION,SUDP,7,10,S,YU,5536
-2021-12-16,17:09,Thursday,CHESTER STATION,MUIS,0,0,W,BD,0
-2021-12-16,17:11,Thursday,DOWNSVIEW PARK STATION,MUIRS,0,0,,YU,0
-2021-12-16,17:47,Thursday,DAVISVILLE STATION,SUSA,4,7,S,YU,5406
-2021-12-16,17:58,Thursday,CHESTER STATION,PUSSW,3,7,W,BD,5294
-2021-12-16,18:24,Thursday,VAUGHAN MC STATION,PUOPO,3,6,S,YU,5851
-2021-12-16,21:06,Thursday,DUNDAS STATION,MUIS,0,0,S,YU,0
-2021-12-16,21:08,Thursday,ROSEDALE STATION,MUPAA,0,0,N,YU,5761
-2021-12-16,21:19,Thursday,SPADINA YUS STATION,PUOPO,7,12,N,YU,5381
-2021-12-16,21:27,Thursday,ST CLAIR STATION,SUDP,28,32,N,YU,5531
-2021-12-16,21:27,Thursday,DUPONT STATION,PUOPO,11,16,N,YU,5381
-2021-12-16,21:59,Thursday,DUPONT STATION,MUO,7,12,S,YU,5721
-2021-12-16,22:00,Thursday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-12-16,22:43,Thursday,EGLINTON STATION,SUAP,0,0,,YU,0
-2021-12-16,22:44,Thursday,UNION STATION,MUPAA,3,8,N,YU,6101
-2021-12-16,22:50,Thursday,COXWELL STATION,TUSUP,4,11,W,BD,5243
-2021-12-16,22:53,Thursday,KIPLING STATION,MUDD,0,0,E,BD,5101
-2021-12-16,23:22,Thursday,WELLESLEY STATION,MUIS,0,0,,YU,0
-2021-12-16,23:59,Thursday,EGLINTON STATION,MUATC,4,9,S,YU,5601
-2021-12-16,01:06,Thursday,LAWRENCE STATION,MUSAN,5,10,N,YU,6061
-2021-12-16,01:19,Thursday,ST GEORGE YUS STATION,PUOPO,0,0,N,YU,5781
-2021-12-16,01:21,Thursday,SPADINA YUS STATION,PUOPO,4,9,N,YU,5781
-2021-12-16,01:27,Thursday,DUPONT STATION,PUOPO,8,13,N,YU,5781
-2021-12-16,01:36,Thursday,DUPONT STATION,MUO,6,11,S,YU,5851
-2021-12-17,13:47,Friday,MCCOWAN STATION,TRNIP,0,0,S,SRT,3012
-2021-12-17,02:07,Friday,VICTORIA PARK STATION,MUIS,0,0,,BD,0
-2021-12-17,03:44,Friday,FINCH STATION,MUSAN,4,0,S,YU,6066
-2021-12-17,05:49,Friday,FINCH STATION,EUTL,4,4,S,YU,5736
-2021-12-17,06:07,Friday,BLOOR STATION,MUPAA,0,0,S,YU,6011
-2021-12-17,06:09,Friday,VMC TO EGLINTON STATIO,PUCSS,3,6,S,YU,5716
-2021-12-17,06:22,Friday,GREENWOOD STATION,EUAC,5,10,W,BD,5223
-2021-12-17,07:20,Friday,EGLINTON STATION,MUIRS,0,0,,YU,0
-2021-12-17,08:34,Friday,LAWRENCE WEST STATION,PUOPO,3,6,N,YU,5551
-2021-12-17,08:41,Friday,YORKDALE STATION,PUOPO,9,12,S,YU,5531
-2021-12-17,08:50,Friday,FINCH WEST STATION,SUDP,5,8,S,YU,5906
-2021-12-17,08:56,Friday,WARDEN STATION,SUDP,13,17,E,BD,5211
-2021-12-17,09:03,Friday,EGLINTON STATION,MUSC,0,0,N,YU,5696
-2021-12-17,09:52,Friday,VICTORIA PARK STATION,EUBK,4,8,W,BD,5074
-2021-12-17,10:25,Friday,LAWRENCE WEST STATION,SUDP,13,16,S,YU,5711
-2021-12-17,10:41,Friday,MUSEUM STATION,MUATC,0,0,N,YU,5726
-2021-12-17,10:56,Friday,EGLINTON STATION (MIGR,MUATC,8,11,S,YU,6056
-2021-12-17,11:10,Friday,EGLINTON WEST STATION,MUIS,0,0,S,YU,0
-2021-12-17,11:38,Friday,FINCH STATION,SUDP,0,0,,YU,0
-2021-12-17,12:03,Friday,EGLINTON STATION,SUDP,10,13,S,YU,5751
-2021-12-17,12:32,Friday,YONGE BD STATION,TUMVS,0,0,W,BD,5131
-2021-12-17,13:16,Friday,ST CLAIR STATION,SUUT,3,6,N,YU,5911
-2021-12-17,13:24,Friday,SUMMERHILL STATION,SUDP,5,9,S,YU,5956
-2021-12-17,14:09,Friday,WILSON HOSTLER,MUNOA,0,0,S,YU,0
-2021-12-17,14:14,Friday,EGLINTON STATION,TUATC,6,9,S,YU,5856
-2021-12-17,14:33,Friday,EGLINTON STATION,MUSC,36,6,S,YU,6086
-2021-12-17,15:04,Friday,WARDEN STATION,SUUT,3,4,W,BD,5032
-2021-12-17,15:07,Friday,LINE 1 YUS,PUATC,8,11,N,YU,0
-2021-12-17,15:20,Friday,ST GEORGE YUS STATION,PUOPO,5,8,N,YU,6086
-2021-12-17,15:25,Friday,SPADINA YUS STATION,PUOPO,3,6,N,YU,6086
-2021-12-17,15:43,Friday,KEELE STATION,MUPAA,0,0,W,BD,5024
-2021-12-17,15:48,Friday,SHEPPARD WEST STATION,MUPAA,3,6,N,YU,5701
-2021-12-17,15:48,Friday,GREENWOOD STATION,SUAP,0,0,,BD,0
-2021-12-17,16:02,Friday,ST CLAIR STATION,SUDP,4,7,N,YU,5921
-2021-12-17,16:09,Friday,FINCH WEST STATION,MUO,4,7,N,YU,5566
-2021-12-17,16:31,Friday,YONGE BD STATION,PUTTC,6,10,E,BD,5091
-2021-12-17,16:50,Friday,YONGE BD STATION,TUSC,0,0,E,BD,5016
-2021-12-17,17:37,Friday,WILSON STATION,PUOPO,0,0,S,YU,5976
-2021-12-17,18:21,Friday,BATHURST STATION,MUIS,0,0,,BD,0
-2021-12-17,18:28,Friday,CASTLE FRANK STATION,MUPAA,0,0,E,BD,5091
-2021-12-17,18:43,Friday,ST GEORGE YUS STATION,MUPAA,0,0,S,YU,5826
-2021-12-17,18:59,Friday,OSSINGTON STATION,SUEAS,15,22,W,BD,5156
-2021-12-17,19:11,Friday,VAUGHAN MC STATION,PUOPO,0,0,S,YU,5831
-2021-12-17,19:15,Friday,HIGHWAY 407 STATION,PUOPO,3,6,,YU,5831
-2021-12-17,20:26,Friday,DUNDAS STATION,MUNCA,0,0,,YU,0
-2021-12-17,20:40,Friday,SPADINA YUS STATION,MUO,0,0,S,YU,5976
-2021-12-17,20:58,Friday,BATHURST STATION,MUIRS,0,0,W,BD,5023
-2021-12-17,22:00,Friday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-12-17,22:09,Friday,WELLESLEY STATION,MUIRS,0,0,,YU,0
-2021-12-17,22:15,Friday,FINCH STATION,MUO,0,0,S,YU,5741
-2021-12-17,22:33,Friday,CHRISTIE STATION,SUAP,0,0,W,BD,5151
-2021-12-17,23:04,Friday,COXWELL STATION,SUDP,4,11,E,BD,5041
-2021-12-17,23:09,Friday,EGLINTON STATION,EUCD,5,10,S,YU,5741
-2021-12-17,23:41,Friday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-12-17,00:02,Friday,WELLESLEY STATION,SUDP,0,0,,YU,0
-2021-12-17,00:51,Friday,HIGH PARK STATION,MUNCA,0,0,,BD,0
-2021-12-17,00:52,Friday,EGLINTON WEST STATION,MUIS,0,0,,YU,0
-2021-12-17,00:54,Friday,FINCH STATION,TUO,3,6,S,YU,5926
-2021-12-17,01:00,Friday,EGLINTON WEST STATION,MUNCA,0,0,,YU,0
-2021-12-17,10:01,Friday,SHEPPARD-YONGE STATION,MUPAA,0,0,W,SHP,6146
-2021-12-18,02:30,Saturday,ROYAL YORK STATION,MUIS,0,0,,BD,0
-2021-12-18,10:00,Saturday,SCARBOROUGH RAPID TRAN,MRWEA,0,0,,SRT,0
-2021-12-18,16:51,Saturday,ELLESMERE STATION,MRPAA,3,9,S,SRT,3026
-2021-12-18,08:31,Saturday,FINCH STATION,TUNIP,4,10,S,YU,6041
-2021-12-18,22:00,Saturday,KENNEDY SRT STATION TO,MRO,0,0,,SRT,0
-2021-12-18,08:46,Saturday,YONGE UNIVERSITY SUBWA,MUWEA,0,0,,YU,0
-2021-12-18,08:48,Saturday,BLOOR DANFORTH LINE,MUWEA,0,0,,BD,0
-2021-12-18,23:41,Saturday,LAWRENCE EAST STATION,SRAP,0,0,,SRT,0
-2021-12-18,09:02,Saturday,HIGH PARK STATION,SUDP,8,13,E,BD,5146
-2021-12-18,11:20,Saturday,WOODBINE STATION,MUIS,0,0,,BD,0
-2021-12-18,11:36,Saturday,YORK MILLS STATION,MUPAA,0,0,N,YU,6006
-2021-12-18,11:51,Saturday,DUNDAS STATION,MUIS,0,0,,YU,0
-2021-12-18,12:42,Saturday,ST GEORGE YUS STATION,MUPAA,4,8,S,YU,5571
-2021-12-18,13:25,Saturday,ST GEORGE YUS STATION,MUTO,3,7,S,YU,5421
-2021-12-18,13:44,Saturday,UNION STATION,MUIRS,0,0,,YU,0
-2021-12-18,13:59,Saturday,CASTLE FRANK STATION,MUPAA,3,7,W,BD,5121
-2021-12-18,14:33,Saturday,DUNDAS WEST STATION,SUDP,0,0,,BD,0
-2021-12-18,14:39,Saturday,SHEPPARD STATION,MUIRS,0,0,,YU,0
-2021-12-18,14:51,Saturday,YORK MILLS STATION,PUMEL,0,0,S,YU,5436
-2021-12-18,14:54,Saturday,ROYAL YORK STATION,MUIRS,0,0,,BD,0
-2021-12-18,15:53,Saturday,EGLINTON STATION,PUMST,0,0,,YU,0
-2021-12-18,15:56,Saturday,FINCH WEST STATION,MUTO,4,8,N,YU,6056
-2021-12-18,16:00,Saturday,LANSDOWNE STATION,MUIRS,0,0,,BD,0
-2021-12-18,16:11,Saturday,UNION STATION,SUO,16,21,S,YU,5881
-2021-12-18,16:19,Saturday,CASTLE FRANK STATION,SUO,0,0,,BD,0
-2021-12-18,16:25,Saturday,QUEEN STATION,MUPAA,0,0,N,YU,5561
-2021-12-18,16:34,Saturday,ST ANDREW STATION,SUDP,0,0,N,YU,5881
-2021-12-18,16:54,Saturday,LAWRENCE STATION,PUSI,0,0,S,YU,6041
-2021-12-18,16:55,Saturday,DONLANDS STATION,SUUT,21,25,W,BD,5078
-2021-12-18,17:05,Saturday,QUEEN STATION,MUIRS,0,0,N,YU,0
-2021-12-18,17:44,Saturday,ROYAL YORK STATION,SUDP,4,8,W,BD,5072
-2021-12-18,17:47,Saturday,ST GEORGE YUS STATION,SUDP,8,12,N,YU,5661
-2021-12-18,18:05,Saturday,QUEEN STATION,MUIRS,0,0,N,YU,0
-2021-12-18,18:07,Saturday,KEELE STATION,SUDP,6,10,W,BD,5291
-2021-12-18,18:15,Saturday,DUFFERIN STATION,MUIS,0,0,W,BD,5120
-2021-12-18,19:22,Saturday,YORK MILLS STATION,PUSI,0,0,S,YU,5551
-2021-12-18,19:28,Saturday,FINCH STATION,MUIR,5,10,N,YU,6046
-2021-12-18,19:46,Saturday,DUNDAS STATION,MUIS,0,0,N,YU,0
-2021-12-18,20:17,Saturday,KENNEDY BD STATION,PUMST,0,0,,BD,0
-2021-12-18,20:58,Saturday,LAWRENCE WEST STATION,PUOPO,0,0,N,YU,5601
-2021-12-18,20:59,Saturday,SPADINA BD STATION,MUPAA,0,0,W,BD,5047
-2021-12-18,21:01,Saturday,LAWRENCE STATION,PUSI,0,0,S,YU,6116
-2021-12-18,21:46,Saturday,DAVISVILLE STATION,MUPAA,0,0,N,YU,5456
-2021-12-18,22:00,Saturday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-12-18,23:03,Saturday,COLLEGE STATION,MUIS,0,0,S,YU,5561
-2021-12-18,23:18,Saturday,VICTORIA PARK STATION,MUPLB,11,18,W,BD,5234
-2021-12-18,23:33,Saturday,OLD MILL STATION,MUIS,0,0,E,BD,5300
-2021-12-18,23:41,Saturday,MAIN STREET STATION,SUUT,9,16,W,BD,5078
-2021-12-18,23:42,Saturday,HIGHWAY 407 STATION,MUPAA,0,0,S,YU,6041
-2021-12-18,23:43,Saturday,YORK MILLS STATION,MUPAA,0,0,N,YU,5616
-2021-12-18,01:10,Saturday,ST GEORGE YUS STATION,TUNIP,10,17,S,YU,5991
-2021-12-18,01:38,Saturday,MAIN STREET STATION,SUDP,0,0,,BD,0
-2021-12-18,07:46,Saturday,DON MILLS STATION,MUIRS,0,0,,SHP,0
-2021-12-18,11:23,Saturday,DON MILLS STATION,MUIRS,0,0,,SHP,0
-2021-12-18,21:07,Saturday,SHEPPARD-YONGE STATION,TUSC,0,0,W,SHP,6186
-2021-12-19,02:26,Sunday,KENNEDY BD STATION,MUIS,0,0,W,BD,0
-2021-12-19,10:54,Sunday,SCARBOROUGH CTR STATIO,MRTO,12,18,S,SRT,3020
-2021-12-19,17:09,Sunday,MCCOWAN STATION,MRTO,15,21,S,SRT,3020
-2021-12-19,07:42,Sunday,WILSON STATION,MUATC,7,0,S,YU,5761
-2021-12-19,17:53,Sunday,SCARBOROUGH CTR STATIO,MRUI,0,0,,SRT,0
-2021-12-19,07:51,Sunday,WILSON STATION,EUYRD,8,14,S,YU,5921
-2021-12-19,08:08,Sunday,EGLINTON STATION,MUATC,9,0,S,YU,5821
-2021-12-19,19:21,Sunday,MCCOWAN STATION,MRTO,8,14,S,SRT,3020
-2021-12-19,22:00,Sunday,KENNEDY SRT TO LAWREN,MRO,0,0,B,SRT,0
-2021-12-19,08:18,Sunday,ST ANDREW STATION,PUSAC,0,0,S,YU,5761
-2021-12-19,08:20,Sunday,DAVISVILLE STATION,MUATC,6,0,S,YU,5821
-2021-12-19,10:11,Sunday,YORK MILLS STATION,MUPAA,0,0,N,YU,5851
-2021-12-19,10:28,Sunday,SPADINA YUS STATION,PUOPO,12,18,N,YU,5616
-2021-12-19,10:42,Sunday,DUPONT STATION,PUOPO,5,10,N,YU,5616
-2021-12-19,11:21,Sunday,WELLESLEY STATION,MUIS,0,0,S,YU,5536
-2021-12-19,13:03,Sunday,HIGH PARK STATION,MUIS,0,0,,BD,0
-2021-12-19,13:08,Sunday,BROADVIEW STATION,SUDP,0,0,,BD,0
-2021-12-19,13:25,Sunday,OSSINGTON STATION,SUAE,18,23,E,BD,5001
-2021-12-19,13:35,Sunday,EGLINTON STATION,TUATC,4,9,S,YU,5751
-2021-12-19,14:26,Sunday,EGLINTON STATION,MUATC,11,16,S,YU,6126
-2021-12-19,15:12,Sunday,FINCH STATION,MUTO,5,10,S,YU,5566
-2021-12-19,15:24,Sunday,FINCH STATION,TUNIP,8,13,S,YU,5651
-2021-12-19,15:52,Sunday,FINCH STATION,MUI,7,12,S,YU,6101
-2021-12-19,17:33,Sunday,VICTORIA PARK STATION,SUAP,0,0,E,BD,5313
-2021-12-19,17:49,Sunday,YORK MILLS STATION,PUSI,0,0,S,YU,5936
-2021-12-19,18:16,Sunday,YORK MILLS STATION,MUI,27,32,S,YU,5656
-2021-12-19,18:55,Sunday,RUNNYMEDE STATION,MUIR,12,17,E,BD,5125
-2021-12-19,19:16,Sunday,KIPLING STATION,SUUT,0,0,W,BD,5135
-2021-12-19,19:29,Sunday,MUSEUM STATION,SUAP,13,18,S,YU,6136
-2021-12-19,19:58,Sunday,EGLINTON STATION,MUATC,3,10,S,YU,5661
-2021-12-19,20:01,Sunday,SHEPPARD STATION,SUUT,0,0,S,YU,5601
-2021-12-19,20:17,Sunday,LAWRENCE STATION,PUSI,0,0,S,YU,5916
-2021-12-19,20:42,Sunday,BLOOR STATION,MUNCA,0,0,,YU,0
-2021-12-19,20:58,Sunday,KIPLING STATION,SUDP,7,14,E,BD,5093
-2021-12-19,22:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU / BD,0
-2021-12-19,22:02,Sunday,DUNDAS STATION,MUIS,0,0,S,YU,5936
-2021-12-19,22:40,Sunday,ST GEORGE YUS STATION,MUPAA,6,13,S,YU,5951
-2021-12-19,22:42,Sunday,FINCH STATION,MUIRS,6,12,,YU,0
-2021-12-19,23:32,Sunday,CHRISTIE STATION,MUDD,0,0,W,BD,5078
-2021-12-19,23:57,Sunday,QUEEN STATION,MUIS,0,0,,YU,0
-2021-12-19,00:21,Sunday,SUMMERHILL STATION,SUDP,0,0,N,YU,5676
-2021-12-19,00:42,Sunday,WILSON CARHOUSE,MUO,0,0,,,0
-2021-12-19,22:22,Sunday,DON MILLS STATION,PUOPO,0,0,W,SHP,6176
-2021-12-20,05:43,Monday,GREENWOOD STATION,PUTOE,12,0,E,BD,5139
-2021-12-20,20:58,Monday,KENNEDY SRT STATION,PRSA,14,20,N,SRT,3017
-2021-12-20,21:56,Monday,LAWRENCE EAST STATION,MRUIR,0,0,N,SRT,3026
-2021-12-20,05:53,Monday,SHEPPARD WEST STATION,EUME,6,0,N,YU,5986
-2021-12-20,05:56,Monday,EGLINTON STATION,MUSC,0,0,N,YU,5476
-2021-12-20,22:00,Monday,KENNEDY SRT TO LAWREN,MRO,0,0,B,SRT,0
-2021-12-20,06:30,Monday,DAVISVILLE STATION,TUCC,4,7,S,YU,5471
-2021-12-20,06:32,Monday,EGLINTON STATION,MUSC,0,0,S,YU,5696
-2021-12-20,06:37,Monday,FINCH STATION,EUSC,0,0,S,YU,5526
-2021-12-20,06:58,Monday,FINCH STATION,MUSC,0,0,S,YU,5721
-2021-12-20,07:15,Monday,LAWRENCE STATION,EUSC,0,0,N,YU,5981
-2021-12-20,07:21,Monday,LAWRENCE STATION,EUSC,0,0,N,YU,5981
-2021-12-20,07:33,Monday,BLOOR STATION,TUO,6,11,N,YU,5706
-2021-12-20,07:44,Monday,CASTLE FRANK STATION,MUD,4,8,W,BD,5249
-2021-12-20,08:00,Monday,EGLINTON STATION (MIGR,MUATC,6,9,S,YU,5456
-2021-12-20,08:02,Monday,ST GEORGE YUS STATION,PUOPO,0,0,N,YU,5711
-2021-12-20,08:06,Monday,DUPONT STATION,PUOPO,5,8,N,YU,5711
-2021-12-20,08:14,Monday,HIGHWAY 407 STATION,PUOPO,3,6,S,YU,5481
-2021-12-20,08:35,Monday,EGLINTON STATION,TUATC,3,6,S,YU,5901
-2021-12-20,09:22,Monday,FINCH STATION,MUSAN,3,6,S,YU,5526
-2021-12-20,09:46,Monday,QUEEN STATION,MUIRS,0,0,,YU,0
-2021-12-20,09:52,Monday,ISLINGTON STATION,SUDP,6,10,E,BD,5313
-2021-12-20,09:53,Monday,ROSEDALE STATION,SUEAS,8,11,N,YU,5736
-2021-12-20,10:01,Monday,HIGHWAY 407 STATION,PUMEL,0,0,,YU,0
-2021-12-20,10:06,Monday,FINCH STATION,MUSC,0,0,S,YU,5566
-2021-12-20,11:21,Monday,FINCH STATION,MUTO,3,6,S,YU,5396
-2021-12-20,12:23,Monday,YONGE BD STATION,MUPAA,3,7,E,BD,5188
-2021-12-20,13:04,Monday,OSSINGTON STATION,SUDP,0,0,E,BD,5110
-2021-12-20,13:06,Monday,YONGE BD STATION,MUPAA,0,0,W,BD,5105
-2021-12-20,13:17,Monday,COXWELL STATION,MUIRS,0,0,,BD,0
-2021-12-20,13:26,Monday,MAIN STREET STATION,MUO,0,0,W,BD,5098
-2021-12-20,13:37,Monday,DOWNSVIEW PARK STATION,PUOPO,0,0,N,YU,5761
-2021-12-20,13:42,Monday,FINCH WEST STATION,PUOPO,4,7,N,YU,5721
-2021-12-20,13:44,Monday,MUSEUM STATION,SUDP,0,0,N,YU,5986
-2021-12-20,13:53,Monday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-12-20,14:06,Monday,VICTORIA PARK STATION,SUEAS,13,17,W,BD,5222
-2021-12-20,14:09,Monday,BLOOR STATION,MUPAA,0,0,N,YU,5476
-2021-12-20,14:48,Monday,CASTLE FRANK STATION,SUDP,4,8,E,BD,5158
-2021-12-20,15:14,Monday,BLOOR STATION,SUDP,3,6,S,YU,5596
-2021-12-20,15:23,Monday,JANE STATION,MUPAA,0,0,W,BD,5194
-2021-12-20,16:23,Monday,YONGE-SHEPPARD (LINE 4,MUIRS,0,0,,,0
-2021-12-20,16:27,Monday,SHEPPARD STATION,MUSC,0,0,N,YU,5606
-2021-12-20,17:04,Monday,LAWRENCE STATION,PUSI,0,0,S,YU,5946
-2021-12-20,17:19,Monday,KIPLING STATION,MUSAN,0,0,W,BD,5041
-2021-12-20,17:58,Monday,MAIN STREET STATION,SUDP,0,0,E,BD,5036
-2021-12-20,18:11,Monday,VAUGHAN MC STATION,MUSAN,3,6,S,YU,5391
-2021-12-20,19:33,Monday,ST GEORGE YUS STATION,MUIR,5,8,N,YU,5701
-2021-12-20,19:41,Monday,ST GEORGE YUS STATION,MUWR,7,10,N,YU,5766
-2021-12-20,20:12,Monday,ST GEORGE YUS STATION,MUTO,4,7,S,YU,5736
-2021-12-20,20:39,Monday,YORK MILLS STATION,PUMEL,0,0,,YU,0
-2021-12-20,21:34,Monday,YORK MILLS STATION,PUSI,0,0,S,YU,5791
-2021-12-20,21:55,Monday,ST GEORGE YUS STATION,MUPAA,0,0,S,YU,6106
-2021-12-20,22:34,Monday,ST CLAIR WEST STATION,MUIRS,0,0,N,YU,0
-2021-12-20,23:31,Monday,KING STATION,MUIS,0,0,,YU,0
-2021-12-20,00:28,Monday,SHERBOURNE STATION,SUDP,4,11,W,BD,5222
-2021-12-20,00:58,Monday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-12-20,01:00,Monday,ST CLAIR WEST STATION,MUNCA,0,0,,YU,0
-2021-12-20,01:00,Monday,DUNDAS STATION,MUNCA,0,0,,YUS,0
-2021-12-20,11:01,Monday,SHEPPARD-YONGE STATION,PUMO,0,0,,SHP,0
-2021-12-20,14:46,Monday,BAYVIEW STATION,SUDP,0,0,,SHP,0
-2021-12-21,16:40,Tuesday,KENNEDY SRT STATION,MRO,5,10,N,SRT,3009
-2021-12-21,02:45,Tuesday,VAUGHAN MC STATION,SUDP,0,0,,YU,0
-2021-12-21,22:00,Tuesday,KENNEDY SRT STATION TO,MRO,0,0,,SRT,0
-2021-12-21,05:31,Tuesday,MAIN STREET STATION,PUMEL,0,0,,BD,0
-2021-12-21,23:07,Tuesday,KENNEDY SRT STATION,SRDP,20,26,S,SRT,3026
-2021-12-21,06:11,Tuesday,SHEPPARD WEST STATION,MUATC,5,11,N,YU,5876
-2021-12-21,06:13,Tuesday,DONLANDS STATION,EUO,5,10,W,BD,5260
-2021-12-21,23:56,Tuesday,MCCOWAN STATION,SRUT,32,38,S,SRT,3012
-2021-12-21,06:17,Tuesday,EGLINTON STATION,MUIRS,0,0,N,YU,5671
-2021-12-21,00:16,Tuesday,MCCOWAN STATION,MRTO,0,0,S,SRT,3012
-2021-12-21,06:35,Tuesday,EGLINTON STATION,MUSC,0,0,N,YU,5696
-2021-12-21,07:12,Tuesday,PAPE STATION,EUBK,5,10,E,BD,5188
-2021-12-21,08:46,Tuesday,LAWRENCE STATION,PUSI,0,0,S,YU,5981
-2021-12-21,08:50,Tuesday,UNION STATION,MUIRS,0,0,,YU,0
-2021-12-21,09:06,Tuesday,GLENCAIRN STATION,PUOPO,5,8,N,YU,5391
-2021-12-21,09:07,Tuesday,YORK MILLS STATION,MUSC,0,0,S,YU,5901
-2021-12-21,09:20,Tuesday,OSSINGTON STATION,MUI,10,14,W,BD,5125
-2021-12-21,09:42,Tuesday,LAWRENCE STATION,PUSI,0,0,S,YU,5556
-2021-12-21,10:04,Tuesday,COXWELL STATION,SUDP,0,0,W,BD,5062
-2021-12-21,10:23,Tuesday,PIONEER VILLAGE STATIO,PUOPO,0,0,S,YU,5466
-2021-12-21,10:24,Tuesday,HIGHWAY 407 STATION,PUOPO,3,6,S,YU,5906
-2021-12-21,10:33,Tuesday,GREENWOOD STATION,MUDD,3,7,W,BD,5041
-2021-12-21,10:45,Tuesday,KENNEDY BD STATION,MUSAN,4,8,W,BD,5020
-2021-12-21,11:29,Tuesday,DUPONT STATION,MUPAA,0,0,S,YU,5656
-2021-12-21,11:51,Tuesday,EGLINTON STATION,SUO,0,0,,YU,0
-2021-12-21,11:52,Tuesday,DUNDAS STATION,SUDP,0,0,,YU,0
-2021-12-21,12:15,Tuesday,YONGE BD STATION,EUDO,6,10,W,BD,5323
-2021-12-21,12:51,Tuesday,BLOOR STATION,PUMEL,0,0,,YU,0
-2021-12-21,13:22,Tuesday,DUFFERIN STATION,MUPAA,4,8,W,BD,5186
-2021-12-21,14:21,Tuesday,FINCH STATION,MUIS,0,0,,YU,0
-2021-12-21,14:23,Tuesday,WILSON STATION,TUNOA,0,0,,YU,0
-2021-12-21,14:31,Tuesday,KIPLING STATION,SUDP,13,17,W,BD,5028
-2021-12-21,15:51,Tuesday,ST CLAIR WEST STATION,SUAP,0,0,,YU,0
-2021-12-21,16:18,Tuesday,LAWRENCE STATION,PUSI,0,0,S,YU,5741
-2021-12-21,16:32,Tuesday,WOODBINE STATION,MUNCA,0,0,,BD,0
-2021-12-21,16:40,Tuesday,DUNDAS WEST STATION,SUAP,0,0,,BD,0
-2021-12-21,16:45,Tuesday,CASTLE FRANK STATION,SUDP,0,0,,BD,0
-2021-12-21,16:52,Tuesday,MAIN STREET STATION,MUIS,0,0,,BD,0
-2021-12-21,17:16,Tuesday,ST CLAIR WEST STATION,MUIS,0,0,,YU,0
-2021-12-21,17:29,Tuesday,ST GEORGE YUS STATION,PUOPO,3,6,N,YU,5996
-2021-12-21,18:20,Tuesday,HIGH PARK STATION,SUUT,0,0,E,BD,5139
-2021-12-21,18:20,Tuesday,YORK MILLS STATION,PUSI,0,0,S,YU,5821
-2021-12-21,18:35,Tuesday,VAUGHAN MC STATION,PUOPO,0,0,S,YU,5911
-2021-12-21,18:38,Tuesday,HIGHWAY 407 STATION,PUOPO,5,8,S,YU,5911
-2021-12-21,19:22,Tuesday,FINCH WEST STATION,MUD,5,8,S,YU,5531
-2021-12-21,19:42,Tuesday,DUFFERIN STATION,SUDP,0,0,W,BD,5233
-2021-12-21,19:54,Tuesday,SPADINA BD STATION,SUDP,0,0,W,BD,5310
-2021-12-21,19:56,Tuesday,SPADINA YUS STATION,SUDP,0,0,S,YU,6111
-2021-12-21,20:01,Tuesday,KIPLING STATION,SUUT,24,31,E,BD,5139
-2021-12-21,20:17,Tuesday,YONGE BD STATION,SUDP,5,12,E,BD,5036
-2021-12-21,21:24,Tuesday,DUPONT STATION,MUATC,0,0,N,YU,5556
-2021-12-21,21:36,Tuesday,KIPLING STATION,SUDP,0,0,E,BD,5366
-2021-12-21,21:48,Tuesday,KIPLING STATION,SUDP,5,10,W,BD,5219
-2021-12-21,22:00,Tuesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-12-21,22:29,Tuesday,OLD MILL STATION,SUDP,0,0,E,BD,5222
-2021-12-21,22:45,Tuesday,OSSINGTON STATION,SUDP,0,0,E,BD,5222
-2021-12-21,22:49,Tuesday,KENNEDY BD STATION,SUDP,22,27,W,BD,5310
-2021-12-21,22:52,Tuesday,SPADINA BD STATION,SUDP,10,15,E,BD,5222
-2021-12-21,23:02,Tuesday,BROADVIEW STATION,MUNCA,0,0,,BD,0
-2021-12-21,23:35,Tuesday,DAVISVILLE STATION,SUDP,0,0,,YU,0
-2021-12-21,00:02,Tuesday,YORK MILLS STATION,MUPAA,0,0,N,YU,6121
-2021-12-21,01:00,Tuesday,PAPE STATION,PUSRA,4,8,E,BD,5366
-2021-12-21,01:39,Tuesday,DUNDAS STATION,MUIS,0,0,S,YU,0
-2021-12-21,01:57,Tuesday,DONLANDS STATION,SUDP,0,0,E,BD,0
-2021-12-21,13:54,Tuesday,DON MILLS STATION,TUMVS,0,0,E,SHP,6171
-2021-12-21,16:51,Tuesday,SHEPPARD-YONGE STATION,MUIS,0,0,,SHP,0
-2021-12-22,05:25,Wednesday,KIPLING STATION,SUSA,0,0,,BD,0
-2021-12-22,13:32,Wednesday,SCARBOROUGH CTR STATIO,SREAS,11,18,S,SRT,3026
-2021-12-22,13:34,Wednesday,MIDLAND STATION,MRTO,0,0,N,SRT,3003
-2021-12-22,05:48,Wednesday,QUEEN'S PARK STATION,MUNCA,0,0,,YU,0
-2021-12-22,14:22,Wednesday,KENNEDY SRT STATION,SRDP,3,10,N,SRT,3017
-2021-12-22,05:56,Wednesday,WILSON STATION,MUATC,5,8,S,YU,5451
-2021-12-22,17:28,Wednesday,ELLESMERE STATION,TRNCA,0,0,,SRT,0
-2021-12-22,05:56,Wednesday,GREENWOOD STATION,EUYRD,5,10,E,BD,5127
-2021-12-22,05:58,Wednesday,CHESTER STATION,MUNCA,0,0,,BD,0
-2021-12-22,20:59,Wednesday,MCCOWAN STATION,ERDO,7,13,S,SRT,3026
-2021-12-22,06:31,Wednesday,KEELE STATION,EUSC,0,0,W,BD,5050
-2021-12-22,22:00,Wednesday,KENNEDY SRT TO LAWREN,MRO,0,0,B,SRT,0
-2021-12-22,06:43,Wednesday,DUNDAS STATION,MUIRS,0,0,N,YU,0
-2021-12-22,06:57,Wednesday,BLOOR STATION,MUI,14,17,N,YU,5941
-2021-12-22,07:06,Wednesday,EGLINTON STATION,EUBK,6,9,N,YU,5711
-2021-12-22,07:49,Wednesday,VAUGHAN MC STATION,EUBO,3,6,N,YU,5736
-2021-12-22,07:52,Wednesday,RUNNYMEDE STATION,SUDP,0,0,W,BD,5066
-2021-12-22,08:27,Wednesday,ST CLAIR STATION,SUDP,0,0,S,YU,5386
-2021-12-22,08:58,Wednesday,FINCH STATION,MUSC,0,0,S,YU,5936
-2021-12-22,09:16,Wednesday,ST CLAIR STATION,TUATC,3,6,S,YU,5561
-2021-12-22,09:30,Wednesday,YONGE BD STATION,MUPAA,3,7,E,BD,5001
-2021-12-22,09:32,Wednesday,EGLINTON STATION,MUATC,15,18,S,YU,5741
-2021-12-22,09:56,Wednesday,ST GEORGE BD STATION,EUPI,3,7,E,BD,5226
-2021-12-22,10:31,Wednesday,FINCH STATION,MUIS,0,0,,YU,0
-2021-12-22,11:15,Wednesday,DUNDAS WEST STATION,TUMVS,3,7,W,BD,5066
-2021-12-22,11:30,Wednesday,ST GEORGE YUS STATION,MUI,0,0,S,YU,5746
-2021-12-22,11:31,Wednesday,WARDEN STATION,PUMEL,0,0,,BD,0
-2021-12-22,11:56,Wednesday,RUNNYMEDE STATION,EUDO,0,0,E,BD,5135
-2021-12-22,12:05,Wednesday,EGLINTON STATION,MUSC,0,0,N,YU,5696
-2021-12-22,12:31,Wednesday,BAY STATION,MUIRS,0,0,,BD,0
-2021-12-22,12:48,Wednesday,BLOOR STATION,MUIR,4,7,S,YU,5691
-2021-12-22,12:52,Wednesday,CASTLE FRANK STATION,MUIR,0,0,E,BD,5366
-2021-12-22,13:45,Wednesday,DUNDAS STATION,MUNCA,0,0,N,YU,0
-2021-12-22,14:39,Wednesday,UNION STATION,MUIRS,0,0,,YU,0
-2021-12-22,14:39,Wednesday,EGLINTON STATION,SUDP,3,6,S,YU,5956
-2021-12-22,14:39,Wednesday,LAWRENCE WEST STATION,PUMEL,0,0,,YU,0
-2021-12-22,14:44,Wednesday,FINCH STATION,MUNCA,0,0,,YU,0
-2021-12-22,14:55,Wednesday,YONGE BD STATION,EUDO,7,11,E,BD,5048
-2021-12-22,14:59,Wednesday,VICTORIA PARK STATION,SUO,10,14,W,BD,5044
-2021-12-22,15:34,Wednesday,ST GEORGE BD STATION,SUDP,0,0,W,BD,5183
-2021-12-22,15:36,Wednesday,EGLINTON STATION,SUDP,0,0,N,YU,5851
-2021-12-22,15:57,Wednesday,QUEEN'S PARK STATION,MUIRS,0,0,,YU,0
-2021-12-22,16:11,Wednesday,YORKDALE STATION,MUIS,0,0,S,YU,0
-2021-12-22,16:19,Wednesday,KENNEDY BD STATION,MUNOA,4,8,W,BD,5239
-2021-12-22,16:44,Wednesday,COLLEGE STATION,SUDP,15,18,N,YU,5891
-2021-12-22,16:50,Wednesday,ST GEORGE YUS STATION,PUOPO,3,6,N,YU,6036
-2021-12-22,16:54,Wednesday,SPADINA YUS STATION,PUOPO,0,0,N,YU,6036
-2021-12-22,17:20,Wednesday,YONGE BD STATION,MUNOA,0,0,,BD,0
-2021-12-22,17:27,Wednesday,UNION STATION,PUMEL,0,0,N,YU,0
-2021-12-22,17:27,Wednesday,DUPONT STATION,MUNCA,0,0,,YU,0
-2021-12-22,17:31,Wednesday,KEELE STATION,PUMEL,0,0,,BD,0
-2021-12-22,17:39,Wednesday,ISLINGTON STATION,SUO,0,0,,BD,0
-2021-12-22,17:40,Wednesday,VAUGHAN MC STATION,TUO,3,6,S,YU,5431
-2021-12-22,17:48,Wednesday,DAVISVILLE STATION,SUAP,0,0,,YU,0
-2021-12-22,18:02,Wednesday,LAWRENCE STATION,SUSP,8,11,S,YU,5461
-2021-12-22,18:15,Wednesday,VAUGHAN MC STATION,PUOPO,0,0,S,YU,5551
-2021-12-22,18:24,Wednesday,HIGHWAY 407 STATION,PUOPO,8,11,S,YU,5551
-2021-12-22,18:28,Wednesday,JANE STATION,MUNCA,0,0,,BD,0
-2021-12-22,18:39,Wednesday,VAUGHAN MC STATION,MUSAN,3,6,S,YU,5951
-2021-12-22,18:49,Wednesday,ST CLAIR WEST STATION,SUUT,46,49,N,YU,5821
-2021-12-22,18:56,Wednesday,QUEEN STATION,MUIS,0,0,N,YU,0
-2021-12-22,19:02,Wednesday,GREENWOOD STATION,SUDP,16,20,E,BD,5240
-2021-12-22,19:04,Wednesday,WELLESLEY STATION,MUIS,0,0,,YU,0
-2021-12-22,19:11,Wednesday,DAVISVILLE STATION,MUPAA,4,7,S,YU,5856
-2021-12-22,19:40,Wednesday,KING STATION,MUIRS,0,0,N,YU,0
-2021-12-22,19:54,Wednesday,ROYAL YORK STATION,MUIS,0,0,E,BD,0
-2021-12-22,20:06,Wednesday,COXWELL STATION,MUIRS,0,0,,BD,0
-2021-12-22,20:10,Wednesday,NORTH YORK CTR STATION,MUIR,0,0,S,YU,5536
-2021-12-22,20:25,Wednesday,DUPONT STATION,MUI,12,17,N,YU,5616
-2021-12-22,20:39,Wednesday,OSGOODE STATION,SUDP,3,6,S,YU,6121
-2021-12-22,21:28,Wednesday,MUSEUM STATION,MUATC,0,0,N,YU,5596
-2021-12-22,22:00,Wednesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-12-22,22:24,Wednesday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-12-22,23:26,Wednesday,SPADINA YUS STATION,MUIRS,10,15,N,YU,5656
-2021-12-22,23:37,Wednesday,EGLINTON STATION,MUIR,4,9,S,YU,5946
-2021-12-22,23:43,Wednesday,ST PATRICK STATION,MUNCA,0,0,,YU,0
-2021-12-22,00:07,Wednesday,QUEEN STATION,MUIS,0,0,,YU,0
-2021-12-22,00:17,Wednesday,LAWRENCE STATION,EUBK,5,10,N,YU,5731
-2021-12-22,00:48,Wednesday,OSSINGTON STATION,MUIRS,0,0,E,BD,0
-2021-12-22,01:24,Wednesday,LAWRENCE WEST STATION,MUSAN,5,10,N,YU,5821
-2021-12-22,01:27,Wednesday,SHEPPARD WEST STATION,MUI,16,25,S,YU,5671
-2021-12-22,01:31,Wednesday,COXWELL STATION,MUIS,0,0,,BD,0
-2021-12-22,01:41,Wednesday,DUNDAS STATION,MUIS,0,0,N,YU,0
-2021-12-22,01:54,Wednesday,FINCH STATION,SUO,0,0,S,YU,5976
-2021-12-22,07:39,Wednesday,BAYVIEW STATION,SUO,0,0,,SHP,0
-2021-12-22,14:45,Wednesday,BAYVIEW STATION,MUNCA,0,0,,SHP,0
-2021-12-23,19:52,Thursday,MCCOWAN STATION,MRO,8,13,S,SRT,3004
-2021-12-23,03:01,Thursday,UNION STATION,MUIE,0,0,,YU,0
-2021-12-23,06:37,Thursday,DAVISVILLE STATION,EUDO,3,6,S,YU,6056
-2021-12-23,22:00,Thursday,KENNEDY SRT TO LAWREN,MRO,0,0,B,SRT,0
-2021-12-23,06:56,Thursday,HIGHWAY 407 STATION,PUOPO,3,6,S,YU,5846
-2021-12-23,07:35,Thursday,WELLESLEY STATION,MUPAA,3,6,N,YU,5986
-2021-12-23,08:09,Thursday,HIGHWAY 407 STATION,PUOPO,3,6,S,YU,5581
-2021-12-23,08:24,Thursday,KENNEDY BD STATION,MUI,4,8,W,BD,5188
-2021-12-23,08:30,Thursday,FINCH STATION,MUSAN,3,6,S,YU,5946
-2021-12-23,08:38,Thursday,NORTH YORK CTR STATION,MUIRS,0,0,,YU,0
-2021-12-23,09:36,Thursday,DUNDAS WEST STATION,TUMVS,0,0,W,BD,5079
-2021-12-23,09:37,Thursday,EGLINTON STATION,MUATC,5,8,S,YU,5456
-2021-12-23,10:49,Thursday,WARDEN STATION,EUDO,14,18,W,BD,5079
-2021-12-23,11:52,Thursday,SPADINA BD STATION,SUO,0,0,W,BD,5159
-2021-12-23,11:59,Thursday,SPADINA YU STATION,SUDP,0,0,N,YU,5541
-2021-12-23,12:12,Thursday,SPADINA YUS STATION,TUATC,4,7,N,YU,5901
-2021-12-23,12:16,Thursday,HIGHWAY 407 STATION,PUOPO,10,13,S,YU,5686
-2021-12-23,12:27,Thursday,SPADINA BD STATION,SUO,0,0,W,BD,5011
-2021-12-23,12:28,Thursday,SPADINA YUS STATION,SUDP,0,0,N,YU,5831
-2021-12-23,12:50,Thursday,QUEEN STATION,MUPAA,3,6,N,YU,5911
-2021-12-23,12:58,Thursday,KIPLING STATION,EUBK,4,8,W,BD,5152
-2021-12-23,13:54,Thursday,DUNDAS STATION,MUIS,0,0,,YU,0
-2021-12-23,14:05,Thursday,FINCH STATION,MUI,3,6,S,YU,5961
-2021-12-23,14:19,Thursday,ST CLAIR WEST STATION,SUDP,5,8,N,YU,5601
-2021-12-23,14:55,Thursday,GREENWOOD STATION,MUIS,0,0,,BD,0
-2021-12-23,15:05,Thursday,VAUGHAN MC STATION,MUIR,3,6,S,YU,5396
-2021-12-23,15:24,Thursday,ST GEORGE YUS STATION,MUPAA,0,0,S,YU,5466
-2021-12-23,16:09,Thursday,ST CLAIR WEST STATION,EUNT,9,12,N,YU,5401
-2021-12-23,16:35,Thursday,YONGE BD STATION,TUO,4,8,W,BD,5007
-2021-12-23,16:37,Thursday,WILSON STATION,MUPAA,4,7,N,YU,5776
-2021-12-23,16:45,Thursday,SPADINA BD STATION,MUO,0,0,E,BD,5313
-2021-12-23,17:00,Thursday,YORKDALE STATION,PUMEL,0,0,,YU,0
-2021-12-23,17:02,Thursday,BLOOR STATION,SUAP,0,0,S,YU,6043
-2021-12-23,17:06,Thursday,DUFFERIN STATION,MUPAA,0,0,W,BD,5066
-2021-12-23,17:16,Thursday,DUPONT STATION,MUNCA,0,0,,YU,0
-2021-12-23,17:54,Thursday,COLLEGE STATION,PUSAC,5,8,S,YU,6026
-2021-12-23,18:08,Thursday,COLLEGE STATION,PUSAC,6,9,S,YU,5426
-2021-12-23,18:09,Thursday,OSGOODE STATION,MUIRS,0,0,S,YU,0
-2021-12-23,18:11,Thursday,DONLANDS STATION,MUNCA,0,0,,BD,0
-2021-12-23,18:20,Thursday,COLLEGE STATION,PUSAC,4,7,S,YU,5456
-2021-12-23,18:20,Thursday,YORK MILLS STATION,SUDP,0,0,S,YU,5446
-2021-12-23,19:10,Thursday,DUNDAS STATION,MUIS,0,0,N,YU,0
-2021-12-23,19:57,Thursday,MAIN STREET STATION,MUNCA,0,0,,BD,0
-2021-12-23,20:28,Thursday,WOODBINE STATION,MUPAA,0,0,E,BD,5001
-2021-12-23,21:24,Thursday,MAIN STREET STATION,SUDP,3,10,W,BD,5289
-2021-12-23,21:38,Thursday,SPADINA BD STATION,SUAP,0,0,,BD,0
-2021-12-23,22:00,Thursday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-12-23,22:02,Thursday,YORK MILLS STATION,SUSA,0,0,,YU,0
-2021-12-23,23:01,Thursday,QUEEN'S PARK STATION,SUUT,0,0,N,YU,0
-2021-12-23,23:02,Thursday,CHESTER STATION,MUPAA,5,12,E,BD,5113
-2021-12-23,23:11,Thursday,FINCH STATION,MUNOA,5,10,S,YU,5596
-2021-12-23,23:49,Thursday,WARDEN STATION,SUO,0,0,E,BD,5139
-2021-12-23,00:36,Thursday,DUFFERIN STATION,PUMEL,0,0,,BD,0
-2021-12-23,00:46,Thursday,FINCH WEST STATION,PUOPO,6,11,S,YU,6021
-2021-12-23,00:55,Thursday,OSGOODE STATION,SUSA,0,0,,YU,0
-2021-12-23,05:42,Thursday,LESLIE STATION,PUOPO,4,9,E,SHP,6181
-2021-12-23,13:49,Thursday,DON MILLS STATION,PUSTS,0,0,E,SHP,6196
-2021-12-23,21:07,Thursday,SHEPPARD-YONGE STATION,TUSC,0,0,E,SHP,6171
-2021-12-24,09:32,Friday,ELLESMERE STATION,TRNCA,0,0,,SRT,0
-2021-12-24,02:02,Friday,FINCH WEST STATION,MUIS,0,0,,YU,0
-2021-12-24,16:49,Friday,MCCOWAN STATION,ERTC,6,11,S,SRT,3020
-2021-12-24,02:09,Friday,YORK MILLS STATION,SUO,0,0,N,YU,5871
-2021-12-24,17:28,Friday,KENNEDY SRT STATION,ERTC,7,12,N,SRT,3013
-2021-12-24,02:13,Friday,ROYAL YORK STATION,MUIS,0,0,E,BD,0
-2021-12-24,22:00,Friday,KENNEDY SRT STATION TO,MRO,0,0,,SRT,0
-2021-12-24,02:21,Friday,SHEPPARD WEST STATION,SUO,0,0,,YU,0
-2021-12-24,06:30,Friday,WILSON STATION,TUOS,7,10,N,YU,5826
-2021-12-24,06:45,Friday,FINCH STATION,EUSC,0,0,S,YU,5521
-2021-12-24,07:17,Friday,UNION STATION,MUPAA,3,6,N,YU,5746
-2021-12-24,07:25,Friday,DUNDAS WEST STATION,MUPAA,0,0,E,BD,5205
-2021-12-24,07:37,Friday,EGLINTON STATION,MUATC,8,11,S,YU,5866
-2021-12-24,07:45,Friday,FINCH STATION,MUSC,0,0,S,YU,5996
-2021-12-24,08:13,Friday,SHERBOURNE STATION,MUIS,3,7,E,BD,5240
-2021-12-24,08:48,Friday,ST CLAIR WEST STATION,SUDP,0,0,S,YU,5706
-2021-12-24,08:56,Friday,KEELE STATION,MUIR,10,14,W,BD,5066
-2021-12-24,09:01,Friday,DOWNSVIEW PARK STATION,PUOPO,4,7,S,YU,5691
-2021-12-24,09:06,Friday,ISLINGTON STATION,SUAP,0,0,,BD,0
-2021-12-24,09:06,Friday,SHEPPARD WEST STATION,PUOPO,6,9,S,YU,5696
-2021-12-24,09:22,Friday,VICTORIA PARK STATION,MUIS,0,0,W,BD,0
-2021-12-24,09:46,Friday,BLOOR STATION,SUDP,4,7,N,YU,5931
-2021-12-24,09:53,Friday,FINCH STATION,MUCL,6,9,S,YU,5391
-2021-12-24,10:12,Friday,SHERBOURNE STATION,PUTIJ,0,0,E,BD,5239
-2021-12-24,10:31,Friday,YONGE BD STATION,EUDO,0,0,W,BD,5162
-2021-12-24,12:23,Friday,UNION STATION,SUUT,12,15,N,YU,5861
-2021-12-24,12:46,Friday,SPADINA YUS STATION,MUIR,7,10,N,YU,5601
-2021-12-24,13:26,Friday,WELLESLEY STATION,MUNCA,0,0,,YU,0
-2021-12-24,13:30,Friday,SHEPPARD STATION,SUDP,5,8,S,YU,5996
-2021-12-24,13:39,Friday,PIONEER VILLAGE STATIO,PUOPO,3,6,N,YU,5966
-2021-12-24,13:44,Friday,YORK UNIVERSITY STATIO,PUOPO,3,6,S,YU,5966
-2021-12-24,14:34,Friday,NORTH YORK CTR STATION,MUIS,0,0,,YU,0
-2021-12-24,14:43,Friday,FINCH STATION,MUTO,4,8,S,YU,5426
-2021-12-24,15:00,Friday,PAPE STATION,PUMEL,0,0,,BD,0
-2021-12-24,15:05,Friday,SHEPPARD STATION,EUSC,0,0,N,YU,5951
-2021-12-24,15:18,Friday,KING STATION,TUO,4,7,N,YU,5441
-2021-12-24,15:30,Friday,VAUGHAN MC STATION,SUDP,0,0,,YU,0
-2021-12-24,15:45,Friday,BAY STATION,SUUT,3,7,W,BD,5208
-2021-12-24,16:05,Friday,VAUGHAN MC STATION,MUPAA,0,0,N,YU,5461
-2021-12-24,16:12,Friday,QUEEN STATION,PUMST,0,0,,YU,0
-2021-12-24,16:26,Friday,VAUGHAN MC STATION,PUOPO,0,0,S,YU,5561
-2021-12-24,16:28,Friday,HIGHWAY 407 STATION,PUOPO,3,6,S,YU,5561
-2021-12-24,16:52,Friday,KENNEDY BD STATION,MUI,4,8,W,BD,5162
-2021-12-24,16:53,Friday,DUNDAS STATION,MUIRS,0,0,W,YU,0
-2021-12-24,16:55,Friday,COXWELL STATION,MUNCA,0,0,,BD,0
-2021-12-24,17:30,Friday,ST ANDREW STATION,MUNCA,0,0,,YU,0
-2021-12-24,17:37,Friday,ST PATRICK STATION,MUNCA,0,0,,YU,0
-2021-12-24,17:41,Friday,COLLEGE STATION,SUO,0,0,N,YU,6011
-2021-12-24,17:55,Friday,WARDEN STATION,MUNCA,0,0,,BD,0
-2021-12-24,17:59,Friday,SHERBOURNE STATION,PUTIJ,5,9,E,BD,5267
-2021-12-24,18:02,Friday,DONLANDS STATION,MUNCA,0,0,,BD,0
-2021-12-24,18:02,Friday,MAIN STREET STATION,MUNCA,0,0,,BD,0
-2021-12-24,18:33,Friday,FINCH WEST STATION,PUMEL,0,0,,YU,0
-2021-12-24,19:31,Friday,KIPLING STATION,SUPOL,15,22,E,BD,5027
-2021-12-24,19:33,Friday,FINCH STATION,SUROB,0,0,S,YU,5656
-2021-12-24,19:34,Friday,KENNEDY BD STATION,SUDP,4,8,W,BD,0
-2021-12-24,19:53,Friday,DONLANDS STATION,PUSNT,0,0,E,BD,5313
-2021-12-24,19:59,Friday,PIONEER VILLAGE STATIO,PUOPO,0,0,N,YU,5976
-2021-12-24,20:03,Friday,ISLINGTON STATION,PUSI,0,0,W,BD,5291
-2021-12-24,20:04,Friday,WELLESLEY STATION,SUO,0,0,S,YU,5876
-2021-12-24,20:08,Friday,KENNEDY BD STATION,SUO,0,0,,BD,0
-2021-12-24,20:19,Friday,EGLINTON STATION,MUATC,6,9,S,YU,5766
-2021-12-24,20:37,Friday,ST GEORGE YUS STATION,MUPAA,0,0,N,YU,5426
-2021-12-24,20:47,Friday,DUNDAS STATION,MUIRS,0,0,,YU,0
-2021-12-24,21:04,Friday,LAWRENCE STATION,MUPAA,0,0,S,YU,6016
-2021-12-24,22:00,Friday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-12-24,22:05,Friday,ST CLAIR WEST STATION,EUDO,6,11,N,YU,5826
-2021-12-24,22:09,Friday,KEELE STATION,SUG,7,14,W,BD,5194
-2021-12-24,23:20,Friday,SHEPPARD STATION,MUIS,0,0,N,YU,5836
-2021-12-24,23:49,Friday,WARDEN STATION,SUO,0,0,E,BD,5139
-2021-12-24,23:51,Friday,ST GEORGE BD STATION,SUG,7,14,W,BD,5287
-2021-12-24,00:12,Friday,OSGOODE STATION,MUIRS,7,12,N,YU,5711
-2021-12-24,00:28,Friday,SPADINA YUS STATION,SUO,7,12,S,YU,6051
-2021-12-24,01:02,Friday,KENNEDY BD STATION,EUO,7,14,W,BD,5011
-2021-12-24,01:04,Friday,ROYAL YORK STATION,MUIE,0,0,,BD,0
-2021-12-24,01:17,Friday,DUNDAS STATION,MUIS,0,0,,YU,0
-2021-12-24,01:24,Friday,YONGE BD STATION,MUIS,0,0,,BD,0
-2021-12-24,01:26,Friday,CHESTER STATION,MUIRS,0,0,E,BD,0
-2021-12-24,01:27,Friday,DUPONT STATION,MUNCA,0,0,,YU,0
-2021-12-24,09:02,Friday,DON MILLS STATION,MUNCA,0,0,,SHP,0
-2021-12-24,18:49,Friday,SHEPPARD-YONGE STATION,MUIRS,0,0,,SHP,0
-2021-12-24,21:39,Friday,BAYVIEW STATION,MUIS,0,0,E,SHP,0
-2021-12-25,10:41,Saturday,KENNEDY SRT STATION,MRPLB,5,11,N,SRT,19
-2021-12-25,05:13,Saturday,UNION STATION,MUIS,0,0,,YU,0
-2021-12-25,07:06,Saturday,KENNEDY BD STATION,SUDP,0,0,,BD,0
-2021-12-25,22:00,Saturday,LAWRENCE EAST TO KENNE,MRO,0,0,,SRT,0
-2021-12-25,07:57,Saturday,BLOOR HAYDEN ENTRANCE,MUIRS,0,0,,YU,0
-2021-12-25,08:07,Saturday,DONLANDS STATION,TUNOA,5,10,W,BD,0
-2021-12-25,08:22,Saturday,VAUGHAN MC STATION,PUOPO,0,0,S,YU,5756
-2021-12-25,08:22,Saturday,HIGHWAY 407 STATION,PUOPO,6,12,S,YU,5576
-2021-12-25,08:30,Saturday,GREENWOOD STATION,TUSUP,5,10,E,BD,5060
-2021-12-25,08:49,Saturday,ROSEDALE STATION,SUDP,0,0,S,YU,5461
-2021-12-25,09:22,Saturday,WARDEN STATION,SUDP,0,0,,BD,0
-2021-12-25,09:41,Saturday,COLLEGE STATION,SUO,0,0,,YU,0
-2021-12-25,10:28,Saturday,KENNEDY BD STATION,EUNT,3,8,W,BD,5291
-2021-12-25,10:41,Saturday,EGLINTON STATION (MIGR,TUATC,4,9,S,YU,6026
-2021-12-25,11:04,Saturday,ISLINGTON STATION,SUDP,19,24,W,BD,5306
-2021-12-25,11:34,Saturday,DUNDAS STATION,SUAP,0,0,N,YU,5946
-2021-12-25,11:53,Saturday,EGLINTON STATION,SUAE,0,0,,YU,0
-2021-12-25,13:26,Saturday,EGLINTON STATION,SUDP,0,0,S,YU,5701
-2021-12-25,13:43,Saturday,COLLEGE STATION,SUUT,14,19,N,YU,5536
-2021-12-25,14:07,Saturday,DUNDAS STATION,MUO,5,10,N,YU,5671
-2021-12-25,14:12,Saturday,COXWELL STATION,TUNOA,4,8,W,BD,0
-2021-12-25,14:38,Saturday,WARDEN STATION,SUUT,0,0,W,BD,5152
-2021-12-25,14:44,Saturday,KENNEDY BD STATION,EUCA,4,8,W,BD,5014
-2021-12-25,14:50,Saturday,KIPLING STATION,MUDD,4,8,E,BD,5300
-2021-12-25,15:44,Saturday,FINCH STATION,TUNOA,5,10,,YU,0
-2021-12-25,15:47,Saturday,FINCH STATION,MUNCA,0,0,,YU,0
-2021-12-25,16:14,Saturday,WELLESLEY STATION,SUAP,0,0,N,YU,6081
-2021-12-25,16:24,Saturday,EGLINTON STATION,TUATC,3,8,S,YU,6026
-2021-12-25,16:44,Saturday,OLD MILL STATION,TUOS,4,8,E,BD,5331
-2021-12-25,16:48,Saturday,CASTLE FRANK STATION,MUIS,0,0,,BD,0
-2021-12-25,17:15,Saturday,DONLANDS STATION,MUPAA,4,8,E,BD,5331
-2021-12-25,17:20,Saturday,KIPLING STATION,SUDP,5,8,E,BD,5021
-2021-12-25,17:29,Saturday,COXWELL STATION,SUAP,0,0,,BD,0
-2021-12-25,18:03,Saturday,COXWELL STATION,TUNOA,4,8,W,BD,0
-2021-12-25,18:41,Saturday,LANSDOWNE STATION,SUUT,4,9,E,BD,5365
-2021-12-25,18:51,Saturday,WELLESLEY STATION,MUI,0,0,S,YU,5701
-2021-12-25,18:52,Saturday,DUFFERIN STATION,TUO,4,8,E,BD,5331
-2021-12-25,19:18,Saturday,EGLINTON STATION,MUATC,3,8,S,YU,5676
-2021-12-25,21:31,Saturday,SPADINA BD STATION,MUIRS,0,0,,BD,0
-2021-12-25,22:00,Saturday,YONGE UNIVERSITY SUBWA,MUO,0,0,,YU/BD,0
-2021-12-25,22:45,Saturday,EGLINTON STATION (APPR,MUATC,3,10,S,YU,5756
-2021-12-25,23:07,Saturday,BATHURST STATION,SUO,0,0,W,BD,5291
-2021-12-25,23:18,Saturday,SPADINA BD STATION,MUPAA,0,0,E,BD,5183
-2021-12-25,23:50,Saturday,WARDEN STATION,MUTO,7,14,W,BD,5368
-2021-12-25,00:18,Saturday,EGLINTON STATION,MUIS,0,0,,YU,0
-2021-12-25,00:28,Saturday,COLLEGE STATION,SUDP,0,0,S,YU,6016
-2021-12-25,00:50,Saturday,SPADINA BD STATION,MUIS,0,0,,BD,0
-2021-12-25,01:24,Saturday,DOWNSVIEW PARK STATION,SUDP,0,0,,YU,0
-2021-12-25,13:35,Saturday,DON MILLS STATION,SUDP,6,11,W,SHP,6186
-2021-12-25,13:36,Saturday,SHEPPARD-YONGE STATION,SUAP,0,0,,SHP,0
-2021-12-25,20:19,Saturday,LESLIE STATION,TUSC,0,0,W,SHP,6186
-2021-12-25,21:09,Saturday,SHEPPARD-YONGE STATION,TUNIP,5,10,E,SHP,6171
-2021-12-26,22:00,Sunday,KENNEDY SRT TO LAWREN,MRO,0,0,B,SRT,0
-2021-12-26,02:09,Sunday,LAWRENCE STATION,MUIS,0,0,,YU,0
-2021-12-26,02:42,Sunday,VAUGHAN MC STATION,SUO,0,0,,YU,0
-2021-12-26,04:32,Sunday,FINCH STATION,SUDP,0,0,,YU,0
-2021-12-26,08:00,Sunday,ST CLAIR WEST STATION,MUNCA,0,0,,YU,0
-2021-12-26,08:00,Sunday,DUFFERIN STATION,MUNCA,0,0,,BD,0
-2021-12-26,08:00,Sunday,DONLANDS STATION,MUNCA,0,0,,BD,0
-2021-12-26,08:01,Sunday,FINCH STATION,MUSC,0,0,S,YU,5831
-2021-12-26,08:32,Sunday,FINCH STATION,MUSC,3,9,S,YU,6086
-2021-12-26,08:40,Sunday,GREENWOOD STATION,MUTO,4,9,E,BD,5075
-2021-12-26,08:47,Sunday,EGLINTON STATION,TUATC,10,16,S,YU,6086
-2021-12-26,09:04,Sunday,EGLINTON STATION,MUATC,7,13,S,YU,5876
-2021-12-26,09:18,Sunday,NORTH YORK CTR STATION,MUSC,0,0,S,YU,6056
-2021-12-26,09:26,Sunday,SPADINA YUS STATION,PUOPO,5,11,N,YU,6086
-2021-12-26,09:32,Sunday,DUPONT STATION,PUOPO,3,9,N,YU,6086
-2021-12-26,10:02,Sunday,ST GEORGE YUS STATION,PUOPO,3,8,N,YU,5711
-2021-12-26,10:05,Sunday,SPADINA YUS STATION,PUOPO,5,10,N,YU,6056
-2021-12-26,10:48,Sunday,ST GEORGE BD STATION,MUPR1,125,130,W,BD,5101
-2021-12-26,10:58,Sunday,ST GEORGE YUS STATION,SUO,0,0,N,YU,5671
-2021-12-26,11:10,Sunday,CHESTER STATION,EUPI,10,15,E,BD,5075
-2021-12-26,12:03,Sunday,SPADINA YUS STATION,PUOPO,4,9,N,YU,5711
-2021-12-26,12:07,Sunday,DUPONT STATION,PUOPO,3,8,N,YU,5711
-2021-12-26,12:16,Sunday,OSSINGTON STATION,MUPAA,4,9,W,BD,5089
-2021-12-26,13:07,Sunday,BLOOR STATION,MUIS,0,0,N,YU,0
-2021-12-26,13:38,Sunday,PIONEER VILLAGE STATIO,MUIS,0,0,,YU,0
-2021-12-26,13:45,Sunday,NORTH YORK CTR STATION,SUDP,0,0,,YU,0
-2021-12-26,15:34,Sunday,LAWRENCE STATION,SUDP,27,32,S,YU,5621
-2021-12-26,17:06,Sunday,KEELE STATION,MUNCA,0,0,,BD,0
-2021-12-26,17:25,Sunday,KING STATION,MUIRS,0,0,,YU,0
-2021-12-26,18:13,Sunday,QUEEN STATION,MUIS,0,0,S,YU,0
-2021-12-26,18:14,Sunday,BROADVIEW STATION,MUIS,0,0,,BD,0
-2021-12-26,19:09,Sunday,UNION STATION,SUDP,10,17,S,YU,6036
-2021-12-26,20:07,Sunday,PAPE STATION,SUDP,11,18,E,BD,5222
-2021-12-26,20:21,Sunday,DUNDAS STATION,MUIR,10,17,N,YU,5736
-2021-12-26,20:23,Sunday,BROADVIEW STATION,SUDP,0,0,,BD,0
-2021-12-26,20:34,Sunday,FINCH STATION,TUNOA,7,14,S,YU,0
-2021-12-26,20:59,Sunday,KIPLING STATION,SUO,0,0,,BD,0
-2021-12-26,21:10,Sunday,FINCH WEST STATION,SUDP,0,0,N,YU,6031
-2021-12-26,21:16,Sunday,FINCH STATION,MUTO,3,6,S,YU,5961
-2021-12-26,22:00,Sunday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-12-26,00:15,Sunday,KENNEDY BD STATION,SUDP,0,0,,BD,0
-2021-12-26,00:25,Sunday,DAVISVILLE STATION,SUUT,9,16,S,YU,5601
-2021-12-26,00:37,Sunday,DAVISVILLE STATION,SUDP,7,14,N,YU,5491
-2021-12-26,01:13,Sunday,FINCH STATION,EUSC,0,0,S,YU,5976
-2021-12-26,01:52,Sunday,KIPLING STATION,MUIS,0,0,,BD,0
-2021-12-26,03:17,Sunday,SHEPPARD-YONGE STATION,SUG,0,0,E,SHP,6146
-2021-12-26,08:00,Sunday,LESLIE STATION,MUNCA,0,0,,SHP,0
-2021-12-27,05:30,Monday,MCCOWAN STATION,TRNCA,0,0,,SRT,0
-2021-12-27,04:46,Monday,NORTH YORK CTR STATION,MUNCA,0,0,,YU,0
-2021-12-27,05:30,Monday,BLOOR STATION,MUNCA,0,0,,YU,0
-2021-12-27,13:01,Monday,KENNEDY SRT STATION,SRO,10,17,S,SRT,3022
-2021-12-27,05:47,Monday,GREENWOOD STATION,TUNIP,4,0,E,BD,5280
-2021-12-27,18:40,Monday,SCARBOROUGH RAPID TRAN,MRO,0,0,,SRT,3014
-2021-12-27,05:59,Monday,KENNEDY BD STATION,TUNOA,5,10,W,BD,5170
-2021-12-27,19:38,Monday,KENNEDY SRT STATION,ERTC,8,14,S,SRT,3017
-2021-12-27,06:03,Monday,EGLINTON STATION,TUNOA,6,12,N,YU,0
-2021-12-27,20:34,Monday,MCCOWAN CARHOUSE,MRIE,0,0,,SRT,0
-2021-12-27,22:00,Monday,KENNEDY SRT TO LAWREN,MRO,0,0,B,SRT,0
-2021-12-27,06:26,Monday,VAUGHAN MC STATION,TUNOA,12,24,S,YU,0
-2021-12-27,06:42,Monday,FINCH STATION,MUSC,4,10,S,YU,5976
-2021-12-27,06:45,Monday,LAWRENCE WEST STATION,PUOPO,3,9,S,YU,5576
-2021-12-27,06:49,Monday,GLENCAIRN STATION,PUOPO,3,9,S,YU,5576
-2021-12-27,06:52,Monday,SHEPPARD STATION,SUDP,15,21,S,YU,5936
-2021-12-27,09:08,Monday,HIGHWAY 407 STATION,PUOPO,0,0,S,YU,5856
-2021-12-27,09:22,Monday,DUNDAS STATION,MUIS,0,0,,YU,0
-2021-12-27,09:26,Monday,ROSEDALE STATION,MUWEA,3,8,S,YU,5881
-2021-12-27,09:33,Monday,DUPONT STATION,MUNCA,0,0,,YU,0
-2021-12-27,09:49,Monday,BLOOR STATION,MUIS,0,0,,YU,0
-2021-12-27,09:57,Monday,LAWRENCE STATION,EUSC,0,0,N,YU,5671
-2021-12-27,10:28,Monday,QUEEN STATION,SUDP,0,0,N,YU,6061
-2021-12-27,11:30,Monday,KENNEDY BD STATION,TUNOA,5,10,W,BD,0
-2021-12-27,12:24,Monday,WARDEN STATION,MUPAA,4,9,W,BD,5055
-2021-12-27,12:35,Monday,EGLINTON WEST STATION,SUEAS,18,23,S,YU,5736
-2021-12-27,13:02,Monday,ROYAL YORK STATION,MUIS,0,0,,BD,0
-2021-12-27,13:05,Monday,KENNEDY BD STATION,SUPOL,12,12,E,BD,5139
-2021-12-27,13:13,Monday,DUNDAS STATION,SUUT,8,13,N,YU,5706
-2021-12-27,15:32,Monday,KENNEDY BD STATION,SUO,0,0,W,BD,5129
-2021-12-27,15:38,Monday,WARDEN STATION,SUO,5,10,W,BD,5129
-2021-12-27,16:16,Monday,BROADVIEW STATION,SUO,5,10,W,BD,5213
-2021-12-27,17:36,Monday,BROADVIEW STATION,SUO,0,0,,BD,0
-2021-12-27,17:37,Monday,DAVISVILLE STATION,MUSAN,5,10,S,YU,5881
-2021-12-27,17:56,Monday,EGLINTON STATION,SUDP,5,10,S,YU,5976
-2021-12-27,18:06,Monday,LAWRENCE STATION,SUAP,14,19,N,YU,5466
-2021-12-27,18:21,Monday,CHRISTIE STATION,MUIS,0,0,,BD,0
-2021-12-27,18:24,Monday,COLLEGE STATION,SUDP,6,11,S,YU,5966
-2021-12-27,18:28,Monday,DUNDAS WEST STATION,MUTO,5,10,W,BD,5323
-2021-12-27,18:40,Monday,BLOOR DANFORTH LINE,TUST,0,0,E,BD,5089
-2021-12-27,18:40,Monday,YONGE-UNIVERSITY AND B,TUST,0,0,N,YU,6046
-2021-12-27,18:55,Monday,BLOOR DANFORTH LINE,TUNOA,5,10,B,BD,0
-2021-12-27,19:23,Monday,ISLINGTON STATION,MUSC,0,0,E,BD,5091
-2021-12-27,19:26,Monday,VAUGHAN MC STATION,PUOPO,0,0,S,YU,5961
-2021-12-27,19:28,Monday,HIGHWAY 407 STATION,PUOPO,8,15,S,YU,5961
-2021-12-27,19:37,Monday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-12-27,19:38,Monday,YONGE BD STATION,MUNCA,0,0,,BD,0
-2021-12-27,19:45,Monday,MUSEUM STATION,MUATC,10,17,S,YU,5856
-2021-12-27,19:57,Monday,COXWELL STATION,SUDP,4,11,W,BD,5264
-2021-12-27,20:20,Monday,VICTORIA PARK STATION,SUO,0,0,,BD,0
-2021-12-27,20:28,Monday,SHEPPARD STATION,MUPAA,0,0,N,YU,5656
-2021-12-27,20:51,Monday,ST ANDREW STATION,MUNCA,0,0,,YU,0
-2021-12-27,22:00,Monday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-12-27,22:11,Monday,BLOOR STATION,SUUT,3,10,S,YU,5991
-2021-12-27,22:34,Monday,ST CLAIR STATION,SUDP,0,0,,YU,0
-2021-12-27,22:41,Monday,QUEEN STATION,MUO,0,0,,YU,0
-2021-12-27,22:53,Monday,FINCH WEST STATION,SUAP,0,0,,YU,0
-2021-12-27,23:00,Monday,YONGE BD STATION,SUUT,19,26,E,BD,5047
-2021-12-27,23:23,Monday,COLLEGE STATION,SUUT,15,22,N,YU,5671
-2021-12-27,23:26,Monday,ST CLAIR WEST STATION,MUIR,3,10,N,YU,6041
-2021-12-27,00:03,Monday,VAUGHAN MC STATION,MUSAN,7,12,S,YU,6046
-2021-12-27,00:13,Monday,YONGE BD STATION,MUIS,0,0,,BD,0
-2021-12-27,01:31,Monday,WILSON STATION,SUDP,0,0,S,YU,5454
-2021-12-27,01:55,Monday,CASTLE FRANK STATION,MUIS,0,0,,BD,0
-2021-12-27,04:57,Monday,SHEPPARD-YONGE STATION,PUOPO,0,0,E,SHP,6186
-2021-12-27,06:31,Monday,DON MILLS STATION,SUSA,5,10,W,SHP,5176
-2021-12-27,10:42,Monday,DON MILLS STATION,SUDP,0,0,E,SHP,6151
-2021-12-27,22:08,Monday,LESLIE STATION,TUSC,0,0,W,SHP,6171
-2021-12-28,16:47,Tuesday,ELLESMERE STATION,MRO,4,9,N,SRT,3003
-2021-12-28,02:10,Tuesday,FINCH STATION,MUIS,0,0,,YU,0
-2021-12-28,02:18,Tuesday,FINCH STATION,MUIS,0,0,,YU,0
-2021-12-28,22:00,Tuesday,KENNEDY SRT STATION TO,MRO,0,0,,SRT,0
-2021-12-28,02:31,Tuesday,PIONEER VILLAGE STATIO,SUAE,0,0,,YU,0
-2021-12-28,05:38,Tuesday,WILSON STATION,TUNOA,3,6,S,YU,0
-2021-12-28,05:49,Tuesday,WILSON STATION,TUNOA,3,6,S,YU,0
-2021-12-28,05:55,Tuesday,VAUGHAN MC STATION,PUOPO,0,0,S,YU,5711
-2021-12-28,06:31,Tuesday,WILSON STATION,TUNOA,3,6,S,YU,0
-2021-12-28,06:58,Tuesday,PIONEER VILLAGE STATIO,PUOPO,0,0,S,YU,6026
-2021-12-28,07:20,Tuesday,EGLINTON STATION (MIGR,EUSC,4,7,S,YU,6086
-2021-12-28,07:27,Tuesday,EGLINTON STATION,MUSC,0,0,N,YU,5836
-2021-12-28,07:55,Tuesday,DUPONT STATION,PUOPO,5,8,N,YU,6086
-2021-12-28,08:03,Tuesday,ST CLAIR WEST STATION,PUOPO,5,8,N,YU,6086
-2021-12-28,08:18,Tuesday,WILSON STATION,TUO,3,6,S,YU,5996
-2021-12-28,08:51,Tuesday,WILSON STATION,PUOPO,3,6,S,YU,5571
-2021-12-28,08:57,Tuesday,YORKDALE STATION,PUOPO,5,8,S,YU,5571
-2021-12-28,09:14,Tuesday,ST CLAIR STATION,SUO,0,0,,YU,0
-2021-12-28,10:50,Tuesday,FINCH WEST STATION,PUOPO,0,0,N,YU,5691
-2021-12-28,11:12,Tuesday,FINCH WEST STATION,PUOPO,4,7,N,YU,5766
-2021-12-28,11:19,Tuesday,YORK UNIVERSITY STATIO,PUOPO,3,6,N,YU,5766
-2021-12-28,11:28,Tuesday,WILSON STATION,MUIS,0,0,,YU,0
-2021-12-28,12:05,Tuesday,FINCH STATION,MUIR,3,6,S,YU,5991
-2021-12-28,13:48,Tuesday,LAWRENCE STATION,MUNCA,0,0,,YU,0
-2021-12-28,13:55,Tuesday,YONGE BD STATION,SUEAS,12,16,W,BD,5155
-2021-12-28,13:59,Tuesday,ROSEDALE STATION,MUPAA,0,0,N,YU,5886
-2021-12-28,14:03,Tuesday,BLOOR STATION,MUPAA,0,0,S,YU,5446
-2021-12-28,14:05,Tuesday,BLOOR STATION,MUPAA,0,0,N,YU,6011
-2021-12-28,14:25,Tuesday,SHEPPARD WEST STATION,MUIS,0,0,,YU,0
-2021-12-28,14:36,Tuesday,QUEEN'S PARK STATION,MUIS,0,0,,YU,0
-2021-12-28,14:39,Tuesday,ST GEORGE YUS STATION,MUATC,3,6,S,YU,5486
-2021-12-28,15:14,Tuesday,ST GEORGE YUS STATION,SUDP,5,8,N,YU,6011
-2021-12-28,15:16,Tuesday,MAIN STREET STATION,SUDP,0,0,W,BD,5291
-2021-12-28,15:33,Tuesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-12-28,15:47,Tuesday,WARDEN STATION,SUAP,0,0,,BD,0
-2021-12-28,16:06,Tuesday,GLENCAIRN STATION,SUDP,0,0,S,YU,5971
-2021-12-28,16:15,Tuesday,SHERBOURNE STATION,PUMEL,0,0,,BD,0
-2021-12-28,16:17,Tuesday,DUNDAS STATION,SUUT,4,7,N,YU,5861
-2021-12-28,16:18,Tuesday,WARDEN STATION,MUPR1,0,0,E,BD,5112
-2021-12-28,16:22,Tuesday,FINCH WEST STATION,SUUT,0,0,S,YU,5996
-2021-12-28,16:39,Tuesday,WOODBINE STATION,MUIRS,0,0,W,BD,0
-2021-12-28,16:44,Tuesday,EGLINTON STATION (MIGR,TUATC,7,10,S,YU,5461
-2021-12-28,17:02,Tuesday,FINCH STATION,SUUT,3,6,S,YU,5861
-2021-12-28,17:20,Tuesday,DUPONT STATION,MUNCA,0,0,,YU,0
-2021-12-28,18:28,Tuesday,FINCH STATION,SUDP,3,6,S,YU,5791
-2021-12-28,18:31,Tuesday,UNION STATION,MUNCA,0,0,,YU,0
-2021-12-28,18:46,Tuesday,OLD MILL STATION,SUDP,6,10,W,BD,5152
-2021-12-28,20:20,Tuesday,FINCH STATION,MUI,3,6,N,YU,5686
-2021-12-28,20:42,Tuesday,KIPLING STATION,TUSUP,0,0,E,BD,5239
-2021-12-28,20:44,Tuesday,CHESTER STATION,SUDP,0,0,E,BD,5116
-2021-12-28,21:21,Tuesday,UNION STATION,MUPAA,0,0,S,YU,5626
-2021-12-28,22:00,Tuesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-12-28,22:02,Tuesday,YONGE BD STATION,MUIS,0,0,,BD,0
-2021-12-28,22:53,Tuesday,ST CLAIR STATION,MUSAN,5,10,S,YU,5656
-2021-12-28,23:17,Tuesday,YORK MILLS STATION,SUUT,0,0,S,YU,6062
-2021-12-28,23:33,Tuesday,UNION STATION,MUIS,0,0,,YU,0
-2021-12-28,23:55,Tuesday,BROADVIEW STATION,SUDP,0,0,E,BD,5045
-2021-12-28,00:25,Tuesday,EGLINTON STATION,MUATC,3,8,S,YU,5541
-2021-12-28,00:30,Tuesday,VAUGHAN MC STATION,MUPAA,0,0,,YU,6191
-2021-12-28,00:44,Tuesday,SHEPPARD WEST STATION,MUIRS,0,0,N,YU,6051
-2021-12-28,01:02,Tuesday,WELLESLEY STATION,MUIS,0,0,,YU,0
-2021-12-28,01:18,Tuesday,BLOOR STATION,MUIS,0,0,S,YU,5996
-2021-12-28,01:27,Tuesday,DUNDAS STATION,MUIRS,0,0,,YU,0
-2021-12-28,01:28,Tuesday,ST GEORGE YUS STATION,PUOPO,0,0,N,YU,5446
-2021-12-28,01:33,Tuesday,YONGE BD STATION,MUIS,0,0,,BD,0
-2021-12-28,13:41,Tuesday,BAYVIEW STATION,SUDP,0,0,,SHP,0
-2021-12-28,00:41,Tuesday,SHEPPARD-YONGE STATION,SUO,0,0,,SHP,0
-2021-12-29,02:51,Wednesday,KEELE STATION,SUUT,0,0,W,BD,5011
-2021-12-29,22:00,Wednesday,KENNEDY SRT STATION TO,MRO,0,0,,SRT,0
-2021-12-29,03:08,Wednesday,VAUGHAN MC STATION,MUIS,0,0,,YU,0
-2021-12-29,04:47,Wednesday,DUFFERIN STATION,MUNCA,0,0,,BD,0
-2021-12-29,05:21,Wednesday,KIPLING STATION,SUDP,0,0,,BD,0
-2021-12-29,05:55,Wednesday,WILSON STATION,PUOPO,0,0,S,YU,5576
-2021-12-29,05:56,Wednesday,WILSON STATION,TUNOA,3,6,S,YU,0
-2021-12-29,05:58,Wednesday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-12-29,05:58,Wednesday,YORKDALE STATION,PUOPO,3,6,S,YU,5576
-2021-12-29,06:12,Wednesday,JANE STATION,EUSC,0,0,W,BD,5231
-2021-12-29,06:20,Wednesday,WILSON STATION,TUNOA,3,6,S,YU,0
-2021-12-29,06:22,Wednesday,EGLINTON STATION,TUNOA,3,6,N,YU,0
-2021-12-29,06:53,Wednesday,WILSON STATION,PUOPO,0,0,S,YU,5711
-2021-12-29,06:57,Wednesday,YORKDALE STATION,PUOPO,3,6,S,YU,5711
-2021-12-29,07:24,Wednesday,KENNEDY BD STATION,MUO,7,11,W,BD,5014
-2021-12-29,07:37,Wednesday,ST GEORGE YUS STATION,PUOPO,0,0,N,YU,6086
-2021-12-29,07:40,Wednesday,SPADINA YUS STATION,PUOPO,3,6,N,YU,6086
-2021-12-29,08:16,Wednesday,EGLINTON STATION,MUSC,0,0,N,YU,5696
-2021-12-29,09:02,Wednesday,EGLINTON STATION,MUATC,13,16,S,YU,5441
-2021-12-29,09:14,Wednesday,EGLINTON STATION,TUATC,6,9,S,YU,5881
-2021-12-29,09:56,Wednesday,EGLINTON STATION,MUATC,6,9,S,YU,5931
-2021-12-29,10:11,Wednesday,FINCH WEST STATION,MUIS,3,6,S,YU,5536
-2021-12-29,12:42,Wednesday,EGLINTON STATION,MUATC,10,13,S,YU,5931
-2021-12-29,12:48,Wednesday,NORTH YORK CTR STATION,SUDP,0,0,N,YU,5966
-2021-12-29,13:09,Wednesday,BLOOR STATION,SUDP,8,11,N,YU,6001
-2021-12-29,14:25,Wednesday,CASTLE FRANK STATION,SUO,0,0,W,BD,0
-2021-12-29,14:34,Wednesday,FINCH STATION,MUIR,4,7,S,YU,5941
-2021-12-29,15:05,Wednesday,OSGOODE STATION,MUIRS,0,0,N,YU,0
-2021-12-29,15:45,Wednesday,DUNDAS STATION,SUDP,0,0,,YU,0
-2021-12-29,16:05,Wednesday,ST PATRICK STATION,MUNCA,0,0,,YU,0
-2021-12-29,16:07,Wednesday,LAWRENCE STATION,MUNCA,0,0,,YU,0
-2021-12-29,16:25,Wednesday,SHEPPARD STATION,MUO,0,0,,YU,0
-2021-12-29,16:53,Wednesday,DUNDAS STATION,MUIS,0,0,N,YU,0
-2021-12-29,16:58,Wednesday,ST CLAIR WEST STATION,SUDP,0,0,N,YU,5541
-2021-12-29,17:00,Wednesday,DUNDAS STATION,MUNCA,0,0,,YU,0
-2021-12-29,17:10,Wednesday,ST GEORGE YUS STATION,MUPAA,0,0,S,YU,5956
-2021-12-29,17:13,Wednesday,BATHURST STATION,SUG,4,8,E,BD,5008
-2021-12-29,17:20,Wednesday,ST ANDREW STATION,MUNCA,0,0,,YU,0
-2021-12-29,17:36,Wednesday,KENNEDY BD STATION,MUNCA,0,0,,BD,0
-2021-12-29,17:40,Wednesday,OSGOODE STATION,MUNCA,0,0,,YU,0
-2021-12-29,18:02,Wednesday,DUNDAS WEST STATION,MUSC,0,0,E,BD,5112
-2021-12-29,18:26,Wednesday,JANE STATION,EUPI,6,10,E,BD,5116
-2021-12-29,18:28,Wednesday,UNION STATION,MUNCA,0,0,,YU,0
-2021-12-29,19:02,Wednesday,KIPLING STATION,PUMEL,0,0,,BD,0
-2021-12-29,19:18,Wednesday,KING STATION,MUPAA,0,0,S,YU,5871
-2021-12-29,19:19,Wednesday,DUNDAS STATION,MUIRS,0,0,N,YU,0
-2021-12-29,20:45,Wednesday,BLOOR STATION,MUIRS,0,0,,YU,0
-2021-12-29,22:00,Wednesday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-12-29,22:00,Wednesday,DONLANDS STATION,MUNCA,0,0,,BD,0
-2021-12-29,22:08,Wednesday,ST GEORGE BD STATION,SUDP,0,0,E,BD,5086
-2021-12-29,22:08,Wednesday,ST GEORGE YUS STATION,SUDP,15,25,S,YU,5471
-2021-12-29,22:16,Wednesday,HIGHWAY 407 STATION,PUOPO,3,10,S,YU,6011
-2021-12-29,22:22,Wednesday,PIONEER VILLAGE STATIO,PUOPO,15,25,S,YU,6011
-2021-12-29,22:56,Wednesday,KENNEDY BD STATION,MUTO,3,10,W,BD,5272
-2021-12-29,01:20,Wednesday,WELLESLEY STATION,MUIR,0,0,N,YU,5486
-2021-12-29,01:34,Wednesday,FINCH STATION,MUIRS,0,0,,YU,0
-2021-12-30,04:43,Thursday,ELLESMERE STATION,TRNCA,0,0,,SRT,0
-2021-12-30,02:03,Thursday,ST ANDREW STATION,MUIS,0,0,,YU,0
-2021-12-30,02:14,Thursday,KIPLING STATION,SUDP,0,0,W,BD,5368
-2021-12-30,06:07,Thursday,MCCOWAN STATION,TRNOA,5,10,S,SRT,3014
-2021-12-30,02:32,Thursday,KENNEDY BD STATION,SUAE,0,0,,BD,0
-2021-12-30,22:00,Thursday,KENNEDY SRT STATION TO,MRO,0,0,,SRT,0
-2021-12-30,05:39,Thursday,YORK MILLS STATION,MUATC,3,6,N,YU,5696
-2021-12-30,05:45,Thursday,FINCH STATION,EUSC,0,0,S,YU,5581
-2021-12-30,05:46,Thursday,GREENWOOD STATION,EUYRD,4,0,E,BD,5022
-2021-12-30,05:55,Thursday,YONGE BD STATION,TUNOA,5,0,W,BD,5272
-2021-12-30,06:18,Thursday,GLENCAIRN STATION,EUNT,10,13,S,YU,5981
-2021-12-30,06:53,Thursday,WARDEN STATION,PUMST,0,0,,BD,0
-2021-12-30,07:05,Thursday,FINCH STATION,MUSC,0,0,S,YU,5851
-2021-12-30,07:27,Thursday,SHERBOURNE STATION,SUO,5,9,E,BD,5351
-2021-12-30,07:31,Thursday,SHERBOURNE STATION,SUO,0,0,W,BD,5204
-2021-12-30,07:39,Thursday,EGLINTON WEST STATION,PUOPO,7,10,N,YU,6011
-2021-12-30,07:49,Thursday,GLENCAIRN STATION,PUOPO,4,7,N,YU,6011
-2021-12-30,08:41,Thursday,ST GEORGE YUS STATION,PUOPO,4,7,N,YU,6081
-2021-12-30,08:46,Thursday,SPADINA YUS STATION,PUOPO,4,7,N,YU,6081
-2021-12-30,09:50,Thursday,FINCH STATION,MUCL,3,6,S,YU,5621
-2021-12-30,10:21,Thursday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-12-30,10:37,Thursday,WELLESLEY STATION,MUPR1,17,20,N,YU,5681
-2021-12-30,12:01,Thursday,YORKDALE STATION,MUIE,0,0,,YU,0
-2021-12-30,12:10,Thursday,QUEEN STATION,MUIS,0,0,N,YU,0
-2021-12-30,12:44,Thursday,EGLINTON STATION,MUSC,0,0,N,YU,5696
-2021-12-30,13:10,Thursday,ISLINGTON STATION,SUDP,0,0,W,BD,5008
-2021-12-30,13:40,Thursday,DOWNSVIEW PARK STATION,MUPAA,0,0,S,YU,6126
-2021-12-30,13:58,Thursday,FINCH STATION,TUNOA,3,6,S,YU,0
-2021-12-30,14:02,Thursday,DAVISVILLE STATION,SUAP,0,0,N,YU,0
-2021-12-30,14:17,Thursday,EGLINTON STATION,MUTO,4,7,N,YU,5936
-2021-12-30,15:23,Thursday,FINCH STATION,TUNOA,3,6,S,YU,0
-2021-12-30,15:41,Thursday,WARDEN STATION,PUSNT,0,0,W,BD,5272
-2021-12-30,16:00,Thursday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-12-30,16:25,Thursday,WILSON STATION,SUDP,5,8,S,YU,6061
-2021-12-30,17:06,Thursday,FINCH STATION,TUNOA,8,11,S,YU,0
-2021-12-30,17:30,Thursday,VAUGHAN MC STATION,TUNOA,6,3,S,YU,0
-2021-12-30,17:35,Thursday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-12-30,17:47,Thursday,YORKDALE STATION,SUDP,5,8,N,YU,5971
-2021-12-30,18:01,Thursday,KING STATION,PUMEL,0,0,,YU,0
-2021-12-30,18:21,Thursday,KENNEDY BD STATION,MUIR,4,8,W,BD,5256
-2021-12-30,18:26,Thursday,DUFFERIN STATION,SUAP,21,25,E,BD,5145
-2021-12-30,18:39,Thursday,BROADVIEW STATION,SUDP,4,8,W,BD,5171
-2021-12-30,18:49,Thursday,FINCH STATION,TUNOA,5,10,S,YU,0
-2021-12-30,18:50,Thursday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-12-30,18:51,Thursday,LANSDOWNE STATION,MUDD,3,7,E,BD,5220
-2021-12-30,21:29,Thursday,VAUGHAN MC STATION,TUNOA,5,10,S,YU,0
-2021-12-30,21:35,Thursday,OSSINGTON STATION,SUDP,18,25,E,BD,5226
-2021-12-30,21:38,Thursday,EGLINTON STATION,MUATC,0,0,N,YU,5836
-2021-12-30,22:00,Thursday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-12-30,22:10,Thursday,ST ANDREW STATION,SUUT,16,21,S,YU,5436
-2021-12-30,22:15,Thursday,RUNNYMEDE STATION,MUPAA,0,0,E,BD,5222
-2021-12-30,22:36,Thursday,FINCH WEST STATION,MUI,5,10,N,YU,5881
-2021-12-30,22:47,Thursday,WELLESLEY STATION,EUDO,3,8,N,YU,5381
-2021-12-30,22:57,Thursday,BLOOR STATION,MUPAA,0,0,S,YU,5781
-2021-12-30,23:09,Thursday,WOODBINE STATION,MUIRS,0,0,,BD,0
-2021-12-30,23:27,Thursday,COXWELL STATION,MUTO,15,22,W,BD,5131
-2021-12-30,23:51,Thursday,WILSON STATION,SUDP,6,13,S,YU,5861
-2021-12-30,23:52,Thursday,VAUGHAN MC STATION,SUDP,5,10,,YU,5826
-2021-12-30,00:02,Thursday,DUPONT STATION,PUOPO,4,7,N,YU,6011
-2021-12-30,00:25,Thursday,ST GEORGE YUS STATION,PUSAC,6,11,S,YU,5581
-2021-12-30,00:37,Thursday,DUPONT STATION,SUAP,19,24,N,YU,5921
-2021-12-30,01:04,Thursday,VAUGHAN MC STATION,MUATC,10,15,S,YU,5821
-2021-12-30,01:32,Thursday,EGLINTON STATION (MIGR,MUATC,10,15,S,YU,5971
-2021-12-30,01:32,Thursday,WILSON STATION,SUDP,0,0,S,YU,5561
-2021-12-30,01:47,Thursday,COLLEGE STATION,MUIS,0,0,,YU,0
-2021-12-30,16:00,Thursday,SHEPPARD-YONGE STATION,TUSC,0,0,W,SHP,6186
-2021-12-30,01:42,Thursday,LESLIE STATION,TUSC,0,0,W,SHP,6191
-2021-12-31,05:27,Friday,EGLINTON STATION,TUNOA,5,8,N,YU,0
-2021-12-31,04:15,Friday,MIDLAND STATION,TRNCA,0,0,,SRT,0
-2021-12-31,05:35,Friday,DUFFERIN STATION,MUNCA,0,0,,BD,0
-2021-12-31,12:00,Friday,ELLESMERE STATION,TRNCA,0,0,,SRT,0
-2021-12-31,16:55,Friday,MCCOWAN STATION,TRNOA,5,10,S,SRT,3018
-2021-12-31,05:37,Friday,VAUGHAN MC STATION,TUNOA,3,6,S,YU,0
-2021-12-31,05:40,Friday,CASTLE FRANK STATION,MUNCA,0,0,,BD,0
-2021-12-31,18:59,Friday,SCARBOROUGH CTR STATIO,SRDP,0,0,N,SRT,3017
-2021-12-31,22:00,Friday,KENNEDY SRT STATION TO,MRO,0,0,,SRT,0
-2021-12-31,05:49,Friday,OLD MILL STATION,TUOS,0,0,W,BD,5256
-2021-12-31,05:53,Friday,EGLINTON STATION,TUNOA,5,8,N,YU,0
-2021-12-31,05:54,Friday,WILSON STATION,TUNOA,3,6,S,YU,0
-2021-12-31,06:00,Friday,BROADVIEW STATION,MUNCA,0,0,,BD,0
-2021-12-31,06:08,Friday,WILSON STATION,TUNOA,3,6,S,YU,0
-2021-12-31,06:09,Friday,WILSON STATION,TUNOA,3,6,S,YU,0
-2021-12-31,06:09,Friday,KENNEDY BD STATION,MUTO,3,7,W,BD,5272
-2021-12-31,06:50,Friday,WILSON STATION,TUNOA,3,6,S,YU,0
-2021-12-31,07:09,Friday,ST CLAIR STATION,MUIS,0,0,,YU,0
-2021-12-31,07:39,Friday,ST CLAIR WEST STATION,PUOPO,4,7,N,YU,5571
-2021-12-31,07:51,Friday,LAWRENCE WEST STATION,PUOPO,3,6,N,YU,5571
-2021-12-31,08:26,Friday,FINCH STATION,MUSC,0,0,S,YU,6011
-2021-12-31,08:40,Friday,KENNEDY BD STATION,MUIR,0,0,W,BD,5047
-2021-12-31,09:01,Friday,YONGE BD STATION,TUOS,3,7,E,BD,5234
-2021-12-31,09:39,Friday,DUNDAS WEST STATION,MUIS,0,0,,BD,0
-2021-12-31,09:52,Friday,EGLINTON STATION,SUO,0,0,S,YU,5516
-2021-12-31,10:52,Friday,KENNEDY BD STATION,SUDP,3,7,W,BD,5153
-2021-12-31,11:04,Friday,KING STATION,MUO,4,7,N,YU,6041
-2021-12-31,11:18,Friday,MAIN STREET STATION,MUSC,0,0,W,BD,5049
-2021-12-31,11:34,Friday,SHERBOURNE STATION,MUPAA,0,0,E,BD,5363
-2021-12-31,11:55,Friday,SPADINA YUS STATION,PUOPO,5,8,N,YU,6011
-2021-12-31,12:02,Friday,PIONEER VILLAGE STATIO,PUOPO,0,0,S,YU,5771
-2021-12-31,12:09,Friday,YORK UNIVERSITY STATIO,PUOPO,10,13,S,YU,5771
-2021-12-31,13:17,Friday,BATHURST STATION,MUSC,0,0,W,BD,5049
-2021-12-31,13:30,Friday,KING STATION,MUNCA,0,0,,YU,0
-2021-12-31,13:44,Friday,FINCH STATION,TUNOA,3,6,S,YU,0
-2021-12-31,13:50,Friday,WELLESLEY STATION,MUNCA,0,0,,YU,0
-2021-12-31,13:51,Friday,KENNEDY BD STATION,TUNOA,4,8,E,BD,0
-2021-12-31,13:57,Friday,GREENWOOD STATION,MUNCA,0,0,,BD,0
-2021-12-31,14:02,Friday,LANSDOWNE STATION,MUNCA,0,0,,BD,0
-2021-12-31,14:26,Friday,KEELE STATION,TUNOA,4,8,E,BD,0
-2021-12-31,14:34,Friday,GO PROTOCOL,MUO,0,0,,,0
-2021-12-31,14:37,Friday,FINCH STATION,TUNOA,3,6,S,YU,0
-2021-12-31,14:37,Friday,ST CLAIR WEST STATION,MUIR,4,7,S,YU,5746
-2021-12-31,14:37,Friday,FINCH STATION,TUNOA,3,6,S,YU,0
-2021-12-31,15:26,Friday,WILSON STATION,MUI,24,27,N,YU,5686
-2021-12-31,16:12,Friday,KENNEDY BD STATION,TUNOA,4,8,E,BD,0
-2021-12-31,17:06,Friday,DUNDAS STATION,MUIS,0,0,,YU,0
-2021-12-31,17:08,Friday,DUNDAS STATION,MUPAA,3,6,S,YU,5656
-2021-12-31,17:25,Friday,ST CLAIR WEST STATION,MUNCA,0,0,,YU,0
-2021-12-31,17:27,Friday,ST GEORGE YUS STATION,MUTO,7,10,S,YU,5886
-2021-12-31,17:27,Friday,DUPONT STATION,MUNCA,0,0,,YU,0
-2021-12-31,17:35,Friday,ST PATRICK STATION,MUNCA,0,0,,YU,0
-2021-12-31,17:41,Friday,ST GEORGE YUS STATION,MUTO,4,7,S,YU,5541
-2021-12-31,17:53,Friday,FINCH STATION,TUNOA,3,6,S,YU,0
-2021-12-31,17:55,Friday,OSGOODE STATION,MUNCA,0,0,,YU,0
-2021-12-31,17:59,Friday,BROADVIEW STATION,SUDP,6,10,E,BD,5207
-2021-12-31,18:03,Friday,FINCH STATION,TUNOA,3,6,S,YU,0
-2021-12-31,18:03,Friday,FINCH STATION,TUNOA,3,6,S,YU,0
-2021-12-31,18:14,Friday,FINCH STATION,TUNOA,3,6,S,YU,0
-2021-12-31,19:59,Friday,DUNDAS WEST STATION,SUDP,0,0,W,BD,5057
-2021-12-31,20:30,Friday,VICTORIA PARK STATION,SUAE,0,0,E,BD,5363
-2021-12-31,20:40,Friday,QUEEN STATION,MUPAA,0,0,S,YU,5471
-2021-12-31,20:51,Friday,FINCH STATION,TUNOA,5,10,S,YU,0
-2021-12-31,21:16,Friday,VAUGHAN MC STATION,PUOPO,0,0,S,YU,5586
-2021-12-31,21:20,Friday,HIGHWAY 407 STATION,PUOPO,4,8,,YU,5586
-2021-12-31,21:26,Friday,ST GEORGE YUS STATION,SUDP,5,10,S,YU,6001
-2021-12-31,21:34,Friday,QUEEN'S PARK STATION,MUIS,0,0,S,YU,6001
-2021-12-31,21:50,Friday,ST GEORGE YUS STATION,TUNOA,5,10,N,YU,0
-2021-12-31,22:00,Friday,MAIN STREET STATION,SUO,0,0,E,BD,0
-2021-12-31,22:00,Friday,YONGE-UNIVERSITY AND B,MUO,0,0,,YU/BD,0
-2021-12-31,23:25,Friday,FINCH STATION,MUIS,0,0,,YU,0
-2021-12-31,00:02,Friday,KENNEDY BD STATION,MUIS,0,0,,BD,0
-2021-12-31,00:26,Friday,MUSEUM STATION,MUSAN,0,0,N,YU,5516
-2021-12-31,01:10,Friday,MUSEUM STATION,SUUT,0,0,N,YU,5591
-2021-12-31,01:12,Friday,FINCH STATION,SUDP,5,10,S,YU,5983
-2021-12-31,01:21,Friday,EGLINTON WEST STATION,PUOPO,3,8,N,YU,6046
-2021-12-31,01:37,Friday,SHEPPARD WEST STATION,SUDP,0,0,S,YU,5536
-2021-12-31,07:00,Friday,DON MILLS STATION,TUSC,0,0,E,SHP,6146
diff --git a/05_src/data/slides_data/apartment_building_evaluation.csv b/05_src/data/slides_data/apartment_building_evaluation.csv
deleted file mode 100644
index ebea3bf0f..000000000
--- a/05_src/data/slides_data/apartment_building_evaluation.csv
+++ /dev/null
@@ -1,9937 +0,0 @@
-_id,RSN,YEAR_REGISTERED,YEAR_EVALUATED,YEAR_BUILT,PROPERTY_TYPE,WARD,WARDNAME,SITE_ADDRESS,CONFIRMED_STOREYS,CONFIRMED_UNITS,EVALUATION_COMPLETED_ON,SCORE,RESULTS_OF_SCORE,NO_OF_AREAS_EVALUATED,ENTRANCE_LOBBY,ENTRANCE_DOORS_WINDOWS,SECURITY,STAIRWELLS,LAUNDRY_ROOMS,INTERNAL_GUARDS_HANDRAILS,GARBAGE_CHUTE_ROOMS,GARBAGE_BIN_STORAGE_AREA,ELEVATORS,STORAGE_AREAS_LOCKERS,INTERIOR_WALL_CEILING_FLOOR,INTERIOR_LIGHTING_LEVELS,GRAFFITI,EXTERIOR_CLADDING,EXTERIOR_GROUNDS,EXTERIOR_WALKWAYS,BALCONY_GUARDS,WATER_PEN_EXT_BLDG_ELEMENTS,PARKING_AREA,OTHER_FACILITIES,GRID,LATITUDE,LONGITUDE,X,Y
-887210,4156313,2017.0,,1965.0,TCHC,20,Scarborough Southwest,3181 EGLINTON AVE E,7,103,2022-06-29,53,Evaluation needs to be conducted in 1 year,19,2.0,3.0,2.0,2.0,3.0,3.0,2.0,2.0,3.0,,2.0,3.0,2.0,3.0,3.0,3.0,2.0,3.0,3.0,4.0,E2027,43.7426293696,-79.2196525266,327364.75800000003,4844556.449
-887211,4153980,2017.0,,1959.0,PRIVATE,8,Eglinton-Lawrence,665 ROSELAWN AVE,5,87,2022-06-22,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,3.0,3.0,4.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,3.0,5.0,4.0,4.0,3.0,4.0,,N0833,43.705178016000005,-79.425108275,310820.12,4840361.5430000005
-887212,4155584,2017.0,,1970.0,TCHC,22,Scarborough-Agincourt,365 BAY MILLS BLVD,13,186,2022-06-13,93,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,5.0,5.0,4.0,4.0,5.0,,3.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,5.0,5.0,E2226,43.7812403712,-79.3008424612,320815.234,4848827.17
-887213,4155686,2017.0,,2003.0,SOCIAL HOUSING,8,Eglinton-Lawrence,651 LAWRENCE AVE W,3,24,2022-06-13,85,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,3.0,,4.0,,3.0,,,5.0,4.0,5.0,5.0,4.0,4.0,,5.0,5.0,4.0,N0827,43.716103619399995,-79.4429013897,309385.499,4841573.16
-887214,4848750,2021.0,,1954.0,PRIVATE,19,Beaches-East York,996 O'CONNOR DR,3,18,2022-06-10,65,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,2.0,4.0,,3.0,,,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1921,43.709175201899995,-79.3105723901,320050.275,4840819.291
-887215,4155591,2017.0,,1968.0,TCHC,9,Davenport,61 PELHAM PARK GDNS,17,352,2022-06-10,65,Evaluation needs to be conducted in 1 year,20,3.0,4.0,5.0,2.0,3.0,5.0,3.0,4.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,S0926,43.66925972,-79.457795659,308187.607,4836369.289
-887216,4155743,2017.0,,1954.0,PRIVATE,20,Scarborough Southwest,3015 D QUEEN ST E,4,16,2022-05-31,81,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,E2033,43.6747055108,-79.2773893392,322734.656,4836996.393999999
-887217,4153409,2017.0,,1970.0,PRIVATE,10,Spadina-Fort York,164 GRANGE AVE,3,24,2022-05-28,59,Evaluation needs to be conducted in 1 year,15,2.0,3.0,4.0,2.0,2.0,3.0,,4.0,,,3.0,3.0,5.0,2.0,3.0,3.0,3.0,2.0,,,S1023,43.651378351400005,-79.40116552180001,312757.065,4834385.593
-887218,4156118,2017.0,,1969.0,TCHC,13,Toronto Centre,325 BLEECKER ST,24,327,2022-05-27,82,Evaluation needs to be conducted in 2 years,18,4.0,5.0,5.0,4.0,5.0,4.0,4.0,5.0,3.0,,4.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,,S1323,43.669381383,-79.37437191,314915.151,4836389.54
-887219,4156176,2018.0,,1953.0,PRIVATE,19,Beaches-East York,7 STAG HILL DR,4,37,2022-05-27,89,Evaluation needs to be conducted in 3 years,17,5.0,4.0,5.0,4.0,4.0,5.0,,4.0,,5.0,4.0,5.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,,S1927,43.703054654,-79.310513888,320053.882,4840170.906
-887220,4156031,2017.0,,1965.0,PRIVATE,19,Beaches-East York,165 BARRINGTON AVE,19,265,2022-05-27,76,Evaluation needs to be conducted in 2 years,19,4.0,5.0,3.0,5.0,3.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,5.0,4.0,2.0,,S1930,,,320678.849,4839169.774
-887221,4156296,2017.0,,1963.0,PRIVATE,12,Toronto-St. Paul's,33 HOLLY ST,14,162,2022-05-27,83,Evaluation needs to be conducted in 2 years,16,5.0,5.0,5.0,4.0,4.0,5.0,,5.0,4.0,4.0,3.0,3.0,5.0,3.0,3.0,4.0,,4.0,,,S1228,,,313151.623,4840442.969
-887222,4153194,2019.0,,1920.0,PRIVATE,11,University-Rosedale,245 A HOWLAND AVE,3,24,2022-05-27,77,Evaluation needs to be conducted in 2 years,13,4.0,4.0,4.0,4.0,,4.0,,4.0,,,3.0,5.0,5.0,3.0,3.0,4.0,,3.0,,,S1126,43.672858631000004,-79.411200872,311944.724,4836772.006
-887223,4156250,2017.0,,1964.0,TCHC,13,Toronto Centre,295 SHUTER ST,16,300,2022-05-27,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,3.0,4.0,5.0,4.0,,4.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,4.0,S1329,43.65644665600001,-79.36542470100001,315647.841,4834985.943
-887224,4153604,2017.0,,1929.0,PRIVATE,14,Toronto-Danforth,569 BROADVIEW AVE,4,48,2022-05-27,83,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,4.0,,5.0,,4.0,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,,,S1428,43.6724718142,-79.3550560331,316472.52,4836734.465
-887225,4154541,2020.0,,1956.0,PRIVATE,8,Eglinton-Lawrence,65 WASDALE CRES,3,11,2022-05-27,85,Evaluation needs to be conducted in 2 years,16,5.0,5.0,5.0,5.0,3.0,5.0,,4.0,,,5.0,3.0,5.0,4.0,3.0,4.0,4.0,3.0,5.0,,N0823,43.7301212379,-79.4376331135,309808.878,4843130.784
-887226,4156316,2017.0,,1969.0,TCHC,19,Beaches-East York,444 LUMSDEN AVE,42,183,2022-05-27,64,Evaluation needs to be conducted in 1 year,20,4.0,4.0,5.0,3.0,2.0,5.0,5.0,3.0,3.0,4.0,2.0,4.0,3.0,2.0,2.0,2.0,4.0,3.0,2.0,2.0,S1930,43.695629657,-79.302310982,320791.011,4839337.097
-887227,4155920,2017.0,,1967.0,PRIVATE,5,York South-Weston,1775 WESTON RD,25,245,2022-05-27,71,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,2.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,,W0527,43.6994166431,-79.51287144,303746.982,4839717.978999999
-887228,4167701,2017.0,,1980.0,TCHC,13,Toronto Centre,417 GERRARD ST E,3,12,2022-05-26,67,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,4.0,,4.0,4.0,,S1330,43.6620246346,-79.3620805585,315907.982,4835572.868
-887229,4156712,2017.0,,2014.0,TCHC,13,Toronto Centre,40 LOWER RIVER ST.,8,128,2022-05-26,82,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,S1336,,,316411.458,4834934.032
-887230,4152821,,,1970.0,PRIVATE,24,Scarborough-Guildwood,3827 LAWRENCE AVE E,7,88,2022-05-26,72,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,4.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,4.0,5.0,3.0,4.0,3.0,3.0,4.0,3.0,,E2431,43.7620489485,-79.211440469,328018.711,4846716.13
-887231,4156430,2017.0,,1972.0,TCHC,7,Humber River-Black Creek,7 ARLETA AVE,4,201,2022-05-26,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,W0732,43.7420099966,-79.5008716177,304714.372,4844449.658
-887232,4288801,2017.0,,1920.0,PRIVATE,19,Beaches-East York,84 WILLOW AVE,3,18,2022-05-26,77,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,4.0,5.0,5.0,,4.0,,4.0,3.0,4.0,5.0,3.0,4.0,3.0,,3.0,,,S1942,43.6726703072,-79.2866950453,321984.865,4836768.337
-887233,4155806,2017.0,,1950.0,PRIVATE,20,Scarborough Southwest,1641 KINGSTON RD,3,11,2022-05-26,65,Evaluation needs to be conducted in 1 year,16,3.0,4.0,5.0,3.0,2.0,3.0,,3.0,,3.0,3.0,3.0,4.0,2.0,3.0,4.0,,3.0,4.0,,E2034,43.690864521,-79.265477585,323718.011,4838812.556
-887234,4154755,2017.0,,1970.0,TCHC,18,Willowdale,175 CUMMER AVE,4,246,2022-05-26,88,Evaluation needs to be conducted in 3 years,18,4.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,5.0,,4.0,5.0,5.0,5.0,4.0,4.0,,5.0,4.0,4.0,N1823,43.78785777,-79.408640775,312137.248,4849548.181
-887235,4265577,2017.0,,2012.0,SOCIAL HOUSING,13,Toronto Centre,425 DUNDAS ST E,5,32,2022-05-26,75,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,3.0,3.0,4.0,4.0,4.0,,,3.0,4.0,3.0,4.0,4.0,4.0,,4.0,,,S1329,43.65908018,-79.366823235,315526.799,4835242.136
-887236,4250524,2017.0,,1971.0,PRIVATE,22,Scarborough-Agincourt,10 CHICHESTER PL,16,220,2022-05-25,86,Evaluation needs to be conducted in 3 years,20,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,E2225,43.776428638,-79.32148352600001,319154.674,4848289.796
-887237,4169173,2017.0,,1960.0,PRIVATE,12,Toronto-St. Paul's,1685 EGLINTON AVE W,3,38,2022-05-25,73,Evaluation needs to be conducted in 2 years,14,3.0,4.0,5.0,3.0,,3.0,,3.0,,,3.0,4.0,5.0,3.0,4.0,4.0,,3.0,4.0,,S1222,43.696203167,-79.446372358,309106.94,4839363.1110000005
-887238,4254280,2017.0,,1957.0,PRIVATE,21,Scarborough Centre,2700 LAWRENCE AVE E,7,111,2022-05-24,70,Evaluation needs to be conducted in 2 years,20,3.0,3.0,5.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,5.0,3.0,3.0,4.0,4.0,4.0,4.0,3.0,E2129,43.752739741999996,-79.26107689199999,324024.834,4845670.215
-887239,4153751,,,1955.0,PRIVATE,11,University-Rosedale,171 ST CLAIR AVE E,4,36,2022-05-24,61,Evaluation needs to be conducted in 1 year,18,2.0,3.0,4.0,2.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,,,S1121,43.689555816,-79.38601833050001,313973.18100000004,4838628.565
-887240,5051013,2018.0,,1962.0,PRIVATE,2,Etobicoke Centre,505 THE WEST MALL,6,59,2022-05-24,88,Evaluation needs to be conducted in 3 years,18,4.0,3.0,5.0,5.0,4.0,5.0,,5.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,W0231,43.648859107,-79.568021211,299290.266,4834104.598
-887241,4264301,2017.0,,1961.0,PRIVATE,16,Don Valley East,60 NORTH HILLS TER,5,71,2022-05-24,83,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,N1627,43.73018689,-79.34090279899999,317616.98,4843168.044
-887242,4156557,2017.0,,1970.0,TCHC,24,Scarborough-Guildwood,3941 LAWRENCE AVE E,3,33,2022-05-21,65,Evaluation needs to be conducted in 1 year,17,2.0,2.0,5.0,3.0,3.0,4.0,,3.0,,,3.0,4.0,2.0,3.0,3.0,3.0,3.0,4.0,4.0,4.0,E2431,43.763624835,-79.2044874649,328577.92600000004,4846893.162
-887243,4152822,2017.0,,1975.0,PRIVATE,24,Scarborough-Guildwood,3895 LAWRENCE AVE E,10,114,2022-05-20,69,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,2.0,3.0,4.0,3.0,4.0,4.0,2.0,3.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,2.0,,E2431,43.763136467200006,-79.2079803013,328296.891,4846837.916
-887244,4152557,2017.0,,1932.0,PRIVATE,20,Scarborough Southwest,2402 QUEEN ST E,4,21,2022-05-20,83,Evaluation needs to be conducted in 2 years,14,4.0,5.0,5.0,4.0,4.0,4.0,,4.0,,,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,E2033,43.674568931,-79.279856653,322540.37100000004,4836989.545
-887245,4589593,,,,PRIVATE,10,Spadina-Fort York,49 MC CAUL ST,4,40,2022-05-20,87,Evaluation needs to be conducted in 3 years,14,5.0,3.0,5.0,4.0,,5.0,,5.0,,,4.0,3.0,5.0,4.0,5.0,5.0,4.0,4.0,,,S1024,43.651593328000004,-79.390062452,313646.234,4834433.527
-887246,4153639,2019.0,,1915.0,PRIVATE,14,Toronto-Danforth,279 WOODFIELD RD,4,42,2022-05-20,55,Evaluation needs to be conducted in 1 year,13,2.0,2.0,3.0,2.0,,3.0,,4.0,,,2.0,3.0,5.0,2.0,3.0,3.0,,2.0,,,S1439,43.6716640558,-79.323704314,319000.793,4836649.59
-887247,4152556,2017.0,,1937.0,PRIVATE,20,Scarborough Southwest,2406 QUEEN ST E,4,13,2022-05-20,81,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,3.0,4.0,5.0,3.0,4.0,4.0,,5.0,4.0,,E2033,43.6747748062,-79.2796021139,322556.21,4837003.617
-887248,4152845,2017.0,,1967.0,PRIVATE,24,Scarborough-Guildwood,4010 LAWRENCE AVE E,14,220,2022-05-20,87,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,,4.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,,E2428,43.7667315745,-79.1988475843,329030.765,4847239.93
-887249,4152846,2017.0,,1967.0,PRIVATE,24,Scarborough-Guildwood,4000 LAWRENCE AVE E,12,141,2022-05-20,91,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,3.0,5.0,5.0,5.0,5.0,5.0,,5.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,E2428,43.766112076499994,-79.20001022699999,328937.41,4847170.768999999
-887250,4153786,2017.0,,1956.0,PRIVATE,15,Don Valley West,299 FORMAN AVE,4,29,2022-05-19,54,Evaluation needs to be conducted in 1 year,14,2.0,3.0,3.0,3.0,,3.0,,3.0,,,3.0,3.0,5.0,2.0,2.0,2.0,,3.0,1.0,,N1530,43.7077721579,-79.38523195970001,314033.795,4840652.473
-887251,4154390,2017.0,,1971.0,PRIVATE,6,York Centre,1491 WILSON AVE,4,40,2022-05-19,92,Evaluation needs to be conducted in 3 years,17,5.0,4.0,5.0,4.0,4.0,5.0,,5.0,5.0,,4.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,3.0,,N0631,43.7210593551,-79.5047297893,304403.425,4842122.21
-887252,4154394,2017.0,,1960.0,PRIVATE,6,York Centre,1393 WILSON AVE,4,82,2022-05-19,91,Evaluation needs to be conducted in 3 years,17,4.0,4.0,5.0,5.0,4.0,4.0,,5.0,5.0,,4.0,5.0,5.0,4.0,4.0,5.0,5.0,5.0,4.0,,N0631,43.7217077411,-79.50033280779999,304757.70399999997,4842194.225
-887253,5046735,,,,PRIVATE,10,Spadina-Fort York,165 BATHURST ST,6,96,2022-05-19,72,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,3.0,5.0,4.0,,3.0,4.0,,4.0,3.0,3.0,2.0,4.0,3.0,,4.0,,,S1029,43.64673173,-79.40357889,312555.982,4833868.531
-887254,4154376,2017.0,,1953.0,PRIVATE,6,York Centre,939-941 WILSON AVE,3,16,2022-05-19,86,Evaluation needs to be conducted in 3 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,5.0,,5.0,4.0,5.0,5.0,4.0,4.0,4.0,,4.0,4.0,,N0632,43.72933702,-79.471517906,307073.58,4843029.948
-887255,5004754,,,,PRIVATE,14,Toronto-Danforth,230 COSBURN AVE,3,32,2022-05-19,64,Evaluation needs to be conducted in 1 year,16,3.0,2.0,4.0,3.0,4.0,4.0,,3.0,,,3.0,2.0,5.0,2.0,3.0,4.0,3.0,3.0,3.0,,S1422,43.6907505375,-79.3437401255,317381.172,4838766.775
-887256,4285956,2017.0,,1968.0,TCHC,5,York South-Weston,121 HUMBER BLVD,14,215,2022-05-19,65,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,2.0,5.0,5.0,3.0,3.0,3.0,,2.0,3.0,2.0,4.0,3.0,3.0,4.0,4.0,3.0,4.0,W0539,43.6784336179,-79.48189258880001,,
-887257,4155016,2017.0,,1952.0,PRIVATE,9,Davenport,365 WESTMOUNT AVE,3,29,2022-05-19,73,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,3.0,2.0,3.0,,4.0,,,4.0,4.0,5.0,3.0,3.0,4.0,,5.0,3.0,,S0925,43.6850733378,-79.4444390829,309263.80100000004,4838125.757
-887258,4153149,2019.0,,1911.0,PRIVATE,9,Davenport,225 GLADSTONE AVE,4,27,2022-05-19,60,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,3.0,5.0,2.0,3.0,3.0,3.0,,3.0,,,S0937,43.6493592565,-79.4295355197,310468.76399999997,4834158.985
-887259,4154158,2017.0,,1966.0,PRIVATE,15,Don Valley West,79 THORNCLIFFE PARK DR,17,319,2022-05-19,86,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,3.0,5.0,4.0,3.0,5.0,4.0,2.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,,N1533,43.706138296499994,-79.341500497,317558.451,4840476.663
-887260,4152808,2018.0,,1977.0,PRIVATE,24,Scarborough-Guildwood,399 MARKHAM RD,15,254,2022-05-19,71,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,3.0,5.0,4.0,4.0,4.0,,3.0,3.0,3.0,4.0,3.0,3.0,4.0,4.0,3.0,,E2430,43.749222652,-79.2207962727,327270.184,4845288.627
-887261,4154234,2017.0,,1971.0,PRIVATE,7,Humber River-Black Creek,1825 FINCH AVE W,16,171,2022-05-19,76,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,4.0,4.0,5.0,3.0,3.0,4.0,,3.0,4.0,5.0,3.0,5.0,4.0,3.0,3.0,3.0,,W0730,43.757886117,-79.511912431,303825.107,4846214.47
-887262,4154676,2018.0,,1940.0,PRIVATE,8,Eglinton-Lawrence,284 LAWRENCE AVE W,3,15,2022-05-19,68,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,2.0,3.0,4.0,,4.0,,4.0,3.0,2.0,5.0,2.0,5.0,4.0,4.0,3.0,1.0,,N0824,43.722781903999994,-79.4147683838,311651.724,4842317.086
-887263,4154211,2017.0,,1950.0,PRIVATE,7,Humber River-Black Creek,1738 WILSON AVE,3,10,2022-05-18,81,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,4.0,,4.0,,4.0,,,4.0,5.0,5.0,5.0,3.0,4.0,4.0,4.0,3.0,,W0734,43.7200316288,-79.5141632262,303643.321,4842008.141
-887264,4154210,2017.0,,1954.0,PRIVATE,7,Humber River-Black Creek,1780 WILSON AVE,3,31,2022-05-18,61,Evaluation needs to be conducted in 1 year,15,3.0,2.0,2.0,3.0,3.0,3.0,,2.0,,,3.0,4.0,5.0,4.0,4.0,3.0,,3.0,2.0,,W0734,43.7191256895,-79.5181150514,303324.903,4841907.561000001
-887265,4250265,2017.0,,1987.0,SOCIAL HOUSING,11,University-Rosedale,153 BORDEN ST,3,45,2022-05-18,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,5.0,3.0,3.0,3.0,,2.0,,,3.0,3.0,3.0,3.0,3.0,2.0,3.0,4.0,,,S1134,43.6622608263,-79.4069405435,312289.812,4835594.044
-887266,4233146,2017.0,,1958.0,PRIVATE,21,Scarborough Centre,1731 VICTORIA PARK AVE,4,43,2022-05-18,84,Evaluation needs to be conducted in 2 years,17,4.0,5.0,5.0,4.0,4.0,5.0,,4.0,,4.0,5.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,,E2131,43.73710603479999,-79.3073327749,320304.15,4843922.831
-887267,4152930,2017.0,,1986.0,PRIVATE,4,Parkdale-High Park,66 OAKMOUNT RD,12,171,2022-05-18,87,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,5.0,4.0,5.0,3.0,4.0,5.0,3.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,S0428,43.656653483199996,-79.46369050930001,307713.136,4834967.66
-887268,4155204,2017.0,,1960.0,PRIVATE,4,Parkdale-High Park,4033 OLD DUNDAS ST,5,47,2022-05-18,58,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,3.0,2.0,,3.0,,,3.0,3.0,5.0,2.0,2.0,2.0,3.0,2.0,3.0,,S0421,43.6637082321,-79.5023379758,304595.728,4835750.825
-887269,4155205,2017.0,,1959.0,PRIVATE,4,Parkdale-High Park,4029 OLD DUNDAS ST,8,29,2022-05-18,74,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,4.0,3.0,3.0,,3.0,3.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S0421,43.6639708719,-79.5021353711,304612.07,4835780.002
-887270,4269424,2017.0,,1950.0,SOCIAL HOUSING,14,Toronto-Danforth,793 GERRARD ST E,5,28,2022-05-18,64,Evaluation needs to be conducted in 1 year,15,3.0,4.0,4.0,3.0,4.0,4.0,,3.0,,,3.0,4.0,1.0,3.0,3.0,3.0,,3.0,3.0,,S1434,43.666764817200004,-79.3456335069,317233.48,4836101.799
-887271,4154006,2017.0,,1961.0,PRIVATE,8,Eglinton-Lawrence,1112 AVENUE RD,4,13,2022-05-18,80,Evaluation needs to be conducted in 2 years,16,5.0,4.0,5.0,4.0,4.0,5.0,,3.0,,,4.0,4.0,5.0,4.0,4.0,3.0,3.0,4.0,3.0,,N0833,43.70828783899999,-79.4106432574,311985.80600000004,4840707.244
-887272,4152819,2017.0,,1968.0,PRIVATE,24,Scarborough-Guildwood,567 SCARBOROUGH GOLF CLUB RD,16,224,2022-05-18,91,Evaluation needs to be conducted in 3 years,20,5.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,E2431,43.761339074,-79.2150743506,327726.39,4846636.265
-887273,4153146,2017.0,,1915.0,PRIVATE,9,Davenport,1182 QUEEN ST W,3,25,2022-05-18,63,Evaluation needs to be conducted in 1 year,13,3.0,2.0,5.0,3.0,,3.0,,3.0,,,2.0,3.0,3.0,3.0,4.0,4.0,,3.0,,,S0937,43.6430244087,-79.4258043729,310770.385,4833455.456
-887274,4156385,2017.0,,1940.0,PRIVATE,20,Scarborough Southwest,1481 KINGSTON RD,3,15,2022-05-18,59,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,2.0,,,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,E2034,43.688423918000005,-79.269500963,323393.784,4838549.187
-887275,4156035,2017.0,,1940.0,PRIVATE,20,Scarborough Southwest,1463 KINGSTON RD,3,14,2022-05-18,60,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,2.0,,,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,E2034,43.687961103999996,-79.269766888,323354.61100000003,4838512.321
-887276,4156379,2017.0,,1940.0,PRIVATE,20,Scarborough Southwest,1449 KINGSTON RD,3,14,2022-05-18,59,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,2.0,,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,E2034,43.687794468,-79.270325262,323298.75800000003,4838460.592
-887277,4155805,2017.0,,1950.0,PRIVATE,20,Scarborough Southwest,1633 KINGSTON RD,3,10,2022-05-18,73,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,3.0,3.0,4.0,,3.0,,,3.0,4.0,5.0,3.0,4.0,4.0,,3.0,,,E2034,43.690864521,-79.265477585,323718.011,4838812.556
-887278,4155804,2017.0,,1950.0,PRIVATE,20,Scarborough Southwest,1625 KINGSTON RD,3,11,2022-05-18,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,4.0,,3.0,3.0,,E2034,43.690864521,-79.265477585,323718.011,4838812.556
-887279,4907186,2021.0,,2020.0,PRIVATE,18,Willowdale,35 GREENFIELD AVE,36,361,2022-05-18,88,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,4.0,,4.0,4.0,4.0,5.0,,4.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,N1826,43.763392611,-79.410156052,312018.228,4846829.996
-887280,4155115,,,1956.0,PRIVATE,5,York South-Weston,9 GREENTREE CRT,3,28,2022-05-18,73,Evaluation needs to be conducted in 2 years,14,3.0,4.0,3.0,4.0,4.0,5.0,,3.0,,,4.0,4.0,4.0,3.0,3.0,4.0,,3.0,,,W0532,43.692147125299996,-79.4794625352,306440.017,4838910.374
-887281,4155764,2019.0,,1955.0,PRIVATE,3,Etobicoke-Lakeshore,1 A BIRCHLEA AVE,3,21,2022-05-18,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0334,43.592762174499995,-79.527405433,302571.59,4827869.423
-887282,4153991,2017.0,,1950.0,PRIVATE,12,Toronto-St. Paul's,115 EGLINTON AVE W,3,18,2022-05-18,61,Evaluation needs to be conducted in 1 year,14,3.0,3.0,4.0,2.0,2.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,4.0,3.0,,3.0,,,S1227,43.705692166300004,-79.402181637,312668.05100000004,4840419.64
-887283,4817599,2020.0,,1900.0,PRIVATE,12,Toronto-St. Paul's,595 ST CLAIR AVE W,3,15,2022-05-18,74,Evaluation needs to be conducted in 2 years,13,4.0,3.0,4.0,3.0,,4.0,,5.0,,,3.0,3.0,4.0,4.0,4.0,4.0,,3.0,,,S1235,43.6821585882,-79.4220166514,311071.858,4837803.382
-887284,4364249,2018.0,,1953.0,PRIVATE,19,Beaches-East York,9 STAG HILL DR,4,15,2022-05-18,91,Evaluation needs to be conducted in 3 years,16,5.0,3.0,5.0,5.0,5.0,5.0,,5.0,,5.0,4.0,4.0,5.0,5.0,3.0,5.0,,4.0,5.0,,S1927,43.70336356399999,-79.310527323,320055.105,4840174.598999999
-887285,4152749,2017.0,,1967.0,PRIVATE,21,Scarborough Centre,945 MIDLAND AVE,13,149,2022-05-17,72,Evaluation needs to be conducted in 2 years,18,3.0,4.0,3.0,4.0,3.0,5.0,3.0,4.0,3.0,,3.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,,E2134,43.7370346448,-79.2585189025,324236.128,4843925.117
-887286,4155134,2017.0,,1960.0,PRIVATE,5,York South-Weston,19 DENISON RD E,3,26,2022-05-17,64,Evaluation needs to be conducted in 1 year,15,2.0,3.0,2.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,4.0,4.0,4.0,4.0,,4.0,3.0,,W0527,43.696310243999996,-79.506587145,304253.209,4839373.738
-887287,4152837,2017.0,,1992.0,SOCIAL HOUSING,24,Scarborough-Guildwood,38 ANDOVER CRES,4,25,2022-05-17,89,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,4.0,5.0,5.0,3.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,3.0,4.0,5.0,4.0,4.0,,E2432,43.7656866774,-79.194946435,329345.274,4847124.988
-887288,4155188,2017.0,,1954.0,PRIVATE,5,York South-Weston,2 JASPER AVE,3,22,2022-05-17,73,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,4.0,3.0,3.0,,3.0,,,4.0,3.0,5.0,3.0,4.0,4.0,4.0,4.0,3.0,,W0535,43.6835075066,-79.4830125811,306153.977,4837950.505
-887289,4268877,,,,TCHC,21,Scarborough Centre,83 GILDER DR,6,24,2022-05-17,84,Evaluation needs to be conducted in 2 years,19,5.0,3.0,5.0,4.0,5.0,5.0,4.0,5.0,5.0,5.0,3.0,3.0,3.0,4.0,4.0,4.0,5.0,5.0,3.0,,E2134,43.7363547745,-79.25389806529999,324608.572,4843850.685
-887290,4152853,2017.0,,1970.0,PRIVATE,22,Scarborough-Agincourt,20 CHICHESTER PL,14,189,2022-05-17,84,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,4.0,4.0,3.0,4.0,5.0,5.0,5.0,4.0,5.0,5.0,3.0,5.0,5.0,2.0,3.0,4.0,,E2225,43.777312321000004,-79.321766948,319131.65,4848387.9180000005
-887291,4155146,2018.0,,1945.0,PRIVATE,5,York South-Weston,139 WOODWARD AVE,3,10,2022-05-17,70,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,4.0,3.0,2.0,,3.0,,4.0,4.0,3.0,5.0,4.0,3.0,3.0,,4.0,3.0,,W0525,43.709631600600005,-79.5071555325,304207.833,4840852.683
-887292,4364249,2018.0,,1953.0,PRIVATE,19,Beaches-East York,9 STAG HILL DR,4,15,2022-05-17,88,Evaluation needs to be conducted in 3 years,16,4.0,3.0,5.0,5.0,5.0,5.0,,5.0,,5.0,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,5.0,,S1927,43.70336356399999,-79.310527323,320055.105,4840174.598999999
-887293,4153043,2019.0,,1931.0,PRIVATE,4,Parkdale-High Park,3 ELM GROVE AVE,3,12,2022-05-17,68,Evaluation needs to be conducted in 2 years,15,3.0,4.0,3.0,3.0,3.0,4.0,,3.0,,4.0,4.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,S0436,43.638815334200004,-79.4301843033,310417.398,4832987.572
-887294,4155092,2017.0,,2009.0,SOCIAL HOUSING,5,York South-Weston,2600 EGLINTON AVE W,3,32,2022-05-16,76,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,3.0,4.0,,3.0,,,3.0,3.0,5.0,4.0,4.0,3.0,,4.0,3.0,5.0,W0533,43.690839177,-79.473005863,306960.28,4838766.143999999
-887295,4154744,2017.0,,1968.0,PRIVATE,18,Willowdale,2818 BAYVIEW AVE,3,20,2022-05-16,51,Evaluation needs to be conducted in 1 year,17,3.0,4.0,4.0,3.0,2.0,4.0,1.0,2.0,,,1.0,1.0,4.0,1.0,1.0,1.0,3.0,4.0,4.0,,N1828,43.7657782608,-79.3883472184,313774.078,4847096.221
-887296,4154248,2017.0,,1972.0,PRIVATE,7,Humber River-Black Creek,3400 WESTON RD,27,263,2022-05-16,74,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,,3.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,,W0727,43.749810628999995,-79.543432658,301286.482,4845318.212
-887297,4154025,2017.0,,1955.0,PRIVATE,8,Eglinton-Lawrence,3000 YONGE ST,12,272,2022-05-16,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,5.0,,3.0,3.0,4.0,4.0,5.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,N0829,43.723761725,-79.402367148,312650.498,4842428.0
-887298,4155115,,,1956.0,PRIVATE,5,York South-Weston,9 GREENTREE CRT,3,28,2022-05-16,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,3.0,5.0,,3.0,,,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,2.0,,W0532,43.692147125299996,-79.4794625352,306440.017,4838910.374
-887299,4155068,2017.0,,1959.0,PRIVATE,9,Davenport,2208 DUFFERIN ST,4,18,2022-05-16,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,4.0,,2.0,,,4.0,3.0,5.0,3.0,2.0,3.0,4.0,3.0,3.0,,S0922,43.69067643,-79.44845877600001,308939.113,4838748.9969999995
-887300,4154258,2018.0,,1973.0,PRIVATE,7,Humber River-Black Creek,5 DAMASK AVE,3,12,2022-05-16,76,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,3.0,4.0,4.0,,3.0,,,3.0,4.0,5.0,4.0,5.0,3.0,3.0,4.0,3.0,,W0728,43.741702861899995,-79.5393075079,301618.527,4844416.353999999
-887301,4152744,2017.0,,1962.0,PRIVATE,24,Scarborough-Guildwood,35 GREENBRAE CRCT,6,70,2022-05-16,89,Evaluation needs to be conducted in 3 years,20,5.0,5.0,3.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,5.0,5.0,4.0,4.0,4.0,5.0,5.0,5.0,4.0,E2425,43.759036474,-79.231672415,326390.498,4846376.987
-887302,4155734,2017.0,,1992.0,PRIVATE,9,Davenport,800 LANSDOWNE AVE,4,138,2022-05-16,78,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,S0930,43.6650311015,-79.4462388637,309120.17699999997,4835899.067
-887303,4152813,2017.0,,1964.0,PRIVATE,24,Scarborough-Guildwood,35 CONFEDERATION DR,8,133,2022-05-13,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,3.0,4.0,4.0,5.0,,5.0,4.0,,4.0,4.0,5.0,3.0,3.0,4.0,3.0,4.0,4.0,,E2430,43.7572104007,-79.2230052748,327089.333,4846175.445
-887304,4153165,2017.0,,1928.0,PRIVATE,9,Davenport,1019 BLOOR ST W,3,26,2022-05-13,49,Building Audit,14,2.0,2.0,1.0,3.0,,2.0,,3.0,,,3.0,3.0,2.0,2.0,3.0,2.0,,3.0,3.0,,S0934,43.6606296548,-79.4308395547,310362.521,4835410.9969999995
-887305,4152592,2018.0,,1962.0,PRIVATE,20,Scarborough Southwest,186 DANFORTH RD,4,15,2022-05-13,90,Evaluation needs to be conducted in 3 years,16,5.0,5.0,5.0,5.0,4.0,3.0,,5.0,,,5.0,5.0,5.0,4.0,5.0,4.0,3.0,5.0,4.0,,E2029,43.6993092047,-79.27375284060001,323020.45399999997,4839730.5430000005
-887306,4152617,2017.0,,1965.0,PRIVATE,20,Scarborough Southwest,506 DANFORTH RD,3,22,2022-05-13,86,Evaluation needs to be conducted in 3 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,5.0,,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,5.0,,E2030,43.709022115699995,-79.2673794919,323531.11100000003,4840811.032
-887307,4154007,2017.0,,1960.0,PRIVATE,8,Eglinton-Lawrence,1106 AVENUE RD,4,22,2022-05-13,75,Evaluation needs to be conducted in 2 years,17,4.0,3.0,5.0,3.0,4.0,3.0,,3.0,,4.0,4.0,4.0,5.0,4.0,4.0,3.0,3.0,5.0,3.0,,N0833,43.708098073100004,-79.4106259149,311987.226,4840686.163
-887308,4155545,2017.0,,1955.0,PRIVATE,3,Etobicoke-Lakeshore,1 BIRCHLEA AVE,3,10,2022-05-13,69,Evaluation needs to be conducted in 2 years,14,3.0,3.0,5.0,3.0,,4.0,,3.0,,,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0334,43.592713802700004,-79.5276951676,302548.19399999996,4827864.057
-887309,4155805,2017.0,,1950.0,PRIVATE,20,Scarborough Southwest,1633 KINGSTON RD,3,10,2022-05-13,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,2.0,3.0,,4.0,,3.0,3.0,3.0,5.0,3.0,3.0,4.0,,3.0,,,E2034,43.690864521,-79.265477585,323718.011,4838812.556
-887310,4167684,2017.0,,1948.0,TCHC,13,Toronto Centre,274 SACKVILLE ST,6,71,2022-05-13,71,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,3.0,,S1330,43.661533685,-79.36404948,315749.006,4835519.022
-887311,4154702,2017.0,,1974.0,TCHC,18,Willowdale,35 PARK HOME AVE,10,283,2022-05-13,88,Evaluation needs to be conducted in 3 years,18,4.0,4.0,5.0,4.0,5.0,4.0,4.0,5.0,5.0,,3.0,4.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,,N1824,43.768124338,-79.415525902,311585.335,4847355.239
-887312,4317586,2018.0,,1954.0,PRIVATE,20,Scarborough Southwest,3015 QUEEN ST E,4,15,2022-05-13,84,Evaluation needs to be conducted in 2 years,15,5.0,3.0,5.0,5.0,5.0,3.0,,4.0,,,4.0,5.0,5.0,4.0,3.0,4.0,,4.0,4.0,,E2033,43.6746668318,-79.2776535124,322713.36600000004,4836992.04
-887313,4317588,2018.0,,1954.0,PRIVATE,20,Scarborough Southwest,3015 A QUEEN ST E,4,15,2022-05-13,81,Evaluation needs to be conducted in 2 years,15,4.0,3.0,5.0,4.0,5.0,3.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,5.0,,E2033,43.6746668318,-79.2776535124,,
-887314,4317589,2018.0,,1954.0,PRIVATE,20,Scarborough Southwest,3015 F QUEEN ST E,4,15,2022-05-13,76,Evaluation needs to be conducted in 2 years,16,4.0,3.0,5.0,4.0,5.0,3.0,,4.0,,,3.0,4.0,5.0,3.0,4.0,4.0,,3.0,4.0,3.0,E2033,43.6746668318,-79.2776535124,,
-887315,4155630,2017.0,,1957.0,TCHC,8,Eglinton-Lawrence,4 REPLIN RD,4,30,2022-05-13,73,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,3.0,3.0,3.0,,4.0,,,3.0,3.0,5.0,4.0,3.0,4.0,,4.0,4.0,,N0823,43.717910323999995,-79.443368577,309354.813,4841773.51
-887316,4167685,2017.0,,1948.0,TCHC,13,Toronto Centre,295 SACKVILLE ST,3,48,2022-05-13,68,Evaluation needs to be conducted in 2 years,17,4.0,3.0,5.0,3.0,4.0,4.0,4.0,3.0,,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,,S1330,43.661833468000005,-79.36324770899999,315813.619,4835552.43
-887317,4155680,2017.0,,1930.0,PRIVATE,12,Toronto-St. Paul's,3 BROADWAY AVE,4,36,2022-05-13,77,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,4.0,3.0,4.0,,4.0,4.0,,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,,,S1221,43.70948336,-79.39845180489999,312968.13800000004,4840841.205
-887318,4154010,2017.0,,1974.0,PRIVATE,8,Eglinton-Lawrence,500 DUPLEX AVE,33,319,2022-05-13,83,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,3.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,N0833,43.709767508,-79.4014749326,312724.472,4840872.481000001
-887319,4153786,2017.0,,1956.0,PRIVATE,15,Don Valley West,299 FORMAN AVE,4,29,2022-05-13,48,Building Audit,15,2.0,2.0,3.0,2.0,1.0,2.0,,3.0,,,1.0,1.0,4.0,3.0,3.0,3.0,,3.0,3.0,,N1530,43.7077721579,-79.38523195970001,314033.795,4840652.473
-887320,4897867,2021.0,,2020.0,PRIVATE,11,University-Rosedale,99 GERRARD ST W,32,275,2022-05-13,91,Evaluation needs to be conducted in 3 years,17,4.0,4.0,5.0,5.0,,4.0,4.0,4.0,5.0,,5.0,3.0,5.0,5.0,5.0,5.0,,5.0,4.0,5.0,S1145,,,313970.923,4835138.057
-887321,4167694,2017.0,,1980.0,TCHC,13,Toronto Centre,325 GERRARD ST E,6,72,2022-05-13,74,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,,3.0,3.0,5.0,3.0,4.0,4.0,,4.0,3.0,,S1330,43.662101254,-79.36550611199999,315631.42100000003,4835581.8889999995
-887322,4153430,2017.0,,1918.0,SOCIAL HOUSING,13,Toronto Centre,49 MUTUAL ST,4,20,2022-05-13,85,Evaluation needs to be conducted in 2 years,16,4.0,5.0,5.0,3.0,3.0,5.0,,5.0,4.0,,4.0,4.0,5.0,4.0,5.0,4.0,,4.0,,4.0,S1332,43.65533821,-79.37472999100001,314888.613,4834829.365
-887323,4156733,2017.0,,1974.0,TCHC,8,Eglinton-Lawrence,135 NEPTUNE DR,4,48,2022-05-12,80,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,4.0,,N0823,43.729915311000006,-79.44050099100001,309577.593,4843108.688
-887324,4153990,2017.0,,1950.0,PRIVATE,12,Toronto-St. Paul's,119 EGLINTON AVE W,3,18,2022-05-12,63,Evaluation needs to be conducted in 1 year,13,2.0,3.0,2.0,2.0,,3.0,,2.0,,,4.0,3.0,5.0,3.0,5.0,4.0,,3.0,,,S1227,43.7056468063,-79.40240284949999,312650.228,4840414.579
-887325,4317590,2018.0,,1954.0,PRIVATE,20,Scarborough Southwest,3017 QUEEN ST E,4,15,2022-05-12,79,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,3.0,,4.0,,4.0,4.0,5.0,5.0,3.0,4.0,4.0,,3.0,4.0,,E2033,43.6747570284,-79.2771547349,322753.558,4837002.1680000005
-887326,4152834,2017.0,,1972.0,PRIVATE,24,Scarborough-Guildwood,80 MORNELLE CRT,16,265,2022-05-12,84,Evaluation needs to be conducted in 2 years,18,5.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,5.0,,3.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,5.0,,E2423,43.787820399999994,-79.19753046699999,329128.055,4849584.211
-887327,4317592,2018.0,,1954.0,PRIVATE,20,Scarborough Southwest,3017 B QUEEN ST E,4,15,2022-05-12,84,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,5.0,4.0,3.0,,4.0,,5.0,5.0,5.0,5.0,3.0,4.0,5.0,,3.0,4.0,,E2033,43.6747570284,-79.2771547349,,
-887328,4155425,2017.0,,1967.0,PRIVATE,1,Etobicoke North,5 JANSUSIE RD,3,45,2022-05-12,74,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,3.0,3.0,4.0,,3.0,,,2.0,2.0,5.0,4.0,3.0,4.0,4.0,5.0,4.0,,W0129,43.72849773,-79.57541136100001,298591.273,4843220.455
-887329,4317594,2018.0,,1954.0,PRIVATE,20,Scarborough Southwest,3017 G QUEEN ST E,4,15,2022-05-12,77,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,3.0,,4.0,,,4.0,5.0,4.0,3.0,4.0,4.0,,3.0,4.0,,E2033,43.6747570284,-79.2771547349,,
-887330,4153055,2017.0,,1992.0,SOCIAL HOUSING,4,Parkdale-High Park,1709 BLOOR ST W,6,80,2022-05-12,94,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,,5.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,S0432,43.654570058000004,-79.45891655,308098.342,4834736.391
-887331,4154986,2017.0,,1952.0,PRIVATE,12,Toronto-St. Paul's,236 VAUGHAN RD,5,79,2022-05-12,85,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,3.0,5.0,5.0,4.0,4.0,4.0,5.0,5.0,3.0,,S1229,43.6878267633,-79.4247971619,310847.13,4838432.92
-887332,4154739,2017.0,,1963.0,PRIVATE,15,Don Valley West,16 THE LINKS RD,4,102,2022-05-12,87,Evaluation needs to be conducted in 3 years,19,4.0,5.0,5.0,5.0,4.0,5.0,3.0,5.0,5.0,3.0,3.0,4.0,5.0,4.0,4.0,5.0,5.0,5.0,4.0,,N1521,43.751505712,-79.402827155,312609.845,4845510.073
-887333,4167680,2017.0,,2006.0,TCHC,13,Toronto Centre,259 SUMACH ST,3,47,2022-05-12,73,Evaluation needs to be conducted in 2 years,18,3.0,3.0,5.0,3.0,3.0,3.0,4.0,4.0,,,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,S1330,43.662405994,-79.360720129,316017.373,4835616.37
-887334,4152833,2017.0,,1973.0,PRIVATE,24,Scarborough-Guildwood,750 MORNINGSIDE AVE,13,165,2022-05-12,88,Evaluation needs to be conducted in 3 years,20,5.0,3.0,5.0,2.0,5.0,4.0,4.0,3.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,4.0,E2423,43.788199733999996,-79.195048036,329327.695,4849627.083000001
-887335,4155023,2017.0,,1954.0,PRIVATE,12,Toronto-St. Paul's,1 A BANSLEY AVE,4,19,2022-05-12,80,Evaluation needs to be conducted in 2 years,14,3.0,4.0,5.0,3.0,3.0,3.0,,4.0,,,4.0,5.0,5.0,4.0,4.0,4.0,,5.0,,,S1222,43.69288038569999,-79.44204325390001,309456.402,4838993.219
-887336,4152848,2017.0,,1972.0,PRIVATE,24,Scarborough-Guildwood,280 MORNINGSIDE AVE,14,165,2022-05-12,89,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,5.0,,4.0,5.0,5.0,4.0,4.0,4.0,5.0,3.0,5.0,,E2428,43.7707432757,-79.1878549542,329914.104,4847688.883
-887337,4152929,2017.0,,1965.0,PRIVATE,4,Parkdale-High Park,60 MOUNTVIEW AVE,16,221,2022-05-12,75,Evaluation needs to be conducted in 2 years,19,4.0,5.0,5.0,2.0,4.0,3.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,,S0428,43.6568780412,-79.4624258737,307815.135,4834992.653
-887338,4154935,2017.0,,1943.0,PRIVATE,12,Toronto-St. Paul's,1535 BATHURST ST,4,32,2022-05-12,89,Evaluation needs to be conducted in 3 years,15,5.0,4.0,5.0,4.0,4.0,4.0,,4.0,,4.0,5.0,5.0,5.0,3.0,5.0,5.0,,5.0,,,S1230,43.685782618699996,-79.4189403297,311319.515,4838206.2469999995
-887339,4154945,2017.0,,1940.0,PRIVATE,12,Toronto-St. Paul's,1576 BATHURST ST,4,24,2022-05-12,81,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,3.0,4.0,,5.0,,4.0,4.0,4.0,4.0,4.0,3.0,4.0,,5.0,,,S1229,43.6863326216,-79.41998131300001,311235.532,4838267.274
-887340,4154992,2017.0,,1960.0,PRIVATE,12,Toronto-St. Paul's,1596-1598 BATHURST ST,5,62,2022-05-12,89,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,5.0,5.0,5.0,,4.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,,5.0,3.0,,S1229,43.688002772,-79.420528429,311180.353,4838471.794
-887341,4152807,2017.0,,1967.0,PRIVATE,24,Scarborough-Guildwood,3969 KINGSTON RD,13,174,2022-05-12,74,Evaluation needs to be conducted in 2 years,20,4.0,3.0,3.0,3.0,3.0,4.0,3.0,5.0,4.0,3.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,E2434,43.75149072600001,-79.2033413635,328675.027,4845545.453
-887342,4154705,2017.0,,1986.0,TCHC,18,Willowdale,5430 YONGE ST,14,239,2022-05-12,85,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,5.0,5.0,4.0,5.0,5.0,,4.0,4.0,4.0,N1824,43.7759712605,-79.4152224497,311609.151,4848226.096
-887343,4152705,2017.0,,1969.0,PRIVATE,21,Scarborough Centre,815 KENNEDY RD,5,33,2022-05-11,87,Evaluation needs to be conducted in 3 years,17,4.0,4.0,5.0,4.0,4.0,5.0,,5.0,5.0,,4.0,5.0,5.0,4.0,4.0,4.0,3.0,5.0,4.0,,E2133,43.734340366800005,-79.2681240316,323463.283,4843623.61
-887344,4152884,2017.0,,1980.0,PRIVATE,23,Scarborough North,30 KIMBERCROFT CRT,8,94,2022-05-11,92,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,,5.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,,E2332,43.7906958495,-79.2383755375,325839.99100000004,4849891.516
-887345,4153117,2017.0,,1993.0,SOCIAL HOUSING,9,Davenport,6 A GREENLAW AVE,4,44,2022-05-11,82,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,,S0927,43.6725455613,-79.4464387192,309103.482,4836733.8780000005
-887346,4152856,2017.0,,1971.0,PRIVATE,22,Scarborough-Agincourt,375 BAY MILLS BLVD,14,188,2022-05-11,93,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,3.0,5.0,4.0,5.0,4.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,4.0,E2226,43.7823877317,-79.300874192,320812.374,4848954.635
-887347,4154684,2017.0,,1950.0,PRIVATE,8,Eglinton-Lawrence,2177 AVENUE RD,4,68,2022-05-11,90,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,5.0,4.0,,4.0,5.0,4.0,4.0,5.0,5.0,5.0,3.0,5.0,5.0,4.0,4.0,,N0821,43.7414140473,-79.4211970066,311131.787,4844386.431
-887348,4154683,2017.0,,1950.0,PRIVATE,8,Eglinton-Lawrence,2175 AVENUE RD,4,68,2022-05-11,90,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,5.0,4.0,,4.0,5.0,4.0,4.0,5.0,5.0,5.0,3.0,5.0,5.0,4.0,4.0,,N0821,43.7409197026,-79.4210747483,311141.686,4844331.521000001
-887349,4152726,2017.0,,1971.0,PRIVATE,21,Scarborough Centre,11 ANTRIM CRES,12,167,2022-05-11,84,Evaluation needs to be conducted in 2 years,19,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,5.0,4.0,3.0,,E2123,43.7707832946,-79.28436739029999,322144.325,4847668.7469999995
-887350,4154652,2017.0,,1965.0,PRIVATE,6,York Centre,34 CARSCADDEN DR,6,69,2022-05-11,93,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,5.0,4.0,4.0,4.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,4.0,,N0624,43.7657548154,-79.4437096635,309316.71,4847089.125
-887351,4154049,2018.0,,1959.0,PRIVATE,19,Beaches-East York,608 DAWES RD,6,84,2022-05-11,67,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,3.0,4.0,,3.0,3.0,1.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,3.0,4.0,,S1927,43.706994795,-79.295836771,321238.131,4840580.773
-887352,4154049,2018.0,,1959.0,PRIVATE,19,Beaches-East York,608 DAWES RD,6,84,2022-05-11,60,Evaluation needs to be conducted in 1 year,18,2.0,3.0,5.0,2.0,3.0,4.0,,3.0,3.0,1.0,3.0,3.0,4.0,2.0,3.0,4.0,3.0,3.0,3.0,,S1927,43.706994795,-79.295836771,321238.131,4840580.773
-887353,4152799,2017.0,,1965.0,PRIVATE,24,Scarborough-Guildwood,25 COUGAR CRT,21,236,2022-05-11,87,Evaluation needs to be conducted in 3 years,20,5.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,E2433,43.7460384485,-79.218063912,327491.43100000004,4844935.615
-887354,4152716,2017.0,,1968.0,PRIVATE,21,Scarborough Centre,2250 LAWRENCE AVE E,6,33,2022-05-11,83,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,5.0,4.0,4.0,3.0,5.0,4.0,4.0,3.0,3.0,5.0,4.0,5.0,5.0,3.0,5.0,4.0,,E2128,43.7493270741,-79.2783368218,322636.154,4845286.324
-887355,4153099,2017.0,,1985.0,PRIVATE,9,Davenport,685 LANSDOWNE AVE,3,30,2022-05-11,49,Building Audit,13,2.0,2.0,4.0,2.0,,3.0,,2.0,,,2.0,2.0,1.0,3.0,3.0,3.0,,3.0,,,S0930,43.65900140350001,-79.442459426,309425.457,4835229.411
-887356,4152685,2017.0,,1968.0,PRIVATE,20,Scarborough Southwest,2303 EGLINTON AVE E,7,169,2022-05-11,87,Evaluation needs to be conducted in 3 years,19,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,5.0,4.0,5.0,5.0,4.0,,E2023,43.730751893800004,-79.2712141705,323215.458,4843224.2530000005
-887357,4152873,2017.0,,1969.0,PRIVATE,22,Scarborough-Agincourt,3845 SHEPPARD AVE E,10,106,2022-05-11,68,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,2.0,,E2232,43.7821007086,-79.2907139042,321630.25899999996,4848924.767
-887358,4154454,2017.0,,1958.0,PRIVATE,6,York Centre,20 SKIPTON CRT,4,40,2022-05-11,97,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,5.0,5.0,,5.0,5.0,4.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,,N0627,43.736844271,-79.49297506,305369.286,4843919.864
-887359,4154453,2017.0,,1958.0,PRIVATE,6,York Centre,18 SKIPTON CRT,4,40,2022-05-11,98,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,5.0,5.0,5.0,,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,,N0627,43.737360083999995,-79.492713493,305371.21,4843934.081
-887360,4155549,2017.0,,1963.0,PRIVATE,3,Etobicoke-Lakeshore,220 LAKE PROMENADE,7,118,2022-05-10,45,Building Audit,20,3.0,3.0,2.0,1.0,1.0,3.0,2.0,2.0,2.0,2.0,2.0,1.0,3.0,3.0,2.0,3.0,3.0,4.0,2.0,1.0,W0334,43.589738823999994,-79.529723711,302384.039,4827534.558999999
-887361,4153225,2017.0,,1964.0,PRIVATE,11,University-Rosedale,177 ST GEORGE ST,8,57,2022-05-10,92,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,4.0,5.0,5.0,,4.0,4.0,,4.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,5.0,,S1127,43.671145731,-79.400916019,312774.284,4836582.6280000005
-887362,4155446,2017.0,,1977.0,SOCIAL HOUSING,1,Etobicoke North,2314 ISLINGTON AVE,11,194,2022-05-10,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,5.0,3.0,4.0,4.0,2.0,4.0,5.0,5.0,4.0,3.0,4.0,,4.0,4.0,5.0,W0130,43.716291217,-79.556254054,300251.286,4841595.1
-887363,4155571,2017.0,,1970.0,TCHC,24,Scarborough-Guildwood,65 GREENBRAE CRCT,13,128,2022-05-10,76,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,E2425,43.760034356999995,-79.229764837,326550.38399999996,4846462.077
-887364,4154426,2017.0,,1963.0,PRIVATE,6,York Centre,2850 KEELE ST,3,12,2022-05-10,92,Evaluation needs to be conducted in 3 years,15,5.0,4.0,5.0,5.0,5.0,4.0,,5.0,,,4.0,5.0,5.0,4.0,5.0,5.0,,4.0,4.0,,N0627,43.7312520976,-79.4835802979,306107.29,4843254.661
-887365,4155550,2017.0,,1964.0,PRIVATE,3,Etobicoke-Lakeshore,230 LAKE PROMENADE,7,118,2022-05-10,69,Evaluation needs to be conducted in 2 years,20,3.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,1.0,W0334,43.589470147,-79.53053544699999,302318.482,4827504.735
-887366,4153756,2017.0,,1962.0,PRIVATE,15,Don Valley West,375 MERTON ST,4,47,2022-05-10,76,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,,3.0,,3.0,4.0,,4.0,5.0,5.0,3.0,3.0,5.0,3.0,4.0,3.0,,N1534,43.697934721,-79.38501268,314052.709,4839560.517
-887367,4153093,2018.0,,1995.0,SOCIAL HOUSING,9,Davenport,10 DORA AVE,8,134,2022-05-10,82,Evaluation needs to be conducted in 2 years,20,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,S0933,43.655979748,-79.443829191,309314.939,4834894.606000001
-887368,4153213,2017.0,,1968.0,PRIVATE,11,University-Rosedale,50 PRINCE ARTHUR AVE,19,149,2022-05-09,93,Evaluation needs to be conducted in 3 years,19,4.0,5.0,5.0,4.0,5.0,4.0,,5.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,5.0,4.0,S1127,43.6694516489,-79.3986101072,312960.717,4836393.695
-887369,4155281,2017.0,,1956.0,PRIVATE,3,Etobicoke-Lakeshore,168 BERRY RD,4,22,2022-05-09,79,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,5.0,,5.0,,,4.0,3.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,,W0327,43.636826872,-79.491504389,305455.669,4832759.364
-887370,4155298,2017.0,,1977.0,PRIVATE,3,Etobicoke-Lakeshore,90 CORDOVA AVE,13,184,2022-05-09,80,Evaluation needs to be conducted in 2 years,19,5.0,5.0,5.0,4.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,,W0321,43.648139693999994,-79.5237605383,302867.459,4834021.602
-887371,4154650,2017.0,,1960.0,SOCIAL HOUSING,6,York Centre,2 MASCOT PL,7,71,2022-05-09,93,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,5.0,4.0,5.0,5.0,,N0624,43.77062612100001,-79.4430060105,309372.998,4847630.355
-887372,4154620,2017.0,,1994.0,SOCIAL HOUSING,6,York Centre,15 TORRESDALE AVE,7,61,2022-05-09,98,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,,5.0,5.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,,N0622,43.773480632100004,-79.4511037364,308720.91,4847947.07
-887373,4155249,2017.0,,1959.0,PRIVATE,3,Etobicoke-Lakeshore,135 STEPHEN DR,4,26,2022-05-09,88,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,4.0,5.0,,4.0,5.0,4.0,4.0,5.0,5.0,4.0,3.0,4.0,5.0,5.0,3.0,,W0327,43.6383454024,-79.48717845659999,305818.852,4832933.225
-887374,4155219,2017.0,,1967.0,PRIVATE,3,Etobicoke-Lakeshore,625 EVANS AVE,11,85,2022-05-09,77,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,2.0,4.0,4.0,4.0,4.0,4.0,,3.0,4.0,5.0,3.0,3.0,4.0,4.0,4.0,3.0,,W0330,43.60966320399999,-79.550566638,300703.95399999997,4829745.148
-887375,4153074,2017.0,,1911.0,PRIVATE,9,Davenport,1505 DUNDAS ST W,3,12,2022-05-09,66,Evaluation needs to be conducted in 2 years,14,3.0,4.0,5.0,3.0,,3.0,,3.0,,,2.0,2.0,5.0,3.0,3.0,3.0,4.0,3.0,,,S0936,43.649474046899996,-79.4321012172,310261.776,4834171.571
-887376,4154040,2017.0,,1950.0,PRIVATE,19,Beaches-East York,514 DAWES RD,4,34,2022-05-05,65,Evaluation needs to be conducted in 1 year,15,3.0,4.0,4.0,3.0,4.0,3.0,,1.0,,,2.0,3.0,5.0,3.0,3.0,3.0,,4.0,4.0,,S1927,43.7046434956,-79.2969607849,321148.442,4840318.3719999995
-887377,4154040,2017.0,,1950.0,PRIVATE,19,Beaches-East York,514 DAWES RD,4,34,2022-05-05,63,Evaluation needs to be conducted in 1 year,15,3.0,4.0,4.0,3.0,3.0,3.0,,1.0,,,2.0,3.0,5.0,3.0,3.0,3.0,,4.0,3.0,,S1927,43.7046434956,-79.2969607849,321148.442,4840318.3719999995
-887378,4155277,2018.0,,1955.0,PRIVATE,3,Etobicoke-Lakeshore,323 PARK LAWN RD,5,48,2022-03-23,76,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,,3.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,,W0327,43.637199541099996,-79.493365223,305319.61,4832805.873
-887379,4331737,,,1954.0,PRIVATE,20,Scarborough Southwest,2511 GERRARD ST E,3,11,2022-03-23,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,4.0,4.0,4.0,4.0,,4.0,3.0,,E2033,43.6873957416,-79.2836217678,322228.49100000004,4838404.904
-887380,4156298,2018.0,,1969.0,TCHC,10,Spadina-Fort York,170 VANAULEY WALK,6,40,2022-03-17,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,2.0,,4.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,S1023,43.651687962,-79.400557945,312805.773,4834421.0
-887381,4153615,2017.0,,1978.0,TCHC,14,Toronto-Danforth,80 DANFORTH AVE,5,131,2022-03-17,74,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,3.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,3.0,S1424,43.67633044270001,-79.3597559522,316092.805,4837162.489
-887382,4153196,,,1910.0,PRIVATE,11,University-Rosedale,2 VERMONT AVE,3,16,2022-03-15,61,Evaluation needs to be conducted in 1 year,15,2.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,2.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,S1125,43.672241558,-79.414621827,311668.929,4836703.171
-887383,4155942,2017.0,,1971.0,TCHC,22,Scarborough-Agincourt,2743 VICTORIA PARK AVE,15,201,2022-03-11,78,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,E2225,43.779266936999996,-79.323413406,318912.61199999996,4848579.722
-887384,4155585,2017.0,,1969.0,TCHC,22,Scarborough-Agincourt,2821 BIRCHMOUNT RD,12,237,2022-03-10,72,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,4.0,5.0,4.0,3.0,4.0,4.0,3.0,4.0,,E2227,43.7985740617,-79.30512678470001,320465.905,4850752.081
-887385,4155573,2017.0,,1972.0,TCHC,20,Scarborough Southwest,40 GORDONRIDGE PL,18,421,2022-03-10,68,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,4.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,,E2024,43.727612646000004,-79.251278648,324819.267,4842872.647
-887386,4155566,2017.0,,1969.0,TCHC,20,Scarborough Southwest,675 KENNEDY RD,11,192,2022-03-07,61,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,,3.0,4.0,2.0,3.0,3.0,3.0,3.0,3.0,4.0,2.0,,E2023,43.72687441,-79.265289789,323769.245,4842812.63
-887387,4155563,2017.0,,1971.0,TCHC,20,Scarborough Southwest,30 TEESDALE PL,24,278,2022-03-04,62,Evaluation needs to be conducted in 1 year,18,2.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,,1.0,4.0,2.0,4.0,3.0,3.0,4.0,5.0,2.0,,E2028,43.697003832200004,-79.28779229199999,321889.538,4839471.448
-887388,4155561,2017.0,,1962.0,TCHC,20,Scarborough Southwest,1 FIRVALLEY CRT,12,115,2022-03-04,71,Evaluation needs to be conducted in 2 years,18,3.0,3.0,5.0,3.0,3.0,4.0,3.0,4.0,4.0,,3.0,4.0,5.0,2.0,3.0,4.0,3.0,4.0,4.0,,E2028,43.7029523574,-79.28102862850001,322432.94800000003,4840133.711
-887389,4152739,2017.0,,1960.0,PRIVATE,24,Scarborough-Guildwood,3210 LAWRENCE AVE E,6,48,2022-03-02,80,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,,4.0,3.0,5.0,4.0,3.0,4.0,4.0,5.0,4.0,,E2424,43.756840819,-79.24196517600001,325562.476,4846130.432
-887390,5033221,2022.0,,1890.0,PRIVATE,11,University-Rosedale,51 MADISON AVE,3,13,2022-01-20,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,4.0,4.0,3.0,3.0,,,S1127,43.6698858155,-79.40353340520001,312563.635,4836441.465
-887391,4154108,2017.0,2021.0,1960.0,PRIVATE,14,Toronto-Danforth,15 BATER AVE,3,34,2021-12-31,75,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,3.0,3.0,3.0,,4.0,,,3.0,4.0,5.0,3.0,4.0,4.0,,4.0,4.0,,S1421,43.6867361824,-79.3548678509,316484.95,4838319.22
-887392,4154102,2017.0,2021.0,1956.0,PRIVATE,14,Toronto-Danforth,130 COSBURN AVE,6,48,2021-12-31,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,4.0,,4.0,4.0,5.0,3.0,4.0,3.0,5.0,4.0,3.0,,S1422,43.689964771999996,-79.3476769455,317063.98600000003,4838678.909
-887393,4154101,2017.0,2021.0,1962.0,PRIVATE,14,Toronto-Danforth,150 COSBURN AVE,12,153,2021-12-31,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,3.0,4.0,4.0,3.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1422,43.6902830528,-79.3461159995,317189.748,4838714.494
-887394,4154090,2017.0,2021.0,1950.0,PRIVATE,14,Toronto-Danforth,165 COSBURN AVE,6,83,2021-12-31,69,Evaluation needs to be conducted in 2 years,17,5.0,4.0,5.0,3.0,3.0,3.0,,4.0,3.0,,4.0,5.0,5.0,2.0,2.0,3.0,2.0,3.0,3.0,,S1422,43.6897704258,-79.345544715,317235.905,4838657.626
-887395,4154091,2017.0,2021.0,1965.0,PRIVATE,14,Toronto-Danforth,175 COSBURN AVE,4,30,2021-12-31,74,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,3.0,4.0,3.0,,3.0,,,3.0,5.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,,S1422,43.689958951499996,-79.3450906815,317272.466,4838678.636
-887396,4154095,2017.0,2021.0,1959.0,PRIVATE,14,Toronto-Danforth,190 COSBURN AVE,6,47,2021-12-31,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,4.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,,S1422,43.6904180968,-79.3451955874,317263.914,4838729.63
-887397,4153637,2017.0,2021.0,1990.0,SOCIAL HOUSING,14,Toronto-Danforth,1480 QUEEN ST E,4,25,2021-12-31,80,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,,,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,,4.0,S1439,43.66557523,-79.321020795,319218.38899999997,4835974.545
-887398,4154134,2017.0,2021.0,1965.0,PRIVATE,14,Toronto-Danforth,100 GAMBLE AVE,12,152,2021-12-31,60,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,2.0,3.0,3.0,3.0,2.0,3.0,,2.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,4.0,,S1421,43.6904194773,-79.350649972,316824.231,4838729.001
-887399,4154110,2018.0,2021.0,1927.0,PRIVATE,14,Toronto-Danforth,12 BATER AVE,4,50,2021-12-31,75,Evaluation needs to be conducted in 2 years,17,5.0,5.0,5.0,3.0,4.0,3.0,,3.0,,4.0,2.0,3.0,5.0,4.0,3.0,4.0,5.0,3.0,3.0,,S1421,43.6870714875,-79.3548247563,316488.358,4838356.478
-887400,4152791,2017.0,2021.0,1969.0,PRIVATE,20,Scarborough Southwest,3161 EGLINTON AVE E,12,166,2021-12-30,67,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,3.0,2.0,4.0,2.0,3.0,3.0,,3.0,3.0,5.0,2.0,3.0,4.0,3.0,4.0,4.0,,E2027,43.741827577200006,-79.221378358,327226.05199999997,4844466.914
-887401,4152779,2017.0,2021.0,1968.0,PRIVATE,20,Scarborough Southwest,3207 KINGSTON RD,5,53,2021-12-30,73,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,4.0,3.0,4.0,3.0,3.0,4.0,,3.0,3.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,E2037,43.7293849818,-79.2268912004,326786.54,4843083.157
-887402,4152780,2017.0,2021.0,1964.0,PRIVATE,20,Scarborough Southwest,121 MINERVA AVE,6,90,2021-12-30,87,Evaluation needs to be conducted in 3 years,18,4.0,4.0,5.0,5.0,4.0,5.0,4.0,3.0,4.0,,4.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,5.0,,E2032,43.7218512738,-79.2442216236,325392.95399999997,4842241.788
-887403,4152781,2017.0,2021.0,1964.0,PRIVATE,20,Scarborough Southwest,131 MINERVA AVE,6,83,2021-12-30,84,Evaluation needs to be conducted in 2 years,18,4.0,5.0,5.0,4.0,3.0,5.0,3.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,5.0,,E2032,43.722060301400006,-79.2433036928,325466.841,4842265.24
-887404,4152790,2017.0,2021.0,1960.0,PRIVATE,20,Scarborough Southwest,3131 EGLINTON AVE E,7,82,2021-12-30,72,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,3.0,4.0,,3.0,4.0,,3.0,4.0,5.0,3.0,3.0,4.0,4.0,4.0,2.0,,E2027,43.741715689799996,-79.2228457117,327107.906,4844454.096
-887405,4152784,2017.0,2021.0,1967.0,PRIVATE,20,Scarborough Southwest,40 PARKCREST DR,12,100,2021-12-29,80,Evaluation needs to be conducted in 2 years,18,4.0,5.0,5.0,3.0,3.0,4.0,4.0,4.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2027,43.7353054239,-79.21998529380001,327340.686,4843742.709
-887406,4155564,2017.0,2021.0,1970.0,TCHC,20,Scarborough Southwest,3479 ST CLAIR AVE E,8,94,2021-12-28,58,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,2.0,2.0,3.0,1.0,2.0,2.0,,3.0,2.0,2.0,3.0,4.0,4.0,4.0,4.0,,4.0,E2030,43.7142950675,-79.2692166242,323381.434,4841396.427
-887407,4153625,2017.0,2021.0,1996.0,SOCIAL HOUSING,14,Toronto-Danforth,54 MARIGOLD AVE,4,29,2021-12-28,81,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,5.0,3.0,5.0,3.0,4.0,4.0,3.0,4.0,5.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,S1441,43.661996165699996,-79.33107610180001,318408.525,4835574.305
-887408,4154119,2017.0,2021.0,1966.0,PRIVATE,14,Toronto-Danforth,100 GOWAN AVE,17,121,2021-12-28,87,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,2.0,4.0,3.0,4.0,4.0,4.0,,5.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,,S1421,43.6883007663,-79.3508994916,316804.549,4838493.588
-887409,4154118,2017.0,2021.0,1968.0,PRIVATE,14,Toronto-Danforth,80 GOWAN AVE,11,88,2021-12-28,90,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,3.0,4.0,5.0,4.0,4.0,4.0,,5.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,,S1421,43.6881568082,-79.351627018,316745.93,4838477.495
-887410,4153620,2017.0,2021.0,1989.0,SOCIAL HOUSING,14,Toronto-Danforth,970 EASTERN AVE,4,14,2021-12-24,69,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,2.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,4.0,4.0,,4.0,S1442,43.663675162,-79.321078637,319214.185,4835763.44
-887411,4154124,2017.0,2021.0,1955.0,PRIVATE,14,Toronto-Danforth,65 GAMBLE AVE,6,48,2021-12-24,84,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,4.0,5.0,5.0,5.0,4.0,4.0,5.0,4.0,3.0,,S1421,43.689657175,-79.3516154158,316746.563,4838644.181
-887412,4153621,2017.0,2021.0,1995.0,SOCIAL HOUSING,14,Toronto-Danforth,137 SEARS ST,3,17,2021-12-24,80,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,,,4.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,S1442,43.66303924899999,-79.32501186,318897.114,4835692.138
-887413,4154123,2017.0,2021.0,1960.0,PRIVATE,14,Toronto-Danforth,51 GAMBLE AVE,6,49,2021-12-24,78,Evaluation needs to be conducted in 2 years,17,4.0,5.0,5.0,3.0,4.0,4.0,,3.0,3.0,,3.0,4.0,5.0,3.0,4.0,4.0,5.0,4.0,3.0,,S1421,43.6895687051,-79.35205503590001,316711.144,4838634.294
-887414,4156036,2017.0,2021.0,1996.0,SOCIAL HOUSING,14,Toronto-Danforth,17 RENWICK CRES,4,80,2021-12-24,66,Evaluation needs to be conducted in 2 years,16,2.0,4.0,5.0,1.0,3.0,2.0,,5.0,,4.0,2.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,,,S1441,43.66049693,-79.33653651899999,317958.359,4835419.239
-887415,4153632,2017.0,2021.0,1993.0,TCHC,14,Toronto-Danforth,29 LOUVAIN AVE,4,51,2021-12-24,71,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,2.0,4.0,2.0,3.0,2.0,4.0,,3.0,3.0,5.0,4.0,3.0,4.0,4.0,4.0,,,S1435,43.662543937399995,-79.3369204531,317937.063,4835634.227
-887416,4153608,2017.0,2021.0,1972.0,TCHC,14,Toronto-Danforth,717 BROADVIEW AVE,8,69,2021-12-24,94,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,,4.0,5.0,5.0,5.0,5.0,4.0,,5.0,4.0,4.0,S1428,43.6751635121,-79.3574685355,316277.466,4837033.163
-887417,4153626,2017.0,2021.0,1995.0,TCHC,14,Toronto-Danforth,1167 QUEEN ST E,5,40,2021-12-24,77,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,3.0,4.0,2.0,4.0,3.0,,3.0,5.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,S1441,43.6624909475,-79.3328836483,318262.632,4835628.983
-887418,4153605,2017.0,2021.0,1931.0,PRIVATE,14,Toronto-Danforth,9 TENNIS CRES,4,54,2021-12-24,85,Evaluation needs to be conducted in 2 years,15,4.0,5.0,5.0,4.0,3.0,4.0,,4.0,,4.0,4.0,4.0,5.0,5.0,5.0,4.0,,4.0,,,S1428,43.6726051315,-79.35424759920001,316537.683,4836749.3889999995
-887419,4152596,2017.0,2021.0,1964.0,TCHC,20,Scarborough Southwest,682 WARDEN AVE,15,223,2021-12-23,60,Evaluation needs to be conducted in 1 year,19,2.0,4.0,5.0,3.0,3.0,3.0,2.0,4.0,2.0,,2.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,4.0,3.0,E2028,43.705953312,-79.279044598,322591.70399999997,4840468.483
-887420,4240826,2017.0,2021.0,1968.0,PRIVATE,13,Toronto Centre,240 WELLESLEY ST E,29,554,2021-12-23,71,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,2.0,3.0,4.0,4.0,4.0,4.0,,3.0,3.0,5.0,2.0,4.0,4.0,4.0,3.0,3.0,,S1323,43.6680679061,-79.3717553706,315147.721,4836236.53
-887421,4153633,2017.0,2021.0,1993.0,SOCIAL HOUSING,14,Toronto-Danforth,1070 QUEEN ST E,5,177,2021-12-23,86,Evaluation needs to be conducted in 3 years,18,4.0,5.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,5.0,5.0,4.0,4.0,4.0,5.0,5.0,4.0,,S1435,43.6620660934,-79.3367847076,317948.115,4835581.161
-887422,4270534,2017.0,2021.0,1981.0,PRIVATE,2,Etobicoke Centre,105 CLEMENT RD,7,195,2021-12-23,91,Evaluation needs to be conducted in 3 years,16,4.0,5.0,5.0,4.0,5.0,5.0,,5.0,4.0,,4.0,5.0,5.0,4.0,5.0,4.0,,4.0,,5.0,W0221,43.680522919,-79.55416175,300417.27,4837621.239
-887423,4155483,2017.0,2021.0,1950.0,PRIVATE,3,Etobicoke-Lakeshore,26 ALBERT AVE,3,23,2021-12-21,84,Evaluation needs to be conducted in 2 years,14,5.0,4.0,5.0,5.0,5.0,4.0,,4.0,,,4.0,4.0,5.0,3.0,4.0,4.0,,3.0,,,W0336,43.616241601700004,-79.48927189850001,305650.222,4830477.596
-887424,4167691,2017.0,2021.0,1960.0,PRIVATE,6,York Centre,2956 KEELE ST,3,11,2021-12-20,73,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,3.0,3.0,4.0,,5.0,,,3.0,2.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0627,43.735513831999995,-79.484593132,306025.356,4843729.057
-887425,4152578,2017.0,2021.0,1964.0,PRIVATE,20,Scarborough Southwest,2 NORTH DR,4,65,2021-12-20,78,Evaluation needs to be conducted in 2 years,17,4.0,3.0,5.0,4.0,4.0,3.0,,4.0,4.0,,4.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,4.0,,E2033,43.6861001378,-79.2821331164,322348.881,4838261.291
-887426,4152573,2017.0,2021.0,1971.0,PRIVATE,20,Scarborough Southwest,1140 KINGSTON RD,5,34,2021-12-20,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,3.0,3.0,3.0,4.0,,4.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,,E2033,43.681735253,-79.281298195,322417.201,4837777.498
-887427,4154643,2017.0,2021.0,1964.0,PRIVATE,6,York Centre,3 GOLDFINCH CRT,15,172,2021-12-20,74,Evaluation needs to be conducted in 2 years,19,5.0,4.0,4.0,4.0,3.0,5.0,4.0,3.0,4.0,3.0,4.0,4.0,5.0,4.0,3.0,3.0,4.0,2.0,2.0,,N0624,43.7710438597,-79.4492292912,308871.972,4847676.448
-887428,4152666,2020.0,2021.0,1958.0,PRIVATE,20,Scarborough Southwest,115 FOXRIDGE DR,3,10,2021-12-20,69,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,3.0,3.0,4.0,,3.0,,,3.0,4.0,5.0,3.0,3.0,3.0,,4.0,3.0,,E2023,43.7234871181,-79.2660288594,323635.43,4842418.318
-887429,4152619,2017.0,2021.0,1956.0,PRIVATE,20,Scarborough Southwest,23 ENGELHART CRES,3,11,2021-12-20,80,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,,3.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2021,43.722388403800004,-79.2991027155,320971.04,4842289.348
-887430,4152618,2017.0,2021.0,1956.0,PRIVATE,20,Scarborough Southwest,19 ENGELHART CRES,3,11,2021-12-20,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,3.0,4.0,,3.0,,3.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,E2021,43.722183084099996,-79.2995646388,320933.87899999996,4842266.448
-887431,4152677,2017.0,2021.0,1992.0,SOCIAL HOUSING,20,Scarborough Southwest,835-841 BIRCHMOUNT RD,6,102,2021-12-20,78,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,4.0,4.0,4.0,3.0,3.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,E2023,43.72941570810001,-79.2774083068,322716.837,4843074.44
-887432,4154616,2017.0,2021.0,1993.0,TCHC,6,York Centre,750 WILSON HEIGHTS BLVD,4,79,2021-12-20,86,Evaluation needs to be conducted in 3 years,18,4.0,4.0,5.0,4.0,4.0,4.0,3.0,5.0,4.0,,4.0,3.0,5.0,5.0,4.0,5.0,,5.0,4.0,5.0,N0624,43.7599025231,-79.4643820727,307652.61,4846438.066000001
-887433,4152560,2017.0,2021.0,1970.0,PRIVATE,20,Scarborough Southwest,2440 QUEEN ST E,6,24,2021-12-20,82,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2033,43.6751742383,-79.2785094053,322644.203,4837048.226
-887434,4327367,2018.0,2021.0,1949.0,PRIVATE,6,York Centre,12 ROSSEAU RD,3,11,2021-12-20,76,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,4.0,4.0,,2.0,,,4.0,5.0,5.0,5.0,3.0,4.0,,5.0,3.0,,N0629,43.742014423,-79.4373039157,309843.087,4844439.041
-887435,4154699,2017.0,2021.0,1959.0,PRIVATE,6,York Centre,35 CANYON AVE,21,237,2021-12-17,84,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,5.0,5.0,5.0,3.0,5.0,,3.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N0624,43.757997709499996,-79.43691777560001,309864.19800000003,4846227.739
-887436,4154694,2017.0,2021.0,1961.0,PRIVATE,6,York Centre,569 SHEPPARD AVE W,13,144,2021-12-17,88,Evaluation needs to be conducted in 3 years,18,4.0,5.0,5.0,5.0,4.0,5.0,5.0,3.0,4.0,,5.0,5.0,5.0,4.0,4.0,5.0,3.0,4.0,4.0,,N0630,43.7553047616,-79.436948304,309861.967,4845928.563
-887437,4154626,2017.0,2021.0,1965.0,PRIVATE,6,York Centre,15 ROCKFORD RD,12,117,2021-12-17,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,5.0,3.0,3.0,3.0,,4.0,5.0,5.0,4.0,4.0,5.0,4.0,3.0,4.0,,N0622,43.784966077200004,-79.4478362845,308983.144,4849223.218
-887438,4154628,2017.0,2021.0,1965.0,PRIVATE,6,York Centre,18 CEDARCROFT BLVD,12,117,2021-12-17,83,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,5.0,4.0,3.0,5.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0622,43.7839479718,-79.4474754127,309012.262,4849110.129
-887439,4154632,2017.0,2021.0,1964.0,PRIVATE,6,York Centre,12 ROCKFORD RD,13,128,2021-12-17,98,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,,N0622,43.786076743500004,-79.447735502,308991.179,4849346.616
-887440,4155224,2017.0,2021.0,1965.0,PRIVATE,3,Etobicoke-Lakeshore,800 ROYAL YORK RD,6,60,2021-12-17,73,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,5.0,3.0,,4.0,4.0,2.0,3.0,4.0,5.0,3.0,4.0,4.0,4.0,2.0,,,W0325,43.638794444,-79.508763602,304076.947,4832984.053
-887441,4167687,2017.0,2021.0,1948.0,TCHC,13,Toronto Centre,260 SUMACH ST,3,48,2021-12-16,66,Evaluation needs to be conducted in 2 years,16,2.0,4.0,5.0,2.0,2.0,3.0,,3.0,,,2.0,3.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,S1330,43.66223715,-79.361553726,315950.172,4835597.5
-887442,4152613,2017.0,2021.0,1960.0,PRIVATE,20,Scarborough Southwest,540 BIRCHMOUNT RD,4,27,2021-12-15,73,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,4.0,3.0,4.0,,5.0,,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,E2029,43.7107990699,-79.2702992344,323295.275,4841007.788
-887443,4155217,2017.0,2021.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,270 SHELDON AVE,6,74,2021-12-15,74,Evaluation needs to be conducted in 2 years,18,4.0,5.0,5.0,3.0,4.0,4.0,,3.0,3.0,3.0,3.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,,W0331,43.609210519399994,-79.54621078939999,301054.105,4829697.381
-887444,4154130,2017.0,2021.0,1965.0,PRIVATE,14,Toronto-Danforth,50 COSBURN AVE,12,173,2021-12-15,82,Evaluation needs to be conducted in 2 years,19,5.0,5.0,5.0,3.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,5.0,5.0,2.0,4.0,4.0,5.0,4.0,3.0,,S1421,43.6891373921,-79.3519022582,316723.54600000003,4838586.397
-887445,4154111,2017.0,2021.0,1962.0,PRIVATE,14,Toronto-Danforth,25 COSBURN AVE,22,129,2021-12-15,82,Evaluation needs to be conducted in 2 years,18,4.0,5.0,5.0,5.0,4.0,5.0,3.0,4.0,5.0,,4.0,5.0,2.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1421,43.6881435504,-79.3536043403,316586.531,4838475.75
-887446,4155218,2017.0,2021.0,1982.0,SOCIAL HOUSING,3,Etobicoke-Lakeshore,256 SHELDON AVE,7,76,2021-12-14,84,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,5.0,,4.0,5.0,5.0,4.0,4.0,4.0,,3.0,4.0,5.0,W0331,43.6084801152,-79.5465065872,301030.182,4829616.243
-887447,4303769,2018.0,2021.0,1968.0,PRIVATE,2,Etobicoke Centre,63 CALLOWHILL DR,10,112,2021-12-14,60,Evaluation needs to be conducted in 1 year,19,2.0,3.0,4.0,2.0,3.0,3.0,2.0,3.0,3.0,3.0,2.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,,W0221,,,299662.554,4837921.687
-887448,4152559,2017.0,2021.0,1954.0,PRIVATE,20,Scarborough Southwest,3000 QUEEN ST E,4,30,2021-12-13,89,Evaluation needs to be conducted in 3 years,16,4.0,5.0,5.0,4.0,5.0,5.0,,4.0,,5.0,4.0,5.0,5.0,4.0,4.0,4.0,,5.0,3.0,,E2033,43.675330629499996,-79.27794494220001,322689.673,4837065.722
-887449,4153003,2017.0,2021.0,1922.0,PRIVATE,4,Parkdale-High Park,1623 QUEEN ST W,4,42,2021-12-13,72,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,4.0,4.0,4.0,,3.0,,4.0,3.0,3.0,5.0,3.0,4.0,3.0,,3.0,,,S0436,43.638781441400006,-79.4452145314,309204.71,4832982.945
-887450,4152600,2017.0,2021.0,1972.0,PRIVATE,20,Scarborough Southwest,273 PHARMACY AVE,18,280,2021-12-13,88,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,,E2028,43.700248057299994,-79.2862500131,322012.917,4839832.19
-887451,4154580,2017.0,2021.0,1962.0,TCHC,6,York Centre,12 KING HIGH AVE,3,31,2021-12-13,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,3.0,3.0,3.0,3.0,,,4.0,5.0,5.0,4.0,3.0,4.0,,5.0,4.0,,N0629,43.736219646,-79.443095826,309368.07399999996,4843808.919
-887452,4152586,2017.0,2021.0,1968.0,PRIVATE,20,Scarborough Southwest,2570 KINGSTON RD,10,118,2021-12-13,79,Evaluation needs to be conducted in 2 years,19,5.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,3.0,5.0,4.0,3.0,,E2032,43.713486558999996,-79.2466803233,325197.68,4841311.898
-887453,4154624,2017.0,2021.0,1979.0,PRIVATE,6,York Centre,300 ANTIBES DR,21,372,2021-12-13,79,Evaluation needs to be conducted in 2 years,19,5.0,3.0,4.0,4.0,5.0,3.0,3.0,4.0,5.0,,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,N0622,43.7812935158,-79.450030785,308806.743,4848815.09
-887454,4154595,2017.0,2021.0,1960.0,PRIVATE,6,York Centre,3884 BATHURST ST,4,28,2021-12-13,87,Evaluation needs to be conducted in 3 years,17,4.0,4.0,5.0,4.0,4.0,5.0,,4.0,,4.0,5.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,N0629,43.7422578587,-79.4357863772,309956.619,4844479.1680000005
-887455,4154596,2017.0,2021.0,1960.0,PRIVATE,6,York Centre,3880 BATHURST ST,4,58,2021-12-13,86,Evaluation needs to be conducted in 3 years,18,3.0,4.0,5.0,4.0,4.0,5.0,,4.0,4.0,4.0,5.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,N0629,43.741815421000005,-79.4356700472,309966.025,4844430.022
-887456,4152609,2017.0,2021.0,1968.0,PRIVATE,20,Scarborough Southwest,3423 ST CLAIR AVE E,4,30,2021-12-13,85,Evaluation needs to be conducted in 2 years,19,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,3.0,5.0,4.0,5.0,,E2029,43.7134790514,-79.2732946837,323053.066,4841304.866
-887457,4154425,2017.0,2021.0,1945.0,PRIVATE,6,York Centre,2852 KEELE ST,3,11,2021-12-13,68,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,,3.0,4.0,4.0,5.0,4.0,4.0,3.0,,3.0,2.0,,N0627,43.7314423393,-79.4836241974,306103.75,4843275.795
-887458,4152569,2017.0,2021.0,1960.0,PRIVATE,20,Scarborough Southwest,1711 KINGSTON RD,3,18,2021-12-13,70,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,,3.0,3.0,3.0,5.0,4.0,3.0,4.0,,4.0,3.0,,E2034,43.692233898199994,-79.2630193825,323887.837,4838946.94
-887459,4154617,2017.0,2021.0,1959.0,PRIVATE,6,York Centre,81 GARTHDALE CRT,3,10,2021-12-13,72,Evaluation needs to be conducted in 2 years,17,3.0,4.0,4.0,3.0,3.0,3.0,,4.0,,3.0,3.0,3.0,5.0,5.0,4.0,3.0,3.0,4.0,4.0,,N0624,43.7648967345,-79.4644796149,307644.521,4846992.893
-887460,4156240,2017.0,2021.0,1969.0,TCHC,20,Scarborough Southwest,30 EPPLEWORTH RD,3,45,2021-12-13,70,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,,,3.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,,E2023,43.727206753999994,-79.263241732,323854.783,4842776.82
-887461,4156455,2017.0,2021.0,1969.0,TCHC,20,Scarborough Southwest,20 EPPLEWORTH RD,3,36,2021-12-13,66,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,,,3.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,4.0,,E2023,43.726760854,-79.263575088,323859.729,4842772.896000001
-887462,4152678,2017.0,2021.0,1971.0,PRIVATE,20,Scarborough Southwest,2223 EGLINTON AVE E,6,75,2021-12-13,84,Evaluation needs to be conducted in 2 years,18,4.0,5.0,5.0,3.0,4.0,4.0,3.0,4.0,5.0,,4.0,5.0,5.0,5.0,4.0,3.0,5.0,4.0,4.0,,E2023,43.729622459,-79.27670919100001,322772.838,4843098.516
-887463,4153012,2017.0,2021.0,1958.0,PRIVATE,4,Parkdale-High Park,150 DOWLING AVE,7,66,2021-12-12,82,Evaluation needs to be conducted in 2 years,17,5.0,5.0,5.0,5.0,5.0,4.0,,3.0,4.0,3.0,4.0,5.0,5.0,3.0,4.0,3.0,4.0,3.0,,,S0436,43.6378411067,-79.43950512159999,309665.443,4832878.791999999
-887464,4152683,2017.0,2021.0,1968.0,PRIVATE,20,Scarborough Southwest,2243 EGLINTON AVE E,6,91,2021-12-10,84,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,,5.0,5.0,,3.0,3.0,5.0,4.0,4.0,5.0,4.0,3.0,5.0,,E2023,43.730141875,-79.27399670300001,322991.213,4843156.818
-887465,4152783,2017.0,2021.0,1964.0,PRIVATE,20,Scarborough Southwest,3744 ST CLAIR AVE E,6,88,2021-12-10,89,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,5.0,E2032,43.7209375824,-79.2430985709,325483.757,4842140.563999999
-887466,4156598,2017.0,2021.0,2011.0,SOCIAL HOUSING,9,Davenport,180 SUDBURY ST,18,190,2021-12-10,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,S0937,43.641893011,-79.425161314,310822.114,4833330.761
-887467,4155710,2017.0,2021.0,2005.0,PRIVATE,9,Davenport,55 LISGAR ST,9,116,2021-12-10,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,5.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,S0937,43.6426365625,-79.4230275047,310994.457,4833412.558
-887468,4155730,2017.0,2021.0,2010.0,PRIVATE,9,Davenport,45 LISGAR ST,14,291,2021-12-10,83,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,S0937,43.6421269068,-79.42276226140001,311015.908,4833355.956
-887469,4155061,2017.0,2021.0,1960.0,PRIVATE,8,Eglinton-Lawrence,851 BRIAR HILL AVE,3,10,2021-12-10,80,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0831,43.7044391867,-79.4423269927,309432.683,4840277.301
-887470,4155062,2017.0,2021.0,1965.0,PRIVATE,8,Eglinton-Lawrence,370 RIDELLE AVE,28,214,2021-12-10,91,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,5.0,4.0,3.0,4.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,5.0,N0831,43.7046374432,-79.440751474,309559.647,4840299.426
-887471,4152996,2017.0,2021.0,1955.0,PRIVATE,4,Parkdale-High Park,99 DOWLING AVE,5,111,2021-12-09,84,Evaluation needs to be conducted in 2 years,17,5.0,5.0,5.0,3.0,5.0,5.0,,3.0,4.0,,3.0,3.0,5.0,5.0,4.0,3.0,4.0,5.0,4.0,,S0437,43.6357677908,-79.43779799970001,309803.351,4832648.561000001
-887472,4153616,2017.0,2021.0,1940.0,PRIVATE,14,Toronto-Danforth,849 BROADVIEW AVE,4,32,2021-12-09,89,Evaluation needs to be conducted in 3 years,14,4.0,5.0,5.0,4.0,5.0,4.0,,4.0,,,5.0,5.0,5.0,4.0,4.0,4.0,,4.0,,,S1424,43.6794139167,-79.35783854,316246.839,4837505.327
-887473,4153013,2017.0,2021.0,1973.0,PRIVATE,4,Parkdale-High Park,146 DOWLING AVE,7,68,2021-12-09,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,5.0,2.0,,3.0,,4.0,2.0,,3.0,3.0,5.0,2.0,3.0,3.0,2.0,3.0,,,S0436,43.6375473099,-79.4394028974,309673.714,4832846.159
-887474,4166944,2017.0,2021.0,1967.0,PRIVATE,14,Toronto-Danforth,70 CAMBRIDGE AVE,21,275,2021-12-09,88,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,4.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,5.0,5.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,S1424,43.678116007,-79.3607869844,316009.354,4837360.726
-887475,4153156,2017.0,2021.0,1967.0,SOCIAL HOUSING,9,Davenport,661 DUFFERIN ST,13,112,2021-12-09,72,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,3.0,3.0,3.0,2.0,4.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,3.0,3.0,,4.0,S0934,43.650489538900004,-79.4313915091,310318.929,4834284.426
-887476,4153160,2017.0,2021.0,1971.0,PRIVATE,9,Davenport,919 DUFFERIN ST,15,113,2021-12-09,77,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,5.0,,3.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,,S0934,43.6575632508,-79.4340091901,310107.154,4835070.126
-887477,4152957,2017.0,2021.0,1960.0,PRIVATE,4,Parkdale-High Park,35 SPENCER AVE,7,80,2021-12-09,84,Evaluation needs to be conducted in 2 years,16,5.0,3.0,5.0,3.0,,4.0,,2.0,4.0,,4.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,5.0,,S0437,43.635361871,-79.429350661,310484.708,4832604.925
-887478,4155067,2017.0,2021.0,1967.0,PRIVATE,9,Davenport,65 DYNEVOR RD,9,90,2021-12-09,79,Evaluation needs to be conducted in 2 years,19,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,S0922,43.6915639113,-79.4491372654,308884.626,4838846.609
-887479,4152976,2017.0,2021.0,1931.0,PRIVATE,4,Parkdale-High Park,131 DUNN AVE,3,29,2021-12-09,73,Evaluation needs to be conducted in 2 years,14,3.0,3.0,5.0,2.0,2.0,4.0,,3.0,,,3.0,3.0,5.0,5.0,5.0,4.0,,4.0,,,S0437,43.635897529,-79.432069219,310265.309,4832664.263
-887480,4155407,2017.0,2021.0,1968.0,PRIVATE,2,Etobicoke Centre,695 MARTIN GROVE RD,12,142,2021-12-09,73,Evaluation needs to be conducted in 2 years,19,3.0,5.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,2.0,3.0,3.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,,W0221,43.682026488999995,-79.565970029,299462.268,4837680.56
-887481,4155008,2017.0,2021.0,1968.0,PRIVATE,9,Davenport,161 OAKWOOD AVE,19,151,2021-12-09,84,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S0925,43.680342384,-79.43554842399999,309967.474,4837608.076
-887482,4152973,2017.0,2021.0,1959.0,PRIVATE,4,Parkdale-High Park,60 TYNDALL AVE,9,69,2021-12-09,78,Evaluation needs to be conducted in 2 years,17,4.0,3.0,5.0,3.0,3.0,4.0,,4.0,4.0,,3.0,5.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,,S0437,43.6358852908,-79.4287210164,310535.728,4832662.16
-887483,4153648,2017.0,2021.0,1989.0,TCHC,14,Toronto-Danforth,39 HARCOURT AVE,3,15,2021-12-09,86,Evaluation needs to be conducted in 3 years,16,4.0,4.0,5.0,3.0,4.0,4.0,,5.0,,,4.0,4.0,5.0,4.0,5.0,4.0,4.0,5.0,,5.0,S1429,43.677145636800006,-79.34450560149999,317322.303,4837255.226
-887484,4152974,2017.0,2021.0,1965.0,PRIVATE,4,Parkdale-High Park,40 TYNDALL AVE,7,65,2021-12-08,79,Evaluation needs to be conducted in 2 years,17,5.0,3.0,5.0,3.0,4.0,4.0,,3.0,4.0,,3.0,4.0,5.0,5.0,5.0,3.0,4.0,4.0,3.0,,S0437,43.635622675200004,-79.42849810050001,310553.738,4832633.0
-887485,4155889,2017.0,2021.0,1974.0,PRIVATE,2,Etobicoke Centre,73 WIDDICOMBE HILL BLVD,17,228,2021-12-08,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,3.0,4.0,5.0,4.0,4.0,,3.0,5.0,4.0,3.0,4.0,4.0,5.0,3.0,5.0,,W0222,43.677126322,-79.556808045,300130.803,4837178.874
-887486,4155793,2017.0,2021.0,1973.0,PRIVATE,2,Etobicoke Centre,120 WIDDICOMBE HILL BLVD,17,233,2021-12-08,81,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,5.0,5.0,3.0,4.0,5.0,4.0,3.0,4.0,,W0222,43.676467695,-79.559152675,300081.20399999997,4837170.804
-887487,4152972,2017.0,2021.0,1962.0,PRIVATE,4,Parkdale-High Park,90 TYNDALL AVE,18,120,2021-12-08,82,Evaluation needs to be conducted in 2 years,18,4.0,5.0,5.0,3.0,4.0,5.0,3.0,3.0,4.0,,3.0,5.0,5.0,3.0,5.0,5.0,4.0,4.0,4.0,,S0437,43.636188769700006,-79.4287694979,310531.789,4832695.871
-887488,4153110,2018.0,2021.0,1929.0,PRIVATE,9,Davenport,927 ST CLAIR AVE W,4,23,2021-12-08,81,Evaluation needs to be conducted in 2 years,14,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,,,S0928,43.6795067205,-79.4348853708,310034.484,4837507.881
-887489,4156290,2017.0,2021.0,1969.0,PRIVATE,9,Davenport,357 RUSHOLME RD,16,267,2021-12-08,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,3.0,3.0,3.0,,S0934,43.660038774200004,-79.4305495251,310375.291,4835342.328
-887490,4153164,2017.0,2021.0,1968.0,PRIVATE,9,Davenport,323 RUSHOLME RD,20,226,2021-12-08,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,,S0934,43.658994583,-79.430040338,310404.687,4835239.268999999
-887491,4153155,2017.0,2021.0,1955.0,PRIVATE,9,Davenport,14 RUSHOLME DR,4,22,2021-12-08,79,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,,3.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,S0934,43.650255834700005,-79.4286011017,310544.063,4834258.652
-887492,4153033,2017.0,2021.0,1957.0,PRIVATE,4,Parkdale-High Park,169 JAMESON AVE,8,72,2021-12-08,78,Evaluation needs to be conducted in 2 years,17,4.0,5.0,5.0,3.0,4.0,4.0,,3.0,3.0,,4.0,5.0,5.0,3.0,4.0,3.0,3.0,4.0,4.0,,S0436,43.6382976952,-79.43605420520001,309943.839,4832929.71
-887493,4152980,2017.0,2021.0,1959.0,PRIVATE,4,Parkdale-High Park,87 JAMESON AVE,9,91,2021-12-07,78,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,3.0,,5.0,,4.0,4.0,,4.0,5.0,5.0,3.0,3.0,3.0,4.0,3.0,4.0,,S0437,43.6348167577,-79.4347671675,310047.976,4832543.088
-887494,4154117,2017.0,2021.0,1970.0,PRIVATE,14,Toronto-Danforth,60 GOWAN AVE,21,118,2021-12-07,87,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,5.0,5.0,5.0,4.0,4.0,5.0,4.0,3.0,,S1421,43.6880167433,-79.3522352421,316696.92699999997,4838461.851
-887495,4153386,2017.0,2021.0,1982.0,TCHC,13,Toronto Centre,171 FRONT ST E,3,61,2021-12-07,73,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,2.0,4.0,3.0,4.0,4.0,4.0,,3.0,4.0,2.0,4.0,4.0,4.0,4.0,4.0,,,S1339,43.6499749234,-79.3684698144,315394.78,4834233.377
-887496,4153094,2017.0,2021.0,2008.0,PRIVATE,9,Davenport,767 DOVERCOURT RD,3,19,2021-12-07,76,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,3.0,4.0,,3.0,,3.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,3.0,S0932,43.6618560972,-79.4293177813,310485.14,4835547.351
-887497,4153166,2017.0,2021.0,1967.0,PRIVATE,9,Davenport,730 DOVERCOURT RD,20,356,2021-12-07,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,5.0,3.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,S0934,43.6597215869,-79.429288288,310487.721,4835310.221
-887498,4155349,2017.0,2021.0,1969.0,PRIVATE,2,Etobicoke Centre,500 SCARLETT RD,14,129,2021-12-07,85,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,5.0,4.0,5.0,5.0,2.0,3.0,5.0,5.0,4.0,5.0,3.0,5.0,5.0,5.0,,W0230,43.6857584584,-79.5133729757,303706.277,4838200.637
-887499,4152981,2017.0,2021.0,1967.0,PRIVATE,4,Parkdale-High Park,91 JAMESON AVE,11,76,2021-12-07,79,Evaluation needs to be conducted in 2 years,17,5.0,3.0,5.0,5.0,5.0,4.0,,4.0,4.0,,5.0,4.0,5.0,2.0,2.0,3.0,3.0,4.0,4.0,,S0437,43.6351237062,-79.434885342,310038.415,4832577.18
-887500,4153023,2019.0,2021.0,1963.0,PRIVATE,4,Parkdale-High Park,190 JAMESON AVE,11,62,2021-12-07,75,Evaluation needs to be conducted in 2 years,16,4.0,3.0,3.0,3.0,3.0,4.0,,3.0,4.0,,3.0,3.0,5.0,5.0,4.0,5.0,3.0,5.0,,,S0436,43.6393484586,-79.43723404560001,309848.56,4833046.373
-887501,4153030,2017.0,2021.0,1910.0,SOCIAL HOUSING,4,Parkdale-High Park,149 JAMESON AVE,5,48,2021-12-07,85,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,5.0,,4.0,5.0,3.0,5.0,4.0,4.0,4.0,5.0,,,S0436,43.6374026152,-79.4357893144,309965.285,4832830.29
-887502,4152958,2017.0,2021.0,1962.0,PRIVATE,4,Parkdale-High Park,47 SPENCER AVE,5,56,2021-12-06,80,Evaluation needs to be conducted in 2 years,17,5.0,4.0,5.0,3.0,,3.0,,3.0,5.0,,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,5.0,S0437,43.635752524,-79.429340078,310485.527,4832648.324
-887503,4154607,2017.0,2021.0,1983.0,SOCIAL HOUSING,6,York Centre,4266 BATHURST ST,9,130,2021-12-06,86,Evaluation needs to be conducted in 3 years,20,4.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,3.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,3.0,5.0,N0629,43.751874345299996,-79.438030916,309775.071,4845547.393999999
-887504,4154604,2017.0,2021.0,1966.0,PRIVATE,6,York Centre,4190 BATHURST ST,9,80,2021-12-06,77,Evaluation needs to be conducted in 2 years,20,4.0,5.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,N0629,43.748575119399995,-79.437302788,309833.975,4845180.913
-887505,4154653,2017.0,2021.0,1965.0,PRIVATE,6,York Centre,4750 BATHURST ST,3,64,2021-12-06,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,4.0,3.0,3.0,4.0,5.0,4.0,4.0,5.0,3.0,4.0,3.0,,N0624,43.767931941,-79.4420072756,309453.606,4847331.095
-887506,4154697,2017.0,2021.0,1962.0,PRIVATE,6,York Centre,4415 BATHURST ST,14,167,2021-12-06,81,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N0624,43.7567677733,-79.4380041027,309776.827,4846091.036
-887507,4152962,2017.0,2021.0,1952.0,PRIVATE,4,Parkdale-High Park,77 SPENCER AVE,6,56,2021-12-06,81,Evaluation needs to be conducted in 2 years,17,5.0,4.0,5.0,3.0,4.0,4.0,,3.0,5.0,,4.0,5.0,5.0,5.0,4.0,2.0,4.0,4.0,3.0,,S0437,43.63712357,-79.429926502,310438.088,4832800.6
-887508,4152978,2017.0,2021.0,1976.0,SOCIAL HOUSING,4,Parkdale-High Park,1355 KING ST W,11,136,2021-12-06,82,Evaluation needs to be conducted in 2 years,17,5.0,5.0,5.0,3.0,5.0,3.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,4.0,,S0437,43.6375544172,-79.4328522141,310202.251,4832847.329
-887509,4154609,2017.0,2021.0,1969.0,PRIVATE,6,York Centre,4350 BATHURST ST,6,35,2021-12-06,91,Evaluation needs to be conducted in 3 years,19,4.0,4.0,5.0,4.0,5.0,5.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,5.0,4.0,5.0,4.0,,N0629,43.754107511,-79.438517766,309735.42,4845796.416
-887510,4154693,2017.0,2021.0,1960.0,PRIVATE,6,York Centre,4383 BATHURST ST,13,142,2021-12-06,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,3.0,4.0,3.0,4.0,,N0630,43.75446148100001,-79.437277956,309835.23,4845835.813999999
-887511,4155957,2017.0,2021.0,1972.0,TCHC,20,Scarborough Southwest,30 GORDONRIDGE PL,17,231,2021-12-06,72,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,3.0,4.0,3.0,4.0,3.0,,4.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,,E2024,43.726764513,-79.250888477,324750.497,4842822.528
-887512,4155943,2017.0,2021.0,1965.0,TCHC,20,Scarborough Southwest,3171 EGLINTON AVE E,12,161,2021-12-06,66,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,4.0,3.0,4.0,3.0,3.0,4.0,4.0,3.0,,E2027,43.7426229529,-79.22004925,327332.807,4844555.63
-887513,4153072,2017.0,2021.0,1930.0,PRIVATE,4,Parkdale-High Park,469 RONCESVALLES AVE,4,15,2021-12-05,77,Evaluation needs to be conducted in 2 years,14,3.0,4.0,4.0,4.0,,3.0,,3.0,,,4.0,4.0,5.0,4.0,4.0,3.0,4.0,5.0,,,S0433,43.65312019899999,-79.451329542,308710.143,4834576.586
-887514,4153026,2017.0,2021.0,1917.0,PRIVATE,4,Parkdale-High Park,189 DOWLING AVE,4,10,2021-12-05,57,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,,2.0,,3.0,,,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,3.0,,S0436,43.6396109365,-79.4394716965,309667.989,4833097.526000001
-887515,4155405,2017.0,2021.0,1992.0,SOCIAL HOUSING,2,Etobicoke Centre,1540 KIPLING AVE,8,128,2021-12-03,92,Evaluation needs to be conducted in 3 years,18,4.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,5.0,,4.0,5.0,5.0,4.0,5.0,5.0,,4.0,4.0,5.0,W0221,43.680470399799994,-79.5529581707,300514.566,4837614.397
-887516,4155491,2017.0,2021.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,2557 LAKE SHORE BLVD W,4,26,2021-12-03,84,Evaluation needs to be conducted in 2 years,14,4.0,5.0,4.0,5.0,4.0,5.0,,3.0,,,4.0,5.0,5.0,4.0,4.0,4.0,,3.0,,,W0336,43.6090707341,-79.4891854143,305657.294,4829680.949
-887517,4154103,2017.0,2021.0,1950.0,PRIVATE,14,Toronto-Danforth,120 COSBURN AVE,6,57,2021-12-03,86,Evaluation needs to be conducted in 3 years,17,4.0,5.0,5.0,4.0,4.0,4.0,,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,,S1422,43.6898605522,-79.3481479034,317026.043,4838667.263
-887518,4155565,2017.0,2021.0,1968.0,TCHC,20,Scarborough Southwest,3485 ST CLAIR AVE E,9,97,2021-12-03,53,Evaluation needs to be conducted in 1 year,19,2.0,3.0,2.0,3.0,3.0,4.0,2.0,2.0,2.0,,2.0,2.0,4.0,3.0,3.0,3.0,3.0,4.0,1.0,2.0,E2030,43.7145219871,-79.26814890060001,323467.401,4841421.877
-887519,4154115,2017.0,2021.0,1960.0,PRIVATE,14,Toronto-Danforth,101 COSBURN AVE,10,73,2021-12-03,92,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,5.0,,4.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,4.0,,S1421,43.688951922200005,-79.3496273223,316906.969,4838566.103999999
-887520,4155301,2017.0,2021.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,1276 ISLINGTON AVE,13,202,2021-12-03,82,Evaluation needs to be conducted in 2 years,19,5.0,5.0,5.0,3.0,3.0,4.0,4.0,5.0,4.0,3.0,5.0,5.0,5.0,3.0,5.0,4.0,4.0,3.0,3.0,,W0321,43.647785657,-79.5258528138,302698.664,4833982.321
-887521,4155952,2017.0,2021.0,1969.0,PRIVATE,13,Toronto Centre,280 WELLESLEY ST E,32,571,2021-12-03,81,Evaluation needs to be conducted in 2 years,18,5.0,5.0,5.0,3.0,4.0,4.0,3.0,4.0,5.0,,3.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,,S1323,43.6684263291,-79.3704468759,315261.028,4836267.257
-887522,4155231,2017.0,2021.0,1950.0,PRIVATE,3,Etobicoke-Lakeshore,3 HEATHERDALE RD,4,35,2021-12-02,79,Evaluation needs to be conducted in 2 years,16,3.0,5.0,5.0,2.0,4.0,4.0,,5.0,,4.0,3.0,3.0,5.0,3.0,5.0,4.0,5.0,3.0,,,W0329,43.6348017129,-79.4912245002,305492.372,4832539.5030000005
-887523,4155028,2017.0,2021.0,1968.0,PRIVATE,12,Toronto-St. Paul's,620 NORTHCLIFFE BLVD,9,68,2021-12-02,78,Evaluation needs to be conducted in 2 years,19,3.0,4.0,5.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,5.0,3.0,4.0,4.0,5.0,4.0,4.0,,S1222,43.6935553458,-79.447286922,309033.655,4839067.943
-887524,4154174,2017.0,2021.0,1985.0,SOCIAL HOUSING,15,Don Valley West,18 THORNCLIFFE PARK DR,7,109,2021-12-01,84,Evaluation needs to be conducted in 2 years,19,5.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,N1533,43.704307406400005,-79.3469915731,317116.28,4840272.413
-887525,4154173,2017.0,2021.0,1959.0,PRIVATE,15,Don Valley West,22 THORNCLIFFE PARK DR,7,60,2021-12-01,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,3.0,4.0,,4.0,3.0,4.0,3.0,4.0,5.0,3.0,4.0,5.0,5.0,4.0,4.0,,N1533,43.703702356899996,-79.3467690026,317134.342,4840205.228
-887526,4153425,2017.0,2021.0,1900.0,SOCIAL HOUSING,13,Toronto Centre,244 CHURCH ST,3,60,2021-12-01,76,Evaluation needs to be conducted in 2 years,15,3.0,5.0,5.0,3.0,3.0,3.0,,4.0,,,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,,4.0,S1332,43.6559630817,-79.377259039,314684.79,4834897.546
-887527,4153109,2017.0,2021.0,1955.0,PRIVATE,9,Davenport,2 REGAL RD,8,104,2021-12-01,74,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,4.0,3.0,4.0,3.0,3.0,4.0,3.0,2.0,4.0,5.0,4.0,4.0,4.0,4.0,2.0,4.0,4.0,S0928,43.675634371899996,-79.4334082604,310153.942,4837077.778
-887528,4155260,2017.0,2021.0,1956.0,PRIVATE,3,Etobicoke-Lakeshore,4 CROWN HILL PL,5,32,2021-12-01,82,Evaluation needs to be conducted in 2 years,17,5.0,4.0,4.0,3.0,5.0,4.0,,4.0,5.0,3.0,3.0,5.0,5.0,3.0,5.0,4.0,4.0,4.0,,,W0327,43.6379480963,-79.4907455213,305531.02,4832889.053
-887529,4154166,2017.0,2021.0,1962.0,PRIVATE,15,Don Valley West,42 THORNCLIFFE PARK DR,6,60,2021-12-01,85,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,5.0,,3.0,4.0,5.0,4.0,4.0,5.0,5.0,4.0,5.0,,N1533,43.702195489,-79.343701311,317381.647,4840039.243
-887530,4244929,2017.0,2021.0,1963.0,PRIVATE,1,Etobicoke North,70 ESTHER LORRIE DR,7,97,2021-12-01,84,Evaluation needs to be conducted in 2 years,19,5.0,5.0,5.0,4.0,4.0,3.0,,5.0,4.0,4.0,5.0,4.0,5.0,3.0,5.0,4.0,5.0,3.0,2.0,5.0,W0129,43.732279511,-79.577684699,298562.561,4843311.273
-887531,4153077,2017.0,2021.0,1966.0,PRIVATE,9,Davenport,128 SHERIDAN AVE,7,68,2021-12-01,76,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,4.0,,3.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,S0933,43.6504598567,-79.434253526,310088.06899999996,4834280.9569999995
-887532,4155436,2017.0,2021.0,1960.0,PRIVATE,1,Etobicoke North,15 TORBOLTON DR,3,19,2021-12-01,83,Evaluation needs to be conducted in 2 years,16,4.0,3.0,5.0,5.0,5.0,3.0,,4.0,,,4.0,3.0,5.0,5.0,5.0,4.0,4.0,4.0,3.0,,W0130,43.718916640299994,-79.5582979655,300087.068,4841885.912
-887533,4155207,,2021.0,1955.0,PRIVATE,4,Parkdale-High Park,585 JANE ST,4,25,2021-12-01,77,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,3.0,4.0,4.0,,4.0,,,3.0,3.0,5.0,5.0,4.0,4.0,,5.0,3.0,,S0422,43.6645529032,-79.4903043858,305566.283,4835844.669
-887534,4153024,2017.0,2021.0,1960.0,PRIVATE,4,Parkdale-High Park,188 JAMESON AVE,8,47,2021-12-01,78,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,3.0,4.0,4.0,,3.0,5.0,,3.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,,,S0436,43.6391266318,-79.437146582,309855.635,4833021.735
-887535,4155232,2017.0,2021.0,1950.0,PRIVATE,3,Etobicoke-Lakeshore,1 HEATHERDALE RD,4,35,2021-12-01,83,Evaluation needs to be conducted in 2 years,16,4.0,5.0,5.0,3.0,4.0,4.0,,5.0,,4.0,2.0,4.0,5.0,3.0,5.0,5.0,5.0,3.0,,,W0329,43.634913464499995,-79.4905899718,305543.578,4832551.923
-887536,4153560,2017.0,2021.0,1994.0,SOCIAL HOUSING,13,Toronto Centre,31 PRINCESS ST,10,82,2021-12-01,82,Evaluation needs to be conducted in 2 years,19,4.0,5.0,5.0,4.0,3.0,5.0,4.0,3.0,4.0,3.0,3.0,4.0,5.0,5.0,4.0,4.0,,5.0,4.0,4.0,S1335,43.6500861,-79.366016015,315596.755,4834258.353999999
-887537,4155265,2017.0,2021.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,9 CROWN HILL PL,5,60,2021-12-01,79,Evaluation needs to be conducted in 2 years,16,5.0,3.0,4.0,4.0,3.0,4.0,,5.0,4.0,,3.0,5.0,5.0,3.0,4.0,4.0,5.0,2.0,,,W0327,43.639623358,-79.491058309,305505.524,4833076.116
-887538,4154765,2017.0,2021.0,1967.0,PRIVATE,16,Don Valley East,25 ST DENNIS DR,17,297,2021-11-30,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,4.0,5.0,3.0,3.0,4.0,4.0,4.0,2.0,4.0,N1630,43.717187304300005,-79.33300027770001,318241.038,4841705.521000001
-887539,5015812,2021.0,2021.0,1972.0,PRIVATE,11,University-Rosedale,44 CHARLES ST W,51,793,2021-11-30,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,S1136,43.6687248258,-79.3882538095,313796.026,4836314.071
-887540,4153178,2017.0,2021.0,1919.0,PRIVATE,11,University-Rosedale,334 BLOOR ST W,3,24,2021-11-30,66,Evaluation needs to be conducted in 2 years,14,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,,,S1126,43.666839079700004,-79.404253282,312505.959,4836102.924
-887541,4154757,2017.0,2021.0,1973.0,PRIVATE,16,Don Valley East,45 WYNFORD HEIGHTS CRES,21,346,2021-11-30,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,2.0,4.0,3.0,4.0,4.0,4.0,,3.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,N1629,43.72699020859999,-79.32555199810001,318838.914,4842795.818
-887542,4155291,2018.0,2021.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,39 RIVERWOOD PKWY,4,23,2021-11-30,73,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,3.0,3.0,4.0,,4.0,,4.0,2.0,3.0,5.0,4.0,4.0,4.0,4.0,3.0,,,W0327,43.6403890443,-79.4907013619,305534.583,4833160.228999999
-887543,4240549,2017.0,2021.0,1962.0,PRIVATE,5,York South-Weston,2190 WESTON RD,8,76,2021-11-30,79,Evaluation needs to be conducted in 2 years,17,5.0,5.0,4.0,4.0,4.0,3.0,,3.0,4.0,,4.0,5.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,,W0524,43.703114245,-79.526528746,302646.059,4840130.027
-887544,4153068,2017.0,2021.0,1952.0,PRIVATE,4,Parkdale-High Park,150 FERMANAGH AVE,5,66,2021-11-30,80,Evaluation needs to be conducted in 2 years,16,5.0,4.0,5.0,3.0,4.0,4.0,,4.0,5.0,,3.0,5.0,5.0,4.0,5.0,3.0,,3.0,2.0,,S0433,43.646685098999995,-79.4485785795,308932.75,4833860.844
-887545,4154329,2017.0,2021.0,1979.0,PRIVATE,5,York South-Weston,1750 LAWRENCE AVE W,4,70,2021-11-30,77,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,4.0,5.0,W0528,43.7044910425,-79.49843825640001,304910.354,4840281.583000001
-887546,4153509,2017.0,2021.0,1960.0,PRIVATE,13,Toronto Centre,88 WELLESLEY ST E,8,71,2021-11-30,86,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,3.0,4.0,3.0,4.0,4.0,5.0,,4.0,5.0,5.0,5.0,4.0,4.0,4.0,5.0,3.0,,S1322,43.666250633500006,-79.3798674479,314472.745,4836040.134
-887547,4153498,2017.0,2021.0,1960.0,PRIVATE,13,Toronto Centre,91 WELLESLEY ST E,7,61,2021-11-30,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,4.0,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,,S1326,43.6656528226,-79.3795549794,314498.04,4835973.757
-887548,4153597,2017.0,2021.0,1923.0,PRIVATE,13,Toronto Centre,214 WELLESLEY ST E,3,38,2021-11-30,87,Evaluation needs to be conducted in 3 years,15,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,4.0,5.0,5.0,4.0,4.0,5.0,,5.0,4.0,,S1323,43.6677644838,-79.3730310131,315023.82,4836209.126
-887549,4153230,2017.0,2021.0,1965.0,PRIVATE,11,University-Rosedale,50 HILLSBORO AVE,24,196,2021-11-30,77,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,3.0,4.0,3.0,4.0,3.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,S1128,43.675830415,-79.393625247,313361.593,4837103.826
-887550,4155276,2019.0,2021.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,10 RIVERWOOD PKWY,3,52,2021-11-30,81,Evaluation needs to be conducted in 2 years,16,5.0,4.0,5.0,4.0,5.0,4.0,,5.0,,5.0,2.0,3.0,5.0,3.0,4.0,4.0,4.0,3.0,,,W0327,43.639089740699994,-79.4882393913,305726.291,4833016.54
-887551,4154665,2017.0,2021.0,1960.0,PRIVATE,8,Eglinton-Lawrence,225 WILSON AVE,3,20,2021-11-29,94,Evaluation needs to be conducted in 3 years,16,5.0,5.0,5.0,3.0,4.0,5.0,,5.0,,,3.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,,N0824,43.738182412700006,-79.427971659,310586.433,4844026.954
-887552,4153510,2017.0,2021.0,1963.0,PRIVATE,13,Toronto Centre,80 WELLESLEY ST E,12,76,2021-11-29,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,4.0,4.0,3.0,2.0,4.0,,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1322,43.6661438785,-79.38026748979999,314440.499,4836028.228999999
-887553,4155450,2017.0,2021.0,1976.0,PRIVATE,1,Etobicoke North,50 PANORAMA CRT,19,223,2021-11-28,51,Evaluation needs to be conducted in 1 year,19,5.0,3.0,5.0,2.0,2.0,3.0,2.0,4.0,3.0,2.0,2.0,3.0,1.0,3.0,2.0,1.0,2.0,2.0,1.0,,W0124,43.748167936099996,-79.577118319,298573.714,4845136.771000001
-887554,4155666,2017.0,2021.0,1974.0,PRIVATE,1,Etobicoke North,46 PANORAMA CRT,19,222,2021-11-28,57,Evaluation needs to be conducted in 1 year,19,4.0,2.0,5.0,3.0,4.0,4.0,2.0,4.0,3.0,3.0,2.0,2.0,4.0,3.0,1.0,1.0,3.0,2.0,2.0,,W0124,43.7482299219,-79.5783390119,298475.409,4845143.751
-887555,4154636,,2021.0,1958.0,PRIVATE,6,York Centre,15 WILMINGTON AVE,3,21,2021-11-27,70,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,4.0,3.0,4.0,,3.0,,,3.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,,N0624,43.753413503999994,-79.452055484,308645.309,4845718.607
-887556,4155254,2017.0,2021.0,1956.0,PRIVATE,3,Etobicoke-Lakeshore,2 BASKING RIDGE,4,24,2021-11-26,69,Evaluation needs to be conducted in 2 years,16,3.0,4.0,3.0,3.0,3.0,4.0,,4.0,,3.0,3.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,,,W0327,43.637708415,-79.49353779100001,305305.424,4832863.358
-887557,4154858,2017.0,2021.0,1962.0,PRIVATE,16,Don Valley East,85 BARTLEY DR,4,15,2021-11-26,67,Evaluation needs to be conducted in 2 years,17,4.0,4.0,3.0,3.0,3.0,4.0,,3.0,,3.0,4.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N1631,43.722088465,-79.306514169,320373.70399999997,4842255.579
-887558,4154280,2017.0,2021.0,1966.0,PRIVATE,5,York South-Weston,11 GULLIVER RD,6,42,2021-11-26,82,Evaluation needs to be conducted in 2 years,18,5.0,5.0,5.0,4.0,4.0,5.0,,4.0,5.0,3.0,4.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,,W0529,43.6988301169,-79.47621626680001,306701.52,4839652.882
-887559,4155165,2017.0,2021.0,1960.0,PRIVATE,5,York South-Weston,2292 WESTON RD,8,65,2021-11-26,81,Evaluation needs to be conducted in 2 years,18,5.0,5.0,4.0,4.0,4.0,3.0,,4.0,4.0,3.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,W0524,43.7048987763,-79.5296017204,302398.731,4840327.401000001
-887560,4154911,2017.0,2021.0,1963.0,PRIVATE,16,Don Valley East,111 COMBERMERE DR,7,81,2021-11-26,74,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,5.0,2.0,4.0,4.0,4.0,3.0,2.0,,N1625,43.7587471272,-79.319372054,319329.13300000003,4846324.826
-887561,4153234,2017.0,2021.0,1966.0,PRIVATE,11,University-Rosedale,88 BERNARD AVE,11,82,2021-11-26,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,3.0,4.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,,S1127,43.673266415,-79.401942382,312691.256,4836818.126
-887562,4639099,2019.0,2021.0,2018.0,PRIVATE,5,York South-Weston,22 JOHN ST,31,369,2021-11-26,98,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,W0524,43.701860896999996,-79.517659198,303360.88899999997,4839990.558
-887563,4268538,2017.0,2021.0,1974.0,PRIVATE,5,York South-Weston,33 KING ST,27,420,2021-11-26,73,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,3.0,5.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,W0525,43.702394008999995,-79.519023817,303250.92600000004,4840049.806
-887564,4155472,2017.0,2021.0,1959.0,PRIVATE,3,Etobicoke-Lakeshore,66 STATION RD,3,16,2021-11-25,84,Evaluation needs to be conducted in 2 years,16,4.0,5.0,5.0,4.0,4.0,5.0,,3.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,3.0,,,W0336,43.6157071247,-79.4949147117,305194.768,4830418.188
-887565,4166992,2017.0,2021.0,1971.0,PRIVATE,3,Etobicoke-Lakeshore,1294 ISLINGTON AVE,8,77,2021-11-25,84,Evaluation needs to be conducted in 2 years,18,4.0,5.0,5.0,4.0,4.0,5.0,,4.0,4.0,4.0,3.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,3.0,,W0321,43.64897448399999,-79.52619866100001,302670.539,4834115.36
-887566,4264913,2017.0,2021.0,1971.0,PRIVATE,3,Etobicoke-Lakeshore,1286 ISLINGTON AVE,8,77,2021-11-25,87,Evaluation needs to be conducted in 3 years,18,4.0,5.0,5.0,4.0,4.0,5.0,,4.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,W0321,43.64846976,-79.525809494,302701.915,4834059.277
-887567,4154349,2017.0,2021.0,1960.0,PRIVATE,5,York South-Weston,2432 KEELE ST,3,12,2021-11-25,88,Evaluation needs to be conducted in 3 years,15,4.0,4.0,5.0,5.0,3.0,5.0,,4.0,,,4.0,4.0,5.0,5.0,4.0,5.0,,5.0,4.0,,W0526,43.711105671300004,-79.47890915079999,306484.13300000003,4841016.598999999
-887568,4155264,2017.0,2021.0,1962.0,PRIVATE,3,Etobicoke-Lakeshore,8 CROWN HILL PL,4,35,2021-11-25,70,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,3.0,2.0,3.0,,4.0,,4.0,3.0,2.0,5.0,2.0,4.0,4.0,4.0,3.0,,,W0327,43.63895874,-79.491216297,305492.78,4833002.28
-887569,4154286,2017.0,2021.0,1954.0,PRIVATE,5,York South-Weston,150 CULFORD RD,5,110,2021-11-25,72,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,2.0,4.0,4.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,,W0529,43.705053002,-79.48808484199999,305744.52,4840345.009
-887570,4153222,2017.0,2021.0,1968.0,PRIVATE,11,University-Rosedale,206 ST GEORGE ST,11,105,2021-11-25,75,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,4.0,3.0,4.0,,4.0,3.0,,4.0,3.0,5.0,3.0,4.0,4.0,4.0,3.0,4.0,,S1127,43.670727396000004,-79.40165065800001,312715.094,4836536.086
-887571,4154877,2017.0,2021.0,1959.0,PRIVATE,16,Don Valley East,10 ELVASTON DR,3,20,2021-11-25,68,Evaluation needs to be conducted in 2 years,17,4.0,4.0,3.0,4.0,3.0,3.0,,4.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,N1628,43.7305607276,-79.3055621564,320448.469,4843196.023
-887572,4155303,2017.0,2021.0,1973.0,PRIVATE,3,Etobicoke-Lakeshore,24 MABELLE AVE,36,540,2021-11-25,94,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,4.0,4.0,5.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,,W0321,43.646585717700006,-79.52714718819999,302594.209,4833849.039
-887573,4153726,2017.0,2021.0,1992.0,SOCIAL HOUSING,19,Beaches-East York,20 TRENT AVE,8,111,2021-11-24,92,Evaluation needs to be conducted in 3 years,19,5.0,3.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,5.0,S1933,43.688688452,-79.296041897,321226.558,4838546.955
-887574,4155625,2017.0,2021.0,1970.0,TCHC,5,York South-Weston,20-50 FALSTAFF AVE,19,224,2021-11-24,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,2.0,4.0,4.0,4.0,3.0,4.0,,4.0,4.0,4.0,4.0,3.0,5.0,5.0,5.0,4.0,5.0,W0522,43.716053068,-79.505965893,304399.131,4841621.154
-887575,4226533,2017.0,2021.0,1958.0,PRIVATE,3,Etobicoke-Lakeshore,60 FIFTEENTH ST,3,11,2021-11-24,88,Evaluation needs to be conducted in 3 years,15,4.0,5.0,5.0,4.0,5.0,5.0,,4.0,,,5.0,5.0,5.0,3.0,4.0,5.0,,3.0,4.0,,W0335,43.6011294552,-79.5152006499,303557.209,4828798.737
-887576,4155874,,2021.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,5 BIRCHLEA AVE,3,13,2021-11-24,71,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,3.0,3.0,4.0,,3.0,,,3.0,5.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0334,43.592642046,-79.527957262,302531.131,4827854.897
-887577,4495076,,2021.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,7 BIRCHLEA AVE,3,13,2021-11-24,71,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,3.0,3.0,4.0,,3.0,,,3.0,5.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0334,43.592625398,-79.528050439,302525.459,4827853.1110000005
-887578,4153209,2017.0,2021.0,1968.0,PRIVATE,11,University-Rosedale,149 ST GEORGE ST,7,48,2021-11-24,74,Evaluation needs to be conducted in 2 years,17,4.0,3.0,5.0,3.0,3.0,4.0,,4.0,3.0,,4.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,,S1127,43.669299728999995,-79.400091636,312840.999,4836377.6280000005
-887579,4154857,2017.0,2021.0,1962.0,PRIVATE,16,Don Valley East,80 BARTLEY DR,3,10,2021-11-24,59,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,3.0,2.0,,2.0,,,3.0,3.0,5.0,2.0,3.0,3.0,,2.0,3.0,,N1631,43.722615158,-79.306619676,320365.066,4842314.073
-887580,4153207,2017.0,2021.0,1968.0,PRIVATE,11,University-Rosedale,20 PRINCE ARTHUR AVE,23,193,2021-11-24,81,Evaluation needs to be conducted in 2 years,20,5.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,S1127,43.6698986965,-79.3965574738,313126.188,4836443.565
-887581,4154910,2017.0,2021.0,1963.0,PRIVATE,16,Don Valley East,121 COMBERMERE DR,8,66,2021-11-24,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,2.0,,N1625,43.759361454099995,-79.318888833,319367.896,4846393.16
-887582,4153684,2017.0,2021.0,1961.0,PRIVATE,19,Beaches-East York,191 KENILWORTH AVE,4,31,2021-11-24,85,Evaluation needs to be conducted in 2 years,19,5.0,3.0,3.0,5.0,5.0,3.0,5.0,4.0,5.0,3.0,3.0,4.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,,S1938,43.6721092112,-79.3028387259,320683.239,4836702.795
-887583,4154768,2017.0,2021.0,1969.0,PRIVATE,16,Don Valley East,10 GRENOBLE DR,17,284,2021-11-24,68,Evaluation needs to be conducted in 2 years,19,3.0,3.0,2.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,2.0,3.0,4.0,4.0,4.0,4.0,3.0,,N1630,43.716421355,-79.334404294,318127.81,4841621.149
-887584,4154762,2017.0,2021.0,1966.0,PRIVATE,16,Don Valley East,45 GRENOBLE DR,28,217,2021-11-24,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,2.0,4.0,4.0,4.0,N1630,43.716030296999996,-79.330923583,318408.386,4841578.281
-887585,4154201,2017.0,2021.0,1950.0,PRIVATE,15,Don Valley West,896 EGLINTON AVE E,4,43,2021-11-23,81,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,,,2.0,5.0,5.0,5.0,4.0,4.0,5.0,4.0,3.0,,N1529,43.7142674187,-79.3630347401,315821.42699999997,4841376.723
-887586,4155435,2017.0,2021.0,1964.0,PRIVATE,1,Etobicoke North,3 TORBOLTON DR,3,18,2021-11-23,68,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,3.0,4.0,3.0,,2.0,,,3.0,4.0,5.0,2.0,5.0,3.0,3.0,4.0,2.0,,W0130,43.718334116099996,-79.55838532109999,300079.983,4841821.201
-887587,4155560,2017.0,2021.0,1968.0,PRIVATE,3,Etobicoke-Lakeshore,6 TWENTY FOURTH ST,7,81,2021-11-23,88,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,4.0,5.0,,4.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,3.0,,W0334,43.5975229121,-79.52326171050001,302906.316,4828398.191000001
-887588,4155486,2017.0,2021.0,1965.0,PRIVATE,3,Etobicoke-Lakeshore,4 SUPERIOR AVE,7,55,2021-11-23,68,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,3.0,4.0,,2.0,4.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,,,W0336,43.614181523999996,-79.487650972,305708.68100000004,4830306.617
-887589,4255508,2018.0,2021.0,1955.0,PRIVATE,19,Beaches-East York,55 LEE AVE,3,12,2021-11-23,83,Evaluation needs to be conducted in 2 years,16,5.0,5.0,3.0,5.0,3.0,3.0,,5.0,,,4.0,5.0,5.0,5.0,3.0,3.0,5.0,5.0,2.0,,S1942,43.669187773999994,-79.29715548600001,321142.042,4836380.305
-887590,4155441,2017.0,2021.0,1962.0,PRIVATE,1,Etobicoke North,39 LEDUC DR,3,13,2021-11-23,60,Evaluation needs to be conducted in 1 year,16,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,,,2.0,1.0,5.0,2.0,5.0,2.0,5.0,2.0,2.0,,W0130,43.7183839907,-79.5579415318,300115.74600000004,4841826.716
-887591,4155327,2017.0,2021.0,1966.0,PRIVATE,2,Etobicoke Centre,289 THE KINGSWAY,17,73,2021-11-23,88,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,3.0,5.0,4.0,,2.0,5.0,5.0,5.0,5.0,5.0,3.0,5.0,5.0,4.0,4.0,,,W0229,43.6631991618,-79.5195385532,303208.49100000004,4835694.511
-887592,4154132,2017.0,2021.0,1970.0,PRIVATE,14,Toronto-Danforth,1175 BROADVIEW AVE,12,134,2021-11-23,91,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,3.0,5.0,5.0,4.0,5.0,5.0,3.0,4.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,,S1421,43.689041600799996,-79.3545084305,316513.471,4838575.397
-887593,4155353,2017.0,2021.0,1994.0,TCHC,2,Etobicoke Centre,1025 SCARLETT RD,11,128,2021-11-23,67,Evaluation needs to be conducted in 2 years,18,3.0,3.0,5.0,2.0,3.0,4.0,2.0,3.0,3.0,,4.0,5.0,5.0,3.0,4.0,1.0,,4.0,2.0,4.0,W0224,43.7006762308,-79.5253118023,302744.32399999996,4839858.199
-887594,4153446,2017.0,2021.0,1920.0,PRIVATE,13,Toronto Centre,80-82 PEMBROKE ST,4,11,2021-11-23,76,Evaluation needs to be conducted in 2 years,14,3.0,4.0,5.0,3.0,3.0,4.0,,4.0,,,3.0,4.0,5.0,3.0,4.0,4.0,,4.0,,,S1328,43.6590517197,-79.3730588983,315023.047,4835241.178
-887595,4356727,2018.0,2021.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,176 BERRY RD,4,29,2021-11-23,72,Evaluation needs to be conducted in 2 years,18,4.0,5.0,5.0,3.0,4.0,3.0,,3.0,3.0,4.0,3.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,4.0,,W0327,43.636561238,-79.493053522,305320.673,4832716.888
-887596,4156650,2017.0,2021.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,138 BERRY RD,4,22,2021-11-23,81,Evaluation needs to be conducted in 2 years,16,4.0,5.0,5.0,4.0,5.0,3.0,,4.0,,,4.0,5.0,5.0,3.0,5.0,4.0,3.0,3.0,3.0,,W0327,43.638038087,-79.4865149575,,
-887597,4156653,2017.0,2021.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,136 BERRY RD,4,22,2021-11-23,80,Evaluation needs to be conducted in 2 years,16,4.0,5.0,5.0,3.0,5.0,3.0,,4.0,,,4.0,5.0,5.0,3.0,5.0,4.0,3.0,3.0,3.0,,W0327,43.638324622700004,-79.4863398937,,
-887598,4156652,2017.0,2021.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,134 BERRY RD,4,22,2021-11-23,81,Evaluation needs to be conducted in 2 years,16,4.0,5.0,5.0,4.0,5.0,3.0,,4.0,,,4.0,5.0,5.0,3.0,5.0,4.0,3.0,3.0,3.0,,W0327,43.6381743577,-79.485853087,,
-887599,4154450,2019.0,2021.0,1958.0,PRIVATE,6,York Centre,2 DORADO CRT,4,87,2021-11-23,58,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,2.0,3.0,,2.0,3.0,2.0,3.0,3.0,5.0,3.0,3.0,2.0,,3.0,3.0,,N0627,43.738441642299996,-79.4861508679,305900.09,4844053.338
-887600,4153208,2017.0,2021.0,1960.0,PRIVATE,11,University-Rosedale,145 ST GEORGE ST,12,130,2021-11-23,82,Evaluation needs to be conducted in 2 years,19,5.0,5.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,S1127,43.669080493,-79.399842813,312861.092,4836353.297
-887601,4168798,2017.0,2021.0,1956.0,PRIVATE,3,Etobicoke-Lakeshore,170 BERRY RD,4,22,2021-11-23,80,Evaluation needs to be conducted in 2 years,16,4.0,5.0,5.0,4.0,4.0,3.0,,5.0,,,4.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,,W0327,,,305421.0121,4832761.998
-887602,4153537,2017.0,2021.0,1965.0,PRIVATE,13,Toronto Centre,25 ST MARY ST,25,260,2021-11-23,86,Evaluation needs to be conducted in 3 years,20,5.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,5.0,3.0,5.0,5.0,3.0,4.0,4.0,4.0,S1321,43.6673389354,-79.3871538262,313884.939,4836160.227
-887603,4153518,2017.0,2021.0,1927.0,PRIVATE,13,Toronto Centre,16 ST JOSEPH ST,4,37,2021-11-23,66,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,3.0,3.0,3.0,,2.0,4.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,S1321,43.666396149200004,-79.3863015962,313953.812,4836055.585
-887604,4153501,2017.0,2021.0,1965.0,PRIVATE,13,Toronto Centre,100 MAITLAND ST,18,102,2021-11-23,86,Evaluation needs to be conducted in 3 years,19,4.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,5.0,5.0,5.0,3.0,,S1326,43.6650800354,-79.37968177479999,314487.904,4835910.112
-887605,4154194,2017.0,2021.0,1954.0,PRIVATE,15,Don Valley West,964 EGLINTON AVE E,3,12,2021-11-23,73,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,4.0,4.0,4.0,,4.0,,,4.0,3.0,5.0,4.0,3.0,4.0,,4.0,3.0,,N1529,43.715197605,-79.359028944,316143.785,4841481.558999999
-887606,4154192,2017.0,2021.0,1962.0,PRIVATE,15,Don Valley West,972 EGLINTON AVE E,6,49,2021-11-23,79,Evaluation needs to be conducted in 2 years,17,4.0,5.0,4.0,4.0,4.0,4.0,,4.0,4.0,,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,,N1529,43.715531981000005,-79.357969447,316229.097,4841518.848999999
-887607,4171461,2017.0,2021.0,1970.0,PRIVATE,15,Don Valley West,88 ERSKINE AVE,27,491,2021-11-23,86,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,4.0,5.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,N1526,,,313175.228,4841121.864
-887608,4155705,2017.0,2021.0,1973.0,TCHC,1,Etobicoke North,2067 ISLINGTON AVE,12,162,2021-11-22,53,Evaluation needs to be conducted in 1 year,20,3.0,3.0,5.0,1.0,3.0,3.0,3.0,2.0,4.0,2.0,1.0,4.0,3.0,3.0,2.0,3.0,2.0,2.0,2.0,2.0,W0135,43.702256035,-79.548440591,300879.92699999997,4840035.496
-887609,4154047,2017.0,2021.0,1962.0,PRIVATE,19,Beaches-East York,11 GLENBURN AVE,6,58,2021-11-22,82,Evaluation needs to be conducted in 2 years,17,5.0,3.0,5.0,5.0,4.0,5.0,,5.0,5.0,,3.0,5.0,3.0,4.0,3.0,5.0,3.0,4.0,3.0,,S1927,43.7071746852,-79.2972112317,321127.57399999996,4840599.535
-887610,4155813,2017.0,2021.0,1973.0,TCHC,1,Etobicoke North,2063 ISLINGTON AVE,12,162,2021-11-22,47,Building Audit,19,3.0,3.0,5.0,1.0,3.0,2.0,1.0,2.0,3.0,2.0,1.0,4.0,1.0,3.0,2.0,3.0,2.0,2.0,2.0,,W0135,43.701195372,-79.547954529,300919.034,4839917.6389999995
-887611,5025293,2021.0,2021.0,1950.0,PRIVATE,16,Don Valley East,11 WINGREEN CRT,3,11,2021-11-22,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,4.0,3.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,N1624,43.73874029899999,-79.3434691076,,
-887612,5025280,2021.0,2021.0,1960.0,PRIVATE,16,Don Valley East,10 WINGREEN CRT,3,11,2021-11-22,78,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,3.0,4.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N1624,43.7389927297,-79.3435489971,,
-887613,5025277,2021.0,2021.0,1950.0,PRIVATE,16,Don Valley East,4 WINGREEN CRT,3,11,2021-11-22,80,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N1624,43.739344531,-79.34216662760001,,
-887614,4269261,2018.0,2021.0,2007.0,SOCIAL HOUSING,1,Etobicoke North,68 BERGAMOT AVE,4,68,2021-11-22,74,Evaluation needs to be conducted in 2 years,17,4.0,5.0,3.0,4.0,4.0,5.0,2.0,3.0,3.0,,3.0,4.0,5.0,4.0,3.0,4.0,,4.0,3.0,,W0130,43.716943461999996,-79.557813582,300125.675,4841667.635
-887615,4155432,2017.0,2021.0,1960.0,PRIVATE,1,Etobicoke North,30 TORBOLTON DR,3,16,2021-11-22,64,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,2.0,2.0,,3.0,,4.0,3.0,3.0,5.0,4.0,3.0,2.0,4.0,4.0,3.0,,W0130,43.719534683199996,-79.5587174372,300053.318,4841954.598999999
-887616,4153547,2017.0,2021.0,1915.0,PRIVATE,13,Toronto Centre,44 HUNTLEY ST,3,26,2021-11-22,74,Evaluation needs to be conducted in 2 years,14,4.0,4.0,5.0,3.0,4.0,3.0,,4.0,,,4.0,3.0,5.0,3.0,3.0,3.0,,4.0,,,S1322,43.670057953800004,-79.378947526,314546.31,4836463.217
-887617,4153506,2017.0,2021.0,1940.0,PRIVATE,13,Toronto Centre,83 GLOUCESTER ST,3,27,2021-11-22,79,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,,4.0,4.0,3.0,5.0,3.0,4.0,4.0,,4.0,,,S1322,43.667333372200005,-79.3809735781,314383.363,4836160.296
-887618,4153579,2017.0,2021.0,1891.0,SOCIAL HOUSING,13,Toronto Centre,434 GERRARD ST E,3,16,2021-11-22,79,Evaluation needs to be conducted in 2 years,14,3.0,4.0,5.0,3.0,4.0,4.0,,4.0,,,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,S1327,43.663410889,-79.361416269,315961.044,4835727.915
-887619,4154038,2017.0,2021.0,1959.0,PRIVATE,19,Beaches-East York,540 DAWES RD,4,43,2021-11-22,79,Evaluation needs to be conducted in 2 years,18,5.0,3.0,5.0,5.0,3.0,5.0,,4.0,5.0,5.0,3.0,4.0,5.0,3.0,3.0,3.0,5.0,3.0,2.0,,S1927,43.705971488500005,-79.2960157018,321224.25,4840466.096
-887620,4153538,2017.0,2021.0,1958.0,PRIVATE,13,Toronto Centre,55 CHARLES ST E,9,75,2021-11-22,77,Evaluation needs to be conducted in 2 years,14,3.0,4.0,5.0,3.0,4.0,4.0,,3.0,,,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,S1322,43.66890094,-79.383531696,314176.813,4836334.156
-887621,4153532,2017.0,2021.0,1965.0,PRIVATE,13,Toronto Centre,55 ISABELLA ST,12,82,2021-11-22,84,Evaluation needs to be conducted in 2 years,18,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1322,43.667777746000006,-79.383098557,314211.655,4836210.379
-887622,4153845,2017.0,2021.0,1958.0,PRIVATE,15,Don Valley West,65 KEEWATIN AVE,4,50,2021-11-22,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,4.0,3.0,4.0,5.0,4.0,5.0,4.0,5.0,4.0,3.0,,N1526,43.7124138998,-79.3974353444,313049.654,4841166.871
-887623,4153528,2017.0,2021.0,1959.0,PRIVATE,13,Toronto Centre,89 ISABELLA ST,13,76,2021-11-21,81,Evaluation needs to be conducted in 2 years,18,4.0,5.0,5.0,3.0,3.0,4.0,3.0,4.0,5.0,,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,3.0,,S1322,43.668391403,-79.3806631771,314408.224,4836277.874
-887624,4153544,2017.0,2021.0,1959.0,PRIVATE,13,Toronto Centre,108 ISABELLA ST,11,262,2021-11-21,78,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,5.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,S1322,43.66900050939999,-79.3799911245,314462.32399999996,4836345.619
-887625,4156163,2017.0,2021.0,1967.0,PRIVATE,12,Toronto-St. Paul's,50 HOLLY ST,15,145,2021-11-21,76,Evaluation needs to be conducted in 2 years,17,5.0,5.0,4.0,4.0,4.0,2.0,,4.0,3.0,,3.0,4.0,4.0,4.0,4.0,3.0,,4.0,3.0,5.0,S1228,43.7058910324,-79.3966825426,313111.219,4840442.282
-887626,4153521,2017.0,2021.0,1960.0,PRIVATE,13,Toronto Centre,135 ISABELLA ST,9,79,2021-11-21,82,Evaluation needs to be conducted in 2 years,18,4.0,5.0,5.0,4.0,4.0,4.0,,3.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1322,43.6690495809,-79.3773006128,314679.289,4836351.3780000005
-887627,4154907,2018.0,2021.0,1961.0,PRIVATE,16,Don Valley East,2126 VICTORIA PARK AVE,3,11,2021-11-20,66,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,4.0,3.0,4.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,N1625,43.7594779981,-79.3164040826,319567.945,4846406.545
-887628,4154375,2017.0,2021.0,1950.0,PRIVATE,6,York Centre,17 ANTHONY RD,3,11,2021-11-19,77,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,3.0,4.0,3.0,,3.0,4.0,,N0632,43.73043975979999,-79.4596132017,308038.125,4843165.06
-887629,4155142,2019.0,2021.0,1954.0,PRIVATE,5,York South-Weston,131 WOODWARD AVE,3,10,2021-11-19,84,Evaluation needs to be conducted in 2 years,16,4.0,3.0,5.0,4.0,3.0,4.0,,4.0,,4.0,5.0,5.0,5.0,4.0,4.0,5.0,,5.0,3.0,,W0525,43.7094051154,-79.5081946065,304124.096,4840827.536
-887630,4155144,2017.0,2021.0,1955.0,PRIVATE,5,York South-Weston,135 WOODWARD AVE,3,10,2021-11-19,89,Evaluation needs to be conducted in 3 years,15,5.0,4.0,5.0,5.0,4.0,3.0,,4.0,,,5.0,4.0,5.0,5.0,4.0,4.0,,5.0,5.0,,W0525,43.7095042953,-79.5076695409,304166.41,4840838.547
-887631,4155148,2018.0,2021.0,1954.0,PRIVATE,5,York South-Weston,143 WOODWARD AVE,3,10,2021-11-19,88,Evaluation needs to be conducted in 3 years,16,5.0,5.0,5.0,5.0,4.0,3.0,,4.0,,5.0,3.0,4.0,5.0,5.0,5.0,4.0,,5.0,3.0,,W0525,43.709743360299996,-79.5066462518,304248.875,4840865.093
-887632,4155108,2017.0,2021.0,1957.0,PRIVATE,5,York South-Weston,1960 KEELE ST,3,28,2021-11-19,75,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,3.0,4.0,,3.0,4.0,,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,3.0,4.0,W0532,43.696215068,-79.475727208,306740.752,4839363.327
-887633,4155107,2017.0,2021.0,1960.0,PRIVATE,5,York South-Weston,1970 KEELE ST,4,45,2021-11-19,61,Evaluation needs to be conducted in 1 year,17,3.0,3.0,2.0,3.0,3.0,2.0,,2.0,4.0,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0532,43.696598977,-79.475898952,306726.898,4839405.973
-887634,4155487,2017.0,2021.0,1965.0,PRIVATE,3,Etobicoke-Lakeshore,2 SUPERIOR AVE,5,47,2021-11-19,64,Evaluation needs to be conducted in 1 year,16,3.0,4.0,3.0,3.0,3.0,4.0,,2.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,,,W0336,43.614330851700004,-79.4872977904,305809.589,4830265.341
-887635,4153463,2019.0,2021.0,1900.0,PRIVATE,11,University-Rosedale,378 MARKHAM ST,4,17,2021-11-19,51,Evaluation needs to be conducted in 1 year,15,3.0,2.0,4.0,2.0,1.0,3.0,,3.0,,,2.0,3.0,5.0,2.0,2.0,1.0,4.0,1.0,,,S1133,43.6584478213,-79.4103098841,312018.591,4835170.181
-887636,4288923,2017.0,2021.0,1959.0,PRIVATE,7,Humber River-Black Creek,2431 FINCH AVE W,6,115,2021-11-19,72,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,4.0,5.0,4.0,3.0,4.0,,4.0,4.0,4.0,W0727,43.749611484,-79.54723458,300980.433,4845291.518
-887637,4153645,2017.0,2021.0,1994.0,SOCIAL HOUSING,14,Toronto-Danforth,1320 GERRARD ST E,5,45,2021-11-19,92,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,,4.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,5.0,,S1437,43.671590245699996,-79.3263209715,318789.80600000004,4836640.948
-887638,4290981,2017.0,2021.0,1959.0,PRIVATE,3,Etobicoke-Lakeshore,2307 LAKE SHORE BLVD W,4,38,2021-11-19,93,Evaluation needs to be conducted in 3 years,15,5.0,5.0,5.0,4.0,5.0,5.0,,4.0,,,5.0,5.0,5.0,4.0,4.0,5.0,,4.0,5.0,,W0336,43.6178366581,-79.4863780789,305849.80600000004,4830654.806
-887639,4290978,2017.0,2021.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,2305 LAKE SHORE BLVD W,4,38,2021-11-19,93,Evaluation needs to be conducted in 3 years,15,5.0,5.0,5.0,4.0,5.0,5.0,,4.0,,,5.0,5.0,5.0,4.0,4.0,5.0,,4.0,5.0,,W0336,43.61799882930001,-79.4862937261,305855.692,4830672.705
-887640,4155464,2017.0,2021.0,1989.0,SOCIAL HOUSING,1,Etobicoke North,88 HUMBER COLLEGE BLVD,4,119,2021-11-18,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,5.0,3.0,3.0,4.0,,4.0,4.0,5.0,3.0,4.0,5.0,,4.0,2.0,,W0122,43.7317348465,-79.5986539334,296837.089,4843312.966
-887641,4154738,2017.0,2021.0,1965.0,PRIVATE,15,Don Valley West,31 UPPER CANADA DR,4,61,2021-11-18,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,4.0,,3.0,3.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,N1521,43.752982923999994,-79.40413326,312486.058,4845697.732
-887642,4154289,2017.0,2021.0,1957.0,PRIVATE,5,York South-Weston,2246 KEELE ST,3,22,2021-11-18,75,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,4.0,3.0,3.0,,3.0,,4.0,4.0,3.0,5.0,3.0,4.0,4.0,,4.0,4.0,,W0529,43.7014106109,-79.4769290281,306643.993,4839939.556
-887643,4155658,2017.0,2021.0,1972.0,TCHC,1,Etobicoke North,44 WILLOWRIDGE RD,14,236,2021-11-18,46,Building Audit,19,3.0,2.0,1.0,1.0,3.0,2.0,3.0,3.0,3.0,,2.0,3.0,2.0,2.0,2.0,4.0,2.0,2.0,1.0,3.0,W0137,43.675646313,-79.569749625,299172.333,4837117.833000001
-887644,4154356,2017.0,2021.0,1967.0,PRIVATE,5,York South-Weston,1440 LAWRENCE AVE W,13,207,2021-11-18,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,,3.0,3.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,,W0526,43.708911281400006,-79.4794304788,306442.18100000004,4840772.807
-887645,4626360,2019.0,2021.0,2019.0,PRIVATE,8,Eglinton-Lawrence,25 MONTGOMERY AVE,27,235,2021-11-18,97,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,,5.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,N0833,,,312881.507,4840828.842
-887646,4155878,2017.0,2021.0,1960.0,PRIVATE,8,Eglinton-Lawrence,60 WASDALE CRES,3,11,2021-11-18,78,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,,3.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N0823,43.7306713451,-79.4374893371,309820.414,4843191.908
-887647,4154379,2017.0,2021.0,1960.0,PRIVATE,6,York Centre,921 WILSON AVE,4,44,2021-11-18,75,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,4.0,3.0,4.0,,4.0,,,4.0,4.0,5.0,3.0,4.0,3.0,,3.0,4.0,,N0632,43.729940785,-79.468234305,307334.305,4843095.036
-887648,4153536,2019.0,2021.0,1928.0,PRIVATE,13,Toronto Centre,50 GLOUCESTER ST,3,35,2021-11-18,74,Evaluation needs to be conducted in 2 years,14,4.0,4.0,5.0,3.0,3.0,3.0,,3.0,,,4.0,4.0,5.0,4.0,3.0,3.0,,4.0,,,S1322,43.6673313703,-79.38310259890001,314211.661,4836159.836
-887649,4153535,2017.0,2021.0,1960.0,PRIVATE,13,Toronto Centre,60 GLOUCESTER ST,11,77,2021-11-18,83,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,,S1322,43.6673903164,-79.3827012027,314244.024,4836166.429
-887650,4155755,2017.0,2021.0,1970.0,SOCIAL HOUSING,19,Beaches-East York,17 EDGEWOOD AVE,3,30,2021-11-18,68,Evaluation needs to be conducted in 2 years,17,4.0,3.0,3.0,3.0,3.0,5.0,,3.0,,,3.0,3.0,5.0,4.0,2.0,3.0,4.0,4.0,2.0,4.0,S1937,43.670270654300005,-79.31262684810001,319894.407,4836496.722
-887651,4154278,2017.0,2021.0,1971.0,PRIVATE,7,Humber River-Black Creek,2600 FINCH AVE W,7,113,2021-11-18,74,Evaluation needs to be conducted in 2 years,19,4.0,4.0,3.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,W0722,43.748128033,-79.563243432,299690.887,4845132.328
-887652,4169221,2019.0,2021.0,1953.0,PRIVATE,5,York South-Weston,2701 EGLINTON AVE W,4,49,2021-11-18,81,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,,3.0,5.0,4.0,5.0,4.0,3.0,4.0,4.0,5.0,4.0,,W0536,43.689344093,-79.47749785100001,306598.205,4838599.952
-887653,4153040,2017.0,2021.0,1968.0,PRIVATE,4,Parkdale-High Park,12 ELM GROVE AVE,4,32,2021-11-18,73,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,3.0,3.0,3.0,,3.0,,,4.0,4.0,5.0,3.0,3.0,4.0,,4.0,3.0,,S0436,43.63899055,-79.4310530475,310347.29,4833006.982
-887654,4155552,2017.0,2021.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,22 A LONG BRANCH AVE,3,11,2021-11-18,90,Evaluation needs to be conducted in 3 years,16,5.0,5.0,5.0,5.0,5.0,3.0,,4.0,,5.0,5.0,4.0,5.0,4.0,4.0,5.0,,4.0,4.0,,W0334,43.590295276599996,-79.5324909265,302160.876,4827595.512
-887655,4156371,2017.0,2021.0,1992.0,SOCIAL HOUSING,5,York South-Weston,10 MAPLE LEAF DR,10,150,2021-11-18,85,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,3.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,5.0,,5.0,4.0,3.0,W0528,43.709517541400004,-79.5048440536,304394.109,4840839.994
-887656,4155508,2017.0,2021.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,2696 LAKE SHORE BLVD W,4,27,2021-11-18,83,Evaluation needs to be conducted in 2 years,16,4.0,5.0,5.0,4.0,4.0,3.0,,5.0,,3.0,4.0,5.0,5.0,4.0,4.0,4.0,,4.0,3.0,,W0335,43.603004467,-79.4961219509,305097.395,4829006.977
-887657,4155411,2020.0,2021.0,1968.0,PRIVATE,1,Etobicoke North,111 BLACKFRIAR AVE,3,39,2021-11-18,65,Evaluation needs to be conducted in 1 year,17,3.0,3.0,5.0,3.0,3.0,4.0,,3.0,,2.0,3.0,5.0,5.0,2.0,3.0,2.0,3.0,4.0,2.0,,W0133,43.6992765737,-79.56164594,299815.663,4839704.147
-887658,4153758,2017.0,2021.0,1968.0,PRIVATE,12,Toronto-St. Paul's,221 BALLIOL ST,17,272,2021-11-18,79,Evaluation needs to be conducted in 2 years,18,5.0,5.0,5.0,3.0,4.0,2.0,4.0,4.0,5.0,,3.0,3.0,5.0,3.0,5.0,4.0,3.0,4.0,4.0,,S1233,43.698438896499994,-79.3893834002,313700.592,4839615.097
-887659,4153598,2017.0,2021.0,1969.0,PRIVATE,13,Toronto Centre,77 HOWARD ST,24,381,2021-11-18,72,Evaluation needs to be conducted in 2 years,18,4.0,5.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1323,43.6708658247,-79.3728064407,315041.394,4836553.713
-887660,4284996,2017.0,2021.0,1969.0,PRIVATE,12,Toronto-St. Paul's,60 PLEASANT BLVD,32,163,2021-11-18,93,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,3.0,5.0,4.0,5.0,5.0,5.0,,5.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,5.0,S1238,43.687754027,-79.391524865,313560.94399999996,4838448.416
-887661,4153542,2017.0,2021.0,1955.0,PRIVATE,13,Toronto Centre,42 ISABELLA ST,4,24,2021-11-18,86,Evaluation needs to be conducted in 3 years,14,4.0,4.0,5.0,4.0,4.0,5.0,,4.0,,,4.0,5.0,5.0,4.0,4.0,4.0,,4.0,,,S1322,43.66829815,-79.383729477,314160.693,4836268.121
-887662,4153541,2017.0,2021.0,1960.0,PRIVATE,13,Toronto Centre,48 ISABELLA ST,10,84,2021-11-18,83,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1322,43.668324,-79.383444564,314183.666,4836271.025
-887663,4155704,2017.0,2021.0,1994.0,SOCIAL HOUSING,19,Beaches-East York,656 KINGSTON RD,6,106,2021-11-18,78,Evaluation needs to be conducted in 2 years,18,5.0,3.0,3.0,5.0,3.0,5.0,5.0,5.0,5.0,,3.0,4.0,3.0,3.0,3.0,4.0,5.0,3.0,3.0,,S1936,43.679168172,-79.297693338,321095.995,4837488.989
-887664,4155444,2017.0,2021.0,1969.0,PRIVATE,1,Etobicoke North,70 REXDALE BLVD,6,100,2021-11-18,74,Evaluation needs to be conducted in 2 years,18,4.0,2.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,,2.0,5.0,5.0,4.0,2.0,4.0,5.0,5.0,3.0,,W0130,43.713516909300004,-79.5613583242,299840.021,4841286.219
-887665,4154735,2017.0,2021.0,1959.0,PRIVATE,15,Don Valley West,28 UPPER CANADA DR,4,54,2021-11-18,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N1521,43.7522561858,-79.4046460528,312453.74100000004,4845645.083000001
-887666,4154737,2017.0,2021.0,1965.0,PRIVATE,15,Don Valley West,29 UPPER CANADA DR,4,54,2021-11-18,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,3.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N1521,43.752224986499996,-79.4034227428,312562.05100000004,4845588.969
-887667,4154736,2017.0,2021.0,1959.0,PRIVATE,15,Don Valley West,30 UPPER CANADA DR,4,54,2021-11-18,82,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N1521,43.752919738900005,-79.4048046905,312470.577,4845582.9969999995
-887668,4153235,,2021.0,1918.0,PRIVATE,11,University-Rosedale,661 HURON ST,3,15,2021-11-18,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,,3.0,,3.0,,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1127,43.674829239,-79.40427079199999,312503.317,4836991.544
-887669,4156390,2017.0,2021.0,1971.0,TCHC,22,Scarborough-Agincourt,2739 VICTORIA PARK AVE,15,203,2021-11-17,79,Evaluation needs to be conducted in 2 years,20,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,5.0,E2225,43.778310557,-79.32353353399999,318941.968,4848494.812
-887670,4155116,2017.0,2021.0,1953.0,PRIVATE,5,York South-Weston,7 GREENTREE CRT,3,28,2021-11-17,64,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,,,W0532,43.6921996331,-79.47923360909999,306458.47,4838916.21
-887671,4154325,2017.0,2021.0,1958.0,PRIVATE,5,York South-Weston,1605 JANE ST,3,28,2021-11-17,65,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,3.0,4.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0528,43.700297074,-79.50255884479999,304578.221,4839815.666
-887672,4153715,2017.0,2021.0,1958.0,PRIVATE,19,Beaches-East York,474 KINGSTON RD,4,38,2021-11-17,87,Evaluation needs to be conducted in 3 years,17,5.0,3.0,5.0,5.0,5.0,3.0,,5.0,,5.0,5.0,3.0,5.0,5.0,4.0,3.0,5.0,5.0,3.0,,S1935,43.6776882643,-79.3033656117,320639.297,4837322.513
-887673,4153712,2017.0,2021.0,1985.0,SOCIAL HOUSING,19,Beaches-East York,550 KINGSTON RD,7,138,2021-11-17,77,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,3.0,3.0,5.0,2.0,5.0,3.0,,3.0,5.0,3.0,5.0,3.0,4.0,5.0,5.0,4.0,3.0,S1935,43.678459126999996,-79.30145580199999,320792.82,4837409.477
-887674,4167763,2017.0,2021.0,1980.0,TCHC,7,Humber River-Black Creek,5 NEEDLE FIRWAY,12,137,2021-11-17,73,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,4.0,5.0,4.0,3.0,3.0,5.0,5.0,2.0,,W0729,43.752566895,-79.518797427,303270.559,4845623.647
-887675,4153189,2017.0,2021.0,1966.0,PRIVATE,11,University-Rosedale,35 WALMER RD,15,174,2021-11-17,77,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,4.0,4.0,2.0,3.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,3.0,3.0,3.0,4.0,S1126,43.66913353899999,-79.405620062,312395.193,4836358.655
-887676,4155104,2017.0,2021.0,1956.0,PRIVATE,5,York South-Weston,96 TRETHEWEY DR,3,12,2021-11-17,71,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,2.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,4.0,,3.0,3.0,,W0532,43.6934951479,-79.4820055643,306234.99,4839060.1
-887677,4152945,2017.0,2021.0,1992.0,SOCIAL HOUSING,4,Parkdale-High Park,2767 DUNDAS ST W,6,21,2021-11-17,67,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,2.0,3.0,5.0,4.0,3.0,3.0,,4.0,,,S0429,43.665100576,-79.461595606,307881.369,4835907.097
-887678,4155220,2017.0,2021.0,1967.0,PRIVATE,3,Etobicoke-Lakeshore,618 EVANS AVE,3,25,2021-11-17,83,Evaluation needs to be conducted in 2 years,16,4.0,5.0,5.0,4.0,4.0,5.0,,4.0,,4.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,,,W0330,43.610859495,-79.550105854,300739.526,4829881.718
-887679,4152923,2017.0,2021.0,1965.0,PRIVATE,4,Parkdale-High Park,283 GILMOUR AVE,5,37,2021-11-17,84,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,5.0,,4.0,5.0,5.0,4.0,3.0,3.0,,5.0,4.0,5.0,S0423,43.665185010600005,-79.4788057495,306493.641,4835915.054
-887680,4153811,2017.0,2021.0,1960.0,PRIVATE,15,Don Valley West,440 EGLINTON AVE E,10,90,2021-11-17,82,Evaluation needs to be conducted in 2 years,18,5.0,5.0,4.0,4.0,4.0,3.0,,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N1537,43.7098728006,-79.3847266603,314074.202,4840885.908
-887681,4156442,2017.0,2021.0,1953.0,SOCIAL HOUSING,3,Etobicoke-Lakeshore,5 FORTY THIRD ST,3,40,2021-11-17,76,Evaluation needs to be conducted in 2 years,15,3.0,5.0,5.0,3.0,4.0,3.0,,3.0,,,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,W0334,43.5900678471,-79.546025288,301067.973,4827570.758
-887682,4156001,2017.0,2021.0,1953.0,SOCIAL HOUSING,3,Etobicoke-Lakeshore,15 FORTY THIRD ST,3,25,2021-11-17,72,Evaluation needs to be conducted in 2 years,15,2.0,5.0,5.0,2.0,3.0,4.0,,3.0,,,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,3.0,,W0334,43.59027832979999,-79.54615877170001,301057.206,4827594.148
-887683,4156443,2017.0,2021.0,1953.0,SOCIAL HOUSING,3,Etobicoke-Lakeshore,25 FORTY THIRD ST,3,41,2021-11-17,76,Evaluation needs to be conducted in 2 years,15,3.0,5.0,5.0,3.0,3.0,4.0,,3.0,,,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0334,43.5903216537,-79.5464760633,301031.587,4827598.975
-887684,4153492,2017.0,2021.0,1928.0,PRIVATE,13,Toronto Centre,58 MAITLAND ST,4,45,2021-11-17,73,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,,,3.0,4.0,5.0,3.0,4.0,4.0,,4.0,4.0,,S1326,43.66483495399999,-79.3811923705,314366.11199999996,4835882.717
-887685,4153190,2018.0,2021.0,1965.0,PRIVATE,11,University-Rosedale,66 SPADINA RD,11,75,2021-11-17,79,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,4.0,3.0,,3.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,,,S1126,43.670088649499995,-79.4054989644,312405.105,4836463.821
-887686,4153858,2017.0,2021.0,1960.0,PRIVATE,15,Don Valley West,2707 YONGE ST,4,48,2021-11-17,81,Evaluation needs to be conducted in 2 years,15,5.0,3.0,5.0,5.0,4.0,5.0,,4.0,,5.0,4.0,4.0,5.0,3.0,3.0,3.0,,3.0,,,N1526,43.716980201000005,-79.400164813,312828.832,4841674.847
-887687,4286261,2017.0,2021.0,1990.0,TCHC,15,Don Valley West,2755 YONGE ST,4,41,2021-11-17,78,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,,4.0,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,N1526,43.718218448,-79.40053936609999,312798.75,4841811.4180000005
-887688,4153394,2017.0,2021.0,1980.0,PRIVATE,13,Toronto Centre,90 ADELAIDE ST E,8,60,2021-11-17,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,S1334,43.651581463999996,-79.37405760899999,314943.48,4834412.106000001
-887689,4279693,2017.0,2021.0,1952.0,PRIVATE,19,Beaches-East York,332 CHISHOLM AVE,3,12,2021-11-17,67,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,3.0,4.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1926,43.697292581099994,-79.3074870563,320325.566,4839501.516
-887690,4156634,2017.0,2021.0,1965.0,PRIVATE,16,Don Valley East,9 WINGREEN CRT,3,11,2021-11-17,79,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,3.0,4.0,,3.0,,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N1624,43.7386011415,-79.34322632029999,317412.553,4844082.855
-887691,4155093,2017.0,2021.0,1955.0,PRIVATE,5,York South-Weston,31 CLEARVIEW HTS,4,43,2021-11-17,67,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,3.0,,3.0,,4.0,,3.0,4.0,4.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0532,43.69278743,-79.4796635822,306423.795,4838981.508
-887692,4155248,2017.0,2021.0,1940.0,PRIVATE,3,Etobicoke-Lakeshore,140 BERRY RD,4,14,2021-11-17,69,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,2.0,4.0,,4.0,,,3.0,4.0,5.0,3.0,4.0,3.0,4.0,3.0,,,W0327,43.6378752009,-79.4868729596,305849.94800000003,4832879.26
-887693,4153408,2017.0,2021.0,1968.0,TCHC,10,Spadina-Fort York,91 AUGUSTA AVE,14,257,2021-11-17,69,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,,3.0,4.0,4.0,3.0,4.0,3.0,,3.0,3.0,,S1023,43.6507210729,-79.400397963,312819.071,4834312.641
-887694,4153665,2017.0,2021.0,1940.0,SOCIAL HOUSING,19,Beaches-East York,2363 QUEEN ST E,4,20,2021-11-17,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,,4.0,S1942,43.6721680178,-79.2886764155,321825.23699999996,4836712.125
-887695,4153431,2017.0,2021.0,1983.0,SOCIAL HOUSING,13,Toronto Centre,90 SHUTER ST,10,77,2021-11-17,74,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,4.0,5.0,3.0,4.0,4.0,,4.0,,5.0,S1332,43.655490881000006,-79.3742822812,314924.96,4834845.425
-887696,4155208,2017.0,2021.0,1949.0,PRIVATE,3,Etobicoke-Lakeshore,2684 BLOOR ST W,3,21,2021-11-17,81,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,,,3.0,5.0,5.0,4.0,4.0,4.0,,3.0,5.0,,W0322,43.6502799096,-79.49662782760001,305056.355,4834259.015
-887697,4155209,2017.0,2021.0,1949.0,PRIVATE,3,Etobicoke-Lakeshore,2686 BLOOR ST W,3,21,2021-11-17,87,Evaluation needs to be conducted in 3 years,15,4.0,4.0,5.0,4.0,4.0,5.0,,4.0,,,4.0,4.0,5.0,4.0,5.0,4.0,,4.0,5.0,,W0322,43.650295861800004,-79.4968685545,305036.934,4834260.786
-887698,4152745,2017.0,2021.0,1960.0,PRIVATE,24,Scarborough-Guildwood,45 GREENBRAE CRCT,6,112,2021-11-17,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,E2425,43.759429906,-79.230999363,326447.571,4846406.327
-887699,4153925,2017.0,2021.0,1934.0,PRIVATE,12,Toronto-St. Paul's,101 LAWTON BLVD,5,46,2021-11-16,71,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,3.0,3.0,3.0,4.0,4.0,3.0,,3.0,3.0,5.0,3.0,4.0,3.0,,5.0,3.0,,S1232,43.693704796000006,-79.3967468,313107.717,4839088.374
-887700,4154531,2017.0,2021.0,1975.0,PRIVATE,8,Eglinton-Lawrence,84 NEPTUNE DR,3,11,2021-11-16,84,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,,N0823,43.732647778,-79.4370443606,309856.093,4843411.5030000005
-887701,4166942,2017.0,2021.0,1967.0,PRIVATE,14,Toronto-Danforth,50 CAMBRIDGE AVE,21,275,2021-11-16,89,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,S1424,43.6775380937,-79.36035851140001,316044.00399999996,4837296.578
-887702,4153717,2017.0,2021.0,1987.0,SOCIAL HOUSING,19,Beaches-East York,751 WOODBINE AVE,5,97,2021-11-16,85,Evaluation needs to be conducted in 2 years,20,5.0,3.0,3.0,5.0,5.0,5.0,3.0,5.0,5.0,5.0,3.0,5.0,3.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,S1935,43.680524762,-79.3102839398,320080.74600000004,4837636.366
-887703,4154140,2017.0,2021.0,1971.0,PRIVATE,14,Toronto-Danforth,1010 BROADVIEW AVE,20,109,2021-11-16,89,Evaluation needs to be conducted in 3 years,19,4.0,5.0,5.0,5.0,4.0,4.0,3.0,4.0,5.0,,4.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,S1421,43.683273425,-79.357525834,316271.068,4837935.107
-887704,4153850,2017.0,2021.0,1930.0,PRIVATE,15,Don Valley West,11 SHERWOOD AVE,3,23,2021-11-16,80,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,N1526,43.713358222,-79.398875082,312933.244,4841272.594
-887705,4153852,2017.0,2021.0,1930.0,PRIVATE,15,Don Valley West,21 SHERWOOD AVE,3,26,2021-11-16,81,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,N1526,43.713477488,-79.398290281,312980.353,4841285.901000001
-887706,4153853,2017.0,2021.0,1930.0,PRIVATE,15,Don Valley West,25 SHERWOOD AVE,3,27,2021-11-16,83,Evaluation needs to be conducted in 2 years,16,4.0,3.0,5.0,5.0,4.0,5.0,,3.0,,5.0,4.0,5.0,5.0,3.0,3.0,5.0,,3.0,4.0,,N1526,43.713530331,-79.398012046,313002.767,4841291.799
-887707,4241532,2017.0,2021.0,1940.0,PRIVATE,15,Don Valley West,27 SHERWOOD AVE,3,17,2021-11-16,80,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,3.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,N1526,43.713606404,-79.397782703,313021.238,4841300.273
-887708,4153183,2018.0,2021.0,1919.0,PRIVATE,11,University-Rosedale,38 BARTON AVE,4,18,2021-11-16,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1125,43.668063591000006,-79.413898107,311727.76,4836239.086
-887709,4250636,2019.0,2021.0,1957.0,PRIVATE,12,Toronto-St. Paul's,111 LAWTON BLVD,13,152,2021-11-15,82,Evaluation needs to be conducted in 2 years,19,5.0,5.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,5.0,4.0,5.0,4.0,5.0,4.0,3.0,,S1232,43.694112715900005,-79.3967271085,313109.244,4839133.698
-887710,4154401,2017.0,2021.0,1950.0,PRIVATE,6,York Centre,2217 JANE ST,3,12,2021-11-15,72,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,3.0,3.0,,3.0,,,4.0,4.0,5.0,3.0,4.0,3.0,,3.0,3.0,,N0627,43.7233585034,-79.508865507,304070.225,4842377.656
-887711,4156493,2017.0,2021.0,1971.0,PRIVATE,7,Humber River-Black Creek,355 GRANDRAVINE DR,15,118,2021-11-15,76,Evaluation needs to be conducted in 2 years,20,3.0,4.0,3.0,3.0,4.0,3.0,3.0,4.0,3.0,4.0,3.0,4.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,W0732,43.746959357,-79.513143818,303707.642,4845032.763
-887712,4156420,2017.0,2021.0,1971.0,PRIVATE,7,Humber River-Black Creek,365 GRANDRAVINE DR,15,118,2021-11-15,75,Evaluation needs to be conducted in 2 years,20,3.0,4.0,3.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,3.0,5.0,4.0,4.0,4.0,5.0,5.0,3.0,4.0,W0732,43.746846876000006,-79.51402768300001,303590.293,4844998.72
-887713,4154708,2020.0,2021.0,,PRIVATE,18,Willowdale,2 ANCONA ST,4,32,2021-11-15,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N1822,43.774991309700006,-79.43941526399999,309661.717,4848115.5139999995
-887714,4155026,2017.0,2021.0,1997.0,SOCIAL HOUSING,12,Toronto-St. Paul's,2353 DUFFERIN ST,16,144,2021-11-15,84,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,5.0,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,S1222,43.6951962434,-79.44961389619999,308845.969,4839250.13
-887715,4153480,2017.0,2021.0,1994.0,SOCIAL HOUSING,13,Toronto Centre,84 CARLTON ST,12,154,2021-11-15,84,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,S1326,43.6622405151,-79.3787026496,314567.32,4835594.787
-887716,4154395,2017.0,2021.0,1960.0,PRIVATE,6,York Centre,1391 WILSON AVE,4,36,2021-11-15,74,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,,3.0,4.0,5.0,5.0,3.0,4.0,2.0,,3.0,3.0,,N0631,43.721770572299995,-79.499656818,304812.168,4842201.204
-887717,4154392,2017.0,2021.0,1960.0,PRIVATE,6,York Centre,1455 WILSON AVE,3,66,2021-11-15,71,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,4.0,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0631,43.721783344399995,-79.5027970015,304559.163,4842202.632
-887718,4154389,2017.0,2021.0,1955.0,PRIVATE,6,York Centre,1497 WILSON AVE,4,42,2021-11-15,69,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,4.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,,N0631,43.72097928310001,-79.5051259497,304371.503,4842113.317
-887719,4228864,2017.0,2021.0,1964.0,PRIVATE,17,Don Valley North,2911 BAYVIEW AVE,3,304,2021-11-15,84,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,N1725,43.77054660020001,-79.3863327506,313935.534,4847626.159
-887720,4154936,2017.0,2021.0,1930.0,PRIVATE,12,Toronto-St. Paul's,17 RAGLAN AVE,4,16,2021-11-15,85,Evaluation needs to be conducted in 2 years,13,4.0,4.0,5.0,4.0,,5.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,3.0,,5.0,,,S1229,43.6838687867,-79.4195252929,311272.55199999997,4837993.57
-887721,4154937,2017.0,2021.0,1930.0,PRIVATE,12,Toronto-St. Paul's,21 RAGLAN AVE,3,12,2021-11-15,86,Evaluation needs to be conducted in 3 years,13,4.0,4.0,5.0,4.0,,5.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,5.0,,,S1229,43.6839669504,-79.4195812784,311268.028,4838004.472
-887722,4154939,2017.0,2021.0,1965.0,PRIVATE,12,Toronto-St. Paul's,105 RAGLAN AVE,6,34,2021-11-15,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,3.0,4.0,4.0,3.0,4.0,,4.0,4.0,5.0,4.0,3.0,4.0,4.0,5.0,3.0,,S1229,43.6862572017,-79.42050910350001,311192.988,4838258.855
-887723,4154352,2017.0,2021.0,1950.0,PRIVATE,5,York South-Weston,2422 KEELE ST,3,10,2021-11-15,75,Evaluation needs to be conducted in 2 years,15,3.0,4.0,3.0,4.0,3.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,3.0,,W0526,43.7104582053,-79.4787969775,306489.91,4840962.965
-887724,4155004,2017.0,2021.0,1980.0,PRIVATE,12,Toronto-St. Paul's,989 EGLINTON AVE W,7,146,2021-11-15,94,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,4.0,5.0,4.0,5.0,5.0,,4.0,4.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,S1224,43.699724260699995,-79.4303144037,310401.287,4839754.304
-887725,4152935,2017.0,2021.0,1969.0,PRIVATE,4,Parkdale-High Park,40 HIGH PARK AVE,20,331,2021-11-14,83,Evaluation needs to be conducted in 2 years,15,4.0,5.0,5.0,4.0,,3.0,,3.0,4.0,,3.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,,,S0428,,,307496.989,4834752.748
-887726,4152922,2017.0,2021.0,1960.0,PRIVATE,4,Parkdale-High Park,392 JANE ST,6,32,2021-11-14,72,Evaluation needs to be conducted in 2 years,18,3.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,5.0,5.0,4.0,3.0,3.0,,4.0,4.0,,S0426,43.6580102067,-79.4883644142,305722.865,4835117.844
-887727,4154291,2017.0,2021.0,1961.0,PRIVATE,5,York South-Weston,2110 KEELE ST,9,93,2021-11-13,74,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,,3.0,3.0,5.0,3.0,4.0,4.0,4.0,4.0,3.0,,W0529,43.6999973614,-79.4766756216,306664.46,4839782.551
-887728,4155999,2017.0,2021.0,1970.0,TCHC,5,York South-Weston,30 FALSTAFF AVE,19,221,2021-11-13,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,3.0,3.0,3.0,4.0,,3.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,5.0,W0522,43.7164211106,-79.5052233382,304363.605,4841606.944
-887729,4154440,2018.0,2021.0,1965.0,PRIVATE,6,York Centre,2960 KEELE ST,3,41,2021-11-13,66,Evaluation needs to be conducted in 2 years,17,3.0,4.0,3.0,3.0,3.0,4.0,,2.0,3.0,,4.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0627,43.735849503000004,-79.484562864,306027.788,4843766.348
-887730,4154862,2017.0,2021.0,1968.0,PRIVATE,16,Don Valley East,1600 VICTORIA PARK AVE,4,27,2021-11-12,72,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,4.0,4.0,4.0,,3.0,4.0,3.0,3.0,4.0,5.0,4.0,3.0,3.0,4.0,3.0,3.0,,N1628,43.730005821599995,-79.3053972189,320461.9,4843134.408
-887731,4155081,2017.0,2021.0,1996.0,SOCIAL HOUSING,5,York South-Weston,1500 KEELE ST,11,132,2021-11-12,83,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,5.0,4.0,4.0,,5.0,4.0,4.0,W0536,43.679672235299996,-79.4718686985,307133.338,4837529.733
-887732,4154372,2017.0,2021.0,1958.0,PRIVATE,6,York Centre,6 HARTHAM PL,3,26,2021-11-12,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,4.0,4.0,4.0,,4.0,,4.0,4.0,3.0,5.0,4.0,4.0,3.0,,4.0,4.0,,N0632,43.729465669,-79.4599073969,308014.479,4843056.8319999995
-887733,4154373,2017.0,2021.0,1959.0,PRIVATE,6,York Centre,5 HARTHAM PL,3,26,2021-11-12,71,Evaluation needs to be conducted in 2 years,16,3.0,4.0,3.0,4.0,3.0,3.0,,4.0,,3.0,4.0,4.0,5.0,3.0,3.0,3.0,,4.0,4.0,,N0632,43.729609977799996,-79.45935772680001,308058.755,4843072.886
-887734,4154371,2017.0,2021.0,1956.0,PRIVATE,6,York Centre,4 HARTHAM PL,3,12,2021-11-12,66,Evaluation needs to be conducted in 2 years,16,3.0,4.0,3.0,4.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,N0632,43.7299426047,-79.4600970756,307999.17,4843109.808999999
-887735,4154374,2017.0,2021.0,1958.0,PRIVATE,6,York Centre,3 HARTHAM PL,3,11,2021-11-12,68,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,3.0,3.0,4.0,,3.0,,4.0,3.0,2.0,5.0,3.0,4.0,3.0,,3.0,3.0,,N0632,43.7300526745,-79.4595177072,308045.841,4843122.061000001
-887736,4155151,2017.0,2021.0,1940.0,PRIVATE,5,York South-Weston,50 JOHN ST,3,14,2021-11-12,86,Evaluation needs to be conducted in 3 years,16,4.0,4.0,5.0,4.0,4.0,5.0,,4.0,,4.0,5.0,5.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0525,43.703370512,-79.516414059,303461.293,4840158.234
-887737,4154381,2017.0,2021.0,1964.0,PRIVATE,6,York Centre,31 PAXTONIA BLVD,3,50,2021-11-12,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,5.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N0628,43.729184156,-79.4799862113,306396.878,4843024.978
-887738,4154380,2017.0,2021.0,1953.0,PRIVATE,6,York Centre,27 PAXTONIA BLVD,4,50,2021-11-12,83,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,,N0628,43.7290216575,-79.48091891979999,306321.739,4843006.91
-887739,4155618,2017.0,2021.0,1972.0,TCHC,7,Humber River-Black Creek,15 TOBERMORY DR,24,374,2021-11-12,64,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,2.0,3.0,3.0,4.0,3.0,3.0,4.0,4.0,3.0,4.0,W0725,43.760168119,-79.50789679100001,304069.821,4846499.065
-887740,4154793,2019.0,2021.0,1962.0,PRIVATE,16,Don Valley East,150 THE DONWAY W,6,65,2021-11-12,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,4.0,,3.0,4.0,3.0,3.0,3.0,5.0,4.0,4.0,4.0,4.0,5.0,3.0,,N1626,43.733399454700006,-79.3476283156,317059.04,4843504.301
-887741,4155086,2017.0,2021.0,1955.0,PRIVATE,5,York South-Weston,1720 KEELE ST,4,47,2021-11-12,82,Evaluation needs to be conducted in 2 years,17,4.0,5.0,5.0,4.0,3.0,4.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,3.0,,W0536,43.685202700699996,-79.4736170741,306911.453,4838139.002
-887742,4154385,2017.0,2021.0,1960.0,PRIVATE,6,York Centre,1533 WILSON AVE,4,42,2021-11-10,68,Evaluation needs to be conducted in 2 years,17,4.0,3.0,3.0,3.0,3.0,3.0,,4.0,,3.0,4.0,4.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,,N0631,43.7206156071,-79.5067407742,304241.38,4842072.93
-887743,4152743,2017.0,2021.0,1962.0,PRIVATE,24,Scarborough-Guildwood,25 GREENBRAE CRCT,6,60,2021-11-10,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,5.0,4.0,3.0,5.0,3.0,3.0,3.0,4.0,5.0,3.0,5.0,4.0,3.0,3.0,4.0,,E2425,43.7587707758,-79.2323786593,326333.984,4846346.329
-887744,4153176,2017.0,2021.0,1972.0,SOCIAL HOUSING,11,University-Rosedale,14 SPADINA RD,6,103,2021-11-10,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,S1126,43.6678434794,-79.4049570473,312449.082,4836214.442
-887745,4154476,2017.0,2021.0,1968.0,PRIVATE,7,Humber River-Black Creek,1 FOUNTAINHEAD RD,23,370,2021-11-10,73,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,3.0,3.0,W0726,43.76160337939999,-79.5015843988,304657.05100000004,4846626.4
-887746,4154366,2017.0,2021.0,1953.0,PRIVATE,6,York Centre,829 WILSON AVE,3,11,2021-11-10,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,2.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N0632,43.7313244643,-79.4626281636,307795.179,4843263.226
-887747,4154367,2017.0,2021.0,1953.0,PRIVATE,6,York Centre,827 WILSON AVE,3,11,2021-11-10,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N0632,43.7314312704,-79.4622110913,307828.773,4843275.107
-887748,4152939,2017.0,2021.0,1940.0,PRIVATE,4,Parkdale-High Park,1950 BLOOR ST W,4,16,2021-11-10,76,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,4.0,4.0,3.0,,4.0,,4.0,3.0,3.0,5.0,3.0,5.0,4.0,,5.0,,,S0428,43.653332449,-79.46745024399999,307406.915,4834598.1
-887749,4152926,2017.0,2021.0,1992.0,SOCIAL HOUSING,4,Parkdale-High Park,1624 BLOOR ST W,6,94,2021-11-10,85,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,4.0,5.0,3.0,4.0,5.0,,4.0,5.0,5.0,4.0,4.0,4.0,,5.0,4.0,,S0429,43.655863811,-79.45598401699999,308334.55100000004,4834881.192
-887750,4154368,2017.0,2021.0,1953.0,PRIVATE,6,York Centre,825 WILSON AVE,3,11,2021-11-10,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N0632,43.7315326231,-79.46180938479999,307861.13,4843286.382
-887751,4154369,2017.0,2021.0,1953.0,PRIVATE,6,York Centre,823 WILSON AVE,3,11,2021-11-10,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,2.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N0632,43.7316251589,-79.461395515,307894.467,4843296.678
-887752,4153923,2017.0,2021.0,1959.0,PRIVATE,12,Toronto-St. Paul's,85 LAWTON BLVD,10,87,2021-11-10,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1232,43.6931297884,-79.3963342082,313141.061,4839024.529
-887753,4153927,2017.0,2021.0,1960.0,PRIVATE,12,Toronto-St. Paul's,135 LAWTON BLVD,9,48,2021-11-10,85,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,5.0,,4.0,3.0,,4.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,,S1232,43.6949094496,-79.3968815347,313096.679,4839222.203
-887754,4153926,2018.0,2021.0,1962.0,PRIVATE,12,Toronto-St. Paul's,125 LAWTON BLVD,12,122,2021-11-10,87,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,4.0,5.0,4.0,,5.0,4.0,,4.0,4.0,5.0,4.0,3.0,4.0,5.0,5.0,3.0,,S1232,43.6945745052,-79.3968664872,313097.941,4839184.991
-887755,4154560,2017.0,2021.0,1954.0,PRIVATE,8,Eglinton-Lawrence,3 DREXEL RD,3,26,2021-11-10,78,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,3.0,4.0,4.0,,4.0,,5.0,3.0,3.0,5.0,3.0,4.0,4.0,,4.0,4.0,,N0823,43.721948278999996,-79.43334645600001,310154.683,4842224.03
-887756,4154384,2017.0,2021.0,1960.0,PRIVATE,6,York Centre,1537 WILSON AVE,4,42,2021-11-10,68,Evaluation needs to be conducted in 2 years,17,4.0,4.0,3.0,3.0,3.0,3.0,,4.0,,3.0,3.0,4.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,,N0631,43.7205293496,-79.50708963470001,304213.269,4842063.35
-887757,4153456,2017.0,2021.0,1929.0,PRIVATE,13,Toronto Centre,262 JARVIS ST,6,72,2021-11-09,75,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,3.0,,3.0,3.0,,4.0,4.0,5.0,4.0,3.0,3.0,,4.0,,,S1328,43.6596564148,-79.3760533854,314781.42600000004,4835308.004
-887758,4153855,2017.0,2021.0,1955.0,PRIVATE,15,Don Valley West,100 KEEWATIN AVE,4,32,2021-11-09,83,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,3.0,3.0,4.0,,4.0,,,3.0,4.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,,N1526,43.7132857691,-79.396652141,313112.649,4841263.81
-887759,4252919,2017.0,2021.0,1970.0,PRIVATE,3,Etobicoke-Lakeshore,9 THIRTY THIRD ST,3,34,2021-11-09,85,Evaluation needs to be conducted in 2 years,15,4.0,5.0,5.0,4.0,5.0,4.0,,4.0,,,4.0,5.0,5.0,3.0,4.0,5.0,,3.0,4.0,,W0334,43.5916886979,-79.5307437677,302302.00399999996,4827750.258
-887760,4152938,2017.0,2021.0,1940.0,PRIVATE,4,Parkdale-High Park,1942 BLOOR ST W,4,16,2021-11-09,77,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,4.0,4.0,3.0,,4.0,,4.0,3.0,3.0,5.0,3.0,5.0,4.0,,5.0,,,S0428,43.65337980100001,-79.467222983,307428.095,4834604.811000001
-887761,4154903,2017.0,2021.0,1963.0,PRIVATE,16,Don Valley East,70 PARKWOODS VILLAGE DR,6,65,2021-11-09,87,Evaluation needs to be conducted in 3 years,17,5.0,5.0,4.0,4.0,4.0,5.0,,3.0,5.0,,4.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,4.0,,N1625,43.7598996821,-79.3227165337,319059.553,4846452.297
-887762,4154909,2017.0,2021.0,1962.0,PRIVATE,16,Don Valley East,67 PARKWOODS VILLAGE DR,7,78,2021-11-09,79,Evaluation needs to be conducted in 2 years,19,5.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,5.0,4.0,3.0,3.0,5.0,5.0,3.0,,N1625,43.7604077056,-79.32114983470001,319185.587,4846509.004
-887763,4153473,2017.0,2021.0,1988.0,SOCIAL HOUSING,13,Toronto Centre,172 CARLTON ST,4,25,2021-11-09,72,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,,,3.0,3.0,5.0,4.0,3.0,4.0,,4.0,,,S1326,43.663437478999995,-79.373585563,314979.567,4835729.313999999
-887764,4333386,2019.0,2021.0,2018.0,PRIVATE,13,Toronto Centre,561 SHERBOURNE ST,43,369,2021-11-09,96,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,5.0,,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,S1323,,,314838.816,4836396.822
-887765,4154471,2017.0,2021.0,1970.0,PRIVATE,7,Humber River-Black Creek,345 SENTINEL RD,10,79,2021-11-09,77,Evaluation needs to be conducted in 2 years,19,3.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,,W0731,43.7574137617,-79.4982692198,304923.99199999997,4846160.951
-887766,4288743,2017.0,2021.0,1930.0,PRIVATE,13,Toronto Centre,78 PEMBROKE ST,3,15,2021-11-09,76,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,3.0,4.0,3.0,,5.0,,,3.0,4.0,5.0,3.0,4.0,4.0,,4.0,4.0,,S1328,43.658974777299996,-79.3730219749,315026.038,4835232.634
-887767,4153948,2017.0,2021.0,1963.0,PRIVATE,8,Eglinton-Lawrence,625 ROSELAWN AVE,9,91,2021-11-09,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,,N0833,43.705666038000004,-79.422923285,310996.166,4840415.915
-887768,4153534,2017.0,2021.0,1910.0,PRIVATE,13,Toronto Centre,608 CHURCH ST,4,35,2021-11-09,79,Evaluation needs to be conducted in 2 years,14,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,,,4.0,4.0,5.0,3.0,4.0,4.0,,3.0,,,S1322,43.668016038599994,-79.3820793431,314294.076,4836236.013
-887769,4153970,2017.0,2021.0,1974.0,PRIVATE,8,Eglinton-Lawrence,660 BRIAR HILL AVE,8,76,2021-11-09,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,N0832,43.708094977600005,-79.4275758961,310621.226,4840684.455
-887770,4168942,2017.0,2021.0,1984.0,SOCIAL HOUSING,10,Spadina-Fort York,345 DUFFERIN ST,8,200,2021-11-09,75,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,,4.0,4.0,3.0,4.0,4.0,4.0,,3.0,4.0,,S1026,43.6410875936,-79.42770400090001,310617.30600000004,4833240.166999999
-887771,4153913,2017.0,2021.0,1982.0,PRIVATE,12,Toronto-St. Paul's,5 MALLORY GDNS,11,60,2021-11-09,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,4.0,3.0,,5.0,5.0,3.0,3.0,3.0,5.0,4.0,4.0,4.0,3.0,5.0,4.0,,S1232,43.69068475,-79.395885257,313177.321,4838753.869
-887772,4156734,2017.0,2021.0,1974.0,TCHC,8,Eglinton-Lawrence,145 NEPTUNE DR,4,48,2021-11-09,73,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,4.0,3.0,3.0,4.0,,,4.0,4.0,5.0,3.0,3.0,3.0,,4.0,3.0,3.0,N0823,43.729562759,-79.440565679,309572.41,4843069.517
-887773,4155371,2017.0,2021.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,5294 DUNDAS ST W,7,45,2021-11-09,84,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,4.0,5.0,5.0,,3.0,5.0,,4.0,4.0,5.0,4.0,4.0,5.0,3.0,4.0,,,W0323,43.637025183,-79.54003296,301553.935,4832788.22
-887774,4250271,2017.0,2021.0,1991.0,SOCIAL HOUSING,13,Toronto Centre,431 DUNDAS ST E,4,37,2021-11-09,93,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,,5.0,5.0,5.0,4.0,5.0,5.0,,4.0,5.0,5.0,S1329,43.6590786732,-79.3664727907,315554.24600000004,4835245.0139999995
-887775,4365726,2018.0,2021.0,1976.0,PRIVATE,4,Parkdale-High Park,2360 DUNDAS ST W,29,638,2021-11-09,80,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,4.0,S0429,43.657073675,-79.452365262,308621.66,4835039.566000001
-887776,4153846,2017.0,2021.0,1958.0,PRIVATE,15,Don Valley West,135 KEEWATIN AVE,4,52,2021-11-09,78,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,3.0,4.0,,4.0,4.0,,3.0,3.0,5.0,4.0,5.0,4.0,4.0,4.0,3.0,,N1526,43.7129372818,-79.39546673560001,313208.222,4841225.215
-887777,4153921,2017.0,2021.0,1955.0,PRIVATE,12,Toronto-St. Paul's,134 LAWTON BLVD,4,42,2021-11-09,75,Evaluation needs to be conducted in 2 years,17,4.0,3.0,5.0,3.0,3.0,3.0,,4.0,,3.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1232,43.694344245500005,-79.3975635175,313041.791,4839159.337
-887778,4153916,2017.0,2021.0,1927.0,PRIVATE,12,Toronto-St. Paul's,48 LAWTON BLVD,3,19,2021-11-09,73,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,3.0,2.0,4.0,,4.0,,3.0,3.0,3.0,5.0,3.0,4.0,4.0,,5.0,,,S1232,43.691667031,-79.396207889,313151.182,4838862.973999999
-887779,4153915,2017.0,2021.0,1915.0,PRIVATE,12,Toronto-St. Paul's,50 LAWTON BLVD,3,20,2021-11-09,80,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,,4.0,,4.0,,4.0,4.0,3.0,5.0,3.0,4.0,4.0,,5.0,3.0,,S1232,43.691863282,-79.396100397,313143.397,4838889.911
-887780,4153920,2017.0,2021.0,1930.0,PRIVATE,12,Toronto-St. Paul's,80 LAWTON BLVD,3,24,2021-11-09,84,Evaluation needs to be conducted in 2 years,14,4.0,4.0,5.0,4.0,3.0,4.0,,5.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,5.0,,,S1232,43.692690453400004,-79.3968224321,313101.766,4838975.6680000005
-887781,4153807,2017.0,2021.0,1983.0,TCHC,15,Don Valley West,801 MOUNT PLEASANT RD,10,185,2021-11-09,83,Evaluation needs to be conducted in 2 years,19,4.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,3.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,N1537,43.7088453,-79.3898544426,313661.101,4840771.193
-887782,4156288,2017.0,2021.0,1970.0,PRIVATE,3,Etobicoke-Lakeshore,11 THIRTY THIRD ST,3,23,2021-11-09,83,Evaluation needs to be conducted in 2 years,15,4.0,5.0,5.0,4.0,5.0,4.0,,4.0,,,3.0,4.0,5.0,3.0,4.0,5.0,,3.0,4.0,,W0334,43.5918858428,-79.5306544291,302309.225,4827772.157
-887783,4155916,2017.0,2021.0,1970.0,PRIVATE,3,Etobicoke-Lakeshore,15 THIRTY THIRD ST,3,36,2021-11-09,81,Evaluation needs to be conducted in 2 years,15,4.0,5.0,5.0,3.0,4.0,4.0,,4.0,,,3.0,5.0,5.0,3.0,4.0,5.0,,3.0,4.0,,W0334,43.592052746099995,-79.530753761,302301.211,4827790.702
-887784,4155363,2018.0,2021.0,1968.0,PRIVATE,2,Etobicoke Centre,25 WIDDICOMBE HILL,11,122,2021-11-09,72,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,4.0,4.0,3.0,4.0,4.0,5.0,2.0,4.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,2.0,,W0222,43.679208785,-79.548319808,300888.16,4837475.011
-887785,4252925,2017.0,2021.0,1970.0,PRIVATE,3,Etobicoke-Lakeshore,90 TWENTY FIFTH ST,3,41,2021-11-09,83,Evaluation needs to be conducted in 2 years,15,4.0,5.0,5.0,3.0,5.0,5.0,,4.0,,,4.0,4.0,5.0,3.0,3.0,5.0,,3.0,4.0,,W0334,43.595677145,-79.523533337,302867.794,4828242.129
-887786,4155362,2018.0,2021.0,1968.0,PRIVATE,2,Etobicoke Centre,35 WIDDICOMBE HILL,11,121,2021-11-09,72,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,4.0,4.0,3.0,3.0,3.0,5.0,4.0,4.0,5.0,4.0,3.0,4.0,2.0,3.0,3.0,2.0,,W0222,43.678668475,-79.550611679,300703.359,4837415.062
-887787,4153475,2017.0,2021.0,1960.0,PRIVATE,13,Toronto Centre,437 JARVIS ST,7,76,2021-11-09,78,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,4.0,3.0,,3.0,4.0,,3.0,4.0,5.0,4.0,4.0,3.0,5.0,4.0,4.0,,S1326,43.6640870859,-79.3767455486,314724.86699999997,4835800.143999999
-887788,4365723,2018.0,2021.0,1976.0,PRIVATE,4,Parkdale-High Park,2350 DUNDAS ST W,29,457,2021-11-09,81,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,4.0,S0429,43.656991643999994,-79.45228586,308623.625,4835029.533
-887789,4153727,2017.0,2021.0,1994.0,SOCIAL HOUSING,19,Beaches-East York,62 DAWES RD,4,14,2021-11-08,79,Evaluation needs to be conducted in 2 years,16,5.0,3.0,5.0,4.0,5.0,3.0,,3.0,,2.0,3.0,3.0,5.0,5.0,3.0,4.0,,5.0,5.0,,S1930,43.6901517338,-79.29715496109999,321136.691,4838708.346
-887790,4155430,2017.0,2021.0,1960.0,PRIVATE,1,Etobicoke North,2386 ISLINGTON AVE,3,18,2021-11-08,76,Evaluation needs to be conducted in 2 years,16,4.0,3.0,5.0,3.0,3.0,5.0,,4.0,,,3.0,4.0,5.0,3.0,4.0,3.0,5.0,3.0,4.0,,W0130,43.72086112,-79.55824156,300091.5,4842102.895
-887791,4153803,2017.0,2021.0,1964.0,PRIVATE,12,Toronto-St. Paul's,245 ROEHAMPTON AVE,15,83,2021-11-08,88,Evaluation needs to be conducted in 3 years,19,4.0,5.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,3.0,5.0,5.0,4.0,4.0,4.0,,S1221,43.709160333999996,-79.391292239,313544.918,4840806.994
-887792,4155602,2017.0,2021.0,1972.0,TCHC,13,Toronto Centre,220 OAK ST,27,469,2021-11-08,65,Evaluation needs to be conducted in 1 year,19,3.0,4.0,5.0,2.0,4.0,3.0,3.0,3.0,3.0,,3.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,S1330,43.663061381000006,-79.357756445,316331.701,4835670.531
-887793,4155604,2017.0,2021.0,1961.0,TCHC,13,Toronto Centre,320 SEATON ST,6,25,2021-11-08,72,Evaluation needs to be conducted in 2 years,18,3.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,4.0,,3.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,S1323,43.662525313,-79.371459917,315151.16,4835628.239
-887794,4153794,2017.0,2021.0,1965.0,PRIVATE,15,Don Valley West,525 EGLINTON AVE E,10,54,2021-11-08,78,Evaluation needs to be conducted in 2 years,18,4.0,5.0,5.0,3.0,4.0,5.0,3.0,4.0,4.0,,4.0,5.0,5.0,2.0,4.0,5.0,2.0,3.0,3.0,,N1530,43.710212560900004,-79.3798510461,314467.034,4840924.187
-887795,4153869,2017.0,2021.0,1950.0,PRIVATE,15,Don Valley West,153 RANLEIGH AVE,4,28,2021-11-08,84,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,5.0,,3.0,,,3.0,3.0,5.0,4.0,5.0,5.0,,5.0,5.0,,N1525,43.72825161390001,-79.39810823239999,312993.279,4842926.261
-887796,4153045,2018.0,2021.0,1940.0,PRIVATE,4,Parkdale-High Park,118 RONCESVALLES AVE,3,30,2021-11-08,77,Evaluation needs to be conducted in 2 years,14,3.0,4.0,5.0,3.0,4.0,3.0,,3.0,,,3.0,4.0,5.0,4.0,5.0,4.0,,4.0,,,S0434,43.6425606472,-79.4482030083,308963.328,4833402.643999999
-887797,4153457,2017.0,2021.0,1995.0,SOCIAL HOUSING,13,Toronto Centre,80 DUNDAS ST E,15,138,2021-11-08,87,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,5.0,,4.0,5.0,3.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,S1328,43.656516289799995,-79.3781464612,314613.128,4834958.909
-887798,4153799,2017.0,2021.0,1989.0,PRIVATE,12,Toronto-St. Paul's,77 ROEHAMPTON AVE,11,81,2021-11-08,91,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,3.0,,S1221,43.708135683,-79.396161299,313152.656,4840692.662
-887799,4153785,2017.0,2021.0,1964.0,PRIVATE,12,Toronto-St. Paul's,55 BROWNLOW AVE,15,121,2021-11-08,81,Evaluation needs to be conducted in 2 years,18,4.0,5.0,5.0,4.0,4.0,3.0,,3.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1228,43.7066788107,-79.3906195508,313599.755,4840530.4180000005
-887800,4155439,2017.0,2021.0,1972.0,PRIVATE,1,Etobicoke North,2362 ISLINGTON AVE,3,13,2021-11-08,56,Evaluation needs to be conducted in 1 year,17,4.0,3.0,2.0,3.0,3.0,1.0,,2.0,,3.0,3.0,1.0,5.0,4.0,3.0,3.0,3.0,3.0,2.0,,W0130,43.719305544899996,-79.5575311181,300148.88800000004,4841929.072
-887801,4155440,2017.0,2021.0,1958.0,PRIVATE,1,Etobicoke North,2356 ISLINGTON AVE,3,18,2021-11-08,88,Evaluation needs to be conducted in 3 years,16,4.0,3.0,5.0,4.0,5.0,5.0,,3.0,,,4.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,5.0,,W0130,43.7189395092,-79.55744108420001,300156.114,4841888.402
-887802,4155918,2017.0,2021.0,1970.0,PRIVATE,1,Etobicoke North,2101 ISLINGTON AVE,22,271,2021-11-08,74,Evaluation needs to be conducted in 2 years,20,5.0,4.0,5.0,2.0,4.0,4.0,3.0,5.0,3.0,2.0,4.0,3.0,4.0,4.0,4.0,4.0,5.0,4.0,2.0,3.0,W0135,43.7035776497,-79.5492233546,300817.193,4840181.403
-887803,4155358,2017.0,2021.0,1970.0,PRIVATE,1,Etobicoke North,2085 ISLINGTON AVE,20,266,2021-11-08,75,Evaluation needs to be conducted in 2 years,20,5.0,4.0,5.0,2.0,3.0,4.0,2.0,5.0,4.0,2.0,4.0,4.0,5.0,4.0,4.0,5.0,3.0,5.0,2.0,3.0,W0135,43.7035776497,-79.5492233546,300817.193,4840181.403
-887804,4154055,2017.0,2021.0,1971.0,PRIVATE,19,Beaches-East York,6 PARK VISTA,10,108,2021-11-08,88,Evaluation needs to be conducted in 3 years,19,5.0,3.0,5.0,5.0,5.0,5.0,,5.0,5.0,5.0,3.0,4.0,5.0,3.0,5.0,4.0,5.0,3.0,4.0,5.0,S1927,43.698310468900004,-79.2983347125,321039.405,4839614.522
-887805,4154666,2017.0,2021.0,1955.0,PRIVATE,8,Eglinton-Lawrence,215 WILSON AVE,3,26,2021-11-08,75,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,2.0,4.0,,3.0,,,4.0,3.0,5.0,4.0,5.0,4.0,2.0,3.0,4.0,,N0824,43.738584484300006,-79.4263900069,310713.799,4844071.732
-887806,4153766,,2021.0,1956.0,PRIVATE,12,Toronto-St. Paul's,25 DAVISVILLE AVE,4,14,2021-11-08,81,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S1233,43.6982817517,-79.3955853975,313200.678,4839596.99
-887807,4154461,2017.0,2021.0,1967.0,PRIVATE,6,York Centre,3444 KEELE ST,9,61,2021-11-07,77,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,2.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N0625,43.75021348640001,-79.48822665600001,305732.756,4845361.107
-887808,4167463,2017.0,2021.0,2006.0,TCHC,13,Toronto Centre,184 RIVER ST,3,54,2021-11-07,66,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,,,3.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,4.0,,S1330,43.662770771999995,-79.35927116,316143.84,4835667.148
-887809,4264285,2017.0,2021.0,1900.0,PRIVATE,13,Toronto Centre,561 JARVIS ST,3,28,2021-11-07,66,Evaluation needs to be conducted in 2 years,14,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,3.0,4.0,3.0,4.0,,3.0,,,S1322,43.6683620869,-79.3786856506,314567.707,4836274.842
-887810,4153444,2017.0,2021.0,1986.0,TCHC,13,Toronto Centre,291 GEORGE ST,5,132,2021-11-07,65,Evaluation needs to be conducted in 1 year,17,3.0,3.0,5.0,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,4.0,3.0,4.0,3.0,3.0,,4.0,3.0,,S1328,43.65837995,-79.373485597,314988.482,4835167.438999999
-887811,4156366,2017.0,2021.0,1982.0,SOCIAL HOUSING,12,Toronto-St. Paul's,200 ELLSWORTH AVE,3,18,2021-11-07,75,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,3.0,,4.0,,3.0,,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1234,43.6807933041,-79.4261720553,310736.942,4837651.406
-887812,4218633,2017.0,2021.0,1967.0,PRIVATE,12,Toronto-St. Paul's,77 ST CLAIR AVE E,20,185,2021-11-07,84,Evaluation needs to be conducted in 2 years,19,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,S1238,43.68845738899999,-79.390866323,313582.244,4838506.945
-887813,4156038,2017.0,2021.0,1969.0,TCHC,13,Toronto Centre,375 BLEECKER ST,24,327,2021-11-07,68,Evaluation needs to be conducted in 2 years,18,3.0,3.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,4.0,5.0,3.0,2.0,4.0,3.0,3.0,3.0,,S1323,43.670607632,-79.374814757,314879.229,4836525.723999999
-887814,4235524,2017.0,2021.0,1996.0,PRIVATE,12,Toronto-St. Paul's,1920 YONGE ST,7,102,2021-11-07,89,Evaluation needs to be conducted in 3 years,16,5.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,,4.0,4.0,5.0,5.0,4.0,5.0,,4.0,,,S1227,43.698779468000005,-79.3972801771,313085.05100000004,4839644.265
-887815,4245676,2017.0,2021.0,1967.0,PRIVATE,12,Toronto-St. Paul's,321 CHAPLIN CRES,8,74,2021-11-07,93,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,,S1226,43.702357515200006,-79.4173230681,311448.141,4840047.833000001
-887816,4270721,2018.0,2021.0,1965.0,PRIVATE,4,Parkdale-High Park,105 WEST LODGE AVE,19,371,2021-11-06,76,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,3.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,,S0435,43.64516038,-79.43669445399999,309891.349,4833693.03
-887817,4270720,2018.0,2021.0,1965.0,PRIVATE,4,Parkdale-High Park,103 WEST LODGE AVE,18,371,2021-11-06,71,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,4.0,4.0,4.0,2.0,3.0,4.0,,3.0,3.0,2.0,3.0,4.0,4.0,4.0,4.0,4.0,,S0435,43.644918456000006,-79.435885913,309956.6,4833666.2
-887818,4154863,2017.0,2021.0,1956.0,PRIVATE,16,Don Valley East,1594 VICTORIA PARK AVE,4,28,2021-11-05,73,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,3.0,3.0,,5.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,5.0,5.0,4.0,4.0,,N1628,43.7295535678,-79.30517927359999,320479.575,4843084.2069999995
-887819,4154328,2017.0,2021.0,1960.0,PRIVATE,5,York South-Weston,1728 LAWRENCE AVE W,4,34,2021-11-05,88,Evaluation needs to be conducted in 3 years,17,4.0,5.0,5.0,4.0,4.0,5.0,,4.0,,4.0,4.0,5.0,5.0,4.0,4.0,5.0,4.0,5.0,4.0,,W0528,43.7048608141,-79.4976836362,304971.172,4840322.663
-887820,4155120,2017.0,2021.0,1958.0,PRIVATE,5,York South-Weston,1197 WESTON RD,3,15,2021-11-05,93,Evaluation needs to be conducted in 3 years,16,5.0,4.0,5.0,5.0,5.0,3.0,,5.0,,3.0,5.0,4.0,5.0,5.0,5.0,5.0,,5.0,5.0,,W0531,43.687965464799994,-79.4913964686,305478.007,4838445.673
-887821,4154876,2017.0,2021.0,1960.0,PRIVATE,16,Don Valley East,26 SLOANE AVE,4,60,2021-11-05,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,3.0,4.0,5.0,5.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N1628,43.7266750646,-79.3142450154,319749.941,4842762.762
-887822,4155557,2017.0,2021.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,75 FORTY SECOND ST,4,28,2021-11-05,62,Evaluation needs to be conducted in 1 year,18,3.0,3.0,5.0,2.0,3.0,4.0,,3.0,2.0,2.0,3.0,3.0,5.0,3.0,3.0,2.0,3.0,3.0,4.0,,W0334,43.589021478999996,-79.544011345,301230.283,4827455.371
-887823,4154900,2017.0,2021.0,1966.0,PRIVATE,16,Don Valley East,105 ROWENA DR,12,243,2021-11-05,75,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,4.0,5.0,4.0,3.0,3.0,5.0,5.0,4.0,,N1625,43.750896864,-79.31418886,319750.673,4845444.329
-887824,4155742,2017.0,2021.0,2008.0,PRIVATE,5,York South-Weston,333 SIDNEY BELSEY CRES,12,264,2021-11-05,88,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,5.0,3.0,4.0,4.0,5.0,5.0,4.0,4.0,,5.0,4.0,4.0,W0531,43.691326105,-79.50858748,304091.899,4838820.039
-887825,4154275,2017.0,2021.0,1960.0,PRIVATE,7,Humber River-Black Creek,25 DUNCANWOODS DR,11,148,2021-11-05,83,Evaluation needs to be conducted in 2 years,18,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,4.0,,W0722,43.7496851095,-79.55739159,300162.561,4845304.0030000005
-887826,4155168,2017.0,2021.0,1967.0,PRIVATE,5,York South-Weston,2240 WESTON RD,19,150,2021-11-04,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,3.0,4.0,3.0,5.0,4.0,3.0,3.0,5.0,5.0,4.0,3.0,3.0,5.0,5.0,3.0,,W0524,43.7040183112,-79.5281921878,302512.295,4840229.548
-887827,4155173,2017.0,2021.0,1962.0,PRIVATE,5,York South-Weston,2180 WESTON RD,8,62,2021-11-04,94,Evaluation needs to be conducted in 3 years,17,5.0,4.0,5.0,5.0,5.0,5.0,,4.0,5.0,,5.0,4.0,5.0,4.0,5.0,5.0,5.0,5.0,4.0,,W0524,43.702981103,-79.526148917,302676.666,4840115.227
-887828,4154224,2017.0,2021.0,1960.0,PRIVATE,7,Humber River-Black Creek,2600 JANE ST,13,115,2021-11-04,82,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,,5.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,,W0729,43.7405750446,-79.5143347224,303629.973,4844290.36
-887829,4152964,2017.0,2021.0,1972.0,PRIVATE,4,Parkdale-High Park,1251 KING ST W,14,189,2021-11-04,86,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,3.0,5.0,4.0,,3.0,5.0,,4.0,4.0,5.0,5.0,4.0,5.0,3.0,5.0,3.0,,S0437,43.638192517700006,-79.4297211776,310454.821,4832918.412
-887830,4244521,2017.0,2021.0,1969.0,PRIVATE,19,Beaches-East York,255 MAIN ST,9,128,2021-11-04,84,Evaluation needs to be conducted in 2 years,19,5.0,3.0,5.0,4.0,3.0,5.0,4.0,5.0,5.0,5.0,3.0,3.0,5.0,4.0,5.0,4.0,5.0,4.0,3.0,,S1933,43.687299065,-79.300651307,320855.31899999996,4838391.723
-887831,4244523,2017.0,2021.0,1970.0,PRIVATE,19,Beaches-East York,265 MAIN ST,24,293,2021-11-04,74,Evaluation needs to be conducted in 2 years,19,5.0,3.0,5.0,3.0,3.0,5.0,3.0,5.0,5.0,5.0,3.0,3.0,2.0,3.0,3.0,3.0,5.0,3.0,3.0,,S1933,43.687784182,-79.299964232,320910.583,4838445.746
-887832,4154383,2017.0,2021.0,1970.0,PRIVATE,6,York Centre,1265 WILSON AVE,4,61,2021-11-04,74,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,4.0,4.0,3.0,4.0,3.0,5.0,,4.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,4.0,,N0631,43.723806203,-79.492097765,305420.909,4842428.319
-887833,4250549,2017.0,2021.0,1958.0,PRIVATE,16,Don Valley East,980 LAWRENCE AVE E,6,64,2021-11-04,85,Evaluation needs to be conducted in 2 years,19,5.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,5.0,4.0,3.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,,N1623,43.73749502,-79.343845112,317308.56,4843953.37
-887834,4155194,2017.0,2021.0,1986.0,SOCIAL HOUSING,5,York South-Weston,3561 EGLINTON AVE W,16,140,2021-11-04,83,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,4.0,,3.0,4.0,5.0,4.0,3.0,4.0,4.0,5.0,4.0,4.0,W0535,43.6858944242,-79.49260031989999,305380.966,4838215.5819999995
-887835,4153064,2017.0,2021.0,1979.0,PRIVATE,4,Parkdale-High Park,12 LANSDOWNE AVE,3,26,2021-11-04,60,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,2.0,,3.0,,4.0,,,2.0,3.0,5.0,2.0,3.0,3.0,3.0,3.0,,,S0435,43.6411898546,-79.4371749359,309853.179,4833250.942
-887836,4155757,2017.0,2021.0,1961.0,PRIVATE,3,Etobicoke-Lakeshore,2493 LAKE SHORE BLVD W,9,151,2021-11-04,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,4.0,4.0,,5.0,4.0,2.0,4.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,,W0336,43.6123803849,-79.4879248651,305759.003,4830048.647
-887837,4156365,2017.0,2021.0,1967.0,PRIVATE,8,Eglinton-Lawrence,141 LYON CRT,18,142,2021-11-04,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,,N0831,43.703293224700005,-79.4396796908,309620.459,4840134.478
-887838,4155754,2017.0,2021.0,1959.0,PRIVATE,3,Etobicoke-Lakeshore,2301 LAKE SHORE BLVD W,4,88,2021-11-04,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,5.0,3.0,,3.0,4.0,2.0,3.0,5.0,5.0,3.0,4.0,4.0,5.0,3.0,3.0,,W0336,43.618345356999995,-79.48579165619999,305931.095,4830711.346
-887839,4154780,2017.0,2021.0,1960.0,PRIVATE,16,Don Valley East,1063 DON MILLS RD,4,43,2021-11-04,72,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,4.0,,3.0,3.0,3.0,3.0,4.0,4.0,3.0,4.0,3.0,,N1627,43.7355150514,-79.3423451997,317484.175,4843740.129
-887840,4269869,2017.0,2021.0,1959.0,PRIVATE,16,Don Valley East,110 COTTONWOOD DR,3,22,2021-11-04,74,Evaluation needs to be conducted in 2 years,17,4.0,4.0,3.0,4.0,4.0,4.0,,2.0,,4.0,4.0,4.0,5.0,3.0,4.0,3.0,4.0,3.0,4.0,,N1626,43.729582726000004,-79.342147167,317500.023,4843085.579
-887841,4153348,2017.0,2021.0,1920.0,PRIVATE,12,Toronto-St. Paul's,599 ST CLAIR AVE W,3,16,2021-11-04,89,Evaluation needs to be conducted in 3 years,14,5.0,5.0,5.0,5.0,,4.0,,5.0,,,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,,,S1235,43.6820983903,-79.4223318593,311046.44899999996,4837796.671
-887842,4154399,2017.0,2021.0,1960.0,PRIVATE,6,York Centre,1303 WILSON AVE,8,85,2021-11-04,68,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0631,43.7232242004,-79.4942044092,305251.45,4842362.698
-887843,4154398,2017.0,2021.0,1960.0,PRIVATE,6,York Centre,1305 WILSON AVE,8,86,2021-11-04,60,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,3.0,2.0,2.0,4.0,2.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0631,43.7234367633,-79.4949764367,305189.248,4842386.31
-887844,4154396,2017.0,2021.0,1960.0,PRIVATE,6,York Centre,1309 WILSON AVE,7,84,2021-11-04,67,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,3.0,3.0,4.0,3.0,2.0,4.0,3.0,4.0,3.0,5.0,3.0,3.0,3.0,5.0,3.0,3.0,,N0631,43.723087588,-79.4957736371,305125.023,4842347.517
-887845,4153764,2017.0,2021.0,1968.0,PRIVATE,12,Toronto-St. Paul's,165 BALLIOL ST,4,48,2021-11-04,80,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,3.0,,3.0,4.0,,4.0,5.0,5.0,4.0,5.0,4.0,3.0,3.0,5.0,,S1233,43.6980801264,-79.3913521061,313541.95,4839575.028
-887846,4153759,2017.0,2021.0,1968.0,PRIVATE,12,Toronto-St. Paul's,265 BALLIOL ST,26,209,2021-11-04,85,Evaluation needs to be conducted in 2 years,20,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,S1233,43.698777377,-79.387810749,313810.77,4839659.966
-887847,4153763,2017.0,2021.0,1965.0,PRIVATE,12,Toronto-St. Paul's,155 BALLIOL ST,18,286,2021-11-04,91,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,4.0,4.0,5.0,3.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,S1233,43.697965104,-79.3921328391,313479.032,4839562.166999999
-887848,4166900,2017.0,2021.0,1987.0,PRIVATE,10,Spadina-Fort York,390 QUEENS QUAY W,21,289,2021-11-04,81,Evaluation needs to be conducted in 2 years,17,5.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,S1036,43.638163608999996,-79.390534476,313604.244,4832915.083000001
-887849,4155830,2017.0,2021.0,1964.0,PRIVATE,15,Don Valley West,26 CARLUKE CRES,14,157,2021-11-04,72,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,1.0,4.0,3.0,3.0,4.0,5.0,,3.0,4.0,5.0,3.0,4.0,4.0,5.0,3.0,3.0,,N1521,43.761243138000005,-79.3906391551,313656.45,4846571.551
-887850,4155296,2017.0,2021.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,2649 BLOOR ST W,4,48,2021-11-04,82,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,5.0,,3.0,5.0,4.0,5.0,4.0,5.0,3.0,5.0,3.0,5.0,3.0,,,W0327,43.648996751999995,-79.494971996,305189.691,4834117.426
-887851,4155635,2017.0,2021.0,1957.0,TCHC,8,Eglinton-Lawrence,1 REPLIN RD,3,31,2021-11-04,84,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,4.0,4.0,4.0,,5.0,,4.0,4.0,4.0,5.0,4.0,4.0,5.0,,4.0,4.0,,N0823,43.719043907,-79.4433371886,309350.165,4841899.794
-887852,4154773,2017.0,2021.0,1961.0,PRIVATE,16,Don Valley East,32 THE HEIGHTS DR,4,55,2021-11-04,81,Evaluation needs to be conducted in 2 years,19,5.0,4.0,4.0,4.0,4.0,3.0,5.0,3.0,4.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,,N1627,43.729295625,-79.34013905100001,317684.369,4842978.0819999995
-887853,4244526,2017.0,2021.0,1971.0,PRIVATE,19,Beaches-East York,275 MAIN ST,29,324,2021-11-03,86,Evaluation needs to be conducted in 3 years,19,4.0,3.0,5.0,5.0,3.0,5.0,5.0,5.0,5.0,5.0,3.0,3.0,3.0,5.0,5.0,5.0,5.0,5.0,3.0,,S1933,43.687596199,-79.301189477,320811.852,4838424.633
-887854,4155045,2020.0,2021.0,1959.0,PRIVATE,8,Eglinton-Lawrence,330 HOPEWELL AVE,7,67,2021-11-03,84,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,,5.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,N0831,43.7010141421,-79.44216061,309446.356,4839896.852
-887855,4154309,2017.0,2021.0,1958.0,PRIVATE,5,York South-Weston,1252 LAWRENCE AVE W,3,10,2021-11-03,80,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,3.0,,W0523,43.7108573649,-79.4707253661,307143.63300000003,4840989.2
-887856,4153836,2017.0,2021.0,1962.0,PRIVATE,15,Don Valley West,141 ERSKINE AVE,13,160,2021-11-03,89,Evaluation needs to be conducted in 3 years,18,4.0,5.0,5.0,5.0,4.0,5.0,,4.0,4.0,4.0,4.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,,N1526,43.71194070399999,-79.393282145,313384.148,4841115.679
-887857,4153831,2017.0,2021.0,1956.0,PRIVATE,15,Don Valley West,77 ERSKINE AVE,4,37,2021-11-03,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,3.0,4.0,,4.0,5.0,4.0,3.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,3.0,,N1526,43.711378231000005,-79.396038937,313162.064,4841052.907
-887858,4153832,2017.0,2021.0,1947.0,PRIVATE,15,Don Valley West,109 ERSKINE AVE,4,34,2021-11-03,72,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,3.0,4.0,,3.0,4.0,4.0,3.0,4.0,5.0,2.0,4.0,2.0,3.0,3.0,5.0,,N1526,43.711639,-79.394802088,313261.703,4841082.0030000005
-887859,4153835,2017.0,2021.0,1970.0,PRIVATE,15,Don Valley West,133 ERSKINE AVE,11,28,2021-11-03,93,Evaluation needs to be conducted in 3 years,17,4.0,5.0,5.0,4.0,4.0,5.0,,5.0,5.0,,4.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,4.0,,N1526,43.711887063999995,-79.394093393,313318.78,4841109.635
-887860,4155052,2017.0,2021.0,1967.0,PRIVATE,8,Eglinton-Lawrence,145 MARLEE AVE,18,315,2021-11-03,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,4.0,5.0,3.0,4.0,3.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0831,43.7032633519,-79.4410303906,309536.07399999996,4840154.407
-887861,4155479,2017.0,2021.0,1961.0,PRIVATE,3,Etobicoke-Lakeshore,2311 LAKE SHORE BLVD W,4,36,2021-11-03,77,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,3.0,5.0,,4.0,,,4.0,3.0,5.0,3.0,4.0,3.0,4.0,3.0,,,W0336,43.617555556999996,-79.48652198479999,305836.076,4830625.046
-887862,4153338,2017.0,2021.0,1987.0,SOCIAL HOUSING,12,Toronto-St. Paul's,11 WINONA DR,7,150,2021-11-03,88,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,4.0,5.0,4.0,3.0,5.0,,4.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,S1234,43.67547653729999,-79.4301431233,310417.24,4837060.459
-887863,4154952,2017.0,2021.0,1932.0,PRIVATE,12,Toronto-St. Paul's,1520 BATHURST ST,4,24,2021-11-03,81,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,4.0,4.0,4.0,,5.0,,,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,,,S1229,43.6849625997,-79.4194565721,311277.98,4838115.101
-887864,4154951,2017.0,2021.0,1932.0,PRIVATE,12,Toronto-St. Paul's,1524 BATHURST ST,4,24,2021-11-03,81,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,4.0,4.0,4.0,,5.0,,,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,,,S1229,43.6851006268,-79.41951073279999,311273.599,4838130.432
-887865,4154934,2017.0,2021.0,1943.0,PRIVATE,12,Toronto-St. Paul's,1531 BATHURST ST,4,32,2021-11-03,80,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,4.0,4.0,5.0,5.0,3.0,4.0,3.0,,3.0,,,S1230,43.685648012600005,-79.4188899965,311323.587,4838191.296
-887866,4154991,2017.0,2021.0,1939.0,PRIVATE,12,Toronto-St. Paul's,1600 BATHURST ST,4,34,2021-11-03,68,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,3.0,3.0,2.0,,4.0,,,4.0,3.0,5.0,3.0,4.0,3.0,,3.0,2.0,,S1229,43.6883914125,-79.4208539018,311164.975,4838495.947
-887867,4154273,2017.0,2021.0,1965.0,PRIVATE,7,Humber River-Black Creek,100 YORK GATE BLVD,11,133,2021-11-03,65,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,,3.0,3.0,5.0,2.0,3.0,3.0,2.0,4.0,4.0,4.0,W0724,43.7621440095,-79.51993719560001,303179.30100000004,4846686.674
-887868,4154927,2017.0,2021.0,1963.0,PRIVATE,16,Don Valley East,1210 YORK MILLS RD,10,91,2021-11-03,73,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,5.0,3.0,3.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,,N1622,43.759908428,-79.3335295503,318188.88300000003,4846451.482
-887869,4153356,2017.0,2021.0,1965.0,PRIVATE,12,Toronto-St. Paul's,425 AVENUE RD,8,47,2021-11-03,83,Evaluation needs to be conducted in 2 years,18,5.0,5.0,5.0,4.0,4.0,4.0,,3.0,5.0,5.0,4.0,4.0,5.0,3.0,5.0,3.0,4.0,4.0,3.0,,S1238,43.683390655,-79.3997224813,312869.224,4837942.185
-887870,4153937,2019.0,2021.0,1952.0,PRIVATE,12,Toronto-St. Paul's,755 AVENUE RD,4,41,2021-11-03,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,4.0,4.0,5.0,4.0,5.0,3.0,4.0,3.0,4.0,4.0,4.0,,S1226,43.696987183900006,-79.4048152575,312456.901,4839452.268999999
-887871,4155673,2017.0,2021.0,2013.0,PRIVATE,16,Don Valley East,5 DEAUVILLE LANE,7,62,2021-11-03,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,N1630,43.7178206599,-79.3305417453,318400.363,4841821.642
-887872,4155789,2017.0,2021.0,1958.0,PRIVATE,16,Don Valley East,1122 DON MILLS RD,6,66,2021-11-03,83,Evaluation needs to be conducted in 2 years,19,5.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,,N1623,43.73795553,-79.344349052,317321.994,4844011.915
-887873,4153170,2017.0,2021.0,1920.0,PRIVATE,11,University-Rosedale,711 BLOOR ST W,3,12,2021-11-03,60,Evaluation needs to be conducted in 1 year,15,3.0,2.0,2.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,,,S1133,43.663485375600004,-79.4178022467,311413.725,4835729.2360000005
-887874,4153340,2017.0,2021.0,1920.0,PRIVATE,12,Toronto-St. Paul's,345 ST CLAIR AVE W,4,15,2021-11-03,73,Evaluation needs to be conducted in 2 years,14,3.0,5.0,5.0,4.0,3.0,3.0,,3.0,,,3.0,4.0,5.0,3.0,3.0,4.0,,3.0,,,S1236,43.6842405143,-79.4116176413,311910.078,4838035.533
-887875,4265057,2017.0,2021.0,1970.0,PRIVATE,19,Beaches-East York,2575 DANFORTH AVE,23,335,2021-11-03,80,Evaluation needs to be conducted in 2 years,19,5.0,3.0,3.0,3.0,3.0,5.0,3.0,5.0,5.0,5.0,3.0,4.0,3.0,5.0,4.0,5.0,5.0,4.0,3.0,,S1933,43.688201388500005,-79.3003203967,320882.019,4838491.074
-887876,4153374,2017.0,2021.0,1965.0,PRIVATE,12,Toronto-St. Paul's,160 BALMORAL AVE,12,89,2021-11-03,89,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,3.0,5.0,5.0,5.0,5.0,5.0,4.0,4.0,5.0,,S1237,43.684495213999995,-79.4010047716,312765.703,4838064.784
-887877,4153746,2017.0,2021.0,1969.0,PRIVATE,12,Toronto-St. Paul's,40 PLEASANT BLVD,32,163,2021-11-03,87,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,3.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,S1238,43.6875941833,-79.3924335004,313456.285,4838409.916999999
-887878,4153375,2017.0,2021.0,1959.0,PRIVATE,12,Toronto-St. Paul's,268 POPLAR PLAINS RD,10,59,2021-11-03,83,Evaluation needs to be conducted in 2 years,16,5.0,5.0,5.0,4.0,4.0,4.0,,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,3.0,,S1237,43.6856691737,-79.4040338654,312521.347,4838194.933
-887879,4155053,2017.0,2021.0,1967.0,PRIVATE,8,Eglinton-Lawrence,377 RIDELLE AVE,18,231,2021-11-03,83,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,4.0,5.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,,N0831,43.70388232649999,-79.4401320066,309609.636,4840215.587
-887880,4155671,2017.0,2021.0,1962.0,PRIVATE,15,Don Valley West,16 CARLUKE CRES,7,101,2021-11-03,83,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,,4.0,3.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,N1521,43.7611222484,-79.39268737180001,313562.542,4846551.841
-887881,4155672,2017.0,2021.0,1962.0,PRIVATE,15,Don Valley West,20 CARLUKE CRES,12,154,2021-11-03,86,Evaluation needs to be conducted in 3 years,18,4.0,4.0,5.0,4.0,4.0,5.0,5.0,4.0,5.0,,4.0,3.0,5.0,3.0,4.0,5.0,5.0,4.0,4.0,,N1521,43.7610374702,-79.3915028226,313594.376,4846563.3889999995
-887882,4155712,2017.0,2021.0,1965.0,PRIVATE,16,Don Valley East,44 VALLEY WOODS RD,22,263,2021-11-03,85,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,3.0,4.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,,N1625,43.75464500100001,-79.33343610899999,318197.315,4845867.709
-887883,4155376,2017.0,2021.0,1965.0,PRIVATE,2,Etobicoke Centre,265 MARKLAND DR,13,149,2021-11-03,78,Evaluation needs to be conducted in 2 years,19,5.0,2.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,3.0,3.0,5.0,4.0,2.0,,W0233,43.628474685600004,-79.57963997479999,298357.691,4831839.575
-887884,4155339,2017.0,2021.0,1970.0,PRIVATE,2,Etobicoke Centre,10 FONTENAY CRT,6,63,2021-11-02,86,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,4.0,5.0,4.0,,4.0,4.0,4.0,4.0,4.0,5.0,3.0,5.0,4.0,5.0,4.0,4.0,,W0230,43.681930505,-79.511655476,303844.403,4837776.302
-887885,4155338,2017.0,2021.0,1966.0,PRIVATE,2,Etobicoke Centre,20 FONTENAY CRT,14,96,2021-11-02,76,Evaluation needs to be conducted in 2 years,18,5.0,3.0,4.0,3.0,3.0,4.0,,3.0,4.0,4.0,2.0,5.0,5.0,3.0,5.0,4.0,5.0,4.0,2.0,,W0230,43.682596017,-79.512861413,303747.19,4837850.252
-887886,4153848,2017.0,2021.0,1957.0,PRIVATE,15,Don Valley West,170 ERSKINE AVE,4,31,2021-11-02,73,Evaluation needs to be conducted in 2 years,17,4.0,5.0,5.0,3.0,3.0,3.0,,3.0,4.0,3.0,3.0,4.0,5.0,3.0,4.0,3.0,,4.0,3.0,,N1526,43.712817122,-79.392570284,313441.386,4841213.1219999995
-887887,4153838,2017.0,2021.0,1960.0,PRIVATE,15,Don Valley West,171 ERSKINE AVE,13,47,2021-11-02,73,Evaluation needs to be conducted in 2 years,17,3.0,5.0,4.0,2.0,4.0,4.0,,3.0,4.0,,3.0,4.0,5.0,3.0,5.0,5.0,3.0,3.0,2.0,,N1526,43.712311598,-79.392295109,313463.635,4841156.988
-887888,4274443,2017.0,2021.0,1950.0,SOCIAL HOUSING,19,Beaches-East York,1845 GERRARD ST E,3,20,2021-11-02,76,Evaluation needs to be conducted in 2 years,15,4.0,5.0,3.0,5.0,3.0,3.0,,5.0,,,3.0,3.0,5.0,3.0,4.0,2.0,,4.0,,5.0,S1934,43.6789313612,-79.3134909905,319822.568,4837458.76
-887889,4155299,2017.0,2021.0,1968.0,PRIVATE,3,Etobicoke-Lakeshore,4875 DUNDAS ST W,10,56,2021-11-02,85,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,,W0321,43.649546925299994,-79.5275324793,302563.23,4834178.034
-887890,4154565,2017.0,2021.0,1954.0,PRIVATE,8,Eglinton-Lawrence,568 LAWRENCE AVE W,3,29,2021-11-02,79,Evaluation needs to be conducted in 2 years,15,4.0,3.0,5.0,3.0,4.0,3.0,,4.0,,,3.0,5.0,5.0,4.0,4.0,5.0,,4.0,3.0,,N0823,43.718310388,-79.435578125,309975.18100000004,4841819.728999999
-887891,4153701,2017.0,2021.0,1960.0,PRIVATE,19,Beaches-East York,1636 GERRARD ST E,6,48,2021-11-02,81,Evaluation needs to be conducted in 2 years,18,5.0,3.0,3.0,5.0,5.0,5.0,,3.0,5.0,5.0,4.0,3.0,5.0,3.0,4.0,3.0,5.0,3.0,4.0,,S1934,43.67596288399999,-79.319872249,319308.507,4837128.786
-887892,4155523,2017.0,2021.0,1966.0,PRIVATE,3,Etobicoke-Lakeshore,245 LAKE SHORE DR,8,52,2021-11-02,92,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,5.0,5.0,5.0,,4.0,5.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,W0335,43.594177992,-79.509613515,304007.895,4828027.375
-887893,4154150,2017.0,2021.0,1964.0,PRIVATE,15,Don Valley West,35 THORNCLIFFE PARK DR,18,287,2021-11-02,76,Evaluation needs to be conducted in 2 years,19,4.0,5.0,5.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,2.0,3.0,5.0,4.0,2.0,4.0,5.0,4.0,4.0,,N1533,43.701969776000006,-79.34510507899999,317268.55,4840013.953
-887894,4154410,2017.0,2021.0,1965.0,PRIVATE,6,York Centre,1130 WILSON AVE,11,118,2021-11-02,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,,N0627,43.726439972799994,-79.48492026439999,305999.418,4842720.033
-887895,4154455,2017.0,2021.0,1967.0,PRIVATE,6,York Centre,3400 KEELE ST,9,141,2021-11-02,73,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,4.0,5.0,3.0,3.0,4.0,4.0,4.0,3.0,,N0625,43.748015635,-79.487900293,305768.00800000003,4845249.455
-887896,4152934,2017.0,2021.0,1969.0,PRIVATE,4,Parkdale-High Park,77 QUEBEC AVE,21,330,2021-11-02,74,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,,3.0,,3.0,5.0,,3.0,3.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,,S0428,,,307422.34,4834828.072
-887897,4155744,2017.0,2021.0,1977.0,SOCIAL HOUSING,4,Parkdale-High Park,66 RONCESVALLES AVE,11,200,2021-11-02,82,Evaluation needs to be conducted in 2 years,19,4.0,5.0,5.0,4.0,3.0,4.0,3.0,3.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,S0434,43.64019946,-79.44730757939999,309044.957,4833145.277
-887898,4154938,2017.0,2021.0,1967.0,PRIVATE,12,Toronto-St. Paul's,39 RAGLAN AVE,9,101,2021-11-02,75,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,3.0,3.0,3.0,4.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1229,43.6847829305,-79.4199516911,311238.08,4838095.101
-887899,4154960,2017.0,2021.0,1967.0,PRIVATE,12,Toronto-St. Paul's,100 RAGLAN AVE,13,230,2021-11-02,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,3.0,,S1229,43.6854489,-79.4209261641,311159.446,4838169.018
-887900,4154940,2017.0,2021.0,1967.0,PRIVATE,12,Toronto-St. Paul's,111 RAGLAN AVE,23,175,2021-11-02,80,Evaluation needs to be conducted in 2 years,20,5.0,5.0,5.0,3.0,3.0,3.0,3.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,S1229,43.686628503,-79.4207223391,311175.75899999996,4838300.092
-887901,4154483,2017.0,2021.0,1965.0,PRIVATE,8,Eglinton-Lawrence,120 SHELBORNE AVE,15,187,2021-11-02,84,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,,3.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,,N0827,43.7162590007,-79.4298519795,310437.032,4841591.256
-887902,4154196,2017.0,2021.0,1960.0,PRIVATE,15,Don Valley West,27 BRENTCLIFFE RD,3,12,2021-11-02,77,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,3.0,3.0,,3.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,N1529,43.714989869300005,-79.35960275,316097.848,4841457.449
-887903,4153217,2017.0,2021.0,1957.0,PRIVATE,11,University-Rosedale,59 SPADINA RD,10,57,2021-11-02,70,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,3.0,3.0,4.0,,3.0,4.0,3.0,3.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,S1127,43.669561906700004,-79.404633152,312474.989,4836405.38
-887904,4154183,2017.0,2021.0,1950.0,PRIVATE,15,Don Valley West,1315 BAYVIEW AVE,3,38,2021-11-02,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,3.0,,4.0,,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N1535,43.6985850004,-79.3720164996,315100.405,4839633.3889999995
-887905,4154481,2017.0,2021.0,1964.0,PRIVATE,8,Eglinton-Lawrence,2900 BATHURST ST,14,117,2021-11-02,83,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,4.0,4.0,3.0,3.0,4.0,5.0,,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,3.0,,N0827,43.714534767399996,-79.4292156084,310488.473,4841399.748
-887906,4154272,,2021.0,1966.0,PRIVATE,7,Humber River-Black Creek,90 YORK GATE BLVD,4,40,2021-11-02,67,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,3.0,,W0724,43.7610772976,-79.5211616748,303080.68,4846568.193
-887907,4154553,2017.0,2021.0,1984.0,SOCIAL HOUSING,8,Eglinton-Lawrence,3270 BATHURST ST,8,160,2021-11-02,80,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,4.0,5.0,4.0,3.0,5.0,,3.0,3.0,5.0,4.0,5.0,4.0,,4.0,3.0,,N0823,43.7242397446,-79.4314621221,310306.56899999996,4842477.78
-887908,4152931,2017.0,2021.0,1965.0,PRIVATE,4,Parkdale-High Park,22 OAKMOUNT RD,17,216,2021-11-01,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,4.0,,3.0,5.0,,4.0,4.0,5.0,3.0,4.0,3.0,3.0,4.0,3.0,4.0,S0428,43.655176052600005,-79.4635445637,307724.99100000004,4834803.534
-887909,4155001,2017.0,2021.0,1951.0,PRIVATE,12,Toronto-St. Paul's,1862 BATHURST ST,7,75,2021-11-01,87,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,4.0,5.0,2.0,,5.0,5.0,4.0,4.0,4.0,5.0,5.0,4.0,5.0,,4.0,3.0,,S1224,43.697599459399996,-79.42456803350001,310864.673,4839518.652
-887910,4154270,2017.0,2021.0,1973.0,PRIVATE,7,Humber River-Black Creek,4800 JANE ST,9,97,2021-11-01,67,Evaluation needs to be conducted in 2 years,18,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,3.0,5.0,4.0,3.0,3.0,3.0,4.0,3.0,,W0724,43.7711875516,-79.5216643445,303040.481,4847691.41
-887911,4155570,2017.0,2021.0,1970.0,TCHC,24,Scarborough-Guildwood,55 GREENBRAE CRCT,13,128,2021-11-01,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,E2425,43.759551821,-79.230166356,326511.584,4846434.635
-887912,4153744,2017.0,2021.0,1967.0,PRIVATE,12,Toronto-St. Paul's,44 JACKES AVE,24,411,2021-11-01,81,Evaluation needs to be conducted in 2 years,20,5.0,5.0,5.0,4.0,4.0,3.0,4.0,3.0,5.0,4.0,3.0,4.0,5.0,4.0,4.0,3.0,5.0,4.0,3.0,4.0,S1238,43.6857858,-79.391174558,313557.781,4838210.101
-887913,4153667,2017.0,2021.0,1920.0,PRIVATE,19,Beaches-East York,83 SILVER BIRCH AVE,4,16,2021-11-01,74,Evaluation needs to be conducted in 2 years,16,5.0,3.0,5.0,3.0,5.0,3.0,,5.0,,,3.0,4.0,5.0,3.0,4.0,3.0,4.0,3.0,1.0,,S1942,43.6728223924,-79.284874358,322131.64,4836785.607
-887914,4156247,2017.0,2021.0,1920.0,PRIVATE,19,Beaches-East York,85 SILVER BIRCH AVE,4,16,2021-11-01,83,Evaluation needs to be conducted in 2 years,14,5.0,3.0,5.0,5.0,,3.0,,5.0,,,4.0,3.0,5.0,4.0,3.0,5.0,4.0,4.0,,,S1942,43.672975190900004,-79.2849229366,322127.679,4836802.572
-887915,4153851,2017.0,2021.0,1930.0,PRIVATE,15,Don Valley West,15 SHERWOOD AVE,3,26,2021-11-01,88,Evaluation needs to be conducted in 3 years,15,4.0,5.0,5.0,5.0,5.0,2.0,,5.0,,,4.0,3.0,5.0,5.0,5.0,5.0,,5.0,3.0,,N1526,43.71341493600001,-79.398583424,312956.739,4841278.923
-887916,4153856,2017.0,2021.0,1965.0,PRIVATE,15,Don Valley West,172 SHERWOOD AVE,3,18,2021-11-01,92,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,4.0,5.0,5.0,,4.0,5.0,,4.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,,N1526,43.7155061026,-79.39124146340001,313548.335,4841511.039
-887917,4154139,2017.0,2021.0,1969.0,PRIVATE,14,Toronto-Danforth,1000 BROADVIEW AVE,18,110,2021-11-01,83,Evaluation needs to be conducted in 2 years,18,4.0,5.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,,4.0,4.0,5.0,4.0,4.0,5.0,5.0,5.0,4.0,,S1421,43.682860253,-79.357706655,316256.567,4837889.181
-887918,4156206,2017.0,2021.0,1971.0,TCHC,17,Don Valley North,2 BRAHMS AVE,12,164,2021-11-01,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,3.0,N1722,43.792308051000006,-79.35878168,316167.619,4850056.03
-887919,4155794,2017.0,2021.0,1940.0,PRIVATE,15,Don Valley West,1215 BAYVIEW AVE,4,38,2021-11-01,78,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,3.0,,4.0,4.0,4.0,4.0,3.0,5.0,3.0,4.0,4.0,,4.0,4.0,,N1535,43.6972709992,-79.3716069474,315133.654,4839487.445
-887920,4154186,2017.0,2021.0,1954.0,PRIVATE,15,Don Valley West,1220 BAYVIEW AVE,6,51,2021-11-01,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N1535,43.6964257075,-79.37203639890001,315099.186,4839393.482
-887921,4154997,2017.0,2021.0,1930.0,PRIVATE,12,Toronto-St. Paul's,1650 BATHURST ST,3,25,2021-11-01,76,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,3.0,3.0,,4.0,,3.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,S1224,43.693814525,-79.4231231926,310981.49600000004,4839098.2639999995
-887922,4155000,2017.0,2021.0,1950.0,PRIVATE,12,Toronto-St. Paul's,1652 BATHURST ST,4,39,2021-11-01,76,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,,3.0,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,3.0,,S1224,43.6942486943,-79.4234335468,310956.436,4839146.473999999
-887923,4154998,2017.0,2021.0,1941.0,PRIVATE,12,Toronto-St. Paul's,1660 BATHURST ST,3,52,2021-11-01,76,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,3.0,3.0,,4.0,,,3.0,4.0,5.0,3.0,4.0,4.0,,4.0,4.0,,S1224,43.6950513231,-79.4234851985,310952.196,4839235.6389999995
-887924,4154544,2017.0,2021.0,1955.0,PRIVATE,8,Eglinton-Lawrence,45 WASDALE CRES,3,25,2021-11-01,88,Evaluation needs to be conducted in 3 years,16,4.0,5.0,5.0,3.0,4.0,3.0,,5.0,,,3.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,4.0,,N0823,43.730389547899996,-79.43636986189999,309910.624,4843160.67
-887925,4152920,2017.0,2021.0,1910.0,PRIVATE,4,Parkdale-High Park,35 JANE ST,3,18,2021-10-31,73,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,4.0,4.0,3.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,3.0,,S0426,43.650362426,-79.48450395649999,306034.424,4834268.283
-887926,4155348,2017.0,2021.0,1973.0,PRIVATE,2,Etobicoke Centre,45 LA ROSE AVE,16,156,2021-10-29,92,Evaluation needs to be conducted in 3 years,18,4.0,5.0,5.0,5.0,4.0,5.0,,4.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,5.0,,W0230,43.6860920205,-79.5158718598,303504.825,4838237.733
-887927,4152953,2017.0,2021.0,1963.0,PRIVATE,4,Parkdale-High Park,135 TYNDALL AVE,11,216,2021-10-29,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,5.0,3.0,4.0,3.0,5.0,,3.0,5.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,S0437,43.6377206965,-79.4283330254,310566.868,4832866.086
-887928,4154359,2017.0,2021.0,1954.0,PRIVATE,5,York South-Weston,2622 KEELE ST,3,11,2021-10-29,75,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,3.0,2.0,4.0,,4.0,,,4.0,3.0,5.0,4.0,4.0,4.0,,5.0,3.0,,W0522,43.7197822126,-79.4809670632,306318.07899999997,4841980.465
-887929,4154314,2017.0,2021.0,1965.0,PRIVATE,5,York South-Weston,2623 KEELE ST,3,11,2021-10-29,88,Evaluation needs to be conducted in 3 years,17,4.0,4.0,5.0,4.0,3.0,5.0,,5.0,,4.0,5.0,5.0,5.0,3.0,5.0,4.0,5.0,5.0,4.0,,W0523,43.7203778821,-79.48023467510001,306377.076,4842046.653
-887930,4154681,2017.0,2021.0,1964.0,PRIVATE,8,Eglinton-Lawrence,4000 YONGE ST,8,305,2021-10-29,90,Evaluation needs to be conducted in 3 years,20,5.0,4.0,5.0,4.0,5.0,4.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,N0824,43.742532089899996,-79.40680954369999,312290.501,4844511.8780000005
-887931,4154268,2017.0,2021.0,1975.0,PRIVATE,7,Humber River-Black Creek,5000 JANE ST,13,291,2021-10-29,65,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,3.0,W0724,43.77371822600001,-79.52248674399999,303046.894,4847929.838
-887932,4154682,2017.0,2021.0,1950.0,PRIVATE,8,Eglinton-Lawrence,166 WILSON AVE,4,60,2021-10-29,88,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,4.0,5.0,4.0,,4.0,5.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,,N0821,43.740401247,-79.4209043268,311155.467,4844273.936000001
-887933,4152952,2017.0,2021.0,1963.0,PRIVATE,4,Parkdale-High Park,115 TYNDALL AVE,10,108,2021-10-29,81,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,4.0,5.0,3.0,4.0,5.0,4.0,4.0,4.0,,S0437,43.637071376899996,-79.4279645858,310596.655,4832793.975
-887934,4156719,2017.0,2021.0,1900.0,PRIVATE,11,University-Rosedale,359 DAVENPORT RD,4,17,2021-10-29,64,Evaluation needs to be conducted in 1 year,15,4.0,3.0,4.0,3.0,,3.0,,3.0,,,3.0,3.0,5.0,2.0,3.0,3.0,3.0,3.0,3.0,,S1127,,,312666.71,4837037.335
-887935,4154315,2017.0,2021.0,1958.0,PRIVATE,5,York South-Weston,2637 KEELE ST,3,12,2021-10-29,79,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,3.0,5.0,3.0,,4.0,,,3.0,3.0,5.0,5.0,4.0,4.0,,5.0,3.0,,W0523,43.7208097276,-79.4802643033,306374.678,4842094.627
-887936,4154285,2017.0,2021.0,1965.0,PRIVATE,5,York South-Weston,45 GULLIVER RD,5,43,2021-10-28,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,,5.0,4.0,4.0,3.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,W0529,43.6983227203,-79.4785516514,306513.29,4839596.471
-887937,4154561,2017.0,2021.0,1954.0,PRIVATE,8,Eglinton-Lawrence,14 SARANAC BLVD,3,26,2021-10-28,85,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,5.0,5.0,5.0,4.0,4.0,4.0,,4.0,4.0,,N0823,43.721616760299995,-79.4332571257,310162.173,4842186.251
-887938,4155770,2017.0,2021.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,2313 LAKE SHORE BLVD W,10,133,2021-10-28,82,Evaluation needs to be conducted in 2 years,20,5.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,5.0,W0336,43.617341413000005,-79.486574349,305830.93100000004,4830610.135
-887939,4155769,2017.0,2021.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,2323 LAKE SHORE BLVD W,10,133,2021-10-28,79,Evaluation needs to be conducted in 2 years,19,5.0,5.0,5.0,4.0,4.0,2.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,,W0336,43.6169356849,-79.48667587050001,305824.401,4830594.748
-887940,4153709,2017.0,2021.0,1974.0,PRIVATE,19,Beaches-East York,50 MAIN ST,5,38,2021-10-28,85,Evaluation needs to be conducted in 2 years,19,5.0,3.0,4.0,5.0,5.0,5.0,5.0,3.0,5.0,5.0,3.0,5.0,5.0,4.0,3.0,5.0,4.0,4.0,3.0,,S1935,43.6802370284,-79.2987777122,321008.536,4837606.565
-887941,4155553,2017.0,2021.0,1950.0,PRIVATE,3,Etobicoke-Lakeshore,294 LAKE PROMENADE,4,14,2021-10-28,89,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,5.0,5.0,5.0,,4.0,,4.0,5.0,3.0,5.0,4.0,4.0,5.0,5.0,4.0,3.0,,W0334,43.588709665,-79.53407604899999,302032.547,4827420.363
-887942,4155387,2017.0,2021.0,1974.0,PRIVATE,2,Etobicoke Centre,15 EVA RD,18,195,2021-10-28,71,Evaluation needs to be conducted in 2 years,20,5.0,3.0,3.0,2.0,3.0,4.0,2.0,4.0,4.0,2.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,5.0,3.0,4.0,W0233,43.638437155,-79.562017823,299621.964,4833042.587
-887943,4155388,2017.0,2021.0,1974.0,PRIVATE,2,Etobicoke Centre,19 EVA RD,14,152,2021-10-28,78,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,4.0,4.0,4.0,2.0,3.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,5.0,3.0,4.0,3.0,,W0233,43.637506998,-79.56171027,299605.598,4833037.805
-887944,4153610,2017.0,2021.0,1965.0,PRIVATE,14,Toronto-Danforth,33 EASTMOUNT AVE,24,200,2021-10-28,84,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,5.0,3.0,4.0,5.0,5.0,4.0,,4.0,5.0,5.0,4.0,3.0,4.0,5.0,4.0,4.0,2.0,S1424,43.67900365770001,-79.3612885228,315968.75800000003,4837459.273
-887945,4154898,2017.0,2021.0,1960.0,PRIVATE,16,Don Valley East,21 WELSFORD GDNS,15,154,2021-10-28,91,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,,5.0,5.0,5.0,3.0,5.0,5.0,3.0,4.0,4.0,,N1625,43.7525195774,-79.3152926734,319659.157,4845633.706
-887946,4154351,2017.0,2021.0,1950.0,PRIVATE,5,York South-Weston,2428 KEELE ST,3,10,2021-10-28,83,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,2.0,4.0,,4.0,,,4.0,3.0,5.0,5.0,5.0,5.0,,5.0,3.0,,W0526,43.7106272814,-79.4788634923,306486.658,4840982.713
-887947,4154338,2018.0,2021.0,1977.0,PRIVATE,5,York South-Weston,2500 KEELE ST,12,95,2021-10-28,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,3.0,4.0,3.0,4.0,5.0,4.0,3.0,4.0,5.0,4.0,3.0,5.0,2.0,5.0,3.0,,W0526,43.7131114472,-79.4796418006,306425.038,4841239.414
-887948,4154310,2017.0,2021.0,1958.0,PRIVATE,5,York South-Weston,2567 KEELE ST,4,26,2021-10-28,88,Evaluation needs to be conducted in 3 years,16,4.0,4.0,5.0,5.0,4.0,5.0,,5.0,,,4.0,5.0,5.0,3.0,5.0,4.0,2.0,5.0,5.0,,W0523,43.7173852837,-79.4796573022,306423.67600000004,4841714.21
-887949,4154680,2017.0,2021.0,1956.0,PRIVATE,8,Eglinton-Lawrence,161 WILSON AVE,4,56,2021-10-28,85,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,N0824,43.7399203058,-79.42005527229999,311223.909,4844220.57
-887950,4153854,2017.0,2021.0,1955.0,PRIVATE,15,Don Valley West,110 KEEWATIN AVE,4,32,2021-10-28,80,Evaluation needs to be conducted in 2 years,17,4.0,5.0,5.0,3.0,3.0,3.0,,4.0,,2.0,4.0,4.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,,N1526,43.7133304232,-79.3963936758,313133.471,4841268.797
-887951,4155442,2017.0,2021.0,1962.0,PRIVATE,1,Etobicoke North,2328 ISLINGTON AVE,7,68,2021-10-28,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,5.0,4.0,,3.0,4.0,4.0,4.0,5.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,,W0130,43.717216180600005,-79.5567000725,300215.686,4841696.915
-887952,4154267,2017.0,2021.0,1973.0,PRIVATE,7,Humber River-Black Creek,4001 STEELES AVE W,18,356,2021-10-28,63,Evaluation needs to be conducted in 1 year,19,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,2.0,4.0,3.0,3.0,4.0,3.0,4.0,3.0,3.0,W0724,43.77414527,-79.524134475,302841.45399999997,4848021.011
-887953,4153181,2018.0,2021.0,1960.0,PRIVATE,11,University-Rosedale,22 WALMER RD,8,71,2021-10-28,77,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,4.0,3.0,4.0,,5.0,4.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,3.0,,S1126,43.667662201300004,-79.4064427031,312329.29600000003,4836194.1680000005
-887954,4155556,2017.0,2021.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,25 VILLA RD,3,34,2021-10-28,92,Evaluation needs to be conducted in 3 years,15,5.0,5.0,5.0,4.0,5.0,4.0,,4.0,,,5.0,4.0,5.0,5.0,4.0,4.0,,5.0,5.0,,W0334,43.5903826835,-79.5425008764,301352.589,4827605.591
-887955,4153862,2017.0,2021.0,1928.0,PRIVATE,15,Don Valley West,2867 YONGE ST,3,32,2021-10-28,91,Evaluation needs to be conducted in 3 years,14,5.0,5.0,5.0,3.0,4.0,4.0,,4.0,,,4.0,5.0,5.0,5.0,5.0,5.0,,5.0,,,N1526,43.72055353,-79.400838687,312774.064,4842071.748
-887956,4153863,2017.0,2021.0,1960.0,PRIVATE,15,Don Valley West,2875 YONGE ST,4,18,2021-10-28,79,Evaluation needs to be conducted in 2 years,17,4.0,5.0,5.0,3.0,2.0,2.0,,4.0,,2.0,3.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,,4.0,N1526,43.720768502,-79.40097412,312763.124,4842095.615
-887957,4154926,2017.0,2021.0,1964.0,PRIVATE,16,Don Valley East,1216 YORK MILLS RD,8,65,2021-10-28,86,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,N1622,43.760177983599995,-79.33256408140001,318266.564,4846481.585
-887958,4153185,2017.0,2021.0,1960.0,PRIVATE,11,University-Rosedale,375 BRUNSWICK AVE,9,63,2021-10-28,72,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,3.0,4.0,3.0,,4.0,4.0,,3.0,3.0,5.0,3.0,4.0,4.0,4.0,4.0,2.0,,S1126,43.6684734257,-79.4081015431,312195.42600000004,4836284.143999999
-887959,4155111,2017.0,2021.0,1958.0,PRIVATE,5,York South-Weston,85 CLEARVIEW HTS,3,35,2021-10-28,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,2.0,,,3.0,3.0,5.0,5.0,3.0,3.0,,3.0,3.0,,W0532,43.692772378,-79.483091733,306147.185,4838980.741
-887960,4153711,2017.0,2021.0,1957.0,PRIVATE,19,Beaches-East York,600 KINGSTON RD,8,68,2021-10-28,84,Evaluation needs to be conducted in 2 years,19,5.0,3.0,3.0,5.0,5.0,3.0,,5.0,5.0,3.0,4.0,5.0,5.0,5.0,3.0,3.0,5.0,5.0,3.0,5.0,S1935,43.6788159908,-79.29970751409999,320933.94899999996,4837448.512
-887961,4154562,2017.0,2021.0,1954.0,PRIVATE,8,Eglinton-Lawrence,10 SARANAC BLVD,4,26,2021-10-28,85,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,5.0,5.0,5.0,4.0,4.0,4.0,,4.0,4.0,,N0823,43.721268466400005,-79.4331088491,310174.151,4842147.567
-887962,4154675,2017.0,2021.0,1957.0,PRIVATE,8,Eglinton-Lawrence,222 WILSON AVE,3,11,2021-10-28,75,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,4.0,3.0,4.0,,4.0,,4.0,4.0,4.0,5.0,3.0,3.0,4.0,4.0,4.0,3.0,,N0821,43.739213175100005,-79.4260843237,310738.359,4844141.595
-887963,4156711,2017.0,2021.0,2013.0,PRIVATE,10,Spadina-Fort York,100 LOWER OSSINGTON AVE,8,179,2021-10-27,89,Evaluation needs to be conducted in 3 years,19,4.0,4.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,,S1027,,,311312.897,4833534.316000001
-887964,4155763,2017.0,2021.0,1966.0,PRIVATE,3,Etobicoke-Lakeshore,8 SAND BEACH RD,3,24,2021-10-27,73,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,4.0,2.0,5.0,,4.0,,2.0,3.0,4.0,5.0,3.0,4.0,4.0,,3.0,3.0,,W0335,43.6017504793,-79.4973496244,304998.293,4828867.665
-887965,4155454,2018.0,2021.0,1976.0,PRIVATE,1,Etobicoke North,2757 KIPLING AVE,19,343,2021-10-27,79,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,1.0,,W0124,43.754436232299994,-79.5871043127,297770.21,4845833.956
-887966,4155455,2017.0,2021.0,1978.0,PRIVATE,1,Etobicoke North,2777 KIPLING AVE,18,325,2021-10-27,73,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,,4.0,4.0,5.0,3.0,3.0,4.0,3.0,3.0,4.0,,W0124,43.7560633856,-79.5872449019,297759.089,4846014.737
-887967,4155395,2018.0,2021.0,1969.0,PRIVATE,2,Etobicoke Centre,500 THE WEST MALL,5,24,2021-10-27,75,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,3.0,4.0,,4.0,2.0,,3.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,2.0,,W0231,43.64890631,-79.568879209,299225.155,4834139.812
-887968,4154299,2018.0,2021.0,1970.0,PRIVATE,5,York South-Weston,1577 LAWRENCE AVE W,15,350,2021-10-27,74,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,W0529,43.705418072700006,-79.4894721065,305632.974,4840384.601
-887969,4154076,2017.0,2021.0,1969.0,PRIVATE,19,Beaches-East York,90 EASTDALE AVE,24,383,2021-10-27,84,Evaluation needs to be conducted in 2 years,19,5.0,3.0,5.0,4.0,5.0,3.0,5.0,5.0,5.0,5.0,5.0,5.0,3.0,4.0,3.0,3.0,4.0,4.0,4.0,,S1930,43.6946110438,-79.3012502948,320805.368,4839202.978
-887970,4154200,2017.0,2021.0,1954.0,PRIVATE,15,Don Valley West,898 EGLINTON AVE E,3,21,2021-10-27,74,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,,4.0,4.0,3.0,3.0,4.0,4.0,3.0,,4.0,3.0,,N1529,43.7143428943,-79.362633584,315853.739,4841385.163
-887971,4154199,2017.0,2021.0,1958.0,PRIVATE,15,Don Valley West,904 EGLINTON AVE E,4,22,2021-10-27,69,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,,4.0,2.0,4.0,5.0,4.0,3.0,4.0,,3.0,3.0,,N1529,43.71442413,-79.362206452,315887.881,4841395.201
-887972,4156414,2017.0,2021.0,1983.0,SOCIAL HOUSING,6,York Centre,623 FINCH AVE W,12,141,2021-10-27,77,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,3.0,4.0,3.0,4.0,4.0,,3.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,N0624,43.770916893,-79.45390216,308484.808,4847722.837
-887973,4156200,2017.0,2021.0,1987.0,SOCIAL HOUSING,6,York Centre,625 FINCH AVE W,14,123,2021-10-27,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,3.0,3.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,N0624,,,308349.30199999997,4847683.871
-887974,4153872,2017.0,2021.0,1952.0,PRIVATE,15,Don Valley West,6 GLEN ECHO RD,4,30,2021-10-27,79,Evaluation needs to be conducted in 2 years,15,2.0,4.0,5.0,3.0,4.0,3.0,,4.0,,,3.0,3.0,5.0,4.0,5.0,4.0,,5.0,5.0,,N1525,43.7340881358,-79.4038420166,312530.603,4843574.098
-887975,4154963,2017.0,2021.0,1960.0,PRIVATE,12,Toronto-St. Paul's,40 RAGLAN AVE,7,61,2021-10-27,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1229,43.684203196000006,-79.4203922096,311202.622,4838030.657
-887976,4154981,2017.0,2021.0,1963.0,PRIVATE,12,Toronto-St. Paul's,120 RAGLAN AVE,9,175,2021-10-27,87,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,,4.0,4.0,5.0,3.0,4.0,4.0,5.0,4.0,4.0,,S1229,43.6866664958,-79.4213590285,311124.424,4838304.266
-887977,4153808,2017.0,2021.0,1959.0,PRIVATE,15,Don Valley West,57 RAWLINSON AVE,4,36,2021-10-27,94,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,5.0,5.0,5.0,,5.0,,4.0,4.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,5.0,,N1537,43.7096715692,-79.3877050261,313834.207,4840863.223
-887978,4153400,2017.0,2021.0,1992.0,TCHC,10,Spadina-Fort York,190 JOHN ST,4,26,2021-10-27,69,Evaluation needs to be conducted in 2 years,18,3.0,3.0,5.0,4.0,4.0,4.0,3.0,3.0,4.0,,3.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,,S1024,43.650961887,-79.391878256,313506.048,4834341.234
-887979,4155372,2017.0,2021.0,1966.0,PRIVATE,2,Etobicoke Centre,350 THE EAST MALL,8,77,2021-10-27,85,Evaluation needs to be conducted in 2 years,17,5.0,5.0,5.0,3.0,4.0,4.0,,4.0,4.0,,4.0,3.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,,W0234,43.6409375291,-79.55812954310001,300094.471,4833222.672
-887980,4154266,2017.0,2021.0,1974.0,PRIVATE,7,Humber River-Black Creek,320 NISKA RD,13,169,2021-10-27,65,Evaluation needs to be conducted in 1 year,19,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,4.0,4.0,3.0,,W0725,43.765738444200004,-79.51095348369999,303902.707,4847085.858
-887981,4154256,2017.0,2021.0,1963.0,PRIVATE,7,Humber River-Black Creek,3355 WESTON RD,4,57,2021-10-27,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,5.0,3.0,4.0,3.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,W0728,43.744498152700004,-79.5401163906,301553.519,4844726.933999999
-887982,4155400,2018.0,2021.0,1972.0,PRIVATE,2,Etobicoke Centre,580 THE EAST MALL,16,122,2021-10-27,85,Evaluation needs to be conducted in 2 years,19,5.0,5.0,5.0,4.0,5.0,4.0,4.0,3.0,4.0,3.0,5.0,4.0,5.0,5.0,4.0,3.0,5.0,5.0,3.0,,W0232,43.65370022649999,-79.5643718733,299591.993,4834640.898
-887983,4154023,2017.0,2021.0,1929.0,PRIVATE,8,Eglinton-Lawrence,2914 YONGE ST,5,46,2021-10-27,87,Evaluation needs to be conducted in 3 years,17,5.0,4.0,5.0,5.0,4.0,5.0,4.0,3.0,5.0,,4.0,5.0,5.0,4.0,4.0,4.0,,4.0,4.0,,N0829,43.722180360900005,-79.40195722189999,312683.99199999997,4842251.409
-887984,4152857,2017.0,2021.0,1971.0,PRIVATE,22,Scarborough-Agincourt,2360 BIRCHMOUNT RD,13,186,2021-10-27,75,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2226,43.78293932729999,-79.2995706265,320917.149,4849016.171
-887985,4154673,2017.0,2021.0,1959.0,PRIVATE,8,Eglinton-Lawrence,12 BIDEFORD AVE,4,56,2021-10-27,84,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,N0821,43.740420337799996,-79.4237155283,310929.031,4844275.855
-887986,4154648,2017.0,2021.0,1963.0,PRIVATE,6,York Centre,4866 BATHURST ST,10,81,2021-10-27,83,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,N0624,43.771601520299996,-79.44318159689999,309358.789,4847738.71
-887987,4156621,2017.0,2021.0,1962.0,PRIVATE,6,York Centre,4900 BATHURST ST,6,60,2021-10-27,84,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,N0624,43.772309339799996,-79.44307224020001,309367.539,4847817.353
-887988,4154021,2017.0,2021.0,1929.0,PRIVATE,8,Eglinton-Lawrence,1 CHERITAN AVE,4,64,2021-10-27,91,Evaluation needs to be conducted in 3 years,17,4.0,4.0,5.0,4.0,5.0,5.0,5.0,4.0,5.0,,4.0,5.0,5.0,4.0,5.0,5.0,,4.0,4.0,,N0829,43.7228926258,-79.4020952283,312672.781,4842330.522
-887989,4153337,2017.0,2021.0,1992.0,SOCIAL HOUSING,12,Toronto-St. Paul's,1060 DAVENPORT RD,4,10,2021-10-27,71,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,3.0,3.0,4.0,,4.0,,4.0,3.0,3.0,5.0,4.0,3.0,3.0,4.0,3.0,,,S1234,43.6748848095,-79.42909718930001,310501.63800000004,4836994.79
-887990,4153347,2019.0,2021.0,1989.0,PRIVATE,12,Toronto-St. Paul's,607 ST CLAIR AVE W,3,14,2021-10-27,89,Evaluation needs to be conducted in 3 years,15,4.0,4.0,5.0,4.0,4.0,5.0,,5.0,,,4.0,4.0,5.0,4.0,4.0,5.0,,5.0,,5.0,S1235,,,311004.615,4837770.886
-887991,4153351,2017.0,2021.0,1921.0,PRIVATE,12,Toronto-St. Paul's,781 ST CLAIR AVE W,3,16,2021-10-27,89,Evaluation needs to be conducted in 3 years,14,5.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,5.0,4.0,5.0,5.0,5.0,4.0,,4.0,,,S1234,43.680680134300005,-79.4292316793,310490.25,4837638.626
-887992,4154022,2017.0,2021.0,1929.0,PRIVATE,8,Eglinton-Lawrence,2932 YONGE ST,5,46,2021-10-27,88,Evaluation needs to be conducted in 3 years,17,4.0,4.0,5.0,4.0,4.0,5.0,5.0,4.0,5.0,,4.0,5.0,5.0,4.0,4.0,4.0,,4.0,5.0,,N0829,43.7226217113,-79.4021353156,312669.586,4842300.422
-887993,4153721,2017.0,2021.0,1971.0,PRIVATE,19,Beaches-East York,700 KINGSTON RD,7,38,2021-10-27,84,Evaluation needs to be conducted in 2 years,18,5.0,3.0,5.0,5.0,5.0,3.0,,5.0,5.0,5.0,3.0,5.0,5.0,3.0,4.0,4.0,5.0,3.0,3.0,,S1936,43.679427643000004,-79.296686038,321177.143,4837518.012
-887994,4263113,2017.0,2021.0,1970.0,PRIVATE,17,Don Valley North,642 SHEPPARD AVE E,19,126,2021-10-27,81,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,2.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,N1725,43.76917685,-79.3827164,314226.606,4847475.368
-887995,4155452,2017.0,2021.0,1978.0,PRIVATE,1,Etobicoke North,2677 KIPLING AVE,23,227,2021-10-27,68,Evaluation needs to be conducted in 2 years,18,4.0,3.0,2.0,4.0,4.0,4.0,3.0,3.0,3.0,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,W0124,43.749099512,-79.584064323,298014.13300000003,4845241.7639999995
-887996,4154669,2017.0,2021.0,1955.0,PRIVATE,8,Eglinton-Lawrence,199 WILSON AVE,4,46,2021-10-26,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,5.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0824,43.7390527397,-79.4243280269,310879.837,4844123.886
-887997,4153140,2017.0,2021.0,1970.0,PRIVATE,10,Spadina-Fort York,798 RICHMOND ST W,13,525,2021-10-26,73,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,4.0,4.0,3.0,4.0,,4.0,4.0,5.0,S1028,43.6451383038,-79.4098140977,312060.214,4833691.505
-887998,4154204,2017.0,2021.0,1954.0,PRIVATE,15,Don Valley West,888 EGLINTON AVE E,3,18,2021-10-26,71,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,4.0,3.0,3.0,,4.0,,,3.0,4.0,5.0,3.0,3.0,4.0,3.0,3.0,4.0,,N1529,43.7139541156,-79.364465297,315706.209,4841341.723
-887999,4154501,2019.0,2021.0,1957.0,PRIVATE,8,Eglinton-Lawrence,91 NEPTUNE DR,3,12,2021-10-26,76,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,3.0,4.0,4.0,,3.0,,,4.0,4.0,5.0,4.0,3.0,4.0,4.0,2.0,4.0,,N0823,43.7317413513,-79.43816993680001,309765.49600000004,4843310.737
-888000,4154931,2017.0,2021.0,1956.0,PRIVATE,12,Toronto-St. Paul's,21 TICHESTER RD,12,117,2021-10-26,74,Evaluation needs to be conducted in 2 years,19,3.0,4.0,5.0,4.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,4.0,5.0,3.0,3.0,4.0,4.0,4.0,4.0,,S1230,43.68567521600001,-79.416929405,311481.385,4838195.429
-888001,4155825,2017.0,2021.0,1971.0,PRIVATE,2,Etobicoke Centre,24 EVA RD,19,142,2021-10-26,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,W0233,43.640023653,-79.563923317,299569.18100000004,4833075.089
-888002,4154202,2017.0,2021.0,1954.0,PRIVATE,15,Don Valley West,894 EGLINTON AVE E,4,44,2021-10-26,81,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N1529,43.71415005,-79.3634434361,315788.515,4841363.6280000005
-888003,4153945,2017.0,2021.0,1950.0,PRIVATE,12,Toronto-St. Paul's,725 EGLINTON AVE W,3,31,2021-10-26,78,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,3.0,3.0,,4.0,,3.0,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,S1225,43.701452170399996,-79.4222090371,311054.429,4839946.865
-888004,4154941,2017.0,2021.0,1937.0,PRIVATE,12,Toronto-St. Paul's,5 CLAXTON BLVD,3,18,2021-10-26,76,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,3.0,3.0,,3.0,,3.0,4.0,4.0,5.0,4.0,3.0,3.0,,5.0,,,S1229,43.687110735699996,-79.4206390043,311182.429,4838353.676
-888005,4152902,2017.0,2021.0,1938.0,PRIVATE,4,Parkdale-High Park,2553 BLOOR ST W,3,22,2021-10-26,84,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,5.0,3.0,4.0,5.0,,4.0,4.0,4.0,5.0,4.0,5.0,5.0,,4.0,3.0,,S0430,43.6475469436,-79.4904303476,305556.356,4833955.443
-888006,4154670,2017.0,2021.0,1982.0,TCHC,8,Eglinton-Lawrence,193 WILSON AVE,5,125,2021-10-26,87,Evaluation needs to be conducted in 3 years,19,4.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,,4.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,5.0,4.0,N0824,43.739288978999994,-79.42267237899999,311012.907,4844151.197
-888007,4153689,2017.0,2021.0,1958.0,PRIVATE,19,Beaches-East York,485 KINGSTON RD,9,115,2021-10-26,85,Evaluation needs to be conducted in 2 years,19,5.0,3.0,5.0,5.0,5.0,3.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,3.0,5.0,3.0,3.0,4.0,3.0,,S1938,43.6770057778,-79.3030883867,320661.82899999997,4837246.744
-888008,4153690,2018.0,2021.0,1950.0,PRIVATE,19,Beaches-East York,501 KINGSTON RD,7,75,2021-10-26,78,Evaluation needs to be conducted in 2 years,18,5.0,3.0,5.0,5.0,4.0,5.0,,3.0,5.0,5.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,S1938,,,320697.34,4837263.304
-888009,4153894,2017.0,2021.0,1970.0,PRIVATE,12,Toronto-St. Paul's,345 LONSDALE RD,6,55,2021-10-26,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,3.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1230,43.6881670254,-79.4141265124,311707.357,4838471.552
-888010,4154029,2017.0,2021.0,1957.0,PRIVATE,8,Eglinton-Lawrence,41 LORINDALE AVE,3,26,2021-10-26,85,Evaluation needs to be conducted in 2 years,15,5.0,5.0,5.0,3.0,4.0,4.0,,4.0,,,4.0,5.0,5.0,4.0,5.0,5.0,,3.0,3.0,,N0825,43.7260668342,-79.4036329242,312548.482,4842683.012
-888011,4154030,2017.0,2021.0,1957.0,PRIVATE,8,Eglinton-Lawrence,45 LORINDALE AVE,3,25,2021-10-26,83,Evaluation needs to be conducted in 2 years,15,5.0,5.0,5.0,3.0,4.0,4.0,,3.0,,,4.0,5.0,5.0,4.0,5.0,4.0,,3.0,3.0,,N0825,43.7262422092,-79.403851017,312530.88899999997,4842702.475
-888012,4154144,2017.0,2021.0,1975.0,SOCIAL HOUSING,15,Don Valley West,23 THORNCLIFFE PARK DR,6,77,2021-10-26,73,Evaluation needs to be conducted in 2 years,18,4.0,5.0,5.0,4.0,4.0,4.0,3.0,2.0,3.0,,3.0,3.0,5.0,4.0,4.0,3.0,4.0,4.0,2.0,,N1533,43.7031497325,-79.3474623763,317078.572,4840143.732
-888013,4154255,2017.0,2021.0,1963.0,PRIVATE,7,Humber River-Black Creek,3345 WESTON RD,4,57,2021-10-26,82,Evaluation needs to be conducted in 2 years,19,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,W0728,43.7438256262,-79.53997148100001,301565.156,4844652.213
-888014,4153895,2017.0,2021.0,1931.0,PRIVATE,12,Toronto-St. Paul's,404 SPADINA RD,4,31,2021-10-26,75,Evaluation needs to be conducted in 2 years,16,4.0,3.0,5.0,4.0,3.0,3.0,,4.0,4.0,4.0,4.0,4.0,5.0,3.0,3.0,3.0,,4.0,,,S1230,43.6882314978,-79.4129731553,311800.342,4838478.817
-888015,4153399,2017.0,2021.0,1982.0,PRIVATE,10,Spadina-Fort York,20 ST PATRICK ST,15,256,2021-10-26,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1024,43.6509721376,-79.3893617427,313709.312,4834341.702
-888016,4156549,2017.0,2021.0,1965.0,PRIVATE,12,Toronto-St. Paul's,88 REDPATH AVE,16,186,2021-10-26,82,Evaluation needs to be conducted in 2 years,19,5.0,5.0,5.0,3.0,4.0,2.0,4.0,4.0,5.0,,3.0,3.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,5.0,S1228,43.7062911075,-79.3925729601,313442.376,4840487.143
-888017,4257267,2017.0,2021.0,1969.0,PRIVATE,12,Toronto-St. Paul's,95 REDPATH AVE,14,93,2021-10-26,78,Evaluation needs to be conducted in 2 years,19,5.0,4.0,4.0,3.0,3.0,3.0,4.0,5.0,4.0,3.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1228,43.7069494634,-79.3920429105,313485.001,4840560.34
-888018,4156512,2017.0,2021.0,1964.0,PRIVATE,6,York Centre,32 BROOKWELL DR,4,38,2021-10-26,67,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,4.0,,3.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,2.0,,N0625,43.744572133599995,-79.4939808701,305269.36699999997,4844734.321
-888019,4155684,2017.0,2021.0,1964.0,PRIVATE,6,York Centre,34 BROOKWELL DR,4,44,2021-10-26,67,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,4.0,,3.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0625,43.7447007322,-79.4945628574,305222.49199999997,4844748.606000001
-888020,4156484,2017.0,2021.0,1965.0,PRIVATE,6,York Centre,35 BROOKWELL DR,4,76,2021-10-26,70,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,3.0,3.0,4.0,4.0,4.0,,4.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,,N0625,43.7434121512,-79.49453969449999,305224.364,4844605.449
-888021,4155677,2017.0,2021.0,1965.0,PRIVATE,6,York Centre,39 BROOKWELL DR,4,57,2021-10-26,71,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,4.0,,4.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,N0625,43.7438340807,-79.4945341178,305224.811,4844652.324
-888022,4154704,2017.0,2021.0,1958.0,PRIVATE,18,Willowdale,11 CHURCHILL AVE,3,17,2021-10-26,80,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,N1824,43.7734165941,-79.4148210265,311641.756,4847942.3
-888023,4154717,2017.0,2021.0,1970.0,PRIVATE,18,Willowdale,5754 YONGE ST,12,118,2021-10-26,82,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N1822,43.7833043666,-79.4169610775,311468.369,4849040.654
-888024,4154957,2017.0,2021.0,1947.0,PRIVATE,12,Toronto-St. Paul's,113 VAUGHAN RD,3,12,2021-10-26,68,Evaluation needs to be conducted in 2 years,13,4.0,4.0,4.0,3.0,,3.0,,4.0,,,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,,,S1229,43.684381110699995,-79.4210952142,311145.925,4838050.37
-888025,4154250,2017.0,2021.0,1962.0,PRIVATE,7,Humber River-Black Creek,137 LINDYLOU RD,7,114,2021-10-25,81,Evaluation needs to be conducted in 2 years,17,4.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0727,43.7488905549,-79.5504144221,300694.74600000004,4845165.695
-888026,4154491,2017.0,2021.0,1962.0,PRIVATE,8,Eglinton-Lawrence,435 GLEN PARK AVE,4,42,2021-10-25,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,3.0,4.0,,3.0,3.0,,4.0,4.0,5.0,3.0,5.0,4.0,4.0,4.0,4.0,,N0826,43.7077057177,-79.4544291704,308457.083,4840639.629
-888027,4154490,2017.0,2021.0,1962.0,PRIVATE,8,Eglinton-Lawrence,437 GLEN PARK AVE,4,43,2021-10-25,88,Evaluation needs to be conducted in 3 years,16,4.0,4.0,5.0,5.0,5.0,5.0,,3.0,,,4.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,,N0826,43.70751376729999,-79.4552760493,308388.845,4840618.272
-888028,4156631,2017.0,2021.0,1970.0,PRIVATE,19,Beaches-East York,75 HALSEY AVE,11,139,2021-10-25,83,Evaluation needs to be conducted in 2 years,20,4.0,3.0,5.0,5.0,4.0,4.0,5.0,5.0,5.0,4.0,3.0,4.0,5.0,4.0,4.0,3.0,5.0,4.0,3.0,4.0,S1927,43.6991544673,-79.2978100309,321081.471,4839708.388
-888029,4154813,2017.0,2021.0,1967.0,PRIVATE,17,Don Valley North,110 PARKWAY FOREST DR,17,216,2021-10-25,81,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,5.0,1.0,4.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,N1730,43.774135898900006,-79.3429451779,317427.784,4848030.635
-888030,4451371,2018.0,2021.0,2017.0,PRIVATE,17,Don Valley North,123 PARKWAY FOREST DR,20,188,2021-10-25,92,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,,5.0,4.0,4.0,5.0,,5.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,5.0,5.0,N1730,,,317528.543,4848086.948
-888031,4153870,2017.0,2021.0,1959.0,PRIVATE,15,Don Valley West,56 RANLEIGH AVE,4,74,2021-10-25,91,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,4.0,5.0,,5.0,5.0,4.0,4.0,5.0,5.0,3.0,5.0,5.0,4.0,4.0,5.0,,N1525,43.7282518882,-79.4012252952,312742.165,4842925.987
-888032,4153866,2017.0,2021.0,1941.0,PRIVATE,15,Don Valley West,2 DU MAURIER BLVD,4,28,2021-10-25,88,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,5.0,4.0,5.0,5.0,,4.0,4.0,,N1525,43.7259246541,-79.4020447269,312676.45399999997,4842667.366
-888033,4153864,2017.0,2021.0,1941.0,PRIVATE,15,Don Valley West,3 DU MAURIER BLVD,4,37,2021-10-25,89,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,3.0,5.0,4.0,5.0,4.0,,5.0,,,N1525,43.7256008055,-79.4018955473,312688.515,4842631.402
-888034,4153834,2017.0,2021.0,1967.0,PRIVATE,15,Don Valley West,241 REDPATH AVE,12,46,2021-10-25,61,Evaluation needs to be conducted in 1 year,18,3.0,4.0,4.0,2.0,2.0,4.0,3.0,3.0,3.0,,3.0,3.0,5.0,2.0,3.0,4.0,3.0,1.0,3.0,,N1526,43.71148813,-79.393866958,313337.085,4841065.338
-888035,4153865,2017.0,2021.0,1941.0,PRIVATE,15,Don Valley West,5 DU MAURIER BLVD,4,41,2021-10-25,87,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,5.0,,5.0,3.0,,N1525,43.725849397,-79.401345968,312732.762,4842659.072
-888036,4154081,2017.0,2021.0,1968.0,PRIVATE,19,Beaches-East York,1501 WOODBINE AVE,20,304,2021-10-25,78,Evaluation needs to be conducted in 2 years,19,3.0,3.0,5.0,4.0,4.0,5.0,5.0,5.0,3.0,3.0,3.0,4.0,4.0,3.0,4.0,4.0,5.0,4.0,3.0,,S1926,43.6999168963,-79.3180366606,319450.968,4839789.37
-888037,4153353,2017.0,2021.0,1956.0,PRIVATE,12,Toronto-St. Paul's,55 HENDRICK AVE,3,29,2021-10-25,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,3.0,4.0,3.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,3.0,,S1234,43.679816139399996,-79.4306015887,310379.87100000004,4837542.546
-888038,4155021,2017.0,2021.0,1971.0,PRIVATE,12,Toronto-St. Paul's,300 WINNETT AVE,4,35,2021-10-24,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,2.0,,5.0,,,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,S1223,43.691627521,-79.434491531,310065.019,4838855.446
-888039,4156287,2017.0,2021.0,1930.0,PRIVATE,12,Toronto-St. Paul's,2 CONNAUGHT CRCL,3,15,2021-10-24,73,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,3.0,3.0,3.0,,4.0,,,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,S1229,43.6887249387,-79.42557923300001,310769.358,4838520.745
-888040,4155448,2017.0,2021.0,1965.0,PRIVATE,1,Etobicoke North,20 SANAGAN RD,5,86,2021-10-23,62,Evaluation needs to be conducted in 1 year,19,4.0,2.0,5.0,2.0,2.0,4.0,2.0,3.0,4.0,3.0,3.0,3.0,5.0,3.0,4.0,2.0,3.0,3.0,2.0,,W0124,43.738497055799996,-79.5771085604,298573.456,4844062.39
-888041,4154296,2017.0,2021.0,1960.0,PRIVATE,5,York South-Weston,42 GULLIVER RD,7,60,2021-10-23,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,,W0529,43.6991175978,-79.4785706748,306511.73600000003,4839684.778
-888042,4155154,2017.0,2021.0,1957.0,PRIVATE,5,York South-Weston,2263 WESTON RD,4,34,2021-10-22,84,Evaluation needs to be conducted in 2 years,17,5.0,4.0,5.0,4.0,4.0,3.0,,4.0,5.0,4.0,4.0,4.0,5.0,4.0,3.0,4.0,,5.0,4.0,,W0524,43.7048289088,-79.5282351349,302508.86699999997,4840319.597
-888043,4155166,2018.0,2021.0,1961.0,PRIVATE,5,York South-Weston,2278 WESTON RD,4,33,2021-10-22,89,Evaluation needs to be conducted in 3 years,15,5.0,4.0,5.0,3.0,5.0,4.0,,5.0,,,4.0,4.0,5.0,4.0,5.0,5.0,,5.0,4.0,,W0524,43.704711986199996,-79.529254423,302426.713,4840306.64
-888044,4155163,2017.0,2021.0,1963.0,PRIVATE,5,York South-Weston,2336 WESTON RD,10,69,2021-10-22,89,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,3.0,5.0,4.0,5.0,4.0,5.0,5.0,5.0,5.0,4.0,,W0524,43.705579903,-79.53098482600001,302287.028,4840404.065
-888045,4155162,2018.0,2021.0,1968.0,PRIVATE,5,York South-Weston,2360 WESTON RD,6,52,2021-10-22,93,Evaluation needs to be conducted in 3 years,17,4.0,4.0,5.0,4.0,5.0,5.0,,5.0,5.0,,5.0,5.0,5.0,4.0,4.0,5.0,5.0,5.0,4.0,,W0524,43.7058930244,-79.5316964663,302229.95399999997,4840437.92
-888046,4153029,2017.0,2021.0,1962.0,PRIVATE,4,Parkdale-High Park,200 JAMESON AVE,12,100,2021-10-22,92,Evaluation needs to be conducted in 3 years,19,4.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,5.0,,4.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,S0436,43.639820653,-79.4374576953,309830.477,4833098.817
-888047,4155589,2017.0,2021.0,1971.0,TCHC,4,Parkdale-High Park,245 DUNN AVE,20,384,2021-10-22,71,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,2.0,4.0,4.0,2.0,3.0,3.0,4.0,3.0,5.0,3.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,S0436,43.640216059,-79.433778346,310127.038,4833143.912
-888048,4154249,2017.0,2021.0,1966.0,PRIVATE,7,Humber River-Black Creek,10 JAYZEL DR,7,90,2021-10-22,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,3.0,,4.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,W0727,43.74934036609999,-79.5494302616,300803.693,4845265.279
-888049,4153401,2017.0,2021.0,1979.0,TCHC,10,Spadina-Fort York,168 JOHN ST,7,180,2021-10-22,71,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,,3.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,4.0,,S1024,43.650240258500006,-79.39150337390001,313520.724,4834252.341
-888050,4155992,2017.0,2021.0,1972.0,PRIVATE,5,York South-Weston,2450 WESTON RD,27,214,2021-10-22,77,Evaluation needs to be conducted in 2 years,20,3.0,4.0,5.0,2.0,3.0,4.0,4.0,4.0,4.0,3.0,3.0,5.0,5.0,5.0,4.0,3.0,5.0,5.0,3.0,3.0,W0521,43.7075252004,-79.5347078156,301987.342,4840619.345
-888051,4153402,2017.0,2021.0,1991.0,TCHC,10,Spadina-Fort York,22 MC CAUL ST,11,139,2021-10-21,77,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,5.0,,4.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,3.0,,S1024,43.651220216400006,-79.3904825858,313618.859,4834369.14
-888052,4155478,2017.0,2021.0,1967.0,PRIVATE,3,Etobicoke-Lakeshore,2335 LAKE SHORE BLVD W,8,132,2021-10-21,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,W0336,43.616601956400004,-79.4868558725,305845.225,4830517.654
-888053,4153734,2017.0,2021.0,1969.0,PRIVATE,11,University-Rosedale,10 LAMPORT AVE,4,36,2021-10-21,89,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,5.0,3.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,5.0,4.0,5.0,,S1131,43.6788601061,-79.3775615187,314656.669,4837441.278
-888054,4153922,2018.0,2021.0,1929.0,PRIVATE,12,Toronto-St. Paul's,57 LAWTON BLVD,4,12,2021-10-21,66,Evaluation needs to be conducted in 2 years,14,3.0,2.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,4.0,3.0,4.0,,4.0,,,S1232,43.691956596000004,-79.39570523,313191.661,4838895.195
-888055,4154710,2017.0,2021.0,1959.0,PRIVATE,18,Willowdale,292 FINCH AVE W,4,39,2021-10-21,86,Evaluation needs to be conducted in 3 years,17,4.0,4.0,5.0,4.0,5.0,4.0,,4.0,5.0,,4.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,,N1822,43.7746707581,-79.44071358560001,309557.229,4848079.829
-888056,4154711,2020.0,2021.0,1962.0,PRIVATE,18,Willowdale,296 FINCH AVE W,4,30,2021-10-21,81,Evaluation needs to be conducted in 2 years,18,5.0,4.0,4.0,4.0,3.0,4.0,,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N1822,43.7745588068,-79.4412316023,309515.538,4848067.363
-888057,4154712,,2021.0,,PRIVATE,18,Willowdale,300 FINCH AVE W,4,30,2021-10-21,84,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,,N1822,43.7744429688,-79.4417362415,309474.924,4848054.466
-888058,4154447,2017.0,2021.0,1959.0,PRIVATE,6,York Centre,25 SEELEY DR,4,71,2021-10-21,87,Evaluation needs to be conducted in 3 years,18,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,4.0,,N0627,43.741511337,-79.493163994,305312.55100000004,4844399.414
-888059,4154446,2017.0,2021.0,1959.0,PRIVATE,6,York Centre,27 SEELEY DR,5,71,2021-10-21,89,Evaluation needs to be conducted in 3 years,18,4.0,4.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,,4.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,4.0,,N0627,43.7411213027,-79.4918224235,305443.231,4844350.972
-888060,4156020,2017.0,2021.0,1960.0,PRIVATE,16,Don Valley East,11 ROCHEFORT DR,3,64,2021-10-21,72,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,,4.0,4.0,5.0,3.0,3.0,3.0,4.0,4.0,2.0,,N1630,43.718077388000005,-79.335977623,317970.536,4841814.969
-888061,4153674,2017.0,2021.0,1995.0,SOCIAL HOUSING,19,Beaches-East York,123 COXWELL AVE,3,13,2021-10-21,89,Evaluation needs to be conducted in 3 years,16,5.0,3.0,5.0,5.0,5.0,5.0,,5.0,,,4.0,5.0,3.0,5.0,3.0,3.0,,5.0,5.0,5.0,S1937,43.6698161288,-79.3176657334,319488.188,4836445.326
-888062,4154243,2017.0,2021.0,2008.0,TCHC,7,Humber River-Black Creek,1900 SHEPPARD AVE W,4,27,2021-10-21,74,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,3.0,,3.0,4.0,5.0,4.0,3.0,4.0,,4.0,4.0,4.0,W0732,43.740025128,-79.509714967,304001.81,4844230.158
-888063,4154304,2017.0,2021.0,1950.0,PRIVATE,5,York South-Weston,2417 KEELE ST,3,12,2021-10-21,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,5.0,3.0,3.0,3.0,,2.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0523,43.7099657266,-79.4779872702,306558.457,4840889.976
-888064,4154354,2017.0,2021.0,1960.0,PRIVATE,5,York South-Weston,2418 KEELE ST,3,11,2021-10-21,60,Evaluation needs to be conducted in 1 year,16,3.0,3.0,5.0,3.0,3.0,3.0,,2.0,,3.0,2.0,2.0,5.0,3.0,3.0,3.0,,3.0,2.0,,W0526,43.710013521099995,-79.4787756914,306494.919,4840895.271000001
-888065,4154465,2017.0,2021.0,1970.0,TCHC,7,Humber River-Black Creek,3680 KEELE ST,3,238,2021-10-21,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,,4.0,3.0,4.0,3.0,4.0,5.0,3.0,5.0,4.0,4.0,W0731,43.753748768,-79.48953565,305627.036,4845754.8
-888066,4155182,2017.0,2021.0,1970.0,PRIVATE,5,York South-Weston,797 JANE ST,12,93,2021-10-21,88,Evaluation needs to be conducted in 3 years,19,4.0,4.0,5.0,3.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,,W0539,43.6740732037,-79.4944079231,305235.286,4836902.29
-888067,4155197,2017.0,2021.0,1973.0,PRIVATE,5,York South-Weston,890 JANE ST,15,146,2021-10-21,91,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,4.0,4.0,5.0,,4.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,3.0,5.0,4.0,,W0534,43.6765889645,-79.49634895770001,305078.753,4837181.778
-888068,4155198,2017.0,2021.0,1960.0,PRIVATE,5,York South-Weston,898 JANE ST,8,63,2021-10-21,91,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,4.0,4.0,5.0,4.0,5.0,5.0,,4.0,5.0,5.0,4.0,4.0,5.0,5.0,5.0,4.0,,W0534,43.6776538886,-79.49672691939999,305048.27,4837300.091
-888069,4155199,2017.0,2021.0,1968.0,PRIVATE,5,York South-Weston,900 JANE ST,5,40,2021-10-21,88,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,4.0,4.0,5.0,,4.0,4.0,,4.0,5.0,5.0,4.0,4.0,5.0,4.0,5.0,3.0,,W0534,43.6782330421,-79.4969313119,305031.787,4837364.433
-888070,4154165,2017.0,2021.0,1964.0,PRIVATE,15,Don Valley West,44 THORNCLIFFE PARK DR,6,90,2021-10-21,74,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,3.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,5.0,3.0,2.0,2.0,4.0,4.0,5.0,,N1533,43.702592381,-79.342924935,317444.14,4840083.458000001
-888071,4154164,2017.0,2021.0,1960.0,PRIVATE,15,Don Valley West,50 THORNCLIFFE PARK DR,6,57,2021-10-21,88,Evaluation needs to be conducted in 3 years,18,3.0,5.0,5.0,4.0,4.0,5.0,4.0,5.0,5.0,,4.0,4.0,5.0,4.0,3.0,5.0,4.0,5.0,5.0,,N1533,43.703361048999994,-79.342351105,317490.226,4840168.943
-888072,4153334,2017.0,2021.0,1993.0,SOCIAL HOUSING,12,Toronto-St. Paul's,339 ALBANY AVE,4,42,2021-10-21,83,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,S1236,43.6754298022,-79.4139451731,311723.405,4837056.473
-888073,4154042,2017.0,2021.0,1959.0,PRIVATE,19,Beaches-East York,508 DAWES RD,4,66,2021-10-21,66,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,3.0,2.0,3.0,,3.0,3.0,,3.0,3.0,5.0,4.0,2.0,3.0,4.0,4.0,3.0,,S1927,43.704145763,-79.298173276,321151.291,4840256.044
-888074,4155216,2017.0,2021.0,1962.0,PRIVATE,3,Etobicoke-Lakeshore,765 BROWNS LINE,5,24,2021-10-21,84,Evaluation needs to be conducted in 2 years,16,5.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,,,W0331,43.6083356867,-79.5473887151,300958.963,4829600.237
-888075,4152900,2017.0,2021.0,1955.0,PRIVATE,4,Parkdale-High Park,101 COE HILL DR,3,47,2021-10-21,73,Evaluation needs to be conducted in 2 years,15,4.0,4.0,3.0,3.0,2.0,3.0,,4.0,,,3.0,3.0,5.0,5.0,4.0,4.0,,4.0,4.0,,S0430,43.6418182703,-79.4734954381,306922.776,4833319.267
-888076,4156620,2017.0,2021.0,1950.0,PRIVATE,16,Don Valley East,1 WINGREEN CRT,3,11,2021-10-21,67,Evaluation needs to be conducted in 2 years,17,3.0,4.0,3.0,4.0,3.0,4.0,,4.0,,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,,N1624,43.7388622795,-79.3416192822,,
-888077,4156619,2017.0,2021.0,1965.0,PRIVATE,16,Don Valley East,2 WINGREEN CRT,3,11,2021-10-21,74,Evaluation needs to be conducted in 2 years,17,4.0,4.0,3.0,4.0,4.0,4.0,,4.0,,3.0,4.0,4.0,5.0,4.0,4.0,3.0,3.0,3.0,3.0,,N1624,43.73952173520001,-79.342024827,,
-888078,4285160,2018.0,2021.0,1950.0,PRIVATE,16,Don Valley East,3 WINGREEN CRT,3,11,2021-10-21,69,Evaluation needs to be conducted in 2 years,17,3.0,4.0,3.0,3.0,3.0,4.0,,4.0,,3.0,4.0,3.0,5.0,4.0,3.0,3.0,3.0,4.0,3.0,,N1624,43.7389485514,-79.3418652477,,
-888079,4156613,2017.0,2021.0,1965.0,PRIVATE,16,Don Valley East,8 WINGREEN CRT,3,11,2021-10-21,71,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,4.0,,4.0,,4.0,4.0,,4.0,3.0,5.0,4.0,3.0,2.0,3.0,3.0,3.0,,N1624,43.739178679,-79.3433554999,,
-888080,4154448,2017.0,2021.0,1959.0,PRIVATE,6,York Centre,18 SEELEY DR,5,99,2021-10-21,88,Evaluation needs to be conducted in 3 years,17,4.0,4.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,,4.0,5.0,5.0,4.0,5.0,5.0,,5.0,3.0,,N0627,43.74138175,-79.49430188310001,305243.523,4844379.888
-888081,4154449,2017.0,2021.0,1959.0,PRIVATE,6,York Centre,24 SEELEY DR,4,100,2021-10-21,88,Evaluation needs to be conducted in 3 years,17,4.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,5.0,5.0,4.0,5.0,5.0,,5.0,4.0,,N0627,43.7406632771,-79.4927548873,305368.127,4844300.0819999995
-888082,4154929,2017.0,2021.0,1960.0,PRIVATE,12,Toronto-St. Paul's,450 WALMER RD,15,171,2021-10-20,74,Evaluation needs to be conducted in 2 years,19,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1230,43.686218485,-79.413643322,311746.53,4838255.1110000005
-888083,4156043,2017.0,2021.0,1965.0,PRIVATE,16,Don Valley East,275 CASSANDRA BLVD,12,164,2021-10-20,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,,3.0,4.0,5.0,4.0,5.0,3.0,5.0,4.0,3.0,,N1625,43.753301871000005,-79.31465951199999,319753.276,4845811.004
-888084,4155582,2017.0,2021.0,1972.0,TCHC,25,Scarborough-Rouge Park,225 MORNINGSIDE AVE,10,99,2021-10-20,82,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,3.0,,4.0,5.0,5.0,3.0,5.0,5.0,4.0,4.0,4.0,3.0,E2537,43.7671070711,-79.1850076952,330144.859,4847285.775
-888085,4156354,2017.0,2021.0,1965.0,PRIVATE,4,Parkdale-High Park,45 OAKMOUNT RD,15,221,2021-10-20,72,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,3.0,4.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,4.0,4.0,3.0,4.0,3.0,,S0428,43.6564105538,-79.4629896425,307769.685,4834940.698
-888086,4156086,2017.0,2021.0,1965.0,PRIVATE,4,Parkdale-High Park,55 OAKMOUNT RD,16,221,2021-10-20,68,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,2.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,3.0,3.0,S0428,43.656763132100004,-79.4631452755,307757.11100000003,4834979.8610000005
-888087,4153407,2017.0,2021.0,1993.0,TCHC,10,Spadina-Fort York,76 GRANGE AVE,3,11,2021-10-20,76,Evaluation needs to be conducted in 2 years,14,4.0,3.0,3.0,4.0,,4.0,,4.0,,,4.0,5.0,4.0,3.0,4.0,3.0,,4.0,4.0,,S1024,43.652192629,-79.39678805300001,313100.214,4834501.899
-888088,4154434,2017.0,2021.0,1968.0,PRIVATE,6,York Centre,195 EXBURY RD,20,159,2021-10-20,75,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,3.0,3.0,3.0,5.0,4.0,4.0,3.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,,N0627,43.730125607,-79.50977871100001,303996.516,4843130.381
-888089,4155132,2017.0,2021.0,1971.0,PRIVATE,5,York South-Weston,65 EMMETT AVE,24,419,2021-10-20,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,2.0,4.0,4.0,3.0,4.0,5.0,3.0,3.0,4.0,5.0,4.0,4.0,5.0,3.0,5.0,4.0,,W0531,43.6880415754,-79.5040797855,304455.515,4838454.156
-888090,4153749,2017.0,2021.0,1934.0,PRIVATE,12,Toronto-St. Paul's,2 GLEN ELM AVE,6,49,2021-10-20,76,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,,3.0,4.0,5.0,5.0,,4.0,2.0,5.0,3.0,4.0,4.0,,3.0,3.0,,S1233,43.69150698520001,-79.3947793757,313266.618,4838844.38
-888091,4153748,2017.0,2021.0,1960.0,PRIVATE,12,Toronto-St. Paul's,42 GLEN ELM AVE,3,39,2021-10-20,72,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,,2.0,3.0,4.0,5.0,,4.0,2.0,5.0,3.0,4.0,3.0,3.0,4.0,3.0,,S1233,43.691967364300005,-79.3928327445,313423.481,4838895.74
-888092,4153724,2017.0,2021.0,1991.0,TCHC,19,Beaches-East York,2390 GERRARD ST E,4,16,2021-10-20,73,Evaluation needs to be conducted in 2 years,14,3.0,3.0,3.0,5.0,,5.0,,3.0,,,4.0,3.0,5.0,4.0,3.0,3.0,,4.0,3.0,,S1933,43.686322989,-79.29028370399999,321691.453,4838285.303
-888093,4155131,2017.0,2021.0,1968.0,PRIVATE,5,York South-Weston,55 EMMETT AVE,23,267,2021-10-20,81,Evaluation needs to be conducted in 2 years,19,3.0,5.0,5.0,4.0,3.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,3.0,5.0,4.0,,W0531,43.688645209300006,-79.5034322952,304507.717,4838521.209
-888094,4152904,2017.0,2021.0,1920.0,PRIVATE,4,Parkdale-High Park,2407 BLOOR ST W,3,12,2021-10-20,80,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,3.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,5.0,3.0,,S0430,43.64933320229999,-79.4831934689,306140.164,4834153.961
-888095,4154435,2017.0,2021.0,1968.0,PRIVATE,6,York Centre,2415 JANE ST,20,158,2021-10-20,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,3.0,3.0,3.0,5.0,5.0,4.0,3.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,,N0627,43.730739234,-79.5101143614,303969.752,4843197.602
-888096,4154228,2017.0,2021.0,1972.0,PRIVATE,7,Humber River-Black Creek,2740 JANE ST,5,52,2021-10-20,87,Evaluation needs to be conducted in 3 years,18,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,5.0,,5.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,W0729,43.744497339700004,-79.51525333939999,303556.067,4844726.13
-888097,4154238,2017.0,2021.0,1968.0,PRIVATE,7,Humber River-Black Creek,2755 JANE ST,12,118,2021-10-20,77,Evaluation needs to be conducted in 2 years,19,4.0,5.0,4.0,3.0,3.0,3.0,3.0,3.0,5.0,3.0,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,5.0,,W0730,43.7476852259,-79.51463245640001,303606.137,4845080.285
-888098,4154433,2017.0,2021.0,1965.0,PRIVATE,6,York Centre,28 HEATHROW DR,3,11,2021-10-20,98,Evaluation needs to be conducted in 3 years,16,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,,,5.0,5.0,5.0,4.0,5.0,5.0,,5.0,5.0,,N0627,43.7252112669,-79.509276294,304037.158,4842583.484
-888099,4154432,2017.0,2021.0,1965.0,PRIVATE,6,York Centre,32 HEATHROW DR,3,11,2021-10-20,95,Evaluation needs to be conducted in 3 years,16,5.0,5.0,5.0,5.0,5.0,5.0,,4.0,,5.0,4.0,5.0,5.0,4.0,5.0,5.0,,4.0,5.0,,N0627,43.7253655366,-79.5088869667,304068.528,4842600.618
-888100,4153722,2017.0,2021.0,1962.0,TCHC,19,Beaches-East York,828 KINGSTON RD,7,147,2021-10-20,87,Evaluation needs to be conducted in 3 years,19,3.0,3.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,,3.0,5.0,5.0,3.0,5.0,3.0,5.0,4.0,5.0,5.0,S1936,43.6805240722,-79.2921137026,321545.77,4837639.768
-888101,4153897,2017.0,2021.0,1960.0,PRIVATE,12,Toronto-St. Paul's,55 MONTCLAIR AVE,6,54,2021-10-20,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,3.0,3.0,3.0,,S1230,43.687382201999995,-79.413225309,311779.843,4838385.392
-888102,4155178,2017.0,2021.0,1960.0,PRIVATE,5,York South-Weston,220 WOOLNER AVE,9,130,2021-10-20,81,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,3.0,4.0,,3.0,5.0,,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,W0539,43.6723782892,-79.4929488594,305352.953,4836714.002
-888103,4155179,2017.0,2021.0,1960.0,PRIVATE,5,York South-Weston,230 WOOLNER AVE,9,130,2021-10-20,82,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,5.0,,4.0,5.0,5.0,4.0,3.0,5.0,4.0,4.0,3.0,,W0539,43.672250689799995,-79.4935197463,305306.919,4836699.823
-888104,4155950,2018.0,2021.0,1953.0,PRIVATE,19,Beaches-East York,5 STAG HILL DR,4,15,2021-10-20,85,Evaluation needs to be conducted in 2 years,15,4.0,3.0,5.0,5.0,5.0,5.0,,4.0,,,4.0,3.0,5.0,3.0,5.0,5.0,,3.0,5.0,,S1927,43.703301636999996,-79.310988273,319989.443,4840181.688999999
-888105,4154949,2017.0,2021.0,1926.0,PRIVATE,12,Toronto-St. Paul's,1554 BATHURST ST,4,36,2021-10-20,66,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,4.0,3.0,3.0,,3.0,,3.0,3.0,4.0,5.0,3.0,3.0,4.0,,3.0,3.0,,S1229,43.6855675188,-79.4196915676,311258.971,4838182.291
-888106,4154948,2017.0,2021.0,1926.0,PRIVATE,12,Toronto-St. Paul's,1560 BATHURST ST,4,36,2021-10-20,69,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,,3.0,3.0,4.0,5.0,3.0,4.0,3.0,,3.0,3.0,,S1229,43.6857351417,-79.419761989,311253.276,4838200.909
-888107,4154947,2017.0,2021.0,1926.0,PRIVATE,12,Toronto-St. Paul's,1570 BATHURST ST,4,36,2021-10-20,69,Evaluation needs to be conducted in 2 years,14,3.0,3.0,5.0,3.0,4.0,3.0,,3.0,,,3.0,4.0,4.0,3.0,3.0,3.0,,4.0,,,S1229,43.6859949954,-79.4198611438,311245.255,4838229.772
-888108,4152877,2017.0,2021.0,1970.0,PRIVATE,22,Scarborough-Agincourt,20 CARABOB CRT,15,195,2021-10-20,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,,E2229,43.782204738599994,-79.2977983352,321060.001,4848934.904
-888109,4154906,2017.0,2021.0,1966.0,PRIVATE,16,Don Valley East,250 CASSANDRA BLVD,4,234,2021-10-20,71,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,5.0,,4.0,2.0,5.0,4.0,4.0,3.0,3.0,3.0,2.0,,N1625,43.7543911907,-79.3162260546,319583.529,4845841.461
-888110,4156461,2017.0,2021.0,1965.0,PRIVATE,16,Don Valley East,265 CASSANDRA BLVD,12,164,2021-10-20,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,4.0,5.0,4.0,5.0,3.0,5.0,4.0,3.0,,N1625,43.753625037,-79.3156353,319617.966,4845769.7069999995
-888111,4154905,2017.0,2021.0,1969.0,PRIVATE,16,Don Valley East,270 CASSANDRA BLVD,4,83,2021-10-20,74,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,3.0,4.0,3.0,5.0,4.0,,4.0,2.0,5.0,3.0,4.0,4.0,5.0,3.0,4.0,,N1625,43.75472795979999,-79.3146445734,319710.799,4845879.156
-888112,4156252,2017.0,2021.0,1961.0,PRIVATE,25,Scarborough-Rouge Park,205 MORNINGSIDE AVE,5,107,2021-10-20,81,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,3.0,5.0,4.0,,4.0,4.0,3.0,4.0,5.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,E2537,43.765315672,-79.184493788,330160.238,4847096.726
-888113,4152718,2017.0,2021.0,1967.0,PRIVATE,21,Scarborough Centre,1475 BIRCHMOUNT RD,5,28,2021-10-19,89,Evaluation needs to be conducted in 3 years,18,3.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,,5.0,5.0,5.0,5.0,4.0,4.0,5.0,4.0,5.0,,E2128,43.756711080100004,-79.2880430634,321852.38800000004,4846104.6110000005
-888114,4155565,2017.0,2021.0,1968.0,TCHC,20,Scarborough Southwest,3485 ST CLAIR AVE E,9,97,2021-10-19,74,Evaluation needs to be conducted in 2 years,19,3.0,3.0,5.0,3.0,4.0,5.0,3.0,4.0,4.0,,3.0,4.0,3.0,4.0,3.0,3.0,5.0,5.0,2.0,4.0,E2030,43.7145219871,-79.26814890060001,323467.401,4841421.877
-888115,4286259,2017.0,2021.0,1980.0,TCHC,10,Spadina-Fort York,127 ST PATRICK ST,12,54,2021-10-19,80,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,3.0,,S1024,43.653809036999995,-79.38976073,313653.128,4834726.461
-888116,4154955,2017.0,2021.0,1965.0,PRIVATE,12,Toronto-St. Paul's,1500 BATHURST ST,14,119,2021-10-19,76,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,3.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,5.0,3.0,3.0,5.0,S1229,43.684088394899995,-79.4190637545,311309.74100000004,4838018.005
-888117,4153892,2017.0,2021.0,1965.0,PRIVATE,12,Toronto-St. Paul's,1545 BATHURST ST,6,56,2021-10-19,96,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,5.0,5.0,5.0,,4.0,4.0,4.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,,S1230,43.6861472911,-79.4191187193,311305.095,4838246.749
-888118,4154950,2017.0,2021.0,1940.0,PRIVATE,12,Toronto-St. Paul's,1550 BATHURST ST,5,25,2021-10-19,67,Evaluation needs to be conducted in 2 years,14,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,4.0,4.0,3.0,3.0,,4.0,,,S1229,43.685357358999994,-79.41960900800001,311265.649,4838158.948
-888119,4153893,2017.0,2021.0,1954.0,PRIVATE,12,Toronto-St. Paul's,1603 BATHURST ST,6,73,2021-10-19,77,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,3.0,,3.0,4.0,3.0,4.0,4.0,5.0,3.0,3.0,4.0,4.0,4.0,4.0,,S1230,43.689065755,-79.419580207,311267.32899999997,4838571.916999999
-888120,4155564,2017.0,2021.0,1970.0,TCHC,20,Scarborough Southwest,3479 ST CLAIR AVE E,8,94,2021-10-19,84,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,E2030,43.7142950675,-79.2692166242,323381.434,4841396.427
-888121,4155753,2017.0,2021.0,1992.0,PRIVATE,11,University-Rosedale,336 CLINTON ST,3,17,2021-10-19,91,Evaluation needs to be conducted in 3 years,16,5.0,5.0,5.0,4.0,4.0,5.0,,5.0,,,4.0,5.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,,S1133,43.6627487004,-79.4174033542,311445.983,4835647.429
-888122,4152899,2017.0,2021.0,1957.0,PRIVATE,4,Parkdale-High Park,99 COE HILL DR,4,81,2021-10-19,80,Evaluation needs to be conducted in 2 years,17,4.0,4.0,3.0,3.0,4.0,2.0,,4.0,5.0,,4.0,5.0,5.0,4.0,5.0,4.0,3.0,4.0,5.0,,S0430,43.6416349795,-79.47294432,306967.248,4833298.916
-888123,4154441,2017.0,2021.0,1954.0,PRIVATE,6,York Centre,2954 KEELE ST,3,12,2021-10-19,78,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,3.0,4.0,3.0,,4.0,,4.0,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,N0627,43.735338064,-79.484558662,306028.136,4843709.531
-888124,4152870,2017.0,2021.0,1968.0,PRIVATE,22,Scarborough-Agincourt,3735 SHEPPARD AVE E,4,52,2021-10-19,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,4.0,,3.0,3.0,,E2232,43.7810845583,-79.2961863382,321190.058,4848810.773
-888125,4153743,2017.0,2021.0,1969.0,PRIVATE,11,University-Rosedale,7 JACKES AVE,28,267,2021-10-19,86,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,3.0,5.0,3.0,4.0,4.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,3.0,5.0,S1121,43.684672948999996,-79.391651748,313519.467,4838086.41
-888126,4154411,2017.0,2021.0,1962.0,PRIVATE,6,York Centre,2788 KEELE ST,4,41,2021-10-19,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,5.0,5.0,4.0,4.0,3.0,3.0,4.0,3.0,,N0627,43.728314195900005,-79.4827840355,306171.49100000004,4842928.283
-888127,4154417,2017.0,2021.0,1950.0,PRIVATE,6,York Centre,2808 KEELE ST,4,54,2021-10-19,86,Evaluation needs to be conducted in 3 years,18,4.0,4.0,5.0,5.0,4.0,4.0,,4.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0627,43.7290630749,-79.4829377791,306159.092,4843011.481000001
-888128,4154437,,2021.0,1954.0,PRIVATE,6,York Centre,2994 KEELE ST,4,12,2021-10-19,65,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,4.0,3.0,,4.0,3.0,,N0627,43.736711483,-79.48501293,305991.518,4843862.101
-888129,4154444,2017.0,2021.0,1963.0,PRIVATE,6,York Centre,3250 KEELE ST,4,59,2021-10-19,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,3.0,3.0,,4.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,N0627,43.7419180472,-79.4861318994,305901.567,4844439.544
-888130,4264078,2017.0,2021.0,1970.0,PRIVATE,19,Beaches-East York,6 KINGSTON RD,3,16,2021-10-19,80,Evaluation needs to be conducted in 2 years,15,5.0,3.0,5.0,5.0,4.0,3.0,,3.0,,,4.0,5.0,5.0,3.0,4.0,4.0,,3.0,4.0,,S1937,43.667917593999995,-79.31255405,319902.465,4836237.652
-888131,4154421,2017.0,2021.0,1955.0,PRIVATE,6,York Centre,2866 KEELE ST,3,11,2021-10-19,80,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,,4.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,N0627,43.732336324799995,-79.4838831599,306082.872,4843375.108
-888132,4154145,2017.0,2021.0,1960.0,PRIVATE,15,Don Valley West,2 MILEPOST PL,6,77,2021-10-19,88,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,4.0,4.0,5.0,,5.0,5.0,,4.0,5.0,5.0,4.0,4.0,3.0,4.0,5.0,3.0,,N1533,43.7029007633,-79.3484372243,317000.05600000004,4840115.933
-888133,4154147,2017.0,2021.0,1955.0,PRIVATE,15,Don Valley West,6 MILEPOST PL,6,82,2021-10-19,84,Evaluation needs to be conducted in 2 years,18,3.0,5.0,5.0,3.0,4.0,5.0,,5.0,3.0,5.0,3.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,3.0,,N1533,43.702214085,-79.34780065,317051.503,4840039.741
-888134,4154148,2017.0,2021.0,1960.0,PRIVATE,15,Don Valley West,8 MILEPOST PL,6,76,2021-10-19,85,Evaluation needs to be conducted in 2 years,17,4.0,5.0,5.0,4.0,4.0,5.0,,4.0,4.0,,3.0,4.0,5.0,4.0,5.0,3.0,5.0,4.0,4.0,,N1533,43.7025432153,-79.34725427949999,317095.469,4840076.383
-888135,4154011,2017.0,2021.0,1952.0,PRIVATE,8,Eglinton-Lawrence,118 MONTGOMERY AVE,3,109,2021-10-19,88,Evaluation needs to be conducted in 3 years,15,5.0,5.0,5.0,4.0,,3.0,,4.0,,5.0,4.0,3.0,5.0,4.0,5.0,5.0,,5.0,4.0,,N0833,43.709488115,-79.40261900899999,312632.053,4840842.279
-888136,4233307,2017.0,2021.0,1986.0,SOCIAL HOUSING,12,Toronto-St. Paul's,31 TICHESTER RD,15,174,2021-10-19,86,Evaluation needs to be conducted in 3 years,20,5.0,4.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,S1230,43.6853017026,-79.418858111,311326.19399999996,4838152.823
-888137,4156229,2017.0,2021.0,1965.0,PRIVATE,11,University-Rosedale,30 HILLSBORO AVE,24,196,2021-10-19,86,Evaluation needs to be conducted in 3 years,20,4.0,4.0,5.0,5.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,S1128,43.675673246,-79.39285787600001,313423.49600000004,4837086.446
-888138,4250596,2017.0,2021.0,1938.0,PRIVATE,12,Toronto-St. Paul's,18 TICHESTER RD,4,32,2021-10-19,69,Evaluation needs to be conducted in 2 years,14,4.0,3.0,4.0,3.0,3.0,4.0,,4.0,,,4.0,3.0,5.0,2.0,3.0,4.0,,2.0,,,S1230,43.685962783,-79.41794405899999,311399.553,4838227.295
-888139,4154069,2017.0,2021.0,1960.0,PRIVATE,19,Beaches-East York,970 O'CONNOR DR,6,56,2021-10-19,84,Evaluation needs to be conducted in 2 years,19,5.0,3.0,5.0,5.0,4.0,3.0,4.0,5.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,,S1921,43.7085449111,-79.3110644083,320010.786,4840749.181
-888140,4154008,2017.0,2021.0,1968.0,PRIVATE,8,Eglinton-Lawrence,30 EDITH DR,13,172,2021-10-19,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,4.0,3.0,3.0,4.0,4.0,,4.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,3.0,,N0833,43.7065465762,-79.4033898366,312570.56899999996,4840514.447
-888141,4154457,2017.0,2021.0,1968.0,PRIVATE,6,York Centre,1450 SHEPPARD AVE W,7,181,2021-10-18,75,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,,N0625,43.7448396549,-79.48975794430001,305609.483,4844764.076
-888142,4154445,2017.0,2021.0,1960.0,PRIVATE,6,York Centre,1385 SHEPPARD AVE W,4,40,2021-10-18,73,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,3.0,3.0,3.0,,4.0,5.0,3.0,3.0,4.0,5.0,3.0,4.0,3.0,,4.0,3.0,,N0627,43.7442254108,-79.4874558876,305823.196,4844735.738
-888143,4153713,2017.0,2021.0,1954.0,TCHC,19,Beaches-East York,530 KINGSTON RD,3,90,2021-10-18,81,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,4.0,3.0,5.0,4.0,5.0,4.0,,3.0,3.0,5.0,4.0,3.0,5.0,5.0,4.0,4.0,,S1935,43.678265378999996,-79.301899491,320757.097,4837387.866
-888144,4261715,2017.0,2021.0,1945.0,PRIVATE,18,Willowdale,6 OAKBURN CRES,3,11,2021-10-18,86,Evaluation needs to be conducted in 3 years,16,4.0,5.0,5.0,4.0,4.0,4.0,,5.0,,4.0,4.0,5.0,5.0,4.0,4.0,4.0,,4.0,4.0,,N1828,43.75869476,-79.404771805,312452.32899999997,4846308.568
-888145,4156664,2017.0,2021.0,1972.0,TCHC,24,Scarborough-Guildwood,4301 KINGSTON RD,20,419,2021-10-18,72,Evaluation needs to be conducted in 2 years,19,3.0,4.0,3.0,3.0,3.0,4.0,2.0,4.0,4.0,,1.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,E2432,43.7627363291,-79.1928326244,329516.674,4846797.833000001
-888146,4154407,2017.0,2021.0,1970.0,PRIVATE,6,York Centre,1154 WILSON AVE,15,229,2021-10-18,79,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,,4.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,4.0,N0627,43.7264666233,-79.4864218597,305878.438,4842722.978
-888147,4261712,2017.0,2021.0,1945.0,PRIVATE,18,Willowdale,2 OAKBURN CRES,3,11,2021-10-18,86,Evaluation needs to be conducted in 3 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,5.0,,4.0,4.0,5.0,5.0,4.0,4.0,5.0,,4.0,4.0,,N1828,43.758631647,-79.405405385,312377.294,4846310.018
-888148,4261713,2017.0,2021.0,1945.0,PRIVATE,18,Willowdale,4 OAKBURN CRES,3,11,2021-10-18,84,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,5.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,N1828,43.758599533,-79.405110246,312421.145,4846296.211
-888149,4261716,2017.0,2021.0,1945.0,PRIVATE,18,Willowdale,8 OAKBURN CRES,3,11,2021-10-18,86,Evaluation needs to be conducted in 3 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,5.0,,4.0,4.0,5.0,5.0,4.0,4.0,5.0,,4.0,4.0,,N1828,43.758770542,-79.40441187100001,312481.303,4846317.021000001
-888150,4261717,2017.0,2021.0,1945.0,PRIVATE,18,Willowdale,10 OAKBURN CRES,3,11,2021-10-18,89,Evaluation needs to be conducted in 3 years,16,4.0,4.0,5.0,4.0,5.0,4.0,,4.0,,5.0,4.0,5.0,5.0,4.0,5.0,4.0,,4.0,5.0,,N1828,43.758838149,-79.404040398,312530.397,4846334.063
-888151,4261719,2017.0,2021.0,1945.0,PRIVATE,18,Willowdale,12 OAKBURN CRES,3,11,2021-10-18,86,Evaluation needs to be conducted in 3 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,4.0,4.0,5.0,5.0,5.0,4.0,5.0,,4.0,4.0,,N1828,43.758987273,-79.403808031,312533.428,4846393.567
-888152,4255628,2017.0,2021.0,2007.0,PRIVATE,11,University-Rosedale,50 SPADINA RD,8,55,2021-10-18,94,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,5.0,,4.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,5.0,5.0,S1126,43.669438916000004,-79.405207226,312424.26300000004,4836380.481000001
-888153,4155901,2017.0,2021.0,2009.0,PRIVATE,11,University-Rosedale,88 SPADINA RD,5,91,2021-10-18,93,Evaluation needs to be conducted in 3 years,19,4.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,3.0,,4.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,S1126,43.6713286257,-79.4059886659,312365.468,4836601.532
-888154,4167462,2017.0,2021.0,1969.0,PRIVATE,11,University-Rosedale,100 SPADINA RD,23,216,2021-10-18,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,3.0,3.0,3.0,4.0,,3.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,5.0,4.0,S1126,43.671869216000005,-79.406368935,312344.86,4836670.072
-888155,4154972,2017.0,2021.0,1930.0,PRIVATE,12,Toronto-St. Paul's,210 WYCHWOOD AVE,4,40,2021-10-18,71,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,3.0,4.0,3.0,,3.0,,,4.0,4.0,4.0,3.0,4.0,3.0,,3.0,3.0,,S1229,43.68442968310001,-79.4244100118,310882.965,4838047.6
-888156,4233328,2017.0,2021.0,1926.0,PRIVATE,11,University-Rosedale,8 ST THOMAS ST,4,16,2021-10-18,85,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,4.0,,5.0,,3.0,4.0,5.0,5.0,5.0,4.0,4.0,,4.0,,,S1136,43.6684272158,-79.3909472151,313578.849,4836280.711
-888157,4156101,2019.0,2021.0,1930.0,PRIVATE,12,Toronto-St. Paul's,143 ARLINGTON AVE,4,28,2021-10-18,74,Evaluation needs to be conducted in 2 years,14,3.0,4.0,4.0,4.0,4.0,3.0,,5.0,,,3.0,3.0,5.0,3.0,4.0,3.0,,4.0,,,S1223,43.681869047,-79.4287988671,310515.543,4837773.8319999995
-888158,4156623,2019.0,2021.0,1930.0,PRIVATE,12,Toronto-St. Paul's,145 ARLINGTON AVE,4,32,2021-10-18,71,Evaluation needs to be conducted in 2 years,14,3.0,4.0,4.0,3.0,4.0,3.0,,5.0,,,3.0,3.0,5.0,3.0,4.0,3.0,,3.0,,,S1223,43.6820017447,-79.4288451992,,
-888159,4154016,2017.0,2021.0,1955.0,PRIVATE,8,Eglinton-Lawrence,132 CASTLEFIELD AVE,4,26,2021-10-18,83,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,3.0,4.0,4.0,,3.0,,,4.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,,N0833,43.7107762101,-79.4059080075,312367.109,4840984.1110000005
-888160,4242011,2017.0,2021.0,1963.0,PRIVATE,11,University-Rosedale,131 BLOOR ST W,14,157,2021-10-18,89,Evaluation needs to be conducted in 3 years,19,4.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,,5.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,S1136,43.668762012799995,-79.3923975104,313461.835,4836317.74
-888161,4154406,2017.0,2021.0,1968.0,PRIVATE,6,York Centre,1330 WILSON AVE,4,27,2021-10-18,76,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,3.0,4.0,,3.0,4.0,,4.0,3.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,N0627,43.7237259106,-79.49648730220001,305067.523,4842418.431
-888162,4156449,2017.0,2021.0,1920.0,PRIVATE,11,University-Rosedale,245 C HOWLAND AVE,3,25,2021-10-18,77,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,5.0,4.0,,3.0,,,4.0,4.0,5.0,3.0,3.0,4.0,,3.0,4.0,,S1126,43.672928934,-79.411230102,311942.359,4836779.813999999
-888163,4153714,2017.0,2021.0,1992.0,TCHC,19,Beaches-East York,520 KINGSTON RD,5,108,2021-10-18,94,Evaluation needs to be conducted in 3 years,19,5.0,3.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,,5.0,4.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,S1935,43.67824727,-79.302446163,320713.024,4837385.748
-888164,4153986,2017.0,2021.0,1958.0,PRIVATE,8,Eglinton-Lawrence,640 ROSELAWN AVE,8,138,2021-10-17,79,Evaluation needs to be conducted in 2 years,18,5.0,5.0,5.0,4.0,4.0,3.0,3.0,3.0,4.0,,4.0,5.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,,N0833,43.706149857,-79.423624259,310939.623,4840469.61
-888165,4153985,2017.0,2021.0,1965.0,PRIVATE,8,Eglinton-Lawrence,630 ROSELAWN AVE,9,104,2021-10-17,77,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N0833,43.706292347,-79.422652894,311017.893,4840485.517
-888166,4155569,2017.0,2021.0,1971.0,TCHC,21,Scarborough Centre,6 GLAMORGAN AVE,12,184,2021-10-16,82,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,E2123,43.7693818631,-79.284775411,322111.87899999996,4847512.968
-888167,4155568,2017.0,2021.0,1971.0,TCHC,21,Scarborough Centre,7 GLAMORGAN AVE,12,196,2021-10-16,82,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2123,43.7677640295,-79.2844534267,322138.266,4847333.299
-888168,4152723,2017.0,2021.0,1984.0,PRIVATE,21,Scarborough Centre,3 GLAMORGAN AVE,10,139,2021-10-16,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,,E2123,43.768435059,-79.28262322399999,322289.892,4847418.925
-888169,4152758,2017.0,2021.0,1965.0,PRIVATE,21,Scarborough Centre,1155 MIDLAND AVE,5,115,2021-10-16,80,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2134,43.7457790355,-79.2618378505,323966.01300000004,4844895.79
-888170,4154298,,2021.0,1962.0,PRIVATE,5,York South-Weston,1619 LAWRENCE AVE W,4,24,2021-10-16,57,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,4.0,4.0,,2.0,3.0,3.0,2.0,3.0,3.0,2.0,3.0,3.0,2.0,2.0,3.0,,W0529,43.705269832,-79.4911827537,305495.106,4840368.12
-888171,4152718,2017.0,2021.0,1967.0,PRIVATE,21,Scarborough Centre,1475 BIRCHMOUNT RD,5,28,2021-10-16,63,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,3.0,1.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,E2128,43.756711080100004,-79.2880430634,321852.38800000004,4846104.6110000005
-888172,4152694,2017.0,2021.0,1960.0,PRIVATE,21,Scarborough Centre,19 ROSEMOUNT DR,7,71,2021-10-16,84,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,5.0,,4.0,4.0,,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2133,43.73259049479999,-79.2744267602,322956.092,4843427.802
-888173,4154873,2017.0,2021.0,1962.0,PRIVATE,16,Don Valley East,11 ECCLESTON DR,4,78,2021-10-15,82,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,,5.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,3.0,,N1628,43.727024237200006,-79.315596986,319640.935,4842801.313
-888174,4155360,2017.0,2021.0,1964.0,PRIVATE,2,Etobicoke Centre,40 DIXINGTON CRES,6,55,2021-10-15,59,Evaluation needs to be conducted in 1 year,19,4.0,4.0,2.0,2.0,3.0,4.0,,3.0,4.0,2.0,2.0,3.0,3.0,2.0,3.0,4.0,4.0,2.0,2.0,3.0,W0223,43.697164457,-79.540156283,301547.37,4839469.485
-888175,4154870,2019.0,2021.0,1958.0,PRIVATE,16,Don Valley East,25 ECCLESTON DR,4,61,2021-10-15,72,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,3.0,4.0,,3.0,4.0,3.0,3.0,3.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,,N1628,43.7272222643,-79.3179806814,319448.845,4842822.893999999
-888176,4152711,2017.0,2021.0,1961.0,PRIVATE,21,Scarborough Centre,875 KENNEDY RD,6,82,2021-10-15,83,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2133,43.739089426999996,-79.270177266,323296.161,4844151.7069999995
-888177,4152712,2017.0,2021.0,1965.0,PRIVATE,21,Scarborough Centre,877 KENNEDY RD,4,32,2021-10-15,83,Evaluation needs to be conducted in 2 years,18,5.0,4.0,4.0,4.0,4.0,4.0,,5.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,,E2133,43.739624156000005,-79.270445694,323274.376,4844211.053
-888178,4152714,2017.0,2021.0,1961.0,PRIVATE,21,Scarborough Centre,893 KENNEDY RD,7,77,2021-10-15,73,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,2.0,,3.0,3.0,4.0,4.0,4.0,5.0,4.0,4.0,3.0,4.0,3.0,3.0,,E2133,43.74039535399999,-79.27079334300001,323246.13800000004,4844296.652
-888179,4154294,2017.0,2021.0,1963.0,PRIVATE,5,York South-Weston,26 GULLIVER RD,6,53,2021-10-15,72,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,3.0,4.0,3.0,5.0,3.0,3.0,3.0,4.0,2.0,3.0,,W0529,43.6993035632,-79.4776846609,306583.149,4839705.452
-888180,4154297,2017.0,2021.0,1960.0,PRIVATE,5,York South-Weston,70 GULLIVER RD,3,19,2021-10-15,82,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,3.0,,3.0,3.0,4.0,4.0,4.0,5.0,4.0,4.0,5.0,5.0,5.0,4.0,,W0529,43.699041127,-79.480211325,306379.23,4839677.21
-888181,4154890,2017.0,2021.0,1960.0,PRIVATE,16,Don Valley East,55 ECCLESTON DR,4,60,2021-10-15,73,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,3.0,3.0,4.0,,3.0,3.0,4.0,3.0,3.0,5.0,4.0,4.0,3.0,5.0,5.0,4.0,,N1628,43.726552797,-79.31980992,319295.23,4842735.2469999995
-888182,4152697,2017.0,2021.0,1960.0,PRIVATE,21,Scarborough Centre,2354 EGLINTON AVE E,5,72,2021-10-15,82,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,5.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,E2133,43.7316750326,-79.2734533673,323034.787,4843326.312
-888183,4152696,2017.0,2021.0,1965.0,PRIVATE,21,Scarborough Centre,2360 EGLINTON AVE E,7,130,2021-10-15,80,Evaluation needs to be conducted in 2 years,17,5.0,4.0,4.0,4.0,4.0,2.0,,5.0,4.0,,3.0,5.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,,E2133,43.731893112,-79.272217382,323118.226,4843364.663
-888184,4154220,2017.0,2021.0,1974.0,PRIVATE,7,Humber River-Black Creek,200 CHALKFARM DR,28,223,2021-10-15,69,Evaluation needs to be conducted in 2 years,20,4.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,5.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,W0734,43.724217100000004,-79.510651122,303926.11,4842474.01
-888185,4327919,2018.0,2021.0,1960.0,PRIVATE,9,Davenport,382 DOVERCOURT RD,3,18,2021-10-15,66,Evaluation needs to be conducted in 2 years,14,3.0,3.0,3.0,3.0,,3.0,,4.0,,,3.0,4.0,4.0,3.0,3.0,4.0,,3.0,3.0,,S0934,43.652044902,-79.4261489832,310741.707,4834457.583000001
-888186,4155282,,2021.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,172 BERRY RD,4,32,2021-10-15,84,Evaluation needs to be conducted in 2 years,17,4.0,5.0,4.0,4.0,4.0,4.0,,4.0,4.0,4.0,5.0,3.0,5.0,4.0,5.0,4.0,4.0,4.0,,,W0327,43.636679641,-79.49240542300001,305388.38800000004,4832756.94
-888187,4152706,2017.0,2021.0,1961.0,PRIVATE,21,Scarborough Centre,819 KENNEDY RD,6,62,2021-10-15,83,Evaluation needs to be conducted in 2 years,18,5.0,4.0,4.0,5.0,4.0,2.0,,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2133,43.7346483486,-79.268437993,323437.893,4843657.7530000005
-888188,4154872,2018.0,2021.0,1960.0,PRIVATE,16,Don Valley East,17 ECCLESTON DR,4,60,2021-10-15,77,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,3.0,4.0,,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,3.0,5.0,3.0,3.0,,N1628,43.7269029771,-79.31605608539999,319603.978,4842787.76
-888189,4155569,2017.0,2021.0,1971.0,TCHC,21,Scarborough Centre,6 GLAMORGAN AVE,12,184,2021-10-14,84,Evaluation needs to be conducted in 2 years,20,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,3.0,3.0,5.0,5.0,4.0,5.0,5.0,5.0,2.0,4.0,E2123,43.7693818631,-79.284775411,322111.87899999996,4847512.968
-888190,4154218,2017.0,2021.0,1985.0,PRIVATE,7,Humber River-Black Creek,25 DALLNER RD,4,71,2021-10-14,76,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,,4.0,,4.0,3.0,,4.0,3.0,5.0,4.0,3.0,4.0,4.0,5.0,3.0,,W0734,43.7215636284,-79.5137264803,303678.542,4842178.326
-888191,4153829,2017.0,2021.0,1964.0,PRIVATE,15,Don Valley West,33 ERSKINE AVE,10,109,2021-10-14,79,Evaluation needs to be conducted in 2 years,17,4.0,5.0,5.0,3.0,4.0,4.0,,4.0,4.0,,3.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N1526,43.711076733999995,-79.397812745,313019.16,4841019.2360000005
-888192,4153830,2017.0,2021.0,1964.0,PRIVATE,15,Don Valley West,55 ERSKINE AVE,16,188,2021-10-14,85,Evaluation needs to be conducted in 2 years,19,4.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,5.0,4.0,4.0,3.0,5.0,3.0,4.0,5.0,4.0,3.0,5.0,,N1526,43.711401488999996,-79.396765679,313103.495,4841055.4180000005
-888193,4155845,2017.0,2021.0,1953.0,PRIVATE,5,York South-Weston,33 FLAMBOROUGH DR,3,43,2021-10-14,65,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,3.0,,W0529,43.7019480754,-79.4775820267,306591.346,4839999.254
-888194,4155978,2017.0,2021.0,1975.0,PRIVATE,25,Scarborough-Rouge Park,47 GENERATION BLVD,3,180,2021-10-14,73,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,2.0,4.0,,4.0,,,3.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,E2530,43.804209057200005,-79.1667368141,331647.273,4851470.1389999995
-888195,4152734,2017.0,2021.0,1967.0,PRIVATE,21,Scarborough Centre,1175 ELLESMERE RD,5,65,2021-10-14,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,5.0,3.0,4.0,4.0,,E2129,43.7676449772,-79.2698659258,323312.731,4847323.217
-888196,4153888,2017.0,2021.0,1963.0,PRIVATE,12,Toronto-St. Paul's,90 WARREN RD,5,79,2021-10-14,74,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,3.0,3.0,4.0,,4.0,4.0,4.0,3.0,3.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,S1231,43.6859314457,-79.4069242127,312288.29,4838223.81
-888197,4154881,2017.0,2021.0,1968.0,PRIVATE,16,Don Valley East,1710 VICTORIA PARK AVE,4,59,2021-10-14,68,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,4.0,,N1628,43.735657495,-79.3078726793,320261.032,4843761.808999999
-888198,4154860,2017.0,2021.0,1960.0,PRIVATE,16,Don Valley East,20 TINDER CRES,4,59,2021-10-14,76,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,4.0,4.0,2.0,,4.0,4.0,3.0,3.0,4.0,5.0,3.0,4.0,4.0,5.0,3.0,4.0,,N1628,43.7269176828,-79.3086521838,320200.464,4842790.734
-888199,4155525,2017.0,2021.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,70 FIFTEENTH ST,3,25,2021-10-14,57,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,3.0,3.0,,2.0,,,3.0,3.0,5.0,2.0,2.0,2.0,,2.0,3.0,,W0335,43.6020354915,-79.5156367545,303522.018,4828899.402
-888200,4154532,,2021.0,1956.0,PRIVATE,8,Eglinton-Lawrence,86 NEPTUNE DR,3,12,2021-10-14,70,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,,,3.0,4.0,5.0,3.0,5.0,4.0,4.0,4.0,2.0,,N0823,43.7325638685,-79.4373956547,309827.80100000004,4843402.16
-888201,4153901,2017.0,2021.0,1927.0,PRIVATE,12,Toronto-St. Paul's,310 LONSDALE RD,4,15,2021-10-14,84,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,5.0,4.0,,S1231,43.689210605,-79.41122191720001,311941.429,4838587.752
-888202,4153908,2017.0,2021.0,1925.0,PRIVATE,12,Toronto-St. Paul's,311 LONSDALE RD,4,14,2021-10-14,84,Evaluation needs to be conducted in 2 years,14,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,5.0,,,S1231,43.688809994799996,-79.41085820159999,311970.793,4838543.273
-888203,4153902,2017.0,2021.0,1927.0,PRIVATE,12,Toronto-St. Paul's,312 LONSDALE RD,4,19,2021-10-14,84,Evaluation needs to be conducted in 2 years,14,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,5.0,,,S1231,43.689184139700004,-79.411404359,311926.722,4838584.795
-888204,4232579,2017.0,2021.0,1975.0,PRIVATE,25,Scarborough-Rouge Park,53 GENERATION BLVD,3,12,2021-10-14,76,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,3.0,3.0,4.0,,4.0,,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2530,43.804700539399995,-79.1654577856,331784.571,4851447.146000001
-888205,4152758,2017.0,2021.0,1965.0,PRIVATE,21,Scarborough Centre,1155 MIDLAND AVE,5,115,2021-10-14,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,,3.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,E2134,43.7457790355,-79.2618378505,323966.01300000004,4844895.79
-888206,4155530,2017.0,2021.0,1992.0,SOCIAL HOUSING,3,Etobicoke-Lakeshore,3078 LAKE SHORE BLVD W,8,55,2021-10-14,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,,3.0,5.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,5.0,W0335,43.599612567799994,-79.5123632574,303793.135,4828621.572
-888207,4155522,2017.0,2021.0,1959.0,PRIVATE,3,Etobicoke-Lakeshore,155 LAKE SHORE DR,5,35,2021-10-14,76,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,4.0,2.0,,3.0,4.0,,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,W0335,43.594648158000005,-79.505643653,304328.42600000004,4828079.602
-888208,4153404,2017.0,2021.0,1923.0,TCHC,10,Spadina-Fort York,11 SULLIVAN ST,3,17,2021-10-14,71,Evaluation needs to be conducted in 2 years,15,4.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,,,4.0,4.0,3.0,4.0,4.0,4.0,,3.0,,,S1024,43.6514274301,-79.3935632279,313370.31899999996,4834391.822
-888209,4155956,2017.0,2021.0,1957.0,PRIVATE,21,Scarborough Centre,2702 LAWRENCE AVE E,7,96,2021-10-14,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,,E2129,43.75259236,-79.26100902600001,324075.951,4845664.645
-888210,4154172,2017.0,2021.0,1960.0,PRIVATE,15,Don Valley West,2 GRANDSTAND PL,6,60,2021-10-14,75,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,,4.0,4.0,5.0,3.0,3.0,4.0,,4.0,3.0,,N1533,43.70389820850001,-79.3462344474,317177.385,4840227.066000001
-888211,4154171,2017.0,2021.0,1962.0,PRIVATE,15,Don Valley West,4 GRANDSTAND PL,6,60,2021-10-14,70,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,4.0,,3.0,2.0,3.0,3.0,4.0,3.0,4.0,3.0,4.0,,N1533,43.704055124899995,-79.3456519574,317224.299,4840244.586
-888212,4154127,2017.0,2021.0,1961.0,PRIVATE,14,Toronto-Danforth,95 GAMBLE AVE,6,94,2021-10-14,84,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,5.0,4.0,5.0,4.0,,3.0,5.0,5.0,5.0,3.0,4.0,4.0,4.0,4.0,,S1421,43.689923631599996,-79.3498848765,316886.00800000003,4838674.022
-888213,4155520,,2021.0,1958.0,PRIVATE,3,Etobicoke-Lakeshore,122 FIFTH ST,3,12,2021-10-14,73,Evaluation needs to be conducted in 2 years,15,4.0,4.0,3.0,4.0,4.0,2.0,,3.0,,,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,3.0,,W0335,43.6004906208,-79.5030314026,304539.618,4828727.682
-888214,4156037,2017.0,2021.0,1960.0,PRIVATE,21,Scarborough Centre,1535 BIRCHMOUNT RD,4,37,2021-10-14,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,3.0,3.0,5.0,5.0,3.0,4.0,4.0,,4.0,3.0,,E2128,43.759947503999996,-79.289253718,321726.239,4846452.346
-888215,4152725,2017.0,2021.0,1974.0,PRIVATE,21,Scarborough Centre,41 ANTRIM CRES,14,192,2021-10-14,86,Evaluation needs to be conducted in 3 years,19,4.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,5.0,,E2123,43.771912238999995,-79.287922032,321852.127,4847784.8889999995
-888216,4153551,2017.0,2021.0,1915.0,PRIVATE,11,University-Rosedale,30 CHARLES ST E,3,21,2021-10-14,79,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,3.0,3.0,,4.0,,4.0,3.0,4.0,4.0,4.0,5.0,4.0,,4.0,,,S1137,43.669198906999995,-79.384815824,314072.94899999996,4836368.069
-888217,4153469,2017.0,2021.0,1980.0,TCHC,11,University-Rosedale,341 BLOOR ST W,18,326,2021-10-14,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,4.0,,4.0,4.0,4.0,S1135,43.6670231538,-79.4007760515,312786.358,4836123.699
-888218,4153890,2017.0,2021.0,1959.0,PRIVATE,12,Toronto-St. Paul's,276 ST CLAIR AVE W,4,49,2021-10-14,77,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,4.0,3.0,4.0,4.0,5.0,4.0,3.0,4.0,3.0,4.0,3.0,,S1231,43.685428165,-79.409063969,312115.572,4838168.659
-888219,4153891,2017.0,2021.0,1960.0,PRIVATE,12,Toronto-St. Paul's,300 ST CLAIR AVE W,5,49,2021-10-14,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,4.0,3.0,4.0,5.0,5.0,3.0,3.0,4.0,4.0,4.0,3.0,,S1231,43.685073908,-79.410731333,311981.184,4838129.155
-888220,4154215,2017.0,2021.0,1964.0,PRIVATE,7,Humber River-Black Creek,1746 WILSON AVE,3,10,2021-10-14,56,Evaluation needs to be conducted in 1 year,17,3.0,2.0,2.0,3.0,3.0,3.0,,3.0,,2.0,3.0,2.0,3.0,3.0,3.0,2.0,4.0,4.0,3.0,,W0734,43.7197813249,-79.5153042212,303551.38399999996,4841980.352
-888221,4154797,2017.0,2021.0,1965.0,PRIVATE,16,Don Valley East,6 WINGREEN CRT,3,11,2021-10-14,71,Evaluation needs to be conducted in 2 years,16,3.0,4.0,3.0,3.0,3.0,4.0,,3.0,,,3.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N1624,43.739250167,-79.3428089774,317446.031,4844155.022
-888222,4153742,2017.0,2021.0,1986.0,PRIVATE,11,University-Rosedale,22 WOODLAWN AVE E,5,25,2021-10-14,85,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,4.0,5.0,3.0,,5.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,3.0,5.0,4.0,4.0,5.0,S1121,43.6845417395,-79.3910501219,313568.256,4838070.946
-888223,4154397,2017.0,2021.0,1960.0,PRIVATE,6,York Centre,1307 WILSON AVE,8,81,2021-10-14,65,Evaluation needs to be conducted in 1 year,19,3.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,2.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0631,43.7228254392,-79.4948470378,305149.24,4842386.885
-888224,4154388,2017.0,2021.0,1958.0,PRIVATE,6,York Centre,1505 WILSON AVE,4,55,2021-10-14,58,Evaluation needs to be conducted in 1 year,17,3.0,3.0,2.0,3.0,2.0,3.0,,2.0,,3.0,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0631,43.7207964113,-79.5055990345,304333.381,4842093.005
-888225,4153977,2017.0,2021.0,1988.0,SOCIAL HOUSING,8,Eglinton-Lawrence,668 ROSELAWN AVE,9,125,2021-10-14,89,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,4.0,5.0,4.0,4.0,5.0,,5.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,5.0,N0833,43.705765956,-79.424733085,310850.299,4840426.886
-888226,4153370,2017.0,2021.0,1960.0,PRIVATE,12,Toronto-St. Paul's,263 RUSSELL HILL RD,7,52,2021-10-14,79,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,4.0,3.0,5.0,,3.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1237,43.685105293999996,-79.40728417300001,312259.105,4838132.946
-888227,4153371,2017.0,2021.0,1960.0,PRIVATE,12,Toronto-St. Paul's,265 RUSSELL HILL RD,8,48,2021-10-14,84,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,5.0,5.0,,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1237,43.68523873,-79.40732490399999,312255.805,4838147.767
-888228,4154794,2019.0,2021.0,1961.0,PRIVATE,16,Don Valley East,4 OVERLAND DR,4,48,2021-10-14,68,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,3.0,4.0,,3.0,3.0,3.0,2.0,3.0,5.0,4.0,3.0,3.0,4.0,3.0,3.0,,N1626,43.7328949656,-79.3478617337,317113.567,4843461.388
-888229,4156181,2017.0,2021.0,1964.0,TCHC,13,Toronto Centre,285 SHUTER ST,15,300,2021-10-14,63,Evaluation needs to be conducted in 1 year,19,3.0,3.0,5.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,4.0,1.0,3.0,3.0,4.0,3.0,4.0,4.0,,S1329,43.65586332,-79.366647156,315513.091,4834942.867
-888230,4153573,2017.0,2021.0,1975.0,TCHC,13,Toronto Centre,251 SHERBOURNE ST,7,200,2021-10-14,66,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,3.0,3.0,3.0,3.0,2.0,4.0,,3.0,4.0,3.0,3.0,2.0,4.0,3.0,4.0,3.0,,S1329,43.659299401000006,-79.3709200965,315195.512,4835268.965
-888231,4156374,2017.0,2021.0,1975.0,TCHC,13,Toronto Centre,257 SHERBOURNE ST,4,102,2021-10-14,66,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,3.0,3.0,3.0,2.0,3.0,4.0,,3.0,4.0,2.0,3.0,3.0,4.0,3.0,4.0,3.0,,S1329,43.6593567184,-79.3711764365,315174.827,4835275.301
-888232,4153828,2017.0,2021.0,1970.0,PRIVATE,15,Don Valley West,15 ERSKINE AVE,16,65,2021-10-14,93,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,4.0,5.0,3.0,4.0,5.0,4.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,,N1526,43.71093654,-79.39847124100001,312966.113,4841003.597
-888233,4156415,2017.0,2021.0,1975.0,PRIVATE,25,Scarborough-Rouge Park,43 GENERATION BLVD,3,12,2021-10-13,72,Evaluation needs to be conducted in 2 years,17,3.0,4.0,4.0,3.0,3.0,4.0,,4.0,3.0,,3.0,3.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,,E2530,43.804310025,-79.1674004939,331569.09,4851436.626
-888234,4155261,2017.0,2021.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,5 CROWN HILL PL,4,37,2021-10-13,83,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,5.0,4.0,,4.0,,5.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,,,W0327,43.638041895600004,-79.4902414702,305571.7,4832899.478
-888235,4232587,2017.0,2021.0,1975.0,PRIVATE,25,Scarborough-Rouge Park,49 GENERATION BLVD,3,12,2021-10-13,79,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2530,43.80460817270001,-79.1661290396,331665.272,4851476.813999999
-888236,4232583,2017.0,2021.0,1975.0,PRIVATE,25,Scarborough-Rouge Park,51 GENERATION BLVD,3,12,2021-10-13,74,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,4.0,3.0,4.0,,4.0,,,3.0,3.0,5.0,3.0,4.0,3.0,4.0,4.0,4.0,,E2530,43.8046874624,-79.16582253989999,331685.17100000003,4851486.325
-888237,4155620,2017.0,2021.0,1970.0,TCHC,7,Humber River-Black Creek,4400 JANE ST,12,164,2021-10-13,71,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,,W0724,43.7652223646,-79.52014173479999,303162.909,4847028.675
-888238,4155540,2017.0,2021.0,1970.0,PRIVATE,3,Etobicoke-Lakeshore,100 TWENTY FIFTH ST,3,18,2021-10-13,80,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,3.0,3.0,4.0,,4.0,4.0,,W0334,43.59601136,-79.523701265,302857.947,4828272.539
-888239,4154783,2017.0,2021.0,1962.0,PRIVATE,16,Don Valley East,1001 LAWRENCE AVE E,7,69,2021-10-13,77,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,5.0,4.0,4.0,3.0,3.0,4.0,,5.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,,N1627,43.737112527,-79.3420220409,317509.87,4843917.656
-888240,4154189,2019.0,2021.0,1939.0,PRIVATE,15,Don Valley West,872 MILLWOOD RD,3,10,2021-10-13,68,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,3.0,2.0,3.0,,3.0,,3.0,4.0,4.0,5.0,3.0,3.0,4.0,,3.0,,,N1531,43.7041064151,-79.3651837906,315650.137,4840247.591
-888241,4154784,2017.0,2021.0,1963.0,PRIVATE,16,Don Valley East,18 THE DONWAY E,7,76,2021-10-13,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,5.0,4.0,3.0,4.0,4.0,3.0,3.0,,N1627,43.7371481492,-79.34125862890001,317571.354,4843921.73
-888242,4152764,2017.0,2021.0,1969.0,PRIVATE,21,Scarborough Centre,50 TRUDELLE ST,7,131,2021-10-13,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,3.0,3.0,4.0,3.0,,E2135,43.740721248,-79.240407141,325693.538,4844340.024
-888243,4155539,2017.0,2021.0,1970.0,PRIVATE,3,Etobicoke-Lakeshore,80 TWENTY FIFTH ST,3,18,2021-10-13,81,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0334,43.595321466,-79.523394934,302898.92,4828146.016
-888244,4152763,2017.0,2021.0,1965.0,PRIVATE,21,Scarborough Centre,370 MCCOWAN RD,15,207,2021-10-13,82,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,4.0,4.0,4.0,5.0,2.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,E2135,43.7399757697,-79.2395009689,325767.041,4844256.48
-888245,4155518,2017.0,2021.0,1958.0,PRIVATE,3,Etobicoke-Lakeshore,67 LAKE SHORE DR,3,18,2021-10-13,76,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,3.0,4.0,2.0,,4.0,,,4.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,W0335,43.5965098168,-79.5007071218,304727.256,4828285.4569999995
-888246,4154274,2017.0,2021.0,2008.0,TCHC,7,Humber River-Black Creek,2350 FINCH AVE W,4,15,2021-10-13,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,W0722,43.752199466,-79.54396680100001,301243.618,4845583.62
-888247,4154184,2017.0,2021.0,1941.0,PRIVATE,15,Don Valley West,1477 BAYVIEW AVE,3,105,2021-10-13,73,Evaluation needs to be conducted in 2 years,16,3.0,4.0,3.0,4.0,3.0,3.0,,2.0,,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N1535,43.7028164419,-79.3727531693,315040.313,4840103.348999999
-888248,4154999,2017.0,2021.0,1950.0,PRIVATE,12,Toronto-St. Paul's,1654 BATHURST ST,5,72,2021-10-13,82,Evaluation needs to be conducted in 2 years,17,3.0,5.0,5.0,4.0,4.0,3.0,,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S1224,43.6945897541,-79.4235472472,310947.238,4839184.355
-888249,4154828,2017.0,2021.0,1967.0,PRIVATE,17,Don Valley North,185 SHAUGHNESSY BLVD,17,180,2021-10-13,83,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,3.0,5.0,N1727,43.7818416283,-79.3541987634,316520.358,4848885.074
-888250,4327922,2018.0,2021.0,1924.0,PRIVATE,9,Davenport,394 DOVERCOURT RD,3,20,2021-10-13,63,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,S0934,43.652361602700005,-79.42623152029999,310735.016,4834492.7639999995
-888251,4154024,2017.0,2021.0,1936.0,PRIVATE,8,Eglinton-Lawrence,14 CHATSWORTH DR,4,41,2021-10-13,79,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,3.0,3.0,5.0,3.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,N0829,43.722344838999994,-79.402568504,312634.457,4842270.577
-888252,4155746,2017.0,2021.0,1968.0,PRIVATE,7,Humber River-Black Creek,11 CATFORD RD,9,218,2021-10-13,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,3.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,,W0731,43.7587124736,-79.49134153979999,305481.82300000003,4846305.27
-888253,4154781,2017.0,2021.0,1959.0,PRIVATE,16,Don Valley East,1065 DON MILLS RD,4,61,2021-10-13,77,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,,N1627,43.7359570079,-79.3424850802,317472.816,4843789.209
-888254,4154782,2017.0,2021.0,1959.0,PRIVATE,16,Don Valley East,1071 DON MILLS RD,4,61,2021-10-13,73,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,,N1627,43.7365519445,-79.3426250129,317461.42,4843855.285
-888255,4152751,2017.0,2021.0,1969.0,PRIVATE,21,Scarborough Centre,1320 DANFORTH RD,4,67,2021-10-13,88,Evaluation needs to be conducted in 3 years,17,5.0,5.0,4.0,5.0,4.0,2.0,,4.0,4.0,,5.0,5.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,,E2135,43.742526167,-79.24582411,325256.61600000004,4844539.193
-888256,4152752,2017.0,2021.0,1967.0,PRIVATE,21,Scarborough Centre,1330 DANFORTH RD,4,48,2021-10-13,91,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,4.0,4.0,2.0,,5.0,4.0,,4.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,,E2135,43.7429249533,-79.24595788,325245.967,4844582.508
-888257,4155145,,2021.0,1954.0,PRIVATE,5,York South-Weston,137 WOODWARD AVE,3,11,2021-10-13,48,Building Audit,16,3.0,2.0,2.0,2.0,2.0,2.0,,2.0,,2.0,2.0,2.0,5.0,3.0,2.0,2.0,,3.0,2.0,,W0525,43.709579516400005,-79.5073998504,304188.144,4840846.9
-888258,4153680,2017.0,2021.0,1959.0,SOCIAL HOUSING,19,Beaches-East York,136 KINGSTON RD,4,94,2021-10-13,79,Evaluation needs to be conducted in 2 years,16,4.0,3.0,5.0,4.0,4.0,3.0,,4.0,,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1937,43.6707253488,-79.3116255888,319975.034,4836547.4180000005
-888259,4153677,2017.0,2021.0,1960.0,PRIVATE,19,Beaches-East York,158 KINGSTON RD,4,44,2021-10-13,89,Evaluation needs to be conducted in 3 years,17,4.0,4.0,5.0,5.0,5.0,5.0,,4.0,,4.0,4.0,4.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,,S1937,43.6712621487,-79.3112236755,320007.309,4836607.1280000005
-888260,4156491,2017.0,2021.0,1975.0,PRIVATE,25,Scarborough-Rouge Park,45 GENERATION BLVD,3,12,2021-10-13,89,Evaluation needs to be conducted in 3 years,16,5.0,5.0,5.0,4.0,3.0,4.0,,5.0,,,4.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,,E2530,43.8043562465,-79.1670746426,331587.82899999997,4851453.213
-888261,4155088,2017.0,2021.0,1993.0,SOCIAL HOUSING,5,York South-Weston,2480 EGLINTON AVE W,8,97,2021-10-12,64,Evaluation needs to be conducted in 1 year,18,4.0,4.0,4.0,3.0,2.0,4.0,2.0,2.0,3.0,,2.0,4.0,4.0,3.0,3.0,3.0,,4.0,4.0,3.0,W0533,43.6916984742,-79.4694113226,307250.278,4838860.746
-888262,4155262,2017.0,2021.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,6 CROWN HILL PL,4,37,2021-10-12,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,3.0,4.0,,4.0,,3.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,,,W0327,43.6385102158,-79.4902204233,305573.399,4832951.506
-888263,4154819,2017.0,2021.0,1968.0,PRIVATE,17,Don Valley North,225 VAN HORNE AVE,13,153,2021-10-12,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,N1727,43.7869738317,-79.3519406664,316701.12100000004,4849455.572
-888264,4154798,2017.0,2021.0,1954.0,PRIVATE,16,Don Valley East,1002 LAWRENCE AVE E,4,77,2021-10-12,70,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,4.0,4.0,,3.0,4.0,3.0,4.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,N1624,43.737992525299994,-79.3424983362,317471.31899999996,4844015.35
-888265,4154799,2017.0,2021.0,1958.0,PRIVATE,16,Don Valley East,1004 LAWRENCE AVE E,4,65,2021-10-12,74,Evaluation needs to be conducted in 2 years,19,3.0,3.0,5.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,5.0,5.0,2.0,3.0,4.0,4.0,2.0,3.0,,N1624,43.7382018911,-79.3414669469,317554.35,4844038.767
-888266,4153813,2017.0,2021.0,1957.0,PRIVATE,15,Don Valley West,412 EGLINTON AVE E,6,65,2021-10-12,89,Evaluation needs to be conducted in 3 years,19,4.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,5.0,3.0,5.0,4.0,5.0,4.0,5.0,5.0,4.0,5.0,4.0,,N1537,43.7097342429,-79.38558900310001,314004.732,4840870.421
-888267,4153810,2017.0,2021.0,1959.0,PRIVATE,15,Don Valley West,460 EGLINTON AVE E,6,72,2021-10-12,88,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,4.0,4.0,5.0,,4.0,5.0,,4.0,4.0,5.0,4.0,4.0,5.0,5.0,5.0,2.0,,N1537,43.710044313900006,-79.38404532130001,314129.077,4840905.035
-888268,4153809,2017.0,2021.0,1964.0,PRIVATE,15,Don Valley West,490 EGLINTON AVE E,8,51,2021-10-12,85,Evaluation needs to be conducted in 2 years,19,5.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,2.0,,N1537,43.7101170493,-79.3836293624,314162.583,4840913.16
-888269,4153336,2017.0,2021.0,1983.0,TCHC,12,Toronto-St. Paul's,2 LAMBERTLODGE AVE,5,64,2021-10-12,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1234,43.673917543,-79.422657829,311020.734,4836888.76
-888270,4152774,2017.0,2021.0,1964.0,PRIVATE,21,Scarborough Centre,3125 LAWRENCE AVE E,7,110,2021-10-12,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,,2.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,,E2136,43.7552486601,-79.2439639688,325402.336,4845952.092
-888271,4154830,2017.0,2021.0,1966.0,PRIVATE,17,Don Valley North,20 ESTERBROOKE AVE,15,134,2021-10-12,89,Evaluation needs to be conducted in 3 years,19,5.0,4.0,4.0,5.0,5.0,5.0,4.0,4.0,5.0,,5.0,5.0,4.0,5.0,5.0,4.0,5.0,4.0,4.0,3.0,N1727,43.7798043698,-79.3506939201,316802.87100000004,4848659.234
-888272,4153675,2017.0,2021.0,1959.0,SOCIAL HOUSING,19,Beaches-East York,23 EDGEWOOD AVE,4,24,2021-10-12,89,Evaluation needs to be conducted in 3 years,16,4.0,4.0,5.0,5.0,5.0,4.0,,4.0,,,4.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,,S1937,43.670497618,-79.313073089,319858.105,4836522.81
-888273,4154791,2017.0,2021.0,1958.0,PRIVATE,16,Don Valley East,46 FOXDEN RD,3,22,2021-10-12,72,Evaluation needs to be conducted in 2 years,17,3.0,4.0,3.0,3.0,4.0,4.0,,4.0,,4.0,3.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,4.0,,N1626,43.72911001,-79.342048581,317497.67699999997,4843021.001
-888274,4152887,2017.0,2021.0,1979.0,PRIVATE,25,Scarborough-Rouge Park,1 DEAN PARK RD,16,249,2021-10-12,86,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,4.0,5.0,3.0,4.0,5.0,,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,5.0,E2529,43.804482576999995,-79.1702968406,331312.86,4851442.64
-888275,4153682,2017.0,2021.0,1920.0,PRIVATE,19,Beaches-East York,223 WOODBINE AVE,4,48,2021-10-12,75,Evaluation needs to be conducted in 2 years,15,4.0,3.0,3.0,4.0,3.0,4.0,,5.0,,,4.0,3.0,5.0,3.0,4.0,4.0,,3.0,4.0,,S1938,43.6694252933,-79.3057875382,320446.145,4836404.056
-888276,4155756,,2021.0,1927.0,PRIVATE,12,Toronto-St. Paul's,6 PINEWOOD AVE,3,11,2021-10-12,53,Evaluation needs to be conducted in 1 year,14,2.0,3.0,3.0,2.0,,3.0,,3.0,,,3.0,3.0,4.0,2.0,2.0,2.0,2.0,3.0,,,S1229,43.682454983,-79.425041007,310827.715,4837837.046
-888277,4154973,,2021.0,1925.0,PRIVATE,12,Toronto-St. Paul's,8 PINEWOOD AVE,3,11,2021-10-12,51,Evaluation needs to be conducted in 1 year,14,2.0,3.0,3.0,2.0,,2.0,,3.0,,,2.0,3.0,5.0,2.0,2.0,3.0,2.0,2.0,,,S1229,43.682584046,-79.425180892,310816.424,4837851.375
-888278,4152851,2017.0,2021.0,1970.0,PRIVATE,22,Scarborough-Agincourt,3275 SHEPPARD AVE E,17,219,2021-10-12,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,3.0,3.0,,4.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,4.0,3.0,3.0,4.0,,E2230,43.777664481,-79.310076811,320080.96,4848422.677
-888279,4152874,2017.0,2021.0,1960.0,PRIVATE,22,Scarborough-Agincourt,3875 SHEPPARD AVE E,14,154,2021-10-12,64,Evaluation needs to be conducted in 1 year,19,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,,E2232,43.78254283689999,-79.28975127529999,321707.615,4848974.0819999995
-888280,4154832,2017.0,2021.0,1965.0,PRIVATE,17,Don Valley North,40 GODSTONE RD,16,176,2021-10-12,83,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N1727,43.7822996863,-79.3478742316,317029.336,4848936.868
-888281,4153753,2017.0,2021.0,1980.0,TCHC,12,Toronto-St. Paul's,71 MERTON ST,10,167,2021-10-10,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,5.0,S1233,43.696320863000004,-79.394123596,313318.526,4839380.245
-888282,4155361,2017.0,2021.0,1962.0,PRIVATE,2,Etobicoke Centre,51-67 WATERFORD DR,8,29,2021-10-10,86,Evaluation needs to be conducted in 3 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,3.0,5.0,5.0,3.0,,W0222,43.680940685900005,-79.5408629511,301489.738,4837666.164
-888283,4153760,2017.0,2021.0,1993.0,TCHC,12,Toronto-St. Paul's,384 MOUNT PLEASANT RD,8,155,2021-10-10,83,Evaluation needs to be conducted in 2 years,20,5.0,5.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,5.0,S1233,43.698358176099994,-79.38695482600001,313896.36199999996,4839606.393999999
-888284,4155368,2017.0,2021.0,1967.0,PRIVATE,2,Etobicoke Centre,265 DIXON RD,16,181,2021-10-10,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,3.0,4.0,4.0,5.0,,3.0,5.0,5.0,4.0,4.0,1.0,5.0,4.0,2.0,4.0,W0222,43.69593445100001,-79.548620626,300843.439,4839394.946
-888285,4153468,,2021.0,1959.0,PRIVATE,11,University-Rosedale,710 SPADINA AVE,7,62,2021-10-10,81,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,,S1134,43.665065952,-79.4034815,312568.165,4835906.964
-888286,4155369,2017.0,2021.0,1964.0,PRIVATE,2,Etobicoke Centre,263 DIXON RD,15,171,2021-10-10,78,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,4.0,3.0,3.0,2.0,3.0,5.0,,4.0,5.0,5.0,4.0,4.0,3.0,5.0,4.0,2.0,4.0,W0222,43.695514613,-79.547766738,300931.87899999996,4839262.038
-888287,4153801,2017.0,2021.0,1981.0,TCHC,12,Toronto-St. Paul's,130 EGLINTON AVE E,15,266,2021-10-10,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,3.0,3.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,S1221,43.7080325071,-79.3945783952,313280.50399999996,4840680.403
-888288,4156016,2017.0,2021.0,1972.0,TCHC,4,Parkdale-High Park,3735 DUNDAS ST W,10,132,2021-10-09,61,Evaluation needs to be conducted in 1 year,20,4.0,4.0,5.0,2.0,3.0,3.0,2.0,3.0,3.0,3.0,2.0,3.0,1.0,3.0,4.0,4.0,3.0,3.0,3.0,3.0,S0421,43.665189036,-79.499393828,304843.771,4835924.808999999
-888289,4155160,2017.0,2021.0,1973.0,TCHC,5,York South-Weston,1901 WESTON RD,17,400,2021-10-08,72,Evaluation needs to be conducted in 2 years,19,3.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,4.0,5.0,4.0,2.0,4.0,3.0,4.0,4.0,3.0,W0524,43.7005890595,-79.5159933375,303495.37,4839848.29
-888290,4156510,2017.0,2021.0,1974.0,TCHC,5,York South-Weston,720 TRETHEWEY DR,19,204,2021-10-08,77,Evaluation needs to be conducted in 2 years,19,3.0,4.0,5.0,3.0,3.0,4.0,3.0,4.0,4.0,,3.0,5.0,5.0,3.0,4.0,5.0,4.0,4.0,3.0,4.0,W0528,43.697963611000006,-79.50094174899999,304708.284,4839557.3780000005
-888291,4154362,,2021.0,1956.0,PRIVATE,5,York South-Weston,2616 KEELE ST,3,11,2021-10-08,81,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,3.0,4.0,,5.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,W0522,43.719032062,-79.4807128716,306338.57899999997,4841897.134
-888292,4154361,,2021.0,1955.0,PRIVATE,5,York South-Weston,2618 KEELE ST,3,11,2021-10-08,85,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,,5.0,,4.0,4.0,4.0,5.0,4.0,5.0,4.0,,4.0,3.0,5.0,W0522,43.719344175299995,-79.48077805449999,306333.31899999996,4841931.806
-888293,4154303,2018.0,2021.0,1953.0,PRIVATE,5,York South-Weston,16 ARROWSMITH AVE,3,11,2021-10-08,80,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,3.0,,3.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0529,43.7043754257,-79.4779098871,306564.853,4840268.915
-888294,4154302,2017.0,2021.0,1960.0,PRIVATE,5,York South-Weston,2 ARROWSMITH AVE,3,11,2021-10-08,53,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,,,2.0,1.0,3.0,3.0,3.0,3.0,,2.0,2.0,,W0529,43.7044245269,-79.4774946495,306598.318,4840274.3780000005
-888295,4408389,2019.0,2021.0,1913.0,PRIVATE,9,Davenport,10 MOUNT ROYAL AVE,3,12,2021-10-08,70,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,,,3.0,2.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,,S0928,43.675063118999994,-79.4330471349,310183.115,4837014.338
-888296,4156358,2017.0,2021.0,1960.0,PRIVATE,5,York South-Weston,2089 LAWRENCE AVE W,16,121,2021-10-07,86,Evaluation needs to be conducted in 3 years,19,4.0,4.0,5.0,4.0,3.0,4.0,4.0,5.0,4.0,,4.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,5.0,W0527,43.699266335,-79.51717541100001,303375.42,4839743.518999999
-888297,4155493,2017.0,2021.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,2549 LAKE SHORE BLVD W,4,26,2021-10-07,66,Evaluation needs to be conducted in 2 years,14,4.0,4.0,5.0,3.0,,2.0,,2.0,,,4.0,5.0,5.0,3.0,3.0,2.0,,2.0,2.0,,W0336,43.609329001400006,-79.4885909687,305705.277,4829709.647
-888298,4156723,2017.0,2021.0,2008.0,PRIVATE,5,York South-Weston,5 HARDING AVE,9,184,2021-10-07,86,Evaluation needs to be conducted in 3 years,18,4.0,5.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,5.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,,W0528,43.699376402,-79.502250278,304602.821,4839714.337
-888299,4154462,2017.0,2021.0,1973.0,PRIVATE,7,Humber River-Black Creek,25 BROADOAKS DR,9,92,2021-10-07,67,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,,W0731,43.756925959600004,-79.49101087439999,305508.471,4846106.795
-888300,4156359,2017.0,2021.0,1960.0,PRIVATE,5,York South-Weston,2099 LAWRENCE AVE W,16,121,2021-10-07,91,Evaluation needs to be conducted in 3 years,18,4.0,4.0,5.0,4.0,4.0,5.0,5.0,5.0,4.0,,4.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,4.0,,W0527,43.69945409899999,-79.517762353,303330.156,4839728.712
-888301,4155930,2017.0,2021.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,90 JAMES ST,3,34,2021-10-07,80,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,5.0,4.0,3.0,,3.0,,,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,4.0,,W0334,43.5900539633,-79.5420495238,301389.019,4827569.052
-888302,4155495,2017.0,2021.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,2545 LAKE SHORE BLVD W,4,26,2021-10-07,67,Evaluation needs to be conducted in 2 years,14,4.0,4.0,5.0,3.0,,2.0,,2.0,,,4.0,5.0,5.0,3.0,3.0,2.0,,2.0,3.0,,W0336,43.609273426899996,-79.4898141501,305606.538,4829703.461
-888303,4154331,2017.0,2021.0,1960.0,PRIVATE,5,York South-Weston,1795 JANE ST,10,105,2021-10-07,82,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,W0528,43.7066838334,-79.5040013996,304461.998,4840525.194
-888304,4155587,2017.0,2021.0,1969.0,TCHC,4,Parkdale-High Park,100 HIGH PARK AVE,24,447,2021-10-07,65,Evaluation needs to be conducted in 1 year,19,4.0,3.0,5.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,4.0,3.0,4.0,3.0,4.0,4.0,,S0428,43.656567829,-79.4673846716,307415.157,4834958.018
-888305,4154472,2017.0,2021.0,1969.0,PRIVATE,7,Humber River-Black Creek,20 BROADOAKS DR,9,177,2021-10-07,65,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,4.0,W0731,43.7577107844,-79.4909188845,305515.869,4846193.988
-888306,4154730,2017.0,2021.0,1970.0,PRIVATE,15,Don Valley West,17 FARMSTEAD RD,19,136,2021-10-06,79,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,N1522,43.754388627,-79.36167580600001,315923.29600000003,4845835.076
-888307,4153911,2017.0,2021.0,1956.0,PRIVATE,12,Toronto-St. Paul's,587 AVENUE RD,3,22,2021-10-06,68,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,3.0,3.0,4.0,,3.0,,,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1232,43.68945490310001,-79.4020332335,312682.159,4838615.7
-888308,4233268,2017.0,2021.0,1951.0,PRIVATE,12,Toronto-St. Paul's,871 AVENUE RD,3,10,2021-10-06,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,,3.0,,3.0,,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1227,43.699066984,-79.4058203443,312375.626,4839683.241
-888309,4154701,2017.0,2021.0,1967.0,PRIVATE,18,Willowdale,325 BOGERT AVE,6,418,2021-10-06,72,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,4.0,,4.0,4.0,4.0,4.0,4.0,4.0,4.0,1.0,1.0,,N1827,43.757066148999996,-79.426922307,310668.885,4846125.843
-888310,4155882,2017.0,2021.0,1962.0,PRIVATE,4,Parkdale-High Park,65 WINDERMERE AVE,6,92,2021-10-06,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,,S0430,43.6390679987,-79.47154026609999,307080.62899999996,4833013.756
-888311,4156104,2017.0,2021.0,1962.0,PRIVATE,4,Parkdale-High Park,75 WINDERMERE AVE,6,52,2021-10-06,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,S0430,43.63943104,-79.471915958,307058.811,4833040.19
-888312,4155513,2017.0,2021.0,1967.0,PRIVATE,3,Etobicoke-Lakeshore,2 ROYAL YORK RD,6,60,2021-10-06,78,Evaluation needs to be conducted in 2 years,18,4.0,5.0,5.0,5.0,4.0,2.0,,3.0,3.0,4.0,4.0,5.0,5.0,4.0,4.0,3.0,3.0,3.0,4.0,,W0335,43.6027168332,-79.4930979742,305341.50800000003,4828975.031
-888313,4155512,2017.0,2021.0,1951.0,PRIVATE,3,Etobicoke-Lakeshore,6 ROYAL YORK RD,5,72,2021-10-06,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,4.0,4.0,4.0,5.0,5.0,4.0,3.0,3.0,,3.0,4.0,,W0335,43.6031676706,-79.4934504653,305313.049,4829025.116
-888314,4155883,2017.0,2021.0,1965.0,PRIVATE,4,Parkdale-High Park,66 PACIFIC AVE,16,230,2021-10-06,83,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S0428,43.655223678999995,-79.464807315,307631.12899999996,4834855.688999999
-888315,4155827,2018.0,2021.0,1944.0,PRIVATE,4,Parkdale-High Park,2559 BLOOR ST W,4,27,2021-10-06,76,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,3.0,,4.0,,3.0,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,S0425,43.647685867,-79.490964697,305519.44899999996,4833990.2530000005
-888316,4155848,2017.0,2021.0,1969.0,PRIVATE,4,Parkdale-High Park,35 HIGH PARK AVE,26,201,2021-10-06,83,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S0428,43.6547264051,-79.4652848769,307584.63300000003,4834753.518999999
-888317,4166848,2017.0,2021.0,1969.0,PRIVATE,4,Parkdale-High Park,65 HIGH PARK AVE,23,321,2021-10-06,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,2.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,S0428,43.655948159,-79.465424787,307525.818,4834894.517
-888318,4155905,2017.0,2021.0,1969.0,PRIVATE,4,Parkdale-High Park,95 HIGH PARK AVE,16,218,2021-10-06,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,2.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S0428,43.65678758399999,-79.46615734699999,307493.658,4834995.877
-888319,4154837,2017.0,2021.0,1959.0,PRIVATE,17,Don Valley North,71 TALARA DR,3,29,2021-10-06,80,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,N1729,43.765626586,-79.37941856,314492.675,4847081.343
-888320,4156122,2017.0,2021.0,1970.0,PRIVATE,17,Don Valley North,75 TALARA DR,4,66,2021-10-06,81,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,N1729,43.765752783,-79.380070251,314469.09,4847077.914
-888321,4153382,2017.0,2021.0,1997.0,SOCIAL HOUSING,10,Spadina-Fort York,85 THE ESPLANADE,7,128,2021-10-06,80,Evaluation needs to be conducted in 2 years,18,5.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1038,43.6473212947,-79.37296407470001,315032.675,4833938.007
-888322,4154254,2017.0,2021.0,1961.0,PRIVATE,7,Humber River-Black Creek,3266 WESTON RD,4,59,2021-10-06,72,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,3.0,4.0,,4.0,3.0,3.0,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,,W0727,43.7407950655,-79.5403431231,301535.061,4844315.545
-888323,4155511,2017.0,2021.0,1953.0,PRIVATE,3,Etobicoke-Lakeshore,2663 LAKE SHORE BLVD W,8,111,2021-10-06,87,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,4.0,5.0,,4.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,2.0,,W0335,43.602984534399994,-79.4939230131,305274.904,4829004.768999999
-888324,4153640,2017.0,2021.0,1965.0,PRIVATE,14,Toronto-Danforth,1395 GERRARD ST E,3,12,2021-10-06,56,Evaluation needs to be conducted in 1 year,15,2.0,3.0,4.0,2.0,3.0,4.0,,3.0,,,2.0,2.0,2.0,3.0,3.0,4.0,,2.0,3.0,,S1439,43.671597433100004,-79.32409735819999,318969.114,4836642.1219999995
-888325,4155510,2017.0,2021.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,2667 LAKE SHORE BLVD W,4,17,2021-10-06,75,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,3.0,4.0,,4.0,,4.0,3.0,5.0,5.0,3.0,3.0,4.0,3.0,3.0,4.0,,W0335,43.602838275,-79.4944408976,305233.099,4828988.518999999
-888326,4154283,2017.0,2021.0,1961.0,PRIVATE,5,York South-Weston,25 GULLIVER RD,7,52,2021-10-05,83,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,5.0,,5.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,W0529,43.69855491,-79.4776237229,306588.082,4839622.28
-888327,4154282,2017.0,2021.0,1961.0,PRIVATE,5,York South-Weston,21 GULLIVER RD,7,51,2021-10-05,83,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,5.0,,5.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,W0529,43.6986462208,-79.4772084771,306621.55,4839632.432
-888328,4154281,2017.0,2021.0,1960.0,PRIVATE,5,York South-Weston,17 GULLIVER RD,6,42,2021-10-05,67,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,3.0,3.0,,3.0,4.0,3.0,3.0,3.0,5.0,2.0,3.0,3.0,4.0,3.0,3.0,,W0529,43.6987192629,-79.476784436,306655.727,4839640.555
-888329,4154293,2017.0,2021.0,1960.0,PRIVATE,5,York South-Weston,14 GULLIVER RD,6,57,2021-10-05,69,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,,3.0,4.0,5.0,3.0,2.0,3.0,4.0,3.0,3.0,,W0529,43.6995188546,-79.47732165949999,306612.402,4839729.377
-888330,4154253,2017.0,2021.0,1961.0,PRIVATE,7,Humber River-Black Creek,3286 WESTON RD,4,55,2021-10-05,68,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,3.0,4.0,,4.0,3.0,3.0,3.0,4.0,5.0,3.0,4.0,3.0,3.0,4.0,3.0,,W0727,43.7416741492,-79.54061124340001,301513.51300000004,4844413.218
-888331,4154236,2017.0,2021.0,1971.0,PRIVATE,7,Humber River-Black Creek,101 DRIFTWOOD AVE,4,32,2021-10-05,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,4.0,3.0,3.0,3.0,2.0,4.0,4.0,,W0730,43.754502975,-79.513280684,303714.863,4845838.642
-888332,4153881,2017.0,2021.0,1967.0,PRIVATE,12,Toronto-St. Paul's,4 DEER PARK CRES,13,59,2021-10-05,74,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1232,43.6878705594,-79.3990127319,312925.863,4838439.962
-888333,4462209,2019.0,2021.0,1953.0,SOCIAL HOUSING,20,Scarborough Southwest,3738 ST CLAIR AVE E,4,22,2021-10-05,99,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,,5.0,5.0,5.0,5.0,5.0,5.0,,5.0,5.0,5.0,E2032,43.720791877799996,-79.2435210688,325449.765,4842124.271000001
-888334,4156471,2017.0,2021.0,1960.0,PRIVATE,21,Scarborough Centre,1545 BIRCHMOUNT RD,4,37,2021-10-05,60,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,2.0,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,3.0,,E2128,43.760276601,-79.289405137,321709.409,4846508.482
-888335,4152700,2017.0,2021.0,1960.0,PRIVATE,21,Scarborough Centre,1169 BIRCHMOUNT RD,4,18,2021-10-05,73,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,4.0,4.0,2.0,4.0,3.0,,5.0,4.0,5.0,4.0,3.0,3.0,3.0,4.0,3.0,,E2133,43.7418231309,-79.2820268094,322341.164,4844451.883
-888336,4154206,2018.0,2021.0,1911.0,PRIVATE,15,Don Valley West,1911 BAYVIEW AVE,4,20,2021-10-05,75,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,3.0,3.0,,4.0,,,4.0,2.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N1529,43.7159928067,-79.3775463517,314651.793,4841566.606000001
-888337,4480446,2019.0,2021.0,2016.0,SOCIAL HOUSING,20,Scarborough Southwest,55 THORA AVE,4,20,2021-10-05,92,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,5.0,4.0,1.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,,5.0,4.0,,E2028,43.691279311,-79.286865733,321965.595,4838836.621
-888338,4255532,2017.0,2021.0,2006.0,PRIVATE,9,Davenport,1401 DUPONT ST,6,171,2021-10-05,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S0930,43.666328416700004,-79.4468802656,309068.351,4836043.153
-888339,4255546,2017.0,2021.0,2008.0,PRIVATE,9,Davenport,1407 DUPONT ST,5,74,2021-10-05,76,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,3.0,3.0,4.0,,3.0,3.0,4.0,4.0,4.0,4.0,,4.0,4.0,,S0930,43.6662152325,-79.44757050609999,309012.691,4836030.5430000005
-888340,4156268,2017.0,2021.0,1970.0,TCHC,21,Scarborough Centre,49 GILDER DR,6,22,2021-10-05,69,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,3.0,3.0,3.0,,4.0,3.0,,3.0,3.0,4.0,4.0,4.0,4.0,,3.0,3.0,,E2134,43.7365696854,-79.255181683,324505.1,4843874.254
-888341,4167686,2017.0,2021.0,1960.0,PRIVATE,21,Scarborough Centre,2356 EGLINTON AVE E,5,70,2021-10-05,70,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,4.0,3.0,,4.0,3.0,3.0,3.0,3.0,5.0,4.0,4.0,3.0,3.0,3.0,4.0,,E2133,43.7318415798,-79.2729961142,323071.57300000003,4843344.916
-888342,4154519,2017.0,2021.0,1974.0,PRIVATE,8,Eglinton-Lawrence,3636 BATHURST ST,19,225,2021-10-04,85,Evaluation needs to be conducted in 2 years,19,5.0,5.0,5.0,4.0,4.0,4.0,4.0,3.0,5.0,,4.0,4.0,5.0,3.0,5.0,5.0,3.0,4.0,4.0,5.0,N0823,43.7325245574,-79.4331792399,310167.468,4843398.065
-888343,4153826,2017.0,2021.0,1961.0,PRIVATE,12,Toronto-St. Paul's,100 ROEHAMPTON AVE,14,211,2021-10-04,74,Evaluation needs to be conducted in 2 years,20,4.0,3.0,5.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,4.0,S1221,43.709038236000005,-79.395336521,313219.001,4840793.0139999995
-888344,4153822,2017.0,2021.0,1964.0,PRIVATE,12,Toronto-St. Paul's,200 ROEHAMPTON AVE,13,228,2021-10-04,84,Evaluation needs to be conducted in 2 years,19,5.0,5.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,,S1221,43.70953529,-79.39239920600001,313455.652,4840848.535
-888345,4153397,2017.0,2021.0,1991.0,TCHC,10,Spadina-Fort York,248 SIMCOE ST,12,53,2021-10-04,81,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,5.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,,3.0,4.0,,S1024,43.6539203787,-79.3892195078,313720.374,4834669.271000001
-888346,4153825,2017.0,2021.0,1963.0,PRIVATE,12,Toronto-St. Paul's,75 BROADWAY AVE,10,205,2021-10-04,74,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,3.0,4.0,,5.0,4.0,5.0,3.0,3.0,5.0,4.0,3.0,3.0,3.0,4.0,,4.0,S1221,43.709951708999995,-79.394607069,313277.659,4840894.571
-888347,4154812,2017.0,2021.0,1967.0,PRIVATE,17,Don Valley North,65 FOREST MANOR RD,17,218,2021-10-04,70,Evaluation needs to be conducted in 2 years,20,3.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,2.0,2.0,1.0,N1730,43.773439744399994,-79.3439806087,317344.57300000003,4847953.138
-888348,4154811,2017.0,2021.0,1968.0,PRIVATE,17,Don Valley North,24 FOREST MANOR RD,10,128,2021-10-04,89,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,5.0,4.0,4.0,5.0,5.0,5.0,5.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,3.0,,N1730,43.771058443,-79.344641223,317291.63,4847689.442
-888349,4155398,2017.0,2021.0,1974.0,PRIVATE,2,Etobicoke Centre,340 MILL RD,19,225,2021-10-04,80,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,4.0,4.0,4.0,3.0,3.0,5.0,,4.0,5.0,5.0,4.0,3.0,3.0,5.0,4.0,2.0,4.0,W0231,43.6398689295,-79.5856147179,297876.852,4833105.909
-888350,4153984,2017.0,2021.0,1956.0,PRIVATE,8,Eglinton-Lawrence,650 BRIAR HILL AVE,9,85,2021-10-04,83,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,3.0,4.0,5.0,3.0,3.0,5.0,,4.0,5.0,5.0,4.0,4.0,5.0,5.0,3.0,3.0,,N0833,43.7083504804,-79.4265525477,310703.673,4840712.912
-888351,4155393,2017.0,2021.0,1970.0,PRIVATE,2,Etobicoke Centre,555 THE WEST MALL,15,119,2021-10-04,72,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,4.0,4.0,3.0,,2.0,4.0,2.0,4.0,5.0,3.0,3.0,4.0,4.0,5.0,3.0,3.0,,W0231,43.65244349100001,-79.57043332100001,299096.887,4834480.231000001
-888352,4153974,2017.0,2021.0,1952.0,PRIVATE,8,Eglinton-Lawrence,2515 BATHURST ST,11,114,2021-10-04,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,3.0,5.0,3.0,3.0,4.0,,4.0,5.0,5.0,3.0,4.0,3.0,4.0,4.0,4.0,,N0833,43.705627508599996,-79.4260651529,310743.22,4840410.462
-888353,4153973,2017.0,2021.0,1976.0,PRIVATE,8,Eglinton-Lawrence,2500 BATHURST ST,10,83,2021-10-04,82,Evaluation needs to be conducted in 2 years,18,5.0,5.0,5.0,3.0,4.0,4.0,4.0,3.0,5.0,,3.0,5.0,5.0,4.0,4.0,4.0,5.0,3.0,3.0,,N0832,43.7058074036,-79.426918953,310674.391,4840430.382
-888354,4154808,2017.0,2021.0,1974.0,PRIVATE,17,Don Valley North,75 HAVENBROOK BLVD,14,201,2021-10-04,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,N1730,43.7682616864,-79.348101055,317013.924,4847377.263
-888355,4154214,2017.0,2021.0,1950.0,PRIVATE,7,Humber River-Black Creek,1744 WILSON AVE,3,10,2021-10-04,90,Evaluation needs to be conducted in 3 years,16,4.0,4.0,5.0,5.0,5.0,5.0,,4.0,,,4.0,5.0,5.0,5.0,4.0,4.0,5.0,5.0,3.0,,W0734,43.7198292201,-79.5150038908,303575.583,4841985.6680000005
-888356,4154284,2017.0,2021.0,1967.0,PRIVATE,5,York South-Weston,35 GULLIVER RD,6,42,2021-10-01,72,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,3.0,3.0,4.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0529,43.6984374675,-79.4780739055,306551.797,4839609.226
-888357,4152659,2017.0,2021.0,1978.0,SOCIAL HOUSING,21,Scarborough Centre,1860 LAWRENCE AVE E,8,89,2021-10-01,81,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2126,43.744070606,-79.30308064180001,320644.835,4844697.338
-888358,4152657,2017.0,2021.0,1962.0,PRIVATE,21,Scarborough Centre,1790 LAWRENCE AVE E,5,36,2021-10-01,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,3.0,5.0,3.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2126,43.7433508938,-79.3059187753,320416.436,4844616.844
-888359,4152658,2017.0,2021.0,1961.0,PRIVATE,21,Scarborough Centre,1780 LAWRENCE AVE E,5,39,2021-10-01,79,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,3.0,5.0,1.0,,5.0,5.0,,4.0,5.0,5.0,3.0,4.0,4.0,5.0,4.0,3.0,,E2126,43.743103619799996,-79.3070051699,320328.999,4844589.169
-888360,4152651,2017.0,2021.0,1960.0,PRIVATE,21,Scarborough Centre,1725 LAWRENCE AVE E,6,43,2021-10-01,84,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,4.0,5.0,4.0,,4.0,4.0,,5.0,5.0,5.0,4.0,4.0,4.0,5.0,3.0,4.0,,E2131,43.7420240548,-79.3085552863,320204.42100000003,4844468.944
-888361,4154128,2017.0,2021.0,1961.0,PRIVATE,14,Toronto-Danforth,100 COSBURN AVE,7,140,2021-10-01,79,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,3.0,4.0,5.0,4.0,3.0,4.0,4.0,5.0,4.0,,S1421,43.6894490908,-79.3500408612,316873.531,4838621.28
-888362,4152703,2017.0,2021.0,1968.0,PRIVATE,21,Scarborough Centre,2185 LAWRENCE AVE E,12,142,2021-10-01,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,5.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,E2133,43.747553555299994,-79.282547131,322297.586,4845088.397
-888363,4154219,2017.0,2021.0,1965.0,PRIVATE,7,Humber River-Black Creek,99 MATTSON RD,4,30,2021-10-01,67,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,4.0,3.0,3.0,,2.0,3.0,3.0,4.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,W0734,43.722654944,-79.5130447411,303733.493,4842299.549
-888364,4155915,2017.0,2021.0,1994.0,SOCIAL HOUSING,21,Scarborough Centre,2015 LAWRENCE AVE E,11,158,2021-10-01,89,Evaluation needs to be conducted in 3 years,18,4.0,4.0,4.0,5.0,4.0,5.0,5.0,5.0,4.0,,5.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,3.0,,E2131,43.7449592405,-79.2949788446,321297.115,4844797.638
-888365,4152642,2017.0,2021.0,1964.0,PRIVATE,21,Scarborough Centre,1651 VICTORIA PARK AVE,8,67,2021-09-30,73,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,4.0,3.0,4.0,5.0,3.0,3.0,4.0,3.0,3.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,,E2131,43.7328848087,-79.3055213856,320451.154,4843454.222
-888366,4154969,2017.0,2021.0,1960.0,PRIVATE,12,Toronto-St. Paul's,142 VAUGHAN RD,4,27,2021-09-30,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,,2.0,,3.0,,,3.0,3.0,4.0,4.0,3.0,3.0,3.0,4.0,3.0,,S1229,43.685120500000004,-79.4220842022,311066.115,4838132.443
-888367,4152644,2017.0,2021.0,1958.0,PRIVATE,21,Scarborough Centre,1735 VICTORIA PARK AVE,4,43,2021-09-30,82,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,5.0,4.0,4.0,,4.0,,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2131,43.7375816521,-79.30752617590001,320288.45,4843975.633
-888368,4152645,2017.0,2021.0,1958.0,PRIVATE,21,Scarborough Centre,1739 VICTORIA PARK AVE,4,43,2021-09-30,81,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,4.0,5.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,,E2131,43.7380491988,-79.30771259999999,320273.313,4844027.536
-888369,4152646,2017.0,2021.0,1962.0,PRIVATE,21,Scarborough Centre,1749 VICTORIA PARK AVE,6,85,2021-09-30,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,5.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2131,43.7388748682,-79.3078956075,320258.359,4844119.222
-888370,4152656,2017.0,2021.0,1959.0,PRIVATE,21,Scarborough Centre,1827 VICTORIA PARK AVE,4,36,2021-09-30,88,Evaluation needs to be conducted in 3 years,17,5.0,5.0,4.0,5.0,5.0,3.0,,4.0,4.0,,3.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,5.0,,E2126,43.7441147474,-79.31004806199999,320083.654,4844700.933
-888371,4152664,2017.0,2021.0,1962.0,PRIVATE,21,Scarborough Centre,2275 VICTORIA PARK AVE,6,69,2021-09-30,74,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,1.0,,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,E2121,43.763205848999995,-79.3169546412,319522.706,4846820.596
-888372,4154732,2017.0,2021.0,1970.0,PRIVATE,15,Don Valley West,740 YORK MILLS RD,19,137,2021-09-30,79,Evaluation needs to be conducted in 2 years,19,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,2.0,4.0,4.0,4.0,4.0,3.0,,N1522,43.753559278999994,-79.362054281,315892.973,4845742.888
-888373,4154731,2017.0,2021.0,1970.0,PRIVATE,15,Don Valley West,750 YORK MILLS RD,19,137,2021-09-30,77,Evaluation needs to be conducted in 2 years,19,5.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,5.0,3.0,4.0,3.0,4.0,3.0,3.0,,N1522,43.75370469,-79.360849641,315989.952,4845759.204
-888374,4154212,2018.0,2021.0,1953.0,PRIVATE,7,Humber River-Black Creek,1740 WILSON AVE,3,10,2021-09-30,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,W0734,43.7199693084,-79.5144469829,303620.457,4842001.222
-888375,4285976,2017.0,2021.0,1992.0,TCHC,9,Davenport,55 RANKIN CRES,9,176,2021-09-30,78,Evaluation needs to be conducted in 2 years,19,4.0,3.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,S0929,43.658277925,-79.446387674,309108.405,4835149.791999999
-888376,4153007,2017.0,2021.0,1952.0,PRIVATE,4,Parkdale-High Park,1502 KING ST W,3,15,2021-09-30,66,Evaluation needs to be conducted in 2 years,14,4.0,3.0,3.0,4.0,3.0,4.0,,4.0,,,3.0,3.0,5.0,2.0,3.0,3.0,,2.0,,,S0436,43.636587848400005,-79.4403366563,309598.452,4832739.518
-888377,4154817,2017.0,2021.0,1972.0,PRIVATE,17,Don Valley North,3000 VICTORIA PARK AVE,6,228,2021-09-30,84,Evaluation needs to be conducted in 2 years,19,5.0,5.0,4.0,5.0,4.0,5.0,4.0,5.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,N1728,43.7923267755,-79.3320509885,318300.734,4850053.318
-888378,4154966,2017.0,2021.0,1963.0,PRIVATE,12,Toronto-St. Paul's,98 VAUGHAN RD,4,40,2021-09-30,60,Evaluation needs to be conducted in 1 year,14,3.0,3.0,2.0,3.0,,2.0,,3.0,,,3.0,2.0,4.0,4.0,3.0,3.0,,4.0,3.0,,S1229,43.683655701400006,-79.4214673851,311115.99199999997,4837969.748
-888379,4166819,2017.0,2021.0,1991.0,SOCIAL HOUSING,12,Toronto-St. Paul's,99 VAUGHAN RD,11,106,2021-09-30,87,Evaluation needs to be conducted in 3 years,18,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,,4.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,,S1229,43.6838774166,-79.4208933191,311162.253,4837994.424
-888380,4154965,2017.0,2021.0,1940.0,PRIVATE,12,Toronto-St. Paul's,100 VAUGHAN RD,4,33,2021-09-30,79,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,,,5.0,4.0,5.0,3.0,4.0,4.0,,4.0,3.0,,S1229,43.683796755500005,-79.4215781204,311107.05,4837985.411
-888381,4154956,2017.0,2021.0,1920.0,PRIVATE,12,Toronto-St. Paul's,101 VAUGHAN RD,4,32,2021-09-30,74,Evaluation needs to be conducted in 2 years,13,4.0,4.0,4.0,4.0,,3.0,,4.0,,,4.0,3.0,5.0,2.0,4.0,4.0,,3.0,,,S1229,43.6840547809,-79.4209132292,311160.63,4838014.1280000005
-888382,4152639,2017.0,2021.0,1960.0,PRIVATE,21,Scarborough Centre,1617 VICTORIA PARK AVE,4,59,2021-09-30,80,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,5.0,4.0,5.0,,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,3.0,3.0,4.0,,E2131,43.7309861519,-79.3047834793,320511.088,4843243.43
-888383,4152640,2017.0,2021.0,1958.0,PRIVATE,21,Scarborough Centre,1631 VICTORIA PARK AVE,4,35,2021-09-30,74,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,5.0,4.0,,4.0,,1.0,4.0,4.0,5.0,4.0,4.0,3.0,4.0,3.0,3.0,,E2131,43.7316703129,-79.3050968759,320485.664,4843319.377
-888384,4152642,2017.0,2021.0,1964.0,PRIVATE,21,Scarborough Centre,1651 VICTORIA PARK AVE,8,67,2021-09-30,47,Building Audit,19,3.0,3.0,3.0,1.0,2.0,3.0,1.0,2.0,3.0,2.0,1.0,3.0,2.0,3.0,2.0,2.0,4.0,3.0,2.0,,E2131,43.7328848087,-79.3055213856,320451.154,4843454.222
-888385,4155201,2017.0,2021.0,1965.0,PRIVATE,4,Parkdale-High Park,4075 OLD DUNDAS ST,7,75,2021-09-29,81,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,5.0,,4.0,4.0,5.0,3.0,4.0,3.0,,4.0,4.0,,S0421,43.662438171000005,-79.50353882600001,304498.602,4835610.688999999
-888386,4168721,2021.0,2021.0,1956.0,PRIVATE,5,York South-Weston,870 WESTON RD,3,11,2021-09-29,60,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,3.0,2.0,,3.0,,,3.0,3.0,5.0,2.0,3.0,3.0,,3.0,2.0,,W0535,43.6831377116,-79.48055707479999,306351.965,4837909.4569999995
-888387,4153971,2019.0,2021.0,1953.0,PRIVATE,8,Eglinton-Lawrence,2400 BATHURST ST,6,31,2021-09-29,87,Evaluation needs to be conducted in 3 years,17,5.0,4.0,5.0,4.0,,5.0,,4.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,3.0,4.0,,N0832,43.7050294504,-79.4269669508,310670.598,4840343.952
-888388,4155190,2021.0,2021.0,1956.0,PRIVATE,5,York South-Weston,872 WESTON RD,3,12,2021-09-29,60,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,3.0,2.0,,3.0,,,3.0,3.0,5.0,2.0,3.0,3.0,,3.0,2.0,,W0535,43.683182052700005,-79.4807822687,306333.807,4837914.38
-888389,4229124,2017.0,2021.0,1955.0,PRIVATE,9,Davenport,12 RUSHOLME DR,4,29,2021-09-29,80,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,4.0,4.0,4.0,5.0,4.0,2.0,4.0,,4.0,4.0,,S0934,43.6500598617,-79.42855445020001,310547.845,4834236.883
-888390,4154996,2017.0,2021.0,1940.0,PRIVATE,12,Toronto-St. Paul's,261 VAUGHAN RD,3,33,2021-09-28,73,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,3.0,3.0,,3.0,,,3.0,4.0,5.0,3.0,3.0,4.0,3.0,4.0,4.0,,S1229,43.6888528709,-79.4258553114,310761.723,4838546.846
-888391,4154156,2017.0,2021.0,1966.0,PRIVATE,15,Don Valley West,71 THORNCLIFFE PARK DR,21,320,2021-09-28,55,Evaluation needs to be conducted in 1 year,19,3.0,4.0,4.0,1.0,3.0,4.0,1.0,2.0,2.0,3.0,2.0,2.0,4.0,3.0,3.0,3.0,4.0,3.0,1.0,,N1533,43.704542152799995,-79.3403837567,317648.798,4840299.515
-888392,4154989,2017.0,2021.0,1934.0,PRIVATE,12,Toronto-St. Paul's,235 VAUGHAN RD,4,24,2021-09-28,74,Evaluation needs to be conducted in 2 years,13,4.0,4.0,4.0,4.0,,3.0,,3.0,,,4.0,3.0,4.0,4.0,4.0,3.0,,4.0,,,S1229,43.6881730014,-79.4242567754,310890.66,4838471.429
-888393,4155815,2017.0,2021.0,1958.0,PRIVATE,12,Toronto-St. Paul's,208 VAUGHAN RD <>,4,25,2021-09-28,63,Evaluation needs to be conducted in 1 year,13,3.0,3.0,3.0,3.0,,3.0,,3.0,,,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,,,S1229,43.687290954,-79.423401887,310956.75800000003,4838372.124
-888394,4154979,2017.0,2021.0,1930.0,PRIVATE,12,Toronto-St. Paul's,205 VAUGHAN RD,3,46,2021-09-28,71,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,3.0,3.0,4.0,,4.0,,,3.0,3.0,4.0,3.0,4.0,3.0,,3.0,,4.0,S1229,43.6873886469,-79.42234279510001,311045.04,4838384.429
-888395,4154984,2017.0,2021.0,1955.0,PRIVATE,12,Toronto-St. Paul's,180 VAUGHAN RD,4,22,2021-09-28,69,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,3.0,,3.0,,4.0,,,4.0,3.0,3.0,3.0,3.0,3.0,,4.0,3.0,,S1229,43.6865568405,-79.42264744399999,311020.562,4838291.988
-888396,4155126,2017.0,2021.0,1957.0,PRIVATE,5,York South-Weston,1306 WESTON RD,3,11,2021-09-28,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,,3.0,,2.0,,,3.0,4.0,5.0,3.0,2.0,2.0,,3.0,3.0,3.0,W0531,43.6894309704,-79.49695331470001,305030.032,4838608.475
-888397,4154985,2017.0,2021.0,1920.0,PRIVATE,12,Toronto-St. Paul's,172 VAUGHAN RD,3,24,2021-09-28,74,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,3.0,3.0,4.0,,4.0,,3.0,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,4.0,,S1229,43.6862874018,-79.4225082434,311031.811,4838262.062
-888398,4155189,2017.0,2021.0,1954.0,PRIVATE,5,York South-Weston,5 A JASPER AVE,3,10,2021-09-28,60,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,2.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,2.0,,W0535,43.6833549123,-79.4823636932,306206.297,4837933.562
-888399,4152630,2017.0,2021.0,1955.0,PRIVATE,21,Scarborough Centre,880 PHARMACY AVE,4,26,2021-09-28,83,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,4.0,5.0,1.0,,4.0,,5.0,4.0,4.0,5.0,4.0,5.0,4.0,,5.0,5.0,,E2131,43.7291106346,-79.2994551436,320940.832,4843036.085
-888400,4152635,2017.0,2021.0,1955.0,PRIVATE,21,Scarborough Centre,860 PHARMACY AVE,4,30,2021-09-28,88,Evaluation needs to be conducted in 3 years,17,5.0,4.0,5.0,4.0,4.0,5.0,,5.0,,4.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,E2131,43.7280385906,-79.298841109,320990.589,4842917.106000001
-888401,4153965,2017.0,2021.0,1951.0,PRIVATE,8,Eglinton-Lawrence,3 RIDGE HILL DR,4,12,2021-09-28,70,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,3.0,4.0,3.0,,3.0,3.0,,3.0,4.0,5.0,3.0,4.0,4.0,,3.0,3.0,,N0832,43.7030609955,-79.4261250612,310738.645,4840125.312
-888402,4152633,2017.0,2021.0,1955.0,PRIVATE,21,Scarborough Centre,1 RANNOCK ST,4,30,2021-09-28,85,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,,5.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,E2131,43.7279918888,-79.3000339041,320894.507,4842911.688999999
-888403,4152632,2017.0,2021.0,1955.0,PRIVATE,21,Scarborough Centre,32 CRAIGTON DR,4,30,2021-09-28,84,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,3.0,3.0,5.0,5.0,4.0,4.0,4.0,5.0,5.0,4.0,,E2131,43.727697688199996,-79.29944885649999,320941.719,4842879.117
-888404,4152626,2017.0,2021.0,1955.0,PRIVATE,21,Scarborough Centre,10 CRAIGTON DR,4,36,2021-09-28,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,1.0,,5.0,,5.0,3.0,5.0,5.0,4.0,3.0,4.0,,4.0,3.0,,E2131,43.7273459768,-79.3025559656,320691.488,4842839.459
-888405,4152622,2017.0,2021.0,1956.0,PRIVATE,21,Scarborough Centre,9 CRAIGTON DR,4,30,2021-09-28,85,Evaluation needs to be conducted in 2 years,17,4.0,5.0,5.0,4.0,3.0,4.0,,4.0,,5.0,4.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,3.0,,E2131,43.726834232,-79.3021111159,320727.464,4842782.69
-888406,4154599,2017.0,2021.0,1957.0,PRIVATE,6,York Centre,8 ROSSEAU RD,3,11,2021-09-28,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,4.0,4.0,4.0,,4.0,,3.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,N0629,43.7416546097,-79.43708097470001,309852.398,4844412.083000001
-888407,4154749,2017.0,2021.0,1976.0,PRIVATE,18,Willowdale,2 FOREST LANEWAY,29,366,2021-09-28,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N1826,43.763239637,-79.409191362,312077.26399999997,4846803.075
-888408,4269245,2018.0,2021.0,1975.0,PRIVATE,18,Willowdale,6 FOREST LANEWAY,29,406,2021-09-28,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,N1826,,,312081.81,4846729.53
-888409,4156258,2017.0,2021.0,1975.0,PRIVATE,18,Willowdale,4 FOREST LANEWAY,29,277,2021-09-28,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,,N1826,43.762630953999995,-79.409754662,312057.524,4846740.513
-888410,4153963,2017.0,2021.0,1941.0,TCHC,8,Eglinton-Lawrence,800 EGLINTON AVE W,4,36,2021-09-28,65,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,,,3.0,3.0,4.0,3.0,3.0,3.0,2.0,3.0,3.0,,N0832,43.7014745383,-79.4245394908,310866.596,4839949.174
-888411,4152948,2017.0,2021.0,1994.0,SOCIAL HOUSING,5,York South-Weston,17 MC CORMACK ST,4,61,2021-09-28,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,W0540,43.6763328367,-79.4723721039,307012.089,4837153.6219999995
-888412,4153961,2017.0,2021.0,1952.0,PRIVATE,8,Eglinton-Lawrence,780 EGLINTON AVE W,7,87,2021-09-28,85,Evaluation needs to be conducted in 2 years,17,5.0,4.0,5.0,4.0,5.0,3.0,,4.0,3.0,,5.0,5.0,5.0,3.0,4.0,5.0,4.0,4.0,4.0,,N0832,43.7019615716,-79.42270245649999,311014.608,4840003.42
-888413,4153962,2017.0,2021.0,1941.0,TCHC,8,Eglinton-Lawrence,790 EGLINTON AVE W,4,57,2021-09-28,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,2.0,3.0,3.0,,N0832,43.7016899071,-79.4236478607,310938.438,4839973.166999999
-888414,4155683,2017.0,2021.0,1960.0,PRIVATE,7,Humber River-Black Creek,3330 WESTON RD,4,97,2021-09-27,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,5.0,,W0727,43.7442275359,-79.5409803297,301483.919,4844696.906
-888415,4153821,2017.0,2021.0,1963.0,PRIVATE,12,Toronto-St. Paul's,250 ROEHAMPTON AVE,11,91,2021-09-27,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,3.0,4.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,,S1221,43.709736351000004,-79.391538167,313525.015,4840870.962
-888416,4156325,2017.0,2021.0,1960.0,PRIVATE,7,Humber River-Black Creek,3328 WESTON RD,4,93,2021-09-27,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,W0727,43.74317239,-79.541078057,301501.70399999997,4844591.777
-888417,4154387,2017.0,2021.0,1958.0,PRIVATE,6,York Centre,1515 WILSON AVE,4,55,2021-09-25,61,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,2.0,3.0,,3.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0631,43.7208314192,-79.50603393760001,304298.338,4842096.898
-888418,4154386,2017.0,2021.0,1958.0,PRIVATE,6,York Centre,1525 WILSON AVE,4,21,2021-09-25,60,Evaluation needs to be conducted in 1 year,17,2.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,2.0,,N0631,43.7207617209,-79.5064382692,304265.757,4842089.159
-888419,4153951,2017.0,2021.0,1957.0,PRIVATE,8,Eglinton-Lawrence,564 EGLINTON AVE W,5,25,2021-09-23,71,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,3.0,3.0,,3.0,3.0,,3.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,,N0833,43.7031541679,-79.4167347676,311495.469,4840136.385
-888420,4156002,2017.0,2021.0,1937.0,PRIVATE,8,Eglinton-Lawrence,1798 EGLINTON AVE W,3,34,2021-09-23,56,Evaluation needs to be conducted in 1 year,14,2.0,3.0,4.0,3.0,2.0,3.0,,2.0,,,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,N0831,43.696142079,-79.44919947300001,308871.662,4839354.179
-888421,4153804,2017.0,2021.0,1972.0,TCHC,12,Toronto-St. Paul's,220 EGLINTON AVE E,10,99,2021-09-23,69,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,3.0,4.0,,4.0,3.0,3.0,3.0,3.0,5.0,3.0,4.0,3.0,4.0,4.0,3.0,,S1221,43.7083967721,-79.391625027,313518.471,4840721.175
-888422,4153001,2017.0,2021.0,1900.0,PRIVATE,4,Parkdale-High Park,120 DOWLING AVE,3,17,2021-09-23,63,Evaluation needs to be conducted in 1 year,14,3.0,3.0,4.0,3.0,,3.0,,4.0,,,3.0,4.0,5.0,2.0,2.0,3.0,3.0,2.0,,,S0437,43.63647140770001,-79.4388819579,309715.834,4832726.665
-888423,4153967,2018.0,2021.0,1960.0,PRIVATE,8,Eglinton-Lawrence,24 SHALLMAR BLVD,4,52,2021-09-23,86,Evaluation needs to be conducted in 3 years,17,4.0,4.0,5.0,4.0,4.0,5.0,,3.0,3.0,,4.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,,N0832,43.7045285856,-79.4267238856,310690.23699999996,4840288.326
-888424,4153960,2018.0,2021.0,1959.0,PRIVATE,8,Eglinton-Lawrence,630 VESTA DR,7,70,2021-09-22,89,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,3.0,5.0,5.0,,4.0,5.0,,4.0,5.0,5.0,5.0,4.0,4.0,4.0,5.0,3.0,,N0832,43.7030025746,-79.4254211861,310795.381,4840118.8719999995
-888425,4154513,2018.0,2021.0,1956.0,PRIVATE,8,Eglinton-Lawrence,66 WASDALE CRES,3,13,2021-09-22,58,Evaluation needs to be conducted in 1 year,16,3.0,2.0,4.0,3.0,3.0,3.0,,2.0,,,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,,N0823,43.7306506832,-79.43803806380001,309776.21,4843189.578
-888426,4153955,2017.0,2021.0,1965.0,PRIVATE,8,Eglinton-Lawrence,10 SHALLMAR BLVD,11,138,2021-09-22,84,Evaluation needs to be conducted in 2 years,19,5.0,5.0,5.0,3.0,5.0,3.0,3.0,4.0,5.0,,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,N0832,43.704286951,-79.423280437,310967.522,4840262.673
-888427,4153949,2017.0,2021.0,1953.0,PRIVATE,8,Eglinton-Lawrence,4 LATIMER AVE,5,65,2021-09-21,79,Evaluation needs to be conducted in 2 years,16,5.0,5.0,5.0,3.0,3.0,3.0,,3.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,N0833,43.7032107551,-79.4163543553,311526.123,4840142.702
-888428,4937758,2021.0,2021.0,1940.0,PRIVATE,11,University-Rosedale,424 YONGE ST,10,210,2021-06-22,81,Evaluation needs to be conducted in 2 years,16,5.0,4.0,3.0,4.0,4.0,5.0,3.0,3.0,5.0,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,S1145,43.6604990067,-79.3839774936,314228.403,4835355.504
-888429,4915028,2021.0,2021.0,2021.0,PRIVATE,11,University-Rosedale,484 SPADINA AVE,16,166,2021-06-22,99,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,5.0,,5.0,5.0,4.0,5.0,,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,,S1138,43.6582941155,-79.40075313850001,312789.392,4835153.945
-888430,4155609,2017.0,2021.0,1970.0,TCHC,14,Toronto-Danforth,2 PHIN AVE,3,34,2021-05-14,71,Evaluation needs to be conducted in 2 years,15,3.0,4.0,3.0,3.0,3.0,4.0,,4.0,,4.0,3.0,3.0,4.0,4.0,4.0,4.0,,3.0,,,S1431,43.6788050577,-79.33587160260001,318018.089,4837440.899
-888431,4154086,2017.0,2021.0,1986.0,TCHC,14,Toronto-Danforth,266 DONLANDS AVE,8,254,2021-05-14,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1422,43.6896562892,-79.3419083036,317529.06899999996,4838645.48
-888432,4155471,2017.0,2021.0,1992.0,TCHC,3,Etobicoke-Lakeshore,98 CAVELL AVE,6,100,2021-05-12,75,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,,2.0,4.0,4.0,5.0,4.0,3.0,,4.0,,,W0336,43.616184073999996,-79.49590117,305111.3,4830450.134
-888433,4155654,2017.0,2021.0,1962.0,TCHC,3,Etobicoke-Lakeshore,5005 DUNDAS ST W,19,255,2021-05-12,69,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,2.0,3.0,4.0,4.0,4.0,3.0,,2.0,4.0,2.0,4.0,4.0,4.0,3.0,3.0,4.0,,W0321,43.6460539737,-79.53072049149999,302305.928,4833790.048
-888434,4155514,2017.0,2021.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,8 LAKE SHORE DR,3,11,2021-05-11,59,Evaluation needs to be conducted in 1 year,14,3.0,4.0,2.0,2.0,3.0,3.0,,3.0,,,2.0,3.0,3.0,3.0,4.0,3.0,,3.0,,,W0335,43.6015075472,-79.49800545229999,304945.349,4828840.676
-888435,4155469,2017.0,2021.0,1972.0,TCHC,3,Etobicoke-Lakeshore,340 ROYAL YORK RD,16,307,2021-05-06,78,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,,,W0332,43.6169208542,-79.49934613100001,304837.091,4830553.024
-888436,4156070,2017.0,2021.0,1992.0,SOCIAL HOUSING,1,Etobicoke North,2715 ISLINGTON AVE,5,80,2021-05-06,86,Evaluation needs to be conducted in 3 years,19,4.0,4.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,3.0,4.0,5.0,4.0,,W0126,43.741665101,-79.566395335,299387.542,4844393.19
-888437,4156089,2017.0,2021.0,1977.0,PRIVATE,2,Etobicoke Centre,290 THE KINGSWAY,4,22,2021-05-06,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,2.0,,3.0,,4.0,4.0,4.0,5.0,4.0,5.0,4.0,,4.0,2.0,,W0229,43.663351284799994,-79.5210336725,303087.922,4835711.443
-888438,4156447,2017.0,2021.0,1977.0,PRIVATE,2,Etobicoke Centre,292 THE KINGSWAY,4,22,2021-05-06,74,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,3.0,4.0,2.0,,3.0,,4.0,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,2.0,,W0229,43.6634977142,-79.521320335,303064.81,4835727.717
-888439,4155274,2019.0,2021.0,1958.0,PRIVATE,3,Etobicoke-Lakeshore,22 RIVERWOOD PKWY,4,44,2021-05-06,69,Evaluation needs to be conducted in 2 years,14,3.0,4.0,4.0,3.0,4.0,3.0,,4.0,,,2.0,4.0,5.0,3.0,3.0,3.0,,3.0,,,W0327,43.6388094067,-79.489549092,305627.568,4832984.75
-888440,4153153,2018.0,2021.0,1925.0,PRIVATE,9,Davenport,34 HEYDON PARK RD,3,31,2021-05-05,73,Evaluation needs to be conducted in 2 years,15,4.0,3.0,3.0,3.0,4.0,4.0,,4.0,,,3.0,4.0,5.0,4.0,3.0,3.0,,4.0,4.0,,S0934,43.652968445,-79.42702254699999,310670.881,4834561.084
-888441,4153114,2017.0,2021.0,1957.0,PRIVATE,9,Davenport,917 ST CLAIR AVE W,3,16,2021-05-05,71,Evaluation needs to be conducted in 2 years,16,3.0,4.0,3.0,3.0,4.0,4.0,,4.0,,3.0,3.0,3.0,4.0,3.0,4.0,4.0,,4.0,4.0,,S0928,43.679643941,-79.434130411,310095.081,4837524.129
-888442,4155502,2019.0,2021.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,2517 LAKE SHORE BLVD W,4,42,2021-05-05,57,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,4.0,,1.0,,,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,,W0336,43.611248843599995,-79.4897028689,305617.985,4829937.637
-888443,4153161,,2021.0,1926.0,PRIVATE,9,Davenport,1121 BLOOR ST W,4,11,2021-05-05,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,3.0,,3.0,,4.0,,3.0,3.0,4.0,4.0,4.0,3.0,3.0,,4.0,4.0,,S0934,43.659766697799995,-79.4348680192,310037.689,4835314.866
-888444,4153108,2018.0,2021.0,,PRIVATE,9,Davenport,156 BRANDON AVE,4,19,2021-05-05,67,Evaluation needs to be conducted in 2 years,14,3.0,3.0,3.0,3.0,,4.0,,3.0,,,3.0,3.0,5.0,4.0,3.0,3.0,,4.0,3.0,,S0927,43.669233242,-79.44593058699999,309144.453,4836366.875
-888445,4153115,2017.0,2021.0,1930.0,PRIVATE,9,Davenport,109 GLENHOLME AVE,3,15,2021-05-05,81,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,4.0,,4.0,,,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S0928,43.6786824154,-79.4384961713,309743.43100000004,4837416.085
-888446,4152924,2017.0,2021.0,1992.0,TCHC,9,Davenport,77 RANKIN CRES,7,121,2021-05-05,73,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,3.0,3.0,4.0,3.0,4.0,4.0,,3.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,S0929,43.658340191,-79.446051646,309135.503,4835156.725
-888447,4155764,2019.0,2021.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,1 A BIRCHLEA AVE,3,21,2021-05-05,37,Building Audit,14,2.0,2.0,3.0,1.0,1.0,2.0,,2.0,,,1.0,1.0,3.0,2.0,2.0,2.0,,2.0,,,W0334,43.592762174499995,-79.527405433,302571.59,4827869.423
-888448,4153113,2017.0,2021.0,1930.0,PRIVATE,9,Davenport,921 ST CLAIR AVE W,4,23,2021-05-05,78,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,4.0,4.0,3.0,,4.0,,4.0,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S0928,43.679604386,-79.434318956,310079.882,4837519.722
-888449,4153112,2017.0,2021.0,1930.0,PRIVATE,9,Davenport,923 ST CLAIR AVE W,4,24,2021-05-05,78,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,4.0,4.0,3.0,,4.0,,4.0,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S0928,43.679556649,-79.434507969,310064.646,4837514.406
-888450,4153111,2017.0,2021.0,1930.0,PRIVATE,9,Davenport,925 ST CLAIR AVE W,4,24,2021-05-05,74,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,4.0,3.0,3.0,,4.0,,4.0,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S0928,43.6795294913,-79.4347109535,310048.545,4837510.422
-888451,4155504,2017.0,2021.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,2507 LAKE SHORE BLVD W,3,21,2021-05-05,45,Building Audit,15,2.0,2.0,2.0,2.0,2.0,2.0,,3.0,,2.0,2.0,1.0,3.0,3.0,2.0,3.0,,3.0,,,W0336,43.6119437281,-79.4894785843,305633.594,4830000.121
-888452,4155014,2017.0,2021.0,1952.0,PRIVATE,9,Davenport,345 WESTMOUNT AVE,3,29,2021-05-05,71,Evaluation needs to be conducted in 2 years,14,3.0,4.0,4.0,3.0,,3.0,,4.0,,,3.0,3.0,4.0,4.0,4.0,3.0,,4.0,4.0,,S0925,43.684414026800006,-79.4441626996,309286.131,4838052.524
-888453,4153116,2017.0,2021.0,1951.0,PRIVATE,9,Davenport,1095 ST CLAIR AVE W,3,11,2021-05-05,64,Evaluation needs to be conducted in 1 year,15,3.0,4.0,3.0,3.0,,3.0,,3.0,,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,,S0928,43.678255875,-79.4404625992,309584.915,4837368.586
-888454,4153106,2017.0,2021.0,1992.0,SOCIAL HOUSING,9,Davenport,223 OSLER ST,4,13,2021-05-05,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,,,3.0,3.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,S0926,43.669760121,-79.458975993,308092.381,4836424.835
-888455,4152925,2017.0,2021.0,1994.0,TCHC,9,Davenport,11 RANDOLPH AVE,6,95,2021-05-05,74,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,4.0,4.0,,4.0,3.0,4.0,3.0,4.0,5.0,4.0,3.0,4.0,3.0,4.0,4.0,,S0929,43.658298977200005,-79.4502110226,308800.29,4835150.998
-888456,4155707,2017.0,2021.0,1970.0,TCHC,2,Etobicoke Centre,27 SCARLETTWOOD CRT,3,14,2021-05-04,67,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,2.0,3.0,4.0,,3.0,,3.0,3.0,5.0,5.0,3.0,2.0,3.0,4.0,4.0,3.0,,W0224,43.693274018000004,-79.516001007,303494.335,4839036.572
-888457,4155373,2017.0,2021.0,1966.0,PRIVATE,2,Etobicoke Centre,340 THE EAST MALL,8,77,2021-05-04,84,Evaluation needs to be conducted in 2 years,19,4.0,5.0,5.0,4.0,5.0,4.0,,4.0,4.0,4.0,4.0,5.0,5.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,W0234,43.639211983,-79.55727457399999,300163.043,4833031.882
-888458,4885483,2021.0,2021.0,2017.0,PRIVATE,11,University-Rosedale,2 ST THOMAS ST,26,248,2021-05-04,100,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,,S1136,43.668117872399996,-79.39082961439999,313588.375,4836246.356000001
-888459,4356415,2018.0,2021.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,173 STEPHEN DR,6,13,2021-05-04,79,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,4.0,,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,,,W0327,43.6396535446,-79.487507425,305766.456,4833070.166
-888460,4156285,2017.0,2021.0,1956.0,PRIVATE,2,Etobicoke Centre,319 THE KINGSWAY,3,21,2021-05-04,74,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,3.0,4.0,3.0,,3.0,,4.0,4.0,3.0,5.0,4.0,3.0,3.0,,4.0,3.0,,W0229,43.665207485500005,-79.5235149281,302887.88899999997,4835917.715
-888461,4155507,2017.0,2021.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,2666 LAKE SHORE BLVD W,4,16,2021-05-04,69,Evaluation needs to be conducted in 2 years,14,3.0,3.0,4.0,4.0,4.0,2.0,,3.0,,,3.0,4.0,4.0,3.0,4.0,4.0,,3.0,,,W0335,43.6034395527,-79.4942895822,305245.309,4829055.318
-888462,4356717,2018.0,2021.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,177 STEPHEN DR,4,44,2021-05-04,69,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,4.0,2.0,2.0,4.0,4.0,3.0,4.0,4.0,3.0,2.0,,,W0327,43.639915396999996,-79.487892324,305761.06,4833089.217
-888463,4155506,2017.0,2021.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,2660 LAKE SHORE BLVD W,4,15,2021-05-04,70,Evaluation needs to be conducted in 2 years,14,3.0,4.0,4.0,3.0,4.0,2.0,,3.0,,,4.0,4.0,4.0,3.0,4.0,4.0,,3.0,,,W0335,43.6035699967,-79.4939393682,305273.57899999997,4829069.811000001
-888464,4155267,2017.0,2021.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,10 HILL HEIGHTS RD,4,34,2021-05-03,69,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,2.0,4.0,,3.0,,4.0,3.0,3.0,5.0,2.0,4.0,3.0,4.0,3.0,3.0,,W0327,43.639073561000004,-79.4920727048,305423.94,4833014.077
-888465,4155257,2017.0,2021.0,1968.0,PRIVATE,3,Etobicoke-Lakeshore,5 HILL HEIGHTS RD,5,36,2021-05-03,83,Evaluation needs to be conducted in 2 years,18,5.0,5.0,5.0,4.0,4.0,3.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,3.0,4.0,3.0,,W0327,43.638458523599994,-79.4925019413,305389.291,4832945.746
-888466,4155255,2017.0,2021.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,1 HILL HEIGHTS RD,4,30,2021-05-03,79,Evaluation needs to be conducted in 2 years,17,4.0,5.0,4.0,3.0,4.0,4.0,,4.0,,3.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,2.0,,W0327,43.638061568299996,-79.4937696446,305286.99,4832901.638
-888467,4155351,2017.0,2021.0,1995.0,SOCIAL HOUSING,2,Etobicoke Centre,1447 ROYAL YORK RD,4,108,2021-05-03,92,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,,4.0,5.0,5.0,5.0,4.0,4.0,,5.0,4.0,,W0224,43.6865275325,-79.5276550192,302554.88300000003,4838286.392
-888468,4155317,2017.0,2021.0,1958.0,PRIVATE,2,Etobicoke Centre,14-16 ANGLESEY BLVD,4,24,2021-05-03,75,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,3.0,4.0,3.0,,3.0,,4.0,3.0,4.0,5.0,4.0,5.0,2.0,,4.0,4.0,,W0229,43.6652491637,-79.52117214020001,303076.82399999996,4835922.29
-888469,4155242,2017.0,2021.0,1959.0,PRIVATE,3,Etobicoke-Lakeshore,10 KINSDALE BLVD,4,23,2021-05-03,71,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,4.0,3.0,,4.0,,3.0,4.0,4.0,5.0,3.0,2.0,4.0,4.0,3.0,2.0,,W0329,43.635816471999995,-79.491575949,305463.99600000004,4832652.234
-888470,4155229,2017.0,2021.0,1956.0,PRIVATE,3,Etobicoke-Lakeshore,5 KINSDALE BLVD,4,22,2021-05-03,74,Evaluation needs to be conducted in 2 years,17,4.0,5.0,4.0,4.0,3.0,2.0,,4.0,,3.0,4.0,4.0,5.0,3.0,5.0,3.0,3.0,4.0,3.0,,W0329,43.635353724,-79.49124561,305490.661,4832600.828
-888471,4155238,2017.0,2021.0,1953.0,PRIVATE,3,Etobicoke-Lakeshore,4 KINSDALE BLVD,4,42,2021-05-03,69,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,2.0,3.0,4.0,,4.0,,,2.0,3.0,4.0,3.0,4.0,3.0,4.0,3.0,4.0,,W0329,43.636181771000004,-79.48992422,305597.035,4832693.783
-888472,4155246,2017.0,2021.0,1956.0,PRIVATE,3,Etobicoke-Lakeshore,2 KINSDALE BLVD,4,45,2021-05-03,84,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,4.0,4.0,,3.0,,4.0,4.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,3.0,,W0329,43.637018605,-79.488272958,305733.855,4832772.095
-888473,4155236,2017.0,2021.0,1956.0,PRIVATE,3,Etobicoke-Lakeshore,2 NEWHOLM RD,4,51,2021-05-03,74,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,4.0,3.0,4.0,,4.0,,3.0,3.0,3.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,,W0329,43.6360380172,-79.48840230260001,305720.128,4832676.874
-888474,4153389,2018.0,2021.0,1993.0,SOCIAL HOUSING,13,Toronto Centre,110 THE ESPLANADE,9,205,2021-05-03,82,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,,,S1339,43.6480302618,-79.3723912336,315078.766,4834016.84
-888475,4155333,2017.0,2021.0,1955.0,PRIVATE,2,Etobicoke Centre,15 ANGLESEY BLVD,3,41,2021-05-03,84,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,5.0,3.0,,3.0,,4.0,5.0,4.0,5.0,5.0,5.0,4.0,,5.0,2.0,,W0229,43.6641882866,-79.5210515699,303086.51,4835804.43
-888476,4155914,2017.0,2021.0,1992.0,TCHC,8,Eglinton-Lawrence,3036 BATHURST ST,7,160,2021-04-30,73,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,3.0,3.0,4.0,4.0,4.0,,3.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,,N0827,43.718503226,-79.429840681,310431.385,4841846.135
-888477,4154679,2017.0,2021.0,1953.0,PRIVATE,8,Eglinton-Lawrence,2135 AVENUE RD,3,54,2021-04-30,74,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,3.0,3.0,4.0,,3.0,4.0,,3.0,3.0,5.0,3.0,3.0,4.0,,4.0,4.0,,N0824,43.739166681099995,-79.42089963859999,311155.974,4844136.782
-888478,4153857,2017.0,2021.0,1987.0,TCHC,15,Don Valley West,2567 YONGE ST,6,105,2021-04-30,74,Evaluation needs to be conducted in 2 years,17,3.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,,3.0,2.0,5.0,4.0,4.0,4.0,,5.0,3.0,,N1526,43.714048186499994,-79.3993963134,312891.412,4841348.24
-888479,4153859,2017.0,2021.0,1937.0,TCHC,15,Don Valley West,2745 YONGE ST,4,41,2021-04-30,71,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,3.0,,3.0,3.0,4.0,,,3.0,3.0,4.0,4.0,3.0,4.0,,4.0,3.0,,N1526,43.7180441891,-79.4001039683,312833.856,4841792.101
-888480,4153860,2017.0,2021.0,1970.0,TCHC,15,Don Valley West,2765 YONGE ST,4,31,2021-04-30,73,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,,,3.0,3.0,5.0,4.0,4.0,3.0,,4.0,3.0,,N1526,43.7184879937,-79.40010634069999,312833.606,4841841.405
-888481,4153515,2017.0,2021.0,1994.0,TCHC,13,Toronto Centre,21 ST JOSEPH ST,5,35,2021-04-30,83,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,5.0,5.0,5.0,4.0,4.0,5.0,,4.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,,S1321,43.665635432399995,-79.386388138,313946.94899999996,4835971.066000001
-888482,4155641,2017.0,2021.0,1957.0,TCHC,8,Eglinton-Lawrence,51 BLOSSOMFIELD DR,4,30,2021-04-30,67,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,2.0,4.0,3.0,,3.0,,,2.0,3.0,5.0,3.0,3.0,4.0,,4.0,4.0,,N0823,43.718564843500005,-79.44814255760001,308963.0,4841846.317
-888483,4155595,2017.0,2021.0,1996.0,TCHC,10,Spadina-Fort York,1 CHURCH ST,13,115,2021-04-30,87,Evaluation needs to be conducted in 3 years,18,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,4.0,5.0,5.0,5.0,4.0,5.0,,4.0,4.0,4.0,S1038,43.647032851599995,-79.3728697107,315040.337,4833905.973999999
-888484,4153617,2017.0,2021.0,1955.0,PRIVATE,14,Toronto-Danforth,856-858 BROADVIEW AVE,4,23,2021-04-30,66,Evaluation needs to be conducted in 2 years,14,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,4.0,4.0,3.0,3.0,4.0,,3.0,,,S1424,,,316192.655,4837481.068
-888485,4153568,2017.0,2021.0,1992.0,SOCIAL HOUSING,13,Toronto Centre,205 PARLIAMENT ST,6,16,2021-04-30,89,Evaluation needs to be conducted in 3 years,18,4.0,5.0,5.0,5.0,5.0,5.0,,4.0,4.0,,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,S1330,43.656443931000005,-79.364457056,315717.036,4834953.523
-888486,4156004,2018.0,2021.0,1945.0,PRIVATE,9,Davenport,34 ROSECLIFFE AVE,4,26,2021-04-30,67,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,3.0,2.0,3.0,,4.0,,2.0,3.0,4.0,5.0,3.0,3.0,4.0,,3.0,,,S0925,43.683920089,-79.44397293600001,309292.74600000004,4837996.205
-888487,4156744,2018.0,2021.0,1945.0,PRIVATE,9,Davenport,36 ROSECLIFFE AVE,4,26,2021-04-30,71,Evaluation needs to be conducted in 2 years,13,3.0,3.0,5.0,3.0,,3.0,,4.0,,,3.0,4.0,5.0,3.0,3.0,4.0,,3.0,,,S0925,43.683961366000005,-79.443796242,309315.445,4838003.208000001
-888488,4155117,2017.0,2021.0,1970.0,PRIVATE,5,York South-Weston,5 GREENTREE CRT,3,17,2021-04-30,70,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,,3.0,3.0,4.0,5.0,3.0,4.0,3.0,,4.0,3.0,,W0532,43.692263947200004,-79.4789792359,306478.974,4838923.358
-888489,4154566,2017.0,2021.0,1960.0,PRIVATE,8,Eglinton-Lawrence,96 MULHOLLAND AVE,3,11,2021-04-30,69,Evaluation needs to be conducted in 2 years,15,2.0,4.0,4.0,2.0,3.0,3.0,,4.0,,,2.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,N0823,43.7207064297,-79.4552747615,308388.209,4842083.9180000005
-888490,4155626,2017.0,2021.0,1957.0,TCHC,8,Eglinton-Lawrence,5 LEILA LANE,3,31,2021-04-30,69,Evaluation needs to be conducted in 2 years,16,2.0,4.0,5.0,3.0,4.0,4.0,,4.0,4.0,,2.0,3.0,5.0,3.0,2.0,3.0,,3.0,4.0,,N0823,43.721282345,-79.44523975,309196.44899999996,4842149.3319999995
-888491,4153644,2017.0,2021.0,1996.0,SOCIAL HOUSING,14,Toronto-Danforth,1119 GERRARD ST E,5,29,2021-04-30,74,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,3.0,4.0,3.0,4.0,,3.0,4.0,4.0,4.0,3.0,3.0,,4.0,3.0,,S1438,43.669541986999995,-79.33319093600001,318246.299,4836419.586
-888492,4604174,,2021.0,,PRIVATE,14,Toronto-Danforth,160 FLOYD AVE,3,12,2021-04-29,60,Evaluation needs to be conducted in 1 year,14,3.0,3.0,2.0,3.0,,3.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1421,43.687577379,-79.34848109100001,316999.391,4838414.515
-888493,4154602,2017.0,2021.0,1950.0,PRIVATE,6,York Centre,4110 BATHURST ST,3,16,2021-04-29,62,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,1.0,3.0,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0629,43.74586214,-79.4365128127,309897.822,4844879.562
-888494,4152998,2017.0,2021.0,1992.0,TCHC,4,Parkdale-High Park,1447 KING ST W,6,59,2021-04-29,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,5.0,5.0,4.0,3.0,4.0,3.0,3.0,4.0,,S0437,43.6366736608,-79.4376587469,309814.512,4832749.203
-888495,4288772,2017.0,2021.0,1996.0,SOCIAL HOUSING,14,Toronto-Danforth,55 PAPE AVE,5,60,2021-04-29,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1441,43.660465246,-79.33700731399999,317932.285,4835415.853999999
-888496,4153646,2017.0,2021.0,1981.0,TCHC,14,Toronto-Danforth,369 PAPE AVE,8,139,2021-04-29,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,5.0,3.0,3.0,4.0,,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,S1430,43.6698117311,-79.3407107259,317629.833,4836441.05
-888497,4153592,2017.0,2021.0,1910.0,PRIVATE,13,Toronto Centre,2 PROSPECT ST,4,15,2021-04-29,71,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,3.0,2.0,3.0,,4.0,,,3.0,4.0,5.0,3.0,3.0,5.0,3.0,4.0,,,S1323,43.6667667454,-79.3716022421,315139.21,4836098.467
-888498,4155900,2017.0,2021.0,1895.0,PRIVATE,11,University-Rosedale,88 OXFORD ST,4,11,2021-04-29,67,Evaluation needs to be conducted in 2 years,14,3.0,3.0,4.0,3.0,4.0,2.0,,4.0,,,4.0,3.0,5.0,4.0,3.0,3.0,,2.0,,,S1143,43.655848559,-79.404681489,312472.609,4834882.84
-888499,4153049,2017.0,2021.0,1969.0,PRIVATE,4,Parkdale-High Park,246 RONCESVALLES AVE,3,22,2021-04-29,76,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,3.0,3.0,4.0,,3.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,S0432,43.64608157479999,-79.4494284901,308864.225,4833793.7530000005
-888500,4890985,2021.0,2021.0,2019.0,PRIVATE,10,Spadina-Fort York,1100 KING ST W,35,506,2021-04-29,99,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,S1026,,,310980.728,4833129.695
-888501,4270170,2017.0,2021.0,1972.0,PRIVATE,11,University-Rosedale,88 BLOOR ST E,25,336,2021-04-29,80,Evaluation needs to be conducted in 2 years,17,5.0,5.0,5.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,5.0,5.0,4.0,4.0,4.0,,4.0,,,S1129,43.67085484850001,-79.3850117463,314057.161,4836551.058999999
-888502,4153652,2018.0,2021.0,1922.0,PRIVATE,14,Toronto-Danforth,796 CARLAW AVE,4,31,2021-04-29,58,Evaluation needs to be conducted in 1 year,13,3.0,3.0,4.0,3.0,,3.0,,3.0,,,3.0,3.0,2.0,3.0,3.0,3.0,,2.0,,,S1425,43.678845919,-79.34781782399999,317054.646,4837444.5819999995
-888503,4152915,2017.0,2021.0,1923.0,PRIVATE,4,Parkdale-High Park,2520 BLOOR ST W,4,22,2021-04-29,63,Evaluation needs to be conducted in 1 year,16,2.0,3.0,4.0,3.0,2.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,4.0,,S0430,43.6480530938,-79.4893694695,305641.932,4834011.683
-888504,4569135,2019.0,2021.0,1956.0,PRIVATE,14,Toronto-Danforth,135 SAMMON AVE,3,11,2021-04-29,66,Evaluation needs to be conducted in 2 years,16,3.0,4.0,3.0,3.0,3.0,3.0,,4.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,3.0,,S1422,43.6850791771,-79.3423568405,317493.881,4838136.9180000005
-888505,4152634,2017.0,2021.0,1959.0,PRIVATE,21,Scarborough Centre,5 RANNOCK ST,4,28,2021-04-29,78,Evaluation needs to be conducted in 2 years,16,5.0,3.0,3.0,4.0,3.0,4.0,,3.0,,,3.0,3.0,5.0,5.0,4.0,3.0,5.0,5.0,4.0,,E2131,43.7284977107,-79.2991802272,320963.145,4842968.046
-888506,4156726,2017.0,2021.0,2012.0,SOCIAL HOUSING,13,Toronto Centre,40 OAK ST,4,87,2021-04-29,65,Evaluation needs to be conducted in 1 year,17,3.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,,3.0,4.0,2.0,4.0,3.0,3.0,,3.0,,3.0,S1330,,,315649.499,4835505.392
-888507,4153710,2017.0,2021.0,1910.0,PRIVATE,19,Beaches-East York,2 MAIN ST,3,11,2021-04-28,20,Building Audit,20,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,S1935,43.679038326000004,-79.298376637,321040.936,4837474.429
-888508,4153661,2017.0,2021.0,1985.0,SOCIAL HOUSING,14,Toronto-Danforth,51 DONLANDS AVE,5,53,2021-04-28,71,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,3.0,4.0,3.0,4.0,4.0,,3.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,,S1427,43.6811775403,-79.3372646974,317905.252,4837704.244
-888509,4154142,2017.0,2021.0,1945.0,PRIVATE,14,Toronto-Danforth,9 ELMSDALE RD,4,38,2021-04-28,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,4.0,3.0,4.0,5.0,3.0,4.0,4.0,,3.0,4.0,,S1422,43.6947032989,-79.3438349968,317372.708,4839205.914
-888510,4154611,2017.0,2021.0,1989.0,TCHC,6,York Centre,2 FAYWOOD BLVD,3,40,2021-04-28,66,Evaluation needs to be conducted in 2 years,18,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0629,43.735314433,-79.446969691,309056.09,4843708.153
-888511,4153624,2019.0,2021.0,1995.0,SOCIAL HOUSING,14,Toronto-Danforth,802 EASTERN AVE,3,16,2021-04-28,59,Evaluation needs to be conducted in 1 year,16,2.0,3.0,4.0,2.0,,3.0,,3.0,3.0,,2.0,2.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,,S1441,43.661637945900004,-79.3298622257,318506.50800000003,4835534.706
-888512,4154639,2017.0,2021.0,1969.0,PRIVATE,6,York Centre,601 FINCH AVE W,14,170,2021-04-28,64,Evaluation needs to be conducted in 1 year,19,3.0,4.0,3.0,3.0,2.0,3.0,2.0,3.0,4.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,4.0,4.0,3.0,,N0624,43.770708386,-79.45171713,308671.446,4847640.0139999995
-888513,4154408,2017.0,2021.0,1996.0,SOCIAL HOUSING,6,York Centre,1206 WILSON AVE,5,68,2021-04-28,71,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,3.0,3.0,4.0,4.0,3.0,,3.0,4.0,5.0,3.0,3.0,4.0,,4.0,3.0,3.0,N0627,43.725308739,-79.48942495600001,305636.238,4842595.268
-888514,4153381,2017.0,2021.0,1983.0,TCHC,10,Spadina-Fort York,55 THE ESPLANADE,12,166,2021-04-28,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,4.0,3.0,5.0,4.0,4.0,4.0,3.0,3.0,4.0,,S1038,43.6462124055,-79.37472760840001,314890.596,4833814.598
-888515,4155800,2017.0,2021.0,1993.0,TCHC,13,Toronto Centre,140 THE ESPLANADE,7,102,2021-04-28,66,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,4.0,4.0,4.0,4.0,,3.0,3.0,,S1339,43.648548433,-79.37025343100001,315250.877,4834075.626
-888516,4153414,2018.0,2021.0,1961.0,TCHC,11,University-Rosedale,2 MURRAY ST,6,86,2021-04-28,74,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,3.0,4.0,3.0,,4.0,4.0,,3.0,4.0,5.0,3.0,4.0,4.0,,3.0,4.0,,S1144,43.6562993679,-79.3909386716,313581.33,4834933.3780000005
-888517,4888759,,2021.0,1960.0,PRIVATE,19,Beaches-East York,990 O'CONNOR DR,3,18,2021-04-28,57,Evaluation needs to be conducted in 1 year,14,2.0,3.0,4.0,2.0,,3.0,,3.0,,,2.0,3.0,4.0,3.0,3.0,2.0,,3.0,3.0,,S1921,43.7089282139,-79.3107669279,320034.661,4840791.817
-888518,4888762,2022.0,2021.0,1965.0,PRIVATE,19,Beaches-East York,994 O'CONNOR DR,3,18,2021-04-28,59,Evaluation needs to be conducted in 1 year,14,2.0,3.0,4.0,3.0,,3.0,,2.0,,,2.0,4.0,4.0,3.0,3.0,2.0,,3.0,3.0,,S1921,43.709051350799996,-79.3106659007,320042.771,4840805.515
-888519,4255529,2017.0,2021.0,1910.0,PRIVATE,9,Davenport,97 NORTHCLIFFE BLVD,3,10,2021-04-28,66,Evaluation needs to be conducted in 2 years,13,3.0,4.0,5.0,3.0,,3.0,,3.0,,,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,,,S0928,43.6782401171,-79.4406119217,309572.876,4837366.827
-888520,4332678,,2021.0,1920.0,PRIVATE,13,Toronto Centre,36 MAITLAND ST,4,27,2021-04-28,76,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,4.0,3.0,4.0,,4.0,,4.0,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,3.0,,S1326,43.664549218699996,-79.3823243085,314274.864,4835850.85
-888521,4888795,2021.0,2021.0,1951.0,PRIVATE,19,Beaches-East York,1000 O'CONNOR DR,3,12,2021-04-28,64,Evaluation needs to be conducted in 1 year,14,3.0,4.0,4.0,3.0,,4.0,,2.0,,,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,2.0,,S1921,43.7092735859,-79.3104170385,320062.769,4840830.249
-888522,4156601,2017.0,2021.0,2010.0,TCHC,13,Toronto Centre,1 OAK ST,10,84,2021-04-28,71,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,4.0,4.0,4.0,4.0,,4.0,3.0,,S1330,43.660640531000006,-79.366069469,315613.334,4835427.868
-888523,4153571,2018.0,2021.0,1969.0,PRIVATE,13,Toronto Centre,210 OAK ST,17,260,2021-04-28,57,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,4.0,2.0,3.0,2.0,,2.0,2.0,4.0,2.0,3.0,3.0,2.0,3.0,3.0,,S1330,43.663368073,-79.358462264,316209.596,4835679.79
-888524,4333863,2018.0,2021.0,1976.0,SOCIAL HOUSING,24,Scarborough-Guildwood,2877 A ELLESMERE RD,12,126,2021-04-28,87,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,5.0,5.0,5.0,4.0,4.0,,4.0,3.0,5.0,5.0,4.0,3.0,4.0,,4.0,3.0,5.0,E2428,43.780692143,-79.203193428,328559.122,4848999.52
-888525,4288126,2017.0,2021.0,1920.0,SOCIAL HOUSING,4,Parkdale-High Park,1339 KING ST W,3,10,2021-04-28,84,Evaluation needs to be conducted in 2 years,14,4.0,4.0,5.0,4.0,,4.0,,4.0,,,5.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S0437,43.6377164768,-79.43262819649999,310220.312,4832865.346
-888526,4154311,2017.0,2021.0,1958.0,PRIVATE,5,York South-Weston,2595 KEELE ST,3,23,2021-04-28,75,Evaluation needs to be conducted in 2 years,16,4.0,3.0,5.0,4.0,3.0,4.0,,3.0,,,4.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,W0523,43.71842644229999,-79.4794939296,306436.812,4841829.8780000005
-888527,4155268,2017.0,2021.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,8 HILL HEIGHTS RD,4,27,2021-04-28,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,3.0,4.0,5.0,4.0,4.0,4.0,3.0,3.0,4.0,,W0327,43.6391002088,-79.4927582679,305368.622,4833017.033
-888528,4155640,2017.0,2021.0,1957.0,TCHC,8,Eglinton-Lawrence,20 VARNA DR,3,31,2021-04-28,67,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,2.0,3.0,3.0,,4.0,,,2.0,3.0,5.0,3.0,3.0,3.0,,4.0,4.0,,N0823,43.7194419613,-79.4399793206,309620.709,4841944.21
-888529,4152826,2017.0,2021.0,1970.0,PRIVATE,24,Scarborough-Guildwood,20 TUXEDO CRT,15,210,2021-04-28,77,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,4.0,4.0,3.0,5.0,4.0,,3.0,5.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,E2422,43.7801851032,-79.2301866878,326502.803,4848725.927
-888530,4153231,2017.0,2021.0,1972.0,SOCIAL HOUSING,11,University-Rosedale,138 PEARS AVE,7,96,2021-04-28,70,Evaluation needs to be conducted in 2 years,14,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,,,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,,,S1127,43.6755554537,-79.3981323279,313033.034,4837080.904
-888531,4155601,2017.0,2021.0,1964.0,TCHC,13,Toronto Centre,275 SHUTER ST,16,299,2021-04-28,61,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,S1329,43.655849077,-79.367907347,315440.851,4834874.0030000005
-888532,4153395,2017.0,2021.0,1900.0,SOCIAL HOUSING,13,Toronto Centre,147 QUEEN ST E,7,76,2021-04-28,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,4.0,3.0,,4.0,3.0,,3.0,3.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,S1334,43.6535746622,-79.3726782657,315054.67,4834632.752
-888533,4153419,2017.0,2021.0,1979.0,TCHC,11,University-Rosedale,34 OXFORD ST,5,189,2021-04-28,70,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,4.0,3.0,4.0,3.0,4.0,4.0,,3.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,,S1143,43.656896921000005,-79.40179055,312705.645,4834999.574
-888534,4155823,2017.0,2021.0,2009.0,TCHC,13,Toronto Centre,246 SACKVILLE ST,8,61,2021-04-28,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,3.0,3.0,4.0,4.0,4.0,,3.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,4.0,S1330,43.660308626,-79.36336913699999,315800.712,4835394.596
-888535,4154290,2017.0,2021.0,1992.0,SOCIAL HOUSING,5,York South-Weston,2214 KEELE ST,7,89,2021-04-28,77,Evaluation needs to be conducted in 2 years,20,3.0,4.0,5.0,3.0,3.0,4.0,3.0,3.0,4.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,W0529,43.7009209193,-79.476922025,306644.572,4839885.152
-888536,4154436,2017.0,2021.0,1970.0,PRIVATE,6,York Centre,2425 JANE ST,20,154,2021-04-28,67,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0627,43.7313917066,-79.5103100485,303954.001,4843270.091
-888537,4250261,2017.0,2021.0,1987.0,SOCIAL HOUSING,4,Parkdale-High Park,1245 KING ST W,3,39,2021-04-28,66,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,4.0,3.0,,3.0,,4.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S0437,43.638488442299995,-79.4287782888,310530.87,4832951.348
-888538,4153178,2017.0,2021.0,1919.0,PRIVATE,11,University-Rosedale,334 BLOOR ST W,3,24,2021-04-28,66,Evaluation needs to be conducted in 2 years,14,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,4.0,5.0,3.0,3.0,4.0,,3.0,,,S1126,43.666839079700004,-79.404253282,312505.959,4836102.924
-888539,4156547,2017.0,2021.0,2010.0,TCHC,13,Toronto Centre,92 CARLTON ST,12,110,2021-04-28,67,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,4.0,,3.0,3.0,,S1326,43.662294376400006,-79.3782139337,314606.727,4835600.825
-888540,4152995,2017.0,2021.0,1989.0,TCHC,4,Parkdale-High Park,75 DOWLING AVE,7,138,2021-04-28,68,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,4.0,3.0,,3.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,S0437,43.635062111,-79.437601411,309819.00800000003,4832571.13
-888541,4152997,2018.0,2021.0,1965.0,PRIVATE,4,Parkdale-High Park,115 DOWLING AVE,9,70,2021-04-28,82,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S0437,43.636352645100004,-79.4380647269,309781.782,4832713.518
-888542,4221299,2017.0,2021.0,1950.0,PRIVATE,9,Davenport,1094 COLLEGE ST,3,19,2021-04-28,81,Evaluation needs to be conducted in 2 years,15,4.0,5.0,5.0,4.0,4.0,4.0,,3.0,,,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,4.0,,S0934,43.6528825044,-79.4321278569,310259.331,4834550.221
-888543,4153613,2017.0,2021.0,1950.0,PRIVATE,14,Toronto-Danforth,812 BROADVIEW AVE,3,24,2021-04-28,60,Evaluation needs to be conducted in 1 year,15,3.0,3.0,1.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,,3.0,S1424,43.677863449499995,-79.3588173792,316168.205,4837332.933999999
-888544,4153396,2017.0,2021.0,1990.0,TCHC,13,Toronto Centre,60 RICHMOND ST E,8,50,2021-04-28,83,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,3.0,4.0,3.0,5.0,,4.0,4.0,5.0,5.0,5.0,4.0,4.0,4.0,,4.0,S1334,43.6525396289,-79.3761942758,314771.228,4834517.345
-888545,4153559,2017.0,2021.0,1982.0,TCHC,10,Spadina-Fort York,15 SCADDING AVE,9,251,2021-04-28,83,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,5.0,3.0,4.0,5.0,5.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1039,43.648589687,-79.366782746,315530.851,4834080.659
-888546,4153601,2017.0,2021.0,1969.0,PRIVATE,13,Toronto Centre,650 PARLIAMENT ST,22,568,2021-04-28,61,Evaluation needs to be conducted in 1 year,18,4.0,4.0,3.0,2.0,4.0,3.0,3.0,4.0,3.0,,3.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,2.0,,S1323,43.6696118145,-79.3706631071,315214.451,4836414.664
-888547,4153417,2017.0,2021.0,1885.0,SOCIAL HOUSING,11,University-Rosedale,87 BELLEVUE AVE,3,28,2021-04-28,71,Evaluation needs to be conducted in 2 years,14,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,3.0,4.0,5.0,4.0,4.0,3.0,,4.0,,,S1143,43.656179273,-79.40360132,312559.687,4834919.685
-888548,4153418,2018.0,2021.0,1988.0,PRIVATE,11,University-Rosedale,99 BELLEVUE AVE,4,16,2021-04-28,68,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,,3.0,3.0,3.0,,,3.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,3.0,,S1143,43.656693312,-79.403904864,312535.13399999996,4834976.766
-888549,4152719,2017.0,2021.0,1960.0,PRIVATE,21,Scarborough Centre,1477 BIRCHMOUNT RD,3,21,2021-04-28,79,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,,4.0,,3.0,,,5.0,5.0,4.0,3.0,4.0,4.0,5.0,4.0,2.0,,E2128,43.7569401059,-79.2882167684,321838.336,4846130.018999999
-888550,4153192,2018.0,2021.0,1963.0,PRIVATE,11,University-Rosedale,68-72 SPADINA RD,11,157,2021-04-28,76,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,2.0,3.0,3.0,,4.0,4.0,3.0,4.0,5.0,5.0,4.0,3.0,3.0,5.0,4.0,,,S1126,43.670432258000005,-79.4055781,312395.55199999997,4836492.651000001
-888551,4902355,,2021.0,,PRIVATE,19,Beaches-East York,2902 ST CLAIR AVE E,3,12,2021-04-28,74,Evaluation needs to be conducted in 2 years,14,3.0,4.0,4.0,3.0,,3.0,,4.0,,,3.0,3.0,5.0,5.0,4.0,3.0,,4.0,4.0,,S1924,43.708134486599995,-79.3018433113,320754.01399999997,4840705.283
-888552,4153226,2017.0,2021.0,1967.0,PRIVATE,11,University-Rosedale,191 ST GEORGE ST,10,105,2021-04-28,77,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,5.0,4.0,5.0,4.0,4.0,3.0,,3.0,3.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,,S1127,43.671558223999995,-79.40109940800001,312759.44399999996,4836628.436000001
-888553,4154656,2017.0,2021.0,1951.0,PRIVATE,8,Eglinton-Lawrence,312 DOUGLAS AVE,3,11,2021-04-28,64,Evaluation needs to be conducted in 1 year,15,2.0,4.0,3.0,3.0,3.0,3.0,,3.0,,,2.0,4.0,5.0,3.0,3.0,4.0,,3.0,3.0,,N0824,43.7238625563,-79.4167257384,311493.898,4842436.978
-888554,4915493,2021.0,2021.0,2020.0,PRIVATE,15,Don Valley West,18 ERSKINE AVE,35,315,2021-04-28,100,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,5.0,,5.0,5.0,5.0,5.0,,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,N1526,,,312961.435,4841057.89
-888555,4156586,2017.0,2021.0,1960.0,PRIVATE,15,Don Valley West,855 MILLWOOD RD,3,22,2021-04-27,60,Evaluation needs to be conducted in 1 year,15,2.0,3.0,4.0,3.0,,3.0,,3.0,,3.0,2.0,2.0,5.0,3.0,3.0,3.0,2.0,4.0,,,N1535,43.7041508326,-79.36627859020001,315561.894,4840252.385
-888556,4153867,2017.0,2021.0,1990.0,TCHC,15,Don Valley West,3179 YONGE ST,5,110,2021-04-27,90,Evaluation needs to be conducted in 3 years,18,4.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,5.0,,3.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,,N1525,43.727336774099996,-79.40205766359999,312675.228,4842824.244
-888557,4888798,2021.0,2021.0,1958.0,PRIVATE,19,Beaches-East York,1004 O'CONNOR DR,3,12,2021-04-27,54,Evaluation needs to be conducted in 1 year,14,3.0,4.0,2.0,2.0,,3.0,,2.0,,,3.0,2.0,3.0,3.0,3.0,3.0,,3.0,2.0,,S1921,43.709391545500004,-79.31032697229999,320069.997,4840843.37
-888558,4888799,,2021.0,,PRIVATE,19,Beaches-East York,1008 O'CONNOR DR,3,12,2021-04-27,56,Evaluation needs to be conducted in 1 year,14,2.0,3.0,3.0,2.0,,3.0,,3.0,,,2.0,3.0,4.0,3.0,2.0,2.0,,4.0,3.0,,S1921,43.7095271974,-79.3102178135,320078.75899999996,4840858.46
-888559,4888801,2021.0,2021.0,1954.0,PRIVATE,19,Beaches-East York,1012 O'CONNOR DR,3,12,2021-04-27,51,Evaluation needs to be conducted in 1 year,14,2.0,4.0,3.0,2.0,,3.0,,2.0,,,2.0,3.0,3.0,3.0,2.0,2.0,,3.0,2.0,,S1921,43.709651808400004,-79.3101171407,320086.84,4840872.322
-888560,4888802,2021.0,2021.0,1980.0,PRIVATE,19,Beaches-East York,1016 O'CONNOR DR,3,12,2021-04-27,65,Evaluation needs to be conducted in 1 year,15,3.0,4.0,3.0,3.0,4.0,3.0,,4.0,,,4.0,3.0,4.0,3.0,3.0,3.0,,3.0,2.0,,S1921,43.7097824646,-79.3100193403,320094.688,4840886.855
-888561,4888803,,2021.0,,PRIVATE,19,Beaches-East York,1020 O'CONNOR DR,3,12,2021-04-27,71,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,4.0,,4.0,,3.0,,,4.0,4.0,5.0,3.0,3.0,3.0,,3.0,2.0,,S1921,43.709917114700005,-79.309915823,320102.99600000004,4840901.833000001
-888562,4888804,,2021.0,,PRIVATE,19,Beaches-East York,1024 O'CONNOR DR,3,12,2021-04-27,70,Evaluation needs to be conducted in 2 years,14,4.0,4.0,3.0,4.0,,3.0,,2.0,,,4.0,4.0,5.0,3.0,4.0,3.0,,4.0,2.0,,S1921,43.710018819,-79.3098385055,320109.201,4840913.146000001
-888563,4152695,2017.0,2021.0,1971.0,PRIVATE,21,Scarborough Centre,10 IONVIEW RD,6,62,2021-04-27,83,Evaluation needs to be conducted in 2 years,18,5.0,5.0,4.0,5.0,4.0,5.0,5.0,5.0,5.0,,3.0,4.0,5.0,3.0,4.0,3.0,5.0,3.0,2.0,,E2133,43.7320328108,-79.27180036840001,323167.844,4843366.427
-888564,4154612,2017.0,2021.0,1965.0,PRIVATE,6,York Centre,20 WILMINGTON AVE,4,13,2021-04-27,65,Evaluation needs to be conducted in 1 year,17,4.0,4.0,3.0,4.0,3.0,3.0,,3.0,,3.0,4.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,2.0,,N0624,43.753481576000006,-79.45330395399999,308544.767,4845726.114
-888565,4155269,2017.0,2021.0,1964.0,PRIVATE,3,Etobicoke-Lakeshore,6 HILL HEIGHTS RD,4,30,2021-04-27,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,,3.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,W0327,43.6390231144,-79.4931494721,305337.05600000004,4833008.466
-888566,4154175,2017.0,2021.0,1988.0,TCHC,15,Don Valley West,12 THORNCLIFFE PARK DR,11,219,2021-04-27,68,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,3.0,3.0,4.0,3.0,3.0,2.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,4.0,,N1533,43.704529308999994,-79.348260442,317013.706,4840297.828
-888567,4250622,2017.0,2021.0,1913.0,PRIVATE,11,University-Rosedale,1 A VERMONT AVE,3,22,2021-04-27,70,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,3.0,4.0,3.0,,4.0,,3.0,4.0,2.0,4.0,3.0,3.0,3.0,4.0,3.0,,,S1125,43.671904761099995,-79.414243936,311699.702,4836664.8319999995
-888568,4221313,2017.0,2021.0,1920.0,PRIVATE,11,University-Rosedale,110 WALMER RD,4,10,2021-04-27,70,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,3.0,3.0,3.0,,5.0,,,3.0,3.0,5.0,4.0,3.0,3.0,3.0,3.0,4.0,,S1126,43.6714919471,-79.4073443984,312256.124,4836619.554
-888569,4154427,2018.0,2021.0,1968.0,PRIVATE,6,York Centre,2900 KEELE ST,3,12,2021-04-27,55,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,2.0,3.0,,2.0,,,3.0,2.0,5.0,2.0,2.0,3.0,2.0,3.0,3.0,,N0627,43.7339448513,-79.4841475929,306061.54,4843553.804
-888570,4153628,2017.0,2021.0,1988.0,SOCIAL HOUSING,14,Toronto-Danforth,15 PAPE AVE,5,77,2021-04-27,78,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,3.0,3.0,4.0,4.0,3.0,,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,5.0,,S1441,43.6594297929,-79.3361462421,318000.182,4835288.371
-888571,4152993,2017.0,2021.0,1977.0,PRIVATE,4,Parkdale-High Park,96 JAMESON AVE,6,72,2021-04-27,68,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,4.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,S0437,43.63476362390001,-79.4354387074,309993.79600000003,4832537.146000001
-888572,4152992,2018.0,2021.0,1960.0,PRIVATE,4,Parkdale-High Park,100 JAMESON AVE,10,80,2021-04-27,60,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,3.0,3.0,,2.0,2.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,2.0,,S0437,43.635119188900006,-79.43565646479999,309976.196,4832576.633
-888573,4152983,2017.0,2021.0,1968.0,PRIVATE,4,Parkdale-High Park,109 JAMESON AVE,7,118,2021-04-27,62,Evaluation needs to be conducted in 1 year,17,3.0,4.0,5.0,2.0,3.0,3.0,,3.0,3.0,,2.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,2.0,,S0437,43.635775261400006,-79.4351441471,310017.478,4832649.546
-888574,4250554,2018.0,2021.0,1898.0,PRIVATE,11,University-Rosedale,409 HURON ST,4,42,2021-04-27,65,Evaluation needs to be conducted in 1 year,16,3.0,4.0,4.0,3.0,3.0,3.0,,2.0,,4.0,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,3.0,,S1135,43.666610495,-79.400824313,312782.257,4836078.804
-888575,4155652,2017.0,2021.0,1974.0,TCHC,8,Eglinton-Lawrence,855 ROSELAWN AVE,17,253,2021-04-27,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,5.0,2.0,3.0,3.0,3.0,4.0,3.0,,3.0,3.0,5.0,3.0,2.0,3.0,4.0,3.0,3.0,,N0831,43.701879441,-79.44147707399999,309501.122,4839993.968
-888576,4155114,2017.0,2021.0,1950.0,PRIVATE,5,York South-Weston,79 CLEARVIEW HTS,4,54,2021-04-27,69,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,3.0,3.0,4.0,,3.0,,3.0,3.0,3.0,4.0,3.0,3.0,4.0,,4.0,3.0,,W0532,43.692294791,-79.482440365,306199.702,4838927.692
-888577,4155113,2017.0,2021.0,1950.0,PRIVATE,5,York South-Weston,81 CLEARVIEW HTS,3,40,2021-04-27,74,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,,3.0,4.0,3.0,4.0,3.0,3.0,4.0,,4.0,3.0,,W0532,43.692447216000005,-79.48271117899999,306177.868,4838944.6219999995
-888578,4155728,2018.0,2021.0,1970.0,PRIVATE,11,University-Rosedale,318 CLINTON ST,3,12,2021-04-27,69,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,3.0,4.0,5.0,4.0,3.0,4.0,3.0,3.0,3.0,,S1133,43.662511226999996,-79.417002758,311478.057,4835622.035
-888579,4156401,2017.0,2021.0,1953.0,PRIVATE,3,Etobicoke-Lakeshore,10 CROWN HILL PL,5,26,2021-04-27,75,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,4.0,3.0,3.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,,W0327,43.639476269,-79.491647816,305457.959,4833059.771000001
-888580,4156115,2017.0,2021.0,1953.0,PRIVATE,3,Etobicoke-Lakeshore,11 CROWN HILL PL,5,26,2021-04-27,75,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,4.0,3.0,3.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,,W0327,43.639636427,-79.491738294,305450.658,4833077.563
-888581,4575691,2019.0,2021.0,2018.0,PRIVATE,13,Toronto Centre,25 SELBY ST,51,503,2021-04-27,99,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,5.0,,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,,5.0,5.0,5.0,S1322,,,314705.756,4836585.294
-888582,4227299,2017.0,2021.0,1962.0,PRIVATE,6,York Centre,4100 BATHURST ST,5,37,2021-04-27,71,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,3.0,4.0,,3.0,3.0,3.0,3.0,4.0,5.0,4.0,3.0,4.0,3.0,3.0,3.0,,N0629,43.7454927714,-79.4364245515,309904.96,4844838.53
-888583,4154700,2017.0,2021.0,1980.0,TCHC,6,York Centre,4455 BATHURST ST,14,301,2021-04-27,74,Evaluation needs to be conducted in 2 years,19,4.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,4.0,,4.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,4.0,N0624,43.758347457700005,-79.4386412229,309743.646,4846266.068
-888584,4154723,2017.0,2021.0,1972.0,TCHC,6,York Centre,6250 BATHURST ST,14,389,2021-04-27,64,Evaluation needs to be conducted in 1 year,19,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0622,43.79163957,-79.446195585,309114.424,4849965.666
-888585,4154603,2017.0,2021.0,1964.0,PRIVATE,6,York Centre,4160 BATHURST ST,7,67,2021-04-27,66,Evaluation needs to be conducted in 2 years,19,4.0,3.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,2.0,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0629,43.7478559496,-79.4370573738,309853.799,4845101.032
-888586,4155858,2017.0,2021.0,1905.0,PRIVATE,11,University-Rosedale,41 SPADINA RD,4,24,2021-04-27,66,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,2.0,3.0,,,S1127,43.6688434904,-79.4042769908,312503.8,4836325.6
-888587,4155588,2017.0,2021.0,1974.0,TCHC,4,Parkdale-High Park,85 SPENCER AVE,7,57,2021-04-27,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,4.0,3.0,,4.0,5.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,,S0437,43.637330091,-79.430147711,310420.221,4832823.529
-888588,4152835,2017.0,2021.0,1976.0,PRIVATE,24,Scarborough-Guildwood,70 MORNELLE CRT,16,264,2021-04-27,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,3.0,4.0,3.0,4.0,4.0,,3.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2423,43.786853838999996,-79.197805135,329106.341,4849476.751
-888589,4152760,2017.0,2021.0,1950.0,PRIVATE,21,Scarborough Centre,1385 MIDLAND AVE,13,144,2021-04-26,79,Evaluation needs to be conducted in 2 years,18,5.0,3.0,5.0,3.0,4.0,5.0,4.0,5.0,4.0,,3.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,,E2134,43.750636326000006,-79.2638428764,323803.012,4845434.954
-888590,4288472,2018.0,2021.0,2016.0,SOCIAL HOUSING,13,Toronto Centre,75 COOPERAGE ST,12,145,2021-04-26,94,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,5.0,5.0,5.0,4.0,4.0,5.0,,4.0,5.0,5.0,5.0,4.0,5.0,,5.0,5.0,5.0,S1336,,,316341.205,4834605.327
-888591,4152750,2017.0,2021.0,1954.0,PRIVATE,21,Scarborough Centre,30 GILDER DR,14,192,2021-04-26,86,Evaluation needs to be conducted in 3 years,19,5.0,3.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,4.0,3.0,5.0,3.0,5.0,4.0,3.0,4.0,4.0,,E2134,43.7371458262,-79.25653121010001,324396.207,4843937.937
-888592,4154887,2017.0,2021.0,1960.0,PRIVATE,16,Don Valley East,48 ECCLESTON DR,4,69,2021-04-25,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,,N1628,43.7279658085,-79.31798872579999,319448.016,4842905.4969999995
-888593,4154823,2017.0,2021.0,1971.0,PRIVATE,17,Don Valley North,2600 DON MILLS RD,19,226,2021-04-25,68,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,3.0,3.0,2.0,4.0,4.0,,3.0,2.0,5.0,3.0,4.0,3.0,3.0,4.0,3.0,,N1727,43.7762509604,-79.34860618260001,316971.632,4848264.765
-888594,4154822,2017.0,2021.0,1969.0,PRIVATE,17,Don Valley North,25 LEITH HILL RD,15,147,2021-04-25,73,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,2.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,5.0,3.0,4.0,4.0,4.0,4.0,3.0,,N1727,43.7763920506,-79.3495861019,316892.719,4848280.297
-888595,4154848,2017.0,2021.0,1980.0,TCHC,17,Don Valley North,4000 DON MILLS RD,6,397,2021-04-24,76,Evaluation needs to be conducted in 2 years,18,3.0,4.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,,3.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N1722,43.810377963,-79.36147583,315929.11100000003,4852055.344
-888596,4155651,2017.0,2021.0,1962.0,TCHC,16,Don Valley East,14 RAYOAK DR,8,63,2021-04-24,67,Evaluation needs to be conducted in 2 years,17,4.0,3.0,3.0,2.0,3.0,4.0,3.0,3.0,3.0,,3.0,4.0,4.0,3.0,3.0,4.0,,4.0,4.0,,N1625,43.7598478794,-79.3194127987,319325.589,4846447.109
-888597,4153576,2017.0,2021.0,1973.0,TCHC,14,Toronto-Danforth,859 DUNDAS ST E,4,29,2021-04-23,69,Evaluation needs to be conducted in 2 years,17,3.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,3.0,4.0,4.0,4.0,4.0,,4.0,,3.0,S1434,43.6621159617,-79.35167947,316746.84,4835584.466
-888598,4287030,2018.0,2021.0,1917.0,PRIVATE,4,Parkdale-High Park,193 DOWLING AVE,5,16,2021-04-23,71,Evaluation needs to be conducted in 2 years,14,4.0,3.0,4.0,4.0,4.0,3.0,,3.0,,,4.0,4.0,5.0,3.0,3.0,3.0,,3.0,,,S0436,43.6398204138,-79.43958903010001,309658.458,4833105.204
-888599,4152908,2017.0,2021.0,1967.0,PRIVATE,4,Parkdale-High Park,2 KENNEDY AVE,4,25,2021-04-23,66,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,3.0,4.0,3.0,,3.0,,3.0,2.0,3.0,4.0,3.0,3.0,4.0,,3.0,4.0,,S0430,43.646232595,-79.473567835,306916.528,4833810.638
-888600,4154317,2017.0,2021.0,1955.0,PRIVATE,5,York South-Weston,2641 KEELE ST,3,21,2021-04-23,76,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,4.0,3.0,3.0,,5.0,,,3.0,4.0,5.0,3.0,4.0,4.0,,4.0,3.0,,W0523,43.7212489547,-79.4801097422,306387.12,4842143.426
-888601,4154318,2017.0,2021.0,1955.0,PRIVATE,5,York South-Weston,2643 KEELE ST,3,21,2021-04-23,79,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,4.0,3.0,4.0,,5.0,,,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,W0523,43.7214377467,-79.4800527755,306391.705,4842164.401000001
-888602,4154319,2018.0,2021.0,1953.0,PRIVATE,5,York South-Weston,2645 KEELE ST,3,21,2021-04-23,76,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,3.0,4.0,4.0,,4.0,,,3.0,4.0,5.0,3.0,4.0,4.0,,4.0,3.0,,W0523,43.7216077716,-79.4801053562,306387.464,4842183.289
-888603,4154321,2017.0,2021.0,1960.0,PRIVATE,5,York South-Weston,2647 KEELE ST,3,33,2021-04-23,79,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,3.0,3.0,3.0,,4.0,,,3.0,4.0,5.0,5.0,4.0,4.0,,5.0,4.0,,W0523,43.7218557003,-79.4808147675,306330.299,4842210.82
-888604,4152943,2017.0,2021.0,1940.0,PRIVATE,4,Parkdale-High Park,340 HIGH PARK AVE,3,10,2021-04-23,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S0424,43.665283034,-79.4705575166,307158.849,4835926.123
-888605,4167459,2017.0,2021.0,2006.0,TCHC,13,Toronto Centre,176 THE ESPLANADE,7,220,2021-04-23,67,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,3.0,S1339,43.649017812,-79.367964945,315435.409,4834128.066000001
-888606,4152907,2017.0,2021.0,1967.0,PRIVATE,4,Parkdale-High Park,1 RUNNYMEDE RD,4,28,2021-04-23,68,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,3.0,4.0,3.0,,3.0,,3.0,2.0,3.0,5.0,3.0,3.0,4.0,,3.0,4.0,,S0430,43.646159833,-79.473952107,306885.53,4833802.545
-888607,4153552,2017.0,2021.0,1988.0,SOCIAL HOUSING,14,Toronto-Danforth,841 QUEEN ST E,3,36,2021-04-23,62,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,3.0,4.0,3.0,4.0,3.0,,3.0,,3.0,S1440,43.660037777700005,-79.34386069039999,317377.858,4835354.725
-888608,4152815,2017.0,2021.0,1977.0,TCHC,24,Scarborough-Guildwood,65 GREENCREST CRCT,13,400,2021-04-23,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,3.0,3.0,4.0,3.0,3.0,4.0,4.0,,4.0,3.0,4.0,5.0,3.0,4.0,5.0,4.0,4.0,4.0,E2430,43.7599953268,-79.22179743939999,327185.56,4846485.164
-888609,4286254,2017.0,2021.0,2014.0,TCHC,13,Toronto Centre,585 KING ST E,8,128,2021-04-23,93,Evaluation needs to be conducted in 3 years,19,4.0,5.0,4.0,5.0,5.0,5.0,5.0,4.0,5.0,,4.0,4.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,4.0,S1336,,,316351.135,4834942.491
-888610,4155069,2017.0,2021.0,1959.0,PRIVATE,9,Davenport,2204 DUFFERIN ST,4,28,2021-04-23,70,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,3.0,3.0,4.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,4.0,4.0,4.0,3.0,,S0922,43.690434125,-79.448380394,308945.447,4838722.081
-888611,4883232,,2021.0,,PRIVATE,14,Toronto-Danforth,111 COSBURN AVE,3,23,2021-04-23,69,Evaluation needs to be conducted in 2 years,15,3.0,4.0,3.0,4.0,2.0,4.0,,4.0,,,3.0,2.0,5.0,3.0,4.0,4.0,,4.0,3.0,,S1422,43.6892545764,-79.3481301211,317027.601,4838599.943
-888612,4152927,2017.0,2021.0,1982.0,SOCIAL HOUSING,4,Parkdale-High Park,1700 BLOOR ST W,9,115,2021-04-23,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,3.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,S0429,43.655404214200004,-79.4584260885,308137.86,4834829.083000001
-888613,4156748,2017.0,2021.0,2009.0,TCHC,13,Toronto Centre,501 ADELAIDE ST E,13,180,2021-04-23,71,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,2.0,3.0,3.0,4.0,3.0,3.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,,4.0,4.0,4.0,S1335,43.65255869,-79.365341193,315646.432,4834521.781
-888614,4356202,2018.0,2021.0,2017.0,PRIVATE,4,Parkdale-High Park,36 SPENCER AVE,8,46,2021-04-23,91,Evaluation needs to be conducted in 3 years,16,5.0,4.0,3.0,5.0,5.0,5.0,5.0,5.0,4.0,,5.0,4.0,5.0,5.0,4.0,5.0,,4.0,,,S0437,,,310432.662,4832559.495
-888615,4156469,2018.0,2021.0,1992.0,SOCIAL HOUSING,24,Scarborough-Guildwood,3379 LAWRENCE AVE E,6,48,2021-04-23,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,3.0,5.0,4.0,3.0,4.0,,2.0,4.0,5.0,5.0,4.0,3.0,5.0,4.0,4.0,4.0,E2429,43.7578221906,-79.2338165953,326218.534,4846240.572
-888616,4153683,2017.0,2021.0,1955.0,TCHC,19,Beaches-East York,98 ELMER AVE,4,36,2021-04-22,69,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,4.0,2.0,,4.0,,,4.0,3.0,4.0,4.0,4.0,4.0,3.0,3.0,3.0,4.0,S1938,43.67234454850001,-79.30515721409999,320496.219,4836728.4969999995
-888617,4153639,2019.0,2021.0,1915.0,PRIVATE,14,Toronto-Danforth,279 WOODFIELD RD,4,42,2021-04-22,42,Building Audit,13,2.0,1.0,1.0,1.0,,2.0,,4.0,,,1.0,1.0,4.0,3.0,2.0,2.0,,3.0,,,S1439,43.6716640558,-79.323704314,319000.793,4836649.59
-888618,4154046,2017.0,2021.0,1968.0,SOCIAL HOUSING,19,Beaches-East York,7 GLENBURN AVE,6,55,2021-04-22,72,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,3.0,4.0,2.0,3.0,,3.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,S1927,43.706859873,-79.29707452939999,321138.67600000004,4840564.587
-888619,4152975,2018.0,2021.0,1965.0,PRIVATE,4,Parkdale-High Park,24 TYNDALL AVE,7,73,2021-04-22,74,Evaluation needs to be conducted in 2 years,17,4.0,2.0,5.0,2.0,4.0,5.0,,3.0,4.0,,3.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,,S0437,43.6351285886,-79.4284822778,310555.059,4832578.112
-888620,4153455,2018.0,2021.0,1991.0,SOCIAL HOUSING,13,Toronto Centre,177 MUTUAL ST,10,42,2021-04-22,74,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,4.0,4.0,2.0,3.0,3.0,,3.0,4.0,5.0,4.0,4.0,4.0,,5.0,5.0,,S1328,43.6595590254,-79.3765361369,314742.506,4835297.1280000005
-888621,4155083,2017.0,2021.0,1965.0,PRIVATE,5,York South-Weston,7 NASHVILLE AVE,4,23,2021-04-22,82,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,,3.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,,W0536,43.683178102,-79.4735022306,306920.77,4837914.084
-888622,4154520,2017.0,2021.0,1965.0,PRIVATE,8,Eglinton-Lawrence,1 MARQUETTE AVE,4,24,2021-04-22,68,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,N0823,43.733771348000005,-79.433653399,310128.895,4843537.493
-888623,4154528,2017.0,2021.0,1956.0,PRIVATE,8,Eglinton-Lawrence,78 NEPTUNE DR,3,12,2021-04-22,58,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,4.0,2.0,2.0,3.0,3.0,3.0,3.0,,N0823,43.7328466433,-79.4361394574,309928.972,4843433.651000001
-888624,4155598,2017.0,2021.0,1978.0,TCHC,11,University-Rosedale,6 HENRY ST,4,105,2021-04-22,73,Evaluation needs to be conducted in 2 years,17,3.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,,3.0,4.0,5.0,4.0,3.0,3.0,,4.0,4.0,,S1144,43.6562790378,-79.3937588727,313353.834,4834930.811000001
-888625,4155085,2017.0,2021.0,1958.0,PRIVATE,5,York South-Weston,1650 KEELE ST,4,22,2021-04-22,74,Evaluation needs to be conducted in 2 years,17,4.0,3.0,5.0,4.0,3.0,3.0,,4.0,,3.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,,W0536,43.683492700100004,-79.47263124439999,306990.985,4837949.057
-888626,4152951,2017.0,2021.0,1957.0,PRIVATE,4,Parkdale-High Park,99 TYNDALL AVE,9,70,2021-04-22,66,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,2.0,3.0,4.0,,2.0,4.0,,2.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S0437,43.6366349836,-79.4276516523,310621.94399999996,4832745.515
-888627,4152971,2018.0,2021.0,1965.0,PRIVATE,4,Parkdale-High Park,100 TYNDALL AVE,6,48,2021-04-22,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,4.0,4.0,5.0,4.0,3.0,3.0,,4.0,3.0,,S0437,43.6364200969,-79.4289537195,310516.904,4832721.558
-888628,4153063,2017.0,2021.0,1959.0,TCHC,4,Parkdale-High Park,20 WEST LODGE AVE,11,299,2021-04-22,80,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,2.0,4.0,3.0,,4.0,4.0,,4.0,4.0,5.0,4.0,5.0,4.0,,5.0,,,S0435,43.6421900653,-79.4363583389,309918.979,4833362.107
-888629,4152641,2019.0,2021.0,1954.0,PRIVATE,21,Scarborough Centre,1637 VICTORIA PARK AVE,4,26,2021-04-22,89,Evaluation needs to be conducted in 3 years,17,5.0,3.0,5.0,5.0,5.0,4.0,,4.0,,5.0,3.0,5.0,5.0,5.0,5.0,3.0,5.0,4.0,5.0,,E2131,43.732195061999995,-79.3052538634,320472.882,4843377.643999999
-888630,4153566,2017.0,2021.0,1984.0,TCHC,13,Toronto Centre,540 QUEEN ST E,6,44,2021-04-22,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,3.0,5.0,4.0,,3.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,S1330,43.657342412,-79.357649785,316265.96,4835054.266
-888631,4153050,2017.0,2021.0,1967.0,PRIVATE,4,Parkdale-High Park,244 RONCESVALLES AVE,3,22,2021-04-22,76,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,3.0,3.0,4.0,,3.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,S0432,43.6458748737,-79.4493623432,308869.575,4833770.791999999
-888632,4154564,2017.0,2021.0,1953.0,PRIVATE,8,Eglinton-Lawrence,30 COVINGTON RD,4,26,2021-04-22,76,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,,,4.0,3.0,5.0,4.0,3.0,3.0,,4.0,3.0,,N0823,43.720608211999995,-79.43290764470001,310190.42100000003,4842074.228999999
-888633,4155726,2017.0,2021.0,1989.0,TCHC,19,Beaches-East York,33 COATSWORTH CRES,5,128,2021-04-22,65,Evaluation needs to be conducted in 1 year,19,3.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,,2.0,3.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,S1931,43.6792629925,-79.3201512401,319285.482,4837494.411
-888634,4155059,2017.0,2021.0,1960.0,PRIVATE,8,Eglinton-Lawrence,2495 DUFFERIN ST,3,15,2021-04-22,51,Evaluation needs to be conducted in 1 year,14,3.0,2.0,4.0,2.0,1.0,2.0,,3.0,,,1.0,1.0,5.0,3.0,3.0,2.0,,4.0,,,N0831,43.701718897,-79.451636758,308682.24,4839975.612
-888635,4155614,2019.0,2021.0,1991.0,SOCIAL HOUSING,19,Beaches-East York,1577 DANFORTH AVE,6,126,2021-04-22,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,,4.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,S1931,43.6831806444,-79.32304617930001,319051.152,4837929.136
-888636,4152811,2017.0,2021.0,1991.0,SOCIAL HOUSING,24,Scarborough-Guildwood,450 B SCARBOROUGH GOLF CLUB RD,5,112,2021-04-22,86,Evaluation needs to be conducted in 3 years,18,4.0,4.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,,4.0,4.0,5.0,4.0,5.0,4.0,,4.0,4.0,4.0,E2430,43.7546186553,-79.2171707539,327651.524,4845946.183
-888637,4156480,2017.0,2021.0,1966.0,TCHC,19,Beaches-East York,90 PARMA CRT,7,92,2021-04-22,73,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,4.0,4.0,3.0,4.0,3.0,3.0,,4.0,4.0,4.0,4.0,3.0,3.0,3.0,4.0,4.0,,S1923,43.717195772,-79.30099923600001,320819.363,4841713.06
-888638,4152956,2018.0,2021.0,1965.0,PRIVATE,4,Parkdale-High Park,31 SPENCER AVE,6,54,2021-04-22,71,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,3.0,4.0,4.0,,3.0,3.0,,4.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S0437,43.635080626000004,-79.429194517,310497.332,4832573.691000001
-888639,4153720,2020.0,2021.0,1988.0,SOCIAL HOUSING,19,Beaches-East York,2526 DANFORTH AVE,7,48,2021-04-22,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,5.0,S1929,43.6883174325,-79.3025563055,320701.73,4838503.548
-888640,4153716,2017.0,2021.0,1956.0,PRIVATE,19,Beaches-East York,619 WOODBINE AVE,4,50,2021-04-22,86,Evaluation needs to be conducted in 3 years,16,5.0,4.0,5.0,4.0,4.0,5.0,,5.0,,,4.0,5.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,S1935,43.677895694700005,-79.3088113763,320200.146,4837344.5430000005
-888641,4154045,2017.0,2021.0,1994.0,SOCIAL HOUSING,19,Beaches-East York,10 GOWER ST,7,164,2021-04-22,87,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,5.0,5.0,5.0,4.0,4.0,5.0,,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,S1927,43.702657978000005,-79.297997207,321065.183,4840098.537
-888642,4408585,2018.0,2021.0,1948.0,PRIVATE,11,University-Rosedale,130 MACPHERSON AVE,3,26,2021-04-21,74,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,3.0,4.0,3.0,,3.0,,,3.0,5.0,5.0,4.0,3.0,3.0,,4.0,,,S1128,43.6783605408,-79.3950701921,313244.997,4837383.81
-888643,4152801,2017.0,2021.0,1961.0,PRIVATE,24,Scarborough-Guildwood,5 CEDAR DR,10,86,2021-04-21,66,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,3.0,4.0,2.0,4.0,3.0,,3.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,4.0,,E2433,43.744527226,-79.2154577667,327701.9,4844768.433999999
-888644,4153795,2017.0,2021.0,1960.0,PRIVATE,15,Don Valley West,551 EGLINTON AVE E,8,54,2021-04-21,70,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,,N1530,43.710473290500005,-79.3785880328,314568.772,4840953.298
-888645,4155610,2017.0,2021.0,1965.0,TCHC,19,Beaches-East York,1080 EASTERN AVE,6,41,2021-04-21,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,5.0,4.0,5.0,4.0,4.0,3.0,,4.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,,S1941,43.665859716199996,-79.3160434122,319619.997,4836006.058999999
-888646,4154177,2017.0,2021.0,1947.0,PRIVATE,15,Don Valley West,871 MILLWOOD RD,3,15,2021-04-21,71,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,,4.0,,4.0,,2.0,3.0,2.0,5.0,4.0,4.0,4.0,,5.0,3.0,,N1535,43.70375659770001,-79.3653122731,315639.846,4840208.712
-888647,4154068,2017.0,2021.0,1979.0,SOCIAL HOUSING,19,Beaches-East York,850 O'CONNOR DR,3,109,2021-04-21,82,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,4.0,5.0,3.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,5.0,S1922,43.7070607671,-79.31227990859999,319913.196,4840584.078
-888648,4152893,2017.0,2021.0,1991.0,TCHC,25,Scarborough-Rouge Park,1315 NEILSON RD,5,126,2021-04-21,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,,3.0,4.0,5.0,4.0,3.0,4.0,,4.0,4.0,4.0,E2524,43.807786956,-79.2188121812,327408.037,4851795.432
-888649,4326897,,2021.0,1951.0,PRIVATE,19,Beaches-East York,1139 O'CONNOR DR,3,12,2021-04-21,83,Evaluation needs to be conducted in 2 years,15,5.0,4.0,4.0,5.0,3.0,5.0,,3.0,,,5.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S1924,43.7114376749,-79.30789566060001,320265.406,4841071.132
-888650,4156514,2017.0,2021.0,1970.0,PRIVATE,4,Parkdale-High Park,7 O'HARA AVE,4,16,2021-04-21,70,Evaluation needs to be conducted in 2 years,14,3.0,4.0,4.0,3.0,,3.0,,3.0,,,3.0,3.0,5.0,4.0,3.0,3.0,4.0,4.0,,,S0435,43.6416711241,-79.4340706425,310103.595,4833304.59
-888651,4155205,2017.0,2021.0,1959.0,PRIVATE,4,Parkdale-High Park,4029 OLD DUNDAS ST,8,29,2021-04-21,56,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,2.0,2.0,3.0,,2.0,2.0,3.0,2.0,4.0,5.0,2.0,3.0,3.0,1.0,3.0,3.0,,S0421,43.6639708719,-79.5021353711,304612.07,4835780.002
-888652,4152842,2017.0,2021.0,1974.0,TCHC,25,Scarborough-Rouge Park,4205 LAWRENCE AVE E,14,345,2021-04-21,71,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,3.0,4.0,3.0,2.0,4.0,,2.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,E2537,43.76799274060001,-79.185350274,330116.903,4847384.065
-888653,4316602,2018.0,2021.0,1951.0,PRIVATE,19,Beaches-East York,995 O'CONNOR DR,3,12,2021-04-21,76,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,,,3.0,4.0,5.0,4.0,4.0,3.0,,4.0,3.0,,S1924,43.7091921136,-79.3096855497,320121.73699999996,4840821.33
-888654,4848750,2021.0,2021.0,1954.0,PRIVATE,19,Beaches-East York,996 O'CONNOR DR,3,18,2021-04-21,49,Building Audit,15,2.0,3.0,2.0,2.0,2.0,3.0,,3.0,,,2.0,2.0,3.0,3.0,3.0,2.0,,2.0,3.0,,S1921,43.709175201899995,-79.3105723901,320050.275,4840819.291
-888655,4243767,2017.0,2021.0,1900.0,PRIVATE,4,Parkdale-High Park,28 MAYNARD AVE,3,20,2021-04-21,77,Evaluation needs to be conducted in 2 years,14,4.0,4.0,5.0,3.0,4.0,4.0,,5.0,,,3.0,3.0,5.0,3.0,4.0,3.0,,4.0,,,S0436,43.6380072384,-79.43803496470001,309784.048,4832897.33
-888656,4154517,2017.0,2021.0,1956.0,PRIVATE,8,Eglinton-Lawrence,27 HOTSPUR RD,3,11,2021-04-21,72,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,4.0,3.0,3.0,,3.0,,4.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,,N0823,43.732497833100005,-79.4349702821,310023.188,4843394.977
-888657,4274213,2017.0,2021.0,1986.0,TCHC,10,Spadina-Fort York,20 VANAULEY ST,8,135,2021-04-21,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1023,43.648931485,-79.398985647,312932.99600000004,4834114.893
-888658,4152966,2017.0,2021.0,1956.0,PRIVATE,4,Parkdale-High Park,124 TYNDALL AVE,4,28,2021-04-21,73,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,3.0,3.0,2.0,3.0,3.0,4.0,,S0437,43.637715924700004,-79.4293840613,310482.065,4832865.488
-888659,4152688,2017.0,2021.0,1989.0,TCHC,20,Scarborough Southwest,120 TOWN HAVEN PL,8,150,2021-04-21,89,Evaluation needs to be conducted in 3 years,18,4.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,4.0,,4.0,5.0,4.0,4.0,4.0,4.0,,4.0,5.0,4.0,E2024,43.7332452174,-79.2592760831,324176.346,4843503.962
-888660,4156483,2017.0,2021.0,1967.0,TCHC,19,Beaches-East York,5 WAKUNDA PL,11,198,2021-04-21,75,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,3.0,4.0,3.0,4.0,4.0,,3.0,3.0,4.0,4.0,4.0,4.0,,4.0,,4.0,S1923,43.715565256400005,-79.3046724013,320524.072,4841530.268999999
-888661,4333368,2018.0,2021.0,1977.0,PRIVATE,13,Toronto Centre,545 SHERBOURNE ST,30,300,2021-04-21,85,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,5.0,4.0,5.0,4.0,4.0,,S1323,43.6685668149,-79.3748331969,314878.356,4836298.032
-888662,4333382,2018.0,2021.0,1978.0,PRIVATE,13,Toronto Centre,555 SHERBOURNE ST,30,292,2021-04-21,87,Evaluation needs to be conducted in 3 years,19,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,5.0,5.0,5.0,4.0,4.0,,S1323,43.66956979,-79.375208558,314847.652,4836410.365
-888663,4333391,2018.0,2021.0,1978.0,PRIVATE,13,Toronto Centre,565 SHERBOURNE ST,30,514,2021-04-21,88,Evaluation needs to be conducted in 3 years,20,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,S1323,43.669960972,-79.375430599,314829.679,4836453.8
-888664,4153025,2018.0,2021.0,1965.0,PRIVATE,4,Parkdale-High Park,182 JAMESON AVE,11,82,2021-04-21,61,Evaluation needs to be conducted in 1 year,17,4.0,3.0,4.0,2.0,3.0,3.0,,3.0,3.0,,2.0,3.0,5.0,2.0,3.0,4.0,3.0,3.0,2.0,,S0436,43.6389025378,-79.4370268337,309865.315,4832996.847
-888665,4168808,2017.0,2021.0,1955.0,PRIVATE,4,Parkdale-High Park,23 JANE ST,3,18,2021-04-21,68,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,3.0,2.0,3.0,,4.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,3.0,,S0426,43.650079954300004,-79.48433563399999,306048.00899999996,4834236.904
-888666,4155283,2017.0,2021.0,1958.0,PRIVATE,3,Etobicoke-Lakeshore,10 KINGS POINT DR,3,19,2021-04-21,80,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,4.0,4.0,,3.0,,4.0,4.0,4.0,5.0,5.0,4.0,3.0,5.0,4.0,,,W0327,43.63983146819999,-79.4928529071,305360.98600000003,4833098.271000001
-888667,4153673,2017.0,2021.0,1925.0,PRIVATE,19,Beaches-East York,1836 QUEEN ST E,3,30,2021-04-21,57,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,2.0,2.0,3.0,,3.0,,,2.0,2.0,4.0,3.0,3.0,3.0,,3.0,3.0,,S1937,43.668459839700006,-79.3083945127,320236.165,4836296.316000001
-888668,4653431,2019.0,2021.0,1965.0,PRIVATE,19,Beaches-East York,2178 QUEEN ST E,3,21,2021-04-21,64,Evaluation needs to be conducted in 1 year,14,3.0,3.0,4.0,3.0,,3.0,,3.0,,,3.0,3.0,4.0,3.0,4.0,3.0,,3.0,3.0,,S1939,43.6722063299,-79.2908934269,321646.453,4836715.931
-888669,4152814,2017.0,2021.0,1970.0,PRIVATE,24,Scarborough-Guildwood,20 GREENCREST CRCT,10,136,2021-04-21,85,Evaluation needs to be conducted in 2 years,19,5.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,5.0,3.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,E2430,43.7583695279,-79.2234312468,327054.605,4846304.108
-888670,4154326,2017.0,2021.0,1960.0,PRIVATE,5,York South-Weston,1607 JANE ST,3,29,2021-04-21,80,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,4.0,5.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,,W0528,43.7007645631,-79.5028199855,304557.17699999997,4839867.602
-888671,4155140,2017.0,2021.0,1960.0,PRIVATE,5,York South-Weston,1848 JANE ST,3,21,2021-04-21,74,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,,,4.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,W0525,43.7079730961,-79.5055309072,304338.744,4840668.422
-888672,4155141,2018.0,2021.0,1954.0,PRIVATE,5,York South-Weston,1860 JANE ST,4,40,2021-04-21,74,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,3.0,3.0,4.0,,4.0,,,4.0,4.0,5.0,3.0,3.0,4.0,4.0,4.0,3.0,,W0525,43.708761091999996,-79.50573988,304321.91,4840755.962
-888673,4156182,2017.0,2021.0,1969.0,TCHC,14,Toronto-Danforth,80 BLAKE ST,14,190,2021-04-21,77,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,3.0,4.0,3.0,4.0,4.0,5.0,3.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,4.0,S1430,43.67437498899999,-79.339480129,317736.256,4836964.143
-888674,4153157,2017.0,2021.0,1989.0,TCHC,11,University-Rosedale,72 CLINTON ST,7,157,2021-04-21,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,5.0,4.0,5.0,5.0,3.0,4.0,,4.0,5.0,3.0,4.0,3.0,3.0,4.0,4.0,4.0,,S1133,43.655697992200004,-79.41495949600001,311643.94899999996,4834864.327
-888675,4153833,2017.0,2021.0,1956.0,TCHC,15,Don Valley West,28 BROADWAY AVE,3,75,2021-04-21,74,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,3.0,3.0,4.0,3.0,4.0,3.0,,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,N1526,43.71043048399999,-79.397121509,313074.95399999997,4840947.509
-888676,4152777,2017.0,2021.0,1979.0,TCHC,20,Scarborough Southwest,17 BRIMLEY RD,11,330,2021-04-21,88,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,5.0,,5.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,E2026,43.7204681732,-79.2391056557,325805.62899999996,4842089.426
-888677,4152631,2017.0,2021.0,1955.0,PRIVATE,21,Scarborough Centre,40 CRAIGTON DR,4,30,2021-04-21,89,Evaluation needs to be conducted in 3 years,16,5.0,3.0,5.0,4.0,4.0,4.0,,5.0,,,4.0,3.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,,E2131,43.727425208,-79.2987499996,320998.094,4842848.978999999
-888678,4152936,2017.0,2021.0,1914.0,PRIVATE,4,Parkdale-High Park,1914 BLOOR ST W,3,16,2021-04-21,81,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,5.0,4.0,,5.0,,,4.0,3.0,4.0,4.0,4.0,4.0,,4.0,3.0,,S0428,43.653724315,-79.466048263,307522.842,4834643.12
-888679,4152937,2017.0,2021.0,1914.0,PRIVATE,4,Parkdale-High Park,1920 BLOOR ST W,3,16,2021-04-21,83,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,5.0,4.0,,5.0,,,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,3.0,,S0428,43.653685383,-79.466255527,307506.125,4834638.788
-888680,4152909,2017.0,2021.0,1930.0,PRIVATE,4,Parkdale-High Park,2001 BLOOR ST W,4,60,2021-04-21,81,Evaluation needs to be conducted in 2 years,14,4.0,4.0,5.0,4.0,,4.0,,4.0,4.0,,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,,,S0431,43.651822183,-79.47144373100001,307087.937,4834430.705
-888681,4261240,2017.0,2021.0,1950.0,PRIVATE,14,Toronto-Danforth,814 BROADVIEW AVE,3,24,2021-04-21,61,Evaluation needs to be conducted in 1 year,14,3.0,3.0,4.0,3.0,3.0,2.0,,3.0,,,3.0,4.0,3.0,3.0,3.0,3.0,,3.0,,,S1424,43.67792961,-79.3589234686,316159.63899999997,4837340.27
-888682,4155293,2017.0,2021.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,69 OLD MILL TER,4,26,2021-04-21,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,,4.0,4.0,3.0,5.0,4.0,4.0,4.0,,3.0,4.0,,W0327,43.6497102952,-79.498711457,304888.256,4834195.725
-888683,4154061,2017.0,2021.0,1983.0,SOCIAL HOUSING,19,Beaches-East York,2701-2703 ST CLAIR AVE E,5,127,2021-04-21,91,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,5.0,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,5.0,5.0,S1927,43.705532569,-79.3114443458,319980.908,4840414.447
-888684,4250094,2018.0,2021.0,1922.0,PRIVATE,4,Parkdale-High Park,81 WILSON PARK RD,3,16,2021-04-21,70,Evaluation needs to be conducted in 2 years,14,3.0,3.0,5.0,3.0,3.0,4.0,,4.0,,,3.0,2.0,3.0,4.0,4.0,4.0,,4.0,,,S0436,43.6391098783,-79.44211512140001,309454.75899999996,4833019.6
-888685,4154032,2017.0,2021.0,1940.0,PRIVATE,8,Eglinton-Lawrence,3464 YONGE ST,4,27,2021-04-21,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,5.0,2.0,3.0,3.0,,3.0,,,2.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,N0825,43.734800638900005,-79.4050159529,312435.947,4843653.143999999
-888686,4154031,2017.0,2021.0,1940.0,PRIVATE,8,Eglinton-Lawrence,3474 YONGE ST,4,27,2021-04-21,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,2.0,3.0,3.0,,3.0,,,5.0,5.0,4.0,3.0,3.0,3.0,,3.0,3.0,,N0825,43.7349962001,-79.40513064619999,312426.683,4843674.858
-888687,4154766,2017.0,2021.0,1981.0,TCHC,16,Don Valley East,10 DEAUVILLE LANE,7,247,2021-04-21,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,N1630,43.7175537141,-79.3316723208,318347.963,4841746.448
-888688,4155866,2017.0,2021.0,2008.0,TCHC,14,Toronto-Danforth,50 MATILDA ST,4,56,2021-04-21,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,S1434,43.660237712,-79.35303424899999,316637.682,4835376.563
-888689,4153580,2017.0,2021.0,1930.0,PRIVATE,13,Toronto Centre,26 GIFFORD ST,4,15,2021-04-20,70,Evaluation needs to be conducted in 2 years,16,2.0,4.0,4.0,3.0,4.0,3.0,,4.0,,3.0,3.0,4.0,5.0,2.0,3.0,4.0,,4.0,4.0,,S1327,43.6633467567,-79.36369410409999,315777.607,4835719.536
-888690,4154980,2017.0,2021.0,1927.0,PRIVATE,12,Toronto-St. Paul's,227 VAUGHAN RD,4,24,2021-04-20,70,Evaluation needs to be conducted in 2 years,14,3.0,4.0,5.0,3.0,2.0,3.0,,4.0,,,4.0,3.0,5.0,3.0,3.0,3.0,,4.0,,,S1229,43.6877852335,-79.4233040903,310967.502,4838428.419
-888691,4153061,2017.0,2021.0,1970.0,PRIVATE,4,Parkdale-High Park,15 O'HARA AVE,4,32,2021-04-20,67,Evaluation needs to be conducted in 2 years,14,3.0,3.0,4.0,4.0,,3.0,,4.0,,,3.0,4.0,3.0,4.0,2.0,3.0,,4.0,3.0,,S0435,43.641913610100005,-79.43409991729999,310101.212,4833331.527
-888692,4154514,2017.0,2021.0,1960.0,PRIVATE,8,Eglinton-Lawrence,50 NEPTUNE DR,3,12,2021-04-20,65,Evaluation needs to be conducted in 1 year,16,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,3.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0823,43.731762015,-79.434811008,310035.821,4843314.199
-888693,4154260,2017.0,2021.0,1952.0,PRIVATE,7,Humber River-Black Creek,73 LOVILLA BLVD,3,16,2021-04-20,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0733,43.717730278000005,-79.5372015088,301786.885,4841753.108
-888694,4154524,2017.0,2021.0,1957.0,PRIVATE,8,Eglinton-Lawrence,22 HOTSPUR RD,3,10,2021-04-20,72,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,4.0,3.0,,3.0,,4.0,3.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,N0823,43.7331168805,-79.4348475012,310014.946,4843450.384
-888695,4152999,2017.0,2021.0,1960.0,PRIVATE,4,Parkdale-High Park,1475 KING ST W,3,44,2021-04-20,74,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,4.0,3.0,3.0,,5.0,,,3.0,4.0,4.0,3.0,3.0,4.0,,4.0,,,S0437,43.636130710399996,-79.4396082972,309657.257,4832688.775
-888696,4155639,2017.0,2021.0,1957.0,TCHC,8,Eglinton-Lawrence,22 VARNA DR,3,31,2021-04-20,79,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,3.0,4.0,4.0,,5.0,,,2.0,3.0,5.0,4.0,3.0,4.0,,4.0,5.0,,N0823,43.7196194362,-79.4407985931,309554.68,4841963.8780000005
-888697,4155938,2017.0,2021.0,1964.0,PRIVATE,21,Scarborough Centre,10 TRUDELLE ST,6,84,2021-04-20,84,Evaluation needs to be conducted in 2 years,18,5.0,3.0,5.0,5.0,4.0,5.0,5.0,3.0,5.0,,4.0,5.0,5.0,3.0,5.0,5.0,3.0,3.0,3.0,,E2135,43.7402066562,-79.24491741920001,325330.686,4844280.778
-888698,4155935,2017.0,2021.0,1964.0,PRIVATE,21,Scarborough Centre,20 TRUDELLE ST,6,84,2021-04-20,86,Evaluation needs to be conducted in 3 years,18,5.0,3.0,5.0,5.0,5.0,5.0,5.0,3.0,5.0,,4.0,5.0,5.0,3.0,5.0,5.0,3.0,3.0,3.0,,E2135,43.7404592839,-79.2437182596,325427.189,4844309.14
-888699,4155123,,2021.0,1954.0,PRIVATE,5,York South-Weston,1240 WESTON RD,3,22,2021-04-20,74,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,4.0,3.0,3.0,,4.0,,,4.0,3.0,5.0,4.0,3.0,4.0,,4.0,3.0,4.0,W0531,43.6880806014,-79.4934709914,305310.766,4838458.456
-888700,4154821,2017.0,2021.0,1966.0,PRIVATE,17,Don Valley North,201 VAN HORNE AVE,18,245,2021-04-20,71,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,,2.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,3.0,,N1727,43.786395807,-79.353703275,316559.107,4849392.065
-888701,4154970,2017.0,2021.0,1977.0,TCHC,12,Toronto-St. Paul's,130 VAUGHAN RD,9,99,2021-04-20,85,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,S1229,43.6847713094,-79.4220013405,311072.831,4838093.652
-888702,4167451,2017.0,2021.0,1990.0,TCHC,10,Spadina-Fort York,125 QUEENS WHARF RD,7,73,2021-04-20,89,Evaluation needs to be conducted in 3 years,17,5.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,4.0,5.0,5.0,5.0,5.0,5.0,,4.0,4.0,,S1035,43.639890151,-79.39933353100001,,
-888703,4154962,2018.0,2021.0,1928.0,PRIVATE,12,Toronto-St. Paul's,50 RAGLAN AVE,4,32,2021-04-20,66,Evaluation needs to be conducted in 2 years,14,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,S1229,43.6844655265,-79.4205577721,311189.247,4838059.79
-888704,4156727,2017.0,2021.0,1967.0,PRIVATE,17,Don Valley North,100 PARKWAY FOREST DR,17,216,2021-04-20,71,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,2.0,,4.0,3.0,4.0,3.0,,2.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,N1730,,,317511.715,4847942.106000001
-888705,4155650,2017.0,2021.0,1962.0,TCHC,16,Don Valley East,51 PARKWOODS VILLAGE DR,7,81,2021-04-20,72,Evaluation needs to be conducted in 2 years,20,4.0,3.0,4.0,3.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,N1625,43.759507201000005,-79.320050542,319274.057,4846410.106000001
-888706,4155156,2017.0,2021.0,1965.0,PRIVATE,5,York South-Weston,36 CHURCH ST,6,41,2021-04-20,71,Evaluation needs to be conducted in 2 years,18,3.0,3.0,5.0,3.0,3.0,4.0,,3.0,3.0,3.0,3.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,W0524,43.7043490054,-79.52380161399999,302866.172,4840266.152
-888707,4153027,2017.0,2021.0,1917.0,PRIVATE,4,Parkdale-High Park,1479 QUEEN ST W,3,11,2021-04-20,68,Evaluation needs to be conducted in 2 years,13,3.0,4.0,4.0,3.0,,3.0,,4.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,S0436,43.639920626999995,-79.4393647797,309675.403,4833106.528
-888708,4154792,2017.0,2021.0,1990.0,TCHC,16,Don Valley East,20 SANDERLING PL,5,90,2021-04-20,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,N1626,43.7339142779,-79.3489216558,316954.747,4843561.308
-888709,4155292,2018.0,2021.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,47-49 RIVERWOOD PKWY,4,21,2021-04-20,73,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,,3.0,3.0,4.0,4.0,4.0,4.0,4.0,2.0,3.0,4.0,,W0327,43.640304287700005,-79.4914484566,305474.305,4833150.807
-888710,4255528,2017.0,2021.0,1950.0,PRIVATE,3,Etobicoke-Lakeshore,3 BIRCHLEA AVE,3,10,2021-04-20,66,Evaluation needs to be conducted in 2 years,14,3.0,4.0,3.0,3.0,1.0,4.0,,4.0,,,3.0,4.0,4.0,3.0,4.0,2.0,,4.0,,,W0334,43.592678404,-79.527798887,302539.32399999996,4827860.268
-888711,4154208,2017.0,2021.0,1955.0,PRIVATE,7,Humber River-Black Creek,1760 WILSON AVE,4,32,2021-04-20,60,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,2.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,2.0,,W0734,43.7194896137,-79.5165478577,303451.17600000004,4841947.966
-888712,4154209,2017.0,2021.0,1954.0,PRIVATE,7,Humber River-Black Creek,1770 WILSON AVE,3,31,2021-04-20,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0734,43.7193022696,-79.5173252308,303388.542,4841927.165
-888713,4155594,2017.0,2021.0,1968.0,TCHC,11,University-Rosedale,250 DAVENPORT RD,25,460,2021-04-19,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,,4.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,5.0,4.0,S1127,43.6748505579,-79.3982594579,312988.295,4836993.517
-888714,4154850,2017.0,2021.0,1977.0,TCHC,16,Don Valley East,1420 VICTORIA PARK AVE,10,330,2021-04-19,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,,3.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,N1631,43.721471797700005,-79.3024586823,320700.892,4842186.871
-888715,4154968,2017.0,2021.0,1983.0,TCHC,12,Toronto-St. Paul's,154 VAUGHAN RD,7,51,2021-04-19,83,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1229,43.685529080900004,-79.4222487062,311052.811,4838177.827
-888716,4286300,2018.0,2021.0,2005.0,SOCIAL HOUSING,13,Toronto Centre,270 MILAN ST,3,30,2021-04-19,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,3.0,4.0,,5.0,4.0,4.0,S1329,43.658372351000004,-79.36784953600001,315438.658,4835180.679
-888717,4152794,2017.0,2021.0,1970.0,TCHC,20,Scarborough Southwest,140 ADANAC DR,16,306,2021-04-19,82,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,E2027,43.740664525,-79.226955071,326777.047,4844337.194
-888718,4154917,2017.0,2021.0,1965.0,PRIVATE,16,Don Valley East,1300 YORK MILLS RD,8,112,2021-04-19,74,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,4.0,5.0,3.0,3.0,4.0,4.0,4.0,4.0,,N1622,43.7619582699,-79.3238669393,318966.436,4846680.805
-888719,4154922,2017.0,2021.0,1961.0,PRIVATE,16,Don Valley East,1254 YORK MILLS RD,4,58,2021-04-19,72,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,,N1622,43.7611151725,-79.3287829754,318570.798,4846586.319
-888720,4154923,2017.0,2021.0,1961.0,PRIVATE,16,Don Valley East,1244 YORK MILLS RD,4,58,2021-04-19,73,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,,N1622,43.7608810853,-79.3292989011,318529.31,4846560.228
-888721,4153004,2017.0,2021.0,1900.0,PRIVATE,4,Parkdale-High Park,1621 QUEEN ST W,6,74,2021-04-19,65,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,2.0,4.0,5.0,3.0,3.0,3.0,,4.0,3.0,,S0436,43.6387782668,-79.44488373739999,309231.4,4832982.61
-888722,4153005,2017.0,2021.0,1900.0,PRIVATE,4,Parkdale-High Park,1609 QUEEN ST W,3,41,2021-04-19,61,Evaluation needs to be conducted in 1 year,15,2.0,3.0,3.0,3.0,3.0,4.0,,2.0,,,4.0,4.0,3.0,3.0,3.0,3.0,,3.0,3.0,,S0436,43.638738833299996,-79.4444453098,309266.777,4832978.2530000005
-888723,4813513,,2021.0,,TCHC,13,Toronto Centre,50 REGENT PARK BLVD,9,155,2021-04-19,94,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,5.0,,5.0,4.0,5.0,4.0,4.0,5.0,5.0,5.0,5.0,5.0,S1330,,,315935.106,4835284.625
-888724,4153373,2017.0,2021.0,1929.0,PRIVATE,12,Toronto-St. Paul's,2 CLARENDON AVE,4,41,2021-04-19,99,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,5.0,5.0,,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,S1237,43.6835915113,-79.4007570137,312785.791,4837964.405
-888725,4154494,2018.0,2021.0,1983.0,SOCIAL HOUSING,8,Eglinton-Lawrence,3050 DUFFERIN ST,14,258,2021-04-19,75,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,3.0,3.0,3.0,3.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,N0826,43.7131568657,-79.4551622078,308397.684,4841245.195
-888726,4154495,2018.0,2021.0,1991.0,SOCIAL HOUSING,8,Eglinton-Lawrence,3010 DUFFERIN ST,10,202,2021-04-19,85,Evaluation needs to be conducted in 2 years,17,5.0,4.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,4.0,,N0826,43.711870888199996,-79.4549955166,308411.192,4841102.335
-888727,4153008,2017.0,2021.0,1900.0,PRIVATE,4,Parkdale-High Park,1504 KING ST W,3,15,2021-04-19,63,Evaluation needs to be conducted in 1 year,14,2.0,3.0,3.0,3.0,3.0,4.0,,2.0,,,4.0,4.0,3.0,3.0,4.0,3.0,,3.0,,,S0436,43.636665656800005,-79.4404917741,309585.93,4832748.153
-888728,4153300,2017.0,2021.0,1992.0,SOCIAL HOUSING,12,Toronto-St. Paul's,155 KENDAL AVE,5,59,2021-04-19,84,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,5.0,5.0,4.0,5.0,4.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,S1236,43.676219378199995,-79.4099056613,312049.04600000003,4837144.538
-888729,4329043,2018.0,2021.0,1949.0,PRIVATE,6,York Centre,24 ROSSEAU RD,3,11,2021-04-19,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,3.0,4.0,,3.0,,2.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,N0629,43.7430477683,-79.4377021661,309819.873,4844504.373
-888730,4329042,2018.0,2021.0,1949.0,PRIVATE,6,York Centre,22 ROSSEAU RD,3,11,2021-04-19,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,3.0,4.0,,3.0,,2.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,N0629,43.7428477034,-79.4376504263,309838.12899999996,4844457.074
-888731,4329041,2018.0,2021.0,1949.0,PRIVATE,6,York Centre,20 ROSSEAU RD,3,11,2021-04-19,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,3.0,4.0,,3.0,,2.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,N0629,43.7426311682,-79.437605185,309810.099,4844520.5430000005
-888732,4154004,2017.0,2021.0,1930.0,PRIVATE,12,Toronto-St. Paul's,484 ORIOLE PKWY,3,18,2021-04-19,75,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,3.0,3.0,4.0,,4.0,,4.0,3.0,4.0,5.0,4.0,3.0,4.0,3.0,4.0,4.0,,S1227,43.70424134939999,-79.406228883,312342.047,4840258.076
-888733,4329040,2018.0,2021.0,1949.0,PRIVATE,6,York Centre,18 ROSSEAU RD,3,11,2021-04-19,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,3.0,4.0,,3.0,,2.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,N0629,43.7424665293,-79.4377968737,309794.673,4844502.242
-888734,4329037,2018.0,2021.0,1949.0,PRIVATE,6,York Centre,16 ROSSEAU RD,3,11,2021-04-19,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,3.0,4.0,,3.0,,2.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,N0629,43.7422758604,-79.43772564560001,309800.425,4844481.063999999
-888735,4153917,2017.0,2021.0,1918.0,PRIVATE,12,Toronto-St. Paul's,58 ORIOLE GDNS,4,13,2021-04-19,75,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,3.0,4.0,3.0,,4.0,,4.0,3.0,4.0,5.0,3.0,4.0,3.0,,4.0,,,S1232,43.69062893899999,-79.400166183,312832.248,4838747.262
-888736,4156387,2018.0,2021.0,1963.0,PRIVATE,21,Scarborough Centre,45 TRUDELLE ST,6,66,2021-04-19,81,Evaluation needs to be conducted in 2 years,19,5.0,3.0,3.0,5.0,5.0,5.0,5.0,4.0,4.0,4.0,3.0,5.0,5.0,4.0,4.0,3.0,3.0,4.0,3.0,,E2135,43.739359678999996,-79.24262709999999,325530.477,4844213.33
-888737,4156388,2018.0,2021.0,1963.0,PRIVATE,21,Scarborough Centre,35 TRUDELLE ST,6,84,2021-04-19,80,Evaluation needs to be conducted in 2 years,18,5.0,3.0,3.0,4.0,5.0,4.0,5.0,4.0,4.0,,3.0,5.0,5.0,4.0,4.0,3.0,3.0,4.0,4.0,,E2135,43.738969517,-79.24334499300001,325510.51,4844207.261
-888738,4152762,2018.0,2021.0,1963.0,PRIVATE,21,Scarborough Centre,25 TRUDELLE ST,6,66,2021-04-19,60,Evaluation needs to be conducted in 1 year,18,4.0,3.0,3.0,3.0,2.0,2.0,3.0,3.0,3.0,,2.0,2.0,3.0,4.0,3.0,3.0,3.0,4.0,4.0,,E2135,43.7393268153,-79.2437802418,325412.352,4844257.077
-888739,4155820,2017.0,2021.0,1979.0,PRIVATE,11,University-Rosedale,235 BLOOR ST E,28,479,2021-04-18,89,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,3.0,4.0,4.0,5.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,,4.0,5.0,5.0,S1137,43.671276801400005,-79.3809034624,314388.38300000003,4836598.4
-888740,4155578,2017.0,2021.0,1969.0,TCHC,24,Scarborough-Guildwood,2190 ELLESMERE RD,16,180,2021-04-17,75,Evaluation needs to be conducted in 2 years,20,4.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,3.0,5.0,3.0,4.0,5.0,5.0,4.0,4.0,E2422,43.777855001099994,-79.23003317979999,326516.0,4848467.109
-888741,4152854,2017.0,2021.0,1975.0,TCHC,22,Scarborough-Agincourt,2008 PHARMACY AVE,13,293,2021-04-17,83,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,3.0,5.0,4.0,,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,E2225,43.776693031,-79.319134202,319343.731,4848319.569
-888742,4155579,2017.0,2021.0,1969.0,TCHC,24,Scarborough-Guildwood,2180 ELLESMERE RD,16,180,2021-04-16,74,Evaluation needs to be conducted in 2 years,20,3.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,5.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,E2422,43.777612123000004,-79.2311695919,326424.61,4848439.828
-888743,4154690,2017.0,2021.0,1950.0,PRIVATE,6,York Centre,4109 BATHURST ST,3,10,2021-04-16,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,2.0,3.0,,N0630,43.746407389,-79.43586259199999,309949.881,4844941.132
-888744,4152968,2017.0,2021.0,1960.0,PRIVATE,4,Parkdale-High Park,112 TYNDALL AVE,3,27,2021-04-16,75,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,,4.0,4.0,3.0,5.0,3.0,3.0,3.0,,3.0,4.0,,S0437,43.637071615299995,-79.4291933844,310497.50800000003,4832793.922
-888745,4154405,2017.0,2021.0,1993.0,TCHC,6,York Centre,1286 WILSON AVE,8,124,2021-04-16,71,Evaluation needs to be conducted in 2 years,19,4.0,4.0,3.0,3.0,3.0,4.0,4.0,3.0,4.0,,4.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,N0627,43.724294732,-79.493841391,305280.424,4842482.587
-888746,4154691,2017.0,2021.0,1955.0,PRIVATE,6,York Centre,4111 BATHURST ST,3,11,2021-04-16,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N0630,43.746615983000005,-79.43591063699999,309945.994,4844964.303
-888747,4154414,2017.0,2021.0,1957.0,PRIVATE,6,York Centre,2842 KEELE ST,3,12,2021-04-16,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N0627,43.73086204810001,-79.4833771869,306123.66,4843211.3319999995
-888748,4155181,2017.0,2021.0,1964.0,PRIVATE,5,York South-Weston,787 JANE ST,9,107,2021-04-16,69,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,3.0,4.0,3.0,4.0,4.0,,3.0,4.0,5.0,4.0,3.0,3.0,3.0,3.0,3.0,,W0539,43.6734652134,-79.4937789732,305286.007,4836834.748
-888749,4152970,2017.0,2021.0,1992.0,TCHC,4,Parkdale-High Park,102 TYNDALL AVE,7,54,2021-04-16,79,Evaluation needs to be conducted in 2 years,18,4.0,5.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,,S0437,43.6366904799,-79.428980996,310514.679,4832751.594
-888750,4155103,2017.0,2021.0,1950.0,PRIVATE,5,York South-Weston,98 TRETHEWEY DR,3,10,2021-04-16,64,Evaluation needs to be conducted in 1 year,16,3.0,4.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,2.0,3.0,,4.0,3.0,,W0532,43.6934431734,-79.4823929149,306203.767,4839054.32
-888751,4155682,2019.0,2021.0,1996.0,SOCIAL HOUSING,5,York South-Weston,338 FALSTAFF AVE,5,175,2021-04-16,86,Evaluation needs to be conducted in 3 years,20,4.0,4.0,5.0,4.0,4.0,5.0,5.0,5.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,W0522,43.720498199,-79.48286093600001,306181.501,4842073.748
-888752,4152969,2017.0,2021.0,1960.0,PRIVATE,4,Parkdale-High Park,110 TYNDALL AVE,3,26,2021-04-16,75,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,,4.0,4.0,3.0,5.0,3.0,3.0,3.0,,3.0,4.0,,S0437,43.6369083236,-79.42913717489999,310502.058,4832775.785
-888753,4155174,2017.0,2021.0,1965.0,PRIVATE,5,York South-Weston,8 CASTLETON AVE,3,17,2021-04-16,86,Evaluation needs to be conducted in 3 years,14,4.0,4.0,5.0,4.0,,5.0,,4.0,,,4.0,5.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0539,43.6691775481,-79.4863066035,305888.622,4836358.478
-888754,4155280,2017.0,2021.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,164 BERRY RD,3,27,2021-04-15,69,Evaluation needs to be conducted in 2 years,17,4.0,4.0,3.0,4.0,4.0,4.0,,3.0,,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,4.0,,W0327,43.636923601199996,-79.4910603874,305505.601,4832775.234
-888755,4155185,2019.0,2021.0,1952.0,PRIVATE,5,York South-Weston,1061 WESTON RD,3,11,2021-04-15,67,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,3.0,3.0,4.0,,4.0,,,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0535,43.6857167173,-79.48639998819999,305880.842,4838195.8889999995
-888756,4155184,2017.0,2021.0,1972.0,PRIVATE,5,York South-Weston,1059 WESTON RD,3,14,2021-04-15,67,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,4.0,3.0,4.0,,4.0,,,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,3.0,,W0535,43.68559996729999,-79.486207625,305896.352,4838182.921
-888757,4153036,2017.0,2021.0,1916.0,PRIVATE,4,Parkdale-High Park,1384 KING ST W,3,18,2021-04-15,68,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,,3.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,4.0,,,S0436,43.6376046857,-79.43500911390001,310028.218,4832852.784
-888758,4154365,2017.0,2021.0,1955.0,PRIVATE,6,York Centre,831 WILSON AVE,3,11,2021-04-15,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,3.0,2.0,3.0,,3.0,,,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N0632,43.731246207,-79.4630449202,307761.609,4843254.517
-888759,4155188,2017.0,2021.0,1954.0,PRIVATE,5,York South-Weston,2 JASPER AVE,3,22,2021-04-15,62,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0535,43.6835075066,-79.4830125811,306153.977,4837950.505
-888760,4153215,2018.0,2021.0,1989.0,TCHC,11,University-Rosedale,25 MADISON AVE,4,12,2021-04-15,68,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,3.0,3.0,4.0,,4.0,,3.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,,,S1127,43.668341436000006,-79.402632539,312636.214,4836270.93
-888761,4155080,2017.0,2021.0,1975.0,PRIVATE,5,York South-Weston,2501 EGLINTON AVE W,4,25,2021-04-15,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,5.0,,4.0,4.0,3.0,4.0,5.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,,W0537,43.6910731495,-79.469713055,307225.981,4838791.27
-888762,4153968,2017.0,2021.0,1985.0,TCHC,8,Eglinton-Lawrence,145 ELM RIDGE DR,9,53,2021-04-15,76,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,3.0,3.0,4.0,3.0,4.0,4.0,,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,,N0832,43.7025767096,-79.4383002971,309757.376,4840070.68
-888763,4154443,2017.0,2021.0,1955.0,PRIVATE,6,York Centre,3018 KEELE ST,4,31,2021-04-15,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,2.0,4.0,5.0,3.0,3.0,3.0,,3.0,2.0,,N0627,43.7375858771,-79.4850746681,305986.793,4843958.284
-888764,4167455,2017.0,2021.0,2000.0,TCHC,10,Spadina-Fort York,146 FORT YORK BLVD,7,25,2021-04-15,93,Evaluation needs to be conducted in 3 years,16,5.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,5.0,5.0,5.0,5.0,5.0,5.0,,4.0,,,S1028,43.639312743000005,-79.399107317,,
-888765,4285984,2017.0,2021.0,2009.0,TCHC,13,Toronto Centre,252 SACKVILLE ST,22,159,2021-04-15,84,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,5.0,5.0,4.0,5.0,4.0,5.0,3.0,4.0,S1330,43.660500875,-79.36342677,315793.31899999996,4835425.091
-888766,4155090,2017.0,2021.0,1950.0,PRIVATE,5,York South-Weston,2 GLENHAVEN ST,4,24,2021-04-15,78,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,3.0,,3.0,,4.0,4.0,5.0,5.0,4.0,4.0,4.0,3.0,4.0,2.0,,W0533,43.6915635966,-79.470083716,307196.082,4838845.745
-888767,4155581,2017.0,2021.0,1971.0,TCHC,24,Scarborough-Guildwood,90 MORNELLE CRT,13,198,2021-04-15,74,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,4.0,,3.0,4.0,5.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,E2423,43.787815708000004,-79.196116635,329241.848,4849584.106000001
-888768,4153966,2017.0,2021.0,1953.0,PRIVATE,8,Eglinton-Lawrence,2100 BATHURST ST,5,62,2021-04-15,83,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,N0832,43.7037994792,-79.4264104952,310715.567,4840207.343
-888769,4283407,2019.0,2021.0,,SOCIAL HOUSING,13,Toronto Centre,20 PALACE ST,10,108,2021-04-15,89,Evaluation needs to be conducted in 3 years,18,4.0,5.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,5.0,5.0,4.0,5.0,,4.0,5.0,4.0,S1336,43.653784814,-79.356665413,316346.038,4834659.18
-888770,4152839,2017.0,2021.0,1974.0,TCHC,24,Scarborough-Guildwood,4175 LAWRENCE AVE E,13,375,2021-04-15,76,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,4.0,3.0,4.0,3.0,5.0,4.0,,3.0,4.0,5.0,3.0,3.0,4.0,5.0,4.0,4.0,4.0,E2432,43.7672342065,-79.1888137161,329838.377,4847298.7530000005
-888771,4152838,2017.0,2021.0,1985.0,SOCIAL HOUSING,24,Scarborough-Guildwood,4201-4203 KINGSTON RD,3,39,2021-04-15,66,Evaluation needs to be conducted in 2 years,16,3.0,4.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,4.0,3.0,3.0,3.0,4.0,3.0,,E2432,43.760255326199996,-79.1959527881,329266.458,4846521.28
-888772,4156324,2017.0,2021.0,1972.0,PRIVATE,7,Humber River-Black Creek,2000 SHEPPARD AVE W,20,266,2021-04-15,79,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,5.0,W0729,43.73964798,-79.514852262,303547.403,4844129.347
-888773,4418699,2021.0,2021.0,1955.0,PRIVATE,6,York Centre,7 ROSSEAU RD,3,11,2021-04-15,75,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,3.0,3.0,4.0,,3.0,,3.0,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,N0629,43.7419930803,-79.4364254778,309905.166,4844449.718
-888774,4155803,2017.0,2021.0,2012.0,TCHC,10,Spadina-Fort York,150 DAN LECKIE WAY,41,298,2021-04-15,91,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,3.0,,4.0,5.0,5.0,5.0,5.0,5.0,,4.0,4.0,,S1035,,,312970.465,4833094.847
-888775,4152693,2017.0,2021.0,1969.0,PRIVATE,21,Scarborough Centre,15 ROSEMOUNT DR,7,72,2021-04-15,76,Evaluation needs to be conducted in 2 years,19,5.0,3.0,3.0,4.0,5.0,4.0,5.0,3.0,5.0,5.0,3.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,,E2133,43.7322696922,-79.2741030573,322982.267,4843392.233
-888776,4264085,2017.0,2021.0,1979.0,PRIVATE,13,Toronto Centre,25 WOOD ST,26,284,2021-04-14,83,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,S1326,43.6622523376,-79.381868515,314311.982,4835595.749
-888777,4156154,2017.0,2021.0,1987.0,TCHC,10,Spadina-Fort York,111 CHESTNUT ST,15,144,2021-04-14,75,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,4.0,4.0,4.0,3.0,3.0,4.0,,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,3.0,,S1025,43.654837970500004,-79.3855802239,314013.80100000004,4834771.619
-888778,4155157,2017.0,2021.0,1963.0,PRIVATE,5,York South-Weston,29 CHURCH ST,10,63,2021-04-14,74,Evaluation needs to be conducted in 2 years,17,3.0,4.0,4.0,3.0,3.0,3.0,,4.0,4.0,,3.0,3.0,5.0,5.0,4.0,4.0,4.0,4.0,3.0,,W0524,43.7037504751,-79.52345642899999,302893.972,4840199.653
-888779,4154264,2017.0,2021.0,1969.0,TCHC,7,Humber River-Black Creek,35 SHOREHAM DR,11,323,2021-04-14,87,Evaluation needs to be conducted in 3 years,19,4.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,5.0,,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,W0725,43.768780728,-79.518663474,303286.907,4847413.625
-888780,4153578,2017.0,2021.0,1961.0,TCHC,13,Toronto Centre,230 RIVER ST,3,25,2021-04-14,80,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,3.0,3.0,4.0,4.0,4.0,,,4.0,3.0,4.0,4.0,5.0,5.0,,5.0,4.0,,S1327,43.664254094499995,-79.3598482523,316087.61100000003,4835820.851
-888781,4155593,2017.0,2021.0,1964.0,TCHC,11,University-Rosedale,177 PENDRITH ST,3,54,2021-04-14,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,3.0,4.0,4.0,,3.0,4.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,S1124,43.665548195,-79.425655665,310757.594,4836003.746
-888782,4156361,2017.0,2021.0,1990.0,TCHC,5,York South-Weston,600 ROGERS RD,9,207,2021-04-14,82,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,5.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,W0536,43.682227677,-79.47249628,306987.646,4837812.192
-888783,4153044,2017.0,2021.0,1980.0,TCHC,4,Parkdale-High Park,300 DUFFERIN ST,7,114,2021-04-14,82,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,5.0,4.0,5.0,4.0,4.0,,4.0,4.0,5.0,4.0,3.0,4.0,4.0,5.0,4.0,,S0436,43.6395518816,-79.4281871995,310578.464,4833069.527
-888784,4257261,2017.0,2021.0,1979.0,PRIVATE,13,Toronto Centre,20 CARLTON ST,16,216,2021-04-14,81,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,S1326,43.661630396999996,-79.3815767552,314335.61100000003,4835526.693
-888785,4153474,2017.0,2021.0,1960.0,PRIVATE,13,Toronto Centre,166 CARLTON ST,11,92,2021-04-14,85,Evaluation needs to be conducted in 2 years,19,5.0,5.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,3.0,5.0,5.0,4.0,3.0,4.0,4.0,3.0,5.0,5.0,,S1326,43.663298218,-79.373807891,314961.659,4835713.815
-888786,4155279,2017.0,2021.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,162 BERRY RD,4,39,2021-04-14,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,W0327,43.637123338900004,-79.4904689294,305553.339,4832797.429
-888787,4155567,2017.0,2021.0,1972.0,TCHC,21,Scarborough Centre,1021 BIRCHMOUNT RD,11,236,2021-04-14,77,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,3.0,4.0,5.0,3.0,5.0,4.0,,3.0,3.0,3.0,5.0,3.0,3.0,5.0,5.0,3.0,4.0,E2133,43.73164966,-79.27790394600001,322675.98699999996,4843323.473999999
-888788,4286252,2017.0,2021.0,1980.0,TCHC,13,Toronto Centre,45 ST LAWRENCE ST,4,50,2021-04-14,90,Evaluation needs to be conducted in 3 years,18,5.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,,4.0,4.0,5.0,5.0,4.0,5.0,,5.0,4.0,5.0,S1336,,,316378.169,4834907.149
-888789,4153335,2017.0,2021.0,1980.0,TCHC,12,Toronto-St. Paul's,470 MELITA CRES,5,37,2021-04-14,77,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,4.0,4.0,4.0,,3.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,3.0,,S1234,43.672253431,-79.426653288,310698.713,4836703.584
-888790,4156756,2017.0,2021.0,1989.0,TCHC,5,York South-Weston,2468 EGLINTON AVE W,21,210,2021-04-14,67,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,W0533,43.69202835,-79.468140737,307352.43,4838898.385
-888791,4154512,2017.0,2021.0,1956.0,PRIVATE,8,Eglinton-Lawrence,64 WASDALE CRES,3,15,2021-04-14,65,Evaluation needs to be conducted in 1 year,17,3.0,3.0,5.0,3.0,3.0,3.0,,2.0,,3.0,3.0,4.0,5.0,3.0,3.0,3.0,2.0,3.0,4.0,,N0823,43.730707835100006,-79.4377714103,309797.687,4843195.944
-888792,4154540,2017.0,2021.0,1956.0,PRIVATE,8,Eglinton-Lawrence,67 WASDALE CRES,3,11,2021-04-14,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,5.0,3.0,1.0,3.0,,2.0,,,2.0,3.0,4.0,3.0,4.0,3.0,3.0,4.0,4.0,,N0823,43.730061032799995,-79.4379110526,309786.49199999997,4843124.078
-888793,4152830,2017.0,2021.0,1967.0,PRIVATE,24,Scarborough-Guildwood,3950 LAWRENCE AVE E,15,164,2021-04-14,77,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,E2427,43.7649205,-79.204613933,328567.233,4847037.068
-888794,4154503,2017.0,2021.0,1959.0,PRIVATE,8,Eglinton-Lawrence,61 NEPTUNE DR,3,34,2021-04-14,73,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,3.0,3.0,4.0,,4.0,2.0,4.0,3.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,N0823,43.7318688176,-79.4374660042,309822.193,4843324.941000001
-888795,4152847,2017.0,2021.0,1960.0,PRIVATE,24,Scarborough-Guildwood,290 MORNINGSIDE AVE,6,107,2021-04-14,69,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,,E2428,43.7717382496,-79.18790554649999,329909.622,4847799.407
-888796,4152737,2017.0,2021.0,1960.0,TCHC,21,Scarborough Centre,2950 LAWRENCE AVE E,6,200,2021-04-14,90,Evaluation needs to be conducted in 3 years,20,4.0,3.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,5.0,5.0,3.0,5.0,E2130,43.75523277,-79.2505927043,324868.554,4845948.7
-888797,4155583,2017.0,2021.0,1972.0,TCHC,24,Scarborough-Guildwood,4100 LAWRENCE AVE E,11,185,2021-04-14,82,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,3.0,4.0,5.0,5.0,5.0,,4.0,4.0,5.0,4.0,3.0,4.0,5.0,4.0,3.0,,E2428,43.76703953,-79.195497441,329267.349,4847214.382
-888798,4285972,2017.0,2021.0,1972.0,TCHC,24,Scarborough-Guildwood,4110 LAWRENCE AVE E,11,185,2021-04-14,82,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,,4.0,3.0,5.0,4.0,3.0,4.0,5.0,4.0,4.0,5.0,E2428,43.767386062,-79.193922136,329338.224,4847236.605
-888799,4156237,2017.0,2021.0,1940.0,PRIVATE,20,Scarborough Southwest,1469 KINGSTON RD,3,15,2021-04-14,72,Evaluation needs to be conducted in 2 years,15,3.0,4.0,3.0,4.0,3.0,4.0,,3.0,,,3.0,4.0,4.0,4.0,4.0,4.0,,3.0,4.0,,E2034,43.688219097,-79.26980053300001,323367.67,4838524.609
-888800,4156236,2017.0,2021.0,1940.0,PRIVATE,20,Scarborough Southwest,1475 KINGSTON RD,3,14,2021-04-14,75,Evaluation needs to be conducted in 2 years,15,3.0,4.0,3.0,3.0,,4.0,,4.0,,,4.0,4.0,3.0,4.0,4.0,4.0,,4.0,4.0,4.0,E2034,43.68817271,-79.26943584600001,323380.727,4838536.898
-888801,4167772,2017.0,2021.0,1980.0,TCHC,10,Spadina-Fort York,49 HENRY LANE TER,5,15,2021-04-14,68,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,4.0,,3.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,,,S1038,43.646859158999995,-79.369670022,315285.761,4833893.711
-888802,4154402,2017.0,2021.0,1964.0,PRIVATE,6,York Centre,2219 JANE ST,3,12,2021-04-14,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N0627,43.7235999669,-79.50892215350001,304065.665,4842404.48
-888803,4154403,2017.0,2021.0,1964.0,PRIVATE,6,York Centre,2221 JANE ST,3,12,2021-04-14,67,Evaluation needs to be conducted in 2 years,17,4.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,N0627,43.7238402109,-79.5089780536,304061.165,4842431.169
-888804,4154404,2017.0,2021.0,1965.0,PRIVATE,6,York Centre,2233 JANE ST,5,39,2021-04-14,61,Evaluation needs to be conducted in 1 year,18,2.0,3.0,4.0,3.0,2.0,3.0,,4.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,2.0,3.0,3.0,,N0627,43.7246876159,-79.5089652958,304062.206,4842525.308
-888805,4153038,2020.0,2021.0,1890.0,PRIVATE,4,Parkdale-High Park,1340 KING ST W,4,16,2021-04-14,61,Evaluation needs to be conducted in 1 year,14,2.0,2.0,3.0,3.0,3.0,2.0,,2.0,,,3.0,4.0,5.0,3.0,4.0,3.0,,4.0,,,S0436,43.6379541614,-79.43303340050001,310187.598,4832891.726
-888806,4156254,2017.0,2021.0,1940.0,PRIVATE,20,Scarborough Southwest,1445 KINGSTON RD,3,14,2021-04-14,76,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,3.0,3.0,4.0,,3.0,,,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,,E2034,43.687651655,-79.270543261,323273.62,4838437.409
-888807,4155171,2017.0,2021.0,1959.0,PRIVATE,5,York South-Weston,2202 WESTON RD,6,97,2021-04-14,78,Evaluation needs to be conducted in 2 years,18,2.0,4.0,5.0,3.0,3.0,3.0,,5.0,4.0,3.0,3.0,4.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,,W0524,43.703250055,-79.526966387,302610.793,4840145.125
-888808,4153479,2017.0,2021.0,1993.0,TCHC,13,Toronto Centre,95 WOOD ST,8,72,2021-04-13,90,Evaluation needs to be conducted in 3 years,16,5.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,,4.0,5.0,5.0,4.0,4.0,4.0,,5.0,,,S1326,43.662785659799994,-79.378610577,314574.658,4835655.357
-888809,4154959,2017.0,2021.0,1955.0,PRIVATE,12,Toronto-St. Paul's,147 VAUGHAN RD,3,12,2021-04-13,70,Evaluation needs to be conducted in 2 years,14,3.0,4.0,5.0,3.0,3.0,3.0,,4.0,,,3.0,3.0,5.0,3.0,4.0,3.0,,3.0,,,S1229,43.6852816558,-79.4214805107,311114.77,4838150.393999999
-888810,4156339,2018.0,2021.0,1992.0,SOCIAL HOUSING,25,Scarborough-Rouge Park,23 DURNFORD RD,3,14,2021-04-13,80,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,,4.0,,4.0,,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2530,43.79845735,-79.149242668,332939.033,4850889.281
-888811,4156138,2018.0,2021.0,1992.0,SOCIAL HOUSING,25,Scarborough-Rouge Park,21 DURNFORD RD,4,21,2021-04-13,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,,E2530,43.798928736,-79.14946215399999,332940.571,4850884.586
-888812,4156137,2018.0,2021.0,1992.0,SOCIAL HOUSING,25,Scarborough-Rouge Park,19 DURNFORD RD,4,28,2021-04-13,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,E2530,43.798799318,-79.149848619,332942.11,4850879.891
-888813,4156073,2018.0,2021.0,1992.0,SOCIAL HOUSING,25,Scarborough-Rouge Park,17 DURNFORD RD,3,14,2021-04-13,80,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,,4.0,,4.0,,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2530,43.798355203999996,-79.14960800600001,332968.256,4850790.927
-888814,4156139,2018.0,2021.0,1992.0,SOCIAL HOUSING,25,Scarborough-Rouge Park,39 DURNFORD RD,3,14,2021-04-13,80,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2530,43.799771853,-79.150262267,332926.722,4850926.841
-888815,4155977,2018.0,2021.0,1992.0,SOCIAL HOUSING,25,Scarborough-Rouge Park,37 DURNFORD RD,4,28,2021-04-13,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2530,43.79936022,-79.15004455399999,332928.261,4850922.146000001
-888816,4156266,2018.0,2021.0,1992.0,SOCIAL HOUSING,25,Scarborough-Rouge Park,35 DURNFORD RD,4,21,2021-04-13,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2530,43.799334653,-79.149625429,332929.799,4850917.452
-888817,4155865,2018.0,2021.0,1952.0,PRIVATE,20,Scarborough Southwest,50 GLEN EVEREST RD,3,16,2021-04-13,77,Evaluation needs to be conducted in 2 years,14,3.0,3.0,1.0,4.0,,5.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,5.0,,E2035,43.701846021,-79.253208949,324675.207,4840018.077
-888818,4268876,2017.0,2021.0,1980.0,TCHC,21,Scarborough Centre,81 GILDER DR,6,22,2021-04-13,86,Evaluation needs to be conducted in 3 years,19,5.0,3.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,E2134,43.7364538465,-79.2539355905,324605.517,4843861.682
-888819,4155574,2017.0,2021.0,1970.0,TCHC,21,Scarborough Centre,31 GILDER DR,18,190,2021-04-13,77,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,3.0,5.0,5.0,5.0,5.0,3.0,,3.0,3.0,2.0,3.0,4.0,5.0,4.0,3.0,4.0,4.0,E2134,43.736255093000004,-79.256313276,324416.792,4843867.719
-888820,4153042,2017.0,2021.0,1957.0,PRIVATE,4,Parkdale-High Park,1 A ELM GROVE AVE,3,12,2021-04-13,69,Evaluation needs to be conducted in 2 years,13,2.0,3.0,3.0,2.0,,4.0,,4.0,,,2.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,S0436,43.6386867446,-79.4301347335,310421.409,4832973.29
-888821,4153041,2018.0,2021.0,1931.0,PRIVATE,4,Parkdale-High Park,1 ELM GROVE AVE,3,12,2021-04-13,66,Evaluation needs to be conducted in 2 years,13,3.0,3.0,3.0,3.0,,4.0,,3.0,,,2.0,3.0,5.0,3.0,4.0,4.0,,3.0,,,S0436,43.6385635779,-79.4300912063,310424.932,4832959.61
-888822,4155862,2018.0,2021.0,1952.0,PRIVATE,20,Scarborough Southwest,46 GLEN EVEREST RD,3,16,2021-04-13,67,Evaluation needs to be conducted in 2 years,14,3.0,3.0,1.0,3.0,,4.0,,4.0,,,3.0,3.0,3.0,4.0,4.0,4.0,,4.0,4.0,,E2035,43.70167262,-79.253298302,324668.064,4839998.791999999
-888823,4152576,2017.0,2021.0,1970.0,TCHC,20,Scarborough Southwest,10 GLEN EVEREST RD,17,350,2021-04-13,82,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,,E2035,43.69932241,-79.25477866899999,324549.538,4839737.34
-888824,4153229,2017.0,2021.0,1980.0,TCHC,11,University-Rosedale,18 DAVENPORT RD,16,128,2021-04-13,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,3.0,5.0,4.0,3.0,4.0,,5.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,,S1128,43.673115478999996,-79.388725935,313757.068,4836802.752
-888825,4152828,2017.0,2021.0,1970.0,PRIVATE,24,Scarborough-Guildwood,40 TUXEDO CRT,16,216,2021-04-13,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,5.0,,4.0,5.0,5.0,3.0,3.0,4.0,3.0,3.0,3.0,,E2422,43.7812686846,-79.2307597681,326456.284,4848846.156
-888826,4152604,2019.0,2021.0,1954.0,PRIVATE,20,Scarborough Southwest,1051 VICTORIA PARK AVE,3,11,2021-04-13,68,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,4.0,3.0,4.0,,3.0,,4.0,3.0,3.0,4.0,4.0,2.0,3.0,,4.0,2.0,,E2028,43.706282345,-79.29457963899999,321339.63899999997,4840501.868
-888827,4153523,2017.0,2021.0,1967.0,PRIVATE,13,Toronto Centre,540 SHERBOURNE ST,14,95,2021-04-13,89,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,4.0,5.0,5.0,,4.0,4.0,,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,S1322,43.6691271735,-79.3759585393,314787.50800000003,4836360.15
-888828,4154467,2017.0,2021.0,1994.0,SOCIAL HOUSING,7,Humber River-Black Creek,3470 KEELE ST,4,59,2021-04-13,65,Evaluation needs to be conducted in 1 year,20,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,W0731,43.752235605,-79.488646145,305708.984,4845589.605
-888829,4153565,2017.0,2021.0,2005.0,SOCIAL HOUSING,13,Toronto Centre,101 ONTARIO ST,8,52,2021-04-13,93,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,4.0,4.0,4.0,,5.0,5.0,,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,4.0,5.0,S1335,43.6545984289,-79.3667107495,315535.847,4834747.248
-888830,4153729,2017.0,2021.0,1984.0,TCHC,11,University-Rosedale,40 ASQUITH AVE,17,192,2021-04-13,69,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,5.0,,3.0,4.0,4.0,3.0,3.0,3.0,,4.0,3.0,,S1129,43.671910843999996,-79.38519572,314041.906,4836669.308999999
-888831,4152590,2017.0,2021.0,1978.0,TCHC,20,Scarborough Southwest,3330 DANFORTH AVE,10,194,2021-04-13,94,Evaluation needs to be conducted in 3 years,19,5.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,,4.0,5.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,E2028,43.6937304177,-79.2786118075,322630.485,4839109.71
-888832,4153819,2017.0,2021.0,1954.0,TCHC,12,Toronto-St. Paul's,133 BROADWAY AVE,4,52,2021-04-13,71,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,3.0,,S1221,43.710473457,-79.391890313,313496.527,4840952.816000001
-888833,4155575,2017.0,2021.0,1968.0,TCHC,21,Scarborough Centre,400 MCCOWAN RD,10,198,2021-04-13,85,Evaluation needs to be conducted in 2 years,20,5.0,3.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,3.0,5.0,3.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,E2135,43.74110206100001,-79.241172366,325656.703,4844463.541999999
-888834,4152741,2017.0,2021.0,1965.0,PRIVATE,24,Scarborough-Guildwood,960 MARKHAM RD,15,181,2021-04-13,70,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,,2.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,,E2425,43.771935488000004,-79.2306318513,326469.941,4847809.335
-888835,4153752,2017.0,2021.0,1960.0,PRIVATE,11,University-Rosedale,309 MOUNT PLEASANT RD,3,25,2021-04-12,71,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,3.0,4.0,,3.0,,,4.0,3.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,,S1122,43.690180248599994,-79.38293192020001,314221.897,4838698.284
-888836,4152754,2017.0,2021.0,1965.0,PRIVATE,21,Scarborough Centre,1350 DANFORTH RD,15,225,2021-04-12,89,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,4.0,4.0,5.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,,E2135,,,325244.414,4844732.401000001
-888837,4155036,2017.0,2021.0,1960.0,PRIVATE,12,Toronto-St. Paul's,560 OAKWOOD AVE,3,24,2021-04-12,55,Evaluation needs to be conducted in 1 year,15,3.0,4.0,5.0,2.0,3.0,2.0,,3.0,,,3.0,2.0,2.0,3.0,2.0,2.0,,3.0,2.0,,S1222,43.693346722,-79.4414872013,309501.192,4839045.058999999
-888838,4154990,2017.0,2021.0,1923.0,PRIVATE,12,Toronto-St. Paul's,1602 BATHURST ST,4,32,2021-04-12,71,Evaluation needs to be conducted in 2 years,14,3.0,4.0,5.0,3.0,3.0,3.0,,4.0,,,3.0,3.0,5.0,3.0,3.0,4.0,,4.0,,,S1229,43.688611529700005,-79.4209411738,311157.917,4838520.396000001
-888839,4154944,2017.0,2021.0,1940.0,PRIVATE,12,Toronto-St. Paul's,1580 BATHURST ST,4,24,2021-04-12,69,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,3.0,3.0,4.0,,4.0,,3.0,3.0,3.0,5.0,3.0,2.0,3.0,4.0,3.0,,,S1229,43.6864991391,-79.4200531796,311229.721,4838285.768999999
-888840,4153345,2017.0,2021.0,1993.0,TCHC,12,Toronto-St. Paul's,1400 BATHURST ST,5,113,2021-04-12,88,Evaluation needs to be conducted in 3 years,20,4.0,5.0,5.0,5.0,4.0,4.0,5.0,4.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,3.0,S1235,43.6806482749,-79.418061916,311390.894,4837635.882
-888841,4155741,2017.0,2021.0,2003.0,TCHC,12,Toronto-St. Paul's,659 NORTHCLIFFE BLVD,7,54,2021-04-12,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,,3.0,5.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S1222,43.695812448999995,-79.4472340895,309037.765,4839318.706
-888842,4156429,2017.0,2021.0,1971.0,TCHC,17,Don Valley North,5 BRAHMS AVE,13,178,2021-04-12,73,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,2.0,4.0,3.0,4.0,3.0,4.0,,3.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,,N1722,43.792728204899994,-79.3578376974,316225.415,4850094.01
-888843,4155685,2017.0,2021.0,1981.0,TCHC,12,Toronto-St. Paul's,1775 EGLINTON AVE W,14,300,2021-04-12,73,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,3.0,4.0,3.0,4.0,,4.0,4.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,2.0,S1222,,,308913.028,4839318.616
-888844,4152778,2018.0,2021.0,1960.0,PRIVATE,20,Scarborough Southwest,3171 KINGSTON RD,4,18,2021-04-12,72,Evaluation needs to be conducted in 2 years,17,3.0,4.0,4.0,3.0,3.0,4.0,,4.0,3.0,,3.0,3.0,5.0,4.0,3.0,4.0,5.0,3.0,3.0,,E2037,43.7283659321,-79.228113442,326688.443,4842969.629
-888845,4152682,2017.0,2021.0,1960.0,PRIVATE,20,Scarborough Southwest,2239 EGLINTON AVE E,7,107,2021-04-12,96,Evaluation needs to be conducted in 3 years,19,5.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,5.0,,E2023,43.730088232,-79.274600978,322942.54600000003,4843150.725
-888846,4152753,2017.0,2021.0,1962.0,PRIVATE,21,Scarborough Centre,1340 DANFORTH RD,15,173,2021-04-12,86,Evaluation needs to be conducted in 3 years,20,5.0,4.0,5.0,3.0,4.0,5.0,4.0,5.0,4.0,5.0,3.0,4.0,3.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,E2135,,,325262.778,4844643.98
-888847,4152787,2017.0,2021.0,1965.0,PRIVATE,20,Scarborough Southwest,3101 EGLINTON AVE E,6,68,2021-04-12,82,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,,E2027,43.7413605871,-79.2245308289,326972.31,4844414.202
-888848,4152755,2017.0,2021.0,1963.0,PRIVATE,21,Scarborough Centre,1360 DANFORTH RD,15,172,2021-04-12,76,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,4.0,4.0,5.0,4.0,3.0,3.0,,3.0,3.0,2.0,5.0,3.0,3.0,5.0,5.0,3.0,3.0,E2135,,,325286.581,4844810.473
-888849,4153000,2017.0,2021.0,1917.0,PRIVATE,4,Parkdale-High Park,1465 KING ST W,3,48,2021-04-12,69,Evaluation needs to be conducted in 2 years,14,3.0,4.0,4.0,3.0,3.0,3.0,,4.0,,,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,,,S0437,43.6362466824,-79.4390220759,309704.547,4832701.692
-888850,4153354,2017.0,2021.0,1929.0,PRIVATE,12,Toronto-St. Paul's,795 ST CLAIR AVE W,3,19,2021-04-12,60,Evaluation needs to be conducted in 1 year,14,2.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,2.0,3.0,4.0,3.0,3.0,4.0,,3.0,,,S1234,43.6804983237,-79.4302086848,310411.49,4837618.363
-888851,4155611,2017.0,2021.0,1956.0,TCHC,19,Beaches-East York,59 EDGEWOOD AVE,4,53,2021-04-09,66,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,3.0,3.0,4.0,4.0,4.0,3.0,3.0,4.0,,4.0,2.0,3.0,S1937,43.6716543566,-79.31309707850001,319856.144,4836650.363
-888852,4155612,2017.0,2021.0,1956.0,TCHC,19,Beaches-East York,93 EDGEWOOD AVE,4,43,2021-04-09,60,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,S1937,43.672557653599995,-79.314197336,319767.19800000003,4836750.522
-888853,4152829,2017.0,2021.0,1971.0,TCHC,24,Scarborough-Guildwood,50 TUXEDO CRT,15,378,2021-04-09,83,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,3.0,5.0,4.0,5.0,4.0,,3.0,5.0,5.0,5.0,3.0,4.0,4.0,4.0,4.0,5.0,E2422,43.7808585866,-79.2318241185,326370.75899999996,4848800.317
-888854,4153385,2017.0,2021.0,1979.0,TCHC,10,Spadina-Fort York,25 HENRY LANE TER,6,196,2021-04-09,72,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,,,S1038,43.64755666,-79.370208586,315257.886,4833963.232
-888855,4153696,2017.0,2021.0,1984.0,TCHC,19,Beaches-East York,11 NEWBOLD AVE,4,21,2021-04-09,76,Evaluation needs to be conducted in 2 years,16,4.0,3.0,5.0,3.0,3.0,4.0,,3.0,,,3.0,5.0,5.0,4.0,4.0,4.0,5.0,3.0,3.0,,S1934,43.674947931999995,-79.317603815,319491.665,4837016.428
-888856,4153120,2017.0,2021.0,1987.0,TCHC,10,Spadina-Fort York,25 BISHOP TUTU BLVD,10,119,2021-04-09,84,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,3.0,,S1035,43.635725128000004,-79.399857548,312873.219,4832658.333000001
-888857,4153124,2017.0,2021.0,1988.0,TCHC,10,Spadina-Fort York,679 QUEENS QUAY W,6,106,2021-04-09,84,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,,,S1035,43.634496448,-79.39997992,312854.726,4832511.103999999
-888858,4153707,2017.0,2021.0,1954.0,TCHC,19,Beaches-East York,320 KINGSTON RD,3,39,2021-04-09,59,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,5.0,,,3.0,2.0,2.0,3.0,3.0,3.0,4.0,2.0,2.0,,S1935,43.6747928439,-79.3073203588,320321.163,4837000.094
-888859,4153058,2017.0,2021.0,1930.0,PRIVATE,4,Parkdale-High Park,1585 BLOOR ST W,3,48,2021-04-08,71,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,3.0,3.0,3.0,,4.0,,3.0,4.0,3.0,5.0,3.0,4.0,4.0,,3.0,,,S0432,43.655531643,-79.454594071,308446.68,4834844.344
-888860,4153022,2017.0,2021.0,1953.0,TCHC,4,Parkdale-High Park,3 LAXTON AVE,8,42,2021-04-07,77,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,3.0,3.0,4.0,4.0,3.0,,4.0,5.0,5.0,3.0,4.0,4.0,4.0,3.0,4.0,,S0436,43.639146507700005,-79.43773771810001,309807.939,4833023.91
-888861,4153103,2017.0,2021.0,1973.0,PRIVATE,9,Davenport,1011 LANSDOWNE AVE,21,352,2021-03-04,57,Evaluation needs to be conducted in 1 year,18,2.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,2.0,,2.0,4.0,2.0,3.0,2.0,3.0,3.0,3.0,3.0,,S0930,43.6672554091,-79.4464193523,309105.45399999997,4836146.163
-888862,4476597,2018.0,2021.0,1925.0,PRIVATE,19,Beaches-East York,983 KINGSTON RD,3,14,2021-01-08,74,Evaluation needs to be conducted in 2 years,14,4.0,3.0,4.0,4.0,4.0,4.0,,4.0,,,3.0,4.0,5.0,3.0,3.0,4.0,,3.0,,,S1940,43.680349197299996,-79.28634449409999,322010.985,4837621.499
-888863,4154800,,2020.0,1960.0,PRIVATE,16,Don Valley East,874 LAWRENCE AVE E,3,12,2020-12-23,73,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,2.0,3.0,3.0,,5.0,,,3.0,3.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,N1623,43.7361423501,-79.34977188479999,316885.812,4843808.714
-888864,4156791,2017.0,2020.0,1960.0,PRIVATE,16,Don Valley East,876 LAWRENCE AVE E,3,12,2020-12-23,81,Evaluation needs to be conducted in 2 years,16,4.0,5.0,5.0,4.0,3.0,4.0,,4.0,,,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N1623,43.736202426000006,-79.34939102,316916.219,4843816.4
-888865,4154834,2017.0,2020.0,1968.0,PRIVATE,17,Don Valley North,20 GODSTONE RD,15,174,2020-12-23,81,Evaluation needs to be conducted in 2 years,19,4.0,5.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,3.0,N1727,43.780638469399996,-79.3474983213,317059.92600000004,4848752.364
-888866,4154857,2017.0,2020.0,1962.0,PRIVATE,16,Don Valley East,80 BARTLEY DR,3,10,2020-12-23,73,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,3.0,3.0,4.0,,4.0,,,3.0,3.0,5.0,4.0,4.0,3.0,,4.0,4.0,,N1631,43.722615158,-79.306619676,320365.066,4842314.073
-888867,4154205,2017.0,2020.0,1965.0,PRIVATE,15,Don Valley West,1903 BAYVIEW AVE,5,27,2020-12-23,73,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,,N1529,43.715723026300005,-79.377538515,314652.469,4841536.636
-888868,4154856,2017.0,2020.0,1950.0,PRIVATE,16,Don Valley East,76 BARTLEY DR,3,10,2020-12-23,77,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,,,3.0,5.0,5.0,4.0,4.0,3.0,,4.0,3.0,,N1631,43.722668083,-79.306350662,320386.727,4842320.0030000005
-888869,4154953,2017.0,2020.0,1959.0,PRIVATE,12,Toronto-St. Paul's,1516 BATHURST ST,6,42,2020-12-22,69,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,3.0,4.0,3.0,4.0,5.0,3.0,2.0,3.0,4.0,3.0,4.0,,S1229,43.684761291899996,-79.4193183625,311289.144,4838092.746
-888870,4288751,,2020.0,1918.0,PRIVATE,12,Toronto-St. Paul's,1383 BATHURST ST,3,30,2020-12-22,71,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,3.0,3.0,3.0,,4.0,,,4.0,3.0,5.0,3.0,4.0,3.0,,3.0,,,S1236,43.6807035895,-79.4169896238,311477.346,4837642.107
-888871,4155010,2017.0,2020.0,1958.0,PRIVATE,12,Toronto-St. Paul's,460 WINONA DR,5,55,2020-12-22,72,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,2.0,3.0,3.0,,4.0,4.0,3.0,3.0,3.0,5.0,4.0,3.0,3.0,4.0,4.0,4.0,,S1222,43.6890952984,-79.4358713128,309954.256,4838573.079
-888872,4155058,2017.0,2020.0,1960.0,PRIVATE,8,Eglinton-Lawrence,1090 ROSELAWN AVE,5,62,2020-12-22,74,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,,3.0,3.0,5.0,4.0,3.0,4.0,5.0,4.0,3.0,,N0831,43.7009028087,-79.449149194,308883.057,4839884.115
-888873,4155607,2017.0,2020.0,1960.0,TCHC,14,Toronto-Danforth,1615 DUNDAS ST E,4,81,2020-12-22,66,Evaluation needs to be conducted in 2 years,16,4.0,3.0,3.0,3.0,,3.0,3.0,5.0,,,3.0,3.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,,S1438,43.6665389642,-79.32806340350001,318650.451,4836079.491
-888874,4246916,2017.0,2020.0,1967.0,PRIVATE,15,Don Valley West,300 EGLINTON AVE E,15,96,2020-12-22,91,Evaluation needs to be conducted in 3 years,19,5.0,3.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,3.0,4.0,5.0,5.0,3.0,,N1537,43.708925086899995,-79.3890965678,313722.169,4840780.1389999995
-888875,4153659,2017.0,2020.0,1974.0,TCHC,14,Toronto-Danforth,145 STRATHMORE BLVD,14,350,2020-12-22,82,Evaluation needs to be conducted in 2 years,19,3.0,3.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,,3.0,3.0,5.0,3.0,5.0,3.0,5.0,3.0,3.0,4.0,S1427,43.6815994878,-79.3340244095,318166.408,4837751.63
-888876,4153919,,2020.0,1928.0,PRIVATE,12,Toronto-St. Paul's,7 WALMSLEY BLVD,4,15,2020-12-22,73,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,4.0,3.0,,4.0,,4.0,4.0,4.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1232,43.692663927,-79.3973259391,313061.182,4838972.671
-888877,4830483,2020.0,2020.0,2019.0,PRIVATE,10,Spadina-Fort York,39 NIAGARA ST,18,501,2020-12-22,97,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,,5.0,4.0,5.0,5.0,,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,S1032,43.641956672,-79.400830248,312766.443,4833331.455
-888878,4250602,2017.0,2020.0,1938.0,PRIVATE,12,Toronto-St. Paul's,26 TICHESTER RD,4,32,2020-12-22,74,Evaluation needs to be conducted in 2 years,14,4.0,4.0,5.0,4.0,2.0,3.0,,4.0,,,2.0,5.0,5.0,3.0,4.0,3.0,,4.0,,,S1230,43.685882131999996,-79.418348616,311366.946,4838218.303
-888879,4273905,2017.0,2020.0,1930.0,PRIVATE,14,Toronto-Danforth,575 PAPE AVE,3,17,2020-12-21,80,Evaluation needs to be conducted in 2 years,14,5.0,3.0,5.0,5.0,4.0,5.0,,5.0,,,3.0,3.0,5.0,3.0,4.0,3.0,,3.0,,,S1430,43.6750307641,-79.3429590796,317447.438,4837020.51
-888880,4155126,2017.0,2020.0,1957.0,PRIVATE,5,York South-Weston,1306 WESTON RD,3,11,2020-12-21,60,Evaluation needs to be conducted in 1 year,14,3.0,3.0,4.0,3.0,,4.0,,3.0,,,2.0,2.0,5.0,3.0,2.0,3.0,,2.0,3.0,,W0531,43.6894309704,-79.49695331470001,305030.032,4838608.475
-888881,4269424,2017.0,2020.0,1950.0,SOCIAL HOUSING,14,Toronto-Danforth,793 GERRARD ST E,5,28,2020-12-21,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,5.0,3.0,3.0,5.0,,2.0,,,3.0,4.0,2.0,3.0,2.0,3.0,,3.0,2.0,,S1434,43.666764817200004,-79.3456335069,317233.48,4836101.799
-888882,4288768,2017.0,2020.0,1967.0,SOCIAL HOUSING,14,Toronto-Danforth,444 LOGAN AVE,22,159,2020-12-21,78,Evaluation needs to be conducted in 2 years,20,5.0,3.0,3.0,3.0,3.0,5.0,4.0,3.0,4.0,5.0,3.0,4.0,3.0,4.0,4.0,3.0,5.0,5.0,4.0,5.0,S1434,43.665362780500004,-79.3448533882,317296.687,4835946.155
-888883,4250590,2017.0,2020.0,2002.0,SOCIAL HOUSING,14,Toronto-Danforth,1117 DANFORTH AVE,3,26,2020-12-21,67,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,3.0,3.0,4.0,,4.0,,,3.0,3.0,2.0,3.0,4.0,4.0,,3.0,,5.0,S1431,43.6807944237,-79.33409174260001,318161.157,4837662.183
-888884,4153569,2017.0,2020.0,1988.0,SOCIAL HOUSING,13,Toronto Centre,223 SHERBOURNE ST,6,60,2020-12-21,72,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,5.0,,3.0,3.0,5.0,4.0,3.0,4.0,,4.0,,4.0,S1329,43.6582200015,-79.3706451728,315217.87,4835149.078
-888885,4153448,2017.0,2020.0,1990.0,SOCIAL HOUSING,13,Toronto Centre,70 PEMBROKE ST,3,15,2020-12-21,67,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,3.0,3.0,4.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,,,S1328,43.6585068285,-79.3728346452,315041.226,4835180.666999999
-888886,4155122,2017.0,2020.0,1983.0,TCHC,5,York South-Weston,30 DENARDA ST,15,255,2020-12-21,74,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,W0531,43.68924906,-79.4925042867,305388.692,4838588.272
-888887,4233261,2017.0,2020.0,2017.0,PRIVATE,13,Toronto Centre,252 VICTORIA ST,37,337,2020-12-20,99,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,,S1332,43.6555316158,-79.3796504361,314491.984,4834849.351
-888888,4153436,2017.0,2020.0,1885.0,PRIVATE,13,Toronto Centre,95 PEMBROKE ST,3,19,2020-12-20,80,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,,,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,4.0,,S1328,43.6595601379,-79.37264249340001,315056.547,4835297.718
-888889,4153952,2017.0,2020.0,1968.0,PRIVATE,8,Eglinton-Lawrence,600 EGLINTON AVE W,6,60,2020-12-20,72,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,3.0,3.0,,3.0,3.0,3.0,4.0,4.0,5.0,3.0,3.0,4.0,3.0,4.0,,,N0833,43.702827623199994,-79.4182269632,311375.23699999996,4840099.988
-888890,4152607,2018.0,2020.0,1955.0,PRIVATE,20,Scarborough Southwest,1075 VICTORIA PARK AVE,3,18,2020-12-19,72,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,3.0,4.0,3.0,,4.0,,,3.0,2.0,5.0,3.0,4.0,4.0,,4.0,4.0,,E2028,43.7075785212,-79.2951531755,321293.32300000003,4840644.802
-888891,4154510,,2020.0,1957.0,PRIVATE,8,Eglinton-Lawrence,32 WASDALE CRES,3,10,2020-12-19,67,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,,3.0,3.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,,N0823,43.730826184099996,-79.4370615952,309854.86,4843209.136
-888892,4152562,2018.0,2020.0,1932.0,PRIVATE,20,Scarborough Southwest,3010 QUEEN ST E,4,16,2020-12-19,92,Evaluation needs to be conducted in 3 years,15,5.0,5.0,4.0,5.0,3.0,5.0,,4.0,,,5.0,5.0,5.0,4.0,5.0,5.0,,5.0,4.0,,E2033,43.6754799628,-79.2772204699,322748.047,4837082.469
-888893,4156580,2017.0,2020.0,1967.0,PRIVATE,16,Don Valley East,1200 YORK MILLS RD,16,222,2020-12-19,83,Evaluation needs to be conducted in 2 years,19,4.0,5.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,,N1622,43.759658618,-79.3350153122,318069.30199999997,4846423.49
-888894,4156579,2017.0,2020.0,1967.0,PRIVATE,16,Don Valley East,1202 YORK MILLS RD,22,219,2020-12-19,83,Evaluation needs to be conducted in 2 years,19,4.0,5.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,,N1622,43.7606174266,-79.3350540559,318065.974,4846530.005
-888895,4155357,2018.0,2020.0,1963.0,PRIVATE,2,Etobicoke Centre,38 DIXINGTON CRES,10,111,2020-12-18,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,3.0,4.0,4.0,3.0,4.0,3.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,,W0223,43.69652256,-79.54070430600001,301503.157,4839398.193
-888896,4152735,2017.0,2020.0,1976.0,PRIVATE,21,Scarborough Centre,1181 ELLESMERE RD,4,32,2020-12-18,75,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,3.0,4.0,3.0,4.0,5.0,4.0,4.0,3.0,5.0,3.0,4.0,4.0,2.0,4.0,3.0,,E2129,43.767770540600004,-79.2692020399,323366.141,4847337.315
-888897,4457114,2019.0,2020.0,1953.0,PRIVATE,19,Beaches-East York,1161 O'CONNOR DR,3,11,2020-12-18,75,Evaluation needs to be conducted in 2 years,15,2.0,3.0,2.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S1924,43.7119832675,-79.30746431600001,320300.026,4841131.821
-888898,4594874,2019.0,2020.0,2019.0,PRIVATE,24,Scarborough-Guildwood,40 MEADOWGLEN PL,17,146,2020-12-18,92,Evaluation needs to be conducted in 3 years,20,5.0,5.0,4.0,4.0,3.0,5.0,3.0,5.0,5.0,4.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,E2426,,,326505.793,4848140.502
-888899,4152724,2017.0,2020.0,1974.0,PRIVATE,21,Scarborough Centre,5 GLAMORGAN AVE,10,140,2020-12-18,69,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,2.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,5.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,E2123,43.7684659782,-79.28364485520001,322203.161,4847411.454
-888900,4154521,2018.0,2020.0,1958.0,PRIVATE,8,Eglinton-Lawrence,3638 BATHURST ST,7,48,2020-12-18,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,,5.0,5.0,5.0,2.0,4.0,3.0,3.0,3.0,3.0,,N0823,43.73338951,-79.4335900368,310168.085,4843485.155
-888901,4154664,2017.0,2020.0,1960.0,PRIVATE,8,Eglinton-Lawrence,3635 BATHURST ST,4,19,2020-12-18,74,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,2.0,3.0,4.0,,4.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,,N0824,43.733389944399995,-79.43271479319999,310204.804,4843494.231000001
-888902,4152723,2017.0,2020.0,1984.0,PRIVATE,21,Scarborough Centre,3 GLAMORGAN AVE,10,139,2020-12-18,73,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,4.0,2.0,4.0,2.0,3.0,5.0,3.0,3.0,5.0,5.0,4.0,4.0,4.0,3.0,3.0,4.0,,E2123,43.768435059,-79.28262322399999,322289.892,4847418.925
-888903,4152736,2017.0,2020.0,1976.0,PRIVATE,21,Scarborough Centre,1191 ELLESMERE RD,4,27,2020-12-18,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,5.0,,4.0,3.0,5.0,3.0,4.0,4.0,4.0,4.0,3.0,,E2129,43.7678832058,-79.2689051432,323390.00899999996,4847349.898
-888904,4250600,2017.0,2020.0,1938.0,PRIVATE,12,Toronto-St. Paul's,22 TICHESTER RD,4,32,2020-12-18,79,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,4.0,3.0,4.0,,4.0,,4.0,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,S1230,43.68592338,-79.418139695,311383.785,4838222.902
-888905,4154134,2017.0,2020.0,1965.0,PRIVATE,14,Toronto-Danforth,100 GAMBLE AVE,12,152,2020-12-18,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,2.0,3.0,4.0,3.0,3.0,3.0,,1.0,3.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,,S1421,43.6904194773,-79.350649972,316824.231,4838729.001
-888906,4154505,2017.0,2020.0,1957.0,PRIVATE,8,Eglinton-Lawrence,8 WASDALE CRES,3,10,2020-12-18,80,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,4.0,4.0,3.0,,5.0,,,4.0,5.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,,N0823,43.731246847399994,-79.4350947761,310013.27,4843255.994
-888907,4273164,2017.0,2020.0,1960.0,PRIVATE,14,Toronto-Danforth,133 GAMBLE AVE,4,27,2020-12-18,78,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1422,43.690334748000005,-79.34796076800001,317040.769,4838720.926
-888908,4154513,2018.0,2020.0,1956.0,PRIVATE,8,Eglinton-Lawrence,66 WASDALE CRES,3,13,2020-12-18,53,Evaluation needs to be conducted in 1 year,17,2.0,2.0,1.0,3.0,3.0,3.0,,5.0,,3.0,2.0,2.0,5.0,2.0,2.0,2.0,3.0,2.0,3.0,,N0823,43.7306506832,-79.43803806380001,309776.21,4843189.578
-888909,4152715,2017.0,2020.0,1960.0,PRIVATE,21,Scarborough Centre,2260 LAWRENCE AVE E,5,26,2020-12-17,83,Evaluation needs to be conducted in 2 years,18,4.0,5.0,4.0,5.0,3.0,5.0,,5.0,3.0,4.0,5.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,E2128,43.749400376000004,-79.2779437479,322667.789,4845294.552
-888910,4154185,2017.0,2020.0,1950.0,PRIVATE,15,Don Valley West,715 MILLWOOD RD,3,14,2020-12-17,80,Evaluation needs to be conducted in 2 years,16,5.0,3.0,5.0,5.0,3.0,5.0,,4.0,,5.0,5.0,3.0,3.0,3.0,4.0,4.0,,3.0,4.0,,N1535,43.7042226354,-79.3738454238,314952.036,4840259.427
-888911,4152652,2017.0,2020.0,1964.0,PRIVATE,21,Scarborough Centre,1765 LAWRENCE AVE E,7,103,2020-12-17,75,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,,3.0,4.0,5.0,4.0,3.0,4.0,2.0,4.0,3.0,,E2131,43.742331818100006,-79.3064455289,320374.272,4844503.53
-888912,4152650,2017.0,2020.0,1961.0,PRIVATE,21,Scarborough Centre,1765 VICTORIA PARK AVE,7,67,2020-12-17,75,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,3.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,5.0,4.0,3.0,3.0,2.0,4.0,4.0,,E2131,43.7402910045,-79.3084921125,320209.95,4844276.428
-888913,4152655,2017.0,2020.0,1959.0,PRIVATE,21,Scarborough Centre,1817 VICTORIA PARK AVE,4,36,2020-12-17,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,3.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2126,43.74333248560001,-79.3097740889,320105.92,4844614.079
-888914,4152660,2017.0,2020.0,1960.0,PRIVATE,21,Scarborough Centre,1911 VICTORIA PARK AVE,7,91,2020-12-17,67,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,2.0,3.0,4.0,3.0,3.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,,E2126,43.7475988109,-79.3111844084,319991.247,4845087.78
-888915,4152717,2017.0,2020.0,1962.0,PRIVATE,21,Scarborough Centre,2230 LAWRENCE AVE E,7,64,2020-12-17,72,Evaluation needs to be conducted in 2 years,18,4.0,5.0,4.0,3.0,4.0,5.0,3.0,4.0,4.0,,3.0,3.0,3.0,3.0,4.0,4.0,3.0,4.0,2.0,,E2128,43.7491756085,-79.2789651646,322585.594,4845269.362
-888916,4152661,2017.0,2020.0,1965.0,PRIVATE,21,Scarborough Centre,5 LYNVALLEY CRES,7,92,2020-12-17,77,Evaluation needs to be conducted in 2 years,19,3.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,5.0,,E2126,43.747732393,-79.310648196,320034.137,4845103.674
-888917,4155049,2017.0,2020.0,1960.0,PRIVATE,8,Eglinton-Lawrence,822 ROSELAWN AVE,9,56,2020-12-17,81,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,5.0,,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,3.0,,N0831,43.702841898100004,-79.43937545909999,309670.69800000003,4840100.068
-888918,4155047,2017.0,2020.0,1959.0,PRIVATE,8,Eglinton-Lawrence,837 ROSELAWN AVE,7,39,2020-12-17,88,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,4.0,4.0,,4.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,,N0831,43.7022933387,-79.4396596089,309647.839,4840039.109
-888919,4155050,2017.0,2020.0,1965.0,PRIVATE,8,Eglinton-Lawrence,836 ROSELAWN AVE,3,26,2020-12-17,73,Evaluation needs to be conducted in 2 years,16,3.0,4.0,3.0,3.0,4.0,3.0,,4.0,,,3.0,4.0,5.0,2.0,4.0,4.0,4.0,4.0,4.0,,N0831,43.702756083000004,-79.4397938426,309636.983,4840090.505
-888920,4155048,2017.0,2020.0,1960.0,PRIVATE,8,Eglinton-Lawrence,835 ROSELAWN AVE,7,39,2020-12-17,80,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,5.0,4.0,,4.0,3.0,,4.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,N0831,43.7023772418,-79.439257763,309680.221,4840048.4569999995
-888921,4152708,2017.0,2020.0,1954.0,PRIVATE,21,Scarborough Centre,831 KENNEDY RD,6,50,2020-12-17,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2133,43.7359936436,-79.2687949142,323408.724,4843807.13
-888922,4154188,2018.0,2020.0,1956.0,PRIVATE,15,Don Valley West,18 KENRAE RD,3,13,2020-12-17,86,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,5.0,4.0,5.0,,5.0,,3.0,3.0,3.0,5.0,5.0,3.0,4.0,5.0,5.0,3.0,,N1531,43.704897465,-79.361903925,315914.058,4840336.839
-888923,4250538,2017.0,2020.0,1960.0,PRIVATE,13,Toronto Centre,414 JARVIS ST,4,35,2020-12-17,72,Evaluation needs to be conducted in 2 years,15,4.0,3.0,5.0,4.0,3.0,3.0,,3.0,,,4.0,5.0,5.0,3.0,3.0,3.0,3.0,3.0,,,S1326,43.664772523,-79.3781317195,314612.964,4835876.1280000005
-888924,4152731,2017.0,2020.0,1961.0,PRIVATE,21,Scarborough Centre,4 TREEWOOD ST,7,82,2020-12-17,79,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,4.0,3.0,4.0,,3.0,4.0,,4.0,5.0,5.0,4.0,4.0,4.0,,4.0,4.0,,E2129,43.754281749499995,-79.26405657069999,323784.661,4845839.897
-888925,4154104,2017.0,2020.0,1950.0,PRIVATE,14,Toronto-Danforth,257 TORRENS AVE,3,17,2020-12-17,84,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,5.0,3.0,5.0,5.0,4.0,4.0,4.0,,5.0,4.0,,S1422,43.6923348201,-79.3435916097,317392.816,4838942.808999999
-888926,4152602,2019.0,2020.0,1960.0,PRIVATE,20,Scarborough Southwest,1043 VICTORIA PARK AVE,3,11,2020-12-17,70,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,4.0,3.0,4.0,,4.0,,4.0,4.0,3.0,5.0,3.0,3.0,2.0,,4.0,2.0,,E2028,43.70565801,-79.29427437060001,321364.674,4840431.61
-888927,4154197,2017.0,2020.0,1958.0,PRIVATE,15,Don Valley West,31 BRENTCLIFFE RD,4,16,2020-12-17,69,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,4.0,3.0,5.0,,3.0,,,3.0,3.0,3.0,3.0,4.0,4.0,,3.0,3.0,,N1529,43.7152123355,-79.35969038260001,316090.745,4841482.152
-888928,4155773,2017.0,2020.0,1966.0,PRIVATE,16,Don Valley East,100 ROWENA DR,12,248,2020-12-17,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,5.0,3.0,3.0,4.0,4.0,,4.0,5.0,5.0,3.0,4.0,4.0,4.0,4.0,5.0,,N1625,43.7517238195,-79.3143707442,319733.599,4845545.465
-888929,4154182,2018.0,2020.0,1953.0,PRIVATE,15,Don Valley West,1299 BAYVIEW AVE,4,19,2020-12-17,80,Evaluation needs to be conducted in 2 years,16,5.0,3.0,5.0,5.0,4.0,5.0,,3.0,,3.0,5.0,3.0,4.0,3.0,3.0,5.0,,3.0,5.0,,N1535,43.6980343959,-79.3718344399,315115.179,4839572.2360000005
-888930,4154181,2018.0,2020.0,1953.0,PRIVATE,15,Don Valley West,1295 BAYVIEW AVE,4,19,2020-12-17,88,Evaluation needs to be conducted in 3 years,16,5.0,3.0,5.0,5.0,4.0,5.0,,4.0,,5.0,5.0,4.0,5.0,3.0,4.0,5.0,,3.0,5.0,,N1535,43.697841160299994,-79.3717629159,315120.979,4839550.775
-888931,4152720,2017.0,2020.0,1950.0,PRIVATE,21,Scarborough Centre,1555 BIRCHMOUNT RD,6,46,2020-12-17,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,3.0,,5.0,5.0,,4.0,4.0,5.0,4.0,3.0,3.0,4.0,3.0,3.0,,E2128,43.760627747200004,-79.289722515,321716.055,4846539.39
-888932,4153078,,2020.0,1932.0,PRIVATE,9,Davenport,301 LANSDOWNE AVE,5,35,2020-12-17,83,Evaluation needs to be conducted in 2 years,15,5.0,5.0,5.0,4.0,3.0,4.0,,4.0,,,4.0,5.0,4.0,4.0,4.0,4.0,,4.0,3.0,,S0933,43.650730305399996,-79.4393963324,309673.184,4834310.706
-888933,4155568,2017.0,2020.0,1971.0,TCHC,21,Scarborough Centre,7 GLAMORGAN AVE,12,196,2020-12-17,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,3.0,3.0,4.0,4.0,4.0,,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,E2123,43.7677640295,-79.2844534267,322138.266,4847333.299
-888934,4484430,2019.0,2020.0,1954.0,PRIVATE,14,Toronto-Danforth,39 TORRENS AVE,3,28,2020-12-17,73,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,3.0,3.0,4.0,,3.0,,,3.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1421,43.690380807299995,-79.35296741970001,316637.436,4838724.393999999
-888935,4152596,2017.0,2020.0,1964.0,TCHC,20,Scarborough Southwest,682 WARDEN AVE,15,223,2020-12-16,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2028,43.705953312,-79.279044598,322591.70399999997,4840468.483
-888936,4155561,2017.0,2020.0,1962.0,TCHC,20,Scarborough Southwest,1 FIRVALLEY CRT,12,115,2020-12-16,83,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,,E2028,43.7029523574,-79.28102862850001,322432.94800000003,4840133.711
-888937,4152595,2017.0,2020.0,1964.0,TCHC,20,Scarborough Southwest,40 FIRVALLEY CRT,15,168,2020-12-16,83,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,E2028,43.703580346,-79.279521109,322554.003,4840204.75
-888938,4155078,2017.0,2020.0,1950.0,PRIVATE,8,Eglinton-Lawrence,2040 EGLINTON AVE W,4,37,2020-12-16,87,Evaluation needs to be conducted in 3 years,15,5.0,5.0,5.0,3.0,5.0,4.0,,3.0,,,5.0,5.0,5.0,4.0,4.0,4.0,,4.0,4.0,,N0830,43.6945163928,-79.4569284637,308256.403,4839174.261
-888939,4154835,2017.0,2020.0,1965.0,PRIVATE,17,Don Valley North,8 GODSTONE RD,16,164,2020-12-16,81,Evaluation needs to be conducted in 2 years,20,5.0,5.0,5.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,3.0,5.0,5.0,4.0,3.0,4.0,5.0,4.0,3.0,4.0,N1727,43.7801532474,-79.3463837726,317149.74199999997,4848698.62
-888940,4155040,2017.0,2020.0,1958.0,PRIVATE,8,Eglinton-Lawrence,1480 EGLINTON AVE W,4,11,2020-12-16,75,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,3.0,3.0,4.0,,3.0,,,3.0,3.0,5.0,3.0,4.0,5.0,3.0,5.0,5.0,,N0831,43.6981187343,-79.4400469676,309616.941,4839575.316000001
-888941,4155041,2017.0,2020.0,1955.0,PRIVATE,8,Eglinton-Lawrence,1490 EGLINTON AVE W,4,34,2020-12-16,88,Evaluation needs to be conducted in 3 years,16,5.0,5.0,4.0,4.0,5.0,4.0,,4.0,,,5.0,5.0,5.0,3.0,4.0,4.0,4.0,4.0,5.0,,N0831,43.6981168907,-79.4403546526,309592.14,4839575.093
-888942,4155636,2017.0,2020.0,1957.0,TCHC,8,Eglinton-Lawrence,5 FLEMINGTON RD,3,31,2020-12-16,75,Evaluation needs to be conducted in 2 years,15,4.0,4.0,3.0,3.0,4.0,4.0,,4.0,,,3.0,4.0,3.0,4.0,4.0,4.0,,4.0,4.0,,N0823,43.718613593,-79.442694709,309401.70399999997,4841852.977
-888943,4415833,2019.0,2020.0,1928.0,PRIVATE,13,Toronto Centre,120 MAITLAND ST,3,24,2020-12-16,72,Evaluation needs to be conducted in 2 years,13,3.0,3.0,5.0,3.0,,3.0,,4.0,,,3.0,5.0,5.0,3.0,3.0,4.0,,3.0,,,S1326,43.665296276499994,-79.378621689,314573.36600000004,4835934.254
-888944,4154660,2017.0,2020.0,1955.0,PRIVATE,8,Eglinton-Lawrence,3257 BATHURST ST,4,20,2020-12-16,81,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0824,43.7241610224,-79.430453768,310387.818,4842469.102
-888945,4285160,2018.0,2020.0,1950.0,PRIVATE,16,Don Valley East,3 WINGREEN CRT,3,11,2020-12-16,76,Evaluation needs to be conducted in 2 years,17,4.0,5.0,3.0,4.0,3.0,4.0,,5.0,,3.0,4.0,4.0,5.0,4.0,4.0,2.0,3.0,4.0,4.0,,N1624,43.7389485514,-79.3418652477,,
-888946,4155670,2017.0,2020.0,1964.0,PRIVATE,15,Don Valley West,32 CARLUKE CRES,7,103,2020-12-16,80,Evaluation needs to be conducted in 2 years,18,5.0,5.0,5.0,5.0,4.0,3.0,4.0,4.0,5.0,,3.0,4.0,5.0,3.0,3.0,3.0,5.0,3.0,3.0,,N1521,43.761178869700004,-79.3897561854,313693.98699999996,4846559.64
-888947,4155669,2017.0,2020.0,1964.0,PRIVATE,15,Don Valley West,38 CARLUKE CRES,7,104,2020-12-16,78,Evaluation needs to be conducted in 2 years,18,5.0,5.0,5.0,5.0,4.0,3.0,4.0,3.0,5.0,,3.0,3.0,5.0,3.0,4.0,2.0,5.0,3.0,3.0,,N1521,43.76099861,-79.38848465699999,313757.7,4846553.563
-888948,4153751,,2020.0,1955.0,PRIVATE,11,University-Rosedale,171 ST CLAIR AVE E,4,36,2020-12-16,65,Evaluation needs to be conducted in 1 year,19,3.0,3.0,5.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,4.0,,S1121,43.689555816,-79.38601833050001,313973.18100000004,4838628.565
-888949,4152782,2017.0,2020.0,1965.0,PRIVATE,20,Scarborough Southwest,3750 ST CLAIR AVE E,7,55,2020-12-16,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,,E2032,43.721220413800005,-79.242301179,325547.906,4842172.186000001
-888950,4153995,2017.0,2020.0,1948.0,PRIVATE,12,Toronto-St. Paul's,869 AVENUE RD,3,10,2020-12-16,75,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,4.0,4.0,4.0,,3.0,,,3.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,,S1227,43.6989299659,-79.4057564646,312380.792,4839668.024
-888951,4154708,2020.0,2020.0,,PRIVATE,18,Willowdale,2 ANCONA ST,4,32,2020-12-16,62,Evaluation needs to be conducted in 1 year,18,4.0,4.0,4.0,3.0,3.0,3.0,,3.0,3.0,2.0,3.0,5.0,4.0,2.0,3.0,3.0,2.0,3.0,2.0,,N1822,43.774991309700006,-79.43941526399999,309661.717,4848115.5139999995
-888952,4152771,2017.0,2020.0,1971.0,PRIVATE,21,Scarborough Centre,126 BELLAMY RD N,16,253,2020-12-16,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,2.0,4.0,4.0,4.0,5.0,4.0,3.0,,E2136,43.742426479799995,-79.2319698725,326372.76300000004,4844530.666999999
-888953,4154841,2017.0,2020.0,1967.0,PRIVATE,17,Don Valley North,10 RUDDINGTON DR,13,155,2020-12-16,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N1721,43.788810185200006,-79.3913448594,313529.412,4849654.673
-888954,4228923,2017.0,2020.0,1957.0,PRIVATE,8,Eglinton-Lawrence,200 RIDLEY BLVD,4,90,2020-12-16,86,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,3.0,4.0,,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,N0824,43.7382356013,-79.41970552779999,311252.265,4844033.447
-888955,4154674,2017.0,2020.0,1992.0,SOCIAL HOUSING,8,Eglinton-Lawrence,262 RIDLEY BLVD,8,111,2020-12-16,81,Evaluation needs to be conducted in 2 years,19,4.0,5.0,3.0,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,N0821,43.7399850336,-79.423996848,310906.417,4844227.477
-888956,4153853,2017.0,2020.0,1930.0,PRIVATE,15,Don Valley West,25 SHERWOOD AVE,3,27,2020-12-16,85,Evaluation needs to be conducted in 2 years,15,5.0,3.0,5.0,5.0,5.0,5.0,,3.0,,5.0,4.0,5.0,5.0,3.0,3.0,5.0,,3.0,,,N1526,43.713530331,-79.398012046,313002.767,4841291.799
-888957,4155816,2017.0,2020.0,2005.0,SOCIAL HOUSING,25,Scarborough-Rouge Park,20 SEWELLS RD,4,92,2020-12-16,88,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,,4.0,5.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,E2524,43.807586521000005,-79.21678105,327571.272,4851774.676
-888958,4155631,,2020.0,2019.0,SOCIAL HOUSING,8,Eglinton-Lawrence,2 REPLIN RD,4,30,2020-12-16,66,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,3.0,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,4.0,,N0823,43.7185874066,-79.4436438925,309325.485,4841849.061000001
-888959,4155633,2017.0,2020.0,1957.0,TCHC,8,Eglinton-Lawrence,6 REPLIN RD,4,30,2020-12-16,71,Evaluation needs to be conducted in 2 years,14,3.0,4.0,3.0,3.0,,4.0,,3.0,,,4.0,4.0,5.0,4.0,3.0,3.0,,4.0,3.0,,N0823,43.717214245200005,-79.4429757151,309379.42699999997,4841696.5430000005
-888960,4221312,2017.0,2020.0,1970.0,PRIVATE,11,University-Rosedale,360 BLOOR ST W,16,170,2020-12-16,85,Evaluation needs to be conducted in 2 years,19,5.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,4.0,5.0,5.0,4.0,3.0,4.0,4.0,4.0,5.0,5.0,S1126,43.6667874217,-79.4051232115,312435.811,4836097.103999999
-888961,4153144,2017.0,2020.0,1994.0,SOCIAL HOUSING,10,Spadina-Fort York,138 CLAREMONT ST,3,18,2020-12-16,72,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,,,3.0,4.0,5.0,4.0,4.0,4.0,3.0,3.0,,,S1022,43.6499453573,-79.411506674,311923.107,4834225.424
-888962,4154044,2018.0,2020.0,1966.0,PRIVATE,19,Beaches-East York,500 DAWES RD,14,305,2020-12-16,47,Building Audit,18,2.0,3.0,3.0,2.0,2.0,3.0,1.0,1.0,3.0,,1.0,2.0,3.0,2.0,3.0,3.0,2.0,3.0,3.0,,S1927,43.703305875,-79.29817492800001,321050.685,4840170.484
-888963,4153196,,2020.0,1910.0,PRIVATE,11,University-Rosedale,2 VERMONT AVE,3,16,2020-12-16,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,5.0,2.0,3.0,3.0,,3.0,,,2.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,S1125,43.672241558,-79.414621827,311668.929,4836703.171
-888964,4153497,2018.0,2020.0,1965.0,PRIVATE,13,Toronto Centre,85 WELLESLEY ST E,8,88,2020-12-16,75,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,4.0,4.0,4.0,,4.0,4.0,,4.0,4.0,4.0,4.0,3.0,3.0,,4.0,3.0,,S1326,43.6656716445,-79.3798985663,314470.327,4835975.808999999
-888965,4153214,2017.0,2020.0,1965.0,PRIVATE,11,University-Rosedale,485 HURON ST,13,70,2020-12-16,95,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,5.0,,S1127,43.669000001,-79.401866897,312697.875,4836344.163
-888966,4153380,2020.0,2020.0,1991.0,SOCIAL HOUSING,10,Spadina-Fort York,163 PORTLAND ST,4,46,2020-12-16,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,3.0,3.0,3.0,4.0,4.0,4.0,,4.0,,5.0,S1029,43.647261855,-79.400907613,312778.179,4833929.199
-888967,4152823,2017.0,2020.0,1972.0,PRIVATE,24,Scarborough-Guildwood,3700 LAWRENCE AVE E,11,105,2020-12-16,88,Evaluation needs to be conducted in 3 years,19,4.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,,E2426,43.7620164362,-79.2173016754,327546.795,4846710.909
-888968,4153463,2019.0,2020.0,1900.0,PRIVATE,11,University-Rosedale,378 MARKHAM ST,4,17,2020-12-16,51,Evaluation needs to be conducted in 1 year,15,3.0,2.0,4.0,2.0,1.0,3.0,,3.0,,,2.0,3.0,5.0,2.0,2.0,1.0,4.0,1.0,,,S1133,43.6584478213,-79.4103098841,312018.591,4835170.181
-888969,4154801,2018.0,2020.0,1954.0,PRIVATE,16,Don Valley East,868 LAWRENCE AVE E,4,31,2020-12-16,71,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,3.0,3.0,3.0,,4.0,,,3.0,4.0,5.0,3.0,3.0,4.0,4.0,4.0,3.0,,N1623,43.7359170321,-79.3507079954,316810.44899999996,4843783.545
-888970,4253819,2017.0,2020.0,1960.0,PRIVATE,15,Don Valley West,841 MILLWOOD RD,3,18,2020-12-16,75,Evaluation needs to be conducted in 2 years,16,5.0,3.0,5.0,4.0,3.0,5.0,,5.0,,4.0,2.0,3.0,5.0,3.0,3.0,3.0,,3.0,4.0,,N1535,43.704354753000004,-79.3670652416,315498.457,4840274.938999999
-888971,4153168,2017.0,2020.0,1930.0,PRIVATE,11,University-Rosedale,496 MONTROSE AVE,3,24,2020-12-16,79,Evaluation needs to be conducted in 2 years,14,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,3.0,4.0,4.0,,3.0,,,S1132,43.662851529799994,-79.4210660752,311150.555,4835658.55
-888972,4156620,2017.0,2020.0,1950.0,PRIVATE,16,Don Valley East,1 WINGREEN CRT,3,11,2020-12-15,75,Evaluation needs to be conducted in 2 years,17,4.0,4.0,3.0,4.0,3.0,4.0,,4.0,,4.0,4.0,3.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,N1624,43.7388622795,-79.3416192822,,
-888973,4153740,2018.0,2020.0,1980.0,PRIVATE,11,University-Rosedale,1233 YONGE ST,4,42,2020-12-15,75,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,3.0,,3.0,,,4.0,4.0,5.0,3.0,3.0,4.0,,4.0,3.0,,S1121,43.6837736438,-79.3918217726,313506.154,4837985.526000001
-888974,4169264,2017.0,2020.0,1926.0,PRIVATE,12,Toronto-St. Paul's,80 ST CLAIR AVE W,4,25,2020-12-15,75,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,3.0,,4.0,4.0,5.0,3.0,4.0,3.0,3.0,4.0,3.0,,S1232,43.6874952579,-79.3985597973,312962.429,4838398.308999999
-888975,4155336,2017.0,2020.0,1954.0,PRIVATE,2,Etobicoke Centre,3 ANGLESEY BLVD,4,22,2020-12-15,86,Evaluation needs to be conducted in 3 years,16,4.0,5.0,5.0,5.0,4.0,3.0,,3.0,,4.0,4.0,5.0,5.0,5.0,4.0,5.0,,5.0,3.0,,W0229,43.66525873609999,-79.5202448321,303151.607,4835923.333000001
-888976,4155335,2017.0,2020.0,1954.0,PRIVATE,2,Etobicoke Centre,7 ANGLESEY BLVD,4,19,2020-12-15,88,Evaluation needs to be conducted in 3 years,16,4.0,5.0,5.0,5.0,5.0,3.0,,3.0,,4.0,4.0,5.0,5.0,5.0,4.0,5.0,,5.0,3.0,,W0229,43.6651374005,-79.5205512959,303126.88800000004,4835909.86
-888977,4152768,2017.0,2020.0,1964.0,PRIVATE,21,Scarborough Centre,123 BELLAMY RD N,12,250,2020-12-15,82,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,3.0,3.0,5.0,4.0,4.0,4.0,5.0,4.0,3.0,,E2136,43.741439900100005,-79.23165380399999,326398.571,4844421.149
-888978,4154677,2017.0,2020.0,1955.0,PRIVATE,8,Eglinton-Lawrence,2125 AVENUE RD,4,33,2020-12-15,83,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,5.0,,,5.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,,N0824,43.738421162899996,-79.4206636772,311175.063,4844053.984
-888979,4153184,2017.0,2020.0,1929.0,PRIVATE,11,University-Rosedale,42 BARTON AVE,4,24,2020-12-15,91,Evaluation needs to be conducted in 3 years,15,5.0,5.0,5.0,4.0,5.0,4.0,,4.0,,,4.0,5.0,5.0,5.0,4.0,5.0,,4.0,4.0,,S1125,43.667957114,-79.414124093,311709.549,4836227.241
-888980,4154685,2017.0,2020.0,1950.0,PRIVATE,8,Eglinton-Lawrence,2181 AVENUE RD,4,64,2020-12-15,87,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,3.0,5.0,4.0,,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,,N0821,43.7418257579,-79.4213046312,311123.075,4844432.162
-888981,4408652,2018.0,2020.0,1927.0,PRIVATE,11,University-Rosedale,69 BALDWIN ST,3,17,2020-12-15,69,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,3.0,3.0,4.0,,4.0,,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1144,43.6554189056,-79.39535829,313224.942,4834835.0819999995
-888982,4154672,2017.0,2020.0,1956.0,PRIVATE,8,Eglinton-Lawrence,15 BIDEFORD AVE,6,44,2020-12-15,88,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,5.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,,N0821,43.740772739899995,-79.42318305239999,310971.882,4844315.041999999
-888983,4153465,,2020.0,1907.0,PRIVATE,11,University-Rosedale,481 PALMERSTON BLVD,3,11,2020-12-15,73,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,3.0,4.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,3.0,4.0,4.0,,,S1133,43.6621199142,-79.4122665445,311860.32,4835577.963
-888984,4250288,2017.0,2020.0,1989.0,SOCIAL HOUSING,13,Toronto Centre,305-307 PARLIAMENT ST,3,10,2020-12-15,88,Evaluation needs to be conducted in 3 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,5.0,5.0,5.0,4.0,4.0,4.0,5.0,5.0,,4.0,S1330,,,315626.782,4835245.653
-888985,4154105,2017.0,2020.0,1955.0,PRIVATE,14,Toronto-Danforth,280 SAMMON AVE,4,34,2020-12-15,83,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,5.0,4.0,5.0,,3.0,,,3.0,3.0,5.0,5.0,4.0,5.0,,5.0,4.0,,S1426,43.686640553000004,-79.3370117361,317924.456,4838311.197
-888986,4154106,2017.0,2020.0,1950.0,PRIVATE,14,Toronto-Danforth,325 SAMMON AVE,3,26,2020-12-15,83,Evaluation needs to be conducted in 2 years,15,5.0,3.0,3.0,5.0,3.0,5.0,,3.0,,,3.0,5.0,5.0,4.0,5.0,5.0,,4.0,4.0,,S1426,43.6866220791,-79.3348314458,318100.224,4838309.488
-888987,4154563,2017.0,2020.0,1953.0,PRIVATE,8,Eglinton-Lawrence,6 SARANAC BLVD,4,26,2020-12-15,80,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,,N0823,43.7209195951,-79.432960657,310186.122,4842108.819
-888988,4379646,2018.0,2020.0,1923.0,PRIVATE,9,Davenport,1212 BLOOR ST W,3,16,2020-12-15,72,Evaluation needs to be conducted in 2 years,13,3.0,4.0,5.0,3.0,,4.0,,3.0,,,4.0,4.0,4.0,4.0,3.0,3.0,,3.0,,,S0930,43.6593129835,-79.4389019966,309712.36699999997,4835264.218
-888989,4153612,2017.0,2020.0,1950.0,PRIVATE,14,Toronto-Danforth,818 BROADVIEW AVE,3,31,2020-12-15,80,Evaluation needs to be conducted in 2 years,15,5.0,3.0,5.0,5.0,4.0,5.0,,3.0,,,3.0,3.0,5.0,3.0,5.0,5.0,,3.0,3.0,,S1424,43.678055685,-79.3589018471,316161.359,4837354.28
-888990,4152798,2017.0,2020.0,1965.0,PRIVATE,24,Scarborough-Guildwood,15 COUGAR CRT,17,193,2020-12-15,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,E2433,43.7449791335,-79.2174778122,327539.033,4844818.088
-888991,4155072,2017.0,2020.0,1960.0,PRIVATE,9,Davenport,480 CALEDONIA RD,4,28,2020-12-15,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,3.0,3.0,,4.0,5.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,S0921,43.6895758413,-79.4611447354,307916.766,4838625.219
-888992,4153182,2017.0,2020.0,1965.0,PRIVATE,11,University-Rosedale,161 CHRISTIE ST,4,15,2020-12-15,83,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,5.0,4.0,4.0,,4.0,,,4.0,5.0,5.0,4.0,4.0,4.0,,4.0,3.0,,S1125,43.6677026492,-79.41974947050001,311256.19800000003,4836197.601
-888993,4250641,2018.0,2020.0,1949.0,PRIVATE,14,Toronto-Danforth,338-342 DONLANDS AVE,3,36,2020-12-15,80,Evaluation needs to be conducted in 2 years,15,4.0,3.0,5.0,5.0,5.0,5.0,,3.0,,,5.0,4.0,5.0,3.0,4.0,3.0,,3.0,3.0,,S1422,,,317463.05100000004,4839006.188
-888994,4153180,2017.0,2020.0,1960.0,PRIVATE,11,University-Rosedale,30 WALMER RD,3,40,2020-12-15,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,4.0,4.0,5.0,4.0,3.0,4.0,3.0,4.0,4.0,,S1126,43.667889637100004,-79.406592558,312317.184,4836219.422
-888995,4320792,,2020.0,1975.0,PRIVATE,12,Toronto-St. Paul's,21 VAUGHAN RD,23,173,2020-12-15,81,Evaluation needs to be conducted in 2 years,19,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1235,43.6823113813,-79.418488924,311356.277,4837820.62
-888996,4154668,2017.0,2020.0,1960.0,PRIVATE,8,Eglinton-Lawrence,205 WILSON AVE,3,20,2020-12-15,81,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,N0824,43.738889013599994,-79.4250339237,310822.99600000004,4844105.651000001
-888997,4154667,2017.0,2020.0,1960.0,PRIVATE,8,Eglinton-Lawrence,211 WILSON AVE,3,26,2020-12-15,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,5.0,3.0,4.0,5.0,3.0,4.0,3.0,3.0,4.0,4.0,,N0824,43.7387605679,-79.4255772221,310779.249,4844091.347
-888998,4154527,2017.0,2020.0,1957.0,PRIVATE,8,Eglinton-Lawrence,32 HOTSPUR RD,3,10,2020-12-15,70,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,3.0,3.0,3.0,,4.0,,,3.0,3.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,,N0823,43.732850466,-79.435796774,309949.31,4843417.109
-888999,4264285,2017.0,2020.0,1900.0,PRIVATE,13,Toronto Centre,561 JARVIS ST,3,28,2020-12-15,63,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,,,2.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,S1322,43.6683620869,-79.3786856506,314567.707,4836274.842
-889000,4286257,2018.0,2020.0,1969.0,TCHC,12,Toronto-St. Paul's,69 HOLLY ST,4,14,2020-12-15,73,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,3.0,4.0,,2.0,4.0,,3.0,4.0,5.0,3.0,4.0,4.0,,4.0,3.0,,S1228,43.706257789,-79.396238397,313137.344,4840500.243
-889001,4152698,2017.0,2020.0,1960.0,PRIVATE,21,Scarborough Centre,806 KENNEDY RD,5,57,2020-12-15,82,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,E2133,43.7335331794,-79.2693313625,323366.283,4843533.666999999
-889002,4152707,2017.0,2020.0,1961.0,PRIVATE,21,Scarborough Centre,821 KENNEDY RD,6,59,2020-12-15,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2133,43.735133526599995,-79.26857423850001,323426.766,4843711.623
-889003,4155783,2017.0,2020.0,1955.0,PRIVATE,8,Eglinton-Lawrence,101 MARLEE AVE,6,58,2020-12-15,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,5.0,4.0,4.0,4.0,5.0,4.0,3.0,4.0,3.0,4.0,3.0,,N0832,43.701461008,-79.440472942,309582.088,4839947.551
-889004,4154529,2017.0,2020.0,1958.0,PRIVATE,8,Eglinton-Lawrence,80 NEPTUNE DR,3,11,2020-12-15,74,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,4.0,4.0,4.0,,4.0,,,3.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,N0823,43.732780803900006,-79.43644235800001,309904.577,4843426.318
-889005,4156028,2017.0,2020.0,1961.0,PRIVATE,25,Scarborough-Rouge Park,207 MORNINGSIDE AVE,5,107,2020-12-15,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,3.0,4.0,,4.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,E2537,43.766129136,-79.184866277,330136.912,4847166.93
-889006,4152841,2017.0,2020.0,1965.0,PRIVATE,25,Scarborough-Rouge Park,217 MORNINGSIDE AVE,9,110,2020-12-15,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,E2537,43.766678518999996,-79.18464464430001,330174.271,4847238.274
-889007,4152654,2017.0,2020.0,1993.0,SOCIAL HOUSING,21,Scarborough Centre,2155 LAWRENCE AVE E,11,243,2020-12-15,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,5.0,4.0,3.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,E2132,43.747083296199996,-79.2854390765,322064.815,4845035.55
-889008,4156448,2017.0,2020.0,1954.0,PRIVATE,2,Etobicoke Centre,310 THE KINGSWAY,3,22,2020-12-15,88,Evaluation needs to be conducted in 3 years,16,4.0,5.0,5.0,5.0,4.0,3.0,,3.0,,4.0,4.0,5.0,5.0,5.0,5.0,5.0,,5.0,3.0,,W0229,43.664397075,-79.52321953100001,302902.147,4835840.037
-889009,4156357,2017.0,2020.0,1954.0,PRIVATE,2,Etobicoke Centre,314 THE KINGSWAY,3,22,2020-12-15,86,Evaluation needs to be conducted in 3 years,16,4.0,4.0,5.0,5.0,4.0,3.0,,3.0,,4.0,4.0,5.0,5.0,5.0,5.0,5.0,,5.0,3.0,,W0229,43.66458226100001,-79.523537566,302881.557,4835854.438
-889010,4153175,2017.0,2020.0,1955.0,PRIVATE,11,University-Rosedale,27 WALMER RD,4,38,2020-12-15,81,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,3.0,4.0,,5.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,S1126,43.6681530791,-79.4056958125,312389.468,4836248.77
-889011,4250630,2018.0,2020.0,1950.0,PRIVATE,14,Toronto-Danforth,260 GAMBLE AVE,3,24,2020-12-15,84,Evaluation needs to be conducted in 2 years,16,5.0,3.0,5.0,5.0,5.0,5.0,,3.0,,,3.0,3.0,5.0,4.0,5.0,3.0,5.0,5.0,3.0,,S1422,43.691914578,-79.342942945,317444.932,4838897.169
-889012,4153195,2017.0,2020.0,1913.0,PRIVATE,11,University-Rosedale,399 DUPONT ST,3,20,2020-12-15,79,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,3.0,5.0,5.0,4.0,3.0,3.0,,4.0,3.0,,S1126,43.673383845500005,-79.4122210568,311862.661,4836829.316000001
-889013,4153582,2017.0,2020.0,1991.0,SOCIAL HOUSING,13,Toronto Centre,280 GERRARD ST E,3,26,2020-12-15,77,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,3.0,3.0,4.0,,5.0,,,4.0,3.0,5.0,4.0,3.0,4.0,,4.0,,,S1323,43.662450948,-79.368026345,315428.099,4835620.421
-889014,4589593,,2020.0,,PRIVATE,10,Spadina-Fort York,49 MC CAUL ST,4,40,2020-12-15,83,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,4.0,,4.0,,4.0,,,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,,,S1024,43.651593328000004,-79.390062452,313646.234,4834433.527
-889015,4152704,2017.0,2020.0,1969.0,PRIVATE,21,Scarborough Centre,807 KENNEDY RD,5,34,2020-12-14,84,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,5.0,,5.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,E2133,43.7337142939,-79.267968421,323476.02,4843554.095
-889016,4153553,2017.0,2020.0,1987.0,SOCIAL HOUSING,14,Toronto-Danforth,58 LEWIS ST,4,15,2020-12-14,81,Evaluation needs to be conducted in 2 years,15,4.0,5.0,5.0,3.0,3.0,4.0,,3.0,,,4.0,5.0,5.0,5.0,3.0,2.0,5.0,5.0,,,S1440,43.657882233,-79.348395465,317012.287,4835115.549
-889017,4153622,,2020.0,1921.0,PRIVATE,14,Toronto-Danforth,85 LAING ST,3,13,2020-12-14,66,Evaluation needs to be conducted in 2 years,14,3.0,3.0,5.0,4.0,4.0,3.0,,3.0,,,3.0,3.0,3.0,2.0,3.0,4.0,,3.0,,,S1442,43.663704356000004,-79.327142442,318731.892,4835790.185
-889018,4820405,,2020.0,,PRIVATE,3,Etobicoke-Lakeshore,2513 LAKE SHORE BLVD W,0,0,2020-12-14,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,4.0,4.0,3.0,5.0,4.0,3.0,3.0,,4.0,3.0,,W0336,43.6117781476,-79.4895548881,305627.437,4829981.725
-889019,4152701,2017.0,2020.0,1955.0,PRIVATE,21,Scarborough Centre,1191 BIRCHMOUNT RD,4,41,2020-12-14,73,Evaluation needs to be conducted in 2 years,17,3.0,4.0,3.0,3.0,3.0,4.0,,4.0,4.0,,4.0,3.0,5.0,3.0,3.0,4.0,4.0,4.0,4.0,,E2133,43.743041446999996,-79.2825115341,322301.768,4844587.131
-889020,4154558,2017.0,2020.0,1983.0,TCHC,8,Eglinton-Lawrence,3174 BATHURST ST,12,181,2020-12-14,91,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,4.0,4.0,5.0,4.0,5.0,,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,N0823,43.7219200782,-79.4309398102,310348.858,4842220.108
-889021,4152816,2017.0,2020.0,1960.0,PRIVATE,24,Scarborough-Guildwood,550 SCARBOROUGH GOLF CLUB RD,12,200,2020-12-14,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,3.0,,E2430,43.7607487105,-79.2171129347,327562.47,4846570.1219999995
-889022,4153631,2017.0,2020.0,1989.0,SOCIAL HOUSING,14,Toronto-Danforth,502 EASTERN AVE,5,19,2020-12-14,85,Evaluation needs to be conducted in 2 years,17,5.0,5.0,5.0,4.0,4.0,5.0,,3.0,,,4.0,3.0,5.0,5.0,3.0,4.0,4.0,4.0,4.0,5.0,S1441,43.6582172963,-79.3407960329,317625.416,4835152.942
-889023,4152709,2017.0,2020.0,1967.0,PRIVATE,21,Scarborough Centre,833 KENNEDY RD,7,54,2020-12-14,83,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,,E2133,43.736318401400005,-79.2689338549,323397.432,4843843.179
-889024,4155046,2017.0,2020.0,1955.0,PRIVATE,8,Eglinton-Lawrence,839 ROSELAWN AVE,7,36,2020-12-14,88,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,4.0,5.0,,4.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,N0831,43.7022080434,-79.4400323266,309617.805,4840029.609
-889025,4153623,2017.0,2020.0,1988.0,SOCIAL HOUSING,14,Toronto-Danforth,1187-1189 QUEEN ST E,4,34,2020-12-14,78,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,5.0,4.0,5.0,5.0,3.0,4.0,,3.0,5.0,5.0,3.0,3.0,3.0,3.0,4.0,,,S1441,,,318356.222,4835654.831
-889026,4245702,2017.0,2020.0,1930.0,PRIVATE,12,Toronto-St. Paul's,28 BALMORAL AVE,3,27,2020-12-12,69,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,,,S1238,43.685742821000005,-79.3945524551,313285.719,4838204.016
-889027,4245700,2017.0,2020.0,1930.0,PRIVATE,12,Toronto-St. Paul's,26 BALMORAL AVE,3,28,2020-12-12,69,Evaluation needs to be conducted in 2 years,13,4.0,4.0,4.0,3.0,,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,,,S1238,43.6859334323,-79.3944337437,313295.262,4838225.204
-889028,4152917,2017.0,2020.0,1935.0,PRIVATE,4,Parkdale-High Park,7 BRULE TER,3,13,2020-12-12,75,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,3.0,3.0,,4.0,,5.0,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,,S0430,43.6475612545,-79.4890462091,305668.015,4833957.046
-889029,4153043,2019.0,2020.0,1931.0,PRIVATE,4,Parkdale-High Park,3 ELM GROVE AVE,3,12,2020-12-12,65,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,4.0,3.0,4.0,3.0,,4.0,,,S0436,43.638815334200004,-79.4301843033,310417.398,4832987.572
-889030,4155042,2017.0,2020.0,1954.0,PRIVATE,8,Eglinton-Lawrence,1500 EGLINTON AVE W,4,34,2020-12-11,71,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,3.0,4.0,3.0,,4.0,,3.0,4.0,4.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,,N0831,43.698027116800006,-79.4407389878,309561.167,4839565.097
-889031,4167693,2017.0,2020.0,1925.0,PRIVATE,12,Toronto-St. Paul's,326 AVENUE RD,3,18,2020-12-11,72,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,3.0,4.0,4.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,3.0,,4.0,3.0,,S1237,43.680405146000005,-79.399282271,312904.833,4837611.481000001
-889032,4170952,2017.0,2020.0,1925.0,PRIVATE,12,Toronto-St. Paul's,330 AVENUE RD,3,19,2020-12-11,73,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,3.0,4.0,3.0,,3.0,,,4.0,3.0,5.0,3.0,4.0,4.0,,3.0,,,S1237,43.680535547,-79.399334602,312900.596,4837625.963
-889033,4154671,2017.0,2020.0,1969.0,PRIVATE,8,Eglinton-Lawrence,2200 AVENUE RD,16,152,2020-12-11,81,Evaluation needs to be conducted in 2 years,19,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,5.0,4.0,5.0,4.0,4.0,4.0,3.0,,N0821,43.740230303000004,-79.42255459350001,311022.559,4844254.825
-889034,4153071,2018.0,2020.0,1920.0,PRIVATE,4,Parkdale-High Park,467 RONCESVALLES AVE,4,15,2020-12-11,79,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,3.0,4.0,3.0,,4.0,,,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,,,S0433,43.653029024,-79.451300765,308712.47,4834566.458000001
-889035,4154696,2017.0,2020.0,1965.0,PRIVATE,6,York Centre,535 SHEPPARD AVE W,12,83,2020-12-11,83,Evaluation needs to be conducted in 2 years,20,5.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,N0630,43.755962232600005,-79.4343429276,310071.7,4846001.7530000005
-889036,4154695,2017.0,2020.0,1966.0,PRIVATE,6,York Centre,555 SHEPPARD AVE W,12,112,2020-12-11,81,Evaluation needs to be conducted in 2 years,20,5.0,4.0,5.0,4.0,4.0,4.0,3.0,5.0,4.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,N0630,43.755642859,-79.4356157794,309969.23699999996,4845966.2
-889037,4155880,2017.0,2020.0,1974.0,PRIVATE,2,Etobicoke Centre,63 WIDDICOMBE HILL BLVD,17,233,2020-12-11,88,Evaluation needs to be conducted in 3 years,18,4.0,4.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,,5.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,,W0222,43.677654113,-79.554781207,300348.86699999997,4837335.591
-889038,4169241,2017.0,2020.0,1928.0,PRIVATE,12,Toronto-St. Paul's,42 VAUGHAN RD,3,15,2020-12-11,77,Evaluation needs to be conducted in 2 years,14,3.0,3.0,5.0,4.0,,4.0,,4.0,,,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,,,S1235,43.68218998,-79.4195011613,311274.675,4837807.056
-889039,4153002,,2020.0,1910.0,PRIVATE,4,Parkdale-High Park,1570 KING ST W,3,18,2020-12-11,72,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,4.0,3.0,4.0,,4.0,,3.0,4.0,3.0,5.0,3.0,3.0,3.0,,4.0,,,S0436,43.638091463,-79.44404887399999,309298.548,4832907.31
-889040,4152911,2017.0,2020.0,1960.0,PRIVATE,4,Parkdale-High Park,111 RUNNYMEDE RD,4,16,2020-12-11,75,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,3.0,4.0,3.0,,4.0,,4.0,3.0,4.0,5.0,3.0,4.0,4.0,,4.0,4.0,,S0430,43.6505719581,-79.4757413114,306741.31899999996,4834291.715
-889041,4155380,2019.0,2020.0,1970.0,PRIVATE,2,Etobicoke Centre,320 THE WEST MALL,3,17,2020-12-11,71,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,3.0,,4.0,,,3.0,5.0,5.0,2.0,3.0,2.0,3.0,4.0,3.0,,W0233,43.636889686,-79.5635303983,299658.36600000004,4832773.299
-889042,4156002,2017.0,2020.0,1937.0,PRIVATE,8,Eglinton-Lawrence,1798 EGLINTON AVE W,3,34,2020-12-11,63,Evaluation needs to be conducted in 1 year,13,3.0,3.0,3.0,3.0,,3.0,,3.0,,,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,,,N0831,43.696142079,-79.44919947300001,308871.662,4839354.179
-889043,4155845,2017.0,2020.0,1953.0,PRIVATE,5,York South-Weston,33 FLAMBOROUGH DR,3,43,2020-12-10,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,2.0,3.0,3.0,4.0,,3.0,,3.0,4.0,3.0,4.0,4.0,3.0,3.0,,3.0,3.0,,W0529,43.7019480754,-79.4775820267,306591.346,4839999.254
-889044,4153143,2017.0,2020.0,1930.0,PRIVATE,10,Spadina-Fort York,115 EUCLID AVE,3,16,2020-12-10,79,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1022,43.6494076571,-79.4085775875,312159.435,4834165.952
-889045,4154692,2017.0,2020.0,1959.0,PRIVATE,6,York Centre,4141 BATHURST ST,3,30,2020-12-10,92,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,5.0,5.0,,5.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,N0630,43.7480692868,-79.436244411,309919.25399999996,4845124.782
-889046,4153006,2017.0,2020.0,1970.0,PRIVATE,4,Parkdale-High Park,70 WILSON PARK RD,3,25,2020-12-10,75,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,3.0,4.0,4.0,,4.0,,,3.0,3.0,5.0,4.0,3.0,4.0,,4.0,3.0,,S0436,43.638628857,-79.4424836843,309425.058,4832966.142
-889047,4156611,2017.0,2020.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,2844 BLOOR ST W,3,14,2020-12-10,84,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,4.0,3.0,4.0,,4.0,,4.0,4.0,4.0,5.0,4.0,5.0,5.0,,4.0,5.0,,W0322,43.649347734399996,-79.503797178,,
-889048,4156649,2017.0,2020.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,2846 BLOOR ST W,4,16,2020-12-10,85,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,,4.0,4.0,4.0,5.0,4.0,5.0,5.0,,4.0,5.0,,W0322,43.6492875275,-79.5040692616,,
-889049,4152986,2019.0,2020.0,1959.0,PRIVATE,4,Parkdale-High Park,140 SPRINGHURST AVE,5,20,2020-12-10,74,Evaluation needs to be conducted in 2 years,16,4.0,3.0,5.0,3.0,4.0,3.0,,3.0,3.0,,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,3.0,,S0437,43.6357144726,-79.43650599680001,309907.601,4832642.713
-889050,4155766,2017.0,2020.0,2005.0,SOCIAL HOUSING,10,Spadina-Fort York,552 ADELAIDE ST W,5,84,2020-12-10,88,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,,4.0,3.0,5.0,5.0,4.0,4.0,,4.0,,5.0,S1029,43.645573462,-79.402433707,312653.459,4833740.458000001
-889051,4155644,2017.0,2020.0,1957.0,TCHC,8,Eglinton-Lawrence,87 AMARANTH CRT,4,30,2020-12-10,71,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,,3.0,3.0,4.0,4.0,3.0,4.0,4.0,,4.0,4.0,,N0823,43.720444621000006,-79.44680337,309070.52,4842056.181
-889052,4154687,2017.0,2020.0,1950.0,SOCIAL HOUSING,6,York Centre,4085 BATHURST ST,3,10,2020-12-10,79,Evaluation needs to be conducted in 2 years,16,4.0,5.0,5.0,4.0,4.0,3.0,,3.0,,4.0,5.0,4.0,5.0,3.0,3.0,4.0,,3.0,4.0,,N0630,43.74471057069999,-79.4354450198,309983.913,4844751.683999999
-889053,4154688,2018.0,2020.0,1958.0,PRIVATE,6,York Centre,4087 BATHURST ST,3,11,2020-12-10,84,Evaluation needs to be conducted in 2 years,16,4.0,5.0,4.0,5.0,3.0,4.0,,4.0,,3.0,5.0,4.0,5.0,4.0,4.0,4.0,,4.0,5.0,,N0630,43.7449473955,-79.43554268609999,309976.028,4844777.99
-889054,4153051,2017.0,2020.0,1914.0,PRIVATE,4,Parkdale-High Park,310 RONCESVALLES AVE,4,13,2020-12-10,70,Evaluation needs to be conducted in 2 years,14,4.0,3.0,4.0,4.0,,3.0,,4.0,,,4.0,4.0,2.0,3.0,3.0,3.0,4.0,4.0,,,S0432,43.6492006854,-79.4505020154,308777.417,4834140.227
-889055,4155840,2017.0,2020.0,1966.0,SOCIAL HOUSING,11,University-Rosedale,300 SHAW ST,3,32,2020-12-10,78,Evaluation needs to be conducted in 2 years,19,3.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,4.0,5.0,5.0,3.0,3.0,3.0,4.0,4.0,3.0,5.0,S1141,43.65047076729999,-79.4188998818,311326.66,4834283.206
-889056,4153662,2017.0,2020.0,1975.0,PRIVATE,19,Beaches-East York,2263 QUEEN ST E,3,18,2020-12-10,68,Evaluation needs to be conducted in 2 years,13,4.0,3.0,3.0,3.0,,4.0,,3.0,,,4.0,3.0,3.0,4.0,3.0,3.0,,4.0,,,S1942,43.6710986709,-79.2938756588,321406.268,4836592.298
-889057,4250262,2017.0,2020.0,1989.0,SOCIAL HOUSING,11,University-Rosedale,805 BLOOR ST W,4,24,2020-12-10,74,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,3.0,4.0,2.0,4.0,3.0,,3.0,4.0,5.0,4.0,3.0,4.0,,4.0,,4.0,S1132,43.662679383000004,-79.421476232,311117.231,4835640.346
-889058,4153147,2017.0,2020.0,1912.0,PRIVATE,10,Spadina-Fort York,255 DOVERCOURT RD,3,16,2020-12-10,85,Evaluation needs to be conducted in 2 years,15,5.0,4.0,4.0,5.0,4.0,5.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,5.0,3.0,,S1021,43.6484324377,-79.42402265850001,310913.609,4834056.383
-889059,4253010,2017.0,2020.0,2007.0,SOCIAL HOUSING,9,Davenport,46 DELAWARE AVE,3,14,2020-12-10,80,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,5.0,4.0,,4.0,,,4.0,3.0,5.0,3.0,4.0,4.0,,3.0,,4.0,S0935,43.655578195299995,-79.42613727220001,310742.29600000003,4834850.132
-889060,4257265,2017.0,2020.0,1969.0,PRIVATE,11,University-Rosedale,95 DAVENPORT RD,3,26,2020-12-10,76,Evaluation needs to be conducted in 2 years,14,4.0,3.0,5.0,4.0,3.0,4.0,,4.0,,,3.0,3.0,4.0,3.0,4.0,5.0,,4.0,,,S1128,43.673636335,-79.391647025,313521.42,4836860.285
-889061,4154051,2017.0,2020.0,1970.0,SOCIAL HOUSING,19,Beaches-East York,418 DAWES RD,5,49,2020-12-10,69,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,4.0,4.0,,3.0,3.0,,3.0,3.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,4.0,S1927,43.7013834487,-79.29755669640001,321101.292,4839956.069
-889062,4156441,2017.0,2020.0,2009.0,SOCIAL HOUSING,12,Toronto-St. Paul's,201 VAUGHAN RD,3,30,2020-12-10,81,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,3.0,4.0,,4.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,,5.0,4.0,5.0,S1229,43.6870772647,-79.4223633104,311043.417,4838349.831
-889063,4152965,2017.0,2020.0,1957.0,PRIVATE,4,Parkdale-High Park,130 TYNDALL AVE,5,37,2020-12-10,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,S0437,43.6378675818,-79.4294602213,310475.906,4832882.331
-889064,4155859,2017.0,2020.0,1960.0,PRIVATE,13,Toronto Centre,433 JARVIS ST,9,144,2020-12-10,79,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,,4.0,5.0,4.0,3.0,4.0,4.0,5.0,4.0,3.0,,S1326,43.663909713500004,-79.3766153717,314735.394,4835780.455
-889065,4415827,2018.0,2020.0,1928.0,PRIVATE,13,Toronto Centre,438 JARVIS ST,3,30,2020-12-10,74,Evaluation needs to be conducted in 2 years,14,3.0,3.0,5.0,3.0,4.0,3.0,,4.0,,,3.0,5.0,5.0,3.0,4.0,4.0,,3.0,,,S1326,43.66542483640001,-79.3783580132,314594.61100000003,4835948.566000001
-889066,4415696,2018.0,2020.0,1928.0,PRIVATE,13,Toronto Centre,432 JARVIS ST,3,26,2020-12-10,73,Evaluation needs to be conducted in 2 years,14,3.0,3.0,5.0,3.0,4.0,3.0,,4.0,,,3.0,5.0,4.0,3.0,4.0,4.0,,3.0,,,S1326,43.6652814395,-79.37830549819999,314598.869,4835932.642
-889067,4253806,2017.0,2020.0,1956.0,PRIVATE,11,University-Rosedale,1 ROSEDALE RD,4,25,2020-12-10,81,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,S1129,43.674781847,-79.38361137,314169.232,4836988.448
-889068,4774556,2020.0,2020.0,1989.0,PRIVATE,13,Toronto Centre,55 MUTUAL ST,3,40,2020-12-10,76,Evaluation needs to be conducted in 2 years,14,3.0,4.0,4.0,3.0,3.0,4.0,,3.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,S1332,43.655606154,-79.37473438,314888.214,4834859.129
-889069,4155627,2017.0,2020.0,1957.0,TCHC,8,Eglinton-Lawrence,3 LEILA LANE,3,31,2020-12-10,70,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,,4.0,3.0,3.0,4.0,3.0,4.0,4.0,,3.0,4.0,,N0823,43.722049816,-79.44575558300001,309154.837,4842234.568
-889070,4153922,2018.0,2020.0,1929.0,PRIVATE,12,Toronto-St. Paul's,57 LAWTON BLVD,4,12,2020-12-10,64,Evaluation needs to be conducted in 1 year,14,3.0,3.0,4.0,3.0,2.0,3.0,,4.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,S1232,43.691956596000004,-79.39570523,313191.661,4838895.195
-889071,4154179,2017.0,2020.0,1950.0,PRIVATE,15,Don Valley West,823 MILLWOOD RD,4,13,2020-12-10,90,Evaluation needs to be conducted in 3 years,16,5.0,5.0,5.0,5.0,4.0,5.0,,5.0,,,4.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,,N1535,43.7046543279,-79.36880487479999,315358.19899999996,4840308.001
-889072,4272882,2017.0,2020.0,1952.0,PRIVATE,11,University-Rosedale,468 SUMMERHILL AVE,3,34,2020-12-10,87,Evaluation needs to be conducted in 3 years,15,4.0,5.0,5.0,4.0,4.0,4.0,,5.0,,,4.0,5.0,5.0,3.0,5.0,4.0,,4.0,4.0,,S1130,43.686670483,-79.37486008100001,314872.929,4838310.28
-889073,4287729,2018.0,2020.0,1952.0,PRIVATE,11,University-Rosedale,470 SUMMERHILL AVE,3,17,2020-12-10,87,Evaluation needs to be conducted in 3 years,15,4.0,5.0,5.0,4.0,4.0,4.0,,5.0,,,4.0,5.0,5.0,3.0,5.0,4.0,,4.0,4.0,,S1130,43.686627439,-79.374759908,314881.012,4838305.51
-889074,4153403,2017.0,2020.0,1966.0,PRIVATE,10,Spadina-Fort York,50 STEPHANIE ST,24,284,2020-12-10,84,Evaluation needs to be conducted in 2 years,18,5.0,5.0,5.0,4.0,5.0,3.0,4.0,4.0,4.0,,4.0,4.0,5.0,3.0,5.0,4.0,4.0,4.0,4.0,,S1024,43.651457871000005,-79.39239786,313464.06,4834396.283
-889075,4155024,2017.0,2020.0,1957.0,PRIVATE,12,Toronto-St. Paul's,642 VAUGHAN RD,4,23,2020-12-10,83,Evaluation needs to be conducted in 2 years,14,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,4.0,5.0,5.0,3.0,4.0,4.0,,5.0,,,S1222,43.692785049499996,-79.4417092331,309481.606,4838982.16
-889076,4154120,2019.0,2020.0,1960.0,PRIVATE,14,Toronto-Danforth,27 GAMBLE AVE,6,75,2020-12-10,86,Evaluation needs to be conducted in 3 years,19,5.0,3.0,4.0,5.0,4.0,5.0,5.0,5.0,4.0,5.0,3.0,3.0,5.0,5.0,4.0,5.0,4.0,5.0,3.0,,S1421,43.6892398078,-79.3532188818,316617.38800000004,4838597.595
-889077,4154121,2017.0,2020.0,1970.0,PRIVATE,14,Toronto-Danforth,33 GAMBLE AVE,4,28,2020-12-10,80,Evaluation needs to be conducted in 2 years,17,5.0,3.0,5.0,5.0,5.0,5.0,,3.0,,3.0,4.0,5.0,5.0,3.0,4.0,3.0,4.0,3.0,3.0,,S1421,43.6894011372,-79.352872034,316645.318,4838615.567
-889078,4154135,2017.0,2020.0,1964.0,PRIVATE,14,Toronto-Danforth,72 GAMBLE AVE,12,212,2020-12-10,81,Evaluation needs to be conducted in 2 years,19,5.0,3.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,3.0,4.0,3.0,3.0,2.0,3.0,5.0,3.0,3.0,,S1421,43.6901320701,-79.3521100097,316706.6,4838696.875
-889079,4154133,2019.0,2020.0,1958.0,PRIVATE,14,Toronto-Danforth,15 GAMBLE AVE,3,27,2020-12-10,78,Evaluation needs to be conducted in 2 years,17,5.0,3.0,5.0,5.0,5.0,3.0,,3.0,,4.0,4.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,,S1421,43.6891811387,-79.3538144471,316569.387,4838590.994
-889080,4154136,2017.0,2020.0,1964.0,PRIVATE,14,Toronto-Danforth,20 GAMBLE AVE,12,213,2020-12-10,87,Evaluation needs to be conducted in 3 years,19,5.0,3.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,3.0,5.0,4.0,4.0,4.0,5.0,3.0,5.0,4.0,3.0,,S1421,43.6898019641,-79.3535830039,316587.924,4838659.999
-889081,4154689,,2020.0,1953.0,PRIVATE,6,York Centre,4089 BATHURST ST,3,10,2020-12-10,73,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,3.0,3.0,5.0,,4.0,,3.0,3.0,3.0,5.0,4.0,3.0,3.0,,4.0,4.0,,N0630,43.7451902224,-79.4355554925,309974.977,4844804.968
-889082,4153924,2017.0,2020.0,1965.0,PRIVATE,12,Toronto-St. Paul's,95 LAWTON BLVD,7,60,2020-12-09,73,Evaluation needs to be conducted in 2 years,19,3.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,4.0,4.0,3.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,,S1232,43.693346588000004,-79.39645967439999,313130.915,4839048.603999999
-889083,4153154,2017.0,2020.0,1940.0,PRIVATE,9,Davenport,19-21 RUSHOLME RD,3,11,2020-12-09,91,Evaluation needs to be conducted in 3 years,16,5.0,5.0,4.0,4.0,4.0,4.0,,5.0,,5.0,5.0,4.0,5.0,4.0,5.0,5.0,,5.0,4.0,,S0934,43.650137633,-79.42672564600001,310695.11600000004,4834246.595
-889084,4154891,2017.0,2020.0,1958.0,PRIVATE,16,Don Valley East,2 SWIFT DR,4,61,2020-12-09,96,Evaluation needs to be conducted in 3 years,18,4.0,5.0,5.0,5.0,5.0,5.0,,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,5.0,,N1628,43.726549517399995,-79.31918836210001,319351.711,4842747.946
-889085,4154577,2017.0,2020.0,1960.0,PRIVATE,6,York Centre,59 VINCI CRES,4,33,2020-12-09,78,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,3.0,4.0,,5.0,,3.0,3.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,,N0629,43.7378403502,-79.4465142919,309092.864,4843987.8319999995
-889086,4155382,2017.0,2020.0,1962.0,PRIVATE,2,Etobicoke Centre,311 THE WEST MALL,7,109,2020-12-09,70,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,2.0,4.0,5.0,2.0,4.0,3.0,2.0,3.0,3.0,,W0233,43.6365103403,-79.562181408,299767.179,4832731.073
-889087,4154122,2017.0,2020.0,1974.0,PRIVATE,14,Toronto-Danforth,45 GAMBLE AVE,6,49,2020-12-09,82,Evaluation needs to be conducted in 2 years,18,5.0,3.0,5.0,5.0,5.0,5.0,,3.0,4.0,5.0,4.0,3.0,5.0,3.0,5.0,3.0,4.0,3.0,4.0,,S1421,43.689482846000004,-79.3524948053,316675.712,4838624.697
-889088,4154575,2017.0,2020.0,1960.0,PRIVATE,6,York Centre,45 FAYWOOD BLVD,4,33,2020-12-09,81,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,3.0,4.0,,5.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0629,43.7368172463,-79.4465426637,309090.649,4843874.172
-889089,4154576,2017.0,2020.0,1960.0,PRIVATE,6,York Centre,55 FAYWOOD BLVD,4,33,2020-12-09,76,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,2.0,3.0,4.0,,5.0,,4.0,3.0,3.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,,N0629,43.7374755438,-79.4464332774,309099.415,4843947.308999999
-889090,4154059,2017.0,2020.0,1955.0,PRIVATE,19,Beaches-East York,127 GLENWOOD CRES,3,57,2020-12-09,68,Evaluation needs to be conducted in 2 years,15,3.0,4.0,2.0,4.0,3.0,4.0,,4.0,,,3.0,3.0,3.0,3.0,3.0,4.0,,4.0,4.0,,S1927,43.7025056164,-79.3120345151,319934.109,4840078.057
-889091,4273205,2017.0,2020.0,1911.0,PRIVATE,13,Toronto Centre,67 GLOUCESTER ST,3,15,2020-12-09,76,Evaluation needs to be conducted in 2 years,14,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,,,3.0,4.0,5.0,3.0,4.0,4.0,,3.0,,,S1322,43.6670615144,-79.3820888651,314293.461,4836129.969
-889092,4154116,2017.0,2020.0,1968.0,PRIVATE,14,Toronto-Danforth,130 GOWAN AVE,12,160,2020-12-09,80,Evaluation needs to be conducted in 2 years,19,5.0,3.0,3.0,5.0,5.0,5.0,3.0,3.0,5.0,5.0,3.0,5.0,4.0,4.0,3.0,3.0,5.0,4.0,3.0,,S1421,43.6884286813,-79.3499828306,316878.417,4838507.925
-889093,4155638,2017.0,2020.0,1957.0,TCHC,8,Eglinton-Lawrence,1 FLEMINGTON RD,3,31,2020-12-09,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,4.0,3.0,4.0,4.0,,3.0,4.0,,N0823,43.719074422,-79.441290791,309514.797,4841904.254
-889094,4155637,2017.0,2020.0,1957.0,TCHC,8,Eglinton-Lawrence,3 FLEMINGTON RD,3,31,2020-12-09,73,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,3.0,4.0,3.0,,4.0,,,3.0,4.0,4.0,3.0,4.0,4.0,,4.0,4.0,,N0823,43.719157062,-79.442145009,309445.958,4841913.386
-889095,4155632,2017.0,2020.0,1957.0,TCHC,8,Eglinton-Lawrence,7 FLEMINGTON RD,4,30,2020-12-09,73,Evaluation needs to be conducted in 2 years,15,3.0,4.0,3.0,3.0,4.0,4.0,,4.0,,,3.0,4.0,3.0,3.0,4.0,4.0,,4.0,5.0,,N0823,43.719109071000005,-79.444361414,309268.912,4841893.813999999
-889096,4155643,2017.0,2020.0,1957.0,TCHC,8,Eglinton-Lawrence,9 FLEMINGTON RD,4,30,2020-12-09,72,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,,,4.0,3.0,4.0,4.0,4.0,4.0,,4.0,4.0,,N0823,43.718738197700006,-79.4460430714,309132.157,4841865.686000001
-889097,4155642,2017.0,2020.0,1957.0,TCHC,8,Eglinton-Lawrence,11 FLEMINGTON RD,4,31,2020-12-09,73,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,,,4.0,3.0,4.0,4.0,4.0,4.0,,4.0,4.0,,N0823,43.718500015,-79.447329934,309019.977,4841871.044
-889098,4152959,2017.0,2020.0,1939.0,PRIVATE,4,Parkdale-High Park,57 SPENCER AVE,3,19,2020-12-09,80,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,S0437,43.636137103,-79.429522246,310470.794,4832691.036
-889099,4152960,2017.0,2020.0,1939.0,PRIVATE,4,Parkdale-High Park,59 SPENCER AVE,3,19,2020-12-09,75,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,4.0,4.0,3.0,,3.0,,4.0,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,3.0,,S0437,43.636297355,-79.429583628,310465.827,4832708.835
-889100,4152950,2017.0,2020.0,1962.0,PRIVATE,4,Parkdale-High Park,1 SPRINGHURST AVE,5,41,2020-12-09,82,Evaluation needs to be conducted in 2 years,17,4.0,5.0,5.0,4.0,4.0,3.0,,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,S0437,43.6346126017,-79.4260955967,310747.684,4832520.944
-889101,4153885,2017.0,2020.0,1955.0,PRIVATE,12,Toronto-St. Paul's,567 AVENUE RD,11,63,2020-12-09,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1232,43.688402926,-79.40160629399999,312716.44899999996,4838499.822
-889102,4153145,2017.0,2020.0,1932.0,PRIVATE,9,Davenport,10 BEACONSFIELD AVE,4,11,2020-12-09,81,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,S0937,43.643432753,-79.4253164727,310809.709,4833500.853
-889103,4154686,2017.0,2020.0,1960.0,PRIVATE,6,York Centre,3905 BATHURST ST,5,50,2020-12-09,77,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,3.0,5.0,4.0,3.0,4.0,5.0,3.0,3.0,,N0630,43.743207276599996,-79.4350944029,310012.274,4844584.687
-889104,4156362,2017.0,2020.0,1950.0,PRIVATE,12,Toronto-St. Paul's,1582 BATHURST ST,3,33,2020-12-09,74,Evaluation needs to be conducted in 2 years,14,3.0,4.0,5.0,3.0,3.0,4.0,,4.0,,,3.0,5.0,5.0,3.0,4.0,3.0,,3.0,,,S1229,43.6866154943,-79.4200162678,311232.685,4838298.699
-889105,4153918,2017.0,2020.0,1918.0,PRIVATE,12,Toronto-St. Paul's,62 ORIOLE GDNS,3,13,2020-12-09,65,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,3.0,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,,,S1232,43.690570503000004,-79.400460705,312808.51399999997,4838740.742
-889106,4154961,2017.0,2020.0,1960.0,PRIVATE,12,Toronto-St. Paul's,54 RAGLAN AVE,4,16,2020-12-09,74,Evaluation needs to be conducted in 2 years,14,4.0,4.0,5.0,4.0,2.0,4.0,,4.0,,,4.0,4.0,5.0,3.0,3.0,3.0,,3.0,,,S1229,43.6845316725,-79.420531395,311191.36699999997,4838067.141
-889107,4154838,2019.0,2020.0,1958.0,PRIVATE,17,Don Valley North,688 SHEPPARD AVE E,4,35,2020-12-09,76,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,3.0,4.0,3.0,5.0,4.0,3.0,4.0,,4.0,3.0,,N1725,43.769190713,-79.379327637,314499.417,4847477.313
-889108,4154112,2017.0,2020.0,1973.0,PRIVATE,14,Toronto-Danforth,55 COSBURN AVE,12,155,2020-12-09,85,Evaluation needs to be conducted in 2 years,19,5.0,3.0,5.0,5.0,4.0,5.0,5.0,3.0,5.0,5.0,4.0,5.0,5.0,3.0,4.0,5.0,4.0,3.0,3.0,,S1421,43.6884922382,-79.3520019211,316715.641,4838514.709
-889109,4154107,2017.0,2020.0,1973.0,PRIVATE,14,Toronto-Danforth,1111 BROADVIEW AVE,4,41,2020-12-09,88,Evaluation needs to be conducted in 3 years,17,5.0,3.0,5.0,5.0,5.0,5.0,,5.0,,3.0,5.0,3.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,,S1421,43.6865969215,-79.3555102879,316433.186,4838303.661
-889110,4154137,,2020.0,1955.0,PRIVATE,14,Toronto-Danforth,1243 BROADVIEW AVE,4,38,2020-12-09,80,Evaluation needs to be conducted in 2 years,16,5.0,3.0,5.0,5.0,3.0,5.0,,5.0,,3.0,3.0,3.0,5.0,3.0,5.0,4.0,,3.0,4.0,,S1421,43.6907938758,-79.3550051135,316473.095,4838770.007
-889111,4153159,2017.0,2020.0,1930.0,PRIVATE,9,Davenport,1044 COLLEGE ST,3,43,2020-12-09,77,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,3.0,4.0,,3.0,,,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,,,S0934,43.653199472,-79.430277706,310408.275,4834586.517
-889112,4154942,2017.0,2020.0,1955.0,PRIVATE,12,Toronto-St. Paul's,3 CLAXTON BLVD,3,19,2020-12-09,77,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,,4.0,4.0,4.0,5.0,3.0,4.0,3.0,,3.0,,,S1229,43.686965094099996,-79.420416441,311200.387,4838337.511
-889113,4154048,2017.0,2020.0,1959.0,PRIVATE,19,Beaches-East York,612 DAWES RD,5,60,2020-12-09,73,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,,2.0,4.0,5.0,3.0,4.0,3.0,3.0,4.0,4.0,,S1927,43.707368794,-79.295895516,321233.295,4840622.311000001
-889114,4154974,2017.0,2020.0,1929.0,SOCIAL HOUSING,12,Toronto-St. Paul's,175 VAUGHAN RD,4,29,2020-12-09,77,Evaluation needs to be conducted in 2 years,14,3.0,4.0,5.0,3.0,3.0,4.0,,4.0,,,4.0,5.0,4.0,3.0,4.0,4.0,,4.0,,,S1229,43.6862643144,-79.4217422251,311093.57,4838259.553
-889115,4154279,2017.0,2020.0,1959.0,PRIVATE,5,York South-Weston,2050 KEELE ST,9,187,2020-12-09,83,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,3.0,,W0529,43.6979738679,-79.4763948236,306687.153,4839557.752
-889116,4154579,2017.0,2020.0,1960.0,PRIVATE,6,York Centre,8 VINCI CRES,4,33,2020-12-09,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,3.0,4.0,,5.0,,3.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0629,43.7362371647,-79.4461261454,309124.24,4843809.751
-889117,4153158,2017.0,2020.0,1905.0,PRIVATE,9,Davenport,1 HAVELOCK ST,3,18,2020-12-09,80,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,,,S0934,43.6531913676,-79.42927202199999,310489.665,4834584.737
-889118,4155756,,2020.0,1927.0,PRIVATE,12,Toronto-St. Paul's,6 PINEWOOD AVE,3,11,2020-12-09,53,Evaluation needs to be conducted in 1 year,14,3.0,3.0,2.0,2.0,,3.0,,3.0,,,3.0,3.0,4.0,2.0,3.0,2.0,2.0,2.0,,,S1229,43.682454983,-79.425041007,310827.715,4837837.046
-889119,4154973,,2020.0,1925.0,PRIVATE,12,Toronto-St. Paul's,8 PINEWOOD AVE,3,11,2020-12-09,53,Evaluation needs to be conducted in 1 year,14,2.0,3.0,3.0,2.0,,3.0,,3.0,,,2.0,3.0,5.0,2.0,3.0,2.0,2.0,2.0,,,S1229,43.682584046,-79.425180892,310816.424,4837851.375
-889120,4152921,2017.0,2020.0,1975.0,PRIVATE,4,Parkdale-High Park,494 RUNNYMEDE RD,3,36,2020-12-09,77,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,3.0,3.0,4.0,,4.0,,,4.0,3.0,4.0,4.0,5.0,3.0,,4.0,4.0,,S0426,43.6595761764,-79.4801030062,306389.17600000004,4835291.941000001
-889121,4155389,2017.0,2020.0,1970.0,PRIVATE,2,Etobicoke Centre,361 THE WEST MALL,16,141,2020-12-09,75,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,2.0,3.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,,W0233,43.64088681,-79.564713058,299564.642,4833089.72
-889122,4154676,2018.0,2020.0,1940.0,PRIVATE,8,Eglinton-Lawrence,284 LAWRENCE AVE W,3,15,2020-12-08,65,Evaluation needs to be conducted in 1 year,17,4.0,4.0,4.0,2.0,4.0,4.0,,3.0,,3.0,2.0,3.0,5.0,2.0,2.0,3.0,3.0,4.0,3.0,,N0824,43.722781903999994,-79.4147683838,311651.724,4842317.086
-889123,4153912,2017.0,2020.0,1920.0,PRIVATE,12,Toronto-St. Paul's,8 MALLORY GDNS,4,36,2020-12-08,73,Evaluation needs to be conducted in 2 years,16,4.0,3.0,5.0,3.0,3.0,3.0,,3.0,,3.0,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,3.0,,S1232,43.690519401,-79.396663132,313114.642,4838735.424
-889124,4152852,2017.0,2020.0,1972.0,PRIVATE,22,Scarborough-Agincourt,2727 VICTORIA PARK AVE,13,178,2020-12-08,83,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,3.0,4.0,E2225,43.7774582202,-79.323301522,319008.345,4848402.903
-889125,4156373,2017.0,2020.0,1963.0,TCHC,2,Etobicoke Centre,58 WATERTON RD,6,47,2020-12-08,71,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,,3.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,2.0,,W0224,43.693937882,-79.51688954800001,303416.73699999996,4839111.034
-889126,4155064,2017.0,2020.0,1960.0,PRIVATE,9,Davenport,3 THORNTON AVE,3,17,2020-12-08,81,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,4.0,3.0,5.0,5.0,4.0,4.0,,4.0,3.0,,S0922,43.692937729200004,-79.454744586,308432.533,4838998.971
-889127,4155313,,2020.0,1952.0,PRIVATE,2,Etobicoke Centre,315 THE KINGSWAY,4,15,2020-12-08,73,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,2.0,,3.0,,,4.0,3.0,5.0,4.0,4.0,3.0,,4.0,2.0,,W0229,43.6650849124,-79.5230752118,302923.345,4835904.087
-889128,4155615,2017.0,2020.0,1977.0,TCHC,12,Toronto-St. Paul's,70 DUNFIELD AVE,16,156,2020-12-08,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,3.0,,S1228,43.706491428999996,-79.395574467,313200.179,4840510.049
-889129,4153787,2017.0,2020.0,1955.0,PRIVATE,15,Don Valley West,341 FORMAN AVE,4,15,2020-12-08,85,Evaluation needs to be conducted in 2 years,16,5.0,3.0,5.0,5.0,4.0,5.0,,4.0,,5.0,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,4.0,,N1530,43.7088608349,-79.38577257,313990.06899999996,4840773.368
-889130,4153812,2017.0,2020.0,1963.0,PRIVATE,15,Don Valley West,420 EGLINTON AVE E,5,44,2020-12-08,79,Evaluation needs to be conducted in 2 years,19,5.0,3.0,5.0,3.0,3.0,4.0,4.0,3.0,4.0,5.0,3.0,4.0,5.0,4.0,3.0,3.0,5.0,4.0,5.0,,N1537,43.7097985211,-79.3852685369,314030.547,4840877.597
-889131,4153791,2017.0,2020.0,1965.0,PRIVATE,15,Don Valley West,435 EGLINTON AVE E,12,52,2020-12-08,86,Evaluation needs to be conducted in 3 years,19,5.0,3.0,3.0,4.0,3.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,3.0,5.0,5.0,3.0,,N1530,43.709548032,-79.3831759737,314199.208,4840849.994
-889132,4153793,2017.0,2020.0,1965.0,PRIVATE,15,Don Valley West,485 EGLINTON AVE E,12,108,2020-12-08,86,Evaluation needs to be conducted in 3 years,19,5.0,3.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,3.0,5.0,5.0,3.0,5.0,4.0,3.0,3.0,3.0,,N1530,43.709939802799994,-79.38136487850001,314345.087,4840893.716
-889133,4156736,2017.0,2020.0,1951.0,PRIVATE,3,Etobicoke-Lakeshore,135 EIGHTH ST,4,47,2020-12-08,81,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0335,43.601151061,-79.506439811,304264.189,4828802.018999999
-889134,4169166,2017.0,2020.0,1960.0,SOCIAL HOUSING,8,Eglinton-Lawrence,1674 EGLINTON AVE W,4,40,2020-12-08,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,3.0,3.0,4.0,,4.0,3.0,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,N0831,43.6970039967,-79.4454317501,309182.971,4839451.174
-889135,4155039,2017.0,2020.0,1960.0,PRIVATE,12,Toronto-St. Paul's,1675 EGLINTON AVE W,3,37,2020-12-08,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,3.0,4.0,4.0,,3.0,,4.0,3.0,4.0,5.0,3.0,4.0,4.0,,4.0,4.0,,S1222,43.6962776134,-79.4460738363,309131.262,4839370.443
-889136,4153964,2017.0,2020.0,1941.0,TCHC,8,Eglinton-Lawrence,840 EGLINTON AVE W,4,40,2020-12-08,67,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0832,43.7014864975,-79.4251602874,310816.559,4839950.4569999995
-889137,4254270,2017.0,2020.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,139 EIGHTH ST,3,47,2020-12-08,83,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0335,43.601494318,-79.50658095600001,304252.79600000003,4828840.154
-889138,4254274,2017.0,2020.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,143 EIGHTH ST,4,47,2020-12-08,81,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0335,43.601842503,-79.506732984,304240.524,4828878.837
-889139,4254276,2017.0,2020.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,147 EIGHTH ST,4,52,2020-12-08,81,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0335,43.602248316,-79.506894937,304227.452,4828923.922
-889140,4153950,2017.0,2020.0,1960.0,PRIVATE,8,Eglinton-Lawrence,570 EGLINTON AVE W,3,11,2020-12-08,68,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,4.0,3.0,3.0,,4.0,4.0,3.0,3.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,,,N0833,43.7031059337,-79.41690306310001,311481.91,4840131.013
-889141,4153914,2017.0,2020.0,1920.0,PRIVATE,12,Toronto-St. Paul's,1 MALLORY GDNS,4,35,2020-12-08,78,Evaluation needs to be conducted in 2 years,16,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,,3.0,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,3.0,,S1232,43.69100353899999,-79.39598868600001,313168.941,4838789.278
-889142,4154659,2017.0,2020.0,1955.0,PRIVATE,8,Eglinton-Lawrence,3255 BATHURST ST,4,22,2020-12-08,81,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0824,43.7239351487,-79.4303884781,310393.099,4842444.013
-889143,4154606,2017.0,2020.0,1950.0,PRIVATE,6,York Centre,4234 BATHURST ST,3,13,2020-12-08,70,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,4.0,3.0,,4.0,,,4.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,4.0,,N0629,43.7500704294,-79.4375522258,309813.766,4845347.018
-889144,4154605,2017.0,2020.0,1956.0,PRIVATE,6,York Centre,4238 BATHURST ST,3,13,2020-12-08,71,Evaluation needs to be conducted in 2 years,17,3.0,4.0,4.0,4.0,3.0,4.0,,4.0,,4.0,3.0,5.0,5.0,3.0,2.0,3.0,3.0,3.0,3.0,,N0629,43.7503482219,-79.4375870637,309810.938,4845377.877
-889145,4154041,2017.0,2020.0,1960.0,PRIVATE,19,Beaches-East York,510 DAWES RD,4,62,2020-12-08,69,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,3.0,4.0,4.0,,3.0,3.0,,3.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,3.0,,S1927,43.704347801000004,-79.297293072,321121.48,4840286.411
-889146,4154039,2017.0,2020.0,1953.0,PRIVATE,19,Beaches-East York,516 DAWES RD,4,46,2020-12-08,69,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,,,3.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,3.0,,S1927,43.7048505726,-79.2968176488,321159.922,4840341.406
-889147,4171348,,2020.0,1937.0,PRIVATE,8,Eglinton-Lawrence,3488 YONGE ST,3,22,2020-12-08,67,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,3.0,4.0,,4.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N0825,43.7351428526,-79.405176606,312422.962,4843691.145
-889148,4154658,2017.0,2020.0,1955.0,PRIVATE,8,Eglinton-Lawrence,3253 BATHURST ST,4,22,2020-12-08,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0824,43.723707331499995,-79.43032362529999,310398.345,4842418.708000001
-889149,4153067,2017.0,2020.0,1967.0,PRIVATE,4,Parkdale-High Park,59 RONCESVALLES AVE,4,38,2020-12-08,73,Evaluation needs to be conducted in 2 years,14,3.0,4.0,5.0,3.0,3.0,4.0,,4.0,,,3.0,4.0,3.0,3.0,4.0,4.0,,4.0,,,S0435,43.6407196162,-79.44659739560001,309092.998,4833198.193
-889150,4153789,2017.0,2020.0,1958.0,PRIVATE,15,Don Valley West,75 PETMAN AVE,3,26,2020-12-08,84,Evaluation needs to be conducted in 2 years,16,5.0,3.0,5.0,5.0,5.0,5.0,,3.0,,3.0,4.0,4.0,5.0,4.0,3.0,5.0,,5.0,3.0,,N1530,43.7089290278,-79.3843041849,314108.39,4840781.103
-889151,4155634,2017.0,2020.0,1957.0,TCHC,8,Eglinton-Lawrence,1 OLD MEADOW LANE,4,30,2020-12-08,68,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,2.0,3.0,3.0,,3.0,,,3.0,4.0,5.0,4.0,3.0,3.0,,4.0,3.0,,N0823,43.717314183999996,-79.443949262,309300.705,4841708.546
-889152,4153798,2017.0,2020.0,1928.0,PRIVATE,12,Toronto-St. Paul's,63 ROEHAMPTON AVE,4,56,2020-12-08,84,Evaluation needs to be conducted in 2 years,14,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,,,4.0,5.0,5.0,4.0,4.0,5.0,,4.0,,,S1221,43.708035598,-79.396523762,313123.458,4840681.507
-889153,4152871,2018.0,2020.0,1969.0,PRIVATE,22,Scarborough-Agincourt,3747 SHEPPARD AVE E,4,37,2020-12-08,77,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,3.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,,E2232,43.781268966099994,-79.2952353294,321266.557,4848831.45
-889154,4155635,2017.0,2020.0,1957.0,TCHC,8,Eglinton-Lawrence,1 REPLIN RD,3,31,2020-12-08,74,Evaluation needs to be conducted in 2 years,16,4.0,3.0,5.0,4.0,3.0,4.0,,2.0,,,3.0,4.0,5.0,4.0,3.0,4.0,,4.0,3.0,4.0,N0823,43.719043907,-79.4433371886,309350.165,4841899.794
-889155,4155630,2017.0,2020.0,1957.0,TCHC,8,Eglinton-Lawrence,4 REPLIN RD,4,30,2020-12-08,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,5.0,2.0,2.0,4.0,,4.0,,,3.0,2.0,3.0,3.0,3.0,3.0,,4.0,3.0,,N0823,43.717910323999995,-79.443368577,309354.813,4841773.51
-889156,4153035,2017.0,2020.0,1910.0,SOCIAL HOUSING,4,Parkdale-High Park,1387 QUEEN ST W,4,23,2020-12-08,73,Evaluation needs to be conducted in 2 years,14,4.0,4.0,5.0,3.0,4.0,3.0,,3.0,,,3.0,4.0,4.0,4.0,3.0,3.0,,4.0,,,S0436,43.6404340977,-79.4362276629,309929.667,4833167.036
-889157,4155667,2017.0,2020.0,1971.0,TCHC,2,Etobicoke Centre,49 SCARLETTWOOD CRT,4,14,2020-12-08,72,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,4.0,4.0,,2.0,,2.0,4.0,4.0,5.0,4.0,4.0,2.0,3.0,4.0,3.0,,W0224,43.69372017600001,-79.516153969,303485.161,4839089.472
-889158,4290884,2018.0,2020.0,1960.0,PRIVATE,6,York Centre,5 ROSSEAU RD,3,11,2020-12-08,75,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,,3.0,3.0,3.0,5.0,4.0,4.0,4.0,,3.0,3.0,,N0629,43.741804201099995,-79.4363369566,309912.311,4844428.739
-889159,4154583,2017.0,2020.0,1955.0,PRIVATE,6,York Centre,9 ROSSEAU RD,3,11,2020-12-08,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,,4.0,3.0,3.0,5.0,4.0,4.0,4.0,,3.0,4.0,,N0629,43.7421552614,-79.4365679609,309893.67699999997,4844467.728
-889160,4155872,2017.0,2020.0,1910.0,PRIVATE,13,Toronto Centre,592 CHURCH ST,3,12,2020-12-08,72,Evaluation needs to be conducted in 2 years,13,4.0,3.0,5.0,3.0,,3.0,,4.0,,,3.0,3.0,5.0,3.0,4.0,4.0,,3.0,,,S1322,43.667031521000006,-79.3817873,314317.525,4836127.624
-889161,4155074,2017.0,2020.0,1968.0,PRIVATE,9,Davenport,531 CALEDONIA RD,4,24,2020-12-08,75,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,4.0,3.0,4.0,,3.0,,,3.0,4.0,5.0,4.0,3.0,3.0,,4.0,4.0,,S0921,43.69126949939999,-79.46117367560001,307914.356,4838813.374
-889162,4155391,2017.0,2020.0,1965.0,PRIVATE,2,Etobicoke Centre,336 THE WEST MALL,3,10,2020-12-08,78,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,3.0,,4.0,,4.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,W0233,43.6378421454,-79.5644587873,299583.542,4832879.17
-889163,4156737,2017.0,2020.0,1951.0,PRIVATE,3,Etobicoke-Lakeshore,148 ISLINGTON AVE,4,38,2020-12-08,79,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,3.0,4.0,3.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,4.0,,W0335,43.601468456000006,-79.505848789,304311.906,4828837.276000001
-889164,4156738,2017.0,2020.0,1951.0,PRIVATE,3,Etobicoke-Lakeshore,170 ISLINGTON AVE,4,47,2020-12-08,78,Evaluation needs to be conducted in 2 years,16,4.0,3.0,5.0,3.0,4.0,3.0,,4.0,,3.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0335,43.602358476999996,-79.506187032,304284.602,4828936.156
-889165,4153018,2017.0,2020.0,1960.0,PRIVATE,4,Parkdale-High Park,170 JAMESON AVE,11,86,2020-12-08,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,,S0436,43.638273606800006,-79.4368190607,309882.13,4832926.99
-889166,4152912,2017.0,2020.0,1927.0,PRIVATE,4,Parkdale-High Park,117 RUNNYMEDE RD,4,42,2020-12-08,79,Evaluation needs to be conducted in 2 years,14,4.0,4.0,5.0,4.0,4.0,3.0,,3.0,,,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,,,S0430,43.6507245776,-79.4756999777,306744.649,4834308.671
-889167,4155891,2017.0,2020.0,1958.0,PRIVATE,8,Eglinton-Lawrence,775 LAWRENCE AVE W,3,10,2020-12-08,78,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0827,43.713898627,-79.453259766,308550.68100000004,4841328.638
-889168,4155686,2017.0,2020.0,2003.0,SOCIAL HOUSING,8,Eglinton-Lawrence,651 LAWRENCE AVE W,3,24,2020-12-07,89,Evaluation needs to be conducted in 3 years,17,4.0,4.0,4.0,5.0,5.0,4.0,,4.0,4.0,,5.0,4.0,5.0,5.0,5.0,5.0,,5.0,3.0,5.0,N0827,43.716103619399995,-79.4429013897,309385.499,4841573.16
-889169,4154493,2017.0,2020.0,1967.0,PRIVATE,8,Eglinton-Lawrence,1049 LAWRENCE AVE W,3,20,2020-12-07,84,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,5.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N0826,43.712614926099995,-79.4604691719,307970.05,4841184.777
-889170,4155084,2017.0,2020.0,1957.0,PRIVATE,5,York South-Weston,3 NASHVILLE AVE,4,21,2020-12-07,81,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,4.0,5.0,3.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0536,43.6832687554,-79.4730881792,306954.151,4837924.166
-889171,4153773,2017.0,2020.0,1956.0,PRIVATE,15,Don Valley West,501 MOUNT PLEASANT RD,4,28,2020-12-07,88,Evaluation needs to be conducted in 3 years,16,5.0,3.0,5.0,4.0,5.0,5.0,,4.0,,5.0,4.0,3.0,3.0,5.0,4.0,5.0,,5.0,5.0,,N1534,43.7014503061,-79.3870380708,313889.185,4839949.914
-889172,4152843,2017.0,2020.0,1994.0,SOCIAL HOUSING,24,Scarborough-Guildwood,228 GALLOWAY RD,5,60,2020-12-07,86,Evaluation needs to be conducted in 3 years,19,4.0,4.0,5.0,5.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,E2428,43.767932495,-79.197118281,329169.24600000004,4847374.811000001
-889173,4152802,2017.0,2020.0,1975.0,PRIVATE,24,Scarborough-Guildwood,3434 EGLINTON AVE E,17,214,2020-12-07,80,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,E2433,43.74562160560001,-79.21121677880001,328043.05600000004,4844891.19
-889174,4154187,2017.0,2020.0,1962.0,PRIVATE,15,Don Valley West,15 MALLORY CRES,3,34,2020-12-07,89,Evaluation needs to be conducted in 3 years,18,5.0,3.0,3.0,5.0,5.0,4.0,,3.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,4.0,,N1535,43.6962315888,-79.36899116939999,315344.674,4839372.291999999
-889175,4156391,2017.0,2020.0,1978.0,SOCIAL HOUSING,21,Scarborough Centre,1290 DANFORTH RD,8,179,2020-12-07,89,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,,5.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,5.0,,E2135,43.740755193000005,-79.246090296,325259.725,4844343.732
-889176,4155829,2017.0,2020.0,1940.0,PRIVATE,8,Eglinton-Lawrence,2674 YONGE ST,3,31,2020-12-07,76,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,,,4.0,3.0,5.0,4.0,3.0,3.0,,4.0,,,N0829,43.716818521,-79.40078111300001,312779.193,4841656.826
-889177,4153757,2017.0,2020.0,1957.0,PRIVATE,15,Don Valley West,657 BALLIOL ST,4,29,2020-12-07,72,Evaluation needs to be conducted in 2 years,17,5.0,3.0,3.0,4.0,3.0,4.0,,3.0,,5.0,3.0,3.0,5.0,3.0,3.0,5.0,3.0,3.0,3.0,,N1534,43.701182908,-79.3760801591,314772.44,4839921.468
-889178,4155665,2017.0,2020.0,2006.0,PRIVATE,15,Don Valley West,1425 BAYVIEW AVE,4,14,2020-12-07,98,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,5.0,,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,,5.0,3.0,5.0,N1535,43.7027252983,-79.3737282116,314961.743,4840093.105
-889179,4154661,2017.0,2020.0,1970.0,PRIVATE,8,Eglinton-Lawrence,595 BROOKDALE AVE,7,47,2020-12-07,78,Evaluation needs to be conducted in 2 years,19,5.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,4.0,5.0,5.0,4.0,3.0,4.0,3.0,4.0,3.0,,N0824,43.7242678241,-79.42950883510001,310463.939,4842481.031
-889180,4155191,2017.0,2020.0,1957.0,PRIVATE,5,York South-Weston,8 HECTOR AVE,3,18,2020-12-07,68,Evaluation needs to be conducted in 2 years,15,2.0,3.0,4.0,2.0,2.0,3.0,,5.0,,,2.0,4.0,5.0,3.0,4.0,4.0,,4.0,4.0,,W0535,43.6801785779,-79.4898358831,305603.88899999997,4837580.598
-889181,4152713,2017.0,2020.0,1960.0,PRIVATE,21,Scarborough Centre,879 KENNEDY RD,4,29,2020-12-07,86,Evaluation needs to be conducted in 3 years,18,4.0,4.0,4.0,4.0,5.0,5.0,,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,,E2133,43.73995556,-79.270578917,323263.544,4844247.841
-889182,4168986,2017.0,2020.0,1984.0,SOCIAL HOUSING,1,Etobicoke North,30 HUMBERLINE DR,19,176,2020-12-07,81,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0125,43.7316900072,-79.6148713323,295530.63399999996,4843309.676
-889183,4153755,2017.0,2020.0,1965.0,PRIVATE,15,Don Valley West,345 MERTON ST,10,109,2020-12-07,81,Evaluation needs to be conducted in 2 years,19,5.0,3.0,3.0,5.0,5.0,5.0,5.0,4.0,5.0,3.0,3.0,3.0,5.0,3.0,5.0,5.0,3.0,4.0,3.0,,N1534,43.697986845,-79.38570781,313996.67100000003,4839566.231000001
-889184,4156242,2017.0,2020.0,1985.0,SOCIAL HOUSING,24,Scarborough-Guildwood,4201 KINGSTON RD,3,41,2020-12-07,80,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,5.0,,4.0,,,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,E2432,43.759407247,-79.19610969600001,329252.877,4846512.146000001
-889185,4168988,2017.0,2020.0,1986.0,SOCIAL HOUSING,1,Etobicoke North,20 HUMBERLINE DR,11,104,2020-12-06,80,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,4.0,3.0,4.0,3.0,5.0,,4.0,4.0,5.0,4.0,4.0,4.0,,5.0,3.0,,W0125,43.731736309700004,-79.6140657224,295538.059,4843285.541999999
-889186,4154573,2017.0,2020.0,1952.0,PRIVATE,6,York Centre,400-406 WILSON AVE,3,33,2020-12-05,84,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,5.0,,3.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,5.0,,N0629,43.736271595,-79.44053564,309548.598,4843809.657
-889187,4244530,2017.0,2020.0,1962.0,PRIVATE,16,Don Valley East,35 ST DENNIS DR,10,331,2020-12-05,81,Evaluation needs to be conducted in 2 years,17,5.0,5.0,5.0,3.0,3.0,4.0,4.0,4.0,4.0,,4.0,3.0,5.0,5.0,4.0,4.0,,4.0,3.0,,N1630,43.718686691,-79.329087808,318555.705,4841873.706
-889188,4154572,2017.0,2020.0,1952.0,PRIVATE,6,York Centre,390-398 WILSON AVE,3,40,2020-12-05,76,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,3.0,4.0,,5.0,,2.0,4.0,4.0,5.0,3.0,4.0,3.0,,4.0,3.0,,N0629,43.736611247,-79.439571975,309632.469,4843834.371
-889189,4296586,2018.0,2020.0,1950.0,PRIVATE,12,Toronto-St. Paul's,699 EGLINTON AVE W,4,27,2020-12-04,84,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,3.0,4.0,,4.0,,4.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,5.0,4.0,,S1225,43.701892029,-79.420288428,311187.066,4839991.887
-889190,4296588,2018.0,2020.0,1950.0,PRIVATE,12,Toronto-St. Paul's,701 EGLINTON AVE W,4,32,2020-12-04,84,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,3.0,4.0,,4.0,,4.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,5.0,4.0,,S1225,43.701862989,-79.42056547199999,311172.27,4839988.114
-889191,4153946,2017.0,2020.0,1930.0,PRIVATE,12,Toronto-St. Paul's,779 EGLINTON AVE W,3,17,2020-12-04,80,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,,4.0,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,4.0,,S1225,43.700999573100006,-79.4241109809,310901.18,4839896.436000001
-889192,4153993,2017.0,2020.0,1920.0,PRIVATE,12,Toronto-St. Paul's,137 EGLINTON AVE W,3,18,2020-12-04,70,Evaluation needs to be conducted in 2 years,14,3.0,4.0,5.0,3.0,3.0,3.0,,4.0,,,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,,,S1227,43.705457738199996,-79.4032997946,312577.96,4840393.4860000005
-889193,4153943,2018.0,2020.0,1950.0,PRIVATE,12,Toronto-St. Paul's,697 EGLINTON AVE W,4,33,2020-12-04,82,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,,4.0,4.0,5.0,5.0,4.0,3.0,4.0,5.0,4.0,4.0,,S1225,43.701949088,-79.42003485800001,311209.892,4839986.927
-889194,4155406,2017.0,2020.0,1972.0,PRIVATE,2,Etobicoke Centre,675 MARTIN GROVE RD,11,126,2020-12-04,71,Evaluation needs to be conducted in 2 years,19,4.0,3.0,2.0,4.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,W0221,43.681182543199995,-79.5647387346,299564.82399999996,4837694.119
-889195,4153992,2017.0,2020.0,1928.0,PRIVATE,12,Toronto-St. Paul's,48 MAXWELL AVE,3,29,2020-12-04,79,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,,4.0,4.0,4.0,5.0,3.0,4.0,3.0,,4.0,4.0,,S1227,43.7057591622,-79.4018857933,312691.886,4840427.112
-889196,4153989,2017.0,2020.0,1940.0,PRIVATE,12,Toronto-St. Paul's,63 MAXWELL AVE,3,33,2020-12-04,83,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,4.0,4.0,5.0,5.0,3.0,4.0,4.0,,4.0,4.0,,S1227,43.705877825,-79.4013471201,312735.285,4840440.348
-889197,4153904,2017.0,2020.0,1923.0,PRIVATE,12,Toronto-St. Paul's,320 LONSDALE RD,4,32,2020-12-04,69,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,4.0,4.0,4.0,3.0,,4.0,3.0,,S1231,43.6890609911,-79.4120929663,311871.215,4838571.051
-889198,4153907,2017.0,2020.0,1920.0,PRIVATE,12,Toronto-St. Paul's,321 LONSDALE RD,5,12,2020-12-04,66,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,3.0,4.0,4.0,,4.0,,,3.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,2.0,,S1231,43.6886182692,-79.4117661869,311897.61,4838521.893
-889199,4153944,2017.0,2020.0,1950.0,PRIVATE,12,Toronto-St. Paul's,117 OLD FOREST HILL RD,3,28,2020-12-04,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,,3.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,S1225,43.7013796068,-79.4227406516,311011.589,4839938.762
-889200,4152637,2019.0,2020.0,1954.0,PRIVATE,21,Scarborough Centre,1601 VICTORIA PARK AVE,4,54,2020-12-04,75,Evaluation needs to be conducted in 2 years,17,3.0,4.0,4.0,3.0,4.0,3.0,,4.0,,3.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,E2131,43.729766759300006,-79.3043160261,320549.063,4843108.053
-889201,4152638,2019.0,2020.0,1954.0,PRIVATE,21,Scarborough Centre,1607 VICTORIA PARK AVE,4,54,2020-12-04,71,Evaluation needs to be conducted in 2 years,17,3.0,4.0,4.0,3.0,3.0,3.0,,4.0,,3.0,3.0,3.0,5.0,3.0,4.0,3.0,4.0,4.0,4.0,,E2131,43.7303493806,-79.3045356684,320531.217,4843172.7360000005
-889202,4152643,2017.0,2020.0,1954.0,PRIVATE,21,Scarborough Centre,1689 VICTORIA PARK AVE,4,54,2020-12-04,76,Evaluation needs to be conducted in 2 years,17,3.0,4.0,4.0,4.0,3.0,3.0,,4.0,,4.0,4.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,,E2131,43.7354870834,-79.3066470427,320359.803,4843743.106000001
-889203,4154574,2017.0,2020.0,1950.0,PRIVATE,6,York Centre,408-414 WILSON AVE,3,32,2020-12-04,73,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,,3.0,3.0,4.0,5.0,2.0,4.0,3.0,,4.0,3.0,,N0629,43.736205215,-79.44139433,309485.652,4843791.438999999
-889204,4153947,2017.0,2020.0,1967.0,PRIVATE,12,Toronto-St. Paul's,130 OLD FOREST HILL RD,6,42,2020-12-04,93,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,5.0,4.0,,5.0,4.0,4.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,,S1225,43.7011738617,-79.42345147479999,310954.318,4839915.848999999
-889205,4155402,2017.0,2020.0,1970.0,PRIVATE,2,Etobicoke Centre,1 RABBIT LANE,7,33,2020-12-04,72,Evaluation needs to be conducted in 2 years,17,4.0,3.0,5.0,3.0,4.0,4.0,2.0,3.0,4.0,,3.0,3.0,5.0,4.0,3.0,4.0,,4.0,3.0,,W0226,43.658401374899995,-79.5675840655,299333.331,4835163.3889999995
-889206,4155397,2018.0,2020.0,1952.0,PRIVATE,2,Etobicoke Centre,440 RATHBURN RD,7,80,2020-12-04,76,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,2.0,4.0,2.0,,4.0,4.0,2.0,3.0,4.0,5.0,4.0,4.0,3.0,5.0,4.0,4.0,,W0225,43.6542760057,-79.57140941899999,299024.393,4834705.336
-889207,4479579,2019.0,2020.0,2003.0,SOCIAL HOUSING,19,Beaches-East York,419 COXWELL AVE,3,44,2020-12-04,73,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,,4.0,4.0,4.0,3.0,4.0,4.0,,3.0,3.0,4.0,S1934,43.67724621399999,-79.32051294899999,319256.538,4837271.2469999995
-889208,4153994,2017.0,2020.0,1935.0,PRIVATE,12,Toronto-St. Paul's,190 COLIN AVE,6,40,2020-12-04,74,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,3.0,4.0,3.0,,4.0,4.0,,3.0,4.0,5.0,3.0,3.0,4.0,,4.0,3.0,,S1227,43.7055531895,-79.4028556914,312613.74199999997,4840404.134
-889209,4221285,2017.0,2020.0,1970.0,PRIVATE,19,Beaches-East York,390 DAWES RD,14,246,2020-12-04,75,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,2.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1927,43.7002035696,-79.2982003313,321049.73,4839824.865
-889210,4153988,2017.0,2020.0,1930.0,PRIVATE,12,Toronto-St. Paul's,2094 YONGE ST,3,10,2020-12-04,72,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,3.0,4.0,3.0,,4.0,,3.0,3.0,4.0,4.0,3.0,3.0,4.0,,4.0,,,S1227,43.702336489,-79.3977985122,313021.757,4840047.252
-889211,4475546,2019.0,2020.0,2016.0,PRIVATE,19,Beaches-East York,763 WOODBINE AVE,7,64,2020-12-04,83,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,S1935,43.680776029899995,-79.3103915859,320072.003,4837664.262
-889212,4269412,2017.0,2020.0,1960.0,PRIVATE,19,Beaches-East York,2903 ST CLAIR AVE E,3,12,2020-12-04,69,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,4.0,3.0,4.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,4.0,,3.0,4.0,,S1927,43.7077283573,-79.3012700088,320800.32399999996,4840660.273
-889213,4153889,2017.0,2020.0,1970.0,PRIVATE,12,Toronto-St. Paul's,250 ST CLAIR AVE W,4,45,2020-12-04,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1231,43.6857216141,-79.4075167985,312240.538,4838200.444
-889214,4153770,2017.0,2020.0,1957.0,PRIVATE,12,Toronto-St. Paul's,44 BALLIOL ST,4,30,2020-12-04,68,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,3.0,3.0,4.0,,3.0,3.0,,3.0,3.0,4.0,4.0,3.0,3.0,,3.0,4.0,,S1233,43.6979650851,-79.3950974704,313240.055,4839561.859
-889215,4154663,2017.0,2020.0,1960.0,PRIVATE,8,Eglinton-Lawrence,3575 BATHURST ST,7,61,2020-12-04,80,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,4.0,4.0,4.0,3.0,3.0,4.0,,3.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,,N0824,43.731811765500005,-79.4323417364,310235.001,4843318.937
-889216,4154600,2017.0,2020.0,1960.0,PRIVATE,6,York Centre,3908 BATHURST ST,4,29,2020-12-04,76,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,3.0,4.0,,5.0,,3.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,4.0,,N0629,43.744444822,-79.4363242006,309913.126,4844722.107
-889217,4154654,2017.0,2020.0,1960.0,PRIVATE,8,Eglinton-Lawrence,2895 BATHURST ST,5,60,2020-12-04,76,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,4.0,,4.0,3.0,5.0,3.0,4.0,4.0,4.0,4.0,3.0,,N0828,43.7147716704,-79.42837310729999,310556.341,4841426.127
-889218,4154657,2017.0,2020.0,1970.0,PRIVATE,8,Eglinton-Lawrence,3171 BATHURST ST,6,47,2020-12-04,81,Evaluation needs to be conducted in 2 years,19,5.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,4.0,5.0,5.0,2.0,4.0,4.0,4.0,4.0,2.0,,N0824,43.7220957338,-79.430056845,310419.984,4842239.683
-889219,4154601,2017.0,2020.0,1955.0,PRIVATE,6,York Centre,4114 BATHURST ST,4,17,2020-12-04,80,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,,5.0,,3.0,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,N0629,43.74614789100001,-79.4365743,309892.583,4844912.259
-889220,4154662,2017.0,2020.0,1965.0,PRIVATE,8,Eglinton-Lawrence,3311 BATHURST ST,9,102,2020-12-04,79,Evaluation needs to be conducted in 2 years,18,5.0,4.0,4.0,3.0,4.0,4.0,2.0,2.0,3.0,,4.0,5.0,5.0,5.0,4.0,4.0,5.0,5.0,3.0,,N0824,43.7246901673,-79.43042978310001,310389.702,4842527.8889999995
-889221,4154552,2017.0,2020.0,1958.0,PRIVATE,8,Eglinton-Lawrence,3388 BATHURST ST,4,34,2020-12-04,73,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,3.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,,N0823,43.726280198400005,-79.4318793095,310272.772,4842704.437
-889222,4152636,2019.0,2020.0,1954.0,PRIVATE,21,Scarborough Centre,1589 VICTORIA PARK AVE,4,34,2020-12-03,73,Evaluation needs to be conducted in 2 years,17,3.0,4.0,4.0,3.0,3.0,3.0,,4.0,,3.0,3.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2131,43.7290082864,-79.30402881319999,320572.398,4843023.848
-889223,4154420,2017.0,2020.0,1959.0,PRIVATE,6,York Centre,2868 KEELE ST,3,30,2020-12-03,74,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,3.0,4.0,,4.0,3.0,3.0,3.0,5.0,5.0,3.0,4.0,3.0,4.0,4.0,3.0,,N0627,43.73251345520001,-79.4840467169,306069.693,4843394.784
-889224,4156792,2017.0,2020.0,1960.0,PRIVATE,16,Don Valley East,878 LAWRENCE AVE E,3,11,2020-12-03,79,Evaluation needs to be conducted in 2 years,16,4.0,5.0,5.0,4.0,3.0,4.0,,4.0,,,4.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,N1623,43.736369132,-79.349349482,316919.531,4843834.926
-889225,4154548,2017.0,2020.0,1960.0,PRIVATE,8,Eglinton-Lawrence,33 WASDALE CRES,3,11,2020-12-03,71,Evaluation needs to be conducted in 2 years,17,3.0,4.0,4.0,4.0,3.0,4.0,,3.0,,3.0,4.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,N0823,43.730813472200005,-79.4346272545,310050.972,4843207.881
-889226,4154546,2017.0,2020.0,1960.0,PRIVATE,8,Eglinton-Lawrence,37 WASDALE CRES,3,11,2020-12-03,75,Evaluation needs to be conducted in 2 years,16,4.0,5.0,5.0,3.0,3.0,3.0,,3.0,,,3.0,4.0,5.0,4.0,4.0,3.0,3.0,4.0,4.0,,N0823,43.730660445299996,-79.4351977557,310005.026,4843190.842
-889227,4154886,2017.0,2020.0,1964.0,PRIVATE,16,Don Valley East,1840 VICTORIA PARK AVE,12,204,2020-12-03,79,Evaluation needs to be conducted in 2 years,18,4.0,5.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,3.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,N1628,43.7404974664,-79.3102350058,320069.51300000004,4844299.041
-889228,4154885,2017.0,2020.0,1964.0,PRIVATE,16,Don Valley East,1850 VICTORIA PARK AVE,15,240,2020-12-03,80,Evaluation needs to be conducted in 2 years,18,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,N1628,43.740954682600005,-79.3112631324,319986.585,4844349.647
-889229,4255506,2017.0,2020.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,1 NEWHOLM RD,4,27,2020-12-03,81,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,3.0,,W0329,43.63650442,-79.48774356359999,305773.28,4832728.695
-889230,4458811,,2020.0,1951.0,PRIVATE,19,Beaches-East York,1143 O'CONNOR DR,3,12,2020-12-03,71,Evaluation needs to be conducted in 2 years,14,3.0,3.0,4.0,4.0,3.0,3.0,,4.0,,,3.0,4.0,4.0,3.0,4.0,4.0,,4.0,,,S1924,43.711582308400004,-79.307772958,320275.257,4841087.222
-889231,4457107,2019.0,2020.0,1953.0,PRIVATE,19,Beaches-East York,1153 O'CONNOR DR,3,11,2020-12-03,79,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,3.0,,4.0,,4.0,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S1924,43.7117264202,-79.3076717608,320283.375,4841103.25
-889232,4457100,2019.0,2020.0,1953.0,PRIVATE,19,Beaches-East York,1157 O'CONNOR DR,3,11,2020-12-03,80,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,3.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S1924,43.7118457801,-79.3075659646,320291.87,4841116.529
-889233,4153942,2017.0,2020.0,1954.0,PRIVATE,12,Toronto-St. Paul's,45 GARDINER RD,6,41,2020-12-03,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,3.0,4.0,,4.0,5.0,4.0,3.0,4.0,5.0,4.0,4.0,3.0,5.0,4.0,3.0,,S1225,43.702033574,-79.4195154938,311271.467,4840011.666999999
-889234,4154198,2017.0,2020.0,1945.0,PRIVATE,15,Don Valley West,958 EGLINTON AVE E,3,24,2020-12-03,73,Evaluation needs to be conducted in 2 years,14,4.0,4.0,3.0,3.0,4.0,4.0,,3.0,,,2.0,3.0,5.0,4.0,4.0,4.0,,4.0,,,N1529,43.714859025,-79.36014009,316054.311,4841443.795
-889235,4155740,2017.0,2020.0,1967.0,PRIVATE,6,York Centre,4222 BATHURST ST,8,77,2020-12-03,84,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,5.0,3.0,4.0,4.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,,N0629,43.7495949596,-79.4376915029,309802.588,4845294.188
-889236,4154608,2017.0,2020.0,1989.0,SOCIAL HOUSING,6,York Centre,4300 BATHURST ST,11,164,2020-12-03,89,Evaluation needs to be conducted in 3 years,19,4.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,4.0,,4.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,3.0,5.0,N0629,43.752890988400004,-79.4382283415,309759.09,4845660.325
-889237,4154610,2017.0,2020.0,1960.0,PRIVATE,6,York Centre,4340 BATHURST ST,6,50,2020-12-03,87,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,3.0,4.0,,4.0,4.0,4.0,5.0,4.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,,N0629,43.753680142,-79.438438017,309741.877,4845748.941000001
-889238,4156612,2017.0,2020.0,1956.0,PRIVATE,16,Don Valley East,5 WINGREEN CRT,3,22,2020-12-03,87,Evaluation needs to be conducted in 3 years,15,4.0,5.0,4.0,4.0,4.0,4.0,,5.0,,,4.0,4.0,5.0,5.0,4.0,4.0,,4.0,5.0,,N1624,43.7387840807,-79.3424492566,,
-889239,4153467,2017.0,2020.0,1971.0,PRIVATE,11,University-Rosedale,666 SPADINA AVE,24,334,2020-12-03,90,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,,5.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,,S1134,43.663994341999995,-79.40305137600001,312602.99199999997,4835787.955
-889240,4156740,2017.0,2020.0,1967.0,PRIVATE,16,Don Valley East,10 ST DENNIS DR,9,325,2020-12-03,76,Evaluation needs to be conducted in 2 years,18,3.0,4.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N1630,43.7172141544,-79.3360536407,317994.98600000003,4841707.994
-889241,4155367,2017.0,2020.0,1964.0,PRIVATE,2,Etobicoke Centre,301 DIXON RD,16,225,2020-12-03,67,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,2.0,4.0,3.0,2.0,4.0,3.0,2.0,3.0,5.0,3.0,4.0,2.0,4.0,4.0,3.0,,W0222,43.694910741,-79.5525691249,300546.94399999996,4839218.677
-889242,4155364,2017.0,2020.0,1969.0,PRIVATE,2,Etobicoke Centre,345 DIXON RD,10,95,2020-12-03,72,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,2.0,4.0,4.0,3.0,3.0,4.0,,2.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,W0222,43.69438978,-79.556392249,300238.75800000003,4839160.989
-889243,4152627,2017.0,2020.0,1960.0,PRIVATE,21,Scarborough Centre,12 CRAIGTON DR,4,32,2020-12-03,71,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,,3.0,3.0,3.0,5.0,4.0,3.0,4.0,5.0,4.0,3.0,,E2131,43.7275639338,-79.3019458646,320740.584,4842863.786
-889244,4152623,2017.0,2020.0,1958.0,PRIVATE,21,Scarborough Centre,15 CRAIGTON DR,4,27,2020-12-03,81,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,4.0,5.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,,E2131,43.727070860699996,-79.30145728810001,320780.078,4842809.1
-889245,4153934,2017.0,2020.0,1955.0,PRIVATE,12,Toronto-St. Paul's,130 ORIOLE PKWY,4,39,2020-12-03,76,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,3.0,3.0,,3.0,,4.0,4.0,4.0,5.0,4.0,4.0,3.0,3.0,4.0,4.0,,S1226,43.6964637317,-79.4032380661,312584.097,4839394.2639999995
-889246,4153938,2019.0,2020.0,1955.0,PRIVATE,12,Toronto-St. Paul's,240 ORIOLE PKWY,9,44,2020-12-03,87,Evaluation needs to be conducted in 3 years,20,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,5.0,5.0,S1226,43.697013865,-79.4032770166,312580.886,4839455.38
-889247,4154556,2017.0,2020.0,1960.0,PRIVATE,8,Eglinton-Lawrence,44 SARANAC BLVD,3,36,2020-12-03,87,Evaluation needs to be conducted in 3 years,15,4.0,5.0,5.0,4.0,4.0,4.0,,4.0,,,4.0,5.0,5.0,5.0,4.0,4.0,,4.0,4.0,,N0823,43.72316328310001,-79.4313421885,310316.328,4842358.197
-889248,4155227,2017.0,2020.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,301 PARK LAWN RD,4,25,2020-12-03,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,4.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,W0329,43.6350512379,-79.49246019479999,305392.658,4832567.215
-889249,4153941,2017.0,2020.0,1937.0,PRIVATE,12,Toronto-St. Paul's,540 RUSSELL HILL RD,5,32,2020-12-03,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,4.0,4.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,S1226,43.7028383782,-79.4156643118,311581.779,4840101.39
-889250,4153935,2017.0,2020.0,1960.0,PRIVATE,12,Toronto-St. Paul's,120 ORIOLE PKWY,5,34,2020-12-03,70,Evaluation needs to be conducted in 2 years,16,3.0,5.0,5.0,3.0,3.0,3.0,,4.0,3.0,,3.0,3.0,5.0,4.0,3.0,3.0,,3.0,3.0,,S1226,43.6961891471,-79.4030049168,312602.92600000004,4839363.78
-889251,4153940,2017.0,2020.0,1954.0,PRIVATE,12,Toronto-St. Paul's,555 RUSSELL HILL RD,5,32,2020-12-03,82,Evaluation needs to be conducted in 2 years,18,4.0,5.0,5.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,5.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,,S1226,43.7029404045,-79.4151517899,311623.075,4840112.767
-889252,4155410,2017.0,2020.0,1962.0,PRIVATE,2,Etobicoke Centre,416 THE WESTWAY,9,103,2020-12-03,71,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,2.0,4.0,3.0,2.0,4.0,4.0,2.0,4.0,5.0,3.0,4.0,3.0,4.0,4.0,4.0,,W0221,43.684052754700005,-79.565694704,299487.999,4838013.037
-889253,4266442,2017.0,2020.0,1927.0,PRIVATE,19,Beaches-East York,125 KENILWORTH AVE,3,20,2020-12-02,76,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,4.0,4.0,3.0,,3.0,,,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,,,S1938,43.6703285166,-79.302100905,320743.2,4836505.1
-889254,4155189,2017.0,2020.0,1954.0,PRIVATE,5,York South-Weston,5 A JASPER AVE,3,10,2020-12-02,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0535,43.6833549123,-79.4823636932,306206.297,4837933.562
-889255,4155271,2017.0,2020.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,2 HILL HEIGHTS RD,4,30,2020-12-02,82,Evaluation needs to be conducted in 2 years,17,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,W0327,43.638792844799994,-79.4940708914,305262.703,4832982.879
-889256,4155256,2017.0,2020.0,1962.0,PRIVATE,3,Etobicoke-Lakeshore,3 HILL HEIGHTS RD,4,38,2020-12-02,76,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,4.0,3.0,3.0,,4.0,,2.0,3.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,W0327,43.638204565900004,-79.49316808350001,305335.532,4832917.528
-889257,4155270,2017.0,2020.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,4 HILL HEIGHTS RD,4,33,2020-12-02,76,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,3.0,3.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,W0327,43.6389180008,-79.4935703818,305303.092,4832996.786
-889258,4155424,2017.0,2020.0,1984.0,TCHC,1,Etobicoke North,2765 ISLINGTON AVE,14,237,2020-12-02,68,Evaluation needs to be conducted in 2 years,17,3.0,4.0,4.0,2.0,4.0,3.0,3.0,3.0,4.0,,2.0,4.0,5.0,3.0,3.0,3.0,3.0,5.0,,,W0126,43.7435749087,-79.5669913807,299388.901,4844625.794
-889259,4155659,2017.0,2020.0,1967.0,TCHC,1,Etobicoke North,75 TANDRIDGE CRES,10,221,2020-12-02,69,Evaluation needs to be conducted in 2 years,17,3.0,4.0,4.0,2.0,3.0,3.0,,2.0,4.0,,4.0,4.0,5.0,3.0,3.0,3.0,3.0,5.0,4.0,,W0131,43.728881268,-79.54672209600001,301020.19,4842993.242
-889260,4153896,2017.0,2020.0,1970.0,PRIVATE,12,Toronto-St. Paul's,80 MONTCLAIR AVE,6,60,2020-12-02,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,3.0,3.0,4.0,5.0,3.0,5.0,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,5.0,,S1230,43.687630803000005,-79.414527721,311674.80199999997,4838412.896000001
-889261,4154547,2017.0,2020.0,1955.0,PRIVATE,8,Eglinton-Lawrence,35 WASDALE CRES,3,10,2020-12-02,68,Evaluation needs to be conducted in 2 years,16,3.0,4.0,3.0,3.0,4.0,4.0,,3.0,,,3.0,4.0,2.0,3.0,4.0,3.0,4.0,4.0,3.0,,N0823,43.730722623599995,-79.434896794,310029.266,4843197.77
-889262,4154545,2017.0,2020.0,1960.0,PRIVATE,8,Eglinton-Lawrence,41 WASDALE CRES,3,11,2020-12-02,69,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,4.0,4.0,4.0,,3.0,,3.0,3.0,3.0,3.0,4.0,4.0,4.0,3.0,4.0,3.0,,N0823,43.7305618491,-79.4356927596,309965.157,4843179.855
-889263,4153900,2017.0,2020.0,1957.0,PRIVATE,12,Toronto-St. Paul's,340 LONSDALE RD,6,36,2020-12-02,77,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,3.0,3.0,,4.0,5.0,4.0,4.0,3.0,5.0,3.0,3.0,4.0,4.0,4.0,3.0,,S1230,43.688729507299996,-79.41361447979999,311748.58,4838534.089
-889264,4155243,2017.0,2020.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,12 KINSDALE BLVD,4,16,2020-12-02,84,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,,W0329,43.63569676229999,-79.4921362887,305418.785,4832638.931
-889265,4265578,2017.0,2020.0,1940.0,SOCIAL HOUSING,19,Beaches-East York,26 NORWOOD RD,3,12,2020-12-02,66,Evaluation needs to be conducted in 2 years,14,2.0,3.0,3.0,4.0,3.0,4.0,,4.0,,,3.0,4.0,2.0,3.0,3.0,4.0,,4.0,,,S1935,43.6831736405,-79.3030579348,320662.652,4837931.992
-889266,4155079,2017.0,2020.0,1950.0,PRIVATE,5,York South-Weston,2507 EGLINTON AVE W,4,28,2020-12-02,71,Evaluation needs to be conducted in 2 years,17,4.0,3.0,5.0,3.0,3.0,3.0,,4.0,,3.0,3.0,4.0,4.0,3.0,3.0,3.0,4.0,4.0,4.0,,W0537,43.6910254603,-79.4700324618,307200.235,4838785.964
-889267,4156721,2017.0,2020.0,1950.0,PRIVATE,5,York South-Weston,2515 EGLINTON AVE W,4,34,2020-12-02,68,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,,3.0,4.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,4.0,,W0537,43.69095169,-79.470613783,307153.113,4838778.708000001
-889268,4155528,2019.0,2020.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,20 FOURTEENTH ST,3,12,2020-12-02,77,Evaluation needs to be conducted in 2 years,14,3.0,4.0,5.0,3.0,,4.0,,3.0,,,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0335,43.600000403100005,-79.5135618333,303689.494,4828673.281
-889269,4154195,2017.0,2020.0,1944.0,PRIVATE,15,Don Valley West,960 EGLINTON AVE E,3,16,2020-12-02,77,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,3.0,4.0,4.0,,4.0,,,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,N1529,43.71515813,-79.359256459,316125.459,4841477.143
-889270,4153805,2017.0,2020.0,1930.0,PRIVATE,12,Toronto-St. Paul's,196 EGLINTON AVE E,4,25,2020-12-02,70,Evaluation needs to be conducted in 2 years,14,3.0,4.0,5.0,3.0,2.0,3.0,,4.0,,,3.0,3.0,5.0,3.0,4.0,4.0,,3.0,,,S1221,43.708345686099996,-79.3923007973,313466.197,4840711.342
-889271,4243768,2017.0,2020.0,1960.0,PRIVATE,19,Beaches-East York,156 BARRINGTON AVE,3,12,2020-12-02,71,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,3.0,4.0,,4.0,,,3.0,4.0,4.0,4.0,3.0,4.0,,4.0,3.0,,S1930,43.693721495,-79.30324878399999,320644.24199999997,4839104.731000001
-889272,4152615,2017.0,2020.0,1962.0,PRIVATE,20,Scarborough Southwest,534 BIRCHMOUNT RD,4,34,2020-12-02,74,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,4.0,3.0,4.0,,4.0,4.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,,E2029,43.710331071700004,-79.2701499955,323307.445,4840955.829
-889273,4152614,2017.0,2020.0,1960.0,PRIVATE,20,Scarborough Southwest,536 BIRCHMOUNT RD,3,28,2020-12-02,76,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,,,4.0,4.0,5.0,3.0,3.0,3.0,5.0,3.0,4.0,,E2029,43.710576896899994,-79.2702122358,323302.354,4840983.125
-889274,4152612,2017.0,2020.0,1974.0,PRIVATE,20,Scarborough Southwest,552 BIRCHMOUNT RD,7,61,2020-12-02,78,Evaluation needs to be conducted in 2 years,18,4.0,5.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,,3.0,3.0,5.0,5.0,3.0,4.0,5.0,4.0,3.0,,E2029,43.7117373497,-79.27084693229999,323250.849,4841111.907
-889275,4155324,2017.0,2020.0,1959.0,PRIVATE,2,Etobicoke Centre,2 BEXHILL CRT,4,14,2020-12-02,80,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,3.0,3.0,,3.0,,4.0,3.0,5.0,5.0,4.0,4.0,5.0,,4.0,,,W0229,43.6630974125,-79.5207637841,303109.67699999997,4835683.233
-889276,4155325,2017.0,2020.0,1959.0,PRIVATE,2,Etobicoke Centre,3 BEXHILL CRT,4,14,2020-12-02,79,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,3.0,3.0,,3.0,,3.0,4.0,5.0,5.0,4.0,4.0,5.0,,4.0,4.0,,W0229,43.662922178,-79.521001935,303090.201,4835664.723999999
-889277,4156164,2017.0,2020.0,1952.0,PRIVATE,2,Etobicoke Centre,4 BEXHILL CRT,4,13,2020-12-02,80,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,3.0,,3.0,,4.0,4.0,5.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0229,43.6627117041,-79.5212630607,303069.399,4835640.393999999
-889278,4156370,2017.0,2020.0,1952.0,PRIVATE,2,Etobicoke Centre,5 BEXHILL CRT,4,13,2020-12-02,79,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,4.0,3.0,,3.0,,3.0,4.0,5.0,5.0,4.0,4.0,5.0,,4.0,4.0,,W0229,43.6623890057,-79.52130693779999,303065.849,4835604.545
-889279,4281915,2017.0,2020.0,1952.0,PRIVATE,2,Etobicoke Centre,6 BEXHILL CRT,4,13,2020-12-02,80,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,2.0,,3.0,,4.0,4.0,5.0,5.0,4.0,4.0,5.0,,4.0,4.0,,W0229,43.6620535343,-79.5213419996,303063.01,4835567.277
-889280,4281929,2017.0,2020.0,1952.0,PRIVATE,2,Etobicoke Centre,7 BEXHILL CRT,4,13,2020-12-02,81,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,2.0,,3.0,,5.0,4.0,5.0,5.0,4.0,4.0,5.0,,4.0,4.0,,W0229,43.6617595882,-79.5213286681,303064.075,4835534.621
-889281,4281930,2017.0,2020.0,1952.0,PRIVATE,2,Etobicoke Centre,8 BEXHILL CRT,4,13,2020-12-02,80,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,2.0,,3.0,,4.0,4.0,5.0,5.0,4.0,4.0,5.0,,4.0,4.0,,W0229,43.661708566099996,-79.520857721,303102.053,4835528.942
-889282,4281935,2017.0,2020.0,1952.0,PRIVATE,2,Etobicoke Centre,9 BEXHILL CRT,4,13,2020-12-02,79,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,3.0,2.0,,3.0,,4.0,4.0,5.0,5.0,4.0,4.0,5.0,,4.0,4.0,,W0229,43.6619737906,-79.5206905766,303115.541,4835558.403
-889283,4156098,2017.0,2020.0,1952.0,PRIVATE,2,Etobicoke Centre,10 BEXHILL CRT,4,13,2020-12-02,79,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,4.0,2.0,,3.0,,4.0,4.0,5.0,5.0,4.0,4.0,5.0,,4.0,4.0,,W0229,43.6622198253,-79.5205498417,303126.899,4835585.733
-889284,4155923,2017.0,2020.0,1952.0,PRIVATE,2,Etobicoke Centre,11 BEXHILL CRT,4,15,2020-12-02,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,2.0,,3.0,,2.0,4.0,5.0,5.0,4.0,4.0,5.0,,4.0,4.0,,W0229,43.662318794799994,-79.5209151841,303097.439,4835596.7360000005
-889285,4156099,2017.0,2020.0,1952.0,PRIVATE,2,Etobicoke Centre,12 BEXHILL CRT,4,14,2020-12-02,79,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,3.0,,3.0,,4.0,4.0,5.0,5.0,4.0,4.0,3.0,,4.0,4.0,,W0229,43.6624690571,-79.5204003078,303138.967,4835613.4180000005
-889286,4155924,2017.0,2020.0,1952.0,PRIVATE,2,Etobicoke Centre,14 BEXHILL CRT,4,14,2020-12-02,80,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,3.0,,3.0,,3.0,4.0,5.0,5.0,4.0,4.0,5.0,,4.0,4.0,,W0229,43.6627215022,-79.52019357260001,303155.649,4835641.459
-889287,4154554,2017.0,2020.0,1960.0,PRIVATE,8,Eglinton-Lawrence,3240 BATHURST ST,3,28,2020-12-02,77,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,,,4.0,3.0,5.0,4.0,4.0,3.0,,4.0,4.0,,N0823,43.7238042937,-79.4313359616,310316.773,4842429.412
-889288,4153899,2017.0,2020.0,1935.0,PRIVATE,12,Toronto-St. Paul's,448 SPADINA RD,4,32,2020-12-02,79,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,3.0,,S1230,43.689301533599995,-79.4133235428,311771.976,4838597.666999999
-889289,4155414,2017.0,2020.0,1965.0,PRIVATE,1,Etobicoke North,55 BRIDESBURG DR,5,61,2020-12-02,84,Evaluation needs to be conducted in 2 years,17,5.0,5.0,5.0,4.0,4.0,3.0,,3.0,4.0,,5.0,5.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,W0133,43.694473525,-79.563528031,299669.11199999996,4839180.326
-889290,4152831,2017.0,2020.0,1967.0,PRIVATE,24,Scarborough-Guildwood,15 ORTON PARK RD,14,147,2020-12-02,82,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,E2427,43.765211236400006,-79.2054482242,328499.94800000003,4847069.129
-889291,4153800,2017.0,2020.0,1973.0,PRIVATE,12,Toronto-St. Paul's,101 ROEHAMPTON AVE,20,129,2020-12-02,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,3.0,5.0,3.0,4.0,4.0,4.0,3.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,,,S1221,43.70836176,-79.395388172,313214.933,4840717.855
-889292,4154539,2018.0,2020.0,1960.0,PRIVATE,8,Eglinton-Lawrence,102 RAJAH ST,3,12,2020-12-02,79,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,3.0,4.0,,3.0,,,3.0,4.0,5.0,4.0,4.0,3.0,5.0,4.0,4.0,,N0823,43.730483195,-79.438671101,309724.963,4843171.886
-889293,4154538,2017.0,2020.0,1967.0,PRIVATE,8,Eglinton-Lawrence,104 RAJAH ST,3,11,2020-12-02,85,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,3.0,,3.0,,4.0,5.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,,N0823,43.730670188000005,-79.438737082,309719.632,4843192.656
-889294,4154537,2017.0,2020.0,1957.0,PRIVATE,8,Eglinton-Lawrence,108 RAJAH ST,3,12,2020-12-02,75,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,3.0,3.0,,3.0,,,3.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,4.0,,N0823,43.731024096999995,-79.43881577100001,309713.26399999997,4843231.969
-889295,4154536,2017.0,2020.0,1957.0,PRIVATE,8,Eglinton-Lawrence,110 RAJAH ST,3,12,2020-12-02,77,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,,,3.0,4.0,5.0,3.0,4.0,4.0,,4.0,3.0,,N0823,43.73125641399999,-79.438819074,309712.979,4843257.778
-889296,4154535,2017.0,2020.0,1957.0,PRIVATE,8,Eglinton-Lawrence,112 RAJAH ST,3,12,2020-12-02,75,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,,,3.0,4.0,5.0,3.0,4.0,3.0,3.0,4.0,3.0,,N0823,43.731503933,-79.438923714,309704.529,4843285.27
-889297,4154557,2017.0,2020.0,1960.0,PRIVATE,8,Eglinton-Lawrence,42 SARANAC BLVD,3,28,2020-12-02,87,Evaluation needs to be conducted in 3 years,15,4.0,5.0,5.0,4.0,4.0,4.0,,4.0,,,4.0,5.0,5.0,5.0,4.0,4.0,,4.0,4.0,,N0823,43.7232330003,-79.4317060695,310287.00399999996,4842365.9180000005
-889298,4154555,2017.0,2020.0,1960.0,PRIVATE,8,Eglinton-Lawrence,46 SARANAC BLVD,3,36,2020-12-02,81,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,3.0,5.0,5.0,4.0,4.0,,4.0,4.0,,N0823,43.723413773000004,-79.431088371,310336.756,4842386.0430000005
-889299,4152599,2017.0,2020.0,1972.0,PRIVATE,20,Scarborough Southwest,263 PHARMACY AVE,21,329,2020-12-02,95,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,,E2028,43.6998540886,-79.2849399311,322118.62,4839788.691000001
-889300,4153936,2019.0,2020.0,1938.0,PRIVATE,12,Toronto-St. Paul's,110 ORIOLE PKWY,4,33,2020-12-02,81,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,4.0,4.0,5.0,5.0,4.0,4.0,3.0,,4.0,3.0,,S1226,43.6959928836,-79.4029240111,312609.473,4839341.983
-889301,4153933,2017.0,2020.0,1959.0,PRIVATE,12,Toronto-St. Paul's,111 ORIOLE PKWY,3,29,2020-12-02,76,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,4.0,3.0,5.0,3.0,4.0,2.0,4.0,4.0,3.0,,S1226,43.6967810359,-79.4024723932,312645.774,4839429.589
-889302,4155192,2017.0,2020.0,1960.0,PRIVATE,5,York South-Weston,31 ROCKCLIFFE BLVD,3,39,2020-12-02,79,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,4.0,4.0,4.0,5.0,3.0,3.0,3.0,,4.0,4.0,,W0535,43.681298308500004,-79.49092785159999,305515.835,4837704.985
-889303,4156379,2017.0,2020.0,1940.0,PRIVATE,20,Scarborough Southwest,1449 KINGSTON RD,3,14,2020-12-01,55,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,2.0,2.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,2.0,2.0,,3.0,3.0,,E2034,43.687794468,-79.270325262,323298.75800000003,4838460.592
-889304,4155806,2017.0,2020.0,1950.0,PRIVATE,20,Scarborough Southwest,1641 KINGSTON RD,3,11,2020-12-01,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,2.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,4.0,,3.0,3.0,,E2034,43.690864521,-79.265477585,323718.011,4838812.556
-889305,4156385,2017.0,2020.0,1940.0,PRIVATE,20,Scarborough Southwest,1481 KINGSTON RD,3,15,2020-12-01,53,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,2.0,2.0,3.0,,3.0,,,2.0,2.0,5.0,3.0,2.0,2.0,,3.0,3.0,,E2034,43.688423918000005,-79.269500963,323393.784,4838549.187
-889306,4234487,2017.0,2020.0,1970.0,PRIVATE,2,Etobicoke Centre,300 THE KINGSWAY,4,12,2020-12-01,83,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,,,4.0,5.0,5.0,4.0,4.0,4.0,,5.0,4.0,,W0229,43.664006468800004,-79.5223413659,302982.48699999996,4835784.26
-889307,4153733,2017.0,2020.0,1950.0,PRIVATE,11,University-Rosedale,464 SUMMERHILL AVE,3,19,2020-12-01,83,Evaluation needs to be conducted in 2 years,15,4.0,3.0,5.0,4.0,5.0,4.0,,5.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,4.0,,S1130,43.686586172,-79.37511600399999,314852.311,4838300.882
-889308,4153905,2017.0,2020.0,1962.0,PRIVATE,12,Toronto-St. Paul's,30 THELMA AVE,3,32,2020-12-01,68,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,,S1231,43.689996633,-79.41150263600001,311918.458,4838676.016
-889309,4155752,2017.0,2020.0,1950.0,PRIVATE,3,Etobicoke-Lakeshore,1 SUPERIOR AVE,4,23,2020-12-01,73,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,3.0,3.0,4.0,,3.0,3.0,,4.0,3.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,W0336,43.6148862856,-79.48695961109999,305836.877,4830327.051
-889310,4155749,2017.0,2020.0,1950.0,PRIVATE,3,Etobicoke-Lakeshore,3 SUPERIOR AVE,7,62,2020-12-01,74,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,3.0,4.0,,3.0,3.0,3.0,4.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,W0336,43.6150903921,-79.4868989887,305841.767,4830349.727
-889311,4155312,2017.0,2020.0,1970.0,PRIVATE,2,Etobicoke Centre,313 THE KINGSWAY,4,18,2020-12-01,83,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,3.0,,3.0,,,4.0,5.0,5.0,4.0,4.0,5.0,,4.0,4.0,,W0229,43.664984337700005,-79.5228845636,302938.716,4835892.909
-889312,4155320,2017.0,2020.0,1970.0,PRIVATE,2,Etobicoke Centre,316 THE KINGSWAY,4,17,2020-12-01,83,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,,,4.0,5.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0229,43.664689787200004,-79.5237237327,302871.029,4835860.206
-889313,4153777,,2020.0,1955.0,PRIVATE,12,Toronto-St. Paul's,676 MOUNT PLEASANT RD,3,23,2020-12-01,81,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,,,5.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,S1228,43.7056593617,-79.3894538234,313693.856,4840417.278
-889314,4152739,2017.0,2020.0,1960.0,PRIVATE,24,Scarborough-Guildwood,3210 LAWRENCE AVE E,6,48,2020-12-01,81,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,,4.0,3.0,5.0,4.0,3.0,4.0,5.0,5.0,4.0,,E2424,43.756840819,-79.24196517600001,325562.476,4846130.432
-889315,4156027,2017.0,2020.0,1910.0,PRIVATE,3,Etobicoke-Lakeshore,2523 LAKE SHORE BLVD W,3,10,2020-12-01,79,Evaluation needs to be conducted in 2 years,14,4.0,3.0,5.0,4.0,,4.0,,3.0,,,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0336,43.6102058206,-79.4892486213,305652.179,4829807.05
-889316,4154884,2017.0,2020.0,1961.0,PRIVATE,16,Don Valley East,1441 LAWRENCE AVE E,14,251,2020-12-01,83,Evaluation needs to be conducted in 2 years,19,5.0,5.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,N1628,43.741069981,-79.31303466,319843.605,4844363.092
-889317,4286044,2017.0,2020.0,1969.0,TCHC,19,Beaches-East York,444 EAST LUMSDEN,25,183,2020-12-01,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,S1930,43.695391787,-79.303315109,320711.637,4839312.69
-889318,4156316,2017.0,2020.0,1969.0,TCHC,19,Beaches-East York,444 LUMSDEN AVE,42,183,2020-12-01,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,2.0,,S1930,43.695629657,-79.302310982,320791.011,4839337.097
-889319,4154530,2017.0,2020.0,1969.0,PRIVATE,8,Eglinton-Lawrence,82 NEPTUNE DR,3,11,2020-12-01,85,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,4.0,3.0,5.0,4.0,5.0,4.0,5.0,5.0,4.0,,N0823,43.732725421800005,-79.4367279054,309881.57899999997,4843420.148
-889320,4154533,,2020.0,1956.0,PRIVATE,8,Eglinton-Lawrence,88 NEPTUNE DR,3,11,2020-12-01,67,Evaluation needs to be conducted in 2 years,17,3.0,4.0,4.0,3.0,2.0,4.0,,3.0,,3.0,4.0,4.0,5.0,2.0,3.0,3.0,4.0,2.0,4.0,,N0823,43.732494717,-79.4377218694,309801.528,4843394.458000001
-889321,4154502,,2020.0,,PRIVATE,8,Eglinton-Lawrence,89 NEPTUNE DR,3,11,2020-12-01,72,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,4.0,4.0,,3.0,,4.0,3.0,4.0,5.0,2.0,4.0,3.0,4.0,2.0,4.0,,N0823,43.731805189700005,-79.4379426197,309783.803,4843317.843
-889322,4154534,2017.0,2020.0,1974.0,PRIVATE,8,Eglinton-Lawrence,125 NEPTUNE DR,15,171,2020-12-01,79,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,5.0,5.0,3.0,5.0,5.0,4.0,3.0,2.0,4.0,N0823,43.730876999399996,-79.4396616962,309645.392,4843214.6219999995
-889323,4156735,2017.0,2020.0,1974.0,TCHC,8,Eglinton-Lawrence,155 NEPTUNE DR,4,48,2020-12-01,80,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0823,43.729844838000005,-79.43964535100001,309646.53,4843100.909
-889324,4156558,2018.0,2020.0,1970.0,PRIVATE,24,Scarborough-Guildwood,3967 LAWRENCE AVE E,10,102,2020-12-01,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,5.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2431,43.763967883199996,-79.20320648319999,328680.928,4846931.64
-889325,4290959,2018.0,2020.0,1962.0,PRIVATE,3,Etobicoke-Lakeshore,25 ELIZABETH ST,3,29,2020-12-01,74,Evaluation needs to be conducted in 2 years,17,4.0,3.0,5.0,3.0,3.0,3.0,,3.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,W0336,43.6135850358,-79.4949390042,305192.817,4830182.433
-889326,4153495,2017.0,2020.0,1909.0,PRIVATE,13,Toronto Centre,42 MAITLAND ST,4,27,2020-12-01,80,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S1326,43.6646189341,-79.38211083729999,314292.07,4835858.618
-889327,4154915,2017.0,2020.0,1961.0,PRIVATE,16,Don Valley East,1325 YORK MILLS RD,4,64,2020-12-01,84,Evaluation needs to be conducted in 2 years,18,5.0,5.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,,N1625,43.7616285056,-79.3217659908,319135.683,4846644.525
-889328,4153911,2017.0,2020.0,1956.0,PRIVATE,12,Toronto-St. Paul's,587 AVENUE RD,3,22,2020-12-01,83,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S1232,43.68945490310001,-79.4020332335,312682.159,4838615.7
-889329,4155319,2017.0,2020.0,1953.0,PRIVATE,2,Etobicoke Centre,20 ANGLESEY BLVD,4,25,2020-12-01,78,Evaluation needs to be conducted in 2 years,16,4.0,5.0,4.0,4.0,4.0,3.0,,3.0,,4.0,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,3.0,,W0229,43.6647873708,-79.521769522,303028.632,4835871.001
-889330,4153735,2017.0,2020.0,1950.0,PRIVATE,11,University-Rosedale,36 CASTLE FRANK RD,4,53,2020-12-01,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,3.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1131,43.676613159,-79.36971986489999,315289.335,4837192.601
-889331,4153774,2017.0,2020.0,1928.0,PRIVATE,12,Toronto-St. Paul's,5 DE SAVERY CRES,3,31,2020-12-01,84,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,5.0,,4.0,,3.0,4.0,5.0,5.0,4.0,4.0,5.0,3.0,4.0,,,S1228,43.7028694866,-79.3891072895,313722.196,4840107.363
-889332,4155230,2018.0,2020.0,1959.0,PRIVATE,3,Etobicoke-Lakeshore,65 CLOVERHILL RD,4,24,2020-12-01,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,3.0,4.0,,4.0,,3.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,W0329,43.6354908958,-79.4906112543,305541.855,4832616.072
-889333,4155409,2017.0,2020.0,1968.0,PRIVATE,1,Etobicoke North,20 REDGRAVE DR,16,178,2020-12-01,68,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,4.0,5.0,4.0,3.0,3.0,3.0,4.0,3.0,,W0137,43.6836537858,-79.5686665938,299248.36,4837968.911
-889334,4153784,2017.0,2020.0,1955.0,PRIVATE,12,Toronto-St. Paul's,107 REDPATH AVE,4,31,2020-12-01,87,Evaluation needs to be conducted in 3 years,17,4.0,5.0,5.0,3.0,4.0,4.0,,5.0,3.0,4.0,4.0,4.0,5.0,4.0,5.0,5.0,,5.0,5.0,,S1228,43.7072705538,-79.3921611065,313475.429,4840596.0
-889335,4153775,2017.0,2020.0,1930.0,PRIVATE,12,Toronto-St. Paul's,15 PENROSE RD,3,26,2020-12-01,71,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,3.0,4.0,,4.0,,,4.0,3.0,5.0,3.0,4.0,4.0,,3.0,3.0,,S1228,43.7029512593,-79.38891694979999,313737.525,4840116.468
-889336,4155465,2017.0,2020.0,1984.0,TCHC,1,Etobicoke North,10 HUMBERLINE DR,13,179,2020-12-01,78,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,,3.0,4.0,5.0,4.0,5.0,4.0,,3.0,4.0,,W0125,43.7312483321,-79.61180489510001,295777.595,4843260.265
-889337,4153730,2017.0,2020.0,1954.0,PRIVATE,11,University-Rosedale,40 PARK RD,7,39,2020-12-01,81,Evaluation needs to be conducted in 2 years,18,5.0,5.0,5.0,3.0,3.0,4.0,,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1129,43.672981453,-79.384902282,314065.409,4836788.283
-889338,4228766,2017.0,2020.0,1905.0,PRIVATE,19,Beaches-East York,2218 QUEEN ST E,3,16,2020-12-01,73,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,3.0,,3.0,,,3.0,3.0,3.0,4.0,4.0,4.0,,4.0,4.0,,S1940,43.67276420899999,-79.2883036582,321855.126,4836778.436000001
-889339,4155804,2017.0,2020.0,1950.0,PRIVATE,20,Scarborough Southwest,1625 KINGSTON RD,3,11,2020-12-01,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,2.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,E2034,43.690864521,-79.265477585,323718.011,4838812.556
-889340,4156035,2017.0,2020.0,1940.0,PRIVATE,20,Scarborough Southwest,1463 KINGSTON RD,3,14,2020-12-01,55,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,2.0,2.0,3.0,,3.0,,,2.0,2.0,4.0,3.0,3.0,3.0,,3.0,3.0,,E2034,43.687961103999996,-79.269766888,323354.61100000003,4838512.321
-889341,4152803,2017.0,2020.0,1965.0,PRIVATE,24,Scarborough-Guildwood,3400 EGLINTON AVE E,16,221,2020-11-30,75,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,,3.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,E2433,43.745127162799996,-79.2131571633,327886.965,4844835.72
-889342,4155474,2017.0,2020.0,1970.0,PRIVATE,3,Etobicoke-Lakeshore,2377 LAKE SHORE BLVD W,4,23,2020-11-30,73,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,4.0,3.0,3.0,,3.0,3.0,3.0,3.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,W0336,43.6154404667,-79.4878892475,305761.833,4830388.607
-889343,4153443,2017.0,2020.0,1973.0,PRIVATE,13,Toronto Centre,280 DUNDAS ST E,11,241,2020-11-30,75,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,4.0,3.0,4.0,3.0,3.0,,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S1328,43.6584811745,-79.3719261905,315114.503,4835177.935
-889344,4155066,2017.0,2020.0,1963.0,PRIVATE,9,Davenport,1969 EGLINTON AVE W,3,36,2020-11-30,80,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,,5.0,3.0,4.0,5.0,3.0,4.0,4.0,,4.0,4.0,,S0922,43.6945457647,-79.45447448,308454.213,4839177.629
-889345,4155063,2017.0,2020.0,1950.0,PRIVATE,9,Davenport,2036 DUFFERIN ST,3,12,2020-11-30,80,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,4.0,,3.0,,5.0,,,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S0922,43.6863686196,-79.446744343,309077.853,4838269.541
-889346,4152942,2017.0,2020.0,1920.0,PRIVATE,9,Davenport,1625 DUPONT ST,4,10,2020-11-30,69,Evaluation needs to be conducted in 2 years,14,3.0,3.0,4.0,4.0,3.0,3.0,,3.0,,,3.0,4.0,3.0,3.0,4.0,4.0,,4.0,,,S0929,43.6647859193,-79.455225181,308395.475,4835871.433
-889347,4155580,2017.0,2020.0,1971.0,TCHC,24,Scarborough-Guildwood,110 MORNELLE CRT,15,145,2020-11-30,75,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,3.0,,4.0,4.0,4.0,3.0,,4.0,4.0,4.0,3.0,3.0,4.0,,4.0,,,E2423,43.786495688,-79.194414059,329379.42,4849437.971
-889348,4153595,2017.0,2020.0,1965.0,PRIVATE,13,Toronto Centre,666 ONTARIO ST,19,231,2020-11-30,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,S1323,43.669481117,-79.3732918084,315002.49199999997,4836399.811000001
-889349,4153594,2017.0,2020.0,1967.0,PRIVATE,13,Toronto Centre,700 ONTARIO ST,14,279,2020-11-30,85,Evaluation needs to be conducted in 2 years,17,5.0,4.0,5.0,5.0,4.0,4.0,3.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,,5.0,4.0,,S1323,43.6701517144,-79.3735812893,314979.034,4836474.276000001
-889350,4155065,2017.0,2020.0,1959.0,PRIVATE,9,Davenport,2005 EGLINTON AVE W,5,78,2020-11-30,83,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,5.0,4.0,,4.0,5.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S0922,43.6942406166,-79.45498736520001,308412.88800000004,4839143.706
-889351,4155412,2017.0,2020.0,1962.0,PRIVATE,1,Etobicoke North,80 BLACKFRIAR AVE,3,45,2020-11-29,67,Evaluation needs to be conducted in 2 years,15,3.0,4.0,3.0,3.0,,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,4.0,,W0133,43.6982740751,-79.5624045901,299754.433,4839592.821
-889352,4288799,2017.0,2020.0,1920.0,PRIVATE,19,Beaches-East York,2393 QUEEN ST E,3,23,2020-11-28,73,Evaluation needs to be conducted in 2 years,14,4.0,4.0,3.0,3.0,4.0,4.0,,4.0,,,4.0,3.0,4.0,4.0,3.0,3.0,,4.0,,,S1942,43.6725074759,-79.286877033,321970.23600000003,4836750.21
-889353,4288796,2017.0,2020.0,1920.0,PRIVATE,19,Beaches-East York,2327 QUEEN ST E,3,27,2020-11-28,68,Evaluation needs to be conducted in 2 years,17,3.0,4.0,3.0,4.0,3.0,4.0,,3.0,,4.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,4.0,3.0,,S1942,43.671653798,-79.291250505,321617.55,4836655.433999999
-889354,4154879,2017.0,2020.0,1966.0,PRIVATE,16,Don Valley East,1698 VICTORIA PARK AVE,5,52,2020-11-28,73,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,3.0,4.0,,4.0,4.0,,3.0,4.0,5.0,3.0,3.0,4.0,4.0,4.0,4.0,,N1628,43.733752898199995,-79.3068920324,320340.518,4843550.409
-889355,4288801,2017.0,2020.0,1920.0,PRIVATE,19,Beaches-East York,84 WILLOW AVE,3,18,2020-11-28,63,Evaluation needs to be conducted in 1 year,14,3.0,4.0,3.0,3.0,3.0,2.0,,3.0,,,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,,,S1942,43.6726703072,-79.2866950453,321984.865,4836768.337
-889356,4288800,2017.0,2020.0,1920.0,PRIVATE,19,Beaches-East York,82 WILLOW AVE,3,18,2020-11-28,69,Evaluation needs to be conducted in 2 years,15,3.0,4.0,3.0,4.0,4.0,4.0,,3.0,,3.0,4.0,3.0,3.0,4.0,3.0,3.0,,4.0,,,S1942,43.672483295,-79.28654496829999,321997.02,4836747.592
-889357,4288787,2017.0,2020.0,1920.0,PRIVATE,19,Beaches-East York,2405 QUEEN ST E,3,23,2020-11-28,69,Evaluation needs to be conducted in 2 years,14,3.0,4.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,4.0,4.0,4.0,4.0,3.0,,4.0,,,S1942,43.6726998751,-79.2858734346,322051.11,4836771.791
-889358,4288792,2017.0,2020.0,1920.0,PRIVATE,19,Beaches-East York,2401 QUEEN ST E,3,21,2020-11-28,76,Evaluation needs to be conducted in 2 years,14,4.0,4.0,3.0,4.0,4.0,4.0,,3.0,,,3.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,S1942,43.672671514099996,-79.286127172,322030.657,4836768.588
-889359,4153460,2017.0,2020.0,1985.0,TCHC,11,University-Rosedale,25 ELM ST,16,101,2020-11-27,88,Evaluation needs to be conducted in 3 years,17,4.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,5.0,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S1145,43.6573608881,-79.3829351361,314226.76,4835052.209
-889360,4153415,2017.0,2020.0,1961.0,PRIVATE,11,University-Rosedale,200 ELM ST,14,120,2020-11-27,89,Evaluation needs to be conducted in 3 years,17,4.0,4.0,5.0,4.0,5.0,4.0,5.0,4.0,5.0,,4.0,5.0,5.0,4.0,4.0,4.0,,5.0,,5.0,S1144,43.656163448,-79.3914361873,313541.216,4834918.223999999
-889361,4153413,2017.0,2020.0,1970.0,PRIVATE,11,University-Rosedale,222 ELM ST,15,268,2020-11-27,88,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,5.0,,5.0,S1144,43.6561325149,-79.3918839481,313505.1,4834914.738
-889362,4154883,2017.0,2020.0,1979.0,PRIVATE,16,Don Valley East,1780 VICTORIA PARK AVE,10,83,2020-11-27,90,Evaluation needs to be conducted in 3 years,18,5.0,5.0,4.0,4.0,5.0,4.0,3.0,4.0,5.0,,5.0,5.0,5.0,5.0,5.0,4.0,4.0,4.0,5.0,,N1628,43.7381014953,-79.30868221029999,320195.19800000003,4844033.165
-889363,4457070,,2020.0,1951.0,PRIVATE,19,Beaches-East York,1127 O'CONNOR DR,3,11,2020-11-27,69,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,3.0,3.0,4.0,,3.0,,,3.0,4.0,4.0,3.0,3.0,4.0,,3.0,4.0,,S1924,43.710979707700005,-79.3082535422,320236.683,4841020.188999999
-889364,4457092,,2020.0,1951.0,PRIVATE,19,Beaches-East York,1131 O'CONNOR DR,3,12,2020-11-27,73,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,4.0,4.0,4.0,,4.0,,4.0,3.0,4.0,4.0,3.0,4.0,3.0,,4.0,4.0,,S1924,43.711133073599996,-79.3081363101,320246.091,4841037.249
-889365,4153421,2017.0,2020.0,1805.0,PRIVATE,11,University-Rosedale,160 HURON ST,5,69,2020-11-27,67,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,3.0,3.0,3.0,4.0,4.0,,,3.0,3.0,5.0,3.0,2.0,2.0,4.0,4.0,3.0,,S1144,43.6570614157,-79.3980740042,313005.659,4835017.2639999995
-889366,4153420,2017.0,2020.0,1903.0,PRIVATE,11,University-Rosedale,162 HURON ST,4,18,2020-11-27,97,Evaluation needs to be conducted in 3 years,14,5.0,5.0,5.0,4.0,5.0,5.0,,5.0,,,5.0,5.0,5.0,4.0,5.0,5.0,,5.0,,,S1144,43.6572165496,-79.3980741814,313005.623,4835034.499
-889367,4154911,2017.0,2020.0,1963.0,PRIVATE,16,Don Valley East,111 COMBERMERE DR,7,81,2020-11-27,91,Evaluation needs to be conducted in 3 years,19,4.0,5.0,4.0,5.0,4.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,,N1625,43.7587471272,-79.319372054,319329.13300000003,4846324.826
-889368,4154916,2017.0,2020.0,1962.0,PRIVATE,16,Don Valley East,267 ROYWOOD DR,7,72,2020-11-27,83,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,3.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,3.0,4.0,5.0,4.0,4.0,4.0,,N1622,43.761230364,-79.335262791,318048.772,4846599.023
-889369,4154876,2017.0,2020.0,1960.0,PRIVATE,16,Don Valley East,26 SLOANE AVE,4,60,2020-11-27,92,Evaluation needs to be conducted in 3 years,19,5.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,5.0,,N1628,43.7266750646,-79.3142450154,319749.941,4842762.762
-889370,4154920,2017.0,2020.0,1963.0,PRIVATE,16,Don Valley East,1264 YORK MILLS RD,7,76,2020-11-27,94,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,4.0,,5.0,5.0,5.0,4.0,5.0,5.0,3.0,5.0,5.0,,N1622,43.7611846362,-79.3275443337,318670.516,4846594.241
-889371,4154919,2017.0,2020.0,1970.0,PRIVATE,16,Don Valley East,1274 YORK MILLS RD,7,73,2020-11-27,81,Evaluation needs to be conducted in 2 years,18,5.0,5.0,4.0,3.0,4.0,4.0,3.0,4.0,5.0,,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,,N1622,43.761353758199995,-79.3264582333,318757.929,4846613.211
-889372,4154918,2018.0,2020.0,1959.0,PRIVATE,16,Don Valley East,1284 YORK MILLS RD,7,63,2020-11-27,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,5.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N1622,43.761593976099995,-79.32540301819999,318842.838,4846640.075
-889373,4153874,2017.0,2020.0,1937.0,PRIVATE,12,Toronto-St. Paul's,64 ST CLAIR AVE W,6,97,2020-11-27,72,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,2.0,4.0,3.0,,4.0,4.0,4.0,3.0,3.0,5.0,4.0,4.0,3.0,,4.0,4.0,,S1232,43.6878011506,-79.397437188,313052.88399999996,4838432.402
-889374,4154889,2017.0,2020.0,1958.0,PRIVATE,16,Don Valley East,56 ECCLESTON DR,4,60,2020-11-27,85,Evaluation needs to be conducted in 2 years,17,5.0,5.0,5.0,5.0,4.0,4.0,,4.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N1628,43.72702975399999,-79.32003773699999,319282.903,4842802.106000001
-889375,4156722,2017.0,2020.0,1968.0,PRIVATE,16,Don Valley East,20 GRAYDON HALL DR,20,305,2020-11-27,84,Evaluation needs to be conducted in 2 years,18,4.0,5.0,5.0,3.0,4.0,3.0,4.0,4.0,4.0,,3.0,4.0,5.0,5.0,5.0,5.0,5.0,4.0,4.0,,N1621,43.763477245,-79.345900416,317191.811,4846847.017
-889376,4154871,2017.0,2020.0,1960.0,PRIVATE,16,Don Valley East,21 ECCLESTON DR,4,64,2020-11-27,92,Evaluation needs to be conducted in 3 years,19,5.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,5.0,,N1628,43.7270536549,-79.31695183810001,319531.775,4842804.342
-889377,4154874,2017.0,2020.0,1960.0,PRIVATE,16,Don Valley East,3 ECCLESTON DR,4,61,2020-11-27,92,Evaluation needs to be conducted in 3 years,19,5.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,5.0,,N1628,43.7269110332,-79.3147057039,319712.768,4842788.895
-889378,4153416,2017.0,2020.0,1960.0,SOCIAL HOUSING,11,University-Rosedale,25 LEONARD AVE,6,77,2020-11-27,82,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,4.0,4.0,3.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,,4.0,S1143,43.6538260344,-79.4041248696,312518.031,4834657.24
-889379,4326893,,2020.0,1951.0,PRIVATE,19,Beaches-East York,1135 O'CONNOR DR,3,13,2020-11-27,79,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,,,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,,S1924,43.711282299,-79.3080213624,320255.316,4841053.848
-889380,4316599,2018.0,2020.0,1951.0,PRIVATE,19,Beaches-East York,993 O'CONNOR DR,3,12,2020-11-27,80,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,,S1924,43.7089625626,-79.3097891975,320113.443,4840795.808999999
-889381,4153882,2017.0,2020.0,1938.0,PRIVATE,12,Toronto-St. Paul's,110 ST CLAIR AVE W,9,54,2020-11-27,68,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,5.0,4.0,3.0,4.0,,3.0,3.0,,S1232,43.68739965100001,-79.398937696,312931.977,4838387.652
-889382,4288857,2018.0,2020.0,1950.0,PRIVATE,19,Beaches-East York,991 O'CONNOR DR,3,12,2020-11-27,75,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,3.0,4.0,3.0,3.0,4.0,4.0,,3.0,4.0,,S1924,43.708777553100006,-79.310012242,320095.516,4840775.215
-889383,4153697,2020.0,2020.0,1966.0,PRIVATE,19,Beaches-East York,592 WOODBINE AVE,5,36,2020-11-26,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1934,43.6770075216,-79.3095598488,320140.021,4837245.728999999
-889384,4153880,2017.0,2020.0,1970.0,PRIVATE,12,Toronto-St. Paul's,14 DEER PARK CRES,4,13,2020-11-26,74,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,,S1232,43.688481804300004,-79.3993292797,312900.26,4838507.841
-889385,4154131,2017.0,2020.0,1965.0,PRIVATE,14,Toronto-Danforth,30 COSBURN AVE,5,26,2020-11-26,81,Evaluation needs to be conducted in 2 years,16,5.0,3.0,5.0,5.0,5.0,5.0,,3.0,,,3.0,3.0,5.0,3.0,5.0,5.0,3.0,3.0,4.0,,S1421,43.6889031771,-79.35273098340001,316656.787,4838560.2639999995
-889386,4154113,2018.0,2020.0,1968.0,PRIVATE,14,Toronto-Danforth,75 COSBURN AVE,12,118,2020-11-26,92,Evaluation needs to be conducted in 3 years,19,5.0,3.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,3.0,4.0,4.0,5.0,5.0,5.0,5.0,5.0,3.0,,S1421,43.6886962162,-79.3510054623,316795.92699999997,4838537.506
-889387,4155527,2017.0,2020.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,66 FIFTEENTH ST,3,23,2020-11-26,72,Evaluation needs to be conducted in 2 years,15,2.0,4.0,5.0,4.0,3.0,4.0,,3.0,,,3.0,3.0,5.0,3.0,4.0,4.0,,4.0,3.0,,W0335,43.6016913741,-79.5154841711,303534.33,4828861.169
-889388,4155526,2017.0,2020.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,68 FIFTEENTH ST,3,23,2020-11-26,75,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,4.0,3.0,4.0,,3.0,,,4.0,3.0,5.0,3.0,4.0,4.0,,4.0,3.0,,W0335,43.6018725092,-79.5155664231,303527.693,4828881.294
-889389,4152894,2017.0,2020.0,1993.0,TCHC,25,Scarborough-Rouge Park,1319 NEILSON RD,13,124,2020-11-26,81,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,E2524,43.808424715600005,-79.2179866009,327474.219,4851866.509
-889390,4156136,2017.0,2020.0,1993.0,SOCIAL HOUSING,23,Scarborough North,2319 MCNICOLL AVE,5,130,2020-11-26,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2321,43.81394308,-79.29021955399999,321736.414,4852474.97
-889391,4155195,2017.0,2020.0,1958.0,PRIVATE,5,York South-Weston,15 GRAY AVE,3,17,2020-11-26,81,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,4.0,,W0535,43.6812020963,-79.49310534140001,305340.27,4837694.285
-889392,4153699,2017.0,2020.0,1958.0,PRIVATE,19,Beaches-East York,1691 GERRARD ST E,7,66,2020-11-26,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,,S1934,43.675718937,-79.3175243078,319498.149,4837101.145
-889393,4168721,2021.0,2020.0,1956.0,PRIVATE,5,York South-Weston,870 WESTON RD,3,11,2020-11-26,59,Evaluation needs to be conducted in 1 year,16,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,3.0,2.0,2.0,3.0,3.0,3.0,3.0,,2.0,3.0,,W0535,43.6831377116,-79.48055707479999,306351.965,4837909.4569999995
-889394,4155190,2021.0,2020.0,1956.0,PRIVATE,5,York South-Weston,872 WESTON RD,3,12,2020-11-26,59,Evaluation needs to be conducted in 1 year,16,2.0,3.0,5.0,3.0,2.0,3.0,,3.0,,3.0,3.0,2.0,3.0,3.0,3.0,3.0,,3.0,3.0,,W0535,43.683182052700005,-79.4807822687,306333.807,4837914.38
-889395,4153548,2017.0,2020.0,1973.0,PRIVATE,13,Toronto Centre,77 HUNTLEY ST,29,561,2020-11-26,83,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,,S1322,43.6716230916,-79.37873126689999,314563.49199999997,4836637.12
-889396,4153687,2017.0,2020.0,1923.0,PRIVATE,19,Beaches-East York,2150 QUEEN ST E,4,16,2020-11-26,76,Evaluation needs to be conducted in 2 years,14,4.0,3.0,3.0,4.0,,4.0,,4.0,,,4.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,,,S1939,43.671968236000005,-79.29178994,321573.963,4836690.259
-889397,4167696,2017.0,2020.0,1955.0,PRIVATE,5,York South-Weston,2248 KEELE ST,3,11,2020-11-26,65,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,4.0,,W0529,43.701682814099996,-79.476932762,306643.684,4839969.797
-889398,4154287,2017.0,2020.0,1958.0,PRIVATE,5,York South-Weston,2250 KEELE ST,3,10,2020-11-26,77,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,3.0,4.0,,3.0,,,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,4.0,,W0529,43.701887925200005,-79.4769449452,306642.696,4839992.584
-889399,4289106,2018.0,2020.0,2002.0,PRIVATE,5,York South-Weston,2252 KEELE ST,3,15,2020-11-26,78,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,4.0,3.0,4.0,,3.0,,,4.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,3.0,,W0529,43.701953816999996,-79.476918201,306648.92699999997,4840009.031
-889400,4155942,2017.0,2020.0,1971.0,TCHC,22,Scarborough-Agincourt,2743 VICTORIA PARK AVE,15,201,2020-11-26,82,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,,E2225,43.779266936999996,-79.323413406,318912.61199999996,4848579.722
-889401,4155193,2017.0,2020.0,1958.0,PRIVATE,5,York South-Weston,80 GUESTVILLE AVE,4,53,2020-11-26,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,3.0,3.0,,4.0,,3.0,5.0,5.0,5.0,4.0,3.0,3.0,,4.0,3.0,,W0535,43.6841175176,-79.4901133779,305581.481,4838018.193
-889402,4155537,2017.0,2020.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,95 TWENTY FIFTH ST,3,46,2020-11-26,74,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,3.0,3.0,3.0,,4.0,,3.0,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,3.0,,W0334,43.5956296251,-79.52294293050001,302931.99600000004,4828187.853
-889403,4155538,2017.0,2020.0,1970.0,PRIVATE,3,Etobicoke-Lakeshore,105 TWENTY FIFTH ST,3,29,2020-11-26,66,Evaluation needs to be conducted in 2 years,14,3.0,3.0,4.0,3.0,,3.0,,3.0,,,2.0,3.0,5.0,4.0,3.0,4.0,,4.0,2.0,,W0334,43.5964677735,-79.5233498233,302899.17,4828280.973
-889404,4154114,2018.0,2020.0,1986.0,PRIVATE,14,Toronto-Danforth,91 COSBURN AVE,11,86,2020-11-26,93,Evaluation needs to be conducted in 3 years,18,5.0,3.0,5.0,5.0,5.0,5.0,,4.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,3.0,,S1421,43.688826668199994,-79.3502448679,316857.213,4838552.103
-889405,4153412,2017.0,2020.0,1985.0,PRIVATE,11,University-Rosedale,123 D'ARCY ST,3,24,2020-11-26,72,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,3.0,3.0,4.0,,2.0,,,3.0,3.0,5.0,4.0,3.0,4.0,,4.0,4.0,,S1144,43.6540278279,-79.3972570304,313071.98699999996,4834680.315
-889406,4154089,2017.0,2020.0,1958.0,PRIVATE,14,Toronto-Danforth,149 COSBURN AVE,4,29,2020-11-26,85,Evaluation needs to be conducted in 2 years,17,5.0,3.0,5.0,5.0,4.0,5.0,,3.0,,4.0,4.0,3.0,5.0,5.0,3.0,5.0,5.0,5.0,3.0,,S1422,43.6896822346,-79.3460278101,317196.981,4838647.758
-889407,4153150,2017.0,2020.0,1912.0,PRIVATE,11,University-Rosedale,677 COLLEGE ST,3,32,2020-11-26,79,Evaluation needs to be conducted in 2 years,14,4.0,4.0,5.0,3.0,3.0,4.0,,4.0,,,4.0,5.0,5.0,3.0,3.0,4.0,,4.0,,,S1141,43.6549416362,-79.4173376182,311452.2,4834780.093
-889408,4153151,2017.0,2020.0,1929.0,PRIVATE,11,University-Rosedale,805 COLLEGE ST,4,72,2020-11-26,80,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,,,S1141,43.6543880918,-79.4216105716,311107.589,4834718.259
-889409,4253901,2017.0,2020.0,1963.0,PRIVATE,14,Toronto-Danforth,20 COSBURN AVE,3,30,2020-11-26,84,Evaluation needs to be conducted in 2 years,17,5.0,3.0,5.0,5.0,5.0,5.0,,5.0,,5.0,3.0,3.0,5.0,3.0,3.0,4.0,5.0,3.0,4.0,,S1421,43.688697769300006,-79.3541118682,316545.506,4838537.252
-889410,4153169,2017.0,2020.0,1920.0,PRIVATE,11,University-Rosedale,723 BLOOR ST W,4,16,2020-11-26,83,Evaluation needs to be conducted in 2 years,14,4.0,4.0,5.0,4.0,3.0,3.0,,4.0,,,4.0,5.0,5.0,4.0,4.0,5.0,,4.0,,,S1133,43.6633624229,-79.4182682286,311376.156,4835715.537
-889411,4261157,,2020.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,103 SIXTEENTH ST,3,10,2020-11-26,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,3.0,2.0,3.0,,4.0,,,3.0,2.0,5.0,3.0,4.0,4.0,,4.0,3.0,,W0335,43.6028075946,-79.5164885645,303453.266,4828985.195
-889412,4153171,2017.0,2020.0,1904.0,PRIVATE,11,University-Rosedale,456 PALMERSTON BLVD,4,32,2020-11-26,90,Evaluation needs to be conducted in 3 years,14,5.0,5.0,5.0,5.0,5.0,4.0,,4.0,,,5.0,5.0,5.0,4.0,4.0,3.0,,4.0,,,S1133,43.661089992600004,-79.4126760562,311827.434,4835463.525
-889413,4153464,,2020.0,1932.0,PRIVATE,11,University-Rosedale,469 PALMERSTON BLVD,3,10,2020-11-26,80,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,3.0,,5.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,,S1133,43.661625125200004,-79.4121412383,311870.48699999996,4835523.005
-889414,4153172,2018.0,2020.0,1911.0,PRIVATE,11,University-Rosedale,532 PALMERSTON BLVD,4,21,2020-11-26,85,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,5.0,4.0,,5.0,,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1133,43.663789313100004,-79.4136043966,311752.224,4835763.318
-889415,4155524,2017.0,2020.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,104 SIXTEENTH ST,3,12,2020-11-26,79,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,,4.0,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,3.0,,W0335,43.6026815249,-79.5170398804,303408.757,4828971.198
-889416,4153573,2017.0,2020.0,1975.0,TCHC,13,Toronto Centre,251 SHERBOURNE ST,7,200,2020-11-26,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,3.0,2.0,4.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,,S1329,43.659299401000006,-79.3709200965,315195.512,4835268.965
-889417,4156374,2017.0,2020.0,1975.0,TCHC,13,Toronto Centre,257 SHERBOURNE ST,4,102,2020-11-26,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,3.0,2.0,4.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,,S1329,43.6593567184,-79.3711764365,315174.827,4835275.301
-889418,4153688,2020.0,2020.0,1927.0,PRIVATE,19,Beaches-East York,59 BALSAM AVE,3,19,2020-11-26,71,Evaluation needs to be conducted in 2 years,14,4.0,4.0,3.0,4.0,4.0,4.0,,4.0,,,3.0,3.0,3.0,3.0,4.0,4.0,,3.0,,,S1940,43.6724728988,-79.2898813658,321727.989,4836745.748
-889419,4153692,2017.0,2020.0,1960.0,PRIVATE,19,Beaches-East York,419 WOODBINE AVE,3,11,2020-11-26,71,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,3.0,4.0,4.0,,4.0,,,3.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,,S1938,43.67374715810001,-79.3071214297,320337.471,4836883.9569999995
-889420,4153700,2017.0,2020.0,1964.0,PRIVATE,19,Beaches-East York,4 NEWBOLD AVE,4,12,2020-11-25,73,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,3.0,3.0,4.0,,4.0,,3.0,3.0,4.0,4.0,4.0,3.0,4.0,,4.0,4.0,,S1934,43.675371432,-79.31815704,319446.953,4837063.38
-889421,4153706,2017.0,2020.0,1960.0,TCHC,19,Beaches-East York,133 MERRILL AVE E,3,42,2020-11-25,78,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,,S1931,43.682986595,-79.311994302,319941.96,4837910.517
-889422,4153747,2017.0,2020.0,1954.0,PRIVATE,12,Toronto-St. Paul's,49 GLEN ELM AVE,4,71,2020-11-25,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,3.0,3.0,4.0,,S1233,43.691400980299996,-79.3925441035,313446.82899999997,4838832.843
-889423,4153703,2017.0,2020.0,2009.0,PRIVATE,19,Beaches-East York,1908 GERRARD ST E,5,28,2020-11-25,74,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,4.0,4.0,,3.0,4.0,,3.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,,,S1934,43.6804613958,-79.3122562519,319921.74,4837628.967
-889424,4153723,2017.0,2020.0,1967.0,TCHC,19,Beaches-East York,2287 GERRARD ST E,5,38,2020-11-25,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,4.0,4.0,S1936,43.6847616076,-79.2954429245,321276.18100000004,4838109.87
-889425,4331737,,2020.0,1954.0,PRIVATE,20,Scarborough Southwest,2511 GERRARD ST E,3,11,2020-11-25,73,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,3.0,3.0,,4.0,,,3.0,2.0,5.0,4.0,4.0,4.0,,4.0,3.0,,E2033,43.6873957416,-79.2836217678,322228.49100000004,4838404.904
-889426,4155437,2018.0,2020.0,1960.0,PRIVATE,1,Etobicoke North,21 TORBOLTON DR,3,15,2020-11-25,80,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,,3.0,,5.0,,,4.0,4.0,5.0,4.0,5.0,4.0,3.0,3.0,4.0,,W0130,43.7192557504,-79.5581150551,300101.833,4841923.575
-889427,4152603,2017.0,2020.0,1962.0,PRIVATE,20,Scarborough Southwest,1047 VICTORIA PARK AVE,3,11,2020-11-25,80,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,3.0,,5.0,,,4.0,4.0,5.0,5.0,3.0,3.0,,4.0,3.0,,E2028,43.705966961,-79.294406813,321353.654,4840466.863
-889428,4152606,2017.0,2020.0,1964.0,PRIVATE,20,Scarborough Southwest,1065 VICTORIA PARK AVE,6,37,2020-11-25,81,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,,E2028,43.706999577,-79.294868767,321316.141,4840581.495
-889429,4156114,2017.0,2020.0,1940.0,PRIVATE,20,Scarborough Southwest,1457 KINGSTON RD,3,15,2020-11-25,69,Evaluation needs to be conducted in 2 years,15,3.0,4.0,3.0,3.0,3.0,3.0,,5.0,,,3.0,1.0,5.0,4.0,3.0,4.0,,4.0,4.0,,E2034,43.68800974,-79.270112715,323322.706,4838482.675
-889430,4154295,2017.0,2020.0,1961.0,PRIVATE,5,York South-Weston,34 GULLIVER RD,6,47,2020-11-25,69,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,2.0,4.0,4.0,,4.0,4.0,,4.0,4.0,5.0,3.0,3.0,3.0,2.0,3.0,2.0,,W0529,43.6991965655,-79.478055589,306553.253,4839693.558999999
-889431,4155482,2017.0,2020.0,1951.0,PRIVATE,3,Etobicoke-Lakeshore,51 STANLEY AVE,3,12,2020-11-25,73,Evaluation needs to be conducted in 2 years,16,4.0,3.0,5.0,4.0,3.0,4.0,,3.0,,4.0,4.0,3.0,3.0,4.0,3.0,4.0,,4.0,3.0,,W0336,43.6160393846,-79.4896739143,305617.776,4830455.127
-889432,4155473,2017.0,2020.0,1959.0,SOCIAL HOUSING,3,Etobicoke-Lakeshore,110 STANLEY AVE,3,16,2020-11-25,74,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,,,3.0,4.0,5.0,4.0,5.0,4.0,3.0,4.0,4.0,,W0336,43.615136766499994,-79.49497407060001,305189.979,4830354.824
-889433,4155015,2017.0,2020.0,1952.0,PRIVATE,9,Davenport,355 WESTMOUNT AVE,3,29,2020-11-25,76,Evaluation needs to be conducted in 2 years,15,4.0,5.0,4.0,3.0,4.0,4.0,,4.0,,,3.0,4.0,5.0,4.0,3.0,3.0,,3.0,4.0,,S0925,43.684753041,-79.44430348,309270.037,4838105.654
-889434,4154908,2017.0,2020.0,1965.0,PRIVATE,16,Don Valley East,57 PARKWOODS VILLAGE DR,7,87,2020-11-25,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,4.0,3.0,4.0,3.0,4.0,,4.0,3.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,,N1625,43.7601500687,-79.3205133557,319236.899,4846480.491
-889435,4154912,,2020.0,1962.0,PRIVATE,16,Don Valley East,71 PARKWOODS VILLAGE DR,7,81,2020-11-25,78,Evaluation needs to be conducted in 2 years,18,5.0,5.0,5.0,3.0,3.0,4.0,3.0,4.0,4.0,,3.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,N1625,43.7607627903,-79.3217087274,319140.499,4846548.357
-889436,4154902,2017.0,2020.0,1962.0,PRIVATE,16,Don Valley East,76 PARKWOODS VILLAGE DR,6,65,2020-11-25,80,Evaluation needs to be conducted in 2 years,17,5.0,5.0,5.0,3.0,3.0,3.0,,4.0,4.0,,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,5.0,,N1625,43.760185352700006,-79.32325685810001,319015.977,4846483.943
-889437,4154100,2017.0,2020.0,1927.0,PRIVATE,14,Toronto-Danforth,250 COSBURN AVE,6,40,2020-11-25,66,Evaluation needs to be conducted in 2 years,17,4.0,3.0,2.0,3.0,,3.0,,3.0,2.0,4.0,3.0,3.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,,S1422,43.6909297022,-79.3426537067,317468.714,4838786.84
-889438,4155226,2017.0,2020.0,1947.0,PRIVATE,3,Etobicoke-Lakeshore,285 PARK LAWN RD,4,29,2020-11-25,81,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,3.0,5.0,4.0,,4.0,,3.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,W0329,43.63456194649999,-79.4922664925,305408.295,4832512.859
-889439,4155239,2017.0,2020.0,1953.0,PRIVATE,3,Etobicoke-Lakeshore,317 PARK LAWN RD,4,32,2020-11-25,84,Evaluation needs to be conducted in 2 years,16,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,,W0329,43.635649636000004,-79.4928351959,305362.392,4832633.691000001
-889440,4155277,2018.0,2020.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,323 PARK LAWN RD,5,48,2020-11-25,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,3.0,,W0327,43.637199541099996,-79.493365223,305319.61,4832805.873
-889441,4155241,,2020.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,183 BERRY RD,4,50,2020-11-25,71,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,3.0,3.0,4.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,5.0,4.0,3.0,,W0329,43.636390118,-79.4911570627,305497.797,4832715.966
-889442,4155419,2017.0,2020.0,1964.0,PRIVATE,1,Etobicoke North,6 AUBURNDALE CRT,7,82,2020-11-25,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,5.0,,5.0,5.0,5.0,5.0,4.0,4.0,4.0,4.0,3.0,,W0131,43.718223584099995,-79.5547061524,300376.432,4841808.712
-889443,4153758,2017.0,2020.0,1968.0,PRIVATE,12,Toronto-St. Paul's,221 BALLIOL ST,17,272,2020-11-25,84,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1233,43.698438896499994,-79.3893834002,313700.592,4839615.097
-889444,4154092,2017.0,2020.0,1960.0,PRIVATE,14,Toronto-Danforth,185 COSBURN AVE,6,37,2020-11-25,82,Evaluation needs to be conducted in 2 years,17,5.0,3.0,4.0,5.0,5.0,3.0,,3.0,5.0,,3.0,5.0,5.0,3.0,4.0,5.0,5.0,3.0,4.0,,S1422,43.6899387618,-79.3447178819,317302.522,4838676.447
-889445,4154096,2017.0,2020.0,1965.0,PRIVATE,14,Toronto-Danforth,200 COSBURN AVE,6,45,2020-11-25,88,Evaluation needs to be conducted in 3 years,18,5.0,3.0,5.0,5.0,5.0,4.0,,3.0,5.0,3.0,4.0,5.0,5.0,5.0,3.0,5.0,5.0,5.0,4.0,,S1422,43.6905032392,-79.34476857760001,317298.318,4838739.151000001
-889446,4154093,2017.0,2020.0,1967.0,PRIVATE,14,Toronto-Danforth,205 COSBURN AVE,12,160,2020-11-25,82,Evaluation needs to be conducted in 2 years,19,5.0,3.0,5.0,4.0,5.0,5.0,3.0,5.0,5.0,5.0,3.0,4.0,3.0,3.0,5.0,5.0,3.0,3.0,4.0,,S1422,43.690071937,-79.34393549149999,317365.564,4838691.356000001
-889447,4154097,2017.0,2020.0,1968.0,PRIVATE,14,Toronto-Danforth,210 COSBURN AVE,4,33,2020-11-25,72,Evaluation needs to be conducted in 2 years,17,4.0,3.0,5.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,4.0,3.0,4.0,5.0,4.0,3.0,,S1422,43.690544653,-79.3443418655,317332.707,4838743.813999999
-889448,4152611,2017.0,2020.0,1972.0,PRIVATE,20,Scarborough Southwest,560 BIRCHMOUNT RD,13,103,2020-11-24,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,3.0,4.0,5.0,4.0,4.0,3.0,3.0,4.0,5.0,4.0,3.0,4.0,5.0,4.0,3.0,,E2029,43.7123365662,-79.2710095666,323237.558,4841178.443
-889449,4152610,2017.0,2020.0,1969.0,PRIVATE,20,Scarborough Southwest,570 BIRCHMOUNT RD,10,112,2020-11-24,79,Evaluation needs to be conducted in 2 years,18,4.0,5.0,4.0,3.0,4.0,3.0,4.0,4.0,5.0,,3.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,E2029,43.7133504142,-79.2715314234,323195.19399999996,4841290.963
-889450,4153519,2018.0,2020.0,1920.0,PRIVATE,13,Toronto Centre,26 ST JOSEPH ST,6,65,2020-11-24,76,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,3.0,4.0,,3.0,4.0,3.0,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,,,S1321,43.6660925039,-79.3867723149,313910.664,4836035.558999999
-889451,4283460,2018.0,2020.0,1950.0,PRIVATE,2,Etobicoke Centre,4 ANGLESEY BLVD,3,20,2020-11-24,81,Evaluation needs to be conducted in 2 years,16,5.0,5.0,5.0,4.0,5.0,3.0,,3.0,,4.0,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,3.0,,W0229,43.6660993738,-79.5203712408,303141.44399999996,4836016.728
-889452,4155315,2017.0,2020.0,1960.0,PRIVATE,2,Etobicoke Centre,8 ANGLESEY BLVD,4,23,2020-11-24,81,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,3.0,,3.0,,4.0,5.0,5.0,5.0,4.0,5.0,4.0,3.0,4.0,3.0,,W0229,43.665842728,-79.5207230628,303113.062,4835988.223
-889453,4155316,2017.0,2020.0,1953.0,PRIVATE,2,Etobicoke Centre,12 ANGLESEY BLVD,3,38,2020-11-24,76,Evaluation needs to be conducted in 2 years,15,4.0,5.0,4.0,4.0,3.0,3.0,,3.0,,,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,3.0,,W0229,43.6655032213,-79.52118310739999,303075.94899999996,4835950.515
-889454,4155318,2017.0,2020.0,1943.0,PRIVATE,2,Etobicoke Centre,18 ANGLESEY BLVD,4,25,2020-11-24,71,Evaluation needs to be conducted in 2 years,15,4.0,4.0,3.0,3.0,3.0,3.0,,3.0,,,4.0,4.0,4.0,4.0,4.0,3.0,,4.0,3.0,,W0229,43.6649891625,-79.52164019050001,303039.06899999996,4835893.416
-889455,4152591,2017.0,2020.0,1976.0,PRIVATE,20,Scarborough Southwest,30 DENTON AVE,22,575,2020-11-24,87,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,3.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,E2028,43.693978012799995,-79.28769906560001,321897.909,4839135.311000001
-889456,4155585,2017.0,2020.0,1969.0,TCHC,22,Scarborough-Agincourt,2821 BIRCHMOUNT RD,12,237,2020-11-24,74,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,4.0,5.0,5.0,3.0,4.0,4.0,3.0,4.0,,E2227,43.7985740617,-79.30512678470001,320465.905,4850752.081
-889457,4155554,2017.0,2020.0,1963.0,PRIVATE,3,Etobicoke-Lakeshore,45 FORTY SECOND ST,4,53,2020-11-24,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,5.0,4.0,,2.0,4.0,4.0,4.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,,W0334,43.5882763733,-79.5428127838,301327.297,4827371.595
-889458,4155551,2017.0,2020.0,1963.0,PRIVATE,3,Etobicoke-Lakeshore,240 LAKE PROMENADE,7,118,2020-11-24,73,Evaluation needs to be conducted in 2 years,19,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,W0334,43.589265093,-79.53139518100001,302249.05100000004,4827481.981000001
-889459,4155555,2017.0,2020.0,1950.0,PRIVATE,3,Etobicoke-Lakeshore,55 FORTY SECOND ST,4,26,2020-11-24,82,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,4.0,4.0,4.0,,3.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,W0334,43.5886442481,-79.5434170167,301278.522,4827412.487
-889460,4156303,2017.0,2020.0,1961.0,PRIVATE,19,Beaches-East York,108 GOODWOOD PARK CRT,6,120,2020-11-24,77,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1930,43.694890666999996,-79.293643202,321418.24,4839236.464
-889461,4155979,2017.0,2020.0,1970.0,TCHC,21,Scarborough Centre,47 GILDER DR,6,66,2020-11-24,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,3.0,,3.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2134,43.736354755600004,-79.2553148807,324494.439,4843850.346
-889462,4286276,2017.0,2020.0,1980.0,TCHC,21,Scarborough Centre,51 GILDER DR,6,22,2020-11-24,74,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,,3.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2134,43.7366529492,-79.2546800304,324545.484,4843883.623
-889463,4268878,2017.0,2020.0,1980.0,TCHC,21,Scarborough Centre,85 GILDER DR,6,22,2020-11-24,76,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2134,43.736266700200005,-79.25386808100001,324611.016,4843840.908
-889464,4155390,2017.0,2020.0,1962.0,PRIVATE,2,Etobicoke Centre,350 THE WEST MALL,6,55,2020-11-24,83,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,3.0,3.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,W0233,43.639035156999995,-79.564993488,299540.24600000004,4833012.694
-889465,4154168,2017.0,2020.0,1959.0,PRIVATE,15,Don Valley West,36 THORNCLIFFE PARK DR,6,70,2020-11-24,79,Evaluation needs to be conducted in 2 years,17,5.0,3.0,5.0,4.0,3.0,4.0,,4.0,3.0,,3.0,3.0,5.0,5.0,4.0,2.0,5.0,5.0,4.0,,N1533,43.702708953,-79.344590225,317309.891,4840096.148
-889466,4155381,2017.0,2020.0,1969.0,PRIVATE,2,Etobicoke Centre,306 THE WEST MALL,5,48,2020-11-24,78,Evaluation needs to be conducted in 2 years,18,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,,W0233,43.635999846400004,-79.5629152315,299707.924,4832674.405
-889467,4155384,2017.0,2020.0,1950.0,PRIVATE,2,Etobicoke Centre,339 THE WEST MALL,5,51,2020-11-24,67,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,W0233,43.638068798,-79.563940807,299625.092,4832905.27
-889468,4154151,2017.0,2020.0,1965.0,PRIVATE,15,Don Valley West,43 THORNCLIFFE PARK DR,20,380,2020-11-24,83,Evaluation needs to be conducted in 2 years,19,5.0,5.0,5.0,3.0,4.0,5.0,3.0,4.0,5.0,5.0,3.0,5.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,,N1533,43.70045036,-79.344507259,317317.05600000004,4839845.249
-889469,4154152,2017.0,2020.0,1966.0,PRIVATE,15,Don Valley West,47 THORNCLIFFE PARK DR,25,474,2020-11-24,75,Evaluation needs to be conducted in 2 years,19,5.0,3.0,5.0,2.0,4.0,4.0,3.0,4.0,5.0,5.0,3.0,4.0,3.0,4.0,3.0,3.0,4.0,4.0,3.0,,N1533,43.700783732,-79.34267244,317464.875,4839882.563
-889470,4154153,2017.0,2020.0,1968.0,PRIVATE,15,Don Valley West,49 THORNCLIFFE PARK DR,20,400,2020-11-24,85,Evaluation needs to be conducted in 2 years,19,5.0,3.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,4.0,,N1533,43.701948808999994,-79.342340022,317491.42100000003,4840012.05
-889471,4154155,2017.0,2020.0,1967.0,PRIVATE,15,Don Valley West,65 THORNCLIFFE PARK DR,20,332,2020-11-24,76,Evaluation needs to be conducted in 2 years,18,5.0,3.0,3.0,3.0,4.0,5.0,5.0,3.0,5.0,,3.0,4.0,5.0,4.0,3.0,4.0,3.0,3.0,3.0,,N1533,43.703487555600006,-79.3402691534,317658.262,4840182.3719999995
-889472,4154157,2017.0,2020.0,1966.0,PRIVATE,15,Don Valley West,75 THORNCLIFFE PARK DR,17,308,2020-11-24,84,Evaluation needs to be conducted in 2 years,19,5.0,3.0,5.0,3.0,4.0,5.0,2.0,4.0,4.0,5.0,3.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,3.0,,N1533,43.705284648,-79.341449141,317562.511,4840382.789
-889473,4245705,2017.0,2020.0,1967.0,PRIVATE,3,Etobicoke-Lakeshore,359 KIPLING AVE,3,12,2020-11-24,75,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,4.0,3.0,4.0,,2.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,2.0,,W0335,43.600993851800006,-79.5179299016,303336.876,4828783.712
-889474,4153671,2017.0,2020.0,1970.0,PRIVATE,19,Beaches-East York,2 KINGSTON RD,4,16,2020-11-24,76,Evaluation needs to be conducted in 2 years,15,3.0,4.0,3.0,4.0,4.0,4.0,,4.0,,,3.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,,S1937,43.667724652,-79.31265581,319889.941,4836214.615
-889475,4156597,2017.0,2020.0,1970.0,PRIVATE,19,Beaches-East York,4 KINGSTON RD,4,16,2020-11-24,75,Evaluation needs to be conducted in 2 years,15,3.0,4.0,3.0,4.0,4.0,4.0,,4.0,,,3.0,4.0,4.0,4.0,4.0,3.0,,4.0,4.0,,S1937,43.667904365,-79.312792617,319883.143,4836233.964
-889476,4264076,2017.0,2020.0,1970.0,PRIVATE,19,Beaches-East York,8 KINGSTON RD,3,16,2020-11-24,75,Evaluation needs to be conducted in 2 years,15,3.0,4.0,3.0,4.0,4.0,4.0,,4.0,,,3.0,4.0,4.0,4.0,4.0,3.0,,4.0,4.0,,S1937,43.668121582,-79.312392609,319915.464,4836258.731000001
-889477,4156594,2017.0,2020.0,1970.0,PRIVATE,19,Beaches-East York,10 KINGSTON RD,3,16,2020-11-24,75,Evaluation needs to be conducted in 2 years,15,3.0,4.0,3.0,4.0,4.0,4.0,,4.0,,,3.0,4.0,4.0,4.0,4.0,3.0,,4.0,4.0,,S1937,43.668304546,-79.312459034,319909.49100000004,4836279.985
-889478,4156593,2017.0,2020.0,1970.0,PRIVATE,19,Beaches-East York,12 KINGSTON RD,3,16,2020-11-24,75,Evaluation needs to be conducted in 2 years,15,3.0,4.0,3.0,4.0,4.0,4.0,,4.0,,,3.0,4.0,4.0,4.0,4.0,3.0,,4.0,4.0,,S1937,43.668417027,-79.312246964,319927.584,4836291.402
-889479,4156167,2017.0,2020.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,92 JAMES ST,3,34,2020-11-24,77,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,3.0,4.0,3.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0334,43.5899805571,-79.5423873901,301361.733,4827560.91
-889480,4154308,2017.0,2020.0,1950.0,PRIVATE,5,York South-Weston,2425 KEELE ST,3,12,2020-11-24,80,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0523,43.7110804111,-79.4781906555,306542.034,4841013.806
-889481,4155548,2017.0,2020.0,1963.0,PRIVATE,3,Etobicoke-Lakeshore,21 PARK BLVD,7,97,2020-11-24,73,Evaluation needs to be conducted in 2 years,19,3.0,3.0,5.0,3.0,3.0,4.0,3.0,2.0,4.0,4.0,3.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,,W0334,43.590583298,-79.5303135599,302336.70399999997,4827627.441000001
-889482,4155547,2017.0,2020.0,1963.0,PRIVATE,3,Etobicoke-Lakeshore,31 PARK BLVD,7,97,2020-11-24,74,Evaluation needs to be conducted in 2 years,20,4.0,3.0,5.0,3.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,5.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,W0334,43.5903629605,-79.5313842856,302250.238,4827602.996
-889483,4155584,2017.0,2020.0,1970.0,TCHC,22,Scarborough-Agincourt,365 BAY MILLS BLVD,13,186,2020-11-24,82,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,E2226,43.7812403712,-79.3008424612,320815.234,4848827.17
-889484,4155542,2017.0,2020.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,44 ARCADIAN CRCL,3,13,2020-11-23,84,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,3.0,5.0,,4.0,,3.0,4.0,4.0,5.0,4.0,4.0,5.0,,4.0,5.0,,W0334,43.593328004600004,-79.5267034096,302628.294,4827932.2639999995
-889485,4154302,2017.0,2020.0,1960.0,PRIVATE,5,York South-Weston,2 ARROWSMITH AVE,3,11,2020-11-23,61,Evaluation needs to be conducted in 1 year,15,2.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,2.0,3.0,5.0,3.0,3.0,3.0,,4.0,3.0,,W0529,43.7044245269,-79.4774946495,306598.318,4840274.3780000005
-889486,4154015,2017.0,2020.0,1955.0,PRIVATE,8,Eglinton-Lawrence,80 CASTLEFIELD AVE,3,17,2020-11-23,77,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,3.0,4.0,5.0,3.0,4.0,3.0,,4.0,4.0,,N0833,43.7112480304,-79.403629987,312550.619,4841036.746
-889487,4153953,2017.0,2020.0,1961.0,PRIVATE,8,Eglinton-Lawrence,650 EGLINTON AVE W,8,102,2020-11-23,85,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,,N0832,43.702630066400005,-79.4192210423,311295.136,4840077.96
-889488,4153186,2017.0,2020.0,1958.0,PRIVATE,11,University-Rosedale,50 WALMER RD,4,35,2020-11-23,72,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,3.0,4.0,3.0,,3.0,4.0,4.0,4.0,4.0,5.0,3.0,3.0,3.0,,3.0,4.0,,S1126,43.669364101000006,-79.407141875,312272.44399999996,4836384.134
-889489,4155438,2017.0,2020.0,1950.0,PRIVATE,1,Etobicoke North,2366 ISLINGTON AVE,3,16,2020-11-23,80,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,3.0,,4.0,,,4.0,3.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,,W0130,43.7196647917,-79.5577092738,300134.561,4841968.994
-889490,4152740,2017.0,2020.0,1965.0,PRIVATE,24,Scarborough-Guildwood,555 BRIMORTON DR,15,180,2020-11-23,82,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,E2425,43.7728909718,-79.231398356,326407.892,4847915.281
-889491,4154014,2017.0,2020.0,1950.0,PRIVATE,8,Eglinton-Lawrence,20 ROSELAWN AVE,3,12,2020-11-23,74,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,4.0,3.0,4.0,,3.0,,4.0,4.0,4.0,5.0,4.0,3.0,3.0,,4.0,3.0,,N0833,43.711067487,-79.40004192859999,312839.782,4841017.038
-889492,4506245,,2020.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,9 BIRCHLEA AVE,3,13,2020-11-23,73,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0334,43.592594591,-79.52818256,302515.24100000004,4827853.339
-889493,4506270,,2020.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,11 BIRCHLEA AVE,3,13,2020-11-23,73,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0334,43.592573631,-79.528276577,302501.80199999997,4827845.661
-889494,4155544,2017.0,2020.0,1950.0,PRIVATE,3,Etobicoke-Lakeshore,13 BIRCHLEA AVE,3,14,2020-11-23,81,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0334,43.59254528100001,-79.528407015,302488.51,4827835.76
-889495,4155543,2017.0,2020.0,1950.0,PRIVATE,3,Etobicoke-Lakeshore,15 BIRCHLEA AVE,3,14,2020-11-23,80,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,4.0,,W0334,43.592527408,-79.528501876,302478.048,4827838.18
-889496,4155422,2017.0,2020.0,1955.0,PRIVATE,1,Etobicoke North,75 IRWIN RD,6,53,2020-11-22,67,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,4.0,4.0,3.0,,3.0,5.0,,4.0,3.0,5.0,3.0,3.0,3.0,2.0,2.0,3.0,,W0131,43.7249788623,-79.5580297876,300109.16,4842559.379
-889497,4155427,2017.0,2020.0,1963.0,PRIVATE,1,Etobicoke North,25 JANSUSIE RD,3,45,2020-11-22,73,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,4.0,3.0,,3.0,,2.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,,W0129,43.730245049,-79.57627802100001,298653.212,4843046.808
-889498,4155562,2017.0,2020.0,1971.0,TCHC,20,Scarborough Southwest,40 TEESDALE PL,24,278,2020-11-21,72,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,2.0,4.0,4.0,4.0,4.0,4.0,,3.0,3.0,2.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,E2028,43.6972076653,-79.2864410678,321998.393,4839494.37
-889499,4155563,2017.0,2020.0,1971.0,TCHC,20,Scarborough Southwest,30 TEESDALE PL,24,278,2020-11-21,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,,3.0,4.0,3.0,5.0,4.0,4.0,5.0,5.0,3.0,,E2028,43.697003832200004,-79.28779229199999,321889.538,4839471.448
-889500,4154875,2017.0,2020.0,1960.0,PRIVATE,16,Don Valley East,1 ECCLESTON DR,4,62,2020-11-21,92,Evaluation needs to be conducted in 3 years,19,5.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,5.0,,N1628,43.727010393,-79.3140806139,319763.103,4842800.045
-889501,4155051,2017.0,2020.0,1958.0,PRIVATE,8,Eglinton-Lawrence,131 LYON CRT,4,26,2020-11-20,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0831,43.7030805404,-79.44023175939999,309601.661,4840126.516
-889502,4152589,2017.0,2020.0,1969.0,PRIVATE,20,Scarborough Southwest,10 MACEY AVE,16,255,2020-11-20,65,Evaluation needs to be conducted in 1 year,19,4.0,4.0,3.0,3.0,2.0,3.0,3.0,5.0,5.0,,3.0,2.0,2.0,4.0,2.0,3.0,4.0,4.0,3.0,3.0,E2028,43.6922807906,-79.2871199966,321945.072,4838946.874
-889503,4154802,2017.0,2020.0,1970.0,PRIVATE,16,Don Valley East,50 GRAYDON HALL DR,20,304,2020-11-20,84,Evaluation needs to be conducted in 2 years,19,4.0,5.0,5.0,4.0,4.0,4.0,3.0,4.0,5.0,4.0,3.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,3.0,,N1621,43.764613327,-79.345774526,317201.725,4846973.244
-889504,4154805,2017.0,2020.0,1970.0,PRIVATE,16,Don Valley East,100 GRAYDON HALL DR,24,286,2020-11-20,85,Evaluation needs to be conducted in 2 years,19,4.0,5.0,5.0,4.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,3.0,,N1621,43.7654302303,-79.3443358391,317317.648,4847063.257
-889505,4153059,2017.0,2020.0,1935.0,PRIVATE,4,Parkdale-High Park,34 NOBLE ST,3,18,2020-11-20,75,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,3.0,3.0,,3.0,,,3.0,4.0,4.0,4.0,4.0,4.0,,4.0,3.0,,S0435,43.6428677432,-79.431388625,310319.87100000004,4833437.692
-889506,4155038,2017.0,2020.0,1968.0,PRIVATE,12,Toronto-St. Paul's,633 NORTHCLIFFE BLVD,11,86,2020-11-20,73,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,3.0,3.0,3.0,,4.0,4.0,4.0,3.0,3.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,S1222,43.695129788,-79.4469525657,309060.50399999996,4839242.877
-889507,4155060,2017.0,2020.0,1960.0,PRIVATE,8,Eglinton-Lawrence,178 LOCKSLEY AVE,3,24,2020-11-20,80,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0831,43.7023837133,-79.4491090339,308886.201,4840048.632
-889508,4154804,2017.0,2020.0,1970.0,PRIVATE,16,Don Valley East,150 GRAYDON HALL DR,25,298,2020-11-20,89,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,4.0,4.0,3.0,4.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,,N1621,43.7656767876,-79.34282796560001,317438.988,4847090.877
-889509,4153007,2017.0,2020.0,1952.0,PRIVATE,4,Parkdale-High Park,1502 KING ST W,3,15,2020-11-20,61,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,,,S0436,43.636587848400005,-79.4403366563,309598.452,4832739.518
-889510,4153531,2017.0,2020.0,1975.0,PRIVATE,13,Toronto Centre,33 ISABELLA ST,27,419,2020-11-20,74,Evaluation needs to be conducted in 2 years,19,3.0,4.0,5.0,3.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1322,43.667643942,-79.383679432,314164.83,4836195.449
-889511,4153533,2017.0,2020.0,1963.0,PRIVATE,13,Toronto Centre,59 ISABELLA ST,14,101,2020-11-20,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1322,43.667962528000004,-79.382564773,314254.674,4836230.967
-889512,4153545,2017.0,2020.0,1917.0,PRIVATE,13,Toronto Centre,96 ISABELLA ST,4,28,2020-11-20,74,Evaluation needs to be conducted in 2 years,14,4.0,4.0,3.0,4.0,4.0,4.0,,3.0,,,4.0,3.0,5.0,4.0,3.0,4.0,,3.0,,,S1322,43.6689634555,-79.38048370930001,314422.606,4836341.446
-889513,4155310,2017.0,2020.0,1962.0,PRIVATE,2,Etobicoke Centre,307 THE KINGSWAY,3,26,2020-11-20,79,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,3.0,,3.0,,4.0,5.0,4.0,5.0,3.0,5.0,4.0,,4.0,3.0,,W0229,43.6646746732,-79.5222520533,302989.714,4835858.492
-889514,4155322,,2020.0,1952.0,PRIVATE,2,Etobicoke Centre,308 THE KINGSWAY,4,34,2020-11-20,79,Evaluation needs to be conducted in 2 years,16,4.0,5.0,5.0,4.0,4.0,3.0,,3.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,2.0,,W0229,43.6641680509,-79.5231261637,302919.2,4835802.228999999
-889515,4155200,2017.0,2020.0,1950.0,SOCIAL HOUSING,4,Parkdale-High Park,495 RIVERSIDE DR,3,25,2020-11-20,81,Evaluation needs to be conducted in 2 years,16,4.0,3.0,5.0,4.0,3.0,4.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,5.0,,4.0,4.0,,S0425,43.6481742891,-79.4902420295,305571.54,4834025.1389999995
-889516,4153669,2017.0,2020.0,1920.0,PRIVATE,19,Beaches-East York,2451 QUEEN ST E,4,29,2020-11-20,73,Evaluation needs to be conducted in 2 years,14,3.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,3.0,3.0,4.0,3.0,3.0,4.0,,4.0,,,S1942,43.6731276017,-79.28409669439999,322194.262,4836819.675
-889517,4153670,2017.0,2020.0,1920.0,PRIVATE,19,Beaches-East York,2453 QUEEN ST E,4,16,2020-11-20,72,Evaluation needs to be conducted in 2 years,13,3.0,4.0,4.0,4.0,,3.0,,4.0,,,4.0,3.0,4.0,3.0,3.0,4.0,,4.0,,,S1942,43.6731843525,-79.2839314584,322207.57,4836826.0139999995
-889518,4154824,2017.0,2020.0,1969.0,PRIVATE,17,Don Valley North,1650 SHEPPARD AVE E,15,149,2020-11-20,88,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,2.0,3.0,N1727,43.775121294099996,-79.3490805112,316933.665,4848139.196
-889519,4153664,2017.0,2020.0,1927.0,PRIVATE,19,Beaches-East York,2269 QUEEN ST E,3,17,2020-11-20,70,Evaluation needs to be conducted in 2 years,14,4.0,4.0,3.0,4.0,3.0,4.0,,3.0,,,4.0,3.0,4.0,3.0,4.0,3.0,,3.0,,,S1942,43.6712526429,-79.293268236,321455.209,4836609.522
-889520,4250634,2018.0,2020.0,1925.0,PRIVATE,19,Beaches-East York,2367 QUEEN ST E,3,24,2020-11-20,70,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,3.0,4.0,4.0,,3.0,,4.0,3.0,4.0,4.0,3.0,3.0,4.0,,3.0,3.0,,S1942,43.6721682166,-79.2883005888,321855.542,4836712.225
-889521,4153666,2017.0,2020.0,1930.0,PRIVATE,19,Beaches-East York,2373 QUEEN ST E,3,27,2020-11-20,70,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,3.0,4.0,4.0,,3.0,,4.0,3.0,4.0,4.0,3.0,3.0,4.0,,3.0,3.0,,S1942,43.6723206085,-79.2877515365,321899.772,4836729.268999999
-889522,4153668,2017.0,2020.0,1920.0,PRIVATE,19,Beaches-East York,2449 QUEEN ST E,4,29,2020-11-20,76,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,3.0,4.0,3.0,3.0,4.0,,4.0,,,S1942,43.6730490225,-79.2843149122,322176.688,4836810.9
-889523,4155056,2017.0,2020.0,1959.0,PRIVATE,8,Eglinton-Lawrence,1050 CASTLEFIELD AVE,5,64,2020-11-20,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0831,43.7010927419,-79.4506862658,308759.154,4839905.141
-889524,4155055,2017.0,2020.0,1959.0,PRIVATE,8,Eglinton-Lawrence,1040 CASTLEFIELD AVE,4,44,2020-11-20,80,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,,N0831,43.7010486833,-79.4499999014,308814.479,4839900.279
-889525,4155054,2017.0,2020.0,1956.0,PRIVATE,8,Eglinton-Lawrence,1030 CASTLEFIELD AVE,5,56,2020-11-20,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0831,43.7009672272,-79.4495637221,308849.641,4839891.251
-889526,4153053,2017.0,2020.0,1960.0,PRIVATE,4,Parkdale-High Park,470 RONCESVALLES AVE,4,39,2020-11-20,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,3.0,4.0,,3.0,,,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,,S0432,43.653020008,-79.451921964,308662.363,4834565.429
-889527,4152593,2017.0,2020.0,1982.0,PRIVATE,20,Scarborough Southwest,30 BURN HILL RD,22,238,2020-11-20,81,Evaluation needs to be conducted in 2 years,19,4.0,5.0,4.0,4.0,3.0,5.0,4.0,5.0,4.0,,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,E2028,43.6992222546,-79.2778348112,322691.471,4839719.991
-889528,4152608,2017.0,2020.0,1950.0,PRIVATE,20,Scarborough Southwest,650 DAWES RD,3,17,2020-11-20,74,Evaluation needs to be conducted in 2 years,14,3.0,3.0,4.0,3.0,3.0,3.0,,5.0,,,3.0,3.0,5.0,4.0,4.0,5.0,,4.0,,,E2028,43.7075426167,-79.2947631998,321324.76,4840640.89
-889529,4156720,2017.0,2020.0,1962.0,PRIVATE,2,Etobicoke Centre,327 DIXON RD,6,55,2020-11-19,74,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,2.0,4.0,,3.0,4.0,5.0,3.0,5.0,5.0,2.0,3.0,3.0,,W0222,43.694646278,-79.55506382899999,300345.581,4839190.371
-889530,4155489,2017.0,2020.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,2561 LAKE SHORE BLVD W,4,14,2020-11-19,80,Evaluation needs to be conducted in 2 years,14,4.0,4.0,5.0,4.0,,3.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,W0336,43.6088644692,-79.4900435258,305588.026,4829658.026000001
-889531,4156583,2017.0,2020.0,1968.0,PRIVATE,2,Etobicoke Centre,60 CALLOWHILL DR,12,141,2020-11-19,74,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,4.0,4.0,2.0,3.0,2.0,4.0,3.0,5.0,4.0,4.0,3.0,4.0,5.0,3.0,,W0221,43.682156045,-79.5643051616,299650.165,4837805.9
-889532,4154079,2018.0,2020.0,1962.0,PRIVATE,19,Beaches-East York,327 CHISHOLM AVE,4,20,2020-11-19,78,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,,S1926,43.6971816506,-79.30644386430001,320386.05199999997,4839487.593
-889533,4155180,2017.0,2020.0,1964.0,PRIVATE,5,York South-Weston,777 JANE ST,9,106,2020-11-19,72,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,4.0,3.0,4.0,3.0,4.0,4.0,,3.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,,W0539,43.6730591704,-79.4935959279,305300.77,4836789.64
-889534,4153529,2017.0,2020.0,1960.0,PRIVATE,13,Toronto Centre,105 ISABELLA ST,11,221,2020-11-19,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,4.0,4.0,3.0,5.0,3.0,4.0,4.0,4.0,3.0,4.0,,S1322,43.6684688832,-79.3799631196,314464.668,4836286.561000001
-889535,4154859,2017.0,2020.0,1964.0,PRIVATE,16,Don Valley East,22 TINDER CRES,4,60,2020-11-19,86,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N1628,43.72645012979999,-79.3091895206,320157.292,4842738.692
-889536,4154522,2017.0,2020.0,1956.0,PRIVATE,8,Eglinton-Lawrence,16 HOTSPUR RD,3,12,2020-11-19,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,,,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,,N0823,43.73325697600001,-79.4341048887,310075.36199999996,4843467.916
-889537,4152941,2017.0,2020.0,1958.0,PRIVATE,4,Parkdale-High Park,205 KEELE ST,4,42,2020-11-19,72,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,3.0,3.0,,3.0,,3.0,4.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,S0429,43.65971467560001,-79.4617878892,307866.434,4835307.806
-889538,4154518,2017.0,2020.0,1956.0,PRIVATE,8,Eglinton-Lawrence,25 HOTSPUR RD,3,11,2020-11-19,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,1.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0823,43.732587967700006,-79.43470192619999,310044.798,4843405.008
-889539,4155428,2017.0,2020.0,1963.0,PRIVATE,1,Etobicoke North,35 JANSUSIE RD,3,45,2020-11-19,73,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,4.0,3.0,,3.0,,2.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,,W0129,43.73108456,-79.576700252,298674.512,4842987.092
-889540,4153657,2017.0,2020.0,1990.0,SOCIAL HOUSING,14,Toronto-Danforth,570 COXWELL AVE,3,11,2020-11-19,83,Evaluation needs to be conducted in 2 years,16,4.0,5.0,5.0,4.0,5.0,5.0,,5.0,,,3.0,3.0,5.0,3.0,4.0,3.0,5.0,3.0,4.0,,S1432,43.679932553,-79.3224960568,319096.268,4837568.387
-889541,4154037,2017.0,2020.0,1971.0,PRIVATE,19,Beaches-East York,7 CRESCENT PL,29,584,2020-11-19,72,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,,3.0,3.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,,S1930,43.695055073999995,-79.291784761,321568.003,4839255.097
-889542,4284986,2017.0,2020.0,1971.0,PRIVATE,19,Beaches-East York,9 CRESCENT PL,29,587,2020-11-19,72,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,,3.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,,S1930,43.695648592,-79.291287219,321619.854,4839297.583000001
-889543,4156314,2017.0,2020.0,1971.0,PRIVATE,19,Beaches-East York,11 CRESCENT PL,29,159,2020-11-19,70,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,4.0,,4.0,4.0,4.0,3.0,3.0,3.0,4.0,4.0,3.0,,S1930,43.695136718,-79.290535808,321603.253,4839337.069
-889544,4155796,2017.0,2020.0,1976.0,PRIVATE,22,Scarborough-Agincourt,125 BONIS AVE,11,263,2020-11-19,89,Evaluation needs to be conducted in 3 years,19,4.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,5.0,,5.0,4.0,5.0,4.0,5.0,4.0,4.0,5.0,4.0,5.0,E2229,43.78385662,-79.294501805,321346.372,4849113.023
-889545,4152585,2017.0,2020.0,1960.0,PRIVATE,20,Scarborough Southwest,20 PELL ST,3,11,2020-11-19,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,3.0,3.0,,5.0,,,3.0,4.0,5.0,3.0,3.0,2.0,,4.0,3.0,,E2035,43.70777445,-79.248713747,325033.789,4840699.303
-889546,4156249,2017.0,2020.0,1960.0,PRIVATE,20,Scarborough Southwest,22 PELL ST,3,10,2020-11-19,69,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,,,3.0,4.0,5.0,3.0,3.0,3.0,,4.0,4.0,,E2035,43.707978053999994,-79.248780872,325050.664,4840714.735
-889547,4156048,2017.0,2020.0,1960.0,PRIVATE,20,Scarborough Southwest,24 PELL ST,3,11,2020-11-19,67,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,,,3.0,4.0,5.0,3.0,3.0,2.0,,4.0,3.0,,E2035,43.708100911,-79.248499263,325056.88300000003,4840728.7469999995
-889548,4155275,2017.0,2020.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,16 RIVERWOOD PKWY,5,45,2020-11-19,81,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,4.0,,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,W0327,43.6390524323,-79.4890660176,305666.544,4833011.7530000005
-889549,4155289,2017.0,2020.0,1958.0,PRIVATE,3,Etobicoke-Lakeshore,25 RIVERWOOD PKWY,4,50,2020-11-19,83,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,W0327,43.639857076400006,-79.48883782989999,305684.946,4833101.147
-889550,4155290,2017.0,2020.0,1958.0,PRIVATE,3,Etobicoke-Lakeshore,33 RIVERWOOD PKWY,4,50,2020-11-19,83,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,W0327,43.640211934499995,-79.4896809434,305616.916,4833140.562
-889551,4155272,2017.0,2020.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,34 RIVERWOOD PKWY,4,35,2020-11-19,84,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,W0327,43.6397937003,-79.4903246449,305564.983,4833094.093
-889552,4153526,2017.0,2020.0,1960.0,PRIVATE,13,Toronto Centre,10 HUNTLEY ST,20,116,2020-11-19,85,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,,S1322,43.668602291400006,-79.37821746270001,314605.424,4836301.5819999995
-889553,4154864,2017.0,2020.0,1955.0,PRIVATE,16,Don Valley East,2 BIGGIN CRT,4,77,2020-11-19,92,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,4.0,5.0,4.0,,5.0,4.0,,4.0,5.0,5.0,4.0,4.0,5.0,4.0,5.0,5.0,,N1628,43.72905505560001,-79.3049498934,320498.183,4843028.87
-889554,4154867,2017.0,2020.0,1955.0,PRIVATE,16,Don Valley East,3 BIGGIN CRT,4,55,2020-11-19,91,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,4.0,5.0,,4.0,4.0,4.0,5.0,5.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,,N1628,43.7282648735,-79.3058539405,320425.555,4842940.919
-889555,4154866,2017.0,2020.0,1955.0,PRIVATE,16,Don Valley East,5 BIGGIN CRT,4,65,2020-11-19,93,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,,N1628,43.7279966031,-79.3068020912,320349.24,4842910.937
-889556,4255639,2017.0,2020.0,1958.0,PRIVATE,6,York Centre,3892 BATHURST ST,4,29,2020-11-19,84,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,3.0,5.0,4.0,,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,3.0,,N0629,43.7434082463,-79.4360131728,309938.25899999996,4844606.96
-889557,4255640,2017.0,2020.0,1958.0,PRIVATE,6,York Centre,3894 BATHURST ST,4,29,2020-11-19,89,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,4.0,5.0,4.0,,3.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,,N0629,43.743702668100006,-79.43607830170001,309932.99,4844639.666999999
-889558,4154591,2017.0,2020.0,1958.0,PRIVATE,6,York Centre,3896 BATHURST ST,4,30,2020-11-19,86,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,4.0,5.0,4.0,,3.0,4.0,4.0,5.0,4.0,5.0,3.0,4.0,4.0,5.0,4.0,5.0,,N0629,43.7439610802,-79.4361472401,309927.417,4844668.373
-889559,4153685,2017.0,2020.0,1917.0,PRIVATE,19,Beaches-East York,97 LEE AVE,3,10,2020-11-19,73,Evaluation needs to be conducted in 2 years,17,3.0,4.0,4.0,3.0,4.0,4.0,,4.0,,4.0,4.0,3.0,5.0,3.0,3.0,3.0,4.0,4.0,3.0,,S1939,43.6711166025,-79.29799553229999,321074.04,4836593.47
-889560,4153065,2017.0,2020.0,1897.0,SOCIAL HOUSING,4,Parkdale-High Park,10 LANSDOWNE AVE,3,21,2020-11-19,73,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,,,4.0,4.0,2.0,2.0,4.0,4.0,,3.0,,,S0435,43.6410463174,-79.4371700849,309853.582,4833234.996
-889561,4152810,2017.0,2020.0,1969.0,PRIVATE,24,Scarborough-Guildwood,421 MARKHAM RD,12,159,2020-11-19,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,E2430,43.7506077851,-79.2210328403,327250.61699999997,4845442.448
-889562,4152812,2017.0,2020.0,1995.0,SOCIAL HOUSING,24,Scarborough-Guildwood,525 MARKHAM RD,8,115,2020-11-19,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,E2430,43.756754208000004,-79.223973575,327027.68100000004,4846037.557
-889563,4153016,2017.0,2020.0,1978.0,PRIVATE,4,Parkdale-High Park,22 MAYNARD AVE,3,36,2020-11-19,79,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,3.0,3.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,S0436,43.637780662299996,-79.4379497225,309790.94399999996,4832872.164
-889564,4288860,2017.0,2020.0,1958.0,PRIVATE,19,Beaches-East York,1981 DUNDAS ST E,3,12,2020-11-19,74,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,4.0,4.0,,4.0,,4.0,3.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,S1937,43.668927771999996,-79.315350573,319674.841,4836347.995
-889565,4153530,2017.0,2020.0,1960.0,PRIVATE,13,Toronto Centre,100 GLOUCESTER ST,11,212,2020-11-19,72,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,3.0,4.0,3.0,4.0,,4.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,3.0,,S1322,43.6680608437,-79.37977337609999,314480.036,4836241.251
-889566,4153656,2017.0,2020.0,1985.0,SOCIAL HOUSING,14,Toronto-Danforth,100 UNITY RD,6,98,2020-11-19,86,Evaluation needs to be conducted in 3 years,20,5.0,3.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,3.0,3.0,3.0,5.0,3.0,3.0,5.0,5.0,3.0,5.0,S1432,43.677802998900006,-79.3304925488,318452.018,4837330.443
-889567,4153655,2017.0,2020.0,1983.0,SOCIAL HOUSING,14,Toronto-Danforth,110 UNITY RD,8,174,2020-11-19,90,Evaluation needs to be conducted in 3 years,20,5.0,3.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,3.0,5.0,4.0,5.0,4.0,3.0,5.0,5.0,4.0,5.0,S1432,43.6779324239,-79.3299297782,318497.365,4837344.914
-889568,4154526,2017.0,2020.0,1957.0,PRIVATE,8,Eglinton-Lawrence,26 HOTSPUR RD,3,12,2020-11-19,75,Evaluation needs to be conducted in 2 years,16,4.0,4.0,1.0,4.0,3.0,4.0,,4.0,,,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0823,43.733002204399995,-79.4353409196,309977.291,4843434.838
-889569,4154506,2017.0,2020.0,1956.0,PRIVATE,8,Eglinton-Lawrence,10 WASDALE CRES,3,10,2020-11-19,80,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0823,43.731194699300005,-79.4353275935,309994.519,4843250.185
-889570,4152598,2017.0,2020.0,1968.0,PRIVATE,20,Scarborough Southwest,10 TEESDALE PL,24,285,2020-11-19,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,5.0,3.0,4.0,4.0,2.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,3.0,,E2028,43.6965267454,-79.2862044067,322017.663,4839418.771000001
-889571,4152817,2017.0,2020.0,1963.0,PRIVATE,24,Scarborough-Guildwood,70 STEVENVALE DR,6,100,2020-11-19,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,E2430,43.758941388800004,-79.2213676768,327220.55600000004,4846368.19
-889572,4152901,2017.0,2020.0,1957.0,PRIVATE,4,Parkdale-High Park,9 MORNINGSIDE AVE,4,36,2020-11-19,80,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,3.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S0430,43.645605233000005,-79.473469677,306924.468,4833740.943
-889573,4152597,2017.0,2020.0,1970.0,PRIVATE,20,Scarborough Southwest,20 TEESDALE PL,24,284,2020-11-19,82,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,5.0,3.0,4.0,4.0,,E2028,43.6959726218,-79.2874840709,321914.674,4839356.947
-889574,4155494,2017.0,2020.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,2547 LAKE SHORE BLVD W,4,26,2020-11-19,76,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,4.0,3.0,3.0,,3.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,W0336,43.609303546999996,-79.4892009672,305656.036,4829706.813
-889575,4155492,2017.0,2020.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,2555 LAKE SHORE BLVD W,4,26,2020-11-19,80,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,3.0,,3.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0336,43.609043237399995,-79.4898363283,305704.94399999996,4829683.294
-889576,4155490,2017.0,2020.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,2559 LAKE SHORE BLVD W,4,26,2020-11-19,80,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,3.0,,3.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0336,43.6090936183,-79.48861615060001,305607.776,4829677.695
-889577,4155365,2017.0,2020.0,1961.0,PRIVATE,2,Etobicoke Centre,333 DIXON RD,6,55,2020-11-19,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,2.0,3.0,4.0,5.0,4.0,4.0,5.0,3.0,3.0,5.0,,W0222,,,300298.13399999996,4839176.844
-889578,4269230,2017.0,2020.0,1959.0,PRIVATE,20,Scarborough Southwest,508 DANFORTH RD,3,24,2020-11-18,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,4.0,4.0,,5.0,,,4.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,E2030,43.7092676432,-79.2670048703,323561.223,4840838.393
-889579,4154067,2017.0,2020.0,1960.0,PRIVATE,19,Beaches-East York,2890 ST CLAIR AVE E,4,31,2020-11-18,72,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,3.0,4.0,4.0,,4.0,,,3.0,4.0,3.0,3.0,4.0,4.0,,4.0,3.0,,S1924,43.707880094,-79.302844655,320715.28,4840691.633
-889580,4154066,2017.0,2020.0,1955.0,PRIVATE,19,Beaches-East York,2892 ST CLAIR AVE E,4,34,2020-11-18,77,Evaluation needs to be conducted in 2 years,15,4.0,4.0,3.0,4.0,4.0,3.0,,4.0,,,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,,S1924,43.70796583,-79.30242735899999,320686.3,4840682.162
-889581,4154063,2017.0,2020.0,1956.0,PRIVATE,19,Beaches-East York,2920 ST CLAIR AVE E,4,15,2020-11-18,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,,S1924,43.708477676,-79.3002028238,320886.13,4840743.72
-889582,4154062,2017.0,2020.0,1956.0,PRIVATE,19,Beaches-East York,2922 ST CLAIR AVE E,4,16,2020-11-18,79,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,3.0,4.0,4.0,4.0,,4.0,4.0,,S1924,43.7085088591,-79.2998972117,320910.751,4840747.242
-889583,4155366,2017.0,2020.0,1968.0,PRIVATE,2,Etobicoke Centre,311 DIXON RD,16,178,2020-11-18,69,Evaluation needs to be conducted in 2 years,19,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,3.0,3.0,5.0,3.0,4.0,1.0,3.0,3.0,3.0,,W0222,43.6952084517,-79.5537109023,300454.932,4839251.808
-889584,4153660,2017.0,2020.0,1930.0,PRIVATE,14,Toronto-Danforth,5 DONLANDS AVE,4,24,2020-11-18,77,Evaluation needs to be conducted in 2 years,14,5.0,3.0,5.0,3.0,5.0,5.0,,4.0,,,3.0,4.0,3.0,3.0,3.0,5.0,,3.0,,,S1427,43.6807286698,-79.3371951618,317910.956,4837654.388
-889585,4154064,2017.0,2020.0,1950.0,PRIVATE,19,Beaches-East York,1001 O'CONNOR DR,4,83,2020-11-18,74,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,,4.0,3.0,4.0,4.0,3.0,4.0,3.0,,4.0,3.0,,S1924,43.7097238899,-79.30919265920001,320161.322,4840880.499
-889586,4154500,2017.0,2020.0,1960.0,PRIVATE,8,Eglinton-Lawrence,93 NEPTUNE DR,3,10,2020-11-18,73,Evaluation needs to be conducted in 2 years,17,3.0,4.0,4.0,3.0,4.0,4.0,,3.0,,3.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,,N0823,43.7316875988,-79.43837313590001,309749.131,4843304.7530000005
-889587,4153034,2017.0,2020.0,1957.0,PRIVATE,4,Parkdale-High Park,177 JAMESON AVE,7,73,2020-11-18,81,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,5.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,S0436,43.6385987342,-79.4361728843,309934.239,4832963.146000001
-889588,4152919,2017.0,2020.0,1910.0,PRIVATE,4,Parkdale-High Park,29 JANE ST,3,18,2020-11-18,83,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,,,4.0,4.0,5.0,4.0,5.0,5.0,,4.0,3.0,,S0426,43.6502220463,-79.4843917868,306043.476,4834252.688999999
-889589,4153505,2019.0,2020.0,1931.0,PRIVATE,13,Toronto Centre,110 WELLESLEY ST E,6,48,2020-11-18,79,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,5.0,,4.0,4.0,,4.0,4.0,3.0,3.0,4.0,4.0,,4.0,4.0,,S1322,43.666837468100006,-79.3774688112,314666.097,4836105.602
-889590,4153507,2017.0,2020.0,1888.0,PRIVATE,13,Toronto Centre,510 JARVIS ST,3,16,2020-11-18,81,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,5.0,3.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,S1322,43.66751677640001,-79.3792333809,314523.675,4836180.868
-889591,4154080,2017.0,2020.0,1962.0,TCHC,19,Beaches-East York,9 HALDON AVE,6,200,2020-11-18,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1926,43.698524498000005,-79.311523697,319975.998,4839636.799
-889592,4152932,2017.0,2020.0,1926.0,PRIVATE,4,Parkdale-High Park,5 HIGH PARK AVE,3,21,2020-11-18,81,Evaluation needs to be conducted in 2 years,14,4.0,4.0,5.0,4.0,3.0,3.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,5.0,,4.0,,,S0428,43.6538760484,-79.46498174060001,307609.12899999996,4834659.06
-889593,4155035,2017.0,2020.0,1955.0,PRIVATE,12,Toronto-St. Paul's,641 VAUGHAN RD,4,45,2020-11-18,80,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,3.0,4.0,,5.0,3.0,,S1222,43.693235288800004,-79.4417901487,309476.779,4839032.662
-889594,4153066,2017.0,2020.0,1966.0,PRIVATE,4,Parkdale-High Park,55 TRILLER AVE,22,294,2020-11-18,74,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,4.0,4.0,3.0,4.0,3.0,4.0,3.0,4.0,3.0,4.0,3.0,3.0,4.0,3.0,4.0,3.0,,S0435,43.6399998042,-79.4436738938,309328.92600000004,4833118.38
-889595,4154964,2017.0,2020.0,1929.0,PRIVATE,12,Toronto-St. Paul's,118 VAUGHAN RD,4,32,2020-11-18,79,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,3.0,,S1229,43.684225142200006,-79.4217235507,311095.282,4838032.994
-889596,4153577,2017.0,2020.0,1992.0,SOCIAL HOUSING,14,Toronto-Danforth,179 BROADVIEW AVE,4,41,2020-11-18,87,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,3.0,5.0,3.0,3.0,4.0,5.0,5.0,3.0,3.0,,S1434,43.661102106499996,-79.3502357937,316863.476,4835472.037
-889597,4154099,2017.0,2020.0,1955.0,PRIVATE,14,Toronto-Danforth,246 COSBURN AVE,6,40,2020-11-18,87,Evaluation needs to be conducted in 3 years,18,5.0,3.0,5.0,5.0,5.0,5.0,,4.0,5.0,4.0,3.0,5.0,5.0,4.0,5.0,4.0,4.0,3.0,4.0,,S1422,43.6908769732,-79.3430214512,317439.08,4838780.927
-889598,4167764,2017.0,2020.0,1969.0,PRIVATE,20,Scarborough Southwest,544 BIRCHMOUNT RD,11,131,2020-11-18,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,4.0,4.0,5.0,4.0,4.0,3.0,4.0,5.0,4.0,3.0,5.0,3.0,4.0,4.0,,E2029,43.711075654,-79.270595187,323271.08,4841039.404
-889599,4154593,2017.0,2020.0,1958.0,PRIVATE,6,York Centre,3888 BATHURST ST,3,31,2020-11-18,84,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,4.0,5.0,4.0,,3.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,3.0,,N0629,43.7428392461,-79.4358673585,309950.049,4844543.7530000005
-889600,4154592,2017.0,2020.0,1958.0,PRIVATE,6,York Centre,3890 BATHURST ST,4,30,2020-11-18,84,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,3.0,5.0,4.0,,4.0,4.0,4.0,4.0,5.0,5.0,3.0,4.0,4.0,5.0,4.0,4.0,,N0629,43.7431564667,-79.4359561971,309942.868,4844578.99
-889601,4154073,2017.0,2020.0,1968.0,PRIVATE,19,Beaches-East York,114 BARRINGTON AVE,3,12,2020-11-18,70,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,,,3.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,,S1930,43.692368796000004,-79.302666418,320691.542,4838954.561000001
-889602,4156225,2017.0,2020.0,1950.0,PRIVATE,2,Etobicoke Centre,4754 DUNDAS ST W,4,14,2020-11-18,80,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,3.0,,3.0,,,4.0,4.0,5.0,4.0,5.0,4.0,,3.0,4.0,,W0229,43.652203577,-79.525983776,302683.101,4834465.154
-889603,4154803,2017.0,2020.0,1965.0,PRIVATE,16,Don Valley East,135 FENELON DR,19,218,2020-11-18,84,Evaluation needs to be conducted in 2 years,19,3.0,5.0,5.0,4.0,4.0,5.0,3.0,4.0,4.0,5.0,5.0,5.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,,N1621,43.7628388267,-79.337948675,317832.429,4846776.338
-889604,4152809,2017.0,2020.0,1970.0,PRIVATE,24,Scarborough-Guildwood,419 MARKHAM RD,12,160,2020-11-18,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,E2430,43.750117696000004,-79.220863337,327264.45,4845388.046
-889605,4155509,2017.0,2020.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,2704 LAKE SHORE BLVD W,4,30,2020-11-18,76,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,3.0,4.0,3.0,,3.0,,3.0,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0335,43.6028754682,-79.4965836376,305060.126,4828992.645
-889606,4155517,2017.0,2020.0,1980.0,TCHC,3,Etobicoke-Lakeshore,2835 LAKE SHORE BLVD W,9,148,2020-11-18,79,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,W0335,43.6013719933,-79.50153664300001,304660.286,4828825.602
-889607,4152583,2017.0,2020.0,1954.0,PRIVATE,20,Scarborough Southwest,62 GLEN EVEREST RD,4,46,2020-11-18,72,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,,,3.0,4.0,5.0,4.0,3.0,4.0,,4.0,4.0,,E2035,43.702519583000004,-79.253065845,324686.511,4840092.937
-889608,4155031,2021.0,2020.0,1960.0,PRIVATE,12,Toronto-St. Paul's,1801 EGLINTON AVE W,3,41,2020-11-18,71,Evaluation needs to be conducted in 2 years,17,4.0,4.0,3.0,3.0,3.0,4.0,,4.0,4.0,2.0,3.0,4.0,5.0,3.0,3.0,4.0,,4.0,3.0,,S1222,43.695756472,-79.449018677,308893.65,4839313.352
-889609,4153525,2017.0,2020.0,1929.0,PRIVATE,13,Toronto Centre,40 EARL ST,5,39,2020-11-18,80,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,S1322,43.66881613939999,-79.3759529086,314788.01399999997,4836325.598
-889610,4153524,2017.0,2020.0,1993.0,SOCIAL HOUSING,13,Toronto Centre,50 EARL ST,4,22,2020-11-18,84,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,5.0,4.0,4.0,,4.0,5.0,,4.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,,4.0,S1322,43.6688638916,-79.3757306133,314805.933,4836330.929
-889611,4152582,2017.0,2020.0,1960.0,PRIVATE,20,Scarborough Southwest,4 FOLCROFT AVE,3,13,2020-11-18,68,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,2.0,4.0,,3.0,,2.0,3.0,3.0,5.0,4.0,3.0,4.0,,4.0,4.0,,E2035,43.701030915,-79.25119809,324814.217,4839929.968
-889612,4285401,2018.0,2020.0,1952.0,PRIVATE,20,Scarborough Southwest,6 FOLCROFT AVE,3,13,2020-11-18,71,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,4.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,4.0,3.0,4.0,,4.0,4.0,,E2035,43.700957687,-79.251492552,324829.314,4839934.355
-889613,4154507,2017.0,2020.0,1950.0,PRIVATE,8,Eglinton-Lawrence,24 WASDALE CRES,3,11,2020-11-18,76,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,,N0823,43.730975673,-79.4363599981,309911.368,4843225.786
-889614,4155503,2017.0,2020.0,1950.0,PRIVATE,3,Etobicoke-Lakeshore,2515 LAKE SHORE BLVD W,4,30,2020-11-18,72,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,,,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,3.0,,W0336,43.6115410495,-79.489468582,305634.407,4829955.385
-889615,4155501,2017.0,2020.0,1970.0,PRIVATE,3,Etobicoke-Lakeshore,2519 LAKE SHORE BLVD W,4,44,2020-11-18,68,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,3.0,3.0,4.0,5.0,3.0,3.0,4.0,4.0,4.0,3.0,,W0336,43.610690629,-79.48977037,305628.08,4829849.455
-889616,4154509,2017.0,2020.0,1956.0,PRIVATE,8,Eglinton-Lawrence,30 WASDALE CRES,3,10,2020-11-18,74,Evaluation needs to be conducted in 2 years,17,3.0,4.0,4.0,4.0,3.0,4.0,,4.0,,4.0,3.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,,N0823,43.7308801884,-79.4368395679,309872.74199999997,4843215.149
-889617,4154511,2017.0,2020.0,1965.0,PRIVATE,8,Eglinton-Lawrence,34 WASDALE CRES,3,11,2020-11-18,69,Evaluation needs to be conducted in 2 years,17,4.0,4.0,1.0,4.0,3.0,4.0,,4.0,,3.0,4.0,4.0,4.0,3.0,3.0,3.0,4.0,4.0,3.0,,N0823,43.730776631400005,-79.4372931994,309836.206,4843203.617
-889618,4154790,2017.0,2020.0,1950.0,PRIVATE,16,Don Valley East,2 THE DONWAY E,4,40,2020-11-18,83,Evaluation needs to be conducted in 2 years,18,3.0,5.0,5.0,4.0,3.0,5.0,3.0,5.0,5.0,,3.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N1627,43.73286948689999,-79.3418228518,317526.80100000004,4843446.279
-889619,4154789,2017.0,2020.0,1950.0,PRIVATE,16,Don Valley East,4 THE DONWAY E,4,40,2020-11-18,81,Evaluation needs to be conducted in 2 years,18,3.0,5.0,5.0,4.0,3.0,4.0,3.0,4.0,5.0,,3.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N1627,43.7330607404,-79.340845323,317590.11699999997,4843465.219
-889620,4154543,2017.0,2020.0,1950.0,PRIVATE,8,Eglinton-Lawrence,47 WASDALE CRES,3,28,2020-11-18,80,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0823,43.73026578859999,-79.4369391147,309864.775,4843146.886
-889621,4153513,2017.0,2020.0,1929.0,PRIVATE,13,Toronto Centre,64 WELLESLEY ST E,5,60,2020-11-18,69,Evaluation needs to be conducted in 2 years,17,4.0,4.0,3.0,3.0,3.0,4.0,,4.0,3.0,3.0,4.0,4.0,4.0,3.0,4.0,3.0,,3.0,3.0,,S1322,43.665901023,-79.381806918,314316.12100000004,4836002.031
-889622,4155488,2017.0,2020.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,2532 LAKE SHORE BLVD W,4,46,2020-11-18,77,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,3.0,,3.0,,,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,W0336,43.6109821847,-79.4903809388,305560.767,4829893.29
-889623,4155447,2018.0,2020.0,1965.0,PRIVATE,1,Etobicoke North,2435 KIPLING AVE,13,153,2020-11-18,70,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,4.0,,3.0,3.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,,W0124,43.7388442337,-79.578720865,298443.619,4844101.085
-889624,4153630,2017.0,2020.0,1927.0,PRIVATE,14,Toronto-Danforth,245-247 LOGAN AVE,4,21,2020-11-17,88,Evaluation needs to be conducted in 3 years,16,5.0,5.0,5.0,5.0,3.0,5.0,,4.0,,4.0,4.0,5.0,2.0,5.0,4.0,4.0,5.0,5.0,,,S1441,,,317503.543,4835393.504
-889625,4155203,2017.0,2020.0,1958.0,PRIVATE,4,Parkdale-High Park,4070 OLD DUNDAS ST,5,48,2020-11-17,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,3.0,,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,S0421,43.662865718,-79.504063965,304456.251,4835658.188999999
-889626,4153031,2018.0,2020.0,1965.0,PRIVATE,4,Parkdale-High Park,157 JAMESON AVE,6,66,2020-11-17,73,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,3.0,4.0,,4.0,4.0,,3.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,3.0,,S0436,43.6376650671,-79.435751998,309968.274,4832859.448
-889627,4156232,2017.0,2020.0,1969.0,TCHC,5,York South-Weston,101 HUMBER BLVD,14,246,2020-11-17,67,Evaluation needs to be conducted in 2 years,19,3.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,4.0,4.0,5.0,3.0,3.0,3.0,W0539,43.679802556000006,-79.4820189606,306234.164,4837538.915
-889628,4153693,2017.0,2020.0,1950.0,PRIVATE,19,Beaches-East York,567 KINGSTON RD,4,15,2020-11-17,72,Evaluation needs to be conducted in 2 years,15,3.0,4.0,3.0,3.0,3.0,4.0,,3.0,,3.0,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,,,S1939,43.678222999999996,-79.30005820699999,320905.57,4837383.518
-889629,4153032,2018.0,2020.0,1965.0,PRIVATE,4,Parkdale-High Park,165 JAMESON AVE,7,82,2020-11-17,75,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,3.0,4.0,4.0,3.0,3.0,3.0,4.0,4.0,3.0,,S0436,43.63799773979999,-79.4358904855,309957.07300000003,4832896.397
-889630,4153678,2017.0,2020.0,1950.0,PRIVATE,19,Beaches-East York,156 KINGSTON RD,4,62,2020-11-17,78,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,,3.0,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,S1937,43.671139903900006,-79.3114153921,319991.88,4836593.512
-889631,4153691,2017.0,2020.0,1920.0,PRIVATE,19,Beaches-East York,441 KINGSTON RD,3,15,2020-11-17,80,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S1938,43.6767157275,-79.303971101,320590.73,4837214.351
-889632,4153694,2017.0,2020.0,1940.0,PRIVATE,19,Beaches-East York,569 KINGSTON RD,4,15,2020-11-17,73,Evaluation needs to be conducted in 2 years,15,3.0,4.0,3.0,3.0,4.0,4.0,,3.0,,4.0,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,,,S1939,43.6783240562,-79.29962127270001,320941.034,4837393.877
-889633,4153695,2017.0,2020.0,1935.0,PRIVATE,19,Beaches-East York,737 KINGSTON RD,4,24,2020-11-17,70,Evaluation needs to be conducted in 2 years,14,3.0,4.0,3.0,3.0,3.0,4.0,,3.0,,,3.0,3.0,4.0,4.0,4.0,4.0,,4.0,,,S1939,43.679351624300004,-79.2950478424,321309.51300000004,4837508.933
-889634,4153508,2017.0,2020.0,1968.0,PRIVATE,13,Toronto Centre,100 WELLESLEY ST E,28,427,2020-11-17,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,,S1322,43.6665543282,-79.3792025495,314526.32,4836073.948
-889635,4153504,2017.0,2020.0,1928.0,PRIVATE,13,Toronto Centre,138 WELLESLEY ST E,3,26,2020-11-17,83,Evaluation needs to be conducted in 2 years,15,4.0,4.0,3.0,4.0,4.0,4.0,,4.0,,,4.0,5.0,5.0,4.0,5.0,5.0,3.0,4.0,,,S1322,43.6668236077,-79.3771743291,314689.849,4836104.096
-889636,4154523,2017.0,2020.0,1956.0,PRIVATE,8,Eglinton-Lawrence,20 HOTSPUR RD,3,12,2020-11-17,71,Evaluation needs to be conducted in 2 years,16,3.0,4.0,1.0,4.0,3.0,4.0,,4.0,,,3.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,,N0823,43.7331587008,-79.4345882213,310034.957,4843456.2639999995
-889637,4154525,2017.0,2020.0,1952.0,PRIVATE,8,Eglinton-Lawrence,24 HOTSPUR RD,3,10,2020-11-17,80,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0823,43.733065925,-79.4350942032,309994.88399999996,4843443.039
-889638,4154257,2017.0,2020.0,1960.0,PRIVATE,7,Humber River-Black Creek,3 DAMASK AVE,3,10,2020-11-17,76,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,4.0,3.0,4.0,,4.0,,3.0,3.0,3.0,5.0,4.0,4.0,5.0,,4.0,4.0,,W0728,43.7416935323,-79.5396641026,301589.804,4844415.3319999995
-889639,4153614,2019.0,2020.0,1929.0,PRIVATE,14,Toronto-Danforth,778 BROADVIEW AVE,3,39,2020-11-17,95,Evaluation needs to be conducted in 3 years,15,5.0,5.0,5.0,5.0,5.0,4.0,,5.0,,,5.0,5.0,5.0,4.0,5.0,5.0,,4.0,4.0,,S1424,43.676873305,-79.359171766,316139.547,4837223.834
-889640,4154003,2017.0,2020.0,1930.0,PRIVATE,12,Toronto-St. Paul's,486 ORIOLE PKWY,3,21,2020-11-17,75,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,3.0,3.0,4.0,,4.0,,4.0,3.0,4.0,5.0,4.0,3.0,4.0,3.0,4.0,4.0,,S1227,43.704467093599995,-79.4062239915,312342.413,4840283.156
-889641,4153650,2017.0,2020.0,1990.0,PRIVATE,14,Toronto-Danforth,768 PAPE AVE,3,15,2020-11-17,69,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,,4.0,4.0,3.0,5.0,3.0,3.0,4.0,4.0,3.0,4.0,,S1425,43.681065593599996,-79.3460950974,317193.343,4837690.477
-889642,4153939,2017.0,2020.0,1955.0,PRIVATE,12,Toronto-St. Paul's,50 OXTON AVE,3,32,2020-11-17,85,Evaluation needs to be conducted in 2 years,17,5.0,4.0,5.0,4.0,4.0,5.0,,4.0,5.0,,4.0,4.0,5.0,3.0,4.0,4.0,5.0,4.0,3.0,,S1226,43.697686003,-79.4052912228,312418.44800000003,4839529.862
-889643,4155273,,2020.0,1961.0,PRIVATE,3,Etobicoke-Lakeshore,28 RIVERWOOD PKWY,7,58,2020-11-17,79,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,3.0,4.0,3.0,,3.0,4.0,4.0,3.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,W0327,43.6393299361,-79.4902695407,305569.433,4833042.572
-889644,4154594,2017.0,2020.0,1960.0,PRIVATE,6,York Centre,3886 BATHURST ST,4,28,2020-11-17,81,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,5.0,4.0,,5.0,,4.0,3.0,4.0,5.0,4.0,3.0,3.0,5.0,4.0,4.0,,N0629,43.7425586658,-79.4358613114,309950.559,4844512.5819999995
-889645,4156523,2017.0,2020.0,1950.0,PRIVATE,2,Etobicoke Centre,4750 DUNDAS ST W,4,14,2020-11-17,83,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,3.0,,3.0,,,4.0,4.0,5.0,4.0,5.0,4.0,,5.0,4.0,,W0229,43.652601481000005,-79.525645179,302689.55199999997,4834490.961
-889646,4156289,2017.0,2020.0,1950.0,PRIVATE,2,Etobicoke Centre,4752 DUNDAS ST W,4,14,2020-11-17,83,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,5.0,4.0,3.0,,3.0,,,4.0,4.0,5.0,4.0,5.0,4.0,,5.0,4.0,,W0229,43.652394933000004,-79.525845839,302688.053,4834472.61
-889647,4154001,2017.0,2020.0,1955.0,PRIVATE,12,Toronto-St. Paul's,211 EGLINTON AVE W,3,31,2020-11-17,83,Evaluation needs to be conducted in 2 years,14,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,5.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,S1227,43.705039078,-79.405292084,312417.183,4840347.741
-889648,4152579,2017.0,2020.0,1971.0,PRIVATE,20,Scarborough Southwest,23 GLEN EVEREST RD,3,11,2020-11-17,78,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,3.0,3.0,4.0,,4.0,,4.0,3.0,5.0,5.0,4.0,4.0,4.0,,4.0,4.0,,E2035,43.700017847,-79.2530664991,324687.562,4839814.06
-889649,4167788,2017.0,2020.0,1971.0,PRIVATE,20,Scarborough Southwest,25 GLEN EVEREST RD,3,11,2020-11-17,75,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,3.0,3.0,4.0,,4.0,,4.0,3.0,4.0,5.0,4.0,4.0,3.0,,4.0,4.0,,E2035,43.7001107344,-79.2530513006,324688.756,4839824.383
-889650,4152580,2017.0,2020.0,1971.0,PRIVATE,20,Scarborough Southwest,27 GLEN EVEREST RD,3,11,2020-11-17,76,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,3.0,3.0,4.0,,4.0,,4.0,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,E2035,43.7005566696,-79.2528798583,324702.42600000004,4839873.966
-889651,4167688,2017.0,2020.0,1971.0,PRIVATE,20,Scarborough Southwest,29 GLEN EVEREST RD,3,11,2020-11-17,75,Evaluation needs to be conducted in 2 years,16,3.0,4.0,3.0,3.0,3.0,4.0,,4.0,,4.0,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,E2035,43.7006703636,-79.2528221569,324707.039,4839886.6110000005
-889652,4152581,2017.0,2020.0,1971.0,PRIVATE,20,Scarborough Southwest,31-33 GLEN EVEREST RD,3,22,2020-11-17,73,Evaluation needs to be conducted in 2 years,16,3.0,4.0,3.0,3.0,3.0,3.0,,4.0,,4.0,3.0,4.0,5.0,4.0,4.0,3.0,,4.0,4.0,,E2035,43.700613718,-79.2522439531,324702.93,4839900.186000001
-889653,4155091,2017.0,2020.0,1953.0,PRIVATE,5,York South-Weston,2558 EGLINTON AVE W,4,29,2020-11-17,85,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,5.0,3.0,,4.0,,5.0,5.0,5.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,W0533,43.691135465,-79.471860488,307052.604,4838799.09
-889654,4153503,,2020.0,1925.0,PRIVATE,13,Toronto Centre,135 EARL PL,4,16,2020-11-17,75,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,3.0,4.0,4.0,,4.0,,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,,,S1322,43.6680405937,-79.3779246146,314633.659,4836247.873
-889655,4154002,2017.0,2020.0,1940.0,PRIVATE,12,Toronto-St. Paul's,166 EASTBOURNE AVE,3,21,2020-11-17,74,Evaluation needs to be conducted in 2 years,14,4.0,4.0,5.0,4.0,3.0,4.0,,3.0,,,3.0,4.0,5.0,3.0,3.0,3.0,,4.0,,,S1227,43.7051010779,-79.40500513229999,312440.564,4840353.701
-889656,4155124,2017.0,2020.0,1995.0,SOCIAL HOUSING,5,York South-Weston,1296 WESTON RD,5,24,2020-11-17,88,Evaluation needs to be conducted in 3 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,,5.0,5.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,W0531,43.689065737700005,-79.4960622799,305092.365,4838574.571
-889657,4155250,2017.0,2020.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,143 STEPHEN DR,5,31,2020-11-17,85,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,5.0,,4.0,,4.0,4.0,5.0,5.0,3.0,4.0,4.0,5.0,4.0,4.0,,W0327,43.638681755200004,-79.4872228094,305815.067,4832975.459
-889658,4155251,2017.0,2020.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,159 STEPHEN DR,4,24,2020-11-17,85,Evaluation needs to be conducted in 2 years,17,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,,5.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,,W0327,43.6389598462,-79.4872934251,305809.566,4833001.4860000005
-889659,4155252,2018.0,2020.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,167 STEPHEN DR,4,44,2020-11-17,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,4.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,W0327,43.6392913192,-79.4876408475,305781.53,4833038.307
-889660,4154578,2017.0,2020.0,1960.0,PRIVATE,6,York Centre,30 VINCI CRES,4,33,2020-11-17,84,Evaluation needs to be conducted in 2 years,17,4.0,5.0,5.0,4.0,4.0,4.0,,5.0,,3.0,4.0,5.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,N0629,43.736994196000005,-79.4460498433,309130.334,4843893.855
-889661,4155379,2017.0,2020.0,1968.0,PRIVATE,2,Etobicoke Centre,328 THE WEST MALL,3,32,2020-11-17,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,3.0,3.0,,4.0,3.0,3.0,3.0,2.0,5.0,5.0,5.0,4.0,2.0,5.0,5.0,,W0233,43.637313338599995,-79.564053632,299616.185,4832820.397
-889662,4155253,2017.0,2020.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,193 STEPHEN DR,3,10,2020-11-17,88,Evaluation needs to be conducted in 3 years,17,4.0,4.0,5.0,4.0,4.0,5.0,,5.0,,4.0,5.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,W0327,43.640715018,-79.488178586,305737.446,4833198.606000001
-889663,4154504,2017.0,2020.0,1990.0,PRIVATE,8,Eglinton-Lawrence,49 NEPTUNE DR,3,10,2020-11-17,72,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,4.0,3.0,4.0,,3.0,,4.0,3.0,4.0,5.0,3.0,3.0,4.0,4.0,4.0,3.0,,N0823,43.731455829,-79.435410014,309987.593,4843280.143999999
-889664,4154515,2017.0,2020.0,1960.0,PRIVATE,8,Eglinton-Lawrence,52 NEPTUNE DR,3,12,2020-11-17,69,Evaluation needs to be conducted in 2 years,16,3.0,3.0,1.0,4.0,4.0,4.0,,3.0,,,3.0,4.0,5.0,3.0,3.0,4.0,3.0,4.0,4.0,,N0823,43.732014889,-79.434846428,310032.945,4843342.289
-889665,4154516,2017.0,2020.0,1955.0,PRIVATE,8,Eglinton-Lawrence,54 NEPTUNE DR,3,11,2020-11-17,73,Evaluation needs to be conducted in 2 years,16,3.0,4.0,2.0,4.0,4.0,4.0,,3.0,,,3.0,3.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,,N0823,43.73237107600001,-79.435213823,310003.317,4843381.834
-889666,4155429,2017.0,2020.0,1968.0,PRIVATE,1,Etobicoke North,2329 KIPLING AVE,5,40,2020-11-17,70,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,,4.0,,3.0,3.0,,3.0,3.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,,W0130,43.73188797939999,-79.5760047964,298661.68,4843328.069
-889667,4153046,2017.0,2020.0,1960.0,PRIVATE,4,Parkdale-High Park,83 INDIAN RD,5,21,2020-11-17,66,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,3.0,,2.0,3.0,4.0,2.0,4.0,4.0,3.0,4.0,4.0,,S0434,43.642240012799995,-79.4533563133,308547.591,4833366.778
-889668,4156355,2017.0,2020.0,1960.0,PRIVATE,1,Etobicoke North,9 BERGAMOT AVE,4,73,2020-11-16,73,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,W0130,43.714616652,-79.558696849,300054.31,4841409.213
-889669,4156450,2017.0,2020.0,1960.0,PRIVATE,1,Etobicoke North,11 BERGAMOT AVE,7,130,2020-11-16,68,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,4.0,,W0130,43.714919516,-79.55750237,300150.586,4841442.799
-889670,4155653,2017.0,2020.0,1968.0,TCHC,5,York South-Weston,190 WOOLNER AVE,16,304,2020-11-16,68,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,,2.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,W0539,43.672697749099996,-79.4906805093,305535.86100000003,4836749.508
-889671,4155128,2017.0,2020.0,1977.0,PRIVATE,5,York South-Weston,12 BUTTONWOOD AVE,4,40,2020-11-16,73,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,3.0,3.0,,3.0,3.0,4.0,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,3.0,,W0531,43.6911592011,-79.5020724213,304617.364,4838800.489
-889672,4153609,2017.0,2020.0,1910.0,PRIVATE,14,Toronto-Danforth,648 BROADVIEW AVE,3,11,2020-11-16,81,Evaluation needs to be conducted in 2 years,16,5.0,5.0,4.0,3.0,5.0,5.0,,5.0,,,4.0,4.0,5.0,3.0,4.0,3.0,3.0,3.0,4.0,,S1428,43.6734656352,-79.3567572276,316335.147,4836844.637
-889673,4153607,2017.0,2020.0,1968.0,PRIVATE,14,Toronto-Danforth,655 BROADVIEW AVE,24,291,2020-11-16,87,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,5.0,4.0,5.0,5.0,3.0,5.0,,3.0,4.0,5.0,4.0,5.0,5.0,5.0,4.0,3.0,4.0,S1428,43.673945589,-79.3561095196,316387.282,4836898.046
-889674,4153619,2017.0,2020.0,1940.0,PRIVATE,14,Toronto-Danforth,846-850 BROADVIEW AVE,3,24,2020-11-16,94,Evaluation needs to be conducted in 3 years,16,5.0,4.0,5.0,5.0,5.0,4.0,,5.0,,,4.0,5.0,5.0,5.0,5.0,5.0,3.0,5.0,5.0,,S1424,,,316188.231,4837458.031
-889675,4153618,2018.0,2020.0,1960.0,PRIVATE,14,Toronto-Danforth,852 BROADVIEW AVE,4,21,2020-11-16,70,Evaluation needs to be conducted in 2 years,16,4.0,3.0,3.0,4.0,4.0,3.0,,3.0,,4.0,4.0,3.0,5.0,3.0,3.0,4.0,,3.0,3.0,,S1424,43.679158068599996,-79.35858130359999,316187.0,4837476.8
-889676,4155196,2017.0,2020.0,1979.0,TCHC,5,York South-Weston,55 OUTLOOK AVE,12,275,2020-11-16,72,Evaluation needs to be conducted in 2 years,19,3.0,4.0,5.0,3.0,3.0,4.0,4.0,4.0,3.0,,4.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,W0535,43.678446839799996,-79.49624040329999,305087.49600000004,4837388.185
-889677,4155130,2017.0,2020.0,1969.0,PRIVATE,5,York South-Weston,24 PINEHILL CRES,4,29,2020-11-16,71,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,3.0,4.0,5.0,,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,4.0,4.0,3.0,,W0531,43.688323353,-79.50178938,304639.897,4838486.396000001
-889678,4285956,2017.0,2020.0,1968.0,TCHC,5,York South-Weston,121 HUMBER BLVD,14,215,2020-11-16,68,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,4.0,4.0,4.0,3.0,3.0,4.0,4.0,3.0,,W0539,43.6784336179,-79.48189258880001,,
-889679,4155287,2017.0,2020.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,2 KINGS POINT DR,4,16,2020-11-16,82,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,3.0,5.0,,4.0,,3.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,3.0,,W0327,43.639372903,-79.4944231531,305234.286,4833047.319
-889680,4155286,2017.0,2020.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,4 KINGS POINT DR,4,16,2020-11-16,80,Evaluation needs to be conducted in 2 years,17,4.0,3.0,5.0,4.0,3.0,4.0,,4.0,,3.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,3.0,,W0327,43.6395029387,-79.4940316467,305265.876,4833061.767
-889681,4155285,2017.0,2020.0,1950.0,PRIVATE,3,Etobicoke-Lakeshore,6 KINGS POINT DR,3,16,2020-11-16,69,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,3.0,3.0,4.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,4.0,3.0,4.0,3.0,,W0327,43.639609569499996,-79.49364600310001,305296.993,4833073.615
-889682,4155284,2018.0,2020.0,1953.0,PRIVATE,3,Etobicoke-Lakeshore,8 KINGS POINT DR,5,16,2020-11-16,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,3.0,4.0,3.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,,W0327,43.6396821871,-79.4933367622,305321.945,4833081.683999999
-889683,4153606,2017.0,2020.0,1968.0,PRIVATE,14,Toronto-Danforth,10 HOGARTH AVE,23,287,2020-11-16,87,Evaluation needs to be conducted in 3 years,18,5.0,3.0,5.0,5.0,5.0,5.0,5.0,3.0,5.0,,3.0,5.0,5.0,4.0,5.0,3.0,5.0,4.0,3.0,,S1428,43.6739626249,-79.35545117,316440.365,4836900.03
-889684,4155125,2017.0,2020.0,1960.0,PRIVATE,5,York South-Weston,1321 WESTON RD,3,10,2020-11-16,74,Evaluation needs to be conducted in 2 years,14,3.0,4.0,4.0,4.0,3.0,3.0,,4.0,,,4.0,3.0,5.0,3.0,4.0,4.0,,4.0,,,W0531,43.6898644553,-79.4968078854,305041.755,4838656.633
-889685,4153101,2017.0,2020.0,2003.0,SOCIAL HOUSING,9,Davenport,973 LANSDOWNE AVE,3,20,2020-11-16,77,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,,,3.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,,,S0930,43.6661838696,-79.4459119791,309146.453,4836027.149
-889686,4153142,2017.0,2020.0,1987.0,SOCIAL HOUSING,10,Spadina-Fort York,800 ADELAIDE ST W,3,50,2020-11-15,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,,4.0,S1028,43.6439718067,-79.4103609926,312016.23,4833561.862
-889687,4153554,2017.0,2020.0,1980.0,SOCIAL HOUSING,10,Spadina-Fort York,33 HAHN PL,8,135,2020-11-15,87,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,5.0,5.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,S1039,43.649402507,-79.362697005,315860.308,4834171.515
-889688,4153556,2017.0,2020.0,1980.0,SOCIAL HOUSING,10,Spadina-Fort York,5 HAHN PL,4,32,2020-11-15,81,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,5.0,,S1039,43.648895593999995,-79.362805101,315851.683,4834115.191000001
-889689,4152759,2017.0,2020.0,1972.0,PRIVATE,21,Scarborough Centre,1375 MIDLAND AVE,13,144,2020-11-15,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,,E2134,43.7499873653,-79.2636073728,323822.18,4845362.91
-889690,4156555,2017.0,2020.0,1970.0,TCHC,24,Scarborough-Guildwood,3945 LAWRENCE AVE E,3,20,2020-11-15,66,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,3.0,3.0,4.0,,4.0,,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,E2431,43.7630131413,-79.2041400469,328606.14,4846825.304
-889691,4153138,2017.0,2020.0,1989.0,SOCIAL HOUSING,10,Spadina-Fort York,24 SHAW ST,9,200,2020-11-15,86,Evaluation needs to be conducted in 3 years,17,4.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,5.0,,S1027,43.6423363643,-79.4160843491,311554.662,4833379.7069999995
-889692,4152818,2017.0,2020.0,1962.0,PRIVATE,24,Scarborough-Guildwood,45 GREENCREST CRCT,6,100,2020-11-15,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,E2430,43.758742100000006,-79.22231714770001,327144.17699999997,4846345.796
-889693,4156038,2017.0,2020.0,1969.0,TCHC,13,Toronto Centre,375 BLEECKER ST,24,327,2020-11-15,61,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,4.0,3.0,3.0,4.0,3.0,,2.0,3.0,5.0,3.0,3.0,3.0,2.0,3.0,3.0,,S1323,43.670607632,-79.374814757,314879.229,4836525.723999999
-889694,4153378,2017.0,2020.0,1983.0,TCHC,10,Spadina-Fort York,575 ADELAIDE ST W,11,150,2020-11-15,75,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,,4.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,4.0,4.0,S1028,43.6445845561,-79.40368311,312554.891,4833630.518999999
-889695,4152860,2017.0,2020.0,1977.0,PRIVATE,22,Scarborough-Agincourt,20 STONEHILL CRT,13,153,2020-11-15,83,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2226,43.795961863100004,-79.3147046688,319695.816,4850460.119
-889696,4155854,2018.0,2020.0,1970.0,TCHC,24,Scarborough-Guildwood,3939 LAWRENCE AVE E,3,31,2020-11-15,69,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,,,4.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,E2431,43.763475641999996,-79.20530613220001,328497.269,4846918.613
-889697,4156556,2018.0,2020.0,1970.0,TCHC,24,Scarborough-Guildwood,3943 LAWRENCE AVE E,3,15,2020-11-15,69,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,3.0,3.0,4.0,,4.0,,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,E2431,43.7631593909,-79.2047559,328556.497,4846841.376
-889698,4156459,2017.0,2020.0,1976.0,PRIVATE,20,Scarborough Southwest,39 PARKCREST DR,7,134,2020-11-14,82,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,E2027,43.73597306439999,-79.2190996441,327411.779,4843817.119
-889699,4154788,2017.0,2020.0,1950.0,PRIVATE,16,Don Valley East,6 THE DONWAY E,4,40,2020-11-14,83,Evaluation needs to be conducted in 2 years,18,3.0,5.0,5.0,3.0,4.0,5.0,3.0,4.0,5.0,,4.0,5.0,5.0,3.0,4.0,5.0,4.0,4.0,4.0,,N1627,43.733595666099994,-79.3405231156,317631.353,4843527.159
-889700,4269318,2017.0,2020.0,1958.0,PRIVATE,20,Scarborough Southwest,998 DANFORTH RD,3,21,2020-11-14,80,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,E2024,43.7352342615,-79.2476716721,325110.51,4843727.705
-889701,4269313,2017.0,2020.0,1958.0,PRIVATE,20,Scarborough Southwest,996 DANFORTH RD,3,20,2020-11-14,80,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,E2024,43.7350794611,-79.2480505493,325080.042,4843710.415
-889702,4153728,2017.0,2020.0,2007.0,SOCIAL HOUSING,19,Beaches-East York,2802 DANFORTH AVE,4,25,2020-11-14,83,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,S1930,43.689655844899995,-79.2961972389,321214.033,4838653.442
-889703,4153367,2017.0,2020.0,1957.0,PRIVATE,12,Toronto-St. Paul's,159 RUSSELL HILL RD,4,18,2020-11-13,77,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,4.0,4.0,3.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,,S1237,43.681900098,-79.405861723,312374.18100000004,4837776.963
-889704,4153369,2017.0,2020.0,1959.0,PRIVATE,12,Toronto-St. Paul's,221 RUSSELL HILL RD,4,18,2020-11-13,77,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,4.0,4.0,3.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,,S1237,43.682871103000004,-79.406514542,312321.425,4837884.787
-889705,4155843,2017.0,2020.0,1952.0,PRIVATE,20,Scarborough Southwest,3214 ST CLAIR AVE E,3,16,2020-11-13,79,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,4.0,3.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,E2021,43.710470468400004,-79.2900582076,321703.085,4840967.096
-889706,4156305,2017.0,2020.0,1952.0,PRIVATE,20,Scarborough Southwest,3218 ST CLAIR AVE E,3,16,2020-11-13,76,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,3.0,3.0,4.0,,4.0,,,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,E2021,43.7103165144,-79.2898372595,321720.933,4840950.037
-889707,4156306,2017.0,2020.0,1952.0,PRIVATE,20,Scarborough Southwest,3222 ST CLAIR AVE E,3,16,2020-11-13,76,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,4.0,3.0,4.0,,4.0,,,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,,E2021,43.7103391108,-79.2897341837,321729.233,4840952.568
-889708,4155020,2017.0,2020.0,1971.0,PRIVATE,12,Toronto-St. Paul's,330 WINNETT AVE,4,39,2020-11-13,86,Evaluation needs to be conducted in 3 years,17,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,,,4.0,5.0,5.0,4.0,5.0,4.0,4.0,5.0,5.0,,S1223,43.692267101000006,-79.43505588100001,310019.468,4838926.465
-889709,4155396,2017.0,2020.0,1963.0,PRIVATE,2,Etobicoke Centre,70 DIXFIELD DR,12,141,2020-11-13,81,Evaluation needs to be conducted in 2 years,20,5.0,4.0,5.0,4.0,4.0,5.0,3.0,3.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,3.0,3.0,5.0,3.0,5.0,W0225,43.656041966000004,-79.572403682,298944.101,4834902.553
-889710,4154795,2017.0,2020.0,1950.0,PRIVATE,16,Don Valley East,1129 DON MILLS RD,6,46,2020-11-13,77,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,5.0,4.0,3.0,5.0,3.0,4.0,5.0,4.0,5.0,4.0,,N1624,43.737751539399994,-79.34301416939999,317429.821,4843988.499
-889711,4153502,2018.0,2020.0,1918.0,PRIVATE,13,Toronto Centre,125 EARL PL,4,15,2020-11-13,73,Evaluation needs to be conducted in 2 years,14,3.0,4.0,3.0,4.0,4.0,4.0,,4.0,,,3.0,3.0,5.0,3.0,3.0,4.0,,4.0,,,S1322,43.667977815600004,-79.3782190635,314612.894,4836239.946
-889712,4152789,2020.0,2020.0,1960.0,PRIVATE,20,Scarborough Southwest,3121 EGLINTON AVE E,6,81,2020-11-13,71,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,4.0,3.0,,3.0,3.0,,2.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,,E2027,43.7415452404,-79.2234208704,327061.643,4844435.008
-889713,4152790,2017.0,2020.0,1960.0,PRIVATE,20,Scarborough Southwest,3131 EGLINTON AVE E,7,82,2020-11-13,75,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,4.0,,4.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,3.0,,E2027,43.741715689799996,-79.2228457117,327107.906,4844454.096
-889714,4153514,2017.0,2020.0,1970.0,PRIVATE,13,Toronto Centre,15 DUNDONALD ST,24,172,2020-11-13,74,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,,S1322,43.665727503,-79.383887543,314148.344,4835982.525
-889715,4153511,2017.0,2020.0,1968.0,PRIVATE,13,Toronto Centre,41 DUNDONALD ST,18,107,2020-11-13,74,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1322,43.66621262100001,-79.382200082,314284.363,4836036.603999999
-889716,4153512,2017.0,2020.0,1917.0,PRIVATE,13,Toronto Centre,49 DUNDONALD ST,5,32,2020-11-13,72,Evaluation needs to be conducted in 2 years,15,4.0,4.0,3.0,3.0,3.0,3.0,,4.0,4.0,,3.0,3.0,5.0,4.0,4.0,3.0,,4.0,,,S1322,43.666349498,-79.381871851,314310.814,4836051.846
-889717,4152667,2017.0,2020.0,1962.0,PRIVATE,20,Scarborough Southwest,130 FOXRIDGE DR,3,30,2020-11-13,81,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,4.0,4.0,3.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,,E2023,43.7242519745,-79.2657615108,323656.732,4842503.35
-889718,4155033,2017.0,2020.0,1960.0,PRIVATE,12,Toronto-St. Paul's,682 NORTHCLIFFE BLVD,6,54,2020-11-13,73,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,3.0,4.0,,4.0,3.0,2.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,3.0,,S1222,43.69560890899999,-79.4478332709,308989.478,4839296.063
-889719,4155034,2017.0,2020.0,1965.0,PRIVATE,12,Toronto-St. Paul's,640 LAUDER AVE,10,129,2020-11-13,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,3.0,4.0,3.0,4.0,5.0,4.0,3.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,2.0,,S1222,43.6937773713,-79.44616047699999,309124.445,4839092.664
-889720,4153499,2017.0,2020.0,1991.0,TCHC,13,Toronto Centre,460 JARVIS ST,10,212,2020-11-13,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,S1326,43.665843764899996,-79.37866359649999,314569.899,4835995.071
-889721,4155030,2017.0,2020.0,1966.0,PRIVATE,12,Toronto-St. Paul's,795 VAUGHAN RD,8,106,2020-11-13,69,Evaluation needs to be conducted in 2 years,18,3.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,3.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,,S1222,43.6952829956,-79.4482618257,308954.953,4839259.834
-889722,4153586,2017.0,2020.0,1880.0,PRIVATE,13,Toronto Centre,510 ONTARIO ST,3,13,2020-11-12,67,Evaluation needs to be conducted in 2 years,14,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,,,S1323,43.665168638400004,-79.37142343890001,315153.909,4835920.951
-889723,4155499,2017.0,2020.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,2529 LAKE SHORE BLVD W,4,61,2020-11-12,83,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,,W0336,43.6100510941,-79.48818596619999,305737.962,4829789.871
-889724,4154439,,2020.0,1954.0,PRIVATE,6,York Centre,2988 KEELE ST,3,11,2020-11-12,67,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,3.0,3.0,3.0,,4.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,2.0,,N0627,43.736204601000004,-79.484886345,306001.724,4843805.791999999
-889725,4154438,2018.0,2020.0,1952.0,PRIVATE,6,York Centre,2990 KEELE ST,3,11,2020-11-12,74,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,4.0,3.0,4.0,,4.0,,4.0,3.0,4.0,5.0,3.0,4.0,3.0,,4.0,3.0,,N0627,43.736373339,-79.484931855,305998.055,4843824.537
-889726,4154442,2017.0,2020.0,1959.0,PRIVATE,6,York Centre,3020 KEELE ST,3,39,2020-11-12,72,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,3.0,4.0,4.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,4.0,,4.0,3.0,,N0627,43.737981659700004,-79.4853134372,305967.553,4844002.249
-889727,4152690,2017.0,2020.0,1958.0,PRIVATE,20,Scarborough Southwest,709 KENNEDY RD,6,79,2020-11-12,80,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2023,43.728137438699996,-79.2656668508,323663.167,4842935.041
-889728,4152691,2018.0,2020.0,1958.0,PRIVATE,20,Scarborough Southwest,711 KENNEDY RD,6,79,2020-11-12,69,Evaluation needs to be conducted in 2 years,17,3.0,4.0,4.0,3.0,3.0,4.0,,4.0,3.0,,3.0,4.0,3.0,3.0,3.0,3.0,4.0,4.0,4.0,,E2023,43.728707711400006,-79.26590545090001,323643.766,4842998.342
-889729,4155012,2017.0,2020.0,1955.0,PRIVATE,12,Toronto-St. Paul's,440 WINONA DR,6,130,2020-11-12,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,3.0,4.0,3.0,4.0,5.0,3.0,4.0,4.0,2.0,4.0,4.0,,S1222,43.6884054492,-79.4358516608,309955.895,4838496.442
-889730,4155011,2017.0,2020.0,1960.0,PRIVATE,12,Toronto-St. Paul's,450 WINONA DR,6,124,2020-11-12,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,3.0,4.0,,3.0,5.0,,4.0,4.0,5.0,3.0,3.0,4.0,4.0,4.0,4.0,,S1222,43.6888376633,-79.435821172,309958.31899999996,4838544.46
-889731,4154496,2017.0,2020.0,1968.0,PRIVATE,8,Eglinton-Lawrence,3000 DUFFERIN ST,18,287,2020-11-12,81,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,N0826,43.711095482,-79.4550342405,308408.11600000004,4841016.188999999
-889732,4155133,2017.0,2020.0,1968.0,PRIVATE,5,York South-Weston,80 CLOUSTON AVE,3,17,2020-11-12,89,Evaluation needs to be conducted in 3 years,16,4.0,4.0,4.0,4.0,4.0,3.0,,4.0,,5.0,5.0,5.0,5.0,5.0,5.0,5.0,,5.0,4.0,,W0527,43.6945334826,-79.50843690090001,304104.346,4839175.411
-889733,4155135,2017.0,2020.0,1958.0,PRIVATE,5,York South-Weston,21 DENISON RD E,3,17,2020-11-12,72,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,3.0,4.0,3.0,,3.0,,,3.0,3.0,4.0,4.0,4.0,4.0,,4.0,3.0,,W0527,43.696366278999996,-79.506408632,304267.6,4839379.961
-889734,4155352,2017.0,2020.0,1953.0,PRIVATE,1,Etobicoke North,17 RIVERVIEW HTS,4,14,2020-11-12,72,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,3.0,3.0,,4.0,,3.0,3.0,5.0,5.0,3.0,4.0,4.0,3.0,3.0,2.0,,W0136,43.70159907399999,-79.52750608699999,302574.77,4839958.836
-889735,4154499,2017.0,2020.0,1964.0,PRIVATE,8,Eglinton-Lawrence,3690 BATHURST ST,7,47,2020-11-12,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,3.0,4.0,3.0,3.0,,N0823,43.734306073,-79.433720291,310123.458,4843596.89
-889736,4154718,2017.0,2020.0,1963.0,PRIVATE,18,Willowdale,6000 YONGE ST,18,265,2020-11-12,82,Evaluation needs to be conducted in 2 years,18,4.0,5.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,4.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,3.0,,N1822,43.7883911434,-79.4180400688,311380.957,4849605.708000001
-889737,4153996,2018.0,2020.0,1952.0,PRIVATE,12,Toronto-St. Paul's,873 AVENUE RD,4,10,2020-11-12,81,Evaluation needs to be conducted in 2 years,14,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,S1227,43.6992180008,-79.4058760142,312371.12,4839700.0139999995
-889738,4154409,2018.0,2020.0,1967.0,PRIVATE,6,York Centre,5 AGATE RD,11,118,2020-11-12,68,Evaluation needs to be conducted in 2 years,19,3.0,4.0,5.0,3.0,3.0,4.0,2.0,3.0,3.0,3.0,3.0,3.0,5.0,3.0,4.0,3.0,4.0,4.0,3.0,,N0627,43.72724984560001,-79.48529559999999,305969.165,4842810.005
-889739,4153488,2017.0,2020.0,1979.0,PRIVATE,13,Toronto Centre,25 WELLESLEY ST E,9,47,2020-11-12,76,Evaluation needs to be conducted in 2 years,17,4.0,3.0,3.0,4.0,,5.0,4.0,3.0,4.0,,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1326,43.664890998999994,-79.383181646,314205.404,4835889.677
-889740,4155498,2017.0,2020.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,2531 LAKE SHORE BLVD W,6,110,2020-11-12,84,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,4.0,,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,,W0336,43.6100722111,-79.4872983362,305809.615,4829792.226
-889741,4155497,2017.0,2020.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,2537 LAKE SHORE BLVD W,3,75,2020-11-12,84,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,,,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,,W0336,43.6096967981,-79.48808184090001,305746.372,4829750.512
-889742,4155225,2017.0,2020.0,1973.0,PRIVATE,3,Etobicoke-Lakeshore,8 LOMOND DR,24,183,2020-11-12,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,5.0,3.0,3.0,5.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,W0325,43.6463454422,-79.5227554263,302948.49100000004,4833822.241
-889743,4155772,2017.0,2020.0,1951.0,PRIVATE,3,Etobicoke-Lakeshore,2407 LAKE SHORE BLVD W,3,22,2020-11-12,79,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,,,4.0,5.0,4.0,4.0,4.0,3.0,,4.0,3.0,,W0336,43.614231394799994,-79.48871626489999,305695.096,4830254.277
-889744,4155771,2017.0,2020.0,1958.0,PRIVATE,3,Etobicoke-Lakeshore,2495 LAKE SHORE BLVD W,3,45,2020-11-12,73,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,3.0,3.0,3.0,,4.0,,3.0,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,3.0,,W0336,43.612342428199995,-79.4891538112,305659.804,4830044.4180000005
-889745,4153681,2017.0,2020.0,1960.0,PRIVATE,19,Beaches-East York,15 EASTWOOD RD,4,24,2020-11-12,68,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,3.0,3.0,4.0,,3.0,,,3.0,4.0,2.0,3.0,3.0,4.0,4.0,4.0,3.0,,S1937,43.6728164425,-79.3184832171,319421.536,4836778.516
-889746,4153487,2017.0,2020.0,1923.0,PRIVATE,13,Toronto Centre,33 MAITLAND ST,3,37,2020-11-12,77,Evaluation needs to be conducted in 2 years,15,4.0,4.0,3.0,4.0,4.0,4.0,,5.0,,,4.0,4.0,3.0,4.0,4.0,4.0,,3.0,4.0,,S1326,43.6638932658,-79.3826414877,314249.38399999996,4835777.947
-889747,4153493,2017.0,2020.0,1928.0,PRIVATE,13,Toronto Centre,56 MAITLAND ST,4,47,2020-11-12,77,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,,,4.0,3.0,4.0,4.0,4.0,4.0,,4.0,3.0,,S1326,43.6648613167,-79.3813670243,314352.022,4835885.626
-889748,4153470,2017.0,2020.0,1940.0,PRIVATE,13,Toronto Centre,1 HOMEWOOD AVE,4,67,2020-11-12,73,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,2.0,3.0,3.0,,3.0,3.0,,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,S1326,43.663246011000005,-79.374195362,314930.417,4835707.967
-889749,4155425,2017.0,2020.0,1967.0,PRIVATE,1,Etobicoke North,5 JANSUSIE RD,3,45,2020-11-12,65,Evaluation needs to be conducted in 1 year,17,4.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0129,43.72849773,-79.57541136100001,298591.273,4843220.455
-889750,4155426,2017.0,2020.0,1967.0,PRIVATE,1,Etobicoke North,15 JANSUSIE RD,3,45,2020-11-12,66,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,2.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,,W0129,43.729325196000005,-79.57582247,298619.876,4843140.267
-889751,4155022,2017.0,2020.0,1957.0,PRIVATE,12,Toronto-St. Paul's,481 VAUGHAN RD,7,97,2020-11-12,76,Evaluation needs to be conducted in 2 years,17,4.0,3.0,5.0,4.0,4.0,3.0,,4.0,4.0,,3.0,4.0,5.0,3.0,4.0,3.0,4.0,4.0,4.0,,S1223,43.689882743000005,-79.43517980899999,310009.678,4838661.56
-889752,4155136,2017.0,2020.0,1951.0,PRIVATE,5,York South-Weston,1693 WESTON RD,3,12,2020-11-12,72,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,,,4.0,3.0,5.0,3.0,4.0,4.0,,4.0,4.0,,W0527,43.6974801662,-79.50926226989999,304037.854,4839502.786
-889753,4152621,2017.0,2020.0,1956.0,PRIVATE,20,Scarborough Southwest,64 HARRIS PARK DR,3,11,2020-11-12,80,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,E2021,43.7221951584,-79.2984586067,321022.98699999996,4842268.005
-889754,4152620,2017.0,2020.0,1956.0,PRIVATE,20,Scarborough Southwest,68 HARRIS PARK DR,3,11,2020-11-12,80,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,E2021,43.722488216,-79.2987114556,321002.536,4842300.513
-889755,4155394,2017.0,2020.0,1969.0,PRIVATE,2,Etobicoke Centre,545 THE WEST MALL,16,312,2020-11-12,79,Evaluation needs to be conducted in 2 years,20,5.0,3.0,5.0,3.0,3.0,5.0,4.0,5.0,4.0,3.0,4.0,2.0,4.0,4.0,4.0,4.0,4.0,5.0,3.0,5.0,W0231,43.651935308,-79.56812821300001,299175.535,4834432.713
-889756,4155029,2017.0,2020.0,1977.0,PRIVATE,12,Toronto-St. Paul's,787 VAUGHAN RD,4,38,2020-11-12,93,Evaluation needs to be conducted in 3 years,14,5.0,5.0,5.0,4.0,4.0,4.0,,5.0,,,4.0,4.0,5.0,5.0,5.0,5.0,,5.0,,,S1222,43.6952218624,-79.4479601796,308979.273,4839253.057
-889757,4155401,2017.0,2020.0,1969.0,PRIVATE,2,Etobicoke Centre,535 THE EAST MALL,7,90,2020-11-12,77,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,4.0,3.0,,3.0,4.0,3.0,4.0,3.0,5.0,5.0,4.0,4.0,5.0,4.0,3.0,,W0232,43.651798497600005,-79.5625281219,299740.547,4834429.513
-889758,4155500,2017.0,2020.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,2521 LAKE SHORE BLVD W,3,37,2020-11-12,77,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,3.0,,3.0,,,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,3.0,,W0336,43.610183173900005,-79.4899009077,305599.525,4829804.528
-889759,4154440,2018.0,2020.0,1965.0,PRIVATE,6,York Centre,2960 KEELE ST,3,41,2020-11-12,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,,2.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,4.0,4.0,3.0,,N0627,43.735849503000004,-79.484562864,306027.788,4843766.348
-889760,4153486,2017.0,2020.0,1968.0,PRIVATE,13,Toronto Centre,100 ALEXANDER ST,12,96,2020-11-10,74,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,3.0,4.0,3.0,3.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1326,43.664161955299996,-79.3792187274,314525.392,4835808.179
-889761,4155311,2017.0,2020.0,1955.0,PRIVATE,2,Etobicoke Centre,309 THE KINGSWAY,4,34,2020-11-10,80,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,W0229,43.6648936941,-79.522593185,302962.211,4835882.8319999995
-889762,4152994,2017.0,2020.0,1959.0,PRIVATE,4,Parkdale-High Park,90 JAMESON AVE,7,61,2020-11-10,72,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,4.0,4.0,4.0,,3.0,2.0,,4.0,4.0,5.0,3.0,4.0,3.0,3.0,4.0,2.0,,S0437,43.6343822215,-79.4353464505,310001.272,4832494.781
-889763,4152988,2017.0,2020.0,1955.0,PRIVATE,4,Parkdale-High Park,140 JAMESON AVE,4,23,2020-11-10,83,Evaluation needs to be conducted in 2 years,15,5.0,4.0,5.0,4.0,4.0,3.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S0437,43.636677065600004,-79.4361176047,309938.858,4832749.67
-889764,4152987,2017.0,2020.0,1956.0,PRIVATE,4,Parkdale-High Park,146 JAMESON AVE,4,28,2020-11-10,81,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S0437,43.6369325333,-79.4362160328,309930.895,4832778.044
-889765,4154301,2017.0,2020.0,1957.0,PRIVATE,5,York South-Weston,2368 KEELE ST,4,47,2020-11-10,81,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,3.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0529,43.70619654,-79.47813377899999,306573.365,4840472.875
-889766,4154300,2017.0,2020.0,1957.0,PRIVATE,5,York South-Weston,2370 KEELE ST,4,46,2020-11-10,83,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,4.0,4.0,5.0,5.0,4.0,4.0,4.0,,4.0,3.0,,W0529,43.706451928999996,-79.478254085,306536.791,4840500.558
-889767,4154424,2017.0,2020.0,1955.0,PRIVATE,6,York Centre,2854 KEELE ST,3,11,2020-11-10,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,5.0,3.0,3.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,3.0,,N0627,43.7316216812,-79.48367675109999,306099.51300000004,4843295.718
-889768,4154422,2017.0,2020.0,1960.0,PRIVATE,6,York Centre,2864 KEELE ST,3,11,2020-11-10,83,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,5.0,,4.0,,,5.0,5.0,5.0,3.0,5.0,4.0,,3.0,3.0,,N0627,43.732140253699995,-79.4838447849,306085.967,4843353.326
-889769,4154419,2017.0,2020.0,1950.0,PRIVATE,6,York Centre,2880 KEELE ST,3,11,2020-11-10,70,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,3.0,3.0,4.0,,4.0,,3.0,2.0,3.0,5.0,4.0,3.0,3.0,,4.0,4.0,,N0627,43.7330831623,-79.4839523321,306088.5,4843477.583000001
-889770,4154229,2017.0,2020.0,1968.0,PRIVATE,7,Humber River-Black Creek,2770 JANE ST,4,144,2020-11-10,75,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,3.0,3.0,5.0,3.0,4.0,4.0,4.0,5.0,4.0,,W0729,43.7474006174,-79.5159466744,303500.287,4845048.686000001
-889771,4154239,2017.0,2020.0,1975.0,PRIVATE,7,Humber River-Black Creek,2775 JANE ST,17,198,2020-11-10,69,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,3.0,,4.0,3.0,4.0,4.0,,3.0,3.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,,W0730,43.7486644671,-79.5146201429,303607.148,4845189.076
-889772,4154230,2017.0,2020.0,1971.0,PRIVATE,7,Humber River-Black Creek,2850 JANE ST,13,156,2020-11-10,71,Evaluation needs to be conducted in 2 years,19,4.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,4.0,4.0,3.0,4.0,4.0,3.0,5.0,3.0,4.0,W0729,43.7501032079,-79.5169169125,303422.212,4845348.952
-889773,4153462,2017.0,2020.0,1970.0,TCHC,13,Toronto Centre,423 YONGE ST,20,340,2020-11-10,67,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,5.0,4.0,4.0,3.0,,3.0,3.0,,S1328,43.6602721446,-79.3823063131,314276.997,4835375.715
-889774,4152961,2017.0,2020.0,1960.0,PRIVATE,4,Parkdale-High Park,75 SPENCER AVE,9,71,2020-11-10,70,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,2.0,,S0437,43.636789031999996,-79.429849981,310444.292,4832763.44
-889775,4155176,2017.0,2020.0,1968.0,PRIVATE,5,York South-Weston,200 WOOLNER AVE,16,304,2020-11-10,70,Evaluation needs to be conducted in 2 years,18,3.0,3.0,5.0,3.0,4.0,3.0,4.0,3.0,5.0,,3.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,,W0539,43.672863752299996,-79.4916650817,305456.466,4836767.943
-889776,4155177,2017.0,2020.0,1968.0,PRIVATE,5,York South-Weston,210 WOOLNER AVE,9,188,2020-11-10,67,Evaluation needs to be conducted in 2 years,18,3.0,3.0,5.0,3.0,3.0,4.0,3.0,3.0,,3.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,,W0539,43.6724874723,-79.4924156199,305395.95,4836726.135
-889777,4154019,2017.0,2020.0,1954.0,PRIVATE,8,Eglinton-Lawrence,2730 YONGE ST,7,63,2020-11-10,90,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,5.0,4.0,4.0,,4.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,N0829,43.7180354944,-79.4010377857,312758.613,4841791.045
-889778,4155356,2017.0,2020.0,1970.0,PRIVATE,2,Etobicoke Centre,34 DIXINGTON CRES,5,60,2020-11-10,68,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,4.0,3.0,4.0,,3.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,3.0,2.0,2.0,3.0,,W0223,43.696411866000005,-79.541932687,301404.12899999996,4839385.943
-889779,4153477,2017.0,2020.0,1927.0,PRIVATE,13,Toronto Centre,134 CARLTON ST,3,35,2020-11-10,73,Evaluation needs to be conducted in 2 years,14,3.0,3.0,5.0,3.0,4.0,4.0,,4.0,,,4.0,4.0,3.0,3.0,4.0,4.0,,3.0,,,S1326,43.663016123999995,-79.375476419,314827.13399999996,4835682.272
-889780,4153476,2017.0,2020.0,1973.0,PRIVATE,13,Toronto Centre,140 CARLTON ST,23,375,2020-11-10,82,Evaluation needs to be conducted in 2 years,19,5.0,5.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1326,43.66315507,-79.375194012,314849.88800000004,4835697.742
-889781,4166721,2017.0,2020.0,2012.0,PRIVATE,22,Scarborough-Agincourt,8 CHICHESTER PL,20,210,2020-11-10,91,Evaluation needs to be conducted in 3 years,18,4.0,4.0,5.0,4.0,5.0,5.0,5.0,4.0,5.0,,4.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,5.0,,E2225,43.77626173,-79.320962704,319196.64,4848271.343
-889782,4153615,2017.0,2020.0,1978.0,TCHC,14,Toronto-Danforth,80 DANFORTH AVE,5,131,2020-11-10,74,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,3.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,3.0,S1424,43.67633044270001,-79.3597559522,316092.805,4837162.489
-889783,4167463,2017.0,2020.0,2006.0,TCHC,13,Toronto Centre,184 RIVER ST,3,54,2020-11-10,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,2.0,3.0,3.0,,S1330,43.662770771999995,-79.35927116,316143.84,4835667.148
-889784,4155600,2017.0,2020.0,1973.0,TCHC,13,Toronto Centre,155 SHERBOURNE ST,16,301,2020-11-10,67,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,4.0,3.0,3.0,4.0,3.0,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1329,43.6555922823,-79.3695219097,315308.923,4834857.287
-889785,4153472,2017.0,2020.0,1963.0,PRIVATE,13,Toronto Centre,392 SHERBOURNE ST,10,128,2020-11-10,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,5.0,4.0,5.0,3.0,5.0,,4.0,3.0,5.0,4.0,3.0,5.0,4.0,4.0,3.0,,S1326,43.664096113199996,-79.3738282072,314960.149,4835801.501
-889786,4154994,2017.0,2020.0,1955.0,PRIVATE,12,Toronto-St. Paul's,1592 BATHURST ST,4,35,2020-11-10,68,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,3.0,3.0,3.0,,4.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1229,43.687646650699996,-79.4205557001,311189.091,4838413.223999999
-889787,4154993,2017.0,2020.0,1948.0,PRIVATE,12,Toronto-St. Paul's,1594 BATHURST ST,3,22,2020-11-10,69,Evaluation needs to be conducted in 2 years,14,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,,,S1229,43.687863917,-79.4206373441,311182.48699999996,4838437.357
-889788,4155003,2017.0,2020.0,1949.0,PRIVATE,12,Toronto-St. Paul's,1996 BATHURST ST,4,39,2020-11-10,79,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,2.0,4.0,,5.0,5.0,5.0,4.0,3.0,3.0,,4.0,3.0,,S1224,43.6991289014,-79.425200068,310813.582,4839688.522
-889789,4155002,2017.0,2020.0,1954.0,PRIVATE,12,Toronto-St. Paul's,1998 BATHURST ST,3,19,2020-11-10,64,Evaluation needs to be conducted in 1 year,16,3.0,4.0,5.0,2.0,3.0,2.0,,3.0,,4.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,S1224,43.699416778,-79.4253015871,310805.37100000004,4839720.498
-889790,4153232,2017.0,2020.0,1958.0,PRIVATE,11,University-Rosedale,267 ST GEORGE ST,10,63,2020-11-10,82,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1127,43.673533271400004,-79.4021494997,312674.784,4836846.799
-889791,4153237,2017.0,2020.0,1965.0,PRIVATE,11,University-Rosedale,276 ST GEORGE ST,9,88,2020-11-10,78,Evaluation needs to be conducted in 2 years,19,3.0,4.0,5.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,3.0,3.0,5.0,4.0,4.0,,S1127,43.6735780658,-79.4030693901,312600.601,4836851.692
-889792,4153233,2017.0,2020.0,1971.0,PRIVATE,11,University-Rosedale,277-283 ST GEORGE ST,10,74,2020-11-10,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,,S1127,,,312646.701,4836883.399
-889793,4153223,2017.0,2020.0,1960.0,PRIVATE,11,University-Rosedale,161 ST GEORGE ST,7,62,2020-11-10,87,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,3.0,5.0,4.0,,4.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,,S1127,43.670260332,-79.40054649,312804.196,4836484.301
-889794,4153366,2017.0,2020.0,1926.0,PRIVATE,12,Toronto-St. Paul's,400 AVENUE RD,4,41,2020-11-10,84,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,5.0,4.0,5.0,,4.0,,3.0,4.0,3.0,5.0,4.0,5.0,5.0,4.0,4.0,3.0,,S1237,43.682697543900005,-79.4006048601,312798.17100000003,4837865.095
-889795,4155006,2017.0,2020.0,1955.0,PRIVATE,12,Toronto-St. Paul's,1065 EGLINTON AVE W,4,34,2020-11-10,75,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,4.0,,2.0,4.0,,4.0,3.0,5.0,3.0,3.0,3.0,,4.0,,,S1224,43.698898756800006,-79.4340201951,310102.647,4839662.339
-889796,4155005,2017.0,2020.0,1955.0,PRIVATE,12,Toronto-St. Paul's,1071 EGLINTON AVE W,3,33,2020-11-10,75,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,4.0,4.0,3.0,,2.0,,4.0,4.0,4.0,5.0,3.0,3.0,4.0,,4.0,4.0,,S1224,43.6988240231,-79.4343514595,310075.95,4839654.0139999995
-889797,4152686,2017.0,2020.0,1960.0,PRIVATE,20,Scarborough Southwest,2293 EGLINTON AVE E,7,118,2020-11-10,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2023,43.7306169901,-79.271727231,323174.166,4843209.151000001
-889798,4152788,2017.0,2020.0,1953.0,PRIVATE,20,Scarborough Southwest,3111 EGLINTON AVE E,6,68,2020-11-10,71,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,,3.0,3.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,,E2027,43.741595220200004,-79.2240381371,327011.907,4844440.398
-889799,4154475,2017.0,2020.0,1973.0,PRIVATE,7,Humber River-Black Creek,35 FOUNTAINHEAD RD,22,370,2020-11-10,87,Evaluation needs to be conducted in 3 years,18,4.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,5.0,,4.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,,W0726,43.761108533000005,-79.503752985,304482.17,4846572.3889999995
-889800,4154474,2017.0,2020.0,1972.0,PRIVATE,7,Humber River-Black Creek,40 FOUNTAINHEAD RD,22,370,2020-11-10,82,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,3.0,4.0,5.0,3.0,5.0,4.0,,W0726,43.762581653000005,-79.504256907,304441.6,4846736.049
-889801,4155519,2017.0,2020.0,1958.0,PRIVATE,3,Etobicoke-Lakeshore,50 FOURTH ST,3,11,2020-11-10,81,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0335,43.5991188211,-79.5012245162,304685.481,4828575.294
-889802,4152679,2017.0,2020.0,1971.0,PRIVATE,20,Scarborough Southwest,2225 EGLINTON AVE E,6,94,2020-11-10,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,,4.0,4.0,5.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,E2023,43.729677828,-79.276229104,322811.499,4843104.772
-889803,4152680,2017.0,2020.0,1958.0,PRIVATE,20,Scarborough Southwest,2231 EGLINTON AVE E,6,110,2020-11-10,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2023,43.729743761,-79.275420911,322876.591,4843112.275
-889804,4152681,2017.0,2020.0,1958.0,PRIVATE,20,Scarborough Southwest,2233 EGLINTON AVE E,6,110,2020-11-10,81,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2023,43.729840133,-79.274983998,322911.762,4843123.078
-889805,4155751,2017.0,2020.0,1969.0,PRIVATE,5,York South-Weston,1465 LAWRENCE AVE W,20,161,2020-11-10,84,Evaluation needs to be conducted in 2 years,19,5.0,3.0,5.0,4.0,4.0,3.0,,5.0,5.0,3.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,W0529,43.7073903147,-79.4803989264,306364.173,4840603.819
-889806,4155228,2018.0,2020.0,1962.0,PRIVATE,3,Etobicoke-Lakeshore,9 KINSDALE BLVD,4,23,2020-11-10,80,Evaluation needs to be conducted in 2 years,16,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,,3.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0329,43.6352649375,-79.4919665857,305432.484,4832590.959
-889807,4153212,2017.0,2020.0,1955.0,PRIVATE,11,University-Rosedale,85 LOWTHER AVE,8,44,2020-11-10,82,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1127,43.669735327,-79.40029681,312824.398,4836426.0
-889808,4155044,2017.0,2020.0,1960.0,PRIVATE,8,Eglinton-Lawrence,110 MARLEE AVE,7,110,2020-11-10,82,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0831,43.701234201999995,-79.441021952,309537.855,4839922.321
-889809,4152797,2017.0,2020.0,1968.0,PRIVATE,24,Scarborough-Guildwood,215 MARKHAM RD,17,193,2020-11-10,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,E2433,43.744688035,-79.218768113,327434.96,4844786.353
-889810,4155456,2017.0,2020.0,1972.0,PRIVATE,1,Etobicoke North,1915 MARTIN GROVE RD,7,135,2020-11-10,74,Evaluation needs to be conducted in 2 years,17,3.0,4.0,3.0,3.0,4.0,4.0,,3.0,3.0,,3.0,4.0,5.0,5.0,4.0,3.0,4.0,4.0,4.0,,W0123,43.7459657464,-79.5951234793,297123.337,4844893.655
-889811,4154492,2017.0,2020.0,1958.0,PRIVATE,8,Eglinton-Lawrence,47 EUPHRASIA DR,3,26,2020-11-10,82,Evaluation needs to be conducted in 2 years,18,4.0,5.0,3.0,4.0,5.0,4.0,,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0826,43.712421686099994,-79.4606406052,307956.24600000004,4841163.303
-889812,4155221,2017.0,2020.0,1970.0,PRIVATE,3,Etobicoke-Lakeshore,620 EVANS AVE,3,25,2020-11-10,74,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,4.0,3.0,3.0,,4.0,3.0,4.0,4.0,3.0,5.0,4.0,4.0,3.0,2.0,4.0,4.0,4.0,W0330,43.610802275,-79.550398922,300715.86600000004,4829875.377
-889813,4154416,2017.0,2020.0,1955.0,PRIVATE,6,York Centre,2816 KEELE ST,3,12,2020-11-10,71,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,3.0,3.0,3.0,,4.0,,,3.0,3.0,5.0,4.0,4.0,3.0,,4.0,3.0,,N0627,43.729460131,-79.483123472,306144.125,4843055.59
-889814,4154415,2017.0,2020.0,1972.0,PRIVATE,6,York Centre,2818 KEELE ST,3,11,2020-11-10,68,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,3.0,2.0,4.0,,4.0,,4.0,2.0,3.0,5.0,3.0,3.0,3.0,,4.0,3.0,,N0627,43.7296930914,-79.4831794143,306139.614,4843081.47
-889815,4152952,2017.0,2020.0,1963.0,PRIVATE,4,Parkdale-High Park,115 TYNDALL AVE,10,108,2020-11-10,82,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,4.0,5.0,3.0,4.0,3.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,S0437,43.637071376899996,-79.4279645858,310596.655,4832793.975
-889816,4154727,2017.0,2020.0,1968.0,PRIVATE,18,Willowdale,5 TANGREEN CRT,18,214,2020-11-10,89,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,5.0,5.0,3.0,4.0,4.0,5.0,5.0,5.0,5.0,3.0,4.0,5.0,5.0,4.0,4.0,,N1822,43.796156565,-79.425260494,310798.795,4850468.83
-889817,4154726,2017.0,2020.0,1968.0,PRIVATE,18,Willowdale,15 TANGREEN CRT,18,214,2020-11-10,91,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,5.0,5.0,3.0,4.0,4.0,5.0,5.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,,N1822,43.79522866,-79.425192074,310804.393,4850365.749
-889818,4153199,2017.0,2020.0,2004.0,PRIVATE,11,University-Rosedale,25 BEDFORD RD,8,62,2020-11-10,86,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,,S1127,43.670003806000004,-79.397710763,313032.908,4836456.077
-889819,4155920,2017.0,2020.0,1967.0,PRIVATE,5,York South-Weston,1775 WESTON RD,25,245,2020-11-09,65,Evaluation needs to be conducted in 1 year,19,4.0,3.0,5.0,2.0,3.0,3.0,2.0,3.0,3.0,4.0,3.0,3.0,2.0,4.0,3.0,3.0,4.0,4.0,4.0,,W0527,43.6994166431,-79.51287144,303746.982,4839717.978999999
-889820,4156451,2017.0,2020.0,1960.0,PRIVATE,1,Etobicoke North,25 BERGAMOT AVE,4,73,2020-11-09,72,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,3.0,4.0,3.0,,4.0,3.0,4.0,5.0,4.0,3.0,3.0,3.0,4.0,3.0,,W0130,43.716209723999995,-79.557077624,300184.917,4841586.092
-889821,4155787,2017.0,2020.0,2001.0,TCHC,14,Toronto-Danforth,10 BOULTBEE AVE,11,167,2020-11-09,84,Evaluation needs to be conducted in 2 years,20,5.0,4.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,5.0,S1430,43.672840218800005,-79.339881471,317696.053,4836777.6280000005
-889822,4154233,2017.0,2020.0,1970.0,PRIVATE,7,Humber River-Black Creek,2970 JANE ST,14,164,2020-11-09,71,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,3.0,5.0,4.0,4.0,4.0,4.0,5.0,3.0,,W0729,43.7553825332,-79.5178201808,303349.587,4845935.472
-889823,4154231,2017.0,2020.0,1970.0,PRIVATE,7,Humber River-Black Creek,2940 JANE ST,13,153,2020-11-09,68,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,,W0729,43.753728376000005,-79.51778801020001,303352.137,4845751.71
-889824,4156243,2017.0,2020.0,1969.0,TCHC,14,Toronto-Danforth,1575 QUEEN ST E,6,60,2020-11-09,72,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,3.0,4.0,5.0,,4.0,3.0,,3.0,3.0,3.0,3.0,4.0,4.0,4.0,3.0,4.0,,S1442,43.66586169560001,-79.31811382689999,319453.024,4836005.915
-889825,4155606,2017.0,2020.0,1969.0,TCHC,14,Toronto-Danforth,1555 QUEEN ST E,6,60,2020-11-09,71,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,4.0,4.0,,4.0,4.0,,3.0,4.0,3.0,3.0,4.0,3.0,4.0,3.0,4.0,,S1442,43.665662499300005,-79.318700496,319405.75899999996,4835983.683
-889826,4155995,2017.0,2020.0,1960.0,PRIVATE,1,Etobicoke North,27 BERGAMOT AVE,7,130,2020-11-09,69,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,3.0,,3.0,3.0,4.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,W0130,43.715262532,-79.55665061100001,300219.248,4841480.8610000005
-889827,4156295,2017.0,2020.0,1967.0,PRIVATE,5,York South-Weston,1765 WESTON RD,25,246,2020-11-09,72,Evaluation needs to be conducted in 2 years,20,4.0,3.0,5.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,W0527,43.6990639559,-79.5119719596,303819.476,4839678.778
-889828,4155475,2017.0,2020.0,1959.0,PRIVATE,3,Etobicoke-Lakeshore,2369 LAKE SHORE BLVD W,4,87,2020-11-09,75,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,3.0,3.0,4.0,,3.0,4.0,,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,,W0336,43.615736635,-79.48788213569999,305762.403,4830421.51
-889829,4155476,2017.0,2020.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,2361 LAKE SHORE BLVD W,4,47,2020-11-09,76,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,4.0,4.0,,3.0,3.0,,4.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,5.0,,W0336,43.6158682454,-79.4878084713,305768.347,4830436.132
-889830,4155477,2017.0,2020.0,1958.0,PRIVATE,3,Etobicoke-Lakeshore,2355 LAKE SHORE BLVD W,4,86,2020-11-09,75,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,3.0,3.0,3.0,,3.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,,W0336,43.61606574100001,-79.48769627729999,305777.4,4830458.074
-889831,4155480,2017.0,2020.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,2309 LAKE SHORE BLVD W,4,28,2020-11-09,69,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,,2.0,4.0,4.0,5.0,4.0,3.0,3.0,,4.0,4.0,,W0336,43.6177159242,-79.4864921975,305843.963,4830639.407
-889832,4156554,2017.0,2020.0,1970.0,TCHC,24,Scarborough-Guildwood,3947 LAWRENCE AVE E,19,238,2020-11-09,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,,4.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,,E2431,43.7638127672,-79.20381674149999,328631.854,4846914.233
-889833,4154487,2018.0,2020.0,1961.0,PRIVATE,8,Eglinton-Lawrence,777 LAWRENCE AVE W,3,10,2020-11-09,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,1.0,4.0,4.0,5.0,,4.0,,,4.0,4.0,3.0,4.0,3.0,4.0,5.0,5.0,4.0,,N0827,43.713831691,-79.45359547,308523.63300000003,4841321.187
-889834,4154488,,2020.0,1959.0,PRIVATE,8,Eglinton-Lawrence,773 LAWRENCE AVE W,3,10,2020-11-09,71,Evaluation needs to be conducted in 2 years,16,3.0,4.0,1.0,4.0,4.0,5.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,4.0,4.0,4.0,4.0,,N0827,43.713971711999996,-79.452927496,308577.452,4841336.772
-889835,4154489,2017.0,2020.0,1959.0,PRIVATE,8,Eglinton-Lawrence,771 LAWRENCE AVE W,3,10,2020-11-09,84,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,5.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0827,43.714044601000005,-79.45260206399999,308603.672,4841344.884
-889836,4156492,2017.0,2020.0,1974.0,PRIVATE,7,Humber River-Black Creek,235 GOSFORD BLVD,15,131,2020-11-09,74,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,3.0,5.0,3.0,3.0,3.0,3.0,5.0,3.0,,W0724,43.770115213000004,-79.522300555,302992.5,4847674.032
-889837,4156419,2017.0,2020.0,1974.0,PRIVATE,7,Humber River-Black Creek,215 GOSFORD BLVD,8,154,2020-11-09,74,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,4.0,4.0,4.0,3.0,4.0,3.0,,3.0,3.0,5.0,3.0,4.0,4.0,4.0,5.0,4.0,,W0724,43.76926344100001,-79.52281062600001,302932.277,4847469.866
-889838,4155420,2018.0,2020.0,1964.0,PRIVATE,1,Etobicoke North,2313 ISLINGTON AVE,7,80,2020-11-08,66,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,4.0,,4.0,,2.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,W0131,43.7176295755,-79.5558080485,300287.597,4841742.787
-889839,4155957,2017.0,2020.0,1972.0,TCHC,20,Scarborough Southwest,30 GORDONRIDGE PL,17,231,2020-11-07,76,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,,4.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,5.0,E2024,43.726764513,-79.250888477,324750.497,4842822.528
-889840,4155573,2017.0,2020.0,1972.0,TCHC,20,Scarborough Southwest,40 GORDONRIDGE PL,18,421,2020-11-07,71,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,,3.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,3.0,,E2024,43.727612646000004,-79.251278648,324819.267,4842872.647
-889841,4155690,2017.0,2020.0,1970.0,PRIVATE,19,Beaches-East York,65 HALSEY AVE,9,113,2020-11-07,72,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1927,43.6989642067,-79.29871129189999,321008.876,4839687.079
-889842,4476608,2018.0,2020.0,1925.0,PRIVATE,19,Beaches-East York,987 KINGSTON RD,3,15,2020-11-07,77,Evaluation needs to be conducted in 2 years,14,3.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,3.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,S1940,43.6803978497,-79.28612456399999,322028.70399999997,4837626.949
-889843,4155802,2017.0,2020.0,1956.0,PRIVATE,20,Scarborough Southwest,14 ENGELHART CRES,3,47,2020-11-07,76,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,3.0,4.0,4.0,,4.0,,,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,3.0,,E2021,43.7220330061,-79.30046916970001,320861.043,4842249.596
-889844,4154778,2017.0,2020.0,1966.0,PRIVATE,16,Don Valley East,1059 DON MILLS RD,6,70,2020-11-07,68,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,2.0,4.0,4.0,3.0,4.0,3.0,2.0,2.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,2.0,,N1627,43.7346398069,-79.3419288019,317517.899,4843642.953
-889845,4154779,2017.0,2020.0,1960.0,PRIVATE,16,Don Valley East,1061 DON MILLS RD,4,40,2020-11-07,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,3.0,4.0,,4.0,4.0,5.0,3.0,3.0,5.0,3.0,4.0,3.0,4.0,4.0,3.0,,N1627,43.735097283,-79.342235727,317493.08,4843693.732
-889846,4154775,2017.0,2020.0,1950.0,PRIVATE,16,Don Valley East,1053 DON MILLS RD,4,40,2020-11-07,83,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,,5.0,5.0,5.0,4.0,5.0,3.0,4.0,4.0,5.0,,N1627,43.7335260721,-79.3417293188,317534.2,4843519.24
-889847,4156468,2017.0,2020.0,1972.0,TCHC,20,Scarborough Southwest,10 GORDONRIDGE PL,16,217,2020-11-07,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,,E2024,43.7269627406,-79.25229348149999,324713.92100000003,4842838.544
-889848,4154785,2017.0,2020.0,1959.0,PRIVATE,16,Don Valley East,16 THE DONWAY E,4,61,2020-11-07,73,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,2.0,2.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,N1627,43.7362179741,-79.3411712705,317578.588,4843818.401000001
-889849,4155928,2017.0,2020.0,1971.0,PRIVATE,2,Etobicoke Centre,41 WARRENDER AVE,7,105,2020-11-06,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,5.0,,3.0,4.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,W0227,43.676012058999994,-79.553552325,300469.80100000004,4837116.899
-889850,4232592,2017.0,2020.0,1971.0,PRIVATE,2,Etobicoke Centre,53 WARRENDER AVE,13,128,2020-11-06,77,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,4.0,4.0,,3.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,3.0,3.0,4.0,,W0227,43.675270143,-79.553851772,300439.227,4837043.395
-889851,4154482,2018.0,2020.0,1950.0,PRIVATE,8,Eglinton-Lawrence,125 SHELBORNE AVE,4,25,2020-11-06,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,3.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0827,43.7155753333,-79.42945624,310468.984,4841515.3319999995
-889852,4152577,2017.0,2020.0,1959.0,PRIVATE,20,Scarborough Southwest,25 PARKETTE PL,5,61,2020-11-06,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,3.0,3.0,3.0,3.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,,E2034,43.696074465600006,-79.2646078047,323758.577,4839373.228
-889853,4154026,2017.0,2020.0,1960.0,PRIVATE,8,Eglinton-Lawrence,15 BEDFORD PARK AVE,3,39,2020-11-06,81,Evaluation needs to be conducted in 2 years,17,5.0,4.0,1.0,4.0,5.0,3.0,,5.0,,5.0,4.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,3.0,,N0825,43.7269710792,-79.4040459316,312515.092,4842783.43
-889854,4153358,2017.0,2020.0,1925.0,PRIVATE,12,Toronto-St. Paul's,320 AVENUE RD,4,24,2020-11-06,79,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,,,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,3.0,,S1237,43.680275983,-79.399224134,312909.538,4837597.137
-889855,4152574,2018.0,2020.0,1959.0,PRIVATE,20,Scarborough Southwest,1336 KINGSTON RD,4,37,2020-11-06,76,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,4.0,3.0,3.0,,4.0,,,3.0,4.0,5.0,4.0,3.0,5.0,,4.0,4.0,,E2033,43.6854962871,-79.2749732512,322926.25899999996,4838195.735
-889856,4153364,2017.0,2020.0,1925.0,PRIVATE,12,Toronto-St. Paul's,340 AVENUE RD,4,24,2020-11-06,79,Evaluation needs to be conducted in 2 years,14,4.0,4.0,5.0,3.0,3.0,4.0,,4.0,,,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,,,S1237,43.680836511,-79.39947188800001,312889.488,4837659.387
-889857,4156313,2017.0,2020.0,1965.0,TCHC,20,Scarborough Southwest,3181 EGLINTON AVE E,7,103,2020-11-06,61,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,3.0,2.0,4.0,2.0,3.0,3.0,,3.0,3.0,3.0,2.0,3.0,4.0,3.0,4.0,3.0,3.0,E2027,43.7426293696,-79.2196525266,327364.75800000003,4844556.449
-889858,4153676,2017.0,2020.0,1934.0,PRIVATE,19,Beaches-East York,204 KINGSTON RD,3,15,2020-11-06,73,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,4.0,3.0,3.0,4.0,,3.0,3.0,,S1937,43.6722400679,-79.3102957191,320081.891,4836715.941000001
-889859,4153679,2017.0,2020.0,1954.0,PRIVATE,19,Beaches-East York,140 KINGSTON RD,4,60,2020-11-06,81,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S1937,43.6709421277,-79.3114896572,319985.941,4836571.526000001
-889860,4152673,2017.0,2020.0,1965.0,PRIVATE,20,Scarborough Southwest,720 KENNEDY RD,14,186,2020-11-06,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,,E2023,43.7295838093,-79.26735641350001,323526.601,4843095.346
-889861,4154786,2017.0,2020.0,1960.0,PRIVATE,16,Don Valley East,14 THE DONWAY E,4,40,2020-11-06,69,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,2.0,4.0,4.0,,3.0,4.0,4.0,3.0,2.0,5.0,3.0,3.0,4.0,3.0,2.0,2.0,,N1627,43.7357778684,-79.34103170739999,317589.923,4843769.528
-889862,4154787,2017.0,2020.0,1960.0,PRIVATE,16,Don Valley East,12 THE DONWAY E,4,40,2020-11-06,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,4.0,4.0,3.0,3.0,5.0,3.0,4.0,3.0,4.0,4.0,3.0,,N1627,43.7353799948,-79.34093531270001,317597.772,4843725.34
-889863,4288175,2018.0,2020.0,1960.0,PRIVATE,4,Parkdale-High Park,2861-2863 DUNDAS ST W,3,16,2020-11-06,66,Evaluation needs to be conducted in 2 years,14,3.0,2.0,4.0,3.0,3.0,3.0,,4.0,,,3.0,3.0,4.0,2.0,3.0,5.0,,4.0,,,S0424,,,307610.618,4835918.416999999
-889864,4154246,2017.0,2020.0,1972.0,PRIVATE,7,Humber River-Black Creek,2405 FINCH AVE W,27,258,2020-11-06,66,Evaluation needs to be conducted in 2 years,19,3.0,4.0,3.0,3.0,4.0,3.0,2.0,3.0,3.0,,3.0,3.0,3.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,W0727,43.750621288999994,-79.544032103,301238.257,4845408.296
-889865,4154247,2017.0,2020.0,1970.0,PRIVATE,7,Humber River-Black Creek,2397 FINCH AVE W,11,121,2020-11-06,69,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,3.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,,W0727,43.751182532,-79.544580941,301194.093,4845470.67
-889866,4152977,2017.0,2020.0,1959.0,PRIVATE,4,Parkdale-High Park,137 DUNN AVE,4,21,2020-11-06,79,Evaluation needs to be conducted in 2 years,15,4.0,4.0,3.0,4.0,4.0,3.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S0437,43.636151700000006,-79.43227982399999,310248.294,4832692.487
-889867,4155943,2017.0,2020.0,1965.0,TCHC,20,Scarborough Southwest,3171 EGLINTON AVE E,12,161,2020-11-06,73,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,,3.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,,E2027,43.7426229529,-79.22004925,327332.807,4844555.63
-889868,4153363,2017.0,2020.0,1925.0,PRIVATE,12,Toronto-St. Paul's,342 AVENUE RD,4,24,2020-11-06,77,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,3.0,3.0,4.0,,4.0,,,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,,,S1237,43.680979699,-79.399528877,312884.875,4837675.29
-889869,4156102,2017.0,2020.0,1968.0,PRIVATE,2,Etobicoke Centre,35 WARRENDER AVE,7,108,2020-11-06,82,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,5.0,,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,W0227,43.676251271000005,-79.552119041,300581.193,4837146.295
-889870,4156297,2017.0,2020.0,1968.0,PRIVATE,2,Etobicoke Centre,25 WARRENDER AVE,13,126,2020-11-06,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,3.0,5.0,,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,W0227,43.67573405,-79.551408627,300638.915,4837089.0819999995
-889871,4153372,2017.0,2020.0,1965.0,PRIVATE,12,Toronto-St. Paul's,82 WARREN RD,7,49,2020-11-06,80,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,4.0,5.0,,3.0,3.0,3.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,S1237,43.6853486337,-79.4067397267,312303.234,4838159.076
-889872,4154412,2017.0,2020.0,1965.0,PRIVATE,6,York Centre,2782 KEELE ST,4,27,2020-11-06,70,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,3.0,2.0,4.0,,4.0,3.0,2.0,3.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,,N0627,43.7279008262,-79.4829037793,306161.851,4842882.356000001
-889873,4152775,2017.0,2020.0,1961.0,PRIVATE,20,Scarborough Southwest,1 BRIMLEY RD,6,58,2020-11-06,76,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,4.0,4.0,4.0,,3.0,3.0,4.0,3.0,3.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,E2026,43.719470638900006,-79.24043204510001,325699.11,4841978.266
-889874,4154988,2017.0,2020.0,1926.0,PRIVATE,12,Toronto-St. Paul's,231 VAUGHAN RD,4,52,2020-11-06,72,Evaluation needs to be conducted in 2 years,13,3.0,4.0,4.0,3.0,,4.0,,4.0,,,3.0,3.0,5.0,3.0,4.0,3.0,,4.0,,,S1229,43.6880599836,-79.42414197789999,310899.92600000004,4838458.881
-889875,4154987,2017.0,2020.0,1938.0,PRIVATE,12,Toronto-St. Paul's,229 VAUGHAN RD,4,24,2020-11-06,80,Evaluation needs to be conducted in 2 years,14,3.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,3.0,5.0,4.0,5.0,4.0,,4.0,,,S1229,43.687936684700006,-79.4236664523,310938.274,4838445.218
-889876,4154982,2017.0,2020.0,1955.0,PRIVATE,12,Toronto-St. Paul's,214 VAUGHAN RD,6,31,2020-11-06,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,4.0,4.0,,5.0,3.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,S1229,43.6873436223,-79.4236433658,310940.19399999996,4838379.329
-889877,4154977,2017.0,2020.0,1955.0,PRIVATE,12,Toronto-St. Paul's,197 VAUGHAN RD,6,42,2020-11-06,76,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,3.0,3.0,4.0,,4.0,3.0,,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1229,43.68697657479999,-79.42215889180001,311059.907,4838338.659
-889878,4154983,2017.0,2020.0,1952.0,PRIVATE,12,Toronto-St. Paul's,194 VAUGHAN RD,4,22,2020-11-06,71,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,3.0,3.0,4.0,,3.0,,3.0,4.0,4.0,4.0,3.0,3.0,3.0,,4.0,,,S1229,43.6868615929,-79.4228739886,311002.268,4838325.831
-889879,4154082,2017.0,2020.0,1992.0,SOCIAL HOUSING,19,Beaches-East York,1430 WOODBINE AVE,6,61,2020-11-06,94,Evaluation needs to be conducted in 3 years,19,4.0,5.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,,4.0,5.0,5.0,4.0,4.0,5.0,5.0,5.0,5.0,5.0,S1925,43.6985761673,-79.31879616319999,319390.076,4839640.288
-889880,4152564,,2020.0,1949.0,PRIVATE,20,Scarborough Southwest,36 WOOD GLEN RD,4,15,2020-11-06,79,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,4.0,3.0,3.0,,4.0,,,4.0,4.0,5.0,3.0,4.0,5.0,,4.0,,,E2033,43.6839132294,-79.276016525,322842.63300000003,4838019.642
-889881,4329455,2018.0,2020.0,1900.0,PRIVATE,8,Eglinton-Lawrence,485 DUPLEX AVE,3,36,2020-11-05,84,Evaluation needs to be conducted in 2 years,16,5.0,5.0,5.0,4.0,4.0,4.0,,3.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,N0833,43.7099483796,-79.4004676856,312805.619,4840892.672
-889882,4154013,2017.0,2020.0,1900.0,PRIVATE,8,Eglinton-Lawrence,487 DUPLEX AVE,3,36,2020-11-05,85,Evaluation needs to be conducted in 2 years,16,5.0,5.0,5.0,4.0,4.0,4.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,N0833,43.710114718199996,-79.4005329944,312800.334,4840911.145
-889883,4156439,2017.0,2020.0,1993.0,SOCIAL HOUSING,5,York South-Weston,33 GABIAN WAY,18,248,2020-11-05,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,W0533,43.6931197205,-79.46886392319999,307294.354,4839018.662
-889884,4154769,2017.0,2020.0,1966.0,PRIVATE,16,Don Valley East,200 GATEWAY BLVD,17,284,2020-11-05,70,Evaluation needs to be conducted in 2 years,18,2.0,3.0,4.0,3.0,4.0,3.0,3.0,4.0,4.0,,4.0,5.0,5.0,3.0,4.0,4.0,4.0,2.0,2.0,,N1630,43.715178693599995,-79.3352789539,318057.864,4841481.992
-889885,4155186,2017.0,2020.0,1958.0,PRIVATE,5,York South-Weston,38 LAMBTON AVE,3,26,2020-11-05,77,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,3.0,4.0,3.0,,4.0,,,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0535,43.68380425229999,-79.4870901288,305825.229,4837983.416999999
-889886,4155187,2017.0,2020.0,1958.0,PRIVATE,5,York South-Weston,40 LAMBTON AVE,3,26,2020-11-05,79,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,4.0,4.0,3.0,,4.0,,,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,4.0,,W0535,43.6837517328,-79.4873082917,305807.641,4837977.58
-889887,4155521,2019.0,2020.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,115 EIGHTH ST,3,10,2020-11-05,79,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,,,4.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,W0335,43.5997458878,-79.5057809161,304317.63899999997,4828644.958000001
-889888,4154275,2017.0,2020.0,1960.0,PRIVATE,7,Humber River-Black Creek,25 DUNCANWOODS DR,11,148,2020-11-05,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,3.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,,W0722,43.7496851095,-79.55739159,300162.561,4845304.0030000005
-889889,4154276,2017.0,2020.0,1969.0,PRIVATE,7,Humber River-Black Creek,35 DUNCANWOODS DR,7,75,2020-11-05,80,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,5.0,4.0,,W0722,43.7506086737,-79.5580653576,300108.373,4845406.643
-889890,4154976,2017.0,2020.0,1920.0,PRIVATE,12,Toronto-St. Paul's,195 VAUGHAN RD,4,32,2020-11-05,83,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,4.0,,5.0,,4.0,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,,,S1229,43.6868381071,-79.4220275431,311070.51,4838323.284
-889891,4154725,2017.0,2020.0,1970.0,PRIVATE,18,Willowdale,755 STEELES AVE W,15,194,2020-11-05,82,Evaluation needs to be conducted in 2 years,18,4.0,5.0,5.0,3.0,5.0,3.0,4.0,2.0,4.0,,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,N1821,43.79282799600001,-79.44165411899999,309479.81899999996,4850097.949
-889892,4154971,2017.0,2020.0,1929.0,PRIVATE,12,Toronto-St. Paul's,120 VAUGHAN RD,3,24,2020-11-05,80,Evaluation needs to be conducted in 2 years,14,4.0,4.0,5.0,4.0,,3.0,,4.0,,,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,4.0,,S1229,43.684541083,-79.4218295295,311086.706,4838068.087
-889893,4154958,2017.0,2020.0,1950.0,PRIVATE,12,Toronto-St. Paul's,125 VAUGHAN RD,4,32,2020-11-05,66,Evaluation needs to be conducted in 2 years,13,3.0,3.0,4.0,3.0,,2.0,,4.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,,,S1229,43.6846976154,-79.42121421520001,311136.299,4838085.525
-889894,4154975,2017.0,2020.0,1955.0,PRIVATE,12,Toronto-St. Paul's,189 VAUGHAN RD,4,16,2020-11-05,73,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,4.0,3.0,4.0,,4.0,,,3.0,4.0,5.0,3.0,4.0,4.0,2.0,3.0,,,S1229,43.6867106678,-79.421940478,311077.542,4838309.131
-889895,4155374,2017.0,2020.0,1959.0,PRIVATE,2,Etobicoke Centre,240 MARKLAND DR,10,113,2020-11-05,77,Evaluation needs to be conducted in 2 years,19,5.0,4.0,4.0,4.0,5.0,3.0,3.0,3.0,5.0,4.0,4.0,3.0,5.0,4.0,4.0,2.0,5.0,3.0,3.0,,W0233,43.6291344462,-79.5787506011,298429.535,4831912.798
-889896,4153009,2017.0,2020.0,1912.0,PRIVATE,4,Parkdale-High Park,1501 QUEEN ST W,3,38,2020-11-05,67,Evaluation needs to be conducted in 2 years,15,3.0,4.0,3.0,3.0,3.0,3.0,,3.0,,,4.0,4.0,3.0,3.0,3.0,4.0,4.0,3.0,,,S0436,43.639616026700004,-79.4409064892,309552.238,4833075.896000001
-889897,4152558,2017.0,2020.0,1920.0,PRIVATE,20,Scarborough Southwest,2400 QUEEN ST E,4,32,2020-11-05,81,Evaluation needs to be conducted in 2 years,14,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,5.0,2.0,5.0,4.0,4.0,4.0,,4.0,,,E2033,43.6746856483,-79.2801413313,322512.757,4836993.597
-889898,4152883,2017.0,2020.0,1974.0,PRIVATE,23,Scarborough North,360 PITFIELD RD,18,246,2020-11-05,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,3.0,,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,,E2331,43.7880273326,-79.258614594,324212.061,4849590.142
-889899,4155223,2017.0,2020.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,810 ROYAL YORK RD,6,60,2020-11-05,86,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,4.0,5.0,3.0,,3.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,,W0325,43.639553376,-79.509024033,304055.942,4833068.369
-889900,4153021,2017.0,2020.0,1967.0,PRIVATE,4,Parkdale-High Park,1430 KING ST W,7,77,2020-11-05,66,Evaluation needs to be conducted in 2 years,17,4.0,3.0,5.0,2.0,3.0,4.0,,4.0,3.0,,3.0,4.0,2.0,4.0,3.0,3.0,3.0,4.0,2.0,,S0436,43.637386748500006,-79.43645222720001,309911.8,4832828.489
-889901,4152561,2017.0,2020.0,1920.0,PRIVATE,20,Scarborough Southwest,1165 KINGSTON RD,4,21,2020-11-05,78,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,3.0,3.0,,4.0,,4.0,3.0,3.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,,E2033,43.681968905,-79.2794672741,322565.015,4837802.9
-889902,4154967,2017.0,2020.0,1950.0,PRIVATE,12,Toronto-St. Paul's,105 KENWOOD AVE,4,31,2020-11-05,83,Evaluation needs to be conducted in 2 years,14,4.0,4.0,5.0,4.0,4.0,5.0,,4.0,,,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,S1229,43.685885733999996,-79.4229628704,310995.19899999996,4838217.402
-889903,4155421,2017.0,2020.0,1955.0,PRIVATE,1,Etobicoke North,2413 ISLINGTON AVE,6,52,2020-11-05,84,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,5.0,4.0,4.0,,4.0,4.0,,4.0,5.0,5.0,4.0,4.0,4.0,3.0,5.0,4.0,,W0131,43.7237971189,-79.5587381746,300051.989,4842428.141
-889904,4155566,2017.0,2020.0,1969.0,TCHC,20,Scarborough Southwest,675 KENNEDY RD,11,192,2020-11-05,67,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,3.0,3.0,4.0,4.0,3.0,4.0,,3.0,4.0,2.0,3.0,3.0,3.0,3.0,4.0,3.0,,E2023,43.72687441,-79.265289789,323769.245,4842812.63
-889905,4154027,2017.0,2020.0,1957.0,PRIVATE,8,Eglinton-Lawrence,3112 YONGE ST,4,41,2020-11-05,80,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,N0825,43.726397678599994,-79.4031116718,312590.434,4842719.816000001
-889906,4154020,2017.0,2020.0,1950.0,PRIVATE,8,Eglinton-Lawrence,2770 YONGE ST,4,50,2020-11-05,91,Evaluation needs to be conducted in 3 years,16,5.0,5.0,5.0,4.0,5.0,4.0,,5.0,,,4.0,4.0,5.0,4.0,5.0,4.0,4.0,5.0,5.0,,N0829,43.7188202581,-79.40116969729999,312747.881,4841878.215
-889907,4155906,2017.0,2020.0,1940.0,PRIVATE,9,Davenport,966 ST CLAIR AVE W,4,11,2020-11-05,73,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,4.0,3.0,4.0,,3.0,,,4.0,4.0,3.0,3.0,4.0,4.0,,3.0,,,S0928,43.67961435,-79.436448672,309901.703,4837533.376
-889908,4155073,2017.0,2020.0,1970.0,PRIVATE,9,Davenport,478 CALEDONIA RD,3,20,2020-11-05,74,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,3.0,4.0,,3.0,,4.0,4.0,4.0,5.0,3.0,4.0,4.0,,3.0,3.0,,S0921,43.6893077444,-79.4610170083,307927.075,4838595.44
-889909,4153026,2017.0,2020.0,1917.0,PRIVATE,4,Parkdale-High Park,189 DOWLING AVE,4,10,2020-11-05,64,Evaluation needs to be conducted in 1 year,14,3.0,4.0,5.0,3.0,,3.0,,3.0,,,3.0,4.0,4.0,2.0,3.0,2.0,,3.0,3.0,,S0436,43.6396109365,-79.4394716965,309667.989,4833097.526000001
-889910,4153010,2017.0,2020.0,2010.0,SOCIAL HOUSING,4,Parkdale-High Park,194 DOWLING AVE,4,29,2020-11-05,69,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,3.0,4.0,4.0,,4.0,3.0,,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,,,S0436,43.6397760709,-79.44001122579999,309624.458,4833093.725
-889911,4155746,2017.0,2020.0,1968.0,PRIVATE,7,Humber River-Black Creek,11 CATFORD RD,9,218,2020-11-05,59,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,3.0,3.0,2.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,,W0731,43.7587124736,-79.49134153979999,305481.82300000003,4846305.27
-889912,4155215,2017.0,2020.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,100 BROWNS LINE,3,22,2020-11-05,84,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,5.0,,3.0,4.0,4.0,5.0,4.0,4.0,5.0,,4.0,4.0,,W0330,43.5952200747,-79.5429727048,301314.74,4828143.037
-889913,4154796,2017.0,2020.0,1960.0,PRIVATE,16,Don Valley East,1133 DON MILLS RD,6,49,2020-11-05,77,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,4.0,4.0,,4.0,5.0,4.0,4.0,2.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N1624,43.7382619865,-79.34313342760001,317420.107,4844045.19
-889914,4152563,2018.0,2020.0,1932.0,PRIVATE,20,Scarborough Southwest,3008 QUEEN ST E,4,16,2020-11-05,91,Evaluation needs to be conducted in 3 years,15,5.0,5.0,4.0,5.0,2.0,5.0,,4.0,,,5.0,5.0,5.0,4.0,5.0,5.0,,5.0,4.0,,E2033,43.6754276016,-79.277427743,322731.349,4837076.607
-889915,4154954,2017.0,2020.0,1933.0,PRIVATE,12,Toronto-St. Paul's,1510 BATHURST ST,4,24,2020-11-05,71,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,,3.0,3.0,3.0,5.0,3.0,4.0,4.0,,4.0,,,S1229,43.6845459232,-79.4192018121,311298.563,4838068.827
-889916,4153236,2017.0,2020.0,1967.0,PRIVATE,11,University-Rosedale,280 ST GEORGE ST,15,85,2020-11-05,84,Evaluation needs to be conducted in 2 years,19,5.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,2.0,,S1127,43.673984446000006,-79.4033081754,312581.298,4836896.819
-889917,4153341,2017.0,2020.0,1920.0,PRIVATE,12,Toronto-St. Paul's,341 ST CLAIR AVE W,3,10,2020-11-05,69,Evaluation needs to be conducted in 2 years,13,3.0,4.0,4.0,3.0,,4.0,,3.0,,,3.0,3.0,5.0,3.0,4.0,3.0,,3.0,,,S1236,43.684313363,-79.4114493944,311923.636,4838043.641
-889918,4153362,2017.0,2020.0,1931.0,PRIVATE,12,Toronto-St. Paul's,394 AVENUE RD,6,41,2020-11-05,73,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,S1237,43.681931003100004,-79.3998962312,312855.399,4837779.994
-889919,4153361,2017.0,2020.0,1931.0,PRIVATE,12,Toronto-St. Paul's,396 AVENUE RD,6,51,2020-11-05,74,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,S1237,43.682100491099995,-79.4000016066,312846.882,4837798.815
-889920,4153360,2017.0,2020.0,1937.0,PRIVATE,12,Toronto-St. Paul's,398 AVENUE RD,6,39,2020-11-05,76,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,4.0,3.0,3.0,4.0,3.0,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,S1237,43.6822543813,-79.40009921810001,312838.993,4837815.904
-889921,4155485,2017.0,2020.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,12 ALBERT AVE,3,12,2020-11-05,71,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,4.0,3.0,3.0,,3.0,,3.0,4.0,4.0,5.0,3.0,3.0,4.0,,4.0,3.0,,W0336,43.6158886447,-79.4889237637,305678.326,4830438.387
-889922,4155484,2017.0,2020.0,1950.0,PRIVATE,3,Etobicoke-Lakeshore,16 ALBERT AVE,3,18,2020-11-05,77,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,4.0,3.0,4.0,,3.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0336,43.6159770796,-79.4891131322,305663.04,4830448.21
-889923,4154028,2017.0,2020.0,1957.0,PRIVATE,8,Eglinton-Lawrence,3110 YONGE ST,4,41,2020-11-05,84,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,5.0,4.0,5.0,,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,N0825,43.726185855,-79.402998395,312599.587,4842696.294
-889924,4156337,2017.0,2020.0,1970.0,PRIVATE,6,York Centre,190 EXBURY RD,19,154,2020-11-04,66,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,3.0,4.0,4.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,2.0,4.0,4.0,4.0,2.0,,N0627,43.729239154,-79.509192255,304054.473,4843029.277
-889925,4155213,2017.0,2020.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,2696 BLOOR ST W,3,15,2020-11-04,75,Evaluation needs to be conducted in 2 years,17,4.0,3.0,2.0,5.0,3.0,3.0,,3.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,5.0,,W0322,43.6503199258,-79.4985552052,304900.86199999996,4834263.452
-889926,4155088,2017.0,2020.0,1993.0,SOCIAL HOUSING,5,York South-Weston,2480 EGLINTON AVE W,8,97,2020-11-04,62,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,3.0,3.0,W0533,43.6916984742,-79.4694113226,307250.278,4838860.746
-889927,4155092,2017.0,2020.0,2009.0,SOCIAL HOUSING,5,York South-Weston,2600 EGLINTON AVE W,3,32,2020-11-04,65,Evaluation needs to be conducted in 1 year,15,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,3.0,W0533,43.690839177,-79.473005863,306960.28,4838766.143999999
-889928,4156704,2017.0,2020.0,1962.0,PRIVATE,7,Humber River-Black Creek,2439 FINCH AVE W,7,112,2020-11-04,82,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,,5.0,5.0,,W0727,43.74976083600001,-79.550868013,300687.67699999997,4845313.018
-889929,4153359,2017.0,2020.0,1928.0,PRIVATE,12,Toronto-St. Paul's,7 EDMUND AVE,6,68,2020-11-04,79,Evaluation needs to be conducted in 2 years,17,5.0,4.0,3.0,3.0,4.0,3.0,,3.0,5.0,4.0,5.0,3.0,5.0,4.0,5.0,5.0,,3.0,3.0,,S1237,43.682032461000006,-79.400826171,312780.15,4837792.134
-889930,4154357,2020.0,2020.0,1957.0,PRIVATE,5,York South-Weston,331 FALSTAFF AVE,3,11,2020-11-04,71,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,3.0,3.0,4.0,,4.0,,3.0,4.0,2.0,5.0,4.0,3.0,3.0,,4.0,3.0,,W0522,43.7199095737,-79.48106664779999,306310.05199999997,4841994.612
-889931,4154486,2019.0,2020.0,1966.0,PRIVATE,8,Eglinton-Lawrence,457 MARLEE AVE,4,31,2020-11-04,77,Evaluation needs to be conducted in 2 years,18,3.0,4.0,3.0,3.0,4.0,4.0,,4.0,5.0,3.0,3.0,3.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,N0827,43.707934941400005,-79.4429642694,309381.057,4840665.642
-889932,4153422,2017.0,2020.0,1983.0,TCHC,13,Toronto Centre,25 MUTUAL ST,11,97,2020-11-04,70,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,S1332,43.654312876999995,-79.374349898,314919.44399999996,4834715.511
-889933,4153454,2017.0,2020.0,1985.0,TCHC,13,Toronto Centre,145 MUTUAL ST,15,145,2020-11-04,73,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,,3.0,3.0,5.0,3.0,3.0,4.0,4.0,3.0,4.0,,S1328,43.659102374899994,-79.3763412035,314758.305,4835246.416999999
-889934,4156417,2017.0,2020.0,1975.0,PRIVATE,25,Scarborough-Rouge Park,41 GENERATION BLVD,3,12,2020-11-04,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,3.0,3.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,,E2530,43.8042493963,-79.1676352467,331492.953,4851411.033
-889935,4152889,2017.0,2020.0,1975.0,PRIVATE,25,Scarborough-Rouge Park,95-115 GENERATION BLVD,3,108,2020-11-04,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,,,3.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2530,43.803770363999995,-79.164808425,331804.318,4851384.163
-889936,4156416,2017.0,2020.0,1975.0,PRIVATE,25,Scarborough-Rouge Park,109 GENERATION BLVD,3,12,2020-11-04,80,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2530,43.8040886838,-79.1642759209,331808.468,4851373.096
-889937,4156074,2017.0,2020.0,1975.0,PRIVATE,25,Scarborough-Rouge Park,111 GENERATION BLVD,3,12,2020-11-04,75,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,4.0,3.0,4.0,,4.0,,,3.0,3.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,,E2530,43.8038619612,-79.1641599515,331811.235,4851362.031
-889938,4156075,2017.0,2020.0,1975.0,PRIVATE,25,Scarborough-Rouge Park,115 GENERATION BLVD,3,12,2020-11-04,80,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2530,43.803598443599995,-79.1642967087,331796.018,4851346.352
-889939,4152689,2017.0,2020.0,1959.0,PRIVATE,20,Scarborough Southwest,740 MIDLAND AVE,5,87,2020-11-04,77,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,4.0,3.0,4.0,,3.0,4.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2024,43.7292557151,-79.256770973,324379.447,4843061.333000001
-889940,4155307,2017.0,2020.0,1974.0,PRIVATE,3,Etobicoke-Lakeshore,25 MABELLE AVE,31,416,2020-11-04,86,Evaluation needs to be conducted in 3 years,20,5.0,4.0,4.0,5.0,3.0,4.0,3.0,4.0,5.0,4.0,4.0,5.0,5.0,5.0,5.0,3.0,5.0,5.0,3.0,5.0,W0321,43.6455831031,-79.5265058924,302645.912,4833737.637
-889941,4155089,2017.0,2020.0,1950.0,PRIVATE,5,York South-Weston,43 GLENHAVEN ST,3,11,2020-11-04,83,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,W0533,43.6931694269,-79.4699479561,307206.968,4839024.153
-889942,4154360,2017.0,2020.0,1984.0,PRIVATE,5,York South-Weston,2620 KEELE ST,3,11,2020-11-04,76,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,4.0,3.0,4.0,,3.0,,,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,3.0,,W0522,43.719614506999996,-79.4809196284,306321.905,4841961.835
-889943,4154358,,2020.0,1954.0,PRIVATE,5,York South-Weston,2624 KEELE ST,3,11,2020-11-04,70,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,3.0,3.0,4.0,,4.0,,3.0,4.0,2.0,5.0,4.0,3.0,3.0,,4.0,3.0,,W0522,43.720182196,-79.4809738459,306317.523,4842024.9
-889944,4155434,2017.0,2020.0,1950.0,PRIVATE,1,Etobicoke North,14 TORBOLTON DR,3,16,2020-11-04,78,Evaluation needs to be conducted in 2 years,17,3.0,4.0,4.0,3.0,3.0,4.0,,4.0,,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,W0130,43.718690395100005,-79.55908041970001,300024.003,4841860.823
-889945,4154933,2017.0,2020.0,1938.0,PRIVATE,12,Toronto-St. Paul's,14 TICHESTER RD,4,32,2020-11-04,81,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,4.0,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,S1230,43.686006092,-79.417750526,311415.151,4838232.1219999995
-889946,4152738,2017.0,2020.0,1989.0,SOCIAL HOUSING,21,Scarborough Centre,3010 LAWRENCE AVE E,11,170,2020-11-04,92,Evaluation needs to be conducted in 3 years,18,4.0,5.0,5.0,5.0,4.0,5.0,4.0,4.0,5.0,,4.0,4.0,5.0,5.0,5.0,5.0,5.0,4.0,,5.0,E2130,43.7559421372,-79.24995508229999,325003.977,4845929.234
-889947,4155448,2017.0,2020.0,1965.0,PRIVATE,1,Etobicoke North,20 SANAGAN RD,5,86,2020-11-04,62,Evaluation needs to be conducted in 1 year,18,3.0,2.0,3.0,3.0,3.0,3.0,4.0,2.0,4.0,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,2.0,,W0124,43.738497055799996,-79.5771085604,298573.456,4844062.39
-889948,4152555,2017.0,2020.0,1957.0,PRIVATE,20,Scarborough Southwest,2412 QUEEN ST E,3,17,2020-11-04,76,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,4.0,3.0,,5.0,,4.0,3.0,3.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,E2033,43.6748716677,-79.2794749048,322566.439,4837014.405
-889949,4152554,2017.0,2020.0,1950.0,PRIVATE,20,Scarborough Southwest,2422 QUEEN ST E,4,24,2020-11-04,73,Evaluation needs to be conducted in 2 years,14,3.0,3.0,4.0,3.0,4.0,3.0,,4.0,,,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,,,E2033,43.674940499099996,-79.279202734,322588.365,4837022.11
-889950,4152991,,2020.0,1960.0,PRIVATE,4,Parkdale-High Park,110 JAMESON AVE,7,91,2020-11-04,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,4.0,4.0,4.0,4.0,5.0,3.0,4.0,3.0,4.0,4.0,3.0,,S0437,43.635467624899995,-79.43575281,309968.393,4832615.335
-889951,4152990,,2020.0,1960.0,PRIVATE,4,Parkdale-High Park,120 JAMESON AVE,7,90,2020-11-04,76,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,4.0,,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,2.0,,S0437,43.635854047399995,-79.4359351656,309953.647,4832658.252
-889952,4154400,2017.0,2020.0,1966.0,TCHC,6,York Centre,2195 JANE ST,11,294,2020-11-04,73,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,3.0,4.0,3.0,5.0,4.0,,3.0,2.0,5.0,3.0,4.0,3.0,,4.0,3.0,,N0627,43.7222134695,-79.5079300215,304145.58,4842250.448
-889953,4154932,2017.0,2020.0,1975.0,PRIVATE,12,Toronto-St. Paul's,250 HEATH ST W,17,81,2020-11-04,92,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,5.0,4.0,4.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,3.0,5.0,S1230,43.6867124421,-79.4141955534,311701.94800000003,4838309.941000001
-889954,4154333,2017.0,2020.0,1970.0,PRIVATE,5,York South-Weston,1855 JANE ST,17,206,2020-11-04,88,Evaluation needs to be conducted in 3 years,19,4.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,5.0,,5.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,W0528,43.708111644700004,-79.50445776149999,304425.229,4840683.807
-889955,4152670,2017.0,2020.0,1971.0,PRIVATE,20,Scarborough Southwest,672 KENNEDY RD,6,71,2020-11-04,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,E2023,43.726055224899994,-79.2659127498,323643.994,4842703.654
-889956,4155739,2017.0,2020.0,1965.0,PRIVATE,4,Parkdale-High Park,30 SPRINGHURST AVE,12,122,2020-11-04,66,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,2.0,,S0437,43.634517341999995,-79.42888249800001,310522.559,4832511.135
-889957,4275806,2017.0,2020.0,1960.0,PRIVATE,6,York Centre,2 WYCOMBE RD,3,40,2020-11-04,84,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,4.0,4.0,,5.0,5.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,5.0,,N0627,43.743000226599996,-79.48713540520001,305820.727,4844559.755
-889958,4153001,2017.0,2020.0,1900.0,PRIVATE,4,Parkdale-High Park,120 DOWLING AVE,3,17,2020-11-04,60,Evaluation needs to be conducted in 1 year,15,3.0,3.0,5.0,3.0,2.0,3.0,,3.0,,,3.0,4.0,3.0,2.0,3.0,2.0,3.0,3.0,,,S0437,43.63647140770001,-79.4388819579,309715.834,4832726.665
-889959,4154450,2019.0,2020.0,1958.0,PRIVATE,6,York Centre,2 DORADO CRT,4,87,2020-11-04,58,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,2.0,2.0,3.0,,3.0,3.0,,2.0,3.0,5.0,3.0,3.0,2.0,,3.0,3.0,,N0627,43.738441642299996,-79.4861508679,305900.09,4844053.338
-889960,4154462,2017.0,2020.0,1973.0,PRIVATE,7,Humber River-Black Creek,25 BROADOAKS DR,9,92,2020-11-04,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,,W0731,43.756925959600004,-79.49101087439999,305508.471,4846106.795
-889961,4155306,2017.0,2020.0,1973.0,PRIVATE,3,Etobicoke-Lakeshore,50 CORDOVA AVE,37,285,2020-11-04,84,Evaluation needs to be conducted in 2 years,20,5.0,3.0,5.0,5.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,2.0,5.0,5.0,3.0,3.0,W0321,43.6471114892,-79.5264697253,302648.878,4833907.435
-889962,4155834,2017.0,2020.0,1969.0,TCHC,13,Toronto Centre,275 BLEECKER ST,21,301,2020-11-04,69,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,4.0,4.0,,3.0,3.0,,3.0,4.0,5.0,3.0,3.0,3.0,5.0,3.0,3.0,,S1323,43.66883593520001,-79.3737051125,314969.275,4836328.077
-889963,4155662,2017.0,2020.0,1971.0,PRIVATE,4,Parkdale-High Park,22 CLOSE AVE,23,293,2020-11-04,73,Evaluation needs to be conducted in 2 years,19,5.0,4.0,4.0,3.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,2.0,,S0437,43.6344400002,-79.4339017768,310117.834,4832501.284
-889964,4152674,2017.0,2020.0,1963.0,PRIVATE,20,Scarborough Southwest,739 BIRCHMOUNT RD,9,124,2020-11-04,77,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,,3.0,3.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,E2023,43.724969646000005,-79.2748142214,322927.156,4842581.071
-889965,4250612,2017.0,2020.0,1943.0,PRIVATE,12,Toronto-St. Paul's,1539 BATHURST ST,4,32,2020-11-04,80,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,,4.0,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,,,S1230,43.685911156,-79.418988838,311315.328,4838221.478
-889966,4154946,2017.0,2020.0,1926.0,PRIVATE,12,Toronto-St. Paul's,1574 BATHURST ST,4,36,2020-11-04,79,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,,3.0,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,4.0,,S1229,43.686150570900004,-79.4199250703,311240.085,4838247.052
-889967,4154480,2017.0,2020.0,1961.0,PRIVATE,8,Eglinton-Lawrence,2700 BATHURST ST,10,149,2020-11-04,90,Evaluation needs to be conducted in 3 years,20,4.0,4.0,5.0,5.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,N0827,43.7090551064,-79.4281966082,310571.11100000003,4840791.066000001
-889968,4154485,2017.0,2020.0,1992.0,TCHC,8,Eglinton-Lawrence,3036-3050 BATHURST ST,7,160,2020-11-04,92,Evaluation needs to be conducted in 3 years,20,4.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,5.0,4.0,4.0,5.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,5.0,N0827,43.718487778000004,-79.429895751,310427.489,4841848.69
-889969,4153221,2017.0,2020.0,1957.0,PRIVATE,11,University-Rosedale,214 ST GEORGE ST,8,68,2020-11-04,86,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,4.0,4.0,,4.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,4.0,3.0,4.0,,S1127,43.671224238,-79.401812426,312701.98699999996,4836591.267
-889970,4153220,2017.0,2020.0,1955.0,PRIVATE,11,University-Rosedale,224 ST GEORGE ST,9,91,2020-11-04,83,Evaluation needs to be conducted in 2 years,18,5.0,5.0,5.0,4.0,4.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,4.0,,S1127,43.671416122,-79.401975537,312688.81,4836612.569
-889971,4153210,2017.0,2020.0,1952.0,PRIVATE,11,University-Rosedale,151 ST GEORGE ST,7,48,2020-11-04,79,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,4.0,4.0,4.0,,3.0,5.0,4.0,3.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,,S1127,43.669453576,-79.400154652,312835.898,4836394.713
-889972,4153211,2017.0,2020.0,1962.0,PRIVATE,11,University-Rosedale,153 ST GEORGE ST,7,48,2020-11-04,85,Evaluation needs to be conducted in 2 years,17,5.0,5.0,5.0,4.0,4.0,4.0,,3.0,5.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1127,43.669584779,-79.400213595,312831.128,4836409.283
-889973,4153224,2017.0,2020.0,1956.0,PRIVATE,11,University-Rosedale,169 ST GEORGE ST,9,52,2020-11-04,91,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,5.0,4.0,,5.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,,S1127,43.670881099999995,-79.400783867,312784.974,4836553.242
-889974,4155210,2017.0,2020.0,1949.0,PRIVATE,3,Etobicoke-Lakeshore,2688 BLOOR ST W,4,21,2020-11-04,77,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,4.0,3.0,3.0,,3.0,,,4.0,5.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0322,43.65031426189999,-79.4971169059,305016.898,4834262.829
-889975,4155211,2017.0,2020.0,1949.0,PRIVATE,3,Etobicoke-Lakeshore,2690 BLOOR ST W,4,18,2020-11-04,75,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,4.0,3.0,3.0,,4.0,,3.0,3.0,5.0,5.0,3.0,4.0,4.0,,4.0,4.0,,W0322,43.6503326449,-79.49736598930001,304996.803,4834264.87
-889976,4155212,2017.0,2020.0,1949.0,PRIVATE,3,Etobicoke-Lakeshore,2692-2694 BLOOR ST W,4,40,2020-11-04,77,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,3.0,3.0,,4.0,,,3.0,4.0,5.0,4.0,4.0,4.0,,3.0,4.0,,W0322,43.6502825734,-79.4978680746,304956.297,4834259.305
-889977,4155812,2017.0,2020.0,1970.0,PRIVATE,6,York Centre,200 EXBURY RD,20,154,2020-11-04,68,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,3.0,4.0,3.0,2.0,3.0,3.0,4.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,N0627,43.728487665,-79.509556463,304021.422,4842944.744
-889978,4154709,2017.0,2020.0,1961.0,PRIVATE,18,Willowdale,286 FINCH AVE W,4,47,2020-11-03,86,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,4.0,5.0,4.0,,3.0,4.0,,4.0,4.0,5.0,5.0,4.0,5.0,5.0,4.0,2.0,,N1822,43.774699028,-79.440090341,309595.94399999996,4848123.374
-889979,4153998,2017.0,2020.0,1960.0,PRIVATE,12,Toronto-St. Paul's,893 AVENUE RD,3,10,2020-11-03,76,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,,4.0,,4.0,,4.0,4.0,4.0,5.0,2.0,4.0,3.0,4.0,3.0,3.0,,S1227,43.7003921332,-79.4063848317,312329.962,4839830.415
-889980,4152946,2017.0,2020.0,1997.0,SOCIAL HOUSING,4,Parkdale-High Park,2750 DUNDAS ST W,6,30,2020-11-03,72,Evaluation needs to be conducted in 2 years,19,3.0,4.0,5.0,3.0,4.0,4.0,2.0,4.0,4.0,4.0,3.0,4.0,2.0,2.0,4.0,4.0,,4.0,4.0,4.0,S0429,43.665346577,-79.46092314100001,307935.755,4835938.396000001
-889981,4154498,2017.0,2020.0,1958.0,PRIVATE,8,Eglinton-Lawrence,1111 LAWRENCE AVE W,3,15,2020-11-03,81,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,4.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,5.0,,N0826,43.71185691189999,-79.4634512114,307729.784,4841100.462
-889982,4155234,2017.0,2020.0,1947.0,PRIVATE,3,Etobicoke-Lakeshore,3 NEWHOLM RD,4,25,2020-11-03,74,Evaluation needs to be conducted in 2 years,17,4.0,3.0,3.0,4.0,4.0,4.0,,3.0,,3.0,4.0,3.0,5.0,3.0,4.0,4.0,5.0,4.0,3.0,,W0329,43.6360787547,-79.48763013840001,305782.438,4832681.407
-889983,4155233,2017.0,2020.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,5 NEWHOLM RD,4,27,2020-11-03,67,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,2.0,3.0,3.0,,3.0,,4.0,4.0,2.0,5.0,3.0,4.0,4.0,2.0,4.0,3.0,,W0329,43.635644689799996,-79.4874066551,305800.477,4832633.187
-889984,4155237,2017.0,2020.0,1958.0,PRIVATE,3,Etobicoke-Lakeshore,8 NEWHOLM RD,4,26,2020-11-03,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,3.0,3.0,,4.0,,3.0,4.0,4.0,5.0,3.0,4.0,4.0,5.0,4.0,4.0,,W0329,43.635482222700006,-79.4882224103,305734.649,4832615.13
-889985,4154322,2017.0,2020.0,1984.0,PRIVATE,5,York South-Weston,15 MARTHA EATON WAY,23,364,2020-11-03,82,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,5.0,W0528,43.696553916999996,-79.48846403600001,305714.067,4839400.786
-889986,4233149,2017.0,2020.0,1980.0,PRIVATE,5,York South-Weston,25 MARTHA EATON WAY,23,318,2020-11-03,93,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,W0528,43.698103059,-79.48903821,305667.766,4839572.884
-889987,4153581,2017.0,2020.0,1976.0,TCHC,13,Toronto Centre,330 GERRARD ST E,7,81,2020-11-03,71,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,3.0,,3.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,3.0,S1327,43.66260055,-79.365387025,315640.938,4835637.373
-889988,4155302,2017.0,2020.0,1974.0,PRIVATE,3,Etobicoke-Lakeshore,52 MABELLE AVE,22,310,2020-11-03,76,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,3.0,2.0,4.0,3.0,4.0,5.0,3.0,3.0,3.0,5.0,5.0,4.0,2.0,4.0,5.0,5.0,,W0321,43.6464029439,-79.5294506955,302408.377,4833828.787
-889989,4153572,2017.0,2020.0,1980.0,TCHC,13,Toronto Centre,310 DUNDAS ST E,7,155,2020-11-03,71,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,4.0,5.0,3.0,4.0,3.0,4.0,4.0,3.0,,S1329,43.658647098500005,-79.3706942093,315213.842,4835196.523
-889990,4242360,2017.0,2020.0,2016.0,PRIVATE,9,Davenport,1544 DUNDAS ST W,8,95,2020-11-03,97,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,S0933,43.650010077,-79.433231873,310163.17699999997,4834237.074
-889991,4155962,2017.0,2020.0,1969.0,PRIVATE,6,York Centre,1085 STEELES AVE W,15,100,2020-11-03,77,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,4.0,,3.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,,N0622,43.791214032,-79.44875271800001,308924.363,4849959.367
-889992,4155431,2017.0,2020.0,1962.0,PRIVATE,1,Etobicoke North,40 TORBOLTON DR,3,17,2020-11-03,79,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,5.0,4.0,3.0,,4.0,,,3.0,4.0,5.0,3.0,4.0,4.0,3.0,5.0,3.0,,W0130,43.7198931386,-79.5585311012,300068.36,4841994.413
-889993,4154620,2017.0,2020.0,1994.0,SOCIAL HOUSING,6,York Centre,15 TORRESDALE AVE,7,61,2020-11-03,65,Evaluation needs to be conducted in 1 year,19,4.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,N0622,43.773480632100004,-79.4511037364,308720.91,4847947.07
-889994,4155375,2017.0,2020.0,1965.0,PRIVATE,2,Etobicoke Centre,287 MARKLAND DR,10,118,2020-11-03,80,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,4.0,3.0,5.0,3.0,3.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,4.0,,W0233,43.6275335945,-79.5780494311,298485.94899999996,4831734.901000001
-889995,4154497,2017.0,2020.0,1965.0,PRIVATE,8,Eglinton-Lawrence,1079 LAWRENCE AVE W,3,15,2020-11-03,89,Evaluation needs to be conducted in 3 years,16,3.0,4.0,5.0,3.0,4.0,4.0,,4.0,,5.0,5.0,5.0,5.0,5.0,5.0,4.0,,5.0,5.0,,N0826,43.711974339899996,-79.4627656492,307785.025,4841113.531
-889996,4152940,2017.0,2020.0,1929.0,PRIVATE,4,Parkdale-High Park,2010 BLOOR ST W,3,24,2020-11-03,67,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,,2.0,4.0,4.0,4.0,3.0,3.0,3.0,,4.0,,,S0428,43.6528582596,-79.4698640638,307215.325,4834545.847
-889997,4154589,,2020.0,1954.0,PRIVATE,6,York Centre,23 ROSSEAU RD,3,11,2020-11-03,76,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,4.0,4.0,4.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,3.0,,3.0,3.0,,N0629,43.743260449,-79.43682504739999,309872.882,4844590.495
-889998,4154590,,2020.0,1954.0,PRIVATE,6,York Centre,25 ROSSEAU RD,3,11,2020-11-03,70,Evaluation needs to be conducted in 2 years,16,4.0,3.0,3.0,4.0,3.0,4.0,,4.0,,3.0,3.0,3.0,5.0,4.0,4.0,3.0,,3.0,3.0,,N0629,43.74342265520001,-79.43700806310001,309858.12899999996,4844608.506
-889999,4155121,2017.0,2020.0,1982.0,SOCIAL HOUSING,5,York South-Weston,15 OXFORD DR,10,174,2020-11-03,84,Evaluation needs to be conducted in 2 years,17,4.0,5.0,5.0,4.0,3.0,4.0,4.0,3.0,4.0,,3.0,4.0,5.0,5.0,4.0,4.0,,5.0,5.0,,W0531,43.6889254587,-79.4913528542,305481.516,4838552.325
-890000,4243431,2017.0,2020.0,1968.0,PRIVATE,7,Humber River-Black Creek,2801 JANE ST,17,234,2020-11-03,66,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,4.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,,W0730,43.7502253934,-79.5151711117,303562.808,4845362.501
-890001,4153102,2017.0,2020.0,1974.0,PRIVATE,9,Davenport,730 ST CLARENS AVE,18,275,2020-11-03,80,Evaluation needs to be conducted in 2 years,20,5.0,5.0,5.0,3.0,5.0,3.0,3.0,4.0,5.0,3.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,5.0,4.0,S0930,43.667270761000005,-79.44567156,309165.49600000004,4836148.864
-890002,4152730,2017.0,2020.0,1969.0,PRIVATE,21,Scarborough Centre,5 BROCKLEY DR,21,254,2020-11-03,80,Evaluation needs to be conducted in 2 years,19,4.0,5.0,4.0,2.0,4.0,3.0,3.0,5.0,4.0,5.0,4.0,4.0,3.0,5.0,3.0,5.0,5.0,5.0,3.0,,E2129,43.753482896099996,-79.2626268384,323900.045,4845751.469
-890003,4154459,2017.0,2020.0,1966.0,PRIVATE,6,York Centre,41-51 BROOKWELL DR,4,48,2020-11-03,82,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,,5.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,3.0,,N0625,43.744081781000006,-79.49503543899999,305180.295,4844713.7360000005
-890004,4156504,2017.0,2020.0,1966.0,PRIVATE,6,York Centre,41 BROOKWELL DR,4,38,2020-11-03,86,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0625,43.744053862399994,-79.4951490688,305175.28,4844676.739
-890005,4154472,2017.0,2020.0,1969.0,PRIVATE,7,Humber River-Black Creek,20 BROADOAKS DR,9,177,2020-11-03,62,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,2.0,4.0,3.0,3.0,2.0,2.0,3.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,,W0731,43.7577107844,-79.4909188845,305515.869,4846193.988
-890006,4153056,2019.0,2020.0,1930.0,PRIVATE,4,Parkdale-High Park,1643 BLOOR ST W,3,25,2020-11-03,73,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,3.0,3.0,3.0,,4.0,,,4.0,4.0,4.0,3.0,3.0,3.0,4.0,4.0,,,S0432,43.655253044,-79.455904958,308340.964,4834813.343
-890007,4155263,2017.0,2020.0,1958.0,PRIVATE,3,Etobicoke-Lakeshore,7 CROWN HILL PL,4,35,2020-11-03,79,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,4.0,3.0,3.0,,4.0,,3.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,W0327,43.6386262832,-79.4911761302,305496.279,4832964.393
-890008,4153585,2017.0,2020.0,1980.0,TCHC,13,Toronto Centre,55 BLEECKER ST,14,260,2020-11-03,72,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,4.0,4.0,S1323,43.664421836,-79.37226324,315086.04600000003,4835838.834
-890009,4152898,2020.0,2020.0,1958.0,PRIVATE,4,Parkdale-High Park,93 COE HILL DR,4,33,2020-11-03,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,3.0,5.0,,3.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,,S0430,43.641442247600004,-79.4724449481,307007.54600000003,4833277.515
-890010,4154721,2017.0,2020.0,1960.0,PRIVATE,18,Willowdale,6161 BATHURST ST,13,170,2020-11-03,84,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,,3.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,,N1821,43.78886620310001,-79.44634919890001,309102.531,4849656.589
-890011,4154722,2017.0,2020.0,1960.0,PRIVATE,18,Willowdale,6171 BATHURST ST,13,170,2020-11-03,83,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,3.0,4.0,5.0,3.0,4.0,5.0,4.0,4.0,4.0,,N1821,43.7898670361,-79.4451703972,309197.325,4849767.841
-890012,4153343,2017.0,2020.0,1916.0,SOCIAL HOUSING,12,Toronto-St. Paul's,1435 BATHURST ST,3,15,2020-11-03,71,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,3.0,3.0,4.0,,4.0,,3.0,3.0,3.0,3.0,4.0,4.0,4.0,,3.0,,,S1236,43.6823886069,-79.4176648249,311422.714,4837829.2639999995
-890013,4155235,2017.0,2020.0,1958.0,PRIVATE,3,Etobicoke-Lakeshore,169 BERRY RD,4,25,2020-11-03,76,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,3.0,3.0,4.0,,4.0,,3.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,,W0329,43.637123520500005,-79.4874115114,305800.066,4832797.477
-890014,4154622,2017.0,2020.0,1964.0,PRIVATE,6,York Centre,5950 BATHURST ST,12,133,2020-11-03,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,4.0,4.0,2.0,3.0,,4.0,5.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,N0622,43.7833167719,-79.4460923651,309123.62899999996,4849040.079
-890015,4153997,2018.0,2020.0,1950.0,PRIVATE,12,Toronto-St. Paul's,875 AVENUE RD,3,10,2020-11-03,75,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,4.0,4.0,4.0,,3.0,,,3.0,4.0,5.0,4.0,4.0,3.0,3.0,3.0,4.0,,S1227,43.6993433879,-79.4059378542,312366.12,4839713.938999999
-890016,4152728,2017.0,2020.0,1972.0,PRIVATE,21,Scarborough Centre,30 ANTRIM CRES,10,135,2020-11-03,85,Evaluation needs to be conducted in 2 years,19,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,3.0,4.0,5.0,5.0,3.0,5.0,5.0,4.0,5.0,3.0,,E2123,43.772318050600006,-79.2859346865,322017.714,4847838.926
-890017,4154618,2017.0,2020.0,1970.0,PRIVATE,6,York Centre,715 FINCH AVE W,11,85,2020-11-03,81,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,4.0,4.0,4.0,2.0,5.0,5.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N0624,43.7692028899,-79.4622653177,307822.589,4847471.362
-890018,4155071,2017.0,2020.0,1960.0,PRIVATE,9,Davenport,500 GILBERT AVE,3,29,2020-11-02,84,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,5.0,,S0921,43.691812331099996,-79.4635662158,307721.469,4838873.59
-890019,4155240,2017.0,2020.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,187 BERRY RD,4,30,2020-11-02,76,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,3.0,3.0,4.0,,4.0,,,3.0,3.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,,W0329,43.6361245275,-79.49246033060001,305392.63300000003,4832686.451
-890020,4154244,2017.0,2020.0,1959.0,PRIVATE,7,Humber River-Black Creek,2433 FINCH AVE W,6,117,2020-11-02,73,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,5.0,3.0,4.0,4.0,,5.0,4.0,,W0727,43.749436556000006,-79.548159932,300917.135,4845264.927
-890021,4154251,2018.0,2020.0,1993.0,SOCIAL HOUSING,7,Humber River-Black Creek,3001 FINCH AVE W,14,166,2020-11-02,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,,4.0,3.0,4.0,3.0,4.0,3.0,4.0,5.0,4.0,4.0,W0727,43.747070571,-79.562597925,299742.782,4845014.81
-890022,4155748,2017.0,2020.0,1966.0,PRIVATE,2,Etobicoke Centre,30 FONTENAY CRT,14,96,2020-11-02,94,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,5.0,4.0,5.0,,5.0,5.0,4.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,5.0,5.0,,W0230,43.683261189,-79.512454519,303780.01,4837924.146000001
-890023,4155386,2017.0,2020.0,1960.0,PRIVATE,2,Etobicoke Centre,25 EVA RD,5,48,2020-11-02,72,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,3.0,3.0,3.0,,4.0,3.0,3.0,3.0,3.0,5.0,3.0,4.0,4.0,2.0,5.0,3.0,,W0233,43.638931663,-79.56335609899999,299581.049,4833030.633
-890024,4156565,2017.0,2020.0,1968.0,PRIVATE,5,York South-Weston,15 HARDING AVE,19,335,2020-11-02,77,Evaluation needs to be conducted in 2 years,19,5.0,3.0,5.0,4.0,4.0,3.0,3.0,4.0,4.0,,3.0,4.0,4.0,4.0,4.0,5.0,4.0,3.0,3.0,4.0,W0528,,,304655.788,4839682.129
-890025,4154634,2017.0,2020.0,1972.0,PRIVATE,6,York Centre,1875 STEELES AVE W,4,120,2020-11-02,75,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,4.0,5.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,N0622,43.787093865,-79.467715903,307382.726,4849459.76
-890026,4155531,2017.0,2020.0,1993.0,TCHC,3,Etobicoke-Lakeshore,250 TWELFTH ST,14,178,2020-11-02,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,4.0,4.0,2.0,4.0,,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,W0335,43.6006696381,-79.5115220432,303854.172,4828747.612
-890027,4155385,2017.0,2020.0,1960.0,PRIVATE,2,Etobicoke Centre,351 THE WEST MALL,5,49,2020-11-02,78,Evaluation needs to be conducted in 2 years,18,5.0,4.0,4.0,3.0,3.0,3.0,,5.0,5.0,3.0,3.0,3.0,5.0,4.0,5.0,5.0,3.0,4.0,3.0,,W0233,43.638729618999996,-79.564232582,299601.61,4832978.702
-890028,4154327,2017.0,2020.0,1959.0,PRIVATE,5,York South-Weston,1724 LAWRENCE AVE W,3,30,2020-11-02,75,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,4.0,3.0,4.0,,4.0,3.0,,4.0,4.0,5.0,4.0,4.0,5.0,3.0,3.0,4.0,,W0528,43.704899460600004,-79.4973466692,304998.33,4840326.9569999995
-890029,4155399,2017.0,2020.0,1960.0,PRIVATE,2,Etobicoke Centre,530 THE EAST MALL,7,110,2020-11-02,86,Evaluation needs to be conducted in 3 years,19,4.0,4.0,5.0,5.0,4.0,5.0,,3.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,5.0,4.0,5.0,4.0,4.0,W0232,43.651534375699995,-79.563209379,299685.571,4834400.211
-890030,4155377,2017.0,2020.0,1965.0,PRIVATE,2,Etobicoke Centre,210 MARKLAND DR,13,151,2020-11-02,83,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,3.0,3.0,3.0,,5.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,5.0,4.0,3.0,4.0,,W0233,43.6301975537,-79.5798906401,298337.645,4832030.995
-890031,4155077,2017.0,2020.0,1960.0,PRIVATE,9,Davenport,524 HARVIE AVE,3,29,2020-11-02,83,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S0921,43.690686289,-79.455914851,308342.955,4838761.115
-890032,4155076,2017.0,2020.0,1960.0,PRIVATE,9,Davenport,526 HARVIE AVE,3,29,2020-11-02,83,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S0921,43.690799353,-79.456216348,308313.74600000004,4838762.298
-890033,4155075,2017.0,2020.0,1958.0,PRIVATE,9,Davenport,554 HARVIE AVE,4,15,2020-11-02,82,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,4.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,,S0921,43.691729939,-79.456536022,308287.92600000004,4838865.6680000005
-890034,4154330,2017.0,2020.0,1971.0,PRIVATE,5,York South-Weston,1747-1755 JANE ST,15,102,2020-11-02,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,W0528,43.704957416999996,-79.503637456,304459.00399999996,4840344.142
-890035,4154323,2017.0,2020.0,1965.0,PRIVATE,5,York South-Weston,101 BROOKHAVEN DR,3,19,2020-11-02,82,Evaluation needs to be conducted in 2 years,17,4.0,5.0,4.0,4.0,4.0,4.0,,4.0,,4.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,2.0,,W0528,43.7034048782,-79.49483763180001,305200.553,4840160.923
-890036,4155470,2017.0,2020.0,1977.0,TCHC,3,Etobicoke-Lakeshore,100 CAVELL AVE,7,300,2020-11-02,82,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,W0336,43.6154876721,-79.4969959174,305026.782,4830393.808
-890037,4155736,2017.0,2020.0,1967.0,PRIVATE,6,York Centre,6020 BATHURST ST,11,149,2020-11-02,81,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,3.0,N0622,43.7870875087,-79.4473742209,309020.18,4849458.928
-890038,4155737,2017.0,2020.0,1967.0,PRIVATE,6,York Centre,6030 BATHURST ST,19,247,2020-11-02,79,Evaluation needs to be conducted in 2 years,19,5.0,5.0,5.0,3.0,5.0,3.0,2.0,4.0,3.0,,4.0,5.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,N0622,43.78782263430001,-79.4475892246,309002.816,4849540.586
-890039,4156071,2017.0,2020.0,1970.0,PRIVATE,6,York Centre,6040 BATHURST ST,17,202,2020-11-02,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,2.0,4.0,3.0,,N0622,43.7890444892,-79.4476519388,309058.568,4849670.127
-890040,4155245,2017.0,2020.0,1965.0,PRIVATE,3,Etobicoke-Lakeshore,177 BERRY RD,4,23,2020-11-02,82,Evaluation needs to be conducted in 2 years,17,4.0,5.0,5.0,4.0,4.0,3.0,,5.0,,4.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,W0329,43.63682197520001,-79.4892158365,305654.469,4832763.96
-890041,4155244,2017.0,2020.0,1953.0,PRIVATE,3,Etobicoke-Lakeshore,179 BERRY RD,4,23,2020-11-02,80,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,2.0,,W0329,43.6366442394,-79.4899445536,305595.659,4832744.208000001
-890042,4155070,2017.0,2020.0,1960.0,PRIVATE,9,Davenport,502 GILBERT AVE,3,23,2020-11-02,84,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,5.0,,S0921,43.6919981634,-79.4636000249,307718.735,4838894.234
-890043,4153969,2017.0,2020.0,1967.0,PRIVATE,8,Eglinton-Lawrence,140 ELM RIDGE DR,18,229,2020-11-01,77,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,5.0,4.0,3.0,4.0,3.0,4.0,3.0,3.0,N0832,43.7032886184,-79.438743858,309721.568,4840149.728
-890044,4154313,2017.0,2020.0,1950.0,PRIVATE,5,York South-Weston,2605 KEELE ST,3,12,2020-11-01,86,Evaluation needs to be conducted in 3 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,,W0523,43.7191723913,-79.4799616805,306399.103,4841912.738
-890045,4168552,2017.0,2020.0,1968.0,PRIVATE,5,York South-Weston,2625 KEELE ST,3,10,2020-11-01,75,Evaluation needs to be conducted in 2 years,16,4.0,3.0,5.0,4.0,3.0,4.0,,3.0,,,4.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,,W0523,43.7206243827,-79.48020072930001,306379.805,4842074.038
-890046,4155433,2017.0,2020.0,1959.0,PRIVATE,1,Etobicoke North,20 TORBOLTON DR,3,17,2020-11-01,68,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,,,4.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,4.0,,W0130,43.719111061999996,-79.5589012928,300038.47,4841907.547
-890047,4153983,2018.0,2020.0,1953.0,PRIVATE,8,Eglinton-Lawrence,2601 BATHURST ST,6,62,2020-11-01,78,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,4.0,,4.0,4.0,5.0,4.0,3.0,4.0,3.0,3.0,4.0,,N0833,43.707444012299995,-79.4262923027,310724.73600000003,4840612.2360000005
-890048,4153979,2017.0,2020.0,1953.0,PRIVATE,8,Eglinton-Lawrence,675 ROSELAWN AVE,6,52,2020-11-01,68,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,,N0833,43.70502432600001,-79.42582772600001,310762.152,4840344.42
-890049,4153434,2017.0,2020.0,1978.0,TCHC,13,Toronto Centre,200 SHERBOURNE ST,7,174,2020-11-01,67,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,4.0,4.0,3.0,4.0,3.0,4.0,3.0,3.0,,S1332,43.657118655699996,-79.3709227315,315195.67100000003,4835026.678
-890050,4156293,2017.0,2020.0,1967.0,PRIVATE,8,Eglinton-Lawrence,111 RIDELLE AVE,18,139,2020-11-01,80,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,N0832,43.7043088813,-79.4391249601,309690.767,4840263.024
-890051,4153958,2017.0,2020.0,1962.0,PRIVATE,8,Eglinton-Lawrence,15 SHALLMAR BLVD,7,78,2020-11-01,83,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,,N0832,43.703946443999996,-79.424475355,310871.253,4840224.76
-890052,4155907,2017.0,2020.0,1960.0,PRIVATE,8,Eglinton-Lawrence,99 MARLEE AVE,6,59,2020-11-01,83,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,5.0,,4.0,5.0,3.0,5.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,N0832,43.7009946331,-79.4402809991,309597.858,4839894.798
-890053,4153663,2017.0,2020.0,1928.0,TCHC,19,Beaches-East York,42 HUBBARD BLVD,3,27,2020-10-31,84,Evaluation needs to be conducted in 2 years,16,5.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,,,S1942,43.66853304,-79.29290251229999,321485.456,4836307.452
-890054,4152903,2017.0,2020.0,1940.0,PRIVATE,4,Parkdale-High Park,2555 BLOOR ST W,4,34,2020-10-30,75,Evaluation needs to be conducted in 2 years,17,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,,4.0,4.0,3.0,5.0,3.0,4.0,4.0,4.0,3.0,2.0,,S0430,43.6476402456,-79.4906914801,305535.289,4833965.806
-890055,4153057,2017.0,2020.0,1960.0,PRIVATE,4,Parkdale-High Park,1639 BLOOR ST W,6,46,2020-10-30,77,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,4.0,4.0,3.0,3.0,5.0,4.0,3.0,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,3.0,,S0432,43.655402768,-79.455626577,308363.408,4834829.9860000005
-890056,4152916,2017.0,2020.0,1935.0,PRIVATE,4,Parkdale-High Park,2526 BLOOR ST W,4,19,2020-10-30,68,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,4.0,2.0,3.0,,4.0,,3.0,4.0,3.0,3.0,3.0,4.0,4.0,3.0,4.0,3.0,,S0430,43.648016588999994,-79.48963831,305608.67100000003,4834006.596
-890057,4154176,2017.0,2020.0,1960.0,PRIVATE,16,Don Valley East,701 DON MILLS RD,25,333,2020-10-30,79,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,N1630,43.708313291,-79.332845454,318255.235,4840720.6389999995
-890058,4152982,2018.0,2020.0,1956.0,PRIVATE,4,Parkdale-High Park,95 JAMESON AVE,9,66,2020-10-30,70,Evaluation needs to be conducted in 2 years,18,3.0,3.0,5.0,3.0,3.0,4.0,,4.0,3.0,3.0,2.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,2.0,,S0437,43.6354033108,-79.4349062431,310036.705,4832608.24
-890059,4154719,2017.0,2020.0,1982.0,SOCIAL HOUSING,18,Willowdale,6091 BATHURST ST,6,90,2020-10-30,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,5.0,4.0,4.0,3.0,5.0,,3.0,4.0,5.0,3.0,3.0,4.0,3.0,4.0,4.0,,N1821,43.787160745,-79.4456380716,309159.906,4849467.158
-890060,4152675,2017.0,2020.0,1960.0,PRIVATE,20,Scarborough Southwest,821 BIRCHMOUNT RD,6,53,2020-10-30,74,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,4.0,4.0,,3.0,3.0,,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,,E2023,43.7287302268,-79.2769823529,322751.357,4842998.379
-890061,4152676,2017.0,2020.0,1961.0,PRIVATE,20,Scarborough Southwest,829 BIRCHMOUNT RD,6,65,2020-10-30,74,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,4.0,4.0,,3.0,4.0,,3.0,3.0,5.0,3.0,4.0,4.0,4.0,4.0,3.0,,E2023,43.729010615600004,-79.2769309728,322755.413,4843029.54
-890062,4153355,2017.0,2020.0,1956.0,PRIVATE,12,Toronto-St. Paul's,291 AVENUE RD,8,96,2020-10-30,86,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,4.0,5.0,4.0,5.0,3.0,3.0,4.0,4.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,,,S1238,43.679355025,-79.398110045,312999.49199999997,4837494.932
-890063,4232788,2017.0,2020.0,2015.0,PRIVATE,17,Don Valley North,106 PARKWAY FOREST DR,7,95,2020-10-30,98,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,5.0,,5.0,5.0,5.0,5.0,,5.0,4.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,N1730,43.774094874,-79.341793943,317512.06899999996,4848026.048
-890064,4154277,2017.0,2020.0,1965.0,PRIVATE,7,Humber River-Black Creek,50 PEARLDALE AVE,7,96,2020-10-30,72,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,,W0722,43.74918598,-79.563851453,299642.01300000004,4845249.898
-890065,4153107,2017.0,2020.0,1978.0,TCHC,9,Davenport,1884 DAVENPORT RD,9,186,2020-10-29,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,4.0,S0926,43.670764096999996,-79.453867406,308498.716,4836548.304
-890066,4155105,,2020.0,1954.0,PRIVATE,5,York South-Weston,"5 GREENBROOK DR
-
-",3,12,2020-10-29,84,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,W0532,43.696492821199996,-79.4764300653,306684.353,4839393.215
-890067,4156367,2017.0,2020.0,1954.0,PRIVATE,5,York South-Weston,4 GREENBROOK DR,3,23,2020-10-29,75,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,4.0,3.0,3.0,,3.0,,,4.0,3.0,5.0,4.0,4.0,3.0,,4.0,4.0,,W0532,43.697269463999994,-79.47635433880001,306690.437,4839479.496
-890068,4156014,2018.0,2020.0,1950.0,PRIVATE,5,York South-Weston,1 GREENBROOK DR,3,23,2020-10-29,79,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,3.0,4.0,3.0,,4.0,,,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0532,43.696926149,-79.475711635,306735.523,4839446.054
-890069,4153003,2017.0,2020.0,1922.0,PRIVATE,4,Parkdale-High Park,1623 QUEEN ST W,4,42,2020-10-29,63,Evaluation needs to be conducted in 1 year,16,4.0,3.0,5.0,4.0,3.0,3.0,,3.0,,3.0,3.0,3.0,3.0,2.0,3.0,3.0,2.0,3.0,,,S0436,43.638781441400006,-79.4452145314,309204.71,4832982.945
-890070,4154226,2017.0,2020.0,1967.0,PRIVATE,7,Humber River-Black Creek,2020 SHEPPARD AVE W,15,204,2020-10-29,91,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,5.0,4.0,5.0,4.0,4.0,5.0,,5.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,4.0,,W0729,43.739202145,-79.5181434205,303323.153,4844137.908
-890071,4153972,2017.0,2020.0,1967.0,PRIVATE,8,Eglinton-Lawrence,655 BRIAR HILL AVE,4,36,2020-10-29,83,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,5.0,4.0,,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0832,43.707577077799996,-79.4274046022,310635.081,4840626.937
-890072,4155674,2017.0,2020.0,1971.0,PRIVATE,17,Don Valley North,4003 BAYVIEW AVE,12,172,2020-10-29,93,Evaluation needs to be conducted in 3 years,20,4.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,5.0,4.0,5.0,5.0,N1721,43.80222500439999,-79.3928562051,313191.076,4851131.715
-890073,4155259,2017.0,2020.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,3 CROWN HILL PL,6,62,2020-10-29,86,Evaluation needs to be conducted in 3 years,18,4.0,4.0,5.0,4.0,5.0,4.0,,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,,W0327,43.6380325283,-79.4912275858,305492.11600000004,4832898.429
-890074,4153336,2017.0,2020.0,1983.0,TCHC,12,Toronto-St. Paul's,2 LAMBERTLODGE AVE,5,64,2020-10-29,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,5.0,4.0,5.0,3.0,4.0,5.0,4.0,4.0,4.0,3.0,,S1234,43.673917543,-79.422657829,311020.734,4836888.76
-890075,4155294,2017.0,2020.0,1940.0,PRIVATE,3,Etobicoke-Lakeshore,2655 BLOOR ST W,5,45,2020-10-29,80,Evaluation needs to be conducted in 2 years,17,4.0,5.0,5.0,4.0,4.0,4.0,,4.0,,4.0,5.0,4.0,5.0,4.0,3.0,4.0,2.0,4.0,3.0,,W0327,43.6494614357,-79.495683937,305101.599,4834184.1389999995
-890076,4154646,2017.0,2020.0,1968.0,PRIVATE,6,York Centre,4918 BATHURST ST,6,60,2020-10-29,78,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,3.0,3.0,4.0,4.0,3.0,4.0,3.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,3.0,5.0,,N0624,43.7728864941,-79.4432661421,309351.886,4847881.463
-890077,4155295,2017.0,2020.0,1927.0,PRIVATE,3,Etobicoke-Lakeshore,2651 BLOOR ST W,4,34,2020-10-29,73,Evaluation needs to be conducted in 2 years,17,3.0,4.0,4.0,3.0,3.0,4.0,,4.0,,3.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,2.0,,W0327,43.649230274,-79.49533657100001,305160.274,4834143.367
-890078,4155828,2018.0,2020.0,1944.0,PRIVATE,4,Parkdale-High Park,2561 BLOOR ST W,4,34,2020-10-29,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,5.0,,4.0,4.0,4.0,5.0,3.0,3.0,4.0,4.0,4.0,3.0,,S0425,43.647625728,-79.491336413,305480.451,4833992.441000001
-890079,4155658,2017.0,2020.0,1972.0,TCHC,1,Etobicoke North,44 WILLOWRIDGE RD,14,236,2020-10-29,53,Evaluation needs to be conducted in 1 year,18,2.0,4.0,2.0,2.0,3.0,3.0,4.0,2.0,3.0,,2.0,3.0,3.0,3.0,3.0,2.0,2.0,3.0,2.0,,W0137,43.675646313,-79.569749625,299172.333,4837117.833000001
-890080,4155155,2017.0,2020.0,1960.0,PRIVATE,5,York South-Weston,2275 WESTON RD,3,61,2020-10-29,79,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,4.0,4.0,3.0,,3.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0524,43.7050925163,-79.5282487597,302507.78,4840348.881
-890081,4155167,2017.0,2020.0,1962.0,PRIVATE,5,York South-Weston,2260 WESTON RD,9,116,2020-10-29,77,Evaluation needs to be conducted in 2 years,19,3.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,W0524,43.704334117100004,-79.5286680785,302473.953,4840264.645
-890082,4154456,2017.0,2020.0,1965.0,PRIVATE,6,York Centre,3390 KEELE ST,11,258,2020-10-29,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,4.0,4.0,3.0,5.0,4.0,,3.0,5.0,5.0,4.0,3.0,3.0,3.0,3.0,3.0,,N0625,43.746940763999994,-79.488468802,305713.023,4844998.472
-890083,4250529,2017.0,2020.0,1965.0,PRIVATE,5,York South-Weston,2255 WESTON RD,12,101,2020-10-29,71,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,3.0,3.0,4.0,3.0,4.0,3.0,,3.0,5.0,3.0,3.0,3.0,3.0,5.0,3.0,4.0,,W0524,43.7045706478,-79.52743150170001,302573.625,4840290.883
-890084,4155110,2017.0,2020.0,1957.0,PRIVATE,5,York South-Weston,102 TRETHEWEY DR,4,30,2020-10-29,74,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,4.0,3.0,3.0,,3.0,,3.0,4.0,5.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,W0532,43.69311770149999,-79.4834759702,306116.469,4839018.146000001
-890085,4155102,2017.0,2020.0,1950.0,PRIVATE,5,York South-Weston,100 TRETHEWEY DR,3,11,2020-10-29,76,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,4.0,3.0,4.0,,4.0,,,4.0,5.0,4.0,3.0,4.0,3.0,,4.0,3.0,,W0532,43.6932514595,-79.4827536797,306174.69,4839033.016
-890086,4156034,2017.0,2020.0,1994.0,TCHC,13,Toronto Centre,261 JARVIS ST,7,55,2020-10-29,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,,3.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1328,43.657929001499994,-79.37459565270001,314899.288,4835116.244
-890087,4154751,2017.0,2020.0,1992.0,SOCIAL HOUSING,18,Willowdale,422 WILLOWDALE AVE,4,16,2020-10-29,84,Evaluation needs to be conducted in 2 years,19,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,4.0,3.0,4.0,3.0,5.0,4.0,4.0,3.0,,3.0,4.0,4.0,N1825,43.7782172975,-79.40593490810001,312356.512,4848476.407
-890088,4156494,2017.0,2020.0,1974.0,PRIVATE,7,Humber River-Black Creek,4750 JANE ST,15,131,2020-10-29,85,Evaluation needs to be conducted in 2 years,19,4.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,,4.0,3.0,4.0,4.0,5.0,5.0,4.0,5.0,5.0,4.0,W0724,43.770560291,-79.521405658,303087.391,4847612.653
-890089,4153013,2017.0,2020.0,1973.0,PRIVATE,4,Parkdale-High Park,146 DOWLING AVE,7,68,2020-10-29,63,Evaluation needs to be conducted in 1 year,18,4.0,3.0,5.0,3.0,3.0,3.0,,4.0,3.0,2.0,4.0,4.0,3.0,3.0,2.0,3.0,3.0,3.0,2.0,,S0436,43.6375473099,-79.4394028974,309673.714,4832846.159
-890090,4152984,2017.0,2020.0,1955.0,PRIVATE,4,Parkdale-High Park,125 JAMESON AVE,7,67,2020-10-28,68,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,3.0,3.0,,4.0,3.0,3.0,3.0,3.0,5.0,3.0,4.0,3.0,4.0,4.0,2.0,,S0437,43.6361641445,-79.4351614024,310016.053,4832692.746
-890091,4154464,2017.0,2020.0,1962.0,PRIVATE,7,Humber River-Black Creek,3700 KEELE ST,3,57,2020-10-28,73,Evaluation needs to be conducted in 2 years,18,3.0,4.0,3.0,4.0,4.0,4.0,,3.0,3.0,4.0,3.0,4.0,5.0,3.0,4.0,4.0,3.0,5.0,3.0,,W0731,43.755241007799995,-79.48937887550001,305639.91,4845919.621
-890092,4154463,2017.0,2020.0,1972.0,PRIVATE,7,Humber River-Black Creek,3710 KEELE ST,9,92,2020-10-28,68,Evaluation needs to be conducted in 2 years,19,3.0,3.0,3.0,4.0,4.0,4.0,3.0,3.0,3.0,2.0,3.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,W0731,43.75654049479999,-79.489787514,305606.988,4846063.982
-890093,4154647,2017.0,2020.0,1963.0,PRIVATE,6,York Centre,9 KINGSBRIDGE CRT,7,74,2020-10-28,82,Evaluation needs to be conducted in 2 years,18,5.0,5.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,4.0,5.0,3.0,4.0,4.0,5.0,4.0,3.0,,N0624,43.7715767413,-79.4441039119,309284.542,4847735.908
-890094,4155879,2017.0,2020.0,1969.0,PRIVATE,6,York Centre,6200 BATHURST ST,14,181,2020-10-28,72,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,5.0,5.0,3.0,3.0,4.0,,4.0,3.0,,N0622,43.791103408000005,-79.44678989100001,309058.466,4849903.305
-890095,4153344,2017.0,2020.0,1930.0,SOCIAL HOUSING,12,Toronto-St. Paul's,497 ST CLAIR AVE W,4,19,2020-10-28,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,2.0,4.0,3.0,,3.0,,3.0,3.0,4.0,5.0,3.0,4.0,4.0,,4.0,,,S1236,43.683093620600005,-79.4174370824,311440.998,4837907.6110000005
-890096,4233290,2017.0,2020.0,1984.0,SOCIAL HOUSING,5,York South-Weston,29 SOUTH STATION ST,13,128,2020-10-28,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,4.0,3.0,3.0,3.0,4.0,4.0,3.0,4.0,4.0,5.0,4.0,4.0,,4.0,3.0,,W0524,43.7009920215,-79.5153630558,303546.182,4839893.047
-890097,4155334,2017.0,2020.0,1954.0,PRIVATE,2,Etobicoke Centre,11 ANGLESEY BLVD,4,39,2020-10-28,76,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,3.0,4.0,3.0,,4.0,,4.0,4.0,3.0,5.0,4.0,4.0,3.0,,4.0,3.0,,W0229,43.6647200008,-79.5208076953,303106.196,4835863.495
-890098,4155278,2017.0,2020.0,1950.0,PRIVATE,3,Etobicoke-Lakeshore,158 BERRY RD,4,30,2020-10-28,73,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,3.0,4.0,2.0,,3.0,,3.0,3.0,3.0,5.0,4.0,4.0,4.0,3.0,5.0,4.0,,W0327,43.6372671432,-79.489657597,305618.818,4832813.412
-890099,4152955,2017.0,2020.0,1959.0,PRIVATE,4,Parkdale-High Park,29 SPENCER AVE,6,54,2020-10-28,70,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,3.0,3.0,3.0,,4.0,3.0,3.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,2.0,,S0437,43.634901103000004,-79.429121805,310503.215,4832553.752
-890100,4153357,2017.0,2020.0,1930.0,PRIVATE,12,Toronto-St. Paul's,49 ST CLAIR AVE W,7,34,2020-10-28,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,4.0,3.0,3.0,4.0,3.0,4.0,4.0,3.0,5.0,5.0,4.0,4.0,,5.0,,,S1238,43.6873687296,-79.3959379318,313173.803,4838384.509
-890101,4153982,2017.0,2020.0,1961.0,PRIVATE,8,Eglinton-Lawrence,515 CHAPLIN CRES,8,111,2020-10-28,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,3.0,3.0,4.0,,N0833,43.704952062,-79.424249279,310889.372,4840336.498
-890102,4153981,2017.0,2020.0,1961.0,PRIVATE,8,Eglinton-Lawrence,525 CHAPLIN CRES,8,110,2020-10-28,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,3.0,3.0,4.0,,N0833,43.705350718000005,-79.42454329899999,310865.636,4840380.768
-890103,4153442,2019.0,2020.0,1955.0,PRIVATE,13,Toronto Centre,256 SHERBOURNE ST,4,23,2020-10-28,77,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,3.0,,3.0,,,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S1328,43.65892538560001,-79.3715946717,315141.167,4835227.328
-890104,4232598,2017.0,2020.0,1963.0,PRIVATE,2,Etobicoke Centre,1141 ROYAL YORK RD,10,91,2020-10-28,85,Evaluation needs to be conducted in 2 years,17,5.0,4.0,5.0,4.0,5.0,3.0,,5.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,,W0230,43.6607734942,-79.5163233393,303467.734,4835424.971
-890105,4232595,2017.0,2020.0,1963.0,PRIVATE,2,Etobicoke Centre,1139 ROYAL YORK RD,10,90,2020-10-28,85,Evaluation needs to be conducted in 2 years,17,5.0,4.0,5.0,4.0,5.0,3.0,,5.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,,W0230,43.6611103479,-79.5158726377,303504.092,4835462.384
-890106,4155337,2017.0,2020.0,1963.0,PRIVATE,2,Etobicoke Centre,1137 ROYAL YORK RD,10,122,2020-10-28,84,Evaluation needs to be conducted in 2 years,17,5.0,4.0,5.0,4.0,5.0,3.0,,5.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,3.0,,W0230,43.6612337924,-79.51514744149999,303562.582,4835476.083000001
-890107,4153435,2017.0,2020.0,1896.0,PRIVATE,13,Toronto Centre,77 PEMBROKE ST,4,16,2020-10-28,69,Evaluation needs to be conducted in 2 years,14,4.0,4.0,3.0,3.0,4.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,4.0,,4.0,,,S1328,43.658942215500005,-79.3723537237,315079.942,4835229.102
-890108,4153978,2017.0,2020.0,1965.0,PRIVATE,8,Eglinton-Lawrence,680 ROSELAWN AVE,9,64,2020-10-28,88,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,,4.0,5.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,N0833,43.705715201000004,-79.425361614,310799.649,4840421.205
-890109,4153980,2017.0,2020.0,1959.0,PRIVATE,8,Eglinton-Lawrence,665 ROSELAWN AVE,5,87,2020-10-28,89,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,,N0833,43.705178016000005,-79.425108275,310820.12,4840361.5430000005
-890110,4154009,2017.0,2020.0,1954.0,PRIVATE,8,Eglinton-Lawrence,107 ROSELAWN AVE,4,21,2020-10-28,76,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,3.0,5.0,3.0,3.0,4.0,,4.0,3.0,,N0833,43.71000827,-79.4024838056,312643.143,4840899.127
-890111,4167685,2017.0,2020.0,1948.0,TCHC,13,Toronto Centre,295 SACKVILLE ST,3,48,2020-10-28,65,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,4.0,4.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,2.0,3.0,3.0,,S1330,43.661833468000005,-79.36324770899999,315813.619,4835552.43
-890112,4152928,2017.0,2020.0,1924.0,PRIVATE,4,Parkdale-High Park,1778 BLOOR ST W,3,21,2020-10-28,73,Evaluation needs to be conducted in 2 years,14,4.0,3.0,4.0,3.0,4.0,3.0,,4.0,,,4.0,3.0,4.0,3.0,4.0,4.0,,4.0,,,S0428,43.654816958999994,-79.460940647,307934.791,4834764.694
-890113,4155776,2017.0,2020.0,1967.0,PRIVATE,6,York Centre,35 CEDARCROFT BLVD,13,207,2020-10-28,71,Evaluation needs to be conducted in 2 years,19,3.0,4.0,5.0,2.0,3.0,3.0,3.0,4.0,5.0,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,4.0,N0622,43.7827450557,-79.4483048718,308945.57399999996,4848976.441000001
-890114,4154347,2017.0,2020.0,1958.0,PRIVATE,5,York South-Weston,2440 KEELE ST,3,34,2020-10-28,74,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,3.0,3.0,4.0,,5.0,,3.0,4.0,3.0,5.0,3.0,4.0,4.0,,4.0,3.0,,W0526,43.711712237,-79.4792178818,306459.23699999996,4841083.978999999
-890115,4156706,2017.0,2020.0,2013.0,TCHC,13,Toronto Centre,230 SACKVILLE ST,10,155,2020-10-28,93,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,S1330,,,315831.119,4835315.526000001
-890116,4156772,2017.0,2020.0,2015.0,TCHC,13,Toronto Centre,180 SACKVILLE ST,9,83,2020-10-28,94,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,,5.0,4.0,5.0,S1330,,,315865.16,4835184.93
-890117,4153567,2017.0,2020.0,1985.0,TCHC,13,Toronto Centre,123 SACKVILLE ST,3,20,2020-10-28,75,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,,,4.0,3.0,5.0,3.0,4.0,3.0,,4.0,,4.0,S1330,43.6570898108,-79.3615276679,315953.471,4835024.718
-890118,4155152,2017.0,2020.0,1974.0,PRIVATE,5,York South-Weston,150 ROSEMOUNT AVE,5,31,2020-10-28,75,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,3.0,3.0,,4.0,3.0,,4.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,,W0525,43.70408526479999,-79.51980573899999,303188.223,4840236.751
-890119,4153020,2017.0,2020.0,1967.0,PRIVATE,4,Parkdale-High Park,160 JAMESON AVE,7,96,2020-10-28,68,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,4.0,3.0,,3.0,4.0,,3.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,2.0,,S0436,43.63765643,-79.4366087983,309899.145,4832858.438999999
-890120,4154888,2017.0,2020.0,1958.0,PRIVATE,16,Don Valley East,50 ECCLESTON DR,4,60,2020-10-28,91,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,5.0,5.0,,3.0,5.0,3.0,5.0,4.0,5.0,4.0,4.0,5.0,5.0,5.0,5.0,,N1628,43.7275858638,-79.3190299977,319364.219,4842863.106000001
-890121,4154219,2017.0,2020.0,1965.0,PRIVATE,7,Humber River-Black Creek,99 MATTSON RD,4,30,2020-10-28,61,Evaluation needs to be conducted in 1 year,18,2.0,3.0,3.0,3.0,3.0,3.0,,2.0,3.0,3.0,3.0,3.0,5.0,3.0,4.0,3.0,3.0,4.0,2.0,,W0734,43.722654944,-79.5130447411,303733.493,4842299.549
-890122,4152747,2017.0,2020.0,1965.0,PRIVATE,20,Scarborough Southwest,815 MIDLAND AVE,3,23,2020-10-28,75,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,3.0,,4.0,,,4.0,3.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,,E2024,43.734150957,-79.2574811613,324320.645,4843605.005
-890123,4155927,2017.0,2020.0,1971.0,PRIVATE,1,Etobicoke North,10 WILLOWRIDGE RD,19,328,2020-10-28,69,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,2.0,3.0,2.0,4.0,3.0,4.0,,3.0,3.0,5.0,3.0,3.0,4.0,5.0,3.0,3.0,,W0137,,,299268.886,4837017.142
-890124,4155161,2017.0,2020.0,1970.0,PRIVATE,5,York South-Weston,1906-1930 WESTON RD,12,112,2020-10-28,78,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,5.0,3.0,5.0,4.0,3.0,4.0,4.0,4.0,5.0,4.0,3.0,4.0,3.0,3.0,4.0,4.0,,W0524,43.7002003087,-79.5172673603,303392.674,4839805.124
-890125,4154619,2017.0,2020.0,1964.0,PRIVATE,6,York Centre,707-711 FINCH AVE W,7,150,2020-10-28,76,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,3.0,4.0,4.0,4.0,5.0,4.0,3.0,3.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,2.0,3.0,N0624,,,307885.74100000004,4847532.728999999
-890126,4154893,2017.0,2020.0,2001.0,PRIVATE,16,Don Valley East,17 BROOKBANKS DR,8,44,2020-10-28,99,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,N1625,43.751291266,-79.332886312,318225.632,4845565.901000001
-890127,4154645,2017.0,2020.0,1960.0,PRIVATE,6,York Centre,521-523 FINCH AVE W,6,179,2020-10-28,66,Evaluation needs to be conducted in 2 years,19,3.0,3.0,5.0,4.0,3.0,4.0,2.0,4.0,3.0,2.0,3.0,2.0,5.0,4.0,3.0,4.0,4.0,2.0,3.0,,N0624,43.772961449899995,-79.444496063,309267.54,4847942.623
-890128,4154640,2017.0,2020.0,1967.0,PRIVATE,6,York Centre,605 FINCH AVE W,9,244,2020-10-28,87,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,4.0,5.0,3.0,5.0,5.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,5.0,N0624,43.771328418,-79.45270965,308591.503,4847708.85
-890129,4154629,2017.0,2020.0,1970.0,PRIVATE,6,York Centre,25 FISHERVILLE RD,18,221,2020-10-27,88,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,,N0622,43.788874739499995,-79.4489791313,308890.874,4849657.401000001
-890130,4155202,2017.0,2020.0,1990.0,SOCIAL HOUSING,4,Parkdale-High Park,4049 DUNDAS ST W,12,208,2020-10-27,75,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,5.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,3.0,4.0,3.0,,S0421,43.6634553526,-79.5037202734,304484.24,4835722.738
-890131,4155911,2017.0,2020.0,1971.0,PRIVATE,1,Etobicoke North,22 WILLOWRIDGE RD,16,132,2020-10-27,73,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,3.0,3.0,3.0,4.0,2.0,4.0,,4.0,4.0,5.0,3.0,3.0,4.0,5.0,3.0,4.0,,W0137,43.674963268999996,-79.5693913161,299189.13399999996,4837003.506
-890132,4793995,2020.0,2020.0,1896.0,PRIVATE,11,University-Rosedale,55 MADISON AVE,4,12,2020-10-27,71,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,,,3.0,3.0,5.0,4.0,3.0,4.0,,4.0,4.0,,S1127,43.670001750699996,-79.4035877513,312559.238,4836454.34
-890133,4154651,2017.0,2020.0,1962.0,PRIVATE,6,York Centre,4 MASCOT PL,4,70,2020-10-27,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,3.0,4.0,4.0,5.0,3.0,4.0,3.0,4.0,4.0,3.0,,N0624,43.7703715796,-79.4436799328,309318.76300000004,4847602.04
-890134,4244923,2017.0,2020.0,1963.0,PRIVATE,1,Etobicoke North,60 ESTHER LORRIE DR,7,97,2020-10-27,92,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,4.0,5.0,3.0,,5.0,5.0,,4.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,4.0,,W0129,,,298460.499,4843307.933
-890135,4155590,2017.0,2020.0,1959.0,TCHC,9,Davenport,1525 DUNDAS ST W,6,106,2020-10-27,67,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,,3.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,3.0,3.0,S0936,43.649163790699994,-79.4324188308,310236.184,4834137.085
-890136,4154642,2017.0,2020.0,1969.0,PRIVATE,6,York Centre,4 GOLDFINCH CRT,12,95,2020-10-27,68,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,2.0,2.0,2.0,4.0,3.0,4.0,3.0,2.0,4.0,3.0,,N0624,43.7701314471,-79.4494799439,308851.855,4847575.071
-890137,4154630,2017.0,2020.0,1970.0,PRIVATE,6,York Centre,5 FISHERVILLE RD,17,202,2020-10-27,83,Evaluation needs to be conducted in 2 years,20,5.0,4.0,5.0,5.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,5.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,3.0,N0622,43.7893811504,-79.4481218058,308959.834,4849713.7069999995
-890138,4153047,2017.0,2020.0,1970.0,PRIVATE,4,Parkdale-High Park,109 INDIAN RD,8,38,2020-10-27,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,,S0434,43.6433287042,-79.4525126324,308615.591,4833487.768
-890139,4154261,2017.0,2020.0,1969.0,PRIVATE,7,Humber River-Black Creek,35 TOBERMORY DR,11,138,2020-10-27,71,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,4.0,,3.0,3.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,W0725,43.761263869,-79.509638013,304008.298,4846589.696
-890140,4154348,2017.0,2020.0,1950.0,PRIVATE,5,York South-Weston,2434 KEELE ST,3,12,2020-10-27,69,Evaluation needs to be conducted in 2 years,15,3.0,4.0,2.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,4.0,4.0,5.0,,4.0,3.0,,W0526,43.711263649799996,-79.4790421102,306473.414,4841034.147
-890141,4154339,2018.0,2020.0,1967.0,PRIVATE,5,York South-Weston,2460 KEELE ST,8,57,2020-10-27,71,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,5.0,3.0,3.0,4.0,3.0,3.0,5.0,,W0526,43.7125446153,-79.4793858958,306445.675,4841176.448
-890142,4154337,2017.0,2020.0,1955.0,PRIVATE,5,York South-Weston,2548 KEELE ST,3,12,2020-10-27,78,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,4.0,3.0,3.0,,5.0,,4.0,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,3.0,,W0526,43.7157152364,-79.4800398693,306392.893,4841528.671
-890143,4154336,2017.0,2020.0,1955.0,PRIVATE,5,York South-Weston,2550 KEELE ST,3,12,2020-10-27,78,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,4.0,3.0,3.0,,5.0,,4.0,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,3.0,,W0526,43.715924263999995,-79.4800852491,306389.231,4841551.892
-890144,4154335,2017.0,2020.0,1954.0,PRIVATE,5,York South-Weston,2552 KEELE ST,4,29,2020-10-27,82,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,4.0,4.0,4.0,5.0,3.0,4.0,4.0,5.0,4.0,4.0,,W0526,43.7163206663,-79.4802113728,306379.058,4841595.928
-890145,4156298,2018.0,2020.0,1969.0,TCHC,10,Spadina-Fort York,170 VANAULEY WALK,6,40,2020-10-27,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,2.0,,4.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,S1023,43.651687962,-79.400557945,312805.773,4834421.0
-890146,4154254,2017.0,2020.0,1961.0,PRIVATE,7,Humber River-Black Creek,3266 WESTON RD,4,59,2020-10-27,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,4.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,W0727,43.7407950655,-79.5403431231,301535.061,4844315.545
-890147,4154253,2017.0,2020.0,1961.0,PRIVATE,7,Humber River-Black Creek,3286 WESTON RD,4,55,2020-10-27,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,W0727,43.7416741492,-79.54061124340001,301513.51300000004,4844413.218
-890148,4155591,2017.0,2020.0,1968.0,TCHC,9,Davenport,61 PELHAM PARK GDNS,17,352,2020-10-27,59,Evaluation needs to be conducted in 1 year,20,3.0,4.0,4.0,2.0,3.0,3.0,3.0,3.0,2.0,3.0,2.0,4.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,S0926,43.66925972,-79.457795659,308187.607,4836369.289
-890149,4154615,2017.0,2020.0,1950.0,PRIVATE,6,York Centre,229 PANNAHILL RD,3,12,2020-10-27,91,Evaluation needs to be conducted in 3 years,16,4.0,5.0,5.0,4.0,5.0,4.0,,4.0,,,4.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,5.0,,N0624,43.7603575234,-79.4631757419,307749.723,4846488.654
-890150,4154631,2017.0,2020.0,1969.0,PRIVATE,6,York Centre,6010 BATHURST ST,12,120,2020-10-27,76,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,3.0,4.0,3.0,3.0,4.0,3.0,4.0,3.0,5.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,N0622,43.7862798518,-79.4468276481,309064.24100000004,4849369.232
-890151,4244920,2017.0,2020.0,2017.0,PRIVATE,12,Toronto-St. Paul's,118 BALLIOL ST,30,342,2020-10-27,98,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,,5.0,5.0,3.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,S1233,,,313430.374,4839608.751
-890152,4154649,2017.0,2020.0,1961.0,PRIVATE,6,York Centre,4854 BATHURST ST,6,71,2020-10-27,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0624,43.77111358770001,-79.442973232,309375.6,4847684.513
-890153,4155309,2017.0,2020.0,1959.0,PRIVATE,3,Etobicoke-Lakeshore,22 BURNHAMTHORPE RD,5,42,2020-10-27,73,Evaluation needs to be conducted in 2 years,18,3.0,3.0,5.0,3.0,5.0,3.0,,4.0,4.0,3.0,4.0,2.0,5.0,3.0,4.0,3.0,4.0,3.0,5.0,,W0321,43.6482360213,-79.53035175859999,302335.75800000003,4834032.463
-890154,4155378,2017.0,2020.0,1968.0,PRIVATE,2,Etobicoke Centre,4340 BLOOR ST W,15,88,2020-10-27,83,Evaluation needs to be conducted in 2 years,18,4.0,5.0,5.0,4.0,4.0,5.0,,5.0,4.0,2.0,4.0,5.0,5.0,5.0,3.0,3.0,5.0,4.0,3.0,,W0233,43.632109971999995,-79.576154353,298639.087,4832244.112
-890155,4253833,2018.0,2020.0,1960.0,PRIVATE,4,Parkdale-High Park,1 CLAUDE AVE,3,30,2020-10-27,77,Evaluation needs to be conducted in 2 years,14,4.0,4.0,5.0,3.0,3.0,5.0,,4.0,,,4.0,4.0,4.0,3.0,3.0,4.0,,4.0,,,S0434,43.639823941,-79.451749578,308677.11199999996,4833099.385
-890156,4155308,2017.0,2020.0,1959.0,PRIVATE,3,Etobicoke-Lakeshore,24 BURNHAMTHORPE RD,5,42,2020-10-27,74,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,4.0,4.0,,3.0,3.0,3.0,3.0,3.0,5.0,4.0,3.0,4.0,5.0,5.0,5.0,,W0321,43.648430311700004,-79.5307642021,302302.494,4834054.061000001
-890157,4153014,2017.0,2020.0,1930.0,PRIVATE,4,Parkdale-High Park,122 DOWLING AVE,5,27,2020-10-27,74,Evaluation needs to be conducted in 2 years,14,4.0,4.0,5.0,3.0,3.0,5.0,,4.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,,,S0436,43.6367650301,-79.4389483513,309710.453,4832759.28
-890158,4168793,2017.0,2020.0,1962.0,PRIVATE,6,York Centre,25 CANYON AVE,21,117,2020-10-27,87,Evaluation needs to be conducted in 3 years,20,4.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,3.0,5.0,N0624,43.757154574,-79.436224864,,
-890159,4244917,2017.0,2020.0,2017.0,PRIVATE,12,Toronto-St. Paul's,99 DAVISVILLE AVE,14,179,2020-10-27,97,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,,4.0,5.0,3.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,S1233,,,313417.998,4839660.9969999995
-890160,4155112,2017.0,2020.0,1915.0,PRIVATE,5,York South-Weston,83 CLEARVIEW HTS,3,40,2020-10-26,71,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,3.0,3.0,3.0,,4.0,,,3.0,3.0,4.0,4.0,3.0,3.0,,4.0,4.0,,W0532,43.692623122,-79.48295506,306158.205,4838964.161
-890161,4155009,2017.0,2020.0,1950.0,PRIVATE,9,Davenport,22 ROBINA AVE,3,20,2020-10-26,69,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,3.0,3.0,4.0,,3.0,,3.0,3.0,4.0,5.0,3.0,4.0,3.0,,3.0,,,S0925,43.6807571729,-79.4354334131,309990.19399999996,4837646.768
-890162,4154210,2017.0,2020.0,1954.0,PRIVATE,7,Humber River-Black Creek,1780 WILSON AVE,3,31,2020-10-26,65,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,4.0,3.0,3.0,,4.0,3.0,,W0734,43.7191256895,-79.5181150514,303324.903,4841907.561000001
-890163,4154217,2017.0,2020.0,1967.0,PRIVATE,7,Humber River-Black Creek,1750 WILSON AVE,3,10,2020-10-26,76,Evaluation needs to be conducted in 2 years,17,4.0,4.0,3.0,3.0,4.0,4.0,,4.0,,4.0,3.0,3.0,5.0,4.0,4.0,4.0,3.0,5.0,4.0,,W0734,43.71964691229999,-79.5158634781,303506.321,4841965.429
-890164,4154345,2017.0,2020.0,1963.0,PRIVATE,5,York South-Weston,1550 LAWRENCE AVE W,7,96,2020-10-26,71,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,3.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,,W0526,43.707214984,-79.486164406,305899.26399999997,4840585.216
-890165,4155013,2017.0,2020.0,1930.0,PRIVATE,9,Davenport,240 NORTHCLIFFE BLVD,4,46,2020-10-26,75,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,3.0,2.0,4.0,,4.0,,,3.0,4.0,5.0,3.0,5.0,3.0,,4.0,4.0,,S0925,43.6834994432,-79.4433736309,309349.814,4837950.959
-890166,4154346,2017.0,2020.0,1962.0,PRIVATE,5,York South-Weston,1560 LAWRENCE AVE W,6,90,2020-10-26,77,Evaluation needs to be conducted in 2 years,19,3.0,5.0,5.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,,W0526,43.706628986000005,-79.487496518,305791.914,4840520.101
-890167,4155460,2017.0,2020.0,1970.0,PRIVATE,1,Etobicoke North,40 STEVENSON RD,13,176,2020-10-26,76,Evaluation needs to be conducted in 2 years,18,2.0,3.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,,3.0,5.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,,W0123,43.744225113999995,-79.585660851,297884.978,4844700.386
-890168,4154216,2017.0,2020.0,1973.0,PRIVATE,7,Humber River-Black Creek,1748 WILSON AVE,3,10,2020-10-26,76,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,4.0,4.0,4.0,,3.0,,,3.0,3.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,,W0734,43.719712611300004,-79.51558277630001,303528.939,4841972.723
-890169,4154213,2017.0,2020.0,1950.0,PRIVATE,7,Humber River-Black Creek,1742 WILSON AVE,3,10,2020-10-26,68,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,3.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,,W0734,43.71990129,-79.5147268403,303597.907,4841993.67
-890170,4154355,,2020.0,1954.0,PRIVATE,5,York South-Weston,2416 KEELE ST,3,17,2020-10-26,68,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,3.0,2.0,4.0,,3.0,,3.0,4.0,4.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0526,43.7097870925,-79.4788512552,306488.836,4840870.115
-890171,4154354,2017.0,2020.0,1960.0,PRIVATE,5,York South-Weston,2418 KEELE ST,3,11,2020-10-26,53,Evaluation needs to be conducted in 1 year,16,2.0,4.0,3.0,2.0,2.0,3.0,,2.0,,1.0,2.0,2.0,5.0,3.0,3.0,3.0,,3.0,2.0,,W0526,43.710013521099995,-79.4787756914,306494.919,4840895.271000001
-890172,4154353,2017.0,2020.0,1958.0,PRIVATE,5,York South-Weston,2420 KEELE ST,3,11,2020-10-26,81,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,3.0,4.0,,5.0,,4.0,4.0,3.0,5.0,3.0,5.0,4.0,,4.0,4.0,,W0526,43.7102484483,-79.47881998310001,306491.343,4840921.369
-890173,4154212,2018.0,2020.0,1953.0,PRIVATE,7,Humber River-Black Creek,1740 WILSON AVE,3,10,2020-10-26,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,,W0734,43.7199693084,-79.5144469829,303620.457,4842001.222
-890174,4155101,2017.0,2020.0,1951.0,PRIVATE,5,York South-Weston,80 CLEARVIEW HTS,4,36,2020-10-26,84,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,5.0,4.0,4.0,,4.0,,4.0,5.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,W0532,43.693064312,-79.482178967,306220.75800000003,4839013.187
-890175,4155100,2017.0,2020.0,1951.0,PRIVATE,5,York South-Weston,70 CLEARVIEW HTS,4,47,2020-10-26,85,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,5.0,4.0,4.0,,3.0,,4.0,5.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,W0532,43.69279777,-79.481595405,306267.805,4838983.584
-890176,4155099,2017.0,2020.0,1951.0,PRIVATE,5,York South-Weston,60 CLEARVIEW HTS,4,37,2020-10-26,82,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,,5.0,5.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,,W0532,43.692977471000006,-79.48134741,306287.792,4839003.552
-890177,4155098,2017.0,2020.0,1951.0,PRIVATE,5,York South-Weston,50 CLEARVIEW HTS,4,37,2020-10-26,78,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,,4.0,4.0,4.0,5.0,4.0,4.0,3.0,3.0,4.0,3.0,,W0532,43.693048881,-79.48093875800001,306320.732,4839011.492
-890178,4155097,2017.0,2020.0,1951.0,PRIVATE,5,York South-Weston,40 CLEARVIEW HTS,4,37,2020-10-26,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,3.0,5.0,,3.0,,3.0,5.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,W0532,43.693098586400005,-79.48023783800001,306377.49600000004,4839016.071
-890179,4155017,2017.0,2020.0,1953.0,PRIVATE,9,Davenport,375 WESTMOUNT AVE,3,30,2020-10-26,75,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,4.0,4.0,3.0,,3.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,2.0,,S0925,43.685368199399996,-79.4445572925,309254.249,4838158.509
-890180,4155019,2017.0,2020.0,1950.0,PRIVATE,9,Davenport,370 WESTMOUNT AVE,3,29,2020-10-26,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,,,3.0,4.0,5.0,3.0,3.0,3.0,,4.0,3.0,,S0925,43.6852037341,-79.4451995496,309202.478,4838140.205
-890181,4817599,2020.0,2020.0,1900.0,PRIVATE,12,Toronto-St. Paul's,595 ST CLAIR AVE W,3,15,2020-10-26,63,Evaluation needs to be conducted in 1 year,13,3.0,3.0,3.0,3.0,,3.0,,5.0,,,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,S1235,43.6821585882,-79.4220166514,311071.858,4837803.382
-890182,4154350,,2020.0,,PRIVATE,5,York South-Weston,2430 KEELE ST,3,12,2020-10-26,72,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,3.0,,W0526,43.71081061,-79.4788967213,306483.424,4841002.355
-890183,4155096,2017.0,2020.0,1960.0,PRIVATE,5,York South-Weston,30 CLEARVIEW HTS,4,25,2020-10-26,79,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,4.0,3.0,4.0,,3.0,,,4.0,5.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,W0532,43.6932353032,-79.4795788454,306430.615,4839031.266
-890184,4154214,2017.0,2020.0,1950.0,PRIVATE,7,Humber River-Black Creek,1744 WILSON AVE,3,10,2020-10-26,64,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,2.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,4.0,2.0,2.0,4.0,4.0,3.0,,W0734,43.7198292201,-79.5150038908,303575.583,4841985.6680000005
-890185,4221280,2017.0,2020.0,1965.0,PRIVATE,11,University-Rosedale,6-10 WALMER RD,18,131,2020-10-25,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,3.0,3.0,5.0,2.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,S1126,43.666995001000004,-79.406173702,312350.807,4836121.022
-890186,4153174,2017.0,2020.0,1970.0,PRIVATE,11,University-Rosedale,15 WALMER RD,10,78,2020-10-25,74,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,,4.0,,2.0,3.0,3.0,3.0,5.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,S1126,43.6676214521,-79.4054920342,312405.966,4836189.727
-890187,4153179,2017.0,2020.0,1971.0,PRIVATE,11,University-Rosedale,34 WALMER RD,10,61,2020-10-25,85,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,5.0,4.0,3.0,4.0,4.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,S1126,43.668157441000005,-79.406612526,312315.279,4836250.126
-890188,4153188,2017.0,2020.0,1961.0,PRIVATE,11,University-Rosedale,40 WALMER RD,4,33,2020-10-25,69,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,,3.0,,3.0,,,3.0,4.0,5.0,3.0,4.0,3.0,4.0,4.0,3.0,,S1126,43.668763043,-79.406936141,312289.108,4836317.377
-890189,4155462,2019.0,2020.0,1970.0,PRIVATE,1,Etobicoke North,41 GARFELLA DR,12,95,2020-10-25,77,Evaluation needs to be conducted in 2 years,18,4.0,5.0,4.0,3.0,4.0,5.0,3.0,2.0,4.0,,4.0,5.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,,W0123,43.744136418400004,-79.5943268787,297187.256,4844690.351
-890190,4153187,2017.0,2020.0,1960.0,PRIVATE,11,University-Rosedale,44 WALMER RD,13,85,2020-10-25,77,Evaluation needs to be conducted in 2 years,19,5.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,5.0,4.0,3.0,3.0,5.0,4.0,3.0,,S1126,43.669071978999995,-79.406941997,312288.598,4836351.698
-890191,4153761,2017.0,2020.0,1999.0,PRIVATE,12,Toronto-St. Paul's,268 MERTON ST,5,38,2020-10-24,82,Evaluation needs to be conducted in 2 years,19,5.0,5.0,5.0,3.0,3.0,4.0,3.0,4.0,3.0,3.0,4.0,4.0,5.0,5.0,4.0,4.0,5.0,4.0,5.0,,S1233,43.69810355640001,-79.38800394,313811.835,4839577.992
-890192,4154468,2017.0,2020.0,1967.0,PRIVATE,7,Humber River-Black Creek,170 SENTINEL RD,4,60,2020-10-23,76,Evaluation needs to be conducted in 2 years,19,4.0,3.0,3.0,3.0,4.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,3.0,,W0731,43.75162192,-79.4974696596,304988.387,4845517.507
-890193,4153349,2017.0,2020.0,1982.0,SOCIAL HOUSING,12,Toronto-St. Paul's,707 ST CLAIR AVE W,7,130,2020-10-23,86,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,5.0,5.0,5.0,5.0,,5.0,3.0,5.0,S1234,43.6812230253,-79.4266148086,310701.202,4837699.114
-890194,4365723,2018.0,2020.0,1976.0,PRIVATE,4,Parkdale-High Park,2350 DUNDAS ST W,29,457,2020-10-23,82,Evaluation needs to be conducted in 2 years,17,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S0429,43.656991643999994,-79.45228586,308623.625,4835029.533
-890195,4365726,2018.0,2020.0,1976.0,PRIVATE,4,Parkdale-High Park,2360 DUNDAS ST W,29,638,2020-10-23,82,Evaluation needs to be conducted in 2 years,17,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S0429,43.657073675,-79.452365262,308621.66,4835039.566000001
-890196,4154636,,2020.0,1958.0,PRIVATE,6,York Centre,15 WILMINGTON AVE,3,21,2020-10-23,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,5.0,3.0,3.0,4.0,,3.0,,,3.0,2.0,4.0,3.0,4.0,1.0,4.0,3.0,2.0,,N0624,43.753413503999994,-79.452055484,308645.309,4845718.607
-890197,4153019,2017.0,2020.0,1959.0,PRIVATE,4,Parkdale-High Park,166 JAMESON AVE,8,61,2020-10-23,76,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,4.0,4.0,5.0,3.0,3.0,4.0,3.0,3.0,3.0,,S0436,43.6379895083,-79.4367678371,309886.286,4832895.432
-890198,4154262,2017.0,2020.0,1977.0,PRIVATE,7,Humber River-Black Creek,10 SAN ROMANOWAY,34,428,2020-10-22,93,Evaluation needs to be conducted in 3 years,19,4.0,5.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,,5.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,4.0,5.0,W0725,43.7585401941,-79.5166809322,303441.401,4846286.246
-890199,4155119,2017.0,2020.0,1960.0,PRIVATE,5,York South-Weston,40 TRETHEWEY DR,3,45,2020-10-22,77,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,4.0,3.0,4.0,,4.0,,,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0532,43.6926109398,-79.4780640156,306552.743,4838961.923
-890200,4167767,2017.0,2020.0,1974.0,TCHC,5,York South-Weston,710 TRETHEWEY DR,19,165,2020-10-22,78,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,3.0,3.0,5.0,3.0,5.0,3.0,,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,3.0,,W0528,43.697803447,-79.499827299,304798.114,4839539.581
-890201,4155095,2017.0,2020.0,1955.0,PRIVATE,5,York South-Weston,4 GREENTREE CRT,4,43,2020-10-22,78,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,4.0,4.0,4.0,,3.0,,4.0,4.0,5.0,5.0,4.0,4.0,3.0,,3.0,3.0,,W0532,43.6926919823,-79.4790165335,306475.957,4838970.911
-890202,4155118,2017.0,2020.0,1960.0,PRIVATE,5,York South-Weston,3 GREENTREE CRT,3,45,2020-10-22,75,Evaluation needs to be conducted in 2 years,15,3.0,2.0,4.0,3.0,4.0,4.0,,4.0,,,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0532,43.6924423305,-79.478539855,306514.38899999997,4838943.183
-890203,4154316,2017.0,2020.0,1953.0,PRIVATE,5,York South-Weston,2639 KEELE ST,3,11,2020-10-22,68,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,4.0,3.0,4.0,,3.0,,3.0,4.0,3.0,5.0,3.0,4.0,3.0,,4.0,2.0,,W0523,43.721008261,-79.48031007510001,306370.985,4842116.682
-890204,4155621,2017.0,2020.0,1967.0,TCHC,5,York South-Weston,1570 JANE ST,6,76,2020-10-22,77,Evaluation needs to be conducted in 2 years,19,3.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,5.0,5.0,3.0,4.0,4.0,5.0,4.0,4.0,5.0,W0527,43.6990884103,-79.5033968088,304510.668,4839681.395
-890205,4155094,2017.0,2020.0,1950.0,PRIVATE,5,York South-Weston,2 GREENTREE CRT,3,29,2020-10-22,80,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,3.0,4.0,,3.0,,4.0,5.0,5.0,5.0,4.0,4.0,3.0,,4.0,3.0,,W0532,43.6929246755,-79.4786023031,306509.343,4838996.768999999
-890206,4152933,2017.0,2020.0,1973.0,PRIVATE,4,Parkdale-High Park,299 GLENLAKE AVE,30,233,2020-10-22,79,Evaluation needs to be conducted in 2 years,19,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,,S0428,43.656888484,-79.465364295,307575.602,4834997.723
-890207,4155451,2017.0,2020.0,1978.0,PRIVATE,1,Etobicoke North,2667 KIPLING AVE,23,228,2020-10-22,79,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,4.0,4.0,5.0,3.0,3.0,4.0,,4.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,,W0124,43.748495858000005,-79.583366602,298070.253,4845174.643999999
-890208,4155457,2017.0,2020.0,1969.0,PRIVATE,1,Etobicoke North,10 GARFELLA DR,7,143,2020-10-22,68,Evaluation needs to be conducted in 2 years,18,4.0,5.0,4.0,3.0,4.0,3.0,3.0,2.0,5.0,,2.0,4.0,3.0,2.0,3.0,3.0,5.0,3.0,3.0,,W0123,43.7453896515,-79.59312182939999,297284.473,4844829.467
-890209,4154221,2017.0,2020.0,1972.0,PRIVATE,7,Humber River-Black Creek,180 CHALKFARM DR,23,263,2020-10-22,68,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,5.0,3.0,4.0,4.0,2.0,4.0,3.0,3.0,W0734,43.724048437200004,-79.5118150261,303832.597,4842454.334
-890210,4154222,2017.0,2020.0,1972.0,PRIVATE,7,Humber River-Black Creek,170 CHALKFARM DR,23,262,2020-10-22,66,Evaluation needs to be conducted in 2 years,19,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,5.0,3.0,4.0,3.0,3.0,4.0,3.0,4.0,W0734,43.7242716939,-79.5134047928,303704.517,4842479.159
-890211,4154223,2017.0,2020.0,1972.0,PRIVATE,7,Humber River-Black Creek,160 CHALKFARM DR,23,466,2020-10-22,68,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,,W0734,43.7243235641,-79.51474864069999,303596.24600000004,4842484.943
-890212,4155143,2017.0,2020.0,1954.0,PRIVATE,5,York South-Weston,133 WOODWARD AVE,3,11,2020-10-22,73,Evaluation needs to be conducted in 2 years,16,4.0,3.0,5.0,4.0,2.0,4.0,,3.0,,3.0,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,2.0,,W0525,43.7094490661,-79.5079325701,304145.213,4840832.415
-890213,4155873,2017.0,2020.0,1971.0,TCHC,5,York South-Weston,5 BELLEVUE CRES,21,326,2020-10-22,75,Evaluation needs to be conducted in 2 years,19,3.0,3.0,5.0,4.0,3.0,5.0,3.0,3.0,3.0,,3.0,5.0,3.0,3.0,4.0,5.0,4.0,4.0,3.0,5.0,W0527,43.699140093400004,-79.51522928520001,303556.925,4839687.3
-890214,4153342,2017.0,2020.0,1969.0,PRIVATE,12,Toronto-St. Paul's,355 ST CLAIR AVE W,24,168,2020-10-22,93,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,5.0,5.0,5.0,3.0,4.0,5.0,4.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,5.0,S1236,43.6839008332,-79.4127883698,311815.717,4837997.694
-890215,4152985,2017.0,2020.0,1960.0,PRIVATE,4,Parkdale-High Park,145 JAMESON AVE,9,80,2020-10-22,77,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,4.0,2.0,,S0437,43.6369589239,-79.435611219,309979.692,4832781.011
-890216,4152989,2017.0,2020.0,1955.0,PRIVATE,4,Parkdale-High Park,130 JAMESON AVE,7,108,2020-10-22,75,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,3.0,,3.0,4.0,,4.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,3.0,,S0437,43.636376149700006,-79.4361595734,309935.497,4832716.239
-890217,4152979,2017.0,2020.0,1962.0,PRIVATE,4,Parkdale-High Park,79 JAMESON AVE,7,121,2020-10-22,79,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,,S0437,43.6343864114,-79.4346789323,310055.132,4832495.286
-890218,4155449,2017.0,2020.0,1974.0,PRIVATE,1,Etobicoke North,18 PANORAMA CRT,17,204,2020-10-21,78,Evaluation needs to be conducted in 2 years,20,4.0,5.0,5.0,3.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,5.0,5.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,W0124,43.7471776431,-79.5819972103,298180.653,4845027.131
-890219,4154587,2017.0,2020.0,1955.0,PRIVATE,6,York Centre,19 ROSSEAU RD,3,11,2020-10-21,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,,4.0,4.0,3.0,5.0,4.0,4.0,4.0,,3.0,3.0,,N0629,43.7429016384,-79.4368905262,309867.637,4844550.629
-890220,4154588,2017.0,2020.0,1955.0,PRIVATE,6,York Centre,21 ROSSEAU RD,3,11,2020-10-21,76,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,,3.0,4.0,3.0,5.0,4.0,4.0,4.0,,3.0,3.0,,N0629,43.743072408,-79.4368800635,309868.466,4844569.601
-890221,4154597,2017.0,2020.0,1949.0,PRIVATE,6,York Centre,26 ROSSEAU RD,3,11,2020-10-21,88,Evaluation needs to be conducted in 3 years,16,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,,4.0,4.0,5.0,5.0,5.0,4.0,5.0,,5.0,5.0,,N0629,43.743239984,-79.4377635242,309797.298,4844588.17
-890222,4329035,2018.0,2020.0,1949.0,PRIVATE,6,York Centre,14 ROSSEAU RD,3,11,2020-10-21,81,Evaluation needs to be conducted in 2 years,16,4.0,5.0,4.0,3.0,3.0,4.0,,4.0,,3.0,3.0,3.0,5.0,5.0,4.0,5.0,,5.0,5.0,,N0629,43.742214529399995,-79.437433562,309823.955,4844474.267
-890223,4154585,2017.0,2020.0,1951.0,PRIVATE,6,York Centre,15 ROSSEAU RD,3,11,2020-10-21,80,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,2.0,4.0,4.0,5.0,4.0,5.0,4.0,,3.0,4.0,,N0629,43.742555906599996,-79.436710293,309882.18100000004,4844512.23
-890224,4154586,2017.0,2020.0,1953.0,PRIVATE,6,York Centre,17 ROSSEAU RD,3,11,2020-10-21,74,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,3.0,4.0,,4.0,,4.0,3.0,4.0,5.0,4.0,4.0,3.0,,3.0,3.0,,N0629,43.742708916400005,-79.4368688543,309869.398,4844529.22
-890225,4154627,2017.0,2020.0,1964.0,PRIVATE,6,York Centre,6000 BATHURST ST,12,108,2020-10-21,79,Evaluation needs to be conducted in 2 years,20,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,N0622,43.785344988599995,-79.4468063117,309066.026,4849265.373
-890226,4154623,2017.0,2020.0,1960.0,PRIVATE,6,York Centre,155 ANTIBES DR,17,259,2020-10-21,79,Evaluation needs to be conducted in 2 years,20,3.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,5.0,5.0,4.0,5.0,5.0,3.0,3.0,3.0,4.0,N0622,43.78208918560001,-79.4459161033,309137.897,4848903.701
-890227,4155875,2017.0,2020.0,1967.0,PRIVATE,2,Etobicoke Centre,5 CAPRI RD,25,329,2020-10-21,76,Evaluation needs to be conducted in 2 years,19,3.0,3.0,5.0,4.0,2.0,5.0,3.0,4.0,3.0,2.0,3.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,4.0,,W0232,43.651709561000004,-79.564536328,299578.285,4834420.709
-890228,4155913,2017.0,2020.0,1970.0,TCHC,5,York South-Weston,40 FALSTAFF AVE,19,224,2020-10-21,78,Evaluation needs to be conducted in 2 years,20,3.0,5.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,4.0,3.0,4.0,4.0,5.0,4.0,4.0,5.0,4.0,3.0,4.0,W0522,43.7164444337,-79.50436564399999,304432.719,4841609.528
-890229,4155453,2018.0,2020.0,1976.0,PRIVATE,1,Etobicoke North,2737 KIPLING AVE,23,416,2020-10-21,72,Evaluation needs to be conducted in 2 years,18,5.0,5.0,5.0,3.0,4.0,4.0,3.0,2.0,3.0,,4.0,5.0,5.0,3.0,2.0,3.0,3.0,4.0,2.0,,W0124,43.753301348,-79.586565549,297813.2,4845708.779
-890230,4154320,2017.0,2020.0,1958.0,PRIVATE,5,York South-Weston,512 RUSTIC RD,3,23,2020-10-21,80,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,,4.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,W0523,43.7187817159,-79.47921400119999,306459.358,4841869.352
-890231,4154312,2017.0,2020.0,1955.0,PRIVATE,5,York South-Weston,2597 KEELE ST,4,39,2020-10-21,76,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,4.0,3.0,4.0,,3.0,4.0,3.0,5.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,,W0523,43.718801135,-79.4798728535,306406.27,4841871.496
-890232,4154621,2017.0,2020.0,1965.0,PRIVATE,6,York Centre,25 CEDARCROFT BLVD,13,132,2020-10-21,70,Evaluation needs to be conducted in 2 years,18,3.0,3.0,5.0,2.0,3.0,3.0,3.0,5.0,3.0,,3.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,,N0622,43.7831736555,-79.4474072647,309017.799,4849024.107
-890233,4152954,2017.0,2020.0,1964.0,PRIVATE,4,Parkdale-High Park,200 DUFFERIN ST,14,251,2020-10-21,80,Evaluation needs to be conducted in 2 years,20,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,5.0,S0437,43.63715205689999,-79.42709144300001,310667.098,4832802.995
-890234,4154473,2017.0,2020.0,1970.0,PRIVATE,7,Humber River-Black Creek,470 SENTINEL RD,22,370,2020-10-21,77,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,5.0,4.0,4.0,3.0,4.0,3.0,,4.0,5.0,5.0,4.0,4.0,4.0,3.0,5.0,3.0,3.0,W0726,43.762976118100006,-79.502065617,304618.30600000004,4846778.908
-890235,4154469,2017.0,2020.0,1970.0,PRIVATE,7,Humber River-Black Creek,390 SENTINEL RD,4,53,2020-10-21,66,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,3.0,,3.0,2.0,4.0,4.0,4.0,4.0,4.0,3.0,2.0,,W0731,43.760254857700005,-79.5002027299,304768.3,4846476.5819999995
-890236,4154470,2017.0,2020.0,1966.0,PRIVATE,7,Humber River-Black Creek,391 SENTINEL RD,4,44,2020-10-21,75,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,4.0,4.0,4.0,,4.0,4.0,,4.0,3.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,W0731,43.760281803199994,-79.4991391395,304853.94,4846479.576
-890237,4154637,2017.0,2020.0,1960.0,PRIVATE,6,York Centre,118 OVERBROOK PL,3,17,2020-10-20,85,Evaluation needs to be conducted in 2 years,17,4.0,5.0,5.0,4.0,4.0,4.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,N0624,43.7635291966,-79.4550418011,308404.48,4846841.319
-890238,4281257,2017.0,2020.0,1960.0,PRIVATE,6,York Centre,1395 SHEPPARD AVE W,3,40,2020-10-20,84,Evaluation needs to be conducted in 2 years,17,4.0,5.0,5.0,4.0,5.0,4.0,,5.0,4.0,3.0,4.0,5.0,5.0,4.0,4.0,4.0,,3.0,3.0,,N0627,43.7440104,-79.4880842286,305748.977,4844715.406
-890239,4155145,,2020.0,1954.0,PRIVATE,5,York South-Weston,137 WOODWARD AVE,3,11,2020-10-20,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,2.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,2.0,,4.0,3.0,,W0525,43.709579516400005,-79.5073998504,304188.144,4840846.9
-890240,4155146,2018.0,2020.0,1945.0,PRIVATE,5,York South-Weston,139 WOODWARD AVE,3,10,2020-10-20,65,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,2.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,4.0,3.0,,4.0,3.0,,W0525,43.709631600600005,-79.5071555325,304207.833,4840852.683
-890241,4155147,2020.0,2020.0,1954.0,PRIVATE,5,York South-Weston,141 WOODWARD AVE,3,11,2020-10-20,66,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,4.0,3.0,,4.0,3.0,,W0525,43.7096923975,-79.5068983102,304228.562,4840859.433999999
-890242,4155149,2017.0,2020.0,1953.0,PRIVATE,5,York South-Weston,145 WOODWARD AVE,3,11,2020-10-20,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,3.0,3.0,,3.0,,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,,W0525,43.7098157296,-79.5063954435,304269.088,4840873.131
-890243,4154235,2017.0,2020.0,1970.0,PRIVATE,7,Humber River-Black Creek,45 DRIFTWOOD AVE,14,137,2020-10-20,67,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,W0730,43.7511483154,-79.5114796645,303860.109,4845464.976
-890244,4154236,2017.0,2020.0,1971.0,PRIVATE,7,Humber River-Black Creek,101 DRIFTWOOD AVE,4,32,2020-10-20,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,2.0,4.0,3.0,,W0730,43.754502975,-79.513280684,303714.863,4845838.642
-890245,4155657,2017.0,2020.0,1973.0,TCHC,2,Etobicoke Centre,7 CAPRI RD,20,275,2020-10-20,78,Evaluation needs to be conducted in 2 years,19,3.0,4.0,5.0,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,5.0,5.0,4.0,5.0,5.0,3.0,4.0,3.0,5.0,W0232,43.652915828000005,-79.564476577,299618.342,4834530.235
-890246,4155922,2017.0,2020.0,1972.0,TCHC,4,Parkdale-High Park,3725 DUNDAS ST W,10,153,2020-10-20,83,Evaluation needs to be conducted in 2 years,19,5.0,3.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,S0421,43.6653702089,-79.4987991022,304881.17100000003,4835935.438999999
-890247,4154568,2017.0,2020.0,1958.0,PRIVATE,6,York Centre,417 WILSON AVE,3,10,2020-10-20,76,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,4.0,3.0,3.0,,4.0,,,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,,N0633,43.735946368,-79.4396551078,309645.512,4843777.796
-890248,4154567,2017.0,2020.0,1995.0,TCHC,6,York Centre,495 WILSON AVE,5,132,2020-10-20,84,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,N0633,43.734757435,-79.445351342,309186.49199999997,4843646.358
-890249,4167763,2017.0,2020.0,1980.0,TCHC,7,Humber River-Black Creek,5 NEEDLE FIRWAY,12,137,2020-10-20,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,5.0,3.0,3.0,3.0,,3.0,5.0,5.0,4.0,3.0,4.0,5.0,5.0,3.0,3.0,W0729,43.752566895,-79.518797427,303270.559,4845623.647
-890250,4153062,2017.0,2020.0,1918.0,TCHC,4,Parkdale-High Park,22 O'HARA AVE,3,13,2020-10-20,79,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,,,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S0435,43.6419758468,-79.4348296425,310042.331,4833338.397
-890251,4155767,2017.0,2020.0,1960.0,PRIVATE,6,York Centre,10 ELLISON AVE,3,12,2020-10-20,70,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,4.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,4.0,3.0,3.0,4.0,3.0,4.0,,N0629,43.7500169368,-79.43794866489999,309781.844,4845341.052
-890252,4155304,2017.0,2020.0,1979.0,TCHC,3,Etobicoke-Lakeshore,49 MABELLE AVE,13,128,2020-10-20,88,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,3.0,5.0,4.0,4.0,4.0,4.0,,4.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,4.0,4.0,W0321,43.6449745319,-79.52858579229999,302478.099,4833670.075
-890253,4274218,2017.0,2020.0,1962.0,TCHC,3,Etobicoke-Lakeshore,57 MABELLE AVE,19,255,2020-10-20,85,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,,4.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,3.0,5.0,W0321,43.64631051600001,-79.530501016,302329.86,4833829.218
-890254,4153017,2017.0,2020.0,1964.0,PRIVATE,4,Parkdale-High Park,21 MAYNARD AVE,11,117,2020-10-20,77,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,4.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,2.0,,S0436,43.6381531633,-79.4373955962,309835.623,4832913.577
-890255,4155782,2017.0,2020.0,1965.0,TCHC,1,Etobicoke North,101 KENDLETON DR,7,221,2020-10-20,70,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,,W0123,43.7383578677,-79.580925169,298266.007,4844047.228
-890256,4156208,2017.0,2020.0,1965.0,TCHC,1,Etobicoke North,121 KENDLETON DR,11,194,2020-10-20,69,Evaluation needs to be conducted in 2 years,18,2.0,2.0,5.0,3.0,4.0,4.0,2.0,3.0,4.0,,3.0,5.0,5.0,3.0,4.0,3.0,3.0,4.0,3.0,,W0123,43.7376027043,-79.5808305747,298273.543,4843963.329
-890257,4154580,2017.0,2020.0,1962.0,TCHC,6,York Centre,12 KING HIGH AVE,3,31,2020-10-20,86,Evaluation needs to be conducted in 3 years,16,5.0,4.0,5.0,5.0,4.0,5.0,4.0,4.0,,,4.0,3.0,4.0,4.0,5.0,5.0,,4.0,4.0,,N0629,43.736219646,-79.443095826,309368.07399999996,4843808.919
-890258,4155993,2017.0,2020.0,1973.0,PRIVATE,5,York South-Weston,2460 WESTON RD,27,214,2020-10-20,74,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,,W0521,43.7078718117,-79.5341521524,302032.14,4840657.833000001
-890259,4154258,2018.0,2020.0,1973.0,PRIVATE,7,Humber River-Black Creek,5 DAMASK AVE,3,12,2020-10-20,65,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,2.0,4.0,,2.0,,,3.0,3.0,5.0,4.0,3.0,3.0,2.0,5.0,3.0,,W0728,43.741702861899995,-79.5393075079,301618.527,4844416.353999999
-890260,4155150,2017.0,2020.0,1950.0,PRIVATE,5,York South-Weston,166 QUEENS DR,3,11,2020-10-20,76,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,3.0,3.0,,4.0,,3.0,4.0,3.0,5.0,4.0,5.0,4.0,,4.0,3.0,,W0525,43.7065405201,-79.510586885,303931.26399999997,4840509.34
-890261,4154343,2017.0,2020.0,1959.0,PRIVATE,5,York South-Weston,2 PIMLICO RD,3,12,2020-10-20,87,Evaluation needs to be conducted in 3 years,15,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,5.0,3.0,5.0,5.0,5.0,4.0,,5.0,4.0,,W0526,43.707815885600006,-79.4828804419,306164.17600000004,4840651.058999999
-890262,4156195,2017.0,2020.0,1967.0,TCHC,7,Humber River-Black Creek,415 DRIFTWOOD AVE,16,135,2020-10-19,71,Evaluation needs to be conducted in 2 years,19,3.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,5.0,4.0,3.0,3.0,5.0,4.0,4.0,,W0725,43.7673194757,-79.5164765451,303458.049,4847261.584
-890263,4154569,2017.0,2020.0,1960.0,PRIVATE,6,York Centre,415 WILSON AVE,3,10,2020-10-19,76,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,3.0,3.0,4.0,,4.0,,,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,N0633,43.7360202186,-79.4393431716,309670.63300000003,4843786.018
-890264,4155340,2017.0,2020.0,1966.0,PRIVATE,2,Etobicoke Centre,10 ALLANHURST DR,11,108,2020-10-19,78,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,2.0,4.0,W0230,43.6806469466,-79.5103162763,303952.614,4837632.73
-890265,4154363,2017.0,2020.0,1960.0,PRIVATE,6,York Centre,835 WILSON AVE,3,12,2020-10-19,69,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,3.0,4.0,5.0,3.0,4.0,3.0,,4.0,3.0,,N0632,43.7310655422,-79.46388483300001,307693.95399999997,4843234.416
-890266,4154344,2017.0,2020.0,1963.0,PRIVATE,5,York South-Weston,1524 LAWRENCE AVE W,6,76,2020-10-19,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,3.0,,W0526,43.707356219,-79.48503904399999,305989.957,4840600.919
-890267,4169109,2017.0,2020.0,1967.0,PRIVATE,5,York South-Weston,1442 LAWRENCE AVE W,13,214,2020-10-19,69,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,4.0,3.0,4.0,5.0,4.0,3.0,4.0,,W0526,43.7089535721,-79.48052540340001,306428.13300000003,4840717.808
-890268,4154271,2017.0,2020.0,1967.0,PRIVATE,7,Humber River-Black Creek,4500 JANE ST,14,163,2020-10-19,72,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,3.0,3.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,,W0724,43.7664686055,-79.5204750811,303136.099,4847167.134
-890269,4155620,2017.0,2020.0,1970.0,TCHC,7,Humber River-Black Creek,4400 JANE ST,12,164,2020-10-19,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,3.0,3.0,2.0,3.0,3.0,,3.0,3.0,5.0,4.0,3.0,4.0,5.0,4.0,2.0,,W0724,43.7652223646,-79.52014173479999,303162.909,4847028.675
-890270,4155617,2017.0,2020.0,1971.0,TCHC,7,Humber River-Black Creek,2999 JANE ST,15,188,2020-10-19,72,Evaluation needs to be conducted in 2 years,19,3.0,3.0,3.0,3.0,5.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,W0730,43.754346500699995,-79.5161715175,303482.32399999996,4845820.353999999
-890271,4154232,2017.0,2020.0,1960.0,PRIVATE,7,Humber River-Black Creek,2900 JANE ST,14,183,2020-10-19,73,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,,W0729,43.7531434812,-79.5178280471,303348.899,4845686.734
-890272,4155781,2017.0,2020.0,1965.0,TCHC,1,Etobicoke North,111 KENDLETON DR,7,58,2020-10-19,80,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,4.0,5.0,3.0,3.0,3.0,3.0,,3.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,3.0,,W0123,43.737879704499996,-79.581199625,298243.847,4843994.13
-890273,4154364,2017.0,2020.0,1960.0,PRIVATE,6,York Centre,833 WILSON AVE,3,12,2020-10-19,69,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,3.0,4.0,5.0,3.0,4.0,3.0,,4.0,3.0,,N0632,43.7311624892,-79.4634709632,307727.291,4843245.201
-890274,4154570,2017.0,2020.0,1958.0,PRIVATE,6,York Centre,411 WILSON AVE,3,10,2020-10-19,85,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,4.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,,N0633,43.7360797537,-79.4390470159,309694.484,4843792.649
-890275,4154342,2017.0,2020.0,1960.0,PRIVATE,5,York South-Weston,1570 LAWRENCE AVE W,6,87,2020-10-19,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,5.0,5.0,4.0,4.0,5.0,3.0,4.0,4.0,,W0526,43.7066390346,-79.48837900390001,305721.05600000004,4840520.254
-890276,4155623,2017.0,2020.0,1955.0,TCHC,5,York South-Weston,1620 LAWRENCE AVE W,3,13,2020-10-19,76,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,3.0,5.0,,4.0,,,3.0,4.0,5.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,W0526,43.7064506482,-79.4893217524,305627.966,4840469.963
-890277,4155624,2017.0,2020.0,1955.0,TCHC,5,York South-Weston,1622 LAWRENCE AVE W,3,20,2020-10-19,78,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,3.0,5.0,,4.0,,,3.0,4.0,5.0,3.0,4.0,5.0,5.0,4.0,4.0,,W0526,43.706344038000005,-79.4898898343,305599.298,4840487.469
-890278,4154340,2017.0,2020.0,1994.0,SOCIAL HOUSING,5,York South-Weston,1630 LAWRENCE AVE W,8,100,2020-10-19,76,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,W0526,43.706166975900004,-79.4914250122,305475.57300000003,4840467.787
-890279,4154341,2017.0,2020.0,1965.0,PRIVATE,5,York South-Weston,1640 LAWRENCE AVE W,9,92,2020-10-19,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,3.0,3.0,4.0,5.0,3.0,,3.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,4.0,,W0526,43.7058159732,-79.4929514926,305352.55,4840428.784
-890280,4155692,2017.0,2020.0,1971.0,PRIVATE,1,Etobicoke North,1875 MARTIN GROVE RD,12,88,2020-10-18,89,Evaluation needs to be conducted in 3 years,18,4.0,4.0,5.0,3.0,5.0,5.0,4.0,4.0,5.0,,4.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,3.0,,W0123,43.7432814617,-79.5941314137,297202.887,4844595.353
-890281,4155991,2017.0,2020.0,1972.0,TCHC,7,Humber River-Black Creek,11 ARLETA AVE,4,171,2020-10-16,66,Evaluation needs to be conducted in 2 years,19,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,,3.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,W0732,43.7429406222,-79.5009610922,304707.169,4844553.048
-890282,4154263,2017.0,2020.0,1967.0,PRIVATE,7,Humber River-Black Creek,25 STONG CRT,14,151,2020-10-16,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,W0725,43.7615247984,-79.5177662952,303354.08,4846617.84
-890283,4154265,2017.0,2020.0,1969.0,PRIVATE,7,Humber River-Black Creek,310 NISKA RD,13,167,2020-10-16,76,Evaluation needs to be conducted in 2 years,19,3.0,3.0,3.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,3.0,,W0725,43.7651648539,-79.5094578761,304023.11699999997,4847022.12
-890284,4156430,2017.0,2020.0,1972.0,TCHC,7,Humber River-Black Creek,7 ARLETA AVE,4,201,2020-10-16,65,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,2.0,4.0,5.0,4.0,3.0,4.0,3.0,4.0,3.0,3.0,W0732,43.7420099966,-79.5008716177,304714.372,4844449.658
-890285,4288282,2018.0,2020.0,2017.0,PRIVATE,7,Humber River-Black Creek,2 VENA WAY,29,272,2020-10-15,99,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,W0728,,,301457.184,4845294.472
-890286,4154641,2017.0,2020.0,1969.0,PRIVATE,6,York Centre,12 GOLDFINCH CRT,12,143,2020-10-15,72,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,2.0,2.0,5.0,3.0,4.0,4.0,4.0,3.0,2.0,5.0,N0624,43.7709438668,-79.45096002390001,308732.646,4847665.256
-890287,4154644,2017.0,2020.0,1964.0,PRIVATE,6,York Centre,11 GOLDFINCH CRT,15,174,2020-10-15,86,Evaluation needs to be conducted in 3 years,20,4.0,4.0,5.0,4.0,4.0,3.0,5.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,5.0,4.0,3.0,4.0,N0624,43.771955665200004,-79.4498156824,308824.70399999997,4847777.717
-890288,4154370,2017.0,2020.0,1958.0,PRIVATE,6,York Centre,23 ANTHONY RD,3,12,2020-10-15,74,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,3.0,4.0,4.0,3.0,3.0,3.0,3.0,,4.0,3.0,,N0632,43.7303067168,-79.4602104154,307990.018,4843150.255
-890289,4288287,2018.0,2020.0,2016.0,PRIVATE,7,Humber River-Black Creek,10 VENA WAY,10,176,2020-10-15,98,Evaluation needs to be conducted in 3 years,19,5.0,5.0,4.0,5.0,5.0,5.0,5.0,4.0,5.0,,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,W0728,,,301509.893,4845429.881
-890290,4156530,2017.0,2020.0,1960.0,PRIVATE,6,York Centre,927-931 WILSON AVE,3,36,2020-10-15,76,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,3.0,4.0,3.0,,4.0,,,3.0,4.0,5.0,3.0,4.0,4.0,,4.0,4.0,,N0632,43.729758711,-79.469616321,307204.644,4843087.433
-890291,4154377,2017.0,2020.0,1960.0,PRIVATE,6,York Centre,933-937 WILSON AVE,3,36,2020-10-15,76,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,4.0,4.0,3.0,,4.0,,,4.0,4.0,5.0,3.0,4.0,3.0,,4.0,3.0,,N0632,43.729552423,-79.47055872199999,307126.804,4843063.258
-890292,4288285,2018.0,2020.0,2016.0,PRIVATE,7,Humber River-Black Creek,6 VENA WAY,10,186,2020-10-15,98,Evaluation needs to be conducted in 3 years,19,5.0,5.0,4.0,5.0,5.0,5.0,5.0,4.0,5.0,,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,W0728,,,301514.49600000004,4845402.6389999995
-890293,4154259,2017.0,2020.0,1984.0,TCHC,7,Humber River-Black Creek,3101 WESTON RD,18,176,2020-10-15,70,Evaluation needs to be conducted in 2 years,20,3.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,5.0,3.0,4.0,3.0,3.0,5.0,4.0,3.0,W0733,43.733312244,-79.537225843,301785.494,4843485.091
-890294,4154378,2017.0,2020.0,1960.0,PRIVATE,6,York Centre,923-925 WILSON AVE,3,23,2020-10-15,76,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,4.0,4.0,3.0,,4.0,,,4.0,4.0,5.0,3.0,4.0,3.0,,4.0,3.0,,N0632,43.729832928,-79.468851985,307285.663,4843110.586
-890295,4154382,2017.0,2020.0,1968.0,PRIVATE,6,York Centre,1277 WILSON AVE,4,80,2020-10-14,69,Evaluation needs to be conducted in 2 years,19,3.0,4.0,5.0,3.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,5.0,3.0,4.0,4.0,2.0,4.0,3.0,,N0631,43.723649067,-79.492914942,305355.071,4842410.858
-890296,4154307,2017.0,2020.0,1954.0,PRIVATE,5,York South-Weston,2423 KEELE ST,3,12,2020-10-14,92,Evaluation needs to be conducted in 3 years,15,4.0,4.0,5.0,5.0,4.0,5.0,,4.0,,,5.0,4.0,5.0,5.0,5.0,5.0,,5.0,4.0,,W0523,43.710785688,-79.4782587773,306536.553,4840981.063
-890297,4154306,2017.0,2020.0,1953.0,PRIVATE,5,York South-Weston,2421 KEELE ST,3,12,2020-10-14,91,Evaluation needs to be conducted in 3 years,15,4.0,4.0,5.0,5.0,4.0,5.0,,4.0,,,5.0,4.0,5.0,4.0,5.0,5.0,,5.0,4.0,,W0523,43.710527185100005,-79.478108176,306548.697,4840952.348
-890298,4154305,2017.0,2020.0,1954.0,PRIVATE,5,York South-Weston,2419 KEELE ST,3,12,2020-10-14,87,Evaluation needs to be conducted in 3 years,15,4.0,4.0,5.0,5.0,4.0,4.0,,4.0,,,5.0,4.0,5.0,3.0,5.0,5.0,,4.0,4.0,,W0523,43.710244385200006,-79.4780441622,306553.864,4840920.932
-890299,4154304,2017.0,2020.0,1950.0,PRIVATE,5,York South-Weston,2417 KEELE ST,3,12,2020-10-14,56,Evaluation needs to be conducted in 1 year,15,3.0,2.0,2.0,2.0,2.0,3.0,,2.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0523,43.7099657266,-79.4779872702,306558.457,4840889.976
-890300,4154451,2017.0,2020.0,1977.0,PRIVATE,6,York Centre,117 WHITBURN CRES,3,61,2020-10-14,86,Evaluation needs to be conducted in 3 years,17,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,,,5.0,4.0,5.0,5.0,4.0,5.0,5.0,3.0,4.0,,N0627,43.7388982847,-79.4917361524,305450.192,4844104.0139999995
-890301,4154452,2017.0,2020.0,1977.0,PRIVATE,6,York Centre,111 WHITBURN CRES,3,46,2020-10-14,87,Evaluation needs to be conducted in 3 years,17,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,,,5.0,4.0,5.0,5.0,5.0,5.0,5.0,3.0,4.0,,N0627,43.738515308400004,-79.4915401712,305465.98,4844061.47
-890302,4154234,2017.0,2020.0,1971.0,PRIVATE,7,Humber River-Black Creek,1825 FINCH AVE W,16,171,2020-10-14,65,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,W0730,43.757886117,-79.511912431,303825.107,4846214.47
-890303,4154418,2017.0,2020.0,1945.0,PRIVATE,6,York Centre,11 CALVINGTON DR,3,11,2020-10-14,66,Evaluation needs to be conducted in 2 years,14,3.0,3.0,1.0,3.0,,4.0,,4.0,,,2.0,3.0,5.0,4.0,3.0,3.0,,4.0,4.0,,N0627,43.733305504300006,-79.48403421270001,306070.686,4843482.777
-890304,4154390,2017.0,2020.0,1971.0,PRIVATE,6,York Centre,1491 WILSON AVE,4,40,2020-10-14,85,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,5.0,,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0631,43.7210593551,-79.5047297893,304403.425,4842122.21
-890305,4154391,,2020.0,1958.0,PRIVATE,6,York Centre,1477 WILSON AVE,4,42,2020-10-14,67,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,3.0,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0631,43.72103021979999,-79.50357048229999,304496.836,4842118.967
-890306,4154584,2017.0,2020.0,1956.0,PRIVATE,6,York Centre,11 ROSSEAU RD,3,11,2020-10-14,81,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,3.0,4.0,,5.0,,4.0,4.0,5.0,5.0,4.0,5.0,3.0,,4.0,3.0,,N0629,43.7424088558,-79.43656791779999,309893.66,4844495.901000001
-890307,4154614,2017.0,2020.0,1950.0,PRIVATE,6,York Centre,1042 SHEPPARD AVE W,4,16,2020-10-14,89,Evaluation needs to be conducted in 3 years,16,5.0,4.0,5.0,4.0,5.0,4.0,,4.0,,,5.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,3.0,,N0624,43.7508224875,-79.46202091970001,307843.201,4845429.41
-890308,4231973,2017.0,2020.0,1960.0,PRIVATE,6,York Centre,1 CANYON AVE,18,202,2020-10-13,82,Evaluation needs to be conducted in 2 years,19,3.0,5.0,5.0,5.0,3.0,5.0,4.0,3.0,5.0,4.0,3.0,4.0,5.0,4.0,4.0,3.0,5.0,4.0,4.0,,N0624,43.7565096904,-79.4367503453,309877.805,4846062.436000001
-890309,4154635,2017.0,2020.0,1959.0,PRIVATE,6,York Centre,1 WILMINGTON AVE,3,11,2020-10-13,76,Evaluation needs to be conducted in 2 years,15,4.0,4.0,3.0,3.0,,4.0,,4.0,,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N0624,43.75301421,-79.451942218,308654.456,4845674.252
-890310,4154413,2017.0,2020.0,1954.0,PRIVATE,6,York Centre,1 WANDLE AVE,3,12,2020-10-13,75,Evaluation needs to be conducted in 2 years,15,4.0,4.0,3.0,3.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,2.0,,N0627,43.7308109846,-79.483724006,306095.721,4843205.654
-890311,4154613,2017.0,2020.0,1960.0,PRIVATE,6,York Centre,10 WILMINGTON AVE,3,39,2020-10-13,73,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,4.0,4.0,,3.0,,,4.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,N0624,43.753111203,-79.453124981,308559.203,4845684.975
-890312,4154598,2017.0,2020.0,1955.0,PRIVATE,6,York Centre,10 ROSSEAU RD,3,11,2020-10-13,77,Evaluation needs to be conducted in 2 years,15,5.0,4.0,5.0,3.0,4.0,4.0,,4.0,,,3.0,4.0,5.0,4.0,4.0,3.0,,3.0,3.0,,N0629,43.7418342537,-79.4371971572,309843.026,4844432.034
-890313,4327367,2018.0,2020.0,1949.0,PRIVATE,6,York Centre,12 ROSSEAU RD,3,11,2020-10-13,81,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,3.0,4.0,4.0,,4.0,,4.0,3.0,4.0,5.0,5.0,4.0,5.0,,4.0,5.0,,N0629,43.742014423,-79.4373039157,309843.087,4844439.041
-890314,4275811,2017.0,2020.0,1960.0,PRIVATE,6,York Centre,10 WYCOMBE RD,3,40,2020-10-13,81,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,,5.0,5.0,3.0,4.0,5.0,4.0,3.0,5.0,4.0,,3.0,3.0,,N0627,43.7432824572,-79.4876757538,305808.244,4844545.228
-890315,4155459,2017.0,2020.0,1968.0,PRIVATE,1,Etobicoke North,2548 KIPLING AVE,7,153,2020-10-11,75,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,3.0,4.0,5.0,,2.0,3.0,,3.0,4.0,5.0,4.0,4.0,4.0,3.0,5.0,4.0,,W0123,43.745263651,-79.58396804600001,298021.44,4844815.616
-890316,4155461,2017.0,2020.0,1960.0,PRIVATE,1,Etobicoke North,1865 MARTIN GROVE RD,12,92,2020-10-11,83,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,5.0,4.0,,3.0,4.0,,4.0,4.0,5.0,5.0,4.0,4.0,,4.0,3.0,,W0123,43.7425445347,-79.5934989026,297253.73699999996,4844513.426
-890317,4155347,2017.0,2020.0,1971.0,PRIVATE,2,Etobicoke Centre,105 LA ROSE AVE,12,180,2020-10-08,71,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,5.0,5.0,4.0,3.0,4.0,2.0,2.0,,W0230,43.685240595500005,-79.5206409439,303120.311,4838143.242
-890318,4155341,2017.0,2020.0,1972.0,PRIVATE,2,Etobicoke Centre,39 RICHVIEW RD,20,234,2020-10-08,82,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,4.0,3.0,5.0,4.0,2.0,5.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,4.0,5.0,W0230,43.684216416999995,-79.51523486100001,303556.136,4838029.357
-890319,4155345,2017.0,2020.0,1979.0,PRIVATE,2,Etobicoke Centre,165 LA ROSE AVE,12,211,2020-10-08,75,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,,3.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,W0230,43.6839794618,-79.5249462549,302773.164,4838003.239
-890320,4155458,2017.0,2020.0,1970.0,PRIVATE,1,Etobicoke North,1901 MARTIN GROVE RD,7,136,2020-10-06,81,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,4.0,3.0,5.0,,2.0,5.0,,3.0,5.0,5.0,5.0,4.0,3.0,5.0,5.0,3.0,,W0123,43.745074163000005,-79.5949238666,297139.297,4844794.585
-890321,4156492,2017.0,2020.0,1974.0,PRIVATE,7,Humber River-Black Creek,235 GOSFORD BLVD,15,131,2020-08-18,74,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,3.0,4.0,3.0,4.0,3.0,4.0,,4.0,4.0,5.0,3.0,5.0,4.0,3.0,3.0,3.0,,W0724,43.770115213000004,-79.522300555,302992.5,4847674.032
-890322,4789395,2020.0,2020.0,2019.0,PRIVATE,3,Etobicoke-Lakeshore,571 PRINCE EDWARD DR N,8,115,2020-08-12,100,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,W0322,43.6601858637,-79.5099928675,303978.29600000003,4835359.585
-890323,4156719,2017.0,2020.0,1900.0,PRIVATE,11,University-Rosedale,359 DAVENPORT RD,4,17,2020-03-13,43,Building Audit,15,3.0,1.0,4.0,2.0,1.0,3.0,,3.0,,,2.0,3.0,2.0,1.0,2.0,1.0,2.0,2.0,,,S1127,,,312666.71,4837037.335
-890324,4520827,2019.0,2020.0,2018.0,TCHC,8,Eglinton-Lawrence,20 ZACHARY CRT,7,77,2020-03-04,97,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,N0823,,,308987.94800000003,4842332.775
-890325,4716349,2020.0,2020.0,1928.0,PRIVATE,19,Beaches-East York,74 HUBBARD BLVD,3,12,2020-03-03,86,Evaluation needs to be conducted in 3 years,14,4.0,4.0,4.0,4.0,4.0,4.0,,5.0,,,4.0,4.0,5.0,5.0,4.0,4.0,,5.0,,,S1942,43.6691053883,-79.2911282812,321628.376,4836371.393
-890326,4716071,2020.0,2020.0,1972.0,PRIVATE,7,Humber River-Black Creek,10 YORKWOODS GT,10,58,2020-02-25,66,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,3.0,3.0,3.0,2.0,3.0,,3.0,4.0,5.0,3.0,3.0,2.0,4.0,4.0,4.0,,W0730,43.751648415,-79.51339292899999,303705.771,4845521.521000001
-890327,4620278,2019.0,2020.0,1929.0,PRIVATE,9,Davenport,915 ST CLAIR AVE W,3,18,2020-01-23,69,Evaluation needs to be conducted in 2 years,14,4.0,3.0,5.0,4.0,3.0,3.0,,3.0,,,4.0,4.0,2.0,3.0,4.0,3.0,,3.0,,,S0928,43.679681068,-79.43394643100001,310109.912,4837528.266
-890328,4706289,,2020.0,,PRIVATE,19,Beaches-East York,15 HUBBARD BLVD,3,17,2020-01-23,74,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,4.0,3.0,3.0,,4.0,,,4.0,3.0,5.0,3.0,4.0,4.0,,3.0,,,S1942,43.667990229,-79.2933921123,321446.125,4836247.048
-890329,4156108,2017.0,2020.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,2525 LAKE SHORE BLVD W,3,34,2020-01-17,84,Evaluation needs to be conducted in 2 years,15,4.0,4.0,3.0,5.0,4.0,5.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,5.0,,W0336,43.6103321169,-79.4890126716,305671.224,4829821.083000001
-890330,4155496,2017.0,2020.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,2543 LAKE SHORE BLVD W,3,55,2020-01-17,76,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,3.0,,3.0,,,3.0,3.0,5.0,4.0,4.0,3.0,,4.0,5.0,,W0336,43.6095054646,-79.4897087235,305615.04600000003,4829729.24
-890331,4156250,2017.0,2020.0,1964.0,TCHC,13,Toronto Centre,295 SHUTER ST,16,300,2020-01-16,65,Evaluation needs to be conducted in 1 year,19,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,4.0,3.0,S1329,43.65644665600001,-79.36542470100001,315647.841,4834985.943
-890332,4156181,2017.0,2020.0,1964.0,TCHC,13,Toronto Centre,285 SHUTER ST,15,300,2020-01-16,60,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,2.0,3.0,3.0,2.0,3.0,3.0,,3.0,4.0,2.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,S1329,43.65586332,-79.366647156,315513.091,4834942.867
-890333,4155468,2017.0,2020.0,1994.0,TCHC,1,Etobicoke North,900 QUEENS PLATE DR,16,204,2020-01-16,71,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,2.0,3.0,3.0,3.0,2.0,5.0,,4.0,4.0,5.0,3.0,3.0,4.0,3.0,4.0,3.0,,W0127,43.720003879,-79.603372534,296449.206,4842001.8610000005
-890334,4697372,2019.0,2019.0,2019.0,PRIVATE,17,Don Valley North,55 SMOOTH ROSE CRT,27,301,2019-12-20,100,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,N1731,,,318235.3,4848061.845
-890335,4654253,2019.0,2019.0,2019.0,PRIVATE,12,Toronto-St. Paul's,15 ROEHAMPTON AVE,36,466,2019-12-18,100,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,5.0,,5.0,5.0,5.0,5.0,,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,S1221,,,313015.722,4840671.054
-890336,4154126,2017.0,2019.0,1961.0,PRIVATE,14,Toronto-Danforth,85 GAMBLE AVE,6,81,2019-12-17,86,Evaluation needs to be conducted in 3 years,18,3.0,4.0,5.0,4.0,5.0,4.0,4.0,5.0,5.0,,3.0,5.0,5.0,4.0,4.0,5.0,3.0,4.0,5.0,,S1421,43.6898006862,-79.35088605039999,316805.327,4838660.223
-890337,4155874,,2019.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,5 BIRCHLEA AVE,3,13,2019-12-13,76,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,3.0,4.0,3.0,,4.0,,,4.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,,W0334,43.592642046,-79.527957262,302531.131,4827854.897
-890338,4261157,,2019.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,103 SIXTEENTH ST,3,10,2019-12-13,55,Evaluation needs to be conducted in 1 year,15,2.0,3.0,4.0,2.0,2.0,2.0,,2.0,,,2.0,2.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0335,43.6028075946,-79.5164885645,303453.266,4828985.195
-890339,4506270,,2019.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,11 BIRCHLEA AVE,3,13,2019-12-12,63,Evaluation needs to be conducted in 1 year,13,3.0,3.0,4.0,3.0,,3.0,,3.0,,,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,W0334,43.592573631,-79.528276577,302501.80199999997,4827845.661
-890340,4171348,,2019.0,1937.0,PRIVATE,8,Eglinton-Lawrence,3488 YONGE ST,3,22,2019-12-12,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,3.0,,N0825,43.7351428526,-79.405176606,312422.962,4843691.145
-890341,4154708,2020.0,2019.0,,PRIVATE,18,Willowdale,2 ANCONA ST,4,32,2019-12-12,49,Building Audit,17,2.0,2.0,2.0,2.0,2.0,3.0,,2.0,2.0,,2.0,3.0,5.0,2.0,2.0,3.0,3.0,3.0,2.0,,N1822,43.774991309700006,-79.43941526399999,309661.717,4848115.5139999995
-890342,4155241,,2019.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,183 BERRY RD,4,50,2019-12-12,64,Evaluation needs to be conducted in 1 year,17,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,2.0,3.0,2.0,4.0,3.0,3.0,4.0,3.0,4.0,3.0,,W0329,43.636390118,-79.4911570627,305497.797,4832715.966
-890343,4153161,,2019.0,1926.0,PRIVATE,9,Davenport,1121 BLOOR ST W,4,11,2019-12-12,50,Building Audit,14,2.0,2.0,3.0,2.0,,2.0,,2.0,,,2.0,2.0,3.0,3.0,3.0,3.0,,3.0,3.0,,S0934,43.659766697799995,-79.4348680192,310037.689,4835314.866
-890344,4154439,,2019.0,1954.0,PRIVATE,6,York Centre,2988 KEELE ST,3,11,2019-12-12,49,Building Audit,16,2.0,2.0,3.0,2.0,2.0,3.0,,3.0,,3.0,3.0,2.0,2.0,2.0,2.0,3.0,,3.0,2.0,,N0627,43.736204601000004,-79.484886345,306001.724,4843805.791999999
-890345,4154437,,2019.0,1954.0,PRIVATE,6,York Centre,2994 KEELE ST,4,12,2019-12-12,70,Evaluation needs to be conducted in 2 years,16,3.0,4.0,3.0,4.0,3.0,4.0,,4.0,,3.0,3.0,3.0,5.0,3.0,4.0,3.0,,4.0,3.0,,N0627,43.736711483,-79.48501293,305991.518,4843862.101
-890346,4153465,,2019.0,1907.0,PRIVATE,11,University-Rosedale,481 PALMERSTON BLVD,3,11,2019-12-12,59,Evaluation needs to be conducted in 1 year,15,3.0,4.0,3.0,4.0,2.0,4.0,,4.0,,,2.0,2.0,5.0,2.0,3.0,1.0,3.0,2.0,,,S1133,43.6621199142,-79.4122665445,311860.32,4835577.963
-890347,4155273,,2019.0,1961.0,PRIVATE,3,Etobicoke-Lakeshore,28 RIVERWOOD PKWY,7,58,2019-12-12,65,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,2.0,,W0327,43.6393299361,-79.4902695407,305569.433,4833042.572
-890348,4154957,2017.0,2019.0,1947.0,PRIVATE,12,Toronto-St. Paul's,113 VAUGHAN RD,3,12,2019-12-12,72,Evaluation needs to be conducted in 2 years,13,3.0,4.0,4.0,4.0,,4.0,,3.0,,,3.0,4.0,5.0,3.0,4.0,3.0,,3.0,,,S1229,43.684381110699995,-79.4210952142,311145.925,4838050.37
-890349,4153597,2017.0,2019.0,1923.0,PRIVATE,13,Toronto Centre,214 WELLESLEY ST E,3,38,2019-12-12,80,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,3.0,4.0,4.0,,3.0,4.0,,S1323,43.6677644838,-79.3730310131,315023.82,4836209.126
-890350,4153038,2020.0,2019.0,1890.0,PRIVATE,4,Parkdale-High Park,1340 KING ST W,4,16,2019-12-12,50,Building Audit,14,2.0,2.0,3.0,2.0,2.0,2.0,,3.0,,,2.0,2.0,3.0,3.0,3.0,3.0,,3.0,,,S0436,43.6379541614,-79.43303340050001,310187.598,4832891.726
-890351,4153235,,2019.0,1918.0,PRIVATE,11,University-Rosedale,661 HURON ST,3,15,2019-12-12,67,Evaluation needs to be conducted in 2 years,14,4.0,3.0,2.0,4.0,,4.0,,4.0,,,3.0,4.0,5.0,3.0,3.0,3.0,,2.0,3.0,,S1127,43.674829239,-79.40427079199999,312503.317,4836991.544
-890352,4155207,,2019.0,1955.0,PRIVATE,4,Parkdale-High Park,585 JANE ST,4,25,2019-12-12,77,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,3.0,4.0,4.0,,4.0,,,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S0422,43.6645529032,-79.4903043858,305566.283,4835844.669
-890353,4495076,,2019.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,7 BIRCHLEA AVE,3,13,2019-12-12,66,Evaluation needs to be conducted in 2 years,13,3.0,4.0,4.0,3.0,,3.0,,3.0,,,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,,,W0334,43.592625398,-79.528050439,302525.459,4827853.1110000005
-890354,4153974,2017.0,2019.0,1952.0,PRIVATE,8,Eglinton-Lawrence,2515 BATHURST ST,11,114,2019-12-12,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,,N0833,43.705627508599996,-79.4260651529,310743.22,4840410.462
-890355,4154275,2017.0,2019.0,1960.0,PRIVATE,7,Humber River-Black Creek,25 DUNCANWOODS DR,11,148,2019-12-12,75,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,,W0722,43.7496851095,-79.55739159,300162.561,4845304.0030000005
-890356,4154533,,2019.0,1956.0,PRIVATE,8,Eglinton-Lawrence,88 NEPTUNE DR,3,11,2019-12-12,65,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,N0823,43.732494717,-79.4377218694,309801.528,4843394.458000001
-890357,4154502,,2019.0,,PRIVATE,8,Eglinton-Lawrence,89 NEPTUNE DR,3,11,2019-12-12,62,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,2.0,3.0,4.0,3.0,3.0,3.0,,N0823,43.731805189700005,-79.4379426197,309783.803,4843317.843
-890358,4154689,,2019.0,1953.0,PRIVATE,6,York Centre,4089 BATHURST ST,3,10,2019-12-11,54,Evaluation needs to be conducted in 1 year,16,2.0,3.0,3.0,2.0,3.0,3.0,,3.0,,2.0,2.0,3.0,5.0,2.0,2.0,2.0,,3.0,3.0,,N0630,43.7451902224,-79.4355554925,309974.977,4844804.968
-890359,4153766,,2019.0,1956.0,PRIVATE,12,Toronto-St. Paul's,25 DAVISVILLE AVE,4,14,2019-12-11,76,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,4.0,3.0,4.0,,3.0,,4.0,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S1233,43.6982817517,-79.3955853975,313200.678,4839596.99
-890360,4152727,2017.0,2019.0,1970.0,PRIVATE,21,Scarborough Centre,1 ANTRIM CRES,12,167,2019-12-11,86,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,3.0,3.0,5.0,5.0,4.0,4.0,4.0,3.0,5.0,3.0,,E2123,43.7706671849,-79.2834762458,322216.1,4847656.036
-890361,4232801,2017.0,2019.0,1989.0,PRIVATE,21,Scarborough Centre,4 ANTRIM CRES,10,65,2019-12-11,87,Evaluation needs to be conducted in 3 years,18,4.0,4.0,5.0,5.0,4.0,5.0,5.0,3.0,4.0,,4.0,5.0,5.0,4.0,4.0,4.0,5.0,5.0,3.0,,E2123,43.7717770023,-79.2843647481,322144.253,4847779.143
-890362,4152726,2017.0,2019.0,1971.0,PRIVATE,21,Scarborough Centre,11 ANTRIM CRES,12,167,2019-12-11,85,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,5.0,3.0,3.0,5.0,5.0,4.0,4.0,4.0,5.0,5.0,3.0,,E2123,43.7707832946,-79.28436739029999,322144.325,4847668.7469999995
-890363,4152729,2017.0,2019.0,1971.0,PRIVATE,21,Scarborough Centre,20 ANTRIM CRES,13,177,2019-12-11,88,Evaluation needs to be conducted in 3 years,20,5.0,4.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,4.0,4.0,5.0,5.0,4.0,3.0,4.0,3.0,5.0,3.0,5.0,E2123,43.772055504399994,-79.2853142425,322067.73600000003,4847809.886
-890364,4152725,2017.0,2019.0,1974.0,PRIVATE,21,Scarborough Centre,41 ANTRIM CRES,14,192,2019-12-11,82,Evaluation needs to be conducted in 2 years,20,5.0,4.0,5.0,4.0,3.0,5.0,4.0,3.0,5.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,3.0,5.0,3.0,5.0,E2123,43.771912238999995,-79.287922032,321852.127,4847784.8889999995
-890365,4152771,2017.0,2019.0,1971.0,PRIVATE,21,Scarborough Centre,126 BELLAMY RD N,16,253,2019-12-11,56,Evaluation needs to be conducted in 1 year,19,2.0,3.0,4.0,3.0,2.0,3.0,2.0,3.0,3.0,3.0,2.0,3.0,4.0,3.0,3.0,3.0,3.0,2.0,2.0,,E2136,43.742426479799995,-79.2319698725,326372.76300000004,4844530.666999999
-890366,4153785,2017.0,2019.0,1964.0,PRIVATE,12,Toronto-St. Paul's,55 BROWNLOW AVE,15,121,2019-12-11,78,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,5.0,4.0,,4.0,3.0,5.0,4.0,4.0,4.0,3.0,3.0,3.0,,S1228,43.7066788107,-79.3906195508,313599.755,4840530.4180000005
-890367,4153404,2017.0,2019.0,1923.0,TCHC,10,Spadina-Fort York,11 SULLIVAN ST,3,17,2019-12-11,76,Evaluation needs to be conducted in 2 years,14,4.0,4.0,5.0,3.0,3.0,4.0,,3.0,,,4.0,4.0,5.0,3.0,4.0,4.0,,3.0,,,S1024,43.6514274301,-79.3935632279,313370.31899999996,4834391.822
-890368,4155115,,2019.0,1956.0,PRIVATE,5,York South-Weston,9 GREENTREE CRT,3,28,2019-12-11,50,Building Audit,14,2.0,2.0,2.0,2.0,2.0,4.0,,2.0,,,2.0,3.0,4.0,3.0,2.0,2.0,,3.0,,,W0532,43.692147125299996,-79.4794625352,306440.017,4838910.374
-890369,4153781,2017.0,2019.0,1963.0,PRIVATE,12,Toronto-St. Paul's,44 DUNFIELD AVE,15,162,2019-12-11,86,Evaluation needs to be conducted in 3 years,16,5.0,4.0,5.0,4.0,4.0,4.0,,5.0,4.0,5.0,3.0,4.0,5.0,4.0,4.0,5.0,,4.0,,,S1228,43.705600128,-79.39522102800001,313228.789,4840411.062
-890370,4153407,2017.0,2019.0,1993.0,TCHC,10,Spadina-Fort York,76 GRANGE AVE,3,11,2019-12-11,84,Evaluation needs to be conducted in 2 years,14,5.0,4.0,5.0,4.0,,4.0,,3.0,,,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,,,S1024,43.652192629,-79.39678805300001,313100.214,4834501.899
-890371,4153406,2017.0,2019.0,1993.0,TCHC,10,Spadina-Fort York,15 LARCH ST,3,20,2019-12-11,85,Evaluation needs to be conducted in 2 years,15,4.0,5.0,5.0,4.0,,5.0,,3.0,,,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1024,43.652655724,-79.39647886,313134.686,4834528.914
-890372,4152867,2017.0,2019.0,1967.0,PRIVATE,22,Scarborough-Agincourt,2237 BIRCHMOUNT RD,5,44,2019-12-10,89,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,3.0,5.0,5.0,5.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,,E2232,43.77963856270001,-79.2967399834,321145.885,4848650.017
-890373,4153913,2017.0,2019.0,1982.0,PRIVATE,12,Toronto-St. Paul's,5 MALLORY GDNS,11,60,2019-12-10,76,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,4.0,4.0,,5.0,5.0,,4.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,4.0,,S1232,43.69068475,-79.395885257,313177.321,4838753.869
-890374,4152869,2017.0,2019.0,1979.0,PRIVATE,22,Scarborough-Agincourt,2249 BIRCHMOUNT RD,5,40,2019-12-10,91,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,5.0,4.0,4.0,4.0,5.0,5.0,,5.0,3.0,5.0,5.0,5.0,4.0,4.0,5.0,4.0,,E2232,43.7803171542,-79.29699468310001,321125.2,4848725.356000001
-890375,4153825,2017.0,2019.0,1963.0,PRIVATE,12,Toronto-St. Paul's,75 BROADWAY AVE,10,205,2019-12-10,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1221,43.709951708999995,-79.394607069,313277.659,4840894.571
-890376,4152855,2017.0,2019.0,1973.0,PRIVATE,22,Scarborough-Agincourt,100 SPRUCEWOOD CRT,15,206,2019-12-10,87,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,5.0,,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2225,43.79434019560001,-79.3239937212,318948.686,4850278.35
-890377,4286259,2017.0,2019.0,1980.0,TCHC,10,Spadina-Fort York,127 ST PATRICK ST,12,54,2019-12-10,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,4.0,,S1024,43.653809036999995,-79.38976073,313653.128,4834726.461
-890378,4152866,2017.0,2019.0,1978.0,PRIVATE,22,Scarborough-Agincourt,125 BAMBURGH CRCL,20,332,2019-12-10,93,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,5.0,4.0,5.0,4.0,4.0,5.0,,4.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,4.0,5.0,E2221,43.8130997118,-79.325615359,318813.837,4852362.223
-890379,4285976,2017.0,2019.0,1992.0,TCHC,9,Davenport,55 RANKIN CRES,9,176,2019-12-10,83,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,S0929,43.658277925,-79.446387674,309108.405,4835149.791999999
-890380,4155604,2017.0,2019.0,1961.0,TCHC,13,Toronto Centre,320 SEATON ST,6,25,2019-12-10,69,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,3.0,2.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,,S1323,43.662525313,-79.371459917,315151.16,4835628.239
-890381,4153604,2017.0,2019.0,1929.0,PRIVATE,14,Toronto-Danforth,569 BROADVIEW AVE,4,48,2019-12-10,76,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,,4.0,3.0,3.0,5.0,3.0,4.0,4.0,,3.0,,,S1428,43.6724718142,-79.3550560331,316472.52,4836734.465
-890382,4153608,2017.0,2019.0,1972.0,TCHC,14,Toronto-Danforth,717 BROADVIEW AVE,8,69,2019-12-10,83,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,3.0,5.0,4.0,5.0,,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,S1428,43.6751635121,-79.3574685355,316277.466,4837033.163
-890383,4286226,2017.0,2019.0,1956.0,PRIVATE,12,Toronto-St. Paul's,55 BROADWAY AVE,4,59,2019-12-10,53,Evaluation needs to be conducted in 1 year,19,3.0,2.0,4.0,2.0,3.0,3.0,4.0,1.0,3.0,1.0,2.0,3.0,5.0,2.0,2.0,2.0,,2.0,3.0,3.0,S1221,43.709662021999996,-79.39547702899999,313207.59,4840862.3
-890384,4152864,2017.0,2019.0,1974.0,PRIVATE,22,Scarborough-Agincourt,10 BRIDLETOWNE CRCL,14,175,2019-12-10,87,Evaluation needs to be conducted in 3 years,18,4.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,,4.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,,E2225,43.795556032,-79.318124141,319420.479,4850415.385
-890385,4152853,2017.0,2019.0,1970.0,PRIVATE,22,Scarborough-Agincourt,20 CHICHESTER PL,14,189,2019-12-10,90,Evaluation needs to be conducted in 3 years,20,5.0,4.0,5.0,4.0,5.0,4.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,3.0,5.0,5.0,3.0,3.0,5.0,5.0,E2225,43.777312321000004,-79.321766948,319131.65,4848387.9180000005
-890386,4153480,2017.0,2019.0,1994.0,SOCIAL HOUSING,13,Toronto Centre,84 CARLTON ST,12,154,2019-12-10,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,3.0,,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,S1326,43.6622405151,-79.3787026496,314567.32,4835594.787
-890387,4153473,2017.0,2019.0,1988.0,SOCIAL HOUSING,13,Toronto Centre,172 CARLTON ST,4,25,2019-12-10,74,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,,,3.0,2.0,5.0,4.0,3.0,4.0,,4.0,,4.0,S1326,43.663437478999995,-79.373585563,314979.567,4835729.313999999
-890388,4153799,2017.0,2019.0,1989.0,PRIVATE,12,Toronto-St. Paul's,77 ROEHAMPTON AVE,11,81,2019-12-10,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1221,43.708135683,-79.396161299,313152.656,4840692.662
-890389,4153826,2017.0,2019.0,1961.0,PRIVATE,12,Toronto-St. Paul's,100 ROEHAMPTON AVE,14,211,2019-12-10,79,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,3.0,3.0,4.0,4.0,S1221,43.709038236000005,-79.395336521,313219.001,4840793.0139999995
-890390,4152865,2017.0,2019.0,1974.0,PRIVATE,22,Scarborough-Agincourt,3050 PHARMACY AVE,18,252,2019-12-10,91,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,,4.0,4.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,5.0,E2221,43.7955806314,-79.3274423479,318670.875,4850415.581
-890391,4263113,2017.0,2019.0,1970.0,PRIVATE,17,Don Valley North,642 SHEPPARD AVE E,19,126,2019-12-10,78,Evaluation needs to be conducted in 2 years,20,5.0,3.0,5.0,3.0,3.0,5.0,5.0,3.0,5.0,3.0,3.0,3.0,5.0,3.0,4.0,5.0,4.0,3.0,3.0,5.0,N1725,43.76917685,-79.3827164,314226.606,4847475.368
-890392,4152872,2017.0,2019.0,1975.0,TCHC,22,Scarborough-Agincourt,3825 SHEPPARD AVE E,13,300,2019-12-10,91,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,4.0,5.0,3.0,5.0,5.0,5.0,,5.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,3.0,5.0,E2232,43.782025088199994,-79.291608709,321558.25899999996,4848916.183999999
-890393,4152873,2017.0,2019.0,1969.0,PRIVATE,22,Scarborough-Agincourt,3845 SHEPPARD AVE E,10,106,2019-12-10,79,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,3.0,5.0,4.0,3.0,3.0,5.0,,4.0,3.0,5.0,5.0,4.0,3.0,4.0,4.0,3.0,3.0,E2232,43.7821007086,-79.2907139042,321630.25899999996,4848924.767
-890394,4152874,2017.0,2019.0,1960.0,PRIVATE,22,Scarborough-Agincourt,3875 SHEPPARD AVE E,14,154,2019-12-10,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,3.0,3.0,4.0,4.0,5.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,,E2232,43.78254283689999,-79.28975127529999,321707.615,4848974.0819999995
-890395,4153605,2017.0,2019.0,1931.0,PRIVATE,14,Toronto-Danforth,9 TENNIS CRES,4,54,2019-12-10,74,Evaluation needs to be conducted in 2 years,16,2.0,4.0,5.0,3.0,4.0,4.0,,4.0,,4.0,4.0,3.0,5.0,3.0,4.0,4.0,,3.0,3.0,,S1428,43.6726051315,-79.35424759920001,316537.683,4836749.3889999995
-890396,4155327,2017.0,2019.0,1966.0,PRIVATE,2,Etobicoke Centre,289 THE KINGSWAY,17,73,2019-12-10,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,4.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,W0229,43.6631991618,-79.5195385532,303208.49100000004,4835694.511
-890397,4153478,2017.0,2019.0,1995.0,TCHC,13,Toronto Centre,330 JARVIS ST,10,82,2019-12-10,86,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,5.0,,3.0,3.0,4.0,5.0,5.0,4.0,,5.0,3.0,4.0,S1326,43.6625963867,-79.37709964310001,314696.547,4835634.501
-890398,4155717,2017.0,2019.0,1975.0,SOCIAL HOUSING,22,Scarborough-Agincourt,3333 FINCH AVE E,6,297,2019-12-10,86,Evaluation needs to be conducted in 3 years,18,4.0,4.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,,4.0,5.0,5.0,4.0,4.0,4.0,,4.0,4.0,5.0,E2225,43.796093308900005,-79.3168137535,319537.83,4850443.82
-890399,4167686,2017.0,2019.0,1960.0,PRIVATE,21,Scarborough Centre,2356 EGLINTON AVE E,5,70,2019-12-10,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,5.0,,4.0,4.0,4.0,3.0,5.0,5.0,3.0,4.0,3.0,4.0,5.0,3.0,,E2133,43.7318415798,-79.2729961142,323071.57300000003,4843344.916
-890400,4152868,2017.0,2019.0,1974.0,PRIVATE,22,Scarborough-Agincourt,2241 BIRCHMOUNT RD,5,27,2019-12-10,87,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,5.0,5.0,4.0,3.0,5.0,4.0,,4.0,3.0,5.0,5.0,4.0,3.0,4.0,5.0,4.0,,E2232,43.7799731788,-79.2968150642,321139.751,4848687.177
-890401,4154035,2017.0,2019.0,1960.0,PRIVATE,19,Beaches-East York,102 GOODWOOD PARK CRT,7,132,2019-12-09,96,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,,S1930,43.695541815,-79.296047547,321224.249,4839308.335
-890402,4154034,2017.0,2019.0,1960.0,PRIVATE,19,Beaches-East York,104 GOODWOOD PARK CRT,7,122,2019-12-09,96,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,,S1930,43.695428453000005,-79.295514265,321267.267,4839295.845
-890403,4156383,2017.0,2019.0,1961.0,PRIVATE,19,Beaches-East York,106 GOODWOOD PARK CRT,7,129,2019-12-09,92,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,5.0,4.0,5.0,3.0,4.0,5.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,,S1930,43.695029178,-79.294709895,321332.216,4839251.643
-890404,4153951,2017.0,2019.0,1957.0,PRIVATE,8,Eglinton-Lawrence,564 EGLINTON AVE W,5,25,2019-12-09,66,Evaluation needs to be conducted in 2 years,16,3.0,3.0,2.0,3.0,3.0,3.0,,3.0,3.0,,4.0,4.0,5.0,4.0,3.0,3.0,3.0,4.0,,,N0833,43.7031541679,-79.4167347676,311495.469,4840136.385
-890405,4154808,2017.0,2019.0,1974.0,PRIVATE,17,Don Valley North,75 HAVENBROOK BLVD,14,201,2019-12-09,72,Evaluation needs to be conducted in 2 years,20,4.0,3.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,5.0,N1730,43.7682616864,-79.348101055,317013.924,4847377.263
-890406,4155756,,2019.0,1927.0,PRIVATE,12,Toronto-St. Paul's,6 PINEWOOD AVE,3,11,2019-12-09,44,Building Audit,14,2.0,3.0,1.0,2.0,,3.0,,3.0,,,2.0,2.0,5.0,1.0,1.0,2.0,2.0,2.0,,,S1229,43.682454983,-79.425041007,310827.715,4837837.046
-890407,4154973,,2019.0,1925.0,PRIVATE,12,Toronto-St. Paul's,8 PINEWOOD AVE,3,11,2019-12-09,48,Building Audit,15,2.0,3.0,3.0,2.0,2.0,3.0,,3.0,,,2.0,2.0,5.0,1.0,2.0,2.0,2.0,2.0,,,S1229,43.682584046,-79.425180892,310816.424,4837851.375
-890408,4155513,2017.0,2019.0,1967.0,PRIVATE,3,Etobicoke-Lakeshore,2 ROYAL YORK RD,6,60,2019-12-09,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,3.0,,3.0,3.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,3.0,5.0,4.0,,W0335,43.6027168332,-79.4930979742,305341.50800000003,4828975.031
-890409,4154243,2017.0,2019.0,2008.0,TCHC,7,Humber River-Black Creek,1900 SHEPPARD AVE W,4,27,2019-12-09,71,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,3.0,2.0,3.0,3.0,2.0,3.0,,3.0,4.0,5.0,4.0,4.0,4.0,,5.0,4.0,3.0,W0732,43.740025128,-79.509714967,304001.81,4844230.158
-890410,4153798,2017.0,2019.0,1928.0,PRIVATE,12,Toronto-St. Paul's,63 ROEHAMPTON AVE,4,56,2019-12-09,57,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,3.0,2.0,,2.0,,,2.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,S1221,43.708035598,-79.396523762,313123.458,4840681.507
-890411,4156036,2017.0,2019.0,1996.0,SOCIAL HOUSING,14,Toronto-Danforth,17 RENWICK CRES,4,80,2019-12-09,74,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,3.0,3.0,3.0,3.0,2.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,,,S1441,43.66049693,-79.33653651899999,317958.359,4835419.239
-890412,4154157,2017.0,2019.0,1966.0,PRIVATE,15,Don Valley West,75 THORNCLIFFE PARK DR,17,308,2019-12-09,62,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,4.0,3.0,3.0,3.0,5.0,3.0,2.0,2.0,3.0,4.0,4.0,,N1533,43.705284648,-79.341449141,317562.511,4840382.789
-890413,4155288,2017.0,2019.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,186 STEPHEN DR,5,48,2019-12-09,88,Evaluation needs to be conducted in 3 years,18,4.0,5.0,3.0,5.0,4.0,5.0,,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,5.0,5.0,5.0,5.0,,W0327,43.640530203000004,-79.488846855,305685.065,4833173.273
-890414,4153726,2017.0,2019.0,1992.0,SOCIAL HOUSING,19,Beaches-East York,20 TRENT AVE,8,111,2019-12-09,82,Evaluation needs to be conducted in 2 years,19,3.0,3.0,3.0,5.0,5.0,5.0,5.0,5.0,5.0,,3.0,3.0,2.0,5.0,5.0,3.0,5.0,5.0,3.0,5.0,S1933,43.688688452,-79.296041897,321226.558,4838546.955
-890415,4233372,2017.0,2019.0,1975.0,PRIVATE,12,Toronto-St. Paul's,40 SOUDAN AVE,14,66,2019-12-09,96,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,5.0,5.0,,5.0,4.0,,S1228,43.704941409499995,-79.3965572814,313121.445,4840336.79
-890416,4156296,2017.0,2019.0,1963.0,PRIVATE,12,Toronto-St. Paul's,33 HOLLY ST,14,162,2019-12-09,85,Evaluation needs to be conducted in 2 years,16,5.0,4.0,5.0,4.0,4.0,4.0,,5.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,S1228,,,313151.623,4840442.969
-890417,4156163,2017.0,2019.0,1967.0,PRIVATE,12,Toronto-St. Paul's,50 HOLLY ST,15,145,2019-12-09,80,Evaluation needs to be conducted in 2 years,18,4.0,5.0,4.0,4.0,,3.0,4.0,4.0,4.0,,3.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,S1228,43.7058910324,-79.3966825426,313111.219,4840442.282
-890418,4153779,2017.0,2019.0,1993.0,SOCIAL HOUSING,12,Toronto-St. Paul's,78 HOLLY ST,16,127,2019-12-09,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,4.0,4.0,5.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1228,43.7063503756,-79.3969151981,313092.405,4840493.291
-890419,4154202,2017.0,2019.0,1954.0,PRIVATE,15,Don Valley West,894 EGLINTON AVE E,4,44,2019-12-09,80,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,3.0,,3.0,,4.0,5.0,4.0,5.0,4.0,4.0,3.0,5.0,4.0,4.0,,N1529,43.71415005,-79.3634434361,315788.515,4841363.6280000005
-890420,4154109,2017.0,2019.0,1992.0,SOCIAL HOUSING,14,Toronto-Danforth,156 FLOYD AVE,6,41,2019-12-09,90,Evaluation needs to be conducted in 3 years,20,4.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,S1421,43.6876986854,-79.3490675447,316952.351,4838426.955
-890421,4153804,2017.0,2019.0,1972.0,TCHC,12,Toronto-St. Paul's,220 EGLINTON AVE E,10,99,2019-12-09,66,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,2.0,3.0,3.0,,4.0,3.0,,2.0,4.0,3.0,4.0,4.0,4.0,,4.0,3.0,,S1221,43.7083967721,-79.391625027,313518.471,4840721.175
-890422,4154119,2017.0,2019.0,1966.0,PRIVATE,14,Toronto-Danforth,100 GOWAN AVE,17,121,2019-12-09,84,Evaluation needs to be conducted in 2 years,20,5.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,5.0,S1421,43.6883007663,-79.3508994916,316804.549,4838493.588
-890423,4154036,2017.0,2019.0,1956.0,PRIVATE,19,Beaches-East York,100 GOODWOOD PARK CRT,6,102,2019-12-09,94,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,,S1930,43.695437477,-79.296720543,321156.91,4839298.146000001
-890424,4265057,2017.0,2019.0,1970.0,PRIVATE,19,Beaches-East York,2575 DANFORTH AVE,23,335,2019-12-09,82,Evaluation needs to be conducted in 2 years,19,5.0,3.0,5.0,3.0,3.0,5.0,3.0,3.0,5.0,5.0,3.0,4.0,4.0,5.0,4.0,5.0,5.0,5.0,3.0,,S1933,43.688201388500005,-79.3003203967,320882.019,4838491.074
-890425,4153751,,2019.0,1955.0,PRIVATE,11,University-Rosedale,171 ST CLAIR AVE E,4,36,2019-12-09,63,Evaluation needs to be conducted in 1 year,19,3.0,3.0,5.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,,S1121,43.689555816,-79.38601833050001,313973.18100000004,4838628.565
-890426,4154065,2017.0,2019.0,1950.0,PRIVATE,19,Beaches-East York,2908 ST CLAIR AVE E,4,31,2019-12-09,87,Evaluation needs to be conducted in 3 years,15,3.0,4.0,5.0,4.0,4.0,5.0,,3.0,,,5.0,5.0,5.0,5.0,4.0,5.0,,5.0,3.0,,S1924,43.708358407,-79.30116720550001,320808.442,4840730.288
-890427,4154075,2017.0,2019.0,1967.0,PRIVATE,19,Beaches-East York,195 BARRINGTON AVE,17,250,2019-12-09,86,Evaluation needs to be conducted in 3 years,19,4.0,3.0,5.0,4.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,,S1930,43.694879113,-79.302941491,320674.674,4839242.938999999
-890428,4154006,2017.0,2019.0,1961.0,PRIVATE,8,Eglinton-Lawrence,1112 AVENUE RD,4,13,2019-12-09,76,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,3.0,4.0,,3.0,,,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,,N0833,43.70828783899999,-79.4106432574,311985.80600000004,4840707.244
-890429,4154111,2017.0,2019.0,1962.0,PRIVATE,14,Toronto-Danforth,25 COSBURN AVE,22,129,2019-12-09,72,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,2.0,4.0,4.0,3.0,4.0,4.0,,2.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1421,43.6881435504,-79.3536043403,316586.531,4838475.75
-890430,4154130,2017.0,2019.0,1965.0,PRIVATE,14,Toronto-Danforth,50 COSBURN AVE,12,173,2019-12-09,74,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,5.0,2.0,3.0,4.0,2.0,3.0,2.0,,S1421,43.6891373921,-79.3519022582,316723.54600000003,4838586.397
-890431,4154129,2017.0,2019.0,1970.0,PRIVATE,14,Toronto-Danforth,80 COSBURN AVE,15,84,2019-12-09,85,Evaluation needs to be conducted in 2 years,19,4.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,,S1421,43.689297081999996,-79.35092508449999,316802.284,4838604.27
-890432,4154115,2017.0,2019.0,1960.0,PRIVATE,14,Toronto-Danforth,101 COSBURN AVE,10,73,2019-12-09,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,5.0,3.0,2.0,,S1421,43.688951922200005,-79.3496273223,316906.969,4838566.103999999
-890433,4153727,2017.0,2019.0,1994.0,SOCIAL HOUSING,19,Beaches-East York,62 DAWES RD,4,14,2019-12-09,75,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,5.0,3.0,5.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,3.0,,3.0,5.0,,S1930,43.6901517338,-79.29715496109999,321136.691,4838708.346
-890434,4156573,2017.0,2019.0,1964.0,PRIVATE,12,Toronto-St. Paul's,18 BROWNLOW AVE,19,185,2019-12-06,92,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,4.0,4.0,4.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,4.0,5.0,S1228,43.706425160500004,-79.3912717139,313547.231,4840502.17
-890435,4153579,2017.0,2019.0,1891.0,SOCIAL HOUSING,13,Toronto Centre,434 GERRARD ST E,3,16,2019-12-05,77,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,3.0,4.0,4.0,,3.0,,,3.0,4.0,5.0,3.0,5.0,4.0,,4.0,,,S1327,43.663410889,-79.361416269,315961.044,4835727.915
-890436,4154070,2017.0,2019.0,1950.0,PRIVATE,19,Beaches-East York,189 CEDARVALE AVE,6,78,2019-12-05,94,Evaluation needs to be conducted in 3 years,18,5.0,5.0,4.0,5.0,5.0,4.0,,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,,S1929,43.689396815,-79.3119405791,319944.937,4838621.723
-890437,4274443,2017.0,2019.0,1950.0,SOCIAL HOUSING,19,Beaches-East York,1845 GERRARD ST E,3,20,2019-12-05,75,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,3.0,3.0,4.0,,4.0,,,3.0,4.0,5.0,3.0,4.0,4.0,,3.0,,5.0,S1934,43.6789313612,-79.3134909905,319822.568,4837458.76
-890438,4153724,2017.0,2019.0,1991.0,TCHC,19,Beaches-East York,2390 GERRARD ST E,4,16,2019-12-05,69,Evaluation needs to be conducted in 2 years,15,4.0,3.0,2.0,3.0,3.0,3.0,,4.0,,,4.0,3.0,5.0,4.0,4.0,4.0,,3.0,3.0,,S1933,43.686322989,-79.29028370399999,321691.453,4838285.303
-890439,4244521,2017.0,2019.0,1969.0,PRIVATE,19,Beaches-East York,255 MAIN ST,9,128,2019-12-05,83,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,4.0,4.0,5.0,3.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,3.0,5.0,4.0,3.0,,S1933,43.687299065,-79.300651307,320855.31899999996,4838391.723
-890440,4244523,2017.0,2019.0,1970.0,PRIVATE,19,Beaches-East York,265 MAIN ST,24,293,2019-12-05,82,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,3.0,4.0,5.0,3.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,3.0,5.0,4.0,3.0,,S1933,43.687784182,-79.299964232,320910.583,4838445.746
-890441,4244526,2017.0,2019.0,1971.0,PRIVATE,19,Beaches-East York,275 MAIN ST,29,324,2019-12-05,84,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,3.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,3.0,5.0,4.0,3.0,,S1933,43.687596199,-79.301189477,320811.852,4838424.633
-890442,4153930,2017.0,2019.0,1957.0,PRIVATE,12,Toronto-St. Paul's,21 LASCELLES BLVD,17,173,2019-12-05,91,Evaluation needs to be conducted in 3 years,20,4.0,4.0,5.0,4.0,4.0,5.0,4.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,3.0,5.0,S1232,43.6953413778,-79.3971554349,313074.538,4839270.164
-890443,4286044,2017.0,2019.0,1969.0,TCHC,19,Beaches-East York,444 EAST LUMSDEN,25,183,2019-12-05,58,Evaluation needs to be conducted in 1 year,19,2.0,2.0,4.0,2.0,3.0,4.0,2.0,2.0,3.0,,3.0,4.0,2.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,S1930,43.695391787,-79.303315109,320711.637,4839312.69
-890444,4156316,2017.0,2019.0,1969.0,TCHC,19,Beaches-East York,444 LUMSDEN AVE,42,183,2019-12-05,58,Evaluation needs to be conducted in 1 year,19,2.0,2.0,4.0,2.0,3.0,4.0,2.0,2.0,3.0,,3.0,4.0,2.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,S1930,43.695629657,-79.302310982,320791.011,4839337.097
-890445,4153709,2017.0,2019.0,1974.0,PRIVATE,19,Beaches-East York,50 MAIN ST,5,38,2019-12-05,72,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,4.0,4.0,5.0,3.0,3.0,4.0,3.0,3.0,3.0,,S1935,43.6802370284,-79.2987777122,321008.536,4837606.565
-890446,4155704,2017.0,2019.0,1994.0,SOCIAL HOUSING,19,Beaches-East York,656 KINGSTON RD,6,106,2019-12-05,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,5.0,S1936,43.679168172,-79.297693338,321095.995,4837488.989
-890447,4153721,2017.0,2019.0,1971.0,PRIVATE,19,Beaches-East York,700 KINGSTON RD,7,38,2019-12-05,68,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,3.0,3.0,,3.0,3.0,,3.0,3.0,5.0,3.0,2.0,4.0,4.0,4.0,2.0,,S1936,43.679427643000004,-79.296686038,321177.143,4837518.012
-890448,4153722,2017.0,2019.0,1962.0,TCHC,19,Beaches-East York,828 KINGSTON RD,7,147,2019-12-05,82,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,5.0,4.0,4.0,3.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,S1936,43.6805240722,-79.2921137026,321545.77,4837639.768
-890449,4264078,2017.0,2019.0,1970.0,PRIVATE,19,Beaches-East York,6 KINGSTON RD,3,16,2019-12-05,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,3.0,4.0,5.0,3.0,3.0,3.0,,4.0,3.0,,S1937,43.667917593999995,-79.31255405,319902.465,4836237.652
-890450,4154056,2017.0,2019.0,1971.0,PRIVATE,19,Beaches-East York,2 PARK VISTA,11,121,2019-12-05,87,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,4.0,5.0,4.0,,4.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1927,43.698083902700006,-79.3005296419,320862.542,4839588.937
-890451,4154055,2017.0,2019.0,1971.0,PRIVATE,19,Beaches-East York,6 PARK VISTA,10,108,2019-12-05,83,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,4.0,4.0,5.0,5.0,3.0,4.0,4.0,5.0,4.0,4.0,5.0,S1927,43.698310468900004,-79.2983347125,321039.405,4839614.522
-890452,4154057,2017.0,2019.0,1971.0,PRIVATE,19,Beaches-East York,7 PARK VISTA,8,84,2019-12-05,88,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,3.0,5.0,5.0,,4.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,5.0,S1927,43.697893112399996,-79.298058957,321061.744,4839568.208000001
-890453,4154054,2017.0,2019.0,1971.0,PRIVATE,19,Beaches-East York,8 PARK VISTA,8,56,2019-12-05,89,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,5.0,5.0,,4.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,S1927,43.6985479321,-79.2974887076,321107.534,4839641.066000001
-890454,4153667,2017.0,2019.0,1920.0,PRIVATE,19,Beaches-East York,83 SILVER BIRCH AVE,4,16,2019-12-05,79,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,3.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,,,S1942,43.6728223924,-79.284874358,322131.64,4836785.607
-890455,4156247,2017.0,2019.0,1920.0,PRIVATE,19,Beaches-East York,85 SILVER BIRCH AVE,4,16,2019-12-05,76,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,4.0,,3.0,,3.0,,,4.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,,,S1942,43.672975190900004,-79.2849229366,322127.679,4836802.572
-890456,4154050,2017.0,2019.0,1965.0,PRIVATE,19,Beaches-East York,195 REXLEIGH DR,6,106,2019-12-05,86,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,4.0,5.0,3.0,,4.0,5.0,3.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,5.0,3.0,,S1927,43.704991699,-79.305610532,320450.958,4840356.382
-890457,4255508,2018.0,2019.0,1955.0,PRIVATE,19,Beaches-East York,55 LEE AVE,3,12,2019-12-05,78,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,4.0,3.0,3.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,2.0,,S1942,43.669187773999994,-79.29715548600001,321142.042,4836380.305
-890458,4156631,2017.0,2019.0,1970.0,PRIVATE,19,Beaches-East York,75 HALSEY AVE,11,139,2019-12-05,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1927,43.6991544673,-79.2978100309,321081.471,4839708.388
-890459,4155587,2017.0,2019.0,1969.0,TCHC,4,Parkdale-High Park,100 HIGH PARK AVE,24,447,2019-12-05,68,Evaluation needs to be conducted in 2 years,20,4.0,3.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,3.0,2.0,3.0,5.0,3.0,4.0,4.0,2.0,4.0,3.0,3.0,S0428,43.656567829,-79.4673846716,307415.157,4834958.018
-890460,4155197,2017.0,2019.0,1973.0,PRIVATE,5,York South-Weston,890 JANE ST,15,146,2019-12-05,75,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,4.0,,5.0,3.0,5.0,3.0,4.0,4.0,4.0,2.0,3.0,,W0534,43.6765889645,-79.49634895770001,305078.753,4837181.778
-890461,4153715,2017.0,2019.0,1958.0,PRIVATE,19,Beaches-East York,474 KINGSTON RD,4,38,2019-12-05,82,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,,4.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1935,43.6776882643,-79.3033656117,320639.297,4837322.513
-890462,4153689,2017.0,2019.0,1958.0,PRIVATE,19,Beaches-East York,485 KINGSTON RD,9,115,2019-12-05,81,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1938,43.6770057778,-79.3030883867,320661.82899999997,4837246.744
-890463,4153690,2018.0,2019.0,1950.0,PRIVATE,19,Beaches-East York,501 KINGSTON RD,7,75,2019-12-05,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,4.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,,S1938,,,320697.34,4837263.304
-890464,4153714,2017.0,2019.0,1992.0,TCHC,19,Beaches-East York,520 KINGSTON RD,5,108,2019-12-05,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,S1935,43.67824727,-79.302446163,320713.024,4837385.748
-890465,4153713,2017.0,2019.0,1954.0,TCHC,19,Beaches-East York,530 KINGSTON RD,3,90,2019-12-05,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,3.0,4.0,4.0,4.0,4.0,,3.0,4.0,5.0,3.0,4.0,3.0,4.0,3.0,4.0,,S1935,43.678265378999996,-79.301899491,320757.097,4837387.866
-890466,4153712,2017.0,2019.0,1985.0,SOCIAL HOUSING,19,Beaches-East York,550 KINGSTON RD,7,138,2019-12-05,74,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,4.0,,3.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,S1935,43.678459126999996,-79.30145580199999,320792.82,4837409.477
-890467,4153684,2017.0,2019.0,1961.0,PRIVATE,19,Beaches-East York,191 KENILWORTH AVE,4,31,2019-12-05,78,Evaluation needs to be conducted in 2 years,19,4.0,5.0,5.0,3.0,3.0,3.0,4.0,4.0,4.0,3.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1938,43.6721092112,-79.3028387259,320683.239,4836702.795
-890468,4153680,2017.0,2019.0,1959.0,SOCIAL HOUSING,19,Beaches-East York,136 KINGSTON RD,4,94,2019-12-05,76,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,3.0,,3.0,,,4.0,4.0,5.0,4.0,4.0,3.0,3.0,3.0,4.0,,S1937,43.6707253488,-79.3116255888,319975.034,4836547.4180000005
-890469,4153677,2017.0,2019.0,1960.0,PRIVATE,19,Beaches-East York,158 KINGSTON RD,4,44,2019-12-05,74,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,4.0,3.0,3.0,,3.0,,3.0,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,,S1937,43.6712621487,-79.3112236755,320007.309,4836607.1280000005
-890470,4153711,2017.0,2019.0,1957.0,PRIVATE,19,Beaches-East York,600 KINGSTON RD,8,68,2019-12-05,75,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,,3.0,4.0,3.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,,S1935,43.6788159908,-79.29970751409999,320933.94899999996,4837448.512
-890471,4154078,2017.0,2019.0,1974.0,PRIVATE,19,Beaches-East York,75 EASTDALE AVE,15,235,2019-12-05,87,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,3.0,,S1930,43.6951670415,-79.30034635199999,320878.089,4839264.916
-890472,4154076,2017.0,2019.0,1969.0,PRIVATE,19,Beaches-East York,90 EASTDALE AVE,24,383,2019-12-05,83,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,,5.0,5.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,,S1930,43.6946110438,-79.3012502948,320805.368,4839202.978
-890473,4155755,2017.0,2019.0,1970.0,SOCIAL HOUSING,19,Beaches-East York,17 EDGEWOOD AVE,3,30,2019-12-05,71,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,4.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,S1937,43.670270654300005,-79.31262684810001,319894.407,4836496.722
-890474,4153675,2017.0,2019.0,1959.0,SOCIAL HOUSING,19,Beaches-East York,23 EDGEWOOD AVE,4,24,2019-12-05,70,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,3.0,5.0,3.0,,3.0,,,3.0,4.0,5.0,4.0,4.0,3.0,2.0,3.0,3.0,,S1937,43.670497618,-79.313073089,319858.105,4836522.81
-890475,4225861,2017.0,2019.0,1960.0,PRIVATE,19,Beaches-East York,2893 ST CLAIR AVE E,3,12,2019-12-05,95,Evaluation needs to be conducted in 3 years,15,4.0,4.0,5.0,5.0,4.0,5.0,,5.0,,,5.0,5.0,5.0,5.0,4.0,5.0,,5.0,5.0,,S1927,43.7075826149,-79.3019433825,320746.095,4840643.954
-890476,4225867,2017.0,2019.0,1960.0,PRIVATE,19,Beaches-East York,2897 ST CLAIR AVE E,3,12,2019-12-05,92,Evaluation needs to be conducted in 3 years,15,4.0,4.0,5.0,5.0,4.0,5.0,,5.0,,,5.0,5.0,5.0,3.0,4.0,5.0,,5.0,5.0,,S1927,43.7076426726,-79.30166976640001,320768.13,4840650.678
-890477,4153682,2017.0,2019.0,1920.0,PRIVATE,19,Beaches-East York,223 WOODBINE AVE,4,48,2019-12-05,71,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,,,3.0,4.0,4.0,2.0,3.0,4.0,,3.0,3.0,,S1938,43.6694252933,-79.3057875382,320446.145,4836404.056
-890478,4153698,2017.0,2019.0,1977.0,PRIVATE,19,Beaches-East York,650 WOODBINE AVE,4,38,2019-12-05,97,Evaluation needs to be conducted in 3 years,15,5.0,5.0,5.0,5.0,5.0,5.0,,5.0,,,5.0,5.0,5.0,4.0,5.0,5.0,,4.0,5.0,,S1934,43.6782886904,-79.31013244270001,320093.528,4837387.965
-890479,4153717,2017.0,2019.0,1987.0,SOCIAL HOUSING,19,Beaches-East York,751 WOODBINE AVE,5,97,2019-12-05,74,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,5.0,3.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,,S1935,43.680524762,-79.3102839398,320080.74600000004,4837636.366
-890480,4154071,2017.0,2019.0,1970.0,PRIVATE,19,Beaches-East York,1017 WOODBINE AVE,6,59,2019-12-05,88,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,5.0,5.0,4.0,,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,3.0,4.0,,S1929,43.687147508100004,-79.3130882633,319852.972,4838371.631
-890481,4155950,2018.0,2019.0,1953.0,PRIVATE,19,Beaches-East York,5 STAG HILL DR,4,15,2019-12-05,83,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,4.0,3.0,5.0,,3.0,,4.0,4.0,5.0,5.0,4.0,4.0,5.0,,5.0,4.0,,S1927,43.703301636999996,-79.310988273,319989.443,4840181.688999999
-890482,4156176,2018.0,2019.0,1953.0,PRIVATE,19,Beaches-East York,7 STAG HILL DR,4,37,2019-12-05,85,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,4.0,4.0,5.0,,3.0,,4.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,5.0,4.0,,S1927,43.703054654,-79.310513888,320053.882,4840170.906
-890483,4156031,2017.0,2019.0,1965.0,PRIVATE,19,Beaches-East York,165 BARRINGTON AVE,19,265,2019-12-05,82,Evaluation needs to be conducted in 2 years,19,5.0,5.0,5.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,5.0,3.0,3.0,,S1930,,,320678.849,4839169.774
-890484,4153708,2017.0,2019.0,1960.0,PRIVATE,19,Beaches-East York,5 BENLAMOND AVE,5,55,2019-12-05,89,Evaluation needs to be conducted in 3 years,16,5.0,5.0,5.0,5.0,4.0,3.0,,4.0,5.0,,5.0,5.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S1935,43.680379606,-79.29940111239999,320958.234,4837622.283
-890485,4288787,2017.0,2019.0,1920.0,PRIVATE,19,Beaches-East York,2405 QUEEN ST E,3,23,2019-12-05,56,Evaluation needs to be conducted in 1 year,14,2.0,2.0,2.0,3.0,3.0,3.0,,3.0,,,2.0,2.0,5.0,4.0,2.0,2.0,,4.0,,,S1942,43.6726998751,-79.2858734346,322051.11,4836771.791
-890486,4154101,2017.0,2019.0,1962.0,PRIVATE,14,Toronto-Danforth,150 COSBURN AVE,12,153,2019-12-05,77,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,3.0,4.0,3.0,4.0,4.0,,4.0,3.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,,S1422,43.6902830528,-79.3461159995,317189.748,4838714.494
-890487,4153704,2017.0,2019.0,1993.0,TCHC,19,Beaches-East York,7 COATSWORTH CRES,6,48,2019-12-05,96,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,5.0,S1931,43.6797322246,-79.32170592060001,319160.021,4837546.268999999
-890488,4153705,2017.0,2019.0,1989.0,SOCIAL HOUSING,19,Beaches-East York,11 COATSWORTH CRES,6,174,2019-12-05,88,Evaluation needs to be conducted in 3 years,19,4.0,4.0,5.0,4.0,4.0,3.0,4.0,5.0,5.0,,5.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,5.0,S1931,43.678997338,-79.32113629199999,319209.196,4837481.659
-890489,4153674,2017.0,2019.0,1995.0,SOCIAL HOUSING,19,Beaches-East York,123 COXWELL AVE,3,13,2019-12-05,79,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,,3.0,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,4.0,,S1937,43.6698161288,-79.3176657334,319488.188,4836445.326
-890490,4153702,2017.0,2019.0,2002.0,SOCIAL HOUSING,19,Beaches-East York,425 COXWELL AVE,3,30,2019-12-05,87,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,,S1934,43.67748516899999,-79.320862391,319224.36600000004,4837313.075
-890491,4153701,2017.0,2019.0,1960.0,PRIVATE,19,Beaches-East York,1636 GERRARD ST E,6,48,2019-12-05,77,Evaluation needs to be conducted in 2 years,18,5.0,5.0,4.0,3.0,3.0,4.0,,4.0,4.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,2.0,2.0,,S1934,43.67596288399999,-79.319872249,319308.507,4837128.786
-890492,4153640,2017.0,2019.0,1965.0,PRIVATE,14,Toronto-Danforth,1395 GERRARD ST E,3,12,2019-12-04,77,Evaluation needs to be conducted in 2 years,14,3.0,3.0,5.0,3.0,4.0,4.0,,4.0,,,3.0,5.0,5.0,3.0,3.0,4.0,,5.0,,,S1439,43.671597433100004,-79.32409735819999,318969.114,4836642.1219999995
-890493,4154038,2017.0,2019.0,1959.0,PRIVATE,19,Beaches-East York,540 DAWES RD,4,43,2019-12-04,82,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,5.0,4.0,,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,,S1927,43.705971488500005,-79.2960157018,321224.25,4840466.096
-890494,4153632,2017.0,2019.0,1993.0,TCHC,14,Toronto-Danforth,29 LOUVAIN AVE,4,51,2019-12-04,66,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,4.0,4.0,4.0,3.0,3.0,,,S1435,43.662543937399995,-79.3369204531,317937.063,4835634.227
-890495,4154084,2017.0,2019.0,1957.0,PRIVATE,14,Toronto-Danforth,470 MORTIMER AVE,4,42,2019-12-04,86,Evaluation needs to be conducted in 3 years,17,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,5.0,4.0,5.0,5.0,3.0,4.0,5.0,4.0,5.0,4.0,,S1426,43.6897638166,-79.33204735609999,318323.973,4838658.984
-890496,4154049,2018.0,2019.0,1959.0,PRIVATE,19,Beaches-East York,608 DAWES RD,6,84,2019-12-04,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,3.0,1.0,2.0,3.0,5.0,2.0,3.0,4.0,4.0,3.0,4.0,,S1927,43.706994795,-79.295836771,321238.131,4840580.773
-890497,4153633,2017.0,2019.0,1993.0,SOCIAL HOUSING,14,Toronto-Danforth,1070 QUEEN ST E,5,177,2019-12-04,74,Evaluation needs to be conducted in 2 years,20,3.0,4.0,5.0,3.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,S1435,43.6620660934,-79.3367847076,317948.115,4835581.161
-890498,4153626,2017.0,2019.0,1995.0,TCHC,14,Toronto-Danforth,1167 QUEEN ST E,5,40,2019-12-04,67,Evaluation needs to be conducted in 2 years,18,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,3.0,,S1441,43.6624909475,-79.3328836483,318262.632,4835628.983
-890499,4153637,2017.0,2019.0,1990.0,SOCIAL HOUSING,14,Toronto-Danforth,1480 QUEEN ST E,4,25,2019-12-04,78,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,,,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,,4.0,S1439,43.66557523,-79.321020795,319218.38899999997,4835974.545
-890500,4154069,2017.0,2019.0,1960.0,PRIVATE,19,Beaches-East York,970 O'CONNOR DR,6,56,2019-12-04,77,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,,S1921,43.7085449111,-79.3110644083,320010.786,4840749.181
-890501,4152605,2017.0,2019.0,1962.0,PRIVATE,20,Scarborough Southwest,1055 VICTORIA PARK AVE,6,52,2019-12-04,86,Evaluation needs to be conducted in 3 years,17,4.0,4.0,4.0,5.0,5.0,4.0,,4.0,4.0,,4.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,,E2028,43.706720954,-79.294444552,321350.405,4840550.624
-890502,4288800,2017.0,2019.0,1920.0,PRIVATE,19,Beaches-East York,82 WILLOW AVE,3,18,2019-12-04,51,Evaluation needs to be conducted in 1 year,14,3.0,2.0,3.0,3.0,3.0,2.0,,2.0,,,3.0,2.0,5.0,2.0,2.0,2.0,,2.0,,,S1942,43.672483295,-79.28654496829999,321997.02,4836747.592
-890503,4153648,2017.0,2019.0,1989.0,TCHC,14,Toronto-Danforth,39 HARCOURT AVE,3,15,2019-12-04,80,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,,4.0,S1429,43.677145636800006,-79.34450560149999,317322.303,4837255.226
-890504,4155881,2017.0,2019.0,1954.0,PRIVATE,14,Toronto-Danforth,65 A HILLSIDE DR,4,71,2019-12-04,88,Evaluation needs to be conducted in 3 years,16,5.0,5.0,4.0,5.0,5.0,5.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S1421,43.6897018875,-79.3561857803,316378.13300000003,4838648.53
-890505,4154138,2017.0,2019.0,1953.0,PRIVATE,14,Toronto-Danforth,68 HILLSIDE DR,4,44,2019-12-04,85,Evaluation needs to be conducted in 2 years,15,5.0,4.0,4.0,4.0,5.0,4.0,,5.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S1421,43.689440320600006,-79.3567711725,316330.99600000004,4838619.393
-890506,4153620,2017.0,2019.0,1989.0,SOCIAL HOUSING,14,Toronto-Danforth,970 EASTERN AVE,4,14,2019-12-04,73,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,,,4.0,3.0,5.0,3.0,4.0,4.0,4.0,4.0,,4.0,S1442,43.663675162,-79.321078637,319214.185,4835763.44
-890507,4153610,2017.0,2019.0,1965.0,PRIVATE,14,Toronto-Danforth,33 EASTMOUNT AVE,24,200,2019-12-04,83,Evaluation needs to be conducted in 2 years,20,4.0,5.0,5.0,4.0,4.0,4.0,4.0,2.0,5.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,5.0,S1424,43.67900365770001,-79.3612885228,315968.75800000003,4837459.273
-890508,4154123,2017.0,2019.0,1960.0,PRIVATE,14,Toronto-Danforth,51 GAMBLE AVE,6,49,2019-12-04,68,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,3.0,3.0,2.0,,3.0,3.0,,3.0,3.0,5.0,3.0,4.0,5.0,3.0,3.0,4.0,,S1421,43.6895687051,-79.35205503590001,316711.144,4838634.294
-890509,4154124,2017.0,2019.0,1955.0,PRIVATE,14,Toronto-Danforth,65 GAMBLE AVE,6,48,2019-12-04,82,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,3.0,,5.0,5.0,3.0,3.0,4.0,4.0,5.0,4.0,5.0,5.0,3.0,4.0,,S1421,43.689657175,-79.3516154158,316746.563,4838644.181
-890510,4154125,2017.0,2019.0,1958.0,PRIVATE,14,Toronto-Danforth,69 GAMBLE AVE,4,33,2019-12-04,92,Evaluation needs to be conducted in 3 years,17,5.0,4.0,5.0,4.0,5.0,5.0,,5.0,,5.0,5.0,5.0,5.0,4.0,4.0,5.0,5.0,3.0,4.0,,S1421,43.6897044101,-79.3512503162,316775.983,4838649.477
-890511,4154047,2017.0,2019.0,1962.0,PRIVATE,19,Beaches-East York,11 GLENBURN AVE,6,58,2019-12-04,81,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,5.0,,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,S1927,43.7071746852,-79.2972112317,321127.57399999996,4840599.535
-890512,4154108,2017.0,2019.0,1960.0,PRIVATE,14,Toronto-Danforth,15 BATER AVE,3,34,2019-12-04,75,Evaluation needs to be conducted in 2 years,15,4.0,4.0,2.0,4.0,4.0,4.0,,4.0,,,4.0,2.0,5.0,3.0,4.0,4.0,,4.0,4.0,,S1421,43.6867361824,-79.3548678509,316484.95,4838319.22
-890513,4154110,2018.0,2019.0,1927.0,PRIVATE,14,Toronto-Danforth,12 BATER AVE,4,50,2019-12-04,76,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,5.0,4.0,,4.0,,,4.0,4.0,5.0,2.0,4.0,4.0,4.0,2.0,3.0,,S1421,43.6870714875,-79.3548247563,316488.358,4838356.478
-890514,4154091,2017.0,2019.0,1965.0,PRIVATE,14,Toronto-Danforth,175 COSBURN AVE,4,30,2019-12-04,73,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,3.0,4.0,,3.0,,,4.0,3.0,5.0,3.0,4.0,4.0,3.0,4.0,2.0,,S1422,43.689958951499996,-79.3450906815,317272.466,4838678.636
-890515,4154092,2017.0,2019.0,1960.0,PRIVATE,14,Toronto-Danforth,185 COSBURN AVE,6,37,2019-12-04,62,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,1.0,,3.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,,S1422,43.6899387618,-79.3447178819,317302.522,4838676.447
-890516,4154095,2017.0,2019.0,1959.0,PRIVATE,14,Toronto-Danforth,190 COSBURN AVE,6,47,2019-12-04,76,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,4.0,4.0,4.0,,4.0,5.0,4.0,4.0,3.0,5.0,4.0,3.0,3.0,3.0,4.0,3.0,,S1422,43.6904180968,-79.3451955874,317263.914,4838729.63
-890517,4154097,2017.0,2019.0,1968.0,PRIVATE,14,Toronto-Danforth,210 COSBURN AVE,4,33,2019-12-04,62,Evaluation needs to be conducted in 1 year,17,2.0,3.0,4.0,2.0,3.0,3.0,,3.0,,2.0,3.0,3.0,5.0,3.0,3.0,3.0,4.0,4.0,3.0,,S1422,43.690544653,-79.3443418655,317332.707,4838743.813999999
-890518,4156380,2017.0,2019.0,1965.0,PRIVATE,14,Toronto-Danforth,225 COSBURN AVE,8,95,2019-12-04,93,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,4.0,5.0,3.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,,S1422,43.690315438999995,-79.343198376,317415.325,4838715.468
-890519,4154081,2017.0,2019.0,1968.0,PRIVATE,19,Beaches-East York,1501 WOODBINE AVE,20,304,2019-12-04,78,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,4.0,4.0,5.0,4.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,,S1926,43.6999168963,-79.3180366606,319450.968,4839789.37
-890520,4153662,2017.0,2019.0,1975.0,PRIVATE,19,Beaches-East York,2263 QUEEN ST E,3,18,2019-12-04,55,Evaluation needs to be conducted in 1 year,13,3.0,3.0,4.0,3.0,,2.0,,3.0,,,3.0,2.0,4.0,2.0,3.0,2.0,,2.0,,,S1942,43.6710986709,-79.2938756588,321406.268,4836592.298
-890521,4153665,2017.0,2019.0,1940.0,SOCIAL HOUSING,19,Beaches-East York,2363 QUEEN ST E,4,20,2019-12-04,78,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,,4.0,S1942,43.6721680178,-79.2886764155,321825.23699999996,4836712.125
-890522,4153621,2017.0,2019.0,1995.0,SOCIAL HOUSING,14,Toronto-Danforth,137 SEARS ST,3,17,2019-12-04,79,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,3.0,4.0,3.0,4.0,3.0,,,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,,4.0,S1442,43.66303924899999,-79.32501186,318897.114,4835692.138
-890523,4154077,2017.0,2019.0,1971.0,PRIVATE,19,Beaches-East York,2 SECORD AVE,22,303,2019-12-04,89,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,,4.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,3.0,5.0,S1930,43.693121262,-79.301596009,320864.623,4839066.34
-890524,4153612,2017.0,2019.0,1950.0,PRIVATE,14,Toronto-Danforth,818 BROADVIEW AVE,3,31,2019-12-04,59,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,2.0,2.0,3.0,,3.0,,,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,S1424,43.678055685,-79.3589018471,316161.359,4837354.28
-890525,4153616,2017.0,2019.0,1940.0,PRIVATE,14,Toronto-Danforth,849 BROADVIEW AVE,4,32,2019-12-04,77,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,4.0,3.0,4.0,,3.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,,,S1424,43.6794139167,-79.35783854,316246.839,4837505.327
-890526,4154140,2017.0,2019.0,1971.0,PRIVATE,14,Toronto-Danforth,1010 BROADVIEW AVE,20,109,2019-12-04,83,Evaluation needs to be conducted in 2 years,19,5.0,5.0,5.0,4.0,5.0,5.0,3.0,5.0,4.0,,3.0,5.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,4.0,S1421,43.683273425,-79.357525834,316271.068,4837935.107
-890527,4154132,2017.0,2019.0,1970.0,PRIVATE,14,Toronto-Danforth,1175 BROADVIEW AVE,12,134,2019-12-04,84,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,3.0,5.0,3.0,3.0,4.0,5.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,5.0,,S1421,43.689041600799996,-79.3545084305,316513.471,4838575.397
-890528,4154103,2017.0,2019.0,1950.0,PRIVATE,14,Toronto-Danforth,120 COSBURN AVE,6,57,2019-12-04,84,Evaluation needs to be conducted in 2 years,18,5.0,5.0,5.0,4.0,3.0,4.0,,4.0,3.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,S1422,43.6898605522,-79.3481479034,317026.043,4838667.263
-890529,4154087,2017.0,2019.0,1960.0,PRIVATE,14,Toronto-Danforth,125 COSBURN AVE,4,30,2019-12-04,91,Evaluation needs to be conducted in 3 years,16,4.0,5.0,5.0,5.0,5.0,4.0,,5.0,,,4.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,,S1422,43.6895024674,-79.34701978390001,317117.055,4838627.642
-890530,4154102,2017.0,2019.0,1956.0,PRIVATE,14,Toronto-Danforth,130 COSBURN AVE,6,48,2019-12-04,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,4.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1422,43.689964771999996,-79.3476769455,317063.98600000003,4838678.909
-890531,4154088,2017.0,2019.0,1965.0,PRIVATE,14,Toronto-Danforth,145 COSBURN AVE,14,82,2019-12-04,93,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,5.0,5.0,4.0,,5.0,5.0,,4.0,4.0,5.0,4.0,4.0,5.0,5.0,4.0,5.0,,S1422,43.689573373500004,-79.3465420209,317155.553,4838635.589
-890532,4154089,2017.0,2019.0,1958.0,PRIVATE,14,Toronto-Danforth,149 COSBURN AVE,4,29,2019-12-04,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,2.0,3.0,3.0,3.0,,2.0,,,4.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,,S1422,43.6896822346,-79.3460278101,317196.981,4838647.758
-890533,4154090,2017.0,2019.0,1950.0,PRIVATE,14,Toronto-Danforth,165 COSBURN AVE,6,83,2019-12-04,68,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,3.0,3.0,4.0,,4.0,4.0,4.0,3.0,4.0,4.0,2.0,3.0,3.0,3.0,3.0,2.0,,S1422,43.6897704258,-79.345544715,317235.905,4838657.626
-890534,4153658,2017.0,2019.0,1988.0,TCHC,14,Toronto-Danforth,1275 DANFORTH AVE,4,109,2019-12-04,86,Evaluation needs to be conducted in 3 years,20,4.0,4.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,3.0,5.0,5.0,5.0,4.0,3.0,5.0,5.0,4.0,3.0,S1432,43.68123553310001,-79.3299329034,318496.368,4837711.867
-890535,4154098,2017.0,2019.0,1959.0,PRIVATE,14,Toronto-Danforth,240 COSBURN AVE,6,38,2019-12-04,87,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,4.0,5.0,4.0,,4.0,5.0,5.0,4.0,5.0,5.0,3.0,4.0,3.0,5.0,3.0,5.0,,S1422,43.690777348999994,-79.34338942859999,317409.437,4838769.805
-890536,4155750,2017.0,2019.0,2004.0,SOCIAL HOUSING,14,Toronto-Danforth,243 COSBURN AVE,6,32,2019-12-04,91,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,5.0,5.0,5.0,5.0,,5.0,5.0,,S1422,43.690484690699996,-79.3423832041,317490.61199999996,4838737.441000001
-890537,4153638,2017.0,2019.0,1989.0,SOCIAL HOUSING,14,Toronto-Danforth,126 COXWELL AVE,4,14,2019-12-04,85,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,,,4.0,5.0,5.0,4.0,4.0,4.0,5.0,5.0,,,S1439,43.6697394508,-79.318269183,319439.544,4836436.702
-890538,4166942,2017.0,2019.0,1967.0,PRIVATE,14,Toronto-Danforth,50 CAMBRIDGE AVE,21,275,2019-12-04,82,Evaluation needs to be conducted in 2 years,19,5.0,5.0,5.0,4.0,4.0,3.0,4.0,3.0,5.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,S1424,43.6775380937,-79.36035851140001,316044.00399999996,4837296.578
-890539,4166944,2017.0,2019.0,1967.0,PRIVATE,14,Toronto-Danforth,70 CAMBRIDGE AVE,21,275,2019-12-04,83,Evaluation needs to be conducted in 2 years,19,5.0,5.0,5.0,5.0,4.0,3.0,4.0,3.0,5.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,S1424,43.678116007,-79.3607869844,316009.354,4837360.726
-890540,4279693,2017.0,2019.0,1952.0,PRIVATE,19,Beaches-East York,332 CHISHOLM AVE,3,12,2019-12-04,67,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,4.0,4.0,,4.0,4.0,,S1926,43.697292581099994,-79.3074870563,320325.566,4839501.516
-890541,4154051,2017.0,2019.0,1970.0,SOCIAL HOUSING,19,Beaches-East York,418 DAWES RD,5,49,2019-12-04,64,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,3.0,3.0,,2.0,3.0,,3.0,3.0,4.0,4.0,3.0,3.0,,4.0,3.0,3.0,S1927,43.7013834487,-79.29755669640001,321101.292,4839956.069
-890542,4154085,2017.0,2019.0,2012.0,SOCIAL HOUSING,14,Toronto-Danforth,270 DONLANDS AVE,8,44,2019-12-04,94,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,,4.0,5.0,5.0,5.0,5.0,5.0,,5.0,5.0,5.0,S1422,43.690105216400006,-79.3416209783,317552.137,4838695.398
-890543,4154044,2018.0,2019.0,1966.0,PRIVATE,19,Beaches-East York,500 DAWES RD,14,305,2019-12-04,47,Building Audit,18,2.0,3.0,2.0,2.0,2.0,3.0,2.0,2.0,3.0,,1.0,3.0,3.0,2.0,3.0,3.0,2.0,2.0,2.0,,S1927,43.703305875,-79.29817492800001,321050.685,4840170.484
-890544,4154043,2017.0,2019.0,1958.0,PRIVATE,19,Beaches-East York,506 DAWES RD,4,67,2019-12-04,87,Evaluation needs to be conducted in 3 years,17,4.0,5.0,5.0,4.0,5.0,4.0,,4.0,5.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,,S1927,43.703984006000006,-79.297455687,321108.472,4840245.962
-890545,4154042,2017.0,2019.0,1959.0,PRIVATE,19,Beaches-East York,508 DAWES RD,4,66,2019-12-04,67,Evaluation needs to be conducted in 2 years,17,3.0,4.0,4.0,3.0,2.0,3.0,,3.0,3.0,,3.0,4.0,5.0,3.0,3.0,3.0,4.0,4.0,3.0,,S1927,43.704145763,-79.298173276,321151.291,4840256.044
-890546,4154039,2017.0,2019.0,1953.0,PRIVATE,19,Beaches-East York,516 DAWES RD,4,46,2019-12-04,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,2.0,3.0,,3.0,,,3.0,3.0,4.0,3.0,3.0,3.0,4.0,4.0,3.0,,S1927,43.7048505726,-79.2968176488,321159.922,4840341.406
-890547,4288768,2017.0,2019.0,1967.0,SOCIAL HOUSING,14,Toronto-Danforth,444 LOGAN AVE,22,159,2019-12-04,64,Evaluation needs to be conducted in 1 year,19,3.0,3.0,5.0,3.0,3.0,3.0,2.0,2.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,S1434,43.665362780500004,-79.3448533882,317296.687,4835946.155
-890548,4153462,2017.0,2019.0,1970.0,TCHC,13,Toronto Centre,423 YONGE ST,20,340,2019-12-03,61,Evaluation needs to be conducted in 1 year,19,3.0,4.0,4.0,2.0,4.0,3.0,3.0,3.0,2.0,3.0,2.0,4.0,1.0,3.0,3.0,3.0,,3.0,4.0,4.0,S1328,43.6602721446,-79.3823063131,314276.997,4835375.715
-890549,4167698,2017.0,2019.0,1963.0,PRIVATE,13,Toronto Centre,40 ALEXANDER ST,19,244,2019-12-03,91,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,5.0,S1326,,,314334.646,4835774.919
-890550,4167699,2017.0,2019.0,1963.0,PRIVATE,13,Toronto Centre,50 ALEXANDER ST,29,217,2019-12-03,91,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,4.0,4.0,4.0,5.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,5.0,S1326,,,314334.646,4835774.919
-890551,4167700,2017.0,2019.0,1963.0,PRIVATE,13,Toronto Centre,55 MAITLAND PL,18,244,2019-12-03,90,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,4.0,4.0,4.0,5.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,5.0,S1326,,,314334.646,4835774.919
-890552,4244973,2017.0,2019.0,2005.0,PRIVATE,13,Toronto Centre,925 BAY ST,33,293,2019-12-03,95,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,,5.0,5.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,5.0,S1325,43.66413332,-79.3866477012,313926.24199999997,4835804.164
-890553,4155834,2017.0,2019.0,1969.0,TCHC,13,Toronto Centre,275 BLEECKER ST,21,301,2019-12-03,60,Evaluation needs to be conducted in 1 year,18,3.0,3.0,5.0,2.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,1.0,3.0,3.0,4.0,2.0,3.0,3.0,,S1323,43.66883593520001,-79.3737051125,314969.275,4836328.077
-890554,4156118,2017.0,2019.0,1969.0,TCHC,13,Toronto Centre,325 BLEECKER ST,24,327,2019-12-03,49,Building Audit,18,2.0,2.0,5.0,2.0,3.0,3.0,2.0,3.0,3.0,,2.0,3.0,1.0,2.0,2.0,2.0,2.0,3.0,2.0,,S1323,43.669381383,-79.37437191,314915.151,4836389.54
-890555,4156038,2017.0,2019.0,1969.0,TCHC,13,Toronto Centre,375 BLEECKER ST,24,327,2019-12-03,49,Building Audit,18,2.0,2.0,5.0,2.0,3.0,3.0,2.0,3.0,3.0,,2.0,3.0,1.0,2.0,2.0,2.0,2.0,3.0,2.0,,S1323,43.670607632,-79.374814757,314879.229,4836525.723999999
-890556,4153423,2017.0,2019.0,2005.0,PRIVATE,13,Toronto Centre,167 CHURCH ST,28,388,2019-12-03,98,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,5.0,,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,,S1332,43.6544377686,-79.37596115630001,314805.505,4834950.321
-890557,4153534,2017.0,2019.0,1910.0,PRIVATE,13,Toronto Centre,608 CHURCH ST,4,35,2019-12-03,76,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,3.0,4.0,4.0,,3.0,,,4.0,4.0,5.0,3.0,4.0,4.0,,3.0,,,S1322,43.668016038599994,-79.3820793431,314294.076,4836236.013
-890558,4153522,2017.0,2019.0,1960.0,PRIVATE,13,Toronto Centre,137 ISABELLA ST,7,56,2019-12-03,86,Evaluation needs to be conducted in 3 years,18,4.0,4.0,5.0,5.0,4.0,4.0,,3.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,5.0,4.0,,S1322,43.6691613046,-79.3768141578,314718.501,4836363.844
-890559,4153598,2017.0,2019.0,1969.0,PRIVATE,13,Toronto Centre,77 HOWARD ST,24,381,2019-12-03,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,,S1323,43.6708658247,-79.3728064407,315041.394,4836553.713
-890560,4153547,2017.0,2019.0,1915.0,PRIVATE,13,Toronto Centre,44 HUNTLEY ST,3,26,2019-12-03,73,Evaluation needs to be conducted in 2 years,14,3.0,4.0,5.0,3.0,4.0,3.0,,4.0,,,4.0,3.0,5.0,3.0,3.0,3.0,,4.0,,,S1322,43.670057953800004,-79.378947526,314546.31,4836463.217
-890561,4167684,2017.0,2019.0,1948.0,TCHC,13,Toronto Centre,274 SACKVILLE ST,6,71,2019-12-03,59,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,2.0,3.0,2.0,2.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,3.0,,S1330,43.661533685,-79.36404948,315749.006,4835519.022
-890562,4167685,2017.0,2019.0,1948.0,TCHC,13,Toronto Centre,295 SACKVILLE ST,3,48,2019-12-03,56,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,2.0,2.0,3.0,3.0,2.0,,,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1330,43.661833468000005,-79.36324770899999,315813.619,4835552.43
-890563,4288743,2017.0,2019.0,1930.0,PRIVATE,13,Toronto Centre,78 PEMBROKE ST,3,15,2019-12-03,84,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,4.0,4.0,5.0,,4.0,,,5.0,5.0,5.0,3.0,4.0,3.0,,5.0,4.0,,S1328,43.658974777299996,-79.3730219749,315026.038,4835232.634
-890564,4153446,2017.0,2019.0,1920.0,PRIVATE,13,Toronto Centre,80-82 PEMBROKE ST,4,11,2019-12-03,81,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,4.0,4.0,3.0,,4.0,,,4.0,5.0,5.0,4.0,4.0,4.0,,5.0,4.0,,S1328,43.6590517197,-79.3730588983,315023.047,4835241.178
-890565,4153431,2017.0,2019.0,1983.0,SOCIAL HOUSING,13,Toronto Centre,90 SHUTER ST,10,77,2019-12-03,78,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,3.0,5.0,2.0,5.0,4.0,,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S1332,43.655490881000006,-79.3742822812,314924.96,4834845.425
-890566,4167463,2017.0,2019.0,2006.0,TCHC,13,Toronto Centre,184 RIVER ST,3,54,2019-12-03,64,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,4.0,2.0,3.0,,,3.0,2.0,5.0,2.0,3.0,3.0,4.0,4.0,4.0,,S1330,43.662770771999995,-79.35927116,316143.84,4835667.148
-890567,4153573,2017.0,2019.0,1975.0,TCHC,13,Toronto Centre,251 SHERBOURNE ST,7,200,2019-12-03,60,Evaluation needs to be conducted in 1 year,18,3.0,3.0,5.0,2.0,3.0,3.0,1.0,3.0,3.0,,3.0,5.0,1.0,4.0,3.0,3.0,3.0,3.0,3.0,,S1329,43.659299401000006,-79.3709200965,315195.512,4835268.965
-890568,4156374,2017.0,2019.0,1975.0,TCHC,13,Toronto Centre,257 SHERBOURNE ST,4,102,2019-12-03,61,Evaluation needs to be conducted in 1 year,18,3.0,3.0,5.0,2.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1329,43.6593567184,-79.3711764365,315174.827,4835275.301
-890569,4153441,2017.0,2019.0,1809.0,PRIVATE,13,Toronto Centre,260 SHERBOURNE ST,4,10,2019-12-03,91,Evaluation needs to be conducted in 3 years,16,5.0,5.0,5.0,5.0,4.0,5.0,,5.0,,,5.0,5.0,5.0,3.0,4.0,5.0,3.0,4.0,5.0,,S1328,43.659098979899994,-79.3715644023,315143.57899999997,4835246.618
-890570,4153440,2017.0,2019.0,1838.0,PRIVATE,13,Toronto Centre,262 SHERBOURNE ST,3,10,2019-12-03,94,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,5.0,5.0,4.0,,5.0,,5.0,5.0,5.0,5.0,3.0,4.0,5.0,5.0,4.0,5.0,,S1328,43.6591658607,-79.3715926671,315141.288,4835254.045
-890571,4155931,2017.0,2019.0,2008.0,SOCIAL HOUSING,13,Toronto Centre,490 SHERBOURNE ST,11,112,2019-12-03,85,Evaluation needs to be conducted in 2 years,19,4.0,5.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,,5.0,4.0,4.0,S1326,43.6676005473,-79.3754019425,314832.654,4836190.618
-890572,4153430,2017.0,2019.0,1918.0,SOCIAL HOUSING,13,Toronto Centre,49 MUTUAL ST,4,20,2019-12-03,85,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,5.0,,5.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,,4.0,,5.0,S1332,43.65533821,-79.37472999100001,314888.613,4834829.365
-890573,4154541,2020.0,2019.0,1956.0,PRIVATE,8,Eglinton-Lawrence,65 WASDALE CRES,3,11,2019-12-03,83,Evaluation needs to be conducted in 2 years,16,5.0,4.0,5.0,5.0,4.0,5.0,,4.0,,,4.0,4.0,5.0,3.0,4.0,3.0,4.0,3.0,4.0,,N0823,43.7301212379,-79.4376331135,309808.878,4843130.784
-890574,4153496,2017.0,2019.0,1926.0,PRIVATE,13,Toronto Centre,77 WELLESLEY ST E,4,30,2019-12-03,86,Evaluation needs to be conducted in 3 years,16,5.0,5.0,4.0,4.0,5.0,4.0,4.0,5.0,4.0,,4.0,5.0,4.0,4.0,4.0,4.0,,4.0,,,S1326,43.665542727600005,-79.3805307384,314419.363,4835961.416
-890575,4153510,2017.0,2019.0,1963.0,PRIVATE,13,Toronto Centre,80 WELLESLEY ST E,12,76,2019-12-03,79,Evaluation needs to be conducted in 2 years,18,5.0,5.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,,S1322,43.6661438785,-79.38026748979999,314440.499,4836028.228999999
-890576,4153497,2018.0,2019.0,1965.0,PRIVATE,13,Toronto Centre,85 WELLESLEY ST E,8,88,2019-12-03,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,2.0,2.0,3.0,4.0,3.0,4.0,,4.0,4.0,,S1326,43.6656716445,-79.3798985663,314470.327,4835975.808999999
-890577,4167680,2017.0,2019.0,2006.0,TCHC,13,Toronto Centre,259 SUMACH ST,3,47,2019-12-03,64,Evaluation needs to be conducted in 1 year,17,3.0,2.0,3.0,3.0,3.0,3.0,2.0,3.0,,,3.0,2.0,5.0,3.0,3.0,4.0,4.0,4.0,4.0,,S1330,43.662405994,-79.360720129,316017.373,4835616.37
-890578,4167687,2017.0,2019.0,1948.0,TCHC,13,Toronto Centre,260 SUMACH ST,3,48,2019-12-03,67,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,,,3.0,2.0,5.0,3.0,4.0,3.0,4.0,4.0,4.0,,S1330,43.66223715,-79.361553726,315950.172,4835597.5
-890579,4155605,2017.0,2019.0,1970.0,TCHC,13,Toronto Centre,200 WELLESLEY ST E,29,719,2019-12-03,56,Evaluation needs to be conducted in 1 year,19,3.0,2.0,5.0,2.0,3.0,3.0,2.0,2.0,3.0,,2.0,3.0,1.0,3.0,3.0,4.0,2.0,3.0,3.0,4.0,S1323,43.668062810600006,-79.3736609333,314972.971,4836242.188999999
-890580,4240826,2017.0,2019.0,1968.0,PRIVATE,13,Toronto Centre,240 WELLESLEY ST E,29,554,2019-12-03,72,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,3.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,,S1323,43.6680679061,-79.3717553706,315147.721,4836236.53
-890581,4155952,2017.0,2019.0,1969.0,PRIVATE,13,Toronto Centre,280 WELLESLEY ST E,32,571,2019-12-03,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,4.0,,4.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,3.0,,S1323,43.6684263291,-79.3704468759,315261.028,4836267.257
-890582,4153475,2017.0,2019.0,1960.0,PRIVATE,13,Toronto Centre,437 JARVIS ST,7,76,2019-12-03,72,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,3.0,,3.0,4.0,,3.0,4.0,5.0,2.0,3.0,4.0,3.0,3.0,3.0,,S1326,43.6640870859,-79.3767455486,314724.86699999997,4835800.143999999
-890583,4153509,2017.0,2019.0,1960.0,PRIVATE,13,Toronto Centre,88 WELLESLEY ST E,8,71,2019-12-03,82,Evaluation needs to be conducted in 2 years,18,5.0,5.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,2.0,,S1322,43.666250633500006,-79.3798674479,314472.745,4836040.134
-890584,4153498,2017.0,2019.0,1960.0,PRIVATE,13,Toronto Centre,91 WELLESLEY ST E,7,61,2019-12-03,82,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,,5.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,,3.0,3.0,,S1326,43.6656528226,-79.3795549794,314498.04,4835973.757
-890585,4153471,2017.0,2019.0,1966.0,PRIVATE,13,Toronto Centre,155 WELLESLEY ST E,18,118,2019-12-03,95,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,5.0,,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,S1326,43.666302583000004,-79.37532155,314835.915,4836052.124
-890586,4153484,2017.0,2019.0,1900.0,SOCIAL HOUSING,13,Toronto Centre,32 GRENVILLE ST,12,50,2019-12-03,91,Evaluation needs to be conducted in 3 years,19,4.0,4.0,5.0,5.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,4.0,,4.0,4.0,5.0,S1325,,,314032.437,4835559.403
-890587,4156725,2017.0,2019.0,2009.0,SOCIAL HOUSING,13,Toronto Centre,160 JARVIS ST,6,98,2019-12-03,88,Evaluation needs to be conducted in 3 years,19,4.0,5.0,5.0,5.0,5.0,5.0,4.0,4.0,5.0,4.0,5.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,5.0,S1332,43.654672753999996,-79.373968369,314934.897,4834789.433
-890588,4250538,2017.0,2019.0,1960.0,PRIVATE,13,Toronto Centre,414 JARVIS ST,4,35,2019-12-03,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,2.0,3.0,5.0,3.0,3.0,3.0,3.0,2.0,,,S1326,43.664772523,-79.3781317195,314612.964,4835876.1280000005
-890589,4153532,2017.0,2019.0,1965.0,PRIVATE,13,Toronto Centre,55 ISABELLA ST,12,82,2019-12-03,71,Evaluation needs to be conducted in 2 years,18,5.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,4.0,,4.0,3.0,5.0,4.0,3.0,3.0,3.0,4.0,2.0,,S1322,43.667777746000006,-79.383098557,314211.655,4836210.379
-890590,4153540,2017.0,2019.0,2016.0,PRIVATE,13,Toronto Centre,66 ISABELLA ST,23,411,2019-12-03,92,Evaluation needs to be conducted in 3 years,20,4.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,S1322,43.668464093999994,-79.382890577,314228.321,4836286.651000001
-890591,4153527,2019.0,2019.0,1928.0,PRIVATE,13,Toronto Centre,81 ISABELLA ST,3,48,2019-12-03,86,Evaluation needs to be conducted in 3 years,14,4.0,5.0,4.0,4.0,4.0,3.0,,4.0,,,4.0,5.0,5.0,4.0,5.0,4.0,,5.0,,,S1322,43.6682194895,-79.3810292281,314378.731,4836258.734
-890592,4153546,2017.0,2019.0,1968.0,PRIVATE,13,Toronto Centre,88 ISABELLA ST,14,82,2019-12-03,89,Evaluation needs to be conducted in 3 years,18,4.0,5.0,4.0,5.0,4.0,5.0,4.0,5.0,5.0,,4.0,4.0,5.0,4.0,5.0,4.0,4.0,5.0,4.0,,S1322,43.668733825299995,-79.3813488094,314352.877,4836315.837
-890593,4153528,2017.0,2019.0,1959.0,PRIVATE,13,Toronto Centre,89 ISABELLA ST,13,76,2019-12-03,79,Evaluation needs to be conducted in 2 years,19,4.0,5.0,4.0,4.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,4.0,5.0,4.0,5.0,5.0,5.0,4.0,3.0,,S1322,43.668391403,-79.3806631771,314408.224,4836277.874
-890594,4153544,2017.0,2019.0,1959.0,PRIVATE,13,Toronto Centre,108 ISABELLA ST,11,262,2019-12-03,78,Evaluation needs to be conducted in 2 years,19,4.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,5.0,4.0,4.0,3.0,5.0,4.0,3.0,,S1322,43.66900050939999,-79.3799911245,314462.32399999996,4836345.619
-890595,4153521,2017.0,2019.0,1960.0,PRIVATE,13,Toronto Centre,135 ISABELLA ST,9,79,2019-12-03,73,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,3.0,3.0,4.0,,3.0,4.0,4.0,3.0,4.0,5.0,3.0,3.0,3.0,4.0,4.0,4.0,,S1322,43.6690495809,-79.3773006128,314679.289,4836351.3780000005
-890596,4265577,2017.0,2019.0,2012.0,SOCIAL HOUSING,13,Toronto Centre,425 DUNDAS ST E,5,32,2019-12-03,62,Evaluation needs to be conducted in 1 year,17,2.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,3.0,4.0,3.0,3.0,,4.0,2.0,,S1329,43.65908018,-79.366823235,315526.799,4835242.136
-890597,4153536,2019.0,2019.0,1928.0,PRIVATE,13,Toronto Centre,50 GLOUCESTER ST,3,35,2019-12-03,77,Evaluation needs to be conducted in 2 years,14,4.0,3.0,4.0,3.0,4.0,3.0,,4.0,,,3.0,5.0,5.0,4.0,4.0,4.0,,4.0,,,S1322,43.6673313703,-79.38310259890001,314211.661,4836159.836
-890598,4153535,2017.0,2019.0,1960.0,PRIVATE,13,Toronto Centre,60 GLOUCESTER ST,11,77,2019-12-03,69,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,3.0,4.0,4.0,5.0,4.0,3.0,2.0,4.0,2.0,2.0,,S1322,43.6673903164,-79.3827012027,314244.024,4836166.429
-890599,4250271,2017.0,2019.0,1991.0,SOCIAL HOUSING,13,Toronto Centre,431 DUNDAS ST E,4,37,2019-12-03,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,3.0,3.0,,5.0,3.0,4.0,S1329,43.6590786732,-79.3664727907,315554.24600000004,4835245.0139999995
-890600,4153506,2017.0,2019.0,1940.0,PRIVATE,13,Toronto Centre,83 GLOUCESTER ST,3,27,2019-12-03,75,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,3.0,3.0,3.0,,5.0,,3.0,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,,,S1322,43.667333372200005,-79.3809735781,314383.363,4836160.296
-890601,4153444,2017.0,2019.0,1986.0,TCHC,13,Toronto Centre,291 GEORGE ST,5,132,2019-12-03,76,Evaluation needs to be conducted in 2 years,18,3.0,3.0,5.0,3.0,3.0,3.0,4.0,4.0,3.0,,3.0,5.0,5.0,4.0,4.0,4.0,,5.0,4.0,3.0,S1328,43.65837995,-79.373485597,314988.482,4835167.438999999
-890602,4233264,2017.0,2019.0,2007.0,PRIVATE,13,Toronto Centre,50 GERRARD ST E,12,188,2019-12-03,87,Evaluation needs to be conducted in 3 years,18,4.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,3.0,,5.0,5.0,5.0,4.0,4.0,4.0,,4.0,5.0,5.0,S1328,43.6599201905,-79.3793368695,314521.382,4835356.313999999
-890603,4167694,2017.0,2019.0,1980.0,TCHC,13,Toronto Centre,325 GERRARD ST E,6,72,2019-12-03,58,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,2.0,3.0,2.0,2.0,3.0,,2.0,3.0,4.0,3.0,3.0,3.0,,4.0,3.0,,S1330,43.662101254,-79.36550611199999,315631.42100000003,4835581.8889999995
-890604,4167701,2017.0,2019.0,1980.0,TCHC,13,Toronto Centre,417 GERRARD ST E,3,12,2019-12-03,65,Evaluation needs to be conducted in 1 year,16,2.0,3.0,4.0,3.0,2.0,4.0,,3.0,,,3.0,4.0,4.0,3.0,3.0,4.0,,3.0,4.0,3.0,S1330,43.6620246346,-79.3620805585,315907.982,4835572.868
-890605,4153494,2017.0,2019.0,1927.0,PRIVATE,13,Toronto Centre,54 MAITLAND ST,4,45,2019-12-03,89,Evaluation needs to be conducted in 3 years,15,5.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,4.0,5.0,5.0,5.0,4.0,5.0,,5.0,4.0,,S1326,43.664766799700004,-79.3814874768,314342.322,4835875.113
-890606,4153492,2017.0,2019.0,1928.0,PRIVATE,13,Toronto Centre,58 MAITLAND ST,4,45,2019-12-03,75,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,3.0,3.0,3.0,,4.0,,,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S1326,43.66483495399999,-79.3811923705,314366.11199999996,4835882.717
-890607,4153501,2017.0,2019.0,1965.0,PRIVATE,13,Toronto Centre,100 MAITLAND ST,18,102,2019-12-03,84,Evaluation needs to be conducted in 2 years,20,5.0,5.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,3.0,4.0,S1326,43.6650800354,-79.37968177479999,314487.904,4835910.112
-890608,4155602,2017.0,2019.0,1972.0,TCHC,13,Toronto Centre,220 OAK ST,27,469,2019-12-03,68,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,2.0,4.0,4.0,2.0,3.0,4.0,,2.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,S1330,43.663061381000006,-79.357756445,316331.701,4835670.531
-890609,4153772,2017.0,2019.0,1968.0,PRIVATE,12,Toronto-St. Paul's,200 BALLIOL ST,23,366,2019-12-02,91,Evaluation needs to be conducted in 3 years,20,4.0,4.0,5.0,4.0,5.0,4.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,5.0,S1233,43.699217400100004,-79.3900854434,313643.88899999997,4839701.512
-890610,4153916,2017.0,2019.0,1927.0,PRIVATE,12,Toronto-St. Paul's,48 LAWTON BLVD,3,19,2019-12-02,69,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,2.0,4.0,,4.0,,3.0,3.0,2.0,5.0,3.0,3.0,4.0,,4.0,3.0,,S1232,43.691667031,-79.396207889,313151.182,4838862.973999999
-890611,4153881,2017.0,2019.0,1967.0,PRIVATE,12,Toronto-St. Paul's,4 DEER PARK CRES,13,59,2019-12-02,76,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,3.0,3.0,4.0,4.0,4.0,4.0,3.0,3.0,3.0,5.0,4.0,4.0,4.0,5.0,4.0,3.0,,S1232,43.6878705594,-79.3990127319,312925.863,4838439.962
-890612,4153873,2017.0,2019.0,1965.0,PRIVATE,12,Toronto-St. Paul's,9 DEER PARK CRES,17,95,2019-12-02,92,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,5.0,4.0,5.0,5.0,4.0,5.0,5.0,5.0,3.0,,S1232,43.6881074516,-79.3979987112,313007.575,4838466.377
-890613,4153817,2017.0,2019.0,1954.0,PRIVATE,12,Toronto-St. Paul's,117 BROADWAY AVE,4,71,2019-12-02,70,Evaluation needs to be conducted in 2 years,18,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,S1221,43.710438992,-79.392666123,313434.01,4840948.906
-890614,4153818,2017.0,2019.0,1950.0,PRIVATE,12,Toronto-St. Paul's,127 BROADWAY AVE,4,60,2019-12-02,71,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,,S1221,43.71038218100001,-79.392210062,313470.772,4840942.642
-890615,4153339,2017.0,2019.0,1967.0,PRIVATE,12,Toronto-St. Paul's,640 DAVENPORT RD,5,25,2019-12-02,91,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,5.0,4.0,3.0,,4.0,5.0,,5.0,5.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,,S1236,43.677041538400005,-79.4134459783,311763.48,4837235.568
-890616,4153767,2017.0,2019.0,1973.0,PRIVATE,12,Toronto-St. Paul's,33 DAVISVILLE AVE,21,266,2019-12-02,92,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,4.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,3.0,,S1233,43.698395188599996,-79.39492383470001,313253.99199999997,4839609.66
-890617,4171428,2017.0,2019.0,1970.0,PRIVATE,12,Toronto-St. Paul's,77 DAVISVILLE AVE,30,483,2019-12-02,90,Evaluation needs to be conducted in 3 years,20,5.0,4.0,5.0,4.0,5.0,4.0,4.0,5.0,4.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,S1233,,,313348.791,4839615.708000001
-890618,4153768,2017.0,2019.0,1970.0,PRIVATE,12,Toronto-St. Paul's,111 DAVISVILLE AVE,24,371,2019-12-02,89,Evaluation needs to be conducted in 3 years,20,5.0,4.0,5.0,4.0,5.0,4.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,3.0,4.0,5.0,5.0,4.0,3.0,5.0,S1233,43.698778807,-79.3922142682,313472.354,4839652.56
-890619,4153769,2017.0,2019.0,1970.0,PRIVATE,12,Toronto-St. Paul's,141 DAVISVILLE AVE,20,313,2019-12-02,88,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,5.0,5.0,4.0,5.0,3.0,4.0,5.0,5.0,4.0,4.0,,S1233,43.69919110479999,-79.3914184257,313536.446,4839698.45
-890620,4153771,2017.0,2019.0,1969.0,PRIVATE,12,Toronto-St. Paul's,225 DAVISVILLE AVE,25,401,2019-12-02,86,Evaluation needs to be conducted in 3 years,20,3.0,4.0,4.0,5.0,5.0,5.0,5.0,4.0,4.0,5.0,3.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,S1233,43.699562451999995,-79.388217525,313794.14,4839741.0030000005
-890621,4235524,2017.0,2019.0,1996.0,PRIVATE,12,Toronto-St. Paul's,1920 YONGE ST,7,102,2019-12-02,84,Evaluation needs to be conducted in 2 years,17,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,5.0,5.0,,5.0,4.0,,S1227,43.698779468000005,-79.3972801771,313085.05100000004,4839644.265
-890622,4153340,2017.0,2019.0,1920.0,PRIVATE,12,Toronto-St. Paul's,345 ST CLAIR AVE W,4,15,2019-12-02,67,Evaluation needs to be conducted in 2 years,14,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,,,2.0,3.0,5.0,3.0,4.0,4.0,,4.0,,,S1236,43.6842405143,-79.4116176413,311910.078,4838035.533
-890623,4155731,2017.0,2019.0,1967.0,PRIVATE,12,Toronto-St. Paul's,330 SPADINA RD,22,141,2019-12-02,85,Evaluation needs to be conducted in 2 years,20,5.0,5.0,4.0,4.0,4.0,3.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,S1236,43.683502319,-79.411166001,311926.227,4837949.908
-890624,4153762,2017.0,2019.0,1966.0,PRIVATE,12,Toronto-St. Paul's,45 BALLIOL ST,18,263,2019-12-02,91,Evaluation needs to be conducted in 3 years,20,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,5.0,5.0,S1233,43.697360037399996,-79.3949972041,313248.222,4839494.65
-890625,4153763,2017.0,2019.0,1965.0,PRIVATE,12,Toronto-St. Paul's,155 BALLIOL ST,18,286,2019-12-02,82,Evaluation needs to be conducted in 2 years,20,5.0,4.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,3.0,4.0,S1233,43.697965104,-79.3921328391,313479.032,4839562.166999999
-890626,4153887,2017.0,2019.0,1957.0,PRIVATE,12,Toronto-St. Paul's,484 AVENUE RD,13,118,2019-12-02,95,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,3.0,,S1231,43.687301393,-79.40232434100001,312658.70399999997,4838377.38
-890627,4153886,2017.0,2019.0,1956.0,PRIVATE,12,Toronto-St. Paul's,494 AVENUE RD,13,118,2019-12-02,92,Evaluation needs to be conducted in 3 years,19,4.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,4.0,4.0,5.0,5.0,5.0,4.0,4.0,5.0,5.0,5.0,3.0,,S1231,43.687758523,-79.402478988,312646.179,4838428.152
-890628,4153883,2017.0,2019.0,1957.0,PRIVATE,12,Toronto-St. Paul's,561 AVENUE RD,14,60,2019-12-02,96,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,5.0,3.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,3.0,,S1232,43.687842496,-79.401374105,312735.24,4838437.581
-890629,4153884,2017.0,2019.0,1952.0,PRIVATE,12,Toronto-St. Paul's,565 AVENUE RD,12,63,2019-12-02,95,Evaluation needs to be conducted in 3 years,19,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,5.0,4.0,,S1232,43.688177663999994,-79.401518522,312723.554,4838474.804
-890630,4153910,2017.0,2019.0,1955.0,PRIVATE,12,Toronto-St. Paul's,585 AVENUE RD,11,57,2019-12-02,88,Evaluation needs to be conducted in 3 years,19,4.0,4.0,5.0,5.0,5.0,3.0,4.0,4.0,4.0,5.0,5.0,5.0,5.0,4.0,4.0,5.0,5.0,5.0,3.0,,S1232,43.6892676418,-79.4019577858,312688.265,4838594.903
-890631,4153909,2017.0,2019.0,1955.0,PRIVATE,12,Toronto-St. Paul's,606 AVENUE RD,11,62,2019-12-02,86,Evaluation needs to be conducted in 3 years,18,4.0,4.0,5.0,5.0,5.0,3.0,,4.0,4.0,4.0,5.0,5.0,5.0,3.0,4.0,4.0,5.0,5.0,3.0,,S1231,43.6896239325,-79.40332135140001,312578.299,4838634.362
-890632,4153334,2017.0,2019.0,1993.0,SOCIAL HOUSING,12,Toronto-St. Paul's,339 ALBANY AVE,4,42,2019-12-02,82,Evaluation needs to be conducted in 2 years,17,5.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,4.0,4.0,5.0,5.0,4.0,4.0,,4.0,4.0,,S1236,43.6754298022,-79.4139451731,311723.405,4837056.473
-890633,4264094,2017.0,2019.0,2013.0,PRIVATE,13,Toronto Centre,132 BERKELEY ST,10,177,2019-12-02,100,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,5.0,5.0,,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,S1335,43.654807461000004,-79.365773301,315593.156,4834753.59
-890634,4153764,2017.0,2019.0,1968.0,PRIVATE,12,Toronto-St. Paul's,165 BALLIOL ST,4,48,2019-12-02,81,Evaluation needs to be conducted in 2 years,18,4.0,5.0,3.0,4.0,4.0,4.0,,4.0,5.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,S1233,43.6980801264,-79.3913521061,313541.95,4839575.028
-890635,4156549,2017.0,2019.0,1965.0,PRIVATE,12,Toronto-St. Paul's,88 REDPATH AVE,16,186,2019-12-02,83,Evaluation needs to be conducted in 2 years,19,5.0,5.0,5.0,2.0,5.0,3.0,4.0,5.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,5.0,3.0,3.0,5.0,S1228,43.7062911075,-79.3925729601,313442.376,4840487.143
-890636,4257267,2017.0,2019.0,1969.0,PRIVATE,12,Toronto-St. Paul's,95 REDPATH AVE,14,93,2019-12-02,79,Evaluation needs to be conducted in 2 years,19,5.0,5.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,5.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,,S1228,43.7069494634,-79.3920429105,313485.001,4840560.34
-890637,4153815,2017.0,2019.0,1965.0,PRIVATE,12,Toronto-St. Paul's,177 REDPATH AVE,17,148,2019-12-02,85,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,3.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,5.0,S1221,43.709723233000005,-79.393094085,313399.624,4840869.343
-890638,4153875,2017.0,2019.0,1969.0,PRIVATE,12,Toronto-St. Paul's,40 DELISLE AVE,10,100,2019-12-02,91,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,5.0,5.0,3.0,,4.0,5.0,4.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,3.0,,S1232,43.6889903412,-79.3967288082,313109.822,4838564.588
-890639,4153876,2017.0,2019.0,1964.0,PRIVATE,12,Toronto-St. Paul's,70 DELISLE AVE,12,180,2019-12-02,92,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,4.0,5.0,4.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,,S1232,43.688804973,-79.39776040609999,313026.688,4838543.893999999
-890640,4153425,2017.0,2019.0,1900.0,SOCIAL HOUSING,13,Toronto Centre,244 CHURCH ST,3,60,2019-12-02,79,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,4.0,3.0,,4.0,,5.0,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,,5.0,S1332,43.6559630817,-79.377259039,314684.79,4834897.546
-890641,4155887,2017.0,2019.0,1959.0,PRIVATE,12,Toronto-St. Paul's,70 HEATH ST W,3,35,2019-12-02,89,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,S1232,43.6899134728,-79.3986248426,312956.853,4838666.964
-890642,4155919,2017.0,2019.0,1959.0,PRIVATE,12,Toronto-St. Paul's,80 HEATH ST W,3,35,2019-12-02,87,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,S1232,43.689525788999994,-79.399154737,312913.92699999997,4838624.797
-890643,4156294,2017.0,2019.0,1959.0,PRIVATE,12,Toronto-St. Paul's,90 HEATH ST W,3,37,2019-12-02,88,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,S1232,43.689842541000004,-79.39896077899999,312888.418,4838617.756
-890644,4153375,2017.0,2019.0,1959.0,PRIVATE,12,Toronto-St. Paul's,268 POPLAR PLAINS RD,10,59,2019-12-02,80,Evaluation needs to be conducted in 2 years,16,5.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,4.0,4.0,5.0,3.0,4.0,4.0,,3.0,4.0,,S1237,43.6856691737,-79.4040338654,312521.347,4838194.933
-890645,4153370,2017.0,2019.0,1960.0,PRIVATE,12,Toronto-St. Paul's,263 RUSSELL HILL RD,7,52,2019-12-02,84,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,5.0,3.0,5.0,,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1237,43.685105293999996,-79.40728417300001,312259.105,4838132.946
-890646,4153371,2017.0,2019.0,1960.0,PRIVATE,12,Toronto-St. Paul's,265 RUSSELL HILL RD,8,48,2019-12-02,84,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,5.0,5.0,,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1237,43.68523873,-79.40732490399999,312255.805,4838147.767
-890647,4153877,2017.0,2019.0,1955.0,PRIVATE,12,Toronto-St. Paul's,1 ORIOLE RD,8,80,2019-12-02,94,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,5.0,5.0,4.0,4.0,5.0,5.0,,5.0,5.0,5.0,5.0,4.0,5.0,,4.0,4.0,,S1232,43.6872902889,-79.3997313945,312868.006,4838375.428
-890648,4153878,2017.0,2019.0,1955.0,PRIVATE,12,Toronto-St. Paul's,23 ORIOLE RD,4,47,2019-12-02,92,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,,5.0,5.0,5.0,4.0,4.0,5.0,3.0,4.0,4.0,,S1232,43.687767379300006,-79.3997287568,312868.154,4838428.432
-890649,4153879,2017.0,2019.0,1955.0,PRIVATE,12,Toronto-St. Paul's,37 ORIOLE RD,4,50,2019-12-02,88,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,5.0,4.0,4.0,,5.0,4.0,4.0,5.0,4.0,5.0,3.0,4.0,5.0,4.0,4.0,4.0,,S1232,43.6882940924,-79.3999022,312854.1,4838486.933
-890650,4153802,2017.0,2019.0,1963.0,PRIVATE,12,Toronto-St. Paul's,199 ROEHAMPTON AVE,12,125,2019-12-02,86,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,5.0,5.0,3.0,4.0,3.0,5.0,,4.0,5.0,5.0,3.0,4.0,5.0,4.0,3.0,4.0,,S1221,43.709034865,-79.392111771,313478.88899999997,4840792.969
-890651,4153822,2017.0,2019.0,1964.0,PRIVATE,12,Toronto-St. Paul's,200 ROEHAMPTON AVE,13,228,2019-12-02,81,Evaluation needs to be conducted in 2 years,19,5.0,5.0,5.0,4.0,4.0,4.0,3.0,3.0,5.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,3.0,,S1221,43.70953529,-79.39239920600001,313455.652,4840848.535
-890652,4153803,2017.0,2019.0,1964.0,PRIVATE,12,Toronto-St. Paul's,245 ROEHAMPTON AVE,15,83,2019-12-02,80,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,4.0,3.0,4.0,3.0,4.0,5.0,,3.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,S1221,43.709160333999996,-79.391292239,313544.918,4840806.994
-890653,4153821,2017.0,2019.0,1963.0,PRIVATE,12,Toronto-St. Paul's,250 ROEHAMPTON AVE,11,91,2019-12-02,79,Evaluation needs to be conducted in 2 years,17,4.0,5.0,5.0,3.0,3.0,4.0,,2.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,3.0,,S1221,43.709736351000004,-79.391538167,313525.015,4840870.962
-890654,4155600,2017.0,2019.0,1973.0,TCHC,13,Toronto Centre,155 SHERBOURNE ST,16,301,2019-12-02,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,,S1329,43.6555922823,-79.3695219097,315308.923,4834857.287
-890655,4153434,2017.0,2019.0,1978.0,TCHC,13,Toronto Centre,200 SHERBOURNE ST,7,174,2019-12-02,62,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,2.0,4.0,3.0,3.0,3.0,3.0,,3.0,4.0,2.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,S1332,43.657118655699996,-79.3709227315,315195.67100000003,4835026.678
-890656,4153915,2017.0,2019.0,1915.0,PRIVATE,12,Toronto-St. Paul's,50 LAWTON BLVD,3,20,2019-12-02,73,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,3.0,3.0,4.0,,4.0,,4.0,4.0,3.0,5.0,3.0,3.0,4.0,,4.0,3.0,,S1232,43.691863282,-79.396100397,313143.397,4838889.911
-890657,4153820,2017.0,2019.0,1968.0,PRIVATE,12,Toronto-St. Paul's,890 MOUNT PLEASANT RD,19,145,2019-12-02,89,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,5.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,5.0,S1221,43.7107286629,-79.3914657004,313530.971,4840980.259
-890658,4153456,2017.0,2019.0,1929.0,PRIVATE,13,Toronto Centre,262 JARVIS ST,6,72,2019-12-02,76,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,2.0,4.0,4.0,,4.0,3.0,,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,,,S1328,43.6596564148,-79.3760533854,314781.42600000004,4835308.004
-890659,4153782,2017.0,2019.0,1966.0,PRIVATE,12,Toronto-St. Paul's,45 DUNFIELD AVE,30,575,2019-12-02,91,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,S1228,43.706257478999994,-79.394353196,313298.64,4840484.18
-890660,4153801,2017.0,2019.0,1981.0,TCHC,12,Toronto-St. Paul's,130 EGLINTON AVE E,15,266,2019-12-02,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,3.0,4.0,3.0,3.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,3.0,3.0,4.0,4.0,S1221,43.7080325071,-79.3945783952,313280.50399999996,4840680.403
-890661,4153457,2017.0,2019.0,1995.0,SOCIAL HOUSING,13,Toronto Centre,80 DUNDAS ST E,15,138,2019-12-02,76,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,5.0,S1328,43.656516289799995,-79.3781464612,314613.128,4834958.909
-890662,4153753,2017.0,2019.0,1980.0,TCHC,12,Toronto-St. Paul's,71 MERTON ST,10,167,2019-12-02,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,3.0,4.0,5.0,5.0,5.0,,4.0,3.0,5.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,S1233,43.696320863000004,-79.394123596,313318.526,4839380.245
-890663,4156548,2017.0,2019.0,2010.0,PRIVATE,12,Toronto-St. Paul's,65 LILLIAN ST,10,141,2019-12-02,97,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,,5.0,5.0,5.0,5.0,,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,S1228,43.7061847,-79.39322488100001,313389.587,4840476.209
-890664,4153760,2017.0,2019.0,1993.0,TCHC,12,Toronto-St. Paul's,384 MOUNT PLEASANT RD,8,155,2019-12-02,83,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,S1233,43.698358176099994,-79.38695482600001,313896.36199999996,4839606.393999999
-890665,4153759,2017.0,2019.0,1968.0,PRIVATE,12,Toronto-St. Paul's,265 BALLIOL ST,26,209,2019-12-02,83,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,5.0,3.0,4.0,4.0,4.0,5.0,3.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,,S1233,43.698777377,-79.387810749,313810.77,4839659.966
-890666,4156415,2017.0,2019.0,1975.0,PRIVATE,25,Scarborough-Rouge Park,43 GENERATION BLVD,3,12,2019-11-29,75,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,,,3.0,4.0,5.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,E2530,43.804310025,-79.1674004939,331569.09,4851436.626
-890667,4155978,2017.0,2019.0,1975.0,PRIVATE,25,Scarborough-Rouge Park,47 GENERATION BLVD,3,180,2019-11-29,75,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,,,3.0,4.0,5.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,E2530,43.804209057200005,-79.1667368141,331647.273,4851470.1389999995
-890668,4232579,2017.0,2019.0,1975.0,PRIVATE,25,Scarborough-Rouge Park,53 GENERATION BLVD,3,12,2019-11-29,75,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,,,3.0,4.0,5.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,E2530,43.804700539399995,-79.1654577856,331784.571,4851447.146000001
-890669,4232583,2017.0,2019.0,1975.0,PRIVATE,25,Scarborough-Rouge Park,51 GENERATION BLVD,3,12,2019-11-29,75,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,,,3.0,4.0,5.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,E2530,43.8046874624,-79.16582253989999,331685.17100000003,4851486.325
-890670,4232587,2017.0,2019.0,1975.0,PRIVATE,25,Scarborough-Rouge Park,49 GENERATION BLVD,3,12,2019-11-29,75,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,,,3.0,4.0,5.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,E2530,43.80460817270001,-79.1661290396,331665.272,4851476.813999999
-890671,4152844,2017.0,2019.0,1970.0,PRIVATE,24,Scarborough-Guildwood,4070 LAWRENCE AVE E,4,38,2019-11-28,89,Evaluation needs to be conducted in 3 years,19,4.0,5.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,4.0,5.0,5.0,,E2428,43.766635821899996,-79.19693607800001,329184.69899999996,4847229.848999999
-890672,4152805,2017.0,2019.0,1966.0,PRIVATE,24,Scarborough-Guildwood,45 LIVINGSTON RD,16,188,2019-11-28,89,Evaluation needs to be conducted in 3 years,20,5.0,3.0,3.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,3.0,5.0,5.0,4.0,3.0,5.0,5.0,5.0,3.0,5.0,E2435,43.7430013291,-79.1969715203,329191.42699999997,4844604.166999999
-890673,4152806,2017.0,2019.0,1966.0,PRIVATE,24,Scarborough-Guildwood,55 LIVINGSTON RD,14,174,2019-11-28,87,Evaluation needs to be conducted in 3 years,20,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,3.0,3.0,3.0,5.0,3.0,4.0,3.0,E2435,43.744321120200006,-79.19730529739999,329164.011,4844750.688999999
-890674,4153901,2017.0,2019.0,1927.0,PRIVATE,12,Toronto-St. Paul's,310 LONSDALE RD,4,15,2019-11-28,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,3.0,3.0,4.0,,3.0,,,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,S1231,43.689210605,-79.41122191720001,311941.429,4838587.752
-890675,4153908,2017.0,2019.0,1925.0,PRIVATE,12,Toronto-St. Paul's,311 LONSDALE RD,4,14,2019-11-28,77,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,4.0,3.0,3.0,,4.0,,,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,,,S1231,43.688809994799996,-79.41085820159999,311970.793,4838543.273
-890676,4153902,2017.0,2019.0,1927.0,PRIVATE,12,Toronto-St. Paul's,312 LONSDALE RD,4,19,2019-11-28,79,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,3.0,4.0,5.0,4.0,3.0,4.0,,4.0,4.0,,S1231,43.689184139700004,-79.411404359,311926.722,4838584.795
-890677,4152786,2017.0,2019.0,1992.0,SOCIAL HOUSING,24,Scarborough-Guildwood,3555 KINGSTON RD,9,133,2019-11-28,90,Evaluation needs to be conducted in 3 years,20,5.0,3.0,3.0,5.0,5.0,5.0,5.0,3.0,5.0,3.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,3.0,5.0,E2433,43.7393701329,-79.2153343914,327713.788,4844195.533
-890678,4152807,2017.0,2019.0,1967.0,PRIVATE,24,Scarborough-Guildwood,3969 KINGSTON RD,13,174,2019-11-28,81,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,3.0,4.0,3.0,4.0,5.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,E2434,43.75149072600001,-79.2033413635,328675.027,4845545.453
-890679,4156664,2017.0,2019.0,1972.0,TCHC,24,Scarborough-Guildwood,4301 KINGSTON RD,20,419,2019-11-28,68,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,2.0,4.0,3.0,2.0,4.0,3.0,,3.0,4.0,5.0,3.0,4.0,3.0,4.0,3.0,4.0,4.0,E2432,43.7627363291,-79.1928326244,329516.674,4846797.833000001
-890680,4153906,2017.0,2019.0,1930.0,PRIVATE,12,Toronto-St. Paul's,323 LONSDALE RD,4,20,2019-11-28,86,Evaluation needs to be conducted in 3 years,14,4.0,5.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,5.0,4.0,4.0,,5.0,,,S1231,43.688552136700004,-79.41195843220001,311882.118,4838514.529
-890681,4153894,2017.0,2019.0,1970.0,PRIVATE,12,Toronto-St. Paul's,345 LONSDALE RD,6,55,2019-11-28,71,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,3.0,4.0,3.0,3.0,4.0,5.0,4.0,3.0,3.0,5.0,4.0,3.0,3.0,4.0,3.0,3.0,,S1230,43.6881670254,-79.4141265124,311707.357,4838471.552
-890682,4152820,2017.0,2019.0,1964.0,PRIVATE,24,Scarborough-Guildwood,3801 LAWRENCE AVE E,7,90,2019-11-28,89,Evaluation needs to be conducted in 3 years,17,5.0,4.0,5.0,5.0,5.0,5.0,,4.0,4.0,,4.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,3.0,,E2431,43.7620219715,-79.2131151928,327883.877,4846712.67
-890683,4153920,2017.0,2019.0,1930.0,PRIVATE,12,Toronto-St. Paul's,80 LAWTON BLVD,3,24,2019-11-28,84,Evaluation needs to be conducted in 2 years,14,4.0,4.0,5.0,4.0,3.0,4.0,,5.0,,,5.0,4.0,5.0,4.0,4.0,3.0,,5.0,,,S1232,43.692690453400004,-79.3968224321,313101.766,4838975.6680000005
-890684,4153923,2017.0,2019.0,1959.0,PRIVATE,12,Toronto-St. Paul's,85 LAWTON BLVD,10,87,2019-11-28,77,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,4.0,3.0,3.0,4.0,3.0,4.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,5.0,4.0,3.0,,S1232,43.6931297884,-79.3963342082,313141.061,4839024.529
-890685,4152821,,2019.0,1970.0,PRIVATE,24,Scarborough-Guildwood,3827 LAWRENCE AVE E,7,88,2019-11-28,70,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,4.0,4.0,4.0,,3.0,3.0,4.0,2.0,2.0,5.0,3.0,3.0,4.0,3.0,3.0,4.0,,E2431,43.7620489485,-79.211440469,328018.711,4846716.13
-890686,4155577,2017.0,2019.0,1969.0,TCHC,24,Scarborough-Guildwood,3847 LAWRENCE AVE E,13,213,2019-11-28,84,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,5.0,4.0,5.0,4.0,5.0,,4.0,4.0,4.0,5.0,4.0,4.0,3.0,5.0,4.0,4.0,E2431,43.762491026400006,-79.2104930971,328094.82,4846765.506
-890687,4152822,2017.0,2019.0,1975.0,PRIVATE,24,Scarborough-Guildwood,3895 LAWRENCE AVE E,10,114,2019-11-28,83,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,5.0,4.0,3.0,4.0,3.0,,E2431,43.763136467200006,-79.2079803013,328296.891,4846837.916
-890688,4155854,2018.0,2019.0,1970.0,TCHC,24,Scarborough-Guildwood,3939 LAWRENCE AVE E,3,31,2019-11-28,65,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,2.0,3.0,4.0,,5.0,,,3.0,4.0,3.0,3.0,3.0,2.0,3.0,4.0,3.0,,E2431,43.763475641999996,-79.20530613220001,328497.269,4846918.613
-890689,4156557,2017.0,2019.0,1970.0,TCHC,24,Scarborough-Guildwood,3941 LAWRENCE AVE E,3,33,2019-11-28,69,Evaluation needs to be conducted in 2 years,16,2.0,3.0,4.0,4.0,3.0,4.0,,5.0,,,3.0,4.0,4.0,3.0,4.0,3.0,2.0,4.0,3.0,,E2431,43.763624835,-79.2044874649,328577.92600000004,4846893.162
-890690,4156556,2018.0,2019.0,1970.0,TCHC,24,Scarborough-Guildwood,3943 LAWRENCE AVE E,3,15,2019-11-28,55,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,2.0,,3.0,,2.0,,,2.0,4.0,4.0,2.0,3.0,3.0,2.0,2.0,3.0,,E2431,43.7631593909,-79.2047559,328556.497,4846841.376
-890691,4153925,2017.0,2019.0,1934.0,PRIVATE,12,Toronto-St. Paul's,101 LAWTON BLVD,5,46,2019-11-28,69,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,3.0,3.0,4.0,4.0,4.0,,3.0,2.0,5.0,4.0,4.0,3.0,,4.0,3.0,3.0,S1232,43.693704796000006,-79.3967468,313107.717,4839088.374
-890692,4153148,2017.0,2019.0,1986.0,SOCIAL HOUSING,9,Davenport,1289 DUNDAS ST W,7,149,2019-11-28,92,Evaluation needs to be conducted in 3 years,18,4.0,5.0,5.0,5.0,5.0,5.0,,5.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,4.0,,4.0,4.0,4.0,S0937,43.649212821000006,-79.425416097,310800.857,4834143.938
-890693,4156491,2017.0,2019.0,1975.0,PRIVATE,25,Scarborough-Rouge Park,45 GENERATION BLVD,3,12,2019-11-28,75,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,,,3.0,4.0,5.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,E2530,43.8043562465,-79.1670746426,331587.82899999997,4851453.213
-890694,4153890,2017.0,2019.0,1959.0,PRIVATE,12,Toronto-St. Paul's,276 ST CLAIR AVE W,4,49,2019-11-28,81,Evaluation needs to be conducted in 2 years,18,4.0,5.0,4.0,4.0,3.0,4.0,,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,3.0,,S1231,43.685428165,-79.409063969,312115.572,4838168.659
-890695,4153891,2017.0,2019.0,1960.0,PRIVATE,12,Toronto-St. Paul's,300 ST CLAIR AVE W,5,49,2019-11-28,81,Evaluation needs to be conducted in 2 years,18,4.0,5.0,4.0,4.0,4.0,4.0,,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1231,43.685073908,-79.410731333,311981.184,4838129.155
-890696,4153895,2017.0,2019.0,1931.0,PRIVATE,12,Toronto-St. Paul's,404 SPADINA RD,4,31,2019-11-28,74,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,4.0,3.0,3.0,,4.0,4.0,4.0,3.0,4.0,5.0,3.0,3.0,3.0,,5.0,,,S1230,43.6882314978,-79.4129731553,311800.342,4838478.817
-890697,4152837,2017.0,2019.0,1992.0,SOCIAL HOUSING,24,Scarborough-Guildwood,38 ANDOVER CRES,4,25,2019-11-28,83,Evaluation needs to be conducted in 2 years,20,5.0,5.0,5.0,4.0,4.0,4.0,3.0,5.0,3.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,3.0,4.0,E2432,43.7656866774,-79.194946435,329345.274,4847124.988
-890698,4156101,2019.0,2019.0,1930.0,PRIVATE,12,Toronto-St. Paul's,143 ARLINGTON AVE,4,28,2019-11-28,79,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,3.0,3.0,4.0,5.0,4.0,4.0,,4.0,,,S1223,43.681869047,-79.4287988671,310515.543,4837773.8319999995
-890699,4154955,2017.0,2019.0,1965.0,PRIVATE,12,Toronto-St. Paul's,1500 BATHURST ST,14,119,2019-11-28,80,Evaluation needs to be conducted in 2 years,19,4.0,5.0,5.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,,S1229,43.684088394899995,-79.4190637545,311309.74100000004,4838018.005
-890700,4154950,2017.0,2019.0,1940.0,PRIVATE,12,Toronto-St. Paul's,1550 BATHURST ST,5,25,2019-11-28,67,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,4.0,3.0,3.0,,3.0,,2.0,4.0,2.0,5.0,3.0,3.0,4.0,,3.0,,,S1229,43.685357358999994,-79.41960900800001,311265.649,4838158.948
-890701,4154949,2017.0,2019.0,1926.0,PRIVATE,12,Toronto-St. Paul's,1554 BATHURST ST,4,36,2019-11-28,78,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,4.0,3.0,3.0,,4.0,,4.0,4.0,5.0,5.0,4.0,4.0,4.0,,3.0,3.0,,S1229,43.6855675188,-79.4196915676,311258.971,4838182.291
-890702,4154948,2017.0,2019.0,1926.0,PRIVATE,12,Toronto-St. Paul's,1560 BATHURST ST,4,36,2019-11-28,73,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,4.0,3.0,3.0,,4.0,,3.0,4.0,4.0,4.0,3.0,4.0,4.0,,3.0,3.0,,S1229,43.6857351417,-79.419761989,311253.276,4838200.909
-890703,4154947,2017.0,2019.0,1926.0,PRIVATE,12,Toronto-St. Paul's,1570 BATHURST ST,4,36,2019-11-28,71,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,4.0,3.0,3.0,,4.0,,3.0,3.0,4.0,4.0,3.0,4.0,4.0,,3.0,3.0,,S1229,43.6859949954,-79.4198611438,311245.255,4838229.772
-890704,4156362,2017.0,2019.0,1950.0,PRIVATE,12,Toronto-St. Paul's,1582 BATHURST ST,3,33,2019-11-28,57,Evaluation needs to be conducted in 1 year,15,2.0,3.0,5.0,2.0,3.0,3.0,,2.0,1.0,,3.0,4.0,4.0,3.0,2.0,2.0,,4.0,,,S1229,43.6866154943,-79.4200162678,311232.685,4838298.699
-890705,4152813,2017.0,2019.0,1964.0,PRIVATE,24,Scarborough-Guildwood,35 CONFEDERATION DR,8,133,2019-11-28,80,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,4.0,5.0,,3.0,4.0,,3.0,5.0,5.0,4.0,4.0,4.0,3.0,5.0,3.0,,E2430,43.7572104007,-79.2230052748,327089.333,4846175.445
-890706,4152799,2017.0,2019.0,1965.0,PRIVATE,24,Scarborough-Guildwood,25 COUGAR CRT,21,236,2019-11-28,76,Evaluation needs to be conducted in 2 years,19,5.0,3.0,5.0,3.0,5.0,5.0,4.0,5.0,4.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,E2433,43.7460384485,-79.218063912,327491.43100000004,4844935.615
-890707,4327922,2018.0,2019.0,1924.0,PRIVATE,9,Davenport,394 DOVERCOURT RD,3,20,2019-11-28,71,Evaluation needs to be conducted in 2 years,14,3.0,3.0,5.0,3.0,3.0,4.0,,3.0,,,4.0,5.0,4.0,3.0,3.0,4.0,,3.0,,,S0934,43.652361602700005,-79.42623152029999,310735.016,4834492.7639999995
-890708,4153152,2017.0,2019.0,1930.0,PRIVATE,9,Davenport,410 DOVERCOURT RD,3,13,2019-11-28,87,Evaluation needs to be conducted in 3 years,14,5.0,4.0,4.0,5.0,4.0,4.0,,5.0,,,4.0,5.0,5.0,3.0,4.0,5.0,,4.0,,,S0934,43.65297347,-79.42636241390001,310724.394,4834560.735
-890709,4154942,2017.0,2019.0,1955.0,PRIVATE,12,Toronto-St. Paul's,3 CLAXTON BLVD,3,19,2019-11-28,59,Evaluation needs to be conducted in 1 year,15,2.0,3.0,5.0,3.0,2.0,3.0,,3.0,,2.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,S1229,43.686965094099996,-79.420416441,311200.387,4838337.511
-890710,4154941,2017.0,2019.0,1937.0,PRIVATE,12,Toronto-St. Paul's,5 CLAXTON BLVD,3,18,2019-11-28,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,4.0,2.0,4.0,,3.0,,3.0,4.0,4.0,3.0,3.0,3.0,3.0,,4.0,,,S1229,43.687110735699996,-79.4206390043,311182.429,4838353.676
-890711,4152887,2017.0,2019.0,1979.0,PRIVATE,25,Scarborough-Rouge Park,1 DEAN PARK RD,16,249,2019-11-28,83,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,5.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,3.0,,E2529,43.804482576999995,-79.1702968406,331312.86,4851442.64
-890712,4327919,2018.0,2019.0,1960.0,PRIVATE,9,Davenport,382 DOVERCOURT RD,3,18,2019-11-28,71,Evaluation needs to be conducted in 2 years,14,3.0,3.0,5.0,3.0,,3.0,,4.0,,,3.0,4.0,5.0,3.0,3.0,3.0,,4.0,4.0,,S0934,43.652044902,-79.4261489832,310741.707,4834457.583000001
-890713,4154972,2017.0,2019.0,1930.0,PRIVATE,12,Toronto-St. Paul's,210 WYCHWOOD AVE,4,40,2019-11-28,83,Evaluation needs to be conducted in 2 years,14,4.0,4.0,5.0,5.0,5.0,4.0,,4.0,,,5.0,3.0,5.0,4.0,3.0,3.0,,4.0,,,S1229,43.68442968310001,-79.4244100118,310882.965,4838047.6
-890714,4156623,2019.0,2019.0,1930.0,PRIVATE,12,Toronto-St. Paul's,145 ARLINGTON AVE,4,32,2019-11-28,79,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,3.0,3.0,4.0,5.0,4.0,4.0,,4.0,,,S1223,43.6820017447,-79.4288451992,,
-890715,4154938,2017.0,2019.0,1967.0,PRIVATE,12,Toronto-St. Paul's,39 RAGLAN AVE,9,101,2019-11-28,75,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,3.0,3.0,4.0,4.0,4.0,3.0,3.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,,S1229,43.6847829305,-79.4199516911,311238.08,4838095.101
-890716,4154961,2017.0,2019.0,1960.0,PRIVATE,12,Toronto-St. Paul's,54 RAGLAN AVE,4,16,2019-11-28,63,Evaluation needs to be conducted in 1 year,14,3.0,4.0,5.0,3.0,2.0,3.0,,4.0,,,3.0,4.0,4.0,2.0,2.0,3.0,,2.0,,,S1229,43.6845316725,-79.420531395,311191.36699999997,4838067.141
-890717,4154960,2017.0,2019.0,1967.0,PRIVATE,12,Toronto-St. Paul's,100 RAGLAN AVE,13,230,2019-11-28,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,,S1229,43.6854489,-79.4209261641,311159.446,4838169.018
-890718,4154939,2017.0,2019.0,1965.0,PRIVATE,12,Toronto-St. Paul's,105 RAGLAN AVE,6,34,2019-11-28,71,Evaluation needs to be conducted in 2 years,18,3.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,5.0,,3.0,4.0,5.0,4.0,3.0,3.0,3.0,4.0,3.0,,S1229,43.6862572017,-79.42050910350001,311192.988,4838258.855
-890719,4154940,2017.0,2019.0,1967.0,PRIVATE,12,Toronto-St. Paul's,111 RAGLAN AVE,23,175,2019-11-28,81,Evaluation needs to be conducted in 2 years,20,5.0,5.0,5.0,3.0,5.0,3.0,3.0,4.0,5.0,3.0,5.0,5.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,5.0,S1229,43.686628503,-79.4207223391,311175.75899999996,4838300.092
-890720,4154936,2017.0,2019.0,1930.0,PRIVATE,12,Toronto-St. Paul's,17 RAGLAN AVE,4,16,2019-11-28,71,Evaluation needs to be conducted in 2 years,14,3.0,4.0,5.0,3.0,,4.0,,4.0,,,4.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,,,S1229,43.6838687867,-79.4195252929,311272.55199999997,4837993.57
-890721,4154937,2017.0,2019.0,1930.0,PRIVATE,12,Toronto-St. Paul's,21 RAGLAN AVE,3,12,2019-11-28,69,Evaluation needs to be conducted in 2 years,13,3.0,4.0,5.0,3.0,,3.0,,4.0,,,3.0,3.0,5.0,2.0,3.0,4.0,,3.0,,,S1229,43.6839669504,-79.4195812784,311268.028,4838004.472
-890722,4166819,2017.0,2019.0,1991.0,SOCIAL HOUSING,12,Toronto-St. Paul's,99 VAUGHAN RD,11,106,2019-11-28,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,,S1229,43.6838774166,-79.4208933191,311162.253,4837994.424
-890723,4244932,2017.0,2019.0,2015.0,PRIVATE,12,Toronto-St. Paul's,310 TWEEDSMUIR AVE,30,251,2019-11-28,93,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,,5.0,5.0,4.0,5.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,5.0,S1230,43.6853118353,-79.41442398390001,311683.683,4838154.312
-890724,4244947,2017.0,2019.0,2014.0,PRIVATE,12,Toronto-St. Paul's,320 TWEEDSMUIR AVE,30,336,2019-11-28,93,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,,5.0,5.0,4.0,5.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,5.0,S1230,43.6859132335,-79.4145838905,311670.723,4838221.114
-890725,4154974,2017.0,2019.0,1929.0,SOCIAL HOUSING,12,Toronto-St. Paul's,175 VAUGHAN RD,4,29,2019-11-28,61,Evaluation needs to be conducted in 1 year,14,2.0,3.0,4.0,2.0,3.0,4.0,,3.0,,,2.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,S1229,43.6862643144,-79.4217422251,311093.57,4838259.553
-890726,4152804,2017.0,2019.0,1960.0,PRIVATE,24,Scarborough-Guildwood,71 GUILDWOOD PKWY,3,74,2019-11-28,86,Evaluation needs to be conducted in 3 years,19,5.0,3.0,3.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,4.0,4.0,5.0,3.0,5.0,5.0,4.0,4.0,3.0,,E2434,43.745979183,-79.202034161,328782.223,4844934.477
-890727,4152743,2017.0,2019.0,1962.0,PRIVATE,24,Scarborough-Guildwood,25 GREENBRAE CRCT,6,60,2019-11-28,83,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,5.0,5.0,5.0,4.0,3.0,3.0,3.0,3.0,5.0,5.0,3.0,4.0,5.0,4.0,5.0,4.0,,E2425,43.7587707758,-79.2323786593,326333.984,4846346.329
-890728,4152744,2017.0,2019.0,1962.0,PRIVATE,24,Scarborough-Guildwood,35 GREENBRAE CRCT,6,70,2019-11-28,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,5.0,5.0,4.0,4.0,4.0,5.0,5.0,3.0,,E2425,43.759036474,-79.231672415,326390.498,4846376.987
-890729,4152745,2017.0,2019.0,1960.0,PRIVATE,24,Scarborough-Guildwood,45 GREENBRAE CRCT,6,112,2019-11-28,83,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,5.0,5.0,4.0,3.0,5.0,4.0,3.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,3.0,,E2425,43.759429906,-79.230999363,326447.571,4846406.327
-890730,4155570,2017.0,2019.0,1970.0,TCHC,24,Scarborough-Guildwood,55 GREENBRAE CRCT,13,128,2019-11-28,82,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,1.0,5.0,4.0,3.0,5.0,,4.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,E2425,43.759551821,-79.230166356,326511.584,4846434.635
-890731,4155571,2017.0,2019.0,1970.0,TCHC,24,Scarborough-Guildwood,65 GREENBRAE CRCT,13,128,2019-11-28,84,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,3.0,5.0,4.0,3.0,3.0,,4.0,5.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,E2425,43.760034356999995,-79.229764837,326550.38399999996,4846462.077
-890732,4250636,2019.0,2019.0,1957.0,PRIVATE,12,Toronto-St. Paul's,111 LAWTON BLVD,13,152,2019-11-28,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,3.0,4.0,,3.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,5.0,S1232,43.694112715900005,-79.3967271085,313109.244,4839133.698
-890733,4153926,2018.0,2019.0,1962.0,PRIVATE,12,Toronto-St. Paul's,125 LAWTON BLVD,12,122,2019-11-28,75,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,3.0,4.0,4.0,,3.0,4.0,,4.0,3.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,,S1232,43.6945745052,-79.3968664872,313097.941,4839184.991
-890734,4153921,2017.0,2019.0,1955.0,PRIVATE,12,Toronto-St. Paul's,134 LAWTON BLVD,4,42,2019-11-28,78,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,4.0,3.0,,5.0,,4.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,,S1232,43.694344245500005,-79.3975635175,313041.791,4839159.337
-890735,4153927,2017.0,2019.0,1960.0,PRIVATE,12,Toronto-St. Paul's,135 LAWTON BLVD,9,48,2019-11-28,81,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1232,43.6949094496,-79.3968815347,313096.679,4839222.203
-890736,4156555,2017.0,2019.0,1970.0,TCHC,24,Scarborough-Guildwood,3945 LAWRENCE AVE E,3,20,2019-11-28,52,Evaluation needs to be conducted in 1 year,15,2.0,2.0,3.0,2.0,,3.0,,2.0,,,2.0,4.0,4.0,2.0,3.0,3.0,2.0,2.0,3.0,,E2431,43.7630131413,-79.2041400469,328606.14,4846825.304
-890737,4156554,2017.0,2019.0,1970.0,TCHC,24,Scarborough-Guildwood,3947 LAWRENCE AVE E,19,238,2019-11-28,73,Evaluation needs to be conducted in 2 years,18,2.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,3.0,,3.0,4.0,4.0,4.0,3.0,4.0,5.0,4.0,2.0,,E2431,43.7638127672,-79.20381674149999,328631.854,4846914.233
-890738,4153897,2017.0,2019.0,1960.0,PRIVATE,12,Toronto-St. Paul's,55 MONTCLAIR AVE,6,54,2019-11-28,82,Evaluation needs to be conducted in 2 years,19,4.0,5.0,3.0,4.0,4.0,5.0,3.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1230,43.687382201999995,-79.413225309,311779.843,4838385.392
-890739,4156252,2017.0,2019.0,1961.0,PRIVATE,25,Scarborough-Rouge Park,205 MORNINGSIDE AVE,5,107,2019-11-28,81,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,3.0,4.0,3.0,,5.0,4.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,3.0,4.0,,E2537,43.765315672,-79.184493788,330160.238,4847096.726
-890740,4155582,2017.0,2019.0,1972.0,TCHC,25,Scarborough-Rouge Park,225 MORNINGSIDE AVE,10,99,2019-11-28,71,Evaluation needs to be conducted in 2 years,19,3.0,3.0,5.0,3.0,3.0,3.0,4.0,4.0,4.0,,3.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,E2537,43.7671070711,-79.1850076952,330144.859,4847285.775
-890741,4152848,2017.0,2019.0,1972.0,PRIVATE,24,Scarborough-Guildwood,280 MORNINGSIDE AVE,14,165,2019-11-28,85,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,3.0,4.0,3.0,4.0,5.0,4.0,,4.0,5.0,5.0,4.0,5.0,4.0,5.0,3.0,4.0,5.0,E2428,43.7707432757,-79.1878549542,329914.104,4847688.883
-890742,4154513,2018.0,2019.0,1956.0,PRIVATE,8,Eglinton-Lawrence,66 WASDALE CRES,3,13,2019-11-28,44,Building Audit,16,2.0,1.0,2.0,2.0,2.0,3.0,,1.0,,,3.0,2.0,3.0,3.0,1.0,2.0,3.0,3.0,2.0,,N0823,43.7306506832,-79.43803806380001,309776.21,4843189.578
-890743,4250596,2017.0,2019.0,1938.0,PRIVATE,12,Toronto-St. Paul's,18 TICHESTER RD,4,32,2019-11-28,67,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,3.0,3.0,3.0,,2.0,,2.0,4.0,3.0,5.0,4.0,3.0,4.0,,3.0,,,S1230,43.685962783,-79.41794405899999,311399.553,4838227.295
-890744,4154931,2017.0,2019.0,1956.0,PRIVATE,12,Toronto-St. Paul's,21 TICHESTER RD,12,117,2019-11-28,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,,S1230,43.68567521600001,-79.416929405,311481.385,4838195.429
-890745,4154930,2017.0,2019.0,1964.0,PRIVATE,12,Toronto-St. Paul's,400 WALMER RD,25,547,2019-11-28,85,Evaluation needs to be conducted in 2 years,20,5.0,4.0,5.0,4.0,4.0,3.0,5.0,4.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,S1230,43.6852911437,-79.4131806469,311783.937,4838152.1219999995
-890746,4154929,2017.0,2019.0,1960.0,PRIVATE,12,Toronto-St. Paul's,450 WALMER RD,15,171,2019-11-28,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,3.0,3.0,4.0,4.0,2.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1230,43.686218485,-79.413643322,311746.53,4838255.1110000005
-890747,4153888,2017.0,2019.0,1963.0,PRIVATE,12,Toronto-St. Paul's,90 WARREN RD,5,79,2019-11-28,78,Evaluation needs to be conducted in 2 years,18,4.0,5.0,4.0,4.0,3.0,5.0,,4.0,4.0,3.0,4.0,4.0,5.0,4.0,3.0,4.0,3.0,4.0,3.0,,S1231,43.6859314457,-79.4069242127,312288.29,4838223.81
-890748,4154979,2017.0,2019.0,1930.0,PRIVATE,12,Toronto-St. Paul's,205 VAUGHAN RD,3,46,2019-11-28,71,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,4.0,3.0,3.0,,4.0,,,4.0,3.0,3.0,3.0,4.0,4.0,,3.0,,,S1229,43.6873886469,-79.42234279510001,311045.04,4838384.429
-890749,4154989,2017.0,2019.0,1934.0,PRIVATE,12,Toronto-St. Paul's,235 VAUGHAN RD,4,24,2019-11-28,77,Evaluation needs to be conducted in 2 years,13,3.0,4.0,4.0,3.0,,4.0,,5.0,,,3.0,5.0,5.0,3.0,4.0,4.0,,3.0,,,S1229,43.6881730014,-79.4242567754,310890.66,4838471.429
-890750,4153928,2017.0,2019.0,1957.0,PRIVATE,12,Toronto-St. Paul's,17 LASCELLES BLVD,17,157,2019-11-28,89,Evaluation needs to be conducted in 3 years,20,5.0,4.0,5.0,4.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,5.0,5.0,4.0,3.0,5.0,S1232,43.694972538,-79.3989252395,312931.94,4839229.006
-890751,4153929,2017.0,2019.0,1957.0,PRIVATE,12,Toronto-St. Paul's,19 LASCELLES BLVD,17,157,2019-11-28,87,Evaluation needs to be conducted in 3 years,20,3.0,5.0,5.0,3.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,5.0,5.0,4.0,3.0,5.0,S1232,43.6951982921,-79.3979278347,313012.30199999997,4839254.188
-890752,4153931,2017.0,2019.0,1957.0,PRIVATE,12,Toronto-St. Paul's,23 LASCELLES BLVD,18,235,2019-11-28,87,Evaluation needs to be conducted in 3 years,20,4.0,5.0,5.0,3.0,5.0,4.0,4.0,5.0,5.0,5.0,4.0,3.0,5.0,4.0,5.0,4.0,5.0,4.0,3.0,5.0,S1232,43.695483986899994,-79.3985426023,312962.709,4839285.868
-890753,4153932,2017.0,2019.0,1957.0,PRIVATE,12,Toronto-St. Paul's,25 LASCELLES BLVD,17,235,2019-11-28,91,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,3.0,5.0,4.0,4.0,5.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,3.0,5.0,S1232,43.6959446313,-79.3992906871,312902.346,4839336.972
-890754,4152800,2017.0,2019.0,1969.0,PRIVATE,24,Scarborough-Guildwood,225 MARKHAM RD,16,229,2019-11-28,89,Evaluation needs to be conducted in 3 years,19,5.0,3.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,3.0,4.0,4.0,5.0,5.0,5.0,5.0,4.0,3.0,,E2433,43.746190112,-79.2190765702,327409.815,4844952.188999999
-890755,4152808,2018.0,2019.0,1977.0,PRIVATE,24,Scarborough-Guildwood,399 MARKHAM RD,15,254,2019-11-28,75,Evaluation needs to be conducted in 2 years,19,5.0,3.0,5.0,5.0,3.0,5.0,5.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,,E2430,43.749222652,-79.2207962727,327270.184,4845288.627
-890756,4152846,2017.0,2019.0,1967.0,PRIVATE,24,Scarborough-Guildwood,4000 LAWRENCE AVE E,12,141,2019-11-28,85,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,5.0,4.0,5.0,5.0,,3.0,4.0,5.0,4.0,5.0,4.0,5.0,4.0,3.0,4.0,E2428,43.766112076499994,-79.20001022699999,328937.41,4847170.768999999
-890757,4152845,2017.0,2019.0,1967.0,PRIVATE,24,Scarborough-Guildwood,4010 LAWRENCE AVE E,14,220,2019-11-28,83,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,5.0,4.0,5.0,3.0,,3.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,E2428,43.7667315745,-79.1988475843,329030.765,4847239.93
-890758,4156003,2017.0,2019.0,1969.0,PRIVATE,12,Toronto-St. Paul's,33 ROSEHILL AVE,28,216,2019-11-27,87,Evaluation needs to be conducted in 3 years,19,5.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,,S1238,43.68644645,-79.39101627,313557.587,4838297.586
-890759,4153745,2017.0,2019.0,1969.0,PRIVATE,12,Toronto-St. Paul's,50 ROSEHILL AVE,23,245,2019-11-27,95,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,4.0,5.0,S1238,43.686997323,-79.391011464,313570.756,4838344.719
-890760,4153746,2017.0,2019.0,1969.0,PRIVATE,12,Toronto-St. Paul's,40 PLEASANT BLVD,32,163,2019-11-27,82,Evaluation needs to be conducted in 2 years,20,5.0,5.0,5.0,2.0,4.0,3.0,4.0,4.0,5.0,3.0,5.0,5.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,5.0,S1238,43.6875941833,-79.3924335004,313456.285,4838409.916999999
-890761,4284996,2017.0,2019.0,1969.0,PRIVATE,12,Toronto-St. Paul's,60 PLEASANT BLVD,32,163,2019-11-27,76,Evaluation needs to be conducted in 2 years,20,5.0,5.0,5.0,2.0,3.0,3.0,3.0,4.0,5.0,3.0,3.0,3.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,5.0,S1238,43.687754027,-79.391524865,313560.94399999996,4838448.416
-890762,4152742,2017.0,2019.0,1967.0,PRIVATE,24,Scarborough-Guildwood,1050 MARKHAM RD,19,295,2019-11-27,85,Evaluation needs to be conducted in 2 years,19,5.0,3.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,E2425,43.774364871,-79.231567533,326393.484,4848079.933
-890763,4152885,2017.0,2019.0,1982.0,SOCIAL HOUSING,23,Scarborough North,221 MILNER AVE,10,150,2019-11-27,88,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,E2332,43.78834752270001,-79.2401308981,325699.537,4849630.18
-890764,4152834,2017.0,2019.0,1972.0,PRIVATE,24,Scarborough-Guildwood,80 MORNELLE CRT,16,265,2019-11-27,84,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,,4.0,5.0,5.0,4.0,3.0,4.0,5.0,4.0,4.0,,E2423,43.787820399999994,-79.19753046699999,329128.055,4849584.211
-890765,4155580,2017.0,2019.0,1971.0,TCHC,24,Scarborough-Guildwood,110 MORNELLE CRT,15,145,2019-11-27,79,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,5.0,5.0,3.0,4.0,4.0,4.0,3.0,4.0,,E2423,43.786495688,-79.194414059,329379.42,4849437.971
-890766,4233286,2017.0,2019.0,1982.0,SOCIAL HOUSING,23,Scarborough North,25 THUNDER GRV,19,247,2019-11-27,89,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,3.0,5.0,4.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,5.0,E2323,43.808808732399996,-79.2654841608,323652.719,4851897.317
-890767,4155815,2017.0,2019.0,1958.0,PRIVATE,12,Toronto-St. Paul's,208 VAUGHAN RD <>,4,25,2019-11-27,71,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,3.0,3.0,3.0,,4.0,,2.0,4.0,3.0,5.0,4.0,4.0,3.0,,4.0,,,S1229,43.687290954,-79.423401887,310956.75800000003,4838372.124
-890768,4154996,2017.0,2019.0,1940.0,PRIVATE,12,Toronto-St. Paul's,261 VAUGHAN RD,3,33,2019-11-27,81,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,3.0,4.0,,5.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,S1229,43.6888528709,-79.4258553114,310761.723,4838546.846
-890769,4153734,2017.0,2019.0,1969.0,PRIVATE,11,University-Rosedale,10 LAMPORT AVE,4,36,2019-11-27,74,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,5.0,4.0,4.0,2.0,4.0,,3.0,3.0,5.0,3.0,4.0,4.0,,3.0,3.0,,S1131,43.6788601061,-79.3775615187,314656.669,4837441.278
-890770,4152836,2017.0,2019.0,1979.0,PRIVATE,24,Scarborough-Guildwood,30 LIVONIA PL,13,200,2019-11-27,96,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,4.0,,E2423,43.786028953999995,-79.204498435,328567.963,4849383.17
-890771,4152833,2017.0,2019.0,1973.0,PRIVATE,24,Scarborough-Guildwood,750 MORNINGSIDE AVE,13,165,2019-11-27,75,Evaluation needs to be conducted in 2 years,19,3.0,4.0,3.0,3.0,4.0,3.0,4.0,4.0,4.0,,3.0,4.0,5.0,3.0,4.0,4.0,5.0,4.0,3.0,4.0,E2423,43.788199733999996,-79.195048036,329327.695,4849627.083000001
-890772,4152739,2017.0,2019.0,1960.0,PRIVATE,24,Scarborough-Guildwood,3210 LAWRENCE AVE E,6,48,2019-11-27,79,Evaluation needs to be conducted in 2 years,18,5.0,3.0,5.0,5.0,4.0,5.0,,3.0,5.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,5.0,5.0,3.0,,E2424,43.756840819,-79.24196517600001,325562.476,4846130.432
-890773,4153737,2018.0,2019.0,1955.0,PRIVATE,11,University-Rosedale,45 GLEN RD,4,28,2019-11-27,87,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,4.0,5.0,4.0,,4.0,4.0,,5.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,3.0,,S1131,43.6746275863,-79.3751897997,314848.578,4836971.335
-890774,4155004,2017.0,2019.0,1980.0,PRIVATE,12,Toronto-St. Paul's,989 EGLINTON AVE W,7,146,2019-11-27,83,Evaluation needs to be conducted in 2 years,19,4.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,,3.0,4.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,S1224,43.699724260699995,-79.4303144037,310401.287,4839754.304
-890775,4156049,2017.0,2019.0,1994.0,SOCIAL HOUSING,24,Scarborough-Guildwood,1680 ELLESMERE RD,8,145,2019-11-27,87,Evaluation needs to be conducted in 3 years,19,5.0,3.0,3.0,5.0,4.0,5.0,5.0,5.0,5.0,3.0,3.0,5.0,5.0,5.0,5.0,4.0,,5.0,3.0,5.0,E2421,43.772909836000004,-79.2498185184,324924.994,4847912.75
-890776,4153945,2017.0,2019.0,1950.0,PRIVATE,12,Toronto-St. Paul's,725 EGLINTON AVE W,3,31,2019-11-27,82,Evaluation needs to be conducted in 2 years,17,4.0,5.0,4.0,4.0,4.0,3.0,,4.0,,3.0,4.0,4.0,5.0,5.0,4.0,4.0,3.0,5.0,5.0,,S1225,43.701452170399996,-79.4222090371,311054.429,4839946.865
-890777,4153738,2017.0,2019.0,1957.0,PRIVATE,11,University-Rosedale,5 ELM AVE,4,66,2019-11-27,87,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,3.0,,S1131,43.67440774600001,-79.379741579,314510.0,4836920.0
-890778,4155959,2017.0,2019.0,1957.0,PRIVATE,11,University-Rosedale,11 ELM AVE,4,59,2019-11-27,87,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,3.0,,S1131,43.6743478702,-79.3793263645,314515.075,4836939.77
-890779,4153736,2017.0,2019.0,1950.0,PRIVATE,11,University-Rosedale,83 ELM AVE,3,61,2019-11-27,87,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,4.0,5.0,4.0,,4.0,4.0,,4.0,3.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,,S1131,43.6758876849,-79.3733881455,314993.648,4837111.547
-890780,4153537,2017.0,2019.0,1965.0,PRIVATE,13,Toronto Centre,25 ST MARY ST,25,260,2019-11-27,82,Evaluation needs to be conducted in 2 years,18,5.0,5.0,5.0,5.0,4.0,4.0,3.0,3.0,5.0,,4.0,5.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,,S1321,43.6673389354,-79.3871538262,313884.939,4836160.227
-890781,4153374,2017.0,2019.0,1965.0,PRIVATE,12,Toronto-St. Paul's,160 BALMORAL AVE,12,89,2019-11-27,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,,S1237,43.684495213999995,-79.4010047716,312765.703,4838064.784
-890782,4153356,2017.0,2019.0,1965.0,PRIVATE,12,Toronto-St. Paul's,425 AVENUE RD,8,47,2019-11-27,77,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,3.0,3.0,3.0,,3.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1238,43.683390655,-79.3997224813,312869.224,4837942.185
-890783,4153937,2019.0,2019.0,1952.0,PRIVATE,12,Toronto-St. Paul's,755 AVENUE RD,4,41,2019-11-27,76,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,3.0,3.0,4.0,,3.0,5.0,4.0,3.0,3.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,,S1226,43.696987183900006,-79.4048152575,312456.901,4839452.268999999
-890784,4233268,2017.0,2019.0,1951.0,PRIVATE,12,Toronto-St. Paul's,871 AVENUE RD,3,10,2019-11-27,76,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,3.0,5.0,,5.0,,,3.0,4.0,5.0,3.0,4.0,4.0,4.0,5.0,3.0,,S1227,43.699066984,-79.4058203443,312375.626,4839683.241
-890785,4155585,2017.0,2019.0,1969.0,TCHC,22,Scarborough-Agincourt,2821 BIRCHMOUNT RD,12,237,2019-11-27,69,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,5.0,E2227,43.7985740617,-79.30512678470001,320465.905,4850752.081
-890786,4152859,2017.0,2019.0,1974.0,PRIVATE,22,Scarborough-Agincourt,25 BAY MILLS BLVD,21,281,2019-11-27,93,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,3.0,5.0,E2226,43.780734624,-79.3042139314,320543.99100000004,4848770.329
-890787,4155584,2017.0,2019.0,1970.0,TCHC,22,Scarborough-Agincourt,365 BAY MILLS BLVD,13,186,2019-11-27,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,5.0,3.0,5.0,4.0,,3.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,E2226,43.7812403712,-79.3008424612,320815.234,4848827.17
-890788,4152856,2017.0,2019.0,1971.0,PRIVATE,22,Scarborough-Agincourt,375 BAY MILLS BLVD,14,188,2019-11-27,84,Evaluation needs to be conducted in 2 years,20,4.0,5.0,5.0,2.0,4.0,4.0,4.0,4.0,3.0,4.0,5.0,5.0,3.0,5.0,4.0,5.0,5.0,5.0,3.0,5.0,E2226,43.7823877317,-79.300874192,320812.374,4848954.635
-890789,4156567,2017.0,2019.0,1979.0,PRIVATE,13,Toronto Centre,1101 BAY ST,28,265,2019-11-27,91,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,5.0,,5.0,5.0,5.0,3.0,4.0,4.0,,4.0,5.0,5.0,S1321,43.667761355100005,-79.3884160975,313791.06,4836213.3
-890790,4156624,2017.0,2019.0,1974.0,PRIVATE,22,Scarborough-Agincourt,20 AURORA CRT,14,175,2019-11-27,94,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,5.0,3.0,5.0,5.0,,E2225,43.794252697,-79.3168863935,,
-890791,4156607,2017.0,2019.0,1974.0,PRIVATE,22,Scarborough-Agincourt,30 AURORA CRT,13,167,2019-11-27,96,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,,E2225,43.794970659099995,-79.3170591991,,
-890792,4152862,2017.0,2019.0,1974.0,PRIVATE,22,Scarborough-Agincourt,40 AURORA CRT,13,167,2019-11-27,92,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,4.0,3.0,5.0,3.0,,E2225,43.79470615140001,-79.31563834399999,319601.619,4850309.607
-890793,4152861,2017.0,2019.0,1974.0,PRIVATE,22,Scarborough-Agincourt,50 AURORA CRT,14,175,2019-11-27,88,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,4.0,5.0,4.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,3.0,3.0,5.0,3.0,,E2225,43.7934585291,-79.315225557,319654.516,4850181.916999999
-890794,4154005,2017.0,2019.0,1965.0,PRIVATE,12,Toronto-St. Paul's,990 AVENUE RD,4,40,2019-11-27,86,Evaluation needs to be conducted in 3 years,19,4.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,3.0,,S1227,43.703408913500006,-79.4083878134,312168.155,4840165.401000001
-890795,4153892,2017.0,2019.0,1965.0,PRIVATE,12,Toronto-St. Paul's,1545 BATHURST ST,6,56,2019-11-27,82,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,3.0,4.0,3.0,,3.0,4.0,4.0,3.0,3.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,,S1230,43.6861472911,-79.4191187193,311305.095,4838246.749
-890796,4154992,2017.0,2019.0,1960.0,PRIVATE,12,Toronto-St. Paul's,1596-1598 BATHURST ST,5,62,2019-11-27,71,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,3.0,3.0,4.0,,3.0,4.0,3.0,4.0,3.0,5.0,3.0,3.0,3.0,,4.0,3.0,,S1229,43.688002772,-79.420528429,311180.353,4838471.794
-890797,4154991,2017.0,2019.0,1939.0,PRIVATE,12,Toronto-St. Paul's,1600 BATHURST ST,4,34,2019-11-27,68,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,4.0,3.0,3.0,,3.0,,3.0,4.0,4.0,5.0,3.0,3.0,3.0,,3.0,2.0,,S1229,43.6883914125,-79.4208539018,311164.975,4838495.947
-890798,4153893,2017.0,2019.0,1954.0,PRIVATE,12,Toronto-St. Paul's,1603 BATHURST ST,6,73,2019-11-27,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,3.0,,3.0,4.0,3.0,4.0,3.0,5.0,3.0,4.0,4.0,4.0,5.0,4.0,,S1230,43.689065755,-79.419580207,311267.32899999997,4838571.916999999
-890799,4154997,2017.0,2019.0,1930.0,PRIVATE,12,Toronto-St. Paul's,1650 BATHURST ST,3,25,2019-11-27,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,3.0,3.0,,4.0,,3.0,4.0,5.0,5.0,4.0,4.0,5.0,3.0,5.0,4.0,,S1224,43.693814525,-79.4231231926,310981.49600000004,4839098.2639999995
-890800,4155000,2017.0,2019.0,1950.0,PRIVATE,12,Toronto-St. Paul's,1652 BATHURST ST,4,39,2019-11-27,84,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,5.0,4.0,,4.0,,,5.0,3.0,5.0,4.0,4.0,4.0,,5.0,4.0,,S1224,43.6942486943,-79.4234335468,310956.436,4839146.473999999
-890801,4154998,2017.0,2019.0,1941.0,PRIVATE,12,Toronto-St. Paul's,1660 BATHURST ST,3,52,2019-11-27,75,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,,3.0,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,3.0,,S1224,43.6950513231,-79.4234851985,310952.196,4839235.6389999995
-890802,4155001,2017.0,2019.0,1951.0,PRIVATE,12,Toronto-St. Paul's,1862 BATHURST ST,7,75,2019-11-27,76,Evaluation needs to be conducted in 2 years,17,5.0,4.0,5.0,3.0,4.0,3.0,,3.0,4.0,3.0,3.0,3.0,5.0,5.0,4.0,4.0,,4.0,3.0,,S1224,43.697599459399996,-79.42456803350001,310864.673,4839518.652
-890803,4156287,2017.0,2019.0,1930.0,PRIVATE,12,Toronto-St. Paul's,2 CONNAUGHT CRCL,3,15,2019-11-27,76,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,3.0,3.0,,4.0,,,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,2.0,,S1229,43.6887249387,-79.42557923300001,310769.358,4838520.745
-890804,4156319,2017.0,2019.0,1979.0,PRIVATE,25,Scarborough-Rouge Park,250 BRENYON WAY,21,208,2019-11-27,92,Evaluation needs to be conducted in 3 years,20,4.0,5.0,5.0,5.0,4.0,4.0,4.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,4.0,4.0,E2524,,,327869.235,4851587.699
-890805,4250524,2017.0,2019.0,1971.0,PRIVATE,22,Scarborough-Agincourt,10 CHICHESTER PL,16,220,2019-11-27,82,Evaluation needs to be conducted in 2 years,20,5.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,2.0,4.0,4.0,3.0,4.0,4.0,5.0,E2225,43.776428638,-79.32148352600001,319154.674,4848289.796
-890806,4152876,2017.0,2019.0,1974.0,PRIVATE,22,Scarborough-Agincourt,10 CARABOB CRT,15,196,2019-11-27,87,Evaluation needs to be conducted in 3 years,19,4.0,4.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,4.0,4.0,5.0,5.0,4.0,3.0,3.0,5.0,5.0,3.0,,E2229,43.7832508381,-79.29765448149999,321071.297,4849051.152
-890807,4152877,2017.0,2019.0,1970.0,PRIVATE,22,Scarborough-Agincourt,20 CARABOB CRT,15,195,2019-11-27,83,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,3.0,,E2229,43.782204738599994,-79.2977983352,321060.001,4848934.904
-890808,4152878,2017.0,2019.0,1971.0,PRIVATE,22,Scarborough-Agincourt,30 CARABOB CRT,15,195,2019-11-27,87,Evaluation needs to be conducted in 3 years,18,4.0,4.0,5.0,5.0,4.0,5.0,4.0,4.0,3.0,,3.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,3.0,,E2229,43.7818699138,-79.29665585810001,321152.05199999997,4848897.931
-890809,4152879,2017.0,2019.0,1974.0,PRIVATE,22,Scarborough-Agincourt,40 CARABOB CRT,15,196,2019-11-27,95,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,4.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,,E2229,43.7824433575,-79.2956106966,321236.023,4848961.847
-890810,4152880,2017.0,2019.0,1974.0,PRIVATE,22,Scarborough-Agincourt,50 CARABOB CRT,15,197,2019-11-27,87,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,5.0,5.0,5.0,5.0,3.0,5.0,4.0,4.0,5.0,5.0,5.0,3.0,5.0,2.0,5.0,3.0,,E2229,43.783622971199996,-79.2962340967,321185.524,4849092.775
-890811,4245676,2017.0,2019.0,1967.0,PRIVATE,12,Toronto-St. Paul's,321 CHAPLIN CRES,8,74,2019-11-27,84,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,3.0,5.0,4.0,5.0,,S1226,43.702357515200006,-79.4173230681,311448.141,4840047.833000001
-890812,4153551,2017.0,2019.0,1915.0,PRIVATE,11,University-Rosedale,30 CHARLES ST E,3,21,2019-11-27,77,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,3.0,3.0,3.0,,3.0,,4.0,3.0,4.0,5.0,4.0,5.0,4.0,,4.0,,,S1137,43.669198906999995,-79.384815824,314072.94899999996,4836368.069
-890813,4153538,2017.0,2019.0,1958.0,PRIVATE,13,Toronto Centre,55 CHARLES ST E,9,75,2019-11-27,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,3.0,3.0,,3.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,3.0,,S1322,43.66890094,-79.383531696,314176.813,4836334.156
-890814,4153517,2017.0,2019.0,1981.0,PRIVATE,11,University-Rosedale,55 CHARLES ST W,32,147,2019-11-27,87,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,,3.0,5.0,5.0,4.0,4.0,4.0,,4.0,5.0,,S1136,43.66768493520001,-79.3890195894,313734.416,4836198.46
-890815,4153516,2017.0,2019.0,1977.0,PRIVATE,11,University-Rosedale,57 CHARLES ST W,21,250,2019-11-27,94,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,,5.0,4.0,5.0,4.0,4.0,5.0,5.0,4.0,5.0,,S1136,43.6677808875,-79.3895276308,313693.429,4836209.063999999
-890816,4218633,2017.0,2019.0,1967.0,PRIVATE,12,Toronto-St. Paul's,77 ST CLAIR AVE E,20,185,2019-11-27,71,Evaluation needs to be conducted in 2 years,19,3.0,4.0,5.0,4.0,3.0,4.0,2.0,4.0,4.0,,3.0,3.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,3.0,S1238,43.68845738899999,-79.390866323,313582.244,4838506.945
-890817,4153750,2017.0,2019.0,1970.0,PRIVATE,12,Toronto-St. Paul's,80 ST CLAIR AVE E,26,307,2019-11-27,91,Evaluation needs to be conducted in 3 years,20,4.0,4.0,5.0,5.0,4.0,3.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,S1233,43.689146769,-79.390517749,313610.245,4838583.573
-890818,4155021,2017.0,2019.0,1971.0,PRIVATE,12,Toronto-St. Paul's,300 WINNETT AVE,4,35,2019-11-27,83,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,3.0,,5.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S1223,43.691627521,-79.434491531,310065.019,4838855.446
-890819,4153742,2017.0,2019.0,1986.0,PRIVATE,11,University-Rosedale,22 WOODLAWN AVE E,5,25,2019-11-27,78,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,3.0,3.0,,4.0,4.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S1121,43.6845417395,-79.3910501219,313568.256,4838070.946
-890820,4153518,2017.0,2019.0,1927.0,PRIVATE,13,Toronto Centre,16 ST JOSEPH ST,4,37,2019-11-27,79,Evaluation needs to be conducted in 2 years,14,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,,,4.0,4.0,5.0,3.0,4.0,4.0,,3.0,,,S1321,43.666396149200004,-79.3863015962,313953.812,4836055.585
-890821,4152851,2017.0,2019.0,1970.0,PRIVATE,22,Scarborough-Agincourt,3275 SHEPPARD AVE E,17,219,2019-11-27,84,Evaluation needs to be conducted in 2 years,20,5.0,4.0,5.0,3.0,4.0,3.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,3.0,5.0,E2230,43.777664481,-79.310076811,320080.96,4848422.677
-890822,4152870,2017.0,2019.0,1968.0,PRIVATE,22,Scarborough-Agincourt,3735 SHEPPARD AVE E,4,52,2019-11-27,83,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,3.0,5.0,3.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,,E2232,43.7810845583,-79.2961863382,321190.058,4848810.773
-890823,4153739,2017.0,2019.0,1950.0,PRIVATE,11,University-Rosedale,4 SHERBOURNE ST N,4,34,2019-11-27,86,Evaluation needs to be conducted in 3 years,17,5.0,5.0,4.0,5.0,5.0,4.0,5.0,4.0,,,5.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,,S1131,43.6740184548,-79.3778037961,314637.899,4836903.35
-890824,4152892,2018.0,2019.0,1970.0,PRIVATE,23,Scarborough North,5600 SHEPPARD AVE E,10,120,2019-11-27,92,Evaluation needs to be conducted in 3 years,18,3.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,,5.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,,E2330,43.7950106411,-79.2363445715,326001.92699999997,4850371.395
-890825,4156076,2017.0,2019.0,1979.0,PRIVATE,23,Scarborough North,1580 SANDHURST CRCL,20,238,2019-11-27,89,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,5.0,,4.0,4.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,5.0,E2322,43.807671203999995,-79.271262134,323198.048,4851844.093
-890826,4156342,2017.0,2019.0,1979.0,PRIVATE,23,Scarborough North,1600 SANDHURST CRCL,20,238,2019-11-27,89,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,5.0,,4.0,4.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,5.0,E2322,43.807552003000005,-79.272681054,323231.122,4851727.6389999995
-890827,4152819,2017.0,2019.0,1968.0,PRIVATE,24,Scarborough-Guildwood,567 SCARBOROUGH GOLF CLUB RD,16,224,2019-11-27,84,Evaluation needs to be conducted in 2 years,19,5.0,3.0,5.0,5.0,3.0,5.0,5.0,5.0,5.0,3.0,3.0,5.0,5.0,4.0,3.0,5.0,4.0,4.0,3.0,,E2431,43.761339074,-79.2150743506,327726.39,4846636.265
-890828,4152825,2017.0,2019.0,1968.0,PRIVATE,24,Scarborough-Guildwood,10 TUXEDO CRT,15,210,2019-11-27,88,Evaluation needs to be conducted in 3 years,19,5.0,3.0,5.0,5.0,5.0,5.0,5.0,3.0,5.0,5.0,4.0,5.0,5.0,5.0,3.0,3.0,5.0,5.0,3.0,,E2422,43.7793949183,-79.231861667,326368.261,4848637.703
-890829,4154965,2017.0,2019.0,1940.0,PRIVATE,12,Toronto-St. Paul's,100 VAUGHAN RD,4,33,2019-11-27,74,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,3.0,3.0,4.0,,4.0,,4.0,3.0,3.0,4.0,3.0,4.0,4.0,,3.0,4.0,,S1229,43.683796755500005,-79.4215781204,311107.05,4837985.411
-890830,4152827,2017.0,2019.0,1968.0,PRIVATE,24,Scarborough-Guildwood,30 TUXEDO CRT,15,214,2019-11-27,87,Evaluation needs to be conducted in 3 years,19,5.0,3.0,5.0,5.0,5.0,5.0,5.0,3.0,4.0,5.0,4.0,5.0,5.0,5.0,3.0,3.0,5.0,5.0,3.0,,E2422,43.7813130122,-79.2295091754,326556.93100000004,4848851.41
-890831,4154969,2017.0,2019.0,1960.0,PRIVATE,12,Toronto-St. Paul's,142 VAUGHAN RD,4,27,2019-11-27,72,Evaluation needs to be conducted in 2 years,17,4.0,5.0,3.0,3.0,3.0,3.0,,3.0,,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,,S1229,43.685120500000004,-79.4220842022,311066.115,4838132.443
-890832,4154985,2017.0,2019.0,1920.0,PRIVATE,12,Toronto-St. Paul's,172 VAUGHAN RD,3,24,2019-11-27,83,Evaluation needs to be conducted in 2 years,16,5.0,5.0,4.0,4.0,4.0,4.0,,4.0,,4.0,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S1229,43.6862874018,-79.4225082434,311031.811,4838262.062
-890833,4154984,2017.0,2019.0,1955.0,PRIVATE,12,Toronto-St. Paul's,180 VAUGHAN RD,4,22,2019-11-27,69,Evaluation needs to be conducted in 2 years,14,4.0,4.0,3.0,3.0,,3.0,,4.0,,,4.0,3.0,2.0,4.0,4.0,3.0,,3.0,4.0,,S1229,43.6865568405,-79.42264744399999,311020.562,4838291.988
-890834,4233307,2017.0,2019.0,1986.0,SOCIAL HOUSING,12,Toronto-St. Paul's,31 TICHESTER RD,15,174,2019-11-27,78,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,4.0,3.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,5.0,4.0,4.0,S1230,43.6853017026,-79.418858111,311326.19399999996,4838152.823
-890835,4152832,2017.0,2019.0,1974.0,PRIVATE,24,Scarborough-Guildwood,51 TRAILRIDGE CRES,17,200,2019-11-27,87,Evaluation needs to be conducted in 3 years,20,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,5.0,5.0,5.0,4.0,4.0,4.0,E2423,43.78311931,-79.206148943,328436.268,4849059.449
-890836,4156390,2017.0,2019.0,1971.0,TCHC,22,Scarborough-Agincourt,2739 VICTORIA PARK AVE,15,203,2019-11-27,74,Evaluation needs to be conducted in 2 years,20,3.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,2.0,3.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,E2225,43.778310557,-79.32353353399999,318941.968,4848494.812
-890837,4155942,2017.0,2019.0,1971.0,TCHC,22,Scarborough-Agincourt,2743 VICTORIA PARK AVE,15,201,2019-11-27,72,Evaluation needs to be conducted in 2 years,20,3.0,3.0,4.0,3.0,4.0,4.0,3.0,5.0,3.0,3.0,2.0,3.0,5.0,5.0,4.0,4.0,3.0,4.0,3.0,4.0,E2225,43.779266936999996,-79.323413406,318912.61199999996,4848579.722
-890838,4152875,2017.0,2019.0,1960.0,PRIVATE,22,Scarborough-Agincourt,2250 KENNEDY RD,18,136,2019-11-27,92,Evaluation needs to be conducted in 3 years,19,4.0,4.0,5.0,5.0,5.0,5.0,4.0,4.0,5.0,4.0,5.0,5.0,5.0,5.0,3.0,5.0,5.0,5.0,4.0,,E2232,43.782236795799996,-79.2884509141,321812.36600000004,4848940.348
-890839,4152884,2017.0,2019.0,1980.0,PRIVATE,23,Scarborough North,30 KIMBERCROFT CRT,8,94,2019-11-27,85,Evaluation needs to be conducted in 2 years,19,5.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,E2332,43.7906958495,-79.2383755375,325839.99100000004,4849891.516
-890840,4153743,2017.0,2019.0,1969.0,PRIVATE,11,University-Rosedale,7 JACKES AVE,28,267,2019-11-27,82,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,S1121,43.684672948999996,-79.391651748,313519.467,4838086.41
-890841,4153542,2017.0,2019.0,1955.0,PRIVATE,13,Toronto Centre,42 ISABELLA ST,4,24,2019-11-27,83,Evaluation needs to be conducted in 2 years,14,4.0,5.0,5.0,4.0,3.0,4.0,,4.0,,,3.0,4.0,5.0,4.0,5.0,4.0,,4.0,,,S1322,43.66829815,-79.383729477,314160.693,4836268.121
-890842,4153541,2017.0,2019.0,1960.0,PRIVATE,13,Toronto Centre,48 ISABELLA ST,10,84,2019-11-27,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,,S1322,43.668324,-79.383444564,314183.666,4836271.025
-890843,4153744,2017.0,2019.0,1967.0,PRIVATE,12,Toronto-St. Paul's,44 JACKES AVE,24,411,2019-11-27,80,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,5.0,4.0,4.0,3.0,5.0,3.0,3.0,5.0,S1238,43.6857858,-79.391174558,313557.781,4838210.101
-890844,4155999,2017.0,2019.0,1970.0,TCHC,5,York South-Weston,30 FALSTAFF AVE,19,221,2019-11-26,71,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,2.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,4.0,5.0,3.0,4.0,3.0,4.0,3.0,4.0,,W0522,43.7164211106,-79.5052233382,304363.605,4841606.944
-890845,4156268,2017.0,2019.0,1970.0,TCHC,21,Scarborough Centre,49 GILDER DR,6,22,2019-11-26,76,Evaluation needs to be conducted in 2 years,18,2.0,5.0,5.0,3.0,3.0,4.0,3.0,4.0,4.0,,2.0,4.0,5.0,4.0,3.0,5.0,5.0,4.0,3.0,,E2134,43.7365696854,-79.255181683,324505.1,4843874.254
-890846,4153460,2017.0,2019.0,1985.0,TCHC,11,University-Rosedale,25 ELM ST,16,101,2019-11-26,86,Evaluation needs to be conducted in 3 years,17,4.0,4.0,4.0,4.0,5.0,5.0,3.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,5.0,,5.0,5.0,,S1145,43.6573608881,-79.3829351361,314226.76,4835052.209
-890847,4268877,,2019.0,,TCHC,21,Scarborough Centre,83 GILDER DR,6,24,2019-11-26,78,Evaluation needs to be conducted in 2 years,18,3.0,5.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,2.0,4.0,5.0,4.0,3.0,4.0,5.0,4.0,3.0,,E2134,43.7363547745,-79.25389806529999,324608.572,4843850.685
-890848,4289265,,2019.0,,SOCIAL HOUSING,11,University-Rosedale,150 ELIZABETH ST,17,250,2019-11-26,97,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,,5.0,5.0,5.0,5.0,4.0,5.0,,5.0,5.0,5.0,S1145,43.656497402,-79.385911624,313986.547,4834956.89
-890849,4171378,2017.0,2019.0,1973.0,PRIVATE,11,University-Rosedale,77 GERRARD ST W,22,220,2019-11-26,95,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,5.0,,4.0,5.0,5.0,5.0,5.0,5.0,,5.0,5.0,,S1145,,,314029.142,4835153.24
-890850,4152763,2017.0,2019.0,1965.0,PRIVATE,21,Scarborough Centre,370 MCCOWAN RD,15,207,2019-11-26,79,Evaluation needs to be conducted in 2 years,20,5.0,4.0,5.0,3.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,5.0,5.0,3.0,4.0,4.0,4.0,3.0,4.0,5.0,E2135,43.7399757697,-79.2395009689,325767.041,4844256.48
-890851,4152858,2017.0,2019.0,1972.0,PRIVATE,22,Scarborough-Agincourt,2350 BIRCHMOUNT RD,13,190,2019-11-26,88,Evaluation needs to be conducted in 3 years,19,4.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,,5.0,4.0,5.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,E2226,43.7815431046,-79.299799325,320899.11600000004,4848861.007
-890852,4152857,2017.0,2019.0,1971.0,PRIVATE,22,Scarborough-Agincourt,2360 BIRCHMOUNT RD,13,186,2019-11-26,88,Evaluation needs to be conducted in 3 years,19,4.0,5.0,5.0,5.0,3.0,5.0,5.0,5.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,,E2226,43.78293932729999,-79.2995706265,320917.149,4849016.171
-890853,4153198,2017.0,2019.0,1965.0,PRIVATE,11,University-Rosedale,11 YORKVILLE AVE,9,76,2019-11-26,78,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S1128,43.6716015637,-79.3882501798,313795.908,4836633.662
-890854,4233328,2017.0,2019.0,1926.0,PRIVATE,11,University-Rosedale,8 ST THOMAS ST,4,16,2019-11-26,77,Evaluation needs to be conducted in 2 years,14,4.0,4.0,5.0,3.0,4.0,3.0,,4.0,,,4.0,3.0,5.0,4.0,3.0,4.0,,4.0,,,S1136,43.6684272158,-79.3909472151,313578.849,4836280.711
-890855,4153208,2017.0,2019.0,1960.0,PRIVATE,11,University-Rosedale,145 ST GEORGE ST,12,130,2019-11-26,75,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,4.0,4.0,5.0,3.0,,S1127,43.669080493,-79.399842813,312861.092,4836353.297
-890856,4153209,2017.0,2019.0,1968.0,PRIVATE,11,University-Rosedale,149 ST GEORGE ST,7,48,2019-11-26,71,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,3.0,4.0,,4.0,3.0,3.0,3.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,S1127,43.669299728999995,-79.400091636,312840.999,4836377.6280000005
-890857,4153468,,2019.0,1959.0,PRIVATE,11,University-Rosedale,710 SPADINA AVE,7,62,2019-11-26,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,3.0,4.0,3.0,5.0,,4.0,4.0,,4.0,4.0,4.0,4.0,3.0,4.0,4.0,5.0,4.0,,S1134,43.665065952,-79.4034815,312568.165,4835906.964
-890858,4153176,2017.0,2019.0,1972.0,SOCIAL HOUSING,11,University-Rosedale,14 SPADINA RD,6,103,2019-11-26,84,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,S1126,43.6678434794,-79.4049570473,312449.082,4836214.442
-890859,4255628,2017.0,2019.0,2007.0,PRIVATE,11,University-Rosedale,50 SPADINA RD,8,55,2019-11-26,82,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,4.0,,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,S1126,43.669438916000004,-79.405207226,312424.26300000004,4836380.481000001
-890860,4153217,2017.0,2019.0,1957.0,PRIVATE,11,University-Rosedale,59 SPADINA RD,10,57,2019-11-26,74,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,3.0,5.0,,4.0,3.0,3.0,3.0,4.0,5.0,3.0,4.0,3.0,5.0,3.0,3.0,,S1127,43.669561906700004,-79.404633152,312474.989,4836405.38
-890861,4153190,2018.0,2019.0,1965.0,PRIVATE,11,University-Rosedale,66 SPADINA RD,11,75,2019-11-26,75,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,4.0,3.0,,4.0,3.0,,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,2.0,,S1126,43.670088649499995,-79.4054989644,312405.105,4836463.821
-890862,4155901,2017.0,2019.0,2009.0,PRIVATE,11,University-Rosedale,88 SPADINA RD,5,91,2019-11-26,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1126,43.6713286257,-79.4059886659,312365.468,4836601.532
-890863,4167462,2017.0,2019.0,1969.0,PRIVATE,11,University-Rosedale,100 SPADINA RD,23,216,2019-11-26,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,3.0,4.0,3.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,S1126,43.671869216000005,-79.406368935,312344.86,4836670.072
-890864,4153183,2018.0,2019.0,1919.0,PRIVATE,11,University-Rosedale,38 BARTON AVE,4,18,2019-11-26,73,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,3.0,4.0,,3.0,,,3.0,4.0,3.0,3.0,4.0,4.0,,4.0,3.0,,S1125,43.668063591000006,-79.413898107,311727.76,4836239.086
-890865,4153394,2017.0,2019.0,1980.0,PRIVATE,13,Toronto Centre,90 ADELAIDE ST E,8,60,2019-11-26,83,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,5.0,4.0,4.0,5.0,3.0,5.0,,5.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,4.0,,S1334,43.651581463999996,-79.37405760899999,314943.48,4834412.106000001
-890866,4171374,2017.0,2019.0,2013.0,PRIVATE,10,Spadina-Fort York,570 BAY ST,29,463,2019-11-26,100,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,5.0,,5.0,,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,S1025,,,314153.011,4834834.397
-890867,4153234,2017.0,2019.0,1966.0,PRIVATE,11,University-Rosedale,88 BERNARD AVE,11,82,2019-11-26,73,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,4.0,4.0,4.0,,5.0,3.0,3.0,4.0,3.0,5.0,3.0,4.0,3.0,2.0,4.0,4.0,,S1127,43.673266415,-79.401942382,312691.256,4836818.126
-890868,4264915,2017.0,2019.0,1959.0,PRIVATE,11,University-Rosedale,103 AVENUE RD,11,124,2019-11-26,87,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1128,43.672819085,-79.395361896,313221.95399999997,4836769.088
-890869,4242011,2017.0,2019.0,1963.0,PRIVATE,11,University-Rosedale,131 BLOOR ST W,14,157,2019-11-26,81,Evaluation needs to be conducted in 2 years,20,5.0,5.0,5.0,4.0,3.0,4.0,5.0,3.0,4.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,S1136,43.668762012799995,-79.3923975104,313461.835,4836317.74
-890870,4155753,2017.0,2019.0,1992.0,PRIVATE,11,University-Rosedale,336 CLINTON ST,3,17,2019-11-26,81,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1133,43.6627487004,-79.4174033542,311445.983,4835647.429
-890871,4153178,2017.0,2019.0,1919.0,PRIVATE,11,University-Rosedale,334 BLOOR ST W,3,24,2019-11-26,68,Evaluation needs to be conducted in 2 years,15,3.0,4.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,4.0,3.0,,5.0,,,S1126,43.666839079700004,-79.404253282,312505.959,4836102.924
-890872,4153469,2017.0,2019.0,1980.0,TCHC,11,University-Rosedale,341 BLOOR ST W,18,326,2019-11-26,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,3.0,3.0,4.0,5.0,4.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,3.0,,4.0,4.0,4.0,S1135,43.6670231538,-79.4007760515,312786.358,4836123.699
-890873,4153170,2017.0,2019.0,1920.0,PRIVATE,11,University-Rosedale,711 BLOOR ST W,3,12,2019-11-26,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,4.0,3.0,4.0,,4.0,,,4.0,3.0,5.0,2.0,2.0,3.0,3.0,3.0,,,S1133,43.663485375600004,-79.4178022467,311413.725,4835729.2360000005
-890874,4153185,2017.0,2019.0,1960.0,PRIVATE,11,University-Rosedale,375 BRUNSWICK AVE,9,63,2019-11-26,70,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,4.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,3.0,5.0,3.0,,S1126,43.6684734257,-79.4081015431,312195.42600000004,4836284.143999999
-890875,4153539,2017.0,2019.0,1930.0,PRIVATE,13,Toronto Centre,61 CHARLES ST E,3,24,2019-11-26,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,2.0,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,S1322,43.6689268279,-79.3832377499,314200.51399999997,4836337.065
-890876,4152761,2017.0,2019.0,1958.0,PRIVATE,21,Scarborough Centre,1275 DANFORTH RD,7,114,2019-11-26,89,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,,E2135,43.739765596999995,-79.244887237,325340.75,4844214.535
-890877,4152756,2017.0,2019.0,1960.0,PRIVATE,21,Scarborough Centre,1284 DANFORTH RD,7,95,2019-11-26,87,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,5.0,E2135,43.7402230194,-79.24612372930001,325233.516,4844282.298
-890878,4152767,2017.0,2019.0,1967.0,PRIVATE,21,Scarborough Centre,1299 DANFORTH RD,12,138,2019-11-26,87,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,3.0,4.0,3.0,4.0,5.0,5.0,,4.0,3.0,5.0,5.0,5.0,5.0,5.0,4.0,3.0,,E2135,43.740965573400004,-79.2446148639,325354.80100000004,4844365.163
-890879,4152751,2017.0,2019.0,1969.0,PRIVATE,21,Scarborough Centre,1320 DANFORTH RD,4,67,2019-11-26,74,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,4.0,2.0,,3.0,5.0,,4.0,4.0,5.0,2.0,4.0,4.0,3.0,3.0,5.0,,E2135,43.742526167,-79.24582411,325256.61600000004,4844539.193
-890880,4152752,2017.0,2019.0,1967.0,PRIVATE,21,Scarborough Centre,1330 DANFORTH RD,4,48,2019-11-26,71,Evaluation needs to be conducted in 2 years,17,4.0,4.0,3.0,3.0,4.0,2.0,,3.0,5.0,,3.0,4.0,5.0,4.0,3.0,4.0,3.0,4.0,2.0,,E2135,43.7429249533,-79.24595788,325245.967,4844582.508
-890881,4153225,2017.0,2019.0,1964.0,PRIVATE,11,University-Rosedale,177 ST GEORGE ST,8,57,2019-11-26,84,Evaluation needs to be conducted in 2 years,17,5.0,5.0,4.0,3.0,5.0,3.0,,4.0,5.0,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,,S1127,43.671145731,-79.400916019,312774.284,4836582.6280000005
-890882,4153222,2017.0,2019.0,1968.0,PRIVATE,11,University-Rosedale,206 ST GEORGE ST,11,105,2019-11-26,73,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,4.0,4.0,,3.0,3.0,,4.0,3.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,,S1127,43.670727396000004,-79.40165065800001,312715.094,4836536.086
-890883,4153219,2017.0,2019.0,1969.0,PRIVATE,11,University-Rosedale,250 ST GEORGE ST,11,64,2019-11-26,86,Evaluation needs to be conducted in 3 years,19,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,,S1127,43.672709905,-79.40239631,312654.72,4836756.26
-890884,4153207,2017.0,2019.0,1968.0,PRIVATE,11,University-Rosedale,20 PRINCE ARTHUR AVE,23,193,2019-11-26,79,Evaluation needs to be conducted in 2 years,20,5.0,4.0,5.0,3.0,3.0,4.0,4.0,3.0,4.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,S1127,43.6698986965,-79.3965574738,313126.188,4836443.565
-890885,4153213,2017.0,2019.0,1968.0,PRIVATE,11,University-Rosedale,50 PRINCE ARTHUR AVE,19,149,2019-11-26,85,Evaluation needs to be conducted in 2 years,20,5.0,4.0,5.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,5.0,5.0,5.0,4.0,4.0,S1127,43.6694516489,-79.3986101072,312960.717,4836393.695
-890886,4153560,2017.0,2019.0,1994.0,SOCIAL HOUSING,13,Toronto Centre,31 PRINCESS ST,10,82,2019-11-26,82,Evaluation needs to be conducted in 2 years,17,4.0,5.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,3.0,5.0,4.0,4.0,4.0,,5.0,4.0,,S1335,43.6500861,-79.366016015,315596.755,4834258.353999999
-890887,4156533,2017.0,2019.0,1978.0,PRIVATE,22,Scarborough-Agincourt,75 SILVER SPRINGS BLVD,9,153,2019-11-26,87,Evaluation needs to be conducted in 3 years,19,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,3.0,4.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,5.0,,E2223,43.801480966999996,-79.302703022,,
-890888,4155631,,2019.0,2019.0,SOCIAL HOUSING,8,Eglinton-Lawrence,2 REPLIN RD,4,30,2019-11-26,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,5.0,3.0,3.0,2.0,,3.0,,3.0,3.0,3.0,4.0,3.0,3.0,2.0,,3.0,3.0,,N0823,43.7185874066,-79.4436438925,309325.485,4841849.061000001
-890889,4156516,2017.0,2019.0,1978.0,PRIVATE,22,Scarborough-Agincourt,85 SILVER SPRINGS BLVD,9,133,2019-11-26,87,Evaluation needs to be conducted in 3 years,19,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,3.0,4.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,5.0,,E2223,43.801321025,-79.304237888,320562.482,4850959.102
-890890,4156521,2017.0,2019.0,1978.0,PRIVATE,22,Scarborough-Agincourt,65 SILVER SPRINGS BLVD,9,88,2019-11-26,89,Evaluation needs to be conducted in 3 years,19,5.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,5.0,,E2223,43.801321025,-79.304237888,320562.482,4850959.102
-890891,4152765,2017.0,2019.0,1960.0,PRIVATE,21,Scarborough Centre,30 TRUDELLE ST,6,58,2019-11-26,89,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,4.0,4.0,4.0,,5.0,4.0,,5.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,,E2135,43.740125926800005,-79.24293182939999,325490.646,4844272.302
-890892,4152764,2017.0,2019.0,1969.0,PRIVATE,21,Scarborough Centre,50 TRUDELLE ST,7,131,2019-11-26,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,,3.0,4.0,5.0,4.0,4.0,3.0,3.0,4.0,4.0,,E2135,43.740721248,-79.240407141,325693.538,4844340.024
-890893,4152732,2017.0,2019.0,1956.0,PRIVATE,21,Scarborough Centre,2 TREEWOOD ST,7,82,2019-11-26,92,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,,5.0,5.0,5.0,4.0,5.0,4.0,3.0,4.0,5.0,,E2129,43.754044973999996,-79.265154241,323696.081,4845814.301
-890894,4156229,2017.0,2019.0,1965.0,PRIVATE,11,University-Rosedale,30 HILLSBORO AVE,24,196,2019-11-26,84,Evaluation needs to be conducted in 2 years,20,5.0,4.0,5.0,4.0,4.0,3.0,4.0,3.0,5.0,4.0,3.0,4.0,5.0,4.0,5.0,4.0,4.0,5.0,4.0,5.0,S1128,43.675673246,-79.39285787600001,313423.49600000004,4837086.446
-890895,4153230,2017.0,2019.0,1965.0,PRIVATE,11,University-Rosedale,50 HILLSBORO AVE,24,196,2019-11-26,84,Evaluation needs to be conducted in 2 years,20,5.0,4.0,5.0,4.0,3.0,3.0,5.0,3.0,5.0,3.0,4.0,4.0,5.0,4.0,5.0,4.0,4.0,5.0,4.0,5.0,S1128,43.675830415,-79.393625247,313361.593,4837103.826
-890896,4153194,2019.0,2019.0,1920.0,PRIVATE,11,University-Rosedale,245 A HOWLAND AVE,3,24,2019-11-26,74,Evaluation needs to be conducted in 2 years,14,3.0,4.0,5.0,3.0,,3.0,,3.0,,,4.0,4.0,5.0,3.0,4.0,3.0,,4.0,4.0,,S1126,43.672858631000004,-79.411200872,311944.724,4836772.006
-890897,4156449,2017.0,2019.0,1920.0,PRIVATE,11,University-Rosedale,245 C HOWLAND AVE,3,25,2019-11-26,75,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,3.0,3.0,3.0,,4.0,,,4.0,4.0,5.0,3.0,4.0,3.0,,4.0,4.0,,S1126,43.672928934,-79.411230102,311942.359,4836779.813999999
-890898,4166996,2017.0,2019.0,1955.0,PRIVATE,11,University-Rosedale,130 ROSEDALE VALLEY RD,9,99,2019-11-26,92,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,,S1129,43.6741662925,-79.3857275041,313998.95399999997,4836918.869
-890899,4153382,2017.0,2019.0,1997.0,SOCIAL HOUSING,10,Spadina-Fort York,85 THE ESPLANADE,7,128,2019-11-26,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,3.0,3.0,4.0,,3.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,,S1038,43.6473212947,-79.37296407470001,315032.675,4833938.007
-890900,4153463,2019.0,2019.0,1900.0,PRIVATE,11,University-Rosedale,378 MARKHAM ST,4,17,2019-11-26,45,Building Audit,15,2.0,2.0,4.0,1.0,2.0,3.0,,2.0,,,2.0,2.0,5.0,2.0,2.0,1.0,2.0,2.0,,,S1133,43.6584478213,-79.4103098841,312018.591,4835170.181
-890901,4153168,2017.0,2019.0,1930.0,PRIVATE,11,University-Rosedale,496 MONTROSE AVE,3,24,2019-11-26,45,Building Audit,15,2.0,3.0,5.0,1.0,2.0,2.0,,1.0,,,2.0,2.0,2.0,2.0,2.0,3.0,2.0,3.0,,,S1132,43.662851529799994,-79.4210660752,311150.555,4835658.55
-890902,4254280,2017.0,2019.0,1957.0,PRIVATE,21,Scarborough Centre,2700 LAWRENCE AVE E,7,111,2019-11-26,72,Evaluation needs to be conducted in 2 years,20,3.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,E2129,43.752739741999996,-79.26107689199999,324024.834,4845670.215
-890903,4153189,2017.0,2019.0,1966.0,PRIVATE,11,University-Rosedale,35 WALMER RD,15,174,2019-11-26,82,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,3.0,4.0,S1126,43.66913353899999,-79.405620062,312395.193,4836358.655
-890904,4153196,,2019.0,1910.0,PRIVATE,11,University-Rosedale,2 VERMONT AVE,3,16,2019-11-26,55,Evaluation needs to be conducted in 1 year,15,3.0,3.0,5.0,2.0,2.0,3.0,,3.0,,,2.0,2.0,4.0,2.0,2.0,2.0,,3.0,3.0,,S1125,43.672241558,-79.414621827,311668.929,4836703.171
-890905,4153181,2018.0,2019.0,1960.0,PRIVATE,11,University-Rosedale,22 WALMER RD,8,71,2019-11-26,72,Evaluation needs to be conducted in 2 years,18,3.0,4.0,3.0,3.0,4.0,3.0,,4.0,3.0,4.0,3.0,3.0,5.0,4.0,3.0,4.0,4.0,5.0,3.0,,S1126,43.667662201300004,-79.4064427031,312329.29600000003,4836194.1680000005
-890906,4152749,2017.0,2019.0,1967.0,PRIVATE,21,Scarborough Centre,945 MIDLAND AVE,13,149,2019-11-26,85,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,5.0,,3.0,4.0,5.0,4.0,5.0,3.0,4.0,4.0,4.0,5.0,E2134,43.7370346448,-79.2585189025,324236.128,4843925.117
-890907,4152758,2017.0,2019.0,1965.0,PRIVATE,21,Scarborough Centre,1155 MIDLAND AVE,5,115,2019-11-26,67,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,2.0,3.0,3.0,3.0,4.0,3.0,,3.0,3.0,5.0,3.0,3.0,4.0,4.0,3.0,4.0,4.0,E2134,43.7457790355,-79.2618378505,323966.01300000004,4844895.79
-890908,4153218,2017.0,2019.0,1907.0,PRIVATE,11,University-Rosedale,93-99 MADISON AVE,3,17,2019-11-26,85,Evaluation needs to be conducted in 2 years,15,4.0,5.0,5.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,,,S1127,,,312525.277,4836561.438
-890909,4155956,2017.0,2019.0,1957.0,PRIVATE,21,Scarborough Centre,2702 LAWRENCE AVE E,7,96,2019-11-26,72,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,5.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,,E2129,43.75259236,-79.26100902600001,324075.951,4845664.645
-890910,4152774,2017.0,2019.0,1964.0,PRIVATE,21,Scarborough Centre,3125 LAWRENCE AVE E,7,110,2019-11-26,81,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,5.0,,3.0,4.0,5.0,4.0,4.0,4.0,5.0,3.0,3.0,,E2136,43.7552486601,-79.2439639688,325402.336,4845952.092
-890911,4152773,2017.0,2019.0,1960.0,PRIVATE,21,Scarborough Centre,3201 LAWRENCE AVE E,13,123,2019-11-26,87,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,4.0,3.0,4.0,3.0,4.0,5.0,,4.0,5.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,,E2136,43.756000502,-79.240912837,325647.50399999996,4846037.34
-890912,4153386,2017.0,2019.0,1982.0,TCHC,13,Toronto Centre,171 FRONT ST E,3,61,2019-11-26,73,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,,4.0,4.0,5.0,3.0,4.0,3.0,3.0,3.0,4.0,,S1339,43.6499749234,-79.3684698144,315394.78,4834233.377
-890913,4153458,2017.0,2019.0,2011.0,SOCIAL HOUSING,11,University-Rosedale,110 EDWARD ST,5,50,2019-11-26,97,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,,4.0,5.0,5.0,5.0,4.0,5.0,,5.0,5.0,5.0,S1145,43.6565407621,-79.38614584359999,313967.909,4834960.727
-890914,4155625,2017.0,2019.0,1970.0,TCHC,5,York South-Weston,20-50 FALSTAFF AVE,19,224,2019-11-26,70,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,2.0,4.0,3.0,3.0,4.0,3.0,,4.0,4.0,5.0,2.0,3.0,3.0,4.0,3.0,4.0,,W0522,43.716053068,-79.505965893,304399.131,4841621.154
-890915,4152699,2017.0,2019.0,1965.0,PRIVATE,21,Scarborough Centre,1165 BIRCHMOUNT RD,4,20,2019-11-25,88,Evaluation needs to be conducted in 3 years,18,4.0,4.0,5.0,5.0,5.0,5.0,,5.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,5.0,3.0,4.0,4.0,,E2133,43.741606086800005,-79.2819282185,322349.168,4844427.791
-890916,4152700,2017.0,2019.0,1960.0,PRIVATE,21,Scarborough Centre,1169 BIRCHMOUNT RD,4,18,2019-11-25,82,Evaluation needs to be conducted in 2 years,18,3.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,3.0,,4.0,3.0,5.0,5.0,4.0,4.0,5.0,4.0,3.0,,E2133,43.7418231309,-79.2820268094,322341.164,4844451.883
-890917,4152702,2017.0,2019.0,1960.0,PRIVATE,21,Scarborough Centre,1255 BIRCHMOUNT RD,6,70,2019-11-25,89,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,,5.0,4.0,4.0,4.0,3.0,5.0,5.0,4.0,3.0,,E2133,43.7467361974,-79.2840523201,322176.6,4844997.277
-890918,4152722,2017.0,2019.0,1956.0,PRIVATE,21,Scarborough Centre,1525 BIRCHMOUNT RD,4,52,2019-11-25,87,Evaluation needs to be conducted in 3 years,17,4.0,3.0,5.0,3.0,5.0,5.0,5.0,4.0,,4.0,4.0,5.0,5.0,4.0,5.0,4.0,,5.0,4.0,,E2128,43.759693301000006,-79.289071527,321768.472,4846436.669
-890919,4156037,2017.0,2019.0,1960.0,PRIVATE,21,Scarborough Centre,1535 BIRCHMOUNT RD,4,37,2019-11-25,83,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,5.0,5.0,5.0,,3.0,,3.0,4.0,5.0,5.0,3.0,4.0,3.0,,5.0,4.0,,E2128,43.759947503999996,-79.289253718,321726.239,4846452.346
-890920,4156471,2017.0,2019.0,1960.0,PRIVATE,21,Scarborough Centre,1545 BIRCHMOUNT RD,4,37,2019-11-25,83,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,5.0,,3.0,,3.0,4.0,5.0,5.0,4.0,4.0,3.0,,5.0,4.0,,E2128,43.760276601,-79.289405137,321709.409,4846508.482
-890921,4153399,2017.0,2019.0,1982.0,PRIVATE,10,Spadina-Fort York,20 ST PATRICK ST,15,256,2019-11-25,82,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,5.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1024,43.6509721376,-79.3893617427,313709.312,4834341.702
-890922,4153348,2017.0,2019.0,1920.0,PRIVATE,12,Toronto-St. Paul's,599 ST CLAIR AVE W,3,16,2019-11-25,84,Evaluation needs to be conducted in 2 years,14,4.0,5.0,5.0,5.0,,4.0,,4.0,,,5.0,3.0,5.0,3.0,4.0,4.0,4.0,4.0,,,S1235,43.6820983903,-79.4223318593,311046.44899999996,4837796.671
-890923,4153347,2019.0,2019.0,1989.0,PRIVATE,12,Toronto-St. Paul's,607 ST CLAIR AVE W,3,14,2019-11-25,83,Evaluation needs to be conducted in 2 years,14,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,,,4.0,4.0,5.0,5.0,4.0,4.0,,4.0,,,S1235,,,311004.615,4837770.886
-890924,4153350,2017.0,2019.0,1986.0,SOCIAL HOUSING,12,Toronto-St. Paul's,747 ST CLAIR AVE W,8,97,2019-11-25,85,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,,4.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,S1234,43.6809371983,-79.4282122762,310572.424,4837667.252
-890925,4153351,2017.0,2019.0,1921.0,PRIVATE,12,Toronto-St. Paul's,781 ST CLAIR AVE W,3,16,2019-11-25,74,Evaluation needs to be conducted in 2 years,14,3.0,4.0,5.0,4.0,3.0,3.0,,4.0,,,4.0,4.0,4.0,3.0,4.0,3.0,,4.0,,,S1234,43.680680134300005,-79.4292316793,310490.25,4837638.626
-890926,4153110,2018.0,2019.0,1929.0,PRIVATE,9,Davenport,927 ST CLAIR AVE W,4,23,2019-11-25,83,Evaluation needs to be conducted in 2 years,14,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,5.0,5.0,3.0,4.0,4.0,4.0,,4.0,,,S0928,43.6795067205,-79.4348853708,310034.484,4837507.881
-890927,4153408,2017.0,2019.0,1968.0,TCHC,10,Spadina-Fort York,91 AUGUSTA AVE,14,257,2019-11-25,74,Evaluation needs to be conducted in 2 years,18,3.0,4.0,3.0,4.0,3.0,5.0,4.0,4.0,3.0,,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,3.0,4.0,S1023,43.6507210729,-79.400397963,312819.071,4834312.641
-890928,4155026,2017.0,2019.0,1997.0,SOCIAL HOUSING,12,Toronto-St. Paul's,2353 DUFFERIN ST,16,144,2019-11-25,73,Evaluation needs to be conducted in 2 years,19,3.0,4.0,5.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,3.0,4.0,5.0,3.0,3.0,3.0,,4.0,3.0,4.0,S1222,43.6951962434,-79.44961389619999,308845.969,4839250.13
-890929,4153144,2017.0,2019.0,1994.0,SOCIAL HOUSING,10,Spadina-Fort York,138 CLAREMONT ST,3,18,2019-11-25,64,Evaluation needs to be conducted in 1 year,17,3.0,4.0,3.0,3.0,2.0,4.0,,3.0,,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,S1022,43.6499453573,-79.411506674,311923.107,4834225.424
-890930,4168942,2017.0,2019.0,1984.0,SOCIAL HOUSING,10,Spadina-Fort York,345 DUFFERIN ST,8,200,2019-11-25,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,S1026,43.6410875936,-79.42770400090001,310617.30600000004,4833240.166999999
-890931,4153156,2017.0,2019.0,1967.0,SOCIAL HOUSING,9,Davenport,661 DUFFERIN ST,13,112,2019-11-25,71,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,1.0,4.0,3.0,3.0,3.0,4.0,,3.0,3.0,5.0,3.0,4.0,4.0,4.0,4.0,,4.0,S0934,43.650489538900004,-79.4313915091,310318.929,4834284.426
-890932,4155063,2017.0,2019.0,1950.0,PRIVATE,9,Davenport,2036 DUFFERIN ST,3,12,2019-11-25,64,Evaluation needs to be conducted in 1 year,14,3.0,3.0,5.0,3.0,,3.0,,3.0,,,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,S0922,43.6863686196,-79.446744343,309077.853,4838269.541
-890933,4153337,2017.0,2019.0,1992.0,SOCIAL HOUSING,12,Toronto-St. Paul's,1060 DAVENPORT RD,4,10,2019-11-25,69,Evaluation needs to be conducted in 2 years,17,3.0,4.0,4.0,3.0,3.0,4.0,,4.0,,4.0,3.0,3.0,4.0,4.0,1.0,4.0,4.0,3.0,4.0,,S1234,43.6748848095,-79.42909718930001,310501.63800000004,4836994.79
-890934,4153338,2017.0,2019.0,1987.0,SOCIAL HOUSING,12,Toronto-St. Paul's,11 WINONA DR,7,150,2019-11-25,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,,S1234,43.67547653729999,-79.4301431233,310417.24,4837060.459
-890935,4152692,2017.0,2019.0,1972.0,PRIVATE,21,Scarborough Centre,1 ROSEMOUNT DR,9,110,2019-11-25,86,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,3.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,3.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,5.0,E2133,43.7315303371,-79.2739396307,322995.656,4843310.129
-890936,4153397,2017.0,2019.0,1991.0,TCHC,10,Spadina-Fort York,248 SIMCOE ST,12,53,2019-11-25,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,3.0,4.0,S1024,43.6539203787,-79.3892195078,313720.374,4834669.271000001
-890937,4153109,2017.0,2019.0,1955.0,PRIVATE,9,Davenport,2 REGAL RD,8,104,2019-11-25,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,4.0,S0928,43.675634371899996,-79.4334082604,310153.942,4837077.778
-890938,4153140,2017.0,2019.0,1970.0,PRIVATE,10,Spadina-Fort York,798 RICHMOND ST W,13,525,2019-11-25,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,3.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,,5.0,4.0,4.0,S1028,43.6451383038,-79.4098140977,312060.214,4833691.505
-890939,4153077,2017.0,2019.0,1966.0,PRIVATE,9,Davenport,128 SHERIDAN AVE,7,68,2019-11-25,72,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,3.0,4.0,,2.0,4.0,,4.0,3.0,5.0,3.0,4.0,3.0,4.0,3.0,3.0,,S0933,43.6504598567,-79.434253526,310088.06899999996,4834280.9569999995
-890940,4153376,2017.0,2019.0,1987.0,PRIVATE,10,Spadina-Fort York,350 QUEENS QUAY W,19,228,2019-11-25,88,Evaluation needs to be conducted in 3 years,17,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,5.0,4.0,5.0,5.0,5.0,,5.0,,5.0,S1036,43.638687474799994,-79.3891530101,313727.979,4832976.873
-890941,4166900,2017.0,2019.0,1987.0,PRIVATE,10,Spadina-Fort York,390 QUEENS QUAY W,21,289,2019-11-25,83,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,,4.0,4.0,3.0,4.0,3.0,4.0,4.0,5.0,5.0,4.0,4.0,,5.0,5.0,5.0,S1036,43.638163608999996,-79.390534476,313604.244,4832915.083000001
-890942,4152694,2017.0,2019.0,1960.0,PRIVATE,21,Scarborough Centre,19 ROSEMOUNT DR,7,71,2019-11-25,84,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,4.0,3.0,4.0,,4.0,4.0,4.0,3.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,,E2133,43.73259049479999,-79.2744267602,322956.092,4843427.802
-890943,4153401,2017.0,2019.0,1979.0,TCHC,10,Spadina-Fort York,168 JOHN ST,7,180,2019-11-25,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,4.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,S1024,43.650240258500006,-79.39150337390001,313520.724,4834252.341
-890944,4153400,2017.0,2019.0,1992.0,TCHC,10,Spadina-Fort York,190 JOHN ST,4,26,2019-11-25,80,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,4.0,5.0,3.0,4.0,4.0,,4.0,4.0,,S1024,43.650961887,-79.391878256,313506.048,4834341.234
-890945,4153353,2017.0,2019.0,1956.0,PRIVATE,12,Toronto-St. Paul's,55 HENDRICK AVE,3,29,2019-11-25,71,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,3.0,3.0,3.0,,4.0,,4.0,3.0,3.0,5.0,3.0,4.0,4.0,,3.0,3.0,,S1234,43.679816139399996,-79.4306015887,310379.87100000004,4837542.546
-890946,4152710,2017.0,2019.0,1957.0,PRIVATE,21,Scarborough Centre,859 KENNEDY RD,5,34,2019-11-25,87,Evaluation needs to be conducted in 3 years,17,5.0,4.0,5.0,4.0,4.0,5.0,,4.0,5.0,,4.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,,E2133,43.7379997073,-79.26966663510001,323337.88800000004,4844029.804
-890947,4152711,2017.0,2019.0,1961.0,PRIVATE,21,Scarborough Centre,875 KENNEDY RD,6,82,2019-11-25,80,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,E2133,43.739089426999996,-79.270177266,323296.161,4844151.7069999995
-890948,4152712,2017.0,2019.0,1965.0,PRIVATE,21,Scarborough Centre,877 KENNEDY RD,4,32,2019-11-25,84,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,4.0,4.0,4.0,,5.0,5.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2133,43.739624156000005,-79.270445694,323274.376,4844211.053
-890949,4152714,2017.0,2019.0,1961.0,PRIVATE,21,Scarborough Centre,893 KENNEDY RD,7,77,2019-11-25,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,4.0,3.0,,4.0,3.0,3.0,3.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,E2133,43.74039535399999,-79.27079334300001,323246.13800000004,4844296.652
-890950,4152705,2017.0,2019.0,1969.0,PRIVATE,21,Scarborough Centre,815 KENNEDY RD,5,33,2019-11-25,85,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,,5.0,5.0,,4.0,5.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,E2133,43.734340366800005,-79.2681240316,323463.283,4843623.61
-890951,4152706,2017.0,2019.0,1961.0,PRIVATE,21,Scarborough Centre,819 KENNEDY RD,6,62,2019-11-25,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,3.0,,3.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,,E2133,43.7346483486,-79.268437993,323437.893,4843657.7530000005
-890952,4229124,2017.0,2019.0,1955.0,PRIVATE,9,Davenport,12 RUSHOLME DR,4,29,2019-11-25,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,,,4.0,4.0,5.0,3.0,4.0,4.0,,3.0,3.0,,S0934,43.6500598617,-79.42855445020001,310547.845,4834236.883
-890953,4153155,2017.0,2019.0,1955.0,PRIVATE,9,Davenport,14 RUSHOLME DR,4,22,2019-11-25,76,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,,,4.0,4.0,5.0,3.0,4.0,4.0,,3.0,3.0,,S0934,43.650255834700005,-79.4286011017,310544.063,4834258.652
-890954,4153377,2017.0,2019.0,2005.0,PRIVATE,10,Spadina-Fort York,50 PORTLAND ST,10,232,2019-11-25,91,Evaluation needs to be conducted in 3 years,19,5.0,5.0,4.0,4.0,,5.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,5.0,S1032,43.64339526,-79.399965439,312863.723,4833483.933
-890955,4153380,2020.0,2019.0,1991.0,SOCIAL HOUSING,10,Spadina-Fort York,163 PORTLAND ST,4,46,2019-11-25,63,Evaluation needs to be conducted in 1 year,18,2.0,4.0,4.0,2.0,2.0,3.0,2.0,2.0,4.0,2.0,3.0,3.0,4.0,4.0,4.0,4.0,,4.0,,4.0,S1029,43.647261855,-79.400907613,312778.179,4833929.199
-890956,4155915,2017.0,2019.0,1994.0,SOCIAL HOUSING,21,Scarborough Centre,2015 LAWRENCE AVE E,11,158,2019-11-25,84,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,3.0,4.0,5.0,5.0,4.0,3.0,,4.0,5.0,5.0,3.0,4.0,5.0,5.0,5.0,3.0,5.0,E2131,43.7449592405,-79.2949788446,321297.115,4844797.638
-890957,4152703,2017.0,2019.0,1968.0,PRIVATE,21,Scarborough Centre,2185 LAWRENCE AVE E,12,142,2019-11-25,84,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,4.0,4.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2133,43.747553555299994,-79.282547131,322297.586,4845088.397
-890958,4152716,2017.0,2019.0,1968.0,PRIVATE,21,Scarborough Centre,2250 LAWRENCE AVE E,6,33,2019-11-25,85,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,3.0,5.0,4.0,5.0,5.0,3.0,5.0,4.0,,E2128,43.7493270741,-79.2783368218,322636.154,4845286.324
-890959,4156172,2017.0,2019.0,1960.0,PRIVATE,21,Scarborough Centre,1 TERRAVIEW BLVD,7,104,2019-11-25,90,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,5.0,,5.0,4.0,,E2121,43.7644344893,-79.3177518192,319458.224,4846956.955
-890960,4152662,2017.0,2019.0,1964.0,PRIVATE,21,Scarborough Centre,2255 VICTORIA PARK AVE,6,72,2019-11-25,88,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,,E2121,43.762425831,-79.316612241,319550.20399999997,4846734.954
-890961,4152663,2017.0,2019.0,1964.0,PRIVATE,21,Scarborough Centre,2265 VICTORIA PARK AVE,6,71,2019-11-25,88,Evaluation needs to be conducted in 3 years,19,5.0,5.0,4.0,4.0,5.0,5.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,,E2121,43.762813961999996,-79.316783785,319536.297,4846778.044
-890962,4152664,2017.0,2019.0,1962.0,PRIVATE,21,Scarborough Centre,2275 VICTORIA PARK AVE,6,69,2019-11-25,73,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,3.0,4.0,,4.0,4.0,3.0,4.0,4.0,5.0,4.0,4.0,3.0,3.0,3.0,4.0,,E2121,43.763205848999995,-79.3169546412,319522.706,4846820.596
-890963,4152665,2017.0,2019.0,1960.0,PRIVATE,21,Scarborough Centre,2301 VICTORIA PARK AVE,7,104,2019-11-25,88,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,3.0,,5.0,4.0,,E2121,43.76413723899999,-79.3173877592,319487.607,4846923.995
-890964,4156598,2017.0,2019.0,2011.0,SOCIAL HOUSING,9,Davenport,180 SUDBURY ST,18,190,2019-11-25,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,,4.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,S0937,43.641893011,-79.425161314,310822.114,4833330.761
-890965,4156298,2018.0,2019.0,1969.0,TCHC,10,Spadina-Fort York,170 VANAULEY WALK,6,40,2019-11-25,62,Evaluation needs to be conducted in 1 year,18,2.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,,S1023,43.651687962,-79.400557945,312805.773,4834421.0
-890966,4156711,2017.0,2019.0,2013.0,PRIVATE,10,Spadina-Fort York,100 LOWER OSSINGTON AVE,8,179,2019-11-25,81,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,S1027,,,311312.897,4833534.316000001
-890967,4153336,2017.0,2019.0,1983.0,TCHC,12,Toronto-St. Paul's,2 LAMBERTLODGE AVE,5,64,2019-11-25,75,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,3.0,3.0,2.0,,S1234,43.673917543,-79.422657829,311020.734,4836888.76
-890968,4155730,2017.0,2019.0,2010.0,PRIVATE,9,Davenport,45 LISGAR ST,14,291,2019-11-25,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,,4.0,4.0,4.0,3.0,,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,S0937,43.6421269068,-79.42276226140001,311015.908,4833355.956
-890969,4155710,2017.0,2019.0,2005.0,PRIVATE,9,Davenport,55 LISGAR ST,9,116,2019-11-25,74,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,3.0,4.0,5.0,3.0,3.0,4.0,3.0,2.0,3.0,4.0,S0937,43.6426365625,-79.4230275047,310994.457,4833412.558
-890970,4155008,2017.0,2019.0,1968.0,PRIVATE,9,Davenport,161 OAKWOOD AVE,19,151,2019-11-25,72,Evaluation needs to be conducted in 2 years,18,3.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,S0925,43.680342384,-79.43554842399999,309967.474,4837608.076
-890971,4408389,2019.0,2019.0,1913.0,PRIVATE,9,Davenport,10 MOUNT ROYAL AVE,3,12,2019-11-25,68,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,3.0,3.0,3.0,,2.0,,3.0,3.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,,S0928,43.675063118999994,-79.4330471349,310183.115,4837014.338
-890972,4152697,2017.0,2019.0,1960.0,PRIVATE,21,Scarborough Centre,2354 EGLINTON AVE E,5,72,2019-11-25,83,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,5.0,4.0,4.0,,5.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,,E2133,43.7316750326,-79.2734533673,323034.787,4843326.312
-890973,4152696,2017.0,2019.0,1965.0,PRIVATE,21,Scarborough Centre,2360 EGLINTON AVE E,7,130,2019-11-25,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,3.0,3.0,5.0,3.0,,4.0,4.0,5.0,3.0,5.0,4.0,5.0,4.0,4.0,,E2133,43.731893112,-79.272217382,323118.226,4843364.663
-890974,4155067,2017.0,2019.0,1967.0,PRIVATE,9,Davenport,65 DYNEVOR RD,9,90,2019-11-25,69,Evaluation needs to be conducted in 2 years,19,3.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,4.0,4.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,S0922,43.6915639113,-79.4491372654,308884.626,4838846.609
-890975,4152723,2017.0,2019.0,1984.0,PRIVATE,21,Scarborough Centre,3 GLAMORGAN AVE,10,139,2019-11-25,74,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,2.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,,E2123,43.768435059,-79.28262322399999,322289.892,4847418.925
-890976,4155569,2017.0,2019.0,1971.0,TCHC,21,Scarborough Centre,6 GLAMORGAN AVE,12,184,2019-11-25,81,Evaluation needs to be conducted in 2 years,18,3.0,5.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,,3.0,4.0,4.0,5.0,3.0,4.0,5.0,5.0,4.0,,E2123,43.7693818631,-79.284775411,322111.87899999996,4847512.968
-890977,4155568,2017.0,2019.0,1971.0,TCHC,21,Scarborough Centre,7 GLAMORGAN AVE,12,196,2019-11-25,78,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,4.0,3.0,5.0,3.0,4.0,4.0,,3.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,,E2123,43.7677640295,-79.2844534267,322138.266,4847333.299
-890978,4152734,2017.0,2019.0,1967.0,PRIVATE,21,Scarborough Centre,1175 ELLESMERE RD,5,65,2019-11-25,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,,E2129,43.7676449772,-79.2698659258,323312.731,4847323.217
-890979,4156366,2017.0,2019.0,1982.0,SOCIAL HOUSING,12,Toronto-St. Paul's,200 ELLSWORTH AVE,3,18,2019-11-25,75,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,3.0,3.0,3.0,,4.0,,3.0,3.0,3.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,,S1234,43.6807933041,-79.4261720553,310736.942,4837651.406
-890980,4153402,2017.0,2019.0,1991.0,TCHC,10,Spadina-Fort York,22 MC CAUL ST,11,139,2019-11-25,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,,4.0,3.0,2.0,4.0,4.0,4.0,4.0,4.0,2.0,3.0,S1024,43.651220216400006,-79.3904825858,313618.859,4834369.14
-890981,4154371,2017.0,2019.0,1956.0,PRIVATE,6,York Centre,4 HARTHAM PL,3,12,2019-11-22,76,Evaluation needs to be conducted in 2 years,15,4.0,2.0,3.0,4.0,4.0,4.0,,4.0,,,4.0,3.0,5.0,4.0,4.0,4.0,,5.0,3.0,,N0632,43.7299426047,-79.4600970756,307999.17,4843109.808999999
-890982,4153379,2017.0,2019.0,2003.0,PRIVATE,10,Spadina-Fort York,525 RICHMOND ST W,10,103,2019-11-22,89,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,4.0,,5.0,4.0,5.0,4.0,,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,S1029,43.6469614175,-79.4003305957,312825.032,4833894.922
-890983,4153963,2017.0,2019.0,1941.0,TCHC,8,Eglinton-Lawrence,800 EGLINTON AVE W,4,36,2019-11-21,66,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,N0832,43.7014745383,-79.4245394908,310866.596,4839949.174
-890984,4153957,2017.0,2019.0,1964.0,PRIVATE,8,Eglinton-Lawrence,2121 BATHURST ST,11,210,2019-11-21,93,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,5.0,4.0,4.0,5.0,5.0,,5.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,N0832,43.7039163389,-79.4253300731,310802.63300000003,4840220.402
-890985,4153984,2017.0,2019.0,1956.0,PRIVATE,8,Eglinton-Lawrence,650 BRIAR HILL AVE,9,85,2019-11-21,72,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,5.0,3.0,3.0,3.0,2.0,2.0,3.0,,N0833,43.7083504804,-79.4265525477,310703.673,4840712.912
-890986,4152622,2017.0,2019.0,1956.0,PRIVATE,21,Scarborough Centre,9 CRAIGTON DR,4,30,2019-11-21,81,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,3.0,5.0,,3.0,,4.0,4.0,5.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,,E2131,43.726834232,-79.3021111159,320727.464,4842782.69
-890987,4152626,2017.0,2019.0,1955.0,PRIVATE,21,Scarborough Centre,10 CRAIGTON DR,4,36,2019-11-21,79,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,,4.0,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,3.0,,E2131,43.7273459768,-79.3025559656,320691.488,4842839.459
-890988,4153166,2017.0,2019.0,1967.0,PRIVATE,9,Davenport,730 DOVERCOURT RD,20,356,2019-11-21,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,,S0934,43.6597215869,-79.429288288,310487.721,4835310.221
-890989,4153094,2017.0,2019.0,2008.0,PRIVATE,9,Davenport,767 DOVERCOURT RD,3,19,2019-11-21,75,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,3.0,3.0,3.0,5.0,2.0,4.0,4.0,,3.0,,,S0932,43.6618560972,-79.4293177813,310485.14,4835547.351
-890990,4153160,2017.0,2019.0,1971.0,PRIVATE,9,Davenport,919 DUFFERIN ST,15,113,2019-11-21,72,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,3.0,4.0,3.0,4.0,3.0,4.0,3.0,4.0,3.0,5.0,4.0,3.0,4.0,4.0,3.0,2.0,,S0934,43.6575632508,-79.4340091901,310107.154,4835070.126
-890991,4154016,2017.0,2019.0,1955.0,PRIVATE,8,Eglinton-Lawrence,132 CASTLEFIELD AVE,4,26,2019-11-21,68,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,3.0,3.0,3.0,,4.0,,3.0,3.0,3.0,5.0,4.0,3.0,3.0,2.0,4.0,3.0,,N0833,43.7107762101,-79.4059080075,312367.109,4840984.1110000005
-890992,4153985,2017.0,2019.0,1965.0,PRIVATE,8,Eglinton-Lawrence,630 ROSELAWN AVE,9,104,2019-11-21,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,3.0,3.0,3.0,4.0,4.0,,N0833,43.706292347,-79.422652894,311017.893,4840485.517
-890993,4153986,2017.0,2019.0,1958.0,PRIVATE,8,Eglinton-Lawrence,640 ROSELAWN AVE,8,138,2019-11-21,71,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,2.0,4.0,3.0,4.0,4.0,4.0,4.0,5.0,2.0,3.0,3.0,4.0,2.0,2.0,,N0833,43.706149857,-79.423624259,310939.623,4840469.61
-890994,4153977,2017.0,2019.0,1988.0,SOCIAL HOUSING,8,Eglinton-Lawrence,668 ROSELAWN AVE,9,125,2019-11-21,77,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,2.0,4.0,3.0,4.0,3.0,3.0,4.0,N0833,43.705765956,-79.424733085,310850.299,4840426.886
-890995,4153164,2017.0,2019.0,1968.0,PRIVATE,9,Davenport,323 RUSHOLME RD,20,226,2019-11-21,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S0934,43.658994583,-79.430040338,310404.687,4835239.268999999
-890996,4156290,2017.0,2019.0,1969.0,PRIVATE,9,Davenport,357 RUSHOLME RD,16,267,2019-11-21,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,S0934,43.660038774200004,-79.4305495251,310375.291,4835342.328
-890997,4152635,2017.0,2019.0,1955.0,PRIVATE,21,Scarborough Centre,860 PHARMACY AVE,4,30,2019-11-21,81,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,,4.0,3.0,5.0,5.0,3.0,4.0,4.0,4.0,5.0,4.0,,E2131,43.7280385906,-79.298841109,320990.589,4842917.106000001
-890998,4152630,2017.0,2019.0,1955.0,PRIVATE,21,Scarborough Centre,880 PHARMACY AVE,4,26,2019-11-21,81,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,4.0,5.0,3.0,,4.0,,3.0,4.0,5.0,5.0,5.0,4.0,4.0,,5.0,2.0,,E2131,43.7291106346,-79.2994551436,320940.832,4843036.085
-890999,4152653,2017.0,2019.0,1993.0,SOCIAL HOUSING,21,Scarborough Centre,963-967 PHARMACY AVE,4,72,2019-11-21,95,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,5.0,5.0,5.0,,5.0,5.0,,5.0,4.0,5.0,4.0,5.0,4.0,5.0,5.0,4.0,,E2131,43.734818534,-79.300588721,320828.666,4843661.65
-891000,4442561,,2019.0,,PRIVATE,9,Davenport,17 PATON RD,4,16,2019-11-21,46,Building Audit,14,2.0,2.0,2.0,3.0,,2.0,,2.0,,,2.0,2.0,2.0,2.0,3.0,3.0,,3.0,2.0,,S0930,43.660285665,-79.444110556,309291.922,4835372.952
-891001,4240547,2017.0,2019.0,1976.0,PRIVATE,8,Eglinton-Lawrence,33 ORCHARD VIEW BLVD,17,327,2019-11-21,87,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,5.0,3.0,4.0,4.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0833,43.707819465,-79.399390971,312892.413,4840657.216
-891002,4155591,2017.0,2019.0,1968.0,TCHC,9,Davenport,61 PELHAM PARK GDNS,17,352,2019-11-21,56,Evaluation needs to be conducted in 1 year,20,2.0,3.0,4.0,2.0,3.0,4.0,2.0,2.0,3.0,3.0,2.0,3.0,5.0,3.0,2.0,3.0,3.0,3.0,2.0,2.0,S0926,43.66925972,-79.457795659,308187.607,4836369.289
-891003,4153959,2017.0,2019.0,1960.0,PRIVATE,8,Eglinton-Lawrence,11 SHALLMAR BLVD,7,78,2019-11-21,88,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,,4.0,4.0,5.0,5.0,5.0,4.0,4.0,4.0,4.0,,N0832,43.703726864,-79.423164634,310976.913,4840200.458000001
-891004,4153956,2017.0,2019.0,1963.0,PRIVATE,8,Eglinton-Lawrence,20 SHALLMAR BLVD,11,155,2019-11-21,93,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,N0832,43.704511738,-79.424723028,310851.235,4840287.547
-891005,4152633,2017.0,2019.0,1955.0,PRIVATE,21,Scarborough Centre,1 RANNOCK ST,4,30,2019-11-21,80,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,4.0,3.0,4.0,,4.0,,5.0,4.0,5.0,5.0,3.0,4.0,3.0,5.0,5.0,3.0,,E2131,43.7279918888,-79.3000339041,320894.507,4842911.688999999
-891006,4152628,2017.0,2019.0,1955.0,PRIVATE,21,Scarborough Centre,4 RANNOCK ST,4,26,2019-11-21,85,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,5.0,5.0,3.0,,4.0,,4.0,5.0,5.0,5.0,5.0,3.0,3.0,,5.0,3.0,,E2131,43.7284154866,-79.3006056472,320848.332,4842958.6389999995
-891007,4152629,2017.0,2019.0,1955.0,PRIVATE,21,Scarborough Centre,8 RANNOCK ST,4,33,2019-11-21,85,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,4.0,5.0,3.0,,4.0,,4.0,4.0,5.0,5.0,5.0,3.0,5.0,5.0,5.0,3.0,,E2131,43.7287170868,-79.3000634846,320891.929,4842992.248
-891008,4153955,2017.0,2019.0,1965.0,PRIVATE,8,Eglinton-Lawrence,10 SHALLMAR BLVD,11,138,2019-11-21,73,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,3.0,4.0,3.0,4.0,3.0,,2.0,3.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,N0832,43.704286951,-79.423280437,310967.522,4840262.673
-891009,4152624,2017.0,2019.0,1956.0,PRIVATE,21,Scarborough Centre,19 CRAIGTON DR,4,38,2019-11-21,89,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,5.0,4.0,5.0,,4.0,,5.0,5.0,5.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,E2131,43.7274308243,-79.3009591644,320820.114,4842849.183
-891010,4152625,2017.0,2019.0,1955.0,PRIVATE,21,Scarborough Centre,23 CRAIGTON DR,4,36,2019-11-21,87,Evaluation needs to be conducted in 3 years,17,4.0,4.0,5.0,5.0,4.0,5.0,,4.0,,5.0,5.0,5.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,E2131,43.727213093900005,-79.3004559002,320860.717,4842825.09
-891011,4152632,2017.0,2019.0,1955.0,PRIVATE,21,Scarborough Centre,32 CRAIGTON DR,4,30,2019-11-21,79,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,4.0,3.0,5.0,,3.0,,5.0,3.0,5.0,5.0,4.0,4.0,3.0,4.0,5.0,3.0,,E2131,43.727697688199996,-79.29944885649999,320941.719,4842879.117
-891012,4153117,2017.0,2019.0,1993.0,SOCIAL HOUSING,9,Davenport,6 A GREENLAW AVE,4,44,2019-11-21,75,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,3.0,4.0,4.0,3.0,3.0,,4.0,4.0,5.0,4.0,3.0,4.0,2.0,4.0,3.0,4.0,S0927,43.6725455613,-79.4464387192,309103.482,4836733.8780000005
-891013,4154011,2017.0,2019.0,1952.0,PRIVATE,8,Eglinton-Lawrence,118 MONTGOMERY AVE,3,109,2019-11-21,77,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,,4.0,3.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,N0833,43.709488115,-79.40261900899999,312632.053,4840842.279
-891014,4152651,2017.0,2019.0,1960.0,PRIVATE,21,Scarborough Centre,1725 LAWRENCE AVE E,6,43,2019-11-21,81,Evaluation needs to be conducted in 2 years,17,5.0,4.0,4.0,4.0,4.0,4.0,,3.0,5.0,,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,E2131,43.7420240548,-79.3085552863,320204.42100000003,4844468.944
-891015,4152658,2017.0,2019.0,1961.0,PRIVATE,21,Scarborough Centre,1780 LAWRENCE AVE E,5,39,2019-11-21,81,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,5.0,5.0,,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,E2126,43.743103619799996,-79.3070051699,320328.999,4844589.169
-891016,4152657,2017.0,2019.0,1962.0,PRIVATE,21,Scarborough Centre,1790 LAWRENCE AVE E,5,36,2019-11-21,75,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,5.0,3.0,3.0,4.0,3.0,4.0,3.0,,E2126,43.7433508938,-79.3059187753,320416.436,4844616.844
-891017,4152659,2017.0,2019.0,1978.0,SOCIAL HOUSING,21,Scarborough Centre,1860 LAWRENCE AVE E,8,89,2019-11-21,82,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,E2126,43.744070606,-79.30308064180001,320644.835,4844697.338
-891018,4233146,2017.0,2019.0,1958.0,PRIVATE,21,Scarborough Centre,1731 VICTORIA PARK AVE,4,43,2019-11-21,82,Evaluation needs to be conducted in 2 years,17,5.0,4.0,5.0,4.0,4.0,3.0,,3.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,E2131,43.73710603479999,-79.3073327749,320304.15,4843922.831
-891019,4152644,2017.0,2019.0,1958.0,PRIVATE,21,Scarborough Centre,1735 VICTORIA PARK AVE,4,43,2019-11-21,82,Evaluation needs to be conducted in 2 years,17,5.0,4.0,5.0,4.0,4.0,3.0,,3.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,E2131,43.7375816521,-79.30752617590001,320288.45,4843975.633
-891020,4152645,2017.0,2019.0,1958.0,PRIVATE,21,Scarborough Centre,1739 VICTORIA PARK AVE,4,43,2019-11-21,84,Evaluation needs to be conducted in 2 years,17,5.0,4.0,5.0,4.0,4.0,3.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,E2131,43.7380491988,-79.30771259999999,320273.313,4844027.536
-891021,4152646,2017.0,2019.0,1962.0,PRIVATE,21,Scarborough Centre,1749 VICTORIA PARK AVE,6,85,2019-11-21,84,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2131,43.7388748682,-79.3078956075,320258.359,4844119.222
-891022,4152648,2017.0,2019.0,1963.0,PRIVATE,21,Scarborough Centre,1757 VICTORIA PARK AVE,7,100,2019-11-21,87,Evaluation needs to be conducted in 3 years,20,4.0,4.0,5.0,4.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,E2131,43.7396579744,-79.30808180220001,320243.161,4844206.182
-891023,4152649,2017.0,2019.0,1963.0,PRIVATE,21,Scarborough Centre,1759 VICTORIA PARK AVE,7,100,2019-11-21,87,Evaluation needs to be conducted in 3 years,19,4.0,4.0,5.0,4.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,E2131,43.739974822700006,-79.308126745,320239.46,4844241.3719999995
-891024,4152656,2017.0,2019.0,1959.0,PRIVATE,21,Scarborough Centre,1827 VICTORIA PARK AVE,4,36,2019-11-21,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,3.0,3.0,4.0,3.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,,E2126,43.7441147474,-79.31004806199999,320083.654,4844700.933
-891025,4154544,2017.0,2019.0,1955.0,PRIVATE,8,Eglinton-Lawrence,45 WASDALE CRES,3,25,2019-11-21,80,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,5.0,,,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N0823,43.730389547899996,-79.43636986189999,309910.624,4843160.67
-891026,4154542,2018.0,2019.0,1950.0,PRIVATE,8,Eglinton-Lawrence,63 WASDALE CRES,3,11,2019-11-21,91,Evaluation needs to be conducted in 3 years,17,5.0,5.0,4.0,4.0,5.0,4.0,,4.0,,5.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,4.0,5.0,,N0823,43.7301864621,-79.4373815956,309829.135,4843138.046
-891027,4152639,2017.0,2019.0,1960.0,PRIVATE,21,Scarborough Centre,1617 VICTORIA PARK AVE,4,59,2019-11-21,74,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,4.0,,4.0,3.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,,E2131,43.7309861519,-79.3047834793,320511.088,4843243.43
-891028,4152640,2017.0,2019.0,1958.0,PRIVATE,21,Scarborough Centre,1631 VICTORIA PARK AVE,4,35,2019-11-21,75,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,3.0,,3.0,,4.0,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,,E2131,43.7316703129,-79.3050968759,320485.664,4843319.377
-891029,4152642,2017.0,2019.0,1964.0,PRIVATE,21,Scarborough Centre,1651 VICTORIA PARK AVE,8,67,2019-11-21,52,Evaluation needs to be conducted in 1 year,19,3.0,4.0,3.0,2.0,2.0,3.0,2.0,2.0,3.0,2.0,2.0,3.0,3.0,2.0,2.0,3.0,4.0,2.0,2.0,,E2131,43.7328848087,-79.3055213856,320451.154,4843454.222
-891030,4152643,2017.0,2019.0,1954.0,PRIVATE,21,Scarborough Centre,1689 VICTORIA PARK AVE,4,54,2019-11-21,81,Evaluation needs to be conducted in 2 years,17,5.0,4.0,4.0,4.0,4.0,4.0,,4.0,,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2131,43.7354870834,-79.3066470427,320359.803,4843743.106000001
-891031,4153078,,2019.0,1932.0,PRIVATE,9,Davenport,301 LANSDOWNE AVE,5,35,2019-11-21,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,3.0,,S0933,43.650730305399996,-79.4393963324,309673.184,4834310.706
-891032,4155734,2017.0,2019.0,1992.0,PRIVATE,9,Davenport,800 LANSDOWNE AVE,4,138,2019-11-21,84,Evaluation needs to be conducted in 2 years,19,4.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,S0930,43.6650311015,-79.4462388637,309120.17699999997,4835899.067
-891033,4153101,2017.0,2019.0,2003.0,SOCIAL HOUSING,9,Davenport,973 LANSDOWNE AVE,3,20,2019-11-21,68,Evaluation needs to be conducted in 2 years,17,3.0,5.0,4.0,3.0,4.0,3.0,,3.0,,3.0,3.0,3.0,4.0,3.0,3.0,3.0,4.0,4.0,3.0,,S0930,43.6661838696,-79.4459119791,309146.453,4836027.149
-891034,4153949,2017.0,2019.0,1953.0,PRIVATE,8,Eglinton-Lawrence,4 LATIMER AVE,5,65,2019-11-21,75,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,3.0,2.0,,3.0,5.0,,3.0,4.0,5.0,4.0,4.0,4.0,,3.0,3.0,,N0833,43.7032107551,-79.4163543553,311526.123,4840142.702
-891035,4153954,2017.0,2019.0,1962.0,PRIVATE,8,Eglinton-Lawrence,21 MAYFAIR AVE,11,138,2019-11-21,91,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,5.0,4.0,4.0,5.0,5.0,,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,N0832,43.703709875200005,-79.4222136695,311053.822,4840197.688
-891036,4154501,2019.0,2019.0,1957.0,PRIVATE,8,Eglinton-Lawrence,91 NEPTUNE DR,3,12,2019-11-21,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,,,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N0823,43.7317413513,-79.43816993680001,309765.49600000004,4843310.737
-891037,4156734,2017.0,2019.0,1974.0,TCHC,8,Eglinton-Lawrence,145 NEPTUNE DR,4,48,2019-11-21,71,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,3.0,4.0,4.0,,3.0,,,3.0,4.0,4.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,N0823,43.729562759,-79.440565679,309572.41,4843069.517
-891038,4154012,2017.0,2019.0,1974.0,PRIVATE,8,Eglinton-Lawrence,411 DUPLEX AVE,23,458,2019-11-21,88,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,3.0,4.0,3.0,5.0,4.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,N0833,43.707330008999996,-79.40025733600001,312822.658,4840602.751
-891039,4255532,2017.0,2019.0,2006.0,PRIVATE,9,Davenport,1401 DUPONT ST,6,171,2019-11-21,79,Evaluation needs to be conducted in 2 years,18,4.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,3.0,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,S0930,43.666328416700004,-79.4468802656,309068.351,4836043.153
-891040,4255546,2017.0,2019.0,2008.0,PRIVATE,9,Davenport,1407 DUPONT ST,5,74,2019-11-21,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,5.0,3.0,4.0,3.0,4.0,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,4.0,4.0,S0930,43.6662152325,-79.44757050609999,309012.691,4836030.5430000005
-891041,4152942,2017.0,2019.0,1920.0,PRIVATE,9,Davenport,1625 DUPONT ST,4,10,2019-11-21,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,,S0929,43.6647859193,-79.455225181,308395.475,4835871.433
-891042,4154008,2017.0,2019.0,1968.0,PRIVATE,8,Eglinton-Lawrence,30 EDITH DR,13,172,2019-11-21,82,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,3.0,3.0,4.0,5.0,4.0,4.0,5.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N0833,43.7065465762,-79.4033898366,312570.56899999996,4840514.447
-891043,4153969,2017.0,2019.0,1967.0,PRIVATE,8,Eglinton-Lawrence,140 ELM RIDGE DR,18,229,2019-11-21,65,Evaluation needs to be conducted in 1 year,19,4.0,4.0,5.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,2.0,2.0,,N0832,43.7032886184,-79.438743858,309721.568,4840149.728
-891044,4153964,2017.0,2019.0,1941.0,TCHC,8,Eglinton-Lawrence,840 EGLINTON AVE W,4,40,2019-11-21,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0832,43.7014864975,-79.4251602874,310816.559,4839950.4569999995
-891045,4153952,2017.0,2019.0,1968.0,PRIVATE,8,Eglinton-Lawrence,600 EGLINTON AVE W,6,60,2019-11-21,62,Evaluation needs to be conducted in 1 year,17,3.0,3.0,5.0,3.0,3.0,2.0,,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,2.0,,N0833,43.702827623199994,-79.4182269632,311375.23699999996,4840099.988
-891046,4153961,2017.0,2019.0,1952.0,PRIVATE,8,Eglinton-Lawrence,780 EGLINTON AVE W,7,87,2019-11-21,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0832,43.7019615716,-79.42270245649999,311014.608,4840003.42
-891047,4153962,2017.0,2019.0,1941.0,TCHC,8,Eglinton-Lawrence,790 EGLINTON AVE W,4,57,2019-11-21,69,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,3.0,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0832,43.7016899071,-79.4236478607,310938.438,4839973.166999999
-891048,4152687,2017.0,2019.0,1964.0,PRIVATE,20,Scarborough Southwest,2283 EGLINTON AVE E,9,101,2019-11-20,90,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,5.0,4.0,5.0,,5.0,4.0,4.0,5.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,,E2023,43.730558372299996,-79.2723812981,323121.49100000004,4843202.493
-891049,4152685,2017.0,2019.0,1968.0,PRIVATE,20,Scarborough Southwest,2303 EGLINTON AVE E,7,169,2019-11-20,85,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2023,43.730751893800004,-79.2712141705,323215.458,4843224.2530000005
-891050,4152684,2017.0,2019.0,1962.0,PRIVATE,20,Scarborough Southwest,2323 EGLINTON AVE E,7,75,2019-11-20,89,Evaluation needs to be conducted in 3 years,17,4.0,5.0,5.0,4.0,4.0,4.0,,5.0,4.0,,3.0,3.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,,E2023,43.731089491000006,-79.27051348,323259.124,4843268.708000001
-891051,4156468,2017.0,2019.0,1972.0,TCHC,20,Scarborough Southwest,10 GORDONRIDGE PL,16,217,2019-11-20,85,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,3.0,4.0,5.0,4.0,3.0,5.0,E2024,43.7269627406,-79.25229348149999,324713.92100000003,4842838.544
-891052,4155957,2017.0,2019.0,1972.0,TCHC,20,Scarborough Southwest,30 GORDONRIDGE PL,17,231,2019-11-20,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,3.0,4.0,5.0,4.0,3.0,,E2024,43.726764513,-79.250888477,324750.497,4842822.528
-891053,4155573,2017.0,2019.0,1972.0,TCHC,20,Scarborough Southwest,40 GORDONRIDGE PL,18,421,2019-11-20,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,5.0,4.0,3.0,3.0,4.0,5.0,3.0,3.0,,E2024,43.727612646000004,-79.251278648,324819.267,4842872.647
-891054,4154491,2017.0,2019.0,1962.0,PRIVATE,8,Eglinton-Lawrence,435 GLEN PARK AVE,4,42,2019-11-20,72,Evaluation needs to be conducted in 2 years,18,3.0,4.0,3.0,4.0,3.0,4.0,,2.0,2.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0826,43.7077057177,-79.4544291704,308457.083,4840639.629
-891055,4154490,2017.0,2019.0,1962.0,PRIVATE,8,Eglinton-Lawrence,437 GLEN PARK AVE,4,43,2019-11-20,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,5.0,4.0,,4.0,4.0,4.0,5.0,5.0,5.0,3.0,4.0,3.0,4.0,3.0,3.0,,N0826,43.70751376729999,-79.4552760493,308388.845,4840618.272
-891056,4152618,2017.0,2019.0,1956.0,PRIVATE,20,Scarborough Southwest,19 ENGELHART CRES,3,11,2019-11-20,76,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,3.0,3.0,3.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,E2021,43.722183084099996,-79.2995646388,320933.87899999996,4842266.448
-891057,4152619,2017.0,2019.0,1956.0,PRIVATE,20,Scarborough Southwest,23 ENGELHART CRES,3,11,2019-11-20,76,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,3.0,3.0,3.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,E2021,43.722388403800004,-79.2991027155,320971.04,4842289.348
-891058,4156455,2017.0,2019.0,1969.0,TCHC,20,Scarborough Southwest,20 EPPLEWORTH RD,3,36,2019-11-20,74,Evaluation needs to be conducted in 2 years,17,3.0,3.0,2.0,4.0,4.0,4.0,,3.0,,,4.0,5.0,4.0,4.0,3.0,3.0,5.0,4.0,3.0,5.0,E2023,43.726760854,-79.263575088,323859.729,4842772.896000001
-891059,4156240,2017.0,2019.0,1969.0,TCHC,20,Scarborough Southwest,30 EPPLEWORTH RD,3,45,2019-11-20,75,Evaluation needs to be conducted in 2 years,17,3.0,4.0,2.0,3.0,4.0,4.0,,4.0,,,4.0,5.0,4.0,4.0,3.0,3.0,5.0,4.0,3.0,5.0,E2023,43.727206753999994,-79.263241732,323854.783,4842776.82
-891060,4155943,2017.0,2019.0,1965.0,TCHC,20,Scarborough Southwest,3171 EGLINTON AVE E,12,161,2019-11-20,76,Evaluation needs to be conducted in 2 years,18,3.0,3.0,5.0,3.0,3.0,3.0,4.0,5.0,4.0,,3.0,5.0,5.0,5.0,2.0,3.0,4.0,5.0,3.0,,E2027,43.7426229529,-79.22004925,327332.807,4844555.63
-891061,4156313,2017.0,2019.0,1965.0,TCHC,20,Scarborough Southwest,3181 EGLINTON AVE E,7,103,2019-11-20,61,Evaluation needs to be conducted in 1 year,19,2.0,3.0,5.0,3.0,3.0,5.0,3.0,5.0,3.0,,3.0,2.0,1.0,3.0,2.0,3.0,2.0,3.0,3.0,4.0,E2027,43.7426293696,-79.2196525266,327364.75800000003,4844556.449
-891062,4154485,2017.0,2019.0,1992.0,TCHC,8,Eglinton-Lawrence,3036-3050 BATHURST ST,7,160,2019-11-20,88,Evaluation needs to be conducted in 3 years,19,4.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,,4.0,4.0,5.0,4.0,5.0,5.0,5.0,5.0,4.0,4.0,N0827,43.718487778000004,-79.429895751,310427.489,4841848.69
-891063,4154553,2017.0,2019.0,1984.0,SOCIAL HOUSING,8,Eglinton-Lawrence,3270 BATHURST ST,8,160,2019-11-20,82,Evaluation needs to be conducted in 2 years,18,5.0,5.0,5.0,3.0,4.0,4.0,4.0,3.0,5.0,,4.0,5.0,5.0,4.0,4.0,4.0,,3.0,4.0,3.0,N0823,43.7242397446,-79.4314621221,310306.56899999996,4842477.78
-891064,4154519,2017.0,2019.0,1974.0,PRIVATE,8,Eglinton-Lawrence,3636 BATHURST ST,19,225,2019-11-20,80,Evaluation needs to be conducted in 2 years,20,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,N0823,43.7325245574,-79.4331792399,310167.468,4843398.065
-891065,4154857,2017.0,2019.0,1962.0,PRIVATE,16,Don Valley East,80 BARTLEY DR,3,10,2019-11-20,73,Evaluation needs to be conducted in 2 years,14,4.0,3.0,4.0,3.0,3.0,4.0,,4.0,,,3.0,3.0,5.0,4.0,4.0,3.0,,4.0,,,N1631,43.722615158,-79.306619676,320365.066,4842314.073
-891066,4154858,2017.0,2019.0,1962.0,PRIVATE,16,Don Valley East,85 BARTLEY DR,4,15,2019-11-20,73,Evaluation needs to be conducted in 2 years,17,3.0,4.0,4.0,4.0,3.0,4.0,,4.0,,4.0,3.0,3.0,5.0,4.0,3.0,3.0,3.0,4.0,4.0,,N1631,43.722088465,-79.306514169,320373.70399999997,4842255.579
-891067,4154007,2017.0,2019.0,1960.0,PRIVATE,8,Eglinton-Lawrence,1106 AVENUE RD,4,22,2019-11-20,84,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,5.0,4.0,4.0,5.0,4.0,5.0,3.0,4.0,4.0,4.0,,N0833,43.708098073100004,-79.4106259149,311987.226,4840686.163
-891068,4153971,2019.0,2019.0,1953.0,PRIVATE,8,Eglinton-Lawrence,2400 BATHURST ST,6,31,2019-11-20,84,Evaluation needs to be conducted in 2 years,17,4.0,5.0,5.0,4.0,,4.0,,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,5.0,N0832,43.7050294504,-79.4269669508,310670.598,4840343.952
-891069,4153973,2017.0,2019.0,1976.0,PRIVATE,8,Eglinton-Lawrence,2500 BATHURST ST,10,83,2019-11-20,80,Evaluation needs to be conducted in 2 years,18,4.0,5.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,3.0,,N0832,43.7058074036,-79.426918953,310674.391,4840430.382
-891070,4154481,2017.0,2019.0,1964.0,PRIVATE,8,Eglinton-Lawrence,2900 BATHURST ST,14,117,2019-11-20,83,Evaluation needs to be conducted in 2 years,18,4.0,5.0,4.0,4.0,3.0,3.0,,5.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,N0827,43.714534767399996,-79.4292156084,310488.473,4841399.748
-891071,4152677,2017.0,2019.0,1992.0,SOCIAL HOUSING,20,Scarborough Southwest,835-841 BIRCHMOUNT RD,6,102,2019-11-20,81,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,3.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,5.0,4.0,4.0,5.0,5.0,4.0,3.0,5.0,E2023,43.72941570810001,-79.2774083068,322716.837,4843074.44
-891072,4154024,2017.0,2019.0,1936.0,PRIVATE,8,Eglinton-Lawrence,14 CHATSWORTH DR,4,41,2019-11-20,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,3.0,,N0829,43.722344838999994,-79.402568504,312634.457,4842270.577
-891073,4154021,2017.0,2019.0,1929.0,PRIVATE,8,Eglinton-Lawrence,1 CHERITAN AVE,4,64,2019-11-20,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,5.0,4.0,3.0,3.0,,4.0,,,N0829,43.7228926258,-79.4020952283,312672.781,4842330.522
-891074,4155054,2017.0,2019.0,1956.0,PRIVATE,8,Eglinton-Lawrence,1030 CASTLEFIELD AVE,5,56,2019-11-20,59,Evaluation needs to be conducted in 1 year,17,2.0,3.0,4.0,2.0,2.0,3.0,,2.0,4.0,,3.0,3.0,5.0,2.0,3.0,3.0,3.0,3.0,3.0,,N0831,43.7009672272,-79.4495637221,308849.641,4839891.251
-891075,4154023,2017.0,2019.0,1929.0,PRIVATE,8,Eglinton-Lawrence,2914 YONGE ST,5,46,2019-11-20,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,N0829,43.722180360900005,-79.40195722189999,312683.99199999997,4842251.409
-891076,4154022,2017.0,2019.0,1929.0,PRIVATE,8,Eglinton-Lawrence,2932 YONGE ST,5,46,2019-11-20,80,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,,,N0829,43.7226217113,-79.4021353156,312669.586,4842300.422
-891077,4154025,2017.0,2019.0,1955.0,PRIVATE,8,Eglinton-Lawrence,3000 YONGE ST,12,272,2019-11-20,85,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,N0829,43.723761725,-79.402367148,312650.498,4842428.0
-891078,4152783,2017.0,2019.0,1964.0,PRIVATE,20,Scarborough Southwest,3744 ST CLAIR AVE E,6,88,2019-11-20,83,Evaluation needs to be conducted in 2 years,20,5.0,5.0,5.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,3.0,5.0,4.0,2.0,4.0,5.0,4.0,E2032,43.7209375824,-79.2430985709,325483.757,4842140.563999999
-891079,4152784,2017.0,2019.0,1967.0,PRIVATE,20,Scarborough Southwest,40 PARKCREST DR,12,100,2019-11-20,84,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,3.0,4.0,4.0,,4.0,5.0,,3.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,E2027,43.7353054239,-79.21998529380001,327340.686,4843742.709
-891080,4155703,2017.0,2019.0,1976.0,PRIVATE,20,Scarborough Southwest,45 PARKCREST DR,8,92,2019-11-20,91,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,5.0,,4.0,5.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,E2027,43.736752063999994,-79.2186571,327390.438,4843831.657
-891081,4155634,2017.0,2019.0,1957.0,TCHC,8,Eglinton-Lawrence,1 OLD MEADOW LANE,4,30,2019-11-20,53,Evaluation needs to be conducted in 1 year,16,3.0,3.0,5.0,3.0,2.0,2.0,,2.0,,3.0,3.0,3.0,2.0,2.0,2.0,2.0,,2.0,3.0,,N0823,43.717314183999996,-79.443949262,309300.705,4841708.546
-891082,4155629,2017.0,2019.0,1957.0,TCHC,8,Eglinton-Lawrence,3 OLD MEADOW LANE,4,30,2019-11-20,58,Evaluation needs to be conducted in 1 year,16,3.0,3.0,5.0,3.0,2.0,2.0,,3.0,,3.0,2.0,3.0,3.0,3.0,3.0,2.0,,3.0,3.0,,N0823,43.717989875,-79.444116728,309284.73699999996,4841788.238
-891083,4153967,2018.0,2019.0,1960.0,PRIVATE,8,Eglinton-Lawrence,24 SHALLMAR BLVD,4,52,2019-11-20,69,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,3.0,,4.0,3.0,3.0,3.0,3.0,2.0,4.0,3.0,3.0,,N0832,43.7045285856,-79.4267238856,310690.23699999996,4840288.326
-891084,4155635,2017.0,2019.0,1957.0,TCHC,8,Eglinton-Lawrence,1 REPLIN RD,3,31,2019-11-20,66,Evaluation needs to be conducted in 2 years,16,4.0,3.0,5.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,3.0,,N0823,43.719043907,-79.4433371886,309350.165,4841899.794
-891085,4155630,2017.0,2019.0,1957.0,TCHC,8,Eglinton-Lawrence,4 REPLIN RD,4,30,2019-11-20,56,Evaluation needs to be conducted in 1 year,16,3.0,2.0,5.0,3.0,2.0,2.0,,2.0,,3.0,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,3.0,,N0823,43.717910323999995,-79.443368577,309354.813,4841773.51
-891086,4155633,2017.0,2019.0,1957.0,TCHC,8,Eglinton-Lawrence,6 REPLIN RD,4,30,2019-11-20,56,Evaluation needs to be conducted in 1 year,16,3.0,3.0,5.0,2.0,2.0,2.0,,2.0,,2.0,3.0,3.0,3.0,3.0,4.0,2.0,,3.0,3.0,,N0823,43.717214245200005,-79.4429757151,309379.42699999997,4841696.5430000005
-891087,4154483,2017.0,2019.0,1965.0,PRIVATE,8,Eglinton-Lawrence,120 SHELBORNE AVE,15,187,2019-11-20,79,Evaluation needs to be conducted in 2 years,20,4.0,5.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,5.0,4.0,5.0,5.0,3.0,5.0,2.0,4.0,N0827,43.7162590007,-79.4298519795,310437.032,4841591.256
-891088,4155053,2017.0,2019.0,1967.0,PRIVATE,8,Eglinton-Lawrence,377 RIDELLE AVE,18,231,2019-11-20,69,Evaluation needs to be conducted in 2 years,20,3.0,4.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,5.0,4.0,N0831,43.70388232649999,-79.4401320066,309609.636,4840215.587
-891089,4153965,2017.0,2019.0,1951.0,PRIVATE,8,Eglinton-Lawrence,3 RIDGE HILL DR,4,12,2019-11-20,75,Evaluation needs to be conducted in 2 years,17,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,3.0,3.0,3.0,5.0,3.0,3.0,4.0,,4.0,4.0,,N0832,43.7030609955,-79.4261250612,310738.645,4840125.312
-891090,4155758,2017.0,2019.0,2005.0,PRIVATE,8,Eglinton-Lawrence,515 ROSEWELL AVE,7,89,2019-11-20,93,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,4.0,,4.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,4.0,4.0,5.0,N0829,43.7222177359,-79.4134144337,311760.877,4842254.524
-891091,4154562,2017.0,2019.0,1954.0,PRIVATE,8,Eglinton-Lawrence,10 SARANAC BLVD,4,26,2019-11-20,76,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N0823,43.721268466400005,-79.4331088491,310174.151,4842147.567
-891092,4154561,2017.0,2019.0,1954.0,PRIVATE,8,Eglinton-Lawrence,14 SARANAC BLVD,3,26,2019-11-20,76,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N0823,43.721616760299995,-79.4332571257,310162.173,4842186.251
-891093,4155045,2020.0,2019.0,1959.0,PRIVATE,8,Eglinton-Lawrence,330 HOPEWELL AVE,7,67,2019-11-20,74,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,4.0,,4.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,3.0,,N0831,43.7010141421,-79.44216061,309446.356,4839896.852
-891094,4154224,2017.0,2019.0,1960.0,PRIVATE,7,Humber River-Black Creek,2600 JANE ST,13,115,2019-11-20,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,,4.0,4.0,4.0,3.0,4.0,4.0,5.0,4.0,4.0,,W0729,43.7405750446,-79.5143347224,303629.973,4844290.36
-891095,4154228,2017.0,2019.0,1972.0,PRIVATE,7,Humber River-Black Creek,2740 JANE ST,5,52,2019-11-20,82,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,W0729,43.744497339700004,-79.51525333939999,303556.067,4844726.13
-891096,4152588,2017.0,2019.0,1967.0,PRIVATE,20,Scarborough Southwest,2550 KINGSTON RD,17,201,2019-11-20,85,Evaluation needs to be conducted in 2 years,19,5.0,5.0,5.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,E2032,43.7123137855,-79.2481266679,325081.524,4841181.254
-891097,4152587,2017.0,2019.0,1967.0,PRIVATE,20,Scarborough Southwest,2560 KINGSTON RD,17,201,2019-11-20,85,Evaluation needs to be conducted in 2 years,19,5.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,,E2032,43.712908607799996,-79.2474811669,325133.34,4841247.493
-891098,4152586,2017.0,2019.0,1968.0,PRIVATE,20,Scarborough Southwest,2570 KINGSTON RD,10,118,2019-11-20,80,Evaluation needs to be conducted in 2 years,19,5.0,5.0,5.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,5.0,4.0,2.0,,E2032,43.713486558999996,-79.2466803233,325197.68,4841311.898
-891099,4152668,2019.0,2019.0,1955.0,PRIVATE,20,Scarborough Southwest,640 KENNEDY RD,3,18,2019-11-20,88,Evaluation needs to be conducted in 3 years,15,4.0,4.0,5.0,5.0,5.0,5.0,,3.0,,,5.0,5.0,5.0,5.0,4.0,3.0,,5.0,3.0,,E2023,43.724263108,-79.264921835,323733.455,4842492.069
-891100,4152669,2019.0,2019.0,1954.0,PRIVATE,20,Scarborough Southwest,644 KENNEDY RD,3,18,2019-11-20,88,Evaluation needs to be conducted in 3 years,15,4.0,4.0,5.0,5.0,5.0,5.0,,3.0,,,4.0,5.0,5.0,5.0,4.0,4.0,,5.0,3.0,,E2023,43.724479726000006,-79.2652034401,323701.623,4842528.778
-891101,4155566,2017.0,2019.0,1969.0,TCHC,20,Scarborough Southwest,675 KENNEDY RD,11,192,2019-11-20,76,Evaluation needs to be conducted in 2 years,19,3.0,4.0,5.0,3.0,4.0,5.0,4.0,2.0,3.0,,3.0,5.0,5.0,4.0,3.0,3.0,4.0,5.0,3.0,4.0,E2023,43.72687441,-79.265289789,323769.245,4842812.63
-891102,4152671,2017.0,2019.0,1957.0,PRIVATE,20,Scarborough Southwest,708 KENNEDY RD,4,49,2019-11-20,90,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,5.0,5.0,5.0,,5.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,3.0,,E2023,43.728539445500004,-79.2674579982,323518.74,4842979.297
-891103,4152672,2017.0,2019.0,1957.0,PRIVATE,20,Scarborough Southwest,712 KENNEDY RD,4,49,2019-11-20,89,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,5.0,5.0,4.0,,5.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,3.0,,E2023,43.728810663999994,-79.2674784317,323517.01,4843009.424
-891104,4152780,2017.0,2019.0,1964.0,PRIVATE,20,Scarborough Southwest,121 MINERVA AVE,6,90,2019-11-20,83,Evaluation needs to be conducted in 2 years,20,5.0,5.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,3.0,5.0,4.0,3.0,4.0,5.0,4.0,E2032,43.7218512738,-79.2442216236,325392.95399999997,4842241.788
-891105,4152781,2017.0,2019.0,1964.0,PRIVATE,20,Scarborough Southwest,131 MINERVA AVE,6,83,2019-11-20,81,Evaluation needs to be conducted in 2 years,20,5.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,3.0,5.0,4.0,3.0,4.0,5.0,4.0,E2032,43.722060301400006,-79.2433036928,325466.841,4842265.24
-891106,4153960,2018.0,2019.0,1959.0,PRIVATE,8,Eglinton-Lawrence,630 VESTA DR,7,70,2019-11-20,83,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,4.0,5.0,4.0,,4.0,4.0,4.0,5.0,3.0,5.0,4.0,5.0,4.0,4.0,3.0,3.0,,N0832,43.7030025746,-79.4254211861,310795.381,4840118.8719999995
-891107,4154508,2017.0,2019.0,1975.0,PRIVATE,8,Eglinton-Lawrence,28 WASDALE CRES,3,11,2019-11-20,86,Evaluation needs to be conducted in 3 years,16,5.0,5.0,5.0,4.0,4.0,4.0,,4.0,,,4.0,5.0,5.0,4.0,5.0,4.0,3.0,4.0,4.0,,N0823,43.7309298534,-79.4365851209,309893.23600000003,4843220.682
-891108,4155890,2017.0,2019.0,1959.0,PRIVATE,20,Scarborough Southwest,746 MIDLAND AVE,5,87,2019-11-20,86,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,4.0,4.0,4.0,,3.0,4.0,3.0,5.0,4.0,4.0,5.0,4.0,5.0,4.0,5.0,5.0,,E2024,43.7292557151,-79.256770973,324379.447,4843061.333000001
-891109,4155052,2017.0,2019.0,1967.0,PRIVATE,8,Eglinton-Lawrence,145 MARLEE AVE,18,315,2019-11-20,71,Evaluation needs to be conducted in 2 years,20,5.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,1.0,4.0,N0831,43.7032633519,-79.4410303906,309536.07399999996,4840154.407
-891110,4156365,2017.0,2019.0,1967.0,PRIVATE,8,Eglinton-Lawrence,141 LYON CRT,18,142,2019-11-20,68,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,3.0,1.0,4.0,N0831,43.703293224700005,-79.4396796908,309620.459,4840134.478
-891111,4152796,2017.0,2019.0,1981.0,SOCIAL HOUSING,20,Scarborough Southwest,110 MASON RD,7,53,2019-11-20,90,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,5.0,,5.0,4.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,,E2027,43.740952843500004,-79.2252456452,326914.886,4844368.716
-891112,4154484,2017.0,2019.0,1992.0,SOCIAL HOUSING,8,Eglinton-Lawrence,525 LAWRENCE AVE W,8,133,2019-11-20,89,Evaluation needs to be conducted in 3 years,19,4.0,5.0,4.0,5.0,4.0,5.0,4.0,5.0,5.0,,4.0,4.0,5.0,4.0,5.0,5.0,4.0,5.0,4.0,4.0,N0827,43.718611770100004,-79.4314251429,310310.053,4841852.53
-891113,4154565,2017.0,2019.0,1954.0,PRIVATE,8,Eglinton-Lawrence,568 LAWRENCE AVE W,3,29,2019-11-20,75,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,2.0,,,4.0,5.0,5.0,3.0,3.0,4.0,,3.0,3.0,,N0823,43.718310388,-79.435578125,309975.18100000004,4841819.728999999
-891114,4154250,2017.0,2019.0,1962.0,PRIVATE,7,Humber River-Black Creek,137 LINDYLOU RD,7,114,2019-11-20,74,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,3.0,4.0,3.0,4.0,4.0,,4.0,4.0,5.0,3.0,4.0,3.0,,3.0,3.0,,W0727,43.7488905549,-79.5504144221,300694.74600000004,4845165.695
-891115,4154532,,2019.0,1956.0,PRIVATE,8,Eglinton-Lawrence,86 NEPTUNE DR,3,12,2019-11-20,66,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,2.0,5.0,3.0,,3.0,,,2.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,2.0,,N0823,43.7325638685,-79.4373956547,309827.80100000004,4843402.16
-891116,4154493,2017.0,2019.0,1967.0,PRIVATE,8,Eglinton-Lawrence,1049 LAWRENCE AVE W,3,20,2019-11-20,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,,,3.0,3.0,5.0,2.0,2.0,2.0,4.0,3.0,3.0,,N0826,43.712614926099995,-79.4604691719,307970.05,4841184.777
-891117,4152779,2017.0,2019.0,1968.0,PRIVATE,20,Scarborough Southwest,3207 KINGSTON RD,5,53,2019-11-20,80,Evaluation needs to be conducted in 2 years,17,5.0,4.0,5.0,3.0,3.0,4.0,,4.0,4.0,,3.0,5.0,5.0,3.0,4.0,4.0,5.0,3.0,4.0,,E2037,43.7293849818,-79.2268912004,326786.54,4843083.157
-891118,4154029,2017.0,2019.0,1957.0,PRIVATE,8,Eglinton-Lawrence,41 LORINDALE AVE,3,26,2019-11-20,76,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,3.0,3.0,4.0,,5.0,,,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,3.0,,N0825,43.7260668342,-79.4036329242,312548.482,4842683.012
-891119,4154030,2017.0,2019.0,1957.0,PRIVATE,8,Eglinton-Lawrence,45 LORINDALE AVE,3,25,2019-11-20,73,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,3.0,3.0,4.0,,5.0,,,3.0,3.0,5.0,4.0,4.0,4.0,,3.0,2.0,,N0825,43.7262422092,-79.403851017,312530.88899999997,4842702.475
-891120,4152795,2017.0,2019.0,1968.0,PRIVATE,20,Scarborough Southwest,3091 EGLINTON AVE E,7,79,2019-11-20,88,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,5.0,5.0,4.0,,E2027,43.7409544272,-79.2260065723,326853.597,4844368.692
-891121,4152790,2017.0,2019.0,1960.0,PRIVATE,20,Scarborough Southwest,3131 EGLINTON AVE E,7,82,2019-11-20,79,Evaluation needs to be conducted in 2 years,17,5.0,3.0,5.0,3.0,5.0,5.0,,5.0,5.0,,3.0,5.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,E2027,43.741715689799996,-79.2228457117,327107.906,4844454.096
-891122,4152791,2017.0,2019.0,1969.0,PRIVATE,20,Scarborough Southwest,3161 EGLINTON AVE E,12,166,2019-11-20,75,Evaluation needs to be conducted in 2 years,19,5.0,3.0,5.0,5.0,3.0,5.0,3.0,5.0,5.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,E2027,43.741827577200006,-79.221378358,327226.05199999997,4844466.914
-891123,4152666,2020.0,2019.0,1958.0,PRIVATE,20,Scarborough Southwest,115 FOXRIDGE DR,3,10,2019-11-20,69,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,3.0,2.0,5.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,5.0,3.0,,E2023,43.7234871181,-79.2660288594,323635.43,4842418.318
-891124,4152678,2017.0,2019.0,1971.0,PRIVATE,20,Scarborough Southwest,2223 EGLINTON AVE E,6,75,2019-11-20,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,3.0,4.0,3.0,4.0,4.0,,4.0,5.0,5.0,3.0,4.0,3.0,4.0,4.0,4.0,,E2023,43.729622459,-79.27670919100001,322772.838,4843098.516
-891125,4152683,2017.0,2019.0,1968.0,PRIVATE,20,Scarborough Southwest,2243 EGLINTON AVE E,6,91,2019-11-20,84,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,5.0,4.0,4.0,5.0,5.0,4.0,5.0,4.0,3.0,4.0,5.0,,E2023,43.730141875,-79.27399670300001,322991.213,4843156.818
-891126,4152595,2017.0,2019.0,1964.0,TCHC,20,Scarborough Southwest,40 FIRVALLEY CRT,15,168,2019-11-19,89,Evaluation needs to be conducted in 3 years,18,5.0,3.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,,3.0,5.0,5.0,5.0,3.0,5.0,3.0,5.0,5.0,,E2028,43.703580346,-79.279521109,322554.003,4840204.75
-891127,4154476,2017.0,2019.0,1968.0,PRIVATE,7,Humber River-Black Creek,1 FOUNTAINHEAD RD,23,370,2019-11-19,68,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,3.0,3.0,3.0,4.0,4.0,3.0,,3.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,W0726,43.76160337939999,-79.5015843988,304657.05100000004,4846626.4
-891128,4154475,2017.0,2019.0,1973.0,PRIVATE,7,Humber River-Black Creek,35 FOUNTAINHEAD RD,22,370,2019-11-19,60,Evaluation needs to be conducted in 1 year,19,3.0,2.0,5.0,2.0,2.0,3.0,4.0,3.0,3.0,,3.0,4.0,4.0,3.0,2.0,3.0,2.0,3.0,3.0,3.0,W0726,43.761108533000005,-79.503752985,304482.17,4846572.3889999995
-891129,4154474,2017.0,2019.0,1972.0,PRIVATE,7,Humber River-Black Creek,40 FOUNTAINHEAD RD,22,370,2019-11-19,63,Evaluation needs to be conducted in 1 year,19,4.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,5.0,2.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,W0726,43.762581653000005,-79.504256907,304441.6,4846736.049
-891130,4154274,2017.0,2019.0,2008.0,TCHC,7,Humber River-Black Creek,2350 FINCH AVE W,4,15,2019-11-19,66,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,2.0,3.0,2.0,3.0,3.0,3.0,,3.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,W0722,43.752199466,-79.54396680100001,301243.618,4845583.62
-891131,4288923,2017.0,2019.0,1959.0,PRIVATE,7,Humber River-Black Creek,2431 FINCH AVE W,6,115,2019-11-19,67,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,2.0,4.0,3.0,3.0,4.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,4.0,,W0727,43.749611484,-79.54723458,300980.433,4845291.518
-891132,4154278,2017.0,2019.0,1971.0,PRIVATE,7,Humber River-Black Creek,2600 FINCH AVE W,7,113,2019-11-19,69,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,4.0,5.0,3.0,3.0,2.0,4.0,3.0,2.0,,W0722,43.748128033,-79.563243432,299690.887,4845132.328
-891133,4154251,2018.0,2019.0,1993.0,SOCIAL HOUSING,7,Humber River-Black Creek,3001 FINCH AVE W,14,166,2019-11-19,65,Evaluation needs to be conducted in 1 year,19,4.0,3.0,5.0,4.0,3.0,4.0,4.0,3.0,3.0,,3.0,3.0,3.0,3.0,4.0,3.0,3.0,2.0,2.0,3.0,W0727,43.747070571,-79.562597925,299742.782,4845014.81
-891134,4155561,2017.0,2019.0,1962.0,TCHC,20,Scarborough Southwest,1 FIRVALLEY CRT,12,115,2019-11-19,81,Evaluation needs to be conducted in 2 years,18,5.0,3.0,5.0,5.0,3.0,5.0,5.0,4.0,5.0,,3.0,5.0,3.0,3.0,5.0,3.0,3.0,3.0,5.0,,E2028,43.7029523574,-79.28102862850001,322432.94800000003,4840133.711
-891135,4156493,2017.0,2019.0,1971.0,PRIVATE,7,Humber River-Black Creek,355 GRANDRAVINE DR,15,118,2019-11-19,78,Evaluation needs to be conducted in 2 years,20,3.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,3.0,5.0,4.0,4.0,W0732,43.746959357,-79.513143818,303707.642,4845032.763
-891136,4156420,2017.0,2019.0,1971.0,PRIVATE,7,Humber River-Black Creek,365 GRANDRAVINE DR,15,118,2019-11-19,72,Evaluation needs to be conducted in 2 years,20,3.0,4.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,W0732,43.746846876000006,-79.51402768300001,303590.293,4844998.72
-891137,4331737,,2019.0,1954.0,PRIVATE,20,Scarborough Southwest,2511 GERRARD ST E,3,11,2019-11-19,67,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,3.0,3.0,4.0,,3.0,,,3.0,3.0,3.0,3.0,4.0,3.0,,4.0,3.0,,E2033,43.6873957416,-79.2836217678,322228.49100000004,4838404.904
-891138,4154479,2017.0,2019.0,1978.0,PRIVATE,7,Humber River-Black Creek,500 MURRAY ROSS PKWY,19,390,2019-11-19,86,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,,5.0,5.0,5.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,W0726,43.764180371,-79.505752773,304321.162,4846913.669
-891139,4167763,2017.0,2019.0,1980.0,TCHC,7,Humber River-Black Creek,5 NEEDLE FIRWAY,12,137,2019-11-19,73,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,4.0,5.0,5.0,3.0,3.0,4.0,,4.0,4.0,5.0,3.0,3.0,4.0,3.0,3.0,2.0,4.0,W0729,43.752566895,-79.518797427,303270.559,4845623.647
-891140,4154266,2017.0,2019.0,1974.0,PRIVATE,7,Humber River-Black Creek,320 NISKA RD,13,169,2019-11-19,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,,W0725,43.765738444200004,-79.51095348369999,303902.707,4847085.858
-891141,4152578,2017.0,2019.0,1964.0,PRIVATE,20,Scarborough Southwest,2 NORTH DR,4,65,2019-11-19,82,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,4.0,5.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,E2033,43.6861001378,-79.2821331164,322348.881,4838261.291
-891142,4155563,2017.0,2019.0,1971.0,TCHC,20,Scarborough Southwest,30 TEESDALE PL,24,278,2019-11-19,69,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,2.0,5.0,4.0,4.0,3.0,2.0,,2.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,E2028,43.697003832200004,-79.28779229199999,321889.538,4839471.448
-891143,4155562,2017.0,2019.0,1971.0,TCHC,20,Scarborough Southwest,40 TEESDALE PL,24,278,2019-11-19,59,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,2.0,5.0,3.0,2.0,3.0,2.0,,2.0,3.0,3.0,3.0,2.0,4.0,3.0,3.0,3.0,3.0,E2028,43.6972076653,-79.2864410678,321998.393,4839494.37
-891144,4152596,2017.0,2019.0,1964.0,TCHC,20,Scarborough Southwest,682 WARDEN AVE,15,223,2019-11-19,71,Evaluation needs to be conducted in 2 years,18,3.0,3.0,5.0,3.0,5.0,5.0,2.0,4.0,3.0,,2.0,3.0,2.0,4.0,3.0,4.0,5.0,4.0,4.0,,E2028,43.705953312,-79.279044598,322591.70399999997,4840468.483
-891145,4154267,2017.0,2019.0,1973.0,PRIVATE,7,Humber River-Black Creek,4001 STEELES AVE W,18,356,2019-11-19,78,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,3.0,4.0,3.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,W0724,43.77414527,-79.524134475,302841.45399999997,4848021.011
-891146,4154669,2017.0,2019.0,1955.0,PRIVATE,8,Eglinton-Lawrence,199 WILSON AVE,4,46,2019-11-19,72,Evaluation needs to be conducted in 2 years,17,4.0,4.0,3.0,3.0,4.0,4.0,4.0,2.0,,4.0,3.0,3.0,5.0,4.0,4.0,3.0,,4.0,3.0,,N0824,43.7390527397,-79.4243280269,310879.837,4844123.886
-891147,4154368,2017.0,2019.0,1953.0,PRIVATE,6,York Centre,825 WILSON AVE,3,11,2019-11-19,73,Evaluation needs to be conducted in 2 years,15,3.0,4.0,3.0,3.0,5.0,4.0,,3.0,,,3.0,3.0,5.0,4.0,3.0,4.0,,3.0,5.0,,N0632,43.7315326231,-79.46180938479999,307861.13,4843286.382
-891148,4154367,2017.0,2019.0,1953.0,PRIVATE,6,York Centre,827 WILSON AVE,3,11,2019-11-19,72,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,3.0,5.0,4.0,,3.0,,,3.0,3.0,5.0,3.0,4.0,4.0,,3.0,5.0,,N0632,43.7314312704,-79.4622110913,307828.773,4843275.107
-891149,4154366,2017.0,2019.0,1953.0,PRIVATE,6,York Centre,829 WILSON AVE,3,11,2019-11-19,69,Evaluation needs to be conducted in 2 years,15,2.0,3.0,3.0,3.0,5.0,4.0,,3.0,,,2.0,3.0,5.0,3.0,4.0,4.0,,3.0,5.0,,N0632,43.7313244643,-79.4626281636,307795.179,4843263.226
-891150,4154379,2017.0,2019.0,1960.0,PRIVATE,6,York Centre,921 WILSON AVE,4,44,2019-11-19,74,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,,,5.0,4.0,4.0,2.0,4.0,3.0,3.0,2.0,5.0,,N0632,43.729940785,-79.468234305,307334.305,4843095.036
-891151,4154259,2017.0,2019.0,1984.0,TCHC,7,Humber River-Black Creek,3101 WESTON RD,18,176,2019-11-19,58,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,3.0,3.0,3.0,2.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,2.0,,W0733,43.733312244,-79.537225843,301785.494,4843485.091
-891152,4154666,2017.0,2019.0,1955.0,PRIVATE,8,Eglinton-Lawrence,215 WILSON AVE,3,26,2019-11-19,74,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,,4.0,4.0,4.0,5.0,2.0,4.0,3.0,,3.0,3.0,,N0824,43.738584484300006,-79.4263900069,310713.799,4844071.732
-891153,4154675,2017.0,2019.0,1957.0,PRIVATE,8,Eglinton-Lawrence,222 WILSON AVE,3,11,2019-11-19,77,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,,,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,3.0,,N0821,43.739213175100005,-79.4260843237,310738.359,4844141.595
-891154,4154665,2017.0,2019.0,1960.0,PRIVATE,8,Eglinton-Lawrence,225 WILSON AVE,3,20,2019-11-19,84,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,4.0,4.0,4.0,,5.0,3.0,4.0,3.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,,N0824,43.738182412700006,-79.427971659,310586.433,4844026.954
-891155,4156325,2017.0,2019.0,1960.0,PRIVATE,7,Humber River-Black Creek,3328 WESTON RD,4,93,2019-11-19,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,W0727,43.74317239,-79.541078057,301501.70399999997,4844591.777
-891156,4155683,2017.0,2019.0,1960.0,PRIVATE,7,Humber River-Black Creek,3330 WESTON RD,4,97,2019-11-19,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,W0727,43.7442275359,-79.5409803297,301483.919,4844696.906
-891157,4154255,2017.0,2019.0,1963.0,PRIVATE,7,Humber River-Black Creek,3345 WESTON RD,4,57,2019-11-19,74,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,5.0,4.0,2.0,4.0,3.0,3.0,3.0,,W0728,43.7438256262,-79.53997148100001,301565.156,4844652.213
-891158,4154256,2017.0,2019.0,1963.0,PRIVATE,7,Humber River-Black Creek,3355 WESTON RD,4,57,2019-11-19,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,W0728,43.744498152700004,-79.5401163906,301553.519,4844726.933999999
-891159,4155618,2017.0,2019.0,1972.0,TCHC,7,Humber River-Black Creek,15 TOBERMORY DR,24,374,2019-11-19,67,Evaluation needs to be conducted in 2 years,19,3.0,4.0,3.0,2.0,3.0,4.0,3.0,3.0,3.0,,3.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,3.0,W0725,43.760168119,-79.50789679100001,304069.821,4846499.065
-891160,4154680,2017.0,2019.0,1956.0,PRIVATE,8,Eglinton-Lawrence,161 WILSON AVE,4,56,2019-11-19,74,Evaluation needs to be conducted in 2 years,20,3.0,4.0,5.0,3.0,3.0,4.0,4.0,3.0,4.0,4.0,5.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,N0824,43.7399203058,-79.42005527229999,311223.909,4844220.57
-891161,4154670,2017.0,2019.0,1982.0,TCHC,8,Eglinton-Lawrence,193 WILSON AVE,5,125,2019-11-19,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,5.0,,3.0,3.0,5.0,4.0,3.0,4.0,4.0,5.0,4.0,3.0,N0824,43.739288978999994,-79.42267237899999,311012.907,4844151.197
-891162,4154249,2017.0,2019.0,1966.0,PRIVATE,7,Humber River-Black Creek,10 JAYZEL DR,7,90,2019-11-19,73,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,,4.0,4.0,5.0,3.0,2.0,3.0,4.0,3.0,3.0,,W0727,43.74934036609999,-79.5494302616,300803.693,4845265.279
-891163,4154238,2017.0,2019.0,1968.0,PRIVATE,7,Humber River-Black Creek,2755 JANE ST,12,118,2019-11-19,74,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,4.0,5.0,4.0,3.0,4.0,4.0,5.0,3.0,,W0730,43.7476852259,-79.51463245640001,303606.137,4845080.285
-891164,4154229,2017.0,2019.0,1968.0,PRIVATE,7,Humber River-Black Creek,2770 JANE ST,4,144,2019-11-19,63,Evaluation needs to be conducted in 1 year,19,4.0,3.0,4.0,3.0,4.0,4.0,2.0,3.0,3.0,3.0,4.0,2.0,5.0,2.0,3.0,3.0,3.0,3.0,2.0,,W0729,43.7474006174,-79.5159466744,303500.287,4845048.686000001
-891165,4154239,2017.0,2019.0,1975.0,PRIVATE,7,Humber River-Black Creek,2775 JANE ST,17,198,2019-11-19,60,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,2.0,3.0,5.0,2.0,4.0,3.0,2.0,3.0,2.0,,W0730,43.7486644671,-79.5146201429,303607.148,4845189.076
-891166,4243431,2017.0,2019.0,1968.0,PRIVATE,7,Humber River-Black Creek,2801 JANE ST,17,234,2019-11-19,57,Evaluation needs to be conducted in 1 year,18,2.0,3.0,3.0,2.0,2.0,3.0,2.0,4.0,3.0,,2.0,4.0,4.0,3.0,3.0,2.0,3.0,3.0,3.0,,W0730,43.7502253934,-79.5151711117,303562.808,4845362.501
-891167,4154270,2017.0,2019.0,1973.0,PRIVATE,7,Humber River-Black Creek,4800 JANE ST,9,97,2019-11-19,76,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,3.0,4.0,3.0,4.0,4.0,3.0,,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,,W0724,43.7711875516,-79.5216643445,303040.481,4847691.41
-891168,4154268,2017.0,2019.0,1975.0,PRIVATE,7,Humber River-Black Creek,5000 JANE ST,13,291,2019-11-19,72,Evaluation needs to be conducted in 2 years,18,3.0,3.0,5.0,3.0,4.0,3.0,4.0,4.0,3.0,,3.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,,W0724,43.77371822600001,-79.52248674399999,303046.894,4847929.838
-891169,4152569,2017.0,2019.0,1960.0,PRIVATE,20,Scarborough Southwest,1711 KINGSTON RD,3,18,2019-11-19,72,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,,,2.0,3.0,5.0,4.0,4.0,4.0,,5.0,4.0,,E2034,43.692233898199994,-79.2630193825,323887.837,4838946.94
-891170,4152570,2017.0,2019.0,1970.0,PRIVATE,20,Scarborough Southwest,1080 KINGSTON RD,16,202,2019-11-19,85,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,4.0,5.0,3.0,3.0,4.0,4.0,3.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,3.0,4.0,E2033,43.6814135656,-79.2831322282,322269.682,4837740.411
-891171,4152573,2017.0,2019.0,1971.0,PRIVATE,20,Scarborough Southwest,1140 KINGSTON RD,5,34,2019-11-19,83,Evaluation needs to be conducted in 2 years,19,5.0,5.0,5.0,4.0,3.0,4.0,4.0,4.0,5.0,3.0,4.0,5.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,E2033,43.681735253,-79.281298195,322417.201,4837777.498
-891172,4152572,2017.0,2019.0,1956.0,PRIVATE,20,Scarborough Southwest,1150 KINGSTON RD,5,51,2019-11-19,90,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,4.0,5.0,,5.0,4.0,3.0,4.0,5.0,5.0,5.0,4.0,4.0,5.0,4.0,,5.0,E2033,43.68193011100001,-79.280816489,322455.983,4837799.251
-891173,4152571,2017.0,2019.0,1956.0,PRIVATE,20,Scarborough Southwest,1200 KINGSTON RD,5,61,2019-11-19,89,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,4.0,4.0,4.0,,5.0,4.0,3.0,4.0,5.0,5.0,5.0,4.0,4.0,5.0,5.0,,,E2033,43.6821685941,-79.2802892859,322498.68100000004,4837824.907
-891174,4152575,2018.0,2019.0,1955.0,PRIVATE,20,Scarborough Southwest,1420 KINGSTON RD,4,36,2019-11-19,87,Evaluation needs to be conducted in 3 years,15,5.0,4.0,5.0,4.0,,4.0,,4.0,,4.0,4.0,5.0,5.0,5.0,4.0,4.0,,4.0,4.0,,E2033,43.6874626683,-79.2720047537,323164.95,4838414.823
-891175,4152600,2017.0,2019.0,1972.0,PRIVATE,20,Scarborough Southwest,273 PHARMACY AVE,18,280,2019-11-19,83,Evaluation needs to be conducted in 2 years,20,5.0,5.0,5.0,5.0,4.0,3.0,4.0,5.0,3.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,5.0,3.0,3.0,3.0,E2028,43.700248057299994,-79.2862500131,322012.917,4839832.19
-891176,4152601,2017.0,2019.0,1972.0,PRIVATE,20,Scarborough Southwest,283 PHARMACY AVE,17,267,2019-11-19,87,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,4.0,5.0,4.0,3.0,3.0,E2028,43.7005263633,-79.285525406,322071.239,4839863.258
-891177,4154674,2017.0,2019.0,1992.0,SOCIAL HOUSING,8,Eglinton-Lawrence,262 RIDLEY BLVD,8,111,2019-11-19,65,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,3.0,3.0,N0821,43.7399850336,-79.423996848,310906.417,4844227.477
-891178,4152557,2017.0,2019.0,1932.0,PRIVATE,20,Scarborough Southwest,2402 QUEEN ST E,4,21,2019-11-19,83,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,5.0,4.0,5.0,,4.0,,,4.0,5.0,5.0,4.0,3.0,3.0,,5.0,3.0,,E2033,43.674568931,-79.279856653,322540.37100000004,4836989.545
-891179,4281384,2017.0,2019.0,1937.0,PRIVATE,20,Scarborough Southwest,2404 QUEEN ST E,4,20,2019-11-19,87,Evaluation needs to be conducted in 3 years,14,4.0,4.0,5.0,5.0,,5.0,,4.0,,,5.0,5.0,5.0,4.0,3.0,4.0,,5.0,3.0,,E2033,43.674660546400006,-79.2797118492,322547.395,4836990.9
-891180,4152556,2017.0,2019.0,1937.0,PRIVATE,20,Scarborough Southwest,2406 QUEEN ST E,4,13,2019-11-19,81,Evaluation needs to be conducted in 2 years,15,4.0,3.0,5.0,4.0,,5.0,,4.0,,,5.0,5.0,5.0,4.0,3.0,3.0,3.0,5.0,3.0,,E2033,43.6747748062,-79.2796021139,322556.21,4837003.617
-891181,4154471,2017.0,2019.0,1970.0,PRIVATE,7,Humber River-Black Creek,345 SENTINEL RD,10,79,2019-11-19,72,Evaluation needs to be conducted in 2 years,19,3.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,W0731,43.7574137617,-79.4982692198,304923.99199999997,4846160.951
-891182,4154469,2017.0,2019.0,1970.0,PRIVATE,7,Humber River-Black Creek,390 SENTINEL RD,4,53,2019-11-19,59,Evaluation needs to be conducted in 1 year,17,3.0,3.0,5.0,3.0,2.0,3.0,,3.0,2.0,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,,W0731,43.760254857700005,-79.5002027299,304768.3,4846476.5819999995
-891183,4152560,2017.0,2019.0,1970.0,PRIVATE,20,Scarborough Southwest,2440 QUEEN ST E,6,24,2019-11-19,83,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,5.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,5.0,5.0,2.0,3.0,4.0,1.0,5.0,3.0,,E2033,43.6751742383,-79.2785094053,322644.203,4837048.226
-891184,4152559,2017.0,2019.0,1954.0,PRIVATE,20,Scarborough Southwest,3000 QUEEN ST E,4,30,2019-11-19,83,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,5.0,4.0,4.0,,3.0,,4.0,4.0,5.0,5.0,4.0,3.0,4.0,,5.0,3.0,,E2033,43.675330629499996,-79.27794494220001,322689.673,4837065.722
-891185,4154235,2017.0,2019.0,1970.0,PRIVATE,7,Humber River-Black Creek,45 DRIFTWOOD AVE,14,137,2019-11-19,61,Evaluation needs to be conducted in 1 year,18,4.0,3.0,4.0,4.0,3.0,4.0,2.0,3.0,3.0,,3.0,3.0,5.0,2.0,2.0,2.0,3.0,3.0,2.0,,W0730,43.7511483154,-79.5114796645,303860.109,4845464.976
-891186,4154237,2017.0,2019.0,1970.0,PRIVATE,7,Humber River-Black Creek,50 DRIFTWOOD AVE,14,109,2019-11-19,87,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,4.0,4.0,4.0,,4.0,5.0,3.0,4.0,4.0,5.0,4.0,5.0,5.0,4.0,5.0,4.0,,W0730,43.7522915804,-79.51363863,303686.26,4845592.022
-891187,4152594,2017.0,2019.0,1974.0,PRIVATE,20,Scarborough Southwest,50 BURN HILL RD,24,163,2019-11-19,89,Evaluation needs to be conducted in 3 years,18,5.0,3.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,,3.0,5.0,5.0,5.0,3.0,4.0,5.0,4.0,3.0,,E2028,43.699541833199994,-79.27673704840001,322779.857,4839755.728999999
-891188,4152592,2018.0,2019.0,1962.0,PRIVATE,20,Scarborough Southwest,186 DANFORTH RD,4,15,2019-11-19,83,Evaluation needs to be conducted in 2 years,16,5.0,3.0,3.0,5.0,5.0,3.0,,5.0,,,3.0,5.0,5.0,4.0,5.0,3.0,4.0,4.0,4.0,,E2029,43.6993092047,-79.27375284060001,323020.45399999997,4839730.5430000005
-891189,4152617,2017.0,2019.0,1965.0,PRIVATE,20,Scarborough Southwest,506 DANFORTH RD,3,22,2019-11-19,84,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,4.0,4.0,4.0,,5.0,,3.0,4.0,4.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,,E2030,43.709022115699995,-79.2673794919,323531.11100000003,4840811.032
-891190,4152609,2017.0,2019.0,1968.0,PRIVATE,20,Scarborough Southwest,3423 ST CLAIR AVE E,4,30,2019-11-19,78,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,,E2029,43.7134790514,-79.2732946837,323053.066,4841304.866
-891191,4154681,2017.0,2019.0,1964.0,PRIVATE,8,Eglinton-Lawrence,4000 YONGE ST,8,305,2019-11-19,83,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,N0824,43.742532089899996,-79.40680954369999,312290.501,4844511.8780000005
-891192,4155564,2017.0,2019.0,1970.0,TCHC,20,Scarborough Southwest,3479 ST CLAIR AVE E,8,94,2019-11-19,71,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,3.0,4.0,4.0,3.0,2.0,3.0,,3.0,4.0,3.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,E2030,43.7142950675,-79.2692166242,323381.434,4841396.427
-891193,4155565,2017.0,2019.0,1968.0,TCHC,20,Scarborough Southwest,3485 ST CLAIR AVE E,9,97,2019-11-19,66,Evaluation needs to be conducted in 2 years,19,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,4.0,,3.0,3.0,4.0,3.0,3.0,3.0,4.0,4.0,3.0,4.0,E2030,43.7145219871,-79.26814890060001,323467.401,4841421.877
-891194,4152613,2017.0,2019.0,1960.0,PRIVATE,20,Scarborough Southwest,540 BIRCHMOUNT RD,4,27,2019-11-19,70,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,3.0,3.0,4.0,,4.0,,,4.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,,E2029,43.7107990699,-79.2702992344,323295.275,4841007.788
-891195,4167765,2017.0,2019.0,2011.0,PRIVATE,20,Scarborough Southwest,550 BIRCHMOUNT RD,10,153,2019-11-19,86,Evaluation needs to be conducted in 3 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,,4.0,4.0,5.0,5.0,5.0,5.0,4.0,4.0,4.0,5.0,E2029,43.71136709899999,-79.27072123800001,323260.832,4841071.755
-891196,4154673,2017.0,2019.0,1959.0,PRIVATE,8,Eglinton-Lawrence,12 BIDEFORD AVE,4,56,2019-11-19,83,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,,5.0,3.0,,N0821,43.740420337799996,-79.4237155283,310929.031,4844275.855
-891197,4154683,2017.0,2019.0,1950.0,PRIVATE,8,Eglinton-Lawrence,2175 AVENUE RD,4,68,2019-11-19,84,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,3.0,4.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,,N0821,43.7409197026,-79.4210747483,311141.686,4844331.521000001
-891198,4154272,,2019.0,1966.0,PRIVATE,7,Humber River-Black Creek,90 YORK GATE BLVD,4,40,2019-11-19,68,Evaluation needs to be conducted in 2 years,18,3.0,3.0,5.0,3.0,3.0,3.0,2.0,3.0,3.0,,4.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,,W0724,43.7610772976,-79.5211616748,303080.68,4846568.193
-891199,4154273,2017.0,2019.0,1965.0,PRIVATE,7,Humber River-Black Creek,100 YORK GATE BLVD,11,133,2019-11-19,80,Evaluation needs to be conducted in 2 years,19,4.0,5.0,5.0,3.0,4.0,3.0,4.0,4.0,5.0,,4.0,4.0,5.0,3.0,4.0,3.0,3.0,4.0,4.0,5.0,W0724,43.7621440095,-79.51993719560001,303179.30100000004,4846686.674
-891200,4154373,2017.0,2019.0,1959.0,PRIVATE,6,York Centre,5 HARTHAM PL,3,26,2019-11-18,78,Evaluation needs to be conducted in 2 years,16,4.0,5.0,5.0,4.0,4.0,4.0,,3.0,,4.0,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,2.0,,N0632,43.729609977799996,-79.45935772680001,308058.755,4843072.886
-891201,4154372,2017.0,2019.0,1958.0,PRIVATE,6,York Centre,6 HARTHAM PL,3,26,2019-11-18,81,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,5.0,3.0,,N0632,43.729465669,-79.4599073969,308014.479,4843056.8319999995
-891202,4154411,2017.0,2019.0,1962.0,PRIVATE,6,York Centre,2788 KEELE ST,4,41,2019-11-18,72,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,5.0,5.0,3.0,3.0,3.0,3.0,3.0,4.0,,N0627,43.728314195900005,-79.4827840355,306171.49100000004,4842928.283
-891203,4154413,2017.0,2019.0,1954.0,PRIVATE,6,York Centre,1 WANDLE AVE,3,12,2019-11-18,59,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,2.0,3.0,,3.0,,,3.0,2.0,4.0,3.0,3.0,3.0,,3.0,2.0,,N0627,43.7308109846,-79.483724006,306095.721,4843205.654
-891204,4154369,2017.0,2019.0,1953.0,PRIVATE,6,York Centre,823 WILSON AVE,3,11,2019-11-18,72,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,3.0,3.0,4.0,,3.0,,,3.0,4.0,5.0,3.0,4.0,3.0,,3.0,4.0,,N0632,43.7316251589,-79.461395515,307894.467,4843296.678
-891205,4154410,2017.0,2019.0,1965.0,PRIVATE,6,York Centre,1130 WILSON AVE,11,118,2019-11-18,72,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,2.0,3.0,3.0,3.0,4.0,4.0,4.0,2.0,4.0,5.0,3.0,3.0,3.0,4.0,4.0,4.0,,N0627,43.726439972799994,-79.48492026439999,305999.418,4842720.033
-891206,4154407,2017.0,2019.0,1970.0,PRIVATE,6,York Centre,1154 WILSON AVE,15,229,2019-11-18,80,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,5.0,5.0,5.0,3.0,3.0,3.0,3.0,4.0,4.0,,N0627,43.7264666233,-79.4864218597,305878.438,4842722.978
-891207,4154383,2017.0,2019.0,1970.0,PRIVATE,6,York Centre,1265 WILSON AVE,4,61,2019-11-18,69,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,2.0,2.0,3.0,3.0,3.0,5.0,,2.0,3.0,5.0,3.0,3.0,3.0,4.0,4.0,4.0,,N0631,43.723806203,-79.492097765,305420.909,4842428.319
-891208,4154752,2017.0,2019.0,1958.0,PRIVATE,18,Willowdale,414 WILLOWDALE AVE,3,65,2019-11-18,90,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,5.0,4.0,,4.0,5.0,,4.0,5.0,5.0,3.0,4.0,5.0,5.0,4.0,4.0,5.0,N1825,43.7772192847,-79.4056901846,312376.343,4848365.5430000005
-891209,4261716,2017.0,2019.0,1945.0,PRIVATE,18,Willowdale,8 OAKBURN CRES,3,11,2019-11-18,80,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,3.0,3.0,4.0,5.0,4.0,5.0,4.0,,4.0,4.0,,N1828,43.758770542,-79.40441187100001,312481.303,4846317.021000001
-891210,4261719,2017.0,2019.0,1945.0,PRIVATE,18,Willowdale,12 OAKBURN CRES,3,11,2019-11-18,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,3.0,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,N1828,43.758987273,-79.403808031,312533.428,4846393.567
-891211,4154703,2017.0,2019.0,1966.0,PRIVATE,18,Willowdale,55 ELLERSLIE AVE,17,391,2019-11-18,86,Evaluation needs to be conducted in 3 years,19,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,N1824,43.771150913999996,-79.41475262600001,311643.273,4847712.183999999
-891212,4156069,2017.0,2019.0,1966.0,PRIVATE,18,Willowdale,65 ELLERSLIE AVE,6,107,2019-11-18,86,Evaluation needs to be conducted in 3 years,19,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,N1824,43.770932218999995,-79.41566720600001,311564.37100000004,4847682.02
-891213,4154753,2017.0,2019.0,1985.0,PRIVATE,18,Willowdale,77 FINCH AVE E,21,438,2019-11-18,88,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,5.0,,4.0,5.0,5.0,4.0,4.0,4.0,,3.0,4.0,,N1825,43.780189487399994,-79.4110962225,311940.809,4848695.08
-891214,4154434,2017.0,2019.0,1968.0,PRIVATE,6,York Centre,195 EXBURY RD,20,159,2019-11-18,80,Evaluation needs to be conducted in 2 years,20,4.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,3.0,5.0,4.0,4.0,N0627,43.730125607,-79.50977871100001,303996.516,4843130.381
-891215,4154749,2017.0,2019.0,1976.0,PRIVATE,18,Willowdale,2 FOREST LANEWAY,29,366,2019-11-18,82,Evaluation needs to be conducted in 2 years,18,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,,,N1826,43.763239637,-79.409191362,312077.26399999997,4846803.075
-891216,4156258,2017.0,2019.0,1975.0,PRIVATE,18,Willowdale,4 FOREST LANEWAY,29,277,2019-11-18,82,Evaluation needs to be conducted in 2 years,18,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,,,N1826,43.762630953999995,-79.409754662,312057.524,4846740.513
-891217,4154812,2017.0,2019.0,1967.0,PRIVATE,17,Don Valley North,65 FOREST MANOR RD,17,218,2019-11-18,80,Evaluation needs to be conducted in 2 years,19,3.0,4.0,5.0,4.0,4.0,5.0,3.0,3.0,3.0,4.0,4.0,5.0,5.0,4.0,3.0,4.0,5.0,5.0,3.0,,N1730,43.773439744399994,-79.3439806087,317344.57300000003,4847953.138
-891218,4166732,2017.0,2019.0,1965.0,PRIVATE,17,Don Valley North,80 FOREST MANOR RD,18,287,2019-11-18,95,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,4.0,4.0,5.0,5.0,5.0,3.0,,N1730,43.77494536,-79.344585933,317295.272,4848121.27
-891219,4154388,2017.0,2019.0,1958.0,PRIVATE,6,York Centre,1505 WILSON AVE,4,55,2019-11-18,73,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,,4.0,4.0,3.0,5.0,4.0,3.0,3.0,4.0,4.0,4.0,,N0631,43.7207964113,-79.5055990345,304333.381,4842093.005
-891220,4154375,2017.0,2019.0,1950.0,PRIVATE,6,York Centre,17 ANTHONY RD,3,11,2019-11-18,73,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,3.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,2.0,4.0,3.0,,3.0,4.0,,N0632,43.73043975979999,-79.4596132017,308038.125,4843165.06
-891221,4155687,2017.0,2019.0,2003.0,PRIVATE,18,Willowdale,151 BEECROFT RD,27,306,2019-11-18,89,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,,4.0,5.0,5.0,5.0,4.0,3.0,3.0,5.0,5.0,5.0,4.0,5.0,4.0,4.0,5.0,N1824,43.764995731899994,-79.41425747619999,311688.077,4847006.801
-891222,4154716,2017.0,2019.0,1970.0,PRIVATE,18,Willowdale,5900 YONGE ST,13,233,2019-11-18,88,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,3.0,5.0,4.0,4.0,5.0,N1822,43.786299800600005,-79.4178306419,311398.042,4849373.379
-891223,4156581,2017.0,2019.0,1968.0,PRIVATE,18,Willowdale,6061 YONGE ST,19,304,2019-11-18,89,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,N1823,43.7902546466,-79.4177286327,311401.57399999996,4849805.1
-891224,4154728,2017.0,2019.0,1968.0,PRIVATE,18,Willowdale,6210 YONGE ST,7,83,2019-11-18,88,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,4.0,4.0,5.0,,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,,N1822,43.7939825101,-79.4198227886,311236.874,4850226.759
-891225,4154418,2017.0,2019.0,1945.0,PRIVATE,6,York Centre,11 CALVINGTON DR,3,11,2019-11-18,53,Evaluation needs to be conducted in 1 year,15,2.0,2.0,3.0,3.0,,3.0,,2.0,,3.0,2.0,2.0,3.0,3.0,3.0,3.0,,3.0,3.0,,N0627,43.733305504300006,-79.48403421270001,306070.686,4843482.777
-891226,4154387,2017.0,2019.0,1958.0,PRIVATE,6,York Centre,1515 WILSON AVE,4,55,2019-11-18,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,4.0,3.0,,4.0,4.0,4.0,4.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,4.0,,N0631,43.7208314192,-79.50603393760001,304298.338,4842096.898
-891227,4154386,2017.0,2019.0,1958.0,PRIVATE,6,York Centre,1525 WILSON AVE,4,21,2019-11-18,76,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,3.0,3.0,3.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N0631,43.7207617209,-79.5064382692,304265.757,4842089.159
-891228,4154385,2017.0,2019.0,1960.0,PRIVATE,6,York Centre,1533 WILSON AVE,4,42,2019-11-18,76,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,4.0,4.0,,3.0,,4.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N0631,43.7206156071,-79.5067407742,304241.38,4842072.93
-891229,4154384,2017.0,2019.0,1960.0,PRIVATE,6,York Centre,1537 WILSON AVE,4,42,2019-11-18,76,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,4.0,4.0,,3.0,,4.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N0631,43.7205293496,-79.50708963470001,304213.269,4842063.35
-891230,4155178,2017.0,2019.0,1960.0,PRIVATE,5,York South-Weston,220 WOOLNER AVE,9,130,2019-11-18,75,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,4.0,4.0,,3.0,5.0,,3.0,4.0,5.0,3.0,4.0,3.0,4.0,4.0,2.0,,W0539,43.6723782892,-79.4929488594,305352.953,4836714.002
-891231,4154399,2017.0,2019.0,1960.0,PRIVATE,6,York Centre,1303 WILSON AVE,8,85,2019-11-18,78,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,3.0,3.0,4.0,3.0,5.0,5.0,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,,N0631,43.7232242004,-79.4942044092,305251.45,4842362.698
-891232,4154398,2017.0,2019.0,1960.0,PRIVATE,6,York Centre,1305 WILSON AVE,8,86,2019-11-18,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,5.0,4.0,3.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,4.0,,N0631,43.7234367633,-79.4949764367,305189.248,4842386.31
-891233,4154397,2017.0,2019.0,1960.0,PRIVATE,6,York Centre,1307 WILSON AVE,8,81,2019-11-18,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,3.0,4.0,3.0,5.0,5.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,,N0631,43.7228254392,-79.4948470378,305149.24,4842386.885
-891234,4154396,2017.0,2019.0,1960.0,PRIVATE,6,York Centre,1309 WILSON AVE,7,84,2019-11-18,82,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,3.0,4.0,,N0631,43.723087588,-79.4957736371,305125.023,4842347.517
-891235,4154406,2017.0,2019.0,1968.0,PRIVATE,6,York Centre,1330 WILSON AVE,4,27,2019-11-18,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,3.0,4.0,,4.0,4.0,,3.0,4.0,5.0,4.0,4.0,5.0,3.0,4.0,4.0,,N0627,43.7237259106,-79.49648730220001,305067.523,4842418.431
-891236,4154395,2017.0,2019.0,1960.0,PRIVATE,6,York Centre,1391 WILSON AVE,4,36,2019-11-18,76,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,3.0,4.0,,3.0,,4.0,4.0,5.0,5.0,3.0,3.0,3.0,3.0,4.0,4.0,,N0631,43.721770572299995,-79.499656818,304812.168,4842201.204
-891237,4154393,2017.0,2019.0,1958.0,PRIVATE,6,York Centre,1395 WILSON AVE,4,35,2019-11-18,86,Evaluation needs to be conducted in 3 years,17,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,3.0,5.0,5.0,5.0,5.0,,5.0,4.0,,N0631,43.721514239399994,-79.5008149928,304718.854,4842172.728999999
-891238,4154392,2017.0,2019.0,1960.0,PRIVATE,6,York Centre,1455 WILSON AVE,3,66,2019-11-18,75,Evaluation needs to be conducted in 2 years,19,3.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,4.0,,N0631,43.721783344399995,-79.5027970015,304559.163,4842202.632
-891239,4154389,2017.0,2019.0,1955.0,PRIVATE,6,York Centre,1497 WILSON AVE,4,42,2019-11-18,75,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N0631,43.72097928310001,-79.5051259497,304371.503,4842113.317
-891240,4154701,2017.0,2019.0,1967.0,PRIVATE,18,Willowdale,325 BOGERT AVE,6,418,2019-11-18,69,Evaluation needs to be conducted in 2 years,19,5.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,5.0,,3.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,2.0,4.0,N1827,43.757066148999996,-79.426922307,310668.885,4846125.843
-891241,4154816,2017.0,2019.0,1972.0,PRIVATE,17,Don Valley North,60 CLIPPER RD,14,206,2019-11-18,89,Evaluation needs to be conducted in 3 years,19,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,5.0,5.0,5.0,4.0,4.0,4.0,5.0,5.0,4.0,,N1728,43.7874657527,-79.331069436,318380.816,4849513.425
-891242,4154815,2017.0,2019.0,1970.0,PRIVATE,17,Don Valley North,70 CLIPPER RD,14,206,2019-11-18,90,Evaluation needs to be conducted in 3 years,20,4.0,5.0,5.0,4.0,4.0,5.0,5.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,5.0,N1728,43.7880141404,-79.3320111395,318304.901,4849574.193
-891243,4154380,2017.0,2019.0,1953.0,PRIVATE,6,York Centre,27 PAXTONIA BLVD,4,50,2019-11-18,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,3.0,4.0,3.0,4.0,3.0,3.0,5.0,3.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,N0628,43.7290216575,-79.48091891979999,306321.739,4843006.91
-891244,4154381,2017.0,2019.0,1964.0,PRIVATE,6,York Centre,31 PAXTONIA BLVD,3,50,2019-11-18,75,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0628,43.729184156,-79.4799862113,306396.878,4843024.978
-891245,4327367,2018.0,2019.0,1949.0,PRIVATE,6,York Centre,12 ROSSEAU RD,3,11,2019-11-18,69,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,2.0,3.0,,3.0,,3.0,3.0,3.0,5.0,5.0,3.0,3.0,,5.0,4.0,,N0629,43.742014423,-79.4373039157,309843.087,4844439.041
-891246,4329035,2018.0,2019.0,1949.0,PRIVATE,6,York Centre,14 ROSSEAU RD,3,11,2019-11-18,69,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,5.0,3.0,3.0,,4.0,4.0,,N0629,43.742214529399995,-79.437433562,309823.955,4844474.267
-891247,4156642,2017.0,2019.0,2010.0,PRIVATE,17,Don Valley North,1751 SHEPPARD AVE E,7,74,2019-11-18,99,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,N1730,43.775389788000005,-79.343955146,317356.94800000003,4848175.294
-891248,4156639,2017.0,2019.0,2010.0,PRIVATE,17,Don Valley North,1761 SHEPPARD AVE E,7,74,2019-11-18,97,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,3.0,5.0,N1730,43.775609538999994,-79.343036945,317419.83,4848195.294
-891249,4154694,2017.0,2019.0,1961.0,PRIVATE,6,York Centre,569 SHEPPARD AVE W,13,144,2019-11-18,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,5.0,3.0,3.0,4.0,3.0,4.0,3.0,,N0630,43.7553047616,-79.436948304,309861.967,4845928.563
-891250,4154448,2017.0,2019.0,1959.0,PRIVATE,6,York Centre,18 SEELEY DR,5,99,2019-11-18,77,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,,4.0,4.0,5.0,2.0,4.0,3.0,5.0,3.0,4.0,,N0627,43.74138175,-79.49430188310001,305243.523,4844379.888
-891251,4154449,2017.0,2019.0,1959.0,PRIVATE,6,York Centre,24 SEELEY DR,4,100,2019-11-18,72,Evaluation needs to be conducted in 2 years,17,4.0,3.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,,3.0,3.0,5.0,2.0,4.0,3.0,,3.0,4.0,,N0627,43.7406632771,-79.4927548873,305368.127,4844300.0819999995
-891252,4154447,2017.0,2019.0,1959.0,PRIVATE,6,York Centre,25 SEELEY DR,4,71,2019-11-18,75,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,5.0,2.0,4.0,4.0,4.0,2.0,4.0,,N0627,43.741511337,-79.493163994,305312.55100000004,4844399.414
-891253,4154446,2017.0,2019.0,1959.0,PRIVATE,6,York Centre,27 SEELEY DR,5,71,2019-11-18,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,5.0,2.0,4.0,4.0,4.0,2.0,4.0,,N0627,43.7411213027,-79.4918224235,305443.231,4844350.972
-891254,4154468,2017.0,2019.0,1967.0,PRIVATE,7,Humber River-Black Creek,170 SENTINEL RD,4,60,2019-11-18,57,Evaluation needs to be conducted in 1 year,18,2.0,3.0,5.0,1.0,3.0,4.0,2.0,3.0,2.0,,2.0,3.0,5.0,3.0,3.0,2.0,3.0,3.0,2.0,,W0731,43.75162192,-79.4974696596,304988.387,4845517.507
-891255,4154814,2017.0,2019.0,1972.0,PRIVATE,17,Don Valley North,25 PARKWAY FOREST DR,17,300,2019-11-18,98,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,N1730,43.769247221099995,-79.3416602499,317532.252,4847487.714
-891256,4154813,2017.0,2019.0,1967.0,PRIVATE,17,Don Valley North,110 PARKWAY FOREST DR,17,216,2019-11-18,80,Evaluation needs to be conducted in 2 years,20,5.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,5.0,4.0,3.0,4.0,5.0,4.0,3.0,4.0,5.0,4.0,3.0,5.0,N1730,43.774135898900006,-79.3429451779,317427.784,4848030.635
-891257,4155768,2017.0,2019.0,2006.0,PRIVATE,17,Don Valley North,121 PARKWAY FOREST DR,14,232,2019-11-18,91,Evaluation needs to be conducted in 3 years,19,5.0,4.0,4.0,4.0,5.0,4.0,5.0,5.0,4.0,,4.0,4.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,5.0,N1730,43.77537607560001,-79.34070748479999,317568.76399999997,4848085.643
-891258,4232789,2017.0,2019.0,1970.0,PRIVATE,17,Don Valley North,125 PARKWAY FOREST DR,18,287,2019-11-18,92,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,3.0,4.0,5.0,3.0,3.0,4.0,5.0,N1730,43.775336545,-79.342323333,317477.331,4848165.074
-891259,4153731,2017.0,2019.0,2013.0,PRIVATE,17,Don Valley North,130 PARKWAY FOREST DR,8,105,2019-11-18,99,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,5.0,,5.0,5.0,5.0,5.0,,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,N1730,43.774618023,-79.343572185,317376.94800000003,4848085.058
-891260,4154809,2017.0,2019.0,1967.0,PRIVATE,17,Don Valley North,95 HAVENBROOK BLVD,14,198,2019-11-18,86,Evaluation needs to be conducted in 3 years,19,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,5.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,5.0,,N1730,43.768813945699996,-79.3473075283,317077.69899999996,4847438.733
-891261,4154424,2017.0,2019.0,1955.0,PRIVATE,6,York Centre,2854 KEELE ST,3,11,2019-11-18,56,Evaluation needs to be conducted in 1 year,15,3.0,2.0,3.0,4.0,2.0,4.0,,2.0,,,3.0,3.0,3.0,2.0,3.0,3.0,,2.0,3.0,,N0627,43.7316216812,-79.48367675109999,306099.51300000004,4843295.718
-891262,4154423,2017.0,2019.0,1969.0,PRIVATE,6,York Centre,2856 KEELE ST,3,11,2019-11-18,89,Evaluation needs to be conducted in 3 years,15,5.0,4.0,5.0,4.0,5.0,4.0,,4.0,,,4.0,4.0,5.0,5.0,5.0,4.0,,5.0,4.0,,N0627,43.7318064757,-79.4837155622,306096.38300000003,4843316.2469999995
-891263,4154421,2017.0,2019.0,1955.0,PRIVATE,6,York Centre,2866 KEELE ST,3,11,2019-11-18,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,5.0,4.0,3.0,3.0,4.0,4.0,3.0,4.0,4.0,,N0627,43.732336324799995,-79.4838831599,306082.872,4843375.108
-891264,4154419,2017.0,2019.0,1950.0,PRIVATE,6,York Centre,2880 KEELE ST,3,11,2019-11-18,53,Evaluation needs to be conducted in 1 year,16,2.0,3.0,3.0,2.0,2.0,3.0,,3.0,,2.0,2.0,2.0,3.0,3.0,3.0,3.0,,3.0,3.0,,N0627,43.7330831623,-79.4839523321,306088.5,4843477.583000001
-891265,4154445,2017.0,2019.0,1960.0,PRIVATE,6,York Centre,1385 SHEPPARD AVE W,4,40,2019-11-18,73,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,2.0,3.0,4.0,,4.0,5.0,3.0,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,5.0,,N0627,43.7442254108,-79.4874558876,305823.196,4844735.738
-891266,4154453,2017.0,2019.0,1958.0,PRIVATE,6,York Centre,18 SKIPTON CRT,4,40,2019-11-18,85,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,4.0,,4.0,5.0,5.0,4.0,5.0,5.0,4.0,3.0,5.0,,N0627,43.737360083999995,-79.492713493,305371.21,4843934.081
-891267,4154454,2017.0,2019.0,1958.0,PRIVATE,6,York Centre,20 SKIPTON CRT,4,40,2019-11-18,85,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,4.0,,4.0,5.0,5.0,4.0,5.0,5.0,4.0,3.0,5.0,,N0627,43.736844271,-79.49297506,305369.286,4843919.864
-891268,4154417,2017.0,2019.0,1950.0,PRIVATE,6,York Centre,2808 KEELE ST,4,54,2019-11-18,76,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,4.0,4.0,,3.0,4.0,4.0,3.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0627,43.7290630749,-79.4829377791,306159.092,4843011.481000001
-891269,4154416,2017.0,2019.0,1955.0,PRIVATE,6,York Centre,2816 KEELE ST,3,12,2019-11-18,55,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,2.0,2.0,3.0,,3.0,,,2.0,3.0,5.0,3.0,2.0,1.0,,3.0,3.0,,N0627,43.729460131,-79.483123472,306144.125,4843055.59
-891270,4154415,2017.0,2019.0,1972.0,PRIVATE,6,York Centre,2818 KEELE ST,3,11,2019-11-18,54,Evaluation needs to be conducted in 1 year,16,2.0,2.0,3.0,2.0,2.0,3.0,,3.0,,3.0,2.0,2.0,5.0,2.0,3.0,3.0,,3.0,3.0,,N0627,43.7296930914,-79.4831794143,306139.614,4843081.47
-891271,4154426,2017.0,2019.0,1963.0,PRIVATE,6,York Centre,2850 KEELE ST,3,12,2019-11-18,85,Evaluation needs to be conducted in 2 years,16,5.0,5.0,5.0,4.0,5.0,4.0,,4.0,,,4.0,4.0,3.0,4.0,4.0,4.0,5.0,4.0,4.0,,N0627,43.7312520976,-79.4835802979,306107.29,4843254.661
-891272,4154817,2017.0,2019.0,1972.0,PRIVATE,17,Don Valley North,3000 VICTORIA PARK AVE,6,228,2019-11-18,82,Evaluation needs to be conducted in 2 years,19,5.0,5.0,5.0,2.0,4.0,5.0,3.0,4.0,5.0,,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,2.0,5.0,N1728,43.7923267755,-79.3320509885,318300.734,4850053.318
-891273,4154428,2017.0,2019.0,1965.0,PRIVATE,6,York Centre,2251 JANE ST,3,11,2019-11-18,93,Evaluation needs to be conducted in 3 years,15,4.0,5.0,5.0,5.0,5.0,5.0,,4.0,,,5.0,4.0,5.0,4.0,5.0,5.0,,5.0,4.0,,N0627,43.7254545938,-79.5093332318,304032.575,4842610.516
-891274,4154429,2017.0,2019.0,1965.0,PRIVATE,6,York Centre,2253 JANE ST,3,11,2019-11-18,95,Evaluation needs to be conducted in 3 years,15,4.0,5.0,5.0,4.0,5.0,5.0,,4.0,,,5.0,5.0,5.0,5.0,5.0,5.0,,5.0,4.0,,N0627,43.7256526155,-79.5093932499,304027.743,4842632.515
-891275,4154430,2017.0,2019.0,1965.0,PRIVATE,6,York Centre,2255 JANE ST,3,11,2019-11-18,92,Evaluation needs to be conducted in 3 years,15,4.0,5.0,5.0,4.0,5.0,5.0,,4.0,,,5.0,4.0,5.0,4.0,5.0,5.0,,5.0,4.0,,N0627,43.7258913153,-79.5094480402,304023.333,4842659.033
-891276,4154431,2017.0,2019.0,1965.0,PRIVATE,6,York Centre,2257 JANE ST,3,11,2019-11-18,95,Evaluation needs to be conducted in 3 years,15,4.0,5.0,5.0,5.0,4.0,5.0,,5.0,,,4.0,5.0,5.0,4.0,5.0,5.0,,5.0,5.0,,N0627,43.726098274499996,-79.5095108291,304018.278,4842682.025
-891277,4154435,2017.0,2019.0,1968.0,PRIVATE,6,York Centre,2415 JANE ST,20,158,2019-11-18,76,Evaluation needs to be conducted in 2 years,20,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,N0627,43.730739234,-79.5101143614,303969.752,4843197.602
-891278,4154452,2017.0,2019.0,1977.0,PRIVATE,6,York Centre,111 WHITBURN CRES,3,46,2019-11-18,61,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,,,2.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0627,43.738515308400004,-79.4915401712,305465.98,4844061.47
-891279,4154451,2017.0,2019.0,1977.0,PRIVATE,6,York Centre,117 WHITBURN CRES,3,61,2019-11-18,61,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,,,2.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0627,43.7388982847,-79.4917361524,305450.192,4844104.0139999995
-891280,4154568,2017.0,2019.0,1958.0,PRIVATE,6,York Centre,417 WILSON AVE,3,10,2019-11-18,65,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,4.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0633,43.735946368,-79.4396551078,309645.512,4843777.796
-891281,4156614,2017.0,2019.0,2010.0,PRIVATE,18,Willowdale,105 HARRISON GARDEN BLVD,22,332,2019-11-18,94,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,,5.0,4.0,3.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,3.0,5.0,N1828,43.757534101000005,-79.40497951399999,,
-891282,4154374,2017.0,2019.0,1958.0,PRIVATE,6,York Centre,3 HARTHAM PL,3,11,2019-11-18,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,,5.0,4.0,4.0,5.0,4.0,4.0,3.0,,3.0,3.0,,N0632,43.7300526745,-79.4595177072,308045.841,4843122.061000001
-891283,4155623,2017.0,2019.0,1955.0,TCHC,5,York South-Weston,1620 LAWRENCE AVE W,3,13,2019-11-14,64,Evaluation needs to be conducted in 1 year,17,4.0,2.0,2.0,3.0,4.0,4.0,,3.0,,,3.0,3.0,4.0,2.0,3.0,3.0,4.0,3.0,3.0,4.0,W0526,43.7064506482,-79.4893217524,305627.966,4840469.963
-891284,4155131,2017.0,2019.0,1968.0,PRIVATE,5,York South-Weston,55 EMMETT AVE,23,267,2019-11-08,68,Evaluation needs to be conducted in 2 years,19,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,W0531,43.688645209300006,-79.5034322952,304507.717,4838521.209
-891285,4155132,2017.0,2019.0,1971.0,PRIVATE,5,York South-Weston,65 EMMETT AVE,24,419,2019-11-08,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,3.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,5.0,5.0,,W0531,43.6880415754,-79.5040797855,304455.515,4838454.156
-891286,4154455,2017.0,2019.0,1967.0,PRIVATE,6,York Centre,3400 KEELE ST,9,141,2019-11-08,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,3.0,4.0,3.0,4.0,4.0,,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,2.0,,N0625,43.748015635,-79.487900293,305768.00800000003,4845249.455
-891287,4154441,2017.0,2019.0,1954.0,PRIVATE,6,York Centre,2954 KEELE ST,3,12,2019-11-08,74,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,4.0,3.0,4.0,3.0,3.0,4.0,3.0,,3.0,4.0,,N0627,43.735338064,-79.484558662,306028.136,4843709.531
-891288,4154299,2018.0,2019.0,1970.0,PRIVATE,5,York South-Weston,1577 LAWRENCE AVE W,15,350,2019-11-08,68,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,2.0,4.0,4.0,3.0,4.0,4.0,,3.0,3.0,3.0,3.0,4.0,2.0,4.0,4.0,2.0,4.0,W0529,43.705418072700006,-79.4894721065,305632.974,4840384.601
-891289,4154617,2017.0,2019.0,1959.0,PRIVATE,6,York Centre,81 GARTHDALE CRT,3,10,2019-11-07,73,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,3.0,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,N0624,43.7648967345,-79.4644796149,307644.521,4846992.893
-891290,4154840,2017.0,2019.0,1970.0,PRIVATE,17,Don Valley North,22 ELKHORN DR,5,223,2019-11-07,92,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,5.0,5.0,5.0,4.0,4.0,5.0,4.0,3.0,5.0,5.0,4.0,4.0,4.0,5.0,5.0,5.0,5.0,N1725,43.7709054792,-79.3819188744,314290.803,4847666.555
-891291,4152948,2017.0,2019.0,1994.0,SOCIAL HOUSING,5,York South-Weston,17 MC CORMACK ST,4,61,2019-11-07,81,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,4.0,5.0,3.0,3.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,,5.0,5.0,,W0540,43.6763328367,-79.4723721039,307012.089,4837153.6219999995
-891292,4154847,2017.0,2019.0,1979.0,TCHC,17,Don Valley North,1700 FINCH AVE E,18,275,2019-11-07,92,Evaluation needs to be conducted in 3 years,18,5.0,3.0,5.0,5.0,5.0,3.0,5.0,5.0,5.0,,3.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,,N1722,43.793883908999995,-79.351291535,316751.73600000003,4850224.274
-891293,4156414,2017.0,2019.0,1983.0,SOCIAL HOUSING,6,York Centre,623 FINCH AVE W,12,141,2019-11-07,73,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,3.0,3.0,2.0,,N0624,43.770916893,-79.45390216,308484.808,4847722.837
-891294,4156200,2017.0,2019.0,1987.0,SOCIAL HOUSING,6,York Centre,625 FINCH AVE W,14,123,2019-11-07,70,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,2.0,,N0624,,,308349.30199999997,4847683.871
-891295,4154620,2017.0,2019.0,1994.0,SOCIAL HOUSING,6,York Centre,15 TORRESDALE AVE,7,61,2019-11-07,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0622,43.773480632100004,-79.4511037364,308720.91,4847947.07
-891296,4154625,2017.0,2019.0,1978.0,PRIVATE,6,York Centre,120 TORRESDALE AVE,16,246,2019-11-07,85,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,5.0,N0622,43.7777650833,-79.4542079803,308470.731,4848422.903
-891297,4154819,2017.0,2019.0,1968.0,PRIVATE,17,Don Valley North,225 VAN HORNE AVE,13,153,2019-11-07,83,Evaluation needs to be conducted in 2 years,18,5.0,3.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,,4.0,5.0,5.0,3.0,3.0,4.0,3.0,3.0,3.0,,N1727,43.7869738317,-79.3519406664,316701.12100000004,4849455.572
-891298,4155081,2017.0,2019.0,1996.0,SOCIAL HOUSING,5,York South-Weston,1500 KEELE ST,11,132,2019-11-07,76,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,3.0,2.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,,3.0,4.0,,W0536,43.679672235299996,-79.4718686985,307133.338,4837529.733
-891299,4155086,2017.0,2019.0,1955.0,PRIVATE,5,York South-Weston,1720 KEELE ST,4,47,2019-11-07,70,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,4.0,4.0,3.0,4.0,,W0536,43.685202700699996,-79.4736170741,306911.453,4838139.002
-891300,4154837,2017.0,2019.0,1959.0,PRIVATE,17,Don Valley North,71 TALARA DR,3,29,2019-11-07,67,Evaluation needs to be conducted in 2 years,17,3.0,4.0,3.0,2.0,3.0,4.0,,4.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,4.0,4.0,3.0,,N1729,43.765626586,-79.37941856,314492.675,4847081.343
-891301,4156122,2017.0,2019.0,1970.0,PRIVATE,17,Don Valley North,75 TALARA DR,4,66,2019-11-07,80,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,5.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,N1729,43.765752783,-79.380070251,314469.09,4847077.914
-891302,4154820,2017.0,2019.0,1969.0,PRIVATE,17,Don Valley North,335 VAN HORNE AVE,14,125,2019-11-07,86,Evaluation needs to be conducted in 3 years,20,5.0,3.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,3.0,5.0,5.0,3.0,3.0,4.0,3.0,3.0,5.0,4.0,N1727,43.78732482,-79.350960418,316779.945,4849494.702
-891303,4156131,2017.0,2019.0,1966.0,PRIVATE,17,Don Valley North,24 LEITH HILL RD,16,224,2019-11-07,93,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,N1727,43.777179623,-79.349923805,316922.679,4848356.009
-891304,4154826,2017.0,2019.0,1965.0,PRIVATE,17,Don Valley North,34 LEITH HILL RD,11,231,2019-11-07,92,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,5.0,5.0,N1727,43.7777340882,-79.3489814239,316941.141,4848429.475
-891305,4154829,2017.0,2019.0,1966.0,PRIVATE,17,Don Valley North,30 ESTERBROOKE AVE,15,163,2019-11-07,89,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,4.0,4.0,4.0,,5.0,5.0,,5.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,3.0,5.0,N1727,43.779318806899994,-79.3498546485,316870.531,4848605.407
-891306,4154825,2017.0,2019.0,1965.0,PRIVATE,17,Don Valley North,35 ESTERBROOKE AVE,16,218,2019-11-07,90,Evaluation needs to be conducted in 3 years,20,5.0,4.0,5.0,4.0,4.0,5.0,4.0,5.0,4.0,4.0,5.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,5.0,N1727,43.7784516563,-79.3501562964,316846.419,4848509.027
-891307,4154833,2017.0,2019.0,1970.0,PRIVATE,17,Don Valley North,30 GODSTONE RD,15,174,2019-11-07,97,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,5.0,N1727,43.7814235784,-79.3473574848,317071.105,4848839.609
-891308,4154643,2017.0,2019.0,1964.0,PRIVATE,6,York Centre,3 GOLDFINCH CRT,15,172,2019-11-07,84,Evaluation needs to be conducted in 2 years,19,5.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0624,43.7710438597,-79.4492292912,308871.972,4847676.448
-891309,4155838,2017.0,2019.0,1960.0,PRIVATE,17,Don Valley North,2960 DON MILLS RD W,16,171,2019-11-07,88,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,,N1727,43.781329305,-79.35268326399999,316667.205,4848830.4969999995
-891310,4155839,2017.0,2019.0,1970.0,PRIVATE,17,Don Valley North,2980 DON MILLS RD W,16,168,2019-11-07,93,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,5.0,,5.0,5.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,,N1727,43.78227098399999,-79.352924184,316646.953,4848936.864
-891311,4156484,2017.0,2019.0,1965.0,PRIVATE,6,York Centre,35 BROOKWELL DR,4,76,2019-11-07,69,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,4.0,3.0,4.0,3.0,3.0,5.0,,4.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0625,43.7434121512,-79.49453969449999,305224.364,4844605.449
-891312,4155677,2017.0,2019.0,1965.0,PRIVATE,6,York Centre,39 BROOKWELL DR,4,57,2019-11-07,70,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,5.0,,3.0,4.0,5.0,3.0,4.0,3.0,3.0,4.0,3.0,,N0625,43.7438340807,-79.4945341178,305224.811,4844652.324
-891313,4154628,2017.0,2019.0,1965.0,PRIVATE,6,York Centre,18 CEDARCROFT BLVD,12,117,2019-11-07,72,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,3.0,3.0,4.0,4.0,4.0,4.0,,3.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,N0622,43.7839479718,-79.4474754127,309012.262,4849110.129
-891314,4154632,2017.0,2019.0,1964.0,PRIVATE,6,York Centre,12 ROCKFORD RD,13,128,2019-11-07,83,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N0622,43.786076743500004,-79.447735502,308991.179,4849346.616
-891315,4154626,2017.0,2019.0,1965.0,PRIVATE,6,York Centre,15 ROCKFORD RD,12,117,2019-11-07,71,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,3.0,3.0,4.0,4.0,3.0,4.0,,4.0,4.0,5.0,2.0,3.0,3.0,4.0,3.0,3.0,,N0622,43.784966077200004,-79.4478362845,308983.144,4849223.218
-891316,4154827,2017.0,2019.0,1968.0,PRIVATE,17,Don Valley North,175 SHAUGHNESSY BLVD,18,139,2019-11-07,94,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,4.0,5.0,N1727,43.7808646264,-79.35390324069999,316544.328,4848776.57
-891317,4154839,2017.0,2019.0,1970.0,PRIVATE,17,Don Valley North,640 SHEPPARD AVE E,19,128,2019-11-07,91,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,3.0,5.0,5.0,3.0,4.0,5.0,4.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,3.0,,N1725,43.768469253,-79.382764906,314222.811,4847396.752
-891318,4263115,2017.0,2019.0,1970.0,PRIVATE,17,Don Valley North,644 SHEPPARD AVE E,18,128,2019-11-07,87,Evaluation needs to be conducted in 3 years,20,5.0,4.0,5.0,3.0,5.0,5.0,4.0,5.0,4.0,3.0,3.0,5.0,5.0,4.0,4.0,5.0,5.0,5.0,3.0,5.0,N1725,43.769665303000004,-79.383119544,314194.076,4847529.585
-891319,4156232,2017.0,2019.0,1969.0,TCHC,5,York South-Weston,101 HUMBER BLVD,14,246,2019-11-07,54,Evaluation needs to be conducted in 1 year,18,2.0,2.0,3.0,2.0,4.0,3.0,2.0,3.0,4.0,,2.0,2.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0539,43.679802556000006,-79.4820189606,306234.164,4837538.915
-891320,4167691,2017.0,2019.0,1960.0,PRIVATE,6,York Centre,2956 KEELE ST,3,11,2019-11-07,74,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,4.0,4.0,4.0,,4.0,,4.0,3.0,4.0,4.0,3.0,4.0,3.0,,3.0,4.0,,N0627,43.735513831999995,-79.484593132,306025.356,4843729.057
-891321,4154444,2017.0,2019.0,1963.0,PRIVATE,6,York Centre,3250 KEELE ST,4,59,2019-11-07,75,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,3.0,3.0,4.0,,4.0,,,3.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,2.0,,N0627,43.7419180472,-79.4861318994,305901.567,4844439.544
-891322,4154461,2017.0,2019.0,1967.0,PRIVATE,6,York Centre,3444 KEELE ST,9,61,2019-11-07,76,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,3.0,4.0,5.0,3.0,4.0,3.0,4.0,3.0,4.0,,N0625,43.75021348640001,-79.48822665600001,305732.756,4845361.107
-891323,4154457,2017.0,2019.0,1968.0,PRIVATE,6,York Centre,1450 SHEPPARD AVE W,7,181,2019-11-07,69,Evaluation needs to be conducted in 2 years,19,4.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,5.0,4.0,3.0,4.0,4.0,3.0,3.0,,N0625,43.7448396549,-79.48975794430001,305609.483,4844764.076
-891324,4155182,2017.0,2019.0,1970.0,PRIVATE,5,York South-Weston,797 JANE ST,12,93,2019-11-07,81,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,5.0,,3.0,3.0,5.0,4.0,4.0,5.0,5.0,4.0,3.0,,W0539,43.6740732037,-79.4944079231,305235.286,4836902.29
-891325,4154624,2017.0,2019.0,1979.0,PRIVATE,6,York Centre,300 ANTIBES DR,21,372,2019-11-07,82,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,5.0,4.0,4.0,4.0,5.0,,4.0,4.0,5.0,4.0,4.0,3.0,4.0,3.0,4.0,5.0,N0622,43.7812935158,-79.450030785,308806.743,4848815.09
-891326,4228864,2017.0,2019.0,1964.0,PRIVATE,17,Don Valley North,2911 BAYVIEW AVE,3,304,2019-11-07,84,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,5.0,5.0,5.0,4.0,5.0,,3.0,5.0,5.0,4.0,3.0,3.0,3.0,5.0,4.0,5.0,N1725,43.77054660020001,-79.3863327506,313935.534,4847626.159
-891327,4154609,2017.0,2019.0,1969.0,PRIVATE,6,York Centre,4350 BATHURST ST,6,35,2019-11-07,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N0629,43.754107511,-79.438517766,309735.42,4845796.416
-891328,4154693,2017.0,2019.0,1960.0,PRIVATE,6,York Centre,4383 BATHURST ST,13,142,2019-11-07,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,,N0630,43.75446148100001,-79.437277956,309835.23,4845835.813999999
-891329,4154697,2017.0,2019.0,1962.0,PRIVATE,6,York Centre,4415 BATHURST ST,14,167,2019-11-07,81,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,5.0,4.0,5.0,4.0,4.0,3.0,3.0,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,N0624,43.7567677733,-79.4380041027,309776.827,4846091.036
-891330,4154653,2017.0,2019.0,1965.0,PRIVATE,6,York Centre,4750 BATHURST ST,3,64,2019-11-07,83,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,N0624,43.767931941,-79.4420072756,309453.606,4847331.095
-891331,4154648,2017.0,2019.0,1963.0,PRIVATE,6,York Centre,4866 BATHURST ST,10,81,2019-11-07,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N0624,43.771601520299996,-79.44318159689999,309358.789,4847738.71
-891332,4156621,2017.0,2019.0,1962.0,PRIVATE,6,York Centre,4900 BATHURST ST,6,60,2019-11-07,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0624,43.772309339799996,-79.44307224020001,309367.539,4847817.353
-891333,4154604,2017.0,2019.0,1966.0,PRIVATE,6,York Centre,4190 BATHURST ST,9,80,2019-11-07,81,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,N0629,43.748575119399995,-79.437302788,309833.975,4845180.913
-891334,4154607,2017.0,2019.0,1983.0,SOCIAL HOUSING,6,York Centre,4266 BATHURST ST,9,130,2019-11-07,76,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,4.0,N0629,43.751874345299996,-79.438030916,309775.071,4845547.393999999
-891335,4155850,2017.0,2019.0,2005.0,PRIVATE,6,York Centre,3810 BATHURST ST,6,84,2019-11-07,97,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,4.0,5.0,5.0,5.0,4.0,N0629,43.738917845,-79.43480398210001,310036.024,4844108.198
-891336,4154596,2017.0,2019.0,1960.0,PRIVATE,6,York Centre,3880 BATHURST ST,4,58,2019-11-07,73,Evaluation needs to be conducted in 2 years,18,2.0,3.0,5.0,3.0,4.0,3.0,,5.0,3.0,4.0,4.0,4.0,5.0,3.0,4.0,2.0,5.0,3.0,4.0,,N0629,43.741815421000005,-79.4356700472,309966.025,4844430.022
-891337,4154595,2017.0,2019.0,1960.0,PRIVATE,6,York Centre,3884 BATHURST ST,4,28,2019-11-07,69,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,3.0,4.0,3.0,,4.0,,4.0,4.0,3.0,4.0,2.0,4.0,2.0,5.0,2.0,4.0,,N0629,43.7422578587,-79.4357863772,309956.619,4844479.1680000005
-891338,4154686,2017.0,2019.0,1960.0,PRIVATE,6,York Centre,3905 BATHURST ST,5,50,2019-11-07,63,Evaluation needs to be conducted in 1 year,19,5.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,2.0,5.0,2.0,2.0,,N0630,43.743207276599996,-79.4350944029,310012.274,4844584.687
-891339,4154450,2019.0,2019.0,1958.0,PRIVATE,6,York Centre,2 DORADO CRT,4,87,2019-11-07,53,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,2.0,2.0,3.0,,3.0,2.0,,2.0,2.0,4.0,3.0,2.0,3.0,,3.0,2.0,,N0627,43.738441642299996,-79.4861508679,305900.09,4844053.338
-891340,4154818,2017.0,2019.0,1969.0,PRIVATE,17,Don Valley North,12 DEERFORD RD,12,137,2019-11-07,94,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,5.0,N1727,43.786127991,-79.35066942,316803.339,4849362.734
-891341,4154616,2017.0,2019.0,1993.0,TCHC,6,York Centre,750 WILSON HEIGHTS BLVD,4,79,2019-11-07,69,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,4.0,3.0,N0624,43.7599025231,-79.4643820727,307652.61,4846438.066000001
-891342,4154652,2017.0,2019.0,1965.0,PRIVATE,6,York Centre,34 CARSCADDEN DR,6,69,2019-11-07,85,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,3.0,,N0624,43.7657548154,-79.4437096635,309316.71,4847089.125
-891343,4156512,2017.0,2019.0,1964.0,PRIVATE,6,York Centre,32 BROOKWELL DR,4,38,2019-11-07,73,Evaluation needs to be conducted in 2 years,17,3.0,4.0,3.0,3.0,4.0,4.0,,4.0,5.0,,3.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,,N0625,43.744572133599995,-79.4939808701,305269.36699999997,4844734.321
-891344,4155684,2017.0,2019.0,1964.0,PRIVATE,6,York Centre,34 BROOKWELL DR,4,44,2019-11-07,67,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,5.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,,N0625,43.7447007322,-79.4945628574,305222.49199999997,4844748.606000001
-891345,4156206,2017.0,2019.0,1971.0,TCHC,17,Don Valley North,2 BRAHMS AVE,12,164,2019-11-07,78,Evaluation needs to be conducted in 2 years,18,5.0,3.0,3.0,5.0,3.0,5.0,5.0,5.0,3.0,,3.0,3.0,5.0,3.0,3.0,5.0,5.0,3.0,3.0,,N1722,43.792308051000006,-79.35878168,316167.619,4850056.03
-891346,4154698,2017.0,2019.0,1962.0,PRIVATE,6,York Centre,15 CANYON AVE,21,117,2019-11-07,90,Evaluation needs to be conducted in 3 years,20,4.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,N0624,43.757154574,-79.436224864,,
-891347,4154699,2017.0,2019.0,1959.0,PRIVATE,6,York Centre,35 CANYON AVE,21,237,2019-11-07,82,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,3.0,N0624,43.757997709499996,-79.43691777560001,309864.19800000003,4846227.739
-891348,4154836,2017.0,2019.0,1959.0,PRIVATE,17,Don Valley North,11 DERVOCK CRES,4,77,2019-11-07,87,Evaluation needs to be conducted in 3 years,19,4.0,5.0,5.0,5.0,4.0,5.0,4.0,4.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,N1729,43.76608884,-79.38041321899999,314412.519,4847132.58
-891349,4154831,2017.0,2019.0,1968.0,PRIVATE,17,Don Valley North,2775 DON MILLS RD,14,170,2019-11-07,91,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,,4.0,4.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,,N1727,43.779757915299996,-79.3477938007,317036.328,4848654.491
-891350,4154713,2017.0,2019.0,1959.0,PRIVATE,18,Willowdale,4979 BATHURST ST,6,92,2019-11-06,90,Evaluation needs to be conducted in 3 years,18,5.0,3.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,,4.0,4.0,5.0,4.0,5.0,5.0,5.0,3.0,4.0,,N1822,43.775246245,-79.4428772024,309383.017,4848143.646000001
-891351,4154714,2017.0,2019.0,1959.0,PRIVATE,18,Willowdale,4981 BATHURST ST,6,96,2019-11-06,90,Evaluation needs to be conducted in 3 years,18,5.0,3.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,,4.0,5.0,5.0,3.0,5.0,5.0,5.0,3.0,4.0,,N1822,43.7762507176,-79.44313913810001,309361.856,4848255.225
-891352,4154720,2017.0,2019.0,1971.0,PRIVATE,18,Willowdale,6151 BATHURST ST,12,67,2019-11-06,93,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,5.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,3.0,5.0,N1821,43.788050695200006,-79.445991695,309131.37,4849566.008
-891353,4154761,2017.0,2019.0,1960.0,PRIVATE,16,Don Valley East,1 DEAUVILLE LANE,9,151,2019-11-06,92,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,,N1630,43.7170552928,-79.3300834022,318476.11699999997,4841691.34
-891354,4155673,2017.0,2019.0,2013.0,PRIVATE,16,Don Valley East,5 DEAUVILLE LANE,7,62,2019-11-06,77,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,4.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,N1630,43.7178206599,-79.3305417453,318400.363,4841821.642
-891355,4155127,2017.0,2019.0,1992.0,SOCIAL HOUSING,5,York South-Weston,200 DORA SPENCER RD,9,125,2019-11-06,90,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,5.0,5.0,5.0,4.0,4.0,4.0,,4.0,4.0,5.0,5.0,4.0,5.0,,5.0,4.0,4.0,W0531,43.6917606066,-79.5050710659,304375.636,4838867.321
-891356,4154215,2017.0,2019.0,1964.0,PRIVATE,7,Humber River-Black Creek,1746 WILSON AVE,3,10,2019-11-06,69,Evaluation needs to be conducted in 2 years,16,4.0,2.0,3.0,3.0,3.0,4.0,,4.0,,,4.0,3.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,,W0734,43.7197813249,-79.5153042212,303551.38399999996,4841980.352
-891357,4155179,2017.0,2019.0,1960.0,PRIVATE,5,York South-Weston,230 WOOLNER AVE,9,130,2019-11-06,74,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,5.0,,2.0,3.0,5.0,3.0,4.0,4.0,4.0,3.0,2.0,,W0539,43.672250689799995,-79.4935197463,305306.919,4836699.823
-891358,4154756,2017.0,2019.0,1976.0,PRIVATE,16,Don Valley East,35 WYNFORD HEIGHTS CRES,25,217,2019-11-06,86,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,2.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,5.0,5.0,N1629,43.7263188872,-79.326226049,318784.766,4842721.124
-891359,4154757,2017.0,2019.0,1973.0,PRIVATE,16,Don Valley East,45 WYNFORD HEIGHTS CRES,21,346,2019-11-06,84,Evaluation needs to be conducted in 2 years,20,5.0,5.0,5.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,5.0,4.0,4.0,5.0,5.0,5.0,4.0,3.0,4.0,N1629,43.72699020859999,-79.32555199810001,318838.914,4842795.818
-891360,4154758,2017.0,2019.0,1969.0,PRIVATE,16,Don Valley East,55 WYNFORD HEIGHTS CRES,21,344,2019-11-06,89,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,3.0,5.0,N1629,43.7273105049,-79.3250508572,318879.214,4842831.4860000005
-891361,4154759,2017.0,2019.0,1974.0,PRIVATE,16,Don Valley East,65 WYNFORD HEIGHTS CRES,21,327,2019-11-06,89,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,3.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,3.0,5.0,N1629,43.7283181853,-79.3241417766,318952.217,4842943.589
-891362,4154218,2017.0,2019.0,1985.0,PRIVATE,7,Humber River-Black Creek,25 DALLNER RD,4,71,2019-11-06,71,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,3.0,,3.0,,4.0,3.0,,3.0,3.0,5.0,3.0,3.0,4.0,3.0,4.0,3.0,,W0734,43.7215636284,-79.5137264803,303678.542,4842178.326
-891363,4154715,2017.0,2019.0,1996.0,SOCIAL HOUSING,18,Willowdale,33 DREWRY AVE,6,81,2019-11-06,89,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,4.0,5.0,4.0,3.0,5.0,,4.0,5.0,5.0,5.0,4.0,3.0,5.0,5.0,4.0,5.0,N1822,43.7863368671,-79.4188830465,311313.334,4849377.413
-891364,4155122,2017.0,2019.0,1983.0,TCHC,5,York South-Weston,30 DENARDA ST,15,255,2019-11-06,47,Building Audit,19,3.0,3.0,3.0,3.0,2.0,3.0,2.0,2.0,3.0,,2.0,3.0,3.0,1.0,2.0,2.0,2.0,2.0,2.0,2.0,W0531,43.68924906,-79.4925042867,305388.692,4838588.272
-891365,4154763,2017.0,2019.0,1968.0,PRIVATE,16,Don Valley East,5 DUFRESNE CRT,28,218,2019-11-06,87,Evaluation needs to be conducted in 3 years,20,4.0,3.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,3.0,5.0,5.0,4.0,5.0,N1630,43.71503235,-79.33058483399999,318480.453,4841476.916
-891366,4156371,2017.0,2019.0,1992.0,SOCIAL HOUSING,5,York South-Weston,10 MAPLE LEAF DR,10,150,2019-11-06,84,Evaluation needs to be conducted in 2 years,17,4.0,5.0,5.0,3.0,4.0,4.0,5.0,4.0,5.0,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,W0528,43.709517541400004,-79.5048440536,304394.109,4840839.994
-891367,4154710,2017.0,2019.0,1959.0,PRIVATE,18,Willowdale,292 FINCH AVE W,4,39,2019-11-06,80,Evaluation needs to be conducted in 2 years,17,5.0,3.0,3.0,5.0,5.0,5.0,,4.0,5.0,,3.0,3.0,5.0,3.0,5.0,5.0,3.0,3.0,3.0,,N1822,43.7746707581,-79.44071358560001,309557.229,4848079.829
-891368,4154711,2020.0,2019.0,1962.0,PRIVATE,18,Willowdale,296 FINCH AVE W,4,30,2019-11-06,72,Evaluation needs to be conducted in 2 years,18,5.0,3.0,5.0,5.0,3.0,5.0,,2.0,3.0,2.0,3.0,5.0,3.0,2.0,5.0,5.0,3.0,3.0,3.0,,N1822,43.7745588068,-79.4412316023,309515.538,4848067.363
-891369,4154712,,2019.0,,PRIVATE,18,Willowdale,300 FINCH AVE W,4,30,2019-11-06,79,Evaluation needs to be conducted in 2 years,17,5.0,3.0,5.0,5.0,3.0,5.0,,5.0,4.0,,3.0,3.0,3.0,3.0,5.0,4.0,3.0,3.0,5.0,,N1822,43.7744429688,-79.4417362415,309474.924,4848054.466
-891370,4169221,2019.0,2019.0,1953.0,PRIVATE,5,York South-Weston,2701 EGLINTON AVE W,4,49,2019-11-06,75,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,3.0,4.0,,3.0,,3.0,4.0,4.0,5.0,3.0,3.0,4.0,4.0,4.0,4.0,,W0536,43.689344093,-79.47749785100001,306598.205,4838599.952
-891371,4155194,2017.0,2019.0,1986.0,SOCIAL HOUSING,5,York South-Weston,3561 EGLINTON AVE W,16,140,2019-11-06,71,Evaluation needs to be conducted in 2 years,19,3.0,3.0,5.0,4.0,3.0,4.0,4.0,3.0,4.0,,3.0,3.0,5.0,4.0,3.0,3.0,3.0,4.0,2.0,4.0,W0535,43.6858944242,-79.49260031989999,305380.966,4838215.5819999995
-891372,4155126,2017.0,2019.0,1957.0,PRIVATE,5,York South-Weston,1306 WESTON RD,3,11,2019-11-06,47,Building Audit,14,2.0,2.0,1.0,2.0,,3.0,,1.0,,,2.0,1.0,5.0,3.0,3.0,2.0,,3.0,3.0,,W0531,43.6894309704,-79.49695331470001,305030.032,4838608.475
-891373,4154296,2017.0,2019.0,1960.0,PRIVATE,5,York South-Weston,42 GULLIVER RD,7,60,2019-11-06,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,,W0529,43.6991175978,-79.4785706748,306511.73600000003,4839684.778
-891374,4154285,2017.0,2019.0,1965.0,PRIVATE,5,York South-Weston,45 GULLIVER RD,5,43,2019-11-06,74,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,3.0,3.0,3.0,,4.0,4.0,4.0,3.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,W0529,43.6983227203,-79.4785516514,306513.29,4839596.471
-891375,4154297,2017.0,2019.0,1960.0,PRIVATE,5,York South-Weston,70 GULLIVER RD,3,19,2019-11-06,80,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,4.0,4.0,,3.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,W0529,43.699041127,-79.480211325,306379.23,4839677.21
-891376,4156723,2017.0,2019.0,2008.0,PRIVATE,5,York South-Weston,5 HARDING AVE,9,184,2019-11-06,77,Evaluation needs to be conducted in 2 years,18,5.0,5.0,5.0,2.0,3.0,4.0,3.0,4.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,2.0,,W0528,43.699376402,-79.502250278,304602.821,4839714.337
-891377,4154292,2017.0,2019.0,1961.0,PRIVATE,5,York South-Weston,2100 KEELE ST,6,71,2019-11-06,89,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,4.0,4.0,4.0,,5.0,5.0,3.0,4.0,4.0,5.0,5.0,5.0,4.0,5.0,5.0,4.0,,W0529,43.6995126232,-79.47655998409999,306673.795,4839728.7
-891378,4154724,2017.0,2019.0,1969.0,PRIVATE,18,Willowdale,765 STEELES AVE W,22,167,2019-11-06,89,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,5.0,4.0,5.0,5.0,3.0,,N1821,43.792379298,-79.44279604100001,309387.955,4850048.034
-891379,4155110,2017.0,2019.0,1957.0,PRIVATE,5,York South-Weston,102 TRETHEWEY DR,4,30,2019-11-06,61,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,2.0,3.0,,2.0,,3.0,3.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,,W0532,43.69311770149999,-79.4834759702,306116.469,4839018.146000001
-891380,4156510,2017.0,2019.0,1974.0,TCHC,5,York South-Weston,720 TRETHEWEY DR,19,204,2019-11-06,70,Evaluation needs to be conducted in 2 years,18,3.0,3.0,5.0,5.0,3.0,4.0,3.0,3.0,3.0,,3.0,4.0,5.0,3.0,3.0,4.0,3.0,3.0,3.0,,W0528,43.697963611000006,-79.50094174899999,304708.284,4839557.3780000005
-891381,4154219,2017.0,2019.0,1965.0,PRIVATE,7,Humber River-Black Creek,99 MATTSON RD,4,30,2019-11-06,56,Evaluation needs to be conducted in 1 year,17,3.0,3.0,2.0,2.0,2.0,3.0,,3.0,2.0,,2.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0734,43.722654944,-79.5130447411,303733.493,4842299.549
-891382,4154327,2017.0,2019.0,1959.0,PRIVATE,5,York South-Weston,1724 LAWRENCE AVE W,3,30,2019-11-06,65,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,3.0,,4.0,3.0,5.0,2.0,3.0,4.0,2.0,3.0,3.0,,W0528,43.704899460600004,-79.4973466692,304998.33,4840326.9569999995
-891383,4154328,2017.0,2019.0,1960.0,PRIVATE,5,York South-Weston,1728 LAWRENCE AVE W,4,34,2019-11-06,83,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,5.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,W0528,43.7048608141,-79.4976836362,304971.172,4840322.663
-891384,4154324,2017.0,2019.0,1961.0,PRIVATE,5,York South-Weston,1809 LAWRENCE AVE W,4,32,2019-11-06,89,Evaluation needs to be conducted in 3 years,17,4.0,5.0,5.0,4.0,5.0,5.0,,5.0,4.0,,5.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,W0528,43.703046615299996,-79.5014077845,304671.015,4840121.117
-891385,4156358,2017.0,2019.0,1960.0,PRIVATE,5,York South-Weston,2089 LAWRENCE AVE W,16,121,2019-11-06,81,Evaluation needs to be conducted in 2 years,19,5.0,5.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,3.0,4.0,5.0,5.0,5.0,4.0,4.0,4.0,3.0,3.0,W0527,43.699266335,-79.51717541100001,303375.42,4839743.518999999
-891386,4156359,2017.0,2019.0,1960.0,PRIVATE,5,York South-Weston,2099 LAWRENCE AVE W,16,121,2019-11-06,81,Evaluation needs to be conducted in 2 years,19,5.0,5.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,3.0,4.0,5.0,5.0,5.0,4.0,4.0,4.0,3.0,3.0,W0527,43.69945409899999,-79.517762353,303330.156,4839728.712
-891387,4156561,2017.0,2019.0,2012.0,PRIVATE,18,Willowdale,485 PATRICIA AVE,10,240,2019-11-06,99,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,N1821,43.783662468,-79.444994843,309246.757,4849085.015
-891388,4155742,2017.0,2019.0,2008.0,PRIVATE,5,York South-Weston,333 SIDNEY BELSEY CRES,12,264,2019-11-06,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,3.0,5.0,3.0,3.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,,5.0,4.0,4.0,W0531,43.691326105,-79.50858748,304091.899,4838820.039
-891389,4156140,2017.0,2019.0,1996.0,SOCIAL HOUSING,18,Willowdale,45 CUMMER AVE,4,53,2019-11-06,95,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,5.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,5.0,N1823,43.787109971999996,-79.415408659,311592.624,4849464.537
-891390,4154842,2017.0,2019.0,1967.0,PRIVATE,17,Don Valley North,505 CUMMER AVE,13,175,2019-11-06,94,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,5.0,4.0,4.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,N1721,43.7921587704,-79.3916718817,313502.61600000004,4850026.664
-891391,4154289,2017.0,2019.0,1957.0,PRIVATE,5,York South-Weston,2246 KEELE ST,3,22,2019-11-06,69,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,,3.0,3.0,3.0,5.0,3.0,4.0,3.0,,3.0,4.0,,W0529,43.7014106109,-79.4769290281,306643.993,4839939.556
-891392,4155130,2017.0,2019.0,1969.0,PRIVATE,5,York South-Weston,24 PINEHILL CRES,4,29,2019-11-06,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,4.0,,W0531,43.688323353,-79.50178938,304639.897,4838486.396000001
-891393,4154843,2017.0,2019.0,1986.0,PRIVATE,17,Don Valley North,70 RUDDINGTON DR,18,107,2019-11-06,95,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,,5.0,4.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,5.0,N1721,43.79254847,-79.39077874,313611.526,4850015.004
-891394,4155121,2017.0,2019.0,1982.0,SOCIAL HOUSING,5,York South-Weston,15 OXFORD DR,10,174,2019-11-06,62,Evaluation needs to be conducted in 1 year,19,4.0,2.0,4.0,3.0,2.0,3.0,3.0,2.0,3.0,,3.0,3.0,5.0,2.0,2.0,3.0,3.0,4.0,4.0,4.0,W0531,43.6889254587,-79.4913528542,305481.516,4838552.325
-891395,4156564,2017.0,2019.0,1968.0,PRIVATE,17,Don Valley North,11 RUDDINGTON DR,13,155,2019-11-06,87,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,5.0,4.0,5.0,4.0,5.0,4.0,3.0,,N1721,43.7877925781,-79.3916951012,313501.368,4849541.583000001
-891396,4154845,2017.0,2019.0,1968.0,PRIVATE,17,Don Valley North,50 RUDDINGTON DR,14,189,2019-11-06,91,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N1721,43.7904933942,-79.3906931297,313581.62100000004,4849841.742
-891397,4154844,2017.0,2019.0,1966.0,PRIVATE,17,Don Valley North,60 RUDDINGTON DR,18,179,2019-11-06,90,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,N1721,43.791632438,-79.390465773,313640.418,4849905.415
-891398,4155905,2017.0,2019.0,1969.0,PRIVATE,4,Parkdale-High Park,95 HIGH PARK AVE,16,218,2019-11-06,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,2.0,4.0,S0428,43.65678758399999,-79.46615734699999,307493.658,4834995.877
-891399,4154768,2017.0,2019.0,1969.0,PRIVATE,16,Don Valley East,10 GRENOBLE DR,17,284,2019-11-06,79,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,5.0,4.0,5.0,3.0,4.0,3.0,2.0,3.0,5.0,5.0,4.0,3.0,4.0,5.0,5.0,2.0,4.0,N1630,43.716421355,-79.334404294,318127.81,4841621.149
-891400,4154762,2017.0,2019.0,1966.0,PRIVATE,16,Don Valley East,45 GRENOBLE DR,28,217,2019-11-06,82,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,,3.0,4.0,5.0,4.0,3.0,4.0,3.0,5.0,4.0,5.0,N1630,43.716030296999996,-79.330923583,318408.386,4841578.281
-891401,4154351,2017.0,2019.0,1950.0,PRIVATE,5,York South-Weston,2428 KEELE ST,3,10,2019-11-06,67,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,4.0,3.0,3.0,,3.0,3.0,,W0526,43.7106272814,-79.4788634923,306486.658,4840982.713
-891402,4154349,2017.0,2019.0,1960.0,PRIVATE,5,York South-Weston,2432 KEELE ST,3,12,2019-11-06,80,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,4.0,4.0,4.0,,3.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0526,43.711105671300004,-79.47890915079999,306484.13300000003,4841016.598999999
-891403,4154339,2018.0,2019.0,1967.0,PRIVATE,5,York South-Weston,2460 KEELE ST,8,57,2019-11-06,62,Evaluation needs to be conducted in 1 year,19,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,2.0,,W0526,43.7125446153,-79.4793858958,306445.675,4841176.448
-891404,4221322,2017.0,2019.0,1968.0,PRIVATE,16,Don Valley East,48 GRENOBLE DR,9,109,2019-11-06,90,Evaluation needs to be conducted in 3 years,18,3.0,4.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,,4.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,5.0,,N1630,43.716768048999995,-79.331308961,318377.163,4841660.179
-891405,4154293,2017.0,2019.0,1960.0,PRIVATE,5,York South-Weston,14 GULLIVER RD,6,57,2019-11-06,72,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,5.0,4.0,4.0,3.0,5.0,4.0,3.0,,W0529,43.6995188546,-79.47732165949999,306612.402,4839729.377
-891406,4154281,2017.0,2019.0,1960.0,PRIVATE,5,York South-Weston,17 GULLIVER RD,6,42,2019-11-06,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,3.0,4.0,4.0,5.0,3.0,5.0,4.0,5.0,4.0,3.0,,W0529,43.6987192629,-79.476784436,306655.727,4839640.555
-891407,4154282,2017.0,2019.0,1961.0,PRIVATE,5,York South-Weston,21 GULLIVER RD,7,51,2019-11-06,83,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,,W0529,43.6986462208,-79.4772084771,306621.55,4839632.432
-891408,4154338,2018.0,2019.0,1977.0,PRIVATE,5,York South-Weston,2500 KEELE ST,12,95,2019-11-06,66,Evaluation needs to be conducted in 2 years,19,3.0,3.0,5.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,3.0,3.0,5.0,3.0,3.0,3.0,2.0,3.0,2.0,,W0526,43.7131114472,-79.4796418006,306425.038,4841239.414
-891409,4154310,2017.0,2019.0,1958.0,PRIVATE,5,York South-Weston,2567 KEELE ST,4,26,2019-11-06,81,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,5.0,,4.0,,4.0,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,W0523,43.7173852837,-79.4796573022,306423.67600000004,4841714.21
-891410,4154283,2017.0,2019.0,1961.0,PRIVATE,5,York South-Weston,25 GULLIVER RD,7,52,2019-11-06,83,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,,W0529,43.69855491,-79.4776237229,306588.082,4839622.28
-891411,4154294,2017.0,2019.0,1963.0,PRIVATE,5,York South-Weston,26 GULLIVER RD,6,53,2019-11-06,74,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,4.0,4.0,,3.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,,W0529,43.6993035632,-79.4776846609,306583.149,4839705.452
-891412,4154284,2017.0,2019.0,1967.0,PRIVATE,5,York South-Weston,35 GULLIVER RD,6,42,2019-11-06,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,W0529,43.6984374675,-79.4780739055,306551.797,4839609.226
-891413,4155198,2017.0,2019.0,1960.0,PRIVATE,5,York South-Weston,898 JANE ST,8,63,2019-11-06,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,,W0534,43.6776538886,-79.49672691939999,305048.27,4837300.091
-891414,4155199,2017.0,2019.0,1968.0,PRIVATE,5,York South-Weston,900 JANE ST,5,40,2019-11-06,74,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,4.0,,4.0,2.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,,W0534,43.6782330421,-79.4969313119,305031.787,4837364.433
-891415,4155621,2017.0,2019.0,1967.0,TCHC,5,York South-Weston,1570 JANE ST,6,76,2019-11-06,53,Evaluation needs to be conducted in 1 year,19,2.0,3.0,2.0,2.0,2.0,3.0,2.0,2.0,3.0,,2.0,3.0,5.0,2.0,2.0,3.0,3.0,3.0,3.0,3.0,W0527,43.6990884103,-79.5033968088,304510.668,4839681.395
-891416,4154331,2017.0,2019.0,1960.0,PRIVATE,5,York South-Weston,1795 JANE ST,10,105,2019-11-06,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,5.0,4.0,5.0,2.0,4.0,3.0,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,,W0528,43.7066838334,-79.5040013996,304461.998,4840525.194
-891417,4154401,2017.0,2019.0,1950.0,PRIVATE,6,York Centre,2217 JANE ST,3,12,2019-11-06,75,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,3.0,4.0,3.0,,4.0,,,4.0,3.0,5.0,4.0,3.0,4.0,,4.0,3.0,,N0627,43.7233585034,-79.508865507,304070.225,4842377.656
-891418,4168721,2021.0,2019.0,1956.0,PRIVATE,5,York South-Weston,870 WESTON RD,3,11,2019-11-06,52,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,2.0,2.0,2.0,,2.0,,,2.0,2.0,3.0,3.0,3.0,3.0,,3.0,3.0,,W0535,43.6831377116,-79.48055707479999,306351.965,4837909.4569999995
-891419,4155190,2021.0,2019.0,1956.0,PRIVATE,5,York South-Weston,872 WESTON RD,3,12,2019-11-06,55,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,2.0,2.0,,2.0,,,2.0,2.0,3.0,3.0,3.0,3.0,,4.0,3.0,,W0535,43.683182052700005,-79.4807822687,306333.807,4837914.38
-891420,4155120,2017.0,2019.0,1958.0,PRIVATE,5,York South-Weston,1197 WESTON RD,3,15,2019-11-06,66,Evaluation needs to be conducted in 2 years,16,3.0,4.0,3.0,3.0,3.0,2.0,,3.0,,3.0,3.0,3.0,5.0,4.0,4.0,3.0,,4.0,3.0,,W0531,43.687965464799994,-79.4913964686,305478.007,4838445.673
-891421,4155124,2017.0,2019.0,1995.0,SOCIAL HOUSING,5,York South-Weston,1296 WESTON RD,5,24,2019-11-06,65,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,3.0,2.0,4.0,1.0,3.0,3.0,,3.0,2.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,2.0,W0531,43.689065737700005,-79.4960622799,305092.365,4838574.571
-891422,4154764,2017.0,2019.0,1968.0,PRIVATE,16,Don Valley East,7 ST DENNIS DR,17,278,2019-11-06,86,Evaluation needs to be conducted in 3 years,20,5.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,5.0,N1630,43.7160160974,-79.3362293241,317981.095,4841574.866
-891423,4154765,2017.0,2019.0,1967.0,PRIVATE,16,Don Valley East,25 ST DENNIS DR,17,297,2019-11-06,82,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,5.0,,4.0,5.0,4.0,4.0,3.0,4.0,5.0,4.0,3.0,,N1630,43.717187304300005,-79.33300027770001,318241.038,4841705.521000001
-891424,4156627,2017.0,2019.0,1964.0,PRIVATE,16,Don Valley East,30 ST DENNIS DR,4,56,2019-11-06,92,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,4.0,5.0,4.0,4.0,5.0,5.0,,5.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,5.0,N1630,43.718750711999995,-79.33100323800001,,
-891425,4156610,2017.0,2019.0,1964.0,PRIVATE,16,Don Valley East,32 ST DENNIS DR,4,56,2019-11-06,92,Evaluation needs to be conducted in 3 years,18,4.0,4.0,5.0,4.0,5.0,4.0,4.0,5.0,5.0,,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,,N1630,43.7190096,-79.330401851,,
-891426,4156640,2017.0,2019.0,1964.0,PRIVATE,16,Don Valley East,34 ST DENNIS DR,4,56,2019-11-06,90,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,5.0,,5.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,,N1630,43.719032696999996,-79.329817672,,
-891427,4156323,2017.0,2019.0,1971.0,PRIVATE,17,Don Valley North,4001 BAYVIEW AVE,12,234,2019-11-06,95,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,4.0,5.0,N1721,43.8013167898,-79.39228963229999,313197.147,4851099.932
-891428,4155675,2017.0,2019.0,1971.0,PRIVATE,17,Don Valley North,4005 BAYVIEW AVE,12,235,2019-11-06,94,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,,N1721,43.8026375756,-79.3940419226,313187.202,4851155.2469999995
-891429,4154303,2018.0,2019.0,1953.0,PRIVATE,5,York South-Weston,16 ARROWSMITH AVE,3,11,2019-11-06,81,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0529,43.7043754257,-79.4779098871,306564.853,4840268.915
-891430,4154781,2017.0,2019.0,1959.0,PRIVATE,16,Don Valley East,1065 DON MILLS RD,4,61,2019-11-05,81,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,4.0,3.0,5.0,4.0,4.0,4.0,5.0,3.0,5.0,5.0,3.0,4.0,3.0,4.0,5.0,4.0,,N1627,43.7359570079,-79.3424850802,317472.816,4843789.209
-891431,4154782,2017.0,2019.0,1959.0,PRIVATE,16,Don Valley East,1071 DON MILLS RD,4,61,2019-11-05,83,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,3.0,5.0,5.0,3.0,4.0,4.0,5.0,5.0,3.0,,N1627,43.7365519445,-79.3426250129,317461.42,4843855.285
-891432,4269869,2017.0,2019.0,1959.0,PRIVATE,16,Don Valley East,110 COTTONWOOD DR,3,22,2019-11-05,80,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,N1626,43.729582726000004,-79.342147167,317500.023,4843085.579
-891433,4154873,2017.0,2019.0,1962.0,PRIVATE,16,Don Valley East,11 ECCLESTON DR,4,78,2019-11-05,76,Evaluation needs to be conducted in 2 years,17,5.0,3.0,5.0,5.0,3.0,5.0,,3.0,5.0,,3.0,3.0,5.0,3.0,5.0,3.0,3.0,3.0,3.0,,N1628,43.727024237200006,-79.315596986,319640.935,4842801.313
-891434,4154872,2018.0,2019.0,1960.0,PRIVATE,16,Don Valley East,17 ECCLESTON DR,4,60,2019-11-05,80,Evaluation needs to be conducted in 2 years,18,5.0,3.0,3.0,5.0,5.0,5.0,,3.0,5.0,3.0,3.0,3.0,3.0,5.0,5.0,5.0,3.0,5.0,3.0,,N1628,43.7269029771,-79.31605608539999,319603.978,4842787.76
-891435,4154870,2019.0,2019.0,1958.0,PRIVATE,16,Don Valley East,25 ECCLESTON DR,4,61,2019-11-05,80,Evaluation needs to be conducted in 2 years,18,5.0,3.0,5.0,5.0,5.0,5.0,,3.0,5.0,3.0,3.0,5.0,5.0,3.0,5.0,3.0,3.0,3.0,3.0,,N1628,43.7272222643,-79.3179806814,319448.845,4842822.893999999
-891436,4154791,2017.0,2019.0,1958.0,PRIVATE,16,Don Valley East,46 FOXDEN RD,3,22,2019-11-05,81,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,,N1626,43.72911001,-79.342048581,317497.67699999997,4843021.001
-891437,4154851,2017.0,2019.0,1982.0,PRIVATE,16,Don Valley East,1770 EGLINTON AVE E,7,92,2019-11-05,88,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,,4.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,4.0,,N1628,43.725414029,-79.305833904,320427.646,4842625.1680000005
-891438,4154852,2017.0,2019.0,1982.0,PRIVATE,16,Don Valley East,1780 EGLINTON AVE E,9,203,2019-11-05,89,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,,4.0,4.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,5.0,N1628,43.725379191,-79.304998826,320494.935,4842621.455
-891439,4154853,2017.0,2019.0,1982.0,PRIVATE,16,Don Valley East,1790 EGLINTON AVE E,9,117,2019-11-05,89,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,,4.0,4.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,5.0,N1628,43.726050381,-79.304738793,320629.54600000003,4842567.701
-891440,4156295,2017.0,2019.0,1967.0,PRIVATE,5,York South-Weston,1765 WESTON RD,25,246,2019-11-05,60,Evaluation needs to be conducted in 1 year,18,3.0,3.0,5.0,2.0,2.0,3.0,2.0,3.0,3.0,,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0527,43.6990639559,-79.5119719596,303819.476,4839678.778
-891441,4155920,2017.0,2019.0,1967.0,PRIVATE,5,York South-Weston,1775 WESTON RD,25,245,2019-11-05,56,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,1.0,3.0,3.0,2.0,3.0,2.0,,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0527,43.6994166431,-79.51287144,303746.982,4839717.978999999
-891442,4155160,2017.0,2019.0,1973.0,TCHC,5,York South-Weston,1901 WESTON RD,17,400,2019-11-05,71,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,,3.0,3.0,5.0,4.0,4.0,4.0,2.0,2.0,4.0,,W0524,43.7005890595,-79.5159933375,303495.37,4839848.29
-891443,4155173,2017.0,2019.0,1962.0,PRIVATE,5,York South-Weston,2180 WESTON RD,8,62,2019-11-05,81,Evaluation needs to be conducted in 2 years,17,4.0,5.0,5.0,4.0,4.0,3.0,,3.0,5.0,,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,2.0,,W0524,43.702981103,-79.526148917,302676.666,4840115.227
-891444,4240549,2017.0,2019.0,1962.0,PRIVATE,5,York South-Weston,2190 WESTON RD,8,76,2019-11-05,74,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,2.0,4.0,3.0,,3.0,5.0,,3.0,5.0,5.0,3.0,4.0,4.0,4.0,3.0,2.0,,W0524,43.703114245,-79.526528746,302646.059,4840130.027
-891445,4155170,2017.0,2019.0,1961.0,PRIVATE,5,York South-Weston,2220 WESTON RD,6,93,2019-11-05,87,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,4.0,4.0,4.0,,4.0,4.0,,5.0,5.0,5.0,5.0,4.0,3.0,5.0,4.0,3.0,,W0524,43.7035934796,-79.5272812231,302585.697,4840182.329
-891446,4155169,2017.0,2019.0,1961.0,PRIVATE,5,York South-Weston,2222 WESTON RD,6,65,2019-11-05,87,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,4.0,4.0,4.0,,4.0,4.0,,5.0,5.0,5.0,5.0,4.0,3.0,5.0,4.0,3.0,,W0524,43.703825263999995,-79.52767378,302553.804,4840209.041999999
-891447,4155168,2017.0,2019.0,1967.0,PRIVATE,5,York South-Weston,2240 WESTON RD,19,150,2019-11-05,70,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,2.0,4.0,3.0,3.0,3.0,4.0,,3.0,5.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,,W0524,43.7040183112,-79.5281921878,302512.295,4840229.548
-891448,4154362,,2019.0,1956.0,PRIVATE,5,York South-Weston,2616 KEELE ST,3,11,2019-11-05,74,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,3.0,,3.0,,3.0,3.0,4.0,5.0,4.0,3.0,4.0,,4.0,3.0,,W0522,43.719032062,-79.4807128716,306338.57899999997,4841897.134
-891449,4154361,,2019.0,1955.0,PRIVATE,5,York South-Weston,2618 KEELE ST,3,11,2019-11-05,66,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,4.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,4.0,3.0,3.0,,4.0,3.0,,W0522,43.719344175299995,-79.48077805449999,306333.31899999996,4841931.806
-891450,4154359,2017.0,2019.0,1954.0,PRIVATE,5,York South-Weston,2622 KEELE ST,3,11,2019-11-05,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,,,3.0,3.0,5.0,3.0,4.0,3.0,,4.0,3.0,,W0522,43.7197822126,-79.4809670632,306318.07899999997,4841980.465
-891451,4154314,2017.0,2019.0,1965.0,PRIVATE,5,York South-Weston,2623 KEELE ST,3,11,2019-11-05,79,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,4.0,4.0,4.0,,4.0,,4.0,4.0,3.0,5.0,4.0,4.0,3.0,4.0,5.0,4.0,,W0523,43.7203778821,-79.48023467510001,306377.076,4842046.653
-891452,4155151,2017.0,2019.0,1940.0,PRIVATE,5,York South-Weston,50 JOHN ST,3,14,2019-11-05,74,Evaluation needs to be conducted in 2 years,16,3.0,4.0,3.0,3.0,4.0,3.0,,4.0,,4.0,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,W0525,43.703370512,-79.516414059,303461.293,4840158.234
-891453,4154315,2017.0,2019.0,1958.0,PRIVATE,5,York South-Weston,2637 KEELE ST,3,12,2019-11-05,72,Evaluation needs to be conducted in 2 years,15,4.0,3.0,5.0,3.0,4.0,3.0,,3.0,,,3.0,4.0,5.0,4.0,3.0,3.0,,4.0,3.0,,W0523,43.7208097276,-79.4802643033,306374.678,4842094.627
-891454,4154784,2017.0,2019.0,1963.0,PRIVATE,16,Don Valley East,18 THE DONWAY E,7,76,2019-11-05,83,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,5.0,,3.0,5.0,5.0,3.0,4.0,4.0,5.0,5.0,3.0,,N1627,43.7371481492,-79.34125862890001,317571.354,4843921.73
-891455,4154793,2019.0,2019.0,1962.0,PRIVATE,16,Don Valley East,150 THE DONWAY W,6,65,2019-11-05,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,5.0,,4.0,4.0,3.0,3.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,N1626,43.733399454700006,-79.3476283156,317059.04,4843504.301
-891456,4154854,2017.0,2019.0,1982.0,PRIVATE,16,Don Valley East,1530 VICTORIA PARK AVE,9,141,2019-11-05,90,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,,5.0,4.0,4.0,4.0,5.0,4.0,5.0,5.0,4.0,,N1628,,,320579.715,4842629.108
-891457,4154855,2017.0,2019.0,1982.0,PRIVATE,16,Don Valley East,1540 VICTORIA PARK AVE,9,132,2019-11-05,88,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,,4.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,4.0,,N1628,43.72612052189999,-79.3038237102,320589.67600000004,4842703.079
-891458,4154862,2017.0,2019.0,1968.0,PRIVATE,16,Don Valley East,1600 VICTORIA PARK AVE,4,27,2019-11-05,82,Evaluation needs to be conducted in 2 years,18,4.0,5.0,5.0,4.0,3.0,4.0,,5.0,5.0,4.0,3.0,3.0,5.0,4.0,3.0,4.0,5.0,4.0,4.0,,N1628,43.730005821599995,-79.3053972189,320461.9,4843134.408
-891459,4154891,2017.0,2019.0,1958.0,PRIVATE,16,Don Valley East,2 SWIFT DR,4,61,2019-11-05,94,Evaluation needs to be conducted in 3 years,18,5.0,3.0,5.0,5.0,5.0,5.0,,4.0,5.0,5.0,5.0,5.0,5.0,3.0,5.0,5.0,5.0,5.0,5.0,,N1628,43.726549517399995,-79.31918836210001,319351.711,4842747.946
-891460,4154880,2017.0,2019.0,1987.0,SOCIAL HOUSING,16,Don Valley East,1684 VICTORIA PARK AVE,8,112,2019-11-05,94,Evaluation needs to be conducted in 3 years,19,4.0,5.0,5.0,4.0,5.0,5.0,5.0,3.0,5.0,,4.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,N1628,43.7328892774,-79.3065969199,320364.51399999997,4843454.521000001
-891461,4154869,2017.0,2019.0,1960.0,PRIVATE,16,Don Valley East,3 SWIFT DR,5,61,2019-11-05,87,Evaluation needs to be conducted in 3 years,18,5.0,3.0,5.0,5.0,5.0,5.0,,3.0,5.0,5.0,5.0,5.0,5.0,3.0,3.0,5.0,5.0,3.0,3.0,,N1628,43.7266882298,-79.3178088353,319462.82,4842763.595
-891462,4250529,2017.0,2019.0,1965.0,PRIVATE,5,York South-Weston,2255 WESTON RD,12,101,2019-11-05,64,Evaluation needs to be conducted in 1 year,17,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,2.0,,2.0,5.0,4.0,3.0,3.0,4.0,2.0,3.0,3.0,,W0524,43.7045706478,-79.52743150170001,302573.625,4840290.883
-891463,4154309,2017.0,2019.0,1958.0,PRIVATE,5,York South-Weston,1252 LAWRENCE AVE W,3,10,2019-11-05,73,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,4.0,4.0,4.0,,5.0,,3.0,4.0,2.0,5.0,3.0,4.0,3.0,,3.0,3.0,,W0523,43.7108573649,-79.4707253661,307143.63300000003,4840989.2
-891464,4154356,2017.0,2019.0,1967.0,PRIVATE,5,York South-Weston,1440 LAWRENCE AVE W,13,207,2019-11-05,67,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,4.0,,2.0,4.0,5.0,3.0,4.0,3.0,3.0,3.0,2.0,,W0526,43.708911281400006,-79.4794304788,306442.18100000004,4840772.807
-891465,4169109,2017.0,2019.0,1967.0,PRIVATE,5,York South-Weston,1442 LAWRENCE AVE W,13,214,2019-11-05,64,Evaluation needs to be conducted in 1 year,18,4.0,3.0,4.0,2.0,2.0,4.0,2.0,3.0,4.0,,2.0,3.0,5.0,3.0,3.0,4.0,4.0,4.0,2.0,,W0526,43.7089535721,-79.48052540340001,306428.13300000003,4840717.808
-891466,4154298,,2019.0,1962.0,PRIVATE,5,York South-Weston,1619 LAWRENCE AVE W,4,24,2019-11-05,67,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,4.0,3.0,,3.0,3.0,4.0,2.0,3.0,5.0,2.0,3.0,4.0,3.0,3.0,3.0,,W0529,43.705269832,-79.4911827537,305495.106,4840368.12
-891467,4264301,2017.0,2019.0,1961.0,PRIVATE,16,Don Valley East,60 NORTH HILLS TER,5,71,2019-11-05,85,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N1627,43.73018689,-79.34090279899999,317616.98,4843168.044
-891468,4154878,2017.0,2019.0,1958.0,PRIVATE,16,Don Valley East,1700 VICTORIA PARK AVE,5,54,2019-11-05,93,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,5.0,5.0,5.0,,4.0,5.0,4.0,4.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,4.0,,N1628,43.734305321099995,-79.307065705,320326.385,4843611.746
-891469,4154882,2017.0,2019.0,1966.0,PRIVATE,16,Don Valley East,1704 VICTORIA PARK AVE,7,93,2019-11-05,98,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,,N1628,43.7350883959,-79.30754897189999,320287.25399999996,4843698.648
-891470,4154881,2017.0,2019.0,1968.0,PRIVATE,16,Don Valley East,1710 VICTORIA PARK AVE,4,59,2019-11-05,74,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,5.0,3.0,4.0,3.0,4.0,3.0,,3.0,5.0,5.0,3.0,3.0,3.0,3.0,4.0,4.0,,N1628,43.735657495,-79.3078726793,320261.032,4843761.808999999
-891471,4154772,2017.0,2019.0,1989.0,SOCIAL HOUSING,16,Don Valley East,7 THE DONWAY E,4,70,2019-11-05,88,Evaluation needs to be conducted in 3 years,20,5.0,4.0,5.0,3.0,5.0,5.0,5.0,4.0,3.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,4.0,5.0,N1627,43.733247294799995,-79.3395613564,317708.903,4843488.607
-891472,4154890,2017.0,2019.0,1960.0,PRIVATE,16,Don Valley East,55 ECCLESTON DR,4,60,2019-11-05,74,Evaluation needs to be conducted in 2 years,18,5.0,3.0,5.0,5.0,5.0,5.0,,3.0,5.0,5.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,,N1628,43.726552797,-79.31980992,319295.23,4842735.2469999995
-891473,4154877,2017.0,2019.0,1959.0,PRIVATE,16,Don Valley East,10 ELVASTON DR,3,20,2019-11-05,84,Evaluation needs to be conducted in 2 years,17,5.0,4.0,4.0,5.0,5.0,4.0,,4.0,,5.0,4.0,3.0,5.0,4.0,4.0,5.0,3.0,4.0,3.0,,N1628,43.7305607276,-79.3055621564,320448.469,4843196.023
-891474,4154222,2017.0,2019.0,1972.0,PRIVATE,7,Humber River-Black Creek,170 CHALKFARM DR,23,262,2019-11-05,60,Evaluation needs to be conducted in 1 year,18,3.0,4.0,5.0,2.0,3.0,3.0,2.0,3.0,3.0,,2.0,3.0,4.0,3.0,4.0,2.0,3.0,3.0,2.0,,W0734,43.7242716939,-79.5134047928,303704.517,4842479.159
-891475,4156020,2017.0,2019.0,1960.0,PRIVATE,16,Don Valley East,11 ROCHEFORT DR,3,64,2019-11-05,84,Evaluation needs to be conducted in 2 years,18,5.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,5.0,5.0,5.0,3.0,5.0,4.0,4.0,3.0,3.0,,N1630,43.718077388000005,-79.335977623,317970.536,4841814.969
-891476,4154794,2019.0,2019.0,1961.0,PRIVATE,16,Don Valley East,4 OVERLAND DR,4,48,2019-11-05,76,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,4.0,4.0,,4.0,4.0,3.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N1626,43.7328949656,-79.3478617337,317113.567,4843461.388
-891477,4154433,2017.0,2019.0,1965.0,PRIVATE,6,York Centre,28 HEATHROW DR,3,11,2019-11-05,79,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,3.0,4.0,,5.0,2.0,,N0627,43.7252112669,-79.509276294,304037.158,4842583.484
-891478,4154432,2017.0,2019.0,1965.0,PRIVATE,6,York Centre,32 HEATHROW DR,3,11,2019-11-05,76,Evaluation needs to be conducted in 2 years,15,4.0,3.0,5.0,3.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,3.0,3.0,,4.0,3.0,,N0627,43.7253655366,-79.5088869667,304068.528,4842600.618
-891479,4155158,2017.0,2019.0,1994.0,SOCIAL HOUSING,5,York South-Weston,15 KING ST,12,119,2019-11-05,86,Evaluation needs to be conducted in 3 years,20,4.0,4.0,5.0,4.0,4.0,5.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,3.0,4.0,5.0,5.0,4.0,W0524,43.7019082741,-79.5198266294,303186.471,4839994.908
-891480,4268538,2017.0,2019.0,1974.0,PRIVATE,5,York South-Weston,33 KING ST,27,420,2019-11-05,72,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,4.0,3.0,4.0,3.0,2.0,3.0,4.0,4.0,3.0,5.0,2.0,4.0,4.0,3.0,4.0,4.0,4.0,W0525,43.702394008999995,-79.519023817,303250.92600000004,4840049.806
-891481,4155167,2017.0,2019.0,1962.0,PRIVATE,5,York South-Weston,2260 WESTON RD,9,116,2019-11-05,62,Evaluation needs to be conducted in 1 year,18,3.0,4.0,4.0,2.0,3.0,3.0,3.0,3.0,3.0,,2.0,2.0,4.0,3.0,4.0,3.0,3.0,4.0,3.0,,W0524,43.704334117100004,-79.5286680785,302473.953,4840264.645
-891482,4155154,2017.0,2019.0,1957.0,PRIVATE,5,York South-Weston,2263 WESTON RD,4,34,2019-11-05,72,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,4.0,4.0,,3.0,4.0,3.0,3.0,3.0,5.0,4.0,3.0,3.0,,4.0,3.0,,W0524,43.7048289088,-79.5282351349,302508.86699999997,4840319.597
-891483,4154861,2017.0,2019.0,1955.0,PRIVATE,16,Don Valley East,18 TINDER CRES,4,70,2019-11-05,87,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,5.0,5.0,3.0,,4.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,3.0,5.0,,N1628,43.7273147758,-79.30798685180001,320253.965,4842834.972
-891484,4154860,2017.0,2019.0,1960.0,PRIVATE,16,Don Valley East,20 TINDER CRES,4,59,2019-11-05,83,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,4.0,4.0,3.0,,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,N1628,43.7269176828,-79.3086521838,320200.464,4842790.734
-891485,4154868,2017.0,2019.0,1955.0,PRIVATE,16,Don Valley East,1 BIGGIN CRT,4,48,2019-11-05,87,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,4.0,5.0,4.0,,5.0,4.0,5.0,5.0,3.0,5.0,4.0,4.0,4.0,5.0,4.0,3.0,,N1628,43.7284796451,-79.3050102685,320493.467,4842964.937
-891486,4154865,2017.0,2019.0,1951.0,PRIVATE,16,Don Valley East,7 BIGGIN CRT,4,66,2019-11-05,94,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,5.0,5.0,4.0,,5.0,4.0,5.0,5.0,3.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,,N1628,43.728756862,-79.3062091197,320396.815,4842995.508
-891487,4155873,2017.0,2019.0,1971.0,TCHC,5,York South-Weston,5 BELLEVUE CRES,21,326,2019-11-05,56,Evaluation needs to be conducted in 1 year,19,2.0,2.0,2.0,3.0,3.0,4.0,2.0,2.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,W0527,43.699140093400004,-79.51522928520001,303556.925,4839687.3
-891488,4154221,2017.0,2019.0,1972.0,PRIVATE,7,Humber River-Black Creek,180 CHALKFARM DR,23,263,2019-11-05,61,Evaluation needs to be conducted in 1 year,18,4.0,3.0,5.0,2.0,3.0,4.0,2.0,3.0,3.0,,3.0,3.0,4.0,2.0,4.0,2.0,3.0,3.0,2.0,,W0734,43.724048437200004,-79.5118150261,303832.597,4842454.334
-891489,4154220,2017.0,2019.0,1974.0,PRIVATE,7,Humber River-Black Creek,200 CHALKFARM DR,28,223,2019-11-05,71,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,2.0,4.0,4.0,2.0,3.0,4.0,,3.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,2.0,4.0,W0734,43.724217100000004,-79.510651122,303926.11,4842474.01
-891490,4155142,2019.0,2019.0,1954.0,PRIVATE,5,York South-Weston,131 WOODWARD AVE,3,10,2019-11-05,68,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,3.0,3.0,4.0,,4.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,5.0,3.0,,W0525,43.7094051154,-79.5081946065,304124.096,4840827.536
-891491,4155144,2017.0,2019.0,1955.0,PRIVATE,5,York South-Weston,135 WOODWARD AVE,3,10,2019-11-05,79,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,4.0,4.0,3.0,,4.0,,,5.0,4.0,5.0,4.0,4.0,3.0,,5.0,3.0,,W0525,43.7095042953,-79.5076695409,304166.41,4840838.547
-891492,4155145,,2019.0,1954.0,PRIVATE,5,York South-Weston,137 WOODWARD AVE,3,11,2019-11-05,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,2.0,5.0,4.0,3.0,3.0,,4.0,3.0,,W0525,43.709579516400005,-79.5073998504,304188.144,4840846.9
-891493,4155146,2018.0,2019.0,1945.0,PRIVATE,5,York South-Weston,139 WOODWARD AVE,3,10,2019-11-05,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,3.0,,W0525,43.709631600600005,-79.5071555325,304207.833,4840852.683
-891494,4155147,2020.0,2019.0,1954.0,PRIVATE,5,York South-Weston,141 WOODWARD AVE,3,11,2019-11-05,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,3.0,,W0525,43.7096923975,-79.5068983102,304228.562,4840859.433999999
-891495,4155148,2018.0,2019.0,1954.0,PRIVATE,5,York South-Weston,143 WOODWARD AVE,3,10,2019-11-05,76,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,4.0,4.0,3.0,,4.0,,4.0,4.0,3.0,5.0,4.0,3.0,3.0,,5.0,4.0,,W0525,43.709743360299996,-79.5066462518,304248.875,4840865.093
-891496,4154780,2017.0,2019.0,1960.0,PRIVATE,16,Don Valley East,1063 DON MILLS RD,4,43,2019-11-05,76,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,4.0,4.0,5.0,,4.0,3.0,,3.0,4.0,5.0,3.0,3.0,4.0,4.0,5.0,3.0,,N1627,43.7355150514,-79.3423451997,317484.175,4843740.129
-891497,4152957,2017.0,2019.0,1960.0,PRIVATE,4,Parkdale-High Park,35 SPENCER AVE,7,80,2019-11-04,82,Evaluation needs to be conducted in 2 years,19,4.0,4.0,3.0,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,,S0437,43.635361871,-79.429350661,310484.708,4832604.925
-891498,4152958,2017.0,2019.0,1962.0,PRIVATE,4,Parkdale-High Park,47 SPENCER AVE,5,56,2019-11-04,76,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,4.0,4.0,3.0,,4.0,5.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,S0437,43.635752524,-79.429340078,310485.527,4832648.324
-891499,4156620,2017.0,2019.0,1950.0,PRIVATE,16,Don Valley East,1 WINGREEN CRT,3,11,2019-11-04,82,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,5.0,4.0,4.0,,4.0,,4.0,5.0,4.0,5.0,4.0,3.0,4.0,3.0,5.0,5.0,,N1624,43.7388622795,-79.3416192822,,
-891500,4156619,2017.0,2019.0,1965.0,PRIVATE,16,Don Valley East,2 WINGREEN CRT,3,11,2019-11-04,76,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,3.0,5.0,5.0,,5.0,,4.0,3.0,4.0,5.0,3.0,3.0,3.0,3.0,5.0,3.0,,N1624,43.73952173520001,-79.342024827,,
-891501,4285160,2018.0,2019.0,1950.0,PRIVATE,16,Don Valley East,3 WINGREEN CRT,3,11,2019-11-04,79,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,4.0,3.0,4.0,,5.0,,4.0,4.0,5.0,5.0,4.0,3.0,3.0,3.0,5.0,5.0,,N1624,43.7389485514,-79.3418652477,,
-891502,4154797,2017.0,2019.0,1965.0,PRIVATE,16,Don Valley East,6 WINGREEN CRT,3,11,2019-11-04,76,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,4.0,3.0,4.0,,5.0,,4.0,4.0,4.0,5.0,3.0,3.0,4.0,3.0,5.0,3.0,,N1624,43.739250167,-79.3428089774,317446.031,4844155.022
-891503,4156613,2017.0,2019.0,1965.0,PRIVATE,16,Don Valley East,8 WINGREEN CRT,3,11,2019-11-04,80,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,4.0,4.0,4.0,,5.0,,4.0,4.0,5.0,5.0,3.0,3.0,3.0,4.0,5.0,4.0,,N1624,43.739178679,-79.3433554999,,
-891504,4154906,2017.0,2019.0,1966.0,PRIVATE,16,Don Valley East,250 CASSANDRA BLVD,4,234,2019-11-04,81,Evaluation needs to be conducted in 2 years,19,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,,4.0,3.0,5.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,N1625,43.7543911907,-79.3162260546,319583.529,4845841.461
-891505,4156461,2017.0,2019.0,1965.0,PRIVATE,16,Don Valley East,265 CASSANDRA BLVD,12,164,2019-11-04,80,Evaluation needs to be conducted in 2 years,18,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,,3.0,4.0,5.0,3.0,5.0,4.0,5.0,4.0,3.0,,N1625,43.753625037,-79.3156353,319617.966,4845769.7069999995
-891506,4154905,2017.0,2019.0,1969.0,PRIVATE,16,Don Valley East,270 CASSANDRA BLVD,4,83,2019-11-04,77,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,3.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,,N1625,43.75472795979999,-79.3146445734,319710.799,4845879.156
-891507,4156043,2017.0,2019.0,1965.0,PRIVATE,16,Don Valley East,275 CASSANDRA BLVD,12,164,2019-11-04,82,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,5.0,4.0,3.0,4.0,4.0,,3.0,4.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,,N1625,43.753301871000005,-79.31465951199999,319753.276,4845811.004
-891508,4156399,2017.0,2019.0,1968.0,PRIVATE,16,Don Valley East,5 BROOKBANKS DR,15,124,2019-11-04,94,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,5.0,,5.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,5.0,N1625,43.75125271,-79.332754959,318204.842,4845556.916
-891509,4156386,2017.0,2019.0,1967.0,PRIVATE,16,Don Valley East,15 BROOKBANKS DR,20,148,2019-11-04,95,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,5.0,4.0,5.0,4.0,5.0,,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,4.0,4.0,N1625,43.751731400000004,-79.331966044,318300.445,4845575.868
-891510,4154901,2017.0,2019.0,1967.0,PRIVATE,16,Don Valley East,235 BROOKBANKS DR,4,41,2019-11-04,90,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,5.0,5.0,5.0,4.0,5.0,4.0,,4.0,5.0,5.0,4.0,3.0,5.0,5.0,4.0,4.0,,N1625,43.760400965100004,-79.3237597185,318975.435,4846507.812
-891511,4152962,2017.0,2019.0,1952.0,PRIVATE,4,Parkdale-High Park,77 SPENCER AVE,6,56,2019-11-04,82,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,3.0,5.0,,4.0,5.0,,4.0,4.0,5.0,4.0,3.0,4.0,5.0,4.0,4.0,,S0437,43.63712357,-79.429926502,310438.088,4832800.6
-891512,4154892,2019.0,2019.0,1966.0,PRIVATE,16,Don Valley East,74 CURLEW DR,4,112,2019-11-04,85,Evaluation needs to be conducted in 2 years,20,4.0,5.0,5.0,4.0,3.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,N1625,43.743508705,-79.31620178,319587.906,4844633.452
-891513,4155789,2017.0,2019.0,1958.0,PRIVATE,16,Don Valley East,1122 DON MILLS RD,6,66,2019-11-04,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N1623,43.73795553,-79.344349052,317321.994,4844011.915
-891514,4155662,2017.0,2019.0,1971.0,PRIVATE,4,Parkdale-High Park,22 CLOSE AVE,23,293,2019-11-04,62,Evaluation needs to be conducted in 1 year,20,3.0,4.0,4.0,2.0,4.0,3.0,2.0,2.0,3.0,3.0,3.0,4.0,3.0,3.0,2.0,2.0,5.0,3.0,4.0,3.0,S0437,43.6344400002,-79.4339017768,310117.834,4832501.284
-891515,4233294,2017.0,2019.0,1983.0,SOCIAL HOUSING,4,Parkdale-High Park,176 COWAN AVE,8,127,2019-11-04,92,Evaluation needs to be conducted in 3 years,19,4.0,4.0,5.0,4.0,5.0,5.0,5.0,5.0,4.0,,5.0,4.0,5.0,4.0,5.0,4.0,4.0,5.0,5.0,5.0,S0436,43.6393771047,-79.4331082627,310181.437,4833049.798
-891516,4153056,2019.0,2019.0,1930.0,PRIVATE,4,Parkdale-High Park,1643 BLOOR ST W,3,25,2019-11-04,56,Evaluation needs to be conducted in 1 year,15,3.0,4.0,4.0,3.0,2.0,3.0,,3.0,,,2.0,3.0,3.0,3.0,2.0,2.0,2.0,3.0,,,S0432,43.655253044,-79.455904958,308340.964,4834813.343
-891517,4153012,2017.0,2019.0,1958.0,PRIVATE,4,Parkdale-High Park,150 DOWLING AVE,7,66,2019-11-04,79,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,4.0,5.0,4.0,,4.0,4.0,3.0,4.0,4.0,5.0,3.0,3.0,4.0,4.0,4.0,4.0,,S0436,43.6378411067,-79.43950512159999,309665.443,4832878.791999999
-891518,4152996,2017.0,2019.0,1955.0,PRIVATE,4,Parkdale-High Park,99 DOWLING AVE,5,111,2019-11-04,84,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,5.0,5.0,,4.0,4.0,3.0,4.0,3.0,5.0,4.0,4.0,5.0,5.0,5.0,4.0,,S0437,43.6357677908,-79.43779799970001,309803.351,4832648.561000001
-891519,4154895,2017.0,2019.0,1963.0,PRIVATE,16,Don Valley East,7 ROANOKE RD,9,113,2019-11-04,94,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,4.0,5.0,N1625,43.740861476899994,-79.3286037917,318644.915,4844364.837
-891520,4156531,2017.0,2019.0,1963.0,PRIVATE,16,Don Valley East,7-9 ROANOKE RD,9,113,2019-11-04,95,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,4.0,4.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,4.0,5.0,N1625,,,318685.876,4844377.291
-891521,4154894,2017.0,2019.0,1962.0,PRIVATE,16,Don Valley East,8 ROANOKE RD,13,111,2019-11-04,94,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,5.0,5.0,5.0,5.0,3.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,N1625,43.74157075,-79.32807021800001,318658.575,4844417.316000001
-891522,4156233,2017.0,2019.0,1962.0,PRIVATE,16,Don Valley East,10 ROANOKE RD,12,101,2019-11-04,95,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,N1625,43.7414398255,-79.32923497729999,318749.293,4844445.005
-891523,4154904,2017.0,2019.0,1962.0,PRIVATE,16,Don Valley East,66 PARKWOODS VILLAGE DR,6,65,2019-11-04,86,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,5.0,4.0,5.0,3.0,4.0,4.0,,3.0,4.0,5.0,4.0,4.0,5.0,5.0,3.0,5.0,,N1625,43.759603392399995,-79.3222223212,319099.419,4846419.464
-891524,4154914,2017.0,2019.0,1962.0,PRIVATE,16,Don Valley East,77 PARKWOODS VILLAGE DR,6,85,2019-11-04,96,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,,N1625,43.7609163108,-79.3224297543,319082.404,4846565.29
-891525,4155895,2017.0,2019.0,1994.0,SOCIAL HOUSING,16,Don Valley East,83 PARKWOODS VILLAGE DR,7,68,2019-11-04,92,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,,4.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,5.0,N1625,43.7613478406,-79.323202558,319020.075,4846613.101
-891526,4153055,2017.0,2019.0,1992.0,SOCIAL HOUSING,4,Parkdale-High Park,1709 BLOOR ST W,6,80,2019-11-04,85,Evaluation needs to be conducted in 2 years,19,5.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,3.0,4.0,4.0,5.0,5.0,3.0,4.0,4.0,4.0,3.0,4.0,,S0432,43.654570058000004,-79.45891655,308098.342,4834736.391
-891527,4153054,2017.0,2019.0,1990.0,SOCIAL HOUSING,4,Parkdale-High Park,515 PARKSIDE DR,6,75,2019-11-04,87,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,5.0,S0432,43.654209663,-79.459398889,308059.191,4834697.288
-891528,4152980,2017.0,2019.0,1959.0,PRIVATE,4,Parkdale-High Park,87 JAMESON AVE,9,91,2019-11-04,81,Evaluation needs to be conducted in 2 years,19,5.0,4.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,3.0,4.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,3.0,,S0437,43.6348167577,-79.4347671675,310047.976,4832543.088
-891529,4152981,2017.0,2019.0,1967.0,PRIVATE,4,Parkdale-High Park,91 JAMESON AVE,11,76,2019-11-04,83,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,4.0,5.0,3.0,,4.0,4.0,3.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S0437,43.6351237062,-79.434885342,310038.415,4832577.18
-891530,4152982,2018.0,2019.0,1956.0,PRIVATE,4,Parkdale-High Park,95 JAMESON AVE,9,66,2019-11-04,58,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,2.0,4.0,,3.0,3.0,2.0,3.0,3.0,5.0,3.0,2.0,2.0,3.0,2.0,2.0,,S0437,43.6354033108,-79.4349062431,310036.705,4832608.24
-891531,4152934,2017.0,2019.0,1969.0,PRIVATE,4,Parkdale-High Park,77 QUEBEC AVE,21,330,2019-11-04,67,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,2.0,5.0,3.0,3.0,3.0,4.0,,3.0,3.0,5.0,3.0,2.0,3.0,5.0,3.0,4.0,,S0428,,,307422.34,4834828.072
-891532,4153067,2017.0,2019.0,1967.0,PRIVATE,4,Parkdale-High Park,59 RONCESVALLES AVE,4,38,2019-11-04,63,Evaluation needs to be conducted in 1 year,14,3.0,3.0,5.0,2.0,3.0,3.0,,4.0,,,2.0,3.0,5.0,2.0,3.0,3.0,,3.0,,,S0435,43.6407196162,-79.44659739560001,309092.998,4833198.193
-891533,4155744,2017.0,2019.0,1977.0,SOCIAL HOUSING,4,Parkdale-High Park,66 RONCESVALLES AVE,11,200,2019-11-04,78,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,3.0,3.0,3.0,4.0,4.0,5.0,,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,S0434,43.64019946,-79.44730757939999,309044.957,4833145.277
-891534,4153045,2018.0,2019.0,1940.0,PRIVATE,4,Parkdale-High Park,118 RONCESVALLES AVE,3,30,2019-11-04,67,Evaluation needs to be conducted in 2 years,14,3.0,3.0,5.0,3.0,2.0,3.0,,3.0,,,3.0,4.0,5.0,3.0,3.0,3.0,,4.0,,,S0434,43.6425606472,-79.4482030083,308963.328,4833402.643999999
-891535,4155883,2017.0,2019.0,1965.0,PRIVATE,4,Parkdale-High Park,66 PACIFIC AVE,16,230,2019-11-04,73,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,,3.0,4.0,5.0,3.0,3.0,3.0,5.0,4.0,3.0,,S0428,43.655223678999995,-79.464807315,307631.12899999996,4834855.688999999
-891536,4156433,2017.0,2019.0,1986.0,PRIVATE,4,Parkdale-High Park,111 PACIFIC AVE,17,243,2019-11-04,91,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,5.0,,5.0,5.0,5.0,5.0,5.0,4.0,5.0,4.0,2.0,,S0428,43.6571573337,-79.4647771493,307625.459,4835023.595
-891537,4153051,2017.0,2019.0,1914.0,PRIVATE,4,Parkdale-High Park,310 RONCESVALLES AVE,4,13,2019-11-04,59,Evaluation needs to be conducted in 1 year,15,3.0,2.0,5.0,3.0,2.0,3.0,,3.0,,,3.0,3.0,5.0,2.0,2.0,2.0,3.0,3.0,,,S0432,43.6492006854,-79.4505020154,308777.417,4834140.227
-891538,4153071,2018.0,2019.0,1920.0,PRIVATE,4,Parkdale-High Park,467 RONCESVALLES AVE,4,15,2019-11-04,63,Evaluation needs to be conducted in 1 year,15,3.0,4.0,5.0,2.0,3.0,2.0,,3.0,,,3.0,3.0,5.0,2.0,3.0,4.0,3.0,2.0,,,S0433,43.653029024,-79.451300765,308712.47,4834566.458000001
-891539,4153072,2017.0,2019.0,1930.0,PRIVATE,4,Parkdale-High Park,469 RONCESVALLES AVE,4,15,2019-11-04,68,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,,,S0433,43.65312019899999,-79.451329542,308710.143,4834576.586
-891540,4152964,2017.0,2019.0,1972.0,PRIVATE,4,Parkdale-High Park,1251 KING ST W,14,189,2019-11-04,67,Evaluation needs to be conducted in 2 years,18,4.0,2.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,3.0,5.0,4.0,3.0,4.0,3.0,3.0,3.0,,S0437,43.638192517700006,-79.4297211776,310454.821,4832918.412
-891541,4152978,2017.0,2019.0,1976.0,SOCIAL HOUSING,4,Parkdale-High Park,1355 KING ST W,11,136,2019-11-04,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,S0437,43.6375544172,-79.4328522141,310202.251,4832847.329
-891542,4153046,2017.0,2019.0,1960.0,PRIVATE,4,Parkdale-High Park,83 INDIAN RD,5,21,2019-11-04,56,Evaluation needs to be conducted in 1 year,17,2.0,2.0,5.0,2.0,2.0,2.0,,4.0,3.0,,2.0,3.0,5.0,3.0,3.0,3.0,2.0,2.0,3.0,,S0434,43.642240012799995,-79.4533563133,308547.591,4833366.778
-891543,4153030,2017.0,2019.0,1910.0,SOCIAL HOUSING,4,Parkdale-High Park,149 JAMESON AVE,5,48,2019-11-04,78,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,3.0,3.0,4.0,,4.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,,4.0,S0436,43.6374026152,-79.4357893144,309965.285,4832830.29
-891544,4153019,2017.0,2019.0,1959.0,PRIVATE,4,Parkdale-High Park,166 JAMESON AVE,8,61,2019-11-04,62,Evaluation needs to be conducted in 1 year,17,3.0,3.0,5.0,2.0,3.0,3.0,,3.0,4.0,,2.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,2.0,,S0436,43.6379895083,-79.4367678371,309886.286,4832895.432
-891545,4153033,2017.0,2019.0,1957.0,PRIVATE,4,Parkdale-High Park,169 JAMESON AVE,8,72,2019-11-04,80,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,,4.0,,4.0,4.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,S0436,43.6382976952,-79.43605420520001,309943.839,4832929.71
-891546,4153024,2017.0,2019.0,1960.0,PRIVATE,4,Parkdale-High Park,188 JAMESON AVE,8,47,2019-11-04,68,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,3.0,3.0,3.0,2.0,2.0,4.0,,3.0,3.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,,S0436,43.6391266318,-79.437146582,309855.635,4833021.735
-891547,4153023,2019.0,2019.0,1963.0,PRIVATE,4,Parkdale-High Park,190 JAMESON AVE,11,62,2019-11-04,73,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,3.0,4.0,,3.0,4.0,3.0,3.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,2.0,,S0436,43.6393484586,-79.43723404560001,309848.56,4833046.373
-891548,4155166,2018.0,2019.0,1961.0,PRIVATE,5,York South-Weston,2278 WESTON RD,4,33,2019-11-04,72,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,3.0,4.0,3.0,,3.0,,,5.0,4.0,5.0,2.0,2.0,3.0,,4.0,4.0,,W0524,43.704711986199996,-79.529254423,302426.713,4840306.64
-891549,4155164,2017.0,2019.0,1962.0,PRIVATE,5,York South-Weston,2304 WESTON RD,13,97,2019-11-04,87,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,5.0,,5.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,W0524,43.705056803999994,-79.530164006,302353.157,4840345.928
-891550,4155163,2017.0,2019.0,1963.0,PRIVATE,5,York South-Weston,2336 WESTON RD,10,69,2019-11-04,84,Evaluation needs to be conducted in 2 years,19,5.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,5.0,4.0,5.0,3.0,4.0,5.0,3.0,4.0,3.0,,W0524,43.705579903,-79.53098482600001,302287.028,4840404.065
-891551,4154364,2017.0,2019.0,1960.0,PRIVATE,6,York Centre,833 WILSON AVE,3,12,2019-11-04,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,3.0,4.0,4.0,3.0,,3.0,3.0,,N0632,43.7311624892,-79.4634709632,307727.291,4843245.201
-891552,4154363,2017.0,2019.0,1960.0,PRIVATE,6,York Centre,835 WILSON AVE,3,12,2019-11-04,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,N0632,43.7310655422,-79.46388483300001,307693.95399999997,4843234.416
-891553,4155162,2018.0,2019.0,1968.0,PRIVATE,5,York South-Weston,2360 WESTON RD,6,52,2019-11-04,80,Evaluation needs to be conducted in 2 years,17,5.0,5.0,5.0,4.0,3.0,4.0,,4.0,4.0,,5.0,3.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,,W0524,43.7058930244,-79.5316964663,302229.95399999997,4840437.92
-891554,4155992,2017.0,2019.0,1972.0,PRIVATE,5,York South-Weston,2450 WESTON RD,27,214,2019-11-04,72,Evaluation needs to be conducted in 2 years,19,4.0,2.0,5.0,2.0,4.0,4.0,5.0,2.0,4.0,,3.0,3.0,5.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,W0521,43.7075252004,-79.5347078156,301987.342,4840619.345
-891555,4152972,2017.0,2019.0,1962.0,PRIVATE,4,Parkdale-High Park,90 TYNDALL AVE,18,120,2019-11-04,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,,S0437,43.636188769700006,-79.4287694979,310531.789,4832695.871
-891556,4270720,2018.0,2019.0,1965.0,PRIVATE,4,Parkdale-High Park,103 WEST LODGE AVE,18,371,2019-11-04,68,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,3.0,3.0,4.0,3.0,3.0,5.0,,3.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,2.0,4.0,S0435,43.644918456000006,-79.435885913,309956.6,4833666.2
-891557,4270721,2018.0,2019.0,1965.0,PRIVATE,4,Parkdale-High Park,105 WEST LODGE AVE,19,371,2019-11-04,66,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,5.0,,3.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,2.0,,S0435,43.64516038,-79.43669445399999,309891.349,4833693.03
-891558,4152967,2017.0,2019.0,1965.0,PRIVATE,4,Parkdale-High Park,118 TYNDALL AVE,10,93,2019-11-04,91,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,5.0,4.0,5.0,3.0,,S0437,43.637378606000006,-79.4292170392,310495.572,4832828.025
-891559,4154897,2017.0,2019.0,1961.0,PRIVATE,16,Don Valley East,50 UNDERHILL DR,4,64,2019-11-04,91,Evaluation needs to be conducted in 3 years,19,5.0,3.0,5.0,5.0,5.0,5.0,5.0,3.0,5.0,5.0,4.0,4.0,5.0,5.0,5.0,3.0,5.0,5.0,4.0,,N1625,43.7447615515,-79.3267702279,318736.654,4844769.875
-891560,4154896,2017.0,2019.0,1961.0,PRIVATE,16,Don Valley East,60 UNDERHILL DR,4,57,2019-11-04,89,Evaluation needs to be conducted in 3 years,19,5.0,3.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,3.0,3.0,5.0,5.0,5.0,3.0,5.0,5.0,3.0,,N1625,43.745451968199994,-79.3263683748,318768.86,4844846.641
-891561,4154907,2018.0,2019.0,1961.0,PRIVATE,16,Don Valley East,2126 VICTORIA PARK AVE,3,11,2019-11-04,80,Evaluation needs to be conducted in 2 years,16,5.0,3.0,5.0,5.0,5.0,5.0,,3.0,,,3.0,4.0,5.0,3.0,5.0,3.0,3.0,3.0,4.0,,N1625,43.7594779981,-79.3164040826,319567.945,4846406.545
-891562,4152974,2017.0,2019.0,1965.0,PRIVATE,4,Parkdale-High Park,40 TYNDALL AVE,7,65,2019-11-04,82,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,S0437,43.635622675200004,-79.42849810050001,310553.738,4832633.0
-891563,4152973,2017.0,2019.0,1959.0,PRIVATE,4,Parkdale-High Park,60 TYNDALL AVE,9,69,2019-11-04,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,3.0,,S0437,43.6358852908,-79.4287210164,310535.728,4832662.16
-891564,4250549,2017.0,2019.0,1958.0,PRIVATE,16,Don Valley East,980 LAWRENCE AVE E,6,64,2019-11-04,83,Evaluation needs to be conducted in 2 years,20,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,N1623,43.73749502,-79.343845112,317308.56,4843953.37
-891565,4154783,2017.0,2019.0,1962.0,PRIVATE,16,Don Valley East,1001 LAWRENCE AVE E,7,69,2019-11-04,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N1627,43.737112527,-79.3420220409,317509.87,4843917.656
-891566,4154798,2017.0,2019.0,1954.0,PRIVATE,16,Don Valley East,1002 LAWRENCE AVE E,4,77,2019-11-04,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N1624,43.737992525299994,-79.3424983362,317471.31899999996,4844015.35
-891567,4154799,2017.0,2019.0,1958.0,PRIVATE,16,Don Valley East,1004 LAWRENCE AVE E,4,65,2019-11-04,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N1624,43.7382018911,-79.3414669469,317554.35,4844038.767
-891568,4156013,2017.0,2019.0,1986.0,PRIVATE,4,Parkdale-High Park,255 GLENLAKE AVE,23,336,2019-11-04,91,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,5.0,,5.0,5.0,5.0,5.0,5.0,4.0,5.0,4.0,2.0,,S0428,43.6575406896,-79.46459744229999,307639.935,4835066.19
-891569,4152933,2017.0,2019.0,1973.0,PRIVATE,4,Parkdale-High Park,299 GLENLAKE AVE,30,233,2019-11-04,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,4.0,4.0,4.0,3.0,4.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,1.0,,S0428,43.656888484,-79.465364295,307575.602,4834997.723
-891570,4153040,2017.0,2019.0,1968.0,PRIVATE,4,Parkdale-High Park,12 ELM GROVE AVE,4,32,2019-11-04,73,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,4.0,3.0,,4.0,,3.0,3.0,3.0,5.0,4.0,4.0,5.0,,3.0,4.0,,S0436,43.63899055,-79.4310530475,310347.29,4833006.982
-891571,4153015,2017.0,2019.0,1960.0,PRIVATE,4,Parkdale-High Park,32 MAYNARD AVE,8,43,2019-11-04,87,Evaluation needs to be conducted in 3 years,18,4.0,5.0,5.0,5.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,,S0436,43.6382286578,-79.4382671328,309765.298,4832921.915
-891572,4153064,2017.0,2019.0,1979.0,PRIVATE,4,Parkdale-High Park,12 LANSDOWNE AVE,3,26,2019-11-04,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,,,S0435,43.6411898546,-79.4371749359,309853.179,4833250.942
-891573,4152976,2017.0,2019.0,1931.0,PRIVATE,4,Parkdale-High Park,131 DUNN AVE,3,29,2019-11-04,71,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,3.0,3.0,3.0,,4.0,,,3.0,3.0,5.0,4.0,4.0,4.0,,2.0,,,S0437,43.635897529,-79.432069219,310265.309,4832664.263
-891574,4153037,2017.0,2019.0,1992.0,SOCIAL HOUSING,4,Parkdale-High Park,240 DUNN AVE,5,72,2019-11-04,88,Evaluation needs to be conducted in 3 years,19,4.0,4.0,5.0,4.0,5.0,5.0,4.0,5.0,4.0,,5.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,S0436,43.639805704,-79.434352266,310080.767,4833098.29
-891575,4155589,2017.0,2019.0,1971.0,TCHC,4,Parkdale-High Park,245 DUNN AVE,20,384,2019-11-04,71,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,S0436,43.640216059,-79.433778346,310127.038,4833143.912
-891576,4365723,2018.0,2019.0,1976.0,PRIVATE,4,Parkdale-High Park,2350 DUNDAS ST W,29,457,2019-11-04,76,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,2.0,5.0,4.0,3.0,4.0,3.0,,3.0,4.0,5.0,3.0,4.0,4.0,,3.0,3.0,4.0,S0429,43.656991643999994,-79.45228586,308623.625,4835029.533
-891577,4365726,2018.0,2019.0,1976.0,PRIVATE,4,Parkdale-High Park,2360 DUNDAS ST W,29,638,2019-11-04,77,Evaluation needs to be conducted in 2 years,18,5.0,5.0,5.0,2.0,5.0,4.0,3.0,4.0,3.0,,3.0,4.0,5.0,3.0,4.0,4.0,,3.0,3.0,4.0,S0429,43.657073675,-79.452365262,308621.66,4835039.566000001
-891578,4153068,2017.0,2019.0,1952.0,PRIVATE,4,Parkdale-High Park,150 FERMANAGH AVE,5,66,2019-11-04,76,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,3.0,4.0,3.0,,3.0,3.0,,S0433,43.646685098999995,-79.4485785795,308932.75,4833860.844
-891579,4154180,2017.0,2019.0,1965.0,PRIVATE,15,Don Valley West,1291 BAYVIEW AVE,6,69,2019-11-01,87,Evaluation needs to be conducted in 3 years,19,4.0,4.0,4.0,5.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,4.0,,N1535,43.6976143504,-79.3716799058,315127.711,4839525.585
-891580,4154184,2017.0,2019.0,1941.0,PRIVATE,15,Don Valley West,1477 BAYVIEW AVE,3,105,2019-11-01,74,Evaluation needs to be conducted in 2 years,17,4.0,4.0,3.0,4.0,3.0,3.0,,4.0,,4.0,4.0,3.0,5.0,3.0,4.0,3.0,5.0,4.0,3.0,,N1535,43.7028164419,-79.3727531693,315040.313,4840103.348999999
-891581,4154189,2019.0,2019.0,1939.0,PRIVATE,15,Don Valley West,872 MILLWOOD RD,3,10,2019-11-01,83,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,5.0,3.0,3.0,,5.0,,3.0,5.0,5.0,5.0,4.0,4.0,3.0,,4.0,4.0,,N1531,43.7041064151,-79.3651837906,315650.137,4840247.591
-891582,4154194,2017.0,2019.0,1954.0,PRIVATE,15,Don Valley West,964 EGLINTON AVE E,3,12,2019-11-01,77,Evaluation needs to be conducted in 2 years,15,5.0,3.0,5.0,5.0,3.0,5.0,,3.0,,,3.0,3.0,5.0,3.0,4.0,3.0,,5.0,3.0,,N1529,43.715197605,-79.359028944,316143.785,4841481.558999999
-891583,4155769,2017.0,2019.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,2323 LAKE SHORE BLVD W,10,133,2019-11-01,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,5.0,3.0,4.0,4.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,W0336,43.6169356849,-79.48667587050001,305824.401,4830594.748
-891584,4155478,2017.0,2019.0,1967.0,PRIVATE,3,Etobicoke-Lakeshore,2335 LAKE SHORE BLVD W,8,132,2019-11-01,73,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,2.0,,W0336,43.616601956400004,-79.4868558725,305845.225,4830517.654
-891585,4155757,2017.0,2019.0,1961.0,PRIVATE,3,Etobicoke-Lakeshore,2493 LAKE SHORE BLVD W,9,151,2019-11-01,84,Evaluation needs to be conducted in 2 years,20,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,W0336,43.6123803849,-79.4879248651,305759.003,4830048.647
-891586,4155770,2017.0,2019.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,2313 LAKE SHORE BLVD W,10,133,2019-11-01,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,2.0,,W0336,43.617341413000005,-79.486574349,305830.93100000004,4830610.135
-891587,4156354,2017.0,2019.0,1965.0,PRIVATE,4,Parkdale-High Park,45 OAKMOUNT RD,15,221,2019-10-31,72,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,2.0,5.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,S0428,43.6564105538,-79.4629896425,307769.685,4834940.698
-891588,4156086,2017.0,2019.0,1965.0,PRIVATE,4,Parkdale-High Park,55 OAKMOUNT RD,16,221,2019-10-31,67,Evaluation needs to be conducted in 2 years,20,3.0,4.0,5.0,2.0,4.0,3.0,2.0,3.0,4.0,4.0,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,S0428,43.656763132100004,-79.4631452755,307757.11100000003,4834979.8610000005
-891589,4152930,2017.0,2019.0,1986.0,PRIVATE,4,Parkdale-High Park,66 OAKMOUNT RD,12,171,2019-10-31,85,Evaluation needs to be conducted in 2 years,20,5.0,4.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,5.0,4.0,5.0,5.0,3.0,4.0,S0428,43.656653483199996,-79.46369050930001,307713.136,4834967.66
-891590,4152929,2017.0,2019.0,1965.0,PRIVATE,4,Parkdale-High Park,60 MOUNTVIEW AVE,16,221,2019-10-31,68,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,2.0,4.0,3.0,3.0,3.0,4.0,4.0,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,S0428,43.6568780412,-79.4624258737,307815.135,4834992.653
-891591,4154145,2017.0,2019.0,1960.0,PRIVATE,15,Don Valley West,2 MILEPOST PL,6,77,2019-10-31,83,Evaluation needs to be conducted in 2 years,18,4.0,5.0,4.0,4.0,4.0,5.0,,5.0,4.0,5.0,4.0,4.0,5.0,3.0,5.0,4.0,3.0,4.0,3.0,,N1533,43.7029007633,-79.3484372243,317000.05600000004,4840115.933
-891592,4154146,2017.0,2019.0,1960.0,PRIVATE,15,Don Valley West,4 MILEPOST PL,6,77,2019-10-31,86,Evaluation needs to be conducted in 3 years,18,5.0,5.0,4.0,5.0,4.0,5.0,,5.0,5.0,3.0,4.0,4.0,5.0,3.0,5.0,4.0,4.0,4.0,3.0,,N1533,43.702335831599996,-79.3484380535,317000.106,4840053.174
-891593,4154147,2017.0,2019.0,1955.0,PRIVATE,15,Don Valley West,6 MILEPOST PL,6,82,2019-10-31,70,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,3.0,3.0,,3.0,3.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,3.0,3.0,,N1533,43.702214085,-79.34780065,317051.503,4840039.741
-891594,4154148,2017.0,2019.0,1960.0,PRIVATE,15,Don Valley West,8 MILEPOST PL,6,76,2019-10-31,82,Evaluation needs to be conducted in 2 years,18,5.0,5.0,5.0,4.0,3.0,5.0,,3.0,4.0,5.0,2.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,3.0,,N1533,43.7025432153,-79.34725427949999,317095.469,4840076.383
-891595,4154166,2017.0,2019.0,1962.0,PRIVATE,15,Don Valley West,42 THORNCLIFFE PARK DR,6,60,2019-10-31,75,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,3.0,,4.0,4.0,5.0,3.0,4.0,3.0,3.0,4.0,3.0,,N1533,43.702195489,-79.343701311,317381.647,4840039.243
-891596,4154165,2017.0,2019.0,1964.0,PRIVATE,15,Don Valley West,44 THORNCLIFFE PARK DR,6,90,2019-10-31,82,Evaluation needs to be conducted in 2 years,19,3.0,4.0,5.0,5.0,5.0,5.0,5.0,3.0,4.0,4.0,4.0,5.0,5.0,3.0,3.0,3.0,4.0,4.0,4.0,,N1533,43.702592381,-79.342924935,317444.14,4840083.458000001
-891597,4154164,2017.0,2019.0,1960.0,PRIVATE,15,Don Valley West,50 THORNCLIFFE PARK DR,6,57,2019-10-31,82,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,4.0,5.0,4.0,4.0,3.0,4.0,5.0,4.0,,N1533,43.703361048999994,-79.342351105,317490.226,4840168.943
-891598,4154163,2017.0,2019.0,1960.0,PRIVATE,15,Don Valley West,52 THORNCLIFFE PARK DR,6,57,2019-10-31,90,Evaluation needs to be conducted in 3 years,18,5.0,3.0,5.0,5.0,5.0,5.0,,5.0,5.0,5.0,5.0,5.0,5.0,3.0,5.0,4.0,3.0,4.0,4.0,,N1533,43.703684755299996,-79.3419933138,317519.256,4840204.007
-891599,4155512,2017.0,2019.0,1951.0,PRIVATE,3,Etobicoke-Lakeshore,6 ROYAL YORK RD,5,72,2019-10-31,75,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,4.0,4.0,,3.0,4.0,,4.0,4.0,5.0,4.0,3.0,4.0,,3.0,3.0,,W0335,43.6031676706,-79.4934504653,305313.049,4829025.116
-891600,4155483,2017.0,2019.0,1950.0,PRIVATE,3,Etobicoke-Lakeshore,26 ALBERT AVE,3,23,2019-10-31,71,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,,,3.0,3.0,5.0,3.0,4.0,3.0,,4.0,4.0,,W0336,43.616241601700004,-79.48927189850001,305650.222,4830477.596
-891601,4154927,2017.0,2019.0,1963.0,PRIVATE,16,Don Valley East,1210 YORK MILLS RD,10,91,2019-10-31,77,Evaluation needs to be conducted in 2 years,19,5.0,3.0,5.0,5.0,3.0,5.0,5.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,5.0,5.0,3.0,,N1622,43.759908428,-79.3335295503,318188.88300000003,4846451.482
-891602,4154925,2017.0,2019.0,1963.0,PRIVATE,16,Don Valley East,1222 YORK MILLS RD,4,25,2019-10-31,93,Evaluation needs to be conducted in 3 years,17,5.0,3.0,5.0,5.0,5.0,5.0,,5.0,5.0,,5.0,5.0,5.0,5.0,3.0,5.0,5.0,5.0,3.0,,N1622,43.760105976700004,-79.3318752196,318322.047,4846473.697
-891603,4154924,2017.0,2019.0,1963.0,PRIVATE,16,Don Valley East,1230 YORK MILLS RD,4,38,2019-10-31,93,Evaluation needs to be conducted in 3 years,18,5.0,3.0,3.0,5.0,5.0,5.0,5.0,5.0,5.0,,3.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,,N1622,43.7603691102,-79.3311358392,318381.521,4846503.05
-891604,4155882,2017.0,2019.0,1962.0,PRIVATE,4,Parkdale-High Park,65 WINDERMERE AVE,6,92,2019-10-31,83,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,5.0,5.0,3.0,5.0,4.0,4.0,4.0,4.0,,S0430,43.6390679987,-79.47154026609999,307080.62899999996,4833013.756
-891605,4156104,2017.0,2019.0,1962.0,PRIVATE,4,Parkdale-High Park,75 WINDERMERE AVE,6,52,2019-10-31,82,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,3.0,5.0,4.0,4.0,4.0,4.0,,S0430,43.63943104,-79.471915958,307058.811,4833040.19
-891606,4154806,2017.0,2019.0,1993.0,SOCIAL HOUSING,16,Don Valley East,2020 DON MILLS RD,14,221,2019-10-31,89,Evaluation needs to be conducted in 3 years,20,5.0,3.0,5.0,3.0,5.0,5.0,5.0,5.0,3.0,5.0,3.0,5.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,5.0,N1621,43.762792748100004,-79.34783723529999,317036.265,4846769.7360000005
-891607,4152899,2017.0,2019.0,1957.0,PRIVATE,4,Parkdale-High Park,99 COE HILL DR,4,81,2019-10-31,70,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,4.0,3.0,3.0,,3.0,5.0,4.0,4.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,2.0,,S0430,43.6416349795,-79.47294432,306967.248,4833298.916
-891608,4152900,2017.0,2019.0,1955.0,PRIVATE,4,Parkdale-High Park,101 COE HILL DR,3,47,2019-10-31,78,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,3.0,4.0,3.0,,3.0,3.0,4.0,4.0,3.0,5.0,4.0,5.0,4.0,,4.0,5.0,,S0430,43.6418182703,-79.4734954381,306922.776,4833319.267
-891609,4152926,2017.0,2019.0,1992.0,SOCIAL HOUSING,4,Parkdale-High Park,1624 BLOOR ST W,6,94,2019-10-31,72,Evaluation needs to be conducted in 2 years,19,4.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,5.0,4.0,3.0,3.0,5.0,4.0,3.0,,S0429,43.655863811,-79.45598401699999,308334.55100000004,4834881.192
-891610,4154154,2017.0,2019.0,1968.0,PRIVATE,15,Don Valley West,53 THORNCLIFFE PARK DR,20,279,2019-10-31,96,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,N1533,43.702990612,-79.341462578,317561.92,4840127.93
-891611,4154162,2017.0,2019.0,1960.0,PRIVATE,15,Don Valley West,54 THORNCLIFFE PARK DR,6,71,2019-10-31,90,Evaluation needs to be conducted in 3 years,18,5.0,3.0,5.0,4.0,5.0,5.0,,5.0,4.0,5.0,5.0,5.0,5.0,4.0,5.0,4.0,3.0,4.0,5.0,,N1533,43.704032796599996,-79.3417955997,317535.11699999997,4840242.704
-891612,4154161,2017.0,2019.0,1960.0,PRIVATE,15,Don Valley West,56 THORNCLIFFE PARK DR,6,64,2019-10-31,93,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,4.0,5.0,5.0,,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,,N1533,43.704412098,-79.342361798,317489.13899999997,4840285.706
-891613,4154160,2017.0,2019.0,1960.0,PRIVATE,15,Don Valley West,58 THORNCLIFFE PARK DR,6,71,2019-10-31,93,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,4.0,5.0,5.0,,5.0,5.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,,N1533,43.704388503000004,-79.343145328,317425.993,4840282.961
-891614,4154156,2017.0,2019.0,1966.0,PRIVATE,15,Don Valley West,71 THORNCLIFFE PARK DR,21,320,2019-10-31,69,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,3.0,2.0,4.0,4.0,4.0,2.0,4.0,3.0,3.0,4.0,4.0,4.0,3.0,3.0,,N1533,43.704542152799995,-79.3403837567,317648.798,4840299.515
-891615,4154158,2017.0,2019.0,1966.0,PRIVATE,15,Don Valley West,79 THORNCLIFFE PARK DR,17,319,2019-10-31,85,Evaluation needs to be conducted in 2 years,19,5.0,5.0,5.0,3.0,5.0,4.0,3.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,,N1533,43.706138296499994,-79.341500497,317558.451,4840476.663
-891616,4152923,2017.0,2019.0,1965.0,PRIVATE,4,Parkdale-High Park,283 GILMOUR AVE,5,37,2019-10-31,76,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,3.0,,4.0,4.0,,4.0,3.0,5.0,4.0,4.0,3.0,,4.0,3.0,,S0423,43.665185010600005,-79.4788057495,306493.641,4835915.054
-891617,4155848,2017.0,2019.0,1969.0,PRIVATE,4,Parkdale-High Park,35 HIGH PARK AVE,26,201,2019-10-31,81,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,5.0,4.0,4.0,5.0,4.0,4.0,3.0,,S0428,43.6547264051,-79.4652848769,307584.63300000003,4834753.518999999
-891618,4152935,2017.0,2019.0,1969.0,PRIVATE,4,Parkdale-High Park,40 HIGH PARK AVE,20,331,2019-10-31,73,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,3.0,4.0,3.0,4.0,3.0,2.0,2.0,5.0,4.0,4.0,5.0,4.0,3.0,3.0,,S0428,,,307496.989,4834752.748
-891619,4166848,2017.0,2019.0,1969.0,PRIVATE,4,Parkdale-High Park,65 HIGH PARK AVE,23,321,2019-10-31,76,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,2.0,2.0,5.0,4.0,4.0,3.0,4.0,4.0,2.0,4.0,S0428,43.655948159,-79.465424787,307525.818,4834894.517
-891620,4152922,2017.0,2019.0,1960.0,PRIVATE,4,Parkdale-High Park,392 JANE ST,6,32,2019-10-31,69,Evaluation needs to be conducted in 2 years,19,3.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,,S0426,43.6580102067,-79.4883644142,305722.865,4835117.844
-891621,4155206,2017.0,2019.0,1958.0,PRIVATE,4,Parkdale-High Park,596 JANE ST,3,17,2019-10-31,89,Evaluation needs to be conducted in 3 years,15,4.0,4.0,3.0,5.0,4.0,5.0,,4.0,,,5.0,4.0,5.0,5.0,4.0,5.0,,5.0,5.0,,S0421,43.6645208541,-79.4910119688,305509.219,4835841.102
-891622,4154159,2017.0,2019.0,1971.0,PRIVATE,15,Don Valley West,85 THORNCLIFFE PARK DR,43,500,2019-10-31,93,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,5.0,4.0,,4.0,4.0,5.0,N1533,43.707232400100004,-79.3412260815,317580.333,4840598.257
-891623,4237447,2017.0,2019.0,1971.0,PRIVATE,15,Don Valley West,95 THORNCLIFFE PARK DR,43,496,2019-10-31,94,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,5.0,4.0,,4.0,4.0,5.0,N1533,43.707232400100004,-79.3412260815,317580.333,4840598.257
-891624,4155487,2017.0,2019.0,1965.0,PRIVATE,3,Etobicoke-Lakeshore,2 SUPERIOR AVE,5,47,2019-10-31,72,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,3.0,,3.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,3.0,,W0336,43.614330851700004,-79.4872977904,305809.589,4830265.341
-891625,4155486,2017.0,2019.0,1965.0,PRIVATE,3,Etobicoke-Lakeshore,4 SUPERIOR AVE,7,55,2019-10-31,70,Evaluation needs to be conducted in 2 years,18,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,3.0,3.0,3.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,,W0336,43.614181523999996,-79.487650972,305708.68100000004,4830306.617
-891626,4154144,2017.0,2019.0,1975.0,SOCIAL HOUSING,15,Don Valley West,23 THORNCLIFFE PARK DR,6,77,2019-10-31,79,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,3.0,3.0,4.0,3.0,4.0,4.0,5.0,3.0,4.0,3.0,4.0,5.0,4.0,5.0,4.0,3.0,,N1533,43.7031497325,-79.3474623763,317078.572,4840143.732
-891627,4154169,2017.0,2019.0,1960.0,PRIVATE,15,Don Valley West,26 THORNCLIFFE PARK DR,6,62,2019-10-31,89,Evaluation needs to be conducted in 3 years,19,4.0,4.0,5.0,4.0,4.0,5.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,3.0,4.0,5.0,4.0,5.0,5.0,,N1533,43.7032015325,-79.34583013470001,317210.115,4840149.728999999
-891628,4154149,2017.0,2019.0,1960.0,PRIVATE,15,Don Valley West,27 THORNCLIFFE PARK DR,7,86,2019-10-31,91,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,4.0,5.0,4.0,5.0,4.0,5.0,4.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,,N1533,43.7027318598,-79.346464172,317159.11,4840097.456
-891629,4154150,2017.0,2019.0,1964.0,PRIVATE,15,Don Valley West,35 THORNCLIFFE PARK DR,18,287,2019-10-31,67,Evaluation needs to be conducted in 2 years,19,3.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,N1533,43.701969776000006,-79.34510507899999,317268.55,4840013.953
-891630,4155472,2017.0,2019.0,1959.0,PRIVATE,3,Etobicoke-Lakeshore,66 STATION RD,3,16,2019-10-31,79,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,4.0,4.0,3.0,,4.0,,4.0,4.0,3.0,5.0,3.0,4.0,4.0,5.0,4.0,4.0,,W0336,43.6157071247,-79.4949147117,305194.768,4830418.188
-891631,4154921,2017.0,2019.0,1967.0,PRIVATE,16,Don Valley East,32 CLAYLAND DR,5,64,2019-10-31,93,Evaluation needs to be conducted in 3 years,19,5.0,3.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,3.0,4.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,,N1622,43.7604975469,-79.3303911493,318441.452,4846517.44
-891632,4152917,2017.0,2019.0,1935.0,PRIVATE,4,Parkdale-High Park,7 BRULE TER,3,13,2019-10-31,60,Evaluation needs to be conducted in 1 year,18,3.0,3.0,2.0,3.0,2.0,3.0,3.0,3.0,,4.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,2.0,,S0430,43.6475612545,-79.4890462091,305668.015,4833957.046
-891633,4154770,2017.0,2019.0,1960.0,PRIVATE,15,Don Valley West,7 ROCHEFORT,3,64,2019-10-31,86,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,,5.0,5.0,5.0,3.0,5.0,4.0,4.0,3.0,3.0,,N1533,,,317940.36699999997,4841805.466
-891634,4155763,2017.0,2019.0,1966.0,PRIVATE,3,Etobicoke-Lakeshore,8 SAND BEACH RD,3,24,2019-10-31,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,3.0,5.0,,4.0,,4.0,4.0,5.0,5.0,3.0,3.0,4.0,,3.0,3.0,,W0335,43.6017504793,-79.4973496244,304998.293,4828867.665
-891635,4155515,2017.0,2019.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,24 SECOND ST,4,23,2019-10-31,88,Evaluation needs to be conducted in 3 years,15,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,5.0,5.0,5.0,4.0,5.0,5.0,,4.0,4.0,,W0335,43.6009687445,-79.499480988,304826.234,4828780.81
-891636,4152938,2017.0,2019.0,1940.0,PRIVATE,4,Parkdale-High Park,1942 BLOOR ST W,4,16,2019-10-31,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,,3.0,3.0,3.0,5.0,3.0,4.0,3.0,,3.0,,,S0428,43.65337980100001,-79.467222983,307428.095,4834604.811000001
-891637,4152939,2017.0,2019.0,1940.0,PRIVATE,4,Parkdale-High Park,1950 BLOOR ST W,4,16,2019-10-31,68,Evaluation needs to be conducted in 2 years,15,4.0,3.0,5.0,3.0,3.0,3.0,,4.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,S0428,43.653332449,-79.46745024399999,307406.915,4834598.1
-891638,4152909,2017.0,2019.0,1930.0,PRIVATE,4,Parkdale-High Park,2001 BLOOR ST W,4,60,2019-10-31,67,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,3.0,,3.0,,4.0,4.0,,3.0,3.0,5.0,2.0,3.0,3.0,3.0,3.0,,,S0431,43.651822183,-79.47144373100001,307087.937,4834430.705
-891639,4152940,2017.0,2019.0,1929.0,PRIVATE,4,Parkdale-High Park,2010 BLOOR ST W,3,24,2019-10-31,65,Evaluation needs to be conducted in 1 year,15,3.0,3.0,5.0,3.0,2.0,3.0,,4.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,S0428,43.6528582596,-79.4698640638,307215.325,4834545.847
-891640,4155479,2017.0,2019.0,1961.0,PRIVATE,3,Etobicoke-Lakeshore,2311 LAKE SHORE BLVD W,4,36,2019-10-31,69,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,3.0,3.0,4.0,,2.0,,2.0,3.0,3.0,5.0,4.0,4.0,3.0,5.0,4.0,3.0,,W0336,43.617555556999996,-79.48652198479999,305836.076,4830625.046
-891641,4153755,2017.0,2019.0,1965.0,PRIVATE,15,Don Valley West,345 MERTON ST,10,109,2019-10-31,59,Evaluation needs to be conducted in 1 year,19,4.0,4.0,4.0,2.0,4.0,2.0,3.0,3.0,3.0,2.0,3.0,4.0,5.0,2.0,3.0,2.0,2.0,2.0,2.0,,N1534,43.697986845,-79.38570781,313996.67100000003,4839566.231000001
-891642,4153756,2017.0,2019.0,1962.0,PRIVATE,15,Don Valley West,375 MERTON ST,4,47,2019-10-31,71,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,4.0,2.0,,3.0,3.0,4.0,3.0,3.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,,N1534,43.697934721,-79.38501268,314052.709,4839560.517
-891643,4152905,2017.0,2019.0,1993.0,SOCIAL HOUSING,4,Parkdale-High Park,93 LAVINIA AVE,5,68,2019-10-31,87,Evaluation needs to be conducted in 3 years,19,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,4.0,5.0,5.0,5.0,5.0,4.0,4.0,5.0,3.0,5.0,S0430,43.6473083382,-79.4777129608,306582.355,4833929.1
-891644,4155495,2017.0,2019.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,2545 LAKE SHORE BLVD W,4,26,2019-10-31,71,Evaluation needs to be conducted in 2 years,14,3.0,4.0,5.0,3.0,,3.0,,3.0,,,3.0,3.0,5.0,4.0,4.0,4.0,,3.0,3.0,,W0336,43.609273426899996,-79.4898141501,305606.538,4829703.461
-891645,4155493,2017.0,2019.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,2549 LAKE SHORE BLVD W,4,26,2019-10-31,73,Evaluation needs to be conducted in 2 years,14,3.0,4.0,5.0,3.0,,3.0,,3.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,2.0,,W0336,43.609329001400006,-79.4885909687,305705.277,4829709.647
-891646,4155491,2017.0,2019.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,2557 LAKE SHORE BLVD W,4,26,2019-10-31,67,Evaluation needs to be conducted in 2 years,14,3.0,4.0,5.0,3.0,,2.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,4.0,,3.0,3.0,,W0336,43.6090707341,-79.4891854143,305657.294,4829680.949
-891647,4155511,2017.0,2019.0,1953.0,PRIVATE,3,Etobicoke-Lakeshore,2663 LAKE SHORE BLVD W,8,111,2019-10-31,71,Evaluation needs to be conducted in 2 years,17,4.0,2.0,4.0,4.0,3.0,3.0,,3.0,4.0,,4.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,,W0335,43.602984534399994,-79.4939230131,305274.904,4829004.768999999
-891648,4155510,2017.0,2019.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,2667 LAKE SHORE BLVD W,4,17,2019-10-31,69,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,3.0,3.0,4.0,,4.0,,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0335,43.602838275,-79.4944408976,305233.099,4828988.518999999
-891649,4155508,2017.0,2019.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,2696 LAKE SHORE BLVD W,4,27,2019-10-31,71,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,,,3.0,3.0,5.0,4.0,4.0,4.0,,3.0,3.0,,W0335,43.603004467,-79.4961219509,305097.395,4829006.977
-891650,4152945,2017.0,2019.0,1992.0,SOCIAL HOUSING,4,Parkdale-High Park,2767 DUNDAS ST W,6,21,2019-10-31,73,Evaluation needs to be conducted in 2 years,20,4.0,3.0,3.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,5.0,4.0,3.0,3.0,3.0,5.0,4.0,4.0,S0429,43.665100576,-79.461595606,307881.369,4835907.097
-891651,4288175,2018.0,2019.0,1960.0,PRIVATE,4,Parkdale-High Park,2861-2863 DUNDAS ST W,3,16,2019-10-31,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,,,S0424,,,307610.618,4835918.416999999
-891652,4155922,2017.0,2019.0,1972.0,TCHC,4,Parkdale-High Park,3725 DUNDAS ST W,10,153,2019-10-31,52,Evaluation needs to be conducted in 1 year,20,2.0,3.0,2.0,2.0,3.0,3.0,3.0,2.0,3.0,2.0,2.0,4.0,4.0,3.0,3.0,3.0,2.0,2.0,2.0,2.0,S0421,43.6653702089,-79.4987991022,304881.17100000003,4835935.438999999
-891653,4156016,2017.0,2019.0,1972.0,TCHC,4,Parkdale-High Park,3735 DUNDAS ST W,10,132,2019-10-31,66,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,2.0,3.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,3.0,,S0421,43.665189036,-79.499393828,304843.771,4835924.808999999
-891654,4155202,2017.0,2019.0,1990.0,SOCIAL HOUSING,4,Parkdale-High Park,4049 DUNDAS ST W,12,208,2019-10-31,63,Evaluation needs to be conducted in 1 year,20,4.0,3.0,4.0,3.0,4.0,3.0,3.0,2.0,3.0,3.0,3.0,4.0,4.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,S0421,43.6634553526,-79.5037202734,304484.24,4835722.738
-891655,4155518,2017.0,2019.0,1958.0,PRIVATE,3,Etobicoke-Lakeshore,67 LAKE SHORE DR,3,18,2019-10-31,82,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,,4.0,4.0,3.0,5.0,4.0,5.0,5.0,4.0,4.0,5.0,,W0335,43.5965098168,-79.5007071218,304727.256,4828285.4569999995
-891656,4155522,2017.0,2019.0,1959.0,PRIVATE,3,Etobicoke-Lakeshore,155 LAKE SHORE DR,5,35,2019-10-31,81,Evaluation needs to be conducted in 2 years,17,3.0,4.0,4.0,4.0,4.0,4.0,,4.0,5.0,,4.0,5.0,5.0,3.0,4.0,4.0,4.0,3.0,5.0,,W0335,43.594648158000005,-79.505643653,304328.42600000004,4828079.602
-891657,4155523,2017.0,2019.0,1966.0,PRIVATE,3,Etobicoke-Lakeshore,245 LAKE SHORE DR,8,52,2019-10-31,81,Evaluation needs to be conducted in 2 years,17,5.0,5.0,4.0,3.0,4.0,4.0,,4.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,W0335,43.594177992,-79.509613515,304007.895,4828027.375
-891658,4155754,2017.0,2019.0,1959.0,PRIVATE,3,Etobicoke-Lakeshore,2301 LAKE SHORE BLVD W,4,88,2019-10-31,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,5.0,3.0,,3.0,4.0,3.0,5.0,4.0,5.0,3.0,4.0,4.0,5.0,4.0,4.0,,W0336,43.618345356999995,-79.48579165619999,305931.095,4830711.346
-891659,4155481,2017.0,2019.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,2303 LAKE SHORE BLVD W,4,38,2019-10-31,92,Evaluation needs to be conducted in 3 years,15,4.0,4.0,5.0,5.0,5.0,5.0,,5.0,,,5.0,5.0,5.0,4.0,4.0,5.0,,5.0,3.0,,W0336,43.6181573986,-79.48620440270001,305864.468,4830685.073
-891660,4155203,2017.0,2019.0,1958.0,PRIVATE,4,Parkdale-High Park,4070 OLD DUNDAS ST,5,48,2019-10-31,60,Evaluation needs to be conducted in 1 year,18,3.0,2.0,3.0,3.0,4.0,3.0,,3.0,3.0,4.0,3.0,3.0,5.0,2.0,3.0,3.0,2.0,3.0,2.0,,S0421,43.662865718,-79.504063965,304456.251,4835658.188999999
-891661,4155201,2017.0,2019.0,1965.0,PRIVATE,4,Parkdale-High Park,4075 OLD DUNDAS ST,7,75,2019-10-31,69,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,2.0,4.0,,3.0,5.0,,3.0,3.0,5.0,4.0,2.0,3.0,,3.0,3.0,,S0421,43.662438171000005,-79.50353882600001,304498.602,4835610.688999999
-891662,4152931,2017.0,2019.0,1965.0,PRIVATE,4,Parkdale-High Park,22 OAKMOUNT RD,17,216,2019-10-31,78,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,3.0,4.0,3.0,3.0,4.0,3.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,3.0,4.0,S0428,43.655176052600005,-79.4635445637,307724.99100000004,4834803.534
-891663,4153855,2017.0,2019.0,1955.0,PRIVATE,15,Don Valley West,100 KEEWATIN AVE,4,32,2019-10-30,85,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,5.0,,4.0,4.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,,N1526,43.7132857691,-79.396652141,313112.649,4841263.81
-891664,4153854,2017.0,2019.0,1955.0,PRIVATE,15,Don Valley West,110 KEEWATIN AVE,4,32,2019-10-30,84,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,5.0,,4.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,4.0,,N1526,43.7133304232,-79.3963936758,313133.471,4841268.797
-891665,4153846,2017.0,2019.0,1958.0,PRIVATE,15,Don Valley West,135 KEEWATIN AVE,4,52,2019-10-30,83,Evaluation needs to be conducted in 2 years,18,5.0,5.0,4.0,4.0,3.0,4.0,,4.0,4.0,3.0,4.0,5.0,4.0,4.0,5.0,5.0,5.0,4.0,3.0,,N1526,43.7129372818,-79.39546673560001,313208.222,4841225.215
-891666,4155548,2017.0,2019.0,1963.0,PRIVATE,3,Etobicoke-Lakeshore,21 PARK BLVD,7,97,2019-10-30,63,Evaluation needs to be conducted in 1 year,19,2.0,3.0,4.0,3.0,2.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,5.0,3.0,4.0,3.0,4.0,3.0,4.0,,W0334,43.590583298,-79.5303135599,302336.70399999997,4827627.441000001
-891667,4155547,2017.0,2019.0,1963.0,PRIVATE,3,Etobicoke-Lakeshore,31 PARK BLVD,7,97,2019-10-30,60,Evaluation needs to be conducted in 1 year,20,3.0,3.0,4.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,4.0,4.0,2.0,W0334,43.5903629605,-79.5313842856,302250.238,4827602.996
-891668,4155277,2018.0,2019.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,323 PARK LAWN RD,5,48,2019-10-30,72,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,3.0,4.0,3.0,,4.0,3.0,3.0,3.0,4.0,5.0,4.0,3.0,4.0,4.0,3.0,3.0,,W0327,43.637199541099996,-79.493365223,305319.61,4832805.873
-891669,4153856,2017.0,2019.0,1965.0,PRIVATE,15,Don Valley West,172 SHERWOOD AVE,3,18,2019-10-30,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,3.0,4.0,3.0,2.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,N1526,43.7155061026,-79.39124146340001,313548.335,4841511.039
-891670,4155276,2019.0,2019.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,10 RIVERWOOD PKWY,3,52,2019-10-30,78,Evaluation needs to be conducted in 2 years,16,5.0,4.0,5.0,3.0,3.0,3.0,,4.0,,,4.0,5.0,5.0,3.0,4.0,3.0,5.0,3.0,3.0,,W0327,43.639089740699994,-79.4882393913,305726.291,4833016.54
-891671,4155254,2017.0,2019.0,1956.0,PRIVATE,3,Etobicoke-Lakeshore,2 BASKING RIDGE,4,24,2019-10-30,66,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,3.0,3.0,4.0,,4.0,,3.0,3.0,3.0,5.0,2.0,3.0,2.0,4.0,3.0,3.0,,W0327,43.637708415,-79.49353779100001,305305.424,4832863.358
-891672,4155240,2017.0,2019.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,187 BERRY RD,4,30,2019-10-30,65,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,2.0,3.0,,4.0,,,3.0,4.0,5.0,2.0,3.0,2.0,5.0,3.0,4.0,,W0329,43.6361245275,-79.49246033060001,305392.63300000003,4832686.451
-891673,4154191,2017.0,2019.0,1960.0,PRIVATE,15,Don Valley West,1741 BAYVIEW AVE,3,26,2019-10-30,91,Evaluation needs to be conducted in 3 years,17,4.0,5.0,5.0,5.0,4.0,4.0,,4.0,,4.0,4.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,,N1531,43.709015815,-79.3761344035,314766.745,4840791.656
-891674,4154207,2017.0,2019.0,1965.0,PRIVATE,15,Don Valley West,1833 BAYVIEW AVE,4,112,2019-10-30,88,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,,N1529,43.7128618107,-79.3770362337,314693.42,4841218.833000001
-891675,4154206,2018.0,2019.0,1911.0,PRIVATE,15,Don Valley West,1911 BAYVIEW AVE,4,20,2019-10-30,84,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,4.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N1529,43.7159928067,-79.3775463517,314651.793,4841566.606000001
-891676,4156652,2017.0,2019.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,134 BERRY RD,4,22,2019-10-30,74,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,4.0,3.0,,3.0,,,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,2.0,,W0327,43.6381743577,-79.485853087,,
-891677,4156653,2017.0,2019.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,136 BERRY RD,4,22,2019-10-30,74,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,4.0,3.0,,3.0,,,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,2.0,,W0327,43.638324622700004,-79.4863398937,,
-891678,4156650,2017.0,2019.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,138 BERRY RD,4,22,2019-10-30,74,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,4.0,3.0,,3.0,,,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,2.0,,W0327,43.638038087,-79.4865149575,,
-891679,4155248,2017.0,2019.0,1940.0,PRIVATE,3,Etobicoke-Lakeshore,140 BERRY RD,4,14,2019-10-30,69,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,4.0,3.0,,4.0,,,3.0,4.0,5.0,3.0,3.0,3.0,4.0,4.0,2.0,,W0327,43.6378752009,-79.4868729596,305849.94800000003,4832879.26
-891680,4155281,2017.0,2019.0,1956.0,PRIVATE,3,Etobicoke-Lakeshore,168 BERRY RD,4,22,2019-10-30,74,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,3.0,4.0,3.0,,3.0,,,4.0,2.0,5.0,3.0,4.0,4.0,4.0,3.0,4.0,,W0327,43.636826872,-79.491504389,305455.669,4832759.364
-891681,4168798,2017.0,2019.0,1956.0,PRIVATE,3,Etobicoke-Lakeshore,170 BERRY RD,4,22,2019-10-30,70,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,3.0,4.0,3.0,,3.0,,,4.0,2.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,,W0327,,,305421.0121,4832761.998
-891682,4155282,,2019.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,172 BERRY RD,4,32,2019-10-30,67,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,4.0,,3.0,3.0,5.0,2.0,3.0,4.0,3.0,3.0,3.0,,W0327,43.636679641,-79.49240542300001,305388.38800000004,4832756.94
-891683,4356727,2018.0,2019.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,176 BERRY RD,4,29,2019-10-30,66,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,3.0,3.0,,3.0,4.0,,3.0,3.0,4.0,3.0,3.0,4.0,3.0,2.0,3.0,,W0327,43.636561238,-79.493053522,305320.673,4832716.888
-891684,4286261,2017.0,2019.0,1990.0,TCHC,15,Don Valley West,2755 YONGE ST,4,41,2019-10-30,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,5.0,4.0,5.0,5.0,,4.0,3.0,,N1526,43.718218448,-79.40053936609999,312798.75,4841811.4180000005
-891685,4295059,2018.0,2019.0,1930.0,PRIVATE,15,Don Valley West,2837 YONGE ST,6,67,2019-10-30,91,Evaluation needs to be conducted in 3 years,17,5.0,3.0,5.0,3.0,5.0,5.0,,4.0,4.0,,5.0,5.0,5.0,5.0,5.0,5.0,,4.0,4.0,5.0,N1526,43.719953750200006,-79.4007265564,312783.439,4842004.178
-891686,4153862,2017.0,2019.0,1928.0,PRIVATE,15,Don Valley West,2867 YONGE ST,3,32,2019-10-30,83,Evaluation needs to be conducted in 2 years,14,4.0,3.0,5.0,4.0,3.0,4.0,,4.0,,,5.0,5.0,5.0,4.0,3.0,4.0,,5.0,,,N1526,43.72055353,-79.400838687,312774.064,4842071.748
-891687,4153863,2017.0,2019.0,1960.0,PRIVATE,15,Don Valley West,2875 YONGE ST,4,18,2019-10-30,83,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,4.0,4.0,5.0,,4.0,,4.0,4.0,5.0,5.0,3.0,3.0,4.0,,5.0,,5.0,N1526,43.720768502,-79.40097412,312763.124,4842095.615
-891688,4155297,2017.0,2019.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,2645 BLOOR ST W,5,42,2019-10-30,92,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,5.0,4.0,5.0,5.0,5.0,5.0,3.0,,W0327,43.648946892,-79.494356545,305239.348,4834111.89
-891689,4155296,2017.0,2019.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,2649 BLOOR ST W,4,48,2019-10-30,72,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,4.0,3.0,3.0,,3.0,3.0,3.0,4.0,3.0,5.0,3.0,4.0,4.0,4.0,5.0,2.0,,W0327,43.648996751999995,-79.494971996,305189.691,4834117.426
-891690,4155230,2018.0,2019.0,1959.0,PRIVATE,3,Etobicoke-Lakeshore,65 CLOVERHILL RD,4,24,2019-10-30,61,Evaluation needs to be conducted in 1 year,17,3.0,3.0,5.0,2.0,3.0,3.0,,4.0,,3.0,2.0,2.0,5.0,2.0,3.0,3.0,3.0,3.0,3.0,,W0329,43.6354908958,-79.4906112543,305541.855,4832616.072
-891691,4154171,2017.0,2019.0,1962.0,PRIVATE,15,Don Valley West,4 GRANDSTAND PL,6,60,2019-10-30,84,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,,N1533,43.704055124899995,-79.3456519574,317224.299,4840244.586
-891692,4154170,2017.0,2019.0,1958.0,PRIVATE,15,Don Valley West,6 GRANDSTAND PL,6,60,2019-10-30,87,Evaluation needs to be conducted in 3 years,17,4.0,4.0,5.0,4.0,3.0,3.0,,5.0,4.0,,4.0,4.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,,N1533,43.703620119300005,-79.3452607415,317255.92,4840196.318
-891693,4155220,2017.0,2019.0,1967.0,PRIVATE,3,Etobicoke-Lakeshore,618 EVANS AVE,3,25,2019-10-30,80,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,3.0,5.0,4.0,3.0,,W0330,43.610859495,-79.550105854,300739.526,4829881.718
-891694,4154172,2017.0,2019.0,1960.0,PRIVATE,15,Don Valley West,2 GRANDSTAND PL,6,60,2019-10-30,72,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,,N1533,43.70389820850001,-79.3462344474,317177.385,4840227.066000001
-891695,4155556,2017.0,2019.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,25 VILLA RD,3,34,2019-10-30,72,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,4.0,3.0,,4.0,,,3.0,4.0,5.0,4.0,3.0,3.0,,4.0,4.0,,W0334,43.5903826835,-79.5425008764,301352.589,4827605.591
-891696,4155232,2017.0,2019.0,1950.0,PRIVATE,3,Etobicoke-Lakeshore,1 HEATHERDALE RD,4,35,2019-10-30,67,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,3.0,2.0,,4.0,,4.0,3.0,2.0,5.0,3.0,2.0,3.0,4.0,4.0,2.0,,W0329,43.634913464499995,-79.4905899718,305543.578,4832551.923
-891697,4155231,2017.0,2019.0,1950.0,PRIVATE,3,Etobicoke-Lakeshore,3 HEATHERDALE RD,4,35,2019-10-30,71,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,3.0,2.0,,4.0,,4.0,4.0,3.0,5.0,4.0,2.0,3.0,4.0,4.0,2.0,,W0329,43.6348017129,-79.4912245002,305492.372,4832539.5030000005
-891698,4152920,2017.0,2019.0,1910.0,PRIVATE,4,Parkdale-High Park,35 JANE ST,3,18,2019-10-30,79,Evaluation needs to be conducted in 2 years,15,4.0,5.0,5.0,4.0,4.0,4.0,,3.0,,,4.0,4.0,5.0,3.0,4.0,3.0,,4.0,3.0,,S0426,43.650362426,-79.48450395649999,306034.424,4834268.283
-891699,4155539,2017.0,2019.0,1970.0,PRIVATE,3,Etobicoke-Lakeshore,80 TWENTY FIFTH ST,3,18,2019-10-30,83,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0334,43.595321466,-79.523394934,302898.92,4828146.016
-891700,4252925,2017.0,2019.0,1970.0,PRIVATE,3,Etobicoke-Lakeshore,90 TWENTY FIFTH ST,3,41,2019-10-30,81,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0334,43.595677145,-79.523533337,302867.794,4828242.129
-891701,4252919,2017.0,2019.0,1970.0,PRIVATE,3,Etobicoke-Lakeshore,9 THIRTY THIRD ST,3,34,2019-10-30,77,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,3.0,3.0,4.0,,4.0,4.0,,W0334,43.5916886979,-79.5307437677,302302.00399999996,4827750.258
-891702,4156288,2017.0,2019.0,1970.0,PRIVATE,3,Etobicoke-Lakeshore,11 THIRTY THIRD ST,3,23,2019-10-30,79,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,3.0,3.0,4.0,,4.0,4.0,,W0334,43.5918858428,-79.5306544291,302309.225,4827772.157
-891703,4155916,2017.0,2019.0,1970.0,PRIVATE,3,Etobicoke-Lakeshore,15 THIRTY THIRD ST,3,36,2019-10-30,80,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,4.0,,W0334,43.592052746099995,-79.530753761,302301.211,4827790.702
-891704,4154174,2017.0,2019.0,1985.0,SOCIAL HOUSING,15,Don Valley West,18 THORNCLIFFE PARK DR,7,109,2019-10-30,72,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,,3.0,3.0,5.0,3.0,4.0,3.0,3.0,4.0,4.0,4.0,N1533,43.704307406400005,-79.3469915731,317116.28,4840272.413
-891705,4154173,2017.0,2019.0,1959.0,PRIVATE,15,Don Valley West,22 THORNCLIFFE PARK DR,7,60,2019-10-30,72,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,3.0,4.0,,4.0,4.0,4.0,3.0,3.0,5.0,3.0,3.0,4.0,4.0,4.0,4.0,,N1533,43.703702356899996,-79.3467690026,317134.342,4840205.228
-891706,4155540,2017.0,2019.0,1970.0,PRIVATE,3,Etobicoke-Lakeshore,100 TWENTY FIFTH ST,3,18,2019-10-30,81,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0334,43.59601136,-79.523701265,302857.947,4828272.539
-891707,4155249,2017.0,2019.0,1959.0,PRIVATE,3,Etobicoke-Lakeshore,135 STEPHEN DR,4,26,2019-10-30,85,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,5.0,,4.0,4.0,,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,W0327,43.6383454024,-79.48717845659999,305818.852,4832933.225
-891708,4155216,2017.0,2019.0,1962.0,PRIVATE,3,Etobicoke-Lakeshore,765 BROWNS LINE,5,24,2019-10-30,76,Evaluation needs to be conducted in 2 years,17,4.0,3.0,5.0,3.0,4.0,4.0,,4.0,4.0,,4.0,3.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,W0331,43.6083356867,-79.5473887151,300958.963,4829600.237
-891709,4155291,2018.0,2019.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,39 RIVERWOOD PKWY,4,23,2019-10-30,69,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,2.0,3.0,3.0,,5.0,,,3.0,3.0,5.0,2.0,4.0,4.0,3.0,3.0,4.0,,W0327,43.6403890443,-79.4907013619,305534.583,4833160.228999999
-891710,4155218,2017.0,2019.0,1982.0,SOCIAL HOUSING,3,Etobicoke-Lakeshore,256 SHELDON AVE,7,76,2019-10-30,83,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,4.0,4.0,5.0,5.0,4.0,5.0,,5.0,3.0,5.0,W0331,43.6084801152,-79.5465065872,301030.182,4829616.243
-891711,4155217,2017.0,2019.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,270 SHELDON AVE,6,74,2019-10-30,81,Evaluation needs to be conducted in 2 years,18,4.0,5.0,5.0,4.0,5.0,4.0,,3.0,5.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,,W0331,43.609210519399994,-79.54621078939999,301054.105,4829697.381
-891712,4155350,2017.0,2019.0,1970.0,PRIVATE,2,Etobicoke Centre,530 SCARLETT RD,12,106,2019-10-30,91,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,4.0,,5.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,W0224,43.687297049099996,-79.5138247015,303669.893,4838371.568
-891713,4153834,2017.0,2019.0,1967.0,PRIVATE,15,Don Valley West,241 REDPATH AVE,12,46,2019-10-30,80,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,4.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,2.0,5.0,3.0,5.0,4.0,5.0,4.0,4.0,,N1526,43.71148813,-79.393866958,313337.085,4841065.338
-891714,4155258,2017.0,2019.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,1 CROWN HILL PL,4,33,2019-10-30,87,Evaluation needs to be conducted in 3 years,17,4.0,4.0,5.0,4.0,5.0,3.0,,5.0,,4.0,5.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,W0327,43.6384647272,-79.4918242158,305443.979,4832946.44
-891715,4155260,2017.0,2019.0,1956.0,PRIVATE,3,Etobicoke-Lakeshore,4 CROWN HILL PL,5,32,2019-10-30,80,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,W0327,43.6379480963,-79.4907455213,305531.02,4832889.053
-891716,4155261,2017.0,2019.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,5 CROWN HILL PL,4,37,2019-10-30,74,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,3.0,3.0,3.0,,5.0,,4.0,3.0,4.0,4.0,3.0,4.0,4.0,5.0,4.0,3.0,,W0327,43.638041895600004,-79.4902414702,305571.7,4832899.478
-891717,4155262,2017.0,2019.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,6 CROWN HILL PL,4,37,2019-10-30,74,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,3.0,3.0,3.0,,5.0,,4.0,3.0,4.0,4.0,3.0,4.0,4.0,5.0,4.0,3.0,,W0327,43.6385102158,-79.4902204233,305573.399,4832951.506
-891718,4155264,2017.0,2019.0,1962.0,PRIVATE,3,Etobicoke-Lakeshore,8 CROWN HILL PL,4,35,2019-10-30,72,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,,4.0,3.0,4.0,5.0,3.0,3.0,4.0,3.0,4.0,4.0,,W0327,43.63895874,-79.491216297,305492.78,4833002.28
-891719,4152904,2017.0,2019.0,1920.0,PRIVATE,4,Parkdale-High Park,2407 BLOOR ST W,3,12,2019-10-30,84,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,5.0,4.0,,5.0,3.0,4.0,S0430,43.64933320229999,-79.4831934689,306140.164,4834153.961
-891720,4152902,2017.0,2019.0,1938.0,PRIVATE,4,Parkdale-High Park,2553 BLOOR ST W,3,22,2019-10-30,81,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,5.0,3.0,4.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,3.0,4.0,5.0,3.0,,S0430,43.6475469436,-79.4904303476,305556.356,4833955.443
-891721,4155827,2018.0,2019.0,1944.0,PRIVATE,4,Parkdale-High Park,2559 BLOOR ST W,4,27,2019-10-30,75,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,3.0,3.0,3.0,,4.0,,4.0,4.0,3.0,5.0,4.0,5.0,4.0,3.0,4.0,3.0,,S0425,43.647685867,-79.490964697,305519.44899999996,4833990.2530000005
-891722,4155265,2017.0,2019.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,9 CROWN HILL PL,5,60,2019-10-30,82,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,3.0,4.0,,4.0,4.0,,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,W0327,43.639623358,-79.491058309,305505.524,4833076.116
-891723,4155930,2017.0,2019.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,90 JAMES ST,3,34,2019-10-30,73,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,4.0,3.0,,4.0,,,4.0,4.0,5.0,4.0,3.0,3.0,,4.0,4.0,,W0334,43.5900539633,-79.5420495238,301389.019,4827569.052
-891724,4236708,2017.0,2019.0,2016.0,PRIVATE,15,Don Valley West,77 KEEWATIN AVE,8,79,2019-10-30,97,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,5.0,N1526,,,313138.717,4841192.59
-891725,4155530,2017.0,2019.0,1992.0,SOCIAL HOUSING,3,Etobicoke-Lakeshore,3078 LAKE SHORE BLVD W,8,55,2019-10-30,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,4.0,3.0,4.0,3.0,3.0,,4.0,4.0,5.0,3.0,4.0,3.0,,5.0,3.0,4.0,W0335,43.599612567799994,-79.5123632574,303793.135,4828621.572
-891726,4154201,2017.0,2019.0,1950.0,PRIVATE,15,Don Valley West,896 EGLINTON AVE E,4,43,2019-10-30,84,Evaluation needs to be conducted in 2 years,15,5.0,5.0,5.0,4.0,3.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,5.0,3.0,,N1529,43.7142674187,-79.3630347401,315821.42699999997,4841376.723
-891727,4155525,2017.0,2019.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,70 FIFTEENTH ST,3,25,2019-10-30,68,Evaluation needs to be conducted in 2 years,15,4.0,4.0,3.0,4.0,3.0,4.0,,3.0,,,3.0,3.0,5.0,2.0,4.0,3.0,,4.0,2.0,,W0335,43.6020354915,-79.5156367545,303522.018,4828899.402
-891728,4155520,,2019.0,1958.0,PRIVATE,3,Etobicoke-Lakeshore,122 FIFTH ST,3,12,2019-10-30,73,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,4.0,5.0,,4.0,3.0,,W0335,43.6004906208,-79.5030314026,304539.618,4828727.682
-891729,4154200,2017.0,2019.0,1954.0,PRIVATE,15,Don Valley West,898 EGLINTON AVE E,3,21,2019-10-30,75,Evaluation needs to be conducted in 2 years,16,5.0,3.0,5.0,3.0,3.0,5.0,,3.0,,4.0,3.0,3.0,3.0,4.0,4.0,5.0,,4.0,3.0,,N1529,43.7143428943,-79.362633584,315853.739,4841385.163
-891730,4154199,2017.0,2019.0,1958.0,PRIVATE,15,Don Valley West,904 EGLINTON AVE E,4,22,2019-10-30,71,Evaluation needs to be conducted in 2 years,14,4.0,3.0,5.0,3.0,,3.0,,3.0,,,3.0,5.0,4.0,3.0,3.0,5.0,,3.0,3.0,,N1529,43.71442413,-79.362206452,315887.881,4841395.201
-891731,4154193,2017.0,2019.0,1965.0,PRIVATE,15,Don Valley West,970 EGLINTON AVE E,4,50,2019-10-30,89,Evaluation needs to be conducted in 3 years,17,5.0,3.0,5.0,5.0,5.0,5.0,,4.0,5.0,,3.0,3.0,5.0,5.0,5.0,5.0,5.0,5.0,3.0,,N1529,43.715346487,-79.358584186,316179.596,4841498.159
-891732,4154192,2017.0,2019.0,1962.0,PRIVATE,15,Don Valley West,972 EGLINTON AVE E,6,49,2019-10-30,80,Evaluation needs to be conducted in 2 years,17,5.0,3.0,5.0,5.0,5.0,5.0,,4.0,5.0,,3.0,3.0,3.0,3.0,5.0,3.0,5.0,3.0,3.0,,N1529,43.715531981000005,-79.357969447,316229.097,4841518.848999999
-891733,4155219,2017.0,2019.0,1967.0,PRIVATE,3,Etobicoke-Lakeshore,625 EVANS AVE,11,85,2019-10-30,85,Evaluation needs to be conducted in 2 years,19,5.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,,5.0,5.0,5.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,W0330,43.60966320399999,-79.550566638,300703.95399999997,4829745.148
-891734,4156156,2017.0,2019.0,1969.0,PRIVATE,15,Don Valley West,322 EGLINTON AVE E,20,207,2019-10-30,97,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,,N1537,,,313787.708,4840784.051
-891735,4153788,2019.0,2019.0,1962.0,PRIVATE,15,Don Valley West,365 EGLINTON AVE E,7,48,2019-10-30,89,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,4.0,5.0,4.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,3.0,,N1530,43.709100848599995,-79.3855304609,314009.544,4840800.058999999
-891736,4153814,2017.0,2019.0,1969.0,PRIVATE,15,Don Valley West,368 EGLINTON AVE E,13,149,2019-10-30,88,Evaluation needs to be conducted in 3 years,20,5.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,5.0,4.0,4.0,5.0,4.0,5.0,4.0,4.0,N1537,43.7094642809,-79.3868949941,313899.521,4840840.284
-891737,4153790,2017.0,2019.0,1963.0,PRIVATE,15,Don Valley West,411 EGLINTON AVE E,12,57,2019-10-30,91,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,5.0,5.0,3.0,4.0,4.0,5.0,4.0,3.0,,N1530,43.7093999443,-79.3839382013,314137.81,4840833.46
-891738,4153813,2017.0,2019.0,1957.0,PRIVATE,15,Don Valley West,412 EGLINTON AVE E,6,65,2019-10-30,78,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,4.0,3.0,4.0,3.0,4.0,5.0,3.0,4.0,3.0,5.0,3.0,4.0,4.0,4.0,3.0,4.0,,N1537,43.7097342429,-79.38558900310001,314004.732,4840870.421
-891739,4153792,2017.0,2019.0,1963.0,PRIVATE,15,Don Valley West,445 EGLINTON AVE E,9,57,2019-10-30,95,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,,N1530,43.709650713900004,-79.3826287128,314243.291,4840861.461
-891740,4153810,2017.0,2019.0,1959.0,PRIVATE,15,Don Valley West,460 EGLINTON AVE E,6,72,2019-10-30,81,Evaluation needs to be conducted in 2 years,18,4.0,5.0,5.0,4.0,4.0,3.0,,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,3.0,,N1537,43.710044313900006,-79.38404532130001,314129.077,4840905.035
-891741,4226533,2017.0,2019.0,1958.0,PRIVATE,3,Etobicoke-Lakeshore,60 FIFTEENTH ST,3,11,2019-10-30,83,Evaluation needs to be conducted in 2 years,15,5.0,4.0,4.0,4.0,4.0,5.0,,4.0,,,4.0,4.0,5.0,2.0,4.0,5.0,,3.0,5.0,,W0335,43.6011294552,-79.5152006499,303557.209,4828798.737
-891742,4155557,2017.0,2019.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,75 FORTY SECOND ST,4,28,2019-10-30,69,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,3.0,3.0,3.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,3.0,,W0334,43.589021478999996,-79.544011345,301230.283,4827455.371
-891743,4155558,2017.0,2019.0,1959.0,PRIVATE,3,Etobicoke-Lakeshore,87 FORTY SECOND ST,3,41,2019-10-30,87,Evaluation needs to be conducted in 3 years,18,4.0,4.0,4.0,4.0,4.0,4.0,,5.0,4.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,5.0,,W0334,43.589434868000005,-79.544657833,301178.099,4827501.327
-891744,4156442,2017.0,2019.0,1953.0,SOCIAL HOUSING,3,Etobicoke-Lakeshore,5 FORTY THIRD ST,3,40,2019-10-30,83,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,5.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,W0334,43.5900678471,-79.546025288,301067.973,4827570.758
-891745,4156001,2017.0,2019.0,1953.0,SOCIAL HOUSING,3,Etobicoke-Lakeshore,15 FORTY THIRD ST,3,25,2019-10-30,80,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,W0334,43.59027832979999,-79.54615877170001,301057.206,4827594.148
-891746,4156443,2017.0,2019.0,1953.0,SOCIAL HOUSING,3,Etobicoke-Lakeshore,25 FORTY THIRD ST,3,41,2019-10-30,83,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,4.0,4.0,5.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,5.0,4.0,4.0,W0334,43.5903216537,-79.5464760633,301031.587,4827598.975
-891747,4153809,2017.0,2019.0,1964.0,PRIVATE,15,Don Valley West,490 EGLINTON AVE E,8,51,2019-10-30,74,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,5.0,3.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,2.0,3.0,,N1537,43.7101170493,-79.3836293624,314162.583,4840913.16
-891748,4153794,2017.0,2019.0,1965.0,PRIVATE,15,Don Valley West,525 EGLINTON AVE E,10,54,2019-10-30,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,,N1530,43.710212560900004,-79.3798510461,314467.034,4840924.187
-891749,4154190,2017.0,2019.0,1986.0,PRIVATE,15,Don Valley West,795 EGLINTON AVE E,5,88,2019-10-30,92,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,4.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,5.0,N1531,43.7130112493,-79.3661880509,315567.565,4841236.748
-891750,4154204,2017.0,2019.0,1954.0,PRIVATE,15,Don Valley West,888 EGLINTON AVE E,3,18,2019-10-30,81,Evaluation needs to be conducted in 2 years,16,3.0,5.0,5.0,3.0,4.0,4.0,,5.0,,,4.0,5.0,5.0,3.0,4.0,4.0,4.0,4.0,3.0,,N1529,43.7139541156,-79.364465297,315706.209,4841341.723
-891751,4154203,2017.0,2019.0,1961.0,PRIVATE,15,Don Valley West,892 EGLINTON AVE E,4,37,2019-10-30,85,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,3.0,5.0,,5.0,,5.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,3.0,,N1529,43.714037034899995,-79.3641217353,315733.878,4841350.981000001
-891752,4155553,2017.0,2019.0,1950.0,PRIVATE,3,Etobicoke-Lakeshore,294 LAKE PROMENADE,4,14,2019-10-30,81,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,5.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,W0334,43.588709665,-79.53407604899999,302032.547,4827420.363
-891753,4155552,2017.0,2019.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,22 A LONG BRANCH AVE,3,11,2019-10-30,75,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,3.0,,4.0,,3.0,4.0,3.0,5.0,4.0,3.0,3.0,,4.0,4.0,,W0334,43.590295276599996,-79.5324909265,302160.876,4827595.512
-891754,4171461,2017.0,2019.0,1970.0,PRIVATE,15,Don Valley West,88 ERSKINE AVE,27,491,2019-10-29,83,Evaluation needs to be conducted in 2 years,20,5.0,3.0,5.0,3.0,5.0,3.0,5.0,5.0,5.0,5.0,3.0,5.0,5.0,3.0,3.0,3.0,5.0,3.0,4.0,5.0,N1526,,,313175.228,4841121.864
-891755,4153832,2017.0,2019.0,1947.0,PRIVATE,15,Don Valley West,109 ERSKINE AVE,4,34,2019-10-29,79,Evaluation needs to be conducted in 2 years,18,5.0,3.0,3.0,5.0,4.0,3.0,,3.0,5.0,4.0,4.0,3.0,5.0,3.0,5.0,5.0,3.0,3.0,5.0,,N1526,43.711639,-79.394802088,313261.703,4841082.0030000005
-891756,4156090,2017.0,2019.0,1972.0,PRIVATE,15,Don Valley West,110 ERSKINE AVE,23,227,2019-10-29,95,Evaluation needs to be conducted in 3 years,20,5.0,3.0,5.0,5.0,5.0,3.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,N1526,43.712248415,-79.395183727,313266.809,4841146.653
-891757,4155303,2017.0,2019.0,1973.0,PRIVATE,3,Etobicoke-Lakeshore,24 MABELLE AVE,36,540,2019-10-29,72,Evaluation needs to be conducted in 2 years,20,4.0,3.0,4.0,3.0,5.0,3.0,3.0,3.0,5.0,3.0,3.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,W0321,43.646585717700006,-79.52714718819999,302594.209,4833849.039
-891758,4155305,2017.0,2019.0,1979.0,TCHC,3,Etobicoke-Lakeshore,41 MABELLE AVE,19,350,2019-10-29,87,Evaluation needs to be conducted in 3 years,20,4.0,4.0,3.0,5.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,5.0,4.0,5.0,5.0,4.0,W0321,43.6448379761,-79.5277127601,302548.527,4833654.887
-891759,4155371,2017.0,2019.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,5294 DUNDAS ST W,7,45,2019-10-29,66,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,3.0,,3.0,3.0,4.0,4.0,3.0,3.0,3.0,4.0,3.0,,W0323,43.637025183,-79.54003296,301553.935,4832788.22
-891760,4155339,2017.0,2019.0,1970.0,PRIVATE,2,Etobicoke Centre,10 FONTENAY CRT,6,63,2019-10-29,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,W0230,43.681930505,-79.511655476,303844.403,4837776.302
-891761,4155338,2017.0,2019.0,1966.0,PRIVATE,2,Etobicoke Centre,20 FONTENAY CRT,14,96,2019-10-29,75,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,2.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,,W0230,43.682596017,-79.512861413,303747.19,4837850.252
-891762,4155299,2017.0,2019.0,1968.0,PRIVATE,3,Etobicoke-Lakeshore,4875 DUNDAS ST W,10,56,2019-10-29,69,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,5.0,3.0,3.0,3.0,4.0,4.0,3.0,,W0321,43.649546925299994,-79.5275324793,302563.23,4834178.034
-891763,4153835,2017.0,2019.0,1970.0,PRIVATE,15,Don Valley West,133 ERSKINE AVE,11,28,2019-10-29,80,Evaluation needs to be conducted in 2 years,17,4.0,3.0,3.0,4.0,3.0,5.0,,3.0,4.0,,4.0,4.0,5.0,5.0,5.0,3.0,5.0,5.0,3.0,,N1526,43.711887063999995,-79.394093393,313318.78,4841109.635
-891764,4156446,2017.0,2019.0,1972.0,PRIVATE,15,Don Valley West,140 ERSKINE AVE,29,493,2019-10-29,98,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,5.0,5.0,N1526,43.712415376,-79.393778924,313344.04600000003,4841168.362
-891765,4153836,2017.0,2019.0,1962.0,PRIVATE,15,Don Valley West,141 ERSKINE AVE,13,160,2019-10-29,81,Evaluation needs to be conducted in 2 years,18,5.0,5.0,4.0,4.0,4.0,4.0,,4.0,5.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,2.0,,N1526,43.71194070399999,-79.393282145,313384.148,4841115.679
-891766,4155222,2017.0,2019.0,1993.0,SOCIAL HOUSING,3,Etobicoke-Lakeshore,773 THE QUEENSWAY,3,63,2019-10-29,87,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,3.0,4.0,5.0,4.0,5.0,W0326,43.625636744,-79.50453080300001,304383.661,4831516.423
-891767,4226941,2017.0,2019.0,1993.0,SOCIAL HOUSING,3,Etobicoke-Lakeshore,781 THE QUEENSWAY,3,66,2019-10-29,86,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,3.0,4.0,3.0,4.0,5.0,4.0,4.0,3.0,4.0,5.0,4.0,5.0,W0326,43.625447236599996,-79.5057604061,304305.57899999997,4831500.433999999
-891768,4155380,2019.0,2019.0,1970.0,PRIVATE,2,Etobicoke Centre,320 THE WEST MALL,3,17,2019-10-29,79,Evaluation needs to be conducted in 2 years,16,5.0,3.0,5.0,4.0,4.0,3.0,,4.0,,,4.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,W0233,43.636889686,-79.5635303983,299658.36600000004,4832773.299
-891769,4155392,2017.0,2019.0,1964.0,PRIVATE,2,Etobicoke Centre,2 TRIBURNHAM PL,10,137,2019-10-29,90,Evaluation needs to be conducted in 3 years,20,4.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,W0233,43.6425908284,-79.5784906979,298451.914,4833407.718
-891770,4155346,2017.0,2019.0,1982.0,SOCIAL HOUSING,2,Etobicoke Centre,123 LA ROSE AVE,15,259,2019-10-29,91,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,4.0,5.0,4.0,4.0,5.0,4.0,,5.0,4.0,5.0,5.0,5.0,4.0,5.0,5.0,3.0,5.0,W0230,43.6852100383,-79.52181377229999,303025.75399999996,4838139.874
-891771,4153847,2017.0,2019.0,2010.0,PRIVATE,15,Don Valley West,1000 MOUNT PLEASANT RD,13,155,2019-10-29,100,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,,5.0,5.0,5.0,N1526,43.7132872773,-79.3923304336,313460.908,4841264.425
-891772,4155400,2018.0,2019.0,1972.0,PRIVATE,2,Etobicoke Centre,580 THE EAST MALL,16,122,2019-10-29,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,5.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,5.0,5.0,3.0,4.0,3.0,3.0,4.0,4.0,,W0232,43.65370022649999,-79.5643718733,299591.993,4834640.898
-891773,4155376,2017.0,2019.0,1965.0,PRIVATE,2,Etobicoke Centre,265 MARKLAND DR,13,149,2019-10-29,82,Evaluation needs to be conducted in 2 years,19,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,5.0,4.0,3.0,4.0,2.0,,W0233,43.628474685600004,-79.57963997479999,298357.691,4831839.575
-891774,4155398,2017.0,2019.0,1974.0,PRIVATE,2,Etobicoke Centre,340 MILL RD,19,225,2019-10-29,83,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,5.0,5.0,4.0,4.0,3.0,5.0,4.0,3.0,5.0,W0231,43.6398689295,-79.5856147179,297876.852,4833105.909
-891775,4153849,2017.0,2019.0,1969.0,PRIVATE,15,Don Valley West,160 ERSKINE AVE,23,250,2019-10-29,94,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,5.0,4.0,4.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,4.0,4.0,,N1526,43.71268040100001,-79.393055375,313402.315,4841197.882
-891776,4153837,2017.0,2019.0,1950.0,PRIVATE,15,Don Valley West,165 ERSKINE AVE,4,40,2019-10-29,89,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,5.0,5.0,4.0,,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,N1526,43.712116148,-79.392551914,313442.969,4841135.2469999995
-891777,4153848,2017.0,2019.0,1957.0,PRIVATE,15,Don Valley West,170 ERSKINE AVE,4,31,2019-10-29,80,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,,N1526,43.712817122,-79.392570284,313441.386,4841213.1219999995
-891778,4153838,2017.0,2019.0,1960.0,PRIVATE,15,Don Valley West,171 ERSKINE AVE,13,47,2019-10-29,80,Evaluation needs to be conducted in 2 years,18,5.0,4.0,4.0,3.0,5.0,4.0,,4.0,4.0,3.0,3.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,3.0,,N1526,43.712311598,-79.392295109,313463.635,4841156.988
-891779,4153844,2017.0,2019.0,1961.0,PRIVATE,15,Don Valley West,200 ERSKINE AVE,4,15,2019-10-29,93,Evaluation needs to be conducted in 3 years,16,5.0,5.0,5.0,3.0,4.0,5.0,,5.0,,,4.0,4.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,,N1526,43.713073423000004,-79.3909507962,313572.11699999997,4841240.81
-891780,4155387,2017.0,2019.0,1974.0,PRIVATE,2,Etobicoke Centre,15 EVA RD,18,195,2019-10-29,84,Evaluation needs to be conducted in 2 years,20,5.0,5.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,3.0,5.0,5.0,3.0,4.0,W0233,43.638437155,-79.562017823,299621.964,4833042.587
-891781,4155388,2017.0,2019.0,1974.0,PRIVATE,2,Etobicoke Centre,19 EVA RD,14,152,2019-10-29,75,Evaluation needs to be conducted in 2 years,19,4.0,5.0,4.0,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,2.0,,W0233,43.637506998,-79.56171027,299605.598,4833037.805
-891782,4155825,2017.0,2019.0,1971.0,PRIVATE,2,Etobicoke Centre,24 EVA RD,19,142,2019-10-29,77,Evaluation needs to be conducted in 2 years,19,4.0,5.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,2.0,,W0233,43.640023653,-79.563923317,299569.18100000004,4833075.089
-891783,4153828,2017.0,2019.0,1970.0,PRIVATE,15,Don Valley West,15 ERSKINE AVE,16,65,2019-10-29,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,N1526,43.71093654,-79.39847124100001,312966.113,4841003.597
-891784,4153829,2017.0,2019.0,1964.0,PRIVATE,15,Don Valley West,33 ERSKINE AVE,10,109,2019-10-29,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,3.0,3.0,,3.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,3.0,,N1526,43.711076733999995,-79.397812745,313019.16,4841019.2360000005
-891785,4153830,2017.0,2019.0,1964.0,PRIVATE,15,Don Valley West,55 ERSKINE AVE,16,188,2019-10-29,81,Evaluation needs to be conducted in 2 years,20,5.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,5.0,4.0,3.0,5.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,N1526,43.711401488999996,-79.396765679,313103.495,4841055.4180000005
-891786,4153831,2017.0,2019.0,1956.0,PRIVATE,15,Don Valley West,77 ERSKINE AVE,4,37,2019-10-29,78,Evaluation needs to be conducted in 2 years,18,5.0,3.0,5.0,4.0,4.0,3.0,,3.0,5.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,5.0,5.0,4.0,,N1526,43.711378231000005,-79.396038937,313162.064,4841052.907
-891787,4264913,2017.0,2019.0,1971.0,PRIVATE,3,Etobicoke-Lakeshore,1286 ISLINGTON AVE,8,77,2019-10-29,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,,W0321,43.64846976,-79.525809494,302701.915,4834059.277
-891788,4166992,2017.0,2019.0,1971.0,PRIVATE,3,Etobicoke-Lakeshore,1294 ISLINGTON AVE,8,77,2019-10-29,74,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,4.0,3.0,4.0,,4.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,3.0,3.0,W0321,43.64897448399999,-79.52619866100001,302670.539,4834115.36
-891789,4155361,2017.0,2019.0,1962.0,PRIVATE,2,Etobicoke Centre,51-67 WATERFORD DR,8,29,2019-10-29,80,Evaluation needs to be conducted in 2 years,18,5.0,5.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,3.0,3.0,3.0,,3.0,4.0,,W0222,43.680940685900005,-79.5408629511,301489.738,4837666.164
-891790,4156373,2017.0,2019.0,1963.0,TCHC,2,Etobicoke Centre,58 WATERTON RD,6,47,2019-10-29,58,Evaluation needs to be conducted in 1 year,19,3.0,2.0,4.0,2.0,4.0,3.0,3.0,2.0,3.0,,3.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,W0224,43.693937882,-79.51688954800001,303416.73699999996,4839111.034
-891791,4155372,2017.0,2019.0,1966.0,PRIVATE,2,Etobicoke Centre,350 THE EAST MALL,8,77,2019-10-29,74,Evaluation needs to be conducted in 2 years,18,3.0,3.0,5.0,3.0,4.0,3.0,,3.0,3.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,W0234,43.6409375291,-79.55812954310001,300094.471,4833222.672
-891792,4155383,2017.0,2019.0,1970.0,PRIVATE,2,Etobicoke Centre,329 THE WEST MALL,5,45,2019-10-29,88,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,4.0,5.0,3.0,,4.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,5.0,W0233,43.6375255076,-79.5635248549,299658.87,4832843.935
-891793,4155395,2018.0,2019.0,1969.0,PRIVATE,2,Etobicoke Centre,500 THE WEST MALL,5,24,2019-10-29,75,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,3.0,,3.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,W0231,43.64890631,-79.568879209,299225.155,4834139.812
-891794,4155393,2017.0,2019.0,1970.0,PRIVATE,2,Etobicoke Centre,555 THE WEST MALL,15,119,2019-10-29,81,Evaluation needs to be conducted in 2 years,18,5.0,5.0,5.0,3.0,4.0,3.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,W0231,43.65244349100001,-79.57043332100001,299096.887,4834480.231000001
-891795,4155855,2017.0,2019.0,2012.0,PRIVATE,3,Etobicoke-Lakeshore,3 SUMMERLAND TER,26,283,2019-10-29,95,Evaluation needs to be conducted in 3 years,19,5.0,5.0,4.0,5.0,,5.0,5.0,4.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,5.0,5.0,5.0,W0321,43.643171260699994,-79.532364963,302151.067,4833473.587
-891796,4156628,2017.0,2019.0,2011.0,PRIVATE,3,Etobicoke-Lakeshore,7 SUMMERLAND TER,21,218,2019-10-29,96,Evaluation needs to be conducted in 3 years,19,5.0,5.0,4.0,4.0,,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,W0321,43.643486951999996,-79.531938,,
-891797,4155343,2017.0,2019.0,1969.0,PRIVATE,2,Etobicoke Centre,1 RICHVIEW RD,19,365,2019-10-29,90,Evaluation needs to be conducted in 3 years,20,5.0,4.0,5.0,4.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,W0230,43.685159605200006,-79.51325334970001,303715.909,4838134.107
-891798,4155342,2017.0,2019.0,1973.0,PRIVATE,2,Etobicoke Centre,25 RICHVIEW RD,15,141,2019-10-29,86,Evaluation needs to be conducted in 3 years,20,5.0,4.0,5.0,4.0,4.0,5.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,5.0,4.0,4.0,W0230,43.6846591865,-79.5139674087,303658.33,4838078.525
-891799,4153851,2017.0,2019.0,1930.0,PRIVATE,15,Don Valley West,15 SHERWOOD AVE,3,26,2019-10-29,73,Evaluation needs to be conducted in 2 years,17,3.0,4.0,4.0,4.0,4.0,3.0,3.0,3.0,,3.0,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,N1526,43.71341493600001,-79.398583424,312956.739,4841278.923
-891800,4155353,2017.0,2019.0,1994.0,TCHC,2,Etobicoke Centre,1025 SCARLETT RD,11,128,2019-10-29,69,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,4.0,3.0,3.0,4.0,4.0,,4.0,4.0,4.0,3.0,2.0,3.0,,3.0,3.0,5.0,W0224,43.7006762308,-79.5253118023,302744.32399999996,4839858.199
-891801,4155667,2017.0,2019.0,1971.0,TCHC,2,Etobicoke Centre,49 SCARLETTWOOD CRT,4,14,2019-10-29,59,Evaluation needs to be conducted in 1 year,17,3.0,2.0,3.0,3.0,3.0,3.0,,2.0,,,4.0,4.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,W0224,43.69372017600001,-79.516153969,303485.161,4839089.472
-891802,4167679,2017.0,2019.0,2008.0,PRIVATE,15,Don Valley West,220 REDPATH AVE,8,72,2019-10-29,94,Evaluation needs to be conducted in 3 years,20,5.0,4.0,5.0,5.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,N1526,43.71127211,-79.394418315,313305.716,4840999.4
-891803,4155298,2017.0,2019.0,1977.0,PRIVATE,3,Etobicoke-Lakeshore,90 CORDOVA AVE,13,184,2019-10-29,71,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,4.0,4.0,4.0,5.0,4.0,3.0,3.0,4.0,3.0,3.0,,W0321,43.648139693999994,-79.5237605383,302867.459,4834021.602
-891804,4155301,2017.0,2019.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,1276 ISLINGTON AVE,13,202,2019-10-29,75,Evaluation needs to be conducted in 2 years,19,5.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,,W0321,43.647785657,-79.5258528138,302698.664,4833982.321
-891805,4155224,2017.0,2019.0,1965.0,PRIVATE,3,Etobicoke-Lakeshore,800 ROYAL YORK RD,6,60,2019-10-29,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,3.0,4.0,,5.0,4.0,4.0,3.0,4.0,5.0,2.0,4.0,5.0,4.0,2.0,2.0,,W0325,43.638794444,-79.508763602,304076.947,4832984.053
-891806,4155344,2017.0,2019.0,1964.0,PRIVATE,2,Etobicoke Centre,1407 ROYAL YORK RD,13,162,2019-10-29,90,Evaluation needs to be conducted in 3 years,20,5.0,4.0,5.0,4.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,5.0,5.0,4.0,5.0,W0230,43.683787080600005,-79.52630971970001,302663.23,4837981.902
-891807,4241532,2017.0,2019.0,1940.0,PRIVATE,15,Don Valley West,27 SHERWOOD AVE,3,17,2019-10-29,83,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,5.0,4.0,,N1526,43.713606404,-79.397782703,313021.238,4841300.273
-891808,4155691,2017.0,2019.0,1966.0,PRIVATE,3,Etobicoke-Lakeshore,39 OLD MILL RD,24,148,2019-10-29,92,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,5.0,3.0,5.0,4.0,5.0,5.0,5.0,4.0,5.0,5.0,3.0,5.0,W0322,43.6501910215,-79.4940291116,305266.017,4834249.154
-891809,4250615,2017.0,2019.0,1965.0,PRIVATE,15,Don Valley West,66 BROADWAY AVE,20,357,2019-10-29,91,Evaluation needs to be conducted in 3 years,20,5.0,4.0,5.0,4.0,5.0,4.0,4.0,5.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,5.0,5.0,5.0,5.0,5.0,N1526,43.710673428999996,-79.395369179,313216.13800000004,4840974.674
-891810,4153843,2017.0,2019.0,1965.0,PRIVATE,15,Don Valley West,100 BROADWAY AVE,10,47,2019-10-29,76,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,4.0,3.0,4.0,,4.0,4.0,4.0,3.0,4.0,5.0,3.0,3.0,4.0,4.0,4.0,3.0,,N1526,43.710882418999994,-79.39365545,313354.217,4840998.067
-891811,4153842,2017.0,2019.0,1948.0,PRIVATE,15,Don Valley West,110 BROADWAY AVE,4,71,2019-10-29,76,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,4.0,3.0,4.0,,4.0,4.0,,3.0,5.0,5.0,3.0,4.0,3.0,4.0,4.0,3.0,,N1526,43.710960168,-79.39319723199999,313391.13300000003,4841006.752
-891812,4153841,2017.0,2019.0,1957.0,PRIVATE,15,Don Valley West,120 BROADWAY AVE,4,48,2019-10-29,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,4.0,5.0,,4.0,3.0,4.0,3.0,5.0,5.0,3.0,4.0,4.0,3.0,5.0,3.0,,N1526,43.711301163,-79.392906342,313414.526,4841044.666
-891813,4153840,2017.0,2019.0,1956.0,PRIVATE,15,Don Valley West,124 BROADWAY AVE,4,86,2019-10-29,93,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,5.0,4.0,4.0,,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,3.0,,N1526,43.711364802,-79.392506301,313446.755,4841051.778
-891814,4153839,2017.0,2019.0,1970.0,PRIVATE,15,Don Valley West,136 BROADWAY AVE,6,39,2019-10-29,89,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,5.0,4.0,,5.0,4.0,4.0,5.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,3.0,,N1526,43.711262956999995,-79.3919924,313488.184,4841040.517
-891815,4286235,2017.0,2019.0,1993.0,TCHC,15,Don Valley West,8 BROADWAY AVE,7,83,2019-10-29,91,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,5.0,4.0,5.0,4.0,4.0,5.0,3.0,5.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,5.0,,N1526,43.70993270100001,-79.398315206,312978.82300000003,4840892.092
-891816,4286239,2017.0,2019.0,1993.0,TCHC,15,Don Valley West,12 BROADWAY AVE,7,57,2019-10-29,92,Evaluation needs to be conducted in 3 years,20,5.0,4.0,5.0,5.0,5.0,5.0,4.0,4.0,5.0,3.0,5.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,5.0,5.0,N1526,43.710394484,-79.398183371,313007.291,4840899.883
-891817,4155208,2017.0,2019.0,1949.0,PRIVATE,3,Etobicoke-Lakeshore,2684 BLOOR ST W,3,21,2019-10-29,77,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,3.0,,4.0,,,5.0,3.0,5.0,4.0,3.0,4.0,,4.0,3.0,,W0322,43.6502799096,-79.49662782760001,305056.355,4834259.015
-891818,4155209,2017.0,2019.0,1949.0,PRIVATE,3,Etobicoke-Lakeshore,2686 BLOOR ST W,3,21,2019-10-29,75,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,3.0,,4.0,,,4.0,3.0,5.0,4.0,3.0,4.0,,3.0,3.0,,W0322,43.650295861800004,-79.4968685545,305036.934,4834260.786
-891819,4155779,2017.0,2019.0,2007.0,PRIVATE,3,Etobicoke-Lakeshore,11 DUNBLOOR RD,22,278,2019-10-29,96,Evaluation needs to be conducted in 3 years,19,5.0,5.0,4.0,5.0,,5.0,5.0,4.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,W0321,43.64365741899999,-79.532835392,302143.38300000003,4833527.263
-891820,4155360,2017.0,2019.0,1964.0,PRIVATE,2,Etobicoke Centre,40 DIXINGTON CRES,6,55,2019-10-29,79,Evaluation needs to be conducted in 2 years,19,3.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,3.0,3.0,4.0,3.0,,W0223,43.697164457,-79.540156283,301547.37,4839469.485
-891821,4303769,2018.0,2019.0,1968.0,PRIVATE,2,Etobicoke Centre,63 CALLOWHILL DR,10,112,2019-10-28,69,Evaluation needs to be conducted in 2 years,20,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,W0221,,,299662.554,4837921.687
-891822,4155418,2017.0,2019.0,1965.0,PRIVATE,1,Etobicoke North,41 BLACKFRIAR AVE,6,32,2019-10-28,94,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,5.0,5.0,5.0,,5.0,4.0,,5.0,5.0,5.0,4.0,4.0,5.0,4.0,5.0,4.0,,W0133,43.694748314499996,-79.5594207061,299994.67100000003,4839200.9860000005
-891823,4155411,2020.0,2019.0,1968.0,PRIVATE,1,Etobicoke North,111 BLACKFRIAR AVE,3,39,2019-10-28,69,Evaluation needs to be conducted in 2 years,16,3.0,4.0,3.0,3.0,2.0,4.0,,4.0,,,3.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,3.0,,W0133,43.6992765737,-79.56164594,299815.663,4839704.147
-891824,4270534,2017.0,2019.0,1981.0,PRIVATE,2,Etobicoke Centre,105 CLEMENT RD,7,195,2019-10-28,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,4.0,W0221,43.680522919,-79.55416175,300417.27,4837621.239
-891825,4155416,2017.0,2019.0,1965.0,PRIVATE,1,Etobicoke North,15 BRIDESBURG DR,5,62,2019-10-28,92,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,4.0,5.0,4.0,,4.0,4.0,,5.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,4.0,,W0133,43.6954283333,-79.5605528482,299903.466,4839276.584
-891826,4155415,2017.0,2019.0,1965.0,PRIVATE,1,Etobicoke North,25 BRIDESBURG DR,5,62,2019-10-28,92,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,4.0,5.0,4.0,,4.0,4.0,,5.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,4.0,,W0133,43.695559099200004,-79.5621204322,299777.119,4839291.193
-891827,4155355,2017.0,2019.0,1962.0,PRIVATE,2,Etobicoke Centre,24 DIXINGTON CRES,6,63,2019-10-28,87,Evaluation needs to be conducted in 3 years,18,4.0,5.0,5.0,4.0,4.0,4.0,,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,5.0,5.0,5.0,3.0,,W0223,43.6964501816,-79.54293365,301323.708,4839389.287
-891828,4155357,2018.0,2019.0,1963.0,PRIVATE,2,Etobicoke Centre,38 DIXINGTON CRES,10,111,2019-10-28,78,Evaluation needs to be conducted in 2 years,18,4.0,5.0,4.0,3.0,4.0,5.0,,3.0,4.0,,4.0,2.0,5.0,3.0,4.0,3.0,5.0,4.0,4.0,4.0,W0223,43.69652256,-79.54070430600001,301503.157,4839398.193
-891829,4155359,2017.0,2019.0,1963.0,PRIVATE,1,Etobicoke North,236 DIXON RD,13,123,2019-10-28,93,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,3.0,5.0,4.0,5.0,5.0,4.0,,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,4.0,5.0,W0135,43.6983362533,-79.5463927222,301045.006,4839598.982
-891830,4155369,2017.0,2019.0,1964.0,PRIVATE,2,Etobicoke Centre,263 DIXON RD,15,171,2019-10-28,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,3.0,3.0,3.0,3.0,5.0,,3.0,4.0,4.0,5.0,5.0,3.0,5.0,5.0,4.0,3.0,W0222,43.695514613,-79.547766738,300931.87899999996,4839262.038
-891831,4155368,2017.0,2019.0,1967.0,PRIVATE,2,Etobicoke Centre,265 DIXON RD,16,181,2019-10-28,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,5.0,3.0,5.0,3.0,4.0,,3.0,5.0,5.0,4.0,4.0,2.0,5.0,5.0,4.0,,W0222,43.69593445100001,-79.548620626,300843.439,4839394.946
-891832,4155370,2017.0,2019.0,1968.0,PRIVATE,1,Etobicoke North,290 DIXON RD,6,49,2019-10-28,90,Evaluation needs to be conducted in 3 years,18,4.0,4.0,4.0,4.0,5.0,4.0,,4.0,5.0,4.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,,W0134,43.696913551,-79.549832217,300767.413,4839442.033
-891833,4156495,2017.0,2019.0,1962.0,PRIVATE,15,Don Valley West,14 CARLUKE CRES,7,101,2019-10-28,86,Evaluation needs to be conducted in 3 years,20,5.0,4.0,5.0,5.0,5.0,3.0,5.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,4.0,3.0,3.0,4.0,N1521,43.760403651400004,-79.3924866908,313489.963,4846509.1110000005
-891834,4155671,2017.0,2019.0,1962.0,PRIVATE,15,Don Valley West,16 CARLUKE CRES,7,101,2019-10-28,81,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,5.0,5.0,3.0,4.0,3.0,5.0,4.0,4.0,4.0,5.0,3.0,5.0,4.0,3.0,3.0,3.0,,N1521,43.7611222484,-79.39268737180001,313562.542,4846551.841
-891835,4155672,2017.0,2019.0,1962.0,PRIVATE,15,Don Valley West,20 CARLUKE CRES,12,154,2019-10-28,81,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,5.0,5.0,3.0,3.0,3.0,5.0,4.0,4.0,5.0,5.0,3.0,5.0,4.0,3.0,3.0,3.0,,N1521,43.7610374702,-79.3915028226,313594.376,4846563.3889999995
-891836,4155830,2017.0,2019.0,1964.0,PRIVATE,15,Don Valley West,26 CARLUKE CRES,14,157,2019-10-28,83,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,5.0,5.0,3.0,4.0,4.0,5.0,,4.0,5.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,,N1521,43.761243138000005,-79.3906391551,313656.45,4846571.551
-891837,4155413,2017.0,2019.0,1965.0,PRIVATE,1,Etobicoke North,186 KINGSVIEW BLVD,11,81,2019-10-28,96,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,5.0,5.0,5.0,,5.0,4.0,,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,4.0,,W0133,43.6932326583,-79.5665294242,299421.522,4839032.971
-891838,4155405,2017.0,2019.0,1992.0,SOCIAL HOUSING,2,Etobicoke Centre,1540 KIPLING AVE,8,128,2019-10-28,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,W0221,43.680470399799994,-79.5529581707,300514.566,4837614.397
-891839,4155407,2017.0,2019.0,1968.0,PRIVATE,2,Etobicoke Centre,695 MARTIN GROVE RD,12,142,2019-10-28,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,3.0,4.0,4.0,5.0,3.0,3.0,3.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,W0221,43.682026488999995,-79.565970029,299462.268,4837680.56
-891840,4154730,2017.0,2019.0,1970.0,PRIVATE,15,Don Valley West,17 FARMSTEAD RD,19,136,2019-10-28,79,Evaluation needs to be conducted in 2 years,20,5.0,3.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,3.0,3.0,4.0,5.0,3.0,4.0,3.0,4.0,3.0,2.0,4.0,N1522,43.754388627,-79.36167580600001,315923.29600000003,4845835.076
-891841,4154739,2017.0,2019.0,1963.0,PRIVATE,15,Don Valley West,16 THE LINKS RD,4,102,2019-10-28,85,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,5.0,3.0,4.0,4.0,5.0,4.0,5.0,4.0,5.0,4.0,5.0,,N1521,43.751505712,-79.402827155,312609.845,4845510.073
-891842,4168796,2017.0,2019.0,1963.0,PRIVATE,15,Don Valley West,24 THE LINKS RD,4,95,2019-10-28,85,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,5.0,3.0,4.0,4.0,5.0,4.0,5.0,4.0,5.0,4.0,5.0,,N1521,43.751017702,-79.402305283,312651.934,4845455.909
-891843,4154733,2017.0,2019.0,1974.0,PRIVATE,15,Don Valley West,44 STUBBS DR,7,84,2019-10-28,89,Evaluation needs to be conducted in 3 years,20,5.0,3.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,5.0,3.0,5.0,3.0,5.0,4.0,3.0,5.0,N1522,43.76149848520001,-79.3630422116,315812.209,4846623.819
-891844,4155454,2018.0,2019.0,1976.0,PRIVATE,1,Etobicoke North,2757 KIPLING AVE,19,343,2019-10-28,78,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,3.0,4.0,4.0,4.0,3.0,5.0,,5.0,5.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,,W0124,43.754436232299994,-79.5871043127,297770.21,4845833.956
-891845,4155455,2017.0,2019.0,1978.0,PRIVATE,1,Etobicoke North,2777 KIPLING AVE,18,325,2019-10-28,68,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,3.0,3.0,4.0,2.0,4.0,4.0,,3.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,W0124,43.7560633856,-79.5872449019,297759.089,4846014.737
-891846,4154734,2017.0,2019.0,1963.0,PRIVATE,15,Don Valley West,37 LORD SEATON RD,4,49,2019-10-28,91,Evaluation needs to be conducted in 3 years,19,5.0,5.0,4.0,5.0,4.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,5.0,3.0,,N1521,43.7525712767,-79.4059855057,312355.623,4845627.205
-891847,4153807,2017.0,2019.0,1983.0,TCHC,15,Don Valley West,801 MOUNT PLEASANT RD,10,185,2019-10-28,78,Evaluation needs to be conducted in 2 years,19,4.0,5.0,5.0,3.0,3.0,5.0,2.0,2.0,4.0,,5.0,5.0,5.0,3.0,3.0,3.0,5.0,5.0,3.0,4.0,N1537,43.7088453,-79.3898544426,313661.101,4840771.193
-891848,4155441,2017.0,2019.0,1962.0,PRIVATE,1,Etobicoke North,39 LEDUC DR,3,13,2019-10-28,71,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,3.0,3.0,,4.0,,,3.0,3.0,5.0,3.0,4.0,3.0,4.0,3.0,3.0,,W0130,43.7183839907,-79.5579415318,300115.74600000004,4841826.716
-891849,4244929,2017.0,2019.0,1963.0,PRIVATE,1,Etobicoke North,70 ESTHER LORRIE DR,7,97,2019-10-28,82,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,4.0,5.0,3.0,,4.0,5.0,3.0,5.0,3.0,5.0,4.0,4.0,4.0,5.0,3.0,3.0,,W0129,43.732279511,-79.577684699,298562.561,4843311.273
-891850,4153872,2017.0,2019.0,1952.0,PRIVATE,15,Don Valley West,6 GLEN ECHO RD,4,30,2019-10-28,76,Evaluation needs to be conducted in 2 years,15,3.0,5.0,4.0,4.0,3.0,3.0,,3.0,,,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,4.0,,N1525,43.7340881358,-79.4038420166,312530.603,4843574.098
-891851,4155813,2017.0,2019.0,1973.0,TCHC,1,Etobicoke North,2063 ISLINGTON AVE,12,162,2019-10-28,76,Evaluation needs to be conducted in 2 years,19,2.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,W0135,43.701195372,-79.547954529,300919.034,4839917.6389999995
-891852,4155705,2017.0,2019.0,1973.0,TCHC,1,Etobicoke North,2067 ISLINGTON AVE,12,162,2019-10-28,68,Evaluation needs to be conducted in 2 years,20,3.0,4.0,4.0,2.0,3.0,4.0,2.0,3.0,4.0,2.0,2.0,4.0,5.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,W0135,43.702256035,-79.548440591,300879.92699999997,4840035.496
-891853,4155358,2017.0,2019.0,1970.0,PRIVATE,1,Etobicoke North,2085 ISLINGTON AVE,20,266,2019-10-28,79,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,W0135,43.7035776497,-79.5492233546,300817.193,4840181.403
-891854,4155918,2017.0,2019.0,1970.0,PRIVATE,1,Etobicoke North,2101 ISLINGTON AVE,22,271,2019-10-28,80,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,W0135,43.7035776497,-79.5492233546,300817.193,4840181.403
-891855,4155442,2017.0,2019.0,1962.0,PRIVATE,1,Etobicoke North,2328 ISLINGTON AVE,7,68,2019-10-28,76,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,4.0,5.0,,4.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,3.0,4.0,3.0,3.0,,W0130,43.717216180600005,-79.5567000725,300215.686,4841696.915
-891856,4155440,2017.0,2019.0,1958.0,PRIVATE,1,Etobicoke North,2356 ISLINGTON AVE,3,18,2019-10-28,68,Evaluation needs to be conducted in 2 years,17,4.0,3.0,5.0,3.0,3.0,2.0,,3.0,,4.0,3.0,2.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,,W0130,43.7189395092,-79.55744108420001,300156.114,4841888.402
-891857,4155439,2017.0,2019.0,1972.0,PRIVATE,1,Etobicoke North,2362 ISLINGTON AVE,3,13,2019-10-28,66,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,4.0,3.0,2.0,,4.0,,2.0,3.0,4.0,5.0,3.0,3.0,2.0,3.0,4.0,3.0,,W0130,43.719305544899996,-79.5575311181,300148.88800000004,4841929.072
-891858,4155430,2017.0,2019.0,1960.0,PRIVATE,1,Etobicoke North,2386 ISLINGTON AVE,3,18,2019-10-28,68,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,2.0,3.0,4.0,,3.0,,,3.0,3.0,5.0,4.0,3.0,2.0,3.0,4.0,3.0,,W0130,43.72086112,-79.55824156,300091.5,4842102.895
-891859,4155781,2017.0,2019.0,1965.0,TCHC,1,Etobicoke North,111 KENDLETON DR,7,58,2019-10-28,67,Evaluation needs to be conducted in 2 years,19,2.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,4.0,4.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,W0123,43.737879704499996,-79.581199625,298243.847,4843994.13
-891860,4156208,2017.0,2019.0,1965.0,TCHC,1,Etobicoke North,121 KENDLETON DR,11,194,2019-10-28,62,Evaluation needs to be conducted in 1 year,19,3.0,4.0,4.0,2.0,3.0,4.0,1.0,3.0,4.0,,2.0,4.0,2.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,W0123,43.7376027043,-79.5808305747,298273.543,4843963.329
-891861,4155435,2017.0,2019.0,1964.0,PRIVATE,1,Etobicoke North,3 TORBOLTON DR,3,18,2019-10-28,73,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,3.0,3.0,4.0,,4.0,,,3.0,4.0,5.0,4.0,4.0,4.0,3.0,5.0,3.0,,W0130,43.718334116099996,-79.55838532109999,300079.983,4841821.201
-891862,4155436,2017.0,2019.0,1960.0,PRIVATE,1,Etobicoke North,15 TORBOLTON DR,3,19,2019-10-28,84,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,3.0,3.0,,4.0,,,5.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,,W0130,43.718916640299994,-79.5582979655,300087.068,4841885.912
-891863,4155432,2017.0,2019.0,1960.0,PRIVATE,1,Etobicoke North,30 TORBOLTON DR,3,16,2019-10-28,71,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,,3.0,3.0,3.0,5.0,4.0,3.0,3.0,2.0,5.0,5.0,,W0130,43.719534683199996,-79.5587174372,300053.318,4841954.598999999
-891864,4154735,2017.0,2019.0,1959.0,PRIVATE,15,Don Valley West,28 UPPER CANADA DR,4,54,2019-10-28,74,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,,N1521,43.7522561858,-79.4046460528,312453.74100000004,4845645.083000001
-891865,4154737,2017.0,2019.0,1965.0,PRIVATE,15,Don Valley West,29 UPPER CANADA DR,4,54,2019-10-28,72,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,3.0,3.0,3.0,4.0,4.0,3.0,4.0,3.0,4.0,3.0,3.0,,N1521,43.752224986499996,-79.4034227428,312562.05100000004,4845588.969
-891866,4154736,2017.0,2019.0,1959.0,PRIVATE,15,Don Valley West,30 UPPER CANADA DR,4,54,2019-10-28,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,N1521,43.752919738900005,-79.4048046905,312470.577,4845582.9969999995
-891867,4154738,2017.0,2019.0,1965.0,PRIVATE,15,Don Valley West,31 UPPER CANADA DR,4,61,2019-10-28,72,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,,N1521,43.752982923999994,-79.40413326,312486.058,4845697.732
-891868,4154740,2017.0,2019.0,1963.0,PRIVATE,15,Don Valley West,199 UPPER CANADA DR,4,119,2019-10-28,89,Evaluation needs to be conducted in 3 years,19,5.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,5.0,5.0,5.0,5.0,4.0,3.0,,N1521,43.7601407229,-79.3938827219,313329.2,4846469.341
-891869,4155659,2017.0,2019.0,1967.0,TCHC,1,Etobicoke North,75 TANDRIDGE CRES,10,221,2019-10-28,54,Evaluation needs to be conducted in 1 year,19,2.0,2.0,4.0,1.0,2.0,2.0,2.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,,W0131,43.728881268,-79.54672209600001,301020.19,4842993.242
-891870,4155363,2018.0,2019.0,1968.0,PRIVATE,2,Etobicoke Centre,25 WIDDICOMBE HILL,11,122,2019-10-28,80,Evaluation needs to be conducted in 2 years,20,5.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,5.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,W0222,43.679208785,-79.548319808,300888.16,4837475.011
-891871,4155362,2018.0,2019.0,1968.0,PRIVATE,2,Etobicoke Centre,35 WIDDICOMBE HILL,11,121,2019-10-28,81,Evaluation needs to be conducted in 2 years,20,5.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,W0222,43.678668475,-79.550611679,300703.359,4837415.062
-891872,4156532,2017.0,2019.0,1975.0,PRIVATE,2,Etobicoke Centre,53 WIDDICOMBE HILL BLVD,18,139,2019-10-28,89,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,5.0,5.0,,5.0,3.0,5.0,W0222,43.67822939,-79.5525004391,300551.32,4837365.403
-891873,4293577,2018.0,2019.0,1975.0,PRIVATE,2,Etobicoke Centre,57 WIDDICOMBE HILL BLVD,18,139,2019-10-28,91,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,5.0,5.0,5.0,,5.0,3.0,5.0,W0222,43.677987512799994,-79.5535461519,300466.998,4837338.574
-891874,4155889,2017.0,2019.0,1974.0,PRIVATE,2,Etobicoke Centre,73 WIDDICOMBE HILL BLVD,17,228,2019-10-28,82,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,W0222,43.677126322,-79.556808045,300130.803,4837178.874
-891875,4155793,2017.0,2019.0,1973.0,PRIVATE,2,Etobicoke Centre,120 WIDDICOMBE HILL BLVD,17,233,2019-10-28,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,3.0,4.0,4.0,4.0,4.0,,4.0,4.0,4.0,4.0,3.0,3.0,5.0,4.0,3.0,4.0,W0222,43.676467695,-79.559152675,300081.20399999997,4837170.804
-891876,4155927,2017.0,2019.0,1971.0,PRIVATE,1,Etobicoke North,10 WILLOWRIDGE RD,19,328,2019-10-28,61,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,,W0137,,,299268.886,4837017.142
-891877,4155658,2017.0,2019.0,1972.0,TCHC,1,Etobicoke North,44 WILLOWRIDGE RD,14,236,2019-10-28,64,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,W0137,43.675646313,-79.569749625,299172.333,4837117.833000001
-891878,4153866,2017.0,2019.0,1941.0,PRIVATE,15,Don Valley West,2 DU MAURIER BLVD,4,28,2019-10-28,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,,3.0,3.0,,N1525,43.7259246541,-79.4020447269,312676.45399999997,4842667.366
-891879,4153864,2017.0,2019.0,1941.0,PRIVATE,15,Don Valley West,3 DU MAURIER BLVD,4,37,2019-10-28,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,3.0,4.0,5.0,,3.0,3.0,,N1525,43.7256008055,-79.4018955473,312688.515,4842631.402
-891880,4155417,2017.0,2019.0,1965.0,PRIVATE,1,Etobicoke North,10 BLACKFRIAR AVE,5,61,2019-10-28,93,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,4.0,5.0,4.0,,5.0,4.0,,5.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,4.0,,W0133,43.69407154,-79.562734454,299737.70399999997,4839124.125
-891881,4153865,2017.0,2019.0,1941.0,PRIVATE,15,Don Valley West,5 DU MAURIER BLVD,4,41,2019-10-28,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,,N1525,43.725849397,-79.401345968,312732.762,4842659.072
-891882,4155444,2017.0,2019.0,1969.0,PRIVATE,1,Etobicoke North,70 REXDALE BLVD,6,100,2019-10-28,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,,W0130,43.713516909300004,-79.5613583242,299840.021,4841286.219
-891883,4155706,2017.0,2019.0,1969.0,PRIVATE,1,Etobicoke North,21 RICHGROVE DR,11,129,2019-10-28,87,Evaluation needs to be conducted in 3 years,19,4.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,,W0137,,,299512.011,4837158.651000001
-891884,4156153,2017.0,2019.0,1969.0,PRIVATE,1,Etobicoke North,7 RICHGROVE DR,11,129,2019-10-28,88,Evaluation needs to be conducted in 3 years,20,4.0,4.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,5.0,W0137,,,299527.406,4837162.739
-891885,4153870,2017.0,2019.0,1959.0,PRIVATE,15,Don Valley West,56 RANLEIGH AVE,4,74,2019-10-28,82,Evaluation needs to be conducted in 2 years,18,4.0,5.0,4.0,4.0,4.0,3.0,,4.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,3.0,4.0,,N1525,43.7282518882,-79.4012252952,312742.165,4842925.987
-891886,4153869,2017.0,2019.0,1950.0,PRIVATE,15,Don Valley West,153 RANLEIGH AVE,4,28,2019-10-28,81,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,4.0,5.0,4.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,N1525,43.72825161390001,-79.39810823239999,312993.279,4842926.261
-891887,4153808,2017.0,2019.0,1959.0,PRIVATE,15,Don Valley West,57 RAWLINSON AVE,4,36,2019-10-28,75,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,3.0,4.0,5.0,,5.0,,3.0,4.0,5.0,5.0,4.0,4.0,2.0,4.0,3.0,2.0,,N1537,43.7096715692,-79.3877050261,313834.207,4840863.223
-891888,4155464,2017.0,2019.0,1989.0,SOCIAL HOUSING,1,Etobicoke North,88 HUMBER COLLEGE BLVD,4,119,2019-10-28,72,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,5.0,4.0,3.0,3.0,4.0,,4.0,4.0,5.0,3.0,4.0,3.0,,3.0,2.0,5.0,W0122,43.7317348465,-79.5986539334,296837.089,4843312.966
-891889,4155465,2017.0,2019.0,1984.0,TCHC,1,Etobicoke North,10 HUMBERLINE DR,13,179,2019-10-28,78,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,5.0,,4.0,3.0,5.0,4.0,4.0,4.0,,3.0,3.0,,W0125,43.7312483321,-79.61180489510001,295777.595,4843260.265
-891890,4155782,2017.0,2019.0,1965.0,TCHC,1,Etobicoke North,101 KENDLETON DR,7,221,2019-10-28,65,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,,2.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,W0123,43.7383578677,-79.580925169,298266.007,4844047.228
-891891,4155666,2017.0,2019.0,1974.0,PRIVATE,1,Etobicoke North,46 PANORAMA CRT,19,222,2019-10-28,66,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,3.0,3.0,4.0,3.0,4.0,4.0,,3.0,4.0,3.0,4.0,3.0,3.0,4.0,4.0,2.0,2.0,W0124,43.7482299219,-79.5783390119,298475.409,4845143.751
-891892,4155450,2017.0,2019.0,1976.0,PRIVATE,1,Etobicoke North,50 PANORAMA CRT,19,223,2019-10-28,68,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,4.0,3.0,3.0,4.0,4.0,,3.0,3.0,3.0,4.0,2.0,3.0,4.0,4.0,3.0,,W0124,43.748167936099996,-79.577118319,298573.714,4845136.771000001
-891893,4153806,2017.0,2019.0,1970.0,PRIVATE,15,Don Valley West,299 ROEHAMPTON AVE,12,224,2019-10-28,93,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,3.0,4.0,5.0,5.0,4.0,5.0,,3.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,,N1537,,,313710.32399999996,4840865.462
-891894,4261706,2017.0,2019.0,2015.0,PRIVATE,15,Don Valley West,305 ROEHAMPTON AVE,16,221,2019-10-28,97,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,,5.0,5.0,3.0,5.0,,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,N1537,43.709676333000004,-79.388685206,313732.785,4840864.055
-891895,4155995,2017.0,2019.0,1960.0,PRIVATE,1,Etobicoke North,27 BERGAMOT AVE,7,130,2019-10-28,63,Evaluation needs to be conducted in 1 year,19,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,4.0,5.0,3.0,2.0,3.0,3.0,1.0,3.0,,W0130,43.715262532,-79.55665061100001,300219.248,4841480.8610000005
-891896,4269261,2018.0,2019.0,2007.0,SOCIAL HOUSING,1,Etobicoke North,68 BERGAMOT AVE,4,68,2019-10-28,84,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,,4.0,2.0,5.0,5.0,5.0,5.0,,5.0,3.0,4.0,W0130,43.716943461999996,-79.557813582,300125.675,4841667.635
-891897,4154732,2017.0,2019.0,1970.0,PRIVATE,15,Don Valley West,740 YORK MILLS RD,19,137,2019-10-28,77,Evaluation needs to be conducted in 2 years,20,4.0,3.0,5.0,3.0,4.0,3.0,4.0,5.0,5.0,5.0,4.0,4.0,5.0,3.0,3.0,3.0,5.0,3.0,2.0,4.0,N1522,43.753559278999994,-79.362054281,315892.973,4845742.888
-891898,4154742,2017.0,2019.0,1972.0,PRIVATE,15,Don Valley West,745 YORK MILLS RD,18,138,2019-10-28,86,Evaluation needs to be conducted in 3 years,19,5.0,3.0,5.0,5.0,5.0,3.0,5.0,4.0,5.0,,4.0,5.0,5.0,5.0,3.0,3.0,5.0,5.0,3.0,4.0,N1524,43.752346265,-79.361904373,315905.269,4845608.147
-891899,4154731,2017.0,2019.0,1970.0,PRIVATE,15,Don Valley West,750 YORK MILLS RD,19,137,2019-10-28,82,Evaluation needs to be conducted in 2 years,20,4.0,3.0,5.0,4.0,4.0,5.0,4.0,5.0,5.0,3.0,4.0,4.0,5.0,3.0,4.0,4.0,5.0,4.0,2.0,5.0,N1522,43.75370469,-79.360849641,315989.952,4845759.204
-891900,4154743,2017.0,2019.0,1970.0,PRIVATE,15,Don Valley West,755 YORK MILLS RD,18,138,2019-10-28,88,Evaluation needs to be conducted in 3 years,19,5.0,3.0,5.0,4.0,4.0,5.0,5.0,5.0,5.0,,4.0,4.0,5.0,5.0,3.0,4.0,5.0,5.0,4.0,4.0,N1524,43.752378601000004,-79.360756664,315997.687,4845611.893
-891901,4626360,2019.0,2018.0,2019.0,PRIVATE,8,Eglinton-Lawrence,25 MONTGOMERY AVE,27,235,2019-09-09,99,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,N0833,,,312881.507,4840828.842
-891902,4639099,2019.0,2018.0,2018.0,PRIVATE,5,York South-Weston,22 JOHN ST,31,369,2019-09-09,99,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,,5.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,W0524,43.701860896999996,-79.517659198,303360.88899999997,4839990.558
-891903,4153052,2020.0,2018.0,1918.0,PRIVATE,4,Parkdale-High Park,320 RONCESVALLES AVE,4,16,2019-08-28,51,Evaluation needs to be conducted in 1 year,15,3.0,2.0,3.0,3.0,,2.0,,3.0,,,2.0,2.0,,2.0,3.0,2.0,2.0,3.0,3.0,3.0,S0432,43.65001845689999,-79.4508259143,308751.234,4834231.062
-891904,4569135,2019.0,2018.0,1956.0,PRIVATE,14,Toronto-Danforth,135 SAMMON AVE,3,11,2019-07-09,53,Evaluation needs to be conducted in 1 year,16,2.0,3.0,2.0,2.0,3.0,2.0,,3.0,,3.0,3.0,2.0,4.0,3.0,2.0,2.0,,3.0,3.0,,S1422,43.6850791771,-79.3423568405,317493.881,4838136.9180000005
-891905,4604174,,2018.0,,PRIVATE,14,Toronto-Danforth,160 FLOYD AVE,3,12,2019-07-05,49,Building Audit,14,2.0,2.0,2.0,2.0,,3.0,,2.0,,2.0,2.0,2.0,4.0,3.0,3.0,2.0,,3.0,,,S1421,43.687577379,-79.34848109100001,316999.391,4838414.515
-891906,4155460,2017.0,2018.0,1970.0,PRIVATE,1,Etobicoke North,40 STEVENSON RD,13,176,2019-04-09,72,Evaluation needs to be conducted in 2 years,17,4.0,3.0,3.0,3.0,4.0,3.0,4.0,4.0,3.0,,3.0,5.0,4.0,4.0,3.0,4.0,,4.0,3.0,,W0123,43.744225113999995,-79.585660851,297884.978,4844700.386
-891907,4153924,2017.0,2018.0,1965.0,PRIVATE,12,Toronto-St. Paul's,95 LAWTON BLVD,7,60,2019-04-09,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,5.0,4.0,3.0,3.0,3.0,4.0,3.0,,S1232,43.693346588000004,-79.39645967439999,313130.915,4839048.603999999
-891908,4365726,2018.0,2018.0,1976.0,PRIVATE,4,Parkdale-High Park,2360 DUNDAS ST W,29,638,2019-04-03,71,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,5.0,3.0,3.0,3.0,4.0,,4.0,3.0,5.0,3.0,3.0,3.0,,4.0,2.0,4.0,S0429,43.657073675,-79.452365262,308621.66,4835039.566000001
-891909,4156558,2018.0,2018.0,1970.0,PRIVATE,24,Scarborough-Guildwood,3967 LAWRENCE AVE E,10,102,2019-04-03,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,5.0,,4.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,,E2431,43.763967883199996,-79.20320648319999,328680.928,4846931.64
-891910,4365723,2018.0,2018.0,1976.0,PRIVATE,4,Parkdale-High Park,2350 DUNDAS ST W,29,457,2019-04-03,71,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,5.0,3.0,3.0,3.0,4.0,,4.0,3.0,5.0,3.0,3.0,3.0,,4.0,2.0,4.0,S0429,43.656991643999994,-79.45228586,308623.625,4835029.533
-891911,4154248,2017.0,2018.0,1972.0,PRIVATE,7,Humber River-Black Creek,3400 WESTON RD,27,263,2019-04-01,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,4.0,,3.0,3.0,3.0,4.0,3.0,3.0,4.0,2.0,3.0,,W0727,43.749810628999995,-79.543432658,301286.482,4845318.212
-891912,4153421,2017.0,2018.0,1805.0,PRIVATE,11,University-Rosedale,160 HURON ST,5,69,2019-03-28,75,Evaluation needs to be conducted in 2 years,16,3.0,5.0,5.0,2.0,3.0,3.0,,4.0,,,3.0,3.0,5.0,4.0,3.0,5.0,4.0,4.0,4.0,,S1144,43.6570614157,-79.3980740042,313005.659,4835017.2639999995
-891913,4155200,2017.0,2018.0,1950.0,SOCIAL HOUSING,4,Parkdale-High Park,495 RIVERSIDE DR,3,25,2019-03-27,81,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,S0425,43.6481742891,-79.4902420295,305571.54,4834025.1389999995
-891914,4155285,2017.0,2018.0,1950.0,PRIVATE,3,Etobicoke-Lakeshore,6 KINGS POINT DR,3,16,2019-03-26,75,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,3.0,,4.0,,5.0,4.0,3.0,5.0,3.0,3.0,3.0,4.0,4.0,3.0,,W0327,43.639609569499996,-79.49364600310001,305296.993,4833073.615
-891915,4152928,2017.0,2018.0,1924.0,PRIVATE,4,Parkdale-High Park,1778 BLOOR ST W,3,21,2019-03-26,67,Evaluation needs to be conducted in 2 years,14,3.0,3.0,3.0,3.0,5.0,3.0,,3.0,,,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,,,S0428,43.654816958999994,-79.460940647,307934.791,4834764.694
-891916,4155241,,2018.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,183 BERRY RD,4,50,2019-03-26,62,Evaluation needs to be conducted in 1 year,17,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,2.0,3.0,3.0,3.0,2.0,3.0,,W0329,43.636390118,-79.4911570627,305497.797,4832715.966
-891917,4152916,2017.0,2018.0,1935.0,PRIVATE,4,Parkdale-High Park,2526 BLOOR ST W,4,19,2019-03-25,69,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,2.0,4.0,,4.0,,,4.0,2.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,,S0430,43.648016588999994,-79.48963831,305608.67100000003,4834006.596
-891918,4155501,2017.0,2018.0,1970.0,PRIVATE,3,Etobicoke-Lakeshore,2519 LAKE SHORE BLVD W,4,44,2019-03-25,71,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,3.0,4.0,,3.0,,4.0,3.0,4.0,5.0,4.0,2.0,3.0,4.0,3.0,3.0,,W0336,43.610690629,-79.48977037,305628.08,4829849.455
-891919,4155827,2018.0,2018.0,1944.0,PRIVATE,4,Parkdale-High Park,2559 BLOOR ST W,4,27,2019-03-25,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,4.0,3.0,5.0,3.0,4.0,4.0,2.0,2.0,3.0,,S0425,43.647685867,-79.490964697,305519.44899999996,4833990.2530000005
-891920,4155477,2017.0,2018.0,1958.0,PRIVATE,3,Etobicoke-Lakeshore,2355 LAKE SHORE BLVD W,4,86,2019-03-25,70,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,3.0,3.0,,2.0,3.0,,3.0,4.0,3.0,4.0,4.0,4.0,,3.0,4.0,,W0336,43.61606574100001,-79.48769627729999,305777.4,4830458.074
-891921,4155500,2017.0,2018.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,2521 LAKE SHORE BLVD W,3,37,2019-03-25,69,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,4.0,2.0,,3.0,,,3.0,3.0,5.0,4.0,4.0,4.0,,3.0,4.0,,W0336,43.610183173900005,-79.4899009077,305599.525,4829804.528
-891922,4156027,2017.0,2018.0,1910.0,PRIVATE,3,Etobicoke-Lakeshore,2523 LAKE SHORE BLVD W,3,10,2019-03-25,76,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,4.0,,4.0,,3.0,,,3.0,3.0,5.0,4.0,4.0,4.0,,3.0,4.0,,W0336,43.6102058206,-79.4892486213,305652.179,4829807.05
-891923,4155499,2017.0,2018.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,2529 LAKE SHORE BLVD W,4,61,2019-03-25,75,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,2.0,,3.0,,,4.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,,W0336,43.6100510941,-79.48818596619999,305737.962,4829789.871
-891924,4155275,2017.0,2018.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,16 RIVERWOOD PKWY,5,45,2019-03-25,71,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,4.0,4.0,3.0,,3.0,5.0,3.0,4.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,,W0327,43.6390524323,-79.4890660176,305666.544,4833011.7530000005
-891925,4155273,,2018.0,1961.0,PRIVATE,3,Etobicoke-Lakeshore,28 RIVERWOOD PKWY,7,58,2019-03-25,60,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,5.0,3.0,2.0,3.0,4.0,3.0,2.0,2.0,3.0,2.0,3.0,,W0327,43.6393299361,-79.4902695407,305569.433,4833042.572
-891926,4253833,2018.0,2018.0,1960.0,PRIVATE,4,Parkdale-High Park,1 CLAUDE AVE,3,30,2019-03-24,70,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,3.0,3.0,3.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,3.0,,4.0,,,S0434,43.639823941,-79.451749578,308677.11199999996,4833099.385
-891927,4155488,2017.0,2018.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,2532 LAKE SHORE BLVD W,4,46,2019-03-23,75,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,3.0,2.0,,4.0,,,4.0,3.0,3.0,4.0,4.0,4.0,,4.0,4.0,,W0336,43.6109821847,-79.4903809388,305560.767,4829893.29
-891928,4250094,2018.0,2018.0,1922.0,PRIVATE,4,Parkdale-High Park,81 WILSON PARK RD,3,16,2019-03-22,50,Building Audit,14,2.0,2.0,2.0,2.0,,3.0,,2.0,,,3.0,3.0,3.0,3.0,2.0,2.0,,3.0,3.0,,S0436,43.6391098783,-79.44211512140001,309454.75899999996,4833019.6
-891929,4155284,2018.0,2018.0,1953.0,PRIVATE,3,Etobicoke-Lakeshore,8 KINGS POINT DR,5,16,2019-03-21,73,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,3.0,4.0,3.0,,4.0,,,4.0,3.0,5.0,4.0,4.0,3.0,3.0,3.0,4.0,,W0327,43.6396821871,-79.4933367622,305321.945,4833081.683999999
-891930,4155270,2017.0,2018.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,4 HILL HEIGHTS RD,4,33,2019-03-21,66,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,4.0,3.0,5.0,,3.0,,,3.0,3.0,5.0,2.0,2.0,2.0,5.0,2.0,3.0,,W0327,43.6389180008,-79.4935703818,305303.092,4832996.786
-891931,4152911,2017.0,2018.0,1960.0,PRIVATE,4,Parkdale-High Park,111 RUNNYMEDE RD,4,16,2019-03-21,66,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,4.0,3.0,3.0,,3.0,,4.0,4.0,2.0,5.0,3.0,3.0,4.0,,3.0,3.0,,S0430,43.6505719581,-79.4757413114,306741.31899999996,4834291.715
-891932,4155459,2017.0,2018.0,1968.0,PRIVATE,1,Etobicoke North,2548 KIPLING AVE,7,153,2019-03-21,72,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,4.0,5.0,3.0,3.0,4.0,4.0,4.0,3.0,,W0123,43.745263651,-79.58396804600001,298021.44,4844815.616
-891933,4152903,2017.0,2018.0,1940.0,PRIVATE,4,Parkdale-High Park,2555 BLOOR ST W,4,34,2019-03-20,74,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,3.0,3.0,,4.0,,3.0,5.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,S0430,43.6476402456,-79.4906914801,305535.289,4833965.806
-891934,4152816,2017.0,2018.0,1960.0,PRIVATE,24,Scarborough-Guildwood,550 SCARBOROUGH GOLF CLUB RD,12,200,2019-03-20,68,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,2.0,3.0,3.0,4.0,4.0,,4.0,3.0,4.0,3.0,4.0,3.0,4.0,4.0,1.0,,E2430,43.7607487105,-79.2171129347,327562.47,4846570.1219999995
-891935,4155212,2017.0,2018.0,1949.0,PRIVATE,3,Etobicoke-Lakeshore,2692-2694 BLOOR ST W,4,40,2019-03-20,72,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,3.0,4.0,3.0,,4.0,,,4.0,3.0,5.0,3.0,4.0,4.0,,3.0,3.0,,W0322,43.6502825734,-79.4978680746,304956.297,4834259.305
-891936,4476608,2018.0,2018.0,1925.0,PRIVATE,19,Beaches-East York,987 KINGSTON RD,3,15,2019-03-20,77,Evaluation needs to be conducted in 2 years,15,4.0,4.0,3.0,4.0,4.0,4.0,,4.0,,4.0,4.0,3.0,,4.0,4.0,4.0,,4.0,4.0,,S1940,43.6803978497,-79.28612456399999,322028.70399999997,4837626.949
-891937,4476597,2018.0,2018.0,1925.0,PRIVATE,19,Beaches-East York,983 KINGSTON RD,3,14,2019-03-20,76,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,4.0,4.0,3.0,,,,4.0,4.0,3.0,,3.0,4.0,4.0,,4.0,4.0,,S1940,43.680349197299996,-79.28634449409999,322010.985,4837621.499
-891938,4155207,,2018.0,1955.0,PRIVATE,4,Parkdale-High Park,585 JANE ST,4,25,2019-03-20,65,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,4.0,3.0,3.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S0422,43.6645529032,-79.4903043858,305566.283,4835844.669
-891939,4152812,2017.0,2018.0,1995.0,SOCIAL HOUSING,24,Scarborough-Guildwood,525 MARKHAM RD,8,115,2019-03-20,75,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,,3.0,4.0,2.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,E2430,43.756754208000004,-79.223973575,327027.68100000004,4846037.557
-891940,4152810,2017.0,2018.0,1969.0,PRIVATE,24,Scarborough-Guildwood,421 MARKHAM RD,12,159,2019-03-20,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2430,43.7506077851,-79.2210328403,327250.61699999997,4845442.448
-891941,4152809,2017.0,2018.0,1970.0,PRIVATE,24,Scarborough-Guildwood,419 MARKHAM RD,12,160,2019-03-20,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,E2430,43.750117696000004,-79.220863337,327264.45,4845388.046
-891942,4156028,2017.0,2018.0,1961.0,PRIVATE,25,Scarborough-Rouge Park,207 MORNINGSIDE AVE,5,107,2019-03-20,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2537,43.766129136,-79.184866277,330136.912,4847166.93
-891943,4152847,2017.0,2018.0,1960.0,PRIVATE,24,Scarborough-Guildwood,290 MORNINGSIDE AVE,6,107,2019-03-20,61,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,3.0,4.0,2.0,3.0,2.0,,2.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,E2428,43.7717382496,-79.18790554649999,329909.622,4847799.407
-891944,4152817,2017.0,2018.0,1963.0,PRIVATE,24,Scarborough-Guildwood,70 STEVENVALE DR,6,100,2019-03-20,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,2.0,4.0,4.0,4.0,4.0,,4.0,3.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,E2430,43.758941388800004,-79.2213676768,327220.55600000004,4846368.19
-891945,4152843,2017.0,2018.0,1994.0,SOCIAL HOUSING,24,Scarborough-Guildwood,228 GALLOWAY RD,5,60,2019-03-20,81,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,,E2428,43.767932495,-79.197118281,329169.24600000004,4847374.811000001
-891946,4156075,2017.0,2018.0,1975.0,PRIVATE,25,Scarborough-Rouge Park,115 GENERATION BLVD,3,12,2019-03-20,78,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,3.0,4.0,,5.0,,,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,E2530,43.803598443599995,-79.1642967087,331796.018,4851346.352
-891947,4156074,2017.0,2018.0,1975.0,PRIVATE,25,Scarborough-Rouge Park,111 GENERATION BLVD,3,12,2019-03-20,78,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,3.0,4.0,,5.0,,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,E2530,43.8038619612,-79.1641599515,331811.235,4851362.031
-891948,4156416,2017.0,2018.0,1975.0,PRIVATE,25,Scarborough-Rouge Park,109 GENERATION BLVD,3,12,2019-03-20,78,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,E2530,43.8040886838,-79.1642759209,331808.468,4851373.096
-891949,4152889,2017.0,2018.0,1975.0,PRIVATE,25,Scarborough-Rouge Park,95-115 GENERATION BLVD,3,108,2019-03-20,80,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,3.0,4.0,,5.0,,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,E2530,43.803770363999995,-79.164808425,331804.318,4851384.163
-891950,4156417,2017.0,2018.0,1975.0,PRIVATE,25,Scarborough-Rouge Park,41 GENERATION BLVD,3,12,2019-03-20,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,3.0,4.0,4.0,5.0,,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,E2530,43.8042493963,-79.1676352467,331492.953,4851411.033
-891951,4156242,2017.0,2018.0,1985.0,SOCIAL HOUSING,24,Scarborough-Guildwood,4201 KINGSTON RD,3,41,2019-03-20,69,Evaluation needs to be conducted in 2 years,17,4.0,3.0,3.0,3.0,4.0,3.0,,3.0,,,4.0,4.0,5.0,4.0,3.0,3.0,3.0,4.0,2.0,4.0,E2432,43.759407247,-79.19610969600001,329252.877,4846512.146000001
-891952,4152838,2017.0,2018.0,1985.0,SOCIAL HOUSING,24,Scarborough-Guildwood,4201-4203 KINGSTON RD,3,39,2019-03-20,68,Evaluation needs to be conducted in 2 years,17,3.0,4.0,3.0,3.0,4.0,4.0,,3.0,,,3.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,2.0,4.0,E2432,43.760255326199996,-79.1959527881,329266.458,4846521.28
-891953,4155205,2017.0,2018.0,1959.0,PRIVATE,4,Parkdale-High Park,4029 OLD DUNDAS ST,8,29,2019-03-20,59,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,5.0,3.0,2.0,2.0,3.0,2.0,2.0,,S0421,43.6639708719,-79.5021353711,304612.07,4835780.002
-891954,4153685,2017.0,2018.0,1917.0,PRIVATE,19,Beaches-East York,97 LEE AVE,3,10,2019-03-20,70,Evaluation needs to be conducted in 2 years,16,3.0,4.0,3.0,3.0,4.0,4.0,,3.0,,4.0,3.0,4.0,,4.0,3.0,3.0,4.0,4.0,3.0,,S1939,43.6711166025,-79.29799553229999,321074.04,4836593.47
-891955,4154259,2017.0,2018.0,1984.0,TCHC,7,Humber River-Black Creek,3101 WESTON RD,18,176,2019-03-19,57,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,,3.0,3.0,3.0,3.0,1.0,3.0,3.0,3.0,3.0,,W0733,43.733312244,-79.537225843,301785.494,4843485.091
-891956,4153186,2017.0,2018.0,1958.0,PRIVATE,11,University-Rosedale,50 WALMER RD,4,35,2019-03-19,73,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,4.0,3.0,,3.0,4.0,4.0,4.0,4.0,5.0,2.0,3.0,3.0,,3.0,4.0,,S1126,43.669364101000006,-79.407141875,312272.44399999996,4836384.134
-891957,4156225,2017.0,2018.0,1950.0,PRIVATE,2,Etobicoke Centre,4754 DUNDAS ST W,4,14,2019-03-19,71,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,4.0,3.0,3.0,,3.0,,,4.0,3.0,4.0,4.0,4.0,3.0,,4.0,3.0,,W0229,43.652203577,-79.525983776,302683.101,4834465.154
-891958,4153409,2017.0,2018.0,1970.0,PRIVATE,10,Spadina-Fort York,164 GRANGE AVE,3,24,2019-03-19,53,Evaluation needs to be conducted in 1 year,15,2.0,2.0,2.0,3.0,2.0,3.0,,2.0,,,3.0,3.0,4.0,2.0,3.0,3.0,3.0,3.0,,,S1023,43.651378351400005,-79.40116552180001,312757.065,4834385.593
-891959,4153403,2017.0,2018.0,1966.0,PRIVATE,10,Spadina-Fort York,50 STEPHANIE ST,24,284,2019-03-19,79,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,,4.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,,S1024,43.651457871000005,-79.39239786,313464.06,4834396.283
-891960,4153224,2017.0,2018.0,1956.0,PRIVATE,11,University-Rosedale,169 ST GEORGE ST,9,52,2019-03-19,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,4.0,3.0,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,,S1127,43.670881099999995,-79.400783867,312784.974,4836553.242
-891961,4156756,2017.0,2018.0,1989.0,TCHC,5,York South-Weston,2468 EGLINTON AVE W,21,210,2019-03-19,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,,W0533,43.69202835,-79.468140737,307352.43,4838898.385
-891962,4153922,2018.0,2018.0,1929.0,PRIVATE,12,Toronto-St. Paul's,57 LAWTON BLVD,4,12,2019-03-18,74,Evaluation needs to be conducted in 2 years,14,3.0,4.0,4.0,3.0,3.0,3.0,,5.0,,,3.0,4.0,5.0,4.0,3.0,4.0,,4.0,,,S1232,43.691956596000004,-79.39570523,313191.661,4838895.195
-891963,4153899,2017.0,2018.0,1935.0,PRIVATE,12,Toronto-St. Paul's,448 SPADINA RD,4,32,2019-03-18,68,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,,4.0,3.0,3.0,3.0,3.0,4.0,3.0,,4.0,3.0,,S1230,43.689301533599995,-79.4133235428,311771.976,4838597.666999999
-891964,4154520,2017.0,2018.0,1965.0,PRIVATE,8,Eglinton-Lawrence,1 MARQUETTE AVE,4,24,2019-03-18,64,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0823,43.733771348000005,-79.433653399,310128.895,4843537.493
-891965,4156167,2017.0,2018.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,92 JAMES ST,3,34,2019-03-18,76,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,4.0,4.0,3.0,,4.0,,,3.0,4.0,5.0,4.0,3.0,3.0,,4.0,5.0,,W0334,43.5899805571,-79.5423873901,301361.733,4827560.91
-891966,4153907,2017.0,2018.0,1920.0,PRIVATE,12,Toronto-St. Paul's,321 LONSDALE RD,5,12,2019-03-18,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,3.0,4.0,3.0,,4.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1231,43.6886182692,-79.4117661869,311897.61,4838521.893
-891967,4153900,2017.0,2018.0,1957.0,PRIVATE,12,Toronto-St. Paul's,340 LONSDALE RD,6,36,2019-03-18,67,Evaluation needs to be conducted in 2 years,18,3.0,3.0,5.0,3.0,3.0,2.0,,4.0,5.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,,S1230,43.688729507299996,-79.41361447979999,311748.58,4838534.089
-891968,4153748,2017.0,2018.0,1960.0,PRIVATE,12,Toronto-St. Paul's,42 GLEN ELM AVE,3,39,2019-03-18,96,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,5.0,4.0,4.0,5.0,5.0,5.0,,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,,S1233,43.691967364300005,-79.3928327445,313423.481,4838895.74
-891969,4153747,2017.0,2018.0,1954.0,PRIVATE,12,Toronto-St. Paul's,49 GLEN ELM AVE,4,71,2019-03-18,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,5.0,4.0,,3.0,4.0,4.0,4.0,4.0,5.0,4.0,3.0,4.0,3.0,4.0,3.0,,S1233,43.691400980299996,-79.3925441035,313446.82899999997,4838832.843
-891970,4153898,2017.0,2018.0,1962.0,PRIVATE,12,Toronto-St. Paul's,464 SPADINA RD,4,25,2019-03-18,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,2.0,2.0,,4.0,,,3.0,3.0,3.0,2.0,4.0,3.0,,4.0,3.0,,S1230,43.6896667969,-79.4134939158,311758.202,4838638.233
-891971,4153749,2017.0,2018.0,1934.0,PRIVATE,12,Toronto-St. Paul's,2 GLEN ELM AVE,6,49,2019-03-18,86,Evaluation needs to be conducted in 3 years,17,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,,5.0,3.0,5.0,4.0,5.0,4.0,,4.0,4.0,,S1233,43.69150698520001,-79.3947793757,313266.618,4838844.38
-891972,4154564,2017.0,2018.0,1953.0,PRIVATE,8,Eglinton-Lawrence,30 COVINGTON RD,4,26,2019-03-15,76,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,3.0,4.0,4.0,,4.0,,,3.0,4.0,5.0,4.0,4.0,3.0,,4.0,4.0,,N0823,43.720608211999995,-79.43290764470001,310190.42100000003,4842074.228999999
-891973,4153169,2017.0,2018.0,1920.0,PRIVATE,11,University-Rosedale,723 BLOOR ST W,4,16,2019-03-15,76,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,,,4.0,4.0,5.0,3.0,4.0,3.0,,3.0,3.0,,S1133,43.6633624229,-79.4182682286,311376.156,4835715.537
-891974,4153464,,2018.0,1932.0,PRIVATE,11,University-Rosedale,469 PALMERSTON BLVD,3,10,2019-03-15,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,3.0,,4.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1133,43.661625125200004,-79.4121412383,311870.48699999996,4835523.005
-891975,4153172,2018.0,2018.0,1911.0,PRIVATE,11,University-Rosedale,532 PALMERSTON BLVD,4,21,2019-03-15,66,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,4.0,2.0,3.0,,4.0,,,3.0,3.0,5.0,2.0,3.0,3.0,3.0,3.0,4.0,,S1133,43.663789313100004,-79.4136043966,311752.224,4835763.318
-891976,4155728,2018.0,2018.0,1970.0,PRIVATE,11,University-Rosedale,318 CLINTON ST,3,12,2019-03-15,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,,,3.0,3.0,5.0,2.0,3.0,3.0,3.0,2.0,3.0,,S1133,43.662511226999996,-79.417002758,311478.057,4835622.035
-891977,4155560,2017.0,2018.0,1968.0,PRIVATE,3,Etobicoke-Lakeshore,6 TWENTY FOURTH ST,7,81,2019-03-15,89,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,4.0,4.0,5.0,,5.0,5.0,4.0,4.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,,W0334,43.5975229121,-79.52326171050001,302906.316,4828398.191000001
-891978,4154308,2017.0,2018.0,1950.0,PRIVATE,5,York South-Weston,2425 KEELE ST,3,12,2019-03-15,77,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,3.0,,4.0,,4.0,,,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0523,43.7110804111,-79.4781906555,306542.034,4841013.806
-891979,4154305,2017.0,2018.0,1954.0,PRIVATE,5,York South-Weston,2419 KEELE ST,3,12,2019-03-15,81,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,5.0,,3.0,,,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0523,43.710244385200006,-79.4780441622,306553.864,4840920.932
-891980,4154360,2017.0,2018.0,1984.0,PRIVATE,5,York South-Weston,2620 KEELE ST,3,11,2019-03-15,74,Evaluation needs to be conducted in 2 years,14,4.0,3.0,4.0,4.0,,4.0,,3.0,,,4.0,3.0,5.0,4.0,4.0,3.0,,4.0,3.0,,W0522,43.719614506999996,-79.4809196284,306321.905,4841961.835
-891981,4245705,2017.0,2018.0,1967.0,PRIVATE,3,Etobicoke-Lakeshore,359 KIPLING AVE,3,12,2019-03-15,76,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,3.0,4.0,,3.0,,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,3.0,,W0335,43.600993851800006,-79.5179299016,303336.876,4828783.712
-891982,4154340,2017.0,2018.0,1994.0,SOCIAL HOUSING,5,York South-Weston,1630 LAWRENCE AVE W,8,100,2019-03-15,75,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,3.0,,W0526,43.706166975900004,-79.4914250122,305475.57300000003,4840467.787
-891983,4155528,2019.0,2018.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,20 FOURTEENTH ST,3,12,2019-03-15,81,Evaluation needs to be conducted in 2 years,14,4.0,5.0,4.0,4.0,,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,4.0,,W0335,43.600000403100005,-79.5135618333,303689.494,4828673.281
-891984,4155551,2017.0,2018.0,1963.0,PRIVATE,3,Etobicoke-Lakeshore,240 LAKE PROMENADE,7,118,2019-03-15,74,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,3.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,W0334,43.589265093,-79.53139518100001,302249.05100000004,4827481.981000001
-891985,4155461,2017.0,2018.0,1960.0,PRIVATE,1,Etobicoke North,1865 MARTIN GROVE RD,12,92,2019-03-15,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,5.0,4.0,4.0,3.0,3.0,,3.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,2.0,,W0123,43.7425445347,-79.5934989026,297253.73699999996,4844513.426
-891986,4155221,2017.0,2018.0,1970.0,PRIVATE,3,Etobicoke-Lakeshore,620 EVANS AVE,3,25,2019-03-15,67,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,,3.0,3.0,3.0,5.0,4.0,3.0,3.0,3.0,4.0,4.0,,W0330,43.610802275,-79.550398922,300715.86600000004,4829875.377
-891987,4155526,2017.0,2018.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,68 FIFTEENTH ST,3,23,2019-03-15,76,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,3.0,3.0,,4.0,,,3.0,4.0,4.0,4.0,4.0,4.0,,3.0,4.0,5.0,W0335,43.6018725092,-79.5155664231,303527.693,4828881.294
-891988,4155527,2017.0,2018.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,66 FIFTEENTH ST,3,23,2019-03-15,75,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,3.0,3.0,,4.0,,,3.0,4.0,4.0,4.0,4.0,4.0,,3.0,4.0,,W0335,43.6016913741,-79.5154841711,303534.33,4828861.169
-891989,4155542,2017.0,2018.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,44 ARCADIAN CRCL,3,13,2019-03-15,79,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,,3.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0334,43.593328004600004,-79.5267034096,302628.294,4827932.2639999995
-891990,4153911,2017.0,2018.0,1956.0,PRIVATE,12,Toronto-St. Paul's,587 AVENUE RD,3,22,2019-03-15,85,Evaluation needs to be conducted in 2 years,15,5.0,5.0,5.0,4.0,4.0,4.0,,4.0,,,5.0,4.0,5.0,4.0,3.0,4.0,,4.0,4.0,,S1232,43.68945490310001,-79.4020332335,312682.159,4838615.7
-891991,4153885,2017.0,2018.0,1955.0,PRIVATE,12,Toronto-St. Paul's,567 AVENUE RD,11,63,2019-03-15,83,Evaluation needs to be conducted in 2 years,18,5.0,5.0,5.0,3.0,4.0,4.0,,4.0,5.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1232,43.688402926,-79.40160629399999,312716.44899999996,4838499.822
-891992,4153341,2017.0,2018.0,1920.0,PRIVATE,12,Toronto-St. Paul's,341 ST CLAIR AVE W,3,10,2019-03-15,68,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,3.0,2.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,,S1236,43.684313363,-79.4114493944,311923.636,4838043.641
-891993,4154010,2017.0,2018.0,1974.0,PRIVATE,8,Eglinton-Lawrence,500 DUPLEX AVE,33,319,2019-03-15,87,Evaluation needs to be conducted in 3 years,20,5.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,5.0,5.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,N0833,43.709767508,-79.4014749326,312724.472,4840872.481000001
-891994,4154482,2018.0,2018.0,1950.0,PRIVATE,8,Eglinton-Lawrence,125 SHELBORNE AVE,4,25,2019-03-14,74,Evaluation needs to be conducted in 2 years,18,3.0,4.0,3.0,3.0,3.0,4.0,,4.0,3.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,N0827,43.7155753333,-79.42945624,310468.984,4841515.3319999995
-891995,4155245,2017.0,2018.0,1965.0,PRIVATE,3,Etobicoke-Lakeshore,177 BERRY RD,4,23,2019-03-14,72,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,3.0,3.0,,4.0,,3.0,4.0,3.0,5.0,3.0,4.0,4.0,4.0,2.0,3.0,,W0329,43.63682197520001,-79.4892158365,305654.469,4832763.96
-891996,4154552,2017.0,2018.0,1958.0,PRIVATE,8,Eglinton-Lawrence,3388 BATHURST ST,4,34,2019-03-14,72,Evaluation needs to be conducted in 2 years,19,4.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,,N0823,43.726280198400005,-79.4318793095,310272.772,4842704.437
-891997,4154521,2018.0,2018.0,1958.0,PRIVATE,8,Eglinton-Lawrence,3638 BATHURST ST,7,48,2019-03-14,74,Evaluation needs to be conducted in 2 years,19,4.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,,N0823,43.73338951,-79.4335900368,310168.085,4843485.155
-891998,4154499,2017.0,2018.0,1964.0,PRIVATE,8,Eglinton-Lawrence,3690 BATHURST ST,7,47,2019-03-14,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N0823,43.734306073,-79.433720291,310123.458,4843596.89
-891999,4288751,,2018.0,1918.0,PRIVATE,12,Toronto-St. Paul's,1383 BATHURST ST,3,30,2019-03-14,80,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,4.0,3.0,4.0,,5.0,,,4.0,5.0,5.0,3.0,3.0,4.0,,4.0,,,S1236,43.6807035895,-79.4169896238,311477.346,4837642.107
-892000,4153343,2017.0,2018.0,1916.0,SOCIAL HOUSING,12,Toronto-St. Paul's,1435 BATHURST ST,3,15,2019-03-14,73,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,4.0,3.0,3.0,,5.0,,4.0,3.0,4.0,3.0,3.0,3.0,4.0,,4.0,,,S1236,43.6823886069,-79.4176648249,311422.714,4837829.2639999995
-892001,4156736,2017.0,2018.0,1951.0,PRIVATE,3,Etobicoke-Lakeshore,135 EIGHTH ST,4,47,2019-03-14,80,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,,4.0,4.0,,4.0,4.0,4.0,,4.0,4.0,,W0335,43.601151061,-79.506439811,304264.189,4828802.018999999
-892002,4155302,2017.0,2018.0,1974.0,PRIVATE,3,Etobicoke-Lakeshore,52 MABELLE AVE,22,310,2019-03-14,69,Evaluation needs to be conducted in 2 years,19,4.0,4.0,3.0,2.0,3.0,4.0,3.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,3.0,3.0,,W0321,43.6464029439,-79.5294506955,302408.377,4833828.787
-892003,4155514,2017.0,2018.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,8 LAKE SHORE DR,3,11,2019-03-14,62,Evaluation needs to be conducted in 1 year,13,3.0,3.0,,3.0,,3.0,,3.0,,,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,3.0,,W0335,43.6015075472,-79.49800545229999,304945.349,4828840.676
-892004,4153903,2017.0,2018.0,1923.0,PRIVATE,12,Toronto-St. Paul's,316 LONSDALE RD,4,10,2019-03-14,63,Evaluation needs to be conducted in 1 year,15,4.0,3.0,5.0,3.0,3.0,2.0,,3.0,,,3.0,3.0,5.0,2.0,3.0,2.0,,3.0,3.0,,S1231,43.689062977700004,-79.4118183457,311893.356,4838571.296
-892005,4153904,2017.0,2018.0,1923.0,PRIVATE,12,Toronto-St. Paul's,320 LONSDALE RD,4,32,2019-03-14,68,Evaluation needs to be conducted in 2 years,16,4.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,4.0,4.0,,3.0,3.0,2.0,S1231,43.6890609911,-79.4120929663,311871.215,4838571.051
-892006,4254270,2017.0,2018.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,139 EIGHTH ST,3,47,2019-03-14,81,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0335,43.601494318,-79.50658095600001,304252.79600000003,4828840.154
-892007,4254274,2017.0,2018.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,143 EIGHTH ST,4,47,2019-03-14,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,W0335,43.601842503,-79.506732984,304240.524,4828878.837
-892008,4254276,2017.0,2018.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,147 EIGHTH ST,4,52,2019-03-14,81,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0335,43.602248316,-79.506894937,304227.452,4828923.922
-892009,4153914,2017.0,2018.0,1920.0,PRIVATE,12,Toronto-St. Paul's,1 MALLORY GDNS,4,35,2019-03-14,67,Evaluation needs to be conducted in 2 years,15,4.0,4.0,2.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,4.0,3.0,3.0,,4.0,3.0,,S1232,43.69100353899999,-79.39598868600001,313168.941,4838789.278
-892010,4153912,2017.0,2018.0,1920.0,PRIVATE,12,Toronto-St. Paul's,8 MALLORY GDNS,4,36,2019-03-14,69,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,4.0,3.0,3.0,,4.0,3.0,,S1232,43.690519401,-79.396663132,313114.642,4838735.424
-892011,4320792,,2018.0,1975.0,PRIVATE,12,Toronto-St. Paul's,21 VAUGHAN RD,23,173,2019-03-14,82,Evaluation needs to be conducted in 2 years,19,5.0,5.0,5.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,2.0,4.0,4.0,4.0,4.0,3.0,,S1235,43.6823113813,-79.418488924,311356.277,4837820.62
-892012,4169241,2017.0,2018.0,1928.0,PRIVATE,12,Toronto-St. Paul's,42 VAUGHAN RD,3,15,2019-03-14,77,Evaluation needs to be conducted in 2 years,14,4.0,4.0,5.0,4.0,,4.0,,4.0,,,4.0,4.0,2.0,4.0,4.0,4.0,4.0,3.0,,,S1235,43.68218998,-79.4195011613,311274.675,4837807.056
-892013,4152841,2017.0,2018.0,1965.0,PRIVATE,25,Scarborough-Rouge Park,217 MORNINGSIDE AVE,9,110,2019-03-14,68,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,4.0,3.0,4.0,3.0,3.0,,4.0,4.0,5.0,3.0,3.0,4.0,3.0,3.0,,3.0,E2537,43.766678518999996,-79.18464464430001,330174.271,4847238.274
-892014,4168808,2017.0,2018.0,1955.0,PRIVATE,4,Parkdale-High Park,23 JANE ST,3,18,2019-03-14,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,2.0,,S0426,43.650079954300004,-79.48433563399999,306048.00899999996,4834236.904
-892015,4152919,2017.0,2018.0,1910.0,PRIVATE,4,Parkdale-High Park,29 JANE ST,3,18,2019-03-14,80,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,3.0,4.0,,3.0,,,5.0,4.0,5.0,4.0,4.0,4.0,,3.0,4.0,,S0426,43.6502220463,-79.4843917868,306043.476,4834252.688999999
-892016,4156737,2017.0,2018.0,1951.0,PRIVATE,3,Etobicoke-Lakeshore,148 ISLINGTON AVE,4,38,2019-03-14,81,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0335,43.601468456000006,-79.505848789,304311.906,4828837.276000001
-892017,4156738,2017.0,2018.0,1951.0,PRIVATE,3,Etobicoke-Lakeshore,170 ISLINGTON AVE,4,47,2019-03-14,81,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0335,43.602358476999996,-79.506187032,304284.602,4828936.156
-892018,4152953,2017.0,2018.0,1963.0,PRIVATE,4,Parkdale-High Park,135 TYNDALL AVE,11,216,2019-03-14,89,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,4.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,,S0437,43.6377206965,-79.4283330254,310566.868,4832866.086
-892019,4156565,2017.0,2018.0,1968.0,PRIVATE,5,York South-Weston,15 HARDING AVE,19,335,2019-03-14,76,Evaluation needs to be conducted in 2 years,20,4.0,3.0,4.0,3.0,4.0,3.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,3.0,4.0,W0528,,,304655.788,4839682.129
-892020,4154295,2017.0,2018.0,1961.0,PRIVATE,5,York South-Weston,34 GULLIVER RD,6,47,2019-03-14,81,Evaluation needs to be conducted in 2 years,17,5.0,4.0,5.0,3.0,4.0,4.0,,3.0,4.0,,4.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,3.0,,W0529,43.6991965655,-79.478055589,306553.253,4839693.558999999
-892021,4153919,,2018.0,1928.0,PRIVATE,12,Toronto-St. Paul's,7 WALMSLEY BLVD,4,15,2019-03-14,79,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,,4.0,4.0,4.0,5.0,4.0,3.0,3.0,,4.0,4.0,,S1232,43.692663927,-79.3973259391,313061.182,4838972.671
-892022,4153905,2017.0,2018.0,1962.0,PRIVATE,12,Toronto-St. Paul's,30 THELMA AVE,3,32,2019-03-14,67,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,5.0,4.0,4.0,4.0,3.0,3.0,2.0,,S1231,43.689996633,-79.41150263600001,311918.458,4838676.016
-892023,4152975,2018.0,2018.0,1965.0,PRIVATE,4,Parkdale-High Park,24 TYNDALL AVE,7,73,2019-03-14,60,Evaluation needs to be conducted in 1 year,17,4.0,3.0,2.0,3.0,3.0,4.0,,3.0,2.0,,2.0,5.0,4.0,3.0,2.0,3.0,3.0,3.0,2.0,,S0437,43.6351285886,-79.4284822778,310555.059,4832578.112
-892024,4153615,2017.0,2018.0,1978.0,TCHC,14,Toronto-Danforth,80 DANFORTH AVE,5,131,2019-03-14,85,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,4.0,5.0,4.0,5.0,4.0,5.0,,4.0,5.0,4.0,4.0,3.0,5.0,4.0,4.0,3.0,4.0,S1424,43.67633044270001,-79.3597559522,316092.805,4837162.489
-892025,4153585,2017.0,2018.0,1980.0,TCHC,13,Toronto Centre,55 BLEECKER ST,14,260,2019-03-14,80,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,3.0,5.0,3.0,4.0,4.0,5.0,,4.0,5.0,4.0,4.0,3.0,4.0,3.0,4.0,3.0,4.0,S1323,43.664421836,-79.37226324,315086.04600000003,4835838.834
-892026,4153935,2017.0,2018.0,1960.0,PRIVATE,12,Toronto-St. Paul's,120 ORIOLE PKWY,5,34,2019-03-14,75,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,3.0,4.0,,3.0,3.0,3.0,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,3.0,,S1226,43.6961891471,-79.4030049168,312602.92600000004,4839363.78
-892027,4153934,2017.0,2018.0,1955.0,PRIVATE,12,Toronto-St. Paul's,130 ORIOLE PKWY,4,39,2019-03-14,72,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,4.0,3.0,3.0,,3.0,,3.0,4.0,4.0,5.0,4.0,3.0,3.0,3.0,4.0,3.0,,S1226,43.6964637317,-79.4032380661,312584.097,4839394.2639999995
-892028,4153917,2017.0,2018.0,1918.0,PRIVATE,12,Toronto-St. Paul's,58 ORIOLE GDNS,4,13,2019-03-14,65,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,3.0,4.0,3.0,,3.0,,4.0,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,,,S1232,43.69062893899999,-79.400166183,312832.248,4838747.262
-892029,4153918,2017.0,2018.0,1918.0,PRIVATE,12,Toronto-St. Paul's,62 ORIOLE GDNS,3,13,2019-03-14,67,Evaluation needs to be conducted in 2 years,14,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,,,3.0,3.0,5.0,4.0,3.0,3.0,,4.0,,,S1232,43.690570503000004,-79.400460705,312808.51399999997,4838740.742
-892030,4154323,2017.0,2018.0,1965.0,PRIVATE,5,York South-Weston,101 BROOKHAVEN DR,3,19,2019-03-14,82,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,5.0,4.0,5.0,,2.0,,4.0,5.0,4.0,5.0,5.0,4.0,4.0,3.0,5.0,3.0,,W0528,43.7034048782,-79.49483763180001,305200.553,4840160.923
-892031,4153889,2017.0,2018.0,1970.0,PRIVATE,12,Toronto-St. Paul's,250 ST CLAIR AVE W,4,45,2019-03-14,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,2.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,3.0,4.0,3.0,3.0,,S1231,43.6857216141,-79.4075167985,312240.538,4838200.444
-892032,4156733,2017.0,2018.0,1974.0,TCHC,8,Eglinton-Lawrence,135 NEPTUNE DR,4,48,2019-03-13,82,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,5.0,4.0,4.0,3.0,,,5.0,5.0,5.0,4.0,3.0,3.0,5.0,4.0,3.0,4.0,N0823,43.729915311000006,-79.44050099100001,309577.593,4843108.688
-892033,4156735,2017.0,2018.0,1974.0,TCHC,8,Eglinton-Lawrence,155 NEPTUNE DR,4,48,2019-03-13,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,5.0,4.0,4.0,3.0,,,5.0,5.0,4.0,4.0,3.0,3.0,5.0,4.0,3.0,4.0,N0823,43.729844838000005,-79.43964535100001,309646.53,4843100.909
-892034,4155845,2017.0,2018.0,1953.0,PRIVATE,5,York South-Weston,33 FLAMBOROUGH DR,3,43,2019-03-13,70,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,4.0,3.0,4.0,,4.0,,4.0,4.0,4.0,4.0,3.0,3.0,3.0,,4.0,2.0,,W0529,43.7019480754,-79.4775820267,306591.346,4839999.254
-892035,4153942,2017.0,2018.0,1954.0,PRIVATE,12,Toronto-St. Paul's,45 GARDINER RD,6,41,2019-03-13,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,4.0,3.0,3.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,3.0,,S1225,43.702033574,-79.4195154938,311271.467,4840011.666999999
-892036,4154274,2017.0,2018.0,2008.0,TCHC,7,Humber River-Black Creek,2350 FINCH AVE W,4,15,2019-03-13,87,Evaluation needs to be conducted in 3 years,18,3.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,,5.0,5.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,,W0722,43.752199466,-79.54396680100001,301243.618,4845583.62
-892037,4250622,2017.0,2018.0,1913.0,PRIVATE,11,University-Rosedale,1 A VERMONT AVE,3,22,2019-03-13,62,Evaluation needs to be conducted in 1 year,17,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,,3.0,3.0,2.0,4.0,3.0,3.0,2.0,4.0,2.0,3.0,,S1125,43.671904761099995,-79.414243936,311699.702,4836664.8319999995
-892038,4167763,2017.0,2018.0,1980.0,TCHC,7,Humber River-Black Creek,5 NEEDLE FIRWAY,12,137,2019-03-13,78,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,4.0,5.0,4.0,4.0,3.0,4.0,,5.0,5.0,4.0,3.0,3.0,4.0,4.0,4.0,2.0,4.0,W0729,43.752566895,-79.518797427,303270.559,4845623.647
-892039,4153896,2017.0,2018.0,1970.0,PRIVATE,12,Toronto-St. Paul's,80 MONTCLAIR AVE,6,60,2019-03-13,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1230,43.687630803000005,-79.414527721,311674.80199999997,4838412.896000001
-892040,4152901,2017.0,2018.0,1957.0,PRIVATE,4,Parkdale-High Park,9 MORNINGSIDE AVE,4,36,2019-03-13,74,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,3.0,,3.0,3.0,4.0,5.0,4.0,5.0,4.0,3.0,3.0,,3.0,3.0,,S0430,43.645605233000005,-79.473469677,306924.468,4833740.943
-892041,4154933,2017.0,2018.0,1938.0,PRIVATE,12,Toronto-St. Paul's,14 TICHESTER RD,4,32,2019-03-13,76,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,4.0,4.0,4.0,,2.0,,,4.0,3.0,5.0,4.0,4.0,4.0,,3.0,,,S1230,43.686006092,-79.417750526,311415.151,4838232.1219999995
-892042,4250600,2017.0,2018.0,1938.0,PRIVATE,12,Toronto-St. Paul's,22 TICHESTER RD,4,32,2019-03-13,76,Evaluation needs to be conducted in 2 years,14,3.0,4.0,5.0,4.0,3.0,4.0,,2.0,,,3.0,5.0,5.0,4.0,4.0,4.0,,3.0,,,S1230,43.68592338,-79.418139695,311383.785,4838222.902
-892043,4250602,2017.0,2018.0,1938.0,PRIVATE,12,Toronto-St. Paul's,26 TICHESTER RD,4,32,2019-03-13,73,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,4.0,2.0,4.0,,2.0,,,3.0,4.0,5.0,4.0,4.0,4.0,,3.0,,,S1230,43.685882131999996,-79.418348616,311366.946,4838218.303
-892044,4155238,2017.0,2018.0,1953.0,PRIVATE,3,Etobicoke-Lakeshore,4 KINSDALE BLVD,4,42,2019-03-13,61,Evaluation needs to be conducted in 1 year,16,3.0,2.0,4.0,3.0,3.0,4.0,,3.0,,,3.0,3.0,4.0,3.0,2.0,3.0,3.0,3.0,3.0,,W0329,43.636181771000004,-79.48992422,305597.035,4832693.783
-892045,4155242,2017.0,2018.0,1959.0,PRIVATE,3,Etobicoke-Lakeshore,10 KINSDALE BLVD,4,23,2019-03-13,65,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,3.0,4.0,4.0,4.0,3.0,2.0,3.0,4.0,3.0,3.0,,W0329,43.635816471999995,-79.491575949,305463.99600000004,4832652.234
-892046,4155243,2017.0,2018.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,12 KINSDALE BLVD,4,16,2019-03-13,76,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,5.0,,5.0,,4.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,,W0329,43.63569676229999,-79.4921362887,305418.785,4832638.931
-892047,4152985,2017.0,2018.0,1960.0,PRIVATE,4,Parkdale-High Park,145 JAMESON AVE,9,80,2019-03-13,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,S0437,43.6369589239,-79.435611219,309979.692,4832781.011
-892048,4152952,2017.0,2018.0,1963.0,PRIVATE,4,Parkdale-High Park,115 TYNDALL AVE,10,108,2019-03-13,85,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,3.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,S0437,43.637071376899996,-79.4279645858,310596.655,4832793.975
-892049,4154279,2017.0,2018.0,1959.0,PRIVATE,5,York South-Weston,2050 KEELE ST,9,187,2019-03-13,79,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,5.0,5.0,4.0,5.0,3.0,4.0,5.0,4.0,5.0,W0529,43.6979738679,-79.4763948236,306687.153,4839557.752
-892050,4154932,2017.0,2018.0,1975.0,PRIVATE,12,Toronto-St. Paul's,250 HEATH ST W,17,81,2019-03-13,82,Evaluation needs to be conducted in 2 years,20,5.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,4.0,S1230,43.6867124421,-79.4141955534,311701.94800000003,4838309.941000001
-892051,4155256,2017.0,2018.0,1962.0,PRIVATE,3,Etobicoke-Lakeshore,3 HILL HEIGHTS RD,4,38,2019-03-13,67,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,4.0,4.0,,4.0,,2.0,3.0,4.0,5.0,3.0,4.0,4.0,2.0,2.0,3.0,,W0327,43.638204565900004,-79.49316808350001,305335.532,4832917.528
-892052,4154280,2017.0,2018.0,1966.0,PRIVATE,5,York South-Weston,11 GULLIVER RD,6,42,2019-03-13,89,Evaluation needs to be conducted in 3 years,17,4.0,4.0,5.0,4.0,4.0,5.0,,4.0,5.0,,4.0,5.0,5.0,4.0,4.0,5.0,5.0,5.0,4.0,,W0529,43.6988301169,-79.47621626680001,306701.52,4839652.882
-892053,4155269,2017.0,2018.0,1964.0,PRIVATE,3,Etobicoke-Lakeshore,6 HILL HEIGHTS RD,4,30,2019-03-13,60,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,2.0,2.0,,4.0,,2.0,3.0,3.0,5.0,3.0,3.0,3.0,2.0,3.0,3.0,,W0327,43.6390231144,-79.4931494721,305337.05600000004,4833008.466
-892054,4152898,2020.0,2018.0,1958.0,PRIVATE,4,Parkdale-High Park,93 COE HILL DR,4,33,2019-03-13,71,Evaluation needs to be conducted in 2 years,18,3.0,4.0,3.0,3.0,3.0,5.0,,3.0,5.0,3.0,3.0,3.0,5.0,4.0,4.0,4.0,4.0,2.0,3.0,,S0430,43.641442247600004,-79.4724449481,307007.54600000003,4833277.515
-892055,4153938,2019.0,2018.0,1955.0,PRIVATE,12,Toronto-St. Paul's,240 ORIOLE PKWY,9,44,2019-03-13,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,2.0,5.0,3.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1226,43.697013865,-79.4032770166,312580.886,4839455.38
-892056,4153939,2017.0,2018.0,1955.0,PRIVATE,12,Toronto-St. Paul's,50 OXTON AVE,3,32,2019-03-13,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,3.0,4.0,,3.0,5.0,3.0,5.0,5.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,,S1226,43.697686003,-79.4052912228,312418.44800000003,4839529.862
-892057,4153465,,2018.0,1907.0,PRIVATE,11,University-Rosedale,481 PALMERSTON BLVD,3,11,2019-03-13,60,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,2.0,3.0,,3.0,,,2.0,3.0,5.0,3.0,3.0,2.0,3.0,3.0,3.0,,S1133,43.6621199142,-79.4122665445,311860.32,4835577.963
-892058,4153936,2019.0,2018.0,1938.0,PRIVATE,12,Toronto-St. Paul's,110 ORIOLE PKWY,4,33,2019-03-13,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,3.0,4.0,,3.0,3.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S1226,43.6959928836,-79.4029240111,312609.473,4839341.983
-892059,4153933,2017.0,2018.0,1959.0,PRIVATE,12,Toronto-St. Paul's,111 ORIOLE PKWY,3,29,2019-03-13,78,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,3.0,,3.0,,4.0,3.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,,S1226,43.6967810359,-79.4024723932,312645.774,4839429.589
-892060,4153420,2017.0,2018.0,1903.0,PRIVATE,11,University-Rosedale,162 HURON ST,4,18,2019-03-13,71,Evaluation needs to be conducted in 2 years,16,4.0,3.0,5.0,4.0,4.0,3.0,,4.0,,,4.0,4.0,5.0,3.0,3.0,2.0,3.0,3.0,3.0,,S1144,43.6572165496,-79.3980741814,313005.623,4835034.499
-892061,4154951,2017.0,2018.0,1932.0,PRIVATE,12,Toronto-St. Paul's,1524 BATHURST ST,4,24,2019-03-13,86,Evaluation needs to be conducted in 3 years,14,5.0,5.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,5.0,5.0,4.0,4.0,4.0,,4.0,,,S1229,43.6851006268,-79.41951073279999,311273.599,4838130.432
-892062,4154935,2017.0,2018.0,1943.0,PRIVATE,12,Toronto-St. Paul's,1535 BATHURST ST,4,32,2019-03-13,68,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,3.0,4.0,,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,S1230,43.685782618699996,-79.4189403297,311319.515,4838206.2469999995
-892063,4250612,2017.0,2018.0,1943.0,PRIVATE,12,Toronto-St. Paul's,1539 BATHURST ST,4,32,2019-03-13,76,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,3.0,4.0,,3.0,,3.0,4.0,3.0,5.0,3.0,4.0,4.0,,4.0,,,S1230,43.685911156,-79.418988838,311315.328,4838221.478
-892064,4231973,2017.0,2018.0,1960.0,PRIVATE,6,York Centre,1 CANYON AVE,18,202,2019-03-13,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,5.0,3.0,5.0,4.0,4.0,4.0,3.0,5.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,3.0,,N0624,43.7565096904,-79.4367503453,309877.805,4846062.436000001
-892065,4168793,2017.0,2018.0,1962.0,PRIVATE,6,York Centre,25 CANYON AVE,21,117,2019-03-13,80,Evaluation needs to be conducted in 2 years,20,3.0,4.0,4.0,3.0,4.0,4.0,4.0,5.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,N0624,43.757154574,-79.436224864,,
-892066,4155308,2017.0,2018.0,1959.0,PRIVATE,3,Etobicoke-Lakeshore,24 BURNHAMTHORPE RD,5,42,2019-03-13,67,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,4.0,4.0,,3.0,4.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,4.0,2.0,4.0,,W0321,43.648430311700004,-79.5307642021,302302.494,4834054.061000001
-892067,4153880,2017.0,2018.0,1970.0,PRIVATE,12,Toronto-St. Paul's,14 DEER PARK CRES,4,13,2019-03-13,72,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,4.0,2.0,,4.0,4.0,3.0,4.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,S1232,43.688481804300004,-79.3993292797,312900.26,4838507.841
-892068,4169264,2017.0,2018.0,1926.0,PRIVATE,12,Toronto-St. Paul's,80 ST CLAIR AVE W,4,25,2019-03-13,75,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,3.0,4.0,,3.0,4.0,4.0,4.0,4.0,5.0,3.0,4.0,3.0,,3.0,3.0,,S1232,43.6874952579,-79.3985597973,312962.429,4838398.308999999
-892069,4153882,2017.0,2018.0,1938.0,PRIVATE,12,Toronto-St. Paul's,110 ST CLAIR AVE W,9,54,2019-03-13,68,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,2.0,4.0,2.0,,4.0,3.0,3.0,4.0,2.0,5.0,3.0,3.0,3.0,,3.0,4.0,,S1232,43.68739965100001,-79.398937696,312931.977,4838387.652
-892070,4155840,2017.0,2018.0,1966.0,SOCIAL HOUSING,11,University-Rosedale,300 SHAW ST,3,32,2019-03-13,67,Evaluation needs to be conducted in 2 years,20,3.0,3.0,5.0,3.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,S1141,43.65047076729999,-79.4188998818,311326.66,4834283.206
-892071,4333386,2019.0,2018.0,2018.0,PRIVATE,13,Toronto Centre,561 SHERBOURNE ST,43,369,2019-03-13,99,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,S1323,,,314838.816,4836396.822
-892072,4154593,2017.0,2018.0,1958.0,PRIVATE,6,York Centre,3888 BATHURST ST,3,31,2019-03-13,82,Evaluation needs to be conducted in 2 years,18,4.0,5.0,4.0,4.0,4.0,4.0,,4.0,4.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,,N0629,43.7428392461,-79.4358673585,309950.049,4844543.7530000005
-892073,4154600,2017.0,2018.0,1960.0,PRIVATE,6,York Centre,3908 BATHURST ST,4,29,2019-03-13,71,Evaluation needs to be conducted in 2 years,17,3.0,4.0,3.0,3.0,3.0,4.0,,3.0,,3.0,3.0,3.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,N0629,43.744444822,-79.4363242006,309913.126,4844722.107
-892074,4155644,2017.0,2018.0,1957.0,TCHC,8,Eglinton-Lawrence,87 AMARANTH CRT,4,30,2019-03-13,74,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,3.0,4.0,3.0,,3.0,,,4.0,3.0,4.0,4.0,4.0,4.0,,4.0,3.0,4.0,N0823,43.720444621000006,-79.44680337,309070.52,4842056.181
-892075,4154954,2017.0,2018.0,1933.0,PRIVATE,12,Toronto-St. Paul's,1510 BATHURST ST,4,24,2019-03-13,66,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,3.0,4.0,,4.0,,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,3.0,,S1229,43.6845459232,-79.4192018121,311298.563,4838068.827
-892076,4154953,2017.0,2018.0,1959.0,PRIVATE,12,Toronto-St. Paul's,1516 BATHURST ST,6,42,2019-03-13,68,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,4.0,3.0,4.0,,4.0,4.0,2.0,3.0,3.0,5.0,3.0,3.0,3.0,4.0,4.0,2.0,,S1229,43.684761291899996,-79.4193183625,311289.144,4838092.746
-892077,4154952,2017.0,2018.0,1932.0,PRIVATE,12,Toronto-St. Paul's,1520 BATHURST ST,4,24,2019-03-13,87,Evaluation needs to be conducted in 3 years,14,5.0,5.0,4.0,4.0,4.0,5.0,,4.0,,,4.0,5.0,5.0,4.0,4.0,4.0,,4.0,,,S1229,43.6849625997,-79.4194565721,311277.98,4838115.101
-892078,4154944,2017.0,2018.0,1940.0,PRIVATE,12,Toronto-St. Paul's,1580 BATHURST ST,4,24,2019-03-12,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,,2.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,,,S1229,43.6864991391,-79.4200531796,311229.721,4838285.768999999
-892079,4153998,2017.0,2018.0,1960.0,PRIVATE,12,Toronto-St. Paul's,893 AVENUE RD,3,10,2019-03-12,75,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,,3.0,,4.0,,3.0,4.0,4.0,5.0,3.0,3.0,4.0,3.0,4.0,3.0,,S1227,43.7003921332,-79.4063848317,312329.962,4839830.415
-892080,4153999,2017.0,2018.0,1960.0,PRIVATE,12,Toronto-St. Paul's,901 AVENUE RD,3,10,2019-03-12,75,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,,3.0,4.0,4.0,5.0,3.0,3.0,4.0,3.0,4.0,3.0,,S1227,43.700648913900004,-79.4065038723,312320.335,4839858.933
-892081,4154000,2017.0,2018.0,1960.0,PRIVATE,12,Toronto-St. Paul's,905 AVENUE RD,3,10,2019-03-12,75,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,,3.0,,4.0,,3.0,4.0,4.0,5.0,3.0,3.0,4.0,3.0,4.0,3.0,,S1227,43.7007807941,-79.40656024180001,312315.775,4839873.58
-892082,4155521,2019.0,2018.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,115 EIGHTH ST,3,10,2019-03-12,81,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,4.0,3.0,5.0,5.0,4.0,4.0,4.0,4.0,3.0,,W0335,43.5997458878,-79.5057809161,304317.63899999997,4828644.958000001
-892083,4153115,2017.0,2018.0,1930.0,PRIVATE,9,Davenport,109 GLENHOLME AVE,3,15,2019-03-12,65,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,4.0,3.0,,3.0,,,S0928,43.6786824154,-79.4384961713,309743.43100000004,4837416.085
-892084,4155307,2017.0,2018.0,1974.0,PRIVATE,3,Etobicoke-Lakeshore,25 MABELLE AVE,31,416,2019-03-12,79,Evaluation needs to be conducted in 2 years,20,5.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,3.0,3.0,2.0,5.0,2.0,2.0,5.0,W0321,43.6455831031,-79.5265058924,302645.912,4833737.637
-892085,4155066,2017.0,2018.0,1963.0,PRIVATE,9,Davenport,1969 EGLINTON AVE W,3,36,2019-03-12,66,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,4.0,3.0,5.0,4.0,3.0,4.0,,4.0,2.0,,S0922,43.6945457647,-79.45447448,308454.213,4839177.629
-892086,4155065,2017.0,2018.0,1959.0,PRIVATE,9,Davenport,2005 EGLINTON AVE W,5,78,2019-03-12,78,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,5.0,3.0,,3.0,5.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,3.0,,S0922,43.6942406166,-79.45498736520001,308412.88800000004,4839143.706
-892087,4152789,2020.0,2018.0,1960.0,PRIVATE,20,Scarborough Southwest,3121 EGLINTON AVE E,6,81,2019-03-12,66,Evaluation needs to be conducted in 2 years,17,3.0,4.0,4.0,4.0,3.0,4.0,,3.0,2.0,,3.0,3.0,3.0,4.0,3.0,2.0,4.0,4.0,3.0,,E2027,43.7415452404,-79.2234208704,327061.643,4844435.008
-892088,4152790,2017.0,2018.0,1960.0,PRIVATE,20,Scarborough Southwest,3131 EGLINTON AVE E,7,82,2019-03-12,72,Evaluation needs to be conducted in 2 years,17,3.0,4.0,4.0,3.0,4.0,4.0,,4.0,3.0,,4.0,4.0,4.0,3.0,2.0,4.0,4.0,4.0,3.0,,E2027,43.741715689799996,-79.2228457117,327107.906,4844454.096
-892089,4153524,2017.0,2018.0,1993.0,SOCIAL HOUSING,13,Toronto Centre,50 EARL ST,4,22,2019-03-12,78,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,4.0,,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,,4.0,S1322,43.6688638916,-79.3757306133,314805.933,4836330.929
-892090,4154572,2017.0,2018.0,1952.0,PRIVATE,6,York Centre,390-398 WILSON AVE,3,40,2019-03-12,75,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,4.0,3.0,4.0,,4.0,,2.0,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,,N0629,43.736611247,-79.439571975,309632.469,4843834.371
-892091,4154573,2017.0,2018.0,1952.0,PRIVATE,6,York Centre,400-406 WILSON AVE,3,33,2019-03-12,78,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,4.0,4.0,4.0,,4.0,,2.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,N0629,43.736271595,-79.44053564,309548.598,4843809.657
-892092,4154574,2017.0,2018.0,1950.0,PRIVATE,6,York Centre,408-414 WILSON AVE,3,32,2019-03-12,81,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,4.0,3.0,4.0,,4.0,,4.0,4.0,5.0,5.0,4.0,4.0,4.0,,5.0,4.0,,N0629,43.736205215,-79.44139433,309485.652,4843791.438999999
-892093,4154570,2017.0,2018.0,1958.0,PRIVATE,6,York Centre,411 WILSON AVE,3,10,2019-03-12,83,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,5.0,5.0,4.0,4.0,4.0,,5.0,4.0,,N0633,43.7360797537,-79.4390470159,309694.484,4843792.649
-892094,4154569,2017.0,2018.0,1960.0,PRIVATE,6,York Centre,415 WILSON AVE,3,10,2019-03-12,74,Evaluation needs to be conducted in 2 years,16,3.0,4.0,3.0,3.0,3.0,3.0,,4.0,,,3.0,4.0,5.0,3.0,4.0,4.0,4.0,5.0,4.0,,N0633,43.7360202186,-79.4393431716,309670.63300000003,4843786.018
-892095,4154581,2017.0,2018.0,1955.0,PRIVATE,6,York Centre,470 WILSON AVE,3,55,2019-03-12,65,Evaluation needs to be conducted in 1 year,17,4.0,3.0,4.0,4.0,3.0,3.0,,3.0,,3.0,2.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0629,43.735579287,-79.444539255,309251.85,4843737.702
-892096,4154582,2017.0,2018.0,1955.0,PRIVATE,6,York Centre,490 WILSON AVE,3,55,2019-03-12,69,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,4.0,4.0,4.0,,4.0,,3.0,2.0,3.0,5.0,3.0,3.0,4.0,3.0,3.0,3.0,,N0629,43.735321323,-79.44546875,309176.995,4843708.996
-892097,4155064,2017.0,2018.0,1960.0,PRIVATE,9,Davenport,3 THORNTON AVE,3,17,2019-03-12,68,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,4.0,3.0,3.0,,4.0,3.0,,S0922,43.692937729200004,-79.454744586,308432.533,4838998.971
-892098,4154322,2017.0,2018.0,1984.0,PRIVATE,5,York South-Weston,15 MARTHA EATON WAY,23,364,2019-03-12,74,Evaluation needs to be conducted in 2 years,19,5.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,5.0,,4.0,4.0,5.0,5.0,3.0,3.0,4.0,5.0,3.0,4.0,W0528,43.696553916999996,-79.48846403600001,305714.067,4839400.786
-892099,4233149,2017.0,2018.0,1980.0,PRIVATE,5,York South-Weston,25 MARTHA EATON WAY,23,318,2019-03-12,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,3.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,W0528,43.698103059,-79.48903821,305667.766,4839572.884
-892100,4153531,2017.0,2018.0,1975.0,PRIVATE,13,Toronto Centre,33 ISABELLA ST,27,419,2019-03-12,71,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,2.0,,3.0,2.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,3.0,S1322,43.667643942,-79.383679432,314164.83,4836195.449
-892101,4154290,2017.0,2018.0,1992.0,SOCIAL HOUSING,5,York South-Weston,2214 KEELE ST,7,89,2019-03-12,64,Evaluation needs to be conducted in 1 year,20,3.0,3.0,3.0,3.0,4.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,W0529,43.7009209193,-79.476922025,306644.572,4839885.152
-892102,4167696,2017.0,2018.0,1955.0,PRIVATE,5,York South-Weston,2248 KEELE ST,3,11,2019-03-12,71,Evaluation needs to be conducted in 2 years,15,4.0,2.0,4.0,3.0,4.0,4.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,4.0,,3.0,4.0,,W0529,43.701682814099996,-79.476932762,306643.684,4839969.797
-892103,4154014,2017.0,2018.0,1950.0,PRIVATE,8,Eglinton-Lawrence,20 ROSELAWN AVE,3,12,2019-03-12,70,Evaluation needs to be conducted in 2 years,16,4.0,3.0,3.0,4.0,3.0,3.0,,3.0,,4.0,3.0,4.0,5.0,4.0,4.0,3.0,,4.0,2.0,,N0833,43.711067487,-79.40004192859999,312839.782,4841017.038
-892104,4154291,2017.0,2018.0,1961.0,PRIVATE,5,York South-Weston,2110 KEELE ST,9,93,2019-03-12,88,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,4.0,5.0,4.0,5.0,4.0,5.0,,5.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,3.0,,W0529,43.6999973614,-79.4766756216,306664.46,4839782.551
-892105,4155428,2017.0,2018.0,1963.0,PRIVATE,1,Etobicoke North,35 JANSUSIE RD,3,45,2019-03-12,74,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,3.0,4.0,3.0,,4.0,,3.0,3.0,3.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,,W0129,43.73108456,-79.576700252,298674.512,4842987.092
-892106,4154337,2017.0,2018.0,1955.0,PRIVATE,5,York South-Weston,2548 KEELE ST,3,12,2019-03-12,71,Evaluation needs to be conducted in 2 years,16,4.0,2.0,5.0,4.0,3.0,3.0,,4.0,,3.0,4.0,3.0,5.0,3.0,4.0,4.0,,3.0,3.0,,W0526,43.7157152364,-79.4800398693,306392.893,4841528.671
-892107,4153372,2017.0,2018.0,1965.0,PRIVATE,12,Toronto-St. Paul's,82 WARREN RD,7,49,2019-03-12,68,Evaluation needs to be conducted in 2 years,17,3.0,4.0,3.0,4.0,4.0,4.0,,3.0,4.0,3.0,4.0,4.0,5.0,2.0,3.0,4.0,,2.0,2.0,,S1237,43.6853486337,-79.4067397267,312303.234,4838159.076
-892108,4154934,2017.0,2018.0,1943.0,PRIVATE,12,Toronto-St. Paul's,1531 BATHURST ST,4,32,2019-03-12,85,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,5.0,4.0,4.0,,5.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,S1230,43.685648012600005,-79.4188899965,311323.587,4838191.296
-892109,4154946,2017.0,2018.0,1926.0,PRIVATE,12,Toronto-St. Paul's,1574 BATHURST ST,4,36,2019-03-12,81,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,5.0,,4.0,,3.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,S1229,43.686150570900004,-79.4199250703,311240.085,4838247.052
-892110,4154015,2017.0,2018.0,1955.0,PRIVATE,8,Eglinton-Lawrence,80 CASTLEFIELD AVE,3,17,2019-03-12,71,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,3.0,3.0,3.0,,4.0,,3.0,3.0,4.0,5.0,4.0,3.0,4.0,,4.0,3.0,,N0833,43.7112480304,-79.403629987,312550.619,4841036.746
-892111,4154302,2017.0,2018.0,1960.0,PRIVATE,5,York South-Weston,2 ARROWSMITH AVE,3,11,2019-03-12,71,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,3.0,4.0,,4.0,,,3.0,2.0,5.0,4.0,4.0,4.0,,5.0,2.0,,W0529,43.7044245269,-79.4774946495,306598.318,4840274.3780000005
-892112,4153357,2017.0,2018.0,1930.0,PRIVATE,12,Toronto-St. Paul's,49 ST CLAIR AVE W,7,34,2019-03-12,78,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,3.0,3.0,3.0,5.0,4.0,,4.0,3.0,5.0,3.0,4.0,4.0,,4.0,4.0,,S1238,43.6873687296,-79.3959379318,313173.803,4838384.509
-892113,4153519,2018.0,2018.0,1920.0,PRIVATE,13,Toronto Centre,26 ST JOSEPH ST,6,65,2019-03-12,75,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,3.0,,4.0,4.0,5.0,3.0,3.0,4.0,,4.0,,,S1321,43.6660925039,-79.3867723149,313910.664,4836035.558999999
-892114,4153874,2017.0,2018.0,1937.0,PRIVATE,12,Toronto-St. Paul's,64 ST CLAIR AVE W,6,97,2019-03-12,69,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,2.0,3.0,3.0,,3.0,,4.0,3.0,4.0,5.0,3.0,3.0,2.0,,4.0,4.0,,S1232,43.6878011506,-79.397437188,313052.88399999996,4838432.402
-892115,4155306,2017.0,2018.0,1973.0,PRIVATE,3,Etobicoke-Lakeshore,50 CORDOVA AVE,37,285,2019-03-12,68,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,3.0,5.0,3.0,4.0,5.0,4.0,3.0,3.0,3.0,4.0,2.0,1.0,4.0,2.0,3.0,,W0321,43.6471114892,-79.5264697253,302648.878,4833907.435
-892116,4154286,2017.0,2018.0,1954.0,PRIVATE,5,York South-Weston,150 CULFORD RD,5,110,2019-03-12,91,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,4.0,5.0,4.0,3.0,5.0,4.0,5.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,4.0,,W0529,43.705053002,-79.48808484199999,305744.52,4840345.009
-892117,4154945,2017.0,2018.0,1940.0,PRIVATE,12,Toronto-St. Paul's,1576 BATHURST ST,4,24,2019-03-12,65,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,,3.0,4.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,S1229,43.6863326216,-79.41998131300001,311235.532,4838267.274
-892118,4153983,2018.0,2018.0,1953.0,PRIVATE,8,Eglinton-Lawrence,2601 BATHURST ST,6,62,2019-03-11,75,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,3.0,4.0,,3.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,3.0,2.0,4.0,,N0833,43.707444012299995,-79.4262923027,310724.73600000003,4840612.2360000005
-892119,4152986,2019.0,2018.0,1959.0,PRIVATE,4,Parkdale-High Park,140 SPRINGHURST AVE,5,20,2019-03-11,69,Evaluation needs to be conducted in 2 years,15,3.0,4.0,3.0,3.0,3.0,4.0,,4.0,,,3.0,2.0,5.0,4.0,4.0,3.0,,4.0,3.0,,S0437,43.6357144726,-79.43650599680001,309907.601,4832642.713
-892120,4153996,2018.0,2018.0,1952.0,PRIVATE,12,Toronto-St. Paul's,873 AVENUE RD,4,10,2019-03-11,70,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,3.0,3.0,3.0,,4.0,,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,S1227,43.6992180008,-79.4058760142,312371.12,4839700.0139999995
-892121,4153997,2018.0,2018.0,1950.0,PRIVATE,12,Toronto-St. Paul's,875 AVENUE RD,3,10,2019-03-11,70,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,3.0,3.0,3.0,,4.0,,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,S1227,43.6993433879,-79.4059378542,312366.12,4839713.938999999
-892122,4155766,2017.0,2018.0,2005.0,SOCIAL HOUSING,10,Spadina-Fort York,552 ADELAIDE ST W,5,84,2019-03-11,77,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,4.0,4.0,4.0,3.0,3.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,4.0,S1029,43.645573462,-79.402433707,312653.459,4833740.458000001
-892123,4152615,2017.0,2018.0,1962.0,PRIVATE,20,Scarborough Southwest,534 BIRCHMOUNT RD,4,34,2019-03-11,77,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,,E2029,43.710331071700004,-79.2701499955,323307.445,4840955.829
-892124,4152614,2017.0,2018.0,1960.0,PRIVATE,20,Scarborough Southwest,536 BIRCHMOUNT RD,3,28,2019-03-11,76,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,,,4.0,2.0,5.0,4.0,4.0,4.0,,3.0,4.0,,E2029,43.710576896899994,-79.2702122358,323302.354,4840983.125
-892125,4153415,2017.0,2018.0,1961.0,PRIVATE,11,University-Rosedale,200 ELM ST,14,120,2019-03-11,68,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,3.0,3.0,3.0,2.0,3.0,,3.0,3.0,5.0,4.0,3.0,3.0,,4.0,,,S1144,43.656163448,-79.3914361873,313541.216,4834918.223999999
-892126,4153413,2017.0,2018.0,1970.0,PRIVATE,11,University-Rosedale,222 ELM ST,15,268,2019-03-11,76,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,,3.0,4.0,5.0,4.0,3.0,3.0,,4.0,,4.0,S1144,43.6561325149,-79.3918839481,313505.1,4834914.738
-892127,4153950,2017.0,2018.0,1960.0,PRIVATE,8,Eglinton-Lawrence,570 EGLINTON AVE W,3,11,2019-03-11,76,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,3.0,,3.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0833,43.7031059337,-79.41690306310001,311481.91,4840131.013
-892128,4154329,2017.0,2018.0,1979.0,PRIVATE,5,York South-Weston,1750 LAWRENCE AVE W,4,70,2019-03-11,89,Evaluation needs to be conducted in 3 years,19,4.0,4.0,5.0,4.0,4.0,5.0,4.0,5.0,4.0,,5.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,4.0,4.0,W0528,43.7044910425,-79.49843825640001,304910.354,4840281.583000001
-892129,4152835,2017.0,2018.0,1976.0,PRIVATE,24,Scarborough-Guildwood,70 MORNELLE CRT,16,264,2019-03-11,48,Building Audit,19,2.0,2.0,3.0,2.0,2.0,3.0,1.0,3.0,4.0,,2.0,2.0,2.0,3.0,3.0,3.0,2.0,3.0,1.0,3.0,E2423,43.786853838999996,-79.197805135,329106.341,4849476.751
-892130,4153188,2017.0,2018.0,1961.0,PRIVATE,11,University-Rosedale,40 WALMER RD,4,33,2019-03-11,67,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,2.0,4.0,4.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,2.0,,S1126,43.668763043,-79.406936141,312289.108,4836317.377
-892131,4155494,2017.0,2018.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,2547 LAKE SHORE BLVD W,4,26,2019-03-11,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,2.0,,4.0,,2.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0336,43.609303546999996,-79.4892009672,305656.036,4829706.813
-892132,4155492,2017.0,2018.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,2555 LAKE SHORE BLVD W,4,26,2019-03-11,79,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,4.0,4.0,2.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0336,43.609043237399995,-79.4898363283,305704.94399999996,4829683.294
-892133,4155490,2017.0,2018.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,2559 LAKE SHORE BLVD W,4,26,2019-03-11,80,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,2.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0336,43.6090936183,-79.48861615060001,305607.776,4829677.695
-892134,4155489,2017.0,2018.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,2561 LAKE SHORE BLVD W,4,14,2019-03-11,79,Evaluation needs to be conducted in 2 years,14,4.0,4.0,5.0,4.0,,2.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,4.0,,W0336,43.6088644692,-79.4900435258,305588.026,4829658.026000001
-892135,4154287,2017.0,2018.0,1958.0,PRIVATE,5,York South-Weston,2250 KEELE ST,3,10,2019-03-11,72,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,3.0,5.0,,4.0,,,3.0,4.0,5.0,4.0,3.0,3.0,,4.0,3.0,,W0529,43.701887925200005,-79.4769449452,306642.696,4839992.584
-892136,4289106,2018.0,2018.0,2002.0,PRIVATE,5,York South-Weston,2252 KEELE ST,3,15,2019-03-11,73,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,2.0,5.0,,4.0,,4.0,5.0,3.0,5.0,4.0,3.0,3.0,,4.0,3.0,,W0529,43.701953816999996,-79.476918201,306648.92699999997,4840009.031
-892137,4484430,2019.0,2018.0,1954.0,PRIVATE,14,Toronto-Danforth,39 TORRENS AVE,3,28,2019-03-11,85,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,5.0,,4.0,,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1421,43.690380807299995,-79.35296741970001,316637.436,4838724.393999999
-892138,4153367,2017.0,2018.0,1957.0,PRIVATE,12,Toronto-St. Paul's,159 RUSSELL HILL RD,4,18,2019-03-11,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,3.0,4.0,4.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,4.0,,S1237,43.681900098,-79.405861723,312374.18100000004,4837776.963
-892139,4153369,2017.0,2018.0,1959.0,PRIVATE,12,Toronto-St. Paul's,221 RUSSELL HILL RD,4,18,2019-03-11,75,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,4.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,4.0,,S1237,43.682871103000004,-79.406514542,312321.425,4837884.787
-892140,4153941,2017.0,2018.0,1937.0,PRIVATE,12,Toronto-St. Paul's,540 RUSSELL HILL RD,5,32,2019-03-11,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,3.0,4.0,4.0,3.0,5.0,3.0,4.0,4.0,4.0,3.0,4.0,,S1226,43.7028383782,-79.4156643118,311581.779,4840101.39
-892141,4153940,2017.0,2018.0,1954.0,PRIVATE,12,Toronto-St. Paul's,555 RUSSELL HILL RD,5,32,2019-03-11,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,5.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,S1226,43.7029404045,-79.4151517899,311623.075,4840112.767
-892142,4153050,2017.0,2018.0,1967.0,PRIVATE,4,Parkdale-High Park,244 RONCESVALLES AVE,3,22,2019-03-11,65,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S0432,43.6458748737,-79.4493623432,308869.575,4833770.791999999
-892143,4153049,2017.0,2018.0,1969.0,PRIVATE,4,Parkdale-High Park,246 RONCESVALLES AVE,3,22,2019-03-11,65,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S0432,43.64608157479999,-79.4494284901,308864.225,4833793.7530000005
-892144,4154330,2017.0,2018.0,1971.0,PRIVATE,5,York South-Weston,1747-1755 JANE ST,15,102,2019-03-11,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,,4.0,4.0,4.0,4.0,5.0,3.0,3.0,5.0,4.0,,W0528,43.704957416999996,-79.503637456,304459.00399999996,4840344.142
-892145,4154333,2017.0,2018.0,1970.0,PRIVATE,5,York South-Weston,1855 JANE ST,17,206,2019-03-11,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,5.0,3.0,3.0,5.0,,3.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,3.0,,W0528,43.708111644700004,-79.50445776149999,304425.229,4840683.807
-892146,4155068,2017.0,2018.0,1959.0,PRIVATE,9,Davenport,2208 DUFFERIN ST,4,18,2019-03-11,63,Evaluation needs to be conducted in 1 year,16,3.0,2.0,4.0,3.0,3.0,3.0,,2.0,,,3.0,4.0,5.0,3.0,2.0,3.0,4.0,3.0,3.0,,S0922,43.69067643,-79.44845877600001,308939.113,4838748.9969999995
-892147,4153368,2017.0,2018.0,1960.0,PRIVATE,12,Toronto-St. Paul's,77 CLARENDON AVE,6,10,2019-03-11,66,Evaluation needs to be conducted in 2 years,18,3.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,4.0,,4.0,4.0,5.0,2.0,3.0,2.0,3.0,3.0,3.0,,S1237,43.682364473999996,-79.40603640100001,312360.039,4837828.541999999
-892148,4155069,2017.0,2018.0,1959.0,PRIVATE,9,Davenport,2204 DUFFERIN ST,4,28,2019-03-11,59,Evaluation needs to be conducted in 1 year,16,2.0,2.0,3.0,3.0,3.0,4.0,,2.0,,,3.0,3.0,4.0,3.0,2.0,3.0,4.0,3.0,3.0,,S0922,43.690434125,-79.448380394,308945.447,4838722.081
-892149,4153982,2017.0,2018.0,1961.0,PRIVATE,8,Eglinton-Lawrence,515 CHAPLIN CRES,8,111,2019-03-11,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,3.0,3.0,4.0,4.0,3.0,4.0,,N0833,43.704952062,-79.424249279,310889.372,4840336.498
-892150,4153981,2017.0,2018.0,1961.0,PRIVATE,8,Eglinton-Lawrence,525 CHAPLIN CRES,8,110,2019-03-11,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,5.0,3.0,3.0,4.0,3.0,4.0,4.0,,N0833,43.705350718000005,-79.42454329899999,310865.636,4840380.768
-892151,4152950,2017.0,2018.0,1962.0,PRIVATE,4,Parkdale-High Park,1 SPRINGHURST AVE,5,41,2019-03-11,72,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,5.0,3.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,,S0437,43.6346126017,-79.4260955967,310747.684,4832520.944
-892152,4153995,2017.0,2018.0,1948.0,PRIVATE,12,Toronto-St. Paul's,869 AVENUE RD,3,10,2019-03-11,70,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,3.0,3.0,4.0,,4.0,,,3.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,,S1227,43.6989299659,-79.4057564646,312380.792,4839668.024
-892153,4245700,2017.0,2018.0,1930.0,PRIVATE,12,Toronto-St. Paul's,26 BALMORAL AVE,3,28,2019-03-08,71,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,4.0,3.0,3.0,,4.0,,,4.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1238,43.6859334323,-79.3944337437,313295.262,4838225.204
-892154,4156744,2018.0,2018.0,1945.0,PRIVATE,9,Davenport,36 ROSECLIFFE AVE,4,26,2019-03-08,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,4.0,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,2.0,,S0925,43.683961366000005,-79.443796242,309315.445,4838003.208000001
-892155,4153770,2017.0,2018.0,1957.0,PRIVATE,12,Toronto-St. Paul's,44 BALLIOL ST,4,30,2019-03-08,67,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,4.0,5.0,3.0,3.0,3.0,,4.0,3.0,,S1233,43.6979650851,-79.3950974704,313240.055,4839561.859
-892156,4153366,2017.0,2018.0,1926.0,PRIVATE,12,Toronto-St. Paul's,400 AVENUE RD,4,41,2019-03-08,74,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,3.0,4.0,3.0,,4.0,,,4.0,4.0,5.0,2.0,4.0,3.0,3.0,3.0,4.0,,S1237,43.682697543900005,-79.4006048601,312798.17100000003,4837865.095
-892157,4153417,2017.0,2018.0,1885.0,SOCIAL HOUSING,11,University-Rosedale,87 BELLEVUE AVE,3,28,2019-03-08,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,3.0,4.0,,4.0,,,2.0,4.0,2.0,3.0,3.0,3.0,,3.0,,4.0,S1143,43.656179273,-79.40360132,312559.687,4834919.685
-892158,4153418,2018.0,2018.0,1988.0,PRIVATE,11,University-Rosedale,99 BELLEVUE AVE,4,16,2019-03-08,64,Evaluation needs to be conducted in 1 year,17,3.0,4.0,3.0,3.0,3.0,4.0,2.0,3.0,,,3.0,3.0,2.0,3.0,4.0,4.0,4.0,4.0,2.0,,S1143,43.656693312,-79.403904864,312535.13399999996,4834976.766
-892159,4155900,2017.0,2018.0,1895.0,PRIVATE,11,University-Rosedale,88 OXFORD ST,4,11,2019-03-08,63,Evaluation needs to be conducted in 1 year,15,3.0,4.0,2.0,3.0,3.0,3.0,,4.0,,,3.0,3.0,2.0,3.0,4.0,3.0,4.0,3.0,,,S1143,43.655848559,-79.404681489,312472.609,4834882.84
-892160,4156004,2018.0,2018.0,1945.0,PRIVATE,9,Davenport,34 ROSECLIFFE AVE,4,26,2019-03-08,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,2.0,3.0,3.0,3.0,,3.0,,4.0,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,2.0,,S0925,43.683920089,-79.44397293600001,309292.74600000004,4837996.205
-892161,4153947,2017.0,2018.0,1967.0,PRIVATE,12,Toronto-St. Paul's,130 OLD FOREST HILL RD,6,42,2019-03-08,83,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,3.0,5.0,3.0,,5.0,4.0,4.0,3.0,3.0,5.0,5.0,3.0,5.0,5.0,4.0,4.0,,S1225,43.7011738617,-79.42345147479999,310954.318,4839915.848999999
-892162,4155140,2017.0,2018.0,1960.0,PRIVATE,5,York South-Weston,1848 JANE ST,3,21,2019-03-08,56,Evaluation needs to be conducted in 1 year,16,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,2.0,3.0,3.0,3.0,2.0,2.0,2.0,,W0525,43.7079730961,-79.5055309072,304338.744,4840668.422
-892163,4155141,2018.0,2018.0,1954.0,PRIVATE,5,York South-Weston,1860 JANE ST,4,40,2019-03-08,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,,,3.0,3.0,5.0,2.0,4.0,3.0,2.0,3.0,2.0,,W0525,43.708761091999996,-79.50573988,304321.91,4840755.962
-892164,4327919,2018.0,2018.0,1960.0,PRIVATE,9,Davenport,382 DOVERCOURT RD,3,18,2019-03-08,59,Evaluation needs to be conducted in 1 year,14,2.0,2.0,4.0,2.0,,3.0,,4.0,,,2.0,2.0,4.0,3.0,3.0,3.0,,3.0,4.0,,S0934,43.652044902,-79.4261489832,310741.707,4834457.583000001
-892165,4327922,2018.0,2018.0,1924.0,PRIVATE,9,Davenport,394 DOVERCOURT RD,3,20,2019-03-08,60,Evaluation needs to be conducted in 1 year,14,3.0,2.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,4.0,4.0,3.0,3.0,2.0,,3.0,,,S0934,43.652361602700005,-79.42623152029999,310735.016,4834492.7639999995
-892166,4153988,2017.0,2018.0,1930.0,PRIVATE,12,Toronto-St. Paul's,2094 YONGE ST,3,10,2019-03-08,71,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,3.0,4.0,4.0,,3.0,,3.0,3.0,4.0,5.0,3.0,3.0,3.0,,4.0,,,S1227,43.702336489,-79.3977985122,313021.757,4840047.252
-892167,4288799,2017.0,2018.0,1920.0,PRIVATE,19,Beaches-East York,2393 QUEEN ST E,3,23,2019-03-08,71,Evaluation needs to be conducted in 2 years,14,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,,,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,,,S1942,43.6725074759,-79.286877033,321970.23600000003,4836750.21
-892168,4288792,2017.0,2018.0,1920.0,PRIVATE,19,Beaches-East York,2401 QUEEN ST E,3,21,2019-03-08,77,Evaluation needs to be conducted in 2 years,13,4.0,4.0,4.0,3.0,4.0,4.0,,,,,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,,,S1942,43.672671514099996,-79.286127172,322030.657,4836768.588
-892169,4153668,2017.0,2018.0,1920.0,PRIVATE,19,Beaches-East York,2449 QUEEN ST E,4,29,2019-03-08,72,Evaluation needs to be conducted in 2 years,13,3.0,3.0,4.0,3.0,4.0,4.0,,4.0,,,3.0,3.0,,4.0,4.0,4.0,,4.0,,,S1942,43.6730490225,-79.2843149122,322176.688,4836810.9
-892170,4153669,2017.0,2018.0,1920.0,PRIVATE,19,Beaches-East York,2451 QUEEN ST E,4,29,2019-03-08,76,Evaluation needs to be conducted in 2 years,14,4.0,3.0,4.0,3.0,4.0,4.0,,4.0,,,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,,,S1942,43.6731276017,-79.28409669439999,322194.262,4836819.675
-892171,4153670,2017.0,2018.0,1920.0,PRIVATE,19,Beaches-East York,2453 QUEEN ST E,4,16,2019-03-08,73,Evaluation needs to be conducted in 2 years,14,3.0,3.0,3.0,3.0,4.0,3.0,,4.0,,,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,,,S1942,43.6731843525,-79.2839314584,322207.57,4836826.0139999995
-892172,4153416,2017.0,2018.0,1960.0,SOCIAL HOUSING,11,University-Rosedale,25 LEONARD AVE,6,77,2019-03-08,73,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,3.0,5.0,3.0,,3.0,3.0,,3.0,4.0,4.0,4.0,,4.0,,4.0,,4.0,S1143,43.6538260344,-79.4041248696,312518.031,4834657.24
-892173,4153944,2017.0,2018.0,1950.0,PRIVATE,12,Toronto-St. Paul's,117 OLD FOREST HILL RD,3,28,2019-03-08,81,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,5.0,,3.0,4.0,3.0,5.0,4.0,3.0,5.0,,4.0,4.0,,S1225,43.7013796068,-79.4227406516,311011.589,4839938.762
-892174,4154497,2017.0,2018.0,1965.0,PRIVATE,8,Eglinton-Lawrence,1079 LAWRENCE AVE W,3,15,2019-03-08,80,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,,,4.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,,N0826,43.711974339899996,-79.4627656492,307785.025,4841113.531
-892175,4153359,2017.0,2018.0,1928.0,PRIVATE,12,Toronto-St. Paul's,7 EDMUND AVE,6,68,2019-03-08,77,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,4.0,3.0,,4.0,4.0,4.0,4.0,3.0,5.0,3.0,4.0,4.0,4.0,4.0,3.0,,S1237,43.682032461000006,-79.400826171,312780.15,4837792.134
-892176,4152606,2017.0,2018.0,1964.0,PRIVATE,20,Scarborough Southwest,1065 VICTORIA PARK AVE,6,37,2019-03-08,76,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,4.0,4.0,,3.0,3.0,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2028,43.706999577,-79.294868767,321316.141,4840581.495
-892177,4451371,2018.0,2018.0,2017.0,PRIVATE,17,Don Valley North,123 PARKWAY FOREST DR,20,188,2019-03-08,99,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,,5.0,5.0,5.0,5.0,,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,N1730,,,317528.543,4848086.948
-892178,4245702,2017.0,2018.0,1930.0,PRIVATE,12,Toronto-St. Paul's,28 BALMORAL AVE,3,27,2019-03-08,72,Evaluation needs to be conducted in 2 years,15,3.0,5.0,5.0,3.0,3.0,3.0,,4.0,,,4.0,3.0,5.0,3.0,4.0,3.0,,3.0,3.0,,S1238,43.685742821000005,-79.3945524551,313285.719,4838204.016
-892179,4153344,2017.0,2018.0,1930.0,SOCIAL HOUSING,12,Toronto-St. Paul's,497 ST CLAIR AVE W,4,19,2019-03-07,69,Evaluation needs to be conducted in 2 years,15,4.0,4.0,3.0,3.0,4.0,4.0,,3.0,,,3.0,4.0,5.0,2.0,4.0,3.0,3.0,3.0,,,S1236,43.683093620600005,-79.4174370824,311440.998,4837907.6110000005
-892180,4154579,2017.0,2018.0,1960.0,PRIVATE,6,York Centre,8 VINCI CRES,4,33,2019-03-07,76,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,3.0,4.0,,4.0,,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0629,43.7362371647,-79.4461261454,309124.24,4843809.751
-892181,4153362,2017.0,2018.0,1931.0,PRIVATE,12,Toronto-St. Paul's,394 AVENUE RD,6,41,2019-03-07,75,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,3.0,3.0,3.0,3.0,4.0,,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,3.0,,S1237,43.681931003100004,-79.3998962312,312855.399,4837779.994
-892182,4153361,2017.0,2018.0,1931.0,PRIVATE,12,Toronto-St. Paul's,396 AVENUE RD,6,51,2019-03-07,73,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,3.0,3.0,3.0,3.0,3.0,,4.0,4.0,5.0,3.0,4.0,3.0,,4.0,3.0,,S1237,43.682100491099995,-79.4000016066,312846.882,4837798.815
-892183,4153360,2017.0,2018.0,1937.0,PRIVATE,12,Toronto-St. Paul's,398 AVENUE RD,6,39,2019-03-07,74,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,4.0,,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,3.0,,S1237,43.6822543813,-79.40009921810001,312838.993,4837815.904
-892184,4167764,2017.0,2018.0,1969.0,PRIVATE,20,Scarborough Southwest,544 BIRCHMOUNT RD,11,131,2019-03-07,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,E2029,43.711075654,-79.270595187,323271.08,4841039.404
-892185,4152612,2017.0,2018.0,1974.0,PRIVATE,20,Scarborough Southwest,552 BIRCHMOUNT RD,7,61,2019-03-07,74,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,,3.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,,E2029,43.7117373497,-79.27084693229999,323250.849,4841111.907
-892186,4153948,2017.0,2018.0,1963.0,PRIVATE,8,Eglinton-Lawrence,625 ROSELAWN AVE,9,91,2019-03-07,90,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,5.0,4.0,5.0,4.0,4.0,5.0,,5.0,5.0,5.0,3.0,4.0,4.0,5.0,4.0,4.0,,N0833,43.705666038000004,-79.422923285,310996.166,4840415.915
-892187,4155226,2017.0,2018.0,1947.0,PRIVATE,3,Etobicoke-Lakeshore,285 PARK LAWN RD,4,29,2019-03-07,71,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,4.0,4.0,3.0,,4.0,,3.0,4.0,3.0,5.0,3.0,3.0,4.0,2.0,3.0,4.0,,W0329,43.63456194649999,-79.4922664925,305408.295,4832512.859
-892188,4155227,2017.0,2018.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,301 PARK LAWN RD,4,25,2019-03-07,71,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,4.0,3.0,,4.0,2.0,4.0,4.0,2.0,5.0,4.0,3.0,4.0,5.0,3.0,2.0,,W0329,43.6350512379,-79.49246019479999,305392.658,4832567.215
-892189,4153980,2017.0,2018.0,1959.0,PRIVATE,8,Eglinton-Lawrence,665 ROSELAWN AVE,5,87,2019-03-07,85,Evaluation needs to be conducted in 2 years,19,5.0,5.0,5.0,4.0,4.0,3.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,5.0,,N0833,43.705178016000005,-79.425108275,310820.12,4840361.5430000005
-892190,4153979,2017.0,2018.0,1953.0,PRIVATE,8,Eglinton-Lawrence,675 ROSELAWN AVE,6,52,2019-03-07,68,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,4.0,,N0833,43.70502432600001,-79.42582772600001,310762.152,4840344.42
-892191,4153978,2017.0,2018.0,1965.0,PRIVATE,8,Eglinton-Lawrence,680 ROSELAWN AVE,9,64,2019-03-07,82,Evaluation needs to be conducted in 2 years,18,5.0,5.0,5.0,4.0,4.0,3.0,4.0,4.0,5.0,,5.0,3.0,5.0,4.0,4.0,4.0,3.0,3.0,4.0,,N0833,43.705715201000004,-79.425361614,310799.649,4840421.205
-892192,4153775,2017.0,2018.0,1930.0,PRIVATE,12,Toronto-St. Paul's,15 PENROSE RD,3,26,2019-03-07,69,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,3.0,3.0,3.0,,4.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,3.0,,S1228,43.7029512593,-79.38891694979999,313737.525,4840116.468
-892193,4154325,2017.0,2018.0,1958.0,PRIVATE,5,York South-Weston,1605 JANE ST,3,28,2019-03-07,91,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,4.0,4.0,5.0,,4.0,,4.0,5.0,4.0,5.0,4.0,5.0,5.0,4.0,5.0,4.0,,W0528,43.700297074,-79.50255884479999,304578.221,4839815.666
-892194,4154326,2017.0,2018.0,1960.0,PRIVATE,5,York South-Weston,1607 JANE ST,3,29,2019-03-07,65,Evaluation needs to be conducted in 1 year,16,3.0,4.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,3.0,4.0,4.0,,W0528,43.7007645631,-79.5028199855,304557.17699999997,4839867.602
-892195,4155157,2017.0,2018.0,1963.0,PRIVATE,5,York South-Weston,29 CHURCH ST,10,63,2019-03-07,60,Evaluation needs to be conducted in 1 year,17,3.0,2.0,5.0,2.0,3.0,3.0,,3.0,3.0,,4.0,4.0,2.0,2.0,3.0,3.0,4.0,3.0,2.0,,W0524,43.7037504751,-79.52345642899999,302893.972,4840199.653
-892196,4153774,2017.0,2018.0,1928.0,PRIVATE,12,Toronto-St. Paul's,5 DE SAVERY CRES,3,31,2019-03-07,79,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,3.0,3.0,4.0,,4.0,,,3.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,,,S1228,43.7028694866,-79.3891072895,313722.196,4840107.363
-892197,4154994,2017.0,2018.0,1955.0,PRIVATE,12,Toronto-St. Paul's,1592 BATHURST ST,4,35,2019-03-07,77,Evaluation needs to be conducted in 2 years,14,4.0,4.0,5.0,3.0,3.0,3.0,,5.0,,,4.0,3.0,5.0,3.0,3.0,5.0,,4.0,,,S1229,43.687646650699996,-79.4205557001,311189.091,4838413.223999999
-892198,4154993,2017.0,2018.0,1948.0,PRIVATE,12,Toronto-St. Paul's,1594 BATHURST ST,3,22,2019-03-07,74,Evaluation needs to be conducted in 2 years,14,3.0,4.0,4.0,3.0,3.0,4.0,,4.0,,,4.0,3.0,5.0,3.0,3.0,5.0,,4.0,,,S1229,43.687863917,-79.4206373441,311182.48699999996,4838437.357
-892199,4154990,2017.0,2018.0,1923.0,PRIVATE,12,Toronto-St. Paul's,1602 BATHURST ST,4,32,2019-03-07,74,Evaluation needs to be conducted in 2 years,14,3.0,4.0,5.0,3.0,3.0,3.0,,4.0,,,3.0,4.0,5.0,4.0,3.0,4.0,,4.0,,,S1229,43.688611529700005,-79.4209411738,311157.917,4838520.396000001
-892200,4154999,2017.0,2018.0,1950.0,PRIVATE,12,Toronto-St. Paul's,1654 BATHURST ST,5,72,2019-03-07,86,Evaluation needs to be conducted in 3 years,17,4.0,4.0,5.0,5.0,4.0,4.0,,4.0,5.0,5.0,5.0,4.0,5.0,4.0,4.0,3.0,,4.0,4.0,,S1224,43.6945897541,-79.4235472472,310947.238,4839184.355
-892201,4155003,2017.0,2018.0,1949.0,PRIVATE,12,Toronto-St. Paul's,1996 BATHURST ST,4,39,2019-03-07,66,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,3.0,3.0,3.0,,4.0,,3.0,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1224,43.6991289014,-79.425200068,310813.582,4839688.522
-892202,4155002,2017.0,2018.0,1954.0,PRIVATE,12,Toronto-St. Paul's,1998 BATHURST ST,3,19,2019-03-07,66,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,3.0,3.0,3.0,,4.0,,3.0,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,3.0,,S1224,43.699416778,-79.4253015871,310805.37100000004,4839720.498
-892203,4152611,2017.0,2018.0,1972.0,PRIVATE,20,Scarborough Southwest,560 BIRCHMOUNT RD,13,103,2019-03-07,79,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,5.0,3.0,4.0,4.0,5.0,4.0,4.0,,E2029,43.7123365662,-79.2710095666,323237.558,4841178.443
-892204,4152610,2017.0,2018.0,1969.0,PRIVATE,20,Scarborough Southwest,570 BIRCHMOUNT RD,10,112,2019-03-07,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,5.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,E2029,43.7133504142,-79.2715314234,323195.19399999996,4841290.963
-892205,4154920,2017.0,2018.0,1963.0,PRIVATE,16,Don Valley East,1264 YORK MILLS RD,7,76,2019-03-07,84,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,,5.0,5.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,,N1622,43.7611846362,-79.3275443337,318670.516,4846594.241
-892206,4155509,2017.0,2018.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,2704 LAKE SHORE BLVD W,4,30,2019-03-07,68,Evaluation needs to be conducted in 2 years,15,4.0,4.0,3.0,3.0,4.0,3.0,,4.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0335,43.6028754682,-79.4965836376,305060.126,4828992.645
-892207,4153953,2017.0,2018.0,1961.0,PRIVATE,8,Eglinton-Lawrence,650 EGLINTON AVE W,8,102,2019-03-07,83,Evaluation needs to be conducted in 2 years,19,5.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0832,43.702630066400005,-79.4192210423,311295.136,4840077.96
-892208,4153943,2018.0,2018.0,1950.0,PRIVATE,12,Toronto-St. Paul's,697 EGLINTON AVE W,4,33,2019-03-07,72,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,4.0,3.0,5.0,4.0,4.0,,4.0,4.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,2.0,,S1225,43.701949088,-79.42003485800001,311209.892,4839986.927
-892209,4296586,2018.0,2018.0,1950.0,PRIVATE,12,Toronto-St. Paul's,699 EGLINTON AVE W,4,27,2019-03-07,73,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,3.0,5.0,5.0,4.0,,4.0,4.0,3.0,5.0,3.0,3.0,4.0,3.0,3.0,2.0,,S1225,43.701892029,-79.420288428,311187.066,4839991.887
-892210,4296588,2018.0,2018.0,1950.0,PRIVATE,12,Toronto-St. Paul's,701 EGLINTON AVE W,4,32,2019-03-07,70,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,4.0,3.0,5.0,5.0,4.0,,4.0,4.0,4.0,5.0,2.0,3.0,3.0,3.0,2.0,2.0,,S1225,43.701862989,-79.42056547199999,311172.27,4839988.114
-892211,4153099,2017.0,2018.0,1985.0,PRIVATE,9,Davenport,685 LANSDOWNE AVE,3,30,2019-03-07,41,Building Audit,16,2.0,2.0,3.0,1.0,3.0,3.0,,2.0,,,2.0,1.0,2.0,1.0,2.0,3.0,2.0,2.0,2.0,,S0930,43.65900140350001,-79.442459426,309425.457,4835229.411
-892212,4155519,2017.0,2018.0,1958.0,PRIVATE,3,Etobicoke-Lakeshore,50 FOURTH ST,3,11,2019-03-07,80,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,3.0,5.0,,4.0,,,5.0,4.0,5.0,4.0,3.0,3.0,,4.0,4.0,,W0335,43.5991188211,-79.5012245162,304685.481,4828575.294
-892213,4154575,2017.0,2018.0,1960.0,PRIVATE,6,York Centre,45 FAYWOOD BLVD,4,33,2019-03-07,76,Evaluation needs to be conducted in 2 years,17,4.0,4.0,3.0,4.0,3.0,4.0,,4.0,,3.0,3.0,4.0,5.0,5.0,3.0,4.0,4.0,4.0,4.0,,N0629,43.7368172463,-79.4465426637,309090.649,4843874.172
-892214,4154576,2017.0,2018.0,1960.0,PRIVATE,6,York Centre,55 FAYWOOD BLVD,4,33,2019-03-07,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,3.0,4.0,,4.0,,,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,N0629,43.7374755438,-79.4464332774,309099.415,4843947.308999999
-892215,4154578,2017.0,2018.0,1960.0,PRIVATE,6,York Centre,30 VINCI CRES,4,33,2019-03-07,73,Evaluation needs to be conducted in 2 years,17,4.0,3.0,3.0,4.0,3.0,4.0,,4.0,,3.0,3.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,N0629,43.736994196000005,-79.4460498433,309130.334,4843893.855
-892216,4154577,2017.0,2018.0,1960.0,PRIVATE,6,York Centre,59 VINCI CRES,4,33,2019-03-07,78,Evaluation needs to be conducted in 2 years,17,4.0,4.0,3.0,4.0,3.0,4.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,N0629,43.7378403502,-79.4465142919,309092.864,4843987.8319999995
-892217,4153773,2017.0,2018.0,1956.0,PRIVATE,15,Don Valley West,501 MOUNT PLEASANT RD,4,28,2019-03-07,84,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,4.0,4.0,5.0,5.0,4.0,4.0,4.0,,4.0,4.0,,N1534,43.7014503061,-79.3870380708,313889.185,4839949.914
-892218,4153777,,2018.0,1955.0,PRIVATE,12,Toronto-St. Paul's,676 MOUNT PLEASANT RD,3,23,2019-03-07,81,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,3.0,3.0,,3.0,,,5.0,5.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S1228,43.7056593617,-79.3894538234,313693.856,4840417.278
-892219,4154344,2017.0,2018.0,1963.0,PRIVATE,5,York South-Weston,1524 LAWRENCE AVE W,6,76,2019-03-07,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,5.0,5.0,4.0,5.0,3.0,4.0,4.0,3.0,,W0526,43.707356219,-79.48503904399999,305989.957,4840600.919
-892220,4155013,2017.0,2018.0,1930.0,PRIVATE,9,Davenport,240 NORTHCLIFFE BLVD,4,46,2019-03-07,71,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,4.0,2.0,4.0,,4.0,,,4.0,2.0,5.0,3.0,4.0,4.0,,4.0,2.0,,S0925,43.6834994432,-79.4433736309,309349.814,4837950.959
-892221,4155506,2017.0,2018.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,2660 LAKE SHORE BLVD W,4,15,2019-03-07,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,4.0,3.0,5.0,2.0,3.0,3.0,,3.0,3.0,,W0335,43.6035699967,-79.4939393682,305273.57899999997,4829069.811000001
-892222,4155507,2017.0,2018.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,2666 LAKE SHORE BLVD W,4,16,2019-03-07,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0335,43.6034395527,-79.4942895822,305245.309,4829055.318
-892223,4155014,2017.0,2018.0,1952.0,PRIVATE,9,Davenport,345 WESTMOUNT AVE,3,29,2019-03-07,63,Evaluation needs to be conducted in 1 year,15,3.0,5.0,3.0,3.0,2.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S0925,43.684414026800006,-79.4441626996,309286.131,4838052.524
-892224,4155015,2017.0,2018.0,1952.0,PRIVATE,9,Davenport,355 WESTMOUNT AVE,3,29,2019-03-07,67,Evaluation needs to be conducted in 2 years,15,3.0,5.0,3.0,3.0,4.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S0925,43.684753041,-79.44430348,309270.037,4838105.654
-892225,4155016,2017.0,2018.0,1952.0,PRIVATE,9,Davenport,365 WESTMOUNT AVE,3,29,2019-03-07,64,Evaluation needs to be conducted in 1 year,15,3.0,5.0,3.0,3.0,2.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,4.0,,3.0,3.0,,S0925,43.6850733378,-79.4444390829,309263.80100000004,4838125.757
-892226,4155019,2017.0,2018.0,1950.0,PRIVATE,9,Davenport,370 WESTMOUNT AVE,3,29,2019-03-07,67,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,2.0,2.0,3.0,,4.0,,,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,3.0,,S0925,43.6852037341,-79.4451995496,309202.478,4838140.205
-892227,4155017,2017.0,2018.0,1953.0,PRIVATE,9,Davenport,375 WESTMOUNT AVE,3,30,2019-03-07,79,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,3.0,4.0,5.0,,4.0,,,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,4.0,,S0925,43.685368199399996,-79.4445572925,309254.249,4838158.509
-892228,4155712,2017.0,2018.0,1965.0,PRIVATE,16,Don Valley East,44 VALLEY WOODS RD,22,263,2019-03-07,94,Evaluation needs to be conducted in 3 years,20,5.0,4.0,5.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,5.0,N1625,43.75464500100001,-79.33343610899999,318197.315,4845867.709
-892229,4153354,2017.0,2018.0,1929.0,PRIVATE,12,Toronto-St. Paul's,795 ST CLAIR AVE W,3,19,2019-03-07,61,Evaluation needs to be conducted in 1 year,14,2.0,4.0,3.0,2.0,2.0,3.0,,3.0,,,3.0,3.0,3.0,4.0,4.0,4.0,,3.0,,,S1234,43.6804983237,-79.4302086848,310411.49,4837618.363
-892230,4154918,2018.0,2018.0,1959.0,PRIVATE,16,Don Valley East,1284 YORK MILLS RD,7,63,2019-03-06,73,Evaluation needs to be conducted in 2 years,19,3.0,4.0,5.0,4.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,5.0,3.0,3.0,2.0,4.0,3.0,3.0,,N1622,43.761593976099995,-79.32540301819999,318842.838,4846640.075
-892231,4154915,2017.0,2018.0,1961.0,PRIVATE,16,Don Valley East,1325 YORK MILLS RD,4,64,2019-03-06,78,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,5.0,4.0,3.0,3.0,N1625,43.7616285056,-79.3217659908,319135.683,4846644.525
-892232,4153757,2017.0,2018.0,1957.0,PRIVATE,15,Don Valley West,657 BALLIOL ST,4,29,2019-03-06,67,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,3.0,3.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,4.0,,N1534,43.701182908,-79.3760801591,314772.44,4839921.468
-892233,4153145,2017.0,2018.0,1932.0,PRIVATE,9,Davenport,10 BEACONSFIELD AVE,4,11,2019-03-06,76,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,,,4.0,3.0,1.0,4.0,5.0,3.0,4.0,5.0,,,S0937,43.643432753,-79.4253164727,310809.709,4833500.853
-892234,4153758,2017.0,2018.0,1968.0,PRIVATE,12,Toronto-St. Paul's,221 BALLIOL ST,17,272,2019-03-06,85,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,4.0,5.0,3.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,S1233,43.698438896499994,-79.3893834002,313700.592,4839615.097
-892235,4250262,2017.0,2018.0,1989.0,SOCIAL HOUSING,11,University-Rosedale,805 BLOOR ST W,4,24,2019-03-06,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,S1132,43.662679383000004,-79.421476232,311117.231,4835640.346
-892236,4153095,2017.0,2018.0,1930.0,PRIVATE,9,Davenport,220 DELAWARE AVE,4,16,2019-03-06,83,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,5.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S0932,43.66212045020001,-79.4285552093,310546.61600000004,4835576.772
-892237,4154584,2017.0,2018.0,1956.0,PRIVATE,6,York Centre,11 ROSSEAU RD,3,11,2019-03-06,81,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,4.0,4.0,4.0,,4.0,,4.0,4.0,4.0,5.0,4.0,5.0,4.0,,4.0,4.0,,N0629,43.7424088558,-79.43656791779999,309893.66,4844495.901000001
-892238,4154585,2017.0,2018.0,1951.0,PRIVATE,6,York Centre,15 ROSSEAU RD,3,11,2019-03-06,80,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,4.0,4.0,5.0,,3.0,,3.0,4.0,5.0,5.0,4.0,4.0,4.0,,4.0,4.0,,N0629,43.742555906599996,-79.436710293,309882.18100000004,4844512.23
-892239,4154586,2017.0,2018.0,1953.0,PRIVATE,6,York Centre,17 ROSSEAU RD,3,11,2019-03-06,76,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,4.0,4.0,4.0,,4.0,4.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,,N0629,43.742708916400005,-79.4368688543,309869.398,4844529.22
-892240,4153693,2017.0,2018.0,1950.0,PRIVATE,19,Beaches-East York,567 KINGSTON RD,4,15,2019-03-06,73,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,3.0,4.0,4.0,,3.0,,4.0,3.0,3.0,5.0,3.0,4.0,4.0,,3.0,4.0,,S1939,43.678222999999996,-79.30005820699999,320905.57,4837383.518
-892241,4153694,2017.0,2018.0,1940.0,PRIVATE,19,Beaches-East York,569 KINGSTON RD,4,15,2019-03-06,66,Evaluation needs to be conducted in 2 years,16,4.0,3.0,3.0,3.0,3.0,4.0,,3.0,,4.0,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,4.0,,S1939,43.6783240562,-79.29962127270001,320941.034,4837393.877
-892242,4253010,2017.0,2018.0,2007.0,SOCIAL HOUSING,9,Davenport,46 DELAWARE AVE,3,14,2019-03-06,80,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S0935,43.655578195299995,-79.42613727220001,310742.29600000003,4834850.132
-892243,4475546,2019.0,2018.0,2016.0,PRIVATE,19,Beaches-East York,763 WOODBINE AVE,7,64,2019-03-06,82,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,S1935,43.680776029899995,-79.3103915859,320072.003,4837664.262
-892244,4153236,2017.0,2018.0,1967.0,PRIVATE,11,University-Rosedale,280 ST GEORGE ST,15,85,2019-03-06,79,Evaluation needs to be conducted in 2 years,19,5.0,5.0,3.0,4.0,4.0,5.0,4.0,3.0,4.0,4.0,5.0,5.0,5.0,3.0,3.0,4.0,3.0,3.0,3.0,,S1127,43.673984446000006,-79.4033081754,312581.298,4836896.819
-892245,4153146,2017.0,2018.0,1915.0,PRIVATE,9,Davenport,1182 QUEEN ST W,3,25,2019-03-06,64,Evaluation needs to be conducted in 1 year,14,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,4.0,3.0,3.0,4.0,3.0,,3.0,,,S0937,43.6430244087,-79.4258043729,310770.385,4833455.456
-892246,4154599,2017.0,2018.0,1957.0,PRIVATE,6,York Centre,8 ROSSEAU RD,3,11,2019-03-06,88,Evaluation needs to be conducted in 3 years,16,4.0,4.0,3.0,4.0,5.0,5.0,,4.0,,5.0,5.0,4.0,5.0,4.0,4.0,5.0,,5.0,4.0,,N0629,43.7416546097,-79.43708097470001,309852.398,4844412.083000001
-892247,4154598,2017.0,2018.0,1955.0,PRIVATE,6,York Centre,10 ROSSEAU RD,3,11,2019-03-06,85,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,5.0,,4.0,,4.0,4.0,4.0,5.0,4.0,5.0,4.0,,5.0,4.0,,N0629,43.7418342537,-79.4371971572,309843.026,4844432.034
-892248,4154919,2017.0,2018.0,1970.0,PRIVATE,16,Don Valley East,1274 YORK MILLS RD,7,73,2019-03-06,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,5.0,,4.0,5.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,,N1622,43.761353758199995,-79.3264582333,318757.929,4846613.211
-892249,4153149,2019.0,2018.0,1911.0,PRIVATE,9,Davenport,225 GLADSTONE AVE,4,27,2019-03-06,50,Building Audit,14,2.0,3.0,4.0,2.0,2.0,3.0,,2.0,,,2.0,2.0,2.0,3.0,3.0,2.0,,3.0,,,S0937,43.6493592565,-79.4295355197,310468.76399999997,4834158.985
-892250,4255506,2017.0,2018.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,1 NEWHOLM RD,4,27,2019-03-06,73,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,3.0,3.0,,4.0,,4.0,4.0,3.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,,W0329,43.63650442,-79.48774356359999,305773.28,4832728.695
-892251,4155236,2017.0,2018.0,1956.0,PRIVATE,3,Etobicoke-Lakeshore,2 NEWHOLM RD,4,51,2019-03-06,65,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,,3.0,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,4.0,,W0329,43.6360380172,-79.48840230260001,305720.128,4832676.874
-892252,4155234,2017.0,2018.0,1947.0,PRIVATE,3,Etobicoke-Lakeshore,3 NEWHOLM RD,4,25,2019-03-06,78,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,5.0,,3.0,,4.0,4.0,5.0,5.0,3.0,4.0,3.0,3.0,3.0,4.0,,W0329,43.6360787547,-79.48763013840001,305782.438,4832681.407
-892253,4155233,2017.0,2018.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,5 NEWHOLM RD,4,27,2019-03-06,66,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,4.0,,W0329,43.635644689799996,-79.4874066551,305800.477,4832633.187
-892254,4155237,2017.0,2018.0,1958.0,PRIVATE,3,Etobicoke-Lakeshore,8 NEWHOLM RD,4,26,2019-03-06,80,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,4.0,3.0,,4.0,,4.0,3.0,5.0,5.0,4.0,4.0,4.0,5.0,3.0,4.0,,W0329,43.635482222700006,-79.4882224103,305734.649,4832615.13
-892255,4155751,2017.0,2018.0,1969.0,PRIVATE,5,York South-Weston,1465 LAWRENCE AVE W,20,161,2019-03-06,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,W0529,43.7073903147,-79.4803989264,306364.173,4840603.819
-892256,4152602,2019.0,2018.0,1960.0,PRIVATE,20,Scarborough Southwest,1043 VICTORIA PARK AVE,3,11,2019-03-06,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,4.0,4.0,2.0,5.0,4.0,4.0,4.0,,3.0,4.0,,E2028,43.70565801,-79.29427437060001,321364.674,4840431.61
-892257,4152603,2017.0,2018.0,1962.0,PRIVATE,20,Scarborough Southwest,1047 VICTORIA PARK AVE,3,11,2019-03-06,77,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,2.0,5.0,4.0,4.0,4.0,,4.0,3.0,,E2028,43.705966961,-79.294406813,321353.654,4840466.863
-892258,4250554,2018.0,2018.0,1898.0,PRIVATE,11,University-Rosedale,409 HURON ST,4,42,2019-03-06,37,Building Audit,15,1.0,2.0,2.0,1.0,2.0,2.0,,2.0,,1.0,2.0,1.0,2.0,3.0,,2.0,,3.0,2.0,,S1135,43.666610495,-79.400824313,312782.257,4836078.804
-892259,4153695,2017.0,2018.0,1935.0,PRIVATE,19,Beaches-East York,737 KINGSTON RD,4,24,2019-03-06,69,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,3.0,3.0,4.0,,3.0,,4.0,3.0,4.0,5.0,3.0,4.0,3.0,,3.0,2.0,,S1939,43.679351624300004,-79.2950478424,321309.51300000004,4837508.933
-892260,4152992,2018.0,2018.0,1960.0,PRIVATE,4,Parkdale-High Park,100 JAMESON AVE,10,80,2019-03-06,58,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,2.0,3.0,,2.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,2.0,,S0437,43.635119188900006,-79.43565646479999,309976.196,4832576.633
-892261,4168552,2017.0,2018.0,1968.0,PRIVATE,5,York South-Weston,2625 KEELE ST,3,10,2019-03-06,78,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,4.0,3.0,4.0,,4.0,,,4.0,3.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,,W0523,43.7206243827,-79.48020072930001,306379.805,4842074.038
-892262,4154316,2017.0,2018.0,1953.0,PRIVATE,5,York South-Weston,2639 KEELE ST,3,11,2019-03-06,70,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,3.0,4.0,,4.0,,4.0,3.0,2.0,5.0,4.0,3.0,4.0,,4.0,3.0,,W0523,43.721008261,-79.48031007510001,306370.985,4842116.682
-892263,4250265,2017.0,2018.0,1987.0,SOCIAL HOUSING,11,University-Rosedale,153 BORDEN ST,3,45,2019-03-06,61,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,2.0,,4.0,,,3.0,3.0,3.0,3.0,2.0,3.0,4.0,3.0,3.0,4.0,S1134,43.6622608263,-79.4069405435,312289.812,4835594.044
-892264,4155112,2017.0,2018.0,1915.0,PRIVATE,5,York South-Weston,83 CLEARVIEW HTS,3,40,2019-03-06,69,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,4.0,4.0,,3.0,,,3.0,4.0,4.0,3.0,3.0,4.0,,4.0,3.0,,W0532,43.692623122,-79.48295506,306158.205,4838964.161
-892265,4153467,2017.0,2018.0,1971.0,PRIVATE,11,University-Rosedale,666 SPADINA AVE,24,334,2019-03-05,79,Evaluation needs to be conducted in 2 years,19,5.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,,4.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,3.0,S1134,43.663994341999995,-79.40305137600001,312602.99199999997,4835787.955
-892266,4153972,2017.0,2018.0,1967.0,PRIVATE,8,Eglinton-Lawrence,655 BRIAR HILL AVE,4,36,2019-03-05,79,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,4.0,4.0,5.0,,3.0,5.0,3.0,4.0,4.0,5.0,3.0,3.0,5.0,3.0,4.0,4.0,,N0832,43.707577077799996,-79.4274046022,310635.081,4840626.937
-892267,4153364,2017.0,2018.0,1925.0,PRIVATE,12,Toronto-St. Paul's,340 AVENUE RD,4,24,2019-03-05,76,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,,,3.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,S1237,43.680836511,-79.39947188800001,312889.488,4837659.387
-892268,4153363,2017.0,2018.0,1925.0,PRIVATE,12,Toronto-St. Paul's,342 AVENUE RD,4,24,2019-03-05,75,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,,,4.0,3.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,,S1237,43.680979699,-79.399528877,312884.875,4837675.29
-892269,4155336,2017.0,2018.0,1954.0,PRIVATE,2,Etobicoke Centre,3 ANGLESEY BLVD,4,22,2019-03-05,81,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,3.0,4.0,,3.0,,,4.0,5.0,5.0,4.0,4.0,5.0,,4.0,4.0,,W0229,43.66525873609999,-79.5202448321,303151.607,4835923.333000001
-892270,4155335,2017.0,2018.0,1954.0,PRIVATE,2,Etobicoke Centre,7 ANGLESEY BLVD,4,19,2019-03-05,84,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,,,4.0,5.0,5.0,4.0,4.0,5.0,,4.0,4.0,,W0229,43.6651374005,-79.5205512959,303126.88800000004,4835909.86
-892271,4153970,2017.0,2018.0,1974.0,PRIVATE,8,Eglinton-Lawrence,660 BRIAR HILL AVE,8,76,2019-03-05,90,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,3.0,,4.0,4.0,,N0832,43.708094977600005,-79.4275758961,310621.226,4840684.455
-892272,4152921,2017.0,2018.0,1975.0,PRIVATE,4,Parkdale-High Park,494 RUNNYMEDE RD,3,36,2019-03-05,73,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,3.0,3.0,4.0,,3.0,,,5.0,4.0,5.0,3.0,3.0,4.0,,3.0,3.0,,S0426,43.6595761764,-79.4801030062,306389.17600000004,4835291.941000001
-892273,4154589,,2018.0,1954.0,PRIVATE,6,York Centre,23 ROSSEAU RD,3,11,2019-03-05,69,Evaluation needs to be conducted in 2 years,16,4.0,3.0,3.0,4.0,3.0,4.0,,3.0,,3.0,4.0,3.0,5.0,3.0,3.0,3.0,,4.0,3.0,,N0629,43.743260449,-79.43682504739999,309872.882,4844590.495
-892274,4154590,,2018.0,1954.0,PRIVATE,6,York Centre,25 ROSSEAU RD,3,11,2019-03-05,68,Evaluation needs to be conducted in 2 years,16,4.0,3.0,3.0,3.0,3.0,4.0,,3.0,,3.0,4.0,3.0,5.0,3.0,3.0,3.0,,4.0,3.0,,N0629,43.74342265520001,-79.43700806310001,309858.12899999996,4844608.506
-892275,4154597,2017.0,2018.0,1949.0,PRIVATE,6,York Centre,26 ROSSEAU RD,3,11,2019-03-05,66,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,4.0,,4.0,3.0,,N0629,43.743239984,-79.4377635242,309797.298,4844588.17
-892276,4153789,2017.0,2018.0,1958.0,PRIVATE,15,Don Valley West,75 PETMAN AVE,3,26,2019-03-05,71,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,3.0,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,3.0,,N1530,43.7089290278,-79.3843041849,314108.39,4840781.103
-892277,4327367,2018.0,2018.0,1949.0,PRIVATE,6,York Centre,12 ROSSEAU RD,3,11,2019-03-05,68,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,,3.0,3.0,3.0,5.0,4.0,3.0,4.0,,4.0,3.0,,N0629,43.742014423,-79.4373039157,309843.087,4844439.041
-892278,4329035,2018.0,2018.0,1949.0,PRIVATE,6,York Centre,14 ROSSEAU RD,3,11,2019-03-05,66,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,4.0,,4.0,3.0,,N0629,43.742214529399995,-79.437433562,309823.955,4844474.267
-892279,4153958,2017.0,2018.0,1962.0,PRIVATE,8,Eglinton-Lawrence,15 SHALLMAR BLVD,7,78,2019-03-05,76,Evaluation needs to be conducted in 2 years,19,4.0,5.0,5.0,4.0,3.0,4.0,3.0,3.0,5.0,4.0,4.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,N0832,43.703946443999996,-79.424475355,310871.253,4840224.76
-892280,4155074,2017.0,2018.0,1968.0,PRIVATE,9,Davenport,531 CALEDONIA RD,4,24,2019-03-05,67,Evaluation needs to be conducted in 2 years,15,3.0,4.0,3.0,3.0,2.0,3.0,,3.0,,,3.0,4.0,4.0,4.0,4.0,3.0,,4.0,3.0,,S0921,43.69126949939999,-79.46117367560001,307914.356,4838813.374
-892281,4153692,2017.0,2018.0,1960.0,PRIVATE,19,Beaches-East York,419 WOODBINE AVE,3,11,2019-03-05,69,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,4.0,4.0,,4.0,,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1938,43.67374715810001,-79.3071214297,320337.471,4836883.9569999995
-892282,4153237,2017.0,2018.0,1965.0,PRIVATE,11,University-Rosedale,276 ST GEORGE ST,9,88,2019-03-05,66,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,3.0,4.0,3.0,4.0,,3.0,2.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,S1127,43.6735780658,-79.4030693901,312600.601,4836851.692
-892283,4153233,2017.0,2018.0,1971.0,PRIVATE,11,University-Rosedale,277-283 ST GEORGE ST,10,74,2019-03-05,67,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,,4.0,3.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,,S1127,,,312646.701,4836883.399
-892284,4156293,2017.0,2018.0,1967.0,PRIVATE,8,Eglinton-Lawrence,111 RIDELLE AVE,18,139,2019-03-05,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,N0832,43.7043088813,-79.4391249601,309690.767,4840263.024
-892285,4154909,2017.0,2018.0,1962.0,PRIVATE,16,Don Valley East,67 PARKWOODS VILLAGE DR,7,78,2019-03-05,95,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,4.0,4.0,5.0,5.0,5.0,,N1625,43.7604077056,-79.32114983470001,319185.587,4846509.004
-892286,4154903,2017.0,2018.0,1963.0,PRIVATE,16,Don Valley East,70 PARKWOODS VILLAGE DR,6,65,2019-03-05,99,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,5.0,5.0,5.0,,5.0,5.0,,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,,N1625,43.7598996821,-79.3227165337,319059.553,4846452.297
-892287,4154912,,2018.0,1962.0,PRIVATE,16,Don Valley East,71 PARKWOODS VILLAGE DR,7,81,2019-03-05,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,,N1625,43.7607627903,-79.3217087274,319140.499,4846548.357
-892288,4155071,2017.0,2018.0,1960.0,PRIVATE,9,Davenport,500 GILBERT AVE,3,29,2019-03-05,80,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,4.0,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S0921,43.691812331099996,-79.4635662158,307721.469,4838873.59
-892289,4155070,2017.0,2018.0,1960.0,PRIVATE,9,Davenport,502 GILBERT AVE,3,23,2019-03-05,79,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,3.0,4.0,4.0,4.0,4.0,,4.0,4.0,,S0921,43.6919981634,-79.4636000249,307718.735,4838894.234
-892290,4154551,2017.0,2018.0,1950.0,PRIVATE,8,Eglinton-Lawrence,21 NEPTUNE DR,3,10,2019-03-05,81,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,5.0,4.0,,4.0,,5.0,5.0,4.0,5.0,4.0,,3.0,4.0,3.0,3.0,,N0823,43.7310658741,-79.4337847571,310118.82,4843235.978999999
-892291,4154550,2017.0,2018.0,1950.0,PRIVATE,8,Eglinton-Lawrence,23 NEPTUNE DR,3,10,2019-03-05,81,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,5.0,4.0,,4.0,,5.0,5.0,4.0,5.0,4.0,,3.0,4.0,3.0,3.0,,N0823,43.7309371038,-79.43391219909999,310108.565,4843221.665
-892292,4153791,2017.0,2018.0,1965.0,PRIVATE,15,Don Valley West,435 EGLINTON AVE E,12,52,2019-03-05,72,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,,N1530,43.709548032,-79.3831759737,314199.208,4840849.994
-892293,4153793,2017.0,2018.0,1965.0,PRIVATE,15,Don Valley West,485 EGLINTON AVE E,12,108,2019-03-05,74,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,5.0,,N1530,43.709939802799994,-79.38136487850001,314345.087,4840893.716
-892294,4153179,2017.0,2018.0,1971.0,PRIVATE,11,University-Rosedale,34 WALMER RD,10,61,2019-03-05,79,Evaluation needs to be conducted in 2 years,20,4.0,3.0,5.0,4.0,4.0,4.0,3.0,5.0,4.0,3.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,S1126,43.668157441000005,-79.406612526,312315.279,4836250.126
-892295,4152989,2017.0,2018.0,1955.0,PRIVATE,4,Parkdale-High Park,130 JAMESON AVE,7,108,2019-03-05,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,5.0,3.0,,4.0,5.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,5.0,3.0,3.0,,S0437,43.636376149700006,-79.4361595734,309935.497,4832716.239
-892296,4153691,2017.0,2018.0,1920.0,PRIVATE,19,Beaches-East York,441 KINGSTON RD,3,15,2019-03-05,75,Evaluation needs to be conducted in 2 years,16,4.0,3.0,3.0,4.0,4.0,4.0,,4.0,,4.0,4.0,4.0,4.0,3.0,4.0,3.0,,4.0,4.0,,S1938,43.6767157275,-79.303971101,320590.73,4837214.351
-892297,4152993,2017.0,2018.0,1977.0,PRIVATE,4,Parkdale-High Park,96 JAMESON AVE,6,72,2019-03-05,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,,2.0,3.0,4.0,3.0,2.0,3.0,4.0,4.0,4.0,,S0437,43.63476362390001,-79.4354387074,309993.79600000003,4832537.146000001
-892298,4154522,2017.0,2018.0,1956.0,PRIVATE,8,Eglinton-Lawrence,16 HOTSPUR RD,3,12,2019-03-05,73,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,,,4.0,3.0,5.0,4.0,3.0,3.0,3.0,3.0,3.0,,N0823,43.73325697600001,-79.4341048887,310075.36199999996,4843467.916
-892299,4154523,2017.0,2018.0,1956.0,PRIVATE,8,Eglinton-Lawrence,20 HOTSPUR RD,3,12,2019-03-05,73,Evaluation needs to be conducted in 2 years,15,4.0,4.0,3.0,3.0,4.0,3.0,,4.0,,,4.0,4.0,5.0,4.0,,3.0,4.0,3.0,3.0,,N0823,43.7331587008,-79.4345882213,310034.957,4843456.2639999995
-892300,4153187,2017.0,2018.0,1960.0,PRIVATE,11,University-Rosedale,44 WALMER RD,13,85,2019-03-05,76,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,3.0,4.0,3.0,3.0,4.0,4.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,,S1126,43.669071978999995,-79.406941997,312288.598,4836351.698
-892301,4288801,2017.0,2018.0,1920.0,PRIVATE,19,Beaches-East York,84 WILLOW AVE,3,18,2019-03-05,67,Evaluation needs to be conducted in 2 years,14,4.0,3.0,3.0,3.0,,3.0,,3.0,,4.0,3.0,3.0,5.0,3.0,4.0,3.0,,3.0,,,S1942,43.6726703072,-79.2866950453,321984.865,4836768.337
-892302,4156448,2017.0,2018.0,1954.0,PRIVATE,2,Etobicoke Centre,310 THE KINGSWAY,3,22,2019-03-05,80,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,3.0,4.0,4.0,,3.0,,,5.0,5.0,4.0,4.0,4.0,4.0,,4.0,4.0,,W0229,43.664397075,-79.52321953100001,302902.147,4835840.037
-892303,4156357,2017.0,2018.0,1954.0,PRIVATE,2,Etobicoke Centre,314 THE KINGSWAY,3,22,2019-03-05,85,Evaluation needs to be conducted in 2 years,15,4.0,5.0,5.0,4.0,4.0,4.0,,4.0,,,4.0,5.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0229,43.66458226100001,-79.523537566,302881.557,4835854.438
-892304,4153358,2017.0,2018.0,1925.0,PRIVATE,12,Toronto-St. Paul's,320 AVENUE RD,4,24,2019-03-05,73,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,4.0,4.0,4.0,,3.0,,,4.0,4.0,5.0,3.0,3.0,3.0,,4.0,3.0,,S1237,43.680275983,-79.399224134,312909.538,4837597.137
-892305,4155235,2017.0,2018.0,1958.0,PRIVATE,3,Etobicoke-Lakeshore,169 BERRY RD,4,25,2019-03-04,75,Evaluation needs to be conducted in 2 years,17,3.0,4.0,4.0,4.0,4.0,3.0,,5.0,,3.0,4.0,4.0,5.0,3.0,4.0,3.0,5.0,3.0,3.0,,W0329,43.637123520500005,-79.4874115114,305800.066,4832797.477
-892306,4167693,2017.0,2018.0,1925.0,PRIVATE,12,Toronto-St. Paul's,326 AVENUE RD,3,18,2019-03-04,73,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,4.0,4.0,4.0,,3.0,,,4.0,4.0,5.0,3.0,3.0,3.0,,4.0,3.0,,S1237,43.680405146000005,-79.399282271,312904.833,4837611.481000001
-892307,4170952,2017.0,2018.0,1925.0,PRIVATE,12,Toronto-St. Paul's,330 AVENUE RD,3,19,2019-03-04,77,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,,,4.0,4.0,5.0,4.0,3.0,3.0,,4.0,3.0,,S1237,43.680535547,-79.399334602,312900.596,4837625.963
-892308,4153355,2017.0,2018.0,1956.0,PRIVATE,12,Toronto-St. Paul's,291 AVENUE RD,8,96,2019-03-04,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,,,S1238,43.679355025,-79.398110045,312999.49199999997,4837494.932
-892309,4155073,2017.0,2018.0,1970.0,PRIVATE,9,Davenport,478 CALEDONIA RD,3,20,2019-03-04,73,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,3.0,4.0,,4.0,,4.0,3.0,3.0,4.0,3.0,4.0,4.0,,3.0,4.0,,S0921,43.6893077444,-79.4610170083,307927.075,4838595.44
-892310,4155072,2017.0,2018.0,1960.0,PRIVATE,9,Davenport,480 CALEDONIA RD,4,28,2019-03-04,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,S0921,43.6895758413,-79.4611447354,307916.766,4838625.219
-892311,4154908,2017.0,2018.0,1965.0,PRIVATE,16,Don Valley East,57 PARKWOODS VILLAGE DR,7,87,2019-03-04,75,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,3.0,3.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,2.0,,N1625,43.7601500687,-79.3205133557,319236.899,4846480.491
-892312,4154902,2017.0,2018.0,1962.0,PRIVATE,16,Don Valley East,76 PARKWOODS VILLAGE DR,6,65,2019-03-04,83,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,4.0,4.0,4.0,,4.0,5.0,4.0,4.0,5.0,5.0,3.0,4.0,4.0,5.0,3.0,3.0,,N1625,43.760185352700006,-79.32325685810001,319015.977,4846483.943
-892313,4290884,2018.0,2018.0,1960.0,PRIVATE,6,York Centre,5 ROSSEAU RD,3,11,2019-03-04,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,4.0,4.0,3.0,5.0,4.0,3.0,4.0,,4.0,3.0,,N0629,43.741804201099995,-79.4363369566,309912.311,4844428.739
-892314,4154583,2017.0,2018.0,1955.0,PRIVATE,6,York Centre,9 ROSSEAU RD,3,11,2019-03-04,83,Evaluation needs to be conducted in 2 years,16,5.0,4.0,4.0,4.0,4.0,4.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,N0629,43.7421552614,-79.4365679609,309893.67699999997,4844467.728
-892315,4154911,2017.0,2018.0,1963.0,PRIVATE,16,Don Valley East,111 COMBERMERE DR,7,81,2019-03-04,85,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,4.0,5.0,4.0,5.0,3.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N1625,43.7587471272,-79.319372054,319329.13300000003,4846324.826
-892316,4154910,2017.0,2018.0,1963.0,PRIVATE,16,Don Valley East,121 COMBERMERE DR,8,66,2019-03-04,89,Evaluation needs to be conducted in 3 years,20,5.0,4.0,5.0,4.0,5.0,4.0,5.0,3.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,4.0,4.0,5.0,3.0,4.0,N1625,43.759361454099995,-79.318888833,319367.896,4846393.16
-892317,4153154,2017.0,2018.0,1940.0,PRIVATE,9,Davenport,19-21 RUSHOLME RD,3,11,2019-03-04,80,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,5.0,4.0,4.0,,4.0,,5.0,5.0,3.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,,S0934,43.650137633,-79.42672564600001,310695.11600000004,4834246.595
-892318,4153800,2017.0,2018.0,1973.0,PRIVATE,12,Toronto-St. Paul's,101 ROEHAMPTON AVE,20,129,2019-03-04,68,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,4.0,,S1221,43.70836176,-79.395388172,313214.933,4840717.855
-892319,4154587,2017.0,2018.0,1955.0,PRIVATE,6,York Centre,19 ROSSEAU RD,3,11,2019-03-04,81,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,N0629,43.7429016384,-79.4368905262,309867.637,4844550.629
-892320,4154588,2017.0,2018.0,1955.0,PRIVATE,6,York Centre,21 ROSSEAU RD,3,11,2019-03-04,83,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,5.0,4.0,,N0629,43.743072408,-79.4368800635,309868.466,4844569.601
-892321,4154900,2017.0,2018.0,1966.0,PRIVATE,16,Don Valley East,105 ROWENA DR,12,243,2019-03-04,87,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,5.0,4.0,4.0,5.0,5.0,5.0,,N1625,43.750896864,-79.31418886,319750.673,4845444.329
-892322,4155782,2017.0,2018.0,1965.0,TCHC,1,Etobicoke North,101 KENDLETON DR,7,221,2019-03-04,68,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,W0123,43.7383578677,-79.580925169,298266.007,4844047.228
-892323,4155781,2017.0,2018.0,1965.0,TCHC,1,Etobicoke North,111 KENDLETON DR,7,58,2019-03-04,76,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,W0123,43.737879704499996,-79.581199625,298243.847,4843994.13
-892324,4156208,2017.0,2018.0,1965.0,TCHC,1,Etobicoke North,121 KENDLETON DR,11,194,2019-03-04,68,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,3.0,3.0,4.0,2.0,3.0,4.0,,3.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,W0123,43.7376027043,-79.5808305747,298273.543,4843963.329
-892325,4155076,2017.0,2018.0,1960.0,PRIVATE,9,Davenport,526 HARVIE AVE,3,29,2019-03-04,81,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,5.0,,4.0,,,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,4.0,,S0921,43.690799353,-79.456216348,308313.74600000004,4838762.298
-892326,4155075,2017.0,2018.0,1958.0,PRIVATE,9,Davenport,554 HARVIE AVE,4,15,2019-03-04,83,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,,S0921,43.691729939,-79.456536022,308287.92600000004,4838865.6680000005
-892327,4154301,2017.0,2018.0,1957.0,PRIVATE,5,York South-Weston,2368 KEELE ST,4,47,2019-03-04,79,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,3.0,5.0,,4.0,,4.0,4.0,3.0,5.0,4.0,3.0,4.0,,4.0,4.0,,W0529,43.70619654,-79.47813377899999,306573.365,4840472.875
-892328,4154300,2017.0,2018.0,1957.0,PRIVATE,5,York South-Weston,2370 KEELE ST,4,46,2019-03-04,75,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,3.0,3.0,3.0,5.0,4.0,3.0,4.0,,4.0,3.0,,W0529,43.706451928999996,-79.478254085,306536.791,4840500.558
-892329,4155465,2017.0,2018.0,1984.0,TCHC,1,Etobicoke North,10 HUMBERLINE DR,13,179,2019-03-04,69,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,2.0,3.0,3.0,4.0,4.0,4.0,,4.0,3.0,4.0,3.0,4.0,4.0,,3.0,3.0,4.0,W0125,43.7312483321,-79.61180489510001,295777.595,4843260.265
-892330,4152983,2017.0,2018.0,1968.0,PRIVATE,4,Parkdale-High Park,109 JAMESON AVE,7,118,2019-03-04,44,Building Audit,18,2.0,2.0,3.0,2.0,3.0,2.0,,2.0,3.0,3.0,2.0,1.0,3.0,3.0,2.0,2.0,2.0,2.0,1.0,,S0437,43.635775261400006,-79.4351441471,310017.478,4832649.546
-892331,4155077,2017.0,2018.0,1960.0,PRIVATE,9,Davenport,524 HARVIE AVE,3,29,2019-03-04,81,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,5.0,,4.0,,,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,4.0,,S0921,43.690686289,-79.455914851,308342.955,4838761.115
-892332,4153153,2018.0,2018.0,1925.0,PRIVATE,9,Davenport,34 HEYDON PARK RD,3,31,2019-03-04,61,Evaluation needs to be conducted in 1 year,14,2.0,3.0,4.0,2.0,2.0,2.0,,4.0,,,2.0,2.0,5.0,3.0,4.0,5.0,,3.0,,,S0934,43.652968445,-79.42702254699999,310670.881,4834561.084
-892333,4152607,2018.0,2018.0,1955.0,PRIVATE,20,Scarborough Southwest,1075 VICTORIA PARK AVE,3,18,2019-03-04,75,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,3.0,4.0,4.0,,4.0,,,4.0,3.0,5.0,3.0,4.0,4.0,4.0,3.0,4.0,,E2028,43.7075785212,-79.2951531755,321293.32300000003,4840644.802
-892334,4155251,2017.0,2018.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,159 STEPHEN DR,4,24,2019-03-04,84,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,5.0,,5.0,,4.0,5.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,W0327,43.6389598462,-79.4872934251,305809.566,4833001.4860000005
-892335,4155252,2018.0,2018.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,167 STEPHEN DR,4,44,2019-03-04,71,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,4.0,3.0,,3.0,5.0,3.0,4.0,4.0,5.0,3.0,3.0,2.0,3.0,3.0,4.0,,W0327,43.6392913192,-79.4876408475,305781.53,4833038.307
-892336,4155253,2017.0,2018.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,193 STEPHEN DR,3,10,2019-03-04,81,Evaluation needs to be conducted in 2 years,17,5.0,4.0,4.0,4.0,3.0,5.0,,5.0,,3.0,5.0,3.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,,W0327,43.640715018,-79.488178586,305737.446,4833198.606000001
-892337,4155907,2017.0,2018.0,1960.0,PRIVATE,8,Eglinton-Lawrence,99 MARLEE AVE,6,59,2019-03-04,83,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,4.0,4.0,5.0,,4.0,5.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,N0832,43.7009946331,-79.4402809991,309597.858,4839894.798
-892338,4154298,,2018.0,1962.0,PRIVATE,5,York South-Weston,1619 LAWRENCE AVE W,4,24,2019-03-04,73,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,,,W0529,43.705269832,-79.4911827537,305495.106,4840368.12
-892339,4152604,2019.0,2018.0,1954.0,PRIVATE,20,Scarborough Southwest,1051 VICTORIA PARK AVE,3,11,2019-03-04,58,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,2.0,2.0,4.0,4.0,4.0,,2.0,2.0,2.0,5.0,2.0,3.0,3.0,,3.0,2.0,,E2028,43.706282345,-79.29457963899999,321339.63899999997,4840501.868
-892340,4155504,2017.0,2018.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,2507 LAKE SHORE BLVD W,3,21,2019-03-04,60,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,2.0,5.0,3.0,3.0,2.0,,3.0,3.0,,W0336,43.6119437281,-79.4894785843,305633.594,4830000.121
-892341,4155005,2017.0,2018.0,1955.0,PRIVATE,12,Toronto-St. Paul's,1071 EGLINTON AVE W,3,33,2019-03-04,71,Evaluation needs to be conducted in 2 years,16,4.0,3.0,5.0,4.0,3.0,3.0,,3.0,,4.0,4.0,3.0,5.0,3.0,3.0,4.0,,3.0,3.0,,S1224,43.6988240231,-79.4343514595,310075.95,4839654.0139999995
-892342,4153946,2017.0,2018.0,1930.0,PRIVATE,12,Toronto-St. Paul's,779 EGLINTON AVE W,3,17,2019-03-04,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,5.0,,3.0,4.0,4.0,5.0,4.0,3.0,3.0,,4.0,3.0,,S1225,43.700999573100006,-79.4241109809,310901.18,4839896.436000001
-892343,4246916,2017.0,2018.0,1967.0,PRIVATE,15,Don Valley West,300 EGLINTON AVE E,15,96,2019-03-04,78,Evaluation needs to be conducted in 2 years,20,3.0,4.0,5.0,4.0,4.0,4.0,3.0,5.0,3.0,3.0,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,5.0,N1537,43.708925086899995,-79.3890965678,313722.169,4840780.1389999995
-892344,4156523,2017.0,2018.0,1950.0,PRIVATE,2,Etobicoke Centre,4750 DUNDAS ST W,4,14,2019-03-04,71,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,3.0,3.0,,3.0,,,4.0,2.0,4.0,4.0,4.0,3.0,,4.0,3.0,,W0229,43.652601481000005,-79.525645179,302689.55199999997,4834490.961
-892345,4156289,2017.0,2018.0,1950.0,PRIVATE,2,Etobicoke Centre,4752 DUNDAS ST W,4,14,2019-03-04,72,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,4.0,4.0,4.0,,3.0,,,4.0,3.0,3.0,4.0,4.0,3.0,,4.0,3.0,,W0229,43.652394933000004,-79.525845839,302688.053,4834472.61
-892346,4153074,2017.0,2018.0,1911.0,PRIVATE,9,Davenport,1505 DUNDAS ST W,3,12,2019-03-04,63,Evaluation needs to be conducted in 1 year,15,3.0,4.0,4.0,2.0,2.0,3.0,,4.0,,,2.0,2.0,4.0,3.0,3.0,4.0,4.0,3.0,,,S0936,43.649474046899996,-79.4321012172,310261.776,4834171.571
-892347,4155006,2017.0,2018.0,1955.0,PRIVATE,12,Toronto-St. Paul's,1065 EGLINTON AVE W,4,34,2019-03-04,84,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S1224,43.698898756800006,-79.4340201951,310102.647,4839662.339
-892348,4155497,2017.0,2018.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,2537 LAKE SHORE BLVD W,3,75,2019-03-02,71,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,4.0,3.0,,3.0,,,4.0,3.0,,4.0,4.0,3.0,4.0,4.0,4.0,,W0336,43.6096967981,-79.48808184090001,305746.372,4829750.512
-892349,4155498,2017.0,2018.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,2531 LAKE SHORE BLVD W,6,110,2019-03-02,71,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,4.0,4.0,3.0,,3.0,3.0,,4.0,4.0,,4.0,3.0,3.0,4.0,4.0,3.0,,W0336,43.6100722111,-79.4872983362,305809.615,4829792.226
-892350,4155475,2017.0,2018.0,1959.0,PRIVATE,3,Etobicoke-Lakeshore,2369 LAKE SHORE BLVD W,4,87,2019-03-02,79,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,4.0,,4.0,4.0,,4.0,4.0,4.0,4.0,4.0,4.0,,W0336,43.615736635,-79.48788213569999,305762.403,4830421.51
-892351,4155480,2017.0,2018.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,2309 LAKE SHORE BLVD W,4,28,2019-03-02,71,Evaluation needs to be conducted in 2 years,14,3.0,3.0,4.0,3.0,4.0,4.0,,4.0,,,4.0,3.0,,3.0,3.0,4.0,,4.0,4.0,,W0336,43.6177159242,-79.4864921975,305843.963,4830639.407
-892352,4152593,2017.0,2018.0,1982.0,PRIVATE,20,Scarborough Southwest,30 BURN HILL RD,22,238,2019-03-01,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,,3.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,E2028,43.6992222546,-79.2778348112,322691.471,4839719.991
-892353,4155843,2017.0,2018.0,1952.0,PRIVATE,20,Scarborough Southwest,3214 ST CLAIR AVE E,3,16,2019-03-01,77,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,3.0,3.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,4.0,,E2021,43.710470468400004,-79.2900582076,321703.085,4840967.096
-892354,4156305,2017.0,2018.0,1952.0,PRIVATE,20,Scarborough Southwest,3218 ST CLAIR AVE E,3,16,2019-03-01,76,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,3.0,3.0,3.0,,4.0,,,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,4.0,,E2021,43.7103165144,-79.2898372595,321720.933,4840950.037
-892355,4155020,2017.0,2018.0,1971.0,PRIVATE,12,Toronto-St. Paul's,330 WINNETT AVE,4,39,2019-03-01,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,3.0,,3.0,,4.0,5.0,4.0,5.0,4.0,3.0,3.0,5.0,4.0,3.0,,S1223,43.692267101000006,-79.43505588100001,310019.468,4838926.465
-892356,4155906,2017.0,2018.0,1940.0,PRIVATE,9,Davenport,966 ST CLAIR AVE W,4,11,2019-03-01,71,Evaluation needs to be conducted in 2 years,14,4.0,4.0,3.0,4.0,3.0,3.0,,3.0,,,4.0,4.0,4.0,3.0,4.0,3.0,,4.0,,,S0928,43.67961435,-79.436448672,309901.703,4837533.376
-892357,4154981,2017.0,2018.0,1963.0,PRIVATE,12,Toronto-St. Paul's,120 RAGLAN AVE,9,175,2019-03-01,87,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,4.0,5.0,4.0,4.0,3.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,S1229,43.6866664958,-79.4213590285,311124.424,4838304.266
-892358,4153159,2017.0,2018.0,1930.0,PRIVATE,9,Davenport,1044 COLLEGE ST,3,43,2019-03-01,71,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,4.0,2.0,4.0,,4.0,,,4.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,,,S0934,43.653199472,-79.430277706,310408.275,4834586.517
-892359,4221299,2017.0,2018.0,1950.0,PRIVATE,9,Davenport,1094 COLLEGE ST,3,19,2019-03-01,63,Evaluation needs to be conducted in 1 year,14,3.0,2.0,5.0,2.0,2.0,3.0,,4.0,,,3.0,2.0,5.0,3.0,3.0,3.0,,4.0,,,S0934,43.6528825044,-79.4321278569,310259.331,4834550.221
-892360,4153161,,2018.0,1926.0,PRIVATE,9,Davenport,1121 BLOOR ST W,4,11,2019-03-01,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,2.0,3.0,3.0,,4.0,,,2.0,3.0,2.0,3.0,4.0,4.0,2.0,4.0,4.0,,S0934,43.659766697799995,-79.4348680192,310037.689,4835314.866
-892361,4155773,2017.0,2018.0,1966.0,PRIVATE,16,Don Valley East,100 ROWENA DR,12,248,2019-03-01,79,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,3.0,3.0,5.0,5.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,N1625,43.7517238195,-79.3143707442,319733.599,4845545.465
-892362,4152599,2017.0,2018.0,1972.0,PRIVATE,20,Scarborough Southwest,263 PHARMACY AVE,21,329,2019-03-01,79,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,E2028,43.6998540886,-79.2849399311,322118.62,4839788.691000001
-892363,4154963,2017.0,2018.0,1960.0,PRIVATE,12,Toronto-St. Paul's,40 RAGLAN AVE,7,61,2019-03-01,85,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,5.0,,4.0,,,4.0,5.0,5.0,4.0,4.0,4.0,5.0,3.0,4.0,,S1229,43.684203196000006,-79.4203922096,311202.622,4838030.657
-892364,4154962,2018.0,2018.0,1928.0,PRIVATE,12,Toronto-St. Paul's,50 RAGLAN AVE,4,32,2019-03-01,61,Evaluation needs to be conducted in 1 year,14,3.0,3.0,4.0,3.0,2.0,3.0,,4.0,,,3.0,4.0,2.0,3.0,3.0,3.0,,3.0,,,S1229,43.6844655265,-79.4205577721,311189.247,4838059.79
-892365,4155009,2017.0,2018.0,1950.0,PRIVATE,9,Davenport,22 ROBINA AVE,3,20,2019-03-01,70,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,3.0,4.0,3.0,,3.0,,4.0,3.0,4.0,5.0,3.0,3.0,3.0,,4.0,3.0,,S0925,43.6807571729,-79.4354334131,309990.19399999996,4837646.768
-892366,4156014,2018.0,2018.0,1950.0,PRIVATE,5,York South-Weston,1 GREENBROOK DR,3,23,2019-03-01,73,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,4.0,4.0,3.0,,3.0,,,4.0,4.0,5.0,3.0,,3.0,,3.0,3.0,,W0532,43.696926149,-79.475711635,306735.523,4839446.054
-892367,4266442,2017.0,2018.0,1927.0,PRIVATE,19,Beaches-East York,125 KENILWORTH AVE,3,20,2019-03-01,74,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,4.0,3.0,3.0,,4.0,,,4.0,4.0,5.0,3.0,4.0,3.0,,3.0,,,S1938,43.6703285166,-79.302100905,320743.2,4836505.1
-892368,4153678,2017.0,2018.0,1950.0,PRIVATE,19,Beaches-East York,156 KINGSTON RD,4,62,2019-03-01,73,Evaluation needs to be conducted in 2 years,17,4.0,3.0,3.0,4.0,4.0,4.0,,4.0,,4.0,3.0,4.0,5.0,3.0,4.0,3.0,3.0,3.0,4.0,,S1937,43.671139903900006,-79.3114153921,319991.88,4836593.512
-892369,4153676,2017.0,2018.0,1934.0,PRIVATE,19,Beaches-East York,204 KINGSTON RD,3,15,2019-03-01,75,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,4.0,4.0,4.0,,3.0,,4.0,4.0,3.0,5.0,3.0,4.0,4.0,,4.0,3.0,,S1937,43.6722400679,-79.3102957191,320081.891,4836715.941000001
-892370,4153673,2017.0,2018.0,1925.0,PRIVATE,19,Beaches-East York,1836 QUEEN ST E,3,30,2019-03-01,63,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,S1937,43.668459839700006,-79.3083945127,320236.165,4836296.316000001
-892371,4153158,2017.0,2018.0,1905.0,PRIVATE,9,Davenport,1 HAVELOCK ST,3,18,2019-03-01,73,Evaluation needs to be conducted in 2 years,15,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,,,5.0,2.0,3.0,3.0,3.0,4.0,3.0,4.0,,,S0934,43.6531913676,-79.42927202199999,310489.665,4834584.737
-892372,4253806,2017.0,2018.0,1956.0,PRIVATE,11,University-Rosedale,1 ROSEDALE RD,4,25,2019-03-01,77,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,3.0,,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,S1129,43.674781847,-79.38361137,314169.232,4836988.448
-892373,4155022,2017.0,2018.0,1957.0,PRIVATE,12,Toronto-St. Paul's,481 VAUGHAN RD,7,97,2019-03-01,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,4.0,4.0,5.0,4.0,3.0,3.0,4.0,3.0,3.0,,S1223,43.689882743000005,-79.43517980899999,310009.678,4838661.56
-892374,4155771,2017.0,2018.0,1958.0,PRIVATE,3,Etobicoke-Lakeshore,2495 LAKE SHORE BLVD W,3,45,2019-03-01,75,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,4.0,3.0,4.0,,3.0,,4.0,4.0,3.0,5.0,4.0,3.0,4.0,,4.0,4.0,,W0336,43.612342428199995,-79.4891538112,305659.804,4830044.4180000005
-892375,4155783,2017.0,2018.0,1955.0,PRIVATE,8,Eglinton-Lawrence,101 MARLEE AVE,6,58,2019-03-01,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,,N0832,43.701461008,-79.440472942,309582.088,4839947.551
-892376,4152589,2017.0,2018.0,1969.0,PRIVATE,20,Scarborough Southwest,10 MACEY AVE,16,255,2019-03-01,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2028,43.6922807906,-79.2871199966,321945.072,4838946.874
-892377,4329455,2018.0,2018.0,1900.0,PRIVATE,8,Eglinton-Lawrence,485 DUPLEX AVE,3,36,2019-03-01,75,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,3.0,4.0,,4.0,,4.0,4.0,3.0,5.0,3.0,4.0,4.0,,3.0,4.0,,N0833,43.7099483796,-79.4004676856,312805.619,4840892.672
-892378,4154013,2017.0,2018.0,1900.0,PRIVATE,8,Eglinton-Lawrence,487 DUPLEX AVE,3,36,2019-03-01,74,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,3.0,4.0,,4.0,,4.0,3.0,3.0,5.0,3.0,4.0,4.0,,3.0,4.0,,N0833,43.710114718199996,-79.4005329944,312800.334,4840911.145
-892379,4153786,2017.0,2018.0,1956.0,PRIVATE,15,Don Valley West,299 FORMAN AVE,4,29,2019-03-01,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,2.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,N1530,43.7077721579,-79.38523195970001,314033.795,4840652.473
-892380,4153787,2017.0,2018.0,1955.0,PRIVATE,15,Don Valley West,341 FORMAN AVE,4,15,2019-03-01,75,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,3.0,,3.0,,3.0,4.0,4.0,5.0,3.0,3.0,3.0,,4.0,4.0,,N1530,43.7088608349,-79.38577257,313990.06899999996,4840773.368
-892381,4153812,2017.0,2018.0,1963.0,PRIVATE,15,Don Valley West,420 EGLINTON AVE E,5,44,2019-03-01,74,Evaluation needs to be conducted in 2 years,19,3.0,3.0,5.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,4.0,5.0,3.0,4.0,4.0,5.0,4.0,4.0,,N1537,43.7097985211,-79.3852685369,314030.547,4840877.597
-892382,4153811,2017.0,2018.0,1960.0,PRIVATE,15,Don Valley West,440 EGLINTON AVE E,10,90,2019-03-01,87,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,4.0,3.0,,5.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,3.0,,N1537,43.7098728006,-79.3847266603,314074.202,4840885.908
-892383,4152591,2017.0,2018.0,1976.0,PRIVATE,20,Scarborough Southwest,30 DENTON AVE,22,575,2019-03-01,83,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,E2028,43.693978012799995,-79.28769906560001,321897.909,4839135.311000001
-892384,4255639,2017.0,2018.0,1958.0,PRIVATE,6,York Centre,3892 BATHURST ST,4,29,2019-03-01,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,4.0,4.0,4.0,,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0629,43.7434082463,-79.4360131728,309938.25899999996,4844606.96
-892385,4155091,2017.0,2018.0,1953.0,PRIVATE,5,York South-Weston,2558 EGLINTON AVE W,4,29,2019-03-01,77,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,3.0,5.0,3.0,,4.0,,,4.0,4.0,4.0,4.0,,4.0,4.0,4.0,3.0,,W0533,43.691135465,-79.471860488,307052.604,4838799.09
-892386,4154594,2017.0,2018.0,1960.0,PRIVATE,6,York Centre,3886 BATHURST ST,4,28,2019-03-01,81,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0629,43.7425586658,-79.4358613114,309950.559,4844512.5819999995
-892387,4154592,2017.0,2018.0,1958.0,PRIVATE,6,York Centre,3890 BATHURST ST,4,30,2019-03-01,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,,N0629,43.7431564667,-79.4359561971,309942.868,4844578.99
-892388,4155036,2017.0,2018.0,1960.0,PRIVATE,12,Toronto-St. Paul's,560 OAKWOOD AVE,3,24,2019-02-28,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,2.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1222,43.693346722,-79.4414872013,309501.192,4839045.058999999
-892389,4155834,2017.0,2018.0,1969.0,TCHC,13,Toronto Centre,275 BLEECKER ST,21,301,2019-02-28,67,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,3.0,,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,3.0,S1323,43.66883593520001,-79.3737051125,314969.275,4836328.077
-892390,4155636,2017.0,2018.0,1957.0,TCHC,8,Eglinton-Lawrence,5 FLEMINGTON RD,3,31,2019-02-28,69,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,,,4.0,4.0,3.0,3.0,4.0,3.0,,4.0,4.0,,N0823,43.718613593,-79.442694709,309401.70399999997,4841852.977
-892391,4155632,2017.0,2018.0,1957.0,TCHC,8,Eglinton-Lawrence,7 FLEMINGTON RD,4,30,2019-02-28,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,,,4.0,4.0,3.0,3.0,4.0,3.0,,4.0,3.0,,N0823,43.719109071000005,-79.444361414,309268.912,4841893.813999999
-892392,4155643,2017.0,2018.0,1957.0,TCHC,8,Eglinton-Lawrence,9 FLEMINGTON RD,4,30,2019-02-28,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,,,4.0,4.0,3.0,3.0,4.0,3.0,,4.0,3.0,,N0823,43.718738197700006,-79.4460430714,309132.157,4841865.686000001
-892393,4155642,2017.0,2018.0,1957.0,TCHC,8,Eglinton-Lawrence,11 FLEMINGTON RD,4,31,2019-02-28,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,,,4.0,4.0,3.0,3.0,4.0,3.0,,4.0,3.0,,N0823,43.718500015,-79.447329934,309019.977,4841871.044
-892394,4154001,2017.0,2018.0,1955.0,PRIVATE,12,Toronto-St. Paul's,211 EGLINTON AVE W,3,31,2019-02-28,71,Evaluation needs to be conducted in 2 years,14,3.0,3.0,5.0,4.0,4.0,3.0,,3.0,,,3.0,4.0,5.0,3.0,3.0,3.0,,4.0,,,S1227,43.705039078,-79.405292084,312417.183,4840347.741
-892395,4154002,2017.0,2018.0,1940.0,PRIVATE,12,Toronto-St. Paul's,166 EASTBOURNE AVE,3,21,2019-02-28,76,Evaluation needs to be conducted in 2 years,14,4.0,4.0,5.0,4.0,3.0,4.0,,3.0,,,4.0,4.0,5.0,3.0,3.0,3.0,,4.0,,,S1227,43.7051010779,-79.40500513229999,312440.564,4840353.701
-892396,4152598,2017.0,2018.0,1968.0,PRIVATE,20,Scarborough Southwest,10 TEESDALE PL,24,285,2019-02-28,75,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,,E2028,43.6965267454,-79.2862044067,322017.663,4839418.771000001
-892397,4152597,2017.0,2018.0,1970.0,PRIVATE,20,Scarborough Southwest,20 TEESDALE PL,24,284,2019-02-28,78,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,3.0,,E2028,43.6959726218,-79.2874840709,321914.674,4839356.947
-892398,4154966,2017.0,2018.0,1963.0,PRIVATE,12,Toronto-St. Paul's,98 VAUGHAN RD,4,40,2019-02-28,87,Evaluation needs to be conducted in 3 years,14,4.0,4.0,4.0,5.0,,5.0,,3.0,,,5.0,4.0,5.0,5.0,4.0,4.0,,5.0,4.0,,S1229,43.683655701400006,-79.4214673851,311115.99199999997,4837969.748
-892399,4154956,2017.0,2018.0,1920.0,PRIVATE,12,Toronto-St. Paul's,101 VAUGHAN RD,4,32,2019-02-28,88,Evaluation needs to be conducted in 3 years,15,4.0,4.0,5.0,5.0,5.0,4.0,,5.0,,4.0,5.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,S1229,43.6840547809,-79.4209132292,311160.63,4838014.1280000005
-892400,4154964,2017.0,2018.0,1929.0,PRIVATE,12,Toronto-St. Paul's,118 VAUGHAN RD,4,32,2019-02-28,75,Evaluation needs to be conducted in 2 years,15,4.0,4.0,3.0,4.0,4.0,4.0,,4.0,,,4.0,5.0,3.0,4.0,4.0,3.0,,3.0,3.0,,S1229,43.684225142200006,-79.4217235507,311095.282,4838032.994
-892401,4154971,2017.0,2018.0,1929.0,PRIVATE,12,Toronto-St. Paul's,120 VAUGHAN RD,3,24,2019-02-28,76,Evaluation needs to be conducted in 2 years,14,4.0,3.0,4.0,4.0,,4.0,,3.0,,,4.0,5.0,3.0,4.0,4.0,4.0,,3.0,4.0,,S1229,43.684541083,-79.4218295295,311086.706,4838068.087
-892402,4155503,2017.0,2018.0,1950.0,PRIVATE,3,Etobicoke-Lakeshore,2515 LAKE SHORE BLVD W,4,30,2019-02-28,68,Evaluation needs to be conducted in 2 years,15,4.0,4.0,3.0,4.0,3.0,3.0,,3.0,,,4.0,4.0,4.0,3.0,3.0,3.0,,3.0,3.0,,W0336,43.6115410495,-79.489468582,305634.407,4829955.385
-892403,4155502,2019.0,2018.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,2517 LAKE SHORE BLVD W,4,42,2019-02-28,60,Evaluation needs to be conducted in 1 year,16,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0336,43.611248843599995,-79.4897028689,305617.985,4829937.637
-892404,4154884,2017.0,2018.0,1961.0,PRIVATE,16,Don Valley East,1441 LAWRENCE AVE E,14,251,2019-02-28,80,Evaluation needs to be conducted in 2 years,20,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,N1628,43.741069981,-79.31303466,319843.605,4844363.092
-892405,4154886,2017.0,2018.0,1964.0,PRIVATE,16,Don Valley East,1840 VICTORIA PARK AVE,12,204,2019-02-28,84,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N1628,43.7404974664,-79.3102350058,320069.51300000004,4844299.041
-892406,4154885,2017.0,2018.0,1964.0,PRIVATE,16,Don Valley East,1850 VICTORIA PARK AVE,15,240,2019-02-28,84,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,N1628,43.740954682600005,-79.3112631324,319986.585,4844349.647
-892407,4156118,2017.0,2018.0,1969.0,TCHC,13,Toronto Centre,325 BLEECKER ST,24,327,2019-02-28,64,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,S1323,43.669381383,-79.37437191,314915.151,4836389.54
-892408,4153165,2017.0,2018.0,1928.0,PRIVATE,9,Davenport,1019 BLOOR ST W,3,26,2019-02-28,60,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,,2.0,,4.0,,,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,S0934,43.6606296548,-79.4308395547,310362.521,4835410.9969999995
-892409,4379646,2018.0,2018.0,1923.0,PRIVATE,9,Davenport,1212 BLOOR ST W,3,16,2019-02-28,72,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,4.0,,2.0,,4.0,,,3.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,,S0930,43.6593129835,-79.4389019966,309712.36699999997,4835264.218
-892410,4154004,2017.0,2018.0,1930.0,PRIVATE,12,Toronto-St. Paul's,484 ORIOLE PKWY,3,18,2019-02-28,69,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,3.0,3.0,4.0,,3.0,,3.0,3.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,S1227,43.70424134939999,-79.406228883,312342.047,4840258.076
-892411,4154003,2017.0,2018.0,1930.0,PRIVATE,12,Toronto-St. Paul's,486 ORIOLE PKWY,3,21,2019-02-28,69,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,3.0,3.0,4.0,,3.0,,3.0,3.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,S1227,43.704467093599995,-79.4062239915,312342.413,4840283.156
-892412,4154009,2017.0,2018.0,1954.0,PRIVATE,8,Eglinton-Lawrence,107 ROSELAWN AVE,4,21,2019-02-28,76,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,3.0,5.0,4.0,3.0,3.0,,4.0,3.0,,N0833,43.71000827,-79.4024838056,312643.143,4840899.127
-892413,4154898,2017.0,2018.0,1960.0,PRIVATE,16,Don Valley East,21 WELSFORD GDNS,15,154,2019-02-28,87,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,5.0,4.0,4.0,5.0,4.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,N1625,43.7525195774,-79.3152926734,319659.157,4845633.706
-892414,4155257,2017.0,2018.0,1968.0,PRIVATE,3,Etobicoke-Lakeshore,5 HILL HEIGHTS RD,5,36,2019-02-28,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0327,43.638458523599994,-79.4925019413,305389.291,4832945.746
-892415,4255640,2017.0,2018.0,1958.0,PRIVATE,6,York Centre,3894 BATHURST ST,4,29,2019-02-28,83,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,5.0,4.0,5.0,,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,N0629,43.743702668100006,-79.43607830170001,309932.99,4844639.666999999
-892416,4154591,2017.0,2018.0,1958.0,PRIVATE,6,York Centre,3896 BATHURST ST,4,30,2019-02-28,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,4.0,4.0,5.0,,3.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,N0629,43.7439610802,-79.4361472401,309927.417,4844668.373
-892417,4153114,2017.0,2018.0,1957.0,PRIVATE,9,Davenport,917 ST CLAIR AVE W,3,16,2019-02-28,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,4.0,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,,,S0928,43.679643941,-79.434130411,310095.081,4837524.129
-892418,4153113,2017.0,2018.0,1930.0,PRIVATE,9,Davenport,921 ST CLAIR AVE W,4,23,2019-02-28,59,Evaluation needs to be conducted in 1 year,14,3.0,3.0,4.0,2.0,2.0,3.0,,3.0,,,2.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,S0928,43.679604386,-79.434318956,310079.882,4837519.722
-892419,4153112,2017.0,2018.0,1930.0,PRIVATE,9,Davenport,923 ST CLAIR AVE W,4,24,2019-02-28,58,Evaluation needs to be conducted in 1 year,13,2.0,3.0,3.0,2.0,,3.0,,3.0,,,2.0,3.0,4.0,4.0,3.0,3.0,,3.0,,,S0928,43.679556649,-79.434507969,310064.646,4837514.406
-892420,4153111,2017.0,2018.0,1930.0,PRIVATE,9,Davenport,925 ST CLAIR AVE W,4,24,2019-02-28,57,Evaluation needs to be conducted in 1 year,13,2.0,3.0,4.0,2.0,,2.0,,3.0,,,2.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,S0928,43.6795294913,-79.4347109535,310048.545,4837510.422
-892421,4153824,2017.0,2018.0,1956.0,PRIVATE,12,Toronto-St. Paul's,65 BROADWAY AVE,4,71,2019-02-28,71,Evaluation needs to be conducted in 2 years,18,3.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,S1221,43.709917503,-79.395277053,313223.67,4840890.703
-892422,4155012,2017.0,2018.0,1955.0,PRIVATE,12,Toronto-St. Paul's,440 WINONA DR,6,130,2019-02-28,82,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,5.0,4.0,,4.0,3.0,4.0,4.0,5.0,5.0,4.0,3.0,5.0,3.0,4.0,4.0,,S1222,43.6884054492,-79.4358516608,309955.895,4838496.442
-892423,4155011,2017.0,2018.0,1960.0,PRIVATE,12,Toronto-St. Paul's,450 WINONA DR,6,124,2019-02-28,81,Evaluation needs to be conducted in 2 years,17,3.0,5.0,5.0,4.0,4.0,4.0,,4.0,4.0,,4.0,5.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,,S1222,43.6888376633,-79.435821172,309958.31899999996,4838544.46
-892424,4155010,2017.0,2018.0,1958.0,PRIVATE,12,Toronto-St. Paul's,460 WINONA DR,5,55,2019-02-28,69,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,4.0,,3.0,3.0,3.0,3.0,2.0,5.0,4.0,3.0,3.0,4.0,3.0,3.0,,S1222,43.6890952984,-79.4358713128,309954.256,4838573.079
-892425,4155680,2017.0,2018.0,1930.0,PRIVATE,12,Toronto-St. Paul's,3 BROADWAY AVE,4,36,2019-02-28,72,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,4.0,3.0,,2.0,4.0,4.0,4.0,4.0,5.0,3.0,3.0,3.0,,4.0,3.0,,S1221,43.70948336,-79.39845180489999,312968.13800000004,4840841.205
-892426,4155637,2017.0,2018.0,1957.0,TCHC,8,Eglinton-Lawrence,3 FLEMINGTON RD,3,31,2019-02-28,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,,,4.0,4.0,3.0,3.0,4.0,3.0,,4.0,3.0,,N0823,43.719157062,-79.442145009,309445.958,4841913.386
-892427,4154540,2017.0,2018.0,1956.0,PRIVATE,8,Eglinton-Lawrence,67 WASDALE CRES,3,11,2019-02-27,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,2.0,4.0,,3.0,,,3.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,,N0823,43.730061032799995,-79.4379110526,309786.49199999997,4843124.078
-892428,4153993,2017.0,2018.0,1920.0,PRIVATE,12,Toronto-St. Paul's,137 EGLINTON AVE W,3,18,2019-02-26,71,Evaluation needs to be conducted in 2 years,14,4.0,4.0,5.0,3.0,3.0,3.0,,4.0,,,4.0,3.0,4.0,3.0,3.0,3.0,,4.0,,,S1227,43.705457738199996,-79.4032997946,312577.96,4840393.4860000005
-892429,4154688,2018.0,2018.0,1958.0,PRIVATE,6,York Centre,4087 BATHURST ST,3,11,2019-02-26,79,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,4.0,3.0,4.0,,3.0,,3.0,4.0,4.0,5.0,4.0,4.0,4.0,,5.0,5.0,,N0630,43.7449473955,-79.43554268609999,309976.028,4844777.99
-892430,4153103,2017.0,2018.0,1973.0,PRIVATE,9,Davenport,1011 LANSDOWNE AVE,21,352,2019-02-26,50,Building Audit,18,3.0,2.0,3.0,1.0,2.0,3.0,2.0,3.0,3.0,,1.0,3.0,2.0,3.0,2.0,3.0,3.0,3.0,3.0,,S0930,43.6672554091,-79.4464193523,309105.45399999997,4836146.163
-892431,4155476,2017.0,2018.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,2361 LAKE SHORE BLVD W,4,47,2019-02-26,80,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,5.0,,5.0,3.0,,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,,W0336,43.6158682454,-79.4878084713,305768.347,4830436.132
-892432,4155474,2017.0,2018.0,1970.0,PRIVATE,3,Etobicoke-Lakeshore,2377 LAKE SHORE BLVD W,4,23,2019-02-26,68,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,4.0,3.0,,3.0,,3.0,4.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,4.0,,W0336,43.6154404667,-79.4878892475,305761.833,4830388.607
-892433,4154879,2017.0,2018.0,1966.0,PRIVATE,16,Don Valley East,1698 VICTORIA PARK AVE,5,52,2019-02-26,71,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,4.0,4.0,4.0,,3.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,,N1628,43.733752898199995,-79.3068920324,320340.518,4843550.409
-892434,4155035,2017.0,2018.0,1955.0,PRIVATE,12,Toronto-St. Paul's,641 VAUGHAN RD,4,45,2019-02-26,81,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,,,4.0,4.0,5.0,5.0,3.0,5.0,,4.0,3.0,,S1222,43.693235288800004,-79.4417901487,309476.779,4839032.662
-892435,4155024,2017.0,2018.0,1957.0,PRIVATE,12,Toronto-St. Paul's,642 VAUGHAN RD,4,23,2019-02-26,76,Evaluation needs to be conducted in 2 years,14,3.0,4.0,4.0,4.0,5.0,3.0,,3.0,,,4.0,5.0,4.0,3.0,3.0,3.0,,5.0,,,S1222,43.692785049499996,-79.4417092331,309481.606,4838982.16
-892436,4155030,2017.0,2018.0,1966.0,PRIVATE,12,Toronto-St. Paul's,795 VAUGHAN RD,8,106,2019-02-26,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,3.0,3.0,5.0,,5.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,,S1222,43.6952829956,-79.4482618257,308954.953,4839259.834
-892437,4154958,2017.0,2018.0,1950.0,PRIVATE,12,Toronto-St. Paul's,125 VAUGHAN RD,4,32,2019-02-26,77,Evaluation needs to be conducted in 2 years,13,4.0,4.0,4.0,3.0,,3.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,,,S1229,43.6846976154,-79.42121421520001,311136.299,4838085.525
-892438,4154959,2017.0,2018.0,1955.0,PRIVATE,12,Toronto-St. Paul's,147 VAUGHAN RD,3,12,2019-02-26,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,2.0,3.0,,4.0,,,2.0,2.0,5.0,4.0,3.0,3.0,,3.0,3.0,,S1229,43.6852816558,-79.4214805107,311114.77,4838150.393999999
-892439,4408389,2019.0,2018.0,1913.0,PRIVATE,9,Davenport,10 MOUNT ROYAL AVE,3,12,2019-02-26,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,4.0,4.0,3.0,3.0,3.0,4.0,3.0,,S0928,43.675063118999994,-79.4330471349,310183.115,4837014.338
-892440,4154883,2017.0,2018.0,1979.0,PRIVATE,16,Don Valley East,1780 VICTORIA PARK AVE,10,83,2019-02-26,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,3.0,3.0,5.0,4.0,3.0,4.0,5.0,4.0,3.0,,N1628,43.7381014953,-79.30868221029999,320195.19800000003,4844033.165
-892441,4155772,2017.0,2018.0,1951.0,PRIVATE,3,Etobicoke-Lakeshore,2407 LAKE SHORE BLVD W,3,22,2019-02-26,80,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,3.0,,3.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0336,43.614231394799994,-79.48871626489999,305695.096,4830254.277
-892442,4152689,2017.0,2018.0,1959.0,PRIVATE,20,Scarborough Southwest,740 MIDLAND AVE,5,87,2019-02-26,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,4.0,3.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,E2024,43.7292557151,-79.256770973,324379.447,4843061.333000001
-892443,4152747,2017.0,2018.0,1965.0,PRIVATE,20,Scarborough Southwest,815 MIDLAND AVE,3,23,2019-02-26,74,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,3.0,,4.0,,,4.0,4.0,5.0,2.0,4.0,3.0,4.0,3.0,3.0,,E2024,43.734150957,-79.2574811613,324320.645,4843605.005
-892444,4153994,2017.0,2018.0,1935.0,PRIVATE,12,Toronto-St. Paul's,190 COLIN AVE,6,40,2019-02-26,73,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,3.0,3.0,,3.0,5.0,,3.0,4.0,4.0,3.0,3.0,3.0,,4.0,3.0,,S1227,43.7055531895,-79.4028556914,312613.74199999997,4840404.134
-892445,4154420,2017.0,2018.0,1959.0,PRIVATE,6,York Centre,2868 KEELE ST,3,30,2019-02-26,72,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,3.0,3.0,,3.0,3.0,,4.0,5.0,5.0,4.0,3.0,3.0,3.0,4.0,3.0,,N0627,43.73251345520001,-79.4840467169,306069.693,4843394.784
-892446,4154443,2017.0,2018.0,1955.0,PRIVATE,6,York Centre,3018 KEELE ST,4,31,2019-02-26,54,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,2.0,3.0,,2.0,,,2.0,2.0,4.0,3.0,2.0,3.0,3.0,3.0,2.0,,N0627,43.7375858771,-79.4850746681,305986.793,4843958.284
-892447,4152932,2017.0,2018.0,1926.0,PRIVATE,4,Parkdale-High Park,5 HIGH PARK AVE,3,21,2019-02-26,69,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,3.0,2.0,3.0,,4.0,,,3.0,3.0,5.0,3.0,4.0,3.0,,3.0,,,S0428,43.6538760484,-79.46498174060001,307609.12899999996,4834659.06
-892448,4155271,2017.0,2018.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,2 HILL HEIGHTS RD,4,30,2019-02-26,80,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,5.0,3.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,,W0327,43.638792844799994,-79.4940708914,305262.703,4832982.879
-892449,4154689,,2018.0,1953.0,PRIVATE,6,York Centre,4089 BATHURST ST,3,10,2019-02-26,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N0630,43.7451902224,-79.4355554925,309974.977,4844804.968
-892450,4154687,2017.0,2018.0,1950.0,SOCIAL HOUSING,6,York Centre,4085 BATHURST ST,3,10,2019-02-26,69,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,4.0,3.0,3.0,,3.0,,3.0,4.0,3.0,5.0,3.0,3.0,3.0,,4.0,3.0,,N0630,43.74471057069999,-79.4354450198,309983.913,4844751.683999999
-892451,4153101,2017.0,2018.0,2003.0,SOCIAL HOUSING,9,Davenport,973 LANSDOWNE AVE,3,20,2019-02-26,73,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,3.0,3.0,4.0,,4.0,,4.0,4.0,4.0,5.0,2.0,4.0,3.0,4.0,3.0,3.0,4.0,S0930,43.6661838696,-79.4459119791,309146.453,4836027.149
-892452,4153991,2017.0,2018.0,1950.0,PRIVATE,12,Toronto-St. Paul's,115 EGLINTON AVE W,3,18,2019-02-25,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,S1227,43.705692166300004,-79.402181637,312668.05100000004,4840419.64
-892453,4153102,2017.0,2018.0,1974.0,PRIVATE,9,Davenport,730 ST CLARENS AVE,18,275,2019-02-25,73,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,4.0,4.0,3.0,,4.0,3.0,,S0930,43.667270761000005,-79.44567156,309165.49600000004,4836148.864
-892454,4290959,2018.0,2018.0,1962.0,PRIVATE,3,Etobicoke-Lakeshore,25 ELIZABETH ST,3,29,2019-02-25,74,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,3.0,4.0,,4.0,,3.0,3.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,W0336,43.6135850358,-79.4949390042,305192.817,4830182.433
-892455,4154977,2017.0,2018.0,1955.0,PRIVATE,12,Toronto-St. Paul's,197 VAUGHAN RD,6,42,2019-02-25,80,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,4.0,4.0,5.0,,2.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,S1229,43.68697657479999,-79.42215889180001,311059.907,4838338.659
-892456,4156441,2017.0,2018.0,2009.0,SOCIAL HOUSING,12,Toronto-St. Paul's,201 VAUGHAN RD,3,30,2019-02-25,81,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,,S1229,43.6870772647,-79.4223633104,311043.417,4838349.831
-892457,4155482,2017.0,2018.0,1951.0,PRIVATE,3,Etobicoke-Lakeshore,51 STANLEY AVE,3,12,2019-02-25,72,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,3.0,3.0,,3.0,,,4.0,4.0,3.0,3.0,3.0,4.0,,4.0,4.0,,W0336,43.6160393846,-79.4896739143,305617.776,4830455.127
-892458,4155473,2017.0,2018.0,1959.0,SOCIAL HOUSING,3,Etobicoke-Lakeshore,110 STANLEY AVE,3,16,2019-02-25,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,4.0,4.0,,3.0,,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,W0336,43.615136766499994,-79.49497407060001,305189.979,4830354.824
-892459,4255529,2017.0,2018.0,1910.0,PRIVATE,9,Davenport,97 NORTHCLIFFE BLVD,3,10,2019-02-25,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,3.0,4.0,,,S0928,43.6782401171,-79.4406119217,309572.876,4837366.827
-892460,4153545,2017.0,2018.0,1917.0,PRIVATE,13,Toronto Centre,96 ISABELLA ST,4,28,2019-02-25,79,Evaluation needs to be conducted in 2 years,14,3.0,4.0,4.0,4.0,4.0,4.0,,3.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,S1322,43.6689634555,-79.38048370930001,314422.606,4836341.446
-892461,4153529,2017.0,2018.0,1960.0,PRIVATE,13,Toronto Centre,105 ISABELLA ST,11,221,2019-02-25,78,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,,4.0,2.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1322,43.6684688832,-79.3799631196,314464.668,4836286.561000001
-892462,4227299,2017.0,2018.0,1962.0,PRIVATE,6,York Centre,4100 BATHURST ST,5,37,2019-02-25,63,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,2.0,,N0629,43.7454927714,-79.4364245515,309904.96,4844838.53
-892463,4154602,2017.0,2018.0,1950.0,PRIVATE,6,York Centre,4110 BATHURST ST,3,16,2019-02-25,65,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,4.0,4.0,3.0,,N0629,43.74586214,-79.4365128127,309897.822,4844879.562
-892464,4154856,2017.0,2018.0,1950.0,PRIVATE,16,Don Valley East,76 BARTLEY DR,3,10,2019-02-25,80,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,4.0,4.0,5.0,,4.0,,4.0,5.0,4.0,5.0,4.0,4.0,3.0,,4.0,3.0,,N1631,43.722668083,-79.306350662,320386.727,4842320.0030000005
-892465,4154857,2017.0,2018.0,1962.0,PRIVATE,16,Don Valley East,80 BARTLEY DR,3,10,2019-02-25,77,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,3.0,4.0,,5.0,,,4.0,3.0,5.0,3.0,4.0,4.0,,3.0,4.0,,N1631,43.722615158,-79.306619676,320365.066,4842314.073
-892466,4155485,2017.0,2018.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,12 ALBERT AVE,3,12,2019-02-25,81,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,5.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0336,43.6158886447,-79.4889237637,305678.326,4830438.387
-892467,4155484,2017.0,2018.0,1950.0,PRIVATE,3,Etobicoke-Lakeshore,16 ALBERT AVE,3,18,2019-02-25,83,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,3.0,4.0,,3.0,,,4.0,5.0,5.0,5.0,5.0,4.0,,4.0,3.0,,W0336,43.6159770796,-79.4891131322,305663.04,4830448.21
-892468,4269313,2017.0,2018.0,1958.0,PRIVATE,20,Scarborough Southwest,996 DANFORTH RD,3,20,2019-02-25,80,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,4.0,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,4.0,,E2024,43.7350794611,-79.2480505493,325080.042,4843710.415
-892469,4269318,2017.0,2018.0,1958.0,PRIVATE,20,Scarborough Southwest,998 DANFORTH RD,3,21,2019-02-25,78,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,3.0,4.0,4.0,,4.0,,4.0,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,4.0,,E2024,43.7352342615,-79.2476716721,325110.51,4843727.705
-892470,4153116,2017.0,2018.0,1951.0,PRIVATE,9,Davenport,1095 ST CLAIR AVE W,3,11,2019-02-25,57,Evaluation needs to be conducted in 1 year,13,2.0,3.0,3.0,3.0,,3.0,,3.0,,,2.0,3.0,4.0,2.0,3.0,3.0,,3.0,,,S0928,43.678255875,-79.4404625992,309584.915,4837368.586
-892471,4153990,2017.0,2018.0,1950.0,PRIVATE,12,Toronto-St. Paul's,119 EGLINTON AVE W,3,18,2019-02-25,64,Evaluation needs to be conducted in 1 year,15,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,,,S1227,43.7056468063,-79.40240284949999,312650.228,4840414.579
-892472,4153992,2017.0,2018.0,1928.0,PRIVATE,12,Toronto-St. Paul's,48 MAXWELL AVE,3,29,2019-02-22,81,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S1227,43.7057591622,-79.4018857933,312691.886,4840427.112
-892473,4152937,2017.0,2018.0,1914.0,PRIVATE,4,Parkdale-High Park,1920 BLOOR ST W,3,16,2019-02-22,63,Evaluation needs to be conducted in 1 year,15,3.0,4.0,4.0,3.0,,3.0,,4.0,,,3.0,3.0,5.0,3.0,3.0,3.0,2.0,2.0,2.0,,S0428,43.653685383,-79.466255527,307506.125,4834638.788
-892474,4155802,2017.0,2018.0,1956.0,PRIVATE,20,Scarborough Southwest,14 ENGELHART CRES,3,47,2019-02-22,76,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,3.0,,4.0,,4.0,4.0,4.0,5.0,3.0,4.0,4.0,,3.0,3.0,,E2021,43.7220330061,-79.30046916970001,320861.043,4842249.596
-892475,4152946,2017.0,2018.0,1997.0,SOCIAL HOUSING,4,Parkdale-High Park,2750 DUNDAS ST W,6,30,2019-02-22,73,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,5.0,4.0,3.0,4.0,5.0,4.0,4.0,3.0,3.0,4.0,3.0,,S0429,43.665346577,-79.46092314100001,307935.755,4835938.396000001
-892476,4154863,2017.0,2018.0,1956.0,PRIVATE,16,Don Valley East,1594 VICTORIA PARK AVE,4,28,2019-02-22,89,Evaluation needs to be conducted in 3 years,18,4.0,4.0,5.0,4.0,4.0,4.0,,5.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,,N1628,43.7295535678,-79.30517927359999,320479.575,4843084.2069999995
-892477,4154983,2017.0,2018.0,1952.0,PRIVATE,12,Toronto-St. Paul's,194 VAUGHAN RD,4,22,2019-02-22,67,Evaluation needs to be conducted in 2 years,14,3.0,4.0,4.0,3.0,3.0,3.0,,4.0,,,4.0,3.0,2.0,4.0,3.0,3.0,,4.0,,,S1229,43.6868615929,-79.4228739886,311002.268,4838325.831
-892478,4154976,2017.0,2018.0,1920.0,PRIVATE,12,Toronto-St. Paul's,195 VAUGHAN RD,4,32,2019-02-22,79,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,,4.0,4.0,4.0,5.0,3.0,4.0,4.0,,3.0,,,S1229,43.6868381071,-79.4220275431,311070.51,4838323.284
-892479,4154975,2017.0,2018.0,1955.0,PRIVATE,12,Toronto-St. Paul's,189 VAUGHAN RD,4,16,2019-02-22,69,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,3.0,1.0,4.0,,4.0,,,3.0,3.0,5.0,4.0,4.0,3.0,4.0,3.0,,,S1229,43.6867106678,-79.421940478,311077.542,4838309.131
-892480,4155084,2017.0,2018.0,1957.0,PRIVATE,5,York South-Weston,3 NASHVILLE AVE,4,21,2019-02-22,79,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,4.0,5.0,3.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0536,43.6832687554,-79.4730881792,306954.151,4837924.166
-892481,4155083,2017.0,2018.0,1965.0,PRIVATE,5,York South-Weston,7 NASHVILLE AVE,4,23,2019-02-22,64,Evaluation needs to be conducted in 1 year,17,4.0,4.0,3.0,3.0,3.0,2.0,,3.0,,3.0,3.0,4.0,5.0,3.0,3.0,2.0,3.0,3.0,3.0,,W0536,43.683178102,-79.4735022306,306920.77,4837914.084
-892482,4153108,2018.0,2018.0,,PRIVATE,9,Davenport,156 BRANDON AVE,4,19,2019-02-22,54,Evaluation needs to be conducted in 1 year,16,2.0,3.0,3.0,2.0,3.0,3.0,,2.0,,,3.0,3.0,5.0,2.0,2.0,2.0,3.0,2.0,3.0,,S0927,43.669233242,-79.44593058699999,309144.453,4836366.875
-892483,4153533,2017.0,2018.0,1963.0,PRIVATE,13,Toronto Centre,59 ISABELLA ST,14,101,2019-02-22,82,Evaluation needs to be conducted in 2 years,19,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,S1322,43.667962528000004,-79.382564773,314254.674,4836230.967
-892484,4154524,2017.0,2018.0,1957.0,PRIVATE,8,Eglinton-Lawrence,22 HOTSPUR RD,3,10,2019-02-22,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,2.0,3.0,3.0,2.0,,N0823,43.7331168805,-79.4348475012,310014.946,4843450.384
-892485,4154525,2017.0,2018.0,1952.0,PRIVATE,8,Eglinton-Lawrence,24 HOTSPUR RD,3,10,2019-02-22,70,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,3.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0823,43.733065925,-79.4350942032,309994.88399999996,4843443.039
-892486,4152621,2017.0,2018.0,1956.0,PRIVATE,20,Scarborough Southwest,64 HARRIS PARK DR,3,11,2019-02-22,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,4.0,4.0,3.0,5.0,3.0,4.0,4.0,,3.0,4.0,,E2021,43.7221951584,-79.2984586067,321022.98699999996,4842268.005
-892487,4152620,2017.0,2018.0,1956.0,PRIVATE,20,Scarborough Southwest,68 HARRIS PARK DR,3,11,2019-02-22,79,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,4.0,4.0,3.0,5.0,3.0,4.0,4.0,,4.0,4.0,,E2021,43.722488216,-79.2987114556,321002.536,4842300.513
-892488,4154485,2017.0,2018.0,1992.0,TCHC,8,Eglinton-Lawrence,3036-3050 BATHURST ST,7,160,2019-02-22,75,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,4.0,4.0,N0827,43.718487778000004,-79.429895751,310427.489,4841848.69
-892489,4154558,2017.0,2018.0,1983.0,TCHC,8,Eglinton-Lawrence,3174 BATHURST ST,12,181,2019-02-22,77,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,5.0,,4.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,N0823,43.7219200782,-79.4309398102,310348.858,4842220.108
-892490,4154690,2017.0,2018.0,1950.0,PRIVATE,6,York Centre,4109 BATHURST ST,3,10,2019-02-22,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N0630,43.746407389,-79.43586259199999,309949.881,4844941.132
-892491,4154691,2017.0,2018.0,1955.0,PRIVATE,6,York Centre,4111 BATHURST ST,3,11,2019-02-22,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N0630,43.746615983000005,-79.43591063699999,309945.994,4844964.303
-892492,4154601,2017.0,2018.0,1955.0,PRIVATE,6,York Centre,4114 BATHURST ST,4,17,2019-02-22,68,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,4.0,4.0,4.0,,3.0,,3.0,3.0,3.0,3.0,4.0,4.0,4.0,3.0,4.0,3.0,,N0629,43.74614789100001,-79.4365743,309892.583,4844912.259
-892493,4154864,2017.0,2018.0,1955.0,PRIVATE,16,Don Valley East,2 BIGGIN CRT,4,77,2019-02-22,81,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,4.0,4.0,3.0,,4.0,5.0,4.0,5.0,4.0,5.0,3.0,4.0,3.0,5.0,3.0,3.0,,N1628,43.72905505560001,-79.3049498934,320498.183,4843028.87
-892494,4152936,2017.0,2018.0,1914.0,PRIVATE,4,Parkdale-High Park,1914 BLOOR ST W,3,16,2019-02-22,63,Evaluation needs to be conducted in 1 year,15,3.0,4.0,3.0,3.0,,3.0,,4.0,,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,2.0,2.0,,S0428,43.653724315,-79.466048263,307522.842,4834643.12
-892495,4153989,2017.0,2018.0,1940.0,PRIVATE,12,Toronto-St. Paul's,63 MAXWELL AVE,3,33,2019-02-22,76,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,4.0,4.0,4.0,,3.0,,3.0,4.0,5.0,5.0,3.0,3.0,4.0,,4.0,3.0,,S1227,43.705877825,-79.4013471201,312735.285,4840440.348
-892496,4155092,2017.0,2018.0,2009.0,SOCIAL HOUSING,5,York South-Weston,2600 EGLINTON AVE W,3,32,2019-02-21,69,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,3.0,3.0,4.0,,3.0,,,3.0,3.0,5.0,4.0,3.0,3.0,,4.0,3.0,3.0,W0533,43.690839177,-79.473005863,306960.28,4838766.143999999
-892497,4152583,2017.0,2018.0,1954.0,PRIVATE,20,Scarborough Southwest,62 GLEN EVEREST RD,4,46,2019-02-21,73,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,3.0,3.0,3.0,,4.0,,,4.0,4.0,5.0,3.0,4.0,3.0,4.0,4.0,3.0,,E2035,43.702519583000004,-79.253065845,324686.511,4840092.937
-892498,4156002,2017.0,2018.0,1937.0,PRIVATE,8,Eglinton-Lawrence,1798 EGLINTON AVE W,3,34,2019-02-21,70,Evaluation needs to be conducted in 2 years,14,3.0,3.0,4.0,3.0,2.0,3.0,,5.0,,,4.0,4.0,5.0,3.0,3.0,3.0,,4.0,,,N0831,43.696142079,-79.44919947300001,308871.662,4839354.179
-892499,4155034,2017.0,2018.0,1965.0,PRIVATE,12,Toronto-St. Paul's,640 LAUDER AVE,10,129,2019-02-21,81,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,3.0,5.0,5.0,4.0,3.0,5.0,5.0,4.0,3.0,,S1222,43.6937773713,-79.44616047699999,309124.445,4839092.664
-892500,4153805,2017.0,2018.0,1930.0,PRIVATE,12,Toronto-St. Paul's,196 EGLINTON AVE E,4,25,2019-02-21,76,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,4.0,3.0,4.0,,3.0,,3.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,S1221,43.708345686099996,-79.3923007973,313466.197,4840711.342
-892501,4153752,2017.0,2018.0,1960.0,PRIVATE,11,University-Rosedale,309 MOUNT PLEASANT RD,3,25,2019-02-21,70,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,3.0,4.0,,4.0,,,4.0,2.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,,S1122,43.690180248599994,-79.38293192020001,314221.897,4838698.284
-892502,4155033,2017.0,2018.0,1960.0,PRIVATE,12,Toronto-St. Paul's,682 NORTHCLIFFE BLVD,6,54,2019-02-21,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,3.0,5.0,4.0,5.0,4.0,3.0,4.0,5.0,4.0,3.0,,S1222,43.69560890899999,-79.4478332709,308989.478,4839296.063
-892503,4155028,2017.0,2018.0,1968.0,PRIVATE,12,Toronto-St. Paul's,620 NORTHCLIFFE BLVD,9,68,2019-02-21,89,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,,S1222,43.6935553458,-79.447286922,309033.655,4839067.943
-892504,4155038,2017.0,2018.0,1968.0,PRIVATE,12,Toronto-St. Paul's,633 NORTHCLIFFE BLVD,11,86,2019-02-21,71,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,3.0,3.0,,4.0,3.0,,3.0,4.0,4.0,4.0,3.0,5.0,3.0,3.0,2.0,,S1222,43.695129788,-79.4469525657,309060.50399999996,4839242.877
-892505,4156038,2017.0,2018.0,1969.0,TCHC,13,Toronto Centre,375 BLEECKER ST,24,327,2019-02-21,65,Evaluation needs to be conducted in 1 year,19,3.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,3.0,,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,2.0,3.0,S1323,43.670607632,-79.374814757,314879.229,4836525.723999999
-892506,4152941,2017.0,2018.0,1958.0,PRIVATE,4,Parkdale-High Park,205 KEELE ST,4,42,2019-02-21,72,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,4.0,3.0,3.0,,4.0,,3.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,,S0429,43.65971467560001,-79.4617878892,307866.434,4835307.806
-892507,4154518,2017.0,2018.0,1956.0,PRIVATE,8,Eglinton-Lawrence,25 HOTSPUR RD,3,11,2019-02-21,80,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,5.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,N0823,43.732587967700006,-79.43470192619999,310044.798,4843405.008
-892508,4154517,2017.0,2018.0,1956.0,PRIVATE,8,Eglinton-Lawrence,27 HOTSPUR RD,3,11,2019-02-21,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0823,43.732497833100005,-79.4349702821,310023.188,4843394.977
-892509,4155085,2017.0,2018.0,1958.0,PRIVATE,5,York South-Weston,1650 KEELE ST,4,22,2019-02-21,61,Evaluation needs to be conducted in 1 year,17,3.0,3.0,5.0,3.0,3.0,2.0,,4.0,,2.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,2.0,,W0536,43.683492700100004,-79.47263124439999,306990.985,4837949.057
-892510,4154692,2017.0,2018.0,1959.0,PRIVATE,6,York Centre,4141 BATHURST ST,3,30,2019-02-21,85,Evaluation needs to be conducted in 2 years,19,5.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0630,43.7480692868,-79.436244411,309919.25399999996,4845124.782
-892511,4154603,2017.0,2018.0,1964.0,PRIVATE,6,York Centre,4160 BATHURST ST,7,67,2019-02-21,64,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,,N0629,43.7478559496,-79.4370573738,309853.799,4845101.032
-892512,4154867,2017.0,2018.0,1955.0,PRIVATE,16,Don Valley East,3 BIGGIN CRT,4,55,2019-02-21,76,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,4.0,3.0,,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,,N1628,43.7282648735,-79.3058539405,320425.555,4842940.919
-892513,4154866,2017.0,2018.0,1955.0,PRIVATE,16,Don Valley East,5 BIGGIN CRT,4,65,2019-02-21,75,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,,N1628,43.7279966031,-79.3068020912,320349.24,4842910.937
-892514,4153751,,2018.0,1955.0,PRIVATE,11,University-Rosedale,171 ST CLAIR AVE E,4,36,2019-02-21,57,Evaluation needs to be conducted in 1 year,18,2.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,,2.0,2.0,5.0,3.0,3.0,3.0,3.0,2.0,3.0,,S1121,43.689555816,-79.38601833050001,313973.18100000004,4838628.565
-892515,4153784,2017.0,2018.0,1955.0,PRIVATE,12,Toronto-St. Paul's,107 REDPATH AVE,4,31,2019-02-21,76,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,4.0,4.0,3.0,,4.0,3.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S1228,43.7072705538,-79.3921611065,313475.429,4840596.0
-892516,4154871,2017.0,2018.0,1960.0,PRIVATE,16,Don Valley East,21 ECCLESTON DR,4,64,2019-02-20,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,3.0,5.0,4.0,5.0,4.0,4.0,5.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,,N1628,43.7270536549,-79.31695183810001,319531.775,4842804.342
-892517,4155740,2017.0,2018.0,1967.0,PRIVATE,6,York Centre,4222 BATHURST ST,8,77,2019-02-20,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,,N0629,43.7495949596,-79.4376915029,309802.588,4845294.188
-892518,4155080,2017.0,2018.0,1975.0,PRIVATE,5,York South-Weston,2501 EGLINTON AVE W,4,25,2019-02-20,62,Evaluation needs to be conducted in 1 year,19,3.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,2.0,5.0,2.0,2.0,3.0,2.0,3.0,2.0,,W0537,43.6910731495,-79.469713055,307225.981,4838791.27
-892519,4155767,2017.0,2018.0,1960.0,PRIVATE,6,York Centre,10 ELLISON AVE,3,12,2019-02-20,66,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,4.0,3.0,4.0,,3.0,,,2.0,3.0,5.0,4.0,3.0,3.0,4.0,3.0,3.0,,N0629,43.7500169368,-79.43794866489999,309781.844,4845341.052
-892520,4154967,2017.0,2018.0,1950.0,PRIVATE,12,Toronto-St. Paul's,105 KENWOOD AVE,4,31,2019-02-20,79,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,3.0,4.0,3.0,,5.0,,,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,,,S1229,43.685885733999996,-79.4229628704,310995.19899999996,4838217.402
-892521,4153733,2017.0,2018.0,1950.0,PRIVATE,11,University-Rosedale,464 SUMMERHILL AVE,3,19,2019-02-20,77,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,3.0,,S1130,43.686586172,-79.37511600399999,314852.311,4838300.882
-892522,4272882,2017.0,2018.0,1952.0,PRIVATE,11,University-Rosedale,468 SUMMERHILL AVE,3,34,2019-02-20,83,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,5.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S1130,43.686670483,-79.37486008100001,314872.929,4838310.28
-892523,4287729,2018.0,2018.0,1952.0,PRIVATE,11,University-Rosedale,470 SUMMERHILL AVE,3,17,2019-02-20,83,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,5.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S1130,43.686627439,-79.374759908,314881.012,4838305.51
-892524,4154982,2017.0,2018.0,1955.0,PRIVATE,12,Toronto-St. Paul's,214 VAUGHAN RD,6,31,2019-02-20,81,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,5.0,,3.0,5.0,4.0,3.0,5.0,5.0,4.0,4.0,4.0,,3.0,4.0,,S1229,43.6873436223,-79.4236433658,310940.19399999996,4838379.329
-892525,4154980,2017.0,2018.0,1927.0,PRIVATE,12,Toronto-St. Paul's,227 VAUGHAN RD,4,24,2019-02-20,57,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,2.0,2.0,,1.0,,2.0,2.0,2.0,5.0,3.0,4.0,4.0,,3.0,,,S1229,43.6877852335,-79.4233040903,310967.502,4838428.419
-892526,4154875,2017.0,2018.0,1960.0,PRIVATE,16,Don Valley East,1 ECCLESTON DR,4,62,2019-02-20,83,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,4.0,5.0,5.0,2.0,4.0,4.0,3.0,3.0,3.0,,N1628,43.727010393,-79.3140806139,319763.103,4842800.045
-892527,4154874,2017.0,2018.0,1960.0,PRIVATE,16,Don Valley East,3 ECCLESTON DR,4,61,2019-02-20,84,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,4.0,5.0,5.0,2.0,4.0,4.0,4.0,3.0,3.0,,N1628,43.7269110332,-79.3147057039,319712.768,4842788.895
-892528,4153058,2017.0,2018.0,1930.0,PRIVATE,4,Parkdale-High Park,1585 BLOOR ST W,3,48,2019-02-20,63,Evaluation needs to be conducted in 1 year,15,4.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,,,S0432,43.655531643,-79.454594071,308446.68,4834844.344
-892529,4152912,2017.0,2018.0,1927.0,PRIVATE,4,Parkdale-High Park,117 RUNNYMEDE RD,4,42,2019-02-20,69,Evaluation needs to be conducted in 2 years,14,3.0,3.0,3.0,4.0,4.0,4.0,,3.0,,,4.0,2.0,5.0,3.0,3.0,4.0,,3.0,,,S0430,43.6507245776,-79.4756999777,306744.649,4834308.671
-892530,4154876,2017.0,2018.0,1960.0,PRIVATE,16,Don Valley East,26 SLOANE AVE,4,60,2019-02-20,85,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,4.0,5.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,,N1628,43.7266750646,-79.3142450154,319749.941,4842762.762
-892531,4154526,2017.0,2018.0,1957.0,PRIVATE,8,Eglinton-Lawrence,26 HOTSPUR RD,3,12,2019-02-20,74,Evaluation needs to be conducted in 2 years,16,4.0,2.0,4.0,4.0,3.0,4.0,,3.0,,,4.0,3.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,N0823,43.733002204399995,-79.4353409196,309977.291,4843434.838
-892532,4154527,2017.0,2018.0,1957.0,PRIVATE,8,Eglinton-Lawrence,32 HOTSPUR RD,3,10,2019-02-20,69,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,3.0,3.0,4.0,,3.0,,,3.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,,N0823,43.732850466,-79.435796774,309949.31,4843417.109
-892533,4155031,2021.0,2018.0,1960.0,PRIVATE,12,Toronto-St. Paul's,1801 EGLINTON AVE W,3,41,2019-02-20,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,3.0,4.0,3.0,,3.0,5.0,,5.0,4.0,5.0,4.0,3.0,4.0,,3.0,3.0,,S1222,43.695756472,-79.449018677,308893.65,4839313.352
-892534,4154973,,2018.0,1925.0,PRIVATE,12,Toronto-St. Paul's,8 PINEWOOD AVE,3,11,2019-02-19,59,Evaluation needs to be conducted in 1 year,15,2.0,3.0,3.0,3.0,2.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,2.0,,,S1229,43.682584046,-79.425180892,310816.424,4837851.375
-892535,4154986,2017.0,2018.0,1952.0,PRIVATE,12,Toronto-St. Paul's,236 VAUGHAN RD,5,79,2019-02-19,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,5.0,4.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,,S1229,43.6878267633,-79.4247971619,310847.13,4838432.92
-892536,4154606,2017.0,2018.0,1950.0,PRIVATE,6,York Centre,4234 BATHURST ST,3,13,2019-02-19,74,Evaluation needs to be conducted in 2 years,16,4.0,3.0,3.0,4.0,4.0,4.0,,3.0,,,4.0,3.0,5.0,4.0,4.0,3.0,3.0,4.0,4.0,,N0629,43.7500704294,-79.4375522258,309813.766,4845347.018
-892537,4154605,2017.0,2018.0,1956.0,PRIVATE,6,York Centre,4238 BATHURST ST,3,13,2019-02-19,66,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,,4.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,N0629,43.7503482219,-79.4375870637,309810.938,4845377.877
-892538,4155023,2017.0,2018.0,1954.0,PRIVATE,12,Toronto-St. Paul's,1 A BANSLEY AVE,4,19,2019-02-19,75,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,4.0,4.0,5.0,,3.0,,3.0,4.0,3.0,5.0,4.0,3.0,4.0,,4.0,3.0,,S1222,43.69288038569999,-79.44204325390001,309456.402,4838993.219
-892539,4152997,2018.0,2018.0,1965.0,PRIVATE,4,Parkdale-High Park,115 DOWLING AVE,9,70,2019-02-19,53,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,2.0,,2.0,3.0,4.0,3.0,2.0,2.0,3.0,2.0,2.0,,S0437,43.636352645100004,-79.4380647269,309781.782,4832713.518
-892540,4152997,2018.0,2018.0,1965.0,PRIVATE,4,Parkdale-High Park,115 DOWLING AVE,9,70,2019-02-19,53,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,2.0,,2.0,3.0,4.0,3.0,2.0,2.0,3.0,2.0,2.0,,S0437,43.636352645100004,-79.4380647269,309781.782,4832713.518
-892541,4257265,2017.0,2018.0,1969.0,PRIVATE,11,University-Rosedale,95 DAVENPORT RD,3,26,2019-02-19,79,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,,,S1128,43.673636335,-79.391647025,313521.42,4836860.285
-892542,4153740,2018.0,2018.0,1980.0,PRIVATE,11,University-Rosedale,1233 YONGE ST,4,42,2019-02-19,75,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,3.0,2.0,5.0,3.0,4.0,4.0,,3.0,4.0,,S1121,43.6837736438,-79.3918217726,313506.154,4837985.526000001
-892543,4154887,2017.0,2018.0,1960.0,PRIVATE,16,Don Valley East,48 ECCLESTON DR,4,69,2019-02-19,76,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,3.0,5.0,3.0,,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,,N1628,43.7279658085,-79.31798872579999,319448.016,4842905.4969999995
-892544,4155040,2017.0,2018.0,1958.0,PRIVATE,8,Eglinton-Lawrence,1480 EGLINTON AVE W,4,11,2019-02-19,77,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,,3.0,4.0,3.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,,N0831,43.6981187343,-79.4400469676,309616.941,4839575.316000001
-892545,4155041,2017.0,2018.0,1955.0,PRIVATE,8,Eglinton-Lawrence,1490 EGLINTON AVE W,4,34,2019-02-19,81,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,5.0,5.0,,4.0,,3.0,4.0,4.0,5.0,3.0,3.0,4.0,4.0,4.0,4.0,,N0831,43.6981168907,-79.4403546526,309592.14,4839575.093
-892546,4155042,2017.0,2018.0,1954.0,PRIVATE,8,Eglinton-Lawrence,1500 EGLINTON AVE W,4,34,2019-02-19,74,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,,3.0,5.0,3.0,5.0,3.0,3.0,4.0,3.0,4.0,3.0,,N0831,43.698027116800006,-79.4407389878,309561.167,4839565.097
-892547,4169166,2017.0,2018.0,1960.0,SOCIAL HOUSING,8,Eglinton-Lawrence,1674 EGLINTON AVE W,4,40,2019-02-19,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,5.0,3.0,,4.0,3.0,4.0,4.0,3.0,4.0,,4.0,3.0,,N0831,43.6970039967,-79.4454317501,309182.971,4839451.174
-892548,4155039,2017.0,2018.0,1960.0,PRIVATE,12,Toronto-St. Paul's,1675 EGLINTON AVE W,3,37,2019-02-19,75,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,3.0,4.0,4.0,,3.0,,3.0,3.0,5.0,5.0,4.0,3.0,4.0,,3.0,3.0,,S1222,43.6962776134,-79.4460738363,309131.262,4839370.443
-892549,4169173,2017.0,2018.0,1960.0,PRIVATE,12,Toronto-St. Paul's,1685 EGLINTON AVE W,3,38,2019-02-19,77,Evaluation needs to be conducted in 2 years,14,4.0,4.0,5.0,3.0,,3.0,,3.0,,,4.0,5.0,5.0,4.0,3.0,4.0,,4.0,3.0,,S1222,43.696203167,-79.446372358,309106.94,4839363.1110000005
-892550,4155079,2017.0,2018.0,1950.0,PRIVATE,5,York South-Weston,2507 EGLINTON AVE W,4,28,2019-02-19,72,Evaluation needs to be conducted in 2 years,17,4.0,3.0,5.0,3.0,3.0,3.0,,4.0,,3.0,4.0,5.0,5.0,2.0,3.0,3.0,4.0,3.0,4.0,,W0537,43.6910254603,-79.4700324618,307200.235,4838785.964
-892551,4155943,2017.0,2018.0,1965.0,TCHC,20,Scarborough Southwest,3171 EGLINTON AVE E,12,161,2019-02-19,74,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,,3.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,,E2027,43.7426229529,-79.22004925,327332.807,4844555.63
-892552,4155957,2017.0,2018.0,1972.0,TCHC,20,Scarborough Southwest,30 GORDONRIDGE PL,17,231,2019-02-19,76,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,3.0,4.0,E2024,43.726764513,-79.250888477,324750.497,4842822.528
-892553,4155573,2017.0,2018.0,1972.0,TCHC,20,Scarborough Southwest,40 GORDONRIDGE PL,18,421,2019-02-19,72,Evaluation needs to be conducted in 2 years,20,3.0,3.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,3.0,4.0,E2024,43.727612646000004,-79.251278648,324819.267,4842872.647
-892554,4156721,2017.0,2018.0,1950.0,PRIVATE,5,York South-Weston,2515 EGLINTON AVE W,4,34,2019-02-19,69,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,,3.0,4.0,5.0,5.0,2.0,3.0,3.0,3.0,3.0,4.0,,W0537,43.69095169,-79.470613783,307153.113,4838778.708000001
-892555,4154987,2017.0,2018.0,1938.0,PRIVATE,12,Toronto-St. Paul's,229 VAUGHAN RD,4,24,2019-02-19,79,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,,,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,,,S1229,43.687936684700006,-79.4236664523,310938.274,4838445.218
-892556,4154988,2017.0,2018.0,1926.0,PRIVATE,12,Toronto-St. Paul's,231 VAUGHAN RD,4,52,2019-02-19,68,Evaluation needs to be conducted in 2 years,13,3.0,4.0,2.0,4.0,,4.0,,3.0,,,3.0,2.0,5.0,3.0,4.0,4.0,,3.0,,,S1229,43.6880599836,-79.42414197789999,310899.92600000004,4838458.881
-892557,4154321,2017.0,2018.0,1960.0,PRIVATE,5,York South-Weston,2647 KEELE ST,3,33,2019-02-19,62,Evaluation needs to be conducted in 1 year,17,2.0,3.0,3.0,4.0,2.0,3.0,,3.0,,3.0,2.0,3.0,4.0,5.0,3.0,3.0,4.0,4.0,2.0,,W0523,43.7218557003,-79.4808147675,306330.299,4842210.82
-892558,4152908,2017.0,2018.0,1967.0,PRIVATE,4,Parkdale-High Park,2 KENNEDY AVE,4,25,2019-02-15,64,Evaluation needs to be conducted in 1 year,16,3.0,4.0,3.0,3.0,3.0,2.0,,3.0,,3.0,4.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S0430,43.646232595,-79.473567835,306916.528,4833810.638
-892559,4153730,2017.0,2018.0,1954.0,PRIVATE,11,University-Rosedale,40 PARK RD,7,39,2019-02-15,80,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S1129,43.672981453,-79.384902282,314065.409,4836788.283
-892560,4152965,2017.0,2018.0,1957.0,PRIVATE,4,Parkdale-High Park,130 TYNDALL AVE,5,37,2019-02-15,70,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,3.0,5.0,,3.0,4.0,3.0,3.0,3.0,5.0,4.0,3.0,3.0,4.0,3.0,4.0,,S0437,43.6378675818,-79.4294602213,310475.906,4832882.331
-892561,4152917,2017.0,2018.0,1935.0,PRIVATE,4,Parkdale-High Park,7 BRULE TER,3,13,2019-02-15,62,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,,,4.0,3.0,5.0,3.0,3.0,2.0,2.0,3.0,3.0,,S0430,43.6475612545,-79.4890462091,305668.015,4833957.046
-892562,4153735,2017.0,2018.0,1950.0,PRIVATE,11,University-Rosedale,36 CASTLE FRANK RD,4,53,2019-02-15,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1131,43.676613159,-79.36971986489999,315289.335,4837192.601
-892563,4155062,2017.0,2018.0,1965.0,PRIVATE,8,Eglinton-Lawrence,370 RIDELLE AVE,28,214,2019-02-15,85,Evaluation needs to be conducted in 2 years,19,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,3.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,5.0,N0831,43.7046374432,-79.440751474,309559.647,4840299.426
-892564,4155090,2017.0,2018.0,1950.0,PRIVATE,5,York South-Weston,2 GLENHAVEN ST,4,24,2019-02-15,53,Evaluation needs to be conducted in 1 year,15,2.0,3.0,3.0,1.0,2.0,2.0,,2.0,,,2.0,4.0,5.0,3.0,3.0,2.0,,3.0,3.0,,W0533,43.6915635966,-79.470083716,307196.082,4838845.745
-892565,4155089,2017.0,2018.0,1950.0,PRIVATE,5,York South-Weston,43 GLENHAVEN ST,3,11,2019-02-15,78,Evaluation needs to be conducted in 2 years,16,4.0,3.0,5.0,4.0,4.0,3.0,,4.0,,,4.0,4.0,5.0,3.0,4.0,4.0,5.0,3.0,3.0,,W0533,43.6931694269,-79.4699479561,307206.968,4839024.153
-892566,4155051,2017.0,2018.0,1958.0,PRIVATE,8,Eglinton-Lawrence,131 LYON CRT,4,26,2019-02-15,78,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,,3.0,5.0,4.0,4.0,4.0,3.0,4.0,5.0,4.0,3.0,,N0831,43.7030805404,-79.44023175939999,309601.661,4840126.516
-892567,4290978,2017.0,2018.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,2305 LAKE SHORE BLVD W,4,38,2019-02-15,89,Evaluation needs to be conducted in 3 years,15,4.0,5.0,5.0,5.0,4.0,5.0,,4.0,,,5.0,5.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0336,43.61799882930001,-79.4862937261,305855.692,4830672.705
-892568,4457070,,2018.0,1951.0,PRIVATE,19,Beaches-East York,1127 O'CONNOR DR,3,11,2019-02-15,67,Evaluation needs to be conducted in 2 years,15,4.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,5.0,,S1924,43.710979707700005,-79.3082535422,320236.683,4841020.188999999
-892569,4457092,,2018.0,1951.0,PRIVATE,19,Beaches-East York,1131 O'CONNOR DR,3,12,2019-02-15,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,,4.0,4.0,4.0,5.0,3.0,4.0,3.0,,3.0,5.0,,S1924,43.711133073599996,-79.3081363101,320246.091,4841037.249
-892570,4290981,2017.0,2018.0,1959.0,PRIVATE,3,Etobicoke-Lakeshore,2307 LAKE SHORE BLVD W,4,38,2019-02-15,89,Evaluation needs to be conducted in 3 years,15,4.0,5.0,5.0,5.0,4.0,5.0,,4.0,,,5.0,5.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0336,43.6178366581,-79.4863780789,305849.80600000004,4830654.806
-892571,4152579,2017.0,2018.0,1971.0,PRIVATE,20,Scarborough Southwest,23 GLEN EVEREST RD,3,11,2019-02-15,66,Evaluation needs to be conducted in 2 years,16,4.0,3.0,2.0,3.0,3.0,3.0,,3.0,,3.0,3.0,4.0,5.0,4.0,4.0,3.0,,3.0,3.0,,E2035,43.700017847,-79.2530664991,324687.562,4839814.06
-892572,4167788,2017.0,2018.0,1971.0,PRIVATE,20,Scarborough Southwest,25 GLEN EVEREST RD,3,11,2019-02-15,69,Evaluation needs to be conducted in 2 years,16,3.0,4.0,2.0,3.0,3.0,4.0,,3.0,,3.0,4.0,4.0,5.0,4.0,4.0,3.0,,3.0,3.0,,E2035,43.7001107344,-79.2530513006,324688.756,4839824.383
-892573,4152580,2017.0,2018.0,1971.0,PRIVATE,20,Scarborough Southwest,27 GLEN EVEREST RD,3,11,2019-02-15,73,Evaluation needs to be conducted in 2 years,16,4.0,3.0,2.0,3.0,3.0,4.0,,4.0,,3.0,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,4.0,,E2035,43.7005566696,-79.2528798583,324702.42600000004,4839873.966
-892574,4167688,2017.0,2018.0,1971.0,PRIVATE,20,Scarborough Southwest,29 GLEN EVEREST RD,3,11,2019-02-15,75,Evaluation needs to be conducted in 2 years,16,4.0,4.0,2.0,4.0,3.0,4.0,,4.0,,3.0,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,E2035,43.7006703636,-79.2528221569,324707.039,4839886.6110000005
-892575,4152581,2017.0,2018.0,1971.0,PRIVATE,20,Scarborough Southwest,31-33 GLEN EVEREST RD,3,22,2019-02-15,74,Evaluation needs to be conducted in 2 years,16,4.0,4.0,2.0,4.0,3.0,3.0,,4.0,,3.0,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,4.0,,E2035,43.700613718,-79.2522439531,324702.93,4839900.186000001
-892576,4458811,,2018.0,1951.0,PRIVATE,19,Beaches-East York,1143 O'CONNOR DR,3,12,2019-02-15,75,Evaluation needs to be conducted in 2 years,15,4.0,4.0,3.0,4.0,4.0,4.0,,3.0,,,4.0,4.0,5.0,3.0,4.0,3.0,,3.0,4.0,,S1924,43.711582308400004,-79.307772958,320275.257,4841087.222
-892577,4155878,2017.0,2018.0,1960.0,PRIVATE,8,Eglinton-Lawrence,60 WASDALE CRES,3,11,2019-02-15,93,Evaluation needs to be conducted in 3 years,16,5.0,5.0,5.0,4.0,5.0,4.0,,4.0,,5.0,5.0,5.0,5.0,5.0,,3.0,5.0,5.0,4.0,,N0823,43.7306713451,-79.4374893371,309820.414,4843191.908
-892578,4154512,2017.0,2018.0,1956.0,PRIVATE,8,Eglinton-Lawrence,64 WASDALE CRES,3,15,2019-02-15,63,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,4.0,3.0,3.0,,3.0,,,3.0,3.0,4.0,3.0,,3.0,3.0,3.0,,,N0823,43.730707835100006,-79.4377714103,309797.687,4843195.944
-892579,4152907,2017.0,2018.0,1967.0,PRIVATE,4,Parkdale-High Park,1 RUNNYMEDE RD,4,28,2019-02-15,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,3.0,3.0,2.0,5.0,4.0,3.0,3.0,,3.0,3.0,,S0430,43.646159833,-79.473952107,306885.53,4833802.545
-892580,4152966,2017.0,2018.0,1956.0,PRIVATE,4,Parkdale-High Park,124 TYNDALL AVE,4,28,2019-02-15,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,4.0,3.0,3.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,2.0,3.0,3.0,2.0,,S0437,43.637715924700004,-79.4293840613,310482.065,4832865.488
-892581,4153679,2017.0,2018.0,1954.0,PRIVATE,19,Beaches-East York,140 KINGSTON RD,4,60,2019-02-14,76,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,4.0,4.0,4.0,,3.0,,,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S1937,43.6709421277,-79.3114896572,319985.941,4836571.526000001
-892582,4154541,2020.0,2018.0,1956.0,PRIVATE,8,Eglinton-Lawrence,65 WASDALE CRES,3,11,2019-02-14,65,Evaluation needs to be conducted in 1 year,13,4.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,,,3.0,3.0,,,N0823,43.7301212379,-79.4376331135,309808.878,4843130.784
-892583,4154608,2017.0,2018.0,1989.0,SOCIAL HOUSING,6,York Centre,4300 BATHURST ST,11,164,2019-02-14,83,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,5.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,N0629,43.752890988400004,-79.4382283415,309759.09,4845660.325
-892584,4154610,2017.0,2018.0,1960.0,PRIVATE,6,York Centre,4340 BATHURST ST,6,50,2019-02-14,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,4.0,4.0,4.0,,4.0,4.0,3.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,5.0,3.0,,N0629,43.753680142,-79.438438017,309741.877,4845748.941000001
-892585,4155309,2017.0,2018.0,1959.0,PRIVATE,3,Etobicoke-Lakeshore,22 BURNHAMTHORPE RD,5,42,2019-02-14,67,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,4.0,4.0,,3.0,4.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,4.0,2.0,4.0,,W0321,43.6482360213,-79.53035175859999,302335.75800000003,4834032.463
-892586,4154696,2017.0,2018.0,1965.0,PRIVATE,6,York Centre,535 SHEPPARD AVE W,12,83,2019-02-14,77,Evaluation needs to be conducted in 2 years,20,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,N0630,43.755962232600005,-79.4343429276,310071.7,4846001.7530000005
-892587,4154695,2017.0,2018.0,1966.0,PRIVATE,6,York Centre,555 SHEPPARD AVE W,12,112,2019-02-14,77,Evaluation needs to be conducted in 2 years,20,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,N0630,43.755642859,-79.4356157794,309969.23699999996,4845966.2
-892588,4152915,2017.0,2018.0,1923.0,PRIVATE,4,Parkdale-High Park,2520 BLOOR ST W,4,22,2019-02-14,59,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,2.0,3.0,,S0430,43.6480530938,-79.4893694695,305641.932,4834011.683
-892589,4155865,2018.0,2018.0,1952.0,PRIVATE,20,Scarborough Southwest,50 GLEN EVEREST RD,3,16,2019-02-14,65,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,,,3.0,4.0,4.0,4.0,3.0,3.0,,4.0,4.0,,E2035,43.701846021,-79.253208949,324675.207,4840018.077
-892590,4154889,2017.0,2018.0,1958.0,PRIVATE,16,Don Valley East,56 ECCLESTON DR,4,60,2019-02-14,82,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N1628,43.72702975399999,-79.32003773699999,319282.903,4842802.106000001
-892591,4326893,,2018.0,1951.0,PRIVATE,19,Beaches-East York,1135 O'CONNOR DR,3,13,2019-02-14,75,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,4.0,4.0,4.0,,3.0,,,4.0,4.0,5.0,3.0,4.0,3.0,,3.0,4.0,,S1924,43.711282299,-79.3080213624,320255.316,4841053.848
-892592,4155078,2017.0,2018.0,1950.0,PRIVATE,8,Eglinton-Lawrence,2040 EGLINTON AVE W,4,37,2019-02-14,75,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,3.0,4.0,3.0,,3.0,,,4.0,3.0,5.0,4.0,3.0,3.0,,4.0,4.0,,N0830,43.6945163928,-79.4569284637,308256.403,4839174.261
-892593,4155088,2017.0,2018.0,1993.0,SOCIAL HOUSING,5,York South-Weston,2480 EGLINTON AVE W,8,97,2019-02-14,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,5.0,,3.0,4.0,5.0,4.0,4.0,3.0,,3.0,4.0,4.0,W0533,43.6916984742,-79.4694113226,307250.278,4838860.746
-892594,4156313,2017.0,2018.0,1965.0,TCHC,20,Scarborough Southwest,3181 EGLINTON AVE E,7,103,2019-02-14,56,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,3.0,4.0,3.0,2.0,3.0,,2.0,3.0,3.0,2.0,3.0,4.0,2.0,2.0,3.0,,E2027,43.7426293696,-79.2196525266,327364.75800000003,4844556.449
-892595,4156439,2017.0,2018.0,1993.0,SOCIAL HOUSING,5,York South-Weston,33 GABIAN WAY,18,248,2019-02-14,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,3.0,4.0,W0533,43.6931197205,-79.46886392319999,307294.354,4839018.662
-892596,4155862,2018.0,2018.0,1952.0,PRIVATE,20,Scarborough Southwest,46 GLEN EVEREST RD,3,16,2019-02-14,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,2.0,2.0,3.0,,3.0,,,2.0,4.0,4.0,3.0,3.0,3.0,,4.0,4.0,,E2035,43.70167262,-79.253298302,324668.064,4839998.791999999
-892597,4154891,2017.0,2018.0,1958.0,PRIVATE,16,Don Valley East,2 SWIFT DR,4,61,2019-02-14,82,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,N1628,43.726549517399995,-79.31918836210001,319351.711,4842747.946
-892598,4457107,2019.0,2018.0,1953.0,PRIVATE,19,Beaches-East York,1153 O'CONNOR DR,3,11,2019-02-14,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,,4.0,4.0,5.0,3.0,4.0,3.0,,4.0,3.0,,S1924,43.7117264202,-79.3076717608,320283.375,4841103.25
-892599,4457100,2019.0,2018.0,1953.0,PRIVATE,19,Beaches-East York,1157 O'CONNOR DR,3,11,2019-02-14,79,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,3.0,,S1924,43.7118457801,-79.3075659646,320291.87,4841116.529
-892600,4154543,2017.0,2018.0,1950.0,PRIVATE,8,Eglinton-Lawrence,47 WASDALE CRES,3,28,2019-02-14,73,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,3.0,3.0,3.0,,4.0,,,3.0,4.0,5.0,4.0,3.0,3.0,5.0,4.0,3.0,,N0823,43.73026578859999,-79.4369391147,309864.775,4843146.886
-892601,4155756,,2018.0,1927.0,PRIVATE,12,Toronto-St. Paul's,6 PINEWOOD AVE,3,11,2019-02-14,56,Evaluation needs to be conducted in 1 year,14,2.0,3.0,1.0,3.0,,3.0,,3.0,,,2.0,3.0,5.0,3.0,3.0,3.0,3.0,2.0,,,S1229,43.682454983,-79.425041007,310827.715,4837837.046
-892602,4152969,2017.0,2018.0,1960.0,PRIVATE,4,Parkdale-High Park,110 TYNDALL AVE,3,26,2019-02-13,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S0437,43.6369083236,-79.42913717489999,310502.058,4832775.785
-892603,4155061,2017.0,2018.0,1960.0,PRIVATE,8,Eglinton-Lawrence,851 BRIAR HILL AVE,3,10,2019-02-13,85,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,5.0,4.0,4.0,,4.0,,4.0,5.0,4.0,5.0,3.0,4.0,4.0,5.0,4.0,,,N0831,43.7044391867,-79.4423269927,309432.683,4840277.301
-892604,4153596,2017.0,2018.0,1963.0,PRIVATE,13,Toronto Centre,222 WELLESLEY ST E,7,69,2019-02-13,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1323,43.6678764377,-79.37278552689999,315043.596,4836221.596
-892605,4240827,2017.0,2018.0,1968.0,PRIVATE,13,Toronto Centre,260 WELLESLEY ST E,32,565,2019-02-13,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,,S1323,43.669078059700006,-79.3717210615,315129.23,4836355.231000001
-892606,4154613,2017.0,2018.0,1960.0,PRIVATE,6,York Centre,10 WILMINGTON AVE,3,39,2019-02-13,74,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,4.0,4.0,,3.0,,,4.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,4.0,,N0624,43.753111203,-79.453124981,308559.203,4845684.975
-892607,4154612,2017.0,2018.0,1965.0,PRIVATE,6,York Centre,20 WILMINGTON AVE,4,13,2019-02-13,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,,N0624,43.753481576000006,-79.45330395399999,308544.767,4845726.114
-892608,4155425,2017.0,2018.0,1967.0,PRIVATE,1,Etobicoke North,5 JANSUSIE RD,3,45,2019-02-13,74,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,3.0,3.0,,4.0,,,3.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,4.0,,W0129,43.72849773,-79.57541136100001,298591.273,4843220.455
-892609,4155426,2017.0,2018.0,1967.0,PRIVATE,1,Etobicoke North,15 JANSUSIE RD,3,45,2019-02-13,74,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,3.0,3.0,,4.0,,,3.0,4.0,5.0,3.0,3.0,4.0,4.0,3.0,4.0,,W0129,43.729325196000005,-79.57582247,298619.876,4843140.267
-892610,4154480,2017.0,2018.0,1961.0,PRIVATE,8,Eglinton-Lawrence,2700 BATHURST ST,10,149,2019-02-13,84,Evaluation needs to be conducted in 2 years,20,4.0,5.0,5.0,3.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,N0827,43.7090551064,-79.4281966082,310571.11100000003,4840791.066000001
-892611,4155544,2017.0,2018.0,1950.0,PRIVATE,3,Etobicoke-Lakeshore,13 BIRCHLEA AVE,3,14,2019-02-13,68,Evaluation needs to be conducted in 2 years,12,4.0,4.0,3.0,3.0,3.0,3.0,,3.0,,,4.0,3.0,5.0,3.0,,,,3.0,,,W0334,43.59254528100001,-79.528407015,302488.51,4827835.76
-892612,4155543,2017.0,2018.0,1950.0,PRIVATE,3,Etobicoke-Lakeshore,15 BIRCHLEA AVE,3,14,2019-02-13,68,Evaluation needs to be conducted in 2 years,12,4.0,4.0,3.0,3.0,3.0,3.0,,3.0,,,4.0,3.0,5.0,3.0,,,,3.0,,,W0334,43.592527408,-79.528501876,302478.048,4827838.18
-892613,4155059,2017.0,2018.0,1960.0,PRIVATE,8,Eglinton-Lawrence,2495 DUFFERIN ST,3,15,2019-02-13,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,5.0,3.0,2.0,3.0,,3.0,,2.0,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N0831,43.701718897,-79.451636758,308682.24,4839975.612
-892614,4154778,2017.0,2018.0,1966.0,PRIVATE,16,Don Valley East,1059 DON MILLS RD,6,70,2019-02-13,83,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,3.0,,N1627,43.7346398069,-79.3419288019,317517.899,4843642.953
-892615,4244923,2017.0,2018.0,1963.0,PRIVATE,1,Etobicoke North,60 ESTHER LORRIE DR,7,97,2019-02-13,84,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,5.0,4.0,3.0,,4.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,W0129,,,298460.499,4843307.933
-892616,4155044,2017.0,2018.0,1960.0,PRIVATE,8,Eglinton-Lawrence,110 MARLEE AVE,7,110,2019-02-13,82,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,5.0,,4.0,4.0,,4.0,5.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,,N0831,43.701234201999995,-79.441021952,309537.855,4839922.321
-892617,4154486,2019.0,2018.0,1966.0,PRIVATE,8,Eglinton-Lawrence,457 MARLEE AVE,4,31,2019-02-13,74,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,3.0,4.0,3.0,,3.0,5.0,,3.0,2.0,5.0,4.0,3.0,4.0,,4.0,3.0,,N0827,43.707934941400005,-79.4429642694,309381.057,4840665.642
-892618,4156468,2017.0,2018.0,1972.0,TCHC,20,Scarborough Southwest,10 GORDONRIDGE PL,16,217,2019-02-13,75,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,3.0,4.0,E2024,43.7269627406,-79.25229348149999,324713.92100000003,4842838.544
-892619,4152595,2017.0,2018.0,1964.0,TCHC,20,Scarborough Southwest,40 FIRVALLEY CRT,15,168,2019-02-13,78,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,4.0,5.0,5.0,4.0,3.0,4.0,,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,E2028,43.703580346,-79.279521109,322554.003,4840204.75
-892620,4155561,2017.0,2018.0,1962.0,TCHC,20,Scarborough Southwest,1 FIRVALLEY CRT,12,115,2019-02-13,74,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,4.0,4.0,5.0,3.0,3.0,4.0,,4.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,4.0,,E2028,43.7029523574,-79.28102862850001,322432.94800000003,4840133.711
-892621,4152582,2017.0,2018.0,1960.0,PRIVATE,20,Scarborough Southwest,4 FOLCROFT AVE,3,13,2019-02-13,70,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,2.0,4.0,,3.0,,3.0,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,,E2035,43.701030915,-79.25119809,324814.217,4839929.968
-892622,4285401,2018.0,2018.0,1952.0,PRIVATE,20,Scarborough Southwest,6 FOLCROFT AVE,3,13,2019-02-13,74,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,4.0,2.0,4.0,,3.0,,3.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,E2035,43.700957687,-79.251492552,324829.314,4839934.355
-892623,4152576,2017.0,2018.0,1970.0,TCHC,20,Scarborough Southwest,10 GLEN EVEREST RD,17,350,2019-02-13,63,Evaluation needs to be conducted in 1 year,18,4.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,3.0,4.0,E2035,43.69932241,-79.25477866899999,324549.538,4839737.34
-892624,4152596,2017.0,2018.0,1964.0,TCHC,20,Scarborough Southwest,682 WARDEN AVE,15,223,2019-02-13,69,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,3.0,4.0,4.0,2.0,4.0,3.0,,3.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,E2028,43.705953312,-79.279044598,322591.70399999997,4840468.483
-892625,4154545,2017.0,2018.0,1960.0,PRIVATE,8,Eglinton-Lawrence,41 WASDALE CRES,3,11,2019-02-13,69,Evaluation needs to be conducted in 2 years,13,4.0,4.0,4.0,3.0,4.0,3.0,,3.0,,,4.0,4.0,3.0,2.0,,,4.0,3.0,,,N0823,43.7305618491,-79.4356927596,309965.157,4843179.855
-892626,4152968,2017.0,2018.0,1960.0,PRIVATE,4,Parkdale-High Park,112 TYNDALL AVE,3,27,2019-02-13,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,,4.0,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S0437,43.637071615299995,-79.4291933844,310497.50800000003,4832793.922
-892627,4156048,2017.0,2018.0,1960.0,PRIVATE,20,Scarborough Southwest,24 PELL ST,3,11,2019-02-12,74,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,2.0,2.0,4.0,,4.0,,3.0,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,E2035,43.708100911,-79.248499263,325056.88300000003,4840728.7469999995
-892628,4152585,2017.0,2018.0,1960.0,PRIVATE,20,Scarborough Southwest,20 PELL ST,3,11,2019-02-12,74,Evaluation needs to be conducted in 2 years,14,3.0,4.0,4.0,3.0,,3.0,,4.0,,,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,,E2035,43.70777445,-79.248713747,325033.789,4840699.303
-892629,4153587,2017.0,2018.0,1910.0,PRIVATE,13,Toronto Centre,383 SHERBOURNE ST,3,32,2019-02-12,67,Evaluation needs to be conducted in 2 years,14,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,4.0,3.0,4.0,4.0,,3.0,,,S1323,43.663968352,-79.3730104483,315026.123,4835787.409
-892630,4153588,2017.0,2018.0,1920.0,PRIVATE,13,Toronto Centre,391 SHERBOURNE ST,4,48,2019-02-12,80,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,,,S1323,43.664351600699995,-79.3730396358,315023.70399999997,4835829.981000001
-892631,4153671,2017.0,2018.0,1970.0,PRIVATE,19,Beaches-East York,2 KINGSTON RD,4,16,2019-02-12,75,Evaluation needs to be conducted in 2 years,15,4.0,4.0,3.0,4.0,4.0,4.0,,4.0,,,3.0,3.0,5.0,3.0,4.0,4.0,,3.0,4.0,,S1937,43.667724652,-79.31265581,319889.941,4836214.615
-892632,4156597,2017.0,2018.0,1970.0,PRIVATE,19,Beaches-East York,4 KINGSTON RD,4,16,2019-02-12,75,Evaluation needs to be conducted in 2 years,15,4.0,4.0,3.0,4.0,4.0,4.0,,4.0,,,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,2.0,,S1937,43.667904365,-79.312792617,319883.143,4836233.964
-892633,4264076,2017.0,2018.0,1970.0,PRIVATE,19,Beaches-East York,8 KINGSTON RD,3,16,2019-02-12,75,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,4.0,4.0,4.0,,3.0,,,3.0,3.0,5.0,5.0,4.0,4.0,,4.0,4.0,,S1937,43.668121582,-79.312392609,319915.464,4836258.731000001
-892634,4156594,2017.0,2018.0,1970.0,PRIVATE,19,Beaches-East York,10 KINGSTON RD,3,16,2019-02-12,72,Evaluation needs to be conducted in 2 years,15,4.0,3.0,3.0,4.0,4.0,4.0,,3.0,,,3.0,3.0,5.0,3.0,4.0,3.0,,4.0,4.0,,S1937,43.668304546,-79.312459034,319909.49100000004,4836279.985
-892635,4156593,2017.0,2018.0,1970.0,PRIVATE,19,Beaches-East York,12 KINGSTON RD,3,16,2019-02-12,76,Evaluation needs to be conducted in 2 years,15,4.0,3.0,3.0,4.0,4.0,4.0,,4.0,,,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S1937,43.668417027,-79.312246964,319927.584,4836291.402
-892636,4152951,2017.0,2018.0,1957.0,PRIVATE,4,Parkdale-High Park,99 TYNDALL AVE,9,70,2019-02-12,64,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,,S0437,43.6366349836,-79.4276516523,310621.94399999996,4832745.515
-892637,4152971,2018.0,2018.0,1965.0,PRIVATE,4,Parkdale-High Park,100 TYNDALL AVE,6,48,2019-02-12,64,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,S0437,43.6364200969,-79.4289537195,310516.904,4832721.558
-892638,4154636,,2018.0,1958.0,PRIVATE,6,York Centre,15 WILMINGTON AVE,3,21,2019-02-12,73,Evaluation needs to be conducted in 2 years,16,4.0,3.0,3.0,4.0,3.0,4.0,,3.0,,,4.0,3.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,N0624,43.753413503999994,-79.452055484,308645.309,4845718.607
-892639,4154306,2017.0,2018.0,1953.0,PRIVATE,5,York South-Weston,2421 KEELE ST,3,12,2019-02-12,84,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,5.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0523,43.710527185100005,-79.478108176,306548.697,4840952.348
-892640,4154307,2017.0,2018.0,1954.0,PRIVATE,5,York South-Weston,2423 KEELE ST,3,12,2019-02-12,84,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,5.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0523,43.710785688,-79.4782587773,306536.553,4840981.063
-892641,4154775,2017.0,2018.0,1950.0,PRIVATE,16,Don Valley East,1053 DON MILLS RD,4,40,2019-02-12,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,3.0,4.0,4.0,3.0,5.0,3.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,4.0,,N1627,43.7335260721,-79.3417293188,317534.2,4843519.24
-892642,4153589,2017.0,2018.0,1934.0,PRIVATE,13,Toronto Centre,433 SHERBOURNE ST,4,48,2019-02-12,80,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,S1323,43.665410503900006,-79.3734599636,314989.627,4835947.562
-892643,4153590,2017.0,2018.0,1934.0,PRIVATE,13,Toronto Centre,435 SHERBOURNE ST,4,48,2019-02-12,80,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,S1323,43.665547356400005,-79.3735085585,314985.686,4835962.758
-892644,4154504,2017.0,2018.0,1990.0,PRIVATE,8,Eglinton-Lawrence,49 NEPTUNE DR,3,10,2019-02-12,68,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,4.0,3.0,3.0,,3.0,,,4.0,5.0,5.0,2.0,3.0,3.0,3.0,2.0,,,N0823,43.731455829,-79.435410014,309987.593,4843280.143999999
-892645,4154505,2017.0,2018.0,1957.0,PRIVATE,8,Eglinton-Lawrence,8 WASDALE CRES,3,10,2019-02-12,71,Evaluation needs to be conducted in 2 years,13,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,4.0,5.0,5.0,,,3.0,4.0,,,N0823,43.731246847399994,-79.4350947761,310013.27,4843255.994
-892646,4154635,2017.0,2018.0,1959.0,PRIVATE,6,York Centre,1 WILMINGTON AVE,3,11,2019-02-12,69,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,3.0,,4.0,,3.0,,,3.0,3.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,,N0624,43.75301421,-79.451942218,308654.456,4845674.252
-892647,4154790,2017.0,2018.0,1950.0,PRIVATE,16,Don Valley East,2 THE DONWAY E,4,40,2019-02-12,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,5.0,3.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,4.0,,N1627,43.73286948689999,-79.3418228518,317526.80100000004,4843446.279
-892648,4154789,2017.0,2018.0,1950.0,PRIVATE,16,Don Valley East,4 THE DONWAY E,4,40,2019-02-12,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,3.0,4.0,4.0,3.0,5.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,,N1627,43.7330607404,-79.340845323,317590.11699999997,4843465.219
-892649,4154788,2017.0,2018.0,1950.0,PRIVATE,16,Don Valley East,6 THE DONWAY E,4,40,2019-02-12,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,5.0,3.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,4.0,,N1627,43.733595666099994,-79.3405231156,317631.353,4843527.159
-892650,4156249,2017.0,2018.0,1960.0,PRIVATE,20,Scarborough Southwest,22 PELL ST,3,10,2019-02-12,74,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,2.0,3.0,4.0,,4.0,,3.0,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,,E2035,43.707978053999994,-79.248780872,325050.664,4840714.735
-892651,4152959,2017.0,2018.0,1939.0,PRIVATE,4,Parkdale-High Park,57 SPENCER AVE,3,19,2019-02-11,76,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,4.0,4.0,3.0,,3.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,S0437,43.636137103,-79.429522246,310470.794,4832691.036
-892652,4152960,2017.0,2018.0,1939.0,PRIVATE,4,Parkdale-High Park,59 SPENCER AVE,3,19,2019-02-11,68,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,4.0,3.0,,3.0,,4.0,3.0,3.0,5.0,3.0,3.0,4.0,,3.0,3.0,,S0437,43.636297355,-79.429583628,310465.827,4832708.835
-892653,4154560,2017.0,2018.0,1954.0,PRIVATE,8,Eglinton-Lawrence,3 DREXEL RD,3,26,2019-02-11,89,Evaluation needs to be conducted in 3 years,16,4.0,5.0,4.0,5.0,4.0,5.0,,5.0,,5.0,5.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,N0823,43.721948278999996,-79.43334645600001,310154.683,4842224.03
-892654,4152627,2017.0,2018.0,1960.0,PRIVATE,21,Scarborough Centre,12 CRAIGTON DR,4,32,2019-02-11,68,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,,3.0,4.0,3.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,,E2131,43.7275639338,-79.3019458646,320740.584,4842863.786
-892655,4154563,2017.0,2018.0,1953.0,PRIVATE,8,Eglinton-Lawrence,6 SARANAC BLVD,4,26,2019-02-11,78,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,4.0,4.0,5.0,,4.0,,4.0,4.0,3.0,5.0,4.0,3.0,3.0,,4.0,4.0,,N0823,43.7209195951,-79.432960657,310186.122,4842108.819
-892656,4154614,2017.0,2018.0,1950.0,PRIVATE,6,York Centre,1042 SHEPPARD AVE W,4,16,2019-02-11,73,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,3.0,3.0,4.0,,3.0,,,3.0,4.0,5.0,4.0,3.0,4.0,4.0,3.0,4.0,,N0624,43.7508224875,-79.46202091970001,307843.201,4845429.41
-892657,4154615,2017.0,2018.0,1950.0,PRIVATE,6,York Centre,229 PANNAHILL RD,3,12,2019-02-11,80,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0624,43.7603575234,-79.4631757419,307749.723,4846488.654
-892658,4154320,2017.0,2018.0,1958.0,PRIVATE,5,York South-Weston,512 RUSTIC RD,3,23,2019-02-11,74,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,4.0,3.0,4.0,,4.0,,4.0,3.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,,W0523,43.7187817159,-79.47921400119999,306459.358,4841869.352
-892659,4152709,2017.0,2018.0,1967.0,PRIVATE,21,Scarborough Centre,833 KENNEDY RD,7,54,2019-02-11,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,3.0,5.0,4.0,3.0,,E2133,43.736318401400005,-79.2689338549,323397.432,4843843.179
-892660,4154311,2017.0,2018.0,1958.0,PRIVATE,5,York South-Weston,2595 KEELE ST,3,23,2019-02-11,65,Evaluation needs to be conducted in 1 year,17,3.0,3.0,5.0,3.0,2.0,4.0,,3.0,,4.0,3.0,3.0,5.0,2.0,3.0,3.0,3.0,3.0,3.0,,W0523,43.71842644229999,-79.4794939296,306436.812,4841829.8780000005
-892661,4155204,2017.0,2018.0,1960.0,PRIVATE,4,Parkdale-High Park,4033 OLD DUNDAS ST,5,47,2019-02-11,61,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S0421,43.6637082321,-79.5023379758,304595.728,4835750.825
-892662,4152778,2018.0,2018.0,1960.0,PRIVATE,20,Scarborough Southwest,3171 KINGSTON RD,4,18,2019-02-11,65,Evaluation needs to be conducted in 1 year,17,4.0,4.0,4.0,3.0,3.0,3.0,,3.0,3.0,,3.0,2.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,,E2037,43.7283659321,-79.228113442,326688.443,4842969.629
-892663,4155347,2017.0,2018.0,1971.0,PRIVATE,2,Etobicoke Centre,105 LA ROSE AVE,12,180,2019-02-11,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,,4.0,4.0,5.0,4.0,2.0,4.0,4.0,4.0,3.0,,W0230,43.685240595500005,-79.5206409439,303120.311,4838143.242
-892664,4155345,2017.0,2018.0,1979.0,PRIVATE,2,Etobicoke Centre,165 LA ROSE AVE,12,211,2019-02-11,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,5.0,4.0,5.0,4.0,3.0,3.0,,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,W0230,43.6839794618,-79.5249462549,302773.164,4838003.239
-892665,4152797,2017.0,2018.0,1968.0,PRIVATE,24,Scarborough-Guildwood,215 MARKHAM RD,17,193,2019-02-11,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,3.0,,E2433,43.744688035,-79.218768113,327434.96,4844786.353
-892666,4288860,2017.0,2018.0,1958.0,PRIVATE,19,Beaches-East York,1981 DUNDAS ST E,3,12,2019-02-11,73,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,3.0,4.0,,3.0,,3.0,3.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,,S1937,43.668927771999996,-79.315350573,319674.841,4836347.995
-892667,4153681,2017.0,2018.0,1960.0,PRIVATE,19,Beaches-East York,15 EASTWOOD RD,4,24,2019-02-11,68,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,4.0,3.0,4.0,,3.0,,,3.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,2.0,,S1937,43.6728164425,-79.3184832171,319421.536,4836778.516
-892668,4154557,2017.0,2018.0,1960.0,PRIVATE,8,Eglinton-Lawrence,42 SARANAC BLVD,3,28,2019-02-08,83,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,4.0,4.0,4.0,,5.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,N0823,43.7232330003,-79.4317060695,310287.00399999996,4842365.9180000005
-892669,4153710,2017.0,2018.0,1910.0,PRIVATE,19,Beaches-East York,2 MAIN ST,3,11,2019-02-08,52,Evaluation needs to be conducted in 1 year,15,2.0,3.0,4.0,2.0,2.0,3.0,,3.0,,,2.0,2.0,5.0,2.0,3.0,2.0,,2.0,2.0,,S1935,43.679038326000004,-79.298376637,321040.936,4837474.429
-892670,4154555,2017.0,2018.0,1960.0,PRIVATE,8,Eglinton-Lawrence,46 SARANAC BLVD,3,36,2019-02-08,81,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,3.0,4.0,4.0,,5.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,N0823,43.723413773000004,-79.431088371,310336.756,4842386.0430000005
-892671,4153584,2017.0,2018.0,1960.0,PRIVATE,13,Toronto Centre,321 SHERBOURNE ST,7,67,2019-02-08,78,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,,S1323,43.661894315699996,-79.3721159385,315098.62,4835557.103
-892672,4154496,2017.0,2018.0,1968.0,PRIVATE,8,Eglinton-Lawrence,3000 DUFFERIN ST,18,287,2019-02-08,84,Evaluation needs to be conducted in 2 years,20,4.0,3.0,5.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,N0826,43.711095482,-79.4550342405,308408.11600000004,4841016.188999999
-892673,4154795,2017.0,2018.0,1950.0,PRIVATE,16,Don Valley East,1129 DON MILLS RD,6,46,2019-02-08,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,3.0,3.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,,N1624,43.737751539399994,-79.34301416939999,317429.821,4843988.499
-892674,4154796,2017.0,2018.0,1960.0,PRIVATE,16,Don Valley East,1133 DON MILLS RD,6,49,2019-02-08,76,Evaluation needs to be conducted in 2 years,18,5.0,3.0,5.0,4.0,4.0,4.0,,4.0,3.0,3.0,4.0,3.0,5.0,3.0,4.0,3.0,4.0,4.0,3.0,,N1624,43.7382619865,-79.34313342760001,317420.107,4844045.19
-892675,4152955,2017.0,2018.0,1959.0,PRIVATE,4,Parkdale-High Park,29 SPENCER AVE,6,54,2019-02-08,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,3.0,3.0,,3.0,4.0,3.0,3.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,S0437,43.634901103000004,-79.429121805,310503.215,4832553.752
-892676,4152956,2018.0,2018.0,1965.0,PRIVATE,4,Parkdale-High Park,31 SPENCER AVE,6,54,2019-02-08,59,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,2.0,3.0,,3.0,2.0,,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,,S0437,43.635080626000004,-79.429194517,310497.332,4832573.691000001
-892677,4152961,2017.0,2018.0,1960.0,PRIVATE,4,Parkdale-High Park,75 SPENCER AVE,9,71,2019-02-08,74,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,4.0,4.0,4.0,,5.0,3.0,,5.0,4.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,,S0437,43.636789031999996,-79.429849981,310444.292,4832763.44
-892678,4155739,2017.0,2018.0,1965.0,PRIVATE,4,Parkdale-High Park,30 SPRINGHURST AVE,12,122,2019-02-08,75,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,5.0,3.0,4.0,4.0,4.0,5.0,3.0,3.0,,S0437,43.634517341999995,-79.42888249800001,310522.559,4832511.135
-892679,4153639,2019.0,2018.0,1915.0,PRIVATE,14,Toronto-Danforth,279 WOODFIELD RD,4,42,2019-02-08,49,Building Audit,15,2.0,2.0,2.0,2.0,,2.0,,3.0,,2.0,2.0,2.0,3.0,3.0,3.0,3.0,,3.0,3.0,,S1439,43.6716640558,-79.323704314,319000.793,4836649.59
-892680,4154554,2017.0,2018.0,1960.0,PRIVATE,8,Eglinton-Lawrence,3240 BATHURST ST,3,28,2019-02-08,79,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,3.0,3.0,3.0,,5.0,,3.0,4.0,5.0,5.0,4.0,4.0,4.0,,4.0,4.0,,N0823,43.7238042937,-79.4313359616,310316.773,4842429.412
-892681,4154514,2017.0,2018.0,1960.0,PRIVATE,8,Eglinton-Lawrence,50 NEPTUNE DR,3,12,2019-02-08,65,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,4.0,3.0,3.0,3.0,3.0,3.0,,N0823,43.731762015,-79.434811008,310035.821,4843314.199
-892682,4154515,2017.0,2018.0,1960.0,PRIVATE,8,Eglinton-Lawrence,52 NEPTUNE DR,3,12,2019-02-08,68,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,4.0,3.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,N0823,43.732014889,-79.434846428,310032.945,4843342.289
-892683,4152943,2017.0,2018.0,1940.0,PRIVATE,4,Parkdale-High Park,340 HIGH PARK AVE,3,10,2019-02-08,55,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,2.0,3.0,,3.0,,,3.0,2.0,3.0,3.0,2.0,2.0,3.0,3.0,3.0,,S0424,43.665283034,-79.4705575166,307158.849,4835926.123
-892684,4154312,2017.0,2018.0,1955.0,PRIVATE,5,York South-Weston,2597 KEELE ST,4,39,2019-02-08,76,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,3.0,3.0,,4.0,,3.0,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,3.0,,W0523,43.718801135,-79.4798728535,306406.27,4841871.496
-892685,4154313,2017.0,2018.0,1950.0,PRIVATE,5,York South-Weston,2605 KEELE ST,3,12,2019-02-08,70,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,3.0,3.0,4.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,3.0,5.0,3.0,3.0,,W0523,43.7191723913,-79.4799616805,306399.103,4841912.738
-892686,4155341,2017.0,2018.0,1972.0,PRIVATE,2,Etobicoke Centre,39 RICHVIEW RD,20,234,2019-02-08,81,Evaluation needs to be conducted in 2 years,20,5.0,5.0,5.0,4.0,4.0,5.0,4.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,W0230,43.684216416999995,-79.51523486100001,303556.136,4838029.357
-892687,4154637,2017.0,2018.0,1960.0,PRIVATE,6,York Centre,118 OVERBROOK PL,3,17,2019-02-08,74,Evaluation needs to be conducted in 2 years,17,3.0,4.0,3.0,4.0,4.0,4.0,,3.0,,4.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0624,43.7635291966,-79.4550418011,308404.48,4846841.319
-892688,4154618,2017.0,2018.0,1970.0,PRIVATE,6,York Centre,715 FINCH AVE W,11,85,2019-02-08,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,,N0624,43.7692028899,-79.4622653177,307822.589,4847471.362
-892689,4288175,2018.0,2018.0,1960.0,PRIVATE,4,Parkdale-High Park,2861-2863 DUNDAS ST W,3,16,2019-02-08,60,Evaluation needs to be conducted in 1 year,14,3.0,3.0,2.0,2.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,S0424,,,307610.618,4835918.416999999
-892690,4155686,2017.0,2018.0,2003.0,SOCIAL HOUSING,8,Eglinton-Lawrence,651 LAWRENCE AVE W,3,24,2019-02-08,85,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,5.0,4.0,4.0,,5.0,4.0,,4.0,3.0,5.0,5.0,5.0,4.0,,4.0,2.0,5.0,N0827,43.716103619399995,-79.4429013897,309385.499,4841573.16
-892691,4155304,2017.0,2018.0,1979.0,TCHC,3,Etobicoke-Lakeshore,49 MABELLE AVE,13,128,2019-02-08,67,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,2.0,5.0,3.0,3.0,4.0,4.0,,3.0,4.0,4.0,3.0,3.0,4.0,4.0,2.0,2.0,3.0,W0321,43.6449745319,-79.52858579229999,302478.099,4833670.075
-892692,4274218,2017.0,2018.0,1962.0,TCHC,3,Etobicoke-Lakeshore,57 MABELLE AVE,19,255,2019-02-08,67,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,4.0,,3.0,4.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,W0321,43.64631051600001,-79.530501016,302329.86,4833829.218
-892693,4154556,2017.0,2018.0,1960.0,PRIVATE,8,Eglinton-Lawrence,44 SARANAC BLVD,3,36,2019-02-08,83,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,4.0,4.0,4.0,,5.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,N0823,43.72316328310001,-79.4313421885,310316.328,4842358.197
-892694,4155349,2017.0,2018.0,1969.0,PRIVATE,2,Etobicoke Centre,500 SCARLETT RD,14,129,2019-02-07,95,Evaluation needs to be conducted in 3 years,19,4.0,4.0,5.0,5.0,5.0,5.0,4.0,4.0,5.0,,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,W0230,43.6857584584,-79.5133729757,303706.277,4838200.637
-892695,4288857,2018.0,2018.0,1950.0,PRIVATE,19,Beaches-East York,991 O'CONNOR DR,3,12,2019-02-07,75,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,3.0,5.0,3.0,4.0,4.0,,3.0,3.0,,S1924,43.708777553100006,-79.310012242,320095.516,4840775.215
-892696,4154779,2017.0,2018.0,1960.0,PRIVATE,16,Don Valley East,1061 DON MILLS RD,4,40,2019-02-07,74,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,4.0,3.0,3.0,,4.0,4.0,4.0,4.0,4.0,5.0,3.0,4.0,3.0,3.0,3.0,4.0,,N1627,43.735097283,-79.342235727,317493.08,4843693.732
-892697,4155340,2017.0,2018.0,1966.0,PRIVATE,2,Etobicoke Centre,10 ALLANHURST DR,11,108,2019-02-07,71,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,,3.0,3.0,5.0,3.0,3.0,4.0,3.0,4.0,3.0,,W0230,43.6806469466,-79.5103162763,303952.614,4837632.73
-892698,4154708,2020.0,2018.0,,PRIVATE,18,Willowdale,2 ANCONA ST,4,32,2019-02-07,53,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,2.0,3.0,,4.0,2.0,,2.0,3.0,5.0,1.0,2.0,2.0,3.0,2.0,2.0,,N1822,43.774991309700006,-79.43941526399999,309661.717,4848115.5139999995
-892699,4457114,2019.0,2018.0,1953.0,PRIVATE,19,Beaches-East York,1161 O'CONNOR DR,3,11,2019-02-07,68,Evaluation needs to be conducted in 2 years,15,4.0,3.0,3.0,4.0,2.0,4.0,,3.0,,,3.0,3.0,5.0,3.0,4.0,3.0,,3.0,4.0,,S1924,43.7119832675,-79.30746431600001,320300.026,4841131.821
-892700,4155626,2017.0,2018.0,1957.0,TCHC,8,Eglinton-Lawrence,5 LEILA LANE,3,31,2019-02-07,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,2.0,,N0823,43.721282345,-79.44523975,309196.44899999996,4842149.3319999995
-892701,4154516,2017.0,2018.0,1955.0,PRIVATE,8,Eglinton-Lawrence,54 NEPTUNE DR,3,11,2019-02-07,76,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,4.0,3.0,4.0,,4.0,,,4.0,3.0,5.0,5.0,4.0,4.0,3.0,4.0,3.0,,N0823,43.73237107600001,-79.435213823,310003.317,4843381.834
-892702,4154503,2017.0,2018.0,1959.0,PRIVATE,8,Eglinton-Lawrence,61 NEPTUNE DR,3,34,2019-02-07,64,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,4.0,3.0,3.0,,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0823,43.7318688176,-79.4374660042,309822.193,4843324.941000001
-892703,4155658,2017.0,2018.0,1972.0,TCHC,1,Etobicoke North,44 WILLOWRIDGE RD,14,236,2019-02-07,57,Evaluation needs to be conducted in 1 year,19,3.0,4.0,3.0,2.0,2.0,3.0,3.0,3.0,3.0,,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,W0137,43.675646313,-79.569749625,299172.333,4837117.833000001
-892704,4154773,2017.0,2018.0,1961.0,PRIVATE,16,Don Valley East,32 THE HEIGHTS DR,4,55,2019-02-07,86,Evaluation needs to be conducted in 3 years,20,4.0,5.0,5.0,5.0,4.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,N1627,43.729295625,-79.34013905100001,317684.369,4842978.0819999995
-892705,4153569,2017.0,2018.0,1988.0,SOCIAL HOUSING,13,Toronto Centre,223 SHERBOURNE ST,6,60,2019-02-07,67,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,2.0,3.0,4.0,3.0,4.0,3.0,3.0,2.0,4.0,4.0,4.0,3.0,4.0,,4.0,,,S1329,43.6582200015,-79.3706451728,315217.87,4835149.078
-892706,4154642,2017.0,2018.0,1969.0,PRIVATE,6,York Centre,4 GOLDFINCH CRT,12,95,2019-02-07,66,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,3.0,3.0,4.0,4.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,,N0624,43.7701314471,-79.4494799439,308851.855,4847575.071
-892707,4154641,2017.0,2018.0,1969.0,PRIVATE,6,York Centre,12 GOLDFINCH CRT,12,143,2019-02-07,71,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,,N0624,43.7709438668,-79.45096002390001,308732.646,4847665.256
-892708,4153574,2017.0,2018.0,1991.0,SOCIAL HOUSING,13,Toronto Centre,330 DUNDAS ST E,4,29,2019-02-07,77,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,,,3.0,4.0,4.0,4.0,4.0,4.0,,4.0,,4.0,S1329,43.65874826859999,-79.3702105377,315252.836,4835207.824
-892709,4155748,2017.0,2018.0,1966.0,PRIVATE,2,Etobicoke Centre,30 FONTENAY CRT,14,96,2019-02-07,73,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,3.0,,4.0,4.0,4.0,3.0,4.0,2.0,4.0,3.0,4.0,4.0,4.0,4.0,,W0230,43.683261189,-79.512454519,303780.01,4837924.146000001
-892710,4154709,2017.0,2018.0,1961.0,PRIVATE,18,Willowdale,286 FINCH AVE W,4,47,2019-02-07,73,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,3.0,4.0,,3.0,3.0,4.0,3.0,4.0,5.0,3.0,3.0,4.0,4.0,4.0,3.0,,N1822,43.774699028,-79.440090341,309595.94399999996,4848123.374
-892711,4154530,2017.0,2018.0,1969.0,PRIVATE,8,Eglinton-Lawrence,82 NEPTUNE DR,3,11,2019-02-07,71,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,4.0,3.0,3.0,,4.0,,,4.0,2.0,5.0,4.0,3.0,4.0,4.0,3.0,3.0,,N0823,43.732725421800005,-79.4367279054,309881.57899999997,4843420.148
-892712,4155348,2017.0,2018.0,1973.0,PRIVATE,2,Etobicoke Centre,45 LA ROSE AVE,16,156,2019-02-07,86,Evaluation needs to be conducted in 3 years,20,4.0,4.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,W0230,43.6860920205,-79.5158718598,303504.825,4838237.733
-892713,4154727,2017.0,2018.0,1968.0,PRIVATE,18,Willowdale,5 TANGREEN CRT,18,214,2019-02-07,85,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,3.0,4.0,3.0,4.0,4.0,3.0,,N1822,43.796156565,-79.425260494,310798.795,4850468.83
-892714,4154726,2017.0,2018.0,1968.0,PRIVATE,18,Willowdale,15 TANGREEN CRT,18,214,2019-02-07,85,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,5.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,5.0,5.0,3.0,4.0,4.0,4.0,4.0,3.0,,N1822,43.79522866,-79.425192074,310804.393,4850365.749
-892715,4154787,2017.0,2018.0,1960.0,PRIVATE,16,Don Valley East,12 THE DONWAY E,4,40,2019-02-07,74,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,4.0,3.0,3.0,,4.0,4.0,4.0,4.0,4.0,5.0,3.0,4.0,3.0,3.0,3.0,4.0,,N1627,43.7353799948,-79.34093531270001,317597.772,4843725.34
-892716,4154786,2017.0,2018.0,1960.0,PRIVATE,16,Don Valley East,14 THE DONWAY E,4,40,2019-02-07,73,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,4.0,3.0,3.0,,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,4.0,,N1627,43.7357778684,-79.34103170739999,317589.923,4843769.528
-892717,4154785,2017.0,2018.0,1959.0,PRIVATE,16,Don Valley East,16 THE DONWAY E,4,61,2019-02-07,83,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,,N1627,43.7362179741,-79.3411712705,317578.588,4843818.401000001
-892718,4155657,2017.0,2018.0,1973.0,TCHC,2,Etobicoke Centre,7 CAPRI RD,20,275,2019-02-07,71,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,4.0,,3.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,4.0,4.0,W0232,43.652915828000005,-79.564476577,299618.342,4834530.235
-892719,4152768,2017.0,2018.0,1964.0,PRIVATE,21,Scarborough Centre,123 BELLAMY RD N,12,250,2019-02-06,75,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,4.0,5.0,4.0,3.0,4.0,3.0,3.0,5.0,4.0,3.0,3.0,5.0,3.0,2.0,,E2136,43.741439900100005,-79.23165380399999,326398.571,4844421.149
-892720,4155664,2019.0,2018.0,1972.0,PRIVATE,13,Toronto Centre,230 OAK ST,23,327,2019-02-06,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,2.0,,S1330,43.663569575,-79.357948805,316215.622,4835683.0430000005
-892721,4152839,2017.0,2018.0,1974.0,TCHC,24,Scarborough-Guildwood,4175 LAWRENCE AVE E,13,375,2019-02-06,61,Evaluation needs to be conducted in 1 year,19,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,2.0,3.0,3.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,E2432,43.7672342065,-79.1888137161,329838.377,4847298.7530000005
-892722,4152842,2017.0,2018.0,1974.0,TCHC,25,Scarborough-Rouge Park,4205 LAWRENCE AVE E,14,345,2019-02-06,64,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,E2537,43.76799274060001,-79.185350274,330116.903,4847384.065
-892723,4154358,,2018.0,1954.0,PRIVATE,5,York South-Weston,2624 KEELE ST,3,11,2019-02-06,69,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,3.0,2.0,3.0,,4.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,4.0,,W0522,43.720182196,-79.4809738459,306317.523,4842024.9
-892724,4154647,2017.0,2018.0,1963.0,PRIVATE,6,York Centre,9 KINGSBRIDGE CRT,7,74,2019-02-06,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0624,43.7715767413,-79.4441039119,309284.542,4847735.908
-892725,4154644,2017.0,2018.0,1964.0,PRIVATE,6,York Centre,11 GOLDFINCH CRT,15,174,2019-02-06,80,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,N0624,43.771955665200004,-79.4498156824,308824.70399999997,4847777.717
-892726,4154357,2020.0,2018.0,1957.0,PRIVATE,5,York South-Weston,331 FALSTAFF AVE,3,11,2019-02-06,69,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,3.0,2.0,3.0,,4.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,4.0,,W0522,43.7199095737,-79.48106664779999,306310.05199999997,4841994.612
-892727,4154528,2017.0,2018.0,1956.0,PRIVATE,8,Eglinton-Lawrence,78 NEPTUNE DR,3,12,2019-02-06,60,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,5.0,2.0,3.0,3.0,3.0,3.0,3.0,,N0823,43.7328466433,-79.4361394574,309928.972,4843433.651000001
-892728,4154529,2017.0,2018.0,1958.0,PRIVATE,8,Eglinton-Lawrence,80 NEPTUNE DR,3,11,2019-02-06,66,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,3.0,3.0,,4.0,,,4.0,3.0,5.0,2.0,3.0,3.0,2.0,3.0,3.0,,N0823,43.732780803900006,-79.43644235800001,309904.577,4843426.318
-892729,4154489,2017.0,2018.0,1959.0,PRIVATE,8,Eglinton-Lawrence,771 LAWRENCE AVE W,3,10,2019-02-06,75,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,,,4.0,2.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,,N0827,43.714044601000005,-79.45260206399999,308603.672,4841344.884
-892730,4154488,,2018.0,1959.0,PRIVATE,8,Eglinton-Lawrence,773 LAWRENCE AVE W,3,10,2019-02-06,70,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,3.0,3.0,4.0,,3.0,,,4.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,N0827,43.713971711999996,-79.452927496,308577.452,4841336.772
-892731,4155891,2017.0,2018.0,1958.0,PRIVATE,8,Eglinton-Lawrence,775 LAWRENCE AVE W,3,10,2019-02-06,82,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,5.0,5.0,4.0,,3.0,,4.0,4.0,3.0,5.0,4.0,4.0,5.0,4.0,4.0,3.0,,N0827,43.713898627,-79.453259766,308550.68100000004,4841328.638
-892732,4154487,2018.0,2018.0,1961.0,PRIVATE,8,Eglinton-Lawrence,777 LAWRENCE AVE W,3,10,2019-02-06,75,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,3.0,3.0,4.0,,3.0,,,4.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,,N0827,43.713831691,-79.45359547,308523.63300000003,4841321.187
-892733,4153571,2018.0,2018.0,1969.0,PRIVATE,13,Toronto Centre,210 OAK ST,17,260,2019-02-06,65,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,4.0,3.0,4.0,3.0,3.0,2.0,3.0,3.0,4.0,5.0,2.0,3.0,4.0,3.0,3.0,3.0,,S1330,43.663368073,-79.358462264,316209.596,4835679.79
-892734,4152771,2017.0,2018.0,1971.0,PRIVATE,21,Scarborough Centre,126 BELLAMY RD N,16,253,2019-02-06,53,Evaluation needs to be conducted in 1 year,19,3.0,3.0,2.0,2.0,3.0,3.0,2.0,3.0,3.0,3.0,2.0,2.0,1.0,3.0,3.0,3.0,4.0,2.0,3.0,,E2136,43.742426479799995,-79.2319698725,326372.76300000004,4844530.666999999
-892735,4156620,2017.0,2018.0,1950.0,PRIVATE,16,Don Valley East,1 WINGREEN CRT,3,11,2019-02-05,80,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,4.0,4.0,4.0,,5.0,,4.0,4.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,N1624,43.7388622795,-79.3416192822,,
-892736,4285160,2018.0,2018.0,1950.0,PRIVATE,16,Don Valley East,3 WINGREEN CRT,3,11,2019-02-05,79,Evaluation needs to be conducted in 2 years,17,3.0,5.0,4.0,3.0,3.0,5.0,,5.0,,4.0,3.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,N1624,43.7389485514,-79.3418652477,,
-892737,4156612,2017.0,2018.0,1956.0,PRIVATE,16,Don Valley East,5 WINGREEN CRT,3,22,2019-02-05,78,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,4.0,3.0,5.0,,4.0,,3.0,4.0,2.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,,N1624,43.7387840807,-79.3424492566,,
-892738,4156634,2017.0,2018.0,1965.0,PRIVATE,16,Don Valley East,9 WINGREEN CRT,3,11,2019-02-05,89,Evaluation needs to be conducted in 3 years,16,4.0,4.0,5.0,5.0,4.0,5.0,,4.0,,,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,,N1624,43.7386011415,-79.34322632029999,317412.553,4844082.855
-892739,4155134,2017.0,2018.0,1960.0,PRIVATE,5,York South-Weston,19 DENISON RD E,3,26,2019-02-05,63,Evaluation needs to be conducted in 1 year,15,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,,,3.0,4.0,3.0,3.0,3.0,3.0,,3.0,3.0,,W0527,43.696310243999996,-79.506587145,304253.209,4839373.738
-892740,4155135,2017.0,2018.0,1958.0,PRIVATE,5,York South-Weston,21 DENISON RD E,3,17,2019-02-05,77,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,3.0,,3.0,,,3.0,4.0,5.0,3.0,4.0,4.0,,4.0,4.0,,W0527,43.696366278999996,-79.506408632,304267.6,4839379.961
-892741,4153462,2017.0,2018.0,1970.0,TCHC,13,Toronto Centre,423 YONGE ST,20,340,2019-02-05,66,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,3.0,4.0,4.0,4.0,2.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,3.0,S1328,43.6602721446,-79.3823063131,314276.997,4835375.715
-892742,4153454,2017.0,2018.0,1985.0,TCHC,13,Toronto Centre,145 MUTUAL ST,15,145,2019-02-05,74,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,4.0,,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1328,43.659102374899994,-79.3763412035,314758.305,4835246.416999999
-892743,4155313,,2018.0,1952.0,PRIVATE,2,Etobicoke Centre,315 THE KINGSWAY,4,15,2019-02-05,73,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,3.0,4.0,3.0,,4.0,,,3.0,3.0,5.0,4.0,4.0,4.0,,3.0,4.0,,W0229,43.6650849124,-79.5230752118,302923.345,4835904.087
-892744,4155029,2017.0,2018.0,1977.0,PRIVATE,12,Toronto-St. Paul's,787 VAUGHAN RD,4,38,2019-02-05,83,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,5.0,,5.0,,,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,3.0,,S1222,43.6952218624,-79.4479601796,308979.273,4839253.057
-892745,4156034,2017.0,2018.0,1994.0,TCHC,13,Toronto Centre,261 JARVIS ST,7,55,2019-02-05,68,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,3.0,3.0,3.0,4.0,4.0,3.0,,4.0,3.0,4.0,3.0,3.0,3.0,,4.0,3.0,,S1328,43.657929001499994,-79.37459565270001,314899.288,4835116.244
-892746,4153499,2017.0,2018.0,1991.0,TCHC,13,Toronto Centre,460 JARVIS ST,10,212,2019-02-05,74,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,5.0,,4.0,4.0,3.0,3.0,4.0,3.0,3.0,4.0,3.0,,S1326,43.665843764899996,-79.37866359649999,314569.899,4835995.071
-892747,4153000,2017.0,2018.0,1917.0,PRIVATE,4,Parkdale-High Park,1465 KING ST W,3,48,2019-02-05,57,Evaluation needs to be conducted in 1 year,14,3.0,2.0,3.0,2.0,3.0,2.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,2.0,,,S0437,43.6362466824,-79.4390220759,309704.547,4832701.692
-892748,4152999,2017.0,2018.0,1960.0,PRIVATE,4,Parkdale-High Park,1475 KING ST W,3,44,2019-02-05,61,Evaluation needs to be conducted in 1 year,15,2.0,2.0,2.0,2.0,4.0,3.0,,3.0,,2.0,2.0,4.0,5.0,4.0,4.0,4.0,,3.0,,,S0437,43.636130710399996,-79.4396082972,309657.257,4832688.775
-892749,4153434,2017.0,2018.0,1978.0,TCHC,13,Toronto Centre,200 SHERBOURNE ST,7,174,2019-02-05,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,2.0,4.0,4.0,,4.0,3.0,,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,S1332,43.657118655699996,-79.3709227315,315195.67100000003,4835026.678
-892750,4250288,2017.0,2018.0,1989.0,SOCIAL HOUSING,13,Toronto Centre,305-307 PARLIAMENT ST,3,10,2019-02-05,79,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,4.0,4.0,,3.0,,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,,4.0,S1330,,,315626.782,4835245.653
-892751,4155337,2017.0,2018.0,1963.0,PRIVATE,2,Etobicoke Centre,1137 ROYAL YORK RD,10,122,2019-02-05,73,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,1.0,,3.0,4.0,,3.0,3.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,,W0230,43.6612337924,-79.51514744149999,303562.582,4835476.083000001
-892752,4232595,2017.0,2018.0,1963.0,PRIVATE,2,Etobicoke Centre,1139 ROYAL YORK RD,10,90,2019-02-05,73,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,1.0,,3.0,4.0,,3.0,3.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,,W0230,43.6611103479,-79.5158726377,303504.092,4835462.384
-892753,4153580,2017.0,2018.0,1930.0,PRIVATE,13,Toronto Centre,26 GIFFORD ST,4,15,2019-02-05,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,2.0,3.0,3.0,,4.0,,,3.0,3.0,5.0,2.0,4.0,4.0,,2.0,3.0,,S1327,43.6633467567,-79.36369410409999,315777.607,4835719.536
-892754,4153460,2017.0,2018.0,1985.0,TCHC,11,University-Rosedale,25 ELM ST,16,101,2019-02-05,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,,4.0,3.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,S1145,43.6573608881,-79.3829351361,314226.76,4835052.209
-892755,4154275,2017.0,2018.0,1960.0,PRIVATE,7,Humber River-Black Creek,25 DUNCANWOODS DR,11,148,2019-02-05,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,,4.0,3.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,,W0722,43.7496851095,-79.55739159,300162.561,4845304.0030000005
-892756,4154531,2017.0,2018.0,1975.0,PRIVATE,8,Eglinton-Lawrence,84 NEPTUNE DR,3,11,2019-02-05,86,Evaluation needs to be conducted in 3 years,16,5.0,4.0,4.0,4.0,4.0,4.0,,5.0,,,4.0,4.0,5.0,5.0,3.0,4.0,5.0,4.0,5.0,,N0823,43.732647778,-79.4370443606,309856.093,4843411.5030000005
-892757,4154548,2017.0,2018.0,1960.0,PRIVATE,8,Eglinton-Lawrence,33 WASDALE CRES,3,11,2019-02-05,72,Evaluation needs to be conducted in 2 years,17,3.0,5.0,4.0,4.0,3.0,4.0,,4.0,,3.0,4.0,2.0,5.0,3.0,3.0,4.0,3.0,4.0,3.0,,N0823,43.730813472200005,-79.4346272545,310050.972,4843207.881
-892758,4154546,2017.0,2018.0,1960.0,PRIVATE,8,Eglinton-Lawrence,37 WASDALE CRES,3,11,2019-02-05,71,Evaluation needs to be conducted in 2 years,16,3.0,5.0,4.0,3.0,3.0,3.0,,4.0,,,3.0,2.0,5.0,4.0,3.0,4.0,3.0,4.0,4.0,,N0823,43.730660445299996,-79.4351977557,310005.026,4843190.842
-892759,4153422,2017.0,2018.0,1983.0,TCHC,13,Toronto Centre,25 MUTUAL ST,11,97,2019-02-05,73,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,,4.0,4.0,4.0,3.0,4.0,3.0,4.0,3.0,4.0,,S1332,43.654312876999995,-79.374349898,314919.44399999996,4834715.511
-892760,4155635,2017.0,2018.0,1957.0,TCHC,8,Eglinton-Lawrence,1 REPLIN RD,3,31,2019-02-04,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,,,4.0,4.0,3.0,3.0,4.0,3.0,,4.0,3.0,,N0823,43.719043907,-79.4433371886,309350.165,4841899.794
-892761,4156556,2018.0,2018.0,1970.0,TCHC,24,Scarborough-Guildwood,3943 LAWRENCE AVE E,3,15,2019-02-04,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,,,3.0,4.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,,E2431,43.7631593909,-79.2047559,328556.497,4846841.376
-892762,4155156,2017.0,2018.0,1965.0,PRIVATE,5,York South-Weston,36 CHURCH ST,6,41,2019-02-04,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0524,43.7043490054,-79.52380161399999,302866.172,4840266.152
-892763,4155564,2017.0,2018.0,1970.0,TCHC,20,Scarborough Southwest,3479 ST CLAIR AVE E,8,94,2019-02-04,81,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,E2030,43.7142950675,-79.2692166242,323381.434,4841396.427
-892764,4155565,2017.0,2018.0,1968.0,TCHC,20,Scarborough Southwest,3485 ST CLAIR AVE E,9,97,2019-02-04,69,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,4.0,,3.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,2.0,,E2030,43.7145219871,-79.26814890060001,323467.401,4841421.877
-892765,4155280,2017.0,2018.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,164 BERRY RD,3,27,2019-02-04,61,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,2.0,3.0,3.0,,4.0,,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0327,43.636923601199996,-79.4910603874,305505.601,4832775.234
-892766,4156555,2017.0,2018.0,1970.0,TCHC,24,Scarborough-Guildwood,3945 LAWRENCE AVE E,3,20,2019-02-04,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,,,3.0,4.0,3.0,3.0,2.0,3.0,2.0,3.0,3.0,,E2431,43.7630131413,-79.2041400469,328606.14,4846825.304
-892767,4156554,2017.0,2018.0,1970.0,TCHC,24,Scarborough-Guildwood,3947 LAWRENCE AVE E,19,238,2019-02-04,72,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,3.0,5.0,5.0,3.0,3.0,3.0,,3.0,5.0,4.0,3.0,3.0,4.0,4.0,4.0,3.0,2.0,E2431,43.7638127672,-79.20381674149999,328631.854,4846914.233
-892768,4155627,2017.0,2018.0,1957.0,TCHC,8,Eglinton-Lawrence,3 LEILA LANE,3,31,2019-02-04,67,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,,,3.0,4.0,3.0,3.0,4.0,3.0,,4.0,3.0,,N0823,43.722049816,-79.44575558300001,309154.837,4842234.568
-892769,4154317,2017.0,2018.0,1955.0,PRIVATE,5,York South-Weston,2641 KEELE ST,3,21,2019-02-04,65,Evaluation needs to be conducted in 1 year,15,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,2.0,3.0,3.0,,3.0,3.0,,W0523,43.7212489547,-79.4801097422,306387.12,4842143.426
-892770,4154318,2017.0,2018.0,1955.0,PRIVATE,5,York South-Weston,2643 KEELE ST,3,21,2019-02-04,64,Evaluation needs to be conducted in 1 year,15,3.0,4.0,5.0,3.0,2.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,2.0,3.0,,W0523,43.7214377467,-79.4800527755,306391.705,4842164.401000001
-892771,4155952,2017.0,2018.0,1969.0,PRIVATE,13,Toronto Centre,280 WELLESLEY ST E,32,571,2019-02-04,61,Evaluation needs to be conducted in 1 year,19,4.0,3.0,5.0,3.0,3.0,4.0,3.0,2.0,3.0,,3.0,4.0,4.0,3.0,2.0,1.0,4.0,3.0,2.0,2.0,S1323,43.6684263291,-79.3704468759,315261.028,4836267.257
-892772,4155566,2017.0,2018.0,1969.0,TCHC,20,Scarborough Southwest,675 KENNEDY RD,11,192,2019-02-04,68,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,,3.0,3.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,,E2023,43.72687441,-79.265289789,323769.245,4842812.63
-892773,4155274,2019.0,2018.0,1958.0,PRIVATE,3,Etobicoke-Lakeshore,22 RIVERWOOD PKWY,4,44,2019-02-04,63,Evaluation needs to be conducted in 1 year,16,3.0,2.0,3.0,3.0,3.0,3.0,,3.0,,2.0,3.0,3.0,4.0,3.0,3.0,4.0,,4.0,4.0,,W0327,43.6388094067,-79.489549092,305627.568,4832984.75
-892774,4155809,2017.0,2018.0,1975.0,PRIVATE,13,Toronto Centre,191 SHERBOURNE ST,17,371,2019-02-04,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,,S1329,43.6567986347,-79.369926655,315276.068,4834991.252
-892775,4155634,2017.0,2018.0,1957.0,TCHC,8,Eglinton-Lawrence,1 OLD MEADOW LANE,4,30,2019-02-04,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,,,4.0,4.0,3.0,3.0,4.0,3.0,,4.0,3.0,,N0823,43.717314183999996,-79.443949262,309300.705,4841708.546
-892776,4155629,2017.0,2018.0,1957.0,TCHC,8,Eglinton-Lawrence,3 OLD MEADOW LANE,4,30,2019-02-04,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,,,4.0,4.0,3.0,3.0,4.0,3.0,,4.0,3.0,,N0823,43.717989875,-79.444116728,309284.73699999996,4841788.238
-892777,4156107,2017.0,2018.0,1975.0,PRIVATE,13,Toronto Centre,201 SHERBOURNE ST,23,225,2019-02-04,82,Evaluation needs to be conducted in 2 years,19,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1329,43.65729444350001,-79.3703063901,315245.354,4835046.287
-892778,4154277,2017.0,2018.0,1965.0,PRIVATE,7,Humber River-Black Creek,50 PEARLDALE AVE,7,96,2019-02-04,66,Evaluation needs to be conducted in 2 years,20,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,W0722,43.74918598,-79.563851453,299642.01300000004,4845249.898
-892779,4232598,2017.0,2018.0,1963.0,PRIVATE,2,Etobicoke Centre,1141 ROYAL YORK RD,10,91,2019-02-04,73,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,1.0,4.0,3.0,4.0,,3.0,3.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,,W0230,43.6607734942,-79.5163233393,303467.734,4835424.971
-892780,4155239,2017.0,2018.0,1953.0,PRIVATE,3,Etobicoke-Lakeshore,317 PARK LAWN RD,4,32,2019-02-04,74,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,4.0,3.0,,4.0,,,4.0,4.0,5.0,3.0,4.0,3.0,4.0,3.0,3.0,,W0329,43.635649636000004,-79.4928351959,305362.392,4832633.691000001
-892781,4155259,2017.0,2018.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,3 CROWN HILL PL,6,62,2019-02-04,74,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,4.0,3.0,,4.0,3.0,4.0,4.0,4.0,5.0,3.0,4.0,3.0,5.0,3.0,4.0,,W0327,43.6380325283,-79.4912275858,305492.11600000004,4832898.429
-892782,4155828,2018.0,2018.0,1944.0,PRIVATE,4,Parkdale-High Park,2561 BLOOR ST W,4,34,2019-02-04,66,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,4.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,2.0,3.0,3.0,,S0425,43.647625728,-79.491336413,305480.451,4833992.441000001
-892783,4155294,2017.0,2018.0,1940.0,PRIVATE,3,Etobicoke-Lakeshore,2655 BLOOR ST W,5,45,2019-02-04,68,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,3.0,,3.0,,3.0,4.0,3.0,5.0,3.0,3.0,3.0,2.0,3.0,3.0,,W0327,43.6494614357,-79.495683937,305101.599,4834184.1389999995
-892784,4154251,2018.0,2018.0,1993.0,SOCIAL HOUSING,7,Humber River-Black Creek,3001 FINCH AVE W,14,166,2019-02-04,67,Evaluation needs to be conducted in 2 years,19,3.0,3.0,3.0,4.0,3.0,4.0,3.0,3.0,4.0,,3.0,4.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,W0727,43.747070571,-79.562597925,299742.782,4845014.81
-892785,4154492,2017.0,2018.0,1958.0,PRIVATE,8,Eglinton-Lawrence,47 EUPHRASIA DR,3,26,2019-02-04,71,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,3.0,3.0,,3.0,3.0,3.0,4.0,3.0,5.0,3.0,3.0,4.0,3.0,4.0,3.0,,N0826,43.712421686099994,-79.4606406052,307956.24600000004,4841163.303
-892786,4155060,2017.0,2018.0,1960.0,PRIVATE,8,Eglinton-Lawrence,178 LOCKSLEY AVE,3,24,2019-02-04,75,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,,3.0,4.0,3.0,5.0,4.0,3.0,4.0,3.0,4.0,3.0,,N0831,43.7023837133,-79.4491090339,308886.201,4840048.632
-892787,4154533,,2018.0,1956.0,PRIVATE,8,Eglinton-Lawrence,88 NEPTUNE DR,3,11,2019-02-04,58,Evaluation needs to be conducted in 1 year,16,2.0,3.0,3.0,3.0,2.0,3.0,,3.0,,,2.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0823,43.732494717,-79.4377218694,309801.528,4843394.458000001
-892788,4154502,,2018.0,,PRIVATE,8,Eglinton-Lawrence,89 NEPTUNE DR,3,11,2019-02-04,56,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,2.0,3.0,4.0,2.0,3.0,3.0,2.0,2.0,3.0,,N0823,43.731805189700005,-79.4379426197,309783.803,4843317.843
-892789,4155246,2017.0,2018.0,1956.0,PRIVATE,3,Etobicoke-Lakeshore,2 KINSDALE BLVD,4,45,2019-02-04,62,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,3.0,3.0,2.0,5.0,3.0,3.0,3.0,5.0,3.0,3.0,,W0329,43.637018605,-79.488272958,305733.855,4832772.095
-892790,4155638,2017.0,2018.0,1957.0,TCHC,8,Eglinton-Lawrence,1 FLEMINGTON RD,3,31,2019-02-04,67,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,4.0,4.0,3.0,3.0,4.0,3.0,,4.0,3.0,,N0823,43.719074422,-79.441290791,309514.797,4841904.254
-892791,4155563,2017.0,2018.0,1971.0,TCHC,20,Scarborough Southwest,30 TEESDALE PL,24,278,2019-02-04,69,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,4.0,4.0,4.0,3.0,4.0,,3.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,3.0,,E2028,43.697003832200004,-79.28779229199999,321889.538,4839471.448
-892792,4155562,2017.0,2018.0,1971.0,TCHC,20,Scarborough Southwest,40 TEESDALE PL,24,278,2019-02-04,69,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,4.0,4.0,4.0,3.0,4.0,,3.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,3.0,,E2028,43.6972076653,-79.2864410678,321998.393,4839494.37
-892793,4155373,2017.0,2018.0,1966.0,PRIVATE,2,Etobicoke Centre,340 THE EAST MALL,8,77,2019-02-04,75,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,4.0,4.0,4.0,,3.0,4.0,5.0,3.0,4.0,5.0,4.0,3.0,3.0,4.0,3.0,3.0,4.0,W0234,43.639211983,-79.55727457399999,300163.043,4833031.882
-892794,4154498,2017.0,2018.0,1958.0,PRIVATE,8,Eglinton-Lawrence,1111 LAWRENCE AVE W,3,15,2019-02-04,81,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,,4.0,4.0,3.0,5.0,3.0,4.0,5.0,4.0,4.0,5.0,,N0826,43.71185691189999,-79.4634512114,307729.784,4841100.462
-892795,4154566,2017.0,2018.0,1960.0,PRIVATE,8,Eglinton-Lawrence,96 MULHOLLAND AVE,3,11,2019-02-04,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,3.0,3.0,,2.0,,,3.0,3.0,5.0,3.0,3.0,4.0,,3.0,3.0,,N0823,43.7207064297,-79.4552747615,308388.209,4842083.9180000005
-892796,4155577,2017.0,2018.0,1969.0,TCHC,24,Scarborough-Guildwood,3847 LAWRENCE AVE E,13,213,2019-02-04,61,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,E2431,43.762491026400006,-79.2104930971,328094.82,4846765.506
-892797,4155854,2018.0,2018.0,1970.0,TCHC,24,Scarborough-Guildwood,3939 LAWRENCE AVE E,3,31,2019-02-04,64,Evaluation needs to be conducted in 1 year,16,4.0,3.0,4.0,3.0,3.0,4.0,,3.0,,,4.0,4.0,3.0,3.0,2.0,3.0,2.0,3.0,3.0,,E2431,43.763475641999996,-79.20530613220001,328497.269,4846918.613
-892798,4156557,2017.0,2018.0,1970.0,TCHC,24,Scarborough-Guildwood,3941 LAWRENCE AVE E,3,33,2019-02-04,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,,,3.0,3.0,4.0,3.0,3.0,3.0,2.0,3.0,3.0,,E2431,43.763624835,-79.2044874649,328577.92600000004,4846893.162
-892799,4155630,2017.0,2018.0,1957.0,TCHC,8,Eglinton-Lawrence,4 REPLIN RD,4,30,2019-02-04,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,,,4.0,4.0,3.0,3.0,4.0,3.0,,4.0,3.0,,N0823,43.717910323999995,-79.443368577,309354.813,4841773.51
-892800,4153211,2017.0,2018.0,1962.0,PRIVATE,11,University-Rosedale,153 ST GEORGE ST,7,48,2019-02-03,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,4.0,,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,3.0,,S1127,43.669584779,-79.400213595,312831.128,4836409.283
-892801,4153210,2017.0,2018.0,1952.0,PRIVATE,11,University-Rosedale,151 ST GEORGE ST,7,48,2019-02-03,73,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,3.0,3.0,,4.0,4.0,3.0,4.0,4.0,5.0,3.0,4.0,3.0,4.0,3.0,3.0,,S1127,43.669453576,-79.400154652,312835.898,4836394.713
-892802,4153666,2017.0,2018.0,1930.0,PRIVATE,19,Beaches-East York,2373 QUEEN ST E,3,27,2019-02-01,66,Evaluation needs to be conducted in 2 years,14,4.0,3.0,3.0,3.0,3.0,3.0,,4.0,,,3.0,3.0,3.0,3.0,4.0,4.0,,3.0,,,S1942,43.6723206085,-79.2877515365,321899.772,4836729.268999999
-892803,4152823,2017.0,2018.0,1972.0,PRIVATE,24,Scarborough-Guildwood,3700 LAWRENCE AVE E,11,105,2019-02-01,83,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,E2426,43.7620164362,-79.2173016754,327546.795,4846710.909
-892804,4233290,2017.0,2018.0,1984.0,SOCIAL HOUSING,5,York South-Weston,29 SOUTH STATION ST,13,128,2019-02-01,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,5.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,,4.0,4.0,,W0524,43.7009920215,-79.5153630558,303546.182,4839893.047
-892805,4155879,2017.0,2018.0,1969.0,PRIVATE,6,York Centre,6200 BATHURST ST,14,181,2019-02-01,73,Evaluation needs to be conducted in 2 years,20,4.0,3.0,3.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,N0622,43.791103408000005,-79.44678989100001,309058.466,4849903.305
-892806,4152762,2018.0,2018.0,1963.0,PRIVATE,21,Scarborough Centre,25 TRUDELLE ST,6,66,2019-02-01,59,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,2.0,1.0,3.0,2.0,4.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,E2135,43.7393268153,-79.2437802418,325412.352,4844257.077
-892807,4156388,2018.0,2018.0,1963.0,PRIVATE,21,Scarborough Centre,35 TRUDELLE ST,6,84,2019-02-01,62,Evaluation needs to be conducted in 1 year,18,4.0,4.0,3.0,3.0,1.0,3.0,3.0,4.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,E2135,43.738969517,-79.24334499300001,325510.51,4844207.261
-892808,4156387,2018.0,2018.0,1963.0,PRIVATE,21,Scarborough Centre,45 TRUDELLE ST,6,66,2019-02-01,60,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,E2135,43.739359678999996,-79.24262709999999,325530.477,4844213.33
-892809,4155993,2017.0,2018.0,1973.0,PRIVATE,5,York South-Weston,2460 WESTON RD,27,214,2019-02-01,74,Evaluation needs to be conducted in 2 years,20,3.0,3.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,3.0,3.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,W0521,43.7078718117,-79.5341521524,302032.14,4840657.833000001
-892810,4153659,2017.0,2018.0,1974.0,TCHC,14,Toronto-Danforth,145 STRATHMORE BLVD,14,350,2019-02-01,70,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,3.0,3.0,4.0,4.0,4.0,,4.0,3.0,4.0,4.0,4.0,4.0,,3.0,3.0,3.0,S1427,43.6815994878,-79.3340244095,318166.408,4837751.63
-892811,4153556,2017.0,2018.0,1980.0,SOCIAL HOUSING,10,Spadina-Fort York,5 HAHN PL,4,32,2019-02-01,80,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1039,43.648895593999995,-79.362805101,315851.683,4834115.191000001
-892812,4153554,2017.0,2018.0,1980.0,SOCIAL HOUSING,10,Spadina-Fort York,33 HAHN PL,8,135,2019-02-01,83,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,S1039,43.649402507,-79.362697005,315860.308,4834171.515
-892813,4154080,2017.0,2018.0,1962.0,TCHC,19,Beaches-East York,9 HALDON AVE,6,200,2019-02-01,76,Evaluation needs to be conducted in 2 years,20,4.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,S1926,43.698524498000005,-79.311523697,319975.998,4839636.799
-892814,4154319,2018.0,2018.0,1953.0,PRIVATE,5,York South-Weston,2645 KEELE ST,3,21,2019-02-01,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,4.0,4.0,,3.0,,,4.0,3.0,3.0,3.0,3.0,2.0,,3.0,3.0,2.0,W0523,43.7216077716,-79.4801053562,306387.464,4842183.289
-892815,4155606,2017.0,2018.0,1969.0,TCHC,14,Toronto-Danforth,1555 QUEEN ST E,6,60,2019-02-01,72,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,,S1442,43.665662499300005,-79.318700496,319405.75899999996,4835983.683
-892816,4156243,2017.0,2018.0,1969.0,TCHC,14,Toronto-Danforth,1575 QUEEN ST E,6,60,2019-02-01,72,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,,S1442,43.66586169560001,-79.31811382689999,319453.024,4836005.915
-892817,4152988,2017.0,2018.0,1955.0,PRIVATE,4,Parkdale-High Park,140 JAMESON AVE,4,23,2019-02-01,72,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,4.0,4.0,3.0,,4.0,,,4.0,4.0,5.0,3.0,3.0,3.0,,4.0,3.0,,S0437,43.636677065600004,-79.4361176047,309938.858,4832749.67
-892818,4152987,2017.0,2018.0,1956.0,PRIVATE,4,Parkdale-High Park,146 JAMESON AVE,4,28,2019-02-01,72,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,3.0,4.0,3.0,,3.0,,4.0,4.0,4.0,5.0,3.0,3.0,3.0,,4.0,,,S0437,43.6369325333,-79.4362160328,309930.895,4832778.044
-892819,4154804,2017.0,2018.0,1970.0,PRIVATE,16,Don Valley East,150 GRAYDON HALL DR,25,298,2019-02-01,80,Evaluation needs to be conducted in 2 years,19,5.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,5.0,5.0,3.0,3.0,4.0,4.0,3.0,4.0,,N1621,43.7656767876,-79.34282796560001,317438.988,4847090.877
-892820,4154139,2017.0,2018.0,1969.0,PRIVATE,14,Toronto-Danforth,1000 BROADVIEW AVE,18,110,2019-02-01,89,Evaluation needs to be conducted in 3 years,19,5.0,4.0,4.0,4.0,5.0,4.0,4.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,,S1421,43.682860253,-79.357706655,316256.567,4837889.181
-892821,4154107,2017.0,2018.0,1973.0,PRIVATE,14,Toronto-Danforth,1111 BROADVIEW AVE,4,41,2019-02-01,80,Evaluation needs to be conducted in 2 years,17,4.0,3.0,5.0,4.0,4.0,5.0,,5.0,,3.0,5.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,,S1421,43.6865969215,-79.3555102879,316433.186,4838303.661
-892822,4250634,2018.0,2018.0,1925.0,PRIVATE,19,Beaches-East York,2367 QUEEN ST E,3,24,2019-02-01,71,Evaluation needs to be conducted in 2 years,15,4.0,4.0,3.0,3.0,3.0,3.0,,2.0,,4.0,3.0,4.0,5.0,4.0,4.0,4.0,,3.0,,,S1942,43.6721682166,-79.2883005888,321855.542,4836712.225
-892823,4153723,2017.0,2018.0,1967.0,TCHC,19,Beaches-East York,2287 GERRARD ST E,5,38,2019-02-01,69,Evaluation needs to be conducted in 2 years,18,3.0,2.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,3.0,4.0,4.0,4.0,4.0,,4.0,3.0,4.0,S1936,43.6847616076,-79.2954429245,321276.18100000004,4838109.87
-892824,4154802,2017.0,2018.0,1970.0,PRIVATE,16,Don Valley East,50 GRAYDON HALL DR,20,304,2019-02-01,79,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,5.0,4.0,4.0,4.0,3.0,5.0,5.0,4.0,5.0,5.0,3.0,3.0,4.0,3.0,3.0,3.0,,N1621,43.764613327,-79.345774526,317201.725,4846973.244
-892825,4154805,2017.0,2018.0,1970.0,PRIVATE,16,Don Valley East,100 GRAYDON HALL DR,24,286,2019-02-01,75,Evaluation needs to be conducted in 2 years,20,4.0,3.0,5.0,4.0,4.0,4.0,3.0,3.0,5.0,3.0,4.0,5.0,5.0,3.0,3.0,4.0,3.0,2.0,4.0,4.0,N1621,43.7654302303,-79.3443358391,317317.648,4847063.257
-892826,4154276,2017.0,2018.0,1969.0,PRIVATE,7,Humber River-Black Creek,35 DUNCANWOODS DR,7,75,2019-02-01,75,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,5.0,3.0,4.0,3.0,4.0,4.0,4.0,,W0722,43.7506086737,-79.5580653576,300108.373,4845406.643
-892827,4155607,2017.0,2018.0,1960.0,TCHC,14,Toronto-Danforth,1615 DUNDAS ST E,4,81,2019-02-01,68,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,4.0,3.0,3.0,3.0,4.0,,,3.0,4.0,5.0,3.0,4.0,3.0,4.0,2.0,3.0,,S1438,43.6665389642,-79.32806340350001,318650.451,4836079.491
-892828,4154500,2017.0,2018.0,1960.0,PRIVATE,8,Eglinton-Lawrence,93 NEPTUNE DR,3,10,2019-02-01,75,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,3.0,5.0,4.0,3.0,3.0,3.0,4.0,3.0,,N0823,43.7316875988,-79.43837313590001,309749.131,4843304.7530000005
-892829,4154534,2017.0,2018.0,1974.0,PRIVATE,8,Eglinton-Lawrence,125 NEPTUNE DR,15,171,2019-02-01,74,Evaluation needs to be conducted in 2 years,19,5.0,4.0,4.0,5.0,5.0,4.0,3.0,3.0,4.0,,3.0,4.0,4.0,3.0,3.0,3.0,4.0,3.0,2.0,4.0,N0823,43.730876999399996,-79.4396616962,309645.392,4843214.6219999995
-892830,4155228,2018.0,2018.0,1962.0,PRIVATE,3,Etobicoke-Lakeshore,9 KINSDALE BLVD,4,23,2019-02-01,69,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,3.0,4.0,4.0,,4.0,,3.0,4.0,4.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0329,43.6352649375,-79.4919665857,305432.484,4832590.959
-892831,4155549,2017.0,2018.0,1963.0,PRIVATE,3,Etobicoke-Lakeshore,220 LAKE PROMENADE,7,118,2019-02-01,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,3.0,,4.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,2.0,,W0334,43.589738823999994,-79.529723711,302384.039,4827534.558999999
-892832,4155550,2017.0,2018.0,1964.0,PRIVATE,3,Etobicoke-Lakeshore,230 LAKE PROMENADE,7,118,2019-02-01,58,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,2.0,2.0,4.0,3.0,3.0,3.0,3.0,3.0,2.0,,W0334,43.589470147,-79.53053544699999,302318.482,4827504.735
-892833,4153706,2017.0,2018.0,1960.0,TCHC,19,Beaches-East York,133 MERRILL AVE E,3,42,2019-02-01,78,Evaluation needs to be conducted in 2 years,20,3.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,S1931,43.682986595,-79.311994302,319941.96,4837910.517
-892834,4155787,2017.0,2018.0,2001.0,TCHC,14,Toronto-Danforth,10 BOULTBEE AVE,11,167,2019-02-01,77,Evaluation needs to be conducted in 2 years,20,4.0,3.0,4.0,3.0,4.0,3.0,4.0,5.0,3.0,4.0,2.0,5.0,3.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,S1430,43.672840218800005,-79.339881471,317696.053,4836777.6280000005
-892835,4154926,2017.0,2018.0,1964.0,PRIVATE,16,Don Valley East,1216 YORK MILLS RD,8,65,2019-01-31,93,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,,N1622,43.760177983599995,-79.33256408140001,318266.564,4846481.585
-892836,4285972,2017.0,2018.0,1972.0,TCHC,24,Scarborough-Guildwood,4110 LAWRENCE AVE E,11,185,2019-01-31,62,Evaluation needs to be conducted in 1 year,19,2.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,E2428,43.767386062,-79.193922136,329338.224,4847236.605
-892837,4153664,2017.0,2018.0,1927.0,PRIVATE,19,Beaches-East York,2269 QUEEN ST E,3,17,2019-01-31,71,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,4.0,3.0,4.0,,3.0,,,4.0,3.0,3.0,3.0,3.0,4.0,,4.0,,,S1942,43.6712526429,-79.293268236,321455.209,4836609.522
-892838,4288796,2017.0,2018.0,1920.0,PRIVATE,19,Beaches-East York,2327 QUEEN ST E,3,27,2019-01-31,68,Evaluation needs to be conducted in 2 years,17,4.0,3.0,3.0,4.0,3.0,3.0,,3.0,,3.0,2.0,3.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,S1942,43.671653798,-79.291250505,321617.55,4836655.433999999
-892839,4153583,2017.0,2018.0,1931.0,PRIVATE,13,Toronto Centre,317 SHERBOURNE ST,4,38,2019-01-31,81,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,S1323,43.6617262315,-79.37195933689999,315111.279,4835538.449
-892840,4154019,2017.0,2018.0,1954.0,PRIVATE,8,Eglinton-Lawrence,2730 YONGE ST,7,63,2019-01-31,82,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,5.0,4.0,3.0,,3.0,5.0,3.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0829,43.7180354944,-79.4010377857,312758.613,4841791.045
-892841,4154020,2017.0,2018.0,1950.0,PRIVATE,8,Eglinton-Lawrence,2770 YONGE ST,4,50,2019-01-31,75,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,4.0,3.0,3.0,,3.0,,,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,N0829,43.7188202581,-79.40116969729999,312747.881,4841878.215
-892842,4155312,2017.0,2018.0,1970.0,PRIVATE,2,Etobicoke Centre,313 THE KINGSWAY,4,18,2019-01-31,72,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,2.0,4.0,3.0,,4.0,,,4.0,3.0,4.0,4.0,4.0,3.0,,4.0,4.0,,W0229,43.664984337700005,-79.5228845636,302938.716,4835892.909
-892843,4155320,2017.0,2018.0,1970.0,PRIVATE,2,Etobicoke Centre,316 THE KINGSWAY,4,17,2019-01-31,65,Evaluation needs to be conducted in 1 year,15,3.0,4.0,4.0,3.0,3.0,3.0,,2.0,,,2.0,3.0,3.0,3.0,4.0,4.0,,4.0,4.0,,W0229,43.664689787200004,-79.5237237327,302871.029,4835860.206
-892844,4480446,2019.0,2018.0,2016.0,SOCIAL HOUSING,20,Scarborough Southwest,55 THORA AVE,4,20,2019-01-31,99,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,5.0,5.0,5.0,,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,,5.0,5.0,5.0,E2028,43.691279311,-79.286865733,321965.595,4838836.621
-892845,4234487,2017.0,2018.0,1970.0,PRIVATE,2,Etobicoke Centre,300 THE KINGSWAY,4,12,2019-01-31,64,Evaluation needs to be conducted in 1 year,15,3.0,4.0,4.0,2.0,2.0,3.0,,2.0,,,3.0,2.0,5.0,4.0,4.0,3.0,,4.0,3.0,,W0229,43.664006468800004,-79.5223413659,302982.48699999996,4835784.26
-892846,4152990,,2018.0,1960.0,PRIVATE,4,Parkdale-High Park,120 JAMESON AVE,7,90,2019-01-31,71,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,4.0,4.0,3.0,,3.0,4.0,,4.0,4.0,5.0,4.0,3.0,3.0,3.0,4.0,2.0,,S0437,43.635854047399995,-79.4359351656,309953.647,4832658.252
-892847,4152984,2017.0,2018.0,1955.0,PRIVATE,4,Parkdale-High Park,125 JAMESON AVE,7,67,2019-01-31,67,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,3.0,3.0,,3.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,S0437,43.6361641445,-79.4351614024,310016.053,4832692.746
-892848,4154640,2017.0,2018.0,1967.0,PRIVATE,6,York Centre,605 FINCH AVE W,9,244,2019-01-31,74,Evaluation needs to be conducted in 2 years,20,4.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,5.0,3.0,3.0,4.0,3.0,4.0,3.0,4.0,N0624,43.771328418,-79.45270965,308591.503,4847708.85
-892849,4154619,2017.0,2018.0,1964.0,PRIVATE,6,York Centre,707-711 FINCH AVE W,7,150,2019-01-31,74,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,N0624,,,307885.74100000004,4847532.728999999
-892850,4155569,2017.0,2018.0,1971.0,TCHC,21,Scarborough Centre,6 GLAMORGAN AVE,12,184,2019-01-31,68,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,4.0,2.0,3.0,4.0,E2123,43.7693818631,-79.284775411,322111.87899999996,4847512.968
-892851,4155568,2017.0,2018.0,1971.0,TCHC,21,Scarborough Centre,7 GLAMORGAN AVE,12,196,2019-01-31,67,Evaluation needs to be conducted in 2 years,19,3.0,3.0,3.0,3.0,3.0,4.0,3.0,4.0,3.0,,3.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,E2123,43.7677640295,-79.2844534267,322138.266,4847333.299
-892852,4156174,2017.0,2018.0,1960.0,PRIVATE,24,Scarborough-Guildwood,1 MEADOWGLEN PL,6,50,2019-01-31,66,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,3.0,3.0,3.0,2.0,4.0,4.0,3.0,2.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,E2426,43.774633618,-79.229401141,326588.23600000003,4848090.835
-892853,4152760,2017.0,2018.0,1950.0,PRIVATE,21,Scarborough Centre,1385 MIDLAND AVE,13,144,2019-01-31,63,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,2.0,3.0,3.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,,E2134,43.750636326000006,-79.2638428764,323803.012,4845434.954
-892854,4152803,2017.0,2018.0,1965.0,PRIVATE,24,Scarborough-Guildwood,3400 EGLINTON AVE E,16,221,2019-01-31,70,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,3.0,,2.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,3.0,,E2433,43.745127162799996,-79.2131571633,327886.965,4844835.72
-892855,4152802,2017.0,2018.0,1975.0,PRIVATE,24,Scarborough-Guildwood,3434 EGLINTON AVE E,17,214,2019-01-31,69,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,2.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,2.0,4.0,4.0,4.0,5.0,4.0,4.0,,E2433,43.74562160560001,-79.21121677880001,328043.05600000004,4844891.19
-892856,4152739,2017.0,2018.0,1960.0,PRIVATE,24,Scarborough-Guildwood,3210 LAWRENCE AVE E,6,48,2019-01-31,69,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,3.0,3.0,4.0,,4.0,3.0,,3.0,3.0,5.0,4.0,3.0,3.0,4.0,5.0,3.0,,E2424,43.756840819,-79.24196517600001,325562.476,4846130.432
-892857,4155583,2017.0,2018.0,1972.0,TCHC,24,Scarborough-Guildwood,4100 LAWRENCE AVE E,11,185,2019-01-31,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,,E2428,43.76703953,-79.195497441,329267.349,4847214.382
-892858,4154654,2017.0,2018.0,1960.0,PRIVATE,8,Eglinton-Lawrence,2895 BATHURST ST,5,60,2019-01-31,69,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,4.0,,3.0,5.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,N0828,43.7147716704,-79.42837310729999,310556.341,4841426.127
-892859,4155102,2017.0,2018.0,1950.0,PRIVATE,5,York South-Weston,100 TRETHEWEY DR,3,11,2019-01-30,83,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,3.0,4.0,,5.0,,,5.0,4.0,5.0,3.0,5.0,4.0,,3.0,5.0,,W0532,43.6932514595,-79.4827536797,306174.69,4839033.016
-892860,4171348,,2018.0,1937.0,PRIVATE,8,Eglinton-Lawrence,3488 YONGE ST,3,22,2019-01-30,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,5.0,3.0,2.0,3.0,,3.0,,,2.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N0825,43.7351428526,-79.405176606,312422.962,4843691.145
-892861,4156580,2017.0,2018.0,1967.0,PRIVATE,16,Don Valley East,1200 YORK MILLS RD,16,222,2019-01-30,83,Evaluation needs to be conducted in 2 years,20,5.0,3.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,N1622,43.759658618,-79.3350153122,318069.30199999997,4846423.49
-892862,4156579,2017.0,2018.0,1967.0,PRIVATE,16,Don Valley East,1202 YORK MILLS RD,22,219,2019-01-30,83,Evaluation needs to be conducted in 2 years,19,5.0,3.0,5.0,5.0,4.0,3.0,4.0,4.0,5.0,3.0,4.0,3.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,,N1622,43.7606174266,-79.3350540559,318065.974,4846530.005
-892863,4153600,2017.0,2018.0,1964.0,PRIVATE,13,Toronto Centre,670 PARLIAMENT ST,15,239,2019-01-30,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1323,43.670774446,-79.370931083,315192.373,4836544.757
-892864,4153602,2017.0,2018.0,1964.0,PRIVATE,13,Toronto Centre,135 ROSE AVE,15,239,2019-01-30,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1323,43.670488768999995,-79.371608932,315137.76300000004,4836512.93
-892865,4154916,2017.0,2018.0,1962.0,PRIVATE,16,Don Valley East,267 ROYWOOD DR,7,72,2019-01-30,85,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,4.0,5.0,4.0,3.0,3.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,,N1622,43.761230364,-79.335262791,318048.772,4846599.023
-892866,4156459,2017.0,2018.0,1976.0,PRIVATE,20,Scarborough Southwest,39 PARKCREST DR,7,134,2019-01-30,82,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,,4.0,4.0,4.0,4.0,,4.0,5.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,,E2027,43.73597306439999,-79.2190996441,327411.779,4843817.119
-892867,4152798,2017.0,2018.0,1965.0,PRIVATE,24,Scarborough-Guildwood,15 COUGAR CRT,17,193,2019-01-30,67,Evaluation needs to be conducted in 2 years,18,3.0,3.0,5.0,3.0,2.0,4.0,4.0,3.0,4.0,,4.0,3.0,2.0,2.0,3.0,4.0,4.0,4.0,3.0,,E2433,43.7449791335,-79.2174778122,327539.033,4844818.088
-892868,4228766,2017.0,2018.0,1905.0,PRIVATE,19,Beaches-East York,2218 QUEEN ST E,3,16,2019-01-30,76,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,,,3.0,3.0,5.0,3.0,4.0,4.0,,4.0,,,S1940,43.67276420899999,-79.2883036582,321855.126,4836778.436000001
-892869,4152801,2017.0,2018.0,1961.0,PRIVATE,24,Scarborough-Guildwood,5 CEDAR DR,10,86,2019-01-30,61,Evaluation needs to be conducted in 1 year,18,2.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,2.0,,3.0,3.0,3.0,2.0,3.0,4.0,3.0,3.0,4.0,,E2433,43.744527226,-79.2154577667,327701.9,4844768.433999999
-892870,4155829,2017.0,2018.0,1940.0,PRIVATE,8,Eglinton-Lawrence,2674 YONGE ST,3,31,2019-01-30,71,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,3.0,3.0,3.0,,3.0,,3.0,4.0,4.0,4.0,3.0,3.0,3.0,,4.0,,,N0829,43.716818521,-79.40078111300001,312779.193,4841656.826
-892871,4155311,2017.0,2018.0,1955.0,PRIVATE,2,Etobicoke Centre,309 THE KINGSWAY,4,34,2019-01-30,83,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,4.0,4.0,,3.0,,,4.0,5.0,5.0,4.0,4.0,4.0,5.0,5.0,4.0,,W0229,43.6648936941,-79.522593185,302962.211,4835882.8319999995
-892872,4154506,2017.0,2018.0,1956.0,PRIVATE,8,Eglinton-Lawrence,10 WASDALE CRES,3,10,2019-01-30,74,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,,3.0,5.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,N0823,43.731194699300005,-79.4353275935,309994.519,4843250.185
-892873,4154507,2017.0,2018.0,1950.0,PRIVATE,8,Eglinton-Lawrence,24 WASDALE CRES,3,11,2019-01-30,81,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,,,5.0,5.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,,N0823,43.730975673,-79.4363599981,309911.368,4843225.786
-892874,4156367,2017.0,2018.0,1954.0,PRIVATE,5,York South-Weston,4 GREENBROOK DR,3,23,2019-01-30,73,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,,,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0532,43.697269463999994,-79.47635433880001,306690.437,4839479.496
-892875,4155105,,2018.0,1954.0,PRIVATE,5,York South-Weston,"5 GREENBROOK DR
-
-",3,12,2019-01-30,81,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,3.0,4.0,4.0,,3.0,,,4.0,3.0,5.0,4.0,4.0,5.0,5.0,5.0,5.0,,W0532,43.696492821199996,-79.4764300653,306684.353,4839393.215
-892876,4154304,2017.0,2018.0,1950.0,PRIVATE,5,York South-Weston,2417 KEELE ST,3,12,2019-01-30,69,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,4.0,,4.0,4.0,,W0523,43.7099657266,-79.4779872702,306558.457,4840889.976
-892877,4155108,2017.0,2018.0,1957.0,PRIVATE,5,York South-Weston,1960 KEELE ST,3,28,2019-01-30,86,Evaluation needs to be conducted in 3 years,17,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,5.0,3.0,5.0,5.0,5.0,4.0,5.0,4.0,,5.0,3.0,,W0532,43.696215068,-79.475727208,306740.752,4839363.327
-892878,4155107,2017.0,2018.0,1960.0,PRIVATE,5,York South-Weston,1970 KEELE ST,4,45,2019-01-30,86,Evaluation needs to be conducted in 3 years,17,5.0,4.0,5.0,4.0,4.0,4.0,,3.0,5.0,,4.0,3.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,,W0532,43.696598977,-79.475898952,306726.898,4839405.973
-892879,4155310,2017.0,2018.0,1962.0,PRIVATE,2,Etobicoke Centre,307 THE KINGSWAY,3,26,2019-01-30,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,3.0,3.0,,4.0,,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,W0229,43.6646746732,-79.5222520533,302989.714,4835858.492
-892880,4155322,,2018.0,1952.0,PRIVATE,2,Etobicoke Centre,308 THE KINGSWAY,4,34,2019-01-30,73,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,4.0,3.0,,3.0,,4.0,4.0,3.0,5.0,3.0,3.0,3.0,,4.0,4.0,,W0229,43.6641680509,-79.5231261637,302919.2,4835802.228999999
-892881,4152991,,2018.0,1960.0,PRIVATE,4,Parkdale-High Park,110 JAMESON AVE,7,91,2019-01-30,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,3.0,,3.0,4.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,2.0,,S0437,43.635467624899995,-79.43575281,309968.393,4832615.335
-892882,4152745,2017.0,2018.0,1960.0,PRIVATE,24,Scarborough-Guildwood,45 GREENBRAE CRCT,6,112,2019-01-30,67,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,5.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,E2425,43.759429906,-79.230999363,326447.571,4846406.327
-892883,4154639,2017.0,2018.0,1969.0,PRIVATE,6,York Centre,601 FINCH AVE W,14,170,2019-01-30,62,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,N0624,43.770708386,-79.45171713,308671.446,4847640.0139999995
-892884,4156455,2017.0,2018.0,1969.0,TCHC,20,Scarborough Southwest,20 EPPLEWORTH RD,3,36,2019-01-30,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,2.0,3.0,4.0,,3.0,,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,,E2023,43.726760854,-79.263575088,323859.729,4842772.896000001
-892885,4156240,2017.0,2018.0,1969.0,TCHC,20,Scarborough Southwest,30 EPPLEWORTH RD,3,45,2019-01-30,58,Evaluation needs to be conducted in 1 year,16,2.0,3.0,3.0,2.0,2.0,4.0,,3.0,,,2.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,,E2023,43.727206753999994,-79.263241732,323854.783,4842776.82
-892886,4155554,2017.0,2018.0,1963.0,PRIVATE,3,Etobicoke-Lakeshore,45 FORTY SECOND ST,4,53,2019-01-30,84,Evaluation needs to be conducted in 2 years,17,5.0,5.0,5.0,5.0,5.0,4.0,,4.0,4.0,,5.0,5.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,W0334,43.5882763733,-79.5428127838,301327.297,4827371.595
-892887,4155555,2017.0,2018.0,1950.0,PRIVATE,3,Etobicoke-Lakeshore,55 FORTY SECOND ST,4,26,2019-01-30,66,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,4.0,3.0,3.0,,3.0,4.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0334,43.5886442481,-79.5434170167,301278.522,4827412.487
-892888,4154645,2017.0,2018.0,1960.0,PRIVATE,6,York Centre,521-523 FINCH AVE W,6,179,2019-01-30,73,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,3.0,4.0,4.0,5.0,3.0,4.0,3.0,3.0,3.0,4.0,,N0624,43.772961449899995,-79.444496063,309267.54,4847942.623
-892889,4153622,,2018.0,1921.0,PRIVATE,14,Toronto-Danforth,85 LAING ST,3,13,2019-01-30,73,Evaluation needs to be conducted in 2 years,14,3.0,4.0,4.0,4.0,3.0,4.0,,3.0,,,3.0,3.0,5.0,3.0,4.0,4.0,,4.0,,,S1442,43.663704356000004,-79.327142442,318731.892,4835790.185
-892890,4152741,2017.0,2018.0,1965.0,PRIVATE,24,Scarborough-Guildwood,960 MARKHAM RD,15,181,2019-01-30,59,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,3.0,3.0,2.0,3.0,3.0,,2.0,3.0,5.0,3.0,3.0,3.0,4.0,2.0,3.0,,E2425,43.771935488000004,-79.2306318513,326469.941,4847809.335
-892891,4152759,2017.0,2018.0,1972.0,PRIVATE,21,Scarborough Centre,1375 MIDLAND AVE,13,144,2019-01-30,76,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,3.0,4.0,5.0,3.0,3.0,3.0,4.0,5.0,3.0,,E2134,43.7499873653,-79.2636073728,323822.18,4845362.91
-892892,4154509,2017.0,2018.0,1956.0,PRIVATE,8,Eglinton-Lawrence,30 WASDALE CRES,3,10,2019-01-30,68,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,4.0,3.0,3.0,4.0,3.0,4.0,4.0,,N0823,43.7308801884,-79.4368395679,309872.74199999997,4843215.149
-892893,4154549,2018.0,2018.0,1950.0,PRIVATE,8,Eglinton-Lawrence,31 WASDALE CRES,3,11,2019-01-30,80,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,,4.0,4.0,4.0,5.0,5.0,3.0,3.0,4.0,4.0,4.0,,N0823,43.730876788,-79.4343345171,310074.549,4843214.935
-892894,4154510,,2018.0,1957.0,PRIVATE,8,Eglinton-Lawrence,32 WASDALE CRES,3,10,2019-01-30,72,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,4.0,4.0,3.0,,4.0,,3.0,3.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,N0823,43.730826184099996,-79.4370615952,309854.86,4843209.136
-892895,4154511,2017.0,2018.0,1965.0,PRIVATE,8,Eglinton-Lawrence,34 WASDALE CRES,3,11,2019-01-30,81,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,5.0,4.0,5.0,,4.0,,,5.0,3.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,,N0823,43.730776631400005,-79.4372931994,309836.206,4843203.617
-892896,4155581,2017.0,2018.0,1971.0,TCHC,24,Scarborough-Guildwood,90 MORNELLE CRT,13,198,2019-01-30,64,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,2.0,3.0,3.0,4.0,3.0,4.0,,4.0,3.0,4.0,3.0,3.0,3.0,4.0,2.0,3.0,3.0,E2423,43.787815708000004,-79.196116635,329241.848,4849584.106000001
-892897,4155580,2017.0,2018.0,1971.0,TCHC,24,Scarborough-Guildwood,110 MORNELLE CRT,15,145,2019-01-30,70,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,,4.0,3.0,4.0,2.0,3.0,4.0,3.0,3.0,5.0,,E2423,43.786495688,-79.194414059,329379.42,4849437.971
-892898,4155104,2017.0,2018.0,1956.0,PRIVATE,5,York South-Weston,96 TRETHEWEY DR,3,12,2019-01-30,93,Evaluation needs to be conducted in 3 years,15,5.0,5.0,4.0,5.0,5.0,4.0,,5.0,,,5.0,5.0,5.0,5.0,5.0,4.0,,4.0,4.0,,W0532,43.6934951479,-79.4820055643,306234.99,4839060.1
-892899,4155103,2017.0,2018.0,1950.0,PRIVATE,5,York South-Weston,98 TRETHEWEY DR,3,10,2019-01-30,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,2.0,3.0,3.0,3.0,,3.0,,3.0,4.0,3.0,5.0,2.0,3.0,4.0,,3.0,3.0,,W0532,43.6934431734,-79.4823929149,306203.767,4839054.32
-892900,4153630,2017.0,2018.0,1927.0,PRIVATE,14,Toronto-Danforth,245-247 LOGAN AVE,4,21,2019-01-29,73,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,,,4.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,,,S1441,,,317503.543,4835393.504
-892901,4154649,2017.0,2018.0,1961.0,PRIVATE,6,York Centre,4854 BATHURST ST,6,71,2019-01-29,69,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,5.0,3.0,3.0,4.0,3.0,4.0,3.0,,N0624,43.77111358770001,-79.442973232,309375.6,4847684.513
-892902,4154646,2017.0,2018.0,1968.0,PRIVATE,6,York Centre,4918 BATHURST ST,6,60,2019-01-28,68,Evaluation needs to be conducted in 2 years,19,3.0,3.0,3.0,4.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,,N0624,43.7728864941,-79.4432661421,309351.886,4847881.463
-892903,4154031,2017.0,2018.0,1940.0,PRIVATE,8,Eglinton-Lawrence,3474 YONGE ST,4,27,2019-01-28,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,5.0,2.0,3.0,3.0,,3.0,,,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,,N0825,43.7349962001,-79.40513064619999,312426.683,4843674.858
-892904,4152608,2017.0,2018.0,1950.0,PRIVATE,20,Scarborough Southwest,650 DAWES RD,3,17,2019-01-28,81,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,3.0,4.0,4.0,,5.0,,,3.0,3.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,,E2028,43.7075426167,-79.2947631998,321324.76,4840640.89
-892905,4156722,2017.0,2018.0,1968.0,PRIVATE,16,Don Valley East,20 GRAYDON HALL DR,20,305,2019-01-28,78,Evaluation needs to be conducted in 2 years,20,5.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,5.0,3.0,4.0,3.0,3.0,3.0,4.0,5.0,N1621,43.763477245,-79.345900416,317191.811,4846847.017
-892906,4152788,2017.0,2018.0,1953.0,PRIVATE,20,Scarborough Southwest,3111 EGLINTON AVE E,6,68,2019-01-28,69,Evaluation needs to be conducted in 2 years,18,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2027,43.741595220200004,-79.2240381371,327011.907,4844440.398
-892907,4153386,2017.0,2018.0,1982.0,TCHC,13,Toronto Centre,171 FRONT ST E,3,61,2019-01-28,73,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,3.0,3.0,4.0,4.0,4.0,3.0,4.0,3.0,,S1339,43.6499749234,-79.3684698144,315394.78,4834233.377
-892908,4152994,2017.0,2018.0,1959.0,PRIVATE,4,Parkdale-High Park,90 JAMESON AVE,7,61,2019-01-28,81,Evaluation needs to be conducted in 2 years,17,5.0,4.0,4.0,4.0,3.0,5.0,,4.0,3.0,,4.0,4.0,5.0,4.0,4.0,3.0,4.0,5.0,4.0,,S0437,43.6343822215,-79.4353464505,310001.272,4832494.781
-892909,4152979,2017.0,2018.0,1962.0,PRIVATE,4,Parkdale-High Park,79 JAMESON AVE,7,121,2019-01-28,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,,4.0,4.0,4.0,3.0,3.0,4.0,4.0,5.0,4.0,,S0437,43.6343864114,-79.4346789323,310055.132,4832495.286
-892910,4153687,2017.0,2018.0,1923.0,PRIVATE,19,Beaches-East York,2150 QUEEN ST E,4,16,2019-01-28,72,Evaluation needs to be conducted in 2 years,15,4.0,3.0,3.0,4.0,,4.0,,4.0,,,3.0,3.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,,S1939,43.671968236000005,-79.29178994,321573.963,4836690.259
-892911,4155942,2017.0,2018.0,1971.0,TCHC,22,Scarborough-Agincourt,2743 VICTORIA PARK AVE,15,201,2019-01-28,69,Evaluation needs to be conducted in 2 years,20,3.0,3.0,4.0,4.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,E2225,43.779266936999996,-79.323413406,318912.61199999996,4848579.722
-892912,4156390,2017.0,2018.0,1971.0,TCHC,22,Scarborough-Agincourt,2739 VICTORIA PARK AVE,15,203,2019-01-28,66,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,4.0,4.0,4.0,3.0,3.0,3.0,3.0,2.0,3.0,4.0,4.0,3.0,3.0,3.0,4.0,3.0,,E2225,43.778310557,-79.32353353399999,318941.968,4848494.812
-892913,4152828,2017.0,2018.0,1970.0,PRIVATE,24,Scarborough-Guildwood,40 TUXEDO CRT,16,216,2019-01-28,59,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,2.0,3.0,2.0,4.0,3.0,,2.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,E2422,43.7812686846,-79.2307597681,326456.284,4848846.156
-892914,4152826,2017.0,2018.0,1970.0,PRIVATE,24,Scarborough-Guildwood,20 TUXEDO CRT,15,210,2019-01-28,57,Evaluation needs to be conducted in 1 year,18,3.0,4.0,2.0,3.0,3.0,4.0,1.0,3.0,2.0,,1.0,3.0,2.0,3.0,3.0,3.0,4.0,4.0,3.0,,E2422,43.7801851032,-79.2301866878,326502.803,4848725.927
-892915,4154032,2017.0,2018.0,1940.0,PRIVATE,8,Eglinton-Lawrence,3464 YONGE ST,4,27,2019-01-28,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,5.0,2.0,3.0,3.0,,3.0,,,2.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,,N0825,43.734800638900005,-79.4050159529,312435.947,4843653.143999999
-892916,4408652,2018.0,2018.0,1927.0,PRIVATE,11,University-Rosedale,69 BALDWIN ST,3,17,2019-01-28,66,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,3.0,4.0,3.0,,4.0,,,3.0,3.0,5.0,2.0,3.0,3.0,3.0,2.0,3.0,,S1144,43.6554189056,-79.39535829,313224.942,4834835.0819999995
-892917,4155874,,2018.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,5 BIRCHLEA AVE,3,13,2019-01-28,65,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,5.0,4.0,4.0,3.0,2.0,,3.0,3.0,,W0334,43.592642046,-79.527957262,302531.131,4827854.897
-892918,4495076,,2018.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,7 BIRCHLEA AVE,3,13,2019-01-28,65,Evaluation needs to be conducted in 1 year,15,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,3.0,4.0,4.0,4.0,3.0,2.0,,3.0,3.0,,W0334,43.592625398,-79.528050439,302525.459,4827853.1110000005
-892919,4506245,,2018.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,9 BIRCHLEA AVE,3,13,2019-01-28,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,3.0,5.0,4.0,4.0,3.0,3.0,,3.0,3.0,,W0334,43.592594591,-79.52818256,302515.24100000004,4827853.339
-892920,4506270,,2018.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,11 BIRCHLEA AVE,3,13,2019-01-28,65,Evaluation needs to be conducted in 1 year,15,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,3.0,4.0,4.0,4.0,3.0,2.0,,3.0,3.0,,W0334,43.592573631,-79.528276577,302501.80199999997,4827845.661
-892921,4155585,2017.0,2018.0,1969.0,TCHC,22,Scarborough-Agincourt,2821 BIRCHMOUNT RD,12,237,2019-01-28,68,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,,4.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,E2227,43.7985740617,-79.30512678470001,320465.905,4850752.081
-892922,4155584,2017.0,2018.0,1970.0,TCHC,22,Scarborough-Agincourt,365 BAY MILLS BLVD,13,186,2019-01-28,69,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,E2226,43.7812403712,-79.3008424612,320815.234,4848827.17
-892923,4153595,2017.0,2018.0,1965.0,PRIVATE,13,Toronto Centre,666 ONTARIO ST,19,231,2019-01-28,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1323,43.669481117,-79.3732918084,315002.49199999997,4836399.811000001
-892924,4153594,2017.0,2018.0,1967.0,PRIVATE,13,Toronto Centre,700 ONTARIO ST,14,279,2019-01-28,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,3.0,,S1323,43.6701517144,-79.3735812893,314979.034,4836474.276000001
-892925,4153593,2017.0,2018.0,1967.0,PRIVATE,13,Toronto Centre,730 ONTARIO ST,14,279,2019-01-28,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,3.0,,S1323,43.6709382453,-79.3739456506,314949.518,4836561.613
-892926,4152740,2017.0,2018.0,1965.0,PRIVATE,24,Scarborough-Guildwood,555 BRIMORTON DR,15,180,2019-01-28,74,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,4.0,4.0,5.0,4.0,3.0,3.0,,4.0,4.0,5.0,3.0,3.0,3.0,,3.0,4.0,3.0,E2425,43.7728909718,-79.231398356,326407.892,4847915.281
-892927,4153412,2017.0,2018.0,1985.0,PRIVATE,11,University-Rosedale,123 D'ARCY ST,3,24,2019-01-28,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,,,3.0,4.0,5.0,3.0,3.0,4.0,,3.0,3.0,,S1144,43.6540278279,-79.3972570304,313071.98699999996,4834680.315
-892928,4153688,2020.0,2018.0,1927.0,PRIVATE,19,Beaches-East York,59 BALSAM AVE,3,19,2019-01-28,73,Evaluation needs to be conducted in 2 years,14,4.0,3.0,4.0,3.0,4.0,4.0,,4.0,,,3.0,4.0,4.0,3.0,4.0,4.0,,3.0,,,S1940,43.6724728988,-79.2898813658,321727.989,4836745.748
-892929,4152775,2017.0,2018.0,1961.0,PRIVATE,20,Scarborough Southwest,1 BRIMLEY RD,6,58,2019-01-25,74,Evaluation needs to be conducted in 2 years,17,4.0,4.0,3.0,4.0,4.0,4.0,,4.0,4.0,,4.0,4.0,4.0,3.0,3.0,3.0,4.0,4.0,3.0,,E2026,43.719470638900006,-79.24043204510001,325699.11,4841978.266
-892930,4154027,2017.0,2018.0,1957.0,PRIVATE,8,Eglinton-Lawrence,3112 YONGE ST,4,41,2019-01-25,75,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,3.0,4.0,4.0,,3.0,4.0,,4.0,4.0,4.0,5.0,3.0,4.0,,4.0,3.0,,N0825,43.726397678599994,-79.4031116718,312590.434,4842719.816000001
-892931,4154028,2017.0,2018.0,1957.0,PRIVATE,8,Eglinton-Lawrence,3110 YONGE ST,4,41,2019-01-25,79,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,4.0,4.0,4.0,,5.0,4.0,,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,3.0,,N0825,43.726185855,-79.402998395,312599.587,4842696.294
-892932,4152782,2017.0,2018.0,1965.0,PRIVATE,20,Scarborough Southwest,3750 ST CLAIR AVE E,7,55,2019-01-25,66,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,2.0,3.0,4.0,4.0,2.0,4.0,,4.0,4.0,3.0,2.0,4.0,4.0,,3.0,3.0,,E2032,43.721220413800005,-79.242301179,325547.906,4842172.186000001
-892933,4153586,2017.0,2018.0,1880.0,PRIVATE,13,Toronto Centre,510 ONTARIO ST,3,13,2019-01-25,68,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,,,3.0,2.0,3.0,2.0,4.0,4.0,,3.0,3.0,,S1323,43.665168638400004,-79.37142343890001,315153.909,4835920.951
-892934,4155764,2019.0,2018.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,1 A BIRCHLEA AVE,3,21,2019-01-25,55,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,2.0,2.0,2.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,2.0,,3.0,3.0,,W0334,43.592762174499995,-79.527405433,302571.59,4827869.423
-892935,4255528,2017.0,2018.0,1950.0,PRIVATE,3,Etobicoke-Lakeshore,3 BIRCHLEA AVE,3,10,2019-01-25,59,Evaluation needs to be conducted in 1 year,14,3.0,3.0,2.0,2.0,,3.0,,3.0,,,2.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0334,43.592678404,-79.527798887,302539.32399999996,4827860.268
-892936,4153599,2017.0,2018.0,1964.0,PRIVATE,13,Toronto Centre,99 HOWARD ST,15,239,2019-01-25,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1323,43.671082603,-79.371532819,315143.797,4836578.915
-892937,4154651,2017.0,2018.0,1962.0,PRIVATE,6,York Centre,4 MASCOT PL,4,70,2019-01-25,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,3.0,4.0,4.0,,4.0,4.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,3.0,,N0624,43.7703715796,-79.4436799328,309318.76300000004,4847602.04
-892938,4152954,2017.0,2018.0,1964.0,PRIVATE,4,Parkdale-High Park,200 DUFFERIN ST,14,251,2019-01-25,78,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,5.0,4.0,3.0,4.0,4.0,3.0,3.0,5.0,S0437,43.63715205689999,-79.42709144300001,310667.098,4832802.995
-892939,4154803,2017.0,2018.0,1965.0,PRIVATE,16,Don Valley East,135 FENELON DR,19,218,2019-01-25,74,Evaluation needs to be conducted in 2 years,20,3.0,4.0,5.0,2.0,4.0,3.0,3.0,4.0,5.0,3.0,3.0,4.0,4.0,3.0,4.0,4.0,5.0,3.0,4.0,4.0,N1621,43.7628388267,-79.337948675,317832.429,4846776.338
-892940,4154650,2017.0,2018.0,1960.0,SOCIAL HOUSING,6,York Centre,2 MASCOT PL,7,71,2019-01-25,69,Evaluation needs to be conducted in 2 years,20,4.0,3.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,5.0,3.0,3.0,4.0,3.0,3.0,4.0,4.0,N0624,43.77062612100001,-79.4430060105,309372.998,4847630.355
-892941,4155545,2017.0,2018.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,1 BIRCHLEA AVE,3,10,2019-01-25,59,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,2.0,3.0,3.0,,3.0,,,2.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0334,43.592713802700004,-79.5276951676,302548.19399999996,4827864.057
-892942,4152857,2017.0,2018.0,1971.0,PRIVATE,22,Scarborough-Agincourt,2360 BIRCHMOUNT RD,13,186,2019-01-24,86,Evaluation needs to be conducted in 3 years,19,5.0,4.0,5.0,4.0,4.0,5.0,4.0,5.0,5.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,,E2226,43.78293932729999,-79.2995706265,320917.149,4849016.171
-892943,4155049,2017.0,2018.0,1960.0,PRIVATE,8,Eglinton-Lawrence,822 ROSELAWN AVE,9,56,2019-01-24,76,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,3.0,3.0,,3.0,4.0,,4.0,5.0,5.0,4.0,3.0,4.0,3.0,4.0,4.0,,N0831,43.702841898100004,-79.43937545909999,309670.69800000003,4840100.068
-892944,4155048,2017.0,2018.0,1960.0,PRIVATE,8,Eglinton-Lawrence,835 ROSELAWN AVE,7,39,2019-01-24,76,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,3.0,5.0,,3.0,3.0,,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,,N0831,43.7023772418,-79.439257763,309680.221,4840048.4569999995
-892945,4155050,2017.0,2018.0,1965.0,PRIVATE,8,Eglinton-Lawrence,836 ROSELAWN AVE,3,26,2019-01-24,71,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,3.0,4.0,3.0,,4.0,,,4.0,2.0,4.0,3.0,3.0,4.0,4.0,4.0,3.0,,N0831,43.702756083000004,-79.4397938426,309636.983,4840090.505
-892946,4155047,2017.0,2018.0,1959.0,PRIVATE,8,Eglinton-Lawrence,837 ROSELAWN AVE,7,39,2019-01-24,81,Evaluation needs to be conducted in 2 years,17,5.0,4.0,5.0,3.0,4.0,4.0,,3.0,4.0,,4.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,5.0,,N0831,43.7022933387,-79.4396596089,309647.839,4840039.109
-892947,4155046,2017.0,2018.0,1955.0,PRIVATE,8,Eglinton-Lawrence,839 ROSELAWN AVE,7,36,2019-01-24,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,4.0,5.0,,3.0,4.0,4.0,4.0,4.0,5.0,3.0,3.0,4.0,5.0,4.0,5.0,,N0831,43.7022080434,-79.4400323266,309617.805,4840029.609
-892948,4155058,2017.0,2018.0,1960.0,PRIVATE,8,Eglinton-Lawrence,1090 ROSELAWN AVE,5,62,2019-01-24,78,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,4.0,3.0,4.0,3.0,3.0,3.0,,4.0,4.0,5.0,4.0,3.0,4.0,5.0,4.0,3.0,,N0831,43.7009028087,-79.449149194,308883.057,4839884.115
-892949,4153623,2017.0,2018.0,1988.0,SOCIAL HOUSING,14,Toronto-Danforth,1187-1189 QUEEN ST E,4,34,2019-01-24,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,,4.0,5.0,4.0,5.0,4.0,4.0,3.0,4.0,3.0,,S1441,,,318356.222,4835654.831
-892950,4152693,2017.0,2018.0,1969.0,PRIVATE,21,Scarborough Centre,15 ROSEMOUNT DR,7,72,2019-01-24,65,Evaluation needs to be conducted in 1 year,19,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,4.0,3.0,,E2133,43.7322696922,-79.2741030573,322982.267,4843392.233
-892951,4153603,2018.0,2018.0,1948.0,PRIVATE,13,Toronto Centre,451 BLOOR ST E,6,41,2019-01-24,80,Evaluation needs to be conducted in 2 years,17,4.0,4.0,3.0,4.0,4.0,4.0,,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S1323,43.671964763999995,-79.374579123,314898.0,4836676.533
-892952,4462209,2019.0,2018.0,1953.0,SOCIAL HOUSING,20,Scarborough Southwest,3738 ST CLAIR AVE E,4,22,2019-01-24,96,Evaluation needs to be conducted in 3 years,18,5.0,5.0,4.0,5.0,4.0,5.0,,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,,5.0,5.0,5.0,E2032,43.720791877799996,-79.2435210688,325449.765,4842124.271000001
-892953,4154725,2017.0,2018.0,1970.0,PRIVATE,18,Willowdale,755 STEELES AVE W,15,194,2019-01-24,82,Evaluation needs to be conducted in 2 years,18,3.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,5.0,,N1821,43.79282799600001,-79.44165411899999,309479.81899999996,4850097.949
-892954,4155778,2017.0,2018.0,1966.0,PRIVATE,18,Willowdale,775 STEELES AVE W,16,194,2019-01-24,64,Evaluation needs to be conducted in 1 year,20,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,2.0,4.0,N1821,43.791794206000006,-79.443484145,309332.622,4849982.993
-892955,4155570,2017.0,2018.0,1970.0,TCHC,24,Scarborough-Guildwood,55 GREENBRAE CRCT,13,128,2019-01-24,68,Evaluation needs to be conducted in 2 years,19,3.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,4.0,,4.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,3.0,3.0,E2425,43.759551821,-79.230166356,326511.584,4846434.635
-892956,4155571,2017.0,2018.0,1970.0,TCHC,24,Scarborough-Guildwood,65 GREENBRAE CRCT,13,128,2019-01-24,65,Evaluation needs to be conducted in 1 year,19,3.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,E2425,43.760034356999995,-79.229764837,326550.38399999996,4846462.077
-892957,4154271,2017.0,2018.0,1967.0,PRIVATE,7,Humber River-Black Creek,4500 JANE ST,14,163,2019-01-24,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,5.0,3.0,3.0,4.0,4.0,,5.0,4.0,5.0,4.0,3.0,4.0,3.0,3.0,4.0,,W0724,43.7664686055,-79.5204750811,303136.099,4847167.134
-892958,4156494,2017.0,2018.0,1974.0,PRIVATE,7,Humber River-Black Creek,4750 JANE ST,15,131,2019-01-24,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,3.0,4.0,5.0,4.0,,3.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,,W0724,43.770560291,-79.521405658,303087.391,4847612.653
-892959,4152577,2017.0,2018.0,1959.0,PRIVATE,20,Scarborough Southwest,25 PARKETTE PL,5,61,2019-01-24,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,3.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,4.0,,E2034,43.696074465600006,-79.2646078047,323758.577,4839373.228
-892960,4152708,2017.0,2018.0,1954.0,PRIVATE,21,Scarborough Centre,831 KENNEDY RD,6,50,2019-01-24,69,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,,E2133,43.7359936436,-79.2687949142,323408.724,4843807.13
-892961,4152871,2018.0,2018.0,1969.0,PRIVATE,22,Scarborough-Agincourt,3747 SHEPPARD AVE E,4,37,2019-01-24,70,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,3.0,3.0,4.0,4.0,4.0,2.0,,3.0,3.0,5.0,4.0,3.0,5.0,2.0,5.0,2.0,,E2232,43.781268966099994,-79.2952353294,321266.557,4848831.45
-892962,4152723,2017.0,2018.0,1984.0,PRIVATE,21,Scarborough Centre,3 GLAMORGAN AVE,10,139,2019-01-24,75,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,3.0,,E2123,43.768435059,-79.28262322399999,322289.892,4847418.925
-892963,4152724,2017.0,2018.0,1974.0,PRIVATE,21,Scarborough Centre,5 GLAMORGAN AVE,10,140,2019-01-24,72,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,4.0,4.0,5.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,E2123,43.7684659782,-79.28364485520001,322203.161,4847411.454
-892964,4156419,2017.0,2018.0,1974.0,PRIVATE,7,Humber River-Black Creek,215 GOSFORD BLVD,8,154,2019-01-24,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,3.0,4.0,5.0,4.0,,3.0,5.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,,W0724,43.76926344100001,-79.52281062600001,302932.277,4847469.866
-892965,4156492,2017.0,2018.0,1974.0,PRIVATE,7,Humber River-Black Creek,235 GOSFORD BLVD,15,131,2019-01-24,74,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,5.0,3.0,4.0,4.0,4.0,,3.0,5.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,,W0724,43.770115213000004,-79.522300555,302992.5,4847674.032
-892966,4155229,2017.0,2018.0,1956.0,PRIVATE,3,Etobicoke-Lakeshore,5 KINSDALE BLVD,4,22,2019-01-24,61,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,2.0,,4.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,2.0,,W0329,43.635353724,-79.49124561,305490.661,4832600.828
-892967,4286044,2017.0,2018.0,1969.0,TCHC,19,Beaches-East York,444 EAST LUMSDEN,25,183,2019-01-24,62,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,3.0,2.0,4.0,3.0,3.0,3.0,,3.0,2.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,S1930,43.695391787,-79.303315109,320711.637,4839312.69
-892968,4156316,2017.0,2018.0,1969.0,TCHC,19,Beaches-East York,444 LUMSDEN AVE,42,183,2019-01-24,62,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,S1930,43.695629657,-79.302310982,320791.011,4839337.097
-892969,4153625,2017.0,2018.0,1996.0,SOCIAL HOUSING,14,Toronto-Danforth,54 MARIGOLD AVE,4,29,2019-01-24,88,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,4.0,5.0,3.0,4.0,4.0,5.0,S1441,43.661996165699996,-79.33107610180001,318408.525,4835574.305
-892970,4152758,2017.0,2018.0,1965.0,PRIVATE,21,Scarborough Centre,1155 MIDLAND AVE,5,115,2019-01-24,74,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,3.0,4.0,3.0,4.0,4.0,,3.0,4.0,5.0,2.0,3.0,3.0,3.0,3.0,4.0,5.0,E2134,43.7457790355,-79.2618378505,323966.01300000004,4844895.79
-892971,4153582,2017.0,2018.0,1991.0,SOCIAL HOUSING,13,Toronto Centre,280 GERRARD ST E,3,26,2019-01-24,73,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,3.0,3.0,4.0,,4.0,,,3.0,3.0,4.0,4.0,4.0,3.0,,4.0,,4.0,S1323,43.662450948,-79.368026345,315428.099,4835620.421
-892972,4152852,2017.0,2018.0,1972.0,PRIVATE,22,Scarborough-Agincourt,2727 VICTORIA PARK AVE,13,178,2019-01-24,82,Evaluation needs to be conducted in 2 years,20,5.0,5.0,5.0,4.0,4.0,4.0,5.0,3.0,5.0,3.0,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,5.0,E2225,43.7774582202,-79.323301522,319008.345,4848402.903
-892973,4154721,2017.0,2018.0,1960.0,PRIVATE,18,Willowdale,6161 BATHURST ST,13,170,2019-01-23,77,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,N1821,43.78886620310001,-79.44634919890001,309102.531,4849656.589
-892974,4154668,2017.0,2018.0,1960.0,PRIVATE,8,Eglinton-Lawrence,205 WILSON AVE,3,20,2019-01-23,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,3.0,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,N0824,43.738889013599994,-79.4250339237,310822.99600000004,4844105.651000001
-892975,4154722,2017.0,2018.0,1960.0,PRIVATE,18,Willowdale,6171 BATHURST ST,13,170,2019-01-23,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,,N1821,43.7898670361,-79.4451703972,309197.325,4849767.841
-892976,4155119,2017.0,2018.0,1960.0,PRIVATE,5,York South-Weston,40 TRETHEWEY DR,3,45,2019-01-23,71,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,2.0,2.0,4.0,,4.0,,,4.0,2.0,5.0,3.0,4.0,5.0,,4.0,4.0,,W0532,43.6926109398,-79.4780640156,306552.743,4838961.923
-892977,4156664,2017.0,2018.0,1972.0,TCHC,24,Scarborough-Guildwood,4301 KINGSTON RD,20,419,2019-01-23,65,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,3.0,3.0,3.0,2.0,4.0,3.0,,2.0,4.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,4.0,E2432,43.7627363291,-79.1928326244,329516.674,4846797.833000001
-892978,4154676,2018.0,2018.0,1940.0,PRIVATE,8,Eglinton-Lawrence,284 LAWRENCE AVE W,3,15,2019-01-23,71,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,3.0,,3.0,,3.0,,,3.0,3.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,N0824,43.722781903999994,-79.4147683838,311651.724,4842317.086
-892979,4153631,2017.0,2018.0,1989.0,SOCIAL HOUSING,14,Toronto-Danforth,502 EASTERN AVE,5,19,2019-01-23,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,,,4.0,3.0,5.0,4.0,3.0,4.0,3.0,4.0,4.0,5.0,S1441,43.6582172963,-79.3407960329,317625.416,4835152.942
-892980,4228923,2017.0,2018.0,1957.0,PRIVATE,8,Eglinton-Lawrence,200 RIDLEY BLVD,4,90,2019-01-23,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,5.0,4.0,4.0,5.0,5.0,3.0,3.0,3.0,4.0,4.0,4.0,,N0824,43.7382356013,-79.41970552779999,311252.265,4844033.447
-892981,4153004,2017.0,2018.0,1900.0,PRIVATE,4,Parkdale-High Park,1621 QUEEN ST W,6,74,2019-01-23,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,3.0,,3.0,3.0,4.0,2.0,3.0,3.0,,3.0,3.0,,S0436,43.6387782668,-79.44488373739999,309231.4,4832982.61
-892982,4152713,2017.0,2018.0,1960.0,PRIVATE,21,Scarborough Centre,879 KENNEDY RD,4,29,2019-01-23,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,3.0,,4.0,5.0,3.0,4.0,4.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,,E2133,43.73995556,-79.270578917,323263.544,4844247.841
-892983,4155115,,2018.0,1956.0,PRIVATE,5,York South-Weston,9 GREENTREE CRT,3,28,2019-01-23,53,Evaluation needs to be conducted in 1 year,15,2.0,2.0,2.0,2.0,2.0,4.0,,2.0,,,2.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,W0532,43.692147125299996,-79.4794625352,306440.017,4838910.374
-892984,4155116,2017.0,2018.0,1953.0,PRIVATE,5,York South-Weston,7 GREENTREE CRT,3,28,2019-01-23,88,Evaluation needs to be conducted in 3 years,15,5.0,5.0,5.0,4.0,4.0,4.0,,4.0,,4.0,5.0,4.0,5.0,4.0,4.0,5.0,,4.0,,,W0532,43.6921996331,-79.47923360909999,306458.47,4838916.21
-892985,4155117,2017.0,2018.0,1970.0,PRIVATE,5,York South-Weston,5 GREENTREE CRT,3,17,2019-01-23,60,Evaluation needs to be conducted in 1 year,15,2.0,2.0,3.0,2.0,2.0,3.0,,4.0,,,3.0,2.0,5.0,3.0,3.0,4.0,,3.0,4.0,,W0532,43.692263947200004,-79.4789792359,306478.974,4838923.358
-892986,4155095,2017.0,2018.0,1955.0,PRIVATE,5,York South-Weston,4 GREENTREE CRT,4,43,2019-01-23,80,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,3.0,3.0,4.0,,4.0,,4.0,5.0,5.0,5.0,3.0,4.0,4.0,,4.0,3.0,,W0532,43.6926919823,-79.4790165335,306475.957,4838970.911
-892987,4155118,2017.0,2018.0,1960.0,PRIVATE,5,York South-Weston,3 GREENTREE CRT,3,45,2019-01-23,76,Evaluation needs to be conducted in 2 years,15,3.0,2.0,5.0,4.0,4.0,4.0,,3.0,,,5.0,3.0,5.0,3.0,4.0,4.0,,4.0,4.0,,W0532,43.6924423305,-79.478539855,306514.38899999997,4838943.183
-892988,4155094,2017.0,2018.0,1950.0,PRIVATE,5,York South-Weston,2 GREENTREE CRT,3,29,2019-01-23,83,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,,4.0,5.0,5.0,5.0,3.0,4.0,4.0,,4.0,4.0,,W0532,43.6929246755,-79.4786023031,306509.343,4838996.768999999
-892989,4154667,2017.0,2018.0,1960.0,PRIVATE,8,Eglinton-Lawrence,211 WILSON AVE,3,26,2019-01-23,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,3.0,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,N0824,43.7387605679,-79.4255772221,310779.249,4844091.347
-892990,4153001,2017.0,2018.0,1900.0,PRIVATE,4,Parkdale-High Park,120 DOWLING AVE,3,17,2019-01-23,67,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,,,S0437,43.63647140770001,-79.4388819579,309715.834,4832726.665
-892991,4154656,2017.0,2018.0,1951.0,PRIVATE,8,Eglinton-Lawrence,312 DOUGLAS AVE,3,11,2019-01-23,63,Evaluation needs to be conducted in 1 year,15,2.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,N0824,43.7238625563,-79.4167257384,311493.898,4842436.978
-892992,4153439,2017.0,2018.0,1974.0,PRIVATE,13,Toronto Centre,266 SHERBOURNE ST,13,121,2019-01-23,81,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,,,S1328,43.659296803800004,-79.3718238702,315122.618,4835268.563999999
-892993,4153552,2017.0,2018.0,1988.0,SOCIAL HOUSING,14,Toronto-Danforth,841 QUEEN ST E,3,36,2019-01-23,53,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,2.0,3.0,2.0,3.0,2.0,,2.0,3.0,1.0,3.0,3.0,3.0,,3.0,3.0,3.0,S1440,43.660037777700005,-79.34386069039999,317377.858,4835354.725
-892994,4479218,2018.0,2018.0,1951.0,PRIVATE,13,Toronto Centre,45 PEMBROKE ST,3,12,2019-01-23,71,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,3.0,3.0,4.0,,4.0,,,3.0,2.0,4.0,3.0,4.0,4.0,,4.0,4.0,,S1332,43.6576935815,-79.3718742304,315118.827,4835090.437
-892995,4154026,2017.0,2018.0,1960.0,PRIVATE,8,Eglinton-Lawrence,15 BEDFORD PARK AVE,3,39,2019-01-23,76,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,4.0,3.0,,4.0,,4.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,,N0825,43.7269710792,-79.4040459316,312515.092,4842783.43
-892996,4154376,2017.0,2018.0,1953.0,PRIVATE,6,York Centre,939-941 WILSON AVE,3,16,2019-01-22,72,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,3.0,5.0,3.0,,5.0,,,3.0,3.0,5.0,3.0,4.0,3.0,,3.0,3.0,,N0632,43.72933702,-79.471517906,307073.58,4843029.948
-892997,4154664,2017.0,2018.0,1960.0,PRIVATE,8,Eglinton-Lawrence,3635 BATHURST ST,4,19,2019-01-22,67,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,N0824,43.733389944399995,-79.43271479319999,310204.804,4843494.231000001
-892998,4154634,2017.0,2018.0,1972.0,PRIVATE,6,York Centre,1875 STEELES AVE W,4,120,2019-01-22,72,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,3.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,4.0,N0622,43.787093865,-79.467715903,307382.726,4849459.76
-892999,4155250,2017.0,2018.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,143 STEPHEN DR,5,31,2019-01-22,78,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,3.0,,4.0,,3.0,5.0,5.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,,W0327,43.638681755200004,-79.4872228094,305815.067,4832975.459
-893000,4155752,2017.0,2018.0,1950.0,PRIVATE,3,Etobicoke-Lakeshore,1 SUPERIOR AVE,4,23,2019-01-22,69,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,3.0,3.0,4.0,,3.0,3.0,,3.0,3.0,5.0,4.0,3.0,4.0,3.0,4.0,3.0,,W0336,43.6148862856,-79.48695961109999,305836.877,4830327.051
-893001,4155749,2017.0,2018.0,1950.0,PRIVATE,3,Etobicoke-Lakeshore,3 SUPERIOR AVE,7,62,2019-01-22,77,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,3.0,4.0,4.0,4.0,5.0,4.0,3.0,4.0,3.0,4.0,3.0,,W0336,43.6150903921,-79.4868989887,305841.767,4830349.727
-893002,4155962,2017.0,2018.0,1969.0,PRIVATE,6,York Centre,1085 STEELES AVE W,15,100,2019-01-22,70,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,2.0,,N0622,43.791214032,-79.44875271800001,308924.363,4849959.367
-893003,4155244,2017.0,2018.0,1953.0,PRIVATE,3,Etobicoke-Lakeshore,179 BERRY RD,4,23,2019-01-22,67,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,4.0,3.0,3.0,,4.0,,3.0,4.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0329,43.6366442394,-79.4899445536,305595.659,4832744.208000001
-893004,4155805,2017.0,2018.0,1950.0,PRIVATE,20,Scarborough Southwest,1633 KINGSTON RD,3,10,2019-01-22,71,Evaluation needs to be conducted in 2 years,16,4.0,4.0,2.0,2.0,3.0,3.0,,4.0,,4.0,2.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,E2034,43.690864521,-79.265477585,323718.011,4838812.556
-893005,4155806,2017.0,2018.0,1950.0,PRIVATE,20,Scarborough Southwest,1641 KINGSTON RD,3,11,2019-01-22,65,Evaluation needs to be conducted in 1 year,16,3.0,4.0,2.0,2.0,2.0,3.0,,4.0,,3.0,2.0,4.0,4.0,3.0,4.0,4.0,,4.0,4.0,,E2034,43.690864521,-79.265477585,323718.011,4838812.556
-893006,4153441,2017.0,2018.0,1809.0,PRIVATE,13,Toronto Centre,260 SHERBOURNE ST,4,10,2019-01-22,65,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,4.0,3.0,3.0,4.0,,S1328,43.659098979899994,-79.3715644023,315143.57899999997,4835246.618
-893007,4153440,2017.0,2018.0,1838.0,PRIVATE,13,Toronto Centre,262 SHERBOURNE ST,3,10,2019-01-22,67,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,3.0,,3.0,,3.0,,,3.0,3.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,,S1328,43.6591658607,-79.3715926671,315141.288,4835254.045
-893008,4268878,2017.0,2018.0,1980.0,TCHC,21,Scarborough Centre,85 GILDER DR,6,22,2019-01-22,67,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,4.0,3.0,3.0,4.0,3.0,4.0,3.0,,E2134,43.736266700200005,-79.25386808100001,324611.016,4843840.908
-893009,4153006,2017.0,2018.0,1970.0,PRIVATE,4,Parkdale-High Park,70 WILSON PARK RD,3,25,2019-01-22,69,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,4.0,3.0,4.0,,4.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,3.0,,S0436,43.638628857,-79.4424836843,309425.058,4832966.142
-893010,4154661,2017.0,2018.0,1970.0,PRIVATE,8,Eglinton-Lawrence,595 BROOKDALE AVE,7,47,2019-01-22,74,Evaluation needs to be conducted in 2 years,19,3.0,3.0,5.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,N0824,43.7242678241,-79.42950883510001,310463.939,4842481.031
-893011,4153003,2017.0,2018.0,1922.0,PRIVATE,4,Parkdale-High Park,1623 QUEEN ST W,4,42,2019-01-22,73,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,3.0,3.0,,4.0,,3.0,4.0,3.0,4.0,4.0,4.0,3.0,,4.0,,,S0436,43.638781441400006,-79.4452145314,309204.71,4832982.945
-893012,4154378,2017.0,2018.0,1960.0,PRIVATE,6,York Centre,923-925 WILSON AVE,3,23,2019-01-22,72,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,3.0,5.0,3.0,,5.0,,,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N0632,43.729832928,-79.468851985,307285.663,4843110.586
-893013,4153645,2017.0,2018.0,1994.0,SOCIAL HOUSING,14,Toronto-Danforth,1320 GERRARD ST E,5,45,2019-01-22,93,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,,5.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,,S1437,43.671590245699996,-79.3263209715,318789.80600000004,4836640.948
-893014,4155979,2017.0,2018.0,1970.0,TCHC,21,Scarborough Centre,47 GILDER DR,6,66,2019-01-22,66,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,2.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,4.0,4.0,3.0,3.0,3.0,4.0,3.0,,E2134,43.736354755600004,-79.2553148807,324494.439,4843850.346
-893015,4156268,2017.0,2018.0,1970.0,TCHC,21,Scarborough Centre,49 GILDER DR,6,22,2019-01-22,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,2.0,3.0,4.0,3.0,3.0,3.0,,2.0,3.0,4.0,4.0,3.0,3.0,3.0,4.0,3.0,,E2134,43.7365696854,-79.255181683,324505.1,4843874.254
-893016,4286276,2017.0,2018.0,1980.0,TCHC,21,Scarborough Centre,51 GILDER DR,6,22,2019-01-22,66,Evaluation needs to be conducted in 2 years,17,3.0,4.0,4.0,2.0,2.0,4.0,3.0,4.0,3.0,,2.0,3.0,4.0,4.0,3.0,4.0,3.0,4.0,,,E2134,43.7366529492,-79.2546800304,324545.484,4843883.623
-893017,4152707,2017.0,2018.0,1961.0,PRIVATE,21,Scarborough Centre,821 KENNEDY RD,6,59,2019-01-22,68,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,3.0,2.0,,3.0,5.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,4.0,3.0,,E2133,43.735133526599995,-79.26857423850001,323426.766,4843711.623
-893018,4268876,2017.0,2018.0,1980.0,TCHC,21,Scarborough Centre,81 GILDER DR,6,22,2019-01-22,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,4.0,3.0,3.0,2.0,3.0,4.0,3.0,,E2134,43.7364538465,-79.2539355905,324605.517,4843861.682
-893019,4155804,2017.0,2018.0,1950.0,PRIVATE,20,Scarborough Southwest,1625 KINGSTON RD,3,11,2019-01-22,70,Evaluation needs to be conducted in 2 years,16,4.0,4.0,2.0,3.0,2.0,3.0,,4.0,,3.0,2.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,E2034,43.690864521,-79.265477585,323718.011,4838812.556
-893020,4154377,2017.0,2018.0,1960.0,PRIVATE,6,York Centre,933-937 WILSON AVE,3,36,2019-01-22,72,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,3.0,5.0,3.0,,5.0,,,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N0632,43.729552423,-79.47055872199999,307126.804,4843063.258
-893021,4156530,2017.0,2018.0,1960.0,PRIVATE,6,York Centre,927-931 WILSON AVE,3,36,2019-01-22,72,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,3.0,5.0,3.0,,5.0,,,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N0632,43.729758711,-79.469616321,307204.644,4843087.433
-893022,4155538,2017.0,2018.0,1970.0,PRIVATE,3,Etobicoke-Lakeshore,105 TWENTY FIFTH ST,3,29,2019-01-22,69,Evaluation needs to be conducted in 2 years,14,3.0,3.0,4.0,3.0,,3.0,,4.0,,,3.0,4.0,5.0,3.0,3.0,3.0,,4.0,3.0,,W0334,43.5964677735,-79.5233498233,302899.17,4828280.973
-893023,4153553,2017.0,2018.0,1987.0,SOCIAL HOUSING,14,Toronto-Danforth,58 LEWIS ST,4,15,2019-01-22,79,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,3.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,,,S1440,43.657882233,-79.348395465,317012.287,4835115.549
-893024,4153005,2017.0,2018.0,1900.0,PRIVATE,4,Parkdale-High Park,1609 QUEEN ST W,3,41,2019-01-21,60,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,,,2.0,4.0,5.0,2.0,3.0,3.0,,3.0,3.0,,S0436,43.638738833299996,-79.4444453098,309266.777,4832978.2530000005
-893025,4153009,2017.0,2018.0,1912.0,PRIVATE,4,Parkdale-High Park,1501 QUEEN ST W,3,38,2019-01-21,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,4.0,4.0,,4.0,,,3.0,4.0,5.0,2.0,3.0,2.0,3.0,4.0,,,S0436,43.639616026700004,-79.4409064892,309552.238,4833075.896000001
-893026,4152704,2017.0,2018.0,1969.0,PRIVATE,21,Scarborough Centre,807 KENNEDY RD,5,34,2019-01-21,73,Evaluation needs to be conducted in 2 years,17,5.0,4.0,4.0,4.0,2.0,3.0,,4.0,3.0,,4.0,3.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,,E2133,43.7337142939,-79.267968421,323476.02,4843554.095
-893027,4152698,2017.0,2018.0,1960.0,PRIVATE,21,Scarborough Centre,806 KENNEDY RD,5,57,2019-01-21,71,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,4.0,3.0,3.0,3.0,4.0,3.0,1.0,3.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2133,43.7335331794,-79.2693313625,323366.283,4843533.666999999
-893028,4154629,2017.0,2018.0,1970.0,PRIVATE,6,York Centre,25 FISHERVILLE RD,18,221,2019-01-21,76,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,4.0,4.0,5.0,4.0,5.0,4.0,5.0,N0622,43.788874739499995,-79.4489791313,308890.874,4849657.401000001
-893029,4153442,2019.0,2018.0,1955.0,PRIVATE,13,Toronto Centre,256 SHERBOURNE ST,4,23,2019-01-21,67,Evaluation needs to be conducted in 2 years,15,2.0,3.0,3.0,3.0,3.0,4.0,,3.0,,,4.0,4.0,4.0,3.0,4.0,4.0,,3.0,3.0,,S1328,43.65892538560001,-79.3715946717,315141.167,4835227.328
-893030,4153445,2017.0,2018.0,1973.0,PRIVATE,13,Toronto Centre,100 PEMBROKE ST,11,102,2019-01-21,71,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,3.0,4.0,2.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,,3.0,2.0,,S1328,43.659658055200005,-79.3733983555,314995.566,4835308.5030000005
-893031,4155055,2017.0,2018.0,1959.0,PRIVATE,8,Eglinton-Lawrence,1040 CASTLEFIELD AVE,4,44,2019-01-21,74,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,3.0,4.0,,3.0,,2.0,4.0,3.0,5.0,4.0,3.0,4.0,,4.0,3.0,,N0831,43.7010486833,-79.4499999014,308814.479,4839900.279
-893032,4155056,2017.0,2018.0,1959.0,PRIVATE,8,Eglinton-Lawrence,1050 CASTLEFIELD AVE,5,64,2019-01-21,72,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,4.0,3.0,,3.0,3.0,3.0,4.0,3.0,5.0,4.0,3.0,4.0,3.0,4.0,3.0,,N0831,43.7010927419,-79.4506862658,308759.154,4839905.141
-893033,4154630,2017.0,2018.0,1970.0,PRIVATE,6,York Centre,5 FISHERVILLE RD,17,202,2019-01-21,80,Evaluation needs to be conducted in 2 years,20,4.0,4.0,3.0,5.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,3.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,N0622,43.7893811504,-79.4481218058,308959.834,4849713.7069999995
-893034,4154662,2017.0,2018.0,1965.0,PRIVATE,8,Eglinton-Lawrence,3311 BATHURST ST,9,102,2019-01-18,71,Evaluation needs to be conducted in 2 years,19,3.0,3.0,5.0,3.0,4.0,3.0,3.0,4.0,5.0,3.0,3.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,N0824,43.7246901673,-79.43042978310001,310389.702,4842527.8889999995
-893035,4154365,2017.0,2018.0,1955.0,PRIVATE,6,York Centre,831 WILSON AVE,3,11,2019-01-18,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,2.0,3.0,,4.0,,,3.0,2.0,3.0,4.0,3.0,3.0,,3.0,3.0,,N0632,43.731246207,-79.4630449202,307761.609,4843254.517
-893036,4155567,2017.0,2018.0,1972.0,TCHC,21,Scarborough Centre,1021 BIRCHMOUNT RD,11,236,2019-01-18,62,Evaluation needs to be conducted in 1 year,19,3.0,3.0,2.0,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,E2133,43.73164966,-79.27790394600001,322675.98699999996,4843323.473999999
-893037,4156164,2017.0,2018.0,1952.0,PRIVATE,2,Etobicoke Centre,4 BEXHILL CRT,4,13,2019-01-18,84,Evaluation needs to be conducted in 2 years,16,4.0,5.0,5.0,4.0,5.0,3.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,5.0,,W0229,43.6627117041,-79.5212630607,303069.399,4835640.393999999
-893038,4156370,2017.0,2018.0,1952.0,PRIVATE,2,Etobicoke Centre,5 BEXHILL CRT,4,13,2019-01-18,82,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,5.0,3.0,,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,5.0,,3.0,4.0,,W0229,43.6623890057,-79.52130693779999,303065.849,4835604.545
-893039,4281915,2017.0,2018.0,1952.0,PRIVATE,2,Etobicoke Centre,6 BEXHILL CRT,4,13,2019-01-18,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,3.0,4.0,3.0,,4.0,,4.0,3.0,4.0,5.0,4.0,4.0,4.0,,3.0,4.0,,W0229,43.6620535343,-79.5213419996,303063.01,4835567.277
-893040,4281929,2017.0,2018.0,1952.0,PRIVATE,2,Etobicoke Centre,7 BEXHILL CRT,4,13,2019-01-18,83,Evaluation needs to be conducted in 2 years,16,4.0,5.0,5.0,3.0,5.0,3.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,5.0,,3.0,4.0,,W0229,43.6617595882,-79.5213286681,303064.075,4835534.621
-893041,4281930,2017.0,2018.0,1952.0,PRIVATE,2,Etobicoke Centre,8 BEXHILL CRT,4,13,2019-01-18,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,3.0,4.0,3.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,2.0,4.0,,W0229,43.661708566099996,-79.520857721,303102.053,4835528.942
-893042,4281935,2017.0,2018.0,1952.0,PRIVATE,2,Etobicoke Centre,9 BEXHILL CRT,4,13,2019-01-18,79,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,3.0,4.0,3.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,4.0,,W0229,43.6619737906,-79.5206905766,303115.541,4835558.403
-893043,4156098,2017.0,2018.0,1952.0,PRIVATE,2,Etobicoke Centre,10 BEXHILL CRT,4,13,2019-01-18,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,3.0,3.0,3.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,4.0,,W0229,43.6622198253,-79.5205498417,303126.899,4835585.733
-893044,4155923,2017.0,2018.0,1952.0,PRIVATE,2,Etobicoke Centre,11 BEXHILL CRT,4,15,2019-01-18,79,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,3.0,4.0,3.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,4.0,,W0229,43.662318794799994,-79.5209151841,303097.439,4835596.7360000005
-893045,4156099,2017.0,2018.0,1952.0,PRIVATE,2,Etobicoke Centre,12 BEXHILL CRT,4,14,2019-01-18,80,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,3.0,,3.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0229,43.6624690571,-79.5204003078,303138.967,4835613.4180000005
-893046,4155924,2017.0,2018.0,1952.0,PRIVATE,2,Etobicoke Centre,14 BEXHILL CRT,4,14,2019-01-18,83,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,5.0,,4.0,4.0,,W0229,43.6627215022,-79.52019357260001,303155.649,4835641.459
-893047,4261157,,2018.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,103 SIXTEENTH ST,3,10,2019-01-18,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,,4.0,3.0,,W0335,43.6028075946,-79.5164885645,303453.266,4828985.195
-893048,4155524,2017.0,2018.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,104 SIXTEENTH ST,3,12,2019-01-18,71,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,4.0,4.0,3.0,5.0,4.0,4.0,3.0,,4.0,3.0,,W0335,43.6026815249,-79.5170398804,303408.757,4828971.198
-893049,4153435,2017.0,2018.0,1896.0,PRIVATE,13,Toronto Centre,77 PEMBROKE ST,4,16,2019-01-18,66,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,2.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,,S1328,43.658942215500005,-79.3723537237,315079.942,4835229.102
-893050,4153436,2017.0,2018.0,1885.0,PRIVATE,13,Toronto Centre,95 PEMBROKE ST,3,19,2019-01-18,79,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,4.0,,S1328,43.6595601379,-79.37264249340001,315056.547,4835297.718
-893051,4153027,2017.0,2018.0,1917.0,PRIVATE,4,Parkdale-High Park,1479 QUEEN ST W,3,11,2019-01-18,60,Evaluation needs to be conducted in 1 year,13,3.0,3.0,4.0,3.0,,3.0,,3.0,,,3.0,2.0,5.0,2.0,3.0,3.0,,2.0,,,S0436,43.639920626999995,-79.4393647797,309675.403,4833106.528
-893052,4155215,2017.0,2018.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,100 BROWNS LINE,3,22,2019-01-18,83,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,5.0,,4.0,,3.0,4.0,3.0,5.0,4.0,5.0,4.0,,4.0,4.0,,W0330,43.5952200747,-79.5429727048,301314.74,4828143.037
-893053,4154621,2017.0,2018.0,1965.0,PRIVATE,6,York Centre,25 CEDARCROFT BLVD,13,132,2019-01-18,66,Evaluation needs to be conducted in 2 years,20,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,5.0,4.0,4.0,3.0,4.0,4.0,2.0,3.0,N0622,43.7831736555,-79.4474072647,309017.799,4849024.107
-893054,4155776,2017.0,2018.0,1967.0,PRIVATE,6,York Centre,35 CEDARCROFT BLVD,13,207,2019-01-18,77,Evaluation needs to be conducted in 2 years,19,3.0,3.0,3.0,4.0,3.0,5.0,4.0,3.0,5.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,N0622,43.7827450557,-79.4483048718,308945.57399999996,4848976.441000001
-893055,4154370,2017.0,2018.0,1958.0,PRIVATE,6,York Centre,23 ANTHONY RD,3,12,2019-01-18,79,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,5.0,,,4.0,3.0,4.0,4.0,4.0,4.0,,4.0,3.0,,N0632,43.7303067168,-79.4602104154,307990.018,4843150.255
-893056,4153220,2017.0,2018.0,1955.0,PRIVATE,11,University-Rosedale,224 ST GEORGE ST,9,91,2019-01-18,69,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,4.0,4.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1127,43.671416122,-79.401975537,312688.81,4836612.569
-893057,4153232,2017.0,2018.0,1958.0,PRIVATE,11,University-Rosedale,267 ST GEORGE ST,10,63,2019-01-18,76,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,3.0,4.0,4.0,5.0,3.0,4.0,3.0,4.0,3.0,3.0,,S1127,43.673533271400004,-79.4021494997,312674.784,4836846.799
-893058,4153223,2017.0,2018.0,1960.0,PRIVATE,11,University-Rosedale,161 ST GEORGE ST,7,62,2019-01-18,81,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,5.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,5.0,4.0,3.0,,S1127,43.670260332,-79.40054649,312804.196,4836484.301
-893059,4155537,2017.0,2018.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,95 TWENTY FIFTH ST,3,46,2019-01-18,70,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,,3.0,4.0,2.0,5.0,4.0,4.0,4.0,,4.0,2.0,,W0334,43.5956296251,-79.52294293050001,302931.99600000004,4828187.853
-893060,4152695,2017.0,2018.0,1971.0,PRIVATE,21,Scarborough Centre,10 IONVIEW RD,6,62,2019-01-18,64,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,3.0,2.0,,3.0,3.0,,3.0,4.0,5.0,2.0,3.0,3.0,4.0,3.0,3.0,,E2133,43.7320328108,-79.27180036840001,323167.844,4843366.427
-893061,4152731,2017.0,2018.0,1961.0,PRIVATE,21,Scarborough Centre,4 TREEWOOD ST,7,82,2019-01-18,73,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,3.0,3.0,4.0,,3.0,4.0,3.0,3.0,3.0,5.0,4.0,4.0,5.0,3.0,4.0,3.0,,E2129,43.754281749499995,-79.26405657069999,323784.661,4845839.897
-893062,4154663,2017.0,2018.0,1960.0,PRIVATE,8,Eglinton-Lawrence,3575 BATHURST ST,7,61,2019-01-18,83,Evaluation needs to be conducted in 2 years,19,5.0,5.0,5.0,4.0,4.0,4.0,3.0,3.0,2.0,,4.0,5.0,5.0,5.0,4.0,4.0,5.0,4.0,3.0,5.0,N0824,43.731811765500005,-79.4323417364,310235.001,4843318.937
-893063,4269424,2017.0,2018.0,1950.0,SOCIAL HOUSING,14,Toronto-Danforth,793 GERRARD ST E,5,28,2019-01-17,77,Evaluation needs to be conducted in 2 years,14,4.0,5.0,5.0,4.0,4.0,4.0,,3.0,,,4.0,5.0,3.0,3.0,4.0,3.0,,3.0,,,S1434,43.666764817200004,-79.3456335069,317233.48,4836101.799
-893064,4152977,2017.0,2018.0,1959.0,PRIVATE,4,Parkdale-High Park,137 DUNN AVE,4,21,2019-01-17,70,Evaluation needs to be conducted in 2 years,14,3.0,3.0,3.0,4.0,3.0,3.0,,3.0,,,4.0,3.0,5.0,3.0,4.0,4.0,,4.0,,,S0437,43.636151700000006,-79.43227982399999,310248.294,4832692.487
-893065,4243767,2017.0,2018.0,1900.0,PRIVATE,4,Parkdale-High Park,28 MAYNARD AVE,3,20,2019-01-17,57,Evaluation needs to be conducted in 1 year,15,3.0,2.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,4.0,3.0,2.0,3.0,,3.0,2.0,,S0436,43.6380072384,-79.43803496470001,309784.048,4832897.33
-893066,4153461,2017.0,2018.0,1969.0,PRIVATE,13,Toronto Centre,40 GERRARD ST E,33,447,2019-01-17,80,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,4.0,S1328,43.6598447463,-79.3804771262,314424.604,4835328.44
-893067,4153437,,2018.0,1902.0,PRIVATE,13,Toronto Centre,181-183 GERRARD ST E,4,24,2019-01-17,80,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,,,S1328,,,315023.983,4835440.714
-893068,4152650,2017.0,2018.0,1961.0,PRIVATE,21,Scarborough Centre,1765 VICTORIA PARK AVE,7,67,2019-01-17,80,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,5.0,2.0,,4.0,4.0,,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,E2131,43.7402910045,-79.3084921125,320209.95,4844276.428
-893069,4152654,2017.0,2018.0,1993.0,SOCIAL HOUSING,21,Scarborough Centre,2155 LAWRENCE AVE E,11,243,2019-01-17,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,5.0,4.0,3.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,5.0,E2132,43.747083296199996,-79.2854390765,322064.815,4845035.55
-893070,4156379,2017.0,2018.0,1940.0,PRIVATE,20,Scarborough Southwest,1449 KINGSTON RD,3,14,2019-01-17,69,Evaluation needs to be conducted in 2 years,15,4.0,4.0,3.0,3.0,3.0,3.0,,3.0,,,4.0,3.0,5.0,4.0,3.0,3.0,,3.0,4.0,,E2034,43.687794468,-79.270325262,323298.75800000003,4838460.592
-893071,4156114,2017.0,2018.0,1940.0,PRIVATE,20,Scarborough Southwest,1457 KINGSTON RD,3,15,2019-01-17,72,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,3.0,4.0,3.0,,3.0,,,4.0,4.0,5.0,4.0,3.0,3.0,,3.0,4.0,,E2034,43.68800974,-79.270112715,323322.706,4838482.675
-893072,4156035,2017.0,2018.0,1940.0,PRIVATE,20,Scarborough Southwest,1463 KINGSTON RD,3,14,2019-01-17,72,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,3.0,3.0,4.0,,3.0,,,3.0,3.0,5.0,4.0,3.0,3.0,,4.0,4.0,,E2034,43.687961103999996,-79.269766888,323354.61100000003,4838512.321
-893073,4156237,2017.0,2018.0,1940.0,PRIVATE,20,Scarborough Southwest,1469 KINGSTON RD,3,15,2019-01-17,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,4.0,,E2034,43.688219097,-79.26980053300001,323367.67,4838524.609
-893074,4156236,2017.0,2018.0,1940.0,PRIVATE,20,Scarborough Southwest,1475 KINGSTON RD,3,14,2019-01-17,64,Evaluation needs to be conducted in 1 year,15,4.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,4.0,4.0,3.0,2.0,,3.0,4.0,,E2034,43.68817271,-79.26943584600001,323380.727,4838536.898
-893075,4156385,2017.0,2018.0,1940.0,PRIVATE,20,Scarborough Southwest,1481 KINGSTON RD,3,15,2019-01-17,69,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,3.0,4.0,3.0,,3.0,,,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,4.0,,E2034,43.688423918000005,-79.269500963,323393.784,4838549.187
-893076,4156254,2017.0,2018.0,1940.0,PRIVATE,20,Scarborough Southwest,1445 KINGSTON RD,3,14,2019-01-17,65,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,4.0,4.0,3.0,3.0,,3.0,4.0,,E2034,43.687651655,-79.270543261,323273.62,4838437.409
-893077,4155289,2017.0,2018.0,1958.0,PRIVATE,3,Etobicoke-Lakeshore,25 RIVERWOOD PKWY,4,50,2019-01-17,73,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,4.0,4.0,,4.0,4.0,3.0,4.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,W0327,43.639857076400006,-79.48883782989999,305684.946,4833101.147
-893078,4155290,2017.0,2018.0,1958.0,PRIVATE,3,Etobicoke-Lakeshore,33 RIVERWOOD PKWY,4,50,2019-01-17,73,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,,W0327,43.640211934499995,-79.4896809434,305616.916,4833140.562
-893079,4155292,2018.0,2018.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,47-49 RIVERWOOD PKWY,4,21,2019-01-17,56,Evaluation needs to be conducted in 1 year,17,3.0,2.0,3.0,3.0,3.0,3.0,,3.0,,3.0,2.0,2.0,5.0,2.0,3.0,3.0,2.0,3.0,3.0,,W0327,43.640304287700005,-79.4914484566,305474.305,4833150.807
-893080,4153577,2017.0,2018.0,1992.0,SOCIAL HOUSING,14,Toronto-Danforth,179 BROADVIEW AVE,4,41,2019-01-17,82,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,5.0,4.0,4.0,,4.0,4.0,,4.0,5.0,5.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,S1434,43.661102106499996,-79.3502357937,316863.476,4835472.037
-893081,4154537,2017.0,2018.0,1957.0,PRIVATE,8,Eglinton-Lawrence,108 RAJAH ST,3,12,2019-01-17,71,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,3.0,3.0,5.0,,4.0,,,4.0,2.0,5.0,3.0,3.0,4.0,3.0,4.0,2.0,,N0823,43.731024096999995,-79.43881577100001,309713.26399999997,4843231.969
-893082,4154536,2017.0,2018.0,1957.0,PRIVATE,8,Eglinton-Lawrence,110 RAJAH ST,3,12,2019-01-17,77,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,4.0,4.0,5.0,,4.0,,,4.0,2.0,5.0,4.0,3.0,4.0,,4.0,3.0,,N0823,43.73125641399999,-79.438819074,309712.979,4843257.778
-893083,4154535,2017.0,2018.0,1957.0,PRIVATE,8,Eglinton-Lawrence,112 RAJAH ST,3,12,2019-01-17,78,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,4.0,4.0,5.0,,4.0,,,4.0,2.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,N0823,43.731503933,-79.438923714,309704.529,4843285.27
-893084,4153226,2017.0,2018.0,1967.0,PRIVATE,11,University-Rosedale,191 ST GEORGE ST,10,105,2019-01-17,60,Evaluation needs to be conducted in 1 year,18,3.0,3.0,5.0,3.0,3.0,4.0,1.0,4.0,3.0,,2.0,2.0,5.0,3.0,2.0,3.0,3.0,3.0,2.0,,S1127,43.671558223999995,-79.40109940800001,312759.44399999996,4836628.436000001
-893085,4153221,2017.0,2018.0,1957.0,PRIVATE,11,University-Rosedale,214 ST GEORGE ST,8,68,2019-01-17,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,2.0,,4.0,4.0,4.0,4.0,4.0,5.0,3.0,3.0,4.0,4.0,4.0,4.0,,S1127,43.671224238,-79.401812426,312701.98699999996,4836591.267
-893086,4154391,,2018.0,1958.0,PRIVATE,6,York Centre,1477 WILSON AVE,4,42,2019-01-17,76,Evaluation needs to be conducted in 2 years,17,5.0,4.0,5.0,4.0,5.0,4.0,,4.0,3.0,,4.0,3.0,5.0,4.0,3.0,3.0,3.0,3.0,3.0,,N0631,43.72103021979999,-79.50357048229999,304496.836,4842118.967
-893087,4154390,2017.0,2018.0,1971.0,PRIVATE,6,York Centre,1491 WILSON AVE,4,40,2019-01-17,85,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,5.0,4.0,,5.0,5.0,,4.0,3.0,5.0,4.0,4.0,4.0,4.0,5.0,3.0,,N0631,43.7210593551,-79.5047297893,304403.425,4842122.21
-893088,4156071,2017.0,2018.0,1970.0,PRIVATE,6,York Centre,6040 BATHURST ST,17,202,2019-01-17,75,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,5.0,3.0,3.0,4.0,3.0,4.0,3.0,,N0622,43.7890444892,-79.4476519388,309058.568,4849670.127
-893089,4154719,2017.0,2018.0,1982.0,SOCIAL HOUSING,18,Willowdale,6091 BATHURST ST,6,90,2019-01-17,77,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,5.0,4.0,4.0,4.0,3.0,5.0,,4.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,N1821,43.787160745,-79.4456380716,309159.906,4849467.158
-893090,4154659,2017.0,2018.0,1955.0,PRIVATE,8,Eglinton-Lawrence,3255 BATHURST ST,4,22,2019-01-16,74,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,4.0,3.0,3.0,,3.0,,4.0,4.0,4.0,5.0,3.0,3.0,4.0,4.0,4.0,4.0,,N0824,43.7239351487,-79.4303884781,310393.099,4842444.013
-893091,4155111,2017.0,2018.0,1958.0,PRIVATE,5,York South-Weston,85 CLEARVIEW HTS,3,35,2019-01-16,87,Evaluation needs to be conducted in 3 years,15,4.0,4.0,5.0,4.0,3.0,5.0,,3.0,,,5.0,4.0,5.0,5.0,4.0,5.0,,5.0,4.0,,W0532,43.692772378,-79.483091733,306147.185,4838980.741
-893092,4153655,2017.0,2018.0,1983.0,SOCIAL HOUSING,14,Toronto-Danforth,110 UNITY RD,8,174,2019-01-16,83,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,S1432,43.6779324239,-79.3299297782,318497.365,4837344.914
-893093,4153656,2017.0,2018.0,1985.0,SOCIAL HOUSING,14,Toronto-Danforth,100 UNITY RD,6,98,2019-01-16,80,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,3.0,S1432,43.677802998900006,-79.3304925488,318452.018,4837330.443
-893094,4152643,2017.0,2018.0,1954.0,PRIVATE,21,Scarborough Centre,1689 VICTORIA PARK AVE,4,54,2019-01-16,79,Evaluation needs to be conducted in 2 years,17,3.0,4.0,4.0,4.0,3.0,5.0,,4.0,,3.0,4.0,5.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,,E2131,43.7354870834,-79.3066470427,320359.803,4843743.106000001
-893095,4152647,2017.0,2018.0,1960.0,PRIVATE,21,Scarborough Centre,1751 VICTORIA PARK AVE,4,35,2019-01-16,81,Evaluation needs to be conducted in 2 years,17,5.0,4.0,5.0,5.0,4.0,2.0,,4.0,,5.0,4.0,5.0,5.0,4.0,4.0,3.0,3.0,4.0,3.0,,E2131,43.7392166771,-79.3081651793,320236.558,4844157.143
-893096,4153453,2017.0,2018.0,1939.0,PRIVATE,13,Toronto Centre,368 GEORGE ST,3,16,2019-01-16,76,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,,,4.0,3.0,5.0,3.0,4.0,4.0,,3.0,4.0,,S1328,43.659740893,-79.374693208,314890.854,4835318.504
-893097,4153016,2017.0,2018.0,1978.0,PRIVATE,4,Parkdale-High Park,22 MAYNARD AVE,3,36,2019-01-16,70,Evaluation needs to be conducted in 2 years,14,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,,,4.0,3.0,5.0,4.0,4.0,3.0,,4.0,,,S0436,43.637780662299996,-79.4379497225,309790.94399999996,4832872.164
-893098,4153017,2017.0,2018.0,1964.0,PRIVATE,4,Parkdale-High Park,21 MAYNARD AVE,11,117,2019-01-16,76,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,5.0,3.0,,3.0,4.0,,4.0,4.0,5.0,3.0,5.0,5.0,4.0,4.0,3.0,,S0436,43.6381531633,-79.4373955962,309835.623,4832913.577
-893099,4153443,2017.0,2018.0,1973.0,PRIVATE,13,Toronto Centre,280 DUNDAS ST E,11,241,2019-01-16,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S1328,43.6584811745,-79.3719261905,315114.503,4835177.935
-893100,4154658,2017.0,2018.0,1955.0,PRIVATE,8,Eglinton-Lawrence,3253 BATHURST ST,4,22,2019-01-16,73,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,4.0,3.0,3.0,,3.0,,4.0,4.0,4.0,5.0,3.0,3.0,4.0,3.0,4.0,4.0,,N0824,43.723707331499995,-79.43032362529999,310398.345,4842418.708000001
-893101,4154657,2017.0,2018.0,1970.0,PRIVATE,8,Eglinton-Lawrence,3171 BATHURST ST,6,47,2019-01-16,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,3.0,4.0,3.0,5.0,3.0,4.0,5.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,,N0824,43.7220957338,-79.430056845,310419.984,4842239.683
-893102,4154394,2017.0,2018.0,1960.0,PRIVATE,6,York Centre,1393 WILSON AVE,4,82,2019-01-16,88,Evaluation needs to be conducted in 3 years,17,4.0,4.0,4.0,4.0,5.0,4.0,,4.0,5.0,,4.0,4.0,5.0,5.0,5.0,4.0,4.0,5.0,5.0,,N0631,43.7217077411,-79.50033280779999,304757.70399999997,4842194.225
-893103,4154382,2017.0,2018.0,1968.0,PRIVATE,6,York Centre,1277 WILSON AVE,4,80,2019-01-16,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,,3.0,3.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,,N0631,43.723649067,-79.492914942,305355.071,4842410.858
-893104,4155318,2017.0,2018.0,1943.0,PRIVATE,2,Etobicoke Centre,18 ANGLESEY BLVD,4,25,2019-01-16,71,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,3.0,4.0,3.0,,3.0,,,4.0,2.0,3.0,4.0,3.0,3.0,,4.0,4.0,,W0229,43.6649891625,-79.52164019050001,303039.06899999996,4835893.416
-893105,4167463,2017.0,2018.0,2006.0,TCHC,13,Toronto Centre,184 RIVER ST,3,54,2019-01-16,59,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,2.0,3.0,3.0,2.0,,,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,,S1330,43.662770771999995,-79.35927116,316143.84,4835667.148
-893106,4155113,2017.0,2018.0,1950.0,PRIVATE,5,York South-Weston,81 CLEARVIEW HTS,3,40,2019-01-16,56,Evaluation needs to be conducted in 1 year,15,2.0,2.0,3.0,2.0,3.0,2.0,,3.0,,,2.0,3.0,4.0,3.0,4.0,2.0,,4.0,3.0,,W0532,43.692447216000005,-79.48271117899999,306177.868,4838944.6219999995
-893107,4155101,2017.0,2018.0,1951.0,PRIVATE,5,York South-Weston,80 CLEARVIEW HTS,4,36,2019-01-16,78,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,3.0,5.0,,4.0,,4.0,4.0,3.0,5.0,3.0,4.0,4.0,4.0,4.0,3.0,,W0532,43.693064312,-79.482178967,306220.75800000003,4839013.187
-893108,4155114,2017.0,2018.0,1950.0,PRIVATE,5,York South-Weston,79 CLEARVIEW HTS,4,54,2019-01-16,59,Evaluation needs to be conducted in 1 year,15,2.0,2.0,3.0,2.0,3.0,2.0,,3.0,,,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,4.0,,W0532,43.692294791,-79.482440365,306199.702,4838927.692
-893109,4155100,2017.0,2018.0,1951.0,PRIVATE,5,York South-Weston,70 CLEARVIEW HTS,4,47,2019-01-16,81,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,4.0,4.0,4.0,5.0,3.0,5.0,4.0,4.0,4.0,4.0,,W0532,43.69279777,-79.481595405,306267.805,4838983.584
-893110,4155099,2017.0,2018.0,1951.0,PRIVATE,5,York South-Weston,60 CLEARVIEW HTS,4,37,2019-01-16,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,,,5.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,,W0532,43.692977471000006,-79.48134741,306287.792,4839003.552
-893111,4155098,2017.0,2018.0,1951.0,PRIVATE,5,York South-Weston,50 CLEARVIEW HTS,4,37,2019-01-16,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,,,5.0,4.0,5.0,2.0,4.0,4.0,4.0,3.0,4.0,,W0532,43.693048881,-79.48093875800001,306320.732,4839011.492
-893112,4155097,2017.0,2018.0,1951.0,PRIVATE,5,York South-Weston,40 CLEARVIEW HTS,4,37,2019-01-16,76,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,4.0,4.0,5.0,,4.0,,,4.0,5.0,4.0,2.0,4.0,3.0,4.0,3.0,4.0,,W0532,43.693098586400005,-79.48023783800001,306377.49600000004,4839016.071
-893113,4155093,2017.0,2018.0,1955.0,PRIVATE,5,York South-Weston,31 CLEARVIEW HTS,4,43,2019-01-16,86,Evaluation needs to be conducted in 3 years,16,4.0,4.0,5.0,4.0,4.0,5.0,,5.0,,4.0,5.0,5.0,5.0,3.0,5.0,4.0,,4.0,3.0,,W0532,43.69278743,-79.4796635822,306423.795,4838981.508
-893114,4155096,2017.0,2018.0,1960.0,PRIVATE,5,York South-Weston,30 CLEARVIEW HTS,4,25,2019-01-16,80,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,,,4.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,,W0532,43.6932353032,-79.4795788454,306430.615,4839031.266
-893115,4155736,2017.0,2018.0,1967.0,PRIVATE,6,York Centre,6020 BATHURST ST,11,149,2019-01-16,73,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,,4.0,3.0,5.0,4.0,3.0,3.0,4.0,3.0,3.0,4.0,N0622,43.7870875087,-79.4473742209,309020.18,4849458.928
-893116,4155737,2017.0,2018.0,1967.0,PRIVATE,6,York Centre,6030 BATHURST ST,19,247,2019-01-16,74,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,4.0,,4.0,3.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,N0622,43.78782263430001,-79.4475892246,309002.816,4849540.586
-893117,4154660,2017.0,2018.0,1955.0,PRIVATE,8,Eglinton-Lawrence,3257 BATHURST ST,4,20,2019-01-16,74,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,4.0,3.0,3.0,,3.0,,4.0,4.0,4.0,5.0,3.0,3.0,4.0,4.0,4.0,4.0,,N0824,43.7241610224,-79.430453768,310387.818,4842469.102
-893118,4155272,2017.0,2018.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,34 RIVERWOOD PKWY,4,35,2019-01-16,80,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,,,5.0,4.0,5.0,3.0,4.0,4.0,5.0,3.0,4.0,,W0327,43.6397937003,-79.4903246449,305564.983,4833094.093
-893119,4153567,2017.0,2018.0,1985.0,TCHC,13,Toronto Centre,123 SACKVILLE ST,3,20,2019-01-16,75,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,3.0,,3.0,4.0,4.0,,,4.0,4.0,3.0,4.0,3.0,4.0,,4.0,4.0,,S1330,43.6570898108,-79.3615276679,315953.471,4835024.718
-893120,4167684,2017.0,2018.0,1948.0,TCHC,13,Toronto Centre,274 SACKVILLE ST,6,71,2019-01-16,61,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,3.0,3.0,3.0,2.0,3.0,,3.0,3.0,3.0,4.0,3.0,3.0,,3.0,3.0,,S1330,43.661533685,-79.36404948,315749.006,4835519.022
-893121,4153657,2017.0,2018.0,1990.0,SOCIAL HOUSING,14,Toronto-Danforth,570 COXWELL AVE,3,11,2019-01-16,83,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,3.0,4.0,4.0,,4.0,,,3.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,,S1432,43.679932553,-79.3224960568,319096.268,4837568.387
-893122,4167685,2017.0,2018.0,1948.0,TCHC,13,Toronto Centre,295 SACKVILLE ST,3,48,2019-01-16,60,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1330,43.661833468000005,-79.36324770899999,315813.619,4835552.43
-893123,4154539,2018.0,2018.0,1960.0,PRIVATE,8,Eglinton-Lawrence,102 RAJAH ST,3,12,2019-01-16,70,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,5.0,3.0,3.0,,3.0,,,3.0,5.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,N0823,43.730483195,-79.438671101,309724.963,4843171.886
-893124,4153450,2017.0,2018.0,1992.0,SOCIAL HOUSING,13,Toronto Centre,269 JARVIS ST,9,75,2019-01-15,78,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,S1328,43.6581272715,-79.37467532630001,314892.82899999997,4835138.263
-893125,4154627,2017.0,2018.0,1964.0,PRIVATE,6,York Centre,6000 BATHURST ST,12,108,2019-01-15,75,Evaluation needs to be conducted in 2 years,20,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,5.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,N0622,43.785344988599995,-79.4468063117,309066.026,4849265.373
-893126,4155602,2017.0,2018.0,1972.0,TCHC,13,Toronto Centre,220 OAK ST,27,469,2019-01-15,63,Evaluation needs to be conducted in 1 year,20,3.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,S1330,43.663061381000006,-79.357756445,316331.701,4835670.531
-893127,4152638,2019.0,2018.0,1954.0,PRIVATE,21,Scarborough Centre,1607 VICTORIA PARK AVE,4,54,2019-01-15,72,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,2.0,4.0,,4.0,,3.0,3.0,3.0,5.0,4.0,2.0,5.0,5.0,4.0,4.0,,E2131,43.7303493806,-79.3045356684,320531.217,4843172.7360000005
-893128,4167701,2017.0,2018.0,1980.0,TCHC,13,Toronto Centre,417 GERRARD ST E,3,12,2019-01-15,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,2.0,3.0,,3.0,,,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,3.0,,S1330,43.6620246346,-79.3620805585,315907.982,4835572.868
-893129,4167687,2017.0,2018.0,1948.0,TCHC,13,Toronto Centre,260 SUMACH ST,3,48,2019-01-15,61,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,,2.0,3.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,,S1330,43.66223715,-79.361553726,315950.172,4835597.5
-893130,4154538,2017.0,2018.0,1967.0,PRIVATE,8,Eglinton-Lawrence,104 RAJAH ST,3,11,2019-01-15,81,Evaluation needs to be conducted in 2 years,17,4.0,5.0,5.0,5.0,4.0,4.0,,4.0,,3.0,5.0,4.0,5.0,3.0,4.0,3.0,3.0,4.0,4.0,,N0823,43.730670188000005,-79.438737082,309719.632,4843192.656
-893131,4167680,2017.0,2018.0,2006.0,TCHC,13,Toronto Centre,259 SUMACH ST,3,47,2019-01-15,62,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,,3.0,3.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,,S1330,43.662405994,-79.360720129,316017.373,4835616.37
-893132,4154682,2017.0,2018.0,1950.0,PRIVATE,8,Eglinton-Lawrence,166 WILSON AVE,4,60,2019-01-15,91,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,5.0,4.0,4.0,,5.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,5.0,,N0821,43.740401247,-79.4209043268,311155.467,4844273.936000001
-893133,4250590,2017.0,2018.0,2002.0,SOCIAL HOUSING,14,Toronto-Danforth,1117 DANFORTH AVE,3,26,2019-01-15,67,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,,,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,,4.0,S1431,43.6807944237,-79.33409174260001,318161.157,4837662.183
-893134,4154800,,2018.0,1960.0,PRIVATE,16,Don Valley East,874 LAWRENCE AVE E,3,12,2019-01-15,72,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,3.0,3.0,4.0,,4.0,,3.0,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,2.0,,N1623,43.7361423501,-79.34977188479999,316885.812,4843808.714
-893135,4152564,,2018.0,1949.0,PRIVATE,20,Scarborough Southwest,36 WOOD GLEN RD,4,15,2019-01-15,79,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,,,E2033,43.6839132294,-79.276016525,322842.63300000003,4838019.642
-893136,4153002,,2018.0,1910.0,PRIVATE,4,Parkdale-High Park,1570 KING ST W,3,18,2019-01-15,68,Evaluation needs to be conducted in 2 years,15,4.0,3.0,3.0,3.0,3.0,3.0,,4.0,,3.0,3.0,3.0,4.0,3.0,4.0,4.0,,4.0,,,S0436,43.638091463,-79.44404887399999,309298.548,4832907.31
-893137,4273905,2017.0,2018.0,1930.0,PRIVATE,14,Toronto-Danforth,575 PAPE AVE,3,17,2019-01-15,83,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,5.0,3.0,4.0,,3.0,,,5.0,5.0,5.0,4.0,4.0,3.0,,5.0,,,S1430,43.6750307641,-79.3429590796,317447.438,4837020.51
-893138,4153448,2017.0,2018.0,1990.0,SOCIAL HOUSING,13,Toronto Centre,70 PEMBROKE ST,3,15,2019-01-15,71,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,4.0,3.0,,4.0,,,3.0,3.0,5.0,3.0,4.0,4.0,4.0,3.0,,,S1328,43.6585068285,-79.3728346452,315041.226,4835180.666999999
-893139,4154547,2017.0,2018.0,1955.0,PRIVATE,8,Eglinton-Lawrence,35 WASDALE CRES,3,10,2019-01-15,70,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,3.0,3.0,4.0,,4.0,,,3.0,2.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,,N0823,43.730722623599995,-79.434896794,310029.266,4843197.77
-893140,4154672,2017.0,2018.0,1956.0,PRIVATE,8,Eglinton-Lawrence,15 BIDEFORD AVE,6,44,2019-01-15,74,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,4.0,,N0821,43.740772739899995,-79.42318305239999,310971.882,4844315.041999999
-893141,4155325,2017.0,2018.0,1959.0,PRIVATE,2,Etobicoke Centre,3 BEXHILL CRT,4,14,2019-01-15,66,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,,4.0,3.0,2.0,5.0,2.0,4.0,4.0,,2.0,4.0,,W0229,43.662922178,-79.521001935,303090.201,4835664.723999999
-893142,4155324,2017.0,2018.0,1959.0,PRIVATE,2,Etobicoke Centre,2 BEXHILL CRT,4,14,2019-01-15,64,Evaluation needs to be conducted in 1 year,15,3.0,4.0,4.0,3.0,2.0,3.0,,3.0,,,4.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,,W0229,43.6630974125,-79.5207637841,303109.67699999997,4835683.233
-893143,4167694,2017.0,2018.0,1980.0,TCHC,13,Toronto Centre,325 GERRARD ST E,6,72,2019-01-15,61,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,4.0,,4.0,3.0,,S1330,43.662101254,-79.36550611199999,315631.42100000003,4835581.8889999995
-893144,4153008,2017.0,2018.0,1900.0,PRIVATE,4,Parkdale-High Park,1504 KING ST W,3,15,2019-01-15,59,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,2.0,3.0,,3.0,,,3.0,3.0,4.0,3.0,3.0,2.0,3.0,3.0,,,S0436,43.636665656800005,-79.4404917741,309585.93,4832748.153
-893145,4154801,2018.0,2018.0,1954.0,PRIVATE,16,Don Valley East,868 LAWRENCE AVE E,4,31,2019-01-15,68,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,2.0,3.0,4.0,,3.0,,3.0,4.0,2.0,4.0,3.0,3.0,5.0,5.0,4.0,2.0,,N1623,43.7359170321,-79.3507079954,316810.44899999996,4843783.545
-893146,4154631,2017.0,2018.0,1969.0,PRIVATE,6,York Centre,6010 BATHURST ST,12,120,2019-01-15,71,Evaluation needs to be conducted in 2 years,20,3.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,N0622,43.7862798518,-79.4468276481,309064.24100000004,4849369.232
-893147,4152641,2019.0,2018.0,1954.0,PRIVATE,21,Scarborough Centre,1637 VICTORIA PARK AVE,4,26,2019-01-15,65,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,1.0,2.0,,4.0,,2.0,3.0,3.0,5.0,3.0,4.0,3.0,5.0,4.0,4.0,,E2131,43.732195061999995,-79.3052538634,320472.882,4843377.643999999
-893148,4154622,2017.0,2018.0,1964.0,PRIVATE,6,York Centre,5950 BATHURST ST,12,133,2019-01-14,72,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,,4.0,3.0,5.0,4.0,3.0,3.0,3.0,4.0,4.0,3.0,N0622,43.7833167719,-79.4460923651,309123.62899999996,4849040.079
-893149,4154677,2017.0,2018.0,1955.0,PRIVATE,8,Eglinton-Lawrence,2125 AVENUE RD,4,33,2019-01-14,69,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,3.0,4.0,3.0,,4.0,,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,N0824,43.738421162899996,-79.4206636772,311175.063,4844053.984
-893150,4154679,2017.0,2018.0,1953.0,PRIVATE,8,Eglinton-Lawrence,2135 AVENUE RD,3,54,2019-01-14,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0824,43.739166681099995,-79.42089963859999,311155.974,4844136.782
-893151,4152554,2017.0,2018.0,1950.0,PRIVATE,20,Scarborough Southwest,2422 QUEEN ST E,4,24,2019-01-14,81,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,E2033,43.674940499099996,-79.279202734,322588.365,4837022.11
-893152,4152563,2018.0,2018.0,1932.0,PRIVATE,20,Scarborough Southwest,3008 QUEEN ST E,4,16,2019-01-14,73,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,5.0,5.0,4.0,4.0,4.0,,4.0,3.0,,E2033,43.6754276016,-79.277427743,322731.349,4837076.607
-893153,4153472,2017.0,2018.0,1963.0,PRIVATE,13,Toronto Centre,392 SHERBOURNE ST,10,128,2019-01-14,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,3.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,S1326,43.664096113199996,-79.3738282072,314960.149,4835801.501
-893154,4152562,2018.0,2018.0,1932.0,PRIVATE,20,Scarborough Southwest,3010 QUEEN ST E,4,16,2019-01-14,71,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,2.0,3.0,3.0,,3.0,,,3.0,5.0,5.0,4.0,3.0,4.0,,4.0,3.0,,E2033,43.6754799628,-79.2772204699,322748.047,4837082.469
-893155,4155669,2017.0,2018.0,1964.0,PRIVATE,15,Don Valley West,38 CARLUKE CRES,7,104,2019-01-14,77,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,4.0,4.0,3.0,3.0,3.0,5.0,,3.0,4.0,5.0,4.0,4.0,3.0,3.0,4.0,3.0,,N1521,43.76099861,-79.38848465699999,313757.7,4846553.563
-893156,4155670,2017.0,2018.0,1964.0,PRIVATE,15,Don Valley West,32 CARLUKE CRES,7,103,2019-01-14,78,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,4.0,4.0,3.0,3.0,3.0,5.0,,3.0,4.0,5.0,3.0,5.0,4.0,3.0,4.0,3.0,,N1521,43.761178869700004,-79.3897561854,313693.98699999996,4846559.64
-893157,4155319,2017.0,2018.0,1953.0,PRIVATE,2,Etobicoke Centre,20 ANGLESEY BLVD,4,25,2019-01-14,73,Evaluation needs to be conducted in 2 years,15,4.0,3.0,5.0,4.0,3.0,3.0,,4.0,,,4.0,3.0,4.0,4.0,3.0,4.0,,3.0,4.0,,W0229,43.6647873708,-79.521769522,303028.632,4835871.001
-893158,4154623,2017.0,2018.0,1960.0,PRIVATE,6,York Centre,155 ANTIBES DR,17,259,2019-01-14,76,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,N0622,43.78208918560001,-79.4459161033,309137.897,4848903.701
-893159,4155858,2017.0,2018.0,1905.0,PRIVATE,11,University-Rosedale,41 SPADINA RD,4,24,2019-01-14,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,3.0,4.0,3.0,5.0,2.0,3.0,3.0,2.0,3.0,3.0,,S1127,43.6688434904,-79.4042769908,312503.8,4836325.6
-893160,4153212,2017.0,2018.0,1955.0,PRIVATE,11,University-Rosedale,85 LOWTHER AVE,8,44,2019-01-14,75,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,2.0,4.0,4.0,3.0,4.0,4.0,4.0,5.0,4.0,3.0,3.0,3.0,4.0,3.0,,S1127,43.669735327,-79.40029681,312824.398,4836426.0
-893161,4153488,2017.0,2018.0,1979.0,PRIVATE,13,Toronto Centre,25 WELLESLEY ST E,9,47,2019-01-14,69,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,4.0,,3.0,2.0,2.0,3.0,4.0,4.0,4.0,4.0,4.0,,S1326,43.664890998999994,-79.383181646,314205.404,4835889.677
-893162,4152636,2019.0,2018.0,1954.0,PRIVATE,21,Scarborough Centre,1589 VICTORIA PARK AVE,4,34,2019-01-14,69,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,3.0,2.0,,4.0,,3.0,3.0,3.0,5.0,3.0,4.0,3.0,5.0,3.0,5.0,,E2131,43.7290082864,-79.30402881319999,320572.398,4843023.848
-893163,4152637,2019.0,2018.0,1954.0,PRIVATE,21,Scarborough Centre,1601 VICTORIA PARK AVE,4,54,2019-01-14,74,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,3.0,2.0,2.0,,4.0,,3.0,3.0,4.0,5.0,4.0,4.0,3.0,5.0,5.0,5.0,,E2131,43.729766759300006,-79.3043160261,320549.063,4843108.053
-893164,4153007,2017.0,2018.0,1952.0,PRIVATE,4,Parkdale-High Park,1502 KING ST W,3,15,2019-01-14,72,Evaluation needs to be conducted in 2 years,15,5.0,3.0,2.0,4.0,5.0,3.0,,4.0,,,5.0,3.0,4.0,3.0,3.0,2.0,4.0,4.0,,,S0436,43.636587848400005,-79.4403366563,309598.452,4832739.518
-893165,4154442,2017.0,2018.0,1959.0,PRIVATE,6,York Centre,3020 KEELE ST,3,39,2019-01-14,69,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,4.0,3.0,,4.0,,,3.0,2.0,5.0,4.0,3.0,4.0,,4.0,3.0,,N0627,43.737981659700004,-79.4853134372,305967.553,4844002.249
-893166,4153021,2017.0,2018.0,1967.0,PRIVATE,4,Parkdale-High Park,1430 KING ST W,7,77,2019-01-14,73,Evaluation needs to be conducted in 2 years,17,3.0,4.0,4.0,4.0,3.0,4.0,,3.0,4.0,,3.0,4.0,4.0,5.0,3.0,3.0,4.0,4.0,3.0,,S0436,43.637386748500006,-79.43645222720001,309911.8,4832828.489
-893167,4154744,2017.0,2018.0,1968.0,PRIVATE,18,Willowdale,2818 BAYVIEW AVE,3,20,2019-01-11,63,Evaluation needs to be conducted in 1 year,18,3.0,2.0,4.0,2.0,3.0,3.0,4.0,3.0,,4.0,3.0,1.0,5.0,3.0,3.0,4.0,3.0,3.0,4.0,,N1828,43.7657782608,-79.3883472184,313774.078,4847096.221
-893168,4154824,2017.0,2018.0,1969.0,PRIVATE,17,Don Valley North,1650 SHEPPARD AVE E,15,149,2019-01-11,84,Evaluation needs to be conducted in 2 years,20,4.0,5.0,5.0,3.0,4.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,2.0,4.0,N1727,43.775121294099996,-79.3490805112,316933.665,4848139.196
-893169,4155293,2017.0,2018.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,69 OLD MILL TER,4,26,2019-01-11,60,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,3.0,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0327,43.6497102952,-79.498711457,304888.256,4834195.725
-893170,4154841,2017.0,2018.0,1967.0,PRIVATE,17,Don Valley North,10 RUDDINGTON DR,13,155,2019-01-11,75,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,3.0,4.0,5.0,3.0,4.0,5.0,4.0,2.0,4.0,5.0,4.0,4.0,3.0,3.0,4.0,1.0,4.0,N1721,43.788810185200006,-79.3913448594,313529.412,4849654.673
-893171,4155277,2018.0,2018.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,323 PARK LAWN RD,5,48,2019-01-11,69,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,4.0,3.0,,4.0,3.0,3.0,4.0,4.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,,W0327,43.637199541099996,-79.493365223,305319.61,4832805.873
-893172,4153607,2017.0,2018.0,1968.0,PRIVATE,14,Toronto-Danforth,655 BROADVIEW AVE,24,291,2019-01-11,84,Evaluation needs to be conducted in 2 years,20,5.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,5.0,5.0,4.0,4.0,5.0,4.0,3.0,4.0,S1428,43.673945589,-79.3561095196,316387.282,4836898.046
-893173,4152558,2017.0,2018.0,1920.0,PRIVATE,20,Scarborough Southwest,2400 QUEEN ST E,4,32,2019-01-11,81,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,E2033,43.6746856483,-79.2801413313,322512.757,4836993.597
-893174,4152555,2017.0,2018.0,1957.0,PRIVATE,20,Scarborough Southwest,2412 QUEEN ST E,3,17,2019-01-11,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,3.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,E2033,43.6748716677,-79.2794749048,322566.439,4837014.405
-893175,4152634,2017.0,2018.0,1959.0,PRIVATE,21,Scarborough Centre,5 RANNOCK ST,4,28,2019-01-11,65,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,3.0,3.0,2.0,,3.0,,,3.0,3.0,5.0,4.0,4.0,3.0,,4.0,4.0,,E2131,43.7284977107,-79.2991802272,320963.145,4842968.046
-893176,4154209,2017.0,2018.0,1954.0,PRIVATE,7,Humber River-Black Creek,1770 WILSON AVE,3,31,2019-01-11,71,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,4.0,4.0,4.0,,4.0,,,3.0,3.0,5.0,4.0,3.0,3.0,,4.0,3.0,,W0734,43.7193022696,-79.5173252308,303388.542,4841927.165
-893177,4154210,2017.0,2018.0,1954.0,PRIVATE,7,Humber River-Black Creek,1780 WILSON AVE,3,31,2019-01-11,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,3.0,4.0,4.0,,3.0,,,3.0,3.0,5.0,4.0,3.0,3.0,,4.0,3.0,,W0734,43.7191256895,-79.5181150514,303324.903,4841907.561000001
-893178,4156719,2017.0,2018.0,1900.0,PRIVATE,11,University-Rosedale,359 DAVENPORT RD,4,17,2019-01-11,53,Evaluation needs to be conducted in 1 year,16,2.0,2.0,5.0,3.0,2.0,2.0,,3.0,,,2.0,3.0,5.0,1.0,3.0,2.0,1.0,2.0,4.0,,S1127,,,312666.71,4837037.335
-893179,4154671,2017.0,2018.0,1969.0,PRIVATE,8,Eglinton-Lawrence,2200 AVENUE RD,16,152,2019-01-11,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,N0821,43.740230303000004,-79.42255459350001,311022.559,4844254.825
-893180,4155317,2017.0,2018.0,1958.0,PRIVATE,2,Etobicoke Centre,14-16 ANGLESEY BLVD,4,24,2019-01-11,63,Evaluation needs to be conducted in 1 year,16,3.0,2.0,4.0,2.0,3.0,2.0,,4.0,,3.0,3.0,4.0,5.0,3.0,2.0,4.0,,2.0,4.0,,W0229,43.6652491637,-79.52117214020001,303076.82399999996,4835922.29
-893181,4155333,2017.0,2018.0,1955.0,PRIVATE,2,Etobicoke Centre,15 ANGLESEY BLVD,3,41,2019-01-11,56,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,1.0,3.0,,3.0,,,4.0,2.0,1.0,3.0,3.0,2.0,,4.0,3.0,,W0229,43.6641882866,-79.5210515699,303086.51,4835804.43
-893182,4154717,2017.0,2018.0,1970.0,PRIVATE,18,Willowdale,5754 YONGE ST,12,118,2019-01-11,89,Evaluation needs to be conducted in 3 years,19,5.0,5.0,4.0,4.0,4.0,5.0,5.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,4.0,,N1822,43.7833043666,-79.4169610775,311468.369,4849040.654
-893183,4153697,2020.0,2018.0,1966.0,PRIVATE,19,Beaches-East York,592 WOODBINE AVE,5,36,2019-01-11,73,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,,S1934,43.6770075216,-79.3095598488,320140.021,4837245.728999999
-893184,4154718,2017.0,2018.0,1963.0,PRIVATE,18,Willowdale,6000 YONGE ST,18,265,2019-01-11,85,Evaluation needs to be conducted in 2 years,19,5.0,5.0,5.0,5.0,4.0,5.0,3.0,3.0,5.0,5.0,5.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,3.0,,N1822,43.7883911434,-79.4180400688,311380.957,4849605.708000001
-893185,4155457,2017.0,2018.0,1969.0,PRIVATE,1,Etobicoke North,10 GARFELLA DR,7,143,2019-01-11,80,Evaluation needs to be conducted in 2 years,18,5.0,4.0,4.0,3.0,5.0,3.0,5.0,4.0,3.0,,5.0,5.0,5.0,4.0,4.0,3.0,3.0,4.0,3.0,,W0123,43.7453896515,-79.59312182939999,297284.473,4844829.467
-893186,4155462,2019.0,2018.0,1970.0,PRIVATE,1,Etobicoke North,41 GARFELLA DR,12,95,2019-01-11,79,Evaluation needs to be conducted in 2 years,18,5.0,4.0,4.0,4.0,3.0,3.0,3.0,4.0,2.0,,5.0,5.0,5.0,5.0,4.0,3.0,5.0,4.0,3.0,,W0123,43.744136418400004,-79.5943268787,297187.256,4844690.351
-893187,4153493,2017.0,2018.0,1928.0,PRIVATE,13,Toronto Centre,56 MAITLAND ST,4,47,2019-01-11,79,Evaluation needs to be conducted in 2 years,14,3.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,,,S1326,43.6648613167,-79.3813670243,314352.022,4835885.626
-893188,4415833,2019.0,2018.0,1928.0,PRIVATE,13,Toronto Centre,120 MAITLAND ST,3,24,2019-01-11,79,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,3.0,4.0,4.0,,3.0,,,S1326,43.665296276499994,-79.378621689,314573.36600000004,4835934.254
-893189,4152652,2017.0,2018.0,1964.0,PRIVATE,21,Scarborough Centre,1765 LAWRENCE AVE E,7,103,2019-01-11,68,Evaluation needs to be conducted in 2 years,19,3.0,3.0,3.0,3.0,3.0,4.0,3.0,4.0,4.0,,3.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,3.0,3.0,E2131,43.742331818100006,-79.3064455289,320374.272,4844503.53
-893190,4265578,2017.0,2018.0,1940.0,SOCIAL HOUSING,19,Beaches-East York,26 NORWOOD RD,3,12,2019-01-11,66,Evaluation needs to be conducted in 2 years,16,4.0,3.0,3.0,4.0,3.0,3.0,,4.0,,,3.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,,S1935,43.6831736405,-79.3030579348,320662.652,4837931.992
-893191,4153173,2017.0,2018.0,1965.0,PRIVATE,11,University-Rosedale,11 WALMER RD,7,63,2019-01-11,78,Evaluation needs to be conducted in 2 years,19,3.0,5.0,5.0,3.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,5.0,5.0,3.0,3.0,5.0,4.0,5.0,,S1126,43.667244428400004,-79.4054073649,312412.84,4836147.848999999
-893192,4153606,2017.0,2018.0,1968.0,PRIVATE,14,Toronto-Danforth,10 HOGARTH AVE,23,287,2019-01-11,84,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,5.0,5.0,4.0,4.0,5.0,4.0,3.0,4.0,S1428,43.6739626249,-79.35545117,316440.365,4836900.03
-893193,4154438,2018.0,2018.0,1952.0,PRIVATE,6,York Centre,2990 KEELE ST,3,11,2019-01-11,72,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,2.0,5.0,3.0,3.0,3.0,,4.0,3.0,,N0627,43.736373339,-79.484931855,305998.055,4843824.537
-893194,4154437,,2018.0,1954.0,PRIVATE,6,York Centre,2994 KEELE ST,4,12,2019-01-11,66,Evaluation needs to be conducted in 2 years,14,3.0,3.0,2.0,3.0,,3.0,,5.0,,,3.0,2.0,5.0,4.0,4.0,3.0,,3.0,3.0,,N0627,43.736711483,-79.48501293,305991.518,4843862.101
-893195,4153214,2017.0,2018.0,1965.0,PRIVATE,11,University-Rosedale,485 HURON ST,13,70,2019-01-11,81,Evaluation needs to be conducted in 2 years,18,3.0,5.0,5.0,4.0,3.0,4.0,,4.0,4.0,3.0,5.0,4.0,5.0,4.0,3.0,3.0,5.0,4.0,5.0,,S1127,43.669000001,-79.401866897,312697.875,4836344.163
-893196,4153235,,2018.0,1918.0,PRIVATE,11,University-Rosedale,661 HURON ST,3,15,2019-01-11,57,Evaluation needs to be conducted in 1 year,15,3.0,3.0,5.0,2.0,2.0,3.0,,4.0,,,2.0,3.0,5.0,2.0,2.0,2.0,,2.0,3.0,,S1127,43.674829239,-79.40427079199999,312503.317,4836991.544
-893197,4250261,2017.0,2018.0,1987.0,SOCIAL HOUSING,4,Parkdale-High Park,1245 KING ST W,3,39,2019-01-11,64,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,2.0,3.0,,4.0,,,3.0,2.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,4.0,S0437,43.638488442299995,-79.4287782888,310530.87,4832951.348
-893198,4153036,2017.0,2018.0,1916.0,PRIVATE,4,Parkdale-High Park,1384 KING ST W,3,18,2019-01-11,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,2.0,3.0,3.0,3.0,2.0,,,S0436,43.6376046857,-79.43500911390001,310028.218,4832852.784
-893199,4153199,2017.0,2018.0,2004.0,PRIVATE,11,University-Rosedale,25 BEDFORD RD,8,62,2019-01-11,73,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,3.0,5.0,4.0,,4.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,,S1127,43.670003806000004,-79.397710763,313032.908,4836456.077
-893200,4479579,2019.0,2018.0,2003.0,SOCIAL HOUSING,19,Beaches-East York,419 COXWELL AVE,3,44,2019-01-10,76,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,3.0,3.0,4.0,,3.0,3.0,4.0,S1934,43.67724621399999,-79.32051294899999,319256.538,4837271.2469999995
-893201,4155600,2017.0,2018.0,1973.0,TCHC,13,Toronto Centre,155 SHERBOURNE ST,16,301,2019-01-10,57,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,,S1329,43.6555922823,-79.3695219097,315308.923,4834857.287
-893202,4153609,2017.0,2018.0,1910.0,PRIVATE,14,Toronto-Danforth,648 BROADVIEW AVE,3,11,2019-01-10,76,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,5.0,3.0,4.0,,4.0,,,4.0,5.0,5.0,3.0,3.0,3.0,3.0,3.0,4.0,,S1428,43.6734656352,-79.3567572276,316335.147,4836844.637
-893203,4156181,2017.0,2018.0,1964.0,TCHC,13,Toronto Centre,285 SHUTER ST,15,300,2019-01-10,63,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,,4.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,S1329,43.65586332,-79.366647156,315513.091,4834942.867
-893204,4154217,2017.0,2018.0,1967.0,PRIVATE,7,Humber River-Black Creek,1750 WILSON AVE,3,10,2019-01-10,71,Evaluation needs to be conducted in 2 years,17,4.0,3.0,3.0,4.0,3.0,4.0,,3.0,,4.0,3.0,3.0,5.0,4.0,4.0,3.0,3.0,4.0,3.0,,W0734,43.71964691229999,-79.5158634781,303506.321,4841965.429
-893205,4154208,2017.0,2018.0,1955.0,PRIVATE,7,Humber River-Black Creek,1760 WILSON AVE,4,32,2019-01-10,65,Evaluation needs to be conducted in 1 year,15,2.0,3.0,3.0,3.0,3.0,4.0,,3.0,,,3.0,3.0,5.0,4.0,4.0,3.0,,4.0,2.0,,W0734,43.7194896137,-79.5165478577,303451.17600000004,4841947.966
-893206,4155174,2017.0,2018.0,1965.0,PRIVATE,5,York South-Weston,8 CASTLETON AVE,3,17,2019-01-10,57,Evaluation needs to be conducted in 1 year,15,3.0,2.0,4.0,2.0,3.0,3.0,,3.0,,,2.0,3.0,4.0,2.0,3.0,3.0,,2.0,4.0,,W0539,43.6691775481,-79.4863066035,305888.622,4836358.478
-893207,4153660,2017.0,2018.0,1930.0,PRIVATE,14,Toronto-Danforth,5 DONLANDS AVE,4,24,2019-01-10,71,Evaluation needs to be conducted in 2 years,14,3.0,4.0,5.0,3.0,4.0,3.0,,4.0,,,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,,,S1427,43.6807286698,-79.3371951618,317910.956,4837654.388
-893208,4153652,2018.0,2018.0,1922.0,PRIVATE,14,Toronto-Danforth,796 CARLAW AVE,4,31,2019-01-10,58,Evaluation needs to be conducted in 1 year,13,3.0,3.0,3.0,3.0,,3.0,,3.0,,,3.0,3.0,2.0,3.0,3.0,3.0,,3.0,,,S1425,43.678845919,-79.34781782399999,317054.646,4837444.5819999995
-893209,4154684,2017.0,2018.0,1950.0,PRIVATE,8,Eglinton-Lawrence,2177 AVENUE RD,4,68,2019-01-10,88,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,5.0,4.0,,5.0,5.0,3.0,5.0,5.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,N0821,43.7414140473,-79.4211970066,311131.787,4844386.431
-893210,4154685,2017.0,2018.0,1950.0,PRIVATE,8,Eglinton-Lawrence,2181 AVENUE RD,4,64,2019-01-10,83,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,5.0,4.0,,5.0,4.0,3.0,4.0,5.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,N0821,43.7418257579,-79.4213046312,311123.075,4844432.162
-893211,4155334,2017.0,2018.0,1954.0,PRIVATE,2,Etobicoke Centre,11 ANGLESEY BLVD,4,39,2019-01-10,74,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,3.0,4.0,3.0,,4.0,,4.0,4.0,3.0,3.0,4.0,3.0,4.0,,4.0,4.0,,W0229,43.6647200008,-79.5208076953,303106.196,4835863.495
-893212,4155316,2017.0,2018.0,1953.0,PRIVATE,2,Etobicoke Centre,12 ANGLESEY BLVD,3,38,2019-01-10,71,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,2.0,4.0,2.0,,3.0,,,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0229,43.6655032213,-79.52118310739999,303075.94899999996,4835950.515
-893213,4154834,2017.0,2018.0,1968.0,PRIVATE,17,Don Valley North,20 GODSTONE RD,15,174,2019-01-10,78,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,3.0,4.0,3.0,2.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,3.0,N1727,43.780638469399996,-79.3474983213,317059.92600000004,4848752.364
-893214,4154832,2017.0,2018.0,1965.0,PRIVATE,17,Don Valley North,40 GODSTONE RD,16,176,2019-01-10,90,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,N1727,43.7822996863,-79.3478742316,317029.336,4848936.868
-893215,4155386,2017.0,2018.0,1960.0,PRIVATE,2,Etobicoke Centre,25 EVA RD,5,48,2019-01-10,77,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,4.0,4.0,3.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,W0233,43.638931663,-79.56335609899999,299581.049,4833030.633
-893216,4155625,2017.0,2018.0,1970.0,TCHC,5,York South-Weston,20-50 FALSTAFF AVE,19,224,2019-01-10,71,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,3.0,5.0,3.0,2.0,4.0,4.0,3.0,4.0,5.0,4.0,2.0,3.0,3.0,4.0,3.0,4.0,,W0522,43.716053068,-79.505965893,304399.131,4841621.154
-893217,4155999,2017.0,2018.0,1970.0,TCHC,5,York South-Weston,30 FALSTAFF AVE,19,221,2019-01-10,71,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,2.0,5.0,3.0,2.0,4.0,4.0,3.0,4.0,5.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,,W0522,43.7164211106,-79.5052233382,304363.605,4841606.944
-893218,4153700,2017.0,2018.0,1964.0,PRIVATE,19,Beaches-East York,4 NEWBOLD AVE,4,12,2019-01-10,74,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,4.0,4.0,4.0,,3.0,,3.0,4.0,4.0,5.0,4.0,2.0,4.0,,4.0,3.0,,S1934,43.675371432,-79.31815704,319446.953,4837063.38
-893219,4153487,2017.0,2018.0,1923.0,PRIVATE,13,Toronto Centre,33 MAITLAND ST,3,37,2019-01-10,76,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,3.0,3.0,3.0,,4.0,,,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,4.0,,S1326,43.6638932658,-79.3826414877,314249.38399999996,4835777.947
-893220,4153495,2017.0,2018.0,1909.0,PRIVATE,13,Toronto Centre,42 MAITLAND ST,4,27,2019-01-10,79,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,3.0,5.0,3.0,4.0,4.0,,4.0,4.0,,S1326,43.6646189341,-79.38211083729999,314292.07,4835858.618
-893221,4155377,2017.0,2018.0,1965.0,PRIVATE,2,Etobicoke Centre,210 MARKLAND DR,13,151,2019-01-10,78,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,3.0,4.0,3.0,,5.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,W0233,43.6301975537,-79.5798906401,298337.645,4832030.995
-893222,4155385,2017.0,2018.0,1960.0,PRIVATE,2,Etobicoke Centre,351 THE WEST MALL,5,49,2019-01-10,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,4.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,W0233,43.638729618999996,-79.564232582,299601.61,4832978.702
-893223,4155389,2017.0,2018.0,1970.0,PRIVATE,2,Etobicoke Centre,361 THE WEST MALL,16,141,2019-01-10,71,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,3.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,3.0,3.0,3.0,4.0,3.0,,W0233,43.64088681,-79.564713058,299564.642,4833089.72
-893224,4154427,2018.0,2018.0,1968.0,PRIVATE,6,York Centre,2900 KEELE ST,3,12,2019-01-10,53,Evaluation needs to be conducted in 1 year,15,3.0,2.0,2.0,3.0,,3.0,,4.0,,,3.0,2.0,3.0,3.0,2.0,2.0,3.0,2.0,3.0,,N0627,43.7339448513,-79.4841475929,306061.54,4843553.804
-893225,4154440,2018.0,2018.0,1965.0,PRIVATE,6,York Centre,2960 KEELE ST,3,41,2019-01-10,74,Evaluation needs to be conducted in 2 years,17,4.0,4.0,3.0,4.0,5.0,3.0,,4.0,4.0,,4.0,4.0,4.0,4.0,3.0,3.0,3.0,4.0,3.0,,N0627,43.735849503000004,-79.484562864,306027.788,4843766.348
-893226,4154439,,2018.0,1954.0,PRIVATE,6,York Centre,2988 KEELE ST,3,11,2019-01-10,57,Evaluation needs to be conducted in 1 year,14,3.0,3.0,2.0,3.0,,3.0,,4.0,,,3.0,2.0,2.0,3.0,3.0,3.0,,3.0,3.0,,N0627,43.736204601000004,-79.484886345,306001.724,4843805.791999999
-893227,4153029,2017.0,2018.0,1962.0,PRIVATE,4,Parkdale-High Park,200 JAMESON AVE,12,100,2019-01-10,90,Evaluation needs to be conducted in 3 years,18,5.0,4.0,4.0,5.0,5.0,3.0,5.0,5.0,4.0,,5.0,5.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,,S0436,43.639820653,-79.4374576953,309830.477,4833098.817
-893228,4153038,2020.0,2018.0,1890.0,PRIVATE,4,Parkdale-High Park,1340 KING ST W,4,16,2019-01-10,64,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,2.0,3.0,4.0,,3.0,,,3.0,2.0,4.0,4.0,4.0,4.0,,3.0,,,S0436,43.6379541614,-79.43303340050001,310187.598,4832891.726
-893229,4152561,2017.0,2018.0,1920.0,PRIVATE,20,Scarborough Southwest,1165 KINGSTON RD,4,21,2019-01-10,79,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,E2033,43.681968905,-79.2794672741,322565.015,4837802.9
-893230,4152574,2018.0,2018.0,1959.0,PRIVATE,20,Scarborough Southwest,1336 KINGSTON RD,4,37,2019-01-10,75,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,3.0,3.0,,4.0,,3.0,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,,E2033,43.6854962871,-79.2749732512,322926.25899999996,4838195.735
-893231,4152623,2017.0,2018.0,1958.0,PRIVATE,21,Scarborough Centre,15 CRAIGTON DR,4,27,2019-01-10,71,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,3.0,3.0,4.0,,3.0,,4.0,4.0,3.0,5.0,3.0,3.0,3.0,4.0,4.0,3.0,,E2131,43.727070860699996,-79.30145728810001,320780.078,4842809.1
-893232,4283460,2018.0,2018.0,1950.0,PRIVATE,2,Etobicoke Centre,4 ANGLESEY BLVD,3,20,2019-01-09,72,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,3.0,4.0,3.0,,3.0,,,4.0,2.0,3.0,4.0,4.0,4.0,,3.0,4.0,,W0229,43.6660993738,-79.5203712408,303141.44399999996,4836016.728
-893233,4415827,2018.0,2018.0,1928.0,PRIVATE,13,Toronto Centre,438 JARVIS ST,3,30,2019-01-09,79,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,,,S1326,43.66542483640001,-79.3783580132,314594.61100000003,4835948.566000001
-893234,4155176,2017.0,2018.0,1968.0,PRIVATE,5,York South-Weston,200 WOOLNER AVE,16,304,2019-01-09,70,Evaluation needs to be conducted in 2 years,18,3.0,3.0,5.0,3.0,4.0,4.0,3.0,3.0,5.0,,3.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,,W0539,43.672863752299996,-79.4916650817,305456.466,4836767.943
-893235,4155177,2017.0,2018.0,1968.0,PRIVATE,5,York South-Weston,210 WOOLNER AVE,9,188,2019-01-09,68,Evaluation needs to be conducted in 2 years,18,3.0,3.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,,W0539,43.6724874723,-79.4924156199,305395.95,4836726.135
-893236,4154215,2017.0,2018.0,1964.0,PRIVATE,7,Humber River-Black Creek,1746 WILSON AVE,3,10,2019-01-09,60,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0734,43.7197813249,-79.5153042212,303551.38399999996,4841980.352
-893237,4152701,2017.0,2018.0,1955.0,PRIVATE,21,Scarborough Centre,1191 BIRCHMOUNT RD,4,41,2019-01-09,69,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,3.0,,3.0,3.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,E2133,43.743041446999996,-79.2825115341,322301.768,4844587.131
-893238,4152720,2017.0,2018.0,1950.0,PRIVATE,21,Scarborough Centre,1555 BIRCHMOUNT RD,6,46,2019-01-09,74,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,,4.0,4.0,5.0,4.0,4.0,3.0,3.0,4.0,3.0,,E2128,43.760627747200004,-79.289722515,321716.055,4846539.39
-893239,4153034,2017.0,2018.0,1957.0,PRIVATE,4,Parkdale-High Park,177 JAMESON AVE,7,73,2019-01-09,73,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,3.0,4.0,,4.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,,S0436,43.6385987342,-79.4361728843,309934.239,4832963.146000001
-893240,4153025,2018.0,2018.0,1965.0,PRIVATE,4,Parkdale-High Park,182 JAMESON AVE,11,82,2019-01-09,59,Evaluation needs to be conducted in 1 year,17,3.0,2.0,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,4.0,3.0,,,S0436,43.6389025378,-79.4370268337,309865.315,4832996.847
-893241,4153573,2017.0,2018.0,1975.0,TCHC,13,Toronto Centre,251 SHERBOURNE ST,7,200,2019-01-09,53,Evaluation needs to be conducted in 1 year,18,2.0,3.0,3.0,2.0,2.0,3.0,2.0,3.0,2.0,,2.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,4.0,,S1329,43.659299401000006,-79.3709200965,315195.512,4835268.965
-893242,4156374,2017.0,2018.0,1975.0,TCHC,13,Toronto Centre,257 SHERBOURNE ST,4,102,2019-01-09,62,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,2.0,4.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,,S1329,43.6593567184,-79.3711764365,315174.827,4835275.301
-893243,4153231,2017.0,2018.0,1972.0,SOCIAL HOUSING,11,University-Rosedale,138 PEARS AVE,7,96,2019-01-09,64,Evaluation needs to be conducted in 1 year,17,3.0,3.0,5.0,1.0,3.0,3.0,,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,3.0,3.0,S1127,43.6755554537,-79.3981323279,313033.034,4837080.904
-893244,4153650,2017.0,2018.0,1990.0,PRIVATE,14,Toronto-Danforth,768 PAPE AVE,3,15,2019-01-09,70,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,3.0,3.0,3.0,,4.0,,,3.0,4.0,5.0,4.0,3.0,3.0,3.0,4.0,3.0,,S1425,43.681065593599996,-79.3460950974,317193.343,4837690.477
-893245,4153618,2018.0,2018.0,1960.0,PRIVATE,14,Toronto-Danforth,852 BROADVIEW AVE,4,21,2019-01-09,72,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,3.0,3.0,,4.0,,,5.0,3.0,5.0,3.0,4.0,3.0,,3.0,2.0,,S1424,43.679158068599996,-79.35858130359999,316187.0,4837476.8
-893246,4154105,2017.0,2018.0,1955.0,PRIVATE,14,Toronto-Danforth,280 SAMMON AVE,4,34,2019-01-09,74,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,,3.0,4.0,4.0,5.0,3.0,4.0,5.0,,3.0,4.0,,S1426,43.686640553000004,-79.3370117361,317924.456,4838311.197
-893247,4154828,2017.0,2018.0,1967.0,PRIVATE,17,Don Valley North,185 SHAUGHNESSY BLVD,17,180,2019-01-09,87,Evaluation needs to be conducted in 3 years,20,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,5.0,3.0,5.0,5.0,3.0,5.0,N1727,43.7818416283,-79.3541987634,316520.358,4848885.074
-893248,4154216,2017.0,2018.0,1973.0,PRIVATE,7,Humber River-Black Creek,1748 WILSON AVE,3,10,2019-01-09,69,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,4.0,,4.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,4.0,3.0,3.0,4.0,,W0734,43.719712611300004,-79.51558277630001,303528.939,4841972.723
-893249,4269230,2017.0,2018.0,1959.0,PRIVATE,20,Scarborough Southwest,508 DANFORTH RD,3,24,2019-01-09,80,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,E2030,43.7092676432,-79.2670048703,323561.223,4840838.393
-893250,4153699,2017.0,2018.0,1958.0,PRIVATE,19,Beaches-East York,1691 GERRARD ST E,7,66,2019-01-09,77,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,4.0,4.0,,4.0,4.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,,S1934,43.675718937,-79.3175243078,319498.149,4837101.145
-893251,4153703,2017.0,2018.0,2009.0,PRIVATE,19,Beaches-East York,1908 GERRARD ST E,5,28,2019-01-09,75,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,4.0,4.0,4.0,,4.0,4.0,,4.0,4.0,3.0,3.0,3.0,4.0,4.0,4.0,,,S1934,43.6804613958,-79.3122562519,319921.74,4837628.967
-893252,4331737,,2018.0,1954.0,PRIVATE,20,Scarborough Southwest,2511 GERRARD ST E,3,11,2019-01-09,77,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,3.0,,4.0,,,4.0,3.0,4.0,4.0,4.0,4.0,,4.0,4.0,,E2033,43.6873957416,-79.2836217678,322228.49100000004,4838404.904
-893253,4154835,2017.0,2018.0,1965.0,PRIVATE,17,Don Valley North,8 GODSTONE RD,16,164,2019-01-09,78,Evaluation needs to be conducted in 2 years,20,5.0,4.0,5.0,4.0,3.0,4.0,3.0,3.0,5.0,3.0,3.0,5.0,5.0,3.0,4.0,4.0,4.0,5.0,3.0,3.0,N1727,43.7801532474,-79.3463837726,317149.74199999997,4848698.62
-893254,4154830,2017.0,2018.0,1966.0,PRIVATE,17,Don Valley North,20 ESTERBROOKE AVE,15,134,2019-01-09,93,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,,5.0,5.0,5.0,3.0,5.0,4.0,4.0,5.0,3.0,5.0,N1727,43.7798043698,-79.3506939201,316802.87100000004,4848659.234
-893255,4155623,2017.0,2018.0,1955.0,TCHC,5,York South-Weston,1620 LAWRENCE AVE W,3,13,2019-01-09,68,Evaluation needs to be conducted in 2 years,17,2.0,2.0,3.0,3.0,3.0,5.0,,4.0,,5.0,4.0,4.0,4.0,3.0,2.0,2.0,4.0,4.0,4.0,,W0526,43.7064506482,-79.4893217524,305627.966,4840469.963
-893256,4155171,2017.0,2018.0,1959.0,PRIVATE,5,York South-Weston,2202 WESTON RD,6,97,2019-01-09,61,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,3.0,3.0,3.0,2.0,4.0,4.0,2.0,2.0,3.0,3.0,4.0,3.0,3.0,5.0,2.0,2.0,,W0524,43.703250055,-79.526966387,302610.793,4840145.125
-893257,4156510,2017.0,2018.0,1974.0,TCHC,5,York South-Weston,720 TRETHEWEY DR,19,204,2019-01-09,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,3.0,3.0,4.0,4.0,4.0,,4.0,5.0,4.0,4.0,5.0,4.0,4.0,3.0,3.0,5.0,W0528,43.697963611000006,-79.50094174899999,304708.284,4839557.3780000005
-893258,4221313,2017.0,2018.0,1920.0,PRIVATE,11,University-Rosedale,110 WALMER RD,4,10,2019-01-09,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,2.0,2.0,,S1126,43.6714919471,-79.4073443984,312256.124,4836619.554
-893259,4155384,2017.0,2018.0,1950.0,PRIVATE,2,Etobicoke Centre,339 THE WEST MALL,5,51,2019-01-09,66,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,2.0,,W0233,43.638068798,-79.563940807,299625.092,4832905.27
-893260,4155390,2017.0,2018.0,1962.0,PRIVATE,2,Etobicoke Centre,350 THE WEST MALL,6,55,2019-01-09,78,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,3.0,4.0,5.0,4.0,4.0,3.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,W0233,43.639035156999995,-79.564993488,299540.24600000004,4833012.694
-893261,4155287,2017.0,2018.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,2 KINGS POINT DR,4,16,2019-01-09,78,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,4.0,4.0,5.0,,3.0,,3.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,3.0,4.0,,W0327,43.639372903,-79.4944231531,305234.286,4833047.319
-893262,4155286,2017.0,2018.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,4 KINGS POINT DR,4,16,2019-01-09,75,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,3.0,5.0,,4.0,,3.0,4.0,4.0,5.0,3.0,4.0,4.0,5.0,3.0,4.0,,W0327,43.6395029387,-79.4940316467,305265.876,4833061.767
-893263,4155859,2017.0,2018.0,1960.0,PRIVATE,13,Toronto Centre,433 JARVIS ST,9,144,2019-01-09,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,S1326,43.663909713500004,-79.3766153717,314735.394,4835780.455
-893264,4155315,2017.0,2018.0,1960.0,PRIVATE,2,Etobicoke Centre,8 ANGLESEY BLVD,4,23,2019-01-09,73,Evaluation needs to be conducted in 2 years,17,4.0,5.0,5.0,3.0,3.0,2.0,,3.0,,3.0,4.0,3.0,5.0,4.0,4.0,4.0,3.0,3.0,4.0,,W0229,43.665842728,-79.5207230628,303113.062,4835988.223
-893265,4154213,2017.0,2018.0,1950.0,PRIVATE,7,Humber River-Black Creek,1742 WILSON AVE,3,10,2019-01-08,68,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,4.0,3.0,4.0,,3.0,,3.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,,W0734,43.71990129,-79.5147268403,303597.907,4841993.67
-893266,4155267,2017.0,2018.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,10 HILL HEIGHTS RD,4,34,2019-01-08,54,Evaluation needs to be conducted in 1 year,17,3.0,2.0,3.0,3.0,3.0,3.0,,3.0,,2.0,3.0,3.0,3.0,2.0,3.0,2.0,3.0,2.0,3.0,,W0327,43.639073561000004,-79.4920727048,305423.94,4833014.077
-893267,4153470,2017.0,2018.0,1940.0,PRIVATE,13,Toronto Centre,1 HOMEWOOD AVE,4,67,2019-01-08,75,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,4.0,,3.0,4.0,5.0,3.0,3.0,4.0,,3.0,,,S1326,43.663246011000005,-79.374195362,314930.417,4835707.967
-893268,4154425,2017.0,2018.0,1945.0,PRIVATE,6,York Centre,2852 KEELE ST,3,11,2019-01-08,88,Evaluation needs to be conducted in 3 years,15,5.0,4.0,5.0,5.0,5.0,4.0,,5.0,,,5.0,5.0,4.0,4.0,4.0,4.0,,4.0,3.0,,N0627,43.7314423393,-79.4836241974,306103.75,4843275.795
-893269,4154422,2017.0,2018.0,1960.0,PRIVATE,6,York Centre,2864 KEELE ST,3,11,2019-01-08,83,Evaluation needs to be conducted in 2 years,15,5.0,5.0,4.0,5.0,5.0,5.0,,4.0,,,5.0,3.0,3.0,4.0,3.0,4.0,,4.0,3.0,,N0627,43.732140253699995,-79.4838447849,306085.967,4843353.326
-893270,4153032,2018.0,2018.0,1965.0,PRIVATE,4,Parkdale-High Park,165 JAMESON AVE,7,82,2019-01-08,72,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,4.0,,4.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,2.0,,S0436,43.63799773979999,-79.4358904855,309957.07300000003,4832896.397
-893271,4153018,2017.0,2018.0,1960.0,PRIVATE,4,Parkdale-High Park,170 JAMESON AVE,11,86,2019-01-08,82,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,5.0,4.0,4.0,,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S0436,43.638273606800006,-79.4368190607,309882.13,4832926.99
-893272,4155180,2017.0,2018.0,1964.0,PRIVATE,5,York South-Weston,777 JANE ST,9,106,2019-01-08,66,Evaluation needs to be conducted in 2 years,18,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,2.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,W0539,43.6730591704,-79.4935959279,305300.77,4836789.64
-893273,4155181,2017.0,2018.0,1964.0,PRIVATE,5,York South-Weston,787 JANE ST,9,107,2019-01-08,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,5.0,3.0,2.0,3.0,2.0,3.0,2.0,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,W0539,43.6734652134,-79.4937789732,305286.007,4836834.748
-893274,4152735,2017.0,2018.0,1976.0,PRIVATE,21,Scarborough Centre,1181 ELLESMERE RD,4,32,2019-01-08,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,3.0,3.0,3.0,3.0,5.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,,E2129,43.767770540600004,-79.2692020399,323366.141,4847337.315
-893275,4152736,2017.0,2018.0,1976.0,PRIVATE,21,Scarborough Centre,1191 ELLESMERE RD,4,27,2019-01-08,74,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,5.0,,4.0,3.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,,E2129,43.7678832058,-79.2689051432,323390.00899999996,4847349.898
-893276,4156303,2017.0,2018.0,1961.0,PRIVATE,19,Beaches-East York,108 GOODWOOD PARK CRT,6,120,2019-01-08,77,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,,S1930,43.694890666999996,-79.293643202,321418.24,4839236.464
-893277,4153572,2017.0,2018.0,1980.0,TCHC,13,Toronto Centre,310 DUNDAS ST E,7,155,2019-01-08,68,Evaluation needs to be conducted in 2 years,20,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,S1329,43.658647098500005,-79.3706942093,315213.842,4835196.523
-893278,4153581,2017.0,2018.0,1976.0,TCHC,13,Toronto Centre,330 GERRARD ST E,7,81,2019-01-08,69,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,,4.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,4.0,S1327,43.66260055,-79.365387025,315640.938,4835637.373
-893279,4155380,2019.0,2018.0,1970.0,PRIVATE,2,Etobicoke Centre,320 THE WEST MALL,3,17,2019-01-08,75,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,,,4.0,2.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,W0233,43.636889686,-79.5635303983,299658.36600000004,4832773.299
-893280,4155379,2017.0,2018.0,1968.0,PRIVATE,2,Etobicoke Centre,328 THE WEST MALL,3,32,2019-01-08,70,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,4.0,4.0,3.0,,3.0,3.0,3.0,3.0,3.0,5.0,4.0,3.0,4.0,3.0,4.0,3.0,,W0233,43.637313338599995,-79.564053632,299616.185,4832820.397
-893281,4155391,2017.0,2018.0,1965.0,PRIVATE,2,Etobicoke Centre,336 THE WEST MALL,3,10,2019-01-08,75,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,4.0,4.0,,3.0,,4.0,4.0,2.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,,W0233,43.6378421454,-79.5644587873,299583.542,4832879.17
-893282,4415696,2018.0,2018.0,1928.0,PRIVATE,13,Toronto Centre,432 JARVIS ST,3,26,2019-01-08,80,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,,,S1326,43.6652814395,-79.37830549819999,314598.869,4835932.642
-893283,4155268,2017.0,2018.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,8 HILL HEIGHTS RD,4,27,2019-01-08,54,Evaluation needs to be conducted in 1 year,16,3.0,3.0,2.0,3.0,2.0,4.0,,3.0,,,3.0,3.0,3.0,2.0,2.0,2.0,3.0,2.0,3.0,,W0327,43.6391002088,-79.4927582679,305368.622,4833017.033
-893284,4154214,2017.0,2018.0,1950.0,PRIVATE,7,Humber River-Black Creek,1744 WILSON AVE,3,10,2019-01-08,66,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,,4.0,3.0,3.0,3.0,4.0,4.0,3.0,4.0,3.0,3.0,,W0734,43.7198292201,-79.5150038908,303575.583,4841985.6680000005
-893285,4154412,2017.0,2018.0,1965.0,PRIVATE,6,York Centre,2782 KEELE ST,4,27,2019-01-07,68,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,2.0,4.0,,4.0,3.0,,3.0,4.0,5.0,4.0,3.0,3.0,3.0,4.0,3.0,,N0627,43.7279008262,-79.4829037793,306161.851,4842882.356000001
-893286,4155382,2017.0,2018.0,1962.0,PRIVATE,2,Etobicoke Centre,311 THE WEST MALL,7,109,2019-01-07,70,Evaluation needs to be conducted in 2 years,18,3.0,3.0,5.0,2.0,4.0,4.0,3.0,3.0,4.0,,3.0,5.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,W0233,43.6365103403,-79.562181408,299767.179,4832731.073
-893287,4155605,2017.0,2018.0,1970.0,TCHC,13,Toronto Centre,200 WELLESLEY ST E,29,719,2019-01-07,58,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,2.0,3.0,3.0,2.0,3.0,3.0,,3.0,3.0,2.0,3.0,2.0,3.0,3.0,3.0,4.0,,S1323,43.668062810600006,-79.3736609333,314972.971,4836242.188999999
-893288,4155184,2017.0,2018.0,1972.0,PRIVATE,5,York South-Weston,1059 WESTON RD,3,14,2019-01-07,60,Evaluation needs to be conducted in 1 year,15,3.0,1.0,5.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,W0535,43.68559996729999,-79.486207625,305896.352,4838182.921
-893289,4152673,2017.0,2018.0,1965.0,PRIVATE,20,Scarborough Southwest,720 KENNEDY RD,14,186,2019-01-07,84,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,5.0,4.0,5.0,3.0,4.0,4.0,,4.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,,E2023,43.7295838093,-79.26735641350001,323526.601,4843095.346
-893290,4154037,2017.0,2018.0,1971.0,PRIVATE,19,Beaches-East York,7 CRESCENT PL,29,584,2019-01-07,74,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,,3.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,2.0,,S1930,43.695055073999995,-79.291784761,321568.003,4839255.097
-893291,4284986,2017.0,2018.0,1971.0,PRIVATE,19,Beaches-East York,9 CRESCENT PL,29,587,2019-01-07,74,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,,3.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,2.0,,S1930,43.695648592,-79.291287219,321619.854,4839297.583000001
-893292,4156314,2017.0,2018.0,1971.0,PRIVATE,19,Beaches-East York,11 CRESCENT PL,29,159,2019-01-07,66,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,,S1930,43.695136718,-79.290535808,321603.253,4839337.069
-893293,4153619,2017.0,2018.0,1940.0,PRIVATE,14,Toronto-Danforth,846-850 BROADVIEW AVE,3,24,2019-01-07,75,Evaluation needs to be conducted in 2 years,16,4.0,5.0,4.0,4.0,4.0,3.0,,4.0,,,4.0,4.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,,S1424,,,316188.231,4837458.031
-893294,4155604,2017.0,2018.0,1961.0,TCHC,13,Toronto Centre,320 SEATON ST,6,25,2019-01-07,63,Evaluation needs to be conducted in 1 year,18,4.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1323,43.662525313,-79.371459917,315151.16,4835628.239
-893295,4155633,2017.0,2018.0,1957.0,TCHC,8,Eglinton-Lawrence,6 REPLIN RD,4,30,2019-01-07,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,,,4.0,4.0,3.0,3.0,4.0,3.0,,4.0,3.0,,N0823,43.717214245200005,-79.4429757151,309379.42699999997,4841696.5430000005
-893296,4155356,2017.0,2018.0,1970.0,PRIVATE,2,Etobicoke Centre,34 DIXINGTON CRES,5,60,2019-01-07,73,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,4.0,3.0,4.0,,3.0,5.0,,3.0,5.0,5.0,3.0,4.0,3.0,3.0,1.0,4.0,,W0223,43.696411866000005,-79.541932687,301404.12899999996,4839385.943
-893297,4155357,2018.0,2018.0,1963.0,PRIVATE,2,Etobicoke Centre,38 DIXINGTON CRES,10,111,2019-01-07,78,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,3.0,4.0,4.0,4.0,3.0,4.0,,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,W0223,43.69652256,-79.54070430600001,301503.157,4839398.193
-893298,4153477,2017.0,2018.0,1927.0,PRIVATE,13,Toronto Centre,134 CARLTON ST,3,35,2019-01-07,77,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,4.0,3.0,4.0,4.0,,3.0,,,S1326,43.663016123999995,-79.375476419,314827.13399999996,4835682.272
-893299,4153476,2017.0,2018.0,1973.0,PRIVATE,13,Toronto Centre,140 CARLTON ST,23,375,2019-01-07,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1326,43.66315507,-79.375194012,314849.88800000004,4835697.742
-893300,4152680,2017.0,2018.0,1958.0,PRIVATE,20,Scarborough Southwest,2231 EGLINTON AVE E,6,110,2019-01-07,80,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,,E2023,43.729743761,-79.275420911,322876.591,4843112.275
-893301,4153041,2018.0,2018.0,1931.0,PRIVATE,4,Parkdale-High Park,1 ELM GROVE AVE,3,12,2019-01-07,61,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,,4.0,,3.0,5.0,,3.0,3.0,4.0,3.0,2.0,2.0,,2.0,,,S0436,43.6385635779,-79.4300912063,310424.932,4832959.61
-893302,4154811,2017.0,2018.0,1968.0,PRIVATE,17,Don Valley North,24 FOREST MANOR RD,10,128,2019-01-07,97,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,4.0,,N1730,43.771058443,-79.344641223,317291.63,4847689.442
-893303,4154177,2017.0,2018.0,1947.0,PRIVATE,15,Don Valley West,871 MILLWOOD RD,3,15,2019-01-07,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,5.0,3.0,2.0,3.0,,3.0,,3.0,3.0,2.0,5.0,3.0,4.0,3.0,,3.0,3.0,,N1535,43.70375659770001,-79.3653122731,315639.846,4840208.712
-893304,4152717,2017.0,2018.0,1962.0,PRIVATE,21,Scarborough Centre,2230 LAWRENCE AVE E,7,64,2019-01-07,74,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,3.0,5.0,4.0,3.0,3.0,,2.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,3.0,,E2128,43.7491756085,-79.2789651646,322585.594,4845269.362
-893305,4152715,2017.0,2018.0,1960.0,PRIVATE,21,Scarborough Centre,2260 LAWRENCE AVE E,5,26,2019-01-07,71,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,3.0,4.0,,4.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,3.0,,E2128,43.749400376000004,-79.2779437479,322667.789,4845294.552
-893306,4155185,2019.0,2018.0,1952.0,PRIVATE,5,York South-Weston,1061 WESTON RD,3,11,2019-01-07,59,Evaluation needs to be conducted in 1 year,16,2.0,2.0,5.0,2.0,3.0,2.0,,3.0,,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,W0535,43.6857167173,-79.48639998819999,305880.842,4838195.8889999995
-893307,4154414,2017.0,2018.0,1957.0,PRIVATE,6,York Centre,2842 KEELE ST,3,12,2019-01-07,60,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,N0627,43.73086204810001,-79.4833771869,306123.66,4843211.3319999995
-893308,4154823,2017.0,2018.0,1971.0,PRIVATE,17,Don Valley North,2600 DON MILLS RD,19,226,2019-01-05,63,Evaluation needs to be conducted in 1 year,18,5.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,3.0,2.0,3.0,3.0,3.0,2.0,3.0,4.0,,N1727,43.7762509604,-79.34860618260001,316971.632,4848264.765
-893309,4155364,2017.0,2018.0,1969.0,PRIVATE,2,Etobicoke Centre,345 DIXON RD,10,95,2019-01-04,71,Evaluation needs to be conducted in 2 years,18,5.0,5.0,5.0,2.0,3.0,3.0,3.0,3.0,3.0,,2.0,4.0,5.0,3.0,4.0,3.0,4.0,4.0,3.0,,W0222,43.69438978,-79.556392249,300238.75800000003,4839160.989
-893310,4153180,2017.0,2018.0,1960.0,PRIVATE,11,University-Rosedale,30 WALMER RD,3,40,2019-01-04,69,Evaluation needs to be conducted in 2 years,17,3.0,4.0,4.0,4.0,3.0,3.0,,3.0,2.0,,3.0,3.0,5.0,3.0,3.0,5.0,4.0,3.0,4.0,,S1126,43.667889637100004,-79.406592558,312317.184,4836219.422
-893311,4243768,2017.0,2018.0,1960.0,PRIVATE,19,Beaches-East York,156 BARRINGTON AVE,3,12,2019-01-04,75,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,4.0,4.0,4.0,,3.0,,,4.0,4.0,5.0,4.0,3.0,3.0,,4.0,3.0,,S1930,43.693721495,-79.30324878399999,320644.24199999997,4839104.731000001
-893312,4153378,2017.0,2018.0,1983.0,TCHC,10,Spadina-Fort York,575 ADELAIDE ST W,11,150,2019-01-04,71,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,,4.0,3.0,4.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,S1028,43.6445845561,-79.40368311,312554.891,4833630.518999999
-893313,4153486,2017.0,2018.0,1968.0,PRIVATE,13,Toronto Centre,100 ALEXANDER ST,12,96,2019-01-04,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1326,43.664161955299996,-79.3792187274,314525.392,4835808.179
-893314,4152718,2017.0,2018.0,1967.0,PRIVATE,21,Scarborough Centre,1475 BIRCHMOUNT RD,5,28,2019-01-04,67,Evaluation needs to be conducted in 2 years,19,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,,E2128,43.756711080100004,-79.2880430634,321852.38800000004,4846104.6110000005
-893315,4152719,2017.0,2018.0,1960.0,PRIVATE,21,Scarborough Centre,1477 BIRCHMOUNT RD,3,21,2019-01-04,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,5.0,,3.0,,,4.0,4.0,5.0,4.0,3.0,4.0,3.0,4.0,3.0,,E2128,43.7569401059,-79.2882167684,321838.336,4846130.018999999
-893316,4153504,2017.0,2018.0,1928.0,PRIVATE,13,Toronto Centre,138 WELLESLEY ST E,3,26,2019-01-04,81,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,,,S1322,43.6668236077,-79.3771743291,314689.849,4836104.096
-893317,4153031,2018.0,2018.0,1965.0,PRIVATE,4,Parkdale-High Park,157 JAMESON AVE,6,66,2019-01-04,71,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,4.0,3.0,4.0,,4.0,4.0,,2.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,,S0436,43.6376650671,-79.435751998,309968.274,4832859.448
-893318,4153020,2017.0,2018.0,1967.0,PRIVATE,4,Parkdale-High Park,160 JAMESON AVE,7,96,2019-01-04,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,,S0436,43.63765643,-79.4366087983,309899.145,4832858.438999999
-893319,4154403,2017.0,2018.0,1964.0,PRIVATE,6,York Centre,2221 JANE ST,3,12,2019-01-04,49,Building Audit,15,2.0,2.0,2.0,3.0,2.0,3.0,,3.0,,,2.0,2.0,5.0,2.0,2.0,2.0,,2.0,3.0,,N0627,43.7238402109,-79.5089780536,304061.165,4842431.169
-893320,4154404,2017.0,2018.0,1965.0,PRIVATE,6,York Centre,2233 JANE ST,5,39,2019-01-04,38,Building Audit,17,2.0,2.0,2.0,2.0,2.0,2.0,,3.0,1.0,,1.0,1.0,3.0,1.0,2.0,2.0,2.0,2.0,2.0,,N0627,43.7246876159,-79.5089652958,304062.206,4842525.308
-893321,4155192,2017.0,2018.0,1960.0,PRIVATE,5,York South-Weston,31 ROCKCLIFFE BLVD,3,39,2019-01-04,74,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,,4.0,3.0,4.0,5.0,3.0,4.0,4.0,,4.0,4.0,,W0535,43.681298308500004,-79.49092785159999,305515.835,4837704.985
-893322,4153614,2019.0,2018.0,1929.0,PRIVATE,14,Toronto-Danforth,778 BROADVIEW AVE,3,39,2019-01-04,79,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,3.0,4.0,3.0,,5.0,,,4.0,4.0,5.0,3.0,4.0,4.0,,3.0,4.0,,S1424,43.676873305,-79.359171766,316139.547,4837223.834
-893323,4153613,2017.0,2018.0,1950.0,PRIVATE,14,Toronto-Danforth,812 BROADVIEW AVE,3,24,2019-01-04,59,Evaluation needs to be conducted in 1 year,14,3.0,3.0,4.0,3.0,2.0,3.0,,3.0,,,3.0,2.0,3.0,3.0,2.0,4.0,,3.0,,,S1424,43.677863449499995,-79.3588173792,316168.205,4837332.933999999
-893324,4261240,2017.0,2018.0,1950.0,PRIVATE,14,Toronto-Danforth,814 BROADVIEW AVE,3,24,2019-01-04,57,Evaluation needs to be conducted in 1 year,14,3.0,3.0,4.0,3.0,1.0,3.0,,3.0,,,3.0,2.0,3.0,3.0,2.0,4.0,,3.0,,,S1424,43.67792961,-79.3589234686,316159.63899999997,4837340.27
-893325,4154704,2017.0,2018.0,1958.0,PRIVATE,18,Willowdale,11 CHURCHILL AVE,3,17,2019-01-04,91,Evaluation needs to be conducted in 3 years,16,5.0,3.0,5.0,4.0,4.0,5.0,4.0,5.0,,,5.0,5.0,5.0,4.0,5.0,5.0,,4.0,5.0,,N1824,43.7734165941,-79.4148210265,311641.756,4847942.3
-893326,4269245,2018.0,2018.0,1975.0,PRIVATE,18,Willowdale,6 FOREST LANEWAY,29,406,2019-01-04,91,Evaluation needs to be conducted in 3 years,18,4.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,5.0,4.0,5.0,4.0,4.0,5.0,5.0,5.0,5.0,5.0,,,N1826,,,312081.81,4846729.53
-893327,4155375,2017.0,2018.0,1965.0,PRIVATE,2,Etobicoke Centre,287 MARKLAND DR,10,118,2019-01-04,78,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,3.0,4.0,5.0,4.0,3.0,4.0,3.0,3.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,2.0,,W0233,43.6275335945,-79.5780494311,298485.94899999996,4831734.901000001
-893328,4154185,2017.0,2018.0,1950.0,PRIVATE,15,Don Valley West,715 MILLWOOD RD,3,14,2019-01-04,85,Evaluation needs to be conducted in 2 years,16,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,,5.0,5.0,4.0,5.0,5.0,4.0,4.0,,5.0,3.0,,N1535,43.7042226354,-79.3738454238,314952.036,4840259.427
-893329,4154179,2017.0,2018.0,1950.0,PRIVATE,15,Don Valley West,823 MILLWOOD RD,4,13,2019-01-04,80,Evaluation needs to be conducted in 2 years,15,4.0,5.0,4.0,4.0,4.0,3.0,,4.0,,,4.0,4.0,5.0,2.0,5.0,4.0,,4.0,4.0,,N1535,43.7046543279,-79.36880487479999,315358.19899999996,4840308.001
-893330,4253819,2017.0,2018.0,1960.0,PRIVATE,15,Don Valley West,841 MILLWOOD RD,3,18,2019-01-04,66,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,3.0,3.0,2.0,,4.0,,3.0,3.0,3.0,5.0,3.0,3.0,2.0,,4.0,4.0,,N1535,43.704354753000004,-79.3670652416,315498.457,4840274.938999999
-893331,4156586,2017.0,2018.0,1960.0,PRIVATE,15,Don Valley West,855 MILLWOOD RD,3,22,2019-01-04,62,Evaluation needs to be conducted in 1 year,17,2.0,2.0,5.0,3.0,4.0,2.0,,4.0,,3.0,3.0,3.0,5.0,4.0,3.0,2.0,2.0,4.0,2.0,,N1535,43.7041508326,-79.36627859020001,315561.894,4840252.385
-893332,4155880,2017.0,2018.0,1974.0,PRIVATE,2,Etobicoke Centre,63 WIDDICOMBE HILL BLVD,17,233,2019-01-04,83,Evaluation needs to be conducted in 2 years,19,4.0,5.0,5.0,3.0,5.0,4.0,4.0,4.0,4.0,,5.0,5.0,5.0,4.0,3.0,4.0,5.0,4.0,3.0,3.0,W0222,43.677654113,-79.554781207,300348.86699999997,4837335.591
-893333,4153175,2017.0,2018.0,1955.0,PRIVATE,11,University-Rosedale,27 WALMER RD,4,38,2019-01-04,71,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,4.0,3.0,3.0,,4.0,3.0,2.0,4.0,4.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,,S1126,43.6681530791,-79.4056958125,312389.468,4836248.77
-893334,4155381,2017.0,2018.0,1969.0,PRIVATE,2,Etobicoke Centre,306 THE WEST MALL,5,48,2019-01-04,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,5.0,,4.0,3.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,W0233,43.635999846400004,-79.5629152315,299707.924,4832674.405
-893335,4154073,2017.0,2018.0,1968.0,PRIVATE,19,Beaches-East York,114 BARRINGTON AVE,3,12,2019-01-04,68,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,4.0,3.0,3.0,4.0,,S1930,43.692368796000004,-79.302666418,320691.542,4838954.561000001
-893336,4155365,2017.0,2018.0,1961.0,PRIVATE,2,Etobicoke Centre,333 DIXON RD,6,55,2019-01-03,72,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,4.0,5.0,,3.0,4.0,,3.0,2.0,3.0,3.0,4.0,4.0,3.0,3.0,4.0,,W0222,,,300298.13399999996,4839176.844
-893337,4156206,2017.0,2018.0,1971.0,TCHC,17,Don Valley North,2 BRAHMS AVE,12,164,2019-01-03,65,Evaluation needs to be conducted in 1 year,19,4.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,4.0,N1722,43.792308051000006,-79.35878168,316167.619,4850056.03
-893338,4156429,2017.0,2018.0,1971.0,TCHC,17,Don Valley North,5 BRAHMS AVE,13,178,2019-01-03,58,Evaluation needs to be conducted in 1 year,18,2.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,,2.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,,N1722,43.792728204899994,-79.3578376974,316225.415,4850094.01
-893339,4153192,2018.0,2018.0,1963.0,PRIVATE,11,University-Rosedale,68-72 SPADINA RD,11,157,2019-01-03,56,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,3.0,3.0,,2.0,3.0,,2.0,3.0,5.0,3.0,2.0,2.0,2.0,3.0,2.0,,S1126,43.670432258000005,-79.4055781,312395.55199999997,4836492.651000001
-893340,4269412,2017.0,2018.0,1960.0,PRIVATE,19,Beaches-East York,2903 ST CLAIR AVE E,3,12,2019-01-03,71,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,4.0,3.0,3.0,,3.0,,,3.0,4.0,5.0,3.0,4.0,3.0,,3.0,4.0,,S1927,43.7077283573,-79.3012700088,320800.32399999996,4840660.273
-893341,4155690,2017.0,2018.0,1970.0,PRIVATE,19,Beaches-East York,65 HALSEY AVE,9,113,2019-01-03,76,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,4.0,S1927,43.6989642067,-79.29871129189999,321008.876,4839687.079
-893342,4153508,2017.0,2018.0,1968.0,PRIVATE,13,Toronto Centre,100 WELLESLEY ST E,28,427,2019-01-03,79,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,S1322,43.6665543282,-79.3792025495,314526.32,4836073.948
-893343,4153505,2019.0,2018.0,1931.0,PRIVATE,13,Toronto Centre,110 WELLESLEY ST E,6,48,2019-01-03,78,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,4.0,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,3.0,,S1322,43.666837468100006,-79.3774688112,314666.097,4836105.602
-893344,4154401,2017.0,2018.0,1950.0,PRIVATE,6,York Centre,2217 JANE ST,3,12,2019-01-03,60,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,3.0,4.0,3.0,3.0,,4.0,3.0,,N0627,43.7233585034,-79.508865507,304070.225,4842377.656
-893345,4154402,2017.0,2018.0,1964.0,PRIVATE,6,York Centre,2219 JANE ST,3,12,2019-01-03,59,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,,,3.0,2.0,3.0,3.0,2.0,3.0,,3.0,3.0,,N0627,43.7235999669,-79.50892215350001,304065.665,4842404.48
-893346,4155378,2017.0,2018.0,1968.0,PRIVATE,2,Etobicoke Centre,4340 BLOOR ST W,15,88,2019-01-03,70,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,3.0,4.0,,5.0,4.0,3.0,3.0,4.0,5.0,4.0,3.0,3.0,3.0,3.0,3.0,,W0233,43.632109971999995,-79.576154353,298639.087,4832244.112
-893347,4156720,2017.0,2018.0,1962.0,PRIVATE,2,Etobicoke Centre,327 DIXON RD,6,55,2019-01-03,72,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,3.0,4.0,,4.0,4.0,,3.0,1.0,5.0,4.0,4.0,4.0,3.0,3.0,4.0,,W0222,43.694646278,-79.55506382899999,300345.581,4839190.371
-893348,4153043,2019.0,2018.0,1931.0,PRIVATE,4,Parkdale-High Park,3 ELM GROVE AVE,3,12,2019-01-03,71,Evaluation needs to be conducted in 2 years,15,4.0,4.0,3.0,3.0,3.0,3.0,,4.0,,3.0,4.0,4.0,5.0,4.0,3.0,3.0,,3.0,,,S0436,43.638815334200004,-79.4301843033,310417.398,4832987.572
-893349,4155186,2017.0,2018.0,1958.0,PRIVATE,5,York South-Weston,38 LAMBTON AVE,3,26,2019-01-03,72,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,3.0,3.0,3.0,,5.0,,,3.0,4.0,5.0,3.0,3.0,3.0,,4.0,4.0,,W0535,43.68380425229999,-79.4870901288,305825.229,4837983.416999999
-893350,4155187,2017.0,2018.0,1958.0,PRIVATE,5,York South-Weston,40 LAMBTON AVE,3,26,2019-01-03,71,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,3.0,2.0,3.0,,5.0,,,3.0,4.0,5.0,2.0,3.0,4.0,,4.0,4.0,,W0535,43.6837517328,-79.4873082917,305807.641,4837977.58
-893351,4152655,2017.0,2018.0,1959.0,PRIVATE,21,Scarborough Centre,1817 VICTORIA PARK AVE,4,36,2019-01-03,67,Evaluation needs to be conducted in 2 years,17,3.0,4.0,3.0,3.0,3.0,1.0,,3.0,3.0,3.0,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,,E2126,43.74333248560001,-79.3097740889,320105.92,4844614.079
-893352,4152660,2017.0,2018.0,1960.0,PRIVATE,21,Scarborough Centre,1911 VICTORIA PARK AVE,7,91,2019-01-03,74,Evaluation needs to be conducted in 2 years,19,3.0,4.0,5.0,3.0,3.0,2.0,4.0,3.0,4.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,E2126,43.7475988109,-79.3111844084,319991.247,4845087.78
-893353,4155374,2017.0,2018.0,1959.0,PRIVATE,2,Etobicoke Centre,240 MARKLAND DR,10,113,2019-01-03,74,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,4.0,3.0,3.0,4.0,4.0,4.0,3.0,4.0,3.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,,W0233,43.6291344462,-79.5787506011,298429.535,4831912.798
-893354,4221280,2017.0,2018.0,1965.0,PRIVATE,11,University-Rosedale,6-10 WALMER RD,18,131,2019-01-03,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,3.0,4.0,3.0,3.0,4.0,4.0,,S1126,43.666995001000004,-79.406173702,312350.807,4836121.022
-893355,4153174,2017.0,2018.0,1970.0,PRIVATE,11,University-Rosedale,15 WALMER RD,10,78,2019-01-03,71,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,3.0,3.0,2.0,,4.0,3.0,3.0,3.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,S1126,43.6676214521,-79.4054920342,312405.966,4836189.727
-893356,4155191,2017.0,2018.0,1957.0,PRIVATE,5,York South-Weston,8 HECTOR AVE,3,18,2019-01-03,76,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,3.0,3.0,3.0,,5.0,,,2.0,4.0,5.0,3.0,4.0,4.0,,4.0,4.0,,W0535,43.6801785779,-79.4898358831,305603.88899999997,4837580.598
-893357,4275806,2017.0,2018.0,1960.0,PRIVATE,6,York Centre,2 WYCOMBE RD,3,40,2019-01-02,75,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,3.0,4.0,4.0,,2.0,3.0,,3.0,4.0,5.0,4.0,3.0,4.0,,4.0,4.0,,N0627,43.743000226599996,-79.48713540520001,305820.727,4844559.755
-893358,4155188,2017.0,2018.0,1954.0,PRIVATE,5,York South-Weston,2 JASPER AVE,3,22,2019-01-02,60,Evaluation needs to be conducted in 1 year,17,2.0,2.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,,W0535,43.6835075066,-79.4830125811,306153.977,4837950.505
-893359,4154186,2017.0,2018.0,1954.0,PRIVATE,15,Don Valley West,1220 BAYVIEW AVE,6,51,2019-01-02,86,Evaluation needs to be conducted in 3 years,18,4.0,4.0,5.0,4.0,4.0,5.0,,4.0,4.0,5.0,4.0,4.0,5.0,5.0,3.0,4.0,5.0,4.0,4.0,,N1535,43.6964257075,-79.37203639890001,315099.186,4839393.482
-893360,4154183,2017.0,2018.0,1950.0,PRIVATE,15,Don Valley West,1315 BAYVIEW AVE,3,38,2019-01-02,86,Evaluation needs to be conducted in 3 years,16,4.0,4.0,5.0,4.0,4.0,3.0,,5.0,,,4.0,5.0,5.0,4.0,4.0,5.0,5.0,5.0,3.0,,N1535,43.6985850004,-79.3720164996,315100.405,4839633.3889999995
-893361,4286257,2018.0,2018.0,1969.0,TCHC,12,Toronto-St. Paul's,69 HOLLY ST,4,14,2019-01-02,66,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,S1228,43.706257789,-79.396238397,313137.344,4840500.243
-893362,4155189,2017.0,2018.0,1954.0,PRIVATE,5,York South-Weston,5 A JASPER AVE,3,10,2019-01-02,71,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,3.0,3.0,4.0,,4.0,,,3.0,4.0,5.0,4.0,3.0,3.0,2.0,4.0,4.0,,W0535,43.6833549123,-79.4823636932,306206.297,4837933.562
-893363,4154859,2017.0,2018.0,1964.0,PRIVATE,16,Don Valley East,22 TINDER CRES,4,60,2019-01-02,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,5.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,,N1628,43.72645012979999,-79.3091895206,320157.292,4842738.692
-893364,4154104,2017.0,2018.0,1950.0,PRIVATE,14,Toronto-Danforth,257 TORRENS AVE,3,17,2019-01-02,76,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,3.0,3.0,3.0,,4.0,,3.0,4.0,2.0,5.0,5.0,4.0,4.0,,4.0,4.0,,S1422,43.6923348201,-79.3435916097,317392.816,4838942.808999999
-893365,4154838,2019.0,2018.0,1958.0,PRIVATE,17,Don Valley North,688 SHEPPARD AVE E,4,35,2019-01-02,71,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,2.0,4.0,,4.0,,,3.0,3.0,5.0,4.0,3.0,4.0,,4.0,4.0,,N1725,43.769190713,-79.379327637,314499.417,4847477.313
-893366,4281257,2017.0,2018.0,1960.0,PRIVATE,6,York Centre,1395 SHEPPARD AVE W,3,40,2019-01-02,75,Evaluation needs to be conducted in 2 years,16,3.0,4.0,3.0,2.0,4.0,3.0,,5.0,5.0,,4.0,4.0,5.0,3.0,5.0,3.0,,3.0,4.0,,N0627,43.7440104,-79.4880842286,305748.977,4844715.406
-893367,4155263,2017.0,2018.0,1958.0,PRIVATE,3,Etobicoke-Lakeshore,7 CROWN HILL PL,4,35,2019-01-02,67,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,,3.0,4.0,4.0,5.0,3.0,4.0,4.0,3.0,2.0,3.0,,W0327,43.6386262832,-79.4911761302,305496.279,4832964.393
-893368,4156401,2017.0,2018.0,1953.0,PRIVATE,3,Etobicoke-Lakeshore,10 CROWN HILL PL,5,26,2019-01-02,64,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,,W0327,43.639476269,-79.491647816,305457.959,4833059.771000001
-893369,4156115,2017.0,2018.0,1953.0,PRIVATE,3,Etobicoke-Lakeshore,11 CROWN HILL PL,5,26,2019-01-02,65,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,4.0,,W0327,43.639636427,-79.491738294,305450.658,4833077.563
-893370,4154048,2017.0,2018.0,1959.0,PRIVATE,19,Beaches-East York,612 DAWES RD,5,60,2019-01-02,73,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,3.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,4.0,,S1927,43.707368794,-79.295895516,321233.295,4840622.311000001
-893371,4287030,2018.0,2018.0,1917.0,PRIVATE,4,Parkdale-High Park,193 DOWLING AVE,5,16,2019-01-02,60,Evaluation needs to be conducted in 1 year,14,3.0,3.0,4.0,3.0,2.0,3.0,,3.0,,,2.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,S0436,43.6398204138,-79.43958903010001,309658.458,4833105.204
-893372,4155367,2017.0,2018.0,1964.0,PRIVATE,2,Etobicoke Centre,301 DIXON RD,16,225,2019-01-02,72,Evaluation needs to be conducted in 2 years,19,4.0,5.0,5.0,2.0,3.0,5.0,3.0,2.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,3.0,4.0,3.0,4.0,,W0222,43.694910741,-79.5525691249,300546.94399999996,4839218.677
-893373,4155366,2017.0,2018.0,1968.0,PRIVATE,2,Etobicoke Centre,311 DIXON RD,16,178,2019-01-02,68,Evaluation needs to be conducted in 2 years,18,3.0,4.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,4.0,3.0,4.0,2.0,4.0,4.0,3.0,4.0,,W0222,43.6952084517,-79.5537109023,300454.932,4839251.808
-893374,4153041,2018.0,2018.0,1931.0,PRIVATE,4,Parkdale-High Park,1 ELM GROVE AVE,3,12,2019-01-02,58,Evaluation needs to be conducted in 1 year,13,3.0,3.0,3.0,3.0,,4.0,,3.0,,,3.0,3.0,4.0,3.0,2.0,2.0,,2.0,,,S0436,43.6385635779,-79.4300912063,310424.932,4832959.61
-893375,4153042,2017.0,2018.0,1957.0,PRIVATE,4,Parkdale-High Park,1 A ELM GROVE AVE,3,12,2019-01-02,62,Evaluation needs to be conducted in 1 year,13,2.0,3.0,3.0,2.0,,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,4.0,,3.0,,,S0436,43.6386867446,-79.4301347335,310421.409,4832973.29
-893376,4154142,2017.0,2018.0,1945.0,PRIVATE,14,Toronto-Danforth,9 ELMSDALE RD,4,38,2019-01-02,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,3.0,4.0,2.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1422,43.6947032989,-79.3438349968,317372.708,4839205.914
-893377,4154059,2017.0,2018.0,1955.0,PRIVATE,19,Beaches-East York,127 GLENWOOD CRES,3,57,2019-01-02,74,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,4.0,4.0,4.0,,3.0,,3.0,3.0,4.0,5.0,4.0,3.0,3.0,,4.0,4.0,,S1927,43.7025056164,-79.3120345151,319934.109,4840078.057
-893378,4155812,2017.0,2018.0,1970.0,PRIVATE,6,York Centre,200 EXBURY RD,20,154,2019-01-02,67,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,3.0,2.0,3.0,5.0,2.0,4.0,,5.0,5.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,,N0627,43.728487665,-79.509556463,304021.422,4842944.744
-893379,4155615,2017.0,2018.0,1977.0,TCHC,12,Toronto-St. Paul's,70 DUNFIELD AVE,16,156,2019-01-02,67,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,,4.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,,,S1228,43.706491428999996,-79.395574467,313200.179,4840510.049
-893380,4152661,2017.0,2018.0,1965.0,PRIVATE,21,Scarborough Centre,5 LYNVALLEY CRES,7,92,2019-01-02,73,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,3.0,4.0,3.0,2.0,4.0,,3.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,,E2126,43.747732393,-79.310648196,320034.137,4845103.674
-893381,4153336,2017.0,2018.0,1983.0,TCHC,12,Toronto-St. Paul's,2 LAMBERTLODGE AVE,5,64,2019-01-02,72,Evaluation needs to be conducted in 2 years,19,5.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,,S1234,43.673917543,-79.422657829,311020.734,4836888.76
-893382,4153513,2017.0,2018.0,1929.0,PRIVATE,13,Toronto Centre,64 WELLESLEY ST E,5,60,2019-01-02,69,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,3.0,3.0,,3.0,3.0,4.0,4.0,3.0,5.0,3.0,4.0,3.0,,3.0,2.0,,S1322,43.665901023,-79.381806918,314316.12100000004,4836002.031
-893383,4264285,2017.0,2018.0,1900.0,PRIVATE,13,Toronto Centre,561 JARVIS ST,3,28,2019-01-02,66,Evaluation needs to be conducted in 2 years,14,4.0,4.0,3.0,3.0,3.0,4.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,,,S1322,43.6683620869,-79.3786856506,314567.707,4836274.842
-893384,4275811,2017.0,2018.0,1960.0,PRIVATE,6,York Centre,10 WYCOMBE RD,3,40,2019-01-02,76,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,3.0,4.0,4.0,,2.0,5.0,,3.0,4.0,5.0,3.0,4.0,4.0,,3.0,4.0,,N0627,43.7432824572,-79.4876757538,305808.244,4844545.228
-893385,4156373,2017.0,2018.0,1963.0,TCHC,2,Etobicoke Centre,58 WATERTON RD,6,47,2018-12-31,56,Evaluation needs to be conducted in 1 year,19,3.0,2.0,2.0,2.0,3.0,2.0,3.0,3.0,4.0,,2.0,4.0,4.0,2.0,2.0,3.0,3.0,3.0,3.0,3.0,W0224,43.693937882,-79.51688954800001,303416.73699999996,4839111.034
-893386,4155659,2017.0,2018.0,1967.0,TCHC,1,Etobicoke North,75 TANDRIDGE CRES,10,221,2018-12-31,47,Building Audit,18,2.0,2.0,2.0,2.0,3.0,2.0,2.0,3.0,3.0,,2.0,4.0,2.0,2.0,2.0,2.0,3.0,2.0,2.0,,W0131,43.728881268,-79.54672209600001,301020.19,4842993.242
-893387,4155424,2017.0,2018.0,1984.0,TCHC,1,Etobicoke North,2765 ISLINGTON AVE,14,237,2018-12-31,67,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,2.0,5.0,3.0,3.0,3.0,4.0,,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,,W0126,43.7435749087,-79.5669913807,299388.901,4844625.794
-893388,4155617,2017.0,2018.0,1971.0,TCHC,7,Humber River-Black Creek,2999 JANE ST,15,188,2018-12-31,71,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,2.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,,W0730,43.754346500699995,-79.5161715175,303482.32399999996,4845820.353999999
-893389,4155620,2017.0,2018.0,1970.0,TCHC,7,Humber River-Black Creek,4400 JANE ST,12,164,2018-12-31,77,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,3.0,4.0,3.0,4.0,3.0,5.0,,4.0,5.0,4.0,4.0,4.0,4.0,5.0,3.0,3.0,4.0,W0724,43.7652223646,-79.52014173479999,303162.909,4847028.675
-893390,4156195,2017.0,2018.0,1967.0,TCHC,7,Humber River-Black Creek,415 DRIFTWOOD AVE,16,135,2018-12-31,77,Evaluation needs to be conducted in 2 years,18,5.0,3.0,4.0,3.0,5.0,4.0,3.0,4.0,4.0,,4.0,5.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,,W0725,43.7673194757,-79.5164765451,303458.049,4847261.584
-893391,4154465,2017.0,2018.0,1970.0,TCHC,7,Humber River-Black Creek,3680 KEELE ST,3,238,2018-12-31,86,Evaluation needs to be conducted in 3 years,18,5.0,3.0,5.0,3.0,4.0,4.0,4.0,4.0,5.0,,5.0,5.0,5.0,4.0,4.0,4.0,,4.0,4.0,5.0,W0731,43.753748768,-79.48953565,305627.036,4845754.8
-893392,4155813,2017.0,2018.0,1973.0,TCHC,1,Etobicoke North,2063 ISLINGTON AVE,12,162,2018-12-31,62,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,4.0,3.0,3.0,3.0,3.0,4.0,2.0,3.0,,W0135,43.701195372,-79.547954529,300919.034,4839917.6389999995
-893393,4155705,2017.0,2018.0,1973.0,TCHC,1,Etobicoke North,2067 ISLINGTON AVE,12,162,2018-12-31,58,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,2.0,3.0,3.0,3.0,3.0,,2.0,4.0,3.0,3.0,3.0,3.0,4.0,2.0,3.0,,W0135,43.702256035,-79.548440591,300879.92699999997,4840035.496
-893394,4155353,2017.0,2018.0,1994.0,TCHC,2,Etobicoke Centre,1025 SCARLETT RD,11,128,2018-12-31,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,3.0,4.0,3.0,4.0,5.0,,3.0,3.0,3.0,3.0,4.0,3.0,,2.0,3.0,3.0,W0224,43.7006762308,-79.5253118023,302744.32399999996,4839858.199
-893395,4155667,2017.0,2018.0,1971.0,TCHC,2,Etobicoke Centre,49 SCARLETTWOOD CRT,4,14,2018-12-31,58,Evaluation needs to be conducted in 1 year,16,2.0,3.0,2.0,3.0,3.0,2.0,,3.0,,,3.0,5.0,3.0,3.0,3.0,2.0,3.0,4.0,2.0,,W0224,43.69372017600001,-79.516153969,303485.161,4839089.472
-893396,4155618,2017.0,2018.0,1972.0,TCHC,7,Humber River-Black Creek,15 TOBERMORY DR,24,374,2018-12-31,63,Evaluation needs to be conducted in 1 year,18,2.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,,3.0,5.0,3.0,3.0,4.0,4.0,4.0,3.0,3.0,,W0725,43.760168119,-79.50789679100001,304069.821,4846499.065
-893397,4250630,2018.0,2018.0,1950.0,PRIVATE,14,Toronto-Danforth,260 GAMBLE AVE,3,24,2018-12-28,81,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,5.0,5.0,5.0,3.0,3.0,4.0,5.0,3.0,3.0,,S1422,43.691914578,-79.342942945,317444.932,4838897.169
-893398,4155261,2017.0,2018.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,5 CROWN HILL PL,4,37,2018-12-28,60,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,2.0,2.0,3.0,,W0327,43.638041895600004,-79.4902414702,305571.7,4832899.478
-893399,4153171,2017.0,2018.0,1904.0,PRIVATE,11,University-Rosedale,456 PALMERSTON BLVD,4,32,2018-12-28,68,Evaluation needs to be conducted in 2 years,16,3.0,2.0,5.0,4.0,4.0,3.0,,3.0,,,4.0,4.0,5.0,2.0,3.0,2.0,4.0,3.0,3.0,,S1133,43.661089992600004,-79.4126760562,311827.434,4835463.525
-893400,4152883,2017.0,2018.0,1974.0,PRIVATE,23,Scarborough North,360 PITFIELD RD,18,246,2018-12-28,70,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,4.0,4.0,4.0,3.0,2.0,4.0,,3.0,4.0,5.0,3.0,3.0,4.0,3.0,3.0,4.0,,E2331,43.7880273326,-79.258614594,324212.061,4849590.142
-893401,4152818,2017.0,2018.0,1962.0,PRIVATE,24,Scarborough-Guildwood,45 GREENCREST CRCT,6,100,2018-12-28,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,E2430,43.758742100000006,-79.22231714770001,327144.17699999997,4846345.796
-893402,4155410,2017.0,2018.0,1962.0,PRIVATE,2,Etobicoke Centre,416 THE WESTWAY,9,103,2018-12-28,68,Evaluation needs to be conducted in 2 years,19,3.0,4.0,5.0,3.0,3.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,5.0,2.0,3.0,4.0,3.0,4.0,2.0,,W0221,43.684052754700005,-79.565694704,299487.999,4838013.037
-893403,4152860,2017.0,2018.0,1977.0,PRIVATE,22,Scarborough-Agincourt,20 STONEHILL CRT,13,153,2018-12-28,81,Evaluation needs to be conducted in 2 years,18,4.0,5.0,5.0,4.0,3.0,4.0,3.0,3.0,5.0,,4.0,3.0,5.0,4.0,5.0,4.0,4.0,5.0,3.0,,E2226,43.795961863100004,-79.3147046688,319695.816,4850460.119
-893404,4155911,2017.0,2018.0,1971.0,PRIVATE,1,Etobicoke North,22 WILLOWRIDGE RD,16,132,2018-12-28,68,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,2.0,5.0,3.0,2.0,3.0,3.0,,2.0,3.0,5.0,4.0,2.0,4.0,,4.0,4.0,,W0137,43.674963268999996,-79.5693913161,299189.13399999996,4837003.506
-893405,4155531,2017.0,2018.0,1993.0,TCHC,3,Etobicoke-Lakeshore,250 TWELFTH ST,14,178,2018-12-28,83,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,5.0,,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,W0335,43.6006696381,-79.5115220432,303854.172,4828747.612
-893406,4316599,2018.0,2018.0,1951.0,PRIVATE,19,Beaches-East York,993 O'CONNOR DR,3,12,2018-12-28,80,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,S1924,43.7089625626,-79.3097891975,320113.443,4840795.808999999
-893407,4261717,2017.0,2018.0,1945.0,PRIVATE,18,Willowdale,10 OAKBURN CRES,3,11,2018-12-28,91,Evaluation needs to be conducted in 3 years,16,5.0,5.0,5.0,5.0,4.0,5.0,,5.0,,4.0,5.0,5.0,5.0,4.0,4.0,4.0,,4.0,4.0,,N1828,43.758838149,-79.404040398,312530.397,4846334.063
-893408,4153463,2019.0,2018.0,1900.0,PRIVATE,11,University-Rosedale,378 MARKHAM ST,4,17,2018-12-28,46,Building Audit,16,1.0,2.0,3.0,2.0,2.0,2.0,,3.0,,,2.0,2.0,5.0,2.0,2.0,2.0,2.0,2.0,3.0,,S1133,43.6584478213,-79.4103098841,312018.591,4835170.181
-893409,4155517,2017.0,2018.0,1980.0,TCHC,3,Etobicoke-Lakeshore,2835 LAKE SHORE BLVD W,9,148,2018-12-28,74,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,,W0335,43.6013719933,-79.50153664300001,304660.286,4828825.602
-893410,4155303,2017.0,2018.0,1973.0,PRIVATE,3,Etobicoke-Lakeshore,24 MABELLE AVE,36,540,2018-12-28,63,Evaluation needs to be conducted in 1 year,20,4.0,4.0,4.0,2.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,4.0,3.0,2.0,2.0,W0321,43.646585717700006,-79.52714718819999,302594.209,4833849.039
-893411,4261715,2017.0,2018.0,1945.0,PRIVATE,18,Willowdale,6 OAKBURN CRES,3,11,2018-12-28,89,Evaluation needs to be conducted in 3 years,16,5.0,5.0,5.0,5.0,4.0,5.0,,5.0,,4.0,5.0,4.0,5.0,4.0,5.0,4.0,,3.0,3.0,,N1828,43.75869476,-79.404771805,312452.32899999997,4846308.568
-893412,4153013,2017.0,2018.0,1973.0,PRIVATE,4,Parkdale-High Park,146 DOWLING AVE,7,68,2018-12-28,67,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,4.0,3.0,4.0,,3.0,3.0,3.0,4.0,2.0,5.0,3.0,4.0,3.0,3.0,3.0,2.0,,S0436,43.6375473099,-79.4394028974,309673.714,4832846.159
-893413,4153026,2017.0,2018.0,1917.0,PRIVATE,4,Parkdale-High Park,189 DOWLING AVE,4,10,2018-12-28,66,Evaluation needs to be conducted in 2 years,13,3.0,3.0,4.0,3.0,,3.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,2.0,,4.0,,,S0436,43.6396109365,-79.4394716965,309667.989,4833097.526000001
-893414,4250641,2018.0,2018.0,1949.0,PRIVATE,14,Toronto-Danforth,338-342 DONLANDS AVE,3,36,2018-12-28,80,Evaluation needs to be conducted in 2 years,14,4.0,5.0,5.0,5.0,4.0,4.0,,2.0,,,5.0,3.0,5.0,4.0,3.0,3.0,,4.0,,,S1422,,,317463.05100000004,4839006.188
-893415,4153185,2017.0,2018.0,1960.0,PRIVATE,11,University-Rosedale,375 BRUNSWICK AVE,9,63,2018-12-28,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,2.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,,S1126,43.6684734257,-79.4081015431,312195.42600000004,4836284.143999999
-893416,4154450,2019.0,2018.0,1958.0,PRIVATE,6,York Centre,2 DORADO CRT,4,87,2018-12-28,43,Building Audit,16,3.0,2.0,3.0,2.0,1.0,2.0,,2.0,2.0,,2.0,2.0,5.0,2.0,2.0,1.0,,1.0,2.0,,N0627,43.738441642299996,-79.4861508679,305900.09,4844053.338
-893417,4152674,2017.0,2018.0,1963.0,PRIVATE,20,Scarborough Southwest,739 BIRCHMOUNT RD,9,124,2018-12-28,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2023,43.724969646000005,-79.2748142214,322927.156,4842581.071
-893418,4152675,2017.0,2018.0,1960.0,PRIVATE,20,Scarborough Southwest,821 BIRCHMOUNT RD,6,53,2018-12-28,78,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,,E2023,43.7287302268,-79.2769823529,322751.357,4842998.379
-893419,4152676,2017.0,2018.0,1961.0,PRIVATE,20,Scarborough Southwest,829 BIRCHMOUNT RD,6,65,2018-12-28,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,,E2023,43.729010615600004,-79.2769309728,322755.413,4843029.54
-893420,4154181,2018.0,2018.0,1953.0,PRIVATE,15,Don Valley West,1295 BAYVIEW AVE,4,19,2018-12-28,85,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,5.0,4.0,4.0,,4.0,,4.0,5.0,5.0,5.0,4.0,4.0,4.0,,4.0,3.0,,N1535,43.697841160299994,-79.3717629159,315120.979,4839550.775
-893421,4154182,2018.0,2018.0,1953.0,PRIVATE,15,Don Valley West,1299 BAYVIEW AVE,4,19,2018-12-28,84,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,5.0,4.0,4.0,,4.0,,4.0,5.0,5.0,5.0,3.0,4.0,4.0,,4.0,3.0,,N1535,43.6980343959,-79.3718344399,315115.179,4839572.2360000005
-893422,4156306,2017.0,2018.0,1952.0,PRIVATE,20,Scarborough Southwest,3222 ST CLAIR AVE E,3,16,2018-12-28,72,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,3.0,2.0,3.0,,4.0,,,4.0,3.0,5.0,3.0,4.0,4.0,,3.0,4.0,,E2021,43.7103391108,-79.2897341837,321729.233,4840952.568
-893423,4152679,2017.0,2018.0,1971.0,PRIVATE,20,Scarborough Southwest,2225 EGLINTON AVE E,6,94,2018-12-28,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,5.0,,E2023,43.729677828,-79.276229104,322811.499,4843104.772
-893424,4152681,2017.0,2018.0,1958.0,PRIVATE,20,Scarborough Southwest,2233 EGLINTON AVE E,6,110,2018-12-28,80,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,,E2023,43.729840133,-79.274983998,322911.762,4843123.078
-893425,4153195,2017.0,2018.0,1913.0,PRIVATE,11,University-Rosedale,399 DUPONT ST,3,20,2018-12-28,75,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,3.0,4.0,4.0,,4.0,,,4.0,5.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1126,43.673383845500005,-79.4122210568,311862.661,4836829.316000001
-893426,4152686,2017.0,2018.0,1960.0,PRIVATE,20,Scarborough Southwest,2293 EGLINTON AVE E,7,118,2018-12-28,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2023,43.7306169901,-79.271727231,323174.166,4843209.151000001
-893427,4273164,2017.0,2018.0,1960.0,PRIVATE,14,Toronto-Danforth,133 GAMBLE AVE,4,27,2018-12-28,78,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,,4.0,5.0,3.0,5.0,3.0,3.0,4.0,5.0,3.0,4.0,,S1422,43.690334748000005,-79.34796076800001,317040.769,4838720.926
-893428,4155262,2017.0,2018.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,6 CROWN HILL PL,4,37,2018-12-28,59,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,,4.0,3.0,4.0,2.0,3.0,3.0,3.0,1.0,2.0,3.0,,W0327,43.6385102158,-79.4902204233,305573.399,4832951.506
-893429,4156337,2017.0,2018.0,1970.0,PRIVATE,6,York Centre,190 EXBURY RD,19,154,2018-12-28,83,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,3.0,4.0,5.0,4.0,4.0,,5.0,5.0,5.0,3.0,4.0,5.0,4.0,4.0,3.0,,N0627,43.729239154,-79.509192255,304054.473,4843029.277
-893430,4155299,2017.0,2018.0,1968.0,PRIVATE,3,Etobicoke-Lakeshore,4875 DUNDAS ST W,10,56,2018-12-28,65,Evaluation needs to be conducted in 1 year,19,4.0,3.0,4.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,5.0,3.0,3.0,3.0,4.0,3.0,2.0,,W0321,43.649546925299994,-79.5275324793,302563.23,4834178.034
-893431,4154064,2017.0,2018.0,1950.0,PRIVATE,19,Beaches-East York,1001 O'CONNOR DR,4,83,2018-12-28,75,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,4.0,3.0,3.0,,3.0,,3.0,4.0,3.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,S1924,43.7097238899,-79.30919265920001,320161.322,4840880.499
-893432,4261712,2017.0,2018.0,1945.0,PRIVATE,18,Willowdale,2 OAKBURN CRES,3,11,2018-12-27,89,Evaluation needs to be conducted in 3 years,15,5.0,5.0,5.0,5.0,4.0,5.0,,5.0,,,5.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,,N1828,43.758631647,-79.405405385,312377.294,4846310.018
-893433,4155409,2017.0,2018.0,1968.0,PRIVATE,1,Etobicoke North,20 REDGRAVE DR,16,178,2018-12-27,81,Evaluation needs to be conducted in 2 years,19,4.0,5.0,5.0,4.0,5.0,5.0,4.0,3.0,4.0,4.0,3.0,5.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,,W0137,43.6836537858,-79.5686665938,299248.36,4837968.911
-893434,4155406,2017.0,2018.0,1972.0,PRIVATE,2,Etobicoke Centre,675 MARTIN GROVE RD,11,126,2018-12-27,66,Evaluation needs to be conducted in 2 years,19,3.0,2.0,5.0,2.0,5.0,3.0,3.0,3.0,2.0,3.0,3.0,4.0,5.0,3.0,4.0,5.0,4.0,3.0,1.0,,W0221,43.681182543199995,-79.5647387346,299564.82399999996,4837694.119
-893435,4152666,2020.0,2018.0,1958.0,PRIVATE,20,Scarborough Southwest,115 FOXRIDGE DR,3,10,2018-12-27,65,Evaluation needs to be conducted in 1 year,15,4.0,3.0,4.0,3.0,3.0,4.0,,3.0,,,2.0,4.0,5.0,3.0,3.0,3.0,,3.0,2.0,,E2023,43.7234871181,-79.2660288594,323635.43,4842418.318
-893436,4152666,2020.0,2018.0,1958.0,PRIVATE,20,Scarborough Southwest,115 FOXRIDGE DR,3,10,2018-12-27,65,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,,,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,3.0,,E2023,43.7234871181,-79.2660288594,323635.43,4842418.318
-893437,4153035,2017.0,2018.0,1910.0,SOCIAL HOUSING,4,Parkdale-High Park,1387 QUEEN ST W,4,23,2018-12-27,80,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,3.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,4.0,S0436,43.6404340977,-79.4362276629,309929.667,4833167.036
-893438,4154456,2017.0,2018.0,1965.0,PRIVATE,6,York Centre,3390 KEELE ST,11,258,2018-12-27,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,5.0,4.0,5.0,4.0,5.0,,4.0,5.0,4.0,3.0,3.0,3.0,4.0,2.0,2.0,,N0625,43.746940763999994,-79.488468802,305713.023,4844998.472
-893439,4244530,2017.0,2018.0,1962.0,PRIVATE,16,Don Valley East,35 ST DENNIS DR,10,331,2018-12-27,73,Evaluation needs to be conducted in 2 years,17,5.0,3.0,4.0,4.0,4.0,4.0,3.0,3.0,5.0,,3.0,5.0,3.0,3.0,4.0,3.0,,4.0,2.0,,N1630,43.718686691,-79.329087808,318555.705,4841873.706
-893440,4154097,2017.0,2018.0,1968.0,PRIVATE,14,Toronto-Danforth,210 COSBURN AVE,4,33,2018-12-27,61,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,3.0,3.0,2.0,3.0,4.0,3.0,3.0,,S1422,43.690544653,-79.3443418655,317332.707,4838743.813999999
-893441,4221312,2017.0,2018.0,1970.0,PRIVATE,11,University-Rosedale,360 BLOOR ST W,16,170,2018-12-27,72,Evaluation needs to be conducted in 2 years,20,5.0,4.0,5.0,2.0,4.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,4.0,5.0,S1126,43.6667874217,-79.4051232115,312435.811,4836097.103999999
-893442,4153178,2017.0,2018.0,1919.0,PRIVATE,11,University-Rosedale,334 BLOOR ST W,3,24,2018-12-27,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,2.0,3.0,3.0,,2.0,3.0,,S1126,43.666839079700004,-79.404253282,312505.959,4836102.924
-893443,4154409,2018.0,2018.0,1967.0,PRIVATE,6,York Centre,5 AGATE RD,11,118,2018-12-27,71,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,3.0,4.0,2.0,3.0,4.0,,4.0,3.0,4.0,4.0,4.0,4.0,5.0,2.0,2.0,,N0627,43.72724984560001,-79.48529559999999,305969.165,4842810.005
-893444,4261713,2017.0,2018.0,1945.0,PRIVATE,18,Willowdale,4 OAKBURN CRES,3,11,2018-12-27,89,Evaluation needs to be conducted in 3 years,16,5.0,5.0,5.0,5.0,4.0,5.0,,5.0,,4.0,5.0,4.0,5.0,4.0,3.0,4.0,,4.0,4.0,,N1828,43.758599533,-79.405110246,312421.145,4846296.211
-893445,4153014,2017.0,2018.0,1930.0,PRIVATE,4,Parkdale-High Park,122 DOWLING AVE,5,27,2018-12-27,76,Evaluation needs to be conducted in 2 years,14,4.0,3.0,4.0,4.0,4.0,3.0,,4.0,,,4.0,3.0,5.0,4.0,4.0,3.0,,4.0,,,S0436,43.6367650301,-79.4389483513,309710.453,4832759.28
-893446,4155794,2017.0,2018.0,1940.0,PRIVATE,15,Don Valley West,1215 BAYVIEW AVE,4,38,2018-12-27,92,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,5.0,3.0,4.0,,5.0,5.0,5.0,5.0,5.0,5.0,3.0,5.0,5.0,,5.0,3.0,5.0,N1535,43.6972709992,-79.3716069474,315133.654,4839487.445
-893447,4155296,2017.0,2018.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,2649 BLOOR ST W,4,48,2018-12-21,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0327,43.648996751999995,-79.494971996,305189.691,4834117.426
-893448,4155295,2017.0,2018.0,1927.0,PRIVATE,3,Etobicoke-Lakeshore,2651 BLOOR ST W,4,34,2018-12-21,66,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,4.0,2.0,3.0,,W0327,43.649230274,-79.49533657100001,305160.274,4834143.367
-893449,4154106,2017.0,2018.0,1950.0,PRIVATE,14,Toronto-Danforth,325 SAMMON AVE,3,26,2018-12-21,81,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,5.0,4.0,4.0,,4.0,,,5.0,3.0,4.0,3.0,4.0,4.0,,4.0,4.0,,S1426,43.6866220791,-79.3348314458,318100.224,4838309.488
-893450,4156583,2017.0,2018.0,1968.0,PRIVATE,2,Etobicoke Centre,60 CALLOWHILL DR,12,141,2018-12-21,68,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,1.0,4.0,4.0,4.0,3.0,4.0,4.0,2.0,4.0,5.0,2.0,4.0,4.0,2.0,2.0,4.0,,W0221,43.682156045,-79.5643051616,299650.165,4837805.9
-893451,4303769,2018.0,2018.0,1968.0,PRIVATE,2,Etobicoke Centre,63 CALLOWHILL DR,10,112,2018-12-21,65,Evaluation needs to be conducted in 1 year,19,4.0,4.0,4.0,3.0,3.0,2.0,3.0,4.0,3.0,,2.0,4.0,5.0,2.0,4.0,4.0,2.0,1.0,4.0,4.0,W0221,,,299662.554,4837921.687
-893452,4153010,2017.0,2018.0,2010.0,SOCIAL HOUSING,4,Parkdale-High Park,194 DOWLING AVE,4,29,2018-12-21,76,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,4.0,4.0,5.0,,3.0,4.0,,3.0,3.0,4.0,4.0,4.0,4.0,,4.0,,4.0,S0436,43.6397760709,-79.44001122579999,309624.458,4833093.725
-893453,4154100,2017.0,2018.0,1927.0,PRIVATE,14,Toronto-Danforth,250 COSBURN AVE,6,40,2018-12-21,72,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,4.0,3.0,4.0,,3.0,5.0,3.0,4.0,4.0,5.0,3.0,3.0,4.0,3.0,3.0,4.0,,S1422,43.6909297022,-79.3426537067,317468.714,4838786.84
-893454,4155653,2017.0,2018.0,1968.0,TCHC,5,York South-Weston,190 WOOLNER AVE,16,304,2018-12-21,68,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,4.0,4.0,2.0,3.0,3.0,3.0,,4.0,4.0,4.0,4.0,3.0,3.0,3.0,4.0,3.0,,W0539,43.672697749099996,-79.4906805093,305535.86100000003,4836749.508
-893455,4154093,2017.0,2018.0,1967.0,PRIVATE,14,Toronto-Danforth,205 COSBURN AVE,12,160,2018-12-21,76,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,4.0,3.0,4.0,5.0,3.0,3.0,4.0,,S1422,43.690071937,-79.34393549149999,317365.564,4838691.356000001
-893456,4153107,2017.0,2018.0,1978.0,TCHC,9,Davenport,1884 DAVENPORT RD,9,186,2018-12-21,73,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,,4.0,4.0,3.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,S0926,43.670764096999996,-79.453867406,308498.716,4836548.304
-893457,4156740,2017.0,2018.0,1967.0,PRIVATE,16,Don Valley East,10 ST DENNIS DR,9,325,2018-12-21,82,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,5.0,5.0,5.0,3.0,3.0,4.0,,5.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,,N1630,43.7172141544,-79.3360536407,317994.98600000003,4841707.994
-893458,4153962,2017.0,2018.0,1941.0,TCHC,8,Eglinton-Lawrence,790 EGLINTON AVE W,4,57,2018-12-21,61,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,2.0,3.0,3.0,3.0,4.0,3.0,2.0,3.0,3.0,3.0,3.0,,N0832,43.7016899071,-79.4236478607,310938.438,4839973.166999999
-893459,4153963,2017.0,2018.0,1941.0,TCHC,8,Eglinton-Lawrence,800 EGLINTON AVE W,4,36,2018-12-21,64,Evaluation needs to be conducted in 1 year,19,4.0,3.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0832,43.7014745383,-79.4245394908,310866.596,4839949.174
-893460,4153964,2017.0,2018.0,1941.0,TCHC,8,Eglinton-Lawrence,840 EGLINTON AVE W,4,40,2018-12-21,60,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,2.0,3.0,3.0,4.0,3.0,2.0,3.0,3.0,3.0,3.0,,N0832,43.7014864975,-79.4251602874,310816.559,4839950.4569999995
-893461,4154116,2017.0,2018.0,1968.0,PRIVATE,14,Toronto-Danforth,130 GOWAN AVE,12,160,2018-12-21,67,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,3.0,4.0,4.0,2.0,4.0,3.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1421,43.6884286813,-79.3499828306,316878.417,4838507.925
-893462,4155913,2017.0,2018.0,1970.0,TCHC,5,York South-Weston,40 FALSTAFF AVE,19,224,2018-12-21,68,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,3.0,5.0,3.0,2.0,4.0,4.0,3.0,4.0,5.0,4.0,2.0,3.0,3.0,3.0,3.0,4.0,,W0522,43.7164444337,-79.50436564399999,304432.719,4841609.528
-893463,4154769,2017.0,2018.0,1966.0,PRIVATE,16,Don Valley East,200 GATEWAY BLVD,17,284,2018-12-21,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,2.0,4.0,3.0,5.0,4.0,4.0,,3.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,N1630,43.715178693599995,-79.3352789539,318057.864,4841481.992
-893464,4155399,2017.0,2018.0,1960.0,PRIVATE,2,Etobicoke Centre,530 THE EAST MALL,7,110,2018-12-21,75,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,3.0,4.0,,4.0,4.0,3.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,3.0,W0232,43.651534375699995,-79.563209379,299685.571,4834400.211
-893465,4155401,2017.0,2018.0,1969.0,PRIVATE,2,Etobicoke Centre,535 THE EAST MALL,7,90,2018-12-21,74,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,4.0,3.0,,4.0,3.0,4.0,4.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,,W0232,43.651798497600005,-79.5625281219,299740.547,4834429.513
-893466,4155624,2017.0,2018.0,1955.0,TCHC,5,York South-Weston,1622 LAWRENCE AVE W,3,20,2018-12-21,68,Evaluation needs to be conducted in 2 years,17,2.0,2.0,3.0,3.0,3.0,5.0,,4.0,,5.0,4.0,4.0,4.0,3.0,2.0,2.0,4.0,4.0,4.0,,W0526,43.706344038000005,-79.4898898343,305599.298,4840487.469
-893467,4167767,2017.0,2018.0,1974.0,TCHC,5,York South-Weston,710 TRETHEWEY DR,19,165,2018-12-21,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,3.0,3.0,4.0,4.0,4.0,,4.0,5.0,4.0,4.0,5.0,4.0,4.0,3.0,3.0,5.0,W0528,43.697803447,-79.499827299,304798.114,4839539.581
-893468,4156298,2018.0,2018.0,1969.0,TCHC,10,Spadina-Fort York,170 VANAULEY WALK,6,40,2018-12-21,56,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,1.0,2.0,3.0,2.0,3.0,3.0,,3.0,3.0,1.0,3.0,3.0,3.0,4.0,4.0,3.0,,S1023,43.651687962,-79.400557945,312805.773,4834421.0
-893469,4153066,2017.0,2018.0,1966.0,PRIVATE,4,Parkdale-High Park,55 TRILLER AVE,22,294,2018-12-21,82,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,S0435,43.6399998042,-79.4436738938,309328.92600000004,4833118.38
-893470,4153196,,2018.0,1910.0,PRIVATE,11,University-Rosedale,2 VERMONT AVE,3,16,2018-12-21,60,Evaluation needs to be conducted in 1 year,16,3.0,3.0,5.0,3.0,2.0,4.0,,3.0,,,3.0,3.0,4.0,3.0,2.0,2.0,3.0,2.0,3.0,,S1125,43.672241558,-79.414621827,311668.929,4836703.171
-893471,4156232,2017.0,2018.0,1969.0,TCHC,5,York South-Weston,101 HUMBER BLVD,14,246,2018-12-21,64,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,4.0,,3.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,W0539,43.679802556000006,-79.4820189606,306234.164,4837538.915
-893472,4285956,2017.0,2018.0,1968.0,TCHC,5,York South-Weston,121 HUMBER BLVD,14,215,2018-12-21,67,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,,3.0,4.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,,W0539,43.6784336179,-79.48189258880001,,
-893473,4153526,2017.0,2018.0,1960.0,PRIVATE,13,Toronto Centre,10 HUNTLEY ST,20,116,2018-12-21,80,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,S1322,43.668602291400006,-79.37821746270001,314605.424,4836301.5819999995
-893474,4153548,2017.0,2018.0,1973.0,PRIVATE,13,Toronto Centre,77 HUNTLEY ST,29,561,2018-12-21,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,,4.0,S1322,43.6716230916,-79.37873126689999,314563.49199999997,4836637.12
-893475,4155591,2017.0,2018.0,1968.0,TCHC,9,Davenport,61 PELHAM PARK GDNS,17,352,2018-12-21,55,Evaluation needs to be conducted in 1 year,20,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,2.0,2.0,S0926,43.66925972,-79.457795659,308187.607,4836369.289
-893476,4154470,2017.0,2018.0,1966.0,PRIVATE,7,Humber River-Black Creek,391 SENTINEL RD,4,44,2018-12-20,76,Evaluation needs to be conducted in 2 years,17,5.0,5.0,5.0,4.0,5.0,5.0,,3.0,5.0,,5.0,4.0,5.0,3.0,2.0,3.0,2.0,2.0,2.0,,W0731,43.760281803199994,-79.4991391395,304853.94,4846479.576
-893477,4155352,2017.0,2018.0,1953.0,PRIVATE,1,Etobicoke North,17 RIVERVIEW HTS,4,14,2018-12-20,76,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,3.0,3.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,3.0,3.0,3.0,,W0136,43.70159907399999,-79.52750608699999,302574.77,4839958.836
-893478,4153182,2017.0,2018.0,1965.0,PRIVATE,11,University-Rosedale,161 CHRISTIE ST,4,15,2018-12-20,70,Evaluation needs to be conducted in 2 years,16,3.0,4.0,3.0,3.0,3.0,3.0,,3.0,,4.0,4.0,3.0,5.0,4.0,3.0,4.0,,4.0,3.0,,S1125,43.6677026492,-79.41974947050001,311256.19800000003,4836197.601
-893479,4155414,2017.0,2018.0,1965.0,PRIVATE,1,Etobicoke North,55 BRIDESBURG DR,5,61,2018-12-20,82,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,5.0,3.0,,4.0,5.0,,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,W0133,43.694473525,-79.563528031,299669.11199999996,4839180.326
-893480,4154211,2017.0,2018.0,1950.0,PRIVATE,7,Humber River-Black Creek,1738 WILSON AVE,3,10,2018-12-20,67,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,4.0,,4.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0734,43.7200316288,-79.5141632262,303643.321,4842008.141
-893481,4154212,2018.0,2018.0,1953.0,PRIVATE,7,Humber River-Black Creek,1740 WILSON AVE,3,10,2018-12-20,68,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,3.0,4.0,4.0,3.0,,W0734,43.7199693084,-79.5144469829,303620.457,4842001.222
-893482,4154040,2017.0,2018.0,1950.0,PRIVATE,19,Beaches-East York,514 DAWES RD,4,34,2018-12-20,71,Evaluation needs to be conducted in 2 years,16,4.0,3.0,3.0,3.0,4.0,3.0,,4.0,,,3.0,3.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,,S1927,43.7046434956,-79.2969607849,321148.442,4840318.3719999995
-893483,4154049,2018.0,2018.0,1959.0,PRIVATE,19,Beaches-East York,608 DAWES RD,6,84,2018-12-20,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,4.0,,4.0,4.0,3.0,3.0,4.0,5.0,2.0,2.0,4.0,3.0,2.0,2.0,,S1927,43.706994795,-79.295836771,321238.131,4840580.773
-893484,4155282,,2018.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,172 BERRY RD,4,32,2018-12-20,61,Evaluation needs to be conducted in 1 year,18,3.0,4.0,3.0,3.0,3.0,3.0,,2.0,3.0,3.0,3.0,4.0,5.0,3.0,3.0,4.0,2.0,2.0,2.0,,W0327,43.636679641,-79.49240542300001,305388.38800000004,4832756.94
-893485,4356727,2018.0,2018.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,176 BERRY RD,4,29,2018-12-20,62,Evaluation needs to be conducted in 1 year,18,4.0,4.0,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,4.0,4.0,2.0,3.0,3.0,3.0,2.0,3.0,,W0327,43.636561238,-79.493053522,305320.673,4832716.888
-893486,4153184,2017.0,2018.0,1929.0,PRIVATE,11,University-Rosedale,42 BARTON AVE,4,24,2018-12-20,81,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,,,4.0,4.0,5.0,4.0,5.0,4.0,,3.0,4.0,,S1125,43.667957114,-79.414124093,311709.549,4836227.241
-893487,4156430,2017.0,2018.0,1972.0,TCHC,7,Humber River-Black Creek,7 ARLETA AVE,4,201,2018-12-20,72,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,4.0,,3.0,5.0,5.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,W0732,43.7420099966,-79.5008716177,304714.372,4844449.658
-893488,4155991,2017.0,2018.0,1972.0,TCHC,7,Humber River-Black Creek,11 ARLETA AVE,4,171,2018-12-20,71,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,4.0,,3.0,5.0,4.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,W0732,43.7429406222,-79.5009610922,304707.169,4844553.048
-893489,4153530,2017.0,2018.0,1960.0,PRIVATE,13,Toronto Centre,100 GLOUCESTER ST,11,212,2018-12-20,72,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,4.0,,4.0,2.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,,S1322,43.6680608437,-79.37977337609999,314480.036,4836241.251
-893490,4156493,2017.0,2018.0,1971.0,PRIVATE,7,Humber River-Black Creek,355 GRANDRAVINE DR,15,118,2018-12-20,61,Evaluation needs to be conducted in 1 year,19,2.0,3.0,4.0,3.0,4.0,4.0,3.0,2.0,2.0,,4.0,4.0,2.0,4.0,3.0,3.0,2.0,4.0,2.0,3.0,W0732,43.746959357,-79.513143818,303707.642,4845032.763
-893491,4273205,2017.0,2018.0,1911.0,PRIVATE,13,Toronto Centre,67 GLOUCESTER ST,3,15,2018-12-20,74,Evaluation needs to be conducted in 2 years,14,3.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,3.0,3.0,5.0,3.0,4.0,4.0,,3.0,,,S1322,43.6670615144,-79.3820888651,314293.461,4836129.969
-893492,4155590,2017.0,2018.0,1959.0,TCHC,9,Davenport,1525 DUNDAS ST W,6,106,2018-12-20,71,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,4.0,3.0,4.0,3.0,,S0936,43.649163790699994,-79.4324188308,310236.184,4834137.085
-893493,4154151,2017.0,2018.0,1965.0,PRIVATE,15,Don Valley West,43 THORNCLIFFE PARK DR,20,380,2018-12-20,72,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,2.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,5.0,4.0,3.0,3.0,3.0,5.0,3.0,4.0,N1533,43.70045036,-79.344507259,317317.05600000004,4839845.249
-893494,4154152,2017.0,2018.0,1966.0,PRIVATE,15,Don Valley West,47 THORNCLIFFE PARK DR,25,474,2018-12-20,77,Evaluation needs to be conducted in 2 years,19,5.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,5.0,5.0,4.0,2.0,4.0,5.0,5.0,4.0,,N1533,43.700783732,-79.34267244,317464.875,4839882.563
-893495,4154153,2017.0,2018.0,1968.0,PRIVATE,15,Don Valley West,49 THORNCLIFFE PARK DR,20,400,2018-12-20,77,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,4.0,4.0,4.0,3.0,2.0,4.0,4.0,3.0,4.0,5.0,3.0,4.0,4.0,3.0,5.0,3.0,,N1533,43.701948808999994,-79.342340022,317491.42100000003,4840012.05
-893496,4154155,2017.0,2018.0,1967.0,PRIVATE,15,Don Valley West,65 THORNCLIFFE PARK DR,20,332,2018-12-20,82,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,5.0,4.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,,N1533,43.703487555600006,-79.3402691534,317658.262,4840182.3719999995
-893497,4270720,2018.0,2018.0,1965.0,PRIVATE,4,Parkdale-High Park,103 WEST LODGE AVE,18,371,2018-12-20,59,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,4.0,3.0,2.0,3.0,3.0,2.0,,S0435,43.644918456000006,-79.435885913,309956.6,4833666.2
-893498,4270721,2018.0,2018.0,1965.0,PRIVATE,4,Parkdale-High Park,105 WEST LODGE AVE,19,371,2018-12-20,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,4.0,2.0,4.0,3.0,,2.0,3.0,3.0,4.0,4.0,3.0,4.0,4.0,2.0,,S0435,43.64516038,-79.43669445399999,309891.349,4833693.03
-893499,4154567,2017.0,2018.0,1995.0,TCHC,6,York Centre,495 WILSON AVE,5,132,2018-12-20,85,Evaluation needs to be conducted in 2 years,19,4.0,5.0,5.0,3.0,5.0,4.0,5.0,4.0,5.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,N0633,43.734757435,-79.445351342,309186.49199999997,4843646.358
-893500,4155394,2017.0,2018.0,1969.0,PRIVATE,2,Etobicoke Centre,545 THE WEST MALL,16,312,2018-12-20,74,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,3.0,4.0,5.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,,W0231,43.651935308,-79.56812821300001,299175.535,4834432.713
-893501,4154400,2017.0,2018.0,1966.0,TCHC,6,York Centre,2195 JANE ST,11,294,2018-12-20,68,Evaluation needs to be conducted in 2 years,19,4.0,2.0,5.0,3.0,3.0,3.0,3.0,4.0,4.0,,3.0,4.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,N0627,43.7222134695,-79.5079300215,304145.58,4842250.448
-893502,4154580,2017.0,2018.0,1962.0,TCHC,6,York Centre,12 KING HIGH AVE,3,31,2018-12-20,85,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,5.0,4.0,4.0,5.0,4.0,,,5.0,3.0,5.0,4.0,4.0,5.0,,4.0,4.0,,N0629,43.736219646,-79.443095826,309368.07399999996,4843808.919
-893503,4155875,2017.0,2018.0,1967.0,PRIVATE,2,Etobicoke Centre,5 CAPRI RD,25,329,2018-12-20,74,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,4.0,3.0,4.0,4.0,3.0,3.0,,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,3.0,4.0,W0232,43.651709561000004,-79.564536328,299578.285,4834420.709
-893504,4154091,2017.0,2018.0,1965.0,PRIVATE,14,Toronto-Danforth,175 COSBURN AVE,4,30,2018-12-19,62,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,3.0,2.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1422,43.689958951499996,-79.3450906815,317272.466,4838678.636
-893505,4154468,2017.0,2018.0,1967.0,PRIVATE,7,Humber River-Black Creek,170 SENTINEL RD,4,60,2018-12-19,50,Building Audit,18,3.0,3.0,3.0,1.0,2.0,3.0,3.0,3.0,2.0,,1.0,2.0,4.0,3.0,3.0,2.0,3.0,2.0,2.0,,W0731,43.75162192,-79.4974696596,304988.387,4845517.507
-893506,4155412,2017.0,2018.0,1962.0,PRIVATE,1,Etobicoke North,80 BLACKFRIAR AVE,3,45,2018-12-19,68,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,3.0,4.0,,3.0,,4.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,2.0,,W0133,43.6982740751,-79.5624045901,299754.433,4839592.821
-893507,4153067,2017.0,2018.0,1967.0,PRIVATE,4,Parkdale-High Park,59 RONCESVALLES AVE,4,38,2018-12-19,64,Evaluation needs to be conducted in 1 year,14,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,2.0,3.0,5.0,2.0,4.0,4.0,,3.0,,,S0435,43.6407196162,-79.44659739560001,309092.998,4833198.193
-893508,4152831,2017.0,2018.0,1967.0,PRIVATE,24,Scarborough-Guildwood,15 ORTON PARK RD,14,147,2018-12-19,74,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,1.0,4.0,E2427,43.765211236400006,-79.2054482242,328499.94800000003,4847069.129
-893509,4154096,2017.0,2018.0,1965.0,PRIVATE,14,Toronto-Danforth,200 COSBURN AVE,6,45,2018-12-19,67,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,4.0,3.0,3.0,,3.0,3.0,3.0,3.0,2.0,5.0,3.0,3.0,4.0,5.0,3.0,3.0,,S1422,43.6905032392,-79.34476857760001,317298.318,4838739.151000001
-893510,4154341,2017.0,2018.0,1965.0,PRIVATE,5,York South-Weston,1640 LAWRENCE AVE W,9,92,2018-12-19,77,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,3.0,4.0,3.0,4.0,5.0,3.0,3.0,3.0,5.0,5.0,3.0,4.0,4.0,5.0,4.0,3.0,,W0526,43.7058159732,-79.4929514926,305352.55,4840428.784
-893511,4153059,2017.0,2018.0,1935.0,PRIVATE,4,Parkdale-High Park,34 NOBLE ST,3,18,2018-12-19,69,Evaluation needs to be conducted in 2 years,14,3.0,3.0,4.0,4.0,3.0,4.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,S0435,43.6428677432,-79.431388625,310319.87100000004,4833437.692
-893512,4153168,2017.0,2018.0,1930.0,PRIVATE,11,University-Rosedale,496 MONTROSE AVE,3,24,2018-12-19,56,Evaluation needs to be conducted in 1 year,16,2.0,3.0,4.0,2.0,1.0,3.0,,2.0,,,2.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1132,43.662851529799994,-79.4210660752,311150.555,4835658.55
-893513,4154041,2017.0,2018.0,1960.0,PRIVATE,19,Beaches-East York,510 DAWES RD,4,62,2018-12-19,71,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,3.0,3.0,,4.0,4.0,,3.0,3.0,5.0,3.0,4.0,4.0,4.0,4.0,2.0,4.0,S1927,43.704347801000004,-79.297293072,321121.48,4840286.411
-893514,4154463,2017.0,2018.0,1972.0,PRIVATE,7,Humber River-Black Creek,3710 KEELE ST,9,92,2018-12-19,67,Evaluation needs to be conducted in 2 years,18,3.0,4.0,2.0,3.0,3.0,4.0,4.0,3.0,3.0,,3.0,3.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,,W0731,43.75654049479999,-79.489787514,305606.988,4846063.982
-893515,4154044,2018.0,2018.0,1966.0,PRIVATE,19,Beaches-East York,500 DAWES RD,14,305,2018-12-19,57,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,2.0,3.0,2.0,2.0,4.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1927,43.703305875,-79.29817492800001,321050.685,4840170.484
-893516,4153507,2017.0,2018.0,1888.0,PRIVATE,13,Toronto Centre,510 JARVIS ST,3,16,2018-12-19,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,3.0,5.0,3.0,4.0,4.0,4.0,3.0,4.0,,S1322,43.66751677640001,-79.3792333809,314523.675,4836180.868
-893517,4155193,2017.0,2018.0,1958.0,PRIVATE,5,York South-Weston,80 GUESTVILLE AVE,4,53,2018-12-19,74,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,4.0,4.0,4.0,,4.0,,3.0,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,3.0,,W0535,43.6841175176,-79.4901133779,305581.481,4838018.193
-893518,4155195,2017.0,2018.0,1958.0,PRIVATE,5,York South-Weston,15 GRAY AVE,3,17,2018-12-19,83,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,,4.0,5.0,5.0,4.0,4.0,4.0,,4.0,3.0,,W0535,43.6812020963,-79.49310534140001,305340.27,4837694.285
-893519,4154118,2017.0,2018.0,1968.0,PRIVATE,14,Toronto-Danforth,80 GOWAN AVE,11,88,2018-12-19,86,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,4.0,4.0,5.0,,4.0,5.0,3.0,4.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,3.0,,S1421,43.6881568082,-79.351627018,316745.93,4838477.495
-893520,4154223,2017.0,2018.0,1972.0,PRIVATE,7,Humber River-Black Creek,160 CHALKFARM DR,23,466,2018-12-19,66,Evaluation needs to be conducted in 2 years,19,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,W0734,43.7243235641,-79.51474864069999,303596.24600000004,4842484.943
-893521,4153183,2018.0,2018.0,1919.0,PRIVATE,11,University-Rosedale,38 BARTON AVE,4,18,2018-12-19,65,Evaluation needs to be conducted in 1 year,16,3.0,4.0,3.0,3.0,2.0,3.0,,4.0,,,3.0,4.0,5.0,3.0,3.0,4.0,2.0,3.0,3.0,,S1125,43.668063591000006,-79.413898107,311727.76,4836239.086
-893522,4153525,2017.0,2018.0,1929.0,PRIVATE,13,Toronto Centre,40 EARL ST,5,39,2018-12-19,79,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S1322,43.66881613939999,-79.3759529086,314788.01399999997,4836325.598
-893523,4155278,2017.0,2018.0,1950.0,PRIVATE,3,Etobicoke-Lakeshore,158 BERRY RD,4,30,2018-12-19,66,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,,3.0,3.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,,W0327,43.6372671432,-79.489657597,305618.818,4832813.412
-893524,4155411,2020.0,2018.0,1968.0,PRIVATE,1,Etobicoke North,111 BLACKFRIAR AVE,3,39,2018-12-19,64,Evaluation needs to be conducted in 1 year,16,3.0,4.0,4.0,3.0,3.0,4.0,,2.0,,,2.0,2.0,4.0,4.0,4.0,3.0,2.0,4.0,3.0,,W0133,43.6992765737,-79.56164594,299815.663,4839704.147
-893525,4154220,2017.0,2018.0,1974.0,PRIVATE,7,Humber River-Black Creek,200 CHALKFARM DR,28,223,2018-12-19,65,Evaluation needs to be conducted in 1 year,19,4.0,4.0,3.0,2.0,4.0,4.0,3.0,3.0,3.0,,2.0,3.0,4.0,4.0,4.0,3.0,4.0,3.0,2.0,3.0,W0734,43.724217100000004,-79.510651122,303926.11,4842474.01
-893526,4154343,2017.0,2018.0,1959.0,PRIVATE,5,York South-Weston,2 PIMLICO RD,3,12,2018-12-19,83,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,5.0,,4.0,4.0,,W0526,43.707815885600006,-79.4828804419,306164.17600000004,4840651.058999999
-893527,4154168,2017.0,2018.0,1959.0,PRIVATE,15,Don Valley West,36 THORNCLIFFE PARK DR,6,70,2018-12-18,79,Evaluation needs to be conducted in 2 years,18,4.0,2.0,5.0,4.0,4.0,3.0,,4.0,3.0,5.0,5.0,5.0,5.0,3.0,4.0,3.0,5.0,3.0,4.0,,N1533,43.702708953,-79.344590225,317309.891,4840096.148
-893528,4154189,2019.0,2018.0,1939.0,PRIVATE,15,Don Valley West,872 MILLWOOD RD,3,10,2018-12-18,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,4.0,2.0,3.0,,4.0,,2.0,5.0,3.0,5.0,2.0,3.0,3.0,,3.0,2.0,,N1531,43.7041064151,-79.3651837906,315650.137,4840247.591
-893529,4155126,2017.0,2018.0,1957.0,PRIVATE,5,York South-Weston,1306 WESTON RD,3,11,2018-12-18,56,Evaluation needs to be conducted in 1 year,14,2.0,2.0,3.0,2.0,,3.0,,3.0,,,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,W0531,43.6894309704,-79.49695331470001,305030.032,4838608.475
-893530,4155125,2017.0,2018.0,1960.0,PRIVATE,5,York South-Weston,1321 WESTON RD,3,10,2018-12-18,75,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,3.0,,5.0,,,3.0,5.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0531,43.6898644553,-79.4968078854,305041.755,4838656.633
-893531,4156297,2017.0,2018.0,1968.0,PRIVATE,2,Etobicoke Centre,25 WARRENDER AVE,13,126,2018-12-18,80,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,4.0,5.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,5.0,4.0,4.0,5.0,4.0,4.0,3.0,,W0227,43.67573405,-79.551408627,300638.915,4837089.0819999995
-893532,4156102,2017.0,2018.0,1968.0,PRIVATE,2,Etobicoke Centre,35 WARRENDER AVE,7,108,2018-12-18,79,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,4.0,5.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,W0227,43.676251271000005,-79.552119041,300581.193,4837146.295
-893533,4155928,2017.0,2018.0,1971.0,PRIVATE,2,Etobicoke Centre,41 WARRENDER AVE,7,105,2018-12-18,79,Evaluation needs to be conducted in 2 years,17,4.0,3.0,5.0,4.0,5.0,5.0,,3.0,4.0,3.0,3.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,,,W0227,43.676012058999994,-79.553552325,300469.80100000004,4837116.899
-893534,4232592,2017.0,2018.0,1971.0,PRIVATE,2,Etobicoke Centre,53 WARRENDER AVE,13,128,2018-12-18,78,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,,,W0227,43.675270143,-79.553851772,300439.227,4837043.395
-893535,4153064,2017.0,2018.0,1979.0,PRIVATE,4,Parkdale-High Park,12 LANSDOWNE AVE,3,26,2018-12-18,64,Evaluation needs to be conducted in 1 year,15,3.0,2.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,4.0,4.0,3.0,4.0,4.0,4.0,2.0,,,S0435,43.6411898546,-79.4371749359,309853.179,4833250.942
-893536,4153065,2017.0,2018.0,1897.0,SOCIAL HOUSING,4,Parkdale-High Park,10 LANSDOWNE AVE,3,21,2018-12-18,77,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,4.0,4.0,4.0,,3.0,,,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,4.0,S0435,43.6410463174,-79.4371700849,309853.582,4833234.996
-893537,4155225,2017.0,2018.0,1973.0,PRIVATE,3,Etobicoke-Lakeshore,8 LOMOND DR,24,183,2018-12-18,67,Evaluation needs to be conducted in 2 years,19,4.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,,W0325,43.6463454422,-79.5227554263,302948.49100000004,4833822.241
-893538,4154134,2017.0,2018.0,1965.0,PRIVATE,14,Toronto-Danforth,100 GAMBLE AVE,12,152,2018-12-18,72,Evaluation needs to be conducted in 2 years,19,3.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,4.0,4.0,3.0,,S1421,43.6904194773,-79.350649972,316824.231,4838729.001
-893539,4154127,2017.0,2018.0,1961.0,PRIVATE,14,Toronto-Danforth,95 GAMBLE AVE,6,94,2018-12-18,87,Evaluation needs to be conducted in 3 years,18,5.0,3.0,5.0,4.0,5.0,4.0,4.0,5.0,5.0,,5.0,5.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,S1421,43.689923631599996,-79.3498848765,316886.00800000003,4838674.022
-893540,4153503,,2018.0,1925.0,PRIVATE,13,Toronto Centre,135 EARL PL,4,16,2018-12-18,75,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,,,3.0,4.0,5.0,3.0,4.0,3.0,4.0,3.0,,,S1322,43.6680405937,-79.3779246146,314633.659,4836247.873
-893541,4153502,2018.0,2018.0,1918.0,PRIVATE,13,Toronto Centre,125 EARL PL,4,15,2018-12-18,77,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,3.0,4.0,3.0,,3.0,,,S1322,43.667977815600004,-79.3782190635,314612.894,4836239.946
-893542,4153138,2017.0,2018.0,1989.0,SOCIAL HOUSING,10,Spadina-Fort York,24 SHAW ST,9,200,2018-12-18,69,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,2.0,4.0,3.0,3.0,3.0,4.0,,3.0,4.0,3.0,4.0,3.0,4.0,,3.0,4.0,3.0,S1027,43.6423363643,-79.4160843491,311554.662,4833379.7069999995
-893543,4155223,2017.0,2018.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,810 ROYAL YORK RD,6,60,2018-12-18,76,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,4.0,3.0,,4.0,4.0,4.0,5.0,3.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,,W0325,43.639553376,-79.509024033,304055.942,4833068.369
-893544,4155442,2017.0,2018.0,1962.0,PRIVATE,1,Etobicoke North,2328 ISLINGTON AVE,7,68,2018-12-18,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,4.0,3.0,,3.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0130,43.717216180600005,-79.5567000725,300215.686,4841696.915
-893545,4155420,2018.0,2018.0,1964.0,PRIVATE,1,Etobicoke North,2313 ISLINGTON AVE,7,80,2018-12-18,71,Evaluation needs to be conducted in 2 years,18,4.0,2.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,,3.0,3.0,5.0,3.0,4.0,3.0,3.0,4.0,4.0,,W0131,43.7176295755,-79.5558080485,300287.597,4841742.787
-893546,4154464,2017.0,2018.0,1962.0,PRIVATE,7,Humber River-Black Creek,3700 KEELE ST,3,57,2018-12-18,68,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,2.0,,W0731,43.755241007799995,-79.48937887550001,305639.91,4845919.621
-893547,4153142,2017.0,2018.0,1987.0,SOCIAL HOUSING,10,Spadina-Fort York,800 ADELAIDE ST W,3,50,2018-12-18,69,Evaluation needs to be conducted in 2 years,19,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,3.0,5.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,S1028,43.6439718067,-79.4103609926,312016.23,4833561.862
-893548,4155248,2017.0,2018.0,1940.0,PRIVATE,3,Etobicoke-Lakeshore,140 BERRY RD,4,14,2018-12-18,61,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,4.0,5.0,3.0,3.0,3.0,3.0,2.0,2.0,,W0327,43.6378752009,-79.4868729596,305849.94800000003,4832879.26
-893549,4154221,2017.0,2018.0,1972.0,PRIVATE,7,Humber River-Black Creek,180 CHALKFARM DR,23,263,2018-12-18,64,Evaluation needs to be conducted in 1 year,18,4.0,5.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,4.0,3.0,3.0,4.0,3.0,2.0,4.0,3.0,,W0734,43.724048437200004,-79.5118150261,303832.597,4842454.334
-893550,4154222,2017.0,2018.0,1972.0,PRIVATE,7,Humber River-Black Creek,170 CHALKFARM DR,23,262,2018-12-18,62,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,,3.0,2.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,,W0734,43.7242716939,-79.5134047928,303704.517,4842479.159
-893551,4155746,2017.0,2018.0,1968.0,PRIVATE,7,Humber River-Black Creek,11 CATFORD RD,9,218,2018-12-18,72,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,3.0,4.0,4.0,3.0,2.0,3.0,,3.0,4.0,3.0,4.0,3.0,4.0,5.0,5.0,4.0,,W0731,43.7587124736,-79.49134153979999,305481.82300000003,4846305.27
-893552,4221285,2017.0,2018.0,1970.0,PRIVATE,19,Beaches-East York,390 DAWES RD,14,246,2018-12-18,74,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,4.0,2.0,4.0,4.0,4.0,3.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,,S1927,43.7002035696,-79.2982003313,321049.73,4839824.865
-893553,4155211,2017.0,2018.0,1949.0,PRIVATE,3,Etobicoke-Lakeshore,2690 BLOOR ST W,4,18,2018-12-18,68,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,3.0,4.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,4.0,3.0,,3.0,3.0,,W0322,43.6503326449,-79.49736598930001,304996.803,4834264.87
-893554,4155210,2017.0,2018.0,1949.0,PRIVATE,3,Etobicoke-Lakeshore,2688 BLOOR ST W,4,21,2018-12-18,72,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,4.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,5.0,5.0,,3.0,3.0,,W0322,43.65031426189999,-79.4971169059,305016.898,4834262.829
-893555,4154176,2017.0,2018.0,1960.0,PRIVATE,16,Don Valley East,701 DON MILLS RD,25,333,2018-12-18,78,Evaluation needs to be conducted in 2 years,19,4.0,5.0,5.0,3.0,3.0,3.0,3.0,3.0,5.0,,4.0,5.0,5.0,5.0,3.0,2.0,5.0,5.0,2.0,4.0,N1630,43.708313291,-79.332845454,318255.235,4840720.6389999995
-893556,4155421,2017.0,2018.0,1955.0,PRIVATE,1,Etobicoke North,2413 ISLINGTON AVE,6,52,2018-12-18,73,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,3.0,,2.0,4.0,4.0,3.0,2.0,5.0,4.0,4.0,4.0,2.0,4.0,3.0,4.0,W0131,43.7237971189,-79.5587381746,300051.989,4842428.141
-893557,4154079,2018.0,2018.0,1962.0,PRIVATE,19,Beaches-East York,327 CHISHOLM AVE,4,20,2018-12-18,74,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,,4.0,3.0,3.0,5.0,3.0,4.0,3.0,4.0,3.0,4.0,,S1926,43.6971816506,-79.30644386430001,320386.05199999997,4839487.593
-893558,4153144,2017.0,2018.0,1994.0,SOCIAL HOUSING,10,Spadina-Fort York,138 CLAREMONT ST,3,18,2018-12-18,65,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,4.0,3.0,3.0,3.0,,S1022,43.6499453573,-79.411506674,311923.107,4834225.424
-893559,4155128,2017.0,2018.0,1977.0,PRIVATE,5,York South-Weston,12 BUTTONWOOD AVE,4,40,2018-12-17,68,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,2.0,3.0,3.0,,4.0,2.0,4.0,2.0,5.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0531,43.6911592011,-79.5020724213,304617.364,4838800.489
-893560,4155122,2017.0,2018.0,1983.0,TCHC,5,York South-Weston,30 DENARDA ST,15,255,2018-12-17,58,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,2.0,,W0531,43.68924906,-79.4925042867,305388.692,4838588.272
-893561,4154472,2017.0,2018.0,1969.0,PRIVATE,7,Humber River-Black Creek,20 BROADOAKS DR,9,177,2018-12-17,66,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,2.0,3.0,4.0,2.0,3.0,4.0,,3.0,3.0,3.0,4.0,3.0,4.0,3.0,3.0,4.0,,W0731,43.7577107844,-79.4909188845,305515.869,4846193.988
-893562,4155419,2017.0,2018.0,1964.0,PRIVATE,1,Etobicoke North,6 AUBURNDALE CRT,7,82,2018-12-17,66,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,2.0,2.0,2.0,3.0,5.0,4.0,2.0,3.0,4.0,4.0,3.0,,W0131,43.718223584099995,-79.5547061524,300376.432,4841808.712
-893563,4154063,2017.0,2018.0,1956.0,PRIVATE,19,Beaches-East York,2920 ST CLAIR AVE E,4,15,2018-12-17,78,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,4.0,4.0,4.0,,4.0,,4.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1924,43.708477676,-79.3002028238,320886.13,4840743.72
-893564,4154062,2017.0,2018.0,1956.0,PRIVATE,19,Beaches-East York,2922 ST CLAIR AVE E,4,16,2018-12-17,79,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,3.0,4.0,3.0,,4.0,4.0,,S1924,43.7085088591,-79.2998972117,320910.751,4840747.242
-893565,4155130,2017.0,2018.0,1969.0,PRIVATE,5,York South-Weston,24 PINEHILL CRES,4,29,2018-12-17,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,2.0,3.0,3.0,4.0,5.0,4.0,3.0,3.0,3.0,4.0,3.0,,W0531,43.688323353,-79.50178938,304639.897,4838486.396000001
-893566,4153046,2017.0,2018.0,1960.0,PRIVATE,4,Parkdale-High Park,83 INDIAN RD,5,21,2018-12-17,46,Building Audit,17,1.0,1.0,2.0,2.0,3.0,3.0,,3.0,3.0,,1.0,2.0,5.0,2.0,2.0,2.0,3.0,1.0,3.0,,S0434,43.642240012799995,-79.4533563133,308547.591,4833366.778
-893567,4153047,2017.0,2018.0,1970.0,PRIVATE,4,Parkdale-High Park,109 INDIAN RD,8,38,2018-12-17,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,3.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S0434,43.6433287042,-79.4525126324,308615.591,4833487.768
-893568,4155422,2017.0,2018.0,1955.0,PRIVATE,1,Etobicoke North,75 IRWIN RD,6,53,2018-12-17,71,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,4.0,5.0,3.0,,2.0,5.0,3.0,4.0,3.0,5.0,3.0,4.0,4.0,2.0,2.0,4.0,,W0131,43.7249788623,-79.5580297876,300109.16,4842559.379
-893569,4154188,2018.0,2018.0,1956.0,PRIVATE,15,Don Valley West,18 KENRAE RD,3,13,2018-12-17,78,Evaluation needs to be conducted in 2 years,17,4.0,3.0,3.0,5.0,3.0,4.0,,5.0,,4.0,5.0,4.0,5.0,2.0,3.0,4.0,4.0,4.0,4.0,,N1531,43.704897465,-79.361903925,315914.058,4840336.839
-893570,4155402,2017.0,2018.0,1970.0,PRIVATE,2,Etobicoke Centre,1 RABBIT LANE,7,33,2018-12-17,78,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,3.0,,W0226,43.658401374899995,-79.5675840655,299333.331,4835163.3889999995
-893571,4154226,2017.0,2018.0,1967.0,PRIVATE,7,Humber River-Black Creek,2020 SHEPPARD AVE W,15,204,2018-12-17,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,W0729,43.739202145,-79.5181434205,303323.153,4844137.908
-893572,4154462,2017.0,2018.0,1973.0,PRIVATE,7,Humber River-Black Creek,25 BROADOAKS DR,9,92,2018-12-17,72,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,4.0,4.0,4.0,4.0,3.0,3.0,,4.0,3.0,5.0,4.0,4.0,4.0,3.0,2.0,3.0,,W0731,43.756925959600004,-79.49101087439999,305508.471,4846106.795
-893573,4155397,2018.0,2018.0,1952.0,PRIVATE,2,Etobicoke Centre,440 RATHBURN RD,7,80,2018-12-17,72,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,3.0,4.0,3.0,,5.0,4.0,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,W0225,43.6542760057,-79.57140941899999,299024.393,4834705.336
-893574,4155589,2017.0,2018.0,1971.0,TCHC,4,Parkdale-High Park,245 DUNN AVE,20,384,2018-12-17,57,Evaluation needs to be conducted in 1 year,20,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,4.0,2.0,S0436,43.640216059,-79.433778346,310127.038,4833143.912
-893575,4154123,2017.0,2018.0,1960.0,PRIVATE,14,Toronto-Danforth,51 GAMBLE AVE,6,49,2018-12-17,61,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,3.0,2.0,4.0,3.0,3.0,4.0,3.0,3.0,2.0,,S1421,43.6895687051,-79.35205503590001,316711.144,4838634.294
-893576,4154135,2017.0,2018.0,1964.0,PRIVATE,14,Toronto-Danforth,72 GAMBLE AVE,12,212,2018-12-17,81,Evaluation needs to be conducted in 2 years,20,5.0,5.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,5.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,S1421,43.6901320701,-79.3521100097,316706.6,4838696.875
-893577,4153143,2017.0,2018.0,1930.0,PRIVATE,10,Spadina-Fort York,115 EUCLID AVE,3,16,2018-12-17,70,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,3.0,2.0,3.0,,4.0,,,3.0,4.0,5.0,3.0,3.0,3.0,5.0,3.0,3.0,,S1022,43.6494076571,-79.4085775875,312159.435,4834165.952
-893578,4155922,2017.0,2018.0,1972.0,TCHC,4,Parkdale-High Park,3725 DUNDAS ST W,10,153,2018-12-17,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,2.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,,S0421,43.6653702089,-79.4987991022,304881.17100000003,4835935.438999999
-893579,4156016,2017.0,2018.0,1972.0,TCHC,4,Parkdale-High Park,3735 DUNDAS ST W,10,132,2018-12-17,59,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,2.0,4.0,3.0,3.0,3.0,3.0,,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,2.0,,S0421,43.665189036,-79.499393828,304843.771,4835924.808999999
-893580,4155371,2017.0,2018.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,5294 DUNDAS ST W,7,45,2018-12-17,56,Evaluation needs to be conducted in 1 year,17,3.0,2.0,3.0,3.0,3.0,3.0,,3.0,2.0,,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,,W0323,43.637025183,-79.54003296,301553.935,4832788.22
-893581,4153511,2017.0,2018.0,1968.0,PRIVATE,13,Toronto Centre,41 DUNDONALD ST,18,107,2018-12-17,73,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,5.0,3.0,3.0,4.0,3.0,3.0,3.0,,S1322,43.66621262100001,-79.382200082,314284.363,4836036.603999999
-893582,4153512,2017.0,2018.0,1917.0,PRIVATE,13,Toronto Centre,49 DUNDONALD ST,5,32,2018-12-17,73,Evaluation needs to be conducted in 2 years,15,4.0,4.0,3.0,3.0,3.0,4.0,,3.0,4.0,,4.0,4.0,5.0,3.0,4.0,4.0,,3.0,,,S1322,43.666349498,-79.381871851,314310.814,4836051.846
-893583,4154219,2017.0,2018.0,1965.0,PRIVATE,7,Humber River-Black Creek,99 MATTSON RD,4,30,2018-12-17,60,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,2.0,,2.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,,W0734,43.722654944,-79.5130447411,303733.493,4842299.549
-893584,4154346,2017.0,2018.0,1962.0,PRIVATE,5,York South-Weston,1560 LAWRENCE AVE W,6,90,2018-12-17,71,Evaluation needs to be conducted in 2 years,19,3.0,3.0,5.0,3.0,4.0,3.0,3.0,5.0,4.0,2.0,3.0,4.0,5.0,3.0,3.0,3.0,5.0,4.0,2.0,,W0526,43.706628986000005,-79.487496518,305791.914,4840520.101
-893585,4154342,2017.0,2018.0,1960.0,PRIVATE,5,York South-Weston,1570 LAWRENCE AVE W,6,87,2018-12-17,74,Evaluation needs to be conducted in 2 years,18,3.0,3.0,5.0,3.0,4.0,3.0,4.0,4.0,3.0,,3.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,W0526,43.7066390346,-79.48837900390001,305721.05600000004,4840520.254
-893586,4153062,2017.0,2018.0,1918.0,TCHC,4,Parkdale-High Park,22 O'HARA AVE,3,13,2018-12-17,74,Evaluation needs to be conducted in 2 years,14,4.0,3.0,3.0,3.0,3.0,4.0,,4.0,,,3.0,4.0,5.0,4.0,4.0,3.0,,5.0,,,S0435,43.6419758468,-79.4348296425,310042.331,4833338.397
-893587,4155396,2017.0,2018.0,1963.0,PRIVATE,2,Etobicoke Centre,70 DIXFIELD DR,12,141,2018-12-14,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,2.0,,W0225,43.656041966000004,-79.572403682,298944.101,4834902.553
-893588,4243431,2017.0,2018.0,1968.0,PRIVATE,7,Humber River-Black Creek,2801 JANE ST,17,234,2018-12-14,63,Evaluation needs to be conducted in 1 year,18,4.0,4.0,4.0,3.0,4.0,3.0,2.0,3.0,3.0,,2.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0730,43.7502253934,-79.5151711117,303562.808,4845362.501
-893589,4253833,2018.0,2018.0,1960.0,PRIVATE,4,Parkdale-High Park,1 CLAUDE AVE,3,30,2018-12-14,69,Evaluation needs to be conducted in 2 years,14,4.0,3.0,3.0,4.0,3.0,3.0,,3.0,,,4.0,4.0,5.0,4.0,3.0,3.0,,2.0,,,S0434,43.639823941,-79.451749578,308677.11199999996,4833099.385
-893590,4154235,2017.0,2018.0,1970.0,PRIVATE,7,Humber River-Black Creek,45 DRIFTWOOD AVE,14,137,2018-12-14,63,Evaluation needs to be conducted in 1 year,18,4.0,3.0,4.0,2.0,4.0,3.0,4.0,2.0,4.0,,3.0,4.0,5.0,3.0,2.0,2.0,3.0,3.0,2.0,,W0730,43.7511483154,-79.5114796645,303860.109,4845464.976
-893591,4154196,2017.0,2018.0,1960.0,PRIVATE,15,Don Valley West,27 BRENTCLIFFE RD,3,12,2018-12-14,88,Evaluation needs to be conducted in 3 years,16,4.0,5.0,5.0,5.0,4.0,4.0,,4.0,,2.0,5.0,4.0,5.0,5.0,4.0,4.0,,5.0,5.0,,N1529,43.714989869300005,-79.35960275,316097.848,4841457.449
-893592,4153858,2017.0,2018.0,1960.0,PRIVATE,15,Don Valley West,2707 YONGE ST,4,48,2018-12-14,85,Evaluation needs to be conducted in 2 years,15,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,,3.0,4.0,5.0,5.0,5.0,5.0,4.0,,5.0,,,N1526,43.716980201000005,-79.400164813,312828.832,4841674.847
-893593,4153861,2017.0,2018.0,1934.0,PRIVATE,15,Don Valley West,2779 YONGE ST,4,16,2018-12-14,50,Building Audit,16,2.0,2.0,2.0,2.0,2.0,3.0,,2.0,,,2.0,3.0,4.0,2.0,2.0,3.0,3.0,3.0,3.0,,N1526,43.718580523199996,-79.40042067270001,312808.266,4841851.654
-893594,4156611,2017.0,2018.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,2844 BLOOR ST W,3,14,2018-12-14,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,3.0,4.0,4.0,,3.0,,3.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,5.0,,W0322,43.649347734399996,-79.503797178,,
-893595,4156649,2017.0,2018.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,2846 BLOOR ST W,4,16,2018-12-14,80,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,4.0,4.0,4.0,,4.0,,3.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,5.0,,W0322,43.6492875275,-79.5040692616,,
-893596,4153147,2017.0,2018.0,1912.0,PRIVATE,10,Spadina-Fort York,255 DOVERCOURT RD,3,16,2018-12-14,68,Evaluation needs to be conducted in 2 years,16,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,,,3.0,5.0,5.0,3.0,2.0,3.0,3.0,2.0,4.0,,S1021,43.6484324377,-79.42402265850001,310913.609,4834056.383
-893597,4154205,2017.0,2018.0,1965.0,PRIVATE,15,Don Valley West,1903 BAYVIEW AVE,5,27,2018-12-14,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,5.0,2.0,4.0,4.0,5.0,4.0,4.0,,N1529,43.715723026300005,-79.377538515,314652.469,4841536.636
-893598,4154231,2017.0,2018.0,1970.0,PRIVATE,7,Humber River-Black Creek,2940 JANE ST,13,153,2018-12-14,77,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,,4.0,3.0,5.0,4.0,4.0,4.0,5.0,5.0,4.0,,W0729,43.753728376000005,-79.51778801020001,303352.137,4845751.71
-893599,4154233,2017.0,2018.0,1970.0,PRIVATE,7,Humber River-Black Creek,2970 JANE ST,14,164,2018-12-14,79,Evaluation needs to be conducted in 2 years,18,3.0,4.0,3.0,4.0,4.0,4.0,4.0,3.0,3.0,,4.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,4.0,,W0729,43.7553825332,-79.5178201808,303349.587,4845935.472
-893600,4155587,2017.0,2018.0,1969.0,TCHC,4,Parkdale-High Park,100 HIGH PARK AVE,24,447,2018-12-14,62,Evaluation needs to be conducted in 1 year,20,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,2.0,3.0,3.0,3.0,3.0,4.0,3.0,S0428,43.656567829,-79.4673846716,307415.157,4834958.018
-893601,4152690,2017.0,2018.0,1958.0,PRIVATE,20,Scarborough Southwest,709 KENNEDY RD,6,79,2018-12-14,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2023,43.728137438699996,-79.2656668508,323663.167,4842935.041
-893602,4152691,2018.0,2018.0,1958.0,PRIVATE,20,Scarborough Southwest,711 KENNEDY RD,6,79,2018-12-14,71,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,,4.0,,3.0,3.0,,3.0,2.0,5.0,3.0,4.0,4.0,4.0,4.0,3.0,,E2023,43.728707711400006,-79.26590545090001,323643.766,4842998.342
-893603,4153852,2017.0,2018.0,1930.0,PRIVATE,15,Don Valley West,21 SHERWOOD AVE,3,26,2018-12-14,87,Evaluation needs to be conducted in 3 years,17,5.0,4.0,5.0,5.0,5.0,4.0,3.0,4.0,,4.0,5.0,5.0,5.0,4.0,4.0,5.0,,5.0,2.0,,N1526,43.713477488,-79.398290281,312980.353,4841285.901000001
-893604,4153072,2017.0,2018.0,1930.0,PRIVATE,4,Parkdale-High Park,469 RONCESVALLES AVE,4,15,2018-12-14,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,,,S0433,43.65312019899999,-79.451329542,308710.143,4834576.586
-893605,4253901,2017.0,2018.0,1963.0,PRIVATE,14,Toronto-Danforth,20 COSBURN AVE,3,30,2018-12-14,75,Evaluation needs to be conducted in 2 years,17,4.0,3.0,5.0,4.0,4.0,4.0,,3.0,,3.0,5.0,4.0,5.0,3.0,4.0,3.0,4.0,3.0,3.0,,S1421,43.688697769300006,-79.3541118682,316545.506,4838537.252
-893606,4154131,2017.0,2018.0,1965.0,PRIVATE,14,Toronto-Danforth,30 COSBURN AVE,5,26,2018-12-14,69,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,3.0,4.0,5.0,,4.0,,,4.0,3.0,5.0,3.0,3.0,2.0,2.0,3.0,3.0,,S1421,43.6889031771,-79.35273098340001,316656.787,4838560.2639999995
-893607,4154112,2017.0,2018.0,1973.0,PRIVATE,14,Toronto-Danforth,55 COSBURN AVE,12,155,2018-12-14,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,5.0,3.0,3.0,4.0,3.0,5.0,5.0,4.0,3.0,4.0,4.0,5.0,3.0,3.0,,S1421,43.6884922382,-79.3520019211,316715.641,4838514.709
-893608,4154114,2018.0,2018.0,1986.0,PRIVATE,14,Toronto-Danforth,91 COSBURN AVE,11,86,2018-12-14,72,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,4.0,3.0,5.0,,3.0,4.0,,3.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,S1421,43.688826668199994,-79.3502448679,316857.213,4838552.103
-893609,4154128,2017.0,2018.0,1961.0,PRIVATE,14,Toronto-Danforth,100 COSBURN AVE,7,140,2018-12-14,89,Evaluation needs to be conducted in 3 years,18,5.0,3.0,5.0,5.0,5.0,4.0,,5.0,5.0,4.0,5.0,5.0,5.0,3.0,5.0,5.0,4.0,3.0,4.0,,S1421,43.6894490908,-79.3500408612,316873.531,4838621.28
-893610,4154137,,2018.0,1955.0,PRIVATE,14,Toronto-Danforth,1243 BROADVIEW AVE,4,38,2018-12-14,71,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,4.0,5.0,5.0,4.0,3.0,3.0,,3.0,3.0,,S1421,43.6907938758,-79.3550051135,316473.095,4838770.007
-893611,4155681,2017.0,2018.0,1996.0,SOCIAL HOUSING,10,Spadina-Fort York,900 QUEEN ST W,3,22,2018-12-14,75,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,4.0,3.0,5.0,,4.0,4.0,,4.0,3.0,5.0,3.0,4.0,3.0,,3.0,3.0,4.0,S1021,43.6450713717,-79.4156086518,311592.747,4833683.596
-893612,4154198,2017.0,2018.0,1945.0,PRIVATE,15,Don Valley West,958 EGLINTON AVE E,3,24,2018-12-14,79,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,3.0,5.0,5.0,,3.0,,4.0,4.0,4.0,5.0,3.0,3.0,3.0,,5.0,3.0,,N1529,43.714859025,-79.36014009,316054.311,4841443.795
-893613,4154195,2017.0,2018.0,1944.0,PRIVATE,15,Don Valley West,960 EGLINTON AVE E,3,16,2018-12-14,84,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,4.0,3.0,5.0,,4.0,,,5.0,4.0,5.0,4.0,4.0,4.0,,5.0,4.0,,N1529,43.71515813,-79.359256459,316125.459,4841477.143
-893614,4154133,2019.0,2018.0,1958.0,PRIVATE,14,Toronto-Danforth,15 GAMBLE AVE,3,27,2018-12-14,70,Evaluation needs to be conducted in 2 years,16,4.0,3.0,5.0,4.0,3.0,3.0,,4.0,,,4.0,4.0,5.0,3.0,3.0,3.0,2.0,3.0,3.0,,S1421,43.6891811387,-79.3538144471,316569.387,4838590.994
-893615,4154234,2017.0,2018.0,1971.0,PRIVATE,7,Humber River-Black Creek,1825 FINCH AVE W,16,171,2018-12-14,73,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,5.0,5.0,3.0,4.0,2.0,3.0,2.0,2.0,4.0,W0730,43.757886117,-79.511912431,303825.107,4846214.47
-893616,4154121,2017.0,2018.0,1970.0,PRIVATE,14,Toronto-Danforth,33 GAMBLE AVE,4,28,2018-12-14,82,Evaluation needs to be conducted in 2 years,17,5.0,4.0,4.0,5.0,5.0,5.0,,3.0,,4.0,5.0,5.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,,S1421,43.6894011372,-79.352872034,316645.318,4838615.567
-893617,4154122,2017.0,2018.0,1974.0,PRIVATE,14,Toronto-Danforth,45 GAMBLE AVE,6,49,2018-12-14,83,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,4.0,4.0,5.0,,4.0,5.0,4.0,4.0,5.0,5.0,3.0,3.0,4.0,4.0,3.0,4.0,,S1421,43.689482846000004,-79.3524948053,316675.712,4838624.697
-893618,4154117,2017.0,2018.0,1970.0,PRIVATE,14,Toronto-Danforth,60 GOWAN AVE,21,118,2018-12-14,86,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,5.0,5.0,4.0,3.0,5.0,4.0,5.0,5.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,,S1421,43.6880167433,-79.3522352421,316696.92699999997,4838461.851
-893619,4153514,2017.0,2018.0,1970.0,PRIVATE,13,Toronto Centre,15 DUNDONALD ST,24,172,2018-12-14,75,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,4.0,S1322,43.665727503,-79.383887543,314148.344,4835982.525
-893620,4154345,2017.0,2018.0,1963.0,PRIVATE,5,York South-Weston,1550 LAWRENCE AVE W,7,96,2018-12-14,73,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,3.0,3.0,3.0,4.0,4.0,4.0,3.0,3.0,3.0,5.0,4.0,4.0,4.0,5.0,4.0,3.0,,W0526,43.707214984,-79.486164406,305899.26399999997,4840585.216
-893621,4155437,2018.0,2018.0,1960.0,PRIVATE,1,Etobicoke North,21 TORBOLTON DR,3,15,2018-12-14,74,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,3.0,3.0,,5.0,,,3.0,2.0,5.0,3.0,4.0,4.0,4.0,3.0,4.0,,W0130,43.7192557504,-79.5581150551,300101.833,4841923.575
-893622,4155431,2017.0,2018.0,1962.0,PRIVATE,1,Etobicoke North,40 TORBOLTON DR,3,17,2018-12-14,71,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,3.0,4.0,2.0,,4.0,,,4.0,3.0,5.0,3.0,4.0,4.0,3.0,1.0,4.0,,W0130,43.7198931386,-79.5585311012,300068.36,4841994.413
-893623,4156295,2017.0,2018.0,1967.0,PRIVATE,5,York South-Weston,1765 WESTON RD,25,246,2018-12-14,63,Evaluation needs to be conducted in 1 year,19,3.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,2.0,3.0,3.0,3.0,2.0,2.0,3.0,4.0,4.0,,W0527,43.6990639559,-79.5119719596,303819.476,4839678.778
-893624,4155920,2017.0,2018.0,1967.0,PRIVATE,5,York South-Weston,1775 WESTON RD,25,245,2018-12-14,62,Evaluation needs to be conducted in 1 year,19,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,2.0,3.0,4.0,4.0,,W0527,43.6994166431,-79.51287144,303746.982,4839717.978999999
-893625,4153550,2018.0,2018.0,1917.0,PRIVATE,11,University-Rosedale,628 CHURCH ST,3,20,2018-12-14,57,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,,3.0,,3.0,,,2.0,2.0,5.0,2.0,3.0,3.0,3.0,2.0,,,S1137,43.669587287,-79.382813793,314232.17,4836412.982
-893626,4155872,2017.0,2018.0,1910.0,PRIVATE,13,Toronto Centre,592 CHURCH ST,3,12,2018-12-13,69,Evaluation needs to be conducted in 2 years,13,4.0,4.0,4.0,3.0,,3.0,,4.0,,,3.0,3.0,4.0,3.0,4.0,3.0,,3.0,,,S1322,43.667031521000006,-79.3817873,314317.525,4836127.624
-893627,4155136,2017.0,2018.0,1951.0,PRIVATE,5,York South-Weston,1693 WESTON RD,3,12,2018-12-13,77,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,3.0,3.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,4.0,,W0527,43.6974801662,-79.50926226989999,304037.854,4839502.786
-893628,4154197,2017.0,2018.0,1958.0,PRIVATE,15,Don Valley West,31 BRENTCLIFFE RD,4,16,2018-12-13,75,Evaluation needs to be conducted in 2 years,15,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,,,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,4.0,,N1529,43.7152123355,-79.35969038260001,316090.745,4841482.152
-893629,4153170,2017.0,2018.0,1920.0,PRIVATE,11,University-Rosedale,711 BLOOR ST W,3,12,2018-12-13,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,,,3.0,3.0,5.0,3.0,2.0,2.0,3.0,3.0,3.0,,S1133,43.663485375600004,-79.4178022467,311413.725,4835729.2360000005
-893630,4155133,2017.0,2018.0,1968.0,PRIVATE,5,York South-Weston,80 CLOUSTON AVE,3,17,2018-12-13,74,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,4.0,4.0,3.0,,4.0,,4.0,4.0,4.0,5.0,3.0,3.0,4.0,,3.0,3.0,,W0527,43.6945334826,-79.50843690090001,304104.346,4839175.411
-893631,4155213,2017.0,2018.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,2696 BLOOR ST W,3,15,2018-12-13,68,Evaluation needs to be conducted in 2 years,17,4.0,3.0,2.0,4.0,3.0,3.0,,3.0,,3.0,4.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,5.0,,W0322,43.6503199258,-79.4985552052,304900.86199999996,4834263.452
-893632,4154459,2017.0,2018.0,1966.0,PRIVATE,6,York Centre,41-51 BROOKWELL DR,4,48,2018-12-13,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,,4.0,3.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,,N0625,43.744081781000006,-79.49503543899999,305180.295,4844713.7360000005
-893633,4156504,2017.0,2018.0,1966.0,PRIVATE,6,York Centre,41 BROOKWELL DR,4,38,2018-12-13,74,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,4.0,3.0,4.0,3.0,4.0,5.0,,4.0,3.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,,N0625,43.744053862399994,-79.4951490688,305175.28,4844676.739
-893634,4155470,2017.0,2018.0,1977.0,TCHC,3,Etobicoke-Lakeshore,100 CAVELL AVE,7,300,2018-12-13,74,Evaluation needs to be conducted in 2 years,20,3.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,W0336,43.6154876721,-79.4969959174,305026.782,4830393.808
-893635,4155873,2017.0,2018.0,1971.0,TCHC,5,York South-Weston,5 BELLEVUE CRES,21,326,2018-12-13,57,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,3.0,3.0,2.0,3.0,3.0,,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0527,43.699140093400004,-79.51522928520001,303556.925,4839687.3
-893636,4154067,2017.0,2018.0,1960.0,PRIVATE,19,Beaches-East York,2890 ST CLAIR AVE E,4,31,2018-12-13,76,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,4.0,4.0,4.0,,4.0,,,3.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,,S1924,43.707880094,-79.302844655,320715.28,4840691.633
-893637,4154066,2017.0,2018.0,1955.0,PRIVATE,19,Beaches-East York,2892 ST CLAIR AVE E,4,34,2018-12-13,79,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,,,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1924,43.70796583,-79.30242735899999,320686.3,4840682.162
-893638,4154230,2017.0,2018.0,1971.0,PRIVATE,7,Humber River-Black Creek,2850 JANE ST,13,156,2018-12-13,68,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,,W0729,43.7501032079,-79.5169169125,303422.212,4845348.952
-893639,4154232,2017.0,2018.0,1960.0,PRIVATE,7,Humber River-Black Creek,2900 JANE ST,14,183,2018-12-13,67,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,,3.0,4.0,5.0,3.0,3.0,4.0,2.0,3.0,3.0,,W0729,43.7531434812,-79.5178280471,303348.899,4845686.734
-893640,4154355,,2018.0,1954.0,PRIVATE,5,York South-Weston,2416 KEELE ST,3,17,2018-12-13,76,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,3.0,,4.0,,,4.0,4.0,5.0,3.0,3.0,3.0,,5.0,3.0,,W0526,43.7097870925,-79.4788512552,306488.836,4840870.115
-893641,4154353,2017.0,2018.0,1958.0,PRIVATE,5,York South-Weston,2420 KEELE ST,3,11,2018-12-13,80,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,W0526,43.7102484483,-79.47881998310001,306491.343,4840921.369
-893642,4154352,2017.0,2018.0,1950.0,PRIVATE,5,York South-Weston,2422 KEELE ST,3,10,2018-12-13,87,Evaluation needs to be conducted in 3 years,15,5.0,5.0,4.0,5.0,5.0,3.0,,4.0,,,5.0,4.0,5.0,5.0,3.0,4.0,,4.0,4.0,,W0526,43.7104582053,-79.4787969775,306489.91,4840962.965
-893643,4154347,2017.0,2018.0,1958.0,PRIVATE,5,York South-Weston,2440 KEELE ST,3,34,2018-12-13,73,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,3.0,3.0,4.0,,4.0,,,3.0,4.0,5.0,4.0,3.0,3.0,,4.0,3.0,,W0526,43.711712237,-79.4792178818,306459.23699999996,4841083.978999999
-893644,4168988,2017.0,2018.0,1986.0,SOCIAL HOUSING,1,Etobicoke North,20 HUMBERLINE DR,11,104,2018-12-13,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,4.0,3.0,4.0,4.0,3.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0125,43.731736309700004,-79.6140657224,295538.059,4843285.541999999
-893645,4168986,2017.0,2018.0,1984.0,SOCIAL HOUSING,1,Etobicoke North,30 HUMBERLINE DR,19,176,2018-12-13,74,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,,W0125,43.7316900072,-79.6148713323,295530.63399999996,4843309.676
-893646,4153845,2017.0,2018.0,1958.0,PRIVATE,15,Don Valley West,65 KEEWATIN AVE,4,50,2018-12-13,89,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,5.0,4.0,4.0,,4.0,5.0,4.0,5.0,5.0,5.0,4.0,3.0,4.0,5.0,5.0,3.0,,N1526,43.7124138998,-79.3974353444,313049.654,4841166.871
-893647,4152670,2017.0,2018.0,1971.0,PRIVATE,20,Scarborough Southwest,672 KENNEDY RD,6,71,2018-12-13,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2023,43.726055224899994,-79.2659127498,323643.994,4842703.654
-893648,4155621,2017.0,2018.0,1967.0,TCHC,5,York South-Weston,1570 JANE ST,6,76,2018-12-13,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,W0527,43.6990884103,-79.5033968088,304510.668,4839681.395
-893649,4153850,2017.0,2018.0,1930.0,PRIVATE,15,Don Valley West,11 SHERWOOD AVE,3,23,2018-12-13,86,Evaluation needs to be conducted in 3 years,17,5.0,4.0,5.0,5.0,5.0,4.0,3.0,4.0,,3.0,4.0,5.0,5.0,4.0,5.0,4.0,,5.0,3.0,,N1526,43.713358222,-79.398875082,312933.244,4841272.594
-893650,4153853,2017.0,2018.0,1930.0,PRIVATE,15,Don Valley West,25 SHERWOOD AVE,3,27,2018-12-13,85,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,5.0,5.0,4.0,3.0,4.0,,3.0,4.0,5.0,5.0,3.0,5.0,4.0,,5.0,,,N1526,43.713530331,-79.398012046,313002.767,4841291.799
-893651,4442561,,2018.0,,PRIVATE,9,Davenport,17 PATON RD,4,16,2018-12-13,50,Building Audit,14,2.0,2.0,2.0,2.0,,3.0,,3.0,,,2.0,1.0,3.0,3.0,3.0,3.0,,3.0,3.0,,S0930,43.660285665,-79.444110556,309291.922,4835372.952
-893652,4155196,2017.0,2018.0,1979.0,TCHC,5,York South-Weston,55 OUTLOOK AVE,12,275,2018-12-13,74,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,4.0,4.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,W0535,43.678446839799996,-79.49624040329999,305087.49600000004,4837388.185
-893653,4153071,2018.0,2018.0,1920.0,PRIVATE,4,Parkdale-High Park,467 RONCESVALLES AVE,4,15,2018-12-13,65,Evaluation needs to be conducted in 1 year,15,4.0,4.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,2.0,4.0,3.0,,,S0433,43.653029024,-79.451300765,308712.47,4834566.458000001
-893654,4153053,2017.0,2018.0,1960.0,PRIVATE,4,Parkdale-High Park,470 RONCESVALLES AVE,4,39,2018-12-13,74,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,3.0,4.0,,3.0,,,4.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,,S0432,43.653020008,-79.451921964,308662.363,4834565.429
-893655,4153150,2017.0,2018.0,1912.0,PRIVATE,11,University-Rosedale,677 COLLEGE ST,3,32,2018-12-13,77,Evaluation needs to be conducted in 2 years,15,3.0,5.0,5.0,4.0,3.0,5.0,,4.0,,,3.0,4.0,5.0,3.0,4.0,4.0,,3.0,3.0,,S1141,43.6549416362,-79.4173376182,311452.2,4834780.093
-893656,4153151,2017.0,2018.0,1929.0,PRIVATE,11,University-Rosedale,805 COLLEGE ST,4,72,2018-12-13,70,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,3.0,4.0,4.0,,3.0,,,4.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1141,43.6543880918,-79.4216105716,311107.589,4834718.259
-893657,4154113,2018.0,2018.0,1968.0,PRIVATE,14,Toronto-Danforth,75 COSBURN AVE,12,118,2018-12-13,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,3.0,4.0,3.0,3.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,S1421,43.6886962162,-79.3510054623,316795.92699999997,4838537.506
-893658,4155448,2017.0,2018.0,1965.0,PRIVATE,1,Etobicoke North,20 SANAGAN RD,5,86,2018-12-13,76,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,4.0,3.0,3.0,4.0,4.0,5.0,3.0,4.0,4.0,5.0,4.0,4.0,3.0,3.0,4.0,3.0,,W0124,43.738497055799996,-79.5771085604,298573.456,4844062.39
-893659,4152667,2017.0,2018.0,1962.0,PRIVATE,20,Scarborough Southwest,130 FOXRIDGE DR,3,30,2018-12-13,81,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2023,43.7242519745,-79.2657615108,323656.732,4842503.35
-893660,4154136,2017.0,2018.0,1964.0,PRIVATE,14,Toronto-Danforth,20 GAMBLE AVE,12,213,2018-12-13,83,Evaluation needs to be conducted in 2 years,20,5.0,4.0,5.0,4.0,3.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,S1421,43.6898019641,-79.3535830039,316587.924,4838659.999
-893661,4154120,2019.0,2018.0,1960.0,PRIVATE,14,Toronto-Danforth,27 GAMBLE AVE,6,75,2018-12-13,67,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,5.0,3.0,3.0,3.0,2.0,3.0,3.0,,S1421,43.6892398078,-79.3532188818,316617.38800000004,4838597.595
-893662,4154199,2017.0,2018.0,1958.0,PRIVATE,15,Don Valley West,904 EGLINTON AVE E,4,22,2018-12-13,50,Building Audit,16,2.0,2.0,3.0,2.0,3.0,2.0,,2.0,,3.0,3.0,2.0,2.0,3.0,3.0,2.0,,3.0,3.0,,N1529,43.71442413,-79.362206452,315887.881,4841395.201
-893663,4155454,2018.0,2018.0,1976.0,PRIVATE,1,Etobicoke North,2757 KIPLING AVE,19,343,2018-12-13,65,Evaluation needs to be conducted in 1 year,19,3.0,3.0,5.0,2.0,3.0,3.0,3.0,3.0,3.0,,2.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,W0124,43.754436232299994,-79.5871043127,297770.21,4845833.956
-893664,4156791,2017.0,2018.0,1960.0,PRIVATE,16,Don Valley East,876 LAWRENCE AVE E,3,12,2018-12-13,75,Evaluation needs to be conducted in 2 years,15,4.0,3.0,2.0,3.0,4.0,4.0,,3.0,,,4.0,4.0,5.0,4.0,5.0,4.0,,5.0,2.0,,N1623,43.736202426000006,-79.34939102,316916.219,4843816.4
-893665,4155628,2017.0,2018.0,1957.0,TCHC,8,Eglinton-Lawrence,1 LEILA LANE,3,31,2018-12-13,74,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,4.0,3.0,4.0,3.0,,,4.0,4.0,5.0,4.0,3.0,3.0,,5.0,4.0,,N0823,43.72308488,-79.445941428,309139.794,4842349.549
-893666,4155434,2017.0,2018.0,1950.0,PRIVATE,1,Etobicoke North,14 TORBOLTON DR,3,16,2018-12-13,70,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,2.0,3.0,4.0,,4.0,,,2.0,4.0,5.0,3.0,4.0,4.0,4.0,2.0,4.0,,W0130,43.718690395100005,-79.55908041970001,300024.003,4841860.823
-893667,4155433,2017.0,2018.0,1959.0,PRIVATE,1,Etobicoke North,20 TORBOLTON DR,3,17,2018-12-13,68,Evaluation needs to be conducted in 2 years,16,2.0,4.0,4.0,3.0,3.0,3.0,,4.0,,,3.0,2.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,,W0130,43.719111061999996,-79.5589012928,300038.47,4841907.547
-893668,4154236,2017.0,2018.0,1971.0,PRIVATE,7,Humber River-Black Creek,101 DRIFTWOOD AVE,4,32,2018-12-13,68,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,3.0,,3.0,3.0,5.0,3.0,3.0,4.0,3.0,3.0,3.0,,W0730,43.754502975,-79.513280684,303714.863,4845838.642
-893669,4154253,2017.0,2018.0,1961.0,PRIVATE,7,Humber River-Black Creek,3286 WESTON RD,4,55,2018-12-12,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,3.0,4.0,3.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,W0727,43.7416741492,-79.54061124340001,301513.51300000004,4844413.218
-893670,4155144,2017.0,2018.0,1955.0,PRIVATE,5,York South-Weston,135 WOODWARD AVE,3,10,2018-12-11,63,Evaluation needs to be conducted in 1 year,16,2.0,2.0,5.0,3.0,2.0,3.0,,2.0,,3.0,3.0,4.0,5.0,3.0,3.0,3.0,,4.0,3.0,,W0525,43.7095042953,-79.5076695409,304166.41,4840838.547
-893671,4155149,2017.0,2018.0,1953.0,PRIVATE,5,York South-Weston,145 WOODWARD AVE,3,11,2018-12-11,74,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,3.0,4.0,3.0,,4.0,,4.0,4.0,4.0,5.0,3.0,3.0,3.0,,4.0,4.0,,W0525,43.7098157296,-79.5063954435,304269.088,4840873.131
-893672,4154336,2017.0,2018.0,1955.0,PRIVATE,5,York South-Weston,2550 KEELE ST,3,12,2018-12-11,66,Evaluation needs to be conducted in 2 years,16,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,3.0,,W0526,43.715924263999995,-79.4800852491,306389.231,4841551.892
-893673,4154335,2017.0,2018.0,1954.0,PRIVATE,5,York South-Weston,2552 KEELE ST,4,29,2018-12-11,81,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,5.0,4.0,4.0,,4.0,,,5.0,4.0,,5.0,3.0,3.0,5.0,,3.0,,W0526,43.7163206663,-79.4802113728,306379.058,4841595.928
-893674,4154261,2017.0,2018.0,1969.0,PRIVATE,7,Humber River-Black Creek,35 TOBERMORY DR,11,138,2018-12-11,72,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,,4.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,,W0725,43.761263869,-79.509638013,304008.298,4846589.696
-893675,4155449,2017.0,2018.0,1974.0,PRIVATE,1,Etobicoke North,18 PANORAMA CRT,17,204,2018-12-11,82,Evaluation needs to be conducted in 2 years,20,5.0,4.0,4.0,3.0,4.0,4.0,4.0,5.0,3.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,5.0,W0124,43.7471776431,-79.5819972103,298180.653,4845027.131
-893676,4155438,2017.0,2018.0,1950.0,PRIVATE,1,Etobicoke North,2366 ISLINGTON AVE,3,16,2018-12-11,74,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,4.0,3.0,,3.0,,,4.0,2.0,5.0,3.0,4.0,3.0,4.0,3.0,4.0,,W0130,43.7196647917,-79.5577092738,300134.561,4841968.994
-893677,4154258,2018.0,2018.0,1973.0,PRIVATE,7,Humber River-Black Creek,5 DAMASK AVE,3,12,2018-12-11,68,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,3.0,4.0,4.0,,3.0,,,4.0,3.0,5.0,4.0,3.0,3.0,2.0,4.0,3.0,,W0728,43.741702861899995,-79.5393075079,301618.527,4844416.353999999
-893678,4154473,2017.0,2018.0,1970.0,PRIVATE,7,Humber River-Black Creek,470 SENTINEL RD,22,370,2018-12-11,69,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,W0726,43.762976118100006,-79.502065617,304618.30600000004,4846778.908
-893679,4154244,2017.0,2018.0,1959.0,PRIVATE,7,Humber River-Black Creek,2433 FINCH AVE W,6,117,2018-12-11,75,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,,3.0,4.0,5.0,3.0,4.0,3.0,,4.0,4.0,,W0727,43.749436556000006,-79.548159932,300917.135,4845264.927
-893680,4156704,2017.0,2018.0,1962.0,PRIVATE,7,Humber River-Black Creek,2439 FINCH AVE W,7,112,2018-12-11,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,5.0,3.0,4.0,3.0,,4.0,4.0,,W0727,43.74976083600001,-79.550868013,300687.67699999997,4845313.018
-893681,4155429,2017.0,2018.0,1968.0,PRIVATE,1,Etobicoke North,2329 KIPLING AVE,5,40,2018-12-11,68,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,3.0,3.0,4.0,,4.0,1.0,3.0,3.0,2.0,5.0,3.0,4.0,4.0,5.0,2.0,3.0,,W0130,43.73188797939999,-79.5760047964,298661.68,4843328.069
-893682,4154257,2017.0,2018.0,1960.0,PRIVATE,7,Humber River-Black Creek,3 DAMASK AVE,3,10,2018-12-11,69,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,,4.0,3.0,3.0,5.0,3.0,4.0,4.0,,4.0,3.0,,W0728,43.7416935323,-79.5396641026,301589.804,4844415.3319999995
-893683,4155451,2017.0,2018.0,1978.0,PRIVATE,1,Etobicoke North,2667 KIPLING AVE,23,228,2018-12-10,69,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,3.0,3.0,W0124,43.748495858000005,-79.583366602,298070.253,4845174.643999999
-893684,4155452,2017.0,2018.0,1978.0,PRIVATE,1,Etobicoke North,2677 KIPLING AVE,23,227,2018-12-10,73,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,4.0,3.0,4.0,3.0,3.0,4.0,,4.0,4.0,5.0,4.0,3.0,4.0,3.0,4.0,3.0,,W0124,43.749099512,-79.584064323,298014.13300000003,4845241.7639999995
-893685,4155453,2018.0,2018.0,1976.0,PRIVATE,1,Etobicoke North,2737 KIPLING AVE,23,416,2018-12-10,69,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,,3.0,3.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,W0124,43.753301348,-79.586565549,297813.2,4845708.779
-893686,4154263,2017.0,2018.0,1967.0,PRIVATE,7,Humber River-Black Creek,25 STONG CRT,14,151,2018-12-10,72,Evaluation needs to be conducted in 2 years,19,4.0,4.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,,4.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,W0725,43.7615247984,-79.5177662952,303354.08,4846617.84
-893687,4155439,2017.0,2018.0,1972.0,PRIVATE,1,Etobicoke North,2362 ISLINGTON AVE,3,13,2018-12-10,60,Evaluation needs to be conducted in 1 year,17,3.0,4.0,3.0,4.0,3.0,3.0,,2.0,,4.0,3.0,3.0,5.0,3.0,2.0,2.0,3.0,2.0,2.0,,W0130,43.719305544899996,-79.5575311181,300148.88800000004,4841929.072
-893688,4155152,2017.0,2018.0,1974.0,PRIVATE,5,York South-Weston,150 ROSEMOUNT AVE,5,31,2018-12-10,66,Evaluation needs to be conducted in 2 years,18,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,2.0,,W0525,43.70408526479999,-79.51980573899999,303188.223,4840236.751
-893689,4155440,2017.0,2018.0,1958.0,PRIVATE,1,Etobicoke North,2356 ISLINGTON AVE,3,18,2018-12-10,55,Evaluation needs to be conducted in 1 year,16,3.0,3.0,2.0,2.0,1.0,2.0,,3.0,,,2.0,2.0,5.0,3.0,4.0,4.0,3.0,3.0,2.0,,W0130,43.7189395092,-79.55744108420001,300156.114,4841888.402
-893690,4153057,2017.0,2018.0,1960.0,PRIVATE,4,Parkdale-High Park,1639 BLOOR ST W,6,46,2018-12-10,68,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,4.0,,S0432,43.655402768,-79.455626577,308363.408,4834829.9860000005
-893691,4154262,2017.0,2018.0,1977.0,PRIVATE,7,Humber River-Black Creek,10 SAN ROMANOWAY,34,428,2018-12-10,67,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,,4.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,W0725,43.7585401941,-79.5166809322,303441.401,4846286.246
-893692,4155143,2017.0,2018.0,1954.0,PRIVATE,5,York South-Weston,133 WOODWARD AVE,3,11,2018-12-10,79,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,,3.0,4.0,5.0,5.0,4.0,4.0,3.0,,5.0,3.0,,W0525,43.7094490661,-79.5079325701,304145.213,4840832.415
-893693,4155165,2017.0,2018.0,1960.0,PRIVATE,5,York South-Weston,2292 WESTON RD,8,65,2018-12-07,87,Evaluation needs to be conducted in 3 years,17,5.0,4.0,5.0,3.0,5.0,3.0,,4.0,5.0,,5.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,,W0524,43.7048987763,-79.5296017204,302398.731,4840327.401000001
-893694,4153056,2019.0,2018.0,1930.0,PRIVATE,4,Parkdale-High Park,1643 BLOOR ST W,3,25,2018-12-07,56,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,,3.0,,3.0,,3.0,3.0,2.0,3.0,3.0,2.0,2.0,,3.0,3.0,,S0432,43.655253044,-79.455904958,308340.964,4834813.343
-893695,4153051,2017.0,2018.0,1914.0,PRIVATE,4,Parkdale-High Park,310 RONCESVALLES AVE,4,13,2018-12-07,53,Evaluation needs to be conducted in 1 year,15,3.0,2.0,3.0,3.0,1.0,3.0,,3.0,,,3.0,3.0,4.0,3.0,2.0,2.0,3.0,2.0,,,S0432,43.6492006854,-79.4505020154,308777.417,4834140.227
-893696,4155150,2017.0,2018.0,1950.0,PRIVATE,5,York South-Weston,166 QUEENS DR,3,11,2018-12-07,71,Evaluation needs to be conducted in 2 years,16,3.0,5.0,5.0,3.0,3.0,3.0,,4.0,,3.0,3.0,3.0,5.0,3.0,4.0,3.0,,4.0,3.0,,W0525,43.7065405201,-79.510586885,303931.26399999997,4840509.34
-893697,4154265,2017.0,2018.0,1969.0,PRIVATE,7,Humber River-Black Creek,310 NISKA RD,13,167,2018-12-07,67,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,3.0,,4.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,2.0,,W0725,43.7651648539,-79.5094578761,304023.11699999997,4847022.12
-893698,4154254,2017.0,2018.0,1961.0,PRIVATE,7,Humber River-Black Creek,3266 WESTON RD,4,59,2018-12-07,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,3.0,4.0,3.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,W0727,43.7407950655,-79.5403431231,301535.061,4844315.545
-893699,4154348,2017.0,2018.0,1950.0,PRIVATE,5,York South-Weston,2434 KEELE ST,3,12,2018-12-07,74,Evaluation needs to be conducted in 2 years,13,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,,,4.0,4.0,,4.0,3.0,3.0,,,3.0,,W0526,43.711263649799996,-79.4790421102,306473.414,4841034.147
-893700,4154350,,2018.0,,PRIVATE,5,York South-Weston,2430 KEELE ST,3,12,2018-12-07,72,Evaluation needs to be conducted in 2 years,13,4.0,4.0,3.0,4.0,4.0,4.0,,4.0,,,4.0,3.0,,4.0,3.0,3.0,,,3.0,,W0526,43.71081061,-79.4788967213,306483.424,4841002.355
-893701,4154273,2017.0,2018.0,1965.0,PRIVATE,7,Humber River-Black Creek,100 YORK GATE BLVD,11,133,2018-12-07,60,Evaluation needs to be conducted in 1 year,18,3.0,4.0,3.0,3.0,2.0,3.0,4.0,2.0,3.0,,2.0,3.0,4.0,4.0,3.0,2.0,2.0,4.0,3.0,,W0724,43.7621440095,-79.51993719560001,303179.30100000004,4846686.674
-893702,4156451,2017.0,2018.0,1960.0,PRIVATE,1,Etobicoke North,25 BERGAMOT AVE,4,73,2018-12-07,72,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,4.0,3.0,3.0,3.0,4.0,,4.0,3.0,3.0,5.0,4.0,4.0,3.0,3.0,4.0,3.0,,W0130,43.716209723999995,-79.557077624,300184.917,4841586.092
-893703,4155447,2018.0,2018.0,1965.0,PRIVATE,1,Etobicoke North,2435 KIPLING AVE,13,153,2018-12-07,70,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,3.0,4.0,3.0,3.0,4.0,3.0,,3.0,4.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,,W0124,43.7388442337,-79.578720865,298443.619,4844101.085
-893704,4155456,2017.0,2018.0,1972.0,PRIVATE,1,Etobicoke North,1915 MARTIN GROVE RD,7,135,2018-12-06,83,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,4.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,,W0123,43.7459657464,-79.5951234793,297123.337,4844893.655
-893705,4154267,2017.0,2018.0,1973.0,PRIVATE,7,Humber River-Black Creek,4001 STEELES AVE W,18,356,2018-12-06,60,Evaluation needs to be conducted in 1 year,18,4.0,4.0,3.0,3.0,2.0,3.0,2.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0724,43.77414527,-79.524134475,302841.45399999997,4848021.011
-893706,4156450,2017.0,2018.0,1960.0,PRIVATE,1,Etobicoke North,11 BERGAMOT AVE,7,130,2018-12-06,76,Evaluation needs to be conducted in 2 years,19,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,3.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,4.0,,W0130,43.714919516,-79.55750237,300150.586,4841442.799
-893707,4156355,2017.0,2018.0,1960.0,PRIVATE,1,Etobicoke North,9 BERGAMOT AVE,4,73,2018-12-06,76,Evaluation needs to be conducted in 2 years,19,4.0,5.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,4.0,,W0130,43.714616652,-79.558696849,300054.31,4841409.213
-893708,4154272,,2018.0,1966.0,PRIVATE,7,Humber River-Black Creek,90 YORK GATE BLVD,4,40,2018-12-06,52,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,2.0,2.0,3.0,,2.0,3.0,2.0,2.0,2.0,3.0,3.0,3.0,2.0,,W0724,43.7610772976,-79.5211616748,303080.68,4846568.193
-893709,4155446,2017.0,2018.0,1977.0,SOCIAL HOUSING,1,Etobicoke North,2314 ISLINGTON AVE,11,194,2018-12-06,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,5.0,5.0,3.0,4.0,4.0,3.0,3.0,5.0,4.0,4.0,3.0,,4.0,4.0,5.0,W0130,43.716291217,-79.556254054,300251.286,4841595.1
-893710,4154354,2017.0,2018.0,1960.0,PRIVATE,5,York South-Weston,2418 KEELE ST,3,11,2018-12-06,68,Evaluation needs to be conducted in 2 years,13,3.0,3.0,4.0,4.0,3.0,4.0,,4.0,,,3.0,4.0,,4.0,3.0,2.0,,,3.0,,W0526,43.710013521099995,-79.4787756914,306494.919,4840895.271000001
-893711,4155155,2017.0,2018.0,1960.0,PRIVATE,5,York South-Weston,2275 WESTON RD,3,61,2018-12-06,68,Evaluation needs to be conducted in 2 years,15,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,4.0,3.0,3.0,4.0,,4.0,3.0,,W0524,43.7050925163,-79.5282487597,302507.78,4840348.881
-893712,4250529,2017.0,2018.0,1965.0,PRIVATE,5,York South-Weston,2255 WESTON RD,12,101,2018-12-06,61,Evaluation needs to be conducted in 1 year,17,3.0,3.0,5.0,3.0,3.0,3.0,3.0,2.0,2.0,,2.0,4.0,3.0,3.0,3.0,4.0,2.0,4.0,,,W0524,43.7045706478,-79.52743150170001,302573.625,4840290.883
-893713,4155161,2017.0,2018.0,1970.0,PRIVATE,5,York South-Weston,1906-1930 WESTON RD,12,112,2018-12-06,71,Evaluation needs to be conducted in 2 years,19,3.0,4.0,5.0,3.0,3.0,2.0,4.0,2.0,5.0,2.0,4.0,4.0,5.0,3.0,4.0,3.0,3.0,4.0,4.0,,W0524,43.7002003087,-79.5172673603,303392.674,4839805.124
-893714,4155160,2017.0,2018.0,1973.0,TCHC,5,York South-Weston,1901 WESTON RD,17,400,2018-12-06,65,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,3.0,2.0,4.0,3.0,3.0,3.0,,3.0,3.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,3.0,W0524,43.7005890595,-79.5159933375,303495.37,4839848.29
-893715,4156792,2017.0,2018.0,1960.0,PRIVATE,16,Don Valley East,878 LAWRENCE AVE E,3,11,2018-12-05,76,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,4.0,3.0,4.0,,3.0,,4.0,3.0,4.0,5.0,4.0,5.0,4.0,4.0,5.0,3.0,,N1623,43.736369132,-79.349349482,316919.531,4843834.926
-893716,4154268,2017.0,2018.0,1975.0,PRIVATE,7,Humber River-Black Creek,5000 JANE ST,13,291,2018-12-05,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,,2.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,,W0724,43.77371822600001,-79.52248674399999,303046.894,4847929.838
-893717,4155427,2017.0,2018.0,1963.0,PRIVATE,1,Etobicoke North,25 JANSUSIE RD,3,45,2018-12-05,82,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,4.0,3.0,,5.0,,5.0,3.0,3.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,,W0129,43.730245049,-79.57627802100001,298653.212,4843046.808
-893718,4155458,2017.0,2018.0,1970.0,PRIVATE,1,Etobicoke North,1901 MARTIN GROVE RD,7,136,2018-12-05,68,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,5.0,5.0,4.0,3.0,3.0,3.0,4.0,3.0,,W0123,43.745074163000005,-79.5949238666,297139.297,4844794.585
-893719,4155692,2017.0,2018.0,1971.0,PRIVATE,1,Etobicoke North,1875 MARTIN GROVE RD,12,88,2018-12-05,72,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,3.0,,3.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,,W0123,43.7432814617,-79.5941314137,297202.887,4844595.353
-893720,4154246,2017.0,2018.0,1972.0,PRIVATE,7,Humber River-Black Creek,2405 FINCH AVE W,27,258,2018-12-05,70,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,3.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,,W0727,43.750621288999994,-79.544032103,301238.257,4845408.296
-893721,4153056,2019.0,2018.0,1930.0,PRIVATE,4,Parkdale-High Park,1643 BLOOR ST W,3,25,2018-12-05,54,Evaluation needs to be conducted in 1 year,16,2.0,2.0,3.0,2.0,3.0,3.0,,3.0,,3.0,2.0,2.0,4.0,3.0,3.0,2.0,,3.0,3.0,,S0432,43.655253044,-79.455904958,308340.964,4834813.343
-893722,4154247,2017.0,2018.0,1970.0,PRIVATE,7,Humber River-Black Creek,2397 FINCH AVE W,11,121,2018-12-05,68,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,2.0,3.0,3.0,3.0,3.0,5.0,,3.0,3.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,,W0727,43.751182532,-79.544580941,301194.093,4845470.67
-893723,4154270,2017.0,2018.0,1973.0,PRIVATE,7,Humber River-Black Creek,4800 JANE ST,9,97,2018-12-05,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,5.0,4.0,,W0724,43.7711875516,-79.5216643445,303040.481,4847691.41
-893724,4479218,2018.0,2017.0,1951.0,PRIVATE,13,Toronto Centre,45 PEMBROKE ST,3,12,2018-11-05,60,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,2.0,3.0,,3.0,,,3.0,3.0,5.0,2.0,3.0,3.0,,3.0,,,S1332,43.6576935815,-79.3718742304,315118.827,4835090.437
-893725,4475546,2019.0,2017.0,2016.0,PRIVATE,19,Beaches-East York,763 WOODBINE AVE,7,64,2018-10-31,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,,4.0,5.0,5.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,S1935,43.680776029899995,-79.3103915859,320072.003,4837664.262
-893726,4476597,2018.0,2017.0,1925.0,PRIVATE,19,Beaches-East York,983 KINGSTON RD,3,14,2018-10-31,63,Evaluation needs to be conducted in 1 year,13,3.0,3.0,3.0,3.0,,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,S1940,43.680349197299996,-79.28634449409999,322010.985,4837621.499
-893727,4476608,2018.0,2017.0,1925.0,PRIVATE,19,Beaches-East York,987 KINGSTON RD,3,15,2018-10-31,63,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,S1940,43.6803978497,-79.28612456399999,322028.70399999997,4837626.949
-893728,4457107,2019.0,2017.0,1953.0,PRIVATE,19,Beaches-East York,1153 O'CONNOR DR,3,11,2018-10-25,64,Evaluation needs to be conducted in 1 year,15,4.0,3.0,3.0,4.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,2.0,,S1924,43.7117264202,-79.3076717608,320283.375,4841103.25
-893729,4457092,,2017.0,1951.0,PRIVATE,19,Beaches-East York,1131 O'CONNOR DR,3,12,2018-10-25,58,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,,3.0,2.0,3.0,5.0,2.0,3.0,2.0,,2.0,4.0,,S1924,43.711133073599996,-79.3081363101,320246.091,4841037.249
-893730,4457114,2019.0,2017.0,1953.0,PRIVATE,19,Beaches-East York,1161 O'CONNOR DR,3,11,2018-10-25,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,2.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1924,43.7119832675,-79.30746431600001,320300.026,4841131.821
-893731,4457100,2019.0,2017.0,1953.0,PRIVATE,19,Beaches-East York,1157 O'CONNOR DR,3,11,2018-10-25,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,4.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,2.0,,S1924,43.7118457801,-79.3075659646,320291.87,4841116.529
-893732,4457070,,2017.0,1951.0,PRIVATE,19,Beaches-East York,1127 O'CONNOR DR,3,11,2018-10-25,60,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,2.0,3.0,2.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,4.0,,S1924,43.710979707700005,-79.3082535422,320236.683,4841020.188999999
-893733,4442561,,2017.0,,PRIVATE,9,Davenport,17 PATON RD,4,16,2018-10-22,45,Building Audit,13,2.0,2.0,1.0,3.0,,2.0,,3.0,,,2.0,1.0,,2.0,3.0,3.0,,2.0,3.0,,S0930,43.660285665,-79.444110556,309291.922,4835372.952
-893734,4458811,,2017.0,1951.0,PRIVATE,19,Beaches-East York,1143 O'CONNOR DR,3,12,2018-10-22,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,3.0,3.0,3.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,3.0,,3.0,4.0,,S1924,43.711582308400004,-79.307772958,320275.257,4841087.222
-893735,4408652,2018.0,2017.0,1927.0,PRIVATE,11,University-Rosedale,69 BALDWIN ST,3,17,2018-08-30,56,Evaluation needs to be conducted in 1 year,15,3.0,2.0,3.0,3.0,,2.0,,3.0,,,2.0,3.0,5.0,2.0,2.0,3.0,3.0,3.0,3.0,,S1144,43.6554189056,-79.39535829,313224.942,4834835.0819999995
-893736,4418699,2021.0,2017.0,1955.0,PRIVATE,6,York Centre,7 ROSSEAU RD,3,11,2018-08-10,75,Evaluation needs to be conducted in 2 years,16,4.0,3.0,3.0,3.0,4.0,4.0,,4.0,,4.0,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,3.0,,N0629,43.7419930803,-79.4364254778,309905.166,4844449.718
-893737,4415696,2018.0,2017.0,1928.0,PRIVATE,13,Toronto Centre,432 JARVIS ST,3,26,2018-08-03,63,Evaluation needs to be conducted in 1 year,14,3.0,2.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,,,S1326,43.6652814395,-79.37830549819999,314598.869,4835932.642
-893738,4415827,2018.0,2017.0,1928.0,PRIVATE,13,Toronto Centre,438 JARVIS ST,3,30,2018-08-03,64,Evaluation needs to be conducted in 1 year,14,3.0,2.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,,,S1326,43.66542483640001,-79.3783580132,314594.61100000003,4835948.566000001
-893739,4408389,2019.0,2017.0,1913.0,PRIVATE,9,Davenport,10 MOUNT ROYAL AVE,3,12,2018-07-29,54,Evaluation needs to be conducted in 1 year,16,2.0,3.0,3.0,2.0,3.0,3.0,,2.0,,,3.0,1.0,5.0,3.0,2.0,2.0,3.0,3.0,3.0,,S0928,43.675063118999994,-79.4330471349,310183.115,4837014.338
-893740,4408585,2018.0,2017.0,1948.0,PRIVATE,11,University-Rosedale,130 MACPHERSON AVE,3,26,2018-07-11,71,Evaluation needs to be conducted in 2 years,14,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,,,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,,,S1128,43.6783605408,-79.3950701921,313244.997,4837383.81
-893741,4379646,2018.0,2017.0,1923.0,PRIVATE,9,Davenport,1212 BLOOR ST W,3,16,2018-05-30,44,Building Audit,17,2.0,2.0,2.0,2.0,2.0,3.0,,2.0,,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,3.0,3.0,,S0930,43.6593129835,-79.4389019966,309712.36699999997,4835264.218
-893742,4364249,2018.0,2017.0,1953.0,PRIVATE,19,Beaches-East York,9 STAG HILL DR,4,15,2018-05-24,77,Evaluation needs to be conducted in 2 years,14,3.0,3.0,3.0,4.0,4.0,4.0,,4.0,,,3.0,4.0,5.0,4.0,4.0,5.0,,4.0,,,S1927,43.70336356399999,-79.310527323,320055.105,4840174.598999999
-893743,4316602,2018.0,2017.0,1951.0,PRIVATE,19,Beaches-East York,995 O'CONNOR DR,3,12,2018-05-18,67,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,4.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,4.0,3.0,,4.0,3.0,,S1924,43.7091921136,-79.3096855497,320121.73699999996,4840821.33
-893744,4155384,2017.0,2017.0,1950.0,PRIVATE,2,Etobicoke Centre,339 THE WEST MALL,5,51,2018-05-15,0,Building Audit,0,,,,,,,,,,,,,,,,,,,,,W0233,43.638068798,-79.563940807,299625.092,4832905.27
-893745,4365726,2018.0,2017.0,1976.0,PRIVATE,4,Parkdale-High Park,2360 DUNDAS ST W,29,638,2018-05-08,48,Building Audit,18,4.0,3.0,4.0,2.0,2.0,2.0,3.0,3.0,3.0,,3.0,2.0,3.0,2.0,2.0,2.0,,1.0,1.0,1.0,S0429,43.657073675,-79.452365262,308621.66,4835039.566000001
-893746,4365723,2018.0,2017.0,1976.0,PRIVATE,4,Parkdale-High Park,2350 DUNDAS ST W,29,457,2018-05-08,46,Building Audit,18,4.0,2.0,4.0,2.0,2.0,3.0,2.0,3.0,3.0,,2.0,2.0,3.0,2.0,2.0,2.0,,1.0,1.0,1.0,S0429,43.656991643999994,-79.45228586,308623.625,4835029.533
-893747,4356727,2018.0,2017.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,176 BERRY RD,4,29,2018-04-20,59,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0327,43.636561238,-79.493053522,305320.673,4832716.888
-893748,4356717,2018.0,2017.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,177 STEPHEN DR,4,44,2018-04-20,66,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,4.0,3.0,3.0,,3.0,4.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0327,43.639915396999996,-79.487892324,305761.06,4833089.217
-893749,4356415,2018.0,2017.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,173 STEPHEN DR,6,13,2018-04-20,68,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,4.0,3.0,,3.0,5.0,3.0,3.0,3.0,5.0,2.0,4.0,4.0,3.0,2.0,3.0,,W0327,43.6396535446,-79.487507425,305766.456,4833070.166
-893750,4356202,2018.0,2017.0,2017.0,PRIVATE,4,Parkdale-High Park,36 SPENCER AVE,8,46,2018-04-18,78,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,4.0,5.0,4.0,3.0,3.0,,4.0,,4.0,S0437,,,310432.662,4832559.495
-893751,4329455,2018.0,2017.0,1900.0,PRIVATE,8,Eglinton-Lawrence,485 DUPLEX AVE,3,36,2018-03-18,53,Evaluation needs to be conducted in 1 year,16,2.0,3.0,2.0,3.0,2.0,2.0,,3.0,,2.0,3.0,2.0,5.0,3.0,2.0,2.0,,3.0,3.0,,N0833,43.7099483796,-79.4004676856,312805.619,4840892.672
-893752,4332678,,2017.0,1920.0,PRIVATE,13,Toronto Centre,36 MAITLAND ST,4,27,2018-03-14,69,Evaluation needs to be conducted in 2 years,14,4.0,3.0,4.0,4.0,,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,4.0,,3.0,3.0,,S1326,43.664549218699996,-79.3823243085,314274.864,4835850.85
-893753,4333863,2018.0,2017.0,1976.0,SOCIAL HOUSING,24,Scarborough-Guildwood,2877 A ELLESMERE RD,12,126,2018-03-08,81,Evaluation needs to be conducted in 2 years,16,5.0,4.0,5.0,5.0,,4.0,5.0,4.0,5.0,,4.0,3.0,5.0,4.0,4.0,2.0,,4.0,2.0,,E2428,43.780692143,-79.203193428,328559.122,4848999.52
-893754,4333391,2018.0,2017.0,1978.0,PRIVATE,13,Toronto Centre,565 SHERBOURNE ST,30,514,2018-03-08,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,S1323,43.669960972,-79.375430599,314829.679,4836453.8
-893755,4333382,2018.0,2017.0,1978.0,PRIVATE,13,Toronto Centre,555 SHERBOURNE ST,30,292,2018-03-08,73,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,,4.0,3.0,4.0,4.0,,3.0,4.0,5.0,3.0,3.0,3.0,4.0,4.0,3.0,,S1323,43.66956979,-79.375208558,314847.652,4836410.365
-893756,4333368,2018.0,2017.0,1977.0,PRIVATE,13,Toronto Centre,545 SHERBOURNE ST,30,300,2018-03-08,71,Evaluation needs to be conducted in 2 years,17,3.0,4.0,3.0,4.0,,4.0,4.0,3.0,4.0,,4.0,3.0,3.0,4.0,3.0,3.0,4.0,4.0,3.0,,S1323,43.6685668149,-79.3748331969,314878.356,4836298.032
-893757,4327919,2018.0,2017.0,1960.0,PRIVATE,9,Davenport,382 DOVERCOURT RD,3,18,2018-03-08,54,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,,2.0,,3.0,,,2.0,2.0,4.0,3.0,2.0,3.0,,3.0,2.0,,S0934,43.652044902,-79.4261489832,310741.707,4834457.583000001
-893758,4327922,2018.0,2017.0,1924.0,PRIVATE,9,Davenport,394 DOVERCOURT RD,3,20,2018-03-08,53,Evaluation needs to be conducted in 1 year,14,2.0,3.0,3.0,3.0,2.0,2.0,,3.0,,,3.0,3.0,3.0,2.0,3.0,3.0,,2.0,,,S0934,43.652361602700005,-79.42623152029999,310735.016,4834492.7639999995
-893759,4327367,2018.0,2017.0,1949.0,PRIVATE,6,York Centre,12 ROSSEAU RD,3,11,2018-03-07,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,5.0,4.0,3.0,3.0,,4.0,3.0,,N0629,43.742014423,-79.4373039157,309843.087,4844439.041
-893760,4329043,2018.0,2017.0,1949.0,PRIVATE,6,York Centre,24 ROSSEAU RD,3,11,2018-03-07,66,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,,3.0,3.0,3.0,5.0,4.0,3.0,3.0,,4.0,3.0,,N0629,43.7430477683,-79.4377021661,309819.873,4844504.373
-893761,4329042,2018.0,2017.0,1949.0,PRIVATE,6,York Centre,22 ROSSEAU RD,3,11,2018-03-07,66,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,,3.0,3.0,3.0,5.0,4.0,3.0,3.0,,4.0,3.0,,N0629,43.7428477034,-79.4376504263,309838.12899999996,4844457.074
-893762,4329041,2018.0,2017.0,1949.0,PRIVATE,6,York Centre,20 ROSSEAU RD,3,11,2018-03-07,66,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,,3.0,3.0,3.0,5.0,4.0,3.0,3.0,,4.0,3.0,,N0629,43.7426311682,-79.437605185,309810.099,4844520.5430000005
-893763,4329040,2018.0,2017.0,1949.0,PRIVATE,6,York Centre,18 ROSSEAU RD,3,11,2018-03-07,67,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,,,3.0,3.0,5.0,4.0,3.0,3.0,,4.0,3.0,,N0629,43.7424665293,-79.4377968737,309794.673,4844502.242
-893764,4329035,2018.0,2017.0,1949.0,PRIVATE,6,York Centre,14 ROSSEAU RD,3,11,2018-03-07,65,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,3.0,,N0629,43.742214529399995,-79.437433562,309823.955,4844474.267
-893765,4329037,2018.0,2017.0,1949.0,PRIVATE,6,York Centre,16 ROSSEAU RD,3,11,2018-03-07,67,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,,,3.0,3.0,5.0,4.0,3.0,3.0,,4.0,3.0,,N0629,43.7422758604,-79.43772564560001,309800.425,4844481.063999999
-893766,4331737,,2017.0,1954.0,PRIVATE,20,Scarborough Southwest,2511 GERRARD ST E,3,11,2018-03-06,60,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,E2033,43.6873957416,-79.2836217678,322228.49100000004,4838404.904
-893767,4326893,,2017.0,1951.0,PRIVATE,19,Beaches-East York,1135 O'CONNOR DR,3,13,2018-02-28,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,,S1924,43.711282299,-79.3080213624,320255.316,4841053.848
-893768,4326897,,2017.0,1951.0,PRIVATE,19,Beaches-East York,1139 O'CONNOR DR,3,12,2018-02-27,72,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,4.0,4.0,3.0,,4.0,,,3.0,3.0,5.0,4.0,4.0,3.0,,4.0,4.0,,S1924,43.7114376749,-79.30789566060001,320265.406,4841071.132
-893769,4320792,,2017.0,1975.0,PRIVATE,12,Toronto-St. Paul's,21 VAUGHAN RD,23,173,2018-02-16,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,2.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,,S1235,43.6823113813,-79.418488924,311356.277,4837820.62
-893770,4316599,2018.0,2017.0,1951.0,PRIVATE,19,Beaches-East York,993 O'CONNOR DR,3,12,2018-02-15,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,4.0,3.0,,3.0,3.0,,S1924,43.7089625626,-79.3097891975,320113.443,4840795.808999999
-893771,4152723,2017.0,2017.0,1984.0,PRIVATE,21,Scarborough Centre,3 GLAMORGAN AVE,10,139,2018-02-14,51,Evaluation needs to be conducted in 1 year,18,2.0,2.0,4.0,1.0,2.0,3.0,1.0,2.0,2.0,,1.0,2.0,4.0,3.0,4.0,3.0,3.0,3.0,4.0,,E2123,43.768435059,-79.28262322399999,322289.892,4847418.925
-893772,4152857,2017.0,2017.0,1971.0,PRIVATE,22,Scarborough-Agincourt,2360 BIRCHMOUNT RD,13,186,2018-02-14,60,Evaluation needs to be conducted in 1 year,20,3.0,3.0,3.0,2.0,4.0,3.0,2.0,3.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,2.0,3.0,1.0,4.0,3.0,E2226,43.78293932729999,-79.2995706265,320917.149,4849016.171
-893773,4317594,2018.0,2017.0,1954.0,PRIVATE,20,Scarborough Southwest,3017 G QUEEN ST E,4,15,2018-02-12,79,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,4.0,4.0,2.0,,4.0,,,4.0,5.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,E2033,43.6747570284,-79.2771547349,,
-893774,4317590,2018.0,2017.0,1954.0,PRIVATE,20,Scarborough Southwest,3017 QUEEN ST E,4,15,2018-02-12,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,3.0,4.0,4.0,2.0,,4.0,,4.0,4.0,5.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,E2033,43.6747570284,-79.2771547349,322753.558,4837002.1680000005
-893775,4317589,2018.0,2017.0,1954.0,PRIVATE,20,Scarborough Southwest,3015 F QUEEN ST E,4,15,2018-02-12,76,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,4.0,4.0,2.0,,4.0,,,4.0,5.0,5.0,3.0,4.0,4.0,,3.0,4.0,4.0,E2033,43.6746668318,-79.2776535124,,
-893776,4317588,2018.0,2017.0,1954.0,PRIVATE,20,Scarborough Southwest,3015 A QUEEN ST E,4,15,2018-02-12,76,Evaluation needs to be conducted in 2 years,17,4.0,4.0,3.0,4.0,4.0,2.0,,4.0,,4.0,4.0,5.0,4.0,3.0,4.0,4.0,,4.0,4.0,4.0,E2033,43.6746668318,-79.2776535124,,
-893777,4317586,2018.0,2017.0,1954.0,PRIVATE,20,Scarborough Southwest,3015 QUEEN ST E,4,15,2018-02-12,76,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,4.0,4.0,2.0,,4.0,,,4.0,5.0,5.0,3.0,4.0,4.0,,3.0,4.0,4.0,E2033,43.6746668318,-79.2776535124,322713.36600000004,4836992.04
-893778,4155743,2017.0,2017.0,1954.0,PRIVATE,20,Scarborough Southwest,3015 D QUEEN ST E,4,16,2018-02-12,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,3.0,4.0,4.0,2.0,,4.0,,4.0,4.0,5.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,E2033,43.6747055108,-79.2773893392,322734.656,4836996.393999999
-893779,4317592,2018.0,2017.0,1954.0,PRIVATE,20,Scarborough Southwest,3017 B QUEEN ST E,4,15,2018-02-12,76,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,4.0,4.0,2.0,,4.0,,,4.0,5.0,5.0,3.0,4.0,4.0,,3.0,4.0,4.0,E2033,43.6747570284,-79.2771547349,,
-893780,4152917,2017.0,2017.0,1935.0,PRIVATE,4,Parkdale-High Park,7 BRULE TER,3,13,2018-01-30,60,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,2.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,,,S0430,43.6475612545,-79.4890462091,305668.015,4833957.046
-893781,4156324,2017.0,2017.0,1972.0,PRIVATE,7,Humber River-Black Creek,2000 SHEPPARD AVE W,20,266,2018-01-30,69,Evaluation needs to be conducted in 2 years,18,4.0,2.0,5.0,3.0,4.0,3.0,4.0,3.0,4.0,,3.0,3.0,5.0,3.0,4.0,3.0,2.0,3.0,4.0,,W0729,43.73964798,-79.514852262,303547.403,4844129.347
-893782,4155627,2017.0,2017.0,1957.0,TCHC,8,Eglinton-Lawrence,3 LEILA LANE,3,31,2018-01-29,65,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,4.0,5.0,3.0,3.0,3.0,,4.0,3.0,,N0823,43.722049816,-79.44575558300001,309154.837,4842234.568
-893783,4155682,2019.0,2017.0,1996.0,SOCIAL HOUSING,5,York South-Weston,338 FALSTAFF AVE,5,175,2018-01-29,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,4.0,W0522,43.720498199,-79.48286093600001,306181.501,4842073.748
-893784,4287030,2018.0,2017.0,1917.0,PRIVATE,4,Parkdale-High Park,193 DOWLING AVE,5,16,2018-01-29,44,Building Audit,15,2.0,2.0,3.0,2.0,2.0,2.0,,3.0,,,2.0,3.0,2.0,2.0,2.0,2.0,2.0,2.0,,,S0436,43.6398204138,-79.43958903010001,309658.458,4833105.204
-893785,4154298,,2017.0,1962.0,PRIVATE,5,York South-Weston,1619 LAWRENCE AVE W,4,24,2018-01-26,61,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,,3.0,3.0,3.0,4.0,2.0,3.0,3.0,3.0,3.0,3.0,,W0529,43.705269832,-79.4911827537,305495.106,4840368.12
-893786,4156469,2018.0,2017.0,1992.0,SOCIAL HOUSING,24,Scarborough-Guildwood,3379 LAWRENCE AVE E,6,48,2018-01-26,66,Evaluation needs to be conducted in 2 years,18,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,2.0,3.0,5.0,4.0,3.0,4.0,3.0,4.0,3.0,,E2429,43.7578221906,-79.2338165953,326218.534,4846240.572
-893787,4155357,2018.0,2017.0,1963.0,PRIVATE,2,Etobicoke Centre,38 DIXINGTON CRES,10,111,2018-01-25,53,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,3.0,2.0,2.0,3.0,3.0,,3.0,2.0,2.0,3.0,3.0,2.0,4.0,3.0,2.0,,W0223,43.69652256,-79.54070430600001,301503.157,4839398.193
-893788,4155585,2017.0,2017.0,1969.0,TCHC,22,Scarborough-Agincourt,2821 BIRCHMOUNT RD,12,237,2018-01-18,54,Evaluation needs to be conducted in 1 year,19,3.0,2.0,3.0,2.0,2.0,3.0,2.0,3.0,3.0,,3.0,3.0,2.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,E2227,43.7985740617,-79.30512678470001,320465.905,4850752.081
-893789,4153720,2020.0,2017.0,1988.0,SOCIAL HOUSING,19,Beaches-East York,2526 DANFORTH AVE,7,48,2018-01-18,70,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,3.0,4.0,3.0,3.0,,4.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,,4.0,S1929,43.6883174325,-79.3025563055,320701.73,4838503.548
-893790,4233261,2017.0,2017.0,2017.0,PRIVATE,13,Toronto Centre,252 VICTORIA ST,37,337,2018-01-18,95,Evaluation needs to be conducted in 3 years,20,4.0,5.0,5.0,5.0,5.0,5.0,4.0,4.0,3.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,S1332,43.6555316158,-79.3796504361,314491.984,4834849.351
-893791,4153389,2018.0,2017.0,1993.0,SOCIAL HOUSING,13,Toronto Centre,110 THE ESPLANADE,9,205,2018-01-17,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,3.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,S1339,43.6480302618,-79.3723912336,315078.766,4834016.84
-893792,4154080,2017.0,2017.0,1962.0,TCHC,19,Beaches-East York,9 HALDON AVE,6,200,2018-01-17,64,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,S1926,43.698524498000005,-79.311523697,319975.998,4839636.799
-893793,4286257,2018.0,2017.0,1969.0,TCHC,12,Toronto-St. Paul's,69 HOLLY ST,4,14,2018-01-17,57,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,,2.0,2.0,3.0,3.0,3.0,2.0,3.0,2.0,3.0,,S1228,43.706257789,-79.396238397,313137.344,4840500.243
-893794,4155587,2017.0,2017.0,1969.0,TCHC,4,Parkdale-High Park,100 HIGH PARK AVE,24,447,2018-01-17,49,Building Audit,20,3.0,2.0,4.0,2.0,2.0,3.0,3.0,2.0,3.0,2.0,2.0,3.0,2.0,2.0,3.0,3.0,2.0,2.0,2.0,2.0,S0428,43.656567829,-79.4673846716,307415.157,4834958.018
-893795,4155160,2017.0,2017.0,1973.0,TCHC,5,York South-Weston,1901 WESTON RD,17,400,2018-01-17,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,,4.0,3.0,3.0,4.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,5.0,3.0,W0524,43.7005890595,-79.5159933375,303495.37,4839848.29
-893796,4154251,2018.0,2017.0,1993.0,SOCIAL HOUSING,7,Humber River-Black Creek,3001 FINCH AVE W,14,166,2018-01-17,59,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,2.0,2.0,3.0,3.0,2.0,3.0,W0727,43.747070571,-79.562597925,299742.782,4845014.81
-893797,4153455,2018.0,2017.0,1991.0,SOCIAL HOUSING,13,Toronto Centre,177 MUTUAL ST,10,42,2018-01-17,71,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,4.0,3.0,4.0,4.0,4.0,3.0,,3.0,4.0,5.0,3.0,4.0,4.0,,3.0,3.0,3.0,S1328,43.6595590254,-79.3765361369,314742.506,4835297.1280000005
-893798,4155800,2017.0,2017.0,1993.0,TCHC,13,Toronto Centre,140 THE ESPLANADE,7,102,2018-01-17,69,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,2.0,,3.0,4.0,5.0,4.0,3.0,3.0,,4.0,3.0,3.0,S1339,43.648548433,-79.37025343100001,315250.877,4834075.626
-893799,4286300,2018.0,2017.0,2005.0,SOCIAL HOUSING,13,Toronto Centre,270 MILAN ST,3,30,2018-01-17,68,Evaluation needs to be conducted in 2 years,17,4.0,3.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,,4.0,3.0,5.0,3.0,3.0,3.0,,3.0,,4.0,S1329,43.658372351000004,-79.36784953600001,315438.658,4835180.679
-893800,4167459,2017.0,2017.0,2006.0,TCHC,13,Toronto Centre,176 THE ESPLANADE,7,220,2018-01-17,66,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,3.0,S1339,43.649017812,-79.367964945,315435.409,4834128.066000001
-893801,4156339,2018.0,2017.0,1992.0,SOCIAL HOUSING,25,Scarborough-Rouge Park,23 DURNFORD RD,3,14,2018-01-16,80,Evaluation needs to be conducted in 2 years,15,5.0,4.0,4.0,3.0,,4.0,,3.0,,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2530,43.79845735,-79.149242668,332939.033,4850889.281
-893802,4156547,2017.0,2017.0,2010.0,TCHC,13,Toronto Centre,92 CARLTON ST,12,110,2018-01-16,77,Evaluation needs to be conducted in 2 years,20,4.0,4.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,S1326,43.662294376400006,-79.3782139337,314606.727,4835600.825
-893803,4155605,2017.0,2017.0,1970.0,TCHC,13,Toronto Centre,200 WELLESLEY ST E,29,719,2018-01-16,59,Evaluation needs to be conducted in 1 year,20,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,S1323,43.668062810600006,-79.3736609333,314972.971,4836242.188999999
-893804,4155618,2017.0,2017.0,1972.0,TCHC,7,Humber River-Black Creek,15 TOBERMORY DR,24,374,2018-01-16,39,Building Audit,19,2.0,1.0,2.0,2.0,2.0,2.0,2.0,1.0,2.0,,2.0,2.0,2.0,2.0,2.0,3.0,3.0,2.0,1.0,2.0,W0725,43.760168119,-79.50789679100001,304069.821,4846499.065
-893805,4156232,2017.0,2017.0,1969.0,TCHC,5,York South-Weston,101 HUMBER BLVD,14,246,2018-01-16,62,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,2.0,4.0,3.0,3.0,3.0,3.0,,2.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,3.0,W0539,43.679802556000006,-79.4820189606,306234.164,4837538.915
-893806,4156139,2018.0,2017.0,1992.0,SOCIAL HOUSING,25,Scarborough-Rouge Park,39 DURNFORD RD,3,14,2018-01-16,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,,4.0,,3.0,,,3.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,3.0,,E2530,43.799771853,-79.150262267,332926.722,4850926.841
-893807,4155977,2018.0,2017.0,1992.0,SOCIAL HOUSING,25,Scarborough-Rouge Park,37 DURNFORD RD,4,28,2018-01-16,66,Evaluation needs to be conducted in 2 years,17,4.0,2.0,4.0,3.0,3.0,4.0,3.0,3.0,,,3.0,3.0,5.0,3.0,3.0,4.0,3.0,4.0,2.0,,E2530,43.79936022,-79.15004455399999,332928.261,4850922.146000001
-893808,4156266,2018.0,2017.0,1992.0,SOCIAL HOUSING,25,Scarborough-Rouge Park,35 DURNFORD RD,4,21,2018-01-16,67,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,,,3.0,3.0,5.0,3.0,3.0,4.0,3.0,4.0,2.0,,E2530,43.799334653,-79.149625429,332929.799,4850917.452
-893809,4156138,2018.0,2017.0,1992.0,SOCIAL HOUSING,25,Scarborough-Rouge Park,21 DURNFORD RD,4,21,2018-01-16,73,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,,,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,2.0,,E2530,43.798928736,-79.14946215399999,332940.571,4850884.586
-893810,4156137,2018.0,2017.0,1992.0,SOCIAL HOUSING,25,Scarborough-Rouge Park,19 DURNFORD RD,4,28,2018-01-16,72,Evaluation needs to be conducted in 2 years,17,3.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,,,4.0,3.0,5.0,3.0,4.0,4.0,4.0,4.0,3.0,,E2530,43.798799318,-79.149848619,332942.11,4850879.891
-893811,4156073,2018.0,2017.0,1992.0,SOCIAL HOUSING,25,Scarborough-Rouge Park,17 DURNFORD RD,3,14,2018-01-16,81,Evaluation needs to be conducted in 2 years,15,5.0,4.0,4.0,4.0,,4.0,,3.0,,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2530,43.798355203999996,-79.14960800600001,332968.256,4850790.927
-893812,4156034,2017.0,2017.0,1994.0,TCHC,13,Toronto Centre,261 JARVIS ST,7,55,2018-01-16,62,Evaluation needs to be conducted in 1 year,20,3.0,3.0,3.0,3.0,2.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,S1328,43.657929001499994,-79.37459565270001,314899.288,4835116.244
-893813,4156374,2017.0,2017.0,1975.0,TCHC,13,Toronto Centre,257 SHERBOURNE ST,4,102,2018-01-16,52,Evaluation needs to be conducted in 1 year,18,2.0,2.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,,2.0,3.0,3.0,2.0,3.0,2.0,3.0,2.0,3.0,,S1329,43.6593567184,-79.3711764365,315174.827,4835275.301
-893814,4155873,2017.0,2017.0,1971.0,TCHC,5,York South-Weston,5 BELLEVUE CRES,21,326,2018-01-16,58,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,2.0,3.0,3.0,2.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,W0527,43.699140093400004,-79.51522928520001,303556.925,4839687.3
-893815,4285160,2018.0,2017.0,1950.0,PRIVATE,16,Don Valley East,3 WINGREEN CRT,3,11,2018-01-15,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N1624,43.7389485514,-79.3418652477,,
-893816,4154766,2017.0,2017.0,1981.0,TCHC,16,Don Valley East,10 DEAUVILLE LANE,7,247,2018-01-15,76,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,,3.0,4.0,5.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,N1630,43.7175537141,-79.3316723208,318347.963,4841746.448
-893817,4154495,2018.0,2017.0,1991.0,SOCIAL HOUSING,8,Eglinton-Lawrence,3010 DUFFERIN ST,10,202,2018-01-15,74,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,,3.0,4.0,5.0,4.0,3.0,4.0,,4.0,3.0,4.0,N0826,43.711870888199996,-79.4549955166,308411.192,4841102.335
-893818,4153421,2017.0,2017.0,1805.0,PRIVATE,11,University-Rosedale,160 HURON ST,5,69,2018-01-15,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,2.0,,3.0,,4.0,,,2.0,3.0,5.0,2.0,4.0,2.0,4.0,2.0,4.0,,S1144,43.6570614157,-79.3980740042,313005.659,4835017.2639999995
-893819,4153414,2018.0,2017.0,1961.0,TCHC,11,University-Rosedale,2 MURRAY ST,6,86,2018-01-15,75,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,3.0,3.0,3.0,,4.0,3.0,,3.0,3.0,5.0,5.0,4.0,4.0,,5.0,4.0,,S1144,43.6562993679,-79.3909386716,313581.33,4834933.3780000005
-893820,4155653,2017.0,2017.0,1968.0,TCHC,5,York South-Weston,190 WOOLNER AVE,16,304,2018-01-15,52,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,3.0,2.0,2.0,3.0,3.0,,3.0,3.0,2.0,3.0,2.0,3.0,2.0,2.0,3.0,,W0539,43.672697749099996,-79.4906805093,305535.86100000003,4836749.508
-893821,4154086,2017.0,2017.0,1986.0,TCHC,14,Toronto-Danforth,266 DONLANDS AVE,8,254,2018-01-15,76,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,,3.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,S1422,43.6896562892,-79.3419083036,317529.06899999996,4838645.48
-893822,4153573,2017.0,2017.0,1975.0,TCHC,13,Toronto Centre,251 SHERBOURNE ST,7,200,2018-01-15,50,Building Audit,16,2.0,2.0,3.0,1.0,,3.0,2.0,3.0,3.0,,2.0,3.0,1.0,3.0,3.0,3.0,3.0,3.0,,,S1329,43.659299401000006,-79.3709200965,315195.512,4835268.965
-893823,4155602,2017.0,2017.0,1972.0,TCHC,13,Toronto Centre,220 OAK ST,27,469,2018-01-15,64,Evaluation needs to be conducted in 1 year,19,4.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,S1330,43.663061381000006,-79.357756445,316331.701,4835670.531
-893824,4154175,2017.0,2017.0,1988.0,TCHC,15,Don Valley West,12 THORNCLIFFE PARK DR,11,219,2018-01-15,71,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,,3.0,3.0,4.0,3.0,3.0,4.0,4.0,3.0,4.0,4.0,N1533,43.704529308999994,-79.348260442,317013.706,4840297.828
-893825,4154494,2018.0,2017.0,1983.0,SOCIAL HOUSING,8,Eglinton-Lawrence,3050 DUFFERIN ST,14,258,2018-01-15,72,Evaluation needs to be conducted in 2 years,19,3.0,3.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,,3.0,4.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,4.0,N0826,43.7131568657,-79.4551622078,308397.684,4841245.195
-893826,4156154,2017.0,2017.0,1987.0,TCHC,10,Spadina-Fort York,111 CHESTNUT ST,15,144,2018-01-15,73,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,4.0,,4.0,3.0,5.0,5.0,4.0,4.0,,4.0,3.0,,S1025,43.654837970500004,-79.3855802239,314013.80100000004,4834771.619
-893827,4152924,2017.0,2017.0,1992.0,TCHC,9,Davenport,77 RANKIN CRES,7,121,2018-01-15,67,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,4.0,3.0,2.0,3.0,4.0,S0929,43.658340191,-79.446051646,309135.503,4835156.725
-893828,4153559,2017.0,2017.0,1982.0,TCHC,10,Spadina-Fort York,15 SCADDING AVE,9,251,2018-01-12,69,Evaluation needs to be conducted in 2 years,19,3.0,3.0,3.0,3.0,4.0,4.0,3.0,4.0,4.0,,3.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,5.0,S1039,43.648589687,-79.366782746,315530.851,4834080.659
-893829,4303769,2018.0,2017.0,1968.0,PRIVATE,2,Etobicoke Centre,63 CALLOWHILL DR,10,112,2018-01-12,60,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0221,,,299662.554,4837921.687
-893830,4155595,2017.0,2017.0,1996.0,TCHC,10,Spadina-Fort York,1 CHURCH ST,13,115,2018-01-12,67,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,4.0,5.0,3.0,4.0,3.0,3.0,3.0,,,S1038,43.647032851599995,-79.3728697107,315040.337,4833905.973999999
-893831,4153566,2017.0,2017.0,1984.0,TCHC,13,Toronto Centre,540 QUEEN ST E,6,44,2018-01-12,67,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,3.0,,4.0,3.0,4.0,4.0,,3.0,3.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,S1330,43.657342412,-79.357649785,316265.96,4835054.266
-893832,4156748,2017.0,2017.0,2009.0,TCHC,13,Toronto Centre,501 ADELAIDE ST E,13,180,2018-01-12,66,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,2.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,4.0,3.0,4.0,,4.0,,3.0,S1335,43.65255869,-79.365341193,315646.432,4834521.781
-893833,4156195,2017.0,2017.0,1967.0,TCHC,7,Humber River-Black Creek,415 DRIFTWOOD AVE,16,135,2018-01-12,58,Evaluation needs to be conducted in 1 year,20,3.0,3.0,3.0,2.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,4.0,3.0,3.0,W0725,43.7673194757,-79.5164765451,303458.049,4847261.584
-893834,4153157,2017.0,2017.0,1989.0,TCHC,11,University-Rosedale,72 CLINTON ST,7,157,2018-01-12,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,5.0,4.0,5.0,4.0,3.0,5.0,,4.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,S1133,43.655697992200004,-79.41495949600001,311643.94899999996,4834864.327
-893835,4155196,2017.0,2017.0,1979.0,TCHC,5,York South-Weston,55 OUTLOOK AVE,12,275,2018-01-12,62,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,W0535,43.678446839799996,-79.49624040329999,305087.49600000004,4837388.185
-893836,4156361,2017.0,2017.0,1990.0,TCHC,5,York South-Weston,600 ROGERS RD,9,207,2018-01-12,78,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,3.0,4.0,W0536,43.682227677,-79.47249628,306987.646,4837812.192
-893837,4156756,2017.0,2017.0,1989.0,TCHC,5,York South-Weston,2468 EGLINTON AVE W,21,210,2018-01-12,59,Evaluation needs to be conducted in 1 year,18,4.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,4.0,,2.0,3.0,3.0,2.0,3.0,4.0,3.0,3.0,2.0,,W0533,43.69202835,-79.468140737,307352.43,4838898.385
-893838,4155590,2017.0,2017.0,1959.0,TCHC,9,Davenport,1525 DUNDAS ST W,6,106,2018-01-12,58,Evaluation needs to be conducted in 1 year,19,3.0,2.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,S0936,43.649163790699994,-79.4324188308,310236.184,4834137.085
-893839,4155922,2017.0,2017.0,1972.0,TCHC,4,Parkdale-High Park,3725 DUNDAS ST W,10,153,2018-01-12,60,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,4.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,,S0421,43.6653702089,-79.4987991022,304881.17100000003,4835935.438999999
-893840,4156016,2017.0,2017.0,1972.0,TCHC,4,Parkdale-High Park,3735 DUNDAS ST W,10,132,2018-01-12,61,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,S0421,43.665189036,-79.499393828,304843.771,4835924.808999999
-893841,4156712,2017.0,2017.0,2014.0,TCHC,13,Toronto Centre,40 LOWER RIVER ST.,8,128,2018-01-12,83,Evaluation needs to be conducted in 2 years,18,5.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,2.0,,5.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,S1336,,,316411.458,4834934.032
-893842,4155580,2017.0,2017.0,1971.0,TCHC,24,Scarborough-Guildwood,110 MORNELLE CRT,15,145,2018-01-12,61,Evaluation needs to be conducted in 1 year,19,3.0,3.0,2.0,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,3.0,4.0,2.0,3.0,3.0,4.0,2.0,3.0,3.0,E2423,43.786495688,-79.194414059,329379.42,4849437.971
-893843,4155577,2017.0,2017.0,1969.0,TCHC,24,Scarborough-Guildwood,3847 LAWRENCE AVE E,13,213,2018-01-12,59,Evaluation needs to be conducted in 1 year,19,3.0,3.0,2.0,3.0,3.0,4.0,3.0,3.0,3.0,,2.0,3.0,2.0,4.0,2.0,3.0,2.0,3.0,4.0,4.0,E2431,43.762491026400006,-79.2104930971,328094.82,4846765.506
-893844,4156510,2017.0,2017.0,1974.0,TCHC,5,York South-Weston,720 TRETHEWEY DR,19,204,2018-01-12,59,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,2.0,3.0,3.0,3.0,3.0,3.0,,2.0,3.0,3.0,2.0,3.0,4.0,3.0,4.0,2.0,3.0,W0528,43.697963611000006,-79.50094174899999,304708.284,4839557.3780000005
-893845,4152925,2017.0,2017.0,1994.0,TCHC,9,Davenport,11 RANDOLPH AVE,6,95,2018-01-12,66,Evaluation needs to be conducted in 2 years,19,3.0,4.0,3.0,3.0,4.0,4.0,4.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,S0929,43.658298977200005,-79.4502110226,308800.29,4835150.998
-893846,4155617,2017.0,2017.0,1971.0,TCHC,7,Humber River-Black Creek,2999 JANE ST,15,188,2018-01-11,52,Evaluation needs to be conducted in 1 year,19,3.0,2.0,4.0,2.0,2.0,3.0,2.0,2.0,2.0,,2.0,2.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,W0730,43.754346500699995,-79.5161715175,303482.32399999996,4845820.353999999
-893847,4167687,2017.0,2017.0,1948.0,TCHC,13,Toronto Centre,260 SUMACH ST,3,48,2018-01-11,56,Evaluation needs to be conducted in 1 year,17,3.0,3.0,2.0,3.0,3.0,2.0,2.0,3.0,,,3.0,3.0,4.0,3.0,3.0,3.0,2.0,3.0,3.0,,S1330,43.66223715,-79.361553726,315950.172,4835597.5
-893848,4167680,2017.0,2017.0,2006.0,TCHC,13,Toronto Centre,259 SUMACH ST,3,47,2018-01-11,56,Evaluation needs to be conducted in 1 year,17,2.0,3.0,2.0,3.0,3.0,3.0,3.0,2.0,,,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,4.0,,S1330,43.662405994,-79.360720129,316017.373,4835616.37
-893849,4155620,2017.0,2017.0,1970.0,TCHC,7,Humber River-Black Creek,4400 JANE ST,12,164,2018-01-11,60,Evaluation needs to be conducted in 1 year,19,3.0,2.0,4.0,2.0,3.0,3.0,3.0,2.0,3.0,,3.0,4.0,3.0,4.0,3.0,4.0,2.0,3.0,3.0,3.0,W0724,43.7652223646,-79.52014173479999,303162.909,4847028.675
-893850,4154264,2017.0,2017.0,1969.0,TCHC,7,Humber River-Black Creek,35 SHOREHAM DR,11,323,2018-01-11,71,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,,4.0,4.0,5.0,3.0,2.0,3.0,3.0,4.0,3.0,4.0,W0725,43.768780728,-79.518663474,303286.907,4847413.625
-893851,4167463,2017.0,2017.0,2006.0,TCHC,13,Toronto Centre,184 RIVER ST,3,54,2018-01-11,56,Evaluation needs to be conducted in 1 year,17,3.0,2.0,4.0,2.0,3.0,2.0,3.0,2.0,,,2.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1330,43.662770771999995,-79.35927116,316143.84,4835667.148
-893852,4154465,2017.0,2017.0,1970.0,TCHC,7,Humber River-Black Creek,3680 KEELE ST,3,238,2018-01-11,65,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,W0731,43.753748768,-79.48953565,305627.036,4845754.8
-893853,4155584,2017.0,2017.0,1970.0,TCHC,22,Scarborough-Agincourt,365 BAY MILLS BLVD,13,186,2018-01-11,61,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,4.0,3.0,3.0,2.0,3.0,,3.0,4.0,4.0,3.0,2.0,2.0,3.0,3.0,4.0,,E2226,43.7812403712,-79.3008424612,320815.234,4848827.17
-893854,4155823,2017.0,2017.0,2009.0,TCHC,13,Toronto Centre,246 SACKVILLE ST,8,61,2018-01-10,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,,4.0,3.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,S1330,43.660308626,-79.36336913699999,315800.712,4835394.596
-893855,4167684,2017.0,2017.0,1948.0,TCHC,13,Toronto Centre,274 SACKVILLE ST,6,71,2018-01-10,51,Evaluation needs to be conducted in 1 year,17,2.0,3.0,3.0,2.0,2.0,2.0,2.0,2.0,3.0,,2.0,2.0,3.0,3.0,3.0,3.0,,3.0,3.0,,S1330,43.661533685,-79.36404948,315749.006,4835519.022
-893856,4167685,2017.0,2017.0,1948.0,TCHC,13,Toronto Centre,295 SACKVILLE ST,3,48,2018-01-10,52,Evaluation needs to be conducted in 1 year,17,2.0,3.0,3.0,2.0,2.0,2.0,3.0,2.0,,,2.0,3.0,2.0,4.0,3.0,2.0,2.0,4.0,3.0,,S1330,43.661833468000005,-79.36324770899999,315813.619,4835552.43
-893857,4156206,2017.0,2017.0,1971.0,TCHC,17,Don Valley North,2 BRAHMS AVE,12,164,2018-01-10,57,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,2.0,,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,,N1722,43.792308051000006,-79.35878168,316167.619,4850056.03
-893858,4156429,2017.0,2017.0,1971.0,TCHC,17,Don Valley North,5 BRAHMS AVE,13,178,2018-01-10,51,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,2.0,,1.0,3.0,3.0,2.0,3.0,3.0,3.0,2.0,1.0,2.0,N1722,43.792728204899994,-79.3578376974,316225.415,4850094.01
-893859,4155726,2017.0,2017.0,1989.0,TCHC,19,Beaches-East York,33 COATSWORTH CRES,5,128,2018-01-10,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,,3.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,S1931,43.6792629925,-79.3201512401,319285.482,4837494.411
-893860,4153867,2017.0,2017.0,1990.0,TCHC,15,Don Valley West,3179 YONGE ST,5,110,2018-01-10,77,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,N1525,43.727336774099996,-79.40205766359999,312675.228,4842824.244
-893861,4154405,2017.0,2017.0,1993.0,TCHC,6,York Centre,1286 WILSON AVE,8,124,2018-01-10,72,Evaluation needs to be conducted in 2 years,19,4.0,3.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,,4.0,4.0,5.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,N0627,43.724294732,-79.493841391,305280.424,4842482.587
-893862,4153819,2017.0,2017.0,1954.0,TCHC,12,Toronto-St. Paul's,133 BROADWAY AVE,4,52,2018-01-10,68,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,4.0,4.0,3.0,4.0,4.0,,S1221,43.710473457,-79.391890313,313496.527,4840952.816000001
-893863,4155594,2017.0,2017.0,1968.0,TCHC,11,University-Rosedale,250 DAVENPORT RD,25,460,2018-01-10,78,Evaluation needs to be conducted in 2 years,19,5.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,S1127,43.6748505579,-79.3982594579,312988.295,4836993.517
-893864,4154848,2017.0,2017.0,1980.0,TCHC,17,Don Valley North,4000 DON MILLS RD,6,397,2018-01-10,68,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,4.0,,3.0,3.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,N1722,43.810377963,-79.36147583,315929.11100000003,4852055.344
-893865,4155914,2017.0,2017.0,1992.0,TCHC,8,Eglinton-Lawrence,3036 BATHURST ST,7,160,2018-01-10,72,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,3.0,5.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,N0827,43.718503226,-79.429840681,310431.385,4841846.135
-893866,4155593,2017.0,2017.0,1964.0,TCHC,11,University-Rosedale,177 PENDRITH ST,3,54,2018-01-10,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,4.0,4.0,5.0,,4.0,4.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,,4.0,S1124,43.665548195,-79.425655665,310757.594,4836003.746
-893867,4153572,2017.0,2017.0,1980.0,TCHC,13,Toronto Centre,310 DUNDAS ST E,7,155,2018-01-10,60,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,,S1329,43.658647098500005,-79.3706942093,315213.842,4835196.523
-893868,4155611,2017.0,2017.0,1956.0,TCHC,19,Beaches-East York,59 EDGEWOOD AVE,4,53,2018-01-10,73,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,3.0,4.0,2.0,,4.0,3.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,S1937,43.6716543566,-79.31309707850001,319856.144,4836650.363
-893869,4155612,2017.0,2017.0,1956.0,TCHC,19,Beaches-East York,93 EDGEWOOD AVE,4,43,2018-01-10,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,3.0,,2.0,,4.0,3.0,,3.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,,,S1937,43.672557653599995,-79.314197336,319767.19800000003,4836750.522
-893870,4153576,2017.0,2017.0,1973.0,TCHC,14,Toronto-Danforth,859 DUNDAS ST E,4,29,2018-01-10,72,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,4.0,4.0,3.0,3.0,3.0,3.0,,4.0,3.0,4.0,4.0,3.0,4.0,,4.0,4.0,4.0,S1434,43.6621159617,-79.35167947,316746.84,4835584.466
-893871,4155625,2017.0,2017.0,1970.0,TCHC,5,York South-Weston,20-50 FALSTAFF AVE,19,224,2018-01-10,60,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0522,43.716053068,-79.505965893,304399.131,4841621.154
-893872,4155999,2017.0,2017.0,1970.0,TCHC,5,York South-Weston,30 FALSTAFF AVE,19,221,2018-01-10,61,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0522,43.7164211106,-79.5052233382,304363.605,4841606.944
-893873,4155913,2017.0,2017.0,1970.0,TCHC,5,York South-Weston,40 FALSTAFF AVE,19,224,2018-01-10,61,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0522,43.7164444337,-79.50436564399999,304432.719,4841609.528
-893874,4155615,2017.0,2017.0,1977.0,TCHC,12,Toronto-St. Paul's,70 DUNFIELD AVE,16,156,2018-01-10,60,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,4.0,2.0,3.0,3.0,3.0,2.0,,,S1228,43.706491428999996,-79.395574467,313200.179,4840510.049
-893875,4152893,2017.0,2017.0,1991.0,TCHC,25,Scarborough-Rouge Park,1315 NEILSON RD,5,126,2018-01-10,83,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,5.0,5.0,4.0,5.0,5.0,,4.0,3.0,5.0,E2524,43.807786956,-79.2188121812,327408.037,4851795.432
-893876,4152894,2017.0,2017.0,1993.0,TCHC,25,Scarborough-Rouge Park,1319 NEILSON RD,13,124,2018-01-10,89,Evaluation needs to be conducted in 3 years,16,5.0,5.0,4.0,4.0,,5.0,5.0,4.0,5.0,,5.0,4.0,5.0,5.0,5.0,4.0,,3.0,3.0,,E2524,43.808424715600005,-79.2179866009,327474.219,4851866.509
-893877,4156601,2017.0,2017.0,2010.0,TCHC,13,Toronto Centre,1 OAK ST,10,84,2018-01-10,74,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,2.0,3.0,3.0,3.0,4.0,4.0,,4.0,2.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,S1330,43.660640531000006,-79.366069469,315613.334,4835427.868
-893878,4156664,2017.0,2017.0,1972.0,TCHC,24,Scarborough-Guildwood,4301 KINGSTON RD,20,419,2018-01-10,54,Evaluation needs to be conducted in 1 year,19,2.0,3.0,3.0,2.0,3.0,4.0,1.0,3.0,3.0,,2.0,4.0,3.0,2.0,3.0,3.0,3.0,2.0,3.0,2.0,E2432,43.7627363291,-79.1928326244,329516.674,4846797.833000001
-893879,4153215,2018.0,2017.0,1989.0,TCHC,11,University-Rosedale,25 MADISON AVE,4,12,2018-01-10,76,Evaluation needs to be conducted in 2 years,15,4.0,4.0,3.0,4.0,4.0,4.0,,3.0,,,4.0,3.0,5.0,4.0,3.0,4.0,4.0,4.0,,,S1127,43.668341436000006,-79.402632539,312636.214,4836270.93
-893880,4155866,2017.0,2017.0,2008.0,TCHC,14,Toronto-Danforth,50 MATILDA ST,4,56,2018-01-10,77,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1434,43.660237712,-79.35303424899999,316637.682,4835376.563
-893881,4155575,2017.0,2017.0,1968.0,TCHC,21,Scarborough Centre,400 MCCOWAN RD,10,198,2018-01-10,70,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,3.0,4.0,5.0,4.0,4.0,,4.0,4.0,4.0,2.0,3.0,3.0,3.0,3.0,3.0,,E2135,43.74110206100001,-79.241172366,325656.703,4844463.541999999
-893882,4156313,2017.0,2017.0,1965.0,TCHC,20,Scarborough Southwest,3181 EGLINTON AVE E,7,103,2018-01-10,59,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,E2027,43.7426293696,-79.2196525266,327364.75800000003,4844556.449
-893883,4153581,2017.0,2017.0,1976.0,TCHC,13,Toronto Centre,330 GERRARD ST E,7,81,2018-01-10,59,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1327,43.66260055,-79.365387025,315640.938,4835637.373
-893884,4155741,2017.0,2017.0,2003.0,TCHC,12,Toronto-St. Paul's,659 NORTHCLIFFE BLVD,7,54,2018-01-10,76,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,5.0,4.0,4.0,4.0,,3.0,,4.0,S1222,43.695812448999995,-79.4472340895,309037.765,4839318.706
-893885,4167763,2017.0,2017.0,1980.0,TCHC,7,Humber River-Black Creek,5 NEEDLE FIRWAY,12,137,2018-01-10,48,Building Audit,19,2.0,2.0,4.0,1.0,2.0,2.0,2.0,3.0,2.0,,2.0,3.0,2.0,3.0,3.0,3.0,3.0,2.0,2.0,3.0,W0729,43.752566895,-79.518797427,303270.559,4845623.647
-893886,4155685,2017.0,2017.0,1981.0,TCHC,12,Toronto-St. Paul's,1775 EGLINTON AVE W,14,300,2018-01-10,71,Evaluation needs to be conducted in 2 years,19,3.0,4.0,3.0,3.0,4.0,4.0,4.0,3.0,3.0,,3.0,3.0,5.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,S1222,,,308913.028,4839318.616
-893887,4155621,2017.0,2017.0,1967.0,TCHC,5,York South-Weston,1570 JANE ST,6,76,2018-01-10,58,Evaluation needs to be conducted in 1 year,18,3.0,3.0,2.0,3.0,3.0,2.0,3.0,2.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0527,43.6990884103,-79.5033968088,304510.668,4839681.395
-893888,4156181,2017.0,2017.0,1964.0,TCHC,13,Toronto Centre,285 SHUTER ST,15,300,2018-01-10,64,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,4.0,3.0,3.0,4.0,4.0,4.0,3.0,4.0,3.0,S1329,43.65586332,-79.366647156,315513.091,4834942.867
-893889,4156250,2017.0,2017.0,1964.0,TCHC,13,Toronto Centre,295 SHUTER ST,16,300,2018-01-10,66,Evaluation needs to be conducted in 2 years,19,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,S1329,43.65644665600001,-79.36542470100001,315647.841,4834985.943
-893890,4155468,2017.0,2017.0,1994.0,TCHC,1,Etobicoke North,900 QUEENS PLATE DR,16,204,2018-01-10,61,Evaluation needs to be conducted in 1 year,18,3.0,3.0,5.0,2.0,3.0,3.0,3.0,2.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0127,43.720003879,-79.603372534,296449.206,4842001.8610000005
-893891,4155600,2017.0,2017.0,1973.0,TCHC,13,Toronto Centre,155 SHERBOURNE ST,16,301,2018-01-10,61,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1329,43.6555922823,-79.3695219097,315308.923,4834857.287
-893892,4156706,2017.0,2017.0,2013.0,TCHC,13,Toronto Centre,230 SACKVILLE ST,10,155,2018-01-10,88,Evaluation needs to be conducted in 3 years,20,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,5.0,4.0,5.0,S1330,,,315831.119,4835315.526000001
-893893,4156772,2017.0,2017.0,2015.0,TCHC,13,Toronto Centre,180 SACKVILLE ST,9,83,2018-01-10,92,Evaluation needs to be conducted in 3 years,18,4.0,4.0,5.0,4.0,5.0,5.0,5.0,4.0,5.0,,5.0,5.0,5.0,5.0,4.0,4.0,,5.0,5.0,4.0,S1330,,,315865.16,4835184.93
-893894,4155652,2017.0,2017.0,1974.0,TCHC,8,Eglinton-Lawrence,855 ROSELAWN AVE,17,253,2018-01-10,66,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,,N0831,43.701879441,-79.44147707399999,309501.122,4839993.968
-893895,4154702,2017.0,2017.0,1974.0,TCHC,18,Willowdale,35 PARK HOME AVE,10,283,2018-01-10,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,N1824,43.768124338,-79.415525902,311585.335,4847355.239
-893896,4155122,2017.0,2017.0,1983.0,TCHC,5,York South-Weston,30 DENARDA ST,15,255,2018-01-10,52,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,3.0,3.0,2.0,2.0,3.0,,2.0,3.0,2.0,2.0,3.0,3.0,3.0,3.0,2.0,,W0531,43.68924906,-79.4925042867,305388.692,4838588.272
-893897,4155601,2017.0,2017.0,1964.0,TCHC,13,Toronto Centre,275 SHUTER ST,16,299,2018-01-10,67,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,2.0,3.0,3.0,2.0,4.0,3.0,,3.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,S1329,43.655849077,-79.367907347,315440.851,4834874.0030000005
-893898,4155633,2017.0,2017.0,1957.0,TCHC,8,Eglinton-Lawrence,6 REPLIN RD,4,30,2018-01-10,59,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,N0823,43.717214245200005,-79.4429757151,309379.42699999997,4841696.5430000005
-893899,4153440,2017.0,2017.0,1838.0,PRIVATE,13,Toronto Centre,262 SHERBOURNE ST,3,10,2018-01-10,59,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,3.0,,3.0,,3.0,,,2.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1328,43.6591658607,-79.3715926671,315141.288,4835254.045
-893900,4155630,2017.0,2017.0,1957.0,TCHC,8,Eglinton-Lawrence,4 REPLIN RD,4,30,2018-01-10,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,3.0,,N0823,43.717910323999995,-79.443368577,309354.813,4841773.51
-893901,4167455,2017.0,2017.0,2000.0,TCHC,10,Spadina-Fort York,146 FORT YORK BLVD,7,25,2018-01-09,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,S1028,43.639312743000005,-79.399107317,,
-893902,4155637,2017.0,2017.0,1957.0,TCHC,8,Eglinton-Lawrence,3 FLEMINGTON RD,3,31,2018-01-09,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,4.0,2.0,5.0,3.0,3.0,3.0,,3.0,,3.0,N0823,43.719157062,-79.442145009,309445.958,4841913.386
-893903,4155636,2017.0,2017.0,1957.0,TCHC,8,Eglinton-Lawrence,5 FLEMINGTON RD,3,31,2018-01-09,60,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,3.0,3.0,,2.0,,,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,N0823,43.718613593,-79.442694709,309401.70399999997,4841852.977
-893904,4155632,2017.0,2017.0,1957.0,TCHC,8,Eglinton-Lawrence,7 FLEMINGTON RD,4,30,2018-01-09,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,3.0,,N0823,43.719109071000005,-79.444361414,309268.912,4841893.813999999
-893905,4155643,2017.0,2017.0,1957.0,TCHC,8,Eglinton-Lawrence,9 FLEMINGTON RD,4,30,2018-01-09,63,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,,,4.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,N0823,43.718738197700006,-79.4460430714,309132.157,4841865.686000001
-893906,4155642,2017.0,2017.0,1957.0,TCHC,8,Eglinton-Lawrence,11 FLEMINGTON RD,4,31,2018-01-09,57,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,3.0,2.0,3.0,,3.0,,3.0,3.0,3.0,2.0,3.0,3.0,4.0,,3.0,,,N0823,43.718500015,-79.447329934,309019.977,4841871.044
-893907,4155563,2017.0,2017.0,1971.0,TCHC,20,Scarborough Southwest,30 TEESDALE PL,24,278,2018-01-09,54,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,2.0,3.0,2.0,3.0,3.0,,2.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,,E2028,43.697003832200004,-79.28779229199999,321889.538,4839471.448
-893908,4155562,2017.0,2017.0,1971.0,TCHC,20,Scarborough Southwest,40 TEESDALE PL,24,278,2018-01-09,53,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,3.0,3.0,1.0,2.0,3.0,,2.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,,E2028,43.6972076653,-79.2864410678,321998.393,4839494.37
-893909,4155561,2017.0,2017.0,1962.0,TCHC,20,Scarborough Southwest,1 FIRVALLEY CRT,12,115,2018-01-09,56,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,2.0,3.0,2.0,2.0,3.0,,3.0,4.0,4.0,3.0,3.0,2.0,2.0,3.0,3.0,,E2028,43.7029523574,-79.28102862850001,322432.94800000003,4840133.711
-893910,4153968,2017.0,2017.0,1985.0,TCHC,8,Eglinton-Lawrence,145 ELM RIDGE DR,9,53,2018-01-09,76,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,4.0,,4.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,,N0832,43.7025767096,-79.4383002971,309757.376,4840070.68
-893911,4155574,2017.0,2017.0,1970.0,TCHC,21,Scarborough Centre,31 GILDER DR,18,190,2018-01-09,66,Evaluation needs to be conducted in 2 years,20,3.0,3.0,3.0,3.0,3.0,5.0,4.0,3.0,3.0,4.0,3.0,4.0,4.0,2.0,4.0,3.0,3.0,3.0,2.0,4.0,E2134,43.736255093000004,-79.256313276,324416.792,4843867.719
-893912,4154045,2017.0,2017.0,1994.0,SOCIAL HOUSING,19,Beaches-East York,10 GOWER ST,7,164,2018-01-09,73,Evaluation needs to be conducted in 2 years,19,4.0,3.0,3.0,4.0,4.0,4.0,3.0,4.0,3.0,,4.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,4.0,4.0,S1927,43.702657978000005,-79.297997207,321065.183,4840098.537
-893913,4153124,2017.0,2017.0,1988.0,TCHC,10,Spadina-Fort York,679 QUEENS QUAY W,6,106,2018-01-09,83,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,5.0,4.0,5.0,4.0,3.0,4.0,,4.0,5.0,5.0,3.0,4.0,4.0,4.0,5.0,4.0,,S1035,43.634496448,-79.39997992,312854.726,4832511.103999999
-893914,4167451,2017.0,2017.0,1990.0,TCHC,10,Spadina-Fort York,125 QUEENS WHARF RD,7,73,2018-01-09,73,Evaluation needs to be conducted in 2 years,17,4.0,4.0,3.0,3.0,,4.0,4.0,3.0,4.0,,4.0,4.0,3.0,4.0,4.0,3.0,,3.0,4.0,4.0,S1035,43.639890151,-79.39933353100001,,
-893915,4153578,2017.0,2017.0,1961.0,TCHC,13,Toronto Centre,230 RIVER ST,3,25,2018-01-09,66,Evaluation needs to be conducted in 2 years,14,3.0,3.0,3.0,4.0,,3.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1327,43.664254094499995,-79.3598482523,316087.61100000003,4835820.851
-893916,4155634,2017.0,2017.0,1957.0,TCHC,8,Eglinton-Lawrence,1 OLD MEADOW LANE,4,30,2018-01-09,58,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,3.0,3.0,2.0,4.0,3.0,3.0,3.0,,3.0,2.0,,N0823,43.717314183999996,-79.443949262,309300.705,4841708.546
-893917,4155629,2017.0,2017.0,1957.0,TCHC,8,Eglinton-Lawrence,3 OLD MEADOW LANE,4,30,2018-01-09,58,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,3.0,3.0,2.0,4.0,2.0,3.0,3.0,,3.0,3.0,,N0823,43.717989875,-79.444116728,309284.73699999996,4841788.238
-893918,4156298,2018.0,2017.0,1969.0,TCHC,10,Spadina-Fort York,170 VANAULEY WALK,6,40,2018-01-09,61,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,4.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1023,43.651687962,-79.400557945,312805.773,4834421.0
-893919,4154970,2017.0,2017.0,1977.0,TCHC,12,Toronto-St. Paul's,130 VAUGHAN RD,9,99,2018-01-09,71,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,4.0,5.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,S1229,43.6847713094,-79.4220013405,311072.831,4838093.652
-893920,4154968,2017.0,2017.0,1983.0,TCHC,12,Toronto-St. Paul's,154 VAUGHAN RD,7,51,2018-01-09,74,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,3.0,,4.0,4.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,,S1229,43.685529080900004,-79.4222487062,311052.811,4838177.827
-893921,4155658,2017.0,2017.0,1972.0,TCHC,1,Etobicoke North,44 WILLOWRIDGE RD,14,236,2018-01-09,51,Evaluation needs to be conducted in 1 year,19,3.0,2.0,3.0,2.0,2.0,3.0,2.0,2.0,3.0,,2.0,3.0,3.0,2.0,2.0,3.0,3.0,2.0,2.0,4.0,W0137,43.675646313,-79.569749625,299172.333,4837117.833000001
-893922,4152596,2017.0,2017.0,1964.0,TCHC,20,Scarborough Southwest,682 WARDEN AVE,15,223,2018-01-09,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,4.0,4.0,3.0,3.0,3.0,4.0,,3.0,E2028,43.705953312,-79.279044598,322591.70399999997,4840468.483
-893923,4155424,2017.0,2017.0,1984.0,TCHC,1,Etobicoke North,2765 ISLINGTON AVE,14,237,2018-01-09,56,Evaluation needs to be conducted in 1 year,19,2.0,3.0,3.0,2.0,2.0,3.0,2.0,2.0,3.0,,2.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,W0126,43.7435749087,-79.5669913807,299388.901,4844625.794
-893924,4155570,2017.0,2017.0,1970.0,TCHC,24,Scarborough-Guildwood,55 GREENBRAE CRCT,13,128,2018-01-09,46,Building Audit,19,2.0,2.0,2.0,1.0,2.0,3.0,2.0,2.0,2.0,,3.0,4.0,2.0,3.0,2.0,2.0,4.0,2.0,2.0,2.0,E2425,43.759551821,-79.230166356,326511.584,4846434.635
-893925,4155571,2017.0,2017.0,1970.0,TCHC,24,Scarborough-Guildwood,65 GREENBRAE CRCT,13,128,2018-01-09,53,Evaluation needs to be conducted in 1 year,18,3.0,2.0,3.0,2.0,2.0,2.0,2.0,2.0,3.0,,3.0,4.0,3.0,4.0,2.0,3.0,3.0,2.0,3.0,,E2425,43.760034356999995,-79.229764837,326550.38399999996,4846462.077
-893926,4152814,2017.0,2017.0,1970.0,PRIVATE,24,Scarborough-Guildwood,20 GREENCREST CRCT,10,136,2018-01-09,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,5.0,,4.0,3.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,4.0,E2430,43.7583695279,-79.2234312468,327054.605,4846304.108
-893927,4155598,2017.0,2017.0,1978.0,TCHC,11,University-Rosedale,6 HENRY ST,4,105,2018-01-09,71,Evaluation needs to be conducted in 2 years,17,3.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,4.0,,3.0,3.0,4.0,4.0,4.0,3.0,,4.0,4.0,,S1144,43.6562790378,-79.3937588727,313353.834,4834930.811000001
-893928,4152941,2017.0,2017.0,1958.0,PRIVATE,4,Parkdale-High Park,205 KEELE ST,4,42,2018-01-09,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,2.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S0429,43.65971467560001,-79.4617878892,307866.434,4835307.806
-893929,4155609,2017.0,2017.0,1970.0,TCHC,14,Toronto-Danforth,2 PHIN AVE,3,34,2018-01-09,66,Evaluation needs to be conducted in 2 years,16,3.0,3.0,2.0,4.0,3.0,3.0,,3.0,,3.0,4.0,3.0,5.0,4.0,3.0,3.0,,4.0,3.0,,S1431,43.6788050577,-79.33587160260001,318018.089,4837440.899
-893930,4154755,2017.0,2017.0,1970.0,TCHC,18,Willowdale,175 CUMMER AVE,4,246,2018-01-09,66,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,3.0,4.0,N1823,43.78785777,-79.408640775,312137.248,4849548.181
-893931,4155803,2017.0,2017.0,2012.0,TCHC,10,Spadina-Fort York,150 DAN LECKIE WAY,41,298,2018-01-09,78,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,4.0,S1035,,,312970.465,4833094.847
-893932,4155604,2017.0,2017.0,1961.0,TCHC,13,Toronto Centre,320 SEATON ST,6,25,2018-01-09,64,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,,,S1323,43.662525313,-79.371459917,315151.16,4835628.239
-893933,4155635,2017.0,2017.0,1957.0,TCHC,8,Eglinton-Lawrence,1 REPLIN RD,3,31,2018-01-09,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,3.0,3.0,,2.0,,,3.0,3.0,5.0,3.0,3.0,4.0,,3.0,3.0,3.0,N0823,43.719043907,-79.4433371886,309350.165,4841899.794
-893934,4155644,2017.0,2017.0,1957.0,TCHC,8,Eglinton-Lawrence,87 AMARANTH CRT,4,30,2018-01-09,64,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,,,N0823,43.720444621000006,-79.44680337,309070.52,4842056.181
-893935,4153120,2017.0,2017.0,1987.0,TCHC,10,Spadina-Fort York,25 BISHOP TUTU BLVD,10,119,2018-01-09,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,4.0,,S1035,43.635725128000004,-79.399857548,312873.219,4832658.333000001
-893936,4156182,2017.0,2017.0,1969.0,TCHC,14,Toronto-Danforth,80 BLAKE ST,14,190,2018-01-09,72,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,2.0,3.0,5.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,,S1430,43.67437498899999,-79.339480129,317736.256,4836964.143
-893937,4153585,2017.0,2017.0,1980.0,TCHC,13,Toronto Centre,55 BLEECKER ST,14,260,2018-01-09,62,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,S1323,43.664421836,-79.37226324,315086.04600000003,4835838.834
-893938,4155787,2017.0,2017.0,2001.0,TCHC,14,Toronto-Danforth,10 BOULTBEE AVE,11,167,2018-01-09,56,Evaluation needs to be conducted in 1 year,20,4.0,3.0,3.0,2.0,3.0,3.0,2.0,3.0,3.0,3.0,2.0,3.0,2.0,2.0,3.0,3.0,3.0,2.0,3.0,4.0,S1430,43.672840218800005,-79.339881471,317696.053,4836777.6280000005
-893939,4153857,2017.0,2017.0,1987.0,TCHC,15,Don Valley West,2567 YONGE ST,6,105,2018-01-09,79,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,N1526,43.714048186499994,-79.3993963134,312891.412,4841348.24
-893940,4153859,2017.0,2017.0,1937.0,TCHC,15,Don Valley West,2745 YONGE ST,4,41,2018-01-09,71,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,,3.0,3.0,5.0,3.0,4.0,4.0,,3.0,3.0,,N1526,43.7180441891,-79.4001039683,312833.856,4841792.101
-893941,4153860,2017.0,2017.0,1970.0,TCHC,15,Don Valley West,2765 YONGE ST,4,31,2018-01-09,71,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,,3.0,3.0,3.0,5.0,3.0,4.0,4.0,,3.0,,,N1526,43.7184879937,-79.40010634069999,312833.606,4841841.405
-893942,4154705,2017.0,2017.0,1986.0,TCHC,18,Willowdale,5430 YONGE ST,14,239,2018-01-09,77,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,3.0,4.0,N1824,43.7759712605,-79.4152224497,311609.151,4848226.096
-893943,4155641,2017.0,2017.0,1957.0,TCHC,8,Eglinton-Lawrence,51 BLOSSOMFIELD DR,4,30,2018-01-09,71,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,4.0,5.0,3.0,4.0,4.0,,4.0,4.0,,N0823,43.718564843500005,-79.44814255760001,308963.0,4841846.317
-893944,4153107,2017.0,2017.0,1978.0,TCHC,9,Davenport,1884 DAVENPORT RD,9,186,2018-01-09,64,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,,4.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,S0926,43.670764096999996,-79.453867406,308498.716,4836548.304
-893945,4155471,2017.0,2017.0,1992.0,TCHC,3,Etobicoke-Lakeshore,98 CAVELL AVE,6,100,2018-01-09,68,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,,4.0,4.0,5.0,3.0,3.0,3.0,,3.0,3.0,4.0,W0336,43.616184073999996,-79.49590117,305111.3,4830450.134
-893946,4155470,2017.0,2017.0,1977.0,TCHC,3,Etobicoke-Lakeshore,100 CAVELL AVE,7,300,2018-01-09,64,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,4.0,3.0,4.0,3.0,2.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,4.0,W0336,43.6154876721,-79.4969959174,305026.782,4830393.808
-893947,4154485,2017.0,2017.0,1992.0,TCHC,8,Eglinton-Lawrence,3036-3050 BATHURST ST,7,160,2018-01-09,62,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,2.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,N0827,43.718487778000004,-79.429895751,310427.489,4841848.69
-893948,4154558,2017.0,2017.0,1983.0,TCHC,8,Eglinton-Lawrence,3174 BATHURST ST,12,181,2018-01-09,65,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,N0823,43.7219200782,-79.4309398102,310348.858,4842220.108
-893949,4153345,2017.0,2017.0,1993.0,TCHC,12,Toronto-St. Paul's,1400 BATHURST ST,5,113,2018-01-09,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,5.0,4.0,3.0,4.0,3.0,4.0,4.0,,S1235,43.6806482749,-79.418061916,311390.894,4837635.882
-893950,4155591,2017.0,2017.0,1968.0,TCHC,9,Davenport,61 PELHAM PARK GDNS,17,352,2018-01-09,62,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,2.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,S0926,43.66925972,-79.457795659,308187.607,4836369.289
-893951,4156240,2017.0,2017.0,1969.0,TCHC,20,Scarborough Southwest,30 EPPLEWORTH RD,3,45,2018-01-08,50,Building Audit,16,2.0,3.0,2.0,2.0,3.0,2.0,,2.0,,,1.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,,E2023,43.727206753999994,-79.263241732,323854.783,4842776.82
-893952,4155567,2017.0,2017.0,1972.0,TCHC,21,Scarborough Centre,1021 BIRCHMOUNT RD,11,236,2018-01-08,62,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,E2133,43.73164966,-79.27790394600001,322675.98699999996,4843323.473999999
-893953,4155607,2017.0,2017.0,1960.0,TCHC,14,Toronto-Danforth,1615 DUNDAS ST E,4,81,2018-01-08,60,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,2.0,3.0,4.0,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,S1438,43.6665389642,-79.32806340350001,318650.451,4836079.491
-893954,4156316,2017.0,2017.0,1969.0,TCHC,19,Beaches-East York,444 LUMSDEN AVE,42,183,2018-01-08,59,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,2.0,3.0,4.0,2.0,1.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,S1930,43.695629657,-79.302310982,320791.011,4839337.097
-893955,4155517,2017.0,2017.0,1980.0,TCHC,3,Etobicoke-Lakeshore,2835 LAKE SHORE BLVD W,9,148,2018-01-08,61,Evaluation needs to be conducted in 1 year,19,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,W0335,43.6013719933,-79.50153664300001,304660.286,4828825.602
-893956,4155638,2017.0,2017.0,1957.0,TCHC,8,Eglinton-Lawrence,1 FLEMINGTON RD,3,31,2018-01-08,59,Evaluation needs to be conducted in 1 year,14,4.0,2.0,4.0,3.0,2.0,3.0,,2.0,,,3.0,2.0,5.0,2.0,3.0,4.0,,2.0,,,N0823,43.719074422,-79.441290791,309514.797,4841904.254
-893957,4155623,2017.0,2017.0,1955.0,TCHC,5,York South-Weston,1620 LAWRENCE AVE W,3,13,2018-01-08,59,Evaluation needs to be conducted in 1 year,16,3.0,3.0,2.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0526,43.7064506482,-79.4893217524,305627.966,4840469.963
-893958,4155624,2017.0,2017.0,1955.0,TCHC,5,York South-Weston,1622 LAWRENCE AVE W,3,20,2018-01-08,59,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0526,43.706344038000005,-79.4898898343,305599.298,4840487.469
-893959,4156556,2018.0,2017.0,1970.0,TCHC,24,Scarborough-Guildwood,3943 LAWRENCE AVE E,3,15,2018-01-08,59,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,,3.0,,3.0,,,3.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,,E2431,43.7631593909,-79.2047559,328556.497,4846841.376
-893960,4153022,2017.0,2017.0,1953.0,TCHC,4,Parkdale-High Park,3 LAXTON AVE,8,42,2018-01-08,66,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,4.0,5.0,3.0,3.0,4.0,3.0,3.0,3.0,,S0436,43.639146507700005,-79.43773771810001,309807.939,4833023.91
-893961,4155589,2017.0,2017.0,1971.0,TCHC,4,Parkdale-High Park,245 DUNN AVE,20,384,2018-01-08,59,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,2.0,3.0,3.0,,S0436,43.640216059,-79.433778346,310127.038,4833143.912
-893962,4155943,2017.0,2017.0,1965.0,TCHC,20,Scarborough Southwest,3171 EGLINTON AVE E,12,161,2018-01-08,60,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,E2027,43.7426229529,-79.22004925,327332.807,4844555.63
-893963,4155610,2017.0,2017.0,1965.0,TCHC,19,Beaches-East York,1080 EASTERN AVE,6,41,2018-01-08,74,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,,3.0,,3.0,4.0,,4.0,4.0,5.0,3.0,4.0,3.0,3.0,4.0,3.0,,S1941,43.665859716199996,-79.3160434122,319619.997,4836006.058999999
-893964,4155569,2017.0,2017.0,1971.0,TCHC,21,Scarborough Centre,6 GLAMORGAN AVE,12,184,2018-01-08,62,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,3.0,2.0,3.0,4.0,3.0,3.0,3.0,,E2123,43.7693818631,-79.284775411,322111.87899999996,4847512.968
-893965,4156455,2017.0,2017.0,1969.0,TCHC,20,Scarborough Southwest,20 EPPLEWORTH RD,3,36,2018-01-08,50,Building Audit,16,1.0,3.0,3.0,2.0,3.0,2.0,,2.0,,,2.0,2.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,,E2023,43.726760854,-79.263575088,323859.729,4842772.896000001
-893966,4155813,2017.0,2017.0,1973.0,TCHC,1,Etobicoke North,2063 ISLINGTON AVE,12,162,2018-01-08,60,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,1.0,3.0,3.0,,3.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,W0135,43.701195372,-79.547954529,300919.034,4839917.6389999995
-893967,4155705,2017.0,2017.0,1973.0,TCHC,1,Etobicoke North,2067 ISLINGTON AVE,12,162,2018-01-08,62,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,W0135,43.702256035,-79.548440591,300879.92699999997,4840035.496
-893968,4154400,2017.0,2017.0,1966.0,TCHC,6,York Centre,2195 JANE ST,11,294,2018-01-08,59,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,2.0,3.0,3.0,2.0,3.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,N0627,43.7222134695,-79.5079300215,304145.58,4842250.448
-893969,4154243,2017.0,2017.0,2008.0,TCHC,7,Humber River-Black Creek,1900 SHEPPARD AVE W,4,27,2018-01-08,69,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,,3.0,3.0,5.0,4.0,3.0,3.0,,4.0,3.0,3.0,W0732,43.740025128,-79.509714967,304001.81,4844230.158
-893970,4156480,2017.0,2017.0,1966.0,TCHC,19,Beaches-East York,90 PARMA CRT,7,92,2018-01-08,71,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,,4.0,3.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,,S1923,43.717195772,-79.30099923600001,320819.363,4841713.06
-893971,4153062,2017.0,2017.0,1918.0,TCHC,4,Parkdale-High Park,22 O'HARA AVE,3,13,2018-01-08,63,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,,4.0,,,S0435,43.6419758468,-79.4348296425,310042.331,4833338.397
-893972,4153063,2017.0,2017.0,1959.0,TCHC,4,Parkdale-High Park,20 WEST LODGE AVE,11,299,2018-01-08,70,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,4.0,4.0,3.0,3.0,4.0,4.0,,3.0,4.0,5.0,3.0,3.0,4.0,,3.0,3.0,3.0,S0435,43.6421900653,-79.4363583389,309918.979,4833362.107
-893973,4155640,2017.0,2017.0,1957.0,TCHC,8,Eglinton-Lawrence,20 VARNA DR,3,31,2018-01-08,71,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,3.0,3.0,4.0,,4.0,,,4.0,4.0,5.0,3.0,2.0,4.0,,4.0,2.0,,N0823,43.7194419613,-79.4399793206,309620.709,4841944.21
-893974,4155639,2017.0,2017.0,1957.0,TCHC,8,Eglinton-Lawrence,22 VARNA DR,3,31,2018-01-08,66,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,2.0,4.0,4.0,,4.0,,3.0,3.0,4.0,5.0,2.0,2.0,4.0,,2.0,3.0,,N0823,43.7196194362,-79.4407985931,309554.68,4841963.8780000005
-893975,4155531,2017.0,2017.0,1993.0,TCHC,3,Etobicoke-Lakeshore,250 TWELFTH ST,14,178,2018-01-08,64,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,W0335,43.6006696381,-79.5115220432,303854.172,4828747.612
-893976,4156483,2017.0,2017.0,1967.0,TCHC,19,Beaches-East York,5 WAKUNDA PL,11,198,2018-01-08,66,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,3.0,4.0,3.0,4.0,3.0,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1923,43.715565256400005,-79.3046724013,320524.072,4841530.268999999
-893977,4154850,2017.0,2017.0,1977.0,TCHC,16,Don Valley East,1420 VICTORIA PARK AVE,10,330,2018-01-08,71,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,3.0,3.0,3.0,4.0,4.0,4.0,,4.0,3.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,4.0,N1631,43.721471797700005,-79.3024586823,320700.892,4842186.871
-893978,4155659,2017.0,2017.0,1967.0,TCHC,1,Etobicoke North,75 TANDRIDGE CRES,10,221,2018-01-08,59,Evaluation needs to be conducted in 1 year,18,2.0,2.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,,W0131,43.728881268,-79.54672209600001,301020.19,4842993.242
-893979,4155469,2017.0,2017.0,1972.0,TCHC,3,Etobicoke-Lakeshore,340 ROYAL YORK RD,16,307,2018-01-08,68,Evaluation needs to be conducted in 2 years,20,3.0,3.0,3.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,3.0,4.0,5.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,W0332,43.6169208542,-79.49934613100001,304837.091,4830553.024
-893980,4153833,2017.0,2017.0,1956.0,TCHC,15,Don Valley West,28 BROADWAY AVE,3,75,2018-01-08,67,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,,N1526,43.71043048399999,-79.397121509,313074.95399999997,4840947.509
-893981,4154792,2017.0,2017.0,1990.0,TCHC,16,Don Valley East,20 SANDERLING PL,5,90,2018-01-08,72,Evaluation needs to be conducted in 2 years,19,4.0,3.0,3.0,4.0,4.0,4.0,4.0,3.0,3.0,,4.0,4.0,5.0,3.0,3.0,4.0,3.0,3.0,3.0,4.0,N1626,43.7339142779,-79.3489216558,316954.747,4843561.308
-893982,4155651,2017.0,2017.0,1962.0,TCHC,16,Don Valley East,14 RAYOAK DR,8,63,2018-01-08,74,Evaluation needs to be conducted in 2 years,19,3.0,4.0,3.0,4.0,3.0,4.0,3.0,4.0,3.0,,4.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,N1625,43.7598478794,-79.3194127987,319325.589,4846447.109
-893983,4153592,2017.0,2017.0,1910.0,PRIVATE,13,Toronto Centre,2 PROSPECT ST,4,15,2018-01-08,70,Evaluation needs to be conducted in 2 years,14,4.0,3.0,3.0,3.0,,3.0,,4.0,,,3.0,3.0,5.0,3.0,4.0,4.0,3.0,4.0,,,S1323,43.6667667454,-79.3716022421,315139.21,4836098.467
-893984,4155606,2017.0,2017.0,1969.0,TCHC,14,Toronto-Danforth,1555 QUEEN ST E,6,60,2018-01-08,54,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,1.0,3.0,,3.0,1.0,3.0,2.0,3.0,4.0,2.0,3.0,3.0,3.0,3.0,4.0,,S1442,43.665662499300005,-79.318700496,319405.75899999996,4835983.683
-893985,4156243,2017.0,2017.0,1969.0,TCHC,14,Toronto-Danforth,1575 QUEEN ST E,6,60,2018-01-08,61,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,3.0,3.0,2.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1442,43.66586169560001,-79.31811382689999,319453.024,4836005.915
-893986,4155650,2017.0,2017.0,1962.0,TCHC,16,Don Valley East,51 PARKWOODS VILLAGE DR,7,81,2018-01-08,72,Evaluation needs to be conducted in 2 years,19,3.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,,3.0,3.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,N1625,43.759507201000005,-79.320050542,319274.057,4846410.106000001
-893987,4155566,2017.0,2017.0,1969.0,TCHC,20,Scarborough Southwest,675 KENNEDY RD,11,192,2018-01-08,56,Evaluation needs to be conducted in 1 year,18,3.0,3.0,2.0,2.0,3.0,3.0,3.0,2.0,3.0,,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,,E2023,43.72687441,-79.265289789,323769.245,4842812.63
-893988,4155564,2017.0,2017.0,1970.0,TCHC,20,Scarborough Southwest,3479 ST CLAIR AVE E,8,94,2018-01-08,58,Evaluation needs to be conducted in 1 year,19,3.0,2.0,2.0,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,4.0,4.0,E2030,43.7142950675,-79.2692166242,323381.434,4841396.427
-893989,4155565,2017.0,2017.0,1968.0,TCHC,20,Scarborough Southwest,3485 ST CLAIR AVE E,9,97,2018-01-08,56,Evaluation needs to be conducted in 1 year,18,3.0,3.0,2.0,3.0,3.0,2.0,2.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,,E2030,43.7145219871,-79.26814890060001,323467.401,4841421.877
-893990,4153102,2017.0,2017.0,1974.0,PRIVATE,9,Davenport,730 ST CLARENS AVE,18,275,2018-01-08,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,2.0,3.0,4.0,4.0,3.0,3.0,,4.0,3.0,,S0930,43.667270761000005,-79.44567156,309165.49600000004,4836148.864
-893991,4155568,2017.0,2017.0,1971.0,TCHC,21,Scarborough Centre,7 GLAMORGAN AVE,12,196,2018-01-08,63,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,4.0,3.0,3.0,4.0,3.0,4.0,3.0,3.0,E2123,43.7677640295,-79.2844534267,322138.266,4847333.299
-893992,4156468,2017.0,2017.0,1972.0,TCHC,20,Scarborough Southwest,10 GORDONRIDGE PL,16,217,2018-01-05,60,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,E2024,43.7269627406,-79.25229348149999,324713.92100000003,4842838.544
-893993,4153044,2017.0,2017.0,1980.0,TCHC,4,Parkdale-High Park,300 DUFFERIN ST,7,114,2018-01-05,66,Evaluation needs to be conducted in 2 years,19,3.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,3.0,,3.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,S0436,43.6395518816,-79.4281871995,310578.464,4833069.527
-893994,4156390,2017.0,2017.0,1971.0,TCHC,22,Scarborough-Agincourt,2739 VICTORIA PARK AVE,15,203,2018-01-05,59,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,2.0,,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,E2225,43.778310557,-79.32353353399999,318941.968,4848494.812
-893995,4154260,2017.0,2017.0,1952.0,PRIVATE,7,Humber River-Black Creek,73 LOVILLA BLVD,3,16,2018-01-05,71,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,4.0,3.0,4.0,,3.0,,3.0,5.0,3.0,5.0,3.0,3.0,3.0,,5.0,4.0,,W0733,43.717730278000005,-79.5372015088,301786.885,4841753.108
-893996,4155579,2017.0,2017.0,1969.0,TCHC,24,Scarborough-Guildwood,2180 ELLESMERE RD,16,180,2018-01-05,67,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,2.0,4.0,4.0,3.0,4.0,2.0,,3.0,3.0,3.0,3.0,4.0,5.0,4.0,3.0,3.0,,E2422,43.777612123000004,-79.2311695919,326424.61,4848439.828
-893997,4155578,2017.0,2017.0,1969.0,TCHC,24,Scarborough-Guildwood,2190 ELLESMERE RD,16,180,2018-01-05,71,Evaluation needs to be conducted in 2 years,19,3.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,4.0,,3.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,E2422,43.777855001099994,-79.23003317979999,326516.0,4848467.109
-893998,4156557,2017.0,2017.0,1970.0,TCHC,24,Scarborough-Guildwood,3941 LAWRENCE AVE E,3,33,2018-01-05,59,Evaluation needs to be conducted in 1 year,16,2.0,1.0,1.0,3.0,3.0,4.0,,5.0,,,3.0,4.0,5.0,3.0,3.0,3.0,1.0,3.0,3.0,,E2431,43.763624835,-79.2044874649,328577.92600000004,4846893.162
-893999,4154274,2017.0,2017.0,2008.0,TCHC,7,Humber River-Black Creek,2350 FINCH AVE W,4,15,2018-01-05,51,Evaluation needs to be conducted in 1 year,18,2.0,2.0,4.0,1.0,2.0,2.0,1.0,3.0,2.0,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0722,43.752199466,-79.54396680100001,301243.618,4845583.62
-894000,4155979,2017.0,2017.0,1970.0,TCHC,21,Scarborough Centre,47 GILDER DR,6,66,2018-01-05,58,Evaluation needs to be conducted in 1 year,19,2.0,3.0,2.0,3.0,3.0,4.0,2.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,4.0,2.0,3.0,3.0,E2134,43.736354755600004,-79.2553148807,324494.439,4843850.346
-894001,4156268,2017.0,2017.0,1970.0,TCHC,21,Scarborough Centre,49 GILDER DR,6,22,2018-01-05,58,Evaluation needs to be conducted in 1 year,19,2.0,3.0,2.0,3.0,3.0,4.0,2.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,4.0,2.0,3.0,3.0,E2134,43.7365696854,-79.255181683,324505.1,4843874.254
-894002,4153396,2017.0,2017.0,1990.0,TCHC,13,Toronto Centre,60 RICHMOND ST E,8,50,2018-01-05,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,4.0,,3.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,,4.0,S1334,43.6525396289,-79.3761942758,314771.228,4834517.345
-894003,4156555,2017.0,2017.0,1970.0,TCHC,24,Scarborough-Guildwood,3945 LAWRENCE AVE E,3,20,2018-01-05,54,Evaluation needs to be conducted in 1 year,16,2.0,1.0,1.0,3.0,2.0,4.0,,4.0,,,3.0,4.0,3.0,3.0,3.0,3.0,1.0,3.0,3.0,,E2431,43.7630131413,-79.2041400469,328606.14,4846825.304
-894004,4156554,2017.0,2017.0,1970.0,TCHC,24,Scarborough-Guildwood,3947 LAWRENCE AVE E,19,238,2018-01-05,49,Building Audit,18,3.0,2.0,1.0,3.0,2.0,4.0,2.0,3.0,2.0,,3.0,2.0,3.0,2.0,3.0,4.0,1.0,2.0,2.0,,E2431,43.7638127672,-79.20381674149999,328631.854,4846914.233
-894005,4288282,2018.0,2017.0,2017.0,PRIVATE,7,Humber River-Black Creek,2 VENA WAY,29,272,2018-01-05,98,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,5.0,W0728,,,301457.184,4845294.472
-894006,4152998,2017.0,2017.0,1992.0,TCHC,4,Parkdale-High Park,1447 KING ST W,6,59,2018-01-05,68,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,,3.0,4.0,5.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,S0437,43.6366736608,-79.4376587469,309814.512,4832749.203
-894007,4155283,2017.0,2017.0,1958.0,PRIVATE,3,Etobicoke-Lakeshore,10 KINGS POINT DR,3,19,2018-01-05,69,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,,,3.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,,W0327,43.63983146819999,-79.4928529071,305360.98600000003,4833098.271000001
-894008,4155255,2017.0,2017.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,1 HILL HEIGHTS RD,4,30,2018-01-05,70,Evaluation needs to be conducted in 2 years,16,3.0,3.0,2.0,3.0,4.0,4.0,,3.0,,,4.0,3.0,5.0,3.0,4.0,4.0,4.0,4.0,3.0,,W0327,43.638061568299996,-79.4937696446,305286.99,4832901.638
-894009,4284986,2017.0,2017.0,1971.0,PRIVATE,19,Beaches-East York,9 CRESCENT PL,29,587,2018-01-05,59,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,4.0,3.0,4.0,2.0,3.0,3.0,,2.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,S1930,43.695648592,-79.291287219,321619.854,4839297.583000001
-894010,4155707,2017.0,2017.0,1970.0,TCHC,2,Etobicoke Centre,27 SCARLETTWOOD CRT,3,14,2018-01-05,68,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,,,3.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,3.0,,W0224,43.693274018000004,-79.516001007,303494.335,4839036.572
-894011,4155667,2017.0,2017.0,1971.0,TCHC,2,Etobicoke Centre,49 SCARLETTWOOD CRT,4,14,2018-01-05,66,Evaluation needs to be conducted in 2 years,16,3.0,4.0,3.0,3.0,2.0,3.0,,3.0,,,3.0,3.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,,W0224,43.69372017600001,-79.516153969,303485.161,4839089.472
-894012,4154275,2017.0,2017.0,1960.0,PRIVATE,7,Humber River-Black Creek,25 DUNCANWOODS DR,11,148,2018-01-05,64,Evaluation needs to be conducted in 1 year,19,3.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,2.0,3.0,4.0,3.0,,W0722,43.7496851095,-79.55739159,300162.561,4845304.0030000005
-894013,4155942,2017.0,2017.0,1971.0,TCHC,22,Scarborough-Agincourt,2743 VICTORIA PARK AVE,15,201,2018-01-05,63,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,E2225,43.779266936999996,-79.323413406,318912.61199999996,4848579.722
-894014,4152970,2017.0,2017.0,1992.0,TCHC,4,Parkdale-High Park,102 TYNDALL AVE,7,54,2018-01-05,69,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,4.0,,4.0,4.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,,S0437,43.6366904799,-79.428980996,310514.679,4832751.594
-894015,4155465,2017.0,2017.0,1984.0,TCHC,1,Etobicoke North,10 HUMBERLINE DR,13,179,2018-01-05,58,Evaluation needs to be conducted in 1 year,19,2.0,3.0,3.0,2.0,2.0,3.0,2.0,4.0,3.0,3.0,2.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,4.0,W0125,43.7312483321,-79.61180489510001,295777.595,4843260.265
-894016,4155782,2017.0,2017.0,1965.0,TCHC,1,Etobicoke North,101 KENDLETON DR,7,221,2018-01-05,54,Evaluation needs to be conducted in 1 year,19,2.0,2.0,3.0,2.0,2.0,3.0,2.0,2.0,3.0,,2.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,W0123,43.7383578677,-79.580925169,298266.007,4844047.228
-894017,4155781,2017.0,2017.0,1965.0,TCHC,1,Etobicoke North,111 KENDLETON DR,7,58,2018-01-05,57,Evaluation needs to be conducted in 1 year,19,2.0,3.0,3.0,2.0,3.0,3.0,2.0,2.0,3.0,,2.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,W0123,43.737879704499996,-79.581199625,298243.847,4843994.13
-894018,4156208,2017.0,2017.0,1965.0,TCHC,1,Etobicoke North,121 KENDLETON DR,11,194,2018-01-05,56,Evaluation needs to be conducted in 1 year,19,2.0,2.0,3.0,2.0,2.0,3.0,3.0,2.0,3.0,,2.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,W0123,43.7376027043,-79.5808305747,298273.543,4843963.329
-894019,4156430,2017.0,2017.0,1972.0,TCHC,7,Humber River-Black Creek,7 ARLETA AVE,4,201,2018-01-05,62,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,2.0,2.0,3.0,4.0,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,W0732,43.7420099966,-79.5008716177,304714.372,4844449.658
-894020,4155991,2017.0,2017.0,1972.0,TCHC,7,Humber River-Black Creek,11 ARLETA AVE,4,171,2018-01-05,63,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,4.0,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,W0732,43.7429406222,-79.5009610922,304707.169,4844553.048
-894021,4155588,2017.0,2017.0,1974.0,TCHC,4,Parkdale-High Park,85 SPENCER AVE,7,57,2018-01-05,66,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,3.0,3.0,2.0,4.0,3.0,,3.0,3.0,5.0,4.0,3.0,4.0,4.0,3.0,3.0,,S0437,43.637330091,-79.430147711,310420.221,4832823.529
-894022,4153550,2018.0,2017.0,1917.0,PRIVATE,11,University-Rosedale,628 CHURCH ST,3,20,2018-01-05,47,Building Audit,15,2.0,2.0,2.0,2.0,2.0,3.0,,3.0,,,2.0,2.0,4.0,2.0,2.0,2.0,2.0,3.0,,,S1137,43.669587287,-79.382813793,314232.17,4836412.982
-894023,4152995,2017.0,2017.0,1989.0,TCHC,4,Parkdale-High Park,75 DOWLING AVE,7,138,2018-01-05,68,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,3.0,5.0,4.0,3.0,3.0,4.0,4.0,4.0,3.0,S0437,43.635062111,-79.437601411,309819.00800000003,4832571.13
-894024,4155834,2017.0,2017.0,1969.0,TCHC,13,Toronto Centre,275 BLEECKER ST,21,301,2018-01-05,45,Building Audit,19,2.0,3.0,2.0,2.0,3.0,3.0,2.0,2.0,2.0,,2.0,2.0,2.0,3.0,2.0,2.0,2.0,3.0,2.0,2.0,S1323,43.66883593520001,-79.3737051125,314969.275,4836328.077
-894025,4156118,2017.0,2017.0,1969.0,TCHC,13,Toronto Centre,325 BLEECKER ST,24,327,2018-01-05,49,Building Audit,19,3.0,3.0,2.0,2.0,3.0,3.0,2.0,2.0,2.0,,2.0,4.0,3.0,2.0,3.0,3.0,2.0,3.0,2.0,1.0,S1323,43.669381383,-79.37437191,314915.151,4836389.54
-894026,4156038,2017.0,2017.0,1969.0,TCHC,13,Toronto Centre,375 BLEECKER ST,24,327,2018-01-05,55,Evaluation needs to be conducted in 1 year,19,3.0,3.0,2.0,3.0,4.0,3.0,3.0,2.0,3.0,,3.0,3.0,2.0,3.0,2.0,2.0,2.0,3.0,3.0,3.0,S1323,43.670607632,-79.374814757,314879.229,4836525.723999999
-894027,4155957,2017.0,2017.0,1972.0,TCHC,20,Scarborough Southwest,30 GORDONRIDGE PL,17,231,2018-01-05,57,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,1.0,3.0,2.0,,3.0,3.0,5.0,3.0,2.0,3.0,3.0,3.0,2.0,,E2024,43.726764513,-79.250888477,324750.497,4842822.528
-894028,4154611,2017.0,2017.0,1989.0,TCHC,6,York Centre,2 FAYWOOD BLVD,3,40,2018-01-04,66,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,4.0,,3.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,,N0629,43.735314433,-79.446969691,309056.09,4843708.153
-894029,4155773,2017.0,2017.0,1966.0,PRIVATE,16,Don Valley East,100 ROWENA DR,12,248,2018-01-04,59,Evaluation needs to be conducted in 1 year,20,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,2.0,2.0,3.0,N1625,43.7517238195,-79.3143707442,319733.599,4845545.465
-894030,4156373,2017.0,2017.0,1963.0,TCHC,2,Etobicoke Centre,58 WATERTON RD,6,47,2018-01-04,63,Evaluation needs to be conducted in 1 year,18,3.0,2.0,4.0,2.0,3.0,3.0,3.0,4.0,3.0,,3.0,3.0,4.0,3.0,3.0,4.0,3.0,4.0,3.0,,W0224,43.693937882,-79.51688954800001,303416.73699999996,4839111.034
-894031,4153513,2017.0,2017.0,1929.0,PRIVATE,13,Toronto Centre,64 WELLESLEY ST E,5,60,2018-01-04,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,S1322,43.665901023,-79.381806918,314316.12100000004,4836002.031
-894032,4153460,2017.0,2017.0,1985.0,TCHC,11,University-Rosedale,25 ELM ST,16,101,2018-01-04,65,Evaluation needs to be conducted in 1 year,19,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,4.0,3.0,3.0,3.0,4.0,S1145,43.6573608881,-79.3829351361,314226.76,4835052.209
-894033,4154822,2017.0,2017.0,1969.0,PRIVATE,17,Don Valley North,25 LEITH HILL RD,15,147,2018-01-04,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,3.0,4.0,3.0,5.0,4.0,,5.0,3.0,5.0,3.0,5.0,4.0,5.0,3.0,3.0,,N1727,43.7763920506,-79.3495861019,316892.719,4848280.297
-894034,4154821,2017.0,2017.0,1966.0,PRIVATE,17,Don Valley North,201 VAN HORNE AVE,18,245,2018-01-04,73,Evaluation needs to be conducted in 2 years,19,3.0,4.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,,4.0,3.0,5.0,4.0,3.0,4.0,3.0,5.0,4.0,4.0,N1727,43.786395807,-79.353703275,316559.107,4849392.065
-894035,4154259,2017.0,2017.0,1984.0,TCHC,7,Humber River-Black Creek,3101 WESTON RD,18,176,2018-01-04,56,Evaluation needs to be conducted in 1 year,18,3.0,2.0,4.0,2.0,3.0,2.0,3.0,3.0,2.0,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,,W0733,43.733312244,-79.537225843,301785.494,4843485.091
-894036,4154891,2017.0,2017.0,1958.0,PRIVATE,16,Don Valley East,2 SWIFT DR,4,61,2018-01-04,65,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,,N1628,43.726549517399995,-79.31918836210001,319351.711,4842747.946
-894037,4153385,2017.0,2017.0,1979.0,TCHC,10,Spadina-Fort York,25 HENRY LANE TER,6,196,2018-01-04,74,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,,S1038,43.64755666,-79.370208586,315257.886,4833963.232
-894038,4167772,2017.0,2017.0,1980.0,TCHC,10,Spadina-Fort York,49 HENRY LANE TER,5,15,2018-01-04,73,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,3.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,,S1038,43.646859158999995,-79.369670022,315285.761,4833893.711
-894039,4154900,2017.0,2017.0,1966.0,PRIVATE,16,Don Valley East,105 ROWENA DR,12,243,2018-01-04,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N1625,43.750896864,-79.31418886,319750.673,4845444.329
-894040,4283407,2019.0,2017.0,,SOCIAL HOUSING,13,Toronto Centre,20 PALACE ST,10,108,2018-01-04,81,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,5.0,S1336,43.653784814,-79.356665413,316346.038,4834659.18
-894041,4154911,2017.0,2017.0,1963.0,PRIVATE,16,Don Valley East,111 COMBERMERE DR,7,81,2018-01-04,64,Evaluation needs to be conducted in 1 year,19,4.0,4.0,4.0,3.0,3.0,3.0,3.0,2.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,2.0,,N1625,43.7587471272,-79.319372054,319329.13300000003,4846324.826
-894042,4154910,2017.0,2017.0,1963.0,PRIVATE,16,Don Valley East,121 COMBERMERE DR,8,66,2018-01-04,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,4.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,N1625,43.759361454099995,-79.318888833,319367.896,4846393.16
-894043,4288472,2018.0,2017.0,2016.0,SOCIAL HOUSING,13,Toronto Centre,75 COOPERAGE ST,12,145,2018-01-04,81,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,4.0,S1336,,,316341.205,4834605.327
-894044,4153441,2017.0,2017.0,1809.0,PRIVATE,13,Toronto Centre,260 SHERBOURNE ST,4,10,2018-01-04,56,Evaluation needs to be conducted in 1 year,15,2.0,3.0,2.0,3.0,,3.0,,3.0,,,2.0,3.0,4.0,3.0,3.0,3.0,2.0,3.0,3.0,,S1328,43.659098979899994,-79.3715644023,315143.57899999997,4835246.618
-894045,4155657,2017.0,2017.0,1973.0,TCHC,2,Etobicoke Centre,7 CAPRI RD,20,275,2018-01-04,58,Evaluation needs to be conducted in 1 year,19,2.0,3.0,3.0,3.0,3.0,3.0,2.0,2.0,3.0,,2.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,W0232,43.652915828000005,-79.564476577,299618.342,4834530.235
-894046,4153504,2017.0,2017.0,1928.0,PRIVATE,13,Toronto Centre,138 WELLESLEY ST E,3,26,2018-01-04,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,,,S1322,43.6668236077,-79.3771743291,314689.849,4836104.096
-894047,4153395,2017.0,2017.0,1900.0,SOCIAL HOUSING,13,Toronto Centre,147 QUEEN ST E,7,76,2018-01-04,69,Evaluation needs to be conducted in 2 years,17,3.0,4.0,4.0,4.0,3.0,3.0,,4.0,3.0,,3.0,4.0,3.0,3.0,4.0,4.0,3.0,4.0,3.0,,S1334,43.6535746622,-79.3726782657,315054.67,4834632.752
-894048,4156727,2017.0,2017.0,1967.0,PRIVATE,17,Don Valley North,100 PARKWAY FOREST DR,17,216,2018-01-04,73,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,2.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,3.0,3.0,3.0,3.0,,N1730,,,317511.715,4847942.106000001
-894049,4154857,2017.0,2017.0,1962.0,PRIVATE,16,Don Valley East,80 BARTLEY DR,3,10,2018-01-04,59,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,5.0,2.0,3.0,3.0,,2.0,3.0,,N1631,43.722615158,-79.306619676,320365.066,4842314.073
-894050,4153515,2017.0,2017.0,1994.0,TCHC,13,Toronto Centre,21 ST JOSEPH ST,5,35,2018-01-04,66,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,3.0,4.0,4.0,3.0,3.0,3.0,4.0,3.0,,S1321,43.665635432399995,-79.386388138,313946.94899999996,4835971.066000001
-894051,4153462,2017.0,2017.0,1970.0,TCHC,13,Toronto Centre,423 YONGE ST,20,340,2018-01-04,59,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,2.0,2.0,3.0,4.0,3.0,3.0,3.0,,3.0,4.0,3.0,S1328,43.6602721446,-79.3823063131,314276.997,4835375.715
-894052,4154215,2017.0,2017.0,1964.0,PRIVATE,7,Humber River-Black Creek,1746 WILSON AVE,3,10,2018-01-04,55,Evaluation needs to be conducted in 1 year,16,3.0,3.0,2.0,3.0,3.0,3.0,,2.0,,,3.0,3.0,2.0,3.0,2.0,3.0,3.0,3.0,3.0,,W0734,43.7197813249,-79.5153042212,303551.38399999996,4841980.352
-894053,4156620,2017.0,2017.0,1950.0,PRIVATE,16,Don Valley East,1 WINGREEN CRT,3,11,2018-01-04,64,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N1624,43.7388622795,-79.3416192822,,
-894054,4153229,2017.0,2017.0,1980.0,TCHC,11,University-Rosedale,18 DAVENPORT RD,16,128,2018-01-04,66,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1128,43.673115478999996,-79.388725935,313757.068,4836802.752
-894055,4154893,2017.0,2017.0,2001.0,PRIVATE,16,Don Valley East,17 BROOKBANKS DR,8,44,2018-01-04,88,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,4.0,,4.0,4.0,4.0,5.0,,5.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,,N1625,43.751291266,-79.332886312,318225.632,4845565.901000001
-894056,4154700,2017.0,2017.0,1980.0,TCHC,6,York Centre,4455 BATHURST ST,14,301,2018-01-04,66,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0624,43.758347457700005,-79.4386412229,309743.646,4846266.068
-894057,4154723,2017.0,2017.0,1972.0,TCHC,6,York Centre,6250 BATHURST ST,14,389,2018-01-04,72,Evaluation needs to be conducted in 2 years,19,3.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,4.0,,3.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,N0622,43.79163957,-79.446195585,309114.424,4849965.666
-894058,4155654,2017.0,2017.0,1962.0,TCHC,3,Etobicoke-Lakeshore,5005 DUNDAS ST W,19,255,2018-01-04,68,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,2.0,4.0,3.0,3.0,3.0,3.0,,3.0,4.0,5.0,3.0,3.0,4.0,3.0,4.0,4.0,,W0321,43.6460539737,-79.53072049149999,302305.928,4833790.048
-894059,4152794,2017.0,2017.0,1970.0,TCHC,20,Scarborough Southwest,140 ADANAC DR,16,306,2018-01-03,67,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,4.0,4.0,3.0,3.0,3.0,2.0,3.0,3.0,4.0,E2027,43.740664525,-79.226955071,326777.047,4844337.194
-894060,4286252,2017.0,2017.0,1980.0,TCHC,13,Toronto Centre,45 ST LAWRENCE ST,4,50,2018-01-03,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,S1336,,,316378.169,4834907.149
-894061,4270170,2017.0,2017.0,1972.0,PRIVATE,11,University-Rosedale,88 BLOOR ST E,25,336,2018-01-03,69,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,,4.0,3.0,4.0,4.0,3.0,3.0,,4.0,3.0,,S1129,43.67085484850001,-79.3850117463,314057.161,4836551.058999999
-894062,4152777,2017.0,2017.0,1979.0,TCHC,20,Scarborough Southwest,17 BRIMLEY RD,11,330,2018-01-03,69,Evaluation needs to be conducted in 2 years,19,4.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,5.0,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,E2026,43.7204681732,-79.2391056557,325805.62899999996,4842089.426
-894063,4153093,2018.0,2017.0,1995.0,SOCIAL HOUSING,9,Davenport,10 DORA AVE,8,134,2018-01-03,69,Evaluation needs to be conducted in 2 years,19,4.0,3.0,2.0,4.0,4.0,3.0,3.0,3.0,4.0,,4.0,2.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,S0933,43.655979748,-79.443829191,309314.939,4834894.606000001
-894064,4154923,2017.0,2017.0,1961.0,PRIVATE,16,Don Valley East,1244 YORK MILLS RD,4,58,2018-01-03,70,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,,,N1622,43.7608810853,-79.3292989011,318529.31,4846560.228
-894065,4154922,2017.0,2017.0,1961.0,PRIVATE,16,Don Valley East,1254 YORK MILLS RD,4,58,2018-01-03,66,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,3.0,3.0,3.0,2.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,2.0,3.0,,,N1622,43.7611151725,-79.3287829754,318570.798,4846586.319
-894066,4154917,2017.0,2017.0,1965.0,PRIVATE,16,Don Valley East,1300 YORK MILLS RD,8,112,2018-01-03,68,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,3.0,4.0,2.0,2.0,4.0,,3.0,3.0,4.0,4.0,3.0,3.0,3.0,4.0,4.0,,N1622,43.7619582699,-79.3238669393,318966.436,4846680.805
-894067,4153729,2017.0,2017.0,1984.0,TCHC,11,University-Rosedale,40 ASQUITH AVE,17,192,2018-01-03,67,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,2.0,4.0,4.0,3.0,3.0,3.0,,4.0,3.0,4.0,4.0,3.0,3.0,,4.0,3.0,,S1129,43.671910843999996,-79.38519572,314041.906,4836669.308999999
-894068,4153477,2017.0,2017.0,1927.0,PRIVATE,13,Toronto Centre,134 CARLTON ST,3,35,2018-01-03,61,Evaluation needs to be conducted in 1 year,14,3.0,3.0,4.0,3.0,,3.0,,3.0,,,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,S1326,43.663016123999995,-79.375476419,314827.13399999996,4835682.272
-894069,4153628,2017.0,2017.0,1988.0,SOCIAL HOUSING,14,Toronto-Danforth,15 PAPE AVE,5,77,2018-01-03,74,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,S1441,43.6594297929,-79.3361462421,318000.182,4835288.371
-894070,4285984,2017.0,2017.0,2009.0,TCHC,13,Toronto Centre,252 SACKVILLE ST,22,159,2018-01-03,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,,3.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,S1330,43.660500875,-79.36342677,315793.31899999996,4835425.091
-894071,4153565,2017.0,2017.0,2005.0,SOCIAL HOUSING,13,Toronto Centre,101 ONTARIO ST,8,52,2018-01-03,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,S1335,43.6545984289,-79.3667107495,315535.847,4834747.248
-894072,4153434,2017.0,2017.0,1978.0,TCHC,13,Toronto Centre,200 SHERBOURNE ST,7,174,2018-01-03,47,Building Audit,19,2.0,2.0,2.0,2.0,3.0,3.0,2.0,2.0,1.0,,1.0,3.0,2.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,S1332,43.657118655699996,-79.3709227315,315195.67100000003,4835026.678
-894073,4153568,2017.0,2017.0,1992.0,SOCIAL HOUSING,13,Toronto Centre,205 PARLIAMENT ST,6,16,2018-01-03,77,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,4.0,4.0,,3.0,4.0,,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,S1330,43.656443931000005,-79.364457056,315717.036,4834953.523
-894074,4167697,2017.0,2017.0,1980.0,TCHC,13,Toronto Centre,365 PARLIAMENT ST,6,72,2018-01-03,53,Evaluation needs to be conducted in 1 year,16,2.0,2.0,4.0,2.0,3.0,3.0,2.0,2.0,2.0,,2.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,S1330,,,315554.284,4835464.754
-894075,4156514,2017.0,2017.0,1970.0,PRIVATE,4,Parkdale-High Park,7 O'HARA AVE,4,16,2018-01-03,66,Evaluation needs to be conducted in 2 years,14,3.0,3.0,3.0,3.0,,3.0,,3.0,,,3.0,3.0,5.0,4.0,3.0,3.0,3.0,4.0,,,S0435,43.6416711241,-79.4340706425,310103.595,4833304.59
-894076,4153061,2017.0,2017.0,1970.0,PRIVATE,4,Parkdale-High Park,15 O'HARA AVE,4,32,2018-01-03,66,Evaluation needs to be conducted in 2 years,13,3.0,3.0,3.0,3.0,,3.0,,3.0,,,4.0,4.0,5.0,3.0,3.0,3.0,,3.0,,,S0435,43.641913610100005,-79.43409991729999,310101.212,4833331.527
-894077,4152829,2017.0,2017.0,1971.0,TCHC,24,Scarborough-Guildwood,50 TUXEDO CRT,15,378,2018-01-03,77,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,4.0,3.0,4.0,3.0,3.0,4.0,,4.0,4.0,4.0,4.0,3.0,4.0,5.0,4.0,3.0,5.0,E2422,43.7808585866,-79.2318241185,326370.75899999996,4848800.317
-894078,4152643,2017.0,2017.0,1954.0,PRIVATE,21,Scarborough Centre,1689 VICTORIA PARK AVE,4,54,2018-01-03,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,2.0,3.0,,3.0,,,4.0,3.0,2.0,3.0,3.0,3.0,3.0,5.0,3.0,,E2131,43.7354870834,-79.3066470427,320359.803,4843743.106000001
-894079,4286254,2017.0,2017.0,2014.0,TCHC,13,Toronto Centre,585 KING ST E,8,128,2018-01-03,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,S1336,,,316351.135,4834942.491
-894080,4288126,2017.0,2017.0,1920.0,SOCIAL HOUSING,4,Parkdale-High Park,1339 KING ST W,3,10,2018-01-03,78,Evaluation needs to be conducted in 2 years,13,4.0,4.0,4.0,4.0,,4.0,,3.0,,,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,,,S0437,43.6377164768,-79.43262819649999,310220.312,4832865.346
-894081,4153336,2017.0,2017.0,1983.0,TCHC,12,Toronto-St. Paul's,2 LAMBERTLODGE AVE,5,64,2018-01-03,60,Evaluation needs to be conducted in 1 year,18,4.0,3.0,3.0,3.0,3.0,4.0,3.0,2.0,3.0,,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,,S1234,43.673917543,-79.422657829,311020.734,4836888.76
-894082,4153101,2017.0,2017.0,2003.0,SOCIAL HOUSING,9,Davenport,973 LANSDOWNE AVE,3,20,2018-01-03,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,4.0,,3.0,,3.0,S0930,43.6661838696,-79.4459119791,309146.453,4836027.149
-894083,4153335,2017.0,2017.0,1980.0,TCHC,12,Toronto-St. Paul's,470 MELITA CRES,5,37,2018-01-03,68,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,4.0,3.0,4.0,,2.0,4.0,3.0,4.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,S1234,43.672253431,-79.426653288,310698.713,4836703.584
-894084,4154883,2017.0,2017.0,1979.0,PRIVATE,16,Don Valley East,1780 VICTORIA PARK AVE,10,83,2018-01-03,62,Evaluation needs to be conducted in 1 year,18,4.0,4.0,4.0,3.0,5.0,4.0,1.0,4.0,4.0,,1.0,3.0,4.0,1.0,3.0,3.0,3.0,1.0,4.0,,N1628,43.7381014953,-79.30868221029999,320195.19800000003,4844033.165
-894085,4153381,2017.0,2017.0,1983.0,TCHC,10,Spadina-Fort York,55 THE ESPLANADE,12,166,2018-01-03,73,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,3.0,5.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,S1038,43.6462124055,-79.37472760840001,314890.596,4833814.598
-894086,4154068,2017.0,2017.0,1979.0,SOCIAL HOUSING,19,Beaches-East York,850 O'CONNOR DR,3,109,2018-01-03,66,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,4.0,3.0,4.0,3.0,2.0,3.0,,4.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1922,43.7070607671,-79.31227990859999,319913.196,4840584.078
-894087,4155854,2018.0,2017.0,1970.0,TCHC,24,Scarborough-Guildwood,3939 LAWRENCE AVE E,3,31,2018-01-03,59,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,,4.0,,3.0,,,3.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,2.0,,E2431,43.763475641999996,-79.20530613220001,328497.269,4846918.613
-894088,4153386,2017.0,2017.0,1982.0,TCHC,13,Toronto Centre,171 FRONT ST E,3,61,2018-01-03,64,Evaluation needs to be conducted in 1 year,18,3.0,2.0,4.0,2.0,4.0,3.0,3.0,3.0,3.0,,2.0,4.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,,S1339,43.6499749234,-79.3684698144,315394.78,4834233.377
-894089,4152787,2017.0,2017.0,1965.0,PRIVATE,20,Scarborough Southwest,3101 EGLINTON AVE E,6,68,2018-01-03,66,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,E2027,43.7413605871,-79.2245308289,326972.31,4844414.202
-894090,4152790,2017.0,2017.0,1960.0,PRIVATE,20,Scarborough Southwest,3131 EGLINTON AVE E,7,82,2018-01-03,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,E2027,43.741715689799996,-79.2228457117,327107.906,4844454.096
-894091,4153624,2019.0,2017.0,1995.0,SOCIAL HOUSING,14,Toronto-Danforth,802 EASTERN AVE,3,16,2018-01-03,68,Evaluation needs to be conducted in 2 years,18,3.0,4.0,3.0,3.0,4.0,4.0,,3.0,4.0,,3.0,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,4.0,S1441,43.661637945900004,-79.3298622257,318506.50800000003,4835534.706
-894092,4153962,2017.0,2017.0,1941.0,TCHC,8,Eglinton-Lawrence,790 EGLINTON AVE W,4,57,2018-01-03,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0832,43.7016899071,-79.4236478607,310938.438,4839973.166999999
-894093,4152576,2017.0,2017.0,1970.0,TCHC,20,Scarborough Southwest,10 GLEN EVEREST RD,17,350,2018-01-03,59,Evaluation needs to be conducted in 1 year,19,2.0,3.0,3.0,3.0,3.0,4.0,2.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,E2035,43.69932241,-79.25477866899999,324549.538,4839737.34
-894094,4285401,2018.0,2017.0,1952.0,PRIVATE,20,Scarborough Southwest,6 FOLCROFT AVE,3,13,2018-01-03,61,Evaluation needs to be conducted in 1 year,16,2.0,3.0,3.0,3.0,2.0,3.0,,3.0,,3.0,2.0,3.0,4.0,4.0,3.0,3.0,,3.0,5.0,,E2035,43.700957687,-79.251492552,324829.314,4839934.355
-894095,4288175,2018.0,2017.0,1960.0,PRIVATE,4,Parkdale-High Park,2861-2863 DUNDAS ST W,3,16,2018-01-03,53,Evaluation needs to be conducted in 1 year,14,3.0,2.0,2.0,3.0,2.0,2.0,,3.0,,,3.0,3.0,4.0,2.0,3.0,3.0,,2.0,,,S0424,,,307610.618,4835918.416999999
-894096,4153696,2017.0,2017.0,1984.0,TCHC,19,Beaches-East York,11 NEWBOLD AVE,4,21,2018-01-03,74,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,,,3.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1934,43.674947931999995,-79.317603815,319491.665,4837016.428
-894097,4154061,2017.0,2017.0,1983.0,SOCIAL HOUSING,19,Beaches-East York,2701-2703 ST CLAIR AVE E,5,127,2018-01-02,78,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,S1927,43.705532569,-79.3114443458,319980.908,4840414.447
-894098,4155573,2017.0,2017.0,1972.0,TCHC,20,Scarborough Southwest,40 GORDONRIDGE PL,18,421,2018-01-02,61,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,E2024,43.727612646000004,-79.251278648,324819.267,4842872.647
-894099,4264085,2017.0,2017.0,1979.0,PRIVATE,13,Toronto Centre,25 WOOD ST,26,284,2018-01-02,70,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,4.0,3.0,4.0,4.0,5.0,3.0,3.0,4.0,2.0,4.0,3.0,3.0,S1326,43.6622523376,-79.381868515,314311.982,4835595.749
-894100,4153479,2017.0,2017.0,1993.0,TCHC,13,Toronto Centre,95 WOOD ST,8,72,2018-01-02,73,Evaluation needs to be conducted in 2 years,20,4.0,3.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,S1326,43.662785659799994,-79.378610577,314574.658,4835655.357
-894101,4155614,2019.0,2017.0,1991.0,SOCIAL HOUSING,19,Beaches-East York,1577 DANFORTH AVE,6,126,2018-01-02,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,3.0,4.0,5.0,4.0,,3.0,3.0,5.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,S1931,43.6831806444,-79.32304617930001,319051.152,4837929.136
-894102,4152590,2017.0,2017.0,1978.0,TCHC,20,Scarborough Southwest,3330 DANFORTH AVE,10,194,2018-01-02,66,Evaluation needs to be conducted in 2 years,19,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,4.0,5.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,E2028,43.6937304177,-79.2786118075,322630.485,4839109.71
-894103,4288751,,2017.0,1918.0,PRIVATE,12,Toronto-St. Paul's,1383 BATHURST ST,3,30,2018-01-02,54,Evaluation needs to be conducted in 1 year,13,3.0,2.0,3.0,2.0,,2.0,,3.0,,,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,S1236,43.6807035895,-79.4169896238,311477.346,4837642.107
-894104,4152854,2017.0,2017.0,1975.0,TCHC,22,Scarborough-Agincourt,2008 PHARMACY AVE,13,293,2018-01-02,77,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,3.0,5.0,5.0,3.0,3.0,4.0,4.0,3.0,4.0,E2225,43.776693031,-79.319134202,319343.731,4848319.569
-894105,4155351,2017.0,2017.0,1995.0,SOCIAL HOUSING,2,Etobicoke Centre,1447 ROYAL YORK RD,4,108,2018-01-02,80,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,W0224,43.6865275325,-79.5276550192,302554.88300000003,4838286.392
-894106,4155827,2018.0,2017.0,1944.0,PRIVATE,4,Parkdale-High Park,2559 BLOOR ST W,4,27,2018-01-02,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,,3.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,4.0,3.0,3.0,2.0,,S0425,43.647685867,-79.490964697,305519.44899999996,4833990.2530000005
-894107,4155295,2017.0,2017.0,1927.0,PRIVATE,3,Etobicoke-Lakeshore,2651 BLOOR ST W,4,34,2018-01-02,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,,,W0327,43.649230274,-79.49533657100001,305160.274,4834143.367
-894108,4257261,2017.0,2017.0,1979.0,PRIVATE,13,Toronto Centre,20 CARLTON ST,16,216,2018-01-02,72,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,2.0,,4.0,3.0,3.0,4.0,,4.0,4.0,5.0,3.0,3.0,4.0,4.0,4.0,3.0,3.0,S1326,43.661630396999996,-79.3815767552,314335.61100000003,4835526.693
-894109,4288772,2017.0,2017.0,1996.0,SOCIAL HOUSING,14,Toronto-Danforth,55 PAPE AVE,5,60,2018-01-02,75,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,4.0,2.0,4.0,4.0,,3.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,S1441,43.660465246,-79.33700731399999,317932.285,4835415.853999999
-894110,4153646,2017.0,2017.0,1981.0,TCHC,14,Toronto-Danforth,369 PAPE AVE,8,139,2018-01-02,69,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,4.0,,3.0,3.0,3.0,4.0,3.0,4.0,4.0,4.0,3.0,,S1430,43.6698117311,-79.3407107259,317629.833,4836441.05
-894111,4155277,2018.0,2017.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,323 PARK LAWN RD,5,48,2018-01-02,60,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,,2.0,3.0,3.0,3.0,3.0,5.0,3.0,2.0,3.0,3.0,3.0,3.0,,W0327,43.637199541099996,-79.493365223,305319.61,4832805.873
-894112,4153567,2017.0,2017.0,1985.0,TCHC,13,Toronto Centre,123 SACKVILLE ST,3,20,2018-01-02,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,3.0,,3.0,3.0,4.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1330,43.6570898108,-79.3615276679,315953.471,4835024.718
-894113,4155446,2017.0,2017.0,1977.0,SOCIAL HOUSING,1,Etobicoke North,2314 ISLINGTON AVE,11,194,2018-01-02,64,Evaluation needs to be conducted in 1 year,20,3.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,W0130,43.716291217,-79.556254054,300251.286,4841595.1
-894114,4155938,2017.0,2017.0,1964.0,PRIVATE,21,Scarborough Centre,10 TRUDELLE ST,6,84,2018-01-02,71,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,4.0,3.0,3.0,3.0,2.0,4.0,,4.0,4.0,5.0,3.0,3.0,4.0,4.0,4.0,2.0,,E2135,43.7402066562,-79.24491741920001,325330.686,4844280.778
-894115,4155935,2017.0,2017.0,1964.0,PRIVATE,21,Scarborough Centre,20 TRUDELLE ST,6,84,2018-01-02,73,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,4.0,4.0,4.0,3.0,2.0,5.0,,4.0,4.0,5.0,3.0,3.0,3.0,4.0,4.0,2.0,,E2135,43.7404592839,-79.2437182596,325427.189,4844309.14
-894116,4156070,2017.0,2017.0,1992.0,SOCIAL HOUSING,1,Etobicoke North,2715 ISLINGTON AVE,5,80,2018-01-02,72,Evaluation needs to be conducted in 2 years,20,4.0,3.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,3.0,5.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,W0126,43.741665101,-79.566395335,299387.542,4844393.19
-894117,4154401,2017.0,2017.0,1950.0,PRIVATE,6,York Centre,2217 JANE ST,3,12,2018-01-02,57,Evaluation needs to be conducted in 1 year,15,3.0,2.0,2.0,3.0,3.0,3.0,,2.0,,,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N0627,43.7233585034,-79.508865507,304070.225,4842377.656
-894118,4152745,2017.0,2017.0,1960.0,PRIVATE,24,Scarborough-Guildwood,45 GREENBRAE CRCT,6,112,2018-01-02,63,Evaluation needs to be conducted in 1 year,18,4.0,4.0,5.0,3.0,3.0,5.0,3.0,1.0,3.0,,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,E2425,43.759429906,-79.230999363,326447.571,4846406.327
-894119,4152815,2017.0,2017.0,1977.0,TCHC,24,Scarborough-Guildwood,65 GREENCREST CRCT,13,400,2018-01-02,82,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,,4.0,2.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,5.0,E2430,43.7599953268,-79.22179743939999,327185.56,4846485.164
-894120,4156726,2017.0,2017.0,2012.0,SOCIAL HOUSING,13,Toronto Centre,40 OAK ST,4,87,2018-01-02,72,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,3.0,4.0,3.0,4.0,3.0,4.0,,3.0,4.0,5.0,4.0,3.0,4.0,,3.0,3.0,3.0,S1330,,,315649.499,4835505.392
-894121,4286044,2017.0,2017.0,1969.0,TCHC,19,Beaches-East York,444 EAST LUMSDEN,25,183,2018-01-02,56,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,2.0,3.0,4.0,2.0,1.0,3.0,,3.0,3.0,1.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,S1930,43.695391787,-79.303315109,320711.637,4839312.69
-894122,4155783,2017.0,2017.0,1955.0,PRIVATE,8,Eglinton-Lawrence,101 MARLEE AVE,6,58,2018-01-02,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,4.0,4.0,,3.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0832,43.701461008,-79.440472942,309582.088,4839947.551
-894123,4152758,2017.0,2017.0,1965.0,PRIVATE,21,Scarborough Centre,1155 MIDLAND AVE,5,115,2018-01-02,60,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,4.0,2.0,3.0,3.0,3.0,3.0,3.0,,E2134,43.7457790355,-79.2618378505,323966.01300000004,4844895.79
-894124,4167694,2017.0,2017.0,1980.0,TCHC,13,Toronto Centre,325 GERRARD ST E,6,72,2018-01-02,53,Evaluation needs to be conducted in 1 year,17,2.0,3.0,2.0,2.0,3.0,3.0,3.0,2.0,3.0,,2.0,3.0,3.0,3.0,3.0,3.0,,3.0,2.0,,S1330,43.662101254,-79.36550611199999,315631.42100000003,4835581.8889999995
-894125,4167701,2017.0,2017.0,1980.0,TCHC,13,Toronto Centre,417 GERRARD ST E,3,12,2018-01-02,57,Evaluation needs to be conducted in 1 year,15,3.0,2.0,2.0,2.0,3.0,3.0,,3.0,,,2.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1330,43.6620246346,-79.3620805585,315907.982,4835572.868
-894126,4153644,2017.0,2017.0,1996.0,SOCIAL HOUSING,14,Toronto-Danforth,1119 GERRARD ST E,5,29,2018-01-02,76,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,2.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,S1438,43.669541986999995,-79.33319093600001,318246.299,4836419.586
-894127,4152737,2017.0,2017.0,1960.0,TCHC,21,Scarborough Centre,2950 LAWRENCE AVE E,6,200,2018-01-02,66,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,3.0,3.0,2.0,2.0,2.0,,3.0,3.0,3.0,4.0,4.0,4.0,5.0,4.0,3.0,3.0,E2130,43.75523277,-79.2505927043,324868.554,4845948.7
-894128,4152739,2017.0,2017.0,1960.0,PRIVATE,24,Scarborough-Guildwood,3210 LAWRENCE AVE E,6,48,2018-01-02,65,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,2.0,3.0,,3.0,2.0,,2.0,2.0,5.0,4.0,3.0,4.0,5.0,4.0,3.0,,E2424,43.756840819,-79.24196517600001,325562.476,4846130.432
-894129,4153422,2017.0,2017.0,1983.0,TCHC,13,Toronto Centre,25 MUTUAL ST,11,97,2018-01-02,60,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,2.0,3.0,3.0,2.0,3.0,3.0,,3.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,S1332,43.654312876999995,-79.374349898,314919.44399999996,4834715.511
-894130,4153454,2017.0,2017.0,1985.0,TCHC,13,Toronto Centre,145 MUTUAL ST,15,145,2018-01-02,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,4.0,,3.0,3.0,4.0,3.0,2.0,2.0,3.0,4.0,3.0,,S1328,43.659102374899994,-79.3763412035,314758.305,4835246.416999999
-894131,4152595,2017.0,2017.0,1964.0,TCHC,20,Scarborough Southwest,40 FIRVALLEY CRT,15,168,2018-01-02,65,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,E2028,43.703580346,-79.279521109,322554.003,4840204.75
-894132,4153963,2017.0,2017.0,1941.0,TCHC,8,Eglinton-Lawrence,800 EGLINTON AVE W,4,36,2018-01-02,62,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,2.0,3.0,3.0,4.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,,N0832,43.7014745383,-79.4245394908,310866.596,4839949.174
-894133,4153964,2017.0,2017.0,1941.0,TCHC,8,Eglinton-Lawrence,840 EGLINTON AVE W,4,40,2018-01-02,62,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,2.0,,N0832,43.7014864975,-79.4251602874,310816.559,4839950.4569999995
-894134,4155366,2017.0,2017.0,1968.0,PRIVATE,2,Etobicoke Centre,311 DIXON RD,16,178,2018-01-02,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0222,43.6952084517,-79.5537109023,300454.932,4839251.808
-894135,4155305,2017.0,2017.0,1979.0,TCHC,3,Etobicoke-Lakeshore,41 MABELLE AVE,19,350,2017-12-29,68,Evaluation needs to be conducted in 2 years,19,4.0,3.0,3.0,4.0,4.0,3.0,4.0,3.0,4.0,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,W0321,43.6448379761,-79.5277127601,302548.527,4833654.887
-894136,4285976,2017.0,2017.0,1992.0,TCHC,9,Davenport,55 RANKIN CRES,9,176,2017-12-29,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,S0929,43.658277925,-79.446387674,309108.405,4835149.791999999
-894137,4274218,2017.0,2017.0,1962.0,TCHC,3,Etobicoke-Lakeshore,57 MABELLE AVE,19,255,2017-12-29,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,2.0,3.0,3.0,3.0,4.0,3.0,,3.0,4.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,,W0321,43.64631051600001,-79.530501016,302329.86,4833829.218
-894138,4154940,2017.0,2017.0,1967.0,PRIVATE,12,Toronto-St. Paul's,111 RAGLAN AVE,23,175,2017-12-29,70,Evaluation needs to be conducted in 2 years,18,5.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,4.0,,3.0,4.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,,S1229,43.686628503,-79.4207223391,311175.75899999996,4838300.092
-894139,4155840,2017.0,2017.0,1966.0,SOCIAL HOUSING,11,University-Rosedale,300 SHAW ST,3,32,2017-12-29,60,Evaluation needs to be conducted in 1 year,20,3.0,3.0,3.0,3.0,3.0,3.0,2.0,4.0,3.0,3.0,3.0,2.0,5.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,S1141,43.65047076729999,-79.4188998818,311326.66,4834283.206
-894140,4154359,2017.0,2017.0,1954.0,PRIVATE,5,York South-Weston,2622 KEELE ST,3,11,2017-12-29,67,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,,,4.0,2.0,4.0,4.0,3.0,4.0,,4.0,3.0,,W0522,43.7197822126,-79.4809670632,306318.07899999997,4841980.465
-894141,4152690,2017.0,2017.0,1958.0,PRIVATE,20,Scarborough Southwest,709 KENNEDY RD,6,79,2017-12-29,65,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,4.0,3.0,4.0,,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,E2023,43.728137438699996,-79.2656668508,323663.167,4842935.041
-894142,4152952,2017.0,2017.0,1963.0,PRIVATE,4,Parkdale-High Park,115 TYNDALL AVE,10,108,2017-12-29,62,Evaluation needs to be conducted in 1 year,18,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,3.0,5.0,3.0,2.0,3.0,3.0,3.0,2.0,,S0437,43.637071376899996,-79.4279645858,310596.655,4832793.975
-894143,4152688,2017.0,2017.0,1989.0,TCHC,20,Scarborough Southwest,120 TOWN HAVEN PL,8,150,2017-12-29,71,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,,3.0,4.0,5.0,3.0,3.0,3.0,,4.0,3.0,4.0,E2024,43.7332452174,-79.2592760831,324176.346,4843503.962
-894144,4153899,2017.0,2017.0,1935.0,PRIVATE,12,Toronto-St. Paul's,448 SPADINA RD,4,32,2017-12-29,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,2.0,,S1230,43.689301533599995,-79.4133235428,311771.976,4838597.666999999
-894145,4153898,2017.0,2017.0,1962.0,PRIVATE,12,Toronto-St. Paul's,464 SPADINA RD,4,25,2017-12-29,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1230,43.6896667969,-79.4134939158,311758.202,4838638.233
-894146,4153408,2017.0,2017.0,1968.0,TCHC,10,Spadina-Fort York,91 AUGUSTA AVE,14,257,2017-12-29,74,Evaluation needs to be conducted in 2 years,17,3.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,,4.0,3.0,5.0,4.0,3.0,4.0,,4.0,3.0,,S1023,43.6507210729,-79.400397963,312819.071,4834312.641
-894147,4269230,2017.0,2017.0,1959.0,PRIVATE,20,Scarborough Southwest,508 DANFORTH RD,3,24,2017-12-29,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,E2030,43.7092676432,-79.2670048703,323561.223,4840838.393
-894148,4154390,2017.0,2017.0,1971.0,PRIVATE,6,York Centre,1491 WILSON AVE,4,40,2017-12-29,64,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,3.0,3.0,4.0,4.0,3.0,3.0,3.0,4.0,3.0,,N0631,43.7210593551,-79.5047297893,304403.425,4842122.21
-894149,4155304,2017.0,2017.0,1979.0,TCHC,3,Etobicoke-Lakeshore,49 MABELLE AVE,13,128,2017-12-29,62,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,2.0,3.0,3.0,2.0,4.0,3.0,,3.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,W0321,43.6449745319,-79.52858579229999,302478.099,4833670.075
-894150,4154958,2017.0,2017.0,1950.0,PRIVATE,12,Toronto-St. Paul's,125 VAUGHAN RD,4,32,2017-12-28,62,Evaluation needs to be conducted in 1 year,13,3.0,3.0,3.0,3.0,,2.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,S1229,43.6846976154,-79.42121421520001,311136.299,4838085.525
-894151,4153397,2017.0,2017.0,1991.0,TCHC,10,Spadina-Fort York,248 SIMCOE ST,12,53,2017-12-28,76,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,3.0,,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,4.0,,S1024,43.6539203787,-79.3892195078,313720.374,4834669.271000001
-894152,4154873,2017.0,2017.0,1962.0,PRIVATE,16,Don Valley East,11 ECCLESTON DR,4,78,2017-12-28,80,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,3.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,,,N1628,43.727024237200006,-79.315596986,319640.935,4842801.313
-894153,4153900,2017.0,2017.0,1957.0,PRIVATE,12,Toronto-St. Paul's,340 LONSDALE RD,6,36,2017-12-28,59,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,2.0,,4.0,2.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,,S1230,43.688729507299996,-79.41361447979999,311748.58,4838534.089
-894154,4154888,2017.0,2017.0,1958.0,PRIVATE,16,Don Valley East,50 ECCLESTON DR,4,60,2017-12-28,88,Evaluation needs to be conducted in 3 years,16,5.0,4.0,4.0,4.0,5.0,5.0,,4.0,5.0,,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,,,N1628,43.7275858638,-79.3190299977,319364.219,4842863.106000001
-894155,4155352,2017.0,2017.0,1953.0,PRIVATE,1,Etobicoke North,17 RIVERVIEW HTS,4,14,2017-12-28,59,Evaluation needs to be conducted in 1 year,16,3.0,3.0,2.0,3.0,2.0,3.0,,3.0,,,3.0,2.0,5.0,2.0,3.0,3.0,3.0,4.0,3.0,,W0136,43.70159907399999,-79.52750608699999,302574.77,4839958.836
-894156,4155409,2017.0,2017.0,1968.0,PRIVATE,1,Etobicoke North,20 REDGRAVE DR,16,178,2017-12-28,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0137,43.6836537858,-79.5686665938,299248.36,4837968.911
-894157,4153958,2017.0,2017.0,1962.0,PRIVATE,8,Eglinton-Lawrence,15 SHALLMAR BLVD,7,78,2017-12-28,64,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,4.0,,4.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0832,43.703946443999996,-79.424475355,310871.253,4840224.76
-894158,4153419,2017.0,2017.0,1979.0,TCHC,11,University-Rosedale,34 OXFORD ST,5,189,2017-12-28,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,,3.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,S1143,43.656896921000005,-79.40179055,312705.645,4834999.574
-894159,4153050,2017.0,2017.0,1967.0,PRIVATE,4,Parkdale-High Park,244 RONCESVALLES AVE,3,22,2017-12-28,59,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,2.0,2.0,3.0,,3.0,,3.0,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S0432,43.6458748737,-79.4493623432,308869.575,4833770.791999999
-894160,4153049,2017.0,2017.0,1969.0,PRIVATE,4,Parkdale-High Park,246 RONCESVALLES AVE,3,22,2017-12-28,59,Evaluation needs to be conducted in 1 year,15,3.0,2.0,3.0,2.0,3.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S0432,43.64608157479999,-79.4494284901,308864.225,4833793.7530000005
-894161,4154956,2017.0,2017.0,1920.0,PRIVATE,12,Toronto-St. Paul's,101 VAUGHAN RD,4,32,2017-12-28,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,,3.0,4.0,2.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1229,43.6840547809,-79.4209132292,311160.63,4838014.1280000005
-894162,4153648,2017.0,2017.0,1989.0,TCHC,14,Toronto-Danforth,39 HARCOURT AVE,3,15,2017-12-28,81,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,5.0,,,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,,,S1429,43.677145636800006,-79.34450560149999,317322.303,4837255.226
-894163,4154878,2017.0,2017.0,1958.0,PRIVATE,16,Don Valley East,1700 VICTORIA PARK AVE,5,54,2017-12-28,76,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,4.0,,4.0,3.0,5.0,4.0,4.0,3.0,4.0,3.0,,,N1628,43.734305321099995,-79.307065705,320326.385,4843611.746
-894164,4156581,2017.0,2017.0,1968.0,PRIVATE,18,Willowdale,6061 YONGE ST,19,304,2017-12-28,71,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,,4.0,4.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,N1823,43.7902546466,-79.4177286327,311401.57399999996,4849805.1
-894165,4286259,2017.0,2017.0,1980.0,TCHC,10,Spadina-Fort York,127 ST PATRICK ST,12,54,2017-12-28,80,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S1024,43.653809036999995,-79.38976073,313653.128,4834726.461
-894166,4153378,2017.0,2017.0,1983.0,TCHC,10,Spadina-Fort York,575 ADELAIDE ST W,11,150,2017-12-28,63,Evaluation needs to be conducted in 1 year,20,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,S1028,43.6445845561,-79.40368311,312554.891,4833630.518999999
-894167,4152610,2017.0,2017.0,1969.0,PRIVATE,20,Scarborough Southwest,570 BIRCHMOUNT RD,10,112,2017-12-28,60,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,2.0,,3.0,,2.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,E2029,43.7133504142,-79.2715314234,323195.19399999996,4841290.963
-894168,4156583,2017.0,2017.0,1968.0,PRIVATE,2,Etobicoke Centre,60 CALLOWHILL DR,12,141,2017-12-28,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,,W0221,43.682156045,-79.5643051616,299650.165,4837805.9
-894169,4155353,2017.0,2017.0,1994.0,TCHC,2,Etobicoke Centre,1025 SCARLETT RD,11,128,2017-12-28,57,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,2.0,2.0,3.0,3.0,2.0,,2.0,3.0,2.0,3.0,3.0,4.0,,3.0,3.0,3.0,W0224,43.7006762308,-79.5253118023,302744.32399999996,4839858.199
-894170,4153621,2017.0,2017.0,1995.0,SOCIAL HOUSING,14,Toronto-Danforth,137 SEARS ST,3,17,2017-12-28,76,Evaluation needs to be conducted in 2 years,16,3.0,4.0,3.0,4.0,4.0,4.0,,3.0,,,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,,4.0,S1442,43.66303924899999,-79.32501186,318897.114,4835692.138
-894171,4153704,2017.0,2017.0,1993.0,TCHC,19,Beaches-East York,7 COATSWORTH CRES,6,48,2017-12-28,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,S1931,43.6797322246,-79.32170592060001,319160.021,4837546.268999999
-894172,4153608,2017.0,2017.0,1972.0,TCHC,14,Toronto-Danforth,717 BROADVIEW AVE,8,69,2017-12-28,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,S1428,43.6751635121,-79.3574685355,316277.466,4837033.163
-894173,4155407,2017.0,2017.0,1968.0,PRIVATE,2,Etobicoke Centre,695 MARTIN GROVE RD,12,142,2017-12-28,68,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,3.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,,W0221,43.682026488999995,-79.565970029,299462.268,4837680.56
-894174,4153404,2017.0,2017.0,1923.0,TCHC,10,Spadina-Fort York,11 SULLIVAN ST,3,17,2017-12-27,67,Evaluation needs to be conducted in 2 years,14,3.0,4.0,4.0,3.0,3.0,4.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,S1024,43.6514274301,-79.3935632279,313370.31899999996,4834391.822
-894175,4154838,2019.0,2017.0,1958.0,PRIVATE,17,Don Valley North,688 SHEPPARD AVE E,4,35,2017-12-27,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N1725,43.769190713,-79.379327637,314499.417,4847477.313
-894176,4288768,2017.0,2017.0,1967.0,SOCIAL HOUSING,14,Toronto-Danforth,444 LOGAN AVE,22,159,2017-12-27,74,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,S1434,43.665362780500004,-79.3448533882,317296.687,4835946.155
-894177,4155581,2017.0,2017.0,1971.0,TCHC,24,Scarborough-Guildwood,90 MORNELLE CRT,13,198,2017-12-27,65,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,2.0,3.0,3.0,2.0,3.0,3.0,,3.0,4.0,5.0,2.0,4.0,4.0,3.0,3.0,4.0,4.0,E2423,43.787815708000004,-79.196116635,329241.848,4849584.106000001
-894178,4155582,2017.0,2017.0,1972.0,TCHC,25,Scarborough-Rouge Park,225 MORNINGSIDE AVE,10,99,2017-12-27,73,Evaluation needs to be conducted in 2 years,19,4.0,3.0,3.0,4.0,4.0,5.0,4.0,2.0,4.0,,4.0,5.0,2.0,3.0,4.0,4.0,4.0,4.0,2.0,4.0,E2537,43.7671070711,-79.1850076952,330144.859,4847285.775
-894179,4153406,2017.0,2017.0,1993.0,TCHC,10,Spadina-Fort York,15 LARCH ST,3,20,2017-12-27,73,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,3.0,3.0,4.0,,3.0,,,3.0,4.0,5.0,4.0,3.0,4.0,,4.0,3.0,,S1024,43.652655724,-79.39647886,313134.686,4834528.914
-894180,4154847,2017.0,2017.0,1979.0,TCHC,17,Don Valley North,1700 FINCH AVE E,18,275,2017-12-27,69,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,,4.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,N1722,43.793883908999995,-79.351291535,316751.73600000003,4850224.274
-894181,4153407,2017.0,2017.0,1993.0,TCHC,10,Spadina-Fort York,76 GRANGE AVE,3,11,2017-12-27,76,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,4.0,3.0,4.0,,3.0,,,3.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,S1024,43.652192629,-79.39678805300001,313100.214,4834501.899
-894182,4153683,2017.0,2017.0,1955.0,TCHC,19,Beaches-East York,98 ELMER AVE,4,36,2017-12-27,70,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,3.0,3.0,2.0,,4.0,,,4.0,3.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,,S1938,43.67234454850001,-79.30515721409999,320496.219,4836728.4969999995
-894183,4290884,2018.0,2017.0,1960.0,PRIVATE,6,York Centre,5 ROSSEAU RD,3,11,2017-12-27,51,Evaluation needs to be conducted in 1 year,16,2.0,3.0,2.0,2.0,2.0,3.0,,3.0,,2.0,2.0,2.0,4.0,3.0,3.0,3.0,,2.0,3.0,,N0629,43.741804201099995,-79.4363369566,309912.311,4844428.739
-894184,4154813,2017.0,2017.0,1967.0,PRIVATE,17,Don Valley North,110 PARKWAY FOREST DR,17,216,2017-12-27,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,,4.0,3.0,5.0,4.0,4.0,3.0,3.0,5.0,3.0,5.0,N1730,43.774135898900006,-79.3429451779,317427.784,4848030.635
-894185,4154808,2017.0,2017.0,1974.0,PRIVATE,17,Don Valley North,75 HAVENBROOK BLVD,14,201,2017-12-27,75,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,2.0,3.0,N1730,43.7682616864,-79.348101055,317013.924,4847377.263
-894186,4154809,2017.0,2017.0,1967.0,PRIVATE,17,Don Valley North,95 HAVENBROOK BLVD,14,198,2017-12-27,73,Evaluation needs to be conducted in 2 years,19,4.0,3.0,3.0,3.0,2.0,4.0,3.0,2.0,4.0,,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,3.0,N1730,43.768813945699996,-79.3473075283,317077.69899999996,4847438.733
-894187,4153663,2017.0,2017.0,1928.0,TCHC,19,Beaches-East York,42 HUBBARD BLVD,3,27,2017-12-27,87,Evaluation needs to be conducted in 3 years,17,5.0,4.0,4.0,4.0,5.0,5.0,,4.0,5.0,,5.0,5.0,5.0,3.0,4.0,4.0,4.0,3.0,,5.0,S1942,43.66853304,-79.29290251229999,321485.456,4836307.452
-894188,4153380,2020.0,2017.0,1991.0,SOCIAL HOUSING,10,Spadina-Fort York,163 PORTLAND ST,4,46,2017-12-27,71,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,3.0,4.0,4.0,3.0,4.0,3.0,,3.0,3.0,4.0,4.0,4.0,4.0,,4.0,,4.0,S1029,43.647261855,-79.400907613,312778.179,4833929.199
-894189,4154817,2017.0,2017.0,1972.0,PRIVATE,17,Don Valley North,3000 VICTORIA PARK AVE,6,228,2017-12-27,73,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,2.0,4.0,4.0,3.0,4.0,3.0,,2.0,4.0,5.0,4.0,3.0,4.0,3.0,4.0,2.0,4.0,N1728,43.7923267755,-79.3320509885,318300.734,4850053.318
-894190,4275806,2017.0,2017.0,1960.0,PRIVATE,6,York Centre,2 WYCOMBE RD,3,40,2017-12-27,56,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,2.0,2.0,3.0,,2.0,2.0,3.0,2.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N0627,43.743000226599996,-79.48713540520001,305820.727,4844559.755
-894191,4275811,2017.0,2017.0,1960.0,PRIVATE,6,York Centre,10 WYCOMBE RD,3,40,2017-12-27,53,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,2.0,3.0,2.0,2.0,2.0,3.0,2.0,3.0,4.0,3.0,3.0,2.0,,3.0,3.0,,N0627,43.7432824572,-79.4876757538,305808.244,4844545.228
-894192,4152940,2017.0,2017.0,1929.0,PRIVATE,4,Parkdale-High Park,2010 BLOOR ST W,3,24,2017-12-27,66,Evaluation needs to be conducted in 2 years,13,3.0,3.0,3.0,3.0,,3.0,,3.0,,,3.0,3.0,5.0,3.0,4.0,4.0,,3.0,,,S0428,43.6528582596,-79.4698640638,307215.325,4834545.847
-894193,4152916,2017.0,2017.0,1935.0,PRIVATE,4,Parkdale-High Park,2526 BLOOR ST W,4,19,2017-12-27,59,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,2.0,3.0,,4.0,,,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,S0430,43.648016588999994,-79.48963831,305608.67100000003,4834006.596
-894194,4153702,2017.0,2017.0,2002.0,SOCIAL HOUSING,19,Beaches-East York,425 COXWELL AVE,3,30,2017-12-27,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1934,43.67748516899999,-79.320862391,319224.36600000004,4837313.075
-894195,4152939,2017.0,2017.0,1940.0,PRIVATE,4,Parkdale-High Park,1950 BLOOR ST W,4,16,2017-12-27,69,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,4.0,3.0,3.0,,4.0,,,4.0,3.0,5.0,3.0,4.0,4.0,,3.0,3.0,,S0428,43.653332449,-79.46745024399999,307406.915,4834598.1
-894196,4155855,2017.0,2017.0,2012.0,PRIVATE,3,Etobicoke-Lakeshore,3 SUMMERLAND TER,26,283,2017-12-27,83,Evaluation needs to be conducted in 2 years,18,5.0,5.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,4.0,5.0,5.0,3.0,4.0,4.0,4.0,4.0,,W0321,43.643171260699994,-79.532364963,302151.067,4833473.587
-894197,4155389,2017.0,2017.0,1970.0,PRIVATE,2,Etobicoke Centre,361 THE WEST MALL,16,141,2017-12-22,52,Evaluation needs to be conducted in 1 year,18,3.0,2.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,,2.0,2.0,1.0,3.0,3.0,3.0,2.0,2.0,2.0,,W0233,43.64088681,-79.564713058,299564.642,4833089.72
-894198,4155521,2019.0,2017.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,115 EIGHTH ST,3,10,2017-12-22,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,,4.0,3.0,,W0335,43.5997458878,-79.5057809161,304317.63899999997,4828644.958000001
-894199,4152874,2017.0,2017.0,1960.0,PRIVATE,22,Scarborough-Agincourt,3875 SHEPPARD AVE E,14,154,2017-12-22,68,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,4.0,,E2232,43.78254283689999,-79.28975127529999,321707.615,4848974.0819999995
-894200,4154362,,2017.0,1956.0,PRIVATE,5,York South-Weston,2616 KEELE ST,3,11,2017-12-22,66,Evaluation needs to be conducted in 2 years,16,4.0,4.0,2.0,3.0,3.0,4.0,,3.0,,3.0,4.0,2.0,5.0,3.0,3.0,4.0,,3.0,3.0,,W0522,43.719032062,-79.4807128716,306338.57899999997,4841897.134
-894201,4152872,2017.0,2017.0,1975.0,TCHC,22,Scarborough-Agincourt,3825 SHEPPARD AVE E,13,300,2017-12-22,67,Evaluation needs to be conducted in 2 years,19,3.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,4.0,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,E2232,43.782025088199994,-79.291608709,321558.25899999996,4848916.183999999
-894202,4154361,,2017.0,1955.0,PRIVATE,5,York South-Weston,2618 KEELE ST,3,11,2017-12-22,68,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,3.0,3.0,4.0,,3.0,,3.0,4.0,2.0,5.0,3.0,3.0,4.0,,3.0,3.0,,W0522,43.719344175299995,-79.48077805449999,306333.31899999996,4841931.806
-894203,4287729,2018.0,2017.0,1952.0,PRIVATE,11,University-Rosedale,470 SUMMERHILL AVE,3,17,2017-12-21,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,2.0,3.0,,3.0,,,3.0,2.0,5.0,4.0,3.0,4.0,,3.0,2.0,,S1130,43.686627439,-79.374759908,314881.012,4838305.51
-894204,4153856,2017.0,2017.0,1965.0,PRIVATE,15,Don Valley West,172 SHERWOOD AVE,3,18,2017-12-21,66,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,,4.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,N1526,43.7155061026,-79.39124146340001,313548.335,4841511.039
-894205,4155201,2017.0,2017.0,1965.0,PRIVATE,4,Parkdale-High Park,4075 OLD DUNDAS ST,7,75,2017-12-21,66,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,3.0,,3.0,3.0,5.0,3.0,4.0,4.0,,3.0,3.0,,S0421,43.662438171000005,-79.50353882600001,304498.602,4835610.688999999
-894206,4153760,2017.0,2017.0,1993.0,TCHC,12,Toronto-St. Paul's,384 MOUNT PLEASANT RD,8,155,2017-12-21,72,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,,4.0,4.0,5.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,S1233,43.698358176099994,-79.38695482600001,313896.36199999996,4839606.393999999
-894207,4153807,2017.0,2017.0,1983.0,TCHC,15,Don Valley West,801 MOUNT PLEASANT RD,10,185,2017-12-21,68,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,4.0,3.0,3.0,4.0,2.0,4.0,,3.0,4.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,N1537,43.7088453,-79.3898544426,313661.101,4840771.193
-894208,4154309,2017.0,2017.0,1958.0,PRIVATE,5,York South-Weston,1252 LAWRENCE AVE W,3,10,2017-12-21,74,Evaluation needs to be conducted in 2 years,14,4.0,4.0,3.0,3.0,,4.0,,4.0,,,4.0,2.0,5.0,4.0,4.0,4.0,,4.0,3.0,,W0523,43.7108573649,-79.4707253661,307143.63300000003,4840989.2
-894209,4289265,,2017.0,,SOCIAL HOUSING,11,University-Rosedale,150 ELIZABETH ST,17,250,2017-12-21,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,S1145,43.656497402,-79.385911624,313986.547,4834956.89
-894210,4153444,2017.0,2017.0,1986.0,TCHC,13,Toronto Centre,291 GEORGE ST,5,132,2017-12-21,69,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,4.0,2.0,4.0,3.0,4.0,3.0,,3.0,3.0,4.0,4.0,4.0,4.0,,4.0,2.0,,S1328,43.65837995,-79.373485597,314988.482,4835167.438999999
-894211,4153951,2017.0,2017.0,1957.0,PRIVATE,8,Eglinton-Lawrence,564 EGLINTON AVE W,5,25,2017-12-21,70,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,4.0,,3.0,,4.0,2.0,3.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,4.0,,,N0833,43.7031541679,-79.4167347676,311495.469,4840136.385
-894212,4153952,2017.0,2017.0,1968.0,PRIVATE,8,Eglinton-Lawrence,600 EGLINTON AVE W,6,60,2017-12-21,69,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,3.0,3.0,,4.0,3.0,,4.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,N0833,43.702827623199994,-79.4182269632,311375.23699999996,4840099.988
-894213,4153723,2017.0,2017.0,1967.0,TCHC,19,Beaches-East York,2287 GERRARD ST E,5,38,2017-12-21,59,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,2.0,3.0,2.0,3.0,3.0,3.0,1.0,2.0,3.0,5.0,4.0,3.0,3.0,,3.0,3.0,,S1936,43.6847616076,-79.2954429245,321276.18100000004,4838109.87
-894214,4153724,2017.0,2017.0,1991.0,TCHC,19,Beaches-East York,2390 GERRARD ST E,4,16,2017-12-21,69,Evaluation needs to be conducted in 2 years,14,3.0,3.0,3.0,3.0,,3.0,,4.0,,,3.0,3.0,5.0,4.0,4.0,4.0,,3.0,3.0,,S1933,43.686322989,-79.29028370399999,321691.453,4838285.303
-894215,4286276,2017.0,2017.0,1980.0,TCHC,21,Scarborough Centre,51 GILDER DR,6,22,2017-12-21,58,Evaluation needs to be conducted in 1 year,19,2.0,3.0,2.0,3.0,3.0,4.0,2.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,4.0,2.0,3.0,3.0,E2134,43.7366529492,-79.2546800304,324545.484,4843883.623
-894216,4153402,2017.0,2017.0,1991.0,TCHC,10,Spadina-Fort York,22 MC CAUL ST,11,139,2017-12-21,68,Evaluation needs to be conducted in 2 years,19,4.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,,3.0,4.0,3.0,3.0,4.0,4.0,3.0,2.0,2.0,3.0,S1024,43.651220216400006,-79.3904825858,313618.859,4834369.14
-894217,4155228,2018.0,2017.0,1962.0,PRIVATE,3,Etobicoke-Lakeshore,9 KINSDALE BLVD,4,23,2017-12-21,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,3.0,,W0329,43.6352649375,-79.4919665857,305432.484,4832590.959
-894218,4288860,2017.0,2017.0,1958.0,PRIVATE,19,Beaches-East York,1981 DUNDAS ST E,3,12,2017-12-21,61,Evaluation needs to be conducted in 1 year,15,2.0,4.0,3.0,2.0,,4.0,,3.0,,,2.0,2.0,5.0,3.0,3.0,4.0,3.0,3.0,3.0,,S1937,43.668927771999996,-79.315350573,319674.841,4836347.995
-894219,4153801,2017.0,2017.0,1981.0,TCHC,12,Toronto-St. Paul's,130 EGLINTON AVE E,15,266,2017-12-21,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,S1221,43.7080325071,-79.3945783952,313280.50399999996,4840680.403
-894220,4153804,2017.0,2017.0,1972.0,TCHC,12,Toronto-St. Paul's,220 EGLINTON AVE E,10,99,2017-12-21,67,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,4.0,3.0,4.0,,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,,S1221,43.7083967721,-79.391625027,313518.471,4840721.175
-894221,4155825,2017.0,2017.0,1971.0,PRIVATE,2,Etobicoke Centre,24 EVA RD,19,142,2017-12-21,67,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,4.0,,W0233,43.640023653,-79.563923317,299569.18100000004,4833075.089
-894222,4268876,2017.0,2017.0,1980.0,TCHC,21,Scarborough Centre,81 GILDER DR,6,22,2017-12-21,58,Evaluation needs to be conducted in 1 year,19,2.0,3.0,2.0,3.0,3.0,4.0,2.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,4.0,2.0,3.0,3.0,E2134,43.7364538465,-79.2539355905,324605.517,4843861.682
-894223,4268878,2017.0,2017.0,1980.0,TCHC,21,Scarborough Centre,85 GILDER DR,6,22,2017-12-21,58,Evaluation needs to be conducted in 1 year,19,2.0,3.0,2.0,3.0,3.0,4.0,2.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,4.0,2.0,3.0,3.0,E2134,43.736266700200005,-79.25386808100001,324611.016,4843840.908
-894224,4153872,2017.0,2017.0,1952.0,PRIVATE,15,Don Valley West,6 GLEN ECHO RD,4,30,2017-12-21,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,4.0,3.0,3.0,,3.0,,,4.0,3.0,5.0,4.0,3.0,3.0,,4.0,3.0,,N1525,43.7340881358,-79.4038420166,312530.603,4843574.098
-894225,4155276,2019.0,2017.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,10 RIVERWOOD PKWY,3,52,2017-12-21,69,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,4.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,4.0,3.0,4.0,4.0,4.0,,W0327,43.639089740699994,-79.4882393913,305726.291,4833016.54
-894226,4155804,2017.0,2017.0,1950.0,PRIVATE,20,Scarborough Southwest,1625 KINGSTON RD,3,11,2017-12-21,57,Evaluation needs to be conducted in 1 year,14,3.0,3.0,2.0,2.0,,3.0,,3.0,,,2.0,3.0,3.0,3.0,3.0,4.0,,3.0,3.0,,E2034,43.690864521,-79.265477585,323718.011,4838812.556
-894227,4289106,2018.0,2017.0,2002.0,PRIVATE,5,York South-Weston,2252 KEELE ST,3,15,2017-12-21,64,Evaluation needs to be conducted in 1 year,15,2.0,3.0,3.0,3.0,3.0,4.0,,2.0,,,3.0,4.0,4.0,4.0,3.0,3.0,,4.0,3.0,,W0529,43.701953816999996,-79.476918201,306648.92699999997,4840009.031
-894228,4155232,2017.0,2017.0,1950.0,PRIVATE,3,Etobicoke-Lakeshore,1 HEATHERDALE RD,4,35,2017-12-21,66,Evaluation needs to be conducted in 2 years,16,3.0,4.0,3.0,3.0,3.0,3.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,3.0,4.0,4.0,2.0,,W0329,43.634913464499995,-79.4905899718,305543.578,4832551.923
-894229,4155231,2017.0,2017.0,1950.0,PRIVATE,3,Etobicoke-Lakeshore,3 HEATHERDALE RD,4,35,2017-12-21,67,Evaluation needs to be conducted in 2 years,17,3.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,,,4.0,3.0,5.0,3.0,3.0,3.0,4.0,4.0,2.0,,W0329,43.6348017129,-79.4912245002,305492.372,4832539.5030000005
-894230,4155805,2017.0,2017.0,1950.0,PRIVATE,20,Scarborough Southwest,1633 KINGSTON RD,3,10,2017-12-21,57,Evaluation needs to be conducted in 1 year,14,3.0,3.0,2.0,2.0,,3.0,,3.0,,,2.0,3.0,3.0,3.0,3.0,4.0,,3.0,3.0,,E2034,43.690864521,-79.265477585,323718.011,4838812.556
-894231,4155806,2017.0,2017.0,1950.0,PRIVATE,20,Scarborough Southwest,1641 KINGSTON RD,3,11,2017-12-21,57,Evaluation needs to be conducted in 1 year,14,3.0,3.0,2.0,2.0,,3.0,,3.0,,,2.0,3.0,3.0,3.0,3.0,4.0,,3.0,3.0,,E2034,43.690864521,-79.265477585,323718.011,4838812.556
-894232,4154580,2017.0,2017.0,1962.0,TCHC,6,York Centre,12 KING HIGH AVE,3,31,2017-12-21,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,,2.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N0629,43.736219646,-79.443095826,309368.07399999996,4843808.919
-894233,4153678,2017.0,2017.0,1950.0,PRIVATE,19,Beaches-East York,156 KINGSTON RD,4,62,2017-12-21,64,Evaluation needs to be conducted in 1 year,16,3.0,4.0,3.0,3.0,3.0,2.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,4.0,,S1937,43.671139903900006,-79.3114153921,319991.88,4836593.512
-894234,4167767,2017.0,2017.0,1974.0,TCHC,5,York South-Weston,710 TRETHEWEY DR,19,165,2017-12-21,64,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,4.0,4.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,W0528,43.697803447,-79.499827299,304798.114,4839539.581
-894235,4274213,2017.0,2017.0,1986.0,TCHC,10,Spadina-Fort York,20 VANAULEY ST,8,135,2017-12-21,75,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,2.0,4.0,S1023,43.648931485,-79.398985647,312932.99600000004,4834114.893
-894236,4153401,2017.0,2017.0,1979.0,TCHC,10,Spadina-Fort York,168 JOHN ST,7,180,2017-12-21,74,Evaluation needs to be conducted in 2 years,19,4.0,4.0,3.0,3.0,4.0,3.0,4.0,4.0,3.0,,3.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,S1024,43.650240258500006,-79.39150337390001,313520.724,4834252.341
-894237,4153400,2017.0,2017.0,1992.0,TCHC,10,Spadina-Fort York,190 JOHN ST,4,26,2017-12-21,72,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,2.0,,4.0,3.0,4.0,4.0,,3.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,S1024,43.650961887,-79.391878256,313506.048,4834341.234
-894238,4156089,2017.0,2017.0,1977.0,PRIVATE,2,Etobicoke Centre,290 THE KINGSWAY,4,22,2017-12-21,67,Evaluation needs to be conducted in 2 years,15,4.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,4.0,4.0,,3.0,3.0,,W0229,43.663351284799994,-79.5210336725,303087.922,4835711.443
-894239,4156447,2017.0,2017.0,1977.0,PRIVATE,2,Etobicoke Centre,292 THE KINGSWAY,4,22,2017-12-21,67,Evaluation needs to be conducted in 2 years,15,4.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,4.0,4.0,,3.0,3.0,,W0229,43.6634977142,-79.521320335,303064.81,4835727.717
-894240,4153478,2017.0,2017.0,1995.0,TCHC,13,Toronto Centre,330 JARVIS ST,10,82,2017-12-21,67,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,4.0,4.0,3.0,4.0,,4.0,4.0,3.0,S1326,43.6625963867,-79.37709964310001,314696.547,4835634.501
-894241,4153499,2017.0,2017.0,1991.0,TCHC,13,Toronto Centre,460 JARVIS ST,10,212,2017-12-21,59,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,2.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,S1326,43.665843764899996,-79.37866359649999,314569.899,4835995.071
-894242,4264285,2017.0,2017.0,1900.0,PRIVATE,13,Toronto Centre,561 JARVIS ST,3,28,2017-12-21,56,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,2.0,3.0,,3.0,,,3.0,2.0,4.0,3.0,2.0,2.0,,3.0,3.0,,S1322,43.6683620869,-79.3786856506,314567.707,4836274.842
-894243,4155374,2017.0,2017.0,1959.0,PRIVATE,2,Etobicoke Centre,240 MARKLAND DR,10,113,2017-12-21,62,Evaluation needs to be conducted in 1 year,18,4.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,,4.0,2.0,5.0,2.0,3.0,3.0,4.0,2.0,2.0,,W0233,43.6291344462,-79.5787506011,298429.535,4831912.798
-894244,4154144,2017.0,2017.0,1975.0,SOCIAL HOUSING,15,Don Valley West,23 THORNCLIFFE PARK DR,6,77,2017-12-21,67,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,,4.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N1533,43.7031497325,-79.3474623763,317078.572,4840143.732
-894245,4154719,2017.0,2017.0,1982.0,SOCIAL HOUSING,18,Willowdale,6091 BATHURST ST,6,90,2017-12-21,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,4.0,2.0,4.0,3.0,3.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,,N1821,43.787160745,-79.4456380716,309159.906,4849467.158
-894246,4283460,2018.0,2017.0,1950.0,PRIVATE,2,Etobicoke Centre,4 ANGLESEY BLVD,3,20,2017-12-21,65,Evaluation needs to be conducted in 1 year,15,3.0,4.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,4.0,,3.0,3.0,,W0229,43.6660993738,-79.5203712408,303141.44399999996,4836016.728
-894247,4155316,2017.0,2017.0,1953.0,PRIVATE,2,Etobicoke Centre,12 ANGLESEY BLVD,3,38,2017-12-21,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0229,43.6655032213,-79.52118310739999,303075.94899999996,4835950.515
-894248,4154191,2017.0,2017.0,1960.0,PRIVATE,15,Don Valley West,1741 BAYVIEW AVE,3,26,2017-12-21,68,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,,,4.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,N1531,43.709015815,-79.3761344035,314766.745,4840791.656
-894249,4155673,2017.0,2017.0,2013.0,PRIVATE,16,Don Valley East,5 DEAUVILLE LANE,7,62,2017-12-21,74,Evaluation needs to be conducted in 2 years,19,4.0,4.0,3.0,3.0,4.0,4.0,4.0,3.0,3.0,,4.0,4.0,5.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,N1630,43.7178206599,-79.3305417453,318400.363,4841821.642
-894250,4154323,2017.0,2017.0,1965.0,PRIVATE,5,York South-Weston,101 BROOKHAVEN DR,3,19,2017-12-21,65,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,4.0,3.0,4.0,3.0,4.0,2.0,,W0528,43.7034048782,-79.49483763180001,305200.553,4840160.923
-894251,4155378,2017.0,2017.0,1968.0,PRIVATE,2,Etobicoke Centre,4340 BLOOR ST W,15,88,2017-12-21,61,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,2.0,,W0233,43.632109971999995,-79.576154353,298639.087,4832244.112
-894252,4286261,2017.0,2017.0,1990.0,TCHC,15,Don Valley West,2755 YONGE ST,4,41,2017-12-21,78,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,N1526,43.718218448,-79.40053936609999,312798.75,4841811.4180000005
-894253,4295059,2018.0,2017.0,1930.0,PRIVATE,15,Don Valley West,2837 YONGE ST,6,67,2017-12-21,73,Evaluation needs to be conducted in 2 years,16,4.0,3.0,3.0,4.0,4.0,3.0,,3.0,4.0,,4.0,4.0,5.0,3.0,4.0,4.0,,3.0,3.0,,N1526,43.719953750200006,-79.4007265564,312783.439,4842004.178
-894254,4154032,2017.0,2017.0,1940.0,PRIVATE,8,Eglinton-Lawrence,3464 YONGE ST,4,27,2017-12-21,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,4.0,3.0,,3.0,3.0,,N0825,43.734800638900005,-79.4050159529,312435.947,4843653.143999999
-894255,4154031,2017.0,2017.0,1940.0,PRIVATE,8,Eglinton-Lawrence,3474 YONGE ST,4,27,2017-12-21,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,4.0,3.0,,3.0,3.0,,N0825,43.7349962001,-79.40513064619999,312426.683,4843674.858
-894256,4153682,2017.0,2017.0,1920.0,PRIVATE,19,Beaches-East York,223 WOODBINE AVE,4,48,2017-12-21,71,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,3.0,4.0,3.0,,4.0,,,4.0,4.0,4.0,2.0,4.0,4.0,,2.0,3.0,,S1938,43.6694252933,-79.3057875382,320446.145,4836404.056
-894257,4154132,2017.0,2017.0,1970.0,PRIVATE,14,Toronto-Danforth,1175 BROADVIEW AVE,12,134,2017-12-21,75,Evaluation needs to be conducted in 2 years,19,4.0,3.0,3.0,3.0,3.0,2.0,3.0,4.0,4.0,3.0,3.0,3.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,,S1421,43.689041600799996,-79.3545084305,316513.471,4838575.397
-894258,4153615,2017.0,2017.0,1978.0,TCHC,14,Toronto-Danforth,80 DANFORTH AVE,5,131,2017-12-21,65,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,3.0,5.0,4.0,2.0,4.0,3.0,3.0,4.0,3.0,S1424,43.67633044270001,-79.3597559522,316092.805,4837162.489
-894259,4153658,2017.0,2017.0,1988.0,TCHC,14,Toronto-Danforth,1275 DANFORTH AVE,4,109,2017-12-21,66,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,2.0,3.0,3.0,3.0,4.0,4.0,,3.0,3.0,5.0,4.0,3.0,3.0,4.0,3.0,3.0,,S1432,43.68123553310001,-79.3299329034,318496.368,4837711.867
-894260,4152936,2017.0,2017.0,1914.0,PRIVATE,4,Parkdale-High Park,1914 BLOOR ST W,3,16,2017-12-21,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S0428,43.653724315,-79.466048263,307522.842,4834643.12
-894261,4152937,2017.0,2017.0,1914.0,PRIVATE,4,Parkdale-High Park,1920 BLOOR ST W,3,16,2017-12-21,59,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,,3.0,,2.0,,,3.0,3.0,5.0,3.0,2.0,3.0,2.0,3.0,3.0,,S0428,43.653685383,-79.466255527,307506.125,4834638.788
-894262,4155112,2017.0,2017.0,1915.0,PRIVATE,5,York South-Weston,83 CLEARVIEW HTS,3,40,2017-12-21,52,Evaluation needs to be conducted in 1 year,15,2.0,2.0,4.0,3.0,2.0,2.0,,2.0,,,3.0,2.0,4.0,2.0,3.0,2.0,,4.0,2.0,,W0532,43.692623122,-79.48295506,306158.205,4838964.161
-894263,4155931,2017.0,2017.0,2008.0,SOCIAL HOUSING,13,Toronto Centre,490 SHERBOURNE ST,11,112,2017-12-21,71,Evaluation needs to be conducted in 2 years,19,4.0,4.0,3.0,2.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,4.0,S1326,43.6676005473,-79.3754019425,314832.654,4836190.618
-894264,4154568,2017.0,2017.0,1958.0,PRIVATE,6,York Centre,417 WILSON AVE,3,10,2017-12-21,68,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,4.0,3.0,3.0,,3.0,,,4.0,3.0,5.0,4.0,3.0,3.0,4.0,3.0,3.0,,N0633,43.735946368,-79.4396551078,309645.512,4843777.796
-894265,4153659,2017.0,2017.0,1974.0,TCHC,14,Toronto-Danforth,145 STRATHMORE BLVD,14,350,2017-12-20,62,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,S1427,43.6815994878,-79.3340244095,318166.408,4837751.63
-894266,4154581,2017.0,2017.0,1955.0,PRIVATE,6,York Centre,470 WILSON AVE,3,55,2017-12-20,52,Evaluation needs to be conducted in 1 year,17,2.0,3.0,3.0,2.0,2.0,3.0,,2.0,,2.0,2.0,2.0,5.0,3.0,2.0,2.0,3.0,3.0,3.0,,N0629,43.735579287,-79.444539255,309251.85,4843737.702
-894267,4154582,2017.0,2017.0,1955.0,PRIVATE,6,York Centre,490 WILSON AVE,3,55,2017-12-20,55,Evaluation needs to be conducted in 1 year,17,3.0,2.0,3.0,2.0,3.0,3.0,,2.0,,3.0,2.0,3.0,4.0,3.0,3.0,2.0,3.0,3.0,3.0,,N0629,43.735321323,-79.44546875,309176.995,4843708.996
-894268,4154567,2017.0,2017.0,1995.0,TCHC,6,York Centre,495 WILSON AVE,5,132,2017-12-20,64,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,4.0,4.0,4.0,3.0,N0633,43.734757435,-79.445351342,309186.49199999997,4843646.358
-894269,4154516,2017.0,2017.0,1955.0,PRIVATE,8,Eglinton-Lawrence,54 NEPTUNE DR,3,11,2017-12-20,60,Evaluation needs to be conducted in 1 year,16,3.0,3.0,2.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,4.0,3.0,3.0,2.0,,N0823,43.73237107600001,-79.435213823,310003.317,4843381.834
-894270,4154502,,2017.0,,PRIVATE,8,Eglinton-Lawrence,89 NEPTUNE DR,3,11,2017-12-20,60,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,2.0,3.0,2.0,3.0,3.0,3.0,,N0823,43.731805189700005,-79.4379426197,309783.803,4843317.843
-894271,4156733,2017.0,2017.0,1974.0,TCHC,8,Eglinton-Lawrence,135 NEPTUNE DR,4,48,2017-12-20,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,,4.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,N0823,43.729915311000006,-79.44050099100001,309577.593,4843108.688
-894272,4156734,2017.0,2017.0,1974.0,TCHC,8,Eglinton-Lawrence,145 NEPTUNE DR,4,48,2017-12-20,66,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,,4.0,4.0,4.0,3.0,2.0,3.0,4.0,3.0,3.0,4.0,N0823,43.729562759,-79.440565679,309572.41,4843069.517
-894273,4156735,2017.0,2017.0,1974.0,TCHC,8,Eglinton-Lawrence,155 NEPTUNE DR,4,48,2017-12-20,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,,4.0,4.0,3.0,3.0,2.0,3.0,4.0,3.0,3.0,4.0,N0823,43.729844838000005,-79.43964535100001,309646.53,4843100.909
-894274,4154356,2017.0,2017.0,1967.0,PRIVATE,5,York South-Weston,1440 LAWRENCE AVE W,13,207,2017-12-20,71,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,2.0,4.0,3.0,4.0,3.0,4.0,,4.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,,W0526,43.708911281400006,-79.4794304788,306442.18100000004,4840772.807
-894275,4169109,2017.0,2017.0,1967.0,PRIVATE,5,York South-Weston,1442 LAWRENCE AVE W,13,214,2017-12-20,70,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,,4.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,,W0526,43.7089535721,-79.48052540340001,306428.13300000003,4840717.808
-894276,4290959,2018.0,2017.0,1962.0,PRIVATE,3,Etobicoke-Lakeshore,25 ELIZABETH ST,3,29,2017-12-20,56,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,2.0,3.0,3.0,,2.0,,,3.0,3.0,4.0,3.0,2.0,3.0,3.0,3.0,2.0,,W0336,43.6135850358,-79.4949390042,305192.817,4830182.433
-894277,4153913,2017.0,2017.0,1982.0,PRIVATE,12,Toronto-St. Paul's,5 MALLORY GDNS,11,60,2017-12-20,72,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,3.0,,4.0,4.0,4.0,4.0,2.0,5.0,4.0,4.0,3.0,3.0,3.0,3.0,,S1232,43.69068475,-79.395885257,313177.321,4838753.869
-894278,4153706,2017.0,2017.0,1960.0,TCHC,19,Beaches-East York,133 MERRILL AVE E,3,42,2017-12-20,65,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,,S1931,43.682986595,-79.311994302,319941.96,4837910.517
-894279,4155845,2017.0,2017.0,1953.0,PRIVATE,5,York South-Weston,33 FLAMBOROUGH DR,3,43,2017-12-20,59,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,2.0,3.0,,3.0,,3.0,3.0,2.0,4.0,3.0,3.0,3.0,,3.0,3.0,,W0529,43.7019480754,-79.4775820267,306591.346,4839999.254
-894280,4290978,2017.0,2017.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,2305 LAKE SHORE BLVD W,4,38,2017-12-20,63,Evaluation needs to be conducted in 1 year,15,3.0,2.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,2.0,3.0,3.0,,5.0,3.0,,W0336,43.61799882930001,-79.4862937261,305855.692,4830672.705
-894281,4290981,2017.0,2017.0,1959.0,PRIVATE,3,Etobicoke-Lakeshore,2307 LAKE SHORE BLVD W,4,38,2017-12-20,63,Evaluation needs to be conducted in 1 year,15,3.0,2.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,2.0,3.0,3.0,,5.0,3.0,,W0336,43.6178366581,-79.4863780789,305849.80600000004,4830654.806
-894282,4153907,2017.0,2017.0,1920.0,PRIVATE,12,Toronto-St. Paul's,321 LONSDALE RD,5,12,2017-12-20,63,Evaluation needs to be conducted in 1 year,16,3.0,4.0,4.0,3.0,4.0,3.0,,3.0,,,3.0,2.0,5.0,2.0,3.0,3.0,3.0,3.0,2.0,,S1231,43.6886182692,-79.4117661869,311897.61,4838521.893
-894283,4153632,2017.0,2017.0,1993.0,TCHC,14,Toronto-Danforth,29 LOUVAIN AVE,4,51,2017-12-20,69,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,4.0,3.0,3.0,4.0,3.0,,3.0,3.0,5.0,3.0,4.0,4.0,4.0,3.0,,,S1435,43.662543937399995,-79.3369204531,317937.063,4835634.227
-894284,4153068,2017.0,2017.0,1952.0,PRIVATE,4,Parkdale-High Park,150 FERMANAGH AVE,5,66,2017-12-20,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,5.0,,4.0,4.0,3.0,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,3.0,,S0433,43.646685098999995,-79.4485785795,308932.75,4833860.844
-894285,4263113,2017.0,2017.0,1970.0,PRIVATE,17,Don Valley North,642 SHEPPARD AVE E,19,126,2017-12-20,73,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,4.0,4.0,N1725,43.76917685,-79.3827164,314226.606,4847475.368
-894286,4154289,2017.0,2017.0,1957.0,PRIVATE,5,York South-Weston,2246 KEELE ST,3,22,2017-12-20,70,Evaluation needs to be conducted in 2 years,16,3.0,4.0,3.0,3.0,3.0,4.0,,3.0,,4.0,4.0,3.0,5.0,3.0,4.0,3.0,,4.0,3.0,,W0529,43.7014106109,-79.4769290281,306643.993,4839939.556
-894287,4285956,2017.0,2017.0,1968.0,TCHC,5,York South-Weston,121 HUMBER BLVD,14,215,2017-12-20,63,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,4.0,,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,4.0,W0539,43.6784336179,-79.48189258880001,,
-894288,4154014,2017.0,2017.0,1950.0,PRIVATE,8,Eglinton-Lawrence,20 ROSELAWN AVE,3,12,2017-12-20,65,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,,,4.0,4.0,5.0,3.0,3.0,3.0,,3.0,2.0,,N0833,43.711067487,-79.40004192859999,312839.782,4841017.038
-894289,4153633,2017.0,2017.0,1993.0,SOCIAL HOUSING,14,Toronto-Danforth,1070 QUEEN ST E,5,177,2017-12-20,72,Evaluation needs to be conducted in 2 years,19,3.0,3.0,3.0,4.0,4.0,4.0,3.0,3.0,4.0,,4.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,S1435,43.6620660934,-79.3367847076,317948.115,4835581.161
-894290,4153626,2017.0,2017.0,1995.0,TCHC,14,Toronto-Danforth,1167 QUEEN ST E,5,40,2017-12-20,72,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,4.0,,4.0,4.0,4.0,3.0,,3.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1441,43.6624909475,-79.3328836483,318262.632,4835628.983
-894291,4153435,2017.0,2017.0,1896.0,PRIVATE,13,Toronto Centre,77 PEMBROKE ST,4,16,2017-12-20,52,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,2.0,3.0,3.0,,3.0,,,2.0,2.0,3.0,3.0,2.0,2.0,,3.0,3.0,,S1328,43.658942215500005,-79.3723537237,315079.942,4835229.102
-894292,4288743,2017.0,2017.0,1930.0,PRIVATE,13,Toronto Centre,78 PEMBROKE ST,3,15,2017-12-20,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,4.0,4.0,,4.0,3.0,,S1328,43.658974777299996,-79.3730219749,315026.038,4835232.634
-894293,4153436,2017.0,2017.0,1885.0,PRIVATE,13,Toronto Centre,95 PEMBROKE ST,3,19,2017-12-20,46,Building Audit,16,2.0,3.0,2.0,2.0,2.0,3.0,,3.0,,,2.0,2.0,4.0,2.0,1.0,1.0,3.0,3.0,2.0,,S1328,43.6595601379,-79.37264249340001,315056.547,4835297.718
-894294,4153689,2017.0,2017.0,1958.0,PRIVATE,19,Beaches-East York,485 KINGSTON RD,9,115,2017-12-20,72,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,4.0,,2.0,3.0,3.0,4.0,,4.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,,S1938,43.6770057778,-79.3030883867,320661.82899999997,4837246.744
-894295,4153691,2017.0,2017.0,1920.0,PRIVATE,19,Beaches-East York,441 KINGSTON RD,3,15,2017-12-20,64,Evaluation needs to be conducted in 1 year,15,3.0,4.0,3.0,3.0,3.0,2.0,,4.0,,,3.0,3.0,3.0,3.0,4.0,4.0,,3.0,3.0,,S1938,43.6767157275,-79.303971101,320590.73,4837214.351
-894296,4153715,2017.0,2017.0,1958.0,PRIVATE,19,Beaches-East York,474 KINGSTON RD,4,38,2017-12-20,74,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,2.0,,3.0,,3.0,4.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,4.0,,S1935,43.6776882643,-79.3033656117,320639.297,4837322.513
-894297,4154670,2017.0,2017.0,1982.0,TCHC,8,Eglinton-Lawrence,193 WILSON AVE,5,125,2017-12-20,82,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,N0824,43.739288978999994,-79.42267237899999,311012.907,4844151.197
-894298,4156295,2017.0,2017.0,1967.0,PRIVATE,5,York South-Weston,1765 WESTON RD,25,246,2017-12-20,53,Evaluation needs to be conducted in 1 year,19,3.0,3.0,2.0,2.0,3.0,3.0,2.0,3.0,3.0,2.0,2.0,2.0,2.0,3.0,3.0,3.0,4.0,2.0,3.0,,W0527,43.6990639559,-79.5119719596,303819.476,4839678.778
-894299,4155920,2017.0,2017.0,1967.0,PRIVATE,5,York South-Weston,1775 WESTON RD,25,245,2017-12-20,53,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,2.0,3.0,3.0,2.0,3.0,2.0,3.0,2.0,2.0,2.0,3.0,3.0,2.0,4.0,2.0,3.0,,W0527,43.6994166431,-79.51287144,303746.982,4839717.978999999
-894300,4154522,2017.0,2017.0,1956.0,PRIVATE,8,Eglinton-Lawrence,16 HOTSPUR RD,3,12,2017-12-20,59,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,,N0823,43.73325697600001,-79.4341048887,310075.36199999996,4843467.916
-894301,4154524,2017.0,2017.0,1957.0,PRIVATE,8,Eglinton-Lawrence,22 HOTSPUR RD,3,10,2017-12-20,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0823,43.7331168805,-79.4348475012,310014.946,4843450.384
-894302,4154518,2017.0,2017.0,1956.0,PRIVATE,8,Eglinton-Lawrence,25 HOTSPUR RD,3,11,2017-12-20,65,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,,,4.0,2.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,,N0823,43.732587967700006,-79.43470192619999,310044.798,4843405.008
-894303,4154526,2017.0,2017.0,1957.0,PRIVATE,8,Eglinton-Lawrence,26 HOTSPUR RD,3,12,2017-12-20,60,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,2.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0823,43.733002204399995,-79.4353409196,309977.291,4843434.838
-894304,4155193,2017.0,2017.0,1958.0,PRIVATE,5,York South-Weston,80 GUESTVILLE AVE,4,53,2017-12-20,57,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,3.0,2.0,3.0,3.0,3.0,3.0,,3.0,3.0,,W0535,43.6841175176,-79.4901133779,305581.481,4838018.193
-894305,4155240,2017.0,2017.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,187 BERRY RD,4,30,2017-12-20,73,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,4.0,3.0,4.0,,3.0,,,4.0,4.0,5.0,3.0,3.0,3.0,4.0,4.0,3.0,,W0329,43.6361245275,-79.49246033060001,305392.63300000003,4832686.451
-894306,4281935,2017.0,2017.0,1952.0,PRIVATE,2,Etobicoke Centre,9 BEXHILL CRT,4,13,2017-12-20,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0229,43.6619737906,-79.5206905766,303115.541,4835558.403
-894307,4156098,2017.0,2017.0,1952.0,PRIVATE,2,Etobicoke Centre,10 BEXHILL CRT,4,13,2017-12-20,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0229,43.6622198253,-79.5205498417,303126.899,4835585.733
-894308,4155923,2017.0,2017.0,1952.0,PRIVATE,2,Etobicoke Centre,11 BEXHILL CRT,4,15,2017-12-20,65,Evaluation needs to be conducted in 1 year,16,4.0,4.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0229,43.662318794799994,-79.5209151841,303097.439,4835596.7360000005
-894309,4156099,2017.0,2017.0,1952.0,PRIVATE,2,Etobicoke Centre,12 BEXHILL CRT,4,14,2017-12-20,64,Evaluation needs to be conducted in 1 year,16,3.0,4.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0229,43.6624690571,-79.5204003078,303138.967,4835613.4180000005
-894310,4154728,2017.0,2017.0,1968.0,PRIVATE,18,Willowdale,6210 YONGE ST,7,83,2017-12-20,69,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,4.0,3.0,4.0,,3.0,3.0,,3.0,3.0,5.0,3.0,4.0,3.0,4.0,3.0,3.0,,N1822,43.7939825101,-79.4198227886,311236.874,4850226.759
-894311,4154370,2017.0,2017.0,1958.0,PRIVATE,6,York Centre,23 ANTHONY RD,3,12,2017-12-20,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,N0632,43.7303067168,-79.4602104154,307990.018,4843150.255
-894312,4155542,2017.0,2017.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,44 ARCADIAN CRCL,3,13,2017-12-20,57,Evaluation needs to be conducted in 1 year,15,2.0,3.0,3.0,2.0,2.0,2.0,,3.0,,,2.0,3.0,5.0,3.0,3.0,3.0,,4.0,3.0,,W0334,43.593328004600004,-79.5267034096,302628.294,4827932.2639999995
-894313,4269261,2018.0,2017.0,2007.0,SOCIAL HOUSING,1,Etobicoke North,68 BERGAMOT AVE,4,68,2017-12-20,72,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,2.0,,4.0,3.0,5.0,4.0,3.0,3.0,,5.0,4.0,4.0,W0130,43.716943461999996,-79.557813582,300125.675,4841667.635
-894314,4156650,2017.0,2017.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,138 BERRY RD,4,22,2017-12-20,71,Evaluation needs to be conducted in 2 years,16,4.0,3.0,3.0,4.0,3.0,3.0,,4.0,,,4.0,4.0,5.0,3.0,3.0,3.0,4.0,4.0,3.0,,W0327,43.638038087,-79.4865149575,,
-894315,4154006,2017.0,2017.0,1961.0,PRIVATE,8,Eglinton-Lawrence,1112 AVENUE RD,4,13,2017-12-20,72,Evaluation needs to be conducted in 2 years,15,3.0,4.0,3.0,3.0,,3.0,,4.0,,,3.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N0833,43.70828783899999,-79.4106432574,311985.80600000004,4840707.244
-894316,4155156,2017.0,2017.0,1965.0,PRIVATE,5,York South-Weston,36 CHURCH ST,6,41,2017-12-20,60,Evaluation needs to be conducted in 1 year,17,3.0,2.0,3.0,3.0,3.0,3.0,,4.0,2.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,2.0,,W0524,43.7043490054,-79.52380161399999,302866.172,4840266.152
-894317,4154085,2017.0,2017.0,2012.0,SOCIAL HOUSING,14,Toronto-Danforth,270 DONLANDS AVE,8,44,2017-12-20,69,Evaluation needs to be conducted in 2 years,17,3.0,4.0,3.0,3.0,3.0,2.0,2.0,3.0,3.0,,4.0,3.0,5.0,5.0,4.0,4.0,,5.0,,3.0,S1422,43.690105216400006,-79.3416209783,317552.137,4838695.398
-894318,4154616,2017.0,2017.0,1993.0,TCHC,6,York Centre,750 WILSON HEIGHTS BLVD,4,79,2017-12-20,73,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,4.0,3.0,N0624,43.7599025231,-79.4643820727,307652.61,4846438.066000001
-894319,4286226,2017.0,2017.0,1956.0,PRIVATE,12,Toronto-St. Paul's,55 BROADWAY AVE,4,59,2017-12-20,75,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,4.0,5.0,4.0,3.0,4.0,,3.0,3.0,4.0,S1221,43.709662021999996,-79.39547702899999,313207.59,4840862.3
-894320,4155828,2018.0,2017.0,1944.0,PRIVATE,4,Parkdale-High Park,2561 BLOOR ST W,4,34,2017-12-20,63,Evaluation needs to be conducted in 1 year,15,3.0,2.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,4.0,3.0,4.0,3.0,,4.0,3.0,,S0425,43.647625728,-79.491336413,305480.451,4833992.441000001
-894321,4152927,2017.0,2017.0,1982.0,SOCIAL HOUSING,4,Parkdale-High Park,1700 BLOOR ST W,9,115,2017-12-20,72,Evaluation needs to be conducted in 2 years,20,4.0,3.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,3.0,4.0,3.0,5.0,4.0,3.0,4.0,3.0,3.0,4.0,4.0,S0429,43.655404214200004,-79.4584260885,308137.86,4834829.083000001
-894322,4155750,2017.0,2017.0,2004.0,SOCIAL HOUSING,14,Toronto-Danforth,243 COSBURN AVE,6,32,2017-12-20,69,Evaluation needs to be conducted in 2 years,18,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,3.0,4.0,S1422,43.690484690699996,-79.3423832041,317490.61199999996,4838737.441000001
-894323,4263115,2017.0,2017.0,1970.0,PRIVATE,17,Don Valley North,644 SHEPPARD AVE E,18,128,2017-12-20,73,Evaluation needs to be conducted in 2 years,20,4.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,4.0,4.0,N1725,43.769665303000004,-79.383119544,314194.076,4847529.585
-894324,4273164,2017.0,2017.0,1960.0,PRIVATE,14,Toronto-Danforth,133 GAMBLE AVE,4,27,2017-12-19,60,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,,,3.0,2.0,5.0,2.0,3.0,4.0,1.0,3.0,3.0,,S1422,43.690334748000005,-79.34796076800001,317040.769,4838720.926
-894325,4155462,2019.0,2017.0,1970.0,PRIVATE,1,Etobicoke North,41 GARFELLA DR,12,95,2017-12-19,34,Building Audit,18,2.0,2.0,3.0,2.0,2.0,1.0,1.0,2.0,1.0,,2.0,2.0,1.0,2.0,2.0,1.0,2.0,2.0,1.0,,W0123,43.744136418400004,-79.5943268787,297187.256,4844690.351
-894326,4153795,2017.0,2017.0,1960.0,PRIVATE,15,Don Valley West,551 EGLINTON AVE E,8,54,2017-12-19,74,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,3.0,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N1530,43.710473290500005,-79.3785880328,314568.772,4840953.298
-894327,4154204,2017.0,2017.0,1954.0,PRIVATE,15,Don Valley West,888 EGLINTON AVE E,3,18,2017-12-19,68,Evaluation needs to be conducted in 2 years,16,4.0,3.0,3.0,4.0,3.0,3.0,,4.0,,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N1529,43.7139541156,-79.364465297,315706.209,4841341.723
-894328,4154142,2017.0,2017.0,1945.0,PRIVATE,14,Toronto-Danforth,9 ELMSDALE RD,4,38,2017-12-19,59,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,2.0,3.0,,3.0,,,3.0,2.0,5.0,2.0,3.0,3.0,,2.0,3.0,,S1422,43.6947032989,-79.3438349968,317372.708,4839205.914
-894329,4153714,2017.0,2017.0,1992.0,TCHC,19,Beaches-East York,520 KINGSTON RD,5,108,2017-12-19,68,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,4.0,4.0,4.0,3.0,,S1935,43.67824727,-79.302446163,320713.024,4837385.748
-894330,4153713,2017.0,2017.0,1954.0,TCHC,19,Beaches-East York,530 KINGSTON RD,3,90,2017-12-19,70,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,3.0,3.0,4.0,4.0,3.0,,3.0,3.0,5.0,4.0,3.0,4.0,4.0,3.0,3.0,,S1935,43.678265378999996,-79.301899491,320757.097,4837387.866
-894331,4153707,2017.0,2017.0,1954.0,TCHC,19,Beaches-East York,320 KINGSTON RD,3,39,2017-12-19,68,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,4.0,4.0,,3.0,,,3.0,3.0,5.0,4.0,4.0,3.0,4.0,3.0,1.0,,S1935,43.6747928439,-79.3073203588,320321.163,4837000.094
-894332,4153722,2017.0,2017.0,1962.0,TCHC,19,Beaches-East York,828 KINGSTON RD,7,147,2017-12-19,69,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,3.0,4.0,2.0,2.0,4.0,3.0,4.0,3.0,3.0,5.0,4.0,3.0,4.0,4.0,4.0,,4.0,S1936,43.6805240722,-79.2921137026,321545.77,4837639.768
-894333,4154442,2017.0,2017.0,1959.0,PRIVATE,6,York Centre,3020 KEELE ST,3,39,2017-12-19,59,Evaluation needs to be conducted in 1 year,16,2.0,3.0,3.0,2.0,3.0,3.0,,3.0,,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0627,43.737981659700004,-79.4853134372,305967.553,4844002.249
-894334,4154467,2017.0,2017.0,1994.0,SOCIAL HOUSING,7,Humber River-Black Creek,3470 KEELE ST,4,59,2017-12-19,66,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,,W0731,43.752235605,-79.488646145,305708.984,4845589.605
-894335,4155464,2017.0,2017.0,1989.0,SOCIAL HOUSING,1,Etobicoke North,88 HUMBER COLLEGE BLVD,4,119,2017-12-19,72,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,,4.0,3.0,5.0,3.0,4.0,4.0,,3.0,3.0,4.0,W0122,43.7317348465,-79.5986539334,296837.089,4843312.966
-894336,4288800,2017.0,2017.0,1920.0,PRIVATE,19,Beaches-East York,82 WILLOW AVE,3,18,2017-12-19,66,Evaluation needs to be conducted in 2 years,14,3.0,3.0,3.0,4.0,4.0,2.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,4.0,,3.0,,,S1942,43.672483295,-79.28654496829999,321997.02,4836747.592
-894337,4288801,2017.0,2017.0,1920.0,PRIVATE,19,Beaches-East York,84 WILLOW AVE,3,18,2017-12-19,60,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,4.0,2.0,,3.0,,2.0,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,,,S1942,43.6726703072,-79.2866950453,321984.865,4836768.337
-894338,4155123,,2017.0,1954.0,PRIVATE,5,York South-Weston,1240 WESTON RD,3,22,2017-12-19,70,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,4.0,3.0,2.0,,4.0,,,4.0,3.0,5.0,4.0,3.0,3.0,,4.0,3.0,4.0,W0531,43.6880806014,-79.4934709914,305310.766,4838458.456
-894339,4154350,,2017.0,,PRIVATE,5,York South-Weston,2430 KEELE ST,3,12,2017-12-19,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,2.0,,,3.0,2.0,5.0,4.0,3.0,4.0,,4.0,3.0,,W0526,43.71081061,-79.4788967213,306483.424,4841002.355
-894340,4154293,2017.0,2017.0,1960.0,PRIVATE,5,York South-Weston,14 GULLIVER RD,6,57,2017-12-19,68,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,,W0529,43.6995188546,-79.47732165949999,306612.402,4839729.377
-894341,4154281,2017.0,2017.0,1960.0,PRIVATE,5,York South-Weston,17 GULLIVER RD,6,42,2017-12-19,70,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,3.0,4.0,3.0,,3.0,3.0,3.0,4.0,4.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,,W0529,43.6987192629,-79.476784436,306655.727,4839640.555
-894342,4154294,2017.0,2017.0,1963.0,PRIVATE,5,York South-Weston,26 GULLIVER RD,6,53,2017-12-19,71,Evaluation needs to be conducted in 2 years,17,4.0,3.0,3.0,3.0,4.0,4.0,,3.0,3.0,,4.0,3.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,,W0529,43.6993035632,-79.4776846609,306583.149,4839705.452
-894343,4154512,2017.0,2017.0,1956.0,PRIVATE,8,Eglinton-Lawrence,64 WASDALE CRES,3,15,2017-12-19,57,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,3.0,,3.0,,3.0,,,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0823,43.730707835100006,-79.4377714103,309797.687,4843195.944
-894344,4155451,2017.0,2017.0,1978.0,PRIVATE,1,Etobicoke North,2667 KIPLING AVE,23,228,2017-12-19,43,Building Audit,18,3.0,2.0,2.0,2.0,2.0,3.0,2.0,2.0,2.0,,1.0,2.0,1.0,3.0,2.0,3.0,3.0,2.0,2.0,,W0124,43.748495858000005,-79.583366602,298070.253,4845174.643999999
-894345,4155452,2017.0,2017.0,1978.0,PRIVATE,1,Etobicoke North,2677 KIPLING AVE,23,227,2017-12-19,53,Evaluation needs to be conducted in 1 year,18,3.0,2.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,,3.0,2.0,2.0,3.0,3.0,3.0,3.0,2.0,2.0,,W0124,43.749099512,-79.584064323,298014.13300000003,4845241.7639999995
-894346,4155051,2017.0,2017.0,1958.0,PRIVATE,8,Eglinton-Lawrence,131 LYON CRT,4,26,2017-12-19,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,2.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,4.0,,N0831,43.7030805404,-79.44023175939999,309601.661,4840126.516
-894347,4155583,2017.0,2017.0,1972.0,TCHC,24,Scarborough-Guildwood,4100 LAWRENCE AVE E,11,185,2017-12-19,60,Evaluation needs to be conducted in 1 year,18,2.0,3.0,3.0,2.0,3.0,4.0,2.0,2.0,4.0,,3.0,3.0,3.0,2.0,3.0,4.0,3.0,3.0,5.0,,E2428,43.76703953,-79.195497441,329267.349,4847214.382
-894348,4285972,2017.0,2017.0,1972.0,TCHC,24,Scarborough-Guildwood,4110 LAWRENCE AVE E,11,185,2017-12-19,59,Evaluation needs to be conducted in 1 year,19,2.0,3.0,3.0,2.0,4.0,4.0,3.0,3.0,3.0,,2.0,3.0,2.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,E2428,43.767386062,-79.193922136,329338.224,4847236.605
-894349,4152839,2017.0,2017.0,1974.0,TCHC,24,Scarborough-Guildwood,4175 LAWRENCE AVE E,13,375,2017-12-19,52,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,3.0,3.0,2.0,1.0,4.0,,2.0,2.0,2.0,3.0,2.0,2.0,4.0,3.0,3.0,,E2432,43.7672342065,-79.1888137161,329838.377,4847298.7530000005
-894350,4152842,2017.0,2017.0,1974.0,TCHC,25,Scarborough-Rouge Park,4205 LAWRENCE AVE E,14,345,2017-12-19,59,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,,2.0,3.0,2.0,4.0,2.0,3.0,4.0,4.0,3.0,,E2537,43.76799274060001,-79.185350274,330116.903,4847384.065
-894351,4152806,2017.0,2017.0,1966.0,PRIVATE,24,Scarborough-Guildwood,55 LIVINGSTON RD,14,174,2017-12-19,84,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,5.0,4.0,5.0,4.0,,4.0,5.0,5.0,4.0,4.0,4.0,5.0,3.0,3.0,4.0,E2435,43.744321120200006,-79.19730529739999,329164.011,4844750.688999999
-894352,4155891,2017.0,2017.0,1958.0,PRIVATE,8,Eglinton-Lawrence,775 LAWRENCE AVE W,3,10,2017-12-19,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,4.0,,3.0,4.0,,N0827,43.713898627,-79.453259766,308550.68100000004,4841328.638
-894353,4154497,2017.0,2017.0,1965.0,PRIVATE,8,Eglinton-Lawrence,1079 LAWRENCE AVE W,3,15,2017-12-19,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,3.0,,3.0,,3.0,,,3.0,2.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,,N0826,43.711974339899996,-79.4627656492,307785.025,4841113.531
-894354,4155038,2017.0,2017.0,1968.0,PRIVATE,12,Toronto-St. Paul's,633 NORTHCLIFFE BLVD,11,86,2017-12-19,55,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,2.0,3.0,2.0,,3.0,3.0,,2.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,,S1222,43.695129788,-79.4469525657,309060.50399999996,4839242.877
-894355,4155078,2017.0,2017.0,1950.0,PRIVATE,8,Eglinton-Lawrence,2040 EGLINTON AVE W,4,37,2017-12-19,65,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,4.0,,N0830,43.6945163928,-79.4569284637,308256.403,4839174.261
-894356,4154187,2017.0,2017.0,1962.0,PRIVATE,15,Don Valley West,15 MALLORY CRES,3,34,2017-12-19,86,Evaluation needs to be conducted in 3 years,18,4.0,5.0,4.0,5.0,5.0,3.0,,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N1535,43.6962315888,-79.36899116939999,315344.674,4839372.291999999
-894357,4153753,2017.0,2017.0,1980.0,TCHC,12,Toronto-St. Paul's,71 MERTON ST,10,167,2017-12-19,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,S1233,43.696320863000004,-79.394123596,313318.526,4839380.245
-894358,4153761,2017.0,2017.0,1999.0,PRIVATE,12,Toronto-St. Paul's,268 MERTON ST,5,38,2017-12-19,86,Evaluation needs to be conducted in 3 years,20,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,S1233,43.69810355640001,-79.38800394,313811.835,4839577.992
-894359,4153103,2017.0,2017.0,1973.0,PRIVATE,9,Davenport,1011 LANSDOWNE AVE,21,352,2017-12-19,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S0930,43.6672554091,-79.4464193523,309105.45399999997,4836146.163
-894360,4156370,2017.0,2017.0,1952.0,PRIVATE,2,Etobicoke Centre,5 BEXHILL CRT,4,13,2017-12-19,63,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0229,43.6623890057,-79.52130693779999,303065.849,4835604.545
-894361,4281915,2017.0,2017.0,1952.0,PRIVATE,2,Etobicoke Centre,6 BEXHILL CRT,4,13,2017-12-19,63,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0229,43.6620535343,-79.5213419996,303063.01,4835567.277
-894362,4281929,2017.0,2017.0,1952.0,PRIVATE,2,Etobicoke Centre,7 BEXHILL CRT,4,13,2017-12-19,63,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0229,43.6617595882,-79.5213286681,303064.075,4835534.621
-894363,4281930,2017.0,2017.0,1952.0,PRIVATE,2,Etobicoke Centre,8 BEXHILL CRT,4,13,2017-12-19,63,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0229,43.661708566099996,-79.520857721,303102.053,4835528.942
-894364,4153222,2017.0,2017.0,1968.0,PRIVATE,11,University-Rosedale,206 ST GEORGE ST,11,105,2017-12-19,68,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,3.0,3.0,,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,,S1127,43.670727396000004,-79.40165065800001,312715.094,4836536.086
-894365,4154409,2018.0,2017.0,1967.0,PRIVATE,6,York Centre,5 AGATE RD,11,118,2017-12-19,62,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,4.0,3.0,3.0,2.0,3.0,3.0,,4.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,2.0,,N0627,43.72724984560001,-79.48529559999999,305969.165,4842810.005
-894366,4155055,2017.0,2017.0,1959.0,PRIVATE,8,Eglinton-Lawrence,1040 CASTLEFIELD AVE,4,44,2017-12-19,60,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,3.0,3.0,5.0,3.0,2.0,3.0,,3.0,3.0,,N0831,43.7010486833,-79.4499999014,308814.479,4839900.279
-894367,4154096,2017.0,2017.0,1965.0,PRIVATE,14,Toronto-Danforth,200 COSBURN AVE,6,45,2017-12-19,51,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,2.0,2.0,2.0,,2.0,3.0,,1.0,2.0,4.0,2.0,3.0,3.0,2.0,3.0,3.0,,S1422,43.6905032392,-79.34476857760001,317298.318,4838739.151000001
-894368,4288799,2017.0,2017.0,1920.0,PRIVATE,19,Beaches-East York,2393 QUEEN ST E,3,23,2017-12-19,57,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,3.0,2.0,5.0,3.0,2.0,2.0,,3.0,,,S1942,43.6725074759,-79.286877033,321970.23600000003,4836750.21
-894369,4288792,2017.0,2017.0,1920.0,PRIVATE,19,Beaches-East York,2401 QUEEN ST E,3,21,2017-12-19,57,Evaluation needs to be conducted in 1 year,14,3.0,4.0,3.0,2.0,3.0,2.0,,3.0,,,2.0,2.0,5.0,3.0,3.0,3.0,,2.0,,,S1942,43.672671514099996,-79.286127172,322030.657,4836768.588
-894370,4288787,2017.0,2017.0,1920.0,PRIVATE,19,Beaches-East York,2405 QUEEN ST E,3,23,2017-12-19,67,Evaluation needs to be conducted in 2 years,14,3.0,4.0,3.0,3.0,4.0,3.0,,3.0,,,3.0,3.0,5.0,4.0,3.0,3.0,,3.0,,,S1942,43.6726998751,-79.2858734346,322051.11,4836771.791
-894371,4153870,2017.0,2017.0,1959.0,PRIVATE,15,Don Valley West,56 RANLEIGH AVE,4,74,2017-12-19,75,Evaluation needs to be conducted in 2 years,17,4.0,3.0,3.0,4.0,4.0,3.0,,3.0,3.0,,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,5.0,,N1525,43.7282518882,-79.4012252952,312742.165,4842925.987
-894372,4286235,2017.0,2017.0,1993.0,TCHC,15,Don Valley West,8 BROADWAY AVE,7,83,2017-12-19,66,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,3.0,,4.0,,3.0,3.0,,4.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,N1526,43.70993270100001,-79.398315206,312978.82300000003,4840892.092
-894373,4286239,2017.0,2017.0,1993.0,TCHC,15,Don Valley West,12 BROADWAY AVE,7,57,2017-12-19,66,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,N1526,43.710394484,-79.398183371,313007.291,4840899.883
-894374,4154091,2017.0,2017.0,1965.0,PRIVATE,14,Toronto-Danforth,175 COSBURN AVE,4,30,2017-12-19,53,Evaluation needs to be conducted in 1 year,16,3.0,2.0,3.0,2.0,2.0,3.0,,2.0,,,2.0,2.0,5.0,3.0,2.0,3.0,3.0,3.0,2.0,,S1422,43.689958951499996,-79.3450906815,317272.466,4838678.636
-894375,4155061,2017.0,2017.0,1960.0,PRIVATE,8,Eglinton-Lawrence,851 BRIAR HILL AVE,3,10,2017-12-19,65,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,,3.0,4.0,2.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,N0831,43.7044391867,-79.4423269927,309432.683,4840277.301
-894376,4153469,2017.0,2017.0,1980.0,TCHC,11,University-Rosedale,341 BLOOR ST W,18,326,2017-12-19,77,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,3.0,S1135,43.6670231538,-79.4007760515,312786.358,4836123.699
-894377,4281257,2017.0,2017.0,1960.0,PRIVATE,6,York Centre,1395 SHEPPARD AVE W,3,40,2017-12-19,61,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,2.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0627,43.7440104,-79.4880842286,305748.977,4844715.406
-894378,4288796,2017.0,2017.0,1920.0,PRIVATE,19,Beaches-East York,2327 QUEEN ST E,3,27,2017-12-19,64,Evaluation needs to be conducted in 1 year,17,3.0,4.0,3.0,3.0,3.0,2.0,,3.0,,2.0,3.0,3.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,,S1942,43.671653798,-79.291250505,321617.55,4836655.433999999
-894379,4153665,2017.0,2017.0,1940.0,SOCIAL HOUSING,19,Beaches-East York,2363 QUEEN ST E,4,20,2017-12-19,82,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,5.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,,4.0,S1942,43.6721680178,-79.2886764155,321825.23699999996,4836712.125
-894380,4153845,2017.0,2017.0,1958.0,PRIVATE,15,Don Valley West,65 KEEWATIN AVE,4,50,2017-12-19,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,4.0,3.0,3.0,,3.0,4.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,,,N1526,43.7124138998,-79.3974353444,313049.654,4841166.871
-894381,4236708,2017.0,2017.0,2016.0,PRIVATE,15,Don Valley West,77 KEEWATIN AVE,8,79,2017-12-19,83,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,,4.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,N1526,,,313138.717,4841192.59
-894382,4155130,2017.0,2017.0,1969.0,PRIVATE,5,York South-Weston,24 PINEHILL CRES,4,29,2017-12-19,62,Evaluation needs to be conducted in 1 year,18,3.0,3.0,2.0,3.0,4.0,3.0,,3.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0531,43.688323353,-79.50178938,304639.897,4838486.396000001
-894383,4154354,2017.0,2017.0,1960.0,PRIVATE,5,York South-Weston,2418 KEELE ST,3,11,2017-12-19,59,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,2.0,,W0526,43.710013521099995,-79.4787756914,306494.919,4840895.271000001
-894384,4155199,2017.0,2017.0,1968.0,PRIVATE,5,York South-Weston,900 JANE ST,5,40,2017-12-19,67,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,4.0,4.0,4.0,,3.0,3.0,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0534,43.6782330421,-79.4969313119,305031.787,4837364.433
-894385,4153620,2017.0,2017.0,1989.0,SOCIAL HOUSING,14,Toronto-Danforth,970 EASTERN AVE,4,14,2017-12-18,75,Evaluation needs to be conducted in 2 years,15,4.0,3.0,3.0,4.0,3.0,4.0,,3.0,,,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,,S1442,43.663675162,-79.321078637,319214.185,4835763.44
-894386,4153637,2017.0,2017.0,1990.0,SOCIAL HOUSING,14,Toronto-Danforth,1480 QUEEN ST E,4,25,2017-12-18,79,Evaluation needs to be conducted in 2 years,16,4.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,,4.0,S1439,43.66557523,-79.321020795,319218.38899999997,4835974.545
-894387,4154202,2017.0,2017.0,1954.0,PRIVATE,15,Don Valley West,894 EGLINTON AVE E,4,44,2017-12-18,66,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,3.0,4.0,,4.0,,4.0,3.0,3.0,5.0,2.0,3.0,2.0,4.0,2.0,4.0,,N1529,43.71415005,-79.3634434361,315788.515,4841363.6280000005
-894388,4154200,2017.0,2017.0,1954.0,PRIVATE,15,Don Valley West,898 EGLINTON AVE E,3,21,2017-12-18,69,Evaluation needs to be conducted in 2 years,14,3.0,3.0,4.0,4.0,,3.0,,3.0,,4.0,4.0,3.0,3.0,4.0,4.0,3.0,,3.0,,,N1529,43.7143428943,-79.362633584,315853.739,4841385.163
-894389,4154192,2017.0,2017.0,1962.0,PRIVATE,15,Don Valley West,972 EGLINTON AVE E,6,49,2017-12-18,68,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,3.0,3.0,,4.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,N1529,43.715531981000005,-79.357969447,316229.097,4841518.848999999
-894390,4153540,2017.0,2017.0,2016.0,PRIVATE,13,Toronto Centre,66 ISABELLA ST,23,411,2017-12-18,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,5.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,5.0,S1322,43.668464093999994,-79.382890577,314228.321,4836286.651000001
-894391,4153497,2018.0,2017.0,1965.0,PRIVATE,13,Toronto Centre,85 WELLESLEY ST E,8,88,2017-12-18,66,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,3.0,,3.0,3.0,3.0,4.0,3.0,4.0,,4.0,3.0,,S1326,43.6656716445,-79.3798985663,314470.327,4835975.808999999
-894392,4155690,2017.0,2017.0,1970.0,PRIVATE,19,Beaches-East York,65 HALSEY AVE,9,113,2017-12-18,65,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,,4.0,3.0,3.0,3.0,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1927,43.6989642067,-79.29871129189999,321008.876,4839687.079
-894393,4156631,2017.0,2017.0,1970.0,PRIVATE,19,Beaches-East York,75 HALSEY AVE,11,139,2017-12-18,67,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,4.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,4.0,S1927,43.6991544673,-79.2978100309,321081.471,4839708.388
-894394,4154414,2017.0,2017.0,1957.0,PRIVATE,6,York Centre,2842 KEELE ST,3,12,2017-12-18,56,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,3.0,3.0,3.0,,2.0,,,2.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,N0627,43.73086204810001,-79.4833771869,306123.66,4843211.3319999995
-894395,4153450,2017.0,2017.0,1992.0,SOCIAL HOUSING,13,Toronto Centre,269 JARVIS ST,9,75,2017-12-18,59,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,,,S1328,43.6581272715,-79.37467532630001,314892.82899999997,4835138.263
-894396,4154882,2017.0,2017.0,1966.0,PRIVATE,16,Don Valley East,1704 VICTORIA PARK AVE,7,93,2017-12-18,84,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N1628,43.7350883959,-79.30754897189999,320287.25399999996,4843698.648
-894397,4154733,2017.0,2017.0,1974.0,PRIVATE,15,Don Valley West,44 STUBBS DR,7,84,2017-12-18,78,Evaluation needs to be conducted in 2 years,20,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,N1522,43.76149848520001,-79.3630422116,315812.209,4846623.819
-894398,4272882,2017.0,2017.0,1952.0,PRIVATE,11,University-Rosedale,468 SUMMERHILL AVE,3,34,2017-12-18,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,2.0,3.0,,3.0,,,3.0,2.0,5.0,4.0,3.0,4.0,,3.0,2.0,,S1130,43.686670483,-79.37486008100001,314872.929,4838310.28
-894399,4153437,,2017.0,1902.0,PRIVATE,13,Toronto Centre,181-183 GERRARD ST E,4,24,2017-12-18,60,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,2.0,3.0,,3.0,,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1328,,,315023.983,4835440.714
-894400,4296586,2018.0,2017.0,1950.0,PRIVATE,12,Toronto-St. Paul's,699 EGLINTON AVE W,4,27,2017-12-18,51,Evaluation needs to be conducted in 1 year,18,2.0,2.0,3.0,2.0,3.0,3.0,3.0,3.0,,4.0,2.0,3.0,4.0,2.0,2.0,2.0,2.0,2.0,2.0,,S1225,43.701892029,-79.420288428,311187.066,4839991.887
-894401,4153703,2017.0,2017.0,2009.0,PRIVATE,19,Beaches-East York,1908 GERRARD ST E,5,28,2017-12-18,64,Evaluation needs to be conducted in 1 year,15,3.0,2.0,3.0,3.0,2.0,4.0,,4.0,3.0,,3.0,2.0,3.0,5.0,3.0,4.0,,4.0,,,S1934,43.6804613958,-79.3122562519,319921.74,4837628.967
-894402,4296588,2018.0,2017.0,1950.0,PRIVATE,12,Toronto-St. Paul's,701 EGLINTON AVE W,4,32,2017-12-18,54,Evaluation needs to be conducted in 1 year,18,2.0,2.0,3.0,2.0,3.0,3.0,3.0,3.0,,4.0,2.0,3.0,5.0,2.0,3.0,3.0,2.0,2.0,2.0,,S1225,43.701862989,-79.42056547199999,311172.27,4839988.114
-894403,4156371,2017.0,2017.0,1992.0,SOCIAL HOUSING,5,York South-Weston,10 MAPLE LEAF DR,10,150,2017-12-18,74,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,3.0,,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,4.0,W0528,43.709517541400004,-79.5048440536,304394.109,4840839.994
-894404,4153495,2017.0,2017.0,1909.0,PRIVATE,13,Toronto Centre,42 MAITLAND ST,4,27,2017-12-18,65,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,4.0,3.0,3.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1326,43.6646189341,-79.38211083729999,314292.07,4835858.618
-894405,4171374,2017.0,2017.0,2013.0,PRIVATE,10,Spadina-Fort York,570 BAY ST,29,463,2017-12-18,82,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,3.0,,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,S1025,,,314153.011,4834834.397
-894406,4244973,2017.0,2017.0,2005.0,PRIVATE,13,Toronto Centre,925 BAY ST,33,293,2017-12-18,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,,4.0,4.0,3.0,4.0,3.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,5.0,S1325,43.66413332,-79.3866477012,313926.24199999997,4835804.164
-894407,4155906,2017.0,2017.0,1940.0,PRIVATE,9,Davenport,966 ST CLAIR AVE W,4,11,2017-12-18,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,,S0928,43.67961435,-79.436448672,309901.703,4837533.376
-894408,4233328,2017.0,2017.0,1926.0,PRIVATE,11,University-Rosedale,8 ST THOMAS ST,4,16,2017-12-18,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,4.0,3.0,4.0,4.0,3.0,4.0,,4.0,3.0,,S1136,43.6684272158,-79.3909472151,313578.849,4836280.711
-894409,4154075,2017.0,2017.0,1967.0,PRIVATE,19,Beaches-East York,195 BARRINGTON AVE,17,250,2017-12-18,74,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,,S1930,43.694879113,-79.302941491,320674.674,4839242.938999999
-894410,4154184,2017.0,2017.0,1941.0,PRIVATE,15,Don Valley West,1477 BAYVIEW AVE,3,105,2017-12-18,71,Evaluation needs to be conducted in 2 years,16,4.0,3.0,3.0,4.0,3.0,3.0,,4.0,,,4.0,3.0,5.0,3.0,4.0,3.0,3.0,4.0,4.0,,N1535,43.7028164419,-79.3727531693,315040.313,4840103.348999999
-894411,4279693,2017.0,2017.0,1952.0,PRIVATE,19,Beaches-East York,332 CHISHOLM AVE,3,12,2017-12-18,67,Evaluation needs to be conducted in 2 years,14,3.0,4.0,3.0,3.0,2.0,3.0,,4.0,,,3.0,2.0,5.0,4.0,3.0,4.0,,4.0,,,S1926,43.697292581099994,-79.3074870563,320325.566,4839501.516
-894412,4154176,2017.0,2017.0,1960.0,PRIVATE,16,Don Valley East,701 DON MILLS RD,25,333,2017-12-18,57,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,2.0,3.0,3.0,2.0,3.0,3.0,,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,N1630,43.708313291,-79.332845454,318255.235,4840720.6389999995
-894413,4153110,2018.0,2017.0,1929.0,PRIVATE,9,Davenport,927 ST CLAIR AVE W,4,23,2017-12-18,71,Evaluation needs to be conducted in 2 years,15,4.0,4.0,3.0,3.0,4.0,3.0,,4.0,,,3.0,2.0,3.0,4.0,4.0,4.0,,4.0,4.0,,S0928,43.6795067205,-79.4348853708,310034.484,4837507.881
-894414,4154537,2017.0,2017.0,1957.0,PRIVATE,8,Eglinton-Lawrence,108 RAJAH ST,3,12,2017-12-18,60,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,5.0,2.0,3.0,3.0,3.0,3.0,3.0,,N0823,43.731024096999995,-79.43881577100001,309713.26399999997,4843231.969
-894415,4154536,2017.0,2017.0,1957.0,PRIVATE,8,Eglinton-Lawrence,110 RAJAH ST,3,12,2017-12-18,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N0823,43.73125641399999,-79.438819074,309712.979,4843257.778
-894416,4154535,2017.0,2017.0,1957.0,PRIVATE,8,Eglinton-Lawrence,112 RAJAH ST,3,12,2017-12-18,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0823,43.731503933,-79.438923714,309704.529,4843285.27
-894417,4153638,2017.0,2017.0,1989.0,SOCIAL HOUSING,14,Toronto-Danforth,126 COXWELL AVE,4,14,2017-12-18,76,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,4.0,3.0,4.0,,3.0,,,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,,,S1439,43.6697394508,-79.318269183,319439.544,4836436.702
-894418,4155820,2017.0,2017.0,1979.0,PRIVATE,11,University-Rosedale,235 BLOOR ST E,28,479,2017-12-18,74,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,3.0,4.0,S1137,43.671276801400005,-79.3809034624,314388.38300000003,4836598.4
-894419,4156036,2017.0,2017.0,1996.0,SOCIAL HOUSING,14,Toronto-Danforth,17 RENWICK CRES,4,80,2017-12-18,67,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,4.0,3.0,4.0,3.0,3.0,4.0,4.0,3.0,,S1441,43.66049693,-79.33653651899999,317958.359,4835419.239
-894420,4155150,2017.0,2017.0,1950.0,PRIVATE,5,York South-Weston,166 QUEENS DR,3,11,2017-12-18,65,Evaluation needs to be conducted in 1 year,16,3.0,3.0,2.0,3.0,3.0,3.0,,4.0,,4.0,3.0,4.0,5.0,4.0,3.0,3.0,,3.0,2.0,,W0525,43.7065405201,-79.510586885,303931.26399999997,4840509.34
-894421,4154203,2017.0,2017.0,1961.0,PRIVATE,15,Don Valley West,892 EGLINTON AVE E,4,37,2017-12-18,67,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,4.0,3.0,4.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,3.0,2.0,3.0,,,N1529,43.714037034899995,-79.3641217353,315733.878,4841350.981000001
-894422,4155031,2021.0,2017.0,1960.0,PRIVATE,12,Toronto-St. Paul's,1801 EGLINTON AVE W,3,41,2017-12-15,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,3.0,,4.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,S1222,43.695756472,-79.449018677,308893.65,4839313.352
-894423,4153002,,2017.0,1910.0,PRIVATE,4,Parkdale-High Park,1570 KING ST W,3,18,2017-12-15,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,4.0,,2.0,,,S0436,43.638091463,-79.44404887399999,309298.548,4832907.31
-894424,4154326,2017.0,2017.0,1960.0,PRIVATE,5,York South-Weston,1607 JANE ST,3,29,2017-12-15,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0528,43.7007645631,-79.5028199855,304557.17699999997,4839867.602
-894425,4153038,2020.0,2017.0,1890.0,PRIVATE,4,Parkdale-High Park,1340 KING ST W,4,16,2017-12-15,56,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,3.0,3.0,2.0,,3.0,,,3.0,2.0,3.0,3.0,3.0,3.0,,3.0,3.0,,S0436,43.6379541614,-79.43303340050001,310187.598,4832891.726
-894426,4152975,2018.0,2017.0,1965.0,PRIVATE,4,Parkdale-High Park,24 TYNDALL AVE,7,73,2017-12-15,52,Evaluation needs to be conducted in 1 year,17,3.0,3.0,2.0,3.0,3.0,3.0,,3.0,2.0,,2.0,3.0,3.0,2.0,3.0,3.0,2.0,2.0,2.0,,S0437,43.6351285886,-79.4284822778,310555.059,4832578.112
-894427,4153066,2017.0,2017.0,1966.0,PRIVATE,4,Parkdale-High Park,55 TRILLER AVE,22,294,2017-12-15,63,Evaluation needs to be conducted in 1 year,19,4.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,S0435,43.6399998042,-79.4436738938,309328.92600000004,4833118.38
-894428,4152717,2017.0,2017.0,1962.0,PRIVATE,21,Scarborough Centre,2230 LAWRENCE AVE E,7,64,2017-12-15,62,Evaluation needs to be conducted in 1 year,18,2.0,3.0,4.0,3.0,3.0,4.0,3.0,2.0,2.0,,3.0,2.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,,E2128,43.7491756085,-79.2789651646,322585.594,4845269.362
-894429,4152716,2017.0,2017.0,1968.0,PRIVATE,21,Scarborough Centre,2250 LAWRENCE AVE E,6,33,2017-12-15,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,4.0,3.0,4.0,3.0,4.0,3.0,,3.0,3.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,,E2128,43.7493270741,-79.2783368218,322636.154,4845286.324
-894430,4152715,2017.0,2017.0,1960.0,PRIVATE,21,Scarborough Centre,2260 LAWRENCE AVE E,5,26,2017-12-15,61,Evaluation needs to be conducted in 1 year,18,1.0,3.0,3.0,3.0,3.0,3.0,,4.0,2.0,2.0,2.0,3.0,5.0,4.0,4.0,4.0,3.0,3.0,3.0,,E2128,43.749400376000004,-79.2779437479,322667.789,4845294.552
-894431,4156791,2017.0,2017.0,1960.0,PRIVATE,16,Don Valley East,876 LAWRENCE AVE E,3,12,2017-12-15,60,Evaluation needs to be conducted in 1 year,16,3.0,3.0,2.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N1623,43.736202426000006,-79.34939102,316916.219,4843816.4
-894432,4156792,2017.0,2017.0,1960.0,PRIVATE,16,Don Valley East,878 LAWRENCE AVE E,3,11,2017-12-15,59,Evaluation needs to be conducted in 1 year,16,3.0,2.0,2.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N1623,43.736369132,-79.349349482,316919.531,4843834.926
-894433,4250549,2017.0,2017.0,1958.0,PRIVATE,16,Don Valley East,980 LAWRENCE AVE E,6,64,2017-12-15,69,Evaluation needs to be conducted in 2 years,20,4.0,3.0,3.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,N1623,43.73749502,-79.343845112,317308.56,4843953.37
-894434,4152652,2017.0,2017.0,1964.0,PRIVATE,21,Scarborough Centre,1765 LAWRENCE AVE E,7,103,2017-12-15,63,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,4.0,3.0,4.0,3.0,,3.0,2.0,4.0,3.0,3.0,3.0,4.0,4.0,3.0,2.0,E2131,43.742331818100006,-79.3064455289,320374.272,4844503.53
-894435,4152654,2017.0,2017.0,1993.0,SOCIAL HOUSING,21,Scarborough Centre,2155 LAWRENCE AVE E,11,243,2017-12-15,64,Evaluation needs to be conducted in 1 year,19,4.0,4.0,3.0,3.0,3.0,3.0,2.0,2.0,4.0,,3.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,E2132,43.747083296199996,-79.2854390765,322064.815,4845035.55
-894436,4153640,2017.0,2017.0,1965.0,PRIVATE,14,Toronto-Danforth,1395 GERRARD ST E,3,12,2017-12-15,73,Evaluation needs to be conducted in 2 years,14,3.0,4.0,4.0,4.0,,4.0,,3.0,,,4.0,2.0,5.0,3.0,4.0,4.0,,3.0,4.0,,S1439,43.671597433100004,-79.32409735819999,318969.114,4836642.1219999995
-894437,4152760,2017.0,2017.0,1950.0,PRIVATE,21,Scarborough Centre,1385 MIDLAND AVE,13,144,2017-12-15,63,Evaluation needs to be conducted in 1 year,20,3.0,3.0,4.0,2.0,3.0,3.0,4.0,3.0,3.0,3.0,2.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,E2134,43.750636326000006,-79.2638428764,323803.012,4845434.954
-894438,4152661,2017.0,2017.0,1965.0,PRIVATE,21,Scarborough Centre,5 LYNVALLEY CRES,7,92,2017-12-15,64,Evaluation needs to be conducted in 1 year,18,4.0,4.0,3.0,2.0,3.0,3.0,3.0,3.0,4.0,,2.0,4.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,,E2126,43.747732393,-79.310648196,320034.137,4845103.674
-894439,4152697,2017.0,2017.0,1960.0,PRIVATE,21,Scarborough Centre,2354 EGLINTON AVE E,5,72,2017-12-15,72,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,4.0,3.0,4.0,,5.0,3.0,3.0,4.0,4.0,5.0,4.0,3.0,4.0,4.0,3.0,3.0,,E2133,43.7316750326,-79.2734533673,323034.787,4843326.312
-894440,4167686,2017.0,2017.0,1960.0,PRIVATE,21,Scarborough Centre,2356 EGLINTON AVE E,5,70,2017-12-15,78,Evaluation needs to be conducted in 2 years,19,3.0,4.0,3.0,4.0,4.0,4.0,5.0,5.0,3.0,3.0,4.0,4.0,5.0,5.0,3.0,4.0,4.0,4.0,3.0,,E2133,43.7318415798,-79.2729961142,323071.57300000003,4843344.916
-894441,4152696,2017.0,2017.0,1965.0,PRIVATE,21,Scarborough Centre,2360 EGLINTON AVE E,7,130,2017-12-15,72,Evaluation needs to be conducted in 2 years,18,5.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,3.0,,3.0,2.0,5.0,3.0,4.0,4.0,5.0,2.0,4.0,,E2133,43.731893112,-79.272217382,323118.226,4843364.663
-894442,4156471,2017.0,2017.0,1960.0,PRIVATE,21,Scarborough Centre,1545 BIRCHMOUNT RD,4,37,2017-12-15,71,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,4.0,3.0,4.0,,3.0,,,4.0,4.0,5.0,3.0,3.0,3.0,,3.0,4.0,,E2128,43.760276601,-79.289405137,321709.409,4846508.482
-894443,4152720,2017.0,2017.0,1950.0,PRIVATE,21,Scarborough Centre,1555 BIRCHMOUNT RD,6,46,2017-12-15,61,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,2.0,2.0,3.0,3.0,3.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,,E2128,43.760627747200004,-79.289722515,321716.055,4846539.39
-894444,4152986,2019.0,2017.0,1959.0,PRIVATE,4,Parkdale-High Park,140 SPRINGHURST AVE,5,20,2017-12-15,53,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,3.0,3.0,2.0,,2.0,,,3.0,2.0,3.0,3.0,3.0,3.0,,2.0,3.0,,S0437,43.6357144726,-79.43650599680001,309907.601,4832642.713
-894445,4152855,2017.0,2017.0,1973.0,PRIVATE,22,Scarborough-Agincourt,100 SPRUCEWOOD CRT,15,206,2017-12-15,78,Evaluation needs to be conducted in 2 years,18,5.0,5.0,5.0,4.0,4.0,4.0,4.0,3.0,5.0,,3.0,2.0,5.0,4.0,4.0,4.0,4.0,3.0,2.0,,E2225,43.79434019560001,-79.3239937212,318948.686,4850278.35
-894446,4154065,2017.0,2017.0,1950.0,PRIVATE,19,Beaches-East York,2908 ST CLAIR AVE E,4,31,2017-12-15,72,Evaluation needs to be conducted in 2 years,15,3.0,4.0,2.0,4.0,4.0,3.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,3.0,,3.0,3.0,,S1924,43.708358407,-79.30116720550001,320808.442,4840730.288
-894447,4152718,2017.0,2017.0,1967.0,PRIVATE,21,Scarborough Centre,1475 BIRCHMOUNT RD,5,28,2017-12-15,58,Evaluation needs to be conducted in 1 year,17,2.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,2.0,3.0,4.0,3.0,3.0,3.0,2.0,3.0,3.0,,E2128,43.756711080100004,-79.2880430634,321852.38800000004,4846104.6110000005
-894448,4152719,2017.0,2017.0,1960.0,PRIVATE,21,Scarborough Centre,1477 BIRCHMOUNT RD,3,21,2017-12-15,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,,,3.0,4.0,4.0,2.0,3.0,3.0,3.0,3.0,3.0,,E2128,43.7569401059,-79.2882167684,321838.336,4846130.018999999
-894449,4153727,2017.0,2017.0,1994.0,SOCIAL HOUSING,19,Beaches-East York,62 DAWES RD,4,14,2017-12-15,76,Evaluation needs to be conducted in 2 years,14,3.0,3.0,4.0,4.0,4.0,4.0,,3.0,,,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,,,S1930,43.6901517338,-79.29715496109999,321136.691,4838708.346
-894450,4153728,2017.0,2017.0,2007.0,SOCIAL HOUSING,19,Beaches-East York,2802 DANFORTH AVE,4,25,2017-12-15,88,Evaluation needs to be conducted in 3 years,16,4.0,5.0,4.0,4.0,5.0,5.0,4.0,5.0,4.0,,5.0,3.0,4.0,4.0,5.0,4.0,,5.0,,,S1930,43.689655844899995,-79.2961972389,321214.033,4838653.442
-894451,4153716,2017.0,2017.0,1956.0,PRIVATE,19,Beaches-East York,619 WOODBINE AVE,4,50,2017-12-15,70,Evaluation needs to be conducted in 2 years,16,3.0,4.0,3.0,3.0,3.0,4.0,,4.0,,,2.0,2.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,,S1935,43.677895694700005,-79.3088113763,320200.146,4837344.5430000005
-894452,4152555,2017.0,2017.0,1957.0,PRIVATE,20,Scarborough Southwest,2412 QUEEN ST E,3,17,2017-12-15,65,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,2.0,,4.0,,,3.0,2.0,5.0,4.0,3.0,4.0,4.0,3.0,3.0,,E2033,43.6748716677,-79.2794749048,322566.439,4837014.405
-894453,4152864,2017.0,2017.0,1974.0,PRIVATE,22,Scarborough-Agincourt,10 BRIDLETOWNE CRCL,14,175,2017-12-15,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,,4.0,4.0,5.0,4.0,4.0,3.0,4.0,3.0,2.0,5.0,E2225,43.795556032,-79.318124141,319420.479,4850415.385
-894454,4153052,2020.0,2017.0,1918.0,PRIVATE,4,Parkdale-High Park,320 RONCESVALLES AVE,4,16,2017-12-15,49,Building Audit,15,2.0,2.0,3.0,2.0,,3.0,,3.0,,,2.0,3.0,3.0,2.0,3.0,3.0,2.0,2.0,2.0,,S0432,43.65001845689999,-79.4508259143,308751.234,4834231.062
-894455,4153071,2018.0,2017.0,1920.0,PRIVATE,4,Parkdale-High Park,467 RONCESVALLES AVE,4,15,2017-12-15,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,,,S0433,43.653029024,-79.451300765,308712.47,4834566.458000001
-894456,4152870,2017.0,2017.0,1968.0,PRIVATE,22,Scarborough-Agincourt,3735 SHEPPARD AVE E,4,52,2017-12-15,68,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,,4.0,2.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,,E2232,43.7810845583,-79.2961863382,321190.058,4848810.773
-894457,4152693,2017.0,2017.0,1969.0,PRIVATE,21,Scarborough Centre,15 ROSEMOUNT DR,7,72,2017-12-15,55,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,2.0,2.0,3.0,3.0,2.0,3.0,3.0,2.0,3.0,3.0,,E2133,43.7322696922,-79.2741030573,322982.267,4843392.233
-894458,4153032,2018.0,2017.0,1965.0,PRIVATE,4,Parkdale-High Park,165 JAMESON AVE,7,82,2017-12-15,54,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,3.0,2.0,3.0,4.0,2.0,3.0,2.0,3.0,3.0,3.0,1.0,,S0436,43.63799773979999,-79.4358904855,309957.07300000003,4832896.397
-894459,4152695,2017.0,2017.0,1971.0,PRIVATE,21,Scarborough Centre,10 IONVIEW RD,6,62,2017-12-15,53,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,2.0,2.0,2.0,,3.0,3.0,,2.0,3.0,4.0,2.0,3.0,3.0,3.0,3.0,1.0,,E2133,43.7320328108,-79.27180036840001,323167.844,4843366.427
-894460,4152865,2017.0,2017.0,1974.0,PRIVATE,22,Scarborough-Agincourt,3050 PHARMACY AVE,18,252,2017-12-15,68,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,3.0,3.0,3.0,4.0,2.0,5.0,,4.0,2.0,5.0,3.0,4.0,2.0,3.0,3.0,2.0,3.0,E2221,43.7955806314,-79.3274423479,318670.875,4850415.581
-894461,4153045,2018.0,2017.0,1940.0,PRIVATE,4,Parkdale-High Park,118 RONCESVALLES AVE,3,30,2017-12-15,70,Evaluation needs to be conducted in 2 years,14,3.0,3.0,4.0,3.0,4.0,4.0,,4.0,,,3.0,3.0,5.0,3.0,3.0,4.0,,3.0,,,S0434,43.6425606472,-79.4482030083,308963.328,4833402.643999999
-894462,4152635,2017.0,2017.0,1955.0,PRIVATE,21,Scarborough Centre,860 PHARMACY AVE,4,30,2017-12-15,70,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,3.0,3.0,4.0,,5.0,,,3.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,,E2131,43.7280385906,-79.298841109,320990.589,4842917.106000001
-894463,4156383,2017.0,2017.0,1961.0,PRIVATE,19,Beaches-East York,106 GOODWOOD PARK CRT,7,129,2017-12-15,69,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,,4.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,S1930,43.695029178,-79.294709895,321332.216,4839251.643
-894464,4154521,2018.0,2017.0,1958.0,PRIVATE,8,Eglinton-Lawrence,3638 BATHURST ST,7,48,2017-12-14,60,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0823,43.73338951,-79.4335900368,310168.085,4843485.155
-894465,4153971,2019.0,2017.0,1953.0,PRIVATE,8,Eglinton-Lawrence,2400 BATHURST ST,6,31,2017-12-14,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,,4.0,,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,N0832,43.7050294504,-79.4269669508,310670.598,4840343.952
-894466,4243768,2017.0,2017.0,1960.0,PRIVATE,19,Beaches-East York,156 BARRINGTON AVE,3,12,2017-12-14,59,Evaluation needs to be conducted in 1 year,15,2.0,3.0,3.0,2.0,3.0,4.0,,3.0,,,2.0,2.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1930,43.693721495,-79.30324878399999,320644.24199999997,4839104.731000001
-894467,4154048,2017.0,2017.0,1959.0,PRIVATE,19,Beaches-East York,612 DAWES RD,5,60,2017-12-14,58,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,4.0,2.0,2.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1927,43.707368794,-79.295895516,321233.295,4840622.311000001
-894468,4152876,2017.0,2017.0,1974.0,PRIVATE,22,Scarborough-Agincourt,10 CARABOB CRT,15,196,2017-12-14,72,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,2.0,,E2229,43.7832508381,-79.29765448149999,321071.297,4849051.152
-894469,4221285,2017.0,2017.0,1970.0,PRIVATE,19,Beaches-East York,390 DAWES RD,14,246,2017-12-14,60,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,4.0,4.0,3.0,4.0,3.0,,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,1.0,,S1927,43.7002035696,-79.2982003313,321049.73,4839824.865
-894470,4154051,2017.0,2017.0,1970.0,SOCIAL HOUSING,19,Beaches-East York,418 DAWES RD,5,49,2017-12-14,66,Evaluation needs to be conducted in 2 years,18,2.0,2.0,3.0,3.0,3.0,3.0,,3.0,3.0,,3.0,3.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,S1927,43.7013834487,-79.29755669640001,321101.292,4839956.069
-894471,4250641,2018.0,2017.0,1949.0,PRIVATE,14,Toronto-Danforth,338-342 DONLANDS AVE,3,36,2017-12-14,65,Evaluation needs to be conducted in 1 year,15,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,4.0,3.0,,3.0,3.0,,S1422,,,317463.05100000004,4839006.188
-894472,4154043,2017.0,2017.0,1958.0,PRIVATE,19,Beaches-East York,506 DAWES RD,4,67,2017-12-14,68,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,4.0,4.0,3.0,,4.0,4.0,,3.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,S1927,43.703984006000006,-79.297455687,321108.472,4840245.962
-894473,4154042,2017.0,2017.0,1959.0,PRIVATE,19,Beaches-East York,508 DAWES RD,4,66,2017-12-14,70,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,3.0,3.0,2.0,,4.0,4.0,,3.0,2.0,5.0,3.0,4.0,4.0,4.0,4.0,,,S1927,43.704145763,-79.298173276,321151.291,4840256.044
-894474,4154040,2017.0,2017.0,1950.0,PRIVATE,19,Beaches-East York,514 DAWES RD,4,34,2017-12-14,58,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,2.0,3.0,3.0,,2.0,,,2.0,2.0,4.0,3.0,2.0,3.0,4.0,4.0,3.0,,S1927,43.7046434956,-79.2969607849,321148.442,4840318.3719999995
-894475,4154039,2017.0,2017.0,1953.0,PRIVATE,19,Beaches-East York,516 DAWES RD,4,46,2017-12-14,72,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,3.0,3.0,4.0,,3.0,,,4.0,1.0,5.0,4.0,4.0,3.0,5.0,4.0,,,S1927,43.7048505726,-79.2968176488,321159.922,4840341.406
-894476,4155230,2018.0,2017.0,1959.0,PRIVATE,3,Etobicoke-Lakeshore,65 CLOVERHILL RD,4,24,2017-12-14,69,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,4.0,4.0,4.0,,3.0,,,4.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,,W0329,43.6354908958,-79.4906112543,305541.855,4832616.072
-894477,4152631,2017.0,2017.0,1955.0,PRIVATE,21,Scarborough Centre,40 CRAIGTON DR,4,30,2017-12-14,69,Evaluation needs to be conducted in 2 years,17,3.0,4.0,3.0,3.0,3.0,4.0,,3.0,,3.0,3.0,4.0,5.0,4.0,3.0,4.0,3.0,4.0,3.0,,E2131,43.727425208,-79.2987499996,320998.094,4842848.978999999
-894478,4154962,2018.0,2017.0,1928.0,PRIVATE,12,Toronto-St. Paul's,50 RAGLAN AVE,4,32,2017-12-14,64,Evaluation needs to be conducted in 1 year,14,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,3.0,4.0,3.0,3.0,,3.0,,,S1229,43.6844655265,-79.4205577721,311189.247,4838059.79
-894479,4154961,2017.0,2017.0,1960.0,PRIVATE,12,Toronto-St. Paul's,54 RAGLAN AVE,4,16,2017-12-14,67,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,3.0,5.0,,3.0,,,4.0,4.0,3.0,3.0,3.0,3.0,,3.0,3.0,,S1229,43.6845316725,-79.420531395,311191.36699999997,4838067.141
-894480,4153967,2018.0,2017.0,1960.0,PRIVATE,8,Eglinton-Lawrence,24 SHALLMAR BLVD,4,52,2017-12-14,78,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,3.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N0832,43.7045285856,-79.4267238856,310690.23699999996,4840288.326
-894481,4155631,,2017.0,2019.0,SOCIAL HOUSING,8,Eglinton-Lawrence,2 REPLIN RD,4,30,2017-12-14,69,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,4.0,,4.0,3.0,,N0823,43.7185874066,-79.4436438925,309325.485,4841849.061000001
-894482,4154482,2018.0,2017.0,1950.0,PRIVATE,8,Eglinton-Lawrence,125 SHELBORNE AVE,4,25,2017-12-14,61,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0827,43.7155753333,-79.42945624,310468.984,4841515.3319999995
-894483,4153194,2019.0,2017.0,1920.0,PRIVATE,11,University-Rosedale,245 A HOWLAND AVE,3,24,2017-12-14,67,Evaluation needs to be conducted in 2 years,14,3.0,3.0,3.0,4.0,,3.0,,4.0,,,4.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1126,43.672858631000004,-79.411200872,311944.724,4836772.006
-894484,4153679,2017.0,2017.0,1954.0,PRIVATE,19,Beaches-East York,140 KINGSTON RD,4,60,2017-12-14,65,Evaluation needs to be conducted in 1 year,15,3.0,2.0,2.0,4.0,4.0,4.0,,3.0,,,4.0,3.0,3.0,4.0,3.0,4.0,,3.0,3.0,,S1937,43.6709421277,-79.3114896572,319985.941,4836571.526000001
-894485,4155207,,2017.0,1955.0,PRIVATE,4,Parkdale-High Park,585 JANE ST,4,25,2017-12-14,59,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,,,3.0,3.0,4.0,2.0,3.0,3.0,,3.0,3.0,,S0422,43.6645529032,-79.4903043858,305566.283,4835844.669
-894486,4155362,2018.0,2017.0,1968.0,PRIVATE,2,Etobicoke Centre,35 WIDDICOMBE HILL,11,121,2017-12-14,73,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,3.0,3.0,4.0,,W0222,43.678668475,-79.550611679,300703.359,4837415.062
-894487,4155185,2019.0,2017.0,1952.0,PRIVATE,5,York South-Weston,1061 WESTON RD,3,11,2017-12-14,58,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,2.0,3.0,2.0,,3.0,,3.0,2.0,3.0,5.0,2.0,3.0,3.0,,2.0,4.0,,W0535,43.6857167173,-79.48639998819999,305880.842,4838195.8889999995
-894488,4155045,2020.0,2017.0,1959.0,PRIVATE,8,Eglinton-Lawrence,330 HOPEWELL AVE,7,67,2017-12-14,66,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,4.0,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0831,43.7010141421,-79.44216061,309446.356,4839896.852
-894489,4155257,2017.0,2017.0,1968.0,PRIVATE,3,Etobicoke-Lakeshore,5 HILL HEIGHTS RD,5,36,2017-12-14,60,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,2.0,,3.0,,2.0,,,3.0,3.0,4.0,3.0,3.0,4.0,2.0,4.0,3.0,,W0327,43.638458523599994,-79.4925019413,305389.291,4832945.746
-894490,4154510,,2017.0,1957.0,PRIVATE,8,Eglinton-Lawrence,32 WASDALE CRES,3,10,2017-12-14,62,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,4.0,,4.0,,3.0,3.0,2.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0823,43.730826184099996,-79.4370615952,309854.86,4843209.136
-894491,4154542,2018.0,2017.0,1950.0,PRIVATE,8,Eglinton-Lawrence,63 WASDALE CRES,3,11,2017-12-14,70,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,3.0,4.0,4.0,,4.0,,,4.0,2.0,5.0,3.0,3.0,4.0,3.0,3.0,3.0,,N0823,43.7301864621,-79.4373815956,309829.135,4843138.046
-894492,4155927,2017.0,2017.0,1971.0,PRIVATE,1,Etobicoke North,10 WILLOWRIDGE RD,19,328,2017-12-14,66,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,3.0,4.0,3.0,4.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,4.0,,W0137,,,299268.886,4837017.142
-894493,4153181,2018.0,2017.0,1960.0,PRIVATE,11,University-Rosedale,22 WALMER RD,8,71,2017-12-14,67,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,4.0,3.0,3.0,,4.0,3.0,,3.0,3.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,,S1126,43.667662201300004,-79.4064427031,312329.29600000003,4836194.1680000005
-894494,4155363,2018.0,2017.0,1968.0,PRIVATE,2,Etobicoke Centre,25 WIDDICOMBE HILL,11,122,2017-12-14,72,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,3.0,3.0,3.0,4.0,,W0222,43.679208785,-79.548319808,300888.16,4837475.011
-894495,4154488,,2017.0,1959.0,PRIVATE,8,Eglinton-Lawrence,773 LAWRENCE AVE W,3,10,2017-12-14,59,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,3.0,,3.0,,3.0,,,3.0,2.0,5.0,2.0,3.0,3.0,3.0,3.0,3.0,,N0827,43.713971711999996,-79.452927496,308577.452,4841336.772
-894496,4154487,2018.0,2017.0,1961.0,PRIVATE,8,Eglinton-Lawrence,777 LAWRENCE AVE W,3,10,2017-12-14,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,3.0,,4.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,N0827,43.713831691,-79.45359547,308523.63300000003,4841321.187
-894497,4154177,2017.0,2017.0,1947.0,PRIVATE,15,Don Valley West,871 MILLWOOD RD,3,15,2017-12-14,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,2.0,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N1535,43.70375659770001,-79.3653122731,315639.846,4840208.712
-894498,4152657,2017.0,2017.0,1962.0,PRIVATE,21,Scarborough Centre,1790 LAWRENCE AVE E,5,36,2017-12-14,72,Evaluation needs to be conducted in 2 years,19,3.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,4.0,3.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,,E2126,43.7433508938,-79.3059187753,320416.436,4844616.844
-894499,4156303,2017.0,2017.0,1961.0,PRIVATE,19,Beaches-East York,108 GOODWOOD PARK CRT,6,120,2017-12-14,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,4.0,3.0,2.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,S1930,43.694890666999996,-79.293643202,321418.24,4839236.464
-894500,4153943,2018.0,2017.0,1950.0,PRIVATE,12,Toronto-St. Paul's,697 EGLINTON AVE W,4,33,2017-12-14,51,Evaluation needs to be conducted in 1 year,18,2.0,2.0,3.0,2.0,3.0,3.0,3.0,3.0,,4.0,2.0,3.0,4.0,2.0,2.0,2.0,2.0,2.0,2.0,,S1225,43.701949088,-79.42003485800001,311209.892,4839986.927
-894501,4154486,2019.0,2017.0,1966.0,PRIVATE,8,Eglinton-Lawrence,457 MARLEE AVE,4,31,2017-12-14,60,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,3.0,2.0,5.0,3.0,3.0,3.0,2.0,3.0,3.0,,N0827,43.707934941400005,-79.4429642694,309381.057,4840665.642
-894502,4154036,2017.0,2017.0,1956.0,PRIVATE,19,Beaches-East York,100 GOODWOOD PARK CRT,6,102,2017-12-14,68,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,4.0,5.0,3.0,3.0,3.0,4.0,4.0,3.0,,S1930,43.695437477,-79.296720543,321156.91,4839298.146000001
-894503,4154035,2017.0,2017.0,1960.0,PRIVATE,19,Beaches-East York,102 GOODWOOD PARK CRT,7,132,2017-12-14,67,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,,S1930,43.695541815,-79.296047547,321224.249,4839308.335
-894504,4154034,2017.0,2017.0,1960.0,PRIVATE,19,Beaches-East York,104 GOODWOOD PARK CRT,7,122,2017-12-14,67,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,4.0,5.0,4.0,3.0,3.0,3.0,3.0,3.0,,S1930,43.695428453000005,-79.295514265,321267.267,4839295.845
-894505,4269245,2018.0,2017.0,1975.0,PRIVATE,18,Willowdale,6 FOREST LANEWAY,29,406,2017-12-13,63,Evaluation needs to be conducted in 1 year,18,4.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,N1826,,,312081.81,4846729.53
-894506,4153235,,2017.0,1918.0,PRIVATE,11,University-Rosedale,661 HURON ST,3,15,2017-12-13,61,Evaluation needs to be conducted in 1 year,14,3.0,3.0,4.0,3.0,,3.0,,3.0,,,3.0,3.0,5.0,2.0,3.0,2.0,,3.0,3.0,,S1127,43.674829239,-79.40427079199999,312503.317,4836991.544
-894507,4156744,2018.0,2017.0,1945.0,PRIVATE,9,Davenport,36 ROSECLIFFE AVE,4,26,2017-12-13,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,4.0,4.0,3.0,4.0,3.0,3.0,3.0,,3.0,2.0,,S0925,43.683961366000005,-79.443796242,309315.445,4838003.208000001
-894508,4155900,2017.0,2017.0,1895.0,PRIVATE,11,University-Rosedale,88 OXFORD ST,4,11,2017-12-13,56,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,3.0,3.0,2.0,,3.0,,,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,,,S1143,43.655848559,-79.404681489,312472.609,4834882.84
-894509,4152574,2018.0,2017.0,1959.0,PRIVATE,20,Scarborough Southwest,1336 KINGSTON RD,4,37,2017-12-13,59,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,3.0,3.0,3.0,3.0,,3.0,3.0,,E2033,43.6854962871,-79.2749732512,322926.25899999996,4838195.735
-894510,4153153,2018.0,2017.0,1925.0,PRIVATE,9,Davenport,34 HEYDON PARK RD,3,31,2017-12-13,59,Evaluation needs to be conducted in 1 year,14,2.0,3.0,3.0,3.0,2.0,3.0,,3.0,,,2.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,S0934,43.652968445,-79.42702254699999,310670.881,4834561.084
-894511,4293577,2018.0,2017.0,1975.0,PRIVATE,2,Etobicoke Centre,57 WIDDICOMBE HILL BLVD,18,139,2017-12-13,79,Evaluation needs to be conducted in 2 years,17,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,3.0,,W0222,43.677987512799994,-79.5535461519,300466.998,4837338.574
-894512,4152951,2017.0,2017.0,1957.0,PRIVATE,4,Parkdale-High Park,99 TYNDALL AVE,9,70,2017-12-13,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,4.0,3.0,3.0,3.0,,S0437,43.6366349836,-79.4276516523,310621.94399999996,4832745.515
-894513,4152971,2018.0,2017.0,1965.0,PRIVATE,4,Parkdale-High Park,100 TYNDALL AVE,6,48,2017-12-13,58,Evaluation needs to be conducted in 1 year,17,3.0,2.0,3.0,2.0,2.0,3.0,,4.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,S0437,43.6364200969,-79.4289537195,310516.904,4832721.558
-894514,4270720,2018.0,2017.0,1965.0,PRIVATE,4,Parkdale-High Park,103 WEST LODGE AVE,18,371,2017-12-13,59,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,2.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,,S0435,43.644918456000006,-79.435885913,309956.6,4833666.2
-894515,4270721,2018.0,2017.0,1965.0,PRIVATE,4,Parkdale-High Park,105 WEST LODGE AVE,19,371,2017-12-13,59,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,2.0,4.0,3.0,2.0,3.0,3.0,,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,S0435,43.64516038,-79.43669445399999,309891.349,4833693.03
-894516,4168721,2021.0,2017.0,1956.0,PRIVATE,5,York South-Weston,870 WESTON RD,3,11,2017-12-13,66,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,4.0,3.0,3.0,5.0,3.0,4.0,4.0,,4.0,3.0,,W0535,43.6831377116,-79.48055707479999,306351.965,4837909.4569999995
-894517,4155190,2021.0,2017.0,1956.0,PRIVATE,5,York South-Weston,872 WESTON RD,3,12,2017-12-13,74,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,3.0,4.0,2.0,,4.0,,4.0,3.0,3.0,5.0,5.0,4.0,4.0,,3.0,4.0,,W0535,43.683182052700005,-79.4807822687,306333.807,4837914.38
-894518,4155400,2018.0,2017.0,1972.0,PRIVATE,2,Etobicoke Centre,580 THE EAST MALL,16,122,2017-12-13,69,Evaluation needs to be conducted in 2 years,19,4.0,3.0,3.0,3.0,4.0,4.0,4.0,2.0,5.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,5.0,3.0,,W0232,43.65370022649999,-79.5643718733,299591.993,4834640.898
-894519,4153463,2019.0,2017.0,1900.0,PRIVATE,11,University-Rosedale,378 MARKHAM ST,4,17,2017-12-13,47,Building Audit,14,2.0,3.0,3.0,2.0,,2.0,,2.0,,,2.0,2.0,3.0,2.0,3.0,2.0,3.0,2.0,,,S1133,43.6584478213,-79.4103098841,312018.591,4835170.181
-894520,4152607,2018.0,2017.0,1955.0,PRIVATE,20,Scarborough Southwest,1075 VICTORIA PARK AVE,3,18,2017-12-13,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,,,E2028,43.7075785212,-79.2951531755,321293.32300000003,4840644.802
-894521,4153196,,2017.0,1910.0,PRIVATE,11,University-Rosedale,2 VERMONT AVE,3,16,2017-12-13,56,Evaluation needs to be conducted in 1 year,15,2.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,4.0,2.0,3.0,2.0,,2.0,3.0,,S1125,43.672241558,-79.414621827,311668.929,4836703.171
-894522,4154676,2018.0,2017.0,1940.0,PRIVATE,8,Eglinton-Lawrence,284 LAWRENCE AVE W,3,15,2017-12-13,65,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,,N0824,43.722781903999994,-79.4147683838,311651.724,4842317.086
-894523,4154124,2017.0,2017.0,1955.0,PRIVATE,14,Toronto-Danforth,65 GAMBLE AVE,6,48,2017-12-13,78,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,2.0,,4.0,3.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1421,43.689657175,-79.3516154158,316746.563,4838644.181
-894524,4152788,2017.0,2017.0,1953.0,PRIVATE,20,Scarborough Southwest,3111 EGLINTON AVE E,6,68,2017-12-13,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,E2027,43.741595220200004,-79.2240381371,327011.907,4844440.398
-894525,4152789,2020.0,2017.0,1960.0,PRIVATE,20,Scarborough Southwest,3121 EGLINTON AVE E,6,81,2017-12-13,65,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,4.0,4.0,,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,E2027,43.7415452404,-79.2234208704,327061.643,4844435.008
-894526,4156037,2017.0,2017.0,1960.0,PRIVATE,21,Scarborough Centre,1535 BIRCHMOUNT RD,4,37,2017-12-13,76,Evaluation needs to be conducted in 2 years,15,4.0,4.0,3.0,4.0,3.0,3.0,,3.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,E2128,43.759947503999996,-79.289253718,321726.239,4846452.346
-894527,4153983,2018.0,2017.0,1953.0,PRIVATE,8,Eglinton-Lawrence,2601 BATHURST ST,6,62,2017-12-13,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,4.0,3.0,3.0,3.0,,N0833,43.707444012299995,-79.4262923027,310724.73600000003,4840612.2360000005
-894528,4154716,2017.0,2017.0,1970.0,PRIVATE,18,Willowdale,5900 YONGE ST,13,233,2017-12-13,76,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,N1822,43.786299800600005,-79.4178306419,311398.042,4849373.379
-894529,4153217,2017.0,2017.0,1957.0,PRIVATE,11,University-Rosedale,59 SPADINA RD,10,57,2017-12-13,72,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,4.0,4.0,,4.0,3.0,4.0,3.0,3.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,,S1127,43.669561906700004,-79.404633152,312474.989,4836405.38
-894530,4153190,2018.0,2017.0,1965.0,PRIVATE,11,University-Rosedale,66 SPADINA RD,11,75,2017-12-13,73,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,3.0,3.0,,4.0,3.0,,4.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,,S1126,43.670088649499995,-79.4054989644,312405.105,4836463.821
-894531,4153192,2018.0,2017.0,1963.0,PRIVATE,11,University-Rosedale,68-72 SPADINA RD,11,157,2017-12-13,55,Evaluation needs to be conducted in 1 year,17,3.0,3.0,2.0,1.0,3.0,2.0,,2.0,3.0,,3.0,2.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,,S1126,43.670432258000005,-79.4055781,312395.55199999997,4836492.651000001
-894532,4152956,2018.0,2017.0,1965.0,PRIVATE,4,Parkdale-High Park,31 SPENCER AVE,6,54,2017-12-13,62,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,S0437,43.635080626000004,-79.429194517,310497.332,4832573.691000001
-894533,4152962,2017.0,2017.0,1952.0,PRIVATE,4,Parkdale-High Park,77 SPENCER AVE,6,56,2017-12-13,71,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,3.0,4.0,,3.0,4.0,,4.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,S0437,43.63712357,-79.429926502,310438.088,4832800.6
-894534,4156031,2017.0,2017.0,1965.0,PRIVATE,19,Beaches-East York,165 BARRINGTON AVE,19,265,2017-12-13,66,Evaluation needs to be conducted in 2 years,17,4.0,3.0,3.0,3.0,,2.0,3.0,3.0,4.0,,3.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,4.0,,S1930,,,320678.849,4839169.774
-894535,4153183,2018.0,2017.0,1919.0,PRIVATE,11,University-Rosedale,38 BARTON AVE,4,18,2017-12-13,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,4.0,3.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,4.0,,3.0,3.0,,S1125,43.668063591000006,-79.413898107,311727.76,4836239.086
-894536,4153418,2018.0,2017.0,1988.0,PRIVATE,11,University-Rosedale,99 BELLEVUE AVE,4,16,2017-12-13,59,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,,,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1143,43.656693312,-79.403904864,312535.13399999996,4834976.766
-894537,4154079,2018.0,2017.0,1962.0,PRIVATE,19,Beaches-East York,327 CHISHOLM AVE,4,20,2017-12-13,58,Evaluation needs to be conducted in 1 year,16,2.0,2.0,3.0,2.0,3.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1926,43.6971816506,-79.30644386430001,320386.05199999997,4839487.593
-894538,4154212,2018.0,2017.0,1953.0,PRIVATE,7,Humber River-Black Creek,1740 WILSON AVE,3,10,2017-12-13,59,Evaluation needs to be conducted in 1 year,16,3.0,2.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0734,43.7199693084,-79.5144469829,303620.457,4842001.222
-894539,4152564,,2017.0,1949.0,PRIVATE,20,Scarborough Southwest,36 WOOD GLEN RD,4,15,2017-12-13,64,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,E2033,43.6839132294,-79.276016525,322842.63300000003,4838019.642
-894540,4171348,,2017.0,1937.0,PRIVATE,8,Eglinton-Lawrence,3488 YONGE ST,3,22,2017-12-13,56,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,2.0,3.0,4.0,2.0,3.0,3.0,,2.0,2.0,,N0825,43.7351428526,-79.405176606,312422.962,4843691.145
-894541,4153740,2018.0,2017.0,1980.0,PRIVATE,11,University-Rosedale,1233 YONGE ST,4,42,2017-12-13,55,Evaluation needs to be conducted in 1 year,15,2.0,3.0,3.0,3.0,2.0,3.0,,3.0,,,3.0,3.0,3.0,3.0,2.0,2.0,,3.0,3.0,,S1121,43.6837736438,-79.3918217726,313506.154,4837985.526000001
-894542,4153348,2017.0,2017.0,1920.0,PRIVATE,12,Toronto-St. Paul's,599 ST CLAIR AVE W,3,16,2017-12-13,76,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,4.0,,4.0,,3.0,,,4.0,4.0,5.0,3.0,4.0,3.0,4.0,3.0,,,S1235,43.6820983903,-79.4223318593,311046.44899999996,4837796.671
-894543,4153468,,2017.0,1959.0,PRIVATE,11,University-Rosedale,710 SPADINA AVE,7,62,2017-12-13,66,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,3.0,4.0,4.0,,2.0,3.0,,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,,S1134,43.665065952,-79.4034815,312568.165,4835906.964
-894544,4155397,2018.0,2017.0,1952.0,PRIVATE,2,Etobicoke Centre,440 RATHBURN RD,7,80,2017-12-13,54,Evaluation needs to be conducted in 1 year,18,3.0,2.0,3.0,2.0,3.0,2.0,,3.0,2.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,4.0,3.0,2.0,,W0225,43.6542760057,-79.57140941899999,299024.393,4834705.336
-894545,4154218,2017.0,2017.0,1985.0,PRIVATE,7,Humber River-Black Creek,25 DALLNER RD,4,71,2017-12-13,74,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,,3.0,3.0,4.0,3.0,,4.0,4.0,5.0,4.0,3.0,4.0,3.0,4.0,4.0,,W0734,43.7215636284,-79.5137264803,303678.542,4842178.326
-894546,4156287,2017.0,2017.0,1930.0,PRIVATE,12,Toronto-St. Paul's,2 CONNAUGHT CRCL,3,15,2017-12-13,80,Evaluation needs to be conducted in 2 years,13,4.0,4.0,4.0,4.0,,4.0,,4.0,,,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,,,S1229,43.6887249387,-79.42557923300001,310769.358,4838520.745
-894547,4155411,2020.0,2017.0,1968.0,PRIVATE,1,Etobicoke North,111 BLACKFRIAR AVE,3,39,2017-12-13,54,Evaluation needs to be conducted in 1 year,17,3.0,3.0,2.0,2.0,3.0,2.0,,2.0,,,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,W0133,43.6992765737,-79.56164594,299815.663,4839704.147
-894548,4153108,2018.0,2017.0,,PRIVATE,9,Davenport,156 BRANDON AVE,4,19,2017-12-13,64,Evaluation needs to be conducted in 1 year,16,4.0,2.0,3.0,3.0,2.0,2.0,,4.0,,,3.0,3.0,5.0,3.0,3.0,4.0,,3.0,4.0,3.0,S0927,43.669233242,-79.44593058699999,309144.453,4836366.875
-894549,4155728,2018.0,2017.0,1970.0,PRIVATE,11,University-Rosedale,318 CLINTON ST,3,12,2017-12-13,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,4.0,5.0,2.0,3.0,3.0,,2.0,3.0,,S1133,43.662511226999996,-79.417002758,311478.057,4835622.035
-894550,4153464,,2017.0,1932.0,PRIVATE,11,University-Rosedale,469 PALMERSTON BLVD,3,10,2017-12-13,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1133,43.661625125200004,-79.4121412383,311870.48699999996,4835523.005
-894551,4156004,2018.0,2017.0,1945.0,PRIVATE,9,Davenport,34 ROSECLIFFE AVE,4,26,2017-12-13,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,4.0,2.0,4.0,3.0,3.0,4.0,,3.0,2.0,,S0925,43.683920089,-79.44397293600001,309292.74600000004,4837996.205
-894552,4153442,2019.0,2017.0,1955.0,PRIVATE,13,Toronto Centre,256 SHERBOURNE ST,4,23,2017-12-13,53,Evaluation needs to be conducted in 1 year,15,3.0,2.0,4.0,3.0,2.0,3.0,,2.0,,,2.0,3.0,3.0,2.0,3.0,3.0,,3.0,2.0,,S1328,43.65892538560001,-79.3715946717,315141.167,4835227.328
-894553,4250634,2018.0,2017.0,1925.0,PRIVATE,19,Beaches-East York,2367 QUEEN ST E,3,24,2017-12-13,59,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,2.0,3.0,,3.0,,,2.0,2.0,5.0,3.0,3.0,3.0,,3.0,,,S1942,43.6721682166,-79.2883005888,321855.542,4836712.225
-894554,4250554,2018.0,2017.0,1898.0,PRIVATE,11,University-Rosedale,409 HURON ST,4,42,2017-12-13,48,Building Audit,16,2.0,2.0,2.0,2.0,2.0,2.0,,2.0,,1.0,2.0,2.0,4.0,3.0,3.0,3.0,,3.0,3.0,,S1135,43.666610495,-79.400824313,312782.257,4836078.804
-894555,4155092,2017.0,2017.0,2009.0,SOCIAL HOUSING,5,York South-Weston,2600 EGLINTON AVE W,3,32,2017-12-13,51,Evaluation needs to be conducted in 1 year,15,2.0,3.0,3.0,2.0,2.0,2.0,,3.0,,,2.0,2.0,3.0,3.0,3.0,3.0,,3.0,,2.0,W0533,43.690839177,-79.473005863,306960.28,4838766.143999999
-894556,4154188,2018.0,2017.0,1956.0,PRIVATE,15,Don Valley West,18 KENRAE RD,3,13,2017-12-12,59,Evaluation needs to be conducted in 1 year,17,3.0,3.0,2.0,3.0,3.0,3.0,,3.0,,3.0,3.0,2.0,5.0,2.0,3.0,3.0,3.0,3.0,3.0,,N1531,43.704897465,-79.361903925,315914.058,4840336.839
-894557,4155420,2018.0,2017.0,1964.0,PRIVATE,1,Etobicoke North,2313 ISLINGTON AVE,7,80,2017-12-12,60,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,,3.0,2.0,4.0,2.0,3.0,3.0,2.0,3.0,3.0,,W0131,43.7176295755,-79.5558080485,300287.597,4841742.787
-894558,4154261,2017.0,2017.0,1969.0,PRIVATE,7,Humber River-Black Creek,35 TOBERMORY DR,11,138,2017-12-12,58,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,2.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,4.0,2.0,3.0,3.0,3.0,3.0,3.0,,W0725,43.761263869,-79.509638013,304008.298,4846589.696
-894559,4154156,2017.0,2017.0,1966.0,PRIVATE,15,Don Valley West,71 THORNCLIFFE PARK DR,21,320,2017-12-12,71,Evaluation needs to be conducted in 2 years,19,4.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,4.0,4.0,3.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,,N1533,43.704542152799995,-79.3403837567,317648.798,4840299.515
-894560,4154157,2017.0,2017.0,1966.0,PRIVATE,15,Don Valley West,75 THORNCLIFFE PARK DR,17,308,2017-12-12,72,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,4.0,4.0,3.0,3.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,,N1533,43.705284648,-79.341449141,317562.511,4840382.789
-894561,4154158,2017.0,2017.0,1966.0,PRIVATE,15,Don Valley West,79 THORNCLIFFE PARK DR,17,319,2017-12-12,74,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,N1533,43.706138296499994,-79.341500497,317558.451,4840476.663
-894562,4154179,2017.0,2017.0,1950.0,PRIVATE,15,Don Valley West,823 MILLWOOD RD,4,13,2017-12-12,59,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,4.0,3.0,3.0,3.0,,3.0,3.0,,N1535,43.7046543279,-79.36880487479999,315358.19899999996,4840308.001
-894563,4152602,2019.0,2017.0,1960.0,PRIVATE,20,Scarborough Southwest,1043 VICTORIA PARK AVE,3,11,2017-12-12,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,E2028,43.70565801,-79.29427437060001,321364.674,4840431.61
-894564,4152604,2019.0,2017.0,1954.0,PRIVATE,20,Scarborough Southwest,1051 VICTORIA PARK AVE,3,11,2017-12-12,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,2.0,3.0,3.0,3.0,,4.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,E2028,43.706282345,-79.29457963899999,321339.63899999997,4840501.868
-894565,4153919,,2017.0,1928.0,PRIVATE,12,Toronto-St. Paul's,7 WALMSLEY BLVD,4,15,2017-12-12,64,Evaluation needs to be conducted in 1 year,14,4.0,3.0,3.0,3.0,,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1232,43.692663927,-79.3973259391,313061.182,4838972.671
-894566,4154376,2017.0,2017.0,1953.0,PRIVATE,6,York Centre,939-941 WILSON AVE,3,16,2017-12-12,53,Evaluation needs to be conducted in 1 year,16,3.0,2.0,3.0,3.0,2.0,4.0,,2.0,,2.0,3.0,2.0,5.0,2.0,2.0,2.0,,2.0,3.0,,N0632,43.72933702,-79.471517906,307073.58,4843029.948
-894567,4288857,2018.0,2017.0,1950.0,PRIVATE,19,Beaches-East York,991 O'CONNOR DR,3,12,2017-12-12,59,Evaluation needs to be conducted in 1 year,15,3.0,2.0,2.0,2.0,3.0,2.0,,2.0,,,3.0,3.0,5.0,3.0,4.0,4.0,,3.0,3.0,,S1924,43.708777553100006,-79.310012242,320095.516,4840775.215
-894568,4154189,2019.0,2017.0,1939.0,PRIVATE,15,Don Valley West,872 MILLWOOD RD,3,10,2017-12-12,58,Evaluation needs to be conducted in 1 year,16,3.0,3.0,2.0,3.0,2.0,3.0,,3.0,,2.0,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N1531,43.7041064151,-79.3651837906,315650.137,4840247.591
-894569,4153710,2017.0,2017.0,1910.0,PRIVATE,19,Beaches-East York,2 MAIN ST,3,11,2017-12-12,54,Evaluation needs to be conducted in 1 year,16,2.0,3.0,3.0,2.0,2.0,2.0,,3.0,,2.0,2.0,2.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1935,43.679038326000004,-79.298376637,321040.936,4837474.429
-894570,4154711,2020.0,2017.0,1962.0,PRIVATE,18,Willowdale,296 FINCH AVE W,4,30,2017-12-12,66,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,3.0,,3.0,,4.0,3.0,,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,,N1822,43.7745588068,-79.4412316023,309515.538,4848067.363
-894571,4154712,,2017.0,,PRIVATE,18,Willowdale,300 FINCH AVE W,4,30,2017-12-12,66,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,3.0,,4.0,,3.0,2.0,,3.0,3.0,4.0,3.0,3.0,4.0,3.0,4.0,3.0,,N1822,43.7744429688,-79.4417362415,309474.924,4848054.466
-894572,4154181,2018.0,2017.0,1953.0,PRIVATE,15,Don Valley West,1295 BAYVIEW AVE,4,19,2017-12-12,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N1535,43.697841160299994,-79.3717629159,315120.979,4839550.775
-894573,4154272,,2017.0,1966.0,PRIVATE,7,Humber River-Black Creek,90 YORK GATE BLVD,4,40,2017-12-12,51,Evaluation needs to be conducted in 1 year,18,3.0,2.0,3.0,2.0,2.0,3.0,2.0,3.0,2.0,,2.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,2.0,,W0724,43.7610772976,-79.5211616748,303080.68,4846568.193
-894574,4155950,2018.0,2017.0,1953.0,PRIVATE,19,Beaches-East York,5 STAG HILL DR,4,15,2017-12-12,74,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,3.0,4.0,,4.0,,4.0,3.0,4.0,5.0,4.0,4.0,4.0,,3.0,4.0,,S1927,43.703301636999996,-79.310988273,319989.443,4840181.688999999
-894575,4156176,2018.0,2017.0,1953.0,PRIVATE,19,Beaches-East York,7 STAG HILL DR,4,37,2017-12-12,73,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,4.0,4.0,4.0,,3.0,,4.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,,S1927,43.703054654,-79.310513888,320053.882,4840170.906
-894576,4154708,2020.0,2017.0,,PRIVATE,18,Willowdale,2 ANCONA ST,4,32,2017-12-12,61,Evaluation needs to be conducted in 1 year,17,3.0,2.0,3.0,3.0,3.0,3.0,,4.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,2.0,,N1822,43.774991309700006,-79.43941526399999,309661.717,4848115.5139999995
-894577,4154182,2018.0,2017.0,1953.0,PRIVATE,15,Don Valley West,1299 BAYVIEW AVE,4,19,2017-12-12,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,3.0,2.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N1535,43.6980343959,-79.3718344399,315115.179,4839572.2360000005
-894578,4154206,2018.0,2017.0,1911.0,PRIVATE,15,Don Valley West,1911 BAYVIEW AVE,4,20,2017-12-12,66,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,,N1529,43.7159928067,-79.3775463517,314651.793,4841566.606000001
-894579,4153708,2017.0,2017.0,1960.0,PRIVATE,19,Beaches-East York,5 BENLAMOND AVE,5,55,2017-12-12,71,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,3.0,4.0,5.0,3.0,4.0,4.0,,3.0,4.0,,S1935,43.680379606,-79.29940111239999,320958.234,4837622.283
-894580,4154049,2018.0,2017.0,1959.0,PRIVATE,19,Beaches-East York,608 DAWES RD,6,84,2017-12-12,53,Evaluation needs to be conducted in 1 year,18,2.0,2.0,3.0,2.0,2.0,3.0,,3.0,1.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1927,43.706994795,-79.295836771,321238.131,4840580.773
-894581,4154044,2018.0,2017.0,1966.0,PRIVATE,19,Beaches-East York,500 DAWES RD,14,305,2017-12-12,44,Building Audit,19,2.0,3.0,3.0,1.0,1.0,3.0,2.0,2.0,3.0,2.0,1.0,3.0,2.0,2.0,3.0,3.0,2.0,1.0,3.0,,S1927,43.703305875,-79.29817492800001,321050.685,4840170.484
-894582,4153618,2018.0,2017.0,1960.0,PRIVATE,14,Toronto-Danforth,852 BROADVIEW AVE,4,21,2017-12-12,57,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,2.0,,2.0,,,3.0,2.0,5.0,2.0,3.0,3.0,,3.0,3.0,,S1424,43.679158068599996,-79.35858130359999,316187.0,4837476.8
-894583,4155273,,2017.0,1961.0,PRIVATE,3,Etobicoke-Lakeshore,28 RIVERWOOD PKWY,7,58,2017-12-12,55,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,3.0,,2.0,3.0,3.0,2.0,3.0,3.0,2.0,3.0,3.0,,W0327,43.6393299361,-79.4902695407,305569.433,4833042.572
-894584,4155444,2017.0,2017.0,1969.0,PRIVATE,1,Etobicoke North,70 REXDALE BLVD,6,100,2017-12-12,66,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,,W0130,43.713516909300004,-79.5613583242,299840.021,4841286.219
-894585,4153667,2017.0,2017.0,1920.0,PRIVATE,19,Beaches-East York,83 SILVER BIRCH AVE,4,16,2017-12-12,69,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,3.0,3.0,3.0,,4.0,,,4.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,,,S1942,43.6728223924,-79.284874358,322131.64,4836785.607
-894586,4156247,2017.0,2017.0,1920.0,PRIVATE,19,Beaches-East York,85 SILVER BIRCH AVE,4,16,2017-12-12,69,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,3.0,3.0,3.0,,4.0,,,4.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,,,S1942,43.672975190900004,-79.2849229366,322127.679,4836802.572
-894587,4153671,2017.0,2017.0,1970.0,PRIVATE,19,Beaches-East York,2 KINGSTON RD,4,16,2017-12-12,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,4.0,2.0,3.0,3.0,,3.0,3.0,,S1937,43.667724652,-79.31265581,319889.941,4836214.615
-894588,4156597,2017.0,2017.0,1970.0,PRIVATE,19,Beaches-East York,4 KINGSTON RD,4,16,2017-12-12,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,4.0,2.0,3.0,3.0,,3.0,3.0,,S1937,43.667904365,-79.312792617,319883.143,4836233.964
-894589,4266442,2017.0,2017.0,1927.0,PRIVATE,19,Beaches-East York,125 KENILWORTH AVE,3,20,2017-12-12,63,Evaluation needs to be conducted in 1 year,14,3.0,3.0,4.0,3.0,2.0,3.0,,4.0,,,3.0,3.0,5.0,2.0,3.0,4.0,,2.0,,,S1938,43.6703285166,-79.302100905,320743.2,4836505.1
-894590,4154357,2020.0,2017.0,1957.0,PRIVATE,5,York South-Weston,331 FALSTAFF AVE,3,11,2017-12-11,65,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,4.0,3.0,2.0,5.0,4.0,4.0,3.0,,3.0,3.0,,W0522,43.7199095737,-79.48106664779999,306310.05199999997,4841994.612
-894591,4154355,,2017.0,1954.0,PRIVATE,5,York South-Weston,2416 KEELE ST,3,17,2017-12-11,60,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,4.0,3.0,3.0,4.0,2.0,2.0,3.0,,3.0,3.0,,W0526,43.7097870925,-79.4788512552,306488.836,4840870.115
-894592,4154422,2017.0,2017.0,1960.0,PRIVATE,6,York Centre,2864 KEELE ST,3,11,2017-12-11,53,Evaluation needs to be conducted in 1 year,16,2.0,3.0,3.0,3.0,2.0,3.0,,3.0,,,3.0,2.0,5.0,2.0,2.0,2.0,3.0,2.0,2.0,,N0627,43.732140253699995,-79.4838447849,306085.967,4843353.326
-894593,4155756,,2017.0,1927.0,PRIVATE,12,Toronto-St. Paul's,6 PINEWOOD AVE,3,11,2017-12-11,47,Building Audit,14,2.0,2.0,2.0,2.0,,3.0,,2.0,,,2.0,2.0,5.0,2.0,2.0,2.0,2.0,3.0,,,S1229,43.682454983,-79.425041007,310827.715,4837837.046
-894594,4154973,,2017.0,1925.0,PRIVATE,12,Toronto-St. Paul's,8 PINEWOOD AVE,3,11,2017-12-11,44,Building Audit,15,2.0,2.0,2.0,2.0,2.0,2.0,,2.0,,,2.0,2.0,5.0,2.0,2.0,2.0,2.0,2.0,,,S1229,43.682584046,-79.425180892,310816.424,4837851.375
-894595,4153746,2017.0,2017.0,1969.0,PRIVATE,12,Toronto-St. Paul's,40 PLEASANT BLVD,32,163,2017-12-11,70,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,,3.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,,S1238,43.6875941833,-79.3924335004,313456.285,4838409.916999999
-894596,4284996,2017.0,2017.0,1969.0,PRIVATE,12,Toronto-St. Paul's,60 PLEASANT BLVD,32,163,2017-12-11,68,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,,3.0,3.0,3.0,3.0,4.0,3.0,4.0,3.0,3.0,4.0,S1238,43.687754027,-79.391524865,313560.94399999996,4838448.416
-894597,4154794,2019.0,2017.0,1961.0,PRIVATE,16,Don Valley East,4 OVERLAND DR,4,48,2017-12-11,82,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,5.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N1626,43.7328949656,-79.3478617337,317113.567,4843461.388
-894598,4154358,,2017.0,1954.0,PRIVATE,5,York South-Weston,2624 KEELE ST,3,11,2017-12-11,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,4.0,,3.0,3.0,,W0522,43.720182196,-79.4809738459,306317.523,4842024.9
-894599,4154304,2017.0,2017.0,1950.0,PRIVATE,5,York South-Weston,2417 KEELE ST,3,12,2017-12-11,56,Evaluation needs to be conducted in 1 year,15,3.0,2.0,3.0,3.0,2.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,2.0,3.0,,2.0,2.0,,W0523,43.7099657266,-79.4779872702,306558.457,4840889.976
-894600,4155141,2018.0,2017.0,1954.0,PRIVATE,5,York South-Weston,1860 JANE ST,4,40,2017-12-11,64,Evaluation needs to be conducted in 1 year,17,2.0,3.0,4.0,3.0,2.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,4.0,3.0,3.0,4.0,,W0525,43.708761091999996,-79.50573988,304321.91,4840755.962
-894601,4155438,2017.0,2017.0,1950.0,PRIVATE,1,Etobicoke North,2366 ISLINGTON AVE,3,16,2017-12-11,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,2.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,W0130,43.7196647917,-79.5577092738,300134.561,4841968.994
-894602,4153025,2018.0,2017.0,1965.0,PRIVATE,4,Parkdale-High Park,182 JAMESON AVE,11,82,2017-12-11,56,Evaluation needs to be conducted in 1 year,18,3.0,3.0,2.0,2.0,3.0,3.0,,3.0,4.0,3.0,3.0,3.0,3.0,3.0,2.0,2.0,3.0,2.0,3.0,,S0436,43.6389025378,-79.4370268337,309865.315,4832996.847
-894603,4153024,2017.0,2017.0,1960.0,PRIVATE,4,Parkdale-High Park,188 JAMESON AVE,8,47,2017-12-11,69,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,3.0,3.0,3.0,2.0,4.0,4.0,,3.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,4.0,,S0436,43.6391266318,-79.437146582,309855.635,4833021.735
-894604,4153023,2019.0,2017.0,1963.0,PRIVATE,4,Parkdale-High Park,190 JAMESON AVE,11,62,2017-12-11,72,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,3.0,3.0,4.0,,4.0,4.0,,4.0,3.0,5.0,4.0,3.0,3.0,4.0,3.0,3.0,,S0436,43.6393484586,-79.43723404560001,309848.56,4833046.373
-894605,4154456,2017.0,2017.0,1965.0,PRIVATE,6,York Centre,3390 KEELE ST,11,258,2017-12-11,57,Evaluation needs to be conducted in 1 year,18,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,4.0,3.0,3.0,3.0,2.0,3.0,3.0,2.0,,N0625,43.746940763999994,-79.488468802,305713.023,4844998.472
-894606,4155168,2017.0,2017.0,1967.0,PRIVATE,5,York South-Weston,2240 WESTON RD,19,150,2017-12-11,67,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,3.0,4.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,,W0524,43.7040183112,-79.5281921878,302512.295,4840229.548
-894607,4153505,2019.0,2017.0,1931.0,PRIVATE,13,Toronto Centre,110 WELLESLEY ST E,6,48,2017-12-11,65,Evaluation needs to be conducted in 1 year,16,4.0,3.0,4.0,3.0,4.0,3.0,,3.0,3.0,,3.0,4.0,4.0,3.0,2.0,3.0,,3.0,3.0,,S1322,43.666837468100006,-79.3774688112,314666.097,4836105.602
-894608,4155437,2018.0,2017.0,1960.0,PRIVATE,1,Etobicoke North,21 TORBOLTON DR,3,15,2017-12-11,61,Evaluation needs to be conducted in 1 year,17,3.0,3.0,2.0,3.0,3.0,3.0,,4.0,,4.0,3.0,2.0,5.0,2.0,3.0,4.0,3.0,2.0,3.0,,W0130,43.7192557504,-79.5581150551,300101.833,4841923.575
-894609,4154319,2018.0,2017.0,1953.0,PRIVATE,5,York South-Weston,2645 KEELE ST,3,21,2017-12-11,51,Evaluation needs to be conducted in 1 year,15,2.0,2.0,2.0,2.0,3.0,3.0,,3.0,,,2.0,2.0,3.0,3.0,3.0,3.0,,3.0,2.0,,W0523,43.7216077716,-79.4801053562,306387.464,4842183.289
-894610,4154793,2019.0,2017.0,1962.0,PRIVATE,16,Don Valley East,150 THE DONWAY W,6,65,2017-12-11,82,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,5.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N1626,43.733399454700006,-79.3476283156,317059.04,4843504.301
-894611,4153960,2018.0,2017.0,1959.0,PRIVATE,8,Eglinton-Lawrence,630 VESTA DR,7,70,2017-12-11,73,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,3.0,4.0,,3.0,3.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N0832,43.7030025746,-79.4254211861,310795.381,4840118.8719999995
-894612,4152636,2019.0,2017.0,1954.0,PRIVATE,21,Scarborough Centre,1589 VICTORIA PARK AVE,4,34,2017-12-11,56,Evaluation needs to be conducted in 1 year,16,3.0,3.0,2.0,3.0,2.0,3.0,,4.0,,3.0,3.0,2.0,3.0,3.0,2.0,3.0,,3.0,3.0,,E2131,43.7290082864,-79.30402881319999,320572.398,4843023.848
-894613,4152637,2019.0,2017.0,1954.0,PRIVATE,21,Scarborough Centre,1601 VICTORIA PARK AVE,4,54,2017-12-11,51,Evaluation needs to be conducted in 1 year,16,2.0,2.0,3.0,3.0,1.0,3.0,,3.0,,3.0,2.0,1.0,2.0,4.0,3.0,3.0,,3.0,3.0,,E2131,43.729766759300006,-79.3043160261,320549.063,4843108.053
-894614,4152638,2019.0,2017.0,1954.0,PRIVATE,21,Scarborough Centre,1607 VICTORIA PARK AVE,4,54,2017-12-11,51,Evaluation needs to be conducted in 1 year,17,2.0,2.0,2.0,2.0,1.0,3.0,,3.0,,3.0,1.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,,E2131,43.7303493806,-79.3045356684,320531.217,4843172.7360000005
-894615,4152641,2019.0,2017.0,1954.0,PRIVATE,21,Scarborough Centre,1637 VICTORIA PARK AVE,4,26,2017-12-11,60,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,1.0,3.0,,4.0,,1.0,3.0,2.0,5.0,3.0,4.0,4.0,3.0,2.0,4.0,,E2131,43.732195061999995,-79.3052538634,320472.882,4843377.643999999
-894616,4153777,,2017.0,1955.0,PRIVATE,12,Toronto-St. Paul's,676 MOUNT PLEASANT RD,3,23,2017-12-11,60,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,S1228,43.7056593617,-79.3894538234,313693.856,4840417.278
-894617,4154800,,2017.0,1960.0,PRIVATE,16,Don Valley East,874 LAWRENCE AVE E,3,12,2017-12-11,64,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,,3.0,3.0,2.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,,N1623,43.7361423501,-79.34977188479999,316885.812,4843808.714
-894618,4154801,2018.0,2017.0,1954.0,PRIVATE,16,Don Valley East,868 LAWRENCE AVE E,4,31,2017-12-11,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,,,3.0,2.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,,N1623,43.7359170321,-79.3507079954,316810.44899999996,4843783.545
-894619,4153104,,2017.0,1975.0,PRIVATE,9,Davenport,1136 DUPONT ST,3,19,2017-12-11,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,2.0,,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,3.0,,S0931,43.6688570495,-79.4381192033,309774.67100000003,4836324.563999999
-894620,4153788,2019.0,2017.0,1962.0,PRIVATE,15,Don Valley West,365 EGLINTON AVE E,7,48,2017-12-11,66,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,N1530,43.709100848599995,-79.3855304609,314009.544,4840800.058999999
-894621,4156101,2019.0,2017.0,1930.0,PRIVATE,12,Toronto-St. Paul's,143 ARLINGTON AVE,4,28,2017-12-11,75,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,4.0,3.0,,3.0,,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,,,S1223,43.681869047,-79.4287988671,310515.543,4837773.8319999995
-894622,4156623,2019.0,2017.0,1930.0,PRIVATE,12,Toronto-St. Paul's,145 ARLINGTON AVE,4,32,2017-12-11,74,Evaluation needs to be conducted in 2 years,14,3.0,3.0,4.0,3.0,,3.0,,3.0,,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,,,S1223,43.6820017447,-79.4288451992,,
-894623,4153519,2018.0,2017.0,1920.0,PRIVATE,13,Toronto Centre,26 ST JOSEPH ST,6,65,2017-12-11,60,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,2.0,4.0,3.0,3.0,3.0,,3.0,3.0,,S1321,43.6660925039,-79.3867723149,313910.664,4836035.558999999
-894624,4153652,2018.0,2017.0,1922.0,PRIVATE,14,Toronto-Danforth,796 CARLAW AVE,4,31,2017-12-11,51,Evaluation needs to be conducted in 1 year,13,3.0,3.0,2.0,2.0,,2.0,,2.0,,,2.0,2.0,3.0,3.0,3.0,3.0,,3.0,,,S1425,43.678845919,-79.34781782399999,317054.646,4837444.5819999995
-894625,4154391,,2017.0,1958.0,PRIVATE,6,York Centre,1477 WILSON AVE,4,42,2017-12-11,54,Evaluation needs to be conducted in 1 year,17,2.0,2.0,3.0,2.0,2.0,3.0,,3.0,2.0,,2.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0631,43.72103021979999,-79.50357048229999,304496.836,4842118.967
-894626,4153614,2019.0,2017.0,1929.0,PRIVATE,14,Toronto-Danforth,778 BROADVIEW AVE,3,39,2017-12-11,64,Evaluation needs to be conducted in 1 year,15,4.0,4.0,3.0,2.0,3.0,2.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,4.0,,3.0,3.0,,S1424,43.676873305,-79.359171766,316139.547,4837223.834
-894627,4155291,2018.0,2017.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,39 RIVERWOOD PKWY,4,23,2017-12-11,66,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,4.0,3.0,4.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,W0327,43.6403890443,-79.4907013619,305534.583,4833160.228999999
-894628,4153146,2017.0,2017.0,1915.0,PRIVATE,9,Davenport,1182 QUEEN ST W,3,25,2017-12-11,60,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,,2.0,,3.0,,,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,3.0,,S0937,43.6430244087,-79.4258043729,310770.385,4833455.456
-894629,4264078,2017.0,2017.0,1970.0,PRIVATE,19,Beaches-East York,6 KINGSTON RD,3,16,2017-12-11,67,Evaluation needs to be conducted in 2 years,15,3.0,4.0,3.0,4.0,4.0,3.0,,4.0,,,3.0,2.0,4.0,4.0,3.0,3.0,,3.0,3.0,,S1937,43.667917593999995,-79.31255405,319902.465,4836237.652
-894630,4264076,2017.0,2017.0,1970.0,PRIVATE,19,Beaches-East York,8 KINGSTON RD,3,16,2017-12-11,64,Evaluation needs to be conducted in 1 year,15,4.0,4.0,3.0,3.0,4.0,3.0,,4.0,,,3.0,2.0,4.0,4.0,2.0,2.0,,3.0,3.0,,S1937,43.668121582,-79.312392609,319915.464,4836258.731000001
-894631,4156594,2017.0,2017.0,1970.0,PRIVATE,19,Beaches-East York,10 KINGSTON RD,3,16,2017-12-11,64,Evaluation needs to be conducted in 1 year,15,4.0,4.0,3.0,3.0,3.0,3.0,,4.0,,,3.0,2.0,5.0,4.0,2.0,2.0,,3.0,3.0,,S1937,43.668304546,-79.312459034,319909.49100000004,4836279.985
-894632,4156593,2017.0,2017.0,1970.0,PRIVATE,19,Beaches-East York,12 KINGSTON RD,3,16,2017-12-11,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,4.0,3.0,,4.0,,,3.0,2.0,5.0,3.0,2.0,2.0,,3.0,3.0,,S1937,43.668417027,-79.312246964,319927.584,4836291.402
-894633,4152668,2019.0,2017.0,1955.0,PRIVATE,20,Scarborough Southwest,640 KENNEDY RD,3,18,2017-12-11,77,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,4.0,4.0,4.0,,3.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,E2023,43.724263108,-79.264921835,323733.455,4842492.069
-894634,4152669,2019.0,2017.0,1954.0,PRIVATE,20,Scarborough Southwest,644 KENNEDY RD,3,18,2017-12-11,77,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,4.0,4.0,4.0,,3.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,E2023,43.724479726000006,-79.2652034401,323701.623,4842528.778
-894635,4152692,2017.0,2017.0,1972.0,PRIVATE,21,Scarborough Centre,1 ROSEMOUNT DR,9,110,2017-12-11,67,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,5.0,4.0,3.0,4.0,4.0,3.0,3.0,,E2133,43.7315303371,-79.2739396307,322995.656,4843310.129
-894636,4153149,2019.0,2017.0,1911.0,PRIVATE,9,Davenport,225 GLADSTONE AVE,4,27,2017-12-11,56,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,2.0,3.0,,2.0,,,3.0,3.0,3.0,2.0,2.0,3.0,,4.0,3.0,,S0937,43.6493592565,-79.4295355197,310468.76399999997,4834158.985
-894637,4153078,,2017.0,1932.0,PRIVATE,9,Davenport,301 LANSDOWNE AVE,5,35,2017-12-08,67,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,4.0,3.0,3.0,,3.0,,,4.0,3.0,3.0,4.0,3.0,3.0,,4.0,3.0,,S0933,43.650730305399996,-79.4393963324,309673.184,4834310.706
-894638,4153161,,2017.0,1926.0,PRIVATE,9,Davenport,1121 BLOOR ST W,4,11,2017-12-08,54,Evaluation needs to be conducted in 1 year,16,2.0,3.0,3.0,2.0,3.0,3.0,,3.0,,,2.0,2.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,,S0934,43.659766697799995,-79.4348680192,310037.689,4835314.866
-894639,4169221,2019.0,2017.0,1953.0,PRIVATE,5,York South-Weston,2701 EGLINTON AVE W,4,49,2017-12-08,69,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,4.0,3.0,3.0,4.0,,W0536,43.689344093,-79.47749785100001,306598.205,4838599.952
-894640,4154643,2017.0,2017.0,1964.0,PRIVATE,6,York Centre,3 GOLDFINCH CRT,15,172,2017-12-08,70,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,,3.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,,N0624,43.7710438597,-79.4492292912,308871.972,4847676.448
-894641,4153711,2017.0,2017.0,1957.0,PRIVATE,19,Beaches-East York,600 KINGSTON RD,8,68,2017-12-08,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,2.0,,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1935,43.6788159908,-79.29970751409999,320933.94899999996,4837448.512
-894642,4154636,,2017.0,1958.0,PRIVATE,6,York Centre,15 WILMINGTON AVE,3,21,2017-12-08,54,Evaluation needs to be conducted in 1 year,16,2.0,3.0,2.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,2.0,3.0,3.0,3.0,3.0,3.0,2.0,,N0624,43.753413503999994,-79.452055484,308645.309,4845718.607
-894643,4155166,2018.0,2017.0,1961.0,PRIVATE,5,York South-Weston,2278 WESTON RD,4,33,2017-12-08,73,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,3.0,4.0,3.0,,3.0,4.0,,4.0,4.0,5.0,3.0,3.0,4.0,,4.0,3.0,,W0524,43.704711986199996,-79.529254423,302426.713,4840306.64
-894644,4155322,,2017.0,1952.0,PRIVATE,2,Etobicoke Centre,308 THE KINGSWAY,4,34,2017-12-08,65,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,,3.0,,4.0,,3.0,3.0,3.0,5.0,3.0,3.0,4.0,,3.0,3.0,,W0229,43.6641680509,-79.5231261637,302919.2,4835802.228999999
-894645,4155395,2018.0,2017.0,1969.0,PRIVATE,2,Etobicoke Centre,500 THE WEST MALL,5,24,2017-12-08,68,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,4.0,3.0,4.0,,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,4.0,5.0,3.0,,W0231,43.64890631,-79.568879209,299225.155,4834139.812
-894646,4155313,,2017.0,1952.0,PRIVATE,2,Etobicoke Centre,315 THE KINGSWAY,4,15,2017-12-08,64,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,,3.0,,4.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0229,43.6650849124,-79.5230752118,302923.345,4835904.087
-894647,4155252,2018.0,2017.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,167 STEPHEN DR,4,44,2017-12-08,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,2.0,,,4.0,3.0,4.0,2.0,3.0,3.0,3.0,4.0,3.0,,W0327,43.6392913192,-79.4876408475,305781.53,4833038.307
-894648,4288285,2018.0,2017.0,2016.0,PRIVATE,7,Humber River-Black Creek,6 VENA WAY,10,186,2017-12-08,95,Evaluation needs to be conducted in 3 years,19,5.0,5.0,4.0,5.0,5.0,5.0,4.0,5.0,4.0,,4.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,W0728,,,301514.49600000004,4845402.6389999995
-894649,4155162,2018.0,2017.0,1968.0,PRIVATE,5,York South-Weston,2360 WESTON RD,6,52,2017-12-08,71,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,3.0,4.0,,4.0,3.0,,3.0,3.0,5.0,3.0,4.0,4.0,3.0,4.0,2.0,4.0,W0524,43.7058930244,-79.5316964663,302229.95399999997,4840437.92
-894650,4155992,2017.0,2017.0,1972.0,PRIVATE,5,York South-Weston,2450 WESTON RD,27,214,2017-12-08,67,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,2.0,3.0,4.0,3.0,4.0,4.0,,2.0,3.0,5.0,4.0,4.0,3.0,3.0,4.0,2.0,3.0,W0521,43.7075252004,-79.5347078156,301987.342,4840619.345
-894651,4155993,2017.0,2017.0,1973.0,PRIVATE,5,York South-Weston,2460 WESTON RD,27,214,2017-12-08,64,Evaluation needs to be conducted in 1 year,20,4.0,3.0,4.0,2.0,3.0,4.0,3.0,4.0,3.0,3.0,2.0,3.0,3.0,3.0,4.0,4.0,3.0,4.0,2.0,3.0,W0521,43.7078718117,-79.5341521524,302032.14,4840657.833000001
-894652,4154532,,2017.0,1956.0,PRIVATE,8,Eglinton-Lawrence,86 NEPTUNE DR,3,12,2017-12-08,72,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,3.0,,4.0,,3.0,,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N0823,43.7325638685,-79.4373956547,309827.80100000004,4843402.16
-894653,4154533,,2017.0,1956.0,PRIVATE,8,Eglinton-Lawrence,88 NEPTUNE DR,3,11,2017-12-08,56,Evaluation needs to be conducted in 1 year,17,2.0,3.0,3.0,3.0,2.0,3.0,,3.0,,2.0,2.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0823,43.732494717,-79.4377218694,309801.528,4843394.458000001
-894654,4154501,2019.0,2017.0,1957.0,PRIVATE,8,Eglinton-Lawrence,91 NEPTUNE DR,3,12,2017-12-08,66,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,4.0,3.0,5.0,4.0,3.0,3.0,3.0,4.0,3.0,,N0823,43.7317413513,-79.43816993680001,309765.49600000004,4843310.737
-894655,4255508,2018.0,2017.0,1955.0,PRIVATE,19,Beaches-East York,55 LEE AVE,3,12,2017-12-08,72,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,3.0,3.0,2.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1942,43.669187773999994,-79.29715548600001,321142.042,4836380.305
-894656,4154299,2018.0,2017.0,1970.0,PRIVATE,5,York South-Weston,1577 LAWRENCE AVE W,15,350,2017-12-08,67,Evaluation needs to be conducted in 2 years,19,4.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,4.0,4.0,3.0,4.0,W0529,43.705418072700006,-79.4894721065,305632.974,4840384.601
-894657,4155767,2017.0,2017.0,1960.0,PRIVATE,6,York Centre,10 ELLISON AVE,3,12,2017-12-08,51,Evaluation needs to be conducted in 1 year,17,2.0,3.0,2.0,2.0,2.0,3.0,,2.0,,3.0,2.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,,N0629,43.7500169368,-79.43794866489999,309781.844,4845341.052
-894658,4152853,2017.0,2017.0,1970.0,PRIVATE,22,Scarborough-Agincourt,20 CHICHESTER PL,14,189,2017-12-08,72,Evaluation needs to be conducted in 2 years,19,5.0,5.0,4.0,3.0,3.0,3.0,4.0,2.0,5.0,,4.0,3.0,5.0,2.0,3.0,4.0,2.0,3.0,3.0,5.0,E2225,43.777312321000004,-79.321766948,319131.65,4848387.9180000005
-894659,4153465,,2017.0,1907.0,PRIVATE,11,University-Rosedale,481 PALMERSTON BLVD,3,11,2017-12-08,55,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,2.0,2.0,,3.0,,,3.0,2.0,5.0,2.0,3.0,2.0,3.0,2.0,,,S1133,43.6621199142,-79.4122665445,311860.32,4835577.963
-894660,4153172,2018.0,2017.0,1911.0,PRIVATE,11,University-Rosedale,532 PALMERSTON BLVD,4,21,2017-12-08,53,Evaluation needs to be conducted in 1 year,15,2.0,3.0,2.0,3.0,,2.0,,3.0,,,3.0,2.0,5.0,2.0,2.0,3.0,3.0,2.0,3.0,,S1133,43.663789313100004,-79.4136043966,311752.224,4835763.318
-894661,4155292,2018.0,2017.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,47-49 RIVERWOOD PKWY,4,21,2017-12-08,60,Evaluation needs to be conducted in 1 year,15,3.0,4.0,3.0,3.0,,2.0,,3.0,,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,2.0,3.0,,W0327,43.640304287700005,-79.4914484566,305474.305,4833150.807
-894662,4153140,2017.0,2017.0,1970.0,PRIVATE,10,Spadina-Fort York,798 RICHMOND ST W,13,525,2017-12-08,72,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,4.0,3.0,3.0,3.0,3.0,,3.0,4.0,5.0,3.0,4.0,4.0,,3.0,4.0,4.0,S1028,43.6451383038,-79.4098140977,312060.214,4833691.505
-894663,4152892,2018.0,2017.0,1970.0,PRIVATE,23,Scarborough North,5600 SHEPPARD AVE E,10,120,2017-12-08,66,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,3.0,2.0,3.0,3.0,4.0,3.0,,3.0,3.0,5.0,3.0,3.0,4.0,4.0,4.0,4.0,2.0,E2330,43.7950106411,-79.2363445715,326001.92699999997,4850371.395
-894664,4152992,2018.0,2017.0,1960.0,PRIVATE,4,Parkdale-High Park,100 JAMESON AVE,10,80,2017-12-08,54,Evaluation needs to be conducted in 1 year,17,3.0,3.0,2.0,2.0,3.0,4.0,,2.0,2.0,,2.0,2.0,5.0,3.0,3.0,2.0,3.0,3.0,2.0,,S0437,43.635119188900006,-79.43565646479999,309976.196,4832576.633
-894665,4152991,,2017.0,1960.0,PRIVATE,4,Parkdale-High Park,110 JAMESON AVE,7,91,2017-12-08,59,Evaluation needs to be conducted in 1 year,17,4.0,3.0,3.0,3.0,3.0,2.0,,3.0,3.0,,3.0,2.0,5.0,3.0,3.0,2.0,3.0,3.0,2.0,,S0437,43.635467624899995,-79.43575281,309968.393,4832615.335
-894666,4152990,,2017.0,1960.0,PRIVATE,4,Parkdale-High Park,120 JAMESON AVE,7,90,2017-12-08,59,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,3.0,,4.0,3.0,5.0,3.0,3.0,2.0,2.0,3.0,2.0,,S0437,43.635854047399995,-79.4359351656,309953.647,4832658.252
-894667,4153031,2018.0,2017.0,1965.0,PRIVATE,4,Parkdale-High Park,157 JAMESON AVE,6,66,2017-12-08,51,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,2.0,2.0,3.0,,3.0,3.0,,2.0,2.0,2.0,3.0,2.0,3.0,3.0,2.0,2.0,,S0436,43.6376650671,-79.435751998,309968.274,4832859.448
-894668,4154427,2018.0,2017.0,1968.0,PRIVATE,6,York Centre,2900 KEELE ST,3,12,2017-12-08,51,Evaluation needs to be conducted in 1 year,16,3.0,3.0,2.0,3.0,2.0,3.0,,2.0,,,3.0,2.0,3.0,2.0,2.0,2.0,3.0,3.0,3.0,,N0627,43.7339448513,-79.4841475929,306061.54,4843553.804
-894669,4154440,2018.0,2017.0,1965.0,PRIVATE,6,York Centre,2960 KEELE ST,3,41,2017-12-08,55,Evaluation needs to be conducted in 1 year,16,3.0,2.0,2.0,3.0,3.0,3.0,,2.0,3.0,,3.0,3.0,4.0,3.0,2.0,2.0,3.0,3.0,,,N0627,43.735849503000004,-79.484562864,306027.788,4843766.348
-894670,4154589,,2017.0,1954.0,PRIVATE,6,York Centre,23 ROSSEAU RD,3,11,2017-12-08,44,Building Audit,15,2.0,2.0,2.0,2.0,2.0,3.0,,2.0,,,2.0,2.0,2.0,3.0,3.0,2.0,,2.0,2.0,,N0629,43.743260449,-79.43682504739999,309872.882,4844590.495
-894671,4154590,,2017.0,1954.0,PRIVATE,6,York Centre,25 ROSSEAU RD,3,11,2017-12-08,46,Building Audit,14,2.0,2.0,2.0,2.0,,3.0,,2.0,,,2.0,2.0,3.0,3.0,3.0,2.0,,2.0,2.0,,N0629,43.74342265520001,-79.43700806310001,309858.12899999996,4844608.506
-894672,4155115,,2017.0,1956.0,PRIVATE,5,York South-Weston,9 GREENTREE CRT,3,28,2017-12-08,48,Building Audit,15,2.0,2.0,2.0,2.0,2.0,3.0,,2.0,,,3.0,3.0,4.0,2.0,2.0,3.0,,2.0,2.0,,W0532,43.692147125299996,-79.4794625352,306440.017,4838910.374
-894673,4153712,2017.0,2017.0,1985.0,SOCIAL HOUSING,19,Beaches-East York,550 KINGSTON RD,7,138,2017-12-08,77,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,4.0,4.0,S1935,43.678459126999996,-79.30145580199999,320792.82,4837409.477
-894674,4154688,2018.0,2017.0,1958.0,PRIVATE,6,York Centre,4087 BATHURST ST,3,11,2017-12-08,57,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,3.0,2.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,2.0,2.0,,N0630,43.7449473955,-79.43554268609999,309976.028,4844777.99
-894675,4154689,,2017.0,1953.0,PRIVATE,6,York Centre,4089 BATHURST ST,3,10,2017-12-08,51,Evaluation needs to be conducted in 1 year,15,2.0,3.0,2.0,3.0,2.0,3.0,,3.0,,,3.0,2.0,3.0,2.0,3.0,3.0,,2.0,2.0,,N0630,43.7451902224,-79.4355554925,309974.977,4844804.968
-894676,4154303,2018.0,2017.0,1953.0,PRIVATE,5,York South-Weston,16 ARROWSMITH AVE,3,11,2017-12-08,73,Evaluation needs to be conducted in 2 years,15,4.0,4.0,3.0,3.0,,4.0,,4.0,,,3.0,2.0,5.0,4.0,4.0,4.0,,4.0,3.0,4.0,W0529,43.7043754257,-79.4779098871,306564.853,4840268.915
-894677,4154110,2018.0,2017.0,1927.0,PRIVATE,14,Toronto-Danforth,12 BATER AVE,4,50,2017-12-08,68,Evaluation needs to be conducted in 2 years,17,3.0,4.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,,S1421,43.6870714875,-79.3548247563,316488.358,4838356.478
-894678,4153937,2019.0,2017.0,1952.0,PRIVATE,12,Toronto-St. Paul's,755 AVENUE RD,4,41,2017-12-08,67,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,4.0,3.0,3.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,S1226,43.696987183900006,-79.4048152575,312456.901,4839452.268999999
-894679,4153996,2018.0,2017.0,1952.0,PRIVATE,12,Toronto-St. Paul's,873 AVENUE RD,4,10,2017-12-08,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1227,43.6992180008,-79.4058760142,312371.12,4839700.0139999995
-894680,4153997,2018.0,2017.0,1950.0,PRIVATE,12,Toronto-St. Paul's,875 AVENUE RD,3,10,2017-12-08,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1227,43.6993433879,-79.4059378542,312366.12,4839713.938999999
-894681,4166721,2017.0,2017.0,2012.0,PRIVATE,22,Scarborough-Agincourt,8 CHICHESTER PL,20,210,2017-12-08,92,Evaluation needs to be conducted in 3 years,18,5.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,5.0,,5.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,,E2225,43.77626173,-79.320962704,319196.64,4848271.343
-894682,4250524,2017.0,2017.0,1971.0,PRIVATE,22,Scarborough-Agincourt,10 CHICHESTER PL,16,220,2017-12-08,70,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,3.0,3.0,2.0,3.0,5.0,,3.0,2.0,5.0,2.0,4.0,5.0,2.0,3.0,5.0,,E2225,43.776428638,-79.32148352600001,319154.674,4848289.796
-894683,4154539,2018.0,2017.0,1960.0,PRIVATE,8,Eglinton-Lawrence,102 RAJAH ST,3,12,2017-12-08,60,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,2.0,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0823,43.730483195,-79.438671101,309724.963,4843171.886
-894684,4154113,2018.0,2017.0,1968.0,PRIVATE,14,Toronto-Danforth,75 COSBURN AVE,12,118,2017-12-08,63,Evaluation needs to be conducted in 1 year,18,4.0,3.0,2.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1421,43.6886962162,-79.3510054623,316795.92699999997,4838537.506
-894685,4154114,2018.0,2017.0,1986.0,PRIVATE,14,Toronto-Danforth,91 COSBURN AVE,11,86,2017-12-08,56,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,2.0,2.0,4.0,,3.0,3.0,,2.0,3.0,4.0,3.0,2.0,2.0,3.0,3.0,3.0,,S1421,43.688826668199994,-79.3502448679,316857.213,4838552.103
-894686,4154128,2017.0,2017.0,1961.0,PRIVATE,14,Toronto-Danforth,100 COSBURN AVE,7,140,2017-12-08,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,4.0,4.0,,3.0,3.0,2.0,3.0,2.0,5.0,3.0,4.0,4.0,2.0,3.0,3.0,,S1421,43.6894490908,-79.3500408612,316873.531,4838621.28
-894687,4154137,,2017.0,1955.0,PRIVATE,14,Toronto-Danforth,1243 BROADVIEW AVE,4,38,2017-12-08,67,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,4.0,5.0,4.0,3.0,3.0,,3.0,3.0,,S1421,43.6907938758,-79.3550051135,316473.095,4838770.007
-894688,4152898,2020.0,2017.0,1958.0,PRIVATE,4,Parkdale-High Park,93 COE HILL DR,4,33,2017-12-08,59,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,2.0,3.0,3.0,,2.0,2.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,2.0,,S0430,43.641442247600004,-79.4724449481,307007.54600000003,4833277.515
-894689,4155447,2018.0,2017.0,1965.0,PRIVATE,1,Etobicoke North,2435 KIPLING AVE,13,153,2017-12-08,54,Evaluation needs to be conducted in 1 year,18,3.0,2.0,3.0,2.0,3.0,3.0,2.0,2.0,3.0,,2.0,3.0,4.0,2.0,3.0,3.0,2.0,4.0,3.0,,W0124,43.7388442337,-79.578720865,298443.619,4844101.085
-894690,4154234,2017.0,2017.0,1971.0,PRIVATE,7,Humber River-Black Creek,1825 FINCH AVE W,16,171,2017-12-07,49,Building Audit,19,3.0,2.0,3.0,2.0,2.0,3.0,2.0,2.0,3.0,,2.0,3.0,4.0,2.0,2.0,2.0,3.0,2.0,2.0,3.0,W0730,43.757886117,-79.511912431,303825.107,4846214.47
-894691,4152592,2018.0,2017.0,1962.0,PRIVATE,20,Scarborough Southwest,186 DANFORTH RD,4,15,2017-12-07,70,Evaluation needs to be conducted in 2 years,16,4.0,3.0,3.0,4.0,3.0,3.0,,4.0,,,3.0,3.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,,E2029,43.6993092047,-79.27375284060001,323020.45399999997,4839730.5430000005
-894692,4152778,2018.0,2017.0,1960.0,PRIVATE,20,Scarborough Southwest,3171 KINGSTON RD,4,18,2017-12-07,55,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,2.0,3.0,2.0,,3.0,3.0,,3.0,2.0,5.0,3.0,2.0,2.0,3.0,3.0,2.0,,E2037,43.7283659321,-79.228113442,326688.443,4842969.629
-894693,4155380,2019.0,2017.0,1970.0,PRIVATE,2,Etobicoke Centre,320 THE WEST MALL,3,17,2017-12-07,66,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,3.0,3.0,3.0,,4.0,,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0233,43.636889686,-79.5635303983,299658.36600000004,4832773.299
-894694,4153043,2019.0,2017.0,1931.0,PRIVATE,4,Parkdale-High Park,3 ELM GROVE AVE,3,12,2017-12-06,63,Evaluation needs to be conducted in 1 year,14,3.0,4.0,3.0,3.0,,3.0,,2.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S0436,43.638815334200004,-79.4301843033,310417.398,4832987.572
-894695,4154258,2018.0,2017.0,1973.0,PRIVATE,7,Humber River-Black Creek,5 DAMASK AVE,3,12,2017-12-06,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,2.0,3.0,3.0,,W0728,43.741702861899995,-79.5393075079,301618.527,4844416.353999999
-894696,4152808,2018.0,2017.0,1977.0,PRIVATE,24,Scarborough-Guildwood,399 MARKHAM RD,15,254,2017-12-06,72,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,2.0,5.0,3.0,3.0,4.0,4.0,,3.0,4.0,4.0,4.0,2.0,4.0,4.0,4.0,5.0,,E2430,43.749222652,-79.2207962727,327270.184,4845288.627
-894697,4155456,2017.0,2017.0,1972.0,PRIVATE,1,Etobicoke North,1915 MARTIN GROVE RD,7,135,2017-12-06,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,4.0,2.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,4.0,4.0,3.0,,W0123,43.7459657464,-79.5951234793,297123.337,4844893.655
-894698,4155454,2018.0,2017.0,1976.0,PRIVATE,1,Etobicoke North,2757 KIPLING AVE,19,343,2017-12-06,39,Building Audit,18,3.0,2.0,1.0,2.0,2.0,2.0,1.0,2.0,2.0,,1.0,2.0,1.0,2.0,2.0,3.0,3.0,2.0,2.0,,W0124,43.754436232299994,-79.5871043127,297770.21,4845833.956
-894699,4153622,,2017.0,1921.0,PRIVATE,14,Toronto-Danforth,85 LAING ST,3,13,2017-12-06,60,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,S1442,43.663704356000004,-79.327142442,318731.892,4835790.185
-894700,4153494,2017.0,2017.0,1927.0,PRIVATE,13,Toronto Centre,54 MAITLAND ST,4,45,2017-12-06,68,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,3.0,4.0,4.0,,2.0,,,4.0,4.0,4.0,3.0,3.0,3.0,,3.0,3.0,,S1326,43.664766799700004,-79.3814874768,314342.322,4835875.113
-894701,4153493,2017.0,2017.0,1928.0,PRIVATE,13,Toronto Centre,56 MAITLAND ST,4,47,2017-12-06,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,3.0,4.0,,2.0,,,4.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,S1326,43.6648613167,-79.3813670243,314352.022,4835885.626
-894702,4288923,2017.0,2017.0,1959.0,PRIVATE,7,Humber River-Black Creek,2431 FINCH AVE W,6,115,2017-12-06,69,Evaluation needs to be conducted in 2 years,18,4.0,2.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,4.0,5.0,3.0,4.0,4.0,,3.0,3.0,4.0,W0727,43.749611484,-79.54723458,300980.433,4845291.518
-894703,4155520,,2017.0,1958.0,PRIVATE,3,Etobicoke-Lakeshore,122 FIFTH ST,3,12,2017-12-06,67,Evaluation needs to be conducted in 2 years,14,3.0,3.0,3.0,3.0,,3.0,,3.0,,,3.0,3.0,5.0,4.0,4.0,3.0,,4.0,3.0,,W0335,43.6004906208,-79.5030314026,304539.618,4828727.682
-894704,4155528,2019.0,2017.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,20 FOURTEENTH ST,3,12,2017-12-06,63,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,,4.0,,3.0,,,3.0,2.0,4.0,3.0,3.0,3.0,,4.0,3.0,,W0335,43.600000403100005,-79.5135618333,303689.494,4828673.281
-894705,4155862,2018.0,2017.0,1952.0,PRIVATE,20,Scarborough Southwest,46 GLEN EVEREST RD,3,16,2017-12-06,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,4.0,3.0,,3.0,3.0,,E2035,43.70167262,-79.253298302,324668.064,4839998.791999999
-894706,4155865,2018.0,2017.0,1952.0,PRIVATE,20,Scarborough Southwest,50 GLEN EVEREST RD,3,16,2017-12-06,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,E2035,43.701846021,-79.253208949,324675.207,4840018.077
-894707,4153536,2019.0,2017.0,1928.0,PRIVATE,13,Toronto Centre,50 GLOUCESTER ST,3,35,2017-12-06,67,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,3.0,4.0,3.0,,3.0,,,4.0,4.0,4.0,3.0,2.0,3.0,,3.0,3.0,,S1322,43.6673313703,-79.38310259890001,314211.661,4836159.836
-894708,4153527,2019.0,2017.0,1928.0,PRIVATE,13,Toronto Centre,81 ISABELLA ST,3,48,2017-12-06,68,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,3.0,3.0,3.0,,2.0,,,4.0,4.0,4.0,4.0,3.0,3.0,,4.0,3.0,,S1322,43.6682194895,-79.3810292281,314378.731,4836258.734
-894709,4154439,,2017.0,1954.0,PRIVATE,6,York Centre,2988 KEELE ST,3,11,2017-12-06,55,Evaluation needs to be conducted in 1 year,16,3.0,3.0,2.0,3.0,2.0,3.0,,3.0,,3.0,3.0,2.0,4.0,3.0,2.0,3.0,,3.0,2.0,,N0627,43.736204601000004,-79.484886345,306001.724,4843805.791999999
-894710,4154438,2018.0,2017.0,1952.0,PRIVATE,6,York Centre,2990 KEELE ST,3,11,2017-12-06,51,Evaluation needs to be conducted in 1 year,15,2.0,3.0,3.0,2.0,3.0,3.0,,3.0,,,3.0,2.0,4.0,2.0,2.0,2.0,,2.0,2.0,,N0627,43.736373339,-79.484931855,305998.055,4843824.537
-894711,4154437,,2017.0,1954.0,PRIVATE,6,York Centre,2994 KEELE ST,4,12,2017-12-06,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N0627,43.736711483,-79.48501293,305991.518,4843862.101
-894712,4155328,2018.0,2017.0,1955.0,PRIVATE,2,Etobicoke Centre,291 THE KINGSWAY,4,29,2017-12-06,60,Evaluation needs to be conducted in 1 year,16,3.0,2.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,W0229,43.6634527167,-79.520034594,303168.49600000004,4835722.69
-894713,4154327,2017.0,2017.0,1959.0,PRIVATE,5,York South-Weston,1724 LAWRENCE AVE W,3,30,2017-12-06,67,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,3.0,3.0,4.0,,4.0,3.0,,3.0,3.0,5.0,3.0,3.0,4.0,3.0,4.0,3.0,,W0528,43.704899460600004,-79.4973466692,304998.33,4840326.9569999995
-894714,4155502,2019.0,2017.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,2517 LAKE SHORE BLVD W,4,42,2017-12-06,59,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,2.0,3.0,,3.0,,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0336,43.611248843599995,-79.4897028689,305617.985,4829937.637
-894715,4154549,2018.0,2017.0,1950.0,PRIVATE,8,Eglinton-Lawrence,31 WASDALE CRES,3,11,2017-12-06,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,,3.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0823,43.730876788,-79.4343345171,310074.549,4843214.935
-894716,4154541,2020.0,2017.0,1956.0,PRIVATE,8,Eglinton-Lawrence,65 WASDALE CRES,3,11,2017-12-06,65,Evaluation needs to be conducted in 1 year,16,3.0,4.0,4.0,3.0,2.0,3.0,,3.0,,,4.0,2.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,N0823,43.7301212379,-79.4376331135,309808.878,4843130.784
-894717,4154513,2018.0,2017.0,1956.0,PRIVATE,8,Eglinton-Lawrence,66 WASDALE CRES,3,13,2017-12-06,69,Evaluation needs to be conducted in 2 years,15,3.0,4.0,3.0,4.0,,4.0,,3.0,,,4.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,,N0823,43.7306506832,-79.43803806380001,309776.21,4843189.578
-894718,4288287,2018.0,2017.0,2016.0,PRIVATE,7,Humber River-Black Creek,10 VENA WAY,10,176,2017-12-06,94,Evaluation needs to be conducted in 3 years,19,5.0,5.0,4.0,5.0,5.0,5.0,4.0,5.0,4.0,,4.0,4.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,W0728,,,301509.893,4845429.881
-894719,4155453,2018.0,2017.0,1976.0,PRIVATE,1,Etobicoke North,2737 KIPLING AVE,23,416,2017-12-06,42,Building Audit,18,3.0,2.0,1.0,2.0,2.0,3.0,2.0,2.0,2.0,,2.0,2.0,1.0,3.0,2.0,3.0,3.0,1.0,2.0,,W0124,43.753301348,-79.586565549,297813.2,4845708.779
-894720,4153571,2018.0,2017.0,1969.0,PRIVATE,13,Toronto Centre,210 OAK ST,17,260,2017-12-06,58,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,2.0,4.0,2.0,3.0,2.0,,3.0,3.0,4.0,3.0,3.0,3.0,2.0,3.0,3.0,,S1330,43.663368073,-79.358462264,316209.596,4835679.79
-894721,4155664,2019.0,2017.0,1972.0,PRIVATE,13,Toronto Centre,230 OAK ST,23,327,2017-12-06,64,Evaluation needs to be conducted in 1 year,19,4.0,4.0,5.0,3.0,2.0,4.0,2.0,1.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,2.0,5.0,3.0,2.0,,S1330,43.663569575,-79.357948805,316215.622,4835683.0430000005
-894722,4152821,,2017.0,1970.0,PRIVATE,24,Scarborough-Guildwood,3827 LAWRENCE AVE E,7,88,2017-12-06,67,Evaluation needs to be conducted in 2 years,17,3.0,2.0,4.0,3.0,4.0,4.0,,2.0,3.0,,4.0,2.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,,E2431,43.7620489485,-79.211440469,328018.711,4846716.13
-894723,4156558,2018.0,2017.0,1970.0,PRIVATE,24,Scarborough-Guildwood,3967 LAWRENCE AVE E,10,102,2017-12-06,54,Evaluation needs to be conducted in 1 year,18,2.0,3.0,2.0,2.0,3.0,3.0,3.0,2.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,,E2431,43.763967883199996,-79.20320648319999,328680.928,4846931.64
-894724,4153603,2018.0,2017.0,1948.0,PRIVATE,13,Toronto Centre,451 BLOOR ST E,6,41,2017-12-06,60,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,3.0,2.0,2.0,,3.0,3.0,,3.0,2.0,5.0,4.0,3.0,3.0,,4.0,,,S1323,43.671964763999995,-79.374579123,314898.0,4836676.533
-894725,4153936,2019.0,2017.0,1938.0,PRIVATE,12,Toronto-St. Paul's,110 ORIOLE PKWY,4,33,2017-12-06,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1226,43.6959928836,-79.4029240111,312609.473,4839341.983
-894726,4153798,2017.0,2017.0,1928.0,PRIVATE,12,Toronto-St. Paul's,63 ROEHAMPTON AVE,4,56,2017-12-06,67,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,4.0,4.0,3.0,,3.0,,3.0,4.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,S1221,43.708035598,-79.396523762,313123.458,4840681.507
-894727,4153938,2019.0,2017.0,1955.0,PRIVATE,12,Toronto-St. Paul's,240 ORIOLE PKWY,9,44,2017-12-06,64,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,,3.0,4.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1226,43.697013865,-79.4032770166,312580.886,4839455.38
-894728,4153799,2017.0,2017.0,1989.0,PRIVATE,12,Toronto-St. Paul's,77 ROEHAMPTON AVE,11,81,2017-12-06,75,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,5.0,3.0,4.0,3.0,4.0,4.0,3.0,,S1221,43.708135683,-79.396161299,313152.656,4840692.662
-894729,4153965,2017.0,2017.0,1951.0,PRIVATE,8,Eglinton-Lawrence,3 RIDGE HILL DR,4,12,2017-12-06,69,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,4.0,3.0,4.0,,3.0,3.0,,3.0,4.0,5.0,3.0,3.0,4.0,,3.0,4.0,,N0832,43.7030609955,-79.4261250612,310738.645,4840125.312
-894730,4155274,2019.0,2017.0,1958.0,PRIVATE,3,Etobicoke-Lakeshore,22 RIVERWOOD PKWY,4,44,2017-12-06,58,Evaluation needs to be conducted in 1 year,16,2.0,2.0,3.0,2.0,3.0,2.0,,3.0,3.0,,3.0,2.0,5.0,3.0,3.0,3.0,,4.0,3.0,,W0327,43.6388094067,-79.489549092,305627.568,4832984.75
-894731,4152982,2018.0,2017.0,1956.0,PRIVATE,4,Parkdale-High Park,95 JAMESON AVE,9,66,2017-12-06,69,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,3.0,4.0,,4.0,4.0,3.0,3.0,3.0,5.0,3.0,3.0,4.0,4.0,4.0,3.0,,S0437,43.6354033108,-79.4349062431,310036.705,4832608.24
-894732,4153370,2017.0,2017.0,1960.0,PRIVATE,12,Toronto-St. Paul's,263 RUSSELL HILL RD,7,52,2017-12-06,68,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,3.0,,4.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,S1237,43.685105293999996,-79.40728417300001,312259.105,4838132.946
-894733,4153371,2017.0,2017.0,1960.0,PRIVATE,12,Toronto-St. Paul's,265 RUSSELL HILL RD,8,48,2017-12-06,66,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,S1237,43.68523873,-79.40732490399999,312255.805,4838147.767
-894734,4155513,2017.0,2017.0,1967.0,PRIVATE,3,Etobicoke-Lakeshore,2 ROYAL YORK RD,6,60,2017-12-06,70,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,3.0,4.0,3.0,4.0,5.0,4.0,3.0,3.0,3.0,4.0,4.0,,W0335,43.6027168332,-79.4930979742,305341.50800000003,4828975.031
-894735,4155512,2017.0,2017.0,1951.0,PRIVATE,3,Etobicoke-Lakeshore,6 ROYAL YORK RD,5,72,2017-12-06,68,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,4.0,3.0,4.0,,3.0,3.0,3.0,4.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,W0335,43.6031676706,-79.4934504653,305313.049,4829025.116
-894736,4152575,2018.0,2017.0,1955.0,PRIVATE,20,Scarborough Southwest,1420 KINGSTON RD,4,36,2017-12-06,73,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,4.0,4.0,4.0,,4.0,,,3.0,3.0,5.0,4.0,3.0,4.0,,4.0,4.0,,E2033,43.6874626683,-79.2720047537,323164.95,4838414.823
-894737,4154918,2018.0,2017.0,1959.0,PRIVATE,16,Don Valley East,1284 YORK MILLS RD,7,63,2017-12-06,59,Evaluation needs to be conducted in 1 year,18,2.0,3.0,4.0,3.0,2.0,3.0,3.0,3.0,3.0,,3.0,2.0,5.0,3.0,3.0,2.0,4.0,3.0,2.0,,N1622,43.761593976099995,-79.32540301819999,318842.838,4846640.075
-894738,4153688,2020.0,2017.0,1927.0,PRIVATE,19,Beaches-East York,59 BALSAM AVE,3,19,2017-12-06,62,Evaluation needs to be conducted in 1 year,13,3.0,3.0,3.0,3.0,,3.0,,3.0,,,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,S1940,43.6724728988,-79.2898813658,321727.989,4836745.748
-894739,4155282,,2017.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,172 BERRY RD,4,32,2017-12-06,54,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,2.0,,2.0,2.0,,3.0,2.0,3.0,2.0,3.0,2.0,3.0,4.0,3.0,,W0327,43.636679641,-79.49240542300001,305388.38800000004,4832756.94
-894740,4155216,2017.0,2017.0,1962.0,PRIVATE,3,Etobicoke-Lakeshore,765 BROWNS LINE,5,24,2017-12-06,67,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,3.0,,3.0,3.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,,W0331,43.6083356867,-79.5473887151,300958.963,4829600.237
-894741,4153347,2019.0,2017.0,1989.0,PRIVATE,12,Toronto-St. Paul's,607 ST CLAIR AVE W,3,14,2017-12-06,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,3.0,4.0,,3.0,3.0,4.0,S1235,,,311004.615,4837770.886
-894742,4155504,2017.0,2017.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,2507 LAKE SHORE BLVD W,3,21,2017-12-06,56,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,3.0,3.0,2.0,3.0,3.0,3.0,3.0,,3.0,2.0,,W0336,43.6119437281,-79.4894785843,305633.594,4830000.121
-894743,4152750,2017.0,2017.0,1954.0,PRIVATE,21,Scarborough Centre,30 GILDER DR,14,192,2017-12-05,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2134,43.7371458262,-79.25653121010001,324396.207,4843937.937
-894744,4154872,2018.0,2017.0,1960.0,PRIVATE,16,Don Valley East,17 ECCLESTON DR,4,60,2017-12-05,74,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,3.0,4.0,4.0,,3.0,4.0,,4.0,4.0,5.0,3.0,3.0,4.0,3.0,4.0,,,N1628,43.7269029771,-79.31605608539999,319603.978,4842787.76
-894745,4154870,2019.0,2017.0,1958.0,PRIVATE,16,Don Valley East,25 ECCLESTON DR,4,61,2017-12-05,85,Evaluation needs to be conducted in 2 years,16,4.0,4.0,5.0,4.0,5.0,4.0,,3.0,4.0,,4.0,4.0,5.0,4.0,5.0,4.0,4.0,5.0,,,N1628,43.7272222643,-79.3179806814,319448.845,4842822.893999999
-894746,4155522,2017.0,2017.0,1959.0,PRIVATE,3,Etobicoke-Lakeshore,155 LAKE SHORE DR,5,35,2017-12-05,66,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,2.0,,3.0,3.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,,W0335,43.594648158000005,-79.505643653,304328.42600000004,4828079.602
-894747,4155507,2017.0,2017.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,2666 LAKE SHORE BLVD W,4,16,2017-12-05,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,3.0,,W0335,43.6034395527,-79.4942895822,305245.309,4829055.318
-894748,4154120,2019.0,2017.0,1960.0,PRIVATE,14,Toronto-Danforth,27 GAMBLE AVE,6,75,2017-12-05,57,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,4.0,3.0,2.0,3.0,4.0,2.0,3.0,4.0,3.0,2.0,2.0,2.0,3.0,2.0,,S1421,43.6892398078,-79.3532188818,316617.38800000004,4838597.595
-894749,4154123,2017.0,2017.0,1960.0,PRIVATE,14,Toronto-Danforth,51 GAMBLE AVE,6,49,2017-12-05,53,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,2.0,2.0,,3.0,3.0,3.0,2.0,2.0,4.0,3.0,3.0,3.0,2.0,3.0,2.0,,S1421,43.6895687051,-79.35205503590001,316711.144,4838634.294
-894750,4153502,2018.0,2017.0,1918.0,PRIVATE,13,Toronto Centre,125 EARL PL,4,15,2017-12-05,47,Building Audit,15,2.0,2.0,3.0,2.0,1.0,3.0,,3.0,,,2.0,2.0,3.0,3.0,1.0,2.0,,3.0,3.0,,S1322,43.667977815600004,-79.3782190635,314612.894,4836239.946
-894751,4153503,,2017.0,1925.0,PRIVATE,13,Toronto Centre,135 EARL PL,4,16,2017-12-05,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,2.0,3.0,,3.0,,,3.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,,S1322,43.6680405937,-79.3779246146,314633.659,4836247.873
-894752,4250630,2018.0,2017.0,1950.0,PRIVATE,14,Toronto-Danforth,260 GAMBLE AVE,3,24,2017-12-05,65,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,,3.0,,3.0,,,3.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,S1422,43.691914578,-79.342942945,317444.932,4838897.169
-894753,4154133,2019.0,2017.0,1958.0,PRIVATE,14,Toronto-Danforth,15 GAMBLE AVE,3,27,2017-12-05,59,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,,2.0,3.0,2.0,5.0,3.0,3.0,3.0,2.0,3.0,2.0,,S1421,43.6891811387,-79.3538144471,316569.387,4838590.994
-894754,4154812,2017.0,2017.0,1967.0,PRIVATE,17,Don Valley North,65 FOREST MANOR RD,17,218,2017-12-05,74,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,,N1730,43.773439744399994,-79.3439806087,317344.57300000003,4847953.138
-894755,4153737,2018.0,2017.0,1955.0,PRIVATE,11,University-Rosedale,45 GLEN RD,4,28,2017-12-05,67,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,3.0,,3.0,3.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1131,43.6746275863,-79.3751897997,314848.578,4836971.335
-894756,4268877,,2017.0,,TCHC,21,Scarborough Centre,83 GILDER DR,6,24,2017-12-05,67,Evaluation needs to be conducted in 2 years,18,2.0,3.0,3.0,3.0,4.0,4.0,3.0,4.0,3.0,,2.0,3.0,3.0,5.0,3.0,3.0,4.0,4.0,4.0,,E2134,43.7363547745,-79.25389806529999,324608.572,4843850.685
-894757,4152762,2018.0,2017.0,1963.0,PRIVATE,21,Scarborough Centre,25 TRUDELLE ST,6,66,2017-12-05,57,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,2.0,3.0,2.0,2.0,4.0,3.0,1.0,3.0,2.0,2.0,5.0,3.0,3.0,3.0,3.0,4.0,,E2135,43.7393268153,-79.2437802418,325412.352,4844257.077
-894758,4156388,2018.0,2017.0,1963.0,PRIVATE,21,Scarborough Centre,35 TRUDELLE ST,6,84,2017-12-05,54,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,1.0,2.0,2.0,3.0,3.0,3.0,,2.0,2.0,4.0,4.0,3.0,2.0,3.0,3.0,3.0,,E2135,43.738969517,-79.24334499300001,325510.51,4844207.261
-894759,4156387,2018.0,2017.0,1963.0,PRIVATE,21,Scarborough Centre,45 TRUDELLE ST,6,66,2017-12-05,62,Evaluation needs to be conducted in 1 year,18,4.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,,4.0,2.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,,E2135,43.739359678999996,-79.24262709999999,325530.477,4844213.33
-894760,4154339,2018.0,2017.0,1967.0,PRIVATE,5,York South-Weston,2460 KEELE ST,8,57,2017-12-05,66,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,,4.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,,W0526,43.7125446153,-79.4793858958,306445.675,4841176.448
-894761,4154338,2018.0,2017.0,1977.0,PRIVATE,5,York South-Weston,2500 KEELE ST,12,95,2017-12-05,69,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0526,43.7131114472,-79.4796418006,306425.038,4841239.414
-894762,4154310,2017.0,2017.0,1958.0,PRIVATE,5,York South-Weston,2567 KEELE ST,4,26,2017-12-05,71,Evaluation needs to be conducted in 2 years,16,4.0,3.0,3.0,3.0,4.0,4.0,,3.0,,,4.0,4.0,5.0,3.0,4.0,3.0,3.0,3.0,4.0,,W0523,43.7173852837,-79.4796573022,306423.67600000004,4841714.21
-894763,4154907,2018.0,2017.0,1961.0,PRIVATE,16,Don Valley East,2126 VICTORIA PARK AVE,3,11,2017-12-05,72,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,4.0,3.0,3.0,,3.0,,,4.0,4.0,5.0,3.0,4.0,3.0,4.0,3.0,,,N1625,43.7594779981,-79.3164040826,319567.945,4846406.545
-894764,4153901,2017.0,2017.0,1927.0,PRIVATE,12,Toronto-St. Paul's,310 LONSDALE RD,4,15,2017-12-05,71,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,4.0,4.0,4.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,4.0,,S1231,43.689210605,-79.41122191720001,311941.429,4838587.752
-894765,4153902,2017.0,2017.0,1927.0,PRIVATE,12,Toronto-St. Paul's,312 LONSDALE RD,4,19,2017-12-05,71,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,4.0,4.0,4.0,,3.0,,,4.0,4.0,5.0,3.0,3.0,3.0,,3.0,4.0,,S1231,43.689184139700004,-79.411404359,311926.722,4838584.795
-894766,4152847,2017.0,2017.0,1960.0,PRIVATE,24,Scarborough-Guildwood,290 MORNINGSIDE AVE,6,107,2017-12-05,61,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,4.0,4.0,,3.0,3.0,,3.0,2.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,E2428,43.7717382496,-79.18790554649999,329909.622,4847799.407
-894767,4153922,2018.0,2017.0,1929.0,PRIVATE,12,Toronto-St. Paul's,57 LAWTON BLVD,4,12,2017-12-05,63,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,,,S1232,43.691956596000004,-79.39570523,313191.661,4838895.195
-894768,4250636,2019.0,2017.0,1957.0,PRIVATE,12,Toronto-St. Paul's,111 LAWTON BLVD,13,152,2017-12-05,74,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,4.0,4.0,4.0,,3.0,4.0,,3.0,4.0,5.0,3.0,3.0,4.0,4.0,3.0,4.0,,S1232,43.694112715900005,-79.3967271085,313109.244,4839133.698
-894769,4153926,2018.0,2017.0,1962.0,PRIVATE,12,Toronto-St. Paul's,125 LAWTON BLVD,12,122,2017-12-05,66,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,3.0,4.0,4.0,,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,S1232,43.6945745052,-79.3968664872,313097.941,4839184.991
-894770,4152834,2017.0,2017.0,1972.0,PRIVATE,24,Scarborough-Guildwood,80 MORNELLE CRT,16,265,2017-12-05,78,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,4.0,2.0,4.0,3.0,3.0,3.0,,4.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,,E2423,43.787820399999994,-79.19753046699999,329128.055,4849584.211
-894771,4152848,2017.0,2017.0,1972.0,PRIVATE,24,Scarborough-Guildwood,280 MORNINGSIDE AVE,14,165,2017-12-05,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,E2428,43.7707432757,-79.1878549542,329914.104,4847688.883
-894772,4274443,2017.0,2017.0,1950.0,SOCIAL HOUSING,19,Beaches-East York,1845 GERRARD ST E,3,20,2017-12-05,75,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,2.0,,4.0,,,4.0,4.0,5.0,3.0,4.0,3.0,,3.0,4.0,,S1934,43.6789313612,-79.3134909905,319822.568,4837458.76
-894773,4261157,,2017.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,103 SIXTEENTH ST,3,10,2017-12-05,56,Evaluation needs to be conducted in 1 year,15,2.0,2.0,3.0,2.0,3.0,3.0,,3.0,,,2.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,W0335,43.6028075946,-79.5164885645,303453.266,4828985.195
-894774,4152871,2018.0,2017.0,1969.0,PRIVATE,22,Scarborough-Agincourt,3747 SHEPPARD AVE E,4,37,2017-12-05,59,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,2.0,,4.0,4.0,3.0,2.0,,2.0,3.0,5.0,3.0,3.0,3.0,2.0,3.0,2.0,,E2232,43.781268966099994,-79.2952353294,321266.557,4848831.45
-894775,4152563,2018.0,2017.0,1932.0,PRIVATE,20,Scarborough Southwest,3008 QUEEN ST E,4,16,2017-12-05,56,Evaluation needs to be conducted in 1 year,15,2.0,3.0,3.0,2.0,3.0,2.0,,3.0,,,2.0,3.0,2.0,4.0,3.0,3.0,,4.0,3.0,,E2033,43.6754276016,-79.277427743,322731.349,4837076.607
-894776,4152562,2018.0,2017.0,1932.0,PRIVATE,20,Scarborough Southwest,3010 QUEEN ST E,4,16,2017-12-05,59,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,2.0,,2.0,,3.0,,,2.0,3.0,3.0,4.0,3.0,3.0,,4.0,3.0,,E2033,43.6754799628,-79.2772204699,322748.047,4837082.469
-894777,4154912,,2017.0,1962.0,PRIVATE,16,Don Valley East,71 PARKWOODS VILLAGE DR,7,81,2017-12-05,60,Evaluation needs to be conducted in 1 year,18,3.0,3.0,2.0,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,2.0,5.0,3.0,3.0,4.0,3.0,4.0,2.0,,N1625,43.7607627903,-79.3217087274,319140.499,4846548.357
-894778,4156014,2018.0,2017.0,1950.0,PRIVATE,5,York South-Weston,1 GREENBROOK DR,3,23,2017-12-05,65,Evaluation needs to be conducted in 1 year,15,3.0,4.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,4.0,4.0,,3.0,3.0,,W0532,43.696926149,-79.475711635,306735.523,4839446.054
-894779,4155284,2018.0,2017.0,1953.0,PRIVATE,3,Etobicoke-Lakeshore,8 KINGS POINT DR,5,16,2017-12-05,65,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,3.0,,4.0,3.0,,W0327,43.6396821871,-79.4933367622,305321.945,4833081.683999999
-894780,4155105,,2017.0,1954.0,PRIVATE,5,York South-Weston,"5 GREENBROOK DR
-
-",3,12,2017-12-05,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,,W0532,43.696492821199996,-79.4764300653,306684.353,4839393.215
-894781,4153690,2018.0,2017.0,1950.0,PRIVATE,19,Beaches-East York,501 KINGSTON RD,7,75,2017-12-05,75,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,,3.0,,3.0,4.0,,4.0,4.0,5.0,3.0,3.0,4.0,4.0,3.0,4.0,,S1938,,,320697.34,4837263.304
-894782,4152691,2018.0,2017.0,1958.0,PRIVATE,20,Scarborough Southwest,711 KENNEDY RD,6,79,2017-12-05,61,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,4.0,,2.0,3.0,,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,E2023,43.728707711400006,-79.26590545090001,323643.766,4842998.342
-894783,4155241,,2017.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,183 BERRY RD,4,50,2017-12-05,60,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,3.0,3.0,,2.0,,,3.0,2.0,5.0,3.0,3.0,3.0,2.0,4.0,2.0,,W0329,43.636390118,-79.4911570627,305497.797,4832715.966
-894784,4153751,,2017.0,1955.0,PRIVATE,11,University-Rosedale,171 ST CLAIR AVE E,4,36,2017-12-05,51,Evaluation needs to be conducted in 1 year,18,2.0,2.0,3.0,2.0,3.0,2.0,2.0,3.0,2.0,,2.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1121,43.689555816,-79.38601833050001,313973.18100000004,4838628.565
-894785,4155332,2018.0,2017.0,1955.0,PRIVATE,2,Etobicoke Centre,1 ST STEVENS CRT,4,36,2017-12-05,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,W0229,43.663908159399995,-79.5207555553,303110.372,4835773.303
-894786,4155330,2018.0,2017.0,1955.0,PRIVATE,2,Etobicoke Centre,5 ST STEVENS CRT,4,41,2017-12-05,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0229,43.66460799,-79.520136568,303160.05,4835851.99
-894787,4155329,2018.0,2017.0,1955.0,PRIVATE,2,Etobicoke Centre,7 ST STEVENS CRT,3,26,2017-12-05,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0229,43.664125615500005,-79.5195869196,303204.62100000004,4835797.436000001
-894788,4152866,2017.0,2017.0,1978.0,PRIVATE,22,Scarborough-Agincourt,125 BAMBURGH CRCL,20,332,2017-12-05,75,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,4.0,,4.0,3.0,5.0,5.0,4.0,3.0,5.0,5.0,3.0,2.0,E2221,43.8130997118,-79.325615359,318813.837,4852362.223
-894789,4155764,2019.0,2017.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,1 A BIRCHLEA AVE,3,21,2017-12-05,59,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,2.0,,2.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0334,43.592762174499995,-79.527405433,302571.59,4827869.423
-894790,4155874,,2017.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,5 BIRCHLEA AVE,3,13,2017-12-05,65,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,3.0,,W0334,43.592642046,-79.527957262,302531.131,4827854.897
-894791,4154450,2019.0,2017.0,1958.0,PRIVATE,6,York Centre,2 DORADO CRT,4,87,2017-12-05,45,Building Audit,16,2.0,2.0,3.0,2.0,2.0,3.0,,2.0,2.0,,2.0,2.0,3.0,2.0,2.0,2.0,,2.0,3.0,,N0627,43.738441642299996,-79.4861508679,305900.09,4844053.338
-894792,4153766,,2017.0,1956.0,PRIVATE,12,Toronto-St. Paul's,25 DAVISVILLE AVE,4,14,2017-12-05,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,4.0,3.0,4.0,,3.0,,,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,4.0,,S1233,43.6982817517,-79.3955853975,313200.678,4839596.99
-894793,4153735,2017.0,2017.0,1950.0,PRIVATE,11,University-Rosedale,36 CASTLE FRANK RD,4,53,2017-12-05,65,Evaluation needs to be conducted in 1 year,17,4.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,,S1131,43.676613159,-79.36971986489999,315289.335,4837192.601
-894794,4153863,2017.0,2017.0,1960.0,PRIVATE,15,Don Valley West,2875 YONGE ST,4,18,2017-12-05,67,Evaluation needs to be conducted in 2 years,14,4.0,3.0,4.0,3.0,4.0,3.0,,3.0,,,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,,,N1526,43.720768502,-79.40097412,312763.124,4842095.615
-894795,4153697,2020.0,2017.0,1966.0,PRIVATE,19,Beaches-East York,592 WOODBINE AVE,5,36,2017-12-05,59,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,4.0,2.0,3.0,3.0,,3.0,4.0,4.0,2.0,2.0,3.0,2.0,2.0,4.0,,S1934,43.6770075216,-79.3095598488,320140.021,4837245.728999999
-894796,4153639,2019.0,2017.0,1915.0,PRIVATE,14,Toronto-Danforth,279 WOODFIELD RD,4,42,2017-12-05,49,Building Audit,14,2.0,2.0,3.0,2.0,,3.0,,3.0,,,2.0,2.0,2.0,3.0,2.0,2.0,,3.0,3.0,,S1439,43.6716640558,-79.323704314,319000.793,4836649.59
-894797,4155142,2019.0,2017.0,1954.0,PRIVATE,5,York South-Weston,131 WOODWARD AVE,3,10,2017-12-05,69,Evaluation needs to be conducted in 2 years,14,3.0,3.0,3.0,3.0,,3.0,,3.0,,,4.0,3.0,5.0,4.0,3.0,3.0,,4.0,4.0,,W0525,43.7094051154,-79.5081946065,304124.096,4840827.536
-894798,4155145,,2017.0,1954.0,PRIVATE,5,York South-Weston,137 WOODWARD AVE,3,11,2017-12-05,69,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,,3.0,3.0,3.0,5.0,4.0,3.0,4.0,,4.0,4.0,,W0525,43.709579516400005,-79.5073998504,304188.144,4840846.9
-894799,4155146,2018.0,2017.0,1945.0,PRIVATE,5,York South-Weston,139 WOODWARD AVE,3,10,2017-12-05,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,4.0,4.0,3.0,,4.0,4.0,,W0525,43.709631600600005,-79.5071555325,304207.833,4840852.683
-894800,4155147,2020.0,2017.0,1954.0,PRIVATE,5,York South-Weston,141 WOODWARD AVE,3,11,2017-12-05,70,Evaluation needs to be conducted in 2 years,16,3.0,4.0,3.0,3.0,4.0,3.0,,4.0,,3.0,3.0,3.0,5.0,4.0,3.0,3.0,,4.0,4.0,,W0525,43.7096923975,-79.5068983102,304228.562,4840859.433999999
-894801,4155148,2018.0,2017.0,1954.0,PRIVATE,5,York South-Weston,143 WOODWARD AVE,3,10,2017-12-05,72,Evaluation needs to be conducted in 2 years,15,3.0,4.0,3.0,4.0,3.0,3.0,,4.0,,,4.0,3.0,5.0,4.0,3.0,4.0,,4.0,3.0,,W0525,43.709743360299996,-79.5066462518,304248.875,4840865.093
-894802,4155515,2017.0,2017.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,24 SECOND ST,4,23,2017-12-05,69,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,3.0,3.0,3.0,,4.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,4.0,,W0335,43.6009687445,-79.499480988,304826.234,4828780.81
-894803,4154892,2019.0,2017.0,1966.0,PRIVATE,16,Don Valley East,74 CURLEW DR,4,112,2017-12-05,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,4.0,,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,N1625,43.743508705,-79.31620178,319587.906,4844633.452
-894804,4153610,2017.0,2017.0,1965.0,PRIVATE,14,Toronto-Danforth,33 EASTMOUNT AVE,24,200,2017-12-04,67,Evaluation needs to be conducted in 2 years,19,4.0,3.0,3.0,2.0,3.0,4.0,2.0,4.0,4.0,3.0,4.0,2.0,5.0,3.0,3.0,5.0,3.0,3.0,4.0,,S1424,43.67900365770001,-79.3612885228,315968.75800000003,4837459.273
-894805,4152811,2017.0,2017.0,1991.0,SOCIAL HOUSING,24,Scarborough-Guildwood,450 B SCARBOROUGH GOLF CLUB RD,5,112,2017-12-04,70,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,,3.0,3.0,5.0,4.0,4.0,3.0,,4.0,4.0,3.0,E2430,43.7546186553,-79.2171707539,327651.524,4845946.183
-894806,4152704,2017.0,2017.0,1969.0,PRIVATE,21,Scarborough Centre,807 KENNEDY RD,5,34,2017-12-04,54,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,3.0,,3.0,3.0,3.0,3.0,2.0,1.0,3.0,3.0,2.0,,E2133,43.7337142939,-79.267968421,323476.02,4843554.095
-894807,4154185,2017.0,2017.0,1950.0,PRIVATE,15,Don Valley West,715 MILLWOOD RD,3,14,2017-12-04,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,N1535,43.7042226354,-79.3738454238,314952.036,4840259.427
-894808,4253819,2017.0,2017.0,1960.0,PRIVATE,15,Don Valley West,841 MILLWOOD RD,3,18,2017-12-04,59,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,2.0,2.0,,4.0,,2.0,3.0,2.0,4.0,3.0,3.0,3.0,,3.0,4.0,,N1535,43.704354753000004,-79.3670652416,315498.457,4840274.938999999
-894809,4221280,2017.0,2017.0,1965.0,PRIVATE,11,University-Rosedale,6-10 WALMER RD,18,131,2017-12-04,65,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,4.0,,S1126,43.666995001000004,-79.406173702,312350.807,4836121.022
-894810,4152828,2017.0,2017.0,1970.0,PRIVATE,24,Scarborough-Guildwood,40 TUXEDO CRT,16,216,2017-12-04,46,Building Audit,18,2.0,2.0,2.0,2.0,2.0,3.0,1.0,2.0,2.0,,2.0,3.0,3.0,3.0,1.0,3.0,2.0,3.0,3.0,,E2422,43.7812686846,-79.2307597681,326456.284,4848846.156
-894811,4156586,2017.0,2017.0,1960.0,PRIVATE,15,Don Valley West,855 MILLWOOD RD,3,22,2017-12-04,62,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N1535,43.7041508326,-79.36627859020001,315561.894,4840252.385
-894812,4154196,2017.0,2017.0,1960.0,PRIVATE,15,Don Valley West,27 BRENTCLIFFE RD,3,12,2017-12-04,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N1529,43.714989869300005,-79.35960275,316097.848,4841457.449
-894813,4153178,2017.0,2017.0,1919.0,PRIVATE,11,University-Rosedale,334 BLOOR ST W,3,24,2017-12-04,56,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,2.0,3.0,2.0,3.0,3.0,,2.0,3.0,,S1126,43.666839079700004,-79.404253282,312505.959,4836102.924
-894814,4154197,2017.0,2017.0,1958.0,PRIVATE,15,Don Valley West,31 BRENTCLIFFE RD,4,16,2017-12-04,63,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N1529,43.7152123355,-79.35969038260001,316090.745,4841482.152
-894815,4154770,2017.0,2017.0,1960.0,PRIVATE,15,Don Valley West,7 ROCHEFORT,3,64,2017-12-04,67,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,N1533,,,317940.36699999997,4841805.466
-894816,4153850,2017.0,2017.0,1930.0,PRIVATE,15,Don Valley West,11 SHERWOOD AVE,3,23,2017-12-04,60,Evaluation needs to be conducted in 1 year,16,3.0,2.0,3.0,3.0,4.0,2.0,2.0,3.0,,,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,3.0,,N1526,43.713358222,-79.398875082,312933.244,4841272.594
-894817,4241532,2017.0,2017.0,1940.0,PRIVATE,15,Don Valley West,27 SHERWOOD AVE,3,17,2017-12-04,81,Evaluation needs to be conducted in 2 years,14,4.0,4.0,4.0,4.0,,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,N1526,43.713606404,-79.397782703,313021.238,4841300.273
-894818,4153834,2017.0,2017.0,1967.0,PRIVATE,15,Don Valley West,241 REDPATH AVE,12,46,2017-12-04,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,3.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,4.0,,N1526,43.71148813,-79.393866958,313337.085,4841065.338
-894819,4152694,2017.0,2017.0,1960.0,PRIVATE,21,Scarborough Centre,19 ROSEMOUNT DR,7,71,2017-12-04,68,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,3.0,4.0,,2.0,3.0,4.0,3.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,,E2133,43.73259049479999,-79.2744267602,322956.092,4843427.802
-894820,4155666,2017.0,2017.0,1974.0,PRIVATE,1,Etobicoke North,46 PANORAMA CRT,19,222,2017-12-04,70,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,4.0,3.0,4.0,3.0,4.0,3.0,,4.0,4.0,5.0,3.0,3.0,3.0,4.0,4.0,3.0,,W0124,43.7482299219,-79.5783390119,298475.409,4845143.751
-894821,4154404,2017.0,2017.0,1965.0,PRIVATE,6,York Centre,2233 JANE ST,5,39,2017-12-04,48,Building Audit,18,2.0,2.0,2.0,2.0,2.0,3.0,,3.0,2.0,2.0,2.0,2.0,3.0,3.0,2.0,3.0,3.0,3.0,2.0,,N0627,43.7246876159,-79.5089652958,304062.206,4842525.308
-894822,4152612,2017.0,2017.0,1974.0,PRIVATE,20,Scarborough Southwest,552 BIRCHMOUNT RD,7,61,2017-12-04,53,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,2.0,2.0,3.0,3.0,4.0,,2.0,2.0,4.0,3.0,3.0,3.0,2.0,2.0,2.0,,E2029,43.7117373497,-79.27084693229999,323250.849,4841111.907
-894823,4155794,2017.0,2017.0,1940.0,PRIVATE,15,Don Valley West,1215 BAYVIEW AVE,4,38,2017-12-04,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N1535,43.6972709992,-79.3716069474,315133.654,4839487.445
-894824,4155483,2017.0,2017.0,1950.0,PRIVATE,3,Etobicoke-Lakeshore,26 ALBERT AVE,3,23,2017-12-04,66,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,4.0,,4.0,3.0,,W0336,43.616241601700004,-79.48927189850001,305650.222,4830477.596
-894825,4153858,2017.0,2017.0,1960.0,PRIVATE,15,Don Valley West,2707 YONGE ST,4,48,2017-12-04,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,2.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,2.0,,3.0,,,N1526,43.716980201000005,-79.400164813,312828.832,4841674.847
-894826,4153861,2017.0,2017.0,1934.0,PRIVATE,15,Don Valley West,2779 YONGE ST,4,16,2017-12-04,58,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,,,2.0,2.0,5.0,3.0,2.0,2.0,4.0,3.0,3.0,,N1526,43.718580523199996,-79.40042067270001,312808.266,4841851.654
-894827,4153862,2017.0,2017.0,1928.0,PRIVATE,15,Don Valley West,2867 YONGE ST,3,32,2017-12-04,73,Evaluation needs to be conducted in 2 years,14,4.0,3.0,4.0,4.0,4.0,4.0,,3.0,,,4.0,4.0,5.0,3.0,3.0,3.0,,3.0,,,N1526,43.72055353,-79.400838687,312774.064,4842071.748
-894828,4154709,2017.0,2017.0,1961.0,PRIVATE,18,Willowdale,286 FINCH AVE W,4,47,2017-12-04,64,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N1822,43.774699028,-79.440090341,309595.94399999996,4848123.374
-894829,4155455,2017.0,2017.0,1978.0,PRIVATE,1,Etobicoke North,2777 KIPLING AVE,18,325,2017-12-01,70,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,3.0,3.0,3.0,5.0,3.0,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,W0124,43.7560633856,-79.5872449019,297759.089,4846014.737
-894830,4152632,2017.0,2017.0,1955.0,PRIVATE,21,Scarborough Centre,32 CRAIGTON DR,4,30,2017-12-01,71,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,,,3.0,3.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,,E2131,43.727697688199996,-79.29944885649999,320941.719,4842879.117
-894831,4244523,2017.0,2017.0,1970.0,PRIVATE,19,Beaches-East York,265 MAIN ST,24,293,2017-12-01,72,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,,S1933,43.687784182,-79.299964232,320910.583,4838445.746
-894832,4244526,2017.0,2017.0,1971.0,PRIVATE,19,Beaches-East York,275 MAIN ST,29,324,2017-12-01,71,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,,S1933,43.687596199,-79.301189477,320811.852,4838424.633
-894833,4155233,2017.0,2017.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,5 NEWHOLM RD,4,27,2017-12-01,52,Evaluation needs to be conducted in 1 year,17,2.0,2.0,3.0,2.0,2.0,3.0,,3.0,,3.0,3.0,2.0,3.0,3.0,2.0,3.0,2.0,3.0,3.0,,W0329,43.635644689799996,-79.4874066551,305800.477,4832633.187
-894834,4155242,2017.0,2017.0,1959.0,PRIVATE,3,Etobicoke-Lakeshore,10 KINSDALE BLVD,4,23,2017-12-01,52,Evaluation needs to be conducted in 1 year,17,2.0,3.0,3.0,2.0,2.0,3.0,,3.0,,2.0,2.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,2.0,,W0329,43.635816471999995,-79.491575949,305463.99600000004,4832652.234
-894835,4154791,2017.0,2017.0,1958.0,PRIVATE,16,Don Valley East,46 FOXDEN RD,3,22,2017-12-01,75,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,4.0,4.0,4.0,,4.0,,4.0,4.0,4.0,5.0,3.0,4.0,3.0,3.0,3.0,4.0,,N1626,43.72911001,-79.342048581,317497.67699999997,4843021.001
-894836,4153148,2017.0,2017.0,1986.0,SOCIAL HOUSING,9,Davenport,1289 DUNDAS ST W,7,149,2017-12-01,72,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,,4.0,4.0,3.0,4.0,3.0,4.0,,4.0,3.0,,S0937,43.649212821000006,-79.425416097,310800.857,4834143.938
-894837,4152709,2017.0,2017.0,1967.0,PRIVATE,21,Scarborough Centre,833 KENNEDY RD,7,54,2017-12-01,61,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,2.0,3.0,,2.0,3.0,,2.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,E2133,43.736318401400005,-79.2689338549,323397.432,4843843.179
-894838,4169241,2017.0,2017.0,1928.0,PRIVATE,12,Toronto-St. Paul's,42 VAUGHAN RD,3,15,2017-12-01,55,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,3.0,,3.0,,3.0,,,3.0,2.0,3.0,3.0,3.0,3.0,2.0,2.0,3.0,,S1235,43.68218998,-79.4195011613,311274.675,4837807.056
-894839,4154933,2017.0,2017.0,1938.0,PRIVATE,12,Toronto-St. Paul's,14 TICHESTER RD,4,32,2017-12-01,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,4.0,3.0,3.0,,2.0,,3.0,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1230,43.686006092,-79.417750526,311415.151,4838232.1219999995
-894840,4155537,2017.0,2017.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,95 TWENTY FIFTH ST,3,46,2017-12-01,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0334,43.5956296251,-79.52294293050001,302931.99600000004,4828187.853
-894841,4155459,2017.0,2017.0,1968.0,PRIVATE,1,Etobicoke North,2548 KIPLING AVE,7,153,2017-12-01,59,Evaluation needs to be conducted in 1 year,18,4.0,3.0,3.0,2.0,3.0,3.0,2.0,2.0,3.0,,2.0,3.0,5.0,3.0,2.0,3.0,3.0,4.0,3.0,,W0123,43.745263651,-79.58396804600001,298021.44,4844815.616
-894842,4153685,2017.0,2017.0,1917.0,PRIVATE,19,Beaches-East York,97 LEE AVE,3,10,2017-12-01,60,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,4.0,3.0,3.0,4.0,2.0,2.0,3.0,3.0,3.0,3.0,,S1939,43.6711166025,-79.29799553229999,321074.04,4836593.47
-894843,4153701,2017.0,2017.0,1960.0,PRIVATE,19,Beaches-East York,1636 GERRARD ST E,6,48,2017-12-01,80,Evaluation needs to be conducted in 2 years,17,5.0,3.0,4.0,3.0,4.0,4.0,,3.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,,S1934,43.67596288399999,-79.319872249,319308.507,4837128.786
-894844,4269869,2017.0,2017.0,1959.0,PRIVATE,16,Don Valley East,110 COTTONWOOD DR,3,22,2017-12-01,75,Evaluation needs to be conducted in 2 years,17,4.0,4.0,3.0,4.0,4.0,4.0,,3.0,,4.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,,N1626,43.729582726000004,-79.342147167,317500.023,4843085.579
-894845,4156293,2017.0,2017.0,1967.0,PRIVATE,8,Eglinton-Lawrence,111 RIDELLE AVE,18,139,2017-12-01,64,Evaluation needs to be conducted in 1 year,19,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,2.0,,N0832,43.7043088813,-79.4391249601,309690.767,4840263.024
-894846,4153851,2017.0,2017.0,1930.0,PRIVATE,15,Don Valley West,15 SHERWOOD AVE,3,26,2017-12-01,72,Evaluation needs to be conducted in 2 years,15,4.0,3.0,3.0,4.0,4.0,3.0,,3.0,,,4.0,4.0,5.0,3.0,4.0,4.0,,4.0,2.0,,N1526,43.71341493600001,-79.398583424,312956.739,4841278.923
-894847,4153852,2017.0,2017.0,1930.0,PRIVATE,15,Don Valley West,21 SHERWOOD AVE,3,26,2017-12-01,58,Evaluation needs to be conducted in 1 year,17,3.0,2.0,3.0,3.0,4.0,2.0,2.0,2.0,,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,N1526,43.713477488,-79.398290281,312980.353,4841285.901000001
-894848,4153853,2017.0,2017.0,1930.0,PRIVATE,15,Don Valley West,25 SHERWOOD AVE,3,27,2017-12-01,60,Evaluation needs to be conducted in 1 year,17,3.0,2.0,3.0,3.0,4.0,2.0,2.0,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N1526,43.713530331,-79.398012046,313002.767,4841291.799
-894849,4152630,2017.0,2017.0,1955.0,PRIVATE,21,Scarborough Centre,880 PHARMACY AVE,4,26,2017-12-01,75,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,4.0,4.0,4.0,,3.0,,4.0,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,3.0,,E2131,43.7291106346,-79.2994551436,320940.832,4843036.085
-894850,4154433,2017.0,2017.0,1965.0,PRIVATE,6,York Centre,28 HEATHROW DR,3,11,2017-12-01,69,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,3.0,3.0,3.0,,4.0,,,3.0,3.0,5.0,4.0,3.0,3.0,,4.0,3.0,,N0627,43.7252112669,-79.509276294,304037.158,4842583.484
-894851,4154432,2017.0,2017.0,1965.0,PRIVATE,6,York Centre,32 HEATHROW DR,3,11,2017-12-01,69,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,,,4.0,3.0,5.0,4.0,3.0,3.0,,4.0,4.0,,N0627,43.7253655366,-79.5088869667,304068.528,4842600.618
-894852,4152713,2017.0,2017.0,1960.0,PRIVATE,21,Scarborough Centre,879 KENNEDY RD,4,29,2017-12-01,58,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,2.0,3.0,,3.0,3.0,3.0,2.0,2.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,,E2133,43.73995556,-79.270578917,323263.544,4844247.841
-894853,4155358,2017.0,2017.0,1970.0,PRIVATE,1,Etobicoke North,2085 ISLINGTON AVE,20,266,2017-12-01,73,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,,4.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,4.0,W0135,43.7035776497,-79.5492233546,300817.193,4840181.403
-894854,4155918,2017.0,2017.0,1970.0,PRIVATE,1,Etobicoke North,2101 ISLINGTON AVE,22,271,2017-12-01,74,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,W0135,43.7035776497,-79.5492233546,300817.193,4840181.403
-894855,4154428,2017.0,2017.0,1965.0,PRIVATE,6,York Centre,2251 JANE ST,3,11,2017-12-01,71,Evaluation needs to be conducted in 2 years,15,4.0,4.0,3.0,3.0,3.0,3.0,,4.0,,,3.0,3.0,5.0,4.0,3.0,3.0,,4.0,4.0,,N0627,43.7254545938,-79.5093332318,304032.575,4842610.516
-894856,4154429,2017.0,2017.0,1965.0,PRIVATE,6,York Centre,2253 JANE ST,3,11,2017-12-01,71,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,3.0,3.0,3.0,,4.0,,,4.0,3.0,5.0,4.0,3.0,3.0,,4.0,4.0,3.0,N0627,43.7256526155,-79.5093932499,304027.743,4842632.515
-894857,4154430,2017.0,2017.0,1965.0,PRIVATE,6,York Centre,2255 JANE ST,3,11,2017-12-01,71,Evaluation needs to be conducted in 2 years,15,4.0,4.0,3.0,3.0,3.0,4.0,,4.0,,,3.0,3.0,5.0,3.0,3.0,4.0,,4.0,3.0,,N0627,43.7258913153,-79.5094480402,304023.333,4842659.033
-894858,4154431,2017.0,2017.0,1965.0,PRIVATE,6,York Centre,2257 JANE ST,3,11,2017-12-01,72,Evaluation needs to be conducted in 2 years,15,4.0,3.0,3.0,3.0,3.0,4.0,,4.0,,,4.0,3.0,5.0,4.0,3.0,4.0,,4.0,3.0,,N0627,43.726098274499996,-79.5095108291,304018.278,4842682.025
-894859,4167764,2017.0,2017.0,1969.0,PRIVATE,20,Scarborough Southwest,544 BIRCHMOUNT RD,11,131,2017-12-01,63,Evaluation needs to be conducted in 1 year,19,4.0,3.0,4.0,2.0,3.0,3.0,2.0,4.0,3.0,3.0,3.0,4.0,5.0,3.0,3.0,4.0,2.0,2.0,3.0,,E2029,43.711075654,-79.270595187,323271.08,4841039.404
-894860,4167765,2017.0,2017.0,2011.0,PRIVATE,20,Scarborough Southwest,550 BIRCHMOUNT RD,10,153,2017-12-01,71,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,2.0,3.0,3.0,3.0,3.0,4.0,,2.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,E2029,43.71136709899999,-79.27072123800001,323260.832,4841071.755
-894861,4152611,2017.0,2017.0,1972.0,PRIVATE,20,Scarborough Southwest,560 BIRCHMOUNT RD,13,103,2017-12-01,56,Evaluation needs to be conducted in 1 year,19,2.0,3.0,3.0,2.0,2.0,3.0,2.0,3.0,2.0,3.0,2.0,3.0,5.0,2.0,2.0,3.0,3.0,4.0,4.0,,E2029,43.7123365662,-79.2710095666,323237.558,4841178.443
-894862,4154180,2017.0,2017.0,1965.0,PRIVATE,15,Don Valley West,1291 BAYVIEW AVE,6,69,2017-12-01,71,Evaluation needs to be conducted in 2 years,17,4.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,4.0,,4.0,4.0,5.0,4.0,3.0,3.0,3.0,4.0,,,N1535,43.6976143504,-79.3716799058,315127.711,4839525.585
-894863,4152609,2017.0,2017.0,1968.0,PRIVATE,20,Scarborough Southwest,3423 ST CLAIR AVE E,4,30,2017-12-01,67,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,5.0,4.0,3.0,4.0,3.0,4.0,3.0,,E2029,43.7134790514,-79.2732946837,323053.066,4841304.866
-894864,4155020,2017.0,2017.0,1971.0,PRIVATE,12,Toronto-St. Paul's,330 WINNETT AVE,4,39,2017-12-01,64,Evaluation needs to be conducted in 1 year,17,3.0,4.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1223,43.692267101000006,-79.43505588100001,310019.468,4838926.465
-894865,4154183,2017.0,2017.0,1950.0,PRIVATE,15,Don Valley West,1315 BAYVIEW AVE,3,38,2017-12-01,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N1535,43.6985850004,-79.3720164996,315100.405,4839633.3889999995
-894866,4155665,2017.0,2017.0,2006.0,PRIVATE,15,Don Valley West,1425 BAYVIEW AVE,4,14,2017-12-01,91,Evaluation needs to be conducted in 3 years,18,5.0,4.0,5.0,4.0,,5.0,5.0,4.0,4.0,4.0,5.0,5.0,5.0,5.0,4.0,4.0,,5.0,5.0,4.0,N1535,43.7027252983,-79.3737282116,314961.743,4840093.105
-894867,4154207,2017.0,2017.0,1965.0,PRIVATE,15,Don Valley West,1833 BAYVIEW AVE,4,112,2017-12-01,70,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,4.0,3.0,4.0,3.0,3.0,,4.0,3.0,5.0,3.0,4.0,3.0,4.0,3.0,3.0,,N1529,43.7128618107,-79.3770362337,314693.42,4841218.833000001
-894868,4154205,2017.0,2017.0,1965.0,PRIVATE,15,Don Valley West,1903 BAYVIEW AVE,5,27,2017-12-01,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N1529,43.715723026300005,-79.377538515,314652.469,4841536.636
-894869,4265057,2017.0,2017.0,1970.0,PRIVATE,19,Beaches-East York,2575 DANFORTH AVE,23,335,2017-12-01,68,Evaluation needs to be conducted in 2 years,19,3.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,,S1933,43.688201388500005,-79.3003203967,320882.019,4838491.074
-894870,4152633,2017.0,2017.0,1955.0,PRIVATE,21,Scarborough Centre,1 RANNOCK ST,4,30,2017-12-01,68,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,2.0,3.0,2.0,,4.0,,,3.0,3.0,5.0,4.0,3.0,3.0,4.0,4.0,4.0,,E2131,43.7279918888,-79.3000339041,320894.507,4842911.688999999
-894871,4244521,2017.0,2017.0,1969.0,PRIVATE,19,Beaches-East York,255 MAIN ST,9,128,2017-12-01,71,Evaluation needs to be conducted in 2 years,19,3.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,,S1933,43.687299065,-79.300651307,320855.31899999996,4838391.723
-894872,4154945,2017.0,2017.0,1940.0,PRIVATE,12,Toronto-St. Paul's,1576 BATHURST ST,4,24,2017-11-30,58,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,,3.0,3.0,3.0,2.0,3.0,2.0,2.0,3.0,3.0,,,S1229,43.6863326216,-79.41998131300001,311235.532,4838267.274
-894873,4154119,2017.0,2017.0,1966.0,PRIVATE,14,Toronto-Danforth,100 GOWAN AVE,17,121,2017-11-30,74,Evaluation needs to be conducted in 2 years,20,4.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,5.0,3.0,4.0,3.0,4.0,3.0,3.0,4.0,S1421,43.6883007663,-79.3508994916,316804.549,4838493.588
-894874,4153966,2017.0,2017.0,1953.0,PRIVATE,8,Eglinton-Lawrence,2100 BATHURST ST,5,62,2017-11-30,67,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,,N0832,43.7037994792,-79.4264104952,310715.567,4840207.343
-894875,4152768,2017.0,2017.0,1964.0,PRIVATE,21,Scarborough Centre,123 BELLAMY RD N,12,250,2017-11-30,60,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,4.0,2.0,3.0,3.0,3.0,,2.0,2.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,,E2136,43.741439900100005,-79.23165380399999,326398.571,4844421.149
-894876,4152771,2017.0,2017.0,1971.0,PRIVATE,21,Scarborough Centre,126 BELLAMY RD N,16,253,2017-11-30,57,Evaluation needs to be conducted in 1 year,18,2.0,2.0,3.0,3.0,2.0,3.0,2.0,3.0,3.0,,2.0,3.0,4.0,2.0,3.0,3.0,4.0,3.0,4.0,,E2136,43.742426479799995,-79.2319698725,326372.76300000004,4844530.666999999
-894877,4154679,2017.0,2017.0,1953.0,PRIVATE,8,Eglinton-Lawrence,2135 AVENUE RD,3,54,2017-11-30,62,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0824,43.739166681099995,-79.42089963859999,311155.974,4844136.782
-894878,4154108,2017.0,2017.0,1960.0,PRIVATE,14,Toronto-Danforth,15 BATER AVE,3,34,2017-11-30,66,Evaluation needs to be conducted in 2 years,16,4.0,3.0,3.0,4.0,3.0,4.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1421,43.6867361824,-79.3548678509,316484.95,4838319.22
-894879,4154671,2017.0,2017.0,1969.0,PRIVATE,8,Eglinton-Lawrence,2200 AVENUE RD,16,152,2017-11-30,63,Evaluation needs to be conducted in 1 year,18,4.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,,N0821,43.740230303000004,-79.42255459350001,311022.559,4844254.825
-894880,4152753,2017.0,2017.0,1962.0,PRIVATE,21,Scarborough Centre,1340 DANFORTH RD,15,173,2017-11-30,67,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,4.0,3.0,2.0,4.0,,2.0,2.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,,E2135,,,325262.778,4844643.98
-894881,4152754,2017.0,2017.0,1965.0,PRIVATE,21,Scarborough Centre,1350 DANFORTH RD,15,225,2017-11-30,72,Evaluation needs to be conducted in 2 years,19,5.0,4.0,4.0,4.0,3.0,4.0,3.0,2.0,4.0,,3.0,3.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,4.0,E2135,,,325244.414,4844732.401000001
-894882,4152755,2017.0,2017.0,1963.0,PRIVATE,21,Scarborough Centre,1360 DANFORTH RD,15,172,2017-11-30,67,Evaluation needs to be conducted in 2 years,18,5.0,4.0,4.0,3.0,2.0,4.0,3.0,2.0,4.0,,2.0,2.0,4.0,3.0,3.0,4.0,4.0,3.0,4.0,,E2135,,,325286.581,4844810.473
-894883,4153337,2017.0,2017.0,1992.0,SOCIAL HOUSING,12,Toronto-St. Paul's,1060 DAVENPORT RD,4,10,2017-11-30,74,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,3.0,4.0,4.0,,3.0,,4.0,4.0,3.0,5.0,4.0,4.0,3.0,4.0,3.0,,,S1234,43.6748848095,-79.42909718930001,310501.63800000004,4836994.79
-894884,4154140,2017.0,2017.0,1971.0,PRIVATE,14,Toronto-Danforth,1010 BROADVIEW AVE,20,109,2017-11-30,70,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,3.0,3.0,4.0,3.0,4.0,5.0,,3.0,3.0,5.0,3.0,4.0,3.0,4.0,3.0,3.0,,S1421,43.683273425,-79.357525834,316271.068,4837935.107
-894885,4155259,2017.0,2017.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,3 CROWN HILL PL,6,62,2017-11-30,63,Evaluation needs to be conducted in 1 year,18,4.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0327,43.6380325283,-79.4912275858,305492.11600000004,4832898.429
-894886,4153970,2017.0,2017.0,1974.0,PRIVATE,8,Eglinton-Lawrence,660 BRIAR HILL AVE,8,76,2017-11-30,65,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,4.0,,3.0,4.0,5.0,3.0,4.0,3.0,,3.0,3.0,,N0832,43.708094977600005,-79.4275758961,310621.226,4840684.455
-894887,4154445,2017.0,2017.0,1960.0,PRIVATE,6,York Centre,1385 SHEPPARD AVE W,4,40,2017-11-30,69,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,3.0,3.0,3.0,,4.0,3.0,3.0,3.0,4.0,5.0,4.0,3.0,4.0,,3.0,3.0,,N0627,43.7442254108,-79.4874558876,305823.196,4844735.738
-894888,4154420,2017.0,2017.0,1959.0,PRIVATE,6,York Centre,2868 KEELE ST,3,30,2017-11-30,60,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,2.0,3.0,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0627,43.73251345520001,-79.4840467169,306069.693,4843394.784
-894889,4154441,2017.0,2017.0,1954.0,PRIVATE,6,York Centre,2954 KEELE ST,3,12,2017-11-30,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,4.0,4.0,3.0,,4.0,,4.0,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,,N0627,43.735338064,-79.484558662,306028.136,4843709.531
-894890,4153650,2017.0,2017.0,1990.0,PRIVATE,14,Toronto-Danforth,768 PAPE AVE,3,15,2017-11-30,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1425,43.681065593599996,-79.3460950974,317193.343,4837690.477
-894891,4155524,2017.0,2017.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,104 SIXTEENTH ST,3,12,2017-11-30,60,Evaluation needs to be conducted in 1 year,16,2.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0335,43.6026815249,-79.5170398804,303408.757,4828971.198
-894892,4154381,2017.0,2017.0,1964.0,PRIVATE,6,York Centre,31 PAXTONIA BLVD,3,50,2017-11-30,77,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,4.0,3.0,4.0,3.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0628,43.729184156,-79.4799862113,306396.878,4843024.978
-894893,4154443,2017.0,2017.0,1955.0,PRIVATE,6,York Centre,3018 KEELE ST,4,31,2017-11-30,58,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,2.0,2.0,3.0,,3.0,,,2.0,3.0,5.0,3.0,2.0,3.0,3.0,3.0,3.0,,N0627,43.7375858771,-79.4850746681,305986.793,4843958.284
-894894,4154464,2017.0,2017.0,1962.0,PRIVATE,7,Humber River-Black Creek,3700 KEELE ST,3,57,2017-11-30,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,,3.0,,3.0,3.0,,3.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,2.0,,W0731,43.755241007799995,-79.48937887550001,305639.91,4845919.621
-894895,4154138,2017.0,2017.0,1953.0,PRIVATE,14,Toronto-Danforth,68 HILLSIDE DR,4,44,2017-11-30,68,Evaluation needs to be conducted in 2 years,16,4.0,3.0,3.0,4.0,4.0,3.0,,3.0,,4.0,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,3.0,,S1421,43.689440320600006,-79.3567711725,316330.99600000004,4838619.393
-894896,4154436,2017.0,2017.0,1970.0,PRIVATE,6,York Centre,2425 JANE ST,20,154,2017-11-30,71,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,,4.0,3.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,,N0627,43.7313917066,-79.5103100485,303954.001,4843270.091
-894897,4243431,2017.0,2017.0,1968.0,PRIVATE,7,Humber River-Black Creek,2801 JANE ST,17,234,2017-11-30,61,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,2.0,3.0,3.0,2.0,3.0,3.0,,3.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0730,43.7502253934,-79.5151711117,303562.808,4845362.501
-894898,4152818,2017.0,2017.0,1962.0,PRIVATE,24,Scarborough-Guildwood,45 GREENCREST CRCT,6,100,2017-11-30,58,Evaluation needs to be conducted in 1 year,19,2.0,3.0,3.0,3.0,2.0,3.0,3.0,4.0,3.0,2.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,2.0,3.0,,E2430,43.758742100000006,-79.22231714770001,327144.17699999997,4846345.796
-894899,4154378,2017.0,2017.0,1960.0,PRIVATE,6,York Centre,923-925 WILSON AVE,3,23,2017-11-30,54,Evaluation needs to be conducted in 1 year,14,2.0,3.0,2.0,2.0,,3.0,,2.0,,,3.0,3.0,4.0,2.0,3.0,3.0,,3.0,3.0,,N0632,43.729832928,-79.468851985,307285.663,4843110.586
-894900,4152817,2017.0,2017.0,1963.0,PRIVATE,24,Scarborough-Guildwood,70 STEVENVALE DR,6,100,2017-11-30,58,Evaluation needs to be conducted in 1 year,18,2.0,3.0,3.0,3.0,2.0,3.0,2.0,4.0,3.0,,3.0,3.0,5.0,2.0,3.0,3.0,3.0,2.0,3.0,,E2430,43.758941388800004,-79.2213676768,327220.55600000004,4846368.19
-894901,4156530,2017.0,2017.0,1960.0,PRIVATE,6,York Centre,927-931 WILSON AVE,3,36,2017-11-30,56,Evaluation needs to be conducted in 1 year,14,2.0,3.0,2.0,3.0,,3.0,,2.0,,,3.0,3.0,4.0,2.0,3.0,3.0,,3.0,3.0,,N0632,43.729758711,-79.469616321,307204.644,4843087.433
-894902,4154377,2017.0,2017.0,1960.0,PRIVATE,6,York Centre,933-937 WILSON AVE,3,36,2017-11-30,56,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,3.0,3.0,3.0,,2.0,,,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,3.0,,N0632,43.729552423,-79.47055872199999,307126.804,4843063.258
-894903,4152844,2017.0,2017.0,1970.0,PRIVATE,24,Scarborough-Guildwood,4070 LAWRENCE AVE E,4,38,2017-11-30,66,Evaluation needs to be conducted in 2 years,19,3.0,4.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,5.0,4.0,4.0,3.0,3.0,4.0,3.0,,E2428,43.766635821899996,-79.19693607800001,329184.69899999996,4847229.848999999
-894904,4152835,2017.0,2017.0,1976.0,PRIVATE,24,Scarborough-Guildwood,70 MORNELLE CRT,16,264,2017-11-30,48,Building Audit,19,3.0,3.0,3.0,2.0,2.0,3.0,2.0,2.0,3.0,,2.0,3.0,2.0,3.0,2.0,2.0,2.0,3.0,2.0,2.0,E2423,43.786853838999996,-79.197805135,329106.341,4849476.751
-894905,4153969,2017.0,2017.0,1967.0,PRIVATE,8,Eglinton-Lawrence,140 ELM RIDGE DR,18,229,2017-11-30,67,Evaluation needs to be conducted in 2 years,20,4.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,N0832,43.7032886184,-79.438743858,309721.568,4840149.728
-894906,4154944,2017.0,2017.0,1940.0,PRIVATE,12,Toronto-St. Paul's,1580 BATHURST ST,4,24,2017-11-30,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,4.0,,2.0,,4.0,3.0,4.0,5.0,3.0,2.0,2.0,,2.0,,,S1229,43.6864991391,-79.4200531796,311229.721,4838285.768999999
-894907,4154134,2017.0,2017.0,1965.0,PRIVATE,14,Toronto-Danforth,100 GAMBLE AVE,12,152,2017-11-29,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1421,43.6904194773,-79.350649972,316824.231,4838729.001
-894908,4154302,2017.0,2017.0,1960.0,PRIVATE,5,York South-Weston,2 ARROWSMITH AVE,3,11,2017-11-29,60,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,4.0,3.0,3.0,3.0,,3.0,3.0,,W0529,43.7044245269,-79.4774946495,306598.318,4840274.3780000005
-894909,4155338,2017.0,2017.0,1966.0,PRIVATE,2,Etobicoke Centre,20 FONTENAY CRT,14,96,2017-11-29,73,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,3.0,3.0,3.0,,4.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,W0230,43.682596017,-79.512861413,303747.19,4837850.252
-894910,4155748,2017.0,2017.0,1966.0,PRIVATE,2,Etobicoke Centre,30 FONTENAY CRT,14,96,2017-11-29,65,Evaluation needs to be conducted in 1 year,17,4.0,3.0,3.0,3.0,3.0,3.0,,2.0,4.0,,3.0,3.0,2.0,4.0,4.0,4.0,4.0,3.0,3.0,,W0230,43.683261189,-79.512454519,303780.01,4837924.146000001
-894911,4255532,2017.0,2017.0,2006.0,PRIVATE,9,Davenport,1401 DUPONT ST,6,171,2017-11-29,67,Evaluation needs to be conducted in 2 years,17,4.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,,4.0,4.0,4.0,3.0,3.0,4.0,,3.0,3.0,,S0930,43.666328416700004,-79.4468802656,309068.351,4836043.153
-894912,4254280,2017.0,2017.0,1957.0,PRIVATE,21,Scarborough Centre,2700 LAWRENCE AVE E,7,111,2017-11-29,74,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,3.0,,3.0,4.0,3.0,4.0,4.0,4.0,5.0,4.0,4.0,,E2129,43.752739741999996,-79.26107689199999,324024.834,4845670.215
-894913,4155956,2017.0,2017.0,1957.0,PRIVATE,21,Scarborough Centre,2702 LAWRENCE AVE E,7,96,2017-11-29,73,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,3.0,,3.0,4.0,3.0,4.0,4.0,4.0,5.0,4.0,4.0,,E2129,43.75259236,-79.26100902600001,324075.951,4845664.645
-894914,4154328,2017.0,2017.0,1960.0,PRIVATE,5,York South-Weston,1728 LAWRENCE AVE W,4,34,2017-11-29,75,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,,,4.0,3.0,5.0,3.0,4.0,3.0,4.0,4.0,3.0,,W0528,43.7048608141,-79.4976836362,304971.172,4840322.663
-894915,4154324,2017.0,2017.0,1961.0,PRIVATE,5,York South-Weston,1809 LAWRENCE AVE W,4,32,2017-11-29,82,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,W0528,43.703046615299996,-79.5014077845,304671.015,4840121.117
-894916,4154154,2017.0,2017.0,1968.0,PRIVATE,15,Don Valley West,53 THORNCLIFFE PARK DR,20,279,2017-11-29,78,Evaluation needs to be conducted in 2 years,20,4.0,5.0,4.0,3.0,4.0,3.0,4.0,3.0,4.0,3.0,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,5.0,N1533,43.702990612,-79.341462578,317561.92,4840127.93
-894917,4154155,2017.0,2017.0,1967.0,PRIVATE,15,Don Valley West,65 THORNCLIFFE PARK DR,20,332,2017-11-29,60,Evaluation needs to be conducted in 1 year,18,3.0,2.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,N1533,43.703487555600006,-79.3402691534,317658.262,4840182.3719999995
-894918,4155288,2017.0,2017.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,186 STEPHEN DR,5,48,2017-11-29,77,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,4.0,4.0,,4.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,W0327,43.640530203000004,-79.488846855,305685.065,4833173.273
-894919,4154029,2017.0,2017.0,1957.0,PRIVATE,8,Eglinton-Lawrence,41 LORINDALE AVE,3,26,2017-11-29,66,Evaluation needs to be conducted in 2 years,14,3.0,3.0,4.0,3.0,,3.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N0825,43.7260668342,-79.4036329242,312548.482,4842683.012
-894920,4152807,2017.0,2017.0,1967.0,PRIVATE,24,Scarborough-Guildwood,3969 KINGSTON RD,13,174,2017-11-29,66,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,4.0,2.0,3.0,3.0,4.0,3.0,3.0,4.0,3.0,5.0,3.0,4.0,4.0,2.0,3.0,3.0,,E2434,43.75149072600001,-79.2033413635,328675.027,4845545.453
-894921,4152823,2017.0,2017.0,1972.0,PRIVATE,24,Scarborough-Guildwood,3700 LAWRENCE AVE E,11,105,2017-11-29,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,2.0,3.0,3.0,3.0,,3.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,,E2426,43.7620164362,-79.2173016754,327546.795,4846710.909
-894922,4155116,2017.0,2017.0,1953.0,PRIVATE,5,York South-Weston,7 GREENTREE CRT,3,28,2017-11-29,52,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,2.0,2.0,3.0,,3.0,,,2.0,3.0,5.0,2.0,2.0,2.0,,2.0,3.0,,W0532,43.6921996331,-79.47923360909999,306458.47,4838916.21
-894923,4152764,2017.0,2017.0,1969.0,PRIVATE,21,Scarborough Centre,50 TRUDELLE ST,7,131,2017-11-29,69,Evaluation needs to be conducted in 2 years,18,3.0,4.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,,3.0,4.0,5.0,4.0,3.0,3.0,3.0,3.0,4.0,,E2135,43.740721248,-79.240407141,325693.538,4844340.024
-894924,4156723,2017.0,2017.0,2008.0,PRIVATE,5,York South-Weston,5 HARDING AVE,9,184,2017-11-29,67,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,4.0,5.0,3.0,4.0,3.0,3.0,3.0,2.0,,W0528,43.699376402,-79.502250278,304602.821,4839714.337
-894925,4156565,2017.0,2017.0,1968.0,PRIVATE,5,York South-Weston,15 HARDING AVE,19,335,2017-11-29,54,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,2.0,3.0,2.0,2.0,3.0,2.0,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,2.0,W0528,,,304655.788,4839682.129
-894926,4155085,2017.0,2017.0,1958.0,PRIVATE,5,York South-Weston,1650 KEELE ST,4,22,2017-11-29,53,Evaluation needs to be conducted in 1 year,16,2.0,3.0,3.0,2.0,2.0,3.0,,3.0,,,2.0,2.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,,W0536,43.683492700100004,-79.47263124439999,306990.985,4837949.057
-894927,4156285,2017.0,2017.0,1956.0,PRIVATE,2,Etobicoke Centre,319 THE KINGSWAY,3,21,2017-11-29,68,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,2.0,4.0,3.0,,2.0,,4.0,4.0,4.0,5.0,3.0,3.0,4.0,,3.0,3.0,,W0229,43.665207485500005,-79.5235149281,302887.88899999997,4835917.715
-894928,4155249,2017.0,2017.0,1959.0,PRIVATE,3,Etobicoke-Lakeshore,135 STEPHEN DR,4,26,2017-11-29,70,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,3.0,4.0,3.0,,3.0,3.0,4.0,3.0,4.0,5.0,3.0,3.0,3.0,4.0,4.0,3.0,,W0327,43.6383454024,-79.48717845659999,305818.852,4832933.225
-894929,4155344,2017.0,2017.0,1964.0,PRIVATE,2,Etobicoke Centre,1407 ROYAL YORK RD,13,162,2017-11-29,79,Evaluation needs to be conducted in 2 years,20,5.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,W0230,43.683787080600005,-79.52630971970001,302663.23,4837981.902
-894930,4154330,2017.0,2017.0,1971.0,PRIVATE,5,York South-Weston,1747-1755 JANE ST,15,102,2017-11-29,62,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,4.0,3.0,3.0,3.0,5.0,,3.0,3.0,5.0,3.0,3.0,3.0,2.0,3.0,2.0,,W0528,43.704957416999996,-79.503637456,304459.00399999996,4840344.142
-894931,4154331,2017.0,2017.0,1960.0,PRIVATE,5,York South-Weston,1795 JANE ST,10,105,2017-11-29,67,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,,W0528,43.7066838334,-79.5040013996,304461.998,4840525.194
-894932,4154308,2017.0,2017.0,1950.0,PRIVATE,5,York South-Weston,2425 KEELE ST,3,12,2017-11-29,60,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0523,43.7110804111,-79.4781906555,306542.034,4841013.806
-894933,4155287,2017.0,2017.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,2 KINGS POINT DR,4,16,2017-11-29,64,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,4.0,3.0,3.0,3.0,,W0327,43.639372903,-79.4944231531,305234.286,4833047.319
-894934,4155286,2017.0,2017.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,4 KINGS POINT DR,4,16,2017-11-29,64,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,2.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,,W0327,43.6395029387,-79.4940316467,305265.876,4833061.767
-894935,4153353,2017.0,2017.0,1956.0,PRIVATE,12,Toronto-St. Paul's,55 HENDRICK AVE,3,29,2017-11-29,67,Evaluation needs to be conducted in 2 years,15,3.0,4.0,3.0,3.0,,3.0,,4.0,,4.0,3.0,2.0,5.0,3.0,3.0,4.0,,3.0,3.0,,S1234,43.679816139399996,-79.4306015887,310379.87100000004,4837542.546
-894936,4152593,2017.0,2017.0,1982.0,PRIVATE,20,Scarborough Southwest,30 BURN HILL RD,22,238,2017-11-29,59,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,2.0,3.0,3.0,2.0,3.0,3.0,,3.0,4.0,5.0,2.0,3.0,3.0,2.0,3.0,3.0,2.0,E2028,43.6992222546,-79.2778348112,322691.471,4839719.991
-894937,4152608,2017.0,2017.0,1950.0,PRIVATE,20,Scarborough Southwest,650 DAWES RD,3,17,2017-11-29,57,Evaluation needs to be conducted in 1 year,15,3.0,2.0,2.0,2.0,3.0,2.0,,3.0,,,3.0,2.0,5.0,4.0,2.0,3.0,,4.0,3.0,,E2028,43.7075426167,-79.2947631998,321324.76,4840640.89
-894938,4152767,2017.0,2017.0,1967.0,PRIVATE,21,Scarborough Centre,1299 DANFORTH RD,12,138,2017-11-29,69,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,2.0,3.0,2.0,3.0,4.0,3.0,,3.0,2.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,E2135,43.740965573400004,-79.2446148639,325354.80100000004,4844365.163
-894939,4153412,2017.0,2017.0,1985.0,PRIVATE,11,University-Rosedale,123 D'ARCY ST,3,24,2017-11-29,57,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,2.0,3.0,2.0,3.0,,3.0,3.0,,S1144,43.6540278279,-79.3972570304,313071.98699999996,4834680.315
-894940,4154936,2017.0,2017.0,1930.0,PRIVATE,12,Toronto-St. Paul's,17 RAGLAN AVE,4,16,2017-11-29,66,Evaluation needs to be conducted in 2 years,14,3.0,3.0,3.0,3.0,,3.0,,3.0,,,3.0,3.0,5.0,3.0,4.0,4.0,,3.0,3.0,,S1229,43.6838687867,-79.4195252929,311272.55199999997,4837993.57
-894941,4154937,2017.0,2017.0,1930.0,PRIVATE,12,Toronto-St. Paul's,21 RAGLAN AVE,3,12,2017-11-29,67,Evaluation needs to be conducted in 2 years,14,3.0,3.0,4.0,3.0,,3.0,,3.0,,,3.0,3.0,5.0,3.0,4.0,4.0,,3.0,3.0,,S1229,43.6839669504,-79.4195812784,311268.028,4838004.472
-894942,4155448,2017.0,2017.0,1965.0,PRIVATE,1,Etobicoke North,20 SANAGAN RD,5,86,2017-11-29,60,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,2.0,2.0,2.0,3.0,,3.0,2.0,5.0,3.0,3.0,3.0,4.0,4.0,3.0,,W0124,43.738497055799996,-79.5771085604,298573.456,4844062.39
-894943,4152730,2017.0,2017.0,1969.0,PRIVATE,21,Scarborough Centre,5 BROCKLEY DR,21,254,2017-11-29,87,Evaluation needs to be conducted in 3 years,18,5.0,5.0,4.0,4.0,5.0,3.0,3.0,4.0,5.0,,5.0,4.0,5.0,5.0,3.0,4.0,5.0,5.0,4.0,,E2129,43.753482896099996,-79.2626268384,323900.045,4845751.469
-894944,4153661,2017.0,2017.0,1985.0,SOCIAL HOUSING,14,Toronto-Danforth,51 DONLANDS AVE,5,53,2017-11-29,74,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,3.0,5.0,4.0,3.0,4.0,,4.0,3.0,3.0,4.0,3.0,3.0,4.0,4.0,3.0,4.0,S1427,43.6811775403,-79.3372646974,317905.252,4837704.244
-894945,4154385,2017.0,2017.0,1960.0,PRIVATE,6,York Centre,1533 WILSON AVE,4,42,2017-11-29,74,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,4.0,3.0,,4.0,,3.0,3.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,N0631,43.7206156071,-79.5067407742,304241.38,4842072.93
-894946,4154384,2017.0,2017.0,1960.0,PRIVATE,6,York Centre,1537 WILSON AVE,4,42,2017-11-29,74,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,3.0,3.0,,4.0,,3.0,3.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,N0631,43.7205293496,-79.50708963470001,304213.269,4842063.35
-894947,4155212,2017.0,2017.0,1949.0,PRIVATE,3,Etobicoke-Lakeshore,2692-2694 BLOOR ST W,4,40,2017-11-29,63,Evaluation needs to be conducted in 1 year,15,3.0,4.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,2.0,,W0322,43.6502825734,-79.4978680746,304956.297,4834259.305
-894948,4154095,2017.0,2017.0,1959.0,PRIVATE,14,Toronto-Danforth,190 COSBURN AVE,6,47,2017-11-29,68,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,4.0,,3.0,,3.0,3.0,,3.0,4.0,5.0,3.0,4.0,3.0,4.0,3.0,3.0,,S1422,43.6904180968,-79.3451955874,317263.914,4838729.63
-894949,4269313,2017.0,2017.0,1958.0,PRIVATE,20,Scarborough Southwest,996 DANFORTH RD,3,20,2017-11-29,60,Evaluation needs to be conducted in 1 year,16,2.0,3.0,3.0,2.0,3.0,4.0,,3.0,,3.0,2.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,E2024,43.7350794611,-79.2480505493,325080.042,4843710.415
-894950,4269318,2017.0,2017.0,1958.0,PRIVATE,20,Scarborough Southwest,998 DANFORTH RD,3,21,2017-11-29,59,Evaluation needs to be conducted in 1 year,15,2.0,3.0,3.0,2.0,2.0,4.0,,3.0,,,2.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,E2024,43.7352342615,-79.2476716721,325110.51,4843727.705
-894951,4152756,2017.0,2017.0,1960.0,PRIVATE,21,Scarborough Centre,1284 DANFORTH RD,7,95,2017-11-29,73,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,,E2135,43.7402230194,-79.24612372930001,325233.516,4844282.298
-894952,4155340,2017.0,2017.0,1966.0,PRIVATE,2,Etobicoke Centre,10 ALLANHURST DR,11,108,2017-11-29,60,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,2.0,,W0230,43.6806469466,-79.5103162763,303952.614,4837632.73
-894953,4152837,2017.0,2017.0,1992.0,SOCIAL HOUSING,24,Scarborough-Guildwood,38 ANDOVER CRES,4,25,2017-11-29,68,Evaluation needs to be conducted in 2 years,20,3.0,3.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,5.0,4.0,2.0,4.0,3.0,4.0,3.0,3.0,E2432,43.7656866774,-79.194946435,329345.274,4847124.988
-894954,4154392,2017.0,2017.0,1960.0,PRIVATE,6,York Centre,1455 WILSON AVE,3,66,2017-11-29,70,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,,3.0,3.0,5.0,3.0,3.0,4.0,3.0,4.0,4.0,,N0631,43.721783344399995,-79.5027970015,304559.163,4842202.632
-894955,4153341,2017.0,2017.0,1920.0,PRIVATE,12,Toronto-St. Paul's,341 ST CLAIR AVE W,3,10,2017-11-29,57,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,2.0,,3.0,,3.0,,,3.0,2.0,5.0,2.0,3.0,3.0,3.0,3.0,3.0,,S1236,43.684313363,-79.4114493944,311923.636,4838043.641
-894956,4153344,2017.0,2017.0,1930.0,SOCIAL HOUSING,12,Toronto-St. Paul's,497 ST CLAIR AVE W,4,19,2017-11-29,56,Evaluation needs to be conducted in 1 year,16,3.0,3.0,2.0,2.0,3.0,3.0,,3.0,,,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,,S1236,43.683093620600005,-79.4174370824,311440.998,4837907.6110000005
-894957,4155901,2017.0,2017.0,2009.0,PRIVATE,11,University-Rosedale,88 SPADINA RD,5,91,2017-11-29,76,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,S1126,43.6713286257,-79.4059886659,312365.468,4836601.532
-894958,4167462,2017.0,2017.0,1969.0,PRIVATE,11,University-Rosedale,100 SPADINA RD,23,216,2017-11-29,70,Evaluation needs to be conducted in 2 years,20,4.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,4.0,3.0,3.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,S1126,43.671869216000005,-79.406368935,312344.86,4836670.072
-894959,4155558,2017.0,2017.0,1959.0,PRIVATE,3,Etobicoke-Lakeshore,87 FORTY SECOND ST,3,41,2017-11-29,76,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,4.0,4.0,,4.0,4.0,3.0,4.0,3.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,,W0334,43.589434868000005,-79.544657833,301178.099,4827501.327
-894960,4152686,2017.0,2017.0,1960.0,PRIVATE,20,Scarborough Southwest,2293 EGLINTON AVE E,7,118,2017-11-28,59,Evaluation needs to be conducted in 1 year,18,4.0,3.0,3.0,3.0,2.0,2.0,3.0,2.0,3.0,,2.0,3.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,,E2023,43.7306169901,-79.271727231,323174.166,4843209.151000001
-894961,4155245,2017.0,2017.0,1965.0,PRIVATE,3,Etobicoke-Lakeshore,177 BERRY RD,4,23,2017-11-28,60,Evaluation needs to be conducted in 1 year,17,3.0,2.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0329,43.63682197520001,-79.4892158365,305654.469,4832763.96
-894962,4153755,2017.0,2017.0,1965.0,PRIVATE,15,Don Valley West,345 MERTON ST,10,109,2017-11-28,68,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,,3.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,4.0,,N1534,43.697986845,-79.38570781,313996.67100000003,4839566.231000001
-894963,4152689,2017.0,2017.0,1959.0,PRIVATE,20,Scarborough Southwest,740 MIDLAND AVE,5,87,2017-11-28,65,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,2.0,3.0,3.0,,3.0,3.0,,3.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,4.0,,E2024,43.7292557151,-79.256770973,324379.447,4843061.333000001
-894964,4155890,2017.0,2017.0,1959.0,PRIVATE,20,Scarborough Southwest,746 MIDLAND AVE,5,87,2017-11-28,66,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,2.0,3.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,,E2024,43.7292557151,-79.256770973,324379.447,4843061.333000001
-894965,4226533,2017.0,2017.0,1958.0,PRIVATE,3,Etobicoke-Lakeshore,60 FIFTEENTH ST,3,11,2017-11-28,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,4.0,4.0,,4.0,4.0,,W0335,43.6011294552,-79.5152006499,303557.209,4828798.737
-894966,4153409,2017.0,2017.0,1970.0,PRIVATE,10,Spadina-Fort York,164 GRANGE AVE,3,24,2017-11-28,55,Evaluation needs to be conducted in 1 year,16,2.0,2.0,2.0,2.0,2.0,3.0,,2.0,,,2.0,3.0,5.0,5.0,2.0,3.0,3.0,3.0,3.0,,S1023,43.651378351400005,-79.40116552180001,312757.065,4834385.593
-894967,4152679,2017.0,2017.0,1971.0,PRIVATE,20,Scarborough Southwest,2225 EGLINTON AVE E,6,94,2017-11-28,54,Evaluation needs to be conducted in 1 year,17,3.0,2.0,2.0,3.0,3.0,3.0,,2.0,2.0,,2.0,3.0,5.0,3.0,3.0,3.0,3.0,2.0,2.0,,E2023,43.729677828,-79.276229104,322811.499,4843104.772
-894968,4152682,2017.0,2017.0,1960.0,PRIVATE,20,Scarborough Southwest,2239 EGLINTON AVE E,7,107,2017-11-28,77,Evaluation needs to be conducted in 2 years,18,5.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,3.0,,4.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,4.0,,E2023,43.730088232,-79.274600978,322942.54600000003,4843150.725
-894969,4152683,2017.0,2017.0,1968.0,PRIVATE,20,Scarborough Southwest,2243 EGLINTON AVE E,6,91,2017-11-28,71,Evaluation needs to be conducted in 2 years,18,3.0,4.0,3.0,3.0,3.0,3.0,,4.0,5.0,3.0,3.0,3.0,5.0,4.0,4.0,3.0,2.0,4.0,5.0,,E2023,43.730141875,-79.27399670300001,322991.213,4843156.818
-894970,4155889,2017.0,2017.0,1974.0,PRIVATE,2,Etobicoke Centre,73 WIDDICOMBE HILL BLVD,17,228,2017-11-28,72,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,,4.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,W0222,43.677126322,-79.556808045,300130.803,4837178.874
-894971,4155793,2017.0,2017.0,1973.0,PRIVATE,2,Etobicoke Centre,120 WIDDICOMBE HILL BLVD,17,233,2017-11-28,72,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,,4.0,3.0,5.0,3.0,4.0,3.0,4.0,3.0,2.0,4.0,W0222,43.676467695,-79.559152675,300081.20399999997,4837170.804
-894972,4156252,2017.0,2017.0,1961.0,PRIVATE,25,Scarborough-Rouge Park,205 MORNINGSIDE AVE,5,107,2017-11-28,69,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,3.0,4.0,4.0,,4.0,3.0,,3.0,3.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,,E2537,43.765315672,-79.184493788,330160.238,4847096.726
-894973,4154162,2017.0,2017.0,1960.0,PRIVATE,15,Don Valley West,54 THORNCLIFFE PARK DR,6,71,2017-11-28,68,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,4.0,4.0,,3.0,3.0,4.0,4.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,2.0,,N1533,43.704032796599996,-79.3417955997,317535.11699999997,4840242.704
-894974,4154161,2017.0,2017.0,1960.0,PRIVATE,15,Don Valley West,56 THORNCLIFFE PARK DR,6,64,2017-11-28,69,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,4.0,4.0,4.0,,3.0,4.0,4.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N1533,43.704412098,-79.342361798,317489.13899999997,4840285.706
-894975,4154160,2017.0,2017.0,1960.0,PRIVATE,15,Don Valley West,58 THORNCLIFFE PARK DR,6,71,2017-11-28,68,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,3.0,4.0,,3.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,,N1533,43.704388503000004,-79.343145328,317425.993,4840282.961
-894976,4154163,2017.0,2017.0,1960.0,PRIVATE,15,Don Valley West,52 THORNCLIFFE PARK DR,6,57,2017-11-28,69,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,4.0,4.0,4.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N1533,43.703684755299996,-79.3419933138,317519.256,4840204.007
-894977,4155425,2017.0,2017.0,1967.0,PRIVATE,1,Etobicoke North,5 JANSUSIE RD,3,45,2017-11-28,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,2.0,,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,W0129,43.72849773,-79.57541136100001,298591.273,4843220.455
-894978,4155426,2017.0,2017.0,1967.0,PRIVATE,1,Etobicoke North,15 JANSUSIE RD,3,45,2017-11-28,65,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,2.0,,,4.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,W0129,43.729325196000005,-79.57582247,298619.876,4843140.267
-894979,4155427,2017.0,2017.0,1963.0,PRIVATE,1,Etobicoke North,25 JANSUSIE RD,3,45,2017-11-28,65,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,2.0,,,4.0,3.0,5.0,3.0,3.0,4.0,3.0,4.0,3.0,,W0129,43.730245049,-79.57627802100001,298653.212,4843046.808
-894980,4153470,2017.0,2017.0,1940.0,PRIVATE,13,Toronto Centre,1 HOMEWOOD AVE,4,67,2017-11-28,58,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,2.0,,3.0,3.0,4.0,3.0,2.0,3.0,,3.0,3.0,,S1326,43.663246011000005,-79.374195362,314930.417,4835707.967
-894981,4168552,2017.0,2017.0,1968.0,PRIVATE,5,York South-Weston,2625 KEELE ST,3,10,2017-11-28,54,Evaluation needs to be conducted in 1 year,16,3.0,3.0,2.0,3.0,2.0,3.0,,2.0,,,3.0,2.0,5.0,2.0,2.0,3.0,3.0,2.0,3.0,,W0523,43.7206243827,-79.48020072930001,306379.805,4842074.038
-894982,4155911,2017.0,2017.0,1971.0,PRIVATE,1,Etobicoke North,22 WILLOWRIDGE RD,16,132,2017-11-28,61,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,,2.0,3.0,3.0,3.0,3.0,4.0,3.0,4.0,4.0,,W0137,43.674963268999996,-79.5693913161,299189.13399999996,4837003.506
-894983,4153403,2017.0,2017.0,1966.0,PRIVATE,10,Spadina-Fort York,50 STEPHANIE ST,24,284,2017-11-28,58,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,3.0,2.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1024,43.651457871000005,-79.39239786,313464.06,4834396.283
-894984,4153917,2017.0,2017.0,1918.0,PRIVATE,12,Toronto-St. Paul's,58 ORIOLE GDNS,4,13,2017-11-28,60,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,3.0,3.0,3.0,,3.0,,,2.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1232,43.69062893899999,-79.400166183,312832.248,4838747.262
-894985,4156020,2017.0,2017.0,1960.0,PRIVATE,16,Don Valley East,11 ROCHEFORT DR,3,64,2017-11-28,66,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,N1630,43.718077388000005,-79.335977623,317970.536,4841814.969
-894986,4155327,2017.0,2017.0,1966.0,PRIVATE,2,Etobicoke Centre,289 THE KINGSWAY,17,73,2017-11-28,73,Evaluation needs to be conducted in 2 years,17,4.0,4.0,3.0,4.0,4.0,4.0,,3.0,4.0,,4.0,3.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,,W0229,43.6631991618,-79.5195385532,303208.49100000004,4835694.511
-894987,4155428,2017.0,2017.0,1963.0,PRIVATE,1,Etobicoke North,35 JANSUSIE RD,3,45,2017-11-28,65,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,2.0,,,4.0,3.0,5.0,3.0,3.0,4.0,3.0,4.0,3.0,,W0129,43.73108456,-79.576700252,298674.512,4842987.092
-894988,4154335,2017.0,2017.0,1954.0,PRIVATE,5,York South-Weston,2552 KEELE ST,4,29,2017-11-28,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0526,43.7163206663,-79.4802113728,306379.058,4841595.928
-894989,4154360,2017.0,2017.0,1984.0,PRIVATE,5,York South-Weston,2620 KEELE ST,3,11,2017-11-28,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,2.0,,3.0,3.0,,W0522,43.719614506999996,-79.4809196284,306321.905,4841961.835
-894990,4153473,2017.0,2017.0,1988.0,SOCIAL HOUSING,13,Toronto Centre,172 CARLTON ST,4,25,2017-11-28,69,Evaluation needs to be conducted in 2 years,14,3.0,4.0,4.0,3.0,,3.0,,3.0,,,3.0,3.0,4.0,4.0,3.0,4.0,,4.0,3.0,,S1326,43.663437478999995,-79.373585563,314979.567,4835729.313999999
-894991,4153824,2017.0,2017.0,1956.0,PRIVATE,12,Toronto-St. Paul's,65 BROADWAY AVE,4,71,2017-11-28,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,3.0,S1221,43.709917503,-79.395277053,313223.67,4840890.703
-894992,4153159,2017.0,2017.0,1930.0,PRIVATE,9,Davenport,1044 COLLEGE ST,3,43,2017-11-28,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S0934,43.653199472,-79.430277706,310408.275,4834586.517
-894993,4153523,2017.0,2017.0,1967.0,PRIVATE,13,Toronto Centre,540 SHERBOURNE ST,14,95,2017-11-28,68,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,2.0,3.0,3.0,,4.0,4.0,,3.0,3.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,,S1322,43.6691271735,-79.3759585393,314787.50800000003,4836360.15
-894994,4153885,2017.0,2017.0,1955.0,PRIVATE,12,Toronto-St. Paul's,567 AVENUE RD,11,63,2017-11-28,64,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,2.0,3.0,5.0,2.0,4.0,4.0,4.0,2.0,3.0,,S1232,43.688402926,-79.40160629399999,312716.44899999996,4838499.822
-894995,4154396,2017.0,2017.0,1960.0,PRIVATE,6,York Centre,1309 WILSON AVE,7,84,2017-11-28,69,Evaluation needs to be conducted in 2 years,18,4.0,2.0,4.0,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,,N0631,43.723087588,-79.4957736371,305125.023,4842347.517
-894996,4154395,2017.0,2017.0,1960.0,PRIVATE,6,York Centre,1391 WILSON AVE,4,36,2017-11-28,69,Evaluation needs to be conducted in 2 years,16,4.0,2.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,4.0,5.0,4.0,4.0,4.0,3.0,3.0,3.0,,N0631,43.721770572299995,-79.499656818,304812.168,4842201.204
-894997,4154394,2017.0,2017.0,1960.0,PRIVATE,6,York Centre,1393 WILSON AVE,4,82,2017-11-28,65,Evaluation needs to be conducted in 1 year,15,3.0,2.0,4.0,3.0,3.0,3.0,,4.0,,,3.0,4.0,4.0,3.0,3.0,4.0,,3.0,3.0,,N0631,43.7217077411,-79.50033280779999,304757.70399999997,4842194.225
-894998,4152878,2017.0,2017.0,1971.0,PRIVATE,22,Scarborough-Agincourt,30 CARABOB CRT,15,195,2017-11-28,73,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,4.0,,3.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,E2229,43.7818699138,-79.29665585810001,321152.05199999997,4848897.931
-894999,4152879,2017.0,2017.0,1974.0,PRIVATE,22,Scarborough-Agincourt,40 CARABOB CRT,15,196,2017-11-28,79,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,3.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,,E2229,43.7824433575,-79.2956106966,321236.023,4848961.847
-895000,4152880,2017.0,2017.0,1974.0,PRIVATE,22,Scarborough-Agincourt,50 CARABOB CRT,15,197,2017-11-28,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,3.0,,3.0,4.0,5.0,3.0,4.0,5.0,4.0,3.0,4.0,5.0,E2229,43.783622971199996,-79.2962340967,321185.524,4849092.775
-895001,4155360,2017.0,2017.0,1964.0,PRIVATE,2,Etobicoke Centre,40 DIXINGTON CRES,6,55,2017-11-28,69,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,3.0,4.0,4.0,,4.0,4.0,,4.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,W0223,43.697164457,-79.540156283,301547.37,4839469.485
-895002,4153474,2017.0,2017.0,1960.0,PRIVATE,13,Toronto Centre,166 CARLTON ST,11,92,2017-11-28,66,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,,S1326,43.663298218,-79.373807891,314961.659,4835713.815
-895003,4153199,2017.0,2017.0,2004.0,PRIVATE,11,University-Rosedale,25 BEDFORD RD,8,62,2017-11-28,59,Evaluation needs to be conducted in 1 year,18,3.0,3.0,2.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,2.0,2.0,,S1127,43.670003806000004,-79.397710763,313032.908,4836456.077
-895004,4155279,2017.0,2017.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,162 BERRY RD,4,39,2017-11-28,72,Evaluation needs to be conducted in 2 years,17,4.0,3.0,3.0,3.0,4.0,4.0,,4.0,,4.0,3.0,4.0,5.0,4.0,3.0,3.0,3.0,3.0,4.0,,W0327,43.637123338900004,-79.4904689294,305553.339,4832797.429
-895005,4156607,2017.0,2017.0,1974.0,PRIVATE,22,Scarborough-Agincourt,30 AURORA CRT,13,167,2017-11-28,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,3.0,3.0,3.0,4.0,,4.0,4.0,5.0,4.0,4.0,3.0,5.0,4.0,1.0,4.0,E2225,43.794970659099995,-79.3170591991,,
-895006,4152862,2017.0,2017.0,1974.0,PRIVATE,22,Scarborough-Agincourt,40 AURORA CRT,13,167,2017-11-28,75,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,3.0,3.0,4.0,5.0,,3.0,4.0,5.0,4.0,4.0,3.0,4.0,3.0,2.0,4.0,E2225,43.79470615140001,-79.31563834399999,319601.619,4850309.607
-895007,4152861,2017.0,2017.0,1974.0,PRIVATE,22,Scarborough-Agincourt,50 AURORA CRT,14,175,2017-11-28,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,5.0,3.0,3.0,4.0,5.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,E2225,43.7934585291,-79.315225557,319654.516,4850181.916999999
-895008,4273205,2017.0,2017.0,1911.0,PRIVATE,13,Toronto Centre,67 GLOUCESTER ST,3,15,2017-11-28,56,Evaluation needs to be conducted in 1 year,15,2.0,3.0,3.0,3.0,1.0,3.0,,3.0,,,3.0,3.0,4.0,3.0,2.0,3.0,,3.0,3.0,,S1322,43.6670615144,-79.3820888651,314293.461,4836129.969
-895009,4152977,2017.0,2017.0,1959.0,PRIVATE,4,Parkdale-High Park,137 DUNN AVE,4,21,2017-11-27,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,3.0,3.0,3.0,,2.0,,,3.0,3.0,5.0,3.0,4.0,4.0,,3.0,3.0,,S0437,43.636151700000006,-79.43227982399999,310248.294,4832692.487
-895010,4154186,2017.0,2017.0,1954.0,PRIVATE,15,Don Valley West,1220 BAYVIEW AVE,6,51,2017-11-27,65,Evaluation needs to be conducted in 1 year,17,4.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,,N1535,43.6964257075,-79.37203639890001,315099.186,4839393.482
-895011,4154618,2017.0,2017.0,1970.0,PRIVATE,6,York Centre,715 FINCH AVE W,11,85,2017-11-27,65,Evaluation needs to be conducted in 1 year,19,4.0,3.0,3.0,3.0,3.0,4.0,2.0,3.0,4.0,3.0,3.0,4.0,5.0,3.0,3.0,3.0,4.0,2.0,3.0,,N0624,43.7692028899,-79.4622653177,307822.589,4847471.362
-895012,4156074,2017.0,2017.0,1975.0,PRIVATE,25,Scarborough-Rouge Park,111 GENERATION BLVD,3,12,2017-11-27,64,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,3.0,2.0,,4.0,,,3.0,2.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,E2530,43.8038619612,-79.1641599515,331811.235,4851362.031
-895013,4156075,2017.0,2017.0,1975.0,PRIVATE,25,Scarborough-Rouge Park,115 GENERATION BLVD,3,12,2017-11-27,65,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,3.0,2.0,,4.0,,,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,E2530,43.803598443599995,-79.1642967087,331796.018,4851346.352
-895014,4153582,2017.0,2017.0,1991.0,SOCIAL HOUSING,13,Toronto Centre,280 GERRARD ST E,3,26,2017-11-27,61,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,2.0,3.0,,3.0,2.0,,3.0,3.0,5.0,4.0,3.0,2.0,,4.0,3.0,3.0,S1323,43.662450948,-79.368026345,315428.099,4835620.421
-895015,4154001,2017.0,2017.0,1955.0,PRIVATE,12,Toronto-St. Paul's,211 EGLINTON AVE W,3,31,2017-11-27,60,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,2.0,,S1227,43.705039078,-79.405292084,312417.183,4840347.741
-895016,4154769,2017.0,2017.0,1966.0,PRIVATE,16,Don Valley East,200 GATEWAY BLVD,17,284,2017-11-27,58,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,N1630,43.715178693599995,-79.3352789539,318057.864,4841481.992
-895017,4232587,2017.0,2017.0,1975.0,PRIVATE,25,Scarborough-Rouge Park,49 GENERATION BLVD,3,12,2017-11-27,67,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,4.0,3.0,2.0,,4.0,,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,E2530,43.80460817270001,-79.1661290396,331665.272,4851476.813999999
-895018,4153786,2017.0,2017.0,1956.0,PRIVATE,15,Don Valley West,299 FORMAN AVE,4,29,2017-11-27,57,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,3.0,2.0,2.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N1530,43.7077721579,-79.38523195970001,314033.795,4840652.473
-895019,4153810,2017.0,2017.0,1959.0,PRIVATE,15,Don Valley West,460 EGLINTON AVE E,6,72,2017-11-27,66,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,3.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,2.0,,N1537,43.710044313900006,-79.38404532130001,314129.077,4840905.035
-895020,4153793,2017.0,2017.0,1965.0,PRIVATE,15,Don Valley West,485 EGLINTON AVE E,12,108,2017-11-27,60,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,5.0,2.0,3.0,3.0,3.0,2.0,2.0,,N1530,43.709939802799994,-79.38136487850001,314345.087,4840893.716
-895021,4153837,2017.0,2017.0,1950.0,PRIVATE,15,Don Valley West,165 ERSKINE AVE,4,40,2017-11-27,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,3.0,,4.0,4.0,,4.0,4.0,5.0,3.0,4.0,4.0,,3.0,4.0,,N1526,43.712116148,-79.392551914,313442.969,4841135.2469999995
-895022,4153574,2017.0,2017.0,1991.0,SOCIAL HOUSING,13,Toronto Centre,330 DUNDAS ST E,4,29,2017-11-27,64,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,3.0,3.0,3.0,2.0,,,3.0,4.0,5.0,4.0,2.0,3.0,,3.0,3.0,3.0,S1329,43.65874826859999,-79.3702105377,315252.836,4835207.824
-895023,4153829,2017.0,2017.0,1964.0,PRIVATE,15,Don Valley West,33 ERSKINE AVE,10,109,2017-11-27,72,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,3.0,5.0,3.0,,3.0,4.0,,3.0,4.0,4.0,3.0,3.0,4.0,4.0,3.0,4.0,,N1526,43.711076733999995,-79.397812745,313019.16,4841019.2360000005
-895024,4152830,2017.0,2017.0,1967.0,PRIVATE,24,Scarborough-Guildwood,3950 LAWRENCE AVE E,15,164,2017-11-27,73,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,,2.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2427,43.7649205,-79.204613933,328567.233,4847037.068
-895025,4156028,2017.0,2017.0,1961.0,PRIVATE,25,Scarborough-Rouge Park,207 MORNINGSIDE AVE,5,107,2017-11-27,61,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,4.0,3.0,,3.0,3.0,,3.0,3.0,2.0,3.0,3.0,3.0,4.0,3.0,4.0,3.0,E2537,43.766129136,-79.184866277,330136.912,4847166.93
-895026,4154508,2017.0,2017.0,1975.0,PRIVATE,8,Eglinton-Lawrence,28 WASDALE CRES,3,11,2017-11-27,70,Evaluation needs to be conducted in 2 years,16,3.0,4.0,3.0,4.0,3.0,4.0,,4.0,,,4.0,2.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,,N0823,43.7309298534,-79.4365851209,309893.23600000003,4843220.682
-895027,4153992,2017.0,2017.0,1928.0,PRIVATE,12,Toronto-St. Paul's,48 MAXWELL AVE,3,29,2017-11-27,65,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,,,3.0,2.0,5.0,3.0,4.0,4.0,,3.0,3.0,,S1227,43.7057591622,-79.4018857933,312691.886,4840427.112
-895028,4155730,2017.0,2017.0,2010.0,PRIVATE,9,Davenport,45 LISGAR ST,14,291,2017-11-27,73,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,,4.0,3.0,3.0,3.0,,4.0,3.0,5.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,S0937,43.6421269068,-79.42276226140001,311015.908,4833355.956
-895029,4155710,2017.0,2017.0,2005.0,PRIVATE,9,Davenport,55 LISGAR ST,9,116,2017-11-27,68,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,3.0,5.0,4.0,3.0,3.0,4.0,3.0,3.0,,S0937,43.6426365625,-79.4230275047,310994.457,4833412.558
-895030,4154529,2017.0,2017.0,1958.0,PRIVATE,8,Eglinton-Lawrence,80 NEPTUNE DR,3,11,2017-11-27,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,2.0,3.0,3.0,,4.0,,,2.0,3.0,5.0,3.0,2.0,3.0,4.0,3.0,2.0,,N0823,43.732780803900006,-79.43644235800001,309904.577,4843426.318
-895031,4154531,2017.0,2017.0,1975.0,PRIVATE,8,Eglinton-Lawrence,84 NEPTUNE DR,3,11,2017-11-27,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,,,3.0,2.0,5.0,4.0,3.0,2.0,3.0,4.0,2.0,,N0823,43.732647778,-79.4370443606,309856.093,4843411.5030000005
-895032,4154489,2017.0,2017.0,1959.0,PRIVATE,8,Eglinton-Lawrence,771 LAWRENCE AVE W,3,10,2017-11-27,58,Evaluation needs to be conducted in 1 year,16,3.0,3.0,2.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,5.0,2.0,3.0,3.0,2.0,3.0,3.0,,N0827,43.714044601000005,-79.45260206399999,308603.672,4841344.884
-895033,4154566,2017.0,2017.0,1960.0,PRIVATE,8,Eglinton-Lawrence,96 MULHOLLAND AVE,3,11,2017-11-27,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,,,3.0,2.0,4.0,3.0,3.0,4.0,,3.0,4.0,,N0823,43.7207064297,-79.4552747615,308388.209,4842083.9180000005
-895034,4232583,2017.0,2017.0,1975.0,PRIVATE,25,Scarborough-Rouge Park,51 GENERATION BLVD,3,12,2017-11-27,67,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,4.0,3.0,2.0,,4.0,,,3.0,2.0,5.0,3.0,3.0,4.0,3.0,3.0,4.0,4.0,E2530,43.8046874624,-79.16582253989999,331685.17100000003,4851486.325
-895035,4232579,2017.0,2017.0,1975.0,PRIVATE,25,Scarborough-Rouge Park,53 GENERATION BLVD,3,12,2017-11-27,67,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,3.0,2.0,,4.0,,,4.0,2.0,5.0,3.0,3.0,4.0,3.0,3.0,4.0,4.0,E2530,43.804700539399995,-79.1654577856,331784.571,4851447.146000001
-895036,4152889,2017.0,2017.0,1975.0,PRIVATE,25,Scarborough-Rouge Park,95-115 GENERATION BLVD,3,108,2017-11-27,65,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,4.0,3.0,2.0,,4.0,,,3.0,2.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,E2530,43.803770363999995,-79.164808425,331804.318,4851384.163
-895037,4156416,2017.0,2017.0,1975.0,PRIVATE,25,Scarborough-Rouge Park,109 GENERATION BLVD,3,12,2017-11-27,64,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,3.0,2.0,,4.0,,,3.0,2.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,E2530,43.8040886838,-79.1642759209,331808.468,4851373.096
-895038,4154762,2017.0,2017.0,1966.0,PRIVATE,16,Don Valley East,45 GRENOBLE DR,28,217,2017-11-27,66,Evaluation needs to be conducted in 2 years,19,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,4.0,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,N1630,43.716030296999996,-79.330923583,318408.386,4841578.281
-895039,4154612,2017.0,2017.0,1965.0,PRIVATE,6,York Centre,20 WILMINGTON AVE,4,13,2017-11-27,43,Building Audit,16,1.0,2.0,1.0,2.0,2.0,2.0,,2.0,,,2.0,2.0,2.0,3.0,3.0,2.0,3.0,2.0,3.0,,N0624,43.753481576000006,-79.45330395399999,308544.767,4845726.114
-895040,4156163,2017.0,2017.0,1967.0,PRIVATE,12,Toronto-St. Paul's,50 HOLLY ST,15,145,2017-11-27,71,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,,3.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,,S1228,43.7058910324,-79.3966825426,313111.219,4840442.282
-895041,4152860,2017.0,2017.0,1977.0,PRIVATE,22,Scarborough-Agincourt,20 STONEHILL CRT,13,153,2017-11-27,63,Evaluation needs to be conducted in 1 year,18,3.0,4.0,3.0,4.0,3.0,4.0,3.0,2.0,4.0,,3.0,2.0,4.0,3.0,2.0,3.0,2.0,4.0,4.0,,E2226,43.795961863100004,-79.3147046688,319695.816,4850460.119
-895042,4155487,2017.0,2017.0,1965.0,PRIVATE,3,Etobicoke-Lakeshore,2 SUPERIOR AVE,5,47,2017-11-27,68,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,3.0,3.0,4.0,,4.0,4.0,,3.0,3.0,5.0,3.0,3.0,3.0,4.0,4.0,3.0,,W0336,43.614330851700004,-79.4872977904,305809.589,4830265.341
-895043,4155486,2017.0,2017.0,1965.0,PRIVATE,3,Etobicoke-Lakeshore,4 SUPERIOR AVE,7,55,2017-11-27,69,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,3.0,4.0,,4.0,4.0,3.0,3.0,3.0,5.0,3.0,4.0,3.0,4.0,4.0,3.0,,W0336,43.614181523999996,-79.487650972,305708.68100000004,4830306.617
-895044,4154752,2017.0,2017.0,1958.0,PRIVATE,18,Willowdale,414 WILLOWDALE AVE,3,65,2017-11-27,69,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,3.0,3.0,3.0,,4.0,4.0,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,N1825,43.7772192847,-79.4056901846,312376.343,4848365.5430000005
-895045,4154635,2017.0,2017.0,1959.0,PRIVATE,6,York Centre,1 WILMINGTON AVE,3,11,2017-11-27,56,Evaluation needs to be conducted in 1 year,15,2.0,3.0,3.0,3.0,,3.0,,2.0,,,2.0,2.0,5.0,3.0,3.0,2.0,3.0,4.0,2.0,,N0624,43.75301421,-79.451942218,308654.456,4845674.252
-895046,4153800,2017.0,2017.0,1973.0,PRIVATE,12,Toronto-St. Paul's,101 ROEHAMPTON AVE,20,129,2017-11-27,62,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,2.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,,S1221,43.70836176,-79.395388172,313214.933,4840717.855
-895047,4250288,2017.0,2017.0,1989.0,SOCIAL HOUSING,13,Toronto Centre,305-307 PARLIAMENT ST,3,10,2017-11-27,60,Evaluation needs to be conducted in 1 year,15,2.0,3.0,3.0,3.0,2.0,3.0,,4.0,,,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,S1330,,,315626.782,4835245.653
-895048,4155301,2017.0,2017.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,1276 ISLINGTON AVE,13,202,2017-11-27,67,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,2.0,,W0321,43.647785657,-79.5258528138,302698.664,4833982.321
-895049,4152887,2017.0,2017.0,1979.0,PRIVATE,25,Scarborough-Rouge Park,1 DEAN PARK RD,16,249,2017-11-27,71,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,,4.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,E2529,43.804482576999995,-79.1702968406,331312.86,4851442.64
-895050,4153539,2017.0,2017.0,1930.0,PRIVATE,13,Toronto Centre,61 CHARLES ST E,3,24,2017-11-27,67,Evaluation needs to be conducted in 2 years,15,4.0,3.0,3.0,4.0,3.0,3.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1322,43.6689268279,-79.3832377499,314200.51399999997,4836337.065
-895051,4153617,2017.0,2017.0,1955.0,PRIVATE,14,Toronto-Danforth,856-858 BROADVIEW AVE,4,23,2017-11-27,69,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,3.0,3.0,3.0,,5.0,,,3.0,3.0,5.0,4.0,3.0,4.0,,3.0,4.0,,S1424,,,316192.655,4837481.068
-895052,4155296,2017.0,2017.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,2649 BLOOR ST W,4,48,2017-11-27,60,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,5.0,3.0,2.0,2.0,4.0,3.0,2.0,,W0327,43.648996751999995,-79.494971996,305189.691,4834117.426
-895053,4154236,2017.0,2017.0,1971.0,PRIVATE,7,Humber River-Black Creek,101 DRIFTWOOD AVE,4,32,2017-11-27,61,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,4.0,3.0,2.0,4.0,3.0,3.0,3.0,,W0730,43.754502975,-79.513280684,303714.863,4845838.642
-895054,4154471,2017.0,2017.0,1970.0,PRIVATE,7,Humber River-Black Creek,345 SENTINEL RD,10,79,2017-11-27,69,Evaluation needs to be conducted in 2 years,19,3.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,5.0,4.0,3.0,3.0,4.0,5.0,4.0,,W0731,43.7574137617,-79.4982692198,304923.99199999997,4846160.951
-895055,4153583,2017.0,2017.0,1931.0,PRIVATE,13,Toronto Centre,317 SHERBOURNE ST,4,38,2017-11-27,54,Evaluation needs to be conducted in 1 year,14,3.0,3.0,4.0,3.0,,2.0,,2.0,,,3.0,3.0,3.0,2.0,2.0,3.0,,2.0,3.0,,S1323,43.6617262315,-79.37195933689999,315111.279,4835538.449
-895056,4153584,2017.0,2017.0,1960.0,PRIVATE,13,Toronto Centre,321 SHERBOURNE ST,7,67,2017-11-27,60,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,2.0,4.0,,2.0,3.0,,2.0,2.0,5.0,3.0,3.0,4.0,3.0,3.0,2.0,,S1323,43.661894315699996,-79.3721159385,315098.62,4835557.103
-895057,4153588,2017.0,2017.0,1920.0,PRIVATE,13,Toronto Centre,391 SHERBOURNE ST,4,48,2017-11-27,64,Evaluation needs to be conducted in 1 year,15,4.0,3.0,3.0,4.0,3.0,3.0,,2.0,,,3.0,2.0,4.0,3.0,4.0,4.0,,3.0,3.0,,S1323,43.664351600699995,-79.3730396358,315023.70399999997,4835829.981000001
-895058,4154106,2017.0,2017.0,1950.0,PRIVATE,14,Toronto-Danforth,325 SAMMON AVE,3,26,2017-11-27,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,2.0,3.0,,4.0,,,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,3.0,,S1426,43.6866220791,-79.3348314458,318100.224,4838309.488
-895059,4154538,2017.0,2017.0,1967.0,PRIVATE,8,Eglinton-Lawrence,104 RAJAH ST,3,11,2017-11-27,65,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,4.0,4.0,2.0,3.0,4.0,,N0823,43.730670188000005,-79.438737082,309719.632,4843192.656
-895060,4153225,2017.0,2017.0,1964.0,PRIVATE,11,University-Rosedale,177 ST GEORGE ST,8,57,2017-11-27,67,Evaluation needs to be conducted in 2 years,17,4.0,3.0,3.0,3.0,3.0,2.0,,3.0,4.0,,4.0,3.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,,S1127,43.671145731,-79.400916019,312774.284,4836582.6280000005
-895061,4153232,2017.0,2017.0,1958.0,PRIVATE,11,University-Rosedale,267 ST GEORGE ST,10,63,2017-11-27,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,4.0,3.0,4.0,,3.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1127,43.673533271400004,-79.4021494997,312674.784,4836846.799
-895062,4153210,2017.0,2017.0,1952.0,PRIVATE,11,University-Rosedale,151 ST GEORGE ST,7,48,2017-11-27,59,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,3.0,2.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,2.0,,S1127,43.669453576,-79.400154652,312835.898,4836394.713
-895063,4153882,2017.0,2017.0,1938.0,PRIVATE,12,Toronto-St. Paul's,110 ST CLAIR AVE W,9,54,2017-11-27,65,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,2.0,4.0,3.0,,3.0,3.0,,3.0,3.0,5.0,3.0,4.0,3.0,,3.0,3.0,,S1232,43.68739965100001,-79.398937696,312931.977,4838387.652
-895064,4153890,2017.0,2017.0,1959.0,PRIVATE,12,Toronto-St. Paul's,276 ST CLAIR AVE W,4,49,2017-11-27,69,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,3.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,,S1231,43.685428165,-79.409063969,312115.572,4838168.659
-895065,4153842,2017.0,2017.0,1948.0,PRIVATE,15,Don Valley West,110 BROADWAY AVE,4,71,2017-11-27,66,Evaluation needs to be conducted in 2 years,16,4.0,3.0,3.0,3.0,,3.0,,3.0,3.0,,3.0,3.0,5.0,4.0,4.0,3.0,3.0,3.0,3.0,,N1526,43.710960168,-79.39319723199999,313391.13300000003,4841006.752
-895066,4153841,2017.0,2017.0,1957.0,PRIVATE,15,Don Valley West,120 BROADWAY AVE,4,48,2017-11-27,66,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,4.0,4.0,3.0,,4.0,3.0,,3.0,4.0,5.0,4.0,2.0,3.0,2.0,3.0,3.0,,N1526,43.711301163,-79.392906342,313414.526,4841044.666
-895067,4153152,2017.0,2017.0,1930.0,PRIVATE,9,Davenport,410 DOVERCOURT RD,3,13,2017-11-27,72,Evaluation needs to be conducted in 2 years,15,4.0,3.0,3.0,3.0,3.0,4.0,,4.0,,,3.0,4.0,5.0,4.0,4.0,4.0,,3.0,3.0,,S0934,43.65297347,-79.42636241390001,310724.394,4834560.735
-895068,4153394,2017.0,2017.0,1980.0,PRIVATE,13,Toronto Centre,90 ADELAIDE ST E,8,60,2017-11-27,71,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,,3.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,2.0,,S1334,43.651581463999996,-79.37405760899999,314943.48,4834412.106000001
-895069,4156624,2017.0,2017.0,1974.0,PRIVATE,22,Scarborough-Agincourt,20 AURORA CRT,14,175,2017-11-27,77,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,4.0,3.0,5.0,4.0,5.0,4.0,2.0,2.0,4.0,,E2225,43.794252697,-79.3168863935,,
-895070,4154640,2017.0,2017.0,1967.0,PRIVATE,6,York Centre,605 FINCH AVE W,9,244,2017-11-27,58,Evaluation needs to be conducted in 1 year,20,4.0,2.0,3.0,4.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,4.0,3.0,2.0,3.0,3.0,3.0,2.0,2.0,N0624,43.771328418,-79.45270965,308591.503,4847708.85
-895071,4152795,2017.0,2017.0,1968.0,PRIVATE,20,Scarborough Southwest,3091 EGLINTON AVE E,7,79,2017-11-24,76,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,4.0,2.0,4.0,4.0,3.0,,4.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,2.0,,E2027,43.7409544272,-79.2260065723,326853.597,4844368.692
-895072,4153891,2017.0,2017.0,1960.0,PRIVATE,12,Toronto-St. Paul's,300 ST CLAIR AVE W,5,49,2017-11-24,76,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,4.0,3.0,,4.0,4.0,3.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1231,43.685073908,-79.410731333,311981.184,4838129.155
-895073,4154190,2017.0,2017.0,1986.0,PRIVATE,15,Don Valley West,795 EGLINTON AVE E,5,88,2017-11-24,68,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,4.0,,3.0,,3.0,4.0,,4.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N1531,43.7130112493,-79.3661880509,315567.565,4841236.748
-895074,4156417,2017.0,2017.0,1975.0,PRIVATE,25,Scarborough-Rouge Park,41 GENERATION BLVD,3,12,2017-11-24,65,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,2.0,2.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,E2530,43.8042493963,-79.1676352467,331492.953,4851411.033
-895075,4156415,2017.0,2017.0,1975.0,PRIVATE,25,Scarborough-Rouge Park,43 GENERATION BLVD,3,12,2017-11-24,66,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,3.0,2.0,,4.0,,,3.0,2.0,5.0,3.0,3.0,3.0,3.0,4.0,4.0,4.0,E2530,43.804310025,-79.1674004939,331569.09,4851436.626
-895076,4156491,2017.0,2017.0,1975.0,PRIVATE,25,Scarborough-Rouge Park,45 GENERATION BLVD,3,12,2017-11-24,67,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,3.0,3.0,2.0,,4.0,,,3.0,2.0,5.0,3.0,3.0,3.0,3.0,4.0,4.0,4.0,E2530,43.8043562465,-79.1670746426,331587.82899999997,4851453.213
-895077,4155978,2017.0,2017.0,1975.0,PRIVATE,25,Scarborough-Rouge Park,47 GENERATION BLVD,3,180,2017-11-24,66,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,3.0,2.0,,4.0,,,3.0,2.0,4.0,3.0,4.0,3.0,4.0,3.0,4.0,4.0,E2530,43.804209057200005,-79.1667368141,331647.273,4851470.1389999995
-895078,4244929,2017.0,2017.0,1963.0,PRIVATE,1,Etobicoke North,70 ESTHER LORRIE DR,7,97,2017-11-24,68,Evaluation needs to be conducted in 2 years,16,3.0,4.0,3.0,3.0,3.0,3.0,,4.0,4.0,,4.0,4.0,5.0,2.0,3.0,3.0,,3.0,3.0,,W0129,43.732279511,-79.577684699,298562.561,4843311.273
-895079,4156441,2017.0,2017.0,2009.0,SOCIAL HOUSING,12,Toronto-St. Paul's,201 VAUGHAN RD,3,30,2017-11-24,65,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,3.0,3.0,,2.0,4.0,,3.0,4.0,5.0,4.0,2.0,3.0,,3.0,3.0,3.0,S1229,43.6870772647,-79.4223633104,311043.417,4838349.831
-895080,4152841,2017.0,2017.0,1965.0,PRIVATE,25,Scarborough-Rouge Park,217 MORNINGSIDE AVE,9,110,2017-11-24,57,Evaluation needs to be conducted in 1 year,19,2.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,4.0,E2537,43.766678518999996,-79.18464464430001,330174.271,4847238.274
-895081,4154145,2017.0,2017.0,1960.0,PRIVATE,15,Don Valley West,2 MILEPOST PL,6,77,2017-11-24,68,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,3.0,4.0,4.0,,3.0,3.0,,4.0,4.0,5.0,3.0,3.0,2.0,3.0,3.0,3.0,,N1533,43.7029007633,-79.3484372243,317000.05600000004,4840115.933
-895082,4154146,2017.0,2017.0,1960.0,PRIVATE,15,Don Valley West,4 MILEPOST PL,6,77,2017-11-24,69,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,3.0,4.0,4.0,,3.0,4.0,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N1533,43.702335831599996,-79.3484380535,317000.106,4840053.174
-895083,4156242,2017.0,2017.0,1985.0,SOCIAL HOUSING,24,Scarborough-Guildwood,4201 KINGSTON RD,3,41,2017-11-24,60,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,2.0,4.0,3.0,,2.0,,,2.0,3.0,3.0,4.0,3.0,3.0,3.0,4.0,2.0,3.0,E2432,43.759407247,-79.19610969600001,329252.877,4846512.146000001
-895084,4155052,2017.0,2017.0,1967.0,PRIVATE,8,Eglinton-Lawrence,145 MARLEE AVE,18,315,2017-11-24,74,Evaluation needs to be conducted in 2 years,18,5.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,3.0,,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,,N0831,43.7032633519,-79.4410303906,309536.07399999996,4840154.407
-895085,4156365,2017.0,2017.0,1967.0,PRIVATE,8,Eglinton-Lawrence,141 LYON CRT,18,142,2017-11-24,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,N0831,43.703293224700005,-79.4396796908,309620.459,4840134.478
-895086,4154064,2017.0,2017.0,1950.0,PRIVATE,19,Beaches-East York,1001 O'CONNOR DR,4,83,2017-11-24,65,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,4.0,3.0,4.0,3.0,4.0,3.0,,3.0,4.0,,S1924,43.7097238899,-79.30919265920001,320161.322,4840880.499
-895087,4154971,2017.0,2017.0,1929.0,PRIVATE,12,Toronto-St. Paul's,120 VAUGHAN RD,3,24,2017-11-24,63,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1229,43.684541083,-79.4218295295,311086.706,4838068.087
-895088,4154977,2017.0,2017.0,1955.0,PRIVATE,12,Toronto-St. Paul's,197 VAUGHAN RD,6,42,2017-11-24,60,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,3.0,2.0,3.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,2.0,,S1229,43.68697657479999,-79.42215889180001,311059.907,4838338.659
-895089,4152979,2017.0,2017.0,1962.0,PRIVATE,4,Parkdale-High Park,79 JAMESON AVE,7,121,2017-11-24,58,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,2.0,3.0,2.0,2.0,,S0437,43.6343864114,-79.4346789323,310055.132,4832495.286
-895090,4153978,2017.0,2017.0,1965.0,PRIVATE,8,Eglinton-Lawrence,680 ROSELAWN AVE,9,64,2017-11-24,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0833,43.705715201000004,-79.425361614,310799.649,4840421.205
-895091,4153855,2017.0,2017.0,1955.0,PRIVATE,15,Don Valley West,100 KEEWATIN AVE,4,32,2017-11-24,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,3.0,3.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,,N1526,43.7132857691,-79.396652141,313112.649,4841263.81
-895092,4153854,2017.0,2017.0,1955.0,PRIVATE,15,Don Valley West,110 KEEWATIN AVE,4,32,2017-11-24,74,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,3.0,3.0,,4.0,,4.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,,N1526,43.7133304232,-79.3963936758,313133.471,4841268.797
-895093,4153846,2017.0,2017.0,1958.0,PRIVATE,15,Don Valley West,135 KEEWATIN AVE,4,52,2017-11-24,71,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,4.0,3.0,3.0,4.0,2.0,,4.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,4.0,,N1526,43.7129372818,-79.39546673560001,313208.222,4841225.215
-895094,4152985,2017.0,2017.0,1960.0,PRIVATE,4,Parkdale-High Park,145 JAMESON AVE,9,80,2017-11-24,59,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,2.0,3.0,2.0,2.0,,S0437,43.6369589239,-79.435611219,309979.692,4832781.011
-895095,4155048,2017.0,2017.0,1960.0,PRIVATE,8,Eglinton-Lawrence,835 ROSELAWN AVE,7,39,2017-11-24,56,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,3.0,3.0,4.0,2.0,2.0,3.0,3.0,2.0,2.0,,N0831,43.7023772418,-79.439257763,309680.221,4840048.4569999995
-895096,4154024,2017.0,2017.0,1936.0,PRIVATE,8,Eglinton-Lawrence,14 CHATSWORTH DR,4,41,2017-11-24,70,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,5.0,4.0,3.0,4.0,,4.0,3.0,,N0829,43.722344838999994,-79.402568504,312634.457,4842270.577
-895097,4154257,2017.0,2017.0,1960.0,PRIVATE,7,Humber River-Black Creek,3 DAMASK AVE,3,10,2017-11-24,65,Evaluation needs to be conducted in 1 year,15,3.0,4.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,4.0,3.0,,3.0,3.0,,W0728,43.7416935323,-79.5396641026,301589.804,4844415.3319999995
-895098,4154037,2017.0,2017.0,1971.0,PRIVATE,19,Beaches-East York,7 CRESCENT PL,29,584,2017-11-24,57,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,2.0,3.0,4.0,2.0,3.0,3.0,,2.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,S1930,43.695055073999995,-79.291784761,321568.003,4839255.097
-895099,4156314,2017.0,2017.0,1971.0,PRIVATE,19,Beaches-East York,11 CRESCENT PL,29,159,2017-11-24,58,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,4.0,2.0,3.0,3.0,,2.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,S1930,43.695136718,-79.290535808,321603.253,4839337.069
-895100,4154235,2017.0,2017.0,1970.0,PRIVATE,7,Humber River-Black Creek,45 DRIFTWOOD AVE,14,137,2017-11-24,54,Evaluation needs to be conducted in 1 year,18,4.0,3.0,4.0,2.0,3.0,2.0,2.0,3.0,3.0,,2.0,4.0,3.0,2.0,2.0,2.0,3.0,2.0,3.0,,W0730,43.7511483154,-79.5114796645,303860.109,4845464.976
-895101,4155412,2017.0,2017.0,1962.0,PRIVATE,1,Etobicoke North,80 BLACKFRIAR AVE,3,45,2017-11-24,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,2.0,2.0,2.0,3.0,,3.0,,,4.0,2.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,,W0133,43.6982740751,-79.5624045901,299754.433,4839592.821
-895102,4153826,2017.0,2017.0,1961.0,PRIVATE,12,Toronto-St. Paul's,100 ROEHAMPTON AVE,14,211,2017-11-24,67,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,2.0,3.0,3.0,3.0,4.0,3.0,,4.0,4.0,5.0,3.0,4.0,4.0,3.0,2.0,3.0,,S1221,43.709038236000005,-79.395336521,313219.001,4840793.0139999995
-895103,4155053,2017.0,2017.0,1967.0,PRIVATE,8,Eglinton-Lawrence,377 RIDELLE AVE,18,231,2017-11-24,70,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,,4.0,2.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,,N0831,43.70388232649999,-79.4401320066,309609.636,4840215.587
-895104,4156573,2017.0,2017.0,1964.0,PRIVATE,12,Toronto-St. Paul's,18 BROWNLOW AVE,19,185,2017-11-24,74,Evaluation needs to be conducted in 2 years,19,5.0,3.0,4.0,4.0,4.0,3.0,3.0,3.0,4.0,,4.0,3.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,S1228,43.706425160500004,-79.3912717139,313547.231,4840502.17
-895105,4154744,2017.0,2017.0,1968.0,PRIVATE,18,Willowdale,2818 BAYVIEW AVE,3,20,2017-11-24,55,Evaluation needs to be conducted in 1 year,17,3.0,2.0,3.0,2.0,3.0,3.0,2.0,3.0,,,3.0,3.0,5.0,3.0,2.0,2.0,3.0,3.0,2.0,,N1828,43.7657782608,-79.3883472184,313774.078,4847096.221
-895106,4154026,2017.0,2017.0,1960.0,PRIVATE,8,Eglinton-Lawrence,15 BEDFORD PARK AVE,3,39,2017-11-24,64,Evaluation needs to be conducted in 1 year,17,4.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0825,43.7269710792,-79.4040459316,312515.092,4842783.43
-895107,4152791,2017.0,2017.0,1969.0,PRIVATE,20,Scarborough Southwest,3161 EGLINTON AVE E,12,166,2017-11-24,73,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,,3.0,2.0,5.0,4.0,4.0,3.0,3.0,4.0,4.0,,E2027,43.741827577200006,-79.221378358,327226.05199999997,4844466.914
-895108,4156323,2017.0,2017.0,1971.0,PRIVATE,17,Don Valley North,4001 BAYVIEW AVE,12,234,2017-11-23,83,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,,N1721,43.8013167898,-79.39228963229999,313197.147,4851099.932
-895109,4155674,2017.0,2017.0,1971.0,PRIVATE,17,Don Valley North,4003 BAYVIEW AVE,12,172,2017-11-23,86,Evaluation needs to be conducted in 3 years,18,4.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,,4.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,,N1721,43.80222500439999,-79.3928562051,313191.076,4851131.715
-895110,4155675,2017.0,2017.0,1971.0,PRIVATE,17,Don Valley North,4005 BAYVIEW AVE,12,235,2017-11-23,85,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,,4.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,N1721,43.8026375756,-79.3940419226,313187.202,4851155.2469999995
-895111,4264094,2017.0,2017.0,2013.0,PRIVATE,13,Toronto Centre,132 BERKELEY ST,10,177,2017-11-23,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,3.0,4.0,,3.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,S1335,43.654807461000004,-79.365773301,315593.156,4834753.59
-895112,4152867,2017.0,2017.0,1967.0,PRIVATE,22,Scarborough-Agincourt,2237 BIRCHMOUNT RD,5,44,2017-11-23,68,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,3.0,4.0,3.0,2.0,3.0,3.0,,3.0,2.0,5.0,5.0,4.0,3.0,3.0,4.0,3.0,,E2232,43.77963856270001,-79.2967399834,321145.885,4848650.017
-895113,4152868,2017.0,2017.0,1974.0,PRIVATE,22,Scarborough-Agincourt,2241 BIRCHMOUNT RD,5,27,2017-11-23,68,Evaluation needs to be conducted in 2 years,17,4.0,4.0,3.0,4.0,3.0,4.0,,3.0,3.0,,4.0,2.0,5.0,4.0,3.0,3.0,3.0,3.0,3.0,,E2232,43.7799731788,-79.2968150642,321139.751,4848687.177
-895114,4156164,2017.0,2017.0,1952.0,PRIVATE,2,Etobicoke Centre,4 BEXHILL CRT,4,13,2017-11-23,57,Evaluation needs to be conducted in 1 year,14,3.0,3.0,2.0,3.0,,2.0,,3.0,,,3.0,2.0,4.0,3.0,3.0,3.0,,3.0,3.0,,W0229,43.6627117041,-79.5212630607,303069.399,4835640.393999999
-895115,4155924,2017.0,2017.0,1952.0,PRIVATE,2,Etobicoke Centre,14 BEXHILL CRT,4,14,2017-11-23,60,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,3.0,3.0,2.0,4.0,3.0,3.0,4.0,,3.0,3.0,,W0229,43.6627215022,-79.52019357260001,303155.649,4835641.459
-895116,4153354,2017.0,2017.0,1929.0,PRIVATE,12,Toronto-St. Paul's,795 ST CLAIR AVE W,3,19,2017-11-23,55,Evaluation needs to be conducted in 1 year,15,2.0,3.0,3.0,2.0,3.0,3.0,,3.0,,,2.0,3.0,2.0,3.0,3.0,3.0,,3.0,3.0,,S1234,43.6804983237,-79.4302086848,310411.49,4837618.363
-895117,4155318,2017.0,2017.0,1943.0,PRIVATE,2,Etobicoke Centre,18 ANGLESEY BLVD,4,25,2017-11-23,55,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,2.0,3.0,2.0,,3.0,,,3.0,2.0,3.0,3.0,3.0,2.0,,3.0,3.0,,W0229,43.6649891625,-79.52164019050001,303039.06899999996,4835893.416
-895118,4155319,2017.0,2017.0,1953.0,PRIVATE,2,Etobicoke Centre,20 ANGLESEY BLVD,4,25,2017-11-23,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,4.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,W0229,43.6647873708,-79.521769522,303028.632,4835871.001
-895119,4152783,2017.0,2017.0,1964.0,PRIVATE,20,Scarborough Southwest,3744 ST CLAIR AVE E,6,88,2017-11-23,72,Evaluation needs to be conducted in 2 years,20,4.0,3.0,4.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,E2032,43.7209375824,-79.2430985709,325483.757,4842140.563999999
-895120,4152782,2017.0,2017.0,1965.0,PRIVATE,20,Scarborough Southwest,3750 ST CLAIR AVE E,7,55,2017-11-23,52,Evaluation needs to be conducted in 1 year,18,2.0,2.0,2.0,2.0,3.0,3.0,2.0,3.0,3.0,,2.0,4.0,3.0,3.0,2.0,3.0,3.0,3.0,2.0,,E2032,43.721220413800005,-79.242301179,325547.906,4842172.186000001
-895121,4153631,2017.0,2017.0,1989.0,SOCIAL HOUSING,14,Toronto-Danforth,502 EASTERN AVE,5,19,2017-11-23,60,Evaluation needs to be conducted in 1 year,17,3.0,4.0,4.0,3.0,2.0,3.0,,3.0,,,3.0,2.0,4.0,3.0,2.0,4.0,2.0,3.0,3.0,3.0,S1441,43.6582172963,-79.3407960329,317625.416,4835152.942
-895122,4156442,2017.0,2017.0,1953.0,SOCIAL HOUSING,3,Etobicoke-Lakeshore,5 FORTY THIRD ST,3,40,2017-11-23,71,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,3.0,4.0,4.0,,4.0,,,3.0,3.0,5.0,3.0,4.0,3.0,,4.0,3.0,3.0,W0334,43.5900678471,-79.546025288,301067.973,4827570.758
-895123,4156001,2017.0,2017.0,1953.0,SOCIAL HOUSING,3,Etobicoke-Lakeshore,15 FORTY THIRD ST,3,25,2017-11-23,73,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,4.0,4.0,,4.0,,,4.0,3.0,5.0,4.0,4.0,3.0,,3.0,4.0,3.0,W0334,43.59027832979999,-79.54615877170001,301057.206,4827594.148
-895124,4153625,2017.0,2017.0,1996.0,SOCIAL HOUSING,14,Toronto-Danforth,54 MARIGOLD AVE,4,29,2017-11-23,53,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,,3.0,2.0,3.0,2.0,2.0,3.0,3.0,4.0,2.0,2.0,3.0,3.0,2.0,2.0,2.0,S1441,43.661996165699996,-79.33107610180001,318408.525,4835574.305
-895125,4155040,2017.0,2017.0,1958.0,PRIVATE,8,Eglinton-Lawrence,1480 EGLINTON AVE W,4,11,2017-11-23,60,Evaluation needs to be conducted in 1 year,17,3.0,2.0,3.0,3.0,3.0,3.0,3.0,4.0,,,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,2.0,,N0831,43.6981187343,-79.4400469676,309616.941,4839575.316000001
-895126,4155042,2017.0,2017.0,1954.0,PRIVATE,8,Eglinton-Lawrence,1500 EGLINTON AVE W,4,34,2017-11-23,60,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,2.0,3.0,3.0,3.0,2.0,3.0,,N0831,43.698027116800006,-79.4407389878,309561.167,4839565.097
-895127,4156002,2017.0,2017.0,1937.0,PRIVATE,8,Eglinton-Lawrence,1798 EGLINTON AVE W,3,34,2017-11-23,59,Evaluation needs to be conducted in 1 year,15,3.0,2.0,3.0,3.0,3.0,3.0,,4.0,,,3.0,2.0,5.0,2.0,3.0,3.0,,2.0,3.0,,N0831,43.696142079,-79.44919947300001,308871.662,4839354.179
-895128,4154644,2017.0,2017.0,1964.0,PRIVATE,6,York Centre,11 GOLDFINCH CRT,15,174,2017-11-23,65,Evaluation needs to be conducted in 1 year,20,4.0,3.0,4.0,4.0,4.0,3.0,4.0,2.0,3.0,3.0,3.0,3.0,5.0,2.0,2.0,3.0,2.0,5.0,3.0,3.0,N0624,43.771955665200004,-79.4498156824,308824.70399999997,4847777.717
-895129,4152942,2017.0,2017.0,1920.0,PRIVATE,9,Davenport,1625 DUPONT ST,4,10,2017-11-23,67,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,3.0,3.0,3.0,,5.0,,,3.0,3.0,4.0,3.0,4.0,4.0,,3.0,3.0,,S0929,43.6647859193,-79.455225181,308395.475,4835871.433
-895130,4152780,2017.0,2017.0,1964.0,PRIVATE,20,Scarborough Southwest,121 MINERVA AVE,6,90,2017-11-23,69,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,4.0,3.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,,E2032,43.7218512738,-79.2442216236,325392.95399999997,4842241.788
-895131,4152781,2017.0,2017.0,1964.0,PRIVATE,20,Scarborough Southwest,131 MINERVA AVE,6,83,2017-11-23,69,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,3.0,3.0,4.0,4.0,2.0,,3.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,,E2032,43.722060301400006,-79.2433036928,325466.841,4842265.24
-895132,4152665,2017.0,2017.0,1960.0,PRIVATE,21,Scarborough Centre,2301 VICTORIA PARK AVE,7,104,2017-11-23,66,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,2.0,3.0,3.0,3.0,3.0,,4.0,2.0,5.0,4.0,3.0,3.0,,4.0,3.0,4.0,E2121,43.76413723899999,-79.3173877592,319487.607,4846923.995
-895133,4152852,2017.0,2017.0,1972.0,PRIVATE,22,Scarborough-Agincourt,2727 VICTORIA PARK AVE,13,178,2017-11-23,65,Evaluation needs to be conducted in 1 year,19,3.0,4.0,4.0,3.0,3.0,2.0,3.0,3.0,5.0,,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,E2225,43.7774582202,-79.323301522,319008.345,4848402.903
-895134,4156172,2017.0,2017.0,1960.0,PRIVATE,21,Scarborough Centre,1 TERRAVIEW BLVD,7,104,2017-11-23,71,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,3.0,3.0,3.0,2.0,4.0,,3.0,2.0,5.0,4.0,4.0,4.0,,5.0,3.0,,E2121,43.7644344893,-79.3177518192,319458.224,4846956.955
-895135,4154219,2017.0,2017.0,1965.0,PRIVATE,7,Humber River-Black Creek,99 MATTSON RD,4,30,2017-11-23,61,Evaluation needs to be conducted in 1 year,16,3.0,2.0,4.0,3.0,3.0,3.0,,2.0,,,2.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0734,43.722654944,-79.5130447411,303733.493,4842299.549
-895136,4153017,2017.0,2017.0,1964.0,PRIVATE,4,Parkdale-High Park,21 MAYNARD AVE,11,117,2017-11-23,57,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,5.0,2.0,2.0,2.0,3.0,2.0,2.0,,S0436,43.6381531633,-79.4373955962,309835.623,4832913.577
-895137,4153016,2017.0,2017.0,1978.0,PRIVATE,4,Parkdale-High Park,22 MAYNARD AVE,3,36,2017-11-23,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S0436,43.637780662299996,-79.4379497225,309790.94399999996,4832872.164
-895138,4155044,2017.0,2017.0,1960.0,PRIVATE,8,Eglinton-Lawrence,110 MARLEE AVE,7,110,2017-11-23,64,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,2.0,3.0,3.0,,3.0,3.0,,4.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0831,43.701234201999995,-79.441021952,309537.855,4839922.321
-895139,4154084,2017.0,2017.0,1957.0,PRIVATE,14,Toronto-Danforth,470 MORTIMER AVE,4,42,2017-11-23,74,Evaluation needs to be conducted in 2 years,17,4.0,4.0,3.0,3.0,3.0,4.0,,4.0,,3.0,3.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,S1426,43.6897638166,-79.33204735609999,318323.973,4838658.984
-895140,4152932,2017.0,2017.0,1926.0,PRIVATE,4,Parkdale-High Park,5 HIGH PARK AVE,3,21,2017-11-23,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,2.0,3.0,,3.0,,,3.0,2.0,4.0,3.0,4.0,4.0,,3.0,3.0,,S0428,43.6538760484,-79.46498174060001,307609.12899999996,4834659.06
-895141,4154967,2017.0,2017.0,1950.0,PRIVATE,12,Toronto-St. Paul's,105 KENWOOD AVE,4,31,2017-11-23,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,,,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,S1229,43.685885733999996,-79.4229628704,310995.19899999996,4838217.402
-895142,4155431,2017.0,2017.0,1962.0,PRIVATE,1,Etobicoke North,40 TORBOLTON DR,3,17,2017-11-23,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,2.0,4.0,3.0,,W0130,43.7198931386,-79.5585311012,300068.36,4841994.413
-895143,4155184,2017.0,2017.0,1972.0,PRIVATE,5,York South-Weston,1059 WESTON RD,3,14,2017-11-23,59,Evaluation needs to be conducted in 1 year,15,3.0,2.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,2.0,3.0,,3.0,3.0,,W0535,43.68559996729999,-79.486207625,305896.352,4838182.921
-895144,4155189,2017.0,2017.0,1954.0,PRIVATE,5,York South-Weston,5 A JASPER AVE,3,10,2017-11-23,58,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,2.0,3.0,,3.0,,,2.0,2.0,5.0,3.0,3.0,3.0,2.0,3.0,3.0,,W0535,43.6833549123,-79.4823636932,306206.297,4837933.562
-895145,4154987,2017.0,2017.0,1938.0,PRIVATE,12,Toronto-St. Paul's,229 VAUGHAN RD,4,24,2017-11-23,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1229,43.687936684700006,-79.4236664523,310938.274,4838445.218
-895146,4154986,2017.0,2017.0,1952.0,PRIVATE,12,Toronto-St. Paul's,236 VAUGHAN RD,5,79,2017-11-23,59,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,S1229,43.6878267633,-79.4247971619,310847.13,4838432.92
-895147,4155022,2017.0,2017.0,1957.0,PRIVATE,12,Toronto-St. Paul's,481 VAUGHAN RD,7,97,2017-11-23,61,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,,S1223,43.689882743000005,-79.43517980899999,310009.678,4838661.56
-895148,4155539,2017.0,2017.0,1970.0,PRIVATE,3,Etobicoke-Lakeshore,80 TWENTY FIFTH ST,3,18,2017-11-23,79,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,3.0,4.0,,3.0,4.0,,W0334,43.595321466,-79.523394934,302898.92,4828146.016
-895149,4252925,2017.0,2017.0,1970.0,PRIVATE,3,Etobicoke-Lakeshore,90 TWENTY FIFTH ST,3,41,2017-11-23,80,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0334,43.595677145,-79.523533337,302867.794,4828242.129
-895150,4154976,2017.0,2017.0,1920.0,PRIVATE,12,Toronto-St. Paul's,195 VAUGHAN RD,4,32,2017-11-23,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1229,43.6868381071,-79.4220275431,311070.51,4838323.284
-895151,4281384,2017.0,2017.0,1937.0,PRIVATE,20,Scarborough Southwest,2404 QUEEN ST E,4,20,2017-11-23,69,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,4.0,,3.0,,4.0,,,4.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,E2033,43.674660546400006,-79.2797118492,322547.395,4836990.9
-895152,4153985,2017.0,2017.0,1965.0,PRIVATE,8,Eglinton-Lawrence,630 ROSELAWN AVE,9,104,2017-11-23,68,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,4.0,5.0,4.0,3.0,3.0,3.0,3.0,2.0,,N0833,43.706292347,-79.422652894,311017.893,4840485.517
-895153,4153941,2017.0,2017.0,1937.0,PRIVATE,12,Toronto-St. Paul's,540 RUSSELL HILL RD,5,32,2017-11-23,62,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1226,43.7028383782,-79.4156643118,311581.779,4840101.39
-895154,4153940,2017.0,2017.0,1954.0,PRIVATE,12,Toronto-St. Paul's,555 RUSSELL HILL RD,5,32,2017-11-23,62,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1226,43.7029404045,-79.4151517899,311623.075,4840112.767
-895155,4153730,2017.0,2017.0,1954.0,PRIVATE,11,University-Rosedale,40 PARK RD,7,39,2017-11-23,64,Evaluation needs to be conducted in 1 year,17,4.0,3.0,4.0,2.0,3.0,3.0,,3.0,3.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,S1129,43.672981453,-79.384902282,314065.409,4836788.283
-895156,4153789,2017.0,2017.0,1958.0,PRIVATE,15,Don Valley West,75 PETMAN AVE,3,26,2017-11-23,63,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N1530,43.7089290278,-79.3843041849,314108.39,4840781.103
-895157,4154632,2017.0,2017.0,1964.0,PRIVATE,6,York Centre,12 ROCKFORD RD,13,128,2017-11-23,72,Evaluation needs to be conducted in 2 years,19,4.0,3.0,3.0,4.0,4.0,4.0,3.0,2.0,4.0,,3.0,4.0,5.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,N0622,43.786076743500004,-79.447735502,308991.179,4849346.616
-895158,4155440,2017.0,2017.0,1958.0,PRIVATE,1,Etobicoke North,2356 ISLINGTON AVE,3,18,2017-11-23,56,Evaluation needs to be conducted in 1 year,16,3.0,3.0,2.0,3.0,2.0,2.0,,3.0,,,3.0,1.0,5.0,3.0,3.0,3.0,2.0,4.0,3.0,,W0130,43.7189395092,-79.55744108420001,300156.114,4841888.402
-895159,4155439,2017.0,2017.0,1972.0,PRIVATE,1,Etobicoke North,2362 ISLINGTON AVE,3,13,2017-11-23,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,2.0,,4.0,,,3.0,1.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,W0130,43.719305544899996,-79.5575311181,300148.88800000004,4841929.072
-895160,4155181,2017.0,2017.0,1964.0,PRIVATE,5,York South-Weston,787 JANE ST,9,107,2017-11-23,60,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0539,43.6734652134,-79.4937789732,305286.007,4836834.748
-895161,4154941,2017.0,2017.0,1937.0,PRIVATE,12,Toronto-St. Paul's,5 CLAXTON BLVD,3,18,2017-11-23,68,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,3.0,4.0,3.0,,4.0,,4.0,3.0,3.0,5.0,4.0,3.0,2.0,,4.0,3.0,,S1229,43.687110735699996,-79.4206390043,311182.429,4838353.676
-895162,4152954,2017.0,2017.0,1964.0,PRIVATE,4,Parkdale-High Park,200 DUFFERIN ST,14,251,2017-11-23,64,Evaluation needs to be conducted in 1 year,20,4.0,4.0,4.0,3.0,2.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,2.0,3.0,S0437,43.63715205689999,-79.42709144300001,310667.098,4832802.995
-895163,4153774,2017.0,2017.0,1928.0,PRIVATE,12,Toronto-St. Paul's,5 DE SAVERY CRES,3,31,2017-11-23,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1228,43.7028694866,-79.3891072895,313722.196,4840107.363
-895164,4154656,2017.0,2017.0,1951.0,PRIVATE,8,Eglinton-Lawrence,312 DOUGLAS AVE,3,11,2017-11-23,65,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,,,3.0,3.0,5.0,4.0,3.0,3.0,,3.0,3.0,,N0824,43.7238625563,-79.4167257384,311493.898,4842436.978
-895165,4153657,2017.0,2017.0,1990.0,SOCIAL HOUSING,14,Toronto-Danforth,570 COXWELL AVE,3,11,2017-11-23,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,2.0,2.0,3.0,4.0,,S1432,43.679932553,-79.3224960568,319096.268,4837568.387
-895166,4153866,2017.0,2017.0,1941.0,PRIVATE,15,Don Valley West,2 DU MAURIER BLVD,4,28,2017-11-23,74,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,3.0,,N1525,43.7259246541,-79.4020447269,312676.45399999997,4842667.366
-895167,4153864,2017.0,2017.0,1941.0,PRIVATE,15,Don Valley West,3 DU MAURIER BLVD,4,37,2017-11-23,77,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,5.0,,N1525,43.7256008055,-79.4018955473,312688.515,4842631.402
-895168,4154564,2017.0,2017.0,1953.0,PRIVATE,8,Eglinton-Lawrence,30 COVINGTON RD,4,26,2017-11-23,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,3.0,,2.0,3.0,,N0823,43.720608211999995,-79.43290764470001,310190.42100000003,4842074.228999999
-895169,4153169,2017.0,2017.0,1920.0,PRIVATE,11,University-Rosedale,723 BLOOR ST W,4,16,2017-11-23,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1133,43.6633624229,-79.4182682286,311376.156,4835715.537
-895170,4155343,2017.0,2017.0,1969.0,PRIVATE,2,Etobicoke Centre,1 RICHVIEW RD,19,365,2017-11-23,68,Evaluation needs to be conducted in 2 years,19,4.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,4.0,,3.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,3.0,W0230,43.685159605200006,-79.51325334970001,303715.909,4838134.107
-895171,4155342,2017.0,2017.0,1973.0,PRIVATE,2,Etobicoke Centre,25 RICHVIEW RD,15,141,2017-11-23,66,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,W0230,43.6846591865,-79.5139674087,303658.33,4838078.525
-895172,4155341,2017.0,2017.0,1972.0,PRIVATE,2,Etobicoke Centre,39 RICHVIEW RD,20,234,2017-11-23,65,Evaluation needs to be conducted in 1 year,19,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,W0230,43.684216416999995,-79.51523486100001,303556.136,4838029.357
-895173,4154483,2017.0,2017.0,1965.0,PRIVATE,8,Eglinton-Lawrence,120 SHELBORNE AVE,15,187,2017-11-23,67,Evaluation needs to be conducted in 2 years,20,4.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,5.0,3.0,4.0,3.0,3.0,2.0,2.0,4.0,N0827,43.7162590007,-79.4298519795,310437.032,4841591.256
-895174,4154105,2017.0,2017.0,1955.0,PRIVATE,14,Toronto-Danforth,280 SAMMON AVE,4,34,2017-11-23,55,Evaluation needs to be conducted in 1 year,16,1.0,2.0,3.0,1.0,2.0,2.0,,3.0,,3.0,2.0,3.0,3.0,4.0,4.0,4.0,,4.0,3.0,,S1426,43.686640553000004,-79.3370117361,317924.456,4838311.197
-895175,4154563,2017.0,2017.0,1953.0,PRIVATE,8,Eglinton-Lawrence,6 SARANAC BLVD,4,26,2017-11-23,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,,4.0,4.0,3.0,5.0,3.0,3.0,3.0,,2.0,2.0,,N0823,43.7209195951,-79.432960657,310186.122,4842108.819
-895176,4152557,2017.0,2017.0,1932.0,PRIVATE,20,Scarborough Southwest,2402 QUEEN ST E,4,21,2017-11-23,72,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,4.0,5.0,3.0,,4.0,,3.0,4.0,4.0,5.0,3.0,3.0,4.0,3.0,3.0,3.0,,E2033,43.674568931,-79.279856653,322540.37100000004,4836989.545
-895177,4153660,2017.0,2017.0,1930.0,PRIVATE,14,Toronto-Danforth,5 DONLANDS AVE,4,24,2017-11-23,64,Evaluation needs to be conducted in 1 year,15,2.0,3.0,3.0,3.0,,3.0,,4.0,,,2.0,2.0,5.0,3.0,3.0,4.0,3.0,3.0,5.0,,S1427,43.6807286698,-79.3371951618,317910.956,4837654.388
-895178,4154621,2017.0,2017.0,1965.0,PRIVATE,6,York Centre,25 CEDARCROFT BLVD,13,132,2017-11-23,63,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,4.0,,3.0,3.0,3.0,4.0,3.0,3.0,5.0,3.0,3.0,3.0,N0622,43.7831736555,-79.4474072647,309017.799,4849024.107
-895179,4153865,2017.0,2017.0,1941.0,PRIVATE,15,Don Valley West,5 DU MAURIER BLVD,4,41,2017-11-23,75,Evaluation needs to be conducted in 2 years,19,4.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N1525,43.725849397,-79.401345968,312732.762,4842659.072
-895180,4153839,2017.0,2017.0,1970.0,PRIVATE,15,Don Valley West,136 BROADWAY AVE,6,39,2017-11-23,72,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,4.0,4.0,3.0,,3.0,4.0,4.0,3.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,,N1526,43.711262956999995,-79.3919924,313488.184,4841040.517
-895181,4154954,2017.0,2017.0,1933.0,PRIVATE,12,Toronto-St. Paul's,1510 BATHURST ST,4,24,2017-11-23,65,Evaluation needs to be conducted in 1 year,16,2.0,3.0,3.0,3.0,3.0,3.0,,3.0,,4.0,3.0,3.0,5.0,3.0,3.0,4.0,,3.0,4.0,,S1229,43.6845459232,-79.4192018121,311298.563,4838068.827
-895182,4155003,2017.0,2017.0,1949.0,PRIVATE,12,Toronto-St. Paul's,1996 BATHURST ST,4,39,2017-11-23,53,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,2.0,2.0,2.0,,3.0,,2.0,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,2.0,,S1224,43.6991289014,-79.425200068,310813.582,4839688.522
-895183,4154627,2017.0,2017.0,1964.0,PRIVATE,6,York Centre,6000 BATHURST ST,12,108,2017-11-23,57,Evaluation needs to be conducted in 1 year,20,4.0,3.0,2.0,2.0,3.0,4.0,3.0,2.0,4.0,3.0,2.0,3.0,2.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,N0622,43.785344988599995,-79.4468063117,309066.026,4849265.373
-895184,4153776,2017.0,2017.0,1958.0,PRIVATE,15,Don Valley West,1674 BAYVIEW AVE,3,29,2017-11-23,59,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,,3.0,,3.0,,,3.0,2.0,4.0,3.0,3.0,3.0,,3.0,2.0,,N1530,43.7079509071,-79.37638866340001,314746.433,4840673.313
-895185,4153359,2017.0,2017.0,1928.0,PRIVATE,12,Toronto-St. Paul's,7 EDMUND AVE,6,68,2017-11-22,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1237,43.682032461000006,-79.400826171,312780.15,4837792.134
-895186,4152582,2017.0,2017.0,1960.0,PRIVATE,20,Scarborough Southwest,4 FOLCROFT AVE,3,13,2017-11-22,56,Evaluation needs to be conducted in 1 year,16,2.0,3.0,2.0,2.0,2.0,3.0,,3.0,,2.0,3.0,2.0,5.0,4.0,3.0,3.0,,3.0,3.0,,E2035,43.701030915,-79.25119809,324814.217,4839929.968
-895187,4153458,2017.0,2017.0,2011.0,SOCIAL HOUSING,11,University-Rosedale,110 EDWARD ST,5,50,2017-11-22,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,S1145,43.6565407621,-79.38614584359999,313967.909,4834960.727
-895188,4153738,2017.0,2017.0,1957.0,PRIVATE,11,University-Rosedale,5 ELM AVE,4,66,2017-11-22,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,3.0,3.0,3.0,5.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,3.0,,S1131,43.67440774600001,-79.379741579,314510.0,4836920.0
-895189,4155959,2017.0,2017.0,1957.0,PRIVATE,11,University-Rosedale,11 ELM AVE,4,59,2017-11-22,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,3.0,3.0,3.0,5.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,3.0,,S1131,43.6743478702,-79.3793263645,314515.075,4836939.77
-895190,4155510,2017.0,2017.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,2667 LAKE SHORE BLVD W,4,17,2017-11-22,67,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,3.0,,4.0,,4.0,,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,W0335,43.602838275,-79.4944408976,305233.099,4828988.518999999
-895191,4152583,2017.0,2017.0,1954.0,PRIVATE,20,Scarborough Southwest,62 GLEN EVEREST RD,4,46,2017-11-22,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,2.0,2.0,4.0,2.0,,4.0,,,3.0,3.0,5.0,3.0,4.0,3.0,3.0,4.0,3.0,,E2035,43.702519583000004,-79.253065845,324686.511,4840092.937
-895192,4155802,2017.0,2017.0,1956.0,PRIVATE,20,Scarborough Southwest,14 ENGELHART CRES,3,47,2017-11-22,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,3.0,2.0,,2.0,,3.0,3.0,2.0,5.0,4.0,3.0,3.0,,4.0,3.0,,E2021,43.7220330061,-79.30046916970001,320861.043,4842249.596
-895193,4152618,2017.0,2017.0,1956.0,PRIVATE,20,Scarborough Southwest,19 ENGELHART CRES,3,11,2017-11-22,68,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,3.0,2.0,,3.0,,3.0,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,3.0,,E2021,43.722183084099996,-79.2995646388,320933.87899999996,4842266.448
-895194,4152619,2017.0,2017.0,1956.0,PRIVATE,20,Scarborough Southwest,23 ENGELHART CRES,3,11,2017-11-22,68,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,3.0,2.0,,3.0,,3.0,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,3.0,,E2021,43.722388403800004,-79.2991027155,320971.04,4842289.348
-895195,4154851,2017.0,2017.0,1982.0,PRIVATE,16,Don Valley East,1770 EGLINTON AVE E,7,92,2017-11-22,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,N1628,43.725414029,-79.305833904,320427.646,4842625.1680000005
-895196,4154852,2017.0,2017.0,1982.0,PRIVATE,16,Don Valley East,1780 EGLINTON AVE E,9,203,2017-11-22,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,N1628,43.725379191,-79.304998826,320494.935,4842621.455
-895197,4154853,2017.0,2017.0,1982.0,PRIVATE,16,Don Valley East,1790 EGLINTON AVE E,9,117,2017-11-22,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,N1628,43.726050381,-79.304738793,320629.54600000003,4842567.701
-895198,4154246,2017.0,2017.0,1972.0,PRIVATE,7,Humber River-Black Creek,2405 FINCH AVE W,27,258,2017-11-22,69,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,3.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,,W0727,43.750621288999994,-79.544032103,301238.257,4845408.296
-895199,4154884,2017.0,2017.0,1961.0,PRIVATE,16,Don Valley East,1441 LAWRENCE AVE E,14,251,2017-11-22,65,Evaluation needs to be conducted in 1 year,19,4.0,3.0,4.0,3.0,3.0,4.0,3.0,4.0,4.0,,3.0,4.0,2.0,3.0,2.0,3.0,3.0,3.0,4.0,3.0,N1628,43.741069981,-79.31303466,319843.605,4844363.092
-895200,4155398,2017.0,2017.0,1974.0,PRIVATE,2,Etobicoke Centre,340 MILL RD,19,225,2017-11-22,66,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,,4.0,3.0,4.0,3.0,3.0,3.0,5.0,2.0,3.0,3.0,W0231,43.6398689295,-79.5856147179,297876.852,4833105.909
-895201,4155511,2017.0,2017.0,1953.0,PRIVATE,3,Etobicoke-Lakeshore,2663 LAKE SHORE BLVD W,8,111,2017-11-22,69,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,3.0,4.0,,4.0,4.0,3.0,3.0,3.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,,W0335,43.602984534399994,-79.4939230131,305274.904,4829004.768999999
-895202,4152779,2017.0,2017.0,1968.0,PRIVATE,20,Scarborough Southwest,3207 KINGSTON RD,5,53,2017-11-22,70,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,,4.0,3.0,5.0,2.0,4.0,4.0,4.0,3.0,4.0,,E2037,43.7293849818,-79.2268912004,326786.54,4843083.157
-895203,4155008,2017.0,2017.0,1968.0,PRIVATE,9,Davenport,161 OAKWOOD AVE,19,151,2017-11-22,70,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,,3.0,3.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,,S0925,43.680342384,-79.43554842399999,309967.474,4837608.076
-895204,4154768,2017.0,2017.0,1969.0,PRIVATE,16,Don Valley East,10 GRENOBLE DR,17,284,2017-11-22,73,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,4.0,N1630,43.716421355,-79.334404294,318127.81,4841621.149
-895205,4155392,2017.0,2017.0,1964.0,PRIVATE,2,Etobicoke Centre,2 TRIBURNHAM PL,10,137,2017-11-22,72,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,,4.0,2.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,4.0,W0233,43.6425908284,-79.5784906979,298451.914,4833407.718
-895206,4155155,2017.0,2017.0,1960.0,PRIVATE,5,York South-Weston,2275 WESTON RD,3,61,2017-11-22,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,4.0,3.0,3.0,,3.0,,,4.0,3.0,4.0,3.0,3.0,4.0,,3.0,2.0,,W0524,43.7050925163,-79.5282487597,302507.78,4840348.881
-895207,4155120,2017.0,2017.0,1958.0,PRIVATE,5,York South-Weston,1197 WESTON RD,3,15,2017-11-22,72,Evaluation needs to be conducted in 2 years,15,4.0,4.0,3.0,3.0,3.0,3.0,,3.0,,,4.0,3.0,5.0,4.0,3.0,4.0,,4.0,4.0,,W0531,43.687965464799994,-79.4913964686,305478.007,4838445.673
-895208,4154317,2017.0,2017.0,1955.0,PRIVATE,5,York South-Weston,2641 KEELE ST,3,21,2017-11-22,55,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,2.0,2.0,3.0,,3.0,,,3.0,3.0,4.0,3.0,2.0,2.0,,3.0,3.0,,W0523,43.7212489547,-79.4801097422,306387.12,4842143.426
-895209,4154318,2017.0,2017.0,1955.0,PRIVATE,5,York South-Weston,2643 KEELE ST,3,21,2017-11-22,53,Evaluation needs to be conducted in 1 year,15,2.0,2.0,3.0,2.0,2.0,3.0,,3.0,,,2.0,3.0,4.0,3.0,3.0,2.0,,3.0,3.0,,W0523,43.7214377467,-79.4800527755,306391.705,4842164.401000001
-895210,4152621,2017.0,2017.0,1956.0,PRIVATE,20,Scarborough Southwest,64 HARRIS PARK DR,3,11,2017-11-22,65,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,3.0,2.0,,3.0,,3.0,3.0,3.0,5.0,3.0,4.0,4.0,,3.0,3.0,,E2021,43.7221951584,-79.2984586067,321022.98699999996,4842268.005
-895211,4152620,2017.0,2017.0,1956.0,PRIVATE,20,Scarborough Southwest,68 HARRIS PARK DR,3,11,2017-11-22,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,3.0,1.0,,3.0,,3.0,3.0,3.0,5.0,3.0,4.0,4.0,,3.0,3.0,,E2021,43.722488216,-79.2987114556,321002.536,4842300.513
-895212,4153179,2017.0,2017.0,1971.0,PRIVATE,11,University-Rosedale,34 WALMER RD,10,61,2017-11-22,65,Evaluation needs to be conducted in 1 year,20,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,4.0,S1126,43.668157441000005,-79.406612526,312315.279,4836250.126
-895213,4154854,2017.0,2017.0,1982.0,PRIVATE,16,Don Valley East,1530 VICTORIA PARK AVE,9,141,2017-11-22,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,N1628,,,320579.715,4842629.108
-895214,4153175,2017.0,2017.0,1955.0,PRIVATE,11,University-Rosedale,27 WALMER RD,4,38,2017-11-22,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,4.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1126,43.6681530791,-79.4056958125,312389.468,4836248.77
-895215,4155382,2017.0,2017.0,1962.0,PRIVATE,2,Etobicoke Centre,311 THE WEST MALL,7,109,2017-11-22,58,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,2.0,3.0,4.0,2.0,3.0,4.0,,2.0,3.0,3.0,2.0,3.0,3.0,3.0,2.0,3.0,,W0233,43.6365103403,-79.562181408,299767.179,4832731.073
-895216,4154248,2017.0,2017.0,1972.0,PRIVATE,7,Humber River-Black Creek,3400 WESTON RD,27,263,2017-11-22,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,4.0,,3.0,3.0,3.0,4.0,3.0,3.0,4.0,2.0,3.0,,W0727,43.749810628999995,-79.543432658,301286.482,4845318.212
-895217,4155450,2017.0,2017.0,1976.0,PRIVATE,1,Etobicoke North,50 PANORAMA CRT,19,223,2017-11-22,69,Evaluation needs to be conducted in 2 years,18,4.0,2.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,,4.0,4.0,5.0,3.0,2.0,3.0,4.0,4.0,3.0,,W0124,43.748167936099996,-79.577118319,298573.714,4845136.771000001
-895218,4153948,2017.0,2017.0,1963.0,PRIVATE,8,Eglinton-Lawrence,625 ROSELAWN AVE,9,91,2017-11-22,65,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,N0833,43.705666038000004,-79.422923285,310996.166,4840415.915
-895219,4153375,2017.0,2017.0,1959.0,PRIVATE,12,Toronto-St. Paul's,268 POPLAR PLAINS RD,10,59,2017-11-22,69,Evaluation needs to be conducted in 2 years,16,4.0,3.0,3.0,4.0,3.0,3.0,,4.0,4.0,,4.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1237,43.6856691737,-79.4040338654,312521.347,4838194.933
-895220,4154841,2017.0,2017.0,1967.0,PRIVATE,17,Don Valley North,10 RUDDINGTON DR,13,155,2017-11-22,65,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,2.0,3.0,N1721,43.788810185200006,-79.3913448594,313529.412,4849654.673
-895221,4156564,2017.0,2017.0,1968.0,PRIVATE,17,Don Valley North,11 RUDDINGTON DR,13,155,2017-11-22,68,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,N1721,43.7877925781,-79.3916951012,313501.368,4849541.583000001
-895222,4152585,2017.0,2017.0,1960.0,PRIVATE,20,Scarborough Southwest,20 PELL ST,3,11,2017-11-22,53,Evaluation needs to be conducted in 1 year,16,2.0,2.0,4.0,2.0,2.0,3.0,,3.0,,2.0,1.0,3.0,4.0,3.0,2.0,3.0,,3.0,3.0,,E2035,43.70777445,-79.248713747,325033.789,4840699.303
-895223,4155859,2017.0,2017.0,1960.0,PRIVATE,13,Toronto Centre,433 JARVIS ST,9,144,2017-11-22,62,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,2.0,3.0,,4.0,3.0,,3.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1326,43.663909713500004,-79.3766153717,314735.394,4835780.455
-895224,4153475,2017.0,2017.0,1960.0,PRIVATE,13,Toronto Centre,437 JARVIS ST,7,76,2017-11-22,66,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,3.0,4.0,3.0,,2.0,4.0,,3.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1326,43.6640870859,-79.3767455486,314724.86699999997,4835800.143999999
-895225,4155830,2017.0,2017.0,1964.0,PRIVATE,15,Don Valley West,26 CARLUKE CRES,14,157,2017-11-22,67,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,4.0,3.0,3.0,4.0,3.0,,3.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,,N1521,43.761243138000005,-79.3906391551,313656.45,4846571.551
-895226,4155670,2017.0,2017.0,1964.0,PRIVATE,15,Don Valley West,32 CARLUKE CRES,7,103,2017-11-22,63,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,3.0,3.0,3.0,2.0,4.0,4.0,1.0,3.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,,N1521,43.761178869700004,-79.3897561854,313693.98699999996,4846559.64
-895227,4153365,2017.0,2017.0,1929.0,PRIVATE,12,Toronto-St. Paul's,1 CLARENDON AVE,6,42,2017-11-22,68,Evaluation needs to be conducted in 2 years,18,5.0,4.0,3.0,3.0,2.0,4.0,,3.0,3.0,3.0,3.0,3.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,,S1237,43.6830691482,-79.4004020414,312814.476,4837906.401000001
-895228,4245676,2017.0,2017.0,1967.0,PRIVATE,12,Toronto-St. Paul's,321 CHAPLIN CRES,8,74,2017-11-22,71,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,4.0,,3.0,3.0,5.0,3.0,4.0,4.0,4.0,3.0,4.0,,S1226,43.702357515200006,-79.4173230681,311448.141,4840047.833000001
-895229,4155875,2017.0,2017.0,1967.0,PRIVATE,2,Etobicoke Centre,5 CAPRI RD,25,329,2017-11-22,58,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,2.0,4.0,2.0,3.0,3.0,2.0,3.0,3.0,,W0232,43.651709561000004,-79.564536328,299578.285,4834420.709
-895230,4156249,2017.0,2017.0,1960.0,PRIVATE,20,Scarborough Southwest,22 PELL ST,3,10,2017-11-22,51,Evaluation needs to be conducted in 1 year,16,2.0,2.0,4.0,2.0,2.0,3.0,,3.0,,1.0,1.0,3.0,4.0,3.0,3.0,2.0,,3.0,3.0,,E2035,43.707978053999994,-79.248780872,325050.664,4840714.735
-895231,4156048,2017.0,2017.0,1960.0,PRIVATE,20,Scarborough Southwest,24 PELL ST,3,11,2017-11-22,51,Evaluation needs to be conducted in 1 year,16,2.0,2.0,3.0,2.0,2.0,3.0,,3.0,,2.0,2.0,2.0,4.0,2.0,3.0,3.0,,3.0,3.0,,E2035,43.708100911,-79.248499263,325056.88300000003,4840728.7469999995
-895232,4155402,2017.0,2017.0,1970.0,PRIVATE,2,Etobicoke Centre,1 RABBIT LANE,7,33,2017-11-22,60,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,2.0,,W0226,43.658401374899995,-79.5675840655,299333.331,4835163.3889999995
-895233,4153109,2017.0,2017.0,1955.0,PRIVATE,9,Davenport,2 REGAL RD,8,104,2017-11-22,66,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,2.0,,S0928,43.675634371899996,-79.4334082604,310153.942,4837077.778
-895234,4155763,2017.0,2017.0,1966.0,PRIVATE,3,Etobicoke-Lakeshore,8 SAND BEACH RD,3,24,2017-11-22,66,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,4.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,4.0,,4.0,3.0,,W0335,43.6017504793,-79.4973496244,304998.293,4828867.665
-895235,4156740,2017.0,2017.0,1967.0,PRIVATE,16,Don Valley East,10 ST DENNIS DR,9,325,2017-11-22,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,4.0,2.0,2.0,3.0,,3.0,4.0,5.0,3.0,2.0,3.0,4.0,4.0,3.0,,N1630,43.7172141544,-79.3360536407,317994.98600000003,4841707.994
-895236,4155023,2017.0,2017.0,1954.0,PRIVATE,12,Toronto-St. Paul's,1 A BANSLEY AVE,4,19,2017-11-22,65,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,,,4.0,3.0,5.0,3.0,4.0,4.0,,3.0,3.0,,S1222,43.69288038569999,-79.44204325390001,309456.402,4838993.219
-895237,4154858,2017.0,2017.0,1962.0,PRIVATE,16,Don Valley East,85 BARTLEY DR,4,15,2017-11-22,73,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,3.0,3.0,,4.0,,3.0,4.0,3.0,5.0,4.0,4.0,3.0,3.0,4.0,3.0,,N1631,43.722088465,-79.306514169,320373.70399999997,4842255.579
-895238,4153356,2017.0,2017.0,1965.0,PRIVATE,12,Toronto-St. Paul's,425 AVENUE RD,8,47,2017-11-22,73,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,3.0,3.0,3.0,,3.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,,S1238,43.683390655,-79.3997224813,312869.224,4837942.185
-895239,4152801,2017.0,2017.0,1961.0,PRIVATE,24,Scarborough-Guildwood,5 CEDAR DR,10,86,2017-11-22,51,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,2.0,2.0,3.0,2.0,2.0,2.0,2.0,2.0,3.0,2.0,2.0,3.0,2.0,3.0,3.0,3.0,,E2433,43.744527226,-79.2154577667,327701.9,4844768.433999999
-895240,4156611,2017.0,2017.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,2844 BLOOR ST W,3,14,2017-11-22,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,4.0,3.0,4.0,4.0,,3.0,3.0,,W0322,43.649347734399996,-79.503797178,,
-895241,4155669,2017.0,2017.0,1964.0,PRIVATE,15,Don Valley West,38 CARLUKE CRES,7,104,2017-11-22,63,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,N1521,43.76099861,-79.38848465699999,313757.7,4846553.563
-895242,4154081,2017.0,2017.0,1968.0,PRIVATE,19,Beaches-East York,1501 WOODBINE AVE,20,304,2017-11-22,72,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,,4.0,4.0,4.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,S1926,43.6999168963,-79.3180366606,319450.968,4839789.37
-895243,4153742,2017.0,2017.0,1986.0,PRIVATE,11,University-Rosedale,22 WOODLAWN AVE E,5,25,2017-11-22,71,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,3.0,3.0,3.0,,3.0,4.0,,4.0,4.0,5.0,3.0,4.0,4.0,,3.0,3.0,,S1121,43.6845417395,-79.3910501219,313568.256,4838070.946
-895244,4155370,2017.0,2017.0,1968.0,PRIVATE,1,Etobicoke North,290 DIXON RD,6,49,2017-11-22,68,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,4.0,3.0,3.0,,4.0,3.0,,3.0,4.0,5.0,4.0,3.0,4.0,3.0,3.0,3.0,,W0134,43.696913551,-79.549832217,300767.413,4839442.033
-895245,4154606,2017.0,2017.0,1950.0,PRIVATE,6,York Centre,4234 BATHURST ST,3,13,2017-11-22,58,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,,,2.0,2.0,4.0,3.0,3.0,3.0,2.0,4.0,3.0,,N0629,43.7500704294,-79.4375522258,309813.766,4845347.018
-895246,4154605,2017.0,2017.0,1956.0,PRIVATE,6,York Centre,4238 BATHURST ST,3,13,2017-11-22,54,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,2.0,,3.0,3.0,3.0,5.0,2.0,2.0,2.0,2.0,2.0,2.0,,N0629,43.7503482219,-79.4375870637,309810.938,4845377.877
-895247,4155315,2017.0,2017.0,1960.0,PRIVATE,2,Etobicoke Centre,8 ANGLESEY BLVD,4,23,2017-11-22,54,Evaluation needs to be conducted in 1 year,16,2.0,3.0,2.0,3.0,3.0,2.0,,3.0,,,3.0,2.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,,W0229,43.665842728,-79.5207230628,303113.062,4835988.223
-895248,4153355,2017.0,2017.0,1956.0,PRIVATE,12,Toronto-St. Paul's,291 AVENUE RD,8,96,2017-11-22,64,Evaluation needs to be conducted in 1 year,19,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,S1238,43.679355025,-79.398110045,312999.49199999997,4837494.932
-895249,4245700,2017.0,2017.0,1930.0,PRIVATE,12,Toronto-St. Paul's,26 BALMORAL AVE,3,28,2017-11-22,60,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,2.0,3.0,,3.0,3.0,,S1238,43.6859334323,-79.3944337437,313295.262,4838225.204
-895250,4152674,2017.0,2017.0,1963.0,PRIVATE,20,Scarborough Southwest,739 BIRCHMOUNT RD,9,124,2017-11-22,62,Evaluation needs to be conducted in 1 year,18,3.0,4.0,3.0,3.0,3.0,3.0,3.0,2.0,2.0,,3.0,3.0,5.0,4.0,2.0,2.0,4.0,4.0,3.0,,E2023,43.724969646000005,-79.2748142214,322927.156,4842581.071
-895251,4155011,2017.0,2017.0,1960.0,PRIVATE,12,Toronto-St. Paul's,450 WINONA DR,6,124,2017-11-22,65,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,3.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,,S1222,43.6888376633,-79.435821172,309958.31899999996,4838544.46
-895252,4153116,2017.0,2017.0,1951.0,PRIVATE,9,Davenport,1095 ST CLAIR AVE W,3,11,2017-11-22,56,Evaluation needs to be conducted in 1 year,15,2.0,3.0,3.0,2.0,,3.0,,4.0,,,2.0,3.0,4.0,2.0,3.0,3.0,3.0,2.0,3.0,,S0928,43.678255875,-79.4404625992,309584.915,4837368.586
-895253,4154002,2017.0,2017.0,1940.0,PRIVATE,12,Toronto-St. Paul's,166 EASTBOURNE AVE,3,21,2017-11-21,63,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1227,43.7051010779,-79.40500513229999,312440.564,4840353.701
-895254,4152725,2017.0,2017.0,1974.0,PRIVATE,21,Scarborough Centre,41 ANTRIM CRES,14,192,2017-11-21,81,Evaluation needs to be conducted in 2 years,19,5.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,5.0,,4.0,3.0,5.0,4.0,3.0,3.0,3.0,5.0,3.0,5.0,E2123,43.771912238999995,-79.287922032,321852.127,4847784.8889999995
-895255,4153453,2017.0,2017.0,1939.0,PRIVATE,13,Toronto Centre,368 GEORGE ST,3,16,2017-11-21,57,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,2.0,3.0,,3.0,,,3.0,3.0,4.0,3.0,2.0,3.0,,3.0,2.0,,S1328,43.659740893,-79.374693208,314890.854,4835318.504
-895256,4155770,2017.0,2017.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,2313 LAKE SHORE BLVD W,10,133,2017-11-21,71,Evaluation needs to be conducted in 2 years,20,4.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,4.0,4.0,3.0,4.0,5.0,3.0,4.0,3.0,3.0,4.0,3.0,4.0,W0336,43.617341413000005,-79.486574349,305830.93100000004,4830610.135
-895257,4155769,2017.0,2017.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,2323 LAKE SHORE BLVD W,10,133,2017-11-21,74,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,5.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,W0336,43.6169356849,-79.48667587050001,305824.401,4830594.748
-895258,4155771,2017.0,2017.0,1958.0,PRIVATE,3,Etobicoke-Lakeshore,2495 LAKE SHORE BLVD W,3,45,2017-11-21,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,2.0,3.0,3.0,5.0,4.0,3.0,3.0,,3.0,3.0,,W0336,43.612342428199995,-79.4891538112,305659.804,4830044.4180000005
-895259,4153832,2017.0,2017.0,1947.0,PRIVATE,15,Don Valley West,109 ERSKINE AVE,4,34,2017-11-21,71,Evaluation needs to be conducted in 2 years,17,4.0,3.0,3.0,4.0,4.0,3.0,,3.0,4.0,,3.0,3.0,5.0,3.0,3.0,4.0,3.0,4.0,4.0,,N1526,43.711639,-79.394802088,313261.703,4841082.0030000005
-895260,4153844,2017.0,2017.0,1961.0,PRIVATE,15,Don Valley West,200 ERSKINE AVE,4,15,2017-11-21,70,Evaluation needs to be conducted in 2 years,16,4.0,3.0,3.0,4.0,3.0,3.0,,3.0,,,3.0,4.0,5.0,3.0,4.0,3.0,4.0,3.0,4.0,,N1526,43.713073423000004,-79.3909507962,313572.11699999997,4841240.81
-895261,4265577,2017.0,2017.0,2012.0,SOCIAL HOUSING,13,Toronto Centre,425 DUNDAS ST E,5,32,2017-11-21,78,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,3.0,,S1329,43.65908018,-79.366823235,315526.799,4835242.136
-895262,4153828,2017.0,2017.0,1970.0,PRIVATE,15,Don Valley West,15 ERSKINE AVE,16,65,2017-11-21,77,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N1526,43.71093654,-79.39847124100001,312966.113,4841003.597
-895263,4153749,2017.0,2017.0,1934.0,PRIVATE,12,Toronto-St. Paul's,2 GLEN ELM AVE,6,49,2017-11-21,65,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,3.0,2.0,5.0,3.0,4.0,4.0,,3.0,3.0,,S1233,43.69150698520001,-79.3947793757,313266.618,4838844.38
-895264,4153748,2017.0,2017.0,1960.0,PRIVATE,12,Toronto-St. Paul's,42 GLEN ELM AVE,3,39,2017-11-21,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,,3.0,,3.0,4.0,,3.0,3.0,5.0,3.0,3.0,2.0,3.0,3.0,3.0,,S1233,43.691967364300005,-79.3928327445,313423.481,4838895.74
-895265,4153747,2017.0,2017.0,1954.0,PRIVATE,12,Toronto-St. Paul's,49 GLEN ELM AVE,4,71,2017-11-21,62,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,2.0,3.0,3.0,,S1233,43.691400980299996,-79.3925441035,313446.82899999997,4838832.843
-895266,4155065,2017.0,2017.0,1959.0,PRIVATE,9,Davenport,2005 EGLINTON AVE W,5,78,2017-11-21,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,4.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S0922,43.6942406166,-79.45498736520001,308412.88800000004,4839143.706
-895267,4250602,2017.0,2017.0,1938.0,PRIVATE,12,Toronto-St. Paul's,26 TICHESTER RD,4,32,2017-11-21,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,2.0,5.0,3.0,3.0,4.0,,3.0,3.0,,S1230,43.685882131999996,-79.418348616,311366.946,4838218.303
-895268,4153925,2017.0,2017.0,1934.0,PRIVATE,12,Toronto-St. Paul's,101 LAWTON BLVD,5,46,2017-11-21,68,Evaluation needs to be conducted in 2 years,16,4.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,4.0,3.0,5.0,3.0,4.0,4.0,,3.0,3.0,,S1232,43.693704796000006,-79.3967468,313107.717,4839088.374
-895269,4154231,2017.0,2017.0,1970.0,PRIVATE,7,Humber River-Black Creek,2940 JANE ST,13,153,2017-11-21,61,Evaluation needs to be conducted in 1 year,18,3.0,2.0,4.0,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,3.0,4.0,4.0,2.0,3.0,4.0,3.0,3.0,,W0729,43.753728376000005,-79.51778801020001,303352.137,4845751.71
-895270,4154233,2017.0,2017.0,1970.0,PRIVATE,7,Humber River-Black Creek,2970 JANE ST,14,164,2017-11-21,57,Evaluation needs to be conducted in 1 year,18,3.0,2.0,3.0,2.0,3.0,3.0,2.0,2.0,3.0,,2.0,2.0,3.0,4.0,3.0,3.0,4.0,4.0,3.0,,W0729,43.7553825332,-79.5178201808,303349.587,4845935.472
-895271,4155170,2017.0,2017.0,1961.0,PRIVATE,5,York South-Weston,2220 WESTON RD,6,93,2017-11-21,75,Evaluation needs to be conducted in 2 years,17,4.0,3.0,3.0,3.0,4.0,4.0,,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,3.0,3.0,4.0,4.0,,W0524,43.7035934796,-79.5272812231,302585.697,4840182.329
-895272,4154668,2017.0,2017.0,1960.0,PRIVATE,8,Eglinton-Lawrence,205 WILSON AVE,3,20,2017-11-21,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,N0824,43.738889013599994,-79.4250339237,310822.99600000004,4844105.651000001
-895273,4153905,2017.0,2017.0,1962.0,PRIVATE,12,Toronto-St. Paul's,30 THELMA AVE,3,32,2017-11-21,61,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1231,43.689996633,-79.41150263600001,311918.458,4838676.016
-895274,4154667,2017.0,2017.0,1960.0,PRIVATE,8,Eglinton-Lawrence,211 WILSON AVE,3,26,2017-11-21,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0824,43.7387605679,-79.4255772221,310779.249,4844091.347
-895275,4153939,2017.0,2017.0,1955.0,PRIVATE,12,Toronto-St. Paul's,50 OXTON AVE,3,32,2017-11-21,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,2.0,3.0,3.0,3.0,,3.0,3.0,3.0,4.0,4.0,5.0,3.0,3.0,4.0,4.0,3.0,2.0,,S1226,43.697686003,-79.4052912228,312418.44800000003,4839529.862
-895276,4152588,2017.0,2017.0,1967.0,PRIVATE,20,Scarborough Southwest,2550 KINGSTON RD,17,201,2017-11-21,73,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,4.0,3.0,2.0,4.0,4.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,E2032,43.7123137855,-79.2481266679,325081.524,4841181.254
-895277,4152587,2017.0,2017.0,1967.0,PRIVATE,20,Scarborough Southwest,2560 KINGSTON RD,17,201,2017-11-21,72,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,2.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,,E2032,43.712908607799996,-79.2474811669,325133.34,4841247.493
-895278,4152586,2017.0,2017.0,1968.0,PRIVATE,20,Scarborough Southwest,2570 KINGSTON RD,10,118,2017-11-21,69,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,5.0,3.0,3.0,4.0,4.0,4.0,2.0,3.0,E2032,43.713486558999996,-79.2466803233,325197.68,4841311.898
-895279,4155140,2017.0,2017.0,1960.0,PRIVATE,5,York South-Weston,1848 JANE ST,3,21,2017-11-21,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,2.0,3.0,,3.0,,,4.0,2.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,,W0525,43.7079730961,-79.5055309072,304338.744,4840668.422
-895280,4152577,2017.0,2017.0,1959.0,PRIVATE,20,Scarborough Southwest,25 PARKETTE PL,5,61,2017-11-21,60,Evaluation needs to be conducted in 1 year,17,2.0,2.0,4.0,3.0,3.0,3.0,,3.0,3.0,,3.0,2.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,,E2034,43.696074465600006,-79.2646078047,323758.577,4839373.228
-895281,4154228,2017.0,2017.0,1972.0,PRIVATE,7,Humber River-Black Creek,2740 JANE ST,5,52,2017-11-21,69,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,3.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,,W0729,43.744497339700004,-79.51525333939999,303556.067,4844726.13
-895282,4154232,2017.0,2017.0,1960.0,PRIVATE,7,Humber River-Black Creek,2900 JANE ST,14,183,2017-11-21,58,Evaluation needs to be conducted in 1 year,18,3.0,2.0,4.0,2.0,3.0,3.0,2.0,3.0,3.0,,3.0,3.0,4.0,3.0,3.0,2.0,3.0,3.0,3.0,,W0729,43.7531434812,-79.5178280471,303348.899,4845686.734
-895283,4155072,2017.0,2017.0,1960.0,PRIVATE,9,Davenport,480 CALEDONIA RD,4,28,2017-11-21,64,Evaluation needs to be conducted in 1 year,17,4.0,3.0,2.0,3.0,3.0,3.0,,2.0,2.0,,3.0,4.0,5.0,4.0,3.0,3.0,4.0,3.0,3.0,,S0921,43.6895758413,-79.4611447354,307916.766,4838625.219
-895284,4152775,2017.0,2017.0,1961.0,PRIVATE,20,Scarborough Southwest,1 BRIMLEY RD,6,58,2017-11-21,62,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,2.0,,E2026,43.719470638900006,-79.24043204510001,325699.11,4841978.266
-895285,4153150,2017.0,2017.0,1912.0,PRIVATE,11,University-Rosedale,677 COLLEGE ST,3,32,2017-11-21,55,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,2.0,,,3.0,3.0,3.0,2.0,2.0,3.0,,2.0,3.0,,S1141,43.6549416362,-79.4173376182,311452.2,4834780.093
-895286,4153182,2017.0,2017.0,1965.0,PRIVATE,11,University-Rosedale,161 CHRISTIE ST,4,15,2017-11-21,59,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,2.0,3.0,3.0,3.0,3.0,,3.0,3.0,,S1125,43.6677026492,-79.41974947050001,311256.19800000003,4836197.601
-895287,4153874,2017.0,2017.0,1937.0,PRIVATE,12,Toronto-St. Paul's,64 ST CLAIR AVE W,6,97,2017-11-21,62,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,3.0,4.0,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1232,43.6878011506,-79.397437188,313052.88399999996,4838432.402
-895288,4169264,2017.0,2017.0,1926.0,PRIVATE,12,Toronto-St. Paul's,80 ST CLAIR AVE W,4,25,2017-11-21,62,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1232,43.6874952579,-79.3985597973,312962.429,4838398.308999999
-895289,4153889,2017.0,2017.0,1970.0,PRIVATE,12,Toronto-St. Paul's,250 ST CLAIR AVE W,4,45,2017-11-21,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,,3.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,,S1231,43.6857216141,-79.4075167985,312240.538,4838200.444
-895290,4153184,2017.0,2017.0,1929.0,PRIVATE,11,University-Rosedale,42 BARTON AVE,4,24,2017-11-21,65,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,4.0,5.0,3.0,3.0,3.0,,4.0,3.0,,S1125,43.667957114,-79.414124093,311709.549,4836227.241
-895291,4153006,2017.0,2017.0,1970.0,PRIVATE,4,Parkdale-High Park,70 WILSON PARK RD,3,25,2017-11-21,56,Evaluation needs to be conducted in 1 year,15,2.0,3.0,2.0,2.0,2.0,3.0,,3.0,,,2.0,3.0,5.0,3.0,2.0,4.0,,3.0,3.0,,S0436,43.638628857,-79.4424836843,309425.058,4832966.142
-895292,4154758,2017.0,2017.0,1969.0,PRIVATE,16,Don Valley East,55 WYNFORD HEIGHTS CRES,21,344,2017-11-21,75,Evaluation needs to be conducted in 2 years,20,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,5.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,N1629,43.7273105049,-79.3250508572,318879.214,4842831.4860000005
-895293,4153988,2017.0,2017.0,1930.0,PRIVATE,12,Toronto-St. Paul's,2094 YONGE ST,3,10,2017-11-21,58,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,,3.0,2.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,S1227,43.702336489,-79.3977985122,313021.757,4840047.252
-895294,4155026,2017.0,2017.0,1997.0,SOCIAL HOUSING,12,Toronto-St. Paul's,2353 DUFFERIN ST,16,144,2017-11-21,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,S1222,43.6951962434,-79.44961389619999,308845.969,4839250.13
-895295,4154721,2017.0,2017.0,1960.0,PRIVATE,18,Willowdale,6161 BATHURST ST,13,170,2017-11-21,54,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,3.0,2.0,2.0,2.0,3.0,,2.0,2.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,N1821,43.78886620310001,-79.44634919890001,309102.531,4849656.589
-895296,4156355,2017.0,2017.0,1960.0,PRIVATE,1,Etobicoke North,9 BERGAMOT AVE,4,73,2017-11-21,61,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,2.0,2.0,2.0,,3.0,4.0,5.0,3.0,3.0,2.0,4.0,4.0,3.0,,W0130,43.714616652,-79.558696849,300054.31,4841409.213
-895297,4156450,2017.0,2017.0,1960.0,PRIVATE,1,Etobicoke North,11 BERGAMOT AVE,7,130,2017-11-21,60,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,3.0,2.0,3.0,3.0,2.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,W0130,43.714919516,-79.55750237,300150.586,4841442.799
-895298,4156451,2017.0,2017.0,1960.0,PRIVATE,1,Etobicoke North,25 BERGAMOT AVE,4,73,2017-11-21,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,2.0,,,4.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,W0130,43.716209723999995,-79.557077624,300184.917,4841586.092
-895299,4155995,2017.0,2017.0,1960.0,PRIVATE,1,Etobicoke North,27 BERGAMOT AVE,7,130,2017-11-21,66,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,4.0,3.0,3.0,3.0,2.0,3.0,,4.0,3.0,5.0,4.0,3.0,3.0,3.0,4.0,3.0,,W0130,43.715262532,-79.55665061100001,300219.248,4841480.8610000005
-895300,4155419,2017.0,2017.0,1964.0,PRIVATE,1,Etobicoke North,6 AUBURNDALE CRT,7,82,2017-11-21,58,Evaluation needs to be conducted in 1 year,18,3.0,2.0,2.0,3.0,3.0,2.0,3.0,3.0,2.0,,3.0,3.0,5.0,3.0,3.0,3.0,2.0,4.0,3.0,,W0131,43.718223584099995,-79.5547061524,300376.432,4841808.712
-895301,4154673,2017.0,2017.0,1959.0,PRIVATE,8,Eglinton-Lawrence,12 BIDEFORD AVE,4,56,2017-11-21,68,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,3.0,3.0,3.0,,4.0,3.0,,3.0,3.0,5.0,3.0,4.0,3.0,,3.0,3.0,,N0821,43.740420337799996,-79.4237155283,310929.031,4844275.855
-895302,4154672,2017.0,2017.0,1956.0,PRIVATE,8,Eglinton-Lawrence,15 BIDEFORD AVE,6,44,2017-11-21,63,Evaluation needs to be conducted in 1 year,18,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0821,43.740772739899995,-79.42318305239999,310971.882,4844315.041999999
-895303,4152727,2017.0,2017.0,1970.0,PRIVATE,21,Scarborough Centre,1 ANTRIM CRES,12,167,2017-11-21,79,Evaluation needs to be conducted in 2 years,18,5.0,5.0,4.0,4.0,,4.0,4.0,3.0,4.0,,4.0,4.0,5.0,4.0,4.0,3.0,2.0,4.0,3.0,5.0,E2123,43.7706671849,-79.2834762458,322216.1,4847656.036
-895304,4152726,2017.0,2017.0,1971.0,PRIVATE,21,Scarborough Centre,11 ANTRIM CRES,12,167,2017-11-21,79,Evaluation needs to be conducted in 2 years,18,5.0,4.0,4.0,3.0,,4.0,4.0,3.0,4.0,,3.0,3.0,5.0,4.0,4.0,5.0,5.0,4.0,3.0,4.0,E2123,43.7707832946,-79.28436739029999,322144.325,4847668.7469999995
-895305,4152729,2017.0,2017.0,1971.0,PRIVATE,21,Scarborough Centre,20 ANTRIM CRES,13,177,2017-11-21,79,Evaluation needs to be conducted in 2 years,18,5.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,E2123,43.772055504399994,-79.2853142425,322067.73600000003,4847809.886
-895306,4152728,2017.0,2017.0,1972.0,PRIVATE,21,Scarborough Centre,30 ANTRIM CRES,10,135,2017-11-21,87,Evaluation needs to be conducted in 3 years,18,5.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,5.0,,4.0,3.0,5.0,5.0,5.0,5.0,4.0,5.0,4.0,,E2123,43.772318050600006,-79.2859346865,322017.714,4847838.926
-895307,4250271,2017.0,2017.0,1991.0,SOCIAL HOUSING,13,Toronto Centre,431 DUNDAS ST E,4,37,2017-11-21,73,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,,4.0,3.0,4.0,4.0,3.0,4.0,,4.0,3.0,,S1329,43.6590786732,-79.3664727907,315554.24600000004,4835245.0139999995
-895308,4153758,2017.0,2017.0,1968.0,PRIVATE,12,Toronto-St. Paul's,221 BALLIOL ST,17,272,2017-11-20,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,4.0,4.0,3.0,2.0,3.0,,S1233,43.698438896499994,-79.3893834002,313700.592,4839615.097
-895309,4153759,2017.0,2017.0,1968.0,PRIVATE,12,Toronto-St. Paul's,265 BALLIOL ST,26,209,2017-11-20,67,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,4.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,,S1233,43.698777377,-79.387810749,313810.77,4839659.966
-895310,4155850,2017.0,2017.0,2005.0,PRIVATE,6,York Centre,3810 BATHURST ST,6,84,2017-11-20,72,Evaluation needs to be conducted in 2 years,20,4.0,3.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,4.0,N0629,43.738917845,-79.43480398210001,310036.024,4844108.198
-895311,4153928,2017.0,2017.0,1957.0,PRIVATE,12,Toronto-St. Paul's,17 LASCELLES BLVD,17,157,2017-11-20,70,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,,3.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,S1232,43.694972538,-79.3989252395,312931.94,4839229.006
-895312,4153929,2017.0,2017.0,1957.0,PRIVATE,12,Toronto-St. Paul's,19 LASCELLES BLVD,17,157,2017-11-20,68,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,,3.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,S1232,43.6951982921,-79.3979278347,313012.30199999997,4839254.188
-895313,4153930,2017.0,2017.0,1957.0,PRIVATE,12,Toronto-St. Paul's,21 LASCELLES BLVD,17,173,2017-11-20,66,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,S1232,43.6953413778,-79.3971554349,313074.538,4839270.164
-895314,4153931,2017.0,2017.0,1957.0,PRIVATE,12,Toronto-St. Paul's,23 LASCELLES BLVD,18,235,2017-11-20,67,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,S1232,43.695483986899994,-79.3985426023,312962.709,4839285.868
-895315,4153932,2017.0,2017.0,1957.0,PRIVATE,12,Toronto-St. Paul's,25 LASCELLES BLVD,17,235,2017-11-20,70,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,,3.0,4.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,,S1232,43.6959446313,-79.3992906871,312902.346,4839336.972
-895316,4153709,2017.0,2017.0,1974.0,PRIVATE,19,Beaches-East York,50 MAIN ST,5,38,2017-11-20,69,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,4.0,,S1935,43.6802370284,-79.2987777122,321008.536,4837606.565
-895317,4154802,2017.0,2017.0,1970.0,PRIVATE,16,Don Valley East,50 GRAYDON HALL DR,20,304,2017-11-20,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,5.0,4.0,4.0,3.0,3.0,3.0,4.0,,3.0,4.0,4.0,2.0,3.0,3.0,2.0,2.0,3.0,,N1621,43.764613327,-79.345774526,317201.725,4846973.244
-895318,4154805,2017.0,2017.0,1970.0,PRIVATE,16,Don Valley East,100 GRAYDON HALL DR,24,286,2017-11-20,53,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,,2.0,4.0,5.0,2.0,2.0,2.0,2.0,2.0,1.0,,N1621,43.7654302303,-79.3443358391,317317.648,4847063.257
-895319,4154804,2017.0,2017.0,1970.0,PRIVATE,16,Don Valley East,150 GRAYDON HALL DR,25,298,2017-11-20,60,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,4.0,3.0,3.0,3.0,2.0,4.0,,3.0,4.0,3.0,2.0,3.0,3.0,2.0,2.0,4.0,,N1621,43.7656767876,-79.34282796560001,317438.988,4847090.877
-895320,4154504,2017.0,2017.0,1990.0,PRIVATE,8,Eglinton-Lawrence,49 NEPTUNE DR,3,10,2017-11-20,54,Evaluation needs to be conducted in 1 year,17,3.0,2.0,3.0,3.0,2.0,3.0,,3.0,,3.0,3.0,1.0,4.0,3.0,2.0,3.0,2.0,3.0,3.0,,N0823,43.731455829,-79.435410014,309987.593,4843280.143999999
-895321,4152796,2017.0,2017.0,1981.0,SOCIAL HOUSING,20,Scarborough Southwest,110 MASON RD,7,53,2017-11-20,82,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,,5.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2027,43.740952843500004,-79.2252456452,326914.886,4844368.716
-895322,4154030,2017.0,2017.0,1957.0,PRIVATE,8,Eglinton-Lawrence,45 LORINDALE AVE,3,25,2017-11-20,67,Evaluation needs to be conducted in 2 years,14,4.0,3.0,4.0,3.0,,3.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N0825,43.7262422092,-79.403851017,312530.88899999997,4842702.475
-895323,4152805,2017.0,2017.0,1966.0,PRIVATE,24,Scarborough-Guildwood,45 LIVINGSTON RD,16,188,2017-11-20,76,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,,4.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,5.0,E2435,43.7430013291,-79.1969715203,329191.42699999997,4844604.166999999
-895324,4265578,2017.0,2017.0,1940.0,SOCIAL HOUSING,19,Beaches-East York,26 NORWOOD RD,3,12,2017-11-20,64,Evaluation needs to be conducted in 1 year,14,3.0,4.0,3.0,3.0,,3.0,,4.0,,,3.0,3.0,4.0,3.0,3.0,2.0,,3.0,4.0,,S1935,43.6831736405,-79.3030579348,320662.652,4837931.992
-895325,4153991,2017.0,2017.0,1950.0,PRIVATE,12,Toronto-St. Paul's,115 EGLINTON AVE W,3,18,2017-11-20,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,2.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1227,43.705692166300004,-79.402181637,312668.05100000004,4840419.64
-895326,4153990,2017.0,2017.0,1950.0,PRIVATE,12,Toronto-St. Paul's,119 EGLINTON AVE W,3,18,2017-11-20,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1227,43.7056468063,-79.40240284949999,312650.228,4840414.579
-895327,4153993,2017.0,2017.0,1920.0,PRIVATE,12,Toronto-St. Paul's,137 EGLINTON AVE W,3,18,2017-11-20,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,,,3.0,3.0,5.0,3.0,3.0,2.0,,3.0,3.0,,S1227,43.705457738199996,-79.4032997946,312577.96,4840393.4860000005
-895328,4155014,2017.0,2017.0,1952.0,PRIVATE,9,Davenport,345 WESTMOUNT AVE,3,29,2017-11-20,57,Evaluation needs to be conducted in 1 year,15,3.0,2.0,4.0,2.0,2.0,3.0,,3.0,,,3.0,2.0,4.0,3.0,3.0,3.0,,3.0,3.0,,S0925,43.684414026800006,-79.4441626996,309286.131,4838052.524
-895329,4155015,2017.0,2017.0,1952.0,PRIVATE,9,Davenport,355 WESTMOUNT AVE,3,29,2017-11-20,55,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,2.0,2.0,3.0,,2.0,,,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,2.0,,S0925,43.684753041,-79.44430348,309270.037,4838105.654
-895330,4155016,2017.0,2017.0,1952.0,PRIVATE,9,Davenport,365 WESTMOUNT AVE,3,29,2017-11-20,57,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,2.0,3.0,,2.0,,,3.0,2.0,4.0,3.0,3.0,3.0,,3.0,2.0,,S0925,43.6850733378,-79.4444390829,309263.80100000004,4838125.757
-895331,4155019,2017.0,2017.0,1950.0,PRIVATE,9,Davenport,370 WESTMOUNT AVE,3,29,2017-11-20,64,Evaluation needs to be conducted in 1 year,15,3.0,2.0,3.0,2.0,2.0,3.0,,4.0,,,3.0,4.0,5.0,4.0,3.0,3.0,,4.0,3.0,,S0925,43.6852037341,-79.4451995496,309202.478,4838140.205
-895332,4154316,2017.0,2017.0,1953.0,PRIVATE,5,York South-Weston,2639 KEELE ST,3,11,2017-11-20,53,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,2.0,2.0,3.0,,2.0,,3.0,2.0,2.0,5.0,2.0,3.0,3.0,,2.0,2.0,,W0523,43.721008261,-79.48031007510001,306370.985,4842116.682
-895333,4154525,2017.0,2017.0,1952.0,PRIVATE,8,Eglinton-Lawrence,24 HOTSPUR RD,3,10,2017-11-20,56,Evaluation needs to be conducted in 1 year,16,3.0,3.0,2.0,2.0,3.0,3.0,,3.0,,,3.0,2.0,4.0,2.0,3.0,3.0,3.0,3.0,3.0,,N0823,43.733065925,-79.4350942032,309994.88399999996,4843443.039
-895334,4154929,2017.0,2017.0,1960.0,PRIVATE,12,Toronto-St. Paul's,450 WALMER RD,15,171,2017-11-20,69,Evaluation needs to be conducted in 2 years,19,4.0,3.0,3.0,3.0,4.0,2.0,3.0,3.0,3.0,3.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1230,43.686218485,-79.413643322,311746.53,4838255.1110000005
-895335,4252919,2017.0,2017.0,1970.0,PRIVATE,3,Etobicoke-Lakeshore,9 THIRTY THIRD ST,3,34,2017-11-20,83,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,5.0,,4.0,4.0,,W0334,43.5916886979,-79.5307437677,302302.00399999996,4827750.258
-895336,4156288,2017.0,2017.0,1970.0,PRIVATE,3,Etobicoke-Lakeshore,11 THIRTY THIRD ST,3,23,2017-11-20,83,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,5.0,,4.0,4.0,,W0334,43.5918858428,-79.5306544291,302309.225,4827772.157
-895337,4155916,2017.0,2017.0,1970.0,PRIVATE,3,Etobicoke-Lakeshore,15 THIRTY THIRD ST,3,36,2017-11-20,80,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,3.0,4.0,4.0,4.0,,5.0,4.0,,W0334,43.592052746099995,-79.530753761,302301.211,4827790.702
-895338,4153619,2017.0,2017.0,1940.0,PRIVATE,14,Toronto-Danforth,846-850 BROADVIEW AVE,3,24,2017-11-20,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,4.0,3.0,3.0,3.0,,S1424,,,316188.231,4837458.031
-895339,4153616,2017.0,2017.0,1940.0,PRIVATE,14,Toronto-Danforth,849 BROADVIEW AVE,4,32,2017-11-20,67,Evaluation needs to be conducted in 2 years,15,3.0,3.0,2.0,3.0,2.0,3.0,,3.0,,,3.0,2.0,5.0,5.0,4.0,4.0,,3.0,5.0,,S1424,43.6794139167,-79.35783854,316246.839,4837505.327
-895340,4154932,2017.0,2017.0,1975.0,PRIVATE,12,Toronto-St. Paul's,250 HEATH ST W,17,81,2017-11-20,60,Evaluation needs to be conducted in 1 year,20,3.0,3.0,3.0,3.0,3.0,3.0,2.0,2.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,2.0,3.0,S1230,43.6867124421,-79.4141955534,311701.94800000003,4838309.941000001
-895341,4153599,2017.0,2017.0,1964.0,PRIVATE,13,Toronto Centre,99 HOWARD ST,15,239,2017-11-20,61,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,2.0,4.0,3.0,3.0,2.0,,S1323,43.671082603,-79.371532819,315143.797,4836578.915
-895342,4156290,2017.0,2017.0,1969.0,PRIVATE,9,Davenport,357 RUSHOLME RD,16,267,2017-11-20,68,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,4.0,3.0,4.0,3.0,4.0,,S0934,43.660038774200004,-79.4305495251,310375.291,4835342.328
-895343,4153602,2017.0,2017.0,1964.0,PRIVATE,13,Toronto Centre,135 ROSE AVE,15,239,2017-11-20,57,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,2.0,3.0,2.0,3.0,,3.0,3.0,4.0,3.0,3.0,2.0,3.0,3.0,2.0,,S1323,43.670488768999995,-79.371608932,315137.76300000004,4836512.93
-895344,4153600,2017.0,2017.0,1964.0,PRIVATE,13,Toronto Centre,670 PARLIAMENT ST,15,239,2017-11-20,61,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,4.0,,3.0,2.0,,S1323,43.670774446,-79.370931083,315192.373,4836544.757
-895345,4153594,2017.0,2017.0,1967.0,PRIVATE,13,Toronto Centre,700 ONTARIO ST,14,279,2017-11-20,56,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,2.0,3.0,2.0,3.0,3.0,2.0,3.0,3.0,2.0,3.0,3.0,3.0,,3.0,2.0,,S1323,43.6701517144,-79.3735812893,314979.034,4836474.276000001
-895346,4153593,2017.0,2017.0,1967.0,PRIVATE,13,Toronto Centre,730 ONTARIO ST,14,279,2017-11-20,53,Evaluation needs to be conducted in 1 year,18,2.0,3.0,4.0,3.0,2.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,2.0,3.0,2.0,2.0,,3.0,2.0,,S1323,43.6709382453,-79.3739456506,314949.518,4836561.613
-895347,4154584,2017.0,2017.0,1956.0,PRIVATE,6,York Centre,11 ROSSEAU RD,3,11,2017-11-20,51,Evaluation needs to be conducted in 1 year,16,2.0,2.0,3.0,2.0,2.0,3.0,,3.0,,3.0,2.0,2.0,4.0,3.0,3.0,2.0,,2.0,3.0,,N0629,43.7424088558,-79.43656791779999,309893.66,4844495.901000001
-895348,4153528,2017.0,2017.0,1959.0,PRIVATE,13,Toronto Centre,89 ISABELLA ST,13,76,2017-11-20,66,Evaluation needs to be conducted in 2 years,19,2.0,4.0,4.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,,S1322,43.668391403,-79.3806631771,314408.224,4836277.874
-895349,4155206,2017.0,2017.0,1958.0,PRIVATE,4,Parkdale-High Park,596 JANE ST,3,17,2017-11-20,71,Evaluation needs to be conducted in 2 years,15,3.0,4.0,3.0,3.0,3.0,4.0,,4.0,,,3.0,3.0,5.0,3.0,4.0,3.0,,4.0,4.0,,S0421,43.6645208541,-79.4910119688,305509.219,4835841.102
-895350,4153684,2017.0,2017.0,1961.0,PRIVATE,19,Beaches-East York,191 KENILWORTH AVE,4,31,2017-11-20,72,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,4.0,3.0,,4.0,3.0,,3.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,,S1938,43.6721092112,-79.3028387259,320683.239,4836702.795
-895351,4152743,2017.0,2017.0,1962.0,PRIVATE,24,Scarborough-Guildwood,25 GREENBRAE CRCT,6,60,2017-11-20,74,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,,4.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,,E2425,43.7587707758,-79.2323786593,326333.984,4846346.329
-895352,4152744,2017.0,2017.0,1962.0,PRIVATE,24,Scarborough-Guildwood,35 GREENBRAE CRCT,6,70,2017-11-20,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,E2425,43.759036474,-79.231672415,326390.498,4846376.987
-895353,4153185,2017.0,2017.0,1960.0,PRIVATE,11,University-Rosedale,375 BRUNSWICK AVE,9,63,2017-11-20,54,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,3.0,2.0,,3.0,3.0,2.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,,S1126,43.6684734257,-79.4081015431,312195.42600000004,4836284.143999999
-895354,4153147,2017.0,2017.0,1912.0,PRIVATE,10,Spadina-Fort York,255 DOVERCOURT RD,3,16,2017-11-20,56,Evaluation needs to be conducted in 1 year,17,2.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,3.0,3.0,2.0,2.0,3.0,3.0,3.0,,S1021,43.6484324377,-79.42402265850001,310913.609,4834056.383
-895355,4154087,2017.0,2017.0,1960.0,PRIVATE,14,Toronto-Danforth,125 COSBURN AVE,4,30,2017-11-20,74,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,4.0,3.0,3.0,,3.0,,,4.0,3.0,5.0,5.0,4.0,3.0,4.0,4.0,3.0,,S1422,43.6895024674,-79.34701978390001,317117.055,4838627.642
-895356,4154101,2017.0,2017.0,1962.0,PRIVATE,14,Toronto-Danforth,150 COSBURN AVE,12,153,2017-11-20,69,Evaluation needs to be conducted in 2 years,19,3.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,5.0,5.0,3.0,3.0,4.0,4.0,3.0,,S1422,43.6902830528,-79.3461159995,317189.748,4838714.494
-895357,4153223,2017.0,2017.0,1960.0,PRIVATE,11,University-Rosedale,161 ST GEORGE ST,7,62,2017-11-20,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,4.0,,4.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,4.0,2.0,2.0,3.0,,S1127,43.670260332,-79.40054649,312804.196,4836484.301
-895358,4153224,2017.0,2017.0,1956.0,PRIVATE,11,University-Rosedale,169 ST GEORGE ST,9,52,2017-11-20,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,4.0,3.0,3.0,,3.0,4.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,2.0,,S1127,43.670881099999995,-79.400783867,312784.974,4836553.242
-895359,4154211,2017.0,2017.0,1950.0,PRIVATE,7,Humber River-Black Creek,1738 WILSON AVE,3,10,2017-11-20,52,Evaluation needs to be conducted in 1 year,15,2.0,2.0,3.0,3.0,,3.0,,2.0,,,3.0,2.0,4.0,3.0,2.0,2.0,3.0,3.0,2.0,,W0734,43.7200316288,-79.5141632262,303643.321,4842008.141
-895360,4154216,2017.0,2017.0,1973.0,PRIVATE,7,Humber River-Black Creek,1748 WILSON AVE,3,10,2017-11-20,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,,4.0,,2.0,,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0734,43.719712611300004,-79.51558277630001,303528.939,4841972.723
-895361,4154217,2017.0,2017.0,1967.0,PRIVATE,7,Humber River-Black Creek,1750 WILSON AVE,3,10,2017-11-20,61,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,,W0734,43.71964691229999,-79.5158634781,303506.321,4841965.429
-895362,4154208,2017.0,2017.0,1955.0,PRIVATE,7,Humber River-Black Creek,1760 WILSON AVE,4,32,2017-11-20,59,Evaluation needs to be conducted in 1 year,15,3.0,2.0,4.0,3.0,3.0,3.0,,2.0,,,3.0,3.0,5.0,3.0,2.0,3.0,,3.0,2.0,,W0734,43.7194896137,-79.5165478577,303451.17600000004,4841947.966
-895363,4154209,2017.0,2017.0,1954.0,PRIVATE,7,Humber River-Black Creek,1770 WILSON AVE,3,31,2017-11-20,63,Evaluation needs to be conducted in 1 year,15,3.0,2.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0734,43.7193022696,-79.5173252308,303388.542,4841927.165
-895364,4154210,2017.0,2017.0,1954.0,PRIVATE,7,Humber River-Black Creek,1780 WILSON AVE,3,31,2017-11-20,61,Evaluation needs to be conducted in 1 year,15,3.0,2.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,2.0,,W0734,43.7191256895,-79.5181150514,303324.903,4841907.561000001
-895365,4154025,2017.0,2017.0,1955.0,PRIVATE,8,Eglinton-Lawrence,3000 YONGE ST,12,272,2017-11-20,69,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,,N0829,43.723761725,-79.402367148,312650.498,4842428.0
-895366,4154027,2017.0,2017.0,1957.0,PRIVATE,8,Eglinton-Lawrence,3112 YONGE ST,4,41,2017-11-20,64,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N0825,43.726397678599994,-79.4031116718,312590.434,4842719.816000001
-895367,4154759,2017.0,2017.0,1974.0,PRIVATE,16,Don Valley East,65 WYNFORD HEIGHTS CRES,21,327,2017-11-20,78,Evaluation needs to be conducted in 2 years,20,4.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,N1629,43.7283181853,-79.3241417766,318952.217,4842943.589
-895368,4235524,2017.0,2017.0,1996.0,PRIVATE,12,Toronto-St. Paul's,1920 YONGE ST,7,102,2017-11-20,68,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,,3.0,4.0,5.0,3.0,4.0,4.0,,3.0,3.0,,S1227,43.698779468000005,-79.3972801771,313085.05100000004,4839644.265
-895369,4153692,2017.0,2017.0,1960.0,PRIVATE,19,Beaches-East York,419 WOODBINE AVE,3,11,2017-11-20,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,,,3.0,3.0,4.0,3.0,2.0,3.0,4.0,3.0,3.0,,S1938,43.67374715810001,-79.3071214297,320337.471,4836883.9569999995
-895370,4153698,2017.0,2017.0,1977.0,PRIVATE,19,Beaches-East York,650 WOODBINE AVE,4,38,2017-11-20,73,Evaluation needs to be conducted in 2 years,15,5.0,3.0,3.0,4.0,3.0,4.0,,4.0,,,4.0,3.0,4.0,3.0,4.0,4.0,,3.0,4.0,,S1934,43.6782886904,-79.31013244270001,320093.528,4837387.965
-895371,4154071,2017.0,2017.0,1970.0,PRIVATE,19,Beaches-East York,1017 WOODBINE AVE,6,59,2017-11-20,73,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,3.0,,4.0,3.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,,S1929,43.687147508100004,-79.3130882633,319852.972,4838371.631
-895372,4154952,2017.0,2017.0,1932.0,PRIVATE,12,Toronto-St. Paul's,1520 BATHURST ST,4,24,2017-11-20,64,Evaluation needs to be conducted in 1 year,14,3.0,3.0,4.0,3.0,,4.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1229,43.6849625997,-79.4194565721,311277.98,4838115.101
-895373,4154951,2017.0,2017.0,1932.0,PRIVATE,12,Toronto-St. Paul's,1524 BATHURST ST,4,24,2017-11-20,60,Evaluation needs to be conducted in 1 year,14,3.0,3.0,4.0,3.0,,3.0,,3.0,,,3.0,1.0,5.0,2.0,3.0,3.0,,3.0,3.0,,S1229,43.6851006268,-79.41951073279999,311273.599,4838130.432
-895374,4154603,2017.0,2017.0,1964.0,PRIVATE,6,York Centre,4160 BATHURST ST,7,67,2017-11-20,49,Building Audit,18,3.0,3.0,2.0,2.0,3.0,3.0,2.0,2.0,3.0,,2.0,1.0,3.0,2.0,3.0,3.0,3.0,2.0,2.0,,N0629,43.7478559496,-79.4370573738,309853.799,4845101.032
-895375,4154749,2017.0,2017.0,1976.0,PRIVATE,18,Willowdale,2 FOREST LANEWAY,29,366,2017-11-17,73,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,4.0,3.0,3.0,3.0,4.0,,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,,N1826,43.763239637,-79.409191362,312077.26399999997,4846803.075
-895376,4153911,2017.0,2017.0,1956.0,PRIVATE,12,Toronto-St. Paul's,587 AVENUE RD,3,22,2017-11-17,65,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1232,43.68945490310001,-79.4020332335,312682.159,4838615.7
-895377,4152740,2017.0,2017.0,1965.0,PRIVATE,24,Scarborough-Guildwood,555 BRIMORTON DR,15,180,2017-11-17,38,Building Audit,19,2.0,2.0,2.0,1.0,1.0,3.0,1.0,1.0,2.0,,1.0,2.0,5.0,2.0,2.0,2.0,2.0,1.0,1.0,3.0,E2425,43.7728909718,-79.231398356,326407.892,4847915.281
-895378,4153934,2017.0,2017.0,1955.0,PRIVATE,12,Toronto-St. Paul's,130 ORIOLE PKWY,4,39,2017-11-17,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,,3.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1226,43.6964637317,-79.4032380661,312584.097,4839394.2639999995
-895379,4154916,2017.0,2017.0,1962.0,PRIVATE,16,Don Valley East,267 ROYWOOD DR,7,72,2017-11-17,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,5.0,3.0,4.0,3.0,3.0,4.0,4.0,,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,,N1622,43.761230364,-79.335262791,318048.772,4846599.023
-895380,4152843,2017.0,2017.0,1994.0,SOCIAL HOUSING,24,Scarborough-Guildwood,228 GALLOWAY RD,5,60,2017-11-17,64,Evaluation needs to be conducted in 1 year,20,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,5.0,4.0,3.0,4.0,3.0,4.0,3.0,3.0,E2428,43.767932495,-79.197118281,329169.24600000004,4847374.811000001
-895381,4152706,2017.0,2017.0,1961.0,PRIVATE,21,Scarborough Centre,819 KENNEDY RD,6,62,2017-11-17,74,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,2.0,,3.0,4.0,,4.0,4.0,5.0,3.0,4.0,2.0,5.0,3.0,4.0,,E2133,43.7346483486,-79.268437993,323437.893,4843657.7530000005
-895382,4152708,2017.0,2017.0,1954.0,PRIVATE,21,Scarborough Centre,831 KENNEDY RD,6,50,2017-11-17,56,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,,3.0,2.0,2.0,3.0,,3.0,2.0,5.0,3.0,3.0,3.0,2.0,2.0,2.0,,E2133,43.7359936436,-79.2687949142,323408.724,4843807.13
-895383,4152710,2017.0,2017.0,1957.0,PRIVATE,21,Scarborough Centre,859 KENNEDY RD,5,34,2017-11-17,72,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,3.0,3.0,,3.0,5.0,,3.0,2.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,,E2133,43.7379997073,-79.26966663510001,323337.88800000004,4844029.804
-895384,4154313,2017.0,2017.0,1950.0,PRIVATE,5,York South-Weston,2605 KEELE ST,3,12,2017-11-17,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,2.0,,W0523,43.7191723913,-79.4799616805,306399.103,4841912.738
-895385,4156258,2017.0,2017.0,1975.0,PRIVATE,18,Willowdale,4 FOREST LANEWAY,29,277,2017-11-17,76,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N1826,43.762630953999995,-79.409754662,312057.524,4846740.513
-895386,4153933,2017.0,2017.0,1959.0,PRIVATE,12,Toronto-St. Paul's,111 ORIOLE PKWY,3,29,2017-11-17,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,S1226,43.6967810359,-79.4024723932,312645.774,4839429.589
-895387,4153074,2017.0,2017.0,1911.0,PRIVATE,9,Davenport,1505 DUNDAS ST W,3,12,2017-11-16,58,Evaluation needs to be conducted in 1 year,16,3.0,3.0,2.0,3.0,2.0,3.0,,3.0,,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,S0936,43.649474046899996,-79.4321012172,310261.776,4834171.571
-895388,4153909,2017.0,2017.0,1955.0,PRIVATE,12,Toronto-St. Paul's,606 AVENUE RD,11,62,2017-11-16,69,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,3.0,,3.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,S1231,43.6896239325,-79.40332135140001,312578.299,4838634.362
-895389,4153998,2017.0,2017.0,1960.0,PRIVATE,12,Toronto-St. Paul's,893 AVENUE RD,3,10,2017-11-16,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,,3.0,,3.0,,3.0,3.0,4.0,5.0,3.0,3.0,3.0,3.0,2.0,3.0,,S1227,43.7003921332,-79.4063848317,312329.962,4839830.415
-895390,4228864,2017.0,2017.0,1964.0,PRIVATE,17,Don Valley North,2911 BAYVIEW AVE,3,304,2017-11-16,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,,3.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,N1725,43.77054660020001,-79.3863327506,313935.534,4847626.159
-895391,4153999,2017.0,2017.0,1960.0,PRIVATE,12,Toronto-St. Paul's,901 AVENUE RD,3,10,2017-11-16,61,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,2.0,3.0,,S1227,43.700648913900004,-79.4065038723,312320.335,4839858.933
-895392,4154000,2017.0,2017.0,1960.0,PRIVATE,12,Toronto-St. Paul's,905 AVENUE RD,3,10,2017-11-16,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,2.0,3.0,,S1227,43.7007807941,-79.40656024180001,312315.775,4839873.58
-895393,4155739,2017.0,2017.0,1965.0,PRIVATE,4,Parkdale-High Park,30 SPRINGHURST AVE,12,122,2017-11-16,54,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,2.0,3.0,2.0,3.0,3.0,3.0,3.0,2.0,3.0,2.0,3.0,2.0,2.0,3.0,3.0,2.0,,S0437,43.634517341999995,-79.42888249800001,310522.559,4832511.135
-895394,4153883,2017.0,2017.0,1957.0,PRIVATE,12,Toronto-St. Paul's,561 AVENUE RD,14,60,2017-11-16,74,Evaluation needs to be conducted in 2 years,20,4.0,3.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,3.0,4.0,4.0,5.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,S1232,43.687842496,-79.401374105,312735.24,4838437.581
-895395,4153884,2017.0,2017.0,1952.0,PRIVATE,12,Toronto-St. Paul's,565 AVENUE RD,12,63,2017-11-16,69,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,3.0,4.0,3.0,4.0,3.0,3.0,,3.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,4.0,,S1232,43.688177663999994,-79.401518522,312723.554,4838474.804
-895396,4153910,2017.0,2017.0,1955.0,PRIVATE,12,Toronto-St. Paul's,585 AVENUE RD,11,57,2017-11-16,68,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,4.0,3.0,4.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,S1232,43.6892676418,-79.4019577858,312688.265,4838594.903
-895397,4155174,2017.0,2017.0,1965.0,PRIVATE,5,York South-Weston,8 CASTLETON AVE,3,17,2017-11-16,59,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,2.0,3.0,,3.0,,,2.0,3.0,5.0,3.0,3.0,3.0,,2.0,3.0,,W0539,43.6691775481,-79.4863066035,305888.622,4836358.478
-895398,4154906,2017.0,2017.0,1966.0,PRIVATE,16,Don Valley East,250 CASSANDRA BLVD,4,234,2017-11-16,66,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,2.0,,3.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,4.0,N1625,43.7543911907,-79.3162260546,319583.529,4845841.461
-895399,4154905,2017.0,2017.0,1969.0,PRIVATE,16,Don Valley East,270 CASSANDRA BLVD,4,83,2017-11-16,68,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,3.0,,4.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,4.0,4.0,4.0,3.0,4.0,,N1625,43.75472795979999,-79.3146445734,319710.799,4845879.156
-895400,4153156,2017.0,2017.0,1967.0,SOCIAL HOUSING,9,Davenport,661 DUFFERIN ST,13,112,2017-11-16,71,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,2.0,3.0,3.0,,3.0,4.0,,4.0,3.0,5.0,3.0,4.0,3.0,3.0,4.0,3.0,4.0,S0934,43.650489538900004,-79.4313915091,310318.929,4834284.426
-895401,4152751,2017.0,2017.0,1969.0,PRIVATE,21,Scarborough Centre,1320 DANFORTH RD,4,67,2017-11-16,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2135,43.742526167,-79.24582411,325256.61600000004,4844539.193
-895402,4152798,2017.0,2017.0,1965.0,PRIVATE,24,Scarborough-Guildwood,15 COUGAR CRT,17,193,2017-11-16,53,Evaluation needs to be conducted in 1 year,19,2.0,3.0,3.0,2.0,2.0,3.0,2.0,3.0,3.0,,2.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,E2433,43.7449791335,-79.2174778122,327539.033,4844818.088
-895403,4152799,2017.0,2017.0,1965.0,PRIVATE,24,Scarborough-Guildwood,25 COUGAR CRT,21,236,2017-11-16,66,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,4.0,4.0,3.0,2.0,3.0,,4.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,E2433,43.7460384485,-79.218063912,327491.43100000004,4844935.615
-895404,4152554,2017.0,2017.0,1950.0,PRIVATE,20,Scarborough Southwest,2422 QUEEN ST E,4,24,2017-11-16,60,Evaluation needs to be conducted in 1 year,15,3.0,2.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,4.0,3.0,3.0,3.0,2.0,,4.0,3.0,,E2033,43.674940499099996,-79.279202734,322588.365,4837022.11
-895405,4154839,2017.0,2017.0,1970.0,PRIVATE,17,Don Valley North,640 SHEPPARD AVE E,19,128,2017-11-16,80,Evaluation needs to be conducted in 2 years,20,4.0,4.0,5.0,2.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,N1725,43.768469253,-79.382764906,314222.811,4847396.752
-895406,4152556,2017.0,2017.0,1937.0,PRIVATE,20,Scarborough Southwest,2406 QUEEN ST E,4,13,2017-11-16,73,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,4.0,,3.0,,4.0,,,4.0,4.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,,E2033,43.6747748062,-79.2796021139,322556.21,4837003.617
-895407,4261240,2017.0,2017.0,1950.0,PRIVATE,14,Toronto-Danforth,814 BROADVIEW AVE,3,24,2017-11-16,56,Evaluation needs to be conducted in 1 year,14,2.0,2.0,3.0,2.0,,3.0,,3.0,,,3.0,3.0,2.0,3.0,2.0,3.0,,3.0,5.0,,S1424,43.67792961,-79.3589234686,316159.63899999997,4837340.27
-895408,4153207,2017.0,2017.0,1968.0,PRIVATE,11,University-Rosedale,20 PRINCE ARTHUR AVE,23,193,2017-11-16,66,Evaluation needs to be conducted in 2 years,20,4.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,1.0,4.0,S1127,43.6698986965,-79.3965574738,313126.188,4836443.565
-895409,4153106,2017.0,2017.0,1992.0,SOCIAL HOUSING,9,Davenport,223 OSLER ST,4,13,2017-11-16,66,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,S0926,43.669760121,-79.458975993,308092.381,4836424.835
-895410,4152653,2017.0,2017.0,1993.0,SOCIAL HOUSING,21,Scarborough Centre,963-967 PHARMACY AVE,4,72,2017-11-16,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,E2131,43.734818534,-79.300588721,320828.666,4843661.65
-895411,4156459,2017.0,2017.0,1976.0,PRIVATE,20,Scarborough Southwest,39 PARKCREST DR,7,134,2017-11-16,65,Evaluation needs to be conducted in 1 year,19,3.0,2.0,4.0,3.0,2.0,4.0,3.0,3.0,3.0,,4.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,E2027,43.73597306439999,-79.2190996441,327411.779,4843817.119
-895412,4152784,2017.0,2017.0,1967.0,PRIVATE,20,Scarborough Southwest,40 PARKCREST DR,12,100,2017-11-16,67,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,2.0,4.0,3.0,4.0,4.0,4.0,,3.0,4.0,5.0,3.0,2.0,3.0,4.0,3.0,3.0,2.0,E2027,43.7353054239,-79.21998529380001,327340.686,4843742.709
-895413,4155703,2017.0,2017.0,1976.0,PRIVATE,20,Scarborough Southwest,45 PARKCREST DR,8,92,2017-11-16,66,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,,4.0,4.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,E2027,43.736752063999994,-79.2186571,327390.438,4843831.657
-895414,4153623,2017.0,2017.0,1988.0,SOCIAL HOUSING,14,Toronto-Danforth,1187-1189 QUEEN ST E,4,34,2017-11-16,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,4.0,2.0,3.0,3.0,,3.0,4.0,5.0,3.0,3.0,3.0,2.0,3.0,3.0,,S1441,,,318356.222,4835654.831
-895415,4152804,2017.0,2017.0,1960.0,PRIVATE,24,Scarborough-Guildwood,71 GUILDWOOD PKWY,3,74,2017-11-16,69,Evaluation needs to be conducted in 2 years,19,3.0,3.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,4.0,,E2434,43.745979183,-79.202034161,328782.223,4844934.477
-895416,4250538,2017.0,2017.0,1960.0,PRIVATE,13,Toronto Centre,414 JARVIS ST,4,35,2017-11-16,66,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,,S1326,43.664772523,-79.3781317195,314612.964,4835876.1280000005
-895417,4154311,2017.0,2017.0,1958.0,PRIVATE,5,York South-Weston,2595 KEELE ST,3,23,2017-11-16,52,Evaluation needs to be conducted in 1 year,17,2.0,3.0,3.0,2.0,2.0,3.0,,2.0,,3.0,2.0,2.0,5.0,2.0,3.0,2.0,3.0,2.0,3.0,,W0523,43.71842644229999,-79.4794939296,306436.812,4841829.8780000005
-895418,4154312,2017.0,2017.0,1955.0,PRIVATE,5,York South-Weston,2597 KEELE ST,4,39,2017-11-16,62,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0523,43.718801135,-79.4798728535,306406.27,4841871.496
-895419,4152765,2017.0,2017.0,1960.0,PRIVATE,21,Scarborough Centre,30 TRUDELLE ST,6,58,2017-11-16,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,3.0,,4.0,4.0,,4.0,4.0,5.0,4.0,5.0,4.0,3.0,3.0,4.0,,E2135,43.740125926800005,-79.24293182939999,325490.646,4844272.302
-895420,4153187,2017.0,2017.0,1960.0,PRIVATE,11,University-Rosedale,44 WALMER RD,13,85,2017-11-16,60,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,2.0,,S1126,43.669071978999995,-79.406941997,312288.598,4836351.698
-895421,4156598,2017.0,2017.0,2011.0,SOCIAL HOUSING,9,Davenport,180 SUDBURY ST,18,190,2017-11-16,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,4.0,3.0,4.0,4.0,4.0,,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,S0937,43.641893011,-79.425161314,310822.114,4833330.761
-895422,4154855,2017.0,2017.0,1982.0,PRIVATE,16,Don Valley East,1540 VICTORIA PARK AVE,9,132,2017-11-16,71,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,2.0,4.0,3.0,3.0,4.0,3.0,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N1628,43.72612052189999,-79.3038237102,320589.67600000004,4842703.079
-895423,4154862,2017.0,2017.0,1968.0,PRIVATE,16,Don Valley East,1600 VICTORIA PARK AVE,4,27,2017-11-16,69,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,,4.0,,3.0,4.0,,3.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,N1628,43.730005821599995,-79.3053972189,320461.9,4843134.408
-895424,4152639,2017.0,2017.0,1960.0,PRIVATE,21,Scarborough Centre,1617 VICTORIA PARK AVE,4,59,2017-11-16,76,Evaluation needs to be conducted in 2 years,17,3.0,4.0,4.0,4.0,3.0,4.0,,2.0,5.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,,E2131,43.7309861519,-79.3047834793,320511.088,4843243.43
-895425,4152640,2017.0,2017.0,1958.0,PRIVATE,21,Scarborough Centre,1631 VICTORIA PARK AVE,4,35,2017-11-16,69,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,3.0,2.0,2.0,,3.0,,,4.0,3.0,5.0,4.0,4.0,2.0,4.0,4.0,4.0,,E2131,43.7316703129,-79.3050968759,320485.664,4843319.377
-895426,4153180,2017.0,2017.0,1960.0,PRIVATE,11,University-Rosedale,30 WALMER RD,3,40,2017-11-16,60,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,2.0,,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,4.0,,S1126,43.667889637100004,-79.406592558,312317.184,4836219.422
-895427,4153382,2017.0,2017.0,1997.0,SOCIAL HOUSING,10,Spadina-Fort York,85 THE ESPLANADE,7,128,2017-11-16,68,Evaluation needs to be conducted in 2 years,19,5.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,2.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,S1038,43.6473212947,-79.37296407470001,315032.675,4833938.007
-895428,4154837,2017.0,2017.0,1959.0,PRIVATE,17,Don Valley North,71 TALARA DR,3,29,2017-11-16,71,Evaluation needs to be conducted in 2 years,17,4.0,2.0,5.0,3.0,3.0,4.0,,4.0,3.0,,3.0,4.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,,N1729,43.765626586,-79.37941856,314492.675,4847081.343
-895429,4152646,2017.0,2017.0,1962.0,PRIVATE,21,Scarborough Centre,1749 VICTORIA PARK AVE,6,85,2017-11-16,66,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,3.0,,2.0,3.0,,4.0,3.0,5.0,4.0,3.0,2.0,3.0,3.0,2.0,3.0,E2131,43.7388748682,-79.3078956075,320258.359,4844119.222
-895430,4152655,2017.0,2017.0,1959.0,PRIVATE,21,Scarborough Centre,1817 VICTORIA PARK AVE,4,36,2017-11-16,56,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,1.0,,3.0,3.0,4.0,3.0,3.0,2.0,3.0,3.0,3.0,,E2126,43.74333248560001,-79.3097740889,320105.92,4844614.079
-895431,4152656,2017.0,2017.0,1959.0,PRIVATE,21,Scarborough Centre,1827 VICTORIA PARK AVE,4,36,2017-11-16,66,Evaluation needs to be conducted in 2 years,17,3.0,4.0,3.0,3.0,3.0,2.0,,3.0,3.0,,2.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,,E2126,43.7441147474,-79.31004806199999,320083.654,4844700.933
-895432,4152786,2017.0,2017.0,1992.0,SOCIAL HOUSING,24,Scarborough-Guildwood,3555 KINGSTON RD,9,133,2017-11-16,82,Evaluation needs to be conducted in 2 years,20,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,5.0,E2433,43.7393701329,-79.2153343914,327713.788,4844195.533
-895433,4152738,2017.0,2017.0,1989.0,SOCIAL HOUSING,21,Scarborough Centre,3010 LAWRENCE AVE E,11,170,2017-11-16,89,Evaluation needs to be conducted in 3 years,19,5.0,5.0,5.0,4.0,5.0,4.0,4.0,3.0,4.0,,5.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,5.0,5.0,E2130,43.7559421372,-79.24995508229999,325003.977,4845929.234
-895434,4152774,2017.0,2017.0,1964.0,PRIVATE,21,Scarborough Centre,3125 LAWRENCE AVE E,7,110,2017-11-16,76,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,,E2136,43.7552486601,-79.2439639688,325402.336,4845952.092
-895435,4152803,2017.0,2017.0,1965.0,PRIVATE,24,Scarborough-Guildwood,3400 EGLINTON AVE E,16,221,2017-11-16,61,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,3.0,4.0,3.0,2.0,3.0,4.0,3.0,3.0,,E2433,43.745127162799996,-79.2131571633,327886.965,4844835.72
-895436,4152802,2017.0,2017.0,1975.0,PRIVATE,24,Scarborough-Guildwood,3434 EGLINTON AVE E,17,214,2017-11-16,60,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,2.0,2.0,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,E2433,43.74562160560001,-79.21121677880001,328043.05600000004,4844891.19
-895437,4154840,2017.0,2017.0,1970.0,PRIVATE,17,Don Valley North,22 ELKHORN DR,5,223,2017-11-16,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,4.0,,N1725,43.7709054792,-79.3819188744,314290.803,4847666.555
-895438,4152797,2017.0,2017.0,1968.0,PRIVATE,24,Scarborough-Guildwood,215 MARKHAM RD,17,193,2017-11-16,63,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,3.0,3.0,3.0,3.0,2.0,4.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,E2433,43.744688035,-79.218768113,327434.96,4844786.353
-895439,4152800,2017.0,2017.0,1969.0,PRIVATE,24,Scarborough-Guildwood,225 MARKHAM RD,16,229,2017-11-16,68,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,4.0,4.0,3.0,3.0,2.0,4.0,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,E2433,43.746190112,-79.2190765702,327409.815,4844952.188999999
-895440,4255546,2017.0,2017.0,2008.0,PRIVATE,9,Davenport,1407 DUPONT ST,5,74,2017-11-16,74,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,4.0,,4.0,3.0,5.0,4.0,4.0,3.0,,4.0,3.0,,S0930,43.6662152325,-79.44757050609999,309012.691,4836030.5430000005
-895441,4154994,2017.0,2017.0,1955.0,PRIVATE,12,Toronto-St. Paul's,1592 BATHURST ST,4,35,2017-11-15,65,Evaluation needs to be conducted in 1 year,15,4.0,4.0,4.0,3.0,2.0,2.0,,4.0,,,3.0,3.0,4.0,3.0,4.0,3.0,,3.0,3.0,,S1229,43.687646650699996,-79.4205557001,311189.091,4838413.223999999
-895442,4153198,2017.0,2017.0,1965.0,PRIVATE,11,University-Rosedale,11 YORKVILLE AVE,9,76,2017-11-15,67,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,5.0,4.0,3.0,3.0,,4.0,2.0,,S1128,43.6716015637,-79.3882501798,313795.908,4836633.662
-895443,4155687,2017.0,2017.0,2003.0,PRIVATE,18,Willowdale,151 BEECROFT RD,27,306,2017-11-15,77,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,,3.0,4.0,4.0,4.0,,4.0,3.0,5.0,4.0,4.0,4.0,5.0,4.0,3.0,4.0,N1824,43.764995731899994,-79.41425747619999,311688.077,4847006.801
-895444,4155544,2017.0,2017.0,1950.0,PRIVATE,3,Etobicoke-Lakeshore,13 BIRCHLEA AVE,3,14,2017-11-15,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,2.0,,W0334,43.59254528100001,-79.528407015,302488.51,4827835.76
-895445,4155543,2017.0,2017.0,1950.0,PRIVATE,3,Etobicoke-Lakeshore,15 BIRCHLEA AVE,3,14,2017-11-15,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0334,43.592527408,-79.528501876,302478.048,4827838.18
-895446,4152699,2017.0,2017.0,1965.0,PRIVATE,21,Scarborough Centre,1165 BIRCHMOUNT RD,4,20,2017-11-15,73,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,4.0,5.0,3.0,3.0,,,4.0,4.0,5.0,4.0,3.0,2.0,3.0,4.0,3.0,,E2133,43.741606086800005,-79.2819282185,322349.168,4844427.791
-895447,4152700,2017.0,2017.0,1960.0,PRIVATE,21,Scarborough Centre,1169 BIRCHMOUNT RD,4,18,2017-11-15,69,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,,3.0,2.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,,E2133,43.7418231309,-79.2820268094,322341.164,4844451.883
-895448,4152869,2017.0,2017.0,1979.0,PRIVATE,22,Scarborough-Agincourt,2249 BIRCHMOUNT RD,5,40,2017-11-15,74,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,4.0,4.0,4.0,4.0,3.0,2.0,,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,E2232,43.7803171542,-79.29699468310001,321125.2,4848725.356000001
-895449,4153343,2017.0,2017.0,1916.0,SOCIAL HOUSING,12,Toronto-St. Paul's,1435 BATHURST ST,3,15,2017-11-15,55,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,1.0,3.0,1.0,3.0,3.0,3.0,,3.0,3.0,,S1236,43.6823886069,-79.4176648249,311422.714,4837829.2639999995
-895450,4154066,2017.0,2017.0,1955.0,PRIVATE,19,Beaches-East York,2892 ST CLAIR AVE E,4,34,2017-11-15,63,Evaluation needs to be conducted in 1 year,16,3.0,2.0,2.0,3.0,3.0,4.0,,3.0,,,3.0,3.0,4.0,3.0,3.0,3.0,4.0,4.0,3.0,,S1924,43.70796583,-79.30242735899999,320686.3,4840682.162
-895451,4269412,2017.0,2017.0,1960.0,PRIVATE,19,Beaches-East York,2903 ST CLAIR AVE E,3,12,2017-11-15,65,Evaluation needs to be conducted in 1 year,15,4.0,3.0,3.0,3.0,3.0,4.0,,3.0,,,4.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,S1927,43.7077283573,-79.3012700088,320800.32399999996,4840660.273
-895452,4154062,2017.0,2017.0,1956.0,PRIVATE,19,Beaches-East York,2922 ST CLAIR AVE E,4,16,2017-11-15,59,Evaluation needs to be conducted in 1 year,15,2.0,3.0,4.0,2.0,2.0,3.0,,3.0,,,2.0,2.0,4.0,4.0,3.0,3.0,,4.0,3.0,,S1924,43.7085088591,-79.2998972117,320910.751,4840747.242
-895453,4153221,2017.0,2017.0,1957.0,PRIVATE,11,University-Rosedale,214 ST GEORGE ST,8,68,2017-11-15,62,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,2.0,,S1127,43.671224238,-79.401812426,312701.98699999996,4836591.267
-895454,4153211,2017.0,2017.0,1962.0,PRIVATE,11,University-Rosedale,153 ST GEORGE ST,7,48,2017-11-15,62,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1127,43.669584779,-79.400213595,312831.128,4836409.283
-895455,4155068,2017.0,2017.0,1959.0,PRIVATE,9,Davenport,2208 DUFFERIN ST,4,18,2017-11-15,56,Evaluation needs to be conducted in 1 year,16,3.0,2.0,3.0,3.0,3.0,2.0,,3.0,,,3.0,2.0,4.0,3.0,2.0,3.0,3.0,3.0,3.0,,S0922,43.69067643,-79.44845877600001,308939.113,4838748.9969999995
-895456,4156495,2017.0,2017.0,1962.0,PRIVATE,15,Don Valley West,14 CARLUKE CRES,7,101,2017-11-15,67,Evaluation needs to be conducted in 2 years,20,4.0,3.0,3.0,4.0,3.0,2.0,4.0,3.0,3.0,4.0,3.0,3.0,5.0,3.0,4.0,2.0,4.0,3.0,3.0,4.0,N1521,43.760403651400004,-79.3924866908,313489.963,4846509.1110000005
-895457,4155671,2017.0,2017.0,1962.0,PRIVATE,15,Don Valley West,16 CARLUKE CRES,7,101,2017-11-15,66,Evaluation needs to be conducted in 2 years,19,3.0,3.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,,N1521,43.7611222484,-79.39268737180001,313562.542,4846551.841
-895458,4155672,2017.0,2017.0,1962.0,PRIVATE,15,Don Valley West,20 CARLUKE CRES,12,154,2017-11-15,70,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,4.0,4.0,3.0,4.0,3.0,4.0,,3.0,4.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,,N1521,43.7610374702,-79.3915028226,313594.376,4846563.3889999995
-895459,4153160,2017.0,2017.0,1971.0,PRIVATE,9,Davenport,919 DUFFERIN ST,15,113,2017-11-15,68,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,3.0,3.0,4.0,3.0,4.0,4.0,4.0,3.0,,S0934,43.6575632508,-79.4340091901,310107.154,4835070.126
-895460,4155069,2017.0,2017.0,1959.0,PRIVATE,9,Davenport,2204 DUFFERIN ST,4,28,2017-11-15,56,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,3.0,2.0,4.0,3.0,2.0,3.0,2.0,3.0,3.0,,S0922,43.690434125,-79.448380394,308945.447,4838722.081
-895461,4154221,2017.0,2017.0,1972.0,PRIVATE,7,Humber River-Black Creek,180 CHALKFARM DR,23,263,2017-11-15,58,Evaluation needs to be conducted in 1 year,18,4.0,4.0,4.0,2.0,3.0,2.0,2.0,2.0,3.0,,3.0,4.0,2.0,3.0,3.0,3.0,3.0,3.0,2.0,,W0734,43.724048437200004,-79.5118150261,303832.597,4842454.334
-895462,4153339,2017.0,2017.0,1967.0,PRIVATE,12,Toronto-St. Paul's,640 DAVENPORT RD,5,25,2017-11-15,69,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,,2.0,,3.0,3.0,,3.0,4.0,5.0,4.0,4.0,3.0,3.0,3.0,3.0,,S1236,43.677041538400005,-79.4134459783,311763.48,4837235.568
-895463,4156140,2017.0,2017.0,1996.0,SOCIAL HOUSING,18,Willowdale,45 CUMMER AVE,4,53,2017-11-15,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,N1823,43.787109971999996,-79.415408659,311592.624,4849464.537
-895464,4154842,2017.0,2017.0,1967.0,PRIVATE,17,Don Valley North,505 CUMMER AVE,13,175,2017-11-15,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,N1721,43.7921587704,-79.3916718817,313502.61600000004,4850026.664
-895465,4153994,2017.0,2017.0,1935.0,PRIVATE,12,Toronto-St. Paul's,190 COLIN AVE,6,40,2017-11-15,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1227,43.7055531895,-79.4028556914,312613.74199999997,4840404.134
-895466,4153577,2017.0,2017.0,1992.0,SOCIAL HOUSING,14,Toronto-Danforth,179 BROADVIEW AVE,4,41,2017-11-15,63,Evaluation needs to be conducted in 1 year,19,3.0,2.0,4.0,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,4.0,3.0,3.0,4.0,3.0,S1434,43.661102106499996,-79.3502357937,316863.476,4835472.037
-895467,4153613,2017.0,2017.0,1950.0,PRIVATE,14,Toronto-Danforth,812 BROADVIEW AVE,3,24,2017-11-15,54,Evaluation needs to be conducted in 1 year,14,2.0,3.0,2.0,2.0,,2.0,,3.0,,,2.0,2.0,2.0,3.0,3.0,3.0,,4.0,5.0,,S1424,43.677863449499995,-79.3588173792,316168.205,4837332.933999999
-895468,4154836,2017.0,2017.0,1959.0,PRIVATE,17,Don Valley North,11 DERVOCK CRES,4,77,2017-11-15,71,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,4.0,4.0,3.0,3.0,4.0,4.0,,4.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,N1729,43.76608884,-79.38041321899999,314412.519,4847132.58
-895469,4154050,2017.0,2017.0,1965.0,PRIVATE,19,Beaches-East York,195 REXLEIGH DR,6,106,2017-11-15,77,Evaluation needs to be conducted in 2 years,18,5.0,4.0,5.0,4.0,4.0,3.0,,4.0,4.0,5.0,5.0,3.0,4.0,3.0,2.0,4.0,4.0,3.0,3.0,,S1927,43.704991699,-79.305610532,320450.958,4840356.382
-895470,4152851,2017.0,2017.0,1970.0,PRIVATE,22,Scarborough-Agincourt,3275 SHEPPARD AVE E,17,219,2017-11-15,69,Evaluation needs to be conducted in 2 years,20,4.0,3.0,3.0,2.0,4.0,3.0,2.0,4.0,3.0,3.0,2.0,3.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,E2230,43.777664481,-79.310076811,320080.96,4848422.677
-895471,4152873,2017.0,2017.0,1969.0,PRIVATE,22,Scarborough-Agincourt,3845 SHEPPARD AVE E,10,106,2017-11-15,73,Evaluation needs to be conducted in 2 years,19,4.0,3.0,3.0,4.0,4.0,4.0,3.0,2.0,4.0,,4.0,4.0,5.0,4.0,4.0,3.0,4.0,3.0,4.0,3.0,E2232,43.7821007086,-79.2907139042,321630.25899999996,4848924.767
-895472,4155200,2017.0,2017.0,1950.0,SOCIAL HOUSING,4,Parkdale-High Park,495 RIVERSIDE DR,3,25,2017-11-15,63,Evaluation needs to be conducted in 1 year,14,3.0,2.0,4.0,3.0,,3.0,,3.0,,,3.0,3.0,4.0,4.0,2.0,4.0,,3.0,3.0,,S0425,43.6481742891,-79.4902420295,305571.54,4834025.1389999995
-895473,4152560,2017.0,2017.0,1970.0,PRIVATE,20,Scarborough Southwest,2440 QUEEN ST E,6,24,2017-11-15,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2033,43.6751742383,-79.2785094053,322644.203,4837048.226
-895474,4152559,2017.0,2017.0,1954.0,PRIVATE,20,Scarborough Southwest,3000 QUEEN ST E,4,30,2017-11-15,70,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,,4.0,4.0,3.0,5.0,4.0,3.0,3.0,,3.0,4.0,,E2033,43.675330629499996,-79.27794494220001,322689.673,4837065.722
-895475,4156516,2017.0,2017.0,1978.0,PRIVATE,22,Scarborough-Agincourt,85 SILVER SPRINGS BLVD,9,133,2017-11-15,75,Evaluation needs to be conducted in 2 years,17,4.0,3.0,3.0,4.0,,4.0,,3.0,4.0,,4.0,4.0,5.0,5.0,4.0,3.0,4.0,4.0,3.0,3.0,E2223,43.801321025,-79.304237888,320562.482,4850959.102
-895476,4153027,2017.0,2017.0,1917.0,PRIVATE,4,Parkdale-High Park,1479 QUEEN ST W,3,11,2017-11-15,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,,3.0,,3.0,,,3.0,3.0,5.0,2.0,3.0,3.0,2.0,3.0,3.0,,S0436,43.639920626999995,-79.4393647797,309675.403,4833106.528
-895477,4152558,2017.0,2017.0,1920.0,PRIVATE,20,Scarborough Southwest,2400 QUEEN ST E,4,32,2017-11-15,59,Evaluation needs to be conducted in 1 year,16,3.0,2.0,3.0,3.0,2.0,3.0,,2.0,,3.0,3.0,3.0,5.0,4.0,2.0,3.0,,3.0,3.0,,E2033,43.6746856483,-79.2801413313,322512.757,4836993.597
-895478,4153612,2017.0,2017.0,1950.0,PRIVATE,14,Toronto-Danforth,818 BROADVIEW AVE,3,31,2017-11-15,73,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,4.0,3.0,5.0,4.0,4.0,5.0,,4.0,5.0,,S1424,43.678055685,-79.3589018471,316161.359,4837354.28
-895479,4155076,2017.0,2017.0,1960.0,PRIVATE,9,Davenport,526 HARVIE AVE,3,29,2017-11-15,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,3.0,,S0921,43.690799353,-79.456216348,308313.74600000004,4838762.298
-895480,4155075,2017.0,2017.0,1958.0,PRIVATE,9,Davenport,554 HARVIE AVE,4,15,2017-11-15,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,4.0,2.0,5.0,3.0,4.0,3.0,4.0,3.0,2.0,,S0921,43.691729939,-79.456536022,308287.92600000004,4838865.6680000005
-895481,4154843,2017.0,2017.0,1986.0,PRIVATE,17,Don Valley North,70 RUDDINGTON DR,18,107,2017-11-15,82,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,N1721,43.79254847,-79.39077874,313611.526,4850015.004
-895482,4273905,2017.0,2017.0,1930.0,PRIVATE,14,Toronto-Danforth,575 PAPE AVE,3,17,2017-11-15,56,Evaluation needs to be conducted in 1 year,15,3.0,2.0,4.0,2.0,2.0,3.0,,3.0,,,2.0,3.0,4.0,3.0,2.0,2.0,,4.0,3.0,,S1430,43.6750307641,-79.3429590796,317447.438,4837020.51
-895483,4153980,2017.0,2017.0,1959.0,PRIVATE,8,Eglinton-Lawrence,665 ROSELAWN AVE,5,87,2017-11-15,63,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,3.0,4.0,3.0,4.0,3.0,4.0,3.0,3.0,2.0,3.0,2.0,2.0,3.0,3.0,5.0,3.0,,N0833,43.705178016000005,-79.425108275,310820.12,4840361.5430000005
-895484,4153552,2017.0,2017.0,1988.0,SOCIAL HOUSING,14,Toronto-Danforth,841 QUEEN ST E,3,36,2017-11-15,51,Evaluation needs to be conducted in 1 year,18,3.0,2.0,3.0,2.0,2.0,2.0,1.0,3.0,2.0,,2.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,S1440,43.660037777700005,-79.34386069039999,317377.858,4835354.725
-895485,4155883,2017.0,2017.0,1965.0,PRIVATE,4,Parkdale-High Park,66 PACIFIC AVE,16,230,2017-11-15,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,,S0428,43.655223678999995,-79.464807315,307631.12899999996,4834855.688999999
-895486,4152964,2017.0,2017.0,1972.0,PRIVATE,4,Parkdale-High Park,1251 KING ST W,14,189,2017-11-15,71,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,3.0,4.0,2.0,3.0,3.0,4.0,,4.0,3.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,,S0437,43.638192517700006,-79.4297211776,310454.821,4832918.412
-895487,4153021,2017.0,2017.0,1967.0,PRIVATE,4,Parkdale-High Park,1430 KING ST W,7,77,2017-11-15,59,Evaluation needs to be conducted in 1 year,17,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,2.0,3.0,3.0,3.0,2.0,2.0,3.0,3.0,3.0,,S0436,43.637386748500006,-79.43645222720001,309911.8,4832828.489
-895488,4152999,2017.0,2017.0,1960.0,PRIVATE,4,Parkdale-High Park,1475 KING ST W,3,44,2017-11-15,49,Building Audit,17,2.0,3.0,2.0,2.0,2.0,3.0,,3.0,,2.0,2.0,3.0,3.0,3.0,2.0,2.0,2.0,3.0,3.0,,S0437,43.636130710399996,-79.4396082972,309657.257,4832688.775
-895489,4154349,2017.0,2017.0,1960.0,PRIVATE,5,York South-Weston,2432 KEELE ST,3,12,2017-11-15,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,3.0,,W0526,43.711105671300004,-79.47890915079999,306484.13300000003,4841016.598999999
-895490,4154347,2017.0,2017.0,1958.0,PRIVATE,5,York South-Weston,2440 KEELE ST,3,34,2017-11-15,59,Evaluation needs to be conducted in 1 year,16,3.0,2.0,2.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,W0526,43.711712237,-79.4792178818,306459.23699999996,4841083.978999999
-895491,4154337,2017.0,2017.0,1955.0,PRIVATE,5,York South-Weston,2548 KEELE ST,3,12,2017-11-15,59,Evaluation needs to be conducted in 1 year,15,2.0,3.0,3.0,2.0,2.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0526,43.7157152364,-79.4800398693,306392.893,4841528.671
-895492,4154336,2017.0,2017.0,1955.0,PRIVATE,5,York South-Weston,2550 KEELE ST,3,12,2017-11-15,55,Evaluation needs to be conducted in 1 year,15,2.0,3.0,3.0,2.0,2.0,3.0,,2.0,,,2.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,W0526,43.715924263999995,-79.4800852491,306389.231,4841551.892
-895493,4152711,2017.0,2017.0,1961.0,PRIVATE,21,Scarborough Centre,875 KENNEDY RD,6,82,2017-11-15,68,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,E2133,43.739089426999996,-79.270177266,323296.161,4844151.7069999995
-895494,4152712,2017.0,2017.0,1965.0,PRIVATE,21,Scarborough Centre,877 KENNEDY RD,4,32,2017-11-15,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,4.0,4.0,,3.0,5.0,,4.0,3.0,5.0,3.0,4.0,3.0,4.0,3.0,3.0,4.0,E2133,43.739624156000005,-79.270445694,323274.376,4844211.053
-895495,4152714,2017.0,2017.0,1961.0,PRIVATE,21,Scarborough Centre,893 KENNEDY RD,7,77,2017-11-15,68,Evaluation needs to be conducted in 2 years,17,3.0,4.0,4.0,3.0,3.0,2.0,,3.0,3.0,,3.0,4.0,5.0,4.0,3.0,3.0,5.0,4.0,2.0,,E2133,43.74039535399999,-79.27079334300001,323246.13800000004,4844296.652
-895496,4152875,2017.0,2017.0,1960.0,PRIVATE,22,Scarborough-Agincourt,2250 KENNEDY RD,18,136,2017-11-15,73,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,4.0,4.0,4.0,3.0,3.0,4.0,,3.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,E2232,43.782236795799996,-79.2884509141,321812.36600000004,4848940.348
-895497,4154104,2017.0,2017.0,1950.0,PRIVATE,14,Toronto-Danforth,257 TORRENS AVE,3,17,2017-11-15,59,Evaluation needs to be conducted in 1 year,15,3.0,2.0,3.0,1.0,2.0,3.0,,3.0,,,3.0,1.0,5.0,4.0,4.0,3.0,,4.0,3.0,,S1422,43.6923348201,-79.3435916097,317392.816,4838942.808999999
-895498,4155077,2017.0,2017.0,1960.0,PRIVATE,9,Davenport,524 HARVIE AVE,3,29,2017-11-15,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S0921,43.690686289,-79.455914851,308342.955,4838761.115
-895499,4153927,2017.0,2017.0,1960.0,PRIVATE,12,Toronto-St. Paul's,135 LAWTON BLVD,9,48,2017-11-15,67,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,3.0,4.0,4.0,,3.0,3.0,,3.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,S1232,43.6949094496,-79.3968815347,313096.679,4839222.203
-895500,4152578,2017.0,2017.0,1964.0,PRIVATE,20,Scarborough Southwest,2 NORTH DR,4,65,2017-11-15,72,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,4.0,3.0,,3.0,4.0,4.0,4.0,3.0,5.0,4.0,3.0,4.0,4.0,3.0,4.0,,E2033,43.6861001378,-79.2821331164,322348.881,4838261.291
-895501,4152664,2017.0,2017.0,1962.0,PRIVATE,21,Scarborough Centre,2275 VICTORIA PARK AVE,6,69,2017-11-15,71,Evaluation needs to be conducted in 2 years,19,4.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,4.0,,E2121,43.763205848999995,-79.3169546412,319522.706,4846820.596
-895502,4156122,2017.0,2017.0,1970.0,PRIVATE,17,Don Valley North,75 TALARA DR,4,66,2017-11-15,71,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,4.0,4.0,3.0,3.0,4.0,4.0,,4.0,3.0,5.0,4.0,3.0,3.0,3.0,3.0,3.0,2.0,N1729,43.765752783,-79.380070251,314469.09,4847077.914
-895503,4153989,2017.0,2017.0,1940.0,PRIVATE,12,Toronto-St. Paul's,63 MAXWELL AVE,3,33,2017-11-15,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,2.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1227,43.705877825,-79.4013471201,312735.285,4840440.348
-895504,4152948,2017.0,2017.0,1994.0,SOCIAL HOUSING,5,York South-Weston,17 MC CORMACK ST,4,61,2017-11-15,72,Evaluation needs to be conducted in 2 years,20,4.0,3.0,4.0,3.0,3.0,4.0,3.0,4.0,3.0,4.0,3.0,3.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,W0540,43.6763328367,-79.4723721039,307012.089,4837153.6219999995
-895505,4155734,2017.0,2017.0,1992.0,PRIVATE,9,Davenport,800 LANSDOWNE AVE,4,138,2017-11-15,68,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,2.0,4.0,3.0,3.0,3.0,4.0,,3.0,3.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,,S0930,43.6650311015,-79.4462388637,309120.17699999997,4835899.067
-895506,4155204,2017.0,2017.0,1960.0,PRIVATE,4,Parkdale-High Park,4033 OLD DUNDAS ST,5,47,2017-11-15,56,Evaluation needs to be conducted in 1 year,16,3.0,2.0,3.0,2.0,2.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,2.0,2.0,3.0,3.0,3.0,,S0421,43.6637082321,-79.5023379758,304595.728,4835750.825
-895507,4269424,2017.0,2017.0,1950.0,SOCIAL HOUSING,14,Toronto-Danforth,793 GERRARD ST E,5,28,2017-11-15,59,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,3.0,3.0,,2.0,,,3.0,2.0,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,S1434,43.666764817200004,-79.3456335069,317233.48,4836101.799
-895508,4153946,2017.0,2017.0,1930.0,PRIVATE,12,Toronto-St. Paul's,779 EGLINTON AVE W,3,17,2017-11-15,63,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,,3.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,4.0,,S1225,43.700999573100006,-79.4241109809,310901.18,4839896.436000001
-895509,4153914,2017.0,2017.0,1920.0,PRIVATE,12,Toronto-St. Paul's,1 MALLORY GDNS,4,35,2017-11-15,64,Evaluation needs to be conducted in 1 year,16,3.0,2.0,3.0,3.0,3.0,3.0,,4.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,4.0,,S1232,43.69100353899999,-79.39598868600001,313168.941,4838789.278
-895510,4153912,2017.0,2017.0,1920.0,PRIVATE,12,Toronto-St. Paul's,8 MALLORY GDNS,4,36,2017-11-15,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1232,43.690519401,-79.396663132,313114.642,4838735.424
-895511,4153949,2017.0,2017.0,1953.0,PRIVATE,8,Eglinton-Lawrence,4 LATIMER AVE,5,65,2017-11-15,66,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,4.0,3.0,3.0,,3.0,4.0,,3.0,4.0,5.0,2.0,2.0,3.0,,4.0,3.0,,N0833,43.7032107551,-79.4163543553,311526.123,4840142.702
-895512,4155692,2017.0,2017.0,1971.0,PRIVATE,1,Etobicoke North,1875 MARTIN GROVE RD,12,88,2017-11-15,59,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,3.0,3.0,2.0,2.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,,W0123,43.7432814617,-79.5941314137,297202.887,4844595.353
-895513,4155067,2017.0,2017.0,1967.0,PRIVATE,9,Davenport,65 DYNEVOR RD,9,90,2017-11-15,66,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,4.0,,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,,S0922,43.6915639113,-79.4491372654,308884.626,4838846.609
-895514,4153805,2017.0,2017.0,1930.0,PRIVATE,12,Toronto-St. Paul's,196 EGLINTON AVE E,4,25,2017-11-15,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1221,43.708345686099996,-79.3923007973,313466.197,4840711.342
-895515,4155238,2017.0,2017.0,1953.0,PRIVATE,3,Etobicoke-Lakeshore,4 KINSDALE BLVD,4,42,2017-11-14,56,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,,,2.0,2.0,3.0,3.0,3.0,3.0,,3.0,3.0,,W0329,43.636181771000004,-79.48992422,305597.035,4832693.783
-895516,4152773,2017.0,2017.0,1960.0,PRIVATE,21,Scarborough Centre,3201 LAWRENCE AVE E,13,123,2017-11-14,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,5.0,4.0,3.0,3.0,4.0,5.0,,4.0,3.0,5.0,4.0,4.0,4.0,4.0,5.0,3.0,4.0,E2136,43.756000502,-79.240912837,325647.50399999996,4846037.34
-895517,4152820,2017.0,2017.0,1964.0,PRIVATE,24,Scarborough-Guildwood,3801 LAWRENCE AVE E,7,90,2017-11-14,72,Evaluation needs to be conducted in 2 years,17,4.0,3.0,3.0,3.0,4.0,4.0,,3.0,4.0,,3.0,3.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,,E2431,43.7620219715,-79.2131151928,327883.877,4846712.67
-895518,4154703,2017.0,2017.0,1966.0,PRIVATE,18,Willowdale,55 ELLERSLIE AVE,17,391,2017-11-14,71,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,,4.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,,N1824,43.771150913999996,-79.41475262600001,311643.273,4847712.183999999
-895519,4156069,2017.0,2017.0,1966.0,PRIVATE,18,Willowdale,65 ELLERSLIE AVE,6,107,2017-11-14,68,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,4.0,4.0,5.0,3.0,4.0,3.0,4.0,3.0,3.0,,N1824,43.770932218999995,-79.41566720600001,311564.37100000004,4847682.02
-895520,4155508,2017.0,2017.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,2696 LAKE SHORE BLVD W,4,27,2017-11-14,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,4.0,3.0,5.0,4.0,3.0,4.0,,4.0,3.0,,W0335,43.603004467,-79.4961219509,305097.395,4829006.977
-895521,4152946,2017.0,2017.0,1997.0,SOCIAL HOUSING,4,Parkdale-High Park,2750 DUNDAS ST W,6,30,2017-11-14,62,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,S0429,43.665346577,-79.46092314100001,307935.755,4835938.396000001
-895522,4152945,2017.0,2017.0,1992.0,SOCIAL HOUSING,4,Parkdale-High Park,2767 DUNDAS ST W,6,21,2017-11-14,68,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,4.0,3.0,4.0,3.0,4.0,3.0,,3.0,3.0,5.0,4.0,3.0,3.0,,3.0,3.0,,S0429,43.665100576,-79.461595606,307881.369,4835907.097
-895523,4152579,2017.0,2017.0,1971.0,PRIVATE,20,Scarborough Southwest,23 GLEN EVEREST RD,3,11,2017-11-14,52,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,2.0,3.0,2.0,,2.0,,,2.0,2.0,3.0,3.0,3.0,3.0,,3.0,3.0,,E2035,43.700017847,-79.2530664991,324687.562,4839814.06
-895524,4167788,2017.0,2017.0,1971.0,PRIVATE,20,Scarborough Southwest,25 GLEN EVEREST RD,3,11,2017-11-14,49,Building Audit,15,2.0,3.0,2.0,2.0,2.0,2.0,,2.0,,,2.0,2.0,3.0,3.0,3.0,3.0,,3.0,3.0,,E2035,43.7001107344,-79.2530513006,324688.756,4839824.383
-895525,4152580,2017.0,2017.0,1971.0,PRIVATE,20,Scarborough Southwest,27 GLEN EVEREST RD,3,11,2017-11-14,52,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,2.0,3.0,2.0,,3.0,,,2.0,2.0,3.0,3.0,3.0,2.0,,3.0,3.0,,E2035,43.7005566696,-79.2528798583,324702.42600000004,4839873.966
-895526,4167688,2017.0,2017.0,1971.0,PRIVATE,20,Scarborough Southwest,29 GLEN EVEREST RD,3,11,2017-11-14,53,Evaluation needs to be conducted in 1 year,15,2.0,3.0,2.0,3.0,3.0,2.0,,3.0,,,2.0,2.0,3.0,3.0,3.0,3.0,,3.0,3.0,,E2035,43.7006703636,-79.2528221569,324707.039,4839886.6110000005
-895527,4152581,2017.0,2017.0,1971.0,PRIVATE,20,Scarborough Southwest,31-33 GLEN EVEREST RD,3,22,2017-11-14,52,Evaluation needs to be conducted in 1 year,15,2.0,3.0,2.0,3.0,3.0,2.0,,3.0,,,2.0,2.0,2.0,3.0,3.0,3.0,,3.0,3.0,,E2035,43.700613718,-79.2522439531,324702.93,4839900.186000001
-895528,4154117,2017.0,2017.0,1970.0,PRIVATE,14,Toronto-Danforth,60 GOWAN AVE,21,118,2017-11-14,55,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,2.0,2.0,3.0,3.0,2.0,3.0,3.0,3.0,2.0,,S1421,43.6880167433,-79.3522352421,316696.92699999997,4838461.851
-895529,4154118,2017.0,2017.0,1968.0,PRIVATE,14,Toronto-Danforth,80 GOWAN AVE,11,88,2017-11-14,64,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,2.0,3.0,4.0,,3.0,3.0,,3.0,2.0,5.0,3.0,3.0,4.0,3.0,3.0,3.0,,S1421,43.6881568082,-79.351627018,316745.93,4838477.495
-895530,4154491,2017.0,2017.0,1962.0,PRIVATE,8,Eglinton-Lawrence,435 GLEN PARK AVE,4,42,2017-11-14,67,Evaluation needs to be conducted in 2 years,18,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,4.0,5.0,4.0,4.0,3.0,3.0,3.0,2.0,,N0826,43.7077057177,-79.4544291704,308457.083,4840639.629
-895531,4153457,2017.0,2017.0,1995.0,SOCIAL HOUSING,13,Toronto Centre,80 DUNDAS ST E,15,138,2017-11-14,68,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,,4.0,3.0,4.0,4.0,2.0,3.0,4.0,4.0,3.0,,S1328,43.656516289799995,-79.3781464612,314613.128,4834958.909
-895532,4153443,2017.0,2017.0,1973.0,PRIVATE,13,Toronto Centre,280 DUNDAS ST E,11,241,2017-11-14,62,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,S1328,43.6584811745,-79.3719261905,315114.503,4835177.935
-895533,4154877,2017.0,2017.0,1959.0,PRIVATE,16,Don Valley East,10 ELVASTON DR,3,20,2017-11-14,68,Evaluation needs to be conducted in 2 years,17,3.0,4.0,5.0,4.0,4.0,2.0,,4.0,,3.0,3.0,3.0,5.0,4.0,3.0,2.0,2.0,4.0,3.0,,N1628,43.7305607276,-79.3055621564,320448.469,4843196.023
-895534,4156035,2017.0,2017.0,1940.0,PRIVATE,20,Scarborough Southwest,1463 KINGSTON RD,3,14,2017-11-14,54,Evaluation needs to be conducted in 1 year,16,2.0,2.0,2.0,2.0,3.0,2.0,,3.0,,,2.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,3.0,E2034,43.687961103999996,-79.269766888,323354.61100000003,4838512.321
-895535,4156237,2017.0,2017.0,1940.0,PRIVATE,20,Scarborough Southwest,1469 KINGSTON RD,3,15,2017-11-14,55,Evaluation needs to be conducted in 1 year,15,3.0,2.0,2.0,2.0,2.0,2.0,,3.0,,,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,2.0,,E2034,43.688219097,-79.26980053300001,323367.67,4838524.609
-895536,4156236,2017.0,2017.0,1940.0,PRIVATE,20,Scarborough Southwest,1475 KINGSTON RD,3,14,2017-11-14,54,Evaluation needs to be conducted in 1 year,16,2.0,2.0,2.0,2.0,3.0,2.0,,3.0,,,2.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,3.0,E2034,43.68817271,-79.26943584600001,323380.727,4838536.898
-895537,4156385,2017.0,2017.0,1940.0,PRIVATE,20,Scarborough Southwest,1481 KINGSTON RD,3,15,2017-11-14,55,Evaluation needs to be conducted in 1 year,16,2.0,2.0,2.0,2.0,3.0,3.0,,3.0,,,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,2.0,3.0,E2034,43.688423918000005,-79.269500963,323393.784,4838549.187
-895538,4152561,2017.0,2017.0,1920.0,PRIVATE,20,Scarborough Southwest,1165 KINGSTON RD,4,21,2017-11-14,54,Evaluation needs to be conducted in 1 year,14,3.0,2.0,2.0,2.0,,2.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,2.0,,E2033,43.681968905,-79.2794672741,322565.015,4837802.9
-895539,4152571,2017.0,2017.0,1956.0,PRIVATE,20,Scarborough Southwest,1200 KINGSTON RD,5,61,2017-11-14,78,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,5.0,4.0,,4.0,4.0,3.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,E2033,43.6821685941,-79.2802892859,322498.68100000004,4837824.907
-895540,4156254,2017.0,2017.0,1940.0,PRIVATE,20,Scarborough Southwest,1445 KINGSTON RD,3,14,2017-11-14,54,Evaluation needs to be conducted in 1 year,17,2.0,2.0,2.0,2.0,3.0,2.0,,3.0,,3.0,2.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,3.0,E2034,43.687651655,-79.270543261,323273.62,4838437.409
-895541,4156379,2017.0,2017.0,1940.0,PRIVATE,20,Scarborough Southwest,1449 KINGSTON RD,3,14,2017-11-14,54,Evaluation needs to be conducted in 1 year,16,2.0,2.0,2.0,2.0,3.0,2.0,,3.0,,,2.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,3.0,E2034,43.687794468,-79.270325262,323298.75800000003,4838460.592
-895542,4152569,2017.0,2017.0,1960.0,PRIVATE,20,Scarborough Southwest,1711 KINGSTON RD,3,18,2017-11-14,68,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,2.0,3.0,4.0,,4.0,,3.0,3.0,3.0,5.0,4.0,3.0,3.0,,4.0,3.0,,E2034,43.692233898199994,-79.2630193825,323887.837,4838946.94
-895543,4154740,2017.0,2017.0,1963.0,PRIVATE,15,Don Valley West,199 UPPER CANADA DR,4,119,2017-11-14,74,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,,N1521,43.7601407229,-79.3938827219,313329.2,4846469.341
-895544,4155164,2017.0,2017.0,1962.0,PRIVATE,5,York South-Weston,2304 WESTON RD,13,97,2017-11-14,70,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,,3.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,,W0524,43.705056803999994,-79.530164006,302353.157,4840345.928
-895545,4155163,2017.0,2017.0,1963.0,PRIVATE,5,York South-Weston,2336 WESTON RD,10,69,2017-11-14,72,Evaluation needs to be conducted in 2 years,17,4.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,,4.0,3.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,,W0524,43.705579903,-79.53098482600001,302287.028,4840404.065
-895546,4154861,2017.0,2017.0,1955.0,PRIVATE,16,Don Valley East,18 TINDER CRES,4,70,2017-11-14,67,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,3.0,4.0,2.0,,3.0,4.0,,3.0,3.0,4.0,3.0,3.0,4.0,4.0,4.0,2.0,,N1628,43.7273147758,-79.30798685180001,320253.965,4842834.972
-895547,4154860,2017.0,2017.0,1960.0,PRIVATE,16,Don Valley East,20 TINDER CRES,4,59,2017-11-14,75,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,3.0,3.0,,4.0,3.0,,4.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,N1628,43.7269176828,-79.3086521838,320200.464,4842790.734
-895548,4154321,2017.0,2017.0,1960.0,PRIVATE,5,York South-Weston,2647 KEELE ST,3,33,2017-11-14,56,Evaluation needs to be conducted in 1 year,15,2.0,3.0,3.0,2.0,2.0,3.0,,2.0,,,2.0,3.0,4.0,4.0,2.0,3.0,,4.0,3.0,,W0523,43.7218557003,-79.4808147675,306330.299,4842210.82
-895549,4155253,2017.0,2017.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,193 STEPHEN DR,3,10,2017-11-14,56,Evaluation needs to be conducted in 1 year,16,3.0,3.0,2.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,,W0327,43.640715018,-79.488178586,305737.446,4833198.606000001
-895550,4154739,2017.0,2017.0,1963.0,PRIVATE,15,Don Valley West,16 THE LINKS RD,4,102,2017-11-14,80,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N1521,43.751505712,-79.402827155,312609.845,4845510.073
-895551,4155251,2017.0,2017.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,159 STEPHEN DR,4,24,2017-11-14,58,Evaluation needs to be conducted in 1 year,16,3.0,3.0,2.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0327,43.6389598462,-79.4872934251,305809.566,4833001.4860000005
-895552,4168796,2017.0,2017.0,1963.0,PRIVATE,15,Don Valley West,24 THE LINKS RD,4,95,2017-11-14,76,Evaluation needs to be conducted in 2 years,19,4.0,3.0,3.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,,N1521,43.751017702,-79.402305283,312651.934,4845455.909
-895553,4155880,2017.0,2017.0,1974.0,PRIVATE,2,Etobicoke Centre,63 WIDDICOMBE HILL BLVD,17,233,2017-11-14,65,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,,3.0,2.0,5.0,3.0,4.0,3.0,4.0,2.0,2.0,3.0,W0222,43.677654113,-79.554781207,300348.86699999997,4837335.591
-895554,4155907,2017.0,2017.0,1960.0,PRIVATE,8,Eglinton-Lawrence,99 MARLEE AVE,6,59,2017-11-14,56,Evaluation needs to be conducted in 1 year,18,3.0,2.0,3.0,3.0,3.0,2.0,,3.0,3.0,2.0,3.0,3.0,5.0,3.0,3.0,2.0,1.0,3.0,3.0,,N0832,43.7009946331,-79.4402809991,309597.858,4839894.798
-895555,4153605,2017.0,2017.0,1931.0,PRIVATE,14,Toronto-Danforth,9 TENNIS CRES,4,54,2017-11-14,72,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,4.0,4.0,4.0,,3.0,,3.0,4.0,2.0,5.0,3.0,4.0,4.0,,3.0,4.0,4.0,S1428,43.6726051315,-79.35424759920001,316537.683,4836749.3889999995
-895556,4152647,2017.0,2017.0,1960.0,PRIVATE,21,Scarborough Centre,1751 VICTORIA PARK AVE,4,35,2017-11-14,59,Evaluation needs to be conducted in 1 year,16,4.0,4.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,3.0,2.0,2.0,2.0,3.0,3.0,3.0,,E2131,43.7392166771,-79.3081651793,320236.558,4844157.143
-895557,4155878,2017.0,2017.0,1960.0,PRIVATE,8,Eglinton-Lawrence,60 WASDALE CRES,3,11,2017-11-14,59,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,,N0823,43.7306713451,-79.4374893371,309820.414,4843191.908
-895558,4153954,2017.0,2017.0,1962.0,PRIVATE,8,Eglinton-Lawrence,21 MAYFAIR AVE,11,138,2017-11-14,72,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,3.0,2.0,4.0,4.0,4.0,,3.0,4.0,5.0,4.0,4.0,3.0,3.0,4.0,4.0,,N0832,43.703709875200005,-79.4222136695,311053.822,4840197.688
-895559,4154734,2017.0,2017.0,1963.0,PRIVATE,15,Don Valley West,37 LORD SEATON RD,4,49,2017-11-14,74,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,,N1521,43.7525712767,-79.4059855057,312355.623,4845627.205
-895560,4154654,2017.0,2017.0,1960.0,PRIVATE,8,Eglinton-Lawrence,2895 BATHURST ST,5,60,2017-11-14,51,Evaluation needs to be conducted in 1 year,17,3.0,2.0,3.0,2.0,3.0,3.0,,3.0,3.0,,2.0,2.0,4.0,2.0,3.0,2.0,2.0,2.0,2.0,,N0828,43.7147716704,-79.42837310729999,310556.341,4841426.127
-895561,4153334,2017.0,2017.0,1993.0,SOCIAL HOUSING,12,Toronto-St. Paul's,339 ALBANY AVE,4,42,2017-11-14,74,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,4.0,4.0,4.0,3.0,4.0,3.0,,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S1236,43.6754298022,-79.4139451731,311723.405,4837056.473
-895562,4153895,2017.0,2017.0,1931.0,PRIVATE,12,Toronto-St. Paul's,404 SPADINA RD,4,31,2017-11-14,66,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,3.0,,3.0,3.0,,S1230,43.6882314978,-79.4129731553,311800.342,4838478.817
-895563,4218633,2017.0,2017.0,1967.0,PRIVATE,12,Toronto-St. Paul's,77 ST CLAIR AVE E,20,185,2017-11-14,68,Evaluation needs to be conducted in 2 years,19,4.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,S1238,43.68845738899999,-79.390866323,313582.244,4838506.945
-895564,4153750,2017.0,2017.0,1970.0,PRIVATE,12,Toronto-St. Paul's,80 ST CLAIR AVE E,26,307,2017-11-14,72,Evaluation needs to be conducted in 2 years,20,4.0,3.0,4.0,3.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,5.0,3.0,4.0,3.0,4.0,3.0,3.0,4.0,S1233,43.689146769,-79.390517749,313610.245,4838583.573
-895565,4155021,2017.0,2017.0,1971.0,PRIVATE,12,Toronto-St. Paul's,300 WINNETT AVE,4,35,2017-11-14,66,Evaluation needs to be conducted in 2 years,16,4.0,3.0,3.0,3.0,4.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,S1223,43.691627521,-79.434491531,310065.019,4838855.446
-895566,4232801,2017.0,2017.0,1989.0,PRIVATE,21,Scarborough Centre,4 ANTRIM CRES,10,65,2017-11-14,67,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,2.0,4.0,3.0,3.0,2.0,3.0,,3.0,4.0,5.0,3.0,3.0,4.0,4.0,4.0,3.0,,E2123,43.7717770023,-79.2843647481,322144.253,4847779.143
-895567,4153357,2017.0,2017.0,1930.0,PRIVATE,12,Toronto-St. Paul's,49 ST CLAIR AVE W,7,34,2017-11-14,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,,2.0,3.0,,S1238,43.6873687296,-79.3959379318,313173.803,4838384.509
-895568,4153771,2017.0,2017.0,1969.0,PRIVATE,12,Toronto-St. Paul's,225 DAVISVILLE AVE,25,401,2017-11-14,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,,4.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,S1233,43.699562451999995,-79.388217525,313794.14,4839741.0030000005
-895569,4155211,2017.0,2017.0,1949.0,PRIVATE,3,Etobicoke-Lakeshore,2690 BLOOR ST W,4,18,2017-11-14,64,Evaluation needs to be conducted in 1 year,14,3.0,3.0,5.0,3.0,,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,2.0,,3.0,3.0,,W0322,43.6503326449,-79.49736598930001,304996.803,4834264.87
-895570,4156461,2017.0,2017.0,1965.0,PRIVATE,16,Don Valley East,265 CASSANDRA BLVD,12,164,2017-11-14,77,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,4.0,3.0,3.0,4.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N1625,43.753625037,-79.3156353,319617.966,4845769.7069999995
-895571,4156043,2017.0,2017.0,1965.0,PRIVATE,16,Don Valley East,275 CASSANDRA BLVD,12,164,2017-11-14,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,4.0,3.0,3.0,4.0,4.0,,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,,N1625,43.753301871000005,-79.31465951199999,319753.276,4845811.004
-895572,4154130,2017.0,2017.0,1965.0,PRIVATE,14,Toronto-Danforth,50 COSBURN AVE,12,173,2017-11-14,66,Evaluation needs to be conducted in 2 years,19,5.0,3.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,3.0,5.0,2.0,4.0,3.0,4.0,2.0,1.0,,S1421,43.6891373921,-79.3519022582,316723.54600000003,4838586.397
-895573,4155208,2017.0,2017.0,1949.0,PRIVATE,3,Etobicoke-Lakeshore,2684 BLOOR ST W,3,21,2017-11-14,66,Evaluation needs to be conducted in 2 years,14,3.0,3.0,5.0,3.0,,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0322,43.6502799096,-79.49662782760001,305056.355,4834259.015
-895574,4155209,2017.0,2017.0,1949.0,PRIVATE,3,Etobicoke-Lakeshore,2686 BLOOR ST W,3,21,2017-11-14,66,Evaluation needs to be conducted in 2 years,14,3.0,3.0,5.0,3.0,,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0322,43.650295861800004,-79.4968685545,305036.934,4834260.786
-895575,4155210,2017.0,2017.0,1949.0,PRIVATE,3,Etobicoke-Lakeshore,2688 BLOOR ST W,4,21,2017-11-14,64,Evaluation needs to be conducted in 1 year,14,3.0,3.0,5.0,3.0,,3.0,,3.0,,,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,W0322,43.65031426189999,-79.4971169059,305016.898,4834262.829
-895576,4155536,2017.0,2017.0,1993.0,SOCIAL HOUSING,3,Etobicoke-Lakeshore,1 COIN ST,14,133,2017-11-14,66,Evaluation needs to be conducted in 2 years,20,3.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,W0335,43.601352388100004,-79.5083940455,304106.691,4828823.445
-895577,4153668,2017.0,2017.0,1920.0,PRIVATE,19,Beaches-East York,2449 QUEEN ST E,4,29,2017-11-14,63,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,,3.0,,4.0,,,3.0,3.0,4.0,3.0,3.0,3.0,,2.0,4.0,,S1942,43.6730490225,-79.2843149122,322176.688,4836810.9
-895578,4153669,2017.0,2017.0,1920.0,PRIVATE,19,Beaches-East York,2451 QUEEN ST E,4,29,2017-11-14,63,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,,3.0,,4.0,,,3.0,3.0,4.0,3.0,3.0,3.0,,2.0,4.0,,S1942,43.6731276017,-79.28409669439999,322194.262,4836819.675
-895579,4155816,2017.0,2017.0,2005.0,SOCIAL HOUSING,25,Scarborough-Rouge Park,20 SEWELLS RD,4,92,2017-11-14,91,Evaluation needs to be conducted in 3 years,18,4.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,,5.0,5.0,5.0,5.0,5.0,5.0,,5.0,5.0,4.0,E2524,43.807586521000005,-79.21678105,327571.272,4851774.676
-895580,4153666,2017.0,2017.0,1930.0,PRIVATE,19,Beaches-East York,2373 QUEEN ST E,3,27,2017-11-14,64,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,,3.0,,4.0,,,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,4.0,,S1942,43.6723206085,-79.2877515365,321899.772,4836729.268999999
-895581,4152572,2017.0,2017.0,1956.0,PRIVATE,20,Scarborough Southwest,1150 KINGSTON RD,5,51,2017-11-14,76,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,5.0,4.0,,4.0,3.0,3.0,4.0,3.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,,E2033,43.68193011100001,-79.280816489,322455.983,4837799.251
-895582,4156114,2017.0,2017.0,1940.0,PRIVATE,20,Scarborough Southwest,1457 KINGSTON RD,3,15,2017-11-14,51,Evaluation needs to be conducted in 1 year,16,2.0,2.0,2.0,2.0,2.0,2.0,,3.0,,,2.0,3.0,4.0,2.0,3.0,3.0,,3.0,3.0,3.0,E2034,43.68800974,-79.270112715,323322.706,4838482.675
-895583,4155491,2017.0,2017.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,2557 LAKE SHORE BLVD W,4,26,2017-11-13,66,Evaluation needs to be conducted in 2 years,14,3.0,3.0,3.0,3.0,,3.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,3.0,,4.0,3.0,,W0336,43.6090707341,-79.4891854143,305657.294,4829680.949
-895584,4153300,2017.0,2017.0,1992.0,SOCIAL HOUSING,12,Toronto-St. Paul's,155 KENDAL AVE,5,59,2017-11-13,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,S1236,43.676219378199995,-79.4099056613,312049.04600000003,4837144.538
-895585,4154530,2017.0,2017.0,1969.0,PRIVATE,8,Eglinton-Lawrence,82 NEPTUNE DR,3,11,2017-11-13,59,Evaluation needs to be conducted in 1 year,16,3.0,3.0,2.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,2.0,2.0,3.0,3.0,3.0,,N0823,43.732725421800005,-79.4367279054,309881.57899999997,4843420.148
-895586,4254276,2017.0,2017.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,147 EIGHTH ST,4,52,2017-11-13,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,4.0,,W0335,43.602248316,-79.506894937,304227.452,4828923.922
-895587,4246916,2017.0,2017.0,1967.0,PRIVATE,15,Don Valley West,300 EGLINTON AVE E,15,96,2017-11-13,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,4.0,3.0,4.0,3.0,4.0,3.0,,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,N1537,43.708925086899995,-79.3890965678,313722.169,4840780.1389999995
-895588,4153814,2017.0,2017.0,1969.0,PRIVATE,15,Don Valley West,368 EGLINTON AVE E,13,149,2017-11-13,66,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N1537,43.7094642809,-79.3868949941,313899.521,4840840.284
-895589,4152724,2017.0,2017.0,1974.0,PRIVATE,21,Scarborough Centre,5 GLAMORGAN AVE,10,140,2017-11-13,59,Evaluation needs to be conducted in 1 year,19,4.0,3.0,3.0,3.0,4.0,3.0,2.0,2.0,2.0,,3.0,2.0,5.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,E2123,43.7684659782,-79.28364485520001,322203.161,4847411.454
-895590,4154125,2017.0,2017.0,1958.0,PRIVATE,14,Toronto-Danforth,69 GAMBLE AVE,4,33,2017-11-13,71,Evaluation needs to be conducted in 2 years,17,4.0,2.0,4.0,4.0,4.0,3.0,,3.0,,4.0,3.0,4.0,5.0,3.0,3.0,4.0,3.0,3.0,4.0,,S1421,43.6897044101,-79.3512503162,316775.983,4838649.477
-895591,4154135,2017.0,2017.0,1964.0,PRIVATE,14,Toronto-Danforth,72 GAMBLE AVE,12,212,2017-11-13,55,Evaluation needs to be conducted in 1 year,19,3.0,2.0,4.0,3.0,2.0,3.0,2.0,3.0,3.0,,2.0,3.0,3.0,3.0,3.0,2.0,2.0,3.0,3.0,3.0,S1421,43.6901320701,-79.3521100097,316706.6,4838696.875
-895592,4154126,2017.0,2017.0,1961.0,PRIVATE,14,Toronto-Danforth,85 GAMBLE AVE,6,81,2017-11-13,66,Evaluation needs to be conducted in 2 years,18,3.0,1.0,3.0,3.0,4.0,4.0,2.0,3.0,3.0,,3.0,3.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,S1421,43.6898006862,-79.35088605039999,316805.327,4838660.223
-895593,4154127,2017.0,2017.0,1961.0,PRIVATE,14,Toronto-Danforth,95 GAMBLE AVE,6,94,2017-11-13,64,Evaluation needs to be conducted in 1 year,18,2.0,3.0,4.0,2.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,4.0,3.0,4.0,3.0,,S1421,43.689923631599996,-79.3498848765,316886.00800000003,4838674.022
-895594,4153794,2017.0,2017.0,1965.0,PRIVATE,15,Don Valley West,525 EGLINTON AVE E,10,54,2017-11-13,69,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,,4.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N1530,43.710212560900004,-79.3798510461,314467.034,4840924.187
-895595,4154010,2017.0,2017.0,1974.0,PRIVATE,8,Eglinton-Lawrence,500 DUPLEX AVE,33,319,2017-11-13,54,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,4.0,3.0,2.0,3.0,3.0,,2.0,2.0,2.0,3.0,3.0,3.0,3.0,2.0,3.0,,N0833,43.709767508,-79.4014749326,312724.472,4840872.481000001
-895596,4154008,2017.0,2017.0,1968.0,PRIVATE,8,Eglinton-Lawrence,30 EDITH DR,13,172,2017-11-13,68,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,4.0,4.0,3.0,3.0,3.0,4.0,,3.0,3.0,5.0,3.0,3.0,2.0,4.0,4.0,3.0,,N0833,43.7065465762,-79.4033898366,312570.56899999996,4840514.447
-895597,4155058,2017.0,2017.0,1960.0,PRIVATE,8,Eglinton-Lawrence,1090 ROSELAWN AVE,5,62,2017-11-13,59,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,2.0,3.0,3.0,2.0,3.0,3.0,,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,2.0,,N0831,43.7009028087,-79.449149194,308883.057,4839884.115
-895598,4154348,2017.0,2017.0,1950.0,PRIVATE,5,York South-Weston,2434 KEELE ST,3,12,2017-11-13,52,Evaluation needs to be conducted in 1 year,15,2.0,2.0,3.0,3.0,2.0,3.0,,2.0,,,3.0,2.0,4.0,3.0,2.0,2.0,,3.0,3.0,,W0526,43.711263649799996,-79.4790421102,306473.414,4841034.147
-895599,4155881,2017.0,2017.0,1954.0,PRIVATE,14,Toronto-Danforth,65 A HILLSIDE DR,4,71,2017-11-13,74,Evaluation needs to be conducted in 2 years,17,3.0,2.0,4.0,3.0,3.0,4.0,,3.0,,4.0,3.0,3.0,5.0,4.0,3.0,4.0,5.0,5.0,5.0,,S1421,43.6897018875,-79.3561857803,316378.13300000003,4838648.53
-895600,4153008,2017.0,2017.0,1900.0,PRIVATE,4,Parkdale-High Park,1504 KING ST W,3,15,2017-11-13,56,Evaluation needs to be conducted in 1 year,15,3.0,2.0,2.0,2.0,3.0,3.0,,3.0,,,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,S0436,43.636665656800005,-79.4404917741,309585.93,4832748.153
-895601,4154270,2017.0,2017.0,1973.0,PRIVATE,7,Humber River-Black Creek,4800 JANE ST,9,97,2017-11-13,52,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,3.0,3.0,3.0,1.0,2.0,,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,1.0,,W0724,43.7711875516,-79.5216643445,303040.481,4847691.41
-895602,4154268,2017.0,2017.0,1975.0,PRIVATE,7,Humber River-Black Creek,5000 JANE ST,13,291,2017-11-13,52,Evaluation needs to be conducted in 1 year,18,3.0,3.0,2.0,2.0,3.0,3.0,3.0,2.0,3.0,,2.0,3.0,3.0,3.0,2.0,3.0,2.0,3.0,2.0,,W0724,43.77371822600001,-79.52248674399999,303046.894,4847929.838
-895603,4154735,2017.0,2017.0,1959.0,PRIVATE,15,Don Valley West,28 UPPER CANADA DR,4,54,2017-11-13,78,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N1521,43.7522561858,-79.4046460528,312453.74100000004,4845645.083000001
-895604,4154737,2017.0,2017.0,1965.0,PRIVATE,15,Don Valley West,29 UPPER CANADA DR,4,54,2017-11-13,75,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,5.0,3.0,4.0,3.0,4.0,4.0,3.0,,N1521,43.752224986499996,-79.4034227428,312562.05100000004,4845588.969
-895605,4154736,2017.0,2017.0,1959.0,PRIVATE,15,Don Valley West,30 UPPER CANADA DR,4,54,2017-11-13,77,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,N1521,43.752919738900005,-79.4048046905,312470.577,4845582.9969999995
-895606,4154738,2017.0,2017.0,1965.0,PRIVATE,15,Don Valley West,31 UPPER CANADA DR,4,61,2017-11-13,72,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,5.0,3.0,4.0,3.0,4.0,3.0,3.0,,N1521,43.752982923999994,-79.40413326,312486.058,4845697.732
-895607,4154966,2017.0,2017.0,1963.0,PRIVATE,12,Toronto-St. Paul's,98 VAUGHAN RD,4,40,2017-11-13,61,Evaluation needs to be conducted in 1 year,14,3.0,3.0,2.0,3.0,,2.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,3.0,,S1229,43.683655701400006,-79.4214673851,311115.99199999997,4837969.748
-895608,4154957,2017.0,2017.0,1947.0,PRIVATE,12,Toronto-St. Paul's,113 VAUGHAN RD,3,12,2017-11-13,66,Evaluation needs to be conducted in 2 years,14,3.0,3.0,3.0,4.0,,4.0,,3.0,,,4.0,3.0,3.0,3.0,3.0,3.0,,4.0,3.0,,S1229,43.684381110699995,-79.4210952142,311145.925,4838050.37
-895609,4155435,2017.0,2017.0,1964.0,PRIVATE,1,Etobicoke North,3 TORBOLTON DR,3,18,2017-11-13,68,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,4.0,3.0,4.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,W0130,43.718334116099996,-79.55838532109999,300079.983,4841821.201
-895610,4152969,2017.0,2017.0,1960.0,PRIVATE,4,Parkdale-High Park,110 TYNDALL AVE,3,26,2017-11-13,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,,,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S0437,43.6369083236,-79.42913717489999,310502.058,4832775.785
-895611,4152968,2017.0,2017.0,1960.0,PRIVATE,4,Parkdale-High Park,112 TYNDALL AVE,3,27,2017-11-13,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S0437,43.637071615299995,-79.4291933844,310497.50800000003,4832793.922
-895612,4154279,2017.0,2017.0,1959.0,PRIVATE,5,York South-Weston,2050 KEELE ST,9,187,2017-11-13,53,Evaluation needs to be conducted in 1 year,20,3.0,3.0,3.0,3.0,2.0,3.0,2.0,2.0,3.0,2.0,3.0,3.0,3.0,3.0,2.0,2.0,3.0,3.0,2.0,3.0,W0529,43.6979738679,-79.4763948236,306687.153,4839557.752
-895613,4154267,2017.0,2017.0,1973.0,PRIVATE,7,Humber River-Black Creek,4001 STEELES AVE W,18,356,2017-11-13,61,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,,W0724,43.77414527,-79.524134475,302841.45399999997,4848021.011
-895614,4155030,2017.0,2017.0,1966.0,PRIVATE,12,Toronto-St. Paul's,795 VAUGHAN RD,8,106,2017-11-13,53,Evaluation needs to be conducted in 1 year,18,3.0,2.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,,3.0,2.0,3.0,3.0,2.0,2.0,2.0,3.0,3.0,,S1222,43.6952829956,-79.4482618257,308954.953,4839259.834
-895615,4154959,2017.0,2017.0,1955.0,PRIVATE,12,Toronto-St. Paul's,147 VAUGHAN RD,3,12,2017-11-13,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,,,3.0,3.0,5.0,2.0,3.0,3.0,,3.0,3.0,,S1229,43.6852816558,-79.4214805107,311114.77,4838150.393999999
-895616,4154975,2017.0,2017.0,1955.0,PRIVATE,12,Toronto-St. Paul's,189 VAUGHAN RD,4,16,2017-11-13,58,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,2.0,3.0,,3.0,,,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1229,43.6867106678,-79.421940478,311077.542,4838309.131
-895617,4154783,2017.0,2017.0,1962.0,PRIVATE,16,Don Valley East,1001 LAWRENCE AVE E,7,69,2017-11-13,72,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,3.0,3.0,4.0,4.0,3.0,4.0,3.0,3.0,,N1627,43.737112527,-79.3420220409,317509.87,4843917.656
-895618,4154798,2017.0,2017.0,1954.0,PRIVATE,16,Don Valley East,1002 LAWRENCE AVE E,4,77,2017-11-13,75,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,,4.0,,3.0,4.0,,4.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,,N1624,43.737992525299994,-79.3424983362,317471.31899999996,4844015.35
-895619,4264301,2017.0,2017.0,1961.0,PRIVATE,16,Don Valley East,60 NORTH HILLS TER,5,71,2017-11-13,72,Evaluation needs to be conducted in 2 years,17,3.0,3.0,5.0,4.0,,3.0,4.0,3.0,4.0,,4.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,4.0,,N1627,43.73018689,-79.34090279899999,317616.98,4843168.044
-895620,4155028,2017.0,2017.0,1968.0,PRIVATE,12,Toronto-St. Paul's,620 NORTHCLIFFE BLVD,9,68,2017-11-13,63,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,S1222,43.6935553458,-79.447286922,309033.655,4839067.943
-895621,4153065,2017.0,2017.0,1897.0,SOCIAL HOUSING,4,Parkdale-High Park,10 LANSDOWNE AVE,3,21,2017-11-13,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,,3.0,,4.0,,,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,S0435,43.6410463174,-79.4371700849,309853.582,4833234.996
-895622,4153064,2017.0,2017.0,1979.0,PRIVATE,4,Parkdale-High Park,12 LANSDOWNE AVE,3,26,2017-11-13,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,,,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,,S0435,43.6411898546,-79.4371749359,309853.179,4833250.942
-895623,4155495,2017.0,2017.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,2545 LAKE SHORE BLVD W,4,26,2017-11-13,66,Evaluation needs to be conducted in 2 years,14,3.0,3.0,3.0,3.0,,3.0,,4.0,,,4.0,3.0,5.0,3.0,3.0,3.0,,4.0,2.0,,W0336,43.609273426899996,-79.4898141501,305606.538,4829703.461
-895624,4155736,2017.0,2017.0,1967.0,PRIVATE,6,York Centre,6020 BATHURST ST,11,149,2017-11-13,63,Evaluation needs to be conducted in 1 year,19,4.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,2.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,N0622,43.7870875087,-79.4473742209,309020.18,4849458.928
-895625,4155737,2017.0,2017.0,1967.0,PRIVATE,6,York Centre,6030 BATHURST ST,19,247,2017-11-13,64,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,2.0,5.0,3.0,3.0,4.0,4.0,3.0,4.0,3.0,N0622,43.78782263430001,-79.4475892246,309002.816,4849540.586
-895626,4154005,2017.0,2017.0,1965.0,PRIVATE,12,Toronto-St. Paul's,990 AVENUE RD,4,40,2017-11-13,66,Evaluation needs to be conducted in 2 years,19,3.0,2.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1227,43.703408913500006,-79.4083878134,312168.155,4840165.401000001
-895627,4154901,2017.0,2017.0,1967.0,PRIVATE,16,Don Valley East,235 BROOKBANKS DR,4,41,2017-11-13,76,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,4.0,4.0,4.0,3.0,5.0,4.0,,3.0,4.0,4.0,3.0,3.0,4.0,4.0,3.0,4.0,,N1625,43.760400965100004,-79.3237597185,318975.435,4846507.812
-895628,4155056,2017.0,2017.0,1959.0,PRIVATE,8,Eglinton-Lawrence,1050 CASTLEFIELD AVE,5,64,2017-11-13,64,Evaluation needs to be conducted in 1 year,17,3.0,3.0,5.0,3.0,3.0,3.0,,2.0,3.0,,3.0,3.0,5.0,3.0,3.0,4.0,3.0,3.0,2.0,,N0831,43.7010927419,-79.4506862658,308759.154,4839905.141
-895629,4154628,2017.0,2017.0,1965.0,PRIVATE,6,York Centre,18 CEDARCROFT BLVD,12,117,2017-11-13,67,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,N0622,43.7839479718,-79.4474754127,309012.262,4849110.129
-895630,4166942,2017.0,2017.0,1967.0,PRIVATE,14,Toronto-Danforth,50 CAMBRIDGE AVE,21,275,2017-11-13,72,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,2.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,S1424,43.6775380937,-79.36035851140001,316044.00399999996,4837296.578
-895631,4166944,2017.0,2017.0,1967.0,PRIVATE,14,Toronto-Danforth,70 CAMBRIDGE AVE,21,275,2017-11-13,70,Evaluation needs to be conducted in 2 years,20,4.0,4.0,3.0,2.0,3.0,3.0,4.0,3.0,3.0,4.0,3.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,4.0,S1424,43.678116007,-79.3607869844,316009.354,4837360.726
-895632,4154781,2017.0,2017.0,1959.0,PRIVATE,16,Don Valley East,1065 DON MILLS RD,4,61,2017-11-13,74,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,3.0,5.0,4.0,3.0,3.0,4.0,3.0,3.0,,N1627,43.7359570079,-79.3424850802,317472.816,4843789.209
-895633,4154782,2017.0,2017.0,1959.0,PRIVATE,16,Don Valley East,1071 DON MILLS RD,4,61,2017-11-13,74,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,3.0,5.0,4.0,3.0,3.0,4.0,3.0,3.0,,N1627,43.7365519445,-79.3426250129,317461.42,4843855.285
-895634,4154301,2017.0,2017.0,1957.0,PRIVATE,5,York South-Weston,2368 KEELE ST,4,47,2017-11-13,60,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,W0529,43.70619654,-79.47813377899999,306573.365,4840472.875
-895635,4154300,2017.0,2017.0,1957.0,PRIVATE,5,York South-Weston,2370 KEELE ST,4,46,2017-11-13,56,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,2.0,2.0,3.0,,3.0,,2.0,2.0,2.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0529,43.706451928999996,-79.478254085,306536.791,4840500.558
-895636,4152883,2017.0,2017.0,1974.0,PRIVATE,23,Scarborough North,360 PITFIELD RD,18,246,2017-11-13,61,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,2.0,4.0,2.0,3.0,3.0,,2.0,2.0,5.0,4.0,3.0,4.0,3.0,3.0,4.0,,E2331,43.7880273326,-79.258614594,324212.061,4849590.142
-895637,4154009,2017.0,2017.0,1954.0,PRIVATE,8,Eglinton-Lawrence,107 ROSELAWN AVE,4,21,2017-11-13,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,3.0,,N0833,43.71000827,-79.4024838056,312643.143,4840899.127
-895638,4154626,2017.0,2017.0,1965.0,PRIVATE,6,York Centre,15 ROCKFORD RD,12,117,2017-11-13,66,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,,3.0,3.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,,N0622,43.784966077200004,-79.4478362845,308983.144,4849223.218
-895639,4152570,2017.0,2017.0,1970.0,PRIVATE,20,Scarborough Southwest,1080 KINGSTON RD,16,202,2017-11-13,72,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,,4.0,3.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,,E2033,43.6814135656,-79.2831322282,322269.682,4837740.411
-895640,4152573,2017.0,2017.0,1971.0,PRIVATE,20,Scarborough Southwest,1140 KINGSTON RD,5,34,2017-11-13,71,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,5.0,3.0,4.0,3.0,4.0,3.0,3.0,,E2033,43.681735253,-79.281298195,322417.201,4837777.498
-895641,4155489,2017.0,2017.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,2561 LAKE SHORE BLVD W,4,14,2017-11-13,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,4.0,3.0,5.0,2.0,3.0,3.0,,4.0,3.0,,W0336,43.6088644692,-79.4900435258,305588.026,4829658.026000001
-895642,4153461,2017.0,2017.0,1969.0,PRIVATE,13,Toronto Centre,40 GERRARD ST E,33,447,2017-11-10,61,Evaluation needs to be conducted in 1 year,19,3.0,4.0,3.0,2.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,,3.0,3.0,3.0,S1328,43.6598447463,-79.3804771262,314424.604,4835328.44
-895643,4153445,2017.0,2017.0,1973.0,PRIVATE,13,Toronto Centre,100 PEMBROKE ST,11,102,2017-11-10,65,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,2.0,3.0,2.0,4.0,4.0,,3.0,4.0,3.0,4.0,4.0,3.0,,4.0,2.0,,S1328,43.659658055200005,-79.3733983555,314995.566,4835308.5030000005
-895644,4171378,2017.0,2017.0,1973.0,PRIVATE,11,University-Rosedale,77 GERRARD ST W,22,220,2017-11-10,73,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,4.0,,4.0,4.0,5.0,3.0,3.0,4.0,3.0,4.0,4.0,,S1145,,,314029.142,4835153.24
-895645,4152741,2017.0,2017.0,1965.0,PRIVATE,24,Scarborough-Guildwood,960 MARKHAM RD,15,181,2017-11-10,62,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,2.0,2.0,3.0,3.0,4.0,4.0,,2.0,2.0,5.0,4.0,3.0,3.0,4.0,2.0,3.0,3.0,E2425,43.771935488000004,-79.2306318513,326469.941,4847809.335
-895646,4154116,2017.0,2017.0,1968.0,PRIVATE,14,Toronto-Danforth,130 GOWAN AVE,12,160,2017-11-10,59,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,4.0,2.0,3.0,2.0,,3.0,2.0,4.0,3.0,3.0,3.0,2.0,3.0,3.0,,S1421,43.6884286813,-79.3499828306,316878.417,4838507.925
-895647,4154201,2017.0,2017.0,1950.0,PRIVATE,15,Don Valley West,896 EGLINTON AVE E,4,43,2017-11-10,67,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,,,3.0,3.0,5.0,3.0,4.0,4.0,,3.0,3.0,,N1529,43.7142674187,-79.3630347401,315821.42699999997,4841376.723
-895648,4154199,2017.0,2017.0,1958.0,PRIVATE,15,Don Valley West,904 EGLINTON AVE E,4,22,2017-11-10,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N1529,43.71442413,-79.362206452,315887.881,4841395.201
-895649,4154109,2017.0,2017.0,1992.0,SOCIAL HOUSING,14,Toronto-Danforth,156 FLOYD AVE,6,41,2017-11-10,72,Evaluation needs to be conducted in 2 years,20,3.0,4.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,5.0,4.0,4.0,4.0,2.0,4.0,4.0,4.0,S1421,43.6876986854,-79.3490675447,316952.351,4838426.955
-895650,4153484,2017.0,2017.0,1900.0,SOCIAL HOUSING,13,Toronto Centre,32 GRENVILLE ST,12,50,2017-11-10,67,Evaluation needs to be conducted in 2 years,18,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,4.0,,3.0,3.0,4.0,S1325,,,314032.437,4835559.403
-895651,4154897,2017.0,2017.0,1961.0,PRIVATE,16,Don Valley East,50 UNDERHILL DR,4,64,2017-11-10,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,5.0,4.0,4.0,3.0,4.0,3.0,4.0,,N1625,43.7447615515,-79.3267702279,318736.654,4844769.875
-895652,4154896,2017.0,2017.0,1961.0,PRIVATE,16,Don Valley East,60 UNDERHILL DR,4,57,2017-11-10,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N1625,43.745451968199994,-79.3263683748,318768.86,4844846.641
-895653,4155460,2017.0,2017.0,1970.0,PRIVATE,1,Etobicoke North,40 STEVENSON RD,13,176,2017-11-10,54,Evaluation needs to be conducted in 1 year,18,2.0,2.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,,3.0,4.0,3.0,2.0,3.0,3.0,1.0,3.0,3.0,,W0123,43.744225113999995,-79.585660851,297884.978,4844700.386
-895654,4153733,2017.0,2017.0,1950.0,PRIVATE,11,University-Rosedale,464 SUMMERHILL AVE,3,19,2017-11-10,60,Evaluation needs to be conducted in 1 year,15,3.0,2.0,3.0,2.0,3.0,3.0,,3.0,,,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,3.0,,S1130,43.686586172,-79.37511600399999,314852.311,4838300.882
-895655,4154613,2017.0,2017.0,1960.0,PRIVATE,6,York Centre,10 WILMINGTON AVE,3,39,2017-11-10,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0624,43.753111203,-79.453124981,308559.203,4845684.975
-895656,4155441,2017.0,2017.0,1962.0,PRIVATE,1,Etobicoke North,39 LEDUC DR,3,13,2017-11-10,68,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,4.0,3.0,4.0,,4.0,,,4.0,2.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,W0130,43.7183839907,-79.5579415318,300115.74600000004,4841826.716
-895657,4237447,2017.0,2017.0,1971.0,PRIVATE,15,Don Valley West,95 THORNCLIFFE PARK DR,43,496,2017-11-10,76,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,3.0,,4.0,3.0,,N1533,43.707232400100004,-79.3412260815,317580.333,4840598.257
-895658,4154147,2017.0,2017.0,1955.0,PRIVATE,15,Don Valley West,6 MILEPOST PL,6,82,2017-11-10,72,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,4.0,3.0,4.0,,3.0,3.0,4.0,3.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N1533,43.702214085,-79.34780065,317051.503,4840039.741
-895659,4153734,2017.0,2017.0,1969.0,PRIVATE,11,University-Rosedale,10 LAMPORT AVE,4,36,2017-11-10,74,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,4.0,4.0,5.0,4.0,3.0,4.0,4.0,3.0,3.0,,S1131,43.6788601061,-79.3775615187,314656.669,4837441.278
-895660,4152763,2017.0,2017.0,1965.0,PRIVATE,21,Scarborough Centre,370 MCCOWAN RD,15,207,2017-11-10,74,Evaluation needs to be conducted in 2 years,20,4.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,5.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,E2135,43.7399757697,-79.2395009689,325767.041,4844256.48
-895661,4154915,2017.0,2017.0,1961.0,PRIVATE,16,Don Valley East,1325 YORK MILLS RD,4,64,2017-11-10,63,Evaluation needs to be conducted in 1 year,18,4.0,2.0,2.0,4.0,3.0,3.0,4.0,4.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,N1625,43.7616285056,-79.3217659908,319135.683,4846644.525
-895662,4264915,2017.0,2017.0,1959.0,PRIVATE,11,University-Rosedale,103 AVENUE RD,11,124,2017-11-10,70,Evaluation needs to be conducted in 2 years,18,5.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,,4.0,4.0,5.0,3.0,3.0,3.0,2.0,3.0,2.0,,S1128,43.672819085,-79.395361896,313221.95399999997,4836769.088
-895663,4154687,2017.0,2017.0,1950.0,SOCIAL HOUSING,6,York Centre,4085 BATHURST ST,3,10,2017-11-10,65,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,4.0,3.0,3.0,,3.0,,,4.0,3.0,5.0,3.0,2.0,4.0,,3.0,3.0,,N0630,43.74471057069999,-79.4354450198,309983.913,4844751.683999999
-895664,4153767,2017.0,2017.0,1973.0,PRIVATE,12,Toronto-St. Paul's,33 DAVISVILLE AVE,21,266,2017-11-10,73,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,,S1233,43.698395188599996,-79.39492383470001,313253.99199999997,4839609.66
-895665,4171428,2017.0,2017.0,1970.0,PRIVATE,12,Toronto-St. Paul's,77 DAVISVILLE AVE,30,483,2017-11-10,73,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,S1233,,,313348.791,4839615.708000001
-895666,4153768,2017.0,2017.0,1970.0,PRIVATE,12,Toronto-St. Paul's,111 DAVISVILLE AVE,24,371,2017-11-10,73,Evaluation needs to be conducted in 2 years,19,4.0,3.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,,3.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,4.0,4.0,S1233,43.698778807,-79.3922142682,313472.354,4839652.56
-895667,4153769,2017.0,2017.0,1970.0,PRIVATE,12,Toronto-St. Paul's,141 DAVISVILLE AVE,20,313,2017-11-10,68,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,4.0,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1233,43.69919110479999,-79.3914184257,313536.446,4839698.45
-895668,4154681,2017.0,2017.0,1964.0,PRIVATE,8,Eglinton-Lawrence,4000 YONGE ST,8,305,2017-11-10,74,Evaluation needs to be conducted in 2 years,20,4.0,3.0,4.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,5.0,3.0,5.0,3.0,3.0,3.0,4.0,4.0,N0824,43.742532089899996,-79.40680954369999,312290.501,4844511.8780000005
-895669,4155143,2017.0,2017.0,1954.0,PRIVATE,5,York South-Weston,133 WOODWARD AVE,3,11,2017-11-10,64,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,,3.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,4.0,,4.0,3.0,,W0525,43.7094490661,-79.5079325701,304145.213,4840832.415
-895670,4154921,2017.0,2017.0,1967.0,PRIVATE,16,Don Valley East,32 CLAYLAND DR,5,64,2017-11-10,74,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,4.0,5.0,4.0,3.0,4.0,4.0,3.0,3.0,,N1622,43.7604975469,-79.3303911493,318441.452,4846517.44
-895671,4153012,2017.0,2017.0,1958.0,PRIVATE,4,Parkdale-High Park,150 DOWLING AVE,7,66,2017-11-10,72,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,5.0,4.0,,4.0,4.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,S0436,43.6378411067,-79.43950512159999,309665.443,4832878.791999999
-895672,4257265,2017.0,2017.0,1969.0,PRIVATE,11,University-Rosedale,95 DAVENPORT RD,3,26,2017-11-10,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,,,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,3.0,,S1128,43.673636335,-79.391647025,313521.42,4836860.285
-895673,4152625,2017.0,2017.0,1955.0,PRIVATE,21,Scarborough Centre,23 CRAIGTON DR,4,36,2017-11-10,74,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,3.0,4.0,4.0,,4.0,,,3.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,,E2131,43.727213093900005,-79.3004559002,320860.717,4842825.09
-895674,4253901,2017.0,2017.0,1963.0,PRIVATE,14,Toronto-Danforth,20 COSBURN AVE,3,30,2017-11-10,65,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,2.0,4.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,S1421,43.688697769300006,-79.3541118682,316545.506,4838537.252
-895675,4154111,2017.0,2017.0,1962.0,PRIVATE,14,Toronto-Danforth,25 COSBURN AVE,22,129,2017-11-10,66,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,1.0,4.0,3.0,3.0,3.0,4.0,,3.0,1.0,2.0,4.0,4.0,5.0,3.0,4.0,3.0,,S1421,43.6881435504,-79.3536043403,316586.531,4838475.75
-895676,4154131,2017.0,2017.0,1965.0,PRIVATE,14,Toronto-Danforth,30 COSBURN AVE,5,26,2017-11-10,59,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,2.0,3.0,3.0,,3.0,,,2.0,3.0,5.0,3.0,2.0,3.0,3.0,3.0,2.0,,S1421,43.6889031771,-79.35273098340001,316656.787,4838560.2639999995
-895677,4155157,2017.0,2017.0,1963.0,PRIVATE,5,York South-Weston,29 CHURCH ST,10,63,2017-11-10,49,Building Audit,17,2.0,3.0,3.0,1.0,2.0,3.0,,4.0,3.0,,2.0,2.0,3.0,2.0,3.0,2.0,4.0,2.0,1.0,,W0524,43.7037504751,-79.52345642899999,302893.972,4840199.653
-895678,4156521,2017.0,2017.0,1978.0,PRIVATE,22,Scarborough-Agincourt,65 SILVER SPRINGS BLVD,9,88,2017-11-10,73,Evaluation needs to be conducted in 2 years,19,4.0,4.0,2.0,3.0,4.0,4.0,4.0,3.0,2.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2223,43.801321025,-79.304237888,320562.482,4850959.102
-895679,4156533,2017.0,2017.0,1978.0,PRIVATE,22,Scarborough-Agincourt,75 SILVER SPRINGS BLVD,9,153,2017-11-10,71,Evaluation needs to be conducted in 2 years,18,4.0,3.0,2.0,3.0,4.0,4.0,3.0,3.0,3.0,,4.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,,E2223,43.801480966999996,-79.302703022,,
-895680,4152628,2017.0,2017.0,1955.0,PRIVATE,21,Scarborough Centre,4 RANNOCK ST,4,26,2017-11-10,68,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,3.0,3.0,3.0,,4.0,,,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,3.0,,E2131,43.7284154866,-79.3006056472,320848.332,4842958.6389999995
-895681,4152634,2017.0,2017.0,1959.0,PRIVATE,21,Scarborough Centre,5 RANNOCK ST,4,28,2017-11-10,64,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,2.0,,4.0,,3.0,3.0,1.0,5.0,4.0,4.0,3.0,3.0,3.0,4.0,,E2131,43.7284977107,-79.2991802272,320963.145,4842968.046
-895682,4152629,2017.0,2017.0,1955.0,PRIVATE,21,Scarborough Centre,8 RANNOCK ST,4,33,2017-11-10,68,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,4.0,4.0,,4.0,,3.0,3.0,4.0,5.0,2.0,3.0,3.0,4.0,3.0,3.0,,E2131,43.7287170868,-79.3000634846,320891.929,4842992.248
-895683,4233264,2017.0,2017.0,2007.0,PRIVATE,13,Toronto Centre,50 GERRARD ST E,12,188,2017-11-10,78,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,3.0,4.0,4.0,S1328,43.6599201905,-79.3793368695,314521.382,4835356.313999999
-895684,4155872,2017.0,2017.0,1910.0,PRIVATE,13,Toronto Centre,592 CHURCH ST,3,12,2017-11-09,56,Evaluation needs to be conducted in 1 year,14,2.0,3.0,3.0,2.0,,2.0,,3.0,,,2.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,S1322,43.667031521000006,-79.3817873,314317.525,4836127.624
-895685,4153534,2017.0,2017.0,1910.0,PRIVATE,13,Toronto Centre,608 CHURCH ST,4,35,2017-11-09,67,Evaluation needs to be conducted in 2 years,14,3.0,4.0,4.0,3.0,,2.0,,3.0,,,3.0,4.0,4.0,3.0,3.0,4.0,,4.0,3.0,,S1322,43.668016038599994,-79.3820793431,314294.076,4836236.013
-895686,4153476,2017.0,2017.0,1973.0,PRIVATE,13,Toronto Centre,140 CARLTON ST,23,375,2017-11-09,62,Evaluation needs to be conducted in 1 year,19,4.0,4.0,4.0,3.0,1.0,3.0,3.0,3.0,3.0,,3.0,4.0,5.0,4.0,2.0,3.0,3.0,3.0,1.0,3.0,S1326,43.66315507,-79.375194012,314849.88800000004,4835697.742
-895687,4153516,2017.0,2017.0,1977.0,PRIVATE,11,University-Rosedale,57 CHARLES ST W,21,250,2017-11-09,75,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,4.0,4.0,3.0,3.0,3.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,3.0,S1136,43.6677808875,-79.3895276308,313693.429,4836209.063999999
-895688,4154112,2017.0,2017.0,1973.0,PRIVATE,14,Toronto-Danforth,55 COSBURN AVE,12,155,2017-11-09,63,Evaluation needs to be conducted in 1 year,19,3.0,4.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,4.0,3.0,3.0,,S1421,43.6884922382,-79.3520019211,316715.641,4838514.709
-895689,4154107,2017.0,2017.0,1973.0,PRIVATE,14,Toronto-Danforth,1111 BROADVIEW AVE,4,41,2017-11-09,59,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,3.0,3.0,,2.0,,3.0,3.0,2.0,4.0,3.0,3.0,3.0,3.0,2.0,3.0,,S1421,43.6865969215,-79.3555102879,316433.186,4838303.661
-895690,4261713,2017.0,2017.0,1945.0,PRIVATE,18,Willowdale,4 OAKBURN CRES,3,11,2017-11-09,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,4.0,3.0,4.0,,2.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N1828,43.758599533,-79.405110246,312421.145,4846296.211
-895691,4261715,2017.0,2017.0,1945.0,PRIVATE,18,Willowdale,6 OAKBURN CRES,3,11,2017-11-09,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,4.0,3.0,4.0,,2.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,2.0,3.0,,N1828,43.75869476,-79.404771805,312452.32899999997,4846308.568
-895692,4261716,2017.0,2017.0,1945.0,PRIVATE,18,Willowdale,8 OAKBURN CRES,3,11,2017-11-09,66,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,4.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,5.0,3.0,,N1828,43.758770542,-79.40441187100001,312481.303,4846317.021000001
-895693,4261717,2017.0,2017.0,1945.0,PRIVATE,18,Willowdale,10 OAKBURN CRES,3,11,2017-11-09,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,2.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,5.0,3.0,,N1828,43.758838149,-79.404040398,312530.397,4846334.063
-895694,4261719,2017.0,2017.0,1945.0,PRIVATE,18,Willowdale,12 OAKBURN CRES,3,11,2017-11-09,66,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,4.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,5.0,3.0,,N1828,43.758987273,-79.403808031,312533.428,4846393.567
-895695,4152810,2017.0,2017.0,1969.0,PRIVATE,24,Scarborough-Guildwood,421 MARKHAM RD,12,159,2017-11-09,43,Building Audit,18,3.0,1.0,3.0,2.0,1.0,3.0,1.0,3.0,2.0,,1.0,1.0,1.0,4.0,2.0,2.0,3.0,4.0,2.0,,E2430,43.7506077851,-79.2210328403,327250.61699999997,4845442.448
-895696,4152812,2017.0,2017.0,1995.0,SOCIAL HOUSING,24,Scarborough-Guildwood,525 MARKHAM RD,8,115,2017-11-09,62,Evaluation needs to be conducted in 1 year,19,3.0,4.0,2.0,3.0,4.0,4.0,4.0,2.0,3.0,,1.0,2.0,3.0,3.0,4.0,3.0,4.0,3.0,3.0,4.0,E2430,43.756754208000004,-79.223973575,327027.68100000004,4846037.557
-895697,4156156,2017.0,2017.0,1969.0,PRIVATE,15,Don Valley West,322 EGLINTON AVE E,20,207,2017-11-09,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,,4.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,,N1537,,,313787.708,4840784.051
-895698,4154121,2017.0,2017.0,1970.0,PRIVATE,14,Toronto-Danforth,33 GAMBLE AVE,4,28,2017-11-09,65,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,,3.0,4.0,4.0,5.0,3.0,2.0,3.0,3.0,2.0,3.0,,S1421,43.6894011372,-79.352872034,316645.318,4838615.567
-895699,4154122,2017.0,2017.0,1974.0,PRIVATE,14,Toronto-Danforth,45 GAMBLE AVE,6,49,2017-11-09,64,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,3.0,,2.0,4.0,5.0,3.0,2.0,3.0,3.0,2.0,4.0,,S1421,43.689482846000004,-79.3524948053,316675.712,4838624.697
-895700,4153514,2017.0,2017.0,1970.0,PRIVATE,13,Toronto Centre,15 DUNDONALD ST,24,172,2017-11-09,65,Evaluation needs to be conducted in 1 year,19,4.0,4.0,4.0,3.0,5.0,3.0,2.0,3.0,3.0,,3.0,2.0,3.0,2.0,4.0,3.0,4.0,3.0,3.0,4.0,S1322,43.665727503,-79.383887543,314148.344,4835982.525
-895701,4154198,2017.0,2017.0,1945.0,PRIVATE,15,Don Valley West,958 EGLINTON AVE E,3,24,2017-11-09,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N1529,43.714859025,-79.36014009,316054.311,4841443.795
-895702,4154195,2017.0,2017.0,1944.0,PRIVATE,15,Don Valley West,960 EGLINTON AVE E,3,16,2017-11-09,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N1529,43.71515813,-79.359256459,316125.459,4841477.143
-895703,4154194,2017.0,2017.0,1954.0,PRIVATE,15,Don Valley West,964 EGLINTON AVE E,3,12,2017-11-09,67,Evaluation needs to be conducted in 2 years,14,4.0,3.0,3.0,3.0,,4.0,,4.0,,,3.0,4.0,5.0,3.0,3.0,2.0,,3.0,3.0,,N1529,43.715197605,-79.359028944,316143.785,4841481.558999999
-895704,4154193,2017.0,2017.0,1965.0,PRIVATE,15,Don Valley West,970 EGLINTON AVE E,4,50,2017-11-09,69,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,3.0,3.0,4.0,,4.0,3.0,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,4.0,,N1529,43.715346487,-79.358584186,316179.596,4841498.159
-895705,4153037,2017.0,2017.0,1992.0,SOCIAL HOUSING,4,Parkdale-High Park,240 DUNN AVE,5,72,2017-11-09,77,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,4.0,4.0,2.0,4.0,4.0,3.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,S0436,43.639805704,-79.434352266,310080.767,4833098.29
-895706,4154136,2017.0,2017.0,1964.0,PRIVATE,14,Toronto-Danforth,20 GAMBLE AVE,12,213,2017-11-09,60,Evaluation needs to be conducted in 1 year,19,3.0,4.0,4.0,3.0,2.0,3.0,2.0,3.0,3.0,,3.0,3.0,5.0,2.0,3.0,3.0,3.0,2.0,3.0,3.0,S1421,43.6898019641,-79.3535830039,316587.924,4838659.999
-895707,4153535,2017.0,2017.0,1960.0,PRIVATE,13,Toronto Centre,60 GLOUCESTER ST,11,77,2017-11-09,74,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,2.0,,S1322,43.6673903164,-79.3827012027,314244.024,4836166.429
-895708,4154305,2017.0,2017.0,1954.0,PRIVATE,5,York South-Weston,2419 KEELE ST,3,12,2017-11-09,60,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,2.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0523,43.710244385200006,-79.4780441622,306553.864,4840920.932
-895709,4154353,2017.0,2017.0,1958.0,PRIVATE,5,York South-Weston,2420 KEELE ST,3,11,2017-11-09,51,Evaluation needs to be conducted in 1 year,16,3.0,2.0,3.0,2.0,2.0,3.0,,2.0,,2.0,2.0,2.0,5.0,3.0,2.0,3.0,,3.0,2.0,,W0526,43.7102484483,-79.47881998310001,306491.343,4840921.369
-895710,4154306,2017.0,2017.0,1953.0,PRIVATE,5,York South-Weston,2421 KEELE ST,3,12,2017-11-09,65,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,4.0,2.0,,3.0,,,3.0,2.0,5.0,4.0,4.0,3.0,,4.0,3.0,,W0523,43.710527185100005,-79.478108176,306548.697,4840952.348
-895711,4154307,2017.0,2017.0,1954.0,PRIVATE,5,York South-Weston,2423 KEELE ST,3,12,2017-11-09,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,3.0,2.0,5.0,4.0,4.0,3.0,,4.0,3.0,,W0523,43.710785688,-79.4782587773,306536.553,4840981.063
-895712,4250529,2017.0,2017.0,1965.0,PRIVATE,5,York South-Weston,2255 WESTON RD,12,101,2017-11-09,62,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,3.0,4.0,4.0,4.0,3.0,,3.0,2.0,4.0,3.0,4.0,3.0,3.0,3.0,2.0,,W0524,43.7045706478,-79.52743150170001,302573.625,4840290.883
-895713,4155151,2017.0,2017.0,1940.0,PRIVATE,5,York South-Weston,50 JOHN ST,3,14,2017-11-09,71,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,3.0,4.0,3.0,,2.0,,,4.0,4.0,5.0,3.0,4.0,4.0,,3.0,3.0,,W0525,43.703370512,-79.516414059,303461.293,4840158.234
-895714,4156614,2017.0,2017.0,2010.0,PRIVATE,18,Willowdale,105 HARRISON GARDEN BLVD,22,332,2017-11-09,82,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,,5.0,4.0,3.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,N1828,43.757534101000005,-79.40497951399999,,
-895715,4153897,2017.0,2017.0,1960.0,PRIVATE,12,Toronto-St. Paul's,55 MONTCLAIR AVE,6,54,2017-11-09,71,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,1.0,4.0,3.0,3.0,4.0,3.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,,S1230,43.687382201999995,-79.413225309,311779.843,4838385.392
-895716,4153896,2017.0,2017.0,1970.0,PRIVATE,12,Toronto-St. Paul's,80 MONTCLAIR AVE,6,60,2017-11-09,64,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,1.0,4.0,4.0,3.0,4.0,3.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,,S1230,43.687630803000005,-79.414527721,311674.80199999997,4838412.896000001
-895717,4154159,2017.0,2017.0,1971.0,PRIVATE,15,Don Valley West,85 THORNCLIFFE PARK DR,43,500,2017-11-09,73,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,4.0,4.0,4.0,3.0,5.0,4.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,,4.0,3.0,4.0,N1533,43.707232400100004,-79.3412260815,317580.333,4840598.257
-895718,4154148,2017.0,2017.0,1960.0,PRIVATE,15,Don Valley West,8 MILEPOST PL,6,76,2017-11-09,71,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,4.0,4.0,4.0,,3.0,2.0,3.0,3.0,3.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,,N1533,43.7025432153,-79.34725427949999,317095.469,4840076.383
-895719,4153015,2017.0,2017.0,1960.0,PRIVATE,4,Parkdale-High Park,32 MAYNARD AVE,8,43,2017-11-09,70,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,3.0,2.0,,4.0,4.0,,4.0,3.0,5.0,3.0,2.0,3.0,4.0,4.0,3.0,4.0,S0436,43.6382286578,-79.4382671328,309765.298,4832921.915
-895720,4261712,2017.0,2017.0,1945.0,PRIVATE,18,Willowdale,2 OAKBURN CRES,3,11,2017-11-09,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,4.0,3.0,3.0,,2.0,,3.0,4.0,2.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N1828,43.758631647,-79.405405385,312377.294,4846310.018
-895721,4154103,2017.0,2017.0,1950.0,PRIVATE,14,Toronto-Danforth,120 COSBURN AVE,6,57,2017-11-09,69,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,2.0,3.0,,3.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1422,43.6898605522,-79.3481479034,317026.043,4838667.263
-895722,4154904,2017.0,2017.0,1962.0,PRIVATE,16,Don Valley East,66 PARKWOODS VILLAGE DR,6,65,2017-11-09,66,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,3.0,4.0,3.0,3.0,4.0,4.0,4.0,3.0,,N1625,43.759603392399995,-79.3222223212,319099.419,4846419.464
-895723,4154100,2017.0,2017.0,1927.0,PRIVATE,14,Toronto-Danforth,250 COSBURN AVE,6,40,2017-11-09,64,Evaluation needs to be conducted in 1 year,18,2.0,3.0,3.0,3.0,3.0,4.0,,4.0,2.0,4.0,3.0,4.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,,S1422,43.6909297022,-79.3426537067,317468.714,4838786.84
-895724,4153784,2017.0,2017.0,1955.0,PRIVATE,12,Toronto-St. Paul's,107 REDPATH AVE,4,31,2017-11-09,60,Evaluation needs to be conducted in 1 year,17,3.0,2.0,3.0,3.0,3.0,2.0,,3.0,2.0,3.0,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1228,43.7072705538,-79.3921611065,313475.429,4840596.0
-895725,4154902,2017.0,2017.0,1962.0,PRIVATE,16,Don Valley East,76 PARKWOODS VILLAGE DR,6,65,2017-11-09,64,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,3.0,3.0,3.0,2.0,3.0,3.0,4.0,3.0,4.0,5.0,3.0,2.0,4.0,4.0,3.0,2.0,,N1625,43.760185352700006,-79.32325685810001,319015.977,4846483.943
-895726,4167696,2017.0,2017.0,1955.0,PRIVATE,5,York South-Weston,2248 KEELE ST,3,11,2017-11-09,55,Evaluation needs to be conducted in 1 year,15,3.0,2.0,3.0,3.0,2.0,3.0,,2.0,,,3.0,2.0,3.0,3.0,3.0,3.0,,3.0,3.0,,W0529,43.701682814099996,-79.476932762,306643.684,4839969.797
-895727,4154287,2017.0,2017.0,1958.0,PRIVATE,5,York South-Weston,2250 KEELE ST,3,10,2017-11-09,41,Building Audit,15,2.0,2.0,2.0,2.0,2.0,3.0,,2.0,,,2.0,2.0,2.0,2.0,2.0,2.0,,2.0,2.0,,W0529,43.701887925200005,-79.4769449452,306642.696,4839992.584
-895728,4153806,2017.0,2017.0,1970.0,PRIVATE,15,Don Valley West,299 ROEHAMPTON AVE,12,224,2017-11-09,79,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N1537,,,313710.32399999996,4840865.462
-895729,4261706,2017.0,2017.0,2015.0,PRIVATE,15,Don Valley West,305 ROEHAMPTON AVE,16,221,2017-11-09,84,Evaluation needs to be conducted in 2 years,18,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,5.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,N1537,43.709676333000004,-79.388685206,313732.785,4840864.055
-895730,4268538,2017.0,2017.0,1974.0,PRIVATE,5,York South-Weston,33 KING ST,27,420,2017-11-09,66,Evaluation needs to be conducted in 2 years,19,4.0,3.0,3.0,2.0,3.0,3.0,4.0,4.0,3.0,,3.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,W0525,43.702394008999995,-79.519023817,303250.92600000004,4840049.806
-895731,4152698,2017.0,2017.0,1960.0,PRIVATE,21,Scarborough Centre,806 KENNEDY RD,5,57,2017-11-09,61,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,2.0,5.0,4.0,3.0,2.0,3.0,3.0,3.0,,E2133,43.7335331794,-79.2693313625,323366.283,4843533.666999999
-895732,4152705,2017.0,2017.0,1969.0,PRIVATE,21,Scarborough Centre,815 KENNEDY RD,5,33,2017-11-09,67,Evaluation needs to be conducted in 2 years,17,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,4.0,,4.0,3.0,5.0,3.0,3.0,4.0,2.0,3.0,3.0,,E2133,43.734340366800005,-79.2681240316,323463.283,4843623.61
-895733,4152707,2017.0,2017.0,1961.0,PRIVATE,21,Scarborough Centre,821 KENNEDY RD,6,59,2017-11-09,59,Evaluation needs to be conducted in 1 year,17,4.0,4.0,4.0,2.0,3.0,1.0,,2.0,4.0,,3.0,3.0,5.0,4.0,2.0,2.0,2.0,3.0,2.0,,E2133,43.735133526599995,-79.26857423850001,323426.766,4843711.623
-895734,4155152,2017.0,2017.0,1974.0,PRIVATE,5,York South-Weston,150 ROSEMOUNT AVE,5,31,2017-11-09,54,Evaluation needs to be conducted in 1 year,18,2.0,2.0,2.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,4.0,3.0,2.0,2.0,3.0,3.0,2.0,,W0525,43.70408526479999,-79.51980573899999,303188.223,4840236.751
-895735,4153892,2017.0,2017.0,1965.0,PRIVATE,12,Toronto-St. Paul's,1545 BATHURST ST,6,56,2017-11-09,68,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,4.0,4.0,4.0,5.0,4.0,3.0,3.0,,3.0,3.0,,S1230,43.6861472911,-79.4191187193,311305.095,4838246.749
-895736,4154993,2017.0,2017.0,1948.0,PRIVATE,12,Toronto-St. Paul's,1594 BATHURST ST,3,22,2017-11-09,61,Evaluation needs to be conducted in 1 year,15,4.0,4.0,3.0,3.0,2.0,3.0,,3.0,,,3.0,1.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1229,43.687863917,-79.4206373441,311182.48699999996,4838437.357
-895737,4154990,2017.0,2017.0,1923.0,PRIVATE,12,Toronto-St. Paul's,1602 BATHURST ST,4,32,2017-11-09,60,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,3.0,1.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,2.0,,3.0,3.0,,S1229,43.688611529700005,-79.4209411738,311157.917,4838520.396000001
-895738,4156580,2017.0,2017.0,1967.0,PRIVATE,16,Don Valley East,1200 YORK MILLS RD,16,222,2017-11-09,65,Evaluation needs to be conducted in 1 year,19,4.0,3.0,4.0,4.0,4.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N1622,43.759658618,-79.3350153122,318069.30199999997,4846423.49
-895739,4156579,2017.0,2017.0,1967.0,PRIVATE,16,Don Valley East,1202 YORK MILLS RD,22,219,2017-11-09,60,Evaluation needs to be conducted in 1 year,19,3.0,2.0,4.0,4.0,4.0,2.0,3.0,3.0,3.0,2.0,3.0,3.0,4.0,3.0,3.0,2.0,3.0,3.0,3.0,,N1622,43.7606174266,-79.3350540559,318065.974,4846530.005
-895740,4154927,2017.0,2017.0,1963.0,PRIVATE,16,Don Valley East,1210 YORK MILLS RD,10,91,2017-11-09,71,Evaluation needs to be conducted in 2 years,19,3.0,3.0,3.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,,N1622,43.759908428,-79.3335295503,318188.88300000003,4846451.482
-895741,4154925,2017.0,2017.0,1963.0,PRIVATE,16,Don Valley East,1222 YORK MILLS RD,4,25,2017-11-09,79,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,4.0,4.0,,5.0,4.0,4.0,4.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,,N1622,43.760105976700004,-79.3318752196,318322.047,4846473.697
-895742,4154920,2017.0,2017.0,1963.0,PRIVATE,16,Don Valley East,1264 YORK MILLS RD,7,76,2017-11-09,53,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,2.0,2.0,3.0,2.0,3.0,3.0,,2.0,3.0,3.0,3.0,3.0,3.0,1.0,3.0,2.0,,N1622,43.7611846362,-79.3275443337,318670.516,4846594.241
-895743,4153358,2017.0,2017.0,1925.0,PRIVATE,12,Toronto-St. Paul's,320 AVENUE RD,4,24,2017-11-09,60,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,2.0,3.0,,3.0,,,3.0,3.0,4.0,2.0,3.0,3.0,3.0,3.0,3.0,,S1237,43.680275983,-79.399224134,312909.538,4837597.137
-895744,4167693,2017.0,2017.0,1925.0,PRIVATE,12,Toronto-St. Paul's,326 AVENUE RD,3,18,2017-11-09,60,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,4.0,2.0,3.0,3.0,,2.0,3.0,,S1237,43.680405146000005,-79.399282271,312904.833,4837611.481000001
-895745,4170952,2017.0,2017.0,1925.0,PRIVATE,12,Toronto-St. Paul's,330 AVENUE RD,3,19,2017-11-09,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1237,43.680535547,-79.399334602,312900.596,4837625.963
-895746,4153364,2017.0,2017.0,1925.0,PRIVATE,12,Toronto-St. Paul's,340 AVENUE RD,4,24,2017-11-09,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,2.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,2.0,3.0,3.0,3.0,3.0,,S1237,43.680836511,-79.39947188800001,312889.488,4837659.387
-895747,4153363,2017.0,2017.0,1925.0,PRIVATE,12,Toronto-St. Paul's,342 AVENUE RD,4,24,2017-11-09,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,2.0,3.0,3.0,3.0,3.0,,S1237,43.680979699,-79.399528877,312884.875,4837675.29
-895748,4153887,2017.0,2017.0,1957.0,PRIVATE,12,Toronto-St. Paul's,484 AVENUE RD,13,118,2017-11-09,72,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,4.0,5.0,3.0,3.0,4.0,3.0,3.0,3.0,,S1231,43.687301393,-79.40232434100001,312658.70399999997,4838377.38
-895749,4153886,2017.0,2017.0,1956.0,PRIVATE,12,Toronto-St. Paul's,494 AVENUE RD,13,118,2017-11-09,72,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,3.0,4.0,3.0,3.0,4.0,3.0,4.0,4.0,3.0,5.0,4.0,3.0,3.0,3.0,4.0,3.0,,S1231,43.687758523,-79.402478988,312646.179,4838428.152
-895750,4153825,2017.0,2017.0,1963.0,PRIVATE,12,Toronto-St. Paul's,75 BROADWAY AVE,10,205,2017-11-09,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,,4.0,4.0,5.0,3.0,4.0,3.0,4.0,3.0,4.0,4.0,S1221,43.709951708999995,-79.394607069,313277.659,4840894.571
-895751,4153480,2017.0,2017.0,1994.0,SOCIAL HOUSING,13,Toronto Centre,84 CARLTON ST,12,154,2017-11-09,67,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,2.0,3.0,3.0,3.0,4.0,3.0,,3.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,S1326,43.6622405151,-79.3787026496,314567.32,4835594.787
-895752,4153423,2017.0,2017.0,2005.0,PRIVATE,13,Toronto Centre,167 CHURCH ST,28,388,2017-11-09,82,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,3.0,5.0,S1332,43.6544377686,-79.37596115630001,314805.505,4834950.321
-895753,4153425,2017.0,2017.0,1900.0,SOCIAL HOUSING,13,Toronto Centre,244 CHURCH ST,3,60,2017-11-09,67,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,4.0,2.0,,3.0,,4.0,2.0,3.0,5.0,3.0,4.0,3.0,,3.0,4.0,4.0,S1332,43.6559630817,-79.377259039,314684.79,4834897.546
-895754,4153538,2017.0,2017.0,1958.0,PRIVATE,13,Toronto Centre,55 CHARLES ST E,9,75,2017-11-08,75,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,3.0,,3.0,4.0,,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,,S1322,43.66890094,-79.383531696,314176.813,4836334.156
-895755,4153026,2017.0,2017.0,1917.0,PRIVATE,4,Parkdale-High Park,189 DOWLING AVE,4,10,2017-11-08,57,Evaluation needs to be conducted in 1 year,14,3.0,3.0,2.0,3.0,,3.0,,3.0,,,2.0,2.0,5.0,3.0,3.0,2.0,,3.0,3.0,,S0436,43.6396109365,-79.4394716965,309667.989,4833097.526000001
-895756,4154139,2017.0,2017.0,1969.0,PRIVATE,14,Toronto-Danforth,1000 BROADVIEW AVE,18,110,2017-11-08,64,Evaluation needs to be conducted in 1 year,18,4.0,4.0,4.0,1.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,S1421,43.682860253,-79.357706655,316256.567,4837889.181
-895757,4152904,2017.0,2017.0,1920.0,PRIVATE,4,Parkdale-High Park,2407 BLOOR ST W,3,12,2017-11-08,76,Evaluation needs to be conducted in 2 years,16,4.0,3.0,3.0,4.0,4.0,3.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,4.0,S0430,43.64933320229999,-79.4831934689,306140.164,4834153.961
-895758,4153831,2017.0,2017.0,1956.0,PRIVATE,15,Don Valley West,77 ERSKINE AVE,4,37,2017-11-08,71,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,4.0,4.0,3.0,,3.0,3.0,,3.0,3.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,,N1526,43.711378231000005,-79.396038937,313162.064,4841052.907
-895759,4153945,2017.0,2017.0,1950.0,PRIVATE,12,Toronto-St. Paul's,725 EGLINTON AVE W,3,31,2017-11-08,68,Evaluation needs to be conducted in 2 years,17,4.0,4.0,3.0,3.0,3.0,1.0,,4.0,,4.0,4.0,4.0,5.0,4.0,3.0,3.0,3.0,3.0,3.0,,S1225,43.701452170399996,-79.4222090371,311054.429,4839946.865
-895760,4153040,2017.0,2017.0,1968.0,PRIVATE,4,Parkdale-High Park,12 ELM GROVE AVE,4,32,2017-11-08,71,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,3.0,3.0,2.0,,4.0,,,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,3.0,,S0436,43.63899055,-79.4310530475,310347.29,4833006.982
-895761,4153790,2017.0,2017.0,1963.0,PRIVATE,15,Don Valley West,411 EGLINTON AVE E,12,57,2017-11-08,69,Evaluation needs to be conducted in 2 years,19,4.0,3.0,3.0,3.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,N1530,43.7093999443,-79.3839382013,314137.81,4840833.46
-895762,4153813,2017.0,2017.0,1957.0,PRIVATE,15,Don Valley West,412 EGLINTON AVE E,6,65,2017-11-08,67,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,3.0,4.0,4.0,3.0,2.0,3.0,3.0,3.0,4.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,,N1537,43.7097342429,-79.38558900310001,314004.732,4840870.421
-895763,4153812,2017.0,2017.0,1963.0,PRIVATE,15,Don Valley West,420 EGLINTON AVE E,5,44,2017-11-08,59,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,,2.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N1537,43.7097985211,-79.3852685369,314030.547,4840877.597
-895764,4153791,2017.0,2017.0,1965.0,PRIVATE,15,Don Valley West,435 EGLINTON AVE E,12,52,2017-11-08,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,4.0,3.0,4.0,3.0,3.0,,3.0,2.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,,N1530,43.709548032,-79.3831759737,314199.208,4840849.994
-895765,4153811,2017.0,2017.0,1960.0,PRIVATE,15,Don Valley West,440 EGLINTON AVE E,10,90,2017-11-08,64,Evaluation needs to be conducted in 1 year,17,4.0,3.0,4.0,3.0,3.0,2.0,,2.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,N1537,43.7098728006,-79.3847266603,314074.202,4840885.908
-895766,4153792,2017.0,2017.0,1963.0,PRIVATE,15,Don Valley West,445 EGLINTON AVE E,9,57,2017-11-08,67,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,3.0,2.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,N1530,43.709650713900004,-79.3826287128,314243.291,4840861.461
-895767,4155091,2017.0,2017.0,1953.0,PRIVATE,5,York South-Weston,2558 EGLINTON AVE W,4,29,2017-11-08,53,Evaluation needs to be conducted in 1 year,16,3.0,2.0,3.0,2.0,3.0,2.0,,3.0,,,3.0,2.0,3.0,2.0,3.0,3.0,2.0,3.0,3.0,,W0533,43.691135465,-79.471860488,307052.604,4838799.09
-895768,4153838,2017.0,2017.0,1960.0,PRIVATE,15,Don Valley West,171 ERSKINE AVE,13,47,2017-11-08,74,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,4.0,4.0,,3.0,4.0,4.0,3.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,,N1526,43.712311598,-79.392295109,313463.635,4841156.988
-895769,4155004,2017.0,2017.0,1980.0,PRIVATE,12,Toronto-St. Paul's,989 EGLINTON AVE W,7,146,2017-11-08,70,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,2.0,3.0,3.0,4.0,3.0,4.0,,3.0,3.0,5.0,4.0,3.0,3.0,,4.0,3.0,4.0,S1224,43.699724260699995,-79.4303144037,310401.287,4839754.304
-895770,4155006,2017.0,2017.0,1955.0,PRIVATE,12,Toronto-St. Paul's,1065 EGLINTON AVE W,4,34,2017-11-08,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,,4.0,,3.0,3.0,,4.0,4.0,3.0,3.0,3.0,3.0,,3.0,3.0,,S1224,43.698898756800006,-79.4340201951,310102.647,4839662.339
-895771,4153809,2017.0,2017.0,1964.0,PRIVATE,15,Don Valley West,490 EGLINTON AVE E,8,51,2017-11-08,66,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,3.0,2.0,4.0,3.0,4.0,,3.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,,N1537,43.7101170493,-79.3836293624,314162.583,4840913.16
-895772,4155188,2017.0,2017.0,1954.0,PRIVATE,5,York South-Weston,2 JASPER AVE,3,22,2017-11-08,51,Evaluation needs to be conducted in 1 year,17,2.0,2.0,2.0,2.0,2.0,2.0,,2.0,,2.0,3.0,2.0,5.0,3.0,2.0,3.0,3.0,3.0,3.0,,W0535,43.6835075066,-79.4830125811,306153.977,4837950.505
-895773,4153509,2017.0,2017.0,1960.0,PRIVATE,13,Toronto Centre,88 WELLESLEY ST E,8,71,2017-11-08,66,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,2.0,3.0,2.0,3.0,4.0,2.0,,4.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,2.0,,S1322,43.666250633500006,-79.3798674479,314472.745,4836040.134
-895774,4153498,2017.0,2017.0,1960.0,PRIVATE,13,Toronto Centre,91 WELLESLEY ST E,7,61,2017-11-08,74,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,4.0,4.0,3.0,,4.0,2.0,,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1326,43.6656528226,-79.3795549794,314498.04,4835973.757
-895775,4153471,2017.0,2017.0,1966.0,PRIVATE,13,Toronto Centre,155 WELLESLEY ST E,18,118,2017-11-08,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1326,43.666302583000004,-79.37532155,314835.915,4836052.124
-895776,4152972,2017.0,2017.0,1962.0,PRIVATE,4,Parkdale-High Park,90 TYNDALL AVE,18,120,2017-11-08,69,Evaluation needs to be conducted in 2 years,19,4.0,5.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,4.0,,S0437,43.636188769700006,-79.4287694979,310531.789,4832695.871
-895777,4152967,2017.0,2017.0,1965.0,PRIVATE,4,Parkdale-High Park,118 TYNDALL AVE,10,93,2017-11-08,69,Evaluation needs to be conducted in 2 years,18,3.0,3.0,5.0,4.0,4.0,2.0,4.0,3.0,3.0,,4.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,,S0437,43.637378606000006,-79.4292170392,310495.572,4832828.025
-895778,4152953,2017.0,2017.0,1963.0,PRIVATE,4,Parkdale-High Park,135 TYNDALL AVE,11,216,2017-11-08,61,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,4.0,,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,S0437,43.6377206965,-79.4283330254,310566.868,4832866.086
-895779,4155108,2017.0,2017.0,1957.0,PRIVATE,5,York South-Weston,1960 KEELE ST,3,28,2017-11-08,52,Evaluation needs to be conducted in 1 year,17,3.0,2.0,3.0,2.0,2.0,3.0,,3.0,3.0,2.0,3.0,2.0,4.0,3.0,3.0,2.0,,2.0,2.0,,W0532,43.696215068,-79.475727208,306740.752,4839363.327
-895780,4155107,2017.0,2017.0,1960.0,PRIVATE,5,York South-Weston,1970 KEELE ST,4,45,2017-11-08,56,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,2.0,3.0,2.0,,2.0,4.0,,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0532,43.696598977,-79.475898952,306726.898,4839405.973
-895781,4156628,2017.0,2017.0,2011.0,PRIVATE,3,Etobicoke-Lakeshore,7 SUMMERLAND TER,21,218,2017-11-08,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,,3.0,4.0,3.0,4.0,,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,W0321,43.643486951999996,-79.531938,,
-895782,4152974,2017.0,2017.0,1965.0,PRIVATE,4,Parkdale-High Park,40 TYNDALL AVE,7,65,2017-11-08,67,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,4.0,4.0,3.0,4.0,3.0,3.0,2.0,4.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,2.0,,S0437,43.635622675200004,-79.42849810050001,310553.738,4832633.0
-895783,4152973,2017.0,2017.0,1959.0,PRIVATE,4,Parkdale-High Park,60 TYNDALL AVE,9,69,2017-11-08,69,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,3.0,4.0,4.0,4.0,3.0,4.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,S0437,43.6358852908,-79.4287210164,310535.728,4832662.16
-895784,4153488,2017.0,2017.0,1979.0,PRIVATE,13,Toronto Centre,25 WELLESLEY ST E,9,47,2017-11-08,54,Evaluation needs to be conducted in 1 year,17,3.0,2.0,3.0,2.0,,3.0,2.0,3.0,3.0,,3.0,2.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,,S1326,43.664890998999994,-79.383181646,314205.404,4835889.677
-895785,4153496,2017.0,2017.0,1926.0,PRIVATE,13,Toronto Centre,77 WELLESLEY ST E,4,30,2017-11-08,71,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,4.0,3.0,2.0,4.0,3.0,4.0,,4.0,4.0,4.0,3.0,4.0,3.0,,4.0,3.0,,S1326,43.665542727600005,-79.3805307384,314419.363,4835961.416
-895786,4153510,2017.0,2017.0,1963.0,PRIVATE,13,Toronto Centre,80 WELLESLEY ST E,12,76,2017-11-08,66,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,4.0,3.0,2.0,3.0,3.0,2.0,3.0,3.0,3.0,5.0,3.0,4.0,3.0,4.0,4.0,4.0,,S1322,43.6661438785,-79.38026748979999,314440.499,4836028.228999999
-895787,4155186,2017.0,2017.0,1958.0,PRIVATE,5,York South-Weston,38 LAMBTON AVE,3,26,2017-11-08,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,3.0,3.0,4.0,4.0,4.0,4.0,,3.0,3.0,,W0535,43.68380425229999,-79.4870901288,305825.229,4837983.416999999
-895788,4155187,2017.0,2017.0,1958.0,PRIVATE,5,York South-Weston,40 LAMBTON AVE,3,26,2017-11-08,65,Evaluation needs to be conducted in 1 year,15,3.0,2.0,3.0,3.0,3.0,2.0,,3.0,,,4.0,3.0,5.0,4.0,4.0,4.0,,3.0,3.0,,W0535,43.6837517328,-79.4873082917,305807.641,4837977.58
-895789,4255506,2017.0,2017.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,1 NEWHOLM RD,4,27,2017-11-08,59,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,4.0,3.0,2.0,,4.0,,,4.0,3.0,3.0,2.0,3.0,3.0,2.0,2.0,3.0,,W0329,43.63650442,-79.48774356359999,305773.28,4832728.695
-895790,4155429,2017.0,2017.0,1968.0,PRIVATE,1,Etobicoke North,2329 KIPLING AVE,5,40,2017-11-08,62,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,2.0,,4.0,3.0,5.0,2.0,3.0,3.0,3.0,4.0,3.0,,W0130,43.73188797939999,-79.5760047964,298661.68,4843328.069
-895791,4153947,2017.0,2017.0,1967.0,PRIVATE,12,Toronto-St. Paul's,130 OLD FOREST HILL RD,6,42,2017-11-08,59,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,1.0,3.0,1.0,,3.0,3.0,,2.0,3.0,5.0,4.0,2.0,3.0,4.0,4.0,3.0,,S1225,43.7011738617,-79.42345147479999,310954.318,4839915.848999999
-895792,4153630,2017.0,2017.0,1927.0,PRIVATE,14,Toronto-Danforth,245-247 LOGAN AVE,4,21,2017-11-08,53,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,2.0,2.0,,2.0,,,2.0,2.0,3.0,3.0,3.0,3.0,,3.0,3.0,,S1441,,,317503.543,4835393.504
-895793,4154090,2017.0,2017.0,1950.0,PRIVATE,14,Toronto-Danforth,165 COSBURN AVE,6,83,2017-11-08,69,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,4.0,2.0,,4.0,3.0,3.0,4.0,4.0,2.0,4.0,3.0,4.0,4.0,3.0,3.0,,S1422,43.6897704258,-79.345544715,317235.905,4838657.626
-895794,4153604,2017.0,2017.0,1929.0,PRIVATE,14,Toronto-Danforth,569 BROADVIEW AVE,4,48,2017-11-08,66,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,4.0,3.0,4.0,,3.0,,3.0,4.0,2.0,5.0,3.0,2.0,4.0,,3.0,3.0,,S1428,43.6724718142,-79.3550560331,316472.52,4836734.465
-895795,4270534,2017.0,2017.0,1981.0,PRIVATE,2,Etobicoke Centre,105 CLEMENT RD,7,195,2017-11-08,73,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,,4.0,3.0,5.0,4.0,3.0,3.0,,4.0,3.0,4.0,W0221,43.680522919,-79.55416175,300417.27,4837621.239
-895796,4233294,2017.0,2017.0,1983.0,SOCIAL HOUSING,4,Parkdale-High Park,176 COWAN AVE,8,127,2017-11-08,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,S0436,43.6393771047,-79.4331082627,310181.437,4833049.798
-895797,4153739,2017.0,2017.0,1950.0,PRIVATE,11,University-Rosedale,4 SHERBOURNE ST N,4,34,2017-11-08,71,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,,4.0,4.0,5.0,4.0,3.0,3.0,3.0,4.0,3.0,,S1131,43.6740184548,-79.3778037961,314637.899,4836903.35
-895798,4153439,2017.0,2017.0,1974.0,PRIVATE,13,Toronto Centre,266 SHERBOURNE ST,13,121,2017-11-08,59,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,,2.0,4.0,3.0,4.0,2.0,2.0,3.0,4.0,3.0,,S1328,43.659296803800004,-79.3718238702,315122.618,4835268.563999999
-895799,4153472,2017.0,2017.0,1963.0,PRIVATE,13,Toronto Centre,392 SHERBOURNE ST,10,128,2017-11-08,62,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,3.0,,3.0,2.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,S1326,43.664096113199996,-79.3738282072,314960.149,4835801.501
-895800,4153035,2017.0,2017.0,1910.0,SOCIAL HOUSING,4,Parkdale-High Park,1387 QUEEN ST W,4,23,2017-11-08,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S0436,43.6404340977,-79.4362276629,309929.667,4833167.036
-895801,4153009,2017.0,2017.0,1912.0,PRIVATE,4,Parkdale-High Park,1501 QUEEN ST W,3,38,2017-11-08,52,Evaluation needs to be conducted in 1 year,15,2.0,3.0,3.0,3.0,2.0,3.0,,3.0,,,3.0,3.0,3.0,2.0,2.0,2.0,,2.0,3.0,,S0436,43.639616026700004,-79.4409064892,309552.238,4833075.896000001
-895802,4153005,2017.0,2017.0,1900.0,PRIVATE,4,Parkdale-High Park,1609 QUEEN ST W,3,41,2017-11-08,53,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,2.0,3.0,,2.0,,,3.0,3.0,3.0,2.0,2.0,3.0,,2.0,3.0,,S0436,43.638738833299996,-79.4444453098,309266.777,4832978.2530000005
-895803,4153004,2017.0,2017.0,1900.0,PRIVATE,4,Parkdale-High Park,1621 QUEEN ST W,6,74,2017-11-08,53,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,2.0,2.0,,2.0,3.0,3.0,2.0,2.0,3.0,,2.0,3.0,,S0436,43.6387782668,-79.44488373739999,309231.4,4832982.61
-895804,4153067,2017.0,2017.0,1967.0,PRIVATE,4,Parkdale-High Park,59 RONCESVALLES AVE,4,38,2017-11-08,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S0435,43.6407196162,-79.44659739560001,309092.998,4833198.193
-895805,4155744,2017.0,2017.0,1977.0,SOCIAL HOUSING,4,Parkdale-High Park,66 RONCESVALLES AVE,11,200,2017-11-08,77,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,4.0,3.0,4.0,3.0,4.0,5.0,,4.0,4.0,3.0,4.0,3.0,4.0,,4.0,4.0,4.0,S0434,43.64019946,-79.44730757939999,309044.957,4833145.277
-895806,4153051,2017.0,2017.0,1914.0,PRIVATE,4,Parkdale-High Park,310 RONCESVALLES AVE,4,13,2017-11-08,56,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,3.0,2.0,3.0,2.0,,2.0,3.0,,S0432,43.6492006854,-79.4505020154,308777.417,4834140.227
-895807,4153072,2017.0,2017.0,1930.0,PRIVATE,4,Parkdale-High Park,469 RONCESVALLES AVE,4,15,2017-11-08,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S0433,43.65312019899999,-79.451329542,308710.143,4834576.586
-895808,4155442,2017.0,2017.0,1962.0,PRIVATE,1,Etobicoke North,2328 ISLINGTON AVE,7,68,2017-11-08,62,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,2.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,W0130,43.717216180600005,-79.5567000725,300215.686,4841696.915
-895809,4153033,2017.0,2017.0,1957.0,PRIVATE,4,Parkdale-High Park,169 JAMESON AVE,8,72,2017-11-08,66,Evaluation needs to be conducted in 2 years,16,4.0,3.0,5.0,3.0,,4.0,,3.0,3.0,,3.0,4.0,5.0,3.0,2.0,2.0,3.0,3.0,3.0,,S0436,43.6382976952,-79.43605420520001,309943.839,4832929.71
-895810,4153029,2017.0,2017.0,1962.0,PRIVATE,4,Parkdale-High Park,200 JAMESON AVE,12,100,2017-11-08,63,Evaluation needs to be conducted in 1 year,18,4.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,,4.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S0436,43.639820653,-79.4374576953,309830.477,4833098.817
-895811,4152922,2017.0,2017.0,1960.0,PRIVATE,4,Parkdale-High Park,392 JANE ST,6,32,2017-11-08,66,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,3.0,3.0,2.0,3.0,4.0,3.0,,4.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,2.0,,S0426,43.6580102067,-79.4883644142,305722.865,4835117.844
-895812,4153020,2017.0,2017.0,1967.0,PRIVATE,4,Parkdale-High Park,160 JAMESON AVE,7,96,2017-11-08,60,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,3.0,2.0,5.0,3.0,2.0,3.0,3.0,3.0,3.0,,S0436,43.63765643,-79.4366087983,309899.145,4832858.438999999
-895813,4155336,2017.0,2017.0,1954.0,PRIVATE,2,Etobicoke Centre,3 ANGLESEY BLVD,4,22,2017-11-08,59,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,W0229,43.66525873609999,-79.5202448321,303151.607,4835923.333000001
-895814,4155335,2017.0,2017.0,1954.0,PRIVATE,2,Etobicoke Centre,7 ANGLESEY BLVD,4,19,2017-11-08,59,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,W0229,43.6651374005,-79.5205512959,303126.88800000004,4835909.86
-895815,4152856,2017.0,2017.0,1971.0,PRIVATE,22,Scarborough-Agincourt,375 BAY MILLS BLVD,14,188,2017-11-08,82,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,5.0,,3.0,5.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,,E2226,43.7823877317,-79.300874192,320812.374,4848954.635
-895816,4155731,2017.0,2017.0,1967.0,PRIVATE,12,Toronto-St. Paul's,330 SPADINA RD,22,141,2017-11-08,72,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,1.0,4.0,3.0,4.0,,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,3.0,S1236,43.683502319,-79.411166001,311926.227,4837949.908
-895817,4152958,2017.0,2017.0,1962.0,PRIVATE,4,Parkdale-High Park,47 SPENCER AVE,5,56,2017-11-08,73,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,4.0,2.0,,4.0,4.0,3.0,4.0,3.0,5.0,4.0,4.0,4.0,3.0,3.0,4.0,,S0437,43.635752524,-79.429340078,310485.527,4832648.324
-895818,4154093,2017.0,2017.0,1967.0,PRIVATE,14,Toronto-Danforth,205 COSBURN AVE,12,160,2017-11-08,65,Evaluation needs to be conducted in 1 year,19,5.0,4.0,3.0,3.0,2.0,2.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,5.0,3.0,4.0,3.0,,S1422,43.690071937,-79.34393549149999,317365.564,4838691.356000001
-895819,4156380,2017.0,2017.0,1965.0,PRIVATE,14,Toronto-Danforth,225 COSBURN AVE,8,95,2017-11-08,76,Evaluation needs to be conducted in 2 years,19,2.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,,S1422,43.690315438999995,-79.343198376,317415.325,4838715.468
-895820,4153001,2017.0,2017.0,1900.0,PRIVATE,4,Parkdale-High Park,120 DOWLING AVE,3,17,2017-11-08,59,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,2.0,2.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,2.0,3.0,,S0437,43.63647140770001,-79.4388819579,309715.834,4832726.665
-895821,4153551,2017.0,2017.0,1915.0,PRIVATE,11,University-Rosedale,30 CHARLES ST E,3,21,2017-11-08,71,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,3.0,3.0,,3.0,,3.0,4.0,4.0,5.0,3.0,3.0,3.0,,3.0,4.0,,S1137,43.669198906999995,-79.384815824,314072.94899999996,4836368.069
-895822,4155365,2017.0,2017.0,1961.0,PRIVATE,2,Etobicoke Centre,333 DIXON RD,6,55,2017-11-07,58,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,3.0,2.0,3.0,2.0,4.0,3.0,3.0,2.0,3.0,,W0222,,,300298.13399999996,4839176.844
-895823,4155364,2017.0,2017.0,1969.0,PRIVATE,2,Etobicoke Centre,345 DIXON RD,10,95,2017-11-07,63,Evaluation needs to be conducted in 1 year,18,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0222,43.69438978,-79.556392249,300238.75800000003,4839160.989
-895824,4152594,2017.0,2017.0,1974.0,PRIVATE,20,Scarborough Southwest,50 BURN HILL RD,24,163,2017-11-07,69,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,3.0,3.0,4.0,4.0,3.0,,4.0,4.0,4.0,3.0,4.0,3.0,4.0,3.0,2.0,,E2028,43.699541833199994,-79.27673704840001,322779.857,4839755.728999999
-895825,4153773,2017.0,2017.0,1956.0,PRIVATE,15,Don Valley West,501 MOUNT PLEASANT RD,4,28,2017-11-07,63,Evaluation needs to be conducted in 1 year,16,3.0,2.0,3.0,3.0,3.0,4.0,,2.0,,4.0,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N1534,43.7014503061,-79.3870380708,313889.185,4839949.914
-895826,4153953,2017.0,2017.0,1961.0,PRIVATE,8,Eglinton-Lawrence,650 EGLINTON AVE W,8,102,2017-11-07,61,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,1.0,4.0,3.0,3.0,,3.0,4.0,4.0,3.0,3.0,3.0,3.0,2.0,4.0,,N0832,43.702630066400005,-79.4192210423,311295.136,4840077.96
-895827,4153645,2017.0,2017.0,1994.0,SOCIAL HOUSING,14,Toronto-Danforth,1320 GERRARD ST E,5,45,2017-11-07,64,Evaluation needs to be conducted in 1 year,18,3.0,2.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,5.0,4.0,3.0,3.0,3.0,3.0,3.0,,S1437,43.671590245699996,-79.3263209715,318789.80600000004,4836640.948
-895828,4153961,2017.0,2017.0,1952.0,PRIVATE,8,Eglinton-Lawrence,780 EGLINTON AVE W,7,87,2017-11-07,73,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,4.0,4.0,3.0,,4.0,4.0,3.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,,N0832,43.7019615716,-79.42270245649999,311014.608,4840003.42
-895829,4155347,2017.0,2017.0,1971.0,PRIVATE,2,Etobicoke Centre,105 LA ROSE AVE,12,180,2017-11-07,60,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,2.0,2.0,3.0,W0230,43.685240595500005,-79.5206409439,303120.311,4838143.242
-895830,4155345,2017.0,2017.0,1979.0,PRIVATE,2,Etobicoke Centre,165 LA ROSE AVE,12,211,2017-11-07,61,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,W0230,43.6839794618,-79.5249462549,302773.164,4838003.239
-895831,4153836,2017.0,2017.0,1962.0,PRIVATE,15,Don Valley West,141 ERSKINE AVE,13,160,2017-11-07,74,Evaluation needs to be conducted in 2 years,17,4.0,3.0,3.0,4.0,4.0,4.0,,4.0,4.0,,3.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,3.0,,N1526,43.71194070399999,-79.393282145,313384.148,4841115.679
-895832,4153848,2017.0,2017.0,1957.0,PRIVATE,15,Don Valley West,170 ERSKINE AVE,4,31,2017-11-07,76,Evaluation needs to be conducted in 2 years,16,4.0,3.0,3.0,4.0,4.0,4.0,,4.0,5.0,,3.0,4.0,5.0,4.0,3.0,4.0,,4.0,3.0,,N1526,43.712817122,-79.392570284,313441.386,4841213.1219999995
-895833,4155090,2017.0,2017.0,1950.0,PRIVATE,5,York South-Weston,2 GLENHAVEN ST,4,24,2017-11-07,54,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,2.0,3.0,2.0,,3.0,,3.0,2.0,2.0,5.0,3.0,2.0,2.0,3.0,3.0,2.0,,W0533,43.6915635966,-79.470083716,307196.082,4838845.745
-895834,4155079,2017.0,2017.0,1950.0,PRIVATE,5,York South-Weston,2507 EGLINTON AVE W,4,28,2017-11-07,46,Building Audit,17,3.0,1.0,3.0,2.0,2.0,2.0,,2.0,,2.0,2.0,2.0,5.0,2.0,2.0,2.0,3.0,2.0,2.0,,W0537,43.6910254603,-79.4700324618,307200.235,4838785.964
-895835,4156721,2017.0,2017.0,1950.0,PRIVATE,5,York South-Weston,2515 EGLINTON AVE W,4,34,2017-11-07,46,Building Audit,17,3.0,1.0,3.0,2.0,2.0,2.0,,2.0,,2.0,2.0,2.0,4.0,3.0,2.0,2.0,3.0,2.0,2.0,,W0537,43.69095169,-79.470613783,307153.113,4838778.708000001
-895836,4152680,2017.0,2017.0,1958.0,PRIVATE,20,Scarborough Southwest,2231 EGLINTON AVE E,6,110,2017-11-07,53,Evaluation needs to be conducted in 1 year,17,2.0,2.0,2.0,3.0,3.0,3.0,,2.0,2.0,,2.0,3.0,5.0,3.0,3.0,3.0,3.0,2.0,2.0,,E2023,43.729743761,-79.275420911,322876.591,4843112.275
-895837,4152681,2017.0,2017.0,1958.0,PRIVATE,20,Scarborough Southwest,2233 EGLINTON AVE E,6,110,2017-11-07,56,Evaluation needs to be conducted in 1 year,17,2.0,2.0,4.0,3.0,3.0,3.0,,2.0,3.0,,2.0,3.0,5.0,3.0,3.0,3.0,3.0,2.0,2.0,,E2023,43.729840133,-79.274983998,322911.762,4843123.078
-895838,4153195,2017.0,2017.0,1913.0,PRIVATE,11,University-Rosedale,399 DUPONT ST,3,20,2017-11-07,60,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,S1126,43.673383845500005,-79.4122210568,311862.661,4836829.316000001
-895839,4153942,2017.0,2017.0,1954.0,PRIVATE,12,Toronto-St. Paul's,45 GARDINER RD,6,41,2017-11-07,64,Evaluation needs to be conducted in 1 year,17,4.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,3.0,,S1225,43.702033574,-79.4195154938,311271.467,4840011.666999999
-895840,4155386,2017.0,2017.0,1960.0,PRIVATE,2,Etobicoke Centre,25 EVA RD,5,48,2017-11-07,60,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,3.0,,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0233,43.638931663,-79.56335609899999,299581.049,4833030.633
-895841,4155310,2017.0,2017.0,1962.0,PRIVATE,2,Etobicoke Centre,307 THE KINGSWAY,3,26,2017-11-07,59,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,3.0,3.0,2.0,5.0,3.0,2.0,3.0,,3.0,3.0,,W0229,43.6646746732,-79.5222520533,302989.714,4835858.492
-895842,4156229,2017.0,2017.0,1965.0,PRIVATE,11,University-Rosedale,30 HILLSBORO AVE,24,196,2017-11-07,76,Evaluation needs to be conducted in 2 years,19,5.0,4.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,S1128,43.675673246,-79.39285787600001,313423.49600000004,4837086.446
-895843,4153230,2017.0,2017.0,1965.0,PRIVATE,11,University-Rosedale,50 HILLSBORO AVE,24,196,2017-11-07,76,Evaluation needs to be conducted in 2 years,19,5.0,4.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,S1128,43.675830415,-79.393625247,313361.593,4837103.826
-895844,4155191,2017.0,2017.0,1957.0,PRIVATE,5,York South-Weston,8 HECTOR AVE,3,18,2017-11-07,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,4.0,,3.0,3.0,,W0535,43.6801785779,-79.4898358831,305603.88899999997,4837580.598
-895845,4155171,2017.0,2017.0,1959.0,PRIVATE,5,York South-Weston,2202 WESTON RD,6,97,2017-11-07,61,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,2.0,,4.0,3.0,,2.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,,W0524,43.703250055,-79.526966387,302610.793,4840145.125
-895846,4155169,2017.0,2017.0,1961.0,PRIVATE,5,York South-Weston,2222 WESTON RD,6,65,2017-11-07,75,Evaluation needs to be conducted in 2 years,17,4.0,3.0,3.0,3.0,3.0,4.0,,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,,W0524,43.703825263999995,-79.52767378,302553.804,4840209.041999999
-895847,4155433,2017.0,2017.0,1959.0,PRIVATE,1,Etobicoke North,20 TORBOLTON DR,3,17,2017-11-07,54,Evaluation needs to be conducted in 1 year,16,2.0,2.0,2.0,3.0,1.0,2.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,2.0,4.0,3.0,,W0130,43.719111061999996,-79.5589012928,300038.47,4841907.547
-895848,4155385,2017.0,2017.0,1960.0,PRIVATE,2,Etobicoke Centre,351 THE WEST MALL,5,49,2017-11-07,59,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,3.0,,3.0,2.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0233,43.638729618999996,-79.564232582,299601.61,4832978.702
-895849,4155311,2017.0,2017.0,1955.0,PRIVATE,2,Etobicoke Centre,309 THE KINGSWAY,4,34,2017-11-07,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,W0229,43.6648936941,-79.522593185,302962.211,4835882.8319999995
-895850,4156448,2017.0,2017.0,1954.0,PRIVATE,2,Etobicoke Centre,310 THE KINGSWAY,3,22,2017-11-07,57,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,2.0,2.0,,3.0,,,3.0,2.0,4.0,3.0,3.0,3.0,,3.0,3.0,,W0229,43.664397075,-79.52321953100001,302902.147,4835840.037
-895851,4155312,2017.0,2017.0,1970.0,PRIVATE,2,Etobicoke Centre,313 THE KINGSWAY,4,18,2017-11-07,57,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,3.0,3.0,3.0,2.0,3.0,4.0,,2.0,3.0,,W0229,43.664984337700005,-79.5228845636,302938.716,4835892.909
-895852,4156357,2017.0,2017.0,1954.0,PRIVATE,2,Etobicoke Centre,314 THE KINGSWAY,3,22,2017-11-07,59,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,2.0,2.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0229,43.66458226100001,-79.523537566,302881.557,4835854.438
-895853,4155320,2017.0,2017.0,1970.0,PRIVATE,2,Etobicoke Centre,316 THE KINGSWAY,4,17,2017-11-07,53,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,2.0,2.0,,3.0,,,3.0,2.0,3.0,3.0,2.0,2.0,,3.0,3.0,,W0229,43.664689787200004,-79.5237237327,302871.029,4835860.206
-895854,4250622,2017.0,2017.0,1913.0,PRIVATE,11,University-Rosedale,1 A VERMONT AVE,3,22,2017-11-07,54,Evaluation needs to be conducted in 1 year,17,3.0,3.0,2.0,2.0,3.0,3.0,,3.0,,3.0,3.0,2.0,3.0,2.0,3.0,3.0,3.0,2.0,3.0,,S1125,43.671904761099995,-79.414243936,311699.702,4836664.8319999995
-895855,4153553,2017.0,2017.0,1987.0,SOCIAL HOUSING,14,Toronto-Danforth,58 LEWIS ST,4,15,2017-11-07,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,2.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,3.0,S1440,43.657882233,-79.348395465,317012.287,4835115.549
-895856,4154344,2017.0,2017.0,1963.0,PRIVATE,5,York South-Weston,1524 LAWRENCE AVE W,6,76,2017-11-07,54,Evaluation needs to be conducted in 1 year,19,2.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,4.0,2.0,2.0,2.0,3.0,2.0,2.0,,W0526,43.707356219,-79.48503904399999,305989.957,4840600.919
-895857,4233286,2017.0,2017.0,1982.0,SOCIAL HOUSING,23,Scarborough North,25 THUNDER GRV,19,247,2017-11-07,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,E2323,43.808808732399996,-79.2654841608,323652.719,4851897.317
-895858,4155399,2017.0,2017.0,1960.0,PRIVATE,2,Etobicoke Centre,530 THE EAST MALL,7,110,2017-11-07,61,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,W0232,43.651534375699995,-79.563209379,299685.571,4834400.211
-895859,4155377,2017.0,2017.0,1965.0,PRIVATE,2,Etobicoke Centre,210 MARKLAND DR,13,151,2017-11-07,61,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,2.0,,4.0,3.0,,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0233,43.6301975537,-79.5798906401,298337.645,4832030.995
-895860,4153944,2017.0,2017.0,1950.0,PRIVATE,12,Toronto-St. Paul's,117 OLD FOREST HILL RD,3,28,2017-11-07,65,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,1.0,3.0,,3.0,,,4.0,4.0,5.0,3.0,3.0,3.0,,3.0,4.0,,S1225,43.7013796068,-79.4227406516,311011.589,4839938.762
-895861,4155796,2017.0,2017.0,1976.0,PRIVATE,22,Scarborough-Agincourt,125 BONIS AVE,11,263,2017-11-07,88,Evaluation needs to be conducted in 3 years,19,4.0,4.0,4.0,4.0,5.0,5.0,3.0,4.0,5.0,,4.0,4.0,5.0,5.0,5.0,4.0,5.0,5.0,4.0,5.0,E2229,43.78385662,-79.294501805,321346.372,4849113.023
-895862,4153972,2017.0,2017.0,1967.0,PRIVATE,8,Eglinton-Lawrence,655 BRIAR HILL AVE,4,36,2017-11-07,61,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,2.0,3.0,2.0,3.0,4.0,3.0,4.0,4.0,3.0,2.0,4.0,,N0832,43.707577077799996,-79.4274046022,310635.081,4840626.937
-895863,4155396,2017.0,2017.0,1963.0,PRIVATE,2,Etobicoke Centre,70 DIXFIELD DR,12,141,2017-11-07,60,Evaluation needs to be conducted in 1 year,18,4.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,2.0,3.0,1.0,,W0225,43.656041966000004,-79.572403682,298944.101,4834902.553
-895864,4153670,2017.0,2017.0,1920.0,PRIVATE,19,Beaches-East York,2453 QUEEN ST E,4,16,2017-11-07,64,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,2.0,,3.0,,4.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,4.0,,S1942,43.6731843525,-79.2839314584,322207.57,4836826.0139999995
-895865,4153662,2017.0,2017.0,1975.0,PRIVATE,19,Beaches-East York,2263 QUEEN ST E,3,18,2017-11-07,69,Evaluation needs to be conducted in 2 years,14,3.0,3.0,3.0,3.0,,3.0,,4.0,,,3.0,2.0,4.0,4.0,4.0,4.0,,4.0,4.0,,S1942,43.6710986709,-79.2938756588,321406.268,4836592.298
-895866,4153664,2017.0,2017.0,1927.0,PRIVATE,19,Beaches-East York,2269 QUEEN ST E,3,17,2017-11-07,63,Evaluation needs to be conducted in 1 year,14,4.0,4.0,3.0,3.0,,3.0,,3.0,,,3.0,3.0,3.0,3.0,3.0,3.0,,2.0,4.0,,S1942,43.6712526429,-79.293268236,321455.209,4836609.522
-895867,4155887,2017.0,2017.0,1959.0,PRIVATE,12,Toronto-St. Paul's,70 HEATH ST W,3,35,2017-11-07,72,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,5.0,3.0,4.0,3.0,4.0,3.0,3.0,,S1232,43.6899134728,-79.3986248426,312956.853,4838666.964
-895868,4155919,2017.0,2017.0,1959.0,PRIVATE,12,Toronto-St. Paul's,80 HEATH ST W,3,35,2017-11-07,72,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,5.0,3.0,4.0,3.0,4.0,3.0,3.0,,S1232,43.689525788999994,-79.399154737,312913.92699999997,4838624.797
-895869,4156294,2017.0,2017.0,1959.0,PRIVATE,12,Toronto-St. Paul's,90 HEATH ST W,3,37,2017-11-07,71,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,,3.0,4.0,5.0,3.0,4.0,3.0,4.0,3.0,3.0,,S1232,43.689842541000004,-79.39896077899999,312888.418,4838617.756
-895870,4153171,2017.0,2017.0,1904.0,PRIVATE,11,University-Rosedale,456 PALMERSTON BLVD,4,32,2017-11-07,60,Evaluation needs to be conducted in 1 year,15,3.0,2.0,3.0,3.0,4.0,3.0,,3.0,,,3.0,3.0,5.0,2.0,3.0,3.0,,2.0,3.0,,S1133,43.661089992600004,-79.4126760562,311827.434,4835463.525
-895871,4152671,2017.0,2017.0,1957.0,PRIVATE,20,Scarborough Southwest,708 KENNEDY RD,4,49,2017-11-07,68,Evaluation needs to be conducted in 2 years,17,3.0,4.0,4.0,4.0,,2.0,,4.0,3.0,,3.0,3.0,5.0,3.0,4.0,4.0,2.0,4.0,3.0,3.0,E2023,43.728539445500004,-79.2674579982,323518.74,4842979.297
-895872,4152988,2017.0,2017.0,1955.0,PRIVATE,4,Parkdale-High Park,140 JAMESON AVE,4,23,2017-11-07,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S0437,43.636677065600004,-79.4361176047,309938.858,4832749.67
-895873,4152987,2017.0,2017.0,1956.0,PRIVATE,4,Parkdale-High Park,146 JAMESON AVE,4,28,2017-11-07,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,3.0,2.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S0437,43.6369325333,-79.4362160328,309930.895,4832778.044
-895874,4153673,2017.0,2017.0,1925.0,PRIVATE,19,Beaches-East York,1836 QUEEN ST E,3,30,2017-11-07,61,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,,3.0,,3.0,,,3.0,3.0,4.0,2.0,4.0,3.0,,3.0,3.0,,S1937,43.668459839700006,-79.3083945127,320236.165,4836296.316000001
-895875,4153687,2017.0,2017.0,1923.0,PRIVATE,19,Beaches-East York,2150 QUEEN ST E,4,16,2017-11-07,63,Evaluation needs to be conducted in 1 year,15,4.0,3.0,3.0,3.0,,3.0,,3.0,,,4.0,4.0,5.0,2.0,2.0,3.0,3.0,3.0,2.0,,S1939,43.671968236000005,-79.29178994,321573.963,4836690.259
-895876,4228766,2017.0,2017.0,1905.0,PRIVATE,19,Beaches-East York,2218 QUEEN ST E,3,16,2017-11-07,64,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,,3.0,,3.0,,,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,4.0,,S1940,43.67276420899999,-79.2883036582,321855.126,4836778.436000001
-895877,4234487,2017.0,2017.0,1970.0,PRIVATE,2,Etobicoke Centre,300 THE KINGSWAY,4,12,2017-11-07,63,Evaluation needs to be conducted in 1 year,15,3.0,4.0,3.0,3.0,3.0,2.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0229,43.664006468800004,-79.5223413659,302982.48699999996,4835784.26
-895878,4152859,2017.0,2017.0,1974.0,PRIVATE,22,Scarborough-Agincourt,25 BAY MILLS BLVD,21,281,2017-11-07,72,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,,4.0,3.0,4.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,E2226,43.780734624,-79.3042139314,320543.99100000004,4848770.329
-895879,4152675,2017.0,2017.0,1960.0,PRIVATE,20,Scarborough Southwest,821 BIRCHMOUNT RD,6,53,2017-11-07,55,Evaluation needs to be conducted in 1 year,17,3.0,2.0,4.0,2.0,2.0,3.0,,3.0,2.0,,2.0,3.0,2.0,3.0,3.0,3.0,4.0,3.0,3.0,,E2023,43.7287302268,-79.2769823529,322751.357,4842998.379
-895880,4152676,2017.0,2017.0,1961.0,PRIVATE,20,Scarborough Southwest,829 BIRCHMOUNT RD,6,65,2017-11-07,52,Evaluation needs to be conducted in 1 year,17,2.0,2.0,4.0,2.0,2.0,2.0,,2.0,2.0,,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,E2023,43.729010615600004,-79.2769309728,322755.413,4843029.54
-895881,4152858,2017.0,2017.0,1972.0,PRIVATE,22,Scarborough-Agincourt,2350 BIRCHMOUNT RD,13,190,2017-11-07,72,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,,3.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,,E2226,43.7815431046,-79.299799325,320899.11600000004,4848861.007
-895882,4152961,2017.0,2017.0,1960.0,PRIVATE,4,Parkdale-High Park,75 SPENCER AVE,9,71,2017-11-07,64,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S0437,43.636789031999996,-79.429849981,310444.292,4832763.44
-895883,4244920,2017.0,2017.0,2017.0,PRIVATE,12,Toronto-St. Paul's,118 BALLIOL ST,30,342,2017-11-07,86,Evaluation needs to be conducted in 3 years,19,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,S1233,,,313430.374,4839608.751
-895884,4244917,2017.0,2017.0,2017.0,PRIVATE,12,Toronto-St. Paul's,99 DAVISVILLE AVE,14,179,2017-11-07,86,Evaluation needs to be conducted in 3 years,19,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,S1233,,,313417.998,4839660.9969999995
-895885,4154098,2017.0,2017.0,1959.0,PRIVATE,14,Toronto-Danforth,240 COSBURN AVE,6,38,2017-11-07,76,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,4.0,3.0,5.0,,4.0,5.0,4.0,3.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,4.0,,S1422,43.690777348999994,-79.34338942859999,317409.437,4838769.805
-895886,4155178,2017.0,2017.0,1960.0,PRIVATE,5,York South-Weston,220 WOOLNER AVE,9,130,2017-11-07,66,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,2.0,4.0,3.0,2.0,4.0,3.0,,3.0,4.0,5.0,4.0,3.0,3.0,3.0,3.0,2.0,,W0539,43.6723782892,-79.4929488594,305352.953,4836714.002
-895887,4155179,2017.0,2017.0,1960.0,PRIVATE,5,York South-Weston,230 WOOLNER AVE,9,130,2017-11-07,69,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,3.0,4.0,3.0,,4.0,3.0,,3.0,4.0,5.0,4.0,3.0,4.0,3.0,3.0,2.0,,W0539,43.672250689799995,-79.4935197463,305306.919,4836699.823
-895888,4156720,2017.0,2017.0,1962.0,PRIVATE,2,Etobicoke Centre,327 DIXON RD,6,55,2017-11-07,58,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,2.0,2.0,4.0,2.0,4.0,3.0,2.0,3.0,3.0,,W0222,43.694646278,-79.55506382899999,300345.581,4839190.371
-895889,4153530,2017.0,2017.0,1960.0,PRIVATE,13,Toronto Centre,100 GLOUCESTER ST,11,212,2017-11-06,64,Evaluation needs to be conducted in 1 year,17,4.0,3.0,3.0,3.0,,3.0,3.0,2.0,4.0,,4.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,2.0,,S1322,43.6680608437,-79.37977337609999,314480.036,4836241.251
-895890,4155371,2017.0,2017.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,5294 DUNDAS ST W,7,45,2017-11-06,58,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,2.0,3.0,3.0,,2.0,2.0,,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0323,43.637025183,-79.54003296,301553.935,4832788.22
-895891,4155220,2017.0,2017.0,1967.0,PRIVATE,3,Etobicoke-Lakeshore,618 EVANS AVE,3,25,2017-11-06,66,Evaluation needs to be conducted in 2 years,17,4.0,4.0,3.0,4.0,3.0,2.0,,3.0,,3.0,4.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0330,43.610859495,-79.550105854,300739.526,4829881.718
-895892,4155221,2017.0,2017.0,1970.0,PRIVATE,3,Etobicoke-Lakeshore,620 EVANS AVE,3,25,2017-11-06,61,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,2.0,4.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,2.0,3.0,3.0,,W0330,43.610802275,-79.550398922,300715.86600000004,4829875.377
-895893,4154230,2017.0,2017.0,1971.0,PRIVATE,7,Humber River-Black Creek,2850 JANE ST,13,156,2017-11-06,59,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,2.0,,3.0,2.0,5.0,3.0,3.0,3.0,,4.0,2.0,,W0729,43.7501032079,-79.5169169125,303422.212,4845348.952
-895894,4156494,2017.0,2017.0,1974.0,PRIVATE,7,Humber River-Black Creek,4750 JANE ST,15,131,2017-11-06,51,Evaluation needs to be conducted in 1 year,18,3.0,2.0,3.0,2.0,4.0,3.0,2.0,4.0,4.0,,2.0,2.0,3.0,3.0,2.0,3.0,2.0,1.0,1.0,,W0724,43.770560291,-79.521405658,303087.391,4847612.653
-895895,4155124,2017.0,2017.0,1995.0,SOCIAL HOUSING,5,York South-Weston,1296 WESTON RD,5,24,2017-11-06,74,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,3.0,3.0,3.0,4.0,4.0,4.0,,4.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,W0531,43.689065737700005,-79.4960622799,305092.365,4838574.571
-895896,4155472,2017.0,2017.0,1959.0,PRIVATE,3,Etobicoke-Lakeshore,66 STATION RD,3,16,2017-11-06,74,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,2.0,,3.0,,3.0,4.0,4.0,5.0,4.0,4.0,4.0,2.0,4.0,4.0,,W0336,43.6157071247,-79.4949147117,305194.768,4830418.188
-895897,4154574,2017.0,2017.0,1950.0,PRIVATE,6,York Centre,408-414 WILSON AVE,3,32,2017-11-06,60,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,2.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,2.0,,N0629,43.736205215,-79.44139433,309485.652,4843791.438999999
-895898,4154787,2017.0,2017.0,1960.0,PRIVATE,16,Don Valley East,12 THE DONWAY E,4,40,2017-11-06,62,Evaluation needs to be conducted in 1 year,18,4.0,3.0,4.0,3.0,3.0,3.0,,4.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,N1627,43.7353799948,-79.34093531270001,317597.772,4843725.34
-895899,4154790,2017.0,2017.0,1950.0,PRIVATE,16,Don Valley East,2 THE DONWAY E,4,40,2017-11-06,60,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,2.0,3.0,3.0,3.0,,3.0,2.0,3.0,2.0,4.0,3.0,4.0,3.0,3.0,,N1627,43.73286948689999,-79.3418228518,317526.80100000004,4843446.279
-895900,4154789,2017.0,2017.0,1950.0,PRIVATE,16,Don Valley East,4 THE DONWAY E,4,40,2017-11-06,60,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,2.0,3.0,3.0,3.0,,3.0,2.0,3.0,2.0,3.0,4.0,4.0,3.0,3.0,,N1627,43.7330607404,-79.340845323,317590.11699999997,4843465.219
-895901,4155302,2017.0,2017.0,1974.0,PRIVATE,3,Etobicoke-Lakeshore,52 MABELLE AVE,22,310,2017-11-06,60,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,,W0321,43.6464029439,-79.5294506955,302408.377,4833828.787
-895902,4154250,2017.0,2017.0,1962.0,PRIVATE,7,Humber River-Black Creek,137 LINDYLOU RD,7,114,2017-11-06,68,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,3.0,3.0,4.0,,3.0,4.0,,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,2.0,,W0727,43.7488905549,-79.5504144221,300694.74600000004,4845165.695
-895903,4153058,2017.0,2017.0,1930.0,PRIVATE,4,Parkdale-High Park,1585 BLOOR ST W,3,48,2017-11-06,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,2.0,4.0,4.0,3.0,3.0,,3.0,3.0,,S0432,43.655531643,-79.454594071,308446.68,4834844.344
-895904,4154779,2017.0,2017.0,1960.0,PRIVATE,16,Don Valley East,1061 DON MILLS RD,4,40,2017-11-06,64,Evaluation needs to be conducted in 1 year,17,4.0,3.0,4.0,3.0,3.0,3.0,,4.0,3.0,,3.0,2.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,N1627,43.735097283,-79.342235727,317493.08,4843693.732
-895905,4154795,2017.0,2017.0,1950.0,PRIVATE,16,Don Valley East,1129 DON MILLS RD,6,46,2017-11-06,65,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,3.0,4.0,3.0,2.0,3.0,3.0,4.0,3.0,3.0,5.0,3.0,3.0,4.0,3.0,3.0,3.0,,N1624,43.737751539399994,-79.34301416939999,317429.821,4843988.499
-895906,4154796,2017.0,2017.0,1960.0,PRIVATE,16,Don Valley East,1133 DON MILLS RD,6,49,2017-11-06,60,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,,3.0,,3.0,1.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,N1624,43.7382619865,-79.34313342760001,317420.107,4844045.19
-895907,4221312,2017.0,2017.0,1970.0,PRIVATE,11,University-Rosedale,360 BLOOR ST W,16,170,2017-11-06,63,Evaluation needs to be conducted in 1 year,19,4.0,4.0,3.0,2.0,4.0,3.0,3.0,3.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,2.0,3.0,3.0,4.0,S1126,43.6667874217,-79.4051232115,312435.811,4836097.103999999
-895908,4154277,2017.0,2017.0,1965.0,PRIVATE,7,Humber River-Black Creek,50 PEARLDALE AVE,7,96,2017-11-06,57,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,2.0,3.0,2.0,2.0,3.0,,2.0,3.0,5.0,3.0,2.0,3.0,4.0,4.0,2.0,,W0722,43.74918598,-79.563851453,299642.01300000004,4845249.898
-895909,4153541,2017.0,2017.0,1960.0,PRIVATE,13,Toronto Centre,48 ISABELLA ST,10,84,2017-11-06,75,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,,S1322,43.668324,-79.383444564,314183.666,4836271.025
-895910,4153529,2017.0,2017.0,1960.0,PRIVATE,13,Toronto Centre,105 ISABELLA ST,11,221,2017-11-06,61,Evaluation needs to be conducted in 1 year,17,4.0,3.0,3.0,3.0,4.0,3.0,,3.0,3.0,,3.0,2.0,3.0,3.0,3.0,4.0,3.0,3.0,2.0,,S1322,43.6684688832,-79.3799631196,314464.668,4836286.561000001
-895911,4153521,2017.0,2017.0,1960.0,PRIVATE,13,Toronto Centre,135 ISABELLA ST,9,79,2017-11-06,72,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,3.0,4.0,,3.0,3.0,3.0,4.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,,S1322,43.6690495809,-79.3773006128,314679.289,4836351.3780000005
-895912,4264913,2017.0,2017.0,1971.0,PRIVATE,3,Etobicoke-Lakeshore,1286 ISLINGTON AVE,8,77,2017-11-06,69,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,4.0,4.0,,3.0,3.0,,4.0,3.0,4.0,3.0,4.0,3.0,4.0,3.0,4.0,,W0321,43.64846976,-79.525809494,302701.915,4834059.277
-895913,4166992,2017.0,2017.0,1971.0,PRIVATE,3,Etobicoke-Lakeshore,1294 ISLINGTON AVE,8,77,2017-11-06,67,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,4.0,4.0,,3.0,3.0,,3.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,4.0,,W0321,43.64897448399999,-79.52619866100001,302670.539,4834115.36
-895914,4153547,2017.0,2017.0,1915.0,PRIVATE,13,Toronto Centre,44 HUNTLEY ST,3,26,2017-11-06,73,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,3.0,3.0,,3.0,,,4.0,3.0,5.0,4.0,3.0,4.0,,4.0,3.0,,S1322,43.670057953800004,-79.378947526,314546.31,4836463.217
-895915,4154320,2017.0,2017.0,1958.0,PRIVATE,5,York South-Weston,512 RUSTIC RD,3,23,2017-11-06,64,Evaluation needs to be conducted in 1 year,17,3.0,2.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,4.0,4.0,2.0,3.0,4.0,,W0523,43.7187817159,-79.47921400119999,306459.358,4841869.352
-895916,4154953,2017.0,2017.0,1959.0,PRIVATE,12,Toronto-St. Paul's,1516 BATHURST ST,6,42,2017-11-06,57,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,3.0,1.0,,3.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,1.0,,S1229,43.684761291899996,-79.4193183625,311289.144,4838092.746
-895917,4154934,2017.0,2017.0,1943.0,PRIVATE,12,Toronto-St. Paul's,1531 BATHURST ST,4,32,2017-11-06,65,Evaluation needs to be conducted in 1 year,16,4.0,4.0,3.0,3.0,3.0,2.0,,3.0,,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,4.0,,S1230,43.685648012600005,-79.4188899965,311323.587,4838191.296
-895918,4154949,2017.0,2017.0,1926.0,PRIVATE,12,Toronto-St. Paul's,1554 BATHURST ST,4,36,2017-11-06,69,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,3.0,3.0,4.0,,3.0,,,3.0,3.0,5.0,4.0,3.0,4.0,,3.0,3.0,,S1229,43.6855675188,-79.4196915676,311258.971,4838182.291
-895919,4154948,2017.0,2017.0,1926.0,PRIVATE,12,Toronto-St. Paul's,1560 BATHURST ST,4,36,2017-11-06,68,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,,3.0,3.0,4.0,5.0,4.0,3.0,3.0,,3.0,3.0,,S1229,43.6857351417,-79.419761989,311253.276,4838200.909
-895920,4154946,2017.0,2017.0,1926.0,PRIVATE,12,Toronto-St. Paul's,1574 BATHURST ST,4,36,2017-11-06,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,2.0,,4.0,3.0,,S1229,43.686150570900004,-79.4199250703,311240.085,4838247.052
-895921,4154955,2017.0,2017.0,1965.0,PRIVATE,12,Toronto-St. Paul's,1500 BATHURST ST,14,119,2017-11-06,68,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,3.0,3.0,1.0,4.0,3.0,3.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,1.0,4.0,S1229,43.684088394899995,-79.4190637545,311309.74100000004,4838018.005
-895922,4154764,2017.0,2017.0,1968.0,PRIVATE,16,Don Valley East,7 ST DENNIS DR,17,278,2017-11-06,75,Evaluation needs to be conducted in 2 years,20,4.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,2.0,4.0,4.0,4.0,N1630,43.7160160974,-79.3362293241,317981.095,4841574.866
-895923,4154765,2017.0,2017.0,1967.0,PRIVATE,16,Don Valley East,25 ST DENNIS DR,17,297,2017-11-06,69,Evaluation needs to be conducted in 2 years,19,4.0,3.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,,4.0,4.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,N1630,43.717187304300005,-79.33300027770001,318241.038,4841705.521000001
-895924,4156649,2017.0,2017.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,2846 BLOOR ST W,4,16,2017-11-06,60,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,,2.0,,3.0,,,3.0,2.0,5.0,3.0,4.0,3.0,,3.0,2.0,,W0322,43.6492875275,-79.5040692616,,
-895925,4155779,2017.0,2017.0,2007.0,PRIVATE,3,Etobicoke-Lakeshore,11 DUNBLOOR RD,22,278,2017-11-06,80,Evaluation needs to be conducted in 2 years,18,5.0,4.0,4.0,4.0,,3.0,4.0,4.0,4.0,,3.0,3.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,W0321,43.64365741899999,-79.532835392,302143.38300000003,4833527.263
-895926,4155309,2017.0,2017.0,1959.0,PRIVATE,3,Etobicoke-Lakeshore,22 BURNHAMTHORPE RD,5,42,2017-11-06,56,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,2.0,2.0,3.0,2.0,3.0,3.0,3.0,2.0,2.0,,W0321,43.6482360213,-79.53035175859999,302335.75800000003,4834032.463
-895927,4155308,2017.0,2017.0,1959.0,PRIVATE,3,Etobicoke-Lakeshore,24 BURNHAMTHORPE RD,5,42,2017-11-06,56,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,2.0,2.0,3.0,2.0,3.0,3.0,3.0,2.0,2.0,,W0321,43.648430311700004,-79.5307642021,302302.494,4834054.061000001
-895928,4155557,2017.0,2017.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,75 FORTY SECOND ST,4,28,2017-11-03,69,Evaluation needs to be conducted in 2 years,19,3.0,3.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,5.0,4.0,4.0,3.0,4.0,3.0,4.0,,W0334,43.589021478999996,-79.544011345,301230.283,4827455.371
-895929,4156419,2017.0,2017.0,1974.0,PRIVATE,7,Humber River-Black Creek,215 GOSFORD BLVD,8,154,2017-11-03,62,Evaluation needs to be conducted in 1 year,18,3.0,2.0,4.0,2.0,4.0,2.0,3.0,3.0,4.0,,3.0,3.0,5.0,2.0,3.0,3.0,2.0,5.0,3.0,,W0724,43.76926344100001,-79.52281062600001,302932.277,4847469.866
-895930,4156492,2017.0,2017.0,1974.0,PRIVATE,7,Humber River-Black Creek,235 GOSFORD BLVD,15,131,2017-11-03,62,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,3.0,4.0,3.0,5.0,2.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,4.0,2.0,1.0,2.0,,W0724,43.770115213000004,-79.522300555,302992.5,4847674.032
-895931,4152923,2017.0,2017.0,1965.0,PRIVATE,4,Parkdale-High Park,283 GILMOUR AVE,5,37,2017-11-03,69,Evaluation needs to be conducted in 2 years,17,4.0,3.0,3.0,3.0,4.0,3.0,,4.0,4.0,,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,3.0,4.0,S0423,43.665185010600005,-79.4788057495,306493.641,4835915.054
-895932,4155461,2017.0,2017.0,1960.0,PRIVATE,1,Etobicoke North,1865 MARTIN GROVE RD,12,92,2017-11-03,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,2.0,,3.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,W0123,43.7425445347,-79.5934989026,297253.73699999996,4844513.426
-895933,4155458,2017.0,2017.0,1970.0,PRIVATE,1,Etobicoke North,1901 MARTIN GROVE RD,7,136,2017-11-03,57,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,2.0,3.0,2.0,2.0,3.0,,2.0,3.0,5.0,3.0,3.0,2.0,3.0,4.0,3.0,,W0123,43.745074163000005,-79.5949238666,297139.297,4844794.585
-895934,4155413,2017.0,2017.0,1965.0,PRIVATE,1,Etobicoke North,186 KINGSVIEW BLVD,11,81,2017-11-03,73,Evaluation needs to be conducted in 2 years,17,4.0,4.0,3.0,4.0,4.0,4.0,,3.0,3.0,,4.0,4.0,5.0,3.0,3.0,3.0,4.0,4.0,3.0,,W0133,43.6932326583,-79.5665294242,299421.522,4839032.971
-895935,4155243,2017.0,2017.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,12 KINSDALE BLVD,4,16,2017-11-03,59,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0329,43.63569676229999,-79.4921362887,305418.785,4832638.931
-895936,4156711,2017.0,2017.0,2013.0,PRIVATE,10,Spadina-Fort York,100 LOWER OSSINGTON AVE,8,179,2017-11-03,74,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,,4.0,4.0,5.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,S1027,,,311312.897,4833534.316000001
-895937,4154551,2017.0,2017.0,1950.0,PRIVATE,8,Eglinton-Lawrence,21 NEPTUNE DR,3,10,2017-11-03,61,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0823,43.7310658741,-79.4337847571,310118.82,4843235.978999999
-895938,4154550,2017.0,2017.0,1950.0,PRIVATE,8,Eglinton-Lawrence,23 NEPTUNE DR,3,10,2017-11-03,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0823,43.7309371038,-79.43391219909999,310108.565,4843221.665
-895939,4154514,2017.0,2017.0,1960.0,PRIVATE,8,Eglinton-Lawrence,50 NEPTUNE DR,3,12,2017-11-03,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,2.0,,3.0,,3.0,,,3.0,2.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,,N0823,43.731762015,-79.434811008,310035.821,4843314.199
-895940,4154515,2017.0,2017.0,1960.0,PRIVATE,8,Eglinton-Lawrence,52 NEPTUNE DR,3,12,2017-11-03,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,2.0,3.0,3.0,,N0823,43.732014889,-79.434846428,310032.945,4843342.289
-895941,4255529,2017.0,2017.0,1910.0,PRIVATE,9,Davenport,97 NORTHCLIFFE BLVD,3,10,2017-11-03,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,2.0,,3.0,,4.0,,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S0928,43.6782401171,-79.4406119217,309572.876,4837366.827
-895942,4154786,2017.0,2017.0,1960.0,PRIVATE,16,Don Valley East,14 THE DONWAY E,4,40,2017-11-03,62,Evaluation needs to be conducted in 1 year,18,4.0,2.0,4.0,3.0,3.0,4.0,,3.0,4.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,N1627,43.7357778684,-79.34103170739999,317589.923,4843769.528
-895943,4154785,2017.0,2017.0,1959.0,PRIVATE,16,Don Valley East,16 THE DONWAY E,4,61,2017-11-03,60,Evaluation needs to be conducted in 1 year,19,3.0,2.0,4.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,2.0,,N1627,43.7362179741,-79.3411712705,317578.588,4843818.401000001
-895944,4154784,2017.0,2017.0,1963.0,PRIVATE,16,Don Valley East,18 THE DONWAY E,7,76,2017-11-03,67,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,4.0,,3.0,2.0,5.0,4.0,3.0,4.0,4.0,3.0,3.0,,N1627,43.7371481492,-79.34125862890001,317571.354,4843921.73
-895945,4154548,2017.0,2017.0,1960.0,PRIVATE,8,Eglinton-Lawrence,33 WASDALE CRES,3,11,2017-11-03,64,Evaluation needs to be conducted in 1 year,16,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0823,43.730813472200005,-79.4346272545,310050.972,4843207.881
-895946,4154546,2017.0,2017.0,1960.0,PRIVATE,8,Eglinton-Lawrence,37 WASDALE CRES,3,11,2017-11-03,64,Evaluation needs to be conducted in 1 year,16,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0823,43.730660445299996,-79.4351977557,310005.026,4843190.842
-895947,4154788,2017.0,2017.0,1950.0,PRIVATE,16,Don Valley East,6 THE DONWAY E,4,40,2017-11-03,58,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,2.0,3.0,2.0,3.0,3.0,4.0,3.0,2.0,,N1627,43.733595666099994,-79.3405231156,317631.353,4843527.159
-895948,4154263,2017.0,2017.0,1967.0,PRIVATE,7,Humber River-Black Creek,25 STONG CRT,14,151,2017-11-03,58,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,3.0,2.0,2.0,3.0,,2.0,3.0,3.0,3.0,3.0,3.0,4.0,2.0,3.0,,W0725,43.7615247984,-79.5177662952,303354.08,4846617.84
-895949,4154570,2017.0,2017.0,1958.0,PRIVATE,6,York Centre,411 WILSON AVE,3,10,2017-11-03,60,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,4.0,5.0,3.0,2.0,3.0,3.0,2.0,2.0,,N0633,43.7360797537,-79.4390470159,309694.484,4843792.649
-895950,4155119,2017.0,2017.0,1960.0,PRIVATE,5,York South-Weston,40 TRETHEWEY DR,3,45,2017-11-03,59,Evaluation needs to be conducted in 1 year,15,3.0,2.0,3.0,3.0,2.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0532,43.6926109398,-79.4780640156,306552.743,4838961.923
-895951,4154416,2017.0,2017.0,1955.0,PRIVATE,6,York Centre,2816 KEELE ST,3,12,2017-11-03,69,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,4.0,4.0,,4.0,3.0,,N0627,43.729460131,-79.483123472,306144.125,4843055.59
-895952,4154415,2017.0,2017.0,1972.0,PRIVATE,6,York Centre,2818 KEELE ST,3,11,2017-11-03,71,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,,,3.0,3.0,5.0,3.0,4.0,4.0,,4.0,4.0,,N0627,43.7296930914,-79.4831794143,306139.614,4843081.47
-895953,4154773,2017.0,2017.0,1961.0,PRIVATE,16,Don Valley East,32 THE HEIGHTS DR,4,55,2017-11-03,65,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,3.0,4.0,1.0,4.0,3.0,4.0,,3.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,N1627,43.729295625,-79.34013905100001,317684.369,4842978.0819999995
-895954,4152943,2017.0,2017.0,1940.0,PRIVATE,4,Parkdale-High Park,340 HIGH PARK AVE,3,10,2017-11-03,51,Evaluation needs to be conducted in 1 year,16,2.0,3.0,3.0,2.0,3.0,3.0,,1.0,,,3.0,2.0,3.0,3.0,2.0,3.0,4.0,2.0,2.0,,S0424,43.665283034,-79.4705575166,307158.849,4835926.123
-895955,4155270,2017.0,2017.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,4 HILL HEIGHTS RD,4,33,2017-11-03,58,Evaluation needs to be conducted in 1 year,16,3.0,3.0,2.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0327,43.6389180008,-79.4935703818,305303.092,4832996.786
-895956,4154295,2017.0,2017.0,1961.0,PRIVATE,5,York South-Weston,34 GULLIVER RD,6,47,2017-11-03,58,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,2.0,3.0,,2.0,4.0,,3.0,3.0,4.0,3.0,2.0,3.0,3.0,3.0,2.0,,W0529,43.6991965655,-79.478055589,306553.253,4839693.558999999
-895957,4154296,2017.0,2017.0,1960.0,PRIVATE,5,York South-Weston,42 GULLIVER RD,7,60,2017-11-03,69,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,3.0,3.0,3.0,,4.0,3.0,4.0,3.0,4.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,,W0529,43.6991175978,-79.4785706748,306511.73600000003,4839684.778
-895958,4155118,2017.0,2017.0,1960.0,PRIVATE,5,York South-Weston,3 GREENTREE CRT,3,45,2017-11-03,55,Evaluation needs to be conducted in 1 year,15,3.0,2.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,5.0,2.0,2.0,2.0,,2.0,3.0,,W0532,43.6924423305,-79.478539855,306514.38899999997,4838943.183
-895959,4155117,2017.0,2017.0,1970.0,PRIVATE,5,York South-Weston,5 GREENTREE CRT,3,17,2017-11-03,50,Building Audit,16,3.0,2.0,3.0,2.0,2.0,3.0,,2.0,,2.0,2.0,2.0,4.0,3.0,2.0,2.0,,3.0,3.0,,W0532,43.692263947200004,-79.4789792359,306478.974,4838923.358
-895960,4153007,2017.0,2017.0,1952.0,PRIVATE,4,Parkdale-High Park,1502 KING ST W,3,15,2017-11-03,56,Evaluation needs to be conducted in 1 year,14,3.0,2.0,2.0,3.0,,2.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,,2.0,3.0,,S0436,43.636587848400005,-79.4403366563,309598.452,4832739.518
-895961,4152673,2017.0,2017.0,1965.0,PRIVATE,20,Scarborough Southwest,720 KENNEDY RD,14,186,2017-11-03,48,Building Audit,20,2.0,2.0,3.0,2.0,2.0,3.0,2.0,2.0,3.0,1.0,1.0,2.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,E2023,43.7295838093,-79.26735641350001,323526.601,4843095.346
-895962,4152980,2017.0,2017.0,1959.0,PRIVATE,4,Parkdale-High Park,87 JAMESON AVE,9,91,2017-11-03,66,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,4.0,3.0,2.0,3.0,4.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,4.0,,S0437,43.6348167577,-79.4347671675,310047.976,4832543.088
-895963,4152994,2017.0,2017.0,1959.0,PRIVATE,4,Parkdale-High Park,90 JAMESON AVE,7,61,2017-11-03,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,2.0,3.0,3.0,3.0,5.0,3.0,3.0,4.0,3.0,3.0,3.0,,S0437,43.6343822215,-79.4353464505,310001.272,4832494.781
-895964,4152981,2017.0,2017.0,1967.0,PRIVATE,4,Parkdale-High Park,91 JAMESON AVE,11,76,2017-11-03,71,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,3.0,3.0,2.0,,4.0,5.0,,3.0,3.0,5.0,3.0,4.0,3.0,4.0,3.0,4.0,,S0437,43.6351237062,-79.434885342,310038.415,4832577.18
-895965,4155226,2017.0,2017.0,1947.0,PRIVATE,3,Etobicoke-Lakeshore,285 PARK LAWN RD,4,29,2017-11-03,56,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,2.0,,2.0,,,3.0,3.0,4.0,2.0,3.0,3.0,2.0,3.0,3.0,,W0329,43.63456194649999,-79.4922664925,305408.295,4832512.859
-895966,4153367,2017.0,2017.0,1957.0,PRIVATE,12,Toronto-St. Paul's,159 RUSSELL HILL RD,4,18,2017-11-03,60,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,2.0,,3.0,4.0,5.0,3.0,3.0,3.0,2.0,3.0,3.0,,S1237,43.681900098,-79.405861723,312374.18100000004,4837776.963
-895967,4153369,2017.0,2017.0,1959.0,PRIVATE,12,Toronto-St. Paul's,221 RUSSELL HILL RD,4,18,2017-11-03,57,Evaluation needs to be conducted in 1 year,18,3.0,2.0,4.0,3.0,3.0,2.0,3.0,3.0,2.0,,3.0,3.0,5.0,2.0,3.0,3.0,2.0,2.0,3.0,,S1237,43.682871103000004,-79.406514542,312321.425,4837884.787
-895968,4155009,2017.0,2017.0,1950.0,PRIVATE,9,Davenport,22 ROBINA AVE,3,20,2017-11-03,59,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,2.0,,2.0,3.0,,S0925,43.6807571729,-79.4354334131,309990.19399999996,4837646.768
-895969,4155262,2017.0,2017.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,6 CROWN HILL PL,4,37,2017-11-03,53,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,,2.0,,3.0,,,3.0,2.0,3.0,2.0,3.0,3.0,2.0,2.0,3.0,,W0327,43.6385102158,-79.4902204233,305573.399,4832951.506
-895970,4154129,2017.0,2017.0,1970.0,PRIVATE,14,Toronto-Danforth,80 COSBURN AVE,15,84,2017-11-03,74,Evaluation needs to be conducted in 2 years,19,4.0,3.0,2.0,4.0,4.0,5.0,4.0,2.0,4.0,4.0,3.0,3.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,,S1421,43.689297081999996,-79.35092508449999,316802.284,4838604.27
-895971,4152622,2017.0,2017.0,1956.0,PRIVATE,21,Scarborough Centre,9 CRAIGTON DR,4,30,2017-11-03,67,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,3.0,3.0,4.0,5.0,4.0,3.0,3.0,3.0,3.0,4.0,,E2131,43.726834232,-79.3021111159,320727.464,4842782.69
-895972,4152623,2017.0,2017.0,1958.0,PRIVATE,21,Scarborough Centre,15 CRAIGTON DR,4,27,2017-11-03,65,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,,2.0,3.0,4.0,5.0,3.0,4.0,3.0,3.0,2.0,4.0,,E2131,43.727070860699996,-79.30145728810001,320780.078,4842809.1
-895973,4152624,2017.0,2017.0,1956.0,PRIVATE,21,Scarborough Centre,19 CRAIGTON DR,4,38,2017-11-03,70,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,3.0,4.0,4.0,,3.0,,,3.0,4.0,5.0,4.0,4.0,4.0,3.0,3.0,3.0,,E2131,43.7274308243,-79.3009591644,320820.114,4842849.183
-895974,4155261,2017.0,2017.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,5 CROWN HILL PL,4,37,2017-11-03,53,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,,2.0,,3.0,,,3.0,2.0,3.0,2.0,3.0,3.0,2.0,2.0,3.0,,W0327,43.638041895600004,-79.4902414702,305571.7,4832899.478
-895975,4155418,2017.0,2017.0,1965.0,PRIVATE,1,Etobicoke North,41 BLACKFRIAR AVE,6,32,2017-11-03,71,Evaluation needs to be conducted in 2 years,17,4.0,3.0,3.0,4.0,3.0,4.0,,4.0,3.0,,4.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,4.0,,W0133,43.694748314499996,-79.5594207061,299994.67100000003,4839200.9860000005
-895976,4152877,2017.0,2017.0,1970.0,PRIVATE,22,Scarborough-Agincourt,20 CARABOB CRT,15,195,2017-11-03,74,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,,4.0,4.0,4.0,3.0,4.0,3.0,4.0,3.0,4.0,,E2229,43.782204738599994,-79.2977983352,321060.001,4848934.904
-895977,4153368,2017.0,2017.0,1960.0,PRIVATE,12,Toronto-St. Paul's,77 CLARENDON AVE,6,10,2017-11-03,58,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,3.0,,3.0,3.0,5.0,2.0,3.0,3.0,3.0,2.0,2.0,,S1237,43.682364473999996,-79.40603640100001,312360.039,4837828.541999999
-895978,4155063,2017.0,2017.0,1950.0,PRIVATE,9,Davenport,2036 DUFFERIN ST,3,12,2017-11-03,66,Evaluation needs to be conducted in 2 years,14,3.0,3.0,3.0,3.0,,3.0,,4.0,,,3.0,3.0,5.0,4.0,3.0,3.0,,4.0,2.0,,S0922,43.6863686196,-79.446744343,309077.853,4838269.541
-895979,4153876,2017.0,2017.0,1964.0,PRIVATE,12,Toronto-St. Paul's,70 DELISLE AVE,12,180,2017-11-03,73,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,3.0,4.0,3.0,3.0,4.0,4.0,4.0,3.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,,S1232,43.688804973,-79.39776040609999,313026.688,4838543.893999999
-895980,4154699,2017.0,2017.0,1959.0,PRIVATE,6,York Centre,35 CANYON AVE,21,237,2017-11-03,67,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,4.0,,3.0,3.0,5.0,3.0,3.0,3.0,5.0,3.0,3.0,,N0624,43.757997709499996,-79.43691777560001,309864.19800000003,4846227.739
-895981,4255628,2017.0,2017.0,2007.0,PRIVATE,11,University-Rosedale,50 SPADINA RD,8,55,2017-11-03,75,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,,4.0,3.0,3.0,4.0,,4.0,3.0,5.0,4.0,4.0,4.0,,2.0,3.0,5.0,S1126,43.669438916000004,-79.405207226,312424.26300000004,4836380.481000001
-895982,4155843,2017.0,2017.0,1952.0,PRIVATE,20,Scarborough Southwest,3214 ST CLAIR AVE E,3,16,2017-11-03,60,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,2.0,2.0,2.0,,4.0,,,3.0,3.0,5.0,2.0,3.0,3.0,,3.0,3.0,,E2021,43.710470468400004,-79.2900582076,321703.085,4840967.096
-895983,4156305,2017.0,2017.0,1952.0,PRIVATE,20,Scarborough Southwest,3218 ST CLAIR AVE E,3,16,2017-11-03,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,2.0,2.0,2.0,,4.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,3.0,,E2021,43.7103165144,-79.2898372595,321720.933,4840950.037
-895984,4156306,2017.0,2017.0,1952.0,PRIVATE,20,Scarborough Southwest,3222 ST CLAIR AVE E,3,16,2017-11-03,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,2.0,2.0,,4.0,,,3.0,3.0,5.0,2.0,4.0,3.0,,3.0,4.0,,E2021,43.7103391108,-79.2897341837,321729.233,4840952.568
-895985,4155482,2017.0,2017.0,1951.0,PRIVATE,3,Etobicoke-Lakeshore,51 STANLEY AVE,3,12,2017-11-03,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,4.0,3.0,4.0,2.0,,4.0,4.0,,W0336,43.6160393846,-79.4896739143,305617.776,4830455.127
-895986,4153362,2017.0,2017.0,1931.0,PRIVATE,12,Toronto-St. Paul's,394 AVENUE RD,6,41,2017-11-03,65,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1237,43.681931003100004,-79.3998962312,312855.399,4837779.994
-895987,4153361,2017.0,2017.0,1931.0,PRIVATE,12,Toronto-St. Paul's,396 AVENUE RD,6,51,2017-11-03,62,Evaluation needs to be conducted in 1 year,17,3.0,2.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1237,43.682100491099995,-79.4000016066,312846.882,4837798.815
-895988,4153360,2017.0,2017.0,1937.0,PRIVATE,12,Toronto-St. Paul's,398 AVENUE RD,6,39,2017-11-03,64,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1237,43.6822543813,-79.40009921810001,312838.993,4837815.904
-895989,4155766,2017.0,2017.0,2005.0,SOCIAL HOUSING,10,Spadina-Fort York,552 ADELAIDE ST W,5,84,2017-11-03,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,2.0,3.0,3.0,3.0,3.0,,4.0,3.0,4.0,S1029,43.645573462,-79.402433707,312653.459,4833740.458000001
-895990,4155485,2017.0,2017.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,12 ALBERT AVE,3,12,2017-11-03,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,3.0,3.0,3.0,5.0,3.0,4.0,3.0,,3.0,4.0,,W0336,43.6158886447,-79.4889237637,305678.326,4830438.387
-895991,4154273,2017.0,2017.0,1965.0,PRIVATE,7,Humber River-Black Creek,100 YORK GATE BLVD,11,133,2017-11-03,60,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,2.0,2.0,3.0,,W0724,43.7621440095,-79.51993719560001,303179.30100000004,4846686.674
-895992,4154742,2017.0,2017.0,1972.0,PRIVATE,15,Don Valley West,745 YORK MILLS RD,18,138,2017-11-03,78,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,N1524,43.752346265,-79.361904373,315905.269,4845608.147
-895993,4154743,2017.0,2017.0,1970.0,PRIVATE,15,Don Valley West,755 YORK MILLS RD,18,138,2017-11-03,78,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,N1524,43.752378601000004,-79.360756664,315997.687,4845611.893
-895994,4155449,2017.0,2017.0,1974.0,PRIVATE,1,Etobicoke North,18 PANORAMA CRT,17,204,2017-11-02,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,4.0,,4.0,5.0,5.0,3.0,2.0,2.0,3.0,4.0,3.0,,W0124,43.7471776431,-79.5819972103,298180.653,4845027.131
-895995,4152907,2017.0,2017.0,1967.0,PRIVATE,4,Parkdale-High Park,1 RUNNYMEDE RD,4,28,2017-11-02,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,2.0,4.0,2.0,,4.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,3.0,,S0430,43.646159833,-79.473952107,306885.53,4833802.545
-895996,4152912,2017.0,2017.0,1927.0,PRIVATE,4,Parkdale-High Park,117 RUNNYMEDE RD,4,42,2017-11-02,60,Evaluation needs to be conducted in 1 year,15,3.0,2.0,4.0,2.0,3.0,3.0,,3.0,,,2.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S0430,43.6507245776,-79.4756999777,306744.649,4834308.671
-895997,4154374,2017.0,2017.0,1958.0,PRIVATE,6,York Centre,3 HARTHAM PL,3,11,2017-11-02,69,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,3.0,4.0,4.0,,4.0,,4.0,3.0,2.0,5.0,3.0,3.0,4.0,,4.0,3.0,,N0632,43.7300526745,-79.4595177072,308045.841,4843122.061000001
-895998,4154372,2017.0,2017.0,1958.0,PRIVATE,6,York Centre,6 HARTHAM PL,3,26,2017-11-02,74,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,3.0,3.0,4.0,,4.0,,4.0,3.0,2.0,5.0,4.0,4.0,4.0,,4.0,4.0,,N0632,43.729465669,-79.4599073969,308014.479,4843056.8319999995
-895999,4154282,2017.0,2017.0,1961.0,PRIVATE,5,York South-Weston,21 GULLIVER RD,7,51,2017-11-02,71,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,3.0,3.0,3.0,,3.0,2.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,W0529,43.6986462208,-79.4772084771,306621.55,4839632.432
-896000,4154283,2017.0,2017.0,1961.0,PRIVATE,5,York South-Weston,25 GULLIVER RD,7,52,2017-11-02,77,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,4.0,4.0,,3.0,3.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,W0529,43.69855491,-79.4776237229,306588.082,4839622.28
-896001,4155268,2017.0,2017.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,8 HILL HEIGHTS RD,4,27,2017-11-02,58,Evaluation needs to be conducted in 1 year,16,3.0,2.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,,W0327,43.6391002088,-79.4927582679,305368.622,4833017.033
-896002,4153606,2017.0,2017.0,1968.0,PRIVATE,14,Toronto-Danforth,10 HOGARTH AVE,23,287,2017-11-02,62,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,2.0,3.0,2.0,3.0,3.0,3.0,,3.0,3.0,5.0,4.0,3.0,3.0,4.0,2.0,2.0,4.0,S1428,43.6739626249,-79.35545117,316440.365,4836900.03
-896003,4154413,2017.0,2017.0,1954.0,PRIVATE,6,York Centre,1 WANDLE AVE,3,12,2017-11-02,71,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,3.0,3.0,3.0,,4.0,,,4.0,2.0,5.0,3.0,3.0,4.0,,4.0,4.0,,N0627,43.7308109846,-79.483724006,306095.721,4843205.654
-896004,4155473,2017.0,2017.0,1959.0,SOCIAL HOUSING,3,Etobicoke-Lakeshore,110 STANLEY AVE,3,16,2017-11-02,60,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,2.0,3.0,3.0,3.0,,W0336,43.615136766499994,-79.49497407060001,305189.979,4830354.824
-896005,4152901,2017.0,2017.0,1957.0,PRIVATE,4,Parkdale-High Park,9 MORNINGSIDE AVE,4,36,2017-11-02,65,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,3.0,,4.0,3.0,5.0,4.0,4.0,3.0,,4.0,2.0,,S0430,43.645605233000005,-79.473469677,306924.468,4833740.943
-896006,4152742,2017.0,2017.0,1967.0,PRIVATE,24,Scarborough-Guildwood,1050 MARKHAM RD,19,295,2017-11-02,75,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,,3.0,3.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,E2425,43.774364871,-79.231567533,326393.484,4848079.933
-896007,4152598,2017.0,2017.0,1968.0,PRIVATE,20,Scarborough Southwest,10 TEESDALE PL,24,285,2017-11-02,54,Evaluation needs to be conducted in 1 year,19,3.0,2.0,4.0,2.0,2.0,3.0,2.0,2.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,,E2028,43.6965267454,-79.2862044067,322017.663,4839418.771000001
-896008,4152597,2017.0,2017.0,1970.0,PRIVATE,20,Scarborough Southwest,20 TEESDALE PL,24,284,2017-11-02,62,Evaluation needs to be conducted in 1 year,20,3.0,3.0,4.0,2.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,5.0,3.0,4.0,3.0,4.0,2.0,3.0,3.0,E2028,43.6959726218,-79.2874840709,321914.674,4839356.947
-896009,4153416,2017.0,2017.0,1960.0,SOCIAL HOUSING,11,University-Rosedale,25 LEONARD AVE,6,77,2017-11-02,63,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,S1143,43.6538260344,-79.4041248696,312518.031,4834657.24
-896010,4152885,2017.0,2017.0,1982.0,SOCIAL HOUSING,23,Scarborough North,221 MILNER AVE,10,150,2017-11-02,83,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,E2332,43.78834752270001,-79.2401308981,325699.537,4849630.18
-896011,4156174,2017.0,2017.0,1960.0,PRIVATE,24,Scarborough-Guildwood,1 MEADOWGLEN PL,6,50,2017-11-02,59,Evaluation needs to be conducted in 1 year,18,3.0,2.0,4.0,3.0,3.0,1.0,2.0,3.0,3.0,,2.0,2.0,5.0,4.0,3.0,3.0,4.0,3.0,3.0,,E2426,43.774633618,-79.229401141,326588.23600000003,4848090.835
-896012,4244923,2017.0,2017.0,1963.0,PRIVATE,1,Etobicoke North,60 ESTHER LORRIE DR,7,97,2017-11-02,65,Evaluation needs to be conducted in 1 year,17,4.0,5.0,4.0,3.0,4.0,2.0,,2.0,3.0,,3.0,3.0,5.0,3.0,3.0,2.0,4.0,3.0,2.0,,W0129,,,298460.499,4843307.933
-896013,4154078,2017.0,2017.0,1974.0,PRIVATE,19,Beaches-East York,75 EASTDALE AVE,15,235,2017-11-02,72,Evaluation needs to be conducted in 2 years,20,5.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,S1930,43.6951670415,-79.30034635199999,320878.089,4839264.916
-896014,4154076,2017.0,2017.0,1969.0,PRIVATE,19,Beaches-East York,90 EASTDALE AVE,24,383,2017-11-02,70,Evaluation needs to be conducted in 2 years,18,3.0,4.0,3.0,3.0,4.0,2.0,4.0,3.0,4.0,,3.0,3.0,4.0,3.0,3.0,4.0,5.0,4.0,4.0,,S1930,43.6946110438,-79.3012502948,320805.368,4839202.978
-896015,4154690,2017.0,2017.0,1950.0,PRIVATE,6,York Centre,4109 BATHURST ST,3,10,2017-11-02,56,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,3.0,2.0,5.0,2.0,3.0,3.0,,2.0,2.0,,N0630,43.746407389,-79.43586259199999,309949.881,4844941.132
-896016,4154691,2017.0,2017.0,1955.0,PRIVATE,6,York Centre,4111 BATHURST ST,3,11,2017-11-02,59,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,2.0,,N0630,43.746615983000005,-79.43591063699999,309945.994,4844964.303
-896017,4154663,2017.0,2017.0,1960.0,PRIVATE,8,Eglinton-Lawrence,3575 BATHURST ST,7,61,2017-11-02,59,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,2.0,2.0,3.0,2.0,,N0824,43.731811765500005,-79.4323417364,310235.001,4843318.937
-896018,4154664,2017.0,2017.0,1960.0,PRIVATE,8,Eglinton-Lawrence,3635 BATHURST ST,4,19,2017-11-02,51,Evaluation needs to be conducted in 1 year,17,3.0,2.0,2.0,3.0,3.0,3.0,,2.0,1.0,,2.0,3.0,4.0,2.0,3.0,3.0,2.0,3.0,2.0,,N0824,43.733389944399995,-79.43271479319999,310204.804,4843494.231000001
-896019,4154992,2017.0,2017.0,1960.0,PRIVATE,12,Toronto-St. Paul's,1596-1598 BATHURST ST,5,62,2017-11-02,69,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,4.0,3.0,4.0,,3.0,4.0,3.0,4.0,3.0,5.0,4.0,4.0,3.0,,3.0,3.0,,S1229,43.688002772,-79.420528429,311180.353,4838471.794
-896020,4154991,2017.0,2017.0,1939.0,PRIVATE,12,Toronto-St. Paul's,1600 BATHURST ST,4,34,2017-11-02,70,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,4.0,4.0,1.0,,3.0,,4.0,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,1.0,,S1229,43.6883914125,-79.4208539018,311164.975,4838495.947
-896021,4155002,2017.0,2017.0,1954.0,PRIVATE,12,Toronto-St. Paul's,1998 BATHURST ST,3,19,2017-11-02,53,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,2.0,3.0,1.0,,3.0,,2.0,2.0,3.0,3.0,3.0,3.0,3.0,,2.0,3.0,,S1224,43.699416778,-79.4253015871,310805.37100000004,4839720.498
-896022,4244530,2017.0,2017.0,1962.0,PRIVATE,16,Don Valley East,35 ST DENNIS DR,10,331,2017-11-02,53,Evaluation needs to be conducted in 1 year,17,3.0,2.0,3.0,3.0,3.0,4.0,2.0,3.0,3.0,,3.0,4.0,2.0,2.0,2.0,2.0,,2.0,2.0,,N1630,43.718686691,-79.329087808,318555.705,4841873.706
-896023,4155254,2017.0,2017.0,1956.0,PRIVATE,3,Etobicoke-Lakeshore,2 BASKING RIDGE,4,24,2017-11-02,66,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,3.0,2.0,,4.0,,4.0,3.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,,W0327,43.637708415,-79.49353779100001,305305.424,4832863.358
-896024,4153366,2017.0,2017.0,1926.0,PRIVATE,12,Toronto-St. Paul's,400 AVENUE RD,4,41,2017-11-02,62,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,2.0,,3.0,4.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1237,43.682697543900005,-79.4006048601,312798.17100000003,4837865.095
-896025,4153234,2017.0,2017.0,1966.0,PRIVATE,11,University-Rosedale,88 BERNARD AVE,11,82,2017-11-02,70,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,4.0,3.0,,4.0,3.0,4.0,3.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,4.0,,S1127,43.673266415,-79.401942382,312691.256,4836818.126
-896026,4154088,2017.0,2017.0,1965.0,PRIVATE,14,Toronto-Danforth,145 COSBURN AVE,14,82,2017-11-02,77,Evaluation needs to be conducted in 2 years,18,5.0,4.0,4.0,3.0,4.0,3.0,,4.0,3.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1422,43.689573373500004,-79.3465420209,317155.553,4838635.589
-896027,4152900,2017.0,2017.0,1955.0,PRIVATE,4,Parkdale-High Park,101 COE HILL DR,3,47,2017-11-02,66,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,2.0,4.0,2.0,,3.0,3.0,,3.0,3.0,5.0,4.0,4.0,4.0,,3.0,4.0,,S0430,43.6418182703,-79.4734954381,306922.776,4833319.267
-896028,4153609,2017.0,2017.0,1910.0,PRIVATE,14,Toronto-Danforth,648 BROADVIEW AVE,3,11,2017-11-02,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,2.0,3.0,2.0,,4.0,,,3.0,2.0,5.0,3.0,3.0,3.0,2.0,3.0,4.0,,S1428,43.6734656352,-79.3567572276,316335.147,4836844.637
-896029,4153607,2017.0,2017.0,1968.0,PRIVATE,14,Toronto-Danforth,655 BROADVIEW AVE,24,291,2017-11-02,64,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,3.0,3.0,2.0,3.0,3.0,3.0,,3.0,3.0,5.0,4.0,3.0,4.0,4.0,2.0,2.0,4.0,S1428,43.673945589,-79.3561095196,316387.282,4836898.046
-896030,4154939,2017.0,2017.0,1965.0,PRIVATE,12,Toronto-St. Paul's,105 RAGLAN AVE,6,34,2017-11-02,67,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,2.0,3.0,3.0,3.0,4.0,3.0,,3.0,3.0,5.0,4.0,3.0,3.0,4.0,3.0,3.0,,S1229,43.6862572017,-79.42050910350001,311192.988,4838258.855
-896031,4154981,2017.0,2017.0,1963.0,PRIVATE,12,Toronto-St. Paul's,120 RAGLAN AVE,9,175,2017-11-02,65,Evaluation needs to be conducted in 1 year,19,4.0,4.0,4.0,2.0,3.0,3.0,1.0,3.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,,S1229,43.6866664958,-79.4213590285,311124.424,4838304.266
-896032,4155350,2017.0,2017.0,1970.0,PRIVATE,2,Etobicoke Centre,530 SCARLETT RD,12,106,2017-11-02,71,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,3.0,3.0,,5.0,3.0,,3.0,3.0,5.0,4.0,4.0,3.0,3.0,4.0,4.0,3.0,W0224,43.687297049099996,-79.5138247015,303669.893,4838371.568
-896033,4155264,2017.0,2017.0,1962.0,PRIVATE,3,Etobicoke-Lakeshore,8 CROWN HILL PL,4,35,2017-11-02,69,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,3.0,3.0,3.0,,4.0,,,4.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,4.0,,W0327,43.63895874,-79.491216297,305492.78,4833002.28
-896034,4155691,2017.0,2017.0,1966.0,PRIVATE,3,Etobicoke-Lakeshore,39 OLD MILL RD,24,148,2017-11-02,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,W0322,43.6501910215,-79.4940291116,305266.017,4834249.154
-896035,4154585,2017.0,2017.0,1951.0,PRIVATE,6,York Centre,15 ROSSEAU RD,3,11,2017-11-02,56,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,2.0,3.0,3.0,3.0,,3.0,3.0,,N0629,43.742555906599996,-79.436710293,309882.18100000004,4844512.23
-896036,4152831,2017.0,2017.0,1967.0,PRIVATE,24,Scarborough-Guildwood,15 ORTON PARK RD,14,147,2017-11-02,52,Evaluation needs to be conducted in 1 year,19,3.0,3.0,2.0,2.0,3.0,4.0,1.0,2.0,1.0,,2.0,2.0,3.0,3.0,3.0,3.0,4.0,2.0,2.0,4.0,E2427,43.765211236400006,-79.2054482242,328499.94800000003,4847069.129
-896037,4155706,2017.0,2017.0,1969.0,PRIVATE,1,Etobicoke North,21 RICHGROVE DR,11,129,2017-11-02,66,Evaluation needs to be conducted in 2 years,19,3.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,,3.0,3.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,W0137,,,299512.011,4837158.651000001
-896038,4156153,2017.0,2017.0,1969.0,PRIVATE,1,Etobicoke North,7 RICHGROVE DR,11,129,2017-11-02,66,Evaluation needs to be conducted in 2 years,19,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,3.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,W0137,,,299527.406,4837162.739
-896039,4153379,2017.0,2017.0,2003.0,PRIVATE,10,Spadina-Fort York,525 RICHMOND ST W,10,103,2017-11-02,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,,4.0,3.0,3.0,3.0,,3.0,3.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,S1029,43.6469614175,-79.4003305957,312825.032,4833894.922
-896040,4152908,2017.0,2017.0,1967.0,PRIVATE,4,Parkdale-High Park,2 KENNEDY AVE,4,25,2017-11-02,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,2.0,4.0,2.0,,4.0,,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,S0430,43.646232595,-79.473567835,306916.528,4833810.638
-896041,4154424,2017.0,2017.0,1955.0,PRIVATE,6,York Centre,2854 KEELE ST,3,11,2017-11-02,70,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,4.0,4.0,2.0,,4.0,,3.0,4.0,2.0,5.0,3.0,4.0,3.0,,3.0,4.0,,N0627,43.7316216812,-79.48367675109999,306099.51300000004,4843295.718
-896042,4154343,2017.0,2017.0,1959.0,PRIVATE,5,York South-Weston,2 PIMLICO RD,3,12,2017-11-02,60,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,2.0,,W0526,43.707815885600006,-79.4828804419,306164.17600000004,4840651.058999999
-896043,4232598,2017.0,2017.0,1963.0,PRIVATE,2,Etobicoke Centre,1141 ROYAL YORK RD,10,91,2017-11-01,58,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,4.0,2.0,,3.0,3.0,,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,W0230,43.6607734942,-79.5163233393,303467.734,4835424.971
-896044,4154226,2017.0,2017.0,1967.0,PRIVATE,7,Humber River-Black Creek,2020 SHEPPARD AVE W,15,204,2017-11-01,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,2.0,4.0,3.0,3.0,3.0,3.0,,2.0,4.0,5.0,4.0,3.0,3.0,3.0,3.0,3.0,,W0729,43.739202145,-79.5181434205,303323.153,4844137.908
-896045,4153231,2017.0,2017.0,1972.0,SOCIAL HOUSING,11,University-Rosedale,138 PEARS AVE,7,96,2017-11-01,60,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,2.0,3.0,,3.0,3.0,5.0,3.0,3.0,2.0,,3.0,3.0,3.0,S1127,43.6755554537,-79.3981323279,313033.034,4837080.904
-896046,4154824,2017.0,2017.0,1969.0,PRIVATE,17,Don Valley North,1650 SHEPPARD AVE E,15,149,2017-11-01,65,Evaluation needs to be conducted in 1 year,20,4.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,2.0,5.0,3.0,4.0,3.0,4.0,3.0,1.0,2.0,N1727,43.775121294099996,-79.3490805112,316933.665,4848139.196
-896047,4228923,2017.0,2017.0,1957.0,PRIVATE,8,Eglinton-Lawrence,200 RIDLEY BLVD,4,90,2017-11-01,61,Evaluation needs to be conducted in 1 year,17,3.0,2.0,4.0,3.0,3.0,3.0,,2.0,4.0,,3.0,3.0,5.0,2.0,2.0,3.0,4.0,3.0,3.0,,N0824,43.7382356013,-79.41970552779999,311252.265,4844033.447
-896048,4155050,2017.0,2017.0,1965.0,PRIVATE,8,Eglinton-Lawrence,836 ROSELAWN AVE,3,26,2017-11-01,59,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0831,43.702756083000004,-79.4397938426,309636.983,4840090.505
-896049,4153164,2017.0,2017.0,1968.0,PRIVATE,9,Davenport,323 RUSHOLME RD,20,226,2017-11-01,68,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,3.0,3.0,2.0,3.0,3.0,3.0,,4.0,3.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,,S0934,43.658994583,-79.430040338,310404.687,4835239.268999999
-896050,4155422,2017.0,2017.0,1955.0,PRIVATE,1,Etobicoke North,75 IRWIN RD,6,53,2017-11-01,60,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,3.0,,4.0,2.0,5.0,2.0,3.0,3.0,3.0,4.0,2.0,,W0131,43.7249788623,-79.5580297876,300109.16,4842559.379
-896051,4153680,2017.0,2017.0,1959.0,SOCIAL HOUSING,19,Beaches-East York,136 KINGSTON RD,4,94,2017-11-01,76,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,3.0,,3.0,,,4.0,3.0,5.0,3.0,4.0,4.0,,3.0,5.0,,S1937,43.6707253488,-79.3116255888,319975.034,4836547.4180000005
-896052,4153677,2017.0,2017.0,1960.0,PRIVATE,19,Beaches-East York,158 KINGSTON RD,4,44,2017-11-01,68,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,2.0,4.0,,4.0,,3.0,3.0,3.0,5.0,4.0,2.0,4.0,,3.0,4.0,,S1937,43.6712621487,-79.3112236755,320007.309,4836607.1280000005
-896053,4153676,2017.0,2017.0,1934.0,PRIVATE,19,Beaches-East York,204 KINGSTON RD,3,15,2017-11-01,65,Evaluation needs to be conducted in 1 year,15,4.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,4.0,2.0,5.0,3.0,3.0,4.0,,3.0,3.0,,S1937,43.6722400679,-79.3102957191,320081.891,4836715.941000001
-896054,4153656,2017.0,2017.0,1985.0,SOCIAL HOUSING,14,Toronto-Danforth,100 UNITY RD,6,98,2017-11-01,59,Evaluation needs to be conducted in 1 year,20,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,4.0,3.0,2.0,3.0,2.0,3.0,3.0,2.0,S1432,43.677802998900006,-79.3304925488,318452.018,4837330.443
-896055,4153655,2017.0,2017.0,1983.0,SOCIAL HOUSING,14,Toronto-Danforth,110 UNITY RD,8,174,2017-11-01,56,Evaluation needs to be conducted in 1 year,20,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,5.0,2.0,2.0,3.0,2.0,2.0,3.0,2.0,S1432,43.6779324239,-79.3299297782,318497.365,4837344.914
-896056,4154620,2017.0,2017.0,1994.0,SOCIAL HOUSING,6,York Centre,15 TORRESDALE AVE,7,61,2017-11-01,67,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,,N0622,43.773480632100004,-79.4511037364,308720.91,4847947.07
-896057,4154523,2017.0,2017.0,1956.0,PRIVATE,8,Eglinton-Lawrence,20 HOTSPUR RD,3,12,2017-11-01,58,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,,N0823,43.7331587008,-79.4345882213,310034.957,4843456.2639999995
-896058,4221322,2017.0,2017.0,1968.0,PRIVATE,16,Don Valley East,48 GRENOBLE DR,9,109,2017-11-01,74,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,,3.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,,N1630,43.716768048999995,-79.331308961,318377.163,4841660.179
-896059,4155538,2017.0,2017.0,1970.0,PRIVATE,3,Etobicoke-Lakeshore,105 TWENTY FIFTH ST,3,29,2017-11-01,53,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,2.0,,2.0,,3.0,,,2.0,2.0,5.0,2.0,2.0,3.0,,2.0,3.0,,W0334,43.5964677735,-79.5233498233,302899.17,4828280.973
-896060,4154341,2017.0,2017.0,1965.0,PRIVATE,5,York South-Weston,1640 LAWRENCE AVE W,9,92,2017-11-01,61,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,,W0526,43.7058159732,-79.4929514926,305352.55,4840428.784
-896061,4153212,2017.0,2017.0,1955.0,PRIVATE,11,University-Rosedale,85 LOWTHER AVE,8,44,2017-11-01,63,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,4.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,5.0,4.0,3.0,3.0,3.0,3.0,3.0,,S1127,43.669735327,-79.40029681,312824.398,4836426.0
-896062,4155060,2017.0,2017.0,1960.0,PRIVATE,8,Eglinton-Lawrence,178 LOCKSLEY AVE,3,24,2017-11-01,55,Evaluation needs to be conducted in 1 year,16,3.0,2.0,2.0,3.0,2.0,2.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,2.0,3.0,3.0,,N0831,43.7023837133,-79.4491090339,308886.201,4840048.632
-896063,4152833,2017.0,2017.0,1973.0,PRIVATE,24,Scarborough-Guildwood,750 MORNINGSIDE AVE,13,165,2017-11-01,74,Evaluation needs to be conducted in 2 years,19,4.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,4.0,,3.0,4.0,4.0,4.0,3.0,3.0,5.0,4.0,4.0,4.0,E2423,43.788199733999996,-79.195048036,329327.695,4849627.083000001
-896064,4154498,2017.0,2017.0,1958.0,PRIVATE,8,Eglinton-Lawrence,1111 LAWRENCE AVE W,3,15,2017-11-01,64,Evaluation needs to be conducted in 1 year,16,3.0,4.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,2.0,3.0,3.0,4.0,,N0826,43.71185691189999,-79.4634512114,307729.784,4841100.462
-896065,4254270,2017.0,2017.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,139 EIGHTH ST,3,47,2017-11-01,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,4.0,,W0335,43.601494318,-79.50658095600001,304252.79600000003,4828840.154
-896066,4154276,2017.0,2017.0,1969.0,PRIVATE,7,Humber River-Black Creek,35 DUNCANWOODS DR,7,75,2017-11-01,62,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,3.0,4.0,,2.0,3.0,,3.0,2.0,5.0,3.0,3.0,3.0,3.0,4.0,2.0,,W0722,43.7506086737,-79.5580653576,300108.373,4845406.643
-896067,4154834,2017.0,2017.0,1968.0,PRIVATE,17,Don Valley North,20 GODSTONE RD,15,174,2017-11-01,51,Evaluation needs to be conducted in 1 year,20,3.0,2.0,4.0,1.0,2.0,3.0,2.0,2.0,3.0,2.0,2.0,3.0,4.0,3.0,3.0,3.0,4.0,2.0,1.0,2.0,N1727,43.780638469399996,-79.3474983213,317059.92600000004,4848752.364
-896068,4254274,2017.0,2017.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,143 EIGHTH ST,4,47,2017-11-01,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0335,43.601842503,-79.506732984,304240.524,4828878.837
-896069,4153681,2017.0,2017.0,1960.0,PRIVATE,19,Beaches-East York,15 EASTWOOD RD,4,24,2017-11-01,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,,,3.0,3.0,3.0,3.0,2.0,3.0,5.0,2.0,3.0,,S1937,43.6728164425,-79.3184832171,319421.536,4836778.516
-896070,4155525,2017.0,2017.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,70 FIFTEENTH ST,3,25,2017-11-01,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,4.0,3.0,4.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,3.0,,3.0,4.0,,W0335,43.6020354915,-79.5156367545,303522.018,4828899.402
-896071,4155717,2017.0,2017.0,1975.0,SOCIAL HOUSING,22,Scarborough-Agincourt,3333 FINCH AVE E,6,297,2017-11-01,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,E2225,43.796093308900005,-79.3168137535,319537.83,4850443.82
-896072,4154476,2017.0,2017.0,1968.0,PRIVATE,7,Humber River-Black Creek,1 FOUNTAINHEAD RD,23,370,2017-11-01,67,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,W0726,43.76160337939999,-79.5015843988,304657.05100000004,4846626.4
-896073,4154475,2017.0,2017.0,1973.0,PRIVATE,7,Humber River-Black Creek,35 FOUNTAINHEAD RD,22,370,2017-11-01,69,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,4.0,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,W0726,43.761108533000005,-79.503752985,304482.17,4846572.3889999995
-896074,4154474,2017.0,2017.0,1972.0,PRIVATE,7,Humber River-Black Creek,40 FOUNTAINHEAD RD,22,370,2017-11-01,67,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,W0726,43.762581653000005,-79.504256907,304441.6,4846736.049
-896075,4155519,2017.0,2017.0,1958.0,PRIVATE,3,Etobicoke-Lakeshore,50 FOURTH ST,3,11,2017-11-01,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,2.0,3.0,2.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0335,43.5991188211,-79.5012245162,304685.481,4828575.294
-896076,4155755,2017.0,2017.0,1970.0,SOCIAL HOUSING,19,Beaches-East York,17 EDGEWOOD AVE,3,30,2017-11-01,69,Evaluation needs to be conducted in 2 years,16,3.0,4.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,4.0,5.0,4.0,3.0,3.0,,4.0,4.0,3.0,S1937,43.670270654300005,-79.31262684810001,319894.407,4836496.722
-896077,4153675,2017.0,2017.0,1959.0,SOCIAL HOUSING,19,Beaches-East York,23 EDGEWOOD AVE,4,24,2017-11-01,70,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,3.0,4.0,3.0,,3.0,,,4.0,4.0,5.0,3.0,3.0,4.0,3.0,2.0,4.0,,S1937,43.670497618,-79.313073089,319858.105,4836522.81
-896078,4155339,2017.0,2017.0,1970.0,PRIVATE,2,Etobicoke Centre,10 FONTENAY CRT,6,63,2017-11-01,66,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,3.0,4.0,2.0,3.0,3.0,3.0,,4.0,3.0,5.0,4.0,3.0,3.0,3.0,3.0,3.0,,W0230,43.681930505,-79.511655476,303844.403,4837776.302
-896079,4154811,2017.0,2017.0,1968.0,PRIVATE,17,Don Valley North,24 FOREST MANOR RD,10,128,2017-11-01,60,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,2.0,2.0,3.0,2.0,4.0,3.0,2.0,3.0,2.0,4.0,3.0,3.0,4.0,4.0,4.0,2.0,,N1730,43.771058443,-79.344641223,317291.63,4847689.442
-896080,4156523,2017.0,2017.0,1950.0,PRIVATE,2,Etobicoke Centre,4750 DUNDAS ST W,4,14,2017-11-01,60,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,3.0,2.0,,2.0,,,4.0,2.0,5.0,3.0,3.0,3.0,,3.0,2.0,,W0229,43.652601481000005,-79.525645179,302689.55199999997,4834490.961
-896081,4156289,2017.0,2017.0,1950.0,PRIVATE,2,Etobicoke Centre,4752 DUNDAS ST W,4,14,2017-11-01,60,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,3.0,2.0,,2.0,,,4.0,2.0,5.0,3.0,3.0,3.0,,3.0,2.0,,W0229,43.652394933000004,-79.525845839,302688.053,4834472.61
-896082,4156225,2017.0,2017.0,1950.0,PRIVATE,2,Etobicoke Centre,4754 DUNDAS ST W,4,14,2017-11-01,60,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,3.0,2.0,,2.0,,,4.0,2.0,5.0,3.0,3.0,3.0,,3.0,2.0,,W0229,43.652203577,-79.525983776,302683.101,4834465.154
-896083,4154658,2017.0,2017.0,1955.0,PRIVATE,8,Eglinton-Lawrence,3253 BATHURST ST,4,22,2017-11-01,55,Evaluation needs to be conducted in 1 year,17,3.0,2.0,3.0,3.0,3.0,3.0,,2.0,,3.0,3.0,2.0,4.0,3.0,3.0,3.0,2.0,3.0,2.0,,N0824,43.723707331499995,-79.43032362529999,310398.345,4842418.708000001
-896084,4154659,2017.0,2017.0,1955.0,PRIVATE,8,Eglinton-Lawrence,3255 BATHURST ST,4,22,2017-11-01,52,Evaluation needs to be conducted in 1 year,17,3.0,2.0,3.0,3.0,3.0,4.0,,2.0,,2.0,2.0,2.0,3.0,3.0,3.0,3.0,2.0,2.0,2.0,,N0824,43.7239351487,-79.4303884781,310393.099,4842444.013
-896085,4154660,2017.0,2017.0,1955.0,PRIVATE,8,Eglinton-Lawrence,3257 BATHURST ST,4,20,2017-11-01,52,Evaluation needs to be conducted in 1 year,17,3.0,2.0,3.0,3.0,3.0,4.0,,2.0,,2.0,2.0,2.0,4.0,3.0,3.0,2.0,2.0,2.0,2.0,,N0824,43.7241610224,-79.430453768,310387.818,4842469.102
-896086,4154646,2017.0,2017.0,1968.0,PRIVATE,6,York Centre,4918 BATHURST ST,6,60,2017-11-01,57,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,2.0,,3.0,2.0,4.0,3.0,3.0,3.0,3.0,3.0,2.0,,N0624,43.7728864941,-79.4432661421,309351.886,4847881.463
-896087,4153757,2017.0,2017.0,1957.0,PRIVATE,15,Don Valley West,657 BALLIOL ST,4,29,2017-11-01,60,Evaluation needs to be conducted in 1 year,16,3.0,2.0,4.0,2.0,3.0,2.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N1534,43.701182908,-79.3760801591,314772.44,4839921.468
-896088,4156567,2017.0,2017.0,1979.0,PRIVATE,13,Toronto Centre,1101 BAY ST,28,265,2017-11-01,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,4.0,5.0,4.0,4.0,3.0,4.0,,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,2.0,4.0,S1321,43.667761355100005,-79.3884160975,313791.06,4836213.3
-896089,4153893,2017.0,2017.0,1954.0,PRIVATE,12,Toronto-St. Paul's,1603 BATHURST ST,6,73,2017-11-01,69,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,4.0,3.0,1.0,,3.0,4.0,3.0,4.0,4.0,5.0,3.0,3.0,4.0,3.0,4.0,4.0,,S1230,43.689065755,-79.419580207,311267.32899999997,4838571.916999999
-896090,4154997,2017.0,2017.0,1930.0,PRIVATE,12,Toronto-St. Paul's,1650 BATHURST ST,3,25,2017-11-01,69,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,3.0,2.0,,3.0,,2.0,4.0,3.0,5.0,3.0,4.0,4.0,4.0,4.0,3.0,,S1224,43.693814525,-79.4231231926,310981.49600000004,4839098.2639999995
-896091,4155000,2017.0,2017.0,1950.0,PRIVATE,12,Toronto-St. Paul's,1652 BATHURST ST,4,39,2017-11-01,67,Evaluation needs to be conducted in 2 years,14,4.0,4.0,3.0,3.0,,3.0,,3.0,,,4.0,3.0,5.0,4.0,3.0,3.0,,4.0,1.0,,S1224,43.6942486943,-79.4234335468,310956.436,4839146.473999999
-896092,4154999,2017.0,2017.0,1950.0,PRIVATE,12,Toronto-St. Paul's,1654 BATHURST ST,5,72,2017-11-01,65,Evaluation needs to be conducted in 1 year,15,4.0,4.0,3.0,3.0,,2.0,,4.0,4.0,,3.0,4.0,4.0,4.0,1.0,3.0,,3.0,3.0,,S1224,43.6945897541,-79.4235472472,310947.238,4839184.355
-896093,4154998,2017.0,2017.0,1941.0,PRIVATE,12,Toronto-St. Paul's,1660 BATHURST ST,3,52,2017-11-01,70,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,4.0,3.0,4.0,,3.0,,3.0,4.0,4.0,5.0,2.0,4.0,3.0,,3.0,3.0,,S1224,43.6950513231,-79.4234851985,310952.196,4839235.6389999995
-896094,4153973,2017.0,2017.0,1976.0,PRIVATE,8,Eglinton-Lawrence,2500 BATHURST ST,10,83,2017-11-01,74,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,3.0,,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,3.0,,N0832,43.7058074036,-79.426918953,310674.391,4840430.382
-896095,4153770,2017.0,2017.0,1957.0,PRIVATE,12,Toronto-St. Paul's,44 BALLIOL ST,4,30,2017-11-01,59,Evaluation needs to be conducted in 1 year,17,3.0,2.0,3.0,3.0,3.0,2.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,S1233,43.6979650851,-79.3950974704,313240.055,4839561.859
-896096,4153762,2017.0,2017.0,1966.0,PRIVATE,12,Toronto-St. Paul's,45 BALLIOL ST,18,263,2017-11-01,77,Evaluation needs to be conducted in 2 years,20,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,S1233,43.697360037399996,-79.3949972041,313248.222,4839494.65
-896097,4153763,2017.0,2017.0,1965.0,PRIVATE,12,Toronto-St. Paul's,155 BALLIOL ST,18,286,2017-11-01,74,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,,3.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,S1233,43.697965104,-79.3921328391,313479.032,4839562.166999999
-896098,4153764,2017.0,2017.0,1968.0,PRIVATE,12,Toronto-St. Paul's,165 BALLIOL ST,4,48,2017-11-01,70,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,4.0,2.0,,3.0,5.0,3.0,4.0,4.0,5.0,2.0,4.0,4.0,3.0,2.0,4.0,,S1233,43.6980801264,-79.3913521061,313541.95,4839575.028
-896099,4155776,2017.0,2017.0,1967.0,PRIVATE,6,York Centre,35 CEDARCROFT BLVD,13,207,2017-11-01,60,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,2.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,N0622,43.7827450557,-79.4483048718,308945.57399999996,4848976.441000001
-896100,4154756,2017.0,2017.0,1976.0,PRIVATE,16,Don Valley East,35 WYNFORD HEIGHTS CRES,25,217,2017-11-01,77,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,N1629,43.7263188872,-79.326226049,318784.766,4842721.124
-896101,4154757,2017.0,2017.0,1973.0,PRIVATE,16,Don Valley East,45 WYNFORD HEIGHTS CRES,21,346,2017-11-01,73,Evaluation needs to be conducted in 2 years,20,4.0,3.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,5.0,3.0,3.0,3.0,4.0,4.0,3.0,4.0,N1629,43.72699020859999,-79.32555199810001,318838.914,4842795.818
-896102,4153010,2017.0,2017.0,2010.0,SOCIAL HOUSING,4,Parkdale-High Park,194 DOWLING AVE,4,29,2017-11-01,65,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,3.0,,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S0436,43.6397760709,-79.44001122579999,309624.458,4833093.725
-896103,4154661,2017.0,2017.0,1970.0,PRIVATE,8,Eglinton-Lawrence,595 BROOKDALE AVE,7,47,2017-11-01,53,Evaluation needs to be conducted in 1 year,18,3.0,2.0,3.0,2.0,3.0,3.0,,3.0,2.0,3.0,2.0,2.0,5.0,2.0,3.0,3.0,2.0,3.0,2.0,,N0824,43.7242678241,-79.42950883510001,310463.939,4842481.031
-896104,4154286,2017.0,2017.0,1954.0,PRIVATE,5,York South-Weston,150 CULFORD RD,5,110,2017-11-01,63,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0529,43.705053002,-79.48808484199999,305744.52,4840345.009
-896105,4250590,2017.0,2017.0,2002.0,SOCIAL HOUSING,14,Toronto-Danforth,1117 DANFORTH AVE,3,26,2017-11-01,58,Evaluation needs to be conducted in 1 year,16,3.0,1.0,4.0,2.0,3.0,2.0,,4.0,,,2.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,3.0,S1431,43.6807944237,-79.33409174260001,318161.157,4837662.183
-896106,4221299,2017.0,2017.0,1950.0,PRIVATE,9,Davenport,1094 COLLEGE ST,3,19,2017-11-01,53,Evaluation needs to be conducted in 1 year,15,2.0,2.0,3.0,3.0,2.0,2.0,,3.0,,,3.0,3.0,3.0,3.0,3.0,3.0,,2.0,3.0,,S0934,43.6528825044,-79.4321278569,310259.331,4834550.221
-896107,4154614,2017.0,2017.0,1950.0,PRIVATE,6,York Centre,1042 SHEPPARD AVE W,4,16,2017-11-01,56,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,,,3.0,2.0,4.0,3.0,2.0,3.0,3.0,3.0,2.0,,N0624,43.7508224875,-79.46202091970001,307843.201,4845429.41
-896108,4154470,2017.0,2017.0,1966.0,PRIVATE,7,Humber River-Black Creek,391 SENTINEL RD,4,44,2017-11-01,65,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,4.0,3.0,5.0,3.0,3.0,4.0,,3.0,3.0,,W0731,43.760281803199994,-79.4991391395,304853.94,4846479.576
-896109,4154473,2017.0,2017.0,1970.0,PRIVATE,7,Humber River-Black Creek,470 SENTINEL RD,22,370,2017-11-01,65,Evaluation needs to be conducted in 1 year,19,4.0,3.0,4.0,2.0,4.0,3.0,2.0,3.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,,W0726,43.762976118100006,-79.502065617,304618.30600000004,4846778.908
-896110,4153138,2017.0,2017.0,1989.0,SOCIAL HOUSING,10,Spadina-Fort York,24 SHAW ST,9,200,2017-11-01,57,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,2.0,3.0,2.0,S1027,43.6423363643,-79.4160843491,311554.662,4833379.7069999995
-896111,4155337,2017.0,2017.0,1963.0,PRIVATE,2,Etobicoke Centre,1137 ROYAL YORK RD,10,122,2017-11-01,61,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,4.0,2.0,,3.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,W0230,43.6612337924,-79.51514744149999,303562.582,4835476.083000001
-896112,4232595,2017.0,2017.0,1963.0,PRIVATE,2,Etobicoke Centre,1139 ROYAL YORK RD,10,90,2017-11-01,59,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,4.0,2.0,,3.0,3.0,,2.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,W0230,43.6611103479,-79.5158726377,303504.092,4835462.384
-896113,4155416,2017.0,2017.0,1965.0,PRIVATE,1,Etobicoke North,15 BRIDESBURG DR,5,62,2017-10-31,73,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,2.0,,4.0,3.0,,3.0,4.0,5.0,4.0,4.0,3.0,3.0,3.0,4.0,,W0133,43.6954283333,-79.5605528482,299903.466,4839276.584
-896114,4155415,2017.0,2017.0,1965.0,PRIVATE,1,Etobicoke North,25 BRIDESBURG DR,5,62,2017-10-31,67,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,3.0,4.0,2.0,,3.0,3.0,,3.0,3.0,5.0,3.0,4.0,3.0,3.0,4.0,3.0,,W0133,43.695559099200004,-79.5621204322,299777.119,4839291.193
-896115,4154468,2017.0,2017.0,1967.0,PRIVATE,7,Humber River-Black Creek,170 SENTINEL RD,4,60,2017-10-31,59,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,2.0,3.0,3.0,4.0,2.0,,2.0,3.0,5.0,4.0,3.0,3.0,3.0,2.0,3.0,,W0731,43.75162192,-79.4974696596,304988.387,4845517.507
-896116,4257267,2017.0,2017.0,1969.0,PRIVATE,12,Toronto-St. Paul's,95 REDPATH AVE,14,93,2017-10-31,71,Evaluation needs to be conducted in 2 years,19,4.0,2.0,3.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,3.0,4.0,5.0,3.0,3.0,4.0,4.0,3.0,4.0,,S1228,43.7069494634,-79.3920429105,313485.001,4840560.34
-896117,4153003,2017.0,2017.0,1922.0,PRIVATE,4,Parkdale-High Park,1623 QUEEN ST W,4,42,2017-10-31,63,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S0436,43.638781441400006,-79.4452145314,309204.71,4832982.945
-896118,4155758,2017.0,2017.0,2005.0,PRIVATE,8,Eglinton-Lawrence,515 ROSEWELL AVE,7,89,2017-10-31,78,Evaluation needs to be conducted in 2 years,20,5.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,N0829,43.7222177359,-79.4134144337,311760.877,4842254.524
-896119,4155223,2017.0,2017.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,810 ROYAL YORK RD,6,60,2017-10-31,61,Evaluation needs to be conducted in 1 year,18,3.0,4.0,4.0,3.0,3.0,2.0,,3.0,2.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,2.0,,W0325,43.639553376,-79.509024033,304055.942,4833068.369
-896120,4154845,2017.0,2017.0,1968.0,PRIVATE,17,Don Valley North,50 RUDDINGTON DR,14,189,2017-10-31,73,Evaluation needs to be conducted in 2 years,20,4.0,2.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,3.0,4.0,3.0,4.0,3.0,3.0,4.0,N1721,43.7904933942,-79.3906931297,313581.62100000004,4849841.742
-896121,4155809,2017.0,2017.0,1975.0,PRIVATE,13,Toronto Centre,191 SHERBOURNE ST,17,371,2017-10-31,62,Evaluation needs to be conducted in 1 year,20,3.0,2.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,S1329,43.6567986347,-79.369926655,315276.068,4834991.252
-896122,4154683,2017.0,2017.0,1950.0,PRIVATE,8,Eglinton-Lawrence,2175 AVENUE RD,4,68,2017-10-31,66,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,4.0,3.0,,3.0,3.0,2.0,2.0,3.0,5.0,2.0,3.0,3.0,4.0,4.0,4.0,,N0821,43.7409197026,-79.4210747483,311141.686,4844331.521000001
-896123,4156612,2017.0,2017.0,1956.0,PRIVATE,16,Don Valley East,5 WINGREEN CRT,3,22,2017-10-31,61,Evaluation needs to be conducted in 1 year,17,3.0,2.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,1.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,,N1624,43.7387840807,-79.3424492566,,
-896124,4155213,2017.0,2017.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,2696 BLOOR ST W,3,15,2017-10-31,56,Evaluation needs to be conducted in 1 year,17,3.0,3.0,2.0,3.0,2.0,2.0,,3.0,,2.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,2.0,,W0322,43.6503199258,-79.4985552052,304900.86199999996,4834263.452
-896125,4155367,2017.0,2017.0,1964.0,PRIVATE,2,Etobicoke Centre,301 DIXON RD,16,225,2017-10-31,61,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,,W0222,43.694910741,-79.5525691249,300546.94399999996,4839218.677
-896126,4154418,2017.0,2017.0,1945.0,PRIVATE,6,York Centre,11 CALVINGTON DR,3,11,2017-10-31,69,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,,3.0,3.0,3.0,5.0,4.0,4.0,3.0,,4.0,4.0,,N0627,43.733305504300006,-79.48403421270001,306070.686,4843482.777
-896127,4155746,2017.0,2017.0,1968.0,PRIVATE,7,Humber River-Black Creek,11 CATFORD RD,9,218,2017-10-31,61,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,2.0,3.0,3.0,3.0,3.0,3.0,,2.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,3.0,,W0731,43.7587124736,-79.49134153979999,305481.82300000003,4846305.27
-896128,4155680,2017.0,2017.0,1930.0,PRIVATE,12,Toronto-St. Paul's,3 BROADWAY AVE,4,36,2017-10-31,65,Evaluation needs to be conducted in 1 year,16,4.0,2.0,3.0,3.0,4.0,4.0,,2.0,4.0,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1221,43.70948336,-79.39845180489999,312968.13800000004,4840841.205
-896129,4155297,2017.0,2017.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,2645 BLOOR ST W,5,42,2017-10-31,67,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,3.0,2.0,3.0,3.0,4.0,,4.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0327,43.648946892,-79.494356545,305239.348,4834111.89
-896130,4155294,2017.0,2017.0,1940.0,PRIVATE,3,Etobicoke-Lakeshore,2655 BLOOR ST W,5,45,2017-10-31,60,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,4.0,3.0,2.0,,3.0,,3.0,3.0,2.0,5.0,3.0,3.0,2.0,2.0,3.0,3.0,,W0327,43.6494614357,-79.495683937,305101.599,4834184.1389999995
-896131,4154102,2017.0,2017.0,1956.0,PRIVATE,14,Toronto-Danforth,130 COSBURN AVE,6,48,2017-10-31,76,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,3.0,4.0,2.0,,3.0,4.0,4.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,S1422,43.689964771999996,-79.3476769455,317063.98600000003,4838678.909
-896132,4154648,2017.0,2017.0,1963.0,PRIVATE,6,York Centre,4866 BATHURST ST,10,81,2017-10-31,67,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,5.0,4.0,3.0,3.0,4.0,3.0,3.0,,N0624,43.771601520299996,-79.44318159689999,309358.789,4847738.71
-896133,4154720,2017.0,2017.0,1971.0,PRIVATE,18,Willowdale,6151 BATHURST ST,12,67,2017-10-31,66,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,4.0,5.0,2.0,3.0,3.0,4.0,2.0,3.0,,N1821,43.788050695200006,-79.445991695,309131.37,4849566.008
-896134,4154624,2017.0,2017.0,1979.0,PRIVATE,6,York Centre,300 ANTIBES DR,21,372,2017-10-31,66,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,,4.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,N0622,43.7812935158,-79.450030785,308806.743,4848815.09
-896135,4154856,2017.0,2017.0,1950.0,PRIVATE,16,Don Valley East,76 BARTLEY DR,3,10,2017-10-31,60,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,3.0,3.0,2.0,5.0,3.0,3.0,2.0,,3.0,2.0,,N1631,43.722668083,-79.306350662,320386.727,4842320.0030000005
-896136,4154684,2017.0,2017.0,1950.0,PRIVATE,8,Eglinton-Lawrence,2177 AVENUE RD,4,68,2017-10-31,63,Evaluation needs to be conducted in 1 year,18,3.0,2.0,3.0,4.0,3.0,4.0,,2.0,3.0,3.0,3.0,3.0,5.0,3.0,4.0,3.0,4.0,3.0,2.0,,N0821,43.7414140473,-79.4211970066,311131.787,4844386.431
-896137,4154685,2017.0,2017.0,1950.0,PRIVATE,8,Eglinton-Lawrence,2181 AVENUE RD,4,64,2017-10-31,56,Evaluation needs to be conducted in 1 year,18,4.0,2.0,4.0,3.0,3.0,3.0,,2.0,2.0,3.0,2.0,3.0,3.0,2.0,3.0,3.0,4.0,2.0,2.0,,N0821,43.7418257579,-79.4213046312,311123.075,4844432.162
-896138,4153415,2017.0,2017.0,1961.0,PRIVATE,11,University-Rosedale,200 ELM ST,14,120,2017-10-31,64,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,,3.0,4.0,3.0,S1144,43.656163448,-79.3914361873,313541.216,4834918.223999999
-896139,4153413,2017.0,2017.0,1970.0,PRIVATE,11,University-Rosedale,222 ELM ST,15,268,2017-10-31,62,Evaluation needs to be conducted in 1 year,19,3.0,4.0,3.0,3.0,3.0,4.0,2.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,S1144,43.6561325149,-79.3918839481,313505.1,4834914.738
-896140,4153830,2017.0,2017.0,1964.0,PRIVATE,15,Don Valley West,55 ERSKINE AVE,16,188,2017-10-31,71,Evaluation needs to be conducted in 2 years,19,4.0,3.0,3.0,4.0,3.0,3.0,4.0,3.0,4.0,,4.0,3.0,5.0,4.0,4.0,4.0,3.0,3.0,3.0,3.0,N1526,43.711401488999996,-79.396765679,313103.495,4841055.4180000005
-896141,4153580,2017.0,2017.0,1930.0,PRIVATE,13,Toronto Centre,26 GIFFORD ST,4,15,2017-10-31,59,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,2.0,3.0,2.0,,3.0,,,3.0,2.0,5.0,2.0,3.0,4.0,,3.0,3.0,,S1327,43.6633467567,-79.36369410409999,315777.607,4835719.536
-896142,4156704,2017.0,2017.0,1962.0,PRIVATE,7,Humber River-Black Creek,2439 FINCH AVE W,7,112,2017-10-31,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,,3.0,2.0,5.0,4.0,3.0,3.0,,4.0,3.0,,W0727,43.74976083600001,-79.550868013,300687.67699999997,4845313.018
-896143,4152685,2017.0,2017.0,1968.0,PRIVATE,20,Scarborough Southwest,2303 EGLINTON AVE E,7,169,2017-10-31,66,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,2.0,,4.0,2.0,5.0,2.0,4.0,4.0,4.0,3.0,3.0,,E2023,43.730751893800004,-79.2712141705,323215.458,4843224.2530000005
-896144,4152976,2017.0,2017.0,1931.0,PRIVATE,4,Parkdale-High Park,131 DUNN AVE,3,29,2017-10-31,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,,,4.0,3.0,5.0,3.0,4.0,3.0,,3.0,3.0,,S0437,43.635897529,-79.432069219,310265.309,4832664.263
-896145,4153787,2017.0,2017.0,1955.0,PRIVATE,15,Don Valley West,341 FORMAN AVE,4,15,2017-10-31,60,Evaluation needs to be conducted in 1 year,15,3.0,2.0,3.0,3.0,3.0,2.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N1530,43.7088608349,-79.38577257,313990.06899999996,4840773.368
-896146,4153847,2017.0,2017.0,2010.0,PRIVATE,15,Don Valley West,1000 MOUNT PLEASANT RD,13,155,2017-10-31,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,4.0,N1526,43.7132872773,-79.3923304336,313460.908,4841264.425
-896147,4155514,2017.0,2017.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,8 LAKE SHORE DR,3,11,2017-10-31,60,Evaluation needs to be conducted in 1 year,15,2.0,3.0,3.0,2.0,4.0,2.0,,3.0,,,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,3.0,,W0335,43.6015075472,-79.49800545229999,304945.349,4828840.676
-896148,4155518,2017.0,2017.0,1958.0,PRIVATE,3,Etobicoke-Lakeshore,67 LAKE SHORE DR,3,18,2017-10-31,73,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,4.0,4.0,2.0,,4.0,,,4.0,3.0,5.0,4.0,4.0,3.0,3.0,4.0,4.0,,W0335,43.5965098168,-79.5007071218,304727.256,4828285.4569999995
-896149,4155348,2017.0,2017.0,1973.0,PRIVATE,2,Etobicoke Centre,45 LA ROSE AVE,16,156,2017-10-31,61,Evaluation needs to be conducted in 1 year,20,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,W0230,43.6860920205,-79.5158718598,303504.825,4838237.733
-896150,4155346,2017.0,2017.0,1982.0,SOCIAL HOUSING,2,Etobicoke Centre,123 LA ROSE AVE,15,259,2017-10-31,71,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,3.0,4.0,3.0,4.0,,4.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,W0230,43.6852100383,-79.52181377229999,303025.75399999996,4838139.874
-896151,4155553,2017.0,2017.0,1950.0,PRIVATE,3,Etobicoke-Lakeshore,294 LAKE PROMENADE,4,14,2017-10-31,72,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,3.0,4.0,,3.0,,3.0,4.0,3.0,5.0,4.0,3.0,3.0,4.0,4.0,2.0,,W0334,43.588709665,-79.53407604899999,302032.547,4827420.363
-896152,4153835,2017.0,2017.0,1970.0,PRIVATE,15,Don Valley West,133 ERSKINE AVE,11,28,2017-10-31,72,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,4.0,3.0,4.0,,2.0,3.0,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N1526,43.711887063999995,-79.394093393,313318.78,4841109.635
-896153,4154835,2017.0,2017.0,1965.0,PRIVATE,17,Don Valley North,8 GODSTONE RD,16,164,2017-10-31,58,Evaluation needs to be conducted in 1 year,20,2.0,2.0,3.0,3.0,3.0,3.0,2.0,3.0,4.0,3.0,3.0,2.0,5.0,2.0,3.0,3.0,3.0,4.0,2.0,3.0,N1727,43.7801532474,-79.3463837726,317149.74199999997,4848698.62
-896154,4152648,2017.0,2017.0,1963.0,PRIVATE,21,Scarborough Centre,1757 VICTORIA PARK AVE,7,100,2017-10-31,72,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,1.0,4.0,4.0,4.0,,4.0,2.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,1.0,E2131,43.7396579744,-79.30808180220001,320243.161,4844206.182
-896155,4152649,2017.0,2017.0,1963.0,PRIVATE,21,Scarborough Centre,1759 VICTORIA PARK AVE,7,100,2017-10-31,74,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,1.0,4.0,4.0,4.0,,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,E2131,43.739974822700006,-79.308126745,320239.46,4844241.3719999995
-896156,4152650,2017.0,2017.0,1961.0,PRIVATE,21,Scarborough Centre,1765 VICTORIA PARK AVE,7,67,2017-10-31,65,Evaluation needs to be conducted in 1 year,17,4.0,4.0,4.0,3.0,3.0,1.0,,3.0,3.0,,4.0,1.0,5.0,3.0,3.0,3.0,4.0,3.0,4.0,,E2131,43.7402910045,-79.3084921125,320209.95,4844276.428
-896157,4152603,2017.0,2017.0,1962.0,PRIVATE,20,Scarborough Southwest,1047 VICTORIA PARK AVE,3,11,2017-10-31,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,3.0,2.0,5.0,4.0,4.0,3.0,,4.0,3.0,,E2028,43.705966961,-79.294406813,321353.654,4840466.863
-896158,4152605,2017.0,2017.0,1962.0,PRIVATE,20,Scarborough Southwest,1055 VICTORIA PARK AVE,6,52,2017-10-31,73,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,3.0,4.0,3.0,,3.0,4.0,,3.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,E2028,43.706720954,-79.294444552,321350.405,4840550.624
-896159,4152606,2017.0,2017.0,1964.0,PRIVATE,20,Scarborough Southwest,1065 VICTORIA PARK AVE,6,37,2017-10-31,60,Evaluation needs to be conducted in 1 year,17,2.0,3.0,4.0,3.0,2.0,3.0,,2.0,3.0,,3.0,3.0,5.0,3.0,2.0,3.0,3.0,4.0,3.0,,E2028,43.706999577,-79.294868767,321316.141,4840581.495
-896160,4155749,2017.0,2017.0,1950.0,PRIVATE,3,Etobicoke-Lakeshore,3 SUPERIOR AVE,7,62,2017-10-31,64,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,2.0,,W0336,43.6150903921,-79.4868989887,305841.767,4830349.727
-896161,4155406,2017.0,2017.0,1972.0,PRIVATE,2,Etobicoke Centre,675 MARTIN GROVE RD,11,126,2017-10-31,60,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,2.0,3.0,4.0,3.0,3.0,3.0,,2.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,2.0,,W0221,43.681182543199995,-79.5647387346,299564.82399999996,4837694.119
-896162,4154444,2017.0,2017.0,1963.0,PRIVATE,6,York Centre,3250 KEELE ST,4,59,2017-10-31,73,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,3.0,4.0,,4.0,3.0,,2.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,N0627,43.7419180472,-79.4861318994,305901.567,4844439.544
-896163,4154463,2017.0,2017.0,1972.0,PRIVATE,7,Humber River-Black Creek,3710 KEELE ST,9,92,2017-10-31,61,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,2.0,3.0,3.0,3.0,2.0,,3.0,3.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,,W0731,43.75654049479999,-79.489787514,305606.988,4846063.982
-896164,4154625,2017.0,2017.0,1978.0,PRIVATE,6,York Centre,120 TORRESDALE AVE,16,246,2017-10-31,67,Evaluation needs to be conducted in 2 years,19,4.0,3.0,3.0,3.0,4.0,3.0,4.0,3.0,4.0,,3.0,3.0,5.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,N0622,43.7777650833,-79.4542079803,308470.731,4848422.903
-896165,4152827,2017.0,2017.0,1968.0,PRIVATE,24,Scarborough-Guildwood,30 TUXEDO CRT,15,214,2017-10-31,78,Evaluation needs to be conducted in 2 years,19,5.0,5.0,4.0,3.0,4.0,4.0,3.0,2.0,3.0,,4.0,3.0,5.0,4.0,4.0,4.0,5.0,5.0,3.0,4.0,E2422,43.7813130122,-79.2295091754,326556.93100000004,4848851.41
-896166,4154682,2017.0,2017.0,1950.0,PRIVATE,8,Eglinton-Lawrence,166 WILSON AVE,4,60,2017-10-31,65,Evaluation needs to be conducted in 1 year,17,4.0,3.0,3.0,3.0,4.0,3.0,,3.0,3.0,,4.0,2.0,5.0,3.0,3.0,3.0,4.0,3.0,2.0,,N0821,43.740401247,-79.4209043268,311155.467,4844273.936000001
-896167,4152825,2017.0,2017.0,1968.0,PRIVATE,24,Scarborough-Guildwood,10 TUXEDO CRT,15,210,2017-10-31,71,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,3.0,1.0,3.0,2.0,3.0,,4.0,2.0,5.0,5.0,4.0,4.0,5.0,4.0,3.0,,E2422,43.7793949183,-79.231861667,326368.261,4848637.703
-896168,4153569,2017.0,2017.0,1988.0,SOCIAL HOUSING,13,Toronto Centre,223 SHERBOURNE ST,6,60,2017-10-31,57,Evaluation needs to be conducted in 1 year,19,3.0,2.0,4.0,2.0,3.0,2.0,2.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,4.0,,3.0,3.0,3.0,S1329,43.6582200015,-79.3706451728,315217.87,4835149.078
-896169,4154844,2017.0,2017.0,1966.0,PRIVATE,17,Don Valley North,60 RUDDINGTON DR,18,179,2017-10-31,70,Evaluation needs to be conducted in 2 years,20,4.0,2.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,N1721,43.791632438,-79.390465773,313640.418,4849905.415
-896170,4153213,2017.0,2017.0,1968.0,PRIVATE,11,University-Rosedale,50 PRINCE ARTHUR AVE,19,149,2017-10-31,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,3.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1127,43.6694516489,-79.3986101072,312960.717,4836393.695
-896171,4153560,2017.0,2017.0,1994.0,SOCIAL HOUSING,13,Toronto Centre,31 PRINCESS ST,10,82,2017-10-31,68,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,3.0,4.0,2.0,4.0,3.0,,3.0,3.0,5.0,4.0,3.0,3.0,,4.0,4.0,3.0,S1335,43.6500861,-79.366016015,315596.755,4834258.353999999
-896172,4153802,2017.0,2017.0,1963.0,PRIVATE,12,Toronto-St. Paul's,199 ROEHAMPTON AVE,12,125,2017-10-31,76,Evaluation needs to be conducted in 2 years,18,4.0,2.0,3.0,4.0,4.0,2.0,4.0,4.0,3.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,,S1221,43.709034865,-79.392111771,313478.88899999997,4840792.969
-896173,4153821,2017.0,2017.0,1963.0,PRIVATE,12,Toronto-St. Paul's,250 ROEHAMPTON AVE,11,91,2017-10-31,75,Evaluation needs to be conducted in 2 years,17,4.0,2.0,4.0,4.0,4.0,3.0,,4.0,4.0,,4.0,3.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,,S1221,43.709736351000004,-79.391538167,313525.015,4840870.962
-896174,4153775,2017.0,2017.0,1930.0,PRIVATE,12,Toronto-St. Paul's,15 PENROSE RD,3,26,2017-10-31,59,Evaluation needs to be conducted in 1 year,15,3.0,2.0,2.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,S1228,43.7029512593,-79.38891694979999,313737.525,4840116.468
-896175,4153036,2017.0,2017.0,1916.0,PRIVATE,4,Parkdale-High Park,1384 KING ST W,3,18,2017-10-31,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,2.0,3.0,,3.0,,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S0436,43.6376046857,-79.43500911390001,310028.218,4832852.784
-896176,4155414,2017.0,2017.0,1965.0,PRIVATE,1,Etobicoke North,55 BRIDESBURG DR,5,61,2017-10-31,65,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,4.0,2.0,,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,W0133,43.694473525,-79.563528031,299669.11199999996,4839180.326
-896177,4154472,2017.0,2017.0,1969.0,PRIVATE,7,Humber River-Black Creek,20 BROADOAKS DR,9,177,2017-10-31,60,Evaluation needs to be conducted in 1 year,18,4.0,2.0,3.0,2.0,3.0,3.0,2.0,3.0,3.0,,2.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,4.0,,W0731,43.7577107844,-79.4909188845,305515.869,4846193.988
-896178,4154462,2017.0,2017.0,1973.0,PRIVATE,7,Humber River-Black Creek,25 BROADOAKS DR,9,92,2017-10-31,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,4.0,4.0,4.0,4.0,3.0,3.0,3.0,,W0731,43.756925959600004,-79.49101087439999,305508.471,4846106.795
-896179,4155298,2017.0,2017.0,1977.0,PRIVATE,3,Etobicoke-Lakeshore,90 CORDOVA AVE,13,184,2017-10-31,68,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0321,43.648139693999994,-79.5237605383,302867.459,4834021.602
-896180,4156433,2017.0,2017.0,1986.0,PRIVATE,4,Parkdale-High Park,111 PACIFIC AVE,17,243,2017-10-30,74,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,4.0,4.0,3.0,3.0,3.0,,3.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,,S0428,43.6571573337,-79.4647771493,307625.459,4835023.595
-896181,4152899,2017.0,2017.0,1957.0,PRIVATE,4,Parkdale-High Park,99 COE HILL DR,4,81,2017-10-30,68,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,3.0,3.0,2.0,,3.0,4.0,3.0,4.0,4.0,5.0,3.0,4.0,3.0,4.0,3.0,3.0,,S0430,43.6416349795,-79.47294432,306967.248,4833298.916
-896182,4154775,2017.0,2017.0,1950.0,PRIVATE,16,Don Valley East,1053 DON MILLS RD,4,40,2017-10-30,61,Evaluation needs to be conducted in 1 year,19,3.0,2.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,2.0,2.0,5.0,3.0,3.0,3.0,4.0,3.0,2.0,,N1627,43.7335260721,-79.3417293188,317534.2,4843519.24
-896183,4168942,2017.0,2017.0,1984.0,SOCIAL HOUSING,10,Spadina-Fort York,345 DUFFERIN ST,8,200,2017-10-30,74,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,3.0,3.0,4.0,4.0,4.0,5.0,,3.0,3.0,5.0,4.0,3.0,3.0,,4.0,4.0,,S1026,43.6410875936,-79.42770400090001,310617.30600000004,4833240.166999999
-896184,4156621,2017.0,2017.0,1962.0,PRIVATE,6,York Centre,4900 BATHURST ST,6,60,2017-10-30,74,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,4.0,3.0,4.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,,N0624,43.772309339799996,-79.44307224020001,309367.539,4847817.353
-896185,4154713,2017.0,2017.0,1959.0,PRIVATE,18,Willowdale,4979 BATHURST ST,6,92,2017-10-30,69,Evaluation needs to be conducted in 2 years,18,4.0,2.0,4.0,4.0,3.0,4.0,2.0,2.0,3.0,,4.0,3.0,5.0,4.0,3.0,3.0,4.0,5.0,3.0,,N1822,43.775246245,-79.4428772024,309383.017,4848143.646000001
-896186,4154714,2017.0,2017.0,1959.0,PRIVATE,18,Willowdale,4981 BATHURST ST,6,96,2017-10-30,66,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,3.0,4.0,2.0,2.0,3.0,,3.0,3.0,5.0,3.0,3.0,4.0,4.0,2.0,3.0,,N1822,43.7762507176,-79.44313913810001,309361.856,4848255.225
-896187,4156071,2017.0,2017.0,1970.0,PRIVATE,6,York Centre,6040 BATHURST ST,17,202,2017-10-30,60,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,2.0,5.0,2.0,3.0,3.0,3.0,2.0,2.0,3.0,N0622,43.7890444892,-79.4476519388,309058.568,4849670.127
-896188,4156493,2017.0,2017.0,1971.0,PRIVATE,7,Humber River-Black Creek,355 GRANDRAVINE DR,15,118,2017-10-30,60,Evaluation needs to be conducted in 1 year,20,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,2.0,3.0,3.0,4.0,4.0,3.0,3.0,1.0,3.0,W0732,43.746959357,-79.513143818,303707.642,4845032.763
-896189,4156420,2017.0,2017.0,1971.0,PRIVATE,7,Humber River-Black Creek,365 GRANDRAVINE DR,15,118,2017-10-30,68,Evaluation needs to be conducted in 2 years,20,3.0,3.0,3.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,5.0,3.0,4.0,4.0,3.0,4.0,1.0,3.0,W0732,43.746846876000006,-79.51402768300001,303590.293,4844998.72
-896190,4153579,2017.0,2017.0,1891.0,SOCIAL HOUSING,13,Toronto Centre,434 GERRARD ST E,3,16,2017-10-30,66,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,3.0,3.0,S1327,43.663410889,-79.361416269,315961.044,4835727.915
-896191,4156049,2017.0,2017.0,1994.0,SOCIAL HOUSING,24,Scarborough-Guildwood,1680 ELLESMERE RD,8,145,2017-10-30,72,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,4.0,E2421,43.772909836000004,-79.2498185184,324924.994,4847912.75
-896192,4154630,2017.0,2017.0,1970.0,PRIVATE,6,York Centre,5 FISHERVILLE RD,17,202,2017-10-30,60,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,2.0,5.0,2.0,3.0,3.0,3.0,2.0,2.0,3.0,N0622,43.7893811504,-79.4481218058,308959.834,4849713.7069999995
-896193,4154629,2017.0,2017.0,1970.0,PRIVATE,6,York Centre,25 FISHERVILLE RD,18,221,2017-10-30,64,Evaluation needs to be conducted in 1 year,18,4.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,,4.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0622,43.788874739499995,-79.4489791313,308890.874,4849657.401000001
-896194,4154753,2017.0,2017.0,1985.0,PRIVATE,18,Willowdale,77 FINCH AVE E,21,438,2017-10-30,67,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,3.0,5.0,3.0,4.0,3.0,,4.0,2.0,3.0,N1825,43.780189487399994,-79.4110962225,311940.809,4848695.08
-896195,4156086,2017.0,2017.0,1965.0,PRIVATE,4,Parkdale-High Park,55 OAKMOUNT RD,16,221,2017-10-30,69,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,2.0,4.0,3.0,3.0,3.0,4.0,,4.0,4.0,3.0,4.0,3.0,3.0,4.0,4.0,3.0,,S0428,43.656763132100004,-79.4631452755,307757.11100000003,4834979.8610000005
-896196,4152930,2017.0,2017.0,1986.0,PRIVATE,4,Parkdale-High Park,66 OAKMOUNT RD,12,171,2017-10-30,73,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,,S0428,43.656653483199996,-79.46369050930001,307713.136,4834967.66
-896197,4154799,2017.0,2017.0,1958.0,PRIVATE,16,Don Valley East,1004 LAWRENCE AVE E,4,65,2017-10-30,71,Evaluation needs to be conducted in 2 years,19,3.0,2.0,4.0,3.0,4.0,3.0,3.0,4.0,4.0,4.0,3.0,3.0,5.0,3.0,4.0,4.0,4.0,4.0,3.0,,N1624,43.7382018911,-79.3414669469,317554.35,4844038.767
-896198,4155477,2017.0,2017.0,1958.0,PRIVATE,3,Etobicoke-Lakeshore,2355 LAKE SHORE BLVD W,4,86,2017-10-30,60,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,2.0,,3.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,,W0336,43.61606574100001,-79.48769627729999,305777.4,4830458.074
-896199,4156013,2017.0,2017.0,1986.0,PRIVATE,4,Parkdale-High Park,255 GLENLAKE AVE,23,336,2017-10-30,74,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,4.0,4.0,3.0,3.0,2.0,,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,,S0428,43.6575406896,-79.46459744229999,307639.935,4835066.19
-896200,4152933,2017.0,2017.0,1973.0,PRIVATE,4,Parkdale-High Park,299 GLENLAKE AVE,30,233,2017-10-30,68,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,2.0,,3.0,3.0,5.0,3.0,4.0,3.0,3.0,4.0,4.0,,S0428,43.656888484,-79.465364295,307575.602,4834997.723
-896201,4154151,2017.0,2017.0,1965.0,PRIVATE,15,Don Valley West,43 THORNCLIFFE PARK DR,20,380,2017-10-30,57,Evaluation needs to be conducted in 1 year,19,3.0,2.0,2.0,3.0,3.0,2.0,3.0,2.0,3.0,4.0,2.0,4.0,2.0,3.0,3.0,3.0,3.0,4.0,3.0,,N1533,43.70045036,-79.344507259,317317.05600000004,4839845.249
-896202,4154724,2017.0,2017.0,1969.0,PRIVATE,18,Willowdale,765 STEELES AVE W,22,167,2017-10-30,67,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,,3.0,3.0,2.0,4.0,3.0,3.0,4.0,4.0,3.0,,N1821,43.792379298,-79.44279604100001,309387.955,4850048.034
-896203,4155778,2017.0,2017.0,1966.0,PRIVATE,18,Willowdale,775 STEELES AVE W,16,194,2017-10-30,59,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,4.0,3.0,2.0,2.0,4.0,2.0,,N1821,43.791794206000006,-79.443484145,309332.622,4849982.993
-896204,4155962,2017.0,2017.0,1969.0,PRIVATE,6,York Centre,1085 STEELES AVE W,15,100,2017-10-30,61,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0622,43.791214032,-79.44875271800001,308924.363,4849959.367
-896205,4168988,2017.0,2017.0,1986.0,SOCIAL HOUSING,1,Etobicoke North,20 HUMBERLINE DR,11,104,2017-10-30,59,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,2.0,,3.0,2.0,1.0,3.0,,4.0,3.0,4.0,3.0,3.0,3.0,,3.0,4.0,,W0125,43.731736309700004,-79.6140657224,295538.059,4843285.541999999
-896206,4168986,2017.0,2017.0,1984.0,SOCIAL HOUSING,1,Etobicoke North,30 HUMBERLINE DR,19,176,2017-10-30,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,2.0,,3.0,2.0,2.0,3.0,,3.0,4.0,4.0,3.0,3.0,3.0,,5.0,4.0,,W0125,43.7316900072,-79.6148713323,295530.63399999996,4843309.676
-896207,4155081,2017.0,2017.0,1996.0,SOCIAL HOUSING,5,York South-Weston,1500 KEELE ST,11,132,2017-10-30,69,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,,3.0,4.0,5.0,4.0,3.0,3.0,,4.0,3.0,3.0,W0536,43.679672235299996,-79.4718686985,307133.338,4837529.733
-896208,4156107,2017.0,2017.0,1975.0,PRIVATE,13,Toronto Centre,201 SHERBOURNE ST,23,225,2017-10-30,64,Evaluation needs to be conducted in 1 year,19,4.0,3.0,4.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,2.0,2.0,3.0,,S1329,43.65729444350001,-79.3703063901,315245.354,4835046.287
-896209,4153166,2017.0,2017.0,1967.0,PRIVATE,9,Davenport,730 DOVERCOURT RD,20,356,2017-10-30,68,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,3.0,2.0,3.0,4.0,3.0,,4.0,4.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,,S0934,43.6597215869,-79.429288288,310487.721,4835310.221
-896210,4153974,2017.0,2017.0,1952.0,PRIVATE,8,Eglinton-Lawrence,2515 BATHURST ST,11,114,2017-10-27,69,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0833,43.705627508599996,-79.4260651529,310743.22,4840410.462
-896211,4152761,2017.0,2017.0,1958.0,PRIVATE,21,Scarborough Centre,1275 DANFORTH RD,7,114,2017-10-27,83,Evaluation needs to be conducted in 2 years,18,5.0,5.0,5.0,4.0,4.0,1.0,4.0,4.0,5.0,,5.0,5.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,,E2135,43.739765596999995,-79.244887237,325340.75,4844214.535
-896212,4154455,2017.0,2017.0,1967.0,PRIVATE,6,York Centre,3400 KEELE ST,9,141,2017-10-27,75,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,3.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,,N0625,43.748015635,-79.487900293,305768.00800000003,4845249.455
-896213,4154647,2017.0,2017.0,1963.0,PRIVATE,6,York Centre,9 KINGSBRIDGE CRT,7,74,2017-10-27,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,N0624,43.7715767413,-79.4441039119,309284.542,4847735.908
-896214,4154297,2017.0,2017.0,1960.0,PRIVATE,5,York South-Weston,70 GULLIVER RD,3,19,2017-10-27,67,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,4.0,3.0,4.0,,4.0,3.0,3.0,4.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0529,43.699041127,-79.480211325,306379.23,4839677.21
-896215,4155556,2017.0,2017.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,25 VILLA RD,3,34,2017-10-27,69,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,3.0,3.0,2.0,,4.0,,,3.0,3.0,5.0,4.0,3.0,3.0,,4.0,4.0,,W0334,43.5903826835,-79.5425008764,301352.589,4827605.591
-896216,4155154,2017.0,2017.0,1957.0,PRIVATE,5,York South-Weston,2263 WESTON RD,4,34,2017-10-27,68,Evaluation needs to be conducted in 2 years,17,4.0,3.0,3.0,4.0,3.0,2.0,,4.0,4.0,3.0,4.0,3.0,5.0,4.0,3.0,3.0,,3.0,3.0,,W0524,43.7048289088,-79.5282351349,302508.86699999997,4840319.597
-896217,4155165,2017.0,2017.0,1960.0,PRIVATE,5,York South-Weston,2292 WESTON RD,8,65,2017-10-27,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,2.0,3.0,2.0,,3.0,3.0,2.0,2.0,3.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,,W0524,43.7048987763,-79.5296017204,302398.731,4840327.401000001
-896218,4155930,2017.0,2017.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,90 JAMES ST,3,34,2017-10-27,67,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,3.0,2.0,,4.0,,,3.0,3.0,5.0,4.0,3.0,3.0,,3.0,4.0,,W0334,43.5900539633,-79.5420495238,301389.019,4827569.052
-896219,4152687,2017.0,2017.0,1964.0,PRIVATE,20,Scarborough Southwest,2283 EGLINTON AVE E,9,101,2017-10-27,76,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,4.0,3.0,3.0,,4.0,3.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,,E2023,43.730558372299996,-79.2723812981,323121.49100000004,4843202.493
-896220,4155523,2017.0,2017.0,1966.0,PRIVATE,3,Etobicoke-Lakeshore,245 LAKE SHORE DR,8,52,2017-10-27,71,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,4.0,2.0,,3.0,4.0,3.0,4.0,3.0,5.0,4.0,4.0,3.0,3.0,4.0,3.0,,W0335,43.594177992,-79.509613515,304007.895,4828027.375
-896221,4152826,2017.0,2017.0,1970.0,PRIVATE,24,Scarborough-Guildwood,20 TUXEDO CRT,15,210,2017-10-27,37,Building Audit,19,2.0,1.0,3.0,1.0,2.0,3.0,2.0,1.0,2.0,1.0,1.0,3.0,2.0,2.0,1.0,2.0,2.0,2.0,2.0,,E2422,43.7801851032,-79.2301866878,326502.803,4848725.927
-896222,4154964,2017.0,2017.0,1929.0,PRIVATE,12,Toronto-St. Paul's,118 VAUGHAN RD,4,32,2017-10-26,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,4.0,4.0,,3.0,,,3.0,3.0,4.0,3.0,2.0,3.0,,3.0,3.0,,S1229,43.684225142200006,-79.4217235507,311095.282,4838032.994
-896223,4154152,2017.0,2017.0,1966.0,PRIVATE,15,Don Valley West,47 THORNCLIFFE PARK DR,25,474,2017-10-26,61,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,,2.0,2.0,3.0,3.0,2.0,3.0,4.0,3.0,3.0,,N1533,43.700783732,-79.34267244,317464.875,4839882.563
-896224,4153189,2017.0,2017.0,1966.0,PRIVATE,11,University-Rosedale,35 WALMER RD,15,174,2017-10-26,71,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,,3.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,S1126,43.66913353899999,-79.405620062,312395.193,4836358.655
-896225,4153186,2017.0,2017.0,1958.0,PRIVATE,11,University-Rosedale,50 WALMER RD,4,35,2017-10-26,62,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1126,43.669364101000006,-79.407141875,312272.44399999996,4836384.134
-896226,4152752,2017.0,2017.0,1967.0,PRIVATE,21,Scarborough Centre,1330 DANFORTH RD,4,48,2017-10-26,78,Evaluation needs to be conducted in 2 years,17,4.0,5.0,5.0,2.0,3.0,1.0,,4.0,5.0,,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2135,43.7429249533,-79.24595788,325245.967,4844582.508
-896227,4245702,2017.0,2017.0,1930.0,PRIVATE,12,Toronto-St. Paul's,28 BALMORAL AVE,3,27,2017-10-26,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1238,43.685742821000005,-79.3945524551,313285.719,4838204.016
-896228,4153374,2017.0,2017.0,1965.0,PRIVATE,12,Toronto-St. Paul's,160 BALMORAL AVE,12,89,2017-10-26,73,Evaluation needs to be conducted in 2 years,19,4.0,4.0,3.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,5.0,3.0,4.0,3.0,4.0,3.0,3.0,,S1237,43.684495213999995,-79.4010047716,312765.703,4838064.784
-896229,4255528,2017.0,2017.0,1950.0,PRIVATE,3,Etobicoke-Lakeshore,3 BIRCHLEA AVE,3,10,2017-10-26,59,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,4.0,3.0,3.0,2.0,,3.0,2.0,,W0334,43.592678404,-79.527798887,302539.32399999996,4827860.268
-896230,4152701,2017.0,2017.0,1955.0,PRIVATE,21,Scarborough Centre,1191 BIRCHMOUNT RD,4,41,2017-10-26,59,Evaluation needs to be conducted in 1 year,17,2.0,3.0,4.0,3.0,2.0,4.0,,3.0,2.0,,3.0,2.0,4.0,4.0,2.0,2.0,3.0,3.0,4.0,,E2133,43.743041446999996,-79.2825115341,322301.768,4844587.131
-896231,4152702,2017.0,2017.0,1960.0,PRIVATE,21,Scarborough Centre,1255 BIRCHMOUNT RD,6,70,2017-10-26,82,Evaluation needs to be conducted in 2 years,17,5.0,5.0,5.0,4.0,4.0,5.0,4.0,3.0,4.0,,4.0,5.0,5.0,4.0,3.0,4.0,,5.0,1.0,,E2133,43.7467361974,-79.2840523201,322176.6,4844997.277
-896232,4155545,2017.0,2017.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,1 BIRCHLEA AVE,3,10,2017-10-26,57,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,3.0,2.0,3.0,,3.0,,,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,2.0,,W0334,43.592713802700004,-79.5276951676,302548.19399999996,4827864.057
-896233,4154481,2017.0,2017.0,1964.0,PRIVATE,8,Eglinton-Lawrence,2900 BATHURST ST,14,117,2017-10-26,72,Evaluation needs to be conducted in 2 years,19,3.0,4.0,5.0,4.0,4.0,3.0,3.0,4.0,4.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,4.0,4.0,3.0,,N0827,43.714534767399996,-79.4292156084,310488.473,4841399.748
-896234,4153518,2017.0,2017.0,1927.0,PRIVATE,13,Toronto Centre,16 ST JOSEPH ST,4,37,2017-10-26,69,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,4.0,3.0,3.0,,3.0,3.0,,3.0,4.0,5.0,3.0,3.0,4.0,,3.0,3.0,,S1321,43.666396149200004,-79.3863015962,313953.812,4836055.585
-896235,4153399,2017.0,2017.0,1982.0,PRIVATE,10,Spadina-Fort York,20 ST PATRICK ST,15,256,2017-10-26,66,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,2.0,,S1024,43.6509721376,-79.3893617427,313709.312,4834341.702
-896236,4152911,2017.0,2017.0,1960.0,PRIVATE,4,Parkdale-High Park,111 RUNNYMEDE RD,4,16,2017-10-26,64,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,,2.0,,4.0,,,3.0,3.0,5.0,4.0,3.0,3.0,,3.0,3.0,,S0430,43.6505719581,-79.4757413114,306741.31899999996,4834291.715
-896237,4152921,2017.0,2017.0,1975.0,PRIVATE,4,Parkdale-High Park,494 RUNNYMEDE RD,3,36,2017-10-26,65,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,4.0,3.0,4.0,4.0,2.0,3.0,,4.0,3.0,,S0426,43.6595761764,-79.4801030062,306389.17600000004,4835291.941000001
-896238,4154325,2017.0,2017.0,1958.0,PRIVATE,5,York South-Weston,1605 JANE ST,3,28,2017-10-26,60,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,2.0,,3.0,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0528,43.700297074,-79.50255884479999,304578.221,4839815.666
-896239,4152978,2017.0,2017.0,1976.0,SOCIAL HOUSING,4,Parkdale-High Park,1355 KING ST W,11,136,2017-10-26,75,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,4.0,3.0,5.0,4.0,3.0,3.0,,4.0,3.0,,S0437,43.6375544172,-79.4328522141,310202.251,4832847.329
-896240,4153019,2017.0,2017.0,1959.0,PRIVATE,4,Parkdale-High Park,166 JAMESON AVE,8,61,2017-10-26,66,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,,3.0,4.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,,S0436,43.6379895083,-79.4367678371,309886.286,4832895.432
-896241,4153431,2017.0,2017.0,1983.0,SOCIAL HOUSING,13,Toronto Centre,90 SHUTER ST,10,77,2017-10-26,66,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,2.0,3.0,3.0,3.0,3.0,4.0,,3.0,3.0,5.0,3.0,4.0,4.0,,3.0,3.0,,S1332,43.655490881000006,-79.3742822812,314924.96,4834845.425
-896242,4156549,2017.0,2017.0,1965.0,PRIVATE,12,Toronto-St. Paul's,88 REDPATH AVE,16,186,2017-10-26,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,2.0,4.0,4.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,S1228,43.7062911075,-79.3925729601,313442.376,4840487.143
-896243,4152915,2017.0,2017.0,1923.0,PRIVATE,4,Parkdale-High Park,2520 BLOOR ST W,4,22,2017-10-26,56,Evaluation needs to be conducted in 1 year,16,3.0,2.0,3.0,3.0,2.0,3.0,,4.0,,,3.0,3.0,4.0,3.0,2.0,2.0,2.0,3.0,3.0,,S0430,43.6480530938,-79.4893694695,305641.932,4834011.683
-896244,4152902,2017.0,2017.0,1938.0,PRIVATE,4,Parkdale-High Park,2553 BLOOR ST W,3,22,2017-10-26,68,Evaluation needs to be conducted in 2 years,17,4.0,3.0,3.0,4.0,3.0,3.0,,3.0,,3.0,4.0,3.0,5.0,4.0,4.0,3.0,4.0,3.0,2.0,,S0430,43.6475469436,-79.4904303476,305556.356,4833955.443
-896245,4152903,2017.0,2017.0,1940.0,PRIVATE,4,Parkdale-High Park,2555 BLOOR ST W,4,34,2017-10-26,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,2.0,3.0,3.0,3.0,,S0430,43.6476402456,-79.4906914801,305535.289,4833965.806
-896246,4154115,2017.0,2017.0,1960.0,PRIVATE,14,Toronto-Danforth,101 COSBURN AVE,10,73,2017-10-26,77,Evaluation needs to be conducted in 2 years,19,5.0,4.0,4.0,3.0,4.0,2.0,3.0,4.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,3.0,,S1421,43.688951922200005,-79.3496273223,316906.969,4838566.103999999
-896247,4154457,2017.0,2017.0,1968.0,PRIVATE,6,York Centre,1450 SHEPPARD AVE W,7,181,2017-10-26,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,,N0625,43.7448396549,-79.48975794430001,305609.483,4844764.076
-896248,4155484,2017.0,2017.0,1950.0,PRIVATE,3,Etobicoke-Lakeshore,16 ALBERT AVE,3,18,2017-10-26,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,,,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,W0336,43.6159770796,-79.4891131322,305663.04,4830448.21
-896249,4156391,2017.0,2017.0,1978.0,SOCIAL HOUSING,21,Scarborough Centre,1290 DANFORTH RD,8,179,2017-10-26,87,Evaluation needs to be conducted in 3 years,17,5.0,5.0,5.0,3.0,4.0,4.0,4.0,3.0,4.0,,5.0,4.0,5.0,5.0,4.0,4.0,,5.0,5.0,,E2135,43.740755193000005,-79.246090296,325259.725,4844343.732
-896250,4154942,2017.0,2017.0,1955.0,PRIVATE,12,Toronto-St. Paul's,3 CLAXTON BLVD,3,19,2017-10-26,69,Evaluation needs to be conducted in 2 years,14,3.0,3.0,3.0,3.0,,3.0,,4.0,,,3.0,3.0,5.0,3.0,4.0,4.0,,4.0,3.0,,S1229,43.686965094099996,-79.420416441,311200.387,4838337.511
-896251,4154980,2017.0,2017.0,1927.0,PRIVATE,12,Toronto-St. Paul's,227 VAUGHAN RD,4,24,2017-10-26,59,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,,,3.0,1.0,4.0,4.0,3.0,3.0,,3.0,3.0,,S1229,43.6877852335,-79.4233040903,310967.502,4838428.419
-896252,4154989,2017.0,2017.0,1934.0,PRIVATE,12,Toronto-St. Paul's,235 VAUGHAN RD,4,24,2017-10-26,69,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,3.0,4.0,4.0,,3.0,,,3.0,4.0,4.0,4.0,4.0,3.0,,3.0,4.0,,S1229,43.6881730014,-79.4242567754,310890.66,4838471.429
-896253,4155029,2017.0,2017.0,1977.0,PRIVATE,12,Toronto-St. Paul's,787 VAUGHAN RD,4,38,2017-10-26,60,Evaluation needs to be conducted in 1 year,14,4.0,3.0,3.0,3.0,,2.0,,3.0,,,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,S1222,43.6952218624,-79.4479601796,308979.273,4839253.057
-896254,4154174,2017.0,2017.0,1985.0,SOCIAL HOUSING,15,Don Valley West,18 THORNCLIFFE PARK DR,7,109,2017-10-26,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,N1533,43.704307406400005,-79.3469915731,317116.28,4840272.413
-896255,4154168,2017.0,2017.0,1959.0,PRIVATE,15,Don Valley West,36 THORNCLIFFE PARK DR,6,70,2017-10-26,54,Evaluation needs to be conducted in 1 year,18,2.0,3.0,2.0,2.0,2.0,1.0,3.0,3.0,2.0,,2.0,2.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,,N1533,43.702708953,-79.344590225,317309.891,4840096.148
-896256,4154322,2017.0,2017.0,1984.0,PRIVATE,5,York South-Weston,15 MARTHA EATON WAY,23,364,2017-10-26,59,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,2.0,2.0,3.0,2.0,3.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,W0528,43.696553916999996,-79.48846403600001,305714.067,4839400.786
-896257,4233149,2017.0,2017.0,1980.0,PRIVATE,5,York South-Weston,25 MARTHA EATON WAY,23,318,2017-10-26,57,Evaluation needs to be conducted in 1 year,19,2.0,3.0,3.0,3.0,2.0,2.0,3.0,3.0,3.0,,2.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,2.0,W0528,43.698103059,-79.48903821,305667.766,4839572.884
-896258,4153034,2017.0,2017.0,1957.0,PRIVATE,4,Parkdale-High Park,177 JAMESON AVE,7,73,2017-10-26,64,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,2.0,,3.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,,S0436,43.6385987342,-79.4361728843,309934.239,4832963.146000001
-896259,4155180,2017.0,2017.0,1964.0,PRIVATE,5,York South-Weston,777 JANE ST,9,106,2017-10-26,59,Evaluation needs to be conducted in 1 year,18,3.0,3.0,2.0,3.0,3.0,2.0,2.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0539,43.6730591704,-79.4935959279,305300.77,4836789.64
-896260,4153554,2017.0,2017.0,1980.0,SOCIAL HOUSING,10,Spadina-Fort York,33 HAHN PL,8,135,2017-10-26,65,Evaluation needs to be conducted in 1 year,19,4.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,2.0,3.0,3.0,3.0,3.0,4.0,S1039,43.649402507,-79.362697005,315860.308,4834171.515
-896261,4153556,2017.0,2017.0,1980.0,SOCIAL HOUSING,10,Spadina-Fort York,5 HAHN PL,4,32,2017-10-26,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,2.0,3.0,2.0,4.0,3.0,,S1039,43.648895593999995,-79.362805101,315851.683,4834115.191000001
-896262,4154984,2017.0,2017.0,1955.0,PRIVATE,12,Toronto-St. Paul's,180 VAUGHAN RD,4,22,2017-10-26,67,Evaluation needs to be conducted in 2 years,14,3.0,3.0,3.0,4.0,,2.0,,4.0,,,4.0,4.0,3.0,3.0,3.0,3.0,,4.0,4.0,,S1229,43.6865568405,-79.42264744399999,311020.562,4838291.988
-896263,4152731,2017.0,2017.0,1961.0,PRIVATE,21,Scarborough Centre,4 TREEWOOD ST,7,82,2017-10-26,65,Evaluation needs to be conducted in 1 year,17,3.0,4.0,4.0,2.0,4.0,1.0,,3.0,3.0,,3.0,2.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,,E2129,43.754281749499995,-79.26405657069999,323784.661,4845839.897
-896264,4154453,2017.0,2017.0,1958.0,PRIVATE,6,York Centre,18 SKIPTON CRT,4,40,2017-10-26,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,3.0,4.0,,4.0,4.0,3.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N0627,43.737360083999995,-79.492713493,305371.21,4843934.081
-896265,4154454,2017.0,2017.0,1958.0,PRIVATE,6,York Centre,20 SKIPTON CRT,4,40,2017-10-26,79,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,4.0,4.0,,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0627,43.736844271,-79.49297506,305369.286,4843919.864
-896266,4154895,2017.0,2017.0,1963.0,PRIVATE,16,Don Valley East,7 ROANOKE RD,9,113,2017-10-26,77,Evaluation needs to be conducted in 2 years,19,4.0,2.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,N1625,43.740861476899994,-79.3286037917,318644.915,4844364.837
-896267,4156531,2017.0,2017.0,1963.0,PRIVATE,16,Don Valley East,7-9 ROANOKE RD,9,113,2017-10-26,73,Evaluation needs to be conducted in 2 years,19,4.0,2.0,5.0,4.0,3.0,4.0,3.0,4.0,3.0,,3.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,4.0,N1625,,,318685.876,4844377.291
-896268,4154894,2017.0,2017.0,1962.0,PRIVATE,16,Don Valley East,8 ROANOKE RD,13,111,2017-10-26,73,Evaluation needs to be conducted in 2 years,20,4.0,2.0,5.0,4.0,4.0,2.0,3.0,3.0,4.0,3.0,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,N1625,43.74157075,-79.32807021800001,318658.575,4844417.316000001
-896269,4156233,2017.0,2017.0,1962.0,PRIVATE,16,Don Valley East,10 ROANOKE RD,12,101,2017-10-26,77,Evaluation needs to be conducted in 2 years,20,4.0,2.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,N1625,43.7414398255,-79.32923497729999,318749.293,4844445.005
-896270,4154642,2017.0,2017.0,1969.0,PRIVATE,6,York Centre,4 GOLDFINCH CRT,12,95,2017-10-26,61,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0624,43.7701314471,-79.4494799439,308851.855,4847575.071
-896271,4154171,2017.0,2017.0,1962.0,PRIVATE,15,Don Valley West,4 GRANDSTAND PL,6,60,2017-10-26,74,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,4.0,,4.0,3.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,,N1533,43.704055124899995,-79.3456519574,317224.299,4840244.586
-896272,4154641,2017.0,2017.0,1969.0,PRIVATE,6,York Centre,12 GOLDFINCH CRT,12,143,2017-10-26,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0624,43.7709438668,-79.45096002390001,308732.646,4847665.256
-896273,4153736,2017.0,2017.0,1950.0,PRIVATE,11,University-Rosedale,83 ELM AVE,3,61,2017-10-26,70,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,3.0,,3.0,2.0,4.0,4.0,2.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,,S1131,43.6758876849,-79.3733881455,314993.648,4837111.547
-896274,4152678,2017.0,2017.0,1971.0,PRIVATE,20,Scarborough Southwest,2223 EGLINTON AVE E,6,75,2017-10-26,68,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,4.0,2.0,4.0,3.0,3.0,,3.0,3.0,5.0,2.0,3.0,5.0,3.0,2.0,5.0,,E2023,43.729622459,-79.27670919100001,322772.838,4843098.516
-896275,4152684,2017.0,2017.0,1962.0,PRIVATE,20,Scarborough Southwest,2323 EGLINTON AVE E,7,75,2017-10-26,73,Evaluation needs to be conducted in 2 years,17,3.0,4.0,4.0,3.0,2.0,3.0,,4.0,3.0,,3.0,3.0,5.0,5.0,4.0,4.0,5.0,4.0,3.0,,E2023,43.731089491000006,-79.27051348,323259.124,4843268.708000001
-896276,4155527,2017.0,2017.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,66 FIFTEENTH ST,3,23,2017-10-26,57,Evaluation needs to be conducted in 1 year,15,2.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,W0335,43.6016913741,-79.5154841711,303534.33,4828861.169
-896277,4155526,2017.0,2017.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,68 FIFTEENTH ST,3,23,2017-10-26,57,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,2.0,3.0,3.0,3.0,3.0,3.0,,2.0,3.0,,W0335,43.6018725092,-79.5155664231,303527.693,4828881.294
-896278,4155555,2017.0,2017.0,1950.0,PRIVATE,3,Etobicoke-Lakeshore,55 FORTY SECOND ST,4,26,2017-10-26,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,,4.0,,2.0,3.0,,3.0,3.0,5.0,3.0,3.0,2.0,3.0,3.0,3.0,,W0334,43.5886442481,-79.5434170167,301278.522,4827412.487
-896279,4156443,2017.0,2017.0,1953.0,SOCIAL HOUSING,3,Etobicoke-Lakeshore,25 FORTY THIRD ST,3,41,2017-10-26,73,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,4.0,4.0,4.0,,4.0,,,4.0,3.0,5.0,4.0,3.0,3.0,,3.0,4.0,4.0,W0334,43.5903216537,-79.5464760633,301031.587,4827598.975
-896280,4154645,2017.0,2017.0,1960.0,PRIVATE,6,York Centre,521-523 FINCH AVE W,6,179,2017-10-26,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,4.0,4.0,3.0,2.0,3.0,,N0624,43.772961449899995,-79.444496063,309267.54,4847942.623
-896281,4154639,2017.0,2017.0,1969.0,PRIVATE,6,York Centre,601 FINCH AVE W,14,170,2017-10-26,60,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0624,43.770708386,-79.45171713,308671.446,4847640.0139999995
-896282,4156337,2017.0,2017.0,1970.0,PRIVATE,6,York Centre,190 EXBURY RD,19,154,2017-10-26,65,Evaluation needs to be conducted in 1 year,20,4.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,2.0,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,2.0,N0627,43.729239154,-79.509192255,304054.473,4843029.277
-896283,4155812,2017.0,2017.0,1970.0,PRIVATE,6,York Centre,200 EXBURY RD,20,154,2017-10-26,65,Evaluation needs to be conducted in 1 year,20,4.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,2.0,3.0,3.0,3.0,4.0,3.0,2.0,3.0,4.0,3.0,2.0,N0627,43.728487665,-79.509556463,304021.422,4842944.744
-896284,4153430,2017.0,2017.0,1918.0,SOCIAL HOUSING,13,Toronto Centre,49 MUTUAL ST,4,20,2017-10-26,68,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,4.0,3.0,4.0,,3.0,3.0,,3.0,3.0,5.0,4.0,3.0,3.0,,3.0,3.0,,S1332,43.65533821,-79.37472999100001,314888.613,4834829.365
-896285,4156548,2017.0,2017.0,2010.0,PRIVATE,12,Toronto-St. Paul's,65 LILLIAN ST,10,141,2017-10-26,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,S1228,43.7061847,-79.39322488100001,313389.587,4840476.209
-896286,4153756,2017.0,2017.0,1962.0,PRIVATE,15,Don Valley West,375 MERTON ST,4,47,2017-10-26,73,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,4.0,2.0,,3.0,3.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N1534,43.697934721,-79.38501268,314052.709,4839560.517
-896287,4154871,2017.0,2017.0,1960.0,PRIVATE,16,Don Valley East,21 ECCLESTON DR,4,64,2017-10-26,61,Evaluation needs to be conducted in 1 year,19,3.0,2.0,4.0,3.0,3.0,2.0,2.0,3.0,5.0,3.0,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N1628,43.7270536549,-79.31695183810001,319531.775,4842804.342
-896288,4154492,2017.0,2017.0,1958.0,PRIVATE,8,Eglinton-Lawrence,47 EUPHRASIA DR,3,26,2017-10-26,59,Evaluation needs to be conducted in 1 year,18,3.0,3.0,2.0,3.0,3.0,3.0,,3.0,3.0,2.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0826,43.712421686099994,-79.4606406052,307956.24600000004,4841163.303
-896289,4153506,2017.0,2017.0,1940.0,PRIVATE,13,Toronto Centre,83 GLOUCESTER ST,3,27,2017-10-26,67,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,4.0,,3.0,3.0,,S1322,43.667333372200005,-79.3809735781,314383.363,4836160.296
-896290,4154669,2017.0,2017.0,1955.0,PRIVATE,8,Eglinton-Lawrence,199 WILSON AVE,4,46,2017-10-25,70,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,,3.0,3.0,3.0,5.0,4.0,4.0,3.0,4.0,5.0,3.0,,N0824,43.7390527397,-79.4243280269,310879.837,4844123.886
-896291,4154876,2017.0,2017.0,1960.0,PRIVATE,16,Don Valley East,26 SLOANE AVE,4,60,2017-10-25,61,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,2.0,5.0,2.0,3.0,3.0,3.0,2.0,3.0,,N1628,43.7266750646,-79.3142450154,319749.941,4842762.762
-896292,4154586,2017.0,2017.0,1953.0,PRIVATE,6,York Centre,17 ROSSEAU RD,3,11,2017-10-25,51,Evaluation needs to be conducted in 1 year,15,2.0,3.0,3.0,2.0,2.0,3.0,,3.0,,,2.0,2.0,2.0,3.0,3.0,3.0,,2.0,3.0,,N0629,43.742708916400005,-79.4368688543,309869.398,4844529.22
-896293,4153590,2017.0,2017.0,1934.0,PRIVATE,13,Toronto Centre,435 SHERBOURNE ST,4,48,2017-10-25,65,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,4.0,3.0,4.0,,3.0,3.0,,S1323,43.665547356400005,-79.3735085585,314985.686,4835962.758
-896294,4253806,2017.0,2017.0,1956.0,PRIVATE,11,University-Rosedale,1 ROSEDALE RD,4,25,2017-10-25,58,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,,3.0,2.0,4.0,3.0,2.0,3.0,3.0,3.0,2.0,,S1129,43.674781847,-79.38361137,314169.232,4836988.448
-896295,4155039,2017.0,2017.0,1960.0,PRIVATE,12,Toronto-St. Paul's,1675 EGLINTON AVE W,3,37,2017-10-25,59,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,2.0,3.0,3.0,5.0,3.0,3.0,2.0,,3.0,3.0,,S1222,43.6962776134,-79.4460738363,309131.262,4839370.443
-896296,4169173,2017.0,2017.0,1960.0,PRIVATE,12,Toronto-St. Paul's,1685 EGLINTON AVE W,3,38,2017-10-25,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,3.0,2.0,,3.0,,2.0,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1222,43.696203167,-79.446372358,309106.94,4839363.1110000005
-896297,4154011,2017.0,2017.0,1952.0,PRIVATE,8,Eglinton-Lawrence,118 MONTGOMERY AVE,3,109,2017-10-25,70,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,2.0,3.0,3.0,,3.0,3.0,3.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,,N0833,43.709488115,-79.40261900899999,312632.053,4840842.279
-896298,4155034,2017.0,2017.0,1965.0,PRIVATE,12,Toronto-St. Paul's,640 LAUDER AVE,10,129,2017-10-25,58,Evaluation needs to be conducted in 1 year,19,4.0,3.0,3.0,2.0,3.0,2.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,2.0,,S1222,43.6937773713,-79.44616047699999,309124.445,4839092.664
-896299,4152809,2017.0,2017.0,1970.0,PRIVATE,24,Scarborough-Guildwood,419 MARKHAM RD,12,160,2017-10-25,60,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,3.0,3.0,3.0,1.0,2.0,3.0,,3.0,3.0,4.0,4.0,2.0,2.0,4.0,4.0,3.0,3.0,E2430,43.750117696000004,-79.220863337,327264.45,4845388.046
-896300,4152747,2017.0,2017.0,1965.0,PRIVATE,20,Scarborough Southwest,815 MIDLAND AVE,3,23,2017-10-25,61,Evaluation needs to be conducted in 1 year,16,2.0,3.0,4.0,2.0,2.0,2.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,4.0,4.0,3.0,,E2024,43.734150957,-79.2574811613,324320.645,4843605.005
-896301,4154875,2017.0,2017.0,1960.0,PRIVATE,16,Don Valley East,1 ECCLESTON DR,4,62,2017-10-25,61,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,2.0,5.0,2.0,3.0,3.0,3.0,2.0,3.0,,N1628,43.727010393,-79.3140806139,319763.103,4842800.045
-896302,4154874,2017.0,2017.0,1960.0,PRIVATE,16,Don Valley East,3 ECCLESTON DR,4,61,2017-10-25,59,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,3.0,3.0,3.0,2.0,3.0,4.0,3.0,3.0,2.0,5.0,2.0,3.0,3.0,2.0,2.0,3.0,,N1628,43.7269110332,-79.3147057039,319712.768,4842788.895
-896303,4245705,2017.0,2017.0,1967.0,PRIVATE,3,Etobicoke-Lakeshore,359 KIPLING AVE,3,12,2017-10-25,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,3.0,3.0,3.0,3.0,4.0,4.0,3.0,,4.0,3.0,,W0335,43.600993851800006,-79.5179299016,303336.876,4828783.712
-896304,4153849,2017.0,2017.0,1969.0,PRIVATE,15,Don Valley West,160 ERSKINE AVE,23,250,2017-10-25,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,,N1526,43.71268040100001,-79.393055375,313402.315,4841197.882
-896305,4154153,2017.0,2017.0,1968.0,PRIVATE,15,Don Valley West,49 THORNCLIFFE PARK DR,20,400,2017-10-25,56,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,3.0,3.0,2.0,3.0,4.0,,2.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,2.0,,N1533,43.701948808999994,-79.342340022,317491.42100000003,4840012.05
-896306,4154930,2017.0,2017.0,1964.0,PRIVATE,12,Toronto-St. Paul's,400 WALMER RD,25,547,2017-10-25,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,S1230,43.6852911437,-79.4131806469,311783.937,4838152.1219999995
-896307,4155383,2017.0,2017.0,1970.0,PRIVATE,2,Etobicoke Centre,329 THE WEST MALL,5,45,2017-10-25,70,Evaluation needs to be conducted in 2 years,18,3.0,4.0,3.0,3.0,3.0,3.0,,3.0,4.0,,3.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,4.0,3.0,W0233,43.6375255076,-79.5635248549,299658.87,4832843.935
-896308,4153372,2017.0,2017.0,1965.0,PRIVATE,12,Toronto-St. Paul's,82 WARREN RD,7,49,2017-10-25,59,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,3.0,3.0,3.0,5.0,2.0,3.0,2.0,3.0,2.0,2.0,,S1237,43.6853486337,-79.4067397267,312303.234,4838159.076
-896309,4153888,2017.0,2017.0,1963.0,PRIVATE,12,Toronto-St. Paul's,90 WARREN RD,5,79,2017-10-25,68,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,3.0,3.0,2.0,,3.0,3.0,,3.0,3.0,5.0,4.0,4.0,4.0,,3.0,3.0,,S1231,43.6859314457,-79.4069242127,312288.29,4838223.81
-896310,4156297,2017.0,2017.0,1968.0,PRIVATE,2,Etobicoke Centre,25 WARRENDER AVE,13,126,2017-10-25,58,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,2.0,2.0,2.0,3.0,4.0,3.0,,2.0,3.0,4.0,3.0,3.0,4.0,2.0,3.0,3.0,3.0,W0227,43.67573405,-79.551408627,300638.915,4837089.0819999995
-896311,4155394,2017.0,2017.0,1969.0,PRIVATE,2,Etobicoke Centre,545 THE WEST MALL,16,312,2017-10-25,60,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,W0231,43.651935308,-79.56812821300001,299175.535,4834432.713
-896312,4154908,2017.0,2017.0,1965.0,PRIVATE,16,Don Valley East,57 PARKWOODS VILLAGE DR,7,87,2017-10-25,56,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,2.0,3.0,2.0,3.0,3.0,3.0,2.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,N1625,43.7601500687,-79.3205133557,319236.899,4846480.491
-896313,4154692,2017.0,2017.0,1959.0,PRIVATE,6,York Centre,4141 BATHURST ST,3,30,2017-10-25,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,N0630,43.7480692868,-79.436244411,309919.25399999996,4845124.782
-896314,4154649,2017.0,2017.0,1961.0,PRIVATE,6,York Centre,4854 BATHURST ST,6,71,2017-10-25,58,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,1.0,3.0,3.0,,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,2.0,,N0624,43.77111358770001,-79.442973232,309375.6,4847684.513
-896315,4154604,2017.0,2017.0,1966.0,PRIVATE,6,York Centre,4190 BATHURST ST,9,80,2017-10-25,66,Evaluation needs to be conducted in 2 years,19,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,5.0,3.0,4.0,3.0,4.0,3.0,2.0,4.0,N0629,43.748575119399995,-79.437302788,309833.975,4845180.913
-896316,4155740,2017.0,2017.0,1967.0,PRIVATE,6,York Centre,4222 BATHURST ST,8,77,2017-10-25,63,Evaluation needs to be conducted in 1 year,18,4.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,N0629,43.7495949596,-79.4376915029,309802.588,4845294.188
-896317,4154610,2017.0,2017.0,1960.0,PRIVATE,6,York Centre,4340 BATHURST ST,6,50,2017-10-25,64,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,2.0,,N0629,43.753680142,-79.438438017,309741.877,4845748.941000001
-896318,4152677,2017.0,2017.0,1992.0,SOCIAL HOUSING,20,Scarborough Southwest,835-841 BIRCHMOUNT RD,6,102,2017-10-25,74,Evaluation needs to be conducted in 2 years,20,3.0,4.0,4.0,3.0,4.0,3.0,2.0,4.0,3.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,E2023,43.72941570810001,-79.2774083068,322716.837,4843074.44
-896319,4154935,2017.0,2017.0,1943.0,PRIVATE,12,Toronto-St. Paul's,1535 BATHURST ST,4,32,2017-10-25,64,Evaluation needs to be conducted in 1 year,16,4.0,4.0,3.0,3.0,2.0,2.0,,3.0,,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,4.0,,S1230,43.685782618699996,-79.4189403297,311319.515,4838206.2469999995
-896320,4250612,2017.0,2017.0,1943.0,PRIVATE,12,Toronto-St. Paul's,1539 BATHURST ST,4,32,2017-10-25,64,Evaluation needs to be conducted in 1 year,16,4.0,3.0,3.0,3.0,3.0,2.0,,3.0,,3.0,3.0,3.0,4.0,3.0,4.0,3.0,,3.0,4.0,,S1230,43.685911156,-79.418988838,311315.328,4838221.478
-896321,4154950,2017.0,2017.0,1940.0,PRIVATE,12,Toronto-St. Paul's,1550 BATHURST ST,5,25,2017-10-25,69,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,4.0,4.0,,4.0,3.0,3.0,S1229,43.685357358999994,-79.41960900800001,311265.649,4838158.948
-896322,4166996,2017.0,2017.0,1955.0,PRIVATE,11,University-Rosedale,130 ROSEDALE VALLEY RD,9,99,2017-10-25,75,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,4.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,3.0,,S1129,43.6741662925,-79.3857275041,313998.95399999997,4836918.869
-896323,4156003,2017.0,2017.0,1969.0,PRIVATE,12,Toronto-St. Paul's,33 ROSEHILL AVE,28,216,2017-10-25,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,4.0,S1238,43.68644645,-79.39101627,313557.587,4838297.586
-896324,4153745,2017.0,2017.0,1969.0,PRIVATE,12,Toronto-St. Paul's,50 ROSEHILL AVE,23,245,2017-10-25,75,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,3.0,4.0,2.0,4.0,4.0,4.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,S1238,43.686997323,-79.391011464,313570.756,4838344.719
-896325,4155548,2017.0,2017.0,1963.0,PRIVATE,3,Etobicoke-Lakeshore,21 PARK BLVD,7,97,2017-10-25,66,Evaluation needs to be conducted in 2 years,20,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,W0334,43.590583298,-79.5303135599,302336.70399999997,4827627.441000001
-896326,4155547,2017.0,2017.0,1963.0,PRIVATE,3,Etobicoke-Lakeshore,31 PARK BLVD,7,97,2017-10-25,68,Evaluation needs to be conducted in 2 years,20,3.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,5.0,3.0,4.0,3.0,4.0,3.0,4.0,3.0,W0334,43.5903629605,-79.5313842856,302250.238,4827602.996
-896327,4155049,2017.0,2017.0,1960.0,PRIVATE,8,Eglinton-Lawrence,822 ROSELAWN AVE,9,56,2017-10-25,60,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,3.0,2.0,5.0,3.0,3.0,3.0,2.0,3.0,3.0,,N0831,43.702841898100004,-79.43937545909999,309670.69800000003,4840100.068
-896328,4152934,2017.0,2017.0,1969.0,PRIVATE,4,Parkdale-High Park,77 QUEBEC AVE,21,330,2017-10-25,71,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,5.0,2.0,3.0,3.0,4.0,,3.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,,S0428,,,307422.34,4834828.072
-896329,4154597,2017.0,2017.0,1949.0,PRIVATE,6,York Centre,26 ROSSEAU RD,3,11,2017-10-25,57,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,,3.0,,3.0,,,3.0,2.0,5.0,3.0,2.0,2.0,,3.0,2.0,,N0629,43.743239984,-79.4377635242,309797.298,4844588.17
-896330,4155848,2017.0,2017.0,1969.0,PRIVATE,4,Parkdale-High Park,35 HIGH PARK AVE,26,201,2017-10-25,72,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,,3.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,,S0428,43.6547264051,-79.4652848769,307584.63300000003,4834753.518999999
-896331,4152935,2017.0,2017.0,1969.0,PRIVATE,4,Parkdale-High Park,40 HIGH PARK AVE,20,331,2017-10-25,71,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,5.0,2.0,3.0,4.0,4.0,,3.0,3.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,,S0428,,,307496.989,4834752.748
-896332,4166848,2017.0,2017.0,1969.0,PRIVATE,4,Parkdale-High Park,65 HIGH PARK AVE,23,321,2017-10-25,76,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,,3.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,S0428,43.655948159,-79.465424787,307525.818,4834894.517
-896333,4155905,2017.0,2017.0,1969.0,PRIVATE,4,Parkdale-High Park,95 HIGH PARK AVE,16,218,2017-10-25,77,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,,3.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,,S0428,43.65678758399999,-79.46615734699999,307493.658,4834995.877
-896334,4155095,2017.0,2017.0,1955.0,PRIVATE,5,York South-Weston,4 GREENTREE CRT,4,43,2017-10-25,56,Evaluation needs to be conducted in 1 year,16,3.0,2.0,3.0,3.0,3.0,2.0,,3.0,,3.0,3.0,2.0,5.0,3.0,2.0,2.0,,3.0,3.0,,W0532,43.6926919823,-79.4790165335,306475.957,4838970.911
-896335,4153151,2017.0,2017.0,1929.0,PRIVATE,11,University-Rosedale,805 COLLEGE ST,4,72,2017-10-25,60,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1141,43.6543880918,-79.4216105716,311107.589,4834718.259
-896336,4152938,2017.0,2017.0,1940.0,PRIVATE,4,Parkdale-High Park,1942 BLOOR ST W,4,16,2017-10-25,69,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,4.0,3.0,2.0,,3.0,,4.0,4.0,3.0,5.0,3.0,4.0,4.0,,4.0,3.0,,S0428,43.65337980100001,-79.467222983,307428.095,4834604.811000001
-896337,4155114,2017.0,2017.0,1950.0,PRIVATE,5,York South-Weston,79 CLEARVIEW HTS,4,54,2017-10-25,46,Building Audit,16,2.0,2.0,2.0,2.0,2.0,2.0,,2.0,,2.0,2.0,2.0,5.0,3.0,2.0,2.0,,3.0,2.0,,W0532,43.692294791,-79.482440365,306199.702,4838927.692
-896338,4155113,2017.0,2017.0,1950.0,PRIVATE,5,York South-Weston,81 CLEARVIEW HTS,3,40,2017-10-25,43,Building Audit,16,2.0,2.0,2.0,2.0,2.0,2.0,,2.0,,2.0,2.0,2.0,2.0,3.0,2.0,2.0,,3.0,2.0,,W0532,43.692447216000005,-79.48271117899999,306177.868,4838944.6219999995
-896339,4250265,2017.0,2017.0,1987.0,SOCIAL HOUSING,11,University-Rosedale,153 BORDEN ST,3,45,2017-10-25,58,Evaluation needs to be conducted in 1 year,17,3.0,3.0,2.0,2.0,3.0,3.0,,2.0,,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,S1134,43.6622608263,-79.4069405435,312289.812,4835594.044
-896340,4153589,2017.0,2017.0,1934.0,PRIVATE,13,Toronto Centre,433 SHERBOURNE ST,4,48,2017-10-25,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1323,43.665410503900006,-79.3734599636,314989.627,4835947.562
-896341,4155895,2017.0,2017.0,1994.0,SOCIAL HOUSING,16,Don Valley East,83 PARKWOODS VILLAGE DR,7,68,2017-10-25,66,Evaluation needs to be conducted in 2 years,19,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,3.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,N1625,43.7613478406,-79.323202558,319020.075,4846613.101
-896342,4152599,2017.0,2017.0,1972.0,PRIVATE,20,Scarborough Southwest,263 PHARMACY AVE,21,329,2017-10-25,65,Evaluation needs to be conducted in 1 year,20,3.0,3.0,4.0,2.0,3.0,3.0,2.0,3.0,3.0,4.0,4.0,2.0,5.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,E2028,43.6998540886,-79.2849399311,322118.62,4839788.691000001
-896343,4152600,2017.0,2017.0,1972.0,PRIVATE,20,Scarborough Southwest,273 PHARMACY AVE,18,280,2017-10-25,67,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,3.0,4.0,2.0,2.0,3.0,4.0,4.0,3.0,2.0,5.0,4.0,2.0,3.0,3.0,4.0,3.0,4.0,E2028,43.700248057299994,-79.2862500131,322012.917,4839832.19
-896344,4152601,2017.0,2017.0,1972.0,PRIVATE,20,Scarborough Southwest,283 PHARMACY AVE,17,267,2017-10-25,66,Evaluation needs to be conducted in 2 years,20,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,2.0,3.0,3.0,2.0,5.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,E2028,43.7005263633,-79.285525406,322071.239,4839863.258
-896345,4153417,2017.0,2017.0,1885.0,SOCIAL HOUSING,11,University-Rosedale,87 BELLEVUE AVE,3,28,2017-10-25,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,3.0,4.0,S1143,43.656179273,-79.40360132,312559.687,4834919.685
-896346,4154677,2017.0,2017.0,1955.0,PRIVATE,8,Eglinton-Lawrence,2125 AVENUE RD,4,33,2017-10-25,56,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,2.0,2.0,5.0,2.0,3.0,2.0,3.0,2.0,3.0,,N0824,43.738421162899996,-79.4206636772,311175.063,4844053.984
-896347,4154223,2017.0,2017.0,1972.0,PRIVATE,7,Humber River-Black Creek,160 CHALKFARM DR,23,466,2017-10-25,57,Evaluation needs to be conducted in 1 year,18,4.0,4.0,4.0,3.0,2.0,3.0,2.0,2.0,3.0,,3.0,2.0,2.0,3.0,3.0,3.0,3.0,2.0,3.0,,W0734,43.7243235641,-79.51474864069999,303596.24600000004,4842484.943
-896348,4152617,2017.0,2017.0,1965.0,PRIVATE,20,Scarborough Southwest,506 DANFORTH RD,3,22,2017-10-25,66,Evaluation needs to be conducted in 2 years,17,3.0,4.0,4.0,3.0,4.0,4.0,,4.0,,2.0,3.0,4.0,5.0,3.0,3.0,3.0,3.0,2.0,2.0,,E2030,43.709022115699995,-79.2673794919,323531.11100000003,4840811.032
-896349,4154028,2017.0,2017.0,1957.0,PRIVATE,8,Eglinton-Lawrence,3110 YONGE ST,4,41,2017-10-25,58,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,3.0,3.0,2.0,3.0,3.0,3.0,4.0,4.0,,2.0,2.0,,N0825,43.726185855,-79.402998395,312599.587,4842696.294
-896350,4154399,2017.0,2017.0,1960.0,PRIVATE,6,York Centre,1303 WILSON AVE,8,85,2017-10-25,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,,4.0,4.0,5.0,4.0,4.0,4.0,3.0,3.0,4.0,,N0631,43.7232242004,-79.4942044092,305251.45,4842362.698
-896351,4154398,2017.0,2017.0,1960.0,PRIVATE,6,York Centre,1305 WILSON AVE,8,86,2017-10-25,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,,N0631,43.7234367633,-79.4949764367,305189.248,4842386.31
-896352,4155059,2017.0,2017.0,1960.0,PRIVATE,8,Eglinton-Lawrence,2495 DUFFERIN ST,3,15,2017-10-25,55,Evaluation needs to be conducted in 1 year,15,3.0,2.0,3.0,3.0,2.0,2.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,2.0,,2.0,3.0,,N0831,43.701718897,-79.451636758,308682.24,4839975.612
-896353,4154222,2017.0,2017.0,1972.0,PRIVATE,7,Humber River-Black Creek,170 CHALKFARM DR,23,262,2017-10-25,53,Evaluation needs to be conducted in 1 year,18,3.0,4.0,3.0,2.0,2.0,3.0,3.0,2.0,3.0,,3.0,3.0,2.0,3.0,2.0,2.0,3.0,2.0,3.0,,W0734,43.7242716939,-79.5134047928,303704.517,4842479.159
-896354,4154220,2017.0,2017.0,1974.0,PRIVATE,7,Humber River-Black Creek,200 CHALKFARM DR,28,223,2017-10-25,58,Evaluation needs to be conducted in 1 year,18,4.0,4.0,3.0,2.0,4.0,3.0,3.0,2.0,3.0,,3.0,3.0,2.0,3.0,3.0,3.0,2.0,2.0,3.0,,W0734,43.724217100000004,-79.510651122,303926.11,4842474.01
-896355,4153880,2017.0,2017.0,1970.0,PRIVATE,12,Toronto-St. Paul's,14 DEER PARK CRES,4,13,2017-10-25,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,,2.0,,3.0,,,3.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,S1232,43.688481804300004,-79.3993292797,312900.26,4838507.841
-896356,4153168,2017.0,2017.0,1930.0,PRIVATE,11,University-Rosedale,496 MONTROSE AVE,3,24,2017-10-25,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,S1132,43.662851529799994,-79.4210660752,311150.555,4835658.55
-896357,4250596,2017.0,2017.0,1938.0,PRIVATE,12,Toronto-St. Paul's,18 TICHESTER RD,4,32,2017-10-25,70,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,,3.0,4.0,4.0,5.0,3.0,4.0,4.0,,3.0,4.0,,S1230,43.685962783,-79.41794405899999,311399.553,4838227.295
-896358,4250600,2017.0,2017.0,1938.0,PRIVATE,12,Toronto-St. Paul's,22 TICHESTER RD,4,32,2017-10-25,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,2.0,4.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1230,43.68592338,-79.418139695,311383.785,4838222.902
-896359,4155401,2017.0,2017.0,1969.0,PRIVATE,2,Etobicoke Centre,535 THE EAST MALL,7,90,2017-10-25,59,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,2.0,,W0232,43.651798497600005,-79.5625281219,299740.547,4834429.513
-896360,4156102,2017.0,2017.0,1968.0,PRIVATE,2,Etobicoke Centre,35 WARRENDER AVE,7,108,2017-10-25,57,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,2.0,2.0,3.0,3.0,,2.0,3.0,2.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,W0227,43.676251271000005,-79.552119041,300581.193,4837146.295
-896361,4155928,2017.0,2017.0,1971.0,PRIVATE,2,Etobicoke Centre,41 WARRENDER AVE,7,105,2017-10-25,55,Evaluation needs to be conducted in 1 year,19,2.0,3.0,3.0,3.0,4.0,2.0,2.0,3.0,3.0,,2.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,W0227,43.676012058999994,-79.553552325,300469.80100000004,4837116.899
-896362,4232592,2017.0,2017.0,1971.0,PRIVATE,2,Etobicoke Centre,53 WARRENDER AVE,13,128,2017-10-25,55,Evaluation needs to be conducted in 1 year,19,2.0,3.0,3.0,3.0,4.0,2.0,2.0,3.0,3.0,,2.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,W0227,43.675270143,-79.553851772,300439.227,4837043.395
-896363,4219140,2017.0,2017.0,2011.0,PRIVATE,2,Etobicoke Centre,620 MARTIN GROVE RD,22,236,2017-10-25,74,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,,3.0,3.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,W0227,,,,
-896364,4152836,2017.0,2017.0,1979.0,PRIVATE,24,Scarborough-Guildwood,30 LIVONIA PL,13,200,2017-10-25,72,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,,4.0,3.0,5.0,4.0,3.0,4.0,4.0,3.0,2.0,,E2423,43.786028953999995,-79.204498435,328567.963,4849383.17
-896365,4152993,2017.0,2017.0,1977.0,PRIVATE,4,Parkdale-High Park,96 JAMESON AVE,6,72,2017-10-25,62,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,2.0,,4.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,,S0437,43.63476362390001,-79.4354387074,309993.79600000003,4832537.146000001
-896366,4152983,2017.0,2017.0,1968.0,PRIVATE,4,Parkdale-High Park,109 JAMESON AVE,7,118,2017-10-25,42,Building Audit,18,2.0,3.0,3.0,1.0,3.0,1.0,,2.0,2.0,2.0,2.0,1.0,2.0,3.0,2.0,2.0,2.0,3.0,2.0,,S0437,43.635775261400006,-79.4351441471,310017.478,4832649.546
-896367,4152984,2017.0,2017.0,1955.0,PRIVATE,4,Parkdale-High Park,125 JAMESON AVE,7,67,2017-10-25,60,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,S0437,43.6361641445,-79.4351614024,310016.053,4832692.746
-896368,4153596,2017.0,2017.0,1963.0,PRIVATE,13,Toronto Centre,222 WELLESLEY ST E,7,69,2017-10-25,63,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,3.0,3.0,,S1323,43.6678764377,-79.37278552689999,315043.596,4836221.596
-896369,4154417,2017.0,2017.0,1950.0,PRIVATE,6,York Centre,2808 KEELE ST,4,54,2017-10-25,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,4.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,N0627,43.7290630749,-79.4829377791,306159.092,4843011.481000001
-896370,4156725,2017.0,2017.0,2009.0,SOCIAL HOUSING,13,Toronto Centre,160 JARVIS ST,6,98,2017-10-25,76,Evaluation needs to be conducted in 2 years,18,3.0,4.0,5.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,,4.0,4.0,,S1332,43.654672753999996,-79.373968369,314934.897,4834789.433
-896371,4156367,2017.0,2017.0,1954.0,PRIVATE,5,York South-Weston,4 GREENBROOK DR,3,23,2017-10-25,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0532,43.697269463999994,-79.47635433880001,306690.437,4839479.496
-896372,4155094,2017.0,2017.0,1950.0,PRIVATE,5,York South-Weston,2 GREENTREE CRT,3,29,2017-10-25,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,4.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,W0532,43.6929246755,-79.4786023031,306509.343,4838996.768999999
-896373,4155540,2017.0,2017.0,1970.0,PRIVATE,3,Etobicoke-Lakeshore,100 TWENTY FIFTH ST,3,18,2017-10-25,81,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,W0334,43.59601136,-79.523701265,302857.947,4828272.539
-896374,4155560,2017.0,2017.0,1968.0,PRIVATE,3,Etobicoke-Lakeshore,6 TWENTY FOURTH ST,7,81,2017-10-25,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,4.0,,4.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0334,43.5975229121,-79.52326171050001,302906.316,4828398.191000001
-896375,4155712,2017.0,2017.0,1965.0,PRIVATE,16,Don Valley East,44 VALLEY WOODS RD,22,263,2017-10-25,64,Evaluation needs to be conducted in 1 year,20,4.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,N1625,43.75464500100001,-79.33343610899999,318197.315,4845867.709
-896376,4152615,2017.0,2017.0,1962.0,PRIVATE,20,Scarborough Southwest,534 BIRCHMOUNT RD,4,34,2017-10-24,54,Evaluation needs to be conducted in 1 year,17,2.0,3.0,4.0,2.0,2.0,2.0,,2.0,3.0,,3.0,2.0,4.0,2.0,3.0,3.0,4.0,3.0,2.0,,E2029,43.710331071700004,-79.2701499955,323307.445,4840955.829
-896377,4152614,2017.0,2017.0,1960.0,PRIVATE,20,Scarborough Southwest,536 BIRCHMOUNT RD,3,28,2017-10-24,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,,,3.0,2.0,5.0,2.0,4.0,3.0,,2.0,4.0,,E2029,43.710576896899994,-79.2702122358,323302.354,4840983.125
-896378,4152613,2017.0,2017.0,1960.0,PRIVATE,20,Scarborough Southwest,540 BIRCHMOUNT RD,4,27,2017-10-24,69,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,3.0,3.0,3.0,,4.0,,,4.0,3.0,5.0,2.0,4.0,4.0,3.0,3.0,3.0,,E2029,43.7107990699,-79.2702992344,323295.275,4841007.788
-896379,4154593,2017.0,2017.0,1958.0,PRIVATE,6,York Centre,3888 BATHURST ST,3,31,2017-10-24,60,Evaluation needs to be conducted in 1 year,17,3.0,3.0,2.0,3.0,3.0,3.0,,3.0,3.0,,3.0,3.0,4.0,3.0,3.0,2.0,4.0,3.0,3.0,,N0629,43.7428392461,-79.4358673585,309950.049,4844543.7530000005
-896380,4154592,2017.0,2017.0,1958.0,PRIVATE,6,York Centre,3890 BATHURST ST,4,30,2017-10-24,61,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,3.0,2.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,,N0629,43.7431564667,-79.4359561971,309942.868,4844578.99
-896381,4255639,2017.0,2017.0,1958.0,PRIVATE,6,York Centre,3892 BATHURST ST,4,29,2017-10-24,64,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,N0629,43.7434082463,-79.4360131728,309938.25899999996,4844606.96
-896382,4255640,2017.0,2017.0,1958.0,PRIVATE,6,York Centre,3894 BATHURST ST,4,29,2017-10-24,62,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0629,43.743702668100006,-79.43607830170001,309932.99,4844639.666999999
-896383,4154591,2017.0,2017.0,1958.0,PRIVATE,6,York Centre,3896 BATHURST ST,4,30,2017-10-24,62,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,2.0,,3.0,3.0,5.0,3.0,3.0,4.0,3.0,3.0,3.0,,N0629,43.7439610802,-79.4361472401,309927.417,4844668.373
-896384,4154686,2017.0,2017.0,1960.0,PRIVATE,6,York Centre,3905 BATHURST ST,5,50,2017-10-24,66,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,N0630,43.743207276599996,-79.4350944029,310012.274,4844584.687
-896385,4155001,2017.0,2017.0,1951.0,PRIVATE,12,Toronto-St. Paul's,1862 BATHURST ST,7,75,2017-10-24,73,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,4.0,2.0,,4.0,4.0,3.0,4.0,4.0,5.0,4.0,3.0,3.0,,4.0,3.0,,S1224,43.697599459399996,-79.42456803350001,310864.673,4839518.652
-896386,4153957,2017.0,2017.0,1964.0,PRIVATE,8,Eglinton-Lawrence,2121 BATHURST ST,11,210,2017-10-24,80,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,,N0832,43.7039163389,-79.4253300731,310802.63300000003,4840220.402
-896387,4154732,2017.0,2017.0,1970.0,PRIVATE,15,Don Valley West,740 YORK MILLS RD,19,137,2017-10-24,76,Evaluation needs to be conducted in 2 years,20,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,5.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,N1522,43.753559278999994,-79.362054281,315892.973,4845742.888
-896388,4154731,2017.0,2017.0,1970.0,PRIVATE,15,Don Valley West,750 YORK MILLS RD,19,137,2017-10-24,76,Evaluation needs to be conducted in 2 years,20,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,4.0,N1522,43.75370469,-79.360849641,315989.952,4845759.204
-896389,4153233,2017.0,2017.0,1971.0,PRIVATE,11,University-Rosedale,277-283 ST GEORGE ST,10,74,2017-10-24,60,Evaluation needs to be conducted in 1 year,19,3.0,2.0,3.0,3.0,3.0,3.0,2.0,3.0,4.0,2.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1127,,,312646.701,4836883.399
-896390,4153693,2017.0,2017.0,1950.0,PRIVATE,19,Beaches-East York,567 KINGSTON RD,4,15,2017-10-24,60,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,2.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,,2.0,4.0,,S1939,43.678222999999996,-79.30005820699999,320905.57,4837383.518
-896391,4153694,2017.0,2017.0,1940.0,PRIVATE,19,Beaches-East York,569 KINGSTON RD,4,15,2017-10-24,59,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,2.0,2.0,3.0,,3.0,,,2.0,3.0,5.0,3.0,3.0,3.0,,2.0,4.0,,S1939,43.6783240562,-79.29962127270001,320941.034,4837393.877
-896392,4155133,2017.0,2017.0,1968.0,PRIVATE,5,York South-Weston,80 CLOUSTON AVE,3,17,2017-10-24,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,4.0,2.0,,3.0,,4.0,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0527,43.6945334826,-79.50843690090001,304104.346,4839175.411
-896393,4152626,2017.0,2017.0,1955.0,PRIVATE,21,Scarborough Centre,10 CRAIGTON DR,4,36,2017-10-24,69,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,3.0,1.0,,3.0,,,4.0,3.0,5.0,3.0,4.0,3.0,,4.0,3.0,,E2131,43.7273459768,-79.3025559656,320691.488,4842839.459
-896394,4152627,2017.0,2017.0,1960.0,PRIVATE,21,Scarborough Centre,12 CRAIGTON DR,4,32,2017-10-24,65,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,3.0,4.0,,2.0,,,3.0,2.0,5.0,4.0,4.0,2.0,,4.0,3.0,,E2131,43.7275639338,-79.3019458646,320740.584,4842863.786
-896395,4153055,2017.0,2017.0,1992.0,SOCIAL HOUSING,4,Parkdale-High Park,1709 BLOOR ST W,6,80,2017-10-24,81,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,3.0,3.0,4.0,4.0,4.0,3.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,S0432,43.654570058000004,-79.45891655,308098.342,4834736.391
-896396,4155134,2017.0,2017.0,1960.0,PRIVATE,5,York South-Weston,19 DENISON RD E,3,26,2017-10-24,60,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,2.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,2.0,,W0527,43.696310243999996,-79.506587145,304253.209,4839373.738
-896397,4153053,2017.0,2017.0,1960.0,PRIVATE,4,Parkdale-High Park,470 RONCESVALLES AVE,4,39,2017-10-24,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,,3.0,,3.0,,,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,,S0432,43.653020008,-79.451921964,308662.363,4834565.429
-896398,4154397,2017.0,2017.0,1960.0,PRIVATE,6,York Centre,1307 WILSON AVE,8,81,2017-10-24,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,2.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,,N0631,43.7228254392,-79.4948470378,305149.24,4842386.885
-896399,4153113,2017.0,2017.0,1930.0,PRIVATE,9,Davenport,921 ST CLAIR AVE W,4,23,2017-10-24,63,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,,3.0,,4.0,,,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,S0928,43.679604386,-79.434318956,310079.882,4837519.722
-896400,4153112,2017.0,2017.0,1930.0,PRIVATE,9,Davenport,923 ST CLAIR AVE W,4,24,2017-10-24,61,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,,3.0,,4.0,,,3.0,2.0,4.0,3.0,3.0,3.0,,3.0,3.0,,S0928,43.679556649,-79.434507969,310064.646,4837514.406
-896401,4153111,2017.0,2017.0,1930.0,PRIVATE,9,Davenport,925 ST CLAIR AVE W,4,24,2017-10-24,64,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,,4.0,,4.0,,,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,S0928,43.6795294913,-79.4347109535,310048.545,4837510.422
-896402,4153094,2017.0,2017.0,2008.0,PRIVATE,9,Davenport,767 DOVERCOURT RD,3,19,2017-10-24,75,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,4.0,4.0,4.0,,4.0,,4.0,4.0,3.0,5.0,3.0,3.0,3.0,,4.0,4.0,,S0932,43.6618560972,-79.4293177813,310485.14,4835547.351
-896403,4155074,2017.0,2017.0,1968.0,PRIVATE,9,Davenport,531 CALEDONIA RD,4,24,2017-10-24,61,Evaluation needs to be conducted in 1 year,15,3.0,2.0,2.0,3.0,3.0,2.0,,3.0,,,3.0,3.0,5.0,4.0,3.0,3.0,,4.0,3.0,,S0921,43.69126949939999,-79.46117367560001,307914.356,4838813.374
-896404,4154931,2017.0,2017.0,1956.0,PRIVATE,12,Toronto-St. Paul's,21 TICHESTER RD,12,117,2017-10-24,66,Evaluation needs to be conducted in 2 years,19,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,4.0,5.0,3.0,3.0,4.0,3.0,3.0,4.0,,S1230,43.68567521600001,-79.416929405,311481.385,4838195.429
-896405,4154545,2017.0,2017.0,1960.0,PRIVATE,8,Eglinton-Lawrence,41 WASDALE CRES,3,11,2017-10-24,58,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,2.0,,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,,N0823,43.7305618491,-79.4356927596,309965.157,4843179.855
-896406,4154520,2017.0,2017.0,1965.0,PRIVATE,8,Eglinton-Lawrence,1 MARQUETTE AVE,4,24,2017-10-24,56,Evaluation needs to be conducted in 1 year,17,3.0,2.0,4.0,3.0,3.0,3.0,,3.0,2.0,,3.0,2.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,,N0823,43.733771348000005,-79.433653399,310128.895,4843537.493
-896407,4155490,2017.0,2017.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,2559 LAKE SHORE BLVD W,4,26,2017-10-24,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,4.0,3.0,2.0,,3.0,,,3.0,2.0,5.0,4.0,3.0,3.0,,3.0,2.0,,W0336,43.6090936183,-79.48861615060001,305607.776,4829677.695
-896408,4154503,2017.0,2017.0,1959.0,PRIVATE,8,Eglinton-Lawrence,61 NEPTUNE DR,3,34,2017-10-24,53,Evaluation needs to be conducted in 1 year,18,3.0,2.0,3.0,3.0,3.0,3.0,,3.0,2.0,3.0,2.0,2.0,3.0,2.0,3.0,3.0,3.0,2.0,3.0,,N0823,43.7318688176,-79.4374660042,309822.193,4843324.941000001
-896409,4155704,2017.0,2017.0,1994.0,SOCIAL HOUSING,19,Beaches-East York,656 KINGSTON RD,6,106,2017-10-24,69,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,3.0,4.0,3.0,4.0,3.0,,3.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,4.0,,S1936,43.679168172,-79.297693338,321095.995,4837488.989
-896410,4153721,2017.0,2017.0,1971.0,PRIVATE,19,Beaches-East York,700 KINGSTON RD,7,38,2017-10-24,69,Evaluation needs to be conducted in 2 years,17,4.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,3.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,2.0,,S1936,43.679427643000004,-79.296686038,321177.143,4837518.012
-896411,4153695,2017.0,2017.0,1935.0,PRIVATE,19,Beaches-East York,737 KINGSTON RD,4,24,2017-10-24,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,4.0,,3.0,3.0,,S1939,43.679351624300004,-79.2950478424,321309.51300000004,4837508.933
-896412,4155017,2017.0,2017.0,1953.0,PRIVATE,9,Davenport,375 WESTMOUNT AVE,3,30,2017-10-24,60,Evaluation needs to be conducted in 1 year,15,3.0,2.0,3.0,3.0,3.0,2.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S0925,43.685368199399996,-79.4445572925,309254.249,4838158.509
-896413,4154517,2017.0,2017.0,1956.0,PRIVATE,8,Eglinton-Lawrence,27 HOTSPUR RD,3,11,2017-10-24,64,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,,N0823,43.732497833100005,-79.4349702821,310023.188,4843394.977
-896414,4244932,2017.0,2017.0,2015.0,PRIVATE,12,Toronto-St. Paul's,310 TWEEDSMUIR AVE,30,251,2017-10-24,85,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,4.0,,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,S1230,43.6853118353,-79.41442398390001,311683.683,4838154.312
-896415,4244947,2017.0,2017.0,2014.0,PRIVATE,12,Toronto-St. Paul's,320 TWEEDSMUIR AVE,30,336,2017-10-24,85,Evaluation needs to be conducted in 2 years,19,4.0,5.0,5.0,4.0,,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,S1230,43.6859132335,-79.4145838905,311670.723,4838221.114
-896416,4153054,2017.0,2017.0,1990.0,SOCIAL HOUSING,4,Parkdale-High Park,515 PARKSIDE DR,6,75,2017-10-24,77,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,3.0,4.0,4.0,4.0,3.0,,4.0,4.0,5.0,4.0,4.0,3.0,4.0,3.0,4.0,,S0432,43.654209663,-79.459398889,308059.191,4834697.288
-896417,4155088,2017.0,2017.0,1993.0,SOCIAL HOUSING,5,York South-Weston,2480 EGLINTON AVE W,8,97,2017-10-24,52,Evaluation needs to be conducted in 1 year,18,3.0,2.0,3.0,3.0,2.0,3.0,3.0,2.0,2.0,,3.0,3.0,3.0,3.0,2.0,2.0,,3.0,3.0,2.0,W0533,43.6916984742,-79.4694113226,307250.278,4838860.746
-896418,4155080,2017.0,2017.0,1975.0,PRIVATE,5,York South-Weston,2501 EGLINTON AVE W,4,25,2017-10-24,65,Evaluation needs to be conducted in 1 year,19,4.0,3.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,2.0,3.0,2.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,,W0537,43.6910731495,-79.469713055,307225.981,4838791.27
-896419,4152667,2017.0,2017.0,1962.0,PRIVATE,20,Scarborough Southwest,130 FOXRIDGE DR,3,30,2017-10-24,48,Building Audit,17,2.0,2.0,2.0,2.0,2.0,3.0,,3.0,,2.0,2.0,2.0,5.0,2.0,1.0,3.0,2.0,3.0,3.0,,E2023,43.7242519745,-79.2657615108,323656.732,4842503.35
-896420,4154730,2017.0,2017.0,1970.0,PRIVATE,15,Don Valley West,17 FARMSTEAD RD,19,136,2017-10-24,76,Evaluation needs to be conducted in 2 years,20,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,5.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,N1522,43.754388627,-79.36167580600001,315923.29600000003,4845835.076
-896421,4153908,2017.0,2017.0,1925.0,PRIVATE,12,Toronto-St. Paul's,311 LONSDALE RD,4,14,2017-10-24,75,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,4.0,4.0,3.0,,3.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S1231,43.688809994799996,-79.41085820159999,311970.793,4838543.273
-896422,4153903,2017.0,2017.0,1923.0,PRIVATE,12,Toronto-St. Paul's,316 LONSDALE RD,4,10,2017-10-24,65,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,4.0,5.0,3.0,3.0,3.0,,4.0,3.0,,S1231,43.689062977700004,-79.4118183457,311893.356,4838571.296
-896423,4153904,2017.0,2017.0,1923.0,PRIVATE,12,Toronto-St. Paul's,320 LONSDALE RD,4,32,2017-10-24,65,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,4.0,5.0,3.0,3.0,4.0,,3.0,3.0,,S1231,43.6890609911,-79.4120929663,311871.215,4838571.051
-896424,4155476,2017.0,2017.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,2361 LAKE SHORE BLVD W,4,47,2017-10-24,58,Evaluation needs to be conducted in 1 year,17,3.0,2.0,3.0,3.0,3.0,4.0,,3.0,3.0,,2.0,3.0,3.0,3.0,2.0,3.0,4.0,3.0,2.0,,W0336,43.6158682454,-79.4878084713,305768.347,4830436.132
-896425,4155475,2017.0,2017.0,1959.0,PRIVATE,3,Etobicoke-Lakeshore,2369 LAKE SHORE BLVD W,4,87,2017-10-24,58,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,2.0,2.0,4.0,,3.0,3.0,,2.0,3.0,3.0,3.0,2.0,3.0,4.0,3.0,3.0,,W0336,43.615736635,-79.48788213569999,305762.403,4830421.51
-896426,4154887,2017.0,2017.0,1960.0,PRIVATE,16,Don Valley East,48 ECCLESTON DR,4,69,2017-10-24,62,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,4.0,4.0,3.0,2.0,3.0,3.0,3.0,3.0,,N1628,43.7279658085,-79.31798872579999,319448.016,4842905.4969999995
-896427,4153218,2017.0,2017.0,1907.0,PRIVATE,11,University-Rosedale,93-99 MADISON AVE,3,17,2017-10-24,69,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,4.0,4.0,3.0,,3.0,,,4.0,3.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,,S1127,,,312525.277,4836561.438
-896428,4153906,2017.0,2017.0,1930.0,PRIVATE,12,Toronto-St. Paul's,323 LONSDALE RD,4,20,2017-10-24,80,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,3.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S1231,43.688552136700004,-79.41195843220001,311882.118,4838514.529
-896429,4153894,2017.0,2017.0,1970.0,PRIVATE,12,Toronto-St. Paul's,345 LONSDALE RD,6,55,2017-10-24,77,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,5.0,,3.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,S1230,43.6881670254,-79.4141265124,311707.357,4838471.552
-896430,4155494,2017.0,2017.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,2547 LAKE SHORE BLVD W,4,26,2017-10-24,65,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,3.0,2.0,,3.0,,3.0,4.0,2.0,5.0,4.0,4.0,3.0,,3.0,3.0,,W0336,43.609303546999996,-79.4892009672,305656.036,4829706.813
-896431,4155493,2017.0,2017.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,2549 LAKE SHORE BLVD W,4,26,2017-10-24,67,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,4.0,3.0,2.0,,3.0,,,4.0,2.0,5.0,3.0,4.0,3.0,,4.0,3.0,,W0336,43.609329001400006,-79.4885909687,305705.277,4829709.647
-896432,4155492,2017.0,2017.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,2555 LAKE SHORE BLVD W,4,26,2017-10-24,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,3.0,2.0,,3.0,,3.0,4.0,2.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0336,43.609043237399995,-79.4898363283,305704.94399999996,4829683.294
-896433,4155195,2017.0,2017.0,1958.0,PRIVATE,5,York South-Weston,15 GRAY AVE,3,17,2017-10-24,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,4.0,3.0,4.0,4.0,,3.0,3.0,,W0535,43.6812020963,-79.49310534140001,305340.27,4837694.285
-896434,4154869,2017.0,2017.0,1960.0,PRIVATE,16,Don Valley East,3 SWIFT DR,5,61,2017-10-24,67,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,3.0,4.0,,3.0,3.0,3.0,3.0,4.0,5.0,3.0,4.0,3.0,4.0,2.0,2.0,,N1628,43.7266882298,-79.3178088353,319462.82,4842763.595
-896435,4154407,2017.0,2017.0,1970.0,PRIVATE,6,York Centre,1154 WILSON AVE,15,229,2017-10-24,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,,N0627,43.7264666233,-79.4864218597,305878.438,4842722.978
-896436,4154408,2017.0,2017.0,1996.0,SOCIAL HOUSING,6,York Centre,1206 WILSON AVE,5,68,2017-10-24,75,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,3.0,3.0,3.0,5.0,4.0,4.0,3.0,,4.0,3.0,4.0,N0627,43.725308739,-79.48942495600001,305636.238,4842595.268
-896437,4153699,2017.0,2017.0,1958.0,PRIVATE,19,Beaches-East York,1691 GERRARD ST E,7,66,2017-10-23,62,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,,S1934,43.675718937,-79.3175243078,319498.149,4837101.145
-896438,4153700,2017.0,2017.0,1964.0,PRIVATE,19,Beaches-East York,4 NEWBOLD AVE,4,12,2017-10-23,51,Evaluation needs to be conducted in 1 year,15,3.0,2.0,2.0,2.0,2.0,2.0,,3.0,,,2.0,2.0,4.0,2.0,3.0,3.0,,3.0,3.0,,S1934,43.675371432,-79.31815704,319446.953,4837063.38
-896439,4155084,2017.0,2017.0,1957.0,PRIVATE,5,York South-Weston,3 NASHVILLE AVE,4,21,2017-10-23,59,Evaluation needs to be conducted in 1 year,15,2.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,4.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,W0536,43.6832687554,-79.4730881792,306954.151,4837924.166
-896440,4155083,2017.0,2017.0,1965.0,PRIVATE,5,York South-Weston,7 NASHVILLE AVE,4,23,2017-10-23,53,Evaluation needs to be conducted in 1 year,16,3.0,2.0,2.0,3.0,3.0,3.0,,2.0,,,3.0,2.0,3.0,3.0,2.0,3.0,3.0,2.0,3.0,,W0536,43.683178102,-79.4735022306,306920.77,4837914.084
-896441,4152846,2017.0,2017.0,1967.0,PRIVATE,24,Scarborough-Guildwood,4000 LAWRENCE AVE E,12,141,2017-10-23,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,4.0,2.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,E2428,43.766112076499994,-79.20001022699999,328937.41,4847170.768999999
-896442,4152845,2017.0,2017.0,1967.0,PRIVATE,24,Scarborough-Guildwood,4010 LAWRENCE AVE E,14,220,2017-10-23,73,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,2.0,3.0,4.0,2.0,4.0,4.0,,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,E2428,43.7667315745,-79.1988475843,329030.765,4847239.93
-896443,4152589,2017.0,2017.0,1969.0,PRIVATE,20,Scarborough Southwest,10 MACEY AVE,16,255,2017-10-23,56,Evaluation needs to be conducted in 1 year,20,3.0,3.0,3.0,2.0,2.0,3.0,2.0,2.0,3.0,2.0,2.0,2.0,5.0,3.0,4.0,3.0,4.0,3.0,3.0,2.0,E2028,43.6922807906,-79.2871199966,321945.072,4838946.874
-896444,4156722,2017.0,2017.0,1968.0,PRIVATE,16,Don Valley East,20 GRAYDON HALL DR,20,305,2017-10-23,62,Evaluation needs to be conducted in 1 year,20,4.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,N1621,43.763477245,-79.345900416,317191.811,4846847.017
-896445,4155387,2017.0,2017.0,1974.0,PRIVATE,2,Etobicoke Centre,15 EVA RD,18,195,2017-10-23,70,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,4.0,,4.0,3.0,5.0,3.0,4.0,3.0,4.0,3.0,3.0,,W0233,43.638437155,-79.562017823,299621.964,4833042.587
-896446,4155384,2017.0,2017.0,1950.0,PRIVATE,2,Etobicoke Centre,339 THE WEST MALL,5,51,2017-10-23,55,Evaluation needs to be conducted in 1 year,17,2.0,4.0,4.0,3.0,3.0,3.0,,3.0,2.0,,3.0,2.0,4.0,3.0,2.0,2.0,3.0,2.0,2.0,,W0233,43.638068798,-79.563940807,299625.092,4832905.27
-896447,4155393,2017.0,2017.0,1970.0,PRIVATE,2,Etobicoke Centre,555 THE WEST MALL,15,119,2017-10-23,74,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,3.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,,W0231,43.65244349100001,-79.57043332100001,299096.887,4834480.231000001
-896448,4155250,2017.0,2017.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,143 STEPHEN DR,5,31,2017-10-23,65,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,3.0,4.0,5.0,3.0,4.0,3.0,4.0,3.0,3.0,,W0327,43.638681755200004,-79.4872228094,305815.067,4832975.459
-896449,4155222,2017.0,2017.0,1993.0,SOCIAL HOUSING,3,Etobicoke-Lakeshore,773 THE QUEENSWAY,3,63,2017-10-23,72,Evaluation needs to be conducted in 2 years,20,3.0,4.0,4.0,3.0,4.0,4.0,4.0,2.0,3.0,4.0,3.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,4.0,W0326,43.625636744,-79.50453080300001,304383.661,4831516.423
-896450,4155373,2017.0,2017.0,1966.0,PRIVATE,2,Etobicoke Centre,340 THE EAST MALL,8,77,2017-10-23,63,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,4.0,,2.0,2.0,3.0,3.0,4.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,W0234,43.639211983,-79.55727457399999,300163.043,4833031.882
-896451,4155372,2017.0,2017.0,1966.0,PRIVATE,2,Etobicoke Centre,350 THE EAST MALL,8,77,2017-10-23,68,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,4.0,5.0,4.0,3.0,3.0,3.0,4.0,4.0,,W0234,43.6409375291,-79.55812954310001,300094.471,4833222.672
-896452,4155405,2017.0,2017.0,1992.0,SOCIAL HOUSING,2,Etobicoke Centre,1540 KIPLING AVE,8,128,2017-10-23,70,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,4.0,4.0,3.0,3.0,3.0,,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,3.0,4.0,W0221,43.680470399799994,-79.5529581707,300514.566,4837614.397
-896453,4152670,2017.0,2017.0,1971.0,PRIVATE,20,Scarborough Southwest,672 KENNEDY RD,6,71,2017-10-23,60,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,4.0,3.0,3.0,2.0,3.0,,2.0,3.0,5.0,3.0,3.0,2.0,4.0,3.0,2.0,,E2023,43.726055224899994,-79.2659127498,323643.994,4842703.654
-896454,4152672,2017.0,2017.0,1957.0,PRIVATE,20,Scarborough Southwest,712 KENNEDY RD,4,49,2017-10-23,68,Evaluation needs to be conducted in 2 years,17,3.0,4.0,4.0,4.0,,2.0,,4.0,3.0,,3.0,3.0,5.0,3.0,4.0,4.0,2.0,4.0,3.0,3.0,E2023,43.728810663999994,-79.2674784317,323517.01,4843009.424
-896455,4155271,2017.0,2017.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,2 HILL HEIGHTS RD,4,30,2017-10-23,60,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,3.0,2.0,,3.0,,2.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0327,43.638792844799994,-79.4940708914,305262.703,4832982.879
-896456,4153586,2017.0,2017.0,1880.0,PRIVATE,13,Toronto Centre,510 ONTARIO ST,3,13,2017-10-23,60,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,2.0,3.0,,3.0,,,3.0,2.0,4.0,3.0,3.0,4.0,3.0,3.0,2.0,,S1323,43.665168638400004,-79.37142343890001,315153.909,4835920.951
-896457,4155272,2017.0,2017.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,34 RIVERWOOD PKWY,4,35,2017-10-23,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0327,43.6397937003,-79.4903246449,305564.983,4833094.093
-896458,4153918,2017.0,2017.0,1918.0,PRIVATE,12,Toronto-St. Paul's,62 ORIOLE GDNS,3,13,2017-10-23,61,Evaluation needs to be conducted in 1 year,16,3.0,2.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1232,43.690570503000004,-79.400460705,312808.51399999997,4838740.742
-896459,4153744,2017.0,2017.0,1967.0,PRIVATE,12,Toronto-St. Paul's,44 JACKES AVE,24,411,2017-10-23,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,S1238,43.6857858,-79.391174558,313557.781,4838210.101
-896460,4155227,2017.0,2017.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,301 PARK LAWN RD,4,25,2017-10-23,59,Evaluation needs to be conducted in 1 year,18,3.0,2.0,4.0,3.0,3.0,2.0,,3.0,3.0,3.0,3.0,2.0,5.0,3.0,3.0,3.0,4.0,2.0,2.0,,W0329,43.6350512379,-79.49246019479999,305392.658,4832567.215
-896461,4155239,2017.0,2017.0,1953.0,PRIVATE,3,Etobicoke-Lakeshore,317 PARK LAWN RD,4,32,2017-10-23,65,Evaluation needs to be conducted in 1 year,16,3.0,2.0,4.0,3.0,3.0,2.0,,3.0,,,3.0,4.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,,W0329,43.635649636000004,-79.4928351959,305362.392,4832633.691000001
-896462,4153979,2017.0,2017.0,1953.0,PRIVATE,8,Eglinton-Lawrence,675 ROSELAWN AVE,6,52,2017-10-23,53,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,3.0,2.0,5.0,3.0,2.0,3.0,2.0,4.0,3.0,,N0833,43.70502432600001,-79.42582772600001,310762.152,4840344.42
-896463,4250261,2017.0,2017.0,1987.0,SOCIAL HOUSING,4,Parkdale-High Park,1245 KING ST W,3,39,2017-10-23,60,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,2.0,3.0,3.0,,4.0,,,3.0,3.0,5.0,2.0,3.0,3.0,3.0,2.0,3.0,3.0,S0437,43.638488442299995,-79.4287782888,310530.87,4832951.348
-896464,4153743,2017.0,2017.0,1969.0,PRIVATE,11,University-Rosedale,7 JACKES AVE,28,267,2017-10-23,74,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,3.0,4.0,3.0,4.0,3.0,4.0,3.0,3.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,S1121,43.684672948999996,-79.391651748,313519.467,4838086.41
-896465,4153674,2017.0,2017.0,1995.0,SOCIAL HOUSING,19,Beaches-East York,123 COXWELL AVE,3,13,2017-10-23,71,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,,4.0,,4.0,,3.0,3.0,3.0,5.0,4.0,3.0,4.0,,4.0,4.0,3.0,S1937,43.6698161288,-79.3176657334,319488.188,4836445.326
-896466,4155258,2017.0,2017.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,1 CROWN HILL PL,4,33,2017-10-23,71,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,,2.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,W0327,43.6384647272,-79.4918242158,305443.979,4832946.44
-896467,4155260,2017.0,2017.0,1956.0,PRIVATE,3,Etobicoke-Lakeshore,4 CROWN HILL PL,5,32,2017-10-23,73,Evaluation needs to be conducted in 2 years,17,4.0,3.0,3.0,3.0,4.0,4.0,,4.0,4.0,3.0,4.0,4.0,5.0,3.0,4.0,4.0,,3.0,3.0,,W0327,43.6379480963,-79.4907455213,305531.02,4832889.053
-896468,4153984,2017.0,2017.0,1956.0,PRIVATE,8,Eglinton-Lawrence,650 BRIAR HILL AVE,9,85,2017-10-23,75,Evaluation needs to be conducted in 2 years,19,5.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,5.0,3.0,5.0,4.0,5.0,3.0,3.0,4.0,3.0,3.0,3.0,,N0833,43.7083504804,-79.4265525477,310703.673,4840712.912
-896469,4152591,2017.0,2017.0,1976.0,PRIVATE,20,Scarborough Southwest,30 DENTON AVE,22,575,2017-10-23,61,Evaluation needs to be conducted in 1 year,20,4.0,3.0,4.0,2.0,2.0,2.0,3.0,2.0,4.0,2.0,3.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,E2028,43.693978012799995,-79.28769906560001,321897.909,4839135.311000001
-896470,4153587,2017.0,2017.0,1910.0,PRIVATE,13,Toronto Centre,383 SHERBOURNE ST,3,32,2017-10-23,53,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,3.0,2.0,3.0,2.0,2.0,2.0,,3.0,3.0,,S1323,43.663968352,-79.3730104483,315026.123,4835787.409
-896471,4166912,2017.0,2017.0,1910.0,PRIVATE,13,Toronto Centre,387 SHERBOURNE ST,4,44,2017-10-23,56,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,2.0,3.0,2.0,,3.0,,,2.0,2.0,5.0,3.0,2.0,2.0,,3.0,3.0,,S1323,43.664157598100005,-79.3730638878,315021.781,4835808.426
-896472,4154903,2017.0,2017.0,1963.0,PRIVATE,16,Don Valley East,70 PARKWOODS VILLAGE DR,6,65,2017-10-23,64,Evaluation needs to be conducted in 1 year,17,4.0,2.0,4.0,3.0,4.0,4.0,,3.0,2.0,,4.0,4.0,4.0,3.0,3.0,3.0,1.0,3.0,3.0,,N1625,43.7598996821,-79.3227165337,319059.553,4846452.297
-896473,4154914,2017.0,2017.0,1962.0,PRIVATE,16,Don Valley East,77 PARKWOODS VILLAGE DR,6,85,2017-10-23,74,Evaluation needs to be conducted in 2 years,20,5.0,4.0,5.0,3.0,4.0,3.0,3.0,4.0,4.0,3.0,4.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,2.0,N1625,43.7609163108,-79.3224297543,319082.404,4846565.29
-896474,4155265,2017.0,2017.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,9 CROWN HILL PL,5,60,2017-10-23,73,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,3.0,4.0,,4.0,4.0,3.0,4.0,3.0,5.0,3.0,4.0,3.0,4.0,3.0,4.0,,W0327,43.639623358,-79.491058309,305505.524,4833076.116
-896475,4155334,2017.0,2017.0,1954.0,PRIVATE,2,Etobicoke Centre,11 ANGLESEY BLVD,4,39,2017-10-23,59,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,4.0,2.0,3.0,3.0,3.0,3.0,,3.0,3.0,,W0229,43.6647200008,-79.5208076953,303106.196,4835863.495
-896476,4153145,2017.0,2017.0,1932.0,PRIVATE,9,Davenport,10 BEACONSFIELD AVE,4,11,2017-10-23,62,Evaluation needs to be conducted in 1 year,17,4.0,3.0,4.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,1.0,3.0,4.0,3.0,4.0,3.0,3.0,,S0937,43.643432753,-79.4253164727,310809.709,4833500.853
-896477,4156652,2017.0,2017.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,134 BERRY RD,4,22,2017-10-23,74,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,4.0,4.0,2.0,,4.0,,,4.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,W0327,43.6381743577,-79.485853087,,
-896478,4156653,2017.0,2017.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,136 BERRY RD,4,22,2017-10-23,70,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,4.0,4.0,2.0,,3.0,,,4.0,3.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,,W0327,43.638324622700004,-79.4863398937,,
-896479,4155278,2017.0,2017.0,1950.0,PRIVATE,3,Etobicoke-Lakeshore,158 BERRY RD,4,30,2017-10-23,64,Evaluation needs to be conducted in 1 year,17,3.0,2.0,3.0,3.0,3.0,2.0,,4.0,,3.0,3.0,2.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,,W0327,43.6372671432,-79.489657597,305618.818,4832813.412
-896480,4155280,2017.0,2017.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,164 BERRY RD,3,27,2017-10-23,59,Evaluation needs to be conducted in 1 year,17,3.0,2.0,4.0,3.0,3.0,2.0,,3.0,,3.0,3.0,2.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0327,43.636923601199996,-79.4910603874,305505.601,4832775.234
-896481,4153717,2017.0,2017.0,1987.0,SOCIAL HOUSING,19,Beaches-East York,751 WOODBINE AVE,5,97,2017-10-23,67,Evaluation needs to be conducted in 2 years,20,3.0,4.0,4.0,2.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,S1935,43.680524762,-79.3102839398,320080.74600000004,4837636.366
-896482,4155356,2017.0,2017.0,1970.0,PRIVATE,2,Etobicoke Centre,34 DIXINGTON CRES,5,60,2017-10-23,58,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,,W0223,43.696411866000005,-79.541932687,301404.12899999996,4839385.943
-896483,4153785,2017.0,2017.0,1964.0,PRIVATE,12,Toronto-St. Paul's,55 BROWNLOW AVE,15,121,2017-10-23,70,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,4.0,3.0,,3.0,3.0,3.0,4.0,3.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,,S1228,43.7066788107,-79.3906195508,313599.755,4840530.4180000005
-896484,4154909,2017.0,2017.0,1962.0,PRIVATE,16,Don Valley East,67 PARKWOODS VILLAGE DR,7,78,2017-10-23,62,Evaluation needs to be conducted in 1 year,19,4.0,2.0,3.0,4.0,4.0,3.0,2.0,4.0,2.0,2.0,3.0,4.0,5.0,3.0,3.0,3.0,1.0,3.0,4.0,,N1625,43.7604077056,-79.32114983470001,319185.587,4846509.004
-896485,4154657,2017.0,2017.0,1970.0,PRIVATE,8,Eglinton-Lawrence,3171 BATHURST ST,6,47,2017-10-23,56,Evaluation needs to be conducted in 1 year,19,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,2.0,5.0,2.0,3.0,2.0,2.0,2.0,2.0,,N0824,43.7220957338,-79.430056845,310419.984,4842239.683
-896486,4154662,2017.0,2017.0,1965.0,PRIVATE,8,Eglinton-Lawrence,3311 BATHURST ST,9,102,2017-10-23,62,Evaluation needs to be conducted in 1 year,18,4.0,3.0,4.0,4.0,3.0,3.0,3.0,1.0,2.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0824,43.7246901673,-79.43042978310001,310389.702,4842527.8889999995
-896487,4153975,2017.0,2017.0,1965.0,PRIVATE,8,Eglinton-Lawrence,2525 BATHURST ST,4,33,2017-10-23,54,Evaluation needs to be conducted in 1 year,17,3.0,2.0,3.0,2.0,4.0,2.0,,3.0,3.0,,3.0,3.0,3.0,2.0,3.0,2.0,2.0,3.0,3.0,,N0833,43.706021159799995,-79.4261065793,310739.843,4840454.188999999
-896488,4153237,2017.0,2017.0,1965.0,PRIVATE,11,University-Rosedale,276 ST GEORGE ST,9,88,2017-10-23,61,Evaluation needs to be conducted in 1 year,20,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,5.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,S1127,43.6735780658,-79.4030693901,312600.601,4836851.692
-896489,4153236,2017.0,2017.0,1967.0,PRIVATE,11,University-Rosedale,280 ST GEORGE ST,15,85,2017-10-23,65,Evaluation needs to be conducted in 1 year,19,4.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,2.0,,S1127,43.673984446000006,-79.4033081754,312581.298,4836896.819
-896490,4156359,2017.0,2017.0,1960.0,PRIVATE,5,York South-Weston,2099 LAWRENCE AVE W,16,121,2017-10-20,68,Evaluation needs to be conducted in 2 years,19,4.0,3.0,3.0,2.0,3.0,3.0,4.0,3.0,4.0,,2.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,W0527,43.69945409899999,-79.517762353,303330.156,4839728.712
-896491,4154823,2017.0,2017.0,1971.0,PRIVATE,17,Don Valley North,2600 DON MILLS RD,19,226,2017-10-20,59,Evaluation needs to be conducted in 1 year,18,4.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,,2.0,3.0,2.0,3.0,3.0,3.0,2.0,2.0,2.0,,N1727,43.7762509604,-79.34860618260001,316971.632,4848264.765
-896492,4156358,2017.0,2017.0,1960.0,PRIVATE,5,York South-Weston,2089 LAWRENCE AVE W,16,121,2017-10-20,66,Evaluation needs to be conducted in 2 years,19,3.0,3.0,3.0,2.0,3.0,3.0,4.0,3.0,3.0,,3.0,4.0,5.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,W0527,43.699266335,-79.51717541100001,303375.42,4839743.518999999
-896493,4156449,2017.0,2017.0,1920.0,PRIVATE,11,University-Rosedale,245 C HOWLAND AVE,3,25,2017-10-19,69,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,4.0,5.0,3.0,4.0,4.0,,3.0,4.0,,S1126,43.672928934,-79.411230102,311942.359,4836779.813999999
-896494,4154365,2017.0,2017.0,1955.0,PRIVATE,6,York Centre,831 WILSON AVE,3,11,2017-10-19,63,Evaluation needs to be conducted in 1 year,16,3.0,2.0,3.0,3.0,2.0,3.0,,4.0,,3.0,2.0,3.0,5.0,4.0,3.0,3.0,,4.0,3.0,,N0632,43.731246207,-79.4630449202,307761.609,4843254.517
-896495,4153705,2017.0,2017.0,1989.0,SOCIAL HOUSING,19,Beaches-East York,11 COATSWORTH CRES,6,174,2017-10-19,74,Evaluation needs to be conducted in 2 years,19,3.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,4.0,,4.0,3.0,5.0,4.0,3.0,4.0,3.0,5.0,4.0,4.0,S1931,43.678997338,-79.32113629199999,319209.196,4837481.659
-896496,4152909,2017.0,2017.0,1930.0,PRIVATE,4,Parkdale-High Park,2001 BLOOR ST W,4,60,2017-10-19,70,Evaluation needs to be conducted in 2 years,16,4.0,3.0,3.0,3.0,,3.0,,4.0,3.0,,3.0,3.0,5.0,3.0,4.0,4.0,3.0,3.0,5.0,,S0431,43.651822183,-79.47144373100001,307087.937,4834430.705
-896497,4242011,2017.0,2017.0,1963.0,PRIVATE,11,University-Rosedale,131 BLOOR ST W,14,157,2017-10-19,70,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,3.0,,2.0,3.0,2.0,3.0,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,2.0,,S1136,43.668762012799995,-79.3923975104,313461.835,4836317.74
-896498,4154816,2017.0,2017.0,1972.0,PRIVATE,17,Don Valley North,60 CLIPPER RD,14,206,2017-10-19,69,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,3.0,3.0,3.0,4.0,4.0,3.0,,3.0,2.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,4.0,N1728,43.7874657527,-79.331069436,318380.816,4849513.425
-896499,4154815,2017.0,2017.0,1970.0,PRIVATE,17,Don Valley North,70 CLIPPER RD,14,206,2017-10-19,75,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,,3.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,N1728,43.7880141404,-79.3320111395,318304.901,4849574.193
-896500,4156319,2017.0,2017.0,1979.0,PRIVATE,25,Scarborough-Rouge Park,250 BRENYON WAY,21,208,2017-10-19,82,Evaluation needs to be conducted in 2 years,19,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,E2524,,,327869.235,4851587.699
-896501,4155742,2017.0,2017.0,2008.0,PRIVATE,5,York South-Weston,333 SIDNEY BELSEY CRES,12,264,2017-10-19,71,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,4.0,,3.0,3.0,3.0,4.0,4.0,4.0,,4.0,3.0,4.0,W0531,43.691326105,-79.50858748,304091.899,4838820.039
-896502,4156076,2017.0,2017.0,1979.0,PRIVATE,23,Scarborough North,1580 SANDHURST CRCL,20,238,2017-10-19,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,3.0,5.0,4.0,,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,E2322,43.807671203999995,-79.271262134,323198.048,4851844.093
-896503,4156342,2017.0,2017.0,1979.0,PRIVATE,23,Scarborough North,1600 SANDHURST CRCL,20,238,2017-10-19,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,3.0,,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,E2322,43.807552003000005,-79.272681054,323231.122,4851727.6389999995
-896504,4155263,2017.0,2017.0,1958.0,PRIVATE,3,Etobicoke-Lakeshore,7 CROWN HILL PL,4,35,2017-10-19,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,4.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0327,43.6386262832,-79.4911761302,305496.279,4832964.393
-896505,4156401,2017.0,2017.0,1953.0,PRIVATE,3,Etobicoke-Lakeshore,10 CROWN HILL PL,5,26,2017-10-19,53,Evaluation needs to be conducted in 1 year,15,2.0,3.0,3.0,2.0,,2.0,,3.0,,,2.0,2.0,4.0,3.0,3.0,2.0,3.0,3.0,3.0,,W0327,43.639476269,-79.491647816,305457.959,4833059.771000001
-896506,4154637,2017.0,2017.0,1960.0,PRIVATE,6,York Centre,118 OVERBROOK PL,3,17,2017-10-19,64,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,4.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,,N0624,43.7635291966,-79.4550418011,308404.48,4846841.319
-896507,4154615,2017.0,2017.0,1950.0,PRIVATE,6,York Centre,229 PANNAHILL RD,3,12,2017-10-19,65,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,4.0,3.0,3.0,3.0,,N0624,43.7603575234,-79.4631757419,307749.723,4846488.654
-896508,4154972,2017.0,2017.0,1930.0,PRIVATE,12,Toronto-St. Paul's,210 WYCHWOOD AVE,4,40,2017-10-19,76,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,,,4.0,4.0,5.0,3.0,3.0,3.0,,4.0,4.0,,S1229,43.68442968310001,-79.4244100118,310882.965,4838047.6
-896509,4153176,2017.0,2017.0,1972.0,SOCIAL HOUSING,11,University-Rosedale,14 SPADINA RD,6,103,2017-10-19,67,Evaluation needs to be conducted in 2 years,19,3.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,4.0,,4.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,S1126,43.6678434794,-79.4049570473,312449.082,4836214.442
-896510,4152996,2017.0,2017.0,1955.0,PRIVATE,4,Parkdale-High Park,99 DOWLING AVE,5,111,2017-10-19,74,Evaluation needs to be conducted in 2 years,17,5.0,3.0,3.0,3.0,5.0,4.0,,3.0,3.0,,3.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,,S0437,43.6357677908,-79.43779799970001,309803.351,4832648.561000001
-896511,4153517,2017.0,2017.0,1981.0,PRIVATE,11,University-Rosedale,55 CHARLES ST W,32,147,2017-10-19,76,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,,4.0,3.0,4.0,4.0,,4.0,3.0,5.0,3.0,4.0,4.0,,4.0,3.0,,S1136,43.66768493520001,-79.3890195894,313734.416,4836198.46
-896512,4153875,2017.0,2017.0,1969.0,PRIVATE,12,Toronto-St. Paul's,40 DELISLE AVE,10,100,2017-10-19,76,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,4.0,2.0,,3.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1232,43.6889903412,-79.3967288082,313109.822,4838564.588
-896513,4154831,2017.0,2017.0,1968.0,PRIVATE,17,Don Valley North,2775 DON MILLS RD,14,170,2017-10-19,70,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,2.0,3.0,3.0,3.0,4.0,3.0,,3.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N1727,43.779757915299996,-79.3477938007,317036.328,4848654.491
-896514,4155838,2017.0,2017.0,1960.0,PRIVATE,17,Don Valley North,2960 DON MILLS RD W,16,171,2017-10-19,68,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,2.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,N1727,43.781329305,-79.35268326399999,316667.205,4848830.4969999995
-896515,4155839,2017.0,2017.0,1970.0,PRIVATE,17,Don Valley North,2980 DON MILLS RD W,16,168,2017-10-19,69,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,,3.0,3.0,5.0,2.0,4.0,4.0,3.0,2.0,3.0,,N1727,43.78227098399999,-79.352924184,316646.953,4848936.864
-896516,4156115,2017.0,2017.0,1953.0,PRIVATE,3,Etobicoke-Lakeshore,11 CROWN HILL PL,5,26,2017-10-19,52,Evaluation needs to be conducted in 1 year,15,2.0,3.0,3.0,2.0,,2.0,,3.0,,,2.0,2.0,4.0,3.0,2.0,2.0,3.0,3.0,3.0,,W0327,43.639636427,-79.491738294,305450.658,4833077.563
-896517,4155858,2017.0,2017.0,1905.0,PRIVATE,11,University-Rosedale,41 SPADINA RD,4,24,2017-10-19,58,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,2.0,3.0,2.0,4.0,3.0,3.0,3.0,2.0,3.0,3.0,,S1127,43.6688434904,-79.4042769908,312503.8,4836325.6
-896518,4152960,2017.0,2017.0,1939.0,PRIVATE,4,Parkdale-High Park,59 SPENCER AVE,3,19,2017-10-19,61,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,,2.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,4.0,,3.0,3.0,,S0437,43.636297355,-79.429583628,310465.827,4832708.835
-896519,4152950,2017.0,2017.0,1962.0,PRIVATE,4,Parkdale-High Park,1 SPRINGHURST AVE,5,41,2017-10-19,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,4.0,2.0,,4.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S0437,43.6346126017,-79.4260955967,310747.684,4832520.944
-896520,4153338,2017.0,2017.0,1987.0,SOCIAL HOUSING,12,Toronto-St. Paul's,11 WINONA DR,7,150,2017-10-19,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,S1234,43.67547653729999,-79.4301431233,310417.24,4837060.459
-896521,4153537,2017.0,2017.0,1965.0,PRIVATE,13,Toronto Centre,25 ST MARY ST,25,260,2017-10-19,66,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,3.0,,3.0,3.0,4.0,4.0,,3.0,4.0,2.0,3.0,3.0,4.0,3.0,3.0,3.0,,S1321,43.6673389354,-79.3871538262,313884.939,4836160.227
-896522,4155131,2017.0,2017.0,1968.0,PRIVATE,5,York South-Weston,55 EMMETT AVE,23,267,2017-10-19,71,Evaluation needs to be conducted in 2 years,19,4.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,4.0,,3.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,W0531,43.688645209300006,-79.5034322952,304507.717,4838521.209
-896523,4171461,2017.0,2017.0,1970.0,PRIVATE,15,Don Valley West,88 ERSKINE AVE,27,491,2017-10-19,75,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,N1526,,,313175.228,4841121.864
-896524,4154244,2017.0,2017.0,1959.0,PRIVATE,7,Humber River-Black Creek,2433 FINCH AVE W,6,117,2017-10-19,75,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,,3.0,4.0,5.0,3.0,4.0,3.0,,4.0,4.0,,W0727,43.749436556000006,-79.548159932,300917.135,4845264.927
-896525,4155457,2017.0,2017.0,1969.0,PRIVATE,1,Etobicoke North,10 GARFELLA DR,7,143,2017-10-19,54,Evaluation needs to be conducted in 1 year,17,2.0,2.0,3.0,2.0,4.0,3.0,,2.0,2.0,,2.0,3.0,5.0,3.0,2.0,3.0,2.0,4.0,2.0,,W0123,43.7453896515,-79.59312182939999,297284.473,4844829.467
-896526,4156414,2017.0,2017.0,1983.0,SOCIAL HOUSING,6,York Centre,623 FINCH AVE W,12,141,2017-10-19,66,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,4.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0624,43.770916893,-79.45390216,308484.808,4847722.837
-896527,4156200,2017.0,2017.0,1987.0,SOCIAL HOUSING,6,York Centre,625 FINCH AVE W,14,123,2017-10-19,69,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,,3.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0624,,,308349.30199999997,4847683.871
-896528,4154619,2017.0,2017.0,1964.0,PRIVATE,6,York Centre,707-711 FINCH AVE W,7,150,2017-10-19,60,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,N0624,,,307885.74100000004,4847532.728999999
-896529,4242360,2017.0,2017.0,2016.0,PRIVATE,9,Davenport,1544 DUNDAS ST W,8,95,2017-10-19,93,Evaluation needs to be conducted in 3 years,17,5.0,5.0,4.0,4.0,,5.0,5.0,4.0,5.0,,5.0,4.0,5.0,5.0,4.0,4.0,,5.0,5.0,5.0,S0933,43.650010077,-79.433231873,310163.17699999997,4834237.074
-896530,4153920,2017.0,2017.0,1930.0,PRIVATE,12,Toronto-St. Paul's,80 LAWTON BLVD,3,24,2017-10-19,74,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,4.0,4.0,3.0,,4.0,,3.0,4.0,4.0,5.0,5.0,4.0,4.0,,3.0,3.0,,S1232,43.692690453400004,-79.3968224321,313101.766,4838975.6680000005
-896531,4153921,2017.0,2017.0,1955.0,PRIVATE,12,Toronto-St. Paul's,134 LAWTON BLVD,4,42,2017-10-19,74,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,4.0,3.0,3.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,3.0,3.0,3.0,,S1232,43.694344245500005,-79.3975635175,313041.791,4839159.337
-896532,4154345,2017.0,2017.0,1963.0,PRIVATE,5,York South-Weston,1550 LAWRENCE AVE W,7,96,2017-10-19,52,Evaluation needs to be conducted in 1 year,19,2.0,2.0,3.0,2.0,2.0,3.0,2.0,2.0,3.0,2.0,2.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,2.0,,W0526,43.707214984,-79.486164406,305899.26399999997,4840585.216
-896533,4155503,2017.0,2017.0,1950.0,PRIVATE,3,Etobicoke-Lakeshore,2515 LAKE SHORE BLVD W,4,30,2017-10-19,56,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,3.0,2.0,3.0,3.0,3.0,2.0,,3.0,3.0,,W0336,43.6115410495,-79.489468582,305634.407,4829955.385
-896534,4155236,2017.0,2017.0,1956.0,PRIVATE,3,Etobicoke-Lakeshore,2 NEWHOLM RD,4,51,2017-10-19,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,2.0,3.0,3.0,,4.0,,,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0329,43.6360380172,-79.48840230260001,305720.128,4832676.874
-896535,4155234,2017.0,2017.0,1947.0,PRIVATE,3,Etobicoke-Lakeshore,3 NEWHOLM RD,4,25,2017-10-19,65,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0329,43.6360787547,-79.48763013840001,305782.438,4832681.407
-896536,4155237,2017.0,2017.0,1958.0,PRIVATE,3,Etobicoke-Lakeshore,8 NEWHOLM RD,4,26,2017-10-19,55,Evaluation needs to be conducted in 1 year,16,3.0,3.0,2.0,2.0,3.0,2.0,,3.0,,,2.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,2.0,,W0329,43.635482222700006,-79.4882224103,305734.649,4832615.13
-896537,4155488,2017.0,2017.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,2532 LAKE SHORE BLVD W,4,46,2017-10-19,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,4.0,2.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0336,43.6109821847,-79.4903809388,305560.767,4829893.29
-896538,4153508,2017.0,2017.0,1968.0,PRIVATE,13,Toronto Centre,100 WELLESLEY ST E,28,427,2017-10-19,65,Evaluation needs to be conducted in 1 year,17,4.0,3.0,4.0,3.0,,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,,S1322,43.6665543282,-79.3792025495,314526.32,4836073.948
-896539,4154410,2017.0,2017.0,1965.0,PRIVATE,6,York Centre,1130 WILSON AVE,11,118,2017-10-19,72,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,3.0,2.0,3.0,5.0,4.0,3.0,4.0,3.0,4.0,3.0,,N0627,43.726439972799994,-79.48492026439999,305999.418,4842720.033
-896540,4154346,2017.0,2017.0,1962.0,PRIVATE,5,York South-Weston,1560 LAWRENCE AVE W,6,90,2017-10-19,53,Evaluation needs to be conducted in 1 year,19,3.0,2.0,3.0,2.0,2.0,3.0,2.0,3.0,3.0,3.0,2.0,2.0,5.0,2.0,3.0,2.0,4.0,2.0,2.0,,W0526,43.706628986000005,-79.487496518,305791.914,4840520.101
-896541,4154342,2017.0,2017.0,1960.0,PRIVATE,5,York South-Weston,1570 LAWRENCE AVE W,6,87,2017-10-19,61,Evaluation needs to be conducted in 1 year,20,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,W0526,43.7066390346,-79.48837900390001,305721.05600000004,4840520.254
-896542,4154340,2017.0,2017.0,1994.0,SOCIAL HOUSING,5,York South-Weston,1630 LAWRENCE AVE W,8,100,2017-10-19,58,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,2.0,3.0,3.0,3.0,2.0,3.0,,3.0,3.0,5.0,3.0,2.0,3.0,,3.0,2.0,,W0526,43.706166975900004,-79.4914250122,305475.57300000003,4840467.787
-896543,4153597,2017.0,2017.0,1923.0,PRIVATE,13,Toronto Centre,214 WELLESLEY ST E,3,38,2017-10-19,79,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,3.0,4.0,3.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,5.0,3.0,,S1323,43.6677644838,-79.3730310131,315023.82,4836209.126
-896544,4240826,2017.0,2017.0,1968.0,PRIVATE,13,Toronto Centre,240 WELLESLEY ST E,29,554,2017-10-19,66,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,2.0,3.0,2.0,4.0,3.0,,3.0,3.0,5.0,3.0,3.0,4.0,4.0,4.0,3.0,,S1323,43.6680679061,-79.3717553706,315147.721,4836236.53
-896545,4240827,2017.0,2017.0,1968.0,PRIVATE,13,Toronto Centre,260 WELLESLEY ST E,32,565,2017-10-19,63,Evaluation needs to be conducted in 1 year,18,3.0,4.0,4.0,3.0,2.0,4.0,2.0,3.0,2.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,3.0,,S1323,43.669078059700006,-79.3717210615,315129.23,4836355.231000001
-896546,4155952,2017.0,2017.0,1969.0,PRIVATE,13,Toronto Centre,280 WELLESLEY ST E,32,571,2017-10-19,66,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,4.0,5.0,3.0,2.0,3.0,4.0,3.0,2.0,,S1323,43.6684263291,-79.3704468759,315261.028,4836267.257
-896547,4155436,2017.0,2017.0,1960.0,PRIVATE,1,Etobicoke North,15 TORBOLTON DR,3,19,2017-10-19,70,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,4.0,3.0,5.0,5.0,4.0,3.0,4.0,5.0,3.0,,W0130,43.718916640299994,-79.5582979655,300087.068,4841885.912
-896548,4155126,2017.0,2017.0,1957.0,PRIVATE,5,York South-Weston,1306 WESTON RD,3,11,2017-10-19,54,Evaluation needs to be conducted in 1 year,14,2.0,3.0,1.0,3.0,,3.0,,3.0,,,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,3.0,,W0531,43.6894309704,-79.49695331470001,305030.032,4838608.475
-896549,4154985,2017.0,2017.0,1920.0,PRIVATE,12,Toronto-St. Paul's,172 VAUGHAN RD,3,24,2017-10-19,74,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,3.0,3.0,3.0,,4.0,,3.0,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S1229,43.6862874018,-79.4225082434,311031.811,4838262.062
-896550,4154982,2017.0,2017.0,1955.0,PRIVATE,12,Toronto-St. Paul's,214 VAUGHAN RD,6,31,2017-10-19,64,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,2.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,4.0,,S1229,43.6873436223,-79.4236433658,310940.19399999996,4838379.329
-896551,4153726,2017.0,2017.0,1992.0,SOCIAL HOUSING,19,Beaches-East York,20 TRENT AVE,8,111,2017-10-19,80,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,S1933,43.688688452,-79.296041897,321226.558,4838546.955
-896552,4153977,2017.0,2017.0,1988.0,SOCIAL HOUSING,8,Eglinton-Lawrence,668 ROSELAWN AVE,9,125,2017-10-19,81,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,4.0,5.0,5.0,4.0,3.0,4.0,4.0,5.0,4.0,5.0,4.0,4.0,3.0,3.0,3.0,4.0,5.0,N0833,43.705765956,-79.424733085,310850.299,4840426.886
-896553,4153158,2017.0,2017.0,1905.0,PRIVATE,9,Davenport,1 HAVELOCK ST,3,18,2017-10-18,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,3.0,,3.0,,3.0,,,3.0,3.0,5.0,4.0,3.0,3.0,3.0,3.0,3.0,,S0934,43.6531913676,-79.42927202199999,310489.665,4834584.737
-896554,4154421,2017.0,2017.0,1955.0,PRIVATE,6,York Centre,2866 KEELE ST,3,11,2017-10-18,67,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,N0627,43.732336324799995,-79.4838831599,306082.872,4843375.108
-896555,4154419,2017.0,2017.0,1950.0,PRIVATE,6,York Centre,2880 KEELE ST,3,11,2017-10-18,69,Evaluation needs to be conducted in 2 years,16,3.0,4.0,3.0,3.0,3.0,4.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,4.0,,4.0,4.0,,N0627,43.7330831623,-79.4839523321,306088.5,4843477.583000001
-896556,4155753,2017.0,2017.0,1992.0,PRIVATE,11,University-Rosedale,336 CLINTON ST,3,17,2017-10-18,67,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,,3.0,3.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,,S1133,43.6627487004,-79.4174033542,311445.983,4835647.429
-896557,4155662,2017.0,2017.0,1971.0,PRIVATE,4,Parkdale-High Park,22 CLOSE AVE,23,293,2017-10-18,69,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,2.0,4.0,3.0,3.0,3.0,4.0,,3.0,3.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,,S0437,43.6344400002,-79.4339017768,310117.834,4832501.284
-896558,4233268,2017.0,2017.0,1951.0,PRIVATE,12,Toronto-St. Paul's,871 AVENUE RD,3,10,2017-10-18,68,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,S1227,43.699066984,-79.4058203443,312375.626,4839683.241
-896559,4154213,2017.0,2017.0,1950.0,PRIVATE,7,Humber River-Black Creek,1742 WILSON AVE,3,10,2017-10-18,51,Evaluation needs to be conducted in 1 year,16,2.0,2.0,2.0,2.0,3.0,3.0,,3.0,,,3.0,2.0,3.0,3.0,2.0,2.0,3.0,4.0,2.0,,W0734,43.71990129,-79.5147268403,303597.907,4841993.67
-896560,4154214,2017.0,2017.0,1950.0,PRIVATE,7,Humber River-Black Creek,1744 WILSON AVE,3,10,2017-10-18,53,Evaluation needs to be conducted in 1 year,16,2.0,2.0,2.0,2.0,3.0,3.0,,3.0,,,3.0,2.0,4.0,4.0,2.0,2.0,3.0,3.0,2.0,,W0734,43.7198292201,-79.5150038908,303575.583,4841985.6680000005
-896561,4153467,2017.0,2017.0,1971.0,PRIVATE,11,University-Rosedale,666 SPADINA AVE,24,334,2017-10-18,63,Evaluation needs to be conducted in 1 year,19,4.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,2.0,3.0,2.0,2.0,,S1134,43.663994341999995,-79.40305137600001,312602.99199999997,4835787.955
-896562,4153144,2017.0,2017.0,1994.0,SOCIAL HOUSING,10,Spadina-Fort York,138 CLAREMONT ST,3,18,2017-10-18,58,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,3.0,3.0,3.0,2.0,2.0,3.0,3.0,,S1022,43.6499453573,-79.411506674,311923.107,4834225.424
-896563,4153982,2017.0,2017.0,1961.0,PRIVATE,8,Eglinton-Lawrence,515 CHAPLIN CRES,8,111,2017-10-18,62,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,4.0,2.0,4.0,3.0,3.0,3.0,4.0,5.0,2.0,3.0,3.0,2.0,4.0,2.0,,N0833,43.704952062,-79.424249279,310889.372,4840336.498
-896564,4153981,2017.0,2017.0,1961.0,PRIVATE,8,Eglinton-Lawrence,525 CHAPLIN CRES,8,110,2017-10-18,62,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,3.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,5.0,2.0,2.0,2.0,2.0,4.0,3.0,,N0833,43.705350718000005,-79.42454329899999,310865.636,4840380.768
-896565,4156399,2017.0,2017.0,1968.0,PRIVATE,16,Don Valley East,5 BROOKBANKS DR,15,124,2017-10-18,73,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,3.0,5.0,2.0,3.0,3.0,4.0,3.0,3.0,4.0,N1625,43.75125271,-79.332754959,318204.842,4845556.916
-896566,4156386,2017.0,2017.0,1967.0,PRIVATE,16,Don Valley East,15 BROOKBANKS DR,20,148,2017-10-18,75,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,,3.0,3.0,5.0,2.0,4.0,4.0,4.0,4.0,4.0,4.0,N1625,43.751731400000004,-79.331966044,318300.445,4845575.868
-896567,4154622,2017.0,2017.0,1964.0,PRIVATE,6,York Centre,5950 BATHURST ST,12,133,2017-10-18,60,Evaluation needs to be conducted in 1 year,19,4.0,3.0,4.0,3.0,3.0,4.0,2.0,2.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,N0622,43.7833167719,-79.4460923651,309123.62899999996,4849040.079
-896568,4154947,2017.0,2017.0,1926.0,PRIVATE,12,Toronto-St. Paul's,1570 BATHURST ST,4,36,2017-10-18,73,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,3.0,4.0,,4.0,,3.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,2.0,,S1229,43.6859949954,-79.4198611438,311245.255,4838229.772
-896569,4156362,2017.0,2017.0,1950.0,PRIVATE,12,Toronto-St. Paul's,1582 BATHURST ST,3,33,2017-10-18,68,Evaluation needs to be conducted in 2 years,15,4.0,3.0,3.0,3.0,3.0,4.0,,3.0,,,3.0,4.0,4.0,3.0,3.0,3.0,,4.0,4.0,,S1229,43.6866154943,-79.4200162678,311232.685,4838298.699
-896570,4154926,2017.0,2017.0,1964.0,PRIVATE,16,Don Valley East,1216 YORK MILLS RD,8,65,2017-10-18,64,Evaluation needs to be conducted in 1 year,18,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,3.0,3.0,4.0,3.0,2.0,4.0,3.0,3.0,,N1622,43.760177983599995,-79.33256408140001,318266.564,4846481.585
-896571,4154924,2017.0,2017.0,1963.0,PRIVATE,16,Don Valley East,1230 YORK MILLS RD,4,38,2017-10-18,66,Evaluation needs to be conducted in 2 years,17,4.0,3.0,3.0,3.0,3.0,3.0,,4.0,4.0,,4.0,3.0,5.0,2.0,3.0,3.0,3.0,3.0,3.0,,N1622,43.7603691102,-79.3311358392,318381.521,4846503.05
-896572,4154919,2017.0,2017.0,1970.0,PRIVATE,16,Don Valley East,1274 YORK MILLS RD,7,73,2017-10-18,56,Evaluation needs to be conducted in 1 year,18,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,2.0,3.0,5.0,3.0,1.0,2.0,3.0,3.0,2.0,,N1622,43.761353758199995,-79.3264582333,318757.929,4846613.211
-896573,4154623,2017.0,2017.0,1960.0,PRIVATE,6,York Centre,155 ANTIBES DR,17,259,2017-10-18,64,Evaluation needs to be conducted in 1 year,19,4.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,2.0,5.0,3.0,4.0,3.0,1.0,3.0,3.0,3.0,N0622,43.78208918560001,-79.4459161033,309137.897,4848903.701
-896574,4156627,2017.0,2017.0,1964.0,PRIVATE,16,Don Valley East,30 ST DENNIS DR,4,56,2017-10-18,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,,3.0,4.0,5.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,N1630,43.718750711999995,-79.33100323800001,,
-896575,4156610,2017.0,2017.0,1964.0,PRIVATE,16,Don Valley East,32 ST DENNIS DR,4,56,2017-10-18,73,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,4.0,,3.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,,N1630,43.7190096,-79.330401851,,
-896576,4156640,2017.0,2017.0,1964.0,PRIVATE,16,Don Valley East,34 ST DENNIS DR,4,56,2017-10-18,72,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,4.0,,3.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,,N1630,43.719032696999996,-79.329817672,,
-896577,4153995,2017.0,2017.0,1948.0,PRIVATE,12,Toronto-St. Paul's,869 AVENUE RD,3,10,2017-10-18,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,,S1227,43.6989299659,-79.4057564646,312380.792,4839668.024
-896578,4154832,2017.0,2017.0,1965.0,PRIVATE,17,Don Valley North,40 GODSTONE RD,16,176,2017-10-18,62,Evaluation needs to be conducted in 1 year,19,3.0,4.0,3.0,2.0,3.0,3.0,2.0,3.0,3.0,,3.0,2.0,4.0,3.0,3.0,4.0,4.0,3.0,4.0,3.0,N1727,43.7822996863,-79.3478742316,317029.336,4848936.868
-896579,4153950,2017.0,2017.0,1960.0,PRIVATE,8,Eglinton-Lawrence,570 EGLINTON AVE W,3,11,2017-10-18,58,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,2.0,2.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,,N0833,43.7031059337,-79.41690306310001,311481.91,4840131.013
-896580,4152735,2017.0,2017.0,1976.0,PRIVATE,21,Scarborough Centre,1181 ELLESMERE RD,4,32,2017-10-18,56,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,2.0,2.0,3.0,2.0,5.0,3.0,3.0,3.0,1.0,3.0,3.0,,E2129,43.767770540600004,-79.2692020399,323366.141,4847337.315
-896581,4154617,2017.0,2017.0,1959.0,PRIVATE,6,York Centre,81 GARTHDALE CRT,3,10,2017-10-18,68,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,4.0,3.0,4.0,5.0,4.0,3.0,3.0,3.0,4.0,3.0,,N0624,43.7648967345,-79.4644796149,307644.521,4846992.893
-896582,4155299,2017.0,2017.0,1968.0,PRIVATE,3,Etobicoke-Lakeshore,4875 DUNDAS ST W,10,56,2017-10-18,59,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,2.0,4.0,2.0,3.0,3.0,3.0,3.0,3.0,,W0321,43.649546925299994,-79.5275324793,302563.23,4834178.034
-896583,4154534,2017.0,2017.0,1974.0,PRIVATE,8,Eglinton-Lawrence,125 NEPTUNE DR,15,171,2017-10-18,60,Evaluation needs to be conducted in 1 year,20,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,2.0,2.0,N0823,43.730876999399996,-79.4396616962,309645.392,4843214.6219999995
-896584,4156131,2017.0,2017.0,1966.0,PRIVATE,17,Don Valley North,24 LEITH HILL RD,16,224,2017-10-18,71,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,3.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,N1727,43.777179623,-79.349923805,316922.679,4848356.009
-896585,4155751,2017.0,2017.0,1969.0,PRIVATE,5,York South-Weston,1465 LAWRENCE AVE W,20,161,2017-10-18,58,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,,W0529,43.7073903147,-79.4803989264,306364.173,4840603.819
-896586,4154650,2017.0,2017.0,1960.0,SOCIAL HOUSING,6,York Centre,2 MASCOT PL,7,71,2017-10-18,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0624,43.77062612100001,-79.4430060105,309372.998,4847630.355
-896587,4153099,2017.0,2017.0,1985.0,PRIVATE,9,Davenport,685 LANSDOWNE AVE,3,30,2017-10-18,51,Evaluation needs to be conducted in 1 year,14,2.0,2.0,3.0,1.0,,3.0,,3.0,,,2.0,3.0,4.0,2.0,3.0,3.0,,2.0,3.0,,S0930,43.65900140350001,-79.442459426,309425.457,4835229.411
-896588,4233307,2017.0,2017.0,1986.0,SOCIAL HOUSING,12,Toronto-St. Paul's,31 TICHESTER RD,15,174,2017-10-18,81,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,S1230,43.6853017026,-79.418858111,311326.19399999996,4838152.823
-896589,4155035,2017.0,2017.0,1955.0,PRIVATE,12,Toronto-St. Paul's,641 VAUGHAN RD,4,45,2017-10-18,65,Evaluation needs to be conducted in 1 year,15,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,4.0,3.0,4.0,3.0,4.0,,3.0,2.0,,S1222,43.693235288800004,-79.4417901487,309476.779,4839032.662
-896590,4226941,2017.0,2017.0,1993.0,SOCIAL HOUSING,3,Etobicoke-Lakeshore,781 THE QUEENSWAY,3,66,2017-10-18,71,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,4.0,,4.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,W0326,43.625447236599996,-79.5057604061,304305.57899999997,4831500.433999999
-896591,4154461,2017.0,2017.0,1967.0,PRIVATE,6,York Centre,3444 KEELE ST,9,61,2017-10-18,72,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,3.0,4.0,4.0,3.0,4.0,3.0,,3.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,2.0,,N0625,43.75021348640001,-79.48822665600001,305732.756,4845361.107
-896592,4155434,2017.0,2017.0,1950.0,PRIVATE,1,Etobicoke North,14 TORBOLTON DR,3,16,2017-10-18,61,Evaluation needs to be conducted in 1 year,16,2.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,2.0,3.0,5.0,3.0,3.0,3.0,5.0,3.0,3.0,,W0130,43.718690395100005,-79.55908041970001,300024.003,4841860.823
-896593,4155432,2017.0,2017.0,1960.0,PRIVATE,1,Etobicoke North,30 TORBOLTON DR,3,16,2017-10-18,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,3.0,2.0,,4.0,,,3.0,3.0,5.0,4.0,4.0,3.0,,4.0,3.0,,W0130,43.719534683199996,-79.5587174372,300053.318,4841954.598999999
-896594,4153598,2017.0,2017.0,1969.0,PRIVATE,13,Toronto Centre,77 HOWARD ST,24,381,2017-10-18,67,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,4.0,5.0,4.0,3.0,3.0,3.0,3.0,3.0,,S1323,43.6708658247,-79.3728064407,315041.394,4836553.713
-896595,4155256,2017.0,2017.0,1962.0,PRIVATE,3,Etobicoke-Lakeshore,3 HILL HEIGHTS RD,4,38,2017-10-18,53,Evaluation needs to be conducted in 1 year,16,3.0,2.0,3.0,2.0,,3.0,,3.0,,3.0,2.0,2.0,3.0,3.0,3.0,2.0,3.0,3.0,2.0,,W0327,43.638204565900004,-79.49316808350001,305335.532,4832917.528
-896596,4153456,2017.0,2017.0,1929.0,PRIVATE,13,Toronto Centre,262 JARVIS ST,6,72,2017-10-18,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,4.0,,3.0,,3.0,4.0,,3.0,4.0,5.0,3.0,4.0,3.0,,3.0,3.0,,S1328,43.6596564148,-79.3760533854,314781.42600000004,4835308.004
-896597,4155269,2017.0,2017.0,1964.0,PRIVATE,3,Etobicoke-Lakeshore,6 HILL HEIGHTS RD,4,30,2017-10-18,59,Evaluation needs to be conducted in 1 year,16,2.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0327,43.6390231144,-79.4931494721,305337.05600000004,4833008.466
-896598,4155267,2017.0,2017.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,10 HILL HEIGHTS RD,4,34,2017-10-18,59,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0327,43.639073561000004,-79.4920727048,305423.94,4833014.077
-896599,4155815,2017.0,2017.0,1958.0,PRIVATE,12,Toronto-St. Paul's,208 VAUGHAN RD <>,4,25,2017-10-18,69,Evaluation needs to be conducted in 2 years,15,4.0,3.0,3.0,4.0,4.0,3.0,,4.0,,,4.0,3.0,3.0,3.0,3.0,3.0,,4.0,4.0,,S1229,43.687290954,-79.423401887,310956.75800000003,4838372.124
-896600,4155104,2017.0,2017.0,1956.0,PRIVATE,5,York South-Weston,96 TRETHEWEY DR,3,12,2017-10-18,47,Building Audit,15,3.0,2.0,3.0,2.0,3.0,2.0,,3.0,,,2.0,2.0,3.0,2.0,2.0,2.0,,2.0,2.0,,W0532,43.6934951479,-79.4820055643,306234.99,4839060.1
-896601,4166819,2017.0,2017.0,1991.0,SOCIAL HOUSING,12,Toronto-St. Paul's,99 VAUGHAN RD,11,106,2017-10-18,77,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,3.0,,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,S1229,43.6838774166,-79.4208933191,311162.253,4837994.424
-896602,4153595,2017.0,2017.0,1965.0,PRIVATE,13,Toronto Centre,666 ONTARIO ST,19,231,2017-10-18,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,2.0,3.0,3.0,2.0,3.0,3.0,,3.0,4.0,5.0,3.0,3.0,4.0,3.0,3.0,4.0,,S1323,43.669481117,-79.3732918084,315002.49199999997,4836399.811000001
-896603,4153601,2017.0,2017.0,1969.0,PRIVATE,13,Toronto Centre,650 PARLIAMENT ST,22,568,2017-10-18,64,Evaluation needs to be conducted in 1 year,19,3.0,4.0,4.0,2.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,5.0,2.0,3.0,3.0,4.0,3.0,3.0,3.0,S1323,43.6696118145,-79.3706631071,315214.451,4836414.664
-896604,4156561,2017.0,2017.0,2012.0,PRIVATE,18,Willowdale,485 PATRICIA AVE,10,240,2017-10-18,85,Evaluation needs to be conducted in 2 years,19,5.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,N1821,43.783662468,-79.444994843,309246.757,4849085.015
-896605,4153877,2017.0,2017.0,1955.0,PRIVATE,12,Toronto-St. Paul's,1 ORIOLE RD,8,80,2017-10-18,76,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S1232,43.6872902889,-79.3997313945,312868.006,4838375.428
-896606,4153878,2017.0,2017.0,1955.0,PRIVATE,12,Toronto-St. Paul's,23 ORIOLE RD,4,47,2017-10-18,71,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,4.0,3.0,4.0,,3.0,3.0,,3.0,4.0,5.0,4.0,4.0,3.0,3.0,4.0,3.0,,S1232,43.687767379300006,-79.3997287568,312868.154,4838428.432
-896607,4153879,2017.0,2017.0,1955.0,PRIVATE,12,Toronto-St. Paul's,37 ORIOLE RD,4,50,2017-10-18,78,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,3.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1232,43.6882940924,-79.3999022,312854.1,4838486.933
-896608,4156642,2017.0,2017.0,2010.0,PRIVATE,17,Don Valley North,1751 SHEPPARD AVE E,7,74,2017-10-18,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,5.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,N1730,43.775389788000005,-79.343955146,317356.94800000003,4848175.294
-896609,4156639,2017.0,2017.0,2010.0,PRIVATE,17,Don Valley North,1761 SHEPPARD AVE E,7,74,2017-10-18,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,4.0,N1730,43.775609538999994,-79.343036945,317419.83,4848195.294
-896610,4155047,2017.0,2017.0,1959.0,PRIVATE,8,Eglinton-Lawrence,837 ROSELAWN AVE,7,39,2017-10-18,58,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,3.0,2.0,,2.0,3.0,,3.0,2.0,5.0,3.0,3.0,2.0,3.0,3.0,2.0,,N0831,43.7022933387,-79.4396596089,309647.839,4840039.109
-896611,4154631,2017.0,2017.0,1969.0,PRIVATE,6,York Centre,6010 BATHURST ST,12,120,2017-10-17,65,Evaluation needs to be conducted in 1 year,19,4.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,,3.0,2.0,5.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,N0622,43.7862798518,-79.4468276481,309064.24100000004,4849369.232
-896612,4154722,2017.0,2017.0,1960.0,PRIVATE,18,Willowdale,6171 BATHURST ST,13,170,2017-10-17,60,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,N1821,43.7898670361,-79.4451703972,309197.325,4849767.841
-896613,4155879,2017.0,2017.0,1969.0,PRIVATE,6,York Centre,6200 BATHURST ST,14,181,2017-10-17,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,2.0,3.0,3.0,,N0622,43.791103408000005,-79.44678989100001,309058.466,4849903.305
-896614,4155244,2017.0,2017.0,1953.0,PRIVATE,3,Etobicoke-Lakeshore,179 BERRY RD,4,23,2017-10-17,64,Evaluation needs to be conducted in 1 year,15,3.0,4.0,4.0,3.0,3.0,2.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,3.0,,3.0,2.0,,W0329,43.6366442394,-79.4899445536,305595.659,4832744.208000001
-896615,4155235,2017.0,2017.0,1958.0,PRIVATE,3,Etobicoke-Lakeshore,169 BERRY RD,4,25,2017-10-17,62,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,4.0,3.0,5.0,3.0,3.0,2.0,3.0,3.0,3.0,,W0329,43.637123520500005,-79.4874115114,305800.066,4832797.477
-896616,4168798,2017.0,2017.0,1956.0,PRIVATE,3,Etobicoke-Lakeshore,170 BERRY RD,4,22,2017-10-17,66,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,3.0,4.0,2.0,,3.0,,,3.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,,W0327,,,305421.0121,4832761.998
-896617,4154375,2017.0,2017.0,1950.0,PRIVATE,6,York Centre,17 ANTHONY RD,3,11,2017-10-17,77,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,4.0,4.0,4.0,,4.0,,,4.0,3.0,5.0,2.0,4.0,5.0,,4.0,4.0,,N0632,43.73043975979999,-79.4596132017,308038.125,4843165.06
-896618,4155248,2017.0,2017.0,1940.0,PRIVATE,3,Etobicoke-Lakeshore,140 BERRY RD,4,14,2017-10-17,59,Evaluation needs to be conducted in 1 year,16,3.0,3.0,2.0,3.0,3.0,2.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,2.0,,W0327,43.6378752009,-79.4868729596,305849.94800000003,4832879.26
-896619,4155281,2017.0,2017.0,1956.0,PRIVATE,3,Etobicoke-Lakeshore,168 BERRY RD,4,22,2017-10-17,68,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,3.0,4.0,2.0,,3.0,,,3.0,4.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,,W0327,43.636826872,-79.491504389,305455.669,4832759.364
-896620,4154007,2017.0,2017.0,1960.0,PRIVATE,8,Eglinton-Lawrence,1106 AVENUE RD,4,22,2017-10-17,69,Evaluation needs to be conducted in 2 years,17,3.0,4.0,3.0,3.0,4.0,3.0,,3.0,,3.0,3.0,3.0,5.0,4.0,3.0,3.0,3.0,5.0,4.0,,N0833,43.708098073100004,-79.4106259149,311987.226,4840686.163
-896621,4156619,2017.0,2017.0,1965.0,PRIVATE,16,Don Valley East,2 WINGREEN CRT,3,11,2017-10-17,67,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,4.0,4.0,,2.0,,3.0,3.0,4.0,5.0,3.0,4.0,3.0,3.0,4.0,2.0,,N1624,43.73952173520001,-79.342024827,,
-896622,4154797,2017.0,2017.0,1965.0,PRIVATE,16,Don Valley East,6 WINGREEN CRT,3,11,2017-10-17,69,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,3.0,3.0,4.0,,3.0,,,3.0,4.0,5.0,3.0,4.0,3.0,3.0,4.0,2.0,,N1624,43.739250167,-79.3428089774,317446.031,4844155.022
-896623,4156613,2017.0,2017.0,1965.0,PRIVATE,16,Don Valley East,8 WINGREEN CRT,3,11,2017-10-17,67,Evaluation needs to be conducted in 2 years,17,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,,3.0,3.0,4.0,5.0,3.0,4.0,3.0,3.0,4.0,2.0,,N1624,43.739178679,-79.3433554999,,
-896624,4156634,2017.0,2017.0,1965.0,PRIVATE,16,Don Valley East,9 WINGREEN CRT,3,11,2017-10-17,56,Evaluation needs to be conducted in 1 year,16,3.0,3.0,2.0,2.0,2.0,2.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,4.0,3.0,3.0,2.0,,N1624,43.7386011415,-79.34322632029999,317412.553,4844082.855
-896625,4154778,2017.0,2017.0,1966.0,PRIVATE,16,Don Valley East,1059 DON MILLS RD,6,70,2017-10-17,65,Evaluation needs to be conducted in 1 year,20,4.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,2.0,2.0,N1627,43.7346398069,-79.3419288019,317517.899,4843642.953
-896626,4153881,2017.0,2017.0,1967.0,PRIVATE,12,Toronto-St. Paul's,4 DEER PARK CRES,13,59,2017-10-17,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1232,43.6878705594,-79.3990127319,312925.863,4838439.962
-896627,4153873,2017.0,2017.0,1965.0,PRIVATE,12,Toronto-St. Paul's,9 DEER PARK CRES,17,95,2017-10-17,73,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,,S1232,43.6881074516,-79.3979987112,313007.575,4838466.377
-896628,4154818,2017.0,2017.0,1969.0,PRIVATE,17,Don Valley North,12 DEERFORD RD,12,137,2017-10-17,67,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,2.0,3.0,4.0,4.0,3.0,4.0,,4.0,3.0,5.0,3.0,4.0,3.0,4.0,3.0,2.0,3.0,N1727,43.786127991,-79.35066942,316803.339,4849362.734
-896629,4156719,2017.0,2017.0,1900.0,PRIVATE,11,University-Rosedale,359 DAVENPORT RD,4,17,2017-10-17,52,Evaluation needs to be conducted in 1 year,15,3.0,2.0,3.0,3.0,2.0,3.0,,2.0,,,2.0,3.0,5.0,2.0,2.0,2.0,,2.0,3.0,,S1127,,,312666.71,4837037.335
-896630,4154015,2017.0,2017.0,1955.0,PRIVATE,8,Eglinton-Lawrence,80 CASTLEFIELD AVE,3,17,2017-10-17,61,Evaluation needs to be conducted in 1 year,16,3.0,4.0,3.0,2.0,3.0,2.0,,3.0,,3.0,3.0,2.0,5.0,3.0,3.0,3.0,,4.0,3.0,,N0833,43.7112480304,-79.403629987,312550.619,4841036.746
-896631,4154016,2017.0,2017.0,1955.0,PRIVATE,8,Eglinton-Lawrence,132 CASTLEFIELD AVE,4,26,2017-10-17,71,Evaluation needs to be conducted in 2 years,17,4.0,3.0,3.0,3.0,4.0,4.0,,3.0,,4.0,3.0,3.0,5.0,3.0,3.0,4.0,3.0,5.0,3.0,,N0833,43.7107762101,-79.4059080075,312367.109,4840984.1110000005
-896632,4154806,2017.0,2017.0,1993.0,SOCIAL HOUSING,16,Don Valley East,2020 DON MILLS RD,14,221,2017-10-17,68,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,2.0,4.0,3.0,3.0,3.0,3.0,,3.0,4.0,5.0,4.0,3.0,4.0,3.0,4.0,3.0,4.0,N1621,43.762792748100004,-79.34783723529999,317036.265,4846769.7360000005
-896633,4155111,2017.0,2017.0,1958.0,PRIVATE,5,York South-Weston,85 CLEARVIEW HTS,3,35,2017-10-17,57,Evaluation needs to be conducted in 1 year,15,2.0,3.0,3.0,3.0,2.0,3.0,,2.0,,,3.0,3.0,5.0,3.0,2.0,3.0,,3.0,3.0,,W0532,43.692772378,-79.483091733,306147.185,4838980.741
-896634,4155293,2017.0,2017.0,1955.0,PRIVATE,3,Etobicoke-Lakeshore,69 OLD MILL TER,4,26,2017-10-17,60,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,3.0,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0327,43.6497102952,-79.498711457,304888.256,4834195.725
-896635,4153935,2017.0,2017.0,1960.0,PRIVATE,12,Toronto-St. Paul's,120 ORIOLE PKWY,5,34,2017-10-17,60,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,S1226,43.6961891471,-79.4030049168,312602.92600000004,4839363.78
-896636,4154004,2017.0,2017.0,1930.0,PRIVATE,12,Toronto-St. Paul's,484 ORIOLE PKWY,3,18,2017-10-17,65,Evaluation needs to be conducted in 1 year,17,3.0,2.0,4.0,3.0,3.0,3.0,,3.0,,4.0,3.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,,S1227,43.70424134939999,-79.406228883,312342.047,4840258.076
-896637,4154003,2017.0,2017.0,1930.0,PRIVATE,12,Toronto-St. Paul's,486 ORIOLE PKWY,3,21,2017-10-17,65,Evaluation needs to be conducted in 1 year,17,3.0,2.0,4.0,3.0,3.0,3.0,,3.0,,4.0,3.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,,S1227,43.704467093599995,-79.4062239915,312342.413,4840283.156
-896638,4155062,2017.0,2017.0,1965.0,PRIVATE,8,Eglinton-Lawrence,370 RIDELLE AVE,28,214,2017-10-17,65,Evaluation needs to be conducted in 1 year,19,4.0,4.0,4.0,3.0,3.0,2.0,2.0,3.0,3.0,,2.0,2.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,4.0,N0831,43.7046374432,-79.440751474,309559.647,4840299.426
-896639,4154674,2017.0,2017.0,1992.0,SOCIAL HOUSING,8,Eglinton-Lawrence,262 RIDLEY BLVD,8,111,2017-10-17,67,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,2.0,4.0,3.0,3.0,2.0,4.0,,2.0,4.0,4.0,4.0,4.0,4.0,,3.0,3.0,4.0,N0821,43.7399850336,-79.423996848,310906.417,4844227.477
-896640,4154054,2017.0,2017.0,1971.0,PRIVATE,19,Beaches-East York,8 PARK VISTA,8,56,2017-10-17,77,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,4.0,3.0,,4.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,3.0,,S1927,43.6985479321,-79.2974887076,321107.534,4839641.066000001
-896641,4153377,2017.0,2017.0,2005.0,PRIVATE,10,Spadina-Fort York,50 PORTLAND ST,10,232,2017-10-17,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,,4.0,3.0,4.0,4.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,S1032,43.64339526,-79.399965439,312863.723,4833483.933
-896642,4154056,2017.0,2017.0,1971.0,PRIVATE,19,Beaches-East York,2 PARK VISTA,11,121,2017-10-17,78,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,5.0,3.0,,4.0,5.0,4.0,3.0,4.0,5.0,4.0,3.0,4.0,4.0,5.0,3.0,,S1927,43.698083902700006,-79.3005296419,320862.542,4839588.937
-896643,4154055,2017.0,2017.0,1971.0,PRIVATE,19,Beaches-East York,6 PARK VISTA,10,108,2017-10-17,79,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,3.0,4.0,3.0,,4.0,4.0,4.0,4.0,4.0,5.0,3.0,5.0,3.0,5.0,5.0,3.0,5.0,S1927,43.698310468900004,-79.2983347125,321039.405,4839614.522
-896644,4154057,2017.0,2017.0,1971.0,PRIVATE,19,Beaches-East York,7 PARK VISTA,8,84,2017-10-17,77,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,3.0,,3.0,4.0,3.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,3.0,5.0,S1927,43.697893112399996,-79.298058957,321061.744,4839568.208000001
-896645,4153000,2017.0,2017.0,1917.0,PRIVATE,4,Parkdale-High Park,1465 KING ST W,3,48,2017-10-17,60,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,3.0,2.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S0437,43.6362466824,-79.4390220759,309704.547,4832701.692
-896646,4153018,2017.0,2017.0,1960.0,PRIVATE,4,Parkdale-High Park,170 JAMESON AVE,11,86,2017-10-17,64,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S0436,43.638273606800006,-79.4368190607,309882.13,4832926.99
-896647,4153526,2017.0,2017.0,1960.0,PRIVATE,13,Toronto Centre,10 HUNTLEY ST,20,116,2017-10-17,65,Evaluation needs to be conducted in 1 year,19,4.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,S1322,43.668602291400006,-79.37821746270001,314605.424,4836301.5819999995
-896648,4153548,2017.0,2017.0,1973.0,PRIVATE,13,Toronto Centre,77 HUNTLEY ST,29,561,2017-10-17,64,Evaluation needs to be conducted in 1 year,17,4.0,3.0,4.0,3.0,,3.0,3.0,2.0,4.0,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,,S1322,43.6716230916,-79.37873126689999,314563.49199999997,4836637.12
-896649,4152965,2017.0,2017.0,1957.0,PRIVATE,4,Parkdale-High Park,130 TYNDALL AVE,5,37,2017-10-17,60,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,2.0,3.0,,4.0,3.0,,3.0,1.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S0437,43.6378675818,-79.4294602213,310475.906,4832882.331
-896650,4154371,2017.0,2017.0,1956.0,PRIVATE,6,York Centre,4 HARTHAM PL,3,12,2017-10-17,73,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,4.0,4.0,4.0,,3.0,,,4.0,3.0,5.0,3.0,4.0,4.0,2.0,4.0,3.0,,N0632,43.7299426047,-79.4600970756,307999.17,4843109.808999999
-896651,4154373,2017.0,2017.0,1959.0,PRIVATE,6,York Centre,5 HARTHAM PL,3,26,2017-10-17,72,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,4.0,3.0,4.0,,3.0,,,4.0,3.0,5.0,4.0,3.0,3.0,,4.0,4.0,,N0632,43.729609977799996,-79.45935772680001,308058.755,4843072.886
-896652,4155285,2017.0,2017.0,1950.0,PRIVATE,3,Etobicoke-Lakeshore,6 KINGS POINT DR,3,16,2017-10-17,59,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,3.0,,2.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0327,43.639609569499996,-79.49364600310001,305296.993,4833073.615
-896653,4154666,2017.0,2017.0,1955.0,PRIVATE,8,Eglinton-Lawrence,215 WILSON AVE,3,26,2017-10-17,69,Evaluation needs to be conducted in 2 years,16,4.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,4.0,5.0,4.0,4.0,3.0,3.0,3.0,4.0,,N0824,43.738584484300006,-79.4263900069,310713.799,4844071.732
-896654,4154675,2017.0,2017.0,1957.0,PRIVATE,8,Eglinton-Lawrence,222 WILSON AVE,3,11,2017-10-17,67,Evaluation needs to be conducted in 2 years,17,4.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,4.0,4.0,3.0,3.0,4.0,3.0,,N0821,43.739213175100005,-79.4260843237,310738.359,4844141.595
-896655,4154665,2017.0,2017.0,1960.0,PRIVATE,8,Eglinton-Lawrence,225 WILSON AVE,3,20,2017-10-17,67,Evaluation needs to be conducted in 2 years,18,4.0,3.0,1.0,3.0,3.0,3.0,,3.0,3.0,3.0,4.0,2.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N0824,43.738182412700006,-79.427971659,310586.433,4844026.954
-896656,4154974,2017.0,2017.0,1929.0,SOCIAL HOUSING,12,Toronto-St. Paul's,175 VAUGHAN RD,4,29,2017-10-17,77,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,3.0,4.0,4.0,,4.0,,,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S1229,43.6862643144,-79.4217422251,311093.57,4838259.553
-896657,4154983,2017.0,2017.0,1952.0,PRIVATE,12,Toronto-St. Paul's,194 VAUGHAN RD,4,22,2017-10-17,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,4.0,2.0,3.0,3.0,3.0,,4.0,3.0,,S1229,43.6868615929,-79.4228739886,311002.268,4838325.831
-896658,4154569,2017.0,2017.0,1960.0,PRIVATE,6,York Centre,415 WILSON AVE,3,10,2017-10-17,59,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,,3.0,,3.0,,,3.0,3.0,4.0,3.0,3.0,2.0,2.0,3.0,3.0,,N0633,43.7360202186,-79.4393431716,309670.63300000003,4843786.018
-896659,4154368,2017.0,2017.0,1953.0,PRIVATE,6,York Centre,825 WILSON AVE,3,11,2017-10-17,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,4.0,2.0,4.0,,3.0,,,2.0,3.0,5.0,4.0,4.0,4.0,,4.0,3.0,,N0632,43.7315326231,-79.46180938479999,307861.13,4843286.382
-896660,4154979,2017.0,2017.0,1930.0,PRIVATE,12,Toronto-St. Paul's,205 VAUGHAN RD,3,46,2017-10-17,69,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,4.0,4.0,2.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,3.0,,3.0,4.0,,S1229,43.6873886469,-79.42234279510001,311045.04,4838384.429
-896661,4152732,2017.0,2017.0,1956.0,PRIVATE,21,Scarborough Centre,2 TREEWOOD ST,7,82,2017-10-17,66,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,3.0,4.0,2.0,3.0,3.0,,3.0,3.0,5.0,4.0,3.0,3.0,2.0,4.0,3.0,,E2129,43.754044973999996,-79.265154241,323696.081,4845814.301
-896662,4154819,2017.0,2017.0,1968.0,PRIVATE,17,Don Valley North,225 VAN HORNE AVE,13,153,2017-10-17,67,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,3.0,4.0,4.0,2.0,3.0,3.0,,3.0,3.0,3.0,3.0,4.0,4.0,3.0,4.0,3.0,4.0,N1727,43.7869738317,-79.3519406664,316701.12100000004,4849455.572
-896663,4154820,2017.0,2017.0,1969.0,PRIVATE,17,Don Valley North,335 VAN HORNE AVE,14,125,2017-10-17,73,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,,3.0,3.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,4.0,N1727,43.78732482,-79.350960418,316779.945,4849494.702
-896664,4154680,2017.0,2017.0,1956.0,PRIVATE,8,Eglinton-Lawrence,161 WILSON AVE,4,56,2017-10-17,74,Evaluation needs to be conducted in 2 years,20,3.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,3.0,4.0,4.0,5.0,4.0,4.0,3.0,3.0,3.0,4.0,4.0,N0824,43.7399203058,-79.42005527229999,311223.909,4844220.57
-896665,4155103,2017.0,2017.0,1950.0,PRIVATE,5,York South-Weston,98 TRETHEWEY DR,3,10,2017-10-17,44,Building Audit,16,2.0,2.0,2.0,2.0,2.0,2.0,,2.0,,2.0,2.0,2.0,5.0,2.0,2.0,2.0,,2.0,2.0,,W0532,43.6934431734,-79.4823929149,306203.767,4839054.32
-896666,4155102,2017.0,2017.0,1950.0,PRIVATE,5,York South-Weston,100 TRETHEWEY DR,3,11,2017-10-17,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,,,4.0,3.0,5.0,2.0,3.0,3.0,,3.0,3.0,,W0532,43.6932514595,-79.4827536797,306174.69,4839033.016
-896667,4155110,2017.0,2017.0,1957.0,PRIVATE,5,York South-Weston,102 TRETHEWEY DR,4,30,2017-10-17,67,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,3.0,2.0,,3.0,,3.0,3.0,3.0,5.0,3.0,4.0,4.0,4.0,3.0,4.0,,W0532,43.69311770149999,-79.4834759702,306116.469,4839018.146000001
-896668,4154367,2017.0,2017.0,1953.0,PRIVATE,6,York Centre,827 WILSON AVE,3,11,2017-10-17,69,Evaluation needs to be conducted in 2 years,15,4.0,3.0,3.0,3.0,2.0,4.0,,3.0,,,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,3.0,,N0632,43.7314312704,-79.4622110913,307828.773,4843275.107
-896669,4154366,2017.0,2017.0,1953.0,PRIVATE,6,York Centre,829 WILSON AVE,3,11,2017-10-17,69,Evaluation needs to be conducted in 2 years,15,4.0,3.0,3.0,3.0,3.0,4.0,,3.0,,,2.0,4.0,5.0,3.0,3.0,4.0,,4.0,4.0,,N0632,43.7313244643,-79.4626281636,307795.179,4843263.226
-896670,4154364,2017.0,2017.0,1960.0,PRIVATE,6,York Centre,833 WILSON AVE,3,12,2017-10-17,67,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,,,3.0,4.0,3.0,3.0,3.0,4.0,,4.0,3.0,,N0632,43.7311624892,-79.4634709632,307727.291,4843245.201
-896671,4154363,2017.0,2017.0,1960.0,PRIVATE,6,York Centre,835 WILSON AVE,3,12,2017-10-17,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,3.0,3.0,4.0,,4.0,,,3.0,4.0,5.0,3.0,3.0,4.0,,3.0,3.0,,N0632,43.7310655422,-79.46388483300001,307693.95399999997,4843234.416
-896672,4154379,2017.0,2017.0,1960.0,PRIVATE,6,York Centre,921 WILSON AVE,4,44,2017-10-17,70,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,4.0,3.0,,3.0,,,3.0,4.0,5.0,4.0,3.0,4.0,3.0,4.0,3.0,,N0632,43.729940785,-79.468234305,307334.305,4843095.036
-896673,4155752,2017.0,2017.0,1950.0,PRIVATE,3,Etobicoke-Lakeshore,1 SUPERIOR AVE,4,23,2017-10-17,60,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,2.0,2.0,,2.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,W0336,43.6148862856,-79.48695961109999,305836.877,4830327.051
-896674,4154725,2017.0,2017.0,1970.0,PRIVATE,18,Willowdale,755 STEELES AVE W,15,194,2017-10-17,61,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,,3.0,2.0,3.0,4.0,3.0,4.0,4.0,4.0,2.0,,N1821,43.79282799600001,-79.44165411899999,309479.81899999996,4850097.949
-896675,4154634,2017.0,2017.0,1972.0,PRIVATE,6,York Centre,1875 STEELES AVE W,4,120,2017-10-17,58,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,2.0,4.0,2.0,3.0,3.0,3.0,2.0,3.0,3.0,N0622,43.787093865,-79.467715903,307382.726,4849459.76
-896676,4154988,2017.0,2017.0,1926.0,PRIVATE,12,Toronto-St. Paul's,231 VAUGHAN RD,4,52,2017-10-17,64,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,3.0,,S1229,43.6880599836,-79.42414197789999,310899.92600000004,4838458.881
-896677,4154996,2017.0,2017.0,1940.0,PRIVATE,12,Toronto-St. Paul's,261 VAUGHAN RD,3,33,2017-10-17,75,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,4.0,4.0,3.0,,4.0,,,4.0,4.0,5.0,3.0,3.0,4.0,,3.0,4.0,,S1229,43.6888528709,-79.4258553114,310761.723,4838546.846
-896678,4154254,2017.0,2017.0,1961.0,PRIVATE,7,Humber River-Black Creek,3266 WESTON RD,4,59,2017-10-17,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,3.0,4.0,3.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,W0727,43.7407950655,-79.5403431231,301535.061,4844315.545
-896679,4154253,2017.0,2017.0,1961.0,PRIVATE,7,Humber River-Black Creek,3286 WESTON RD,4,55,2017-10-17,74,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,4.0,4.0,4.0,,4.0,3.0,3.0,3.0,4.0,5.0,4.0,3.0,4.0,3.0,5.0,3.0,,W0727,43.7416741492,-79.54061124340001,301513.51300000004,4844413.218
-896680,4155506,2017.0,2017.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,2660 LAKE SHORE BLVD W,4,15,2017-10-17,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0335,43.6035699967,-79.4939393682,305273.57899999997,4829069.811000001
-896681,4155552,2017.0,2017.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,22 A LONG BRANCH AVE,3,11,2017-10-17,68,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,4.0,4.0,2.0,,4.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,4.0,3.0,,W0334,43.590295276599996,-79.5324909265,302160.876,4827595.512
-896682,4155772,2017.0,2017.0,1951.0,PRIVATE,3,Etobicoke-Lakeshore,2407 LAKE SHORE BLVD W,3,22,2017-10-17,59,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,3.0,2.0,4.0,3.0,3.0,3.0,,3.0,3.0,,W0336,43.614231394799994,-79.48871626489999,305695.096,4830254.277
-896683,4152749,2017.0,2017.0,1967.0,PRIVATE,21,Scarborough Centre,945 MIDLAND AVE,13,149,2017-10-17,66,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,3.0,3.0,4.0,3.0,2.0,3.0,,3.0,4.0,5.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,E2134,43.7370346448,-79.2585189025,324236.128,4843925.117
-896684,4155246,2017.0,2017.0,1956.0,PRIVATE,3,Etobicoke-Lakeshore,2 KINSDALE BLVD,4,45,2017-10-17,60,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,3.0,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0329,43.637018605,-79.488272958,305733.855,4832772.095
-896685,4155229,2017.0,2017.0,1956.0,PRIVATE,3,Etobicoke-Lakeshore,5 KINSDALE BLVD,4,22,2017-10-17,58,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,3.0,3.0,2.0,5.0,2.0,3.0,3.0,3.0,2.0,3.0,,W0329,43.635353724,-79.49124561,305490.661,4832600.828
-896686,4156090,2017.0,2017.0,1972.0,PRIVATE,15,Don Valley West,110 ERSKINE AVE,23,227,2017-10-17,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N1526,43.712248415,-79.395183727,313266.809,4841146.653
-896687,4156446,2017.0,2017.0,1972.0,PRIVATE,15,Don Valley West,140 ERSKINE AVE,29,493,2017-10-17,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,N1526,43.712415376,-79.393778924,313344.04600000003,4841168.362
-896688,4154830,2017.0,2017.0,1966.0,PRIVATE,17,Don Valley North,20 ESTERBROOKE AVE,15,134,2017-10-17,65,Evaluation needs to be conducted in 1 year,19,4.0,4.0,2.0,3.0,3.0,4.0,3.0,2.0,4.0,,3.0,3.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,2.0,N1727,43.7798043698,-79.3506939201,316802.87100000004,4848659.234
-896689,4154829,2017.0,2017.0,1966.0,PRIVATE,17,Don Valley North,30 ESTERBROOKE AVE,15,163,2017-10-17,68,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,2.0,3.0,3.0,,3.0,3.0,,3.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,N1727,43.779318806899994,-79.3498546485,316870.531,4848605.407
-896690,4154825,2017.0,2017.0,1965.0,PRIVATE,17,Don Valley North,35 ESTERBROOKE AVE,16,218,2017-10-17,69,Evaluation needs to be conducted in 2 years,19,3.0,4.0,3.0,2.0,3.0,4.0,3.0,4.0,3.0,,4.0,2.0,5.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,N1727,43.7784516563,-79.3501562964,316846.419,4848509.027
-896691,4153143,2017.0,2017.0,1930.0,PRIVATE,10,Spadina-Fort York,115 EUCLID AVE,3,16,2017-10-17,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,,S1022,43.6494076571,-79.4085775875,312159.435,4834165.952
-896692,4154833,2017.0,2017.0,1970.0,PRIVATE,17,Don Valley North,30 GODSTONE RD,15,174,2017-10-17,69,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,3.0,2.0,3.0,3.0,4.0,,4.0,3.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,3.0,N1727,43.7814235784,-79.3473574848,317071.105,4848839.609
-896693,4155041,2017.0,2017.0,1955.0,PRIVATE,8,Eglinton-Lawrence,1490 EGLINTON AVE W,4,34,2017-10-17,62,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,4.0,2.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0831,43.6981168907,-79.4403546526,309592.14,4839575.093
-896694,4169166,2017.0,2017.0,1960.0,SOCIAL HOUSING,8,Eglinton-Lawrence,1674 EGLINTON AVE W,4,40,2017-10-17,65,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,3.0,,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,3.0,3.0,N0831,43.6970039967,-79.4454317501,309182.971,4839451.174
-896695,4152734,2017.0,2017.0,1967.0,PRIVATE,21,Scarborough Centre,1175 ELLESMERE RD,5,65,2017-10-17,72,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,2.0,4.0,3.0,4.0,,3.0,2.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,E2129,43.7676449772,-79.2698659258,323312.731,4847323.217
-896696,4154247,2017.0,2017.0,1970.0,PRIVATE,7,Humber River-Black Creek,2397 FINCH AVE W,11,121,2017-10-17,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,3.0,3.0,3.0,2.0,5.0,,3.0,2.0,5.0,4.0,3.0,3.0,4.0,3.0,3.0,,W0727,43.751182532,-79.544580941,301194.093,4845470.67
-896697,4154278,2017.0,2017.0,1971.0,PRIVATE,7,Humber River-Black Creek,2600 FINCH AVE W,7,113,2017-10-17,66,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,2.0,,W0722,43.748128033,-79.563243432,299690.887,4845132.328
-896698,4155554,2017.0,2017.0,1963.0,PRIVATE,3,Etobicoke-Lakeshore,45 FORTY SECOND ST,4,53,2017-10-17,59,Evaluation needs to be conducted in 1 year,17,3.0,2.0,2.0,3.0,3.0,4.0,,3.0,3.0,,2.0,3.0,5.0,2.0,3.0,3.0,3.0,3.0,3.0,,W0334,43.5882763733,-79.5428127838,301327.297,4827371.595
-896699,4154013,2017.0,2017.0,1900.0,PRIVATE,8,Eglinton-Lawrence,487 DUPLEX AVE,3,36,2017-10-17,53,Evaluation needs to be conducted in 1 year,16,2.0,3.0,3.0,2.0,2.0,2.0,,3.0,,2.0,2.0,2.0,5.0,3.0,2.0,2.0,,4.0,3.0,,N0833,43.710114718199996,-79.4005329944,312800.334,4840911.145
-896700,4155093,2017.0,2017.0,1955.0,PRIVATE,5,York South-Weston,31 CLEARVIEW HTS,4,43,2017-10-16,56,Evaluation needs to be conducted in 1 year,16,2.0,2.0,3.0,3.0,2.0,2.0,,4.0,,3.0,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,2.0,,W0532,43.69278743,-79.4796635822,306423.795,4838981.508
-896701,4155684,2017.0,2017.0,1964.0,PRIVATE,6,York Centre,34 BROOKWELL DR,4,44,2017-10-16,73,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,3.0,4.0,4.0,,4.0,,,3.0,3.0,5.0,3.0,3.0,4.0,4.0,4.0,3.0,,N0625,43.7447007322,-79.4945628574,305222.49199999997,4844748.606000001
-896702,4155306,2017.0,2017.0,1973.0,PRIVATE,3,Etobicoke-Lakeshore,50 CORDOVA AVE,37,285,2017-10-16,61,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,,W0321,43.6471114892,-79.5264697253,302648.878,4833907.435
-896703,4154447,2017.0,2017.0,1959.0,PRIVATE,6,York Centre,25 SEELEY DR,4,71,2017-10-16,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0627,43.741511337,-79.493163994,305312.55100000004,4844399.414
-896704,4153955,2017.0,2017.0,1965.0,PRIVATE,8,Eglinton-Lawrence,10 SHALLMAR BLVD,11,138,2017-10-16,72,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,,3.0,3.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,,N0832,43.704286951,-79.423280437,310967.522,4840262.673
-896705,4153959,2017.0,2017.0,1960.0,PRIVATE,8,Eglinton-Lawrence,11 SHALLMAR BLVD,7,78,2017-10-16,67,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,2.0,4.0,5.0,3.0,4.0,3.0,2.0,3.0,4.0,,N0832,43.703726864,-79.423164634,310976.913,4840200.458000001
-896706,4153956,2017.0,2017.0,1963.0,PRIVATE,8,Eglinton-Lawrence,20 SHALLMAR BLVD,11,155,2017-10-16,79,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,,N0832,43.704511738,-79.424723028,310851.235,4840287.547
-896707,4154827,2017.0,2017.0,1968.0,PRIVATE,17,Don Valley North,175 SHAUGHNESSY BLVD,18,139,2017-10-16,69,Evaluation needs to be conducted in 2 years,19,4.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,4.0,,4.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,N1727,43.7808646264,-79.35390324069999,316544.328,4848776.57
-896708,4154828,2017.0,2017.0,1967.0,PRIVATE,17,Don Valley North,185 SHAUGHNESSY BLVD,17,180,2017-10-16,64,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,,3.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,2.0,4.0,N1727,43.7818416283,-79.3541987634,316520.358,4848885.074
-896709,4155681,2017.0,2017.0,1996.0,SOCIAL HOUSING,10,Spadina-Fort York,900 QUEEN ST W,3,22,2017-10-16,65,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,,,4.0,4.0,3.0,3.0,3.0,3.0,,3.0,3.0,4.0,S1021,43.6450713717,-79.4156086518,311592.747,4833683.596
-896710,4154653,2017.0,2017.0,1965.0,PRIVATE,6,York Centre,4750 BATHURST ST,3,64,2017-10-16,78,Evaluation needs to be conducted in 2 years,17,5.0,3.0,3.0,3.0,3.0,4.0,,3.0,5.0,,4.0,5.0,5.0,4.0,3.0,3.0,5.0,4.0,4.0,,N0624,43.767931941,-79.4420072756,309453.606,4847331.095
-896711,4152955,2017.0,2017.0,1959.0,PRIVATE,4,Parkdale-High Park,29 SPENCER AVE,6,54,2017-10-16,58,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,,S0437,43.634901103000004,-79.429121805,310503.215,4832553.752
-896712,4152957,2017.0,2017.0,1960.0,PRIVATE,4,Parkdale-High Park,35 SPENCER AVE,7,80,2017-10-16,69,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,4.0,3.0,5.0,3.0,4.0,3.0,,3.0,4.0,3.0,3.0,4.0,3.0,5.0,3.0,3.0,,S0437,43.635361871,-79.429350661,310484.708,4832604.925
-896713,4152959,2017.0,2017.0,1939.0,PRIVATE,4,Parkdale-High Park,57 SPENCER AVE,3,19,2017-10-16,61,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,,2.0,,3.0,,,4.0,2.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S0437,43.636137103,-79.429522246,310470.794,4832691.036
-896714,4155012,2017.0,2017.0,1955.0,PRIVATE,12,Toronto-St. Paul's,440 WINONA DR,6,130,2017-10-16,58,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,3.0,,2.0,2.0,3.0,2.0,3.0,3.0,3.0,3.0,4.0,2.0,3.0,3.0,,S1222,43.6884054492,-79.4358516608,309955.895,4838496.442
-896715,4155010,2017.0,2017.0,1958.0,PRIVATE,12,Toronto-St. Paul's,460 WINONA DR,5,55,2017-10-16,59,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,2.0,3.0,2.0,,3.0,3.0,3.0,3.0,2.0,5.0,3.0,2.0,3.0,3.0,3.0,3.0,,S1222,43.6890952984,-79.4358713128,309954.256,4838573.079
-896716,4153142,2017.0,2017.0,1987.0,SOCIAL HOUSING,10,Spadina-Fort York,800 ADELAIDE ST W,3,50,2017-10-16,58,Evaluation needs to be conducted in 1 year,20,3.0,3.0,3.0,3.0,3.0,3.0,2.0,2.0,3.0,3.0,3.0,2.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,S1028,43.6439718067,-79.4103609926,312016.23,4833561.862
-896717,4154070,2017.0,2017.0,1950.0,PRIVATE,19,Beaches-East York,189 CEDARVALE AVE,6,78,2017-10-16,82,Evaluation needs to be conducted in 2 years,18,5.0,4.0,4.0,3.0,4.0,3.0,,5.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,,S1929,43.689396815,-79.3119405791,319944.937,4838621.723
-896718,4250615,2017.0,2017.0,1965.0,PRIVATE,15,Don Valley West,66 BROADWAY AVE,20,357,2017-10-16,74,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,3.0,4.0,3.0,4.0,,4.0,3.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,,N1526,43.710673428999996,-79.395369179,313216.13800000004,4840974.674
-896719,4153840,2017.0,2017.0,1956.0,PRIVATE,15,Don Valley West,124 BROADWAY AVE,4,86,2017-10-16,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,4.0,3.0,4.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,,N1526,43.711364802,-79.392506301,313446.755,4841051.778
-896720,4154652,2017.0,2017.0,1965.0,PRIVATE,6,York Centre,34 CARSCADDEN DR,6,69,2017-10-16,69,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,5.0,4.0,4.0,3.0,5.0,4.0,3.0,,N0624,43.7657548154,-79.4437096635,309316.71,4847089.125
-896721,4155829,2017.0,2017.0,1940.0,PRIVATE,8,Eglinton-Lawrence,2674 YONGE ST,3,31,2017-10-16,51,Evaluation needs to be conducted in 1 year,16,3.0,2.0,3.0,2.0,3.0,1.0,,3.0,,2.0,2.0,3.0,5.0,2.0,2.0,2.0,,3.0,3.0,,N0829,43.716818521,-79.40078111300001,312779.193,4841656.826
-896722,4154019,2017.0,2017.0,1954.0,PRIVATE,8,Eglinton-Lawrence,2730 YONGE ST,7,63,2017-10-16,65,Evaluation needs to be conducted in 1 year,19,3.0,2.0,4.0,3.0,3.0,4.0,2.0,3.0,5.0,3.0,3.0,2.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,,N0829,43.7180354944,-79.4010377857,312758.613,4841791.045
-896723,4155089,2017.0,2017.0,1950.0,PRIVATE,5,York South-Weston,43 GLENHAVEN ST,3,11,2017-10-16,56,Evaluation needs to be conducted in 1 year,16,2.0,3.0,3.0,2.0,2.0,2.0,,3.0,,,2.0,4.0,5.0,3.0,3.0,3.0,3.0,2.0,3.0,,W0533,43.6931694269,-79.4699479561,307206.968,4839024.153
-896724,4152736,2017.0,2017.0,1976.0,PRIVATE,21,Scarborough Centre,1191 ELLESMERE RD,4,27,2017-10-16,62,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,2.0,3.0,4.0,3.0,,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,E2129,43.7678832058,-79.2689051432,323390.00899999996,4847349.898
-896725,4153512,2017.0,2017.0,1917.0,PRIVATE,13,Toronto Centre,49 DUNDONALD ST,5,32,2017-10-16,64,Evaluation needs to be conducted in 1 year,16,3.0,4.0,4.0,2.0,3.0,3.0,,3.0,3.0,,3.0,4.0,5.0,3.0,3.0,2.0,,3.0,3.0,,S1322,43.666349498,-79.381871851,314310.814,4836051.846
-896726,4154012,2017.0,2017.0,1974.0,PRIVATE,8,Eglinton-Lawrence,411 DUPLEX AVE,23,458,2017-10-16,76,Evaluation needs to be conducted in 2 years,20,3.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,N0833,43.707330008999996,-79.40025733600001,312822.658,4840602.751
-896727,4154890,2017.0,2017.0,1960.0,PRIVATE,16,Don Valley East,55 ECCLESTON DR,4,60,2017-10-16,66,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,5.0,4.0,3.0,4.0,3.0,4.0,3.0,,N1628,43.726552797,-79.31980992,319295.23,4842735.2469999995
-896728,4154889,2017.0,2017.0,1958.0,PRIVATE,16,Don Valley East,56 ECCLESTON DR,4,60,2017-10-16,62,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,2.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,N1628,43.72702975399999,-79.32003773699999,319282.903,4842802.106000001
-896729,4154575,2017.0,2017.0,1960.0,PRIVATE,6,York Centre,45 FAYWOOD BLVD,4,33,2017-10-16,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,,,3.0,3.0,5.0,2.0,3.0,3.0,3.0,2.0,3.0,,N0629,43.7368172463,-79.4465426637,309090.649,4843874.172
-896730,4155303,2017.0,2017.0,1973.0,PRIVATE,3,Etobicoke-Lakeshore,24 MABELLE AVE,36,540,2017-10-16,56,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,2.0,4.0,2.0,3.0,3.0,3.0,,3.0,3.0,2.0,3.0,3.0,3.0,3.0,2.0,2.0,3.0,W0321,43.646585717700006,-79.52714718819999,302594.209,4833849.039
-896731,4155307,2017.0,2017.0,1974.0,PRIVATE,3,Etobicoke-Lakeshore,25 MABELLE AVE,31,416,2017-10-16,57,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,2.0,3.0,2.0,3.0,3.0,2.0,,3.0,2.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,W0321,43.6455831031,-79.5265058924,302645.912,4833737.637
-896732,4155036,2017.0,2017.0,1960.0,PRIVATE,12,Toronto-St. Paul's,560 OAKWOOD AVE,3,24,2017-10-16,55,Evaluation needs to be conducted in 1 year,15,3.0,2.0,2.0,3.0,3.0,3.0,,3.0,,,2.0,2.0,4.0,3.0,3.0,3.0,,3.0,2.0,,S1222,43.693346722,-79.4414872013,309501.192,4839045.058999999
-896733,4155225,2017.0,2017.0,1973.0,PRIVATE,3,Etobicoke-Lakeshore,8 LOMOND DR,24,183,2017-10-16,61,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,4.0,,2.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,,W0325,43.6463454422,-79.5227554263,302948.49100000004,4833822.241
-896734,4153916,2017.0,2017.0,1927.0,PRIVATE,12,Toronto-St. Paul's,48 LAWTON BLVD,3,19,2017-10-16,74,Evaluation needs to be conducted in 2 years,16,4.0,5.0,4.0,3.0,4.0,3.0,,4.0,,4.0,3.0,3.0,5.0,4.0,4.0,3.0,,3.0,3.0,,S1232,43.691667031,-79.396207889,313151.182,4838862.973999999
-896735,4153915,2017.0,2017.0,1915.0,PRIVATE,12,Toronto-St. Paul's,50 LAWTON BLVD,3,20,2017-10-16,71,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,3.0,3.0,,4.0,,4.0,3.0,3.0,5.0,3.0,4.0,3.0,,3.0,3.0,,S1232,43.691863282,-79.396100397,313143.397,4838889.911
-896736,4153923,2017.0,2017.0,1959.0,PRIVATE,12,Toronto-St. Paul's,85 LAWTON BLVD,10,87,2017-10-16,76,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,2.0,4.0,3.0,4.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1232,43.6931297884,-79.3963342082,313141.061,4839024.529
-896737,4153924,2017.0,2017.0,1965.0,PRIVATE,12,Toronto-St. Paul's,95 LAWTON BLVD,7,60,2017-10-16,63,Evaluation needs to be conducted in 1 year,19,3.0,4.0,3.0,3.0,3.0,2.0,3.0,3.0,4.0,4.0,3.0,2.0,5.0,3.0,3.0,2.0,3.0,4.0,3.0,,S1232,43.693346588000004,-79.39645967439999,313130.915,4839048.603999999
-896738,4155033,2017.0,2017.0,1960.0,PRIVATE,12,Toronto-St. Paul's,682 NORTHCLIFFE BLVD,6,54,2017-10-16,60,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,3.0,2.0,,3.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,2.0,,S1222,43.69560890899999,-79.4478332709,308989.478,4839296.063
-896739,4154826,2017.0,2017.0,1965.0,PRIVATE,17,Don Valley North,34 LEITH HILL RD,11,231,2017-10-16,66,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,,3.0,2.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,4.0,N1727,43.7777340882,-79.3489814239,316941.141,4848429.475
-896740,4155479,2017.0,2017.0,1961.0,PRIVATE,3,Etobicoke-Lakeshore,2311 LAKE SHORE BLVD W,4,36,2017-10-16,66,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,3.0,3.0,5.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,4.0,4.0,2.0,,W0336,43.617555556999996,-79.48652198479999,305836.076,4830625.046
-896741,4155478,2017.0,2017.0,1967.0,PRIVATE,3,Etobicoke-Lakeshore,2335 LAKE SHORE BLVD W,8,132,2017-10-16,67,Evaluation needs to be conducted in 2 years,19,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,4.0,3.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,,W0336,43.616601956400004,-79.4868558725,305845.225,4830517.654
-896742,4155757,2017.0,2017.0,1961.0,PRIVATE,3,Etobicoke-Lakeshore,2493 LAKE SHORE BLVD W,9,151,2017-10-16,74,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,4.0,4.0,,4.0,4.0,3.0,3.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,W0336,43.6123803849,-79.4879248651,305759.003,4830048.647
-896743,4154651,2017.0,2017.0,1962.0,PRIVATE,6,York Centre,4 MASCOT PL,4,70,2017-10-16,62,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0624,43.7703715796,-79.4436799328,309318.76300000004,4847602.04
-896744,4155509,2017.0,2017.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,2704 LAKE SHORE BLVD W,4,30,2017-10-16,60,Evaluation needs to be conducted in 1 year,16,3.0,2.0,3.0,3.0,3.0,2.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0335,43.6028754682,-79.4965836376,305060.126,4828992.645
-896745,4154576,2017.0,2017.0,1960.0,PRIVATE,6,York Centre,55 FAYWOOD BLVD,4,33,2017-10-16,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,,,3.0,3.0,5.0,2.0,3.0,3.0,3.0,2.0,3.0,,N0629,43.7374755438,-79.4464332774,309099.415,4843947.308999999
-896746,4154803,2017.0,2017.0,1965.0,PRIVATE,16,Don Valley East,135 FENELON DR,19,218,2017-10-16,58,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,1.0,3.0,3.0,1.0,3.0,4.0,,1.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,,N1621,43.7628388267,-79.337948675,317832.429,4846776.338
-896747,4152966,2017.0,2017.0,1956.0,PRIVATE,4,Parkdale-High Park,124 TYNDALL AVE,4,28,2017-10-16,55,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,2.0,3.0,2.0,,3.0,,,3.0,2.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,,S0437,43.637715924700004,-79.4293840613,310482.065,4832865.488
-896748,4153507,2017.0,2017.0,1888.0,PRIVATE,13,Toronto Centre,510 JARVIS ST,3,16,2017-10-16,64,Evaluation needs to be conducted in 1 year,16,3.0,2.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,,S1322,43.66751677640001,-79.3792333809,314523.675,4836180.868
-896749,4156325,2017.0,2017.0,1960.0,PRIVATE,7,Humber River-Black Creek,3328 WESTON RD,4,93,2017-10-16,67,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,4.0,3.0,2.0,4.0,2.0,,4.0,3.0,5.0,4.0,3.0,4.0,2.0,5.0,3.0,,W0727,43.74317239,-79.541078057,301501.70399999997,4844591.777
-896750,4154572,2017.0,2017.0,1952.0,PRIVATE,6,York Centre,390-398 WILSON AVE,3,40,2017-10-16,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,2.0,3.0,,4.0,,,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N0629,43.736611247,-79.439571975,309632.469,4843834.371
-896751,4154573,2017.0,2017.0,1952.0,PRIVATE,6,York Centre,400-406 WILSON AVE,3,33,2017-10-16,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,,,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,2.0,,N0629,43.736271595,-79.44053564,309548.598,4843809.657
-896752,4154969,2017.0,2017.0,1960.0,PRIVATE,12,Toronto-St. Paul's,142 VAUGHAN RD,4,27,2017-10-16,68,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,3.0,3.0,,3.0,,3.0,4.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,,S1229,43.685120500000004,-79.4220842022,311066.115,4838132.443
-896753,4155683,2017.0,2017.0,1960.0,PRIVATE,7,Humber River-Black Creek,3330 WESTON RD,4,97,2017-10-16,67,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,4.0,3.0,2.0,4.0,3.0,,4.0,3.0,5.0,4.0,3.0,3.0,3.0,4.0,3.0,,W0727,43.7442275359,-79.5409803297,301483.919,4844696.906
-896754,4154255,2017.0,2017.0,1963.0,PRIVATE,7,Humber River-Black Creek,3345 WESTON RD,4,57,2017-10-16,68,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,2.0,3.0,3.0,4.0,3.0,2.0,,3.0,3.0,5.0,3.0,4.0,3.0,4.0,5.0,3.0,,W0728,43.7438256262,-79.53997148100001,301565.156,4844652.213
-896755,4154256,2017.0,2017.0,1963.0,PRIVATE,7,Humber River-Black Creek,3355 WESTON RD,4,57,2017-10-16,69,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,2.0,3.0,3.0,5.0,3.0,2.0,,3.0,3.0,5.0,3.0,4.0,3.0,4.0,5.0,2.0,,W0728,43.744498152700004,-79.5401163906,301553.519,4844726.933999999
-896756,4154452,2017.0,2017.0,1977.0,PRIVATE,6,York Centre,111 WHITBURN CRES,3,46,2017-10-16,72,Evaluation needs to be conducted in 2 years,17,4.0,4.0,3.0,4.0,3.0,4.0,3.0,4.0,,,3.0,3.0,5.0,4.0,3.0,4.0,3.0,4.0,3.0,,N0627,43.738515308400004,-79.4915401712,305465.98,4844061.47
-896757,4154451,2017.0,2017.0,1977.0,PRIVATE,6,York Centre,117 WHITBURN CRES,3,61,2017-10-16,69,Evaluation needs to be conducted in 2 years,17,4.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,,,3.0,3.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,,N0627,43.7388982847,-79.4917361524,305450.192,4844104.0139999995
-896758,4155161,2017.0,2017.0,1970.0,PRIVATE,5,York South-Weston,1906-1930 WESTON RD,12,112,2017-10-16,59,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,3.0,2.0,2.0,3.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,,W0524,43.7002003087,-79.5172673603,303392.674,4839805.124
-896759,4155173,2017.0,2017.0,1962.0,PRIVATE,5,York South-Weston,2180 WESTON RD,8,62,2017-10-16,73,Evaluation needs to be conducted in 2 years,17,4.0,4.0,3.0,3.0,4.0,2.0,,3.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,,W0524,43.702981103,-79.526148917,302676.666,4840115.227
-896760,4240549,2017.0,2017.0,1962.0,PRIVATE,5,York South-Weston,2190 WESTON RD,8,76,2017-10-16,68,Evaluation needs to be conducted in 2 years,17,4.0,3.0,3.0,3.0,3.0,2.0,,3.0,4.0,,3.0,4.0,5.0,4.0,3.0,4.0,3.0,3.0,4.0,,W0524,43.703114245,-79.526528746,302646.059,4840130.027
-896761,4155167,2017.0,2017.0,1962.0,PRIVATE,5,York South-Weston,2260 WESTON RD,9,116,2017-10-16,67,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,3.0,4.0,3.0,4.0,3.0,,3.0,3.0,3.0,3.0,4.0,3.0,4.0,4.0,3.0,,W0524,43.704334117100004,-79.5286680785,302473.953,4840264.645
-896762,4154579,2017.0,2017.0,1960.0,PRIVATE,6,York Centre,8 VINCI CRES,4,33,2017-10-16,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,,,3.0,3.0,5.0,2.0,3.0,3.0,3.0,2.0,3.0,,N0629,43.7362371647,-79.4461261454,309124.24,4843809.751
-896763,4154578,2017.0,2017.0,1960.0,PRIVATE,6,York Centre,30 VINCI CRES,4,33,2017-10-16,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,,,3.0,3.0,5.0,2.0,3.0,3.0,3.0,2.0,3.0,,N0629,43.736994196000005,-79.4460498433,309130.334,4843893.855
-896764,4155024,2017.0,2017.0,1957.0,PRIVATE,12,Toronto-St. Paul's,642 VAUGHAN RD,4,23,2017-10-16,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,4.0,2.0,,3.0,,,3.0,4.0,3.0,3.0,3.0,3.0,,2.0,3.0,,S1222,43.692785049499996,-79.4417092331,309481.606,4838982.16
-896765,4154577,2017.0,2017.0,1960.0,PRIVATE,6,York Centre,59 VINCI CRES,4,33,2017-10-16,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,,,3.0,3.0,5.0,2.0,3.0,3.0,3.0,2.0,3.0,,N0629,43.7378403502,-79.4465142919,309092.864,4843987.8319999995
-896766,4152651,2017.0,2017.0,1960.0,PRIVATE,21,Scarborough Centre,1725 LAWRENCE AVE E,6,43,2017-10-16,69,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,4.0,3.0,,1.0,5.0,,4.0,2.0,5.0,3.0,4.0,4.0,2.0,3.0,4.0,,E2131,43.7420240548,-79.3085552863,320204.42100000003,4844468.944
-896767,4152658,2017.0,2017.0,1961.0,PRIVATE,21,Scarborough Centre,1780 LAWRENCE AVE E,5,39,2017-10-16,78,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,3.0,2.0,,4.0,5.0,,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,E2126,43.743103619799996,-79.3070051699,320328.999,4844589.169
-896768,4152659,2017.0,2017.0,1978.0,SOCIAL HOUSING,21,Scarborough Centre,1860 LAWRENCE AVE E,8,89,2017-10-16,84,Evaluation needs to be conducted in 2 years,18,5.0,5.0,5.0,4.0,4.0,4.0,,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,E2126,43.744070606,-79.30308064180001,320644.835,4844697.338
-896769,4153869,2017.0,2017.0,1950.0,PRIVATE,15,Don Valley West,153 RANLEIGH AVE,4,28,2017-10-16,79,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,3.0,,N1525,43.72825161390001,-79.39810823239999,312993.279,4842926.261
-896770,4154077,2017.0,2017.0,1971.0,PRIVATE,19,Beaches-East York,2 SECORD AVE,22,303,2017-10-16,74,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,2.0,4.0,3.0,4.0,3.0,5.0,,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1930,43.693121262,-79.301596009,320864.623,4839066.34
-896771,4154449,2017.0,2017.0,1959.0,PRIVATE,6,York Centre,24 SEELEY DR,4,100,2017-10-16,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,3.0,3.0,4.0,,4.0,4.0,4.0,N0627,43.7406632771,-79.4927548873,305368.127,4844300.0819999995
-896772,4155224,2017.0,2017.0,1965.0,PRIVATE,3,Etobicoke-Lakeshore,800 ROYAL YORK RD,6,60,2017-10-16,67,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,4.0,3.0,,3.0,3.0,,3.0,4.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,,W0325,43.638794444,-79.508763602,304076.947,4832984.053
-896773,4154380,2017.0,2017.0,1953.0,PRIVATE,6,York Centre,27 PAXTONIA BLVD,4,50,2017-10-16,74,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,5.0,2.0,4.0,4.0,2.0,3.0,3.0,,N0628,43.7290216575,-79.48091891979999,306321.739,4843006.91
-896774,4240547,2017.0,2017.0,1976.0,PRIVATE,8,Eglinton-Lawrence,33 ORCHARD VIEW BLVD,17,327,2017-10-16,74,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,4.0,3.0,4.0,3.0,4.0,5.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,4.0,5.0,4.0,,N0833,43.707819465,-79.399390971,312892.413,4840657.216
-896775,4153376,2017.0,2017.0,1987.0,PRIVATE,10,Spadina-Fort York,350 QUEENS QUAY W,19,228,2017-10-16,73,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,,3.0,4.0,4.0,S1036,43.638687474799994,-79.3891530101,313727.979,4832976.873
-896776,4166900,2017.0,2017.0,1987.0,PRIVATE,10,Spadina-Fort York,390 QUEENS QUAY W,21,289,2017-10-16,72,Evaluation needs to be conducted in 2 years,19,4.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,,4.0,4.0,4.0,S1036,43.638163608999996,-79.390534476,313604.244,4832915.083000001
-896777,4154814,2017.0,2017.0,1972.0,PRIVATE,17,Don Valley North,25 PARKWAY FOREST DR,17,300,2017-10-16,69,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,2.0,3.0,3.0,3.0,3.0,4.0,,3.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,5.0,N1730,43.769247221099995,-79.3416602499,317532.252,4847487.714
-896778,4153731,2017.0,2017.0,2013.0,PRIVATE,17,Don Valley North,130 PARKWAY FOREST DR,8,105,2017-10-16,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,,4.0,4.0,4.0,4.0,,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,N1730,43.774618023,-79.343572185,317376.94800000003,4848085.058
-896779,4153448,2017.0,2017.0,1990.0,SOCIAL HOUSING,13,Toronto Centre,70 PEMBROKE ST,3,15,2017-10-16,54,Evaluation needs to be conducted in 1 year,16,2.0,3.0,3.0,2.0,2.0,3.0,,3.0,,,2.0,3.0,5.0,3.0,2.0,2.0,2.0,3.0,3.0,,S1328,43.6585068285,-79.3728346452,315041.226,4835180.666999999
-896780,4153446,2017.0,2017.0,1920.0,PRIVATE,13,Toronto Centre,80-82 PEMBROKE ST,4,11,2017-10-16,68,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,5.0,4.0,4.0,3.0,,4.0,3.0,,S1328,43.6590517197,-79.3730588983,315023.047,4835241.178
-896781,4155158,2017.0,2017.0,1994.0,SOCIAL HOUSING,5,York South-Weston,15 KING ST,12,119,2017-10-16,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,W0524,43.7019082741,-79.5198266294,303186.471,4839994.908
-896782,4153544,2017.0,2017.0,1959.0,PRIVATE,13,Toronto Centre,108 ISABELLA ST,11,262,2017-10-16,69,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,3.0,2.0,4.0,4.0,3.0,3.0,,3.0,3.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,,S1322,43.66900050939999,-79.3799911245,314462.32399999996,4836345.619
-896783,4154859,2017.0,2017.0,1964.0,PRIVATE,16,Don Valley East,22 TINDER CRES,4,60,2017-10-16,61,Evaluation needs to be conducted in 1 year,18,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,4.0,3.0,2.0,3.0,5.0,2.0,2.0,3.0,3.0,2.0,3.0,,N1628,43.72645012979999,-79.3091895206,320157.292,4842738.692
-896784,4233290,2017.0,2017.0,1984.0,SOCIAL HOUSING,5,York South-Weston,29 SOUTH STATION ST,13,128,2017-10-16,64,Evaluation needs to be conducted in 1 year,17,4.0,3.0,4.0,3.0,4.0,3.0,2.0,2.0,3.0,,2.0,3.0,3.0,4.0,4.0,3.0,,4.0,3.0,,W0524,43.7009920215,-79.5153630558,303546.182,4839893.047
-896785,4155359,2017.0,2017.0,1963.0,PRIVATE,1,Etobicoke North,236 DIXON RD,13,123,2017-10-16,79,Evaluation needs to be conducted in 2 years,17,5.0,5.0,5.0,3.0,,2.0,4.0,4.0,4.0,,4.0,3.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,,W0135,43.6983362533,-79.5463927222,301045.006,4839598.982
-896786,4155096,2017.0,2017.0,1960.0,PRIVATE,5,York South-Weston,30 CLEARVIEW HTS,4,25,2017-10-16,64,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,4.0,3.0,3.0,3.0,3.0,3.0,,W0532,43.6932353032,-79.4795788454,306430.615,4839031.266
-896787,4154490,2017.0,2017.0,1962.0,PRIVATE,8,Eglinton-Lawrence,437 GLEN PARK AVE,4,43,2017-10-13,66,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,3.0,3.0,4.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,N0826,43.70751376729999,-79.4552760493,308388.845,4840618.272
-896788,4153115,2017.0,2017.0,1930.0,PRIVATE,9,Davenport,109 GLENHOLME AVE,3,15,2017-10-13,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,3.0,3.0,2.0,5.0,3.0,3.0,3.0,,4.0,3.0,,S0928,43.6786824154,-79.4384961713,309743.43100000004,4837416.085
-896789,4154059,2017.0,2017.0,1955.0,PRIVATE,19,Beaches-East York,127 GLENWOOD CRES,3,57,2017-10-13,59,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,,2.0,2.0,3.0,3.0,3.0,2.0,2.0,,3.0,4.0,,S1927,43.7025056164,-79.3120345151,319934.109,4840078.057
-896790,4155132,2017.0,2017.0,1971.0,PRIVATE,5,York South-Weston,65 EMMETT AVE,24,419,2017-10-13,66,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,2.0,3.0,4.0,2.0,3.0,3.0,,3.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,,W0531,43.6880415754,-79.5040797855,304455.515,4838454.156
-896791,4153511,2017.0,2017.0,1968.0,PRIVATE,13,Toronto Centre,41 DUNDONALD ST,18,107,2017-10-13,61,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,2.0,,3.0,3.0,4.0,3.0,,3.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,2.0,,S1322,43.66621262100001,-79.382200082,314284.363,4836036.603999999
-896792,4153782,2017.0,2017.0,1966.0,PRIVATE,12,Toronto-St. Paul's,45 DUNFIELD AVE,30,575,2017-10-13,75,Evaluation needs to be conducted in 2 years,20,4.0,3.0,4.0,3.0,4.0,1.0,4.0,4.0,4.0,4.0,3.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,5.0,S1228,43.706257478999994,-79.394353196,313298.64,4840484.18
-896793,4156439,2017.0,2017.0,1993.0,SOCIAL HOUSING,5,York South-Weston,33 GABIAN WAY,18,248,2017-10-13,54,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,2.0,2.0,3.0,2.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,2.0,,3.0,3.0,3.0,W0533,43.6931197205,-79.46886392319999,307294.354,4839018.662
-896794,4155219,2017.0,2017.0,1967.0,PRIVATE,3,Etobicoke-Lakeshore,625 EVANS AVE,11,85,2017-10-13,72,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,4.0,,4.0,2.0,5.0,3.0,3.0,4.0,3.0,4.0,4.0,4.0,W0330,43.60966320399999,-79.550566638,300703.95399999997,4829745.148
-896795,4233146,2017.0,2017.0,1958.0,PRIVATE,21,Scarborough Centre,1731 VICTORIA PARK AVE,4,43,2017-10-13,71,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,4.0,4.0,2.0,,3.0,,,4.0,3.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,,E2131,43.73710603479999,-79.3073327749,320304.15,4843922.831
-896796,4152644,2017.0,2017.0,1958.0,PRIVATE,21,Scarborough Centre,1735 VICTORIA PARK AVE,4,43,2017-10-13,69,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,1.0,,3.0,,,4.0,2.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,,E2131,43.7375816521,-79.30752617590001,320288.45,4843975.633
-896797,4152645,2017.0,2017.0,1958.0,PRIVATE,21,Scarborough Centre,1739 VICTORIA PARK AVE,4,43,2017-10-13,71,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,1.0,,3.0,,,4.0,4.0,4.0,4.0,3.0,2.0,4.0,4.0,4.0,,E2131,43.7380491988,-79.30771259999999,320273.313,4844027.536
-896798,4153820,2017.0,2017.0,1968.0,PRIVATE,12,Toronto-St. Paul's,890 MOUNT PLEASANT RD,19,145,2017-10-13,79,Evaluation needs to be conducted in 2 years,20,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,S1221,43.7107286629,-79.3914657004,313530.971,4840980.259
-896799,4153042,2017.0,2017.0,1957.0,PRIVATE,4,Parkdale-High Park,1 A ELM GROVE AVE,3,12,2017-10-13,57,Evaluation needs to be conducted in 1 year,14,3.0,3.0,2.0,3.0,,3.0,,3.0,,,3.0,3.0,3.0,3.0,3.0,3.0,,2.0,3.0,,S0436,43.6386867446,-79.4301347335,310421.409,4832973.29
-896800,4156136,2017.0,2017.0,1993.0,SOCIAL HOUSING,23,Scarborough North,2319 MCNICOLL AVE,5,130,2017-10-13,91,Evaluation needs to be conducted in 3 years,18,5.0,5.0,5.0,4.0,5.0,5.0,,4.0,4.0,,5.0,4.0,5.0,4.0,5.0,4.0,5.0,5.0,3.0,5.0,E2321,43.81394308,-79.29021955399999,321736.414,4852474.97
-896801,4243767,2017.0,2017.0,1900.0,PRIVATE,4,Parkdale-High Park,28 MAYNARD AVE,3,20,2017-10-13,56,Evaluation needs to be conducted in 1 year,16,2.0,2.0,2.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,S0436,43.6380072384,-79.43803496470001,309784.048,4832897.33
-896802,4155136,2017.0,2017.0,1951.0,PRIVATE,5,York South-Weston,1693 WESTON RD,3,12,2017-10-13,53,Evaluation needs to be conducted in 1 year,14,3.0,2.0,1.0,3.0,,2.0,,3.0,,,3.0,1.0,5.0,3.0,3.0,2.0,,3.0,3.0,,W0527,43.6974801662,-79.50926226989999,304037.854,4839502.786
-896803,4154351,2017.0,2017.0,1950.0,PRIVATE,5,York South-Weston,2428 KEELE ST,3,10,2017-10-13,70,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,2.0,3.0,,3.0,,2.0,4.0,3.0,5.0,5.0,4.0,5.0,,4.0,3.0,,W0526,43.7106272814,-79.4788634923,306486.658,4840982.713
-896804,4154886,2017.0,2017.0,1964.0,PRIVATE,16,Don Valley East,1840 VICTORIA PARK AVE,12,204,2017-10-13,54,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,2.0,3.0,3.0,3.0,3.0,3.0,,2.0,3.0,2.0,3.0,1.0,2.0,3.0,3.0,3.0,,N1628,43.7404974664,-79.3102350058,320069.51300000004,4844299.041
-896805,4153173,2017.0,2017.0,1965.0,PRIVATE,11,University-Rosedale,11 WALMER RD,7,63,2017-10-13,56,Evaluation needs to be conducted in 1 year,19,4.0,3.0,3.0,3.0,4.0,3.0,3.0,2.0,4.0,2.0,3.0,2.0,3.0,2.0,3.0,3.0,2.0,2.0,2.0,,S1126,43.667244428400004,-79.4054073649,312412.84,4836147.848999999
-896806,4153174,2017.0,2017.0,1970.0,PRIVATE,11,University-Rosedale,15 WALMER RD,10,78,2017-10-13,61,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1126,43.6676214521,-79.4054920342,312405.966,4836189.727
-896807,4155915,2017.0,2017.0,1994.0,SOCIAL HOUSING,21,Scarborough Centre,2015 LAWRENCE AVE E,11,158,2017-10-13,67,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,,3.0,2.0,5.0,4.0,3.0,3.0,,4.0,4.0,,E2131,43.7449592405,-79.2949788446,321297.115,4844797.638
-896808,4153059,2017.0,2017.0,1935.0,PRIVATE,4,Parkdale-High Park,34 NOBLE ST,3,18,2017-10-13,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,4.0,3.0,,3.0,3.0,,S0435,43.6428677432,-79.431388625,310319.87100000004,4833437.692
-896809,4154885,2017.0,2017.0,1964.0,PRIVATE,16,Don Valley East,1850 VICTORIA PARK AVE,15,240,2017-10-13,42,Building Audit,18,2.0,3.0,3.0,1.0,1.0,1.0,2.0,3.0,3.0,,1.0,3.0,1.0,3.0,2.0,2.0,3.0,2.0,2.0,,N1628,43.740954682600005,-79.3112631324,319986.585,4844349.647
-896810,4155290,2017.0,2017.0,1958.0,PRIVATE,3,Etobicoke-Lakeshore,33 RIVERWOOD PKWY,4,50,2017-10-13,56,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,2.0,,2.0,3.0,,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0327,43.640211934499995,-79.4896809434,305616.916,4833140.562
-896811,4155046,2017.0,2017.0,1955.0,PRIVATE,8,Eglinton-Lawrence,839 ROSELAWN AVE,7,36,2017-10-13,57,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,2.0,,2.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,2.0,3.0,1.0,,N0831,43.7022080434,-79.4400323266,309617.805,4840029.609
-896812,4154352,2017.0,2017.0,1950.0,PRIVATE,5,York South-Weston,2422 KEELE ST,3,10,2017-10-13,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,2.0,3.0,,3.0,,2.0,4.0,2.0,5.0,5.0,3.0,3.0,,2.0,3.0,,W0526,43.7104582053,-79.4787969775,306489.91,4840962.965
-896813,4155430,2017.0,2017.0,1960.0,PRIVATE,1,Etobicoke North,2386 ISLINGTON AVE,3,18,2017-10-13,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,,3.0,,3.0,,,4.0,2.0,5.0,3.0,4.0,3.0,4.0,4.0,3.0,,W0130,43.72086112,-79.55824156,300091.5,4842102.895
-896814,4155421,2017.0,2017.0,1955.0,PRIVATE,1,Etobicoke North,2413 ISLINGTON AVE,6,52,2017-10-13,65,Evaluation needs to be conducted in 1 year,17,4.0,4.0,4.0,4.0,3.0,1.0,,3.0,3.0,,3.0,2.0,5.0,3.0,4.0,4.0,2.0,3.0,3.0,,W0131,43.7237971189,-79.5587381746,300051.989,4842428.141
-896815,4153542,2017.0,2017.0,1955.0,PRIVATE,13,Toronto Centre,42 ISABELLA ST,4,24,2017-10-13,73,Evaluation needs to be conducted in 2 years,15,4.0,3.0,4.0,4.0,2.0,4.0,,3.0,,,4.0,4.0,5.0,4.0,4.0,3.0,,4.0,3.0,,S1322,43.66829815,-79.383729477,314160.693,4836268.121
-896816,4153546,2017.0,2017.0,1968.0,PRIVATE,13,Toronto Centre,88 ISABELLA ST,14,82,2017-10-13,73,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,,3.0,4.0,3.0,4.0,,4.0,4.0,5.0,4.0,3.0,3.0,3.0,3.0,3.0,,S1322,43.668733825299995,-79.3813488094,314352.877,4836315.837
-896817,4153545,2017.0,2017.0,1917.0,PRIVATE,13,Toronto Centre,96 ISABELLA ST,4,28,2017-10-13,56,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,2.0,3.0,,3.0,,,3.0,2.0,5.0,2.0,2.0,2.0,,3.0,3.0,,S1322,43.6689634555,-79.38048370930001,314422.606,4836341.446
-896818,4153522,2017.0,2017.0,1960.0,PRIVATE,13,Toronto Centre,137 ISABELLA ST,7,56,2017-10-13,69,Evaluation needs to be conducted in 2 years,17,4.0,3.0,4.0,4.0,4.0,2.0,,3.0,4.0,,4.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,S1322,43.6691613046,-79.3768141578,314718.501,4836363.844
-896819,4155149,2017.0,2017.0,1953.0,PRIVATE,5,York South-Weston,145 WOODWARD AVE,3,11,2017-10-13,60,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,,2.0,,3.0,,,3.0,2.0,4.0,3.0,3.0,3.0,,4.0,3.0,,W0525,43.7098157296,-79.5063954435,304269.088,4840873.131
-896820,4154496,2017.0,2017.0,1968.0,PRIVATE,8,Eglinton-Lawrence,3000 DUFFERIN ST,18,287,2017-10-13,61,Evaluation needs to be conducted in 1 year,20,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,5.0,3.0,2.0,3.0,2.0,3.0,2.0,3.0,N0826,43.711095482,-79.4550342405,308408.11600000004,4841016.188999999
-896821,4154763,2017.0,2017.0,1968.0,PRIVATE,16,Don Valley East,5 DUFRESNE CRT,28,218,2017-10-13,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,,4.0,3.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,5.0,N1630,43.71503235,-79.33058483399999,318480.453,4841476.916
-896822,4155128,2017.0,2017.0,1977.0,PRIVATE,5,York South-Weston,12 BUTTONWOOD AVE,4,40,2017-10-13,59,Evaluation needs to be conducted in 1 year,17,4.0,3.0,3.0,3.0,3.0,2.0,,2.0,3.0,3.0,3.0,2.0,5.0,3.0,2.0,3.0,,3.0,3.0,,W0531,43.6911592011,-79.5020724213,304617.364,4838800.489
-896823,4154761,2017.0,2017.0,1960.0,PRIVATE,16,Don Valley East,1 DEAUVILLE LANE,9,151,2017-10-13,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,,N1630,43.7170552928,-79.3300834022,318476.11699999997,4841691.34
-896824,4155127,2017.0,2017.0,1992.0,SOCIAL HOUSING,5,York South-Weston,200 DORA SPENCER RD,9,125,2017-10-13,79,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,4.0,W0531,43.6917606066,-79.5050710659,304375.636,4838867.321
-896825,4154021,2017.0,2017.0,1929.0,PRIVATE,8,Eglinton-Lawrence,1 CHERITAN AVE,4,64,2017-10-13,74,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,5.0,3.0,5.0,4.0,3.0,4.0,4.0,5.0,3.0,5.0,3.0,4.0,3.0,,3.0,3.0,,N0829,43.7228926258,-79.4020952283,312672.781,4842330.522
-896826,4156512,2017.0,2017.0,1964.0,PRIVATE,6,York Centre,32 BROOKWELL DR,4,38,2017-10-13,68,Evaluation needs to be conducted in 2 years,17,4.0,4.0,3.0,3.0,3.0,4.0,,4.0,4.0,,2.0,3.0,4.0,3.0,4.0,3.0,4.0,4.0,2.0,,N0625,43.744572133599995,-79.4939808701,305269.36699999997,4844734.321
-896827,4156484,2017.0,2017.0,1965.0,PRIVATE,6,York Centre,35 BROOKWELL DR,4,76,2017-10-13,70,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,4.0,3.0,4.0,4.0,4.0,,3.0,3.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,,N0625,43.7434121512,-79.49453969449999,305224.364,4844605.449
-896828,4155677,2017.0,2017.0,1965.0,PRIVATE,6,York Centre,39 BROOKWELL DR,4,57,2017-10-13,68,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,,2.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,,N0625,43.7438340807,-79.4945341178,305224.811,4844652.324
-896829,4154459,2017.0,2017.0,1966.0,PRIVATE,6,York Centre,41-51 BROOKWELL DR,4,48,2017-10-13,62,Evaluation needs to be conducted in 1 year,18,3.0,4.0,4.0,2.0,3.0,3.0,4.0,4.0,4.0,,2.0,3.0,5.0,2.0,3.0,4.0,2.0,2.0,2.0,,N0625,43.744081781000006,-79.49503543899999,305180.295,4844713.7360000005
-896830,4156504,2017.0,2017.0,1966.0,PRIVATE,6,York Centre,41 BROOKWELL DR,4,38,2017-10-13,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,2.0,2.0,4.0,3.0,4.0,4.0,4.0,,2.0,3.0,5.0,3.0,3.0,4.0,3.0,2.0,3.0,,N0625,43.744053862399994,-79.4951490688,305175.28,4844676.739
-896831,4155135,2017.0,2017.0,1958.0,PRIVATE,5,York South-Weston,21 DENISON RD E,3,17,2017-10-13,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,2.0,,,3.0,3.0,3.0,4.0,3.0,4.0,,4.0,3.0,,W0527,43.696366278999996,-79.506408632,304267.6,4839379.961
-896832,4155275,2017.0,2017.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,16 RIVERWOOD PKWY,5,45,2017-10-13,62,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,3.0,2.0,,3.0,5.0,,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,2.0,,W0327,43.6390524323,-79.4890660176,305666.544,4833011.7530000005
-896833,4155289,2017.0,2017.0,1958.0,PRIVATE,3,Etobicoke-Lakeshore,25 RIVERWOOD PKWY,4,50,2017-10-13,62,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0327,43.639857076400006,-79.48883782989999,305684.946,4833101.147
-896834,4155218,2017.0,2017.0,1982.0,SOCIAL HOUSING,3,Etobicoke-Lakeshore,256 SHELDON AVE,7,76,2017-10-13,66,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,3.0,W0331,43.6084801152,-79.5465065872,301030.182,4829616.243
-896835,4155217,2017.0,2017.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,270 SHELDON AVE,6,74,2017-10-13,74,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,4.0,5.0,,3.0,4.0,3.0,3.0,4.0,5.0,3.0,4.0,4.0,4.0,3.0,4.0,,W0331,43.609210519399994,-79.54621078939999,301054.105,4829697.381
-896836,4154601,2017.0,2017.0,1955.0,PRIVATE,6,York Centre,4114 BATHURST ST,4,17,2017-10-13,59,Evaluation needs to be conducted in 1 year,16,3.0,2.0,3.0,3.0,2.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0629,43.74614789100001,-79.4365743,309892.583,4844912.259
-896837,4154697,2017.0,2017.0,1962.0,PRIVATE,6,York Centre,4415 BATHURST ST,14,167,2017-10-13,67,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0624,43.7567677733,-79.4380041027,309776.827,4846091.036
-896838,4152722,2017.0,2017.0,1956.0,PRIVATE,21,Scarborough Centre,1525 BIRCHMOUNT RD,4,52,2017-10-13,74,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,4.0,3.0,4.0,3.0,5.0,,,3.0,3.0,5.0,4.0,3.0,3.0,,4.0,4.0,,E2128,43.759693301000006,-79.289071527,321768.472,4846436.669
-896839,4155324,2017.0,2017.0,1959.0,PRIVATE,2,Etobicoke Centre,2 BEXHILL CRT,4,14,2017-10-13,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,4.0,3.0,2.0,,3.0,,,4.0,2.0,5.0,3.0,4.0,3.0,,3.0,3.0,,W0229,43.6630974125,-79.5207637841,303109.67699999997,4835683.233
-896840,4155325,2017.0,2017.0,1959.0,PRIVATE,2,Etobicoke Centre,3 BEXHILL CRT,4,14,2017-10-13,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,3.0,2.0,5.0,3.0,4.0,3.0,,3.0,3.0,,W0229,43.662922178,-79.521001935,303090.201,4835664.723999999
-896841,4225861,2017.0,2017.0,1960.0,PRIVATE,19,Beaches-East York,2893 ST CLAIR AVE E,3,12,2017-10-13,84,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,3.0,5.0,,4.0,,,4.0,3.0,5.0,5.0,5.0,4.0,,5.0,4.0,,S1927,43.7075826149,-79.3019433825,320746.095,4840643.954
-896842,4225867,2017.0,2017.0,1960.0,PRIVATE,19,Beaches-East York,2897 ST CLAIR AVE E,3,12,2017-10-13,79,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,3.0,5.0,,4.0,,,4.0,3.0,5.0,3.0,5.0,4.0,,3.0,4.0,,S1927,43.7076426726,-79.30166976640001,320768.13,4840650.678
-896843,4155317,2017.0,2017.0,1958.0,PRIVATE,2,Etobicoke Centre,14-16 ANGLESEY BLVD,4,24,2017-10-13,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,4.0,3.0,5.0,3.0,4.0,3.0,,2.0,3.0,,W0229,43.6652491637,-79.52117214020001,303076.82399999996,4835922.29
-896844,4155333,2017.0,2017.0,1955.0,PRIVATE,2,Etobicoke Centre,15 ANGLESEY BLVD,3,41,2017-10-13,53,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,2.0,2.0,,2.0,,,3.0,2.0,3.0,3.0,3.0,3.0,,3.0,2.0,,W0229,43.6641882866,-79.5210515699,303086.51,4835804.43
-896845,4155215,2017.0,2017.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,100 BROWNS LINE,3,22,2017-10-13,60,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,3.0,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0330,43.5952200747,-79.5429727048,301314.74,4828143.037
-896846,4154020,2017.0,2017.0,1950.0,PRIVATE,8,Eglinton-Lawrence,2770 YONGE ST,4,50,2017-10-13,60,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,3.0,2.0,,3.0,,,3.0,3.0,3.0,3.0,2.0,3.0,3.0,4.0,3.0,,N0829,43.7188202581,-79.40116969729999,312747.881,4841878.215
-896847,4154023,2017.0,2017.0,1929.0,PRIVATE,8,Eglinton-Lawrence,2914 YONGE ST,5,46,2017-10-13,76,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,5.0,4.0,5.0,4.0,3.0,4.0,3.0,4.0,3.0,5.0,3.0,4.0,4.0,,3.0,3.0,,N0829,43.722180360900005,-79.40195722189999,312683.99199999997,4842251.409
-896848,4154022,2017.0,2017.0,1929.0,PRIVATE,8,Eglinton-Lawrence,2932 YONGE ST,5,46,2017-10-13,78,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,5.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,,3.0,3.0,,N0829,43.7226217113,-79.4021353156,312669.586,4842300.422
-896849,4155144,2017.0,2017.0,1955.0,PRIVATE,5,York South-Weston,135 WOODWARD AVE,3,10,2017-10-13,60,Evaluation needs to be conducted in 1 year,16,3.0,2.0,3.0,4.0,2.0,2.0,,3.0,,3.0,4.0,3.0,5.0,3.0,3.0,2.0,,3.0,3.0,,W0525,43.7095042953,-79.5076695409,304166.41,4840838.547
-896850,4154554,2017.0,2017.0,1960.0,PRIVATE,8,Eglinton-Lawrence,3240 BATHURST ST,3,28,2017-10-12,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,4.0,3.0,3.0,,3.0,3.0,,N0823,43.7238042937,-79.4313359616,310316.773,4842429.412
-896851,4154868,2017.0,2017.0,1955.0,PRIVATE,16,Don Valley East,1 BIGGIN CRT,4,48,2017-10-12,66,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,2.0,3.0,3.0,,2.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,4.0,4.0,3.0,,N1628,43.7284796451,-79.3050102685,320493.467,4842964.937
-896852,4154867,2017.0,2017.0,1955.0,PRIVATE,16,Don Valley East,3 BIGGIN CRT,4,55,2017-10-12,61,Evaluation needs to be conducted in 1 year,17,3.0,4.0,4.0,3.0,3.0,3.0,,1.0,3.0,,3.0,3.0,3.0,3.0,2.0,4.0,4.0,3.0,3.0,,N1628,43.7282648735,-79.3058539405,320425.555,4842940.919
-896853,4154600,2017.0,2017.0,1960.0,PRIVATE,6,York Centre,3908 BATHURST ST,4,29,2017-10-12,57,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,,3.0,,3.0,,,3.0,2.0,5.0,2.0,2.0,3.0,3.0,2.0,3.0,,N0629,43.744444822,-79.4363242006,309913.126,4844722.107
-896854,4154480,2017.0,2017.0,1961.0,PRIVATE,8,Eglinton-Lawrence,2700 BATHURST ST,10,149,2017-10-12,63,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,4.0,4.0,4.0,3.0,3.0,3.0,,3.0,2.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,N0827,43.7090551064,-79.4281966082,310571.11100000003,4840791.066000001
-896855,4154718,2017.0,2017.0,1963.0,PRIVATE,18,Willowdale,6000 YONGE ST,18,265,2017-10-12,53,Evaluation needs to be conducted in 1 year,19,2.0,2.0,4.0,2.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,2.0,1.0,3.0,3.0,3.0,2.0,,N1822,43.7883911434,-79.4180400688,311380.957,4849605.708000001
-896856,4155176,2017.0,2017.0,1968.0,PRIVATE,5,York South-Weston,200 WOOLNER AVE,16,304,2017-10-12,61,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,2.0,3.0,2.0,3.0,,3.0,3.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,,W0539,43.672863752299996,-79.4916650817,305456.466,4836767.943
-896857,4155177,2017.0,2017.0,1968.0,PRIVATE,5,York South-Weston,210 WOOLNER AVE,9,188,2017-10-12,60,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,2.0,3.0,3.0,3.0,,2.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,,W0539,43.6724874723,-79.4924156199,305395.95,4836726.135
-896858,4154172,2017.0,2017.0,1960.0,PRIVATE,15,Don Valley West,2 GRANDSTAND PL,6,60,2017-10-12,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,,4.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,,N1533,43.70389820850001,-79.3462344474,317177.385,4840227.066000001
-896859,4153781,2017.0,2017.0,1963.0,PRIVATE,12,Toronto-St. Paul's,44 DUNFIELD AVE,15,162,2017-10-12,71,Evaluation needs to be conducted in 2 years,18,4.0,2.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,3.0,4.0,3.0,4.0,,3.0,4.0,,S1228,43.705600128,-79.39522102800001,313228.789,4840411.062
-896860,4154434,2017.0,2017.0,1968.0,PRIVATE,6,York Centre,195 EXBURY RD,20,159,2017-10-12,72,Evaluation needs to be conducted in 2 years,20,4.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,N0627,43.730125607,-79.50977871100001,303996.516,4843130.381
-896861,4155202,2017.0,2017.0,1990.0,SOCIAL HOUSING,4,Parkdale-High Park,4049 DUNDAS ST W,12,208,2017-10-12,75,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,3.0,,3.0,4.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,S0421,43.6634553526,-79.5037202734,304484.24,4835722.738
-896862,4154150,2017.0,2017.0,1964.0,PRIVATE,15,Don Valley West,35 THORNCLIFFE PARK DR,18,287,2017-10-12,73,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,,3.0,4.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,,N1533,43.701969776000006,-79.34510507899999,317268.55,4840013.953
-896863,4154727,2017.0,2017.0,1968.0,PRIVATE,18,Willowdale,5 TANGREEN CRT,18,214,2017-10-12,58,Evaluation needs to be conducted in 1 year,19,4.0,2.0,3.0,3.0,3.0,4.0,2.0,2.0,4.0,2.0,3.0,3.0,4.0,2.0,2.0,3.0,3.0,4.0,2.0,,N1822,43.796156565,-79.425260494,310798.795,4850468.83
-896864,4154726,2017.0,2017.0,1968.0,PRIVATE,18,Willowdale,15 TANGREEN CRT,18,214,2017-10-12,60,Evaluation needs to be conducted in 1 year,19,3.0,2.0,4.0,3.0,3.0,4.0,2.0,2.0,3.0,3.0,3.0,3.0,4.0,3.0,2.0,2.0,3.0,5.0,3.0,,N1822,43.79522866,-79.425192074,310804.393,4850365.749
-896865,4154484,2017.0,2017.0,1992.0,SOCIAL HOUSING,8,Eglinton-Lawrence,525 LAWRENCE AVE W,8,133,2017-10-12,72,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,,3.0,4.0,5.0,4.0,4.0,3.0,3.0,3.0,4.0,,N0827,43.718611770100004,-79.4314251429,310310.053,4841852.53
-896866,4154565,2017.0,2017.0,1954.0,PRIVATE,8,Eglinton-Lawrence,568 LAWRENCE AVE W,3,29,2017-10-12,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,,,3.0,4.0,5.0,3.0,3.0,4.0,,3.0,3.0,,N0823,43.718310388,-79.435578125,309975.18100000004,4841819.728999999
-896867,4155686,2017.0,2017.0,2003.0,SOCIAL HOUSING,8,Eglinton-Lawrence,651 LAWRENCE AVE W,3,24,2017-10-12,63,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,2.0,5.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,N0827,43.716103619399995,-79.4429013897,309385.499,4841573.16
-896868,4152759,2017.0,2017.0,1972.0,PRIVATE,21,Scarborough Centre,1375 MIDLAND AVE,13,144,2017-10-12,53,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,1.0,3.0,3.0,1.0,2.0,3.0,,2.0,2.0,4.0,3.0,2.0,4.0,3.0,4.0,2.0,,E2134,43.7499873653,-79.2636073728,323822.18,4845362.91
-896869,4155530,2017.0,2017.0,1992.0,SOCIAL HOUSING,3,Etobicoke-Lakeshore,3078 LAKE SHORE BLVD W,8,55,2017-10-12,66,Evaluation needs to be conducted in 2 years,19,3.0,3.0,3.0,4.0,3.0,4.0,4.0,3.0,2.0,,3.0,3.0,5.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,W0335,43.599612567799994,-79.5123632574,303793.135,4828621.572
-896870,4155194,2017.0,2017.0,1986.0,SOCIAL HOUSING,5,York South-Weston,3561 EGLINTON AVE W,16,140,2017-10-12,74,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,,3.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,,W0535,43.6858944242,-79.49260031989999,305380.966,4838215.5819999995
-896871,4156736,2017.0,2017.0,1951.0,PRIVATE,3,Etobicoke-Lakeshore,135 EIGHTH ST,4,47,2017-10-12,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,4.0,,W0335,43.601151061,-79.506439811,304264.189,4828802.018999999
-896872,4154898,2017.0,2017.0,1960.0,PRIVATE,16,Don Valley East,21 WELSFORD GDNS,15,154,2017-10-12,63,Evaluation needs to be conducted in 1 year,18,4.0,4.0,4.0,3.0,2.0,3.0,3.0,3.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,2.0,3.0,4.0,,N1625,43.7525195774,-79.3152926734,319659.157,4845633.706
-896873,4155125,2017.0,2017.0,1960.0,PRIVATE,5,York South-Weston,1321 WESTON RD,3,10,2017-10-12,64,Evaluation needs to be conducted in 1 year,14,3.0,3.0,2.0,3.0,,2.0,,4.0,,,4.0,3.0,5.0,3.0,3.0,3.0,,4.0,3.0,,W0531,43.6898644553,-79.4968078854,305041.755,4838656.633
-896874,4153779,2017.0,2017.0,1993.0,SOCIAL HOUSING,12,Toronto-St. Paul's,78 HOLLY ST,16,127,2017-10-12,72,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,3.0,,3.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,3.0,4.0,S1228,43.7063503756,-79.3969151981,313092.405,4840493.291
-896875,4233372,2017.0,2017.0,1975.0,PRIVATE,12,Toronto-St. Paul's,40 SOUDAN AVE,14,66,2017-10-12,77,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S1228,43.704941409499995,-79.3965572814,313121.445,4840336.79
-896876,4156296,2017.0,2017.0,1963.0,PRIVATE,12,Toronto-St. Paul's,33 HOLLY ST,14,162,2017-10-12,71,Evaluation needs to be conducted in 2 years,17,4.0,2.0,3.0,3.0,4.0,4.0,4.0,3.0,4.0,,4.0,4.0,3.0,4.0,3.0,4.0,,3.0,4.0,,S1228,,,313151.623,4840442.969
-896877,4154224,2017.0,2017.0,1960.0,PRIVATE,7,Humber River-Black Creek,2600 JANE ST,13,115,2017-10-12,75,Evaluation needs to be conducted in 2 years,17,5.0,5.0,5.0,4.0,,4.0,4.0,3.0,4.0,,3.0,4.0,3.0,3.0,4.0,4.0,2.0,4.0,3.0,,W0729,43.7405750446,-79.5143347224,303629.973,4844290.36
-896878,4154229,2017.0,2017.0,1968.0,PRIVATE,7,Humber River-Black Creek,2770 JANE ST,4,144,2017-10-12,70,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,4.0,4.0,3.0,4.0,3.0,,2.0,4.0,5.0,3.0,3.0,4.0,4.0,3.0,5.0,,W0729,43.7474006174,-79.5159466744,303500.287,4845048.686000001
-896879,4154164,2017.0,2017.0,1960.0,PRIVATE,15,Don Valley West,50 THORNCLIFFE PARK DR,6,57,2017-10-12,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N1533,43.703361048999994,-79.342351105,317490.226,4840168.943
-896880,4153188,2017.0,2017.0,1961.0,PRIVATE,11,University-Rosedale,40 WALMER RD,4,33,2017-10-12,59,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,,3.0,3.0,,S1126,43.668763043,-79.406936141,312289.108,4836317.377
-896881,4221313,2017.0,2017.0,1920.0,PRIVATE,11,University-Rosedale,110 WALMER RD,4,10,2017-10-12,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,2.0,3.0,3.0,,4.0,,,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S1126,43.6714919471,-79.4073443984,312256.124,4836619.554
-896882,4155410,2017.0,2017.0,1962.0,PRIVATE,2,Etobicoke Centre,416 THE WESTWAY,9,103,2017-10-12,54,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,2.0,2.0,3.0,2.0,3.0,5.0,,2.0,2.0,3.0,2.0,3.0,2.0,4.0,2.0,2.0,,W0221,43.684052754700005,-79.565694704,299487.999,4838013.037
-896883,4154751,2017.0,2017.0,1992.0,SOCIAL HOUSING,18,Willowdale,422 WILLOWDALE AVE,4,16,2017-10-12,87,Evaluation needs to be conducted in 3 years,20,5.0,4.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,3.0,5.0,4.0,5.0,4.0,4.0,5.0,3.0,4.0,5.0,5.0,N1825,43.7782172975,-79.40593490810001,312356.512,4848476.407
-896884,4154329,2017.0,2017.0,1979.0,PRIVATE,5,York South-Weston,1750 LAWRENCE AVE W,4,70,2017-10-12,63,Evaluation needs to be conducted in 1 year,20,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,5.0,3.0,4.0,4.0,2.0,3.0,2.0,3.0,W0528,43.7044910425,-79.49843825640001,304910.354,4840281.583000001
-896885,4154772,2017.0,2017.0,1989.0,SOCIAL HOUSING,16,Don Valley East,7 THE DONWAY E,4,70,2017-10-12,75,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,,3.0,3.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,N1627,43.733247294799995,-79.3395613564,317708.903,4843488.607
-896886,4152660,2017.0,2017.0,1960.0,PRIVATE,21,Scarborough Centre,1911 VICTORIA PARK AVE,7,91,2017-10-12,61,Evaluation needs to be conducted in 1 year,18,4.0,4.0,3.0,3.0,3.0,1.0,3.0,3.0,4.0,,3.0,3.0,4.0,3.0,2.0,2.0,4.0,3.0,3.0,,E2126,43.7475988109,-79.3111844084,319991.247,4845087.78
-896887,4152662,2017.0,2017.0,1964.0,PRIVATE,21,Scarborough Centre,2255 VICTORIA PARK AVE,6,72,2017-10-12,79,Evaluation needs to be conducted in 2 years,18,4.0,5.0,4.0,3.0,5.0,4.0,4.0,3.0,4.0,,4.0,3.0,5.0,4.0,3.0,4.0,5.0,4.0,3.0,,E2121,43.762425831,-79.316612241,319550.20399999997,4846734.954
-896888,4152663,2017.0,2017.0,1964.0,PRIVATE,21,Scarborough Centre,2265 VICTORIA PARK AVE,6,71,2017-10-12,81,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,E2121,43.762813961999996,-79.316783785,319536.297,4846778.044
-896889,4155361,2017.0,2017.0,1962.0,PRIVATE,2,Etobicoke Centre,51-67 WATERFORD DR,8,29,2017-10-12,67,Evaluation needs to be conducted in 2 years,19,3.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,4.0,5.0,3.0,4.0,3.0,2.0,3.0,3.0,,W0222,43.680940685900005,-79.5408629511,301489.738,4837666.164
-896890,4155501,2017.0,2017.0,1970.0,PRIVATE,3,Etobicoke-Lakeshore,2519 LAKE SHORE BLVD W,4,44,2017-10-12,61,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,2.0,3.0,4.0,,3.0,,3.0,2.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,2.0,,W0336,43.610690629,-79.48977037,305628.08,4829849.455
-896891,4155349,2017.0,2017.0,1969.0,PRIVATE,2,Etobicoke Centre,500 SCARLETT RD,14,129,2017-10-12,63,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,4.0,,3.0,3.0,5.0,2.0,3.0,3.0,3.0,2.0,3.0,3.0,W0230,43.6857584584,-79.5133729757,303706.277,4838200.637
-896892,4154448,2017.0,2017.0,1959.0,PRIVATE,6,York Centre,18 SEELEY DR,5,99,2017-10-12,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,4.0,,N0627,43.74138175,-79.49430188310001,305243.523,4844379.888
-896893,4155121,2017.0,2017.0,1982.0,SOCIAL HOUSING,5,York South-Weston,15 OXFORD DR,10,174,2017-10-12,69,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,,3.0,4.0,5.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,W0531,43.6889254587,-79.4913528542,305481.516,4838552.325
-896894,4153077,2017.0,2017.0,1966.0,PRIVATE,9,Davenport,128 SHERIDAN AVE,7,68,2017-10-12,66,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,3.0,3.0,3.0,,4.0,3.0,,3.0,3.0,5.0,4.0,3.0,3.0,3.0,3.0,3.0,,S0933,43.6504598567,-79.434253526,310088.06899999996,4834280.9569999995
-896895,4154938,2017.0,2017.0,1967.0,PRIVATE,12,Toronto-St. Paul's,39 RAGLAN AVE,9,101,2017-10-12,68,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,3.0,3.0,2.0,4.0,3.0,4.0,4.0,3.0,3.0,5.0,4.0,3.0,3.0,4.0,4.0,2.0,,S1229,43.6847829305,-79.4199516911,311238.08,4838095.101
-896896,4153154,2017.0,2017.0,1940.0,PRIVATE,9,Davenport,19-21 RUSHOLME RD,3,11,2017-10-12,59,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,3.0,3.0,3.0,3.0,,2.0,3.0,,S0934,43.650137633,-79.42672564600001,310695.11600000004,4834246.595
-896897,4154402,2017.0,2017.0,1964.0,PRIVATE,6,York Centre,2219 JANE ST,3,12,2017-10-12,65,Evaluation needs to be conducted in 1 year,15,4.0,3.0,3.0,3.0,2.0,3.0,,3.0,,,3.0,3.0,4.0,4.0,4.0,4.0,,3.0,3.0,,N0627,43.7235999669,-79.50892215350001,304065.665,4842404.48
-896898,4154403,2017.0,2017.0,1964.0,PRIVATE,6,York Centre,2221 JANE ST,3,12,2017-10-12,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,2.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,2.0,4.0,,2.0,4.0,,N0627,43.7238402109,-79.5089780536,304061.165,4842431.169
-896899,4154435,2017.0,2017.0,1968.0,PRIVATE,6,York Centre,2415 JANE ST,20,158,2017-10-12,74,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,3.0,2.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,N0627,43.730739234,-79.5101143614,303969.752,4843197.602
-896900,4153531,2017.0,2017.0,1975.0,PRIVATE,13,Toronto Centre,33 ISABELLA ST,27,419,2017-10-12,61,Evaluation needs to be conducted in 1 year,19,4.0,3.0,4.0,2.0,3.0,3.0,3.0,3.0,3.0,,3.0,2.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,2.0,S1322,43.667643942,-79.383679432,314164.83,4836195.449
-896901,4153532,2017.0,2017.0,1965.0,PRIVATE,13,Toronto Centre,55 ISABELLA ST,12,82,2017-10-12,73,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,,3.0,3.0,3.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,2.0,,S1322,43.667777746000006,-79.383098557,314211.655,4836210.379
-896902,4153533,2017.0,2017.0,1963.0,PRIVATE,13,Toronto Centre,59 ISABELLA ST,14,101,2017-10-12,64,Evaluation needs to be conducted in 1 year,18,4.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,4.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,,S1322,43.667962528000004,-79.382564773,314254.674,4836230.967
-896903,4156737,2017.0,2017.0,1951.0,PRIVATE,3,Etobicoke-Lakeshore,148 ISLINGTON AVE,4,38,2017-10-12,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,4.0,,W0335,43.601468456000006,-79.505848789,304311.906,4828837.276000001
-896904,4156738,2017.0,2017.0,1951.0,PRIVATE,3,Etobicoke-Lakeshore,170 ISLINGTON AVE,4,47,2017-10-12,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0335,43.602358476999996,-79.506187032,304284.602,4828936.156
-896905,4155355,2017.0,2017.0,1962.0,PRIVATE,2,Etobicoke Centre,24 DIXINGTON CRES,6,63,2017-10-12,66,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,4.0,3.0,4.0,,3.0,3.0,,3.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,,W0223,43.6964501816,-79.54293365,301323.708,4839389.287
-896906,4155369,2017.0,2017.0,1964.0,PRIVATE,2,Etobicoke Centre,263 DIXON RD,15,171,2017-10-12,67,Evaluation needs to be conducted in 2 years,19,3.0,3.0,4.0,3.0,4.0,3.0,3.0,2.0,4.0,,3.0,3.0,4.0,3.0,3.0,3.0,5.0,4.0,3.0,4.0,W0222,43.695514613,-79.547766738,300931.87899999996,4839262.038
-896907,4155368,2017.0,2017.0,1967.0,PRIVATE,2,Etobicoke Centre,265 DIXON RD,16,181,2017-10-12,71,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,5.0,,3.0,3.0,5.0,3.0,3.0,3.0,5.0,3.0,3.0,4.0,W0222,43.69593445100001,-79.548620626,300843.439,4839394.946
-896908,4153014,2017.0,2017.0,1930.0,PRIVATE,4,Parkdale-High Park,122 DOWLING AVE,5,27,2017-10-12,65,Evaluation needs to be conducted in 1 year,15,4.0,3.0,3.0,3.0,3.0,3.0,,4.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S0436,43.6367650301,-79.4389483513,309710.453,4832759.28
-896909,4253010,2017.0,2017.0,2007.0,SOCIAL HOUSING,9,Davenport,46 DELAWARE AVE,3,14,2017-10-12,65,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,4.0,S0935,43.655578195299995,-79.42613727220001,310742.29600000003,4834850.132
-896910,4153095,2017.0,2017.0,1930.0,PRIVATE,9,Davenport,220 DELAWARE AVE,4,16,2017-10-12,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,2.0,,S0932,43.66212045020001,-79.4285552093,310546.61600000004,4835576.772
-896911,4153013,2017.0,2017.0,1973.0,PRIVATE,4,Parkdale-High Park,146 DOWLING AVE,7,68,2017-10-12,58,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,2.0,3.0,2.0,,3.0,2.0,3.0,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S0436,43.6375473099,-79.4394028974,309673.714,4832846.159
-896912,4154715,2017.0,2017.0,1996.0,SOCIAL HOUSING,18,Willowdale,33 DREWRY AVE,6,81,2017-10-12,71,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,5.0,4.0,3.0,3.0,4.0,5.0,3.0,4.0,N1822,43.7863368671,-79.4188830465,311313.334,4849377.413
-896913,4231973,2017.0,2017.0,1960.0,PRIVATE,6,York Centre,1 CANYON AVE,18,202,2017-10-12,58,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0624,43.7565096904,-79.4367503453,309877.805,4846062.436000001
-896914,4154698,2017.0,2017.0,1962.0,PRIVATE,6,York Centre,15 CANYON AVE,21,117,2017-10-12,66,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,4.0,4.0,4.0,3.0,3.0,,N0624,43.757154574,-79.436224864,,
-896915,4168793,2017.0,2017.0,1962.0,PRIVATE,6,York Centre,25 CANYON AVE,21,117,2017-10-12,63,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,4.0,4.0,4.0,3.0,3.0,,N0624,43.757154574,-79.436224864,,
-896916,4153057,2017.0,2017.0,1960.0,PRIVATE,4,Parkdale-High Park,1639 BLOOR ST W,6,46,2017-10-12,62,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,5.0,4.0,3.0,3.0,,3.0,3.0,,S0432,43.655402768,-79.455626577,308363.408,4834829.9860000005
-896917,4154560,2017.0,2017.0,1954.0,PRIVATE,8,Eglinton-Lawrence,3 DREXEL RD,3,26,2017-10-12,65,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N0823,43.721948278999996,-79.43334645600001,310154.683,4842224.03
-896918,4154694,2017.0,2017.0,1961.0,PRIVATE,6,York Centre,569 SHEPPARD AVE W,13,144,2017-10-12,67,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,,N0630,43.7553047616,-79.436948304,309861.967,4845928.563
-896919,4154963,2017.0,2017.0,1960.0,PRIVATE,12,Toronto-St. Paul's,40 RAGLAN AVE,7,61,2017-10-12,56,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,1.0,3.0,2.0,,3.0,3.0,2.0,1.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1229,43.684203196000006,-79.4203922096,311202.622,4838030.657
-896920,4154960,2017.0,2017.0,1967.0,PRIVATE,12,Toronto-St. Paul's,100 RAGLAN AVE,13,230,2017-10-12,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1229,43.6854489,-79.4209261641,311159.446,4838169.018
-896921,4154446,2017.0,2017.0,1959.0,PRIVATE,6,York Centre,27 SEELEY DR,5,71,2017-10-12,80,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,N0627,43.7411213027,-79.4918224235,305443.231,4844350.972
-896922,4154865,2017.0,2017.0,1951.0,PRIVATE,16,Don Valley East,7 BIGGIN CRT,4,66,2017-10-11,67,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,5.0,4.0,3.0,3.0,4.0,3.0,3.0,,N1628,43.728756862,-79.3062091197,320396.815,4842995.508
-896923,4154067,2017.0,2017.0,1960.0,PRIVATE,19,Beaches-East York,2890 ST CLAIR AVE E,4,31,2017-10-11,65,Evaluation needs to be conducted in 1 year,17,3.0,3.0,2.0,2.0,3.0,4.0,,5.0,,3.0,3.0,3.0,5.0,3.0,3.0,4.0,4.0,2.0,3.0,,S1924,43.707880094,-79.302844655,320715.28,4840691.633
-896924,4154063,2017.0,2017.0,1956.0,PRIVATE,19,Beaches-East York,2920 ST CLAIR AVE E,4,15,2017-10-11,63,Evaluation needs to be conducted in 1 year,16,3.0,4.0,4.0,2.0,3.0,2.0,,4.0,,,2.0,2.0,5.0,4.0,3.0,2.0,4.0,3.0,3.0,,S1924,43.708477676,-79.3002028238,320886.13,4840743.72
-896925,4153220,2017.0,2017.0,1955.0,PRIVATE,11,University-Rosedale,224 ST GEORGE ST,9,91,2017-10-11,62,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S1127,43.671416122,-79.401975537,312688.81,4836612.569
-896926,4153219,2017.0,2017.0,1969.0,PRIVATE,11,University-Rosedale,250 ST GEORGE ST,11,64,2017-10-11,72,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,3.0,3.0,4.0,3.0,5.0,,4.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,4.0,,S1127,43.672709905,-79.40239631,312654.72,4836756.26
-896927,4153208,2017.0,2017.0,1960.0,PRIVATE,11,University-Rosedale,145 ST GEORGE ST,12,130,2017-10-11,68,Evaluation needs to be conducted in 2 years,19,4.0,3.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,,S1127,43.669080493,-79.399842813,312861.092,4836353.297
-896928,4153209,2017.0,2017.0,1968.0,PRIVATE,11,University-Rosedale,149 ST GEORGE ST,7,48,2017-10-11,66,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,3.0,3.0,3.0,4.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,S1127,43.669299728999995,-79.400091636,312840.999,4836377.6280000005
-896929,4154717,2017.0,2017.0,1970.0,PRIVATE,18,Willowdale,5754 YONGE ST,12,118,2017-10-11,58,Evaluation needs to be conducted in 1 year,18,3.0,2.0,3.0,2.0,3.0,2.0,2.0,2.0,4.0,,2.0,2.0,3.0,3.0,3.0,3.0,5.0,5.0,3.0,,N1822,43.7833043666,-79.4169610775,311468.369,4849040.654
-896930,4154046,2017.0,2017.0,1968.0,SOCIAL HOUSING,19,Beaches-East York,7 GLENBURN AVE,6,55,2017-10-11,76,Evaluation needs to be conducted in 2 years,20,4.0,3.0,4.0,4.0,4.0,5.0,3.0,4.0,5.0,4.0,4.0,4.0,5.0,3.0,4.0,2.0,3.0,2.0,5.0,4.0,S1927,43.706859873,-79.29707452939999,321138.67600000004,4840564.587
-896931,4154047,2017.0,2017.0,1962.0,PRIVATE,19,Beaches-East York,11 GLENBURN AVE,6,58,2017-10-11,70,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,2.0,3.0,,3.0,5.0,3.0,4.0,3.0,5.0,4.0,3.0,4.0,4.0,3.0,3.0,,S1927,43.7071746852,-79.2972112317,321127.57399999996,4840599.535
-896932,4154170,2017.0,2017.0,1958.0,PRIVATE,15,Don Valley West,6 GRANDSTAND PL,6,60,2017-10-11,74,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,3.0,3.0,,5.0,4.0,,3.0,3.0,5.0,3.0,3.0,4.0,4.0,4.0,4.0,,N1533,43.703620119300005,-79.3452607415,317255.92,4840196.318
-896933,4155066,2017.0,2017.0,1963.0,PRIVATE,9,Davenport,1969 EGLINTON AVE W,3,36,2017-10-11,60,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,2.0,2.0,,3.0,,3.0,3.0,2.0,5.0,4.0,3.0,3.0,,3.0,3.0,,S0922,43.6945457647,-79.45447448,308454.213,4839177.629
-896934,4153525,2017.0,2017.0,1929.0,PRIVATE,13,Toronto Centre,40 EARL ST,5,39,2017-10-11,60,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,2.0,3.0,,3.0,3.0,,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,2.0,,S1322,43.66881613939999,-79.3759529086,314788.01399999997,4836325.598
-896935,4153524,2017.0,2017.0,1993.0,SOCIAL HOUSING,13,Toronto Centre,50 EARL ST,4,22,2017-10-11,63,Evaluation needs to be conducted in 1 year,19,2.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,2.0,4.0,4.0,2.0,3.0,4.0,4.0,3.0,2.0,S1322,43.6688638916,-79.3757306133,314805.933,4836330.929
-896936,4154710,2017.0,2017.0,1959.0,PRIVATE,18,Willowdale,292 FINCH AVE W,4,39,2017-10-11,74,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,4.0,3.0,,2.0,5.0,,4.0,3.0,5.0,3.0,4.0,4.0,3.0,5.0,3.0,,N1822,43.7746707581,-79.44071358560001,309557.229,4848079.829
-896937,4155498,2017.0,2017.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,2531 LAKE SHORE BLVD W,6,110,2017-10-11,62,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,3.0,,3.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,,W0336,43.6100722111,-79.4872983362,305809.615,4829792.226
-896938,4154505,2017.0,2017.0,1957.0,PRIVATE,8,Eglinton-Lawrence,8 WASDALE CRES,3,10,2017-10-11,60,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,3.0,2.0,,3.0,,,2.0,3.0,5.0,4.0,2.0,3.0,3.0,3.0,2.0,,N0823,43.731246847399994,-79.4350947761,310013.27,4843255.994
-896939,4154173,2017.0,2017.0,1959.0,PRIVATE,15,Don Valley West,22 THORNCLIFFE PARK DR,7,60,2017-10-11,73,Evaluation needs to be conducted in 2 years,17,3.0,3.0,2.0,4.0,3.0,4.0,,4.0,4.0,,3.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,,N1533,43.703702356899996,-79.3467690026,317134.342,4840205.228
-896940,4154149,2017.0,2017.0,1960.0,PRIVATE,15,Don Valley West,27 THORNCLIFFE PARK DR,7,86,2017-10-11,74,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,,3.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N1533,43.7027318598,-79.346464172,317159.11,4840097.456
-896941,4154547,2017.0,2017.0,1955.0,PRIVATE,8,Eglinton-Lawrence,35 WASDALE CRES,3,10,2017-10-11,56,Evaluation needs to be conducted in 1 year,16,3.0,2.0,2.0,3.0,4.0,2.0,,2.0,,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0823,43.730722623599995,-79.434896794,310029.266,4843197.77
-896942,4154069,2017.0,2017.0,1960.0,PRIVATE,19,Beaches-East York,970 O'CONNOR DR,6,56,2017-10-11,72,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,2.0,4.0,3.0,4.0,3.0,4.0,4.0,5.0,4.0,3.0,3.0,3.0,3.0,3.0,,S1921,43.7085449111,-79.3110644083,320010.786,4840749.181
-896943,4155071,2017.0,2017.0,1960.0,PRIVATE,9,Davenport,500 GILBERT AVE,3,29,2017-10-11,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,2.0,,4.0,,3.0,3.0,3.0,5.0,3.0,3.0,4.0,,3.0,3.0,,S0921,43.691812331099996,-79.4635662158,307721.469,4838873.59
-896944,4155070,2017.0,2017.0,1960.0,PRIVATE,9,Davenport,502 GILBERT AVE,3,23,2017-10-11,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,2.0,2.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,4.0,,3.0,3.0,,S0921,43.6919981634,-79.4636000249,307718.735,4838894.234
-896945,4153501,2017.0,2017.0,1965.0,PRIVATE,13,Toronto Centre,100 MAITLAND ST,18,102,2017-10-11,68,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,2.0,,3.0,,3.0,4.0,,3.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,2.0,,S1326,43.6650800354,-79.37968177479999,314487.904,4835910.112
-896946,4153487,2017.0,2017.0,1923.0,PRIVATE,13,Toronto Centre,33 MAITLAND ST,3,37,2017-10-11,63,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,2.0,,3.0,,4.0,,,3.0,4.0,3.0,3.0,3.0,3.0,,4.0,3.0,,S1326,43.6638932658,-79.3826414877,314249.38399999996,4835777.947
-896947,4153492,2017.0,2017.0,1928.0,PRIVATE,13,Toronto Centre,58 MAITLAND ST,4,45,2017-10-11,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,3.0,3.0,2.0,,4.0,,,3.0,3.0,5.0,3.0,4.0,4.0,,4.0,4.0,,S1326,43.66483495399999,-79.3811923705,314366.11199999996,4835882.717
-896948,4155497,2017.0,2017.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,2537 LAKE SHORE BLVD W,3,75,2017-10-11,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,3.0,3.0,5.0,4.0,3.0,3.0,4.0,3.0,3.0,,W0336,43.6096967981,-79.48808184090001,305746.372,4829750.512
-896949,4155496,2017.0,2017.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,2543 LAKE SHORE BLVD W,3,55,2017-10-11,66,Evaluation needs to be conducted in 2 years,16,3.0,4.0,3.0,4.0,3.0,2.0,,3.0,,,4.0,4.0,5.0,3.0,3.0,3.0,,4.0,2.0,3.0,W0336,43.6095054646,-79.4897087235,305615.04600000003,4829729.24
-896950,4153117,2017.0,2017.0,1993.0,SOCIAL HOUSING,9,Davenport,6 A GREENLAW AVE,4,44,2017-10-11,72,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,,3.0,3.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,,S0927,43.6725455613,-79.4464387192,309103.482,4836733.8780000005
-896951,4154863,2017.0,2017.0,1956.0,PRIVATE,16,Don Valley East,1594 VICTORIA PARK AVE,4,28,2017-10-11,64,Evaluation needs to be conducted in 1 year,17,3.0,2.0,4.0,3.0,3.0,3.0,,3.0,3.0,,3.0,3.0,5.0,3.0,2.0,4.0,4.0,3.0,3.0,,N1628,43.7295535678,-79.30517927359999,320479.575,4843084.2069999995
-896952,4154383,2017.0,2017.0,1970.0,PRIVATE,6,York Centre,1265 WILSON AVE,4,61,2017-10-11,74,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,,4.0,4.0,5.0,4.0,3.0,4.0,3.0,4.0,3.0,,N0631,43.723806203,-79.492097765,305420.909,4842428.319
-896953,4154382,2017.0,2017.0,1968.0,PRIVATE,6,York Centre,1277 WILSON AVE,4,80,2017-10-11,63,Evaluation needs to be conducted in 1 year,19,4.0,3.0,4.0,2.0,4.0,4.0,2.0,3.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,2.0,3.0,3.0,,N0631,43.723649067,-79.492914942,305355.071,4842410.858
-896954,4155013,2017.0,2017.0,1930.0,PRIVATE,9,Davenport,240 NORTHCLIFFE BLVD,4,46,2017-10-11,59,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,2.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,2.0,,S0925,43.6834994432,-79.4433736309,309349.814,4837950.959
-896955,4152703,2017.0,2017.0,1968.0,PRIVATE,21,Scarborough Centre,2185 LAWRENCE AVE E,12,142,2017-10-11,73,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,2.0,4.0,4.0,3.0,4.0,4.0,,3.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,,E2133,43.747553555299994,-79.282547131,322297.586,4845088.397
-896956,4155064,2017.0,2017.0,1960.0,PRIVATE,9,Davenport,3 THORNTON AVE,3,17,2017-10-11,65,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,3.0,2.0,5.0,4.0,4.0,4.0,,4.0,3.0,,S0922,43.692937729200004,-79.454744586,308432.533,4838998.971
-896957,4155500,2017.0,2017.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,2521 LAKE SHORE BLVD W,3,37,2017-10-11,63,Evaluation needs to be conducted in 1 year,15,3.0,4.0,3.0,3.0,3.0,2.0,,3.0,,,3.0,3.0,5.0,4.0,3.0,3.0,,3.0,2.0,,W0336,43.610183173900005,-79.4899009077,305599.525,4829804.528
-896958,4156027,2017.0,2017.0,1910.0,PRIVATE,3,Etobicoke-Lakeshore,2523 LAKE SHORE BLVD W,3,10,2017-10-11,64,Evaluation needs to be conducted in 1 year,14,3.0,4.0,3.0,3.0,,2.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,4.0,,W0336,43.6102058206,-79.4892486213,305652.179,4829807.05
-896959,4156108,2017.0,2017.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,2525 LAKE SHORE BLVD W,3,34,2017-10-11,67,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,,,4.0,4.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0336,43.6103321169,-79.4890126716,305671.224,4829821.083000001
-896960,4155499,2017.0,2017.0,1952.0,PRIVATE,3,Etobicoke-Lakeshore,2529 LAKE SHORE BLVD W,4,61,2017-10-11,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,W0336,43.6100510941,-79.48818596619999,305737.962,4829789.871
-896961,4154562,2017.0,2017.0,1954.0,PRIVATE,8,Eglinton-Lawrence,10 SARANAC BLVD,4,26,2017-10-11,70,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,3.0,4.0,,4.0,,4.0,4.0,4.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N0823,43.721268466400005,-79.4331088491,310174.151,4842147.567
-896962,4154561,2017.0,2017.0,1954.0,PRIVATE,8,Eglinton-Lawrence,14 SARANAC BLVD,3,26,2017-10-11,68,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,,3.0,4.0,4.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N0823,43.721616760299995,-79.4332571257,310162.173,4842186.251
-896963,4154557,2017.0,2017.0,1960.0,PRIVATE,8,Eglinton-Lawrence,42 SARANAC BLVD,3,28,2017-10-11,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,4.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,2.0,,3.0,3.0,,N0823,43.7232330003,-79.4317060695,310287.00399999996,4842365.9180000005
-896964,4154556,2017.0,2017.0,1960.0,PRIVATE,8,Eglinton-Lawrence,44 SARANAC BLVD,3,36,2017-10-11,59,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,2.0,3.0,3.0,2.0,3.0,,,2.0,3.0,3.0,4.0,3.0,3.0,,3.0,3.0,,N0823,43.72316328310001,-79.4313421885,310316.328,4842358.197
-896965,4154555,2017.0,2017.0,1960.0,PRIVATE,8,Eglinton-Lawrence,46 SARANAC BLVD,3,36,2017-10-11,65,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,2.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,4.0,3.0,3.0,,4.0,3.0,,N0823,43.723413773000004,-79.431088371,310336.756,4842386.0430000005
-896966,4152816,2017.0,2017.0,1960.0,PRIVATE,24,Scarborough-Guildwood,550 SCARBOROUGH GOLF CLUB RD,12,200,2017-10-11,63,Evaluation needs to be conducted in 1 year,19,4.0,3.0,4.0,3.0,4.0,1.0,3.0,1.0,4.0,3.0,4.0,3.0,5.0,4.0,3.0,3.0,4.0,3.0,1.0,,E2430,43.7607487105,-79.2171129347,327562.47,4846570.1219999995
-896967,4152819,2017.0,2017.0,1968.0,PRIVATE,24,Scarborough-Guildwood,567 SCARBOROUGH GOLF CLUB RD,16,224,2017-10-11,72,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,3.0,2.0,2.0,3.0,,3.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,E2431,43.761339074,-79.2150743506,327726.39,4846636.265
-896968,4153808,2017.0,2017.0,1959.0,PRIVATE,15,Don Valley West,57 RAWLINSON AVE,4,36,2017-10-11,79,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,4.0,4.0,,4.0,,4.0,4.0,4.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,,N1537,43.7096715692,-79.3877050261,313834.207,4840863.223
-896969,4154696,2017.0,2017.0,1965.0,PRIVATE,6,York Centre,535 SHEPPARD AVE W,12,83,2017-10-11,64,Evaluation needs to be conducted in 1 year,18,4.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0630,43.755962232600005,-79.4343429276,310071.7,4846001.7530000005
-896970,4154695,2017.0,2017.0,1966.0,PRIVATE,6,York Centre,555 SHEPPARD AVE W,12,112,2017-10-11,64,Evaluation needs to be conducted in 1 year,19,4.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,N0630,43.755642859,-79.4356157794,309969.23699999996,4845966.2
-896971,4229124,2017.0,2017.0,1955.0,PRIVATE,9,Davenport,12 RUSHOLME DR,4,29,2017-10-11,70,Evaluation needs to be conducted in 2 years,16,4.0,3.0,3.0,3.0,5.0,4.0,,3.0,,4.0,4.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S0934,43.6500598617,-79.42855445020001,310547.845,4834236.883
-896972,4153155,2017.0,2017.0,1955.0,PRIVATE,9,Davenport,14 RUSHOLME DR,4,22,2017-10-11,69,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,3.0,5.0,3.0,,3.0,,3.0,4.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,S0934,43.650255834700005,-79.4286011017,310544.063,4834258.652
-896973,4153803,2017.0,2017.0,1964.0,PRIVATE,12,Toronto-St. Paul's,245 ROEHAMPTON AVE,15,83,2017-10-11,74,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,,S1221,43.709160333999996,-79.391292239,313544.918,4840806.994
-896974,4152884,2017.0,2017.0,1980.0,PRIVATE,23,Scarborough North,30 KIMBERCROFT CRT,8,94,2017-10-11,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,E2332,43.7906958495,-79.2383755375,325839.99100000004,4849891.516
-896975,4154406,2017.0,2017.0,1968.0,PRIVATE,6,York Centre,1330 WILSON AVE,4,27,2017-10-11,76,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,4.0,3.0,,4.0,4.0,,4.0,4.0,5.0,4.0,3.0,4.0,3.0,4.0,4.0,,N0627,43.7237259106,-79.49648730220001,305067.523,4842418.431
-896976,4154393,2017.0,2017.0,1958.0,PRIVATE,6,York Centre,1395 WILSON AVE,4,35,2017-10-11,77,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,,3.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N0631,43.721514239399994,-79.5008149928,304718.854,4842172.728999999
-896977,4153340,2017.0,2017.0,1920.0,PRIVATE,12,Toronto-St. Paul's,345 ST CLAIR AVE W,4,15,2017-10-11,71,Evaluation needs to be conducted in 2 years,15,3.0,3.0,4.0,2.0,3.0,4.0,,4.0,,,3.0,3.0,5.0,4.0,4.0,3.0,,4.0,4.0,,S1236,43.6842405143,-79.4116176413,311910.078,4838035.533
-896978,4153342,2017.0,2017.0,1969.0,PRIVATE,12,Toronto-St. Paul's,355 ST CLAIR AVE W,24,168,2017-10-11,87,Evaluation needs to be conducted in 3 years,20,5.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,S1236,43.6839008332,-79.4127883698,311815.717,4837997.694
-896979,4153349,2017.0,2017.0,1982.0,SOCIAL HOUSING,12,Toronto-St. Paul's,707 ST CLAIR AVE W,7,130,2017-10-11,87,Evaluation needs to be conducted in 3 years,18,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,5.0,5.0,5.0,4.0,4.0,4.0,,5.0,4.0,5.0,S1234,43.6812230253,-79.4266148086,310701.202,4837699.114
-896980,4153351,2017.0,2017.0,1921.0,PRIVATE,12,Toronto-St. Paul's,781 ST CLAIR AVE W,3,16,2017-10-11,73,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,3.0,3.0,,4.0,,,4.0,4.0,3.0,4.0,3.0,3.0,,4.0,4.0,,S1234,43.680680134300005,-79.4292316793,310490.25,4837638.626
-896981,4153114,2017.0,2017.0,1957.0,PRIVATE,9,Davenport,917 ST CLAIR AVE W,3,16,2017-10-11,63,Evaluation needs to be conducted in 1 year,14,3.0,3.0,3.0,3.0,,3.0,,4.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,2.0,3.0,,S0928,43.679643941,-79.434130411,310095.081,4837524.129
-896982,4154704,2017.0,2017.0,1958.0,PRIVATE,18,Willowdale,11 CHURCHILL AVE,3,17,2017-10-11,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,2.0,3.0,3.0,,5.0,3.0,,N1824,43.7734165941,-79.4148210265,311641.756,4847942.3
-896983,4155073,2017.0,2017.0,1970.0,PRIVATE,9,Davenport,478 CALEDONIA RD,3,20,2017-10-11,51,Evaluation needs to be conducted in 1 year,16,2.0,2.0,3.0,3.0,2.0,2.0,,3.0,,2.0,3.0,2.0,4.0,3.0,2.0,3.0,,3.0,2.0,,S0921,43.6893077444,-79.4610170083,307927.075,4838595.44
-896984,4155097,2017.0,2017.0,1951.0,PRIVATE,5,York South-Weston,40 CLEARVIEW HTS,4,37,2017-10-11,54,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,3.0,2.0,3.0,2.0,3.0,3.0,2.0,3.0,2.0,,W0532,43.693098586400005,-79.48023783800001,306377.49600000004,4839016.071
-896985,4155098,2017.0,2017.0,1951.0,PRIVATE,5,York South-Weston,50 CLEARVIEW HTS,4,37,2017-10-11,54,Evaluation needs to be conducted in 1 year,17,2.0,2.0,3.0,3.0,3.0,3.0,,3.0,,2.0,3.0,3.0,5.0,2.0,3.0,3.0,2.0,2.0,2.0,,W0532,43.693048881,-79.48093875800001,306320.732,4839011.492
-896986,4155099,2017.0,2017.0,1951.0,PRIVATE,5,York South-Weston,60 CLEARVIEW HTS,4,37,2017-10-11,59,Evaluation needs to be conducted in 1 year,17,4.0,2.0,3.0,4.0,4.0,2.0,,2.0,,2.0,4.0,3.0,5.0,2.0,3.0,3.0,3.0,2.0,2.0,,W0532,43.692977471000006,-79.48134741,306287.792,4839003.552
-896987,4155100,2017.0,2017.0,1951.0,PRIVATE,5,York South-Weston,70 CLEARVIEW HTS,4,47,2017-10-11,59,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,2.0,3.0,3.0,5.0,3.0,3.0,2.0,3.0,3.0,2.0,,W0532,43.69279777,-79.481595405,306267.805,4838983.584
-896988,4155101,2017.0,2017.0,1951.0,PRIVATE,5,York South-Weston,80 CLEARVIEW HTS,4,36,2017-10-11,59,Evaluation needs to be conducted in 1 year,15,2.0,3.0,3.0,3.0,,2.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0532,43.693064312,-79.482178967,306220.75800000003,4839013.187
-896989,4154701,2017.0,2017.0,1967.0,PRIVATE,18,Willowdale,325 BOGERT AVE,6,418,2017-10-11,79,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,4.0,5.0,4.0,3.0,4.0,4.0,,3.0,4.0,5.0,4.0,4.0,3.0,4.0,5.0,3.0,4.0,N1827,43.757066148999996,-79.426922307,310668.885,4846125.843
-896990,4167679,2017.0,2017.0,2008.0,PRIVATE,15,Don Valley West,220 REDPATH AVE,8,72,2017-10-11,81,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,N1526,43.71127211,-79.394418315,313305.716,4840999.4
-896991,4154553,2017.0,2017.0,1984.0,SOCIAL HOUSING,8,Eglinton-Lawrence,3270 BATHURST ST,8,160,2017-10-11,68,Evaluation needs to be conducted in 2 years,18,4.0,3.0,5.0,3.0,4.0,3.0,3.0,2.0,4.0,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,4.0,N0823,43.7242397446,-79.4314621221,310306.56899999996,4842477.78
-896992,4154864,2017.0,2017.0,1955.0,PRIVATE,16,Don Valley East,2 BIGGIN CRT,4,77,2017-10-11,64,Evaluation needs to be conducted in 1 year,18,4.0,3.0,4.0,3.0,3.0,3.0,,4.0,3.0,3.0,3.0,3.0,4.0,3.0,2.0,3.0,4.0,3.0,3.0,,N1628,43.72905505560001,-79.3049498934,320498.183,4843028.87
-896993,4154866,2017.0,2017.0,1955.0,PRIVATE,16,Don Valley East,5 BIGGIN CRT,4,65,2017-10-11,63,Evaluation needs to be conducted in 1 year,19,4.0,4.0,4.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,3.0,2.0,,N1628,43.7279966031,-79.3068020912,320349.24,4842910.937
-896994,4154880,2017.0,2017.0,1987.0,SOCIAL HOUSING,16,Don Valley East,1684 VICTORIA PARK AVE,8,112,2017-10-10,78,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,N1628,43.7328892774,-79.3065969199,320364.51399999997,4843454.521000001
-896995,4153818,2017.0,2017.0,1950.0,PRIVATE,12,Toronto-St. Paul's,127 BROADWAY AVE,4,60,2017-10-10,79,Evaluation needs to be conducted in 2 years,17,5.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,,3.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1221,43.71038218100001,-79.392210062,313470.772,4840942.642
-896996,4154506,2017.0,2017.0,1956.0,PRIVATE,8,Eglinton-Lawrence,10 WASDALE CRES,3,10,2017-10-10,61,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,2.0,,N0823,43.731194699300005,-79.4353275935,309994.519,4843250.185
-896997,4154507,2017.0,2017.0,1950.0,PRIVATE,8,Eglinton-Lawrence,24 WASDALE CRES,3,11,2017-10-10,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,,,4.0,3.0,2.0,4.0,3.0,3.0,3.0,3.0,3.0,,N0823,43.730975673,-79.4363599981,309911.368,4843225.786
-896998,4154509,2017.0,2017.0,1956.0,PRIVATE,8,Eglinton-Lawrence,30 WASDALE CRES,3,10,2017-10-10,60,Evaluation needs to be conducted in 1 year,17,3.0,2.0,4.0,3.0,3.0,3.0,,3.0,,3.0,3.0,3.0,5.0,3.0,3.0,2.0,3.0,3.0,2.0,,N0823,43.7308801884,-79.4368395679,309872.74199999997,4843215.149
-896999,4154169,2017.0,2017.0,1960.0,PRIVATE,15,Don Valley West,26 THORNCLIFFE PARK DR,6,62,2017-10-10,72,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,,3.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,4.0,,N1533,43.7032015325,-79.34583013470001,317210.115,4840149.728999999
-897000,4154511,2017.0,2017.0,1965.0,PRIVATE,8,Eglinton-Lawrence,34 WASDALE CRES,3,11,2017-10-10,56,Evaluation needs to be conducted in 1 year,16,2.0,3.0,3.0,2.0,3.0,3.0,,3.0,,,3.0,3.0,4.0,3.0,3.0,2.0,3.0,3.0,2.0,,N0823,43.730776631400005,-79.4372931994,309836.206,4843203.617
-897001,4152931,2017.0,2017.0,1965.0,PRIVATE,4,Parkdale-High Park,22 OAKMOUNT RD,17,216,2017-10-10,67,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,3.0,5.0,3.0,4.0,4.0,4.0,3.0,2.0,,S0428,43.655176052600005,-79.4635445637,307724.99100000004,4834803.534
-897002,4156354,2017.0,2017.0,1965.0,PRIVATE,4,Parkdale-High Park,45 OAKMOUNT RD,15,221,2017-10-10,72,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,2.0,4.0,3.0,4.0,3.0,4.0,,4.0,4.0,2.0,4.0,4.0,4.0,4.0,4.0,4.0,,S0428,43.6564105538,-79.4629896425,307769.685,4834940.698
-897003,4152929,2017.0,2017.0,1965.0,PRIVATE,4,Parkdale-High Park,60 MOUNTVIEW AVE,16,221,2017-10-10,71,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,2.0,4.0,3.0,3.0,3.0,4.0,,4.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,,S0428,43.6568780412,-79.4624258737,307815.135,4834992.653
-897004,4152822,2017.0,2017.0,1975.0,PRIVATE,24,Scarborough-Guildwood,3895 LAWRENCE AVE E,10,114,2017-10-10,75,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,,3.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,5.0,E2431,43.763136467200006,-79.2079803013,328296.891,4846837.916
-897005,4152905,2017.0,2017.0,1993.0,SOCIAL HOUSING,4,Parkdale-High Park,93 LAVINIA AVE,5,68,2017-10-10,81,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,4.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,S0430,43.6473083382,-79.4777129608,306582.355,4833929.1
-897006,4155549,2017.0,2017.0,1963.0,PRIVATE,3,Etobicoke-Lakeshore,220 LAKE PROMENADE,7,118,2017-10-10,63,Evaluation needs to be conducted in 1 year,20,3.0,3.0,3.0,3.0,3.0,2.0,2.0,3.0,3.0,3.0,3.0,2.0,5.0,4.0,3.0,3.0,4.0,4.0,4.0,3.0,W0334,43.589738823999994,-79.529723711,302384.039,4827534.558999999
-897007,4155550,2017.0,2017.0,1964.0,PRIVATE,3,Etobicoke-Lakeshore,230 LAKE PROMENADE,7,118,2017-10-10,59,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,2.0,2.0,3.0,3.0,3.0,,2.0,2.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,W0334,43.589470147,-79.53053544699999,302318.482,4827504.735
-897008,4155551,2017.0,2017.0,1963.0,PRIVATE,3,Etobicoke-Lakeshore,240 LAKE PROMENADE,7,118,2017-10-10,60,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,2.0,3.0,2.0,3.0,3.0,,3.0,2.0,4.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,W0334,43.589265093,-79.53139518100001,302249.05100000004,4827481.981000001
-897009,4154265,2017.0,2017.0,1969.0,PRIVATE,7,Humber River-Black Creek,310 NISKA RD,13,167,2017-10-10,59,Evaluation needs to be conducted in 1 year,18,3.0,4.0,3.0,2.0,2.0,2.0,3.0,3.0,3.0,,3.0,4.0,3.0,3.0,3.0,2.0,2.0,5.0,3.0,,W0725,43.7651648539,-79.5094578761,304023.11699999997,4847022.12
-897010,4154266,2017.0,2017.0,1974.0,PRIVATE,7,Humber River-Black Creek,320 NISKA RD,13,169,2017-10-10,68,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,3.0,2.0,4.0,4.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,4.0,4.0,5.0,2.0,,W0725,43.765738444200004,-79.51095348369999,303902.707,4847085.858
-897011,4154291,2017.0,2017.0,1961.0,PRIVATE,5,York South-Weston,2110 KEELE ST,9,93,2017-10-10,62,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0529,43.6999973614,-79.4766756216,306664.46,4839782.551
-897012,4154544,2017.0,2017.0,1955.0,PRIVATE,8,Eglinton-Lawrence,45 WASDALE CRES,3,25,2017-10-10,67,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,4.0,4.0,3.0,5.0,4.0,3.0,3.0,3.0,4.0,3.0,,N0823,43.730389547899996,-79.43636986189999,309910.624,4843160.67
-897013,4154543,2017.0,2017.0,1950.0,PRIVATE,8,Eglinton-Lawrence,47 WASDALE CRES,3,28,2017-10-10,65,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,4.0,2.0,,3.0,,3.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,4.0,3.0,,N0823,43.73026578859999,-79.4369391147,309864.775,4843146.886
-897014,4154540,2017.0,2017.0,1956.0,PRIVATE,8,Eglinton-Lawrence,67 WASDALE CRES,3,11,2017-10-10,59,Evaluation needs to be conducted in 1 year,16,3.0,2.0,3.0,3.0,2.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,2.0,3.0,3.0,3.0,,N0823,43.730061032799995,-79.4379110526,309786.49199999997,4843124.078
-897015,4154599,2017.0,2017.0,1957.0,PRIVATE,6,York Centre,8 ROSSEAU RD,3,11,2017-10-10,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N0629,43.7416546097,-79.43708097470001,309852.398,4844412.083000001
-897016,4154583,2017.0,2017.0,1955.0,PRIVATE,6,York Centre,9 ROSSEAU RD,3,11,2017-10-10,59,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,2.0,2.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N0629,43.7421552614,-79.4365679609,309893.67699999997,4844467.728
-897017,4154598,2017.0,2017.0,1955.0,PRIVATE,6,York Centre,10 ROSSEAU RD,3,11,2017-10-10,60,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,2.0,3.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N0629,43.7418342537,-79.4371971572,309843.026,4844432.034
-897018,4153420,2017.0,2017.0,1903.0,PRIVATE,11,University-Rosedale,162 HURON ST,4,18,2017-10-10,53,Evaluation needs to be conducted in 1 year,15,3.0,3.0,2.0,2.0,4.0,3.0,,2.0,,,2.0,2.0,3.0,3.0,3.0,2.0,,3.0,3.0,,S1144,43.6572165496,-79.3980741814,313005.623,4835034.499
-897019,4153046,2017.0,2017.0,1960.0,PRIVATE,4,Parkdale-High Park,83 INDIAN RD,5,21,2017-10-10,58,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,2.0,2.0,,3.0,3.0,,3.0,1.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,S0434,43.642240012799995,-79.4533563133,308547.591,4833366.778
-897020,4153047,2017.0,2017.0,1970.0,PRIVATE,4,Parkdale-High Park,109 INDIAN RD,8,38,2017-10-10,65,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,3.0,3.0,3.0,2.0,3.0,4.0,3.0,3.0,3.0,5.0,4.0,3.0,3.0,4.0,3.0,3.0,,S0434,43.6433287042,-79.4525126324,308615.591,4833487.768
-897021,4154290,2017.0,2017.0,1992.0,SOCIAL HOUSING,5,York South-Weston,2214 KEELE ST,7,89,2017-10-10,62,Evaluation needs to be conducted in 1 year,20,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,W0529,43.7009209193,-79.476922025,306644.572,4839885.152
-897022,4154587,2017.0,2017.0,1955.0,PRIVATE,6,York Centre,19 ROSSEAU RD,3,11,2017-10-10,60,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N0629,43.7429016384,-79.4368905262,309867.637,4844550.629
-897023,4154588,2017.0,2017.0,1955.0,PRIVATE,6,York Centre,21 ROSSEAU RD,3,11,2017-10-10,60,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,3.0,2.0,5.0,3.0,3.0,3.0,,3.0,3.0,,N0629,43.743072408,-79.4368800635,309868.466,4844569.601
-897024,4154271,2017.0,2017.0,1967.0,PRIVATE,7,Humber River-Black Creek,4500 JANE ST,14,163,2017-10-10,64,Evaluation needs to be conducted in 1 year,18,4.0,3.0,3.0,3.0,3.0,4.0,3.0,2.0,5.0,,3.0,3.0,5.0,2.0,2.0,4.0,2.0,4.0,3.0,,W0724,43.7664686055,-79.5204750811,303136.099,4847167.134
-897025,4168808,2017.0,2017.0,1955.0,PRIVATE,4,Parkdale-High Park,23 JANE ST,3,18,2017-10-10,61,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,2.0,,S0426,43.650079954300004,-79.48433563399999,306048.00899999996,4834236.904
-897026,4152919,2017.0,2017.0,1910.0,PRIVATE,4,Parkdale-High Park,29 JANE ST,3,18,2017-10-10,65,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,2.0,3.0,,4.0,,,3.0,2.0,5.0,3.0,4.0,4.0,,4.0,3.0,,S0426,43.6502220463,-79.4843917868,306043.476,4834252.688999999
-897027,4153350,2017.0,2017.0,1986.0,SOCIAL HOUSING,12,Toronto-St. Paul's,747 ST CLAIR AVE W,8,97,2017-10-10,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,5.0,,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,S1234,43.6809371983,-79.4282122762,310572.424,4837667.252
-897028,4154609,2017.0,2017.0,1969.0,PRIVATE,6,York Centre,4350 BATHURST ST,6,35,2017-10-10,66,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,N0629,43.754107511,-79.438517766,309735.42,4845796.416
-897029,4154693,2017.0,2017.0,1960.0,PRIVATE,6,York Centre,4383 BATHURST ST,13,142,2017-10-10,66,Evaluation needs to be conducted in 2 years,18,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,,N0630,43.75446148100001,-79.437277956,309835.23,4845835.813999999
-897030,4154607,2017.0,2017.0,1983.0,SOCIAL HOUSING,6,York Centre,4266 BATHURST ST,9,130,2017-10-10,66,Evaluation needs to be conducted in 2 years,19,4.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,,3.0,3.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,N0629,43.751874345299996,-79.438030916,309775.071,4845547.393999999
-897031,4154608,2017.0,2017.0,1989.0,SOCIAL HOUSING,6,York Centre,4300 BATHURST ST,11,164,2017-10-10,64,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,N0629,43.752890988400004,-79.4382283415,309759.09,4845660.325
-897032,4153226,2017.0,2017.0,1967.0,PRIVATE,11,University-Rosedale,191 ST GEORGE ST,10,105,2017-10-10,59,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,,S1127,43.671558223999995,-79.40109940800001,312759.44399999996,4836628.436000001
-897033,4167698,2017.0,2017.0,1963.0,PRIVATE,13,Toronto Centre,40 ALEXANDER ST,19,244,2017-10-10,74,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,3.0,,3.0,4.0,3.0,3.0,,3.0,3.0,5.0,3.0,4.0,5.0,4.0,4.0,3.0,,S1326,,,314334.646,4835774.919
-897034,4167699,2017.0,2017.0,1963.0,PRIVATE,13,Toronto Centre,50 ALEXANDER ST,29,217,2017-10-10,76,Evaluation needs to be conducted in 2 years,17,4.0,4.0,5.0,4.0,,4.0,4.0,3.0,4.0,,3.0,2.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,S1326,,,314334.646,4835774.919
-897035,4167700,2017.0,2017.0,1963.0,PRIVATE,13,Toronto Centre,55 MAITLAND PL,18,244,2017-10-10,78,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,4.0,3.0,4.0,3.0,4.0,,3.0,3.0,5.0,4.0,5.0,5.0,4.0,4.0,3.0,,S1326,,,314334.646,4835774.919
-897036,4153486,2017.0,2017.0,1968.0,PRIVATE,13,Toronto Centre,100 ALEXANDER ST,12,96,2017-10-10,62,Evaluation needs to be conducted in 1 year,18,3.0,4.0,4.0,3.0,2.0,2.0,3.0,3.0,3.0,,3.0,3.0,4.0,3.0,2.0,4.0,4.0,3.0,3.0,,S1326,43.664161955299996,-79.3792187274,314525.392,4835808.179
-897037,4154389,2017.0,2017.0,1955.0,PRIVATE,6,York Centre,1497 WILSON AVE,4,42,2017-10-10,74,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,4.0,3.0,,4.0,,2.0,4.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,,N0631,43.72097928310001,-79.5051259497,304371.503,4842113.317
-897038,4154388,2017.0,2017.0,1958.0,PRIVATE,6,York Centre,1505 WILSON AVE,4,55,2017-10-10,71,Evaluation needs to be conducted in 2 years,16,4.0,3.0,4.0,3.0,3.0,4.0,,4.0,,,3.0,3.0,5.0,4.0,4.0,2.0,2.0,4.0,5.0,,N0631,43.7207964113,-79.5055990345,304333.381,4842093.005
-897039,4154387,2017.0,2017.0,1958.0,PRIVATE,6,York Centre,1515 WILSON AVE,4,55,2017-10-10,73,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,3.0,4.0,,3.0,3.0,3.0,3.0,2.0,5.0,4.0,4.0,4.0,3.0,4.0,5.0,,N0631,43.7208314192,-79.50603393760001,304298.338,4842096.898
-897040,4154386,2017.0,2017.0,1958.0,PRIVATE,6,York Centre,1525 WILSON AVE,4,21,2017-10-10,68,Evaluation needs to be conducted in 2 years,16,3.0,4.0,4.0,2.0,3.0,4.0,,4.0,,,4.0,2.0,5.0,2.0,4.0,4.0,2.0,3.0,4.0,,N0631,43.7207617209,-79.5064382692,304265.757,4842089.159
-897041,4155882,2017.0,2017.0,1962.0,PRIVATE,4,Parkdale-High Park,65 WINDERMERE AVE,6,92,2017-10-10,66,Evaluation needs to be conducted in 2 years,17,4.0,3.0,3.0,3.0,4.0,2.0,,4.0,4.0,,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,4.0,,S0430,43.6390679987,-79.47154026609999,307080.62899999996,4833013.756
-897042,4156104,2017.0,2017.0,1962.0,PRIVATE,4,Parkdale-High Park,75 WINDERMERE AVE,6,52,2017-10-10,66,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,4.0,2.0,2.0,4.0,3.0,,3.0,3.0,5.0,3.0,3.0,3.0,4.0,4.0,4.0,,S0430,43.63943104,-79.471915958,307058.811,4833040.19
-897043,4153843,2017.0,2017.0,1965.0,PRIVATE,15,Don Valley West,100 BROADWAY AVE,10,47,2017-10-10,77,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,,4.0,4.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,,N1526,43.710882418999994,-79.39365545,313354.217,4840998.067
-897044,4153817,2017.0,2017.0,1954.0,PRIVATE,12,Toronto-St. Paul's,117 BROADWAY AVE,4,71,2017-10-10,75,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,3.0,4.0,,3.0,3.0,,4.0,4.0,5.0,4.0,4.0,3.0,4.0,3.0,4.0,,S1221,43.710438992,-79.392666123,313434.01,4840948.906
-897045,4154879,2017.0,2017.0,1966.0,PRIVATE,16,Don Valley East,1698 VICTORIA PARK AVE,5,52,2017-10-10,64,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,3.0,4.0,2.0,4.0,4.0,4.0,2.0,3.0,4.0,4.0,2.0,,N1628,43.733752898199995,-79.3068920324,320340.518,4843550.409
-897046,4154423,2017.0,2017.0,1969.0,PRIVATE,6,York Centre,2856 KEELE ST,3,11,2017-10-06,80,Evaluation needs to be conducted in 2 years,15,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,,,4.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,N0627,43.7318064757,-79.4837155622,306096.38300000003,4843316.2469999995
-897047,4153214,2017.0,2017.0,1965.0,PRIVATE,11,University-Rosedale,485 HURON ST,13,70,2017-10-06,59,Evaluation needs to be conducted in 1 year,19,3.0,3.0,2.0,2.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,2.0,5.0,3.0,3.0,3.0,4.0,2.0,2.0,,S1127,43.669000001,-79.401866897,312697.875,4836344.163
-897048,4153030,2017.0,2017.0,1910.0,SOCIAL HOUSING,4,Parkdale-High Park,149 JAMESON AVE,5,48,2017-10-06,68,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,,3.0,3.0,5.0,4.0,3.0,4.0,3.0,3.0,5.0,,S0436,43.6374026152,-79.4357893144,309965.285,4832830.29
-897049,4155379,2017.0,2017.0,1968.0,PRIVATE,2,Etobicoke Centre,328 THE WEST MALL,3,32,2017-10-06,58,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,3.0,3.0,3.0,2.0,5.0,3.0,3.0,3.0,2.0,3.0,2.0,3.0,W0233,43.637313338599995,-79.564053632,299616.185,4832820.397
-897050,4156366,2017.0,2017.0,1982.0,SOCIAL HOUSING,12,Toronto-St. Paul's,200 ELLSWORTH AVE,3,18,2017-10-06,72,Evaluation needs to be conducted in 2 years,15,3.0,4.0,4.0,3.0,,4.0,,3.0,,,3.0,2.0,5.0,4.0,2.0,5.0,4.0,5.0,3.0,,S1234,43.6807933041,-79.4261720553,310736.942,4837651.406
-897051,4166732,2017.0,2017.0,1965.0,PRIVATE,17,Don Valley North,80 FOREST MANOR RD,18,287,2017-10-06,69,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,3.0,4.0,4.0,4.0,3.0,3.0,,3.0,2.0,5.0,3.0,4.0,4.0,3.0,4.0,2.0,,N1730,43.77494536,-79.344585933,317295.272,4848121.27
-897052,4227299,2017.0,2017.0,1962.0,PRIVATE,6,York Centre,4100 BATHURST ST,5,37,2017-10-06,58,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0629,43.7454927714,-79.4364245515,309904.96,4844838.53
-897053,4154602,2017.0,2017.0,1950.0,PRIVATE,6,York Centre,4110 BATHURST ST,3,16,2017-10-06,59,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,2.0,2.0,,3.0,,,3.0,3.0,5.0,2.0,3.0,3.0,3.0,3.0,3.0,,N0629,43.74586214,-79.4365128127,309897.822,4844879.562
-897054,4154552,2017.0,2017.0,1958.0,PRIVATE,8,Eglinton-Lawrence,3388 BATHURST ST,4,34,2017-10-06,62,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,,4.0,3.0,3.0,3.0,,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0823,43.726280198400005,-79.4318793095,310272.772,4842704.437
-897055,4155381,2017.0,2017.0,1969.0,PRIVATE,2,Etobicoke Centre,306 THE WEST MALL,5,48,2017-10-06,60,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,4.0,,3.0,3.0,,3.0,2.0,4.0,3.0,2.0,3.0,2.0,4.0,3.0,,W0233,43.635999846400004,-79.5629152315,299707.924,4832674.405
-897056,4154499,2017.0,2017.0,1964.0,PRIVATE,8,Eglinton-Lawrence,3690 BATHURST ST,7,47,2017-10-06,62,Evaluation needs to be conducted in 1 year,18,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0823,43.734306073,-79.433720291,310123.458,4843596.89
-897057,4154479,2017.0,2017.0,1978.0,PRIVATE,7,Humber River-Black Creek,500 MURRAY ROSS PKWY,19,390,2017-10-06,77,Evaluation needs to be conducted in 2 years,19,4.0,3.0,5.0,3.0,3.0,3.0,3.0,4.0,5.0,,4.0,3.0,5.0,5.0,3.0,4.0,5.0,4.0,3.0,4.0,W0726,43.764180371,-79.505752773,304321.162,4846913.669
-897058,4154881,2017.0,2017.0,1968.0,PRIVATE,16,Don Valley East,1710 VICTORIA PARK AVE,4,59,2017-10-06,66,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,3.0,2.0,2.0,3.0,3.0,,3.0,4.0,5.0,3.0,4.0,3.0,3.0,3.0,4.0,,N1628,43.735657495,-79.3078726793,320261.032,4843761.808999999
-897059,4154594,2017.0,2017.0,1960.0,PRIVATE,6,York Centre,3886 BATHURST ST,4,28,2017-10-06,64,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,3.0,4.0,3.0,,4.0,,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,N0629,43.7425586658,-79.4358613114,309950.559,4844512.5819999995
-897060,4155390,2017.0,2017.0,1962.0,PRIVATE,2,Etobicoke Centre,350 THE WEST MALL,6,55,2017-10-06,62,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,2.0,3.0,4.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,,W0233,43.639035156999995,-79.564993488,299540.24600000004,4833012.694
-897061,4155391,2017.0,2017.0,1965.0,PRIVATE,2,Etobicoke Centre,336 THE WEST MALL,3,10,2017-10-06,60,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,3.0,3.0,2.0,5.0,3.0,4.0,3.0,3.0,3.0,2.0,,W0233,43.6378421454,-79.5644587873,299583.542,4832879.17
-897062,4156532,2017.0,2017.0,1975.0,PRIVATE,2,Etobicoke Centre,53 WIDDICOMBE HILL BLVD,18,139,2017-10-06,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,,4.0,3.0,5.0,4.0,4.0,4.0,,3.0,3.0,4.0,W0222,43.67822939,-79.5525004391,300551.32,4837365.403
-897063,4154097,2017.0,2017.0,1968.0,PRIVATE,14,Toronto-Danforth,210 COSBURN AVE,4,33,2017-10-06,60,Evaluation needs to be conducted in 1 year,17,3.0,2.0,3.0,2.0,3.0,2.0,,3.0,,3.0,3.0,2.0,5.0,4.0,2.0,4.0,4.0,4.0,2.0,,S1422,43.690544653,-79.3443418655,317332.707,4838743.813999999
-897064,4154314,2017.0,2017.0,1965.0,PRIVATE,5,York South-Weston,2623 KEELE ST,3,11,2017-10-06,66,Evaluation needs to be conducted in 2 years,16,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,4.0,4.0,3.0,4.0,3.0,3.0,,W0523,43.7203778821,-79.48023467510001,306377.076,4842046.653
-897065,4154089,2017.0,2017.0,1958.0,PRIVATE,14,Toronto-Danforth,149 COSBURN AVE,4,29,2017-10-06,78,Evaluation needs to be conducted in 2 years,16,4.0,4.0,3.0,4.0,4.0,2.0,,3.0,,,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,S1422,43.6896822346,-79.3460278101,317196.981,4838647.758
-897066,4154425,2017.0,2017.0,1945.0,PRIVATE,6,York Centre,2852 KEELE ST,3,11,2017-10-06,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,2.0,3.0,,4.0,,3.0,3.0,2.0,5.0,3.0,4.0,3.0,,3.0,2.0,,N0627,43.7314423393,-79.4836241974,306103.75,4843275.795
-897067,4154426,2017.0,2017.0,1963.0,PRIVATE,6,York Centre,2850 KEELE ST,3,12,2017-10-06,69,Evaluation needs to be conducted in 2 years,15,3.0,2.0,2.0,4.0,3.0,3.0,,4.0,,,4.0,3.0,5.0,4.0,4.0,4.0,,4.0,3.0,,N0627,43.7312520976,-79.4835802979,306107.29,4843254.661
-897068,4154411,2017.0,2017.0,1962.0,PRIVATE,6,York Centre,2788 KEELE ST,4,41,2017-10-06,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,,N0627,43.728314195900005,-79.4827840355,306171.49100000004,4842928.283
-897069,4154412,2017.0,2017.0,1965.0,PRIVATE,6,York Centre,2782 KEELE ST,4,27,2017-10-06,61,Evaluation needs to be conducted in 1 year,17,3.0,3.0,4.0,2.0,2.0,3.0,,4.0,2.0,,2.0,3.0,5.0,4.0,3.0,3.0,2.0,4.0,3.0,,N0627,43.7279008262,-79.4829037793,306161.851,4842882.356000001
-897070,4152989,2017.0,2017.0,1955.0,PRIVATE,4,Parkdale-High Park,130 JAMESON AVE,7,108,2017-10-06,62,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,S0437,43.636376149700006,-79.4361595734,309935.497,4832716.239
-897071,4155182,2017.0,2017.0,1970.0,PRIVATE,5,York South-Weston,797 JANE ST,12,93,2017-10-06,68,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,2.0,3.0,4.0,,4.0,3.0,,4.0,3.0,5.0,3.0,3.0,3.0,4.0,4.0,3.0,,W0539,43.6740732037,-79.4944079231,305235.286,4836902.29
-897072,4154469,2017.0,2017.0,1970.0,PRIVATE,7,Humber River-Black Creek,390 SENTINEL RD,4,53,2017-10-06,72,Evaluation needs to be conducted in 2 years,17,4.0,5.0,4.0,3.0,2.0,5.0,,3.0,4.0,,3.0,3.0,5.0,3.0,3.0,3.0,4.0,5.0,2.0,,W0731,43.760254857700005,-79.5002027299,304768.3,4846476.5819999995
-897073,4155198,2017.0,2017.0,1960.0,PRIVATE,5,York South-Weston,898 JANE ST,8,63,2017-10-06,71,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,3.0,3.0,4.0,4.0,4.0,,4.0,3.0,5.0,4.0,3.0,3.0,3.0,4.0,4.0,,W0534,43.6776538886,-79.49672691939999,305048.27,4837300.091
-897074,4155192,2017.0,2017.0,1960.0,PRIVATE,5,York South-Weston,31 ROCKCLIFFE BLVD,3,39,2017-10-06,60,Evaluation needs to be conducted in 1 year,15,3.0,3.0,4.0,3.0,3.0,3.0,,2.0,,,3.0,3.0,5.0,3.0,2.0,3.0,,3.0,2.0,,W0535,43.681298308500004,-79.49092785159999,305515.835,4837704.985
-897075,4155197,2017.0,2017.0,1973.0,PRIVATE,5,York South-Weston,890 JANE ST,15,146,2017-10-06,66,Evaluation needs to be conducted in 2 years,17,3.0,3.0,4.0,4.0,4.0,3.0,,3.0,3.0,,3.0,4.0,5.0,3.0,3.0,3.0,2.0,3.0,3.0,,W0534,43.6765889645,-79.49634895770001,305078.753,4837181.778
-897076,4154595,2017.0,2017.0,1960.0,PRIVATE,6,York Centre,3884 BATHURST ST,4,28,2017-10-05,68,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,4.0,3.0,,4.0,,,3.0,3.0,5.0,3.0,3.0,3.0,4.0,3.0,3.0,,N0629,43.7422578587,-79.4357863772,309956.619,4844479.1680000005
-897077,4154596,2017.0,2017.0,1960.0,PRIVATE,6,York Centre,3880 BATHURST ST,4,58,2017-10-05,66,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,3.0,3.0,3.0,,4.0,3.0,,3.0,4.0,4.0,4.0,4.0,3.0,3.0,3.0,3.0,,N0629,43.741815421000005,-79.4356700472,309966.025,4844430.022
-897078,4155481,2017.0,2017.0,1957.0,PRIVATE,3,Etobicoke-Lakeshore,2303 LAKE SHORE BLVD W,4,38,2017-10-05,67,Evaluation needs to be conducted in 2 years,15,3.0,4.0,3.0,3.0,4.0,3.0,,3.0,,,3.0,4.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0336,43.6181573986,-79.48620440270001,305864.468,4830685.073
-897079,4155480,2017.0,2017.0,1954.0,PRIVATE,3,Etobicoke-Lakeshore,2309 LAKE SHORE BLVD W,4,28,2017-10-05,63,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,3.0,,3.0,3.0,,W0336,43.6177159242,-79.4864921975,305843.963,4830639.407
-897080,4154369,2017.0,2017.0,1953.0,PRIVATE,6,York Centre,823 WILSON AVE,3,11,2017-10-05,68,Evaluation needs to be conducted in 2 years,15,3.0,3.0,3.0,4.0,2.0,4.0,,4.0,,,2.0,3.0,5.0,3.0,4.0,4.0,,4.0,3.0,,N0632,43.7316251589,-79.461395515,307894.467,4843296.678
-897081,4155768,2017.0,2017.0,2006.0,PRIVATE,17,Don Valley North,121 PARKWAY FOREST DR,14,232,2017-10-04,77,Evaluation needs to be conducted in 2 years,19,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,,3.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,N1730,43.77537607560001,-79.34070748479999,317568.76399999997,4848085.643
-897082,4232789,2017.0,2017.0,1970.0,PRIVATE,17,Don Valley North,125 PARKWAY FOREST DR,18,287,2017-10-04,72,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,,3.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,2.0,,N1730,43.775336545,-79.342323333,317477.331,4848165.074
-897083,4250262,2017.0,2017.0,1989.0,SOCIAL HOUSING,11,University-Rosedale,805 BLOOR ST W,4,24,2017-10-04,63,Evaluation needs to be conducted in 1 year,19,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,S1132,43.662679383000004,-79.421476232,311117.231,4835640.346
-897084,4153170,2017.0,2017.0,1920.0,PRIVATE,11,University-Rosedale,711 BLOOR ST W,3,12,2017-10-04,59,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,2.0,3.0,,3.0,,2.0,3.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,2.0,,S1133,43.663485375600004,-79.4178022467,311413.725,4835729.2360000005
-897085,4154099,2017.0,2017.0,1955.0,PRIVATE,14,Toronto-Danforth,246 COSBURN AVE,6,40,2017-10-04,86,Evaluation needs to be conducted in 3 years,18,5.0,5.0,4.0,4.0,4.0,5.0,,4.0,5.0,4.0,4.0,2.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,,S1422,43.6908769732,-79.3430214512,317439.08,4838780.927
-897086,4154527,2017.0,2017.0,1957.0,PRIVATE,8,Eglinton-Lawrence,32 HOTSPUR RD,3,10,2017-10-04,53,Evaluation needs to be conducted in 1 year,16,3.0,3.0,2.0,2.0,2.0,3.0,,2.0,,,3.0,2.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,,N0823,43.732850466,-79.435796774,309949.31,4843417.109
-897087,4154292,2017.0,2017.0,1961.0,PRIVATE,5,York South-Weston,2100 KEELE ST,6,71,2017-10-04,67,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,4.0,3.0,3.0,,4.0,4.0,,3.0,3.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,,W0529,43.6995126232,-79.47655998409999,306673.795,4839728.7
-897088,4154237,2017.0,2017.0,1970.0,PRIVATE,7,Humber River-Black Creek,50 DRIFTWOOD AVE,14,109,2017-10-04,68,Evaluation needs to be conducted in 2 years,17,4.0,3.0,3.0,3.0,3.0,4.0,,4.0,4.0,,2.0,3.0,5.0,4.0,2.0,3.0,3.0,5.0,3.0,,W0730,43.7522915804,-79.51363863,303686.26,4845592.022
-897089,4152813,2017.0,2017.0,1964.0,PRIVATE,24,Scarborough-Guildwood,35 CONFEDERATION DR,8,133,2017-10-04,72,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,2.0,3.0,3.0,,4.0,3.0,,3.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,,E2430,43.7572104007,-79.2230052748,327089.333,4846175.445
-897090,4152926,2017.0,2017.0,1992.0,SOCIAL HOUSING,4,Parkdale-High Park,1624 BLOOR ST W,6,94,2017-10-04,67,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,4.0,3.0,4.0,3.0,3.0,,3.0,3.0,5.0,3.0,4.0,3.0,3.0,3.0,3.0,,S0429,43.655863811,-79.45598401699999,308334.55100000004,4834881.192
-897091,4154082,2017.0,2017.0,1992.0,SOCIAL HOUSING,19,Beaches-East York,1430 WOODBINE AVE,6,61,2017-10-04,94,Evaluation needs to be conducted in 3 years,19,4.0,5.0,4.0,5.0,5.0,5.0,5.0,4.0,4.0,,4.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,S1925,43.6985761673,-79.31879616319999,319390.076,4839640.288
-897092,4154238,2017.0,2017.0,1968.0,PRIVATE,7,Humber River-Black Creek,2755 JANE ST,12,118,2017-10-04,66,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,3.0,3.0,2.0,3.0,2.0,,3.0,4.0,5.0,5.0,2.0,2.0,5.0,5.0,2.0,,W0730,43.7476852259,-79.51463245640001,303606.137,4845080.285
-897093,4154239,2017.0,2017.0,1975.0,PRIVATE,7,Humber River-Black Creek,2775 JANE ST,17,198,2017-10-04,72,Evaluation needs to be conducted in 2 years,18,3.0,3.0,4.0,3.0,3.0,5.0,4.0,3.0,5.0,,4.0,3.0,5.0,3.0,3.0,3.0,3.0,5.0,3.0,,W0730,43.7486644671,-79.5146201429,303607.148,4845189.076
-897094,4154500,2017.0,2017.0,1960.0,PRIVATE,8,Eglinton-Lawrence,93 NEPTUNE DR,3,10,2017-10-04,58,Evaluation needs to be conducted in 1 year,17,3.0,3.0,2.0,3.0,3.0,3.0,,2.0,,3.0,3.0,2.0,5.0,3.0,3.0,3.0,3.0,3.0,2.0,,N0823,43.7316875988,-79.43837313590001,309749.131,4843304.7530000005
-897095,4154092,2017.0,2017.0,1960.0,PRIVATE,14,Toronto-Danforth,185 COSBURN AVE,6,37,2017-10-04,68,Evaluation needs to be conducted in 2 years,17,3.0,4.0,3.0,3.0,4.0,1.0,,3.0,3.0,,3.0,3.0,5.0,4.0,3.0,4.0,5.0,3.0,4.0,,S1422,43.6899387618,-79.3447178819,317302.522,4838676.447
-897096,4154038,2017.0,2017.0,1959.0,PRIVATE,19,Beaches-East York,540 DAWES RD,4,43,2017-10-04,68,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,2.0,3.0,4.0,,3.0,3.0,,3.0,3.0,5.0,3.0,3.0,4.0,4.0,3.0,3.0,,S1927,43.705971488500005,-79.2960157018,321224.25,4840466.096
-897097,4154041,2017.0,2017.0,1960.0,PRIVATE,19,Beaches-East York,510 DAWES RD,4,62,2017-10-04,60,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,2.0,2.0,3.0,,3.0,4.0,,3.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,2.0,,S1927,43.704347801000004,-79.297293072,321121.48,4840286.411
-897098,4154519,2017.0,2017.0,1974.0,PRIVATE,8,Eglinton-Lawrence,3636 BATHURST ST,19,225,2017-10-04,72,Evaluation needs to be conducted in 2 years,19,5.0,4.0,4.0,4.0,3.0,4.0,4.0,2.0,4.0,,4.0,3.0,5.0,3.0,3.0,3.0,3.0,2.0,4.0,4.0,N0823,43.7325245574,-79.4331792399,310167.468,4843398.065
-897099,4155388,2017.0,2017.0,1974.0,PRIVATE,2,Etobicoke Centre,19 EVA RD,14,152,2017-10-04,68,Evaluation needs to be conducted in 2 years,18,3.0,3.0,3.0,3.0,3.0,4.0,3.0,4.0,3.0,,3.0,3.0,5.0,3.0,4.0,4.0,3.0,3.0,4.0,,W0233,43.637506998,-79.56171027,299605.598,4833037.805
-897100,4152838,2017.0,2017.0,1985.0,SOCIAL HOUSING,24,Scarborough-Guildwood,4201-4203 KINGSTON RD,3,39,2017-10-04,59,Evaluation needs to be conducted in 1 year,17,2.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,2.0,3.0,4.0,3.0,3.0,3.0,2.0,4.0,3.0,4.0,E2432,43.760255326199996,-79.1959527881,329266.458,4846521.28
-897101,4155205,2017.0,2017.0,1959.0,PRIVATE,4,Parkdale-High Park,4029 OLD DUNDAS ST,8,29,2017-10-04,54,Evaluation needs to be conducted in 1 year,17,2.0,3.0,4.0,2.0,3.0,3.0,,3.0,2.0,,2.0,3.0,3.0,4.0,2.0,3.0,2.0,3.0,2.0,,S0421,43.6639708719,-79.5021353711,304612.07,4835780.002
-897102,4155203,2017.0,2017.0,1958.0,PRIVATE,4,Parkdale-High Park,4070 OLD DUNDAS ST,5,48,2017-10-04,66,Evaluation needs to be conducted in 2 years,17,3.0,4.0,4.0,4.0,3.0,2.0,,3.0,3.0,,3.0,3.0,5.0,3.0,4.0,3.0,2.0,4.0,3.0,,S0421,43.662865718,-79.504063965,304456.251,4835658.188999999
-897103,4154528,2017.0,2017.0,1956.0,PRIVATE,8,Eglinton-Lawrence,78 NEPTUNE DR,3,12,2017-10-04,53,Evaluation needs to be conducted in 1 year,16,3.0,3.0,3.0,2.0,3.0,3.0,,2.0,,,3.0,2.0,4.0,3.0,2.0,2.0,1.0,3.0,3.0,,N0823,43.7328466433,-79.4361394574,309928.972,4843433.651000001
-897104,4153822,2017.0,2017.0,1964.0,PRIVATE,12,Toronto-St. Paul's,200 ROEHAMPTON AVE,13,228,2017-10-04,72,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,4.0,,3.0,4.0,3.0,3.0,4.0,4.0,4.0,3.0,3.0,3.0,S1221,43.70953529,-79.39239920600001,313455.652,4840848.535
-897105,4153815,2017.0,2017.0,1965.0,PRIVATE,12,Toronto-St. Paul's,177 REDPATH AVE,17,148,2017-10-04,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,S1221,43.709723233000005,-79.393094085,313399.624,4840869.343
-897106,4154073,2017.0,2017.0,1968.0,PRIVATE,19,Beaches-East York,114 BARRINGTON AVE,3,12,2017-10-03,55,Evaluation needs to be conducted in 1 year,16,2.0,4.0,3.0,2.0,3.0,2.0,,4.0,,,2.0,2.0,4.0,3.0,2.0,3.0,2.0,3.0,3.0,,S1930,43.692368796000004,-79.302666418,320691.542,4838954.561000001
-897107,4156167,2017.0,2017.0,1960.0,PRIVATE,3,Etobicoke-Lakeshore,92 JAMES ST,3,34,2017-10-03,63,Evaluation needs to be conducted in 1 year,16,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,,,3.0,3.0,3.0,3.0,3.0,3.0,,3.0,4.0,,W0334,43.5899805571,-79.5423873901,301361.733,4827560.91
-897108,4152920,2017.0,2017.0,1910.0,PRIVATE,4,Parkdale-High Park,35 JANE ST,3,18,2017-10-03,67,Evaluation needs to be conducted in 2 years,14,4.0,3.0,4.0,3.0,,2.0,,3.0,,,4.0,3.0,5.0,3.0,3.0,3.0,,4.0,3.0,,S0426,43.650362426,-79.48450395649999,306034.424,4834268.283
-897109,4152832,2017.0,2017.0,1974.0,PRIVATE,24,Scarborough-Guildwood,51 TRAILRIDGE CRES,17,200,2017-10-03,80,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,4.0,5.0,3.0,4.0,4.0,,3.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,5.0,E2423,43.78311931,-79.206148943,328436.268,4849059.449
-897110,4154166,2017.0,2017.0,1962.0,PRIVATE,15,Don Valley West,42 THORNCLIFFE PARK DR,6,60,2017-10-03,71,Evaluation needs to be conducted in 2 years,17,3.0,4.0,4.0,3.0,3.0,4.0,,4.0,5.0,,3.0,4.0,5.0,3.0,4.0,3.0,3.0,3.0,2.0,,N1533,43.702195489,-79.343701311,317381.647,4840039.243
-897111,4154165,2017.0,2017.0,1964.0,PRIVATE,15,Don Valley West,44 THORNCLIFFE PARK DR,6,90,2017-10-03,72,Evaluation needs to be conducted in 2 years,19,4.0,4.0,4.0,3.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,5.0,3.0,4.0,3.0,4.0,3.0,3.0,,N1533,43.702592381,-79.342924935,317444.14,4840083.458000001
-897112,4155376,2017.0,2017.0,1965.0,PRIVATE,2,Etobicoke Centre,265 MARKLAND DR,13,149,2017-10-03,68,Evaluation needs to be conducted in 2 years,18,4.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,,3.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0233,43.628474685600004,-79.57963997479999,298357.691,4831839.575
-897113,4155375,2017.0,2017.0,1965.0,PRIVATE,2,Etobicoke Centre,287 MARKLAND DR,10,118,2017-10-03,62,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,3.0,4.0,5.0,3.0,3.0,3.0,2.0,3.0,2.0,,W0233,43.6275335945,-79.5780494311,298485.94899999996,4831734.901000001
-897114,4153752,2017.0,2017.0,1960.0,PRIVATE,11,University-Rosedale,309 MOUNT PLEASANT RD,3,25,2017-10-03,63,Evaluation needs to be conducted in 1 year,15,4.0,4.0,3.0,4.0,,2.0,,3.0,,,3.0,2.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,,S1122,43.690180248599994,-79.38293192020001,314221.897,4838698.284
-897115,4155754,2017.0,2017.0,1959.0,PRIVATE,3,Etobicoke-Lakeshore,2301 LAKE SHORE BLVD W,4,88,2017-10-03,68,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,4.0,4.0,3.0,,3.0,4.0,,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,,W0336,43.618345356999995,-79.48579165619999,305931.095,4830711.346
-897116,4153986,2017.0,2017.0,1958.0,PRIVATE,8,Eglinton-Lawrence,640 ROSELAWN AVE,8,138,2017-09-28,68,Evaluation needs to be conducted in 2 years,18,3.0,4.0,4.0,3.0,3.0,2.0,3.0,3.0,4.0,,3.0,2.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,,N0833,43.706149857,-79.423624259,310939.623,4840469.61
-897117,4250094,2018.0,2017.0,1922.0,PRIVATE,4,Parkdale-High Park,81 WILSON PARK RD,3,16,2017-09-21,49,Building Audit,14,2.0,2.0,2.0,2.0,,3.0,,3.0,,,2.0,2.0,2.0,3.0,3.0,3.0,,2.0,3.0,,S0436,43.6391098783,-79.44211512140001,309454.75899999996,4833019.6
-897118,4155474,2017.0,2017.0,1970.0,PRIVATE,3,Etobicoke-Lakeshore,2377 LAKE SHORE BLVD W,4,23,2017-09-19,55,Evaluation needs to be conducted in 1 year,17,3.0,3.0,3.0,3.0,2.0,2.0,,3.0,3.0,,3.0,3.0,3.0,3.0,3.0,3.0,1.0,3.0,3.0,,W0336,43.6154404667,-79.4878892475,305761.833,4830388.607
-897119,4152928,2017.0,2017.0,1924.0,PRIVATE,4,Parkdale-High Park,1778 BLOOR ST W,3,21,2017-09-19,65,Evaluation needs to be conducted in 1 year,15,4.0,3.0,3.0,3.0,2.0,3.0,,1.0,,,3.0,2.0,5.0,4.0,5.0,3.0,,5.0,3.0,,S0428,43.654816958999994,-79.460940647,307934.791,4834764.694
-897120,4153165,2017.0,2017.0,1928.0,PRIVATE,9,Davenport,1019 BLOOR ST W,3,26,2017-09-19,57,Evaluation needs to be conducted in 1 year,15,3.0,2.0,2.0,4.0,,2.0,,4.0,,,3.0,2.0,5.0,3.0,3.0,2.0,2.0,3.0,3.0,,S0934,43.6606296548,-79.4308395547,310362.521,4835410.9969999995
-897121,4154333,2017.0,2017.0,1970.0,PRIVATE,5,York South-Weston,1855 JANE ST,17,206,2017-09-19,58,Evaluation needs to be conducted in 1 year,19,3.0,3.0,3.0,2.0,3.0,3.0,2.0,4.0,3.0,,2.0,2.0,3.0,4.0,3.0,3.0,4.0,3.0,2.0,3.0,W0528,43.708111644700004,-79.50445776149999,304425.229,4840683.807
-897122,4154285,2017.0,2017.0,1965.0,PRIVATE,5,York South-Weston,45 GULLIVER RD,5,43,2017-09-19,68,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,4.0,4.0,4.0,3.0,3.0,3.0,,3.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,,W0529,43.6983227203,-79.4785516514,306513.29,4839596.471
-897123,4155005,2017.0,2017.0,1955.0,PRIVATE,12,Toronto-St. Paul's,1071 EGLINTON AVE W,3,33,2017-09-18,64,Evaluation needs to be conducted in 1 year,15,3.0,3.0,3.0,3.0,3.0,2.0,,3.0,,,3.0,3.0,4.0,2.0,5.0,4.0,,3.0,4.0,,S1224,43.6988240231,-79.4343514595,310075.95,4839654.0139999995
-897124,4154493,2017.0,2017.0,1967.0,PRIVATE,8,Eglinton-Lawrence,1049 LAWRENCE AVE W,3,20,2017-09-18,70,Evaluation needs to be conducted in 2 years,16,3.0,4.0,3.0,2.0,2.0,4.0,,4.0,,,3.0,3.0,5.0,4.0,4.0,3.0,3.0,5.0,4.0,,N0826,43.712614926099995,-79.4604691719,307970.05,4841184.777
-897125,4154280,2017.0,2017.0,1966.0,PRIVATE,5,York South-Weston,11 GULLIVER RD,6,42,2017-09-18,64,Evaluation needs to be conducted in 1 year,17,4.0,3.0,3.0,4.0,3.0,4.0,,3.0,2.0,,3.0,2.0,3.0,3.0,4.0,3.0,3.0,3.0,4.0,,W0529,43.6988301169,-79.47621626680001,306701.52,4839652.882
-897126,4154315,2017.0,2017.0,1958.0,PRIVATE,5,York South-Weston,2637 KEELE ST,3,12,2017-09-18,79,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,4.0,4.0,,4.0,,4.0,3.0,3.0,5.0,4.0,4.0,3.0,,4.0,5.0,,W0523,43.7208097276,-79.4802643033,306374.678,4842094.627
-897127,4154284,2017.0,2017.0,1967.0,PRIVATE,5,York South-Weston,35 GULLIVER RD,6,42,2017-09-18,67,Evaluation needs to be conducted in 2 years,17,3.0,3.0,3.0,4.0,4.0,4.0,,4.0,2.0,,3.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,4.0,,W0529,43.6984374675,-79.4780739055,306551.797,4839609.226
-897128,4155054,2017.0,2017.0,1956.0,PRIVATE,8,Eglinton-Lawrence,1030 CASTLEFIELD AVE,5,56,2017-09-18,74,Evaluation needs to be conducted in 2 years,17,3.0,4.0,3.0,4.0,3.0,4.0,,3.0,4.0,,4.0,5.0,5.0,4.0,3.0,3.0,2.0,5.0,4.0,,N0831,43.7009672272,-79.4495637221,308849.641,4839891.251
-897129,4167691,2017.0,2017.0,1960.0,PRIVATE,6,York Centre,2956 KEELE ST,3,11,2017-09-18,73,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,3.0,4.0,,4.0,,,3.0,3.0,5.0,4.0,4.0,3.0,4.0,3.0,5.0,,N0627,43.735513831999995,-79.484593132,306025.356,4843729.057
-897130,4153772,2017.0,2017.0,1968.0,PRIVATE,12,Toronto-St. Paul's,200 BALLIOL ST,23,366,2017-09-18,81,Evaluation needs to be conducted in 2 years,20,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,S1233,43.699217400100004,-79.3900854434,313643.88899999997,4839701.512
-897131,4232788,2017.0,2017.0,2015.0,PRIVATE,17,Don Valley North,106 PARKWAY FOREST DR,7,95,2017-09-15,93,Evaluation needs to be conducted in 3 years,17,4.0,4.0,5.0,5.0,,5.0,5.0,3.0,5.0,,4.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,,N1730,43.774094874,-79.341793943,317512.06899999996,4848026.048
-897132,4155789,2017.0,2017.0,1958.0,PRIVATE,16,Don Valley East,1122 DON MILLS RD,6,66,2017-09-15,80,Evaluation needs to be conducted in 2 years,18,4.0,4.0,5.0,3.0,5.0,2.0,3.0,5.0,4.0,,3.0,3.0,5.0,5.0,5.0,5.0,3.0,4.0,4.0,,N1623,43.73795553,-79.344349052,317321.994,4844011.915
-897133,4154965,2017.0,2017.0,1940.0,PRIVATE,12,Toronto-St. Paul's,100 VAUGHAN RD,4,33,2017-09-14,76,Evaluation needs to be conducted in 2 years,16,4.0,4.0,4.0,4.0,3.0,2.0,,4.0,,4.0,3.0,4.0,5.0,4.0,4.0,4.0,,4.0,4.0,,S1229,43.683796755500005,-79.4215781204,311107.05,4837985.411
-897134,4154249,2017.0,2017.0,1966.0,PRIVATE,7,Humber River-Black Creek,10 JAYZEL DR,7,90,2017-09-14,66,Evaluation needs to be conducted in 2 years,18,4.0,3.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,,3.0,2.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,,W0727,43.74934036609999,-79.5494302616,300803.693,4845265.279
-897135,4155417,2017.0,2017.0,1965.0,PRIVATE,1,Etobicoke North,10 BLACKFRIAR AVE,5,61,2017-09-14,76,Evaluation needs to be conducted in 2 years,18,4.0,4.0,4.0,3.0,4.0,2.0,,4.0,4.0,3.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,,W0133,43.69407154,-79.562734454,299737.70399999997,4839124.125
-897136,4154780,2017.0,2017.0,1960.0,PRIVATE,16,Don Valley East,1063 DON MILLS RD,4,43,2017-09-14,69,Evaluation needs to be conducted in 2 years,17,4.0,4.0,4.0,3.0,4.0,2.0,,3.0,4.0,,4.0,2.0,5.0,4.0,5.0,3.0,2.0,2.0,4.0,,N1627,43.7355150514,-79.3423451997,317484.175,4843740.129
-897137,4155086,2017.0,2017.0,1955.0,PRIVATE,5,York South-Weston,1720 KEELE ST,4,47,2017-09-14,70,Evaluation needs to be conducted in 2 years,16,3.0,3.0,4.0,3.0,3.0,4.0,,3.0,,,3.0,3.0,5.0,3.0,3.0,4.0,4.0,3.0,5.0,,W0536,43.685202700699996,-79.4736170741,306911.453,4838139.002
-897138,4154262,2017.0,2017.0,1977.0,PRIVATE,7,Humber River-Black Creek,10 SAN ROMANOWAY,34,428,2017-09-14,62,Evaluation needs to be conducted in 1 year,18,3.0,3.0,3.0,3.0,4.0,3.0,2.0,3.0,2.0,,4.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,,W0725,43.7585401941,-79.5166809322,303441.401,4846286.246
-897139,4152642,2017.0,2017.0,1964.0,PRIVATE,21,Scarborough Centre,1651 VICTORIA PARK AVE,8,67,2017-09-13,68,Evaluation needs to be conducted in 2 years,19,4.0,3.0,3.0,3.0,3.0,5.0,2.0,3.0,4.0,2.0,3.0,4.0,5.0,3.0,3.0,4.0,4.0,4.0,3.0,,E2131,43.7328848087,-79.3055213856,320451.154,4843454.222
diff --git a/05_src/data/slides_data/bicycle_thefts_4326.csv b/05_src/data/slides_data/bicycle_thefts_4326.csv
deleted file mode 100644
index f75ba8734..000000000
--- a/05_src/data/slides_data/bicycle_thefts_4326.csv
+++ /dev/null
@@ -1,25570 +0,0 @@
-_id,OBJECTID,event_unique_id,Primary_Offence,Occurrence_Date,Occurrence_Year,Occurrence_Month,Occurrence_DayOfWeek,Occurrence_DayOfMonth,Occurrence_DayOfYear,Occurrence_Hour,Report_Date,Report_Year,Report_Month,Report_DayOfWeek,Report_DayOfMonth,Report_DayOfYear,Report_Hour,Division,City,Hood_ID,NeighbourhoodName,Location_Type,Premises_Type,Bike_Make,Bike_Model,Bike_Type,Bike_Speed,Bike_Colour,Cost_of_Bike,Status,ObjectId2,geometry
-1,17744,GO-20179016397,THEFT UNDER,2017-10-03T00:00:00,2017,October,Tuesday,3,276,14,2017-10-03T00:00:00,2017,October,Tuesday,3,276,18,D22,Toronto,15,Kingsway South (15),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE 2,OT,7,BLK,700.0,STOLEN,1,"{'type': 'Point', 'coordinates': (-79.50655965, 43.64842688)}"
-2,17759,GO-20172033056,THEFT UNDER - BICYCLE,2017-11-08T00:00:00,2017,November,Wednesday,8,312,3,2017-11-08T00:00:00,2017,November,Wednesday,8,312,22,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,TO,1,BLK,1100.0,RECOVERED,2,"{'type': 'Point', 'coordinates': (-79.50484874, 43.65462305)}"
-3,17906,GO-20189030822,THEFT UNDER - BICYCLE,2018-09-14T00:00:00,2018,September,Friday,14,257,9,2018-09-17T00:00:00,2018,September,Monday,17,260,16,D22,Toronto,15,Kingsway South (15),Ttc Subway Station,Transit,OT,CROSSTRAIL,MT,24,BLK,904.0,STOLEN,3,"{'type': 'Point', 'coordinates': (-79.51170915, 43.648253)}"
-4,17962,GO-2015804467,THEFT UNDER,2015-05-07T00:00:00,2015,May,Thursday,7,127,18,2015-05-14T00:00:00,2015,May,Thursday,14,134,14,D22,Toronto,15,Kingsway South (15),Ttc Subway Station,Transit,GT,,TO,10,BLKDGR,400.0,STOLEN,4,"{'type': 'Point', 'coordinates': (-79.51170915, 43.648253)}"
-5,17963,GO-20159002781,THEFT UNDER,2015-05-16T00:00:00,2015,May,Saturday,16,136,12,2015-05-16T00:00:00,2015,May,Saturday,16,136,15,D22,Toronto,15,Kingsway South (15),Ttc Subway Station,Transit,GI,,MT,6,RED,600.0,STOLEN,5,"{'type': 'Point', 'coordinates': (-79.51132657, 43.64736434)}"
-6,18003,GO-20151861057,THEFT UNDER,2015-09-01T00:00:00,2015,September,Tuesday,1,244,0,2015-10-29T00:00:00,2015,October,Thursday,29,302,18,D22,Toronto,15,Kingsway South (15),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,UNK,RC,18,TRQ,100.0,STOLEN,6,"{'type': 'Point', 'coordinates': (-79.51960669, 43.64940381)}"
-7,18013,GO-20169001537,THEFT UNDER,2016-02-18T00:00:00,2016,February,Thursday,18,49,9,2016-02-18T00:00:00,2016,February,Thursday,18,49,23,D22,Toronto,15,Kingsway South (15),Ttc Subway Station,Transit,NO,SASQUATCH,MT,18,WHI,0.0,STOLEN,7,"{'type': 'Point', 'coordinates': (-79.51170915, 43.648253)}"
-8,20993,GO-2019819460,THEFT UNDER,2019-05-01T00:00:00,2019,May,Wednesday,1,121,13,2019-05-06T00:00:00,2019,May,Monday,6,126,11,D22,Toronto,15,Kingsway South (15),Ttc Bus,Transit,GARY FISHER,,OT,7,BLK,800.0,STOLEN,8,"{'type': 'Point', 'coordinates': (-79.50655965, 43.64842688)}"
-9,21209,GO-20179014159,THEFT UNDER,2017-09-06T00:00:00,2017,September,Wednesday,6,249,8,2017-09-06T00:00:00,2017,September,Wednesday,6,249,21,D22,Toronto,15,Kingsway South (15),Go Bus,Transit,UK,,RG,20,BLK,700.0,STOLEN,9,"{'type': 'Point', 'coordinates': (-79.50655965, 43.64842688)}"
-10,21999,GO-20149003203,THEFT UNDER,2014-05-07T00:00:00,2014,May,Wednesday,7,127,18,2014-05-07T00:00:00,2014,May,Wednesday,7,127,19,D22,Toronto,15,Kingsway South (15),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,HARDROCK,MT,24,ONG,550.0,STOLEN,10,"{'type': 'Point', 'coordinates': (-79.51132657, 43.64736434)}"
-11,22015,GO-20142348560,B&E,2014-06-21T00:00:00,2014,June,Saturday,21,172,12,2014-06-23T00:00:00,2014,June,Monday,23,174,10,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,RC,16,BLU,600.0,STOLEN,11,"{'type': 'Point', 'coordinates': (-79.50787435, 43.65436151)}"
-12,22028,GO-20149005396,THEFT UNDER,2014-07-24T00:00:00,2014,July,Thursday,24,205,9,2014-07-28T00:00:00,2014,July,Monday,28,209,11,D22,Toronto,15,Kingsway South (15),"Open Areas (Lakes, Parks, Rivers)",Outside,GI,,RC,50,BLK,829.0,STOLEN,12,"{'type': 'Point', 'coordinates': (-79.5140734, 43.64771876)}"
-13,22133,GO-20161846190,THEFT UNDER - BICYCLE,2016-10-14T00:00:00,2016,October,Friday,14,288,13,2016-10-17T00:00:00,2016,October,Monday,17,291,11,D22,Toronto,15,Kingsway South (15),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,HARDROCK SPORT,MT,27,BLK,690.0,STOLEN,13,"{'type': 'Point', 'coordinates': (-79.5214032, 43.65033128)}"
-14,22134,GO-20161947414,B&E W'INTENT,2016-11-02T00:00:00,2016,November,Wednesday,2,307,1,2016-11-02T00:00:00,2016,November,Wednesday,2,307,9,D22,Toronto,15,Kingsway South (15),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,7000,MT,18,BLU,1000.0,STOLEN,14,"{'type': 'Point', 'coordinates': (-79.51083523, 43.65217011)}"
-15,22135,GO-20161947414,B&E W'INTENT,2016-11-02T00:00:00,2016,November,Wednesday,2,307,1,2016-11-02T00:00:00,2016,November,Wednesday,2,307,9,D22,Toronto,15,Kingsway South (15),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,MT,18,BLKWHI,1000.0,STOLEN,15,"{'type': 'Point', 'coordinates': (-79.51083523, 43.65217011)}"
-16,22136,GO-20169013594,THEFT UNDER - BICYCLE,2016-11-18T00:00:00,2016,November,Friday,18,323,8,2016-11-18T00:00:00,2016,November,Friday,18,323,22,D22,Toronto,15,Kingsway South (15),Ttc Subway Station,Transit,RA,,MT,24,MRN,1100.0,RECOVERED,16,"{'type': 'Point', 'coordinates': (-79.50772138000002, 43.64817027)}"
-17,23817,GO-20201448996,B&E W'INTENT,2020-08-03T00:00:00,2020,August,Monday,3,216,20,2020-08-03T00:00:00,2020,August,Monday,3,216,20,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,,MT,21,BLKBLU,500.0,STOLEN,17,"{'type': 'Point', 'coordinates': (-79.50980395, 43.65910215)}"
-18,23818,GO-20201448996,B&E W'INTENT,2020-08-03T00:00:00,2020,August,Monday,3,216,20,2020-08-03T00:00:00,2020,August,Monday,3,216,20,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,,MT,21,BLKBLU,500.0,STOLEN,18,"{'type': 'Point', 'coordinates': (-79.50980395, 43.65910215)}"
-19,2837,GO-20181282906,B&E W'INTENT,2018-07-13T00:00:00,2018,July,Friday,13,194,19,2018-07-14T00:00:00,2018,July,Saturday,14,195,9,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,,MT,18,GRY,1200.0,STOLEN,19,"{'type': 'Point', 'coordinates': (-79.53884669, 43.64663626)}"
-20,23826,GO-20209021307,THEFT UNDER,2020-08-25T00:00:00,2020,August,Tuesday,25,238,14,2020-08-25T00:00:00,2020,August,Tuesday,25,238,14,D22,Toronto,15,Kingsway South (15),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,70,BLK,115.0,STOLEN,20,"{'type': 'Point', 'coordinates': (-79.50998592, 43.64767052)}"
-21,24225,GO-20179014159,THEFT UNDER,2017-09-06T00:00:00,2017,September,Wednesday,6,249,8,2017-09-06T00:00:00,2017,September,Wednesday,6,249,21,D22,Toronto,15,Kingsway South (15),Go Bus,Transit,UK,,RG,20,BLK,700.0,STOLEN,21,"{'type': 'Point', 'coordinates': (-79.50655965, 43.64842688)}"
-22,24347,GO-20189024371,THEFT UNDER - BICYCLE,2018-07-27T00:00:00,2018,July,Friday,27,208,10,2018-07-28T00:00:00,2018,July,Saturday,28,209,20,D22,Toronto,15,Kingsway South (15),Ttc Subway Station,Transit,RA,,MT,18,GRY,200.0,STOLEN,22,"{'type': 'Point', 'coordinates': (-79.49540608000001, 43.64960616)}"
-23,24479,GO-20159005553,THEFT UNDER,2015-08-08T00:00:00,2015,August,Saturday,8,220,14,2015-08-09T00:00:00,2015,August,Sunday,9,221,20,D22,Toronto,15,Kingsway South (15),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,SPECIALIZED,OT,24,SIL,600.0,STOLEN,23,"{'type': 'Point', 'coordinates': (-79.51960669, 43.64940381)}"
-24,24515,GO-20169004369,THEFT UNDER - BICYCLE,2016-05-05T00:00:00,2016,May,Thursday,5,126,10,2016-05-10T00:00:00,2016,May,Tuesday,10,131,18,D22,Toronto,15,Kingsway South (15),Schools During Supervised Activity,Educational,OT,2013,RG,8,GRY,600.0,STOLEN,24,"{'type': 'Point', 'coordinates': (-79.5214032, 43.65033128)}"
-25,24531,GO-20161308757,THEFT UNDER - BICYCLE,2016-07-21T00:00:00,2016,July,Thursday,21,203,8,2016-07-25T00:00:00,2016,July,Monday,25,207,21,D22,Toronto,15,Kingsway South (15),Ttc Subway Station,Transit,RALEIGH,,RG,3,GRN,400.0,STOLEN,25,"{'type': 'Point', 'coordinates': (-79.49540608000001, 43.64960616)}"
-26,60,GO-20179001053,THEFT UNDER,2017-01-10T00:00:00,2017,January,Tuesday,10,10,11,2017-01-23T00:00:00,2017,January,Monday,23,23,13,D22,Toronto,16,Stonegate-Queensway (16),"Apartment (Rooming House, Condo)",Apartment,GF,,MT,3,YEL,600.0,STOLEN,26,"{'type': 'Point', 'coordinates': (-79.50442129, 43.62591328)}"
-27,114,GO-2017365932,THEFT UNDER - BICYCLE,2017-02-23T00:00:00,2017,February,Thursday,23,54,18,2017-02-27T00:00:00,2017,February,Monday,27,58,20,D22,Toronto,16,Stonegate-Queensway (16),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,DIVERGE,OT,18,BLK,1600.0,STOLEN,27,"{'type': 'Point', 'coordinates': (-79.5036963, 43.62676359000001)}"
-28,1438,GO-20179015008,THEFT UNDER - BICYCLE,2017-09-16T00:00:00,2017,September,Saturday,16,259,23,2017-09-17T00:00:00,2017,September,Sunday,17,260,18,D22,Toronto,16,Stonegate-Queensway (16),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,WE THE PEOPLE,BM,1,GRY,250.0,STOLEN,28,"{'type': 'Point', 'coordinates': (-79.51355275, 43.64687723000001)}"
-29,1529,GO-20179015823,THEFT UNDER - BICYCLE,2017-09-26T00:00:00,2017,September,Tuesday,26,269,3,2017-09-26T00:00:00,2017,September,Tuesday,26,269,12,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,REDUX 1,RG,20,GRY,600.0,STOLEN,29,"{'type': 'Point', 'coordinates': (-79.49400121, 43.62822772)}"
-30,1664,GO-20171854292,THEFT UNDER,2017-10-13T00:00:00,2017,October,Friday,13,286,0,2017-10-13T00:00:00,2017,October,Friday,13,286,13,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,VILANO,,OT,21,BLKWHI,886.0,STOLEN,30,"{'type': 'Point', 'coordinates': (-79.5078332, 43.63350787)}"
-31,1960,GO-20179023093,THEFT UNDER,2017-11-11T00:00:00,2017,November,Saturday,11,315,22,2017-12-28T00:00:00,2017,December,Thursday,28,362,11,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,,MT,18,BLU,400.0,STOLEN,31,"{'type': 'Point', 'coordinates': (-79.5153314, 43.64003918)}"
-32,3498,GO-20189030880,THEFT UNDER,2018-09-17T00:00:00,2018,September,Monday,17,260,8,2018-09-17T00:00:00,2018,September,Monday,17,260,23,D22,Toronto,16,Stonegate-Queensway (16),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,S TYPE,MT,30,GRY,4500.0,STOLEN,32,"{'type': 'Point', 'coordinates': (-79.48502371, 43.63228655)}"
-33,4104,GO-2019528298,B&E,2019-03-21T00:00:00,2019,March,Thursday,21,80,17,2019-03-23T00:00:00,2019,March,Saturday,23,82,21,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,ROCK JUMPER,MT,12,GRY,,STOLEN,33,"{'type': 'Point', 'coordinates': (-79.50011051, 43.63986673)}"
-34,4252,GO-20199014387,THEFT UNDER,2019-05-08T00:00:00,2019,May,Wednesday,8,128,9,2019-05-08T00:00:00,2019,May,Wednesday,8,128,19,D22,Toronto,16,Stonegate-Queensway (16),Schools During Un-Supervised Activity,Educational,GIANT,SLAMMER,BM,1,BRZ,380.0,STOLEN,34,"{'type': 'Point', 'coordinates': (-79.50577149, 43.63395715)}"
-35,4554,GO-20191144303,THEFT FROM MAIL / BAG / KEY,2019-06-20T00:00:00,2019,June,Thursday,20,171,3,2019-06-20T00:00:00,2019,June,Thursday,20,171,15,D22,Toronto,16,Stonegate-Queensway (16),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,RG,10,,1000.0,STOLEN,35,"{'type': 'Point', 'coordinates': (-79.50442129, 43.62591328)}"
-36,4686,GO-20191245795,THEFT UNDER - BICYCLE,2019-07-04T00:00:00,2019,July,Thursday,4,185,13,2019-07-04T00:00:00,2019,July,Thursday,4,185,17,D22,Toronto,16,Stonegate-Queensway (16),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,LANGSTER,OT,1,RED,903.0,STOLEN,36,"{'type': 'Point', 'coordinates': (-79.50998592, 43.64767052)}"
-37,5319,GO-20199029965,THEFT UNDER,2019-09-01T00:00:00,2019,September,Sunday,1,244,20,2019-09-13T00:00:00,2019,September,Friday,13,256,23,D22,Toronto,16,Stonegate-Queensway (16),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,TO,10,TRQ,0.0,STOLEN,37,"{'type': 'Point', 'coordinates': (-79.49207964, 43.6401815)}"
-38,5320,GO-20199029965,THEFT UNDER,2019-09-01T00:00:00,2019,September,Sunday,1,244,20,2019-09-13T00:00:00,2019,September,Friday,13,256,23,D22,Toronto,16,Stonegate-Queensway (16),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,OT,10,TRQ,0.0,STOLEN,38,"{'type': 'Point', 'coordinates': (-79.49207964, 43.6401815)}"
-39,6165,GO-20209012941,THEFT UNDER,2020-05-11T00:00:00,2020,May,Monday,11,132,23,2020-05-12T00:00:00,2020,May,Tuesday,12,133,8,D22,Toronto,16,Stonegate-Queensway (16),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,OT,21,BLK,879.0,STOLEN,39,"{'type': 'Point', 'coordinates': (-79.49657694, 43.63297159)}"
-40,6738,GO-20209018566,THEFT UNDER,2020-07-24T00:00:00,2020,July,Friday,24,206,22,2020-07-26T00:00:00,2020,July,Sunday,26,208,8,D22,Toronto,16,Stonegate-Queensway (16),Bar / Restaurant,Commercial,CA,SL4 (M),MT,18,BLU,632.0,STOLEN,40,"{'type': 'Point', 'coordinates': (-79.49032645, 43.62905111)}"
-41,6936,GO-20209019905,THEFT UNDER,2020-08-10T00:00:00,2020,August,Monday,10,223,23,2020-08-11T00:00:00,2020,August,Tuesday,11,224,13,D22,Toronto,16,Stonegate-Queensway (16),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,MT,21,BLK,459.0,STOLEN,41,"{'type': 'Point', 'coordinates': (-79.48502371, 43.63228655)}"
-42,7120,GO-20209021752,THEFT UNDER,2020-08-29T00:00:00,2020,August,Saturday,29,242,13,2020-08-29T00:00:00,2020,August,Saturday,29,242,16,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,CYPRESS,MT,32,BLK,300.0,STOLEN,42,"{'type': 'Point', 'coordinates': (-79.51416806, 43.64036618000001)}"
-43,7620,GO-20202146645,THEFT UNDER - BICYCLE,2020-09-29T00:00:00,2020,September,Tuesday,29,273,20,2020-11-12T00:00:00,2020,November,Thursday,12,317,10,D22,Toronto,16,Stonegate-Queensway (16),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORTHROCK,CTM,MT,21,GRYLGR,400.0,STOLEN,43,"{'type': 'Point', 'coordinates': (-79.5036963, 43.62676359000001)}"
-44,8487,GO-20142564428,THEFT UNDER,2014-07-24T00:00:00,2014,July,Thursday,24,205,2,2014-07-24T00:00:00,2014,July,Thursday,24,205,18,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,SEEK3,OT,10,BLK,687.0,STOLEN,44,"{'type': 'Point', 'coordinates': (-79.51428483000001, 43.63855434)}"
-45,8511,GO-20142580855,THEFT UNDER,2014-07-27T00:00:00,2014,July,Sunday,27,208,0,2014-07-27T00:00:00,2014,July,Sunday,27,208,7,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,ROAD RUNNER,EL,0,BLK,3500.0,UNKNOWN,45,"{'type': 'Point', 'coordinates': (-79.50361400000001, 43.62887143)}"
-46,8695,GO-20149006112,THEFT UNDER,2014-08-15T00:00:00,2014,August,Friday,15,227,10,2014-08-19T00:00:00,2014,August,Tuesday,19,231,17,D22,Toronto,16,Stonegate-Queensway (16),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,AGGRESSOR,MT,21,BLK,600.0,STOLEN,46,"{'type': 'Point', 'coordinates': (-79.51274537000002, 43.62408952)}"
-47,8719,GO-20142775166,B&E,2014-08-24T00:00:00,2014,August,Sunday,24,236,13,2014-08-25T00:00:00,2014,August,Monday,25,237,21,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NAKAMURA,UNKNOWN,MT,5,MRN,200.0,STOLEN,47,"{'type': 'Point', 'coordinates': (-79.49736075, 43.62502784)}"
-48,8720,GO-20142775166,B&E,2014-08-24T00:00:00,2014,August,Sunday,24,236,13,2014-08-25T00:00:00,2014,August,Monday,25,237,21,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,SIRRUS ELITE,MT,5,SILRED,829.0,STOLEN,48,"{'type': 'Point', 'coordinates': (-79.49736075, 43.62502784)}"
-49,8739,GO-20142782199,THEFT UNDER,2014-08-21T00:00:00,2014,August,Thursday,21,233,21,2014-08-26T00:00:00,2014,August,Tuesday,26,238,19,D22,Toronto,16,Stonegate-Queensway (16),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RALEIGH,,MT,3,BLK,300.0,STOLEN,49,"{'type': 'Point', 'coordinates': (-79.49567561, 43.62932148)}"
-50,9466,GO-2015677844,THEFT UNDER,2015-04-16T00:00:00,2015,April,Thursday,16,106,10,2015-04-24T00:00:00,2015,April,Friday,24,114,12,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,MT,10,BLU,200.0,STOLEN,50,"{'type': 'Point', 'coordinates': (-79.49966003, 43.64272918)}"
-51,9924,GO-20159004114,THEFT UNDER,2015-07-02T00:00:00,2015,July,Thursday,2,183,15,2015-07-02T00:00:00,2015,July,Thursday,2,183,16,D22,Toronto,16,Stonegate-Queensway (16),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,AGGRESSOR COMP,MT,25,WHI,500.0,STOLEN,51,"{'type': 'Point', 'coordinates': (-79.50913682, 43.64785061)}"
-52,10044,GO-20159927,THEFT UNDER,2015-07-18T00:00:00,2015,July,Saturday,18,199,21,2015-07-18T00:00:00,2015,July,Saturday,18,199,22,D22,Toronto,16,Stonegate-Queensway (16),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,M4,MT,15,GRY,,STOLEN,52,"{'type': 'Point', 'coordinates': (-79.51419744, 43.64672259)}"
-53,10073,GO-20159004831,THEFT UNDER,2015-07-21T00:00:00,2015,July,Tuesday,21,202,17,2015-07-21T00:00:00,2015,July,Tuesday,21,202,18,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,21,BRN,500.0,STOLEN,53,"{'type': 'Point', 'coordinates': (-79.50646897, 43.64447977)}"
-54,10074,GO-20159004831,THEFT UNDER,2015-07-21T00:00:00,2015,July,Tuesday,21,202,17,2015-07-21T00:00:00,2015,July,Tuesday,21,202,18,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,,RG,21,GRY,440.0,STOLEN,54,"{'type': 'Point', 'coordinates': (-79.50646897, 43.64447977)}"
-55,10117,GO-20151277841,THEFT UNDER,2015-07-26T00:00:00,2015,July,Sunday,26,207,13,2015-07-26T00:00:00,2015,July,Sunday,26,207,18,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,LITTLE MISS MAT,,OT,0,BLKGRN,150.0,STOLEN,55,"{'type': 'Point', 'coordinates': (-79.49513903, 43.62797308)}"
-56,10122,GO-20159005091,THEFT UNDER,2015-07-24T00:00:00,2015,July,Friday,24,205,16,2015-07-28T00:00:00,2015,July,Tuesday,28,209,16,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,CENTURY ELITE 6,RC,10,BLK,1500.0,STOLEN,56,"{'type': 'Point', 'coordinates': (-79.50677459, 43.64441674)}"
-57,10152,GO-20151296426,THEFT UNDER,2015-07-23T00:00:00,2015,July,Thursday,23,204,19,2015-07-29T00:00:00,2015,July,Wednesday,29,210,13,D22,Toronto,16,Stonegate-Queensway (16),"Private Property Structure (Pool, Shed, Detached Garage)",Other,BIANCHI,,OT,10,BRN,200.0,STOLEN,57,"{'type': 'Point', 'coordinates': (-79.51355275, 43.64687723000001)}"
-58,10153,GO-20151296426,THEFT UNDER,2015-07-23T00:00:00,2015,July,Thursday,23,204,19,2015-07-29T00:00:00,2015,July,Wednesday,29,210,13,D22,Toronto,16,Stonegate-Queensway (16),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,ACTIVE COUNTRY,OT,21,RED,450.0,STOLEN,58,"{'type': 'Point', 'coordinates': (-79.51355275, 43.64687723000001)}"
-59,10955,GO-20151173190,PROPERTY - FOUND,2015-07-10T00:00:00,2015,July,Friday,10,191,23,2015-07-11T00:00:00,2015,July,Saturday,11,192,13,D22,Toronto,16,Stonegate-Queensway (16),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,TARMAC SL2,RC,10,BLACK,6500.0,UNKNOWN,59,"{'type': 'Point', 'coordinates': (-79.51419744, 43.64672259)}"
-60,11174,GO-20151188948,PROPERTY - FOUND,2015-07-13T00:00:00,2015,July,Monday,13,194,20,2015-07-13T00:00:00,2015,July,Monday,13,194,20,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NISHIKI,,MT,99,PLE,,UNKNOWN,60,"{'type': 'Point', 'coordinates': (-79.51393752, 43.64485834)}"
-61,11249,GO-20169004104,THEFT UNDER,2016-05-03T00:00:00,2016,May,Tuesday,3,124,14,2016-05-03T00:00:00,2016,May,Tuesday,3,124,14,D22,Toronto,16,Stonegate-Queensway (16),Schools During Supervised Activity,Educational,CA,TRAIL SL1,MT,24,,1400.0,STOLEN,61,"{'type': 'Point', 'coordinates': (-79.50701581, 43.63694555)}"
-62,11858,GO-20169007498,THEFT UNDER,2016-07-20T00:00:00,2016,July,Wednesday,20,202,16,2016-07-20T00:00:00,2016,July,Wednesday,20,202,20,D31,Toronto,16,Stonegate-Queensway (16),Schools During Un-Supervised Activity,Educational,TR,MARLIN 5,MT,21,RED,530.0,STOLEN,62,"{'type': 'Point', 'coordinates': (-79.51551646, 43.62965998)}"
-63,12088,GO-20161427759,THEFT UNDER - BICYCLE,2016-08-08T00:00:00,2016,August,Monday,8,221,18,2016-08-15T00:00:00,2016,August,Monday,15,228,7,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,0,BLK,40.0,STOLEN,63,"{'type': 'Point', 'coordinates': (-79.52164476, 43.64054082)}"
-64,12292,GO-20161594256,THEFT UNDER,2016-09-08T00:00:00,2016,September,Thursday,8,252,10,2016-09-08T00:00:00,2016,September,Thursday,8,252,10,D22,Toronto,16,Stonegate-Queensway (16),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,FUTURA 2000,SC,0,BLU,1000.0,STOLEN,64,"{'type': 'Point', 'coordinates': (-79.5036963, 43.62676359000001)}"
-65,14331,GO-20209026976,THEFT UNDER,2020-10-18T00:00:00,2020,October,Sunday,18,292,18,2020-10-19T00:00:00,2020,October,Monday,19,293,16,D22,Toronto,16,Stonegate-Queensway (16),"Apartment (Rooming House, Condo)",Apartment,KO,,OT,20,BLK,1000.0,STOLEN,65,"{'type': 'Point', 'coordinates': (-79.51132657, 43.64736434)}"
-66,14508,GO-2019722644,THEFT OF EBIKE UNDER $5000,2019-04-19T00:00:00,2019,April,Friday,19,109,19,2019-04-22T00:00:00,2019,April,Monday,22,112,10,D22,Toronto,16,Stonegate-Queensway (16),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,COMMUTER,EL,1,WHI,1000.0,STOLEN,66,"{'type': 'Point', 'coordinates': (-79.50442129, 43.62591328)}"
-67,14509,GO-2019722644,THEFT OF EBIKE UNDER $5000,2019-04-19T00:00:00,2019,April,Friday,19,109,19,2019-04-22T00:00:00,2019,April,Monday,22,112,10,D22,Toronto,16,Stonegate-Queensway (16),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,EL,1,GRN,1457.0,STOLEN,67,"{'type': 'Point', 'coordinates': (-79.50442129, 43.62591328)}"
-68,14914,GO-20142143889,THEFT UNDER,2014-05-22T00:00:00,2014,May,Thursday,22,142,16,2014-05-24T00:00:00,2014,May,Saturday,24,144,16,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,YORKVILLE,OT,21,BLK,,STOLEN,68,"{'type': 'Point', 'coordinates': (-79.51327477, 43.63309763)}"
-69,14930,GO-20142826660,THEFT UNDER,2014-08-31T00:00:00,2014,August,Sunday,31,243,12,2014-09-02T00:00:00,2014,September,Tuesday,2,245,13,D22,Toronto,16,Stonegate-Queensway (16),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EVERYDAY,COMFORT BIKE,RG,21,WHI,,STOLEN,69,"{'type': 'Point', 'coordinates': (-79.51675012, 43.63476707)}"
-70,14973,GO-20159006715,THEFT UNDER,2015-09-02T00:00:00,2015,September,Wednesday,2,245,19,2015-09-03T00:00:00,2015,September,Thursday,3,246,13,D22,Toronto,16,Stonegate-Queensway (16),"Apartment (Rooming House, Condo)",Apartment,OT,SPECIALIZED,RC,12,LBL,2000.0,STOLEN,70,"{'type': 'Point', 'coordinates': (-79.49138084, 43.62576989)}"
-71,14990,GO-2016153125,THEFT UNDER,2016-01-22T00:00:00,2016,January,Friday,22,22,13,2016-01-26T00:00:00,2016,January,Tuesday,26,26,17,D22,Toronto,16,Stonegate-Queensway (16),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,FORTRESS 1700TA,SC,1,BLK,2000.0,STOLEN,71,"{'type': 'Point', 'coordinates': (-79.50985204, 43.64383143)}"
-72,6459,GO-20209016076,THEFT UNDER,2020-06-23T00:00:00,2020,June,Tuesday,23,175,21,2020-06-24T00:00:00,2020,June,Wednesday,24,176,19,D22,Toronto,14,Islington-City Centre West (14),Bar / Restaurant,Commercial,RA,,MT,20,DGR,600.0,STOLEN,126,"{'type': 'Point', 'coordinates': (-79.5379751, 43.6385254)}"
-73,17323,GO-20209012950,THEFT UNDER,2020-04-14T00:00:00,2020,April,Tuesday,14,105,10,2020-05-12T00:00:00,2020,May,Tuesday,12,133,11,D22,Toronto,16,Stonegate-Queensway (16),"Apartment (Rooming House, Condo)",Apartment,UK,TRAIL X,MT,1,BLK,500.0,STOLEN,72,"{'type': 'Point', 'coordinates': (-79.49306293, 43.62460459)}"
-74,17396,GO-20209024816,THEFT UNDER,2020-09-28T00:00:00,2020,September,Monday,28,272,17,2020-09-28T00:00:00,2020,September,Monday,28,272,19,D22,Toronto,16,Stonegate-Queensway (16),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,METHOD 2,BM,1,BLU,350.0,STOLEN,73,"{'type': 'Point', 'coordinates': (-79.50541652, 43.64869248)}"
-75,17512,GO-20189032310,THEFT UNDER - BICYCLE,2018-09-28T00:00:00,2018,September,Friday,28,271,14,2018-09-28T00:00:00,2018,September,Friday,28,271,22,D22,Toronto,16,Stonegate-Queensway (16),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,RINCON,MT,15,BGE,500.0,STOLEN,74,"{'type': 'Point', 'coordinates': (-79.51370198, 43.62385475000001)}"
-76,17513,GO-20181822302,THEFT UNDER - BICYCLE,2018-10-02T00:00:00,2018,October,Tuesday,2,275,15,2018-10-02T00:00:00,2018,October,Tuesday,2,275,16,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GARNEAU,,MT,24,SIL,2300.0,STOLEN,75,"{'type': 'Point', 'coordinates': (-79.51059518, 43.64560522)}"
-77,17514,GO-20181822302,THEFT UNDER - BICYCLE,2018-10-02T00:00:00,2018,October,Tuesday,2,275,15,2018-10-02T00:00:00,2018,October,Tuesday,2,275,16,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNK,,MT,24,BLK,1400.0,STOLEN,76,"{'type': 'Point', 'coordinates': (-79.51059518, 43.64560522)}"
-78,17680,GO-20207257,B&E,2019-12-16T00:00:00,2019,December,Monday,16,350,0,2020-01-02T00:00:00,2020,January,Thursday,2,2,6,D22,Toronto,16,Stonegate-Queensway (16),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GENNIX,A1 ELITE,RG,21,,3500.0,STOLEN,77,"{'type': 'Point', 'coordinates': (-79.49299006, 43.63523978)}"
-79,17681,GO-20207257,B&E,2019-12-16T00:00:00,2019,December,Monday,16,350,0,2020-01-02T00:00:00,2020,January,Thursday,2,2,6,D22,Toronto,16,Stonegate-Queensway (16),"Private Property Structure (Pool, Shed, Detached Garage)",Other,AMEGO,INFINITE,EL,18,,2700.0,STOLEN,78,"{'type': 'Point', 'coordinates': (-79.49299006, 43.63523978)}"
-80,17682,GO-20207257,B&E,2019-12-16T00:00:00,2019,December,Monday,16,350,0,2020-01-02T00:00:00,2020,January,Thursday,2,2,6,D22,Toronto,16,Stonegate-Queensway (16),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SCOTT,CONTESSA,RG,18,,900.0,STOLEN,79,"{'type': 'Point', 'coordinates': (-79.49299006, 43.63523978)}"
-81,17760,GO-20179019219,THEFT UNDER - BICYCLE,2017-11-09T00:00:00,2017,November,Thursday,9,313,0,2017-11-09T00:00:00,2017,November,Thursday,9,313,10,D22,Toronto,16,Stonegate-Queensway (16),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SC,,RG,15,PLE,350.0,STOLEN,80,"{'type': 'Point', 'coordinates': (-79.48545723, 43.63325426)}"
-82,17898,GO-20181637264,MISCHIEF UNDER,2018-08-28T00:00:00,2018,August,Tuesday,28,240,0,2018-09-04T00:00:00,2018,September,Tuesday,4,247,14,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ROCKY MOUNTAIN,RC 70,OT,9,GRY,1200.0,STOLEN,81,"{'type': 'Point', 'coordinates': (-79.49780996, 43.63518597)}"
-83,17977,GO-20159004388,THEFT UNDER,2015-07-09T00:00:00,2015,July,Thursday,9,190,17,2015-07-10T00:00:00,2015,July,Friday,10,191,13,D22,Toronto,16,Stonegate-Queensway (16),"Apartment (Rooming House, Condo)",Apartment,,,MT,18,,299.0,STOLEN,82,"{'type': 'Point', 'coordinates': (-79.48821093, 43.63661211)}"
-84,18022,GO-20169004503,THEFT UNDER,2016-05-13T00:00:00,2016,May,Friday,13,134,23,2016-05-13T00:00:00,2016,May,Friday,13,134,23,D22,Toronto,16,Stonegate-Queensway (16),Bar / Restaurant,Commercial,OT,,MT,24,GRY,400.0,STOLEN,83,"{'type': 'Point', 'coordinates': (-79.52006087, 43.64542592)}"
-85,18027,GO-20169005503,THEFT UNDER - BICYCLE,2016-06-08T00:00:00,2016,June,Wednesday,8,160,8,2016-06-08T00:00:00,2016,June,Wednesday,8,160,22,D22,Toronto,16,Stonegate-Queensway (16),Schools During Supervised Activity,Educational,OT,,MT,27,BLK,1500.0,STOLEN,84,"{'type': 'Point', 'coordinates': (-79.50577149, 43.63395715)}"
-86,18104,GO-20179011498,THEFT UNDER - BICYCLE,2017-08-02T00:00:00,2017,August,Wednesday,2,214,7,2017-08-02T00:00:00,2017,August,Wednesday,2,214,8,D22,Toronto,16,Stonegate-Queensway (16),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,FX 7.2 2015,OT,24,BLK,700.0,STOLEN,85,"{'type': 'Point', 'coordinates': (-79.48147897, 43.63097182)}"
-87,21013,GO-20199019452,THEFT UNDER,2019-06-19T00:00:00,2019,June,Wednesday,19,170,21,2019-06-21T00:00:00,2019,June,Friday,21,172,10,D22,Toronto,16,Stonegate-Queensway (16),"Apartment (Rooming House, Condo)",Apartment,UK,GRAND RAPID 5,TO,8,BLK,1000.0,STOLEN,86,"{'type': 'Point', 'coordinates': (-79.50442129, 43.62591328)}"
-88,21080,GO-20191970007,B&E,2019-10-11T00:00:00,2019,October,Friday,11,284,22,2019-10-12T00:00:00,2019,October,Saturday,12,285,8,D22,Toronto,16,Stonegate-Queensway (16),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,SIRRUS,TO,21,BLKBLU,950.0,STOLEN,87,"{'type': 'Point', 'coordinates': (-79.48640535000001, 43.63304284)}"
-89,21277,GO-2018973896,THEFT OVER,2018-05-08T00:00:00,2018,May,Tuesday,8,128,15,2018-05-30T00:00:00,2018,May,Wednesday,30,150,8,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,XFR 1-2016,OT,30,BLKRED,1500.0,STOLEN,88,"{'type': 'Point', 'coordinates': (-79.50009541, 43.63612214)}"
-90,21278,GO-2018973896,THEFT OVER,2018-05-08T00:00:00,2018,May,Tuesday,8,128,15,2018-05-30T00:00:00,2018,May,Wednesday,30,150,8,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,SEARCHC ULTEGRA,OT,30,,4299.0,STOLEN,89,"{'type': 'Point', 'coordinates': (-79.50009541, 43.63612214)}"
-91,21344,GO-20189030880,THEFT UNDER,2018-09-17T00:00:00,2018,September,Monday,17,260,8,2018-09-17T00:00:00,2018,September,Monday,17,260,23,D22,Toronto,16,Stonegate-Queensway (16),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,STUMPJUMPER S,MT,12,GRY,4000.0,STOLEN,90,"{'type': 'Point', 'coordinates': (-79.48502371, 43.63228655)}"
-92,22025,GO-20149005024,THEFT UNDER,2014-07-01T00:00:00,2014,July,Tuesday,1,182,0,2014-07-15T00:00:00,2014,July,Tuesday,15,196,21,D22,Toronto,16,Stonegate-Queensway (16),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,STUMPJUMPER COM,MT,27,WHI,3500.0,STOLEN,91,"{'type': 'Point', 'coordinates': (-79.50923473, 43.64223823)}"
-93,22068,GO-20151188736,THEFT UNDER,2015-07-13T00:00:00,2015,July,Monday,13,194,15,2015-07-13T00:00:00,2015,July,Monday,13,194,19,D22,Toronto,16,Stonegate-Queensway (16),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,NISHIKI,MT,24,DBL,500.0,STOLEN,92,"{'type': 'Point', 'coordinates': (-79.51355275, 43.64687723000001)}"
-94,22069,GO-20151244710,B&E,2015-07-21T00:00:00,2015,July,Tuesday,21,202,18,2015-07-21T00:00:00,2015,July,Tuesday,21,202,21,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,21,BGE,500.0,STOLEN,93,"{'type': 'Point', 'coordinates': (-79.50646897, 43.64447977)}"
-95,22070,GO-20151244710,B&E,2015-07-21T00:00:00,2015,July,Tuesday,21,202,18,2015-07-21T00:00:00,2015,July,Tuesday,21,202,21,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,AGGRESSOR,MT,21,SIL,450.0,STOLEN,94,"{'type': 'Point', 'coordinates': (-79.50646897, 43.64447977)}"
-96,22114,GO-20169007059,THEFT UNDER - BICYCLE,2016-07-10T00:00:00,2016,July,Sunday,10,192,21,2016-07-11T00:00:00,2016,July,Monday,11,193,23,D22,Toronto,16,Stonegate-Queensway (16),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,COACH,RG,24,WHI,450.0,STOLEN,95,"{'type': 'Point', 'coordinates': (-79.48147897, 43.63097182)}"
-97,22117,GO-20161292045,THEFT UNDER - BICYCLE,2016-07-18T00:00:00,2016,July,Monday,18,200,16,2016-07-23T00:00:00,2016,July,Saturday,23,205,6,D22,Toronto,16,Stonegate-Queensway (16),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN,UNKNOWN,MT,27,,100.0,STOLEN,96,"{'type': 'Point', 'coordinates': (-79.48147897, 43.63097182)}"
-98,23811,GO-20209018579,THEFT UNDER,2020-07-25T00:00:00,2020,July,Saturday,25,207,23,2020-07-26T00:00:00,2020,July,Sunday,26,208,11,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,XFR 4 20 BLACK,MT,6,BLK,700.0,STOLEN,97,"{'type': 'Point', 'coordinates': (-79.51411344, 43.62725677)}"
-99,23860,GO-20202153156,THEFT UNDER - BICYCLE,2020-09-13T00:00:00,2020,September,Sunday,13,257,14,2020-11-13T00:00:00,2020,November,Friday,13,318,9,D22,Toronto,16,Stonegate-Queensway (16),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CTM,NORTHROCK,MT,21,GRY,500.0,STOLEN,98,"{'type': 'Point', 'coordinates': (-79.49017749, 43.64009584)}"
-100,23866,GO-20209031079,THEFT UNDER,2020-11-29T00:00:00,2020,November,Sunday,29,334,12,2020-12-03T00:00:00,2020,December,Thursday,3,338,0,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,COASTER 18 INCH,MT,1,RED,250.0,STOLEN,99,"{'type': 'Point', 'coordinates': (-79.50294017, 43.63700424)}"
-101,23994,GO-20181937094,B&E,2018-10-19T00:00:00,2018,October,Friday,19,292,19,2018-10-20T00:00:00,2018,October,Saturday,20,293,12,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,MT,10,GRN,150.0,STOLEN,100,"{'type': 'Point', 'coordinates': (-79.51440929, 43.62547712)}"
-102,24371,GO-20189027119,THEFT UNDER - BICYCLE,2018-08-20T00:00:00,2018,August,Monday,20,232,7,2018-08-20T00:00:00,2018,August,Monday,20,232,13,D22,Toronto,16,Stonegate-Queensway (16),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,8.5 DS 14S,MT,27,BLK,1500.0,STOLEN,101,"{'type': 'Point', 'coordinates': (-79.51796363, 43.63450648)}"
-103,2868,GO-20189022870,THEFT UNDER - BICYCLE,2018-07-17T00:00:00,2018,July,Tuesday,17,198,10,2018-07-18T00:00:00,2018,July,Wednesday,18,199,10,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,OT,CROSSTRAIL 2018,MT,21,RED,700.0,STOLEN,102,"{'type': 'Point', 'coordinates': (-79.53702637, 43.63768607)}"
-104,14484,GO-20199000038,THEFT UNDER,2019-01-01T00:00:00,2019,January,Tuesday,1,1,15,2019-01-01T00:00:00,2019,January,Tuesday,1,1,16,D22,Toronto,18,New Toronto (18),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,LUCKY EVO,SC,1,,500.0,STOLEN,1867,"{'type': 'Point', 'coordinates': (-79.50800853, 43.59575653)}"
-105,3078,GO-20181434493,THEFT FROM MOTOR VEHICLE UNDER,2018-08-03T00:00:00,2018,August,Friday,3,215,19,2018-08-05T00:00:00,2018,August,Sunday,5,217,9,D22,Toronto,14,Islington-City Centre West (14),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SCHWINN,BIGCITY,MT,0,,,RECOVERED,103,"{'type': 'Point', 'coordinates': (-79.53031231, 43.64699274)}"
-106,3079,GO-20181434493,THEFT FROM MOTOR VEHICLE UNDER,2018-08-03T00:00:00,2018,August,Friday,3,215,19,2018-08-05T00:00:00,2018,August,Sunday,5,217,9,D22,Toronto,14,Islington-City Centre West (14),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,BRUT4.0 HARDTAL,MT,0,RED,499.0,STOLEN,104,"{'type': 'Point', 'coordinates': (-79.53031231, 43.64699274)}"
-107,3202,GO-20189026435,THEFT UNDER - BICYCLE,2018-08-12T00:00:00,2018,August,Sunday,12,224,22,2018-08-14T00:00:00,2018,August,Tuesday,14,226,22,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,KO,HEI HEI,MT,18,RED,2500.0,STOLEN,105,"{'type': 'Point', 'coordinates': (-79.53702637, 43.63768607)}"
-108,3291,GO-20189027513,THEFT UNDER - BICYCLE,2018-08-14T00:00:00,2018,August,Tuesday,14,226,13,2018-08-22T00:00:00,2018,August,Wednesday,22,234,19,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,,RG,20,BLK,500.0,STOLEN,106,"{'type': 'Point', 'coordinates': (-79.55467522, 43.6328036)}"
-109,3975,GO-20192459,B&E,2019-01-01T00:00:00,2019,January,Tuesday,1,1,7,2019-01-01T00:00:00,2019,January,Tuesday,1,1,11,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,,MT,12,BLK,400.0,STOLEN,107,"{'type': 'Point', 'coordinates': (-79.51790311, 43.62542538)}"
-110,4096,GO-20199008694,THEFT UNDER - BICYCLE,2019-03-18T00:00:00,2019,March,Monday,18,77,0,2019-03-18T00:00:00,2019,March,Monday,18,77,15,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,DSB,RG,21,BLK,300.0,STOLEN,108,"{'type': 'Point', 'coordinates': (-79.53616293, 43.64370732)}"
-111,4267,GO-2019866414,THEFT UNDER - BICYCLE,2019-04-28T00:00:00,2019,April,Sunday,28,118,12,2019-05-12T00:00:00,2019,May,Sunday,12,132,23,D22,Toronto,14,Islington-City Centre West (14),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KONA\,,MT,12,BLU,1200.0,STOLEN,109,"{'type': 'Point', 'coordinates': (-79.53280588, 43.64315759)}"
-112,4698,GO-20191252812,THEFT UNDER,2019-06-28T00:00:00,2019,June,Friday,28,179,11,2019-07-08T00:00:00,2019,July,Monday,8,189,11,D22,Toronto,14,Islington-City Centre West (14),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,RC,10,,300.0,STOLEN,110,"{'type': 'Point', 'coordinates': (-79.52226161, 43.64492672)}"
-113,4699,GO-20191252812,THEFT UNDER,2019-06-28T00:00:00,2019,June,Friday,28,179,11,2019-07-08T00:00:00,2019,July,Monday,8,189,11,D22,Toronto,14,Islington-City Centre West (14),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,MT,21,,60.0,STOLEN,111,"{'type': 'Point', 'coordinates': (-79.52226161, 43.64492672)}"
-114,4767,GO-20199022221,THEFT UNDER,2019-05-15T00:00:00,2019,May,Wednesday,15,135,20,2019-07-14T00:00:00,2019,July,Sunday,14,195,20,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,OT,2018 SCOTT METR,OT,27,OTH,1000.0,STOLEN,112,"{'type': 'Point', 'coordinates': (-79.53702637, 43.63768607)}"
-115,4782,GO-20199022476,THEFT UNDER,2019-07-15T00:00:00,2019,July,Monday,15,196,8,2019-07-16T00:00:00,2019,July,Tuesday,16,197,9,D22,Toronto,14,Islington-City Centre West (14),Go Station,Transit,GI,,RG,6,BLK,200.0,STOLEN,113,"{'type': 'Point', 'coordinates': (-79.53314456, 43.63672861)}"
-116,4840,GO-20199023286,THEFT UNDER,2019-07-19T00:00:00,2019,July,Friday,19,200,12,2019-07-22T00:00:00,2019,July,Monday,22,203,18,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,GT,AGRESSOR,MT,26,BLU,497.0,STOLEN,114,"{'type': 'Point', 'coordinates': (-79.51792685000001, 43.62289139)}"
-117,4921,GO-20199024324,THEFT UNDER,2019-07-29T00:00:00,2019,July,Monday,29,210,20,2019-07-29T00:00:00,2019,July,Monday,29,210,22,D22,Toronto,14,Islington-City Centre West (14),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,MOUNTAIN BIKE,MT,24,SIL,2500.0,STOLEN,115,"{'type': 'Point', 'coordinates': (-79.54617755, 43.64944976)}"
-118,5082,GO-20199026357,THEFT UNDER,2019-08-15T00:00:00,2019,August,Thursday,15,227,11,2019-08-15T00:00:00,2019,August,Thursday,15,227,16,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KH,SPORT,MT,7,BLK,0.0,STOLEN,116,"{'type': 'Point', 'coordinates': (-79.55467522, 43.6328036)}"
-119,5131,GO-20191600633,THEFT OF EBIKE UNDER $5000,2019-08-05T00:00:00,2019,August,Monday,5,217,17,2019-08-22T00:00:00,2019,August,Thursday,22,234,15,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,EMMO,,EL,1,RED,3000.0,STOLEN,117,"{'type': 'Point', 'coordinates': (-79.55467522, 43.6328036)}"
-120,5153,GO-20191622306,B&E,2019-08-20T00:00:00,2019,August,Tuesday,20,232,18,2019-08-25T00:00:00,2019,August,Sunday,25,237,16,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GARY FISHER,BIG SUR,MT,21,BLKWHI,1200.0,STOLEN,118,"{'type': 'Point', 'coordinates': (-79.52340177000002, 43.64465036)}"
-121,5280,GO-20199029329,THEFT UNDER,2019-09-08T00:00:00,2019,September,Sunday,8,251,12,2019-09-09T00:00:00,2019,September,Monday,9,252,15,D22,Toronto,14,Islington-City Centre West (14),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MA,,RG,27,GRY,500.0,STOLEN,119,"{'type': 'Point', 'coordinates': (-79.53896187, 43.63736976)}"
-122,5485,GO-20191939912,THEFT UNDER,2019-10-02T00:00:00,2019,October,Wednesday,2,275,19,2019-10-08T00:00:00,2019,October,Tuesday,8,281,10,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GRAVITY BLADE,,SC,1,BLK,800.0,STOLEN,120,"{'type': 'Point', 'coordinates': (-79.55686589, 43.61012637)}"
-123,5759,GO-20192374992,THEFT UNDER,2019-12-09T00:00:00,2019,December,Monday,9,343,15,2019-12-09T00:00:00,2019,December,Monday,9,343,18,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,RALEIGH,,RG,7,BLU,600.0,STOLEN,121,"{'type': 'Point', 'coordinates': (-79.53031231, 43.64699274)}"
-124,5817,GO-20209000950,THEFT UNDER,2020-01-08T00:00:00,2020,January,Wednesday,8,8,18,2020-01-09T00:00:00,2020,January,Thursday,9,9,16,D22,Toronto,14,Islington-City Centre West (14),Unknown,Other,UK,HOVERBOARD,OT,25,BLK,900.0,STOLEN,122,"{'type': 'Point', 'coordinates': (-79.55467522, 43.6328036)}"
-125,6259,GO-20209014046,THEFT UNDER,2020-05-27T00:00:00,2020,May,Wednesday,27,148,15,2020-05-27T00:00:00,2020,May,Wednesday,27,148,15,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,RM,INSTINCT ALLOY,MT,12,GRN,4299.0,STOLEN,123,"{'type': 'Point', 'coordinates': (-79.53191599, 43.64524669)}"
-126,6260,GO-2020978470,THEFT UNDER - BICYCLE,2020-05-24T00:00:00,2020,May,Sunday,24,145,0,2020-05-27T00:00:00,2020,May,Wednesday,27,148,16,D22,Toronto,14,Islington-City Centre West (14),"Private Property Structure (Pool, Shed, Detached Garage)",Other,JAMIS,UNK,MT,0,WHI,1500.0,STOLEN,124,"{'type': 'Point', 'coordinates': (-79.54773566, 43.63903017)}"
-127,6410,GO-20201103276,THEFT UNDER - BICYCLE,2020-06-15T00:00:00,2020,June,Monday,15,167,2,2020-06-15T00:00:00,2020,June,Monday,15,167,21,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,,RG,21,BLU,300.0,STOLEN,125,"{'type': 'Point', 'coordinates': (-79.54359674, 43.63765714)}"
-128,6709,GO-20209018309,THEFT UNDER,2020-07-17T00:00:00,2020,July,Friday,17,199,0,2020-07-23T00:00:00,2020,July,Thursday,23,205,21,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,SU,,RG,15,RED,250.0,STOLEN,127,"{'type': 'Point', 'coordinates': (-79.55686589, 43.61012637)}"
-129,6712,GO-20209018329,THEFT UNDER,2020-07-23T00:00:00,2020,July,Thursday,23,205,0,2020-07-23T00:00:00,2020,July,Thursday,23,205,16,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RE,15,BLU,400.0,STOLEN,128,"{'type': 'Point', 'coordinates': (-79.51717476, 43.62420954)}"
-130,6732,GO-20209018480,THEFT UNDER,2020-07-23T00:00:00,2020,July,Thursday,23,205,1,2020-07-25T00:00:00,2020,July,Saturday,25,207,1,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,27,BLK,300.0,STOLEN,129,"{'type': 'Point', 'coordinates': (-79.55766102, 43.64148524)}"
-131,7238,GO-20201734422,THEFT UNDER - BICYCLE,2020-09-12T00:00:00,2020,September,Saturday,12,256,12,2020-09-13T00:00:00,2020,September,Sunday,13,257,13,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,MT,7,,500.0,STOLEN,130,"{'type': 'Point', 'coordinates': (-79.54542916, 43.62137689)}"
-132,7255,GO-20209023364,THEFT UNDER,2020-09-15T00:00:00,2020,September,Tuesday,15,259,15,2020-09-15T00:00:00,2020,September,Tuesday,15,259,17,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,21,GRN,200.0,STOLEN,131,"{'type': 'Point', 'coordinates': (-79.52198822, 43.6220213)}"
-133,7434,GO-20209025974,THEFT UNDER,2020-10-10T00:00:00,2020,October,Saturday,10,284,4,2020-10-11T00:00:00,2020,October,Sunday,11,285,10,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,SU,1800,MT,18,BLK,123.0,STOLEN,132,"{'type': 'Point', 'coordinates': (-79.54132462, 43.63473674)}"
-134,7457,GO-20209026287,THEFT UNDER,2020-10-09T00:00:00,2020,October,Friday,9,283,5,2020-10-13T00:00:00,2020,October,Tuesday,13,287,15,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,SU,NITROUS,MT,21,BLK,260.0,STOLEN,133,"{'type': 'Point', 'coordinates': (-79.52505483, 43.64838422)}"
-135,7574,GO-20202058705,THEFT UNDER - BICYCLE,2020-10-29T00:00:00,2020,October,Thursday,29,303,22,2020-10-30T00:00:00,2020,October,Friday,30,304,11,D22,Toronto,14,Islington-City Centre West (14),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,SEEK 2 HYBRID,OT,21,GRY,,STOLEN,134,"{'type': 'Point', 'coordinates': (-79.54806028, 43.64316716)}"
-136,7600,GO-20209028892,THEFT UNDER - BICYCLE,2020-09-19T00:00:00,2020,September,Saturday,19,263,0,2020-11-06T00:00:00,2020,November,Friday,6,311,19,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,CC,,RG,21,LGR,600.0,STOLEN,135,"{'type': 'Point', 'coordinates': (-79.53191599, 43.64524669)}"
-137,7805,GO-20149002543,THEFT UNDER,2014-03-31T00:00:00,2014,March,Monday,31,90,10,2014-04-02T00:00:00,2014,April,Wednesday,2,92,19,D22,Toronto,14,Islington-City Centre West (14),Ttc Subway Station,Transit,GT,4.0 KARAKORAM,MT,27,BLK,600.0,STOLEN,136,"{'type': 'Point', 'coordinates': (-79.53376337, 43.63782147)}"
-138,7961,GO-20142128571,THEFT UNDER,2014-05-21T00:00:00,2014,May,Wednesday,21,141,17,2014-05-22T00:00:00,2014,May,Thursday,22,142,11,D22,Toronto,14,Islington-City Centre West (14),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,SIRRUS SPORT,RG,24,WHI,703.0,STOLEN,137,"{'type': 'Point', 'coordinates': (-79.56081207, 43.6392073)}"
-139,7962,GO-20142128571,THEFT UNDER,2014-05-21T00:00:00,2014,May,Wednesday,21,141,17,2014-05-22T00:00:00,2014,May,Thursday,22,142,11,D22,Toronto,14,Islington-City Centre West (14),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,VITA,RG,24,DBL,589.0,STOLEN,138,"{'type': 'Point', 'coordinates': (-79.56081207, 43.6392073)}"
-140,8295,GO-20142445244,B&E,2014-07-06T00:00:00,2014,July,Sunday,6,187,20,2014-07-06T00:00:00,2014,July,Sunday,6,187,23,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,MOUNTAIN,MT,18,ONG,160.0,STOLEN,139,"{'type': 'Point', 'coordinates': (-79.56423661, 43.65494591)}"
-141,8400,GO-20149004925,THEFT UNDER,2014-07-10T00:00:00,2014,July,Thursday,10,191,22,2014-07-12T00:00:00,2014,July,Saturday,12,193,15,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,SCHWINN DELMAR,RG,1,DBL,300.0,STOLEN,140,"{'type': 'Point', 'coordinates': (-79.55214194, 43.63976565)}"
-142,8552,GO-20149005474,THEFT UNDER,2014-07-30T00:00:00,2014,July,Wednesday,30,211,8,2014-07-30T00:00:00,2014,July,Wednesday,30,211,14,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,KARAKORAM ELITE,MT,24,BLK,1129.0,STOLEN,141,"{'type': 'Point', 'coordinates': (-79.54723701, 43.64136789)}"
-143,14339,GO-20209029548,THEFT UNDER,2020-11-13T00:00:00,2020,November,Friday,13,318,14,2020-11-13T00:00:00,2020,November,Friday,13,318,19,D22,Toronto,14,Islington-City Centre West (14),Bar / Restaurant,Commercial,GT,GT AGGRESSOR CO,MT,24,BLU,500.0,STOLEN,172,"{'type': 'Point', 'coordinates': (-79.56049947, 43.60910823)}"
-144,8553,GO-20149005474,THEFT UNDER,2014-07-30T00:00:00,2014,July,Wednesday,30,211,8,2014-07-30T00:00:00,2014,July,Wednesday,30,211,14,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,,MT,24,GRN,790.0,STOLEN,142,"{'type': 'Point', 'coordinates': (-79.54723701, 43.64136789)}"
-145,8554,GO-20149005474,THEFT UNDER,2014-07-30T00:00:00,2014,July,Wednesday,30,211,8,2014-07-30T00:00:00,2014,July,Wednesday,30,211,14,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,RINCON,MT,24,WHI,960.0,STOLEN,143,"{'type': 'Point', 'coordinates': (-79.54723701, 43.64136789)}"
-146,8602,GO-20142656262,THEFT UNDER,2014-08-03T00:00:00,2014,August,Sunday,3,215,14,2014-08-07T00:00:00,2014,August,Thursday,7,219,19,D22,Toronto,14,Islington-City Centre West (14),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,YUKON,MT,1,GLD,500.0,STOLEN,144,"{'type': 'Point', 'coordinates': (-79.55866947, 43.64407064)}"
-147,8781,GO-20149006462,THEFT UNDER,2014-08-31T00:00:00,2014,August,Sunday,31,243,12,2014-09-01T00:00:00,2014,September,Monday,1,244,19,D22,Toronto,14,Islington-City Centre West (14),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,3,MT,21,BLK,299.0,STOLEN,145,"{'type': 'Point', 'coordinates': (-79.52200305, 43.6459276)}"
-148,9229,GO-20143490141,THEFT UNDER,2014-12-12T00:00:00,2014,December,Friday,12,346,21,2014-12-15T00:00:00,2014,December,Monday,15,349,13,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,EMMO,,OT,0,,400.0,STOLEN,146,"{'type': 'Point', 'coordinates': (-79.52559755, 43.64419046)}"
-149,9327,GO-2015451825,THEFT UNDER,2015-03-12T00:00:00,2015,March,Thursday,12,71,10,2015-03-17T00:00:00,2015,March,Tuesday,17,76,15,D22,Toronto,14,Islington-City Centre West (14),Ttc Subway Station,Transit,UNKNOWN MAKE,,RG,8,GRN,100.0,STOLEN,147,"{'type': 'Point', 'coordinates': (-79.53376337, 43.63782147)}"
-150,9391,GO-20159001856,THEFT UNDER,2015-04-10T00:00:00,2015,April,Friday,10,100,14,2015-04-10T00:00:00,2015,April,Friday,10,100,22,D22,Toronto,14,Islington-City Centre West (14),Go Station,Transit,RA,EVA 29 SPORT,MT,23,BLK,850.0,STOLEN,148,"{'type': 'Point', 'coordinates': (-79.53376337, 43.63782147)}"
-151,9633,GO-20159003008,THEFT UNDER,2015-05-12T00:00:00,2015,May,Tuesday,12,132,9,2015-05-21T00:00:00,2015,May,Thursday,21,141,20,D22,Toronto,14,Islington-City Centre West (14),Ttc Subway Station,Transit,SC,,MT,8,BLK,,STOLEN,149,"{'type': 'Point', 'coordinates': (-79.52200305, 43.6459276)}"
-152,9694,GO-2015897103,THEFT UNDER,2015-05-28T00:00:00,2015,May,Thursday,28,148,13,2015-05-29T00:00:00,2015,May,Friday,29,149,11,D22,Toronto,14,Islington-City Centre West (14),Schools During Un-Supervised Activity,Educational,NAKAMURA,SOALONO,RG,10,BLK,600.0,STOLEN,150,"{'type': 'Point', 'coordinates': (-79.51678734, 43.62854103)}"
-153,10053,GO-20151236221,THEFT UNDER,2015-07-19T00:00:00,2015,July,Sunday,19,200,3,2015-07-20T00:00:00,2015,July,Monday,20,201,16,D22,Toronto,14,Islington-City Centre West (14),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,MENS,TO,18,,50.0,STOLEN,151,"{'type': 'Point', 'coordinates': (-79.54745695, 43.63235665)}"
-154,10082,GO-20159004878,THEFT FROM MOTOR VEHICLE UNDER,2015-07-23T00:00:00,2015,July,Thursday,23,204,0,2015-07-23T00:00:00,2015,July,Thursday,23,204,0,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,UK,,SC,32,YEL,500.0,STOLEN,152,"{'type': 'Point', 'coordinates': (-79.53760351, 43.63897842)}"
-155,10271,GO-20159005848,THEFT UNDER,2015-08-15T00:00:00,2015,August,Saturday,15,227,14,2015-08-15T00:00:00,2015,August,Saturday,15,227,16,D22,Toronto,14,Islington-City Centre West (14),"Dealership (Car, Motorcycle, Marine, Trailer, Etc.)",Commercial,GF,SILVER SERIES,MT,24,GRY,1000.0,STOLEN,153,"{'type': 'Point', 'coordinates': (-79.54624934, 43.61642017)}"
-156,10579,GO-20159008022,THEFT UNDER,2015-09-30T00:00:00,2015,September,Wednesday,30,273,9,2015-10-01T00:00:00,2015,October,Thursday,1,274,22,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,,MT,9,GRN,670.0,STOLEN,154,"{'type': 'Point', 'coordinates': (-79.56081207, 43.6392073)}"
-157,10748,GO-20151926239,THEFT UNDER,2015-11-08T00:00:00,2015,November,Sunday,8,312,19,2015-11-09T00:00:00,2015,November,Monday,9,313,14,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,OTHER,EBIKE,EL,0,YEL,540.0,STOLEN,155,"{'type': 'Point', 'coordinates': (-79.5311665, 43.64606201)}"
-158,10940,GO-20169000724,THEFT UNDER,2016-01-09T00:00:00,2016,January,Saturday,9,9,12,2016-01-21T00:00:00,2016,January,Thursday,21,21,14,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,MA,ROCKY RIDGE,MT,15,GRY,1450.0,STOLEN,156,"{'type': 'Point', 'coordinates': (-79.56023729, 43.60941968)}"
-159,15008,GO-20161235302,THEFT UNDER,2016-03-30T00:00:00,2016,March,Wednesday,30,90,18,2016-07-14T00:00:00,2016,July,Thursday,14,196,14,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,CROSS TRAIL,OT,21,BLK,1000.0,STOLEN,187,"{'type': 'Point', 'coordinates': (-79.52198822, 43.6220213)}"
-160,10948,GO-2016148325,THEFT UNDER,2016-01-19T00:00:00,2016,January,Tuesday,19,19,0,2016-01-25T00:00:00,2016,January,Monday,25,25,17,D22,Toronto,14,Islington-City Centre West (14),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,FELT,EDICT NINE60,MT,20,BLKRED,2200.0,RECOVERED,157,"{'type': 'Point', 'coordinates': (-79.53702637, 43.63768607)}"
-161,10949,GO-2016148325,THEFT UNDER,2016-01-19T00:00:00,2016,January,Tuesday,19,19,0,2016-01-25T00:00:00,2016,January,Monday,25,25,17,D22,Toronto,14,Islington-City Centre West (14),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,MT,18,GRY,300.0,STOLEN,158,"{'type': 'Point', 'coordinates': (-79.53702637, 43.63768607)}"
-162,10953,GO-2016154315,THEFT UNDER,2016-01-22T00:00:00,2016,January,Friday,22,22,17,2016-01-26T00:00:00,2016,January,Tuesday,26,26,17,D22,Toronto,14,Islington-City Centre West (14),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,DOMANE 4.5,RC,10,BLKRED,3000.0,STOLEN,159,"{'type': 'Point', 'coordinates': (-79.53292993, 43.64413876)}"
-163,11466,GO-20169005444,THEFT UNDER,2016-06-07T00:00:00,2016,June,Tuesday,7,159,9,2016-06-07T00:00:00,2016,June,Tuesday,7,159,20,D22,Toronto,14,Islington-City Centre West (14),Ttc Subway Station,Transit,OT,MARUISHI,OT,3,BGE,500.0,STOLEN,160,"{'type': 'Point', 'coordinates': (-79.53498946, 43.641649890000004)}"
-164,11897,GO-20161305853,THEFT UNDER,2016-07-25T00:00:00,2016,July,Monday,25,207,0,2016-07-25T00:00:00,2016,July,Monday,25,207,13,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,ROAM 1,OT,21,WHI,1000.0,STOLEN,161,"{'type': 'Point', 'coordinates': (-79.55407752, 43.65006376)}"
-165,11916,GO-20169007772,THEFT UNDER - BICYCLE,2016-07-25T00:00:00,2016,July,Monday,25,207,12,2016-07-26T00:00:00,2016,July,Tuesday,26,208,13,D22,Toronto,14,Islington-City Centre West (14),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SC,,MT,7,BLK,350.0,STOLEN,162,"{'type': 'Point', 'coordinates': (-79.55467522, 43.6328036)}"
-166,11972,GO-20161305853,THEFT UNDER,2016-07-25T00:00:00,2016,July,Monday,25,207,0,2016-07-25T00:00:00,2016,July,Monday,25,207,13,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,TARANTULA,MT,18,PLE,,RECOVERED,163,"{'type': 'Point', 'coordinates': (-79.55407752, 43.65006376)}"
-167,12400,GO-20169010731,THEFT UNDER - BICYCLE,2016-09-19T00:00:00,2016,September,Monday,19,263,17,2016-09-19T00:00:00,2016,September,Monday,19,263,17,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,MA,,RG,12,SIL,220.0,STOLEN,164,"{'type': 'Point', 'coordinates': (-79.53292993, 43.64413876)}"
-168,12599,GO-20161815549,THEFT OF EBIKE UNDER $5000,2016-10-06T00:00:00,2016,October,Thursday,6,280,8,2016-10-12T00:00:00,2016,October,Wednesday,12,286,15,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,EMMO,,EL,0,BLK,1500.0,STOLEN,165,"{'type': 'Point', 'coordinates': (-79.53292993, 43.64413876)}"
-169,12600,GO-20161814342,THEFT OF EBIKE UNDER $5000,2016-10-11T00:00:00,2016,October,Tuesday,11,285,16,2016-10-12T00:00:00,2016,October,Wednesday,12,286,12,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,EL,1,BRZ,1500.0,STOLEN,166,"{'type': 'Point', 'coordinates': (-79.52340177000002, 43.64465036)}"
-170,12705,GO-20161933702,THEFT UNDER - BICYCLE,2016-10-28T00:00:00,2016,October,Friday,28,302,7,2016-10-31T00:00:00,2016,October,Monday,31,305,8,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,GI,REVEL,MT,21,,700.0,STOLEN,167,"{'type': 'Point', 'coordinates': (-79.53280588, 43.64315759)}"
-171,12762,GO-20169013400,THEFT UNDER,2016-11-14T00:00:00,2016,November,Monday,14,319,16,2016-11-14T00:00:00,2016,November,Monday,14,319,17,D22,Toronto,14,Islington-City Centre West (14),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KO,BLAST,MT,21,BLU,800.0,STOLEN,168,"{'type': 'Point', 'coordinates': (-79.55886242, 43.6271621)}"
-172,14273,GO-20201143816,THEFT UNDER - BICYCLE,2020-06-21T00:00:00,2020,June,Sunday,21,173,17,2020-06-21T00:00:00,2020,June,Sunday,21,173,18,D22,Toronto,14,Islington-City Centre West (14),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,DIADORA,,MT,6,GRY,330.0,STOLEN,169,"{'type': 'Point', 'coordinates': (-79.53031231, 43.64699274)}"
-173,14287,GO-20209018480,THEFT UNDER,2020-07-23T00:00:00,2020,July,Thursday,23,205,1,2020-07-25T00:00:00,2020,July,Saturday,25,207,1,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,27,BLK,300.0,STOLEN,170,"{'type': 'Point', 'coordinates': (-79.55766102, 43.64148524)}"
-174,14312,GO-20209022478,THEFT UNDER,2020-09-05T00:00:00,2020,September,Saturday,5,249,22,2020-09-06T00:00:00,2020,September,Sunday,6,250,17,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,CA,TRAIL SL 29 2,MT,10,BLU,1500.0,STOLEN,171,"{'type': 'Point', 'coordinates': (-79.55766102, 43.64148524)}"
-175,5168,GO-20199027726,THEFT UNDER,2019-08-23T00:00:00,2019,August,Friday,23,235,20,2019-08-26T00:00:00,2019,August,Monday,26,238,13,D54,Toronto,44,Flemingdon Park (44),Unknown,Other,HF,,BM,1,BLK,300.0,STOLEN,2159,"{'type': 'Point', 'coordinates': (-79.33435458, 43.70999672)}"
-176,14469,GO-20189034652,THEFT UNDER - BICYCLE,2018-10-18T00:00:00,2018,October,Thursday,18,291,7,2018-10-18T00:00:00,2018,October,Thursday,18,291,20,D22,Toronto,14,Islington-City Centre West (14),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE 3,OT,21,BLK,520.0,STOLEN,173,"{'type': 'Point', 'coordinates': (-79.52340177000002, 43.64465036)}"
-177,14545,GO-20199022500,THEFT UNDER,2019-07-15T00:00:00,2019,July,Monday,15,196,0,2019-07-16T00:00:00,2019,July,Tuesday,16,197,12,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,GT,,MT,24,BLU,2200.0,STOLEN,174,"{'type': 'Point', 'coordinates': (-79.55686589, 43.61012637)}"
-178,14547,GO-20199023830,THEFT UNDER,2019-07-13T00:00:00,2019,July,Saturday,13,194,18,2019-07-26T00:00:00,2019,July,Friday,26,207,8,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,OT,COMPASS TRAIL,RG,20,BLK,500.0,STOLEN,175,"{'type': 'Point', 'coordinates': (-79.56023729, 43.60941968)}"
-179,14555,GO-20191470441,THEFT UNDER - BICYCLE,2019-08-03T00:00:00,2019,August,Saturday,3,215,13,2019-08-04T00:00:00,2019,August,Sunday,4,216,13,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,FX 4,OT,0,,1200.0,STOLEN,176,"{'type': 'Point', 'coordinates': (-79.5211855, 43.63937853)}"
-180,14605,GO-20199039813,THEFT UNDER,2019-11-28T00:00:00,2019,November,Thursday,28,332,20,2019-12-04T00:00:00,2019,December,Wednesday,4,338,17,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE JR,RG,40,BLK,536.0,STOLEN,177,"{'type': 'Point', 'coordinates': (-79.53702637, 43.63768607)}"
-181,14637,GO-2020924705,THEFT UNDER - BICYCLE,2020-05-18T00:00:00,2020,May,Monday,18,139,12,2020-05-19T00:00:00,2020,May,Tuesday,19,140,13,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,HYPER URBAN,MT,8,BLK,250.0,STOLEN,178,"{'type': 'Point', 'coordinates': (-79.55128245000002, 43.63527936)}"
-182,14684,GO-20171343664,THEFT UNDER - BICYCLE,2017-07-25T00:00:00,2017,July,Tuesday,25,206,18,2017-07-26T00:00:00,2017,July,Wednesday,26,207,17,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN,UNKNOWN,MT,21,BLU,60.0,STOLEN,179,"{'type': 'Point', 'coordinates': (-79.52559755, 43.64419046)}"
-183,17540,GO-20199004240,THEFT UNDER - BICYCLE,2019-01-31T00:00:00,2019,January,Thursday,31,31,9,2019-02-01T00:00:00,2019,February,Friday,1,32,22,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,RM,,MT,14,TRQ,1600.0,STOLEN,196,"{'type': 'Point', 'coordinates': (-79.56023729, 43.60941968)}"
-184,14698,GO-20179013123,THEFT UNDER - BICYCLE,2017-07-07T00:00:00,2017,July,Friday,7,188,11,2017-08-23T00:00:00,2017,August,Wednesday,23,235,11,D22,Toronto,14,Islington-City Centre West (14),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,DUTCHI-1,RG,1,BLK,300.0,STOLEN,180,"{'type': 'Point', 'coordinates': (-79.53280588, 43.64315759)}"
-185,14708,GO-20179014046,THEFT UNDER,2017-09-01T00:00:00,2017,September,Friday,1,244,10,2017-09-05T00:00:00,2017,September,Tuesday,5,248,15,D22,Toronto,14,Islington-City Centre West (14),Ttc Subway Station,Transit,RA,,RG,21,BLU,300.0,STOLEN,181,"{'type': 'Point', 'coordinates': (-79.53376337, 43.63782147)}"
-186,14954,GO-20159003499,THEFT UNDER,2015-06-10T00:00:00,2015,June,Wednesday,10,161,1,2015-06-10T00:00:00,2015,June,Wednesday,10,161,12,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,21,GRN,0.0,STOLEN,182,"{'type': 'Point', 'coordinates': (-79.53766274, 43.65133224)}"
-187,14957,GO-2015994686,THEFT UNDER - SHOPLIFTING,2015-06-13T00:00:00,2015,June,Saturday,13,164,20,2015-06-13T00:00:00,2015,June,Saturday,13,164,21,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,GRADE ALLOYSORA,OT,18,BLK,999.0,STOLEN,183,"{'type': 'Point', 'coordinates': (-79.55692267, 43.61610751)}"
-188,14958,GO-2015994686,THEFT UNDER - SHOPLIFTING,2015-06-13T00:00:00,2015,June,Saturday,13,164,20,2015-06-13T00:00:00,2015,June,Saturday,13,164,21,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,TRANSEO 4.0,MT,18,WHI,550.0,STOLEN,184,"{'type': 'Point', 'coordinates': (-79.55692267, 43.61610751)}"
-189,14959,GO-20151066846,THEFT UNDER,2015-06-24T00:00:00,2015,June,Wednesday,24,175,22,2015-06-24T00:00:00,2015,June,Wednesday,24,175,22,D22,Toronto,14,Islington-City Centre West (14),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,UNKNOWN,MT,18,SIL,400.0,STOLEN,185,"{'type': 'Point', 'coordinates': (-79.52871289, 43.64877261)}"
-190,14975,GO-20151609910,PROPERTY - FOUND,2015-09-17T00:00:00,2015,September,Thursday,17,260,17,2015-09-17T00:00:00,2015,September,Thursday,17,260,17,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MIELE,UMBIA 200,MT,99,REDWHI,,UNKNOWN,186,"{'type': 'Point', 'coordinates': (-79.55231787, 43.64018383)}"
-191,9876,GO-20151064425,THEFT UNDER,2015-06-24T00:00:00,2015,June,Wednesday,24,175,15,2015-06-24T00:00:00,2015,June,Wednesday,24,175,15,D22,Toronto,15,Kingsway South (15),"Open Areas (Lakes, Parks, Rivers)",Outside,GIANT,,MT,0,BLKWHI,300.0,STOLEN,495,"{'type': 'Point', 'coordinates': (-79.51042078, 43.66063143)}"
-192,15016,GO-20161421769,THEFT UNDER - BICYCLE,2016-08-12T00:00:00,2016,August,Friday,12,225,11,2016-08-12T00:00:00,2016,August,Friday,12,225,11,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,,MT,0,WHI,400.0,STOLEN,188,"{'type': 'Point', 'coordinates': (-79.56423661, 43.65494591)}"
-193,15017,GO-20161421769,THEFT UNDER - BICYCLE,2016-08-12T00:00:00,2016,August,Friday,12,225,11,2016-08-12T00:00:00,2016,August,Friday,12,225,11,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,,RG,0,PLE,300.0,STOLEN,189,"{'type': 'Point', 'coordinates': (-79.56423661, 43.65494591)}"
-194,15049,GO-20179007102,THEFT UNDER,2017-05-28T00:00:00,2017,May,Sunday,28,148,10,2017-05-28T00:00:00,2017,May,Sunday,28,148,12,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,,RG,21,GLD,350.0,STOLEN,190,"{'type': 'Point', 'coordinates': (-79.55717805, 43.63833472)}"
-195,17324,GO-20209013006,THEFT UNDER,2020-05-08T00:00:00,2020,May,Friday,8,129,13,2020-05-12T00:00:00,2020,May,Tuesday,12,133,13,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,NINEBOT S SELF,EL,10,BLK,649.0,STOLEN,191,"{'type': 'Point', 'coordinates': (-79.54674133, 43.64716378)}"
-196,17331,GO-20209014349,THEFT UNDER,2020-05-30T00:00:00,2020,May,Saturday,30,151,9,2020-06-01T00:00:00,2020,June,Monday,1,153,14,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,UK,DIVERGE A1 SPOR,RC,18,GRY,2000.0,STOLEN,192,"{'type': 'Point', 'coordinates': (-79.53280588, 43.64315759)}"
-197,17391,GO-20209023206,THEFT UNDER,2020-09-05T00:00:00,2020,September,Saturday,5,249,14,2020-09-14T00:00:00,2020,September,Monday,14,258,14,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,OT,1,,0.0,STOLEN,193,"{'type': 'Point', 'coordinates': (-79.54542916, 43.62137689)}"
-198,17417,GO-20202399947,B&E,2020-12-08T00:00:00,2020,December,Tuesday,8,343,12,2020-12-21T00:00:00,2020,December,Monday,21,356,17,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,OTHER,LIV,TO,24,WHI,950.0,STOLEN,194,"{'type': 'Point', 'coordinates': (-79.53280588, 43.64315759)}"
-199,17418,GO-20202399947,B&E,2020-12-08T00:00:00,2020,December,Tuesday,8,343,12,2020-12-21T00:00:00,2020,December,Monday,21,356,17,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,OTHER,RIDLEY,TO,24,BLKRED,1800.0,STOLEN,195,"{'type': 'Point', 'coordinates': (-79.53280588, 43.64315759)}"
-200,17546,GO-20199008890,THEFT UNDER - BICYCLE,2019-03-16T00:00:00,2019,March,Saturday,16,75,20,2019-03-19T00:00:00,2019,March,Tuesday,19,78,18,D22,Toronto,14,Islington-City Centre West (14),Convenience Stores,Commercial,UK,SHIMANO EQ,MT,15,BLK,150.0,STOLEN,197,"{'type': 'Point', 'coordinates': (-79.55866947, 43.64407064)}"
-201,17705,GO-2020696148,THEFT FROM MOTOR VEHICLE UNDER,2020-04-08T00:00:00,2020,April,Wednesday,8,99,19,2020-04-10T00:00:00,2020,April,Friday,10,101,13,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,,OT,0,,,STOLEN,198,"{'type': 'Point', 'coordinates': (-79.53850166, 43.64909685)}"
-202,17783,GO-20189001109,THEFT UNDER - BICYCLE,2017-08-19T00:00:00,2017,August,Saturday,19,231,7,2018-01-13T00:00:00,2018,January,Saturday,13,13,14,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,,RG,21,BLK,1199.0,STOLEN,199,"{'type': 'Point', 'coordinates': (-79.52733649, 43.64234006)}"
-203,17912,GO-20189031676,THEFT UNDER - BICYCLE,2018-09-17T00:00:00,2018,September,Monday,17,260,16,2018-09-24T00:00:00,2018,September,Monday,24,267,8,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,GI,AVAIL,RG,16,,0.0,STOLEN,200,"{'type': 'Point', 'coordinates': (-79.53280588, 43.64315759)}"
-204,24372,GO-20189027119,THEFT UNDER - BICYCLE,2018-08-20T00:00:00,2018,August,Monday,20,232,7,2018-08-20T00:00:00,2018,August,Monday,20,232,13,D22,Toronto,16,Stonegate-Queensway (16),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,FX 2,MT,24,BLK,961.0,STOLEN,201,"{'type': 'Point', 'coordinates': (-79.51796363, 43.63450648)}"
-205,24448,GO-20159002410,THEFT UNDER,2015-05-01T00:00:00,2015,May,Friday,1,121,18,2015-05-03T00:00:00,2015,May,Sunday,3,123,14,D22,Toronto,16,Stonegate-Queensway (16),Schools During Un-Supervised Activity,Educational,UK,"2013, ATOM",MT,7,BLK,300.0,STOLEN,202,"{'type': 'Point', 'coordinates': (-79.50690223, 43.64274247)}"
-206,24473,GO-20151352227,THEFT UNDER,2015-07-23T00:00:00,2015,July,Thursday,23,204,18,2015-08-07T00:00:00,2015,August,Friday,7,219,13,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BIANCHI,,MT,10,BRN,200.0,STOLEN,203,"{'type': 'Point', 'coordinates': (-79.51355275, 43.64687723000001)}"
-207,9877,GO-20151064425,THEFT UNDER,2015-06-24T00:00:00,2015,June,Wednesday,24,175,15,2015-06-24T00:00:00,2015,June,Wednesday,24,175,15,D22,Toronto,15,Kingsway South (15),"Open Areas (Lakes, Parks, Rivers)",Outside,UNKNOWN MAKE,,OT,0,RED,300.0,STOLEN,496,"{'type': 'Point', 'coordinates': (-79.51042078, 43.66063143)}"
-208,24474,GO-20151352227,THEFT UNDER,2015-07-23T00:00:00,2015,July,Thursday,23,204,18,2015-08-07T00:00:00,2015,August,Friday,7,219,13,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,AQUILA,,MT,21,RED,400.0,STOLEN,204,"{'type': 'Point', 'coordinates': (-79.51355275, 43.64687723000001)}"
-209,24514,GO-20169003580,THEFT UNDER - BICYCLE,2016-04-19T00:00:00,2016,April,Tuesday,19,110,8,2016-04-19T00:00:00,2016,April,Tuesday,19,110,17,D22,Toronto,16,Stonegate-Queensway (16),Schools During Supervised Activity,Educational,GI,ESCAPE 2 CITY,RC,35,GRY,700.0,STOLEN,205,"{'type': 'Point', 'coordinates': (-79.50577149, 43.63395715)}"
-210,24537,GO-20169008550,THEFT UNDER,2016-07-30T00:00:00,2016,July,Saturday,30,212,21,2016-08-11T00:00:00,2016,August,Thursday,11,224,1,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,TALUS,MT,21,BLU,600.0,STOLEN,206,"{'type': 'Point', 'coordinates': (-79.51678734, 43.62854103)}"
-211,35,GO-20162314031,THEFT UNDER,2016-12-27T00:00:00,2016,December,Tuesday,27,362,14,2016-12-31T00:00:00,2016,December,Saturday,31,366,15,D23,Toronto,1,West Humber-Clairville (1),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN,,SC,5,BLU,3000.0,STOLEN,207,"{'type': 'Point', 'coordinates': (-79.60342029, 43.719157890000005)}"
-212,8,GO-20169014571,THEFT UNDER - BICYCLE,2016-12-05T00:00:00,2016,December,Monday,5,340,15,2016-12-12T00:00:00,2016,December,Monday,12,347,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,ANTELOPE 800 SE,OT,21,BLK,0.0,STOLEN,208,"{'type': 'Point', 'coordinates': (-79.50309339, 43.61484445)}"
-213,12,GO-20169014607,THEFT UNDER,2016-12-13T00:00:00,2016,December,Tuesday,13,348,7,2016-12-13T00:00:00,2016,December,Tuesday,13,348,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,DEVINCI,,MT,27,LBL,1100.0,STOLEN,209,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-214,16,GO-20169014665,THEFT UNDER - BICYCLE,2016-08-05T00:00:00,2016,August,Friday,5,218,21,2016-12-14T00:00:00,2016,December,Wednesday,14,349,21,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,RC,11,BLK,4000.0,STOLEN,210,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-215,117,GO-20179002564,THEFT UNDER - BICYCLE,2017-02-27T00:00:00,2017,February,Monday,27,58,16,2017-02-28T00:00:00,2017,February,Tuesday,28,59,0,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Universities / Colleges,Educational,OT,,RG,20,TRQ,1500.0,STOLEN,211,"{'type': 'Point', 'coordinates': (-79.50489559, 43.616265)}"
-216,122,GO-2017377584,THEFT UNDER - BICYCLE,2017-02-27T00:00:00,2017,February,Monday,27,58,13,2017-03-01T00:00:00,2017,March,Wednesday,1,60,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,TSX SLR 2,MT,10,BLKWHI,,STOLEN,212,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-217,157,GO-2017475962,THEFT OF MOTOR VEHICLE,2015-01-07T00:00:00,2015,January,Wednesday,7,7,0,2017-03-17T00:00:00,2017,March,Friday,17,76,7,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OTHER,FORTIES 1700T4,SC,2,BLU,3041.0,STOLEN,213,"{'type': 'Point', 'coordinates': (-79.50007787, 43.61724892)}"
-218,393,GO-20179006353,THEFT UNDER,2017-05-03T00:00:00,2017,May,Wednesday,3,123,23,2017-05-15T00:00:00,2017,May,Monday,15,135,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,NO,AURUM,MT,11,WHI,3800.0,STOLEN,214,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}"
-219,433,GO-2017897790,FTC PROBATION ORDER,2017-05-20T00:00:00,2017,May,Saturday,20,140,23,2017-05-21T00:00:00,2017,May,Sunday,21,141,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,AVANTI,,TO,15,WHI,3000.0,STOLEN,215,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}"
-220,455,GO-20179006844,THEFT UNDER - BICYCLE,2017-05-18T00:00:00,2017,May,Thursday,18,138,17,2017-05-23T00:00:00,2017,May,Tuesday,23,143,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,UNO,RG,1,LGR,700.0,STOLEN,216,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}"
-221,555,GO-20179007646,THEFT UNDER - BICYCLE,2016-09-01T00:00:00,2016,September,Thursday,1,245,10,2017-06-07T00:00:00,2017,June,Wednesday,7,158,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,24,,1500.0,STOLEN,217,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}"
-222,731,GO-20179009066,TRAFFICKING PROPERTY OBC UNDER,2017-06-27T00:00:00,2017,June,Tuesday,27,178,19,2017-06-28T00:00:00,2017,June,Wednesday,28,179,8,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GI,ALIGHT,OT,20,BLU,600.0,RECOVERED,218,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-223,22303,GO-20189021457,THEFT UNDER,2018-07-06T00:00:00,2018,July,Friday,6,187,8,2018-07-06T00:00:00,2018,July,Friday,6,187,17,D54,Toronto,66,Danforth (66),Ttc Subway Station,Transit,CC,SLOPE,MT,21,GRY,540.0,STOLEN,5372,"{'type': 'Point', 'coordinates': (-79.33007622, 43.68284971)}"
-224,739,GO-20179009141,THEFT UNDER - BICYCLE,2017-06-28T00:00:00,2017,June,Wednesday,28,179,16,2017-06-29T00:00:00,2017,June,Thursday,29,180,0,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,2016 SPECIALIZE,RG,24,ONG,700.0,STOLEN,219,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-225,742,GO-20179009108,THEFT UNDER - BICYCLE,2017-06-24T00:00:00,2017,June,Saturday,24,175,19,2017-06-28T00:00:00,2017,June,Wednesday,28,179,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,CARVE EXPERT,MT,24,BLK,2000.0,STOLEN,220,"{'type': 'Point', 'coordinates': (-79.47864061, 43.6248261)}"
-226,831,GO-20171236270,THEFT UNDER,2017-07-10T00:00:00,2017,July,Monday,10,191,13,2017-07-10T00:00:00,2017,July,Monday,10,191,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,EMMO,G545A,EL,1,RED,2000.0,STOLEN,221,"{'type': 'Point', 'coordinates': (-79.49671284, 43.61223676)}"
-227,877,GO-20179010352,THEFT UNDER - BICYCLE,2017-07-09T00:00:00,2017,July,Sunday,9,190,22,2017-07-16T00:00:00,2017,July,Sunday,16,197,23,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GT,ROADBIKE,RC,50,BLK,800.0,STOLEN,222,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}"
-228,1054,GO-20171415282,THEFT OVER - BICYCLE,2017-08-06T00:00:00,2017,August,Sunday,6,218,13,2017-08-06T00:00:00,2017,August,Sunday,6,218,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TREK,MADONE 5.1,RC,0,WHI,7000.0,STOLEN,223,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-229,1135,GO-20179012278,THEFT UNDER - BICYCLE,2017-08-05T00:00:00,2017,August,Saturday,5,217,23,2017-08-12T00:00:00,2017,August,Saturday,12,224,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,TR,HYBRID,OT,8,BLK,2000.0,STOLEN,224,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}"
-230,1142,GO-20171463554,THEFT UNDER,2017-08-04T00:00:00,2017,August,Friday,4,216,22,2017-08-14T00:00:00,2017,August,Monday,14,226,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,,MT,21,YEL,120.0,STOLEN,225,"{'type': 'Point', 'coordinates': (-79.50298867, 43.61849024)}"
-231,1143,GO-20171463554,THEFT UNDER,2017-08-04T00:00:00,2017,August,Friday,4,216,22,2017-08-14T00:00:00,2017,August,Monday,14,226,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,,MT,21,GRN,300.0,STOLEN,226,"{'type': 'Point', 'coordinates': (-79.50298867, 43.61849024)}"
-232,1181,GO-20171499226,THEFT UNDER - BICYCLE,2017-08-18T00:00:00,2017,August,Friday,18,230,22,2017-08-19T00:00:00,2017,August,Saturday,19,231,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Construction Site (Warehouse, Trailer, Shed)",Commercial,MARIN OR MARINO,LARKSPUR CSI,RG,24,BLK,400.0,STOLEN,227,"{'type': 'Point', 'coordinates': (-79.48966381, 43.61800177)}"
-233,1182,GO-20171499226,THEFT UNDER - BICYCLE,2017-08-18T00:00:00,2017,August,Friday,18,230,22,2017-08-19T00:00:00,2017,August,Saturday,19,231,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Construction Site (Warehouse, Trailer, Shed)",Commercial,MARIN OR MARINO,TESLA,RG,24,GRY,800.0,STOLEN,228,"{'type': 'Point', 'coordinates': (-79.48966381, 43.61800177)}"
-234,1189,GO-20179012810,THEFT UNDER - BICYCLE,2017-08-19T00:00:00,2017,August,Saturday,19,231,11,2017-08-19T00:00:00,2017,August,Saturday,19,231,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,ST-TROPEZ,RG,16,GRY,700.0,STOLEN,229,"{'type': 'Point', 'coordinates': (-79.49099109, 43.61535546)}"
-235,1232,GO-20179013148,THEFT UNDER - BICYCLE,2016-08-21T00:00:00,2016,August,Sunday,21,234,15,2017-08-23T00:00:00,2017,August,Wednesday,23,235,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,UK,MASI ALARE 53 C,RC,12,BLK,900.0,STOLEN,230,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-236,1307,GO-20179014000,THEFT UNDER,2017-09-04T00:00:00,2017,September,Monday,4,247,16,2017-09-05T00:00:00,2017,September,Tuesday,5,248,10,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,TRANCE X3,MT,30,BLK,2150.0,STOLEN,231,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}"
-237,1358,GO-20171646818,THEFT UNDER,2017-09-01T00:00:00,2017,September,Friday,1,244,11,2017-09-11T00:00:00,2017,September,Monday,11,254,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,SC,0,WHI,2800.0,STOLEN,232,"{'type': 'Point', 'coordinates': (-79.48919597, 43.61646248)}"
-238,1452,GO-20171700735,THEFT OVER,2017-08-25T00:00:00,2017,August,Friday,25,237,21,2017-09-19T00:00:00,2017,September,Tuesday,19,262,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,ARGON 18,KRYPTON XL,RG,21,RED,2800.0,STOLEN,233,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-239,1486,GO-20179015443,THEFT UNDER - BICYCLE,2017-09-21T00:00:00,2017,September,Thursday,21,264,7,2017-09-22T00:00:00,2017,September,Friday,22,265,9,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GI,TCR,RC,22,BLK,3188.0,STOLEN,234,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-240,1514,GO-20179015689,THEFT UNDER - BICYCLE,2017-09-23T00:00:00,2017,September,Saturday,23,266,12,2017-09-25T00:00:00,2017,September,Monday,25,268,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,700C ROAD BIKE,RC,21,PLE,300.0,STOLEN,235,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-241,1680,GO-20171887127,THEFT UNDER - BICYCLE,2017-10-18T00:00:00,2017,October,Wednesday,18,291,13,2017-10-18T00:00:00,2017,October,Wednesday,18,291,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,,RC,18,BLKRED,900.0,STOLEN,236,"{'type': 'Point', 'coordinates': (-79.5260292, 43.61079098)}"
-242,1687,GO-20179017564,THEFT UNDER - BICYCLE,2017-10-19T00:00:00,2017,October,Thursday,19,292,7,2017-10-19T00:00:00,2017,October,Thursday,19,292,21,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,SPEC SECTEUR,OT,18,BLK,1000.0,STOLEN,237,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-243,1702,GO-20179017564,THEFT UNDER - BICYCLE,2017-10-19T00:00:00,2017,October,Thursday,19,292,7,2017-10-19T00:00:00,2017,October,Thursday,19,292,21,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,OT,24,BLK,1000.0,STOLEN,238,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-244,1756,GO-20179018318,THEFT UNDER - BICYCLE,2017-10-25T00:00:00,2017,October,Wednesday,25,298,22,2017-10-26T00:00:00,2017,October,Thursday,26,299,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,HF,,RG,10,BLU,109.0,STOLEN,239,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-245,1807,GO-20179019090,THEFT UNDER,2017-10-29T00:00:00,2017,October,Sunday,29,302,18,2017-11-07T00:00:00,2017,November,Tuesday,7,311,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Convenience Stores,Commercial,OT,,TO,18,SIL,1300.0,STOLEN,240,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-246,1976,GO-201853134,THEFT OVER,2017-11-15T00:00:00,2017,November,Wednesday,15,319,8,2018-01-09T00:00:00,2018,January,Tuesday,9,9,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,NORCO,,OT,21,LGR,1000.0,STOLEN,241,"{'type': 'Point', 'coordinates': (-79.47400022, 43.6305708)}"
-247,1977,GO-201853134,THEFT OVER,2017-11-15T00:00:00,2017,November,Wednesday,15,319,8,2018-01-09T00:00:00,2018,January,Tuesday,9,9,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,GIANT,,MT,24,BLK,1800.0,STOLEN,242,"{'type': 'Point', 'coordinates': (-79.47400022, 43.6305708)}"
-248,2009,GO-20189002976,THEFT UNDER - BICYCLE,2018-01-27T00:00:00,2018,January,Saturday,27,27,20,2018-01-30T00:00:00,2018,January,Tuesday,30,30,0,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GI,RINCON,MT,21,BLK,800.0,STOLEN,243,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-249,2028,GO-20189004291,THEFT UNDER - BICYCLE,2017-08-11T00:00:00,2017,August,Friday,11,223,17,2018-02-11T00:00:00,2018,February,Sunday,11,42,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,MODEL FSRXC MYK,MT,25,PLE,2800.0,STOLEN,244,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-250,2062,GO-20189006627,THEFT UNDER,2018-02-16T00:00:00,2018,February,Friday,16,47,0,2018-03-02T00:00:00,2018,March,Friday,2,61,19,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,XBOW,RC,20,WHI,1500.0,STOLEN,245,"{'type': 'Point', 'coordinates': (-79.48862673, 43.61495018)}"
-251,2063,GO-20189006820,THEFT UNDER - BICYCLE,2018-03-05T00:00:00,2018,March,Monday,5,64,9,2018-03-05T00:00:00,2018,March,Monday,5,64,9,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Unknown,Other,CA,QUICK 7,MT,8,BLK,650.0,STOLEN,246,"{'type': 'Point', 'coordinates': (-79.48862673, 43.61495018)}"
-252,2067,GO-20189007045,THEFT UNDER,2018-03-02T00:00:00,2018,March,Friday,2,61,22,2018-03-06T00:00:00,2018,March,Tuesday,6,65,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GT,AGRESSOR,MT,21,LGR,600.0,STOLEN,247,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-253,2077,GO-2018482570,THEFT OVER,2018-03-12T00:00:00,2018,March,Monday,12,71,7,2018-03-16T00:00:00,2018,March,Friday,16,75,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,NORCO,,MT,12,RED,5000.0,STOLEN,248,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-254,2393,GO-20189016209,B&E,2018-05-24T00:00:00,2018,May,Thursday,24,144,15,2018-05-25T00:00:00,2018,May,Friday,25,145,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,UK,,OT,24,,0.0,STOLEN,249,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}"
-255,2414,GO-20189016566,THEFT UNDER - BICYCLE,2018-05-24T00:00:00,2018,May,Thursday,24,144,4,2018-05-28T00:00:00,2018,May,Monday,28,148,19,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,SHIMANO 105,RC,21,LBL,1750.0,STOLEN,250,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}"
-256,2543,GO-20189018331,THEFT UNDER - BICYCLE,2018-06-10T00:00:00,2018,June,Sunday,10,161,20,2018-06-12T00:00:00,2018,June,Tuesday,12,163,6,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,CROSS RACE PRO,RC,22,RED,2000.0,STOLEN,251,"{'type': 'Point', 'coordinates': (-79.48643252, 43.61892859)}"
-257,2685,GO-20181162011,B&E,2018-06-25T00:00:00,2018,June,Monday,25,176,21,2018-06-26T00:00:00,2018,June,Tuesday,26,177,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NIXON,ADAMS DAISY,MT,18,BLU,220.0,STOLEN,252,"{'type': 'Point', 'coordinates': (-79.49420384, 43.61507212)}"
-258,2748,GO-20189021105,THEFT UNDER - BICYCLE,2018-07-02T00:00:00,2018,July,Monday,2,183,12,2018-07-04T00:00:00,2018,July,Wednesday,4,185,7,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,HYBRID,MT,15,WHI,1800.0,STOLEN,253,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}"
-259,2759,GO-20189021322,THEFT UNDER - BICYCLE,2018-07-02T00:00:00,2018,July,Monday,2,183,15,2018-07-05T00:00:00,2018,July,Thursday,5,186,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GT,AGGRESSOR,MT,21,GRY,500.0,STOLEN,254,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-260,2977,GO-20189024052,THEFT UNDER - BICYCLE,2018-07-17T00:00:00,2018,July,Tuesday,17,198,20,2018-07-26T00:00:00,2018,July,Thursday,26,207,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,1,BLK,600.0,STOLEN,263,"{'type': 'Point', 'coordinates': (-79.48760733, 43.62206923)}"
-261,2786,GO-20189021149,THEFT UNDER - BICYCLE,2018-06-30T00:00:00,2018,June,Saturday,30,181,15,2018-07-04T00:00:00,2018,July,Wednesday,4,185,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,TR,X-CALIBER 8,MT,40,GRY,2800.0,STOLEN,255,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}"
-262,2834,GO-20189022111,THEFT UNDER - BICYCLE,2018-07-08T00:00:00,2018,July,Sunday,8,189,16,2018-07-11T00:00:00,2018,July,Wednesday,11,192,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,,OT,24,BLK,850.0,STOLEN,256,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}"
-263,2838,GO-20189022301,THEFT UNDER - BICYCLE,2018-07-13T00:00:00,2018,July,Friday,13,194,13,2018-07-13T00:00:00,2018,July,Friday,13,194,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,CERVELO,S2 (105),RC,11,BLK,3600.0,STOLEN,257,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-264,2865,GO-20189022874,THEFT UNDER - BICYCLE,2018-07-14T00:00:00,2018,July,Saturday,14,195,10,2018-07-18T00:00:00,2018,July,Wednesday,18,199,10,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GI,,RC,30,WHI,1500.0,STOLEN,258,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-265,2866,GO-20189022874,THEFT UNDER - BICYCLE,2018-07-14T00:00:00,2018,July,Saturday,14,195,10,2018-07-18T00:00:00,2018,July,Wednesday,18,199,10,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,30,DGR,800.0,STOLEN,259,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-266,2911,GO-20189023381,THEFT UNDER - BICYCLE,2018-07-06T00:00:00,2018,July,Friday,6,187,1,2018-07-22T00:00:00,2018,July,Sunday,22,203,2,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,ZED 3.2,MT,21,,450.0,STOLEN,260,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-267,2973,GO-20189024020,THEFT UNDER - BICYCLE,2018-07-24T00:00:00,2018,July,Tuesday,24,205,19,2018-07-26T00:00:00,2018,July,Thursday,26,207,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,SC,,MT,21,WHI,50.0,STOLEN,261,"{'type': 'Point', 'coordinates': (-79.49650188, 43.61176418)}"
-268,2976,GO-20189024052,THEFT UNDER - BICYCLE,2018-07-17T00:00:00,2018,July,Tuesday,17,198,20,2018-07-26T00:00:00,2018,July,Thursday,26,207,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,KH,,MT,1,,1000.0,STOLEN,262,"{'type': 'Point', 'coordinates': (-79.48760733, 43.62206923)}"
-269,3003,GO-20189024267,THEFT UNDER - BICYCLE,2018-07-19T00:00:00,2018,July,Thursday,19,200,1,2018-07-27T00:00:00,2018,July,Friday,27,208,19,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,NO,CHARGER,MT,18,BLK,1500.0,STOLEN,264,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-270,3107,GO-20189025448,THEFT UNDER - BICYCLE,2018-07-23T00:00:00,2018,July,Monday,23,204,15,2018-08-07T00:00:00,2018,August,Tuesday,7,219,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,RG,9,WHI,300.0,STOLEN,265,"{'type': 'Point', 'coordinates': (-79.48731142, 43.61728142)}"
-271,3180,GO-20181470949,THEFT UNDER - BICYCLE,2018-07-09T00:00:00,2018,July,Monday,9,190,12,2018-08-10T00:00:00,2018,August,Friday,10,222,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,,RG,21,GRY,1000.0,STOLEN,266,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-272,3199,GO-20189026354,THEFT UNDER,2018-08-14T00:00:00,2018,August,Tuesday,14,226,18,2018-08-14T00:00:00,2018,August,Tuesday,14,226,19,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,SC,,TO,21,,600.0,STOLEN,267,"{'type': 'Point', 'coordinates': (-79.49138084, 43.62576989)}"
-273,3415,GO-20189029480,THEFT UNDER,2018-09-04T00:00:00,2018,September,Tuesday,4,247,22,2018-09-07T00:00:00,2018,September,Friday,7,250,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,DAKAR,MT,12,GRN,1400.0,STOLEN,268,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}"
-274,3544,GO-20181769054,THEFT UNDER - BICYCLE,2018-09-20T00:00:00,2018,September,Thursday,20,263,13,2018-09-24T00:00:00,2018,September,Monday,24,267,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,OT,1,BLK,120.0,STOLEN,269,"{'type': 'Point', 'coordinates': (-79.48688069, 43.61810501000001)}"
-275,3589,GO-20181815348,THEFT UNDER - BICYCLE,2018-09-30T00:00:00,2018,September,Sunday,30,273,16,2018-10-01T00:00:00,2018,October,Monday,1,274,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,MT,18,BLKSIL,,STOLEN,270,"{'type': 'Point', 'coordinates': (-79.49671284, 43.61223676)}"
-276,3603,GO-20181826201,B&E,2018-09-18T00:00:00,2018,September,Tuesday,18,261,17,2018-10-03T00:00:00,2018,October,Wednesday,3,276,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,MATTERHORN,MT,10,GRY,200.0,STOLEN,271,"{'type': 'Point', 'coordinates': (-79.49312873, 43.60365221)}"
-277,3604,GO-20181826201,B&E,2018-09-18T00:00:00,2018,September,Tuesday,18,261,17,2018-10-03T00:00:00,2018,October,Wednesday,3,276,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,SCORCHER,MT,10,BLU,200.0,STOLEN,272,"{'type': 'Point', 'coordinates': (-79.49312873, 43.60365221)}"
-278,3640,GO-20181822856,THEFT UNDER,2018-10-02T00:00:00,2018,October,Tuesday,2,275,14,2018-10-02T00:00:00,2018,October,Tuesday,2,275,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,PROJEKT 8,RG,8,BLK,542.0,STOLEN,273,"{'type': 'Point', 'coordinates': (-79.48966381, 43.61800177)}"
-279,3720,GO-20189034503,THEFT UNDER - BICYCLE,2018-10-16T00:00:00,2018,October,Tuesday,16,289,21,2018-10-17T00:00:00,2018,October,Wednesday,17,290,22,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RM,,MT,9,BLU,800.0,STOLEN,274,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}"
-280,3721,GO-20189034513,THEFT UNDER - BICYCLE,2018-10-16T00:00:00,2018,October,Tuesday,16,289,2,2018-10-18T00:00:00,2018,October,Thursday,18,291,0,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RM,,OT,21,RED,600.0,STOLEN,275,"{'type': 'Point', 'coordinates': (-79.48966381, 43.61800177)}"
-281,3722,GO-20189034513,THEFT UNDER - BICYCLE,2018-10-16T00:00:00,2018,October,Tuesday,16,289,2,2018-10-18T00:00:00,2018,October,Thursday,18,291,0,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,MIELE UMBRIA 1,RG,21,GRY,300.0,STOLEN,276,"{'type': 'Point', 'coordinates': (-79.48966381, 43.61800177)}"
-282,3739,GO-20189034998,THEFT UNDER - BICYCLE,2018-10-05T00:00:00,2018,October,Friday,5,278,22,2018-10-21T00:00:00,2018,October,Sunday,21,294,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,RINCON,MT,24,BLK,300.0,STOLEN,277,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}"
-283,3820,GO-20189037075,THEFT UNDER - BICYCLE,2018-11-05T00:00:00,2018,November,Monday,5,309,11,2018-11-06T00:00:00,2018,November,Tuesday,6,310,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,RAVEN29R,MT,30,WHI,2700.0,STOLEN,278,"{'type': 'Point', 'coordinates': (-79.4995502, 43.61906441)}"
-284,3886,GO-20189039253,THEFT UNDER - BICYCLE,2018-11-19T00:00:00,2018,November,Monday,19,323,14,2018-11-22T00:00:00,2018,November,Thursday,22,326,0,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GI,NRS3,MT,27,BLU,2000.0,STOLEN,279,"{'type': 'Point', 'coordinates': (-79.48480515, 43.62040835)}"
-285,3888,GO-20182151965,THEFT UNDER - BICYCLE,2018-11-18T00:00:00,2018,November,Sunday,18,322,12,2018-11-22T00:00:00,2018,November,Thursday,22,326,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,NORCO,CHARGER,MT,21,BLKLGR,1000.0,STOLEN,280,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-286,3898,GO-20189039803,THEFT UNDER - BICYCLE,2018-11-22T00:00:00,2018,November,Thursday,22,326,17,2018-11-26T00:00:00,2018,November,Monday,26,330,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,1,YEL,500.0,STOLEN,281,"{'type': 'Point', 'coordinates': (-79.48760733, 43.62206923)}"
-287,3932,GO-20182267276,THEFT UNDER - BICYCLE,2018-12-10T00:00:00,2018,December,Monday,10,344,16,2018-12-10T00:00:00,2018,December,Monday,10,344,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Jails / Detention Centres,Other,ROCKY MOUNTAIN,,MT,24,SIL,600.0,STOLEN,282,"{'type': 'Point', 'coordinates': (-79.51578755, 43.61208553)}"
-288,3939,GO-20189042059,THEFT UNDER,2018-12-11T00:00:00,2018,December,Tuesday,11,345,9,2018-12-14T00:00:00,2018,December,Friday,14,348,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,TR,7.4 FX,RG,27,SIL,800.0,STOLEN,283,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}"
-289,3940,GO-20189042059,THEFT UNDER,2018-12-11T00:00:00,2018,December,Tuesday,11,345,9,2018-12-14T00:00:00,2018,December,Friday,14,348,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,TR,16 ALLANT,RG,27,BLK,1000.0,STOLEN,284,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}"
-290,3981,GO-201917288,THEFT UNDER - BICYCLE,2018-10-01T00:00:00,2018,October,Monday,1,274,12,2019-01-03T00:00:00,2019,January,Thursday,3,3,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,,MT,21,BLK,50.0,STOLEN,285,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-291,3982,GO-201917288,THEFT UNDER - BICYCLE,2018-10-01T00:00:00,2018,October,Monday,1,274,12,2019-01-03T00:00:00,2019,January,Thursday,3,3,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,ROAM 2,MT,21,RED,450.0,STOLEN,286,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-292,4021,GO-20199003374,THEFT UNDER - BICYCLE,2018-12-24T00:00:00,2018,December,Monday,24,358,14,2019-01-24T00:00:00,2019,January,Thursday,24,24,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,NO,NORCO INDIE 3,RG,30,LGR,987.0,STOLEN,287,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-293,4072,GO-2019388619,THEFT UNDER - BICYCLE,2019-02-28T00:00:00,2019,February,Thursday,28,59,8,2019-03-02T00:00:00,2019,March,Saturday,2,61,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,,TO,27,GRN,1000.0,STOLEN,288,"{'type': 'Point', 'coordinates': (-79.48497603, 43.62140475)}"
-294,4078,GO-20199007520,THEFT UNDER - BICYCLE,2018-12-07T00:00:00,2018,December,Friday,7,341,10,2019-03-07T00:00:00,2019,March,Thursday,7,66,10,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GI,LIV THRIVE 0,RC,80,BLU,1549.0,STOLEN,289,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-295,4169,GO-20199012032,THEFT UNDER,2019-04-15T00:00:00,2019,April,Monday,15,105,21,2019-04-16T00:00:00,2019,April,Tuesday,16,106,6,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,VERZA SPEED 50,RC,25,BLK,400.0,STOLEN,290,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-296,4303,GO-2019907432,THEFT FROM MOTOR VEHICLE UNDER,2019-05-17T00:00:00,2019,May,Friday,17,137,14,2019-05-18T00:00:00,2019,May,Saturday,18,138,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,DEVINCI,JACK,MT,21,BLUBLK,2300.0,STOLEN,291,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-297,4306,GO-20199015715,THEFT UNDER,2019-05-18T00:00:00,2019,May,Saturday,18,138,0,2019-05-21T00:00:00,2019,May,Tuesday,21,141,0,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,TR,HYBRID 8.5S,TO,21,BLU,1500.0,STOLEN,292,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}"
-298,4328,GO-2019932018,THEFT UNDER,2019-05-21T00:00:00,2019,May,Tuesday,21,141,8,2019-05-22T00:00:00,2019,May,Wednesday,22,142,9,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,JAMIS,XENETH ENDURA,RC,10,BLK,1500.0,STOLEN,293,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}"
-299,4337,GO-2019949098,THEFT UNDER - BICYCLE,2019-05-20T00:00:00,2019,May,Monday,20,140,21,2019-05-24T00:00:00,2019,May,Friday,24,144,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,ESCAPE 2,RG,21,BLK,535.0,STOLEN,294,"{'type': 'Point', 'coordinates': (-79.50131553, 43.61697253)}"
-300,4338,GO-20199016177,THEFT UNDER,2019-05-23T00:00:00,2019,May,Thursday,23,143,0,2019-05-24T00:00:00,2019,May,Friday,24,144,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,IH,OUTLAW,MT,18,BLK,300.0,STOLEN,295,"{'type': 'Point', 'coordinates': (-79.49811913, 43.619392950000005)}"
-301,4352,GO-20199016388,THEFT UNDER,2019-05-26T00:00:00,2019,May,Sunday,26,146,18,2019-05-26T00:00:00,2019,May,Sunday,26,146,22,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Go Station,Transit,,,RG,21,BLK,290.0,STOLEN,296,"{'type': 'Point', 'coordinates': (-79.49833024, 43.61617493)}"
-302,4365,GO-20199016615,THEFT UNDER,2019-05-18T00:00:00,2019,May,Saturday,18,138,12,2019-05-28T00:00:00,2019,May,Tuesday,28,148,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,CA,,MT,8,,900.0,STOLEN,297,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-303,4376,GO-20199016868,THEFT UNDER,2019-05-30T00:00:00,2019,May,Thursday,30,150,8,2019-05-30T00:00:00,2019,May,Thursday,30,150,9,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,TRAIL X2,MT,24,SIL,250.0,STOLEN,298,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}"
-304,4386,GO-20199016905,THEFT UNDER,2019-05-25T00:00:00,2019,May,Saturday,25,145,14,2019-05-30T00:00:00,2019,May,Thursday,30,150,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,MA,,RG,21,BLK,684.0,STOLEN,299,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}"
-305,4406,GO-20199017003,THEFT UNDER,2019-05-18T00:00:00,2019,May,Saturday,18,138,14,2019-05-31T00:00:00,2019,May,Friday,31,151,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MO,R7917WMA,MT,21,BLK,190.0,STOLEN,300,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-306,4418,GO-20199017621,THEFT UNDER,2019-05-29T00:00:00,2019,May,Wednesday,29,149,21,2019-06-06T00:00:00,2019,June,Thursday,6,157,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GI,DEFY,RC,22,BLK,1400.0,STOLEN,301,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-307,4419,GO-20191043159,THEFT UNDER - BICYCLE,2019-05-28T00:00:00,2019,May,Tuesday,28,148,23,2019-06-06T00:00:00,2019,June,Thursday,6,157,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,ALLEZ,TO,10,BLK,500.0,STOLEN,302,"{'type': 'Point', 'coordinates': (-79.48497603, 43.62140475)}"
-308,4421,GO-20191046998,THEFT UNDER,2019-06-06T00:00:00,2019,June,Thursday,6,157,8,2019-06-07T00:00:00,2019,June,Friday,7,158,8,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Go Station,Transit,OPUS SPARK,OPUS SPARK,OT,21,REDWHI,900.0,STOLEN,303,"{'type': 'Point', 'coordinates': (-79.49833024, 43.61617493)}"
-309,215,GO-20179004648,THEFT UNDER,2017-04-10T00:00:00,2017,April,Monday,10,100,11,2017-04-13T00:00:00,2017,April,Thursday,13,103,13,D23,Toronto,1,West Humber-Clairville (1),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,MAX TRAINER M5,OT,1,,2146.0,STOLEN,304,"{'type': 'Point', 'coordinates': (-79.61688986, 43.72375357)}"
-310,722,GO-20179008955,THEFT UNDER - BICYCLE,2017-06-26T00:00:00,2017,June,Monday,26,177,14,2017-06-26T00:00:00,2017,June,Monday,26,177,19,D23,Toronto,1,West Humber-Clairville (1),Universities / Colleges,Educational,GT,VANTARA,RC,9,BLK,784.0,STOLEN,305,"{'type': 'Point', 'coordinates': (-79.60569089, 43.72892868)}"
-311,1400,GO-20179014740,THEFT UNDER - BICYCLE,2017-09-10T00:00:00,2017,September,Sunday,10,253,12,2017-09-14T00:00:00,2017,September,Thursday,14,257,12,D23,Toronto,1,West Humber-Clairville (1),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,UK,,RG,15,LBL,0.0,STOLEN,306,"{'type': 'Point', 'coordinates': (-79.60569089, 43.72892868)}"
-312,1683,GO-20171879806,THEFT UNDER - BICYCLE,2017-10-16T00:00:00,2017,October,Monday,16,289,11,2017-10-19T00:00:00,2017,October,Thursday,19,292,17,D23,Toronto,1,West Humber-Clairville (1),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,STORM,MT,21,BLU,600.0,STOLEN,307,"{'type': 'Point', 'coordinates': (-79.61423506000001, 43.732190450000004)}"
-313,2922,GO-20181343089,THEFT UNDER - BICYCLE,2018-07-16T00:00:00,2018,July,Monday,16,197,19,2018-07-23T00:00:00,2018,July,Monday,23,204,7,D23,Toronto,1,West Humber-Clairville (1),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,MT,21,GRYYEL,120.0,STOLEN,308,"{'type': 'Point', 'coordinates': (-79.60417825000002, 43.70602991)}"
-314,3124,GO-20189025626,THEFT UNDER - BICYCLE,2018-08-08T00:00:00,2018,August,Wednesday,8,220,8,2018-08-08T00:00:00,2018,August,Wednesday,8,220,21,D23,Toronto,1,West Humber-Clairville (1),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,,RG,1,SIL,250.0,STOLEN,309,"{'type': 'Point', 'coordinates': (-79.59326257, 43.67218997)}"
-315,3622,GO-20189033044,THEFT UNDER - BICYCLE,2018-10-02T00:00:00,2018,October,Tuesday,2,275,11,2018-10-05T00:00:00,2018,October,Friday,5,278,15,D23,Toronto,1,West Humber-Clairville (1),Schools During Supervised Activity,Educational,UK,,MT,3,BLK,178.0,STOLEN,310,"{'type': 'Point', 'coordinates': (-79.57147176, 43.72170269)}"
-316,4391,GO-20199017068,THEFT UNDER,2019-05-31T00:00:00,2019,May,Friday,31,151,21,2019-05-31T00:00:00,2019,May,Friday,31,151,22,D23,Toronto,1,West Humber-Clairville (1),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,,MT,21,LGR,199.0,STOLEN,311,"{'type': 'Point', 'coordinates': (-79.60110555, 43.74720714)}"
-317,4951,GO-20191455671,THEFT UNDER - BICYCLE,2019-07-31T00:00:00,2019,July,Wednesday,31,212,8,2019-08-02T00:00:00,2019,August,Friday,2,214,13,D23,Toronto,1,West Humber-Clairville (1),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NEXT,UNKOWN,OT,21,BLU,1000.0,STOLEN,312,"{'type': 'Point', 'coordinates': (-79.60169835, 43.71844401)}"
-318,4956,GO-20191458923,THEFT UNDER - BICYCLE,2019-07-29T00:00:00,2019,July,Monday,29,210,12,2019-08-02T00:00:00,2019,August,Friday,2,214,19,D23,Toronto,1,West Humber-Clairville (1),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,,MT,21,BLU,150.0,STOLEN,313,"{'type': 'Point', 'coordinates': (-79.57462099000001, 43.7281411)}"
-319,5464,GO-20191908158,THEFT UNDER - BICYCLE,2019-10-03T00:00:00,2019,October,Thursday,3,276,14,2019-10-04T00:00:00,2019,October,Friday,4,277,8,D23,Toronto,1,West Humber-Clairville (1),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,RG,1,BLK,,STOLEN,314,"{'type': 'Point', 'coordinates': (-79.60169835, 43.71844401)}"
-320,18105,GO-20171396895,B&E W'INTENT,2017-07-30T00:00:00,2017,July,Sunday,30,211,1,2017-08-03T00:00:00,2017,August,Thursday,3,215,17,D23,Toronto,7,Willowridge-Martingrove-Richview (7),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,MT,10,BLU,100.0,STOLEN,315,"{'type': 'Point', 'coordinates': (-79.56169399, 43.67894014)}"
-321,6038,GO-2020684156,B&E,2019-12-27T00:00:00,2019,December,Friday,27,361,14,2020-04-08T00:00:00,2020,April,Wednesday,8,99,14,D23,Toronto,1,West Humber-Clairville (1),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NORCO,VALENCE C105,RC,22,GRY,2200.0,STOLEN,316,"{'type': 'Point', 'coordinates': (-79.57635547, 43.73166845)}"
-322,6719,GO-20209018364,THEFT UNDER,2020-07-22T00:00:00,2020,July,Wednesday,22,204,18,2020-07-23T00:00:00,2020,July,Thursday,23,205,17,D23,Toronto,1,West Humber-Clairville (1),Universities / Colleges,Educational,GT,AVALANCHE,MT,9,BLK,760.0,STOLEN,317,"{'type': 'Point', 'coordinates': (-79.60937769, 43.72749881000001)}"
-323,6754,GO-20209018364,THEFT UNDER,2020-07-22T00:00:00,2020,July,Wednesday,22,204,18,2020-07-23T00:00:00,2020,July,Thursday,23,205,17,D23,Toronto,1,West Humber-Clairville (1),Universities / Colleges,Educational,GT,,MT,9,BLK,760.0,STOLEN,318,"{'type': 'Point', 'coordinates': (-79.60937769, 43.72749881000001)}"
-324,7576,GO-20209028219,THEFT UNDER,2020-10-24T00:00:00,2020,October,Saturday,24,298,11,2020-10-31T00:00:00,2020,October,Saturday,31,305,15,D23,Toronto,1,West Humber-Clairville (1),Schools During Un-Supervised Activity,Educational,UK,,OT,1,GRY,0.0,STOLEN,319,"{'type': 'Point', 'coordinates': (-79.60569089, 43.72892868)}"
-325,8095,GO-20142262250,THEFT UNDER,2014-06-10T00:00:00,2014,June,Tuesday,10,161,13,2014-06-10T00:00:00,2014,June,Tuesday,10,161,15,D23,Toronto,1,West Humber-Clairville (1),Schools During Un-Supervised Activity,Educational,CCM,29,MT,21,BLK,,STOLEN,320,"{'type': 'Point', 'coordinates': (-79.60569089, 43.72892868)}"
-326,8590,GO-20142668100,THEFT UNDER,2014-08-09T00:00:00,2014,August,Saturday,9,221,15,2014-08-09T00:00:00,2014,August,Saturday,9,221,15,D23,Toronto,1,West Humber-Clairville (1),"Apartment (Rooming House, Condo)",Apartment,OTHER,GIMELLI,BM,35,RED,599.0,STOLEN,321,"{'type': 'Point', 'coordinates': (-79.59350023, 43.73377335)}"
-327,9471,GO-2015687344,THEFT UNDER,2015-04-25T00:00:00,2015,April,Saturday,25,115,22,2015-04-25T00:00:00,2015,April,Saturday,25,115,22,D23,Toronto,1,West Humber-Clairville (1),Convenience Stores,Commercial,GIANT,,MT,8,BRN,700.0,STOLEN,322,"{'type': 'Point', 'coordinates': (-79.60070124, 43.73183406)}"
-328,9552,GO-2015761746,THEFT UNDER,2015-05-06T00:00:00,2015,May,Wednesday,6,126,18,2015-05-07T00:00:00,2015,May,Thursday,7,127,19,D23,Toronto,1,West Humber-Clairville (1),Universities / Colleges,Educational,UNKNOWN MAKE,,MT,18,BLKGRY,192.0,STOLEN,323,"{'type': 'Point', 'coordinates': (-79.60569089, 43.72892868)}"
-329,9637,GO-2015859298,B&E,2015-05-22T00:00:00,2015,May,Friday,22,142,22,2015-05-23T00:00:00,2015,May,Saturday,23,143,12,D23,Toronto,1,West Humber-Clairville (1),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,KARORAM,MT,10,BLK,710.0,STOLEN,324,"{'type': 'Point', 'coordinates': (-79.62019742, 43.728718840000006)}"
-330,9638,GO-2015859298,B&E,2015-05-22T00:00:00,2015,May,Friday,22,142,22,2015-05-23T00:00:00,2015,May,Saturday,23,143,12,D23,Toronto,1,West Humber-Clairville (1),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NAKAMURA,MONSTER 6.3,MT,10,BLK,212.0,STOLEN,325,"{'type': 'Point', 'coordinates': (-79.62019742, 43.728718840000006)}"
-331,9849,GO-20159003826,THEFT UNDER,2015-06-21T00:00:00,2015,June,Sunday,21,172,11,2015-06-22T00:00:00,2015,June,Monday,22,173,11,D23,Toronto,1,West Humber-Clairville (1),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,CARPE H50,RG,10,BLK,700.0,STOLEN,326,"{'type': 'Point', 'coordinates': (-79.59732521, 43.69075989)}"
-332,10063,GO-20151248729,THEFT UNDER,2015-07-22T00:00:00,2015,July,Wednesday,22,203,11,2015-07-22T00:00:00,2015,July,Wednesday,22,203,12,D23,Toronto,1,West Humber-Clairville (1),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GENESIS,GENESIS,OT,10,,160.0,STOLEN,327,"{'type': 'Point', 'coordinates': (-79.60667875, 43.73372347)}"
-333,10105,GO-20151269728,THEFT FROM MOTOR VEHICLE UNDER,2015-07-25T00:00:00,2015,July,Saturday,25,206,1,2015-07-25T00:00:00,2015,July,Saturday,25,206,14,D23,Toronto,1,West Humber-Clairville (1),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,MOUNTAIN,MT,21,BLK,99.0,STOLEN,328,"{'type': 'Point', 'coordinates': (-79.57481477, 43.72372896)}"
-334,10280,GO-20151424849,THEFT UNDER,2015-08-10T00:00:00,2015,August,Monday,10,222,11,2015-08-19T00:00:00,2015,August,Wednesday,19,231,7,D23,Toronto,1,West Humber-Clairville (1),"Open Areas (Lakes, Parks, Rivers)",Outside,UNKNOWN,,OT,0,REDWHI,150.0,STOLEN,329,"{'type': 'Point', 'coordinates': (-79.62217749, 43.72617604)}"
-335,10347,GO-20159006386,THEFT UNDER,2015-08-24T00:00:00,2015,August,Monday,24,236,9,2015-08-25T00:00:00,2015,August,Tuesday,25,237,11,D23,Toronto,1,West Humber-Clairville (1),Universities / Colleges,Educational,OT,DENALI,RC,21,LGR,340.0,STOLEN,330,"{'type': 'Point', 'coordinates': (-79.60569089, 43.72892868)}"
-336,11218,GO-2016460547,MISCHIEF UNDER,2016-03-17T00:00:00,2016,March,Thursday,17,77,10,2016-03-17T00:00:00,2016,March,Thursday,17,77,10,D23,Toronto,1,West Humber-Clairville (1),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,,MT,99,PLE,,RECOVERED,331,"{'type': 'Point', 'coordinates': (-79.60334066, 43.75786287)}"
-337,17341,GO-20209015753,THEFT UNDER,2020-06-06T00:00:00,2020,June,Saturday,6,158,6,2020-06-19T00:00:00,2020,June,Friday,19,171,19,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,SC,1,LBL,500.0,STOLEN,332,"{'type': 'Point', 'coordinates': (-79.58873503, 43.7482716)}"
-338,11427,GO-20169005231,THEFT UNDER,2016-06-01T00:00:00,2016,June,Wednesday,1,153,22,2016-06-02T00:00:00,2016,June,Thursday,2,154,1,D23,Toronto,1,West Humber-Clairville (1),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,1,SIL,0.0,STOLEN,333,"{'type': 'Point', 'coordinates': (-79.59184324, 43.72334059)}"
-339,11678,GO-20161149572,THEFT UNDER - BICYCLE,2016-06-30T00:00:00,2016,June,Thursday,30,182,12,2016-07-01T00:00:00,2016,July,Friday,1,183,9,D23,Toronto,1,West Humber-Clairville (1),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,,RG,10,PLE,20.0,STOLEN,334,"{'type': 'Point', 'coordinates': (-79.62088968, 43.72890858)}"
-340,11716,GO-20161180530,THEFT UNDER - BICYCLE,2016-07-04T00:00:00,2016,July,Monday,4,186,15,2016-07-06T00:00:00,2016,July,Wednesday,6,188,11,D23,Toronto,1,West Humber-Clairville (1),Schools During Supervised Activity,Educational,INFINITY,HT27.5,MT,0,BLKGRN,299.0,STOLEN,335,"{'type': 'Point', 'coordinates': (-79.59166379, 43.73677452)}"
-341,11898,GO-20161280528,B&E,2016-07-15T00:00:00,2016,July,Friday,15,197,18,2016-07-21T00:00:00,2016,July,Thursday,21,203,13,D23,Toronto,1,West Humber-Clairville (1),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,LUSH,MT,18,BLKPNK,2500.0,STOLEN,336,"{'type': 'Point', 'coordinates': (-79.58719932, 43.7225891)}"
-342,12120,GO-20169008929,THEFT UNDER,2016-08-17T00:00:00,2016,August,Wednesday,17,230,0,2016-08-17T00:00:00,2016,August,Wednesday,17,230,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM 1,OT,27,WHI,500.0,STOLEN,337,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-343,12066,GO-20169008586,THEFT UNDER,2016-08-10T00:00:00,2016,August,Wednesday,10,223,18,2016-08-11T00:00:00,2016,August,Thursday,11,224,15,D23,Toronto,1,West Humber-Clairville (1),Universities / Colleges,Educational,SU,NITROUS,MT,21,ONG,150.0,STOLEN,338,"{'type': 'Point', 'coordinates': (-79.60569089, 43.72892868)}"
-344,12477,GO-20161711330,THEFT UNDER - BICYCLE,2016-09-19T00:00:00,2016,September,Monday,19,263,8,2016-09-26T00:00:00,2016,September,Monday,26,270,15,D23,Toronto,1,West Humber-Clairville (1),Schools During Supervised Activity,Educational,UNKNOWN,UNKNOWN,RG,18,RED,100.0,STOLEN,339,"{'type': 'Point', 'coordinates': (-79.59166379, 43.73677452)}"
-345,12478,GO-20161711330,THEFT UNDER - BICYCLE,2016-09-19T00:00:00,2016,September,Monday,19,263,8,2016-09-26T00:00:00,2016,September,Monday,26,270,15,D23,Toronto,1,West Humber-Clairville (1),Schools During Supervised Activity,Educational,,,RG,18,GRY,200.0,STOLEN,340,"{'type': 'Point', 'coordinates': (-79.59166379, 43.73677452)}"
-346,12562,GO-20161778437,THEFT UNDER - BICYCLE,2016-10-06T00:00:00,2016,October,Thursday,6,280,13,2016-10-06T00:00:00,2016,October,Thursday,6,280,13,D23,Toronto,1,West Humber-Clairville (1),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,OT,15,GRYYEL,,STOLEN,341,"{'type': 'Point', 'coordinates': (-79.56666332, 43.71170516)}"
-347,12568,GO-20161693148,THEFT UNDER,2016-09-21T00:00:00,2016,September,Wednesday,21,265,16,2016-09-26T00:00:00,2016,September,Monday,26,270,15,D23,Toronto,1,West Humber-Clairville (1),Schools During Supervised Activity,Educational,CCM,,MT,18,RED,,STOLEN,342,"{'type': 'Point', 'coordinates': (-79.59166379, 43.73677452)}"
-348,12569,GO-20161672847,THEFT UNDER - BICYCLE,2016-09-09T00:00:00,2016,September,Friday,9,253,13,2016-09-21T00:00:00,2016,September,Wednesday,21,265,14,D23,Toronto,1,West Humber-Clairville (1),Schools During Supervised Activity,Educational,OTHER,,RG,0,RED,,STOLEN,343,"{'type': 'Point', 'coordinates': (-79.59166379, 43.73677452)}"
-349,12570,GO-20161782582,THEFT UNDER - BICYCLE,2016-10-06T00:00:00,2016,October,Thursday,6,280,22,2016-10-07T00:00:00,2016,October,Friday,7,281,3,D23,Toronto,1,West Humber-Clairville (1),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,BMX,,MT,1,RED,100.0,STOLEN,344,"{'type': 'Point', 'coordinates': (-79.62198544, 43.74687755)}"
-350,12718,GO-20161954777,B&E,2016-11-02T00:00:00,2016,November,Wednesday,2,307,16,2016-11-03T00:00:00,2016,November,Thursday,3,308,11,D23,Toronto,1,West Humber-Clairville (1),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,HERO,UNKNOWN,EL,35,BLK,2000.0,STOLEN,345,"{'type': 'Point', 'coordinates': (-79.61469087, 43.74389954)}"
-351,12743,GO-20161993323,THEFT UNDER - BICYCLE,2016-11-09T00:00:00,2016,November,Wednesday,9,314,12,2016-11-09T00:00:00,2016,November,Wednesday,9,314,12,D23,Toronto,1,West Humber-Clairville (1),Schools During Supervised Activity,Educational,TELLURIDE,,RG,10,RED,70.0,STOLEN,346,"{'type': 'Point', 'coordinates': (-79.60569089, 43.72892868)}"
-352,17648,GO-20191912382,B&E,2019-10-04T00:00:00,2019,October,Friday,4,277,0,2019-10-04T00:00:00,2019,October,Friday,4,277,16,D23,Toronto,1,West Humber-Clairville (1),"Construction Site (Warehouse, Trailer, Shed)",Commercial,HYPER,VIKING TRAIL,MT,21,BLK,200.0,STOLEN,355,"{'type': 'Point', 'coordinates': (-79.62064281, 43.74335617)}"
-353,14475,GO-20189036765,THEFT UNDER - BICYCLE,2018-10-01T00:00:00,2018,October,Monday,1,274,2,2018-11-04T00:00:00,2018,November,Sunday,4,308,3,D23,Toronto,1,West Humber-Clairville (1),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,700CC,MT,21,BLK,0.0,STOLEN,347,"{'type': 'Point', 'coordinates': (-79.60569089, 43.72892868)}"
-354,14559,GO-20199025551,THEFT UNDER,2019-08-08T00:00:00,2019,August,Thursday,8,220,14,2019-08-09T00:00:00,2019,August,Friday,9,221,16,D23,Toronto,1,West Humber-Clairville (1),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SU,NITRO,MT,21,ONG,160.0,STOLEN,348,"{'type': 'Point', 'coordinates': (-79.60667875, 43.73372347)}"
-355,14585,GO-20191874933,PROPERTY - FOUND,2019-09-27T00:00:00,2019,September,Friday,27,270,7,2019-09-29T00:00:00,2019,September,Sunday,29,272,10,D23,Toronto,1,West Humber-Clairville (1),"Open Areas (Lakes, Parks, Rivers)",Outside,GIO,,EL,20,BLK,500.0,UNKNOWN,349,"{'type': 'Point', 'coordinates': (-79.59288284, 43.72681581)}"
-356,17350,GO-20209016764,THEFT FROM MOTOR VEHICLE UNDER,2020-07-03T00:00:00,2020,July,Friday,3,185,23,2020-07-04T00:00:00,2020,July,Saturday,4,186,13,D22,Toronto,11,Eringate-Centennial-West Deane (11),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,OT,1,WHI,500.0,STOLEN,350,"{'type': 'Point', 'coordinates': (-79.56423661, 43.65494591)}"
-357,4469,GO-20199018368,THEFT UNDER,2019-06-12T00:00:00,2019,June,Wednesday,12,163,10,2019-06-12T00:00:00,2019,June,Wednesday,12,163,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,MT,10,,3500.0,STOLEN,351,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}"
-358,14657,GO-20179008256,THEFT UNDER - BICYCLE,2017-06-10T00:00:00,2017,June,Saturday,10,161,19,2017-06-16T00:00:00,2017,June,Friday,16,167,19,D23,Toronto,1,West Humber-Clairville (1),"Apartment (Rooming House, Condo)",Apartment,SU,,OT,50,BLU,200.0,STOLEN,352,"{'type': 'Point', 'coordinates': (-79.59825884, 43.73854056)}"
-359,14953,GO-2015919180,THEFT UNDER,2015-06-01T00:00:00,2015,June,Monday,1,152,9,2015-06-02T00:00:00,2015,June,Tuesday,2,153,2,D23,Toronto,1,West Humber-Clairville (1),Universities / Colleges,Educational,MONGOOSE,,MT,0,GRY,198.0,STOLEN,353,"{'type': 'Point', 'coordinates': (-79.60569089, 43.72892868)}"
-360,14960,GO-20151126824,THEFT UNDER,2015-07-03T00:00:00,2015,July,Friday,3,184,20,2015-07-04T00:00:00,2015,July,Saturday,4,185,14,D23,Toronto,1,West Humber-Clairville (1),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,1,BLK,500.0,STOLEN,354,"{'type': 'Point', 'coordinates': (-79.61676877, 43.72091378)}"
-361,17915,GO-20149003177,THEFT UNDER,2014-05-05T00:00:00,2014,May,Monday,5,125,8,2014-05-06T00:00:00,2014,May,Tuesday,6,126,6,D23,Toronto,1,West Humber-Clairville (1),Schools During Supervised Activity,Educational,OT,AVIGO,BM,1,BLK,250.0,STOLEN,356,"{'type': 'Point', 'coordinates': (-79.58153457, 43.72409104)}"
-362,17955,GO-20159001406,THEFT UNDER,2015-03-16T00:00:00,2015,March,Monday,16,75,16,2015-03-18T00:00:00,2015,March,Wednesday,18,77,23,D23,Toronto,1,West Humber-Clairville (1),Schools During Supervised Activity,Educational,OT,P9,RG,21,BLK,300.0,STOLEN,357,"{'type': 'Point', 'coordinates': (-79.60569089, 43.72892868)}"
-363,17958,GO-2015648275,THEFT UNDER,2015-04-07T00:00:00,2015,April,Tuesday,7,97,12,2015-04-19T00:00:00,2015,April,Sunday,19,109,15,D23,Toronto,1,West Humber-Clairville (1),"Open Areas (Lakes, Parks, Rivers)",Outside,PATHFINDER,2000,OT,21,BLU,1000.0,STOLEN,358,"{'type': 'Point', 'coordinates': (-79.60016615, 43.7501869)}"
-364,17976,GO-20151146729,THEFT UNDER,2015-07-04T00:00:00,2015,July,Saturday,4,185,23,2015-07-07T00:00:00,2015,July,Tuesday,7,188,14,D23,Toronto,1,West Humber-Clairville (1),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,ROCKY MOUNTAIN,,MT,0,BLK,100.0,STOLEN,359,"{'type': 'Point', 'coordinates': (-79.6151676, 43.73198248)}"
-365,18030,GO-20161289100,THEFT UNDER - BICYCLE,2016-07-22T00:00:00,2016,July,Friday,22,204,13,2016-07-22T00:00:00,2016,July,Friday,22,204,18,D23,Toronto,1,West Humber-Clairville (1),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,EMONDA,OT,21,BLKWHI,1200.0,STOLEN,360,"{'type': 'Point', 'coordinates': (-79.58868703, 43.72153568000001)}"
-366,21216,GO-20171710879,THEFT UNDER - BICYCLE,2017-09-20T00:00:00,2017,September,Wednesday,20,263,23,2017-09-20T00:00:00,2017,September,Wednesday,20,263,23,D23,Toronto,1,West Humber-Clairville (1),"Apartment (Rooming House, Condo)",Apartment,CCM,,MT,0,BLU,500.0,STOLEN,361,"{'type': 'Point', 'coordinates': (-79.60342029, 43.719157890000005)}"
-367,21235,GO-20173000102,THEFT OF EBIKE UNDER $5000,2017-11-12T00:00:00,2017,November,Sunday,12,316,20,2017-11-15T00:00:00,2017,November,Wednesday,15,319,2,D23,Toronto,1,West Humber-Clairville (1),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,TEV,EL,3,BLK,1400.0,STOLEN,362,"{'type': 'Point', 'coordinates': (-79.60417825000002, 43.70602991)}"
-368,21289,GO-20189018003,THEFT UNDER,2018-06-08T00:00:00,2018,June,Friday,8,159,13,2018-06-09T00:00:00,2018,June,Saturday,9,160,11,D23,Toronto,1,West Humber-Clairville (1),Bar / Restaurant,Commercial,UK,,MT,18,BLK,160.0,STOLEN,363,"{'type': 'Point', 'coordinates': (-79.60070124, 43.73183406)}"
-369,21325,GO-20189024238,THEFT UNDER - BICYCLE,2018-07-27T00:00:00,2018,July,Friday,27,208,14,2018-07-27T00:00:00,2018,July,Friday,27,208,17,D23,Toronto,1,West Humber-Clairville (1),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,MT,18,,400.0,STOLEN,364,"{'type': 'Point', 'coordinates': (-79.58949573, 43.73067965)}"
-370,21333,GO-20181496494,THEFT OF EBIKE UNDER $5000,2018-08-13T00:00:00,2018,August,Monday,13,225,22,2018-08-14T00:00:00,2018,August,Tuesday,14,226,12,D23,Toronto,1,West Humber-Clairville (1),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,EL,40,MRN,3849.0,STOLEN,365,"{'type': 'Point', 'coordinates': (-79.60417825000002, 43.70602991)}"
-371,22012,GO-20149003861,THEFT UNDER,2014-06-06T00:00:00,2014,June,Friday,6,157,17,2014-06-06T00:00:00,2014,June,Friday,6,157,22,D23,Toronto,1,West Humber-Clairville (1),Universities / Colleges,Educational,OT,,MT,18,WHI,78.0,STOLEN,366,"{'type': 'Point', 'coordinates': (-79.60569089, 43.72892868)}"
-372,22049,GO-20159002116,THEFT UNDER,2015-04-20T00:00:00,2015,April,Monday,20,110,8,2015-04-20T00:00:00,2015,April,Monday,20,110,22,D23,Toronto,1,West Humber-Clairville (1),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,,MT,18,BLK,160.0,STOLEN,367,"{'type': 'Point', 'coordinates': (-79.59617482, 43.73347397)}"
-373,22052,GO-2015741806,THEFT UNDER,2015-04-26T00:00:00,2015,April,Sunday,26,116,17,2015-05-04T00:00:00,2015,May,Monday,4,124,18,D23,Toronto,1,West Humber-Clairville (1),Universities / Colleges,Educational,UNKNOWN,,MT,18,RED,,STOLEN,368,"{'type': 'Point', 'coordinates': (-79.59941174, 43.73091013)}"
-374,22097,GO-2016230628,THEFT UNDER,2016-01-30T00:00:00,2016,January,Saturday,30,30,11,2016-02-08T00:00:00,2016,February,Monday,8,39,8,D23,Toronto,1,West Humber-Clairville (1),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,,SC,1,REDGRN,4000.0,STOLEN,369,"{'type': 'Point', 'coordinates': (-79.59491671000002, 43.73601858)}"
-375,22122,GO-20161385408,THEFT OF EBIKE UNDER $5000,2016-08-02T00:00:00,2016,August,Tuesday,2,215,20,2016-08-06T00:00:00,2016,August,Saturday,6,219,19,D23,Toronto,1,West Humber-Clairville (1),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,EMM01,EL,0,RED,2400.0,STOLEN,370,"{'type': 'Point', 'coordinates': (-79.58868703, 43.72153568000001)}"
-376,22140,GO-2017436302,B&E,2017-01-07T00:00:00,2017,January,Saturday,7,7,9,2017-03-10T00:00:00,2017,March,Friday,10,69,16,D23,Toronto,1,West Humber-Clairville (1),"Private Property Structure (Pool, Shed, Detached Garage)",Other,BIANCHI,,RG,12,GLD,500.0,STOLEN,371,"{'type': 'Point', 'coordinates': (-79.55925854, 43.70230736)}"
-377,24088,GO-20199026714,THEFT UNDER,2019-08-17T00:00:00,2019,August,Saturday,17,229,23,2019-08-18T00:00:00,2019,August,Sunday,18,230,16,D23,Toronto,1,West Humber-Clairville (1),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,,RG,10,GRN,100.0,STOLEN,372,"{'type': 'Point', 'coordinates': (-79.58584022, 43.72206594)}"
-378,24178,GO-2020980582,THEFT UNDER - BICYCLE,2020-05-25T00:00:00,2020,May,Monday,25,146,14,2020-05-27T00:00:00,2020,May,Wednesday,27,148,22,D23,Toronto,1,West Humber-Clairville (1),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NAKAMURA,,MT,7,BLUWHI,170.0,STOLEN,373,"{'type': 'Point', 'coordinates': (-79.61580992, 43.72388969)}"
-379,24215,GO-20171501034,THEFT UNDER - BICYCLE,2017-08-19T00:00:00,2017,August,Saturday,19,231,19,2017-08-19T00:00:00,2017,August,Saturday,19,231,19,D23,Toronto,1,West Humber-Clairville (1),"Open Areas (Lakes, Parks, Rivers)",Outside,SUPERCYCLE,,RG,21,BLK,199.0,STOLEN,374,"{'type': 'Point', 'coordinates': (-79.62212414, 43.72680578)}"
-380,24252,GO-20179018174,THEFT UNDER - BICYCLE,2017-10-07T00:00:00,2017,October,Saturday,7,280,10,2017-10-25T00:00:00,2017,October,Wednesday,25,298,22,D23,Toronto,1,West Humber-Clairville (1),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,,RG,10,OTH,113.0,STOLEN,375,"{'type': 'Point', 'coordinates': (-79.62217749, 43.72617604)}"
-381,24332,GO-20181235965,B&E W'INTENT,2018-07-06T00:00:00,2018,July,Friday,6,187,20,2018-07-07T00:00:00,2018,July,Saturday,7,188,11,D23,Toronto,1,West Humber-Clairville (1),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MOVELO,ALGONQUIN,MT,16,BLUPLE,110.0,STOLEN,376,"{'type': 'Point', 'coordinates': (-79.61931928, 43.73248007)}"
-382,24341,GO-20181265375,THEFT UNDER - BICYCLE,2018-07-11T00:00:00,2018,July,Wednesday,11,192,17,2018-07-11T00:00:00,2018,July,Wednesday,11,192,18,D23,Toronto,1,West Humber-Clairville (1),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,MT,21,GRY,200.0,STOLEN,377,"{'type': 'Point', 'coordinates': (-79.59941174, 43.73091013)}"
-383,24461,GO-20159003917,THEFT UNDER,2015-06-24T00:00:00,2015,June,Wednesday,24,175,14,2015-06-24T00:00:00,2015,June,Wednesday,24,175,22,D23,Toronto,1,West Humber-Clairville (1),Schools During Un-Supervised Activity,Educational,SU,,MT,7,GRN,130.0,STOLEN,378,"{'type': 'Point', 'coordinates': (-79.58153457, 43.72409104)}"
-384,24492,GO-20151708503,THEFT UNDER,2015-10-03T00:00:00,2015,October,Saturday,3,276,10,2015-10-03T00:00:00,2015,October,Saturday,3,276,17,D23,Toronto,1,West Humber-Clairville (1),Universities / Colleges,Educational,OTHER,,FO,7,BGESIL,200.0,STOLEN,379,"{'type': 'Point', 'coordinates': (-79.60569089, 43.72892868)}"
-385,24539,GO-20161490911,THEFT UNDER - BICYCLE,2016-08-14T00:00:00,2016,August,Sunday,14,227,2,2016-08-23T00:00:00,2016,August,Tuesday,23,236,6,D23,Toronto,1,West Humber-Clairville (1),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,INFINITY,,OT,0,REDBLK,300.0,STOLEN,380,"{'type': 'Point', 'coordinates': (-79.60417825000002, 43.70602991)}"
-386,735,GO-20179009131,THEFT UNDER - BICYCLE,2017-06-28T00:00:00,2017,June,Wednesday,28,179,18,2017-06-28T00:00:00,2017,June,Wednesday,28,179,22,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),Schools During Un-Supervised Activity,Educational,CC,,RC,21,BLK,0.0,STOLEN,381,"{'type': 'Point', 'coordinates': (-79.58578825, 43.75097753)}"
-387,1340,GO-20171630453,THEFT UNDER - BICYCLE,2017-09-08T00:00:00,2017,September,Friday,8,251,20,2017-09-08T00:00:00,2017,September,Friday,8,251,22,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BMX,,BM,1,RED,,STOLEN,382,"{'type': 'Point', 'coordinates': (-79.59262692000001, 43.75639409)}"
-388,2793,GO-20189021780,THEFT UNDER - BICYCLE,2018-07-09T00:00:00,2018,July,Monday,9,190,19,2018-07-09T00:00:00,2018,July,Monday,9,190,19,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UK,,BM,1,BLU,300.0,STOLEN,383,"{'type': 'Point', 'coordinates': (-79.58491856, 43.73877053)}"
-389,3193,GO-20181492222,THEFT UNDER - BICYCLE,2018-08-13T00:00:00,2018,August,Monday,13,225,16,2018-08-14T00:00:00,2018,August,Tuesday,14,226,16,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,,MT,10,GRN,400.0,STOLEN,384,"{'type': 'Point', 'coordinates': (-79.58491856, 43.73877053)}"
-390,4664,GO-20199020912,THEFT UNDER,2019-07-01T00:00:00,2019,July,Monday,1,182,19,2019-07-03T00:00:00,2019,July,Wednesday,3,184,19,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SU,,MT,60,WHI,350.0,STOLEN,385,"{'type': 'Point', 'coordinates': (-79.58755582, 43.73688887)}"
-391,5179,GO-20191642363,THEFT UNDER - BICYCLE,2019-08-25T00:00:00,2019,August,Sunday,25,237,19,2019-08-28T00:00:00,2019,August,Wednesday,28,240,15,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,MOVELO,RG,3,,300.0,STOLEN,386,"{'type': 'Point', 'coordinates': (-79.58931312, 43.7584621)}"
-392,5814,GO-202050380,THEFT UNDER - BICYCLE,2020-01-08T00:00:00,2020,January,Wednesday,8,8,12,2020-01-08T00:00:00,2020,January,Wednesday,8,8,12,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Apartment (Rooming House, Condo)",Apartment,TREK,,RG,16,BLK,350.0,STOLEN,387,"{'type': 'Point', 'coordinates': (-79.58705963, 43.75362093)}"
-393,6037,GO-20209010685,THEFT UNDER,2020-04-05T00:00:00,2020,April,Sunday,5,96,4,2020-04-08T00:00:00,2020,April,Wednesday,8,99,11,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Apartment (Rooming House, Condo)",Apartment,SU,SC1800,RG,30,BLK,100.0,STOLEN,388,"{'type': 'Point', 'coordinates': (-79.58578825, 43.75097753)}"
-394,6770,GO-20201377780,THEFT UNDER - BICYCLE,2020-07-14T00:00:00,2020,July,Tuesday,14,196,20,2020-07-24T00:00:00,2020,July,Friday,24,206,15,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN,UNK,MT,7,BLK,150.0,STOLEN,389,"{'type': 'Point', 'coordinates': (-79.58931312, 43.7584621)}"
-395,6871,GO-20209019433,THEFT UNDER,2020-08-05T00:00:00,2020,August,Wednesday,5,218,16,2020-08-05T00:00:00,2020,August,Wednesday,5,218,17,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,,BM,1,,500.0,STOLEN,390,"{'type': 'Point', 'coordinates': (-79.59507013, 43.74814085)}"
-396,7115,GO-20209021664,THEFT UNDER,2020-08-21T00:00:00,2020,August,Friday,21,234,17,2020-08-28T00:00:00,2020,August,Friday,28,241,19,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Apartment (Rooming House, Condo)",Apartment,SU,,MT,21,GRY,200.0,STOLEN,391,"{'type': 'Point', 'coordinates': (-79.58578825, 43.75097753)}"
-397,7905,GO-20142058713,THEFT UNDER,2014-05-10T00:00:00,2014,May,Saturday,10,130,16,2014-05-10T00:00:00,2014,May,Saturday,10,130,17,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,SUPERCYCLE,,MT,10,ONG,,STOLEN,392,"{'type': 'Point', 'coordinates': (-79.58491856, 43.73877053)}"
-398,8247,GO-20142388869,THEFT UNDER,2014-06-25T00:00:00,2014,June,Wednesday,25,176,15,2014-06-28T00:00:00,2014,June,Saturday,28,179,19,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,21 SPEED,MT,21,WHI,240.0,STOLEN,393,"{'type': 'Point', 'coordinates': (-79.58919312, 43.74109549)}"
-399,21321,GO-20181343876,THEFT UNDER - BICYCLE,2018-07-23T00:00:00,2018,July,Monday,23,204,9,2018-07-23T00:00:00,2018,July,Monday,23,204,9,D23,Toronto,7,Willowridge-Martingrove-Richview (7),"Open Areas (Lakes, Parks, Rivers)",Outside,UNKNOWN MAKE,,MT,0,BLK,,STOLEN,408,"{'type': 'Point', 'coordinates': (-79.54484582, 43.68162714)}"
-400,8333,GO-20142476683,THEFT UNDER,2014-07-11T00:00:00,2014,July,Friday,11,192,13,2014-07-11T00:00:00,2014,July,Friday,11,192,20,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GENESIS,,MT,27,GRN,600.0,STOLEN,394,"{'type': 'Point', 'coordinates': (-79.58033521, 43.73496126)}"
-401,9059,GO-20143104858,THEFT UNDER,2014-10-14T00:00:00,2014,October,Tuesday,14,287,18,2014-10-14T00:00:00,2014,October,Tuesday,14,287,21,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SCHWINN,,MT,24,BLUWHI,300.0,STOLEN,395,"{'type': 'Point', 'coordinates': (-79.58207638, 43.74326507)}"
-402,9961,GO-20151154351,THEFT UNDER,2015-07-04T00:00:00,2015,July,Saturday,4,185,20,2015-07-08T00:00:00,2015,July,Wednesday,8,189,16,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SUPERCYCLE,SC1800,RG,18,BLK,140.0,STOLEN,396,"{'type': 'Point', 'coordinates': (-79.58931312, 43.7584621)}"
-403,11990,GO-20161352997,THEFT UNDER - BICYCLE,2016-07-31T00:00:00,2016,July,Sunday,31,213,21,2016-08-01T00:00:00,2016,August,Monday,1,214,21,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,UNKNOWN,MT,0,GRN,500.0,STOLEN,397,"{'type': 'Point', 'coordinates': (-79.58578825, 43.75097753)}"
-404,12008,GO-20161383981,THEFT UNDER - BICYCLE,2016-08-06T00:00:00,2016,August,Saturday,6,219,14,2016-08-06T00:00:00,2016,August,Saturday,6,219,14,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,CRUISER,RG,7,BLUGRY,400.0,STOLEN,398,"{'type': 'Point', 'coordinates': (-79.58207638, 43.74326507)}"
-405,12098,GO-20161443824,THEFT UNDER - BICYCLE,2016-07-31T00:00:00,2016,July,Sunday,31,213,10,2016-08-15T00:00:00,2016,August,Monday,15,228,20,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),Schools During Un-Supervised Activity,Educational,OTHER,OTHER,RG,1,GRN,200.0,STOLEN,399,"{'type': 'Point', 'coordinates': (-79.59033164, 43.73401277)}"
-406,12167,GO-20161488465,B&E,2016-08-07T00:00:00,2016,August,Sunday,7,220,20,2016-08-22T00:00:00,2016,August,Monday,22,235,22,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Apartment (Rooming House, Condo)",Apartment,CCM,DS-650,MT,12,REDWHI,650.0,STOLEN,400,"{'type': 'Point', 'coordinates': (-79.58578825, 43.75097753)}"
-407,12310,GO-20169010218,THEFT UNDER - BICYCLE,2016-09-03T00:00:00,2016,September,Saturday,3,247,21,2016-09-09T00:00:00,2016,September,Friday,9,253,18,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),Bar / Restaurant,Commercial,OT,TRAFIK,RG,18,GRY,550.0,STOLEN,401,"{'type': 'Point', 'coordinates': (-79.58578825, 43.75097753)}"
-408,12525,GO-20169011423,THEFT UNDER - BICYCLE,2016-10-01T00:00:00,2016,October,Saturday,1,275,16,2016-10-01T00:00:00,2016,October,Saturday,1,275,20,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),Convenience Stores,Commercial,HF,AH15LOOO420,MT,18,BLK,190.0,STOLEN,402,"{'type': 'Point', 'coordinates': (-79.59855797, 43.7509036)}"
-409,12577,GO-20161787228,B&E W'INTENT,2016-10-07T00:00:00,2016,October,Friday,7,281,13,2016-10-07T00:00:00,2016,October,Friday,7,281,20,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Single Home, House (Attach Garage, Cottage, Mobile)",House,IRON HORSE,,MT,21,BLU,400.0,STOLEN,403,"{'type': 'Point', 'coordinates': (-79.58264743, 43.73839195)}"
-410,14586,GO-20191883854,THEFT UNDER,2019-09-29T00:00:00,2019,September,Sunday,29,272,16,2019-09-30T00:00:00,2019,September,Monday,30,273,15,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),Unknown,Other,OTHER,,OT,1,,,STOLEN,404,"{'type': 'Point', 'coordinates': (-79.58207638, 43.74326507)}"
-411,14653,GO-20179007389,THEFT UNDER - SHOPLIFTING,2017-06-01T00:00:00,2017,June,Thursday,1,152,18,2017-06-02T00:00:00,2017,June,Friday,2,153,14,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,AIRWALK,OT,1,BLK,1200.0,STOLEN,405,"{'type': 'Point', 'coordinates': (-79.58207638, 43.74326507)}"
-412,14681,GO-20171358405,THEFT UNDER - BICYCLE,2017-07-28T00:00:00,2017,July,Friday,28,209,16,2017-07-28T00:00:00,2017,July,Friday,28,209,20,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,SUPERCYCLE,MT,18,GRN,,STOLEN,406,"{'type': 'Point', 'coordinates': (-79.58491856, 43.73877053)}"
-413,14941,GO-2015439417,THEFT UNDER,2015-03-15T00:00:00,2015,March,Sunday,15,74,11,2015-03-15T00:00:00,2015,March,Sunday,15,74,12,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,STUNT JUMPER,MT,20,BLKRED,2200.0,STOLEN,407,"{'type': 'Point', 'coordinates': (-79.59532854, 43.74428838)}"
-414,24441,GO-20149008610,THEFT UNDER,2014-12-07T00:00:00,2014,December,Sunday,7,341,3,2014-12-07T00:00:00,2014,December,Sunday,7,341,19,D22,Toronto,19,Long Branch (19),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,MT,15,,500.0,STOLEN,1131,"{'type': 'Point', 'coordinates': (-79.53265608, 43.59142483)}"
-415,22060,GO-20159003606,THEFT UNDER,2015-06-13T00:00:00,2015,June,Saturday,13,164,17,2015-06-14T00:00:00,2015,June,Sunday,14,165,1,D23,Toronto,7,Willowridge-Martingrove-Richview (7),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,10,RED,150.0,STOLEN,409,"{'type': 'Point', 'coordinates': (-79.55957728, 43.68878136)}"
-416,22153,GO-20179008225,THEFT UNDER - BICYCLE,2017-06-15T00:00:00,2017,June,Thursday,15,166,23,2017-06-16T00:00:00,2017,June,Friday,16,167,13,D23,Toronto,7,Willowridge-Martingrove-Richview (7),"Single Home, House (Attach Garage, Cottage, Mobile)",House,HF,GO CART,TR,1,LGR,150.0,STOLEN,410,"{'type': 'Point', 'coordinates': (-79.53962507, 43.68785105)}"
-417,24447,GO-2015590170,B&E W'INTENT,2015-04-08T00:00:00,2015,April,Wednesday,8,98,0,2015-04-10T00:00:00,2015,April,Friday,10,100,9,D23,Toronto,7,Willowridge-Martingrove-Richview (7),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,,RG,10,BLK,600.0,STOLEN,411,"{'type': 'Point', 'coordinates': (-79.53340758, 43.68682917)}"
-418,24469,GO-20159005169,THEFT UNDER,2015-07-31T00:00:00,2015,July,Friday,31,212,7,2015-07-31T00:00:00,2015,July,Friday,31,212,8,D23,Toronto,7,Willowridge-Martingrove-Richview (7),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,MT,21,BLK,500.0,STOLEN,412,"{'type': 'Point', 'coordinates': (-79.54054889000001, 43.68539112)}"
-419,12135,GO-20169008929,THEFT UNDER,2016-08-17T00:00:00,2016,August,Wednesday,17,230,0,2016-08-17T00:00:00,2016,August,Wednesday,17,230,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM 1,OT,27,WHI,500.0,STOLEN,413,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-420,24494,GO-20151775820,THEFT FROM MOTOR VEHICLE UNDER,2015-10-13T00:00:00,2015,October,Tuesday,13,286,23,2015-10-15T00:00:00,2015,October,Thursday,15,288,9,D23,Toronto,7,Willowridge-Martingrove-Richview (7),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,MTN,MT,21,GRYBLU,600.0,STOLEN,414,"{'type': 'Point', 'coordinates': (-79.5440883, 43.68680133)}"
-421,17926,GO-20142304975,B&E W'INTENT,2014-06-11T00:00:00,2014,June,Wednesday,11,162,20,2014-06-16T00:00:00,2014,June,Monday,16,167,20,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FUJI,UNKNOWN,MT,12,GRY,100.0,STOLEN,415,"{'type': 'Point', 'coordinates': (-79.54465616, 43.65517871)}"
-422,7349,GO-20209024386,THEFT UNDER,2020-09-24T00:00:00,2020,September,Thursday,24,268,8,2020-09-24T00:00:00,2020,September,Thursday,24,268,17,D32,Toronto,33,Clanton Park (33),Ttc Subway Station,Transit,NO,,MT,18,,1000.0,STOLEN,2924,"{'type': 'Point', 'coordinates': (-79.4528229, 43.73338366)}"
-423,17663,GO-20199036266,THEFT UNDER,2019-11-03T00:00:00,2019,November,Sunday,3,307,10,2019-11-03T00:00:00,2019,November,Sunday,3,307,13,D22,Toronto,11,Eringate-Centennial-West Deane (11),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,30,GRY,700.0,STOLEN,416,"{'type': 'Point', 'coordinates': (-79.57240399, 43.655045730000005)}"
-424,17367,GO-20209019433,THEFT UNDER,2020-08-05T00:00:00,2020,August,Wednesday,5,218,16,2020-08-05T00:00:00,2020,August,Wednesday,5,218,17,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,,BM,1,GLD,500.0,STOLEN,417,"{'type': 'Point', 'coordinates': (-79.59507013, 43.74814085)}"
-425,4498,GO-20199018698,THEFT UNDER,2019-06-13T00:00:00,2019,June,Thursday,13,164,12,2019-06-15T00:00:00,2019,June,Saturday,15,166,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,TUXEDO,RG,9,SIL,1000.0,STOLEN,418,"{'type': 'Point', 'coordinates': (-79.48480515, 43.62040835)}"
-426,17946,GO-20142894790,B&E,2014-08-04T00:00:00,2014,August,Monday,4,216,3,2014-09-12T00:00:00,2014,September,Friday,12,255,11,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,MT,21,GRN,300.0,STOLEN,419,"{'type': 'Point', 'coordinates': (-79.55520706, 43.64161229)}"
-427,17989,GO-20151523136,PROPERTY - FOUND,2015-09-03T00:00:00,2015,September,Thursday,3,246,16,2015-09-03T00:00:00,2015,September,Thursday,3,246,16,D22,Toronto,14,Islington-City Centre West (14),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RALEIGH,5 SPEED,RG,5,BLU,150.0,UNKNOWN,420,"{'type': 'Point', 'coordinates': (-79.52871289, 43.64877261)}"
-428,17996,GO-20159007426,THEFT UNDER,2015-09-15T00:00:00,2015,September,Tuesday,15,258,20,2015-09-19T00:00:00,2015,September,Saturday,19,262,17,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,,SALONO 6.2 05,MT,5,WHI,176.0,STOLEN,421,"{'type': 'Point', 'coordinates': (-79.53191599, 43.64524669)}"
-429,18009,GO-20159011110,THEFT UNDER,2015-12-19T00:00:00,2015,December,Saturday,19,353,12,2015-12-20T00:00:00,2015,December,Sunday,20,354,12,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,3,BLK,0.0,STOLEN,422,"{'type': 'Point', 'coordinates': (-79.51717476, 43.62420954)}"
-430,18021,GO-20169004153,THEFT UNDER - SHOPLIFTING,2016-04-27T00:00:00,2016,April,Wednesday,27,118,14,2016-05-04T00:00:00,2016,May,Wednesday,4,125,20,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RG,10,BLK,900.0,STOLEN,423,"{'type': 'Point', 'coordinates': (-79.55467522, 43.6328036)}"
-431,18031,GO-20169007656,THEFT UNDER - BICYCLE,2016-07-22T00:00:00,2016,July,Friday,22,204,19,2016-07-23T00:00:00,2016,July,Saturday,23,205,14,D22,Toronto,14,Islington-City Centre West (14),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,AIR,BM,1,YEL,272.0,STOLEN,424,"{'type': 'Point', 'coordinates': (-79.54219042, 43.64026329000001)}"
-432,18045,GO-20169008955,THEFT UNDER - BICYCLE,2016-08-17T00:00:00,2016,August,Wednesday,17,230,17,2016-08-17T00:00:00,2016,August,Wednesday,17,230,18,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,XPH,EL,32,BLK,3000.0,STOLEN,425,"{'type': 'Point', 'coordinates': (-79.54169472, 43.64037987)}"
-433,18057,GO-20161872249,THEFT UNDER - BICYCLE,2016-10-19T00:00:00,2016,October,Wednesday,19,293,17,2016-10-21T00:00:00,2016,October,Friday,21,295,11,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,10,RED,600.0,STOLEN,426,"{'type': 'Point', 'coordinates': (-79.52650323, 43.64054033)}"
-434,18058,GO-20161872249,THEFT UNDER - BICYCLE,2016-10-19T00:00:00,2016,October,Wednesday,19,293,17,2016-10-21T00:00:00,2016,October,Friday,21,295,11,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,10,BLU,600.0,STOLEN,427,"{'type': 'Point', 'coordinates': (-79.52650323, 43.64054033)}"
-435,18059,GO-20161933702,THEFT UNDER - BICYCLE,2016-10-28T00:00:00,2016,October,Friday,28,302,7,2016-10-31T00:00:00,2016,October,Monday,31,305,8,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,GIANT,,MT,21,REDWHI,1000.0,STOLEN,428,"{'type': 'Point', 'coordinates': (-79.53280588, 43.64315759)}"
-436,18062,GO-20169013400,THEFT UNDER,2016-11-14T00:00:00,2016,November,Monday,14,319,16,2016-11-14T00:00:00,2016,November,Monday,14,319,17,D22,Toronto,14,Islington-City Centre West (14),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KO,,MT,27,BLU,800.0,STOLEN,429,"{'type': 'Point', 'coordinates': (-79.55886242, 43.6271621)}"
-437,18067,GO-20179004587,THEFT UNDER,2017-04-11T00:00:00,2017,April,Tuesday,11,101,19,2017-04-11T00:00:00,2017,April,Tuesday,11,101,22,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,FJ,ROUBAIX,RC,12,GRY,1000.0,STOLEN,430,"{'type': 'Point', 'coordinates': (-79.53702637, 43.63768607)}"
-438,18087,GO-20179009838,THEFT UNDER - BICYCLE,2017-07-08T00:00:00,2017,July,Saturday,8,189,18,2017-07-10T00:00:00,2017,July,Monday,10,191,10,D22,Toronto,14,Islington-City Centre West (14),Ttc Subway Station,Transit,GI,ROVE 0,TO,9,SIL,950.0,STOLEN,431,"{'type': 'Point', 'coordinates': (-79.5379751, 43.6385254)}"
-439,20979,GO-20199000849,THEFT UNDER - BICYCLE,2019-01-07T00:00:00,2019,January,Monday,7,7,23,2019-01-08T00:00:00,2019,January,Tuesday,8,8,11,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,6,CRM,0.0,STOLEN,432,"{'type': 'Point', 'coordinates': (-79.52198822, 43.6220213)}"
-440,21039,GO-20199025436,THEFT UNDER,2019-08-08T00:00:00,2019,August,Thursday,8,220,17,2019-08-08T00:00:00,2019,August,Thursday,8,220,20,D22,Toronto,14,Islington-City Centre West (14),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,SU,,RG,5,BLU,150.0,STOLEN,433,"{'type': 'Point', 'coordinates': (-79.55847224, 43.6455629)}"
-441,21147,GO-20209015663,THEFT UNDER,2020-06-05T00:00:00,2020,June,Friday,5,157,3,2020-06-18T00:00:00,2020,June,Thursday,18,170,16,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,SU,,RG,30,YEL,0.0,STOLEN,434,"{'type': 'Point', 'coordinates': (-79.55766102, 43.64148524)}"
-442,21153,GO-20201183873,THEFT UNDER,2020-06-26T00:00:00,2020,June,Friday,26,178,23,2020-06-27T00:00:00,2020,June,Saturday,27,179,14,D22,Toronto,14,Islington-City Centre West (14),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORTHROCK,UXCW,MT,21,WHI,480.0,STOLEN,435,"{'type': 'Point', 'coordinates': (-79.54886257, 43.64498008000001)}"
-443,21215,GO-20179014964,THEFT UNDER - BICYCLE,2017-09-16T00:00:00,2017,September,Saturday,16,259,15,2017-09-16T00:00:00,2017,September,Saturday,16,259,16,D22,Toronto,14,Islington-City Centre West (14),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,DB,OVERDRIVE 29,MT,24,RED,800.0,STOLEN,436,"{'type': 'Point', 'coordinates': (-79.55847224, 43.6455629)}"
-444,21272,GO-2018895937,THEFT UNDER - BICYCLE,2018-05-18T00:00:00,2018,May,Friday,18,138,9,2018-05-18T00:00:00,2018,May,Friday,18,138,11,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,OT,21,BLKONG,450.0,STOLEN,437,"{'type': 'Point', 'coordinates': (-79.55866947, 43.64407064)}"
-445,21301,GO-20181172756,B&E,2018-06-28T00:00:00,2018,June,Thursday,28,179,2,2018-06-28T00:00:00,2018,June,Thursday,28,179,3,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,DIADORA,,MT,20,PLE,500.0,STOLEN,438,"{'type': 'Point', 'coordinates': (-79.55763197, 43.61821569)}"
-446,8518,GO-20142561808,THEFT UNDER,2014-07-24T00:00:00,2014,July,Thursday,24,205,11,2014-07-24T00:00:00,2014,July,Thursday,24,205,11,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,7.4 WSD,MT,10,BLU,829.0,STOLEN,486,"{'type': 'Point', 'coordinates': (-79.51170915, 43.648253)}"
-447,21339,GO-20189028406,THEFT UNDER - BICYCLE,2018-08-26T00:00:00,2018,August,Sunday,26,238,15,2018-08-29T00:00:00,2018,August,Wednesday,29,241,12,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,STUMPJUMPER,MT,11,BLK,2000.0,STOLEN,439,"{'type': 'Point', 'coordinates': (-79.52226161, 43.64492672)}"
-448,21340,GO-20189028406,THEFT UNDER - BICYCLE,2018-08-26T00:00:00,2018,August,Sunday,26,238,15,2018-08-29T00:00:00,2018,August,Wednesday,29,241,12,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,STUMPJUMPER,MT,10,BLK,2000.0,STOLEN,440,"{'type': 'Point', 'coordinates': (-79.52226161, 43.64492672)}"
-449,21998,GO-20141878098,THEFT UNDER,2012-08-30T00:00:00,2012,August,Thursday,30,243,12,2014-04-13T00:00:00,2014,April,Sunday,13,103,17,D22,Toronto,14,Islington-City Centre West (14),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,ROCKY MOUNTAIN,,MT,24,BLK,1000.0,STOLEN,441,"{'type': 'Point', 'coordinates': (-79.5307612, 43.64465526)}"
-450,22032,GO-20142645902,THEFT UNDER,2014-08-06T00:00:00,2014,August,Wednesday,6,218,2,2014-08-06T00:00:00,2014,August,Wednesday,6,218,10,D22,Toronto,14,Islington-City Centre West (14),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,RC,21,BLK,600.0,STOLEN,442,"{'type': 'Point', 'coordinates': (-79.53338536, 43.6474268)}"
-451,22040,GO-20149007964,THEFT UNDER,2014-10-02T00:00:00,2014,October,Thursday,2,275,0,2014-11-02T00:00:00,2014,November,Sunday,2,306,21,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,INDIE 4,TO,24,BGE,600.0,STOLEN,443,"{'type': 'Point', 'coordinates': (-79.53702637, 43.63768607)}"
-452,22041,GO-20149007964,THEFT UNDER,2014-10-02T00:00:00,2014,October,Thursday,2,275,0,2014-11-02T00:00:00,2014,November,Sunday,2,306,21,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,ARIEL,TO,24,PLE,650.0,STOLEN,444,"{'type': 'Point', 'coordinates': (-79.53702637, 43.63768607)}"
-453,22056,GO-2015772062,PROPERTY - FOUND,2015-05-08T00:00:00,2015,May,Friday,8,128,21,2015-05-09T00:00:00,2015,May,Saturday,9,129,9,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,MT,21,GRY,,UNKNOWN,445,"{'type': 'Point', 'coordinates': (-79.55653313, 43.64354149)}"
-454,22058,GO-2015808702,THEFT UNDER,2015-05-14T00:00:00,2015,May,Thursday,14,134,16,2015-05-15T00:00:00,2015,May,Friday,15,135,8,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,MARIN OR MARINO,CALIFORNIA,OT,36,,800.0,STOLEN,446,"{'type': 'Point', 'coordinates': (-79.52340177000002, 43.64465036)}"
-455,22059,GO-20159002933,THEFT UNDER,2015-05-19T00:00:00,2015,May,Tuesday,19,139,11,2015-05-20T00:00:00,2015,May,Wednesday,20,140,12,D22,Toronto,14,Islington-City Centre West (14),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,DON'T KNOW,MT,6,RED,250.0,STOLEN,447,"{'type': 'Point', 'coordinates': (-79.54078479000002, 43.65436156)}"
-456,22098,GO-20169001246,THEFT UNDER,2016-02-08T00:00:00,2016,February,Monday,8,39,10,2016-02-08T00:00:00,2016,February,Monday,8,39,10,D22,Toronto,14,Islington-City Centre West (14),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,TRICROSS SPORT,RC,21,BLK,1200.0,STOLEN,448,"{'type': 'Point', 'coordinates': (-79.53760351, 43.63897842)}"
-457,22105,GO-20169005441,THEFT UNDER,2016-06-07T00:00:00,2016,June,Tuesday,7,159,9,2016-06-07T00:00:00,2016,June,Tuesday,7,159,19,D22,Toronto,14,Islington-City Centre West (14),Ttc Subway Station,Transit,OT,URBANIA 2.0,TO,18,BLK,700.0,STOLEN,449,"{'type': 'Point', 'coordinates': (-79.54005153, 43.63611086)}"
-458,23816,GO-20201419941,B&E,2020-07-26T00:00:00,2020,July,Sunday,26,208,23,2020-07-30T00:00:00,2020,July,Thursday,30,212,15,D22,Toronto,14,Islington-City Centre West (14),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,AC,MT,10,GRNSIL,1500.0,STOLEN,450,"{'type': 'Point', 'coordinates': (-79.5407359, 43.65070675)}"
-459,24143,GO-20209000930,THEFT UNDER,2020-01-08T00:00:00,2020,January,Wednesday,8,8,18,2020-01-09T00:00:00,2020,January,Thursday,9,9,9,D22,Toronto,14,Islington-City Centre West (14),Unknown,Other,UK,HOVERBOARD,OT,25,BLK,900.0,STOLEN,451,"{'type': 'Point', 'coordinates': (-79.55467522, 43.6328036)}"
-460,24186,GO-20209014911,THEFT UNDER,2020-05-27T00:00:00,2020,May,Wednesday,27,148,18,2020-06-08T00:00:00,2020,June,Monday,8,160,22,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,OT,SIRRUS V,RG,7,RED,620.0,STOLEN,452,"{'type': 'Point', 'coordinates': (-79.53280588, 43.64315759)}"
-461,24222,GO-20171575787,THEFT UNDER - BICYCLE,2017-08-30T00:00:00,2017,August,Wednesday,30,242,23,2017-08-31T00:00:00,2017,August,Thursday,31,243,9,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,UNKNOWN,RG,10,BLU,,STOLEN,453,"{'type': 'Point', 'coordinates': (-79.5311665, 43.64606201)}"
-462,24275,GO-2018176549,THEFT UNDER - SHOPLIFTING,2018-01-28T00:00:00,2018,January,Sunday,28,28,16,2018-01-28T00:00:00,2018,January,Sunday,28,28,18,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,SANCTION,MT,11,RED,3000.0,STOLEN,454,"{'type': 'Point', 'coordinates': (-79.55686589, 43.61012637)}"
-463,24426,GO-20142447209,THEFT UNDER,2014-07-06T00:00:00,2014,July,Sunday,6,187,17,2014-07-07T00:00:00,2014,July,Monday,7,188,9,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCOTT,SPARK,MT,30,BLKRED,3700.0,STOLEN,455,"{'type': 'Point', 'coordinates': (-79.52751314, 43.62280101)}"
-464,24431,GO-20142614179,B&E,2014-07-31T00:00:00,2014,July,Thursday,31,212,14,2014-08-01T00:00:00,2014,August,Friday,1,213,15,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,,RG,21,BLU,400.0,STOLEN,456,"{'type': 'Point', 'coordinates': (-79.55310783, 43.65163337)}"
-465,24432,GO-20142614179,B&E,2014-07-31T00:00:00,2014,July,Thursday,31,212,14,2014-08-01T00:00:00,2014,August,Friday,1,213,15,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ROCKY MOUNTAIN,ROCKHOPPER,MT,21,BLK,1100.0,STOLEN,457,"{'type': 'Point', 'coordinates': (-79.55310783, 43.65163337)}"
-466,24452,GO-20159003054,THEFT UNDER,2015-05-19T00:00:00,2015,May,Tuesday,19,139,17,2015-05-21T00:00:00,2015,May,Thursday,21,141,20,D22,Toronto,14,Islington-City Centre West (14),Ttc Subway Station,Transit,OT,,MT,12,BGE,,STOLEN,458,"{'type': 'Point', 'coordinates': (-79.52200305, 43.6459276)}"
-467,24456,GO-2015903587,THEFT UNDER,2015-05-29T00:00:00,2015,May,Friday,29,149,17,2015-05-30T00:00:00,2015,May,Saturday,30,150,11,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,MOUNTAIN,MT,18,BLUBLK,,STOLEN,459,"{'type': 'Point', 'coordinates': (-79.53674983, 43.64505274)}"
-468,24493,GO-20151771544,THEFT UNDER,2015-10-11T00:00:00,2015,October,Sunday,11,284,11,2015-10-14T00:00:00,2015,October,Wednesday,14,287,14,D22,Toronto,14,Islington-City Centre West (14),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,,RC,0,BLKBLU,4500.0,STOLEN,460,"{'type': 'Point', 'coordinates': (-79.52006087, 43.64542592)}"
-469,24499,GO-20159009884,THEFT UNDER,2015-11-18T00:00:00,2015,November,Wednesday,18,322,20,2015-11-18T00:00:00,2015,November,Wednesday,18,322,21,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,EM,,EL,35,BLK,1700.0,STOLEN,461,"{'type': 'Point', 'coordinates': (-79.53292993, 43.64413876)}"
-470,24556,GO-20169014059,THEFT UNDER - BICYCLE,2016-11-27T00:00:00,2016,November,Sunday,27,332,12,2016-11-30T00:00:00,2016,November,Wednesday,30,335,20,D22,Toronto,14,Islington-City Centre West (14),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ALLEZ SPORT,TO,18,BLK,400.0,STOLEN,462,"{'type': 'Point', 'coordinates': (-79.52421459, 43.62151707)}"
-471,33,GO-20162305570,B&E,2016-12-30T00:00:00,2016,December,Friday,30,365,6,2016-12-30T00:00:00,2016,December,Friday,30,365,6,D22,Toronto,15,Kingsway South (15),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,OT,24,,2000.0,STOLEN,463,"{'type': 'Point', 'coordinates': (-79.51191722, 43.65864827)}"
-472,34,GO-20162305570,B&E,2016-12-30T00:00:00,2016,December,Friday,30,365,6,2016-12-30T00:00:00,2016,December,Friday,30,365,6,D22,Toronto,15,Kingsway South (15),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,VITA COMP DISC,RC,24,BLKOTH,1500.0,STOLEN,464,"{'type': 'Point', 'coordinates': (-79.51191722, 43.65864827)}"
-473,741,GO-20179009100,THEFT UNDER - BICYCLE,2017-06-27T00:00:00,2017,June,Tuesday,27,178,12,2017-06-28T00:00:00,2017,June,Wednesday,28,179,15,D22,Toronto,15,Kingsway South (15),Ttc Subway Station,Transit,GI,ROAM,TO,21,BLK,1200.0,STOLEN,465,"{'type': 'Point', 'coordinates': (-79.49540608000001, 43.64960616)}"
-474,1556,GO-20179016118,THEFT OF EBIKE UNDER $5000,2017-09-27T00:00:00,2017,September,Wednesday,27,270,7,2017-09-29T00:00:00,2017,September,Friday,29,272,17,D22,Toronto,15,Kingsway South (15),"Apartment (Rooming House, Condo)",Apartment,UK,,EL,35,RED,1000.0,STOLEN,466,"{'type': 'Point', 'coordinates': (-79.49838508000002, 43.65005631)}"
-475,2323,GO-2018870759,THEFT UNDER,2018-05-14T00:00:00,2018,May,Monday,14,134,9,2018-05-14T00:00:00,2018,May,Monday,14,134,17,D22,Toronto,15,Kingsway South (15),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,MT,18,BLUYEL,200.0,STOLEN,467,"{'type': 'Point', 'coordinates': (-79.49540608000001, 43.64960616)}"
-476,2694,GO-20189020383,THEFT UNDER - BICYCLE,2018-06-26T00:00:00,2018,June,Tuesday,26,177,7,2018-06-26T00:00:00,2018,June,Tuesday,26,177,15,D22,Toronto,15,Kingsway South (15),Ttc Subway Station,Transit,UK,11864,RG,1,BLU,450.0,STOLEN,468,"{'type': 'Point', 'coordinates': (-79.50655965, 43.64842688)}"
-477,3504,GO-20189030991,THEFT UNDER - BICYCLE,2018-09-17T00:00:00,2018,September,Monday,17,260,9,2018-09-18T00:00:00,2018,September,Tuesday,18,261,15,D22,Toronto,15,Kingsway South (15),Ttc Subway Station,Transit,OT,,OT,12,BGE,500.0,STOLEN,469,"{'type': 'Point', 'coordinates': (-79.51170915, 43.648253)}"
-478,3858,GO-20182111484,PROPERTY - FOUND,2018-11-16T00:00:00,2018,November,Friday,16,320,10,2018-11-16T00:00:00,2018,November,Friday,16,320,10,D22,Toronto,15,Kingsway South (15),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,CLASSIC CRUISER,TO,1,GRY,,UNKNOWN,470,"{'type': 'Point', 'coordinates': (-79.50750362, 43.65347593)}"
-479,4413,GO-20199017460,THEFT UNDER,2019-06-04T00:00:00,2019,June,Tuesday,4,155,12,2019-06-05T00:00:00,2019,June,Wednesday,5,156,9,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,OT,21,BRN,500.0,STOLEN,471,"{'type': 'Point', 'coordinates': (-79.50484874, 43.65462305)}"
-480,4534,GO-20199019150,THEFT UNDER,2019-06-18T00:00:00,2019,June,Tuesday,18,169,8,2019-06-18T00:00:00,2019,June,Tuesday,18,169,19,D22,Toronto,15,Kingsway South (15),Other Passenger Train Station,Transit,KO,,RG,18,GRY,500.0,STOLEN,472,"{'type': 'Point', 'coordinates': (-79.50772138000002, 43.64817027)}"
-481,4722,GO-20199021618,THEFT UNDER,2019-07-09T00:00:00,2019,July,Tuesday,9,190,12,2019-07-09T00:00:00,2019,July,Tuesday,9,190,15,D22,Toronto,15,Kingsway South (15),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UK,WHITE SPECIALIZ,RG,20,WHI,800.0,STOLEN,473,"{'type': 'Point', 'coordinates': (-79.5140734, 43.64771876)}"
-482,4762,GO-20199022083,THEFT UNDER,2019-07-11T00:00:00,2019,July,Thursday,11,192,13,2019-07-12T00:00:00,2019,July,Friday,12,193,16,D22,Toronto,15,Kingsway South (15),Schools During Supervised Activity,Educational,OT,ROCKHOPPER,MT,27,GRN,500.0,STOLEN,474,"{'type': 'Point', 'coordinates': (-79.5214032, 43.65033128)}"
-483,5141,GO-20199027370,THEFT UNDER,2019-08-23T00:00:00,2019,August,Friday,23,235,10,2019-08-23T00:00:00,2019,August,Friday,23,235,11,D22,Toronto,15,Kingsway South (15),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,GIANT,ROAM2,MT,18,GRY,850.0,STOLEN,475,"{'type': 'Point', 'coordinates': (-79.5140734, 43.64771876)}"
-484,6086,GO-20209011595,THEFT UNDER,2020-04-18T00:00:00,2020,April,Saturday,18,109,16,2020-04-20T00:00:00,2020,April,Monday,20,111,18,D22,Toronto,15,Kingsway South (15),"Apartment (Rooming House, Condo)",Apartment,TR,FX SPORT 5,RC,22,BLK,2349.0,STOLEN,476,"{'type': 'Point', 'coordinates': (-79.49838508000002, 43.65005631)}"
-485,6087,GO-20209011595,THEFT UNDER,2020-04-18T00:00:00,2020,April,Saturday,18,109,16,2020-04-20T00:00:00,2020,April,Monday,20,111,18,D22,Toronto,15,Kingsway South (15),"Apartment (Rooming House, Condo)",Apartment,OT,SVELTO RRD,RC,22,WHI,1499.0,STOLEN,477,"{'type': 'Point', 'coordinates': (-79.49838508000002, 43.65005631)}"
-486,6387,GO-20201098809,THEFT OF MOTOR VEHICLE,2020-06-14T00:00:00,2020,June,Sunday,14,166,23,2020-06-15T00:00:00,2020,June,Monday,15,167,9,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,RG,24,WHI,700.0,STOLEN,478,"{'type': 'Point', 'coordinates': (-79.50416327, 43.65813045)}"
-487,7050,GO-20209021040,THEFT UNDER,2020-08-20T00:00:00,2020,August,Thursday,20,233,9,2020-08-22T00:00:00,2020,August,Saturday,22,235,22,D22,Toronto,15,Kingsway South (15),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,TO,7,PLE,350.0,STOLEN,479,"{'type': 'Point', 'coordinates': (-79.49622075, 43.64979072)}"
-488,7439,GO-20209026034,THEFT UNDER,2020-10-09T00:00:00,2020,October,Friday,9,283,13,2020-10-10T00:00:00,2020,October,Saturday,10,284,16,D22,Toronto,15,Kingsway South (15),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MA,2016 ARGENTA EL,RC,10,BLK,1155.0,STOLEN,480,"{'type': 'Point', 'coordinates': (-79.5140734, 43.64771876)}"
-489,7461,GO-20209026349,THEFT UNDER,2020-10-12T00:00:00,2020,October,Monday,12,286,16,2020-10-13T00:00:00,2020,October,Tuesday,13,287,17,D22,Toronto,15,Kingsway South (15),Schools During Un-Supervised Activity,Educational,NO,KOKANEE,MT,21,BLK,100.0,STOLEN,481,"{'type': 'Point', 'coordinates': (-79.50980395, 43.65910215)}"
-490,8103,GO-20142270994,THEFT UNDER,2014-06-11T00:00:00,2014,June,Wednesday,11,162,19,2014-06-11T00:00:00,2014,June,Wednesday,11,162,20,D22,Toronto,15,Kingsway South (15),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,ECCLECTIC,OT,6,SIL,,STOLEN,482,"{'type': 'Point', 'coordinates': (-79.51132657, 43.64736434)}"
-491,8122,GO-20149003965,THEFT UNDER,2014-06-07T00:00:00,2014,June,Saturday,7,158,18,2014-06-10T00:00:00,2014,June,Tuesday,10,161,20,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,HYDRA,TO,15,WHI,350.0,STOLEN,483,"{'type': 'Point', 'coordinates': (-79.5035418, 43.66049351)}"
-492,8330,GO-20142474895,B&E,2014-07-11T00:00:00,2014,July,Friday,11,192,4,2014-07-11T00:00:00,2014,July,Friday,11,192,4,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ORBEA,ORDU,RC,10,BLK,10000.0,STOLEN,484,"{'type': 'Point', 'coordinates': (-79.52023754, 43.65397873)}"
-493,8331,GO-20142474895,B&E,2014-07-11T00:00:00,2014,July,Friday,11,192,4,2014-07-11T00:00:00,2014,July,Friday,11,192,4,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CERVELO,P3,RC,18,GRYRED,5000.0,STOLEN,485,"{'type': 'Point', 'coordinates': (-79.52023754, 43.65397873)}"
-494,8885,GO-20142916850,THEFT UNDER,2014-09-14T00:00:00,2014,September,Sunday,14,257,23,2014-09-15T00:00:00,2014,September,Monday,15,258,19,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,VITA ELITE,RC,14,WHI,1350.0,RECOVERED,487,"{'type': 'Point', 'coordinates': (-79.51518538, 43.65325393)}"
-495,8886,GO-20142916850,THEFT UNDER,2014-09-14T00:00:00,2014,September,Sunday,14,257,23,2014-09-15T00:00:00,2014,September,Monday,15,258,19,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MONGOOSE,,MT,10,RED,300.0,RECOVERED,488,"{'type': 'Point', 'coordinates': (-79.51518538, 43.65325393)}"
-496,9101,GO-20143154742,THEFT UNDER,2014-10-22T00:00:00,2014,October,Wednesday,22,295,14,2014-10-22T00:00:00,2014,October,Wednesday,22,295,17,D22,Toronto,15,Kingsway South (15),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,KONA,DEW PLUS,TO,12,BRN,900.0,STOLEN,489,"{'type': 'Point', 'coordinates': (-79.52636196, 43.65136349)}"
-497,9338,GO-2015478306,THEFT UNDER,2015-03-21T00:00:00,2015,March,Saturday,21,80,22,2015-03-21T00:00:00,2015,March,Saturday,21,80,22,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,MT,0,GLD,25.0,STOLEN,490,"{'type': 'Point', 'coordinates': (-79.50510152, 43.65693102)}"
-498,9339,GO-2015478306,THEFT UNDER,2015-03-21T00:00:00,2015,March,Saturday,21,80,22,2015-03-21T00:00:00,2015,March,Saturday,21,80,22,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,0,PLE,25.0,STOLEN,491,"{'type': 'Point', 'coordinates': (-79.50510152, 43.65693102)}"
-499,9340,GO-2015478306,THEFT UNDER,2015-03-21T00:00:00,2015,March,Saturday,21,80,22,2015-03-21T00:00:00,2015,March,Saturday,21,80,22,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,MT,0,WHI,25.0,STOLEN,492,"{'type': 'Point', 'coordinates': (-79.50510152, 43.65693102)}"
-500,9371,GO-2015568064,THEFT UNDER,2015-01-31T00:00:00,2015,January,Saturday,31,31,15,2015-04-06T00:00:00,2015,April,Monday,6,96,11,D22,Toronto,15,Kingsway South (15),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CANNONDALE,12 QUICK,MT,21,BLKRED,1350.0,STOLEN,493,"{'type': 'Point', 'coordinates': (-79.49540608000001, 43.64960616)}"
-501,9738,GO-2015928881,THEFT UNDER,2015-06-03T00:00:00,2015,June,Wednesday,3,154,9,2015-06-03T00:00:00,2015,June,Wednesday,3,154,12,D22,Toronto,15,Kingsway South (15),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,UNKNOWN,MT,6,BLKGRN,600.0,STOLEN,494,"{'type': 'Point', 'coordinates': (-79.51960669, 43.64940381)}"
-502,9954,GO-20151141022,B&E,2015-07-02T00:00:00,2015,July,Thursday,2,183,17,2015-07-06T00:00:00,2015,July,Monday,6,187,17,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CERVELO,S3,RC,0,BLK,5000.0,STOLEN,497,"{'type': 'Point', 'coordinates': (-79.5035418, 43.66049351)}"
-503,9955,GO-20151141022,B&E,2015-07-02T00:00:00,2015,July,Thursday,2,183,17,2015-07-06T00:00:00,2015,July,Monday,6,187,17,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ARGON 18,,RC,0,LBLDBL,2500.0,STOLEN,498,"{'type': 'Point', 'coordinates': (-79.5035418, 43.66049351)}"
-504,9956,GO-20151141022,B&E,2015-07-02T00:00:00,2015,July,Thursday,2,183,17,2015-07-06T00:00:00,2015,July,Monday,6,187,17,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,VENGE,RC,0,BLKGRY,5000.0,STOLEN,499,"{'type': 'Point', 'coordinates': (-79.5035418, 43.66049351)}"
-505,10061,GO-20151247147,B&E,2015-07-14T00:00:00,2015,July,Tuesday,14,195,19,2015-07-22T00:00:00,2015,July,Wednesday,22,203,7,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,YORKVILLE,OT,21,GRY,500.0,STOLEN,500,"{'type': 'Point', 'coordinates': (-79.50810177, 43.66034414)}"
-506,10062,GO-20151247147,B&E,2015-07-14T00:00:00,2015,July,Tuesday,14,195,19,2015-07-22T00:00:00,2015,July,Wednesday,22,203,7,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,YORKVILLE,OT,21,GRY,500.0,STOLEN,501,"{'type': 'Point', 'coordinates': (-79.50810177, 43.66034414)}"
-507,10540,GO-20159007701,THEFT UNDER,2015-09-24T00:00:00,2015,September,Thursday,24,267,8,2015-09-24T00:00:00,2015,September,Thursday,24,267,13,D22,Toronto,15,Kingsway South (15),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,ESCAPE 1,OT,18,GRY,509.0,STOLEN,502,"{'type': 'Point', 'coordinates': (-79.50746506, 43.65054633)}"
-508,11072,GO-20169002702,THEFT UNDER - BICYCLE,2016-03-23T00:00:00,2016,March,Wednesday,23,83,15,2016-03-23T00:00:00,2016,March,Wednesday,23,83,17,D22,Toronto,15,Kingsway South (15),Schools During Un-Supervised Activity,Educational,TR,7.0 FX STAGGER,OT,7,SIL,469.0,STOLEN,503,"{'type': 'Point', 'coordinates': (-79.5214032, 43.65033128)}"
-509,11583,GO-20169006038,THEFT UNDER - BICYCLE,2016-06-16T00:00:00,2016,June,Thursday,16,168,17,2016-06-20T00:00:00,2016,June,Monday,20,172,9,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,RG,21,WHI,576.0,STOLEN,504,"{'type': 'Point', 'coordinates': (-79.50990778, 43.65290101)}"
-510,11601,GO-20169006144,THEFT UNDER,2016-06-17T00:00:00,2016,June,Friday,17,169,15,2016-06-21T00:00:00,2016,June,Tuesday,21,173,18,D22,Toronto,15,Kingsway South (15),Schools During Un-Supervised Activity,Educational,RM,VAPOR 15,MT,21,GRY,700.0,STOLEN,505,"{'type': 'Point', 'coordinates': (-79.5214032, 43.65033128)}"
-511,11942,GO-20169007888,THEFT UNDER,2016-07-28T00:00:00,2016,July,Thursday,28,210,12,2016-07-28T00:00:00,2016,July,Thursday,28,210,19,D22,Toronto,15,Kingsway South (15),Ttc Subway Station,Transit,TR,"7.5, 15""",MT,21,DBL,600.0,STOLEN,506,"{'type': 'Point', 'coordinates': (-79.49540608000001, 43.64960616)}"
-512,12212,GO-20169009573,THEFT UNDER - BICYCLE,2016-08-25T00:00:00,2016,August,Thursday,25,238,9,2016-08-27T00:00:00,2016,August,Saturday,27,240,13,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,,OT,5,BLK,400.0,STOLEN,507,"{'type': 'Point', 'coordinates': (-79.52232358000002, 43.65081043)}"
-513,14554,GO-20199024777,THEFT UNDER,2019-08-01T00:00:00,2019,August,Thursday,1,213,17,2019-08-02T00:00:00,2019,August,Friday,2,214,16,D22,Toronto,15,Kingsway South (15),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,18,BLK,800.0,STOLEN,508,"{'type': 'Point', 'coordinates': (-79.50796619, 43.64810274)}"
-514,14730,GO-20179016902,THEFT UNDER,2017-10-10T00:00:00,2017,October,Tuesday,10,283,8,2017-10-10T00:00:00,2017,October,Tuesday,10,283,22,D22,Toronto,15,Kingsway South (15),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,6,BLK,389.0,STOLEN,509,"{'type': 'Point', 'coordinates': (-79.50772138000002, 43.64817027)}"
-515,14793,GO-20189017450,THEFT UNDER,2018-06-03T00:00:00,2018,June,Sunday,3,154,12,2018-06-05T00:00:00,2018,June,Tuesday,5,156,10,D22,Toronto,15,Kingsway South (15),Go Station,Transit,OT,SPECIALIZED,MT,21,BLK,250.0,STOLEN,510,"{'type': 'Point', 'coordinates': (-79.50655965, 43.64842688)}"
-516,14926,GO-20142475839,THEFT UNDER,2014-07-10T00:00:00,2014,July,Thursday,10,191,19,2014-07-11T00:00:00,2014,July,Friday,11,192,14,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,AREBA,MT,18,WHI,400.0,STOLEN,511,"{'type': 'Point', 'coordinates': (-79.51718142000001, 43.652305080000005)}"
-517,14936,GO-20149007240,THEFT UNDER,2014-09-26T00:00:00,2014,September,Friday,26,269,8,2014-09-26T00:00:00,2014,September,Friday,26,269,16,D22,Toronto,15,Kingsway South (15),Schools During Supervised Activity,Educational,CA,SR SUNTOUR,MT,10,RED,500.0,STOLEN,512,"{'type': 'Point', 'coordinates': (-79.5214032, 43.65033128)}"
-518,17332,GO-20209014386,THEFT UNDER,2020-05-26T00:00:00,2020,May,Tuesday,26,147,21,2020-06-02T00:00:00,2020,June,Tuesday,2,154,9,D22,Toronto,15,Kingsway South (15),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,,RC,12,SIL,750.0,STOLEN,513,"{'type': 'Point', 'coordinates': (-79.49838508000002, 43.65005631)}"
-519,17366,GO-20209019248,THEFT UNDER,2020-08-02T00:00:00,2020,August,Sunday,2,215,12,2020-08-02T00:00:00,2020,August,Sunday,2,215,23,D22,Toronto,15,Kingsway South (15),Ttc Subway Station,Transit,GI,,RG,10,GRY,800.0,STOLEN,514,"{'type': 'Point', 'coordinates': (-79.51170915, 43.648253)}"
-520,17404,GO-20202004387,B&E,2020-10-15T00:00:00,2020,October,Thursday,15,289,16,2020-10-22T00:00:00,2020,October,Thursday,22,296,13,D22,Toronto,15,Kingsway South (15),"Private Property Structure (Pool, Shed, Detached Garage)",Other,ROCKHOPPER,,MT,18,SIL,1200.0,STOLEN,515,"{'type': 'Point', 'coordinates': (-79.51191722, 43.65864827)}"
-521,17661,GO-20199035607,THEFT UNDER,2019-10-27T00:00:00,2019,October,Sunday,27,300,21,2019-10-28T00:00:00,2019,October,Monday,28,301,19,D22,Toronto,15,Kingsway South (15),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ASPECT 920 L,MT,30,WHI,1250.0,STOLEN,516,"{'type': 'Point', 'coordinates': (-79.50200758, 43.64946221)}"
-522,17739,GO-20171707627,THEFT UNDER - BICYCLE,2017-08-21T00:00:00,2017,August,Monday,21,233,14,2017-09-24T00:00:00,2017,September,Sunday,24,267,11,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,ESCAPE 2,RC,1,GRY,700.0,STOLEN,517,"{'type': 'Point', 'coordinates': (-79.49838508000002, 43.65005631)}"
-523,1129,GO-20171456567,THEFT UNDER - BICYCLE,2017-08-12T00:00:00,2017,August,Saturday,12,224,22,2017-08-13T00:00:00,2017,August,Sunday,13,225,0,D23,Toronto,8,Humber Heights-Westmount (8),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,,TO,0,,300.0,STOLEN,518,"{'type': 'Point', 'coordinates': (-79.51953311, 43.68590256)}"
-524,17370,GO-20209019495,THEFT UNDER,2020-07-31T00:00:00,2020,July,Friday,31,213,9,2020-08-05T00:00:00,2020,August,Wednesday,5,218,22,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Apartment (Rooming House, Condo)",Apartment,SC,"OB-BREAKER 26""""",MT,21,DBL,299.0,STOLEN,519,"{'type': 'Point', 'coordinates': (-79.58607608, 43.76010263)}"
-525,12191,GO-20169009380,THEFT UNDER,2016-08-15T00:00:00,2016,August,Monday,15,228,18,2016-08-23T00:00:00,2016,August,Tuesday,23,236,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,SP3,OT,27,GRY,1000.0,STOLEN,520,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-526,17871,GO-20189024775,THEFT UNDER - BICYCLE,2018-07-31T00:00:00,2018,July,Tuesday,31,212,21,2018-08-01T00:00:00,2018,August,Wednesday,1,213,21,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SU,,MT,21,RED,170.0,STOLEN,521,"{'type': 'Point', 'coordinates': (-79.58376752, 43.7468156)}"
-527,12424,GO-20161688678,THEFT UNDER - BICYCLE,2016-01-10T00:00:00,2016,January,Sunday,10,10,16,2016-09-22T00:00:00,2016,September,Thursday,22,266,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,UTOPIA,OT,21,BLK,,STOLEN,522,"{'type': 'Point', 'coordinates': (-79.48643252, 43.61892859)}"
-528,18075,GO-20171107656,THEFT UNDER,2017-06-21T00:00:00,2017,June,Wednesday,21,172,12,2017-06-24T00:00:00,2017,June,Saturday,24,175,15,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,FORESTER,2700,SC,1,BLK,2300.0,STOLEN,523,"{'type': 'Point', 'coordinates': (-79.58207638, 43.74326507)}"
-529,12425,GO-20161688678,THEFT UNDER - BICYCLE,2016-01-10T00:00:00,2016,January,Sunday,10,10,16,2016-09-22T00:00:00,2016,September,Thursday,22,266,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,BODEGA,OT,21,BLK,,STOLEN,524,"{'type': 'Point', 'coordinates': (-79.48643252, 43.61892859)}"
-530,4528,GO-20199019081,THEFT UNDER,2019-06-13T00:00:00,2019,June,Thursday,13,164,16,2019-06-18T00:00:00,2019,June,Tuesday,18,169,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,OPUS SKETCH,MT,24,RED,1400.0,STOLEN,525,"{'type': 'Point', 'coordinates': (-79.48497603, 43.62140475)}"
-531,18097,GO-20171288435,THEFT UNDER - BICYCLE,2017-07-18T00:00:00,2017,July,Tuesday,18,199,9,2017-07-18T00:00:00,2017,July,Tuesday,18,199,12,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),Schools During Supervised Activity,Educational,AQUILA,,BM,12,,129.0,RECOVERED,526,"{'type': 'Point', 'coordinates': (-79.59704528, 43.75307715)}"
-532,12455,GO-20161706999,B&E,2016-09-22T00:00:00,2016,September,Thursday,22,266,18,2016-09-25T00:00:00,2016,September,Sunday,25,269,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,LEMOND,ALPS'DHOR,RC,6,BLKRED,800.0,STOLEN,527,"{'type': 'Point', 'coordinates': (-79.4972373, 43.60240525)}"
-533,4529,GO-20199019081,THEFT UNDER,2019-06-13T00:00:00,2019,June,Thursday,13,164,16,2019-06-18T00:00:00,2019,June,Tuesday,18,169,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,NO,NORCO VALENCE,RC,24,BLK,1600.0,STOLEN,528,"{'type': 'Point', 'coordinates': (-79.48497603, 43.62140475)}"
-534,20782,GO-20209018750,THEFT UNDER,2020-07-27T00:00:00,2020,July,Monday,27,209,10,2020-07-28T00:00:00,2020,July,Tuesday,28,210,0,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RC,6,DBL,400.0,STOLEN,529,"{'type': 'Point', 'coordinates': (-79.58207638, 43.74326507)}"
-535,12503,GO-20161731613,THEFT UNDER - BICYCLE,2016-09-25T00:00:00,2016,September,Sunday,25,269,9,2016-09-29T00:00:00,2016,September,Thursday,29,273,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Universities / Colleges,Educational,OTHER,,RC,0,BLK,400.0,STOLEN,530,"{'type': 'Point', 'coordinates': (-79.50309339, 43.61484445)}"
-536,2371,GO-2018891767,B&E,2018-05-17T00:00:00,2018,May,Thursday,17,137,2,2018-05-17T00:00:00,2018,May,Thursday,17,137,18,D23,Toronto,8,Humber Heights-Westmount (8),"Apartment (Rooming House, Condo)",Apartment,CA,TRAIL5,MT,21,BLK,1200.0,STOLEN,531,"{'type': 'Point', 'coordinates': (-79.5165076, 43.68647481)}"
-537,18091,GO-20179010168,THEFT UNDER - BICYCLE,2017-07-13T00:00:00,2017,July,Thursday,13,194,21,2017-07-14T00:00:00,2017,July,Friday,14,195,10,D22,Toronto,11,Eringate-Centennial-West Deane (11),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,1,,0.0,STOLEN,532,"{'type': 'Point', 'coordinates': (-79.58403851, 43.66152036)}"
-538,3272,GO-20189027205,THEFT UNDER - BICYCLE,2018-08-20T00:00:00,2018,August,Monday,20,232,17,2018-08-20T00:00:00,2018,August,Monday,20,232,19,D23,Toronto,8,Humber Heights-Westmount (8),"Open Areas (Lakes, Parks, Rivers)",Outside,GI,,MT,24,,180.0,STOLEN,533,"{'type': 'Point', 'coordinates': (-79.51310887, 43.6868507)}"
-539,12574,GO-20161784034,B&E,2016-10-06T00:00:00,2016,October,Thursday,6,280,15,2016-10-07T00:00:00,2016,October,Friday,7,281,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,SCHWINN,SUPER SPORT 1,MT,24,,650.0,STOLEN,534,"{'type': 'Point', 'coordinates': (-79.48643252, 43.61892859)}"
-540,22050,GO-20159002339,THEFT UNDER,2015-04-29T00:00:00,2015,April,Wednesday,29,119,0,2015-04-29T00:00:00,2015,April,Wednesday,29,119,7,D22,Toronto,11,Eringate-Centennial-West Deane (11),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,CLASSICO,RG,7,BLK,750.0,STOLEN,535,"{'type': 'Point', 'coordinates': (-79.57764587, 43.66846174)}"
-541,6620,GO-20209017572,THEFT UNDER,2020-06-14T00:00:00,2020,June,Sunday,14,166,18,2020-07-14T00:00:00,2020,July,Tuesday,14,196,18,D23,Toronto,8,Humber Heights-Westmount (8),"Apartment (Rooming House, Condo)",Apartment,UK,MENS MOUNTAIN B,MT,21,DGR,300.0,STOLEN,536,"{'type': 'Point', 'coordinates': (-79.5165076, 43.68647481)}"
-542,21001,GO-2019979708,THEFT UNDER,2019-05-28T00:00:00,2019,May,Tuesday,28,148,17,2019-05-28T00:00:00,2019,May,Tuesday,28,148,21,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,CAN. TIRE,,MT,6,DBLRED,112.0,STOLEN,537,"{'type': 'Point', 'coordinates': (-79.58491856, 43.73877053)}"
-543,4544,GO-20191128515,THEFT UNDER,2019-06-14T00:00:00,2019,June,Friday,14,165,19,2019-06-18T00:00:00,2019,June,Tuesday,18,169,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,CROSS RIP ELITE,OT,12,BLK,1600.0,STOLEN,538,"{'type': 'Point', 'coordinates': (-79.48480515, 43.62040835)}"
-544,8548,GO-20142624258,B&E,2014-08-02T00:00:00,2014,August,Saturday,2,214,18,2014-08-02T00:00:00,2014,August,Saturday,2,214,19,D23,Toronto,8,Humber Heights-Westmount (8),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,BM,1,PLEWHI,600.0,STOLEN,539,"{'type': 'Point', 'coordinates': (-79.51763519, 43.69541067)}"
-545,23831,GO-20209022584,THEFT UNDER,2020-09-08T00:00:00,2020,September,Tuesday,8,252,2,2020-09-08T00:00:00,2020,September,Tuesday,8,252,16,D22,Toronto,11,Eringate-Centennial-West Deane (11),"Apartment (Rooming House, Condo)",Apartment,RA,TALUS,MT,10,BLK,600.0,STOLEN,540,"{'type': 'Point', 'coordinates': (-79.57883055, 43.66157384)}"
-546,4548,GO-20199019311,THEFT UNDER,2019-06-19T00:00:00,2019,June,Wednesday,19,170,19,2019-06-19T00:00:00,2019,June,Wednesday,19,170,22,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,SC,,MT,24,BLK,400.0,STOLEN,541,"{'type': 'Point', 'coordinates': (-79.49709647, 43.61309191)}"
-547,12749,GO-20161993755,THEFT UNDER - BICYCLE,2016-11-07T00:00:00,2016,November,Monday,7,312,8,2016-11-11T00:00:00,2016,November,Friday,11,316,8,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Go Station,Transit,RALEIGH,2,MT,21,BLU,400.0,STOLEN,542,"{'type': 'Point', 'coordinates': (-79.49833024, 43.61617493)}"
-548,21021,GO-20199021593,THEFT UNDER,2019-07-08T00:00:00,2019,July,Monday,8,189,16,2019-07-09T00:00:00,2019,July,Tuesday,9,190,12,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,IH,HARD TAIL,MT,21,BLK,500.0,STOLEN,543,"{'type': 'Point', 'coordinates': (-79.58207638, 43.74326507)}"
-549,8549,GO-20142624258,B&E,2014-08-02T00:00:00,2014,August,Saturday,2,214,18,2014-08-02T00:00:00,2014,August,Saturday,2,214,19,D23,Toronto,8,Humber Heights-Westmount (8),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,1,PLESIL,200.0,STOLEN,544,"{'type': 'Point', 'coordinates': (-79.51763519, 43.69541067)}"
-550,24089,GO-20199027192,THEFT FROM MOTOR VEHICLE UNDER,2019-08-21T00:00:00,2019,August,Wednesday,21,233,3,2019-08-21T00:00:00,2019,August,Wednesday,21,233,19,D22,Toronto,11,Eringate-Centennial-West Deane (11),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,MT,25,GRN,2500.0,STOLEN,545,"{'type': 'Point', 'coordinates': (-79.57413466, 43.66712459)}"
-551,4550,GO-20199019342,THEFT UNDER,2019-05-30T00:00:00,2019,May,Thursday,30,150,9,2019-06-20T00:00:00,2019,June,Thursday,20,171,10,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,UK,,TO,1,RED,300.0,STOLEN,546,"{'type': 'Point', 'coordinates': (-79.49759779, 43.61432512)}"
-552,12813,GO-20169013721,THEFT UNDER,2016-11-18T00:00:00,2016,November,Friday,18,323,20,2016-11-22T00:00:00,2016,November,Tuesday,22,327,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,X-RIDE 15 DISC,RC,22,WHI,1500.0,STOLEN,547,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}"
-553,21996,GO-20141590253,THEFT UNDER,2014-02-24T00:00:00,2014,February,Monday,24,55,9,2014-02-24T00:00:00,2014,February,Monday,24,55,15,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Single Home, House (Attach Garage, Cottage, Mobile)",House,E-FADA,,EL,1,BLK,2000.0,STOLEN,548,"{'type': 'Point', 'coordinates': (-79.58704738, 43.75100077)}"
-554,22021,GO-20149004686,PROPERTY - LOST,2014-07-03T00:00:00,2014,July,Thursday,3,184,18,2014-07-03T00:00:00,2014,July,Thursday,3,184,18,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Apartment (Rooming House, Condo)",Apartment,DB,,MT,21,GRY,0.0,UNKNOWN,549,"{'type': 'Point', 'coordinates': (-79.59333174, 43.74912512)}"
-555,22036,GO-20149006565,THEFT UNDER,2014-09-04T00:00:00,2014,September,Thursday,4,247,13,2014-09-04T00:00:00,2014,September,Thursday,4,247,16,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,3,LGR,0.0,STOLEN,550,"{'type': 'Point', 'coordinates': (-79.58491856, 43.73877053)}"
-556,848,GO-20171258666,THEFT OF EBIKE UNDER $5000,2017-07-13T00:00:00,2017,July,Thursday,13,194,20,2017-07-13T00:00:00,2017,July,Thursday,13,194,21,D23,Toronto,5,Elms-Old Rexdale (5),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,EAGLE,EL,10,BLK,1500.0,STOLEN,580,"{'type': 'Point', 'coordinates': (-79.55240253, 43.7180855)}"
-557,22083,GO-20159006771,THEFT UNDER,2015-09-04T00:00:00,2015,September,Friday,4,247,17,2015-09-05T00:00:00,2015,September,Saturday,5,248,11,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,CCM,MT,21,OTH,500.0,STOLEN,551,"{'type': 'Point', 'coordinates': (-79.58207638, 43.74326507)}"
-558,22090,GO-20151658482,THEFT UNDER,2015-09-25T00:00:00,2015,September,Friday,25,268,13,2015-09-25T00:00:00,2015,September,Friday,25,268,13,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NEXT,,MT,10,BLK,100.0,STOLEN,552,"{'type': 'Point', 'coordinates': (-79.59411551, 43.75095018)}"
-559,23821,GO-20201539078,THEFT UNDER - BICYCLE,2020-08-11T00:00:00,2020,August,Tuesday,11,224,18,2020-08-16T00:00:00,2020,August,Sunday,16,229,16,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,LASER DX,MT,12,BLK,200.0,STOLEN,553,"{'type': 'Point', 'coordinates': (-79.59140609000002, 43.74621435)}"
-560,24205,GO-20179011948,THEFT UNDER,2017-08-08T00:00:00,2017,August,Tuesday,8,220,16,2017-08-08T00:00:00,2017,August,Tuesday,8,220,19,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,CCM SLOPE,MT,21,GRY,270.0,STOLEN,554,"{'type': 'Point', 'coordinates': (-79.58491856, 43.73877053)}"
-561,24471,GO-20151341920,THEFT UNDER,2015-07-30T00:00:00,2015,July,Thursday,30,211,20,2015-08-05T00:00:00,2015,August,Wednesday,5,217,20,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Open Areas (Lakes, Parks, Rivers)",Outside,SUPERCYCLE,XT1-18,MT,18,REDBLK,,STOLEN,555,"{'type': 'Point', 'coordinates': (-79.59049707000001, 43.74602288)}"
-562,24511,GO-2016621053,THEFT UNDER - BICYCLE,2016-04-12T00:00:00,2016,April,Tuesday,12,103,11,2016-04-12T00:00:00,2016,April,Tuesday,12,103,11,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SU,HOOLIGAN,MT,10,BLK,282.0,STOLEN,556,"{'type': 'Point', 'coordinates': (-79.58207638, 43.74326507)}"
-563,24523,GO-2016972982,THEFT UNDER - BICYCLE,2016-06-04T00:00:00,2016,June,Saturday,4,156,17,2016-06-05T00:00:00,2016,June,Sunday,5,157,18,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUPERCYCLE,1800,MT,21,BLKRED,112.0,STOLEN,557,"{'type': 'Point', 'coordinates': (-79.59282796, 43.74311454)}"
-564,24535,GO-20161372647,THEFT UNDER - BICYCLE,2016-08-03T00:00:00,2016,August,Wednesday,3,216,23,2016-08-04T00:00:00,2016,August,Thursday,4,217,19,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,UNKNOWN,MT,21,GRY,200.0,STOLEN,558,"{'type': 'Point', 'coordinates': (-79.5927836, 43.75584016)}"
-565,24536,GO-20161372647,THEFT UNDER - BICYCLE,2016-08-03T00:00:00,2016,August,Wednesday,3,216,23,2016-08-04T00:00:00,2016,August,Thursday,4,217,19,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,UNKNOWN,MT,18,GRY,100.0,STOLEN,559,"{'type': 'Point', 'coordinates': (-79.5927836, 43.75584016)}"
-566,24550,GO-20169012320,THEFT UNDER,2016-10-07T00:00:00,2016,October,Friday,7,281,15,2016-10-19T00:00:00,2016,October,Wednesday,19,293,22,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,MT,15,BLU,399.0,STOLEN,560,"{'type': 'Point', 'coordinates': (-79.5833943, 43.73162788)}"
-567,24580,GO-20179009200,THEFT UNDER,2017-06-12T00:00:00,2017,June,Monday,12,163,19,2017-06-29T00:00:00,2017,June,Thursday,29,180,22,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,10,WHI,220.0,STOLEN,561,"{'type': 'Point', 'coordinates': (-79.58607608, 43.76010263)}"
-568,24584,GO-20171263512,ROBBERY - OTHER,2017-07-14T00:00:00,2017,July,Friday,14,195,16,2017-07-14T00:00:00,2017,July,Friday,14,195,16,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN,,RG,21,GRY,250.0,STOLEN,562,"{'type': 'Point', 'coordinates': (-79.58938369, 43.73202412)}"
-569,8082,GO-20142266542,THEFT UNDER,2014-06-10T00:00:00,2014,June,Tuesday,10,161,17,2014-06-11T00:00:00,2014,June,Wednesday,11,162,8,D23,Toronto,3,Thistletown-Beaumond Heights (3),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,,MT,18,BLUWHI,250.0,STOLEN,563,"{'type': 'Point', 'coordinates': (-79.55629891, 43.74017295)}"
-570,9832,GO-20151026471,THEFT UNDER,2015-06-18T00:00:00,2015,June,Thursday,18,169,21,2015-06-18T00:00:00,2015,June,Thursday,18,169,21,D23,Toronto,3,Thistletown-Beaumond Heights (3),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,RG,0,RED,100.0,STOLEN,564,"{'type': 'Point', 'coordinates': (-79.57594196, 43.73965735)}"
-571,10177,GO-20151351494,THEFT UNDER,2015-07-06T00:00:00,2015,July,Monday,6,187,7,2015-08-07T00:00:00,2015,August,Friday,7,219,11,D23,Toronto,3,Thistletown-Beaumond Heights (3),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUPERCYCLE,,MT,21,BLK,200.0,STOLEN,565,"{'type': 'Point', 'coordinates': (-79.57831643, 43.73764847000001)}"
-572,10201,GO-20151365070,THEFT UNDER,2015-08-05T00:00:00,2015,August,Wednesday,5,217,11,2015-08-09T00:00:00,2015,August,Sunday,9,221,18,D23,Toronto,3,Thistletown-Beaumond Heights (3),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUPERCYCLE,MEDALIST,RG,10,BLU,300.0,STOLEN,566,"{'type': 'Point', 'coordinates': (-79.56526553, 43.7372381)}"
-573,10397,GO-20159006690,THEFT UNDER,2015-08-26T00:00:00,2015,August,Wednesday,26,238,5,2015-09-03T00:00:00,2015,September,Thursday,3,246,0,D23,Toronto,3,Thistletown-Beaumond Heights (3),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,OT,10,GLD,150.0,STOLEN,567,"{'type': 'Point', 'coordinates': (-79.56287474, 43.73743575)}"
-574,11219,GO-2016553588,THEFT UNDER - BICYCLE,2016-03-31T00:00:00,2016,March,Thursday,31,91,19,2016-04-01T00:00:00,2016,April,Friday,1,92,16,D23,Toronto,3,Thistletown-Beaumond Heights (3),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SO,ASPECT,MT,24,SIL,,STOLEN,568,"{'type': 'Point', 'coordinates': (-79.55881483000002, 43.73427551)}"
-575,11866,GO-20161287147,THEFT UNDER - BICYCLE,2016-07-17T00:00:00,2016,July,Sunday,17,199,10,2016-07-22T00:00:00,2016,July,Friday,22,204,13,D23,Toronto,3,Thistletown-Beaumond Heights (3),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,REVENGE,OT,10,BLURED,600.0,STOLEN,569,"{'type': 'Point', 'coordinates': (-79.5518152, 43.73945451)}"
-576,14942,GO-20159001512,THEFT UNDER,2015-03-14T00:00:00,2015,March,Saturday,14,73,15,2015-03-24T00:00:00,2015,March,Tuesday,24,83,15,D23,Toronto,3,Thistletown-Beaumond Heights (3),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,,OT,18,PNK,100.0,STOLEN,570,"{'type': 'Point', 'coordinates': (-79.57548669, 43.73611565)}"
-577,22035,GO-20142731267,THEFT UNDER,2014-08-15T00:00:00,2014,August,Friday,15,227,19,2014-08-19T00:00:00,2014,August,Tuesday,19,231,8,D23,Toronto,3,Thistletown-Beaumond Heights (3),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,OT,0,,300.0,STOLEN,571,"{'type': 'Point', 'coordinates': (-79.58207638, 43.74326507)}"
-578,22115,GO-20161250216,THEFT UNDER - BICYCLE,2016-07-16T00:00:00,2016,July,Saturday,16,198,14,2016-07-16T00:00:00,2016,July,Saturday,16,198,19,D23,Toronto,3,Thistletown-Beaumond Heights (3),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SUPERCYCLE,HOOLIGAN,MT,21,,,STOLEN,572,"{'type': 'Point', 'coordinates': (-79.5665454, 43.73745504)}"
-579,15001,GO-20169005437,THEFT UNDER,2016-06-05T00:00:00,2016,June,Sunday,5,157,0,2016-06-07T00:00:00,2016,June,Tuesday,7,159,17,D23,Toronto,4,Rexdale-Kipling (4),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,HF,,MT,18,BLU,100.0,STOLEN,573,"{'type': 'Point', 'coordinates': (-79.55507738, 43.71510482)}"
-580,15025,GO-20161543127,THEFT UNDER - BICYCLE,2016-08-30T00:00:00,2016,August,Tuesday,30,243,21,2016-08-31T00:00:00,2016,August,Wednesday,31,244,9,D23,Toronto,4,Rexdale-Kipling (4),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,29ER,MT,18,BLKBLU,600.0,STOLEN,574,"{'type': 'Point', 'coordinates': (-79.56629501, 43.71528789)}"
-581,21154,GO-20209016588,THEFT UNDER,2020-06-30T00:00:00,2020,June,Tuesday,30,182,17,2020-06-30T00:00:00,2020,June,Tuesday,30,182,19,D23,Toronto,4,Rexdale-Kipling (4),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SU,,MT,20,BLU,150.0,STOLEN,575,"{'type': 'Point', 'coordinates': (-79.56125505, 43.72562418)}"
-582,22062,GO-20151049192,B&E W'INTENT,2015-06-21T00:00:00,2015,June,Sunday,21,172,10,2015-06-22T00:00:00,2015,June,Monday,22,173,11,D23,Toronto,4,Rexdale-Kipling (4),"Apartment (Rooming House, Condo)",Apartment,OTHER,,EL,0,,1800.0,STOLEN,576,"{'type': 'Point', 'coordinates': (-79.56866734, 43.72589451)}"
-583,24296,GO-20189013344,THEFT UNDER - BICYCLE,2018-04-30T00:00:00,2018,April,Monday,30,120,16,2018-04-30T00:00:00,2018,April,Monday,30,120,17,D23,Toronto,4,Rexdale-Kipling (4),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,,MT,6,,50.0,STOLEN,577,"{'type': 'Point', 'coordinates': (-79.57017907, 43.7330091)}"
-584,24561,GO-2017133899,THEFT UNDER - BICYCLE,2017-01-20T00:00:00,2017,January,Friday,20,20,1,2017-01-22T00:00:00,2017,January,Sunday,22,22,14,D23,Toronto,4,Rexdale-Kipling (4),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,PHOENIX,MT,21,GRN,100.0,STOLEN,578,"{'type': 'Point', 'coordinates': (-79.57019557, 43.72655067)}"
-585,24562,GO-2017133899,THEFT UNDER - BICYCLE,2017-01-20T00:00:00,2017,January,Friday,20,20,1,2017-01-22T00:00:00,2017,January,Sunday,22,22,14,D23,Toronto,4,Rexdale-Kipling (4),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,KRANER,MT,24,GRY,1500.0,STOLEN,579,"{'type': 'Point', 'coordinates': (-79.57019557, 43.72655067)}"
-586,1009,GO-20171376524,ROBBERY - SWARMING,2017-07-31T00:00:00,2017,July,Monday,31,212,16,2017-07-31T00:00:00,2017,July,Monday,31,212,16,D23,Toronto,5,Elms-Old Rexdale (5),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,,BM,0,BLU,160.0,STOLEN,581,"{'type': 'Point', 'coordinates': (-79.55144777, 43.72044428)}"
-587,1010,GO-20171376524,ROBBERY - SWARMING,2017-07-31T00:00:00,2017,July,Monday,31,212,16,2017-07-31T00:00:00,2017,July,Monday,31,212,16,D23,Toronto,5,Elms-Old Rexdale (5),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DK,,BM,0,GRY,235.0,STOLEN,582,"{'type': 'Point', 'coordinates': (-79.55144777, 43.72044428)}"
-588,5234,GO-20191698561,THEFT UNDER - BICYCLE,2019-09-05T00:00:00,2019,September,Thursday,5,248,10,2019-09-05T00:00:00,2019,September,Thursday,5,248,10,D23,Toronto,5,Elms-Old Rexdale (5),"Apartment (Rooming House, Condo)",Apartment,NORTH ROCK,,MT,21,BLUGRN,300.0,STOLEN,583,"{'type': 'Point', 'coordinates': (-79.55204934, 43.7267404)}"
-589,8676,GO-20149006002,THEFT UNDER,2014-08-15T00:00:00,2014,August,Friday,15,227,7,2014-08-15T00:00:00,2014,August,Friday,15,227,20,D23,Toronto,5,Elms-Old Rexdale (5),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RM,RC-70,RC,18,WHI,1300.0,STOLEN,584,"{'type': 'Point', 'coordinates': (-79.55185276, 43.71290101)}"
-590,9533,GO-20159002488,THEFT UNDER,2015-05-05T00:00:00,2015,May,Tuesday,5,125,17,2015-05-06T00:00:00,2015,May,Wednesday,6,126,10,D23,Toronto,5,Elms-Old Rexdale (5),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,1,SIL,,STOLEN,585,"{'type': 'Point', 'coordinates': (-79.56071577, 43.72702867)}"
-591,9534,GO-20159002488,THEFT UNDER,2015-05-05T00:00:00,2015,May,Tuesday,5,125,17,2015-05-06T00:00:00,2015,May,Wednesday,6,126,10,D23,Toronto,5,Elms-Old Rexdale (5),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,24,BRN,600.0,STOLEN,586,"{'type': 'Point', 'coordinates': (-79.56071577, 43.72702867)}"
-592,10398,GO-20159006722,THEFT UNDER,2015-09-03T00:00:00,2015,September,Thursday,3,246,13,2015-09-03T00:00:00,2015,September,Thursday,3,246,15,D23,Toronto,5,Elms-Old Rexdale (5),Schools During Supervised Activity,Educational,HF,,BM,21,OTH,300.0,STOLEN,587,"{'type': 'Point', 'coordinates': (-79.54949818, 43.72765067)}"
-593,11531,GO-20161035976,THEFT UNDER - BICYCLE,2016-06-14T00:00:00,2016,June,Tuesday,14,166,11,2016-06-14T00:00:00,2016,June,Tuesday,14,166,14,D23,Toronto,5,Elms-Old Rexdale (5),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,ASCENT,RG,21,ONG,170.0,STOLEN,588,"{'type': 'Point', 'coordinates': (-79.552331, 43.71655082)}"
-594,11668,GO-20161143978,THEFT UNDER - BICYCLE,2016-06-30T00:00:00,2016,June,Thursday,30,182,12,2016-06-30T00:00:00,2016,June,Thursday,30,182,13,D23,Toronto,5,Elms-Old Rexdale (5),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,,MT,18,GRYRED,200.0,STOLEN,589,"{'type': 'Point', 'coordinates': (-79.55594469, 43.71694966)}"
-595,14770,GO-20189010760,THEFT UNDER,2018-04-06T00:00:00,2018,April,Friday,6,96,15,2018-04-06T00:00:00,2018,April,Friday,6,96,17,D23,Toronto,5,Elms-Old Rexdale (5),Schools During Supervised Activity,Educational,UK,,TR,1,RED,3000.0,STOLEN,590,"{'type': 'Point', 'coordinates': (-79.54981905, 43.7155753)}"
-596,14786,GO-20189015658,THEFT UNDER,2018-05-20T00:00:00,2018,May,Sunday,20,140,21,2018-05-21T00:00:00,2018,May,Monday,21,141,9,D23,Toronto,5,Elms-Old Rexdale (5),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MO,MOGOOSE,MT,6,YEL,550.0,STOLEN,591,"{'type': 'Point', 'coordinates': (-79.55331884, 43.71141318)}"
-597,14946,GO-2015784513,THEFT UNDER,2015-05-11T00:00:00,2015,May,Monday,11,131,10,2015-05-11T00:00:00,2015,May,Monday,11,131,11,D23,Toronto,5,Elms-Old Rexdale (5),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,UNKNOWN,OT,0,BLU,,STOLEN,592,"{'type': 'Point', 'coordinates': (-79.5494175, 43.71490487)}"
-598,17683,GO-2020103480,ROBBERY - SWARMING,2020-01-15T00:00:00,2020,January,Wednesday,15,15,20,2020-01-15T00:00:00,2020,January,Wednesday,15,15,20,D23,Toronto,5,Elms-Old Rexdale (5),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,110CC,OT,5,BLK,500.0,STOLEN,593,"{'type': 'Point', 'coordinates': (-79.55204934, 43.7267404)}"
-599,24142,GO-202043625,THEFT UNDER,2020-01-07T00:00:00,2020,January,Tuesday,7,7,13,2020-01-07T00:00:00,2020,January,Tuesday,7,7,13,D23,Toronto,5,Elms-Old Rexdale (5),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GO,140CC,OT,0,BLKGLD,850.0,STOLEN,594,"{'type': 'Point', 'coordinates': (-79.55204934, 43.7267404)}"
-600,451,GO-2017910483,THEFT OVER,2017-05-23T00:00:00,2017,May,Tuesday,23,143,17,2017-05-23T00:00:00,2017,May,Tuesday,23,143,18,D23,Toronto,6,Kingsview Village-The Westway (6),"Apartment (Rooming House, Condo)",Apartment,DAYMAC,C5,EL,1,BLK,9000.0,STOLEN,595,"{'type': 'Point', 'coordinates': (-79.5495297, 43.70328414)}"
-601,1310,GO-20171609681,THEFT UNDER - BICYCLE,2017-08-19T00:00:00,2017,August,Saturday,19,231,23,2017-09-05T00:00:00,2017,September,Tuesday,5,248,20,D23,Toronto,6,Kingsview Village-The Westway (6),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,,OT,1,SIL,,STOLEN,596,"{'type': 'Point', 'coordinates': (-79.55521943, 43.69262279)}"
-602,1311,GO-20171609681,THEFT UNDER - BICYCLE,2017-08-19T00:00:00,2017,August,Saturday,19,231,23,2017-09-05T00:00:00,2017,September,Tuesday,5,248,20,D23,Toronto,6,Kingsview Village-The Westway (6),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,KIDS,OT,1,BLU,,STOLEN,597,"{'type': 'Point', 'coordinates': (-79.55521943, 43.69262279)}"
-603,1312,GO-20171609681,THEFT UNDER - BICYCLE,2017-08-19T00:00:00,2017,August,Saturday,19,231,23,2017-09-05T00:00:00,2017,September,Tuesday,5,248,20,D23,Toronto,6,Kingsview Village-The Westway (6),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,,OT,1,ONGSIL,,STOLEN,598,"{'type': 'Point', 'coordinates': (-79.55521943, 43.69262279)}"
-604,2390,GO-20189016157,THEFT UNDER,2018-05-24T00:00:00,2018,May,Thursday,24,144,21,2018-05-25T00:00:00,2018,May,Friday,25,145,2,D23,Toronto,6,Kingsview Village-The Westway (6),"Apartment (Rooming House, Condo)",Apartment,GF,ROADBIKE,TO,24,GRY,0.0,STOLEN,599,"{'type': 'Point', 'coordinates': (-79.55861018, 43.69425151)}"
-605,3994,GO-201944401,THEFT OF EBIKE UNDER $5000,2018-12-24T00:00:00,2018,December,Monday,24,358,0,2019-01-08T00:00:00,2019,January,Tuesday,8,8,11,D23,Toronto,6,Kingsview Village-The Westway (6),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,MONSTER,EL,3,BLK,1800.0,STOLEN,600,"{'type': 'Point', 'coordinates': (-79.56425379, 43.69366763000001)}"
-606,4191,GO-20199012693,THEFT UNDER,2019-04-18T00:00:00,2019,April,Thursday,18,108,16,2019-04-22T00:00:00,2019,April,Monday,22,112,17,D23,Toronto,6,Kingsview Village-The Westway (6),"Apartment (Rooming House, Condo)",Apartment,UK,EVERYDAY,RG,3,WHI,400.0,STOLEN,601,"{'type': 'Point', 'coordinates': (-79.55211794, 43.69579839)}"
-607,6771,GO-20209018744,THEFT UNDER,2020-07-28T00:00:00,2020,July,Tuesday,28,210,12,2020-07-28T00:00:00,2020,July,Tuesday,28,210,16,D23,Toronto,6,Kingsview Village-The Westway (6),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,MT,24,SIL,0.0,STOLEN,602,"{'type': 'Point', 'coordinates': (-79.56269864, 43.69581683)}"
-608,6772,GO-20209018744,THEFT UNDER,2020-07-28T00:00:00,2020,July,Tuesday,28,210,12,2020-07-28T00:00:00,2020,July,Tuesday,28,210,16,D23,Toronto,6,Kingsview Village-The Westway (6),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,JS,MT,24,SIL,0.0,STOLEN,603,"{'type': 'Point', 'coordinates': (-79.56269864, 43.69581683)}"
-609,9623,GO-2015847772,ROBBERY - MUGGING,2015-05-21T00:00:00,2015,May,Thursday,21,141,15,2015-05-21T00:00:00,2015,May,Thursday,21,141,15,D12,Toronto,28,Rustic (28),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,RG,10,,,STOLEN,1140,"{'type': 'Point', 'coordinates': (-79.50026728, 43.70838437)}"
-610,9695,GO-2015913725,B&E,2015-05-31T00:00:00,2015,May,Sunday,31,151,22,2015-06-01T00:00:00,2015,June,Monday,1,152,6,D23,Toronto,6,Kingsview Village-The Westway (6),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCOTT,940,RC,18,BLK,4200.0,STOLEN,604,"{'type': 'Point', 'coordinates': (-79.54123302, 43.70166719)}"
-611,14335,GO-20209028790,THEFT UNDER,2020-11-05T00:00:00,2020,November,Thursday,5,310,20,2020-11-05T00:00:00,2020,November,Thursday,5,310,22,D23,Toronto,6,Kingsview Village-The Westway (6),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,MT,10,BLU,1000.0,STOLEN,605,"{'type': 'Point', 'coordinates': (-79.55305993, 43.68934714)}"
-612,14976,GO-20159007712,THEFT UNDER,2015-09-17T00:00:00,2015,September,Thursday,17,260,21,2015-09-24T00:00:00,2015,September,Thursday,24,267,17,D23,Toronto,6,Kingsview Village-The Westway (6),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,7,,200.0,STOLEN,606,"{'type': 'Point', 'coordinates': (-79.56033863, 43.69595627)}"
-613,17576,GO-20191019046,THEFT UNDER - BICYCLE,2019-05-31T00:00:00,2019,May,Friday,31,151,15,2019-06-05T00:00:00,2019,June,Wednesday,5,156,7,D23,Toronto,6,Kingsview Village-The Westway (6),"Apartment (Rooming House, Condo)",Apartment,RALEIGH,,MT,12,BLU,200.0,STOLEN,607,"{'type': 'Point', 'coordinates': (-79.56425379, 43.69366763000001)}"
-614,17647,GO-20191882205,THEFT UNDER,2019-09-30T00:00:00,2019,September,Monday,30,273,10,2019-09-30T00:00:00,2019,September,Monday,30,273,11,D23,Toronto,6,Kingsview Village-The Westway (6),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,,RC,24,GRN,2700.0,STOLEN,608,"{'type': 'Point', 'coordinates': (-79.5451222, 43.6974306)}"
-615,17972,GO-20151124890,B&E,2015-07-03T00:00:00,2015,July,Friday,3,184,22,2015-07-04T00:00:00,2015,July,Saturday,4,185,6,D23,Toronto,6,Kingsview Village-The Westway (6),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,MT,12,GRN,,STOLEN,609,"{'type': 'Point', 'coordinates': (-79.53653249, 43.6958243)}"
-616,17973,GO-20151124890,B&E,2015-07-03T00:00:00,2015,July,Friday,3,184,22,2015-07-04T00:00:00,2015,July,Saturday,4,185,6,D23,Toronto,6,Kingsview Village-The Westway (6),"Single Home, House (Attach Garage, Cottage, Mobile)",House,LOUIS GARNEAU,,MT,10,BLK,,STOLEN,610,"{'type': 'Point', 'coordinates': (-79.53653249, 43.6958243)}"
-617,17974,GO-20151124890,B&E,2015-07-03T00:00:00,2015,July,Friday,3,184,22,2015-07-04T00:00:00,2015,July,Saturday,4,185,6,D23,Toronto,6,Kingsview Village-The Westway (6),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,,MT,12,PNK,,STOLEN,611,"{'type': 'Point', 'coordinates': (-79.53653249, 43.6958243)}"
-618,17975,GO-20151124890,B&E,2015-07-03T00:00:00,2015,July,Friday,3,184,22,2015-07-04T00:00:00,2015,July,Saturday,4,185,6,D23,Toronto,6,Kingsview Village-The Westway (6),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,,MT,12,WHI,,STOLEN,612,"{'type': 'Point', 'coordinates': (-79.53653249, 43.6958243)}"
-619,18065,GO-20162084494,B&E,2016-11-24T00:00:00,2016,November,Thursday,24,329,5,2016-11-24T00:00:00,2016,November,Thursday,24,329,5,D23,Toronto,6,Kingsview Village-The Westway (6),"Apartment (Rooming House, Condo)",Apartment,OTHER,,OT,0,BLKBLU,300.0,STOLEN,613,"{'type': 'Point', 'coordinates': (-79.54863788, 43.70132673)}"
-620,21050,GO-20199027446,THEFT UNDER,2019-08-23T00:00:00,2019,August,Friday,23,235,14,2019-08-23T00:00:00,2019,August,Friday,23,235,18,D23,Toronto,6,Kingsview Village-The Westway (6),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,,RC,20,WHI,800.0,STOLEN,614,"{'type': 'Point', 'coordinates': (-79.55335023, 43.70130663)}"
-621,21265,GO-20189014515,THEFT UNDER - BICYCLE,2018-05-10T00:00:00,2018,May,Thursday,10,130,15,2018-05-10T00:00:00,2018,May,Thursday,10,130,23,D23,Toronto,6,Kingsview Village-The Westway (6),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,60,RED,150.0,STOLEN,615,"{'type': 'Point', 'coordinates': (-79.55861018, 43.69425151)}"
-622,21326,GO-20189025095,THEFT UNDER - BICYCLE,2018-08-03T00:00:00,2018,August,Friday,3,215,11,2018-08-04T00:00:00,2018,August,Saturday,4,216,13,D23,Toronto,6,Kingsview Village-The Westway (6),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MA,,MT,10,BLK,0.0,STOLEN,616,"{'type': 'Point', 'coordinates': (-79.53961767, 43.69826176)}"
-623,22130,GO-20161661882,THEFT UNDER - BICYCLE,2016-09-14T00:00:00,2016,September,Wednesday,14,258,14,2016-09-18T00:00:00,2016,September,Sunday,18,262,16,D23,Toronto,6,Kingsview Village-The Westway (6),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,TREK MT 60,MT,6,BLU,350.0,STOLEN,617,"{'type': 'Point', 'coordinates': (-79.55219337, 43.69873278)}"
-624,23813,GO-20209018744,THEFT UNDER,2020-07-28T00:00:00,2020,July,Tuesday,28,210,12,2020-07-28T00:00:00,2020,July,Tuesday,28,210,16,D23,Toronto,6,Kingsview Village-The Westway (6),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,MT,24,SIL,0.0,STOLEN,618,"{'type': 'Point', 'coordinates': (-79.56269864, 43.69581683)}"
-625,23814,GO-20209018744,THEFT UNDER,2020-07-28T00:00:00,2020,July,Tuesday,28,210,12,2020-07-28T00:00:00,2020,July,Tuesday,28,210,16,D23,Toronto,6,Kingsview Village-The Westway (6),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,JS,MT,24,SIL,0.0,STOLEN,619,"{'type': 'Point', 'coordinates': (-79.56269864, 43.69581683)}"
-626,24355,GO-20181427153,B&E,2018-08-03T00:00:00,2018,August,Friday,3,215,18,2018-08-04T00:00:00,2018,August,Saturday,4,216,5,D23,Toronto,6,Kingsview Village-The Westway (6),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,OT,0,RED,,STOLEN,620,"{'type': 'Point', 'coordinates': (-79.54757057, 43.68960456)}"
-627,24356,GO-20181427153,B&E,2018-08-03T00:00:00,2018,August,Friday,3,215,18,2018-08-04T00:00:00,2018,August,Saturday,4,216,5,D23,Toronto,6,Kingsview Village-The Westway (6),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,MT,0,BLK,,STOLEN,621,"{'type': 'Point', 'coordinates': (-79.54757057, 43.68960456)}"
-628,2110,GO-20189009602,THEFT UNDER,2018-03-26T00:00:00,2018,March,Monday,26,85,14,2018-03-26T00:00:00,2018,March,Monday,26,85,20,D23,Toronto,7,Willowridge-Martingrove-Richview (7),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,CROSSTRAIL,OT,21,BLK,1800.0,STOLEN,622,"{'type': 'Point', 'coordinates': (-79.54046384, 43.68319095)}"
-629,2751,GO-20189021159,THEFT UNDER - BICYCLE,2018-07-04T00:00:00,2018,July,Wednesday,4,185,16,2018-07-04T00:00:00,2018,July,Wednesday,4,185,21,D23,Toronto,7,Willowridge-Martingrove-Richview (7),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,TR,,MT,6,,800.0,STOLEN,623,"{'type': 'Point', 'coordinates': (-79.54046384, 43.68319095)}"
-630,4629,GO-20199020359,THEFT UNDER,2019-06-27T00:00:00,2019,June,Thursday,27,178,19,2019-06-27T00:00:00,2019,June,Thursday,27,178,20,D23,Toronto,7,Willowridge-Martingrove-Richview (7),Schools During Un-Supervised Activity,Educational,SU,SUPERCYCLE 21 S,MT,21,RED,0.0,STOLEN,624,"{'type': 'Point', 'coordinates': (-79.56134931000001, 43.68554799)}"
-631,4652,GO-20191226717,THEFT UNDER - BICYCLE,2019-07-02T00:00:00,2019,July,Tuesday,2,183,8,2019-07-02T00:00:00,2019,July,Tuesday,2,183,8,D23,Toronto,7,Willowridge-Martingrove-Richview (7),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KILIMINJARO,,MT,21,WHIGRY,500.0,STOLEN,625,"{'type': 'Point', 'coordinates': (-79.56482668, 43.68384812)}"
-632,6166,GO-20209012946,THEFT UNDER,2020-05-08T00:00:00,2020,May,Friday,8,129,1,2020-05-12T00:00:00,2020,May,Tuesday,12,133,10,D23,Toronto,7,Willowridge-Martingrove-Richview (7),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,UNKNOWN,TO,21,BLU,700.0,STOLEN,626,"{'type': 'Point', 'coordinates': (-79.5602126, 43.68307245)}"
-633,8523,GO-20142576420,THEFT UNDER,2014-06-21T00:00:00,2014,June,Saturday,21,172,13,2014-07-26T00:00:00,2014,July,Saturday,26,207,14,D23,Toronto,7,Willowridge-Martingrove-Richview (7),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,0,PLEGRN,,STOLEN,627,"{'type': 'Point', 'coordinates': (-79.57214637000001, 43.68134095)}"
-634,8524,GO-20142576420,THEFT UNDER,2014-06-21T00:00:00,2014,June,Saturday,21,172,13,2014-07-26T00:00:00,2014,July,Saturday,26,207,14,D23,Toronto,7,Willowridge-Martingrove-Richview (7),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,0,BLUBLK,,STOLEN,628,"{'type': 'Point', 'coordinates': (-79.57214637000001, 43.68134095)}"
-635,9291,GO-20159000764,THEFT UNDER,2015-02-13T00:00:00,2015,February,Friday,13,44,22,2015-02-14T00:00:00,2015,February,Saturday,14,45,11,D23,Toronto,7,Willowridge-Martingrove-Richview (7),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,EL,32,BLK,600.0,STOLEN,629,"{'type': 'Point', 'coordinates': (-79.56602855, 43.6808958)}"
-636,9292,GO-20159000764,THEFT UNDER,2015-02-13T00:00:00,2015,February,Friday,13,44,22,2015-02-14T00:00:00,2015,February,Saturday,14,45,11,D23,Toronto,7,Willowridge-Martingrove-Richview (7),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,MAYHEM,EL,32,BLK,1500.0,STOLEN,630,"{'type': 'Point', 'coordinates': (-79.56602855, 43.6808958)}"
-637,9558,GO-20159002565,THEFT UNDER,2015-05-08T00:00:00,2015,May,Friday,8,128,9,2015-05-08T00:00:00,2015,May,Friday,8,128,19,D23,Toronto,7,Willowridge-Martingrove-Richview (7),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,2010 YUKON,MT,18,GRY,850.0,STOLEN,631,"{'type': 'Point', 'coordinates': (-79.53081918, 43.69187145)}"
-638,9688,GO-2015905744,THEFT UNDER,2015-05-28T00:00:00,2015,May,Thursday,28,148,8,2015-05-30T00:00:00,2015,May,Saturday,30,150,18,D23,Toronto,7,Willowridge-Martingrove-Richview (7),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CANNONDALE,TRAIL,MT,5,WHI,620.0,STOLEN,632,"{'type': 'Point', 'coordinates': (-79.55422326, 43.67836082)}"
-639,9819,GO-20159003687,THEFT UNDER,2015-06-16T00:00:00,2015,June,Tuesday,16,167,20,2015-06-17T00:00:00,2015,June,Wednesday,17,168,10,D23,Toronto,7,Willowridge-Martingrove-Richview (7),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,AQUILA,MT,21,ONG,1000.0,STOLEN,633,"{'type': 'Point', 'coordinates': (-79.54247435, 43.68435048)}"
-640,10041,GO-20151221296,B&E,2015-07-16T00:00:00,2015,July,Thursday,16,197,12,2015-07-18T00:00:00,2015,July,Saturday,18,199,13,D23,Toronto,7,Willowridge-Martingrove-Richview (7),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,ROUBAIX,TO,5,BLKRED,2000.0,STOLEN,634,"{'type': 'Point', 'coordinates': (-79.55957728, 43.68878136)}"
-641,10763,GO-20151938355,THEFT UNDER,2015-11-10T00:00:00,2015,November,Tuesday,10,314,16,2015-11-11T00:00:00,2015,November,Wednesday,11,315,13,D23,Toronto,7,Willowridge-Martingrove-Richview (7),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,BLUE MONDAY,EL,1,RED,2257.0,STOLEN,635,"{'type': 'Point', 'coordinates': (-79.56602855, 43.6808958)}"
-642,10984,GO-2016245302,THEFT OVER,2016-01-30T00:00:00,2016,January,Saturday,30,30,10,2016-02-10T00:00:00,2016,February,Wednesday,10,41,15,D23,Toronto,7,Willowridge-Martingrove-Richview (7),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,750CC,OT,6,BLUWHI,12000.0,STOLEN,636,"{'type': 'Point', 'coordinates': (-79.56602855, 43.6808958)}"
-643,11860,GO-20161281649,THEFT UNDER - BICYCLE,2016-07-20T00:00:00,2016,July,Wednesday,20,202,16,2016-07-21T00:00:00,2016,July,Thursday,21,203,16,D23,Toronto,7,Willowridge-Martingrove-Richview (7),Schools During Un-Supervised Activity,Educational,UNKNOWN MAKE,,MT,7,BLU,200.0,STOLEN,637,"{'type': 'Point', 'coordinates': (-79.56134931000001, 43.68554799)}"
-644,14685,GO-20179011507,THEFT UNDER,2017-07-30T00:00:00,2017,July,Sunday,30,211,10,2017-08-02T00:00:00,2017,August,Wednesday,2,214,9,D23,Toronto,7,Willowridge-Martingrove-Richview (7),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,CAMPIONE DEL MO,RC,10,BLU,200.0,STOLEN,638,"{'type': 'Point', 'coordinates': (-79.5440883, 43.68680133)}"
-645,14316,GO-20209023084,THEFT UNDER,2020-09-11T00:00:00,2020,September,Friday,11,255,8,2020-09-12T00:00:00,2020,September,Saturday,12,256,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,CC,FFS SECTOR,MT,20,BLU,500.0,STOLEN,639,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-646,14449,GO-20189027991,THEFT UNDER - BICYCLE,2018-08-15T00:00:00,2018,August,Wednesday,15,227,6,2018-08-26T00:00:00,2018,August,Sunday,26,238,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,ALIGHT 2,MT,21,PLE,700.0,RECOVERED,640,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}"
-647,14455,GO-20181591718,THEFT UNDER - BICYCLE,2018-08-24T00:00:00,2018,August,Friday,24,236,16,2018-08-28T00:00:00,2018,August,Tuesday,28,240,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,NORCLE,,TA,28,RED,2800.0,STOLEN,641,"{'type': 'Point', 'coordinates': (-79.48760733, 43.62206923)}"
-648,14468,GO-20189034527,THEFT UNDER - BICYCLE,2018-10-18T00:00:00,2018,October,Thursday,18,291,7,2018-10-18T00:00:00,2018,October,Thursday,18,291,9,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RM,SOUL 700,MT,11,ONG,649.0,STOLEN,642,"{'type': 'Point', 'coordinates': (-79.49219650000002, 43.60815438)}"
-649,14472,GO-20189036355,THEFT UNDER - BICYCLE,2018-10-29T00:00:00,2018,October,Monday,29,302,23,2018-10-31T00:00:00,2018,October,Wednesday,31,304,9,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,CROSSCHECK,TO,18,ONG,2000.0,STOLEN,643,"{'type': 'Point', 'coordinates': (-79.49759779, 43.61432512)}"
-650,14503,GO-20199010986,THEFT UNDER,2019-03-15T00:00:00,2019,March,Friday,15,74,16,2019-04-07T00:00:00,2019,April,Sunday,7,97,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,SQUARE TREKKING,OT,27,BLK,1400.0,STOLEN,644,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}"
-651,14513,GO-20199015310,THEFT UNDER,2019-05-16T00:00:00,2019,May,Thursday,16,136,17,2019-05-16T00:00:00,2019,May,Thursday,16,136,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,OSLO 17,RG,10,SIL,1000.0,STOLEN,645,"{'type': 'Point', 'coordinates': (-79.47706999, 43.62578178)}"
-652,14515,GO-20199016905,THEFT UNDER,2019-05-25T00:00:00,2019,May,Saturday,25,145,14,2019-05-30T00:00:00,2019,May,Thursday,30,150,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,MA,FAIRFAX XS,RG,21,BLK,600.0,STOLEN,646,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}"
-653,14519,GO-20191076436,THEFT UNDER - BICYCLE,2019-05-21T00:00:00,2019,May,Tuesday,21,141,14,2019-06-11T00:00:00,2019,June,Tuesday,11,162,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,SCOTT,,MT,21,SIL,3000.0,STOLEN,647,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}"
-654,14537,GO-20191266154,THEFT OF EBIKE UNDER $5000,2019-07-05T00:00:00,2019,July,Friday,5,186,9,2019-07-07T00:00:00,2019,July,Sunday,7,188,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EM,CHAMELEON,EL,32,RED,950.0,STOLEN,648,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-655,14540,GO-20191317029,B&E,2019-06-15T00:00:00,2019,June,Saturday,15,166,0,2019-07-14T00:00:00,2019,July,Sunday,14,195,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,NORCO,CHARG,MT,18,BLU,1061.0,STOLEN,649,"{'type': 'Point', 'coordinates': (-79.47864061, 43.6248261)}"
-656,4589,GO-20199019885,THEFT UNDER,2019-06-24T00:00:00,2019,June,Monday,24,175,12,2019-06-24T00:00:00,2019,June,Monday,24,175,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,DB,SORRENTO,MT,21,WHI,400.0,STOLEN,650,"{'type': 'Point', 'coordinates': (-79.48497603, 43.62140475)}"
-657,14541,GO-20191317029,B&E,2019-06-15T00:00:00,2019,June,Saturday,15,166,0,2019-07-14T00:00:00,2019,July,Sunday,14,195,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GIANT,TRANCE XXL,MT,18,YEL,3275.0,STOLEN,651,"{'type': 'Point', 'coordinates': (-79.47864061, 43.6248261)}"
-658,14552,GO-20191412877,THEFT UNDER,2017-06-06T00:00:00,2017,June,Tuesday,6,157,18,2019-07-27T00:00:00,2019,July,Saturday,27,208,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KHS,ALITE 500,MT,12,RED,700.0,STOLEN,652,"{'type': 'Point', 'coordinates': (-79.49048793, 43.60697506)}"
-659,14564,GO-20199027343,THEFT UNDER,2019-08-22T00:00:00,2019,August,Thursday,22,234,21,2019-08-23T00:00:00,2019,August,Friday,23,235,9,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,BEASLEY 27.5,MT,8,BLK,700.0,STOLEN,653,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}"
-660,14568,GO-20191629527,THEFT UNDER,2019-08-12T00:00:00,2019,August,Monday,12,224,17,2019-08-26T00:00:00,2019,August,Monday,26,238,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,MOTORINA,XPN,EL,1,BLK,4000.0,STOLEN,654,"{'type': 'Point', 'coordinates': (-79.49002234, 43.61094466)}"
-661,14607,GO-20199041402,THEFT UNDER,2019-12-16T00:00:00,2019,December,Monday,16,350,12,2019-12-18T00:00:00,2019,December,Wednesday,18,352,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,15,BLK,1000.0,STOLEN,655,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-662,14632,GO-20209012517,THEFT UNDER,2020-05-04T00:00:00,2020,May,Monday,4,125,19,2020-05-05T00:00:00,2020,May,Tuesday,5,126,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE 0,OT,21,BLK,900.0,STOLEN,656,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-663,14641,GO-20209013926,THEFT UNDER,2020-05-15T00:00:00,2020,May,Friday,15,136,11,2020-05-26T00:00:00,2020,May,Tuesday,26,147,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,TR,2014,RG,6,SIL,500.0,STOLEN,657,"{'type': 'Point', 'coordinates': (-79.47893413, 43.62369402)}"
-664,14642,GO-20209013926,THEFT UNDER,2020-05-15T00:00:00,2020,May,Friday,15,136,11,2020-05-26T00:00:00,2020,May,Tuesday,26,147,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,TR,2014,RG,6,SIL,500.0,STOLEN,658,"{'type': 'Point', 'coordinates': (-79.47893413, 43.62369402)}"
-665,14652,GO-20179007145,THEFT UNDER,2017-05-26T00:00:00,2017,May,Friday,26,146,20,2017-05-29T00:00:00,2017,May,Monday,29,149,0,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RM,FUSION,MT,24,BLK,1200.0,STOLEN,659,"{'type': 'Point', 'coordinates': (-79.49671284, 43.61223676)}"
-666,14661,GO-20179009132,THEFT UNDER - BICYCLE,2017-06-27T00:00:00,2017,June,Tuesday,27,178,20,2017-06-28T00:00:00,2017,June,Wednesday,28,179,21,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,X TRAIL 2,MT,6,SIL,350.0,STOLEN,660,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}"
-667,14662,GO-20179009132,THEFT UNDER - BICYCLE,2017-06-27T00:00:00,2017,June,Tuesday,27,178,20,2017-06-28T00:00:00,2017,June,Wednesday,28,179,21,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,CROSS MOUNTAINT,MT,5,RED,175.0,STOLEN,661,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}"
-668,14683,GO-20179011213,THEFT UNDER,2017-07-01T00:00:00,2017,July,Saturday,1,182,10,2017-07-28T00:00:00,2017,July,Friday,28,209,10,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,NO,RIDEAU,RG,16,BLU,650.0,STOLEN,662,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}"
-669,14696,GO-20171513428,THEFT UNDER - BICYCLE,2017-08-21T00:00:00,2017,August,Monday,21,233,8,2017-08-21T00:00:00,2017,August,Monday,21,233,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,CATALYST,CANNONDALE,MT,8,BLK,735.0,STOLEN,663,"{'type': 'Point', 'coordinates': (-79.52459038, 43.61587446)}"
-670,14726,GO-20179015689,THEFT UNDER - BICYCLE,2017-09-23T00:00:00,2017,September,Saturday,23,266,12,2017-09-25T00:00:00,2017,September,Monday,25,268,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,CCM 700,RG,21,LBL,300.0,STOLEN,664,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-671,14756,GO-20189002512,THEFT UNDER,2018-01-25T00:00:00,2018,January,Thursday,25,25,18,2018-01-26T00:00:00,2018,January,Friday,26,26,7,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,SPEC SECTEUR,RC,8,BLK,1009.0,STOLEN,665,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-672,14784,GO-20189015314,THEFT UNDER - BICYCLE,2018-05-15T00:00:00,2018,May,Tuesday,15,135,18,2018-05-17T00:00:00,2018,May,Thursday,17,137,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,MONDIAL,MT,21,BRZ,300.0,STOLEN,666,"{'type': 'Point', 'coordinates': (-79.47864061, 43.6248261)}"
-673,14819,GO-20189022111,THEFT UNDER - BICYCLE,2018-07-08T00:00:00,2018,July,Sunday,8,189,16,2018-07-11T00:00:00,2018,July,Wednesday,11,192,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,VFR5,RG,24,BLK,850.0,STOLEN,667,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}"
-674,14820,GO-20189022313,THEFT UNDER - BICYCLE,2018-07-05T00:00:00,2018,July,Thursday,5,186,15,2018-07-13T00:00:00,2018,July,Friday,13,194,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,S2,RC,21,BLK,0.0,STOLEN,668,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-675,14827,GO-20189023991,THEFT UNDER - BICYCLE,2018-07-25T00:00:00,2018,July,Wednesday,25,206,7,2018-07-26T00:00:00,2018,July,Thursday,26,207,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,X-CALIBUR 7,MT,21,RED,1700.0,STOLEN,669,"{'type': 'Point', 'coordinates': (-79.47564953, 43.62924438)}"
-676,14835,GO-20181496437,THEFT UNDER - BICYCLE,2018-08-05T00:00:00,2018,August,Sunday,5,217,17,2018-08-14T00:00:00,2018,August,Tuesday,14,226,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,KONA,JAKE,RG,18,SIL,2000.0,STOLEN,670,"{'type': 'Point', 'coordinates': (-79.48497603, 43.62140475)}"
-677,8559,GO-20149005494,THEFT UNDER,2014-07-30T00:00:00,2014,July,Wednesday,30,211,14,2014-07-30T00:00:00,2014,July,Wednesday,30,211,21,D32,Toronto,33,Clanton Park (33),Ttc Subway Station,Transit,NO,,RG,21,GRY,500.0,STOLEN,2925,"{'type': 'Point', 'coordinates': (-79.44777591, 43.7355903)}"
-678,14845,GO-20189027355,THEFT UNDER - BICYCLE,2018-08-18T00:00:00,2018,August,Saturday,18,230,13,2018-08-21T00:00:00,2018,August,Tuesday,21,233,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,CC,,MT,8,WHI,200.0,STOLEN,671,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}"
-679,24330,GO-20189021352,THEFT UNDER - BICYCLE,2018-07-05T00:00:00,2018,July,Thursday,5,186,9,2018-07-05T00:00:00,2018,July,Thursday,5,186,20,D22,Toronto,11,Eringate-Centennial-West Deane (11),Schools During Un-Supervised Activity,Educational,OT,,MT,1,BLU,1000.0,STOLEN,672,"{'type': 'Point', 'coordinates': (-79.58177943, 43.65660374)}"
-680,8921,GO-20142908567,POSSESSION PROPERTY OBC UNDER,2014-09-14T00:00:00,2014,September,Sunday,14,257,14,2014-09-14T00:00:00,2014,September,Sunday,14,257,14,D23,Toronto,8,Humber Heights-Westmount (8),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUPERCYCLE,,MT,18,WHI,,STOLEN,673,"{'type': 'Point', 'coordinates': (-79.52593094, 43.70050771)}"
-681,14921,GO-20149004229,THEFT UNDER,2014-06-18T00:00:00,2014,June,Wednesday,18,169,21,2014-06-19T00:00:00,2014,June,Thursday,19,170,9,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,3,DGR,700.0,STOLEN,674,"{'type': 'Point', 'coordinates': (-79.50169375, 43.61784827)}"
-682,14929,GO-20149006262,THEFT UNDER,2014-08-23T00:00:00,2014,August,Saturday,23,235,23,2014-08-25T00:00:00,2014,August,Monday,25,237,0,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,,MT,40,RED,1000.0,STOLEN,675,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}"
-683,14966,GO-20159004618,THEFT UNDER,2015-06-26T00:00:00,2015,June,Friday,26,177,15,2015-07-16T00:00:00,2015,July,Thursday,16,197,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,FCR 3,OT,24,BLK,600.0,STOLEN,676,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}"
-684,14968,GO-20151340272,THEFT UNDER,2015-08-05T00:00:00,2015,August,Wednesday,5,217,11,2015-08-05T00:00:00,2015,August,Wednesday,5,217,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,KENT,DUAL DRIVE,TA,21,SIL,,STOLEN,677,"{'type': 'Point', 'coordinates': (-79.49288386, 43.60307309)}"
-685,16167,GO-20179011734,THEFT UNDER - BICYCLE,2017-08-04T00:00:00,2017,August,Friday,4,216,0,2017-08-05T00:00:00,2017,August,Saturday,5,217,11,D52,Toronto,17,Mimico (includes Humber Bay Shores) (17),Universities / Colleges,Educational,OT,UMBRIA II,RG,21,WHI,400.0,STOLEN,685,"{'type': 'Point', 'coordinates': (-79.50489559, 43.616265)}"
-686,14991,GO-20169003147,THEFT UNDER - BICYCLE,2016-03-28T00:00:00,2016,March,Monday,28,88,19,2016-04-07T00:00:00,2016,April,Thursday,7,98,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,FJ,MOUNTAIN/STRT H,MT,8,WHI,500.0,STOLEN,678,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}"
-687,14992,GO-2016710981,THEFT UNDER - BICYCLE,2016-04-21T00:00:00,2016,April,Thursday,21,112,21,2016-04-26T00:00:00,2016,April,Tuesday,26,117,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,ORYX,EQUIPE 3000,MT,21,BLU,1500.0,STOLEN,679,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}"
-688,15021,GO-20161452964,THEFT UNDER - BICYCLE,2016-08-16T00:00:00,2016,August,Tuesday,16,229,17,2016-08-17T00:00:00,2016,August,Wednesday,17,230,9,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,FELT,980,MT,24,BLK,1200.0,STOLEN,680,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-689,15036,GO-20169013768,THEFT UNDER,2016-11-19T00:00:00,2016,November,Saturday,19,324,1,2016-11-23T00:00:00,2016,November,Wednesday,23,328,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RM,,MT,21,BLK,1378.0,STOLEN,681,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}"
-690,15037,GO-20179000147,THEFT UNDER - BICYCLE,2016-12-31T00:00:00,2016,December,Saturday,31,366,12,2017-01-04T00:00:00,2017,January,Wednesday,4,4,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,SPEEDSTER,RC,10,BLK,2000.0,STOLEN,682,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}"
-691,15044,GO-20179005120,THEFT UNDER,2017-04-21T00:00:00,2017,April,Friday,21,111,17,2017-04-21T00:00:00,2017,April,Friday,21,111,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Go Station,Transit,GI,ROVE 2,RG,21,WHI,745.0,RECOVERED,683,"{'type': 'Point', 'coordinates': (-79.49225729, 43.61408185)}"
-692,15046,GO-2017794399,THEFT UNDER - BICYCLE,2017-05-05T00:00:00,2017,May,Friday,5,125,9,2017-05-06T00:00:00,2017,May,Saturday,6,126,19,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,PURE CYCLES,INDIA,RC,1,WHIGLD,1000.0,STOLEN,684,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}"
-693,17943,GO-20149006149,THEFT UNDER,2014-08-20T00:00:00,2014,August,Wednesday,20,232,20,2014-08-20T00:00:00,2014,August,Wednesday,20,232,20,D22,Toronto,12,Markland Wood (12),Unknown,Other,UK,,OT,27,BLU,450.0,STOLEN,772,"{'type': 'Point', 'coordinates': (-79.57102443, 43.63413038)}"
-694,17321,GO-20209012521,THEFT UNDER,2020-04-01T00:00:00,2020,April,Wednesday,1,92,17,2020-05-05T00:00:00,2020,May,Tuesday,5,126,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GT,AGGRESSOR,MT,21,WHI,650.0,STOLEN,686,"{'type': 'Point', 'coordinates': (-79.48643252, 43.61892859)}"
-695,17336,GO-20209015350,THEFT UNDER,2020-06-12T00:00:00,2020,June,Friday,12,164,13,2020-06-14T00:00:00,2020,June,Sunday,14,166,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,VERSA SPEED 20,OT,40,BLK,1500.0,STOLEN,687,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}"
-696,17337,GO-20209015350,THEFT UNDER,2020-06-12T00:00:00,2020,June,Friday,12,164,13,2020-06-14T00:00:00,2020,June,Sunday,14,166,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,VERSA SPEED 40,OT,40,GRY,950.0,STOLEN,688,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}"
-697,17348,GO-20209016571,THEFT UNDER,2020-06-29T00:00:00,2020,June,Monday,29,181,0,2020-06-30T00:00:00,2020,June,Tuesday,30,182,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CC,KROSSPORT,RG,21,BLK,499.0,STOLEN,689,"{'type': 'Point', 'coordinates': (-79.50131553, 43.61697253)}"
-698,17373,GO-20209020162,THEFT UNDER,2020-08-13T00:00:00,2020,August,Thursday,13,226,1,2020-08-14T00:00:00,2020,August,Friday,14,227,10,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Unknown,Other,OT,P10322 (LEFT WH,RG,3,,0.0,STOLEN,690,"{'type': 'Point', 'coordinates': (-79.49747065, 43.61783569)}"
-699,17398,GO-20209025606,THEFT UNDER,2020-10-06T00:00:00,2020,October,Tuesday,6,280,16,2020-10-06T00:00:00,2020,October,Tuesday,6,280,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,TARMAC SL6,TO,1,GRY,3500.0,STOLEN,691,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-700,17416,GO-20209031720,THEFT UNDER,2020-12-10T00:00:00,2020,December,Thursday,10,345,11,2020-12-10T00:00:00,2020,December,Thursday,10,345,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,,MT,18,BLK,250.0,STOLEN,692,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-701,17517,GO-20189033687,THEFT OF EBIKE UNDER $5000,2018-10-07T00:00:00,2018,October,Sunday,7,280,20,2018-10-11T00:00:00,2018,October,Thursday,11,284,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Bar / Restaurant,Commercial,UK,XPD,EL,40,BLK,2500.0,STOLEN,693,"{'type': 'Point', 'coordinates': (-79.49844502, 43.61760285)}"
-702,17523,GO-20181944589,THEFT UNDER,2018-10-21T00:00:00,2018,October,Sunday,21,294,16,2018-10-22T00:00:00,2018,October,Monday,22,295,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,RG,1,WHI,300.0,STOLEN,694,"{'type': 'Point', 'coordinates': (-79.49507822, 43.60837507)}"
-703,17536,GO-20189042087,THEFT UNDER - BICYCLE,2018-12-10T00:00:00,2018,December,Monday,10,344,19,2018-12-14T00:00:00,2018,December,Friday,14,348,19,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,CA,2018 QUICK 3 DI,OT,21,GRY,1000.0,STOLEN,695,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-704,17564,GO-20199015313,THEFT UNDER,2019-05-15T00:00:00,2019,May,Wednesday,15,135,12,2019-05-16T00:00:00,2019,May,Thursday,16,136,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,ALLEZ SPORT COM,RC,20,WHI,2000.0,STOLEN,696,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-705,17567,GO-2019926192,THEFT UNDER - BICYCLE,2019-05-10T00:00:00,2019,May,Friday,10,130,0,2019-05-22T00:00:00,2019,May,Wednesday,22,142,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,SCHWINN,GT,OT,6,BLKPNK,700.0,STOLEN,697,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-706,17581,GO-20191127062,B&E W'INTENT,2019-06-14T00:00:00,2019,June,Friday,14,165,0,2019-06-18T00:00:00,2019,June,Tuesday,18,169,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,RUBY COMPOSITE,OT,27,BLKWHI,4969.0,STOLEN,698,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}"
-707,17582,GO-20191127062,B&E W'INTENT,2019-06-14T00:00:00,2019,June,Friday,14,165,0,2019-06-18T00:00:00,2019,June,Tuesday,18,169,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,TREK,MADONE,OT,27,BLUWHI,5499.0,STOLEN,699,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}"
-708,17600,GO-20191351004,THEFT UNDER,2019-07-18T00:00:00,2019,July,Thursday,18,199,19,2019-07-18T00:00:00,2019,July,Thursday,18,199,22,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,AKUNA 1.1,RC,10,WHI,,STOLEN,700,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}"
-709,17601,GO-20191351004,THEFT UNDER,2019-07-18T00:00:00,2019,July,Thursday,18,199,19,2019-07-18T00:00:00,2019,July,Thursday,18,199,22,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GI,LIV ALIGHT,MT,24,WHI,,STOLEN,701,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}"
-710,17608,GO-20191377870,B&E,2019-07-10T00:00:00,2019,July,Wednesday,10,191,9,2019-07-22T00:00:00,2019,July,Monday,22,203,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,TRANSEO,GT,OT,28,BLK,650.0,STOLEN,702,"{'type': 'Point', 'coordinates': (-79.48688069, 43.61810501000001)}"
-711,17615,GO-20199024415,THEFT UNDER,2019-07-30T00:00:00,2019,July,Tuesday,30,211,15,2019-07-30T00:00:00,2019,July,Tuesday,30,211,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Unknown,Other,OT,702,RG,21,BLK,652.0,STOLEN,703,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}"
-712,17616,GO-20199024632,B&E,2019-07-23T00:00:00,2019,July,Tuesday,23,204,13,2019-08-01T00:00:00,2019,August,Thursday,1,213,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,,,RG,10,GRY,400.0,STOLEN,704,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}"
-713,17619,GO-20199024977,THEFT UNDER,2019-08-03T00:00:00,2019,August,Saturday,3,215,14,2019-08-05T00:00:00,2019,August,Monday,5,217,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,MO,LEDGE 2.1,MT,21,SIL,250.0,STOLEN,705,"{'type': 'Point', 'coordinates': (-79.47706999, 43.62578178)}"
-714,17622,GO-20191541271,B&E,2019-08-12T00:00:00,2019,August,Monday,12,224,15,2019-08-14T00:00:00,2019,August,Wednesday,14,226,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,RC,18,,,STOLEN,706,"{'type': 'Point', 'coordinates': (-79.47550213, 43.63126324)}"
-715,17623,GO-20191541271,B&E,2019-08-12T00:00:00,2019,August,Monday,12,224,15,2019-08-14T00:00:00,2019,August,Wednesday,14,226,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,MT,18,,,STOLEN,707,"{'type': 'Point', 'coordinates': (-79.47550213, 43.63126324)}"
-716,17639,GO-20199030290,THEFT UNDER,2019-09-16T00:00:00,2019,September,Monday,16,259,13,2019-09-16T00:00:00,2019,September,Monday,16,259,21,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,BLK,400.0,STOLEN,708,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-717,17660,GO-20192049657,THEFT UNDER - BICYCLE,2019-10-23T00:00:00,2019,October,Wednesday,23,296,20,2019-10-23T00:00:00,2019,October,Wednesday,23,296,21,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,ZZZ,,RG,1,BLK,600.0,STOLEN,709,"{'type': 'Point', 'coordinates': (-79.48819449, 43.61573777)}"
-718,17688,GO-20209006745,B&E,2020-02-12T00:00:00,2020,February,Wednesday,12,43,16,2020-02-24T00:00:00,2020,February,Monday,24,55,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GT,AGGRESSOR,MT,24,BLU,400.0,STOLEN,710,"{'type': 'Point', 'coordinates': (-79.48480515, 43.62040835)}"
-719,17715,GO-20179013079,THEFT UNDER - BICYCLE,2017-08-22T00:00:00,2017,August,Tuesday,22,234,8,2017-08-22T00:00:00,2017,August,Tuesday,22,234,19,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,,MT,24,GRY,1000.0,STOLEN,711,"{'type': 'Point', 'coordinates': (-79.48799361, 43.61936533)}"
-720,17755,GO-20179018811,THEFT UNDER - BICYCLE,2017-11-03T00:00:00,2017,November,Friday,3,307,14,2017-11-03T00:00:00,2017,November,Friday,3,307,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,,MT,21,PLE,1000.0,STOLEN,712,"{'type': 'Point', 'coordinates': (-79.48731142, 43.61728142)}"
-721,17769,GO-20179020593,THEFT UNDER - BICYCLE,2017-11-25T00:00:00,2017,November,Saturday,25,329,19,2017-11-26T00:00:00,2017,November,Sunday,26,330,19,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,OPUS,RC,18,WHI,1500.0,STOLEN,713,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-722,17770,GO-20179020593,THEFT UNDER - BICYCLE,2017-11-25T00:00:00,2017,November,Saturday,25,329,19,2017-11-26T00:00:00,2017,November,Sunday,26,330,19,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,BRODIE,REMUS,RG,1,LGR,700.0,RECOVERED,714,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-723,17787,GO-20189002871,THEFT UNDER - BICYCLE,2018-01-19T00:00:00,2018,January,Friday,19,19,12,2018-01-29T00:00:00,2018,January,Monday,29,29,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,CA,,MT,27,BLK,900.0,STOLEN,715,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-724,17798,GO-20189012326,THEFT UNDER - BICYCLE,2018-04-21T00:00:00,2018,April,Saturday,21,111,8,2018-04-21T00:00:00,2018,April,Saturday,21,111,9,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,99,BLU,3000.0,STOLEN,716,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-725,17811,GO-20189015183,THEFT UNDER - BICYCLE,2018-05-10T00:00:00,2018,May,Thursday,10,130,9,2018-05-16T00:00:00,2018,May,Wednesday,16,136,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,24,GRY,1300.0,STOLEN,717,"{'type': 'Point', 'coordinates': (-79.48760733, 43.62206923)}"
-726,17812,GO-20189015183,THEFT UNDER - BICYCLE,2018-05-10T00:00:00,2018,May,Thursday,10,130,9,2018-05-16T00:00:00,2018,May,Wednesday,16,136,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,24,WHI,1200.0,STOLEN,718,"{'type': 'Point', 'coordinates': (-79.48760733, 43.62206923)}"
-727,17814,GO-20189016323,THEFT UNDER - BICYCLE,2018-05-24T00:00:00,2018,May,Thursday,24,144,1,2018-05-26T00:00:00,2018,May,Saturday,26,146,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,CA,,RG,21,BLK,860.0,STOLEN,719,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}"
-728,17818,GO-2018961372,THEFT UNDER - BICYCLE,2018-05-24T00:00:00,2018,May,Thursday,24,144,3,2018-05-28T00:00:00,2018,May,Monday,28,148,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,FUJI,,MT,18,RED,1000.0,STOLEN,720,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}"
-729,17853,GO-20189021967,THEFT UNDER - BICYCLE,2018-06-01T00:00:00,2018,June,Friday,1,152,21,2018-07-10T00:00:00,2018,July,Tuesday,10,191,21,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,CYPRESS,RG,7,GRY,700.0,STOLEN,721,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-730,17859,GO-20189023380,THEFT UNDER - BICYCLE,2018-07-06T00:00:00,2018,July,Friday,6,187,0,2018-07-22T00:00:00,2018,July,Sunday,22,203,2,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,MODINA,MT,21,SIL,420.0,STOLEN,722,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-731,17860,GO-20189023474,THEFT UNDER - BICYCLE,2018-07-20T00:00:00,2018,July,Friday,20,201,1,2018-07-22T00:00:00,2018,July,Sunday,22,203,23,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,ESCAPE,OT,65,GRY,650.0,STOLEN,723,"{'type': 'Point', 'coordinates': (-79.48760733, 43.62206923)}"
-732,17863,GO-20189023952,THEFT UNDER - BICYCLE,2018-07-24T00:00:00,2018,July,Tuesday,24,205,12,2018-07-25T00:00:00,2018,July,Wednesday,25,206,22,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,CA,CAAD8,RG,16,BLK,900.0,RECOVERED,724,"{'type': 'Point', 'coordinates': (-79.47564953, 43.62924438)}"
-733,6043,GO-20209010793,THEFT UNDER,2020-04-09T00:00:00,2020,April,Thursday,9,100,14,2020-04-09T00:00:00,2020,April,Thursday,9,100,16,D54,Toronto,58,Old East York (58),Unknown,Other,GI,LIVALIGHT 2,RG,9,BLK,800.0,STOLEN,3022,"{'type': 'Point', 'coordinates': (-79.32874138, 43.69594155)}"
-734,17874,GO-20189025091,THEFT UNDER - BICYCLE,2018-07-06T00:00:00,2018,July,Friday,6,187,1,2018-08-04T00:00:00,2018,August,Saturday,4,216,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,CCM VECTOR MEN',OT,21,,500.0,STOLEN,725,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-735,17876,GO-20189025126,THEFT UNDER - BICYCLE,2018-07-06T00:00:00,2018,July,Friday,6,187,1,2018-08-04T00:00:00,2018,August,Saturday,4,216,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,CCM VECTOR MEN',OT,21,BLU,500.0,STOLEN,726,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-736,17896,GO-20181622454,THEFT UNDER - BICYCLE,2018-09-01T00:00:00,2018,September,Saturday,1,244,22,2018-09-02T00:00:00,2018,September,Sunday,2,245,0,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Bar / Restaurant,Commercial,EMMO,,EL,3,RED,900.0,STOLEN,727,"{'type': 'Point', 'coordinates': (-79.49312873, 43.60365221)}"
-737,17910,GO-20189031659,THEFT UNDER - BICYCLE,2018-09-16T00:00:00,2018,September,Sunday,16,259,22,2018-09-23T00:00:00,2018,September,Sunday,23,266,22,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,MODENA,RG,21,BLK,250.0,STOLEN,728,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}"
-738,17911,GO-20189031659,THEFT UNDER - BICYCLE,2018-09-16T00:00:00,2018,September,Sunday,16,259,22,2018-09-23T00:00:00,2018,September,Sunday,23,266,22,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,MODENA,RG,21,WHI,250.0,STOLEN,729,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}"
-739,17914,GO-20141933079,THEFT UNDER,2014-04-21T00:00:00,2014,April,Monday,21,111,2,2014-04-21T00:00:00,2014,April,Monday,21,111,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,RG,10,,10.0,STOLEN,730,"{'type': 'Point', 'coordinates': (-79.49131679, 43.62006774)}"
-740,24436,GO-20149006813,THEFT UNDER,2014-09-09T00:00:00,2014,September,Tuesday,9,252,22,2014-09-11T00:00:00,2014,September,Thursday,11,254,20,D22,Toronto,11,Eringate-Centennial-West Deane (11),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,OT,1,BLU,300.0,STOLEN,731,"{'type': 'Point', 'coordinates': (-79.57784128, 43.66660289000001)}"
-741,11741,GO-20169006865,THEFT UNDER,2016-07-06T00:00:00,2016,July,Wednesday,6,188,22,2016-07-06T00:00:00,2016,July,Wednesday,6,188,22,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,SC,,MT,21,WHI,300.0,STOLEN,3111,"{'type': 'Point', 'coordinates': (-79.40399933, 43.75860698)}"
-742,660,GO-20179008512,THEFT UNDER,2017-06-11T00:00:00,2017,June,Sunday,11,162,3,2017-06-20T00:00:00,2017,June,Tuesday,20,171,17,D22,Toronto,12,Markland Wood (12),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE 1 W-2011,OT,24,GRY,600.0,STOLEN,732,"{'type': 'Point', 'coordinates': (-79.56344867, 43.63003984)}"
-743,2994,GO-20181295174,B&E,2018-07-12T00:00:00,2018,July,Thursday,12,193,18,2018-07-16T00:00:00,2018,July,Monday,16,197,15,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CERVELO,S1,RC,14,BLK,1500.0,STOLEN,733,"{'type': 'Point', 'coordinates': (-79.58270513, 43.6324168)}"
-744,3050,GO-20181412960,THEFT UNDER - BICYCLE,2018-07-26T00:00:00,2018,July,Thursday,26,207,23,2018-08-02T00:00:00,2018,August,Thursday,2,214,8,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,K2,K2,MT,18,LGR,100.0,STOLEN,734,"{'type': 'Point', 'coordinates': (-79.56790146, 43.63609067)}"
-745,3059,GO-20189024884,THEFT UNDER - BICYCLE,2018-08-01T00:00:00,2018,August,Wednesday,1,213,7,2018-08-02T00:00:00,2018,August,Thursday,2,214,15,D22,Toronto,12,Markland Wood (12),"Apartment (Rooming House, Condo)",Apartment,OT,STOCKHOLM,OT,24,BLK,0.0,STOLEN,735,"{'type': 'Point', 'coordinates': (-79.58195984, 43.64065071)}"
-746,3064,GO-20189024976,THEFT UNDER - BICYCLE,2018-08-01T00:00:00,2018,August,Wednesday,1,213,7,2018-08-03T00:00:00,2018,August,Friday,3,215,10,D22,Toronto,12,Markland Wood (12),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,STOCKHOLM,TO,25,BLK,1100.0,STOLEN,736,"{'type': 'Point', 'coordinates': (-79.58195984, 43.64065071)}"
-747,4018,GO-2019147288,B&E,2019-01-24T00:00:00,2019,January,Thursday,24,24,2,2019-01-24T00:00:00,2019,January,Thursday,24,24,8,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,AVALANCHE SPORT,MT,27,BLUSIL,615.0,STOLEN,737,"{'type': 'Point', 'coordinates': (-79.57758762, 43.63659281)}"
-748,4504,GO-20199018791,THEFT UNDER,2019-06-12T00:00:00,2019,June,Wednesday,12,163,16,2019-06-15T00:00:00,2019,June,Saturday,15,166,21,D22,Toronto,12,Markland Wood (12),Schools During Un-Supervised Activity,Educational,MO,,MT,21,SIL,250.0,STOLEN,738,"{'type': 'Point', 'coordinates': (-79.57687335, 43.63397773)}"
-749,4567,GO-20199018791,THEFT UNDER,2019-06-12T00:00:00,2019,June,Wednesday,12,163,16,2019-06-15T00:00:00,2019,June,Saturday,15,166,21,D22,Toronto,12,Markland Wood (12),Schools During Un-Supervised Activity,Educational,MO,,MT,21,,250.0,STOLEN,739,"{'type': 'Point', 'coordinates': (-79.57687335, 43.63397773)}"
-750,4745,GO-20191297183,B&E,2019-06-30T00:00:00,2019,June,Sunday,30,181,10,2019-07-07T00:00:00,2019,July,Sunday,7,188,18,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FELT,B16,TO,10,BLK,10000.0,STOLEN,740,"{'type': 'Point', 'coordinates': (-79.5743248, 43.63750082)}"
-751,5498,GO-20199033360,THEFT UNDER,2019-10-10T00:00:00,2019,October,Thursday,10,283,9,2019-10-10T00:00:00,2019,October,Thursday,10,283,17,D22,Toronto,12,Markland Wood (12),Schools During Supervised Activity,Educational,UK,ORBITA 650B,MT,18,BLK,300.0,STOLEN,741,"{'type': 'Point', 'coordinates': (-79.57338672, 43.63278432)}"
-752,5796,GO-20192514243,THEFT UNDER - BICYCLE,2019-12-27T00:00:00,2019,December,Friday,27,361,23,2019-12-30T00:00:00,2019,December,Monday,30,364,18,D22,Toronto,12,Markland Wood (12),"Apartment (Rooming House, Condo)",Apartment,RALEIGH,MOUNTAIN,MT,0,BLK,,STOLEN,742,"{'type': 'Point', 'coordinates': (-79.57512108, 43.63204196)}"
-753,5797,GO-20192514243,THEFT UNDER - BICYCLE,2019-12-27T00:00:00,2019,December,Friday,27,361,23,2019-12-30T00:00:00,2019,December,Monday,30,364,18,D22,Toronto,12,Markland Wood (12),"Apartment (Rooming House, Condo)",Apartment,OTHER,NISHIKI,MT,0,BLK,,STOLEN,743,"{'type': 'Point', 'coordinates': (-79.57512108, 43.63204196)}"
-754,7788,GO-20141760093,B&E,2014-03-23T00:00:00,2014,March,Sunday,23,82,23,2014-03-24T00:00:00,2014,March,Monday,24,83,19,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KONA,COWAN,MT,8,WHI,500.0,STOLEN,744,"{'type': 'Point', 'coordinates': (-79.58272088, 43.63326753)}"
-755,7911,GO-20149003293,THEFT UNDER,2014-05-04T00:00:00,2014,May,Sunday,4,124,15,2014-05-12T00:00:00,2014,May,Monday,12,132,8,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KH,SJ300,OT,1,GRY,734.0,STOLEN,745,"{'type': 'Point', 'coordinates': (-79.57115957, 43.62942012)}"
-756,7971,GO-20142162615,B&E,2014-05-26T00:00:00,2014,May,Monday,26,146,0,2014-05-27T00:00:00,2014,May,Tuesday,27,147,12,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,CARVE,MT,21,BLKWHI,1500.0,STOLEN,746,"{'type': 'Point', 'coordinates': (-79.58215596, 43.63409941)}"
-757,7972,GO-20142162615,B&E,2014-05-26T00:00:00,2014,May,Monday,26,146,0,2014-05-27T00:00:00,2014,May,Tuesday,27,147,12,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,ROAM 2,MT,21,SILWHI,530.0,STOLEN,747,"{'type': 'Point', 'coordinates': (-79.58215596, 43.63409941)}"
-758,8174,GO-20142304370,THEFT UNDER,2014-06-15T00:00:00,2014,June,Sunday,15,166,18,2014-06-16T00:00:00,2014,June,Monday,16,167,19,D22,Toronto,12,Markland Wood (12),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,,MT,10,WHI,450.0,STOLEN,748,"{'type': 'Point', 'coordinates': (-79.57978988, 43.62929136)}"
-759,8339,GO-20149004680,THEFT UNDER,2014-07-01T00:00:00,2014,July,Tuesday,1,182,21,2014-07-03T00:00:00,2014,July,Thursday,3,184,16,D22,Toronto,12,Markland Wood (12),Ttc Bus Stop / Shelter / Loop,Outside,OT,GLIDER,OT,15,BLU,100.0,STOLEN,749,"{'type': 'Point', 'coordinates': (-79.58433063, 43.63920551)}"
-760,8355,GO-20142462486,B&E,2014-07-06T00:00:00,2014,July,Sunday,6,187,12,2014-07-14T00:00:00,2014,July,Monday,14,195,13,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FUJI,29ER,MT,15,WHI,700.0,STOLEN,750,"{'type': 'Point', 'coordinates': (-79.57167726, 43.6281896)}"
-761,8384,GO-20142511486,B&E,2014-07-13T00:00:00,2014,July,Sunday,13,194,0,2014-07-16T00:00:00,2014,July,Wednesday,16,197,20,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DEVINCI,MENS,MT,10,BLU,800.0,STOLEN,751,"{'type': 'Point', 'coordinates': (-79.57595819, 43.63952102)}"
-762,8385,GO-20142511486,B&E,2014-07-13T00:00:00,2014,July,Sunday,13,194,0,2014-07-16T00:00:00,2014,July,Wednesday,16,197,20,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DEVINCI,,MT,10,GRY,800.0,STOLEN,752,"{'type': 'Point', 'coordinates': (-79.57595819, 43.63952102)}"
-763,8650,GO-20142720602,B&E,2014-08-17T00:00:00,2014,August,Sunday,17,229,2,2014-08-17T00:00:00,2014,August,Sunday,17,229,20,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DEVINCI,,MT,29,,1500.0,STOLEN,753,"{'type': 'Point', 'coordinates': (-79.56672121, 43.63328932)}"
-764,8699,GO-20142760183,PROPERTY - FOUND,2014-08-23T00:00:00,2014,August,Saturday,23,235,7,2014-08-23T00:00:00,2014,August,Saturday,23,235,11,D22,Toronto,12,Markland Wood (12),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,UNKNOWN,MT,99,BLU,,UNKNOWN,754,"{'type': 'Point', 'coordinates': (-79.5744029, 43.62764898)}"
-765,8972,GO-20142980533,THEFT UNDER,2014-09-24T00:00:00,2014,September,Wednesday,24,267,12,2014-09-25T00:00:00,2014,September,Thursday,25,268,13,D22,Toronto,12,Markland Wood (12),Schools During Supervised Activity,Educational,OTHER,BMX,MT,10,BLU,750.0,STOLEN,755,"{'type': 'Point', 'coordinates': (-79.57059975, 43.63913196)}"
-766,9603,GO-20159002866,THEFT UNDER,2015-05-17T00:00:00,2015,May,Sunday,17,137,21,2015-05-18T00:00:00,2015,May,Monday,18,138,21,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,P2 DIRTJUMPER,BM,1,BRN,1000.0,STOLEN,756,"{'type': 'Point', 'coordinates': (-79.56264011, 43.63298799)}"
-767,11150,GO-20142420776,PROPERTY - FOUND,2014-06-25T00:00:00,2014,June,Wednesday,25,176,8,2014-07-03T00:00:00,2014,July,Thursday,3,184,10,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,IH,,MT,21,BLK,,UNKNOWN,757,"{'type': 'Point', 'coordinates': (-79.58121204, 43.62999669)}"
-768,11154,GO-20142516043,PROPERTY - FOUND,2014-07-16T00:00:00,2014,July,Wednesday,16,197,22,2014-07-17T00:00:00,2014,July,Thursday,17,198,14,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NE,LASER,MT,6,PLE,,UNKNOWN,758,"{'type': 'Point', 'coordinates': (-79.56905084, 43.63400778)}"
-769,14575,GO-20199028969,THEFT UNDER,2019-09-05T00:00:00,2019,September,Thursday,5,248,18,2019-09-06T00:00:00,2019,September,Friday,6,249,13,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,S5,RC,11,WHI,5000.0,STOLEN,759,"{'type': 'Point', 'coordinates': (-79.57489825, 43.6303606)}"
-770,14917,GO-20149003836,THEFT UNDER,2014-06-01T00:00:00,2014,June,Sunday,1,152,17,2014-06-05T00:00:00,2014,June,Thursday,5,156,12,D22,Toronto,12,Markland Wood (12),Bar / Restaurant,Commercial,RM,26 INCH M HIGH,MT,16,BLK,100.0,STOLEN,760,"{'type': 'Point', 'coordinates': (-79.57702569000001, 43.64236301)}"
-771,14923,GO-20149004425,THEFT UNDER,2014-06-24T00:00:00,2014,June,Tuesday,24,175,18,2014-06-25T00:00:00,2014,June,Wednesday,25,176,10,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,STUMPJUMPER FSR,MT,20,BLK,2300.0,STOLEN,761,"{'type': 'Point', 'coordinates': (-79.57341544000002, 43.63720107)}"
-772,14924,GO-20142423373,THEFT UNDER,2014-06-20T00:00:00,2014,June,Friday,20,171,12,2014-07-03T00:00:00,2014,July,Thursday,3,184,17,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,JAMIS,X3,MT,21,WHIRED,500.0,STOLEN,762,"{'type': 'Point', 'coordinates': (-79.57636958, 43.63775418)}"
-773,14928,GO-20142728840,B&E,2014-08-18T00:00:00,2014,August,Monday,18,230,20,2014-08-18T00:00:00,2014,August,Monday,18,230,20,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FELT SIX,80 HIBACHI,RG,24,,529.0,STOLEN,763,"{'type': 'Point', 'coordinates': (-79.57115957, 43.62942012)}"
-774,14949,GO-2015834510,THEFT UNDER,2015-05-01T00:00:00,2015,May,Friday,1,121,0,2015-05-19T00:00:00,2015,May,Tuesday,19,139,14,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,EL,0,BLUSIL,1450.0,STOLEN,764,"{'type': 'Point', 'coordinates': (-79.57912757, 43.64421463)}"
-775,14951,GO-2015892034,THEFT UNDER,2015-05-28T00:00:00,2015,May,Thursday,28,148,9,2015-05-28T00:00:00,2015,May,Thursday,28,148,15,D22,Toronto,12,Markland Wood (12),Schools During Supervised Activity,Educational,MONGOOSE,,OT,5,GRYONG,250.0,STOLEN,765,"{'type': 'Point', 'coordinates': (-79.57059975, 43.63913196)}"
-776,17712,GO-20209012074,THEFT UNDER - BICYCLE,2020-03-15T00:00:00,2020,March,Sunday,15,75,12,2020-04-28T00:00:00,2020,April,Tuesday,28,119,12,D22,Toronto,12,Markland Wood (12),"Apartment (Rooming House, Condo)",Apartment,TR,MARLIN 7,MT,18,LBL,950.0,STOLEN,766,"{'type': 'Point', 'coordinates': (-79.58195984, 43.64065071)}"
-777,17919,GO-20142117568,THEFT OVER,2014-05-19T00:00:00,2014,May,Monday,19,139,20,2014-05-20T00:00:00,2014,May,Tuesday,20,140,18,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DEVINCI,,OT,18,WHI,3600.0,STOLEN,767,"{'type': 'Point', 'coordinates': (-79.5768519, 43.635083380000005)}"
-778,17920,GO-20142117568,THEFT OVER,2014-05-19T00:00:00,2014,May,Monday,19,139,20,2014-05-20T00:00:00,2014,May,Tuesday,20,140,18,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,STP1,OT,1,BRN,,STOLEN,768,"{'type': 'Point', 'coordinates': (-79.5768519, 43.635083380000005)}"
-779,17922,GO-20149003683,THEFT UNDER,2014-05-26T00:00:00,2014,May,Monday,26,146,1,2014-05-30T00:00:00,2014,May,Friday,30,150,11,D22,Toronto,12,Markland Wood (12),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,UNKNOWN,MT,21,BLK,200.0,STOLEN,769,"{'type': 'Point', 'coordinates': (-79.58039804, 43.64120025)}"
-780,17923,GO-20142202580,THEFT UNDER,2014-05-18T00:00:00,2014,May,Sunday,18,138,9,2014-06-02T00:00:00,2014,June,Monday,2,153,8,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCOTT,HYBIRD,TA,10,WHI,1000.0,STOLEN,770,"{'type': 'Point', 'coordinates': (-79.5796649, 43.63147706)}"
-781,17924,GO-20142202580,THEFT UNDER,2014-05-18T00:00:00,2014,May,Sunday,18,138,9,2014-06-02T00:00:00,2014,June,Monday,2,153,8,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCOTT,,TA,10,BLU,1000.0,STOLEN,771,"{'type': 'Point', 'coordinates': (-79.5796649, 43.63147706)}"
-782,21052,GO-20191656095,THEFT UNDER - BICYCLE,2019-08-29T00:00:00,2019,August,Thursday,29,241,23,2019-08-30T00:00:00,2019,August,Friday,30,242,9,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,,MT,12,DGR,600.0,STOLEN,773,"{'type': 'Point', 'coordinates': (-79.56013585, 43.62894228)}"
-783,21310,GO-20189021826,THEFT UNDER - BICYCLE,2018-07-10T00:00:00,2018,July,Tuesday,10,191,0,2018-07-10T00:00:00,2018,July,Tuesday,10,191,9,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,MT,21,MRN,700.0,STOLEN,774,"{'type': 'Point', 'coordinates': (-79.57195159, 43.63389212)}"
-784,22006,GO-20149003648,THEFT UNDER,2014-05-25T00:00:00,2014,May,Sunday,25,145,21,2014-05-29T00:00:00,2014,May,Thursday,29,149,21,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,,MT,18,BLU,113.0,STOLEN,775,"{'type': 'Point', 'coordinates': (-79.58190672, 43.64152578)}"
-785,22010,GO-20142221548,B&E,2014-05-29T00:00:00,2014,May,Thursday,29,149,14,2014-06-04T00:00:00,2014,June,Wednesday,4,155,18,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,0,BLU,200.0,STOLEN,776,"{'type': 'Point', 'coordinates': (-79.57826996, 43.62818158)}"
-786,22027,GO-20142577472,THEFT UNDER,2014-07-24T00:00:00,2014,July,Thursday,24,205,18,2014-07-26T00:00:00,2014,July,Saturday,26,207,19,D22,Toronto,12,Markland Wood (12),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,BM,1,DBL,200.0,STOLEN,777,"{'type': 'Point', 'coordinates': (-79.57702569000001, 43.64236301)}"
-787,22046,GO-20143452080,B&E,2014-12-05T00:00:00,2014,December,Friday,5,339,23,2014-12-09T00:00:00,2014,December,Tuesday,9,343,9,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DEVINCI,,MT,27,BLK,1500.0,STOLEN,778,"{'type': 'Point', 'coordinates': (-79.56672121, 43.63328932)}"
-788,22047,GO-20143452080,B&E,2014-12-05T00:00:00,2014,December,Friday,5,339,23,2014-12-09T00:00:00,2014,December,Tuesday,9,343,9,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,JAMIS,,MT,27,BLK,800.0,STOLEN,779,"{'type': 'Point', 'coordinates': (-79.56672121, 43.63328932)}"
-789,22077,GO-20159006243,THEFT UNDER,2015-08-27T00:00:00,2015,August,Thursday,27,239,21,2015-08-28T00:00:00,2015,August,Friday,28,240,1,D22,Toronto,12,Markland Wood (12),"Apartment (Rooming House, Condo)",Apartment,CC,,MT,10,WHI,449.0,STOLEN,780,"{'type': 'Point', 'coordinates': (-79.57978988, 43.62929136)}"
-790,22078,GO-20159006243,THEFT UNDER,2015-08-27T00:00:00,2015,August,Thursday,27,239,21,2015-08-28T00:00:00,2015,August,Friday,28,240,1,D22,Toronto,12,Markland Wood (12),"Apartment (Rooming House, Condo)",Apartment,SU,,MT,10,BLU,120.0,STOLEN,781,"{'type': 'Point', 'coordinates': (-79.57978988, 43.62929136)}"
-791,24191,GO-20171314023,B&E,2017-07-22T00:00:00,2017,July,Saturday,22,203,4,2017-07-22T00:00:00,2017,July,Saturday,22,203,4,D22,Toronto,12,Markland Wood (12),"Private Property Structure (Pool, Shed, Detached Garage)",Other,ROCKY MOUNTAIN,,MT,10,MRN,500.0,STOLEN,782,"{'type': 'Point', 'coordinates': (-79.57378384, 43.63062905)}"
-792,24192,GO-20171314023,B&E,2017-07-22T00:00:00,2017,July,Saturday,22,203,4,2017-07-22T00:00:00,2017,July,Saturday,22,203,4,D22,Toronto,12,Markland Wood (12),"Private Property Structure (Pool, Shed, Detached Garage)",Other,ROCKY MOUNTAIN,,MT,10,BLU,500.0,STOLEN,783,"{'type': 'Point', 'coordinates': (-79.57378384, 43.63062905)}"
-793,24423,GO-20149004641,THEFT UNDER,2014-07-02T00:00:00,2014,July,Wednesday,2,183,21,2014-07-03T00:00:00,2014,July,Thursday,3,184,0,D22,Toronto,12,Markland Wood (12),Bar / Restaurant,Commercial,CR,OCTANE,MT,21,RED,0.0,STOLEN,784,"{'type': 'Point', 'coordinates': (-79.56228119, 43.63562556)}"
-794,24424,GO-20149004641,THEFT UNDER,2014-07-02T00:00:00,2014,July,Wednesday,2,183,21,2014-07-03T00:00:00,2014,July,Thursday,3,184,0,D22,Toronto,12,Markland Wood (12),Bar / Restaurant,Commercial,SU,700CC TEMPO,RG,21,YEL,190.0,STOLEN,785,"{'type': 'Point', 'coordinates': (-79.56228119, 43.63562556)}"
-795,24429,GO-20142521121,B&E,2014-07-17T00:00:00,2014,July,Thursday,17,198,23,2014-07-18T00:00:00,2014,July,Friday,18,199,9,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,YUKON,MT,24,SILGRY,850.0,STOLEN,786,"{'type': 'Point', 'coordinates': (-79.57057605, 43.63145393)}"
-796,24496,GO-20159008922,THEFT UNDER,2015-10-21T00:00:00,2015,October,Wednesday,21,294,21,2015-10-23T00:00:00,2015,October,Friday,23,296,13,D22,Toronto,12,Markland Wood (12),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE 2 CITY B,RG,8,BLK,600.0,STOLEN,787,"{'type': 'Point', 'coordinates': (-79.58008672, 43.64078499)}"
-797,24552,GO-20161967119,THEFT FROM MOTOR VEHICLE UNDER,2016-11-04T00:00:00,2016,November,Friday,4,309,21,2016-11-05T00:00:00,2016,November,Saturday,5,310,8,D22,Toronto,12,Markland Wood (12),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,YORKVILLE,OT,12,BLK,600.0,STOLEN,788,"{'type': 'Point', 'coordinates': (-79.57978988, 43.62929136)}"
-798,695,GO-20179008769,THEFT UNDER - BICYCLE,2017-06-23T00:00:00,2017,June,Friday,23,174,0,2017-06-23T00:00:00,2017,June,Friday,23,174,12,D22,Toronto,13,Etobicoke West Mall (13),"Apartment (Rooming House, Condo)",Apartment,GI,YUKON (UPGRADED,MT,20,GRY,1600.0,STOLEN,789,"{'type': 'Point', 'coordinates': (-79.56081207, 43.6392073)}"
-799,1407,GO-20179014765,THEFT UNDER - BICYCLE,2017-09-14T00:00:00,2017,September,Thursday,14,257,14,2017-09-14T00:00:00,2017,September,Thursday,14,257,16,D22,Toronto,13,Etobicoke West Mall (13),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,KOZAK,BM,5,,370.0,STOLEN,790,"{'type': 'Point', 'coordinates': (-79.56478117000002, 43.639342840000005)}"
-800,3205,GO-20181506845,B&E,2018-08-13T00:00:00,2018,August,Monday,13,225,1,2018-08-15T00:00:00,2018,August,Wednesday,15,227,19,D22,Toronto,13,Etobicoke West Mall (13),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,,RG,1,,2500.0,STOLEN,791,"{'type': 'Point', 'coordinates': (-79.57761991, 43.64991)}"
-801,5587,GO-20199035066,THEFT UNDER,2019-10-23T00:00:00,2019,October,Wednesday,23,296,6,2019-10-24T00:00:00,2019,October,Thursday,24,297,13,D22,Toronto,13,Etobicoke West Mall (13),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,,RG,18,,310.0,STOLEN,792,"{'type': 'Point', 'coordinates': (-79.55994122000001, 43.63755565)}"
-802,7651,GO-20209030269,THEFT UNDER,2020-10-22T00:00:00,2020,October,Thursday,22,296,0,2020-11-22T00:00:00,2020,November,Sunday,22,327,1,D22,Toronto,13,Etobicoke West Mall (13),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM 3,RG,24,BLK,400.0,STOLEN,793,"{'type': 'Point', 'coordinates': (-79.56626725, 43.64831865)}"
-803,8007,GO-20142191810,THEFT UNDER,2014-05-27T00:00:00,2014,May,Tuesday,27,147,12,2014-05-31T00:00:00,2014,May,Saturday,31,151,15,D22,Toronto,13,Etobicoke West Mall (13),"Single Home, House (Attach Garage, Cottage, Mobile)",House,JAMIS,TRAIL X2,MT,24,BLK,500.0,STOLEN,794,"{'type': 'Point', 'coordinates': (-79.56768585, 43.6368343)}"
-804,8092,GO-20142273510,B&E,2014-06-12T00:00:00,2014,June,Thursday,12,163,2,2014-06-12T00:00:00,2014,June,Thursday,12,163,8,D22,Toronto,13,Etobicoke West Mall (13),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,XR21,MT,21,WHIRED,1000.0,STOLEN,795,"{'type': 'Point', 'coordinates': (-79.57244795, 43.64334087)}"
-805,8985,GO-20142996296,THEFT UNDER,2014-09-24T00:00:00,2014,September,Wednesday,24,267,8,2014-09-27T00:00:00,2014,September,Saturday,27,270,16,D22,Toronto,13,Etobicoke West Mall (13),Schools During Supervised Activity,Educational,SUN,SUNDAY,BM,1,LBL,700.0,STOLEN,796,"{'type': 'Point', 'coordinates': (-79.56478117000002, 43.639342840000005)}"
-806,14293,GO-20201460759,THEFT UNDER - BICYCLE,2020-08-04T00:00:00,2020,August,Tuesday,4,217,23,2020-08-05T00:00:00,2020,August,Wednesday,5,218,14,D22,Toronto,13,Etobicoke West Mall (13),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ROCKY MOUNTAIN,FUSION 910,MT,10,BLK,700.0,STOLEN,797,"{'type': 'Point', 'coordinates': (-79.57548828, 43.65046286)}"
-807,14581,GO-20191778906,THEFT UNDER,2019-09-16T00:00:00,2019,September,Monday,16,259,4,2019-09-16T00:00:00,2019,September,Monday,16,259,11,D22,Toronto,13,Etobicoke West Mall (13),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,HORNET,EL,1,LBL,2000.0,STOLEN,798,"{'type': 'Point', 'coordinates': (-79.56478117000002, 43.639342840000005)}"
-808,17602,GO-20199022915,THEFT UNDER,2019-07-19T00:00:00,2019,July,Friday,19,200,13,2019-07-19T00:00:00,2019,July,Friday,19,200,13,D22,Toronto,13,Etobicoke West Mall (13),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,18,WHI,2000.0,STOLEN,799,"{'type': 'Point', 'coordinates': (-79.56610821, 43.65128273)}"
-809,17808,GO-20189013929,THEFT UNDER - BICYCLE,2018-05-03T00:00:00,2018,May,Thursday,3,123,19,2018-05-06T00:00:00,2018,May,Sunday,6,126,11,D22,Toronto,13,Etobicoke West Mall (13),"Apartment (Rooming House, Condo)",Apartment,OT,HARDROCK,MT,24,RED,580.0,STOLEN,800,"{'type': 'Point', 'coordinates': (-79.5674644, 43.65024954)}"
-810,17937,GO-20142590456,THEFT UNDER,2014-07-26T00:00:00,2014,July,Saturday,26,207,18,2014-07-28T00:00:00,2014,July,Monday,28,209,19,D22,Toronto,13,Etobicoke West Mall (13),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RMB,RC10,MT,12,BLU,737.0,STOLEN,801,"{'type': 'Point', 'coordinates': (-79.57707264, 43.65091914)}"
-811,18005,GO-20159009956,THEFT UNDER,2015-11-18T00:00:00,2015,November,Wednesday,18,322,12,2015-11-20T00:00:00,2015,November,Friday,20,324,13,D22,Toronto,13,Etobicoke West Mall (13),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,,MT,21,GRY,700.0,STOLEN,802,"{'type': 'Point', 'coordinates': (-79.56081207, 43.6392073)}"
-812,18060,GO-20169012974,THEFT UNDER,2016-11-04T00:00:00,2016,November,Friday,4,309,15,2016-11-04T00:00:00,2016,November,Friday,4,309,15,D22,Toronto,13,Etobicoke West Mall (13),"Apartment (Rooming House, Condo)",Apartment,HF,,OT,1,BLK,70.0,STOLEN,803,"{'type': 'Point', 'coordinates': (-79.57217757, 43.6523955)}"
-813,22003,GO-20142099050,B&E,2014-05-16T00:00:00,2014,May,Friday,16,136,15,2014-05-17T00:00:00,2014,May,Saturday,17,137,18,D22,Toronto,13,Etobicoke West Mall (13),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,RUKUS,MT,9,GRY,1800.0,STOLEN,804,"{'type': 'Point', 'coordinates': (-79.56777305, 43.64191376)}"
-814,22004,GO-20142099050,B&E,2014-05-16T00:00:00,2014,May,Friday,16,136,15,2014-05-17T00:00:00,2014,May,Saturday,17,137,18,D22,Toronto,13,Etobicoke West Mall (13),"Single Home, House (Attach Garage, Cottage, Mobile)",House,JAMIS,DURANGO,MT,24,SIL,800.0,STOLEN,805,"{'type': 'Point', 'coordinates': (-79.56777305, 43.64191376)}"
-815,24414,GO-20149003074,THEFT UNDER,2014-04-28T00:00:00,2014,April,Monday,28,118,15,2014-04-29T00:00:00,2014,April,Tuesday,29,119,23,D22,Toronto,13,Etobicoke West Mall (13),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,STATIC,MT,21,BLK,400.0,STOLEN,806,"{'type': 'Point', 'coordinates': (-79.5674644, 43.65024954)}"
-816,24418,GO-20149003655,THEFT UNDER,2014-05-16T00:00:00,2014,May,Friday,16,136,15,2014-05-28T00:00:00,2014,May,Wednesday,28,148,20,D22,Toronto,13,Etobicoke West Mall (13),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,QUICK 5,RG,8,SIL,600.0,STOLEN,807,"{'type': 'Point', 'coordinates': (-79.57707264, 43.65091914)}"
-817,24421,GO-20142273510,B&E,2014-06-12T00:00:00,2014,June,Thursday,12,163,2,2014-06-12T00:00:00,2014,June,Thursday,12,163,8,D22,Toronto,13,Etobicoke West Mall (13),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,ROAMX2,MT,21,,999.0,STOLEN,808,"{'type': 'Point', 'coordinates': (-79.57244795, 43.64334087)}"
-818,24434,GO-20149005570,B&E,2014-08-01T00:00:00,2014,August,Friday,1,213,0,2014-08-02T00:00:00,2014,August,Saturday,2,214,11,D22,Toronto,13,Etobicoke West Mall (13),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BL,THIN BLUE LINE,MT,21,BLU,1800.0,UNKNOWN,809,"{'type': 'Point', 'coordinates': (-79.57806779, 43.64808008)}"
-819,24444,GO-201537883,THEFT UNDER,2014-12-31T00:00:00,2014,December,Wednesday,31,365,15,2015-01-07T00:00:00,2015,January,Wednesday,7,7,17,D22,Toronto,13,Etobicoke West Mall (13),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,K2,UNK,MT,21,BLKGRN,440.0,STOLEN,810,"{'type': 'Point', 'coordinates': (-79.56081207, 43.6392073)}"
-820,222,GO-20179004587,THEFT UNDER,2017-04-11T00:00:00,2017,April,Tuesday,11,101,19,2017-04-11T00:00:00,2017,April,Tuesday,11,101,22,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,FJ,ROUBAIX,RC,12,GRY,1000.0,STOLEN,811,"{'type': 'Point', 'coordinates': (-79.53702637, 43.63768607)}"
-821,378,GO-2017842821,THEFT UNDER - BICYCLE,2017-05-12T00:00:00,2017,May,Friday,12,132,23,2017-05-13T00:00:00,2017,May,Saturday,13,133,11,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,JEKYLL,MT,18,BLK,1800.0,STOLEN,812,"{'type': 'Point', 'coordinates': (-79.54214221, 43.64824655)}"
-822,573,GO-20179007825,THEFT UNDER,2017-06-09T00:00:00,2017,June,Friday,9,160,20,2017-06-11T00:00:00,2017,June,Sunday,11,162,9,D22,Toronto,14,Islington-City Centre West (14),Ttc Subway Station,Transit,SU,"1800 26"""" HARDTA",MT,18,BLK,100.0,STOLEN,813,"{'type': 'Point', 'coordinates': (-79.53376337, 43.63782147)}"
-823,689,GO-20171122751,THEFT UNDER - BICYCLE,2017-06-19T00:00:00,2017,June,Monday,19,170,12,2017-06-23T00:00:00,2017,June,Friday,23,174,16,D22,Toronto,14,Islington-City Centre West (14),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN,,MT,8,BLU,360.0,STOLEN,814,"{'type': 'Point', 'coordinates': (-79.52505483, 43.64838422)}"
-824,919,GO-20179010561,THEFT UNDER,2017-07-18T00:00:00,2017,July,Tuesday,18,199,15,2017-07-19T00:00:00,2017,July,Wednesday,19,200,9,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RM,,MT,21,RED,1000.0,STOLEN,815,"{'type': 'Point', 'coordinates': (-79.53401889, 43.61929123)}"
-825,1282,GO-20179013803,THEFT UNDER - BICYCLE,2017-08-31T00:00:00,2017,August,Thursday,31,243,8,2017-09-01T00:00:00,2017,September,Friday,1,244,7,D22,Toronto,14,Islington-City Centre West (14),Ttc Subway Station,Transit,UK,,RG,21,,300.0,STOLEN,816,"{'type': 'Point', 'coordinates': (-79.52377938, 43.64551159)}"
-826,1322,GO-20171603023,THEFT UNDER - BICYCLE,2017-09-01T00:00:00,2017,September,Friday,1,244,3,2017-09-04T00:00:00,2017,September,Monday,4,247,19,D22,Toronto,14,Islington-City Centre West (14),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,FELT,,OT,10,BLK,,STOLEN,817,"{'type': 'Point', 'coordinates': (-79.53812447, 43.64120462)}"
-827,1451,GO-20171672375,THEFT UNDER - BICYCLE,2017-09-14T00:00:00,2017,September,Thursday,14,257,19,2017-09-15T00:00:00,2017,September,Friday,15,258,9,D22,Toronto,14,Islington-City Centre West (14),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,XTC,OT,11,WHI,1700.0,STOLEN,818,"{'type': 'Point', 'coordinates': (-79.53191599, 43.64524669)}"
-828,1553,GO-20171772098,THEFT OF EBIKE UNDER $5000,2017-09-30T00:00:00,2017,September,Saturday,30,273,3,2017-09-30T00:00:00,2017,September,Saturday,30,273,3,D22,Toronto,14,Islington-City Centre West (14),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,A Z SOURCES,DU CA,EL,3,BLK,3700.0,STOLEN,819,"{'type': 'Point', 'coordinates': (-79.53812447, 43.64120462)}"
-829,1665,GO-20179017287,THEFT UNDER,2017-10-08T00:00:00,2017,October,Sunday,8,281,15,2017-10-15T00:00:00,2017,October,Sunday,15,288,17,D22,Toronto,14,Islington-City Centre West (14),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,TROY CARBON RS,MT,11,BLK,3500.0,STOLEN,820,"{'type': 'Point', 'coordinates': (-79.53280588, 43.64315759)}"
-830,1723,GO-20179017960,THEFT UNDER - BICYCLE,2017-10-21T00:00:00,2017,October,Saturday,21,294,17,2017-10-23T00:00:00,2017,October,Monday,23,296,19,D22,Toronto,14,Islington-City Centre West (14),Bar / Restaurant,Commercial,NO,VFR4,TO,24,GRY,650.0,STOLEN,821,"{'type': 'Point', 'coordinates': (-79.55611632, 43.61421803)}"
-831,2131,GO-2018595824,THEFT UNDER,2018-03-21T00:00:00,2018,March,Wednesday,21,80,12,2018-04-03T00:00:00,2018,April,Tuesday,3,93,13,D22,Toronto,14,Islington-City Centre West (14),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RICKSAW,UNK,SC,1,RED,3000.0,STOLEN,822,"{'type': 'Point', 'coordinates': (-79.53760351, 43.63897842)}"
-832,2744,GO-20189021060,THEFT UNDER - BICYCLE,2018-07-01T00:00:00,2018,July,Sunday,1,182,10,2018-07-03T00:00:00,2018,July,Tuesday,3,184,17,D22,Toronto,14,Islington-City Centre West (14),Bar / Restaurant,Commercial,DB,HYBRID WOMEN,RG,4,LGR,500.0,STOLEN,823,"{'type': 'Point', 'coordinates': (-79.56049947, 43.60910823)}"
-833,18041,GO-20161403617,THEFT UNDER - BICYCLE,2016-08-08T00:00:00,2016,August,Monday,8,221,0,2016-08-09T00:00:00,2016,August,Tuesday,9,222,15,D23,Toronto,8,Humber Heights-Westmount (8),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,UNKNOWN,OT,18,SIL,250.0,STOLEN,824,"{'type': 'Point', 'coordinates': (-79.51554107, 43.69588056)}"
-834,22074,GO-20151368550,B&E,2015-08-10T00:00:00,2015,August,Monday,10,222,2,2015-08-10T00:00:00,2015,August,Monday,10,222,8,D23,Toronto,8,Humber Heights-Westmount (8),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DCO 702 18 INCH,,MT,12,,,STOLEN,825,"{'type': 'Point', 'coordinates': (-79.53423279, 43.69982423)}"
-835,22087,GO-20159007595,THEFT UNDER,2015-09-22T00:00:00,2015,September,Tuesday,22,265,18,2015-09-22T00:00:00,2015,September,Tuesday,22,265,18,D23,Toronto,8,Humber Heights-Westmount (8),"Apartment (Rooming House, Condo)",Apartment,NO,STORM 7.2,MT,24,GRY,625.0,STOLEN,826,"{'type': 'Point', 'coordinates': (-79.52656968, 43.68233667)}"
-836,24127,GO-20199037779,THEFT UNDER,2019-11-15T00:00:00,2019,November,Friday,15,319,15,2019-11-17T00:00:00,2019,November,Sunday,17,321,11,D23,Toronto,8,Humber Heights-Westmount (8),"Apartment (Rooming House, Condo)",Apartment,GI,GV EXPRESS,TO,21,BLK,500.0,STOLEN,827,"{'type': 'Point', 'coordinates': (-79.51310887, 43.6868507)}"
-837,24350,GO-20189024719,THEFT UNDER - BICYCLE,2018-07-31T00:00:00,2018,July,Tuesday,31,212,10,2018-08-01T00:00:00,2018,August,Wednesday,1,213,7,D23,Toronto,8,Humber Heights-Westmount (8),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,RG,12,BLK,500.0,STOLEN,828,"{'type': 'Point', 'coordinates': (-79.5165076, 43.68647481)}"
-838,24449,GO-2015742286,THEFT UNDER,2015-05-04T00:00:00,2015,May,Monday,4,124,18,2015-05-04T00:00:00,2015,May,Monday,4,124,20,D23,Toronto,8,Humber Heights-Westmount (8),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,ASCENT,MT,21,ONG,300.0,STOLEN,829,"{'type': 'Point', 'coordinates': (-79.51554107, 43.69588056)}"
-839,1471,GO-20171693288,THEFT UNDER - BICYCLE,2017-09-15T00:00:00,2017,September,Friday,15,258,16,2017-09-18T00:00:00,2017,September,Monday,18,261,12,D23,Toronto,9,Edenbridge-Humber Valley (9),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FUJI,NEVADA,OT,0,YELGRN,566.0,STOLEN,830,"{'type': 'Point', 'coordinates': (-79.51141912, 43.68396393)}"
-840,1645,GO-20179016938,THEFT UNDER - BICYCLE,2017-10-10T00:00:00,2017,October,Tuesday,10,283,18,2017-10-11T00:00:00,2017,October,Wednesday,11,284,11,D22,Toronto,9,Edenbridge-Humber Valley (9),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GF,,MT,24,,850.0,STOLEN,831,"{'type': 'Point', 'coordinates': (-79.51042078, 43.66063143)}"
-841,1647,GO-20179016938,THEFT UNDER - BICYCLE,2017-10-10T00:00:00,2017,October,Tuesday,10,283,18,2017-10-11T00:00:00,2017,October,Wednesday,11,284,11,D22,Toronto,9,Edenbridge-Humber Valley (9),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GF,,MT,24,,850.0,STOLEN,832,"{'type': 'Point', 'coordinates': (-79.51042078, 43.66063143)}"
-842,1848,GO-20179019693,THEFT UNDER - BICYCLE,2017-11-14T00:00:00,2017,November,Tuesday,14,318,9,2017-11-15T00:00:00,2017,November,Wednesday,15,319,9,D22,Toronto,9,Edenbridge-Humber Valley (9),"Apartment (Rooming House, Condo)",Apartment,GI,REIGN,MT,24,SIL,2400.0,STOLEN,833,"{'type': 'Point', 'coordinates': (-79.51042078, 43.66063143)}"
-843,2336,GO-20189015257,THEFT UNDER - BICYCLE,2018-05-16T00:00:00,2018,May,Wednesday,16,136,15,2018-05-17T00:00:00,2018,May,Thursday,17,137,9,D22,Toronto,9,Edenbridge-Humber Valley (9),"Apartment (Rooming House, Condo)",Apartment,NO,XFR,MT,21,BLK,1299.0,STOLEN,834,"{'type': 'Point', 'coordinates': (-79.51067164, 43.68307737)}"
-844,2337,GO-20189015257,THEFT UNDER - BICYCLE,2018-05-16T00:00:00,2018,May,Wednesday,16,136,15,2018-05-17T00:00:00,2018,May,Thursday,17,137,9,D22,Toronto,9,Edenbridge-Humber Valley (9),"Apartment (Rooming House, Condo)",Apartment,NO,XFR,MT,21,BLK,1299.0,STOLEN,835,"{'type': 'Point', 'coordinates': (-79.51067164, 43.68307737)}"
-845,5611,GO-20201508068,THEFT UNDER - BICYCLE,2020-08-12T00:00:00,2020,August,Wednesday,12,225,0,2020-08-13T00:00:00,2020,August,Thursday,13,226,21,D22,Toronto,9,Edenbridge-Humber Valley (9),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,MT,12,RED,700.0,STOLEN,836,"{'type': 'Point', 'coordinates': (-79.52089916, 43.65882311)}"
-846,6340,GO-20201041701,THEFT UNDER - BICYCLE,2020-06-05T00:00:00,2020,June,Friday,5,157,14,2020-06-10T00:00:00,2020,June,Wednesday,10,162,11,D22,Toronto,9,Edenbridge-Humber Valley (9),"Apartment (Rooming House, Condo)",Apartment,NAKAMURA,ROYAL 700C,OT,24,BLU,350.0,STOLEN,837,"{'type': 'Point', 'coordinates': (-79.52062923, 43.66338572)}"
-847,6341,GO-20201066753,THEFT OF MOTOR VEHICLE,2020-06-09T00:00:00,2020,June,Tuesday,9,161,21,2020-06-10T00:00:00,2020,June,Wednesday,10,162,10,D22,Toronto,9,Edenbridge-Humber Valley (9),"Single Home, House (Attach Garage, Cottage, Mobile)",House,HUMMER,,BM,1,BLK,60.0,STOLEN,838,"{'type': 'Point', 'coordinates': (-79.51005466, 43.67885129)}"
-848,6360,GO-20201059154,B&E,2020-06-05T00:00:00,2020,June,Friday,5,157,21,2020-06-09T00:00:00,2020,June,Tuesday,9,161,8,D22,Toronto,9,Edenbridge-Humber Valley (9),"Apartment (Rooming House, Condo)",Apartment,U/K,,OT,0,GRY,,STOLEN,839,"{'type': 'Point', 'coordinates': (-79.52062923, 43.66338572)}"
-849,8465,GO-20142520395,THEFT UNDER,2014-07-16T00:00:00,2014,July,Wednesday,16,197,6,2014-07-18T00:00:00,2014,July,Friday,18,199,7,D23,Toronto,9,Edenbridge-Humber Valley (9),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,MT,18,GRY,200.0,STOLEN,840,"{'type': 'Point', 'coordinates': (-79.51244672, 43.68551456)}"
-850,9460,GO-2015671626,B&E,2015-04-22T00:00:00,2015,April,Wednesday,22,112,23,2015-04-23T00:00:00,2015,April,Thursday,23,113,12,D22,Toronto,9,Edenbridge-Humber Valley (9),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,,MT,21,BLKGRN,1200.0,STOLEN,841,"{'type': 'Point', 'coordinates': (-79.52727416, 43.67502718000001)}"
-851,9495,GO-2015710798,THEFT UNDER,2015-04-29T00:00:00,2015,April,Wednesday,29,119,14,2015-04-29T00:00:00,2015,April,Wednesday,29,119,18,D22,Toronto,9,Edenbridge-Humber Valley (9),Schools During Supervised Activity,Educational,SPECIALIZED,,RG,0,BLU,520.0,STOLEN,842,"{'type': 'Point', 'coordinates': (-79.5202901, 43.65689965)}"
-852,10076,GO-20159004863,THEFT UNDER,2015-07-21T00:00:00,2015,July,Tuesday,21,202,22,2015-07-22T00:00:00,2015,July,Wednesday,22,203,19,D22,Toronto,9,Edenbridge-Humber Valley (9),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,24,,0.0,STOLEN,843,"{'type': 'Point', 'coordinates': (-79.51955889, 43.662706490000005)}"
-853,11082,GO-20169002875,THEFT UNDER,2016-03-29T00:00:00,2016,March,Tuesday,29,89,7,2016-03-29T00:00:00,2016,March,Tuesday,29,89,21,D22,Toronto,9,Edenbridge-Humber Valley (9),"Apartment (Rooming House, Condo)",Apartment,OT,ORION,RG,18,SIL,0.0,STOLEN,844,"{'type': 'Point', 'coordinates': (-79.52542865, 43.65238462)}"
-854,11142,GO-20169003469,THEFT UNDER - BICYCLE,2016-04-16T00:00:00,2016,April,Saturday,16,107,14,2016-04-16T00:00:00,2016,April,Saturday,16,107,18,D22,Toronto,9,Edenbridge-Humber Valley (9),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,SIRRUS SPORT,MT,21,BLK,600.0,STOLEN,845,"{'type': 'Point', 'coordinates': (-79.51375682000001, 43.65823569)}"
-855,14731,GO-20179016938,THEFT UNDER - BICYCLE,2017-10-10T00:00:00,2017,October,Tuesday,10,283,18,2017-10-11T00:00:00,2017,October,Wednesday,11,284,11,D22,Toronto,9,Edenbridge-Humber Valley (9),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GF,,MT,27,,850.0,STOLEN,846,"{'type': 'Point', 'coordinates': (-79.51042078, 43.66063143)}"
-856,14915,GO-20142204409,THEFT UNDER,2014-06-01T00:00:00,2014,June,Sunday,1,152,10,2014-06-02T00:00:00,2014,June,Monday,2,153,12,D22,Toronto,9,Edenbridge-Humber Valley (9),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SIRRIUS,SPECIALIZED HYB,RG,10,BLK,700.0,STOLEN,847,"{'type': 'Point', 'coordinates': (-79.53094693, 43.67816945)}"
-857,14918,GO-20142297158,THEFT UNDER,2014-06-15T00:00:00,2014,June,Sunday,15,166,12,2014-06-15T00:00:00,2014,June,Sunday,15,166,17,D22,Toronto,9,Edenbridge-Humber Valley (9),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,MADONE 6.2,MT,12,BLKRED,5000.0,STOLEN,848,"{'type': 'Point', 'coordinates': (-79.53186966, 43.66717318)}"
-858,14961,GO-20159004241,THEFT UNDER,2015-07-05T00:00:00,2015,July,Sunday,5,186,19,2015-07-06T00:00:00,2015,July,Monday,6,187,18,D22,Toronto,9,Edenbridge-Humber Valley (9),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,ESCAPE 3,RG,24,GRY,492.0,STOLEN,849,"{'type': 'Point', 'coordinates': (-79.52011289, 43.66309891)}"
-859,14962,GO-20159004241,THEFT UNDER,2015-07-05T00:00:00,2015,July,Sunday,5,186,19,2015-07-06T00:00:00,2015,July,Monday,6,187,18,D22,Toronto,9,Edenbridge-Humber Valley (9),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RM,FUSION,MT,24,ONG,903.0,STOLEN,850,"{'type': 'Point', 'coordinates': (-79.52011289, 43.66309891)}"
-860,4717,GO-20199021602,THEFT UNDER,2019-06-09T00:00:00,2019,June,Sunday,9,160,12,2019-07-09T00:00:00,2019,July,Tuesday,9,190,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,TR,,RG,5,LBL,0.0,STOLEN,912,"{'type': 'Point', 'coordinates': (-79.47687625, 43.63027025)}"
-861,14984,GO-20152154110,THEFT UNDER,2015-12-13T00:00:00,2015,December,Sunday,13,347,21,2015-12-16T00:00:00,2015,December,Wednesday,16,350,11,D22,Toronto,9,Edenbridge-Humber Valley (9),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,HUFFY,OT,0,GRN,,STOLEN,851,"{'type': 'Point', 'coordinates': (-79.52248005, 43.68110887)}"
-862,14985,GO-20152154110,THEFT UNDER,2015-12-13T00:00:00,2015,December,Sunday,13,347,21,2015-12-16T00:00:00,2015,December,Wednesday,16,350,11,D22,Toronto,9,Edenbridge-Humber Valley (9),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,YOUTH LADIES,OT,0,BLU,,STOLEN,852,"{'type': 'Point', 'coordinates': (-79.52248005, 43.68110887)}"
-863,15014,GO-20161352739,THEFT UNDER - BICYCLE,2016-08-01T00:00:00,2016,August,Monday,1,214,16,2016-08-01T00:00:00,2016,August,Monday,1,214,20,D22,Toronto,9,Edenbridge-Humber Valley (9),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,ROCKY MOUNTAIN,,MT,27,BLKWHI,,STOLEN,853,"{'type': 'Point', 'coordinates': (-79.51067164, 43.68307737)}"
-864,15019,GO-20169008779,THEFT UNDER - BICYCLE,2016-07-26T00:00:00,2016,July,Tuesday,26,208,10,2016-08-15T00:00:00,2016,August,Monday,15,228,11,D22,Toronto,9,Edenbridge-Humber Valley (9),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,12,BRZ,1000.0,STOLEN,854,"{'type': 'Point', 'coordinates': (-79.51067164, 43.68307737)}"
-865,15042,GO-2017546703,THEFT FROM MOTOR VEHICLE UNDER,2017-03-14T00:00:00,2017,March,Tuesday,14,73,20,2017-03-28T00:00:00,2017,March,Tuesday,28,87,10,D22,Toronto,9,Edenbridge-Humber Valley (9),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,,MT,21,GRY,200.0,STOLEN,855,"{'type': 'Point', 'coordinates': (-79.52176492, 43.66397643)}"
-866,17574,GO-2019993411,THEFT UNDER - BICYCLE,2019-05-30T00:00:00,2019,May,Thursday,30,150,18,2019-05-30T00:00:00,2019,May,Thursday,30,150,18,D22,Toronto,9,Edenbridge-Humber Valley (9),Convenience Stores,Commercial,NORCO,STORM,MT,24,GRN,750.0,STOLEN,856,"{'type': 'Point', 'coordinates': (-79.51984025, 43.66088016)}"
-867,18010,GO-20169000150,THEFT UNDER,2015-11-12T00:00:00,2015,November,Thursday,12,316,12,2016-01-05T00:00:00,2016,January,Tuesday,5,5,15,D22,Toronto,9,Edenbridge-Humber Valley (9),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,9TH DISTRICT,RG,9,GRN,900.0,STOLEN,857,"{'type': 'Point', 'coordinates': (-79.509444, 43.66101428)}"
-868,18068,GO-2017719319,THEFT UNDER - BICYCLE,2017-04-12T00:00:00,2017,April,Wednesday,12,102,19,2017-04-24T00:00:00,2017,April,Monday,24,114,14,D22,Toronto,9,Edenbridge-Humber Valley (9),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CANNONDALE,TRAIL SL29ER4,MT,18,BLK,1120.0,STOLEN,858,"{'type': 'Point', 'coordinates': (-79.51067164, 43.68307737)}"
-869,21211,GO-20171608429,B&E,2017-09-03T00:00:00,2017,September,Sunday,3,246,21,2017-09-09T00:00:00,2017,September,Saturday,9,252,13,D22,Toronto,9,Edenbridge-Humber Valley (9),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,GLOBE,OT,21,BLK,1500.0,STOLEN,859,"{'type': 'Point', 'coordinates': (-79.52444757, 43.67947022)}"
-870,22053,GO-2015757609,THEFT UNDER,2015-05-04T00:00:00,2015,May,Monday,4,124,18,2015-05-07T00:00:00,2015,May,Thursday,7,127,8,D22,Toronto,9,Edenbridge-Humber Valley (9),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,,MT,18,BLUSIL,,STOLEN,860,"{'type': 'Point', 'coordinates': (-79.52688809, 43.678668)}"
-871,22054,GO-2015757609,THEFT UNDER,2015-05-04T00:00:00,2015,May,Monday,4,124,18,2015-05-07T00:00:00,2015,May,Thursday,7,127,8,D22,Toronto,9,Edenbridge-Humber Valley (9),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,,MT,0,BLUWHI,,STOLEN,861,"{'type': 'Point', 'coordinates': (-79.52688809, 43.678668)}"
-872,22055,GO-2015757609,THEFT UNDER,2015-05-04T00:00:00,2015,May,Monday,4,124,18,2015-05-07T00:00:00,2015,May,Thursday,7,127,8,D22,Toronto,9,Edenbridge-Humber Valley (9),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,OT,24,PLESIL,,STOLEN,862,"{'type': 'Point', 'coordinates': (-79.52688809, 43.678668)}"
-873,22064,GO-20151125669,B&E,2015-06-30T00:00:00,2015,June,Tuesday,30,181,18,2015-07-04T00:00:00,2015,July,Saturday,4,185,11,D22,Toronto,9,Edenbridge-Humber Valley (9),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,+,RG,20,SIL,500.0,STOLEN,863,"{'type': 'Point', 'coordinates': (-79.5241007, 43.65949581)}"
-874,22143,GO-2017533724,THEFT UNDER,2017-03-25T00:00:00,2017,March,Saturday,25,84,23,2017-03-26T00:00:00,2017,March,Sunday,26,85,10,D22,Toronto,9,Edenbridge-Humber Valley (9),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DUTCHI,STREET,OT,0,BLU,834.0,STOLEN,864,"{'type': 'Point', 'coordinates': (-79.52459678, 43.66116923)}"
-875,22144,GO-2017533724,THEFT UNDER,2017-03-25T00:00:00,2017,March,Saturday,25,84,23,2017-03-26T00:00:00,2017,March,Sunday,26,85,10,D22,Toronto,9,Edenbridge-Humber Valley (9),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DUTCHI,UNKNOWN,OT,0,,840.0,STOLEN,865,"{'type': 'Point', 'coordinates': (-79.52459678, 43.66116923)}"
-876,24312,GO-20189019007,THEFT UNDER - BICYCLE,2018-06-10T00:00:00,2018,June,Sunday,10,161,20,2018-06-17T00:00:00,2018,June,Sunday,17,168,0,D23,Toronto,9,Edenbridge-Humber Valley (9),"Apartment (Rooming House, Condo)",Apartment,OT,MEC CHANCE,RG,11,RED,1889.0,STOLEN,866,"{'type': 'Point', 'coordinates': (-79.515198, 43.68273481)}"
-877,24566,GO-2017683457,B&E,2017-04-15T00:00:00,2017,April,Saturday,15,105,19,2017-04-18T00:00:00,2017,April,Tuesday,18,108,23,D22,Toronto,9,Edenbridge-Humber Valley (9),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,,RC,21,WHI,3300.0,STOLEN,867,"{'type': 'Point', 'coordinates': (-79.51067164, 43.68307737)}"
-878,747,GO-20171156530,THEFT UNDER,2017-06-27T00:00:00,2017,June,Tuesday,27,178,21,2017-06-28T00:00:00,2017,June,Wednesday,28,179,14,D22,Toronto,10,Princess-Rosethorn (10),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,CYPRES,TO,18,BLK,700.0,STOLEN,868,"{'type': 'Point', 'coordinates': (-79.53047476, 43.66082229)}"
-879,1268,GO-20179013652,THEFT UNDER - BICYCLE,2017-08-29T00:00:00,2017,August,Tuesday,29,241,22,2017-08-30T00:00:00,2017,August,Wednesday,30,242,0,D22,Toronto,10,Princess-Rosethorn (10),Convenience Stores,Commercial,UK,,BM,20,WHI,400.0,STOLEN,869,"{'type': 'Point', 'coordinates': (-79.55543799, 43.67421883)}"
-880,1313,GO-20179013652,THEFT UNDER - BICYCLE,2017-08-29T00:00:00,2017,August,Tuesday,29,241,22,2017-08-30T00:00:00,2017,August,Wednesday,30,242,0,D22,Toronto,10,Princess-Rosethorn (10),Convenience Stores,Commercial,OT,,BM,1,WHI,500.0,STOLEN,870,"{'type': 'Point', 'coordinates': (-79.55543799, 43.67421883)}"
-881,2520,GO-20189018068,THEFT UNDER,2018-06-04T00:00:00,2018,June,Monday,4,155,8,2018-06-09T00:00:00,2018,June,Saturday,9,160,21,D22,Toronto,10,Princess-Rosethorn (10),Schools During Supervised Activity,Educational,GI,REVEL,MT,21,BLK,475.0,STOLEN,871,"{'type': 'Point', 'coordinates': (-79.54530679, 43.65935171)}"
-882,3828,GO-20189037453,THEFT UNDER - BICYCLE,2018-11-08T00:00:00,2018,November,Thursday,8,312,6,2018-11-08T00:00:00,2018,November,Thursday,8,312,20,D22,Toronto,10,Princess-Rosethorn (10),Ttc Subway Station,Transit,OT,MILANO,RG,21,BLK,700.0,STOLEN,872,"{'type': 'Point', 'coordinates': (-79.53353659, 43.65835142)}"
-883,4246,GO-20199014240,THEFT UNDER,2019-05-07T00:00:00,2019,May,Tuesday,7,127,13,2019-05-07T00:00:00,2019,May,Tuesday,7,127,18,D22,Toronto,10,Princess-Rosethorn (10),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,MT,21,WHI,500.0,STOLEN,873,"{'type': 'Point', 'coordinates': (-79.53931683000002, 43.67694883)}"
-884,4609,GO-20199020153,THEFT UNDER,2019-06-25T00:00:00,2019,June,Tuesday,25,176,16,2019-06-26T00:00:00,2019,June,Wednesday,26,177,16,D22,Toronto,10,Princess-Rosethorn (10),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RG,3,RED,200.0,STOLEN,874,"{'type': 'Point', 'coordinates': (-79.55543799, 43.67421883)}"
-885,5068,GO-20191545428,THEFT UNDER - BICYCLE,2019-08-13T00:00:00,2019,August,Tuesday,13,225,23,2019-08-15T00:00:00,2019,August,Thursday,15,227,9,D22,Toronto,10,Princess-Rosethorn (10),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FELT,ZW3,TO,21,WHI,4000.0,STOLEN,875,"{'type': 'Point', 'coordinates': (-79.52788603, 43.65488316)}"
-886,5586,GO-20192058072,B&E,2019-10-25T00:00:00,2019,October,Friday,25,298,2,2019-10-25T00:00:00,2019,October,Friday,25,298,2,D22,Toronto,10,Princess-Rosethorn (10),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,DESTRO,BM,1,PLE,500.0,STOLEN,876,"{'type': 'Point', 'coordinates': (-79.55453354, 43.66087522)}"
-887,7017,GO-20201565639,B&E,2020-08-20T00:00:00,2020,August,Thursday,20,233,4,2020-08-20T00:00:00,2020,August,Thursday,20,233,12,D22,Toronto,10,Princess-Rosethorn (10),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ROCKY MOUNTAIN,,MT,18,,2000.0,STOLEN,877,"{'type': 'Point', 'coordinates': (-79.53801002, 43.65830311)}"
-888,8637,GO-20142700982,B&E,2014-08-13T00:00:00,2014,August,Wednesday,13,225,18,2014-08-14T00:00:00,2014,August,Thursday,14,226,12,D22,Toronto,10,Princess-Rosethorn (10),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,CAN 13 TRAILS,MT,24,WHIONG,688.0,STOLEN,878,"{'type': 'Point', 'coordinates': (-79.53414157, 43.66611623)}"
-889,8867,GO-20142882414,THEFT UNDER,2014-09-10T00:00:00,2014,September,Wednesday,10,253,10,2014-09-10T00:00:00,2014,September,Wednesday,10,253,13,D22,Toronto,10,Princess-Rosethorn (10),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,U/K,RC,17,BLK,2000.0,STOLEN,879,"{'type': 'Point', 'coordinates': (-79.53729885, 43.66908725)}"
-890,9363,GO-2015549036,THEFT UNDER,2015-03-31T00:00:00,2015,March,Tuesday,31,90,15,2015-04-02T00:00:00,2015,April,Thursday,2,92,18,D22,Toronto,10,Princess-Rosethorn (10),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,,MT,18,GRNBLK,5018.0,STOLEN,880,"{'type': 'Point', 'coordinates': (-79.54942722, 43.66656531)}"
-891,10207,GO-20151370417,B&E,2015-08-07T00:00:00,2015,August,Friday,7,219,18,2015-08-10T00:00:00,2015,August,Monday,10,222,15,D22,Toronto,10,Princess-Rosethorn (10),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,MARLIN 5,MT,21,,500.0,STOLEN,881,"{'type': 'Point', 'coordinates': (-79.54275796, 43.670163120000005)}"
-892,10559,GO-20159007869,THEFT UNDER,2015-09-27T00:00:00,2015,September,Sunday,27,270,16,2015-09-28T00:00:00,2015,September,Monday,28,271,15,D22,Toronto,10,Princess-Rosethorn (10),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,EXPRESSWAY 1,FO,12,BLK,733.0,STOLEN,882,"{'type': 'Point', 'coordinates': (-79.53252806, 43.65998608)}"
-893,10572,GO-20151592575,B&E,2015-09-14T00:00:00,2015,September,Monday,14,257,23,2015-09-15T00:00:00,2015,September,Tuesday,15,258,6,D22,Toronto,10,Princess-Rosethorn (10),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,MT,21,,900.0,STOLEN,883,"{'type': 'Point', 'coordinates': (-79.54608142, 43.66642439)}"
-894,11404,GO-20169005110,THEFT UNDER,2016-05-30T00:00:00,2016,May,Monday,30,151,0,2016-05-30T00:00:00,2016,May,Monday,30,151,13,D22,Toronto,10,Princess-Rosethorn (10),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,,OT,18,SIL,1000.0,STOLEN,884,"{'type': 'Point', 'coordinates': (-79.53888142, 43.66640403)}"
-895,14466,GO-20189034122,THEFT UNDER - BICYCLE,2018-10-11T00:00:00,2018,October,Thursday,11,284,15,2018-10-15T00:00:00,2018,October,Monday,15,288,10,D22,Toronto,10,Princess-Rosethorn (10),Schools During Un-Supervised Activity,Educational,UK,,RG,21,SIL,200.0,STOLEN,885,"{'type': 'Point', 'coordinates': (-79.54530679, 43.65935171)}"
-896,17780,GO-201856324,THEFT UNDER,2018-01-09T00:00:00,2018,January,Tuesday,9,9,20,2018-01-10T00:00:00,2018,January,Wednesday,10,10,12,D22,Toronto,10,Princess-Rosethorn (10),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,TCR,OT,15,BLKBLU,4500.0,STOLEN,886,"{'type': 'Point', 'coordinates': (-79.53617684, 43.66460934)}"
-897,18047,GO-20169009176,FTC PROBATION ORDER,2016-08-19T00:00:00,2016,August,Friday,19,232,16,2016-08-21T00:00:00,2016,August,Sunday,21,234,14,D22,Toronto,10,Princess-Rosethorn (10),Convenience Stores,Commercial,OT,,RC,16,,1400.0,STOLEN,887,"{'type': 'Point', 'coordinates': (-79.53122809, 43.66263042)}"
-898,21082,GO-20199034037,THEFT UNDER - BICYCLE,2019-10-15T00:00:00,2019,October,Tuesday,15,288,10,2019-10-15T00:00:00,2019,October,Tuesday,15,288,23,D22,Toronto,10,Princess-Rosethorn (10),Schools During Un-Supervised Activity,Educational,TR,MARLIN 6,MT,1,BLK,750.0,STOLEN,888,"{'type': 'Point', 'coordinates': (-79.53897667, 43.67983728)}"
-899,21150,GO-20209015846,THEFT UNDER,2020-06-21T00:00:00,2020,June,Sunday,21,173,16,2020-06-21T00:00:00,2020,June,Sunday,21,173,16,D22,Toronto,10,Princess-Rosethorn (10),Convenience Stores,Commercial,FJ,FUJI,RC,24,GRY,600.0,STOLEN,889,"{'type': 'Point', 'coordinates': (-79.53122809, 43.66263042)}"
-900,21345,GO-20181755711,B&E,2018-09-21T00:00:00,2018,September,Friday,21,264,1,2018-09-22T00:00:00,2018,September,Saturday,22,265,8,D22,Toronto,10,Princess-Rosethorn (10),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,SIRRUS,OT,0,BLU,500.0,STOLEN,890,"{'type': 'Point', 'coordinates': (-79.53250412, 43.65593151)}"
-901,22044,GO-20143317888,THEFT UNDER,2014-11-17T00:00:00,2014,November,Monday,17,321,0,2014-11-20T00:00:00,2014,November,Thursday,20,324,10,D22,Toronto,10,Princess-Rosethorn (10),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,CROSSTRAIL,MT,18,,700.0,STOLEN,891,"{'type': 'Point', 'coordinates': (-79.55824452, 43.66642711)}"
-902,23990,GO-20189034122,THEFT UNDER - BICYCLE,2018-10-11T00:00:00,2018,October,Thursday,11,284,15,2018-10-15T00:00:00,2018,October,Monday,15,288,10,D22,Toronto,10,Princess-Rosethorn (10),Schools During Un-Supervised Activity,Educational,UK,,RG,21,SIL,,STOLEN,892,"{'type': 'Point', 'coordinates': (-79.54530679, 43.65935171)}"
-903,24549,GO-20169012265,THEFT UNDER - BICYCLE,2016-10-18T00:00:00,2016,October,Tuesday,18,292,15,2016-10-18T00:00:00,2016,October,Tuesday,18,292,18,D22,Toronto,10,Princess-Rosethorn (10),Schools During Supervised Activity,Educational,GT,GT AIIR,BM,1,YEL,212.0,STOLEN,893,"{'type': 'Point', 'coordinates': (-79.56076198, 43.6727408)}"
-904,312,GO-20179005550,THEFT UNDER - BICYCLE,2017-04-22T00:00:00,2017,April,Saturday,22,112,15,2017-05-01T00:00:00,2017,May,Monday,1,121,16,D22,Toronto,11,Eringate-Centennial-West Deane (11),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,OT,60,BLK,500.0,STOLEN,894,"{'type': 'Point', 'coordinates': (-79.58847392, 43.64469872)}"
-905,360,GO-20179006109,THEFT UNDER - BICYCLE,2017-05-11T00:00:00,2017,May,Thursday,11,131,1,2017-05-11T00:00:00,2017,May,Thursday,11,131,10,D22,Toronto,11,Eringate-Centennial-West Deane (11),"Single Home, House (Attach Garage, Cottage, Mobile)",House,HF,,MT,10,RED,150.0,STOLEN,895,"{'type': 'Point', 'coordinates': (-79.56184662, 43.65644391)}"
-906,361,GO-20179006109,THEFT UNDER - BICYCLE,2017-05-11T00:00:00,2017,May,Thursday,11,131,1,2017-05-11T00:00:00,2017,May,Thursday,11,131,10,D22,Toronto,11,Eringate-Centennial-West Deane (11),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,SC,1,,60.0,STOLEN,896,"{'type': 'Point', 'coordinates': (-79.56184662, 43.65644391)}"
-907,2085,GO-2018494822,THEFT UNDER,2018-03-03T00:00:00,2018,March,Saturday,3,62,9,2018-03-18T00:00:00,2018,March,Sunday,18,77,19,D22,Toronto,11,Eringate-Centennial-West Deane (11),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,OT,10,,,STOLEN,897,"{'type': 'Point', 'coordinates': (-79.57465551, 43.6437102)}"
-908,5255,GO-20199029027,THEFT UNDER,2019-09-04T00:00:00,2019,September,Wednesday,4,247,19,2019-09-06T00:00:00,2019,September,Friday,6,249,21,D22,Toronto,11,Eringate-Centennial-West Deane (11),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,9,BLK,2000.0,STOLEN,898,"{'type': 'Point', 'coordinates': (-79.57240399, 43.655045730000005)}"
-909,6827,GO-20201432585,THEFT OF EBIKE UNDER $5000,2020-07-31T00:00:00,2020,July,Friday,31,213,17,2020-08-01T00:00:00,2020,August,Saturday,1,214,10,D22,Toronto,11,Eringate-Centennial-West Deane (11),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,EM2,EL,1,BLU,1000.0,STOLEN,899,"{'type': 'Point', 'coordinates': (-79.57240399, 43.655045730000005)}"
-910,7563,GO-20202050608,THEFT UNDER - BICYCLE,2020-10-14T00:00:00,2020,October,Wednesday,14,288,17,2020-10-29T00:00:00,2020,October,Thursday,29,303,8,D22,Toronto,11,Eringate-Centennial-West Deane (11),"Open Areas (Lakes, Parks, Rivers)",Outside,NORCO,YORKVILLE,RG,10,BLK,650.0,STOLEN,900,"{'type': 'Point', 'coordinates': (-79.5860098, 43.65789049)}"
-911,9021,GO-20143047434,B&E W'INTENT,2014-10-04T00:00:00,2014,October,Saturday,4,277,18,2014-10-05T00:00:00,2014,October,Sunday,5,278,14,D22,Toronto,11,Eringate-Centennial-West Deane (11),"Single Home, House (Attach Garage, Cottage, Mobile)",House,JAMIS,PARKER,MT,18,BLKLBL,3000.0,STOLEN,901,"{'type': 'Point', 'coordinates': (-79.57982243, 43.64765821)}"
-912,11153,GO-20142517385,POSSESSION PROPERTY OBC OVER,2014-07-09T00:00:00,2014,July,Wednesday,9,190,13,2014-07-17T00:00:00,2014,July,Thursday,17,198,17,D22,Toronto,11,Eringate-Centennial-West Deane (11),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,BOULDER SE,RG,21,BLU,,RECOVERED,902,"{'type': 'Point', 'coordinates': (-79.56980522, 43.66285264)}"
-913,11172,GO-20151046082,PROPERTY - FOUND,2015-06-21T00:00:00,2015,June,Sunday,21,172,22,2015-06-21T00:00:00,2015,June,Sunday,21,172,22,D22,Toronto,11,Eringate-Centennial-West Deane (11),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,1800,MT,18,BLU,,UNKNOWN,903,"{'type': 'Point', 'coordinates': (-79.57438585, 43.64544916)}"
-914,11275,GO-20169004258,THEFT UNDER,2016-05-07T00:00:00,2016,May,Saturday,7,128,14,2016-05-07T00:00:00,2016,May,Saturday,7,128,19,D22,Toronto,11,Eringate-Centennial-West Deane (11),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,18,DBL,200.0,STOLEN,904,"{'type': 'Point', 'coordinates': (-79.57878561, 43.65974304)}"
-915,12235,GO-20161529957,THEFT UNDER,2016-08-22T00:00:00,2016,August,Monday,22,235,23,2016-08-29T00:00:00,2016,August,Monday,29,242,9,D22,Toronto,11,Eringate-Centennial-West Deane (11),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN,,OT,1,,,STOLEN,905,"{'type': 'Point', 'coordinates': (-79.57244795, 43.64334087)}"
-916,12549,GO-20169011543,THEFT UNDER - BICYCLE,2016-10-03T00:00:00,2016,October,Monday,3,277,14,2016-10-04T00:00:00,2016,October,Tuesday,4,278,14,D22,Toronto,11,Eringate-Centennial-West Deane (11),Schools During Supervised Activity,Educational,OT,,BM,1,BLK,500.0,STOLEN,906,"{'type': 'Point', 'coordinates': (-79.58704507, 43.6613171)}"
-917,14933,GO-20142940785,THEFT UNDER,2014-09-05T00:00:00,2014,September,Friday,5,248,16,2014-09-19T00:00:00,2014,September,Friday,19,262,12,D22,Toronto,11,Eringate-Centennial-West Deane (11),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,8.5 WHEEL DS,RG,21,BLKGRN,1200.0,STOLEN,907,"{'type': 'Point', 'coordinates': (-79.57917427, 43.6585847)}"
-918,14938,GO-20143322235,B&E,2014-11-17T00:00:00,2014,November,Monday,17,321,20,2014-11-18T00:00:00,2014,November,Tuesday,18,322,9,D22,Toronto,11,Eringate-Centennial-West Deane (11),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,HARDROCK,MT,7,BLK,500.0,STOLEN,908,"{'type': 'Point', 'coordinates': (-79.56311095, 43.66431439)}"
-919,15009,GO-20169007401,THEFT UNDER - BICYCLE,2016-07-18T00:00:00,2016,July,Monday,18,200,23,2016-07-19T00:00:00,2016,July,Tuesday,19,201,11,D22,Toronto,11,Eringate-Centennial-West Deane (11),"Apartment (Rooming House, Condo)",Apartment,SU,700C,RC,21,,400.0,STOLEN,909,"{'type': 'Point', 'coordinates': (-79.58433063, 43.63920551)}"
-920,4598,GO-20199019977,THEFT UNDER,2019-06-09T00:00:00,2019,June,Sunday,9,160,14,2019-06-24T00:00:00,2019,June,Monday,24,175,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,2017 EVO GRANVI,RG,8,GRY,406.0,STOLEN,910,"{'type': 'Point', 'coordinates': (-79.48497603, 43.62140475)}"
-921,4621,GO-20191195753,THEFT UNDER,2019-06-24T00:00:00,2019,June,Monday,24,175,17,2019-06-27T00:00:00,2019,June,Thursday,27,178,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GARY FISHER,TARPON,MT,21,RED,600.0,STOLEN,911,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}"
-922,384,GO-20179006276,THEFT UNDER - BICYCLE,2017-05-14T00:00:00,2017,May,Sunday,14,134,10,2017-05-14T00:00:00,2017,May,Sunday,14,134,17,D33,Toronto,52,Bayview Village (52),Ttc Subway Station,Transit,CC,ALPHA,MT,21,BLK,0.0,STOLEN,3263,"{'type': 'Point', 'coordinates': (-79.37562316000002, 43.7694024)}"
-923,4718,GO-20199021602,THEFT UNDER,2019-06-09T00:00:00,2019,June,Sunday,9,160,12,2019-07-09T00:00:00,2019,July,Tuesday,9,190,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,TR,,RG,5,BLU,0.0,STOLEN,913,"{'type': 'Point', 'coordinates': (-79.47687625, 43.63027025)}"
-924,4725,GO-20199021704,THEFT UNDER,2019-06-19T00:00:00,2019,June,Wednesday,19,170,12,2019-07-10T00:00:00,2019,July,Wednesday,10,191,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,NO,XFR 4M,RG,24,ONG,914.0,STOLEN,914,"{'type': 'Point', 'coordinates': (-79.47687625, 43.63027025)}"
-925,4749,GO-20199021905,THEFT UNDER,2019-06-27T00:00:00,2019,June,Thursday,27,178,15,2019-07-11T00:00:00,2019,July,Thursday,11,192,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GF,,MT,21,SIL,800.0,STOLEN,915,"{'type': 'Point', 'coordinates': (-79.47687625, 43.63027025)}"
-926,4783,GO-20199022488,THEFT UNDER,2019-07-15T00:00:00,2019,July,Monday,15,196,22,2019-07-16T00:00:00,2019,July,Tuesday,16,197,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,"22"""" BLACK ROADS",RG,3,BLK,800.0,STOLEN,916,"{'type': 'Point', 'coordinates': (-79.48877277, 43.6186948)}"
-927,4784,GO-20199022519,THEFT UNDER,2019-07-16T00:00:00,2019,July,Tuesday,16,197,3,2019-07-16T00:00:00,2019,July,Tuesday,16,197,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,UK,VITA,RG,14,WHI,500.0,STOLEN,917,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}"
-928,4794,GO-20199022701,THEFT UNDER,2019-07-17T00:00:00,2019,July,Wednesday,17,198,8,2019-07-17T00:00:00,2019,July,Wednesday,17,198,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,SIRRUS MENS,RG,8,GRY,999.0,STOLEN,918,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}"
-929,4977,GO-20199025098,FTC PROBATION ORDER,2019-08-01T00:00:00,2019,August,Thursday,1,213,13,2019-08-06T00:00:00,2019,August,Tuesday,6,218,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,UK,VFR-5,TO,21,BLK,749.0,STOLEN,919,"{'type': 'Point', 'coordinates': (-79.48643252, 43.61892859)}"
-930,4996,GO-20199025318,THEFT UNDER,2019-08-07T00:00:00,2019,August,Wednesday,7,219,7,2019-08-07T00:00:00,2019,August,Wednesday,7,219,22,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Go Station,Transit,UK,F75,RC,20,BLK,1000.0,STOLEN,920,"{'type': 'Point', 'coordinates': (-79.4988831, 43.61749816)}"
-931,5000,GO-20191500625,B&E,2019-05-18T00:00:00,2019,May,Saturday,18,138,17,2019-08-08T00:00:00,2019,August,Thursday,8,220,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,RC,1,BLKPNK,4000.0,STOLEN,921,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-932,5016,GO-20199025596,THEFT UNDER,2019-08-07T00:00:00,2019,August,Wednesday,7,219,2,2019-08-09T00:00:00,2019,August,Friday,9,221,22,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Go Station,Transit,GI,,MT,12,SIL,0.0,STOLEN,922,"{'type': 'Point', 'coordinates': (-79.49833024, 43.61617493)}"
-933,5142,GO-20191584006,B&E W'INTENT,2019-08-01T00:00:00,2019,August,Thursday,1,213,17,2019-08-20T00:00:00,2019,August,Tuesday,20,232,10,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,21,BLK,198.0,STOLEN,923,"{'type': 'Point', 'coordinates': (-79.47706999, 43.62578178)}"
-934,5147,GO-20199027447,THEFT UNDER,2019-08-23T00:00:00,2019,August,Friday,23,235,19,2019-08-23T00:00:00,2019,August,Friday,23,235,19,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,MT,27,BLK,2000.0,STOLEN,924,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}"
-935,5206,GO-20199028419,THEFT UNDER,2019-08-22T00:00:00,2019,August,Thursday,22,234,8,2019-09-01T00:00:00,2019,September,Sunday,1,244,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,NO,INDIE 3,MT,8,PLE,650.0,STOLEN,925,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-936,5212,GO-20199028491,THEFT UNDER,2019-08-02T00:00:00,2019,August,Friday,2,214,15,2019-09-02T00:00:00,2019,September,Monday,2,245,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,,MT,5,,1000.0,STOLEN,926,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-937,5216,GO-20199028535,THEFT UNDER,2019-08-29T00:00:00,2019,August,Thursday,29,241,17,2019-09-02T00:00:00,2019,September,Monday,2,245,19,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GT,KARAKORAM ELITE,MT,24,BLK,300.0,STOLEN,927,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-938,5267,GO-20191721677,PROPERTY - FOUND,2019-09-08T00:00:00,2019,September,Sunday,8,251,13,2019-09-08T00:00:00,2019,September,Sunday,8,251,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,INFINITY,RICOCHET,MT,5,RED,,RECOVERED,928,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-939,5317,GO-20199029899,THEFT UNDER,2019-08-19T00:00:00,2019,August,Monday,19,231,20,2019-09-13T00:00:00,2019,September,Friday,13,256,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GI,ROVE 3,MT,24,BLK,800.0,STOLEN,929,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-940,5462,GO-20191907212,THEFT UNDER - BICYCLE,2019-10-03T00:00:00,2019,October,Thursday,3,276,6,2019-10-03T00:00:00,2019,October,Thursday,3,276,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SUPERCYCLE,PHANTOM 29,MT,18,BLKONG,500.0,STOLEN,930,"{'type': 'Point', 'coordinates': (-79.49833024, 43.61617493)}"
-941,5610,GO-20199035671,THEFT UNDER,2019-10-28T00:00:00,2019,October,Monday,28,301,6,2019-10-29T00:00:00,2019,October,Tuesday,29,302,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,RISER,OT,18,ONG,700.0,STOLEN,931,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-942,5615,GO-20199035671,THEFT UNDER,2019-10-28T00:00:00,2019,October,Monday,28,301,6,2019-10-29T00:00:00,2019,October,Tuesday,29,302,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,RISER,OT,18,ONG,700.0,STOLEN,932,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-943,5657,GO-20199036675,THEFT UNDER,2019-09-15T00:00:00,2019,September,Sunday,15,258,0,2019-11-06T00:00:00,2019,November,Wednesday,6,310,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,XC-29,MT,24,BLK,700.0,STOLEN,933,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-944,5672,GO-20199036991,THEFT UNDER,2019-11-09T00:00:00,2019,November,Saturday,9,313,10,2019-11-09T00:00:00,2019,November,Saturday,9,313,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,COMP,RC,10,SIL,2900.0,STOLEN,934,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}"
-945,5747,GO-20199039814,THEFT UNDER,2019-11-08T00:00:00,2019,November,Friday,8,312,13,2019-12-04T00:00:00,2019,December,Wednesday,4,338,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,CA,,RG,7,BLK,2500.0,STOLEN,935,"{'type': 'Point', 'coordinates': (-79.47706999, 43.62578178)}"
-946,6181,GO-20209013064,THEFT UNDER,2019-07-30T00:00:00,2019,July,Tuesday,30,211,20,2020-05-13T00:00:00,2020,May,Wednesday,13,134,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,18,CPR,500.0,STOLEN,944,"{'type': 'Point', 'coordinates': (-79.47687625, 43.63027025)}"
-947,5845,GO-20209002364,THEFT UNDER,2019-12-28T00:00:00,2019,December,Saturday,28,362,19,2020-01-20T00:00:00,2020,January,Monday,20,20,21,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,F700,MT,27,BLK,0.0,STOLEN,936,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}"
-948,5920,GO-20209006522,THEFT UNDER,2019-06-23T00:00:00,2019,June,Sunday,23,174,23,2020-02-23T00:00:00,2020,February,Sunday,23,54,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,12,RED,2500.0,STOLEN,937,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-949,6002,GO-20209010144,THEFT UNDER,2020-03-22T00:00:00,2020,March,Sunday,22,82,11,2020-03-30T00:00:00,2020,March,Monday,30,90,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GT,,MT,18,BLK,400.0,STOLEN,938,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-950,6015,GO-2020642120,THEFT UNDER - BICYCLE,2019-12-31T00:00:00,2019,December,Tuesday,31,365,0,2020-04-01T00:00:00,2020,April,Wednesday,1,92,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,TREK,EMONDA,RG,22,BLKRED,1200.0,STOLEN,939,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-951,6059,GO-20209011060,THEFT UNDER,2020-04-12T00:00:00,2020,April,Sunday,12,103,22,2020-04-13T00:00:00,2020,April,Monday,13,104,19,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,WAYFARER,RG,7,BLU,500.0,STOLEN,940,"{'type': 'Point', 'coordinates': (-79.4996323, 43.60648283)}"
-952,6060,GO-20209011098,THEFT UNDER,2020-03-27T00:00:00,2020,March,Friday,27,87,12,2020-04-14T00:00:00,2020,April,Tuesday,14,105,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,CC,SAVAGE,MT,18,BLK,350.0,STOLEN,941,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-953,6090,GO-2020767051,THEFT UNDER,2020-03-15T00:00:00,2020,March,Sunday,15,75,10,2020-04-22T00:00:00,2020,April,Wednesday,22,113,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,BIRZY,BIRZY 1,FO,9,SIL,3000.0,STOLEN,942,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-954,6140,GO-2020836282,THEFT UNDER,2020-01-01T00:00:00,2020,January,Wednesday,1,1,0,2020-05-04T00:00:00,2020,May,Monday,4,125,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,E TRAIL,OT,1,,750.0,STOLEN,943,"{'type': 'Point', 'coordinates': (-79.47893413, 43.62369402)}"
-955,6182,GO-20209013064,THEFT UNDER,2019-07-30T00:00:00,2019,July,Tuesday,30,211,20,2020-05-13T00:00:00,2020,May,Wednesday,13,134,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GIANT,,MT,18,CPR,500.0,STOLEN,945,"{'type': 'Point', 'coordinates': (-79.47687625, 43.63027025)}"
-956,6211,GO-20209013510,THEFT UNDER,2020-05-08T00:00:00,2020,May,Friday,8,129,19,2020-05-20T00:00:00,2020,May,Wednesday,20,141,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,VITO,MT,1,BLK,300.0,STOLEN,946,"{'type': 'Point', 'coordinates': (-79.47706999, 43.62578178)}"
-957,6272,GO-2020998717,THEFT UNDER - BICYCLE,2020-05-15T00:00:00,2020,May,Friday,15,136,0,2020-05-30T00:00:00,2020,May,Saturday,30,151,19,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,,MT,21,,700.0,STOLEN,947,"{'type': 'Point', 'coordinates': (-79.49759779, 43.61432512)}"
-958,6277,GO-20209014316,THEFT UNDER,2020-05-31T00:00:00,2020,May,Sunday,31,152,9,2020-06-01T00:00:00,2020,June,Monday,1,153,8,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,SOLOIST,RG,20,BLK,399.0,STOLEN,948,"{'type': 'Point', 'coordinates': (-79.47864061, 43.6248261)}"
-959,6352,GO-20209015072,THEFT UNDER,2020-06-07T00:00:00,2020,June,Sunday,7,159,13,2020-06-10T00:00:00,2020,June,Wednesday,10,162,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,VALENCE A CLARI,RC,18,GRN,1000.0,STOLEN,949,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-960,6357,GO-20201080990,THEFT UNDER - BICYCLE,2020-06-04T00:00:00,2020,June,Thursday,4,156,17,2020-06-12T00:00:00,2020,June,Friday,12,164,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,FUJI,ABSOLUTE,RG,27,GRY,850.0,STOLEN,950,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-961,6382,GO-20201072827,THEFT UNDER - BICYCLE,2020-06-11T00:00:00,2020,June,Thursday,11,163,8,2020-06-14T00:00:00,2020,June,Sunday,14,166,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GREENSPEED,GT3 TRIKE,TR,27,RED,3000.0,STOLEN,951,"{'type': 'Point', 'coordinates': (-79.48731142, 43.61728142)}"
-962,10541,GO-20159007711,THEFT UNDER,2015-09-24T00:00:00,2015,September,Thursday,24,267,16,2015-09-24T00:00:00,2015,September,Thursday,24,267,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,DAVINCI,MT,24,BLU,1200.0,STOLEN,989,"{'type': 'Point', 'coordinates': (-79.48760733, 43.62206923)}"
-963,6400,GO-20209015389,THEFT FROM MOTOR VEHICLE UNDER,2020-06-14T00:00:00,2020,June,Sunday,14,166,21,2020-06-15T00:00:00,2020,June,Monday,15,167,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,VENETO,RG,21,RED,750.0,STOLEN,952,"{'type': 'Point', 'coordinates': (-79.4897495, 43.61273143)}"
-964,6726,GO-20201382695,B&E,2020-07-24T00:00:00,2020,July,Friday,24,206,18,2020-07-25T00:00:00,2020,July,Saturday,25,207,9,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CANNONDALE,,MT,21,GRNBLU,2000.0,STOLEN,953,"{'type': 'Point', 'coordinates': (-79.4972373, 43.60240525)}"
-965,6755,GO-20209018664,THEFT UNDER,2020-07-25T00:00:00,2020,July,Saturday,25,207,12,2020-07-27T00:00:00,2020,July,Monday,27,209,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,ST-TROPEZ,RG,24,,750.0,STOLEN,954,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-966,6790,GO-20201407841,THEFT OVER,2020-07-23T00:00:00,2020,July,Thursday,23,205,1,2020-07-28T00:00:00,2020,July,Tuesday,28,210,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,KONA,,OT,27,SIL,5000.0,STOLEN,955,"{'type': 'Point', 'coordinates': (-79.47893413, 43.62369402)}"
-967,6855,GO-20209019260,THEFT UNDER,2020-07-03T00:00:00,2020,July,Friday,3,185,15,2020-08-03T00:00:00,2020,August,Monday,3,216,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,CHAMELEON,MT,27,DGR,1300.0,STOLEN,956,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}"
-968,6915,GO-20209019787,THEFT UNDER,2020-08-07T00:00:00,2020,August,Friday,7,220,20,2020-08-10T00:00:00,2020,August,Monday,10,223,10,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,ALLEZ,RC,16,ONG,1049.0,STOLEN,957,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-969,7151,GO-20209022022,THEFT UNDER,2020-09-01T00:00:00,2020,September,Tuesday,1,245,3,2020-09-01T00:00:00,2020,September,Tuesday,1,245,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,NO,,RG,28,YEL,649.0,STOLEN,958,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}"
-970,7152,GO-20209022022,THEFT UNDER,2020-09-01T00:00:00,2020,September,Tuesday,1,245,3,2020-09-01T00:00:00,2020,September,Tuesday,1,245,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,NO,,RG,28,GRY,630.0,STOLEN,959,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}"
-971,7504,GO-20201983292,THEFT FROM MOTOR VEHICLE OVER,2020-10-07T00:00:00,2020,October,Wednesday,7,281,22,2020-10-19T00:00:00,2020,October,Monday,19,293,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,MACH 5.5,MT,11,BLK,11000.0,STOLEN,960,"{'type': 'Point', 'coordinates': (-79.4964716, 43.61975747)}"
-972,7597,GO-20209028848,THEFT UNDER,2020-11-07T00:00:00,2020,November,Saturday,7,312,11,2020-11-07T00:00:00,2020,November,Saturday,7,312,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,DB,OVERDRIVE ST HA,MT,24,GRN,1000.0,STOLEN,961,"{'type': 'Point', 'coordinates': (-79.49250392000002, 43.62336236)}"
-973,7601,GO-20202112931,B&E,2020-11-01T00:00:00,2020,November,Sunday,1,306,8,2020-11-08T00:00:00,2020,November,Sunday,8,313,10,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,NORTHROCK,,RG,18,BLK,1500.0,UNKNOWN,962,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-974,8004,GO-20149003680,THEFT UNDER,2014-05-21T00:00:00,2014,May,Wednesday,21,141,9,2014-05-30T00:00:00,2014,May,Friday,30,150,9,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,MO,,MT,18,GRY,500.0,STOLEN,963,"{'type': 'Point', 'coordinates': (-79.50149815, 43.62075091)}"
-975,8116,GO-20149003933,THEFT UNDER,2014-06-09T00:00:00,2014,June,Monday,9,160,10,2014-06-09T00:00:00,2014,June,Monday,9,160,21,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,OPAL,OT,18,BLU,,STOLEN,964,"{'type': 'Point', 'coordinates': (-79.49023447, 43.61591799)}"
-976,8251,GO-20149004435,THEFT UNDER,2014-06-03T00:00:00,2014,June,Tuesday,3,154,6,2014-06-25T00:00:00,2014,June,Wednesday,25,176,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,CROSSROADS XL,RG,21,WHI,543.0,STOLEN,965,"{'type': 'Point', 'coordinates': (-79.47400022, 43.6305708)}"
-977,8573,GO-20142630915,THEFT UNDER,2014-07-30T00:00:00,2014,July,Wednesday,30,211,20,2014-08-03T00:00:00,2014,August,Sunday,3,215,21,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUPERCYCLE,SC700C TEMPO,OT,21,BLUSIL,190.0,STOLEN,966,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}"
-978,11534,GO-20169005825,THEFT UNDER,2016-06-12T00:00:00,2016,June,Sunday,12,164,12,2016-06-15T00:00:00,2016,June,Wednesday,15,167,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GI,A LIGHT 2,RG,24,WHI,590.0,STOLEN,998,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-979,8604,GO-20149005701,THEFT UNDER,2014-08-02T00:00:00,2014,August,Saturday,2,214,22,2014-08-07T00:00:00,2014,August,Thursday,7,219,10,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SCWHINN,FOTO,MT,10,PLE,350.0,STOLEN,967,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}"
-980,8605,GO-20149005701,THEFT UNDER,2014-08-02T00:00:00,2014,August,Saturday,2,214,22,2014-08-07T00:00:00,2014,August,Thursday,7,219,10,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,FO,10,YEL,300.0,STOLEN,968,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}"
-981,8664,GO-20149005959,THEFT UNDER,2014-08-07T00:00:00,2014,August,Thursday,7,219,7,2014-08-14T00:00:00,2014,August,Thursday,14,226,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SOLOIST,RC,1,WHI,419.0,STOLEN,969,"{'type': 'Point', 'coordinates': (-79.49330736, 43.61684986)}"
-982,8827,GO-20142870355,THEFT UNDER,2014-09-07T00:00:00,2014,September,Sunday,7,250,15,2014-09-08T00:00:00,2014,September,Monday,8,251,19,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,ARGON 18,KRYPTON,RC,18,BLKRED,1400.0,STOLEN,970,"{'type': 'Point', 'coordinates': (-79.4964716, 43.61975747)}"
-983,8845,GO-20142886580,THEFT UNDER,2014-09-11T00:00:00,2014,September,Thursday,11,254,2,2014-09-11T00:00:00,2014,September,Thursday,11,254,6,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,AGRESSOR,BM,18,BLKGRN,480.0,STOLEN,971,"{'type': 'Point', 'coordinates': (-79.49287281, 43.61784449)}"
-984,9019,GO-20143042408,THEFT UNDER,2014-09-30T00:00:00,2014,September,Tuesday,30,273,8,2014-10-04T00:00:00,2014,October,Saturday,4,277,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Go Station,Transit,TREK,,MT,21,REDWHI,700.0,STOLEN,972,"{'type': 'Point', 'coordinates': (-79.49833024, 43.61617493)}"
-985,9022,GO-20143049446,THEFT UNDER,2014-10-03T00:00:00,2014,October,Friday,3,276,18,2014-10-05T00:00:00,2014,October,Sunday,5,278,21,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RALEIGH,TARANTUALA,MT,21,SIL,250.0,STOLEN,973,"{'type': 'Point', 'coordinates': (-79.49131679, 43.62006774)}"
-986,9039,GO-20143078795,THEFT UNDER,2014-10-05T00:00:00,2014,October,Sunday,5,278,19,2014-10-10T00:00:00,2014,October,Friday,10,283,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,C4 VALENCE,RC,18,BLKYEL,2200.0,STOLEN,974,"{'type': 'Point', 'coordinates': (-79.49099109, 43.61535546)}"
-987,9125,GO-20149007885,THEFT UNDER,2014-10-29T00:00:00,2014,October,Wednesday,29,302,8,2014-10-29T00:00:00,2014,October,Wednesday,29,302,9,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,DENALI,RC,21,BLK,200.0,STOLEN,975,"{'type': 'Point', 'coordinates': (-79.49591553, 43.61469863)}"
-988,9208,GO-20149008471,THEFT UNDER,2014-08-27T00:00:00,2014,August,Wednesday,27,239,10,2014-12-01T00:00:00,2014,December,Monday,1,335,10,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,CARBON SIX,RC,20,SIL,3000.0,STOLEN,976,"{'type': 'Point', 'coordinates': (-79.49250392000002, 43.62336236)}"
-989,9284,GO-2015188433,THEFT UNDER,2015-01-31T00:00:00,2015,January,Saturday,31,31,14,2015-02-01T00:00:00,2015,February,Sunday,1,32,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPYDER,,EL,1,BLK,1700.0,STOLEN,977,"{'type': 'Point', 'coordinates': (-79.49138084, 43.62576989)}"
-990,9628,GO-2015851565,THEFT UNDER,2015-05-22T00:00:00,2015,May,Friday,22,142,7,2015-05-22T00:00:00,2015,May,Friday,22,142,8,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Gas Station (Self, Full, Attached Convenience)",Commercial,SCHWINN,,RG,1,WHIPLE,,STOLEN,978,"{'type': 'Point', 'coordinates': (-79.5207129, 43.60720227)}"
-991,9781,GO-20159003528,THEFT UNDER,2015-06-05T00:00:00,2015,June,Friday,5,156,14,2015-06-11T00:00:00,2015,June,Thursday,11,162,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Go Station,Transit,OT,,RG,5,GRN,700.0,STOLEN,979,"{'type': 'Point', 'coordinates': (-79.49833024, 43.61617493)}"
-992,9796,GO-20159003572,THEFT UNDER,2015-06-08T00:00:00,2015,June,Monday,8,159,16,2015-06-13T00:00:00,2015,June,Saturday,13,164,8,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Go Station,Transit,CC,BLACK ICE,MT,15,BLK,100.0,STOLEN,980,"{'type': 'Point', 'coordinates': (-79.49833024, 43.61617493)}"
-993,9797,GO-2015985882,THEFT UNDER,2015-06-03T00:00:00,2015,June,Wednesday,3,154,16,2015-06-12T00:00:00,2015,June,Friday,12,163,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Go Station,Transit,OTHER,COMFORT,TO,21,GRNBLU,200.0,STOLEN,981,"{'type': 'Point', 'coordinates': (-79.49833024, 43.61617493)}"
-994,10080,GO-20159004870,THEFT UNDER,2015-07-23T00:00:00,2015,July,Thursday,23,204,15,2015-07-24T00:00:00,2015,July,Friday,24,205,10,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,DRIVE XP WF,RG,30,GRY,1000.0,STOLEN,982,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}"
-995,10146,GO-20151316670,THEFT UNDER,2015-07-21T00:00:00,2015,July,Tuesday,21,202,0,2015-08-01T00:00:00,2015,August,Saturday,1,213,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,MADONE 5.9,RC,20,BLKWHI,5000.0,STOLEN,983,"{'type': 'Point', 'coordinates': (-79.47400022, 43.6305708)}"
-996,10199,GO-20151364239,THEFT UNDER,2015-08-08T00:00:00,2015,August,Saturday,8,220,22,2015-08-09T00:00:00,2015,August,Sunday,9,221,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Go Station,Transit,OTHER,MOTORINO XPE,EL,1,BGEYEL,2300.0,STOLEN,984,"{'type': 'Point', 'coordinates': (-79.49833024, 43.61617493)}"
-997,10208,GO-20151371438,PROPERTY - FOUND,2015-08-03T00:00:00,2015,August,Monday,3,215,12,2015-08-10T00:00:00,2015,August,Monday,10,222,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RALEIGH,EZ LIFE,MT,24,BLU,,UNKNOWN,985,"{'type': 'Point', 'coordinates': (-79.48999212, 43.61115169)}"
-998,10209,GO-20151371438,PROPERTY - FOUND,2015-08-03T00:00:00,2015,August,Monday,3,215,12,2015-08-10T00:00:00,2015,August,Monday,10,222,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SEKINE,EZ LIFE,RG,24,BLUWHI,,UNKNOWN,986,"{'type': 'Point', 'coordinates': (-79.48999212, 43.61115169)}"
-999,10386,GO-20159006628,THEFT UNDER,2015-08-30T00:00:00,2015,August,Sunday,30,242,21,2015-09-01T00:00:00,2015,September,Tuesday,1,244,21,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,CC,PRESTO 700CC,OT,21,BLK,380.0,STOLEN,987,"{'type': 'Point', 'coordinates': (-79.48819449, 43.61573777)}"
-1000,10533,GO-20159007638,THEFT UNDER,2015-09-23T00:00:00,2015,September,Wednesday,23,266,11,2015-09-23T00:00:00,2015,September,Wednesday,23,266,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ALIGHT 2,OT,24,PLE,500.0,STOLEN,988,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}"
-1001,10710,GO-20151883885,THEFT OF MOTOR VEHICLE,2015-11-01T00:00:00,2015,November,Sunday,1,305,20,2015-11-02T00:00:00,2015,November,Monday,2,306,19,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,MT,21,,900.0,STOLEN,990,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}"
-1002,10718,GO-20159009338,THEFT UNDER,2015-11-03T00:00:00,2015,November,Tuesday,3,307,21,2015-11-03T00:00:00,2015,November,Tuesday,3,307,23,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GT,,MT,8,OTH,500.0,STOLEN,991,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-1003,10802,GO-20159010043,THEFT UNDER,2015-11-22T00:00:00,2015,November,Sunday,22,326,13,2015-11-22T00:00:00,2015,November,Sunday,22,326,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,P3,RC,25,WHI,4000.0,STOLEN,992,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}"
-1004,10985,GO-2016246826,THEFT UNDER,2016-01-13T00:00:00,2016,January,Wednesday,13,13,19,2016-02-10T00:00:00,2016,February,Wednesday,10,41,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,MT,0,BLU,,STOLEN,993,"{'type': 'Point', 'coordinates': (-79.48643252, 43.61892859)}"
-1005,11058,GO-20169002452,THEFT UNDER,2016-03-16T00:00:00,2016,March,Wednesday,16,76,19,2016-03-17T00:00:00,2016,March,Thursday,17,77,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GI,OCR 3,RC,8,GRY,600.0,STOLEN,994,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-1006,11093,GO-20169002993,THEFT UNDER,2016-03-21T00:00:00,2016,March,Monday,21,81,0,2016-04-02T00:00:00,2016,April,Saturday,2,93,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,,RC,10,BLK,300.0,STOLEN,995,"{'type': 'Point', 'coordinates': (-79.49455, 43.61045439)}"
-1007,11117,GO-2016596668,THEFT UNDER - BICYCLE,2016-04-04T00:00:00,2016,April,Monday,4,95,9,2016-04-08T00:00:00,2016,April,Friday,8,99,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,BABYLON,HYBRID,OT,10,BLK,900.0,STOLEN,996,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-1008,11167,GO-2016677147,THEFT UNDER - BICYCLE,2016-04-20T00:00:00,2016,April,Wednesday,20,111,9,2016-04-21T00:00:00,2016,April,Thursday,21,112,7,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GIANT,,MT,21,BLK,2000.0,STOLEN,997,"{'type': 'Point', 'coordinates': (-79.49250392000002, 43.62336236)}"
-1009,11567,GO-20169005935,THEFT UNDER,2016-06-16T00:00:00,2016,June,Thursday,16,168,19,2016-06-17T00:00:00,2016,June,Friday,17,169,10,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,FJ,,OT,24,SIL,1250.0,STOLEN,999,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}"
-1010,12560,GO-20161773571,THEFT UNDER - BICYCLE,2016-10-05T00:00:00,2016,October,Wednesday,5,279,18,2016-10-05T00:00:00,2016,October,Wednesday,5,279,18,D31,Toronto,25,Glenfield-Jane Heights (25),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,MT,10,BLUWHI,,STOLEN,1000,"{'type': 'Point', 'coordinates': (-79.52066166, 43.75673277)}"
-1011,14295,GO-20201504547,ROBBERY - SWARMING,2020-08-11T00:00:00,2020,August,Tuesday,11,224,18,2020-08-11T00:00:00,2020,August,Tuesday,11,224,21,D31,Toronto,25,Glenfield-Jane Heights (25),"Open Areas (Lakes, Parks, Rivers)",Outside,SCHWINN,,MT,10,BLACVK,230.0,STOLEN,1001,"{'type': 'Point', 'coordinates': (-79.50583104000002, 43.7435423)}"
-1012,14538,GO-20191278645,ROBBERY - MUGGING,2019-07-08T00:00:00,2019,July,Monday,8,189,21,2019-07-09T00:00:00,2019,July,Tuesday,9,190,9,D31,Toronto,25,Glenfield-Jane Heights (25),Schools During Un-Supervised Activity,Educational,KRANKED,FULL SUSP MTB,MT,21,BLKGRN,600.0,STOLEN,1002,"{'type': 'Point', 'coordinates': (-79.50903948, 43.7563086)}"
-1013,14710,GO-20171613192,THEFT OF EBIKE UNDER $5000,2017-09-01T00:00:00,2017,September,Friday,1,244,12,2017-09-06T00:00:00,2017,September,Wednesday,6,249,10,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,LE ORANGE,EL,0,ONG,3000.0,STOLEN,1003,"{'type': 'Point', 'coordinates': (-79.51603747, 43.75073765)}"
-1014,14715,GO-20171675971,THEFT UNDER - BICYCLE,2017-09-11T00:00:00,2017,September,Monday,11,254,16,2017-09-15T00:00:00,2017,September,Friday,15,258,19,D31,Toronto,25,Glenfield-Jane Heights (25),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,INFINITY\,BRAVO,MT,18,GRY,100.0,STOLEN,1004,"{'type': 'Point', 'coordinates': (-79.50788955, 43.7592841)}"
-1015,14743,GO-20173048859,THEFT OF EBIKE UNDER $5000,2017-11-11T00:00:00,2017,November,Saturday,11,315,15,2017-11-22T00:00:00,2017,November,Wednesday,22,326,17,D31,Toronto,25,Glenfield-Jane Heights (25),"Apartment (Rooming House, Condo)",Apartment,OTHER,RICKSHAW,EL,4,RED,1500.0,STOLEN,1005,"{'type': 'Point', 'coordinates': (-79.51134996, 43.75013528)}"
-1016,6312,GO-20209014748,THEFT UNDER - BICYCLE,2020-06-06T00:00:00,2020,June,Saturday,6,158,1,2020-06-06T00:00:00,2020,June,Saturday,6,158,16,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,SU,SHIMANO,MT,4,BLU,400.0,STOLEN,1228,"{'type': 'Point', 'coordinates': (-79.45239005, 43.71432793)}"
-1017,14776,GO-20189014292,THEFT UNDER - BICYCLE,2018-05-08T00:00:00,2018,May,Tuesday,8,128,18,2018-05-09T00:00:00,2018,May,Wednesday,9,129,13,D31,Toronto,25,Glenfield-Jane Heights (25),Schools During Supervised Activity,Educational,MA,LARKSPUR CS3 (2,RG,27,GRY,450.0,STOLEN,1006,"{'type': 'Point', 'coordinates': (-79.51277036, 43.75147357)}"
-1018,14814,GO-20189021536,THEFT UNDER - BICYCLE,2018-07-07T00:00:00,2018,July,Saturday,7,188,14,2018-07-07T00:00:00,2018,July,Saturday,7,188,15,D31,Toronto,25,Glenfield-Jane Heights (25),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,RG,18,DBL,75.0,STOLEN,1007,"{'type': 'Point', 'coordinates': (-79.50788955, 43.7592841)}"
-1019,14977,GO-20159007733,THEFT UNDER,2015-09-24T00:00:00,2015,September,Thursday,24,267,20,2015-09-25T00:00:00,2015,September,Friday,25,268,10,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,5,BLU,300.0,STOLEN,1008,"{'type': 'Point', 'coordinates': (-79.52016811, 43.75248185)}"
-1020,14979,GO-20151703837,THEFT UNDER,2015-09-24T00:00:00,2015,September,Thursday,24,267,20,2015-10-02T00:00:00,2015,October,Friday,2,275,21,D31,Toronto,25,Glenfield-Jane Heights (25),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,RG,0,RED,120.0,STOLEN,1009,"{'type': 'Point', 'coordinates': (-79.51685836, 43.75241579)}"
-1021,14995,GO-2016791360,ROBBERY - MUGGING,2016-05-08T00:00:00,2016,May,Sunday,8,129,17,2016-05-08T00:00:00,2016,May,Sunday,8,129,17,D31,Toronto,25,Glenfield-Jane Heights (25),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,,MT,6,BLK,500.0,STOLEN,1010,"{'type': 'Point', 'coordinates': (-79.51769107, 43.75723544)}"
-1022,15006,GO-20169006884,THEFT UNDER,2016-07-07T00:00:00,2016,July,Thursday,7,189,20,2016-07-07T00:00:00,2016,July,Thursday,7,189,23,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,CORSO,MT,26,BLK,400.0,STOLEN,1011,"{'type': 'Point', 'coordinates': (-79.51160413, 43.74628736)}"
-1023,15026,GO-20161558940,THEFT UNDER - BICYCLE,2016-09-02T00:00:00,2016,September,Friday,2,246,17,2016-09-02T00:00:00,2016,September,Friday,2,246,17,D31,Toronto,25,Glenfield-Jane Heights (25),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,HUFFY,GRANITE,MT,15,LBLSIL,130.0,STOLEN,1012,"{'type': 'Point', 'coordinates': (-79.50903948, 43.7563086)}"
-1024,15041,GO-2017410321,THEFT OF EBIKE UNDER $5000,2017-03-05T00:00:00,2017,March,Sunday,5,64,18,2017-03-06T00:00:00,2017,March,Monday,6,65,17,D31,Toronto,25,Glenfield-Jane Heights (25),"Apartment (Rooming House, Condo)",Apartment,AUSTIN,UNKNOWN,EL,1,BLUWHI,650.0,STOLEN,1013,"{'type': 'Point', 'coordinates': (-79.51508777, 43.74709495)}"
-1025,17562,GO-20199014366,THEFT UNDER,2019-05-08T00:00:00,2019,May,Wednesday,8,128,16,2019-05-08T00:00:00,2019,May,Wednesday,8,128,17,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,2,GRY,150.0,STOLEN,1014,"{'type': 'Point', 'coordinates': (-79.52115893, 43.7449724)}"
-1026,17657,GO-20192002985,THEFT UNDER - BICYCLE,2019-09-25T00:00:00,2019,September,Wednesday,25,268,15,2019-10-17T00:00:00,2019,October,Thursday,17,290,10,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,RG,1,BLK,200.0,STOLEN,1015,"{'type': 'Point', 'coordinates': (-79.50926221, 43.73831154)}"
-1027,17677,GO-20192404470,THEFT UNDER,2019-12-10T00:00:00,2019,December,Tuesday,10,344,0,2019-12-13T00:00:00,2019,December,Friday,13,347,19,D31,Toronto,25,Glenfield-Jane Heights (25),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,OT,1,,100.0,STOLEN,1016,"{'type': 'Point', 'coordinates': (-79.5178097, 43.75020018)}"
-1028,17959,GO-2015760028,THEFT UNDER,2015-04-20T00:00:00,2015,April,Monday,20,110,23,2015-05-07T00:00:00,2015,May,Thursday,7,127,14,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MONGOOSE,,MT,0,PLE,250.0,STOLEN,1017,"{'type': 'Point', 'coordinates': (-79.50801565, 43.74807862)}"
-1029,17993,GO-20159007198,THEFT UNDER,2015-09-14T00:00:00,2015,September,Monday,14,257,10,2015-09-14T00:00:00,2015,September,Monday,14,257,22,D31,Toronto,25,Glenfield-Jane Heights (25),"Apartment (Rooming House, Condo)",Apartment,SU,,MT,10,BLK,0.0,STOLEN,1018,"{'type': 'Point', 'coordinates': (-79.51040848, 43.74922746)}"
-1030,17994,GO-20159007198,THEFT UNDER,2015-09-14T00:00:00,2015,September,Monday,14,257,10,2015-09-14T00:00:00,2015,September,Monday,14,257,22,D31,Toronto,25,Glenfield-Jane Heights (25),"Apartment (Rooming House, Condo)",Apartment,MO,,MT,1,BLU,0.0,STOLEN,1019,"{'type': 'Point', 'coordinates': (-79.51040848, 43.74922746)}"
-1031,18050,GO-20161614756,THEFT UNDER - BICYCLE,2016-09-10T00:00:00,2016,September,Saturday,10,254,22,2016-09-11T00:00:00,2016,September,Sunday,11,255,12,D31,Toronto,25,Glenfield-Jane Heights (25),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,JEEP,MT,6,SIL,800.0,STOLEN,1020,"{'type': 'Point', 'coordinates': (-79.51289814, 43.75224824)}"
-1032,20805,GO-20209022522,THEFT UNDER - BICYCLE,2020-09-06T00:00:00,2020,September,Sunday,6,250,23,2020-09-07T00:00:00,2020,September,Monday,7,251,12,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,24,GRN,124.0,STOLEN,1021,"{'type': 'Point', 'coordinates': (-79.51685349, 43.75181653)}"
-1033,20806,GO-20209022522,THEFT UNDER - BICYCLE,2020-09-06T00:00:00,2020,September,Sunday,6,250,23,2020-09-07T00:00:00,2020,September,Monday,7,251,12,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,SUPERCYCLE PATH,RG,24,BLK,100.0,STOLEN,1022,"{'type': 'Point', 'coordinates': (-79.51685349, 43.75181653)}"
-1034,20807,GO-20209022522,THEFT UNDER - BICYCLE,2020-09-06T00:00:00,2020,September,Sunday,6,250,23,2020-09-07T00:00:00,2020,September,Monday,7,251,12,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,24,LGR,124.0,STOLEN,1023,"{'type': 'Point', 'coordinates': (-79.51685349, 43.75181653)}"
-1035,20809,GO-20201692705,THEFT UNDER - BICYCLE,2020-09-02T00:00:00,2020,September,Wednesday,2,246,21,2020-09-08T00:00:00,2020,September,Tuesday,8,252,12,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MOVELO,,RG,8,PLE,150.0,STOLEN,1024,"{'type': 'Point', 'coordinates': (-79.51134996, 43.75013528)}"
-1036,21173,GO-20171172257,THEFT UNDER - BICYCLE,2017-06-29T00:00:00,2017,June,Thursday,29,180,15,2017-06-30T00:00:00,2017,June,Friday,30,181,19,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,HUFFY,UNK,OT,1,BLU,150.0,STOLEN,1025,"{'type': 'Point', 'coordinates': (-79.51367361, 43.75418883)}"
-1037,21224,GO-20171902845,ROBBERY - SWARMING,2017-10-20T00:00:00,2017,October,Friday,20,293,20,2017-10-20T00:00:00,2017,October,Friday,20,293,20,D31,Toronto,25,Glenfield-Jane Heights (25),Schools During Un-Supervised Activity,Educational,UNKNOWN MAKE,,RG,1,PNK,,STOLEN,1026,"{'type': 'Point', 'coordinates': (-79.50903948, 43.7563086)}"
-1038,22016,GO-20149004314,THEFT UNDER,2014-05-02T00:00:00,2014,May,Friday,2,122,3,2014-06-22T00:00:00,2014,June,Sunday,22,173,0,D31,Toronto,25,Glenfield-Jane Heights (25),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,MT,24,LBL,170.0,STOLEN,1027,"{'type': 'Point', 'coordinates': (-79.5149647, 43.74397909000001)}"
-1039,22023,GO-20142516014,THEFT UNDER,2014-07-11T00:00:00,2014,July,Friday,11,192,18,2014-07-17T00:00:00,2014,July,Thursday,17,198,14,D31,Toronto,25,Glenfield-Jane Heights (25),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,DIRT BIKE,MT,3,REDSIL,,STOLEN,1028,"{'type': 'Point', 'coordinates': (-79.51790729, 43.75044442)}"
-1040,654,GO-20179008443,THEFT UNDER - BICYCLE,2017-06-19T00:00:00,2017,June,Monday,19,170,8,2017-06-19T00:00:00,2017,June,Monday,19,170,21,D22,Toronto,19,Long Branch (19),Go Station,Transit,IN,,RG,7,BLU,100.0,STOLEN,1229,"{'type': 'Point', 'coordinates': (-79.54491322, 43.59051582)}"
-1041,22024,GO-20142516014,THEFT UNDER,2014-07-11T00:00:00,2014,July,Friday,11,192,18,2014-07-17T00:00:00,2014,July,Thursday,17,198,14,D31,Toronto,25,Glenfield-Jane Heights (25),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,DIRT BIKE,MT,3,SILRED,,STOLEN,1029,"{'type': 'Point', 'coordinates': (-79.51790729, 43.75044442)}"
-1042,22043,GO-20143273309,THEFT UNDER,2014-11-04T00:00:00,2014,November,Tuesday,4,308,12,2014-11-10T00:00:00,2014,November,Monday,10,314,8,D31,Toronto,25,Glenfield-Jane Heights (25),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUPERCYCLE,,RG,10,BLU,,STOLEN,1030,"{'type': 'Point', 'coordinates': (-79.51769107, 43.75723544)}"
-1043,22067,GO-20151183060,THEFT UNDER,2015-07-13T00:00:00,2015,July,Monday,13,194,1,2015-07-13T00:00:00,2015,July,Monday,13,194,1,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,REDHORSE,MOUNTAIN BIKE,MT,6,RED,150.0,STOLEN,1031,"{'type': 'Point', 'coordinates': (-79.51414941, 43.7554738)}"
-1044,22080,GO-20151487850,THEFT UNDER,2015-08-28T00:00:00,2015,August,Friday,28,240,22,2015-08-29T00:00:00,2015,August,Saturday,29,241,12,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,3 WHEELER,RG,1,MRN,1200.0,STOLEN,1032,"{'type': 'Point', 'coordinates': (-79.50473575, 43.73951813)}"
-1045,22081,GO-20151487850,THEFT UNDER,2015-08-28T00:00:00,2015,August,Friday,28,240,22,2015-08-29T00:00:00,2015,August,Saturday,29,241,12,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,,MT,18,MRN,200.0,STOLEN,1033,"{'type': 'Point', 'coordinates': (-79.50473575, 43.73951813)}"
-1046,22109,GO-20169006172,THEFT UNDER - BICYCLE,2016-06-21T00:00:00,2016,June,Tuesday,21,173,18,2016-06-22T00:00:00,2016,June,Wednesday,22,174,14,D31,Toronto,25,Glenfield-Jane Heights (25),"Apartment (Rooming House, Condo)",Apartment,NO,BUSHPILOT,MT,24,WHI,600.0,STOLEN,1034,"{'type': 'Point', 'coordinates': (-79.51289814, 43.75224824)}"
-1047,24231,GO-20171673633,THEFT UNDER - BICYCLE,2017-09-15T00:00:00,2017,September,Friday,15,258,11,2017-09-15T00:00:00,2017,September,Friday,15,258,13,D31,Toronto,25,Glenfield-Jane Heights (25),Convenience Stores,Commercial,UNKNOWN MAKE,,MT,21,BLU,50.0,STOLEN,1035,"{'type': 'Point', 'coordinates': (-79.52346138, 43.74904436)}"
-1048,24368,GO-20189026987,THEFT UNDER - BICYCLE,2018-08-19T00:00:00,2018,August,Sunday,19,231,1,2018-08-19T00:00:00,2018,August,Sunday,19,231,13,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,HYDRA MEN'S HYB,RG,24,BLU,500.0,STOLEN,1036,"{'type': 'Point', 'coordinates': (-79.52170242, 43.74346149)}"
-1049,24369,GO-20189026987,THEFT UNDER - BICYCLE,2018-08-19T00:00:00,2018,August,Sunday,19,231,1,2018-08-19T00:00:00,2018,August,Sunday,19,231,13,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,ANTIC BMX BIKE,BM,15,BLK,180.0,STOLEN,1037,"{'type': 'Point', 'coordinates': (-79.52170242, 43.74346149)}"
-1050,24370,GO-20189026987,THEFT UNDER - BICYCLE,2018-08-19T00:00:00,2018,August,Sunday,19,231,1,2018-08-19T00:00:00,2018,August,Sunday,19,231,13,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,ANNETTE WOMEN'S,RG,15,PLE,300.0,STOLEN,1038,"{'type': 'Point', 'coordinates': (-79.52170242, 43.74346149)}"
-1051,24425,GO-20142447299,THEFT UNDER,2014-07-06T00:00:00,2014,July,Sunday,6,187,22,2014-07-07T00:00:00,2014,July,Monday,7,188,10,D31,Toronto,25,Glenfield-Jane Heights (25),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,RG,1,,145.0,STOLEN,1039,"{'type': 'Point', 'coordinates': (-79.51603747, 43.75073765)}"
-1052,24541,GO-20161553093,ROBBERY - SWARMING,2016-09-01T00:00:00,2016,September,Thursday,1,245,18,2016-09-01T00:00:00,2016,September,Thursday,1,245,19,D31,Toronto,25,Glenfield-Jane Heights (25),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,MT,18,,180.0,STOLEN,1040,"{'type': 'Point', 'coordinates': (-79.51685836, 43.75241579)}"
-1053,703,GO-20171109188,THEFT UNDER - BICYCLE,2017-06-20T00:00:00,2017,June,Tuesday,20,171,10,2017-06-21T00:00:00,2017,June,Wednesday,21,172,16,D31,Toronto,26,Downsview-Roding-CFB (26),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,MT,21,GLD,200.0,STOLEN,1041,"{'type': 'Point', 'coordinates': (-79.51410965, 43.72063504)}"
-1054,979,GO-20171330288,THEFT UNDER - BICYCLE,2017-07-24T00:00:00,2017,July,Monday,24,205,17,2017-07-24T00:00:00,2017,July,Monday,24,205,18,D31,Toronto,26,Downsview-Roding-CFB (26),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,JAMIS,,MT,5,,,STOLEN,1042,"{'type': 'Point', 'coordinates': (-79.48004236, 43.72747445)}"
-1055,1708,GO-20171893838,THEFT UNDER - BICYCLE,2017-10-18T00:00:00,2017,October,Wednesday,18,291,10,2017-10-19T00:00:00,2017,October,Thursday,19,292,14,D31,Toronto,26,Downsview-Roding-CFB (26),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,THEODOR,,RG,3,YEL,300.0,STOLEN,1043,"{'type': 'Point', 'coordinates': (-79.48248767000001, 43.72856336)}"
-1056,12753,GO-20162011474,THEFT UNDER - BICYCLE,2016-11-12T00:00:00,2016,November,Saturday,12,317,10,2016-11-12T00:00:00,2016,November,Saturday,12,317,11,D31,Toronto,27,York University Heights (27),Ttc Bus,Transit,RALEIGH,,MT,18,GRY,,STOLEN,1254,"{'type': 'Point', 'coordinates': (-79.48813244, 43.75202425)}"
-1057,2033,GO-20189004973,THEFT UNDER - BICYCLE,2018-02-15T00:00:00,2018,February,Thursday,15,46,6,2018-02-17T00:00:00,2018,February,Saturday,17,48,17,D32,Toronto,26,Downsview-Roding-CFB (26),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,TREKKER,MT,18,RED,250.0,STOLEN,1044,"{'type': 'Point', 'coordinates': (-79.45790073, 43.72827812)}"
-1058,2122,GO-2018578542,THEFT UNDER - BICYCLE,2018-03-30T00:00:00,2018,March,Friday,30,89,6,2018-03-31T00:00:00,2018,March,Saturday,31,90,15,D32,Toronto,26,Downsview-Roding-CFB (26),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GIANT,NORTHROCK XC27,MT,21,BLK,379.0,STOLEN,1045,"{'type': 'Point', 'coordinates': (-79.46988875, 43.73467051000001)}"
-1059,2151,GO-2018650885,B&E,2018-04-11T00:00:00,2018,April,Wednesday,11,101,9,2018-04-11T00:00:00,2018,April,Wednesday,11,101,19,D31,Toronto,26,Downsview-Roding-CFB (26),"Apartment (Rooming House, Condo)",Apartment,DAMA,,MT,24,BLU,550.0,STOLEN,1046,"{'type': 'Point', 'coordinates': (-79.48004236, 43.72747445)}"
-1060,2152,GO-2018650885,B&E,2018-04-11T00:00:00,2018,April,Wednesday,11,101,9,2018-04-11T00:00:00,2018,April,Wednesday,11,101,19,D31,Toronto,26,Downsview-Roding-CFB (26),"Apartment (Rooming House, Condo)",Apartment,FELT,,MT,27,GRY,1000.0,STOLEN,1047,"{'type': 'Point', 'coordinates': (-79.48004236, 43.72747445)}"
-1061,2423,GO-20189016746,THEFT UNDER,2018-05-29T00:00:00,2018,May,Tuesday,29,149,22,2018-05-30T00:00:00,2018,May,Wednesday,30,150,0,D31,Toronto,26,Downsview-Roding-CFB (26),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,IN,,MT,18,RED,500.0,STOLEN,1048,"{'type': 'Point', 'coordinates': (-79.48451874, 43.73694518)}"
-1062,3279,GO-20181527727,THEFT UNDER - BICYCLE,2018-08-13T00:00:00,2018,August,Monday,13,225,21,2018-08-18T00:00:00,2018,August,Saturday,18,230,21,D32,Toronto,26,Downsview-Roding-CFB (26),"Apartment (Rooming House, Condo)",Apartment,SUPERCYCLE,CROSSROADS,MT,21,SIL,,STOLEN,1049,"{'type': 'Point', 'coordinates': (-79.46806672, 43.73033651000001)}"
-1063,3586,GO-20189032471,THEFT UNDER,2018-08-17T00:00:00,2018,August,Friday,17,229,17,2018-10-01T00:00:00,2018,October,Monday,1,274,9,D31,Toronto,26,Downsview-Roding-CFB (26),Go Station,Transit,NO,,MT,12,RED,450.0,STOLEN,1050,"{'type': 'Point', 'coordinates': (-79.48024537, 43.75432183)}"
-1064,4517,GO-20199018980,THEFT UNDER,2019-06-17T00:00:00,2019,June,Monday,17,168,15,2019-06-17T00:00:00,2019,June,Monday,17,168,17,D31,Toronto,26,Downsview-Roding-CFB (26),"Religious Facilities (Synagogue, Church, Convent, Mosque)",Other,HF,--,MT,6,ONG,200.0,STOLEN,1051,"{'type': 'Point', 'coordinates': (-79.50811877000001, 43.71907849)}"
-1065,4659,GO-20199020842,THEFT UNDER,2019-07-02T00:00:00,2019,July,Tuesday,2,183,17,2019-07-03T00:00:00,2019,July,Wednesday,3,184,12,D31,Toronto,26,Downsview-Roding-CFB (26),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,ESCAPE 2 (2018),OT,8,OTH,780.0,STOLEN,1052,"{'type': 'Point', 'coordinates': (-79.50859475, 43.72091645)}"
-1066,4738,GO-20199021733,THEFT UNDER,2019-07-10T00:00:00,2019,July,Wednesday,10,191,9,2019-07-10T00:00:00,2019,July,Wednesday,10,191,15,D31,Toronto,26,Downsview-Roding-CFB (26),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UK,DK,BM,1,BLK,300.0,STOLEN,1053,"{'type': 'Point', 'coordinates': (-79.48260563, 43.72906154)}"
-1067,4838,GO-20199023297,THEFT UNDER - BICYCLE,2019-07-19T00:00:00,2019,July,Friday,19,200,20,2019-07-22T00:00:00,2019,July,Monday,22,203,19,D32,Toronto,26,Downsview-Roding-CFB (26),Ttc Subway Station,Transit,SC,,RG,7,RED,400.0,STOLEN,1054,"{'type': 'Point', 'coordinates': (-79.46273009, 43.75037793)}"
-1068,4891,GO-20199023847,THEFT UNDER,2019-07-25T00:00:00,2019,July,Thursday,25,206,12,2019-07-26T00:00:00,2019,July,Friday,26,207,11,D31,Toronto,26,Downsview-Roding-CFB (26),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,IN,,RG,21,BLU,150.0,STOLEN,1055,"{'type': 'Point', 'coordinates': (-79.48165414, 43.72511192)}"
-1069,4894,GO-20191400964,THEFT UNDER,2019-07-24T00:00:00,2019,July,Wednesday,24,205,17,2019-07-25T00:00:00,2019,July,Thursday,25,206,19,D31,Toronto,26,Downsview-Roding-CFB (26),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,SLOP T6 ALUMINU,MT,21,BLUWHI,600.0,STOLEN,1056,"{'type': 'Point', 'coordinates': (-79.48165414, 43.72511192)}"
-1070,4940,GO-20191437348,THEFT UNDER - BICYCLE,2019-07-23T00:00:00,2019,July,Tuesday,23,204,9,2019-07-30T00:00:00,2019,July,Tuesday,30,211,22,D32,Toronto,26,Downsview-Roding-CFB (26),Ttc Subway Station,Transit,OTHER,,SC,1,GRY,2500.0,STOLEN,1057,"{'type': 'Point', 'coordinates': (-79.46273009, 43.75037793)}"
-1071,5410,GO-20191855839,B&E,2019-09-23T00:00:00,2019,September,Monday,23,266,16,2019-09-26T00:00:00,2019,September,Thursday,26,269,14,D31,Toronto,26,Downsview-Roding-CFB (26),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,21,GRY,3318.0,STOLEN,1058,"{'type': 'Point', 'coordinates': (-79.49843051, 43.72389874)}"
-1072,5664,GO-20199036900,THEFT UNDER,2019-10-29T00:00:00,2019,October,Tuesday,29,302,18,2019-11-08T00:00:00,2019,November,Friday,8,312,16,D31,Toronto,26,Downsview-Roding-CFB (26),Go Station,Transit,SC,HYDRA,RG,21,SIL,800.0,STOLEN,1059,"{'type': 'Point', 'coordinates': (-79.48024537, 43.75432183)}"
-1073,6298,GO-20209014582,THEFT UNDER - BICYCLE,2020-06-03T00:00:00,2020,June,Wednesday,3,155,21,2020-06-04T00:00:00,2020,June,Thursday,4,156,15,D32,Toronto,26,Downsview-Roding-CFB (26),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,,MT,18,RED,0.0,STOLEN,1060,"{'type': 'Point', 'coordinates': (-79.45985633, 43.73199742)}"
-1074,6594,GO-20209017360,THEFT UNDER,2020-07-11T00:00:00,2020,July,Saturday,11,193,21,2020-07-12T00:00:00,2020,July,Sunday,12,194,12,D31,Toronto,26,Downsview-Roding-CFB (26),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,1800,MT,18,SIL,110.0,STOLEN,1061,"{'type': 'Point', 'coordinates': (-79.47694718, 43.73627679)}"
-1075,6675,GO-20201346509,THEFT FROM MOTOR VEHICLE UNDER,2020-07-19T00:00:00,2020,July,Sunday,19,201,22,2020-07-20T00:00:00,2020,July,Monday,20,202,8,D31,Toronto,26,Downsview-Roding-CFB (26),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,HYPER,MT,21,BLK,,UNKNOWN,1062,"{'type': 'Point', 'coordinates': (-79.51633863, 43.72013287)}"
-1076,6710,GO-20209018317,THEFT UNDER - BICYCLE,2020-07-22T00:00:00,2020,July,Wednesday,22,204,22,2020-07-23T00:00:00,2020,July,Thursday,23,205,9,D31,Toronto,26,Downsview-Roding-CFB (26),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,GTAVALANCHECOMP,MT,9,RED,750.0,STOLEN,1063,"{'type': 'Point', 'coordinates': (-79.52258038, 43.72608873)}"
-1077,6711,GO-20209018317,THEFT UNDER - BICYCLE,2020-07-22T00:00:00,2020,July,Wednesday,22,204,22,2020-07-23T00:00:00,2020,July,Thursday,23,205,9,D31,Toronto,26,Downsview-Roding-CFB (26),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,GT AGGRESSOR SP,MT,7,DBL,700.0,STOLEN,1064,"{'type': 'Point', 'coordinates': (-79.52258038, 43.72608873)}"
-1078,6768,GO-20209018598,THEFT FROM MOTOR VEHICLE UNDER,2020-07-26T00:00:00,2020,July,Sunday,26,208,0,2020-07-26T00:00:00,2020,July,Sunday,26,208,14,D31,Toronto,26,Downsview-Roding-CFB (26),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,OT,6,BLK,500.0,STOLEN,1065,"{'type': 'Point', 'coordinates': (-79.51316419, 43.72551677)}"
-1079,7225,GO-20209022840,THEFT UNDER - BICYCLE,2020-09-10T00:00:00,2020,September,Thursday,10,254,12,2020-09-10T00:00:00,2020,September,Thursday,10,254,13,D31,Toronto,26,Downsview-Roding-CFB (26),"Apartment (Rooming House, Condo)",Apartment,GT,,MT,3,BLK,650.0,STOLEN,1066,"{'type': 'Point', 'coordinates': (-79.48312757, 43.73115325)}"
-1080,17604,GO-20199023140,THEFT UNDER,2019-07-21T00:00:00,2019,July,Sunday,21,202,7,2019-07-21T00:00:00,2019,July,Sunday,21,202,18,D31,Toronto,27,York University Heights (27),Universities / Colleges,Educational,SC,,MT,24,RED,700.0,STOLEN,1287,"{'type': 'Point', 'coordinates': (-79.50240222, 43.77447286000001)}"
-1081,7932,GO-20149003359,THEFT UNDER,2014-05-08T00:00:00,2014,May,Thursday,8,128,7,2014-05-14T00:00:00,2014,May,Wednesday,14,134,19,D31,Toronto,26,Downsview-Roding-CFB (26),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,IN,MUD BIKE,MT,18,,,STOLEN,1067,"{'type': 'Point', 'coordinates': (-79.52258038, 43.72608873)}"
-1082,7945,GO-20142099437,THEFT UNDER,2014-05-17T00:00:00,2014,May,Saturday,17,137,19,2014-05-17T00:00:00,2014,May,Saturday,17,137,19,D31,Toronto,26,Downsview-Roding-CFB (26),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,FUGITIVE,MT,21,GRY,189.0,STOLEN,1068,"{'type': 'Point', 'coordinates': (-79.50894007, 43.72236516)}"
-1083,7986,GO-20142172027,THEFT UNDER,2014-05-28T00:00:00,2014,May,Wednesday,28,148,18,2014-05-28T00:00:00,2014,May,Wednesday,28,148,18,D31,Toronto,26,Downsview-Roding-CFB (26),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,BM,1,BLK,350.0,STOLEN,1069,"{'type': 'Point', 'coordinates': (-79.50757352, 43.73027402)}"
-1084,8216,GO-20142338706,THEFT UNDER,2014-06-20T00:00:00,2014,June,Friday,20,171,6,2014-06-21T00:00:00,2014,June,Saturday,21,172,16,D32,Toronto,26,Downsview-Roding-CFB (26),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BIANCHI,,OT,10,GRY,300.0,STOLEN,1070,"{'type': 'Point', 'coordinates': (-79.45832674, 43.72992996)}"
-1085,8416,GO-20149004960,THEFT UNDER,2014-07-13T00:00:00,2014,July,Sunday,13,194,21,2014-07-13T00:00:00,2014,July,Sunday,13,194,22,D32,Toronto,26,Downsview-Roding-CFB (26),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,,BM,20,SIL,,STOLEN,1071,"{'type': 'Point', 'coordinates': (-79.46385609, 43.72975208)}"
-1086,8488,GO-20149004960,THEFT UNDER,2014-07-13T00:00:00,2014,July,Sunday,13,194,21,2014-07-13T00:00:00,2014,July,Sunday,13,194,22,D32,Toronto,26,Downsview-Roding-CFB (26),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,HUFFY,,BM,1,GRY,350.0,STOLEN,1072,"{'type': 'Point', 'coordinates': (-79.46385609, 43.72975208)}"
-1087,8945,GO-20142959041,THEFT UNDER,2014-09-20T00:00:00,2014,September,Saturday,20,263,19,2014-09-22T00:00:00,2014,September,Monday,22,265,10,D31,Toronto,26,Downsview-Roding-CFB (26),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GARY FISHER,MOUNTAINE BIKE,MT,10,BLKSIL,2000.0,STOLEN,1073,"{'type': 'Point', 'coordinates': (-79.49858942, 43.73230491)}"
-1088,8946,GO-20142959041,THEFT UNDER,2014-09-20T00:00:00,2014,September,Saturday,20,263,19,2014-09-22T00:00:00,2014,September,Monday,22,265,10,D31,Toronto,26,Downsview-Roding-CFB (26),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,BM,10,BLKPNK,500.0,STOLEN,1074,"{'type': 'Point', 'coordinates': (-79.49858942, 43.73230491)}"
-1089,9004,GO-20143024249,B&E,2014-10-01T00:00:00,2014,October,Wednesday,1,274,14,2014-10-01T00:00:00,2014,October,Wednesday,1,274,22,D32,Toronto,26,Downsview-Roding-CFB (26),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,RG,20,GRY,600.0,STOLEN,1075,"{'type': 'Point', 'coordinates': (-79.46632162, 43.72726225)}"
-1090,9117,GO-20149007829,THEFT UNDER,2014-10-25T00:00:00,2014,October,Saturday,25,298,13,2014-10-26T00:00:00,2014,October,Sunday,26,299,13,D32,Toronto,26,Downsview-Roding-CFB (26),"Apartment (Rooming House, Condo)",Apartment,SC,6.3 GRNADE,MT,24,BLU,760.0,STOLEN,1076,"{'type': 'Point', 'coordinates': (-79.47093792, 43.72707242)}"
-1091,9606,GO-2015831952,THEFT UNDER,2015-05-09T00:00:00,2015,May,Saturday,9,129,10,2015-05-19T00:00:00,2015,May,Tuesday,19,139,7,D31,Toronto,26,Downsview-Roding-CFB (26),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,UNKNOWN,RG,1,BLUGRN,50.0,STOLEN,1077,"{'type': 'Point', 'coordinates': (-79.48328501, 43.74527145)}"
-1092,9607,GO-2015831952,THEFT UNDER,2015-05-09T00:00:00,2015,May,Saturday,9,129,10,2015-05-19T00:00:00,2015,May,Tuesday,19,139,7,D31,Toronto,26,Downsview-Roding-CFB (26),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,UNKNOWN,RG,1,GRY,50.0,STOLEN,1078,"{'type': 'Point', 'coordinates': (-79.48328501, 43.74527145)}"
-1093,9663,GO-2015886246,THEFT UNDER,2015-05-26T00:00:00,2015,May,Tuesday,26,146,20,2015-05-27T00:00:00,2015,May,Wednesday,27,147,18,D31,Toronto,26,Downsview-Roding-CFB (26),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,7,BLK,75.0,STOLEN,1079,"{'type': 'Point', 'coordinates': (-79.50808528, 43.72799612)}"
-1094,9776,GO-2015974820,THEFT UNDER,2015-06-04T00:00:00,2015,June,Thursday,4,155,13,2015-06-10T00:00:00,2015,June,Wednesday,10,161,18,D31,Toronto,26,Downsview-Roding-CFB (26),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,,OT,3,,50.0,STOLEN,1080,"{'type': 'Point', 'coordinates': (-79.51669411, 43.7209442)}"
-1095,9777,GO-2015974820,THEFT UNDER,2015-06-04T00:00:00,2015,June,Thursday,4,155,13,2015-06-10T00:00:00,2015,June,Wednesday,10,161,18,D31,Toronto,26,Downsview-Roding-CFB (26),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,OT,5,,50.0,STOLEN,1081,"{'type': 'Point', 'coordinates': (-79.51669411, 43.7209442)}"
-1096,9936,GO-20151121134,THEFT UNDER,2015-07-03T00:00:00,2015,July,Friday,3,184,10,2015-07-03T00:00:00,2015,July,Friday,3,184,16,D32,Toronto,26,Downsview-Roding-CFB (26),Ttc Subway Station,Transit,GIANT,,OT,0,SILRED,600.0,STOLEN,1082,"{'type': 'Point', 'coordinates': (-79.46273009, 43.75037793)}"
-1097,10797,GO-20152005436,ROBBERY - MUGGING,2015-11-22T00:00:00,2015,November,Sunday,22,326,17,2015-11-22T00:00:00,2015,November,Sunday,22,326,18,D31,Toronto,26,Downsview-Roding-CFB (26),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SMART,,SC,1,RED,500.0,STOLEN,1083,"{'type': 'Point', 'coordinates': (-79.51410965, 43.72063504)}"
-1098,11403,GO-2016920214,THEFT UNDER,2016-05-26T00:00:00,2016,May,Thursday,26,147,21,2016-05-28T00:00:00,2016,May,Saturday,28,149,9,D31,Toronto,26,Downsview-Roding-CFB (26),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,0,,50.0,STOLEN,1084,"{'type': 'Point', 'coordinates': (-79.51669411, 43.7209442)}"
-1099,11438,GO-2016971707,THEFT UNDER - BICYCLE,2016-06-04T00:00:00,2016,June,Saturday,4,156,18,2016-06-04T00:00:00,2016,June,Saturday,4,156,18,D31,Toronto,26,Downsview-Roding-CFB (26),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,,BM,3,,100.0,RECOVERED,1085,"{'type': 'Point', 'coordinates': (-79.50033652, 43.73212998)}"
-1100,11453,GO-2016976054,THEFT UNDER - BICYCLE,2016-06-04T00:00:00,2016,June,Saturday,4,156,16,2016-06-05T00:00:00,2016,June,Sunday,5,157,12,D32,Toronto,26,Downsview-Roding-CFB (26),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,PULSAR 26,MT,21,GRYRED,800.0,STOLEN,1086,"{'type': 'Point', 'coordinates': (-79.46547179, 43.73093253)}"
-1101,11472,GO-2016985570,THEFT UNDER - BICYCLE,2016-06-04T00:00:00,2016,June,Saturday,4,156,14,2016-06-06T00:00:00,2016,June,Monday,6,158,21,D31,Toronto,26,Downsview-Roding-CFB (26),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,OT,10,BLUWHI,,STOLEN,1087,"{'type': 'Point', 'coordinates': (-79.51597537, 43.71930771)}"
-1102,11646,GO-20169006406,THEFT UNDER,2016-06-26T00:00:00,2016,June,Sunday,26,178,21,2016-06-27T00:00:00,2016,June,Monday,27,179,10,D32,Toronto,26,Downsview-Roding-CFB (26),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,TALON 4,MT,24,DBL,699.0,STOLEN,1088,"{'type': 'Point', 'coordinates': (-79.46547179, 43.73093253)}"
-1103,11694,GO-20161169414,THEFT UNDER - SHOPLIFTING,2016-07-04T00:00:00,2016,July,Monday,4,186,16,2016-07-04T00:00:00,2016,July,Monday,4,186,16,D31,Toronto,26,Downsview-Roding-CFB (26),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,HUFFY,,TR,1,BLKRED,120.0,STOLEN,1089,"{'type': 'Point', 'coordinates': (-79.50894007, 43.72236516)}"
-1104,24156,GO-2020679440,THEFT UNDER - BICYCLE,2020-04-04T00:00:00,2020,April,Saturday,4,95,12,2020-04-07T00:00:00,2020,April,Tuesday,7,98,18,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,CCM,,MT,6,,160.0,RECOVERED,1114,"{'type': 'Point', 'coordinates': (-79.4896086, 43.75117849)}"
-1105,11710,GO-20161176781,THEFT OF EBIKE UNDER $5000,2016-07-05T00:00:00,2016,July,Tuesday,5,187,15,2016-07-05T00:00:00,2016,July,Tuesday,5,187,18,D31,Toronto,26,Downsview-Roding-CFB (26),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,EM100,OT,72,BLK,,STOLEN,1090,"{'type': 'Point', 'coordinates': (-79.52300643, 43.71770465)}"
-1106,11793,GO-20161210193,THEFT UNDER - BICYCLE,2016-07-10T00:00:00,2016,July,Sunday,10,192,13,2016-07-10T00:00:00,2016,July,Sunday,10,192,20,D31,Toronto,26,Downsview-Roding-CFB (26),"Apartment (Rooming House, Condo)",Apartment,CCM,,MT,21,BLK,700.0,STOLEN,1091,"{'type': 'Point', 'coordinates': (-79.47778326, 43.72510904)}"
-1107,12000,GO-20169008231,THEFT UNDER - BICYCLE,2016-08-04T00:00:00,2016,August,Thursday,4,217,8,2016-08-04T00:00:00,2016,August,Thursday,4,217,21,D32,Toronto,26,Downsview-Roding-CFB (26),Ttc Subway Station,Transit,OT,,MT,24,GRY,800.0,STOLEN,1092,"{'type': 'Point', 'coordinates': (-79.46273009, 43.75037793)}"
-1108,12224,GO-20169009626,THEFT OF EBIKE UNDER $5000,2016-08-26T00:00:00,2016,August,Friday,26,239,18,2016-08-29T00:00:00,2016,August,Monday,29,242,9,D31,Toronto,26,Downsview-Roding-CFB (26),Convenience Stores,Commercial,UK,,EL,20,,750.0,STOLEN,1093,"{'type': 'Point', 'coordinates': (-79.47846188000001, 43.72797708)}"
-1109,13577,GO-20209020261,THEFT UNDER - BICYCLE,2020-08-14T00:00:00,2020,August,Friday,14,227,10,2020-08-14T00:00:00,2020,August,Friday,14,227,21,D32,Toronto,26,Downsview-Roding-CFB (26),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,STREET BIKE,RG,15,BLK,300.0,STOLEN,1094,"{'type': 'Point', 'coordinates': (-79.45832674, 43.72992996)}"
-1110,14269,GO-20209014991,THEFT UNDER,2020-06-09T00:00:00,2020,June,Tuesday,9,161,1,2020-06-09T00:00:00,2020,June,Tuesday,9,161,15,D31,Toronto,26,Downsview-Roding-CFB (26),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RM,ROCKY MOUNTAIN,MT,24,BLK,1300.0,STOLEN,1095,"{'type': 'Point', 'coordinates': (-79.50393254, 43.72004971)}"
-1111,14270,GO-20209014991,THEFT UNDER,2020-06-09T00:00:00,2020,June,Tuesday,9,161,1,2020-06-09T00:00:00,2020,June,Tuesday,9,161,15,D31,Toronto,26,Downsview-Roding-CFB (26),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,,MT,21,WHI,1000.0,STOLEN,1096,"{'type': 'Point', 'coordinates': (-79.50393254, 43.72004971)}"
-1112,14279,GO-20209016915,THEFT UNDER,2020-07-05T00:00:00,2020,July,Sunday,5,187,15,2020-07-05T00:00:00,2020,July,Sunday,5,187,20,D31,Toronto,26,Downsview-Roding-CFB (26),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RG,21,RED,198.0,STOLEN,1097,"{'type': 'Point', 'coordinates': (-79.51410965, 43.72063504)}"
-1113,14326,GO-20209026185,FTC WITH CONDITIONS,2020-10-12T00:00:00,2020,October,Monday,12,286,3,2020-10-12T00:00:00,2020,October,Monday,12,286,14,D31,Toronto,26,Downsview-Roding-CFB (26),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,PRECALIBER 24,MT,8,BLU,500.0,STOLEN,1098,"{'type': 'Point', 'coordinates': (-79.50382355, 43.72513594)}"
-1114,14486,GO-20199000792,THEFT UNDER - BICYCLE,2019-01-06T00:00:00,2019,January,Sunday,6,6,8,2019-01-07T00:00:00,2019,January,Monday,7,7,20,D31,Toronto,26,Downsview-Roding-CFB (26),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,HARDROCK,MT,24,YEL,750.0,STOLEN,1099,"{'type': 'Point', 'coordinates': (-79.51907698, 43.72038469)}"
-1115,22073,GO-20159005174,THEFT UNDER,2015-07-30T00:00:00,2015,July,Thursday,30,211,9,2015-07-30T00:00:00,2015,July,Thursday,30,211,15,D32,Toronto,27,York University Heights (27),Convenience Stores,Commercial,CC,,MT,21,GRY,300.0,STOLEN,1100,"{'type': 'Point', 'coordinates': (-79.47004827000002, 43.78728363)}"
-1116,22099,GO-2016566039,TRAFFICKING PROPERTY OBC UNDER,2016-04-03T00:00:00,2016,April,Sunday,3,94,17,2016-04-12T00:00:00,2016,April,Tuesday,12,103,17,D31,Toronto,27,York University Heights (27),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GT,AVALANCHE,MT,21,LBL,600.0,STOLEN,1101,"{'type': 'Point', 'coordinates': (-79.4997085, 43.76657268)}"
-1117,22120,GO-20169008165,THEFT UNDER - BICYCLE,2016-08-02T00:00:00,2016,August,Tuesday,2,215,5,2016-08-03T00:00:00,2016,August,Wednesday,3,216,19,D31,Toronto,27,York University Heights (27),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,VFR 3,RG,15,GRY,1000.0,STOLEN,1102,"{'type': 'Point', 'coordinates': (-79.49711787, 43.76836748000001)}"
-1118,22124,GO-20169008831,THEFT UNDER - BICYCLE,2016-08-15T00:00:00,2016,August,Monday,15,228,1,2016-08-16T00:00:00,2016,August,Tuesday,16,229,3,D31,Toronto,27,York University Heights (27),Universities / Colleges,Educational,UK,RAZOR CANYON,MT,15,BLU,100.0,STOLEN,1103,"{'type': 'Point', 'coordinates': (-79.50080714, 43.77034083)}"
-1119,22125,GO-20161280075,PROPERTY - FOUND,2016-07-21T00:00:00,2016,July,Thursday,21,203,12,2016-07-21T00:00:00,2016,July,Thursday,21,203,12,D32,Toronto,27,York University Heights (27),"Open Areas (Lakes, Parks, Rivers)",Outside,TREK,FX SERIES 7.2,RG,21,BLK,,UNKNOWN,1104,"{'type': 'Point', 'coordinates': (-79.46842709, 43.77519437)}"
-1120,22142,GO-2017471418,THEFT UNDER - BICYCLE,2017-03-15T00:00:00,2017,March,Wednesday,15,74,22,2017-03-16T00:00:00,2017,March,Thursday,16,75,13,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,RALEIGH,CHILL,MT,18,BLU,300.0,STOLEN,1105,"{'type': 'Point', 'coordinates': (-79.50334807, 43.76978983)}"
-1121,22154,GO-20171111078,SUSPICIOUS INCIDENT,2017-06-21T00:00:00,2017,June,Wednesday,21,172,22,2017-06-21T00:00:00,2017,June,Wednesday,21,172,22,D31,Toronto,27,York University Heights (27),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,SC 500,MT,1,RED,,UNKNOWN,1106,"{'type': 'Point', 'coordinates': (-79.49481733, 43.74898644)}"
-1122,22155,GO-20171111078,SUSPICIOUS INCIDENT,2017-06-21T00:00:00,2017,June,Wednesday,21,172,22,2017-06-21T00:00:00,2017,June,Wednesday,21,172,22,D31,Toronto,27,York University Heights (27),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,JARGA 10,TO,20,WHI,,UNKNOWN,1107,"{'type': 'Point', 'coordinates': (-79.49481733, 43.74898644)}"
-1123,22156,GO-20171111078,SUSPICIOUS INCIDENT,2017-06-21T00:00:00,2017,June,Wednesday,21,172,22,2017-06-21T00:00:00,2017,June,Wednesday,21,172,22,D31,Toronto,27,York University Heights (27),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,HUFFY,MAYHEM,MT,18,ONG,,UNKNOWN,1108,"{'type': 'Point', 'coordinates': (-79.49481733, 43.74898644)}"
-1124,23327,GO-20201074509,THEFT UNDER - BICYCLE,2020-06-11T00:00:00,2020,June,Thursday,11,163,13,2020-06-11T00:00:00,2020,June,Thursday,11,163,13,D32,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,CRAVE EXPERT,MT,21,BLK,2500.0,STOLEN,1109,"{'type': 'Point', 'coordinates': (-79.48101667, 43.78470041)}"
-1125,23347,GO-20209019368,THEFT UNDER - BICYCLE,2020-07-29T00:00:00,2020,July,Wednesday,29,211,19,2020-08-04T00:00:00,2020,August,Tuesday,4,217,17,D32,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,NO,XFR 3 FORMA,OT,21,SIL,250.0,STOLEN,1110,"{'type': 'Point', 'coordinates': (-79.46639639, 43.75118973)}"
-1126,23367,GO-20202161668,THEFT UNDER - BICYCLE,2020-11-14T00:00:00,2020,November,Saturday,14,319,14,2020-11-14T00:00:00,2020,November,Saturday,14,319,15,D32,Toronto,27,York University Heights (27),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN,UNKNOWN,MT,21,WHI,300.0,STOLEN,1111,"{'type': 'Point', 'coordinates': (-79.47471632, 43.78618439)}"
-1127,5476,GO-20199032728,THEFT UNDER,2019-09-12T00:00:00,2019,September,Thursday,12,255,8,2019-10-05T00:00:00,2019,October,Saturday,5,278,17,D13,Toronto,31,Yorkdale-Glen Park (31),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,8,BLK,0.0,STOLEN,1112,"{'type': 'Point', 'coordinates': (-79.44190989, 43.70940381)}"
-1128,14838,GO-20189026842,THEFT UNDER - BICYCLE,2018-08-16T00:00:00,2018,August,Thursday,16,228,20,2018-08-17T00:00:00,2018,August,Friday,17,229,20,D31,Toronto,26,Downsview-Roding-CFB (26),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,WHI,200.0,STOLEN,1113,"{'type': 'Point', 'coordinates': (-79.51410965, 43.72063504)}"
-1129,24157,GO-2020679440,THEFT UNDER - BICYCLE,2020-04-04T00:00:00,2020,April,Saturday,4,95,12,2020-04-07T00:00:00,2020,April,Tuesday,7,98,18,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,NAKAMURA,,MT,12,LBL,170.0,RECOVERED,1115,"{'type': 'Point', 'coordinates': (-79.4896086, 43.75117849)}"
-1130,24158,GO-2020679440,THEFT UNDER - BICYCLE,2020-04-04T00:00:00,2020,April,Saturday,4,95,12,2020-04-07T00:00:00,2020,April,Tuesday,7,98,18,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,NAKAMURA,,MT,12,ONG,170.0,RECOVERED,1116,"{'type': 'Point', 'coordinates': (-79.4896086, 43.75117849)}"
-1131,24159,GO-2020679440,THEFT UNDER - BICYCLE,2020-04-04T00:00:00,2020,April,Saturday,4,95,12,2020-04-07T00:00:00,2020,April,Tuesday,7,98,18,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,CCM,,BM,6,BLK,160.0,STOLEN,1117,"{'type': 'Point', 'coordinates': (-79.4896086, 43.75117849)}"
-1132,24182,GO-20201016344,THEFT UNDER,2020-05-28T00:00:00,2020,May,Thursday,28,149,18,2020-06-06T00:00:00,2020,June,Saturday,6,158,14,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,CCM,5L 2.0,MT,21,BLU,250.0,STOLEN,1118,"{'type': 'Point', 'coordinates': (-79.50147952, 43.77191841)}"
-1133,24183,GO-20201016344,THEFT UNDER,2020-05-28T00:00:00,2020,May,Thursday,28,149,18,2020-06-06T00:00:00,2020,June,Saturday,6,158,14,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,CCM,PRIME,MT,21,RED,280.0,STOLEN,1119,"{'type': 'Point', 'coordinates': (-79.50147952, 43.77191841)}"
-1134,17929,GO-20142393930,THEFT OVER,2014-06-08T00:00:00,2014,June,Sunday,8,159,15,2014-07-03T00:00:00,2014,July,Thursday,3,184,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,FUJI,ROUBAIN,OT,21,RED,2000.0,STOLEN,1120,"{'type': 'Point', 'coordinates': (-79.47400022, 43.6305708)}"
-1135,24223,GO-20171572044,THEFT UNDER - BICYCLE,2017-08-26T00:00:00,2017,August,Saturday,26,238,16,2017-08-30T00:00:00,2017,August,Wednesday,30,242,17,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,CCM,ECCO,MT,18,GRNYEL,150.0,STOLEN,1121,"{'type': 'Point', 'coordinates': (-79.50082146, 43.76336098)}"
-1136,24310,GO-20189018279,THEFT UNDER - BICYCLE,2018-06-10T00:00:00,2018,June,Sunday,10,161,20,2018-06-11T00:00:00,2018,June,Monday,11,162,15,D31,Toronto,27,York University Heights (27),Universities / Colleges,Educational,CC,,MT,21,BLK,500.0,STOLEN,1122,"{'type': 'Point', 'coordinates': (-79.49994532, 43.77052769)}"
-1137,24315,GO-20189019371,THEFT UNDER - BICYCLE,2018-06-16T00:00:00,2018,June,Saturday,16,167,10,2018-06-19T00:00:00,2018,June,Tuesday,19,170,18,D31,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,700C MEN ROAD T,RC,60,GRN,300.0,STOLEN,1123,"{'type': 'Point', 'coordinates': (-79.4916178, 43.76571585)}"
-1138,24375,GO-20189027527,THEFT UNDER - BICYCLE,2018-08-22T00:00:00,2018,August,Wednesday,22,234,19,2018-08-22T00:00:00,2018,August,Wednesday,22,234,20,D31,Toronto,27,York University Heights (27),Universities / Colleges,Educational,FJ,ABSOLUTE 2.1,RG,24,BLK,500.0,STOLEN,1124,"{'type': 'Point', 'coordinates': (-79.50240222, 43.77447286000001)}"
-1139,24416,GO-20149003506,THEFT UNDER,2014-05-19T00:00:00,2014,May,Monday,19,139,18,2014-05-22T00:00:00,2014,May,Thursday,22,142,12,D31,Toronto,27,York University Heights (27),Schools During Un-Supervised Activity,Educational,UK,,RG,10,RED,,STOLEN,1125,"{'type': 'Point', 'coordinates': (-79.50240222, 43.77447286000001)}"
-1140,24437,GO-20143023383,ROBBERY WITH WEAPON,2014-10-01T00:00:00,2014,October,Wednesday,1,274,19,2014-10-01T00:00:00,2014,October,Wednesday,1,274,19,D31,Toronto,27,York University Heights (27),"Open Areas (Lakes, Parks, Rivers)",Outside,NEXT,,MT,4,,,STOLEN,1126,"{'type': 'Point', 'coordinates': (-79.49481846, 43.75665163)}"
-1141,24460,GO-20159003746,THEFT UNDER,2015-06-02T00:00:00,2015,June,Tuesday,2,153,18,2015-06-18T00:00:00,2015,June,Thursday,18,169,21,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,RA,DETOUR,RG,21,RED,500.0,STOLEN,1127,"{'type': 'Point', 'coordinates': (-79.50372563, 43.76525072)}"
-1142,24497,GO-20151848849,THEFT UNDER,2015-10-27T00:00:00,2015,October,Tuesday,27,300,1,2015-10-27T00:00:00,2015,October,Tuesday,27,300,17,D31,Toronto,27,York University Heights (27),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,ROAM 3,MT,24,BLKWHI,650.0,STOLEN,1128,"{'type': 'Point', 'coordinates': (-79.4949085, 43.76724158)}"
-1143,24502,GO-20159011250,THEFT UNDER,2015-12-22T00:00:00,2015,December,Tuesday,22,356,21,2015-12-23T00:00:00,2015,December,Wednesday,23,357,12,D31,Toronto,27,York University Heights (27),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,GRAFT,MT,24,WHI,300.0,STOLEN,1129,"{'type': 'Point', 'coordinates': (-79.49647386, 43.76681057)}"
-1144,24506,GO-20169000966,THEFT UNDER,2016-01-29T00:00:00,2016,January,Friday,29,29,8,2016-01-29T00:00:00,2016,January,Friday,29,29,17,D31,Toronto,27,York University Heights (27),Universities / Colleges,Educational,GI,ROAM 3 LARGE,MT,24,BLK,500.0,STOLEN,1130,"{'type': 'Point', 'coordinates': (-79.49895676, 43.77249589)}"
-1145,24340,GO-20181299049,THEFT UNDER - BICYCLE,2018-07-14T00:00:00,2018,July,Saturday,14,195,16,2018-07-16T00:00:00,2018,July,Monday,16,197,19,D22,Toronto,18,New Toronto (18),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MARIN OR MARINO,,MT,18,BLK,400.0,STOLEN,1132,"{'type': 'Point', 'coordinates': (-79.50515998, 43.6035065)}"
-1146,24509,GO-20169002403,THEFT UNDER - BICYCLE,2016-03-11T00:00:00,2016,March,Friday,11,71,16,2016-03-16T00:00:00,2016,March,Wednesday,16,76,9,D32,Toronto,27,York University Heights (27),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,TEQUESTA,MT,21,BLK,500.0,STOLEN,1133,"{'type': 'Point', 'coordinates': (-79.4811406, 43.77536374)}"
-1147,24530,GO-20169007744,THEFT UNDER - BICYCLE,2016-07-20T00:00:00,2016,July,Wednesday,20,202,16,2016-07-25T00:00:00,2016,July,Monday,25,207,16,D31,Toronto,27,York University Heights (27),Universities / Colleges,Educational,SC,,MT,21,BLU,299.0,STOLEN,1134,"{'type': 'Point', 'coordinates': (-79.50245173, 43.77001164)}"
-1148,24534,GO-20161308030,THEFT UNDER - BICYCLE,2016-07-11T00:00:00,2016,July,Monday,11,193,17,2016-07-25T00:00:00,2016,July,Monday,25,207,18,D31,Toronto,27,York University Heights (27),Universities / Colleges,Educational,CCM,UNKNOWN,RG,10,BLKGRN,310.0,STOLEN,1135,"{'type': 'Point', 'coordinates': (-79.50852047, 43.77429016)}"
-1149,24546,GO-20161666937,THEFT UNDER - BICYCLE,2016-09-19T00:00:00,2016,September,Monday,19,263,8,2016-09-20T00:00:00,2016,September,Tuesday,20,264,7,D32,Toronto,27,York University Heights (27),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,VANDAL,MT,21,RED,250.0,STOLEN,1136,"{'type': 'Point', 'coordinates': (-79.46688641, 43.76885259)}"
-1150,24554,GO-20169013419,THEFT UNDER - BICYCLE,2016-11-14T00:00:00,2016,November,Monday,14,319,19,2016-11-14T00:00:00,2016,November,Monday,14,319,23,D32,Toronto,27,York University Heights (27),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,HC5500,RG,24,RED,400.0,STOLEN,1137,"{'type': 'Point', 'coordinates': (-79.47010818, 43.78384033)}"
-1151,7661,GO-20209030551,THEFT UNDER,2020-11-25T00:00:00,2020,November,Wednesday,25,330,10,2020-11-25T00:00:00,2020,November,Wednesday,25,330,11,D12,Toronto,28,Rustic (28),"Apartment (Rooming House, Condo)",Apartment,SC,VANTAGE,RC,10,GRY,700.0,STOLEN,1138,"{'type': 'Point', 'coordinates': (-79.50441158, 43.71493894)}"
-1152,7665,GO-20209030551,THEFT UNDER,2020-11-25T00:00:00,2020,November,Wednesday,25,330,10,2020-11-25T00:00:00,2020,November,Wednesday,25,330,11,D12,Toronto,28,Rustic (28),"Apartment (Rooming House, Condo)",Apartment,SC,ONUS,RC,10,GRY,700.0,STOLEN,1139,"{'type': 'Point', 'coordinates': (-79.50441158, 43.71493894)}"
-1153,12723,GO-20169005123,THEFT UNDER,2016-05-29T00:00:00,2016,May,Sunday,29,150,19,2016-05-29T00:00:00,2016,May,Sunday,29,150,22,D12,Toronto,28,Rustic (28),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CANNONDALE,SYNAPSE,RC,18,BLKWHI,,STOLEN,1141,"{'type': 'Point', 'coordinates': (-79.50026728, 43.70838437)}"
-1154,14875,GO-2020101535,B&E,2020-01-15T00:00:00,2020,January,Wednesday,15,15,0,2020-01-15T00:00:00,2020,January,Wednesday,15,15,15,D12,Toronto,28,Rustic (28),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,MT,10,GRY,650.0,STOLEN,1142,"{'type': 'Point', 'coordinates': (-79.49718691, 43.71763236)}"
-1155,15560,GO-20161724254,THEFT UNDER - BICYCLE,2016-09-23T00:00:00,2016,September,Friday,23,267,15,2016-09-28T00:00:00,2016,September,Wednesday,28,272,10,D12,Toronto,28,Rustic (28),"Apartment (Rooming House, Condo)",Apartment,ROME,DAYMAK,EL,1,RED,1800.0,STOLEN,1143,"{'type': 'Point', 'coordinates': (-79.5047176, 43.71574209)}"
-1156,18310,GO-20202203163,THEFT FROM MOTOR VEHICLE OVER,2020-11-15T00:00:00,2020,November,Sunday,15,320,1,2020-11-20T00:00:00,2020,November,Friday,20,325,19,D12,Toronto,28,Rustic (28),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,,RG,12,WHI,350.0,STOLEN,1144,"{'type': 'Point', 'coordinates': (-79.49174585, 43.71812256)}"
-1157,18470,GO-20159010890,THEFT UNDER,2015-12-13T00:00:00,2015,December,Sunday,13,347,21,2015-12-13T00:00:00,2015,December,Sunday,13,347,23,D12,Toronto,28,Rustic (28),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SU,,MT,16,BLK,500.0,STOLEN,1145,"{'type': 'Point', 'coordinates': (-79.49769549, 43.70413583)}"
-1158,18491,GO-20169005123,THEFT UNDER,2016-05-29T00:00:00,2016,May,Sunday,29,150,19,2016-05-29T00:00:00,2016,May,Sunday,29,150,22,D12,Toronto,28,Rustic (28),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,SYNAPSE,RC,18,BLK,1500.0,STOLEN,1146,"{'type': 'Point', 'coordinates': (-79.50026728, 43.70838437)}"
-1159,25338,GO-2019165515,THEFT OF EBIKE UNDER $5000,2019-01-24T00:00:00,2019,January,Thursday,24,24,7,2019-01-26T00:00:00,2019,January,Saturday,26,26,23,D12,Toronto,28,Rustic (28),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,ELECTRA,803,EL,1,,1468.0,STOLEN,1147,"{'type': 'Point', 'coordinates': (-79.50530573, 43.7084158)}"
-1160,25356,GO-20191680484,ROBBERY - MUGGING,2019-08-31T00:00:00,2019,August,Saturday,31,243,15,2019-09-03T00:00:00,2019,September,Tuesday,3,246,20,D12,Toronto,28,Rustic (28),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUPERCYCLE,SPINFIT700C,RG,21,BLKRED,224.0,STOLEN,1148,"{'type': 'Point', 'coordinates': (-79.48762802, 43.70637547)}"
-1161,10158,GO-20151331157,THEFT UNDER,2015-08-04T00:00:00,2015,August,Tuesday,4,216,3,2015-08-04T00:00:00,2015,August,Tuesday,4,216,3,D31,Toronto,27,York University Heights (27),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,RC,0,BLK,200.0,STOLEN,1149,"{'type': 'Point', 'coordinates': (-79.49900572, 43.76753752)}"
-1162,25367,GO-202022456,THEFT OF EBIKE UNDER $5000,2020-01-04T00:00:00,2020,January,Saturday,4,4,0,2020-01-04T00:00:00,2020,January,Saturday,4,4,10,D12,Toronto,28,Rustic (28),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DAYMAK,,SC,0,BLK,900.0,STOLEN,1150,"{'type': 'Point', 'coordinates': (-79.50441158, 43.71493894)}"
-1163,1298,GO-20179013925,THEFT UNDER - BICYCLE,2017-09-02T00:00:00,2017,September,Saturday,2,245,23,2017-09-03T00:00:00,2017,September,Sunday,3,246,15,D12,Toronto,29,Maple Leaf (29),"Apartment (Rooming House, Condo)",Apartment,CC,VECTOR,OT,21,BLU,300.0,STOLEN,1151,"{'type': 'Point', 'coordinates': (-79.48522466, 43.71083637)}"
-1164,1517,GO-20179015694,THEFT UNDER - BICYCLE,2017-09-21T00:00:00,2017,September,Thursday,21,264,11,2017-09-25T00:00:00,2017,September,Monday,25,268,12,D12,Toronto,29,Maple Leaf (29),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,MT,18,BLK,500.0,STOLEN,1152,"{'type': 'Point', 'coordinates': (-79.47465243, 43.72300968)}"
-1165,6183,GO-20209013077,THEFT UNDER,2020-05-12T00:00:00,2020,May,Tuesday,12,133,11,2020-05-13T00:00:00,2020,May,Wednesday,13,134,20,D12,Toronto,29,Maple Leaf (29),"Apartment (Rooming House, Condo)",Apartment,SC,,RG,5,WHI,160.0,STOLEN,1153,"{'type': 'Point', 'coordinates': (-79.47881704, 43.71222581)}"
-1166,7449,GO-20201943031,B&E,2020-10-12T00:00:00,2020,October,Monday,12,286,23,2020-10-13T00:00:00,2020,October,Tuesday,13,287,11,D12,Toronto,29,Maple Leaf (29),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,E WILD S,EL,1,BLK,3000.0,STOLEN,1154,"{'type': 'Point', 'coordinates': (-79.47711002, 43.71000528)}"
-1167,18230,GO-2018148905,THEFT OF EBIKE UNDER $5000,2018-01-22T00:00:00,2018,January,Monday,22,22,18,2018-01-23T00:00:00,2018,January,Tuesday,23,23,9,D12,Toronto,29,Maple Leaf (29),"Apartment (Rooming House, Condo)",Apartment,OTHER,MATRIX,SC,50,,1500.0,STOLEN,1155,"{'type': 'Point', 'coordinates': (-79.47859842, 43.71118561)}"
-1168,18460,GO-20159007677,THEFT UNDER,2015-09-22T00:00:00,2015,September,Tuesday,22,265,21,2015-09-24T00:00:00,2015,September,Thursday,24,267,10,D12,Toronto,29,Maple Leaf (29),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,DOORPRIZE,OT,1,BLK,850.0,STOLEN,1156,"{'type': 'Point', 'coordinates': (-79.48437893, 43.71822063)}"
-1169,188,GO-2017575174,THEFT UNDER - BICYCLE,2017-03-28T00:00:00,2017,March,Tuesday,28,87,17,2017-04-01T00:00:00,2017,April,Saturday,1,91,18,D12,Toronto,30,Brookhaven-Amesbury (30),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,,MONSTER 4.5,MT,6,GRY,300.0,STOLEN,1157,"{'type': 'Point', 'coordinates': (-79.49012495, 43.69643015)}"
-1170,475,GO-2017929125,THEFT OVER,2017-05-25T00:00:00,2017,May,Thursday,25,145,13,2017-05-26T00:00:00,2017,May,Friday,26,146,14,D12,Toronto,30,Brookhaven-Amesbury (30),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,FORTRESS,,SC,1,BLUBLK,5000.0,STOLEN,1158,"{'type': 'Point', 'coordinates': (-79.50257386, 43.69841883)}"
-1171,1888,GO-20179020689,THEFT UNDER - BICYCLE,2017-11-26T00:00:00,2017,November,Sunday,26,330,21,2017-11-27T00:00:00,2017,November,Monday,27,331,16,D12,Toronto,30,Brookhaven-Amesbury (30),"Group Homes (Non-Profit, Halfway House, Social Agency)",Other,OT,,MT,27,BLU,750.0,STOLEN,1159,"{'type': 'Point', 'coordinates': (-79.49804743, 43.69726405)}"
-1172,2978,GO-20189024073,THEFT UNDER - BICYCLE,2018-07-26T00:00:00,2018,July,Thursday,26,207,21,2018-07-26T00:00:00,2018,July,Thursday,26,207,23,D12,Toronto,30,Brookhaven-Amesbury (30),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,21,GRY,0.0,STOLEN,1160,"{'type': 'Point', 'coordinates': (-79.47802246, 43.70866018)}"
-1173,3057,GO-20181416346,THEFT UNDER - BICYCLE,2018-08-01T00:00:00,2018,August,Wednesday,1,213,16,2018-08-03T00:00:00,2018,August,Friday,3,215,11,D12,Toronto,30,Brookhaven-Amesbury (30),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NAKAMURA,,MT,0,GRN,,STOLEN,1161,"{'type': 'Point', 'coordinates': (-79.50285482, 43.69955476)}"
-1174,3058,GO-20181416346,THEFT UNDER - BICYCLE,2018-08-01T00:00:00,2018,August,Wednesday,1,213,16,2018-08-03T00:00:00,2018,August,Friday,3,215,11,D12,Toronto,30,Brookhaven-Amesbury (30),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUPERCYCLE,,MT,0,PLE,,STOLEN,1162,"{'type': 'Point', 'coordinates': (-79.50285482, 43.69955476)}"
-1175,3099,GO-20189025392,THEFT UNDER - BICYCLE,2018-08-06T00:00:00,2018,August,Monday,6,218,18,2018-08-07T00:00:00,2018,August,Tuesday,7,219,13,D12,Toronto,30,Brookhaven-Amesbury (30),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,,,MT,21,WHI,150.0,STOLEN,1163,"{'type': 'Point', 'coordinates': (-79.50360266, 43.70228047)}"
-1176,3100,GO-20189025392,THEFT UNDER - BICYCLE,2018-08-06T00:00:00,2018,August,Monday,6,218,18,2018-08-07T00:00:00,2018,August,Tuesday,7,219,13,D12,Toronto,30,Brookhaven-Amesbury (30),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,MT,18,MRN,150.0,STOLEN,1164,"{'type': 'Point', 'coordinates': (-79.50360266, 43.70228047)}"
-1177,6822,GO-20209019054,THEFT UNDER,2020-07-30T00:00:00,2020,July,Thursday,30,212,9,2020-07-30T00:00:00,2020,July,Thursday,30,212,23,D12,Toronto,30,Brookhaven-Amesbury (30),"Apartment (Rooming House, Condo)",Apartment,OT,MOUNTAIN BIKE,MT,27,BRN,300.0,STOLEN,1165,"{'type': 'Point', 'coordinates': (-79.49012495, 43.69643015)}"
-1178,9110,GO-20143168680,THEFT UNDER,2014-10-24T00:00:00,2014,October,Friday,24,297,19,2014-10-24T00:00:00,2014,October,Friday,24,297,19,D12,Toronto,30,Brookhaven-Amesbury (30),"Apartment (Rooming House, Condo)",Apartment,OTHER,,MT,18,BLKRED,50.0,STOLEN,1166,"{'type': 'Point', 'coordinates': (-79.47802246, 43.70866018)}"
-1179,9421,GO-20159001998,THEFT UNDER,2015-04-16T00:00:00,2015,April,Thursday,16,106,19,2015-04-17T00:00:00,2015,April,Friday,17,107,15,D12,Toronto,30,Brookhaven-Amesbury (30),"Private Property Structure (Pool, Shed, Detached Garage)",Other,,18 SPEED,MT,18,SIL,500.0,STOLEN,1167,"{'type': 'Point', 'coordinates': (-79.50083775, 43.70178255)}"
-1180,9817,GO-20151022756,THEFT UNDER,2015-06-17T00:00:00,2015,June,Wednesday,17,168,19,2015-06-18T00:00:00,2015,June,Thursday,18,169,10,D12,Toronto,30,Brookhaven-Amesbury (30),"Apartment (Rooming House, Condo)",Apartment,FIX WHEEL,,BM,1,,350.0,STOLEN,1168,"{'type': 'Point', 'coordinates': (-79.49012495, 43.69643015)}"
-1181,11003,GO-2016310622,ROBBERY - MUGGING,2016-02-21T00:00:00,2016,February,Sunday,21,52,17,2016-02-21T00:00:00,2016,February,Sunday,21,52,18,D12,Toronto,30,Brookhaven-Amesbury (30),"Apartment (Rooming House, Condo)",Apartment,SUPERCYCLE,NITRO XT,MT,0,WHI,,STOLEN,1169,"{'type': 'Point', 'coordinates': (-79.49664293, 43.704367)}"
-1182,11806,GO-20161219413,THEFT OF MOTOR VEHICLE,2016-07-12T00:00:00,2016,July,Tuesday,12,194,7,2016-07-12T00:00:00,2016,July,Tuesday,12,194,8,D12,Toronto,30,Brookhaven-Amesbury (30),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,FZA,OT,6,REDWHI,10000.0,STOLEN,1170,"{'type': 'Point', 'coordinates': (-79.48281263, 43.70226473000001)}"
-1183,12147,GO-20161459906,THEFT UNDER - BICYCLE,2016-08-17T00:00:00,2016,August,Wednesday,17,230,17,2016-08-18T00:00:00,2016,August,Thursday,18,231,9,D12,Toronto,30,Brookhaven-Amesbury (30),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,UNKNOWN,MT,12,GRN,100.0,STOLEN,1171,"{'type': 'Point', 'coordinates': (-79.47802246, 43.70866018)}"
-1184,12587,GO-20169011834,THEFT UNDER - BICYCLE,2016-10-06T00:00:00,2016,October,Thursday,6,280,17,2016-10-11T00:00:00,2016,October,Tuesday,11,285,10,D12,Toronto,30,Brookhaven-Amesbury (30),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,BI,HYBRID,OT,18,LGR,200.0,STOLEN,1172,"{'type': 'Point', 'coordinates': (-79.47135226, 43.70751233)}"
-1185,14853,GO-20191188843,THEFT UNDER,2019-06-26T00:00:00,2019,June,Wednesday,26,177,3,2019-06-26T00:00:00,2019,June,Wednesday,26,177,18,D12,Toronto,30,Brookhaven-Amesbury (30),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,FO,10,SIL,50.0,STOLEN,1173,"{'type': 'Point', 'coordinates': (-79.50257386, 43.69841883)}"
-1186,14860,GO-20199023624,THEFT UNDER,2019-07-19T00:00:00,2019,July,Friday,19,200,17,2019-07-24T00:00:00,2019,July,Wednesday,24,205,21,D12,Toronto,30,Brookhaven-Amesbury (30),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,30,,200.0,STOLEN,1174,"{'type': 'Point', 'coordinates': (-79.49012495, 43.69643015)}"
-1187,15324,GO-20142396160,B&E,2014-06-29T00:00:00,2014,June,Sunday,29,180,19,2014-06-29T00:00:00,2014,June,Sunday,29,180,20,D12,Toronto,30,Brookhaven-Amesbury (30),Schools During Un-Supervised Activity,Educational,OTHER,,MT,10,BLU,,STOLEN,1175,"{'type': 'Point', 'coordinates': (-79.49496641, 43.70278183)}"
-1188,15592,GO-2017575174,THEFT UNDER - BICYCLE,2017-03-28T00:00:00,2017,March,Tuesday,28,87,17,2017-04-01T00:00:00,2017,April,Saturday,1,91,18,D12,Toronto,30,Brookhaven-Amesbury (30),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NAKAMURA,MONSTER 4.5,MT,6,GRYBLU,305.0,STOLEN,1176,"{'type': 'Point', 'coordinates': (-79.49012495, 43.69643015)}"
-1189,15618,GO-20171195193,THEFT UNDER - BICYCLE,2017-07-03T00:00:00,2017,July,Monday,3,184,15,2017-07-04T00:00:00,2017,July,Tuesday,4,185,15,D12,Toronto,30,Brookhaven-Amesbury (30),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,,MT,10,PNK,,STOLEN,1177,"{'type': 'Point', 'coordinates': (-79.50453313, 43.69801921)}"
-1190,18250,GO-20191146854,THEFT UNDER,2019-06-20T00:00:00,2019,June,Thursday,20,171,15,2019-06-20T00:00:00,2019,June,Thursday,20,171,21,D12,Toronto,30,Brookhaven-Amesbury (30),Bar / Restaurant,Commercial,TRIBAL,SEISMO,MT,21,BLUGRN,200.0,STOLEN,1178,"{'type': 'Point', 'coordinates': (-79.47452049000002, 43.709725)}"
-1191,18400,GO-2015816290,THEFT UNDER - SHOPLIFTING,2015-05-16T00:00:00,2015,May,Saturday,16,136,12,2015-05-16T00:00:00,2015,May,Saturday,16,136,13,D12,Toronto,30,Brookhaven-Amesbury (30),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,OT,0,BLK,298.0,STOLEN,1179,"{'type': 'Point', 'coordinates': (-79.47452049000002, 43.709725)}"
-1192,18469,GO-20151888429,B&E W'INTENT,2015-10-30T00:00:00,2015,October,Friday,30,303,17,2015-11-03T00:00:00,2015,November,Tuesday,3,307,8,D12,Toronto,30,Brookhaven-Amesbury (30),"Construction Site (Warehouse, Trailer, Shed)",Commercial,OTHER,,OT,0,,4500.0,STOLEN,1180,"{'type': 'Point', 'coordinates': (-79.47320672, 43.70452074)}"
-1193,21516,GO-20179020689,THEFT UNDER - BICYCLE,2017-11-26T00:00:00,2017,November,Sunday,26,330,21,2017-11-27T00:00:00,2017,November,Monday,27,331,16,D12,Toronto,30,Brookhaven-Amesbury (30),"Group Homes (Non-Profit, Halfway House, Social Agency)",Other,OT,,MT,27,BLU,750.0,STOLEN,1181,"{'type': 'Point', 'coordinates': (-79.49804743, 43.69726405)}"
-1194,21530,GO-20189034291,THEFT UNDER,2018-10-14T00:00:00,2018,October,Sunday,14,287,2,2018-10-16T00:00:00,2018,October,Tuesday,16,289,14,D12,Toronto,30,Brookhaven-Amesbury (30),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,MO,,MT,18,BLU,250.0,STOLEN,1182,"{'type': 'Point', 'coordinates': (-79.50083775, 43.70178255)}"
-1195,21544,GO-20191536021,THEFT UNDER,2019-08-09T00:00:00,2019,August,Friday,9,221,10,2019-08-13T00:00:00,2019,August,Tuesday,13,225,16,D12,Toronto,30,Brookhaven-Amesbury (30),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,UNKNOW,RG,7,BLKRED,200.0,STOLEN,1183,"{'type': 'Point', 'coordinates': (-79.50257386, 43.69841883)}"
-1196,21880,GO-20151050834,THEFT UNDER,2015-06-21T00:00:00,2015,June,Sunday,21,172,18,2015-06-23T00:00:00,2015,June,Tuesday,23,174,11,D12,Toronto,30,Brookhaven-Amesbury (30),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,6,BLUPNK,250.0,STOLEN,1184,"{'type': 'Point', 'coordinates': (-79.50101143, 43.69531195)}"
-1197,24717,GO-20151107148,THEFT UNDER,2015-06-30T00:00:00,2015,June,Tuesday,30,181,18,2015-07-01T00:00:00,2015,July,Wednesday,1,182,14,D12,Toronto,30,Brookhaven-Amesbury (30),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TREK,TREK,MT,21,BLU,50.0,STOLEN,1185,"{'type': 'Point', 'coordinates': (-79.47592837, 43.69943245000001)}"
-1198,25316,GO-20171601486,THEFT UNDER - BICYCLE,2017-09-04T00:00:00,2017,September,Monday,4,247,0,2017-09-04T00:00:00,2017,September,Monday,4,247,14,D12,Toronto,30,Brookhaven-Amesbury (30),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,OT,0,,,STOLEN,1186,"{'type': 'Point', 'coordinates': (-79.49012495, 43.69643015)}"
-1199,14840,GO-20189026842,THEFT UNDER - BICYCLE,2018-08-16T00:00:00,2018,August,Thursday,16,228,20,2018-08-17T00:00:00,2018,August,Friday,17,229,20,D31,Toronto,26,Downsview-Roding-CFB (26),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,1,,400.0,STOLEN,1211,"{'type': 'Point', 'coordinates': (-79.51410965, 43.72063504)}"
-1200,95,GO-20179002152,THEFT UNDER - BICYCLE,2017-02-17T00:00:00,2017,February,Friday,17,48,15,2017-02-19T00:00:00,2017,February,Sunday,19,50,0,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,EKECTRIC SCOOTE,EL,32,BLK,1300.0,STOLEN,1187,"{'type': 'Point', 'coordinates': (-79.46167968, 43.71918674)}"
-1201,182,GO-20179003978,THEFT UNDER - BICYCLE,2017-03-22T00:00:00,2017,March,Wednesday,22,81,9,2017-03-29T00:00:00,2017,March,Wednesday,29,88,21,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,RA,,RC,24,BLU,1800.0,STOLEN,1188,"{'type': 'Point', 'coordinates': (-79.45239005, 43.71432793)}"
-1202,570,GO-20179007804,THEFT UNDER - BICYCLE,2017-06-09T00:00:00,2017,June,Friday,9,160,19,2017-06-09T00:00:00,2017,June,Friday,9,160,20,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,OT,2015 HELIX FEMM,MT,21,PLE,349.0,STOLEN,1189,"{'type': 'Point', 'coordinates': (-79.4547113, 43.71408738)}"
-1203,953,GO-20171331214,THEFT UNDER - BICYCLE,2017-07-24T00:00:00,2017,July,Monday,24,205,9,2017-07-24T00:00:00,2017,July,Monday,24,205,20,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,NORCO,,MT,21,GRY,1500.0,STOLEN,1190,"{'type': 'Point', 'coordinates': (-79.44556484, 43.71912975)}"
-1204,991,GO-20179011141,THEFT UNDER - BICYCLE,2017-07-26T00:00:00,2017,July,Wednesday,26,207,15,2017-07-27T00:00:00,2017,July,Thursday,27,208,10,D13,Toronto,31,Yorkdale-Glen Park (31),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,RG,10,,350.0,STOLEN,1191,"{'type': 'Point', 'coordinates': (-79.44094814, 43.70960071)}"
-1205,1017,GO-20179011352,THEFT UNDER - BICYCLE,2017-07-30T00:00:00,2017,July,Sunday,30,211,7,2017-07-30T00:00:00,2017,July,Sunday,30,211,18,D13,Toronto,31,Yorkdale-Glen Park (31),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,VELO GREEN 21 S,OT,21,GRN,77.0,STOLEN,1192,"{'type': 'Point', 'coordinates': (-79.45314037, 43.70698317)}"
-1206,2218,GO-20189013186,THEFT UNDER,2018-04-27T00:00:00,2018,April,Friday,27,117,17,2018-04-28T00:00:00,2018,April,Saturday,28,118,17,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,SC,700C HYBRID SPO,RG,21,BLU,400.0,STOLEN,1193,"{'type': 'Point', 'coordinates': (-79.45239005, 43.71432793)}"
-1207,2347,GO-2018884707,THEFT UNDER - BICYCLE,2018-05-15T00:00:00,2018,May,Tuesday,15,135,8,2018-05-16T00:00:00,2018,May,Wednesday,16,136,18,D13,Toronto,31,Yorkdale-Glen Park (31),Ttc Subway Station,Transit,OTHER,VIKING TRAIL,OT,5,BLKRED,200.0,STOLEN,1194,"{'type': 'Point', 'coordinates': (-79.44442587, 43.71604957)}"
-1208,2454,GO-20181012129,THEFT OVER - BICYCLE,2017-06-01T00:00:00,2017,June,Thursday,1,152,0,2018-06-05T00:00:00,2018,June,Tuesday,5,156,7,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,OTHER,,OT,0,REDWHI,5001.0,STOLEN,1195,"{'type': 'Point', 'coordinates': (-79.45239005, 43.71432793)}"
-1209,2562,GO-20181082437,THEFT UNDER - BICYCLE,2018-06-14T00:00:00,2018,June,Thursday,14,165,19,2018-06-14T00:00:00,2018,June,Thursday,14,165,20,D32,Toronto,31,Yorkdale-Glen Park (31),"Gas Station (Self, Full, Attached Convenience)",Commercial,IRON HORSE,,MT,24,BLKGRY,500.0,STOLEN,1196,"{'type': 'Point', 'coordinates': (-79.4547113, 43.71408738)}"
-1210,2864,GO-20181310994,B&E,2018-07-18T00:00:00,2018,July,Wednesday,18,199,4,2018-07-18T00:00:00,2018,July,Wednesday,18,199,13,D13,Toronto,31,Yorkdale-Glen Park (31),"Single Home, House (Attach Garage, Cottage, Mobile)",House,WHEELER,,MT,4,SIL,50.0,STOLEN,1197,"{'type': 'Point', 'coordinates': (-79.44935471, 43.70690374000001)}"
-1211,2962,GO-20181365622,THEFT OF EBIKE UNDER $5000,2018-07-24T00:00:00,2018,July,Tuesday,24,205,17,2018-07-26T00:00:00,2018,July,Thursday,26,207,12,D32,Toronto,31,Yorkdale-Glen Park (31),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMO,,OT,5,BLK,900.0,STOLEN,1198,"{'type': 'Point', 'coordinates': (-79.4547113, 43.71408738)}"
-1212,3123,GO-20189025642,THEFT UNDER - BICYCLE,2018-07-06T00:00:00,2018,July,Friday,6,187,11,2018-08-09T00:00:00,2018,August,Thursday,9,221,9,D13,Toronto,31,Yorkdale-Glen Park (31),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,BA,,RG,10,BRZ,200.0,STOLEN,1199,"{'type': 'Point', 'coordinates': (-79.46083492, 43.7127547)}"
-1213,3140,GO-20181446834,THEFT UNDER - BICYCLE,2018-08-06T00:00:00,2018,August,Monday,6,218,7,2018-08-07T00:00:00,2018,August,Tuesday,7,219,9,D32,Toronto,31,Yorkdale-Glen Park (31),Ttc Subway Station,Transit,UNKNOWN MAKE,,MT,18,RED,250.0,STOLEN,1200,"{'type': 'Point', 'coordinates': (-79.44861224, 43.72328355)}"
-1214,3315,GO-20189027866,THEFT UNDER - BICYCLE,2018-08-23T00:00:00,2018,August,Thursday,23,235,22,2018-08-25T00:00:00,2018,August,Saturday,25,237,0,D32,Toronto,31,Yorkdale-Glen Park (31),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,7.2 FX,RG,6,BLK,0.0,STOLEN,1201,"{'type': 'Point', 'coordinates': (-79.46261751, 43.71695029)}"
-1215,3499,GO-20189030883,THEFT UNDER,2018-09-17T00:00:00,2018,September,Monday,17,260,19,2018-09-18T00:00:00,2018,September,Tuesday,18,261,0,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,XFR3,OT,27,BLK,800.0,STOLEN,1202,"{'type': 'Point', 'coordinates': (-79.44893304, 43.71749643)}"
-1216,4760,GO-20191309807,B&E,2019-06-26T00:00:00,2019,June,Wednesday,26,177,12,2019-07-13T00:00:00,2019,July,Saturday,13,194,10,D13,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,CUSTOM,MT,14,BLU,,STOLEN,1203,"{'type': 'Point', 'coordinates': (-79.45288351, 43.705773310000005)}"
-1217,5269,GO-20191707951,THEFT UNDER - BICYCLE,2019-09-03T00:00:00,2019,September,Tuesday,3,246,14,2019-09-08T00:00:00,2019,September,Sunday,8,251,18,D13,Toronto,31,Yorkdale-Glen Park (31),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,VRF5,TO,12,BLK,600.0,STOLEN,1204,"{'type': 'Point', 'coordinates': (-79.45398417, 43.71081612)}"
-1218,5270,GO-20199029167,THEFT UNDER,2019-09-08T00:00:00,2019,September,Sunday,8,251,14,2019-09-08T00:00:00,2019,September,Sunday,8,251,15,D32,Toronto,31,Yorkdale-Glen Park (31),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,VENTURA,RG,14,BLU,200.0,STOLEN,1205,"{'type': 'Point', 'coordinates': (-79.44893304, 43.71749643)}"
-1219,12351,GO-20161636623,THEFT OVER,2016-09-14T00:00:00,2016,September,Wednesday,14,258,2,2016-09-15T00:00:00,2016,September,Thursday,15,259,20,D12,Toronto,23,Pelmo Park-Humberlea (23),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,OT,0,ONG,200.0,STOLEN,1206,"{'type': 'Point', 'coordinates': (-79.52843945, 43.71053963)}"
-1220,24476,GO-20151354249,B&E,2015-08-02T00:00:00,2015,August,Sunday,2,214,10,2015-08-08T00:00:00,2015,August,Saturday,8,220,10,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MIELE,,MT,21,BLK,400.0,STOLEN,1207,"{'type': 'Point', 'coordinates': (-79.49119535, 43.61905507)}"
-1221,14839,GO-20189026842,THEFT UNDER - BICYCLE,2018-08-16T00:00:00,2018,August,Thursday,16,228,20,2018-08-17T00:00:00,2018,August,Friday,17,229,20,D31,Toronto,26,Downsview-Roding-CFB (26),"Apartment (Rooming House, Condo)",Apartment,OT,,BM,1,RED,250.0,STOLEN,1208,"{'type': 'Point', 'coordinates': (-79.51410965, 43.72063504)}"
-1222,5537,GO-20199034153,THEFT UNDER - BICYCLE,2019-10-16T00:00:00,2019,October,Wednesday,16,289,17,2019-10-16T00:00:00,2019,October,Wednesday,16,289,20,D32,Toronto,31,Yorkdale-Glen Park (31),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,RG,8,WHI,200.0,STOLEN,1209,"{'type': 'Point', 'coordinates': (-79.44893304, 43.71749643)}"
-1223,24442,GO-20143562933,THEFT UNDER,2014-12-05T00:00:00,2014,December,Friday,5,339,15,2014-12-28T00:00:00,2014,December,Sunday,28,362,16,D22,Toronto,19,Long Branch (19),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MONGOOSE,,BM,0,WHIRED,100.0,STOLEN,1210,"{'type': 'Point', 'coordinates': (-79.52495649000001, 43.59641873)}"
-1224,5870,GO-20209003913,THEFT UNDER - BICYCLE,2019-10-15T00:00:00,2019,October,Tuesday,15,288,17,2020-02-01T00:00:00,2020,February,Saturday,1,32,17,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,OT,18 ROUBAIX ELIT,TO,11,BLK,3800.0,STOLEN,1212,"{'type': 'Point', 'coordinates': (-79.45239005, 43.71432793)}"
-1225,24438,GO-20149007939,THEFT UNDER,2014-10-26T00:00:00,2014,October,Sunday,26,299,16,2014-11-01T00:00:00,2014,November,Saturday,1,305,12,D22,Toronto,18,New Toronto (18),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,ROAM-O,TO,30,BLK,1100.0,STOLEN,1213,"{'type': 'Point', 'coordinates': (-79.50765915, 43.59767799)}"
-1226,14850,GO-20189027556,THEFT UNDER - BICYCLE,2018-08-21T00:00:00,2018,August,Tuesday,21,233,22,2018-08-23T00:00:00,2018,August,Thursday,23,235,10,D32,Toronto,26,Downsview-Roding-CFB (26),"Apartment (Rooming House, Condo)",Apartment,UK,CARTIER,RG,9,BLK,960.0,STOLEN,1214,"{'type': 'Point', 'coordinates': (-79.46547179, 43.73093253)}"
-1227,6034,GO-20209010665,THEFT UNDER,2020-04-07T00:00:00,2020,April,Tuesday,7,98,21,2020-04-07T00:00:00,2020,April,Tuesday,7,98,22,D32,Toronto,31,Yorkdale-Glen Park (31),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,SC 700C,RG,12,DBL,300.0,STOLEN,1215,"{'type': 'Point', 'coordinates': (-79.45130961, 43.72364999)}"
-1228,24443,GO-20143562933,THEFT UNDER,2014-12-05T00:00:00,2014,December,Friday,5,339,15,2014-12-28T00:00:00,2014,December,Sunday,28,362,16,D22,Toronto,19,Long Branch (19),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,18,WHI,120.0,STOLEN,1216,"{'type': 'Point', 'coordinates': (-79.52495649000001, 43.59641873)}"
-1229,10160,GO-20159005244,THEFT UNDER,2015-06-02T00:00:00,2015,June,Tuesday,2,153,16,2015-08-01T00:00:00,2015,August,Saturday,1,213,16,D31,Toronto,27,York University Heights (27),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,7.2,RG,12,,800.0,STOLEN,1217,"{'type': 'Point', 'coordinates': (-79.50396304, 43.76777105)}"
-1230,24462,GO-20151098902,THEFT UNDER,2015-06-29T00:00:00,2015,June,Monday,29,180,22,2015-06-30T00:00:00,2015,June,Tuesday,30,181,8,D22,Toronto,18,New Toronto (18),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,ECHO RIDER,EL,3,BLK,1300.0,STOLEN,1218,"{'type': 'Point', 'coordinates': (-79.5018439, 43.60151447)}"
-1231,10174,GO-20159005331,THEFT UNDER,2015-08-03T00:00:00,2015,August,Monday,3,215,23,2015-08-05T00:00:00,2015,August,Wednesday,5,217,16,D31,Toronto,27,York University Heights (27),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,RUSH HOUR,RC,1,BLK,855.0,STOLEN,1219,"{'type': 'Point', 'coordinates': (-79.49712777, 43.76569559)}"
-1232,14913,GO-20149003384,THEFT UNDER,2014-05-12T00:00:00,2014,May,Monday,12,132,23,2014-05-15T00:00:00,2014,May,Thursday,15,135,20,D32,Toronto,26,Downsview-Roding-CFB (26),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,STATIC,MT,21,BLK,,STOLEN,1220,"{'type': 'Point', 'coordinates': (-79.47113918, 43.7278927)}"
-1233,24564,GO-20179004726,THEFT UNDER,2017-04-13T00:00:00,2017,April,Thursday,13,103,7,2017-04-15T00:00:00,2017,April,Saturday,15,105,15,D22,Toronto,19,Long Branch (19),Go Station,Transit,GI,,MT,24,BLK,700.0,STOLEN,1221,"{'type': 'Point', 'coordinates': (-79.54491322, 43.59051582)}"
-1234,165,GO-20179003554,THEFT UNDER,2017-03-19T00:00:00,2017,March,Sunday,19,78,12,2017-03-21T00:00:00,2017,March,Tuesday,21,80,14,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,,ECHO 2.6,MT,18,ONG,225.0,STOLEN,1222,"{'type': 'Point', 'coordinates': (-79.52718936, 43.59299457)}"
-1235,10205,GO-20151365492,THEFT UNDER,2015-07-03T00:00:00,2015,July,Friday,3,184,7,2015-08-09T00:00:00,2015,August,Sunday,9,221,18,D31,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,RG,1,GRY,88.0,STOLEN,1223,"{'type': 'Point', 'coordinates': (-79.50047966, 43.76224141)}"
-1236,6310,GO-20209014708,THEFT UNDER - BICYCLE,2020-06-07T00:00:00,2020,June,Sunday,7,159,11,2020-06-07T00:00:00,2020,June,Sunday,7,159,12,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,PHOENIX,TO,21,GRY,850.0,STOLEN,1224,"{'type': 'Point', 'coordinates': (-79.45616651, 43.72072607)}"
-1237,10327,GO-20159006199,THEFT UNDER,2015-08-25T00:00:00,2015,August,Tuesday,25,237,2,2015-08-26T00:00:00,2015,August,Wednesday,26,238,1,D31,Toronto,27,York University Heights (27),Universities / Colleges,Educational,CC,,MT,30,GRN,150.0,STOLEN,1225,"{'type': 'Point', 'coordinates': (-79.50214172, 43.77771971)}"
-1238,14935,GO-20149007236,THEFT UNDER,2014-09-13T00:00:00,2014,September,Saturday,13,256,14,2014-09-25T00:00:00,2014,September,Thursday,25,268,21,D31,Toronto,26,Downsview-Roding-CFB (26),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,18,BLK,500.0,STOLEN,1226,"{'type': 'Point', 'coordinates': (-79.48248767000001, 43.72856336)}"
-1239,24565,GO-20179004807,THEFT UNDER - BICYCLE,2017-04-16T00:00:00,2017,April,Sunday,16,106,16,2017-04-17T00:00:00,2017,April,Monday,17,107,16,D22,Toronto,19,Long Branch (19),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CC,,BM,7,OTH,500.0,STOLEN,1227,"{'type': 'Point', 'coordinates': (-79.54211022, 43.58863236)}"
-1240,10469,GO-20151596267,THEFT UNDER,2015-09-11T00:00:00,2015,September,Friday,11,254,13,2015-09-15T00:00:00,2015,September,Tuesday,15,258,16,D32,Toronto,27,York University Heights (27),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SCHWINN,,MT,15,BLU,300.0,STOLEN,1230,"{'type': 'Point', 'coordinates': (-79.47010818, 43.78384033)}"
-1241,14997,GO-2016831157,THEFT UNDER - BICYCLE,2016-05-12T00:00:00,2016,May,Thursday,12,133,8,2016-05-14T00:00:00,2016,May,Saturday,14,135,18,D32,Toronto,26,Downsview-Roding-CFB (26),Ttc Subway Station,Transit,UNKNOWN MAKE,,RG,1,BLK,400.0,STOLEN,1231,"{'type': 'Point', 'coordinates': (-79.46273009, 43.75037793)}"
-1242,24576,GO-20179008540,B&E W'INTENT,2017-05-09T00:00:00,2017,May,Tuesday,9,129,2,2017-06-20T00:00:00,2017,June,Tuesday,20,171,16,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,NO,INDIE 4,RG,18,GRY,700.0,STOLEN,1232,"{'type': 'Point', 'coordinates': (-79.54560481, 43.58975212000001)}"
-1243,6395,GO-20209015432,THEFT UNDER - BICYCLE,2020-06-14T00:00:00,2020,June,Sunday,14,166,19,2020-06-15T00:00:00,2020,June,Monday,15,167,18,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,OT,XENITH COMP,RC,16,GRY,2000.0,STOLEN,1233,"{'type': 'Point', 'coordinates': (-79.45239005, 43.71432793)}"
-1244,728,GO-20179009010,THEFT UNDER - BICYCLE,2017-06-23T00:00:00,2017,June,Friday,23,174,14,2017-06-27T00:00:00,2017,June,Tuesday,27,178,14,D22,Toronto,19,Long Branch (19),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MA,MARIN,OT,21,BLK,2800.0,STOLEN,1234,"{'type': 'Point', 'coordinates': (-79.53236154, 43.594736530000006)}"
-1245,10568,GO-20159007957,THEFT UNDER,2015-09-28T00:00:00,2015,September,Monday,28,271,18,2015-09-30T00:00:00,2015,September,Wednesday,30,273,11,D32,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,OT,JAMIS TRAIL X2,MT,8,PLE,350.0,STOLEN,1235,"{'type': 'Point', 'coordinates': (-79.4633489, 43.75025176)}"
-1246,10569,GO-20159007957,THEFT UNDER,2015-09-28T00:00:00,2015,September,Monday,28,271,18,2015-09-30T00:00:00,2015,September,Wednesday,30,273,11,D32,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,GT,GT TRANSEO 4.0,RG,8,WHI,600.0,STOLEN,1236,"{'type': 'Point', 'coordinates': (-79.4633489, 43.75025176)}"
-1247,10570,GO-20159007957,THEFT UNDER,2015-09-28T00:00:00,2015,September,Monday,28,271,18,2015-09-30T00:00:00,2015,September,Wednesday,30,273,11,D32,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,OT,JAMIS TRAIL X2,MT,8,PLE,350.0,STOLEN,1237,"{'type': 'Point', 'coordinates': (-79.4633489, 43.75025176)}"
-1248,10571,GO-20159007957,THEFT UNDER,2015-09-28T00:00:00,2015,September,Monday,28,271,18,2015-09-30T00:00:00,2015,September,Wednesday,30,273,11,D32,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,GT,GT TRANSEO 4.0,RG,8,WHI,600.0,STOLEN,1238,"{'type': 'Point', 'coordinates': (-79.4633489, 43.75025176)}"
-1249,10654,GO-20151800364,THEFT UNDER,2015-10-18T00:00:00,2015,October,Sunday,18,291,21,2015-10-19T00:00:00,2015,October,Monday,19,292,13,D31,Toronto,27,York University Heights (27),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,QUANTUM,TRIBAL,MT,24,SILBLK,,STOLEN,1239,"{'type': 'Point', 'coordinates': (-79.49665541, 43.76724994)}"
-1250,10656,GO-20151809129,THEFT UNDER,2015-10-20T00:00:00,2015,October,Tuesday,20,293,22,2015-10-20T00:00:00,2015,October,Tuesday,20,293,22,D31,Toronto,27,York University Heights (27),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NEXT,,RG,6,BLKGLD,130.0,STOLEN,1240,"{'type': 'Point', 'coordinates': (-79.49882013, 43.77674565)}"
-1251,10747,GO-20159009619,THEFT UNDER,2015-10-28T00:00:00,2015,October,Wednesday,28,301,20,2015-11-10T00:00:00,2015,November,Tuesday,10,314,23,D31,Toronto,27,York University Heights (27),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,TO,40,BLK,825.0,STOLEN,1241,"{'type': 'Point', 'coordinates': (-79.49848605, 43.76896311)}"
-1252,10834,GO-20159010482,THEFT UNDER,2015-12-02T00:00:00,2015,December,Wednesday,2,336,17,2015-12-04T00:00:00,2015,December,Friday,4,338,12,D31,Toronto,27,York University Heights (27),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,30,DGR,350.0,STOLEN,1242,"{'type': 'Point', 'coordinates': (-79.49800406, 43.76775648)}"
-1253,10991,GO-2016267959,THEFT UNDER - BICYCLE,2016-02-11T00:00:00,2016,February,Thursday,11,42,22,2016-02-14T00:00:00,2016,February,Sunday,14,45,11,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,FAT BOY,,RG,1,GRYRED,260.0,STOLEN,1243,"{'type': 'Point', 'coordinates': (-79.50115588, 43.76706746)}"
-1254,11061,GO-20169002403,THEFT UNDER - BICYCLE,2016-03-11T00:00:00,2016,March,Friday,11,71,16,2016-03-16T00:00:00,2016,March,Wednesday,16,76,9,D32,Toronto,27,York University Heights (27),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,,MT,21,,500.0,STOLEN,1244,"{'type': 'Point', 'coordinates': (-79.4811406, 43.77536374)}"
-1255,11089,GO-2016551211,THEFT UNDER,2016-03-29T00:00:00,2016,March,Tuesday,29,89,12,2016-04-01T00:00:00,2016,April,Friday,1,92,10,D31,Toronto,27,York University Heights (27),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OPUS,URBANO,OT,18,RED,120.0,STOLEN,1245,"{'type': 'Point', 'coordinates': (-79.49800406, 43.76775648)}"
-1256,11132,GO-20169003358,THEFT UNDER - BICYCLE,2016-04-08T00:00:00,2016,April,Friday,8,99,16,2016-04-13T00:00:00,2016,April,Wednesday,13,104,12,D31,Toronto,27,York University Heights (27),Go Station,Transit,UK,,MT,21,RED,150.0,STOLEN,1246,"{'type': 'Point', 'coordinates': (-79.48836824, 43.77827641)}"
-1257,11273,GO-20169004250,THEFT UNDER - BICYCLE,2016-05-01T00:00:00,2016,May,Sunday,1,122,20,2016-05-07T00:00:00,2016,May,Saturday,7,128,11,D32,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,SC,,MT,21,ONG,649.0,STOLEN,1247,"{'type': 'Point', 'coordinates': (-79.4633489, 43.75025176)}"
-1258,11316,GO-20169004575,THEFT UNDER - BICYCLE,2016-05-10T00:00:00,2016,May,Tuesday,10,131,12,2016-05-16T00:00:00,2016,May,Monday,16,137,12,D31,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,TRAIL X COMP,MT,21,RED,700.0,STOLEN,1248,"{'type': 'Point', 'coordinates': (-79.49917246, 43.76526221)}"
-1259,11573,GO-20169005999,THEFT UNDER,2016-06-17T00:00:00,2016,June,Friday,17,169,22,2016-06-18T00:00:00,2016,June,Saturday,18,170,21,D31,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,TO,21,,550.0,STOLEN,1249,"{'type': 'Point', 'coordinates': (-79.5028438, 43.76801296)}"
-1260,12043,GO-20161402955,THEFT UNDER - BICYCLE,2016-08-03T00:00:00,2016,August,Wednesday,3,216,12,2016-08-09T00:00:00,2016,August,Tuesday,9,222,14,D31,Toronto,27,York University Heights (27),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EQUATOR,,MT,7,,400.0,STOLEN,1250,"{'type': 'Point', 'coordinates': (-79.5028438, 43.76801296)}"
-1261,12106,GO-20169008821,THEFT UNDER - BICYCLE,2016-08-15T00:00:00,2016,August,Monday,15,228,5,2016-08-15T00:00:00,2016,August,Monday,15,228,20,D31,Toronto,27,York University Heights (27),"Group Homes (Non-Profit, Halfway House, Social Agency)",Other,OT,,OT,21,BLU,399.0,STOLEN,1251,"{'type': 'Point', 'coordinates': (-79.49665541, 43.76724994)}"
-1262,12145,GO-20169009080,THEFT UNDER,2016-08-19T00:00:00,2016,August,Friday,19,232,9,2016-08-19T00:00:00,2016,August,Friday,19,232,18,D31,Toronto,27,York University Heights (27),Universities / Colleges,Educational,UK,ALLEZ,OT,10,BLU,400.0,STOLEN,1252,"{'type': 'Point', 'coordinates': (-79.50240222, 43.77447286000001)}"
-1263,12371,GO-20169010608,THEFT UNDER - BICYCLE,2016-09-17T00:00:00,2016,September,Saturday,17,261,20,2016-09-17T00:00:00,2016,September,Saturday,17,261,21,D31,Toronto,27,York University Heights (27),Universities / Colleges,Educational,KO,MENS COMFORT BI,MT,24,BLK,1400.0,STOLEN,1253,"{'type': 'Point', 'coordinates': (-79.50080714, 43.77034083)}"
-1264,13528,GO-20199031890,THEFT UNDER - BICYCLE,2019-09-28T00:00:00,2019,September,Saturday,28,271,6,2019-09-28T00:00:00,2019,September,Saturday,28,271,14,D32,Toronto,27,York University Heights (27),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RG,21,TAN,190.0,STOLEN,1255,"{'type': 'Point', 'coordinates': (-79.48101667, 43.78470041)}"
-1265,13586,GO-20209024387,THEFT UNDER,2020-09-24T00:00:00,2020,September,Thursday,24,268,16,2020-09-24T00:00:00,2020,September,Thursday,24,268,18,D32,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GT,AGGRESSOR,MT,10,LGR,550.0,STOLEN,1256,"{'type': 'Point', 'coordinates': (-79.47471632, 43.78618439)}"
-1266,14277,GO-20209016865,THEFT UNDER,2020-06-05T00:00:00,2020,June,Friday,5,157,11,2020-07-05T00:00:00,2020,July,Sunday,5,187,12,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,RA,2012-2014 ROPER,RG,21,BLU,700.0,STOLEN,1257,"{'type': 'Point', 'coordinates': (-79.50147952, 43.77191841)}"
-1267,14282,GO-20209017283,THEFT UNDER - BICYCLE,2020-07-02T00:00:00,2020,July,Thursday,2,184,2,2020-07-10T00:00:00,2020,July,Friday,10,192,19,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,SU,,MT,24,BLK,150.0,STOLEN,1258,"{'type': 'Point', 'coordinates': (-79.50396304, 43.76777105)}"
-1268,14334,GO-20202059580,THEFT UNDER - BICYCLE,2020-10-22T00:00:00,2020,October,Thursday,22,296,15,2020-10-30T00:00:00,2020,October,Friday,30,304,13,D31,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MONTANA,220,MT,0,BLK,1300.0,STOLEN,1259,"{'type': 'Point', 'coordinates': (-79.50047966, 43.76224141)}"
-1269,14453,GO-20189028407,THEFT UNDER,2018-07-09T00:00:00,2018,July,Monday,9,190,20,2018-08-29T00:00:00,2018,August,Wednesday,29,241,12,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,OT,EAGLE DELUXE,EL,32,BLK,2824.0,STOLEN,1260,"{'type': 'Point', 'coordinates': (-79.50082146, 43.76336098)}"
-1270,14501,GO-20199010362,THEFT UNDER,2019-04-02T00:00:00,2019,April,Tuesday,2,92,8,2019-04-02T00:00:00,2019,April,Tuesday,2,92,10,D31,Toronto,27,York University Heights (27),Schools During Un-Supervised Activity,Educational,UK,BMX,BM,1,BLK,200.0,STOLEN,1261,"{'type': 'Point', 'coordinates': (-79.49961757, 43.75974862)}"
-1271,14516,GO-20199017120,THEFT UNDER,2019-05-30T00:00:00,2019,May,Thursday,30,150,20,2019-06-01T00:00:00,2019,June,Saturday,1,152,15,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,OT,ROGUE,EL,32,BLU,2598.0,STOLEN,1262,"{'type': 'Point', 'coordinates': (-79.50082146, 43.76336098)}"
-1272,14570,GO-20191627027,THEFT UNDER - BICYCLE,2019-08-24T00:00:00,2019,August,Saturday,24,236,8,2019-08-26T00:00:00,2019,August,Monday,26,238,10,D31,Toronto,27,York University Heights (27),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,AGRESSOR,MT,21,ONG,100.0,STOLEN,1263,"{'type': 'Point', 'coordinates': (-79.49869697, 43.76679708)}"
-1273,14594,GO-20199034919,THEFT UNDER,2019-10-22T00:00:00,2019,October,Tuesday,22,295,23,2019-10-23T00:00:00,2019,October,Wednesday,23,296,12,D31,Toronto,27,York University Heights (27),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RM,,MT,21,GRY,800.0,STOLEN,1264,"{'type': 'Point', 'coordinates': (-79.49425566, 43.76634827)}"
-1274,14644,GO-20209014061,THEFT UNDER,2020-05-27T00:00:00,2020,May,Wednesday,27,148,14,2020-05-27T00:00:00,2020,May,Wednesday,27,148,17,D31,Toronto,27,York University Heights (27),Ttc Subway Station,Transit,GI,ESCAPE 2 CITY,RG,25,GRY,790.0,STOLEN,1265,"{'type': 'Point', 'coordinates': (-79.49101221000001, 43.76350255)}"
-1275,14649,GO-20209014337,THEFT UNDER - BICYCLE,2020-05-31T00:00:00,2020,May,Sunday,31,152,12,2020-06-01T00:00:00,2020,June,Monday,1,153,13,D31,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,,MT,18,BLK,109.0,STOLEN,1266,"{'type': 'Point', 'coordinates': (-79.49917246, 43.76526221)}"
-1276,14654,GO-2017978440,THEFT FROM MOTOR VEHICLE UNDER,2017-05-25T00:00:00,2017,May,Thursday,25,145,11,2017-06-02T00:00:00,2017,June,Friday,2,153,17,D32,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,NOVARA,MT,18,BLK,450.0,STOLEN,1267,"{'type': 'Point', 'coordinates': (-79.4633489, 43.75025176)}"
-1277,14655,GO-20179007739,THEFT UNDER - BICYCLE,2017-06-08T00:00:00,2017,June,Thursday,8,159,9,2017-06-08T00:00:00,2017,June,Thursday,8,159,19,D32,Toronto,27,York University Heights (27),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,VENTURA SPORT,RC,1,SIL,620.0,STOLEN,1268,"{'type': 'Point', 'coordinates': (-79.47004827000002, 43.78728363)}"
-1278,14778,GO-20189014609,THEFT UNDER,2018-05-11T00:00:00,2018,May,Friday,11,131,19,2018-05-11T00:00:00,2018,May,Friday,11,131,22,D31,Toronto,27,York University Heights (27),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,,MT,12,MRN,500.0,STOLEN,1269,"{'type': 'Point', 'coordinates': (-79.49900572, 43.76753752)}"
-1279,14790,GO-20189016737,THEFT UNDER - BICYCLE,2018-05-23T00:00:00,2018,May,Wednesday,23,143,23,2018-05-29T00:00:00,2018,May,Tuesday,29,149,23,D31,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,HARDROCK DISK 2,MT,21,BLK,600.0,STOLEN,1270,"{'type': 'Point', 'coordinates': (-79.48823726, 43.76408749)}"
-1280,14830,GO-20189024514,THEFT UNDER - BICYCLE,2018-07-30T00:00:00,2018,July,Monday,30,211,15,2018-07-30T00:00:00,2018,July,Monday,30,211,21,D31,Toronto,27,York University Heights (27),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,,MT,21,PLE,400.0,STOLEN,1271,"{'type': 'Point', 'coordinates': (-79.49623563, 43.7593841)}"
-1281,14846,GO-20189027454,THEFT UNDER - BICYCLE,2016-10-12T00:00:00,2016,October,Wednesday,12,286,20,2018-08-22T00:00:00,2018,August,Wednesday,22,234,14,D31,Toronto,27,York University Heights (27),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,20,YEL,0.0,STOLEN,1272,"{'type': 'Point', 'coordinates': (-79.50852047, 43.77429016)}"
-1282,14944,GO-2015760172,THEFT FROM MOTOR VEHICLE UNDER,2015-05-06T00:00:00,2015,May,Wednesday,6,126,23,2015-05-07T00:00:00,2015,May,Thursday,7,127,14,D31,Toronto,27,York University Heights (27),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,RC,21,ONGYEL,2500.0,STOLEN,1273,"{'type': 'Point', 'coordinates': (-79.50263094, 43.7653802)}"
-1283,14945,GO-2015760172,THEFT FROM MOTOR VEHICLE UNDER,2015-05-06T00:00:00,2015,May,Wednesday,6,126,23,2015-05-07T00:00:00,2015,May,Thursday,7,127,14,D31,Toronto,27,York University Heights (27),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,1,BLU,300.0,STOLEN,1274,"{'type': 'Point', 'coordinates': (-79.50263094, 43.7653802)}"
-1284,14952,GO-2015916335,THEFT UNDER,2015-05-31T00:00:00,2015,May,Sunday,31,151,0,2015-06-01T00:00:00,2015,June,Monday,1,152,23,D31,Toronto,27,York University Heights (27),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,,OT,15,BLKRED,2200.0,STOLEN,1275,"{'type': 'Point', 'coordinates': (-79.49247616000001, 43.74590922)}"
-1285,14955,GO-20159003589,THEFT UNDER,2015-06-13T00:00:00,2015,June,Saturday,13,164,23,2015-06-14T00:00:00,2015,June,Sunday,14,165,9,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,SC,,TO,14,DBL,200.0,STOLEN,1276,"{'type': 'Point', 'coordinates': (-79.49105306, 43.74684334)}"
-1286,14956,GO-20159003589,THEFT UNDER,2015-06-13T00:00:00,2015,June,Saturday,13,164,23,2015-06-14T00:00:00,2015,June,Sunday,14,165,9,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,HF,,MT,12,BLU,200.0,STOLEN,1277,"{'type': 'Point', 'coordinates': (-79.49105306, 43.74684334)}"
-1287,14978,GO-20151677041,THEFT UNDER,2015-09-25T00:00:00,2015,September,Friday,25,268,22,2015-09-28T00:00:00,2015,September,Monday,28,271,15,D31,Toronto,27,York University Heights (27),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,,MT,24,BLKGRN,650.0,STOLEN,1278,"{'type': 'Point', 'coordinates': (-79.4997085, 43.76657268)}"
-1288,15045,GO-20179005742,THEFT UNDER - BICYCLE,2017-05-04T00:00:00,2017,May,Thursday,4,124,18,2017-05-04T00:00:00,2017,May,Thursday,4,124,22,D31,Toronto,27,York University Heights (27),Schools During Supervised Activity,Educational,SU,,RG,18,BLK,110.0,STOLEN,1279,"{'type': 'Point', 'coordinates': (-79.49905341, 43.7571368)}"
-1289,15048,GO-2017832935,THEFT UNDER - BICYCLE,2017-05-11T00:00:00,2017,May,Thursday,11,131,1,2017-05-11T00:00:00,2017,May,Thursday,11,131,21,D31,Toronto,27,York University Heights (27),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,OT,1,BRN,,STOLEN,1280,"{'type': 'Point', 'coordinates': (-79.50372563, 43.76525072)}"
-1290,17342,GO-20209015827,THEFT UNDER,2020-06-19T00:00:00,2020,June,Friday,19,171,2,2020-06-21T00:00:00,2020,June,Sunday,21,173,1,D31,Toronto,27,York University Heights (27),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,ATX ELITE 2018,MT,27,BLU,1200.0,STOLEN,1281,"{'type': 'Point', 'coordinates': (-79.48811342, 43.77316747)}"
-1291,17349,GO-20209016752,THEFT UNDER,2020-07-02T00:00:00,2020,July,Thursday,2,184,4,2020-07-03T00:00:00,2020,July,Friday,3,185,14,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,RA,MISCEO TRAIL 2.,RG,21,BRN,800.0,STOLEN,1282,"{'type': 'Point', 'coordinates': (-79.49917246, 43.76526221)}"
-1292,17363,GO-20209018840,THEFT UNDER,2020-07-28T00:00:00,2020,July,Tuesday,28,210,16,2020-07-28T00:00:00,2020,July,Tuesday,28,210,19,D31,Toronto,27,York University Heights (27),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,TAKARA SUGIYAMA,RG,1,GRY,350.0,STOLEN,1283,"{'type': 'Point', 'coordinates': (-79.49767583, 43.76702359)}"
-1293,17377,GO-20209020769,THEFT UNDER,2020-08-19T00:00:00,2020,August,Wednesday,19,232,20,2020-08-20T00:00:00,2020,August,Thursday,20,233,15,D31,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,RG,20,LBL,0.0,STOLEN,1284,"{'type': 'Point', 'coordinates': (-79.49826972000001, 43.77089099)}"
-1294,17386,GO-20209022138,THEFT UNDER - BICYCLE,2020-09-01T00:00:00,2020,September,Tuesday,1,245,0,2020-09-02T00:00:00,2020,September,Wednesday,2,246,21,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,GT,AGGRESSOR COMP,MT,21,BLK,407.0,STOLEN,1285,"{'type': 'Point', 'coordinates': (-79.50147952, 43.77191841)}"
-1295,17403,GO-20209026964,THEFT UNDER,2020-10-15T00:00:00,2020,October,Thursday,15,289,9,2020-10-19T00:00:00,2020,October,Monday,19,293,15,D31,Toronto,27,York University Heights (27),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,,RG,7,BLK,550.0,STOLEN,1286,"{'type': 'Point', 'coordinates': (-79.50372563, 43.76525072)}"
-1296,17673,GO-20199039098,THEFT UNDER,2019-11-27T00:00:00,2019,November,Wednesday,27,331,19,2019-11-27T00:00:00,2019,November,Wednesday,27,331,22,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,16,LBL,600.0,STOLEN,1288,"{'type': 'Point', 'coordinates': (-79.50047966, 43.76224141)}"
-1297,17702,GO-2020579423,THEFT UNDER - BICYCLE,2020-03-17T00:00:00,2020,March,Tuesday,17,77,20,2020-03-21T00:00:00,2020,March,Saturday,21,81,17,D31,Toronto,27,York University Heights (27),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,SC1800,MT,18,BLKRED,125.0,STOLEN,1289,"{'type': 'Point', 'coordinates': (-79.4969591, 43.76798489)}"
-1298,17724,GO-20179014151,THEFT UNDER,2017-09-06T00:00:00,2017,September,Wednesday,6,249,9,2017-09-06T00:00:00,2017,September,Wednesday,6,249,19,D31,Toronto,27,York University Heights (27),Universities / Colleges,Educational,OT,DRIFT,TO,1,LGR,600.0,STOLEN,1290,"{'type': 'Point', 'coordinates': (-79.50240222, 43.77447286000001)}"
-1299,17738,GO-20171706231,THEFT UNDER - BICYCLE,2017-09-20T00:00:00,2017,September,Wednesday,20,263,8,2017-09-23T00:00:00,2017,September,Saturday,23,266,19,D31,Toronto,27,York University Heights (27),Schools During Un-Supervised Activity,Educational,AQUILA,,RC,1,YEL,500.0,STOLEN,1291,"{'type': 'Point', 'coordinates': (-79.50240222, 43.77447286000001)}"
-1300,17766,GO-20179019683,THEFT UNDER - BICYCLE,2017-11-15T00:00:00,2017,November,Wednesday,15,319,10,2017-11-15T00:00:00,2017,November,Wednesday,15,319,11,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,12,WHI,750.0,STOLEN,1292,"{'type': 'Point', 'coordinates': (-79.49917246, 43.76526221)}"
-1301,17822,GO-20189017224,THEFT UNDER,2018-06-01T00:00:00,2018,June,Friday,1,152,18,2018-06-03T00:00:00,2018,June,Sunday,3,154,19,D31,Toronto,27,York University Heights (27),Ttc Subway Station,Transit,OT,SINGLE SPEED 70,RC,1,LGR,0.0,STOLEN,1293,"{'type': 'Point', 'coordinates': (-79.49101221000001, 43.76350255)}"
-1302,17826,GO-20189018279,THEFT UNDER - BICYCLE,2018-06-10T00:00:00,2018,June,Sunday,10,161,20,2018-06-11T00:00:00,2018,June,Monday,11,162,15,D31,Toronto,27,York University Heights (27),Universities / Colleges,Educational,CC,,MT,21,BLK,250.0,STOLEN,1294,"{'type': 'Point', 'coordinates': (-79.49994532, 43.77052769)}"
-1303,17847,GO-20181163082,THEFT OF EBIKE UNDER $5000,2018-06-26T00:00:00,2018,June,Tuesday,26,177,1,2018-06-26T00:00:00,2018,June,Tuesday,26,177,16,D31,Toronto,27,York University Heights (27),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,CITYGO2010,EL,32,YELBLK,500.0,STOLEN,1295,"{'type': 'Point', 'coordinates': (-79.50082146, 43.76336098)}"
-1304,17899,GO-20189029368,THEFT UNDER - BICYCLE,2018-09-05T00:00:00,2018,September,Wednesday,5,248,13,2018-09-06T00:00:00,2018,September,Thursday,6,249,16,D31,Toronto,27,York University Heights (27),Ttc Subway Station,Transit,CC,APEX,MT,24,GRY,400.0,STOLEN,1296,"{'type': 'Point', 'coordinates': (-79.50240222, 43.77447286000001)}"
-1305,17900,GO-20189029368,THEFT UNDER - BICYCLE,2018-09-05T00:00:00,2018,September,Wednesday,5,248,13,2018-09-06T00:00:00,2018,September,Thursday,6,249,16,D31,Toronto,27,York University Heights (27),Ttc Subway Station,Transit,CC,APEX,MT,24,GRY,350.0,STOLEN,1297,"{'type': 'Point', 'coordinates': (-79.50240222, 43.77447286000001)}"
-1306,17938,GO-20142619093,THEFT UNDER,2014-07-31T00:00:00,2014,July,Thursday,31,212,10,2014-08-02T00:00:00,2014,August,Saturday,2,214,0,D31,Toronto,27,York University Heights (27),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SUPERCYCLE,,MT,6,PNKPLE,70.0,STOLEN,1298,"{'type': 'Point', 'coordinates': (-79.4997085, 43.76657268)}"
-1307,17939,GO-20142619093,THEFT UNDER,2014-07-31T00:00:00,2014,July,Thursday,31,212,10,2014-08-02T00:00:00,2014,August,Saturday,2,214,0,D31,Toronto,27,York University Heights (27),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,,MT,10,BLU,80.0,STOLEN,1299,"{'type': 'Point', 'coordinates': (-79.4997085, 43.76657268)}"
-1308,17940,GO-20142653511,THEFT UNDER,2014-08-06T00:00:00,2014,August,Wednesday,6,218,14,2014-08-07T00:00:00,2014,August,Thursday,7,219,12,D32,Toronto,27,York University Heights (27),"Construction Site (Warehouse, Trailer, Shed)",Commercial,GT,TIMBERLINE,OT,10,,,STOLEN,1300,"{'type': 'Point', 'coordinates': (-79.46717831, 43.75192515)}"
-1309,17969,GO-20159003715,THEFT UNDER,2015-06-16T00:00:00,2015,June,Tuesday,16,167,20,2015-06-18T00:00:00,2015,June,Thursday,18,169,6,D31,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,EX PLUS,BM,20,RED,530.0,STOLEN,1301,"{'type': 'Point', 'coordinates': (-79.48945308, 43.75744848)}"
-1310,18034,GO-20161355068,THEFT UNDER - BICYCLE,2016-07-24T00:00:00,2016,July,Sunday,24,206,12,2016-07-28T00:00:00,2016,July,Thursday,28,210,11,D31,Toronto,27,York University Heights (27),"Construction Site (Warehouse, Trailer, Shed)",Commercial,HUFFY,FALLOUT,MT,21,BLK,,STOLEN,1302,"{'type': 'Point', 'coordinates': (-79.50240222, 43.77447286000001)}"
-1311,18040,GO-20169008400,THEFT UNDER - BICYCLE,2016-08-08T00:00:00,2016,August,Monday,8,221,17,2016-08-08T00:00:00,2016,August,Monday,8,221,19,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,HF,,MT,8,RED,0.0,STOLEN,1303,"{'type': 'Point', 'coordinates': (-79.49105306, 43.74684334)}"
-1312,18043,GO-20169008614,THEFT UNDER,2016-08-10T00:00:00,2016,August,Wednesday,10,223,7,2016-08-12T00:00:00,2016,August,Friday,12,225,1,D31,Toronto,27,York University Heights (27),Universities / Colleges,Educational,RA,,MT,21,MRN,0.0,STOLEN,1304,"{'type': 'Point', 'coordinates': (-79.50060656, 43.77632965)}"
-1313,18048,GO-20169009987,THEFT UNDER - BICYCLE,2016-08-01T00:00:00,2016,August,Monday,1,214,15,2016-09-05T00:00:00,2016,September,Monday,5,249,16,D31,Toronto,27,York University Heights (27),Universities / Colleges,Educational,SP,PATHFINDER,TO,10,BLU,100.0,STOLEN,1305,"{'type': 'Point', 'coordinates': (-79.50240222, 43.77447286000001)}"
-1314,18073,GO-2017994010,THEFT UNDER - BICYCLE,2017-06-05T00:00:00,2017,June,Monday,5,156,1,2017-06-05T00:00:00,2017,June,Monday,5,156,6,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,GIANT,ESCAPE,RG,9,GRY,700.0,STOLEN,1306,"{'type': 'Point', 'coordinates': (-79.50372563, 43.76525072)}"
-1315,20084,GO-20209010236,THEFT UNDER - BICYCLE,2020-03-01T00:00:00,2020,March,Sunday,1,61,17,2020-03-31T00:00:00,2020,March,Tuesday,31,91,17,D32,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,NO,CHARGER,MT,24,BLK,885.0,STOLEN,1307,"{'type': 'Point', 'coordinates': (-79.4633489, 43.75025176)}"
-1316,20090,GO-20209015111,THEFT UNDER - BICYCLE,2020-06-11T00:00:00,2020,June,Thursday,11,163,18,2020-06-12T00:00:00,2020,June,Friday,12,164,0,D32,Toronto,27,York University Heights (27),Bar / Restaurant,Commercial,GT,,MT,10,RED,895.0,STOLEN,1308,"{'type': 'Point', 'coordinates': (-79.46497644000002, 43.75775729000001)}"
-1317,20100,GO-20209016899,THEFT UNDER - BICYCLE,2020-07-01T00:00:00,2020,July,Wednesday,1,183,19,2020-07-06T00:00:00,2020,July,Monday,6,188,10,D32,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,OT,TRAIL X 2015,MT,21,YEL,350.0,STOLEN,1309,"{'type': 'Point', 'coordinates': (-79.46639639, 43.75118973)}"
-1318,20101,GO-20209016905,THEFT UNDER - BICYCLE,2020-07-05T00:00:00,2020,July,Sunday,5,187,7,2020-07-05T00:00:00,2020,July,Sunday,5,187,17,D32,Toronto,27,York University Heights (27),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,2013 MILANO,TO,21,BLK,459.0,STOLEN,1310,"{'type': 'Point', 'coordinates': (-79.47010818, 43.78384033)}"
-1319,20819,GO-20201899008,THEFT UNDER,2020-09-28T00:00:00,2020,September,Monday,28,272,18,2020-10-06T00:00:00,2020,October,Tuesday,6,280,15,D31,Toronto,27,York University Heights (27),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BONELLI,,MT,21,,450.0,STOLEN,1311,"{'type': 'Point', 'coordinates': (-79.50047966, 43.76224141)}"
-1320,21042,GO-20191549156,THEFT UNDER - BICYCLE,2019-08-11T00:00:00,2019,August,Sunday,11,223,1,2019-08-15T00:00:00,2019,August,Thursday,15,227,12,D31,Toronto,27,York University Heights (27),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,NITRO XT,MT,21,GRYONG,160.0,STOLEN,1312,"{'type': 'Point', 'coordinates': (-79.50447515, 43.76637136)}"
-1321,21057,GO-20191727550,THEFT UNDER,2019-09-04T00:00:00,2019,September,Wednesday,4,247,18,2019-09-09T00:00:00,2019,September,Monday,9,252,11,D31,Toronto,27,York University Heights (27),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,INDIE,OT,7,GRY,1100.0,STOLEN,1313,"{'type': 'Point', 'coordinates': (-79.4997085, 43.76657268)}"
-1322,21061,GO-20199029761,THEFT UNDER,2019-09-11T00:00:00,2019,September,Wednesday,11,254,0,2019-09-13T00:00:00,2019,September,Friday,13,256,0,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,GT,ELITE,RG,15,BLK,900.0,STOLEN,1314,"{'type': 'Point', 'coordinates': (-79.49712777, 43.76569559)}"
-1323,21070,GO-20199031817,THEFT UNDER,2019-09-25T00:00:00,2019,September,Wednesday,25,268,6,2019-09-27T00:00:00,2019,September,Friday,27,270,19,D31,Toronto,27,York University Heights (27),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,STORM 2,MT,50,DBL,900.0,STOLEN,1315,"{'type': 'Point', 'coordinates': (-79.49101221000001, 43.76350255)}"
-1324,21097,GO-20192296881,THEFT UNDER - SHOPLIFTING,2019-12-02T00:00:00,2019,December,Monday,2,336,15,2019-12-02T00:00:00,2019,December,Monday,2,336,15,D31,Toronto,27,York University Heights (27),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SUPERCYCLE,,RC,0,BLU,,UNKNOWN,1316,"{'type': 'Point', 'coordinates': (-79.48945308, 43.75744848)}"
-1325,21108,GO-20209004519,THEFT UNDER,2020-02-04T00:00:00,2020,February,Tuesday,4,35,14,2020-02-06T00:00:00,2020,February,Thursday,6,37,16,D31,Toronto,27,York University Heights (27),Universities / Colleges,Educational,OT,200MM FLEX,SC,1,BLU,270.0,STOLEN,1317,"{'type': 'Point', 'coordinates': (-79.50240222, 43.77447286000001)}"
-1326,21139,GO-20209014337,THEFT UNDER - BICYCLE,2020-05-31T00:00:00,2020,May,Sunday,31,152,12,2020-06-01T00:00:00,2020,June,Monday,1,153,13,D31,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,,MT,18,,,STOLEN,1318,"{'type': 'Point', 'coordinates': (-79.49917246, 43.76526221)}"
-1327,21187,GO-20179010653,THEFT UNDER - BICYCLE,2017-07-19T00:00:00,2017,July,Wednesday,19,200,19,2017-07-20T00:00:00,2017,July,Thursday,20,201,9,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,CC,EQUATOR,MT,21,SIL,300.0,STOLEN,1319,"{'type': 'Point', 'coordinates': (-79.50334807, 43.76978983)}"
-1328,21201,GO-20171536761,THEFT UNDER - BICYCLE,2017-08-25T00:00:00,2017,August,Friday,25,237,7,2017-08-25T00:00:00,2017,August,Friday,25,237,7,D31,Toronto,27,York University Heights (27),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SCHWINN,SOTO,RG,21,GRN,,RECOVERED,1320,"{'type': 'Point', 'coordinates': (-79.49218672, 43.75801186)}"
-1329,21281,GO-20189017310,THEFT UNDER - BICYCLE,2018-06-02T00:00:00,2018,June,Saturday,2,153,9,2018-06-04T00:00:00,2018,June,Monday,4,155,12,D32,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RA,,OT,21,BLU,600.0,STOLEN,1321,"{'type': 'Point', 'coordinates': (-79.4633489, 43.75025176)}"
-1330,21287,GO-20189017963,THEFT UNDER - BICYCLE,2018-06-08T00:00:00,2018,June,Friday,8,159,10,2018-06-09T00:00:00,2018,June,Saturday,9,160,0,D31,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,,MT,21,PLE,0.0,STOLEN,1322,"{'type': 'Point', 'coordinates': (-79.49917246, 43.76526221)}"
-1331,21288,GO-20189017963,THEFT UNDER - BICYCLE,2018-06-08T00:00:00,2018,June,Friday,8,159,10,2018-06-09T00:00:00,2018,June,Saturday,9,160,0,D31,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,,MT,30,RED,0.0,STOLEN,1323,"{'type': 'Point', 'coordinates': (-79.49917246, 43.76526221)}"
-1332,21303,GO-20189020824,THEFT UNDER - BICYCLE,2018-06-29T00:00:00,2018,June,Friday,29,180,18,2018-06-29T00:00:00,2018,June,Friday,29,180,22,D32,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,NITRO 21SPEED,MT,5,GRY,200.0,STOLEN,1324,"{'type': 'Point', 'coordinates': (-79.47471632, 43.78618439)}"
-1333,21343,GO-20181719422,THEFT UNDER - BICYCLE,2018-09-16T00:00:00,2018,September,Sunday,16,259,21,2018-09-16T00:00:00,2018,September,Sunday,16,259,21,D31,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPORTEK,RIDGERUNNER,MT,18,BLU,200.0,STOLEN,1325,"{'type': 'Point', 'coordinates': (-79.49814917, 43.7654791)}"
-1334,21997,GO-20149002789,THEFT UNDER,2014-04-11T00:00:00,2014,April,Friday,11,101,13,2014-04-12T00:00:00,2014,April,Saturday,12,102,14,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,UK,DS-MONACO-005,EL,3,RED,963.0,UNKNOWN,1326,"{'type': 'Point', 'coordinates': (-79.4916515, 43.75723039)}"
-1335,22042,GO-20143264382,THEFT UNDER,2014-11-08T00:00:00,2014,November,Saturday,8,312,11,2014-11-08T00:00:00,2014,November,Saturday,8,312,16,D32,Toronto,27,York University Heights (27),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,MARLIN,MT,21,REDBLK,850.0,STOLEN,1327,"{'type': 'Point', 'coordinates': (-79.47004827000002, 43.78728363)}"
-1336,22051,GO-2015711612,THEFT UNDER,2015-04-29T00:00:00,2015,April,Wednesday,29,119,20,2015-04-29T00:00:00,2015,April,Wednesday,29,119,21,D31,Toronto,27,York University Heights (27),"Open Areas (Lakes, Parks, Rivers)",Outside,AVIGO,"20 """"",RG,7,GRYONG,140.0,STOLEN,1328,"{'type': 'Point', 'coordinates': (-79.49105306, 43.74684334)}"
-1337,14998,GO-2016932619,B&E,2016-05-27T00:00:00,2016,May,Friday,27,148,23,2016-05-30T00:00:00,2016,May,Monday,30,151,7,D31,Toronto,26,Downsview-Roding-CFB (26),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,MT,12,GRN,20.0,STOLEN,1329,"{'type': 'Point', 'coordinates': (-79.52038301000002, 43.72449496)}"
-1338,6652,GO-20201334404,THEFT UNDER,2020-07-17T00:00:00,2020,July,Friday,17,199,22,2020-07-18T00:00:00,2020,July,Saturday,18,200,17,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,RG,21,BLUWHI,,STOLEN,1330,"{'type': 'Point', 'coordinates': (-79.45239005, 43.71432793)}"
-1339,851,GO-20171248015,THEFT UNDER - BICYCLE,2017-07-11T00:00:00,2017,July,Tuesday,11,192,22,2017-07-12T00:00:00,2017,July,Wednesday,12,193,11,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,CCM,ALPHA,MT,21,GRNBLK,350.0,STOLEN,1331,"{'type': 'Point', 'coordinates': (-79.52807305, 43.59020393)}"
-1340,14999,GO-2016932619,B&E,2016-05-27T00:00:00,2016,May,Friday,27,148,23,2016-05-30T00:00:00,2016,May,Monday,30,151,7,D31,Toronto,26,Downsview-Roding-CFB (26),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MIELE,,MT,12,LBL,400.0,STOLEN,1332,"{'type': 'Point', 'coordinates': (-79.52038301000002, 43.72449496)}"
-1341,1237,GO-20179013157,THEFT UNDER,2017-08-23T00:00:00,2017,August,Wednesday,23,235,16,2017-08-23T00:00:00,2017,August,Wednesday,23,235,16,D22,Toronto,19,Long Branch (19),Go Station,Transit,CC,KROSSPORT,MT,21,WHI,450.0,STOLEN,1333,"{'type': 'Point', 'coordinates': (-79.54491322, 43.59051582)}"
-1342,17534,GO-20189040540,THEFT UNDER - BICYCLE,2018-12-01T00:00:00,2018,December,Saturday,1,335,7,2018-12-02T00:00:00,2018,December,Sunday,2,336,14,D31,Toronto,26,Downsview-Roding-CFB (26),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,CRD 3,RC,8,GRY,500.0,STOLEN,1334,"{'type': 'Point', 'coordinates': (-79.51669411, 43.7209442)}"
-1343,1320,GO-20179014041,THEFT UNDER - BICYCLE,2017-09-01T00:00:00,2017,September,Friday,1,244,21,2017-09-05T00:00:00,2017,September,Tuesday,5,248,16,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,8,SIL,1000.0,STOLEN,1335,"{'type': 'Point', 'coordinates': (-79.54560481, 43.58975212000001)}"
-1344,6653,GO-20201336173,THEFT UNDER,2020-07-17T00:00:00,2020,July,Friday,17,199,22,2020-07-18T00:00:00,2020,July,Saturday,18,200,18,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,RG,21,BLK,900.0,STOLEN,1336,"{'type': 'Point', 'coordinates': (-79.45239005, 43.71432793)}"
-1345,17535,GO-20182269899,B&E,2018-12-10T00:00:00,2018,December,Monday,10,344,23,2018-12-11T00:00:00,2018,December,Tuesday,11,345,6,D31,Toronto,26,Downsview-Roding-CFB (26),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DAYMAK,EAGLE,EL,25,BLK,300.0,STOLEN,1337,"{'type': 'Point', 'coordinates': (-79.50607245, 43.72468144)}"
-1346,1511,GO-20171741169,THEFT UNDER,2017-09-22T00:00:00,2017,September,Friday,22,265,15,2017-09-25T00:00:00,2017,September,Monday,25,268,19,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,OTHER,,SC,0,RED,3450.0,STOLEN,1338,"{'type': 'Point', 'coordinates': (-79.52807305, 43.59020393)}"
-1347,1975,GO-20189000804,THEFT UNDER - BICYCLE,2018-01-10T00:00:00,2018,January,Wednesday,10,10,16,2018-01-10T00:00:00,2018,January,Wednesday,10,10,20,D22,Toronto,19,Long Branch (19),Go Train,Transit,OT,GRAND RAPID 3.0,RG,21,BLK,450.0,STOLEN,1339,"{'type': 'Point', 'coordinates': (-79.54491322, 43.59051582)}"
-1348,473,GO-20179007000,THEFT UNDER,2017-05-25T00:00:00,2017,May,Thursday,25,145,10,2017-05-26T00:00:00,2017,May,Friday,26,146,10,D22,Toronto,20,Alderwood (20),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,TALON 3,MT,24,BLK,2000.0,STOLEN,1340,"{'type': 'Point', 'coordinates': (-79.55211075, 43.60993279)}"
-1349,17565,GO-2019913916,B&E,2018-11-01T00:00:00,2018,November,Thursday,1,305,12,2019-05-19T00:00:00,2019,May,Sunday,19,139,15,D31,Toronto,26,Downsview-Roding-CFB (26),"Apartment (Rooming House, Condo)",Apartment,TALON,18 2 M,MT,18,GRN,1006.0,STOLEN,1341,"{'type': 'Point', 'coordinates': (-79.50808528, 43.72799612)}"
-1350,2034,GO-2018315182,ASSAULT,2018-02-19T00:00:00,2018,February,Monday,19,50,6,2018-02-19T00:00:00,2018,February,Monday,19,50,8,D22,Toronto,19,Long Branch (19),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,MT,21,WHI,,STOLEN,1342,"{'type': 'Point', 'coordinates': (-79.52663614, 43.59365294)}"
-1351,6686,GO-20209018111,THEFT UNDER,2020-07-20T00:00:00,2020,July,Monday,20,202,18,2020-07-21T00:00:00,2020,July,Tuesday,21,203,11,D13,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SU,,MT,21,GRY,192.0,STOLEN,1343,"{'type': 'Point', 'coordinates': (-79.44648085, 43.71561598)}"
-1352,652,GO-20171080219,THEFT UNDER - BICYCLE,2017-06-17T00:00:00,2017,June,Saturday,17,168,12,2017-06-20T00:00:00,2017,June,Tuesday,20,171,13,D22,Toronto,20,Alderwood (20),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,STUMPJUMPER,MT,27,BLK,3000.0,STOLEN,1344,"{'type': 'Point', 'coordinates': (-79.54608863, 43.6103777)}"
-1353,17566,GO-2019913916,B&E,2018-11-01T00:00:00,2018,November,Thursday,1,305,12,2019-05-19T00:00:00,2019,May,Sunday,19,139,15,D31,Toronto,26,Downsview-Roding-CFB (26),"Apartment (Rooming House, Condo)",Apartment,TALON,18 2 S BLUE,MT,18,BLU,1005.0,STOLEN,1345,"{'type': 'Point', 'coordinates': (-79.50808528, 43.72799612)}"
-1354,2385,GO-20189015949,THEFT UNDER - BICYCLE,2018-05-23T00:00:00,2018,May,Wednesday,23,143,15,2018-05-23T00:00:00,2018,May,Wednesday,23,143,15,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,GI,CITY ESCAPE 2,MT,18,GRY,600.0,STOLEN,1346,"{'type': 'Point', 'coordinates': (-79.53154531, 43.58892605)}"
-1355,6693,GO-20201336667,THEFT UNDER - BICYCLE,2020-07-18T00:00:00,2020,July,Saturday,18,200,7,2020-07-22T00:00:00,2020,July,Wednesday,22,204,12,D32,Toronto,31,Yorkdale-Glen Park (31),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OPUS,MULLARD,MT,7,GRN,1842.0,STOLEN,1347,"{'type': 'Point', 'coordinates': (-79.45239005, 43.71432793)}"
-1356,1939,GO-20173201739,THEFT UNDER - BICYCLE,2017-08-11T00:00:00,2017,August,Friday,11,223,10,2017-12-15T00:00:00,2017,December,Friday,15,349,15,D22,Toronto,20,Alderwood (20),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,APEX,MT,24,WHI,500.0,STOLEN,1348,"{'type': 'Point', 'coordinates': (-79.54594187, 43.60628928)}"
-1357,17967,GO-2015923997,THEFT UNDER,2015-06-02T00:00:00,2015,June,Tuesday,2,153,17,2015-06-02T00:00:00,2015,June,Tuesday,2,153,17,D31,Toronto,26,Downsview-Roding-CFB (26),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,ANIMAL,BM,1,BLKPLE,1000.0,STOLEN,1349,"{'type': 'Point', 'coordinates': (-79.50894007, 43.72236516)}"
-1358,18035,GO-20169008112,THEFT UNDER,2016-07-24T00:00:00,2016,July,Sunday,24,206,19,2016-08-02T00:00:00,2016,August,Tuesday,2,215,19,D32,Toronto,26,Downsview-Roding-CFB (26),"Apartment (Rooming House, Condo)",Apartment,GI,RINCON,MT,21,GRY,350.0,STOLEN,1350,"{'type': 'Point', 'coordinates': (-79.46547179, 43.73093253)}"
-1359,18036,GO-20169008112,THEFT UNDER,2016-07-24T00:00:00,2016,July,Sunday,24,206,19,2016-08-02T00:00:00,2016,August,Tuesday,2,215,19,D32,Toronto,26,Downsview-Roding-CFB (26),"Apartment (Rooming House, Condo)",Apartment,GI,RINCON,MT,21,GRY,350.0,STOLEN,1351,"{'type': 'Point', 'coordinates': (-79.46547179, 43.73093253)}"
-1360,20967,GO-20182125794,THEFT UNDER,2018-11-16T00:00:00,2018,November,Friday,16,320,17,2018-11-18T00:00:00,2018,November,Sunday,18,322,17,D31,Toronto,26,Downsview-Roding-CFB (26),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,DAYMAK,EL,40,,1700.0,STOLEN,1352,"{'type': 'Point', 'coordinates': (-79.50754285, 43.72271668)}"
-1361,21093,GO-20192199413,PROPERTY - FOUND,2019-11-14T00:00:00,2019,November,Thursday,14,318,10,2019-11-14T00:00:00,2019,November,Thursday,14,318,10,D31,Toronto,26,Downsview-Roding-CFB (26),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,INFINITY,,MT,21,BLKGRY,,UNKNOWN,1353,"{'type': 'Point', 'coordinates': (-79.49104018, 43.72461805)}"
-1362,21167,GO-20201372222,THEFT UNDER - BICYCLE,2020-07-11T00:00:00,2020,July,Saturday,11,193,11,2020-07-26T00:00:00,2020,July,Sunday,26,208,13,D31,Toronto,26,Downsview-Roding-CFB (26),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SUPERCYCLE,TEMPLE,MT,18,BLKRED,150.0,STOLEN,1354,"{'type': 'Point', 'coordinates': (-79.49679479, 43.72677284)}"
-1363,21174,GO-20179009345,THEFT UNDER - BICYCLE,2017-07-03T00:00:00,2017,July,Monday,3,184,9,2017-07-03T00:00:00,2017,July,Monday,3,184,14,D32,Toronto,26,Downsview-Roding-CFB (26),"Apartment (Rooming House, Condo)",Apartment,TR,8.4 DS,MT,27,WHI,994.0,STOLEN,1355,"{'type': 'Point', 'coordinates': (-79.46547179, 43.73093253)}"
-1364,21319,GO-20189023214,THEFT UNDER,2018-07-19T00:00:00,2018,July,Thursday,19,200,16,2018-07-20T00:00:00,2018,July,Friday,20,201,14,D31,Toronto,26,Downsview-Roding-CFB (26),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,ORMA,MT,18,BLK,150.0,STOLEN,1356,"{'type': 'Point', 'coordinates': (-79.48248767000001, 43.72856336)}"
-1365,22093,GO-20151840895,THEFT UNDER,2015-09-15T00:00:00,2015,September,Tuesday,15,258,0,2015-10-26T00:00:00,2015,October,Monday,26,299,12,D31,Toronto,26,Downsview-Roding-CFB (26),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MONGOOSE,,MT,21,GRY,1500.0,STOLEN,1357,"{'type': 'Point', 'coordinates': (-79.49411501, 43.72394682000001)}"
-1366,23799,GO-20209016540,THEFT UNDER - BICYCLE,2020-06-29T00:00:00,2020,June,Monday,29,181,16,2020-06-30T00:00:00,2020,June,Tuesday,30,182,11,D31,Toronto,26,Downsview-Roding-CFB (26),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,8,BLK,600.0,STOLEN,1358,"{'type': 'Point', 'coordinates': (-79.51410965, 43.72063504)}"
-1367,1085,GO-20179011942,THEFT UNDER - BICYCLE,2017-08-08T00:00:00,2017,August,Tuesday,8,220,11,2017-08-08T00:00:00,2017,August,Tuesday,8,220,17,D31,Toronto,27,York University Heights (27),Universities / Colleges,Educational,SC,,RC,14,GRY,1500.0,STOLEN,1383,"{'type': 'Point', 'coordinates': (-79.50852047, 43.77429016)}"
-1368,24069,GO-20199022827,THEFT UNDER,2019-07-18T00:00:00,2019,July,Thursday,18,199,15,2019-07-18T00:00:00,2019,July,Thursday,18,199,17,D31,Toronto,26,Downsview-Roding-CFB (26),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UK,,MT,10,BLU,150.0,STOLEN,1359,"{'type': 'Point', 'coordinates': (-79.48260563, 43.72906154)}"
-1369,24079,GO-20199024763,THEFT UNDER - BICYCLE,2019-08-02T00:00:00,2019,August,Friday,2,214,12,2019-08-02T00:00:00,2019,August,Friday,2,214,15,D31,Toronto,26,Downsview-Roding-CFB (26),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,RG,6,PLE,200.0,STOLEN,1360,"{'type': 'Point', 'coordinates': (-79.51410965, 43.72063504)}"
-1370,24080,GO-20199025116,THEFT UNDER,2019-08-02T00:00:00,2019,August,Friday,2,214,21,2019-08-06T00:00:00,2019,August,Tuesday,6,218,15,D31,Toronto,26,Downsview-Roding-CFB (26),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,,RG,21,SIL,150.0,STOLEN,1361,"{'type': 'Point', 'coordinates': (-79.48165414, 43.72511192)}"
-1371,24189,GO-20201123967,B&E,2020-06-18T00:00:00,2020,June,Thursday,18,170,19,2020-06-18T00:00:00,2020,June,Thursday,18,170,19,D31,Toronto,26,Downsview-Roding-CFB (26),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,RG,10,GRNGRY,,RECOVERED,1362,"{'type': 'Point', 'coordinates': (-79.49858942, 43.73230491)}"
-1372,24276,GO-20189004973,THEFT UNDER - BICYCLE,2018-02-15T00:00:00,2018,February,Thursday,15,46,6,2018-02-17T00:00:00,2018,February,Saturday,17,48,17,D32,Toronto,26,Downsview-Roding-CFB (26),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,TREKKER,MT,18,RED,250.0,STOLEN,1363,"{'type': 'Point', 'coordinates': (-79.45790073, 43.72827812)}"
-1373,24321,GO-20189020225,THEFT UNDER - BICYCLE,2018-06-25T00:00:00,2018,June,Monday,25,176,10,2018-06-25T00:00:00,2018,June,Monday,25,176,21,D31,Toronto,26,Downsview-Roding-CFB (26),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,12,BLU,0.0,STOLEN,1364,"{'type': 'Point', 'coordinates': (-79.48260563, 43.72906154)}"
-1374,24338,GO-20189022246,THEFT UNDER,2018-07-12T00:00:00,2018,July,Thursday,12,193,17,2018-07-13T00:00:00,2018,July,Friday,13,194,1,D31,Toronto,26,Downsview-Roding-CFB (26),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RG,27,,0.0,STOLEN,1365,"{'type': 'Point', 'coordinates': (-79.50859475, 43.72091645)}"
-1375,24383,GO-20189029391,THEFT UNDER,2018-09-06T00:00:00,2018,September,Thursday,6,249,13,2018-09-06T00:00:00,2018,September,Thursday,6,249,19,D31,Toronto,26,Downsview-Roding-CFB (26),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,DS 650,MT,20,SIL,600.0,STOLEN,1366,"{'type': 'Point', 'coordinates': (-79.48260563, 43.72906154)}"
-1376,24468,GO-20159005080,THEFT UNDER,2015-07-27T00:00:00,2015,July,Monday,27,208,17,2015-07-28T00:00:00,2015,July,Tuesday,28,209,12,D31,Toronto,26,Downsview-Roding-CFB (26),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,MT,5,WHI,200.0,STOLEN,1367,"{'type': 'Point', 'coordinates': (-79.48801642, 43.72730181)}"
-1377,24470,GO-20151295177,THEFT UNDER,2015-07-28T00:00:00,2015,July,Tuesday,28,209,23,2015-07-29T00:00:00,2015,July,Wednesday,29,210,9,D31,Toronto,26,Downsview-Roding-CFB (26),"Apartment (Rooming House, Condo)",Apartment,OTHER,INDIANAPOLIS,EL,1,WHI,2000.0,STOLEN,1368,"{'type': 'Point', 'coordinates': (-79.51038627, 43.72477325)}"
-1378,24489,GO-20151632998,THEFT FROM MOTOR VEHICLE UNDER,2015-09-10T00:00:00,2015,September,Thursday,10,253,17,2015-09-21T00:00:00,2015,September,Monday,21,264,14,D31,Toronto,26,Downsview-Roding-CFB (26),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,INVACARE,MOTORIZED,SC,1,BLU,,STOLEN,1369,"{'type': 'Point', 'coordinates': (-79.48199904000002, 43.74638701)}"
-1379,24542,GO-20169010325,THEFT UNDER - BICYCLE,2016-09-12T00:00:00,2016,September,Monday,12,256,9,2016-09-12T00:00:00,2016,September,Monday,12,256,18,D32,Toronto,26,Downsview-Roding-CFB (26),Ttc Subway Station,Transit,CA,T2 TOURING,TO,21,SIL,500.0,STOLEN,1370,"{'type': 'Point', 'coordinates': (-79.46273009, 43.75037793)}"
-1380,24577,GO-20179008660,THEFT UNDER - BICYCLE,2017-06-21T00:00:00,2017,June,Wednesday,21,172,14,2017-06-22T00:00:00,2017,June,Thursday,22,173,0,D32,Toronto,26,Downsview-Roding-CFB (26),Ttc Subway Station,Transit,UK,,MT,24,WHI,299.0,STOLEN,1371,"{'type': 'Point', 'coordinates': (-79.46273009, 43.75037793)}"
-1381,61,GO-201727098,THEFT FROM MOTOR VEHICLE UNDER,2017-01-24T00:00:00,2017,January,Tuesday,24,24,6,2017-01-24T00:00:00,2017,January,Tuesday,24,24,6,D31,Toronto,27,York University Heights (27),"Gas Station (Self, Full, Attached Convenience)",Commercial,HF,,RG,10,BLU,100.0,STOLEN,1372,"{'type': 'Point', 'coordinates': (-79.49996302, 43.7610636)}"
-1382,129,GO-20179002718,THEFT UNDER - BICYCLE,2017-03-02T00:00:00,2017,March,Thursday,2,61,22,2017-03-03T00:00:00,2017,March,Friday,3,62,10,D31,Toronto,27,York University Heights (27),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,SC1800,RG,18,BLU,60.0,STOLEN,1373,"{'type': 'Point', 'coordinates': (-79.5028438, 43.76801296)}"
-1383,374,GO-2017835803,THEFT OF EBIKE UNDER $5000,2017-05-09T00:00:00,2017,May,Tuesday,9,129,13,2017-05-12T00:00:00,2017,May,Friday,12,132,10,D32,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,S6,EL,1,BLU,1000.0,STOLEN,1374,"{'type': 'Point', 'coordinates': (-79.47231437, 43.7584662)}"
-1384,457,GO-20179006874,THEFT UNDER - BICYCLE,2017-05-23T00:00:00,2017,May,Tuesday,23,143,16,2017-05-23T00:00:00,2017,May,Tuesday,23,143,21,D32,Toronto,27,York University Heights (27),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,,MT,18,BLU,799.0,STOLEN,1375,"{'type': 'Point', 'coordinates': (-79.47471632, 43.78618439)}"
-1385,602,GO-20171043470,THEFT UNDER - BICYCLE,2017-06-09T00:00:00,2017,June,Friday,9,160,21,2017-06-12T00:00:00,2017,June,Monday,12,163,10,D32,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,SCHWINN,GPX2,RG,21,,400.0,STOLEN,1376,"{'type': 'Point', 'coordinates': (-79.46639639, 43.75118973)}"
-1386,610,GO-20179008064,THEFT UNDER - BICYCLE,2017-06-09T00:00:00,2017,June,Friday,9,160,17,2017-06-14T00:00:00,2017,June,Wednesday,14,165,6,D32,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,25,LGR,120.0,STOLEN,1377,"{'type': 'Point', 'coordinates': (-79.46639639, 43.75118973)}"
-1387,809,GO-20179009734,THEFT UNDER - BICYCLE,2017-06-27T00:00:00,2017,June,Tuesday,27,178,18,2017-07-08T00:00:00,2017,July,Saturday,8,189,18,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,NO,,MT,24,GRY,850.0,STOLEN,1378,"{'type': 'Point', 'coordinates': (-79.50115588, 43.76706746)}"
-1388,872,GO-20171287242,THEFT UNDER - BICYCLE,2017-07-18T00:00:00,2017,July,Tuesday,18,199,2,2017-07-18T00:00:00,2017,July,Tuesday,18,199,9,D31,Toronto,27,York University Heights (27),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GT,,MT,7,BLKYEL,600.0,STOLEN,1379,"{'type': 'Point', 'coordinates': (-79.50263094, 43.7653802)}"
-1389,978,GO-20171329586,THEFT UNDER,2017-07-23T00:00:00,2017,July,Sunday,23,204,17,2017-07-24T00:00:00,2017,July,Monday,24,205,16,D31,Toronto,27,York University Heights (27),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,SC,1,GRY,1000.0,STOLEN,1380,"{'type': 'Point', 'coordinates': (-79.48893236, 43.78005125)}"
-1390,989,GO-20171353347,THEFT UNDER - BICYCLE,2017-07-28T00:00:00,2017,July,Friday,28,209,6,2017-07-28T00:00:00,2017,July,Friday,28,209,6,D31,Toronto,27,York University Heights (27),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,JAMIS,TRAIL X,MT,21,GRY,1100.0,STOLEN,1381,"{'type': 'Point', 'coordinates': (-79.48823726, 43.76408749)}"
-1391,998,GO-20179011210,THEFT FROM MOTOR VEHICLE UNDER,2017-07-27T00:00:00,2017,July,Thursday,27,208,11,2017-07-28T00:00:00,2017,July,Friday,28,209,10,D31,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,MT,21,BLK,450.0,STOLEN,1382,"{'type': 'Point', 'coordinates': (-79.50372563, 43.76525072)}"
-1392,1330,GO-20171614941,THEFT UNDER - BICYCLE,2017-08-20T00:00:00,2017,August,Sunday,20,232,18,2017-09-06T00:00:00,2017,September,Wednesday,6,249,15,D31,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,,OT,21,RED,1000.0,STOLEN,1384,"{'type': 'Point', 'coordinates': (-79.50240222, 43.77447286000001)}"
-1393,1488,GO-20179015471,THEFT UNDER - BICYCLE,2017-09-21T00:00:00,2017,September,Thursday,21,264,21,2017-09-22T00:00:00,2017,September,Friday,22,265,14,D31,Toronto,27,York University Heights (27),Universities / Colleges,Educational,OT,QUICKSPIN,BM,1,SIL,60.0,STOLEN,1385,"{'type': 'Point', 'coordinates': (-79.50080714, 43.77034083)}"
-1394,1503,GO-20171706231,THEFT UNDER - BICYCLE,2017-09-20T00:00:00,2017,September,Wednesday,20,263,8,2017-09-23T00:00:00,2017,September,Saturday,23,266,19,D31,Toronto,27,York University Heights (27),Schools During Un-Supervised Activity,Educational,OT,AQUILA,RC,14,YEL,1000.0,STOLEN,1386,"{'type': 'Point', 'coordinates': (-79.50240222, 43.77447286000001)}"
-1395,1526,GO-20179015779,THEFT UNDER - BICYCLE,2017-09-16T00:00:00,2017,September,Saturday,16,259,21,2017-09-25T00:00:00,2017,September,Monday,25,268,21,D32,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,15,RED,1000.0,STOLEN,1387,"{'type': 'Point', 'coordinates': (-79.46368899, 43.75175859)}"
-1396,1560,GO-20179016160,THEFT UNDER - BICYCLE,2017-10-01T00:00:00,2017,October,Sunday,1,274,17,2017-10-01T00:00:00,2017,October,Sunday,1,274,18,D31,Toronto,27,York University Heights (27),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,,BM,1,SIL,200.0,STOLEN,1388,"{'type': 'Point', 'coordinates': (-79.50372563, 43.76525072)}"
-1397,1846,GO-20179019683,THEFT UNDER - BICYCLE,2017-11-15T00:00:00,2017,November,Wednesday,15,319,10,2017-11-15T00:00:00,2017,November,Wednesday,15,319,11,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,12,WHI,750.0,STOLEN,1389,"{'type': 'Point', 'coordinates': (-79.49917246, 43.76526221)}"
-1398,2011,GO-2018174596,THEFT UNDER - SHOPLIFTING,2018-01-27T00:00:00,2018,January,Saturday,27,27,20,2018-01-28T00:00:00,2018,January,Sunday,28,28,12,D31,Toronto,27,York University Heights (27),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,AMIGO,ELECTRIC,SC,0,BLK,900.0,STOLEN,1390,"{'type': 'Point', 'coordinates': (-79.48945308, 43.75744848)}"
-1399,2299,GO-20189014794,THEFT UNDER - BICYCLE,2018-05-11T00:00:00,2018,May,Friday,11,131,14,2018-05-13T00:00:00,2018,May,Sunday,13,133,22,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,CC,,RG,10,,150.0,STOLEN,1391,"{'type': 'Point', 'coordinates': (-79.49961757, 43.75974862)}"
-1400,2300,GO-20189014794,THEFT UNDER - BICYCLE,2018-05-11T00:00:00,2018,May,Friday,11,131,14,2018-05-13T00:00:00,2018,May,Sunday,13,133,22,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,SU,,RG,20,,500.0,STOLEN,1392,"{'type': 'Point', 'coordinates': (-79.49961757, 43.75974862)}"
-1401,2372,GO-20189015839,THEFT UNDER - BICYCLE,2018-05-21T00:00:00,2018,May,Monday,21,141,21,2018-05-22T00:00:00,2018,May,Tuesday,22,142,17,D31,Toronto,27,York University Heights (27),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,MT,9,BLK,600.0,STOLEN,1393,"{'type': 'Point', 'coordinates': (-79.50396304, 43.76777105)}"
-1402,2480,GO-20189017644,THEFT UNDER - BICYCLE,2018-06-06T00:00:00,2018,June,Wednesday,6,157,15,2018-06-06T00:00:00,2018,June,Wednesday,6,157,16,D31,Toronto,27,York University Heights (27),Schools During Supervised Activity,Educational,CC,HARDLINE YOUTH,MT,21,BLK,400.0,STOLEN,1394,"{'type': 'Point', 'coordinates': (-79.4919325, 43.75905215)}"
-1403,2494,GO-20189017832,THEFT UNDER,2018-05-23T00:00:00,2018,May,Wednesday,23,143,22,2018-06-07T00:00:00,2018,June,Thursday,7,158,23,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,SC,MENSA,MT,24,DBL,200.0,STOLEN,1395,"{'type': 'Point', 'coordinates': (-79.50396304, 43.76777105)}"
-1404,2505,GO-20189017913,THEFT UNDER - BICYCLE,2018-06-08T00:00:00,2018,June,Friday,8,159,7,2018-06-08T00:00:00,2018,June,Friday,8,159,16,D31,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,MT,18,RED,100.0,STOLEN,1396,"{'type': 'Point', 'coordinates': (-79.49917246, 43.76526221)}"
-1405,2574,GO-20189018754,THEFT UNDER - BICYCLE,2018-06-13T00:00:00,2018,June,Wednesday,13,164,22,2018-06-15T00:00:00,2018,June,Friday,15,166,1,D31,Toronto,27,York University Heights (27),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DB,KALAMAR,MT,7,BRN,312.0,STOLEN,1397,"{'type': 'Point', 'coordinates': (-79.50372563, 43.76525072)}"
-1406,2732,GO-20189020901,THEFT UNDER - BICYCLE,2018-07-01T00:00:00,2018,July,Sunday,1,182,13,2018-07-02T00:00:00,2018,July,Monday,2,183,8,D31,Toronto,27,York University Heights (27),Universities / Colleges,Educational,CC,"SL2.0 26""""MEN MO",MT,21,BLK,305.0,STOLEN,1398,"{'type': 'Point', 'coordinates': (-79.50852047, 43.77429016)}"
-1407,2742,GO-20189021053,THEFT UNDER,2017-06-30T00:00:00,2017,June,Friday,30,181,21,2018-07-03T00:00:00,2018,July,Tuesday,3,184,18,D31,Toronto,27,York University Heights (27),Convenience Stores,Commercial,CC,,MT,20,BLK,178.0,STOLEN,1399,"{'type': 'Point', 'coordinates': (-79.48945308, 43.75744848)}"
-1408,2806,GO-20189021968,THEFT UNDER - BICYCLE,2018-07-02T00:00:00,2018,July,Monday,2,183,16,2018-07-10T00:00:00,2018,July,Tuesday,10,191,21,D31,Toronto,27,York University Heights (27),Ttc Subway Station,Transit,RA,CADENT 2,OT,24,DBL,700.0,STOLEN,1400,"{'type': 'Point', 'coordinates': (-79.4931988, 43.77199027)}"
-1409,2827,GO-20189022223,THEFT UNDER - BICYCLE,2018-07-12T00:00:00,2018,July,Thursday,12,193,20,2018-07-12T00:00:00,2018,July,Thursday,12,193,20,D31,Toronto,27,York University Heights (27),Universities / Colleges,Educational,UK,MOUNTAIN BIKE,MT,7,BLK,80.0,STOLEN,1401,"{'type': 'Point', 'coordinates': (-79.50240222, 43.77447286000001)}"
-1410,3276,GO-20181542269,B&E,2018-08-20T00:00:00,2018,August,Monday,20,232,23,2018-08-21T00:00:00,2018,August,Tuesday,21,233,5,D31,Toronto,27,York University Heights (27),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,OT,21,BLUBLK,350.0,STOLEN,1402,"{'type': 'Point', 'coordinates': (-79.49481846, 43.75665163)}"
-1411,3369,GO-20189028641,THEFT UNDER - BICYCLE,2017-12-24T00:00:00,2017,December,Sunday,24,358,21,2018-08-31T00:00:00,2018,August,Friday,31,243,1,D31,Toronto,27,York University Heights (27),Ttc Subway Station,Transit,OT,SPECIALIZED PRO,MT,21,RED,400.0,STOLEN,1403,"{'type': 'Point', 'coordinates': (-79.50334807, 43.76978983)}"
-1412,3455,GO-20189030227,THEFT UNDER - BICYCLE,2018-05-04T00:00:00,2018,May,Friday,4,124,10,2018-09-13T00:00:00,2018,September,Thursday,13,256,11,D32,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,GI,XTC 29ER 1,MT,10,BLK,2200.0,STOLEN,1404,"{'type': 'Point', 'coordinates': (-79.46639639, 43.75118973)}"
-1413,3524,GO-20189031325,THEFT UNDER - BICYCLE,2018-09-20T00:00:00,2018,September,Thursday,20,263,17,2018-09-20T00:00:00,2018,September,Thursday,20,263,21,D31,Toronto,27,York University Heights (27),Ttc Subway Station,Transit,UK,,MT,21,DBL,250.0,STOLEN,1405,"{'type': 'Point', 'coordinates': (-79.49101221000001, 43.76350255)}"
-1414,3534,GO-20189031443,THEFT UNDER,2018-09-17T00:00:00,2018,September,Monday,17,260,17,2018-09-21T00:00:00,2018,September,Friday,21,264,16,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,30,BLK,1000.0,STOLEN,1406,"{'type': 'Point', 'coordinates': (-79.50082146, 43.76336098)}"
-1415,3545,GO-20189031693,THEFT UNDER,2018-09-21T00:00:00,2018,September,Friday,21,264,22,2018-09-24T00:00:00,2018,September,Monday,24,267,11,D31,Toronto,27,York University Heights (27),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,,MT,10,MRN,500.0,STOLEN,1407,"{'type': 'Point', 'coordinates': (-79.50506189, 43.75359301)}"
-1416,4107,GO-20199009610,THEFT UNDER - BICYCLE,2019-03-25T00:00:00,2019,March,Monday,25,84,16,2019-03-25T00:00:00,2019,March,Monday,25,84,17,D31,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,MT,8,GRN,1000.0,STOLEN,1408,"{'type': 'Point', 'coordinates': (-79.49917246, 43.76526221)}"
-1417,4217,GO-20199013468,THEFT UNDER,2019-04-28T00:00:00,2019,April,Sunday,28,118,14,2019-04-29T00:00:00,2019,April,Monday,29,119,23,D31,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,MT,10,BLK,200.0,STOLEN,1409,"{'type': 'Point', 'coordinates': (-79.48872132, 43.75451293)}"
-1418,4428,GO-20199017798,THEFT UNDER,2019-06-07T00:00:00,2019,June,Friday,7,158,16,2019-06-07T00:00:00,2019,June,Friday,7,158,23,D31,Toronto,27,York University Heights (27),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,,MT,21,,250.0,STOLEN,1410,"{'type': 'Point', 'coordinates': (-79.48945308, 43.75744848)}"
-1419,4775,GO-20199022358,THEFT UNDER,2019-07-11T00:00:00,2019,July,Thursday,11,192,23,2019-07-15T00:00:00,2019,July,Monday,15,196,19,D31,Toronto,27,York University Heights (27),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,,MT,24,BLU,70.0,STOLEN,1411,"{'type': 'Point', 'coordinates': (-79.50240222, 43.77447286000001)}"
-1420,5414,GO-20199031648,THEFT UNDER,2019-09-26T00:00:00,2019,September,Thursday,26,269,12,2019-09-26T00:00:00,2019,September,Thursday,26,269,17,D31,Toronto,27,York University Heights (27),Universities / Colleges,Educational,GI,ATX 2 XL CHARCO,MT,21,BLK,507.0,STOLEN,1412,"{'type': 'Point', 'coordinates': (-79.50240222, 43.77447286000001)}"
-1421,5473,GO-20191913652,THEFT UNDER - BICYCLE,2019-10-04T00:00:00,2019,October,Friday,4,277,8,2019-10-04T00:00:00,2019,October,Friday,4,277,15,D32,Toronto,27,York University Heights (27),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,,MT,12,GRNBLU,100.0,STOLEN,1413,"{'type': 'Point', 'coordinates': (-79.47004827000002, 43.78728363)}"
-1422,5482,GO-20191921915,THEFT UNDER - BICYCLE,2019-10-05T00:00:00,2019,October,Saturday,5,278,5,2019-10-05T00:00:00,2019,October,Saturday,5,278,17,D31,Toronto,27,York University Heights (27),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,MT,3,RED,800.0,STOLEN,1414,"{'type': 'Point', 'coordinates': (-79.49917246, 43.76526221)}"
-1423,6088,GO-20209011622,THEFT UNDER - BICYCLE,2020-04-20T00:00:00,2020,April,Monday,20,111,21,2020-04-21T00:00:00,2020,April,Tuesday,21,112,12,D31,Toronto,27,York University Heights (27),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,FIX 700C,RG,1,BLU,230.0,STOLEN,1415,"{'type': 'Point', 'coordinates': (-79.49900572, 43.76753752)}"
-1424,6406,GO-20209015522,THEFT UNDER - BICYCLE,2020-06-12T00:00:00,2020,June,Friday,12,164,10,2020-06-16T00:00:00,2020,June,Tuesday,16,168,23,D32,Toronto,27,York University Heights (27),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,2015 ROAM 3,RG,8,BLK,565.0,STOLEN,1416,"{'type': 'Point', 'coordinates': (-79.47010818, 43.78384033)}"
-1425,6437,GO-20209015879,THEFT UNDER,2020-06-21T00:00:00,2020,June,Sunday,21,173,20,2020-06-22T00:00:00,2020,June,Monday,22,174,12,D31,Toronto,27,York University Heights (27),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,KATO,MT,24,BLK,500.0,STOLEN,1417,"{'type': 'Point', 'coordinates': (-79.5028438, 43.76801296)}"
-1426,6450,GO-20209015998,THEFT UNDER - BICYCLE,2020-06-22T00:00:00,2020,June,Monday,22,174,20,2020-06-23T00:00:00,2020,June,Tuesday,23,175,18,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,30,BLK,300.0,STOLEN,1418,"{'type': 'Point', 'coordinates': (-79.50147952, 43.77191841)}"
-1427,6508,GO-20209016586,THEFT UNDER - BICYCLE,2020-06-30T00:00:00,2020,June,Tuesday,30,182,7,2020-06-30T00:00:00,2020,June,Tuesday,30,182,20,D32,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,TRANSITION,OT,18,RED,1500.0,STOLEN,1419,"{'type': 'Point', 'coordinates': (-79.46639639, 43.75118973)}"
-1428,6569,GO-20209017203,THEFT UNDER - BICYCLE,2020-07-06T00:00:00,2020,July,Monday,6,188,21,2020-07-09T00:00:00,2020,July,Thursday,9,191,18,D32,Toronto,27,York University Heights (27),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,VENTURA,RC,16,BLK,1000.0,STOLEN,1420,"{'type': 'Point', 'coordinates': (-79.47010818, 43.78384033)}"
-1429,6582,GO-20209017285,THEFT UNDER,2020-06-20T00:00:00,2020,June,Saturday,20,172,20,2020-07-10T00:00:00,2020,July,Friday,10,192,20,D32,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,OT,TRACCIA,MT,21,BLK,500.0,STOLEN,1421,"{'type': 'Point', 'coordinates': (-79.4633489, 43.75025176)}"
-1430,6656,GO-20209017851,THEFT UNDER - BICYCLE,2020-07-14T00:00:00,2020,July,Tuesday,14,196,15,2020-07-16T00:00:00,2020,July,Thursday,16,198,21,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,OT,VERSA SPEED 50,RG,20,BLK,600.0,STOLEN,1422,"{'type': 'Point', 'coordinates': (-79.50396304, 43.76777105)}"
-1431,6857,GO-20209019276,THEFT UNDER - BICYCLE,2020-07-30T00:00:00,2020,July,Thursday,30,212,21,2020-08-03T00:00:00,2020,August,Monday,3,216,21,D31,Toronto,27,York University Heights (27),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,,RG,7,BLK,500.0,STOLEN,1423,"{'type': 'Point', 'coordinates': (-79.50080714, 43.77034083)}"
-1432,7114,GO-20209021655,THEFT UNDER - BICYCLE,2020-08-22T00:00:00,2020,August,Saturday,22,235,17,2020-08-28T00:00:00,2020,August,Friday,28,241,17,D32,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,50,,3000.0,STOLEN,1424,"{'type': 'Point', 'coordinates': (-79.4633489, 43.75025176)}"
-1433,8139,GO-20149004027,THEFT UNDER,2014-06-12T00:00:00,2014,June,Thursday,12,163,1,2014-06-12T00:00:00,2014,June,Thursday,12,163,23,D31,Toronto,27,York University Heights (27),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,18,OTH,99.0,STOLEN,1425,"{'type': 'Point', 'coordinates': (-79.50314419, 43.76663076)}"
-1434,8175,GO-20142304997,THEFT UNDER,2014-06-13T00:00:00,2014,June,Friday,13,164,17,2014-06-16T00:00:00,2014,June,Monday,16,167,20,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,CCM,MUD SLIDE,RG,15,ONG,,STOLEN,1426,"{'type': 'Point', 'coordinates': (-79.49363935, 43.76527191)}"
-1435,8176,GO-20142304997,THEFT UNDER,2014-06-13T00:00:00,2014,June,Friday,13,164,17,2014-06-16T00:00:00,2014,June,Monday,16,167,20,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,NONE,OT,1,BLK,,STOLEN,1427,"{'type': 'Point', 'coordinates': (-79.49363935, 43.76527191)}"
-1436,8350,GO-20149004716,THEFT UNDER,2014-06-30T00:00:00,2014,June,Monday,30,181,11,2014-07-04T00:00:00,2014,July,Friday,4,185,13,D31,Toronto,27,York University Heights (27),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,ASPECT 29,MT,24,BLK,950.0,STOLEN,1428,"{'type': 'Point', 'coordinates': (-79.49610290000001, 43.76591279)}"
-1437,8641,GO-20142711922,B&E,2014-08-15T00:00:00,2014,August,Friday,15,227,19,2014-08-16T00:00:00,2014,August,Saturday,16,228,1,D31,Toronto,27,York University Heights (27),"Private Property Structure (Pool, Shed, Detached Garage)",Other,JAMIS,KOMODO II,MT,0,GRYWHI,1200.0,STOLEN,1429,"{'type': 'Point', 'coordinates': (-79.50342911, 43.76656817)}"
-1438,8758,GO-20142789939,THEFT UNDER,2014-08-23T00:00:00,2014,August,Saturday,23,235,19,2014-08-30T00:00:00,2014,August,Saturday,30,242,14,D31,Toronto,27,York University Heights (27),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,RG,0,RED,100.0,STOLEN,1430,"{'type': 'Point', 'coordinates': (-79.48579669, 43.74782991)}"
-1439,8948,GO-20149007119,THEFT UNDER,2014-09-21T00:00:00,2014,September,Sunday,21,264,19,2014-09-22T00:00:00,2014,September,Monday,22,265,18,D31,Toronto,27,York University Heights (27),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CC,,MT,21,RED,500.0,STOLEN,1431,"{'type': 'Point', 'coordinates': (-79.4949085, 43.76724158)}"
-1440,8962,GO-20142974586,THEFT UNDER,2014-09-24T00:00:00,2014,September,Wednesday,24,267,8,2014-09-24T00:00:00,2014,September,Wednesday,24,267,15,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,RC,24,RED,350.0,STOLEN,1432,"{'type': 'Point', 'coordinates': (-79.50080714, 43.77034083)}"
-1441,9215,GO-20143433979,THEFT UNDER,2014-12-01T00:00:00,2014,December,Monday,1,335,13,2014-12-06T00:00:00,2014,December,Saturday,6,340,5,D31,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,700C,MT,24,SIL,100.0,STOLEN,1433,"{'type': 'Point', 'coordinates': (-79.48872132, 43.75451293)}"
-1442,9939,GO-20151130249,PROPERTY - RECOVERED,2015-07-05T00:00:00,2015,July,Sunday,5,186,0,2015-07-05T00:00:00,2015,July,Sunday,5,186,0,D31,Toronto,27,York University Heights (27),"Dealership (Car, Motorcycle, Marine, Trailer, Etc.)",Commercial,DAYMAK,EAGLE,EL,40,BLU,,UNKNOWN,1434,"{'type': 'Point', 'coordinates': (-79.48486741, 43.75918961)}"
-1443,9943,GO-20151127865,THEFT UNDER,2015-07-04T00:00:00,2015,July,Saturday,4,185,0,2015-07-04T00:00:00,2015,July,Saturday,4,185,17,D31,Toronto,27,York University Heights (27),Universities / Colleges,Educational,NEXT,,MT,18,GRYYEL,180.0,STOLEN,1435,"{'type': 'Point', 'coordinates': (-79.5028438, 43.76801296)}"
-1444,2671,GO-20189020088,THEFT UNDER - BICYCLE,2018-06-24T00:00:00,2018,June,Sunday,24,175,0,2018-06-25T00:00:00,2018,June,Monday,25,176,7,D22,Toronto,20,Alderwood (20),"Apartment (Rooming House, Condo)",Apartment,NO,VRF 4,MT,28,LBL,700.0,STOLEN,1436,"{'type': 'Point', 'coordinates': (-79.54443956, 43.60001217)}"
-1445,2495,GO-20189017845,THEFT UNDER,2018-06-08T00:00:00,2018,June,Friday,8,159,0,2018-06-08T00:00:00,2018,June,Friday,8,159,7,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,10,BLU,500.0,STOLEN,1437,"{'type': 'Point', 'coordinates': (-79.53397755, 43.59436142)}"
-1446,6694,GO-20201336667,THEFT UNDER - BICYCLE,2020-07-18T00:00:00,2020,July,Saturday,18,200,7,2020-07-22T00:00:00,2020,July,Wednesday,22,204,12,D32,Toronto,31,Yorkdale-Glen Park (31),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,BIGATTI,RG,7,SIL,329.0,STOLEN,1438,"{'type': 'Point', 'coordinates': (-79.45239005, 43.71432793)}"
-1447,2726,GO-20189020860,THEFT UNDER - BICYCLE,2018-07-01T00:00:00,2018,July,Sunday,1,182,10,2018-07-01T00:00:00,2018,July,Sunday,1,182,10,D22,Toronto,20,Alderwood (20),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,SANTA MONICA,MT,21,GLD,200.0,STOLEN,1439,"{'type': 'Point', 'coordinates': (-79.5500207, 43.5978772)}"
-1448,6725,GO-20201382533,THEFT UNDER - BICYCLE,2020-07-18T00:00:00,2020,July,Saturday,18,200,18,2020-07-25T00:00:00,2020,July,Saturday,25,207,8,D32,Toronto,31,Yorkdale-Glen Park (31),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,CORSO,MT,18,GRY,500.0,STOLEN,1440,"{'type': 'Point', 'coordinates': (-79.45239005, 43.71432793)}"
-1449,2877,GO-20189022133,THEFT UNDER - BICYCLE,2018-07-12T00:00:00,2018,July,Thursday,12,193,0,2018-07-12T00:00:00,2018,July,Thursday,12,193,7,D22,Toronto,20,Alderwood (20),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,TRANCE 2,MT,11,BLK,2800.0,STOLEN,1441,"{'type': 'Point', 'coordinates': (-79.54688342, 43.59766594)}"
-1450,6751,GO-20201375755,THEFT UNDER,2020-07-17T00:00:00,2020,July,Friday,17,199,22,2020-07-27T00:00:00,2020,July,Monday,27,209,10,D32,Toronto,31,Yorkdale-Glen Park (31),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MONGOOSE,TYAX COMPETITIO,MT,27,BLK,800.0,STOLEN,1442,"{'type': 'Point', 'coordinates': (-79.45239005, 43.71432793)}"
-1451,2499,GO-20189017844,THEFT UNDER,2018-06-08T00:00:00,2018,June,Friday,8,159,1,2018-06-08T00:00:00,2018,June,Friday,8,159,8,D22,Toronto,19,Long Branch (19),"Group Homes (Non-Profit, Halfway House, Social Agency)",Other,GT,AGGRESSOR SPORT,MT,21,OTH,500.0,STOLEN,1443,"{'type': 'Point', 'coordinates': (-79.53397755, 43.59436142)}"
-1452,2902,GO-20181323245,THEFT UNDER - BICYCLE,2018-07-08T00:00:00,2018,July,Sunday,8,189,12,2018-07-20T00:00:00,2018,July,Friday,20,201,7,D22,Toronto,20,Alderwood (20),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,,OT,2,BLKWHI,1500.0,STOLEN,1444,"{'type': 'Point', 'coordinates': (-79.54593884, 43.59253286)}"
-1453,6842,GO-20209019170,THEFT UNDER - BICYCLE,2020-07-30T00:00:00,2020,July,Thursday,30,212,19,2020-08-01T00:00:00,2020,August,Saturday,1,214,21,D32,Toronto,31,Yorkdale-Glen Park (31),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TU,,FO,50,BLK,500.0,STOLEN,1445,"{'type': 'Point', 'coordinates': (-79.46261751, 43.71695029)}"
-1454,2516,GO-20181047520,THEFT UNDER - BICYCLE,2018-06-09T00:00:00,2018,June,Saturday,9,160,18,2018-06-09T00:00:00,2018,June,Saturday,9,160,20,D22,Toronto,19,Long Branch (19),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,,MT,11,BLK,2000.0,STOLEN,1446,"{'type': 'Point', 'coordinates': (-79.53350756, 43.59335987)}"
-1455,2903,GO-20181323245,THEFT UNDER - BICYCLE,2018-07-08T00:00:00,2018,July,Sunday,8,189,12,2018-07-20T00:00:00,2018,July,Friday,20,201,7,D22,Toronto,20,Alderwood (20),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,,OT,2,BLKWHI,1500.0,STOLEN,1447,"{'type': 'Point', 'coordinates': (-79.54593884, 43.59253286)}"
-1456,4859,GO-20191392231,THEFT UNDER - BICYCLE,2019-07-24T00:00:00,2019,July,Wednesday,24,205,6,2019-07-24T00:00:00,2019,July,Wednesday,24,205,16,D22,Toronto,20,Alderwood (20),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ZZZ,,RG,1,BLK,700.0,STOLEN,1448,"{'type': 'Point', 'coordinates': (-79.54769932, 43.6074657)}"
-1457,5140,GO-20199027369,THEFT UNDER,2019-08-22T00:00:00,2019,August,Thursday,22,234,0,2019-08-23T00:00:00,2019,August,Friday,23,235,10,D22,Toronto,20,Alderwood (20),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MARTIN,BOBCAT TRAIL 3,MT,20,GRY,800.0,STOLEN,1449,"{'type': 'Point', 'coordinates': (-79.55421127, 43.60258466)}"
-1458,8638,GO-20149005804,THEFT UNDER,2014-08-10T00:00:00,2014,August,Sunday,10,222,0,2014-08-10T00:00:00,2014,August,Sunday,10,222,2,D22,Toronto,20,Alderwood (20),Bar / Restaurant,Commercial,GI,,MT,10,BLK,500.0,STOLEN,1450,"{'type': 'Point', 'coordinates': (-79.54482023, 43.60085066)}"
-1459,8824,GO-20142840098,THEFT FROM MOTOR VEHICLE UNDER,2014-09-03T00:00:00,2014,September,Wednesday,3,246,23,2014-09-04T00:00:00,2014,September,Thursday,4,247,10,D22,Toronto,20,Alderwood (20),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,F4,MT,24,BLKWHI,,STOLEN,1451,"{'type': 'Point', 'coordinates': (-79.53555468, 43.60863956)}"
-1460,8825,GO-20142840098,THEFT FROM MOTOR VEHICLE UNDER,2014-09-03T00:00:00,2014,September,Wednesday,3,246,23,2014-09-04T00:00:00,2014,September,Thursday,4,247,10,D22,Toronto,20,Alderwood (20),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,SL,MT,24,REDWHI,,STOLEN,1452,"{'type': 'Point', 'coordinates': (-79.53555468, 43.60863956)}"
-1461,9187,GO-20143286811,THEFT UNDER,2014-11-11T00:00:00,2014,November,Tuesday,11,315,7,2014-11-12T00:00:00,2014,November,Wednesday,12,316,10,D22,Toronto,20,Alderwood (20),Go Station,Transit,MIELE,TT150,MT,0,RED,300.0,STOLEN,1453,"{'type': 'Point', 'coordinates': (-79.54486409, 43.59304896)}"
-1462,10360,GO-20151498533,THEFT UNDER,2015-08-25T00:00:00,2015,August,Tuesday,25,237,16,2015-08-31T00:00:00,2015,August,Monday,31,243,7,D22,Toronto,20,Alderwood (20),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,ROCKY MOUNTAIN,STRICK,MT,18,BLU,589.0,STOLEN,1454,"{'type': 'Point', 'coordinates': (-79.54608863, 43.6103777)}"
-1463,11303,GO-2016823779,THEFT UNDER,2016-05-08T00:00:00,2016,May,Sunday,8,129,12,2016-05-13T00:00:00,2016,May,Friday,13,134,15,D22,Toronto,20,Alderwood (20),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,ORBEA,TO,18,WHI,1000.0,STOLEN,1455,"{'type': 'Point', 'coordinates': (-79.55327892, 43.60656289)}"
-1464,11304,GO-2016823779,THEFT UNDER,2016-05-08T00:00:00,2016,May,Sunday,8,129,12,2016-05-13T00:00:00,2016,May,Friday,13,134,15,D22,Toronto,20,Alderwood (20),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,STUMPJUMPER,MT,18,BLU,1750.0,STOLEN,1456,"{'type': 'Point', 'coordinates': (-79.55327892, 43.60656289)}"
-1465,14550,GO-20199024220,THEFT UNDER,2019-07-28T00:00:00,2019,July,Sunday,28,209,21,2019-07-29T00:00:00,2019,July,Monday,29,210,12,D22,Toronto,20,Alderwood (20),"Apartment (Rooming House, Condo)",Apartment,UK,"VIKING HT 29""""",MT,21,BLK,200.0,STOLEN,1457,"{'type': 'Point', 'coordinates': (-79.55211075, 43.60993279)}"
-1466,14989,GO-201649953,PROPERTY - FOUND,2016-01-08T00:00:00,2016,January,Friday,8,8,21,2016-01-09T00:00:00,2016,January,Saturday,9,9,11,D22,Toronto,20,Alderwood (20),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,860,MT,18,SIL,,RECOVERED,1458,"{'type': 'Point', 'coordinates': (-79.54279349, 43.60460619)}"
-1467,17690,GO-2020405035,THEFT OF EBIKE OVER $5000,2020-02-07T00:00:00,2020,February,Friday,7,38,17,2020-02-26T00:00:00,2020,February,Wednesday,26,57,11,D22,Toronto,20,Alderwood (20),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,EXPLORE-E+2,EL,18,BLK,3499.0,STOLEN,1459,"{'type': 'Point', 'coordinates': (-79.53613664, 43.603737470000006)}"
-1468,17691,GO-2020405035,THEFT OF EBIKE OVER $5000,2020-02-07T00:00:00,2020,February,Friday,7,38,17,2020-02-26T00:00:00,2020,February,Wednesday,26,57,11,D22,Toronto,20,Alderwood (20),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,EXPLORE-E+2 GTS,EL,18,BLK,3499.0,STOLEN,1460,"{'type': 'Point', 'coordinates': (-79.53613664, 43.603737470000006)}"
-1469,17692,GO-2020405035,THEFT OF EBIKE OVER $5000,2020-02-07T00:00:00,2020,February,Friday,7,38,17,2020-02-26T00:00:00,2020,February,Wednesday,26,57,11,D22,Toronto,20,Alderwood (20),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,EXPLORE-E+2 GTS,EL,18,BLK,3499.0,STOLEN,1461,"{'type': 'Point', 'coordinates': (-79.53613664, 43.603737470000006)}"
-1470,17693,GO-2020405035,THEFT OF EBIKE OVER $5000,2020-02-07T00:00:00,2020,February,Friday,7,38,17,2020-02-26T00:00:00,2020,February,Wednesday,26,57,11,D22,Toronto,20,Alderwood (20),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,EXPLORE-E+2 GTS,EL,18,BLK,3499.0,STOLEN,1462,"{'type': 'Point', 'coordinates': (-79.53613664, 43.603737470000006)}"
-1471,17694,GO-2020405035,THEFT OF EBIKE OVER $5000,2020-02-07T00:00:00,2020,February,Friday,7,38,17,2020-02-26T00:00:00,2020,February,Wednesday,26,57,11,D22,Toronto,20,Alderwood (20),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,EXPLORE-E+2 GTS,EL,18,BLK,3499.0,STOLEN,1463,"{'type': 'Point', 'coordinates': (-79.53613664, 43.603737470000006)}"
-1472,17695,GO-2020405035,THEFT OF EBIKE OVER $5000,2020-02-07T00:00:00,2020,February,Friday,7,38,17,2020-02-26T00:00:00,2020,February,Wednesday,26,57,11,D22,Toronto,20,Alderwood (20),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,EXPLORE-E+2 GTS,EL,18,BLK,3499.0,STOLEN,1464,"{'type': 'Point', 'coordinates': (-79.53613664, 43.603737470000006)}"
-1473,17696,GO-2020405035,THEFT OF EBIKE OVER $5000,2020-02-07T00:00:00,2020,February,Friday,7,38,17,2020-02-26T00:00:00,2020,February,Wednesday,26,57,11,D22,Toronto,20,Alderwood (20),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,EXPLORE-E+2,EL,18,BLK,3499.0,STOLEN,1465,"{'type': 'Point', 'coordinates': (-79.53613664, 43.603737470000006)}"
-1474,17697,GO-2020405035,THEFT OF EBIKE OVER $5000,2020-02-07T00:00:00,2020,February,Friday,7,38,17,2020-02-26T00:00:00,2020,February,Wednesday,26,57,11,D22,Toronto,20,Alderwood (20),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,EXPLORE-E+2,EL,18,BLK,3499.0,STOLEN,1466,"{'type': 'Point', 'coordinates': (-79.53613664, 43.603737470000006)}"
-1475,17846,GO-20189020475,THEFT UNDER - BICYCLE,2018-06-26T00:00:00,2018,June,Tuesday,26,177,7,2018-06-27T00:00:00,2018,June,Wednesday,27,178,23,D22,Toronto,20,Alderwood (20),Go Station,Transit,CC,VANDAL,MT,21,WHI,100.0,STOLEN,1467,"{'type': 'Point', 'coordinates': (-79.54360897, 43.59319216)}"
-1476,22002,GO-20142094230,THEFT UNDER,2014-05-16T00:00:00,2014,May,Friday,16,136,21,2014-05-16T00:00:00,2014,May,Friday,16,136,22,D22,Toronto,20,Alderwood (20),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,MT,12,BLK,20.0,STOLEN,1468,"{'type': 'Point', 'coordinates': (-79.53613664, 43.603737470000006)}"
-1477,24037,GO-2019897043,THEFT UNDER,2019-05-16T00:00:00,2019,May,Thursday,16,136,6,2019-05-17T00:00:00,2019,May,Friday,17,137,17,D22,Toronto,20,Alderwood (20),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,TIAGRA,OT,18,BLKYEL,1200.0,STOLEN,1469,"{'type': 'Point', 'coordinates': (-79.55211075, 43.60993279)}"
-1478,12084,GO-20161438418,B&E,2016-08-15T00:00:00,2016,August,Monday,15,228,1,2016-08-15T00:00:00,2016,August,Monday,15,228,4,D31,Toronto,21,Humber Summit (21),"Dealership (Car, Motorcycle, Marine, Trailer, Etc.)",Commercial,OTHER,UNKNOWN,SC,1,,1500.0,STOLEN,1494,"{'type': 'Point', 'coordinates': (-79.56051931, 43.76741635)}"
-1479,24065,GO-20199022463,THEFT UNDER,2019-07-05T00:00:00,2019,July,Friday,5,186,17,2019-07-16T00:00:00,2019,July,Tuesday,16,197,9,D22,Toronto,20,Alderwood (20),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,SOLARIS,RG,18,BLK,100.0,STOLEN,1470,"{'type': 'Point', 'coordinates': (-79.5473257, 43.60658124)}"
-1480,24318,GO-20189019734,THEFT UNDER - BICYCLE,2018-06-21T00:00:00,2018,June,Thursday,21,172,17,2018-06-21T00:00:00,2018,June,Thursday,21,172,22,D22,Toronto,20,Alderwood (20),Go Station,Transit,SC,APHRODITE WID,MT,21,SIL,100.0,STOLEN,1471,"{'type': 'Point', 'coordinates': (-79.541594, 43.59385442)}"
-1481,24335,GO-20189021621,THEFT UNDER - BICYCLE,2018-07-05T00:00:00,2018,July,Thursday,5,186,7,2018-07-09T00:00:00,2018,July,Monday,9,190,15,D22,Toronto,20,Alderwood (20),Go Station,Transit,OT,,OT,21,WHI,300.0,STOLEN,1472,"{'type': 'Point', 'coordinates': (-79.54486409, 43.59304896)}"
-1482,24337,GO-20189022133,THEFT UNDER - BICYCLE,2018-07-12T00:00:00,2018,July,Thursday,12,193,0,2018-07-12T00:00:00,2018,July,Thursday,12,193,7,D22,Toronto,20,Alderwood (20),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,TRANCE 2,MT,11,BLK,1800.0,STOLEN,1473,"{'type': 'Point', 'coordinates': (-79.54688342, 43.59766594)}"
-1483,24500,GO-20159010864,THEFT UNDER,2015-12-12T00:00:00,2015,December,Saturday,12,346,23,2015-12-13T00:00:00,2015,December,Sunday,13,347,10,D22,Toronto,20,Alderwood (20),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RM,,MT,21,GRY,1200.0,STOLEN,1474,"{'type': 'Point', 'coordinates': (-79.53220571, 43.60698119)}"
-1484,24571,GO-20179006728,THEFT UNDER - BICYCLE,2017-05-15T00:00:00,2017,May,Monday,15,135,15,2017-05-21T00:00:00,2017,May,Sunday,21,141,15,D22,Toronto,20,Alderwood (20),"Apartment (Rooming House, Condo)",Apartment,NO,INDIE 3,MT,18,BLK,700.0,STOLEN,1475,"{'type': 'Point', 'coordinates': (-79.54645395, 43.60141187)}"
-1485,212,GO-2017647466,THEFT UNDER - BICYCLE,2017-04-12T00:00:00,2017,April,Wednesday,12,102,18,2017-04-12T00:00:00,2017,April,Wednesday,12,102,18,D31,Toronto,21,Humber Summit (21),Bar / Restaurant,Commercial,CCM,,MT,6,BLKYEL,255.0,STOLEN,1476,"{'type': 'Point', 'coordinates': (-79.55874466, 43.74855851)}"
-1486,853,GO-20171264932,THEFT UNDER - BICYCLE,2017-07-14T00:00:00,2017,July,Friday,14,195,20,2017-07-14T00:00:00,2017,July,Friday,14,195,20,D31,Toronto,21,Humber Summit (21),"Open Areas (Lakes, Parks, Rivers)",Outside,OTHER,UNKNOWN,BM,1,BLK,44.0,STOLEN,1477,"{'type': 'Point', 'coordinates': (-79.5606996, 43.75247875)}"
-1487,12017,GO-20169008342,THEFT UNDER,2016-08-07T00:00:00,2016,August,Sunday,7,220,10,2016-08-07T00:00:00,2016,August,Sunday,7,220,14,D33,Toronto,52,Bayview Village (52),Unknown,Other,OT,2014 TRAIL X2,MT,24,DGR,500.0,STOLEN,3629,"{'type': 'Point', 'coordinates': (-79.38801507, 43.76658916)}"
-1488,2796,GO-20189021789,THEFT UNDER - BICYCLE,2018-07-09T00:00:00,2018,July,Monday,9,190,21,2018-07-10T00:00:00,2018,July,Tuesday,10,191,0,D31,Toronto,21,Humber Summit (21),"Private Property Structure (Pool, Shed, Detached Garage)",Other,HF,,BM,1,BLK,138.0,STOLEN,1478,"{'type': 'Point', 'coordinates': (-79.57330377, 43.75555469)}"
-1489,3543,GO-20189031656,THEFT UNDER - BICYCLE,2018-09-23T00:00:00,2018,September,Sunday,23,266,17,2018-09-23T00:00:00,2018,September,Sunday,23,266,21,D31,Toronto,21,Humber Summit (21),"Private Property Structure (Pool, Shed, Detached Garage)",Other,HF,,BM,1,PLE,0.0,STOLEN,1479,"{'type': 'Point', 'coordinates': (-79.57330377, 43.75555469)}"
-1490,4603,GO-20199020069,THEFT UNDER,2019-06-20T00:00:00,2019,June,Thursday,20,171,14,2019-06-25T00:00:00,2019,June,Tuesday,25,176,14,D31,Toronto,21,Humber Summit (21),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,MOUNTAIN,MT,20,BLK,976.0,STOLEN,1480,"{'type': 'Point', 'coordinates': (-79.56906415000002, 43.75905627)}"
-1491,4604,GO-20199020069,THEFT UNDER,2019-06-20T00:00:00,2019,June,Thursday,20,171,14,2019-06-25T00:00:00,2019,June,Tuesday,25,176,14,D31,Toronto,21,Humber Summit (21),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,,MT,21,BLK,400.0,UNKNOWN,1481,"{'type': 'Point', 'coordinates': (-79.56906415000002, 43.75905627)}"
-1492,5501,GO-20191960657,THEFT OF MOTOR VEHICLE,2019-10-10T00:00:00,2019,October,Thursday,10,283,19,2019-10-10T00:00:00,2019,October,Thursday,10,283,22,D31,Toronto,21,Humber Summit (21),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,RG,1,,180.0,STOLEN,1482,"{'type': 'Point', 'coordinates': (-79.56231951, 43.74776626)}"
-1493,5502,GO-20191960657,THEFT OF MOTOR VEHICLE,2019-10-10T00:00:00,2019,October,Thursday,10,283,19,2019-10-10T00:00:00,2019,October,Thursday,10,283,22,D31,Toronto,21,Humber Summit (21),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,OT,1,,100.0,STOLEN,1483,"{'type': 'Point', 'coordinates': (-79.56231951, 43.74776626)}"
-1494,5503,GO-20191960657,THEFT OF MOTOR VEHICLE,2019-10-10T00:00:00,2019,October,Thursday,10,283,19,2019-10-10T00:00:00,2019,October,Thursday,10,283,22,D31,Toronto,21,Humber Summit (21),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,BM,1,,80.0,STOLEN,1484,"{'type': 'Point', 'coordinates': (-79.56231951, 43.74776626)}"
-1495,5789,GO-20199042129,THEFT UNDER,2019-12-26T00:00:00,2019,December,Thursday,26,360,15,2019-12-27T00:00:00,2019,December,Friday,27,361,16,D31,Toronto,21,Humber Summit (21),Schools During Un-Supervised Activity,Educational,OT,SIRRUS,OT,8,RED,600.0,STOLEN,1485,"{'type': 'Point', 'coordinates': (-79.5606996, 43.75247875)}"
-1496,8104,GO-20142291464,CARELESS DRIVING- HTA,2014-06-14T00:00:00,2014,June,Saturday,14,165,19,2014-06-14T00:00:00,2014,June,Saturday,14,165,19,D31,Toronto,21,Humber Summit (21),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,ROSS,BOLT,BM,1,BLKSIL,,UNKNOWN,1486,"{'type': 'Point', 'coordinates': (-79.5633741, 43.75081894)}"
-1497,8390,GO-20149004890,THEFT UNDER,2014-07-08T00:00:00,2014,July,Tuesday,8,189,13,2014-07-10T00:00:00,2014,July,Thursday,10,191,18,D31,Toronto,21,Humber Summit (21),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MONTANA,MT,1,PNK,0.0,STOLEN,1487,"{'type': 'Point', 'coordinates': (-79.54234005, 43.752091)}"
-1498,8588,GO-20142635827,THEFT UNDER,2014-07-15T00:00:00,2014,July,Tuesday,15,196,8,2014-08-04T00:00:00,2014,August,Monday,4,216,18,D31,Toronto,21,Humber Summit (21),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,DAYMAK,VIENNA,EL,3,BLU,1500.0,STOLEN,1488,"{'type': 'Point', 'coordinates': (-79.55801745, 43.76000003)}"
-1499,8589,GO-20142636442,THEFT UNDER,2014-08-04T00:00:00,2014,August,Monday,4,216,19,2014-08-09T00:00:00,2014,August,Saturday,9,221,16,D31,Toronto,21,Humber Summit (21),"Open Areas (Lakes, Parks, Rivers)",Outside,NEXT,CHILDRENS,RG,6,WHI,90.0,STOLEN,1489,"{'type': 'Point', 'coordinates': (-79.5606996, 43.75247875)}"
-1500,8829,GO-20142822784,THEFT OF MOTOR VEHICLE,2014-09-01T00:00:00,2014,September,Monday,1,244,7,2014-09-01T00:00:00,2014,September,Monday,1,244,23,D31,Toronto,21,Humber Summit (21),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,BMC,BM,18,,5199.0,STOLEN,1490,"{'type': 'Point', 'coordinates': (-79.56906415000002, 43.75905627)}"
-1501,10726,GO-20159009399,THEFT UNDER,2015-10-31T00:00:00,2015,October,Saturday,31,304,20,2015-11-03T00:00:00,2015,November,Tuesday,3,307,20,D31,Toronto,21,Humber Summit (21),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,SC,34,BLK,800.0,STOLEN,1491,"{'type': 'Point', 'coordinates': (-79.55759297, 43.74879602)}"
-1502,11726,GO-20161187414,THEFT UNDER,2016-06-28T00:00:00,2016,June,Tuesday,28,180,7,2016-07-07T00:00:00,2016,July,Thursday,7,189,10,D31,Toronto,21,Humber Summit (21),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CARA,,SC,1,ONG,1000.0,STOLEN,1492,"{'type': 'Point', 'coordinates': (-79.56504966, 43.74808259)}"
-1503,12083,GO-20161438418,B&E,2016-08-15T00:00:00,2016,August,Monday,15,228,1,2016-08-15T00:00:00,2016,August,Monday,15,228,4,D31,Toronto,21,Humber Summit (21),"Dealership (Car, Motorcycle, Marine, Trailer, Etc.)",Commercial,OTHER,UNKNOWN,SC,1,,1000.0,STOLEN,1493,"{'type': 'Point', 'coordinates': (-79.56051931, 43.76741635)}"
-1504,12774,GO-20162042566,B&E,2016-11-17T00:00:00,2016,November,Thursday,17,322,1,2016-11-17T00:00:00,2016,November,Thursday,17,322,10,D31,Toronto,21,Humber Summit (21),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,ABIBABA,LMDB 110A,OT,0,,,STOLEN,1495,"{'type': 'Point', 'coordinates': (-79.55999171, 43.75625404)}"
-1505,12775,GO-20162042566,B&E,2016-11-17T00:00:00,2016,November,Thursday,17,322,1,2016-11-17T00:00:00,2016,November,Thursday,17,322,10,D31,Toronto,21,Humber Summit (21),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TAO TAO,125D,TO,0,,,STOLEN,1496,"{'type': 'Point', 'coordinates': (-79.55999171, 43.75625404)}"
-1506,14302,GO-20201609404,ROBBERY - MUGGING,2020-08-26T00:00:00,2020,August,Wednesday,26,239,14,2020-08-26T00:00:00,2020,August,Wednesday,26,239,14,D31,Toronto,21,Humber Summit (21),Schools During Un-Supervised Activity,Educational,UNKNOWN MAKE,,BM,0,BLK,400.0,RECOVERED,1497,"{'type': 'Point', 'coordinates': (-79.57964302, 43.75714241)}"
-1507,14927,GO-20142638951,THEFT OF MOTOR VEHICLE,2014-08-01T00:00:00,2014,August,Friday,1,213,6,2014-08-05T00:00:00,2014,August,Tuesday,5,217,8,D31,Toronto,21,Humber Summit (21),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN,,OT,0,,,STOLEN,1498,"{'type': 'Point', 'coordinates': (-79.54117259000002, 43.76575329)}"
-1508,14971,GO-20151432631,THEFT UNDER,2015-08-15T00:00:00,2015,August,Saturday,15,227,21,2015-08-20T00:00:00,2015,August,Thursday,20,232,11,D31,Toronto,21,Humber Summit (21),"Open Areas (Lakes, Parks, Rivers)",Outside,SUPERCYCLE,,MT,4,RED,147.0,STOLEN,1499,"{'type': 'Point', 'coordinates': (-79.5606996, 43.75247875)}"
-1509,15031,GO-20169010733,THEFT UNDER - BICYCLE,2016-09-19T00:00:00,2016,September,Monday,19,263,16,2016-09-19T00:00:00,2016,September,Monday,19,263,17,D31,Toronto,21,Humber Summit (21),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,MT,20,BLK,500.0,STOLEN,1500,"{'type': 'Point', 'coordinates': (-79.56939982, 43.75669307)}"
-1510,17746,GO-20171825601,ROBBERY - MUGGING,2017-10-08T00:00:00,2017,October,Sunday,8,281,0,2017-10-08T00:00:00,2017,October,Sunday,8,281,14,D31,Toronto,21,Humber Summit (21),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,MT,0,GRNBLK,200.0,STOLEN,1501,"{'type': 'Point', 'coordinates': (-79.54903544, 43.7506496)}"
-1511,17944,GO-20142811724,PROPERTY - FOUND,2014-08-31T00:00:00,2014,August,Sunday,31,243,7,2014-08-31T00:00:00,2014,August,Sunday,31,243,10,D31,Toronto,21,Humber Summit (21),"Open Areas (Lakes, Parks, Rivers)",Outside,SUPERCYCLE,IMPULSE SE,MT,10,PNKSIL,,STOLEN,1502,"{'type': 'Point', 'coordinates': (-79.57725427, 43.75362155)}"
-1512,21065,GO-20191792614,THEFT UNDER - BICYCLE,2019-09-17T00:00:00,2019,September,Tuesday,17,260,8,2019-09-18T00:00:00,2019,September,Wednesday,18,261,7,D31,Toronto,21,Humber Summit (21),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,VANDAL,MT,21,REDWHI,250.0,STOLEN,1503,"{'type': 'Point', 'coordinates': (-79.56602556, 43.76058759)}"
-1513,24481,GO-20159005841,THEFT UNDER,2015-08-15T00:00:00,2015,August,Saturday,15,227,15,2015-08-15T00:00:00,2015,August,Saturday,15,227,16,D31,Toronto,21,Humber Summit (21),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,RALLYE DESCENT,MT,18,GRN,200.0,STOLEN,1504,"{'type': 'Point', 'coordinates': (-79.57116998, 43.75440342000001)}"
-1514,296,GO-2017739614,THEFT UNDER,2017-04-19T00:00:00,2017,April,Wednesday,19,109,10,2017-04-27T00:00:00,2017,April,Thursday,27,117,14,D31,Toronto,22,Humbermede (22),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KIDS,,OT,1,RED,,STOLEN,1505,"{'type': 'Point', 'coordinates': (-79.56125649, 43.74645016)}"
-1515,6218,GO-20209013621,THEFT UNDER,2020-05-11T00:00:00,2020,May,Monday,11,132,16,2020-05-21T00:00:00,2020,May,Thursday,21,142,17,D31,Toronto,22,Humbermede (22),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,1,,180.0,STOLEN,1506,"{'type': 'Point', 'coordinates': (-79.54675254, 43.74912481)}"
-1516,7027,GO-20201578470,THEFT OF MOTOR VEHICLE,2020-08-21T00:00:00,2020,August,Friday,21,234,20,2020-08-22T00:00:00,2020,August,Saturday,22,235,8,D31,Toronto,22,Humbermede (22),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,TR,0,BLU,75.0,STOLEN,1507,"{'type': 'Point', 'coordinates': (-79.54209151, 43.7508487)}"
-1517,9261,GO-201580854,THEFT UNDER,2015-01-13T00:00:00,2015,January,Tuesday,13,13,8,2015-01-14T00:00:00,2015,January,Wednesday,14,14,20,D31,Toronto,22,Humbermede (22),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,MT,0,BLK,,STOLEN,1508,"{'type': 'Point', 'coordinates': (-79.54209151, 43.7508487)}"
-1518,9262,GO-201580854,THEFT UNDER,2015-01-13T00:00:00,2015,January,Tuesday,13,13,8,2015-01-14T00:00:00,2015,January,Wednesday,14,14,20,D31,Toronto,22,Humbermede (22),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,,MT,21,ONG,,STOLEN,1509,"{'type': 'Point', 'coordinates': (-79.54209151, 43.7508487)}"
-1519,11244,GO-2016751364,THEFT UNDER - BICYCLE,2016-04-28T00:00:00,2016,April,Thursday,28,119,18,2016-05-02T00:00:00,2016,May,Monday,2,123,15,D31,Toronto,22,Humbermede (22),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,LOCURA,OT,21,WHIRED,340.0,STOLEN,1510,"{'type': 'Point', 'coordinates': (-79.54518685, 43.74788175)}"
-1520,14590,GO-20199034038,THEFT UNDER,2019-10-13T00:00:00,2019,October,Sunday,13,286,14,2019-10-16T00:00:00,2019,October,Wednesday,16,289,0,D31,Toronto,22,Humbermede (22),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,RAINIER,MT,21,BLU,759.0,STOLEN,1511,"{'type': 'Point', 'coordinates': (-79.56125649, 43.74645016)}"
-1521,17981,GO-20159004918,THEFT UNDER,2015-07-23T00:00:00,2015,July,Thursday,23,204,14,2015-07-23T00:00:00,2015,July,Thursday,23,204,21,D31,Toronto,22,Humbermede (22),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RM,,MT,21,BLK,0.0,STOLEN,1512,"{'type': 'Point', 'coordinates': (-79.54519103, 43.739648)}"
-1522,18023,GO-2016894381,THEFT UNDER - BICYCLE,2016-05-24T00:00:00,2016,May,Tuesday,24,145,13,2016-05-24T00:00:00,2016,May,Tuesday,24,145,14,D31,Toronto,22,Humbermede (22),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,RG,0,BLK,60.0,STOLEN,1513,"{'type': 'Point', 'coordinates': (-79.55483845, 43.74809821)}"
-1523,18046,GO-20161482303,THEFT UNDER - BICYCLE,2016-08-21T00:00:00,2016,August,Sunday,21,234,19,2016-08-21T00:00:00,2016,August,Sunday,21,234,19,D31,Toronto,22,Humbermede (22),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NEXT,MOUNTAIN,MT,5,WHI,400.0,STOLEN,1514,"{'type': 'Point', 'coordinates': (-79.54518685, 43.74788175)}"
-1524,21137,GO-20209013721,THEFT UNDER,2020-05-20T00:00:00,2020,May,Wednesday,20,141,18,2020-05-22T00:00:00,2020,May,Friday,22,143,18,D31,Toronto,22,Humbermede (22),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,10,SIL,0.0,STOLEN,1515,"{'type': 'Point', 'coordinates': (-79.54675254, 43.74912481)}"
-1525,21192,GO-20171348800,THEFT UNDER - BICYCLE,2017-07-27T00:00:00,2017,July,Thursday,27,208,13,2017-07-27T00:00:00,2017,July,Thursday,27,208,16,D31,Toronto,22,Humbermede (22),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,MT,21,,,STOLEN,1516,"{'type': 'Point', 'coordinates': (-79.55347525, 43.74770522)}"
-1526,22008,GO-20149003739,THEFT UNDER,2014-06-01T00:00:00,2014,June,Sunday,1,152,19,2014-06-01T00:00:00,2014,June,Sunday,1,152,19,D31,Toronto,22,Humbermede (22),"Apartment (Rooming House, Condo)",Apartment,IH,DETRACT,MT,24,GRY,600.0,STOLEN,1517,"{'type': 'Point', 'coordinates': (-79.53658066, 43.73962898)}"
-1527,22009,GO-20142205920,THEFT UNDER,2014-06-02T00:00:00,2014,June,Monday,2,153,13,2014-06-02T00:00:00,2014,June,Monday,2,153,16,D31,Toronto,22,Humbermede (22),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,GIANT,,MT,21,BLU,300.0,STOLEN,1518,"{'type': 'Point', 'coordinates': (-79.53622272, 43.75329134)}"
-1528,22082,GO-20159006595,THEFT UNDER,2015-08-21T00:00:00,2015,August,Friday,21,233,14,2015-09-01T00:00:00,2015,September,Tuesday,1,244,10,D31,Toronto,22,Humbermede (22),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SU,,MT,4,PNK,150.0,STOLEN,1519,"{'type': 'Point', 'coordinates': (-79.54518685, 43.74788175)}"
-1529,24177,GO-20209013621,THEFT UNDER,2020-05-11T00:00:00,2020,May,Monday,11,132,16,2020-05-21T00:00:00,2020,May,Thursday,21,142,17,D31,Toronto,22,Humbermede (22),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,1,,180.0,STOLEN,1520,"{'type': 'Point', 'coordinates': (-79.54675254, 43.74912481)}"
-1530,24228,GO-20171625823,THEFT UNDER - BICYCLE,2017-09-07T00:00:00,2017,September,Thursday,7,250,8,2017-09-12T00:00:00,2017,September,Tuesday,12,255,10,D31,Toronto,22,Humbermede (22),Schools During Supervised Activity,Educational,NAKAMURA,ECKO,RG,10,BLKRED,300.0,STOLEN,1521,"{'type': 'Point', 'coordinates': (-79.54156856, 43.74823463)}"
-1531,24326,GO-20181190055,B&E,2018-01-08T00:00:00,2018,January,Monday,8,8,0,2018-06-30T00:00:00,2018,June,Saturday,30,181,14,D31,Toronto,22,Humbermede (22),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,OT,0,GRN,120.0,STOLEN,1522,"{'type': 'Point', 'coordinates': (-79.53081113, 43.74181383)}"
-1532,24327,GO-20181190055,B&E,2018-01-08T00:00:00,2018,January,Monday,8,8,0,2018-06-30T00:00:00,2018,June,Saturday,30,181,14,D31,Toronto,22,Humbermede (22),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,FO,0,BLKBLU,250.0,STOLEN,1523,"{'type': 'Point', 'coordinates': (-79.53081113, 43.74181383)}"
-1533,24478,GO-20151371796,THEFT UNDER,2015-08-06T00:00:00,2015,August,Thursday,6,218,13,2015-08-10T00:00:00,2015,August,Monday,10,222,17,D31,Toronto,22,Humbermede (22),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BIKE,,RC,10,BLU,130.0,STOLEN,1524,"{'type': 'Point', 'coordinates': (-79.55347525, 43.74770522)}"
-1534,2594,GO-20189019024,THEFT UNDER - BICYCLE,2018-06-16T00:00:00,2018,June,Saturday,16,167,19,2018-06-17T00:00:00,2018,June,Sunday,17,168,14,D12,Toronto,23,Pelmo Park-Humberlea (23),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,NAVIGATOR 200,MT,14,DGR,100.0,STOLEN,1525,"{'type': 'Point', 'coordinates': (-79.51418951, 43.71017883)}"
-1535,2595,GO-20189019024,THEFT UNDER - BICYCLE,2018-06-16T00:00:00,2018,June,Saturday,16,167,19,2018-06-17T00:00:00,2018,June,Sunday,17,168,14,D12,Toronto,23,Pelmo Park-Humberlea (23),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,MT,21,LBL,500.0,STOLEN,1526,"{'type': 'Point', 'coordinates': (-79.51418951, 43.71017883)}"
-1536,3126,GO-20181440858,B&E,2018-08-04T00:00:00,2018,August,Saturday,4,216,21,2018-08-06T00:00:00,2018,August,Monday,6,218,10,D31,Toronto,23,Pelmo Park-Humberlea (23),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,OT,10,,600.0,STOLEN,1527,"{'type': 'Point', 'coordinates': (-79.53413102, 43.71520734)}"
-1537,3127,GO-20181440858,B&E,2018-08-04T00:00:00,2018,August,Saturday,4,216,21,2018-08-06T00:00:00,2018,August,Monday,6,218,10,D31,Toronto,23,Pelmo Park-Humberlea (23),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,SC,80,,5400.0,STOLEN,1528,"{'type': 'Point', 'coordinates': (-79.53413102, 43.71520734)}"
-1538,6105,GO-2020791048,THEFT UNDER,2020-04-23T00:00:00,2020,April,Thursday,23,114,16,2020-04-26T00:00:00,2020,April,Sunday,26,117,18,D12,Toronto,23,Pelmo Park-Humberlea (23),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,DIAMONDBACK,V LINK 1.0,MT,0,GRN,4000.0,STOLEN,1529,"{'type': 'Point', 'coordinates': (-79.52181244, 43.71328697)}"
-1539,6148,GO-20209012563,THEFT UNDER,2020-05-05T00:00:00,2020,May,Tuesday,5,126,14,2020-05-06T00:00:00,2020,May,Wednesday,6,127,9,D12,Toronto,23,Pelmo Park-Humberlea (23),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,DEL SOL PROJEKT,RG,5,BLK,550.0,STOLEN,1530,"{'type': 'Point', 'coordinates': (-79.51881483, 43.71211819)}"
-1540,6890,GO-20201448508,THEFT UNDER,2020-08-03T00:00:00,2020,August,Monday,3,216,0,2020-08-03T00:00:00,2020,August,Monday,3,216,19,D31,Toronto,23,Pelmo Park-Humberlea (23),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,RG,0,,175.0,STOLEN,1531,"{'type': 'Point', 'coordinates': (-79.53370704, 43.72946013)}"
-1541,6891,GO-20201448508,THEFT UNDER,2020-08-03T00:00:00,2020,August,Monday,3,216,0,2020-08-03T00:00:00,2020,August,Monday,3,216,19,D31,Toronto,23,Pelmo Park-Humberlea (23),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ZZZ,,RG,0,,75.0,STOLEN,1532,"{'type': 'Point', 'coordinates': (-79.53370704, 43.72946013)}"
-1542,9344,GO-20142455163,THEFT UNDER,2014-07-08T00:00:00,2014,July,Tuesday,8,189,12,2014-07-08T00:00:00,2014,July,Tuesday,8,189,12,D31,Toronto,23,Pelmo Park-Humberlea (23),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,RG,0,,750.0,STOLEN,1533,"{'type': 'Point', 'coordinates': (-79.5327668, 43.72636119)}"
-1543,24477,GO-20151354249,B&E,2015-08-02T00:00:00,2015,August,Sunday,2,214,10,2015-08-08T00:00:00,2015,August,Saturday,8,220,10,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCOTT,,MT,21,WHI,600.0,STOLEN,1534,"{'type': 'Point', 'coordinates': (-79.49119535, 43.61905507)}"
-1544,14597,GO-20192109317,B&E,2019-11-01T00:00:00,2019,November,Friday,1,305,7,2019-11-01T00:00:00,2019,November,Friday,1,305,11,D31,Toronto,23,Pelmo Park-Humberlea (23),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,MT,12,BLK,1300.0,STOLEN,1535,"{'type': 'Point', 'coordinates': (-79.53401368, 43.73012864)}"
-1545,17930,GO-20142393930,THEFT OVER,2014-06-08T00:00:00,2014,June,Sunday,8,159,15,2014-07-03T00:00:00,2014,July,Thursday,3,184,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,MADONE,OT,21,BLK,3500.0,STOLEN,1536,"{'type': 'Point', 'coordinates': (-79.47400022, 43.6305708)}"
-1546,24480,GO-20159005633,THEFT UNDER,2015-08-09T00:00:00,2015,August,Sunday,9,221,11,2015-08-11T00:00:00,2015,August,Tuesday,11,223,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,DB,OVERDRIVE COMP,MT,27,GRY,900.0,STOLEN,1537,"{'type': 'Point', 'coordinates': (-79.49540915, 43.60920772)}"
-1547,17928,GO-20142344683,THEFT UNDER,2014-06-22T00:00:00,2014,June,Sunday,22,173,15,2014-06-22T00:00:00,2014,June,Sunday,22,173,15,D31,Toronto,23,Pelmo Park-Humberlea (23),Convenience Stores,Commercial,SUPERCYCLE,,RG,10,RED,200.0,STOLEN,1538,"{'type': 'Point', 'coordinates': (-79.53746202, 43.72037837)}"
-1548,17942,GO-20149005776,THEFT UNDER,2014-08-13T00:00:00,2014,August,Wednesday,13,225,0,2014-08-13T00:00:00,2014,August,Wednesday,13,225,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,6,GRY,300.0,STOLEN,1539,"{'type': 'Point', 'coordinates': (-79.49375994, 43.61719194)}"
-1549,2564,GO-20189018724,THEFT UNDER,2018-06-13T00:00:00,2018,June,Wednesday,13,164,23,2018-06-14T00:00:00,2018,June,Thursday,14,165,18,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,RALEIGH,,MT,25,LBL,100.0,STOLEN,1540,"{'type': 'Point', 'coordinates': (-79.53105518, 43.59180861000001)}"
-1550,2565,GO-20189018724,THEFT UNDER,2018-06-13T00:00:00,2018,June,Wednesday,13,164,23,2018-06-14T00:00:00,2018,June,Thursday,14,165,18,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,DB,,MT,20,BLK,100.0,STOLEN,1541,"{'type': 'Point', 'coordinates': (-79.53105518, 43.59180861000001)}"
-1551,2661,GO-20181143362,THEFT UNDER - BICYCLE,2018-06-22T00:00:00,2018,June,Friday,22,173,17,2018-06-23T00:00:00,2018,June,Saturday,23,174,16,D22,Toronto,19,Long Branch (19),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,,MT,15,SIL,500.0,STOLEN,1542,"{'type': 'Point', 'coordinates': (-79.54491322, 43.59051582)}"
-1552,2665,GO-20189020010,THEFT UNDER - BICYCLE,2018-06-23T00:00:00,2018,June,Saturday,23,174,16,2018-06-24T00:00:00,2018,June,Sunday,24,175,14,D22,Toronto,19,Long Branch (19),Go Station,Transit,NO,2016 INDIE 2,RG,9,GRY,1000.0,STOLEN,1543,"{'type': 'Point', 'coordinates': (-79.54491322, 43.59051582)}"
-1553,2729,GO-20189020889,THEFT UNDER - BICYCLE,2018-07-01T00:00:00,2018,July,Sunday,1,182,15,2018-07-01T00:00:00,2018,July,Sunday,1,182,19,D22,Toronto,19,Long Branch (19),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,TEMPO,OT,21,SIL,220.0,STOLEN,1544,"{'type': 'Point', 'coordinates': (-79.53228262, 43.5905111)}"
-1554,2781,GO-20181246626,THEFT UNDER - BICYCLE,2018-07-09T00:00:00,2018,July,Monday,9,190,4,2018-07-09T00:00:00,2018,July,Monday,9,190,4,D22,Toronto,19,Long Branch (19),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,SIRUS ELITE DIS,RG,18,ONG,1400.0,STOLEN,1545,"{'type': 'Point', 'coordinates': (-79.54098118, 43.59092268)}"
-1555,2782,GO-20181246626,THEFT UNDER - BICYCLE,2018-07-09T00:00:00,2018,July,Monday,9,190,4,2018-07-09T00:00:00,2018,July,Monday,9,190,4,D22,Toronto,19,Long Branch (19),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,,RG,24,BLK,1000.0,STOLEN,1546,"{'type': 'Point', 'coordinates': (-79.54098118, 43.59092268)}"
-1556,2918,GO-20189023455,THEFT UNDER - BICYCLE,2018-07-20T00:00:00,2018,July,Friday,20,201,8,2018-07-22T00:00:00,2018,July,Sunday,22,203,19,D22,Toronto,19,Long Branch (19),Go Station,Transit,OT,HYBRID,OT,21,BLU,300.0,STOLEN,1547,"{'type': 'Point', 'coordinates': (-79.52283716, 43.59485417)}"
-1557,2926,GO-20189023508,THEFT UNDER - BICYCLE,2018-06-29T00:00:00,2018,June,Friday,29,180,9,2018-07-23T00:00:00,2018,July,Monday,23,204,10,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,OT,MODENA,OT,21,BLK,500.0,STOLEN,1548,"{'type': 'Point', 'coordinates': (-79.53397755, 43.59436142)}"
-1558,2927,GO-20189023508,THEFT UNDER - BICYCLE,2018-06-29T00:00:00,2018,June,Friday,29,180,9,2018-07-23T00:00:00,2018,July,Monday,23,204,10,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,OT,MODENA,OT,21,BLK,500.0,STOLEN,1549,"{'type': 'Point', 'coordinates': (-79.53397755, 43.59436142)}"
-1559,3305,GO-20189027698,THEFT UNDER - BICYCLE,2018-08-20T00:00:00,2018,August,Monday,20,232,17,2018-08-24T00:00:00,2018,August,Friday,24,236,10,D22,Toronto,19,Long Branch (19),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,WHISTLER 10,RG,12,BLU,769.0,STOLEN,1550,"{'type': 'Point', 'coordinates': (-79.52851381, 43.59457489)}"
-1560,3704,GO-20189034149,THEFT UNDER - BICYCLE,2018-10-14T00:00:00,2018,October,Sunday,14,287,0,2018-10-15T00:00:00,2018,October,Monday,15,288,12,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,DB,OVERDRIVE 29C 1,MT,24,BLK,2000.0,STOLEN,1551,"{'type': 'Point', 'coordinates': (-79.53397755, 43.59436142)}"
-1561,3735,GO-20189034880,THEFT UNDER - BICYCLE,2018-10-20T00:00:00,2018,October,Saturday,20,293,15,2018-10-20T00:00:00,2018,October,Saturday,20,293,17,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,GT,AGGRESSOR,MT,21,BLK,500.0,STOLEN,1552,"{'type': 'Point', 'coordinates': (-79.52280387, 43.59782434)}"
-1562,4232,GO-20199013878,THEFT UNDER,2019-04-29T00:00:00,2019,April,Monday,29,119,17,2019-05-04T00:00:00,2019,May,Saturday,4,124,10,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,CA,29R SL1,MT,24,BLU,2000.0,STOLEN,1553,"{'type': 'Point', 'coordinates': (-79.54560481, 43.58975212000001)}"
-1563,4503,GO-20199018793,THEFT UNDER,2019-06-14T00:00:00,2019,June,Friday,14,165,23,2019-06-16T00:00:00,2019,June,Sunday,16,167,0,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,RE,,MT,40,BLK,110.0,STOLEN,1554,"{'type': 'Point', 'coordinates': (-79.52454939, 43.59552297)}"
-1564,4801,GO-20199022847,THEFT UNDER,2019-07-18T00:00:00,2019,July,Thursday,18,199,8,2019-07-18T00:00:00,2019,July,Thursday,18,199,20,D22,Toronto,19,Long Branch (19),Go Station,Transit,TR,SERIES 4,MT,21,GRY,0.0,STOLEN,1555,"{'type': 'Point', 'coordinates': (-79.54491322, 43.59051582)}"
-1565,5436,GO-20199032012,THEFT UNDER,2019-09-28T00:00:00,2019,September,Saturday,28,271,17,2019-09-29T00:00:00,2019,September,Sunday,29,272,21,D22,Toronto,19,Long Branch (19),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,AXIS C4,RG,1,BLU,900.0,STOLEN,1556,"{'type': 'Point', 'coordinates': (-79.53095335, 43.59505734)}"
-1566,5839,GO-20209002040,THEFT UNDER,2019-12-17T00:00:00,2019,December,Tuesday,17,351,16,2020-01-17T00:00:00,2020,January,Friday,17,17,17,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,UK,2014,MT,15,PLE,650.0,STOLEN,1557,"{'type': 'Point', 'coordinates': (-79.54491322, 43.59051582)}"
-1567,5875,GO-20192430534,MISCHIEF UNDER,2019-12-04T00:00:00,2019,December,Wednesday,4,338,18,2019-12-17T00:00:00,2019,December,Tuesday,17,351,16,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,OT,,FO,30,BLK,2000.0,STOLEN,1558,"{'type': 'Point', 'coordinates': (-79.54491322, 43.59051582)}"
-1568,6279,GO-20201011030,THEFT UNDER,2020-06-01T00:00:00,2020,June,Monday,1,153,16,2020-06-01T00:00:00,2020,June,Monday,1,153,19,D22,Toronto,19,Long Branch (19),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,ADULT,OT,0,BLU,,STOLEN,1559,"{'type': 'Point', 'coordinates': (-79.52963322, 43.59228514)}"
-1569,6280,GO-20201011030,THEFT UNDER,2020-06-01T00:00:00,2020,June,Monday,1,153,16,2020-06-01T00:00:00,2020,June,Monday,1,153,19,D22,Toronto,19,Long Branch (19),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,TEEN SIZE BIKE,OT,0,PLE,,STOLEN,1560,"{'type': 'Point', 'coordinates': (-79.52963322, 43.59228514)}"
-1570,6466,GO-20201172064,THEFT UNDER - BICYCLE,2020-06-25T00:00:00,2020,June,Thursday,25,177,19,2020-06-25T00:00:00,2020,June,Thursday,25,177,19,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,EMMO,SOHO 2.0,EL,1,WHI,1799.0,STOLEN,1561,"{'type': 'Point', 'coordinates': (-79.5438847, 43.58866121)}"
-1571,7581,GO-20209028336,THEFT UNDER,2020-11-01T00:00:00,2020,November,Sunday,1,306,9,2020-11-01T00:00:00,2020,November,Sunday,1,306,21,D22,Toronto,19,Long Branch (19),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,SCHWINN GRANDE,MT,20,ONG,300.0,STOLEN,1562,"{'type': 'Point', 'coordinates': (-79.53953115, 43.59336618)}"
-1572,6860,GO-20201446754,THEFT UNDER - BICYCLE,2020-07-30T00:00:00,2020,July,Thursday,30,212,17,2020-08-04T00:00:00,2020,August,Tuesday,4,217,12,D13,Toronto,31,Yorkdale-Glen Park (31),Ttc Subway Station,Transit,OTHER,SUPER CYCLE,RG,24,BLU,100.0,STOLEN,1563,"{'type': 'Point', 'coordinates': (-79.43982544, 43.70789665)}"
-1573,7948,GO-20149003472,THEFT FROM MOTOR VEHICLE UNDER,2014-05-19T00:00:00,2014,May,Monday,19,139,22,2014-05-20T00:00:00,2014,May,Tuesday,20,140,13,D22,Toronto,19,Long Branch (19),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ROAD RACER,RC,14,CPRGLD,500.0,STOLEN,1564,"{'type': 'Point', 'coordinates': (-79.53616689, 43.5888304)}"
-1574,8054,GO-20142217306,THEFT UNDER,2014-06-03T00:00:00,2014,June,Tuesday,3,154,20,2014-06-05T00:00:00,2014,June,Thursday,5,156,15,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,OTHER,1700,SC,1,BLU,3597.0,STOLEN,1565,"{'type': 'Point', 'coordinates': (-79.52757793, 43.59581439)}"
-1575,8861,GO-20142874661,THEFT UNDER,2014-08-28T00:00:00,2014,August,Thursday,28,240,16,2014-09-12T00:00:00,2014,September,Friday,12,255,14,D22,Toronto,19,Long Branch (19),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,LADIES,RG,21,SILWHI,450.0,STOLEN,1566,"{'type': 'Point', 'coordinates': (-79.52963322, 43.59228514)}"
-1576,8862,GO-20142874661,THEFT UNDER,2014-08-28T00:00:00,2014,August,Thursday,28,240,16,2014-09-12T00:00:00,2014,September,Friday,12,255,14,D22,Toronto,19,Long Branch (19),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,P1 DIRT JUMP,OT,21,BLUBRN,999.0,STOLEN,1567,"{'type': 'Point', 'coordinates': (-79.52963322, 43.59228514)}"
-1577,8994,GO-20143010878,B&E,2014-09-28T00:00:00,2014,September,Sunday,28,271,9,2014-09-29T00:00:00,2014,September,Monday,29,272,21,D22,Toronto,19,Long Branch (19),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,PHASER,MT,18,BLK,2000.0,STOLEN,1568,"{'type': 'Point', 'coordinates': (-79.5349571, 43.58908526)}"
-1578,9276,GO-20159000438,THEFT UNDER,2014-12-16T00:00:00,2014,December,Tuesday,16,350,8,2015-01-23T00:00:00,2015,January,Friday,23,23,21,D22,Toronto,19,Long Branch (19),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,ANTHEM X29-2,MT,20,WHI,2300.0,STOLEN,1569,"{'type': 'Point', 'coordinates': (-79.53936259, 43.58736655)}"
-1579,9277,GO-20159000438,THEFT UNDER,2014-12-16T00:00:00,2014,December,Tuesday,16,350,8,2015-01-23T00:00:00,2015,January,Friday,23,23,21,D22,Toronto,19,Long Branch (19),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FJ,GEOX,RC,16,BLK,2400.0,STOLEN,1570,"{'type': 'Point', 'coordinates': (-79.53936259, 43.58736655)}"
-1580,9545,GO-2015760269,THEFT UNDER,2015-05-07T00:00:00,2015,May,Thursday,7,127,4,2015-05-07T00:00:00,2015,May,Thursday,7,127,15,D22,Toronto,19,Long Branch (19),"Single Home, House (Attach Garage, Cottage, Mobile)",House,EMMO,,EL,1,BLK,1100.0,STOLEN,1571,"{'type': 'Point', 'coordinates': (-79.52807305, 43.59020393)}"
-1581,9686,GO-20159003195,THEFT UNDER,2015-05-29T00:00:00,2015,May,Friday,29,149,18,2015-05-30T00:00:00,2015,May,Saturday,30,150,9,D22,Toronto,19,Long Branch (19),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,OCR3,RC,18,RED,675.0,STOLEN,1572,"{'type': 'Point', 'coordinates': (-79.54560481, 43.58975212000001)}"
-1582,10221,GO-20159005538,THEFT UNDER,2015-08-08T00:00:00,2015,August,Saturday,8,220,12,2015-08-09T00:00:00,2015,August,Sunday,9,221,13,D22,Toronto,19,Long Branch (19),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,UNKNOWN,MT,21,BLK,220.0,STOLEN,1573,"{'type': 'Point', 'coordinates': (-79.52408369000001, 43.59369589)}"
-1583,10238,GO-20159005626,THEFT UNDER,2015-08-10T00:00:00,2015,August,Monday,10,222,21,2015-08-11T00:00:00,2015,August,Tuesday,11,223,10,D22,Toronto,19,Long Branch (19),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,RG,10,BLK,700.0,STOLEN,1574,"{'type': 'Point', 'coordinates': (-79.52184547, 43.59250893)}"
-1584,10686,GO-20151839743,THEFT OVER,2015-10-23T00:00:00,2015,October,Friday,23,296,18,2015-10-26T00:00:00,2015,October,Monday,26,299,8,D22,Toronto,19,Long Branch (19),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,CYPRESS,OT,21,BLK,1100.0,STOLEN,1575,"{'type': 'Point', 'coordinates': (-79.53236154, 43.594736530000006)}"
-1585,10697,GO-20159009118,THEFT UNDER,2015-10-27T00:00:00,2015,October,Tuesday,27,300,10,2015-10-28T00:00:00,2015,October,Wednesday,28,301,14,D22,Toronto,19,Long Branch (19),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RM,BLIZZARD,MT,24,WHI,2500.0,STOLEN,1576,"{'type': 'Point', 'coordinates': (-79.53236154, 43.594736530000006)}"
-1586,11625,GO-20161095514,THEFT UNDER - BICYCLE,2016-06-21T00:00:00,2016,June,Tuesday,21,173,20,2016-06-23T00:00:00,2016,June,Thursday,23,175,8,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,HUFFY,,RG,1,BRN,200.0,STOLEN,1577,"{'type': 'Point', 'coordinates': (-79.53154531, 43.58892605)}"
-1587,11651,GO-20161129156,THEFT UNDER - BICYCLE,2016-06-27T00:00:00,2016,June,Monday,27,179,11,2016-06-28T00:00:00,2016,June,Tuesday,28,180,9,D22,Toronto,19,Long Branch (19),"Private Property Structure (Pool, Shed, Detached Garage)",Other,REEBOK,OREGON PRO,MT,26,BLUBLK,400.0,STOLEN,1578,"{'type': 'Point', 'coordinates': (-79.53469534, 43.59205774)}"
-1588,11661,GO-20169006466,THEFT UNDER - BICYCLE,2016-06-28T00:00:00,2016,June,Tuesday,28,180,7,2016-06-28T00:00:00,2016,June,Tuesday,28,180,10,D22,Toronto,19,Long Branch (19),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GT,,MT,27,BLK,800.0,STOLEN,1579,"{'type': 'Point', 'coordinates': (-79.53317021, 43.58854798)}"
-1589,24507,GO-2016407797,THEFT UNDER,2016-03-08T00:00:00,2016,March,Tuesday,8,68,7,2016-03-09T00:00:00,2016,March,Wednesday,9,69,7,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,GIO PB710,EL,2,BLK,1500.0,STOLEN,1580,"{'type': 'Point', 'coordinates': (-79.49671284, 43.61223676)}"
-1590,21559,GO-20209016326,THEFT UNDER,2020-06-27T00:00:00,2020,June,Saturday,27,179,13,2020-06-27T00:00:00,2020,June,Saturday,27,179,17,D12,Toronto,23,Pelmo Park-Humberlea (23),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,FX-2,RG,24,BLK,600.0,STOLEN,1581,"{'type': 'Point', 'coordinates': (-79.53456277, 43.70968634)}"
-1591,17945,GO-20142854721,B&E,2014-09-05T00:00:00,2014,September,Friday,5,248,23,2014-09-06T00:00:00,2014,September,Saturday,6,249,10,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,UNK,MT,18,BLKRED,1000.0,STOLEN,1582,"{'type': 'Point', 'coordinates': (-79.48643252, 43.61892859)}"
-1592,11691,GO-20161167654,B&E,2016-07-03T00:00:00,2016,July,Sunday,3,185,8,2016-07-04T00:00:00,2016,July,Monday,4,186,11,D22,Toronto,19,Long Branch (19),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,UNKNOWN,RC,0,BLK,800.0,STOLEN,1583,"{'type': 'Point', 'coordinates': (-79.53616689, 43.5888304)}"
-1593,11692,GO-20161167654,B&E,2016-07-03T00:00:00,2016,July,Sunday,3,185,8,2016-07-04T00:00:00,2016,July,Monday,4,186,11,D22,Toronto,19,Long Branch (19),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,STATIC,MT,0,GRN,300.0,STOLEN,1584,"{'type': 'Point', 'coordinates': (-79.53616689, 43.5888304)}"
-1594,11717,GO-20169006761,THEFT UNDER - BICYCLE,2016-07-01T00:00:00,2016,July,Friday,1,183,8,2016-07-05T00:00:00,2016,July,Tuesday,5,187,23,D22,Toronto,19,Long Branch (19),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,21,,0.0,STOLEN,1585,"{'type': 'Point', 'coordinates': (-79.52245531, 43.59695537)}"
-1595,12418,GO-20161683357,B&E,2016-09-19T00:00:00,2016,September,Monday,19,263,5,2016-09-22T00:00:00,2016,September,Thursday,22,266,1,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,NORCO,,MT,30,BLUBLK,3000.0,STOLEN,1586,"{'type': 'Point', 'coordinates': (-79.53154531, 43.58892605)}"
-1596,12419,GO-20161683357,B&E,2016-09-19T00:00:00,2016,September,Monday,19,263,5,2016-09-22T00:00:00,2016,September,Thursday,22,266,1,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,TREK,,OT,21,,2000.0,STOLEN,1587,"{'type': 'Point', 'coordinates': (-79.53154531, 43.58892605)}"
-1597,14672,GO-20179010634,THEFT UNDER - BICYCLE,2017-07-19T00:00:00,2017,July,Wednesday,19,200,6,2017-07-19T00:00:00,2017,July,Wednesday,19,200,20,D22,Toronto,19,Long Branch (19),Other Passenger Train Station,Transit,MA,ONE SPEED,RG,1,BLK,300.0,STOLEN,1588,"{'type': 'Point', 'coordinates': (-79.5427963, 43.59229523)}"
-1598,14747,GO-20173109508,B&E,2017-11-28T00:00:00,2017,November,Tuesday,28,332,5,2017-12-01T00:00:00,2017,December,Friday,1,335,14,D22,Toronto,19,Long Branch (19),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,SUPERSIX,RC,21,BLKWHI,3000.0,STOLEN,1589,"{'type': 'Point', 'coordinates': (-79.52249523, 43.5908)}"
-1599,14775,GO-2018797670,B&E W'INTENT,2018-05-04T00:00:00,2018,May,Friday,4,124,3,2018-05-04T00:00:00,2018,May,Friday,4,124,3,D22,Toronto,19,Long Branch (19),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CCM,MEGA OVERSIZE,MT,21,GRN,50.0,RECOVERED,1590,"{'type': 'Point', 'coordinates': (-79.52644293, 43.59696423)}"
-1600,14802,GO-20181088027,THEFT UNDER - BICYCLE,2018-06-13T00:00:00,2018,June,Wednesday,13,164,0,2018-06-15T00:00:00,2018,June,Friday,15,166,16,D22,Toronto,19,Long Branch (19),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,BOUNDRY TRAIL,MT,5,BLKRED,,STOLEN,1591,"{'type': 'Point', 'coordinates': (-79.52963322, 43.59228514)}"
-1601,14810,GO-20189020212,THEFT UNDER - BICYCLE,2018-06-25T00:00:00,2018,June,Monday,25,176,13,2018-06-25T00:00:00,2018,June,Monday,25,176,15,D22,Toronto,19,Long Branch (19),Ttc Light Rail Transit Station,Transit,RM,VERTEX 30,MT,27,WHI,1500.0,STOLEN,1592,"{'type': 'Point', 'coordinates': (-79.5427963, 43.59229523)}"
-1602,15004,GO-20169006466,THEFT UNDER - BICYCLE,2016-06-28T00:00:00,2016,June,Tuesday,28,180,7,2016-06-28T00:00:00,2016,June,Tuesday,28,180,10,D22,Toronto,19,Long Branch (19),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GT,KARAKORAM SPORT,MT,27,BLK,800.0,STOLEN,1593,"{'type': 'Point', 'coordinates': (-79.53317021, 43.58854798)}"
-1603,17382,GO-20209022006,THEFT UNDER,2020-08-31T00:00:00,2020,August,Monday,31,244,0,2020-09-01T00:00:00,2020,September,Tuesday,1,245,16,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,NO,,MT,12,,580.0,STOLEN,1594,"{'type': 'Point', 'coordinates': (-79.52757793, 43.59581439)}"
-1604,17383,GO-20209022006,THEFT UNDER,2020-08-31T00:00:00,2020,August,Monday,31,244,0,2020-09-01T00:00:00,2020,September,Tuesday,1,245,16,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,CA,,MT,12,,630.0,STOLEN,1595,"{'type': 'Point', 'coordinates': (-79.52757793, 43.59581439)}"
-1605,17549,GO-20199010325,THEFT UNDER,2019-03-26T00:00:00,2019,March,Tuesday,26,85,15,2019-04-01T00:00:00,2019,April,Monday,1,91,19,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,OT,,BM,1,TRQ,200.0,STOLEN,1596,"{'type': 'Point', 'coordinates': (-79.52314357, 43.59865942)}"
-1606,17588,GO-20199020576,THEFT UNDER,2019-06-04T00:00:00,2019,June,Tuesday,4,155,19,2019-06-30T00:00:00,2019,June,Sunday,30,181,13,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,NO,,MT,5,,2200.0,STOLEN,1597,"{'type': 'Point', 'coordinates': (-79.53397755, 43.59436142)}"
-1607,17624,GO-20199026250,THEFT UNDER,2019-08-14T00:00:00,2019,August,Wednesday,14,226,8,2019-08-14T00:00:00,2019,August,Wednesday,14,226,19,D22,Toronto,19,Long Branch (19),Go Station,Transit,TR,,RG,21,BLK,0.0,STOLEN,1598,"{'type': 'Point', 'coordinates': (-79.54491322, 43.59051582)}"
-1608,17645,GO-20199031995,THEFT UNDER,2019-09-28T00:00:00,2019,September,Saturday,28,271,21,2019-09-29T00:00:00,2019,September,Sunday,29,272,22,D22,Toronto,19,Long Branch (19),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,MARLIN 6,MT,1,BLK,860.0,STOLEN,1599,"{'type': 'Point', 'coordinates': (-79.53095335, 43.59505734)}"
-1609,17675,GO-20199040573,THEFT UNDER,2019-12-11T00:00:00,2019,December,Wednesday,11,345,7,2019-12-11T00:00:00,2019,December,Wednesday,11,345,17,D22,Toronto,19,Long Branch (19),Go Station,Transit,NO,SEARCH A TIAGRA,OT,18,BLK,2000.0,STOLEN,1600,"{'type': 'Point', 'coordinates': (-79.54491322, 43.59051582)}"
-1610,17716,GO-20171510572,THEFT UNDER - BICYCLE,2017-08-20T00:00:00,2017,August,Sunday,20,232,20,2017-08-21T00:00:00,2017,August,Monday,21,233,10,D22,Toronto,19,Long Branch (19),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,OT,0,GRY,,STOLEN,1601,"{'type': 'Point', 'coordinates': (-79.53095335, 43.59505734)}"
-1611,17723,GO-20171608938,THEFT UNDER - BICYCLE,2017-08-18T00:00:00,2017,August,Friday,18,230,17,2017-09-05T00:00:00,2017,September,Tuesday,5,248,17,D22,Toronto,19,Long Branch (19),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OPUS,,MT,21,GRY,550.0,STOLEN,1602,"{'type': 'Point', 'coordinates': (-79.5349571, 43.58908526)}"
-1612,17763,GO-20172057706,THEFT UNDER - BICYCLE,2017-11-14T00:00:00,2017,November,Tuesday,14,318,0,2017-11-14T00:00:00,2017,November,Tuesday,14,318,0,D22,Toronto,19,Long Branch (19),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,OT,0,,,STOLEN,1603,"{'type': 'Point', 'coordinates': (-79.52807305, 43.59020393)}"
-1613,17824,GO-20189017873,THEFT UNDER - BICYCLE,2018-06-04T00:00:00,2018,June,Monday,4,155,18,2018-06-08T00:00:00,2018,June,Friday,8,159,12,D22,Toronto,19,Long Branch (19),Go Station,Transit,TR,,OT,18,GRY,500.0,STOLEN,1604,"{'type': 'Point', 'coordinates': (-79.54491322, 43.59051582)}"
-1614,17825,GO-20181047520,THEFT UNDER - BICYCLE,2018-06-09T00:00:00,2018,June,Saturday,9,160,18,2018-06-09T00:00:00,2018,June,Saturday,9,160,20,D22,Toronto,19,Long Branch (19),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,ASCOTT,,MT,11,WHI,2000.0,STOLEN,1605,"{'type': 'Point', 'coordinates': (-79.53350756, 43.59335987)}"
-1615,17831,GO-20189018778,THEFT UNDER - BICYCLE,2018-06-14T00:00:00,2018,June,Thursday,14,165,20,2018-06-15T00:00:00,2018,June,Friday,15,166,11,D22,Toronto,19,Long Branch (19),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CC,,OT,21,BLK,500.0,STOLEN,1606,"{'type': 'Point', 'coordinates': (-79.52280387, 43.59782434)}"
-1616,17908,GO-20181706692,THEFT UNDER - BICYCLE,2018-09-14T00:00:00,2018,September,Friday,14,257,17,2018-09-14T00:00:00,2018,September,Friday,14,257,19,D22,Toronto,19,Long Branch (19),"Open Areas (Lakes, Parks, Rivers)",Outside,MARIN OR MARINO,BELVIDERE,OT,21,BLK,1000.0,STOLEN,1607,"{'type': 'Point', 'coordinates': (-79.5418279, 43.58734972)}"
-1617,17947,GO-20149006944,THEFT UNDER,2014-09-13T00:00:00,2014,September,Saturday,13,256,19,2014-09-16T00:00:00,2014,September,Tuesday,16,259,19,D22,Toronto,19,Long Branch (19),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,18,,,STOLEN,1608,"{'type': 'Point', 'coordinates': (-79.52963322, 43.59228514)}"
-1618,17964,GO-2015833876,THEFT FROM MOTOR VEHICLE OVER,2015-05-18T00:00:00,2015,May,Monday,18,138,0,2015-05-19T00:00:00,2015,May,Tuesday,19,139,12,D22,Toronto,19,Long Branch (19),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CERVELO,S5,RC,21,BLK,7500.0,STOLEN,1609,"{'type': 'Point', 'coordinates': (-79.53201384, 43.59747371)}"
-1619,18002,GO-20159009124,THEFT UNDER,2015-10-28T00:00:00,2015,October,Wednesday,28,301,6,2015-10-28T00:00:00,2015,October,Wednesday,28,301,16,D22,Toronto,19,Long Branch (19),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,TRI CROSS,RC,8,BLK,1200.0,STOLEN,1610,"{'type': 'Point', 'coordinates': (-79.53236154, 43.594736530000006)}"
-1620,21099,GO-20199040210,THEFT UNDER,2019-11-10T00:00:00,2019,November,Sunday,10,314,17,2019-12-09T00:00:00,2019,December,Monday,9,343,11,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,TR,4500,MT,21,GRY,250.0,STOLEN,1611,"{'type': 'Point', 'coordinates': (-79.54491322, 43.59051582)}"
-1621,21251,GO-20189005692,THEFT UNDER - BICYCLE,2018-02-19T00:00:00,2018,February,Monday,19,50,2,2018-02-22T00:00:00,2018,February,Thursday,22,53,16,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,RM,,RC,3,,600.0,STOLEN,1612,"{'type': 'Point', 'coordinates': (-79.53936354, 43.59310005)}"
-1622,21252,GO-20189005692,THEFT UNDER - BICYCLE,2018-02-19T00:00:00,2018,February,Monday,19,50,2,2018-02-22T00:00:00,2018,February,Thursday,22,53,16,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,RM,,MT,3,BLK,700.0,STOLEN,1613,"{'type': 'Point', 'coordinates': (-79.53936354, 43.59310005)}"
-1623,21262,GO-20189013672,THEFT UNDER,2018-05-01T00:00:00,2018,May,Tuesday,1,121,5,2018-05-03T00:00:00,2018,May,Thursday,3,123,12,D22,Toronto,19,Long Branch (19),Go Station,Transit,SC,,RC,10,BLK,0.0,STOLEN,1614,"{'type': 'Point', 'coordinates': (-79.54491322, 43.59051582)}"
-1624,21298,GO-20189019990,THEFT UNDER - BICYCLE,2018-06-23T00:00:00,2018,June,Saturday,23,174,17,2018-06-23T00:00:00,2018,June,Saturday,23,174,21,D22,Toronto,19,Long Branch (19),Convenience Stores,Commercial,CC,CCM APEX,MT,24,RED,720.0,STOLEN,1615,"{'type': 'Point', 'coordinates': (-79.53953115, 43.59336618)}"
-1625,21299,GO-20189020142,THEFT UNDER - BICYCLE,2018-06-18T00:00:00,2018,June,Monday,18,169,9,2018-06-25T00:00:00,2018,June,Monday,25,176,12,D22,Toronto,19,Long Branch (19),Go Station,Transit,GT,,MT,18,BLKONG,0.0,STOLEN,1616,"{'type': 'Point', 'coordinates': (-79.54491322, 43.59051582)}"
-1626,21312,GO-20189021929,THEFT UNDER,2018-07-07T00:00:00,2018,July,Saturday,7,188,6,2018-07-10T00:00:00,2018,July,Tuesday,10,191,18,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,FJ,2 WHEELER,RG,1,,200.0,STOLEN,1617,"{'type': 'Point', 'coordinates': (-79.52280387, 43.59782434)}"
-1627,21320,GO-20189023423,THEFT UNDER - BICYCLE,2018-07-20T00:00:00,2018,July,Friday,20,201,14,2018-07-22T00:00:00,2018,July,Sunday,22,203,14,D22,Toronto,19,Long Branch (19),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,RG,10,LGR,1500.0,STOLEN,1618,"{'type': 'Point', 'coordinates': (-79.53616689, 43.5888304)}"
-1628,22118,GO-20169007890,THEFT UNDER - BICYCLE,2016-07-28T00:00:00,2016,July,Thursday,28,210,18,2016-07-28T00:00:00,2016,July,Thursday,28,210,19,D22,Toronto,19,Long Branch (19),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,RG,8,,0.0,STOLEN,1619,"{'type': 'Point', 'coordinates': (-79.541594, 43.59385442)}"
-1629,22139,GO-20179002920,THEFT UNDER - BICYCLE,2017-03-03T00:00:00,2017,March,Friday,3,62,22,2017-03-07T00:00:00,2017,March,Tuesday,7,66,21,D22,Toronto,19,Long Branch (19),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,3900,MT,24,BLK,0.0,STOLEN,1620,"{'type': 'Point', 'coordinates': (-79.53105518, 43.59180861000001)}"
-1630,23849,GO-20209025786,THEFT UNDER,2020-10-07T00:00:00,2020,October,Wednesday,7,281,18,2020-10-08T00:00:00,2020,October,Thursday,8,282,19,D22,Toronto,19,Long Branch (19),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,2019 INDIE DROP,OT,16,BLK,1500.0,STOLEN,1621,"{'type': 'Point', 'coordinates': (-79.5405629, 43.5928404)}"
-1631,24004,GO-20182254716,THEFT UNDER,2018-12-07T00:00:00,2018,December,Friday,7,341,5,2018-12-08T00:00:00,2018,December,Saturday,8,342,15,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,EMMO,,EL,60,WHIOTH,2000.0,STOLEN,1622,"{'type': 'Point', 'coordinates': (-79.53154531, 43.58892605)}"
-1632,24111,GO-20191971381,THEFT OF MOTOR VEHICLE,2019-10-11T00:00:00,2019,October,Friday,11,284,20,2019-10-12T00:00:00,2019,October,Saturday,12,285,13,D22,Toronto,19,Long Branch (19),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,FUSE COMP6 FATT,RG,0,OTH,,UNKNOWN,1623,"{'type': 'Point', 'coordinates': (-79.54135252, 43.59171655)}"
-1633,24213,GO-20179012745,THEFT UNDER - BICYCLE,2017-07-04T00:00:00,2017,July,Tuesday,4,185,9,2017-08-19T00:00:00,2017,August,Saturday,19,231,9,D22,Toronto,19,Long Branch (19),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,ROAM,OT,21,BLK,900.0,STOLEN,1624,"{'type': 'Point', 'coordinates': (-79.52904825, 43.59106129)}"
-1634,24339,GO-20189022364,THEFT UNDER - BICYCLE,2018-07-13T00:00:00,2018,July,Friday,13,194,8,2018-07-13T00:00:00,2018,July,Friday,13,194,20,D22,Toronto,19,Long Branch (19),Go Station,Transit,OT,,MT,18,GRY,370.0,STOLEN,1625,"{'type': 'Point', 'coordinates': (-79.54491322, 43.59051582)}"
-1635,24420,GO-20142243370,THEFT UNDER,2014-06-07T00:00:00,2014,June,Saturday,7,158,22,2014-06-09T00:00:00,2014,June,Monday,9,160,18,D22,Toronto,19,Long Branch (19),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FORTRESS,1700,SC,1,BLK,4300.0,STOLEN,1626,"{'type': 'Point', 'coordinates': (-79.52904825, 43.59106129)}"
-1636,24440,GO-20149008610,THEFT UNDER,2014-12-07T00:00:00,2014,December,Sunday,7,341,3,2014-12-07T00:00:00,2014,December,Sunday,7,341,19,D22,Toronto,19,Long Branch (19),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SPECIALIZED,MT,18,SIL,900.0,STOLEN,1627,"{'type': 'Point', 'coordinates': (-79.53265608, 43.59142483)}"
-1637,17948,GO-20143033153,THEFT UNDER,2014-10-03T00:00:00,2014,October,Friday,3,276,0,2014-10-03T00:00:00,2014,October,Friday,3,276,9,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,,EL,1,BGEBLK,600.0,STOLEN,1628,"{'type': 'Point', 'coordinates': (-79.499889, 43.61990605)}"
-1638,17949,GO-20143040079,B&E,2014-10-03T00:00:00,2014,October,Friday,3,276,11,2014-10-04T00:00:00,2014,October,Saturday,4,277,10,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MARIN OR MARINO,BELVEDERE,RG,18,BLKSIL,1000.0,STOLEN,1629,"{'type': 'Point', 'coordinates': (-79.48926964, 43.62082685)}"
-1639,6868,GO-20209019398,THEFT UNDER - BICYCLE,2020-08-01T00:00:00,2020,August,Saturday,1,214,12,2020-08-05T00:00:00,2020,August,Wednesday,5,218,9,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,CC,,RG,7,PLE,400.0,STOLEN,1630,"{'type': 'Point', 'coordinates': (-79.45239005, 43.71432793)}"
-1640,7016,GO-20201569403,THEFT UNDER - BICYCLE,2020-08-20T00:00:00,2020,August,Thursday,20,233,20,2020-08-21T00:00:00,2020,August,Friday,21,234,8,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CCM,UNKNOWN,MT,12,BLU,800.0,STOLEN,1631,"{'type': 'Point', 'coordinates': (-79.44893304, 43.71749643)}"
-1641,21798,GO-20149003738,THEFT UNDER,2014-06-01T00:00:00,2014,June,Sunday,1,152,2,2014-06-01T00:00:00,2014,June,Sunday,1,152,16,D12,Toronto,23,Pelmo Park-Humberlea (23),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,RG,5,,,STOLEN,1632,"{'type': 'Point', 'coordinates': (-79.51228911, 43.70869911)}"
-1642,7604,GO-20209029003,THEFT UNDER - BICYCLE,2020-11-04T00:00:00,2020,November,Wednesday,4,309,1,2020-11-08T00:00:00,2020,November,Sunday,8,313,14,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,10,YEL,500.0,STOLEN,1633,"{'type': 'Point', 'coordinates': (-79.45515990000001, 43.71615642)}"
-1643,24756,GO-20151650956,THEFT UNDER,2015-09-23T00:00:00,2015,September,Wednesday,23,266,20,2015-09-24T00:00:00,2015,September,Thursday,24,267,10,D12,Toronto,23,Pelmo Park-Humberlea (23),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,BMX,,BM,1,GRN,500.0,STOLEN,1634,"{'type': 'Point', 'coordinates': (-79.53456277, 43.70968634)}"
-1644,24527,GO-20169006978,THEFT UNDER,2016-07-06T00:00:00,2016,July,Wednesday,6,188,16,2016-07-10T00:00:00,2016,July,Sunday,10,192,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE 1 (LARGE,OT,27,GRY,650.0,STOLEN,1635,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-1645,7946,GO-20142117947,B&E,2014-05-19T00:00:00,2014,May,Monday,19,139,9,2014-05-20T00:00:00,2014,May,Tuesday,20,140,22,D13,Toronto,31,Yorkdale-Glen Park (31),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,XTC,MT,27,BLUWHI,2300.0,STOLEN,1636,"{'type': 'Point', 'coordinates': (-79.44605699, 43.70669677)}"
-1646,8215,GO-20142333774,THEFT UNDER,2014-06-20T00:00:00,2014,June,Friday,20,171,16,2014-06-20T00:00:00,2014,June,Friday,20,171,21,D32,Toronto,31,Yorkdale-Glen Park (31),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,JAMIS,X-2 TRAILER,MT,3,WHIGRN,,STOLEN,1637,"{'type': 'Point', 'coordinates': (-79.45130961, 43.72364999)}"
-1647,8510,GO-20142557951,THEFT UNDER,2014-07-23T00:00:00,2014,July,Wednesday,23,204,14,2014-07-23T00:00:00,2014,July,Wednesday,23,204,19,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,GIANT,ESCAPE,OT,18,BLK,700.0,STOLEN,1638,"{'type': 'Point', 'coordinates': (-79.44893304, 43.71749643)}"
-1648,8603,GO-20142679373,THEFT UNDER,2014-08-05T00:00:00,2014,August,Tuesday,5,217,22,2014-08-11T00:00:00,2014,August,Monday,11,223,9,D13,Toronto,31,Yorkdale-Glen Park (31),"Private Property Structure (Pool, Shed, Detached Garage)",Other,DEVINCI,BRISTOL,MT,18,,600.0,STOLEN,1639,"{'type': 'Point', 'coordinates': (-79.44936757, 43.70421142)}"
-1649,8704,GO-20149006159,THEFT UNDER,2014-08-21T00:00:00,2014,August,Thursday,21,233,3,2014-08-21T00:00:00,2014,August,Thursday,21,233,7,D13,Toronto,31,Yorkdale-Glen Park (31),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RC,24,BLU,700.0,STOLEN,1640,"{'type': 'Point', 'coordinates': (-79.4511083, 43.71123013)}"
-1650,8807,GO-20142846700,THEFT UNDER,2014-08-18T00:00:00,2014,August,Monday,18,230,0,2014-09-05T00:00:00,2014,September,Friday,5,248,8,D13,Toronto,31,Yorkdale-Glen Park (31),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,,RC,10,BLU,1153.0,STOLEN,1641,"{'type': 'Point', 'coordinates': (-79.44969677, 43.70773639)}"
-1651,8808,GO-20142846700,THEFT UNDER,2014-08-18T00:00:00,2014,August,Monday,18,230,0,2014-09-05T00:00:00,2014,September,Friday,5,248,8,D13,Toronto,31,Yorkdale-Glen Park (31),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,,RG,10,ONG,400.0,STOLEN,1642,"{'type': 'Point', 'coordinates': (-79.44969677, 43.70773639)}"
-1652,9482,GO-2015696198,THEFT UNDER,2015-04-26T00:00:00,2015,April,Sunday,26,116,14,2015-04-27T00:00:00,2015,April,Monday,27,117,12,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KONA,CYCLE CROSS,RC,18,GRY,1200.0,STOLEN,1643,"{'type': 'Point', 'coordinates': (-79.45130961, 43.72364999)}"
-1653,9494,GO-2015709297,THEFT UNDER,2015-04-29T00:00:00,2015,April,Wednesday,29,119,7,2015-04-29T00:00:00,2015,April,Wednesday,29,119,14,D32,Toronto,31,Yorkdale-Glen Park (31),"Open Areas (Lakes, Parks, Rivers)",Outside,SUPERCYCLE,MOUNTAIN,MT,18,BLK,350.0,STOLEN,1644,"{'type': 'Point', 'coordinates': (-79.44598667, 43.72478043)}"
-1654,9521,GO-2015743003,THEFT UNDER,2015-05-04T00:00:00,2015,May,Monday,4,124,22,2015-05-04T00:00:00,2015,May,Monday,4,124,22,D13,Toronto,31,Yorkdale-Glen Park (31),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,BREEZE,MT,18,BLU,150.0,RECOVERED,1645,"{'type': 'Point', 'coordinates': (-79.44828672, 43.7062052)}"
-1655,9669,GO-2015880135,THEFT UNDER,2015-05-24T00:00:00,2015,May,Sunday,24,144,17,2015-05-26T00:00:00,2015,May,Tuesday,26,146,19,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,UNKNOWN,OT,0,RED,200.0,STOLEN,1646,"{'type': 'Point', 'coordinates': (-79.44893304, 43.71749643)}"
-1656,9889,GO-20151075171,THEFT UNDER,2015-06-25T00:00:00,2015,June,Thursday,25,176,7,2015-06-26T00:00:00,2015,June,Friday,26,177,9,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SUPERCYCLE,HYBRID,OT,21,PLE,150.0,STOLEN,1647,"{'type': 'Point', 'coordinates': (-79.44893304, 43.71749643)}"
-1657,10274,GO-20159005873,THEFT UNDER,2015-08-16T00:00:00,2015,August,Sunday,16,228,15,2015-08-17T00:00:00,2015,August,Monday,17,229,10,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,MA,HYBRID,MT,12,,0.0,STOLEN,1648,"{'type': 'Point', 'coordinates': (-79.44861224, 43.72328355)}"
-1658,10416,GO-20159006849,THEFT UNDER,2015-09-07T00:00:00,2015,September,Monday,7,250,2,2015-09-07T00:00:00,2015,September,Monday,7,250,15,D13,Toronto,31,Yorkdale-Glen Park (31),"Single Home, House (Attach Garage, Cottage, Mobile)",House,,,MT,21,WHI,350.0,STOLEN,1649,"{'type': 'Point', 'coordinates': (-79.46112625, 43.70924828)}"
-1659,10417,GO-20159006849,THEFT UNDER,2015-09-07T00:00:00,2015,September,Monday,7,250,2,2015-09-07T00:00:00,2015,September,Monday,7,250,15,D13,Toronto,31,Yorkdale-Glen Park (31),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,BOULDER SE,MT,21,BLK,650.0,STOLEN,1650,"{'type': 'Point', 'coordinates': (-79.46112625, 43.70924828)}"
-1660,10418,GO-20159006849,THEFT UNDER,2015-09-07T00:00:00,2015,September,Monday,7,250,2,2015-09-07T00:00:00,2015,September,Monday,7,250,15,D13,Toronto,31,Yorkdale-Glen Park (31),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,,MT,21,DGR,400.0,STOLEN,1651,"{'type': 'Point', 'coordinates': (-79.46112625, 43.70924828)}"
-1661,17982,GO-20151270823,THEFT UNDER,2015-07-19T00:00:00,2015,July,Sunday,19,200,9,2015-07-25T00:00:00,2015,July,Saturday,25,206,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GIANT,,OT,30,BLK,900.0,STOLEN,1652,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}"
-1662,10419,GO-20159006849,THEFT UNDER,2015-09-07T00:00:00,2015,September,Monday,7,250,2,2015-09-07T00:00:00,2015,September,Monday,7,250,15,D13,Toronto,31,Yorkdale-Glen Park (31),"Single Home, House (Attach Garage, Cottage, Mobile)",House,IN,,MT,21,GRY,400.0,STOLEN,1653,"{'type': 'Point', 'coordinates': (-79.46112625, 43.70924828)}"
-1663,10907,GO-20169000076,THEFT UNDER,2015-12-18T00:00:00,2015,December,Friday,18,352,21,2016-01-03T00:00:00,2016,January,Sunday,3,3,17,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,OT,KRYPTON,RC,24,BLK,2900.0,STOLEN,1654,"{'type': 'Point', 'coordinates': (-79.45239005, 43.71432793)}"
-1664,11423,GO-20161012016,PROPERTY - FOUND,2016-06-08T00:00:00,2016,June,Wednesday,8,160,16,2016-06-08T00:00:00,2016,June,Wednesday,8,160,16,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,PALADIN,MT,21,BLK,200.0,STOLEN,1655,"{'type': 'Point', 'coordinates': (-79.45130961, 43.72364999)}"
-1665,11500,GO-20169005614,THEFT UNDER,2016-06-10T00:00:00,2016,June,Friday,10,162,16,2016-06-11T00:00:00,2016,June,Saturday,11,163,11,D13,Toronto,31,Yorkdale-Glen Park (31),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,QUICK4,OT,27,BLU,700.0,STOLEN,1656,"{'type': 'Point', 'coordinates': (-79.44304121, 43.70719406)}"
-1666,11825,GO-20169007299,THEFT UNDER,2016-07-13T00:00:00,2016,July,Wednesday,13,195,16,2016-07-17T00:00:00,2016,July,Sunday,17,199,15,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,T1000,OT,21,GRY,406.0,STOLEN,1657,"{'type': 'Point', 'coordinates': (-79.44893304, 43.71749643)}"
-1667,12009,GO-20161357332,THEFT UNDER,2016-04-01T00:00:00,2016,April,Friday,1,92,0,2016-08-02T00:00:00,2016,August,Tuesday,2,215,14,D32,Toronto,31,Yorkdale-Glen Park (31),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,3-WHEELED,OT,1,BLUWHI,,STOLEN,1658,"{'type': 'Point', 'coordinates': (-79.46320163, 43.722698)}"
-1668,12025,GO-20169008384,THEFT UNDER - BICYCLE,2016-08-06T00:00:00,2016,August,Saturday,6,219,21,2016-08-08T00:00:00,2016,August,Monday,8,221,14,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,TR,7.2 FX WOMEN'S,RG,8,WHI,800.0,STOLEN,1659,"{'type': 'Point', 'coordinates': (-79.45239005, 43.71432793)}"
-1669,12208,GO-20169009530,THEFT UNDER - BICYCLE,2016-08-26T00:00:00,2016,August,Friday,26,239,12,2016-08-26T00:00:00,2016,August,Friday,26,239,15,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SU,,MT,21,BLK,150.0,STOLEN,1660,"{'type': 'Point', 'coordinates': (-79.44893304, 43.71749643)}"
-1670,12509,GO-20169009530,THEFT UNDER - BICYCLE,2016-08-26T00:00:00,2016,August,Friday,26,239,12,2016-08-26T00:00:00,2016,August,Friday,26,239,15,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SP,SPORTEK,MT,21,BLK,150.0,STOLEN,1661,"{'type': 'Point', 'coordinates': (-79.44893304, 43.71749643)}"
-1671,2880,GO-20189022980,THEFT UNDER - BICYCLE,2018-07-01T00:00:00,2018,July,Sunday,1,182,0,2018-07-18T00:00:00,2018,July,Wednesday,18,199,21,D22,Toronto,18,New Toronto (18),"Apartment (Rooming House, Condo)",Apartment,GF,MARLIN,MT,18,YEL,999.0,STOLEN,1832,"{'type': 'Point', 'coordinates': (-79.52415576, 43.6011476)}"
-1672,13527,GO-20191858912,THEFT UNDER - BICYCLE,2019-09-26T00:00:00,2019,September,Thursday,26,269,19,2019-09-28T00:00:00,2019,September,Saturday,28,271,20,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CCM,SUPERCYCLE,MT,21,BLU,500.0,STOLEN,1662,"{'type': 'Point', 'coordinates': (-79.44893304, 43.71749643)}"
-1673,13562,GO-20209018081,THEFT UNDER - BICYCLE,2020-07-19T00:00:00,2020,July,Sunday,19,201,19,2020-07-20T00:00:00,2020,July,Monday,20,202,20,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,18,,800.0,STOLEN,1663,"{'type': 'Point', 'coordinates': (-79.45662421, 43.72272571)}"
-1674,13565,GO-20209018474,THEFT UNDER - BICYCLE,2020-06-30T00:00:00,2020,June,Tuesday,30,182,18,2020-07-24T00:00:00,2020,July,Friday,24,206,16,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,6,BLU,100.0,STOLEN,1664,"{'type': 'Point', 'coordinates': (-79.4547113, 43.71408738)}"
-1675,13572,GO-20201450695,THEFT UNDER - BICYCLE,2020-07-29T00:00:00,2020,July,Wednesday,29,211,1,2020-08-05T00:00:00,2020,August,Wednesday,5,218,14,D32,Toronto,31,Yorkdale-Glen Park (31),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,SANCTUARY,TO,7,PLEWHI,185.0,STOLEN,1665,"{'type': 'Point', 'coordinates': (-79.44932805, 43.72085817)}"
-1676,13578,GO-20209020790,THEFT UNDER - BICYCLE,2020-08-20T00:00:00,2020,August,Thursday,20,233,20,2020-08-20T00:00:00,2020,August,Thursday,20,233,22,D32,Toronto,31,Yorkdale-Glen Park (31),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,,MT,21,,800.0,STOLEN,1666,"{'type': 'Point', 'coordinates': (-79.44893304, 43.71749643)}"
-1677,13595,GO-20209028816,THEFT UNDER - BICYCLE,2020-11-04T00:00:00,2020,November,Wednesday,4,309,6,2020-11-06T00:00:00,2020,November,Friday,6,311,11,D32,Toronto,31,Yorkdale-Glen Park (31),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CC,,MT,21,BLK,500.0,STOLEN,1667,"{'type': 'Point', 'coordinates': (-79.45515990000001, 43.71615642)}"
-1678,13598,GO-20209030514,THEFT UNDER - BICYCLE,2020-11-11T00:00:00,2020,November,Wednesday,11,316,0,2020-11-25T00:00:00,2020,November,Wednesday,25,330,1,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,SC,GTX,OT,20,BLK,500.0,STOLEN,1668,"{'type': 'Point', 'coordinates': (-79.45662421, 43.72272571)}"
-1679,13600,GO-20209032353,THEFT UNDER - BICYCLE,2020-07-10T00:00:00,2020,July,Friday,10,192,14,2020-12-18T00:00:00,2020,December,Friday,18,353,14,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM 1,MT,10,,700.0,STOLEN,1669,"{'type': 'Point', 'coordinates': (-79.4547113, 43.71408738)}"
-1680,14794,GO-20189017548,THEFT UNDER - BICYCLE,2018-05-27T00:00:00,2018,May,Sunday,27,147,15,2018-06-05T00:00:00,2018,June,Tuesday,5,156,22,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,SC,700C,OT,14,WHI,700.0,STOLEN,1670,"{'type': 'Point', 'coordinates': (-79.4547113, 43.71408738)}"
-1681,14877,GO-20209009988,THEFT UNDER,2020-03-26T00:00:00,2020,March,Thursday,26,86,23,2020-03-27T00:00:00,2020,March,Friday,27,87,18,D13,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM 2,RG,9,BLK,669.0,STOLEN,1671,"{'type': 'Point', 'coordinates': (-79.45394457, 43.71066174)}"
-1682,15347,GO-20149005758,THEFT UNDER,2014-08-08T00:00:00,2014,August,Friday,8,220,21,2014-08-09T00:00:00,2014,August,Saturday,9,221,12,D13,Toronto,31,Yorkdale-Glen Park (31),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,"HARD ROCK""""",MT,21,BLK,565.0,STOLEN,1672,"{'type': 'Point', 'coordinates': (-79.44768793, 43.711050060000005)}"
-1683,16736,GO-2019565074,B&E,2019-03-29T00:00:00,2019,March,Friday,29,88,4,2019-03-29T00:00:00,2019,March,Friday,29,88,17,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SANTA CRUZ,,RC,11,TAN,5900.0,STOLEN,1673,"{'type': 'Point', 'coordinates': (-79.46261751, 43.71695029)}"
-1684,16737,GO-2019565074,B&E,2019-03-29T00:00:00,2019,March,Friday,29,88,4,2019-03-29T00:00:00,2019,March,Friday,29,88,17,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CERVELO,,OT,11,GRN,500.0,STOLEN,1674,"{'type': 'Point', 'coordinates': (-79.46261751, 43.71695029)}"
-1685,16738,GO-2019565074,B&E,2019-03-29T00:00:00,2019,March,Friday,29,88,4,2019-03-29T00:00:00,2019,March,Friday,29,88,17,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CERVELO,,OT,11,,500.0,STOLEN,1675,"{'type': 'Point', 'coordinates': (-79.46261751, 43.71695029)}"
-1686,16739,GO-2019565074,B&E,2019-03-29T00:00:00,2019,March,Friday,29,88,4,2019-03-29T00:00:00,2019,March,Friday,29,88,17,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CERVELO,,RC,11,BLK,10000.0,STOLEN,1676,"{'type': 'Point', 'coordinates': (-79.46261751, 43.71695029)}"
-1687,16740,GO-2019565074,B&E,2019-03-29T00:00:00,2019,March,Friday,29,88,4,2019-03-29T00:00:00,2019,March,Friday,29,88,17,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CERVELO,,RC,11,BLK,5000.0,STOLEN,1677,"{'type': 'Point', 'coordinates': (-79.46261751, 43.71695029)}"
-1688,16741,GO-2019565074,B&E,2019-03-29T00:00:00,2019,March,Friday,29,88,4,2019-03-29T00:00:00,2019,March,Friday,29,88,17,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CERVELO,,RC,11,BLKWHI,8500.0,STOLEN,1678,"{'type': 'Point', 'coordinates': (-79.46261751, 43.71695029)}"
-1689,16757,GO-20199015816,THEFT UNDER,2019-05-21T00:00:00,2019,May,Tuesday,21,141,17,2019-05-21T00:00:00,2019,May,Tuesday,21,141,19,D32,Toronto,31,Yorkdale-Glen Park (31),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,RC,25,YEL,0.0,STOLEN,1679,"{'type': 'Point', 'coordinates': (-79.44893304, 43.71749643)}"
-1690,16766,GO-20199018284,THEFT UNDER,2019-06-11T00:00:00,2019,June,Tuesday,11,162,13,2019-06-12T00:00:00,2019,June,Wednesday,12,163,11,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,NO,2017,MT,11,TRQ,2000.0,STOLEN,1680,"{'type': 'Point', 'coordinates': (-79.4547113, 43.71408738)}"
-1691,16847,GO-20209025675,THEFT UNDER - BICYCLE,2020-10-05T00:00:00,2020,October,Monday,5,279,12,2020-10-07T00:00:00,2020,October,Wednesday,7,281,12,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,KO,KONA DR.DEW,TO,15,BLU,1000.0,STOLEN,1681,"{'type': 'Point', 'coordinates': (-79.44861224, 43.72328355)}"
-1692,16856,GO-20209029323,THEFT UNDER - BICYCLE,2020-11-03T00:00:00,2020,November,Tuesday,3,308,16,2020-11-11T00:00:00,2020,November,Wednesday,11,316,19,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,OT,"27.5"""" MEN'S CAR",MT,9,BLK,800.0,STOLEN,1682,"{'type': 'Point', 'coordinates': (-79.45239005, 43.71432793)}"
-1693,17717,GO-20171558280,PROPERTY - FOUND,2017-07-14T00:00:00,2017,July,Friday,14,195,21,2017-08-28T00:00:00,2017,August,Monday,28,240,14,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,IRON HORSE,,MT,18,BLK,,UNKNOWN,1683,"{'type': 'Point', 'coordinates': (-79.45130961, 43.72364999)}"
-1694,17741,GO-20179015653,THEFT UNDER - BICYCLE,2017-09-24T00:00:00,2017,September,Sunday,24,267,1,2017-09-24T00:00:00,2017,September,Sunday,24,267,20,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,SU,ROAD CYCLE,RC,14,BLU,300.0,STOLEN,1684,"{'type': 'Point', 'coordinates': (-79.45239005, 43.71432793)}"
-1695,17988,GO-20151465642,THEFT UNDER,2015-08-25T00:00:00,2015,August,Tuesday,25,237,8,2015-08-25T00:00:00,2015,August,Tuesday,25,237,19,D32,Toronto,31,Yorkdale-Glen Park (31),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,,OT,24,BLUWHI,500.0,STOLEN,1685,"{'type': 'Point', 'coordinates': (-79.44943067, 43.71497087)}"
-1696,18064,GO-20162028312,THEFT UNDER - BICYCLE,2016-11-12T00:00:00,2016,November,Saturday,12,317,6,2016-11-16T00:00:00,2016,November,Wednesday,16,321,19,D32,Toronto,31,Yorkdale-Glen Park (31),Ttc Subway Station,Transit,CCM,,MT,18,YEL,200.0,STOLEN,1686,"{'type': 'Point', 'coordinates': (-79.44598667, 43.72478043)}"
-1697,18221,GO-20179011022,THEFT UNDER - BICYCLE,2017-07-25T00:00:00,2017,July,Tuesday,25,206,15,2017-07-25T00:00:00,2017,July,Tuesday,25,206,21,D13,Toronto,31,Yorkdale-Glen Park (31),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,AMS MONACO HYBR,RG,21,OTH,0.0,STOLEN,1687,"{'type': 'Point', 'coordinates': (-79.45823827, 43.71276392)}"
-1698,18256,GO-20199025140,THEFT UNDER,2019-08-06T00:00:00,2019,August,Tuesday,6,218,16,2019-08-06T00:00:00,2019,August,Tuesday,6,218,18,D13,Toronto,31,Yorkdale-Glen Park (31),Bar / Restaurant,Commercial,OT,TRAIL X,MT,8,BLK,550.0,STOLEN,1688,"{'type': 'Point', 'coordinates': (-79.45380968, 43.70998988)}"
-1699,18414,GO-201595477,PROPERTY - FOUND,2015-06-07T00:00:00,2015,June,Sunday,7,158,12,2015-06-07T00:00:00,2015,June,Sunday,7,158,19,D13,Toronto,31,Yorkdale-Glen Park (31),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BIANCHI,MAIN STREET,MT,10,BLK,,UNKNOWN,1689,"{'type': 'Point', 'coordinates': (-79.45551775, 43.70672494)}"
-1700,20002,GO-20189041720,THEFT UNDER - BICYCLE,2018-12-06T00:00:00,2018,December,Thursday,6,340,21,2018-12-11T00:00:00,2018,December,Tuesday,11,345,22,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,CC,CCM APEX WOMENS,MT,24,BLK,640.0,STOLEN,1690,"{'type': 'Point', 'coordinates': (-79.4547113, 43.71408738)}"
-1701,20036,GO-20191086248,THEFT UNDER - BICYCLE,2019-06-10T00:00:00,2019,June,Monday,10,161,14,2019-06-14T00:00:00,2019,June,Friday,14,165,18,D32,Toronto,31,Yorkdale-Glen Park (31),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,SC1800,RG,12,SIL,125.0,STOLEN,1691,"{'type': 'Point', 'coordinates': (-79.45239005, 43.71432793)}"
-1702,20037,GO-20191086248,THEFT UNDER - BICYCLE,2019-06-10T00:00:00,2019,June,Monday,10,161,14,2019-06-14T00:00:00,2019,June,Friday,14,165,18,D32,Toronto,31,Yorkdale-Glen Park (31),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,VICTORY DYNO,RG,12,BLU,125.0,STOLEN,1692,"{'type': 'Point', 'coordinates': (-79.45239005, 43.71432793)}"
-1703,20047,GO-20199020565,THEFT UNDER - BICYCLE,2019-06-28T00:00:00,2019,June,Friday,28,179,17,2019-06-30T00:00:00,2019,June,Sunday,30,181,11,D32,Toronto,31,Yorkdale-Glen Park (31),Ttc Subway Station,Transit,OT,,OT,21,RED,1100.0,STOLEN,1693,"{'type': 'Point', 'coordinates': (-79.45130961, 43.72364999)}"
-1704,20097,GO-20201211913,THEFT UNDER - BICYCLE,2020-06-17T00:00:00,2020,June,Wednesday,17,169,16,2020-07-01T00:00:00,2020,July,Wednesday,1,183,14,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,OTHER,,RG,6,BRNBLK,600.0,STOLEN,1694,"{'type': 'Point', 'coordinates': (-79.45239005, 43.71432793)}"
-1705,20110,GO-20209019155,THEFT UNDER - BICYCLE,2020-08-01T00:00:00,2020,August,Saturday,1,214,11,2020-08-01T00:00:00,2020,August,Saturday,1,214,16,D32,Toronto,31,Yorkdale-Glen Park (31),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,,RG,21,BLK,400.0,STOLEN,1695,"{'type': 'Point', 'coordinates': (-79.46167968, 43.71918674)}"
-1706,21263,GO-20189013767,THEFT UNDER - BICYCLE,2018-04-27T00:00:00,2018,April,Friday,27,117,17,2018-05-04T00:00:00,2018,May,Friday,4,124,10,D32,Toronto,31,Yorkdale-Glen Park (31),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,IN,PLATEAU,MT,21,TAN,250.0,STOLEN,1696,"{'type': 'Point', 'coordinates': (-79.45239005, 43.71432793)}"
-1707,21308,GO-20189021674,THEFT UNDER - BICYCLE,2018-07-07T00:00:00,2018,July,Saturday,7,188,22,2018-07-09T00:00:00,2018,July,Monday,9,190,10,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,OT,SCR-1,RC,18,BLK,300.0,STOLEN,1697,"{'type': 'Point', 'coordinates': (-79.45239005, 43.71432793)}"
-1708,21331,GO-20189025875,THEFT UNDER - BICYCLE,2018-08-09T00:00:00,2018,August,Thursday,9,221,12,2018-08-10T00:00:00,2018,August,Friday,10,222,16,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,DIVERGE,RC,10,GRY,2000.0,STOLEN,1698,"{'type': 'Point', 'coordinates': (-79.44943067, 43.71497087)}"
-1709,21472,GO-2017627505,B&E,2017-04-08T00:00:00,2017,April,Saturday,8,98,4,2017-04-09T00:00:00,2017,April,Sunday,9,99,19,D13,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,TREK,3700,RG,10,REDWHI,630.0,STOLEN,1699,"{'type': 'Point', 'coordinates': (-79.45398417, 43.71081612)}"
-1710,21503,GO-20179010349,THEFT UNDER - BICYCLE,2017-07-16T00:00:00,2017,July,Sunday,16,197,17,2017-07-16T00:00:00,2017,July,Sunday,16,197,20,D13,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,ESCAPE 3,RG,21,GRY,500.0,STOLEN,1700,"{'type': 'Point', 'coordinates': (-79.45823827, 43.71276392)}"
-1711,21542,GO-20191275454,THEFT UNDER - BICYCLE,2019-07-08T00:00:00,2019,July,Monday,8,189,8,2019-07-08T00:00:00,2019,July,Monday,8,189,19,D13,Toronto,31,Yorkdale-Glen Park (31),Ttc Subway Train,Transit,GIANT,HYBRID,RG,1,LBL,,STOLEN,1701,"{'type': 'Point', 'coordinates': (-79.44094814, 43.70960071)}"
-1712,21557,GO-20209015760,THEFT UNDER,2020-06-19T00:00:00,2020,June,Friday,19,171,18,2020-06-19T00:00:00,2020,June,Friday,19,171,22,D13,Toronto,31,Yorkdale-Glen Park (31),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,ASPECT 960 2017,MT,21,GRN,750.0,STOLEN,1702,"{'type': 'Point', 'coordinates': (-79.45341301, 43.70817157)}"
-1713,21814,GO-20142665969,PROPERTY - FOUND,2014-08-08T00:00:00,2014,August,Friday,8,220,22,2014-08-09T00:00:00,2014,August,Saturday,9,221,8,D13,Toronto,31,Yorkdale-Glen Park (31),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NE,CYCLONE,MT,21,GRN,,UNKNOWN,1703,"{'type': 'Point', 'coordinates': (-79.44747056, 43.71010492)}"
-1714,22014,GO-20142330493,THEFT UNDER,2014-05-21T00:00:00,2014,May,Wednesday,21,141,11,2014-06-20T00:00:00,2014,June,Friday,20,171,13,D32,Toronto,31,Yorkdale-Glen Park (31),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KH,URBAN EXPRESS,RG,99,TAN,,RECOVERED,1704,"{'type': 'Point', 'coordinates': (-79.45613233, 43.72046264)}"
-1715,23290,GO-20199023320,THEFT UNDER - BICYCLE,2019-07-22T00:00:00,2019,July,Monday,22,203,12,2019-07-22T00:00:00,2019,July,Monday,22,203,23,D32,Toronto,31,Yorkdale-Glen Park (31),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,ROAD BIKE,RC,1,GRY,500.0,STOLEN,1705,"{'type': 'Point', 'coordinates': (-79.45130961, 43.72364999)}"
-1716,23341,GO-20201370626,THEFT UNDER - BICYCLE,2020-07-01T00:00:00,2020,July,Wednesday,1,183,0,2020-07-23T00:00:00,2020,July,Thursday,23,205,15,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,ROCKY MOUNTAIN,UNKNOWN,MT,12,PLEONG,900.0,STOLEN,1706,"{'type': 'Point', 'coordinates': (-79.4547113, 43.71408738)}"
-1717,23343,GO-20209018468,THEFT UNDER - BICYCLE,2020-07-24T00:00:00,2020,July,Friday,24,206,12,2020-07-24T00:00:00,2020,July,Friday,24,206,20,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,FIXIE/SINGLE SP,OT,1,BLK,700.0,STOLEN,1707,"{'type': 'Point', 'coordinates': (-79.45130961, 43.72364999)}"
-1718,24399,GO-20201543759,THEFT OF EBIKE UNDER $5000,2020-08-14T00:00:00,2020,August,Friday,14,227,4,2020-08-18T00:00:00,2020,August,Tuesday,18,231,17,D13,Toronto,31,Yorkdale-Glen Park (31),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,EL,0,SIL,4000.0,STOLEN,1708,"{'type': 'Point', 'coordinates': (-79.44783456, 43.70511614)}"
-1719,2936,GO-20189023671,THEFT UNDER,2018-07-24T00:00:00,2018,July,Tuesday,24,205,2,2018-07-24T00:00:00,2018,July,Tuesday,24,205,9,D22,Toronto,18,New Toronto (18),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,18,BGE,600.0,STOLEN,1833,"{'type': 'Point', 'coordinates': (-79.51798505, 43.60068281)}"
-1720,24433,GO-20149005501,THEFT UNDER,2014-07-31T00:00:00,2014,July,Thursday,31,212,16,2014-07-31T00:00:00,2014,July,Thursday,31,212,17,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,RACE 7,MT,9,PLE,1000.0,STOLEN,1709,"{'type': 'Point', 'coordinates': (-79.46320163, 43.722698)}"
-1721,24439,GO-20149007938,THEFT UNDER,2014-10-24T00:00:00,2014,October,Friday,24,297,13,2014-11-01T00:00:00,2014,November,Saturday,1,305,12,D32,Toronto,31,Yorkdale-Glen Park (31),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SIRIUS,TO,21,BLK,2400.0,STOLEN,1710,"{'type': 'Point', 'coordinates': (-79.45502575, 43.72097791000001)}"
-1722,24483,GO-20159005975,THEFT UNDER,2015-08-18T00:00:00,2015,August,Tuesday,18,230,12,2015-08-18T00:00:00,2015,August,Tuesday,18,230,15,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,YORKVILLE,RG,24,BLK,520.0,STOLEN,1711,"{'type': 'Point', 'coordinates': (-79.45130961, 43.72364999)}"
-1723,24505,GO-20169000942,THEFT UNDER,2016-01-02T00:00:00,2016,January,Saturday,2,2,21,2016-01-29T00:00:00,2016,January,Friday,29,29,9,D32,Toronto,31,Yorkdale-Glen Park (31),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,HULIGAN,MT,5,DGR,,STOLEN,1712,"{'type': 'Point', 'coordinates': (-79.45239005, 43.71432793)}"
-1724,24532,GO-20169007786,THEFT UNDER - BICYCLE,2016-07-25T00:00:00,2016,July,Monday,25,207,20,2016-07-26T00:00:00,2016,July,Tuesday,26,208,17,D32,Toronto,31,Yorkdale-Glen Park (31),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MT ROBSON,MT,21,RED,0.0,STOLEN,1713,"{'type': 'Point', 'coordinates': (-79.4547113, 43.71408738)}"
-1725,24567,GO-20179005280,THEFT UNDER,2017-04-25T00:00:00,2017,April,Tuesday,25,115,16,2017-04-25T00:00:00,2017,April,Tuesday,25,115,18,D32,Toronto,31,Yorkdale-Glen Park (31),Ttc Subway Station,Transit,OT,MALE MODEL,MT,10,WHI,400.0,STOLEN,1714,"{'type': 'Point', 'coordinates': (-79.44598667, 43.72478043)}"
-1726,24589,GO-20149000905,THEFT UNDER,2014-01-31T00:00:00,2014,January,Friday,31,31,11,2014-02-01T00:00:00,2014,February,Saturday,1,32,0,D13,Toronto,31,Yorkdale-Glen Park (31),Ttc Subway Station,Transit,OT,MONT STE-ANNE,MT,18,,,STOLEN,1715,"{'type': 'Point', 'coordinates': (-79.43982544, 43.70789665)}"
-1727,24742,GO-20159006234,THEFT UNDER,2015-08-24T00:00:00,2015,August,Monday,24,236,23,2015-08-27T00:00:00,2015,August,Thursday,27,239,11,D13,Toronto,31,Yorkdale-Glen Park (31),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,EXPEDITION,MT,18,GRY,200.0,STOLEN,1716,"{'type': 'Point', 'coordinates': (-79.4497258, 43.70513045)}"
-1728,17983,GO-20151308110,B&E,2015-07-30T00:00:00,2015,July,Thursday,30,211,19,2015-07-31T00:00:00,2015,July,Friday,31,212,7,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GIANT,RAPID THREE,RC,24,WHIBLK,650.0,STOLEN,1717,"{'type': 'Point', 'coordinates': (-79.49347247, 43.60449536)}"
-1729,17985,GO-20151399334,PROPERTY - FOUND,2015-08-15T00:00:00,2015,August,Saturday,15,227,0,2015-08-15T00:00:00,2015,August,Saturday,15,227,0,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,1800,MT,18,,,UNKNOWN,1718,"{'type': 'Point', 'coordinates': (-79.48551235, 43.61982412)}"
-1730,17990,GO-20151545205,THEFT OVER,2015-09-02T00:00:00,2015,September,Wednesday,2,245,13,2015-09-07T00:00:00,2015,September,Monday,7,250,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,BMC,GF02,OT,12,BLKRED,7490.0,STOLEN,1719,"{'type': 'Point', 'coordinates': (-79.47400022, 43.6305708)}"
-1731,18004,GO-20151960835,PROPERTY - FOUND,2015-11-10T00:00:00,2015,November,Tuesday,10,314,8,2015-11-15T00:00:00,2015,November,Sunday,15,319,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,STATIC 26,MT,18,,,UNKNOWN,1720,"{'type': 'Point', 'coordinates': (-79.49131679, 43.62006774)}"
-1732,18012,GO-20169001382,THEFT UNDER,2016-02-12T00:00:00,2016,February,Friday,12,43,8,2016-02-13T00:00:00,2016,February,Saturday,13,44,10,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE 2,OT,8,SIL,500.0,STOLEN,1721,"{'type': 'Point', 'coordinates': (-79.48643252, 43.61892859)}"
-1733,18016,GO-20169003074,THEFT UNDER,2016-04-02T00:00:00,2016,April,Saturday,2,93,18,2016-04-04T00:00:00,2016,April,Monday,4,95,21,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,7,BLK,550.0,STOLEN,1722,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-1734,18066,GO-20162306680,THEFT UNDER - BICYCLE,2016-12-30T00:00:00,2016,December,Friday,30,365,11,2016-12-30T00:00:00,2016,December,Friday,30,365,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,CANNONDALE,F29-5,MT,21,WHI,2500.0,STOLEN,1723,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-1735,18070,GO-2017850405,THEFT UNDER - BICYCLE,2017-05-09T00:00:00,2017,May,Tuesday,9,129,1,2017-05-14T00:00:00,2017,May,Sunday,14,134,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,8000,MT,21,BLK,1200.0,STOLEN,1724,"{'type': 'Point', 'coordinates': (-79.49504558, 43.61259603)}"
-1736,18071,GO-20179006596,THEFT UNDER - BICYCLE,2017-04-27T00:00:00,2017,April,Thursday,27,117,8,2017-05-18T00:00:00,2017,May,Thursday,18,138,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,ALLEZ,RC,20,BLK,0.0,STOLEN,1725,"{'type': 'Point', 'coordinates': (-79.47864061, 43.6248261)}"
-1737,18076,GO-20179008841,THEFT UNDER - BICYCLE,2017-06-24T00:00:00,2017,June,Saturday,24,175,17,2017-06-24T00:00:00,2017,June,Saturday,24,175,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,BIKE,EL,5,YEL,2500.0,STOLEN,1726,"{'type': 'Point', 'coordinates': (-79.49287281, 43.61784449)}"
-1738,18311,GO-20141933079,THEFT UNDER,2014-04-21T00:00:00,2014,April,Monday,21,111,2,2014-04-21T00:00:00,2014,April,Monday,21,111,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,RG,10,BLU,10.0,STOLEN,1727,"{'type': 'Point', 'coordinates': (-79.49131679, 43.62006774)}"
-1739,20808,GO-20209022526,THEFT UNDER,2020-09-06T00:00:00,2020,September,Sunday,6,250,12,2020-09-07T00:00:00,2020,September,Monday,7,251,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,SC,,MT,24,BLK,600.0,STOLEN,1728,"{'type': 'Point', 'coordinates': (-79.47893413, 43.62369402)}"
-1740,20840,GO-20209031081,THEFT UNDER,2020-12-01T00:00:00,2020,December,Tuesday,1,336,7,2020-12-02T00:00:00,2020,December,Wednesday,2,337,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,,RG,15,SIL,0.0,STOLEN,1729,"{'type': 'Point', 'coordinates': (-79.5063783, 43.61878846)}"
-1741,20969,GO-20182170206,THEFT OVER,2018-11-22T00:00:00,2018,November,Thursday,22,326,10,2018-11-25T00:00:00,2018,November,Sunday,25,329,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,COLANGO,EPS,MT,22,BLUWHI,10000.0,STOLEN,1730,"{'type': 'Point', 'coordinates': (-79.47400022, 43.6305708)}"
-1742,20976,GO-20189042627,THEFT UNDER - BICYCLE,2018-12-13T00:00:00,2018,December,Thursday,13,347,12,2018-12-18T00:00:00,2018,December,Tuesday,18,352,23,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,TR,7.1 FX,RG,21,BLK,520.0,STOLEN,1731,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-1743,10120,GO-20159005076,THEFT UNDER,2015-07-27T00:00:00,2015,July,Monday,27,208,12,2015-07-28T00:00:00,2015,July,Tuesday,28,209,10,D22,Toronto,18,New Toronto (18),Universities / Colleges,Educational,TU,2015,MT,18,GRY,180.0,STOLEN,1858,"{'type': 'Point', 'coordinates': (-79.51502157, 43.59859558)}"
-1744,20977,GO-20189042627,THEFT UNDER - BICYCLE,2018-12-13T00:00:00,2018,December,Thursday,13,347,12,2018-12-18T00:00:00,2018,December,Tuesday,18,352,23,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,TR,FX21,RG,21,BLK,520.0,STOLEN,1732,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-1745,21003,GO-20199017003,THEFT UNDER,2019-05-18T00:00:00,2019,May,Saturday,18,138,14,2019-05-31T00:00:00,2019,May,Friday,31,151,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MO,R7917WMA,MT,21,BLK,200.0,STOLEN,1733,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-1746,21005,GO-20191028963,THEFT UNDER - BICYCLE,2019-05-20T00:00:00,2019,May,Monday,20,140,11,2019-06-04T00:00:00,2019,June,Tuesday,4,155,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GIANT,ESCAPE 3,OT,10,,800.0,STOLEN,1734,"{'type': 'Point', 'coordinates': (-79.48497603, 43.62140475)}"
-1747,21006,GO-20191069279,THEFT UNDER,2019-06-06T00:00:00,2019,June,Thursday,6,157,10,2019-06-10T00:00:00,2019,June,Monday,10,161,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Go Station,Transit,UNKNONW,GT AGGRESSOR,MT,6,GRNBLK,500.0,STOLEN,1735,"{'type': 'Point', 'coordinates': (-79.49833024, 43.61617493)}"
-1748,21014,GO-20199020186,THEFT UNDER,2019-06-26T00:00:00,2019,June,Wednesday,26,177,12,2019-06-26T00:00:00,2019,June,Wednesday,26,177,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,TR,X-01,OT,24,WHI,1600.0,STOLEN,1736,"{'type': 'Point', 'coordinates': (-79.48497603, 43.62140475)}"
-1749,21019,GO-20191266154,THEFT OF EBIKE UNDER $5000,2019-07-05T00:00:00,2019,July,Friday,5,186,9,2019-07-07T00:00:00,2019,July,Sunday,7,188,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,EMMO/CHAMELEO,EL,3,RED,950.0,STOLEN,1737,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-1750,21023,GO-20191351097,THEFT UNDER,2019-07-18T00:00:00,2019,July,Thursday,18,199,14,2019-07-19T00:00:00,2019,July,Friday,19,200,10,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,,RG,21,,3000.0,STOLEN,1738,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}"
-1751,21030,GO-20191421588,THEFT UNDER,2019-07-22T00:00:00,2019,July,Monday,22,203,20,2019-07-28T00:00:00,2019,July,Sunday,28,209,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,702,OT,24,BLKONG,625.0,STOLEN,1739,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}"
-1752,21036,GO-20199024945,THEFT UNDER,2019-08-03T00:00:00,2019,August,Saturday,3,215,20,2019-08-04T00:00:00,2019,August,Sunday,4,216,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MA,,BM,8,,0.0,STOLEN,1740,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}"
-1753,21040,GO-20199025738,THEFT UNDER,2019-08-11T00:00:00,2019,August,Sunday,11,223,5,2019-08-11T00:00:00,2019,August,Sunday,11,223,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,SU,,MT,7,,150.0,STOLEN,1741,"{'type': 'Point', 'coordinates': (-79.48999212, 43.61115169)}"
-1754,21069,GO-20191857283,B&E,2019-09-12T00:00:00,2019,September,Thursday,12,255,8,2019-09-26T00:00:00,2019,September,Thursday,26,269,19,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,ARGON 18,,TO,22,REDWHI,1000.0,STOLEN,1742,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}"
-1755,21073,GO-20191922129,THEFT UNDER,2019-09-26T00:00:00,2019,September,Thursday,26,269,9,2019-10-05T00:00:00,2019,October,Saturday,5,278,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Open Areas (Lakes, Parks, Rivers)",Outside,ZZZ,MAGNA,MT,10,,,STOLEN,1743,"{'type': 'Point', 'coordinates': (-79.50007787, 43.61724892)}"
-1756,21130,GO-20209012402,THEFT UNDER,2020-05-02T00:00:00,2020,May,Saturday,2,123,16,2020-05-03T00:00:00,2020,May,Sunday,3,124,19,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,SC,GTX 2.0,RG,21,BLK,350.0,STOLEN,1744,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-1757,21146,GO-20209015389,THEFT FROM MOTOR VEHICLE UNDER,2020-06-14T00:00:00,2020,June,Sunday,14,166,21,2020-06-15T00:00:00,2020,June,Monday,15,167,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RG,21,RED,750.0,STOLEN,1745,"{'type': 'Point', 'coordinates': (-79.4897495, 43.61273143)}"
-1758,21168,GO-20171154172,THEFT UNDER - BICYCLE,2017-06-27T00:00:00,2017,June,Tuesday,27,178,6,2017-06-28T00:00:00,2017,June,Wednesday,28,179,9,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,HUFFY,,RG,10,PLE,120.0,STOLEN,1746,"{'type': 'Point', 'coordinates': (-79.49219650000002, 43.60815438)}"
-1759,21316,GO-20189022301,THEFT UNDER - BICYCLE,2018-07-13T00:00:00,2018,July,Friday,13,194,13,2018-07-13T00:00:00,2018,July,Friday,13,194,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,S2 (105),OT,11,BLK,3600.0,STOLEN,1754,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-1760,21169,GO-20171154172,THEFT UNDER - BICYCLE,2017-06-27T00:00:00,2017,June,Tuesday,27,178,6,2017-06-28T00:00:00,2017,June,Wednesday,28,179,9,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,MENS,RG,10,BLK,50.0,STOLEN,1747,"{'type': 'Point', 'coordinates': (-79.49219650000002, 43.60815438)}"
-1761,21179,GO-20179009985,THEFT UNDER - BICYCLE,2017-07-11T00:00:00,2017,July,Tuesday,11,192,9,2017-07-12T00:00:00,2017,July,Wednesday,12,193,0,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GT,AGGRESSOR,MT,7,BLK,500.0,STOLEN,1748,"{'type': 'Point', 'coordinates': (-79.49138084, 43.62576989)}"
-1762,21243,GO-201884250,THEFT UNDER - BICYCLE,2017-12-17T00:00:00,2017,December,Sunday,17,351,0,2018-01-14T00:00:00,2018,January,Sunday,14,14,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,GARNEAU GENNIX,RC,21,,2000.0,STOLEN,1749,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-1763,21244,GO-201884250,THEFT UNDER - BICYCLE,2017-12-17T00:00:00,2017,December,Sunday,17,351,0,2018-01-14T00:00:00,2018,January,Sunday,14,14,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,GARNEAU GENNIX,RC,21,BLKRED,2000.0,STOLEN,1750,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-1764,21248,GO-2018317216,THEFT UNDER,2018-02-19T00:00:00,2018,February,Monday,19,50,14,2018-02-19T00:00:00,2018,February,Monday,19,50,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,CA,F29,MT,10,GRY,2300.0,STOLEN,1751,"{'type': 'Point', 'coordinates': (-79.48862673, 43.61495018)}"
-1765,21249,GO-2018317216,THEFT UNDER,2018-02-19T00:00:00,2018,February,Monday,19,50,14,2018-02-19T00:00:00,2018,February,Monday,19,50,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,IH,,MT,10,BLK,600.0,STOLEN,1752,"{'type': 'Point', 'coordinates': (-79.48862673, 43.61495018)}"
-1766,21254,GO-2018457623,THEFT UNDER - BICYCLE,2018-03-12T00:00:00,2018,March,Monday,12,71,7,2018-03-13T00:00:00,2018,March,Tuesday,13,72,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GIANT,ROAM O,OT,0,BLK,,STOLEN,1753,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-1767,21323,GO-20189023584,THEFT UNDER - BICYCLE,2018-07-20T00:00:00,2018,July,Friday,20,201,5,2018-07-23T00:00:00,2018,July,Monday,23,204,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ASPECT 940,MT,27,WHI,1000.0,STOLEN,1755,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}"
-1768,21324,GO-20189024162,THEFT UNDER - BICYCLE,2018-07-26T00:00:00,2018,July,Thursday,26,207,5,2018-07-27T00:00:00,2018,July,Friday,27,208,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,ROCK HOPPER,MT,24,GRY,1000.0,STOLEN,1756,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}"
-1769,21346,GO-20189031673,THEFT UNDER - BICYCLE,2018-09-21T00:00:00,2018,September,Friday,21,264,12,2018-09-24T00:00:00,2018,September,Monday,24,267,7,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,CA,SCALPEL 29 ALLO,MT,18,BLK,2900.0,STOLEN,1757,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}"
-1770,21348,GO-20189032303,THEFT UNDER,2018-09-28T00:00:00,2018,September,Friday,28,271,19,2018-09-28T00:00:00,2018,September,Friday,28,271,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Go Station,Transit,UK,MIXTAPE,RG,7,GRY,650.0,STOLEN,1758,"{'type': 'Point', 'coordinates': (-79.49833024, 43.61617493)}"
-1771,21352,GO-20181836832,THEFT UNDER - BICYCLE,2018-10-03T00:00:00,2018,October,Wednesday,3,276,18,2018-10-04T00:00:00,2018,October,Thursday,4,277,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,MEDALIST,MT,21,BLU,200.0,STOLEN,1759,"{'type': 'Point', 'coordinates': (-79.49792125, 43.6023614)}"
-1772,21353,GO-20189032944,THEFT UNDER - BICYCLE,2018-10-04T00:00:00,2018,October,Thursday,4,277,18,2018-10-04T00:00:00,2018,October,Thursday,4,277,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM 3,RG,27,BLK,700.0,STOLEN,1760,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-1773,21363,GO-20181906851,THEFT UNDER - BICYCLE,2018-10-14T00:00:00,2018,October,Sunday,14,287,17,2018-10-15T00:00:00,2018,October,Monday,15,288,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CANNONDALE,,MT,0,BLKWHI,1200.0,STOLEN,1761,"{'type': 'Point', 'coordinates': (-79.48760733, 43.62206923)}"
-1774,24558,GO-20162152621,THEFT OVER - BICYCLE,2016-12-04T00:00:00,2016,December,Sunday,4,339,5,2016-12-04T00:00:00,2016,December,Sunday,4,339,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,FUJI,TAHOE,MT,20,BLK,6000.0,STOLEN,1814,"{'type': 'Point', 'coordinates': (-79.48643252, 43.61892859)}"
-1775,22000,GO-20142045048,THEFT UNDER,2014-05-08T00:00:00,2014,May,Thursday,8,128,21,2014-05-09T00:00:00,2014,May,Friday,9,129,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,UNKN,MT,6,BLKYEL,450.0,STOLEN,1762,"{'type': 'Point', 'coordinates': (-79.49332753, 43.61293873)}"
-1776,22001,GO-20142045048,THEFT UNDER,2014-05-08T00:00:00,2014,May,Thursday,8,128,21,2014-05-09T00:00:00,2014,May,Friday,9,129,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,6,BLK,200.0,STOLEN,1763,"{'type': 'Point', 'coordinates': (-79.49332753, 43.61293873)}"
-1777,22039,GO-20149007832,THEFT UNDER,2014-10-16T00:00:00,2014,October,Thursday,16,289,18,2014-10-26T00:00:00,2014,October,Sunday,26,299,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GF,ADVANCE,MT,21,ONG,530.0,STOLEN,1764,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}"
-1778,22061,GO-20159003713,THEFT UNDER,2015-06-17T00:00:00,2015,June,Wednesday,17,168,23,2015-06-17T00:00:00,2015,June,Wednesday,17,168,23,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Schools During Un-Supervised Activity,Educational,UK,RATTLESNAKE,BM,1,GRN,150.0,STOLEN,1765,"{'type': 'Point', 'coordinates': (-79.48799361, 43.61936533)}"
-1779,22071,GO-20151256969,THEFT UNDER,2015-07-19T00:00:00,2015,July,Sunday,19,200,2,2015-07-23T00:00:00,2015,July,Thursday,23,204,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,,MT,21,SIL,,STOLEN,1766,"{'type': 'Point', 'coordinates': (-79.49683396, 43.62059912000001)}"
-1780,22094,GO-20159009276,THEFT UNDER,2015-11-02T00:00:00,2015,November,Monday,2,306,9,2015-11-02T00:00:00,2015,November,Monday,2,306,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,ST TROPEZ SM-BL,OT,8,BLK,600.0,STOLEN,1767,"{'type': 'Point', 'coordinates': (-79.47564953, 43.62924438)}"
-1781,22113,GO-20169006758,THEFT UNDER,2016-06-22T00:00:00,2016,June,Wednesday,22,174,1,2016-07-05T00:00:00,2016,July,Tuesday,5,187,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,TR,7.7,RG,10,BLK,2200.0,STOLEN,1768,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-1782,22126,GO-20169009396,THEFT UNDER - BICYCLE,2016-06-23T00:00:00,2016,June,Thursday,23,175,8,2016-08-24T00:00:00,2016,August,Wednesday,24,237,9,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,RG,21,BLK,300.0,STOLEN,1769,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-1783,22129,GO-20169010606,THEFT UNDER,2016-09-15T00:00:00,2016,September,Thursday,15,259,12,2016-09-17T00:00:00,2016,September,Saturday,17,261,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,TR,HYBRID 7100,TO,21,BRN,700.0,STOLEN,1770,"{'type': 'Point', 'coordinates': (-79.47550213, 43.63126324)}"
-1784,22137,GO-20162063432,THEFT UNDER - BICYCLE,2016-10-23T00:00:00,2016,October,Sunday,23,297,19,2016-11-20T00:00:00,2016,November,Sunday,20,325,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,ORBEA,MX40,MT,22,ONG,895.0,STOLEN,1771,"{'type': 'Point', 'coordinates': (-79.47706999, 43.62578178)}"
-1785,22146,GO-2017691352,THEFT OF EBIKE UNDER $5000,2017-04-19T00:00:00,2017,April,Wednesday,19,109,19,2017-04-20T00:00:00,2017,April,Thursday,20,110,7,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN,,EL,1,BLU,2700.0,STOLEN,1772,"{'type': 'Point', 'coordinates': (-79.48999212, 43.61115169)}"
-1786,22151,GO-20179006724,THEFT FROM MOTOR VEHICLE UNDER,2017-05-20T00:00:00,2017,May,Saturday,20,140,13,2017-05-21T00:00:00,2017,May,Sunday,21,141,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,DOMANE 4.7C,RC,11,WHI,3300.0,STOLEN,1773,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}"
-1787,22152,GO-20179006834,THEFT UNDER - BICYCLE,2017-05-15T00:00:00,2017,May,Monday,15,135,20,2017-05-23T00:00:00,2017,May,Tuesday,23,143,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,CA,CANNONDALE TRAI,MT,24,WHI,1500.0,STOLEN,1774,"{'type': 'Point', 'coordinates': (-79.48480515, 43.62040835)}"
-1788,23812,GO-20209018636,THEFT UNDER,2020-07-23T00:00:00,2020,July,Thursday,23,205,7,2020-07-27T00:00:00,2020,July,Monday,27,209,8,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,NO,STORM,MT,21,,1000.0,STOLEN,1775,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-1789,23837,GO-20209023192,THEFT UNDER,2020-09-12T00:00:00,2020,September,Saturday,12,256,0,2020-09-15T00:00:00,2020,September,Tuesday,15,259,2,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,NO,17 VFR 6 STEP-T,UN,40,WHI,522.0,STOLEN,1776,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-1790,23988,GO-20189033401,THEFT UNDER - BICYCLE,2018-10-09T00:00:00,2018,October,Tuesday,9,282,15,2018-10-09T00:00:00,2018,October,Tuesday,9,282,19,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,DEVINCI- WOOKY,MT,16,BLK,4500.0,STOLEN,1777,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}"
-1791,23991,GO-20181919766,THEFT UNDER - BICYCLE,2018-10-16T00:00:00,2018,October,Tuesday,16,289,18,2018-10-17T00:00:00,2018,October,Wednesday,17,290,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CANNONDALE,CAAD 6,RC,21,BLKWHI,1400.0,STOLEN,1778,"{'type': 'Point', 'coordinates': (-79.49477509, 43.62197176)}"
-1792,23992,GO-20181919766,THEFT UNDER - BICYCLE,2018-10-16T00:00:00,2018,October,Tuesday,16,289,18,2018-10-17T00:00:00,2018,October,Wednesday,17,290,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,CAAD8 TIAGRA 6,RC,20,BLK,1400.0,STOLEN,1779,"{'type': 'Point', 'coordinates': (-79.49477509, 43.62197176)}"
-1793,23999,GO-20189039056,THEFT UNDER - BICYCLE,2018-11-14T00:00:00,2018,November,Wednesday,14,318,8,2018-11-20T00:00:00,2018,November,Tuesday,20,324,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GT,VANTARA COMP,RG,21,BLK,565.0,STOLEN,1780,"{'type': 'Point', 'coordinates': (-79.48480515, 43.62040835)}"
-1794,24012,GO-20199003001,THEFT UNDER - BICYCLE,2019-01-21T00:00:00,2019,January,Monday,21,21,21,2019-01-22T00:00:00,2019,January,Tuesday,22,22,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,8,BLK,0.0,STOLEN,1781,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-1795,24013,GO-20199003001,THEFT UNDER - BICYCLE,2019-01-21T00:00:00,2019,January,Monday,21,21,21,2019-01-22T00:00:00,2019,January,Tuesday,22,22,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,8,,0.0,STOLEN,1782,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-1796,24019,GO-20199004962,THEFT UNDER,2019-02-07T00:00:00,2019,February,Thursday,7,38,4,2019-02-09T00:00:00,2019,February,Saturday,9,40,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,,MT,21,BLU,0.0,STOLEN,1783,"{'type': 'Point', 'coordinates': (-79.50753802, 43.61477969)}"
-1797,2497,GO-20189017424,THEFT UNDER - BICYCLE,2018-06-04T00:00:00,2018,June,Monday,4,155,17,2018-06-04T00:00:00,2018,June,Monday,4,155,23,D22,Toronto,18,New Toronto (18),Schools During Supervised Activity,Educational,UK,,RG,8,SIL,220.0,STOLEN,1823,"{'type': 'Point', 'coordinates': (-79.52122445, 43.59996107)}"
-1798,24063,GO-20199022441,THEFT UNDER,2019-06-16T00:00:00,2019,June,Sunday,16,167,20,2019-07-16T00:00:00,2019,July,Tuesday,16,197,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,NO,SCENE 3,RG,7,GRY,677.0,STOLEN,1784,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-1799,24064,GO-20199022441,THEFT UNDER,2019-06-16T00:00:00,2019,June,Sunday,16,167,20,2019-07-16T00:00:00,2019,July,Tuesday,16,197,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,MOUNTAIN BIKE,MT,21,BLK,700.0,STOLEN,1785,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-1800,24070,GO-20191351004,THEFT UNDER,2019-07-18T00:00:00,2019,July,Thursday,18,199,19,2019-07-18T00:00:00,2019,July,Thursday,18,199,22,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OTHER,AKUNA,TO,10,,1700.0,STOLEN,1786,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}"
-1801,24086,GO-20199025947,THEFT UNDER,2019-08-12T00:00:00,2019,August,Monday,12,224,8,2019-08-12T00:00:00,2019,August,Monday,12,224,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Go Station,Transit,OT,DEVINCI ST. TRO,RG,24,BLU,650.0,STOLEN,1787,"{'type': 'Point', 'coordinates': (-79.49833024, 43.61617493)}"
-1802,24098,GO-20191750848,B&E,2019-09-10T00:00:00,2019,September,Tuesday,10,253,20,2019-09-12T00:00:00,2019,September,Thursday,12,255,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,RINCON,MT,21,RED,1000.0,STOLEN,1788,"{'type': 'Point', 'coordinates': (-79.50371138, 43.6202552)}"
-1803,24168,GO-2020765062,THEFT UNDER,2020-04-15T00:00:00,2020,April,Wednesday,15,106,22,2020-04-23T00:00:00,2020,April,Thursday,23,114,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,SC,3,,3000.0,STOLEN,1789,"{'type': 'Point', 'coordinates': (-79.49787186, 43.61502724)}"
-1804,24171,GO-2020892070,THEFT UNDER - BICYCLE,2020-05-02T00:00:00,2020,May,Saturday,2,123,15,2020-05-14T00:00:00,2020,May,Thursday,14,135,7,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OPUS,,MT,18,MUL,4000.0,STOLEN,1790,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-1805,24193,GO-20179010818,THEFT UNDER - BICYCLE,2017-07-22T00:00:00,2017,July,Saturday,22,203,15,2017-07-22T00:00:00,2017,July,Saturday,22,203,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,UK,TARMAC SL3 EXPE,RC,12,BLK,4300.0,STOLEN,1791,"{'type': 'Point', 'coordinates': (-79.48480515, 43.62040835)}"
-1806,24196,GO-20179011292,THEFT UNDER,2017-07-27T00:00:00,2017,July,Thursday,27,208,22,2017-07-29T00:00:00,2017,July,Saturday,29,210,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,CA,CAAD8,RC,22,BLK,1275.0,STOLEN,1792,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}"
-1807,24197,GO-20179011292,THEFT UNDER,2017-07-27T00:00:00,2017,July,Thursday,27,208,22,2017-07-29T00:00:00,2017,July,Saturday,29,210,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,765,RC,22,BLK,3400.0,STOLEN,1793,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}"
-1808,24208,GO-20179012252,THEFT FROM MOTOR VEHICLE UNDER,2017-08-09T00:00:00,2017,August,Wednesday,9,221,18,2017-08-12T00:00:00,2017,August,Saturday,12,224,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,FUEL EX 8 29,MT,10,BLK,3000.0,STOLEN,1794,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}"
-1809,24219,GO-20171559092,THEFT UNDER - BICYCLE,2017-07-26T00:00:00,2017,July,Wednesday,26,207,0,2017-08-30T00:00:00,2017,August,Wednesday,30,242,10,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,CANADIAN TIRE,,MT,3,RED,500.0,STOLEN,1795,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-1810,24247,GO-20179017593,THEFT UNDER - BICYCLE,2017-10-19T00:00:00,2017,October,Thursday,19,292,6,2017-10-19T00:00:00,2017,October,Thursday,19,292,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,TR,FX 7.2,RG,18,BLK,599.0,STOLEN,1796,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-1811,24281,GO-20189007097,THEFT UNDER,2018-02-23T00:00:00,2018,February,Friday,23,54,0,2018-03-07T00:00:00,2018,March,Wednesday,7,66,9,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,NO,CHARGER,MT,12,GRN,1099.0,STOLEN,1797,"{'type': 'Point', 'coordinates': (-79.48862673, 43.61495018)}"
-1812,24282,GO-20189007097,THEFT UNDER,2018-02-23T00:00:00,2018,February,Friday,23,54,0,2018-03-07T00:00:00,2018,March,Wednesday,7,66,9,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,CA,QUICK DISC 3 SO,RG,9,GRY,1000.0,STOLEN,1798,"{'type': 'Point', 'coordinates': (-79.48862673, 43.61495018)}"
-1813,24367,GO-20189026941,THEFT UNDER,2018-08-18T00:00:00,2018,August,Saturday,18,230,19,2018-08-18T00:00:00,2018,August,Saturday,18,230,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE 2 CITY S,TO,12,GRY,600.0,STOLEN,1806,"{'type': 'Point', 'coordinates': (-79.48731142, 43.61728142)}"
-1814,24294,GO-20189012989,THEFT UNDER - BICYCLE,2018-01-21T00:00:00,2018,January,Sunday,21,21,0,2018-04-26T00:00:00,2018,April,Thursday,26,116,22,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,8.3 DS,RG,8,BLK,800.0,STOLEN,1799,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-1815,24303,GO-2018825005,THEFT UNDER - BICYCLE,2018-05-05T00:00:00,2018,May,Saturday,5,125,16,2018-05-08T00:00:00,2018,May,Tuesday,8,128,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OTHER,,EL,1,BLK,,RECOVERED,1800,"{'type': 'Point', 'coordinates': (-79.50007787, 43.61724892)}"
-1816,24317,GO-20181089054,THEFT UNDER - BICYCLE,2018-06-15T00:00:00,2018,June,Friday,15,166,5,2018-06-21T00:00:00,2018,June,Thursday,21,172,19,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,WOMEN'S,MT,21,YEL,350.0,STOLEN,1801,"{'type': 'Point', 'coordinates': (-79.48819449, 43.61573777)}"
-1817,24319,GO-20189020033,THEFT UNDER - BICYCLE,2018-06-23T00:00:00,2018,June,Saturday,23,174,21,2018-06-24T00:00:00,2018,June,Sunday,24,175,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GI,TALON 3 (2017),MT,8,BLK,700.0,STOLEN,1802,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}"
-1818,24329,GO-20189021149,THEFT UNDER - BICYCLE,2018-06-30T00:00:00,2018,June,Saturday,30,181,15,2018-07-04T00:00:00,2018,July,Wednesday,4,185,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,SP,,MT,40,BLK,1600.0,STOLEN,1803,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}"
-1819,24331,GO-20189021452,THEFT UNDER - BICYCLE,2018-07-04T00:00:00,2018,July,Wednesday,4,185,15,2018-07-06T00:00:00,2018,July,Friday,6,187,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,CORSO,MT,21,GRN,450.0,STOLEN,1804,"{'type': 'Point', 'coordinates': (-79.48480515, 43.62040835)}"
-1820,24342,GO-20181306300,THEFT UNDER - BICYCLE,2018-07-15T00:00:00,2018,July,Sunday,15,196,15,2018-07-17T00:00:00,2018,July,Tuesday,17,198,21,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CCM,MOUNTAIN,MT,1,REDGRY,250.0,STOLEN,1805,"{'type': 'Point', 'coordinates': (-79.50455447, 43.61542649)}"
-1821,24454,GO-2015909049,THEFT UNDER,2015-05-30T00:00:00,2015,May,Saturday,30,150,16,2015-05-31T00:00:00,2015,May,Sunday,31,151,9,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,ZYMOTIC,MT,24,WHI,4000.0,STOLEN,1807,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-1822,24455,GO-2015909049,THEFT UNDER,2015-05-30T00:00:00,2015,May,Saturday,30,150,16,2015-05-31T00:00:00,2015,May,Sunday,31,151,9,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CANNONDALE,QUICK 4,MT,24,BLK,780.0,STOLEN,1808,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-1823,24475,GO-20151354249,B&E,2015-08-02T00:00:00,2015,August,Sunday,2,214,10,2015-08-08T00:00:00,2015,August,Saturday,8,220,10,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,JAMIS,,MT,21,,300.0,STOLEN,1809,"{'type': 'Point', 'coordinates': (-79.49119535, 43.61905507)}"
-1824,219,GO-20179004665,THEFT UNDER - BICYCLE,2017-04-13T00:00:00,2017,April,Thursday,13,103,14,2017-04-13T00:00:00,2017,April,Thursday,13,103,18,D31,Toronto,24,Black Creek (24),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,HYBRID HPA PRO,EL,9,BLK,3389.0,STOLEN,1810,"{'type': 'Point', 'coordinates': (-79.52764450000001, 43.76514827)}"
-1825,24528,GO-20169007486,THEFT UNDER - BICYCLE,2016-06-17T00:00:00,2016,June,Friday,17,169,16,2016-07-20T00:00:00,2016,July,Wednesday,20,202,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,,MT,20,WHI,3500.0,STOLEN,1811,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}"
-1826,24533,GO-20161322319,THEFT UNDER - BICYCLE,2016-07-27T00:00:00,2016,July,Wednesday,27,209,17,2016-07-27T00:00:00,2016,July,Wednesday,27,209,22,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,TRANCE,MT,10,BLK,2350.0,STOLEN,1812,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}"
-1827,24557,GO-20169014141,THEFT UNDER,2016-11-28T00:00:00,2016,November,Monday,28,333,0,2016-12-02T00:00:00,2016,December,Friday,2,337,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,DB,STUMPJUMPER,MT,21,WHI,2500.0,STOLEN,1813,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}"
-1828,24572,GO-20179006821,THEFT UNDER - BICYCLE,2017-05-19T00:00:00,2017,May,Friday,19,139,12,2017-05-23T00:00:00,2017,May,Tuesday,23,143,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,,7005 S,MT,21,RED,150.0,STOLEN,1815,"{'type': 'Point', 'coordinates': (-79.49330736, 43.61684986)}"
-1829,410,GO-2017870598,THEFT UNDER - BICYCLE,2017-05-17T00:00:00,2017,May,Wednesday,17,137,14,2017-05-17T00:00:00,2017,May,Wednesday,17,137,16,D22,Toronto,18,New Toronto (18),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BLACK DIAMOND,,MT,18,BLUBLK,50.0,STOLEN,1816,"{'type': 'Point', 'coordinates': (-79.51030869, 43.59833709)}"
-1830,1489,GO-20179015478,THEFT UNDER - BICYCLE,2017-09-21T00:00:00,2017,September,Thursday,21,264,9,2017-09-22T00:00:00,2017,September,Friday,22,265,15,D22,Toronto,18,New Toronto (18),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KH,SIXFIFTY 500,MT,9,ONG,799.0,STOLEN,1817,"{'type': 'Point', 'coordinates': (-79.51800914, 43.59794793)}"
-1831,1741,GO-20179018191,THEFT UNDER - BICYCLE,2017-10-12T00:00:00,2017,October,Thursday,12,285,17,2017-10-25T00:00:00,2017,October,Wednesday,25,298,17,D22,Toronto,18,New Toronto (18),Schools During Supervised Activity,Educational,UK,,RC,1,BLK,350.0,STOLEN,1818,"{'type': 'Point', 'coordinates': (-79.51904513, 43.60044151)}"
-1832,1926,GO-20173130767,THEFT UNDER - BICYCLE,2017-12-03T00:00:00,2017,December,Sunday,3,337,18,2017-12-04T00:00:00,2017,December,Monday,4,338,17,D22,Toronto,18,New Toronto (18),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DIAMONDBACK,,MT,21,BLU,800.0,STOLEN,1819,"{'type': 'Point', 'coordinates': (-79.50744533, 43.60300448)}"
-1833,2137,GO-2018617883,FTC WITH CONDITIONS,2018-04-06T00:00:00,2018,April,Friday,6,96,21,2018-04-06T00:00:00,2018,April,Friday,6,96,21,D22,Toronto,18,New Toronto (18),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,MT,21,SIL,100.0,RECOVERED,1820,"{'type': 'Point', 'coordinates': (-79.50627079, 43.60326759)}"
-1834,2411,GO-20189016493,THEFT UNDER - BICYCLE,2018-05-27T00:00:00,2018,May,Sunday,27,147,19,2018-05-28T00:00:00,2018,May,Monday,28,148,11,D22,Toronto,18,New Toronto (18),"Group Homes (Non-Profit, Halfway House, Social Agency)",Other,OT,,FO,1,RED,0.0,STOLEN,1821,"{'type': 'Point', 'coordinates': (-79.51030869, 43.59833709)}"
-1835,2463,GO-20189017424,THEFT UNDER - BICYCLE,2018-06-04T00:00:00,2018,June,Monday,4,155,17,2018-06-04T00:00:00,2018,June,Monday,4,155,23,D22,Toronto,18,New Toronto (18),Schools During Supervised Activity,Educational,UK,,RG,8,SIL,150.0,STOLEN,1822,"{'type': 'Point', 'coordinates': (-79.52122445, 43.59996107)}"
-1836,2572,GO-20189018753,THEFT UNDER,2018-06-11T00:00:00,2018,June,Monday,11,162,7,2018-06-14T00:00:00,2018,June,Thursday,14,165,20,D22,Toronto,18,New Toronto (18),Schools During Un-Supervised Activity,Educational,KO,ONE 120 DELUXE,MT,27,WHI,1699.0,STOLEN,1824,"{'type': 'Point', 'coordinates': (-79.51630482, 43.59432847)}"
-1837,2618,GO-20189019327,THEFT UNDER - BICYCLE,2018-06-18T00:00:00,2018,June,Monday,18,169,3,2018-06-19T00:00:00,2018,June,Tuesday,19,170,13,D22,Toronto,18,New Toronto (18),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CC,DS-600 DUAL SUS,MT,21,SIL,599.0,STOLEN,1825,"{'type': 'Point', 'coordinates': (-79.50201691, 43.59892185)}"
-1838,2706,GO-20181154765,THEFT UNDER - BICYCLE,2018-06-12T00:00:00,2018,June,Tuesday,12,163,9,2018-06-25T00:00:00,2018,June,Monday,25,176,12,D22,Toronto,18,New Toronto (18),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,MT,12,,125.0,STOLEN,1826,"{'type': 'Point', 'coordinates': (-79.50627079, 43.60326759)}"
-1839,2716,GO-20189020693,THEFT UNDER,2018-06-27T00:00:00,2018,June,Wednesday,27,178,23,2018-06-29T00:00:00,2018,June,Friday,29,180,10,D22,Toronto,18,New Toronto (18),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ATLAS,MT,20,BLK,3500.0,STOLEN,1827,"{'type': 'Point', 'coordinates': (-79.50223433, 43.599441)}"
-1840,2805,GO-20181239279,THEFT UNDER - BICYCLE,2018-06-22T00:00:00,2018,June,Friday,22,173,12,2018-07-07T00:00:00,2018,July,Saturday,7,188,22,D22,Toronto,18,New Toronto (18),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,KATMANDU,MT,0,GRY,600.0,STOLEN,1828,"{'type': 'Point', 'coordinates': (-79.50758108000001, 43.6002216)}"
-1841,2807,GO-20189021965,THEFT UNDER,2018-07-10T00:00:00,2018,July,Tuesday,10,191,14,2018-07-10T00:00:00,2018,July,Tuesday,10,191,21,D22,Toronto,18,New Toronto (18),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,NO,VFR 4 STEP-THRU,RG,21,LGR,600.0,STOLEN,1829,"{'type': 'Point', 'coordinates': (-79.51630482, 43.59432847)}"
-1842,2811,GO-20181268844,THEFT UNDER - BICYCLE,2018-07-12T00:00:00,2018,July,Thursday,12,193,9,2018-07-12T00:00:00,2018,July,Thursday,12,193,9,D22,Toronto,18,New Toronto (18),"Apartment (Rooming House, Condo)",Apartment,CCM,,TO,1,,,STOLEN,1830,"{'type': 'Point', 'coordinates': (-79.50976127, 43.60172119)}"
-1843,2812,GO-20181268844,THEFT UNDER - BICYCLE,2018-07-12T00:00:00,2018,July,Thursday,12,193,9,2018-07-12T00:00:00,2018,July,Thursday,12,193,9,D22,Toronto,18,New Toronto (18),"Apartment (Rooming House, Condo)",Apartment,OTHER,COMPASS,TO,10,BLK,595.0,STOLEN,1831,"{'type': 'Point', 'coordinates': (-79.50976127, 43.60172119)}"
-1844,2941,GO-20189023746,THEFT UNDER - BICYCLE,2018-07-18T00:00:00,2018,July,Wednesday,18,199,15,2018-07-24T00:00:00,2018,July,Tuesday,24,205,15,D22,Toronto,18,New Toronto (18),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,MANTRA,RG,7,BLK,700.0,STOLEN,1834,"{'type': 'Point', 'coordinates': (-79.50543108, 43.59817425)}"
-1845,3048,GO-20181412569,THEFT UNDER - BICYCLE,2018-07-08T00:00:00,2018,July,Sunday,8,189,8,2018-08-02T00:00:00,2018,August,Thursday,2,214,6,D22,Toronto,18,New Toronto (18),"Apartment (Rooming House, Condo)",Apartment,TREK,,MT,18,GRYYEL,600.0,STOLEN,1835,"{'type': 'Point', 'coordinates': (-79.50976127, 43.60172119)}"
-1846,3071,GO-20189025079,THEFT UNDER - BICYCLE,2018-08-04T00:00:00,2018,August,Saturday,4,216,8,2018-08-04T00:00:00,2018,August,Saturday,4,216,10,D22,Toronto,18,New Toronto (18),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CC,TRAIL HEAD,MT,21,ONG,1000.0,STOLEN,1836,"{'type': 'Point', 'coordinates': (-79.50410543, 43.60100716)}"
-1847,3072,GO-20189025079,THEFT UNDER - BICYCLE,2018-08-04T00:00:00,2018,August,Saturday,4,216,8,2018-08-04T00:00:00,2018,August,Saturday,4,216,10,D22,Toronto,18,New Toronto (18),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,7.3,TO,24,BLK,1000.0,STOLEN,1837,"{'type': 'Point', 'coordinates': (-79.50410543, 43.60100716)}"
-1848,3775,GO-20189035931,THEFT UNDER - BICYCLE,2018-10-26T00:00:00,2018,October,Friday,26,299,22,2018-10-28T00:00:00,2018,October,Sunday,28,301,17,D22,Toronto,18,New Toronto (18),"Apartment (Rooming House, Condo)",Apartment,TR,3700,MT,18,GRY,460.0,STOLEN,1838,"{'type': 'Point', 'coordinates': (-79.50674719, 43.59545505)}"
-1849,4113,GO-20199009785,THEFT UNDER - BICYCLE,2019-03-26T00:00:00,2019,March,Tuesday,26,85,20,2019-03-26T00:00:00,2019,March,Tuesday,26,85,23,D22,Toronto,18,New Toronto (18),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,WOOKY XP,MT,20,BLK,1000.0,STOLEN,1839,"{'type': 'Point', 'coordinates': (-79.50794492, 43.60112996)}"
-1850,4431,GO-20191044540,THEFT UNDER - BICYCLE,2019-06-06T00:00:00,2019,June,Thursday,6,157,17,2019-06-06T00:00:00,2019,June,Thursday,6,157,20,D22,Toronto,18,New Toronto (18),"Apartment (Rooming House, Condo)",Apartment,GARY FISHER,HYBRID,RG,21,,100.0,STOLEN,1840,"{'type': 'Point', 'coordinates': (-79.50639441, 43.60049471000001)}"
-1851,4874,GO-20191371109,THEFT OF EBIKE UNDER $5000,2019-07-21T00:00:00,2019,July,Sunday,21,202,2,2019-07-21T00:00:00,2019,July,Sunday,21,202,18,D22,Toronto,18,New Toronto (18),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,AZ SOURCES,,EL,0,GRY,4100.0,STOLEN,1841,"{'type': 'Point', 'coordinates': (-79.50639441, 43.60049471000001)}"
-1852,5215,GO-20199028530,THEFT UNDER,2019-09-02T00:00:00,2019,September,Monday,2,245,14,2019-09-02T00:00:00,2019,September,Monday,2,245,19,D22,Toronto,18,New Toronto (18),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,OT,22,BLK,65.0,STOLEN,1842,"{'type': 'Point', 'coordinates': (-79.51691167, 43.59819831000001)}"
-1853,5347,GO-20199030253,THEFT UNDER,2019-09-13T00:00:00,2019,September,Friday,13,256,9,2019-09-17T00:00:00,2019,September,Tuesday,17,260,0,D22,Toronto,18,New Toronto (18),Ttc Street Car,Transit,SU,,MT,6,,130.0,STOLEN,1843,"{'type': 'Point', 'coordinates': (-79.50627079, 43.60326759)}"
-1854,6053,GO-2020706496,THEFT UNDER - BICYCLE,2020-04-12T00:00:00,2020,April,Sunday,12,103,2,2020-04-12T00:00:00,2020,April,Sunday,12,103,9,D22,Toronto,18,New Toronto (18),"Apartment (Rooming House, Condo)",Apartment,HYPER,,MT,21,GRYBLU,500.0,STOLEN,1844,"{'type': 'Point', 'coordinates': (-79.50967309, 43.59979141)}"
-1855,6162,GO-2020877376,THEFT UNDER - BICYCLE,2020-05-06T00:00:00,2020,May,Wednesday,6,127,17,2020-05-11T00:00:00,2020,May,Monday,11,132,13,D22,Toronto,18,New Toronto (18),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,LOUIS GARNEAU,URBANA 5W,MT,21,SILBLK,600.0,STOLEN,1845,"{'type': 'Point', 'coordinates': (-79.52619608, 43.60067251)}"
-1856,6208,GO-20209013463,FTC PROBATION ORDER,2020-05-19T00:00:00,2020,May,Tuesday,19,140,5,2020-05-19T00:00:00,2020,May,Tuesday,19,140,20,D22,Toronto,18,New Toronto (18),"Apartment (Rooming House, Condo)",Apartment,OT,HYPER BEAR MOUN,MT,30,BLK,300.0,STOLEN,1846,"{'type': 'Point', 'coordinates': (-79.52619608, 43.60067251)}"
-1857,6226,GO-20209013463,FTC PROBATION ORDER,2020-05-19T00:00:00,2020,May,Tuesday,19,140,5,2020-05-19T00:00:00,2020,May,Tuesday,19,140,20,D22,Toronto,18,New Toronto (18),"Apartment (Rooming House, Condo)",Apartment,OT,BEAR MOUNTAIN,MT,30,BLK,300.0,STOLEN,1847,"{'type': 'Point', 'coordinates': (-79.52619608, 43.60067251)}"
-1858,6402,GO-20209015481,THEFT UNDER,2020-06-10T00:00:00,2020,June,Wednesday,10,162,21,2020-06-16T00:00:00,2020,June,Tuesday,16,168,15,D22,Toronto,18,New Toronto (18),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,15,WHI,700.0,STOLEN,1848,"{'type': 'Point', 'coordinates': (-79.50523674, 43.60076237)}"
-1859,6723,GO-20209018435,THEFT UNDER,2020-07-22T00:00:00,2020,July,Wednesday,22,204,14,2020-07-24T00:00:00,2020,July,Friday,24,206,14,D22,Toronto,18,New Toronto (18),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KO,SUTRA LTD,TO,11,DBL,3164.0,STOLEN,1849,"{'type': 'Point', 'coordinates': (-79.52415576, 43.6011476)}"
-1860,6807,GO-20201390910,THEFT UNDER - BICYCLE,2020-07-25T00:00:00,2020,July,Saturday,25,207,19,2020-07-30T00:00:00,2020,July,Thursday,30,212,14,D22,Toronto,18,New Toronto (18),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ZZZ,,OT,0,,350.0,STOLEN,1850,"{'type': 'Point', 'coordinates': (-79.5055577, 43.59540238)}"
-1861,7098,GO-20209021557,THEFT UNDER,2020-08-27T00:00:00,2020,August,Thursday,27,240,15,2020-08-27T00:00:00,2020,August,Thursday,27,240,16,D22,Toronto,18,New Toronto (18),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,,MT,24,GRY,800.0,STOLEN,1851,"{'type': 'Point', 'coordinates': (-79.50426636, 43.59842917)}"
-1862,7483,GO-20201948587,THEFT OF EBIKE UNDER $5000,2020-10-09T00:00:00,2020,October,Friday,9,283,17,2020-10-10T00:00:00,2020,October,Saturday,10,284,11,D22,Toronto,18,New Toronto (18),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,E+4,EL,1,BLKBLU,3200.0,STOLEN,1852,"{'type': 'Point', 'coordinates': (-79.50758108000001, 43.6002216)}"
-1863,7605,GO-20209029022,THEFT UNDER,2020-11-07T00:00:00,2020,November,Saturday,7,312,11,2020-11-08T00:00:00,2020,November,Sunday,8,313,17,D22,Toronto,18,New Toronto (18),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,CONQUER 2,MT,24,BLK,687.0,STOLEN,1853,"{'type': 'Point', 'coordinates': (-79.52415576, 43.6011476)}"
-1864,7975,GO-20142164309,THEFT UNDER,2014-05-27T00:00:00,2014,May,Tuesday,27,147,15,2014-05-27T00:00:00,2014,May,Tuesday,27,147,16,D22,Toronto,18,New Toronto (18),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,DEKA,BM,1,TRQ,,STOLEN,1854,"{'type': 'Point', 'coordinates': (-79.51904513, 43.60044151)}"
-1865,8834,GO-20149006656,THEFT UNDER,2014-09-07T00:00:00,2014,September,Sunday,7,250,19,2014-09-07T00:00:00,2014,September,Sunday,7,250,21,D22,Toronto,18,New Toronto (18),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RM,WHISTLER30,MT,27,BLK,938.0,STOLEN,1855,"{'type': 'Point', 'coordinates': (-79.52245531, 43.59695537)}"
-1866,9005,GO-20143024783,INCIDENT,2014-09-30T00:00:00,2014,September,Tuesday,30,273,20,2014-09-30T00:00:00,2014,September,Tuesday,30,273,20,D22,Toronto,18,New Toronto (18),Unknown,Other,CANNONDALE,SYNAPSE,RC,21,WHI,2200.0,UNKNOWN,1856,"{'type': 'Point', 'coordinates': (-79.50639441, 43.60049471000001)}"
-1867,9006,GO-20143024783,INCIDENT,2014-09-30T00:00:00,2014,September,Tuesday,30,273,20,2014-09-30T00:00:00,2014,September,Tuesday,30,273,20,D22,Toronto,18,New Toronto (18),Unknown,Other,SCHWINN,SUSPEND,MT,21,BLU,300.0,UNKNOWN,1857,"{'type': 'Point', 'coordinates': (-79.50639441, 43.60049471000001)}"
-1868,10283,GO-20151430479,THEFT UNDER,2015-08-20T00:00:00,2015,August,Thursday,20,232,0,2015-08-20T00:00:00,2015,August,Thursday,20,232,0,D22,Toronto,18,New Toronto (18),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,96 VOLTS,EL,50,BLURED,4000.0,STOLEN,1859,"{'type': 'Point', 'coordinates': (-79.50072601, 43.60175975000001)}"
-1869,10412,GO-20151558327,THEFT UNDER,2015-09-08T00:00:00,2015,September,Tuesday,8,251,23,2015-09-09T00:00:00,2015,September,Wednesday,9,252,16,D22,Toronto,18,New Toronto (18),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,KNIGHT RIDER,EL,0,WHI,1825.0,STOLEN,1860,"{'type': 'Point', 'coordinates': (-79.50627079, 43.60326759)}"
-1870,10849,GO-20159010681,THEFT UNDER,2015-09-24T00:00:00,2015,September,Thursday,24,267,16,2015-09-25T00:00:00,2015,September,Friday,25,268,17,D22,Toronto,18,New Toronto (18),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,FIXIE GEAR BMX,RG,1,GRY,250.0,STOLEN,1861,"{'type': 'Point', 'coordinates': (-79.51798505, 43.60068281)}"
-1871,12495,GO-20161410872,THEFT UNDER - BICYCLE,2016-08-09T00:00:00,2016,August,Tuesday,9,222,23,2016-08-10T00:00:00,2016,August,Wednesday,10,223,17,D22,Toronto,18,New Toronto (18),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MA,,RG,7,GRY,1000.0,STOLEN,1862,"{'type': 'Point', 'coordinates': (-79.50523674, 43.60076237)}"
-1872,12527,GO-20161750651,THEFT UNDER - BICYCLE,2016-09-30T00:00:00,2016,September,Friday,30,274,20,2016-10-02T00:00:00,2016,October,Sunday,2,276,10,D22,Toronto,18,New Toronto (18),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUPERCYCLE,SUPERCYCLE,MT,15,REDSIL,100.0,STOLEN,1863,"{'type': 'Point', 'coordinates': (-79.51606452, 43.60112037)}"
-1873,12677,GO-20161902850,THEFT UNDER - BICYCLE,2016-10-26T00:00:00,2016,October,Wednesday,26,300,0,2016-10-26T00:00:00,2016,October,Wednesday,26,300,9,D22,Toronto,18,New Toronto (18),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,SEDONA,OT,24,GRY,400.0,STOLEN,1864,"{'type': 'Point', 'coordinates': (-79.50523674, 43.60076237)}"
-1874,12840,GO-20162139474,B&E,2016-12-02T00:00:00,2016,December,Friday,2,337,8,2016-12-02T00:00:00,2016,December,Friday,2,337,15,D22,Toronto,18,New Toronto (18),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,UNKNOWN,MT,21,BLK,600.0,STOLEN,1865,"{'type': 'Point', 'coordinates': (-79.50002964, 43.60300946)}"
-1875,14461,GO-20189032273,THEFT UNDER - BICYCLE,2018-09-27T00:00:00,2018,September,Thursday,27,270,9,2018-09-28T00:00:00,2018,September,Friday,28,271,20,D22,Toronto,18,New Toronto (18),Schools During Supervised Activity,Educational,OT,AVANT 2017,RC,40,,750.0,STOLEN,1866,"{'type': 'Point', 'coordinates': (-79.52020263, 43.59744383000001)}"
-1876,14700,GO-20179013265,THEFT UNDER - BICYCLE,2017-08-14T00:00:00,2017,August,Monday,14,226,22,2017-08-22T00:00:00,2017,August,Tuesday,22,234,17,D22,Toronto,18,New Toronto (18),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,DB,RESPONSE,MT,21,GRN,0.0,STOLEN,1868,"{'type': 'Point', 'coordinates': (-79.52280387, 43.59782434)}"
-1877,14717,GO-20179015025,THEFT UNDER - BICYCLE,2017-09-16T00:00:00,2017,September,Saturday,16,259,12,2017-09-17T00:00:00,2017,September,Sunday,17,260,18,D22,Toronto,18,New Toronto (18),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,LONDON MD,TO,10,OTH,700.0,STOLEN,1869,"{'type': 'Point', 'coordinates': (-79.50523674, 43.60076237)}"
-1878,14788,GO-2018945105,THEFT UNDER - BICYCLE,2018-05-25T00:00:00,2018,May,Friday,25,145,21,2018-05-25T00:00:00,2018,May,Friday,25,145,21,D22,Toronto,18,New Toronto (18),Bar / Restaurant,Commercial,FELT,,MT,10,ONG,600.0,STOLEN,1870,"{'type': 'Point', 'coordinates': (-79.49846253, 43.60226263)}"
-1879,14806,GO-20189019759,THEFT UNDER - BICYCLE,2018-06-21T00:00:00,2018,June,Thursday,21,172,11,2018-06-22T00:00:00,2018,June,Friday,22,173,9,D22,Toronto,18,New Toronto (18),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FJ,,MT,24,BLK,700.0,STOLEN,1871,"{'type': 'Point', 'coordinates': (-79.50111278, 43.59970039)}"
-1880,14807,GO-20189019759,THEFT UNDER - BICYCLE,2018-06-21T00:00:00,2018,June,Thursday,21,172,11,2018-06-22T00:00:00,2018,June,Friday,22,173,9,D22,Toronto,18,New Toronto (18),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,,MT,12,BLU,400.0,STOLEN,1872,"{'type': 'Point', 'coordinates': (-79.50111278, 43.59970039)}"
-1881,14981,GO-20159008941,THEFT UNDER,2015-10-22T00:00:00,2015,October,Thursday,22,295,19,2015-10-24T00:00:00,2015,October,Saturday,24,297,14,D22,Toronto,18,New Toronto (18),Convenience Stores,Commercial,OT,DUBLIN MD,MT,27,BLK,880.0,STOLEN,1873,"{'type': 'Point', 'coordinates': (-79.51182359, 43.59932497)}"
-1882,15018,GO-20161410872,THEFT UNDER - BICYCLE,2016-08-09T00:00:00,2016,August,Tuesday,9,222,23,2016-08-10T00:00:00,2016,August,Wednesday,10,223,17,D22,Toronto,18,New Toronto (18),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MARIN OR MARINO,NONE,UN,8,GRY,1000.0,STOLEN,1874,"{'type': 'Point', 'coordinates': (-79.50523674, 43.60076237)}"
-1883,17344,GO-20201170574,THEFT UNDER - BICYCLE,2020-06-24T00:00:00,2020,June,Wednesday,24,176,12,2020-06-25T00:00:00,2020,June,Thursday,25,177,16,D22,Toronto,18,New Toronto (18),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CCM,,MT,3,GRN,200.0,STOLEN,1875,"{'type': 'Point', 'coordinates': (-79.49997265, 43.59994362)}"
-1884,17395,GO-20209024595,THEFT UNDER,2020-08-01T00:00:00,2020,August,Saturday,1,214,12,2020-09-26T00:00:00,2020,September,Saturday,26,270,12,D22,Toronto,18,New Toronto (18),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ROCKHOPPER,MT,18,BLK,1200.0,STOLEN,1876,"{'type': 'Point', 'coordinates': (-79.52415576, 43.6011476)}"
-1885,17519,GO-20181900799,THEFT UNDER - BICYCLE,2018-10-14T00:00:00,2018,October,Sunday,14,287,17,2018-10-14T00:00:00,2018,October,Sunday,14,287,21,D22,Toronto,18,New Toronto (18),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,CRD,RC,10,REDWHI,1000.0,STOLEN,1877,"{'type': 'Point', 'coordinates': (-79.51130318, 43.59810432)}"
-1886,17700,GO-2020499561,THEFT UNDER,2020-02-29T00:00:00,2020,February,Saturday,29,60,17,2020-03-09T00:00:00,2020,March,Monday,9,69,22,D22,Toronto,18,New Toronto (18),"Apartment (Rooming House, Condo)",Apartment,EMMO,KNIGHT,EL,1,BLUBLK,2800.0,STOLEN,1878,"{'type': 'Point', 'coordinates': (-79.50886163, 43.60153841)}"
-1887,17729,GO-20179015025,THEFT UNDER - BICYCLE,2017-09-16T00:00:00,2017,September,Saturday,16,259,12,2017-09-17T00:00:00,2017,September,Sunday,17,260,18,D22,Toronto,18,New Toronto (18),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,LONDON MD,TO,10,OTH,700.0,STOLEN,1879,"{'type': 'Point', 'coordinates': (-79.50523674, 43.60076237)}"
-1888,17765,GO-20172061139,THEFT UNDER - BICYCLE,2017-11-14T00:00:00,2017,November,Tuesday,14,318,10,2017-11-15T00:00:00,2017,November,Wednesday,15,319,8,D22,Toronto,18,New Toronto (18),Schools During Supervised Activity,Educational,CCM,SL2.0,MT,21,BLK,400.0,STOLEN,1880,"{'type': 'Point', 'coordinates': (-79.51904513, 43.60044151)}"
-1889,17891,GO-20189028302,THEFT UNDER - BICYCLE,2018-08-17T00:00:00,2018,August,Friday,17,229,0,2018-08-28T00:00:00,2018,August,Tuesday,28,240,15,D22,Toronto,18,New Toronto (18),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,860 ATX,MT,12,YEL,250.0,STOLEN,1881,"{'type': 'Point', 'coordinates': (-79.50758108000001, 43.6002216)}"
-1890,17907,GO-20189030861,THEFT UNDER - BICYCLE,2018-09-17T00:00:00,2018,September,Monday,17,260,17,2018-09-17T00:00:00,2018,September,Monday,17,260,19,D22,Toronto,18,New Toronto (18),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,MT,24,WHI,0.0,STOLEN,1882,"{'type': 'Point', 'coordinates': (-79.50299237, 43.60125977)}"
-1891,17970,GO-20159003761,THEFT UNDER,2015-06-19T00:00:00,2015,June,Friday,19,170,8,2015-06-19T00:00:00,2015,June,Friday,19,170,15,D22,Toronto,18,New Toronto (18),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,,TO,10,WHI,75.0,STOLEN,1883,"{'type': 'Point', 'coordinates': (-79.52020263, 43.59744383000001)}"
-1892,17997,GO-20159007465,THEFT UNDER,2015-09-19T00:00:00,2015,September,Saturday,19,262,17,2015-09-20T00:00:00,2015,September,Sunday,20,263,17,D22,Toronto,18,New Toronto (18),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,INDIE,MT,24,BLK,600.0,STOLEN,1884,"{'type': 'Point', 'coordinates': (-79.50639441, 43.60049471000001)}"
-1893,18032,GO-20161302447,THEFT FROM MOTOR VEHICLE OVER,2016-07-18T00:00:00,2016,July,Monday,18,200,7,2016-07-24T00:00:00,2016,July,Sunday,24,206,22,D22,Toronto,18,New Toronto (18),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCOTT,ADDICT,RG,22,BLK,9500.0,STOLEN,1885,"{'type': 'Point', 'coordinates': (-79.50002964, 43.60300946)}"
-1894,20836,GO-20209030386,THEFT UNDER,2020-11-08T00:00:00,2020,November,Sunday,8,313,0,2020-11-23T00:00:00,2020,November,Monday,23,328,18,D22,Toronto,18,New Toronto (18),"Apartment (Rooming House, Condo)",Apartment,GI,REVEL 29ER 1,MT,24,SIL,600.0,STOLEN,1886,"{'type': 'Point', 'coordinates': (-79.52415576, 43.6011476)}"
-1895,20992,GO-20199013320,THEFT UNDER,2019-04-27T00:00:00,2019,April,Saturday,27,117,12,2019-04-28T00:00:00,2019,April,Sunday,28,118,9,D22,Toronto,18,New Toronto (18),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,TO,7,RED,300.0,STOLEN,1887,"{'type': 'Point', 'coordinates': (-79.50627079, 43.60326759)}"
-1896,21111,GO-20209007355,THEFT UNDER,2020-02-27T00:00:00,2020,February,Thursday,27,58,5,2020-02-29T00:00:00,2020,February,Saturday,29,60,19,D22,Toronto,18,New Toronto (18),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,24,BLK,800.0,STOLEN,1888,"{'type': 'Point', 'coordinates': (-79.52415576, 43.6011476)}"
-1897,21314,GO-20181273899,THEFT OF EBIKE UNDER $5000,2018-07-12T00:00:00,2018,July,Thursday,12,193,14,2018-07-12T00:00:00,2018,July,Thursday,12,193,23,D22,Toronto,18,New Toronto (18),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TEO,,EL,1,BLK,3000.0,STOLEN,1889,"{'type': 'Point', 'coordinates': (-79.51798505, 43.60068281)}"
-1898,21317,GO-20189023096,THEFT UNDER,2018-07-16T00:00:00,2018,July,Monday,16,197,16,2018-07-19T00:00:00,2018,July,Thursday,19,200,17,D22,Toronto,18,New Toronto (18),"Apartment (Rooming House, Condo)",Apartment,GI,TALON 2,MT,21,BLK,899.0,STOLEN,1890,"{'type': 'Point', 'coordinates': (-79.52619608, 43.60067251)}"
-1899,21318,GO-20189023096,THEFT UNDER,2018-07-16T00:00:00,2018,July,Monday,16,197,16,2018-07-19T00:00:00,2018,July,Thursday,19,200,17,D22,Toronto,18,New Toronto (18),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,21,,899.0,STOLEN,1891,"{'type': 'Point', 'coordinates': (-79.52619608, 43.60067251)}"
-1900,21368,GO-20182062390,THEFT UNDER,2018-11-07T00:00:00,2018,November,Wednesday,7,311,12,2018-11-08T00:00:00,2018,November,Thursday,8,312,15,D22,Toronto,18,New Toronto (18),"Single Home, House (Attach Garage, Cottage, Mobile)",House,LINUS,,RG,18,,900.0,STOLEN,1892,"{'type': 'Point', 'coordinates': (-79.50515998, 43.6035065)}"
-1901,21369,GO-20182062390,THEFT UNDER,2018-11-07T00:00:00,2018,November,Wednesday,7,311,12,2018-11-08T00:00:00,2018,November,Thursday,8,312,15,D22,Toronto,18,New Toronto (18),"Single Home, House (Attach Garage, Cottage, Mobile)",House,LINUS,,RG,18,,900.0,STOLEN,1893,"{'type': 'Point', 'coordinates': (-79.50515998, 43.6035065)}"
-1902,21995,GO-20149000428,THEFT UNDER,2014-01-14T00:00:00,2014,January,Tuesday,14,14,8,2014-01-14T00:00:00,2014,January,Tuesday,14,14,17,D22,Toronto,18,New Toronto (18),Schools During Supervised Activity,Educational,OT,,RG,3,BLU,600.0,STOLEN,1894,"{'type': 'Point', 'coordinates': (-79.51630482, 43.59432847)}"
-1903,22022,GO-20142487993,THEFT UNDER,2014-07-04T00:00:00,2014,July,Friday,4,185,12,2014-07-13T00:00:00,2014,July,Sunday,13,194,10,D22,Toronto,18,New Toronto (18),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GARY FISHER,,MT,18,RED,2500.0,STOLEN,1895,"{'type': 'Point', 'coordinates': (-79.50313679, 43.59867002)}"
-1904,22031,GO-20149005654,THEFT UNDER,2014-08-05T00:00:00,2014,August,Tuesday,5,217,10,2014-08-05T00:00:00,2014,August,Tuesday,5,217,16,D22,Toronto,18,New Toronto (18),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,PALOMAR,MT,21,YEL,300.0,STOLEN,1896,"{'type': 'Point', 'coordinates': (-79.50758108000001, 43.6002216)}"
-1905,22063,GO-20159003909,THEFT UNDER,2015-06-22T00:00:00,2015,June,Monday,22,173,20,2015-06-24T00:00:00,2015,June,Wednesday,24,175,20,D22,Toronto,18,New Toronto (18),"Group Homes (Non-Profit, Halfway House, Social Agency)",Other,SP,,RG,5,LBL,170.0,STOLEN,1897,"{'type': 'Point', 'coordinates': (-79.50794492, 43.60112996)}"
-1906,22076,GO-20159005890,THEFT UNDER,2015-08-16T00:00:00,2015,August,Sunday,16,228,22,2015-08-17T00:00:00,2015,August,Monday,17,229,10,D22,Toronto,18,New Toronto (18),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,KIDS BIKE,MT,1,BLU,30.0,STOLEN,1898,"{'type': 'Point', 'coordinates': (-79.51390938, 43.59883491)}"
-1907,22086,GO-20159007602,THEFT UNDER,2015-09-21T00:00:00,2015,September,Monday,21,264,15,2015-09-22T00:00:00,2015,September,Tuesday,22,265,22,D22,Toronto,18,New Toronto (18),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,CA,29R SL1,MT,27,BLK,2200.0,STOLEN,1899,"{'type': 'Point', 'coordinates': (-79.51800914, 43.59794793)}"
-1908,22092,GO-20159008751,THEFT UNDER,2015-10-19T00:00:00,2015,October,Monday,19,292,12,2015-10-19T00:00:00,2015,October,Monday,19,292,17,D22,Toronto,18,New Toronto (18),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,MT,10,RED,500.0,STOLEN,1900,"{'type': 'Point', 'coordinates': (-79.51606452, 43.60112037)}"
-1909,23993,GO-20181919096,THEFT UNDER - BICYCLE,2018-10-17T00:00:00,2018,October,Wednesday,17,290,1,2018-10-18T00:00:00,2018,October,Thursday,18,291,18,D22,Toronto,18,New Toronto (18),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,THRESHOLD,OT,18,BLK,1200.0,STOLEN,1901,"{'type': 'Point', 'coordinates': (-79.52415576, 43.6011476)}"
-1910,24046,GO-20199017633,THEFT UNDER,2019-06-06T00:00:00,2019,June,Thursday,6,157,18,2019-06-06T00:00:00,2019,June,Thursday,6,157,23,D22,Toronto,18,New Toronto (18),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CC,NEVADA,MT,10,SIL,0.0,STOLEN,1902,"{'type': 'Point', 'coordinates': (-79.51072999, 43.60228874)}"
-1911,24144,GO-202097970,THEFT UNDER,2020-01-15T00:00:00,2020,January,Wednesday,15,15,6,2020-01-15T00:00:00,2020,January,Wednesday,15,15,8,D22,Toronto,18,New Toronto (18),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,SC,1,RED,750.0,STOLEN,1903,"{'type': 'Point', 'coordinates': (-79.51182359, 43.59932497)}"
-1912,24214,GO-20171475466,THEFT UNDER - BICYCLE,2017-08-15T00:00:00,2017,August,Tuesday,15,227,10,2017-08-15T00:00:00,2017,August,Tuesday,15,227,20,D22,Toronto,18,New Toronto (18),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GIANT,,MT,21,BLUSIL,,STOLEN,1904,"{'type': 'Point', 'coordinates': (-79.52274103, 43.60067466)}"
-1913,24292,GO-20189011429,THEFT UNDER - BICYCLE,2018-04-11T00:00:00,2018,April,Wednesday,11,101,6,2018-04-12T00:00:00,2018,April,Thursday,12,102,18,D22,Toronto,18,New Toronto (18),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,21,GRN,300.0,STOLEN,1905,"{'type': 'Point', 'coordinates': (-79.5055577, 43.59540238)}"
-1914,2479,GO-20189017585,THEFT UNDER - BICYCLE,2018-06-05T00:00:00,2018,June,Tuesday,5,156,19,2018-06-06T00:00:00,2018,June,Wednesday,6,157,14,D31,Toronto,24,Black Creek (24),"Apartment (Rooming House, Condo)",Apartment,UK,CARA -BLACK AND,EL,55,ONG,2000.0,STOLEN,1906,"{'type': 'Point', 'coordinates': (-79.50973955, 43.76046034)}"
-1915,3032,GO-20189024621,THEFT UNDER - BICYCLE,2018-07-30T00:00:00,2018,July,Monday,30,211,21,2018-07-31T00:00:00,2018,July,Tuesday,31,212,9,D31,Toronto,24,Black Creek (24),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,,MT,3,RED,120.0,STOLEN,1907,"{'type': 'Point', 'coordinates': (-79.52249371, 43.76748998)}"
-1916,3033,GO-20189024621,THEFT UNDER - BICYCLE,2018-07-30T00:00:00,2018,July,Monday,30,211,21,2018-07-31T00:00:00,2018,July,Tuesday,31,212,9,D31,Toronto,24,Black Creek (24),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,3,GRN,30.0,STOLEN,1908,"{'type': 'Point', 'coordinates': (-79.52249371, 43.76748998)}"
-1917,3262,GO-20189027172,THEFT UNDER - BICYCLE,2018-08-11T00:00:00,2018,August,Saturday,11,223,6,2018-08-20T00:00:00,2018,August,Monday,20,232,17,D31,Toronto,24,Black Creek (24),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,SC,1,SIL,55.0,STOLEN,1909,"{'type': 'Point', 'coordinates': (-79.5187813, 43.76191810000001)}"
-1918,3263,GO-20189027172,THEFT UNDER - BICYCLE,2018-08-11T00:00:00,2018,August,Saturday,11,223,6,2018-08-20T00:00:00,2018,August,Monday,20,232,17,D31,Toronto,24,Black Creek (24),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,OT,27,BLK,819.0,STOLEN,1910,"{'type': 'Point', 'coordinates': (-79.5187813, 43.76191810000001)}"
-1919,3264,GO-20189027172,THEFT UNDER - BICYCLE,2018-08-11T00:00:00,2018,August,Saturday,11,223,6,2018-08-20T00:00:00,2018,August,Monday,20,232,17,D31,Toronto,24,Black Creek (24),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,,MT,21,RED,170.0,STOLEN,1911,"{'type': 'Point', 'coordinates': (-79.5187813, 43.76191810000001)}"
-1920,3265,GO-20189027172,THEFT UNDER - BICYCLE,2018-08-11T00:00:00,2018,August,Saturday,11,223,6,2018-08-20T00:00:00,2018,August,Monday,20,232,17,D31,Toronto,24,Black Creek (24),"Single Home, House (Attach Garage, Cottage, Mobile)",House,HF,,BM,1,RED,60.0,STOLEN,1912,"{'type': 'Point', 'coordinates': (-79.5187813, 43.76191810000001)}"
-1921,4321,GO-2019926582,THEFT UNDER - BICYCLE,2019-05-19T00:00:00,2019,May,Sunday,19,139,12,2019-05-22T00:00:00,2019,May,Wednesday,22,142,19,D31,Toronto,24,Black Creek (24),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CCM,,MT,15,BLU,145.0,STOLEN,1913,"{'type': 'Point', 'coordinates': (-79.51472666, 43.76721178)}"
-1922,5254,GO-20199029014,THEFT UNDER,2019-09-02T00:00:00,2019,September,Monday,2,245,17,2019-09-06T00:00:00,2019,September,Friday,6,249,18,D31,Toronto,24,Black Creek (24),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,10,BLK,0.0,STOLEN,1914,"{'type': 'Point', 'coordinates': (-79.51872198, 43.76916389)}"
-1923,5259,GO-20191715492,THEFT UNDER - BICYCLE,2019-09-07T00:00:00,2019,September,Saturday,7,250,15,2019-09-07T00:00:00,2019,September,Saturday,7,250,15,D31,Toronto,24,Black Creek (24),"Open Areas (Lakes, Parks, Rivers)",Outside,UNKNOWN MAKE,,MT,21,,,STOLEN,1915,"{'type': 'Point', 'coordinates': (-79.50973955, 43.76046034)}"
-1924,5260,GO-20191715492,THEFT UNDER - BICYCLE,2019-09-07T00:00:00,2019,September,Saturday,7,250,15,2019-09-07T00:00:00,2019,September,Saturday,7,250,15,D31,Toronto,24,Black Creek (24),"Open Areas (Lakes, Parks, Rivers)",Outside,NEXT,LASER,MT,21,,,UNKNOWN,1916,"{'type': 'Point', 'coordinates': (-79.50973955, 43.76046034)}"
-1925,6618,GO-20201305070,THEFT UNDER - BICYCLE,2020-06-27T00:00:00,2020,June,Saturday,27,179,13,2020-07-14T00:00:00,2020,July,Tuesday,14,196,12,D31,Toronto,24,Black Creek (24),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,CIRUS,MT,27,GRY,1400.0,STOLEN,1917,"{'type': 'Point', 'coordinates': (-79.51872198, 43.76916389)}"
-1926,8231,GO-20142373855,ROBBERY - MUGGING,2014-06-26T00:00:00,2014,June,Thursday,26,177,16,2014-06-26T00:00:00,2014,June,Thursday,26,177,17,D31,Toronto,24,Black Creek (24),"Open Areas (Lakes, Parks, Rivers)",Outside,SCHWINN,KICKER,MT,21,BLK,300.0,STOLEN,1918,"{'type': 'Point', 'coordinates': (-79.52687378000002, 43.76447177)}"
-1927,8271,GO-20149004511,THEFT UNDER,2014-05-31T00:00:00,2014,May,Saturday,31,151,18,2014-06-27T00:00:00,2014,June,Friday,27,178,18,D31,Toronto,24,Black Creek (24),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,MT,8,PLE,0.0,STOLEN,1919,"{'type': 'Point', 'coordinates': (-79.51807494, 43.75897564)}"
-1928,8813,GO-20142859021,DOMESTIC INCIDENT,2014-09-06T00:00:00,2014,September,Saturday,6,249,23,2014-09-06T00:00:00,2014,September,Saturday,6,249,23,D31,Toronto,24,Black Creek (24),"Apartment (Rooming House, Condo)",Apartment,SUPERCYCLE,18 SPEED,MT,18,RED,300.0,UNKNOWN,1920,"{'type': 'Point', 'coordinates': (-79.51614161, 43.75984076)}"
-1929,9167,GO-20143275721,THEFT UNDER,2014-08-20T00:00:00,2014,August,Wednesday,20,232,19,2014-11-10T00:00:00,2014,November,Monday,10,314,14,D31,Toronto,24,Black Creek (24),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,MT,0,BLK,200.0,STOLEN,1921,"{'type': 'Point', 'coordinates': (-79.52125097, 43.7659571)}"
-1930,9168,GO-20143275721,THEFT UNDER,2014-08-20T00:00:00,2014,August,Wednesday,20,232,19,2014-11-10T00:00:00,2014,November,Monday,10,314,14,D31,Toronto,24,Black Creek (24),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,MT,0,REDBLK,300.0,STOLEN,1922,"{'type': 'Point', 'coordinates': (-79.52125097, 43.7659571)}"
-1931,9169,GO-20143275721,THEFT UNDER,2014-08-20T00:00:00,2014,August,Wednesday,20,232,19,2014-11-10T00:00:00,2014,November,Monday,10,314,14,D31,Toronto,24,Black Creek (24),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,MT,0,PNK,140.0,STOLEN,1923,"{'type': 'Point', 'coordinates': (-79.52125097, 43.7659571)}"
-1932,9274,GO-2015139969,THEFT UNDER,2015-01-23T00:00:00,2015,January,Friday,23,23,20,2015-01-24T00:00:00,2015,January,Saturday,24,24,14,D31,Toronto,24,Black Creek (24),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,SC,1,BLU,1350.0,STOLEN,1924,"{'type': 'Point', 'coordinates': (-79.52036423, 43.76882728)}"
-1933,10514,GO-20159007502,THEFT UNDER,2015-09-20T00:00:00,2015,September,Sunday,20,263,16,2015-09-21T00:00:00,2015,September,Monday,21,264,11,D31,Toronto,24,Black Creek (24),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,,RG,10,DBL,150.0,STOLEN,1925,"{'type': 'Point', 'coordinates': (-79.51472666, 43.76721178)}"
-1934,11215,GO-20151948702,PROPERTY - FOUND,2015-10-30T00:00:00,2015,October,Friday,30,303,9,2015-10-30T00:00:00,2015,October,Friday,30,303,9,D31,Toronto,24,Black Creek (24),"Police / Courts (Parole Board, Probation Office)",Other,JAMIS,EXPLORER 3.0,MT,99,GLDWHI,,UNKNOWN,1926,"{'type': 'Point', 'coordinates': (-79.52424633, 43.75592926000001)}"
-1935,11216,GO-20151948702,PROPERTY - FOUND,2015-10-30T00:00:00,2015,October,Friday,30,303,9,2015-10-30T00:00:00,2015,October,Friday,30,303,9,D31,Toronto,24,Black Creek (24),"Police / Courts (Parole Board, Probation Office)",Other,UK,,MT,99,PLE,,UNKNOWN,1927,"{'type': 'Point', 'coordinates': (-79.52424633, 43.75592926000001)}"
-1936,11542,GO-2016816381,THEFT FROM MOTOR VEHICLE UNDER,2016-05-12T00:00:00,2016,May,Thursday,12,133,12,2016-05-12T00:00:00,2016,May,Thursday,12,133,13,D31,Toronto,24,Black Creek (24),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,RZ ONE,MT,21,SIL,2000.0,STOLEN,1928,"{'type': 'Point', 'coordinates': (-79.51872198, 43.76916389)}"
-1937,12295,GO-20161597864,FRAUD OVER,2016-09-08T00:00:00,2016,September,Thursday,8,252,19,2016-09-08T00:00:00,2016,September,Thursday,8,252,19,D31,Toronto,24,Black Creek (24),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,TOTAL EV 500,OT,1,BLU,,STOLEN,1929,"{'type': 'Point', 'coordinates': (-79.52141586, 43.76261323)}"
-1938,14531,GO-20191217189,ROBBERY - SWARMING,2019-06-30T00:00:00,2019,June,Sunday,30,181,17,2019-06-30T00:00:00,2019,June,Sunday,30,181,17,D31,Toronto,24,Black Creek (24),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,HONDA,CRF,OT,10,RED,2000.0,STOLEN,1930,"{'type': 'Point', 'coordinates': (-79.50973955, 43.76046034)}"
-1939,14532,GO-20191217189,ROBBERY - SWARMING,2019-06-30T00:00:00,2019,June,Sunday,30,181,17,2019-06-30T00:00:00,2019,June,Sunday,30,181,17,D31,Toronto,24,Black Creek (24),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,HONDA,CRF,OT,10,RED,2000.0,STOLEN,1931,"{'type': 'Point', 'coordinates': (-79.50973955, 43.76046034)}"
-1940,14556,GO-20191465550,THEFT UNDER - BICYCLE,2019-07-29T00:00:00,2019,July,Monday,29,210,16,2019-08-03T00:00:00,2019,August,Saturday,3,215,18,D31,Toronto,24,Black Creek (24),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,,MT,4,BLK,100.0,STOLEN,1932,"{'type': 'Point', 'coordinates': (-79.51872198, 43.76916389)}"
-1941,14724,GO-20179015598,THEFT UNDER - BICYCLE,2017-09-23T00:00:00,2017,September,Saturday,23,266,18,2017-09-24T00:00:00,2017,September,Sunday,24,267,0,D31,Toronto,24,Black Creek (24),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,1,YEL,180.0,STOLEN,1933,"{'type': 'Point', 'coordinates': (-79.52036423, 43.76882728)}"
-1942,14943,GO-2015648147,THEFT UNDER,2015-04-18T00:00:00,2015,April,Saturday,18,108,21,2015-04-19T00:00:00,2015,April,Sunday,19,109,16,D31,Toronto,24,Black Creek (24),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,SC,1,BLK,400.0,STOLEN,1934,"{'type': 'Point', 'coordinates': (-79.50973955, 43.76046034)}"
-1943,15034,GO-20161758382,THEFT UNDER - BICYCLE,2016-10-04T00:00:00,2016,October,Tuesday,4,278,20,2016-10-04T00:00:00,2016,October,Tuesday,4,278,20,D31,Toronto,24,Black Creek (24),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,EL,0,,700.0,STOLEN,1935,"{'type': 'Point', 'coordinates': (-79.51480908, 43.76028834)}"
-1944,17330,GO-20201012840,ROBBERY - MUGGING,2020-06-02T00:00:00,2020,June,Tuesday,2,154,3,2020-06-02T00:00:00,2020,June,Tuesday,2,154,4,D31,Toronto,24,Black Creek (24),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,HYPER E-BIKE,EL,25,BLK,800.0,STOLEN,1936,"{'type': 'Point', 'coordinates': (-79.51340471, 43.75805965)}"
-1945,17917,GO-20142089260,THEFT UNDER,2014-04-28T00:00:00,2014,April,Monday,28,118,8,2014-05-16T00:00:00,2014,May,Friday,16,136,8,D31,Toronto,24,Black Creek (24),Schools During Un-Supervised Activity,Educational,SUPERCYCLE,,MT,12,BLK,,STOLEN,1937,"{'type': 'Point', 'coordinates': (-79.51472666, 43.76721178)}"
-1946,17932,GO-20142473402,POSSESSION PROPERTY OBC UNDER,2014-07-11T00:00:00,2014,July,Friday,11,192,2,2014-07-11T00:00:00,2014,July,Friday,11,192,22,D31,Toronto,24,Black Creek (24),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RALEIGH,BEAST,MT,21,BLURED,500.0,STOLEN,1938,"{'type': 'Point', 'coordinates': (-79.51872198, 43.76916389)}"
-1947,17961,GO-20159002593,THEFT UNDER,2015-05-04T00:00:00,2015,May,Monday,4,124,10,2015-05-10T00:00:00,2015,May,Sunday,10,130,18,D31,Toronto,24,Black Creek (24),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CR,,MT,10,BLK,,STOLEN,1939,"{'type': 'Point', 'coordinates': (-79.52979844000001, 43.76682693)}"
-1948,17998,GO-20159008401,THEFT UNDER,2015-10-09T00:00:00,2015,October,Friday,9,282,16,2015-10-09T00:00:00,2015,October,Friday,9,282,20,D31,Toronto,24,Black Creek (24),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,2012 JAMIS TRAI,MT,24,GRN,400.0,STOLEN,1940,"{'type': 'Point', 'coordinates': (-79.51807494, 43.75897564)}"
-1949,21297,GO-20181136829,THEFT UNDER - BICYCLE,2018-06-22T00:00:00,2018,June,Friday,22,173,12,2018-06-22T00:00:00,2018,June,Friday,22,173,16,D31,Toronto,24,Black Creek (24),Schools During Supervised Activity,Educational,BMX,UNKNOWN,BM,1,BLKGRY,100.0,STOLEN,1941,"{'type': 'Point', 'coordinates': (-79.51472666, 43.76721178)}"
-1950,21341,GO-20181608727,THEFT UNDER - BICYCLE,2018-08-29T00:00:00,2018,August,Wednesday,29,241,22,2018-08-30T00:00:00,2018,August,Thursday,30,242,22,D31,Toronto,24,Black Creek (24),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,,OT,0,RED,125.0,STOLEN,1942,"{'type': 'Point', 'coordinates': (-79.51769107, 43.75723544)}"
-1951,22085,GO-20151632697,THEFT UNDER,2015-09-20T00:00:00,2015,September,Sunday,20,263,16,2015-09-21T00:00:00,2015,September,Monday,21,264,13,D31,Toronto,24,Black Creek (24),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,NITRO XT,RG,7,DBL,,STOLEN,1943,"{'type': 'Point', 'coordinates': (-79.51472666, 43.76721178)}"
-1952,24161,GO-2020708269,THEFT OF EBIKE UNDER $5000,2020-04-11T00:00:00,2020,April,Saturday,11,102,13,2020-04-12T00:00:00,2020,April,Sunday,12,103,16,D31,Toronto,24,Black Creek (24),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,DAY,EL,1,BLK,1800.0,STOLEN,1944,"{'type': 'Point', 'coordinates': (-79.5088961, 43.76454293)}"
-1953,24348,GO-20181405712,THEFT UNDER - BICYCLE,2018-08-01T00:00:00,2018,August,Wednesday,1,213,0,2018-08-01T00:00:00,2018,August,Wednesday,1,213,7,D31,Toronto,24,Black Creek (24),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,MT,0,GRN,,STOLEN,1945,"{'type': 'Point', 'coordinates': (-79.52742826, 43.76725345)}"
-1954,24349,GO-20181405712,THEFT UNDER - BICYCLE,2018-08-01T00:00:00,2018,August,Wednesday,1,213,0,2018-08-01T00:00:00,2018,August,Wednesday,1,213,7,D31,Toronto,24,Black Creek (24),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,BMX,OT,0,GRN,,STOLEN,1946,"{'type': 'Point', 'coordinates': (-79.52742826, 43.76725345)}"
-1955,24413,GO-20141904833,THEFT UNDER,2014-04-12T00:00:00,2014,April,Saturday,12,102,12,2014-04-16T00:00:00,2014,April,Wednesday,16,106,22,D31,Toronto,24,Black Creek (24),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN,TRIUMPH LASER,OT,3,,,STOLEN,1947,"{'type': 'Point', 'coordinates': (-79.50973955, 43.76046034)}"
-1956,24457,GO-2015944193,THEFT UNDER,2015-06-04T00:00:00,2015,June,Thursday,4,155,19,2015-06-04T00:00:00,2015,June,Thursday,4,155,19,D31,Toronto,24,Black Creek (24),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,MOUNTAIN CLIMBE,MT,18,BLKRED,50.0,STOLEN,1948,"{'type': 'Point', 'coordinates': (-79.51807494, 43.75897564)}"
-1957,24516,GO-2016816381,THEFT FROM MOTOR VEHICLE UNDER,2016-05-12T00:00:00,2016,May,Thursday,12,133,12,2016-05-12T00:00:00,2016,May,Thursday,12,133,13,D31,Toronto,24,Black Creek (24),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CANNONDALE,,MT,15,SIL,800.0,STOLEN,1949,"{'type': 'Point', 'coordinates': (-79.51872198, 43.76916389)}"
-1958,65,GO-2017158513,B&E,2017-01-26T00:00:00,2017,January,Thursday,26,26,1,2017-01-26T00:00:00,2017,January,Thursday,26,26,2,D31,Toronto,25,Glenfield-Jane Heights (25),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN,EBIKES,EL,3,,,STOLEN,1950,"{'type': 'Point', 'coordinates': (-79.52595446, 43.74487932)}"
-1959,591,GO-20179007928,THEFT UNDER,2017-06-11T00:00:00,2017,June,Sunday,11,162,20,2017-06-12T00:00:00,2017,June,Monday,12,163,20,D31,Toronto,25,Glenfield-Jane Heights (25),"Apartment (Rooming House, Condo)",Apartment,UK,GATTO,EL,35,BLU,1200.0,STOLEN,1951,"{'type': 'Point', 'coordinates': (-79.51508777, 43.74709495)}"
-1960,661,GO-20171090381,THEFT OF EBIKE UNDER $5000,2017-06-18T00:00:00,2017,June,Sunday,18,169,2,2017-06-21T00:00:00,2017,June,Wednesday,21,172,7,D31,Toronto,25,Glenfield-Jane Heights (25),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,EL,10,,,STOLEN,1952,"{'type': 'Point', 'coordinates': (-79.50156567, 43.74283405)}"
-1961,963,GO-20179010940,THEFT UNDER,2017-07-24T00:00:00,2017,July,Monday,24,205,17,2017-07-24T00:00:00,2017,July,Monday,24,205,20,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,1985,RC,8,LGR,400.0,STOLEN,1953,"{'type': 'Point', 'coordinates': (-79.50335565, 43.74582283)}"
-1962,965,GO-20179010940,THEFT UNDER,2017-07-24T00:00:00,2017,July,Monday,24,205,17,2017-07-24T00:00:00,2017,July,Monday,24,205,20,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,LASER,RC,8,LGR,1500.0,STOLEN,1954,"{'type': 'Point', 'coordinates': (-79.50335565, 43.74582283)}"
-1963,1672,GO-20171880981,THEFT UNDER - BICYCLE,2017-10-11T00:00:00,2017,October,Wednesday,11,284,15,2017-10-17T00:00:00,2017,October,Tuesday,17,290,18,D31,Toronto,25,Glenfield-Jane Heights (25),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,UNKNOWN,RG,1,BLUBLK,150.0,STOLEN,1955,"{'type': 'Point', 'coordinates': (-79.51040848, 43.74922746)}"
-1964,2211,GO-20189013057,THEFT UNDER - BICYCLE,2018-04-26T00:00:00,2018,April,Thursday,26,116,16,2018-04-27T00:00:00,2018,April,Friday,27,117,14,D31,Toronto,25,Glenfield-Jane Heights (25),Universities / Colleges,Educational,OT,04N1414,RG,6,WHI,130.0,STOLEN,1956,"{'type': 'Point', 'coordinates': (-79.50788955, 43.7592841)}"
-1965,3348,GO-20189028405,THEFT UNDER - BICYCLE,2018-08-15T00:00:00,2018,August,Wednesday,15,227,21,2018-08-29T00:00:00,2018,August,Wednesday,29,241,10,D31,Toronto,25,Glenfield-Jane Heights (25),"Apartment (Rooming House, Condo)",Apartment,UK,,OT,1,,300.0,STOLEN,1957,"{'type': 'Point', 'coordinates': (-79.50871654, 43.74712806)}"
-1966,4420,GO-20199017666,THEFT UNDER,2019-06-06T00:00:00,2019,June,Thursday,6,157,10,2019-06-06T00:00:00,2019,June,Thursday,6,157,17,D31,Toronto,25,Glenfield-Jane Heights (25),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CC,,RG,50,BLK,200.0,STOLEN,1958,"{'type': 'Point', 'coordinates': (-79.51787392, 43.75036091)}"
-1967,4577,GO-20191144915,THEFT UNDER,2019-06-20T00:00:00,2019,June,Thursday,20,171,12,2019-06-20T00:00:00,2019,June,Thursday,20,171,16,D31,Toronto,25,Glenfield-Jane Heights (25),"Gas Station (Self, Full, Attached Convenience)",Commercial,UK,1800,MT,10,RED,30.0,STOLEN,1959,"{'type': 'Point', 'coordinates': (-79.51769107, 43.75723544)}"
-1968,4847,GO-20191385521,ROBBERY - SWARMING,2019-07-23T00:00:00,2019,July,Tuesday,23,204,17,2019-07-23T00:00:00,2019,July,Tuesday,23,204,17,D31,Toronto,25,Glenfield-Jane Heights (25),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,MT,5,GRNBLK,150.0,STOLEN,1960,"{'type': 'Point', 'coordinates': (-79.51919844, 43.7528724)}"
-1969,5199,GO-20199028314,THEFT UNDER,2019-08-29T00:00:00,2019,August,Thursday,29,241,21,2019-08-30T00:00:00,2019,August,Friday,30,242,21,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,IN,CHAMONIX,MT,24,GRY,300.0,STOLEN,1961,"{'type': 'Point', 'coordinates': (-79.52346138, 43.74904436)}"
-1970,5976,GO-20209009463,THEFT UNDER - BICYCLE,2020-03-20T00:00:00,2020,March,Friday,20,80,2,2020-03-20T00:00:00,2020,March,Friday,20,80,17,D31,Toronto,25,Glenfield-Jane Heights (25),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,MOVELO ALGONQUI,MT,18,BLK,111.0,STOLEN,1962,"{'type': 'Point', 'coordinates': (-79.51289814, 43.75224824)}"
-1971,5977,GO-20209009463,THEFT UNDER - BICYCLE,2020-03-20T00:00:00,2020,March,Friday,20,80,2,2020-03-20T00:00:00,2020,March,Friday,20,80,17,D31,Toronto,25,Glenfield-Jane Heights (25),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,MOVELO ALGONQUI,MT,6,LBL,111.0,STOLEN,1963,"{'type': 'Point', 'coordinates': (-79.51289814, 43.75224824)}"
-1972,6176,GO-2020890246,B&E,2020-05-12T00:00:00,2020,May,Tuesday,12,133,3,2020-05-13T00:00:00,2020,May,Wednesday,13,134,14,D31,Toronto,25,Glenfield-Jane Heights (25),"Dealership (Car, Motorcycle, Marine, Trailer, Etc.)",Commercial,OTHER,,EL,0,,2000.0,STOLEN,1964,"{'type': 'Point', 'coordinates': (-79.52595446, 43.74487932)}"
-1973,6177,GO-2020890246,B&E,2020-05-12T00:00:00,2020,May,Tuesday,12,133,3,2020-05-13T00:00:00,2020,May,Wednesday,13,134,14,D31,Toronto,25,Glenfield-Jane Heights (25),"Dealership (Car, Motorcycle, Marine, Trailer, Etc.)",Commercial,OTHER,,EL,0,,2000.0,STOLEN,1965,"{'type': 'Point', 'coordinates': (-79.52595446, 43.74487932)}"
-1974,6178,GO-2020890246,B&E,2020-05-12T00:00:00,2020,May,Tuesday,12,133,3,2020-05-13T00:00:00,2020,May,Wednesday,13,134,14,D31,Toronto,25,Glenfield-Jane Heights (25),"Dealership (Car, Motorcycle, Marine, Trailer, Etc.)",Commercial,OTHER,,EL,0,,2000.0,STOLEN,1966,"{'type': 'Point', 'coordinates': (-79.52595446, 43.74487932)}"
-1975,6179,GO-2020890246,B&E,2020-05-12T00:00:00,2020,May,Tuesday,12,133,3,2020-05-13T00:00:00,2020,May,Wednesday,13,134,14,D31,Toronto,25,Glenfield-Jane Heights (25),"Dealership (Car, Motorcycle, Marine, Trailer, Etc.)",Commercial,OTHER,,EL,0,,2000.0,STOLEN,1967,"{'type': 'Point', 'coordinates': (-79.52595446, 43.74487932)}"
-1976,6180,GO-2020890246,B&E,2020-05-12T00:00:00,2020,May,Tuesday,12,133,3,2020-05-13T00:00:00,2020,May,Wednesday,13,134,14,D31,Toronto,25,Glenfield-Jane Heights (25),"Dealership (Car, Motorcycle, Marine, Trailer, Etc.)",Commercial,OTHER,,EL,0,,2000.0,STOLEN,1968,"{'type': 'Point', 'coordinates': (-79.52595446, 43.74487932)}"
-1977,6251,GO-2020776837,B&E,2020-04-24T00:00:00,2020,April,Friday,24,115,0,2020-04-24T00:00:00,2020,April,Friday,24,115,8,D31,Toronto,25,Glenfield-Jane Heights (25),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,COLNAGO,,MT,1,RED,,RECOVERED,1969,"{'type': 'Point', 'coordinates': (-79.52288598, 43.75138932)}"
-1978,6819,GO-20201400590,THEFT UNDER - BICYCLE,2020-07-27T00:00:00,2020,July,Monday,27,209,19,2020-07-27T00:00:00,2020,July,Monday,27,209,20,D31,Toronto,25,Glenfield-Jane Heights (25),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,ZZZ,,RG,0,BLUWHI,250.0,STOLEN,1970,"{'type': 'Point', 'coordinates': (-79.51703417, 43.75485496)}"
-1979,8033,GO-20142214522,THEFT UNDER,2014-06-01T00:00:00,2014,June,Sunday,1,152,18,2014-06-03T00:00:00,2014,June,Tuesday,3,154,19,D31,Toronto,25,Glenfield-Jane Heights (25),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DYNACRAFT,NITROUS,MT,1,RED,,STOLEN,1971,"{'type': 'Point', 'coordinates': (-79.50715447, 43.74847366)}"
-1980,8034,GO-20142214522,THEFT UNDER,2014-06-01T00:00:00,2014,June,Sunday,1,152,18,2014-06-03T00:00:00,2014,June,Tuesday,3,154,19,D31,Toronto,25,Glenfield-Jane Heights (25),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DYNACRAFT,NITROUS 24,MT,1,RED,,STOLEN,1972,"{'type': 'Point', 'coordinates': (-79.50715447, 43.74847366)}"
-1981,8223,GO-20142345336,THEFT UNDER,2014-06-20T00:00:00,2014,June,Friday,20,171,19,2014-06-22T00:00:00,2014,June,Sunday,22,173,17,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MEST,WICKED,MT,21,BLKWHI,150.0,STOLEN,1973,"{'type': 'Point', 'coordinates': (-79.51134996, 43.75013528)}"
-1982,8224,GO-20142345336,THEFT UNDER,2014-06-20T00:00:00,2014,June,Friday,20,171,19,2014-06-22T00:00:00,2014,June,Sunday,22,173,17,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MEST,WICKED,MT,21,BLKWHI,150.0,STOLEN,1974,"{'type': 'Point', 'coordinates': (-79.51134996, 43.75013528)}"
-1983,8429,GO-20142500493,THEFT UNDER,2014-07-15T00:00:00,2014,July,Tuesday,15,196,9,2014-07-15T00:00:00,2014,July,Tuesday,15,196,9,D31,Toronto,25,Glenfield-Jane Heights (25),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,MT,12,WHI,125.0,STOLEN,1975,"{'type': 'Point', 'coordinates': (-79.50146129, 43.74150072)}"
-1984,9359,GO-2015537044,THEFT UNDER,2015-03-31T00:00:00,2015,March,Tuesday,31,90,19,2015-03-31T00:00:00,2015,March,Tuesday,31,90,20,D31,Toronto,25,Glenfield-Jane Heights (25),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SURLY,OGRE,TO,18,DGR,1500.0,STOLEN,1976,"{'type': 'Point', 'coordinates': (-79.50171299, 43.74506703)}"
-1985,10026,GO-20151203716,THEFT UNDER,2015-07-10T00:00:00,2015,July,Friday,10,191,20,2015-07-15T00:00:00,2015,July,Wednesday,15,196,22,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,,OT,0,BLK,,STOLEN,1977,"{'type': 'Point', 'coordinates': (-79.50730271, 43.74143196)}"
-1986,10200,GO-20159005460,THEFT UNDER,2015-08-07T00:00:00,2015,August,Friday,7,219,14,2015-08-07T00:00:00,2015,August,Friday,7,219,15,D31,Toronto,25,Glenfield-Jane Heights (25),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,CCM,RG,5,DBL,200.0,STOLEN,1978,"{'type': 'Point', 'coordinates': (-79.50964031, 43.73967319)}"
-1987,10351,GO-20151483141,THEFT UNDER,2015-08-28T00:00:00,2015,August,Friday,28,240,10,2015-09-01T00:00:00,2015,September,Tuesday,1,244,21,D31,Toronto,25,Glenfield-Jane Heights (25),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,UNKNOWN,MT,18,,400.0,STOLEN,1979,"{'type': 'Point', 'coordinates': (-79.50287602, 43.73994232)}"
-1988,10352,GO-20151483141,THEFT UNDER,2015-08-28T00:00:00,2015,August,Friday,28,240,10,2015-09-01T00:00:00,2015,September,Tuesday,1,244,21,D31,Toronto,25,Glenfield-Jane Heights (25),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,ELECTRIC,FO,1,BLUSIL,500.0,STOLEN,1980,"{'type': 'Point', 'coordinates': (-79.50287602, 43.73994232)}"
-1989,10353,GO-20151483141,THEFT UNDER,2015-08-28T00:00:00,2015,August,Friday,28,240,10,2015-09-01T00:00:00,2015,September,Tuesday,1,244,21,D31,Toronto,25,Glenfield-Jane Heights (25),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,ELECTRIC,EL,1,,500.0,STOLEN,1981,"{'type': 'Point', 'coordinates': (-79.50287602, 43.73994232)}"
-1990,10354,GO-20151483141,THEFT UNDER,2015-08-28T00:00:00,2015,August,Friday,28,240,10,2015-09-01T00:00:00,2015,September,Tuesday,1,244,21,D31,Toronto,25,Glenfield-Jane Heights (25),"Private Property Structure (Pool, Shed, Detached Garage)",Other,IRON HORSE,,MT,18,BLK,200.0,STOLEN,1982,"{'type': 'Point', 'coordinates': (-79.50287602, 43.73994232)}"
-1991,10376,GO-20151501796,THEFT UNDER,2015-08-28T00:00:00,2015,August,Friday,28,240,22,2015-08-31T00:00:00,2015,August,Monday,31,243,16,D31,Toronto,25,Glenfield-Jane Heights (25),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN,UNKNOWN,EL,1,BLK,700.0,STOLEN,1983,"{'type': 'Point', 'coordinates': (-79.50156567, 43.74283405)}"
-1992,10420,GO-20159006844,THEFT UNDER,2015-09-05T00:00:00,2015,September,Saturday,5,248,12,2015-09-07T00:00:00,2015,September,Monday,7,250,13,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DB,,MT,18,ONG,650.0,STOLEN,1984,"{'type': 'Point', 'coordinates': (-79.50908295, 43.7581337)}"
-1993,10421,GO-20159006844,THEFT UNDER,2015-09-05T00:00:00,2015,September,Saturday,5,248,12,2015-09-07T00:00:00,2015,September,Monday,7,250,13,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,IN,,MT,18,GRY,350.0,STOLEN,1985,"{'type': 'Point', 'coordinates': (-79.50908295, 43.7581337)}"
-1994,10458,GO-20151568707,THEFT UNDER,2015-09-10T00:00:00,2015,September,Thursday,10,253,18,2015-09-11T00:00:00,2015,September,Friday,11,254,8,D31,Toronto,25,Glenfield-Jane Heights (25),"Apartment (Rooming House, Condo)",Apartment,SUPERCYCLE,,OT,0,BLK,200.0,STOLEN,1986,"{'type': 'Point', 'coordinates': (-79.50684467, 43.74032482)}"
-1995,15005,GO-20169006825,THEFT UNDER - BICYCLE,2016-07-06T00:00:00,2016,July,Wednesday,6,188,11,2016-07-07T00:00:00,2016,July,Thursday,7,189,0,D32,Toronto,40,St.Andrew-Windfields (40),Ttc Subway Station,Transit,TR,501073,RG,40,SIL,380.0,STOLEN,2027,"{'type': 'Point', 'coordinates': (-79.40668473, 43.7441499)}"
-1996,10459,GO-20151568707,THEFT UNDER,2015-09-10T00:00:00,2015,September,Thursday,10,253,18,2015-09-11T00:00:00,2015,September,Friday,11,254,8,D31,Toronto,25,Glenfield-Jane Heights (25),"Apartment (Rooming House, Condo)",Apartment,SUPERCYCLE,,OT,0,BLK,200.0,STOLEN,1987,"{'type': 'Point', 'coordinates': (-79.50684467, 43.74032482)}"
-1997,10660,GO-20151811443,THEFT UNDER,2015-10-19T00:00:00,2015,October,Monday,19,292,18,2015-10-21T00:00:00,2015,October,Wednesday,21,294,11,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,18,GRN,500.0,STOLEN,1988,"{'type': 'Point', 'coordinates': (-79.50908295, 43.7581337)}"
-1998,10661,GO-20151811443,THEFT UNDER,2015-10-19T00:00:00,2015,October,Monday,19,292,18,2015-10-21T00:00:00,2015,October,Wednesday,21,294,11,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,TO,3,RED,500.0,STOLEN,1989,"{'type': 'Point', 'coordinates': (-79.50908295, 43.7581337)}"
-1999,10662,GO-20151811443,THEFT UNDER,2015-10-19T00:00:00,2015,October,Monday,19,292,18,2015-10-21T00:00:00,2015,October,Wednesday,21,294,11,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,,MT,18,REDWHI,700.0,STOLEN,1990,"{'type': 'Point', 'coordinates': (-79.50908295, 43.7581337)}"
-2000,10756,GO-20151931859,THEFT UNDER,2015-11-09T00:00:00,2015,November,Monday,9,313,13,2015-11-10T00:00:00,2015,November,Tuesday,10,314,12,D31,Toronto,25,Glenfield-Jane Heights (25),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,UNKNOWN,MT,12,,150.0,STOLEN,1991,"{'type': 'Point', 'coordinates': (-79.50600792, 43.73614684)}"
-2001,10757,GO-20151931859,THEFT UNDER,2015-11-09T00:00:00,2015,November,Monday,9,313,13,2015-11-10T00:00:00,2015,November,Tuesday,10,314,12,D31,Toronto,25,Glenfield-Jane Heights (25),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,UNKNOWN,MT,12,,150.0,STOLEN,1992,"{'type': 'Point', 'coordinates': (-79.50600792, 43.73614684)}"
-2002,10892,GO-20152229907,ARR/WARR EXECUTED NO ADDED CHG,2015-12-30T00:00:00,2015,December,Wednesday,30,364,0,2015-12-30T00:00:00,2015,December,Wednesday,30,364,0,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,HUFFY,MT,15,BLK,500.0,UNKNOWN,1993,"{'type': 'Point', 'coordinates': (-79.49925363, 43.73937709)}"
-2003,2245,GO-20189013671,THEFT UNDER - BICYCLE,2018-05-03T00:00:00,2018,May,Thursday,3,123,12,2018-05-03T00:00:00,2018,May,Thursday,3,123,12,D33,Toronto,40,St.Andrew-Windfields (40),Schools During Supervised Activity,Educational,TR,MARLIN 5,MT,21,BLK,650.0,STOLEN,2002,"{'type': 'Point', 'coordinates': (-79.37119738, 43.75591206)}"
-2004,10893,GO-20152229907,ARR/WARR EXECUTED NO ADDED CHG,2015-12-30T00:00:00,2015,December,Wednesday,30,364,0,2015-12-30T00:00:00,2015,December,Wednesday,30,364,0,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,HUFFY,MT,18,BLU,400.0,UNKNOWN,1994,"{'type': 'Point', 'coordinates': (-79.49925363, 43.73937709)}"
-2005,10894,GO-20152229907,ARR/WARR EXECUTED NO ADDED CHG,2015-12-30T00:00:00,2015,December,Wednesday,30,364,0,2015-12-30T00:00:00,2015,December,Wednesday,30,364,0,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,WICKED,BM,1,BLK,200.0,UNKNOWN,1995,"{'type': 'Point', 'coordinates': (-79.49925363, 43.73937709)}"
-2006,11405,GO-20169005121,THEFT UNDER - BICYCLE,2016-05-28T00:00:00,2016,May,Saturday,28,149,23,2016-05-29T00:00:00,2016,May,Sunday,29,150,22,D31,Toronto,25,Glenfield-Jane Heights (25),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SU,,MT,12,GRY,300.0,STOLEN,1996,"{'type': 'Point', 'coordinates': (-79.50926221, 43.73831154)}"
-2007,11683,GO-20161147458,B&E,2016-06-30T00:00:00,2016,June,Thursday,30,182,20,2016-06-30T00:00:00,2016,June,Thursday,30,182,22,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,AQUILA,,SC,1,,500.0,STOLEN,1997,"{'type': 'Point', 'coordinates': (-79.5146931, 43.74295482)}"
-2008,12242,GO-20161551134,THEFT UNDER - BICYCLE,2016-08-29T00:00:00,2016,August,Monday,29,242,21,2016-09-01T00:00:00,2016,September,Thursday,1,245,14,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,UNKNOWN,MT,14,RED,,STOLEN,1998,"{'type': 'Point', 'coordinates': (-79.51978635, 43.74530145)}"
-2009,1351,GO-20179014362,THEFT UNDER,2017-09-08T00:00:00,2017,September,Friday,8,251,15,2017-09-09T00:00:00,2017,September,Saturday,9,252,20,D33,Toronto,40,St.Andrew-Windfields (40),"Apartment (Rooming House, Condo)",Apartment,CC,,OT,21,,400.0,STOLEN,1999,"{'type': 'Point', 'coordinates': (-79.35992932, 43.75295442)}"
-2010,1393,GO-20179014675,THEFT UNDER - BICYCLE,2017-09-13T00:00:00,2017,September,Wednesday,13,256,8,2017-09-13T00:00:00,2017,September,Wednesday,13,256,16,D33,Toronto,40,St.Andrew-Windfields (40),Schools During Supervised Activity,Educational,RM,WHISTLER 10,RG,8,GRY,670.0,STOLEN,2000,"{'type': 'Point', 'coordinates': (-79.37483439, 43.75055042)}"
-2011,1591,GO-20171804783,THEFT UNDER - BICYCLE,2017-10-04T00:00:00,2017,October,Wednesday,4,277,15,2017-10-05T00:00:00,2017,October,Thursday,5,278,8,D32,Toronto,40,St.Andrew-Windfields (40),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,2,BLK,,STOLEN,2001,"{'type': 'Point', 'coordinates': (-79.40315892, 43.754187200000004)}"
-2012,2553,GO-20189018504,THEFT UNDER - BICYCLE,2018-06-04T00:00:00,2018,June,Monday,4,155,12,2018-06-13T00:00:00,2018,June,Wednesday,13,164,12,D33,Toronto,40,St.Andrew-Windfields (40),Schools During Supervised Activity,Educational,OT,MOUNTAIN BIKE,MT,24,BLK,700.0,STOLEN,2003,"{'type': 'Point', 'coordinates': (-79.37119738, 43.75591206)}"
-2013,2904,GO-20189023198,THEFT UNDER - BICYCLE,2018-07-20T00:00:00,2018,July,Friday,20,201,9,2018-07-20T00:00:00,2018,July,Friday,20,201,12,D33,Toronto,40,St.Andrew-Windfields (40),Schools During Supervised Activity,Educational,SC,SCHWINN GTX-2 M,RG,21,RED,500.0,STOLEN,2004,"{'type': 'Point', 'coordinates': (-79.37483439, 43.75055042)}"
-2014,3507,GO-20189031028,THEFT UNDER,2018-09-18T00:00:00,2018,September,Tuesday,18,261,15,2018-09-18T00:00:00,2018,September,Tuesday,18,261,22,D33,Toronto,40,St.Andrew-Windfields (40),Schools During Supervised Activity,Educational,DB,,MT,21,BLK,900.0,STOLEN,2005,"{'type': 'Point', 'coordinates': (-79.37483439, 43.75055042)}"
-2015,3875,GO-20182107551,THEFT UNDER - BICYCLE,2018-11-14T00:00:00,2018,November,Wednesday,14,318,5,2018-11-15T00:00:00,2018,November,Thursday,15,319,17,D32,Toronto,40,St.Andrew-Windfields (40),Ttc Subway Station,Transit,GIANT,,MT,12,BLK,1000.0,STOLEN,2006,"{'type': 'Point', 'coordinates': (-79.40668473, 43.7441499)}"
-2016,4536,GO-20199019164,THEFT UNDER,2019-06-18T00:00:00,2019,June,Tuesday,18,169,11,2019-06-18T00:00:00,2019,June,Tuesday,18,169,21,D33,Toronto,40,St.Andrew-Windfields (40),Schools During Supervised Activity,Educational,GI,TALON 3,MT,24,,699.0,STOLEN,2007,"{'type': 'Point', 'coordinates': (-79.37483439, 43.75055042)}"
-2017,5005,GO-20199025458,THEFT UNDER,2019-08-08T00:00:00,2019,August,Thursday,8,220,7,2019-08-09T00:00:00,2019,August,Friday,9,221,5,D32,Toronto,40,St.Andrew-Windfields (40),Ttc Subway Station,Transit,SC,,RG,21,,400.0,STOLEN,2008,"{'type': 'Point', 'coordinates': (-79.40668473, 43.7441499)}"
-2018,6101,GO-20209011915,THEFT UNDER - BICYCLE,2020-04-24T00:00:00,2020,April,Friday,24,115,15,2020-04-25T00:00:00,2020,April,Saturday,25,116,13,D32,Toronto,40,St.Andrew-Windfields (40),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,,MT,6,BLU,280.0,STOLEN,2009,"{'type': 'Point', 'coordinates': (-79.38920551, 43.75991797)}"
-2019,6102,GO-20209011915,THEFT UNDER - BICYCLE,2020-04-24T00:00:00,2020,April,Friday,24,115,15,2020-04-25T00:00:00,2020,April,Saturday,25,116,13,D32,Toronto,40,St.Andrew-Windfields (40),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,,MT,6,BLK,200.0,STOLEN,2010,"{'type': 'Point', 'coordinates': (-79.38920551, 43.75991797)}"
-2020,6493,GO-20201195219,THEFT UNDER,2020-06-29T00:00:00,2020,June,Monday,29,181,5,2020-06-29T00:00:00,2020,June,Monday,29,181,8,D33,Toronto,40,St.Andrew-Windfields (40),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MONGOOSE,0457364J071-176,BM,0,BLU,,RECOVERED,2011,"{'type': 'Point', 'coordinates': (-79.37379558, 43.7638434)}"
-2021,7070,GO-20201601396,THEFT UNDER - BICYCLE,2020-08-18T00:00:00,2020,August,Tuesday,18,231,0,2020-08-25T00:00:00,2020,August,Tuesday,25,238,12,D32,Toronto,40,St.Andrew-Windfields (40),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,RG,12,,650.0,STOLEN,2012,"{'type': 'Point', 'coordinates': (-79.39449136, 43.74677422)}"
-2022,7311,GO-20209023909,THEFT UNDER,2020-09-21T00:00:00,2020,September,Monday,21,265,8,2020-09-21T00:00:00,2020,September,Monday,21,265,18,D32,Toronto,40,St.Andrew-Windfields (40),Schools During Supervised Activity,Educational,RM,SOUL 10,MT,40,RED,900.0,STOLEN,2013,"{'type': 'Point', 'coordinates': (-79.39199758, 43.7514719)}"
-2023,7486,GO-20209026758,THEFT UNDER - BICYCLE,2020-10-17T00:00:00,2020,October,Saturday,17,291,7,2020-10-17T00:00:00,2020,October,Saturday,17,291,10,D32,Toronto,40,St.Andrew-Windfields (40),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,CRONO TRI,RC,50,WHI,2000.0,STOLEN,2014,"{'type': 'Point', 'coordinates': (-79.39443206, 43.753232)}"
-2024,7487,GO-20209026758,THEFT UNDER - BICYCLE,2020-10-17T00:00:00,2020,October,Saturday,17,291,7,2020-10-17T00:00:00,2020,October,Saturday,17,291,10,D32,Toronto,40,St.Andrew-Windfields (40),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GULU,CLONO,OT,21,WHIRED,,STOLEN,2015,"{'type': 'Point', 'coordinates': (-79.39443206, 43.753232)}"
-2025,8366,GO-20142501662,THEFT UNDER,2014-07-14T00:00:00,2014,July,Monday,14,195,19,2014-07-15T00:00:00,2014,July,Tuesday,15,196,12,D33,Toronto,40,St.Andrew-Windfields (40),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,STEYR,OT,10,ONG,200.0,STOLEN,2016,"{'type': 'Point', 'coordinates': (-79.36412486, 43.76052388)}"
-2026,8875,GO-20142912341,THEFT UNDER,2014-09-13T00:00:00,2014,September,Saturday,13,256,7,2014-09-15T00:00:00,2014,September,Monday,15,258,6,D32,Toronto,40,St.Andrew-Windfields (40),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NEXT,UNKNOWN,MT,12,RED,100.0,STOLEN,2017,"{'type': 'Point', 'coordinates': (-79.39306144, 43.76323381)}"
-2027,9126,GO-20143197025,THEFT UNDER,2014-10-21T00:00:00,2014,October,Tuesday,21,294,13,2014-10-29T00:00:00,2014,October,Wednesday,29,302,9,D32,Toronto,40,St.Andrew-Windfields (40),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,7.6 FX,OT,10,GRY,1400.0,STOLEN,2018,"{'type': 'Point', 'coordinates': (-79.40275987, 43.74856487)}"
-2028,11475,GO-20169005498,THEFT UNDER - BICYCLE,2016-06-08T00:00:00,2016,June,Wednesday,8,160,7,2016-06-08T00:00:00,2016,June,Wednesday,8,160,21,D32,Toronto,40,St.Andrew-Windfields (40),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,2016 SPECIAL MD,OT,24,PLE,800.0,STOLEN,2019,"{'type': 'Point', 'coordinates': (-79.40402607, 43.74421835)}"
-2029,11493,GO-20169005585,THEFT UNDER - BICYCLE,2016-06-10T00:00:00,2016,June,Friday,10,162,14,2016-06-10T00:00:00,2016,June,Friday,10,162,19,D32,Toronto,40,St.Andrew-Windfields (40),Ttc Subway Station,Transit,OT,RIVER SPORT,OT,21,RED,500.0,STOLEN,2020,"{'type': 'Point', 'coordinates': (-79.40402607, 43.74421835)}"
-2030,11507,GO-20169005648,THEFT UNDER - BICYCLE,2016-06-11T00:00:00,2016,June,Saturday,11,163,17,2016-06-12T00:00:00,2016,June,Sunday,12,164,10,D32,Toronto,40,St.Andrew-Windfields (40),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,,MT,12,,0.0,STOLEN,2021,"{'type': 'Point', 'coordinates': (-79.40668473, 43.7441499)}"
-2031,13537,GO-2020732697,B&E,2020-04-15T00:00:00,2020,April,Wednesday,15,106,12,2020-04-16T00:00:00,2020,April,Thursday,16,107,17,D32,Toronto,40,St.Andrew-Windfields (40),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,820,MT,12,BLK,500.0,UNKNOWN,2022,"{'type': 'Point', 'coordinates': (-79.39179517, 43.75845903)}"
-2032,13538,GO-2020732697,B&E,2020-04-15T00:00:00,2020,April,Wednesday,15,106,12,2020-04-16T00:00:00,2020,April,Thursday,16,107,17,D32,Toronto,40,St.Andrew-Windfields (40),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,BM,0,GRY,100.0,UNKNOWN,2023,"{'type': 'Point', 'coordinates': (-79.39179517, 43.75845903)}"
-2033,14412,GO-20142919065,B&E,2014-09-15T00:00:00,2014,September,Monday,15,258,17,2014-09-16T00:00:00,2014,September,Tuesday,16,259,7,D33,Toronto,40,St.Andrew-Windfields (40),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPORTEK,RIDGE RUNNER,MT,18,BLUWHI,,RECOVERED,2024,"{'type': 'Point', 'coordinates': (-79.36072778, 43.75643579)}"
-2034,14828,GO-20189024261,THEFT UNDER - BICYCLE,2018-07-27T00:00:00,2018,July,Friday,27,208,13,2018-07-27T00:00:00,2018,July,Friday,27,208,22,D32,Toronto,40,St.Andrew-Windfields (40),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,HATCHET,OT,24,RED,3500.0,STOLEN,2025,"{'type': 'Point', 'coordinates': (-79.40668473, 43.7441499)}"
-2035,14932,GO-20142912341,THEFT UNDER,2014-09-13T00:00:00,2014,September,Saturday,13,256,7,2014-09-15T00:00:00,2014,September,Monday,15,258,6,D32,Toronto,40,St.Andrew-Windfields (40),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NEXT,UNKNOWN,MT,18,BLK,100.0,STOLEN,2026,"{'type': 'Point', 'coordinates': (-79.39306144, 43.76323381)}"
-2036,17072,GO-20189023198,THEFT UNDER - BICYCLE,2018-07-20T00:00:00,2018,July,Friday,20,201,9,2018-07-20T00:00:00,2018,July,Friday,20,201,12,D33,Toronto,40,St.Andrew-Windfields (40),Schools During Supervised Activity,Educational,SC,,OT,21,RED,500.0,STOLEN,2028,"{'type': 'Point', 'coordinates': (-79.37483439, 43.75055042)}"
-2037,17916,GO-20149003310,THEFT UNDER,2014-05-12T00:00:00,2014,May,Monday,12,132,8,2014-05-12T00:00:00,2014,May,Monday,12,132,22,D32,Toronto,40,St.Andrew-Windfields (40),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,OT,0,,,RECOVERED,2029,"{'type': 'Point', 'coordinates': (-79.40185342000001, 43.75373935)}"
-2038,20016,GO-20199008613,THEFT UNDER - BICYCLE,2019-03-14T00:00:00,2019,March,Thursday,14,73,1,2019-03-18T00:00:00,2019,March,Monday,18,77,2,D33,Toronto,40,St.Andrew-Windfields (40),"Apartment (Rooming House, Condo)",Apartment,GI,BOULDER SE,MT,7,RED,1000.0,STOLEN,2030,"{'type': 'Point', 'coordinates': (-79.35992932, 43.75295442)}"
-2039,20039,GO-20199019164,THEFT UNDER,2019-06-18T00:00:00,2019,June,Tuesday,18,169,11,2019-06-18T00:00:00,2019,June,Tuesday,18,169,21,D33,Toronto,40,St.Andrew-Windfields (40),Schools During Supervised Activity,Educational,GI,TALON 3,MT,24,BLK,740.0,STOLEN,2031,"{'type': 'Point', 'coordinates': (-79.37483439, 43.75055042)}"
-2040,20095,GO-20201195219,THEFT UNDER,2020-06-29T00:00:00,2020,June,Monday,29,181,5,2020-06-29T00:00:00,2020,June,Monday,29,181,8,D33,Toronto,40,St.Andrew-Windfields (40),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,0,,,STOLEN,2032,"{'type': 'Point', 'coordinates': (-79.37379558, 43.7638434)}"
-2041,20096,GO-20201195219,THEFT UNDER,2020-06-29T00:00:00,2020,June,Monday,29,181,5,2020-06-29T00:00:00,2020,June,Monday,29,181,8,D33,Toronto,40,St.Andrew-Windfields (40),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,MT,0,,,STOLEN,2033,"{'type': 'Point', 'coordinates': (-79.37379558, 43.7638434)}"
-2042,20098,GO-20201222049,THEFT UNDER - BICYCLE,2020-06-29T00:00:00,2020,June,Monday,29,181,4,2020-07-05T00:00:00,2020,July,Sunday,5,187,12,D33,Toronto,40,St.Andrew-Windfields (40),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MONGOOSE,540BMX,BM,1,BLU,373.0,UNKNOWN,2034,"{'type': 'Point', 'coordinates': (-79.36510348, 43.76453686)}"
-2043,20124,GO-20209023973,THEFT UNDER,2020-09-21T00:00:00,2020,September,Monday,21,265,8,2020-09-21T00:00:00,2020,September,Monday,21,265,15,D33,Toronto,40,St.Andrew-Windfields (40),Schools During Supervised Activity,Educational,GT,GT AVALANCHE CO,MT,18,GRY,860.0,STOLEN,2035,"{'type': 'Point', 'coordinates': (-79.37483439, 43.75055042)}"
-2044,20250,GO-20179016535,THEFT UNDER - BICYCLE,2017-10-04T00:00:00,2017,October,Wednesday,4,277,8,2017-10-05T00:00:00,2017,October,Thursday,5,278,16,D33,Toronto,40,St.Andrew-Windfields (40),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GT,27.5 GUNMETAL 2,MT,20,BLK,514.0,STOLEN,2036,"{'type': 'Point', 'coordinates': (-79.37483439, 43.75055042)}"
-2045,20437,GO-20151590386,THEFT UNDER - BICYCLE,2015-09-17T00:00:00,2015,September,Thursday,17,260,14,2015-09-17T00:00:00,2015,September,Thursday,17,260,14,D33,Toronto,40,St.Andrew-Windfields (40),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,RINCON,MT,16,RED,0.0,STOLEN,2037,"{'type': 'Point', 'coordinates': (-79.38282058, 43.75178958)}"
-2046,20484,GO-2016675910,THEFT UNDER - BICYCLE,2016-04-20T00:00:00,2016,April,Wednesday,20,111,15,2016-04-20T00:00:00,2016,April,Wednesday,20,111,18,D33,Toronto,40,St.Andrew-Windfields (40),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,MT,21,RED,,STOLEN,2038,"{'type': 'Point', 'coordinates': (-79.35992932, 43.75295442)}"
-2047,20539,GO-20161717963,B&E,2016-09-23T00:00:00,2016,September,Friday,23,267,18,2016-09-27T00:00:00,2016,September,Tuesday,27,271,11,D33,Toronto,40,St.Andrew-Windfields (40),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KONA,SPLICE,OT,1,BLUGRY,800.0,STOLEN,2039,"{'type': 'Point', 'coordinates': (-79.37790697, 43.75405291)}"
-2048,20556,GO-20169013781,THEFT UNDER - BICYCLE,2016-11-23T00:00:00,2016,November,Wednesday,23,328,20,2016-11-23T00:00:00,2016,November,Wednesday,23,328,23,D33,Toronto,40,St.Andrew-Windfields (40),"Open Areas (Lakes, Parks, Rivers)",Outside,RA,DETOUR 1 L,OT,7,WHI,380.0,STOLEN,2040,"{'type': 'Point', 'coordinates': (-79.35745248000002, 43.75349315)}"
-2049,22038,GO-20149007623,THEFT UNDER,2014-10-07T00:00:00,2014,October,Tuesday,7,280,19,2014-10-16T00:00:00,2014,October,Thursday,16,289,15,D32,Toronto,40,St.Andrew-Windfields (40),"Apartment (Rooming House, Condo)",Apartment,UK,MYKA HT,MT,7,WHI,500.0,STOLEN,2041,"{'type': 'Point', 'coordinates': (-79.40465049, 43.75327096)}"
-2050,22107,GO-20169005627,THEFT UNDER - BICYCLE,2016-06-11T00:00:00,2016,June,Saturday,11,163,18,2016-06-12T00:00:00,2016,June,Sunday,12,164,3,D32,Toronto,40,St.Andrew-Windfields (40),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,2004 MODEL,MT,30,BLK,0.0,STOLEN,2042,"{'type': 'Point', 'coordinates': (-79.40402607, 43.74421835)}"
-2051,23350,GO-20201549807,THEFT OF EBIKE UNDER $5000,2020-08-17T00:00:00,2020,August,Monday,17,230,21,2020-08-18T00:00:00,2020,August,Tuesday,18,231,8,D32,Toronto,40,St.Andrew-Windfields (40),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,,MT,10,WHI,400.0,STOLEN,2043,"{'type': 'Point', 'coordinates': (-79.38920551, 43.75991797)}"
-2052,23358,GO-20209024515,THEFT UNDER - BICYCLE,2020-09-25T00:00:00,2020,September,Friday,25,269,9,2020-09-25T00:00:00,2020,September,Friday,25,269,16,D33,Toronto,40,St.Andrew-Windfields (40),Schools During Supervised Activity,Educational,OT,,MT,40,GRY,900.0,STOLEN,2044,"{'type': 'Point', 'coordinates': (-79.37119738, 43.75591206)}"
-2053,23362,GO-20202026516,THEFT UNDER - BICYCLE,2020-10-23T00:00:00,2020,October,Friday,23,297,12,2020-10-25T00:00:00,2020,October,Sunday,25,299,17,D32,Toronto,40,St.Andrew-Windfields (40),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,OCR 2,RC,9,BLU,600.0,STOLEN,2045,"{'type': 'Point', 'coordinates': (-79.40371413, 43.75335643)}"
-2054,24415,GO-20149003310,THEFT UNDER,2014-05-12T00:00:00,2014,May,Monday,12,132,8,2014-05-12T00:00:00,2014,May,Monday,12,132,22,D32,Toronto,40,St.Andrew-Windfields (40),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,SPORT,TO,15,,1249.0,STOLEN,2046,"{'type': 'Point', 'coordinates': (-79.40185342000001, 43.75373935)}"
-2055,1011,GO-20171376347,THEFT OF EBIKE UNDER $5000,2017-07-30T00:00:00,2017,July,Sunday,30,211,19,2017-07-31T00:00:00,2017,July,Monday,31,212,16,D32,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,AMEGO BOLD,,EL,1,BLK,2400.0,STOLEN,2047,"{'type': 'Point', 'coordinates': (-79.40587308, 43.74037772)}"
-2056,1409,GO-20179014782,THEFT UNDER - BICYCLE,2017-09-14T00:00:00,2017,September,Thursday,14,257,8,2017-09-14T00:00:00,2017,September,Thursday,14,257,19,D53,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,GI,IGUANA,MT,24,GRY,325.0,STOLEN,2048,"{'type': 'Point', 'coordinates': (-79.37788316000001, 43.72173341)}"
-2057,3522,GO-20189031302,THEFT UNDER - BICYCLE,2018-09-17T00:00:00,2018,September,Monday,17,260,9,2018-09-20T00:00:00,2018,September,Thursday,20,263,17,D32,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,SC,,MT,15,,250.0,STOLEN,2049,"{'type': 'Point', 'coordinates': (-79.38820869, 43.74514531)}"
-2058,3580,GO-20189032406,THEFT UNDER - BICYCLE,2018-09-27T00:00:00,2018,September,Thursday,27,270,9,2018-09-30T00:00:00,2018,September,Sunday,30,273,9,D53,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,ROADBIKE,RG,12,SIL,1500.0,STOLEN,2050,"{'type': 'Point', 'coordinates': (-79.3788987, 43.72097679)}"
-2059,4312,GO-2019913287,PROPERTY - FOUND,2019-05-19T00:00:00,2019,May,Sunday,19,139,7,2019-05-21T00:00:00,2019,May,Tuesday,21,141,17,D32,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CCM,ICE,MT,0,SIL,,UNKNOWN,2051,"{'type': 'Point', 'coordinates': (-79.39990727, 43.73544352)}"
-2060,4313,GO-2019913287,PROPERTY - FOUND,2019-05-19T00:00:00,2019,May,Sunday,19,139,7,2019-05-21T00:00:00,2019,May,Tuesday,21,141,17,D32,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,RG,0,PNKWHI,,UNKNOWN,2052,"{'type': 'Point', 'coordinates': (-79.39990727, 43.73544352)}"
-2061,4757,GO-20191282663,THEFT UNDER - BICYCLE,2019-07-09T00:00:00,2019,July,Tuesday,9,190,11,2019-07-09T00:00:00,2019,July,Tuesday,9,190,19,D53,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,SAVAT,,OT,8,BLKSIL,2000.0,STOLEN,2053,"{'type': 'Point', 'coordinates': (-79.37788316000001, 43.72173341)}"
-2062,5653,GO-20199036524,THEFT UNDER - BICYCLE,2019-10-25T00:00:00,2019,October,Friday,25,298,18,2019-11-05T00:00:00,2019,November,Tuesday,5,309,14,D53,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,GF,WAHOO,MT,24,GRY,700.0,STOLEN,2054,"{'type': 'Point', 'coordinates': (-79.37788316000001, 43.72173341)}"
-2063,5723,GO-20199038662,THEFT UNDER,2019-11-22T00:00:00,2019,November,Friday,22,326,19,2019-11-24T00:00:00,2019,November,Sunday,24,328,19,D53,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,18,BLK,1500.0,STOLEN,2055,"{'type': 'Point', 'coordinates': (-79.37945125, 43.72370944)}"
-2064,6070,GO-2020735911,B&E,2020-04-15T00:00:00,2020,April,Wednesday,15,106,16,2020-04-17T00:00:00,2020,April,Friday,17,108,10,D53,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,HYBRID,MT,21,WHI,800.0,STOLEN,2056,"{'type': 'Point', 'coordinates': (-79.37561824, 43.71720042)}"
-2065,6276,GO-20209014309,THEFT UNDER - BICYCLE,2020-05-27T00:00:00,2020,May,Wednesday,27,148,11,2020-05-31T00:00:00,2020,May,Sunday,31,152,21,D53,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,BOONE 5,RC,11,BLU,2650.0,STOLEN,2057,"{'type': 'Point', 'coordinates': (-79.37788316000001, 43.72173341)}"
-2066,7064,GO-20209021201,THEFT UNDER - BICYCLE,2020-08-15T00:00:00,2020,August,Saturday,15,228,15,2020-08-24T00:00:00,2020,August,Monday,24,237,21,D53,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,ALIGHT 2,RG,16,RED,800.0,STOLEN,2058,"{'type': 'Point', 'coordinates': (-79.37788316000001, 43.72173341)}"
-2067,7322,GO-20209024112,THEFT UNDER - BICYCLE,2020-09-22T00:00:00,2020,September,Tuesday,22,266,5,2020-09-22T00:00:00,2020,September,Tuesday,22,266,19,D53,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SC,,RG,20,,100.0,STOLEN,2059,"{'type': 'Point', 'coordinates': (-79.38350677, 43.72089748)}"
-2068,7395,GO-20209025096,THEFT UNDER - BICYCLE,2020-09-30T00:00:00,2020,September,Wednesday,30,274,15,2020-09-30T00:00:00,2020,September,Wednesday,30,274,21,D33,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),Schools During Supervised Activity,Educational,KO,,MT,27,GRY,1186.0,STOLEN,2060,"{'type': 'Point', 'coordinates': (-79.38180546, 43.73603449)}"
-2069,7402,GO-20209025122,THEFT UNDER - BICYCLE,2020-09-30T00:00:00,2020,September,Wednesday,30,274,8,2020-10-01T00:00:00,2020,October,Thursday,1,275,11,D33,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),Schools During Un-Supervised Activity,Educational,OT,GHOST KATO,MT,10,RED,900.0,STOLEN,2061,"{'type': 'Point', 'coordinates': (-79.38180546, 43.73603449)}"
-2070,8012,GO-20142177820,THEFT UNDER,2014-05-06T00:00:00,2014,May,Tuesday,6,126,9,2014-05-29T00:00:00,2014,May,Thursday,29,149,15,D53,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,TREK,,MT,4,WHI,,STOLEN,2062,"{'type': 'Point', 'coordinates': (-79.37788316000001, 43.72173341)}"
-2071,8170,GO-20142326372,B&E,2014-06-19T00:00:00,2014,June,Thursday,19,170,10,2014-06-19T00:00:00,2014,June,Thursday,19,170,20,D53,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Single Home, House (Attach Garage, Cottage, Mobile)",House,VITESSE,CUSTOM,RC,24,WHI,10000.0,STOLEN,2063,"{'type': 'Point', 'coordinates': (-79.38611663, 43.72745059)}"
-2072,9432,GO-20159002050,THEFT UNDER,2015-04-19T00:00:00,2015,April,Sunday,19,109,11,2015-04-19T00:00:00,2015,April,Sunday,19,109,19,D32,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),Ttc Subway Station,Transit,GI,ROAM 0,RG,30,BLK,1200.0,STOLEN,2064,"{'type': 'Point', 'coordinates': (-79.40147318, 43.73841989)}"
-2073,10927,GO-20169000519,THEFT UNDER - BICYCLE,2016-01-14T00:00:00,2016,January,Thursday,14,14,9,2016-01-15T00:00:00,2016,January,Friday,15,15,0,D53,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,GTR,RC,10,BLK,4300.0,STOLEN,2065,"{'type': 'Point', 'coordinates': (-79.37805212, 43.71671827)}"
-2074,12384,GO-20161661686,THEFT UNDER - BICYCLE,2016-09-18T00:00:00,2016,September,Sunday,18,262,12,2016-09-18T00:00:00,2016,September,Sunday,18,262,16,D53,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,GIRLS,RG,7,PLEWHI,250.0,STOLEN,2066,"{'type': 'Point', 'coordinates': (-79.38873145, 43.72376027)}"
-2075,12385,GO-20161661686,THEFT UNDER - BICYCLE,2016-09-18T00:00:00,2016,September,Sunday,18,262,12,2016-09-18T00:00:00,2016,September,Sunday,18,262,16,D53,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Single Home, House (Attach Garage, Cottage, Mobile)",House,LOUIS GARNEAU,STELLA,RG,7,BLKPNK,250.0,STOLEN,2067,"{'type': 'Point', 'coordinates': (-79.38873145, 43.72376027)}"
-2076,13029,GO-2020747823,B&E,2020-04-19T00:00:00,2020,April,Sunday,19,110,11,2020-04-19T00:00:00,2020,April,Sunday,19,110,11,D53,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,AM,MT,21,OTH,4000.0,STOLEN,2068,"{'type': 'Point', 'coordinates': (-79.37561824, 43.71720042)}"
-2077,13570,GO-20209019228,THREAT - PERSON,2020-08-01T00:00:00,2020,August,Saturday,1,214,20,2020-08-02T00:00:00,2020,August,Sunday,2,215,20,D32,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,TR,HYBRID,OT,21,BLK,800.0,STOLEN,2069,"{'type': 'Point', 'coordinates': (-79.39990727, 43.73544352)}"
-2078,13588,GO-20209024567,THEFT UNDER - BICYCLE,2020-09-25T00:00:00,2020,September,Friday,25,269,20,2020-09-25T00:00:00,2020,September,Friday,25,269,23,D32,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),Convenience Stores,Commercial,CA,TOPSTONE 105,RC,11,TAN,4000.0,STOLEN,2070,"{'type': 'Point', 'coordinates': (-79.40479343, 43.73553025)}"
-2079,13591,GO-20209025122,THEFT UNDER - BICYCLE,2020-09-30T00:00:00,2020,September,Wednesday,30,274,8,2020-10-01T00:00:00,2020,October,Thursday,1,275,11,D33,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),Schools During Un-Supervised Activity,Educational,OT,GHOST KATO,MT,10,RED,900.0,STOLEN,2071,"{'type': 'Point', 'coordinates': (-79.38180546, 43.73603449)}"
-2080,14745,GO-20179020548,THEFT UNDER - BICYCLE,2017-11-24T00:00:00,2017,November,Friday,24,328,11,2017-11-25T00:00:00,2017,November,Saturday,25,329,16,D32,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),Schools During Supervised Activity,Educational,UK,ROCKHOPPER COMP,MT,22,GRY,1300.0,STOLEN,2072,"{'type': 'Point', 'coordinates': (-79.3836391, 43.7269221)}"
-2081,14987,GO-20159011319,THEFT OVER,2015-12-27T00:00:00,2015,December,Sunday,27,361,18,2015-12-27T00:00:00,2015,December,Sunday,27,361,18,D32,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,21,,3500.0,STOLEN,2073,"{'type': 'Point', 'coordinates': (-79.40142642, 43.74437556)}"
-2082,14988,GO-20159011319,THEFT OVER,2015-12-27T00:00:00,2015,December,Sunday,27,361,18,2015-12-27T00:00:00,2015,December,Sunday,27,361,18,D32,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,21,BLK,5000.0,STOLEN,2074,"{'type': 'Point', 'coordinates': (-79.40142642, 43.74437556)}"
-2083,18056,GO-20161848326,THEFT UNDER - BICYCLE,2016-10-15T00:00:00,2016,October,Saturday,15,289,18,2016-10-17T00:00:00,2016,October,Monday,17,291,16,D32,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Single Home, House (Attach Garage, Cottage, Mobile)",House,INFINITY,,OT,21,GRNBLK,299.0,STOLEN,2075,"{'type': 'Point', 'coordinates': (-79.39600441, 43.74449319)}"
-2084,18847,GO-20142542263,B&E,2014-07-21T00:00:00,2014,July,Monday,21,202,14,2014-07-21T00:00:00,2014,July,Monday,21,202,15,D53,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,,MT,30,GRY,,STOLEN,2076,"{'type': 'Point', 'coordinates': (-79.38184519, 43.7274923)}"
-2085,18947,GO-20151754296,B&E,2015-09-20T00:00:00,2015,September,Sunday,20,263,6,2015-10-11T00:00:00,2015,October,Sunday,11,284,12,D53,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,,FO,6,,,STOLEN,2077,"{'type': 'Point', 'coordinates': (-79.38208388, 43.72516552)}"
-2086,18965,GO-20169003367,THEFT UNDER - BICYCLE,2016-04-13T00:00:00,2016,April,Wednesday,13,104,11,2016-04-13T00:00:00,2016,April,Wednesday,13,104,15,D53,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,SO-CAL,MT,21,BLK,2200.0,STOLEN,2078,"{'type': 'Point', 'coordinates': (-79.38227044, 43.71291678)}"
-2087,2123,GO-2018576924,INCIDENT,2018-03-30T00:00:00,2018,March,Friday,30,89,10,2018-03-31T00:00:00,2018,March,Saturday,31,90,15,D33,Toronto,42,Banbury-Don Mills (42),"Apartment (Rooming House, Condo)",Apartment,GIANT,CYPRUS DX,OT,10,SIL,450.0,STOLEN,2094,"{'type': 'Point', 'coordinates': (-79.35017297, 43.73626166)}"
-2088,19100,GO-20179011951,THEFT UNDER - BICYCLE,2017-08-08T00:00:00,2017,August,Tuesday,8,220,9,2017-08-08T00:00:00,2017,August,Tuesday,8,220,19,D53,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,NO,VOLANTE,RG,27,GRY,1100.0,STOLEN,2079,"{'type': 'Point', 'coordinates': (-79.37788316000001, 43.72173341)}"
-2089,19685,GO-20159003431,THEFT UNDER,2015-06-03T00:00:00,2015,June,Wednesday,3,154,14,2015-06-03T00:00:00,2015,June,Wednesday,3,154,16,D53,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,UK,STUMPJUMPER,MT,22,,2000.0,STOLEN,2080,"{'type': 'Point', 'coordinates': (-79.37788316000001, 43.72173341)}"
-2090,3211,GO-20189026553,THEFT UNDER - BICYCLE,2018-08-15T00:00:00,2018,August,Wednesday,15,227,15,2018-08-15T00:00:00,2018,August,Wednesday,15,227,19,D33,Toronto,45,Parkwoods-Donalda (45),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MONTREAL,RG,7,BLK,700.0,STOLEN,2081,"{'type': 'Point', 'coordinates': (-79.34131995, 43.75705337)}"
-2091,19758,GO-2016723117,THEFT UNDER - BICYCLE,2016-04-25T00:00:00,2016,April,Monday,25,116,16,2016-04-28T00:00:00,2016,April,Thursday,28,119,8,D53,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT SEEK 3,,RG,1,BLK,700.0,STOLEN,2082,"{'type': 'Point', 'coordinates': (-79.38494205, 43.72455352)}"
-2092,20080,GO-20199037144,THEFT UNDER - BICYCLE,2019-10-30T00:00:00,2019,October,Wednesday,30,303,14,2019-11-11T00:00:00,2019,November,Monday,11,315,12,D32,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),Schools During Supervised Activity,Educational,UK,,MT,21,BLK,1200.0,STOLEN,2083,"{'type': 'Point', 'coordinates': (-79.3836391, 43.7269221)}"
-2093,23070,GO-20179017468,THEFT UNDER - BICYCLE,2017-10-16T00:00:00,2017,October,Monday,16,289,12,2017-10-18T00:00:00,2017,October,Wednesday,18,291,1,D52,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,"TRAVELLER 26""""",RG,25,WHI,190.0,STOLEN,2084,"{'type': 'Point', 'coordinates': (-79.38294964, 43.72655105)}"
-2094,23560,GO-20189022977,THEFT UNDER,2018-06-04T00:00:00,2018,June,Monday,4,155,12,2018-07-18T00:00:00,2018,July,Wednesday,18,199,20,D33,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),Schools During Supervised Activity,Educational,TR,MARLIN 5,MT,7,RED,800.0,STOLEN,2085,"{'type': 'Point', 'coordinates': (-79.38180546, 43.73603449)}"
-2095,24503,GO-20152226004,THEFT UNDER,2015-12-29T00:00:00,2015,December,Tuesday,29,363,0,2015-12-29T00:00:00,2015,December,Tuesday,29,363,10,D32,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GIANT,MOMENTUM STREET,OT,1,,,STOLEN,2086,"{'type': 'Point', 'coordinates': (-79.4041779, 43.7438337)}"
-2096,25434,GO-20179005122,THEFT UNDER - BICYCLE,2017-04-22T00:00:00,2017,April,Saturday,22,112,20,2017-04-23T00:00:00,2017,April,Sunday,23,113,13,D53,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,QUICK HYBRID BI,RG,8,BLK,500.0,STOLEN,2087,"{'type': 'Point', 'coordinates': (-79.38187743, 43.72413718)}"
-2097,272,GO-20179005169,THEFT UNDER - BICYCLE,2017-04-23T00:00:00,2017,April,Sunday,23,113,23,2017-04-24T00:00:00,2017,April,Monday,24,114,11,D33,Toronto,42,Banbury-Don Mills (42),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SU,,TO,10,RED,0.0,STOLEN,2088,"{'type': 'Point', 'coordinates': (-79.35738177, 43.73511836)}"
-2098,273,GO-20179005169,THEFT UNDER - BICYCLE,2017-04-23T00:00:00,2017,April,Sunday,23,113,23,2017-04-24T00:00:00,2017,April,Monday,24,114,11,D33,Toronto,42,Banbury-Don Mills (42),"Private Property Structure (Pool, Shed, Detached Garage)",Other,IN,,MT,21,YEL,200.0,STOLEN,2089,"{'type': 'Point', 'coordinates': (-79.35738177, 43.73511836)}"
-2099,1815,GO-20179019159,THEFT UNDER,2017-11-05T00:00:00,2017,November,Sunday,5,309,6,2017-11-08T00:00:00,2017,November,Wednesday,8,312,13,D33,Toronto,42,Banbury-Don Mills (42),Convenience Stores,Commercial,GI,SEDONA,OT,21,BLK,200.0,STOLEN,2090,"{'type': 'Point', 'coordinates': (-79.34436493, 43.73428467)}"
-2100,10133,GO-20151285750,THEFT UNDER,2015-07-27T00:00:00,2015,July,Monday,27,208,8,2015-07-27T00:00:00,2015,July,Monday,27,208,22,D33,Toronto,42,Banbury-Don Mills (42),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DEVINCI,,OT,24,,1000.0,STOLEN,2091,"{'type': 'Point', 'coordinates': (-79.34485315, 43.73618662)}"
-2101,23316,GO-2020627873,THEFT UNDER,2020-03-09T00:00:00,2020,March,Monday,9,69,12,2020-03-30T00:00:00,2020,March,Monday,30,90,11,D32,Toronto,32,Englemount-Lawrence (32),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN,UNKNOWN,OT,10,RED,,STOLEN,2092,"{'type': 'Point', 'coordinates': (-79.44098195, 43.72012757)}"
-2102,23371,GO-20202290284,FRAUD OVER,2020-11-27T00:00:00,2020,November,Friday,27,332,0,2020-12-05T00:00:00,2020,December,Saturday,5,340,14,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,ZZZ,X2751716,EL,3,,2599.0,STOLEN,2093,"{'type': 'Point', 'coordinates': (-79.4173091, 43.78706936)}"
-2103,2538,GO-20189018367,THEFT UNDER - BICYCLE,2018-06-10T00:00:00,2018,June,Sunday,10,161,22,2018-06-12T00:00:00,2018,June,Tuesday,12,163,12,D33,Toronto,42,Banbury-Don Mills (42),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,CYPRESS,RG,27,GRY,800.0,STOLEN,2095,"{'type': 'Point', 'coordinates': (-79.33795965, 43.73134957)}"
-2104,2737,GO-20189020978,THEFT FROM MOTOR VEHICLE UNDER,2018-07-03T00:00:00,2018,July,Tuesday,3,184,0,2018-07-03T00:00:00,2018,July,Tuesday,3,184,8,D33,Toronto,42,Banbury-Don Mills (42),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,RC,9,,1000.0,STOLEN,2096,"{'type': 'Point', 'coordinates': (-79.33613919, 43.73423069)}"
-2105,6469,GO-20209016149,THEFT UNDER - BICYCLE,2020-06-23T00:00:00,2020,June,Tuesday,23,175,20,2020-06-25T00:00:00,2020,June,Thursday,25,177,15,D33,Toronto,42,Banbury-Don Mills (42),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,,RG,6,BLK,120.0,STOLEN,2097,"{'type': 'Point', 'coordinates': (-79.34391067, 43.72891907)}"
-2106,8230,GO-20149004368,THEFT UNDER,2014-06-21T00:00:00,2014,June,Saturday,21,172,6,2014-06-23T00:00:00,2014,June,Monday,23,174,21,D33,Toronto,42,Banbury-Don Mills (42),"Apartment (Rooming House, Condo)",Apartment,UK,DAKAR XC SPORT,MT,27,BLK,1599.0,STOLEN,2098,"{'type': 'Point', 'coordinates': (-79.32752394, 43.72664463)}"
-2107,8322,GO-20142430166,THEFT UNDER,2014-07-01T00:00:00,2014,July,Tuesday,1,182,16,2014-07-04T00:00:00,2014,July,Friday,4,185,16,D33,Toronto,42,Banbury-Don Mills (42),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,MT,24,BLKWHI,,STOLEN,2099,"{'type': 'Point', 'coordinates': (-79.34485315, 43.73618662)}"
-2108,9320,GO-2015433944,THEFT UNDER,2015-03-11T00:00:00,2015,March,Wednesday,11,70,7,2015-03-14T00:00:00,2015,March,Saturday,14,73,12,D33,Toronto,42,Banbury-Don Mills (42),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,,MT,20,DBL,500.0,STOLEN,2100,"{'type': 'Point', 'coordinates': (-79.34054293, 43.74124779)}"
-2109,9770,GO-20159003501,THEFT UNDER,2015-06-06T00:00:00,2015,June,Saturday,6,157,23,2015-06-10T00:00:00,2015,June,Wednesday,10,161,14,D33,Toronto,42,Banbury-Don Mills (42),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SUB40,MT,18,TRQ,650.0,STOLEN,2101,"{'type': 'Point', 'coordinates': (-79.34151819, 43.74138065)}"
-2110,9812,GO-20151003032,THEFT UNDER,2015-06-15T00:00:00,2015,June,Monday,15,166,9,2015-06-15T00:00:00,2015,June,Monday,15,166,10,D33,Toronto,42,Banbury-Don Mills (42),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,PHONEIX,UNK,OT,21,SIL,100.0,STOLEN,2102,"{'type': 'Point', 'coordinates': (-79.34123261, 43.7388162)}"
-2111,16857,GO-20202196134,THEFT UNDER,2020-11-16T00:00:00,2020,November,Monday,16,321,14,2020-11-19T00:00:00,2020,November,Thursday,19,324,18,D32,Toronto,37,Willowdale West (37),"Apartment (Rooming House, Condo)",Apartment,MERCANE,WIDE WHEEL PRO,SC,1,BLK,1700.0,STOLEN,2103,"{'type': 'Point', 'coordinates': (-79.41306905, 43.77013909)}"
-2112,10288,GO-20159005940,THEFT UNDER,2015-08-16T00:00:00,2015,August,Sunday,16,228,13,2015-08-17T00:00:00,2015,August,Monday,17,229,18,D33,Toronto,42,Banbury-Don Mills (42),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,CODA SPORT,RG,24,BLU,600.0,STOLEN,2104,"{'type': 'Point', 'coordinates': (-79.35062913, 43.73067321)}"
-2113,10764,GO-20151952937,THEFT FROM MOTOR VEHICLE UNDER,2015-11-13T00:00:00,2015,November,Friday,13,317,22,2015-11-13T00:00:00,2015,November,Friday,13,317,22,D33,Toronto,42,Banbury-Don Mills (42),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,ROCK HOPPER,OT,12,CPR,1000.0,STOLEN,2105,"{'type': 'Point', 'coordinates': (-79.33989307, 43.73379655)}"
-2114,10803,GO-20159010051,THEFT UNDER,2015-11-21T00:00:00,2015,November,Saturday,21,325,23,2015-11-22T00:00:00,2015,November,Sunday,22,326,18,D33,Toronto,42,Banbury-Don Mills (42),"Apartment (Rooming House, Condo)",Apartment,NO,WOLVERINE,MT,24,BLK,700.0,STOLEN,2106,"{'type': 'Point', 'coordinates': (-79.33989307, 43.73379655)}"
-2115,10805,GO-20151999518,THEFT UNDER,2015-11-19T00:00:00,2015,November,Thursday,19,323,23,2015-11-21T00:00:00,2015,November,Saturday,21,325,17,D33,Toronto,42,Banbury-Don Mills (42),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,,MT,21,BLK,1300.0,STOLEN,2107,"{'type': 'Point', 'coordinates': (-79.33685043, 43.73680876)}"
-2116,10938,GO-20169000717,THEFT UNDER,2016-01-16T00:00:00,2016,January,Saturday,16,16,11,2016-01-21T00:00:00,2016,January,Thursday,21,21,11,D33,Toronto,42,Banbury-Don Mills (42),"Apartment (Rooming House, Condo)",Apartment,OT,88CT,MT,21,RED,120.0,STOLEN,2108,"{'type': 'Point', 'coordinates': (-79.32775262, 43.72734678)}"
-2117,11395,GO-20169005048,THEFT UNDER - BICYCLE,2016-05-15T00:00:00,2016,May,Sunday,15,136,15,2016-05-28T00:00:00,2016,May,Saturday,28,149,11,D33,Toronto,42,Banbury-Don Mills (42),"Apartment (Rooming House, Condo)",Apartment,NO,KOKANEE,MT,21,BLK,300.0,STOLEN,2109,"{'type': 'Point', 'coordinates': (-79.32752394, 43.72664463)}"
-2118,13548,GO-20201235729,THEFT UNDER - BICYCLE,2020-06-30T00:00:00,2020,June,Tuesday,30,182,20,2020-07-05T00:00:00,2020,July,Sunday,5,187,9,D33,Toronto,42,Banbury-Don Mills (42),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,NORTHROP,MT,10,BLK,539.0,STOLEN,2110,"{'type': 'Point', 'coordinates': (-79.33957284, 43.72302474)}"
-2119,13699,GO-20179011809,THEFT UNDER - BICYCLE,2017-08-05T00:00:00,2017,August,Saturday,5,217,18,2017-08-06T00:00:00,2017,August,Sunday,6,218,16,D33,Toronto,42,Banbury-Don Mills (42),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,CAMELEON,MT,27,SIL,400.0,STOLEN,2111,"{'type': 'Point', 'coordinates': (-79.34620861, 43.74783776)}"
-2120,13719,GO-20179016336,THEFT UNDER - BICYCLE,2017-09-25T00:00:00,2017,September,Monday,25,268,17,2017-10-02T00:00:00,2017,October,Monday,2,275,22,D33,Toronto,42,Banbury-Don Mills (42),"Apartment (Rooming House, Condo)",Apartment,CC,ECCO,MT,21,GRN,150.0,STOLEN,2112,"{'type': 'Point', 'coordinates': (-79.34093695, 43.73769576)}"
-2121,13742,GO-2018420034,B&E,2018-03-07T00:00:00,2018,March,Wednesday,7,66,5,2018-03-07T00:00:00,2018,March,Wednesday,7,66,7,D33,Toronto,42,Banbury-Don Mills (42),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN,,RG,10,,,STOLEN,2113,"{'type': 'Point', 'coordinates': (-79.34333732000002, 43.72765043)}"
-2122,13756,GO-20189015993,THEFT UNDER - BICYCLE,2018-05-23T00:00:00,2018,May,Wednesday,23,143,16,2018-05-23T00:00:00,2018,May,Wednesday,23,143,20,D33,Toronto,42,Banbury-Don Mills (42),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,,MT,21,RED,300.0,STOLEN,2114,"{'type': 'Point', 'coordinates': (-79.34485315, 43.73618662)}"
-2123,13763,GO-20189017986,THEFT UNDER - BICYCLE,2018-06-08T00:00:00,2018,June,Friday,8,159,22,2018-06-09T00:00:00,2018,June,Saturday,9,160,11,D33,Toronto,42,Banbury-Don Mills (42),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CC,,MT,7,BLK,350.0,STOLEN,2115,"{'type': 'Point', 'coordinates': (-79.3367736, 43.73097938)}"
-2124,13878,GO-20159003594,THEFT UNDER,2015-06-13T00:00:00,2015,June,Saturday,13,164,19,2015-06-13T00:00:00,2015,June,Saturday,13,164,20,D33,Toronto,42,Banbury-Don Mills (42),Bar / Restaurant,Commercial,UK,X CALIBER 4 14S,MT,24,WHI,,STOLEN,2116,"{'type': 'Point', 'coordinates': (-79.34333732000002, 43.72765043)}"
-2125,13913,GO-20151647131,THEFT UNDER,2015-09-23T00:00:00,2015,September,Wednesday,23,266,11,2015-09-23T00:00:00,2015,September,Wednesday,23,266,18,D33,Toronto,42,Banbury-Don Mills (42),Schools During Un-Supervised Activity,Educational,GIANT,ESCAPE 2,MT,0,SIL,500.0,STOLEN,2117,"{'type': 'Point', 'coordinates': (-79.33920223, 43.73196756)}"
-2126,13914,GO-20151647131,THEFT UNDER,2015-09-23T00:00:00,2015,September,Wednesday,23,266,11,2015-09-23T00:00:00,2015,September,Wednesday,23,266,18,D33,Toronto,42,Banbury-Don Mills (42),Schools During Un-Supervised Activity,Educational,GIANT,CYPRESS,MT,0,TAN,400.0,STOLEN,2118,"{'type': 'Point', 'coordinates': (-79.33920223, 43.73196756)}"
-2127,16771,GO-20199018939,THEFT UNDER,2019-05-03T00:00:00,2019,May,Friday,3,123,9,2019-06-17T00:00:00,2019,June,Monday,17,168,14,D33,Toronto,42,Banbury-Don Mills (42),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,ESCAPE 2,RG,24,GRY,420.0,STOLEN,2119,"{'type': 'Point', 'coordinates': (-79.32835907, 43.72935527)}"
-2128,16829,GO-20209018629,THEFT UNDER - BICYCLE,2020-07-26T00:00:00,2020,July,Sunday,26,208,20,2020-07-26T00:00:00,2020,July,Sunday,26,208,22,D33,Toronto,42,Banbury-Don Mills (42),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,OSLO,RC,27,DBL,900.0,STOLEN,2120,"{'type': 'Point', 'coordinates': (-79.33957284, 43.72302474)}"
-2129,17078,GO-20189024661,THEFT UNDER,2018-07-28T00:00:00,2018,July,Saturday,28,209,18,2018-07-31T00:00:00,2018,July,Tuesday,31,212,13,D33,Toronto,42,Banbury-Don Mills (42),"Apartment (Rooming House, Condo)",Apartment,SC,,RG,7,PLE,400.0,STOLEN,2121,"{'type': 'Point', 'coordinates': (-79.32835907, 43.72935527)}"
-2130,17079,GO-20189024661,THEFT UNDER,2018-07-28T00:00:00,2018,July,Saturday,28,209,18,2018-07-31T00:00:00,2018,July,Tuesday,31,212,13,D33,Toronto,42,Banbury-Don Mills (42),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,7,ONG,600.0,STOLEN,2122,"{'type': 'Point', 'coordinates': (-79.32835907, 43.72935527)}"
-2131,17080,GO-20189024661,THEFT UNDER,2018-07-28T00:00:00,2018,July,Saturday,28,209,18,2018-07-31T00:00:00,2018,July,Tuesday,31,212,13,D33,Toronto,42,Banbury-Don Mills (42),"Apartment (Rooming House, Condo)",Apartment,SU,,RG,7,ONG,140.0,STOLEN,2123,"{'type': 'Point', 'coordinates': (-79.32835907, 43.72935527)}"
-2132,17171,GO-20159007024,THEFT UNDER,2015-09-11T00:00:00,2015,September,Friday,11,254,9,2015-09-11T00:00:00,2015,September,Friday,11,254,11,D33,Toronto,42,Banbury-Don Mills (42),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,DRIVE RC,MT,27,BLK,982.0,STOLEN,2124,"{'type': 'Point', 'coordinates': (-79.33447312, 43.73088763)}"
-2133,20007,GO-20189043317,THEFT UNDER - BICYCLE,2018-12-25T00:00:00,2018,December,Tuesday,25,359,22,2018-12-26T00:00:00,2018,December,Wednesday,26,360,14,D33,Toronto,42,Banbury-Don Mills (42),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,MARLIN 6,MT,8,BLK,640.0,STOLEN,2125,"{'type': 'Point', 'coordinates': (-79.36851318, 43.74284851)}"
-2134,23317,GO-2020627873,THEFT UNDER,2020-03-09T00:00:00,2020,March,Monday,9,69,12,2020-03-30T00:00:00,2020,March,Monday,30,90,11,D32,Toronto,32,Englemount-Lawrence (32),"Apartment (Rooming House, Condo)",Apartment,OTHER,UNKNOWN,MT,10,LGR,,STOLEN,2126,"{'type': 'Point', 'coordinates': (-79.44098195, 43.72012757)}"
-2135,17727,GO-20179014818,THEFT UNDER - BICYCLE,2017-09-14T00:00:00,2017,September,Thursday,14,257,11,2017-09-15T00:00:00,2017,September,Friday,15,258,10,D32,Toronto,37,Willowdale West (37),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,OT,5,RED,500.0,STOLEN,2127,"{'type': 'Point', 'coordinates': (-79.43126911, 43.77286746)}"
-2136,106,GO-20179002391,THEFT UNDER - BICYCLE,2016-08-28T00:00:00,2016,August,Sunday,28,241,9,2017-02-23T00:00:00,2017,February,Thursday,23,54,14,D32,Toronto,39,Bedford Park-Nortown (39),"Apartment (Rooming House, Condo)",Apartment,TR,SHIFT 1,MT,8,GRY,450.0,STOLEN,2128,"{'type': 'Point', 'coordinates': (-79.41862483, 43.72988724)}"
-2137,20068,GO-20199029101,THEFT UNDER - BICYCLE,2019-09-01T00:00:00,2019,September,Sunday,1,244,15,2019-09-07T00:00:00,2019,September,Saturday,7,250,15,D33,Toronto,42,Banbury-Don Mills (42),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,MT,21,BLK,800.0,STOLEN,2129,"{'type': 'Point', 'coordinates': (-79.33721736, 43.73256809)}"
-2138,20257,GO-20171851002,THEFT UNDER - BICYCLE,2017-10-12T00:00:00,2017,October,Thursday,12,285,10,2017-10-12T00:00:00,2017,October,Thursday,12,285,18,D33,Toronto,42,Banbury-Don Mills (42),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,,RG,12,BLKONG,1600.0,RECOVERED,2130,"{'type': 'Point', 'coordinates': (-79.33721736, 43.73256809)}"
-2139,20258,GO-20171851002,THEFT UNDER - BICYCLE,2017-10-12T00:00:00,2017,October,Thursday,12,285,10,2017-10-12T00:00:00,2017,October,Thursday,12,285,18,D33,Toronto,42,Banbury-Don Mills (42),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,,MT,12,BLK,400.0,STOLEN,2131,"{'type': 'Point', 'coordinates': (-79.33721736, 43.73256809)}"
-2140,20358,GO-20189027887,THEFT UNDER - BICYCLE,2018-08-25T00:00:00,2018,August,Saturday,25,237,5,2018-08-25T00:00:00,2018,August,Saturday,25,237,10,D33,Toronto,42,Banbury-Don Mills (42),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,MT,21,BLK,300.0,STOLEN,2132,"{'type': 'Point', 'coordinates': (-79.36529062, 43.74973601)}"
-2141,24752,GO-20151550703,THEFT UNDER,2015-09-02T00:00:00,2015,September,Wednesday,2,245,13,2015-09-08T00:00:00,2015,September,Tuesday,8,251,13,D13,Toronto,31,Yorkdale-Glen Park (31),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,DORRELL,RC,10,WHI,500.0,STOLEN,2133,"{'type': 'Point', 'coordinates': (-79.45398417, 43.71081612)}"
-2142,20359,GO-20189027887,THEFT UNDER - BICYCLE,2018-08-25T00:00:00,2018,August,Saturday,25,237,5,2018-08-25T00:00:00,2018,August,Saturday,25,237,10,D33,Toronto,42,Banbury-Don Mills (42),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,HARDROCK,MT,21,LGR,1500.0,STOLEN,2134,"{'type': 'Point', 'coordinates': (-79.36529062, 43.74973601)}"
-2143,20478,GO-2016481314,B&E,2016-03-19T00:00:00,2016,March,Saturday,19,79,17,2016-03-20T00:00:00,2016,March,Sunday,20,80,18,D33,Toronto,42,Banbury-Don Mills (42),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,,MT,0,WHI,150.0,STOLEN,2135,"{'type': 'Point', 'coordinates': (-79.35143988, 43.73729988)}"
-2144,20865,GO-20142247902,PROPERTY - FOUND,2014-06-08T00:00:00,2014,June,Sunday,8,159,15,2014-06-08T00:00:00,2014,June,Sunday,8,159,15,D33,Toronto,42,Banbury-Don Mills (42),"Open Areas (Lakes, Parks, Rivers)",Outside,LOUIS GARNEAU,HARMONY,RG,21,WHI,1000.0,UNKNOWN,2136,"{'type': 'Point', 'coordinates': (-79.34952647, 43.75179733)}"
-2145,23318,GO-20209010808,THEFT UNDER - BICYCLE,2020-04-09T00:00:00,2020,April,Thursday,9,100,18,2020-04-09T00:00:00,2020,April,Thursday,9,100,19,D33,Toronto,42,Banbury-Don Mills (42),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,RG,7,GRY,0.0,STOLEN,2137,"{'type': 'Point', 'coordinates': (-79.34672609, 43.73706959)}"
-2146,23366,GO-20209028526,THEFT UNDER - BICYCLE,2020-11-02T00:00:00,2020,November,Monday,2,307,19,2020-11-03T00:00:00,2020,November,Tuesday,3,308,19,D33,Toronto,42,Banbury-Don Mills (42),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,TO,27,BLK,1500.0,STOLEN,2138,"{'type': 'Point', 'coordinates': (-79.34668507, 43.73301373)}"
-2147,23404,GO-20179005338,THEFT UNDER - BICYCLE,2017-04-26T00:00:00,2017,April,Wednesday,26,116,21,2017-04-26T00:00:00,2017,April,Wednesday,26,116,21,D33,Toronto,42,Banbury-Don Mills (42),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ROCKHOPPER,MT,21,BLK,500.0,STOLEN,2139,"{'type': 'Point', 'coordinates': (-79.33858809, 43.74083922)}"
-2148,23477,GO-20171759832,THEFT UNDER - BICYCLE,2017-09-20T00:00:00,2017,September,Wednesday,20,263,12,2017-09-28T00:00:00,2017,September,Thursday,28,271,9,D33,Toronto,42,Banbury-Don Mills (42),Schools During Supervised Activity,Educational,CCM,STATIC,MT,21,BLK,300.0,STOLEN,2140,"{'type': 'Point', 'coordinates': (-79.3368089, 43.73623428)}"
-2149,23478,GO-20171775767,THEFT UNDER - BICYCLE,2017-09-27T00:00:00,2017,September,Wednesday,27,270,12,2017-09-30T00:00:00,2017,September,Saturday,30,273,18,D33,Toronto,42,Banbury-Don Mills (42),Schools During Supervised Activity,Educational,CCM,SL 2.0,MT,21,BLK,300.0,STOLEN,2141,"{'type': 'Point', 'coordinates': (-79.3368089, 43.73623428)}"
-2150,23555,GO-20181288932,THEFT UNDER - BICYCLE,2018-07-13T00:00:00,2018,July,Friday,13,194,20,2018-07-15T00:00:00,2018,July,Sunday,15,196,8,D33,Toronto,42,Banbury-Don Mills (42),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KONA\,,MT,24,BLU,2500.0,STOLEN,2142,"{'type': 'Point', 'coordinates': (-79.3531227, 43.7300687)}"
-2151,23768,GO-20169013214,THEFT UNDER - BICYCLE,2016-11-09T00:00:00,2016,November,Wednesday,9,314,13,2016-11-10T00:00:00,2016,November,Thursday,10,315,14,D33,Toronto,42,Banbury-Don Mills (42),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,5,BLU,1200.0,STOLEN,2143,"{'type': 'Point', 'coordinates': (-79.35622587, 43.74163771)}"
-2152,3370,GO-20181594781,THEFT OF EBIKE UNDER $5000,2018-08-28T00:00:00,2018,August,Tuesday,28,240,15,2018-08-28T00:00:00,2018,August,Tuesday,28,240,22,D33,Toronto,43,Victoria Village (43),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,DAYMAK,,EL,1,BLK,2000.0,STOLEN,2144,"{'type': 'Point', 'coordinates': (-79.30368199, 43.72469339)}"
-2153,3382,GO-20189028931,THEFT OF EBIKE UNDER $5000,2018-09-01T00:00:00,2018,September,Saturday,1,244,23,2018-09-03T00:00:00,2018,September,Monday,3,246,20,D33,Toronto,43,Victoria Village (43),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,EM1 SPECIAL EDI,SC,3,BLU,3050.0,STOLEN,2145,"{'type': 'Point', 'coordinates': (-79.30368199, 43.72469339)}"
-2154,4727,GO-20199021664,THEFT UNDER - BICYCLE,2019-07-09T00:00:00,2019,July,Tuesday,9,190,14,2019-07-09T00:00:00,2019,July,Tuesday,9,190,22,D32,Toronto,36,Newtonbrook West (36),Ttc Subway Station,Transit,UK,GREY MOUNTAIN B,MT,21,GRY,100.0,STOLEN,2146,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}"
-2155,7595,GO-20202096038,B&E,2020-11-01T00:00:00,2020,November,Sunday,1,306,17,2020-11-04T00:00:00,2020,November,Wednesday,4,309,21,D33,Toronto,43,Victoria Village (43),"Apartment (Rooming House, Condo)",Apartment,GIANT,,RG,5,GRNBLK,700.0,STOLEN,2147,"{'type': 'Point', 'coordinates': (-79.31825386, 43.72613519)}"
-2156,7804,GO-20141819819,THEFT UNDER,2014-04-02T00:00:00,2014,April,Wednesday,2,92,16,2014-04-03T00:00:00,2014,April,Thursday,3,93,11,D54,Toronto,43,Victoria Village (43),"Apartment (Rooming House, Condo)",Apartment,OTHER,UNKNOWN,SC,0,,4000.0,RECOVERED,2148,"{'type': 'Point', 'coordinates': (-79.30361996, 43.72218643)}"
-2157,8577,GO-20149005578,THEFT UNDER,2014-08-02T00:00:00,2014,August,Saturday,2,214,19,2014-08-03T00:00:00,2014,August,Sunday,3,215,17,D33,Toronto,43,Victoria Village (43),Convenience Stores,Commercial,GT,,MT,30,BLK,400.0,STOLEN,2149,"{'type': 'Point', 'coordinates': (-79.31281898, 43.72684653)}"
-2158,8593,GO-20142669648,B&E,2014-08-04T00:00:00,2014,August,Monday,4,216,21,2014-08-09T00:00:00,2014,August,Saturday,9,221,19,D54,Toronto,43,Victoria Village (43),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,MT,21,BLU,250.0,STOLEN,2150,"{'type': 'Point', 'coordinates': (-79.30304532, 43.72308557)}"
-2159,10206,GO-20151345354,THEFT UNDER,2015-08-06T00:00:00,2015,August,Thursday,6,218,9,2015-08-06T00:00:00,2015,August,Thursday,6,218,11,D54,Toronto,43,Victoria Village (43),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,1700 SSDT,SC,1,RED,3500.0,STOLEN,2151,"{'type': 'Point', 'coordinates': (-79.30497514, 43.72266132)}"
-2160,10356,GO-20159006433,THEFT UNDER,2015-08-06T00:00:00,2015,August,Thursday,6,218,10,2015-08-27T00:00:00,2015,August,Thursday,27,239,15,D33,Toronto,43,Victoria Village (43),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,LIV,TO,15,GRY,670.0,STOLEN,2152,"{'type': 'Point', 'coordinates': (-79.31281898, 43.72684653)}"
-2161,13904,GO-20159006433,THEFT UNDER,2015-08-06T00:00:00,2015,August,Thursday,6,218,10,2015-08-27T00:00:00,2015,August,Thursday,27,239,15,D33,Toronto,43,Victoria Village (43),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,LIV ALIGHT,TO,15,,670.0,STOLEN,2153,"{'type': 'Point', 'coordinates': (-79.31281898, 43.72684653)}"
-2162,14027,GO-20161872986,THEFT UNDER - BICYCLE,2016-10-20T00:00:00,2016,October,Thursday,20,294,17,2016-10-21T00:00:00,2016,October,Friday,21,295,13,D33,Toronto,43,Victoria Village (43),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CANNONDALE,CONTRO 3,OT,10,BRN,1700.0,STOLEN,2154,"{'type': 'Point', 'coordinates': (-79.31281898, 43.72684653)}"
-2163,17038,GO-20189016641,THEFT UNDER - BICYCLE,2018-05-24T00:00:00,2018,May,Thursday,24,144,12,2018-05-29T00:00:00,2018,May,Tuesday,29,149,12,D33,Toronto,43,Victoria Village (43),"Apartment (Rooming House, Condo)",Apartment,GT,TRANSEO,OT,7,,700.0,STOLEN,2155,"{'type': 'Point', 'coordinates': (-79.30343034, 43.72668674)}"
-2164,23471,GO-20179015207,THEFT UNDER - BICYCLE,2017-09-19T00:00:00,2017,September,Tuesday,19,262,9,2017-09-19T00:00:00,2017,September,Tuesday,19,262,18,D33,Toronto,43,Victoria Village (43),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RA,BIG HORN,MT,18,BLU,100.0,STOLEN,2156,"{'type': 'Point', 'coordinates': (-79.32712061, 43.73592433)}"
-2165,25623,GO-20199014917,THEFT UNDER,2019-05-08T00:00:00,2019,May,Wednesday,8,128,1,2019-05-13T00:00:00,2019,May,Monday,13,133,21,D54,Toronto,43,Victoria Village (43),"Apartment (Rooming House, Condo)",Apartment,OT,ST. TROPEZ,OT,24,BLK,0.0,STOLEN,2157,"{'type': 'Point', 'coordinates': (-79.30442806, 43.71890685)}"
-2166,791,GO-20179009574,THEFT UNDER - BICYCLE,2017-07-02T00:00:00,2017,July,Sunday,2,183,18,2017-07-06T00:00:00,2017,July,Thursday,6,187,10,D54,Toronto,44,Flemingdon Park (44),"Apartment (Rooming House, Condo)",Apartment,GI,?105,RG,11,BLU,1600.0,STOLEN,2158,"{'type': 'Point', 'coordinates': (-79.32752394, 43.72664463)}"
-2167,7430,GO-20209025889,THEFT UNDER,2020-08-22T00:00:00,2020,August,Saturday,22,235,10,2020-10-09T00:00:00,2020,October,Friday,9,283,11,D54,Toronto,44,Flemingdon Park (44),"Apartment (Rooming House, Condo)",Apartment,GI,REVEL,OT,24,,800.0,STOLEN,2160,"{'type': 'Point', 'coordinates': (-79.33491684000002, 43.71873068)}"
-2168,7888,GO-20149003199,THEFT UNDER,2014-05-05T00:00:00,2014,May,Monday,5,125,3,2014-05-07T00:00:00,2014,May,Wednesday,7,127,9,D54,Toronto,44,Flemingdon Park (44),Schools During Un-Supervised Activity,Educational,SU,,MT,18,BLU,100.0,STOLEN,2161,"{'type': 'Point', 'coordinates': (-79.33435458, 43.70999672)}"
-2169,8303,GO-20142419099,THEFT UNDER,2014-07-02T00:00:00,2014,July,Wednesday,2,183,22,2014-07-03T00:00:00,2014,July,Thursday,3,184,4,D54,Toronto,44,Flemingdon Park (44),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SCHWINN,,MT,21,BLKWHI,1300.0,STOLEN,2162,"{'type': 'Point', 'coordinates': (-79.32457447, 43.71215256000001)}"
-2170,23372,GO-20202290284,FRAUD OVER,2020-11-27T00:00:00,2020,November,Friday,27,332,0,2020-12-05T00:00:00,2020,December,Saturday,5,340,14,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,ZZZ,H1,SC,3,,2547.0,STOLEN,2163,"{'type': 'Point', 'coordinates': (-79.4173091, 43.78706936)}"
-2171,24320,GO-20189020179,THEFT UNDER - BICYCLE,2018-06-25T00:00:00,2018,June,Monday,25,176,11,2018-06-25T00:00:00,2018,June,Monday,25,176,23,D32,Toronto,34,Bathurst Manor (34),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,IN,,MT,18,LGR,500.0,STOLEN,2164,"{'type': 'Point', 'coordinates': (-79.46069903, 43.75388555)}"
-2172,8320,GO-20142461061,THEFT UNDER,2014-07-03T00:00:00,2014,July,Thursday,3,184,22,2014-07-09T00:00:00,2014,July,Wednesday,9,190,9,D54,Toronto,44,Flemingdon Park (44),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPORTEK,REBEL,MT,18,WHI,50.0,STOLEN,2165,"{'type': 'Point', 'coordinates': (-79.32457447, 43.71215256000001)}"
-2173,8325,GO-20149004648,THEFT UNDER,2014-07-02T00:00:00,2014,July,Wednesday,2,183,9,2014-07-03T00:00:00,2014,July,Thursday,3,184,8,D54,Toronto,44,Flemingdon Park (44),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,ULTRASHOCK,MT,18,RED,140.0,STOLEN,2166,"{'type': 'Point', 'coordinates': (-79.33033785, 43.71657543)}"
-2174,8360,GO-20142500876,THEFT OF MOTOR VEHICLE,2014-07-14T00:00:00,2014,July,Monday,14,195,20,2014-07-15T00:00:00,2014,July,Tuesday,15,196,10,D54,Toronto,44,Flemingdon Park (44),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,RG,1,WHIPNK,80.0,STOLEN,2167,"{'type': 'Point', 'coordinates': (-79.32804455, 43.715613530000006)}"
-2175,8765,GO-20149006375,THEFT UNDER,2014-06-21T00:00:00,2014,June,Saturday,21,172,12,2014-08-31T00:00:00,2014,August,Sunday,31,243,6,D54,Toronto,44,Flemingdon Park (44),"Apartment (Rooming House, Condo)",Apartment,IN,,RG,21,SIL,500.0,STOLEN,2168,"{'type': 'Point', 'coordinates': (-79.33727599, 43.71655374)}"
-2176,8836,GO-20142874194,THEFT UNDER,2014-08-29T00:00:00,2014,August,Friday,29,241,16,2014-09-09T00:00:00,2014,September,Tuesday,9,252,9,D54,Toronto,44,Flemingdon Park (44),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,TR,0,,1400.0,STOLEN,2169,"{'type': 'Point', 'coordinates': (-79.33414521, 43.71492666)}"
-2177,9662,GO-2015878849,THEFT UNDER,2015-05-26T00:00:00,2015,May,Tuesday,26,146,9,2015-05-26T00:00:00,2015,May,Tuesday,26,146,15,D54,Toronto,44,Flemingdon Park (44),Schools During Supervised Activity,Educational,CCM,STATIC,MT,7,BLKYEL,200.0,STOLEN,2170,"{'type': 'Point', 'coordinates': (-79.33435458, 43.70999672)}"
-2178,9866,GO-20151058849,THEFT UNDER,2015-06-23T00:00:00,2015,June,Tuesday,23,174,18,2015-06-23T00:00:00,2015,June,Tuesday,23,174,18,D54,Toronto,44,Flemingdon Park (44),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,FLASH,,RG,0,YELSIL,140.0,STOLEN,2171,"{'type': 'Point', 'coordinates': (-79.33136581, 43.718360610000005)}"
-2179,9974,GO-20159004343,THEFT UNDER,2015-07-05T00:00:00,2015,July,Sunday,5,186,12,2015-07-09T00:00:00,2015,July,Thursday,9,190,13,D54,Toronto,44,Flemingdon Park (44),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,,MT,5,BLU,150.0,STOLEN,2172,"{'type': 'Point', 'coordinates': (-79.33136581, 43.718360610000005)}"
-2180,10171,GO-20151341956,THEFT UNDER,2015-07-31T00:00:00,2015,July,Friday,31,212,18,2015-08-05T00:00:00,2015,August,Wednesday,5,217,20,D54,Toronto,44,Flemingdon Park (44),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UNKNOWN MAKE,,RG,5,WHI,100.0,STOLEN,2173,"{'type': 'Point', 'coordinates': (-79.33136581, 43.718360610000005)}"
-2181,10220,GO-20159005529,THEFT UNDER,2015-08-08T00:00:00,2015,August,Saturday,8,220,14,2015-08-09T00:00:00,2015,August,Sunday,9,221,10,D54,Toronto,44,Flemingdon Park (44),Unknown,Other,UK,,RG,21,BLK,0.0,STOLEN,2174,"{'type': 'Point', 'coordinates': (-79.33136581, 43.718360610000005)}"
-2182,10519,GO-20151643306,THEFT UNDER,2015-09-23T00:00:00,2015,September,Wednesday,23,266,6,2015-09-23T00:00:00,2015,September,Wednesday,23,266,7,D54,Toronto,44,Flemingdon Park (44),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECILAIZED,VITA ELITE,OT,27,SIL,200.0,STOLEN,2175,"{'type': 'Point', 'coordinates': (-79.33435458, 43.70999672)}"
-2183,10755,GO-20159009654,THEFT UNDER,2015-11-11T00:00:00,2015,November,Wednesday,11,315,0,2015-11-11T00:00:00,2015,November,Wednesday,11,315,22,D54,Toronto,44,Flemingdon Park (44),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MA,MUIRWOODS,OT,8,BLK,900.0,STOLEN,2176,"{'type': 'Point', 'coordinates': (-79.33435458, 43.70999672)}"
-2184,11412,GO-2016944515,THEFT UNDER - BICYCLE,2016-05-31T00:00:00,2016,May,Tuesday,31,152,18,2016-05-31T00:00:00,2016,May,Tuesday,31,152,20,D54,Toronto,44,Flemingdon Park (44),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUPERCYCLE,MONTAGNE,MT,12,PLE,150.0,STOLEN,2177,"{'type': 'Point', 'coordinates': (-79.33727599, 43.71655374)}"
-2185,11522,GO-20169005749,THEFT UNDER - BICYCLE,2016-06-14T00:00:00,2016,June,Tuesday,14,166,1,2016-06-14T00:00:00,2016,June,Tuesday,14,166,9,D54,Toronto,44,Flemingdon Park (44),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,CROSSROAD,OT,20,GRN,500.0,STOLEN,2178,"{'type': 'Point', 'coordinates': (-79.33435458, 43.70999672)}"
-2186,12930,GO-2019936222,THEFT UNDER,2019-05-19T00:00:00,2019,May,Sunday,19,139,21,2019-05-22T00:00:00,2019,May,Wednesday,22,142,20,D54,Toronto,44,Flemingdon Park (44),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,RG,1,BLKRED,,STOLEN,2179,"{'type': 'Point', 'coordinates': (-79.33136581, 43.718360610000005)}"
-2187,14255,GO-20189021478,THEFT UNDER - BICYCLE,2018-06-29T00:00:00,2018,June,Friday,29,180,16,2018-07-07T00:00:00,2018,July,Saturday,7,188,21,D54,Toronto,44,Flemingdon Park (44),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,MT,15,BLU,250.0,STOLEN,2180,"{'type': 'Point', 'coordinates': (-79.33631057, 43.71440385)}"
-2188,3590,GO-20181814987,THEFT OF EBIKE UNDER $5000,2018-09-23T00:00:00,2018,September,Sunday,23,266,12,2018-10-01T00:00:00,2018,October,Monday,1,274,14,D33,Toronto,45,Parkwoods-Donalda (45),"Single Home, House (Attach Garage, Cottage, Mobile)",House,EMMO,DAYMARK,EL,3,BLK,1000.0,STOLEN,2181,"{'type': 'Point', 'coordinates': (-79.32610783, 43.76593251)}"
-2189,15884,GO-20149004788,THEFT UNDER,2014-07-06T00:00:00,2014,July,Sunday,6,187,18,2014-07-07T00:00:00,2014,July,Monday,7,188,18,D54,Toronto,44,Flemingdon Park (44),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,,MT,18,BLU,159.0,STOLEN,2182,"{'type': 'Point', 'coordinates': (-79.32457447, 43.71215256000001)}"
-2190,15897,GO-20142647541,THEFT UNDER,2014-08-02T00:00:00,2014,August,Saturday,2,214,21,2014-08-06T00:00:00,2014,August,Wednesday,6,218,14,D54,Toronto,44,Flemingdon Park (44),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NEXT,ULTRASHOCK,OT,0,GRYRED,160.0,STOLEN,2183,"{'type': 'Point', 'coordinates': (-79.32774009, 43.71262111)}"
-2191,16005,GO-2016357993,MISCHIEF UNDER,2016-02-25T00:00:00,2016,February,Thursday,25,56,0,2016-02-29T00:00:00,2016,February,Monday,29,60,18,D54,Toronto,44,Flemingdon Park (44),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,RUBY COMP,RC,18,RED,3000.0,STOLEN,2184,"{'type': 'Point', 'coordinates': (-79.32752394, 43.72664463)}"
-2192,18836,GO-20149004214,THEFT UNDER,2014-06-18T00:00:00,2014,June,Wednesday,18,169,12,2014-06-18T00:00:00,2014,June,Wednesday,18,169,17,D54,Toronto,44,Flemingdon Park (44),"Apartment (Rooming House, Condo)",Apartment,OT,26 MOUNTAIN BIK,MT,18,BLK,100.0,STOLEN,2185,"{'type': 'Point', 'coordinates': (-79.32961375, 43.71531155000001)}"
-2193,18912,GO-20151213802,THEFT UNDER,2015-07-16T00:00:00,2015,July,Thursday,16,197,19,2015-07-17T00:00:00,2015,July,Friday,17,198,11,D54,Toronto,44,Flemingdon Park (44),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OTHER,,OT,1,,,STOLEN,2186,"{'type': 'Point', 'coordinates': (-79.33136581, 43.718360610000005)}"
-2194,19108,GO-20171507276,THEFT UNDER,2017-08-16T00:00:00,2017,August,Wednesday,16,228,17,2017-08-21T00:00:00,2017,August,Monday,21,233,11,D54,Toronto,44,Flemingdon Park (44),"Apartment (Rooming House, Condo)",Apartment,OTHER,BMX HANDLES,OT,1,,120.0,STOLEN,2187,"{'type': 'Point', 'coordinates': (-79.33633149, 43.71838158)}"
-2195,19120,GO-20171743439,THEFT UNDER - BICYCLE,2017-09-25T00:00:00,2017,September,Monday,25,268,20,2017-09-25T00:00:00,2017,September,Monday,25,268,20,D54,Toronto,44,Flemingdon Park (44),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,HUFFY,,RG,21,DGR,300.0,STOLEN,2188,"{'type': 'Point', 'coordinates': (-79.33631057, 43.71440385)}"
-2196,19176,GO-20189021478,THEFT UNDER - BICYCLE,2018-06-29T00:00:00,2018,June,Friday,29,180,16,2018-07-07T00:00:00,2018,July,Saturday,7,188,21,D54,Toronto,44,Flemingdon Park (44),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,MT,15,BLU,0.0,STOLEN,2189,"{'type': 'Point', 'coordinates': (-79.33631057, 43.71440385)}"
-2197,19226,GO-2019927563,THEFT UNDER,2019-05-17T00:00:00,2019,May,Friday,17,137,21,2019-05-21T00:00:00,2019,May,Tuesday,21,141,16,D54,Toronto,44,Flemingdon Park (44),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,AVIGO,2 WHEEL,RG,1,BLU,150.0,STOLEN,2190,"{'type': 'Point', 'coordinates': (-79.33033785, 43.71657543)}"
-2198,19387,GO-20209016782,THEFT UNDER,2020-06-26T00:00:00,2020,June,Friday,26,178,15,2020-07-03T00:00:00,2020,July,Friday,3,185,15,D54,Toronto,44,Flemingdon Park (44),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,1,RED,0.0,STOLEN,2191,"{'type': 'Point', 'coordinates': (-79.33119518, 43.71075311)}"
-2199,19628,GO-20142328467,THEFT UNDER,2014-06-20T00:00:00,2014,June,Friday,20,171,5,2014-06-20T00:00:00,2014,June,Friday,20,171,7,D54,Toronto,44,Flemingdon Park (44),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,OT,1,LBL,,STOLEN,2192,"{'type': 'Point', 'coordinates': (-79.32696626, 43.71865964)}"
-2200,19647,GO-20142642556,THEFT UNDER,2014-07-30T00:00:00,2014,July,Wednesday,30,211,22,2014-08-05T00:00:00,2014,August,Tuesday,5,217,19,D54,Toronto,44,Flemingdon Park (44),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RALEIGH,,MT,7,GRY,200.0,STOLEN,2193,"{'type': 'Point', 'coordinates': (-79.33631057, 43.71440385)}"
-2201,19691,GO-20159003984,THEFT UNDER,2015-06-27T00:00:00,2015,June,Saturday,27,178,13,2015-06-27T00:00:00,2015,June,Saturday,27,178,14,D54,Toronto,44,Flemingdon Park (44),"Apartment (Rooming House, Condo)",Apartment,OT,MCKINLEY,MT,18,DGR,100.0,STOLEN,2194,"{'type': 'Point', 'coordinates': (-79.33033785, 43.71657543)}"
-2202,22234,GO-20179010003,THEFT UNDER - BICYCLE,2017-07-09T00:00:00,2017,July,Sunday,9,190,19,2017-07-12T00:00:00,2017,July,Wednesday,12,193,9,D54,Toronto,44,Flemingdon Park (44),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RC,40,RED,1200.0,STOLEN,2195,"{'type': 'Point', 'coordinates': (-79.32752394, 43.72664463)}"
-2203,22368,GO-2019682695,THEFT UNDER,2019-04-15T00:00:00,2019,April,Monday,15,105,20,2019-04-15T00:00:00,2019,April,Monday,15,105,21,D54,Toronto,44,Flemingdon Park (44),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,BM,1,BLKPLE,300.0,STOLEN,2196,"{'type': 'Point', 'coordinates': (-79.33631057, 43.71440385)}"
-2204,22374,GO-2019927668,THEFT UNDER,2019-05-19T00:00:00,2019,May,Sunday,19,139,17,2019-05-21T00:00:00,2019,May,Tuesday,21,141,17,D54,Toronto,44,Flemingdon Park (44),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN,UNKNOWN,OT,5,,,STOLEN,2197,"{'type': 'Point', 'coordinates': (-79.33033785, 43.71657543)}"
-2205,22375,GO-2019927668,THEFT UNDER,2019-05-19T00:00:00,2019,May,Sunday,19,139,17,2019-05-21T00:00:00,2019,May,Tuesday,21,141,17,D54,Toronto,44,Flemingdon Park (44),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN,UNKNOWN,OT,1,,,STOLEN,2198,"{'type': 'Point', 'coordinates': (-79.33033785, 43.71657543)}"
-2206,22595,GO-20209030555,THEFT UNDER,2020-10-23T00:00:00,2020,October,Friday,23,297,22,2020-11-25T00:00:00,2020,November,Wednesday,25,330,12,D54,Toronto,44,Flemingdon Park (44),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,1,,0.0,STOLEN,2199,"{'type': 'Point', 'coordinates': (-79.33024627, 43.71152383)}"
-2207,22851,GO-20149004706,THEFT UNDER,2014-07-03T00:00:00,2014,July,Thursday,3,184,20,2014-07-04T00:00:00,2014,July,Friday,4,185,16,D54,Toronto,44,Flemingdon Park (44),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,MERIDIANONE,MT,18,GRY,300.0,STOLEN,2200,"{'type': 'Point', 'coordinates': (-79.32457447, 43.71215256000001)}"
-2208,22891,GO-2015560068,THEFT UNDER,2015-04-02T00:00:00,2015,April,Thursday,2,92,16,2015-04-04T00:00:00,2015,April,Saturday,4,94,19,D54,Toronto,44,Flemingdon Park (44),"Open Areas (Lakes, Parks, Rivers)",Outside,OTHER,,MT,10,BLKWHI,300.0,STOLEN,2201,"{'type': 'Point', 'coordinates': (-79.32961375, 43.71531155000001)}"
-2209,25420,GO-20162161871,THEFT UNDER,2016-11-14T00:00:00,2016,November,Monday,14,319,9,2016-12-06T00:00:00,2016,December,Tuesday,6,341,9,D54,Toronto,44,Flemingdon Park (44),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,RG,1,LGR,,STOLEN,2202,"{'type': 'Point', 'coordinates': (-79.33414521, 43.71492666)}"
-2210,25458,GO-20171222818,PUBLIC MISCHIEF,2017-07-08T00:00:00,2017,July,Saturday,8,189,12,2017-07-08T00:00:00,2017,July,Saturday,8,189,15,D54,Toronto,44,Flemingdon Park (44),"Apartment (Rooming House, Condo)",Apartment,NORCO,,MT,18,BLK,1200.0,STOLEN,2203,"{'type': 'Point', 'coordinates': (-79.32457447, 43.71215256000001)}"
-2211,25683,GO-20199033918,THEFT UNDER,2019-10-04T00:00:00,2019,October,Friday,4,277,8,2019-10-15T00:00:00,2019,October,Tuesday,15,288,12,D54,Toronto,44,Flemingdon Park (44),"Apartment (Rooming House, Condo)",Apartment,HF,,RG,21,RED,250.0,STOLEN,2204,"{'type': 'Point', 'coordinates': (-79.32961375, 43.71531155000001)}"
-2212,25793,GO-20209026404,THEFT UNDER,2020-10-14T00:00:00,2020,October,Wednesday,14,288,11,2020-10-14T00:00:00,2020,October,Wednesday,14,288,11,D54,Toronto,44,Flemingdon Park (44),"Apartment (Rooming House, Condo)",Apartment,SU,,MT,18,,250.0,STOLEN,2205,"{'type': 'Point', 'coordinates': (-79.33119518, 43.71075311)}"
-2213,619,GO-20171065898,THEFT UNDER - BICYCLE,2017-06-07T00:00:00,2017,June,Wednesday,7,158,23,2017-06-15T00:00:00,2017,June,Thursday,15,166,11,D33,Toronto,45,Parkwoods-Donalda (45),Schools During Un-Supervised Activity,Educational,CCM,APEX,MT,18,WHI,400.0,STOLEN,2206,"{'type': 'Point', 'coordinates': (-79.31755862, 43.75180164)}"
-2214,1049,GO-20171373981,THEFT FROM MOTOR VEHICLE UNDER,2017-07-30T00:00:00,2017,July,Sunday,30,211,22,2017-07-31T00:00:00,2017,July,Monday,31,212,10,D33,Toronto,45,Parkwoods-Donalda (45),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNK,,OT,0,,,STOLEN,2207,"{'type': 'Point', 'coordinates': (-79.33058409, 43.76542092)}"
-2215,1396,GO-20171648544,THEFT UNDER - BICYCLE,2017-09-08T00:00:00,2017,September,Friday,8,251,17,2017-09-11T00:00:00,2017,September,Monday,11,254,18,D33,Toronto,45,Parkwoods-Donalda (45),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,TR,0,YEL,,STOLEN,2208,"{'type': 'Point', 'coordinates': (-79.33312812, 43.76043851)}"
-2216,1397,GO-20171648544,THEFT UNDER - BICYCLE,2017-09-08T00:00:00,2017,September,Friday,8,251,17,2017-09-11T00:00:00,2017,September,Monday,11,254,18,D33,Toronto,45,Parkwoods-Donalda (45),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,ZZZ,,TR,0,RED,,STOLEN,2209,"{'type': 'Point', 'coordinates': (-79.33312812, 43.76043851)}"
-2217,2810,GO-20189021961,THEFT UNDER - BICYCLE,2017-06-28T00:00:00,2017,June,Wednesday,28,179,16,2018-07-10T00:00:00,2018,July,Tuesday,10,191,20,D33,Toronto,45,Parkwoods-Donalda (45),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,,MT,21,,455.0,STOLEN,2210,"{'type': 'Point', 'coordinates': (-79.31419956, 43.74149834)}"
-2218,198,GO-2017600032,THEFT UNDER,2017-03-01T00:00:00,2017,March,Wednesday,1,60,17,2017-04-05T00:00:00,2017,April,Wednesday,5,95,13,D32,Toronto,32,Englemount-Lawrence (32),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,FXS7,RC,18,SILBLK,3000.0,STOLEN,2211,"{'type': 'Point', 'coordinates': (-79.43961987, 43.7242877)}"
-2219,17747,GO-20179016905,THEFT UNDER,2017-10-06T00:00:00,2017,October,Friday,6,279,17,2017-10-10T00:00:00,2017,October,Tuesday,10,283,22,D32,Toronto,37,Willowdale West (37),"Apartment (Rooming House, Condo)",Apartment,OT,MOUNTAIN,MT,21,BLK,750.0,STOLEN,2212,"{'type': 'Point', 'coordinates': (-79.41553821, 43.7748912)}"
-2220,17778,GO-20179022271,THEFT UNDER,2017-12-02T00:00:00,2017,December,Saturday,2,336,4,2017-12-15T00:00:00,2017,December,Friday,15,349,10,D32,Toronto,37,Willowdale West (37),"Apartment (Rooming House, Condo)",Apartment,GT,,MT,24,BLK,450.0,STOLEN,2213,"{'type': 'Point', 'coordinates': (-79.41725427, 43.77839991)}"
-2221,24428,GO-20149004844,THEFT UNDER,2014-07-04T00:00:00,2014,July,Friday,4,185,16,2014-07-09T00:00:00,2014,July,Wednesday,9,190,15,D32,Toronto,34,Bathurst Manor (34),"Apartment (Rooming House, Condo)",Apartment,,,MT,18,WHI,220.0,STOLEN,2214,"{'type': 'Point', 'coordinates': (-79.45312362, 43.75381691)}"
-2222,250,GO-20179004976,THEFT OVER - BICYCLE,2017-04-16T00:00:00,2017,April,Sunday,16,106,7,2017-04-20T00:00:00,2017,April,Thursday,20,110,7,D32,Toronto,39,Bedford Park-Nortown (39),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,PHONIC,TO,21,GRY,6500.0,STOLEN,2215,"{'type': 'Point', 'coordinates': (-79.4062109, 43.74185863)}"
-2223,24392,GO-20201432834,B&E,2020-08-01T00:00:00,2020,August,Saturday,1,214,4,2020-08-01T00:00:00,2020,August,Saturday,1,214,11,D13,Toronto,32,Englemount-Lawrence (32),"Apartment (Rooming House, Condo)",Apartment,TREK,NIKOSL WSD,MT,0,BLU,800.0,STOLEN,2216,"{'type': 'Point', 'coordinates': (-79.44099953, 43.71598468)}"
-2224,252,GO-20179004991,THEFT UNDER,2017-04-20T00:00:00,2017,April,Thursday,20,110,11,2017-04-20T00:00:00,2017,April,Thursday,20,110,14,D13,Toronto,32,Englemount-Lawrence (32),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,11,GRY,3160.0,STOLEN,2217,"{'type': 'Point', 'coordinates': (-79.42810684, 43.71233208)}"
-2225,23373,GO-20202290284,FRAUD OVER,2020-11-27T00:00:00,2020,November,Friday,27,332,0,2020-12-05T00:00:00,2020,December,Saturday,5,340,14,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,ZZZ,A3,SC,3,,2598.0,STOLEN,2218,"{'type': 'Point', 'coordinates': (-79.4173091, 43.78706936)}"
-2226,4090,GO-20199008084,THEFT UNDER - BICYCLE,2019-03-12T00:00:00,2019,March,Tuesday,12,71,20,2019-03-12T00:00:00,2019,March,Tuesday,12,71,20,D33,Toronto,45,Parkwoods-Donalda (45),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,,RG,21,DBL,500.0,STOLEN,2219,"{'type': 'Point', 'coordinates': (-79.3317634, 43.75222786)}"
-2227,17779,GO-20179022271,THEFT UNDER,2017-12-02T00:00:00,2017,December,Saturday,2,336,4,2017-12-15T00:00:00,2017,December,Friday,15,349,10,D32,Toronto,37,Willowdale West (37),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,1,GRY,250.0,STOLEN,2220,"{'type': 'Point', 'coordinates': (-79.41725427, 43.77839991)}"
-2228,6417,GO-20209015579,THEFT UNDER - BICYCLE,2020-06-16T00:00:00,2020,June,Tuesday,16,168,18,2020-06-17T00:00:00,2020,June,Wednesday,17,169,14,D33,Toronto,45,Parkwoods-Donalda (45),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,7,BLK,500.0,STOLEN,2221,"{'type': 'Point', 'coordinates': (-79.31874761, 43.76487876)}"
-2229,4959,GO-20199024801,THEFT UNDER,2019-08-02T00:00:00,2019,August,Friday,2,214,12,2019-08-02T00:00:00,2019,August,Friday,2,214,18,D32,Toronto,36,Newtonbrook West (36),Ttc Subway Station,Transit,GI,ROAM,MT,27,GRY,800.0,STOLEN,2222,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}"
-2230,819,GO-20171217379,THEFT UNDER - BICYCLE,2017-07-07T00:00:00,2017,July,Friday,7,188,13,2017-07-07T00:00:00,2017,July,Friday,7,188,17,D32,Toronto,39,Bedford Park-Nortown (39),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,MT,18,BLU,300.0,STOLEN,2223,"{'type': 'Point', 'coordinates': (-79.41816142, 43.740629410000004)}"
-2231,24393,GO-20201432834,B&E,2020-08-01T00:00:00,2020,August,Saturday,1,214,4,2020-08-01T00:00:00,2020,August,Saturday,1,214,11,D13,Toronto,32,Englemount-Lawrence (32),"Apartment (Rooming House, Condo)",Apartment,TREK,FUEL EX 8,MT,0,BLK,3000.0,STOLEN,2224,"{'type': 'Point', 'coordinates': (-79.44099953, 43.71598468)}"
-2232,403,GO-2017865308,THEFT UNDER - BICYCLE,2017-05-12T00:00:00,2017,May,Friday,12,132,14,2017-05-16T00:00:00,2017,May,Tuesday,16,136,21,D32,Toronto,32,Englemount-Lawrence (32),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OTHER,,MT,18,,150.0,STOLEN,2225,"{'type': 'Point', 'coordinates': (-79.43242389, 43.72046868)}"
-2233,24488,GO-20159007381,THEFT UNDER,2015-09-18T00:00:00,2015,September,Friday,18,261,16,2015-09-18T00:00:00,2015,September,Friday,18,261,19,D32,Toronto,34,Bathurst Manor (34),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,SPORTING LIFE O,MT,18,RED,232.0,STOLEN,2226,"{'type': 'Point', 'coordinates': (-79.44049289, 43.75512241)}"
-2234,24450,GO-2015789818,PROPERTY - FOUND,2015-05-12T00:00:00,2015,May,Tuesday,12,132,8,2015-05-12T00:00:00,2015,May,Tuesday,12,132,8,D32,Toronto,32,Englemount-Lawrence (32),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,A485HB6X32YD80,EL,0,BLU,1000.0,UNKNOWN,2227,"{'type': 'Point', 'coordinates': (-79.43086822, 43.72421999)}"
-2235,912,GO-20179010537,THEFT UNDER - BICYCLE,2017-07-17T00:00:00,2017,July,Monday,17,198,8,2017-07-18T00:00:00,2017,July,Tuesday,18,199,21,D53,Toronto,39,Bedford Park-Nortown (39),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,STUMPJUMPER FSR,MT,27,BLK,2500.0,STOLEN,2228,"{'type': 'Point', 'coordinates': (-79.42158924, 43.71409205)}"
-2236,23374,GO-20202290284,FRAUD OVER,2020-11-27T00:00:00,2020,November,Friday,27,332,0,2020-12-05T00:00:00,2020,December,Saturday,5,340,14,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,ZZZ,4S,SC,3,,2598.0,STOLEN,2229,"{'type': 'Point', 'coordinates': (-79.4173091, 43.78706936)}"
-2237,1999,GO-20189002218,THEFT UNDER - BICYCLE,2018-01-22T00:00:00,2018,January,Monday,22,22,14,2018-01-23T00:00:00,2018,January,Tuesday,23,23,14,D13,Toronto,32,Englemount-Lawrence (32),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,,RG,18,,300.0,STOLEN,2230,"{'type': 'Point', 'coordinates': (-79.4407141, 43.71526791)}"
-2238,24569,GO-2017835723,THEFT UNDER - BICYCLE,2017-05-10T00:00:00,2017,May,Wednesday,10,130,12,2017-05-12T00:00:00,2017,May,Friday,12,132,10,D32,Toronto,34,Bathurst Manor (34),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,MT,21,BLUBLK,300.0,STOLEN,2231,"{'type': 'Point', 'coordinates': (-79.44835753, 43.75344878)}"
-2239,24465,GO-20151228581,THEFT UNDER,2015-07-19T00:00:00,2015,July,Sunday,19,200,13,2015-07-19T00:00:00,2015,July,Sunday,19,200,13,D32,Toronto,32,Englemount-Lawrence (32),"Open Areas (Lakes, Parks, Rivers)",Outside,CCM,,MT,21,WHI,250.0,STOLEN,2232,"{'type': 'Point', 'coordinates': (-79.43520689, 43.7225316)}"
-2240,1077,GO-20171414185,THEFT OVER - BICYCLE,2017-08-05T00:00:00,2017,August,Saturday,5,217,23,2017-08-06T00:00:00,2017,August,Sunday,6,218,9,D53,Toronto,39,Bedford Park-Nortown (39),"Private Property Structure (Pool, Shed, Detached Garage)",Other,LOOK,,RC,1,BLK WH,6000.0,STOLEN,2233,"{'type': 'Point', 'coordinates': (-79.41958503, 43.719928)}"
-2241,17892,GO-20189028349,THEFT UNDER - BICYCLE,2018-08-29T00:00:00,2018,August,Wednesday,29,241,0,2018-08-29T00:00:00,2018,August,Wednesday,29,241,1,D32,Toronto,37,Willowdale West (37),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RG,1,WHI,400.0,STOLEN,2234,"{'type': 'Point', 'coordinates': (-79.41286325, 43.76927425)}"
-2242,23375,GO-20202290284,FRAUD OVER,2020-11-27T00:00:00,2020,November,Friday,27,332,0,2020-12-05T00:00:00,2020,December,Saturday,5,340,14,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,ZZZ,X8,SC,3,,1499.0,STOLEN,2235,"{'type': 'Point', 'coordinates': (-79.4173091, 43.78706936)}"
-2243,1078,GO-20171414185,THEFT OVER - BICYCLE,2017-08-05T00:00:00,2017,August,Saturday,5,217,23,2017-08-06T00:00:00,2017,August,Sunday,6,218,9,D53,Toronto,39,Bedford Park-Nortown (39),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,RUBY,RC,1,BUR,3000.0,STOLEN,2236,"{'type': 'Point', 'coordinates': (-79.41958503, 43.719928)}"
-2244,7166,GO-20209022219,THEFT UNDER - BICYCLE,2020-09-03T00:00:00,2020,September,Thursday,3,247,14,2020-09-03T00:00:00,2020,September,Thursday,3,247,16,D33,Toronto,45,Parkwoods-Donalda (45),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,21,BLU,491.0,STOLEN,2237,"{'type': 'Point', 'coordinates': (-79.33872763, 43.76289207)}"
-2245,23376,GO-20202290284,FRAUD OVER,2020-11-27T00:00:00,2020,November,Friday,27,332,0,2020-12-05T00:00:00,2020,December,Saturday,5,340,14,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,ZZZ,CN,SC,3,,1499.0,STOLEN,2238,"{'type': 'Point', 'coordinates': (-79.4173091, 43.78706936)}"
-2246,5136,GO-20199027289,THEFT UNDER - BICYCLE,2019-08-22T00:00:00,2019,August,Thursday,22,234,9,2019-08-22T00:00:00,2019,August,Thursday,22,234,15,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,NEKO 1,RG,21,BLK,580.0,STOLEN,2239,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}"
-2247,17936,GO-20149005324,THEFT FROM MOTOR VEHICLE UNDER,2014-07-25T00:00:00,2014,July,Friday,25,206,1,2014-07-25T00:00:00,2014,July,Friday,25,206,10,D32,Toronto,37,Willowdale West (37),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,DIABLO,RC,18,BLK,4000.0,STOLEN,2240,"{'type': 'Point', 'coordinates': (-79.42785968, 43.77480962)}"
-2248,1079,GO-20171414185,THEFT OVER - BICYCLE,2017-08-05T00:00:00,2017,August,Saturday,5,217,23,2017-08-06T00:00:00,2017,August,Sunday,6,218,9,D53,Toronto,39,Bedford Park-Nortown (39),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,RAPID,MT,1,WHI,1100.0,STOLEN,2241,"{'type': 'Point', 'coordinates': (-79.41958503, 43.719928)}"
-2249,7234,GO-20201731826,THEFT UNDER - BICYCLE,2020-09-12T00:00:00,2020,September,Saturday,12,256,14,2020-09-13T00:00:00,2020,September,Sunday,13,257,19,D33,Toronto,45,Parkwoods-Donalda (45),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,HARO,,MT,28,BLK,700.0,STOLEN,2242,"{'type': 'Point', 'coordinates': (-79.30975281, 43.74214362)}"
-2250,2139,GO-2018624793,PROPERTY - FOUND,2018-04-07T00:00:00,2018,April,Saturday,7,97,19,2018-04-08T00:00:00,2018,April,Sunday,8,98,14,D32,Toronto,32,Englemount-Lawrence (32),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,ASCENT,RG,12,WHI,100.0,UNKNOWN,2243,"{'type': 'Point', 'coordinates': (-79.43997894, 43.721537680000004)}"
-2251,24482,GO-20159005824,THEFT UNDER,2015-08-14T00:00:00,2015,August,Friday,14,226,19,2015-08-14T00:00:00,2015,August,Friday,14,226,19,D32,Toronto,32,Englemount-Lawrence (32),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SP,,MT,18,,200.0,STOLEN,2244,"{'type': 'Point', 'coordinates': (-79.43711881, 43.71859418)}"
-2252,24570,GO-2017835723,THEFT UNDER - BICYCLE,2017-05-10T00:00:00,2017,May,Wednesday,10,130,12,2017-05-12T00:00:00,2017,May,Friday,12,132,10,D32,Toronto,34,Bathurst Manor (34),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,MYKA,MT,21,WHIONG,500.0,RECOVERED,2245,"{'type': 'Point', 'coordinates': (-79.44835753, 43.75344878)}"
-2253,24486,GO-20151545579,THEFT UNDER,2015-09-02T00:00:00,2015,September,Wednesday,2,245,19,2015-09-07T00:00:00,2015,September,Monday,7,250,16,D32,Toronto,32,Englemount-Lawrence (32),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,BM,1,BLKRED,350.0,STOLEN,2246,"{'type': 'Point', 'coordinates': (-79.43819728, 43.73027846)}"
-2254,1418,GO-20179014833,THEFT UNDER - BICYCLE,2017-09-13T00:00:00,2017,September,Wednesday,13,256,8,2017-09-15T00:00:00,2017,September,Friday,15,258,11,D32,Toronto,35,Westminster-Branson (35),Schools During Supervised Activity,Educational,BI,,RG,27,ONG,400.0,STOLEN,2254,"{'type': 'Point', 'coordinates': (-79.44526491, 43.7735142)}"
-2255,155,GO-2017447362,THEFT UNDER - BICYCLE,2017-03-10T00:00:00,2017,March,Friday,10,69,16,2017-03-13T00:00:00,2017,March,Monday,13,72,14,D32,Toronto,35,Westminster-Branson (35),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,"STATIC 26""""",MT,21,YEL,355.0,STOLEN,2247,"{'type': 'Point', 'coordinates': (-79.44571399, 43.79240783)}"
-2256,243,GO-2017670729,THEFT UNDER - BICYCLE,2017-04-16T00:00:00,2017,April,Sunday,16,106,17,2017-04-16T00:00:00,2017,April,Sunday,16,106,20,D32,Toronto,35,Westminster-Branson (35),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DIAMONDBACK,,MT,0,BLU,250.0,STOLEN,2248,"{'type': 'Point', 'coordinates': (-79.44632616, 43.78121576)}"
-2257,244,GO-2017670729,THEFT UNDER - BICYCLE,2017-04-16T00:00:00,2017,April,Sunday,16,106,17,2017-04-16T00:00:00,2017,April,Sunday,16,106,20,D32,Toronto,35,Westminster-Branson (35),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,KROSSPORT,MT,0,WHI,350.0,STOLEN,2249,"{'type': 'Point', 'coordinates': (-79.44632616, 43.78121576)}"
-2258,1076,GO-20171419485,THEFT UNDER - BICYCLE,2017-07-28T00:00:00,2017,July,Friday,28,209,13,2017-08-07T00:00:00,2017,August,Monday,7,219,6,D32,Toronto,35,Westminster-Branson (35),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,RG,24,WHIBLU,370.0,STOLEN,2250,"{'type': 'Point', 'coordinates': (-79.44912816, 43.780214)}"
-2259,1259,GO-20179013508,THEFT UNDER - BICYCLE,2017-08-28T00:00:00,2017,August,Monday,28,240,10,2017-08-28T00:00:00,2017,August,Monday,28,240,16,D32,Toronto,35,Westminster-Branson (35),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,MOUNTAIN BIKE,MT,18,BLU,500.0,STOLEN,2251,"{'type': 'Point', 'coordinates': (-79.44526491, 43.7735142)}"
-2260,1272,GO-20179013680,THEFT UNDER - BICYCLE,2017-08-29T00:00:00,2017,August,Tuesday,29,241,13,2017-08-30T00:00:00,2017,August,Wednesday,30,242,14,D32,Toronto,35,Westminster-Branson (35),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,REACTION MEN'S,OT,18,BLK,300.0,STOLEN,2252,"{'type': 'Point', 'coordinates': (-79.44706828, 43.79018828)}"
-2261,1410,GO-20179014793,THEFT UNDER - BICYCLE,2017-09-14T00:00:00,2017,September,Thursday,14,257,10,2017-09-14T00:00:00,2017,September,Thursday,14,257,23,D32,Toronto,35,Westminster-Branson (35),Schools During Supervised Activity,Educational,NO,STORM,MT,18,ONG,904.0,STOLEN,2253,"{'type': 'Point', 'coordinates': (-79.44526491, 43.7735142)}"
-2262,8378,GO-20149004852,THEFT UNDER,2014-07-09T00:00:00,2014,July,Wednesday,9,190,8,2014-07-09T00:00:00,2014,July,Wednesday,9,190,20,D33,Toronto,45,Parkwoods-Donalda (45),"Apartment (Rooming House, Condo)",Apartment,RA,,MT,21,GRY,70.0,STOLEN,2263,"{'type': 'Point', 'coordinates': (-79.33366419, 43.75198335)}"
-2263,1576,GO-20179016323,THEFT UNDER - BICYCLE,2017-09-27T00:00:00,2017,September,Wednesday,27,270,19,2017-10-02T00:00:00,2017,October,Monday,2,275,22,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,10,GRY,0.0,STOLEN,2255,"{'type': 'Point', 'coordinates': (-79.45299335, 43.79081207)}"
-2264,1776,GO-20171765978,THEFT UNDER - BICYCLE,2017-09-08T00:00:00,2017,September,Friday,8,251,14,2017-09-29T00:00:00,2017,September,Friday,29,272,9,D32,Toronto,35,Westminster-Branson (35),"Single Home, House (Attach Garage, Cottage, Mobile)",House,JAMIS,,MT,27,,,STOLEN,2256,"{'type': 'Point', 'coordinates': (-79.45344596, 43.78519317)}"
-2265,2501,GO-20189017897,THEFT UNDER - BICYCLE,2018-06-07T00:00:00,2018,June,Thursday,7,158,8,2018-06-08T00:00:00,2018,June,Friday,8,159,15,D32,Toronto,35,Westminster-Branson (35),Schools During Supervised Activity,Educational,OT,,MT,21,BLK,400.0,STOLEN,2257,"{'type': 'Point', 'coordinates': (-79.44526491, 43.7735142)}"
-2266,2761,GO-20189021308,THEFT UNDER - BICYCLE,2018-07-05T00:00:00,2018,July,Thursday,5,186,1,2018-07-05T00:00:00,2018,July,Thursday,5,186,19,D32,Toronto,35,Westminster-Branson (35),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SC,,MT,7,DBL,380.0,STOLEN,2258,"{'type': 'Point', 'coordinates': (-79.44983192, 43.78959109)}"
-2267,4478,GO-20199018542,THEFT UNDER,2019-06-13T00:00:00,2019,June,Thursday,13,164,18,2019-06-14T00:00:00,2019,June,Friday,14,165,8,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,GT,AGGRESSOR SPORT,MT,7,DBL,375.0,STOLEN,2259,"{'type': 'Point', 'coordinates': (-79.44706828, 43.79018828)}"
-2268,4479,GO-20199018542,THEFT UNDER,2019-06-13T00:00:00,2019,June,Thursday,13,164,18,2019-06-14T00:00:00,2019,June,Friday,14,165,8,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,GT,AGGRESSOR SPORT,MT,7,DBL,500.0,STOLEN,2260,"{'type': 'Point', 'coordinates': (-79.44706828, 43.79018828)}"
-2269,4480,GO-20199018542,THEFT UNDER,2019-06-13T00:00:00,2019,June,Thursday,13,164,18,2019-06-14T00:00:00,2019,June,Friday,14,165,8,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,GT,AGGRESSOR SPORT,MT,7,DBL,375.0,STOLEN,2261,"{'type': 'Point', 'coordinates': (-79.44706828, 43.79018828)}"
-2270,4481,GO-20199018542,THEFT UNDER,2019-06-13T00:00:00,2019,June,Thursday,13,164,18,2019-06-14T00:00:00,2019,June,Friday,14,165,8,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,GT,GT AGGRESSOR SP,MT,7,DBL,500.0,STOLEN,2262,"{'type': 'Point', 'coordinates': (-79.44706828, 43.79018828)}"
-2271,17968,GO-20159003704,THEFT UNDER,2015-06-17T00:00:00,2015,June,Wednesday,17,168,8,2015-06-17T00:00:00,2015,June,Wednesday,17,168,17,D32,Toronto,37,Willowdale West (37),Schools During Supervised Activity,Educational,CC,APEX,MT,21,WHI,400.0,STOLEN,2264,"{'type': 'Point', 'coordinates': (-79.42713751, 43.76947595)}"
-2272,2166,GO-2018680312,THEFT UNDER,2018-04-14T00:00:00,2018,April,Saturday,14,104,12,2018-04-16T00:00:00,2018,April,Monday,16,106,15,D32,Toronto,32,Englemount-Lawrence (32),"Apartment (Rooming House, Condo)",Apartment,GIANT,TCR ADVANCE 1,OT,5,BLUWHI,3150.0,STOLEN,2265,"{'type': 'Point', 'coordinates': (-79.43049352, 43.72255903)}"
-2273,1080,GO-20171414185,THEFT OVER - BICYCLE,2017-08-05T00:00:00,2017,August,Saturday,5,217,23,2017-08-06T00:00:00,2017,August,Sunday,6,218,9,D53,Toronto,39,Bedford Park-Nortown (39),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CANNONDALE,DI2,RC,1,BLK WH,7000.0,STOLEN,2266,"{'type': 'Point', 'coordinates': (-79.41958503, 43.719928)}"
-2274,23377,GO-20202290284,FRAUD OVER,2020-11-27T00:00:00,2020,November,Friday,27,332,0,2020-12-05T00:00:00,2020,December,Saturday,5,340,14,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,ZZZ,A5,EL,3,,1599.0,STOLEN,2267,"{'type': 'Point', 'coordinates': (-79.4173091, 43.78706936)}"
-2275,5264,GO-20199029116,THEFT UNDER - BICYCLE,2019-09-07T00:00:00,2019,September,Saturday,7,250,11,2019-09-07T00:00:00,2019,September,Saturday,7,250,19,D32,Toronto,36,Newtonbrook West (36),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ALGONQUIN,RG,18,RED,113.0,STOLEN,2268,"{'type': 'Point', 'coordinates': (-79.41958993, 43.79632341)}"
-2276,4673,GO-20199021029,THEFT UNDER - BICYCLE,2019-07-04T00:00:00,2019,July,Thursday,4,185,12,2019-07-04T00:00:00,2019,July,Thursday,4,185,22,D32,Toronto,35,Westminster-Branson (35),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SC,SCHWINN,MT,20,SIL,500.0,STOLEN,2269,"{'type': 'Point', 'coordinates': (-79.44983192, 43.78959109)}"
-2277,5467,GO-20199032604,THEFT UNDER - BICYCLE,2019-09-08T00:00:00,2019,September,Sunday,8,251,13,2019-10-04T00:00:00,2019,October,Friday,4,277,13,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,60,PNK,0.0,STOLEN,2270,"{'type': 'Point', 'coordinates': (-79.45084015, 43.77933021)}"
-2278,5468,GO-20199032604,THEFT UNDER - BICYCLE,2019-09-08T00:00:00,2019,September,Sunday,8,251,13,2019-10-04T00:00:00,2019,October,Friday,4,277,13,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,OT,,FO,30,,0.0,STOLEN,2271,"{'type': 'Point', 'coordinates': (-79.45084015, 43.77933021)}"
-2279,6239,GO-2020961740,THEFT UNDER,2020-05-25T00:00:00,2020,May,Monday,25,146,0,2020-05-25T00:00:00,2020,May,Monday,25,146,9,D32,Toronto,35,Westminster-Branson (35),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,SPARKS,EL,0,BLK,,STOLEN,2272,"{'type': 'Point', 'coordinates': (-79.45649982, 43.77267814)}"
-2280,6325,GO-20201034970,THEFT UNDER - BICYCLE,2020-06-02T00:00:00,2020,June,Tuesday,2,154,0,2020-06-09T00:00:00,2020,June,Tuesday,9,161,13,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,OTHER,DEL RIO CRUISER,RG,6,PNK,200.0,STOLEN,2273,"{'type': 'Point', 'coordinates': (-79.44983192, 43.78959109)}"
-2281,6326,GO-20201034970,THEFT UNDER - BICYCLE,2020-06-02T00:00:00,2020,June,Tuesday,2,154,0,2020-06-09T00:00:00,2020,June,Tuesday,9,161,13,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,NEXT,,MT,8,BLK,200.0,STOLEN,2274,"{'type': 'Point', 'coordinates': (-79.44983192, 43.78959109)}"
-2282,6397,GO-20209015437,THEFT UNDER,2020-06-07T00:00:00,2020,June,Sunday,7,159,1,2020-06-15T00:00:00,2020,June,Monday,15,167,23,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,60,BLK,250.0,STOLEN,2275,"{'type': 'Point', 'coordinates': (-79.44983192, 43.78959109)}"
-2283,6465,GO-20201167566,THEFT UNDER - BICYCLE,2020-06-24T00:00:00,2020,June,Wednesday,24,176,2,2020-06-25T00:00:00,2020,June,Thursday,25,177,8,D32,Toronto,35,Westminster-Branson (35),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EM,GTS 500,EL,40,YEL,5000.0,STOLEN,2276,"{'type': 'Point', 'coordinates': (-79.44653676, 43.78174825)}"
-2284,8048,GO-20142222893,THEFT UNDER,2014-06-04T00:00:00,2014,June,Wednesday,4,155,21,2014-06-04T00:00:00,2014,June,Wednesday,4,155,21,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,CCM,APEX,MT,21,WHI,1600.0,STOLEN,2277,"{'type': 'Point', 'coordinates': (-79.44706828, 43.79018828)}"
-2285,8262,GO-20142404202,THEFT UNDER,2014-06-30T00:00:00,2014,June,Monday,30,181,10,2014-06-30T00:00:00,2014,June,Monday,30,181,21,D32,Toronto,35,Westminster-Branson (35),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,SUPER CYCLE,RG,21,GLD,200.0,STOLEN,2278,"{'type': 'Point', 'coordinates': (-79.45129277, 43.78368507)}"
-2286,8714,GO-20149006194,THEFT UNDER,2014-08-20T00:00:00,2014,August,Wednesday,20,232,10,2014-08-21T00:00:00,2014,August,Thursday,21,233,17,D32,Toronto,35,Westminster-Branson (35),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,BM,10,BLU,50.0,STOLEN,2279,"{'type': 'Point', 'coordinates': (-79.45281562, 43.77367533)}"
-2287,8715,GO-20149006194,THEFT UNDER,2014-08-20T00:00:00,2014,August,Wednesday,20,232,10,2014-08-21T00:00:00,2014,August,Thursday,21,233,17,D32,Toronto,35,Westminster-Branson (35),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RC,1,GRY,50.0,STOLEN,2280,"{'type': 'Point', 'coordinates': (-79.45281562, 43.77367533)}"
-2288,9681,GO-20159003188,THEFT UNDER,2015-05-29T00:00:00,2015,May,Friday,29,149,9,2015-05-29T00:00:00,2015,May,Friday,29,149,16,D32,Toronto,35,Westminster-Branson (35),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RE,,RG,21,RED,500.0,STOLEN,2281,"{'type': 'Point', 'coordinates': (-79.44526491, 43.7735142)}"
-2289,9724,GO-2015934342,THEFT UNDER,2015-05-29T00:00:00,2015,May,Friday,29,149,17,2015-06-05T00:00:00,2015,June,Friday,5,156,12,D32,Toronto,35,Westminster-Branson (35),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SCHWINN,,MT,24,WHIBLK,380.0,STOLEN,2282,"{'type': 'Point', 'coordinates': (-79.45047006, 43.782854)}"
-2290,9831,GO-20151018750,THEFT UNDER,2015-06-06T00:00:00,2015,June,Saturday,6,157,10,2015-06-17T00:00:00,2015,June,Wednesday,17,168,17,D32,Toronto,35,Westminster-Branson (35),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN,,RC,10,GRY,200.0,STOLEN,2283,"{'type': 'Point', 'coordinates': (-79.45238031, 43.77959673)}"
-2291,10903,GO-20152226364,THEFT UNDER,2015-12-18T00:00:00,2015,December,Friday,18,352,23,2015-12-29T00:00:00,2015,December,Tuesday,29,363,11,D32,Toronto,35,Westminster-Branson (35),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,ROCKY MOUNTAIN,,MT,18,BLK,600.0,STOLEN,2284,"{'type': 'Point', 'coordinates': (-79.45299335, 43.79081207)}"
-2292,11391,GO-2016923752,THEFT UNDER - BICYCLE,2016-05-28T00:00:00,2016,May,Saturday,28,149,19,2016-05-28T00:00:00,2016,May,Saturday,28,149,20,D32,Toronto,35,Westminster-Branson (35),Schools During Un-Supervised Activity,Educational,CCM,,OT,21,BLU,300.0,STOLEN,2285,"{'type': 'Point', 'coordinates': (-79.45239412, 43.7854049)}"
-2293,11639,GO-20169006374,THEFT UNDER - BICYCLE,2016-06-26T00:00:00,2016,June,Sunday,26,178,10,2016-06-26T00:00:00,2016,June,Sunday,26,178,11,D32,Toronto,35,Westminster-Branson (35),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,7.0FX,TO,21,BLK,400.0,STOLEN,2286,"{'type': 'Point', 'coordinates': (-79.45540466, 43.78839104)}"
-2294,11652,GO-20161122002,THEFT UNDER - BICYCLE,2016-06-24T00:00:00,2016,June,Friday,24,176,9,2016-06-27T00:00:00,2016,June,Monday,27,179,8,D32,Toronto,35,Westminster-Branson (35),Schools During Un-Supervised Activity,Educational,UNKNOWN MAKE,,OT,0,WHI,,STOLEN,2287,"{'type': 'Point', 'coordinates': (-79.45239412, 43.7854049)}"
-2295,11791,GO-20169007128,THEFT UNDER,2016-07-12T00:00:00,2016,July,Tuesday,12,194,22,2016-07-13T00:00:00,2016,July,Wednesday,13,195,10,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,UK,P B 710,EL,2,RED,500.0,STOLEN,2288,"{'type': 'Point', 'coordinates': (-79.44505078, 43.7727668)}"
-2296,12463,GO-20169011155,THEFT UNDER - BICYCLE,2016-09-26T00:00:00,2016,September,Monday,26,270,4,2016-09-26T00:00:00,2016,September,Monday,26,270,20,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,,ROYAL 9.3,RG,21,BLK,250.0,STOLEN,2289,"{'type': 'Point', 'coordinates': (-79.44706828, 43.79018828)}"
-2297,12471,GO-20169011191,THEFT UNDER - BICYCLE,2016-09-23T00:00:00,2016,September,Friday,23,267,23,2016-09-27T00:00:00,2016,September,Tuesday,27,271,15,D32,Toronto,35,Westminster-Branson (35),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,"STORM 18.5""""",MT,24,GRY,750.0,STOLEN,2290,"{'type': 'Point', 'coordinates': (-79.44458672000002, 43.78021068)}"
-2298,12642,GO-20169012319,THEFT UNDER - BICYCLE,2016-10-19T00:00:00,2016,October,Wednesday,19,293,16,2016-10-19T00:00:00,2016,October,Wednesday,19,293,20,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,UK,MODENA FEMME,RG,21,WHI,430.0,STOLEN,2291,"{'type': 'Point', 'coordinates': (-79.44983192, 43.78959109)}"
-2299,12824,GO-20169013847,THEFT UNDER - BICYCLE,2016-11-24T00:00:00,2016,November,Thursday,24,329,0,2016-11-25T00:00:00,2016,November,Friday,25,330,15,D32,Toronto,35,Westminster-Branson (35),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,,RG,7,GRY,0.0,STOLEN,2292,"{'type': 'Point', 'coordinates': (-79.45509762, 43.79036264)}"
-2300,13521,GO-20199029207,THEFT UNDER - BICYCLE,2019-09-05T00:00:00,2019,September,Thursday,5,248,21,2019-09-08T00:00:00,2019,September,Sunday,8,251,20,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,CA,QUICK DISK 5,RG,27,GRY,849.0,STOLEN,2293,"{'type': 'Point', 'coordinates': (-79.44963678, 43.77958754)}"
-2301,13530,GO-20192103368,THEFT FROM MOTOR VEHICLE UNDER,2019-10-30T00:00:00,2019,October,Wednesday,30,303,0,2019-10-31T00:00:00,2019,October,Thursday,31,304,13,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN,,MT,10,WHI,,STOLEN,2294,"{'type': 'Point', 'coordinates': (-79.44493159, 43.77225885)}"
-2302,13774,GO-20189019574,THEFT UNDER - BICYCLE,2018-06-12T00:00:00,2018,June,Tuesday,12,163,9,2018-06-21T00:00:00,2018,June,Thursday,21,172,0,D33,Toronto,35,Westminster-Branson (35),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,TO,18,PLE,250.0,STOLEN,2295,"{'type': 'Point', 'coordinates': (-79.44632616, 43.78121576)}"
-2303,14739,GO-20171984243,THEFT UNDER - BICYCLE,2017-10-30T00:00:00,2017,October,Monday,30,303,21,2017-11-02T00:00:00,2017,November,Thursday,2,306,11,D32,Toronto,35,Westminster-Branson (35),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,ZZZ,,MT,0,,300.0,STOLEN,2296,"{'type': 'Point', 'coordinates': (-79.44983192, 43.78959109)}"
-2304,14934,GO-20142937826,THEFT UNDER,2014-09-18T00:00:00,2014,September,Thursday,18,261,19,2014-09-18T00:00:00,2014,September,Thursday,18,261,22,D32,Toronto,35,Westminster-Branson (35),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,ROCKY MOUNTAIN,,OT,10,BLK,660.0,STOLEN,2297,"{'type': 'Point', 'coordinates': (-79.45084015, 43.77933021)}"
-2305,14947,GO-20159002644,THEFT UNDER,2015-05-11T00:00:00,2015,May,Monday,11,131,19,2015-05-11T00:00:00,2015,May,Monday,11,131,22,D32,Toronto,35,Westminster-Branson (35),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,1,SIL,50.0,STOLEN,2298,"{'type': 'Point', 'coordinates': (-79.44653676, 43.78174825)}"
-2306,14948,GO-2015806134,THEFT UNDER,2015-05-11T00:00:00,2015,May,Monday,11,131,17,2015-05-14T00:00:00,2015,May,Thursday,14,134,19,D32,Toronto,35,Westminster-Branson (35),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,RC,5,BLK,180.0,STOLEN,2299,"{'type': 'Point', 'coordinates': (-79.44288664, 43.76969536)}"
-2307,14982,GO-20151926684,THEFT UNDER,2015-11-09T00:00:00,2015,November,Monday,9,313,8,2015-11-09T00:00:00,2015,November,Monday,9,313,15,D32,Toronto,35,Westminster-Branson (35),Schools During Supervised Activity,Educational,OTHER,CHALLENGER 800,OT,0,BLKWHI,1200.0,STOLEN,2300,"{'type': 'Point', 'coordinates': (-79.44526491, 43.7735142)}"
-2308,15013,GO-20169008042,THEFT UNDER - BICYCLE,2016-07-30T00:00:00,2016,July,Saturday,30,212,0,2016-08-01T00:00:00,2016,August,Monday,1,214,19,D32,Toronto,35,Westminster-Branson (35),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,,MT,21,PLE,600.0,STOLEN,2301,"{'type': 'Point', 'coordinates': (-79.45238031, 43.77959673)}"
-2309,16793,GO-20199029634,THEFT UNDER - BICYCLE,2019-09-11T00:00:00,2019,September,Wednesday,11,254,8,2019-09-11T00:00:00,2019,September,Wednesday,11,254,17,D32,Toronto,35,Westminster-Branson (35),Schools During Supervised Activity,Educational,GI,TALON 3,RG,50,SIL,699.0,STOLEN,2302,"{'type': 'Point', 'coordinates': (-79.44526491, 43.7735142)}"
-2310,17991,GO-20159006874,THEFT UNDER,2015-09-07T00:00:00,2015,September,Monday,7,250,17,2015-09-08T00:00:00,2015,September,Tuesday,8,251,10,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,BL,2013,EL,40,BLU,1800.0,STOLEN,2310,"{'type': 'Point', 'coordinates': (-79.44550849, 43.78393311)}"
-2311,16809,GO-20209010785,THEFT UNDER - BICYCLE,2020-04-08T00:00:00,2020,April,Wednesday,8,99,10,2020-04-09T00:00:00,2020,April,Thursday,9,100,15,D32,Toronto,35,Westminster-Branson (35),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,7,BLK,599.0,STOLEN,2303,"{'type': 'Point', 'coordinates': (-79.45043404, 43.77940979)}"
-2312,16810,GO-20209010785,THEFT UNDER - BICYCLE,2020-04-08T00:00:00,2020,April,Wednesday,8,99,10,2020-04-09T00:00:00,2020,April,Thursday,9,100,15,D32,Toronto,35,Westminster-Branson (35),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,7,BLK,599.0,STOLEN,2304,"{'type': 'Point', 'coordinates': (-79.45043404, 43.77940979)}"
-2313,16834,GO-20209019249,THEFT UNDER - BICYCLE,2020-06-27T00:00:00,2020,June,Saturday,27,179,18,2020-08-03T00:00:00,2020,August,Monday,3,216,10,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,24,BLK,621.0,STOLEN,2305,"{'type': 'Point', 'coordinates': (-79.45238031, 43.77959673)}"
-2314,16852,GO-20209028523,THEFT UNDER - BICYCLE,2020-11-03T00:00:00,2020,November,Tuesday,3,308,5,2020-11-03T00:00:00,2020,November,Tuesday,3,308,19,D32,Toronto,35,Westminster-Branson (35),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,29ER HARDTAIL M,MT,21,GRY,620.0,STOLEN,2306,"{'type': 'Point', 'coordinates': (-79.45090456, 43.77231285)}"
-2315,16853,GO-20209028523,THEFT UNDER - BICYCLE,2020-11-03T00:00:00,2020,November,Tuesday,3,308,5,2020-11-03T00:00:00,2020,November,Tuesday,3,308,19,D32,Toronto,35,Westminster-Branson (35),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,NITROUS DUAL SU,MT,21,BLK,200.0,STOLEN,2307,"{'type': 'Point', 'coordinates': (-79.45090456, 43.77231285)}"
-2316,17856,GO-20189022132,THEFT UNDER - BICYCLE,2018-07-11T00:00:00,2018,July,Wednesday,11,192,23,2018-07-12T00:00:00,2018,July,Thursday,12,193,0,D32,Toronto,35,Westminster-Branson (35),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,,MT,30,RED,400.0,STOLEN,2308,"{'type': 'Point', 'coordinates': (-79.44963678, 43.77958754)}"
-2317,17960,GO-2015762910,THEFT UNDER,2015-05-06T00:00:00,2015,May,Wednesday,6,126,17,2015-05-07T00:00:00,2015,May,Thursday,7,127,22,D32,Toronto,35,Westminster-Branson (35),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,MONGOOSE,,RG,24,BLU,180.0,STOLEN,2309,"{'type': 'Point', 'coordinates': (-79.44288664, 43.76969536)}"
-2318,18026,GO-2016964989,THEFT UNDER - BICYCLE,2016-06-03T00:00:00,2016,June,Friday,3,155,9,2016-06-03T00:00:00,2016,June,Friday,3,155,17,D32,Toronto,35,Westminster-Branson (35),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,MENS,RG,1,GRYONG,1500.0,STOLEN,2311,"{'type': 'Point', 'coordinates': (-79.46165427, 43.78603612)}"
-2319,18029,GO-20161085369,THEFT UNDER - BICYCLE,2016-06-19T00:00:00,2016,June,Sunday,19,171,16,2016-06-21T00:00:00,2016,June,Tuesday,21,173,18,D32,Toronto,35,Westminster-Branson (35),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUPERCYCLE,,MT,18,BLU,100.0,STOLEN,2312,"{'type': 'Point', 'coordinates': (-79.45090456, 43.77231285)}"
-2320,18051,GO-20161681915,THEFT UNDER - BICYCLE,2016-09-19T00:00:00,2016,September,Monday,19,263,17,2016-09-21T00:00:00,2016,September,Wednesday,21,265,15,D32,Toronto,35,Westminster-Branson (35),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SCHWINN,,MT,21,BLKONG,300.0,STOLEN,2313,"{'type': 'Point', 'coordinates': (-79.44601222, 43.78591811)}"
-2321,20085,GO-2020783230,THEFT UNDER - BICYCLE,2020-04-24T00:00:00,2020,April,Friday,24,115,16,2020-04-25T00:00:00,2020,April,Saturday,25,116,10,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,OTHER,BMX,BM,0,SIL,800.0,STOLEN,2314,"{'type': 'Point', 'coordinates': (-79.44869348, 43.78550562)}"
-2322,20373,GO-20181694023,THEFT UNDER - BICYCLE,2018-09-12T00:00:00,2018,September,Wednesday,12,255,15,2018-09-12T00:00:00,2018,September,Wednesday,12,255,23,D32,Toronto,35,Westminster-Branson (35),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,,MT,21,SILYEL,100.0,STOLEN,2315,"{'type': 'Point', 'coordinates': (-79.44526491, 43.7735142)}"
-2323,22007,GO-20149003646,THEFT UNDER,2014-05-27T00:00:00,2014,May,Tuesday,27,147,9,2014-05-27T00:00:00,2014,May,Tuesday,27,147,16,D32,Toronto,35,Westminster-Branson (35),Schools During Supervised Activity,Educational,OT,,MT,18,GRY,279.0,STOLEN,2316,"{'type': 'Point', 'coordinates': (-79.44526491, 43.7735142)}"
-2324,22011,GO-20149003860,THEFT UNDER,2014-06-06T00:00:00,2014,June,Friday,6,157,11,2014-06-06T00:00:00,2014,June,Friday,6,157,19,D32,Toronto,35,Westminster-Branson (35),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,SEDONA DX,RG,24,LGR,600.0,STOLEN,2317,"{'type': 'Point', 'coordinates': (-79.44601222, 43.78591811)}"
-2325,22084,GO-20159007044,THEFT UNDER,2015-09-10T00:00:00,2015,September,Thursday,10,253,23,2015-09-11T00:00:00,2015,September,Friday,11,254,15,D32,Toronto,35,Westminster-Branson (35),Convenience Stores,Commercial,SP,,OT,32,DBL,0.0,STOLEN,2318,"{'type': 'Point', 'coordinates': (-79.44550849, 43.78393311)}"
-2326,22095,GO-20169000764,THEFT UNDER,2016-01-22T00:00:00,2016,January,Friday,22,22,19,2016-01-22T00:00:00,2016,January,Friday,22,22,20,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,8,BLK,680.0,STOLEN,2319,"{'type': 'Point', 'coordinates': (-79.45084015, 43.77933021)}"
-2327,22096,GO-20169000764,THEFT UNDER,2016-01-22T00:00:00,2016,January,Friday,22,22,19,2016-01-22T00:00:00,2016,January,Friday,22,22,20,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,9,,800.0,STOLEN,2320,"{'type': 'Point', 'coordinates': (-79.45084015, 43.77933021)}"
-2328,22103,GO-20169004825,THEFT UNDER - BICYCLE,2016-05-20T00:00:00,2016,May,Friday,20,141,12,2016-05-22T00:00:00,2016,May,Sunday,22,143,20,D32,Toronto,35,Westminster-Branson (35),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UK,C29936M1003,RG,21,BLK,650.0,STOLEN,2321,"{'type': 'Point', 'coordinates': (-79.43873547, 43.76446008)}"
-2329,23280,GO-20199021000,THEFT UNDER - BICYCLE,2019-07-03T00:00:00,2019,July,Wednesday,3,184,22,2019-07-04T00:00:00,2019,July,Thursday,4,185,17,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,UK,56208C,MT,18,BLK,98.0,STOLEN,2322,"{'type': 'Point', 'coordinates': (-79.44601222, 43.78591811)}"
-2330,23319,GO-20209011836,THEFT UNDER - BICYCLE,2020-04-24T00:00:00,2020,April,Friday,24,115,5,2020-04-24T00:00:00,2020,April,Friday,24,115,10,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,GT,,MT,21,,1500.0,STOLEN,2323,"{'type': 'Point', 'coordinates': (-79.45090456, 43.77231285)}"
-2331,23331,GO-20201167566,THEFT UNDER - BICYCLE,2020-06-24T00:00:00,2020,June,Wednesday,24,176,2,2020-06-25T00:00:00,2020,June,Thursday,25,177,8,D32,Toronto,35,Westminster-Branson (35),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,,EL,0,BLU,4200.0,STOLEN,2324,"{'type': 'Point', 'coordinates': (-79.44653676, 43.78174825)}"
-2332,23363,GO-20209027614,THEFT UNDER - BICYCLE,2020-10-22T00:00:00,2020,October,Thursday,22,296,3,2020-10-25T00:00:00,2020,October,Sunday,25,299,12,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,NAKAMURA,ECKO,MT,18,BLK,250.0,STOLEN,2325,"{'type': 'Point', 'coordinates': (-79.44517866, 43.77329851)}"
-2333,24422,GO-20142353189,THEFT UNDER,2014-06-22T00:00:00,2014,June,Sunday,22,173,22,2014-06-23T00:00:00,2014,June,Monday,23,174,20,D32,Toronto,35,Westminster-Branson (35),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,UNK,MT,8,DGR,120.0,STOLEN,2326,"{'type': 'Point', 'coordinates': (-79.45043404, 43.77940979)}"
-2334,24453,GO-2015889864,THEFT UNDER,2015-05-27T00:00:00,2015,May,Wednesday,27,147,20,2015-05-28T00:00:00,2015,May,Thursday,28,148,10,D32,Toronto,35,Westminster-Branson (35),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,MT,0,PLEWHI,200.0,STOLEN,2327,"{'type': 'Point', 'coordinates': (-79.44629535, 43.78074846)}"
-2335,369,GO-20179006152,THEFT UNDER - BICYCLE,2017-05-11T00:00:00,2017,May,Thursday,11,131,17,2017-05-11T00:00:00,2017,May,Thursday,11,131,21,D32,Toronto,36,Newtonbrook West (36),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KH,2011 SJ100,MT,10,PLE,600.0,STOLEN,2328,"{'type': 'Point', 'coordinates': (-79.42213408, 43.78415361)}"
-2336,669,GO-20171092064,THEFT UNDER,2017-06-10T00:00:00,2017,June,Saturday,10,161,0,2017-06-19T00:00:00,2017,June,Monday,19,170,9,D32,Toronto,36,Newtonbrook West (36),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,SOLO ROCK,FO,1,BLK,,STOLEN,2329,"{'type': 'Point', 'coordinates': (-79.41891275, 43.78096495)}"
-2337,766,GO-20179009364,THEFT UNDER - BICYCLE,2017-07-03T00:00:00,2017,July,Monday,3,184,17,2017-07-03T00:00:00,2017,July,Monday,3,184,22,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,,MT,14,BLK,100.0,STOLEN,2330,"{'type': 'Point', 'coordinates': (-79.41958993, 43.79632341)}"
-2338,992,GO-20179011151,THEFT UNDER - BICYCLE,2017-07-26T00:00:00,2017,July,Wednesday,26,207,23,2017-07-27T00:00:00,2017,July,Thursday,27,208,12,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,MT,10,BLU,169.0,STOLEN,2331,"{'type': 'Point', 'coordinates': (-79.42535857, 43.77758939)}"
-2339,993,GO-20179011151,THEFT UNDER - BICYCLE,2017-07-26T00:00:00,2017,July,Wednesday,26,207,23,2017-07-27T00:00:00,2017,July,Thursday,27,208,12,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,EVERYDAY TRAVEL,MT,10,CRM,189.0,STOLEN,2332,"{'type': 'Point', 'coordinates': (-79.42535857, 43.77758939)}"
-2340,1126,GO-20179012223,THEFT UNDER - BICYCLE,2017-07-30T00:00:00,2017,July,Sunday,30,211,0,2017-08-12T00:00:00,2017,August,Saturday,12,224,9,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,AUDACIO,RC,19,SIL,1100.0,STOLEN,2333,"{'type': 'Point', 'coordinates': (-79.42331577, 43.79005469)}"
-2341,20059,GO-20199023446,THEFT UNDER - BICYCLE,2019-07-23T00:00:00,2019,July,Tuesday,23,204,18,2019-07-23T00:00:00,2019,July,Tuesday,23,204,18,D32,Toronto,36,Newtonbrook West (36),Ttc Subway Station,Transit,UK,,RG,15,RED,0.0,STOLEN,2430,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}"
-2342,1419,GO-20179014846,THEFT UNDER - BICYCLE,2017-09-15T00:00:00,2017,September,Friday,15,258,18,2017-09-15T00:00:00,2017,September,Friday,15,258,21,D32,Toronto,36,Newtonbrook West (36),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,NOVARA,MT,21,BLK,280.0,STOLEN,2334,"{'type': 'Point', 'coordinates': (-79.41958993, 43.79632341)}"
-2343,1820,GO-20179019321,THEFT UNDER - BICYCLE,2017-11-08T00:00:00,2017,November,Wednesday,8,312,9,2017-11-10T00:00:00,2017,November,Friday,10,314,14,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KH,URBAN SOUL,RG,1,SIL,300.0,STOLEN,2335,"{'type': 'Point', 'coordinates': (-79.41553623, 43.77976942)}"
-2344,1821,GO-20179019336,THEFT UNDER - BICYCLE,2017-11-09T00:00:00,2017,November,Thursday,9,313,6,2017-11-10T00:00:00,2017,November,Friday,10,314,18,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,DOLCE,RC,21,BLK,1500.0,STOLEN,2336,"{'type': 'Point', 'coordinates': (-79.41998499, 43.78072717)}"
-2345,1969,GO-20189000307,THEFT UNDER,2017-12-21T00:00:00,2017,December,Thursday,21,355,19,2018-01-04T00:00:00,2018,January,Thursday,4,4,20,D32,Toronto,36,Newtonbrook West (36),"Apartment (Rooming House, Condo)",Apartment,NO,WOLVERINE,MT,24,BLU,0.0,STOLEN,2337,"{'type': 'Point', 'coordinates': (-79.42079703, 43.78636367)}"
-2346,2491,GO-20189017819,THEFT UNDER - BICYCLE,2018-06-07T00:00:00,2018,June,Thursday,7,158,9,2018-06-07T00:00:00,2018,June,Thursday,7,158,21,D32,Toronto,36,Newtonbrook West (36),Ttc Subway Station,Transit,OT,SIRRUS SPORT,RG,9,GRY,1049.0,STOLEN,2338,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}"
-2347,2775,GO-20189021515,THEFT UNDER - BICYCLE,2018-07-05T00:00:00,2018,July,Thursday,5,186,22,2018-07-07T00:00:00,2018,July,Saturday,7,188,12,D32,Toronto,36,Newtonbrook West (36),"Apartment (Rooming House, Condo)",Apartment,TR,6500,MT,24,BLK,1500.0,STOLEN,2339,"{'type': 'Point', 'coordinates': (-79.42423827, 43.77783169)}"
-2348,2813,GO-20189022025,THEFT UNDER - BICYCLE,2018-07-08T00:00:00,2018,July,Sunday,8,189,11,2018-07-11T00:00:00,2018,July,Wednesday,11,192,11,D32,Toronto,36,Newtonbrook West (36),"Apartment (Rooming House, Condo)",Apartment,IN,,OT,5,,395.0,STOLEN,2340,"{'type': 'Point', 'coordinates': (-79.42423827, 43.77783169)}"
-2349,2900,GO-20189023216,THEFT UNDER,2018-07-19T00:00:00,2018,July,Thursday,19,200,8,2018-07-20T00:00:00,2018,July,Friday,20,201,14,D32,Toronto,36,Newtonbrook West (36),Schools During Un-Supervised Activity,Educational,CC,WOMAN'S MOUNTAI,MT,21,DBL,225.0,STOLEN,2341,"{'type': 'Point', 'coordinates': (-79.42719052, 43.7929646)}"
-2350,3365,GO-20189028613,THEFT UNDER - BICYCLE,2018-08-30T00:00:00,2018,August,Thursday,30,242,16,2018-08-30T00:00:00,2018,August,Thursday,30,242,18,D32,Toronto,36,Newtonbrook West (36),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,IH,BMX,BM,7,BLK,75.0,STOLEN,2342,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}"
-2351,4474,GO-20191091962,THEFT OF EBIKE UNDER $5000,2019-06-12T00:00:00,2019,June,Wednesday,12,163,23,2019-06-13T00:00:00,2019,June,Thursday,13,164,14,D32,Toronto,36,Newtonbrook West (36),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,UNKNOWN,EL,3,BLK,700.0,STOLEN,2343,"{'type': 'Point', 'coordinates': (-79.41953867, 43.778881610000006)}"
-2352,4519,GO-20199018992,THEFT UNDER - BICYCLE,2019-06-14T00:00:00,2019,June,Friday,14,165,20,2019-06-17T00:00:00,2019,June,Monday,17,168,18,D32,Toronto,36,Newtonbrook West (36),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,18,GRY,300.0,STOLEN,2344,"{'type': 'Point', 'coordinates': (-79.42331577, 43.79005469)}"
-2353,4623,GO-20199020270,THEFT UNDER,2019-06-19T00:00:00,2019,June,Wednesday,19,170,12,2019-06-27T00:00:00,2019,June,Thursday,27,178,16,D32,Toronto,36,Newtonbrook West (36),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,OT,1,BLK,400.0,STOLEN,2345,"{'type': 'Point', 'coordinates': (-79.42715189, 43.77756496)}"
-2354,4624,GO-20199020270,THEFT UNDER,2019-06-19T00:00:00,2019,June,Wednesday,19,170,12,2019-06-27T00:00:00,2019,June,Thursday,27,178,16,D32,Toronto,36,Newtonbrook West (36),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RM,VAPOR,MT,24,GRY,400.0,STOLEN,2346,"{'type': 'Point', 'coordinates': (-79.42715189, 43.77756496)}"
-2355,4630,GO-20199020086,THEFT UNDER - BICYCLE,2019-06-25T00:00:00,2019,June,Tuesday,25,176,9,2019-06-25T00:00:00,2019,June,Tuesday,25,176,16,D32,Toronto,36,Newtonbrook West (36),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,RG,5,BLU,3000.0,STOLEN,2347,"{'type': 'Point', 'coordinates': (-79.41958993, 43.79632341)}"
-2356,5385,GO-20199031261,THEFT UNDER - BICYCLE,2019-09-23T00:00:00,2019,September,Monday,23,266,8,2019-09-23T00:00:00,2019,September,Monday,23,266,19,D32,Toronto,36,Newtonbrook West (36),"Apartment (Rooming House, Condo)",Apartment,SU,MEDALIST,RC,21,BLU,1700.0,STOLEN,2348,"{'type': 'Point', 'coordinates': (-79.44571399, 43.79240783)}"
-2357,5602,GO-20199035459,THEFT UNDER - BICYCLE,2019-10-27T00:00:00,2019,October,Sunday,27,300,20,2019-10-27T00:00:00,2019,October,Sunday,27,300,20,D32,Toronto,36,Newtonbrook West (36),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,RC,27,BLK,4000.0,STOLEN,2349,"{'type': 'Point', 'coordinates': (-79.41553623, 43.77976942)}"
-2358,5694,GO-20199037581,THEFT UNDER - BICYCLE,2019-11-14T00:00:00,2019,November,Thursday,14,318,5,2019-11-15T00:00:00,2019,November,Friday,15,319,14,D32,Toronto,36,Newtonbrook West (36),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,RAPID 0,RG,21,GRY,1700.0,STOLEN,2350,"{'type': 'Point', 'coordinates': (-79.42331577, 43.79005469)}"
-2359,6217,GO-20209013618,THEFT UNDER - BICYCLE,2020-05-20T00:00:00,2020,May,Wednesday,20,141,21,2020-05-21T00:00:00,2020,May,Thursday,21,142,17,D32,Toronto,36,Newtonbrook West (36),"Apartment (Rooming House, Condo)",Apartment,GI,FATHOM 2,MT,12,BLK,1599.0,STOLEN,2351,"{'type': 'Point', 'coordinates': (-79.4431436, 43.77454821)}"
-2360,6713,GO-20209018344,THEFT UNDER - BICYCLE,2020-07-13T00:00:00,2020,July,Monday,13,195,13,2020-07-23T00:00:00,2020,July,Thursday,23,205,14,D32,Toronto,36,Newtonbrook West (36),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,2020,MT,21,GRY,330.0,STOLEN,2352,"{'type': 'Point', 'coordinates': (-79.42633718, 43.79662303)}"
-2361,6945,GO-20209020028,THEFT UNDER - BICYCLE,2020-07-10T00:00:00,2020,July,Friday,10,192,17,2020-08-12T00:00:00,2020,August,Wednesday,12,225,17,D32,Toronto,36,Newtonbrook West (36),"Apartment (Rooming House, Condo)",Apartment,CA,,OT,60,BLU,3000.0,STOLEN,2353,"{'type': 'Point', 'coordinates': (-79.41739035, 43.779370650000004)}"
-2362,7011,GO-20201561694,THEFT UNDER - BICYCLE,2020-08-19T00:00:00,2020,August,Wednesday,19,232,11,2020-08-20T00:00:00,2020,August,Thursday,20,233,20,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NORTHROCK,,RG,10,BLK,450.0,STOLEN,2354,"{'type': 'Point', 'coordinates': (-79.41958993, 43.79632341)}"
-2363,7095,GO-20201596966,THEFT UNDER - BICYCLE,2020-08-20T00:00:00,2020,August,Thursday,20,233,16,2020-08-24T00:00:00,2020,August,Monday,24,237,20,D32,Toronto,36,Newtonbrook West (36),"Apartment (Rooming House, Condo)",Apartment,SHEMANO,,MT,12,BLK,700.0,STOLEN,2355,"{'type': 'Point', 'coordinates': (-79.41891275, 43.78096495)}"
-2364,7141,GO-20209021924,THEFT UNDER - BICYCLE,2020-08-31T00:00:00,2020,August,Monday,31,244,19,2020-09-01T00:00:00,2020,September,Tuesday,1,245,0,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,,RG,25,BLK,750.0,STOLEN,2356,"{'type': 'Point', 'coordinates': (-79.41938138, 43.79547772)}"
-2365,7207,GO-20209022656,THEFT UNDER - BICYCLE,2020-09-04T00:00:00,2020,September,Friday,4,248,18,2020-09-08T00:00:00,2020,September,Tuesday,8,252,19,D32,Toronto,36,Newtonbrook West (36),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,RC,1,PNK,700.0,STOLEN,2357,"{'type': 'Point', 'coordinates': (-79.42014772, 43.78884636)}"
-2366,8141,GO-20149004075,THEFT UNDER,2014-06-14T00:00:00,2014,June,Saturday,14,165,14,2014-06-14T00:00:00,2014,June,Saturday,14,165,17,D32,Toronto,36,Newtonbrook West (36),"Private Property Structure (Pool, Shed, Detached Garage)",Other,IN,,MT,21,GRY,294.0,STOLEN,2358,"{'type': 'Point', 'coordinates': (-79.44113151, 43.78096055)}"
-2367,8278,GO-20149004547,THEFT UNDER,2014-06-28T00:00:00,2014,June,Saturday,28,179,13,2014-06-29T00:00:00,2014,June,Sunday,29,180,0,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,YUKON,MT,24,BLK,1200.0,STOLEN,2359,"{'type': 'Point', 'coordinates': (-79.41553623, 43.77976942)}"
-2368,8380,GO-20149004849,THEFT UNDER,2014-07-08T00:00:00,2014,July,Tuesday,8,189,14,2014-07-09T00:00:00,2014,July,Wednesday,9,190,19,D32,Toronto,36,Newtonbrook West (36),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CROSSTRAIL DISC,OT,24,SIL,900.0,STOLEN,2360,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}"
-2369,8574,GO-20142628036,THEFT UNDER,2014-08-02T00:00:00,2014,August,Saturday,2,214,15,2014-08-03T00:00:00,2014,August,Sunday,3,215,12,D32,Toronto,36,Newtonbrook West (36),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,MT,5,ONG,200.0,STOLEN,2361,"{'type': 'Point', 'coordinates': (-79.4431436, 43.77454821)}"
-2370,8625,GO-20142678895,THEFT UNDER,2014-08-04T00:00:00,2014,August,Monday,4,216,23,2014-08-11T00:00:00,2014,August,Monday,11,223,8,D32,Toronto,36,Newtonbrook West (36),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,WOMENS,OT,0,WHI,,STOLEN,2362,"{'type': 'Point', 'coordinates': (-79.43710734, 43.79216038)}"
-2371,8999,GO-20143019851,MISCHIEF - INTERFERE W-PROP,2014-09-30T00:00:00,2014,September,Tuesday,30,273,4,2014-10-01T00:00:00,2014,October,Wednesday,1,274,9,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,OT,0,,,STOLEN,2363,"{'type': 'Point', 'coordinates': (-79.42793139, 43.7939597)}"
-2372,9000,GO-20143019851,MISCHIEF - INTERFERE W-PROP,2014-09-30T00:00:00,2014,September,Tuesday,30,273,4,2014-10-01T00:00:00,2014,October,Wednesday,1,274,9,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,OT,0,,,STOLEN,2364,"{'type': 'Point', 'coordinates': (-79.42793139, 43.7939597)}"
-2373,9144,GO-20143234378,PROPERTY - LOST,2014-11-04T00:00:00,2014,November,Tuesday,4,308,5,2014-11-04T00:00:00,2014,November,Tuesday,4,308,5,D32,Toronto,36,Newtonbrook West (36),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,IMPUSE SE,BM,1,,,UNKNOWN,2365,"{'type': 'Point', 'coordinates': (-79.43311007, 43.78209479)}"
-2374,9145,GO-20143234378,PROPERTY - LOST,2014-11-04T00:00:00,2014,November,Tuesday,4,308,5,2014-11-04T00:00:00,2014,November,Tuesday,4,308,5,D32,Toronto,36,Newtonbrook West (36),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPORTEK,RIDGE RUNNER,MT,1,RED,,UNKNOWN,2366,"{'type': 'Point', 'coordinates': (-79.43311007, 43.78209479)}"
-2375,9290,GO-20159000723,THEFT UNDER,2014-12-27T00:00:00,2014,December,Saturday,27,361,0,2015-02-11T00:00:00,2015,February,Wednesday,11,42,13,D32,Toronto,36,Newtonbrook West (36),"Apartment (Rooming House, Condo)",Apartment,TR,TREK,RG,12,SIL,1000.0,STOLEN,2367,"{'type': 'Point', 'coordinates': (-79.41739035, 43.779370650000004)}"
-2376,9333,GO-20159001390,THEFT UNDER,2015-03-14T00:00:00,2015,March,Saturday,14,73,9,2015-03-18T00:00:00,2015,March,Wednesday,18,77,17,D32,Toronto,36,Newtonbrook West (36),"Apartment (Rooming House, Condo)",Apartment,UK,SPECIALIZED,MT,10,WHI,800.0,STOLEN,2368,"{'type': 'Point', 'coordinates': (-79.42331577, 43.79005469)}"
-2377,9382,GO-20159001798,THEFT UNDER,2015-04-06T00:00:00,2015,April,Monday,6,96,12,2015-04-09T00:00:00,2015,April,Thursday,9,99,9,D32,Toronto,36,Newtonbrook West (36),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,,MT,7,WHI,429.0,STOLEN,2369,"{'type': 'Point', 'coordinates': (-79.41938138, 43.79547772)}"
-2378,9725,GO-20159003338,THEFT UNDER,2015-06-04T00:00:00,2015,June,Thursday,4,155,15,2015-06-04T00:00:00,2015,June,Thursday,4,155,18,D32,Toronto,36,Newtonbrook West (36),Schools During Un-Supervised Activity,Educational,UK,,RC,10,GRY,150.0,STOLEN,2370,"{'type': 'Point', 'coordinates': (-79.42286679, 43.78590034)}"
-2379,9795,GO-20159003571,THEFT UNDER,2015-06-13T00:00:00,2015,June,Saturday,13,164,18,2015-06-13T00:00:00,2015,June,Saturday,13,164,23,D32,Toronto,36,Newtonbrook West (36),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,,OT,27,BLK,1500.0,RECOVERED,2371,"{'type': 'Point', 'coordinates': (-79.43284237, 43.78123502)}"
-2380,9942,GO-20151101826,THEFT UNDER,2015-06-30T00:00:00,2015,June,Tuesday,30,181,1,2015-06-30T00:00:00,2015,June,Tuesday,30,181,19,D32,Toronto,36,Newtonbrook West (36),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,,RG,21,BLK,200.0,STOLEN,2372,"{'type': 'Point', 'coordinates': (-79.42014772, 43.78884636)}"
-2381,10101,GO-20151264216,THEFT UNDER,2015-07-20T00:00:00,2015,July,Monday,20,201,18,2015-07-24T00:00:00,2015,July,Friday,24,205,18,D32,Toronto,36,Newtonbrook West (36),Ttc Subway Station,Transit,EMMO,EAGLE,EL,1,WHI,1400.0,STOLEN,2373,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}"
-2382,10124,GO-20159005094,THEFT UNDER,2015-07-28T00:00:00,2015,July,Tuesday,28,209,10,2015-07-28T00:00:00,2015,July,Tuesday,28,209,19,D32,Toronto,36,Newtonbrook West (36),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,MT,21,RED,0.0,STOLEN,2374,"{'type': 'Point', 'coordinates': (-79.41938138, 43.79547772)}"
-2383,10285,GO-20151431330,THEFT UNDER,2015-08-10T00:00:00,2015,August,Monday,10,222,15,2015-08-20T00:00:00,2015,August,Thursday,20,232,7,D32,Toronto,36,Newtonbrook West (36),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,,OT,0,BLU,100.0,STOLEN,2375,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}"
-2384,10535,GO-20159007664,THEFT UNDER,2015-09-10T00:00:00,2015,September,Thursday,10,253,11,2015-09-23T00:00:00,2015,September,Wednesday,23,266,19,D32,Toronto,36,Newtonbrook West (36),Schools During Un-Supervised Activity,Educational,NO,STORM 6.3,MT,24,GRY,600.0,STOLEN,2376,"{'type': 'Point', 'coordinates': (-79.42719052, 43.7929646)}"
-2385,10554,GO-20159007812,THEFT UNDER,2015-09-27T00:00:00,2015,September,Sunday,27,270,14,2015-09-27T00:00:00,2015,September,Sunday,27,270,20,D32,Toronto,36,Newtonbrook West (36),"Group Homes (Non-Profit, Halfway House, Social Agency)",Other,CC,STATIC,MT,10,YEL,400.0,STOLEN,2377,"{'type': 'Point', 'coordinates': (-79.42979761000001, 43.78670591)}"
-2386,10934,GO-2016113888,THEFT UNDER,2016-01-19T00:00:00,2016,January,Tuesday,19,19,18,2016-01-19T00:00:00,2016,January,Tuesday,19,19,21,D32,Toronto,36,Newtonbrook West (36),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,TRI STAR,TR,6,BLU,2000.0,STOLEN,2378,"{'type': 'Point', 'coordinates': (-79.43262717, 43.783737220000006)}"
-2387,11080,GO-20169002862,THEFT UNDER - BICYCLE,2016-03-29T00:00:00,2016,March,Tuesday,29,89,10,2016-03-29T00:00:00,2016,March,Tuesday,29,89,16,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CC,KROSSPORT 700C,RG,21,WHI,430.0,STOLEN,2379,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}"
-2388,11501,GO-20169005623,THEFT UNDER - BICYCLE,2016-06-11T00:00:00,2016,June,Saturday,11,163,13,2016-06-11T00:00:00,2016,June,Saturday,11,163,14,D32,Toronto,36,Newtonbrook West (36),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,,RC,58,,300.0,STOLEN,2380,"{'type': 'Point', 'coordinates': (-79.41553623, 43.77976942)}"
-2389,11505,GO-20161016609,THEFT UNDER - BICYCLE,2016-06-11T00:00:00,2016,June,Saturday,11,163,13,2016-06-11T00:00:00,2016,June,Saturday,11,163,14,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SUPERCYCLE,UNKNOWN,OT,0,WHIBLK,192.0,STOLEN,2381,"{'type': 'Point', 'coordinates': (-79.41938138, 43.79547772)}"
-2390,11719,GO-20169006765,THEFT UNDER,2016-07-06T00:00:00,2016,July,Wednesday,6,188,8,2016-07-06T00:00:00,2016,July,Wednesday,6,188,20,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,ESCAPE 3 SIZE,TO,18,GRY,450.0,STOLEN,2382,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}"
-2391,11962,GO-20169007989,THEFT UNDER - BICYCLE,2016-07-31T00:00:00,2016,July,Sunday,31,213,9,2016-07-31T00:00:00,2016,July,Sunday,31,213,13,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,GTX-2 700C BICY,MT,21,RED,550.0,STOLEN,2383,"{'type': 'Point', 'coordinates': (-79.43672539, 43.79274975)}"
-2392,12057,GO-20161417336,THEFT UNDER - BICYCLE,2016-08-11T00:00:00,2016,August,Thursday,11,224,15,2016-08-11T00:00:00,2016,August,Thursday,11,224,18,D32,Toronto,36,Newtonbrook West (36),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KARAKORAM,GT,MT,24,BLK,685.0,STOLEN,2384,"{'type': 'Point', 'coordinates': (-79.4205961, 43.77864832)}"
-2393,12117,GO-20169008897,THEFT UNDER - BICYCLE,2016-08-06T00:00:00,2016,August,Saturday,6,219,0,2016-08-16T00:00:00,2016,August,Tuesday,16,229,21,D32,Toronto,36,Newtonbrook West (36),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,2,RED,0.0,STOLEN,2385,"{'type': 'Point', 'coordinates': (-79.42633718, 43.79662303)}"
-2394,12128,GO-20169008986,THEFT UNDER - BICYCLE,2016-08-17T00:00:00,2016,August,Wednesday,17,230,9,2016-08-18T00:00:00,2016,August,Thursday,18,231,10,D32,Toronto,36,Newtonbrook West (36),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RA,RALEIGH VENTURE,OT,7,LGR,600.0,STOLEN,2386,"{'type': 'Point', 'coordinates': (-79.44147011, 43.77492542)}"
-2395,12227,GO-20169009662,THEFT UNDER - BICYCLE,2016-08-10T00:00:00,2016,August,Wednesday,10,223,13,2016-08-29T00:00:00,2016,August,Monday,29,242,18,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,TESSA,MT,24,,500.0,STOLEN,2387,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}"
-2396,12256,GO-20161570660,THEFT UNDER - BICYCLE,2016-08-27T00:00:00,2016,August,Saturday,27,240,17,2016-09-04T00:00:00,2016,September,Sunday,4,248,16,D32,Toronto,36,Newtonbrook West (36),"Apartment (Rooming House, Condo)",Apartment,DEVINCI,ST TROPEZ,RG,18,BLK,500.0,STOLEN,2388,"{'type': 'Point', 'coordinates': (-79.41739035, 43.779370650000004)}"
-2397,12270,GO-20169010025,THEFT UNDER - BICYCLE,2016-09-01T00:00:00,2016,September,Thursday,1,245,11,2016-09-06T00:00:00,2016,September,Tuesday,6,250,11,D32,Toronto,36,Newtonbrook West (36),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,21,MRN,1000.0,STOLEN,2389,"{'type': 'Point', 'coordinates': (-79.42535857, 43.77758939)}"
-2398,12387,GO-20161661185,THEFT UNDER - BICYCLE,2016-09-18T00:00:00,2016,September,Sunday,18,262,13,2016-09-18T00:00:00,2016,September,Sunday,18,262,14,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,GLOBE,OT,0,,0.0,STOLEN,2390,"{'type': 'Point', 'coordinates': (-79.41938138, 43.79547772)}"
-2399,12496,GO-20161724702,THEFT UNDER - BICYCLE,2016-09-12T00:00:00,2016,September,Monday,12,256,9,2016-09-28T00:00:00,2016,September,Wednesday,28,272,11,D32,Toronto,36,Newtonbrook West (36),Schools During Supervised Activity,Educational,OTHER,UNKN,OT,0,BLKRED,0.0,STOLEN,2391,"{'type': 'Point', 'coordinates': (-79.44037749, 43.78532124)}"
-2400,12497,GO-20161724702,THEFT UNDER - BICYCLE,2016-09-12T00:00:00,2016,September,Monday,12,256,9,2016-09-28T00:00:00,2016,September,Wednesday,28,272,11,D32,Toronto,36,Newtonbrook West (36),Schools During Supervised Activity,Educational,OTHER,UNKN,OT,0,REDWHI,0.0,STOLEN,2392,"{'type': 'Point', 'coordinates': (-79.44037749, 43.78532124)}"
-2401,12498,GO-20161724702,THEFT UNDER - BICYCLE,2016-09-12T00:00:00,2016,September,Monday,12,256,9,2016-09-28T00:00:00,2016,September,Wednesday,28,272,11,D32,Toronto,36,Newtonbrook West (36),Schools During Supervised Activity,Educational,RALEIGH,UNKN PARTICULAR,OT,0,,399.0,STOLEN,2393,"{'type': 'Point', 'coordinates': (-79.44037749, 43.78532124)}"
-2402,12499,GO-20161724702,THEFT UNDER - BICYCLE,2016-09-12T00:00:00,2016,September,Monday,12,256,9,2016-09-28T00:00:00,2016,September,Wednesday,28,272,11,D32,Toronto,36,Newtonbrook West (36),Schools During Supervised Activity,Educational,OTHER,UNKN,OT,0,REDBLK,0.0,STOLEN,2394,"{'type': 'Point', 'coordinates': (-79.44037749, 43.78532124)}"
-2403,12635,GO-20161854121,THEFT OF EBIKE UNDER $5000,2016-10-16T00:00:00,2016,October,Sunday,16,290,16,2016-10-18T00:00:00,2016,October,Tuesday,18,292,14,D32,Toronto,36,Newtonbrook West (36),"Apartment (Rooming House, Condo)",Apartment,EMMO,,EL,3,BLKWHI,2500.0,STOLEN,2395,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}"
-2404,13535,GO-2020655727,THEFT UNDER - BICYCLE,2020-03-31T00:00:00,2020,March,Tuesday,31,91,17,2020-04-03T00:00:00,2020,April,Friday,3,94,20,D32,Toronto,36,Newtonbrook West (36),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,UNKNOWN,TR,24,BLU,1500.0,STOLEN,2396,"{'type': 'Point', 'coordinates': (-79.42793139, 43.7939597)}"
-2405,13596,GO-20202136551,THEFT OF EBIKE UNDER $5000,2020-11-06T00:00:00,2020,November,Friday,6,311,16,2020-11-10T00:00:00,2020,November,Tuesday,10,315,19,D32,Toronto,36,Newtonbrook West (36),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DAYMAK,,EL,1,,1500.0,STOLEN,2397,"{'type': 'Point', 'coordinates': (-79.42812453, 43.78898667)}"
-2406,14658,GO-20179008736,THEFT UNDER - BICYCLE,2017-06-23T00:00:00,2017,June,Friday,23,174,20,2017-06-23T00:00:00,2017,June,Friday,23,174,21,D32,Toronto,36,Newtonbrook West (36),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GT,GT TRANSEO 6.0,RG,24,GRY,621.0,STOLEN,2398,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}"
-2407,14697,GO-20179013083,THEFT UNDER - BICYCLE,2017-08-13T00:00:00,2017,August,Sunday,13,225,8,2017-08-22T00:00:00,2017,August,Tuesday,22,234,20,D32,Toronto,36,Newtonbrook West (36),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,21,,3000.0,STOLEN,2399,"{'type': 'Point', 'coordinates': (-79.42633718, 43.79662303)}"
-2408,14757,GO-20189002911,THEFT UNDER,2018-01-29T00:00:00,2018,January,Monday,29,29,1,2018-01-29T00:00:00,2018,January,Monday,29,29,17,D32,Toronto,36,Newtonbrook West (36),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,49,DGR,350.0,STOLEN,2400,"{'type': 'Point', 'coordinates': (-79.43652366, 43.79441485)}"
-2409,14769,GO-20189009915,THEFT UNDER - BICYCLE,2018-03-28T00:00:00,2018,March,Wednesday,28,87,8,2018-03-29T00:00:00,2018,March,Thursday,29,88,8,D32,Toronto,36,Newtonbrook West (36),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,CC,,MT,5,RED,0.0,STOLEN,2401,"{'type': 'Point', 'coordinates': (-79.42286679, 43.78590034)}"
-2410,14919,GO-20149004003,THEFT UNDER,2014-06-10T00:00:00,2014,June,Tuesday,10,161,18,2014-06-11T00:00:00,2014,June,Wednesday,11,162,22,D32,Toronto,36,Newtonbrook West (36),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,CROSSTRAIL,MT,24,BLK,1000.0,STOLEN,2402,"{'type': 'Point', 'coordinates': (-79.41739035, 43.779370650000004)}"
-2411,14939,GO-20159000092,THEFT UNDER,2014-12-23T00:00:00,2014,December,Tuesday,23,357,11,2015-01-06T00:00:00,2015,January,Tuesday,6,6,11,D32,Toronto,36,Newtonbrook West (36),"Apartment (Rooming House, Condo)",Apartment,GF,ADVANCE,MT,21,BLK,400.0,STOLEN,2403,"{'type': 'Point', 'coordinates': (-79.41891275, 43.78096495)}"
-2412,15003,GO-20161040489,THEFT UNDER - BICYCLE,2016-06-14T00:00:00,2016,June,Tuesday,14,166,17,2016-06-15T00:00:00,2016,June,Wednesday,15,167,8,D32,Toronto,36,Newtonbrook West (36),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,OT,3,BLKRED,600.0,STOLEN,2404,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}"
-2413,15015,GO-20161390409,PROPERTY - FOUND,2016-07-24T00:00:00,2016,July,Sunday,24,206,15,2016-08-07T00:00:00,2016,August,Sunday,7,220,15,D32,Toronto,36,Newtonbrook West (36),"Open Areas (Lakes, Parks, Rivers)",Outside,KONA,SCRAP,MT,10,ONG,,UNKNOWN,2405,"{'type': 'Point', 'coordinates': (-79.41998499, 43.78072717)}"
-2414,15020,GO-20169008826,THEFT UNDER - BICYCLE,2016-08-15T00:00:00,2016,August,Monday,15,228,15,2016-08-15T00:00:00,2016,August,Monday,15,228,21,D32,Toronto,36,Newtonbrook West (36),"Apartment (Rooming House, Condo)",Apartment,MA,SAN RAFAEL,RG,21,GRY,500.0,STOLEN,2406,"{'type': 'Point', 'coordinates': (-79.4173091, 43.78706936)}"
-2415,15029,GO-20169010580,THEFT UNDER - BICYCLE,2016-09-16T00:00:00,2016,September,Friday,16,260,9,2016-09-17T00:00:00,2016,September,Saturday,17,261,9,D32,Toronto,36,Newtonbrook West (36),Ttc Subway Station,Transit,TR,7.4 FX GRY 15,RG,40,GRY,750.0,STOLEN,2407,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}"
-2416,15047,GO-2017823525,THEFT OVER - BICYCLE,2017-05-09T00:00:00,2017,May,Tuesday,9,129,15,2017-05-10T00:00:00,2017,May,Wednesday,10,130,13,D32,Toronto,36,Newtonbrook West (36),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,ROCKY MOUNTAIN,ELEMENT,MT,20,REDWHI,5500.0,STOLEN,2408,"{'type': 'Point', 'coordinates': (-79.41938138, 43.79547772)}"
-2417,16795,GO-20199031111,THEFT UNDER - BICYCLE,2019-09-20T00:00:00,2019,September,Friday,20,263,19,2019-09-23T00:00:00,2019,September,Monday,23,266,7,D32,Toronto,36,Newtonbrook West (36),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,BLACK LRG HYBRI,RG,18,BLK,542.0,STOLEN,2409,"{'type': 'Point', 'coordinates': (-79.42079703, 43.78636367)}"
-2418,16804,GO-20192459679,THEFT OF EBIKE UNDER $5000,2019-12-21T00:00:00,2019,December,Saturday,21,355,18,2019-12-21T00:00:00,2019,December,Saturday,21,355,18,D32,Toronto,36,Newtonbrook West (36),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,SPORTS BIKE,EL,0,BLKWHI,3700.0,STOLEN,2410,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}"
-2419,16826,GO-20209017984,THEFT UNDER - BICYCLE,2020-07-19T00:00:00,2020,July,Sunday,19,201,0,2020-07-19T00:00:00,2020,July,Sunday,19,201,23,D32,Toronto,36,Newtonbrook West (36),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,MT,30,WHI,450.0,STOLEN,2411,"{'type': 'Point', 'coordinates': (-79.43790891, 43.79056761)}"
-2420,17726,GO-20179014791,THEFT UNDER - BICYCLE,2017-09-14T00:00:00,2017,September,Thursday,14,257,17,2017-09-14T00:00:00,2017,September,Thursday,14,257,22,D32,Toronto,36,Newtonbrook West (36),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,MT,25,,400.0,STOLEN,2412,"{'type': 'Point', 'coordinates': (-79.41958993, 43.79632341)}"
-2421,17736,GO-20179015165,THEFT UNDER - BICYCLE,2017-09-19T00:00:00,2017,September,Tuesday,19,262,18,2017-09-19T00:00:00,2017,September,Tuesday,19,262,21,D32,Toronto,36,Newtonbrook West (36),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,1800,MT,18,BLK,110.0,STOLEN,2413,"{'type': 'Point', 'coordinates': (-79.44571399, 43.79240783)}"
-2422,17785,GO-20189002161,THEFT UNDER - BICYCLE,2018-01-05T00:00:00,2018,January,Friday,5,5,12,2018-01-23T00:00:00,2018,January,Tuesday,23,23,1,D32,Toronto,36,Newtonbrook West (36),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,,MT,30,OTH,599.0,STOLEN,2414,"{'type': 'Point', 'coordinates': (-79.42079703, 43.78636367)}"
-2423,17921,GO-20149003576,THEFT UNDER,2014-05-12T00:00:00,2014,May,Monday,12,132,12,2014-05-26T00:00:00,2014,May,Monday,26,146,13,D32,Toronto,36,Newtonbrook West (36),"Apartment (Rooming House, Condo)",Apartment,OT,ALLEZ,TO,10,WHI,3000.0,STOLEN,2415,"{'type': 'Point', 'coordinates': (-79.42331577, 43.79005469)}"
-2424,17925,GO-20149003949,THEFT UNDER,2014-06-09T00:00:00,2014,June,Monday,9,160,23,2014-06-10T00:00:00,2014,June,Tuesday,10,161,12,D32,Toronto,36,Newtonbrook West (36),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,ATX 760,MT,21,BLK,300.0,STOLEN,2416,"{'type': 'Point', 'coordinates': (-79.43517971, 43.78647056)}"
-2425,17931,GO-20149004666,THEFT UNDER,2014-07-02T00:00:00,2014,July,Wednesday,2,183,11,2014-07-03T00:00:00,2014,July,Thursday,3,184,13,D32,Toronto,36,Newtonbrook West (36),Ttc Subway Station,Transit,CC,,MT,22,WHI,300.0,STOLEN,2417,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}"
-2426,17950,GO-20143052917,THEFT UNDER,2014-08-31T00:00:00,2014,August,Sunday,31,243,0,2014-10-06T00:00:00,2014,October,Monday,6,279,12,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,ROCKY MOUNTAIN,METRO 5 LO,MT,21,BLUSIL,600.0,RECOVERED,2418,"{'type': 'Point', 'coordinates': (-79.42633718, 43.79662303)}"
-2427,17986,GO-20151413794,THEFT UNDER,2015-08-17T00:00:00,2015,August,Monday,17,229,9,2015-08-17T00:00:00,2015,August,Monday,17,229,11,D32,Toronto,36,Newtonbrook West (36),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NEXT,,RG,10,BLK,100.0,STOLEN,2419,"{'type': 'Point', 'coordinates': (-79.43682574, 43.78707906000001)}"
-2428,17995,GO-20159007244,THEFT UNDER,2015-09-15T00:00:00,2015,September,Tuesday,15,258,7,2015-09-15T00:00:00,2015,September,Tuesday,15,258,20,D32,Toronto,36,Newtonbrook West (36),Unknown,Other,OT,QUEST SPORT,RG,24,BLK,550.0,STOLEN,2420,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}"
-2429,18001,GO-20159009073,THEFT UNDER,2015-10-23T00:00:00,2015,October,Friday,23,296,15,2015-10-27T00:00:00,2015,October,Tuesday,27,300,12,D32,Toronto,36,Newtonbrook West (36),Ttc Subway Station,Transit,CC,"CCM 26"""" EQUATOR",RG,8,PLE,230.0,STOLEN,2421,"{'type': 'Point', 'coordinates': (-79.41553623, 43.77976942)}"
-2430,18006,GO-20159010225,THEFT UNDER,2015-11-25T00:00:00,2015,November,Wednesday,25,329,9,2015-11-26T00:00:00,2015,November,Thursday,26,330,13,D32,Toronto,36,Newtonbrook West (36),Schools During Supervised Activity,Educational,OT,,RG,1,BLU,0.0,STOLEN,2422,"{'type': 'Point', 'coordinates': (-79.42719052, 43.7929646)}"
-2431,18007,GO-20152104230,THEFT UNDER,2015-12-06T00:00:00,2015,December,Sunday,6,340,11,2015-12-08T00:00:00,2015,December,Tuesday,8,342,19,D32,Toronto,36,Newtonbrook West (36),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,,MT,27,SIL,600.0,STOLEN,2423,"{'type': 'Point', 'coordinates': (-79.42358339, 43.78077882)}"
-2432,18008,GO-20152104230,THEFT UNDER,2015-12-06T00:00:00,2015,December,Sunday,6,340,11,2015-12-08T00:00:00,2015,December,Tuesday,8,342,19,D32,Toronto,36,Newtonbrook West (36),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,MULTITRACK 700,OT,21,BLU,180.0,STOLEN,2424,"{'type': 'Point', 'coordinates': (-79.42358339, 43.78077882)}"
-2433,18033,GO-20169008008,THEFT UNDER - BICYCLE,2016-07-31T00:00:00,2016,July,Sunday,31,213,23,2016-08-01T00:00:00,2016,August,Monday,1,214,8,D32,Toronto,36,Newtonbrook West (36),"Apartment (Rooming House, Condo)",Apartment,OT,AF1,EL,3,RED,1800.0,STOLEN,2425,"{'type': 'Point', 'coordinates': (-79.42331577, 43.79005469)}"
-2434,18052,GO-20169011425,THEFT UNDER - BICYCLE,2016-09-03T00:00:00,2016,September,Saturday,3,247,17,2016-10-01T00:00:00,2016,October,Saturday,1,275,17,D32,Toronto,36,Newtonbrook West (36),Ttc Bus,Transit,SC,MOUNTAIN BIKE 2,MT,21,RED,320.0,STOLEN,2426,"{'type': 'Point', 'coordinates': (-79.41938138, 43.79547772)}"
-2435,19989,GO-20189034693,THEFT UNDER - BICYCLE,2018-10-18T00:00:00,2018,October,Thursday,18,291,11,2018-10-19T00:00:00,2018,October,Friday,19,292,11,D32,Toronto,36,Newtonbrook West (36),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,BIG NINE TFS 90,MT,30,BLK,3000.0,STOLEN,2427,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}"
-2436,19990,GO-20189034693,THEFT UNDER - BICYCLE,2018-10-18T00:00:00,2018,October,Thursday,18,291,11,2018-10-19T00:00:00,2018,October,Friday,19,292,11,D32,Toronto,36,Newtonbrook West (36),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,MATTS TFS 100,MT,25,GRY,1000.0,STOLEN,2428,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}"
-2437,20044,GO-20199020086,THEFT UNDER - BICYCLE,2019-06-25T00:00:00,2019,June,Tuesday,25,176,9,2019-06-25T00:00:00,2019,June,Tuesday,25,176,16,D32,Toronto,36,Newtonbrook West (36),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,RG,5,BLU,3000.0,STOLEN,2429,"{'type': 'Point', 'coordinates': (-79.41958993, 43.79632341)}"
-2438,20093,GO-20201170461,THEFT OVER - BICYCLE,2020-06-25T00:00:00,2020,June,Thursday,25,177,13,2020-06-25T00:00:00,2020,June,Thursday,25,177,15,D32,Toronto,36,Newtonbrook West (36),"Apartment (Rooming House, Condo)",Apartment,ELBY,UNKNOWN,EL,1,GRYSIL,4300.0,STOLEN,2431,"{'type': 'Point', 'coordinates': (-79.44648969, 43.78907776)}"
-2439,20094,GO-20201170461,THEFT OVER - BICYCLE,2020-06-25T00:00:00,2020,June,Thursday,25,177,13,2020-06-25T00:00:00,2020,June,Thursday,25,177,15,D32,Toronto,36,Newtonbrook West (36),"Apartment (Rooming House, Condo)",Apartment,ELBY,UNKNOWN,EL,1,SILGRY,4300.0,STOLEN,2432,"{'type': 'Point', 'coordinates': (-79.44648969, 43.78907776)}"
-2440,2210,GO-2018745099,THEFT UNDER - BICYCLE,2018-04-21T00:00:00,2018,April,Saturday,21,111,9,2018-04-26T00:00:00,2018,April,Thursday,26,116,9,D32,Toronto,39,Bedford Park-Nortown (39),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,FOCUS,,RC,12,BLKGLD,2000.0,STOLEN,2433,"{'type': 'Point', 'coordinates': (-79.42382689, 43.73937509)}"
-2441,20130,GO-20209026704,THEFT UNDER,2020-10-15T00:00:00,2020,October,Thursday,15,289,17,2020-10-16T00:00:00,2020,October,Friday,16,290,14,D32,Toronto,36,Newtonbrook West (36),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,XR ELECTRIC SCO,EL,15,BLK,600.0,STOLEN,2434,"{'type': 'Point', 'coordinates': (-79.41998499, 43.78072717)}"
-2442,21241,GO-20189000307,THEFT UNDER,2017-12-21T00:00:00,2017,December,Thursday,21,355,19,2018-01-04T00:00:00,2018,January,Thursday,4,4,20,D32,Toronto,36,Newtonbrook West (36),"Apartment (Rooming House, Condo)",Apartment,UK,,OT,21,BLK,0.0,STOLEN,2435,"{'type': 'Point', 'coordinates': (-79.42079703, 43.78636367)}"
-2443,21242,GO-20189000307,THEFT UNDER,2017-12-21T00:00:00,2017,December,Thursday,21,355,19,2018-01-04T00:00:00,2018,January,Thursday,4,4,20,D32,Toronto,36,Newtonbrook West (36),"Apartment (Rooming House, Condo)",Apartment,NO,WOLVERINE,MT,24,BLU,0.0,STOLEN,2436,"{'type': 'Point', 'coordinates': (-79.42079703, 43.78636367)}"
-2444,22029,GO-20149005582,THEFT UNDER,2014-08-03T00:00:00,2014,August,Sunday,3,215,14,2014-08-04T00:00:00,2014,August,Monday,4,216,15,D32,Toronto,36,Newtonbrook West (36),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,THUNDER,RG,21,BLU,200.0,STOLEN,2437,"{'type': 'Point', 'coordinates': (-79.41553623, 43.77976942)}"
-2445,22079,GO-20159006320,THEFT UNDER,2015-08-21T00:00:00,2015,August,Friday,21,233,22,2015-08-23T00:00:00,2015,August,Sunday,23,235,23,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SU,ROAD BIKE,RC,30,GRN,300.0,STOLEN,2438,"{'type': 'Point', 'coordinates': (-79.42633718, 43.79662303)}"
-2446,22104,GO-2016975755,THEFT UNDER - BICYCLE,2016-06-03T00:00:00,2016,June,Friday,3,155,23,2016-06-05T00:00:00,2016,June,Sunday,5,157,11,D32,Toronto,36,Newtonbrook West (36),Ttc Subway Station,Transit,CCM,CCM,OT,0,BLU,500.0,STOLEN,2439,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}"
-2447,22121,GO-20169008230,THEFT UNDER - BICYCLE,2016-08-04T00:00:00,2016,August,Thursday,4,217,8,2016-08-04T00:00:00,2016,August,Thursday,4,217,20,D32,Toronto,36,Newtonbrook West (36),Ttc Subway Station,Transit,OT,,RC,20,ONG,1200.0,STOLEN,2440,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}"
-2448,22131,GO-20169010805,THEFT UNDER - BICYCLE,2016-09-20T00:00:00,2016,September,Tuesday,20,264,7,2016-09-20T00:00:00,2016,September,Tuesday,20,264,18,D32,Toronto,36,Newtonbrook West (36),Ttc Subway Station,Transit,OT,,RG,3,BLK,450.0,STOLEN,2441,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}"
-2449,22149,GO-20179005869,THEFT UNDER - BICYCLE,2017-05-06T00:00:00,2017,May,Saturday,6,126,23,2017-05-07T00:00:00,2017,May,Sunday,7,127,19,D32,Toronto,36,Newtonbrook West (36),Ttc Subway Station,Transit,RA,TOKUL 1,MT,24,DBL,800.0,STOLEN,2442,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}"
-2450,23320,GO-20209012457,THEFT UNDER - BICYCLE,2019-11-19T00:00:00,2019,November,Tuesday,19,323,18,2020-05-04T00:00:00,2020,May,Monday,4,125,14,D32,Toronto,36,Newtonbrook West (36),Ttc Subway Station,Transit,NO,MONTEREY,RG,24,BLU,150.0,STOLEN,2443,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}"
-2451,23370,GO-20202290284,FRAUD OVER,2020-11-27T00:00:00,2020,November,Friday,27,332,0,2020-12-05T00:00:00,2020,December,Saturday,5,340,14,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,ZZZ,G1,SC,3,,1599.0,STOLEN,2444,"{'type': 'Point', 'coordinates': (-79.4173091, 43.78706936)}"
-2452,17984,GO-20151338398,THEFT UNDER,2015-08-04T00:00:00,2015,August,Tuesday,4,216,9,2015-08-05T00:00:00,2015,August,Wednesday,5,217,9,D32,Toronto,37,Willowdale West (37),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,,RG,5,BLK,900.0,STOLEN,2445,"{'type': 'Point', 'coordinates': (-79.41286325, 43.76927425)}"
-2453,2222,GO-2018771233,THEFT UNDER - BICYCLE,2018-04-16T00:00:00,2018,April,Monday,16,106,16,2018-04-30T00:00:00,2018,April,Monday,30,120,10,D32,Toronto,32,Englemount-Lawrence (32),"Apartment (Rooming House, Condo)",Apartment,NORCO,UNK,MT,0,GRY,,RECOVERED,2446,"{'type': 'Point', 'coordinates': (-79.43049352, 43.72255903)}"
-2454,24487,GO-20151545579,THEFT UNDER,2015-09-02T00:00:00,2015,September,Wednesday,2,245,19,2015-09-07T00:00:00,2015,September,Monday,7,250,16,D32,Toronto,32,Englemount-Lawrence (32),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,,MT,1,SILYEL,250.0,STOLEN,2447,"{'type': 'Point', 'coordinates': (-79.43819728, 43.73027846)}"
-2455,17992,GO-20159006964,THEFT UNDER,2015-09-09T00:00:00,2015,September,Wednesday,9,252,8,2015-09-09T00:00:00,2015,September,Wednesday,9,252,17,D32,Toronto,37,Willowdale West (37),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,7. FX,RG,8,BLU,700.0,STOLEN,2448,"{'type': 'Point', 'coordinates': (-79.41220612, 43.76668774)}"
-2456,17999,GO-20159008900,THEFT UNDER,2015-10-20T00:00:00,2015,October,Tuesday,20,293,11,2015-10-22T00:00:00,2015,October,Thursday,22,295,21,D32,Toronto,37,Willowdale West (37),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KH,MANHATTAN CRUIS,OT,22,,800.0,STOLEN,2449,"{'type': 'Point', 'coordinates': (-79.41627924, 43.768523390000006)}"
-2457,18019,GO-2016681663,THEFT UNDER - BICYCLE,2016-04-20T00:00:00,2016,April,Wednesday,20,111,14,2016-04-21T00:00:00,2016,April,Thursday,21,112,16,D32,Toronto,37,Willowdale West (37),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SCHWINN,,OT,24,YEL,700.0,STOLEN,2450,"{'type': 'Point', 'coordinates': (-79.41524494, 43.77868058)}"
-2458,18020,GO-2016694561,THEFT UNDER - BICYCLE,2016-04-23T00:00:00,2016,April,Saturday,23,114,11,2016-04-23T00:00:00,2016,April,Saturday,23,114,17,D32,Toronto,37,Willowdale West (37),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,INNOVA,MT,24,WHI,1800.0,STOLEN,2451,"{'type': 'Point', 'coordinates': (-79.41240726, 43.76747172)}"
-2459,18024,GO-2016923813,THEFT UNDER - BICYCLE,2016-05-17T00:00:00,2016,May,Tuesday,17,138,17,2016-05-28T00:00:00,2016,May,Saturday,28,149,20,D32,Toronto,37,Willowdale West (37),"Apartment (Rooming House, Condo)",Apartment,GT,KARATORAM,TO,10,BLK,440.0,STOLEN,2452,"{'type': 'Point', 'coordinates': (-79.41627924, 43.768523390000006)}"
-2460,18028,GO-20169006178,THEFT UNDER - BICYCLE,2016-06-21T00:00:00,2016,June,Tuesday,21,173,8,2016-06-22T00:00:00,2016,June,Wednesday,22,174,13,D32,Toronto,37,Willowdale West (37),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,NETWORK,RG,7,SIL,300.0,STOLEN,2453,"{'type': 'Point', 'coordinates': (-79.41627924, 43.768523390000006)}"
-2461,18044,GO-20169008923,THEFT UNDER - BICYCLE,2016-08-15T00:00:00,2016,August,Monday,15,228,11,2016-08-17T00:00:00,2016,August,Wednesday,17,230,12,D32,Toronto,37,Willowdale West (37),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,,RG,10,GRY,0.0,STOLEN,2454,"{'type': 'Point', 'coordinates': (-79.43611498, 43.77415745)}"
-2462,18049,GO-20169010002,THEFT UNDER - BICYCLE,2016-09-05T00:00:00,2016,September,Monday,5,249,12,2016-09-05T00:00:00,2016,September,Monday,5,249,21,D32,Toronto,37,Willowdale West (37),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,,TO,9,,1500.0,STOLEN,2455,"{'type': 'Point', 'coordinates': (-79.41286325, 43.76927425)}"
-2463,18061,GO-20169013344,THEFT UNDER - BICYCLE,2016-11-10T00:00:00,2016,November,Thursday,10,315,18,2016-11-13T00:00:00,2016,November,Sunday,13,318,13,D32,Toronto,37,Willowdale West (37),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,10,ONG,1500.0,STOLEN,2456,"{'type': 'Point', 'coordinates': (-79.41725427, 43.77839991)}"
-2464,18093,GO-20179010307,THEFT UNDER,2017-07-12T00:00:00,2017,July,Wednesday,12,193,21,2017-07-15T00:00:00,2017,July,Saturday,15,196,22,D32,Toronto,37,Willowdale West (37),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,TRANSEO 4.0,OT,24,GRY,650.0,STOLEN,2457,"{'type': 'Point', 'coordinates': (-79.41504505, 43.77789124000001)}"
-2465,20072,GO-20199030557,THEFT UNDER - BICYCLE,2019-09-18T00:00:00,2019,September,Wednesday,18,261,7,2019-09-18T00:00:00,2019,September,Wednesday,18,261,16,D32,Toronto,37,Willowdale West (37),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UK,FIXIE,RG,1,BLK,153.0,STOLEN,2458,"{'type': 'Point', 'coordinates': (-79.41533101, 43.76633166)}"
-2466,20081,GO-20199038375,THEFT UNDER - BICYCLE,2019-11-05T00:00:00,2019,November,Tuesday,5,309,22,2019-11-21T00:00:00,2019,November,Thursday,21,325,21,D32,Toronto,37,Willowdale West (37),"Apartment (Rooming House, Condo)",Apartment,OT,SPECIALIZED,RG,1,BLK,650.0,STOLEN,2459,"{'type': 'Point', 'coordinates': (-79.41725427, 43.77839991)}"
-2467,20091,GO-20209015681,THEFT UNDER - BICYCLE,2020-06-16T00:00:00,2020,June,Tuesday,16,168,21,2020-06-19T00:00:00,2020,June,Friday,19,171,0,D32,Toronto,37,Willowdale West (37),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,LT50,MT,21,BLU,400.0,STOLEN,2460,"{'type': 'Point', 'coordinates': (-79.41865585, 43.76799853)}"
-2468,20122,GO-20209023036,THEFT UNDER - BICYCLE,2020-09-04T00:00:00,2020,September,Friday,4,248,10,2020-09-12T00:00:00,2020,September,Saturday,12,256,10,D32,Toronto,37,Willowdale West (37),"Apartment (Rooming House, Condo)",Apartment,OT,SIRRUS,RG,21,BLK,600.0,STOLEN,2461,"{'type': 'Point', 'coordinates': (-79.41627924, 43.768523390000006)}"
-2469,20127,GO-20209025414,THEFT UNDER - BICYCLE,2020-10-01T00:00:00,2020,October,Thursday,1,275,11,2020-10-04T00:00:00,2020,October,Sunday,4,278,16,D32,Toronto,37,Willowdale West (37),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SU,,RG,7,BLK,237.0,STOLEN,2462,"{'type': 'Point', 'coordinates': (-79.41327513, 43.77099307)}"
-2470,21188,GO-20171315978,THEFT OF EBIKE UNDER $5000,2017-07-21T00:00:00,2017,July,Friday,21,202,22,2017-07-22T00:00:00,2017,July,Saturday,22,203,12,D32,Toronto,37,Willowdale West (37),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,ACCESS WLS,EL,10,BLUGRN,2000.0,STOLEN,2463,"{'type': 'Point', 'coordinates': (-79.42514063, 43.77086085)}"
-2471,21269,GO-20189014907,THEFT UNDER - BICYCLE,2018-05-14T00:00:00,2018,May,Monday,14,134,14,2018-05-14T00:00:00,2018,May,Monday,14,134,16,D32,Toronto,37,Willowdale West (37),"Apartment (Rooming House, Condo)",Apartment,IN,,MT,21,RED,300.0,STOLEN,2464,"{'type': 'Point', 'coordinates': (-79.41286325, 43.76927425)}"
-2472,22017,GO-20142330656,THEFT UNDER,2014-06-20T00:00:00,2014,June,Friday,20,171,9,2014-06-20T00:00:00,2014,June,Friday,20,171,13,D32,Toronto,37,Willowdale West (37),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DAVINCI,JACK,MT,28,BLU,1000.0,STOLEN,2465,"{'type': 'Point', 'coordinates': (-79.41240726, 43.76747172)}"
-2473,22048,GO-2015535675,THEFT UNDER,2014-03-15T00:00:00,2014,March,Saturday,15,74,9,2015-03-31T00:00:00,2015,March,Tuesday,31,90,15,D32,Toronto,37,Willowdale West (37),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,ESCAPE 2,OT,0,WHI,500.0,STOLEN,2466,"{'type': 'Point', 'coordinates': (-79.41725427, 43.77839991)}"
-2474,22101,GO-2016644191,THEFT UNDER - BICYCLE,2016-04-15T00:00:00,2016,April,Friday,15,106,16,2016-04-15T00:00:00,2016,April,Friday,15,106,20,D32,Toronto,37,Willowdale West (37),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,SUPERCYCLE,,RG,21,WHI,250.0,STOLEN,2467,"{'type': 'Point', 'coordinates': (-79.41240726, 43.76747172)}"
-2475,22112,GO-20169006554,THEFT UNDER - BICYCLE,2016-06-02T00:00:00,2016,June,Thursday,2,154,10,2016-06-27T00:00:00,2016,June,Monday,27,179,10,D32,Toronto,37,Willowdale West (37),"Apartment (Rooming House, Condo)",Apartment,CC,700C XSPORT,OT,30,,500.0,STOLEN,2468,"{'type': 'Point', 'coordinates': (-79.41725427, 43.77839991)}"
-2476,22116,GO-20161276835,PROPERTY - FOUND,2016-07-20T00:00:00,2016,July,Wednesday,20,202,21,2016-07-20T00:00:00,2016,July,Wednesday,20,202,22,D32,Toronto,37,Willowdale West (37),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,MARLIN 5,MT,7,RED,500.0,UNKNOWN,2469,"{'type': 'Point', 'coordinates': (-79.42197215, 43.77581389)}"
-2477,22128,GO-20169010437,THEFT UNDER - BICYCLE,2016-09-12T00:00:00,2016,September,Monday,12,256,19,2016-09-14T00:00:00,2016,September,Wednesday,14,258,14,D32,Toronto,37,Willowdale West (37),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,21,BLK,600.0,STOLEN,2470,"{'type': 'Point', 'coordinates': (-79.41286325, 43.76927425)}"
-2478,22132,GO-20169011366,THEFT UNDER - BICYCLE,2016-09-10T00:00:00,2016,September,Saturday,10,254,18,2016-09-30T00:00:00,2016,September,Friday,30,274,16,D32,Toronto,37,Willowdale West (37),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,,RG,24,GRY,600.0,STOLEN,2471,"{'type': 'Point', 'coordinates': (-79.41725427, 43.77839991)}"
-2479,22138,GO-201744884,THEFT UNDER - BICYCLE,2016-10-08T00:00:00,2016,October,Saturday,8,282,18,2017-01-08T00:00:00,2017,January,Sunday,8,8,15,D32,Toronto,37,Willowdale West (37),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,MENS,MT,24,,500.0,STOLEN,2472,"{'type': 'Point', 'coordinates': (-79.41725427, 43.77839991)}"
-2480,23233,GO-20189043505,THEFT UNDER - BICYCLE,2018-12-18T00:00:00,2018,December,Tuesday,18,352,13,2018-12-28T00:00:00,2018,December,Friday,28,362,13,D32,Toronto,37,Willowdale West (37),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,IN,,RG,8,GRY,200.0,STOLEN,2473,"{'type': 'Point', 'coordinates': (-79.41533101, 43.76633166)}"
-2481,23262,GO-20199018157,THEFT UNDER,2019-06-11T00:00:00,2019,June,Tuesday,11,162,4,2019-06-11T00:00:00,2019,June,Tuesday,11,162,17,D32,Toronto,37,Willowdale West (37),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,MT,21,BLU,500.0,STOLEN,2474,"{'type': 'Point', 'coordinates': (-79.44089248, 43.76546485)}"
-2482,23291,GO-20199023597,THEFT UNDER,2019-07-21T00:00:00,2019,July,Sunday,21,202,15,2019-07-24T00:00:00,2019,July,Wednesday,24,205,19,D32,Toronto,37,Willowdale West (37),"Apartment (Rooming House, Condo)",Apartment,GI,TALON 1,MT,1,BLK,1200.0,STOLEN,2475,"{'type': 'Point', 'coordinates': (-79.41725427, 43.77839991)}"
-2483,23313,GO-2020521419,THEFT UNDER - BICYCLE,2020-03-12T00:00:00,2020,March,Thursday,12,72,8,2020-03-12T00:00:00,2020,March,Thursday,12,72,19,D32,Toronto,37,Willowdale West (37),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NAKAMURA,,OT,10,GRYBLK,1000.0,STOLEN,2476,"{'type': 'Point', 'coordinates': (-79.41627924, 43.768523390000006)}"
-2484,23359,GO-20209024558,THEFT UNDER - BICYCLE,2020-09-25T00:00:00,2020,September,Friday,25,269,16,2020-09-25T00:00:00,2020,September,Friday,25,269,19,D32,Toronto,37,Willowdale West (37),Ttc Subway Station,Transit,OT,,RG,1,,60.0,STOLEN,2477,"{'type': 'Point', 'coordinates': (-79.41553623, 43.77976942)}"
-2485,24202,GO-20179011757,THEFT UNDER,2017-08-02T00:00:00,2017,August,Wednesday,2,214,14,2017-08-05T00:00:00,2017,August,Saturday,5,217,18,D32,Toronto,37,Willowdale West (37),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,SU,,MT,21,GRY,0.0,STOLEN,2478,"{'type': 'Point', 'coordinates': (-79.41240726, 43.76747172)}"
-2486,24417,GO-20149003571,THEFT UNDER,2014-05-25T00:00:00,2014,May,Sunday,25,145,8,2014-05-25T00:00:00,2014,May,Sunday,25,145,8,D32,Toronto,37,Willowdale West (37),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RA,DETOUR 6.5,RG,10,GRY,600.0,STOLEN,2479,"{'type': 'Point', 'coordinates': (-79.43451729, 43.77333293)}"
-2487,24445,GO-20159000474,THEFT UNDER,2015-01-22T00:00:00,2015,January,Thursday,22,22,0,2015-01-26T00:00:00,2015,January,Monday,26,26,10,D32,Toronto,37,Willowdale West (37),"Apartment (Rooming House, Condo)",Apartment,TR,3500,MT,21,GRY,600.0,STOLEN,2480,"{'type': 'Point', 'coordinates': (-79.41725427, 43.77839991)}"
-2488,24446,GO-20159001581,THEFT UNDER,2014-12-31T00:00:00,2014,December,Wednesday,31,365,9,2015-03-27T00:00:00,2015,March,Friday,27,86,11,D32,Toronto,37,Willowdale West (37),"Apartment (Rooming House, Condo)",Apartment,UK,WILSON SL,OT,10,WHI,3500.0,STOLEN,2481,"{'type': 'Point', 'coordinates': (-79.41725427, 43.77839991)}"
-2489,24520,GO-2016850481,THEFT UNDER - BICYCLE,2016-05-17T00:00:00,2016,May,Tuesday,17,138,15,2016-05-17T00:00:00,2016,May,Tuesday,17,138,18,D32,Toronto,37,Willowdale West (37),"Open Areas (Lakes, Parks, Rivers)",Outside,CCM,,OT,0,BLUWHI,450.0,STOLEN,2482,"{'type': 'Point', 'coordinates': (-79.41240726, 43.76747172)}"
-2490,24521,GO-20169004948,THEFT UNDER - BICYCLE,2016-05-21T00:00:00,2016,May,Saturday,21,142,18,2016-05-25T00:00:00,2016,May,Wednesday,25,146,18,D32,Toronto,37,Willowdale West (37),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,F4,MT,21,BRN,757.0,STOLEN,2483,"{'type': 'Point', 'coordinates': (-79.41725427, 43.77839991)}"
-2491,24529,GO-20169007659,THEFT UNDER - BICYCLE,2016-07-24T00:00:00,2016,July,Sunday,24,206,3,2016-07-24T00:00:00,2016,July,Sunday,24,206,8,D32,Toronto,37,Willowdale West (37),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,,MT,21,SIL,250.0,STOLEN,2484,"{'type': 'Point', 'coordinates': (-79.42810691, 43.77160985)}"
-2492,24540,GO-20161486915,THEFT UNDER - BICYCLE,2016-08-07T00:00:00,2016,August,Sunday,7,220,19,2016-08-25T00:00:00,2016,August,Thursday,25,238,10,D32,Toronto,37,Willowdale West (37),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,,MT,21,BLUPLE,600.0,STOLEN,2485,"{'type': 'Point', 'coordinates': (-79.41725427, 43.77839991)}"
-2493,24548,GO-20161809705,THEFT UNDER,2016-10-11T00:00:00,2016,October,Tuesday,11,285,13,2016-10-11T00:00:00,2016,October,Tuesday,11,285,18,D32,Toronto,37,Willowdale West (37),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,RC,24,,200.0,STOLEN,2486,"{'type': 'Point', 'coordinates': (-79.41286325, 43.76927425)}"
-2494,24559,GO-20169014676,THEFT UNDER,2016-12-10T00:00:00,2016,December,Saturday,10,345,9,2016-12-14T00:00:00,2016,December,Wednesday,14,349,12,D32,Toronto,37,Willowdale West (37),"Apartment (Rooming House, Condo)",Apartment,OT,POWER 48 ELITE,EL,27,WHI,2500.0,STOLEN,2487,"{'type': 'Point', 'coordinates': (-79.41286325, 43.76927425)}"
-2495,24563,GO-2017211212,THEFT UNDER - BICYCLE,2017-02-02T00:00:00,2017,February,Thursday,2,33,20,2017-02-03T00:00:00,2017,February,Friday,3,34,8,D32,Toronto,37,Willowdale West (37),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,CIRRUS,OT,18,GRY,200.0,STOLEN,2488,"{'type': 'Point', 'coordinates': (-79.41865585, 43.76799853)}"
-2496,24568,GO-20179005696,THEFT UNDER - BICYCLE,2017-05-03T00:00:00,2017,May,Wednesday,3,123,18,2017-05-03T00:00:00,2017,May,Wednesday,3,123,22,D32,Toronto,37,Willowdale West (37),Ttc Subway Station,Transit,OT,,EL,1,,3500.0,STOLEN,2489,"{'type': 'Point', 'coordinates': (-79.41553623, 43.77976942)}"
-2497,24582,GO-20179009671,THEFT UNDER - BICYCLE,2017-07-06T00:00:00,2017,July,Thursday,6,187,20,2017-07-07T00:00:00,2017,July,Friday,7,188,19,D32,Toronto,37,Willowdale West (37),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,6,BLU,200.0,STOLEN,2490,"{'type': 'Point', 'coordinates': (-79.4155682, 43.77454467)}"
-2498,505,GO-2017955008,THEFT FROM MOTOR VEHICLE UNDER,2017-05-29T00:00:00,2017,May,Monday,29,149,22,2017-05-30T00:00:00,2017,May,Tuesday,30,150,12,D32,Toronto,38,Lansing-Westgate (38),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SCOTT,ASPECT,OT,30,ONGSIL,1468.0,STOLEN,2491,"{'type': 'Point', 'coordinates': (-79.43695113, 43.75569191)}"
-2499,1235,GO-20179013180,THEFT UNDER - BICYCLE,2017-07-11T00:00:00,2017,July,Tuesday,11,192,22,2017-08-23T00:00:00,2017,August,Wednesday,23,235,22,D32,Toronto,38,Lansing-Westgate (38),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,MT,21,RED,100.0,STOLEN,2492,"{'type': 'Point', 'coordinates': (-79.41774472, 43.75747594)}"
-2500,3578,GO-20189032383,THEFT UNDER - BICYCLE,2018-09-29T00:00:00,2018,September,Saturday,29,272,19,2018-09-29T00:00:00,2018,September,Saturday,29,272,19,D32,Toronto,38,Lansing-Westgate (38),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,30,,120.0,STOLEN,2493,"{'type': 'Point', 'coordinates': (-79.41533101, 43.76633166)}"
-2501,4278,GO-20199015090,THEFT UNDER,2019-05-14T00:00:00,2019,May,Tuesday,14,134,17,2019-05-15T00:00:00,2019,May,Wednesday,15,135,10,D32,Toronto,38,Lansing-Westgate (38),"Apartment (Rooming House, Condo)",Apartment,NO,INDIE 3M,RG,24,BLK,750.0,STOLEN,2494,"{'type': 'Point', 'coordinates': (-79.41341769, 43.76183785)}"
-2502,4980,GO-20191487398,THEFT UNDER - BICYCLE,2019-08-06T00:00:00,2019,August,Tuesday,6,218,22,2019-08-06T00:00:00,2019,August,Tuesday,6,218,22,D32,Toronto,38,Lansing-Westgate (38),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,ESCAPE,RG,21,BLK,500.0,RECOVERED,2495,"{'type': 'Point', 'coordinates': (-79.41089678000002, 43.76150872)}"
-2503,5809,GO-202043193,THEFT UNDER - BICYCLE,2020-01-01T00:00:00,2020,January,Wednesday,1,1,15,2020-01-07T00:00:00,2020,January,Tuesday,7,7,14,D32,Toronto,38,Lansing-Westgate (38),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,MALAHAT,MT,21,BLK,541.0,STOLEN,2496,"{'type': 'Point', 'coordinates': (-79.43527466, 43.7426455)}"
-2504,5853,GO-20209003158,THEFT UNDER - BICYCLE,2019-12-29T00:00:00,2019,December,Sunday,29,363,10,2020-01-27T00:00:00,2020,January,Monday,27,27,10,D32,Toronto,38,Lansing-Westgate (38),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,21,BLK,625.0,STOLEN,2497,"{'type': 'Point', 'coordinates': (-79.41533101, 43.76633166)}"
-2505,5854,GO-20209003158,THEFT UNDER - BICYCLE,2019-12-29T00:00:00,2019,December,Sunday,29,363,10,2020-01-27T00:00:00,2020,January,Monday,27,27,10,D32,Toronto,38,Lansing-Westgate (38),"Apartment (Rooming House, Condo)",Apartment,GI,,TO,21,SIL,708.0,STOLEN,2498,"{'type': 'Point', 'coordinates': (-79.41533101, 43.76633166)}"
-2506,5862,GO-20209003557,THEFT UNDER - BICYCLE,2020-01-12T00:00:00,2020,January,Sunday,12,12,10,2020-01-29T00:00:00,2020,January,Wednesday,29,29,17,D32,Toronto,38,Lansing-Westgate (38),"Apartment (Rooming House, Condo)",Apartment,MA,,RC,52,,3000.0,STOLEN,2499,"{'type': 'Point', 'coordinates': (-79.4119511, 43.76565724)}"
-2507,5936,GO-20209007287,THEFT UNDER - BICYCLE,2019-01-02T00:00:00,2019,January,Wednesday,2,2,0,2020-02-28T00:00:00,2020,February,Friday,28,59,19,D32,Toronto,38,Lansing-Westgate (38),"Apartment (Rooming House, Condo)",Apartment,OT,CINELLI STARSH,RC,21,BLK,3500.0,STOLEN,2500,"{'type': 'Point', 'coordinates': (-79.41533101, 43.76633166)}"
-2508,6370,GO-20209015273,THEFT UNDER - BICYCLE,2020-06-11T00:00:00,2020,June,Thursday,11,163,11,2020-06-12T00:00:00,2020,June,Friday,12,164,23,D32,Toronto,38,Lansing-Westgate (38),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GT,AGGRESSOR COMP,MT,21,OTH,500.0,STOLEN,2501,"{'type': 'Point', 'coordinates': (-79.41533101, 43.76633166)}"
-2509,7380,GO-20209024539,THEFT UNDER,2020-09-25T00:00:00,2020,September,Friday,25,269,17,2020-09-25T00:00:00,2020,September,Friday,25,269,18,D32,Toronto,38,Lansing-Westgate (38),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,16,BLU,1400.0,STOLEN,2502,"{'type': 'Point', 'coordinates': (-79.41172327, 43.76481417)}"
-2510,8109,GO-20142276510,THEFT UNDER,2014-06-12T00:00:00,2014,June,Thursday,12,163,15,2014-06-12T00:00:00,2014,June,Thursday,12,163,16,D32,Toronto,38,Lansing-Westgate (38),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,TRANCE X2,MT,30,BLKBLU,3100.0,STOLEN,2503,"{'type': 'Point', 'coordinates': (-79.41172327, 43.76481417)}"
-2511,8599,GO-20149005685,THEFT UNDER,2014-08-06T00:00:00,2014,August,Wednesday,6,218,21,2014-08-06T00:00:00,2014,August,Wednesday,6,218,21,D32,Toronto,38,Lansing-Westgate (38),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,MT,24,WHI,1200.0,STOLEN,2504,"{'type': 'Point', 'coordinates': (-79.41172327, 43.76481417)}"
-2512,10495,GO-20151621216,THEFT UNDER,2015-09-16T00:00:00,2015,September,Wednesday,16,259,14,2015-09-19T00:00:00,2015,September,Saturday,19,262,13,D32,Toronto,38,Lansing-Westgate (38),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,HYBRID,EL,18,RED,800.0,STOLEN,2505,"{'type': 'Point', 'coordinates': (-79.41110154, 43.75613764)}"
-2513,11323,GO-20169004622,THEFT UNDER - BICYCLE,2016-05-17T00:00:00,2016,May,Tuesday,17,138,14,2016-05-17T00:00:00,2016,May,Tuesday,17,138,15,D32,Toronto,38,Lansing-Westgate (38),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,RC,20,WHI,700.0,STOLEN,2506,"{'type': 'Point', 'coordinates': (-79.41111496, 43.76235207)}"
-2514,11327,GO-20169004622,THEFT UNDER - BICYCLE,2016-05-17T00:00:00,2016,May,Tuesday,17,138,14,2016-05-17T00:00:00,2016,May,Tuesday,17,138,15,D32,Toronto,38,Lansing-Westgate (38),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,2015 SERIES 1.1,RC,20,WHI,700.0,STOLEN,2507,"{'type': 'Point', 'coordinates': (-79.41111496, 43.76235207)}"
-2515,11381,GO-2016896161,FRAUD OVER,2016-05-10T00:00:00,2016,May,Tuesday,10,131,0,2016-05-24T00:00:00,2016,May,Tuesday,24,145,18,D32,Toronto,38,Lansing-Westgate (38),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SMART BALANCE,H4,SC,1,BLK,450.0,STOLEN,2508,"{'type': 'Point', 'coordinates': (-79.4124375, 43.76035719)}"
-2516,11480,GO-20161005679,THEFT UNDER - BICYCLE,2016-05-19T00:00:00,2016,May,Thursday,19,140,12,2016-06-09T00:00:00,2016,June,Thursday,9,161,22,D32,Toronto,38,Lansing-Westgate (38),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KLEIN,ADROIT,MT,16,PLEBLU,2500.0,STOLEN,2509,"{'type': 'Point', 'coordinates': (-79.4307939, 43.74548275)}"
-2517,11602,GO-20169006145,THEFT UNDER - BICYCLE,2016-06-21T00:00:00,2016,June,Tuesday,21,173,15,2016-06-21T00:00:00,2016,June,Tuesday,21,173,16,D32,Toronto,38,Lansing-Westgate (38),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,GT,MT,21,BLU,800.0,STOLEN,2510,"{'type': 'Point', 'coordinates': (-79.41172327, 43.76481417)}"
-2518,13495,GO-20191047208,THEFT UNDER - BICYCLE,2019-06-06T00:00:00,2019,June,Thursday,6,157,23,2019-06-07T00:00:00,2019,June,Friday,7,158,8,D32,Toronto,38,Lansing-Westgate (38),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,BMX,BM,0,BLK,500.0,STOLEN,2511,"{'type': 'Point', 'coordinates': (-79.42495449000002, 43.75952819)}"
-2519,13587,GO-20209024539,THEFT UNDER,2020-09-25T00:00:00,2020,September,Friday,25,269,17,2020-09-25T00:00:00,2020,September,Friday,25,269,18,D32,Toronto,38,Lansing-Westgate (38),"Apartment (Rooming House, Condo)",Apartment,GI,TALON 3,MT,16,BLU,1400.0,STOLEN,2512,"{'type': 'Point', 'coordinates': (-79.41172327, 43.76481417)}"
-2520,13818,GO-20181731545,THEFT UNDER - BICYCLE,2018-09-17T00:00:00,2018,September,Monday,17,260,12,2018-09-18T00:00:00,2018,September,Tuesday,18,261,17,D32,Toronto,38,Lansing-Westgate (38),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TAKARA,KABUTO,TO,1,BLU,130.0,STOLEN,2513,"{'type': 'Point', 'coordinates': (-79.41533101, 43.76633166)}"
-2521,14666,GO-20171212622,THEFT UNDER,2017-07-06T00:00:00,2017,July,Thursday,6,187,14,2017-07-07T00:00:00,2017,July,Friday,7,188,0,D32,Toronto,38,Lansing-Westgate (38),Bar / Restaurant,Commercial,SURLY,LONG HALL TRUCK,TO,15,BLK,2500.0,STOLEN,2514,"{'type': 'Point', 'coordinates': (-79.41070756, 43.76071381)}"
-2522,14920,GO-20149004026,THEFT UNDER,2014-06-12T00:00:00,2014,June,Thursday,12,163,15,2014-06-12T00:00:00,2014,June,Thursday,12,163,22,D32,Toronto,38,Lansing-Westgate (38),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,TRANCE X2,MT,21,BLK,3000.0,STOLEN,2515,"{'type': 'Point', 'coordinates': (-79.41172327, 43.76481417)}"
-2523,15032,GO-20169010785,THEFT UNDER - BICYCLE,2016-09-19T00:00:00,2016,September,Monday,19,263,21,2016-09-20T00:00:00,2016,September,Tuesday,20,264,14,D32,Toronto,38,Lansing-Westgate (38),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,XBOW,RC,20,WHI,1300.0,STOLEN,2516,"{'type': 'Point', 'coordinates': (-79.4119511, 43.76565724)}"
-2524,16787,GO-20191515403,THEFT UNDER - BICYCLE,2019-08-10T00:00:00,2019,August,Saturday,10,222,17,2019-08-10T00:00:00,2019,August,Saturday,10,222,21,D32,Toronto,38,Lansing-Westgate (38),"Open Areas (Lakes, Parks, Rivers)",Outside,UNKNOWN,,MT,21,WHI,2000.0,STOLEN,2517,"{'type': 'Point', 'coordinates': (-79.43279187000002, 43.75663467)}"
-2525,17934,GO-20142525437,THEFT UNDER,2014-07-18T00:00:00,2014,July,Friday,18,199,21,2014-07-18T00:00:00,2014,July,Friday,18,199,21,D32,Toronto,38,Lansing-Westgate (38),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,ALLEZ,RC,21,MRNYEL,800.0,STOLEN,2518,"{'type': 'Point', 'coordinates': (-79.42353447, 43.74382141)}"
-2526,17956,GO-20159001678,THEFT UNDER,2015-03-31T00:00:00,2015,March,Tuesday,31,90,18,2015-04-02T00:00:00,2015,April,Thursday,2,92,18,D32,Toronto,38,Lansing-Westgate (38),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,200.3,BM,1,GRY,500.0,STOLEN,2519,"{'type': 'Point', 'coordinates': (-79.43620085, 43.74615461)}"
-2527,17987,GO-20159006046,THEFT UNDER,2015-08-19T00:00:00,2015,August,Wednesday,19,231,21,2015-08-19T00:00:00,2015,August,Wednesday,19,231,22,D32,Toronto,38,Lansing-Westgate (38),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,MT,21,RED,350.0,STOLEN,2520,"{'type': 'Point', 'coordinates': (-79.41172327, 43.76481417)}"
-2528,18014,GO-2016437878,THEFT UNDER - BICYCLE,2016-03-13T00:00:00,2016,March,Sunday,13,73,14,2016-03-13T00:00:00,2016,March,Sunday,13,73,15,D32,Toronto,38,Lansing-Westgate (38),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,,OT,6,WHI,,STOLEN,2521,"{'type': 'Point', 'coordinates': (-79.41341769, 43.76183785)}"
-2529,18072,GO-20179007261,THEFT FROM MOTOR VEHICLE UNDER,2017-05-30T00:00:00,2017,May,Tuesday,30,150,0,2017-05-30T00:00:00,2017,May,Tuesday,30,150,18,D32,Toronto,38,Lansing-Westgate (38),"Apartment (Rooming House, Condo)",Apartment,OT,EVOLUTION,MT,21,GRY,3500.0,STOLEN,2522,"{'type': 'Point', 'coordinates': (-79.43695113, 43.75569191)}"
-2530,20062,GO-20191404413,MISCHIEF UNDER,2019-07-25T00:00:00,2019,July,Thursday,25,206,17,2019-07-30T00:00:00,2019,July,Tuesday,30,211,12,D32,Toronto,38,Lansing-Westgate (38),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,DYNO,SHIMANO V0110,MT,18,BLUSIL,,UNKNOWN,2523,"{'type': 'Point', 'coordinates': (-79.4228558, 43.75972932)}"
-2531,20107,GO-20201362364,THEFT UNDER - BICYCLE,2020-07-22T00:00:00,2020,July,Wednesday,22,204,11,2020-07-22T00:00:00,2020,July,Wednesday,22,204,16,D32,Toronto,38,Lansing-Westgate (38),"Private Property Structure (Pool, Shed, Detached Garage)",Other,ZZZ,MEN,MT,10,SIL,1200.0,STOLEN,2524,"{'type': 'Point', 'coordinates': (-79.41593476, 43.75599858000001)}"
-2532,20108,GO-20201362364,THEFT UNDER - BICYCLE,2020-07-22T00:00:00,2020,July,Wednesday,22,204,11,2020-07-22T00:00:00,2020,July,Wednesday,22,204,16,D32,Toronto,38,Lansing-Westgate (38),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,FEMALE,MT,10,WHI,700.0,STOLEN,2525,"{'type': 'Point', 'coordinates': (-79.41593476, 43.75599858000001)}"
-2533,22030,GO-20149005614,THEFT UNDER,2014-08-04T00:00:00,2014,August,Monday,4,216,19,2014-08-04T00:00:00,2014,August,Monday,4,216,21,D32,Toronto,38,Lansing-Westgate (38),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,7,BLK,800.0,STOLEN,2526,"{'type': 'Point', 'coordinates': (-79.41172327, 43.76481417)}"
-2534,22100,GO-20169003408,THEFT UNDER - BICYCLE,2016-04-14T00:00:00,2016,April,Thursday,14,105,7,2016-04-14T00:00:00,2016,April,Thursday,14,105,19,D32,Toronto,38,Lansing-Westgate (38),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,SIRRUS EXPERT S,OT,11,GRY,1500.0,STOLEN,2527,"{'type': 'Point', 'coordinates': (-79.4124375, 43.76035719)}"
-2535,22127,GO-20161571658,THEFT UNDER - BICYCLE,2016-09-04T00:00:00,2016,September,Sunday,4,248,16,2016-09-04T00:00:00,2016,September,Sunday,4,248,19,D32,Toronto,38,Lansing-Westgate (38),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,DA VINCI,UNKNOWN,OT,10,SIL,900.0,STOLEN,2528,"{'type': 'Point', 'coordinates': (-79.4119511, 43.76565724)}"
-2536,22159,GO-20179008949,THEFT FROM MOTOR VEHICLE UNDER,2017-06-26T00:00:00,2017,June,Monday,26,177,6,2017-06-26T00:00:00,2017,June,Monday,26,177,15,D32,Toronto,38,Lansing-Westgate (38),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,LTD PRO 2X 29,MT,18,LGR,1799.0,STOLEN,2529,"{'type': 'Point', 'coordinates': (-79.4124375, 43.76035719)}"
-2537,23199,GO-20189029070,THEFT UNDER - BICYCLE,2018-09-03T00:00:00,2018,September,Monday,3,246,15,2018-09-04T00:00:00,2018,September,Tuesday,4,247,15,D32,Toronto,38,Lansing-Westgate (38),"Group Homes (Non-Profit, Halfway House, Social Agency)",Other,UK,,MT,5,YEL,200.0,STOLEN,2530,"{'type': 'Point', 'coordinates': (-79.42141915, 43.75665339)}"
-2538,23288,GO-20199022590,THEFT UNDER - BICYCLE,2019-07-15T00:00:00,2019,July,Monday,15,196,21,2019-07-16T00:00:00,2019,July,Tuesday,16,197,19,D32,Toronto,38,Lansing-Westgate (38),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,AGRESSOR COMP X,MT,21,BLK,500.0,STOLEN,2531,"{'type': 'Point', 'coordinates': (-79.41172327, 43.76481417)}"
-2539,23330,GO-20209015716,THEFT UNDER - BICYCLE,2020-06-18T00:00:00,2020,June,Thursday,18,170,19,2020-06-19T00:00:00,2020,June,Friday,19,171,13,D32,Toronto,38,Lansing-Westgate (38),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,ROCKHOPPER COMP,MT,18,WHI,1050.0,STOLEN,2532,"{'type': 'Point', 'coordinates': (-79.43279187000002, 43.75663467)}"
-2540,23593,GO-20189028645,THEFT UNDER - BICYCLE,2018-08-30T00:00:00,2018,August,Thursday,30,242,22,2018-08-31T00:00:00,2018,August,Friday,31,243,7,D32,Toronto,38,Lansing-Westgate (38),"Apartment (Rooming House, Condo)",Apartment,CA,,OT,21,GRY,890.0,STOLEN,2533,"{'type': 'Point', 'coordinates': (-79.42538364, 43.75746765)}"
-2541,24464,GO-20159004628,THEFT UNDER,2015-07-16T00:00:00,2015,July,Thursday,16,197,16,2015-07-16T00:00:00,2015,July,Thursday,16,197,18,D32,Toronto,38,Lansing-Westgate (38),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RM,PRESTIGE 30 RSL,RC,20,BLK,2000.0,STOLEN,2534,"{'type': 'Point', 'coordinates': (-79.41341769, 43.76183785)}"
-2542,24490,GO-20159007672,THEFT UNDER,2015-09-20T00:00:00,2015,September,Sunday,20,263,19,2015-09-24T00:00:00,2015,September,Thursday,24,267,8,D32,Toronto,38,Lansing-Westgate (38),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RC,10,BLU,100.0,STOLEN,2535,"{'type': 'Point', 'coordinates': (-79.41051878, 43.75994738)}"
-2543,24512,GO-2016630597,THEFT UNDER - BICYCLE,2016-04-13T00:00:00,2016,April,Wednesday,13,104,6,2016-04-13T00:00:00,2016,April,Wednesday,13,104,19,D32,Toronto,38,Lansing-Westgate (38),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,,MT,27,RED,600.0,STOLEN,2536,"{'type': 'Point', 'coordinates': (-79.41533101, 43.76633166)}"
-2544,24519,GO-20169004622,THEFT UNDER - BICYCLE,2016-05-17T00:00:00,2016,May,Tuesday,17,138,14,2016-05-17T00:00:00,2016,May,Tuesday,17,138,15,D32,Toronto,38,Lansing-Westgate (38),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,2015 SERIES 1.1,RC,20,WHI,700.0,STOLEN,2537,"{'type': 'Point', 'coordinates': (-79.41111496, 43.76235207)}"
-2545,24547,GO-20169010785,THEFT UNDER - BICYCLE,2016-09-19T00:00:00,2016,September,Monday,19,263,21,2016-09-20T00:00:00,2016,September,Tuesday,20,264,14,D32,Toronto,38,Lansing-Westgate (38),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,XBOW,RC,20,WHI,1300.0,STOLEN,2538,"{'type': 'Point', 'coordinates': (-79.4119511, 43.76565724)}"
-2546,2645,GO-20189019761,THEFT UNDER - BICYCLE,2018-06-21T00:00:00,2018,June,Thursday,21,172,16,2018-06-22T00:00:00,2018,June,Friday,22,173,10,D32,Toronto,32,Englemount-Lawrence (32),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,TALON 3,MT,24,BLK,700.0,STOLEN,2539,"{'type': 'Point', 'coordinates': (-79.44176294, 43.73096594)}"
-2547,24504,GO-201631967,THEFT UNDER,2015-12-03T00:00:00,2015,December,Thursday,3,337,10,2016-01-06T00:00:00,2016,January,Wednesday,6,6,15,D32,Toronto,32,Englemount-Lawrence (32),"Apartment (Rooming House, Condo)",Apartment,CCM,,MT,5,,,STOLEN,2540,"{'type': 'Point', 'coordinates': (-79.44398114, 43.71614468)}"
-2548,24271,GO-20189000546,THEFT UNDER - BICYCLE,2017-12-01T00:00:00,2017,December,Friday,1,335,12,2018-01-08T00:00:00,2018,January,Monday,8,8,12,D32,Toronto,36,Newtonbrook West (36),"Apartment (Rooming House, Condo)",Apartment,RM,RC30,MT,20,,800.0,STOLEN,2549,"{'type': 'Point', 'coordinates': (-79.42079703, 43.78636367)}"
-2549,2394,GO-20189016242,THEFT UNDER - BICYCLE,2018-05-16T00:00:00,2018,May,Wednesday,16,136,3,2018-05-25T00:00:00,2018,May,Friday,25,145,15,D32,Toronto,39,Bedford Park-Nortown (39),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,MT,21,GLD,1000.0,STOLEN,2541,"{'type': 'Point', 'coordinates': (-79.41906997, 43.73087319)}"
-2550,23378,GO-20202290284,FRAUD OVER,2020-11-27T00:00:00,2020,November,Friday,27,332,0,2020-12-05T00:00:00,2020,December,Saturday,5,340,14,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,ZZZ,X18001,EL,3,,3199.0,STOLEN,2542,"{'type': 'Point', 'coordinates': (-79.4173091, 43.78706936)}"
-2551,24195,GO-20179011151,THEFT UNDER - BICYCLE,2017-07-26T00:00:00,2017,July,Wednesday,26,207,23,2017-07-27T00:00:00,2017,July,Thursday,27,208,12,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,MT,10,,189.0,STOLEN,2543,"{'type': 'Point', 'coordinates': (-79.42535857, 43.77758939)}"
-2552,24204,GO-20171429688,THEFT UNDER - BICYCLE,2017-08-08T00:00:00,2017,August,Tuesday,8,220,11,2017-08-08T00:00:00,2017,August,Tuesday,8,220,20,D32,Toronto,36,Newtonbrook West (36),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RALEIGH,HYBRID,MT,12,GRY,,STOLEN,2544,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}"
-2553,24211,GO-20179012597,THEFT UNDER - BICYCLE,2017-08-12T00:00:00,2017,August,Saturday,12,224,3,2017-08-16T00:00:00,2017,August,Wednesday,16,228,7,D32,Toronto,36,Newtonbrook West (36),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SC,GTX-2 700C,OT,21,OTH,550.0,STOLEN,2545,"{'type': 'Point', 'coordinates': (-79.42850123000001, 43.79447763)}"
-2554,24232,GO-20179015334,THEFT UNDER,2017-09-15T00:00:00,2017,September,Friday,15,258,8,2017-09-21T00:00:00,2017,September,Thursday,21,264,9,D32,Toronto,36,Newtonbrook West (36),"Apartment (Rooming House, Condo)",Apartment,UK,NORTHROCK XC27,MT,7,,500.0,STOLEN,2546,"{'type': 'Point', 'coordinates': (-79.41739035, 43.779370650000004)}"
-2555,24237,GO-20171741014,THEFT UNDER - BICYCLE,2017-09-17T00:00:00,2017,September,Sunday,17,260,12,2017-09-25T00:00:00,2017,September,Monday,25,268,14,D32,Toronto,36,Newtonbrook West (36),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,MT,24,BLK,339.0,STOLEN,2547,"{'type': 'Point', 'coordinates': (-79.41739035, 43.779370650000004)}"
-2556,24239,GO-20171820459,THEFT UNDER,2017-10-06T00:00:00,2017,October,Friday,6,279,23,2017-10-07T00:00:00,2017,October,Saturday,7,280,16,D32,Toronto,36,Newtonbrook West (36),"Open Areas (Lakes, Parks, Rivers)",Outside,TREK,MOMBA,MT,10,BLKWHI,,STOLEN,2548,"{'type': 'Point', 'coordinates': (-79.42004278, 43.79800044)}"
-2557,24308,GO-20189015383,THEFT UNDER - BICYCLE,2018-05-15T00:00:00,2018,May,Tuesday,15,135,9,2018-05-18T00:00:00,2018,May,Friday,18,138,9,D32,Toronto,36,Newtonbrook West (36),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,SHADOWLANDS,RG,10,BLK,1000.0,STOLEN,2550,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}"
-2558,24311,GO-20189018658,THEFT UNDER - BICYCLE,2018-06-13T00:00:00,2018,June,Wednesday,13,164,8,2018-06-14T00:00:00,2018,June,Thursday,14,165,11,D32,Toronto,36,Newtonbrook West (36),Ttc Subway Station,Transit,SC,TANGO,FO,7,BRN,500.0,STOLEN,2551,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}"
-2559,24344,GO-20189022981,THEFT UNDER - BICYCLE,2018-07-18T00:00:00,2018,July,Wednesday,18,199,19,2018-07-18T00:00:00,2018,July,Wednesday,18,199,21,D32,Toronto,36,Newtonbrook West (36),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,SUGIYAMA FIXI,OT,1,,120.0,STOLEN,2552,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}"
-2560,24419,GO-20149003866,THEFT UNDER,2014-06-06T00:00:00,2014,June,Friday,6,157,1,2014-06-07T00:00:00,2014,June,Saturday,7,158,12,D32,Toronto,36,Newtonbrook West (36),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,TUNDRA,MT,18,ONG,0.0,STOLEN,2553,"{'type': 'Point', 'coordinates': (-79.4394802, 43.78648192)}"
-2561,24430,GO-20142553406,THEFT UNDER,2014-07-12T00:00:00,2014,July,Saturday,12,193,18,2014-07-23T00:00:00,2014,July,Wednesday,23,204,5,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,ALLEZ,OT,20,BLK,3000.0,STOLEN,2554,"{'type': 'Point', 'coordinates': (-79.41938138, 43.79547772)}"
-2562,24435,GO-20142848085,THEFT UNDER,2014-09-05T00:00:00,2014,September,Friday,5,248,9,2014-09-05T00:00:00,2014,September,Friday,5,248,11,D32,Toronto,36,Newtonbrook West (36),Schools During Supervised Activity,Educational,UNKNOWN MAKE,U/K,MT,24,BLK,710.0,STOLEN,2555,"{'type': 'Point', 'coordinates': (-79.42719052, 43.7929646)}"
-2563,24451,GO-20159002912,THEFT UNDER,2015-05-09T00:00:00,2015,May,Saturday,9,129,20,2015-05-19T00:00:00,2015,May,Tuesday,19,139,21,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KO,JAKE,OT,18,ONG,1200.0,STOLEN,2556,"{'type': 'Point', 'coordinates': (-79.41739035, 43.779370650000004)}"
-2564,24472,GO-20151342021,THEFT UNDER,2015-07-31T00:00:00,2015,July,Friday,31,212,20,2015-08-05T00:00:00,2015,August,Wednesday,5,217,20,D32,Toronto,36,Newtonbrook West (36),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,AIRWALK IMPERIL,MT,21,GRYGRN,500.0,STOLEN,2557,"{'type': 'Point', 'coordinates': (-79.44208436, 43.79170395)}"
-2565,24545,GO-20169010701,THEFT UNDER - BICYCLE,2016-09-16T00:00:00,2016,September,Friday,16,260,9,2016-09-19T00:00:00,2016,September,Monday,19,263,11,D32,Toronto,36,Newtonbrook West (36),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,RA,DETOUR 3.5,RG,21,BLU,110.0,STOLEN,2558,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}"
-2566,24553,GO-20169013102,THEFT UNDER - BICYCLE,2016-11-01T00:00:00,2016,November,Tuesday,1,306,16,2016-11-07T00:00:00,2016,November,Monday,7,312,16,D32,Toronto,36,Newtonbrook West (36),"Apartment (Rooming House, Condo)",Apartment,GI,,TO,9,,600.0,STOLEN,2559,"{'type': 'Point', 'coordinates': (-79.42423827, 43.77783169)}"
-2567,24573,GO-2017942524,THEFT OVER - BICYCLE,2017-05-26T00:00:00,2017,May,Friday,26,146,11,2017-05-28T00:00:00,2017,May,Sunday,28,148,15,D32,Toronto,36,Newtonbrook West (36),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,ROKH,OT,5,BLKWHI,5000.0,STOLEN,2560,"{'type': 'Point', 'coordinates': (-79.42079703, 43.78636367)}"
-2568,24574,GO-2017942524,THEFT OVER - BICYCLE,2017-05-26T00:00:00,2017,May,Friday,26,146,11,2017-05-28T00:00:00,2017,May,Sunday,28,148,15,D32,Toronto,36,Newtonbrook West (36),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,OT,6,PNK,,STOLEN,2561,"{'type': 'Point', 'coordinates': (-79.42079703, 43.78636367)}"
-2569,24575,GO-2017950220,B&E,2017-05-29T00:00:00,2017,May,Monday,29,149,10,2017-05-29T00:00:00,2017,May,Monday,29,149,18,D32,Toronto,36,Newtonbrook West (36),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,UNKNOWN,MT,0,RED,20.0,STOLEN,2562,"{'type': 'Point', 'coordinates': (-79.4321568, 43.77808869)}"
-2570,24586,GO-20179010532,THEFT UNDER - BICYCLE,2017-07-11T00:00:00,2017,July,Tuesday,11,192,11,2017-07-19T00:00:00,2017,July,Wednesday,19,200,11,D32,Toronto,36,Newtonbrook West (36),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RA,HYBRID,RG,21,GRN,350.0,STOLEN,2563,"{'type': 'Point', 'coordinates': (-79.42331577, 43.79005469)}"
-2571,92,GO-20179002060,THEFT UNDER - BICYCLE,2016-06-02T00:00:00,2016,June,Thursday,2,154,21,2017-02-16T00:00:00,2017,February,Thursday,16,47,21,D32,Toronto,37,Willowdale West (37),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,,MT,30,,550.0,STOLEN,2564,"{'type': 'Point', 'coordinates': (-79.41725427, 43.77839991)}"
-2572,279,GO-20179005239,THEFT OVER - BICYCLE,2017-04-26T00:00:00,2017,April,Wednesday,26,116,17,2017-04-26T00:00:00,2017,April,Wednesday,26,116,18,D32,Toronto,37,Willowdale West (37),Schools During Un-Supervised Activity,Educational,OT,,MT,5,WHI,150.0,STOLEN,2565,"{'type': 'Point', 'coordinates': (-79.41733228, 43.776379250000005)}"
-2573,388,GO-20179006296,THEFT UNDER - BICYCLE,2017-04-27T00:00:00,2017,April,Thursday,27,117,10,2017-05-13T00:00:00,2017,May,Saturday,13,133,22,D32,Toronto,37,Willowdale West (37),"Apartment (Rooming House, Condo)",Apartment,GI,17 GIANT TALON,MT,15,ONG,904.0,STOLEN,2566,"{'type': 'Point', 'coordinates': (-79.41725427, 43.77839991)}"
-2574,583,GO-20171030741,THEFT UNDER - BICYCLE,2017-05-28T00:00:00,2017,May,Sunday,28,148,10,2017-06-12T00:00:00,2017,June,Monday,12,163,13,D32,Toronto,37,Willowdale West (37),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KHS,,MT,24,REDSIL,1000.0,STOLEN,2567,"{'type': 'Point', 'coordinates': (-79.41524494, 43.77868058)}"
-2575,800,GO-20179009671,THEFT UNDER - BICYCLE,2017-07-06T00:00:00,2017,July,Thursday,6,187,20,2017-07-07T00:00:00,2017,July,Friday,7,188,19,D32,Toronto,37,Willowdale West (37),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,6,BLU,200.0,RECOVERED,2568,"{'type': 'Point', 'coordinates': (-79.4155682, 43.77454467)}"
-2576,806,GO-20171225215,THEFT UNDER - BICYCLE,2017-07-07T00:00:00,2017,July,Friday,7,188,18,2017-07-08T00:00:00,2017,July,Saturday,8,189,21,D32,Toronto,37,Willowdale West (37),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,,OT,10,PLE,15.0,STOLEN,2569,"{'type': 'Point', 'coordinates': (-79.42515777, 43.7689436)}"
-2577,1258,GO-20179013514,THEFT UNDER - BICYCLE,2017-07-29T00:00:00,2017,July,Saturday,29,210,8,2017-08-28T00:00:00,2017,August,Monday,28,240,17,D32,Toronto,37,Willowdale West (37),"Apartment (Rooming House, Condo)",Apartment,SC,,RG,1,YEL,180.0,STOLEN,2570,"{'type': 'Point', 'coordinates': (-79.41656358, 43.7708488)}"
-2578,1490,GO-20179013514,THEFT UNDER - BICYCLE,2017-07-29T00:00:00,2017,July,Saturday,29,210,8,2017-08-28T00:00:00,2017,August,Monday,28,240,17,D32,Toronto,37,Willowdale West (37),"Apartment (Rooming House, Condo)",Apartment,KH,"KRANK ROOK 16""""",RG,1,YEL,160.0,STOLEN,2571,"{'type': 'Point', 'coordinates': (-79.41656358, 43.7708488)}"
-2579,1632,GO-20179016905,THEFT UNDER,2017-10-06T00:00:00,2017,October,Friday,6,279,17,2017-10-10T00:00:00,2017,October,Tuesday,10,283,22,D32,Toronto,37,Willowdale West (37),"Apartment (Rooming House, Condo)",Apartment,OT,MOUNTAIN,MT,21,BLK,800.0,STOLEN,2572,"{'type': 'Point', 'coordinates': (-79.41553821, 43.7748912)}"
-2580,1721,GO-20179017916,THEFT UNDER - BICYCLE,2017-09-02T00:00:00,2017,September,Saturday,2,245,22,2017-10-23T00:00:00,2017,October,Monday,23,296,22,D32,Toronto,37,Willowdale West (37),"Apartment (Rooming House, Condo)",Apartment,SC,TESLIN 2.4,RG,21,RED,404.0,STOLEN,2573,"{'type': 'Point', 'coordinates': (-79.41553821, 43.7748912)}"
-2581,2329,GO-20189015218,THEFT UNDER - BICYCLE,2018-05-16T00:00:00,2018,May,Wednesday,16,136,20,2018-05-16T00:00:00,2018,May,Wednesday,16,136,20,D32,Toronto,37,Willowdale West (37),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,,MT,10,BLK,200.0,STOLEN,2574,"{'type': 'Point', 'coordinates': (-79.43141337, 43.76755684)}"
-2582,2794,GO-20189021779,THEFT UNDER - BICYCLE,2018-07-09T00:00:00,2018,July,Monday,9,190,18,2018-07-09T00:00:00,2018,July,Monday,9,190,19,D32,Toronto,37,Willowdale West (37),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RA,SUMMIT,MT,10,SIL,350.0,STOLEN,2575,"{'type': 'Point', 'coordinates': (-79.44063916, 43.7727692)}"
-2583,2468,GO-20189017474,THEFT UNDER - BICYCLE,2018-05-24T00:00:00,2018,May,Thursday,24,144,23,2018-06-05T00:00:00,2018,June,Tuesday,5,156,14,D32,Toronto,39,Bedford Park-Nortown (39),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,,RG,21,BLU,140.0,STOLEN,2576,"{'type': 'Point', 'coordinates': (-79.43331147000002, 43.73470417)}"
-2584,3350,GO-20189028413,THEFT UNDER - BICYCLE,2018-08-15T00:00:00,2018,August,Wednesday,15,227,19,2018-08-29T00:00:00,2018,August,Wednesday,29,241,11,D32,Toronto,37,Willowdale West (37),"Apartment (Rooming House, Condo)",Apartment,UK,SWIFT SRFYT1671,FO,7,BLK,240.0,STOLEN,2577,"{'type': 'Point', 'coordinates': (-79.41286325, 43.76927425)}"
-2585,24560,GO-20162278040,THEFT UNDER - BICYCLE,2016-12-20T00:00:00,2016,December,Tuesday,20,355,6,2016-12-24T00:00:00,2016,December,Saturday,24,359,19,D32,Toronto,32,Englemount-Lawrence (32),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,EL,22,,2000.0,STOLEN,2578,"{'type': 'Point', 'coordinates': (-79.44098195, 43.72012757)}"
-2586,4455,GO-20199018157,THEFT UNDER,2019-06-11T00:00:00,2019,June,Tuesday,11,162,4,2019-06-11T00:00:00,2019,June,Tuesday,11,162,17,D32,Toronto,37,Willowdale West (37),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,MT,21,DBL,500.0,STOLEN,2579,"{'type': 'Point', 'coordinates': (-79.44089248, 43.76546485)}"
-2587,5175,GO-20199027815,THEFT UNDER,2019-08-26T00:00:00,2019,August,Monday,26,238,10,2019-08-27T00:00:00,2019,August,Tuesday,27,239,0,D32,Toronto,37,Willowdale West (37),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,XC29,MT,21,BLK,485.0,STOLEN,2580,"{'type': 'Point', 'coordinates': (-79.41627924, 43.768523390000006)}"
-2588,5717,GO-20199038341,THEFT UNDER - BICYCLE,2019-11-07T00:00:00,2019,November,Thursday,7,311,22,2019-11-21T00:00:00,2019,November,Thursday,21,325,15,D32,Toronto,37,Willowdale West (37),"Apartment (Rooming House, Condo)",Apartment,OT,SPECIALIZED LAN,RG,56,DBL,1199.0,STOLEN,2581,"{'type': 'Point', 'coordinates': (-79.41725427, 43.77839991)}"
-2589,3308,GO-20189027735,THEFT FROM MOTOR VEHICLE UNDER,2018-08-24T00:00:00,2018,August,Friday,24,236,3,2018-08-24T00:00:00,2018,August,Friday,24,236,12,D13,Toronto,32,Englemount-Lawrence (32),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,,RG,21,BLK,1000.0,STOLEN,2582,"{'type': 'Point', 'coordinates': (-79.43478424000001, 43.71652855)}"
-2590,5779,GO-20199041761,THEFT UNDER - BICYCLE,2019-12-16T00:00:00,2019,December,Monday,16,350,17,2019-12-22T00:00:00,2019,December,Sunday,22,356,18,D32,Toronto,37,Willowdale West (37),"Apartment (Rooming House, Condo)",Apartment,SP,RIDGERUNNER,MT,18,GLD,100.0,STOLEN,2583,"{'type': 'Point', 'coordinates': (-79.41524494, 43.77868058)}"
-2591,6035,GO-20209010652,THEFT UNDER,2020-04-05T00:00:00,2020,April,Sunday,5,96,18,2020-04-07T00:00:00,2020,April,Tuesday,7,98,19,D32,Toronto,37,Willowdale West (37),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,700C,RG,70,BLU,325.0,STOLEN,2584,"{'type': 'Point', 'coordinates': (-79.41306905, 43.77013909)}"
-2592,6036,GO-20209010652,THEFT UNDER,2020-04-05T00:00:00,2020,April,Sunday,5,96,18,2020-04-07T00:00:00,2020,April,Tuesday,7,98,19,D32,Toronto,37,Willowdale West (37),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,700C,RG,71,RED,494.0,STOLEN,2585,"{'type': 'Point', 'coordinates': (-79.41306905, 43.77013909)}"
-2593,6335,GO-20209014880,THEFT UNDER - BICYCLE,2020-06-08T00:00:00,2020,June,Monday,8,160,14,2020-06-08T00:00:00,2020,June,Monday,8,160,18,D32,Toronto,37,Willowdale West (37),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,,,MT,18,BLK,250.0,STOLEN,2586,"{'type': 'Point', 'coordinates': (-79.4148084, 43.7769469)}"
-2594,6363,GO-20209015142,THEFT UNDER - BICYCLE,2020-06-05T00:00:00,2020,June,Friday,5,157,17,2020-06-11T00:00:00,2020,June,Thursday,11,163,14,D32,Toronto,37,Willowdale West (37),"Apartment (Rooming House, Condo)",Apartment,GI,,OT,16,BLK,790.0,STOLEN,2587,"{'type': 'Point', 'coordinates': (-79.41725427, 43.77839991)}"
-2595,6851,GO-20201450300,ROBBERY - MUGGING,2020-08-03T00:00:00,2020,August,Monday,3,216,1,2020-08-04T00:00:00,2020,August,Tuesday,4,217,2,D32,Toronto,37,Willowdale West (37),Bar / Restaurant,Commercial,SCHWINN,,RG,0,BLK,,STOLEN,2588,"{'type': 'Point', 'coordinates': (-79.41526307, 43.77874837)}"
-2596,7159,GO-20209022094,THEFT FROM MOTOR VEHICLE UNDER,2020-08-26T00:00:00,2020,August,Wednesday,26,239,20,2020-09-02T00:00:00,2020,September,Wednesday,2,246,12,D32,Toronto,37,Willowdale West (37),"Apartment (Rooming House, Condo)",Apartment,UK,19 RH MENS SPOR,MT,21,GRY,800.0,STOLEN,2589,"{'type': 'Point', 'coordinates': (-79.41553821, 43.7748912)}"
-2597,7204,GO-20209022592,THEFT UNDER - BICYCLE,2020-09-05T00:00:00,2020,September,Saturday,5,249,19,2020-09-08T00:00:00,2020,September,Tuesday,8,252,19,D32,Toronto,37,Willowdale West (37),"Apartment (Rooming House, Condo)",Apartment,GT,,MT,18,BLU,599.0,STOLEN,2590,"{'type': 'Point', 'coordinates': (-79.41725427, 43.77839991)}"
-2598,7259,GO-20201754739,THEFT UNDER,2020-09-15T00:00:00,2020,September,Tuesday,15,259,3,2020-09-16T00:00:00,2020,September,Wednesday,16,260,12,D32,Toronto,37,Willowdale West (37),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,MOUNTAIN BIKE,MT,10,BLK,3000.0,STOLEN,2591,"{'type': 'Point', 'coordinates': (-79.43141337, 43.76755684)}"
-2599,8457,GO-20149005129,THEFT UNDER,2014-07-16T00:00:00,2014,July,Wednesday,16,197,18,2014-07-19T00:00:00,2014,July,Saturday,19,200,13,D32,Toronto,37,Willowdale West (37),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,X2 Z013,MT,18,BLU,400.0,STOLEN,2592,"{'type': 'Point', 'coordinates': (-79.41240726, 43.76747172)}"
-2600,9001,GO-20143020137,THEFT UNDER,2014-09-19T00:00:00,2014,September,Friday,19,262,20,2014-10-01T00:00:00,2014,October,Wednesday,1,274,10,D32,Toronto,37,Willowdale West (37),"Open Areas (Lakes, Parks, Rivers)",Outside,SUN,TOURS,MT,8,BLU,600.0,STOLEN,2593,"{'type': 'Point', 'coordinates': (-79.41240726, 43.76747172)}"
-2601,9713,GO-20159003282,THEFT UNDER,2015-06-02T00:00:00,2015,June,Tuesday,2,153,8,2015-06-02T00:00:00,2015,June,Tuesday,2,153,21,D32,Toronto,37,Willowdale West (37),Schools During Un-Supervised Activity,Educational,GT,AVALANCHE 2.0,MT,24,BLU,500.0,STOLEN,2594,"{'type': 'Point', 'coordinates': (-79.42713751, 43.76947595)}"
-2602,10064,GO-20159004809,THEFT UNDER,2015-07-21T00:00:00,2015,July,Tuesday,21,202,15,2015-07-21T00:00:00,2015,July,Tuesday,21,202,18,D32,Toronto,37,Willowdale West (37),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MI,ARIEL DISC 2015,RG,8,TRQ,800.0,STOLEN,2595,"{'type': 'Point', 'coordinates': (-79.41286325, 43.76927425)}"
-2603,10186,GO-20159005404,THEFT UNDER,2015-08-04T00:00:00,2015,August,Tuesday,4,216,16,2015-08-04T00:00:00,2015,August,Tuesday,4,216,17,D32,Toronto,37,Willowdale West (37),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,7.1 FX,RG,5,BLK,900.0,STOLEN,2596,"{'type': 'Point', 'coordinates': (-79.41286325, 43.76927425)}"
-2604,10245,GO-20151369081,THEFT UNDER,2015-08-09T00:00:00,2015,August,Sunday,9,221,23,2015-08-10T00:00:00,2015,August,Monday,10,222,10,D32,Toronto,37,Willowdale West (37),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,CHALLENGER RSV,EL,1,REDBLK,1900.0,STOLEN,2597,"{'type': 'Point', 'coordinates': (-79.44209833, 43.77037563)}"
-2605,10357,GO-20159006438,THEFT UNDER,2015-08-21T00:00:00,2015,August,Friday,21,233,8,2015-08-27T00:00:00,2015,August,Thursday,27,239,15,D32,Toronto,37,Willowdale West (37),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,CITY,TO,10,GRN,0.0,STOLEN,2598,"{'type': 'Point', 'coordinates': (-79.41240726, 43.76747172)}"
-2606,10478,GO-20151610370,THEFT UNDER,2015-09-17T00:00:00,2015,September,Thursday,17,260,10,2015-09-17T00:00:00,2015,September,Thursday,17,260,18,D32,Toronto,37,Willowdale West (37),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,HUFFY,,RG,18,GRYBLU,100.0,STOLEN,2599,"{'type': 'Point', 'coordinates': (-79.41286325, 43.76927425)}"
-2607,10956,GO-20169000943,THEFT UNDER,2016-01-25T00:00:00,2016,January,Monday,25,25,1,2016-01-29T00:00:00,2016,January,Friday,29,29,10,D32,Toronto,37,Willowdale West (37),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,RC,9,GRY,1300.0,STOLEN,2600,"{'type': 'Point', 'coordinates': (-79.41725427, 43.77839991)}"
-2608,10957,GO-20169000943,THEFT UNDER,2016-01-25T00:00:00,2016,January,Monday,25,25,1,2016-01-29T00:00:00,2016,January,Friday,29,29,10,D32,Toronto,37,Willowdale West (37),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,,RC,11,BLK,1700.0,STOLEN,2601,"{'type': 'Point', 'coordinates': (-79.41725427, 43.77839991)}"
-2609,11181,GO-2016695430,THEFT UNDER - BICYCLE,2016-04-23T00:00:00,2016,April,Saturday,23,114,13,2016-04-23T00:00:00,2016,April,Saturday,23,114,20,D32,Toronto,37,Willowdale West (37),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,RG,24,,650.0,STOLEN,2602,"{'type': 'Point', 'coordinates': (-79.41627924, 43.768523390000006)}"
-2610,11189,GO-20169003756,THEFT UNDER - BICYCLE,2016-04-23T00:00:00,2016,April,Saturday,23,114,11,2016-04-23T00:00:00,2016,April,Saturday,23,114,18,D32,Toronto,37,Willowdale West (37),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,GI,INNOVA,MT,24,WHI,1500.0,STOLEN,2603,"{'type': 'Point', 'coordinates': (-79.41240726, 43.76747172)}"
-2611,11263,GO-20169004214,THEFT UNDER - BICYCLE,2016-05-05T00:00:00,2016,May,Thursday,5,126,9,2016-05-06T00:00:00,2016,May,Friday,6,127,11,D32,Toronto,37,Willowdale West (37),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,TR,7.2,MT,24,BLK,675.0,STOLEN,2604,"{'type': 'Point', 'coordinates': (-79.41240726, 43.76747172)}"
-2612,11302,GO-2016823327,THEFT UNDER - BICYCLE,2016-05-13T00:00:00,2016,May,Friday,13,134,13,2016-05-13T00:00:00,2016,May,Friday,13,134,14,D32,Toronto,37,Willowdale West (37),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,MT,0,,500.0,STOLEN,2605,"{'type': 'Point', 'coordinates': (-79.41240726, 43.76747172)}"
-2613,11370,GO-2016903344,THEFT UNDER - BICYCLE,2016-05-21T00:00:00,2016,May,Saturday,21,142,18,2016-05-25T00:00:00,2016,May,Wednesday,25,146,20,D32,Toronto,37,Willowdale West (37),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CANNONDALE,F4,MT,21,BRN,1000.0,STOLEN,2606,"{'type': 'Point', 'coordinates': (-79.41725427, 43.77839991)}"
-2614,11485,GO-20161010119,THEFT UNDER - BICYCLE,2016-06-10T00:00:00,2016,June,Friday,10,162,10,2016-06-10T00:00:00,2016,June,Friday,10,162,15,D32,Toronto,37,Willowdale West (37),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,DIADORA,UNKNOWN,BM,6,BLK,250.0,STOLEN,2607,"{'type': 'Point', 'coordinates': (-79.41240726, 43.76747172)}"
-2615,11528,GO-20169005780,THEFT UNDER - BICYCLE,2016-06-10T00:00:00,2016,June,Friday,10,162,7,2016-06-14T00:00:00,2016,June,Tuesday,14,166,15,D32,Toronto,37,Willowdale West (37),"Apartment (Rooming House, Condo)",Apartment,CC,SL 2.0,MT,24,BLK,799.0,STOLEN,2608,"{'type': 'Point', 'coordinates': (-79.41725427, 43.77839991)}"
-2616,11556,GO-20161051814,THEFT UNDER - BICYCLE,2016-06-16T00:00:00,2016,June,Thursday,16,168,15,2016-06-16T00:00:00,2016,June,Thursday,16,168,20,D32,Toronto,37,Willowdale West (37),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UNKNOWN MAKE,SIRRUS ELITE,MT,21,GRY,1004.0,STOLEN,2609,"{'type': 'Point', 'coordinates': (-79.41286325, 43.76927425)}"
-2617,11621,GO-20169006269,THEFT UNDER,2016-06-21T00:00:00,2016,June,Tuesday,21,173,15,2016-06-21T00:00:00,2016,June,Tuesday,21,173,19,D32,Toronto,37,Willowdale West (37),Schools During Supervised Activity,Educational,OT,,OT,1,,250.0,STOLEN,2610,"{'type': 'Point', 'coordinates': (-79.42713751, 43.76947595)}"
-2618,9958,GO-20151147286,B&E,2015-07-05T00:00:00,2015,July,Sunday,5,186,17,2015-07-07T00:00:00,2015,July,Tuesday,7,188,22,D33,Toronto,45,Parkwoods-Donalda (45),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,04SW2611B,OT,21,BLU,150.0,STOLEN,2611,"{'type': 'Point', 'coordinates': (-79.33790741, 43.74827305)}"
-2619,11884,GO-20169007659,THEFT UNDER - BICYCLE,2016-07-24T00:00:00,2016,July,Sunday,24,206,3,2016-07-24T00:00:00,2016,July,Sunday,24,206,8,D32,Toronto,37,Willowdale West (37),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,SUPERTREK,MT,21,SIL,300.0,STOLEN,2612,"{'type': 'Point', 'coordinates': (-79.42810691, 43.77160985)}"
-2620,12052,GO-20169008534,THEFT UNDER,2016-08-03T00:00:00,2016,August,Wednesday,3,216,15,2016-08-10T00:00:00,2016,August,Wednesday,10,223,16,D32,Toronto,37,Willowdale West (37),"Apartment (Rooming House, Condo)",Apartment,OT,2012 VENTURA VI,RC,10,PLE,1000.0,STOLEN,2613,"{'type': 'Point', 'coordinates': (-79.4148084, 43.7769469)}"
-2621,12053,GO-20169008534,THEFT UNDER,2016-08-03T00:00:00,2016,August,Wednesday,3,216,15,2016-08-10T00:00:00,2016,August,Wednesday,10,223,16,D32,Toronto,37,Willowdale West (37),"Apartment (Rooming House, Condo)",Apartment,OT,VENTURA,RC,10,BLK,1000.0,STOLEN,2614,"{'type': 'Point', 'coordinates': (-79.4148084, 43.7769469)}"
-2622,12086,GO-20169008725,THEFT UNDER - BICYCLE,2016-08-14T00:00:00,2016,August,Sunday,14,227,10,2016-08-14T00:00:00,2016,August,Sunday,14,227,12,D32,Toronto,37,Willowdale West (37),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,21,WHI,500.0,STOLEN,2615,"{'type': 'Point', 'coordinates': (-79.41286325, 43.76927425)}"
-2623,12105,GO-20169008818,THEFT UNDER - BICYCLE,2016-08-08T00:00:00,2016,August,Monday,8,221,19,2016-08-15T00:00:00,2016,August,Monday,15,228,19,D32,Toronto,37,Willowdale West (37),"Apartment (Rooming House, Condo)",Apartment,GI,ALIGHT BK 16,OT,20,BLK,800.0,STOLEN,2616,"{'type': 'Point', 'coordinates': (-79.41725427, 43.77839991)}"
-2624,12187,GO-20161507678,THEFT UNDER - BICYCLE,2016-08-20T00:00:00,2016,August,Saturday,20,233,19,2016-08-25T00:00:00,2016,August,Thursday,25,238,18,D32,Toronto,37,Willowdale West (37),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,VFR 3,OT,18,BLK,420.0,STOLEN,2617,"{'type': 'Point', 'coordinates': (-79.41725427, 43.77839991)}"
-2625,12253,GO-20169009927,THEFT UNDER - BICYCLE,2016-09-03T00:00:00,2016,September,Saturday,3,247,1,2016-09-03T00:00:00,2016,September,Saturday,3,247,19,D32,Toronto,37,Willowdale West (37),"Apartment (Rooming House, Condo)",Apartment,OT,DYNAMIC 500,MT,30,ONG,1200.0,STOLEN,2618,"{'type': 'Point', 'coordinates': (-79.41286325, 43.76927425)}"
-2626,12254,GO-20169009927,THEFT UNDER - BICYCLE,2016-09-03T00:00:00,2016,September,Saturday,3,247,1,2016-09-03T00:00:00,2016,September,Saturday,3,247,19,D32,Toronto,37,Willowdale West (37),"Apartment (Rooming House, Condo)",Apartment,OT,DYNAMIC 650,MT,30,YEL,1200.0,STOLEN,2619,"{'type': 'Point', 'coordinates': (-79.41286325, 43.76927425)}"
-2627,12335,GO-20169010397,THEFT UNDER - BICYCLE,2016-09-13T00:00:00,2016,September,Tuesday,13,257,8,2016-09-13T00:00:00,2016,September,Tuesday,13,257,22,D32,Toronto,37,Willowdale West (37),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RM,ROCKY MOUNTAIN,RG,10,SIL,0.0,STOLEN,2620,"{'type': 'Point', 'coordinates': (-79.41240726, 43.76747172)}"
-2628,12467,GO-20161717814,THEFT UNDER - BICYCLE,2016-09-27T00:00:00,2016,September,Tuesday,27,271,10,2016-09-27T00:00:00,2016,September,Tuesday,27,271,11,D32,Toronto,37,Willowdale West (37),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OPUS,,OT,24,BLK,1000.0,STOLEN,2621,"{'type': 'Point', 'coordinates': (-79.41240726, 43.76747172)}"
-2629,12475,GO-20169011212,THEFT UNDER - BICYCLE,2016-09-27T00:00:00,2016,September,Tuesday,27,271,14,2016-09-27T00:00:00,2016,September,Tuesday,27,271,20,D32,Toronto,37,Willowdale West (37),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,CA,,OT,24,GRY,600.0,STOLEN,2622,"{'type': 'Point', 'coordinates': (-79.41240726, 43.76747172)}"
-2630,12626,GO-20169012115,THEFT UNDER - BICYCLE,2016-10-15T00:00:00,2016,October,Saturday,15,289,16,2016-10-15T00:00:00,2016,October,Saturday,15,289,22,D32,Toronto,37,Willowdale West (37),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,TR,TREK 7.4 FX WSD,RG,9,SIL,1000.0,STOLEN,2623,"{'type': 'Point', 'coordinates': (-79.41240726, 43.76747172)}"
-2631,12771,GO-20169013496,THEFT UNDER - BICYCLE,2016-11-15T00:00:00,2016,November,Tuesday,15,320,6,2016-11-16T00:00:00,2016,November,Wednesday,16,321,18,D32,Toronto,37,Willowdale West (37),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,RG,7,ONG,300.0,STOLEN,2624,"{'type': 'Point', 'coordinates': (-79.41286325, 43.76927425)}"
-2632,13515,GO-20199026353,THEFT UNDER - BICYCLE,2019-08-15T00:00:00,2019,August,Thursday,15,227,13,2019-08-15T00:00:00,2019,August,Thursday,15,227,15,D32,Toronto,37,Willowdale West (37),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,ROAD BIKE,RC,1,WHI,2000.0,STOLEN,2625,"{'type': 'Point', 'coordinates': (-79.41627924, 43.768523390000006)}"
-2633,13826,GO-20181745977,THEFT UNDER - BICYCLE,2018-09-20T00:00:00,2018,September,Thursday,20,263,17,2018-09-20T00:00:00,2018,September,Thursday,20,263,20,D32,Toronto,37,Willowdale West (37),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,700C,RG,21,REDWHI,400.0,STOLEN,2626,"{'type': 'Point', 'coordinates': (-79.41286325, 43.76927425)}"
-2634,14750,GO-20179022271,THEFT UNDER,2017-12-02T00:00:00,2017,December,Saturday,2,336,4,2017-12-15T00:00:00,2017,December,Friday,15,349,10,D32,Toronto,37,Willowdale West (37),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,1,GRY,250.0,STOLEN,2627,"{'type': 'Point', 'coordinates': (-79.41725427, 43.77839991)}"
-2635,14751,GO-20179022271,THEFT UNDER,2017-12-02T00:00:00,2017,December,Saturday,2,336,4,2017-12-15T00:00:00,2017,December,Friday,15,349,10,D32,Toronto,37,Willowdale West (37),"Apartment (Rooming House, Condo)",Apartment,GT,,MT,24,ONG,450.0,STOLEN,2628,"{'type': 'Point', 'coordinates': (-79.41725427, 43.77839991)}"
-2636,14799,GO-20189018318,THEFT UNDER - BICYCLE,2018-06-06T00:00:00,2018,June,Wednesday,6,157,9,2018-06-12T00:00:00,2018,June,Tuesday,12,163,9,D32,Toronto,37,Willowdale West (37),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,2013 DEFY 2,RC,10,SIL,1075.0,STOLEN,2629,"{'type': 'Point', 'coordinates': (-79.42161419, 43.77495403)}"
-2637,14970,GO-20159005722,THEFT UNDER,2015-08-12T00:00:00,2015,August,Wednesday,12,224,14,2015-08-13T00:00:00,2015,August,Thursday,13,225,1,D32,Toronto,37,Willowdale West (37),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,CROSSTRAIL,OT,24,BLK,650.0,STOLEN,2630,"{'type': 'Point', 'coordinates': (-79.41240726, 43.76747172)}"
-2638,14972,GO-20159005959,THEFT UNDER,2015-08-17T00:00:00,2015,August,Monday,17,229,15,2015-08-18T00:00:00,2015,August,Tuesday,18,230,7,D32,Toronto,37,Willowdale West (37),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,GI,,RG,18,BLU,400.0,STOLEN,2631,"{'type': 'Point', 'coordinates': (-79.41286325, 43.76927425)}"
-2639,14993,GO-20169003882,THEFT UNDER - BICYCLE,2016-04-27T00:00:00,2016,April,Wednesday,27,118,17,2016-04-27T00:00:00,2016,April,Wednesday,27,118,19,D32,Toronto,37,Willowdale West (37),"Group Homes (Non-Profit, Halfway House, Social Agency)",Other,SC,,MT,24,,500.0,STOLEN,2632,"{'type': 'Point', 'coordinates': (-79.41240726, 43.76747172)}"
-2640,14994,GO-20169004046,THEFT UNDER - BICYCLE,2016-03-14T00:00:00,2016,March,Monday,14,74,19,2016-05-02T00:00:00,2016,May,Monday,2,123,12,D32,Toronto,37,Willowdale West (37),"Apartment (Rooming House, Condo)",Apartment,TR,MARLIN 5,MT,21,YEL,500.0,STOLEN,2633,"{'type': 'Point', 'coordinates': (-79.41725427, 43.77839991)}"
-2641,15010,GO-20169007695,THEFT UNDER - BICYCLE,2016-07-24T00:00:00,2016,July,Sunday,24,206,20,2016-07-25T00:00:00,2016,July,Monday,25,207,0,D32,Toronto,37,Willowdale West (37),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE,RG,24,BLU,600.0,STOLEN,2634,"{'type': 'Point', 'coordinates': (-79.41286325, 43.76927425)}"
-2642,15023,GO-20169009230,THEFT UNDER - BICYCLE,2016-08-10T00:00:00,2016,August,Wednesday,10,223,19,2016-08-22T00:00:00,2016,August,Monday,22,235,11,D32,Toronto,37,Willowdale West (37),"Apartment (Rooming House, Condo)",Apartment,GT,AGRESSOR 3.0,MT,21,BLK,450.0,STOLEN,2635,"{'type': 'Point', 'coordinates': (-79.41725427, 43.77839991)}"
-2643,15028,GO-20169010437,THEFT UNDER - BICYCLE,2016-09-12T00:00:00,2016,September,Monday,12,256,19,2016-09-14T00:00:00,2016,September,Wednesday,14,258,14,D32,Toronto,37,Willowdale West (37),"Apartment (Rooming House, Condo)",Apartment,OT,SIRRUS SPECIALI,RG,99,BLK,500.0,STOLEN,2636,"{'type': 'Point', 'coordinates': (-79.41286325, 43.76927425)}"
-2644,16791,GO-20199027815,THEFT UNDER,2019-08-26T00:00:00,2019,August,Monday,26,238,10,2019-08-27T00:00:00,2019,August,Tuesday,27,239,0,D32,Toronto,37,Willowdale West (37),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,XC29,MT,21,BLK,485.0,STOLEN,2637,"{'type': 'Point', 'coordinates': (-79.41627924, 43.768523390000006)}"
-2645,16798,GO-20199034691,THEFT UNDER,2019-10-12T00:00:00,2019,October,Saturday,12,285,1,2019-10-21T00:00:00,2019,October,Monday,21,294,16,D32,Toronto,37,Willowdale West (37),"Apartment (Rooming House, Condo)",Apartment,OT,SIRRUS ELITE,OT,10,GRY,1849.0,STOLEN,2638,"{'type': 'Point', 'coordinates': (-79.4148084, 43.7769469)}"
-2646,4460,GO-20199018250,THEFT UNDER - BICYCLE,2019-06-11T00:00:00,2019,June,Tuesday,11,162,20,2019-06-11T00:00:00,2019,June,Tuesday,11,162,20,D32,Toronto,32,Englemount-Lawrence (32),Ttc Subway Station,Transit,UK,SUPERCYCLE 1800,MT,6,BLK,126.0,STOLEN,2639,"{'type': 'Point', 'coordinates': (-79.44563386, 43.72391605)}"
-2647,4535,GO-20199019157,THEFT UNDER,2019-06-17T00:00:00,2019,June,Monday,17,168,18,2019-06-18T00:00:00,2019,June,Tuesday,18,169,18,D32,Toronto,32,Englemount-Lawrence (32),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,SC,1,,100.0,STOLEN,2640,"{'type': 'Point', 'coordinates': (-79.43383489, 43.72407382)}"
-2648,6018,GO-2020665264,THEFT UNDER,2020-03-24T00:00:00,2020,March,Tuesday,24,84,10,2020-04-05T00:00:00,2020,April,Sunday,5,96,18,D32,Toronto,32,Englemount-Lawrence (32),"Private Property Structure (Pool, Shed, Detached Garage)",Other,ZZZ,,MT,0,LGR,500.0,STOLEN,2641,"{'type': 'Point', 'coordinates': (-79.44098195, 43.72012757)}"
-2649,6019,GO-2020665264,THEFT UNDER,2020-03-24T00:00:00,2020,March,Tuesday,24,84,10,2020-04-05T00:00:00,2020,April,Sunday,5,96,18,D32,Toronto,32,Englemount-Lawrence (32),"Private Property Structure (Pool, Shed, Detached Garage)",Other,ZZZ,,RG,0,BLUPNK,230.0,STOLEN,2642,"{'type': 'Point', 'coordinates': (-79.44098195, 43.72012757)}"
-2650,6020,GO-2020665264,THEFT UNDER,2020-03-24T00:00:00,2020,March,Tuesday,24,84,10,2020-04-05T00:00:00,2020,April,Sunday,5,96,18,D32,Toronto,32,Englemount-Lawrence (32),"Private Property Structure (Pool, Shed, Detached Garage)",Other,ZZZ,,RG,0,RED,90.0,STOLEN,2643,"{'type': 'Point', 'coordinates': (-79.44098195, 43.72012757)}"
-2651,6828,GO-20201432352,B&E,2020-08-01T00:00:00,2020,August,Saturday,1,214,4,2020-08-01T00:00:00,2020,August,Saturday,1,214,9,D13,Toronto,32,Englemount-Lawrence (32),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,ROCKHOPPER,MT,0,YEL,300.0,STOLEN,2644,"{'type': 'Point', 'coordinates': (-79.44099953, 43.71598468)}"
-2652,6836,GO-20201432352,B&E,2020-08-01T00:00:00,2020,August,Saturday,1,214,4,2020-08-01T00:00:00,2020,August,Saturday,1,214,9,D13,Toronto,32,Englemount-Lawrence (32),"Apartment (Rooming House, Condo)",Apartment,GIANT,REVOLT 1,OT,10,GRY,1699.0,STOLEN,2645,"{'type': 'Point', 'coordinates': (-79.44099953, 43.71598468)}"
-2653,11011,GO-2016326544,THEFT UNDER,2016-02-21T00:00:00,2016,February,Sunday,21,52,12,2016-02-24T00:00:00,2016,February,Wednesday,24,55,10,D33,Toronto,45,Parkwoods-Donalda (45),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CANNONDALE,,MT,21,GRYBLK,1800.0,STOLEN,2646,"{'type': 'Point', 'coordinates': (-79.3317634, 43.75222786)}"
-2654,6837,GO-20201432352,B&E,2020-08-01T00:00:00,2020,August,Saturday,1,214,4,2020-08-01T00:00:00,2020,August,Saturday,1,214,9,D13,Toronto,32,Englemount-Lawrence (32),"Apartment (Rooming House, Condo)",Apartment,GIANT,ROVE,MT,10,BLU,1099.0,STOLEN,2647,"{'type': 'Point', 'coordinates': (-79.44099953, 43.71598468)}"
-2655,6839,GO-20201440605,B&E,2020-08-01T00:00:00,2020,August,Saturday,1,214,4,2020-08-02T00:00:00,2020,August,Sunday,2,215,14,D13,Toronto,32,Englemount-Lawrence (32),"Apartment (Rooming House, Condo)",Apartment,CANNONDALE,BAD BOY,MT,0,BLK,900.0,STOLEN,2648,"{'type': 'Point', 'coordinates': (-79.44099953, 43.71598468)}"
-2656,6840,GO-20201440605,B&E,2020-08-01T00:00:00,2020,August,Saturday,1,214,4,2020-08-02T00:00:00,2020,August,Sunday,2,215,14,D13,Toronto,32,Englemount-Lawrence (32),"Apartment (Rooming House, Condo)",Apartment,CANNONDALE,,MT,0,BLK,550.0,STOLEN,2649,"{'type': 'Point', 'coordinates': (-79.44099953, 43.71598468)}"
-2657,6845,GO-20201441362,B&E,2020-08-01T00:00:00,2020,August,Saturday,1,214,4,2020-08-03T00:00:00,2020,August,Monday,3,216,11,D13,Toronto,32,Englemount-Lawrence (32),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT REVOLT 1,REVOLT 1,MT,0,GRY,1965.0,STOLEN,2650,"{'type': 'Point', 'coordinates': (-79.44099953, 43.71598468)}"
-2658,6846,GO-20201441362,B&E,2020-08-01T00:00:00,2020,August,Saturday,1,214,4,2020-08-03T00:00:00,2020,August,Monday,3,216,11,D13,Toronto,32,Englemount-Lawrence (32),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,ROVE 1,MT,0,BLU,1318.0,STOLEN,2651,"{'type': 'Point', 'coordinates': (-79.44099953, 43.71598468)}"
-2659,6848,GO-20201432352,B&E,2020-08-01T00:00:00,2020,August,Saturday,1,214,4,2020-08-01T00:00:00,2020,August,Saturday,1,214,9,D13,Toronto,32,Englemount-Lawrence (32),"Apartment (Rooming House, Condo)",Apartment,GI,"REVOLT 1, 2020",TO,20,GRY,3709.0,STOLEN,2652,"{'type': 'Point', 'coordinates': (-79.44099953, 43.71598468)}"
-2660,7019,GO-20201574270,THEFT UNDER - BICYCLE,2020-08-21T00:00:00,2020,August,Friday,21,234,2,2020-08-21T00:00:00,2020,August,Friday,21,234,16,D32,Toronto,32,Englemount-Lawrence (32),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,SYNATSE CARBON,RC,21,BLU,4000.0,STOLEN,2653,"{'type': 'Point', 'coordinates': (-79.43711881, 43.71859418)}"
-2661,7023,GO-20209020875,THEFT UNDER - BICYCLE,2020-08-18T00:00:00,2020,August,Tuesday,18,231,12,2020-08-21T00:00:00,2020,August,Friday,21,234,12,D32,Toronto,32,Englemount-Lawrence (32),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,18,BLU,1500.0,STOLEN,2654,"{'type': 'Point', 'coordinates': (-79.44398114, 43.71614468)}"
-2662,7082,GO-20201608090,THEFT UNDER - BICYCLE,2020-08-25T00:00:00,2020,August,Tuesday,25,238,23,2020-08-26T00:00:00,2020,August,Wednesday,26,239,11,D32,Toronto,32,Englemount-Lawrence (32),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,ESCAPE RX,RG,18,BLKBLU,1100.0,STOLEN,2655,"{'type': 'Point', 'coordinates': (-79.43632567, 43.72591888)}"
-2663,7206,GO-20209022646,THEFT UNDER,2020-09-07T00:00:00,2020,September,Monday,7,251,15,2020-09-08T00:00:00,2020,September,Tuesday,8,252,17,D13,Toronto,32,Englemount-Lawrence (32),"Open Areas (Lakes, Parks, Rivers)",Outside,GI,TALON 3,OT,21,ONG,600.0,STOLEN,2656,"{'type': 'Point', 'coordinates': (-79.43551713, 43.70608643)}"
-2664,7733,GO-20141291713,PROPERTY - LOST,2014-01-05T00:00:00,2014,January,Sunday,5,5,21,2014-01-06T00:00:00,2014,January,Monday,6,6,12,D32,Toronto,32,Englemount-Lawrence (32),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,1700,SC,0,RED,0.0,UNKNOWN,2657,"{'type': 'Point', 'coordinates': (-79.43711881, 43.71859418)}"
-2665,8472,GO-20142533672,THEFT UNDER,2014-07-17T00:00:00,2014,July,Thursday,17,198,13,2014-07-20T00:00:00,2014,July,Sunday,20,201,7,D32,Toronto,32,Englemount-Lawrence (32),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,INFINITY,MERIDIAN 1,MT,21,RED,290.0,STOLEN,2658,"{'type': 'Point', 'coordinates': (-79.43242389, 43.72046868)}"
-2666,8515,GO-20142588104,THEFT UNDER,2014-07-28T00:00:00,2014,July,Monday,28,209,12,2014-07-28T00:00:00,2014,July,Monday,28,209,12,D32,Toronto,32,Englemount-Lawrence (32),"Apartment (Rooming House, Condo)",Apartment,OTHER,LASER,MT,15,BLKRED,100.0,STOLEN,2659,"{'type': 'Point', 'coordinates': (-79.44398114, 43.71614468)}"
-2667,8747,GO-20149006215,THEFT UNDER,2014-08-22T00:00:00,2014,August,Friday,22,234,23,2014-08-23T00:00:00,2014,August,Saturday,23,235,11,D13,Toronto,32,Englemount-Lawrence (32),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,MT,15,LBL,200.0,STOLEN,2660,"{'type': 'Point', 'coordinates': (-79.4356522, 43.71073532)}"
-2668,9202,GO-20143375378,THEFT UNDER,2014-11-25T00:00:00,2014,November,Tuesday,25,329,17,2014-11-26T00:00:00,2014,November,Wednesday,26,330,18,D32,Toronto,32,Englemount-Lawrence (32),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,EL,1,,700.0,STOLEN,2661,"{'type': 'Point', 'coordinates': (-79.43272111, 43.73216022)}"
-2669,9304,GO-2015296948,B&E,2015-02-18T00:00:00,2015,February,Wednesday,18,49,4,2015-02-19T00:00:00,2015,February,Thursday,19,50,18,D32,Toronto,32,Englemount-Lawrence (32),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN,,MT,21,,,STOLEN,2662,"{'type': 'Point', 'coordinates': (-79.43511194, 43.733692590000004)}"
-2670,9519,GO-2015736724,B&E,2015-05-03T00:00:00,2015,May,Sunday,3,123,22,2015-05-03T00:00:00,2015,May,Sunday,3,123,23,D32,Toronto,32,Englemount-Lawrence (32),"Apartment (Rooming House, Condo)",Apartment,FIT CO,,BM,1,BLU,2000.0,STOLEN,2663,"{'type': 'Point', 'coordinates': (-79.44028603000001, 43.72695723)}"
-2671,9578,GO-2015797209,THEFT UNDER,2015-05-12T00:00:00,2015,May,Tuesday,12,132,19,2015-05-13T00:00:00,2015,May,Wednesday,13,133,11,D13,Toronto,32,Englemount-Lawrence (32),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,HYBRID,TO,15,BLK,1142.0,STOLEN,2664,"{'type': 'Point', 'coordinates': (-79.43322383, 43.70659168)}"
-2672,9625,GO-20159002973,THEFT UNDER,2015-05-17T00:00:00,2015,May,Sunday,17,137,12,2015-05-21T00:00:00,2015,May,Thursday,21,141,13,D32,Toronto,32,Englemount-Lawrence (32),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,TREK 720,MT,28,GRN,,STOLEN,2665,"{'type': 'Point', 'coordinates': (-79.43307435000001, 43.72660606)}"
-2673,9626,GO-20159002973,THEFT UNDER,2015-05-17T00:00:00,2015,May,Sunday,17,137,12,2015-05-21T00:00:00,2015,May,Thursday,21,141,13,D32,Toronto,32,Englemount-Lawrence (32),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,OT,30,DGR,0.0,STOLEN,2666,"{'type': 'Point', 'coordinates': (-79.43307435000001, 43.72660606)}"
-2674,9801,GO-20151002306,THEFT UNDER,2015-06-07T00:00:00,2015,June,Sunday,7,158,12,2015-06-15T00:00:00,2015,June,Monday,15,166,8,D32,Toronto,32,Englemount-Lawrence (32),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,RG,6,BLKGRY,,STOLEN,2667,"{'type': 'Point', 'coordinates': (-79.44099953, 43.71598468)}"
-2675,10323,GO-20151476589,THEFT UNDER,2015-08-27T00:00:00,2015,August,Thursday,27,239,13,2015-08-27T00:00:00,2015,August,Thursday,27,239,16,D32,Toronto,32,Englemount-Lawrence (32),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,21,GRYPNK,,STOLEN,2668,"{'type': 'Point', 'coordinates': (-79.43638327, 43.72229908)}"
-2676,10324,GO-20151476589,THEFT UNDER,2015-08-27T00:00:00,2015,August,Thursday,27,239,13,2015-08-27T00:00:00,2015,August,Thursday,27,239,16,D32,Toronto,32,Englemount-Lawrence (32),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KLEIN,PAOLOMINO X,MT,20,BLU,2799.0,STOLEN,2669,"{'type': 'Point', 'coordinates': (-79.43638327, 43.72229908)}"
-2677,10380,GO-20151451156,THEFT UNDER,2015-08-23T00:00:00,2015,August,Sunday,23,235,12,2015-08-23T00:00:00,2015,August,Sunday,23,235,12,D13,Toronto,32,Englemount-Lawrence (32),Schools During Supervised Activity,Educational,TREK,,OT,1,REDGRY,,STOLEN,2670,"{'type': 'Point', 'coordinates': (-79.43506049, 43.718044)}"
-2678,10381,GO-20151451156,THEFT UNDER,2015-08-23T00:00:00,2015,August,Sunday,23,235,12,2015-08-23T00:00:00,2015,August,Sunday,23,235,12,D13,Toronto,32,Englemount-Lawrence (32),Schools During Supervised Activity,Educational,NORCO,,OT,1,,,STOLEN,2671,"{'type': 'Point', 'coordinates': (-79.43506049, 43.718044)}"
-2679,10437,GO-20151544906,THEFT UNDER,2015-09-06T00:00:00,2015,September,Sunday,6,249,15,2015-09-07T00:00:00,2015,September,Monday,7,250,14,D32,Toronto,32,Englemount-Lawrence (32),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,EL,50,RED,500.0,STOLEN,2672,"{'type': 'Point', 'coordinates': (-79.43879738, 43.73188521)}"
-2680,10878,GO-20152125502,THEFT UNDER,2015-12-10T00:00:00,2015,December,Thursday,10,344,13,2015-12-11T00:00:00,2015,December,Friday,11,345,21,D32,Toronto,32,Englemount-Lawrence (32),"Apartment (Rooming House, Condo)",Apartment,PUREFIX,JULIET,OT,1,BLK,614.0,STOLEN,2673,"{'type': 'Point', 'coordinates': (-79.43879738, 43.73188521)}"
-2681,11264,GO-2016776634,THEFT UNDER - BICYCLE,2016-05-03T00:00:00,2016,May,Tuesday,3,124,18,2016-05-06T00:00:00,2016,May,Friday,6,127,11,D32,Toronto,32,Englemount-Lawrence (32),"Open Areas (Lakes, Parks, Rivers)",Outside,OTHER,,MT,1,PLEWHI,135.0,STOLEN,2674,"{'type': 'Point', 'coordinates': (-79.44098195, 43.72012757)}"
-2682,11469,GO-20169005463,THEFT UNDER - BICYCLE,2016-06-07T00:00:00,2016,June,Tuesday,7,159,8,2016-06-08T00:00:00,2016,June,Wednesday,8,160,11,D32,Toronto,32,Englemount-Lawrence (32),Schools During Supervised Activity,Educational,OT,,OT,10,,0.0,STOLEN,2675,"{'type': 'Point', 'coordinates': (-79.43833219, 43.71732346)}"
-2683,11525,GO-20161038240,THEFT UNDER - BICYCLE,2016-06-14T00:00:00,2016,June,Tuesday,14,166,8,2016-06-14T00:00:00,2016,June,Tuesday,14,166,21,D32,Toronto,32,Englemount-Lawrence (32),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,UNKNOWN,MT,0,,500.0,STOLEN,2676,"{'type': 'Point', 'coordinates': (-79.43511194, 43.733692590000004)}"
-2684,2641,GO-20189019665,THEFT UNDER - BICYCLE,2018-06-20T00:00:00,2018,June,Wednesday,20,171,23,2018-06-21T00:00:00,2018,June,Thursday,21,172,14,D32,Toronto,39,Bedford Park-Nortown (39),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,MT,20,ONG,2500.0,STOLEN,2677,"{'type': 'Point', 'coordinates': (-79.42152791, 43.73464644)}"
-2685,11526,GO-20161038240,THEFT UNDER - BICYCLE,2016-06-14T00:00:00,2016,June,Tuesday,14,166,8,2016-06-14T00:00:00,2016,June,Tuesday,14,166,21,D32,Toronto,32,Englemount-Lawrence (32),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,0,,300.0,STOLEN,2678,"{'type': 'Point', 'coordinates': (-79.43511194, 43.733692590000004)}"
-2686,11924,GO-20169007785,THEFT UNDER - BICYCLE,2016-07-06T00:00:00,2016,July,Wednesday,6,188,16,2016-07-26T00:00:00,2016,July,Tuesday,26,208,17,D32,Toronto,32,Englemount-Lawrence (32),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,MT,18,,200.0,STOLEN,2679,"{'type': 'Point', 'coordinates': (-79.43086822, 43.72421999)}"
-2687,12045,GO-20169008494,THEFT UNDER,2016-08-09T00:00:00,2016,August,Tuesday,9,222,9,2016-08-10T00:00:00,2016,August,Wednesday,10,223,10,D32,Toronto,32,Englemount-Lawrence (32),"Open Areas (Lakes, Parks, Rivers)",Outside,CC,KROSSSPORT,OT,4,WHI,350.0,STOLEN,2680,"{'type': 'Point', 'coordinates': (-79.44563386, 43.72391605)}"
-2688,12116,GO-20169008878,THEFT UNDER - BICYCLE,2016-08-16T00:00:00,2016,August,Tuesday,16,229,10,2016-08-16T00:00:00,2016,August,Tuesday,16,229,17,D32,Toronto,32,Englemount-Lawrence (32),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,NO,MOUNTAINEER,MT,21,BLK,575.0,STOLEN,2681,"{'type': 'Point', 'coordinates': (-79.43413027, 43.72921417)}"
-2689,12652,GO-20169012363,THEFT UNDER - BICYCLE,2016-10-17T00:00:00,2016,October,Monday,17,291,16,2016-10-20T00:00:00,2016,October,Thursday,20,294,16,D32,Toronto,32,Englemount-Lawrence (32),Ttc Subway Station,Transit,GT,2014 AGGRESSOR,MT,7,BLK,400.0,STOLEN,2682,"{'type': 'Point', 'coordinates': (-79.44063201, 43.72782912)}"
-2690,12787,GO-20162049881,THEFT UNDER - BICYCLE,2016-11-01T00:00:00,2016,November,Tuesday,1,306,17,2016-11-18T00:00:00,2016,November,Friday,18,323,13,D32,Toronto,32,Englemount-Lawrence (32),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,MT,6,GRYYEL,,STOLEN,2683,"{'type': 'Point', 'coordinates': (-79.43329957, 43.71940951)}"
-2691,12818,GO-20162087261,THEFT UNDER - BICYCLE,2016-11-23T00:00:00,2016,November,Wednesday,23,328,13,2016-11-24T00:00:00,2016,November,Thursday,24,329,14,D13,Toronto,32,Englemount-Lawrence (32),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,RG,10,,,STOLEN,2684,"{'type': 'Point', 'coordinates': (-79.42937296, 43.71763013)}"
-2692,22089,GO-20151657193,PROPERTY - FOUND,2015-09-25T00:00:00,2015,September,Friday,25,268,10,2015-09-25T00:00:00,2015,September,Friday,25,268,10,D32,Toronto,32,Englemount-Lawrence (32),"Apartment (Rooming House, Condo)",Apartment,OT,CHALLENGER,MT,18,TRQWHI,,UNKNOWN,2725,"{'type': 'Point', 'coordinates': (-79.43879738, 43.73188521)}"
-2693,13493,GO-20199017335,THEFT UNDER,2019-05-22T00:00:00,2019,May,Wednesday,22,142,17,2019-06-04T00:00:00,2019,June,Tuesday,4,155,8,D32,Toronto,32,Englemount-Lawrence (32),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,RG,12,SIL,350.0,STOLEN,2685,"{'type': 'Point', 'coordinates': (-79.43242389, 43.72046868)}"
-2694,13518,GO-20191661146,THEFT UNDER - BICYCLE,2019-08-30T00:00:00,2019,August,Friday,30,242,19,2019-08-30T00:00:00,2019,August,Friday,30,242,22,D32,Toronto,32,Englemount-Lawrence (32),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,AVALANCHE 29/27,MT,9,TRQ,760.0,STOLEN,2686,"{'type': 'Point', 'coordinates': (-79.43533253, 43.72169263)}"
-2695,13555,GO-20201295733,PROPERTY - FOUND,2020-07-13T00:00:00,2020,July,Monday,13,195,9,2020-07-13T00:00:00,2020,July,Monday,13,195,9,D32,Toronto,32,Englemount-Lawrence (32),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,UNKNOWN,OT,21,BLKBLU,,UNKNOWN,2687,"{'type': 'Point', 'coordinates': (-79.43342311, 43.727480920000005)}"
-2696,13838,GO-20181904429,B&E,2018-10-13T00:00:00,2018,October,Saturday,13,286,20,2018-10-16T00:00:00,2018,October,Tuesday,16,289,8,D32,Toronto,32,Englemount-Lawrence (32),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ALL CITY,,RC,1,GLD,1000.0,STOLEN,2688,"{'type': 'Point', 'coordinates': (-79.44598667, 43.72478043)}"
-2697,14656,GO-20179008202,THEFT UNDER - BICYCLE,2017-06-15T00:00:00,2017,June,Thursday,15,166,18,2017-06-15T00:00:00,2017,June,Thursday,15,166,23,D32,Toronto,32,Englemount-Lawrence (32),Schools During Un-Supervised Activity,Educational,OT,,RG,20,BLK,800.0,STOLEN,2689,"{'type': 'Point', 'coordinates': (-79.43833219, 43.71732346)}"
-2698,14787,GO-2018921322,THEFT UNDER,2018-05-09T00:00:00,2018,May,Wednesday,9,129,0,2018-05-23T00:00:00,2018,May,Wednesday,23,143,10,D32,Toronto,32,Englemount-Lawrence (32),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,MERIDA,ROAD 77,RG,24,WHITE,400.0,STOLEN,2690,"{'type': 'Point', 'coordinates': (-79.43879738, 43.73188521)}"
-2699,14855,GO-20199021676,THEFT UNDER - BICYCLE,2019-07-04T00:00:00,2019,July,Thursday,4,185,19,2019-07-10T00:00:00,2019,July,Wednesday,10,191,0,D13,Toronto,32,Englemount-Lawrence (32),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,21,BLK,350.0,STOLEN,2691,"{'type': 'Point', 'coordinates': (-79.43449951, 43.71582121)}"
-2700,14878,GO-2020708260,B&E,2020-03-16T00:00:00,2020,March,Monday,16,76,7,2020-04-12T00:00:00,2020,April,Sunday,12,103,16,D13,Toronto,32,Englemount-Lawrence (32),"Apartment (Rooming House, Condo)",Apartment,LOUIS GARNEAU,RAPIDO 242,MT,3,PLE,300.0,STOLEN,2692,"{'type': 'Point', 'coordinates': (-79.43707448, 43.71422911)}"
-2701,14880,GO-20209012881,THEFT UNDER,2019-11-04T00:00:00,2019,November,Monday,4,308,8,2020-05-11T00:00:00,2020,May,Monday,11,132,13,D13,Toronto,32,Englemount-Lawrence (32),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,18,SIL,1100.0,STOLEN,2693,"{'type': 'Point', 'coordinates': (-79.4405546, 43.70969026)}"
-2702,14925,GO-20149004578,THEFT UNDER,2014-06-30T00:00:00,2014,June,Monday,30,181,11,2014-06-30T00:00:00,2014,June,Monday,30,181,17,D32,Toronto,32,Englemount-Lawrence (32),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,,MT,5,SIL,80.0,STOLEN,2694,"{'type': 'Point', 'coordinates': (-79.43242389, 43.72046868)}"
-2703,14965,GO-20159004433,THEFT UNDER,2015-07-10T00:00:00,2015,July,Friday,10,191,9,2015-07-11T00:00:00,2015,July,Saturday,11,192,16,D32,Toronto,32,Englemount-Lawrence (32),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,8 TEAM,RG,15,WHI,130.0,STOLEN,2695,"{'type': 'Point', 'coordinates': (-79.44386942, 43.71948624)}"
-2704,15007,GO-20169007093,THEFT UNDER - BICYCLE,2016-07-11T00:00:00,2016,July,Monday,11,193,22,2016-07-12T00:00:00,2016,July,Tuesday,12,194,16,D32,Toronto,32,Englemount-Lawrence (32),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,8,BLU,300.0,STOLEN,2696,"{'type': 'Point', 'coordinates': (-79.43711881, 43.71859418)}"
-2705,15011,GO-20161308727,THEFT UNDER - BICYCLE,2016-07-20T00:00:00,2016,July,Wednesday,20,202,20,2016-07-25T00:00:00,2016,July,Monday,25,207,21,D32,Toronto,32,Englemount-Lawrence (32),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MONGOOSE,,MT,24,ONG,500.0,STOLEN,2697,"{'type': 'Point', 'coordinates': (-79.4306217, 43.72307668)}"
-2706,15526,GO-20161183150,THEFT UNDER - BICYCLE,2016-07-03T00:00:00,2016,July,Sunday,3,185,19,2016-07-06T00:00:00,2016,July,Wednesday,6,188,16,D13,Toronto,32,Englemount-Lawrence (32),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,MOUNTAIN,MT,21,GRYMUL,150.0,STOLEN,2698,"{'type': 'Point', 'coordinates': (-79.44099953, 43.71598468)}"
-2707,15633,GO-2018929355,THEFT UNDER - BICYCLE,2018-05-23T00:00:00,2018,May,Wednesday,23,143,16,2018-05-23T00:00:00,2018,May,Wednesday,23,143,16,D13,Toronto,32,Englemount-Lawrence (32),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,UNKNOWN,MT,21,PNKRED,150.0,STOLEN,2699,"{'type': 'Point', 'coordinates': (-79.43982544, 43.70789665)}"
-2708,16838,GO-20209020870,THEFT UNDER - BICYCLE,2020-08-19T00:00:00,2020,August,Wednesday,19,232,12,2020-08-21T00:00:00,2020,August,Friday,21,234,12,D32,Toronto,32,Englemount-Lawrence (32),"Apartment (Rooming House, Condo)",Apartment,SC,,MT,21,WHI,300.0,STOLEN,2700,"{'type': 'Point', 'coordinates': (-79.44099953, 43.71598468)}"
-2709,17793,GO-2018355941,THEFT UNDER - BICYCLE,2018-02-24T00:00:00,2018,February,Saturday,24,55,9,2018-02-25T00:00:00,2018,February,Sunday,25,56,12,D32,Toronto,32,Englemount-Lawrence (32),"Apartment (Rooming House, Condo)",Apartment,PHOENIX,,MT,21,BLU,400.0,STOLEN,2701,"{'type': 'Point', 'coordinates': (-79.44098195, 43.72012757)}"
-2710,17965,GO-20159003026,THEFT UNDER,2015-05-17T00:00:00,2015,May,Sunday,17,137,12,2015-05-22T00:00:00,2015,May,Friday,22,142,16,D32,Toronto,32,Englemount-Lawrence (32),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,720,RG,30,GRN,1000.0,STOLEN,2702,"{'type': 'Point', 'coordinates': (-79.43307435000001, 43.72660606)}"
-2711,18000,GO-20159008934,THEFT UNDER,2015-10-03T00:00:00,2015,October,Saturday,3,276,19,2015-10-23T00:00:00,2015,October,Friday,23,296,19,D32,Toronto,32,Englemount-Lawrence (32),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,REVEL 3,OT,16,BLK,419.0,STOLEN,2703,"{'type': 'Point', 'coordinates': (-79.44398114, 43.71614468)}"
-2712,18011,GO-2016138466,THEFT UNDER,2016-01-22T00:00:00,2016,January,Friday,22,22,15,2016-01-23T00:00:00,2016,January,Saturday,23,23,22,D32,Toronto,32,Englemount-Lawrence (32),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,,OT,21,BLK,500.0,STOLEN,2704,"{'type': 'Point', 'coordinates': (-79.44176294, 43.73096594)}"
-2713,18086,GO-20171214236,THEFT UNDER - BICYCLE,2017-07-06T00:00:00,2017,July,Thursday,6,187,9,2017-07-07T00:00:00,2017,July,Friday,7,188,9,D32,Toronto,32,Englemount-Lawrence (32),Schools During Supervised Activity,Educational,UNKNOWN,,MT,14,BLU,250.0,STOLEN,2705,"{'type': 'Point', 'coordinates': (-79.43833219, 43.71732346)}"
-2714,18149,GO-20161621442,THEFT UNDER - BICYCLE,2016-09-11T00:00:00,2016,September,Sunday,11,255,21,2016-09-12T00:00:00,2016,September,Monday,12,256,13,D13,Toronto,32,Englemount-Lawrence (32),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN,UNKNOWN,MT,21,BLK,,STOLEN,2706,"{'type': 'Point', 'coordinates': (-79.42937296, 43.71763013)}"
-2715,18232,GO-20189014885,THEFT UNDER - BICYCLE,2018-05-14T00:00:00,2018,May,Monday,14,134,10,2018-05-14T00:00:00,2018,May,Monday,14,134,14,D13,Toronto,32,Englemount-Lawrence (32),"Apartment (Rooming House, Condo)",Apartment,UK,4 IN 1,TR,1,PNK,110.0,STOLEN,2707,"{'type': 'Point', 'coordinates': (-79.4428173, 43.71482824)}"
-2716,18254,GO-20191220785,THEFT OF MOTOR VEHICLE,2019-07-01T00:00:00,2019,July,Monday,1,182,5,2019-07-01T00:00:00,2019,July,Monday,1,182,9,D13,Toronto,32,Englemount-Lawrence (32),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,DEFY ADVANCE 2,RG,12,BLKONG,2500.0,STOLEN,2708,"{'type': 'Point', 'coordinates': (-79.43207666, 43.71633316)}"
-2717,18258,GO-20199028896,THEFT UNDER - BICYCLE,2019-09-04T00:00:00,2019,September,Wednesday,4,247,21,2019-09-05T00:00:00,2019,September,Thursday,5,248,19,D13,Toronto,32,Englemount-Lawrence (32),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,VIA,FO,7,BLK,378.0,STOLEN,2709,"{'type': 'Point', 'coordinates': (-79.43930946, 43.711829)}"
-2718,18268,GO-20201080656,THEFT FROM MOTOR VEHICLE OVER,2020-06-11T00:00:00,2020,June,Thursday,11,163,21,2020-06-12T00:00:00,2020,June,Friday,12,164,11,D13,Toronto,32,Englemount-Lawrence (32),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,,RC,20,SIL,15255.0,STOLEN,2710,"{'type': 'Point', 'coordinates': (-79.42918507, 43.7168109)}"
-2719,18271,GO-20209015966,THEFT UNDER,2020-06-21T00:00:00,2020,June,Sunday,21,173,23,2020-06-23T00:00:00,2020,June,Tuesday,23,175,14,D13,Toronto,32,Englemount-Lawrence (32),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE,OT,24,SIL,800.0,STOLEN,2711,"{'type': 'Point', 'coordinates': (-79.4400403, 43.71359915)}"
-2720,18296,GO-20201753269,B&E,2020-09-16T00:00:00,2020,September,Wednesday,16,260,2,2020-09-16T00:00:00,2020,September,Wednesday,16,260,7,D13,Toronto,32,Englemount-Lawrence (32),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NINEBOT,KICKSCOOTER,SC,1,BLK,1000.0,STOLEN,2712,"{'type': 'Point', 'coordinates': (-79.43409484, 43.71485361)}"
-2721,18297,GO-20201753269,B&E,2020-09-16T00:00:00,2020,September,Wednesday,16,260,2,2020-09-16T00:00:00,2020,September,Wednesday,16,260,7,D13,Toronto,32,Englemount-Lawrence (32),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NINEBOT,KICKSCOOTER,SC,1,BLK,1000.0,STOLEN,2713,"{'type': 'Point', 'coordinates': (-79.43409484, 43.71485361)}"
-2722,18298,GO-20201753269,B&E,2020-09-16T00:00:00,2020,September,Wednesday,16,260,2,2020-09-16T00:00:00,2020,September,Wednesday,16,260,7,D13,Toronto,32,Englemount-Lawrence (32),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NINEBOT,KICKSCOOTER,SC,1,BLK,1000.0,STOLEN,2714,"{'type': 'Point', 'coordinates': (-79.43409484, 43.71485361)}"
-2723,18299,GO-20201753269,B&E,2020-09-16T00:00:00,2020,September,Wednesday,16,260,2,2020-09-16T00:00:00,2020,September,Wednesday,16,260,7,D13,Toronto,32,Englemount-Lawrence (32),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NINEBOT,KICKSCOOTER,SC,1,BLK,1000.0,STOLEN,2715,"{'type': 'Point', 'coordinates': (-79.43409484, 43.71485361)}"
-2724,18300,GO-20201753269,B&E,2020-09-16T00:00:00,2020,September,Wednesday,16,260,2,2020-09-16T00:00:00,2020,September,Wednesday,16,260,7,D13,Toronto,32,Englemount-Lawrence (32),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NINEBOT,KICKSCOOTER,SC,1,BLK,1000.0,STOLEN,2716,"{'type': 'Point', 'coordinates': (-79.43409484, 43.71485361)}"
-2725,18301,GO-20201753269,B&E,2020-09-16T00:00:00,2020,September,Wednesday,16,260,2,2020-09-16T00:00:00,2020,September,Wednesday,16,260,7,D13,Toronto,32,Englemount-Lawrence (32),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NINEBOT,KICKSCOOTER,SC,1,BLK,1000.0,STOLEN,2717,"{'type': 'Point', 'coordinates': (-79.43409484, 43.71485361)}"
-2726,18437,GO-20151309537,B&E,2015-06-24T00:00:00,2015,June,Wednesday,24,175,12,2015-07-31T00:00:00,2015,July,Friday,31,212,12,D13,Toronto,32,Englemount-Lawrence (32),"Apartment (Rooming House, Condo)",Apartment,GIANT,UNKNOWN,TO,24,BLK,600.0,STOLEN,2718,"{'type': 'Point', 'coordinates': (-79.43804832, 43.71662223)}"
-2727,19986,GO-20189033799,THEFT UNDER,2018-10-05T00:00:00,2018,October,Friday,5,278,11,2018-10-12T00:00:00,2018,October,Friday,12,285,11,D32,Toronto,32,Englemount-Lawrence (32),"Apartment (Rooming House, Condo)",Apartment,SU,,MT,7,OTH,170.0,STOLEN,2719,"{'type': 'Point', 'coordinates': (-79.43049352, 43.72255903)}"
-2728,20064,GO-20199024694,THEFT UNDER - BICYCLE,2019-08-01T00:00:00,2019,August,Thursday,1,213,9,2019-08-01T00:00:00,2019,August,Thursday,1,213,19,D32,Toronto,32,Englemount-Lawrence (32),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,DECIBEL PITBULL,OT,1,LGR,0.0,STOLEN,2720,"{'type': 'Point', 'coordinates': (-79.44386942, 43.71948624)}"
-2729,21553,GO-2020750044,THEFT UNDER - BICYCLE,2020-04-13T00:00:00,2020,April,Monday,13,104,12,2020-04-19T00:00:00,2020,April,Sunday,19,110,17,D13,Toronto,32,Englemount-Lawrence (32),"Apartment (Rooming House, Condo)",Apartment,ZZZ,,RG,21,BLK,100.0,STOLEN,2721,"{'type': 'Point', 'coordinates': (-79.42955199, 43.71842236)}"
-2730,21898,GO-20151288371,THEFT UNDER,2015-07-24T00:00:00,2015,July,Friday,24,205,16,2015-07-27T00:00:00,2015,July,Monday,27,208,17,D13,Toronto,32,Englemount-Lawrence (32),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,OT,0,,,STOLEN,2722,"{'type': 'Point', 'coordinates': (-79.43895251, 43.71098403)}"
-2731,22066,GO-20151154305,THEFT UNDER,2015-07-08T00:00:00,2015,July,Wednesday,8,189,16,2015-07-08T00:00:00,2015,July,Wednesday,8,189,16,D32,Toronto,32,Englemount-Lawrence (32),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SUPER CYCLE,,MT,0,REDBLK,200.0,STOLEN,2723,"{'type': 'Point', 'coordinates': (-79.44386942, 43.71948624)}"
-2732,22088,GO-20151657193,PROPERTY - FOUND,2015-09-25T00:00:00,2015,September,Friday,25,268,10,2015-09-25T00:00:00,2015,September,Friday,25,268,10,D32,Toronto,32,Englemount-Lawrence (32),"Apartment (Rooming House, Condo)",Apartment,OT,LASER DX,MT,18,BLKRED,,UNKNOWN,2724,"{'type': 'Point', 'coordinates': (-79.43879738, 43.73188521)}"
-2733,22091,GO-20159008428,THEFT UNDER,2015-10-11T00:00:00,2015,October,Sunday,11,284,16,2015-10-11T00:00:00,2015,October,Sunday,11,284,17,D32,Toronto,32,Englemount-Lawrence (32),"Apartment (Rooming House, Condo)",Apartment,TR,DUAL SPORT 8.4,MT,20,BLK,800.0,STOLEN,2726,"{'type': 'Point', 'coordinates': (-79.44099953, 43.71598468)}"
-2734,22119,GO-20169008070,THEFT UNDER - BICYCLE,2016-08-02T00:00:00,2016,August,Tuesday,2,215,15,2016-08-03T00:00:00,2016,August,Wednesday,3,216,0,D32,Toronto,32,Englemount-Lawrence (32),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,NBWBME,OT,21,BLK,400.0,STOLEN,2727,"{'type': 'Point', 'coordinates': (-79.43956767, 43.72522524)}"
-2735,23279,GO-20199021026,THEFT UNDER - BICYCLE,2019-07-04T00:00:00,2019,July,Thursday,4,185,15,2019-07-04T00:00:00,2019,July,Thursday,4,185,19,D32,Toronto,32,Englemount-Lawrence (32),"Apartment (Rooming House, Condo)",Apartment,GT,AGGRESSOR COMP,MT,7,BLK,711.0,STOLEN,2728,"{'type': 'Point', 'coordinates': (-79.43879738, 43.73188521)}"
-2736,23304,GO-20199030165,THEFT UNDER,2019-09-16T00:00:00,2019,September,Monday,16,259,7,2019-09-16T00:00:00,2019,September,Monday,16,259,9,D32,Toronto,32,Englemount-Lawrence (32),"Apartment (Rooming House, Condo)",Apartment,OT,XC27,MT,21,BLK,340.0,STOLEN,2729,"{'type': 'Point', 'coordinates': (-79.43879738, 43.73188521)}"
-2737,23315,GO-2020627873,THEFT UNDER,2020-03-09T00:00:00,2020,March,Monday,9,69,12,2020-03-30T00:00:00,2020,March,Monday,30,90,11,D32,Toronto,32,Englemount-Lawrence (32),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN,UNKNOWN,OT,10,BLUPNK,,STOLEN,2730,"{'type': 'Point', 'coordinates': (-79.44098195, 43.72012757)}"
-2738,24726,GO-20151233843,B&E,2015-07-12T00:00:00,2015,July,Sunday,12,193,21,2015-07-20T00:00:00,2015,July,Monday,20,201,9,D13,Toronto,32,Englemount-Lawrence (32),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,4300,MT,27,BLKBLU,1000.0,STOLEN,2731,"{'type': 'Point', 'coordinates': (-79.43409484, 43.71485361)}"
-2739,11024,GO-20169002127,THEFT UNDER - BICYCLE,2016-02-23T00:00:00,2016,February,Tuesday,23,54,3,2016-03-08T00:00:00,2016,March,Tuesday,8,68,18,D33,Toronto,45,Parkwoods-Donalda (45),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,ROCK HOPPER,MT,24,SIL,1000.0,STOLEN,2732,"{'type': 'Point', 'coordinates': (-79.3317634, 43.75222786)}"
-2740,11135,GO-2016637784,THEFT UNDER - BICYCLE,2016-04-14T00:00:00,2016,April,Thursday,14,105,18,2016-04-14T00:00:00,2016,April,Thursday,14,105,21,D33,Toronto,45,Parkwoods-Donalda (45),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,MT,18,PLE,250.0,RECOVERED,2733,"{'type': 'Point', 'coordinates': (-79.33060307, 43.75998769)}"
-2741,11506,GO-20169005659,THEFT UNDER,2016-06-10T00:00:00,2016,June,Friday,10,162,4,2016-06-11T00:00:00,2016,June,Saturday,11,163,17,D33,Toronto,45,Parkwoods-Donalda (45),"Apartment (Rooming House, Condo)",Apartment,GT,,MT,21,BLK,400.0,STOLEN,2734,"{'type': 'Point', 'coordinates': (-79.31349495, 43.75300529)}"
-2742,13471,GO-20199008467,THEFT UNDER - BICYCLE,2019-03-10T00:00:00,2019,March,Sunday,10,69,14,2019-03-16T00:00:00,2019,March,Saturday,16,75,14,D33,Toronto,45,Parkwoods-Donalda (45),"Apartment (Rooming House, Condo)",Apartment,UK,CX-1 WORLD CUP,RC,11,WHI,1800.0,STOLEN,2735,"{'type': 'Point', 'coordinates': (-79.3317634, 43.75222786)}"
-2743,13792,GO-20189024721,THEFT UNDER - BICYCLE,2018-07-31T00:00:00,2018,July,Tuesday,31,212,13,2018-08-01T00:00:00,2018,August,Wednesday,1,213,8,D33,Toronto,45,Parkwoods-Donalda (45),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CC,71-1018-4,MT,24,WHI,452.0,STOLEN,2736,"{'type': 'Point', 'coordinates': (-79.31419956, 43.74149834)}"
-2744,13946,GO-2016327281,THEFT UNDER - BICYCLE,2015-12-30T00:00:00,2015,December,Wednesday,30,364,0,2016-02-24T00:00:00,2016,February,Wednesday,24,55,12,D33,Toronto,45,Parkwoods-Donalda (45),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,RG,1,BLK,150.0,STOLEN,2737,"{'type': 'Point', 'coordinates': (-79.33345445, 43.76118086)}"
-2745,13947,GO-2016327281,THEFT UNDER - BICYCLE,2015-12-30T00:00:00,2015,December,Wednesday,30,364,0,2016-02-24T00:00:00,2016,February,Wednesday,24,55,12,D33,Toronto,45,Parkwoods-Donalda (45),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,RG,1,BLU,,STOLEN,2738,"{'type': 'Point', 'coordinates': (-79.33345445, 43.76118086)}"
-2746,25320,GO-20171962374,PROPERTY - FOUND,2017-10-30T00:00:00,2017,October,Monday,30,303,6,2017-10-30T00:00:00,2017,October,Monday,30,303,6,D13,Toronto,32,Englemount-Lawrence (32),"Apartment (Rooming House, Condo)",Apartment,SPORTEK,YOUTH,MT,6,LBL,,UNKNOWN,2739,"{'type': 'Point', 'coordinates': (-79.4400403, 43.71359915)}"
-2747,14036,GO-20162171459,THEFT FROM MOTOR VEHICLE UNDER,2016-12-07T00:00:00,2016,December,Wednesday,7,342,15,2016-12-07T00:00:00,2016,December,Wednesday,7,342,17,D33,Toronto,45,Parkwoods-Donalda (45),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,BIGFOOT,RC,21,MRN,500.0,STOLEN,2740,"{'type': 'Point', 'coordinates': (-79.33175416, 43.76193980000001)}"
-2748,1361,GO-20179014425,THEFT UNDER - BICYCLE,2017-08-10T00:00:00,2017,August,Thursday,10,222,21,2017-09-10T00:00:00,2017,September,Sunday,10,253,21,D32,Toronto,33,Clanton Park (33),"Apartment (Rooming House, Condo)",Apartment,CC,,MT,21,DBL,340.0,STOLEN,2741,"{'type': 'Point', 'coordinates': (-79.4434242, 43.75450167000001)}"
-2749,16763,GO-20199017975,THEFT UNDER,2019-06-09T00:00:00,2019,June,Sunday,9,160,0,2019-06-09T00:00:00,2019,June,Sunday,9,160,20,D33,Toronto,45,Parkwoods-Donalda (45),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,RG,20,RED,100.0,STOLEN,2742,"{'type': 'Point', 'coordinates': (-79.33072963, 43.76607277)}"
-2750,16786,GO-20199024866,THEFT UNDER - BICYCLE,2019-08-03T00:00:00,2019,August,Saturday,3,215,18,2019-08-03T00:00:00,2019,August,Saturday,3,215,19,D33,Toronto,45,Parkwoods-Donalda (45),"Apartment (Rooming House, Condo)",Apartment,OT,XC550,RC,21,BLK,400.0,STOLEN,2743,"{'type': 'Point', 'coordinates': (-79.31322189, 43.75221273)}"
-2751,16789,GO-20191599385,THEFT UNDER - BICYCLE,2019-08-21T00:00:00,2019,August,Wednesday,21,233,21,2019-08-22T00:00:00,2019,August,Thursday,22,234,12,D33,Toronto,45,Parkwoods-Donalda (45),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DEVINCI,OSLO WF,RG,6,PLE,,STOLEN,2744,"{'type': 'Point', 'coordinates': (-79.32984893, 43.74657594)}"
-2752,16790,GO-20191621368,FRAUD UNDER,2019-08-24T00:00:00,2019,August,Saturday,24,236,23,2019-08-25T00:00:00,2019,August,Sunday,25,237,15,D33,Toronto,45,Parkwoods-Donalda (45),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,SC,0,,,STOLEN,2745,"{'type': 'Point', 'coordinates': (-79.34460872, 43.76463793)}"
-2753,16920,GO-2017950415,THEFT UNDER,2017-05-25T00:00:00,2017,May,Thursday,25,145,2,2017-05-29T00:00:00,2017,May,Monday,29,149,18,D33,Toronto,45,Parkwoods-Donalda (45),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OTHER,,TR,5,,300.0,STOLEN,2746,"{'type': 'Point', 'coordinates': (-79.32386674, 43.761549990000006)}"
-2754,16929,GO-20171052422,THEFT UNDER - BICYCLE,2017-06-13T00:00:00,2017,June,Tuesday,13,164,18,2017-06-15T00:00:00,2017,June,Thursday,15,166,14,D33,Toronto,45,Parkwoods-Donalda (45),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,XL,RC,21,GRY,300.0,STOLEN,2747,"{'type': 'Point', 'coordinates': (-79.31349495, 43.75300529)}"
-2755,16930,GO-20179008125,THEFT UNDER - BICYCLE,2017-06-14T00:00:00,2017,June,Wednesday,14,165,21,2017-06-15T00:00:00,2017,June,Thursday,15,166,10,D33,Toronto,45,Parkwoods-Donalda (45),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,THREAT,BM,1,,0.0,STOLEN,2748,"{'type': 'Point', 'coordinates': (-79.31349495, 43.75300529)}"
-2756,16967,GO-20171457910,THEFT UNDER - BICYCLE,2017-08-01T00:00:00,2017,August,Tuesday,1,213,8,2017-08-13T00:00:00,2017,August,Sunday,13,225,4,D33,Toronto,45,Parkwoods-Donalda (45),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,MOUNTIN,MT,21,LGR,125.0,STOLEN,2749,"{'type': 'Point', 'coordinates': (-79.32629577, 43.74167426000001)}"
-2757,16968,GO-20171457910,THEFT UNDER - BICYCLE,2017-08-01T00:00:00,2017,August,Tuesday,1,213,8,2017-08-13T00:00:00,2017,August,Sunday,13,225,4,D33,Toronto,45,Parkwoods-Donalda (45),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,VOYAGER,RG,21,WHI,,STOLEN,2750,"{'type': 'Point', 'coordinates': (-79.32629577, 43.74167426000001)}"
-2758,17075,GO-20189023805,THEFT UNDER - BICYCLE,2018-07-14T00:00:00,2018,July,Saturday,14,195,23,2018-07-24T00:00:00,2018,July,Tuesday,24,205,22,D33,Toronto,45,Parkwoods-Donalda (45),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,,OT,21,BLU,400.0,STOLEN,2751,"{'type': 'Point', 'coordinates': (-79.32751864, 43.7435466)}"
-2759,17179,GO-20151756170,THEFT UNDER,2015-10-11T00:00:00,2015,October,Sunday,11,284,19,2015-10-11T00:00:00,2015,October,Sunday,11,284,19,D33,Toronto,45,Parkwoods-Donalda (45),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN,,MT,21,GRY,112.0,STOLEN,2752,"{'type': 'Point', 'coordinates': (-79.33872763, 43.76289207)}"
-2760,17186,GO-20151879054,THEFT UNDER,2015-10-30T00:00:00,2015,October,Friday,30,303,10,2015-11-01T00:00:00,2015,November,Sunday,1,305,16,D33,Toronto,45,Parkwoods-Donalda (45),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,OT,7,BLU,150.0,STOLEN,2753,"{'type': 'Point', 'coordinates': (-79.32312436, 43.75597836)}"
-2761,17203,GO-2016295888,THEFT UNDER,2016-02-18T00:00:00,2016,February,Thursday,18,49,18,2016-02-19T00:00:00,2016,February,Friday,19,50,8,D33,Toronto,45,Parkwoods-Donalda (45),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN,,MT,8,RED,200.0,STOLEN,2754,"{'type': 'Point', 'coordinates': (-79.31655013, 43.75385383)}"
-2762,17204,GO-2016295888,THEFT UNDER,2016-02-18T00:00:00,2016,February,Thursday,18,49,18,2016-02-19T00:00:00,2016,February,Friday,19,50,8,D33,Toronto,45,Parkwoods-Donalda (45),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN,,MT,8,BGE,300.0,STOLEN,2755,"{'type': 'Point', 'coordinates': (-79.31655013, 43.75385383)}"
-2763,20185,GO-20171064865,THEFT UNDER - BICYCLE,2017-06-13T00:00:00,2017,June,Tuesday,13,164,23,2017-06-15T00:00:00,2017,June,Thursday,15,166,11,D33,Toronto,45,Parkwoods-Donalda (45),Schools During Un-Supervised Activity,Educational,UNKNOWN,UNKNOWN,MT,18,RED,200.0,STOLEN,2756,"{'type': 'Point', 'coordinates': (-79.31755862, 43.75180164)}"
-2764,3106,GO-20189025444,THEFT UNDER - BICYCLE,2018-08-07T00:00:00,2018,August,Tuesday,7,219,16,2018-08-07T00:00:00,2018,August,Tuesday,7,219,16,D33,Toronto,47,Don Valley Village (47),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,16,BLK,200.0,STOLEN,2788,"{'type': 'Point', 'coordinates': (-79.34785549, 43.77712857)}"
-2765,2765,GO-20189021342,THEFT UNDER - BICYCLE,2018-06-27T00:00:00,2018,June,Wednesday,27,178,20,2018-07-05T00:00:00,2018,July,Thursday,5,186,19,D32,Toronto,39,Bedford Park-Nortown (39),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,RG,21,GRY,0.0,STOLEN,2757,"{'type': 'Point', 'coordinates': (-79.41816142, 43.740629410000004)}"
-2766,20221,GO-20171420221,THEFT UNDER - BICYCLE,2017-08-06T00:00:00,2017,August,Sunday,6,218,16,2017-08-07T00:00:00,2017,August,Monday,7,219,10,D33,Toronto,45,Parkwoods-Donalda (45),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,,OT,24,BLU,300.0,STOLEN,2758,"{'type': 'Point', 'coordinates': (-79.32764494, 43.76066598)}"
-2767,20294,GO-20189013469,THEFT UNDER - BICYCLE,2018-04-27T00:00:00,2018,April,Friday,27,117,18,2018-05-01T00:00:00,2018,May,Tuesday,1,121,19,D33,Toronto,45,Parkwoods-Donalda (45),"Apartment (Rooming House, Condo)",Apartment,UK,,BM,1,BLK,450.0,STOLEN,2759,"{'type': 'Point', 'coordinates': (-79.34460872, 43.76463793)}"
-2768,20380,GO-20159002671,THEFT UNDER,2015-05-12T00:00:00,2015,May,Tuesday,12,132,12,2015-05-12T00:00:00,2015,May,Tuesday,12,132,13,D33,Toronto,45,Parkwoods-Donalda (45),"Apartment (Rooming House, Condo)",Apartment,OT,8205-69CT,MT,21,BLK,,STOLEN,2760,"{'type': 'Point', 'coordinates': (-79.32941752, 43.76577974)}"
-2769,20416,GO-20151257655,THEFT UNDER,2015-07-23T00:00:00,2015,July,Thursday,23,204,12,2015-07-23T00:00:00,2015,July,Thursday,23,204,17,D33,Toronto,45,Parkwoods-Donalda (45),Schools During Supervised Activity,Educational,OTHER,BMX,OT,1,BLU,250.0,STOLEN,2761,"{'type': 'Point', 'coordinates': (-79.33872763, 43.76289207)}"
-2770,20875,GO-20142379078,THEFT UNDER,2014-06-21T00:00:00,2014,June,Saturday,21,172,20,2014-06-27T00:00:00,2014,June,Friday,27,178,12,D33,Toronto,45,Parkwoods-Donalda (45),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NEXT,CHALLENGER,RG,18,PLE,100.0,STOLEN,2762,"{'type': 'Point', 'coordinates': (-79.32047747, 43.75413829)}"
-2771,23345,GO-20209019220,THEFT UNDER - BICYCLE,2020-07-31T00:00:00,2020,July,Friday,31,213,17,2020-08-02T00:00:00,2020,August,Sunday,2,215,17,D33,Toronto,45,Parkwoods-Donalda (45),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,RG,1,,200.0,STOLEN,2763,"{'type': 'Point', 'coordinates': (-79.33714946, 43.75050884000001)}"
-2772,23425,GO-20179008587,PROPERTY - LOST,2017-06-21T00:00:00,2017,June,Wednesday,21,172,17,2017-06-21T00:00:00,2017,June,Wednesday,21,172,17,D33,Toronto,45,Parkwoods-Donalda (45),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,HF,ROCK CREEK,MT,7,GRN,200.0,STOLEN,2764,"{'type': 'Point', 'coordinates': (-79.31655013, 43.75385383)}"
-2773,23447,GO-20171333077,THEFT UNDER - BICYCLE,2017-06-27T00:00:00,2017,June,Tuesday,27,178,18,2017-07-25T00:00:00,2017,July,Tuesday,25,206,7,D33,Toronto,45,Parkwoods-Donalda (45),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,BOYS,OT,1,GLD,200.0,STOLEN,2765,"{'type': 'Point', 'coordinates': (-79.32852645, 43.76191591)}"
-2774,23448,GO-20171333077,THEFT UNDER - BICYCLE,2017-06-27T00:00:00,2017,June,Tuesday,27,178,18,2017-07-25T00:00:00,2017,July,Tuesday,25,206,7,D33,Toronto,45,Parkwoods-Donalda (45),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,LADIES,OT,1,WHI,100.0,STOLEN,2766,"{'type': 'Point', 'coordinates': (-79.32852645, 43.76191591)}"
-2775,23458,GO-20179012001,THEFT UNDER - BICYCLE,2017-08-01T00:00:00,2017,August,Tuesday,1,213,15,2017-08-09T00:00:00,2017,August,Wednesday,9,221,14,D33,Toronto,45,Parkwoods-Donalda (45),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,260,MT,18,BLK,407.0,STOLEN,2767,"{'type': 'Point', 'coordinates': (-79.3224195, 43.76634133000001)}"
-2776,23474,GO-20171755950,THEFT UNDER - BICYCLE,2017-09-18T00:00:00,2017,September,Monday,18,261,12,2017-09-27T00:00:00,2017,September,Wednesday,27,270,17,D33,Toronto,45,Parkwoods-Donalda (45),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SCHWINN,TANGO,RG,0,GRNBLU,169.0,STOLEN,2768,"{'type': 'Point', 'coordinates': (-79.3362195, 43.75014415)}"
-2777,23475,GO-20171755950,THEFT UNDER - BICYCLE,2017-09-18T00:00:00,2017,September,Monday,18,261,12,2017-09-27T00:00:00,2017,September,Wednesday,27,270,17,D33,Toronto,45,Parkwoods-Donalda (45),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,,RG,0,GRNBLU,100.0,STOLEN,2769,"{'type': 'Point', 'coordinates': (-79.3362195, 43.75014415)}"
-2778,3130,GO-20181440714,THEFT UNDER - BICYCLE,2018-08-06T00:00:00,2018,August,Monday,6,218,9,2018-08-06T00:00:00,2018,August,Monday,6,218,9,D33,Toronto,46,Pleasant View (46),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUPERCYCLE,DE DORIA,MT,7,GRN,500.0,STOLEN,2770,"{'type': 'Point', 'coordinates': (-79.33154539, 43.78880412)}"
-2779,4844,GO-20199023335,THEFT UNDER - BICYCLE,2019-07-23T00:00:00,2019,July,Tuesday,23,204,6,2019-07-23T00:00:00,2019,July,Tuesday,23,204,7,D33,Toronto,46,Pleasant View (46),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM 0 DISC,OT,60,GRY,1349.0,STOLEN,2771,"{'type': 'Point', 'coordinates': (-79.3371573, 43.79266476)}"
-2780,6679,GO-20201332166,THEFT UNDER,2020-07-18T00:00:00,2020,July,Saturday,18,200,3,2020-07-18T00:00:00,2020,July,Saturday,18,200,5,D32,Toronto,33,Clanton Park (33),"Apartment (Rooming House, Condo)",Apartment,OT,ESPACE 4,RG,18,GRY,850.0,STOLEN,2923,"{'type': 'Point', 'coordinates': (-79.44640353, 43.73475482)}"
-2781,5884,GO-20209004852,THEFT UNDER - BICYCLE,2020-02-07T00:00:00,2020,February,Friday,7,38,11,2020-02-10T00:00:00,2020,February,Monday,10,41,9,D33,Toronto,46,Pleasant View (46),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,5,BLK,3000.0,STOLEN,2772,"{'type': 'Point', 'coordinates': (-79.34097195, 43.78949271)}"
-2782,7107,GO-20201624288,THEFT UNDER - BICYCLE,2020-08-28T00:00:00,2020,August,Friday,28,241,1,2020-08-28T00:00:00,2020,August,Friday,28,241,17,D33,Toronto,46,Pleasant View (46),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,0,GRY,150.0,STOLEN,2773,"{'type': 'Point', 'coordinates': (-79.33744219, 43.79472643)}"
-2783,7108,GO-20201624288,THEFT UNDER - BICYCLE,2020-08-28T00:00:00,2020,August,Friday,28,241,1,2020-08-28T00:00:00,2020,August,Friday,28,241,17,D33,Toronto,46,Pleasant View (46),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,HARD TRAIL,MT,24,RED,600.0,STOLEN,2774,"{'type': 'Point', 'coordinates': (-79.33744219, 43.79472643)}"
-2784,8326,GO-20142434865,THEFT UNDER,2014-06-30T00:00:00,2014,June,Monday,30,181,19,2014-07-05T00:00:00,2014,July,Saturday,5,186,10,D33,Toronto,46,Pleasant View (46),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,OT,4,WHIRED,200.0,STOLEN,2775,"{'type': 'Point', 'coordinates': (-79.33508183, 43.79448002000001)}"
-2785,13540,GO-2020897214,THEFT UNDER - BICYCLE,2020-05-14T00:00:00,2020,May,Thursday,14,135,5,2020-05-15T00:00:00,2020,May,Friday,15,136,10,D33,Toronto,46,Pleasant View (46),"Single Home, House (Attach Garage, Cottage, Mobile)",House,VELO SPORT,H-2,OT,0,GRN,200.0,STOLEN,2776,"{'type': 'Point', 'coordinates': (-79.34097195, 43.78949271)}"
-2786,13559,GO-20209017816,THEFT UNDER - BICYCLE,2020-07-17T00:00:00,2020,July,Friday,17,199,17,2020-07-17T00:00:00,2020,July,Friday,17,199,18,D33,Toronto,46,Pleasant View (46),"Apartment (Rooming House, Condo)",Apartment,CC,SURGE,MT,21,BLU,407.0,STOLEN,2777,"{'type': 'Point', 'coordinates': (-79.32992957, 43.7870825)}"
-2787,14035,GO-20162145516,THEFT UNDER,2016-12-03T00:00:00,2016,December,Saturday,3,338,11,2016-12-03T00:00:00,2016,December,Saturday,3,338,15,D33,Toronto,46,Pleasant View (46),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,RC,15,ONG,300.0,STOLEN,2778,"{'type': 'Point', 'coordinates': (-79.33165337, 43.77677407)}"
-2788,20279,GO-20179021127,THEFT FROM MOTOR VEHICLE UNDER,2017-12-01T00:00:00,2017,December,Friday,1,335,0,2017-12-03T00:00:00,2017,December,Sunday,3,337,0,D33,Toronto,46,Pleasant View (46),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,5,,250.0,STOLEN,2779,"{'type': 'Point', 'coordinates': (-79.3371573, 43.79266476)}"
-2789,20505,GO-20161155810,THEFT UNDER - BICYCLE,2016-06-16T00:00:00,2016,June,Thursday,16,168,8,2016-07-02T00:00:00,2016,July,Saturday,2,184,12,D33,Toronto,46,Pleasant View (46),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,STD,MT,5,GLD,375.0,STOLEN,2780,"{'type': 'Point', 'coordinates': (-79.33154539, 43.78880412)}"
-2790,23299,GO-20199026859,THEFT UNDER - BICYCLE,2019-08-19T00:00:00,2019,August,Monday,19,231,18,2019-08-19T00:00:00,2019,August,Monday,19,231,19,D33,Toronto,46,Pleasant View (46),"Apartment (Rooming House, Condo)",Apartment,CC,PRESTO,RG,21,RED,150.0,STOLEN,2781,"{'type': 'Point', 'coordinates': (-79.32992957, 43.7870825)}"
-2791,23306,GO-20199030923,THEFT UNDER - BICYCLE,2019-09-16T00:00:00,2019,September,Monday,16,259,2,2019-09-20T00:00:00,2019,September,Friday,20,263,22,D33,Toronto,46,Pleasant View (46),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CC,,MT,18,BLU,150.0,STOLEN,2782,"{'type': 'Point', 'coordinates': (-79.33207032, 43.78160394)}"
-2792,23333,GO-20209016964,THEFT UNDER - BICYCLE,2020-07-03T00:00:00,2020,July,Friday,3,185,12,2020-07-06T00:00:00,2020,July,Monday,6,188,17,D33,Toronto,46,Pleasant View (46),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,TRAIL X1,MT,7,BLU,350.0,STOLEN,2783,"{'type': 'Point', 'coordinates': (-79.33132806, 43.77910052)}"
-2793,23422,GO-20171067625,THEFT UNDER,2017-06-13T00:00:00,2017,June,Tuesday,13,164,1,2017-06-15T00:00:00,2017,June,Thursday,15,166,16,D33,Toronto,46,Pleasant View (46),"Open Areas (Lakes, Parks, Rivers)",Outside,UNKNOWN MAKE,,MT,24,ONG,,STOLEN,2784,"{'type': 'Point', 'coordinates': (-79.32992957, 43.7870825)}"
-2794,353,GO-2017824751,THEFT OVER - BICYCLE,2017-05-04T00:00:00,2017,May,Thursday,4,124,16,2017-05-10T00:00:00,2017,May,Wednesday,10,130,16,D33,Toronto,47,Don Valley Village (47),"Apartment (Rooming House, Condo)",Apartment,RALEIGH,MERIT 3,TO,10,BLU,1956.0,STOLEN,2785,"{'type': 'Point', 'coordinates': (-79.35945775, 43.77334277)}"
-2795,354,GO-2017824751,THEFT OVER - BICYCLE,2017-05-04T00:00:00,2017,May,Thursday,4,124,16,2017-05-10T00:00:00,2017,May,Wednesday,10,130,16,D33,Toronto,47,Don Valley Village (47),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,KOURSA CARBON,TO,10,,3284.0,STOLEN,2786,"{'type': 'Point', 'coordinates': (-79.35945775, 43.77334277)}"
-2796,2529,GO-20189018228,THEFT UNDER - BICYCLE,2018-06-08T00:00:00,2018,June,Friday,8,159,14,2018-06-11T00:00:00,2018,June,Monday,11,162,13,D33,Toronto,47,Don Valley Village (47),"Apartment (Rooming House, Condo)",Apartment,OT,BELLADONNA 2016,RG,24,BLK,700.0,STOLEN,2787,"{'type': 'Point', 'coordinates': (-79.34785549, 43.77712857)}"
-2797,3472,GO-20189030500,THEFT UNDER - BICYCLE,2018-09-14T00:00:00,2018,September,Friday,14,257,7,2018-09-14T00:00:00,2018,September,Friday,14,257,19,D33,Toronto,47,Don Valley Village (47),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SC,,MT,21,,700.0,STOLEN,2789,"{'type': 'Point', 'coordinates': (-79.34368106, 43.77583447)}"
-2798,4514,GO-20199018870,THEFT UNDER - BICYCLE,2019-06-12T00:00:00,2019,June,Wednesday,12,163,9,2019-06-16T00:00:00,2019,June,Sunday,16,167,21,D33,Toronto,47,Don Valley Village (47),"Apartment (Rooming House, Condo)",Apartment,MO,EXCURSION,MT,21,BRN,0.0,STOLEN,2790,"{'type': 'Point', 'coordinates': (-79.34731597, 43.78245051)}"
-2799,4773,GO-20199022354,THEFT UNDER - BICYCLE,2019-07-07T00:00:00,2019,July,Sunday,7,188,0,2019-07-15T00:00:00,2019,July,Monday,15,196,15,D33,Toronto,47,Don Valley Village (47),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,DUAL SPORT 2,OT,24,BLK,770.0,STOLEN,2791,"{'type': 'Point', 'coordinates': (-79.34428001, 43.78097583)}"
-2800,5396,GO-20199031421,THEFT UNDER - BICYCLE,2019-09-24T00:00:00,2019,September,Tuesday,24,267,7,2019-09-25T00:00:00,2019,September,Wednesday,25,268,7,D33,Toronto,47,Don Valley Village (47),Schools During Supervised Activity,Educational,OT,PR222,RC,21,BLK,2000.0,STOLEN,2792,"{'type': 'Point', 'coordinates': (-79.35069147, 43.78541589)}"
-2801,7007,GO-20209020729,THEFT UNDER - BICYCLE,2020-08-18T00:00:00,2020,August,Tuesday,18,231,20,2020-08-19T00:00:00,2020,August,Wednesday,19,232,22,D33,Toronto,47,Don Valley Village (47),"Apartment (Rooming House, Condo)",Apartment,GT,,OT,24,BLK,600.0,STOLEN,2793,"{'type': 'Point', 'coordinates': (-79.34428001, 43.78097583)}"
-2802,8065,GO-20142228953,THEFT UNDER,2014-06-04T00:00:00,2014,June,Wednesday,4,155,18,2014-06-05T00:00:00,2014,June,Thursday,5,156,19,D33,Toronto,47,Don Valley Village (47),Ttc Subway Station,Transit,EMMO,E-BIKE,EL,1,BLK,3000.0,STOLEN,2794,"{'type': 'Point', 'coordinates': (-79.34368106, 43.77583447)}"
-2803,8358,GO-20149004771,THEFT UNDER,2014-07-07T00:00:00,2014,July,Monday,7,188,13,2014-07-07T00:00:00,2014,July,Monday,7,188,14,D33,Toronto,47,Don Valley Village (47),"Apartment (Rooming House, Condo)",Apartment,CC,700C PRESTO,OT,21,BLU,220.0,STOLEN,2795,"{'type': 'Point', 'coordinates': (-79.35069147, 43.78541589)}"
-2804,8761,GO-20142800677,THEFT UNDER,2014-08-25T00:00:00,2014,August,Monday,25,237,13,2014-08-29T00:00:00,2014,August,Friday,29,241,15,D33,Toronto,47,Don Valley Village (47),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,JAMIES,VENTURE SPORT,OT,16,GRY,640.0,STOLEN,2796,"{'type': 'Point', 'coordinates': (-79.34368106, 43.77583447)}"
-2805,8977,GO-20149007213,THEFT UNDER,2014-09-25T00:00:00,2014,September,Thursday,25,268,19,2014-09-25T00:00:00,2014,September,Thursday,25,268,20,D33,Toronto,47,Don Valley Village (47),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NEXT,,MT,50,WHI,100.0,STOLEN,2797,"{'type': 'Point', 'coordinates': (-79.35903236, 43.79083001)}"
-2806,8978,GO-20149007213,THEFT UNDER,2014-09-25T00:00:00,2014,September,Thursday,25,268,19,2014-09-25T00:00:00,2014,September,Thursday,25,268,20,D33,Toronto,47,Don Valley Village (47),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MO,,BM,50,ONG,140.0,STOLEN,2798,"{'type': 'Point', 'coordinates': (-79.35903236, 43.79083001)}"
-2807,9613,GO-2015836500,THEFT UNDER,2015-05-19T00:00:00,2015,May,Tuesday,19,139,18,2015-05-19T00:00:00,2015,May,Tuesday,19,139,20,D33,Toronto,47,Don Valley Village (47),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,DEVINCI,MILANO,OT,0,BLU,750.0,STOLEN,2799,"{'type': 'Point', 'coordinates': (-79.3490833, 43.78276777)}"
-2808,9825,GO-20159003714,THEFT UNDER,2015-06-17T00:00:00,2015,June,Wednesday,17,168,8,2015-06-18T00:00:00,2015,June,Thursday,18,169,1,D33,Toronto,47,Don Valley Village (47),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,MT,15,BLK,300.0,STOLEN,2800,"{'type': 'Point', 'coordinates': (-79.35645559, 43.78160432)}"
-2809,10455,GO-20159007095,THEFT UNDER,2015-09-12T00:00:00,2015,September,Saturday,12,255,17,2015-09-12T00:00:00,2015,September,Saturday,12,255,19,D33,Toronto,47,Don Valley Village (47),Ttc Subway Station,Transit,SC,,RG,30,,1000.0,STOLEN,2801,"{'type': 'Point', 'coordinates': (-79.34699939000001, 43.77510692)}"
-2810,10525,GO-20159007583,THEFT UNDER,2015-09-22T00:00:00,2015,September,Tuesday,22,265,12,2015-09-22T00:00:00,2015,September,Tuesday,22,265,15,D33,Toronto,47,Don Valley Village (47),Schools During Supervised Activity,Educational,CC,,MT,21,BLK,550.0,STOLEN,2802,"{'type': 'Point', 'coordinates': (-79.3490833, 43.78276777)}"
-2811,13514,GO-20191519273,THEFT UNDER - BICYCLE,2019-08-05T00:00:00,2019,August,Monday,5,217,12,2019-08-11T00:00:00,2019,August,Sunday,11,223,10,D33,Toronto,47,Don Valley Village (47),"Apartment (Rooming House, Condo)",Apartment,OTHER,BMX,MT,1,SIL,200.0,STOLEN,2803,"{'type': 'Point', 'coordinates': (-79.35384087, 43.77936549)}"
-2812,13568,GO-20201427818,THEFT OF EBIKE UNDER $5000,2020-07-29T00:00:00,2020,July,Wednesday,29,211,17,2020-07-31T00:00:00,2020,July,Friday,31,213,16,D33,Toronto,47,Don Valley Village (47),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,ELECTRA BIKE,TOWNIE GO,EL,1,GRY,2150.0,STOLEN,2804,"{'type': 'Point', 'coordinates': (-79.34565645, 43.78040235)}"
-2813,13684,GO-20171164669,THEFT UNDER - BICYCLE,2017-06-28T00:00:00,2017,June,Wednesday,28,179,15,2017-06-29T00:00:00,2017,June,Thursday,29,180,16,D33,Toronto,47,Don Valley Village (47),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUPERCYCLE,,MT,6,OTH,150.0,STOLEN,2805,"{'type': 'Point', 'coordinates': (-79.34368106, 43.77583447)}"
-2814,13819,GO-20189030970,THEFT UNDER - BICYCLE,2018-09-16T00:00:00,2018,September,Sunday,16,259,16,2018-09-18T00:00:00,2018,September,Tuesday,18,261,11,D33,Toronto,47,Don Valley Village (47),"Apartment (Rooming House, Condo)",Apartment,UK,,TR,1,BLU,100.0,STOLEN,2806,"{'type': 'Point', 'coordinates': (-79.34569344, 43.77963413)}"
-2815,14348,GO-20141719595,THEFT UNDER,2014-03-16T00:00:00,2014,March,Sunday,16,75,9,2014-03-18T00:00:00,2014,March,Tuesday,18,77,9,D33,Toronto,47,Don Valley Village (47),"Single Home, House (Attach Garage, Cottage, Mobile)",House,IRON HORSE,,OT,10,BLK,300.0,STOLEN,2807,"{'type': 'Point', 'coordinates': (-79.36263093, 43.77527296000001)}"
-2816,14416,GO-20142954226,PROPERTY - LOST,2014-09-21T00:00:00,2014,September,Sunday,21,264,14,2014-09-21T00:00:00,2014,September,Sunday,21,264,14,D33,Toronto,47,Don Valley Village (47),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,UNKN,RG,12,BRN,75.0,UNKNOWN,2808,"{'type': 'Point', 'coordinates': (-79.36147665, 43.78869355)}"
-2817,16800,GO-20199036015,THEFT UNDER - BICYCLE,2019-10-11T00:00:00,2019,October,Friday,11,284,21,2019-10-31T00:00:00,2019,October,Thursday,31,304,21,D33,Toronto,47,Don Valley Village (47),Ttc Subway Station,Transit,SPECIALIZED,TARMAC SL4,RC,10,BLK,2600.0,STOLEN,2809,"{'type': 'Point', 'coordinates': (-79.34699939000001, 43.77510692)}"
-2818,16820,GO-20209016335,THEFT UNDER - BICYCLE,2020-06-16T00:00:00,2020,June,Tuesday,16,168,19,2020-06-27T00:00:00,2020,June,Saturday,27,179,18,D33,Toronto,47,Don Valley Village (47),"Apartment (Rooming House, Condo)",Apartment,CC,APEX,MT,21,WHI,650.0,STOLEN,2810,"{'type': 'Point', 'coordinates': (-79.34785549, 43.77712857)}"
-2819,16839,GO-20209020919,THEFT UNDER - BICYCLE,2020-08-20T00:00:00,2020,August,Thursday,20,233,15,2020-08-21T00:00:00,2020,August,Friday,21,234,16,D33,Toronto,47,Don Valley Village (47),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,20,RED,200.0,STOLEN,2811,"{'type': 'Point', 'coordinates': (-79.36293102, 43.78647219)}"
-2820,17036,GO-2018960448,B&E W'INTENT,2018-05-19T00:00:00,2018,May,Saturday,19,139,1,2018-05-28T00:00:00,2018,May,Monday,28,148,9,D33,Toronto,47,Don Valley Village (47),"Apartment (Rooming House, Condo)",Apartment,TREK,MARLIN,MT,10,BLK,594.0,STOLEN,2812,"{'type': 'Point', 'coordinates': (-79.34869595, 43.77908536000001)}"
-2821,17037,GO-2018960448,B&E W'INTENT,2018-05-19T00:00:00,2018,May,Saturday,19,139,1,2018-05-28T00:00:00,2018,May,Monday,28,148,9,D33,Toronto,47,Don Valley Village (47),"Apartment (Rooming House, Condo)",Apartment,TREK,MARLIN,MT,10,BLK,1000.0,STOLEN,2813,"{'type': 'Point', 'coordinates': (-79.34869595, 43.77908536000001)}"
-2822,17110,GO-20189033604,THEFT UNDER - BICYCLE,2018-10-10T00:00:00,2018,October,Wednesday,10,283,16,2018-10-11T00:00:00,2018,October,Thursday,11,284,9,D33,Toronto,47,Don Valley Village (47),Ttc Subway Station,Transit,CC,29E,MT,10,BLK,800.0,STOLEN,2814,"{'type': 'Point', 'coordinates': (-79.34699939000001, 43.77510692)}"
-2823,17135,GO-2015896438,THEFT UNDER,2015-05-25T00:00:00,2015,May,Monday,25,145,8,2015-05-29T00:00:00,2015,May,Friday,29,149,9,D33,Toronto,47,Don Valley Village (47),Schools During Un-Supervised Activity,Educational,OTHER,,OT,0,BLUBLK,400.0,STOLEN,2815,"{'type': 'Point', 'coordinates': (-79.35069147, 43.78541589)}"
-2824,17231,GO-20169005848,THEFT UNDER - BICYCLE,2016-06-15T00:00:00,2016,June,Wednesday,15,167,12,2016-06-15T00:00:00,2016,June,Wednesday,15,167,16,D33,Toronto,47,Don Valley Village (47),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,7.3 FX WSD,RG,27,LGR,750.0,STOLEN,2816,"{'type': 'Point', 'coordinates': (-79.34368106, 43.77583447)}"
-2825,20123,GO-20209023689,THEFT UNDER,2020-09-17T00:00:00,2020,September,Thursday,17,261,8,2020-09-17T00:00:00,2020,September,Thursday,17,261,21,D33,Toronto,47,Don Valley Village (47),Ttc Subway Station,Transit,CC,,RG,30,BRN,170.0,STOLEN,2817,"{'type': 'Point', 'coordinates': (-79.34699939000001, 43.77510692)}"
-2826,20129,GO-20209026467,THEFT UNDER - BICYCLE,2020-10-14T00:00:00,2020,October,Wednesday,14,288,14,2020-10-14T00:00:00,2020,October,Wednesday,14,288,22,D33,Toronto,47,Don Valley Village (47),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,MT,12,PLE,450.0,STOLEN,2818,"{'type': 'Point', 'coordinates': (-79.36424218, 43.77315156000001)}"
-2827,20230,GO-20179013310,THEFT UNDER - BICYCLE,2017-08-25T00:00:00,2017,August,Friday,25,237,9,2017-08-25T00:00:00,2017,August,Friday,25,237,12,D33,Toronto,47,Don Valley Village (47),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,GRANITE PEAK,MT,18,GRY,100.0,STOLEN,2819,"{'type': 'Point', 'coordinates': (-79.35556312, 43.77982686)}"
-2828,20348,GO-20189026409,THEFT UNDER - BICYCLE,2018-08-14T00:00:00,2018,August,Tuesday,14,226,15,2018-08-14T00:00:00,2018,August,Tuesday,14,226,20,D33,Toronto,47,Don Valley Village (47),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,XVOLT,MT,20,RED,0.0,STOLEN,2820,"{'type': 'Point', 'coordinates': (-79.34569344, 43.77963413)}"
-2829,20408,GO-20151212996,THEFT UNDER,2015-07-17T00:00:00,2015,July,Friday,17,198,0,2015-07-17T00:00:00,2015,July,Friday,17,198,9,D33,Toronto,47,Don Valley Village (47),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BENT,18,BM,5,BLKGRY,118.0,STOLEN,2821,"{'type': 'Point', 'coordinates': (-79.3540479, 43.77994438)}"
-2830,20415,GO-20159004897,THEFT UNDER,2015-07-22T00:00:00,2015,July,Wednesday,22,203,12,2015-07-23T00:00:00,2015,July,Thursday,23,204,12,D33,Toronto,47,Don Valley Village (47),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,ROAD BIKE,RC,10,BLU,1200.0,STOLEN,2822,"{'type': 'Point', 'coordinates': (-79.35805866, 43.79080214)}"
-2831,20483,GO-2016653898,THEFT UNDER - BICYCLE,2016-04-09T00:00:00,2016,April,Saturday,9,100,16,2016-04-17T00:00:00,2016,April,Sunday,17,108,11,D33,Toronto,47,Don Valley Village (47),"Apartment (Rooming House, Condo)",Apartment,OTHER,,MT,24,BLK,250.0,STOLEN,2823,"{'type': 'Point', 'coordinates': (-79.34785549, 43.77712857)}"
-2832,1288,GO-20179013850,THEFT UNDER - BICYCLE,2017-08-31T00:00:00,2017,August,Thursday,31,243,15,2017-09-01T00:00:00,2017,September,Friday,1,244,17,D33,Toronto,48,Hillcrest Village (48),Universities / Colleges,Educational,GT,GT AGGRESSOR,MT,35,GRY,550.0,STOLEN,2824,"{'type': 'Point', 'coordinates': (-79.35182876, 43.79705548)}"
-2833,1347,GO-20179014320,THEFT UNDER,2017-09-08T00:00:00,2017,September,Friday,8,251,20,2017-09-09T00:00:00,2017,September,Saturday,9,252,11,D33,Toronto,48,Hillcrest Village (48),"Apartment (Rooming House, Condo)",Apartment,UK,2013 SECTEUR SP,OT,18,BLK,1400.0,STOLEN,2825,"{'type': 'Point', 'coordinates': (-79.35346208, 43.80138276)}"
-2834,3378,GO-20181624052,B&E,2018-09-01T00:00:00,2018,September,Saturday,1,244,20,2018-09-02T00:00:00,2018,September,Sunday,2,245,11,D32,Toronto,39,Bedford Park-Nortown (39),"Apartment (Rooming House, Condo)",Apartment,FOCUS,RACING,RC,6,BLK,1300.0,STOLEN,2826,"{'type': 'Point', 'coordinates': (-79.42194247, 43.7302721)}"
-2835,3419,GO-20181666812,THEFT UNDER - BICYCLE,2018-09-08T00:00:00,2018,September,Saturday,8,251,19,2018-09-08T00:00:00,2018,September,Saturday,8,251,22,D32,Toronto,39,Bedford Park-Nortown (39),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,HARD ROCK,MT,10,BRNBLK,700.0,STOLEN,2827,"{'type': 'Point', 'coordinates': (-79.42697078, 43.72145417)}"
-2836,3420,GO-20181666812,THEFT UNDER - BICYCLE,2018-09-08T00:00:00,2018,September,Saturday,8,251,19,2018-09-08T00:00:00,2018,September,Saturday,8,251,22,D32,Toronto,39,Bedford Park-Nortown (39),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,URBANYTE,MT,10,WHI,500.0,STOLEN,2828,"{'type': 'Point', 'coordinates': (-79.42697078, 43.72145417)}"
-2837,3421,GO-20181666812,THEFT UNDER - BICYCLE,2018-09-08T00:00:00,2018,September,Saturday,8,251,19,2018-09-08T00:00:00,2018,September,Saturday,8,251,22,D32,Toronto,39,Bedford Park-Nortown (39),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,SC,1,BLU,250.0,STOLEN,2829,"{'type': 'Point', 'coordinates': (-79.42697078, 43.72145417)}"
-2838,3422,GO-20181666812,THEFT UNDER - BICYCLE,2018-09-08T00:00:00,2018,September,Saturday,8,251,19,2018-09-08T00:00:00,2018,September,Saturday,8,251,22,D32,Toronto,39,Bedford Park-Nortown (39),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,A5 LUXE,SC,1,,130.0,STOLEN,2830,"{'type': 'Point', 'coordinates': (-79.42697078, 43.72145417)}"
-2839,3423,GO-20181666812,THEFT UNDER - BICYCLE,2018-09-08T00:00:00,2018,September,Saturday,8,251,19,2018-09-08T00:00:00,2018,September,Saturday,8,251,22,D32,Toronto,39,Bedford Park-Nortown (39),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,A5 LUXE,SC,1,,130.0,STOLEN,2831,"{'type': 'Point', 'coordinates': (-79.42697078, 43.72145417)}"
-2840,3456,GO-20181686721,THEFT UNDER - BICYCLE,2018-09-05T00:00:00,2018,September,Wednesday,5,248,18,2018-09-11T00:00:00,2018,September,Tuesday,11,254,21,D53,Toronto,39,Bedford Park-Nortown (39),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TREK,820,MT,24,BLUBLK,700.0,STOLEN,2832,"{'type': 'Point', 'coordinates': (-79.42937296, 43.71763013)}"
-2841,3567,GO-20189032152,THEFT UNDER - BICYCLE,2018-09-23T00:00:00,2018,September,Sunday,23,266,5,2018-09-27T00:00:00,2018,September,Thursday,27,270,18,D32,Toronto,39,Bedford Park-Nortown (39),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,SIRRUS ELITE,OT,18,BLK,1500.0,STOLEN,2833,"{'type': 'Point', 'coordinates': (-79.42336864, 43.72309455)}"
-2842,3568,GO-20189032152,THEFT UNDER - BICYCLE,2018-09-23T00:00:00,2018,September,Sunday,23,266,5,2018-09-27T00:00:00,2018,September,Thursday,27,270,18,D32,Toronto,39,Bedford Park-Nortown (39),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,10,,1000.0,STOLEN,2834,"{'type': 'Point', 'coordinates': (-79.42336864, 43.72309455)}"
-2843,3607,GO-20189032753,THEFT UNDER - BICYCLE,2018-09-05T00:00:00,2018,September,Wednesday,5,248,18,2018-10-03T00:00:00,2018,October,Wednesday,3,276,11,D53,Toronto,39,Bedford Park-Nortown (39),Convenience Stores,Commercial,TR,820,MT,10,BLU,750.0,STOLEN,2835,"{'type': 'Point', 'coordinates': (-79.42937296, 43.71763013)}"
-2844,3646,GO-20181869486,B&E,2018-10-10T00:00:00,2018,October,Wednesday,10,283,3,2018-10-10T00:00:00,2018,October,Wednesday,10,283,4,D32,Toronto,39,Bedford Park-Nortown (39),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,18,BLKRED,2000.0,STOLEN,2836,"{'type': 'Point', 'coordinates': (-79.40790373, 43.73783172000001)}"
-2845,4477,GO-20191078718,THEFT UNDER,2019-06-10T00:00:00,2019,June,Monday,10,161,19,2019-06-11T00:00:00,2019,June,Tuesday,11,162,18,D32,Toronto,39,Bedford Park-Nortown (39),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CANNONDALE,,OT,12,SIL,2000.0,STOLEN,2837,"{'type': 'Point', 'coordinates': (-79.41973674, 43.7248158)}"
-2846,4513,GO-20191106695,THEFT FROM MOTOR VEHICLE UNDER,2019-06-14T00:00:00,2019,June,Friday,14,165,17,2019-06-17T00:00:00,2019,June,Monday,17,168,14,D53,Toronto,39,Bedford Park-Nortown (39),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KUOTA,,OT,24,BLKWHI,2000.0,STOLEN,2838,"{'type': 'Point', 'coordinates': (-79.42560326, 43.71482834)}"
-2847,4574,GO-20191159543,B&E,2019-06-21T00:00:00,2019,June,Friday,21,172,22,2019-06-22T00:00:00,2019,June,Saturday,22,173,19,D32,Toronto,39,Bedford Park-Nortown (39),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,MARLIN 5,MT,21,BGE,700.0,STOLEN,2839,"{'type': 'Point', 'coordinates': (-79.42882618, 43.73659099000001)}"
-2848,4979,GO-20191488725,THEFT UNDER,2019-08-06T00:00:00,2019,August,Tuesday,6,218,22,2019-08-07T00:00:00,2019,August,Wednesday,7,219,8,D32,Toronto,39,Bedford Park-Nortown (39),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,GARY FISCHER,MT,10,GRY,700.0,STOLEN,2840,"{'type': 'Point', 'coordinates': (-79.41907033, 43.72312309)}"
-2849,5207,GO-20199028439,THEFT UNDER - BICYCLE,2019-08-26T00:00:00,2019,August,Monday,26,238,23,2019-09-01T00:00:00,2019,September,Sunday,1,244,14,D53,Toronto,39,Bedford Park-Nortown (39),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,,RG,21,RED,430.0,STOLEN,2841,"{'type': 'Point', 'coordinates': (-79.42626051, 43.71743464)}"
-2850,5338,GO-20191771267,THEFT FROM MOTOR VEHICLE UNDER,2019-09-14T00:00:00,2019,September,Saturday,14,257,18,2019-09-15T00:00:00,2019,September,Sunday,15,258,8,D32,Toronto,39,Bedford Park-Nortown (39),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,19 ROAM,MT,9,BLK,1524.0,STOLEN,2842,"{'type': 'Point', 'coordinates': (-79.42696966, 43.7258783)}"
-2851,2290,GO-20189014516,THEFT UNDER - BICYCLE,2018-05-10T00:00:00,2018,May,Thursday,10,130,19,2018-05-10T00:00:00,2018,May,Thursday,10,130,23,D32,Toronto,33,Clanton Park (33),"Apartment (Rooming House, Condo)",Apartment,NO,CHARGER 9.2,MT,21,BLK,859.0,STOLEN,2913,"{'type': 'Point', 'coordinates': (-79.43462077, 43.74000154)}"
-2852,5438,GO-20191876085,THEFT UNDER - BICYCLE,2019-09-27T00:00:00,2019,September,Friday,27,270,11,2019-09-29T00:00:00,2019,September,Sunday,29,272,12,D53,Toronto,39,Bedford Park-Nortown (39),"Open Areas (Lakes, Parks, Rivers)",Outside,DDOREL INDUSTRY,GT AGRESSOR,MT,21,BLKBLU,508.0,STOLEN,2843,"{'type': 'Point', 'coordinates': (-79.42637411, 43.71999108)}"
-2853,5625,GO-20192100966,THEFT UNDER,2019-10-20T00:00:00,2019,October,Sunday,20,293,8,2019-10-31T00:00:00,2019,October,Thursday,31,304,8,D32,Toronto,39,Bedford Park-Nortown (39),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ZZZ,ARIEL,OT,0,TRQ,1200.0,STOLEN,2844,"{'type': 'Point', 'coordinates': (-79.40955039, 43.73925974)}"
-2854,6388,GO-20209015380,THEFT UNDER,2020-06-14T00:00:00,2020,June,Sunday,14,166,22,2020-06-15T00:00:00,2020,June,Monday,15,167,11,D32,Toronto,39,Bedford Park-Nortown (39),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SPECIALIZED,RG,10,BLK,748.0,STOLEN,2845,"{'type': 'Point', 'coordinates': (-79.42434286, 43.72039931)}"
-2855,7216,GO-20209022749,THEFT UNDER - BICYCLE,2020-09-08T00:00:00,2020,September,Tuesday,8,252,20,2020-09-09T00:00:00,2020,September,Wednesday,9,253,13,D32,Toronto,39,Bedford Park-Nortown (39),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,ATX3,MT,21,BLK,600.0,STOLEN,2846,"{'type': 'Point', 'coordinates': (-79.40509942, 43.73697991)}"
-2856,7727,GO-20141266048,THEFT UNDER,2013-12-30T00:00:00,2013,December,Monday,30,364,17,2014-01-02T00:00:00,2014,January,Thursday,2,2,8,D53,Toronto,39,Bedford Park-Nortown (39),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KHS,VITAMIN A,OT,24,WHI,500.0,STOLEN,2847,"{'type': 'Point', 'coordinates': (-79.42955199, 43.71842236)}"
-2857,7758,GO-20141466776,THEFT UNDER,2014-02-03T00:00:00,2014,February,Monday,3,34,19,2014-02-04T00:00:00,2014,February,Tuesday,4,35,9,D32,Toronto,39,Bedford Park-Nortown (39),"Private Property Structure (Pool, Shed, Detached Garage)",Other,ROCKY MOUNTAIN,TRAILHEAD,MT,21,GRN,1400.0,STOLEN,2848,"{'type': 'Point', 'coordinates': (-79.42869182, 43.73211727)}"
-2858,7868,GO-20141969226,THEFT UNDER,2014-04-22T00:00:00,2014,April,Tuesday,22,112,14,2014-04-27T00:00:00,2014,April,Sunday,27,117,13,D53,Toronto,39,Bedford Park-Nortown (39),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,KLICK,SC,0,BLUONG,150.0,RECOVERED,2849,"{'type': 'Point', 'coordinates': (-79.42653724, 43.71821343)}"
-2859,8045,GO-20142220797,THEFT UNDER,2014-06-04T00:00:00,2014,June,Wednesday,4,155,15,2014-06-04T00:00:00,2014,June,Wednesday,4,155,16,D32,Toronto,39,Bedford Park-Nortown (39),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TREK,7.5 FX,TO,9,BLK,1099.0,STOLEN,2850,"{'type': 'Point', 'coordinates': (-79.41937283, 43.73239462)}"
-2860,8268,GO-20142412197,THEFT OF MOTOR VEHICLE,2014-07-01T00:00:00,2014,July,Tuesday,1,182,23,2014-07-02T00:00:00,2014,July,Wednesday,2,183,6,D32,Toronto,39,Bedford Park-Nortown (39),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,,OT,0,WHI,200.0,STOLEN,2851,"{'type': 'Point', 'coordinates': (-79.42340951, 43.72572745)}"
-2861,8269,GO-20142412197,THEFT OF MOTOR VEHICLE,2014-07-01T00:00:00,2014,July,Tuesday,1,182,23,2014-07-02T00:00:00,2014,July,Wednesday,2,183,6,D32,Toronto,39,Bedford Park-Nortown (39),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,0,GRN,200.0,STOLEN,2852,"{'type': 'Point', 'coordinates': (-79.42340951, 43.72572745)}"
-2862,8687,GO-20142733353,THEFT UNDER,2014-08-19T00:00:00,2014,August,Tuesday,19,231,0,2014-08-19T00:00:00,2014,August,Tuesday,19,231,14,D32,Toronto,39,Bedford Park-Nortown (39),"Apartment (Rooming House, Condo)",Apartment,TREK,8.3DS,RG,18,BLUWHI,700.0,UNKNOWN,2853,"{'type': 'Point', 'coordinates': (-79.4062109, 43.74185863)}"
-2863,9526,GO-2015746458,THEFT UNDER,2015-05-04T00:00:00,2015,May,Monday,4,124,22,2015-05-05T00:00:00,2015,May,Tuesday,5,125,13,D32,Toronto,39,Bedford Park-Nortown (39),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN,,MT,0,ONG,,STOLEN,2854,"{'type': 'Point', 'coordinates': (-79.42977557, 43.71925961)}"
-2864,10506,GO-20159007482,THEFT UNDER,2015-09-14T00:00:00,2015,September,Monday,14,257,9,2015-09-21T00:00:00,2015,September,Monday,21,264,0,D53,Toronto,39,Bedford Park-Nortown (39),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,CHARGER,MT,10,BLK,1500.0,STOLEN,2855,"{'type': 'Point', 'coordinates': (-79.42055748, 43.71777287)}"
-2865,11319,GO-20169004588,THEFT UNDER - BICYCLE,2016-05-13T00:00:00,2016,May,Friday,13,134,18,2016-05-16T00:00:00,2016,May,Monday,16,137,20,D32,Toronto,39,Bedford Park-Nortown (39),"Apartment (Rooming House, Condo)",Apartment,GI,TALON,MT,24,OTH,800.0,STOLEN,2856,"{'type': 'Point', 'coordinates': (-79.42382689, 43.73937509)}"
-2866,11435,GO-20169005290,THEFT UNDER - BICYCLE,2016-06-02T00:00:00,2016,June,Thursday,2,154,17,2016-06-02T00:00:00,2016,June,Thursday,2,154,22,D32,Toronto,39,Bedford Park-Nortown (39),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,MT,21,BLU,100.0,STOLEN,2857,"{'type': 'Point', 'coordinates': (-79.41906997, 43.73087319)}"
-2867,11654,GO-20169006464,THEFT OF EBIKE UNDER $5000,2016-06-26T00:00:00,2016,June,Sunday,26,178,10,2016-06-28T00:00:00,2016,June,Tuesday,28,180,10,D53,Toronto,39,Bedford Park-Nortown (39),"Apartment (Rooming House, Condo)",Apartment,UK,BOLD,EL,7,BLK,2699.0,STOLEN,2858,"{'type': 'Point', 'coordinates': (-79.42724094, 43.70877151)}"
-2868,11811,GO-20161247517,THEFT UNDER - BICYCLE,2016-07-13T00:00:00,2016,July,Wednesday,13,195,21,2016-07-16T00:00:00,2016,July,Saturday,16,198,11,D32,Toronto,39,Bedford Park-Nortown (39),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,MT,18,RED,250.0,STOLEN,2859,"{'type': 'Point', 'coordinates': (-79.42080063, 43.73809342)}"
-2869,11918,GO-20169007780,THEFT UNDER - BICYCLE,2016-07-26T00:00:00,2016,July,Tuesday,26,208,14,2016-07-26T00:00:00,2016,July,Tuesday,26,208,16,D32,Toronto,39,Bedford Park-Nortown (39),Schools During Supervised Activity,Educational,GI,TCR ADVANCED PR,RC,22,WHI,3000.0,STOLEN,2860,"{'type': 'Point', 'coordinates': (-79.41747865, 43.7269925)}"
-2870,11928,GO-20169007805,THEFT UNDER - BICYCLE,2016-07-20T00:00:00,2016,July,Wednesday,20,202,13,2016-07-27T00:00:00,2016,July,Wednesday,27,209,16,D32,Toronto,39,Bedford Park-Nortown (39),Schools During Supervised Activity,Educational,RA,,OT,21,RED,350.0,STOLEN,2861,"{'type': 'Point', 'coordinates': (-79.4306217, 43.72307668)}"
-2871,12074,GO-20169008651,THEFT UNDER - BICYCLE,2016-08-04T00:00:00,2016,August,Thursday,4,217,19,2016-08-12T00:00:00,2016,August,Friday,12,225,16,D53,Toronto,39,Bedford Park-Nortown (39),Schools During Un-Supervised Activity,Educational,CC,SL 2.0,MT,21,LGR,520.0,STOLEN,2862,"{'type': 'Point', 'coordinates': (-79.42685351, 43.71901925)}"
-2872,12353,GO-20161644809,ROBBERY - MUGGING,2016-09-15T00:00:00,2016,September,Thursday,15,259,22,2016-09-15T00:00:00,2016,September,Thursday,15,259,22,D32,Toronto,39,Bedford Park-Nortown (39),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,ENCORE AMP,BM,1,BLK,450.0,STOLEN,2863,"{'type': 'Point', 'coordinates': (-79.42187669000002, 43.7355153)}"
-2873,12396,GO-20169010692,THEFT UNDER - BICYCLE,2016-09-19T00:00:00,2016,September,Monday,19,263,1,2016-09-19T00:00:00,2016,September,Monday,19,263,10,D32,Toronto,39,Bedford Park-Nortown (39),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,16,RED,200.0,STOLEN,2864,"{'type': 'Point', 'coordinates': (-79.42005602, 43.72563964)}"
-2874,12539,GO-20161755713,THEFT UNDER - BICYCLE,2016-10-02T00:00:00,2016,October,Sunday,2,276,23,2016-10-03T00:00:00,2016,October,Monday,3,277,8,D32,Toronto,39,Bedford Park-Nortown (39),"Apartment (Rooming House, Condo)",Apartment,MEC,5044-850,MT,10,GRYBLK,1300.0,STOLEN,2865,"{'type': 'Point', 'coordinates': (-79.40587308, 43.74037772)}"
-2875,12551,GO-20161766162,THEFT UNDER - BICYCLE,2016-10-04T00:00:00,2016,October,Tuesday,4,278,17,2016-10-04T00:00:00,2016,October,Tuesday,4,278,17,D32,Toronto,39,Bedford Park-Nortown (39),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,ESCAPE,OT,24,BLK,800.0,STOLEN,2866,"{'type': 'Point', 'coordinates': (-79.42454355, 43.72891016)}"
-2876,12552,GO-20161766162,THEFT UNDER - BICYCLE,2016-10-04T00:00:00,2016,October,Tuesday,4,278,17,2016-10-04T00:00:00,2016,October,Tuesday,4,278,17,D32,Toronto,39,Bedford Park-Nortown (39),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,,OT,24,WHIGRY,1000.0,STOLEN,2867,"{'type': 'Point', 'coordinates': (-79.42454355, 43.72891016)}"
-2877,12692,GO-20161922384,ROBBERY - MUGGING,2016-10-26T00:00:00,2016,October,Wednesday,26,300,19,2016-10-29T00:00:00,2016,October,Saturday,29,303,10,D32,Toronto,39,Bedford Park-Nortown (39),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,,RG,10,BLUWHI,600.0,STOLEN,2868,"{'type': 'Point', 'coordinates': (-79.42423005, 43.7281624)}"
-2878,13044,GO-20209014841,THEFT UNDER - BICYCLE,2020-06-08T00:00:00,2020,June,Monday,8,160,12,2020-06-08T00:00:00,2020,June,Monday,8,160,12,D53,Toronto,39,Bedford Park-Nortown (39),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,,RC,21,WHI,1000.0,STOLEN,2869,"{'type': 'Point', 'coordinates': (-79.42340572, 43.71804485)}"
-2879,13482,GO-20199014209,THEFT UNDER,2019-04-04T00:00:00,2019,April,Thursday,4,94,17,2019-05-07T00:00:00,2019,May,Tuesday,7,127,14,D32,Toronto,39,Bedford Park-Nortown (39),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KO,,RC,20,ONG,2500.0,STOLEN,2870,"{'type': 'Point', 'coordinates': (-79.4182398, 43.72890132)}"
-2880,13483,GO-20199014209,THEFT UNDER,2019-04-04T00:00:00,2019,April,Thursday,4,94,17,2019-05-07T00:00:00,2019,May,Tuesday,7,127,14,D32,Toronto,39,Bedford Park-Nortown (39),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,TO,10,BLK,1500.0,STOLEN,2871,"{'type': 'Point', 'coordinates': (-79.4182398, 43.72890132)}"
-2881,13510,GO-20199023947,THEFT FROM MOTOR VEHICLE UNDER,2019-07-21T00:00:00,2019,July,Sunday,21,202,23,2019-07-26T00:00:00,2019,July,Friday,26,207,18,D32,Toronto,39,Bedford Park-Nortown (39),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,PARATROOPER PRO,FO,27,BLK,1450.0,STOLEN,2872,"{'type': 'Point', 'coordinates': (-79.42336864, 43.72309455)}"
-2882,24525,GO-20161078620,THEFT UNDER - BICYCLE,2016-06-20T00:00:00,2016,June,Monday,20,172,19,2016-06-20T00:00:00,2016,June,Monday,20,172,19,D32,Toronto,39,Bedford Park-Nortown (39),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,10,,400.0,STOLEN,2911,"{'type': 'Point', 'coordinates': (-79.42753696, 43.7282775)}"
-2883,13511,GO-20199024376,THEFT UNDER - BICYCLE,2019-07-30T00:00:00,2019,July,Tuesday,30,211,12,2019-07-30T00:00:00,2019,July,Tuesday,30,211,22,D32,Toronto,39,Bedford Park-Nortown (39),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,TREK FX 2 DISC,OT,24,BLK,800.0,STOLEN,2873,"{'type': 'Point', 'coordinates': (-79.41816142, 43.740629410000004)}"
-2884,13517,GO-20191633841,THEFT UNDER,2019-08-27T00:00:00,2019,August,Tuesday,27,239,3,2019-08-27T00:00:00,2019,August,Tuesday,27,239,9,D32,Toronto,39,Bedford Park-Nortown (39),"Single Home, House (Attach Garage, Cottage, Mobile)",House,INFINITY,LYON,RC,20,,2000.0,STOLEN,2874,"{'type': 'Point', 'coordinates': (-79.42697078, 43.72145417)}"
-2885,13584,GO-20209023443,THEFT UNDER - BICYCLE,2020-09-09T00:00:00,2020,September,Wednesday,9,253,16,2020-09-16T00:00:00,2020,September,Wednesday,16,260,16,D32,Toronto,39,Bedford Park-Nortown (39),"Apartment (Rooming House, Condo)",Apartment,TR,DARK TEAL HYBRI,RG,12,DBL,1500.0,STOLEN,2875,"{'type': 'Point', 'coordinates': (-79.4182398, 43.72890132)}"
-2886,14940,GO-201584706,THEFT UNDER,2014-12-26T00:00:00,2014,December,Friday,26,360,12,2015-01-15T00:00:00,2015,January,Thursday,15,15,13,D32,Toronto,39,Bedford Park-Nortown (39),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,JS2010,MT,24,GRY,500.0,STOLEN,2876,"{'type': 'Point', 'coordinates': (-79.4062109, 43.74185863)}"
-2887,16006,GO-20169001901,THEFT UNDER - BICYCLE,2016-02-28T00:00:00,2016,February,Sunday,28,59,15,2016-02-29T00:00:00,2016,February,Monday,29,60,20,D53,Toronto,39,Bedford Park-Nortown (39),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,ROCKHOPPER 29,MT,27,BLK,500.0,STOLEN,2877,"{'type': 'Point', 'coordinates': (-79.4180099, 43.72028243)}"
-2888,16764,GO-20191074420,THEFT UNDER,2019-06-11T00:00:00,2019,June,Tuesday,11,162,0,2019-06-11T00:00:00,2019,June,Tuesday,11,162,8,D32,Toronto,39,Bedford Park-Nortown (39),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KHS,URBAN XPRESS,MT,21,BLK,,STOLEN,2878,"{'type': 'Point', 'coordinates': (-79.41973674, 43.7248158)}"
-2889,16792,GO-20191656678,THEFT OF EBIKE UNDER $5000,2019-08-29T00:00:00,2019,August,Thursday,29,241,23,2019-08-30T00:00:00,2019,August,Friday,30,242,10,D32,Toronto,39,Bedford Park-Nortown (39),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,DAYMAR,BOSTON,EL,0,BLK,1800.0,STOLEN,2879,"{'type': 'Point', 'coordinates': (-79.43169726, 43.7278345)}"
-2890,1038,GO-20179011554,THEFT UNDER,2017-07-31T00:00:00,2017,July,Monday,31,212,11,2017-08-02T00:00:00,2017,August,Wednesday,2,214,16,D32,Toronto,40,St.Andrew-Windfields (40),Ttc Subway Station,Transit,TR,,MT,21,BLU,300.0,STOLEN,2912,"{'type': 'Point', 'coordinates': (-79.40668473, 43.7441499)}"
-2891,16803,GO-20199041049,THEFT UNDER,2019-12-15T00:00:00,2019,December,Sunday,15,349,11,2019-12-16T00:00:00,2019,December,Monday,16,350,0,D32,Toronto,39,Bedford Park-Nortown (39),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,HPR700,RC,15,BLK,148.0,STOLEN,2880,"{'type': 'Point', 'coordinates': (-79.42282909, 43.73961469)}"
-2892,16833,GO-20201444478,B&E,2020-08-03T00:00:00,2020,August,Monday,3,216,5,2020-08-03T00:00:00,2020,August,Monday,3,216,5,D32,Toronto,39,Bedford Park-Nortown (39),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OPUS,CLASSICO,RG,0,LBLSIL,980.0,STOLEN,2881,"{'type': 'Point', 'coordinates': (-79.41937283, 43.73239462)}"
-2893,16859,GO-20202236641,B&E,2020-11-26T00:00:00,2020,November,Thursday,26,331,5,2020-11-26T00:00:00,2020,November,Thursday,26,331,5,D32,Toronto,39,Bedford Park-Nortown (39),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CANNONDALE,F900,MT,8,SIL,1500.0,STOLEN,2882,"{'type': 'Point', 'coordinates': (-79.41966455, 43.73413207)}"
-2894,17098,GO-20189029580,THEFT UNDER,2018-09-08T00:00:00,2018,September,Saturday,8,251,10,2018-09-08T00:00:00,2018,September,Saturday,8,251,14,D32,Toronto,39,Bedford Park-Nortown (39),"Apartment (Rooming House, Condo)",Apartment,SC,,OT,1,PLE,400.0,STOLEN,2883,"{'type': 'Point', 'coordinates': (-79.42282909, 43.73961469)}"
-2895,17099,GO-20181666812,THEFT UNDER - BICYCLE,2018-09-08T00:00:00,2018,September,Saturday,8,251,19,2018-09-08T00:00:00,2018,September,Saturday,8,251,22,D32,Toronto,39,Bedford Park-Nortown (39),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,24,,,STOLEN,2884,"{'type': 'Point', 'coordinates': (-79.42697078, 43.72145417)}"
-2896,17767,GO-20173038596,THEFT OF EBIKE UNDER $5000,2017-10-15T00:00:00,2017,October,Sunday,15,288,14,2017-11-21T00:00:00,2017,November,Tuesday,21,325,9,D32,Toronto,39,Bedford Park-Nortown (39),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,VALENCIA PLUS,EL,1,,2680.0,STOLEN,2885,"{'type': 'Point', 'coordinates': (-79.42382689, 43.73937509)}"
-2897,17954,GO-20143568899,THEFT OVER,2014-12-29T00:00:00,2014,December,Monday,29,363,17,2014-12-29T00:00:00,2014,December,Monday,29,363,17,D32,Toronto,39,Bedford Park-Nortown (39),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,,MT,9,,,STOLEN,2886,"{'type': 'Point', 'coordinates': (-79.41716163, 43.73467936000001)}"
-2898,17957,GO-2015625277,THEFT UNDER,2015-04-15T00:00:00,2015,April,Wednesday,15,105,17,2015-04-15T00:00:00,2015,April,Wednesday,15,105,20,D32,Toronto,39,Bedford Park-Nortown (39),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,RG,7,PLE,200.0,STOLEN,2887,"{'type': 'Point', 'coordinates': (-79.42443902, 43.73306868)}"
-2899,18053,GO-20169011485,THEFT UNDER,2016-09-19T00:00:00,2016,September,Monday,19,263,0,2016-10-03T00:00:00,2016,October,Monday,3,277,15,D32,Toronto,39,Bedford Park-Nortown (39),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,RIDEAU SLATE,OT,20,SIL,600.0,STOLEN,2888,"{'type': 'Point', 'coordinates': (-79.42243567, 43.72082109)}"
-2900,18054,GO-20169011485,THEFT UNDER,2016-09-19T00:00:00,2016,September,Monday,19,263,0,2016-10-03T00:00:00,2016,October,Monday,3,277,15,D32,Toronto,39,Bedford Park-Nortown (39),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MA,SCS5M,OT,20,BLK,1250.0,STOLEN,2889,"{'type': 'Point', 'coordinates': (-79.42243567, 43.72082109)}"
-2901,18114,GO-20179012940,THEFT UNDER - BICYCLE,2017-08-18T00:00:00,2017,August,Friday,18,230,21,2017-08-21T00:00:00,2017,August,Monday,21,233,15,D32,Toronto,39,Bedford Park-Nortown (39),"Apartment (Rooming House, Condo)",Apartment,RM,FUSION,MT,24,GRY,900.0,STOLEN,2890,"{'type': 'Point', 'coordinates': (-79.42681639, 43.73871093)}"
-2902,18872,GO-20143301083,B&E,2014-11-14T00:00:00,2014,November,Friday,14,318,9,2014-11-14T00:00:00,2014,November,Friday,14,318,15,D53,Toronto,39,Bedford Park-Nortown (39),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,,MT,18,MRN,500.0,STOLEN,2891,"{'type': 'Point', 'coordinates': (-79.41750450000002, 43.71861682)}"
-2903,18934,GO-20151565809,THEFT UNDER,2015-09-05T00:00:00,2015,September,Saturday,5,248,18,2015-09-10T00:00:00,2015,September,Thursday,10,253,19,D53,Toronto,39,Bedford Park-Nortown (39),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,8200,MT,21,BLUSIL,525.0,STOLEN,2892,"{'type': 'Point', 'coordinates': (-79.42193938, 43.70994269)}"
-2904,19637,GO-20142524376,B&E,2014-07-18T00:00:00,2014,July,Friday,18,199,15,2014-07-18T00:00:00,2014,July,Friday,18,199,18,D53,Toronto,39,Bedford Park-Nortown (39),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,UNKNOWN,TO,5,GRY,50.0,STOLEN,2893,"{'type': 'Point', 'coordinates': (-79.41994073, 43.72133695)}"
-2905,19715,GO-20159006217,THEFT UNDER,2015-08-24T00:00:00,2015,August,Monday,24,236,22,2015-08-26T00:00:00,2015,August,Wednesday,26,238,22,D53,Toronto,39,Bedford Park-Nortown (39),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GF,GARY FISHER,OT,21,BLK,2400.0,STOLEN,2894,"{'type': 'Point', 'coordinates': (-79.42436166, 43.71224174)}"
-2906,19719,GO-20159006467,THEFT UNDER,2015-08-27T00:00:00,2015,August,Thursday,27,239,7,2015-08-28T00:00:00,2015,August,Friday,28,240,13,D53,Toronto,39,Bedford Park-Nortown (39),Schools During Un-Supervised Activity,Educational,TR,,RG,21,SIL,500.0,STOLEN,2895,"{'type': 'Point', 'coordinates': (-79.42685351, 43.71901925)}"
-2907,20063,GO-20199024376,THEFT UNDER - BICYCLE,2019-07-30T00:00:00,2019,July,Tuesday,30,211,12,2019-07-30T00:00:00,2019,July,Tuesday,30,211,22,D32,Toronto,39,Bedford Park-Nortown (39),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,TREK 2020 FX 2,OT,24,BLK,800.0,STOLEN,2896,"{'type': 'Point', 'coordinates': (-79.41816142, 43.740629410000004)}"
-2908,20075,GO-20191957645,B&E,2019-10-10T00:00:00,2019,October,Thursday,10,283,0,2019-10-10T00:00:00,2019,October,Thursday,10,283,17,D32,Toronto,39,Bedford Park-Nortown (39),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MEC,CHANCE,OT,11,GRYBRN,2000.0,STOLEN,2897,"{'type': 'Point', 'coordinates': (-79.4171845, 43.72624535)}"
-2909,22034,GO-20149005985,THEFT UNDER,2014-08-14T00:00:00,2014,August,Thursday,14,226,6,2014-08-15T00:00:00,2014,August,Friday,15,227,14,D32,Toronto,39,Bedford Park-Nortown (39),"Apartment (Rooming House, Condo)",Apartment,CA,RZ120 - 1,MT,10,WHI,2500.0,STOLEN,2898,"{'type': 'Point', 'coordinates': (-79.4062109, 43.74185863)}"
-2910,22106,GO-20169005541,THEFT UNDER - BICYCLE,2016-06-07T00:00:00,2016,June,Tuesday,7,159,19,2016-06-09T00:00:00,2016,June,Thursday,9,161,19,D32,Toronto,39,Bedford Park-Nortown (39),"Apartment (Rooming House, Condo)",Apartment,TR,7.2 FX WSD,OT,21,BLK,800.0,STOLEN,2899,"{'type': 'Point', 'coordinates': (-79.42382689, 43.73937509)}"
-2911,22150,GO-20179006456,THEFT UNDER - BICYCLE,2017-05-08T00:00:00,2017,May,Monday,8,128,12,2017-05-16T00:00:00,2017,May,Tuesday,16,136,13,D32,Toronto,39,Bedford Park-Nortown (39),Convenience Stores,Commercial,OT,STUMPJUMPER,MT,16,,4000.0,STOLEN,2900,"{'type': 'Point', 'coordinates': (-79.41588846, 43.72301278)}"
-2912,22200,GO-20161659568,THEFT UNDER - BICYCLE,2016-09-07T00:00:00,2016,September,Wednesday,7,251,14,2016-09-18T00:00:00,2016,September,Sunday,18,262,7,D53,Toronto,39,Bedford Park-Nortown (39),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GARY FISHER,MONONA,OT,21,SIL,1500.0,STOLEN,2901,"{'type': 'Point', 'coordinates': (-79.41867995, 43.71838363)}"
-2913,23245,GO-2019624576,THEFT FROM MOTOR VEHICLE UNDER,2019-04-07T00:00:00,2019,April,Sunday,7,97,0,2019-04-07T00:00:00,2019,April,Sunday,7,97,8,D32,Toronto,39,Bedford Park-Nortown (39),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,,RG,14,,150.0,STOLEN,2902,"{'type': 'Point', 'coordinates': (-79.42905041, 43.73297712)}"
-2914,23246,GO-2019624576,THEFT FROM MOTOR VEHICLE UNDER,2019-04-07T00:00:00,2019,April,Sunday,7,97,0,2019-04-07T00:00:00,2019,April,Sunday,7,97,8,D32,Toronto,39,Bedford Park-Nortown (39),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,,RG,14,,150.0,STOLEN,2903,"{'type': 'Point', 'coordinates': (-79.42905041, 43.73297712)}"
-2915,23323,GO-20201016891,THEFT UNDER - BICYCLE,2020-06-02T00:00:00,2020,June,Tuesday,2,154,4,2020-06-03T00:00:00,2020,June,Wednesday,3,155,2,D32,Toronto,39,Bedford Park-Nortown (39),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,DIADORA,MT,18,BLKGRN,300.0,STOLEN,2904,"{'type': 'Point', 'coordinates': (-79.42336864, 43.72309455)}"
-2916,23338,GO-20201306151,THEFT UNDER - BICYCLE,2020-07-13T00:00:00,2020,July,Monday,13,195,6,2020-07-17T00:00:00,2020,July,Friday,17,199,10,D32,Toronto,39,Bedford Park-Nortown (39),"Apartment (Rooming House, Condo)",Apartment,BT WIN,RIVERSIDE 500,OT,9,BLKRED,430.0,STOLEN,2905,"{'type': 'Point', 'coordinates': (-79.41966455, 43.73413207)}"
-2917,24297,GO-20189013404,THEFT UNDER - BICYCLE,2018-04-27T00:00:00,2018,April,Friday,27,117,12,2018-04-29T00:00:00,2018,April,Sunday,29,119,18,D32,Toronto,39,Bedford Park-Nortown (39),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,GIANT RAPID 1 2,OT,18,BLK,1200.0,STOLEN,2906,"{'type': 'Point', 'coordinates': (-79.41939000000002, 43.72393793)}"
-2918,24298,GO-20189013404,THEFT UNDER - BICYCLE,2018-04-27T00:00:00,2018,April,Friday,27,117,12,2018-04-29T00:00:00,2018,April,Sunday,29,119,18,D32,Toronto,39,Bedford Park-Nortown (39),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,ARGON 18,RC,10,WHI,2200.0,STOLEN,2907,"{'type': 'Point', 'coordinates': (-79.41939000000002, 43.72393793)}"
-2919,24463,GO-20151150935,THEFT UNDER,2015-06-20T00:00:00,2015,June,Saturday,20,171,15,2015-07-08T00:00:00,2015,July,Wednesday,8,189,7,D32,Toronto,39,Bedford Park-Nortown (39),Ttc Subway Station,Transit,UNKNOWN,UNKN,RG,0,,,STOLEN,2908,"{'type': 'Point', 'coordinates': (-79.41816142, 43.740629410000004)}"
-2920,24466,GO-20159004724,THEFT UNDER,2015-07-19T00:00:00,2015,July,Sunday,19,200,12,2015-07-19T00:00:00,2015,July,Sunday,19,200,14,D32,Toronto,39,Bedford Park-Nortown (39),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,,TO,12,GRY,0.0,STOLEN,2909,"{'type': 'Point', 'coordinates': (-79.42423005, 43.7281624)}"
-2921,24522,GO-20169005304,THEFT UNDER - BICYCLE,2016-06-03T00:00:00,2016,June,Friday,3,155,6,2016-06-03T00:00:00,2016,June,Friday,3,155,10,D32,Toronto,39,Bedford Park-Nortown (39),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,SILVERSTONE SL3,TO,30,GRY,1400.0,STOLEN,2910,"{'type': 'Point', 'coordinates': (-79.41816142, 43.740629410000004)}"
-2922,3668,GO-20181882794,B&E,2018-10-11T00:00:00,2018,October,Thursday,11,284,23,2018-10-11T00:00:00,2018,October,Thursday,11,284,23,D32,Toronto,33,Clanton Park (33),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BMW,,RG,0,,,STOLEN,2914,"{'type': 'Point', 'coordinates': (-79.43963066, 43.73966281)}"
-2923,3669,GO-20189033664,THEFT UNDER - BICYCLE,2018-10-11T00:00:00,2018,October,Thursday,11,284,12,2018-10-11T00:00:00,2018,October,Thursday,11,284,13,D32,Toronto,33,Clanton Park (33),Bar / Restaurant,Commercial,OT,TRAIL X SPORT,MT,8,RED,600.0,STOLEN,2915,"{'type': 'Point', 'coordinates': (-79.43670332, 43.73681556)}"
-2924,4004,GO-20199001632,THEFT UNDER - BICYCLE,2018-12-05T00:00:00,2018,December,Wednesday,5,339,8,2019-01-13T00:00:00,2019,January,Sunday,13,13,18,D32,Toronto,33,Clanton Park (33),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,7,SIL,1200.0,STOLEN,2916,"{'type': 'Point', 'coordinates': (-79.44640353, 43.73475482)}"
-2925,4135,GO-2019624418,THEFT UNDER,2019-04-06T00:00:00,2019,April,Saturday,6,96,23,2019-04-07T00:00:00,2019,April,Sunday,7,97,7,D32,Toronto,33,Clanton Park (33),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GT,UNKNOWN,MT,0,RED,700.0,STOLEN,2917,"{'type': 'Point', 'coordinates': (-79.43420834, 43.73841659)}"
-2926,4136,GO-2019624418,THEFT UNDER,2019-04-06T00:00:00,2019,April,Saturday,6,96,23,2019-04-07T00:00:00,2019,April,Sunday,7,97,7,D32,Toronto,33,Clanton Park (33),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,PHANTOM 2,MT,0,BLKGRN,1500.0,STOLEN,2918,"{'type': 'Point', 'coordinates': (-79.43420834, 43.73841659)}"
-2927,5330,GO-20199029203,THEFT UNDER - BICYCLE,2019-09-08T00:00:00,2019,September,Sunday,8,251,0,2019-09-08T00:00:00,2019,September,Sunday,8,251,20,D32,Toronto,33,Clanton Park (33),"Apartment (Rooming House, Condo)",Apartment,NO,SEARCH A,RC,10,GRN,1600.0,STOLEN,2919,"{'type': 'Point', 'coordinates': (-79.43462077, 43.74000154)}"
-2928,6557,GO-20209017067,THEFT UNDER - BICYCLE,2020-07-02T00:00:00,2020,July,Thursday,2,184,13,2020-07-07T00:00:00,2020,July,Tuesday,7,189,20,D32,Toronto,33,Clanton Park (33),"Private Property Structure (Pool, Shed, Detached Garage)",Other,,MONSTER MOUNTAI,MT,6,BLU,300.0,STOLEN,2920,"{'type': 'Point', 'coordinates': (-79.43616343, 43.73796222)}"
-2929,6560,GO-20209017124,THEFT UNDER - BICYCLE,2020-07-08T00:00:00,2020,July,Wednesday,8,190,13,2020-07-08T00:00:00,2020,July,Wednesday,8,190,14,D32,Toronto,33,Clanton Park (33),"Apartment (Rooming House, Condo)",Apartment,GI,LIV ESCAPE 2 WO,OT,24,WHI,750.0,STOLEN,2921,"{'type': 'Point', 'coordinates': (-79.45017637, 43.75306779)}"
-2930,6678,GO-20201332166,THEFT UNDER,2020-07-18T00:00:00,2020,July,Saturday,18,200,3,2020-07-18T00:00:00,2020,July,Saturday,18,200,5,D32,Toronto,33,Clanton Park (33),"Apartment (Rooming House, Condo)",Apartment,OT,ESPACE 4,RG,18,GRY,750.0,STOLEN,2922,"{'type': 'Point', 'coordinates': (-79.44640353, 43.73475482)}"
-2931,10250,GO-20151402730,THEFT UNDER,2015-07-22T00:00:00,2015,July,Wednesday,22,203,23,2015-08-15T00:00:00,2015,August,Saturday,15,227,15,D32,Toronto,33,Clanton Park (33),"Apartment (Rooming House, Condo)",Apartment,OTHER,DURANGO,MT,6,,799.0,STOLEN,2926,"{'type': 'Point', 'coordinates': (-79.44693253, 43.73694117)}"
-2932,10321,GO-20151464253,THEFT OVER,2015-08-25T00:00:00,2015,August,Tuesday,25,237,12,2015-08-25T00:00:00,2015,August,Tuesday,25,237,15,D32,Toronto,33,Clanton Park (33),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,VITESS,RC,16,WHI,7300.0,STOLEN,2927,"{'type': 'Point', 'coordinates': (-79.45187719, 43.75268874)}"
-2933,10901,GO-20152237526,B&E,2015-12-27T00:00:00,2015,December,Sunday,27,361,22,2015-12-31T00:00:00,2015,December,Thursday,31,365,10,D32,Toronto,33,Clanton Park (33),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,OT,0,GRN,120.0,STOLEN,2928,"{'type': 'Point', 'coordinates': (-79.44640353, 43.73475482)}"
-2934,10902,GO-20152237526,B&E,2015-12-27T00:00:00,2015,December,Sunday,27,361,22,2015-12-31T00:00:00,2015,December,Thursday,31,365,10,D32,Toronto,33,Clanton Park (33),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,KENT,RC,18,GRN,,STOLEN,2929,"{'type': 'Point', 'coordinates': (-79.44640353, 43.73475482)}"
-2935,10971,GO-2016217183,THEFT UNDER - SHOPLIFTING,2016-02-05T00:00:00,2016,February,Friday,5,36,20,2016-02-05T00:00:00,2016,February,Friday,5,36,23,D32,Toronto,33,Clanton Park (33),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,OT,10,,38.0,STOLEN,2930,"{'type': 'Point', 'coordinates': (-79.4528229, 43.73338366)}"
-2936,11856,GO-20161284418,THEFT UNDER - BICYCLE,2016-07-22T00:00:00,2016,July,Friday,22,204,2,2016-07-22T00:00:00,2016,July,Friday,22,204,2,D32,Toronto,33,Clanton Park (33),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,MT,0,BLK,200.0,STOLEN,2931,"{'type': 'Point', 'coordinates': (-79.43748531, 43.75149308)}"
-2937,13476,GO-2019658628,THEFT UNDER,2019-04-11T00:00:00,2019,April,Thursday,11,101,17,2019-04-12T00:00:00,2019,April,Friday,12,102,8,D32,Toronto,33,Clanton Park (33),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,FX,OT,0,GRY,530.0,STOLEN,2932,"{'type': 'Point', 'coordinates': (-79.45077219, 43.75069553)}"
-2938,13519,GO-20199029203,THEFT UNDER - BICYCLE,2019-09-08T00:00:00,2019,September,Sunday,8,251,0,2019-09-08T00:00:00,2019,September,Sunday,8,251,20,D32,Toronto,33,Clanton Park (33),"Apartment (Rooming House, Condo)",Apartment,NO,SEARCH 2016,RC,10,GRN,1500.0,STOLEN,2933,"{'type': 'Point', 'coordinates': (-79.43462077, 43.74000154)}"
-2939,13520,GO-20199029203,THEFT UNDER - BICYCLE,2019-09-08T00:00:00,2019,September,Sunday,8,251,0,2019-09-08T00:00:00,2019,September,Sunday,8,251,20,D32,Toronto,33,Clanton Park (33),"Apartment (Rooming House, Condo)",Apartment,NO,SEARCH A TIAGRA,OT,10,GRN,1600.0,STOLEN,2934,"{'type': 'Point', 'coordinates': (-79.43462077, 43.74000154)}"
-2940,13522,GO-20199029575,THEFT UNDER - BICYCLE,2019-09-11T00:00:00,2019,September,Wednesday,11,254,13,2019-09-11T00:00:00,2019,September,Wednesday,11,254,13,D32,Toronto,33,Clanton Park (33),"Apartment (Rooming House, Condo)",Apartment,OT,HUNTER,FO,8,ONG,700.0,STOLEN,2935,"{'type': 'Point', 'coordinates': (-79.4434242, 43.75450167000001)}"
-2941,13560,GO-20201332166,THEFT UNDER,2020-07-18T00:00:00,2020,July,Saturday,18,200,3,2020-07-18T00:00:00,2020,July,Saturday,18,200,5,D32,Toronto,33,Clanton Park (33),"Apartment (Rooming House, Condo)",Apartment,CANNONDALE,QUICK 4,OT,27,BLUWHI,,STOLEN,2936,"{'type': 'Point', 'coordinates': (-79.44640353, 43.73475482)}"
-2942,13561,GO-20201332166,THEFT UNDER,2020-07-18T00:00:00,2020,July,Saturday,18,200,3,2020-07-18T00:00:00,2020,July,Saturday,18,200,5,D32,Toronto,33,Clanton Park (33),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,OT,1,,,STOLEN,2937,"{'type': 'Point', 'coordinates': (-79.44640353, 43.73475482)}"
-2943,13575,GO-20209019938,THEFT UNDER - BICYCLE,2020-08-11T00:00:00,2020,August,Tuesday,11,224,0,2020-08-11T00:00:00,2020,August,Tuesday,11,224,17,D32,Toronto,33,Clanton Park (33),"Apartment (Rooming House, Condo)",Apartment,OT,ROCKHOPPER,MT,8,RED,750.0,STOLEN,2938,"{'type': 'Point', 'coordinates': (-79.45947191, 43.75108442)}"
-2944,14791,GO-20189016770,THEFT UNDER - BICYCLE,2018-05-30T00:00:00,2018,May,Wednesday,30,150,2,2018-05-30T00:00:00,2018,May,Wednesday,30,150,10,D32,Toronto,33,Clanton Park (33),"Single Home, House (Attach Garage, Cottage, Mobile)",House,HF,,RG,10,BLK,200.0,STOLEN,2939,"{'type': 'Point', 'coordinates': (-79.44516158, 43.74657295)}"
-2945,14916,GO-20142210732,THEFT UNDER,2014-05-30T00:00:00,2014,May,Friday,30,150,13,2014-06-03T00:00:00,2014,June,Tuesday,3,154,10,D32,Toronto,33,Clanton Park (33),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SCHWINN,,MT,21,RED,600.0,STOLEN,2940,"{'type': 'Point', 'coordinates': (-79.43498786, 43.74150252)}"
-2946,14931,GO-20149006507,THEFT UNDER,2014-08-30T00:00:00,2014,August,Saturday,30,242,18,2014-09-02T00:00:00,2014,September,Tuesday,2,245,19,D32,Toronto,33,Clanton Park (33),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,STEALTH 1.0,MT,21,RED,400.0,STOLEN,2941,"{'type': 'Point', 'coordinates': (-79.45947191, 43.75108442)}"
-2947,14937,GO-20143305739,THEFT UNDER,2014-11-14T00:00:00,2014,November,Friday,14,318,10,2014-11-15T00:00:00,2014,November,Saturday,15,319,11,D32,Toronto,33,Clanton Park (33),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,FUELX,MT,24,RED,3000.0,STOLEN,2942,"{'type': 'Point', 'coordinates': (-79.43690705, 43.749121220000006)}"
-2948,15038,GO-2017345636,THEFT UNDER - BICYCLE,2017-02-16T00:00:00,2017,February,Thursday,16,47,18,2017-02-24T00:00:00,2017,February,Friday,24,55,15,D32,Toronto,33,Clanton Park (33),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,MADONE 6.2,OT,1,,,STOLEN,2943,"{'type': 'Point', 'coordinates': (-79.44368825, 43.74256406)}"
-2949,15039,GO-2017345636,THEFT UNDER - BICYCLE,2017-02-16T00:00:00,2017,February,Thursday,16,47,18,2017-02-24T00:00:00,2017,February,Friday,24,55,15,D32,Toronto,33,Clanton Park (33),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,MADONE 6,MT,21,BLK,6500.0,STOLEN,2944,"{'type': 'Point', 'coordinates': (-79.44368825, 43.74256406)}"
-2950,15040,GO-2017345636,THEFT UNDER - BICYCLE,2017-02-16T00:00:00,2017,February,Thursday,16,47,18,2017-02-24T00:00:00,2017,February,Friday,24,55,15,D32,Toronto,33,Clanton Park (33),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,TRAIL 5,MT,16,BLKSIL,550.0,STOLEN,2945,"{'type': 'Point', 'coordinates': (-79.44368825, 43.74256406)}"
-2951,16843,GO-20209024183,THEFT UNDER,2020-09-23T00:00:00,2020,September,Wednesday,23,267,10,2020-09-23T00:00:00,2020,September,Wednesday,23,267,11,D32,Toronto,33,Clanton Park (33),Convenience Stores,Commercial,OT,"JAMIS KIDS 26""""",MT,24,BLU,600.0,STOLEN,2946,"{'type': 'Point', 'coordinates': (-79.44097669, 43.73328748)}"
-2952,17101,GO-20189030033,THEFT UNDER,2018-09-11T00:00:00,2018,September,Tuesday,11,254,21,2018-09-11T00:00:00,2018,September,Tuesday,11,254,22,D32,Toronto,33,Clanton Park (33),"Apartment (Rooming House, Condo)",Apartment,GT,KARAKORAM SPORT,MT,20,BLK,500.0,STOLEN,2947,"{'type': 'Point', 'coordinates': (-79.44640353, 43.73475482)}"
-2953,17102,GO-20189030033,THEFT UNDER,2018-09-11T00:00:00,2018,September,Tuesday,11,254,21,2018-09-11T00:00:00,2018,September,Tuesday,11,254,22,D32,Toronto,33,Clanton Park (33),"Apartment (Rooming House, Condo)",Apartment,GT,AVALANCHE SPORT,MT,20,RED,500.0,STOLEN,2948,"{'type': 'Point', 'coordinates': (-79.44640353, 43.73475482)}"
-2954,17861,GO-20181349417,THEFT OF EBIKE UNDER $5000,2018-07-01T00:00:00,2018,July,Sunday,1,182,12,2018-07-24T00:00:00,2018,July,Tuesday,24,205,5,D32,Toronto,33,Clanton Park (33),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DYNAMO,,EL,0,BLK,1500.0,STOLEN,2949,"{'type': 'Point', 'coordinates': (-79.43712087, 43.74995237)}"
-2955,17890,GO-20189027420,THEFT UNDER - BICYCLE,2018-08-21T00:00:00,2018,August,Tuesday,21,233,22,2018-08-22T00:00:00,2018,August,Wednesday,22,234,12,D32,Toronto,33,Clanton Park (33),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,PARADISO,MT,21,GRY,449.0,STOLEN,2950,"{'type': 'Point', 'coordinates': (-79.45947191, 43.75108442)}"
-2956,17927,GO-20142315357,PROPERTY - FOUND,2014-06-16T00:00:00,2014,June,Monday,16,167,19,2014-06-18T00:00:00,2014,June,Wednesday,18,169,10,D32,Toronto,33,Clanton Park (33),Schools During Un-Supervised Activity,Educational,CC,VANDAL24,MT,21,BLUWHI,,UNKNOWN,2951,"{'type': 'Point', 'coordinates': (-79.44798468, 43.74846907)}"
-2957,18069,GO-20179006107,THEFT UNDER - BICYCLE,2017-05-03T00:00:00,2017,May,Wednesday,3,123,10,2017-05-11T00:00:00,2017,May,Thursday,11,131,10,D32,Toronto,33,Clanton Park (33),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,TALON 2,MT,11,GRY,1300.0,STOLEN,2952,"{'type': 'Point', 'coordinates': (-79.44640353, 43.73475482)}"
-2958,20128,GO-20209025532,THEFT UNDER - BICYCLE,2020-10-06T00:00:00,2020,October,Tuesday,6,280,12,2020-10-06T00:00:00,2020,October,Tuesday,6,280,17,D32,Toronto,33,Clanton Park (33),"Apartment (Rooming House, Condo)",Apartment,UK,,OT,1,,0.0,STOLEN,2953,"{'type': 'Point', 'coordinates': (-79.44004489, 43.73610985)}"
-2959,20133,GO-20209028691,THEFT UNDER - BICYCLE,2020-10-25T00:00:00,2020,October,Sunday,25,299,22,2020-11-05T00:00:00,2020,November,Thursday,5,310,10,D32,Toronto,33,Clanton Park (33),"Apartment (Rooming House, Condo)",Apartment,CC,,MT,21,,460.0,STOLEN,2954,"{'type': 'Point', 'coordinates': (-79.4434242, 43.75450167000001)}"
-2960,22033,GO-20142688227,THEFT OF MOTOR VEHICLE,2014-08-12T00:00:00,2014,August,Tuesday,12,224,7,2014-08-12T00:00:00,2014,August,Tuesday,12,224,15,D32,Toronto,33,Clanton Park (33),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,HYBRID,RC,1,BLU,,STOLEN,2955,"{'type': 'Point', 'coordinates': (-79.4528229, 43.73338366)}"
-2961,22037,GO-20142962402,THEFT UNDER,2014-09-21T00:00:00,2014,September,Sunday,21,264,18,2014-09-22T00:00:00,2014,September,Monday,22,265,19,D32,Toronto,33,Clanton Park (33),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,FUEL EX5,MT,21,BLU,1500.0,STOLEN,2956,"{'type': 'Point', 'coordinates': (-79.43462077, 43.74000154)}"
-2962,23210,GO-20189032138,THEFT UNDER - BICYCLE,2018-09-12T00:00:00,2018,September,Wednesday,12,255,20,2018-09-27T00:00:00,2018,September,Thursday,27,270,16,D32,Toronto,33,Clanton Park (33),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,DCO X ZONE 260,MT,21,LGR,400.0,STOLEN,2957,"{'type': 'Point', 'coordinates': (-79.44707897, 43.7461639)}"
-2963,23238,GO-2019326780,PROPERTY - FOUND,2019-02-20T00:00:00,2019,February,Wednesday,20,51,23,2019-02-21T00:00:00,2019,February,Thursday,21,52,9,D32,Toronto,33,Clanton Park (33),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MONGOOSE,LEDGE,MT,12,BLKGRN,,UNKNOWN,2958,"{'type': 'Point', 'coordinates': (-79.43616343, 43.73796222)}"
-2964,24498,GO-20159009282,THEFT UNDER,2015-10-08T00:00:00,2015,October,Thursday,8,281,19,2015-11-03T00:00:00,2015,November,Tuesday,3,307,9,D32,Toronto,33,Clanton Park (33),Convenience Stores,Commercial,SC,TESLIN,MT,21,PLE,600.0,STOLEN,2959,"{'type': 'Point', 'coordinates': (-79.43498786, 43.74150252)}"
-2965,616,GO-20171065399,THEFT OF MOTOR VEHICLE,2017-06-14T00:00:00,2017,June,Wednesday,14,165,20,2017-06-15T00:00:00,2017,June,Thursday,15,166,11,D32,Toronto,34,Bathurst Manor (34),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,RG,18,BLK,600.0,UNKNOWN,2960,"{'type': 'Point', 'coordinates': (-79.45156022, 43.76218428)}"
-2966,1460,GO-20171694805,THEFT UNDER - BICYCLE,2017-09-06T00:00:00,2017,September,Wednesday,6,249,11,2017-09-18T00:00:00,2017,September,Monday,18,261,16,D32,Toronto,34,Bathurst Manor (34),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,MT,18,WHI,140.0,STOLEN,2961,"{'type': 'Point', 'coordinates': (-79.4390023, 43.75777681)}"
-2967,1540,GO-20179015961,THEFT UNDER - BICYCLE,2017-09-27T00:00:00,2017,September,Wednesday,27,270,8,2017-09-27T00:00:00,2017,September,Wednesday,27,270,18,D32,Toronto,34,Bathurst Manor (34),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RA,CADENT,OT,27,BLK,900.0,STOLEN,2962,"{'type': 'Point', 'coordinates': (-79.47004827000002, 43.78728363)}"
-2968,1634,GO-20179016891,THEFT UNDER,2017-07-01T00:00:00,2017,July,Saturday,1,182,10,2017-10-10T00:00:00,2017,October,Tuesday,10,283,17,D32,Toronto,34,Bathurst Manor (34),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,24,GRY,2500.0,STOLEN,2963,"{'type': 'Point', 'coordinates': (-79.4390023, 43.75777681)}"
-2969,2695,GO-20181155110,THEFT UNDER,2018-06-20T00:00:00,2018,June,Wednesday,20,171,18,2018-06-25T00:00:00,2018,June,Monday,25,176,13,D32,Toronto,34,Bathurst Manor (34),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUPERCYCLE,,RG,21,DBL,300.0,STOLEN,2964,"{'type': 'Point', 'coordinates': (-79.4567098, 43.7516636)}"
-2970,3293,GO-20181543617,THEFT UNDER - BICYCLE,2018-08-13T00:00:00,2018,August,Monday,13,225,19,2018-08-21T00:00:00,2018,August,Tuesday,21,233,10,D32,Toronto,34,Bathurst Manor (34),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUPERCYCLE,,MT,0,BLKONG,130.0,STOLEN,2965,"{'type': 'Point', 'coordinates': (-79.45312362, 43.75381691)}"
-2971,4011,GO-20199002235,THEFT UNDER - BICYCLE,2019-01-17T00:00:00,2019,January,Thursday,17,17,12,2019-01-17T00:00:00,2019,January,Thursday,17,17,13,D32,Toronto,34,Bathurst Manor (34),"Apartment (Rooming House, Condo)",Apartment,UK,CRUISE BIK SP-O,RG,40,WHI,795.0,STOLEN,2966,"{'type': 'Point', 'coordinates': (-79.46688641, 43.76885259)}"
-2972,5233,GO-20191677461,THEFT UNDER - BICYCLE,2019-09-01T00:00:00,2019,September,Sunday,1,244,20,2019-09-02T00:00:00,2019,September,Monday,2,245,12,D32,Toronto,34,Bathurst Manor (34),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,APEX,MT,24,PLE,350.0,STOLEN,2967,"{'type': 'Point', 'coordinates': (-79.45771095, 43.75285172)}"
-2973,6115,GO-2020801829,THEFT UNDER - BICYCLE,2020-03-12T00:00:00,2020,March,Thursday,12,72,16,2020-04-28T00:00:00,2020,April,Tuesday,28,119,14,D32,Toronto,34,Bathurst Manor (34),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,AGRESSOR SPORT,MT,21,BLURED,550.0,STOLEN,2968,"{'type': 'Point', 'coordinates': (-79.44136292, 43.75493826)}"
-2974,6227,GO-20209013690,THEFT UNDER - BICYCLE,2020-05-19T00:00:00,2020,May,Tuesday,19,140,22,2020-05-22T00:00:00,2020,May,Friday,22,143,12,D32,Toronto,34,Bathurst Manor (34),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,HARO,BM,1,BLK,600.0,STOLEN,2969,"{'type': 'Point', 'coordinates': (-79.45325755000002, 43.76014922)}"
-2975,6753,GO-20209018659,THEFT UNDER - BICYCLE,2020-07-25T00:00:00,2020,July,Saturday,25,207,15,2020-07-27T00:00:00,2020,July,Monday,27,209,11,D32,Toronto,34,Bathurst Manor (34),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MA,LARKSPUR GS 2,OT,8,BLK,800.0,STOLEN,2970,"{'type': 'Point', 'coordinates': (-79.47004827000002, 43.78728363)}"
-2976,6813,GO-20209018956,THEFT UNDER,2020-07-29T00:00:00,2020,July,Wednesday,29,211,16,2020-07-30T00:00:00,2020,July,Thursday,30,212,9,D32,Toronto,34,Bathurst Manor (34),"Apartment (Rooming House, Condo)",Apartment,OT,MX 29 30 17 M N,MT,30,BLK,1000.0,STOLEN,2971,"{'type': 'Point', 'coordinates': (-79.4567098, 43.7516636)}"
-2977,7521,GO-20209027180,THEFT FROM MOTOR VEHICLE UNDER,2020-10-21T00:00:00,2020,October,Wednesday,21,295,3,2020-10-21T00:00:00,2020,October,Wednesday,21,295,13,D32,Toronto,34,Bathurst Manor (34),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RC,10,BLK,1500.0,STOLEN,2972,"{'type': 'Point', 'coordinates': (-79.4608026, 43.76022232)}"
-2978,7933,GO-20149003360,THEFT UNDER,2014-05-14T00:00:00,2014,May,Wednesday,14,134,7,2014-05-14T00:00:00,2014,May,Wednesday,14,134,21,D32,Toronto,34,Bathurst Manor (34),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ALLEZ,RC,30,GRY,1000.0,STOLEN,2973,"{'type': 'Point', 'coordinates': (-79.4567098, 43.7516636)}"
-2979,9192,GO-20149008207,THEFT UNDER,2014-11-14T00:00:00,2014,November,Friday,14,318,13,2014-11-14T00:00:00,2014,November,Friday,14,318,17,D32,Toronto,34,Bathurst Manor (34),"Apartment (Rooming House, Condo)",Apartment,OT,G7F19-2,RC,1,RED,300.0,STOLEN,2974,"{'type': 'Point', 'coordinates': (-79.43874989, 43.75679104000001)}"
-2980,10305,GO-20151446669,THEFT UNDER,2015-07-30T00:00:00,2015,July,Thursday,30,211,12,2015-08-22T00:00:00,2015,August,Saturday,22,234,16,D32,Toronto,34,Bathurst Manor (34),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,ARIEL DISC,MT,0,BLKGLD,649.0,STOLEN,2975,"{'type': 'Point', 'coordinates': (-79.45947191, 43.75108442)}"
-2981,10306,GO-20151446669,THEFT UNDER,2015-07-30T00:00:00,2015,July,Thursday,30,211,12,2015-08-22T00:00:00,2015,August,Saturday,22,234,16,D32,Toronto,34,Bathurst Manor (34),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,CROSS TRAIL SPO,MT,0,DGR,675.0,STOLEN,2976,"{'type': 'Point', 'coordinates': (-79.45947191, 43.75108442)}"
-2982,10320,GO-20151451778,THEFT UNDER,2015-08-18T00:00:00,2015,August,Tuesday,18,230,14,2015-08-27T00:00:00,2015,August,Thursday,27,239,8,D32,Toronto,34,Bathurst Manor (34),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OTHER,,MT,8,BLKGRN,150.0,STOLEN,2977,"{'type': 'Point', 'coordinates': (-79.44049289, 43.75512241)}"
-2983,11895,GO-20169007697,THEFT OF EBIKE UNDER $5000,2016-07-24T00:00:00,2016,July,Sunday,24,206,8,2016-07-25T00:00:00,2016,July,Monday,25,207,8,D32,Toronto,34,Bathurst Manor (34),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,JACK,OT,32,,4000.0,STOLEN,2978,"{'type': 'Point', 'coordinates': (-79.45187719, 43.75268874)}"
-2984,12257,GO-20161562841,THEFT FROM MOTOR VEHICLE UNDER,2016-09-02T00:00:00,2016,September,Friday,2,246,19,2016-09-03T00:00:00,2016,September,Saturday,3,247,10,D32,Toronto,34,Bathurst Manor (34),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,ROUBAIX,OT,16,BLK,2100.0,STOLEN,2979,"{'type': 'Point', 'coordinates': (-79.44933420000001, 43.7567429)}"
-2985,13542,GO-20201015174,THEFT UNDER - BICYCLE,2020-06-01T00:00:00,2020,June,Monday,1,153,16,2020-06-02T00:00:00,2020,June,Tuesday,2,154,13,D32,Toronto,34,Bathurst Manor (34),"Apartment (Rooming House, Condo)",Apartment,OTHER,EVOLUTION,MT,21,LBL,350.0,STOLEN,2980,"{'type': 'Point', 'coordinates': (-79.45187719, 43.75268874)}"
-2986,13543,GO-20201015174,THEFT UNDER - BICYCLE,2020-06-01T00:00:00,2020,June,Monday,1,153,16,2020-06-02T00:00:00,2020,June,Tuesday,2,154,13,D32,Toronto,34,Bathurst Manor (34),"Apartment (Rooming House, Condo)",Apartment,SPORTEK,,MT,21,DBL,350.0,STOLEN,2981,"{'type': 'Point', 'coordinates': (-79.45187719, 43.75268874)}"
-2987,13564,GO-20201371342,THEFT UNDER - BICYCLE,2020-07-18T00:00:00,2020,July,Saturday,18,200,19,2020-07-23T00:00:00,2020,July,Thursday,23,205,17,D32,Toronto,34,Bathurst Manor (34),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,OT,26,,324.0,STOLEN,2982,"{'type': 'Point', 'coordinates': (-79.46237569, 43.75818449)}"
-2988,13567,GO-20209019008,THEFT UNDER - BICYCLE,2020-07-29T00:00:00,2020,July,Wednesday,29,211,20,2020-07-30T00:00:00,2020,July,Thursday,30,212,16,D32,Toronto,34,Bathurst Manor (34),"Apartment (Rooming House, Condo)",Apartment,OT,X-TRAIL A60 BIC,OT,21,BLK,2500.0,STOLEN,2983,"{'type': 'Point', 'coordinates': (-79.4567098, 43.7516636)}"
-2989,13857,GO-2019134739,THEFT UNDER,2018-12-24T00:00:00,2018,December,Monday,24,358,9,2019-01-22T00:00:00,2019,January,Tuesday,22,22,11,D32,Toronto,34,Bathurst Manor (34),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SCHWINN,,MT,0,YEL,300.0,STOLEN,2984,"{'type': 'Point', 'coordinates': (-79.44835753, 43.75344878)}"
-2990,14687,GO-20171374239,THEFT UNDER - BICYCLE,2017-07-18T00:00:00,2017,July,Tuesday,18,199,9,2017-07-31T00:00:00,2017,July,Monday,31,212,11,D32,Toronto,34,Bathurst Manor (34),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,OT,21,BLU,,STOLEN,2985,"{'type': 'Point', 'coordinates': (-79.4390023, 43.75777681)}"
-2991,14766,GO-20189008421,THEFT UNDER - BICYCLE,2016-12-28T00:00:00,2016,December,Wednesday,28,363,18,2018-03-18T00:00:00,2018,March,Sunday,18,77,18,D32,Toronto,34,Bathurst Manor (34),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,YORKVILLE,TO,21,GLD,0.0,STOLEN,2986,"{'type': 'Point', 'coordinates': (-79.45988735000002, 43.76407561)}"
-2992,15035,GO-20169013071,THEFT UNDER - BICYCLE,2016-11-06T00:00:00,2016,November,Sunday,6,311,9,2016-11-07T00:00:00,2016,November,Monday,7,312,9,D32,Toronto,34,Bathurst Manor (34),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,24,BLK,400.0,STOLEN,2987,"{'type': 'Point', 'coordinates': (-79.45187719, 43.75268874)}"
-2993,16815,GO-20209012874,THEFT UNDER - BICYCLE,2020-04-04T00:00:00,2020,April,Saturday,4,95,19,2020-05-11T00:00:00,2020,May,Monday,11,132,12,D32,Toronto,34,Bathurst Manor (34),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM 4,RG,3,BLU,700.0,STOLEN,2988,"{'type': 'Point', 'coordinates': (-79.43979364, 43.75980929)}"
-2994,17100,GO-20181669868,THEFT UNDER - BICYCLE,2018-09-06T00:00:00,2018,September,Thursday,6,249,16,2018-09-09T00:00:00,2018,September,Sunday,9,252,9,D32,Toronto,34,Bathurst Manor (34),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,,TO,18,SIL,700.0,STOLEN,2989,"{'type': 'Point', 'coordinates': (-79.4481752, 43.76305245)}"
-2995,17838,GO-20181145460,THEFT UNDER - BICYCLE,2018-06-22T00:00:00,2018,June,Friday,22,173,11,2018-06-23T00:00:00,2018,June,Saturday,23,174,23,D32,Toronto,34,Bathurst Manor (34),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,SPORT DC,RC,18,GRY,1500.0,STOLEN,2990,"{'type': 'Point', 'coordinates': (-79.44835753, 43.75344878)}"
-2996,17839,GO-20181145460,THEFT UNDER - BICYCLE,2018-06-22T00:00:00,2018,June,Friday,22,173,11,2018-06-23T00:00:00,2018,June,Saturday,23,174,23,D32,Toronto,34,Bathurst Manor (34),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,SIRRUS,RC,18,GRY,1500.0,UNKNOWN,2991,"{'type': 'Point', 'coordinates': (-79.44835753, 43.75344878)}"
-2997,20055,GO-20199021846,THEFT UNDER - BICYCLE,2019-07-10T00:00:00,2019,July,Wednesday,10,191,8,2019-07-11T00:00:00,2019,July,Thursday,11,192,11,D32,Toronto,34,Bathurst Manor (34),Ttc Subway Station,Transit,OT,CITATO 2.0 (201,RG,20,BLK,1500.0,STOLEN,2992,"{'type': 'Point', 'coordinates': (-79.46273009, 43.75037793)}"
-2998,20113,GO-20201538429,THEFT OF EBIKE UNDER $5000,2020-08-16T00:00:00,2020,August,Sunday,16,229,14,2020-08-16T00:00:00,2020,August,Sunday,16,229,14,D32,Toronto,34,Bathurst Manor (34),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GXL GOTRAX,,SC,0,BLK,500.0,STOLEN,2993,"{'type': 'Point', 'coordinates': (-79.44049289, 43.75512241)}"
-2999,20369,GO-20181669868,THEFT UNDER - BICYCLE,2018-09-06T00:00:00,2018,September,Thursday,6,249,16,2018-09-09T00:00:00,2018,September,Sunday,9,252,9,D32,Toronto,34,Bathurst Manor (34),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,VFR3,OT,27,SIL,700.0,STOLEN,2994,"{'type': 'Point', 'coordinates': (-79.4481752, 43.76305245)}"
-3000,20370,GO-20181669868,THEFT UNDER - BICYCLE,2018-09-06T00:00:00,2018,September,Thursday,6,249,16,2018-09-09T00:00:00,2018,September,Sunday,9,252,9,D32,Toronto,34,Bathurst Manor (34),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,VFR3,OT,21,SIL,700.0,STOLEN,2995,"{'type': 'Point', 'coordinates': (-79.4481752, 43.76305245)}"
-3001,22065,GO-20151127428,THEFT UNDER,2015-07-03T00:00:00,2015,July,Friday,3,184,15,2015-07-04T00:00:00,2015,July,Saturday,4,185,16,D32,Toronto,34,Bathurst Manor (34),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,HOOLIGAN,MT,18,GRN,200.0,STOLEN,2996,"{'type': 'Point', 'coordinates': (-79.45955862, 43.7632566)}"
-3002,23243,GO-2019482025,THEFT FROM MOTOR VEHICLE UNDER,2019-03-15T00:00:00,2019,March,Friday,15,74,12,2019-03-16T00:00:00,2019,March,Saturday,16,75,22,D32,Toronto,34,Bathurst Manor (34),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MIELE,MUSKOKA,OT,24,BLK,800.0,STOLEN,2997,"{'type': 'Point', 'coordinates': (-79.45456205, 43.76333881)}"
-3003,23352,GO-20209020772,THEFT UNDER - BICYCLE,2020-07-29T00:00:00,2020,July,Wednesday,29,211,22,2020-08-20T00:00:00,2020,August,Thursday,20,233,16,D32,Toronto,34,Bathurst Manor (34),"Apartment (Rooming House, Condo)",Apartment,TR,VERVE 1 LOW STE,OT,21,GRY,600.0,STOLEN,2998,"{'type': 'Point', 'coordinates': (-79.4567098, 43.7516636)}"
-3004,19609,GO-20149000963,PROPERTY - LOST,2014-02-02T00:00:00,2014,February,Sunday,2,33,1,2014-02-02T00:00:00,2014,February,Sunday,2,33,21,D54,Toronto,57,Broadview North (57),"Apartment (Rooming House, Condo)",Apartment,GT,AVALANCHE,MT,8,GRY,200.0,UNKNOWN,2999,"{'type': 'Point', 'coordinates': (-79.35083144, 43.68796984)}"
-3005,19754,GO-2016615190,THEFT UNDER,2016-04-11T00:00:00,2016,April,Monday,11,102,10,2016-04-11T00:00:00,2016,April,Monday,11,102,16,D54,Toronto,57,Broadview North (57),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,BYRON BIKES,SCOOTER,SC,1,BLK,1400.0,STOLEN,3000,"{'type': 'Point', 'coordinates': (-79.35747691, 43.68194106)}"
-3006,22175,GO-20169008295,THEFT UNDER - BICYCLE,2016-05-06T00:00:00,2016,May,Friday,6,127,9,2016-08-06T00:00:00,2016,August,Saturday,6,219,9,D54,Toronto,57,Broadview North (57),"Apartment (Rooming House, Condo)",Apartment,KO,BLAST,MT,21,ONG,1200.0,STOLEN,3001,"{'type': 'Point', 'coordinates': (-79.35690832, 43.68393171)}"
-3007,22249,GO-20171501526,B&E,2017-08-17T00:00:00,2017,August,Thursday,17,229,14,2017-08-19T00:00:00,2017,August,Saturday,19,231,22,D54,Toronto,57,Broadview North (57),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,EC1,"250W, 24V",EL,24,BLK,1936.0,STOLEN,3002,"{'type': 'Point', 'coordinates': (-79.35690832, 43.68393171)}"
-3008,22389,GO-20191267279,THEFT UNDER,2019-07-07T00:00:00,2019,July,Sunday,7,188,1,2019-07-07T00:00:00,2019,July,Sunday,7,188,18,D54,Toronto,57,Broadview North (57),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,,RG,21,GRY,100.0,STOLEN,3003,"{'type': 'Point', 'coordinates': (-79.34776044, 43.68463573)}"
-3009,22390,GO-20191267279,THEFT UNDER,2019-07-07T00:00:00,2019,July,Sunday,7,188,1,2019-07-07T00:00:00,2019,July,Sunday,7,188,18,D54,Toronto,57,Broadview North (57),"Private Property Structure (Pool, Shed, Detached Garage)",Other,BATAVUS FRYSLYN,,OT,3,BLK,1000.0,STOLEN,3004,"{'type': 'Point', 'coordinates': (-79.34776044, 43.68463573)}"
-3010,22468,GO-20209014056,THEFT UNDER,2020-05-25T00:00:00,2020,May,Monday,25,146,17,2020-05-27T00:00:00,2020,May,Wednesday,27,148,17,D54,Toronto,57,Broadview North (57),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RM,GROWLER,MT,24,BLU,0.0,STOLEN,3005,"{'type': 'Point', 'coordinates': (-79.34812705, 43.68563482)}"
-3011,22472,GO-20209014687,THEFT UNDER,2020-06-03T00:00:00,2020,June,Wednesday,3,155,12,2020-06-05T00:00:00,2020,June,Friday,5,157,18,D54,Toronto,57,Broadview North (57),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MO,CANADIAN TIRE,MT,21,BLK,220.0,STOLEN,3006,"{'type': 'Point', 'coordinates': (-79.35083144, 43.68796984)}"
-3012,22485,GO-20209016130,THEFT UNDER,2020-06-20T00:00:00,2020,June,Saturday,20,172,11,2020-06-25T00:00:00,2020,June,Thursday,25,177,11,D54,Toronto,57,Broadview North (57),"Apartment (Rooming House, Condo)",Apartment,NO,,MT,21,BLK,300.0,STOLEN,3007,"{'type': 'Point', 'coordinates': (-79.35083144, 43.68796984)}"
-3013,22560,GO-20209023305,THEFT UNDER,2020-09-15T00:00:00,2020,September,Tuesday,15,259,0,2020-09-15T00:00:00,2020,September,Tuesday,15,259,12,D54,Toronto,57,Broadview North (57),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,SEDONA LX,MT,24,SIL,1000.0,STOLEN,3008,"{'type': 'Point', 'coordinates': (-79.35690832, 43.68393171)}"
-3014,22561,GO-20209023305,THEFT UNDER,2020-09-15T00:00:00,2020,September,Tuesday,15,259,0,2020-09-15T00:00:00,2020,September,Tuesday,15,259,12,D54,Toronto,57,Broadview North (57),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,MT,21,SIL,400.0,STOLEN,3009,"{'type': 'Point', 'coordinates': (-79.35690832, 43.68393171)}"
-3015,22580,GO-20209026388,THEFT UNDER,2020-10-09T00:00:00,2020,October,Friday,9,283,17,2020-10-14T00:00:00,2020,October,Wednesday,14,288,7,D54,Toronto,57,Broadview North (57),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,FX1,RG,21,GRY,627.0,STOLEN,3010,"{'type': 'Point', 'coordinates': (-79.35717999, 43.68292598)}"
-3016,22808,GO-20141330378,THEFT UNDER,2014-01-11T00:00:00,2014,January,Saturday,11,11,23,2014-01-13T00:00:00,2014,January,Monday,13,13,17,D54,Toronto,57,Broadview North (57),"Apartment (Rooming House, Condo)",Apartment,DEVINCI,MOUNTAIN,MT,18,BLURED,900.0,STOLEN,3011,"{'type': 'Point', 'coordinates': (-79.35327094, 43.68855225)}"
-3017,22838,GO-20142255759,THEFT UNDER,2014-06-08T00:00:00,2014,June,Sunday,8,159,21,2014-06-09T00:00:00,2014,June,Monday,9,160,18,D54,Toronto,57,Broadview North (57),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RAPTOR,SCOOTER,SC,1,BLK,1200.0,STOLEN,3012,"{'type': 'Point', 'coordinates': (-79.34912779, 43.69040125)}"
-3018,22998,GO-20169009381,THEFT UNDER - BICYCLE,2016-08-23T00:00:00,2016,August,Tuesday,23,236,17,2016-08-23T00:00:00,2016,August,Tuesday,23,236,20,D54,Toronto,57,Broadview North (57),"Apartment (Rooming House, Condo)",Apartment,FJ,CLASSIC,RC,1,BLK,600.0,STOLEN,3013,"{'type': 'Point', 'coordinates': (-79.35717999, 43.68292598)}"
-3019,25432,GO-2017688798,THEFT UNDER - BICYCLE,2017-04-18T00:00:00,2017,April,Tuesday,18,108,19,2017-04-19T00:00:00,2017,April,Wednesday,19,109,18,D54,Toronto,57,Broadview North (57),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GT,AVALANCHE,MT,21,,791.0,STOLEN,3014,"{'type': 'Point', 'coordinates': (-79.35717999, 43.68292598)}"
-3020,25433,GO-2017688798,THEFT UNDER - BICYCLE,2017-04-18T00:00:00,2017,April,Tuesday,18,108,19,2017-04-19T00:00:00,2017,April,Wednesday,19,109,18,D54,Toronto,57,Broadview North (57),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CANNONDALE,CATALYST,MT,21,GRY,620.0,STOLEN,3015,"{'type': 'Point', 'coordinates': (-79.35717999, 43.68292598)}"
-3021,25692,GO-20209003601,THEFT UNDER,2020-01-29T00:00:00,2020,January,Wednesday,29,29,8,2020-01-30T00:00:00,2020,January,Thursday,30,30,8,D54,Toronto,57,Broadview North (57),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FJ,1,RC,11,RED,2000.0,STOLEN,3016,"{'type': 'Point', 'coordinates': (-79.35348162, 43.68624041)}"
-3022,25703,GO-2020602571,B&E,2020-03-23T00:00:00,2020,March,Monday,23,83,19,2020-03-25T00:00:00,2020,March,Wednesday,25,85,19,D54,Toronto,57,Broadview North (57),"Construction Site (Warehouse, Trailer, Shed)",Commercial,SPECIALIZED,,OT,15,WHI,1500.0,STOLEN,3017,"{'type': 'Point', 'coordinates': (-79.35547743, 43.69115256)}"
-3023,25704,GO-2020602571,B&E,2020-03-23T00:00:00,2020,March,Monday,23,83,19,2020-03-25T00:00:00,2020,March,Wednesday,25,85,19,D54,Toronto,57,Broadview North (57),"Construction Site (Warehouse, Trailer, Shed)",Commercial,UNKNOWN MAKE,GENESIS,OT,12,,600.0,STOLEN,3018,"{'type': 'Point', 'coordinates': (-79.35547743, 43.69115256)}"
-3024,105,GO-2017340895,THEFT UNDER - BICYCLE,2017-02-23T00:00:00,2017,February,Thursday,23,54,19,2017-02-23T00:00:00,2017,February,Thursday,23,54,19,D54,Toronto,58,Old East York (58),Ttc Bus,Transit,CCM,,MT,21,RED,,STOLEN,3019,"{'type': 'Point', 'coordinates': (-79.34877499, 43.68943255)}"
-3025,1825,GO-20172034551,THEFT UNDER,2017-11-09T00:00:00,2017,November,Thursday,9,313,18,2017-11-10T00:00:00,2017,November,Friday,10,314,8,D54,Toronto,58,Old East York (58),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,PRIDE LEGEND,SC,0,,2000.0,STOLEN,3020,"{'type': 'Point', 'coordinates': (-79.34704296, 43.69664469)}"
-3026,3053,GO-20181147439,B&E,2018-06-23T00:00:00,2018,June,Saturday,23,174,17,2018-06-24T00:00:00,2018,June,Sunday,24,175,12,D54,Toronto,58,Old East York (58),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,MT,1,GRY,800.0,STOLEN,3021,"{'type': 'Point', 'coordinates': (-79.33201308, 43.69524269)}"
-3027,6250,GO-2020970118,THEFT UNDER - BICYCLE,2020-05-26T00:00:00,2020,May,Tuesday,26,147,0,2020-05-26T00:00:00,2020,May,Tuesday,26,147,12,D54,Toronto,58,Old East York (58),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,21,BLK,200.0,STOLEN,3023,"{'type': 'Point', 'coordinates': (-79.34924444, 43.69343478)}"
-3028,7469,GO-20209026442,THEFT UNDER,2020-10-14T00:00:00,2020,October,Wednesday,14,288,9,2020-10-14T00:00:00,2020,October,Wednesday,14,288,18,D54,Toronto,58,Old East York (58),Schools During Supervised Activity,Educational,UK,,MT,24,BLK,700.0,STOLEN,3024,"{'type': 'Point', 'coordinates': (-79.32694623, 43.69435915)}"
-3029,8111,GO-20142297132,PROPERTY - FOUND,2014-06-14T00:00:00,2014,June,Saturday,14,165,16,2014-06-15T00:00:00,2014,June,Sunday,15,166,18,D54,Toronto,58,Old East York (58),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,SPRITE,MT,21,BLK,300.0,STOLEN,3025,"{'type': 'Point', 'coordinates': (-79.33746993, 43.69406279)}"
-3030,8382,GO-20149004861,THEFT UNDER,2014-07-05T00:00:00,2014,July,Saturday,5,186,16,2014-07-05T00:00:00,2014,July,Saturday,5,186,17,D54,Toronto,58,Old East York (58),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RE,1,BLK,0.0,STOLEN,3026,"{'type': 'Point', 'coordinates': (-79.33746993, 43.69406279)}"
-3031,8383,GO-20149004861,THEFT UNDER,2014-07-05T00:00:00,2014,July,Saturday,5,186,16,2014-07-05T00:00:00,2014,July,Saturday,5,186,17,D54,Toronto,58,Old East York (58),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,TR,1,BLU,0.0,STOLEN,3027,"{'type': 'Point', 'coordinates': (-79.33746993, 43.69406279)}"
-3032,11223,GO-2016733750,INCIDENT,2016-04-29T00:00:00,2016,April,Friday,29,120,16,2016-04-29T00:00:00,2016,April,Friday,29,120,19,D54,Toronto,58,Old East York (58),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,SC,0,,4500.0,STOLEN,3028,"{'type': 'Point', 'coordinates': (-79.34877499, 43.68943255)}"
-3033,12909,GO-20189037690,THEFT UNDER - BICYCLE,2018-11-09T00:00:00,2018,November,Friday,9,313,1,2018-11-10T00:00:00,2018,November,Saturday,10,314,15,D54,Toronto,58,Old East York (58),"Apartment (Rooming House, Condo)",Apartment,CC,,OT,1,YEL,400.0,STOLEN,3029,"{'type': 'Point', 'coordinates': (-79.34164981, 43.69117255)}"
-3034,14082,GO-20161265147,THEFT UNDER - BICYCLE,2016-07-17T00:00:00,2016,July,Sunday,17,199,9,2016-07-19T00:00:00,2016,July,Tuesday,19,201,8,D54,Toronto,58,Old East York (58),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OTHER,,RG,5,SIL,250.0,STOLEN,3030,"{'type': 'Point', 'coordinates': (-79.32797783, 43.69413643)}"
-3035,14205,GO-20179016750,THEFT UNDER - BICYCLE,2017-10-08T00:00:00,2017,October,Sunday,8,281,2,2017-10-08T00:00:00,2017,October,Sunday,8,281,14,D54,Toronto,58,Old East York (58),Bar / Restaurant,Commercial,OT,PANAMAO X 2,MT,24,BLK,700.0,STOLEN,3031,"{'type': 'Point', 'coordinates': (-79.34578173, 43.69627592)}"
-3036,15854,GO-20149002779,THEFT UNDER,2014-04-10T00:00:00,2014,April,Thursday,10,100,20,2014-04-11T00:00:00,2014,April,Friday,11,101,20,D54,Toronto,58,Old East York (58),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,45,SIL,,STOLEN,3032,"{'type': 'Point', 'coordinates': (-79.3419026, 43.69181551)}"
-3037,18775,GO-20202053750,B&E,2020-10-28T00:00:00,2020,October,Wednesday,28,302,22,2020-10-29T00:00:00,2020,October,Thursday,29,303,17,D54,Toronto,58,Old East York (58),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,MT,21,BLUONG,600.0,STOLEN,3033,"{'type': 'Point', 'coordinates': (-79.3254827, 43.69859533)}"
-3038,18776,GO-20202053750,B&E,2020-10-28T00:00:00,2020,October,Wednesday,28,302,22,2020-10-29T00:00:00,2020,October,Thursday,29,303,17,D54,Toronto,58,Old East York (58),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,DIADORA ORBITA,BM,1,BLU,400.0,STOLEN,3034,"{'type': 'Point', 'coordinates': (-79.3254827, 43.69859533)}"
-3039,18940,GO-20151652689,THEFT UNDER,2015-09-24T00:00:00,2015,September,Thursday,24,267,15,2015-09-24T00:00:00,2015,September,Thursday,24,267,15,D54,Toronto,58,Old East York (58),"Open Areas (Lakes, Parks, Rivers)",Outside,BIANCHI,,RC,40,BLK,750.0,STOLEN,3035,"{'type': 'Point', 'coordinates': (-79.35100996, 43.69538032)}"
-3040,19073,GO-20179003091,THEFT UNDER,2017-03-10T00:00:00,2017,March,Friday,10,69,1,2017-03-10T00:00:00,2017,March,Friday,10,69,17,D54,Toronto,58,Old East York (58),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,ROAD BIKE,TO,9,GRY,949.0,STOLEN,3036,"{'type': 'Point', 'coordinates': (-79.34454665, 43.69588069)}"
-3041,19086,GO-20171019457,THEFT UNDER - BICYCLE,2017-06-08T00:00:00,2017,June,Thursday,8,159,18,2017-06-08T00:00:00,2017,June,Thursday,8,159,18,D54,Toronto,58,Old East York (58),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,MT,0,DBL,,STOLEN,3037,"{'type': 'Point', 'coordinates': (-79.33418306, 43.69675075)}"
-3042,19115,GO-20179015421,THEFT UNDER,2017-09-21T00:00:00,2017,September,Thursday,21,264,16,2017-09-21T00:00:00,2017,September,Thursday,21,264,21,D54,Toronto,58,Old East York (58),Schools During Un-Supervised Activity,Educational,SU,SUPERCYCLE,MT,21,BLK,0.0,STOLEN,3038,"{'type': 'Point', 'coordinates': (-79.33201308, 43.69524269)}"
-3043,19337,GO-2020441852,THEFT OVER,2020-03-02T00:00:00,2020,March,Monday,2,62,3,2020-03-02T00:00:00,2020,March,Monday,2,62,13,D54,Toronto,58,Old East York (58),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,TAILON,OT,1,BRN,3500.0,UNKNOWN,3039,"{'type': 'Point', 'coordinates': (-79.33425537, 43.69279366)}"
-3044,22529,GO-20209020567,THEFT UNDER,2020-08-13T00:00:00,2020,August,Thursday,13,226,4,2020-08-18T00:00:00,2020,August,Tuesday,18,231,18,D54,Toronto,58,Old East York (58),"Single Home, House (Attach Garage, Cottage, Mobile)",House,IN,SUPERIOR,MT,5,GRY,300.0,STOLEN,3040,"{'type': 'Point', 'coordinates': (-79.32571463, 43.69660307)}"
-3045,22912,GO-20151275675,THEFT UNDER,2015-07-20T00:00:00,2015,July,Monday,20,201,5,2015-07-26T00:00:00,2015,July,Sunday,26,207,12,D54,Toronto,58,Old East York (58),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DIAMANT,,TO,24,DBL,600.0,STOLEN,3041,"{'type': 'Point', 'coordinates': (-79.33081309, 43.69549659)}"
-3046,25560,GO-20181254679,THEFT UNDER,2018-07-09T00:00:00,2018,July,Monday,9,190,19,2018-07-10T00:00:00,2018,July,Tuesday,10,191,11,D54,Toronto,58,Old East York (58),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,NAVIGATOR,RC,7,SIL,,STOLEN,3042,"{'type': 'Point', 'coordinates': (-79.33941305, 43.69364962)}"
-3047,25787,GO-20209025283,THEFT UNDER,2020-10-02T00:00:00,2020,October,Friday,2,276,17,2020-10-02T00:00:00,2020,October,Friday,2,276,21,D54,Toronto,58,Old East York (58),Schools During Un-Supervised Activity,Educational,CC,,MT,21,WHI,780.0,STOLEN,3043,"{'type': 'Point', 'coordinates': (-79.34788115, 43.69271893)}"
-3048,588,GO-20171035882,THEFT OF EBIKE UNDER $5000,2017-06-11T00:00:00,2017,June,Sunday,11,162,1,2017-06-11T00:00:00,2017,June,Sunday,11,162,4,D54,Toronto,59,Danforth East York (59),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,DAYMAK,BISON,EL,1,RED,700.0,STOLEN,3044,"{'type': 'Point', 'coordinates': (-79.31604983, 43.69335557)}"
-3049,635,GO-20171085628,THEFT UNDER - BICYCLE,2017-06-11T00:00:00,2017,June,Sunday,11,162,0,2017-06-18T00:00:00,2017,June,Sunday,18,169,7,D54,Toronto,59,Danforth East York (59),"Construction Site (Warehouse, Trailer, Shed)",Commercial,OTHER,,MT,18,,,STOLEN,3045,"{'type': 'Point', 'coordinates': (-79.31618861, 43.69239626)}"
-3050,636,GO-20171085628,THEFT UNDER - BICYCLE,2017-06-11T00:00:00,2017,June,Sunday,11,162,0,2017-06-18T00:00:00,2017,June,Sunday,18,169,7,D54,Toronto,59,Danforth East York (59),"Construction Site (Warehouse, Trailer, Shed)",Commercial,SCHWINN,,RG,10,,600.0,STOLEN,3046,"{'type': 'Point', 'coordinates': (-79.31618861, 43.69239626)}"
-3051,637,GO-20171085628,THEFT UNDER - BICYCLE,2017-06-11T00:00:00,2017,June,Sunday,11,162,0,2017-06-18T00:00:00,2017,June,Sunday,18,169,7,D54,Toronto,59,Danforth East York (59),"Construction Site (Warehouse, Trailer, Shed)",Commercial,SCHWINN,,RG,10,,,STOLEN,3047,"{'type': 'Point', 'coordinates': (-79.31618861, 43.69239626)}"
-3052,1281,GO-20179013805,THEFT UNDER - BICYCLE,2017-08-31T00:00:00,2017,August,Thursday,31,243,23,2017-09-01T00:00:00,2017,September,Friday,1,244,9,D54,Toronto,59,Danforth East York (59),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GF,HOO KOO E KOO 1,MT,21,GRY,900.0,STOLEN,3048,"{'type': 'Point', 'coordinates': (-79.32603452, 43.69215242)}"
-3053,2444,GO-20189017199,THEFT UNDER - BICYCLE,2018-06-03T00:00:00,2018,June,Sunday,3,154,0,2018-06-03T00:00:00,2018,June,Sunday,3,154,13,D54,Toronto,59,Danforth East York (59),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,ZEKTOR 3,RG,18,BLK,1200.0,STOLEN,3049,"{'type': 'Point', 'coordinates': (-79.31954614, 43.69515957)}"
-3054,2445,GO-20189017199,THEFT UNDER - BICYCLE,2018-06-03T00:00:00,2018,June,Sunday,3,154,0,2018-06-03T00:00:00,2018,June,Sunday,3,154,13,D54,Toronto,59,Danforth East York (59),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,DEW PLUS,RG,27,BLU,1200.0,STOLEN,3050,"{'type': 'Point', 'coordinates': (-79.31954614, 43.69515957)}"
-3055,2948,GO-20181358409,THEFT UNDER - BICYCLE,2018-07-19T00:00:00,2018,July,Thursday,19,200,12,2018-07-25T00:00:00,2018,July,Wednesday,25,206,12,D54,Toronto,59,Danforth East York (59),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,TALON 2,MT,18,BLU,925.0,STOLEN,3051,"{'type': 'Point', 'coordinates': (-79.33854177, 43.686048250000006)}"
-3056,3448,GO-20189030044,THEFT UNDER - BICYCLE,2018-09-11T00:00:00,2018,September,Tuesday,11,254,9,2018-09-12T00:00:00,2018,September,Wednesday,12,255,9,D54,Toronto,59,Danforth East York (59),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,MT,21,DGR,0.0,STOLEN,3052,"{'type': 'Point', 'coordinates': (-79.33961183, 43.68969213)}"
-3057,4395,GO-20199017125,THEFT UNDER,2019-06-01T00:00:00,2019,June,Saturday,1,152,15,2019-06-01T00:00:00,2019,June,Saturday,1,152,17,D54,Toronto,59,Danforth East York (59),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,15,SIL,400.0,STOLEN,3053,"{'type': 'Point', 'coordinates': (-79.34094657, 43.68942155)}"
-3058,4402,GO-20199017125,THEFT UNDER,2019-06-01T00:00:00,2019,June,Saturday,1,152,15,2019-06-01T00:00:00,2019,June,Saturday,1,152,17,D54,Toronto,59,Danforth East York (59),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,15,SIL,400.0,STOLEN,3054,"{'type': 'Point', 'coordinates': (-79.34094657, 43.68942155)}"
-3059,4712,GO-20199021583,THEFT UNDER,2019-07-07T00:00:00,2019,July,Sunday,7,188,9,2019-07-09T00:00:00,2019,July,Tuesday,9,190,10,D54,Toronto,59,Danforth East York (59),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,20,RED,1500.0,STOLEN,3055,"{'type': 'Point', 'coordinates': (-79.33402351, 43.68546162)}"
-3060,5210,GO-20191679111,THEFT UNDER - BICYCLE,2019-09-02T00:00:00,2019,September,Monday,2,245,6,2019-09-02T00:00:00,2019,September,Monday,2,245,16,D54,Toronto,59,Danforth East York (59),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,SIRRUS,OT,16,BLK,800.0,STOLEN,3056,"{'type': 'Point', 'coordinates': (-79.34199219, 43.68708057)}"
-3061,5384,GO-20199031168,THEFT UNDER,2019-09-22T00:00:00,2019,September,Sunday,22,265,23,2019-09-23T00:00:00,2019,September,Monday,23,266,11,D54,Toronto,59,Danforth East York (59),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,GLOBE,RG,24,DBL,350.0,STOLEN,3057,"{'type': 'Point', 'coordinates': (-79.3290727, 43.68730129)}"
-3062,5533,GO-20199034099,THEFT UNDER,2019-10-16T00:00:00,2019,October,Wednesday,16,289,4,2019-10-16T00:00:00,2019,October,Wednesday,16,289,15,D54,Toronto,59,Danforth East York (59),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,CYPRUS,RG,21,DBL,499.0,STOLEN,3058,"{'type': 'Point', 'coordinates': (-79.34227876, 43.68443134)}"
-3063,5613,GO-20199035723,THEFT FROM MOTOR VEHICLE UNDER,2019-10-23T00:00:00,2019,October,Wednesday,23,296,21,2019-10-29T00:00:00,2019,October,Tuesday,29,302,15,D54,Toronto,59,Danforth East York (59),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,CODA SPORT,RG,24,DBL,0.0,STOLEN,3059,"{'type': 'Point', 'coordinates': (-79.3308934, 43.68768786)}"
-3064,6434,GO-20201146745,B&E,2020-06-21T00:00:00,2020,June,Sunday,21,173,5,2020-06-22T00:00:00,2020,June,Monday,22,174,8,D54,Toronto,59,Danforth East York (59),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,,MT,21,WHI,12.0,STOLEN,3060,"{'type': 'Point', 'coordinates': (-79.33303909, 43.69304399)}"
-3065,6541,GO-20209016936,THEFT UNDER,2020-06-29T00:00:00,2020,June,Monday,29,181,0,2020-07-06T00:00:00,2020,July,Monday,6,188,12,D54,Toronto,59,Danforth East York (59),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,OT,21,BRZ,1200.0,STOLEN,3061,"{'type': 'Point', 'coordinates': (-79.3354643, 43.68866015)}"
-3066,6670,GO-20209017988,THEFT UNDER,2020-07-20T00:00:00,2020,July,Monday,20,202,5,2020-07-20T00:00:00,2020,July,Monday,20,202,5,D54,Toronto,59,Danforth East York (59),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,ALL TERRA,MT,21,BLK,500.0,STOLEN,3062,"{'type': 'Point', 'coordinates': (-79.34087527, 43.6841443)}"
-3067,6671,GO-20209017988,THEFT UNDER,2020-07-20T00:00:00,2020,July,Monday,20,202,5,2020-07-20T00:00:00,2020,July,Monday,20,202,5,D54,Toronto,59,Danforth East York (59),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,NITRO XT,MT,18,BLU,170.0,STOLEN,3063,"{'type': 'Point', 'coordinates': (-79.34087527, 43.6841443)}"
-3068,6672,GO-20209017988,THEFT UNDER,2020-07-20T00:00:00,2020,July,Monday,20,202,5,2020-07-20T00:00:00,2020,July,Monday,20,202,5,D54,Toronto,59,Danforth East York (59),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,,MT,1,BLU,140.0,STOLEN,3064,"{'type': 'Point', 'coordinates': (-79.34087527, 43.6841443)}"
-3069,7087,GO-20209021437,THEFT UNDER,2020-08-24T00:00:00,2020,August,Monday,24,237,16,2020-08-26T00:00:00,2020,August,Wednesday,26,239,16,D54,Toronto,59,Danforth East York (59),Ttc Subway Station,Transit,UK,,RG,5,BLU,300.0,STOLEN,3065,"{'type': 'Point', 'coordinates': (-79.31310933, 43.68652567000001)}"
-3070,7385,GO-20209024905,THEFT UNDER,2020-09-29T00:00:00,2020,September,Tuesday,29,273,19,2020-09-30T00:00:00,2020,September,Wednesday,30,274,12,D54,Toronto,59,Danforth East York (59),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,SC,,RG,24,BLK,350.0,STOLEN,3066,"{'type': 'Point', 'coordinates': (-79.31851058, 43.69280979)}"
-3071,7596,GO-20209028746,THEFT UNDER,2020-11-05T00:00:00,2020,November,Thursday,5,310,7,2020-11-05T00:00:00,2020,November,Thursday,5,310,15,D54,Toronto,59,Danforth East York (59),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,DOMANE AL 2 WSD,RG,16,DBL,1000.0,STOLEN,3067,"{'type': 'Point', 'coordinates': (-79.32555498, 43.68804962)}"
-3072,7644,GO-20209029851,THEFT UNDER,2020-11-14T00:00:00,2020,November,Saturday,14,319,15,2020-11-17T00:00:00,2020,November,Tuesday,17,322,15,D54,Toronto,59,Danforth East York (59),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,GENESIS TRAFIK,RG,24,GRY,619.0,STOLEN,3068,"{'type': 'Point', 'coordinates': (-79.32547713, 43.69082011)}"
-3073,7667,GO-20209030697,THEFT UNDER,2020-11-26T00:00:00,2020,November,Thursday,26,331,13,2020-11-27T00:00:00,2020,November,Friday,27,332,11,D54,Toronto,59,Danforth East York (59),"Apartment (Rooming House, Condo)",Apartment,SU,,MT,15,MRN,350.0,STOLEN,3069,"{'type': 'Point', 'coordinates': (-79.34151878, 43.69084632)}"
-3074,7668,GO-20209030697,THEFT UNDER,2020-11-26T00:00:00,2020,November,Thursday,26,331,13,2020-11-27T00:00:00,2020,November,Friday,27,332,11,D54,Toronto,59,Danforth East York (59),"Apartment (Rooming House, Condo)",Apartment,UK,ADAMS ORIGINAL,FO,1,BLK,250.0,STOLEN,3070,"{'type': 'Point', 'coordinates': (-79.34151878, 43.69084632)}"
-3075,8987,GO-20149007256,THEFT UNDER,2014-09-16T00:00:00,2014,September,Tuesday,16,259,1,2014-09-27T00:00:00,2014,September,Saturday,27,270,16,D54,Toronto,59,Danforth East York (59),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,STINGER,EL,35,PLE,850.0,STOLEN,3071,"{'type': 'Point', 'coordinates': (-79.33167404, 43.68946281)}"
-3076,10075,GO-20159004835,FRAUD UNDER,2015-07-06T00:00:00,2015,July,Monday,6,187,21,2015-07-21T00:00:00,2015,July,Tuesday,21,202,21,D54,Toronto,59,Danforth East York (59),Unknown,Other,TR,3500 D 13 TRUE,MT,18,BLU,500.0,STOLEN,3072,"{'type': 'Point', 'coordinates': (-79.33717319, 43.69021347)}"
-3077,10422,GO-20159006851,THEFT UNDER,2015-09-07T00:00:00,2015,September,Monday,7,250,0,2015-09-07T00:00:00,2015,September,Monday,7,250,18,D54,Toronto,59,Danforth East York (59),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,MISSY,RG,1,PNK,100.0,STOLEN,3073,"{'type': 'Point', 'coordinates': (-79.32879665, 43.68658238)}"
-3078,10886,GO-20152203000,PROPERTY - FOUND,2015-12-24T00:00:00,2015,December,Thursday,24,358,14,2015-12-24T00:00:00,2015,December,Thursday,24,358,14,D54,Toronto,59,Danforth East York (59),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RALEIGH,,MT,21,BLK,,UNKNOWN,3074,"{'type': 'Point', 'coordinates': (-79.34657099, 43.68358935)}"
-3079,11055,GO-2016412669,B&E,2016-03-08T00:00:00,2016,March,Tuesday,8,68,8,2016-03-09T00:00:00,2016,March,Wednesday,9,69,13,D54,Toronto,59,Danforth East York (59),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,,MT,60,GRY,0.0,STOLEN,3075,"{'type': 'Point', 'coordinates': (-79.34201301, 43.69086007000001)}"
-3080,11182,GO-20169003717,THEFT UNDER,2016-04-22T00:00:00,2016,April,Friday,22,113,16,2016-04-22T00:00:00,2016,April,Friday,22,113,22,D54,Toronto,59,Danforth East York (59),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RC,18,SIL,1200.0,STOLEN,3076,"{'type': 'Point', 'coordinates': (-79.33033211, 43.68975164)}"
-3081,11183,GO-20169003717,THEFT UNDER,2016-04-22T00:00:00,2016,April,Friday,22,113,16,2016-04-22T00:00:00,2016,April,Friday,22,113,22,D54,Toronto,59,Danforth East York (59),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,,RC,27,BLK,570.0,STOLEN,3077,"{'type': 'Point', 'coordinates': (-79.33033211, 43.68975164)}"
-3082,11311,GO-2016829342,B&E,2016-05-14T00:00:00,2016,May,Saturday,14,135,3,2016-05-14T00:00:00,2016,May,Saturday,14,135,12,D54,Toronto,59,Danforth East York (59),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,CAMBER CARBON,MT,99,BLKRED,6000.0,STOLEN,3078,"{'type': 'Point', 'coordinates': (-79.34201301, 43.69086007000001)}"
-3083,11312,GO-2016829342,B&E,2016-05-14T00:00:00,2016,May,Saturday,14,135,3,2016-05-14T00:00:00,2016,May,Saturday,14,135,12,D54,Toronto,59,Danforth East York (59),"Apartment (Rooming House, Condo)",Apartment,NORCO,THRESHOLD 2,RG,99,BLKBLU,3000.0,STOLEN,3079,"{'type': 'Point', 'coordinates': (-79.34201301, 43.69086007000001)}"
-3084,11355,GO-2016888227,MISCHIEF UNDER,2016-05-21T00:00:00,2016,May,Saturday,21,142,11,2016-05-23T00:00:00,2016,May,Monday,23,144,16,D54,Toronto,59,Danforth East York (59),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,AGRESSOR,MT,0,BLU,200.0,STOLEN,3080,"{'type': 'Point', 'coordinates': (-79.32062053, 43.69144722)}"
-3085,11356,GO-2016888227,MISCHIEF UNDER,2016-05-21T00:00:00,2016,May,Saturday,21,142,11,2016-05-23T00:00:00,2016,May,Monday,23,144,16,D54,Toronto,59,Danforth East York (59),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,HYDRA,MT,0,PLE,400.0,STOLEN,3081,"{'type': 'Point', 'coordinates': (-79.32062053, 43.69144722)}"
-3086,11608,GO-20161093224,THEFT OF MOTOR VEHICLE,2016-06-14T00:00:00,2016,June,Tuesday,14,166,12,2016-06-22T00:00:00,2016,June,Wednesday,22,174,21,D54,Toronto,59,Danforth East York (59),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,OT,10,GLD,,STOLEN,3082,"{'type': 'Point', 'coordinates': (-79.3365737, 43.68646817)}"
-3087,11649,GO-20161126760,THEFT UNDER - BICYCLE,2016-06-27T00:00:00,2016,June,Monday,27,179,21,2016-06-27T00:00:00,2016,June,Monday,27,179,21,D54,Toronto,59,Danforth East York (59),Convenience Stores,Commercial,OTHER,,MT,0,PLE,100.0,STOLEN,3083,"{'type': 'Point', 'coordinates': (-79.31649057000001, 43.69430225)}"
-3088,11680,GO-20169006635,THEFT UNDER,2016-07-02T00:00:00,2016,July,Saturday,2,184,17,2016-07-02T00:00:00,2016,July,Saturday,2,184,18,D54,Toronto,59,Danforth East York (59),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RM,WHISTLER 10,MT,18,GRY,600.0,STOLEN,3084,"{'type': 'Point', 'coordinates': (-79.3144771, 43.6896495)}"
-3089,12672,GO-20169012538,THEFT UNDER - BICYCLE,2016-10-23T00:00:00,2016,October,Sunday,23,297,20,2016-10-24T00:00:00,2016,October,Monday,24,298,20,D54,Toronto,59,Danforth East York (59),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,THE BARON,RG,1,BLK,500.0,STOLEN,3085,"{'type': 'Point', 'coordinates': (-79.33563707, 43.68668059)}"
-3090,12948,GO-20191271545,THEFT UNDER,2019-07-01T00:00:00,2019,July,Monday,1,182,13,2019-07-08T00:00:00,2019,July,Monday,8,189,9,D54,Toronto,59,Danforth East York (59),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NAKAMURA,,MT,12,PLEWHI,250.0,STOLEN,3086,"{'type': 'Point', 'coordinates': (-79.33148116, 43.68601055)}"
-3091,13041,GO-20209014781,THEFT UNDER,2020-06-06T00:00:00,2020,June,Saturday,6,158,21,2020-06-07T00:00:00,2020,June,Sunday,7,159,9,D54,Toronto,59,Danforth East York (59),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,OT,7,BLU,650.0,STOLEN,3087,"{'type': 'Point', 'coordinates': (-79.33854177, 43.686048250000006)}"
-3092,13065,GO-20209016918,THEFT UNDER,2020-07-03T00:00:00,2020,July,Friday,3,185,9,2020-07-05T00:00:00,2020,July,Sunday,5,187,22,D54,Toronto,59,Danforth East York (59),Go Station,Transit,CA,,OT,21,GRY,1000.0,STOLEN,3088,"{'type': 'Point', 'coordinates': (-79.33839761, 43.68994329)}"
-3093,14086,GO-20161354819,PROPERTY - FOUND,2016-08-02T00:00:00,2016,August,Tuesday,2,215,6,2016-08-02T00:00:00,2016,August,Tuesday,2,215,7,D54,Toronto,59,Danforth East York (59),"Apartment (Rooming House, Condo)",Apartment,DEVINCI,OSLO,MT,24,GRY,1000.0,UNKNOWN,3089,"{'type': 'Point', 'coordinates': (-79.34201301, 43.69086007000001)}"
-3094,14144,GO-2017252094,THEFT UNDER - BICYCLE,2017-02-09T00:00:00,2017,February,Thursday,9,40,7,2017-02-09T00:00:00,2017,February,Thursday,9,40,20,D54,Toronto,59,Danforth East York (59),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,,OT,1,GRY,230.0,STOLEN,3090,"{'type': 'Point', 'coordinates': (-79.34050026, 43.68832389)}"
-3095,14262,GO-20189023477,THEFT UNDER - BICYCLE,2018-07-18T00:00:00,2018,July,Wednesday,18,199,21,2018-07-22T00:00:00,2018,July,Sunday,22,203,23,D54,Toronto,59,Danforth East York (59),"Apartment (Rooming House, Condo)",Apartment,OT,CHINOOK,RG,21,BRZ,980.0,STOLEN,3091,"{'type': 'Point', 'coordinates': (-79.33854177, 43.686048250000006)}"
-3096,14263,GO-20189023477,THEFT UNDER - BICYCLE,2018-07-18T00:00:00,2018,July,Wednesday,18,199,21,2018-07-22T00:00:00,2018,July,Sunday,22,203,23,D54,Toronto,59,Danforth East York (59),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,7,BLK,0.0,STOLEN,3092,"{'type': 'Point', 'coordinates': (-79.33854177, 43.686048250000006)}"
-3097,15913,GO-20143123573,THEFT UNDER,2014-10-15T00:00:00,2014,October,Wednesday,15,288,9,2014-10-17T00:00:00,2014,October,Friday,17,290,17,D54,Toronto,59,Danforth East York (59),"Apartment (Rooming House, Condo)",Apartment,EMMO,STINGER,EL,1,BLK,1000.0,STOLEN,3093,"{'type': 'Point', 'coordinates': (-79.34094657, 43.68942155)}"
-3098,18753,GO-20209022016,THEFT UNDER,2020-09-01T00:00:00,2020,September,Tuesday,1,245,6,2020-09-01T00:00:00,2020,September,Tuesday,1,245,18,D54,Toronto,59,Danforth East York (59),"Construction Site (Warehouse, Trailer, Shed)",Commercial,TR,1.5,RC,14,BLK,1500.0,STOLEN,3094,"{'type': 'Point', 'coordinates': (-79.32547713, 43.69082011)}"
-3099,18863,GO-20142935722,THEFT UNDER,2014-09-18T00:00:00,2014,September,Thursday,18,261,15,2014-09-18T00:00:00,2014,September,Thursday,18,261,16,D54,Toronto,59,Danforth East York (59),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,MEDALIST,RG,21,BLU,200.0,STOLEN,3095,"{'type': 'Point', 'coordinates': (-79.32555498, 43.68804962)}"
-3100,18964,GO-2016423656,B&E W'INTENT,2016-01-28T00:00:00,2016,January,Thursday,28,28,16,2016-03-11T00:00:00,2016,March,Friday,11,71,7,D54,Toronto,59,Danforth East York (59),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,KARAKORAM,3.0 GT,MT,24,ONG,800.0,STOLEN,3096,"{'type': 'Point', 'coordinates': (-79.34201301, 43.69086007000001)}"
-3101,18984,GO-2016981274,THEFT UNDER - BICYCLE,2016-06-05T00:00:00,2016,June,Sunday,5,157,9,2016-06-06T00:00:00,2016,June,Monday,6,158,10,D54,Toronto,59,Danforth East York (59),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,,OT,12,WHI,,STOLEN,3097,"{'type': 'Point', 'coordinates': (-79.3354643, 43.68866015)}"
-3102,19105,GO-20179012619,THEFT UNDER - BICYCLE,2017-08-10T00:00:00,2017,August,Thursday,10,222,17,2017-08-17T00:00:00,2017,August,Thursday,17,229,12,D54,Toronto,59,Danforth East York (59),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,NOVARA,MT,21,BLK,380.0,STOLEN,3098,"{'type': 'Point', 'coordinates': (-79.3308934, 43.68768786)}"
-3103,10908,GO-20169000127,THEFT UNDER,2015-12-21T00:00:00,2015,December,Monday,21,355,12,2016-01-04T00:00:00,2016,January,Monday,4,4,20,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,TR,MAMBA 2012,MT,27,BLK,1800.0,STOLEN,3099,"{'type': 'Point', 'coordinates': (-79.4079443, 43.76441407)}"
-3104,10933,GO-2016115922,THEFT OVER,2016-01-13T00:00:00,2016,January,Wednesday,13,13,8,2016-01-20T00:00:00,2016,January,Wednesday,20,20,9,D32,Toronto,51,Willowdale East (51),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,KTM 3000XCW,OT,1,ONG,13000.0,STOLEN,3100,"{'type': 'Point', 'coordinates': (-79.41199761, 43.77246016)}"
-3105,11143,GO-2016655451,THEFT UNDER - BICYCLE,2016-04-17T00:00:00,2016,April,Sunday,17,108,14,2016-04-17T00:00:00,2016,April,Sunday,17,108,16,D32,Toronto,51,Willowdale East (51),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CANNONDALE,SYNAPSE 105,RC,24,BLK,2260.0,STOLEN,3101,"{'type': 'Point', 'coordinates': (-79.41070756, 43.76071381)}"
-3106,11211,GO-2016720354,THEFT UNDER - BICYCLE,2016-04-13T00:00:00,2016,April,Wednesday,13,104,12,2016-04-27T00:00:00,2016,April,Wednesday,27,118,18,D32,Toronto,51,Willowdale East (51),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,,MT,24,LGR,530.0,STOLEN,3102,"{'type': 'Point', 'coordinates': (-79.38999826, 43.76613467)}"
-3107,11213,GO-2016720569,THEFT OVER - BICYCLE,2016-04-27T00:00:00,2016,April,Wednesday,27,118,19,2016-04-27T00:00:00,2016,April,Wednesday,27,118,19,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,ORANGE,ALPINE 160,MT,21,BLK,8000.0,STOLEN,3103,"{'type': 'Point', 'coordinates': (-79.40966815, 43.76711229)}"
-3108,11221,GO-2016725773,THEFT UNDER - BICYCLE,2016-02-28T00:00:00,2016,February,Sunday,28,59,9,2016-04-28T00:00:00,2016,April,Thursday,28,119,15,D32,Toronto,51,Willowdale East (51),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,RUBY,RG,10,GRYWHI,2800.0,STOLEN,3104,"{'type': 'Point', 'coordinates': (-79.40934023, 43.76033147)}"
-3109,11250,GO-2016758543,THEFT UNDER - BICYCLE,2016-05-03T00:00:00,2016,May,Tuesday,3,124,8,2016-05-03T00:00:00,2016,May,Tuesday,3,124,16,D32,Toronto,51,Willowdale East (51),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,,MT,21,,300.0,STOLEN,3105,"{'type': 'Point', 'coordinates': (-79.41089678000002, 43.76150872)}"
-3110,11317,GO-20169004581,THEFT UNDER - BICYCLE,2016-05-16T00:00:00,2016,May,Monday,16,137,15,2016-05-16T00:00:00,2016,May,Monday,16,137,17,D32,Toronto,51,Willowdale East (51),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,REFLEX 20,MT,9,BLK,200.0,STOLEN,3106,"{'type': 'Point', 'coordinates': (-79.41070756, 43.76071381)}"
-3111,11363,GO-20169004879,THEFT UNDER - BICYCLE,2016-05-24T00:00:00,2016,May,Tuesday,24,145,8,2016-05-24T00:00:00,2016,May,Tuesday,24,145,14,D32,Toronto,51,Willowdale East (51),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,GF,TASSAJARA,MT,24,SIL,200.0,STOLEN,3107,"{'type': 'Point', 'coordinates': (-79.40677813, 43.76150432)}"
-3112,11418,GO-20169005172,THEFT UNDER - BICYCLE,2016-05-30T00:00:00,2016,May,Monday,30,151,2,2016-05-30T00:00:00,2016,May,Monday,30,151,21,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,OT,CAMELEON,MT,27,RED,700.0,STOLEN,3108,"{'type': 'Point', 'coordinates': (-79.3885365, 43.76905513)}"
-3113,11607,GO-20161090270,THEFT UNDER - BICYCLE,2016-06-22T00:00:00,2016,June,Wednesday,22,174,13,2016-06-22T00:00:00,2016,June,Wednesday,22,174,13,D32,Toronto,51,Willowdale East (51),Schools During Supervised Activity,Educational,OTHER,OTHER,OT,10,,500.0,STOLEN,3109,"{'type': 'Point', 'coordinates': (-79.40226414, 43.76343105)}"
-3114,11637,GO-20169006359,THEFT OF EBIKE UNDER $5000,2016-06-25T00:00:00,2016,June,Saturday,25,177,13,2016-06-25T00:00:00,2016,June,Saturday,25,177,18,D32,Toronto,51,Willowdale East (51),Bar / Restaurant,Commercial,EM,,EL,30,RED,1150.0,STOLEN,3110,"{'type': 'Point', 'coordinates': (-79.41089678000002, 43.76150872)}"
-3115,11803,GO-20169007174,THEFT UNDER,2016-07-10T00:00:00,2016,July,Sunday,10,192,11,2016-07-14T00:00:00,2016,July,Thursday,14,196,11,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,10,LGR,280.0,STOLEN,3112,"{'type': 'Point', 'coordinates': (-79.41315316, 43.77692597)}"
-3116,11819,GO-20169007266,THEFT UNDER,2016-06-23T00:00:00,2016,June,Thursday,23,175,17,2016-07-15T00:00:00,2016,July,Friday,15,197,14,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,OT,ROCKHOPPER,MT,24,BLK,1500.0,STOLEN,3113,"{'type': 'Point', 'coordinates': (-79.40934023, 43.76033147)}"
-3117,11868,GO-20169007572,THEFT UNDER - BICYCLE,2016-07-15T00:00:00,2016,July,Friday,15,197,19,2016-07-21T00:00:00,2016,July,Thursday,21,203,21,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,SU,TEMPO,RG,21,SIL,300.0,STOLEN,3114,"{'type': 'Point', 'coordinates': (-79.41003415, 43.76798465)}"
-3118,11955,GO-20169007984,THEFT UNDER,2016-07-29T00:00:00,2016,July,Friday,29,211,23,2016-07-31T00:00:00,2016,July,Sunday,31,213,11,D32,Toronto,51,Willowdale East (51),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RA,,RG,21,DGR,450.0,STOLEN,3115,"{'type': 'Point', 'coordinates': (-79.40396032, 43.76742494)}"
-3119,11956,GO-20169007984,THEFT UNDER,2016-07-29T00:00:00,2016,July,Friday,29,211,23,2016-07-31T00:00:00,2016,July,Sunday,31,213,11,D32,Toronto,51,Willowdale East (51),"Private Property Structure (Pool, Shed, Detached Garage)",Other,,,MT,21,BLU,550.0,STOLEN,3116,"{'type': 'Point', 'coordinates': (-79.40396032, 43.76742494)}"
-3120,11957,GO-20169007984,THEFT UNDER,2016-07-29T00:00:00,2016,July,Friday,29,211,23,2016-07-31T00:00:00,2016,July,Sunday,31,213,11,D32,Toronto,51,Willowdale East (51),"Private Property Structure (Pool, Shed, Detached Garage)",Other,IH,,MT,21,GRY,600.0,STOLEN,3117,"{'type': 'Point', 'coordinates': (-79.40396032, 43.76742494)}"
-3121,11958,GO-20169007984,THEFT UNDER,2016-07-29T00:00:00,2016,July,Friday,29,211,23,2016-07-31T00:00:00,2016,July,Sunday,31,213,11,D32,Toronto,51,Willowdale East (51),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,SC,1,RED,200.0,STOLEN,3118,"{'type': 'Point', 'coordinates': (-79.40396032, 43.76742494)}"
-3122,12015,GO-20169008317,THEFT UNDER - BICYCLE,2016-08-05T00:00:00,2016,August,Friday,5,218,8,2016-08-06T00:00:00,2016,August,Saturday,6,219,21,D32,Toronto,51,Willowdale East (51),"Open Areas (Lakes, Parks, Rivers)",Outside,KO,,MT,8,BLK,1500.0,STOLEN,3119,"{'type': 'Point', 'coordinates': (-79.41076788, 43.76972877)}"
-3123,12168,GO-20169009174,THEFT UNDER - BICYCLE,2016-08-21T00:00:00,2016,August,Sunday,21,234,11,2016-08-21T00:00:00,2016,August,Sunday,21,234,14,D32,Toronto,51,Willowdale East (51),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,AVANT H60,RC,18,,990.0,STOLEN,3120,"{'type': 'Point', 'coordinates': (-79.39488686, 43.76589674)}"
-3124,12260,GO-20169009951,THEFT UNDER - BICYCLE,2016-09-04T00:00:00,2016,September,Sunday,4,248,15,2016-09-04T00:00:00,2016,September,Sunday,4,248,16,D32,Toronto,51,Willowdale East (51),Go Station,Transit,OT,,TO,27,BLK,1000.0,STOLEN,3121,"{'type': 'Point', 'coordinates': (-79.41070756, 43.76071381)}"
-3125,12366,GO-20161656360,THEFT OF EBIKE UNDER $5000,2016-09-17T00:00:00,2016,September,Saturday,17,261,12,2016-09-17T00:00:00,2016,September,Saturday,17,261,17,D32,Toronto,51,Willowdale East (51),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,BLATU,,EL,0,BLU,1000.0,STOLEN,3122,"{'type': 'Point', 'coordinates': (-79.41279351, 43.7755047)}"
-3126,12450,GO-20161705321,THEFT FROM MOTOR VEHICLE UNDER,2016-09-24T00:00:00,2016,September,Saturday,24,268,23,2016-09-25T00:00:00,2016,September,Sunday,25,269,9,D32,Toronto,51,Willowdale East (51),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPORTEK,,MT,18,BLU,50.0,UNKNOWN,3123,"{'type': 'Point', 'coordinates': (-79.40801098, 43.77033786)}"
-3127,12795,GO-20169013592,THEFT UNDER - BICYCLE,2016-10-29T00:00:00,2016,October,Saturday,29,303,16,2016-11-18T00:00:00,2016,November,Friday,18,323,21,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,OT,,UN,20,GRY,800.0,STOLEN,3124,"{'type': 'Point', 'coordinates': (-79.40653241, 43.75650092)}"
-3128,13497,GO-20199018805,THEFT UNDER,2019-06-09T00:00:00,2019,June,Sunday,9,160,21,2019-06-16T00:00:00,2019,June,Sunday,16,167,9,D32,Toronto,51,Willowdale East (51),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,X-TRAIL,RC,24,PLE,2700.0,STOLEN,3125,"{'type': 'Point', 'coordinates': (-79.4071259, 43.75791206)}"
-3129,13531,GO-20192155804,THEFT UNDER - BICYCLE,2019-11-07T00:00:00,2019,November,Thursday,7,311,15,2019-11-07T00:00:00,2019,November,Thursday,7,311,20,D32,Toronto,51,Willowdale East (51),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,,RG,10,GRY,250.0,STOLEN,3126,"{'type': 'Point', 'coordinates': (-79.41286325, 43.76927425)}"
-3130,13536,GO-20209010813,THEFT UNDER - BICYCLE,2020-04-09T00:00:00,2020,April,Thursday,9,100,18,2020-04-09T00:00:00,2020,April,Thursday,9,100,20,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,CANNONDALE,QUICK 7,RG,24,DBL,600.0,STOLEN,3127,"{'type': 'Point', 'coordinates': (-79.39306144, 43.76323381)}"
-3131,13545,GO-20209015995,THEFT UNDER - BICYCLE,2020-06-20T00:00:00,2020,June,Saturday,20,172,14,2020-06-23T00:00:00,2020,June,Tuesday,23,175,18,D32,Toronto,51,Willowdale East (51),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,DUAL SPORT 1,RG,21,SIL,750.0,STOLEN,3128,"{'type': 'Point', 'coordinates': (-79.40934023, 43.76033147)}"
-3132,13546,GO-20209016080,THEFT UNDER - BICYCLE,2020-06-23T00:00:00,2020,June,Tuesday,23,175,21,2020-06-24T00:00:00,2020,June,Wednesday,24,176,18,D32,Toronto,51,Willowdale East (51),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,,OT,1,LBL,270.0,STOLEN,3129,"{'type': 'Point', 'coordinates': (-79.40399933, 43.75860698)}"
-3133,13547,GO-20209016159,THEFT UNDER - BICYCLE,2020-02-01T00:00:00,2020,February,Saturday,1,32,18,2020-06-25T00:00:00,2020,June,Thursday,25,177,17,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,GI,REVEL,MT,70,WHI,1200.0,STOLEN,3130,"{'type': 'Point', 'coordinates': (-79.40653241, 43.75650092)}"
-3134,13554,GO-20201239799,THEFT UNDER - BICYCLE,2020-06-27T00:00:00,2020,June,Saturday,27,179,22,2020-07-11T00:00:00,2020,July,Saturday,11,193,10,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,ZZZ,,MT,10,GRY,300.0,STOLEN,3131,"{'type': 'Point', 'coordinates': (-79.40614975, 43.77640983)}"
-3135,13557,GO-20209017655,THEFT UNDER - BICYCLE,2020-07-10T00:00:00,2020,July,Friday,10,192,13,2020-07-15T00:00:00,2020,July,Wednesday,15,197,17,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,40,RED,900.0,STOLEN,3132,"{'type': 'Point', 'coordinates': (-79.4071259, 43.75791206)}"
-3136,13563,GO-20209018139,THEFT UNDER - BICYCLE,2020-07-20T00:00:00,2020,July,Monday,20,202,19,2020-07-21T00:00:00,2020,July,Tuesday,21,203,15,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,EM,,EL,25,BLU,1300.0,STOLEN,3133,"{'type': 'Point', 'coordinates': (-79.41279351, 43.7755047)}"
-3137,13569,GO-20201434182,THEFT UNDER - BICYCLE,2020-07-25T00:00:00,2020,July,Saturday,25,207,17,2020-08-01T00:00:00,2020,August,Saturday,1,214,17,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,SUPERCYCLE,071-1927-0,MT,8,BLK,407.0,STOLEN,3134,"{'type': 'Point', 'coordinates': (-79.41227445, 43.78047607)}"
-3138,13571,GO-20209019391,THEFT UNDER - BICYCLE,2020-07-13T00:00:00,2020,July,Monday,13,195,6,2020-08-05T00:00:00,2020,August,Wednesday,5,218,2,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,15,BLK,700.0,STOLEN,3135,"{'type': 'Point', 'coordinates': (-79.41199761, 43.77246016)}"
-3139,13574,GO-20209019863,THEFT UNDER - BICYCLE,2020-08-10T00:00:00,2020,August,Monday,10,223,23,2020-08-11T00:00:00,2020,August,Tuesday,11,224,0,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,OT,ALLEZ SPORT,RC,18,BLU,750.0,STOLEN,3136,"{'type': 'Point', 'coordinates': (-79.40399933, 43.75860698)}"
-3140,13576,GO-20201531230,THEFT UNDER,2020-08-15T00:00:00,2020,August,Saturday,15,228,11,2020-08-15T00:00:00,2020,August,Saturday,15,228,13,D32,Toronto,51,Willowdale East (51),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,DUAL SPORT 3,OT,6,GRN,1200.0,STOLEN,3137,"{'type': 'Point', 'coordinates': (-79.41101450000001, 43.77739285)}"
-3141,13583,GO-20209022640,THEFT UNDER - BICYCLE,2020-09-07T00:00:00,2020,September,Monday,7,251,11,2020-09-08T00:00:00,2020,September,Tuesday,8,252,16,D32,Toronto,51,Willowdale East (51),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,19 SIRRUS WMN,TO,25,BLK,1000.0,STOLEN,3138,"{'type': 'Point', 'coordinates': (-79.41111496, 43.76235207)}"
-3142,13594,GO-20209028234,THEFT UNDER - BICYCLE,2020-10-30T00:00:00,2020,October,Friday,30,304,1,2020-10-31T00:00:00,2020,October,Saturday,31,305,12,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,TR,,RG,10,BLK,1200.0,STOLEN,3139,"{'type': 'Point', 'coordinates': (-79.4071259, 43.75791206)}"
-3143,13597,GO-20202166614,THEFT UNDER - BICYCLE,2020-11-15T00:00:00,2020,November,Sunday,15,320,10,2020-11-15T00:00:00,2020,November,Sunday,15,320,10,D32,Toronto,51,Willowdale East (51),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,SPORT,MT,24,BLK,1100.0,STOLEN,3140,"{'type': 'Point', 'coordinates': (-79.40850721, 43.75760637)}"
-3144,13842,GO-20189035983,THEFT UNDER - BICYCLE,2018-10-28T00:00:00,2018,October,Sunday,28,301,23,2018-10-28T00:00:00,2018,October,Sunday,28,301,23,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,27,DGR,2000.0,STOLEN,3141,"{'type': 'Point', 'coordinates': (-79.40871291, 43.76283625)}"
-3145,13860,GO-2019246360,THEFT UNDER - BICYCLE,2019-02-07T00:00:00,2019,February,Thursday,7,38,19,2019-02-08T00:00:00,2019,February,Friday,8,39,10,D32,Toronto,51,Willowdale East (51),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,HYBRID,OT,0,BLKBLU,700.0,STOLEN,3142,"{'type': 'Point', 'coordinates': (-79.41101450000001, 43.77739285)}"
-3146,14688,GO-20179012053,THEFT UNDER - BICYCLE,2017-08-09T00:00:00,2017,August,Wednesday,9,221,7,2017-08-09T00:00:00,2017,August,Wednesday,9,221,19,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,12,,0.0,STOLEN,3143,"{'type': 'Point', 'coordinates': (-79.40653241, 43.75650092)}"
-3147,14752,GO-20179022808,THEFT UNDER - BICYCLE,2017-12-21T00:00:00,2017,December,Thursday,21,355,15,2017-12-22T00:00:00,2017,December,Friday,22,356,15,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,OT,CROSSTRAIL SPOR,OT,21,BLK,1000.0,STOLEN,3144,"{'type': 'Point', 'coordinates': (-79.40653241, 43.75650092)}"
-3148,14754,GO-20189000453,THEFT UNDER - BICYCLE,2018-01-04T00:00:00,2018,January,Thursday,4,4,8,2018-01-06T00:00:00,2018,January,Saturday,6,6,21,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE CITY 201,RG,24,BLK,650.0,STOLEN,3145,"{'type': 'Point', 'coordinates': (-79.39306144, 43.76323381)}"
-3149,14911,GO-20149000401,THEFT UNDER,2014-01-08T00:00:00,2014,January,Wednesday,8,8,17,2014-01-13T00:00:00,2014,January,Monday,13,13,17,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,CA,SLICE,RC,20,WHI,2399.0,STOLEN,3146,"{'type': 'Point', 'coordinates': (-79.40653241, 43.75650092)}"
-3150,14912,GO-20141803189,INCIDENT - BICYCLE,2013-12-01T00:00:00,2013,December,Sunday,1,335,0,2014-03-31T00:00:00,2014,March,Monday,31,90,18,D32,Toronto,51,Willowdale East (51),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GARY FISHER,,MT,10,,,UNKNOWN,3147,"{'type': 'Point', 'coordinates': (-79.4129318, 43.7760828)}"
-3151,14963,GO-20151165878,THEFT UNDER,2015-07-10T00:00:00,2015,July,Friday,10,191,11,2015-07-10T00:00:00,2015,July,Friday,10,191,11,D32,Toronto,51,Willowdale East (51),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,MENS,RG,21,RED,500.0,STOLEN,3148,"{'type': 'Point', 'coordinates': (-79.40471683, 43.76288857)}"
-3152,14964,GO-20159004341,THEFT UNDER,2015-07-09T00:00:00,2015,July,Thursday,9,190,3,2015-07-09T00:00:00,2015,July,Thursday,9,190,11,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,OT,ANNEX 700C,RG,7,BLK,329.0,STOLEN,3149,"{'type': 'Point', 'coordinates': (-79.40615370000002, 43.76484512)}"
-3153,14967,GO-20159004754,THEFT UNDER,2015-07-16T00:00:00,2015,July,Thursday,16,197,11,2015-07-20T00:00:00,2015,July,Monday,20,201,15,D32,Toronto,51,Willowdale East (51),"Open Areas (Lakes, Parks, Rivers)",Outside,RA,,MT,3,,0.0,STOLEN,3150,"{'type': 'Point', 'coordinates': (-79.41240726, 43.76747172)}"
-3154,14974,GO-20159006864,THEFT UNDER,2015-09-07T00:00:00,2015,September,Monday,7,250,17,2015-09-07T00:00:00,2015,September,Monday,7,250,22,D32,Toronto,51,Willowdale East (51),Unknown,Other,OT,,RG,60,BLK,270.0,STOLEN,3151,"{'type': 'Point', 'coordinates': (-79.40763068, 43.76946668)}"
-3155,14980,GO-20151759647,THEFT UNDER,2015-10-11T00:00:00,2015,October,Sunday,11,284,9,2015-10-12T00:00:00,2015,October,Monday,12,285,13,D32,Toronto,51,Willowdale East (51),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,MATRIX,MT,24,GLD,800.0,STOLEN,3152,"{'type': 'Point', 'coordinates': (-79.41111496, 43.76235207)}"
-3156,14983,GO-20152026166,THEFT UNDER,2015-11-18T00:00:00,2015,November,Wednesday,18,322,17,2015-11-26T00:00:00,2015,November,Thursday,26,330,3,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,OT,XPERT 29T,MT,24,BLK,700.0,STOLEN,3153,"{'type': 'Point', 'coordinates': (-79.40653241, 43.75650092)}"
-3157,14996,GO-2016824261,THEFT UNDER - BICYCLE,2016-05-13T00:00:00,2016,May,Friday,13,134,15,2016-05-13T00:00:00,2016,May,Friday,13,134,16,D32,Toronto,51,Willowdale East (51),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CROSS TRAIL,XL,MT,24,BLK,2400.0,STOLEN,3154,"{'type': 'Point', 'coordinates': (-79.41217168, 43.76656437)}"
-3158,15000,GO-2016936607,THEFT UNDER - BICYCLE,2016-05-21T00:00:00,2016,May,Saturday,21,142,15,2016-05-30T00:00:00,2016,May,Monday,30,151,17,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,GIANT,ROVE,OT,27,WHI,750.0,STOLEN,3155,"{'type': 'Point', 'coordinates': (-79.3885365, 43.76905513)}"
-3159,15002,GO-20169005758,THEFT UNDER - BICYCLE,2016-06-10T00:00:00,2016,June,Friday,10,162,18,2016-06-14T00:00:00,2016,June,Tuesday,14,166,9,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,CC,,MT,29,WHI,600.0,STOLEN,3156,"{'type': 'Point', 'coordinates': (-79.41227445, 43.78047607)}"
-3160,15022,GO-20169008936,THEFT UNDER - BICYCLE,2016-08-16T00:00:00,2016,August,Tuesday,16,229,23,2016-08-17T00:00:00,2016,August,Wednesday,17,230,13,D32,Toronto,51,Willowdale East (51),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,FX 7.2,OT,24,GRY,0.0,STOLEN,3157,"{'type': 'Point', 'coordinates': (-79.40166339, 43.77558398000001)}"
-3161,15024,GO-20169009692,THEFT UNDER - BICYCLE,2016-08-29T00:00:00,2016,August,Monday,29,242,15,2016-08-30T00:00:00,2016,August,Tuesday,30,243,11,D32,Toronto,51,Willowdale East (51),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,EASY BOARDING,TO,8,SIL,1400.0,STOLEN,3158,"{'type': 'Point', 'coordinates': (-79.41240726, 43.76747172)}"
-3162,15030,GO-20161666196,THEFT UNDER - BICYCLE,2016-09-03T00:00:00,2016,September,Saturday,3,247,18,2016-09-19T00:00:00,2016,September,Monday,19,263,10,D32,Toronto,51,Willowdale East (51),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RALEIGH,MISCEO 2.0,OT,18,BLK,700.0,STOLEN,3159,"{'type': 'Point', 'coordinates': (-79.41227445, 43.78047607)}"
-3163,15033,GO-20169011160,POSSESSION PROPERTY OBC UNDER,2016-09-22T00:00:00,2016,September,Thursday,22,266,10,2016-09-26T00:00:00,2016,September,Monday,26,270,20,D32,Toronto,51,Willowdale East (51),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,ANTRIM,MT,24,WHI,699.0,STOLEN,3160,"{'type': 'Point', 'coordinates': (-79.41240726, 43.76747172)}"
-3164,16781,GO-20191272626,THEFT UNDER - BICYCLE,2019-07-07T00:00:00,2019,July,Sunday,7,188,20,2019-07-08T00:00:00,2019,July,Monday,8,189,17,D32,Toronto,51,Willowdale East (51),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FELT,2017 MODEL,OT,21,RED,1200.0,STOLEN,3161,"{'type': 'Point', 'coordinates': (-79.39093968, 43.77031275)}"
-3165,16797,GO-20191864292,THEFT UNDER - BICYCLE,2019-09-27T00:00:00,2019,September,Friday,27,270,6,2019-09-27T00:00:00,2019,September,Friday,27,270,16,D32,Toronto,51,Willowdale East (51),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ATX 3 2020,MT,21,BLK,594.0,STOLEN,3162,"{'type': 'Point', 'coordinates': (-79.4135337, 43.7719925)}"
-3166,16799,GO-20199035321,THEFT UNDER - BICYCLE,2019-10-14T00:00:00,2019,October,Monday,14,287,12,2019-10-25T00:00:00,2019,October,Friday,25,298,23,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,CA,,RG,12,BLK,750.0,STOLEN,3163,"{'type': 'Point', 'coordinates': (-79.41279351, 43.7755047)}"
-3167,16812,GO-20209011365,THEFT UNDER - BICYCLE,2020-04-04T00:00:00,2020,April,Saturday,4,95,13,2020-04-17T00:00:00,2020,April,Friday,17,108,14,D32,Toronto,51,Willowdale East (51),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,CCM 29ER,MT,21,GRY,699.0,STOLEN,3164,"{'type': 'Point', 'coordinates': (-79.41153302, 43.77136949)}"
-3168,16814,GO-20209012346,THEFT UNDER - BICYCLE,2020-05-02T00:00:00,2020,May,Saturday,2,123,16,2020-05-02T00:00:00,2020,May,Saturday,2,123,16,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,MA,PIONEER TRAIL,MT,24,GRY,200.0,STOLEN,3165,"{'type': 'Point', 'coordinates': (-79.39306144, 43.76323381)}"
-3169,16823,GO-20209017376,THEFT UNDER - BICYCLE,2020-07-12T00:00:00,2020,July,Sunday,12,194,13,2020-07-12T00:00:00,2020,July,Sunday,12,194,13,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,10,BLU,499.0,STOLEN,3166,"{'type': 'Point', 'coordinates': (-79.4071259, 43.75791206)}"
-3170,16824,GO-20209017820,THEFT UNDER - BICYCLE,2020-07-14T00:00:00,2020,July,Tuesday,14,196,21,2020-07-17T00:00:00,2020,July,Friday,17,199,18,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,TR,DUAL SPORT 2,RG,24,PLE,900.0,STOLEN,3167,"{'type': 'Point', 'coordinates': (-79.40858219, 43.76496556)}"
-3171,16825,GO-20209017931,THEFT UNDER - BICYCLE,2020-07-19T00:00:00,2020,July,Sunday,19,201,0,2020-07-19T00:00:00,2020,July,Sunday,19,201,13,D32,Toronto,51,Willowdale East (51),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,ESCAPE,RG,8,DGR,900.0,STOLEN,3168,"{'type': 'Point', 'coordinates': (-79.40924547, 43.779996340000004)}"
-3172,16828,GO-20201359840,THEFT FROM MOTOR VEHICLE UNDER,2020-07-21T00:00:00,2020,July,Tuesday,21,203,23,2020-07-23T00:00:00,2020,July,Thursday,23,205,10,D32,Toronto,51,Willowdale East (51),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NINEBOT,ELECTRIC,SC,1,BLK,1200.0,STOLEN,3169,"{'type': 'Point', 'coordinates': (-79.41524494, 43.77868058)}"
-3173,16832,GO-20209019013,THEFT UNDER,2020-07-26T00:00:00,2020,July,Sunday,26,208,16,2020-07-30T00:00:00,2020,July,Thursday,30,212,17,D32,Toronto,51,Willowdale East (51),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,,RG,21,BLU,750.0,STOLEN,3170,"{'type': 'Point', 'coordinates': (-79.41116019, 43.7705494)}"
-3174,16835,GO-20209019560,THEFT UNDER - BICYCLE,2020-08-06T00:00:00,2020,August,Thursday,6,219,19,2020-08-06T00:00:00,2020,August,Thursday,6,219,20,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,GI,GIANT TCX,OT,9,BLK,2600.0,STOLEN,3171,"{'type': 'Point', 'coordinates': (-79.4119511, 43.76565724)}"
-3175,16846,GO-20201825269,THEFT UNDER - BICYCLE,2020-09-18T00:00:00,2020,September,Friday,18,262,12,2020-10-05T00:00:00,2020,October,Monday,5,279,19,D32,Toronto,51,Willowdale East (51),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,ROAM 3 DISC,RG,21,GRY,699.0,STOLEN,3172,"{'type': 'Point', 'coordinates': (-79.39198235, 43.76570152)}"
-3176,17106,GO-20181752835,THEFT UNDER - BICYCLE,2018-09-20T00:00:00,2018,September,Thursday,20,263,11,2018-09-21T00:00:00,2018,September,Friday,21,264,19,D32,Toronto,51,Willowdale East (51),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DIRECT JUMP,OTHER,MT,21,BLK,,STOLEN,3173,"{'type': 'Point', 'coordinates': (-79.41240726, 43.76747172)}"
-3177,17754,GO-20179018640,THEFT UNDER,2017-10-31T00:00:00,2017,October,Tuesday,31,304,15,2017-10-31T00:00:00,2017,October,Tuesday,31,304,19,D32,Toronto,51,Willowdale East (51),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,TRAINER,OT,7,,100.0,STOLEN,3174,"{'type': 'Point', 'coordinates': (-79.39488686, 43.76589674)}"
-3178,17758,GO-20172019557,THEFT UNDER - BICYCLE,2017-11-06T00:00:00,2017,November,Monday,6,310,7,2017-11-07T00:00:00,2017,November,Tuesday,7,311,21,D32,Toronto,51,Willowdale East (51),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DEVICE,,RG,21,GRYBLU,,STOLEN,3175,"{'type': 'Point', 'coordinates': (-79.40399933, 43.75860698)}"
-3179,17784,GO-20189001994,THEFT UNDER - BICYCLE,2018-01-21T00:00:00,2018,January,Sunday,21,21,1,2018-01-21T00:00:00,2018,January,Sunday,21,21,18,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,GI,XTC COMP 29ER 1,MT,20,BLK,3000.0,STOLEN,3176,"{'type': 'Point', 'coordinates': (-79.40653241, 43.75650092)}"
-3180,17875,GO-20189025097,THEFT UNDER - BICYCLE,2018-07-30T00:00:00,2018,July,Monday,30,211,7,2018-08-04T00:00:00,2018,August,Saturday,4,216,13,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,TR,DS2,MT,21,RED,720.0,STOLEN,3177,"{'type': 'Point', 'coordinates': (-79.41003415, 43.76798465)}"
-3181,17933,GO-20149005007,THEFT UNDER,2014-07-11T00:00:00,2014,July,Friday,11,192,21,2014-07-15T00:00:00,2014,July,Tuesday,15,196,12,D32,Toronto,51,Willowdale East (51),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SU,,RG,21,BLK,,STOLEN,3178,"{'type': 'Point', 'coordinates': (-79.41315316, 43.77692597)}"
-3182,20082,GO-2020389612,THEFT UNDER - BICYCLE,2019-12-01T00:00:00,2019,December,Sunday,1,335,0,2020-02-24T00:00:00,2020,February,Monday,24,55,10,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,TREK,VERVE 3,OT,9,BLK,1062.0,STOLEN,3179,"{'type': 'Point', 'coordinates': (-79.41434293, 43.77515729)}"
-3183,17941,GO-20142668452,THEFT UNDER,2014-07-30T00:00:00,2014,July,Wednesday,30,211,23,2014-08-09T00:00:00,2014,August,Saturday,9,221,16,D32,Toronto,51,Willowdale East (51),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,MT,1,GRYYEL,,STOLEN,3180,"{'type': 'Point', 'coordinates': (-79.40985720000002, 43.77467616)}"
-3184,17951,GO-20149007469,THEFT UNDER,2014-10-08T00:00:00,2014,October,Wednesday,8,281,8,2014-10-08T00:00:00,2014,October,Wednesday,8,281,9,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,OT,"BLADE 26"""" RESPO",MT,21,BLK,500.0,STOLEN,3181,"{'type': 'Point', 'coordinates': (-79.41279351, 43.7755047)}"
-3185,17966,GO-2015883792,THEFT UNDER,2015-05-26T00:00:00,2015,May,Tuesday,26,146,21,2015-05-27T00:00:00,2015,May,Wednesday,27,147,11,D32,Toronto,51,Willowdale East (51),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NAKAMURA,2015,RG,6,BLK,200.0,STOLEN,3182,"{'type': 'Point', 'coordinates': (-79.41153302, 43.77136949)}"
-3186,17979,GO-20151203238,THEFT UNDER,2015-07-15T00:00:00,2015,July,Wednesday,15,196,7,2015-07-15T00:00:00,2015,July,Wednesday,15,196,20,D32,Toronto,51,Willowdale East (51),Ttc Subway Station,Transit,TREK,7.4,RG,21,LBL,825.0,STOLEN,3183,"{'type': 'Point', 'coordinates': (-79.41111496, 43.76235207)}"
-3187,17980,GO-20159004806,THEFT UNDER,2015-07-20T00:00:00,2015,July,Monday,20,201,16,2015-07-21T00:00:00,2015,July,Tuesday,21,202,13,D32,Toronto,51,Willowdale East (51),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,QUICK 4,OT,24,BLK,400.0,STOLEN,3184,"{'type': 'Point', 'coordinates': (-79.41240726, 43.76747172)}"
-3188,18015,GO-2016450976,THEFT UNDER - BICYCLE,2016-03-15T00:00:00,2016,March,Tuesday,15,75,15,2016-03-15T00:00:00,2016,March,Tuesday,15,75,19,D32,Toronto,51,Willowdale East (51),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,,MT,21,WHIRED,,STOLEN,3185,"{'type': 'Point', 'coordinates': (-79.41089678000002, 43.76150872)}"
-3189,18017,GO-20169003309,THEFT UNDER - BICYCLE,2016-03-20T00:00:00,2016,March,Sunday,20,80,15,2016-04-12T00:00:00,2016,April,Tuesday,12,103,9,D32,Toronto,51,Willowdale East (51),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,TRAIL X2 MIDNIG,MT,8,PLE,400.0,STOLEN,3186,"{'type': 'Point', 'coordinates': (-79.40934023, 43.76033147)}"
-3190,18025,GO-20169005171,THEFT UNDER - BICYCLE,2016-05-04T00:00:00,2016,May,Wednesday,4,125,8,2016-05-30T00:00:00,2016,May,Monday,30,151,21,D32,Toronto,51,Willowdale East (51),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,HYDRA,RG,21,GRY,500.0,STOLEN,3187,"{'type': 'Point', 'coordinates': (-79.41240726, 43.76747172)}"
-3191,18038,GO-20169008331,THEFT UNDER - BICYCLE,2016-08-06T00:00:00,2016,August,Saturday,6,219,11,2016-08-07T00:00:00,2016,August,Sunday,7,220,10,D32,Toronto,51,Willowdale East (51),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,OT,24,BLK,600.0,STOLEN,3188,"{'type': 'Point', 'coordinates': (-79.41070756, 43.76071381)}"
-3192,18039,GO-20169008331,THEFT UNDER - BICYCLE,2016-08-06T00:00:00,2016,August,Saturday,6,219,11,2016-08-07T00:00:00,2016,August,Sunday,7,220,10,D32,Toronto,51,Willowdale East (51),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,24,GRY,670.0,STOLEN,3189,"{'type': 'Point', 'coordinates': (-79.41070756, 43.76071381)}"
-3193,18063,GO-20162025266,THEFT UNDER - BICYCLE,2016-11-12T00:00:00,2016,November,Saturday,12,317,9,2016-11-14T00:00:00,2016,November,Monday,14,319,17,D32,Toronto,51,Willowdale East (51),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,MT,0,BLK,900.0,STOLEN,3190,"{'type': 'Point', 'coordinates': (-79.39604367, 43.78288054)}"
-3194,18090,GO-20171257451,THEFT UNDER - BICYCLE,2017-07-13T00:00:00,2017,July,Thursday,13,194,15,2017-07-13T00:00:00,2017,July,Thursday,13,194,17,D32,Toronto,51,Willowdale East (51),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MARIN OR MARINO,TOSCANA,OT,27,BLK,1700.0,STOLEN,3191,"{'type': 'Point', 'coordinates': (-79.40627476, 43.76513907)}"
-3195,18107,GO-20179011946,THEFT UNDER - BICYCLE,2017-08-04T00:00:00,2017,August,Friday,4,216,19,2017-08-08T00:00:00,2017,August,Tuesday,8,220,18,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,OT,,TO,1,ONG,300.0,STOLEN,3192,"{'type': 'Point', 'coordinates': (-79.40934023, 43.76033147)}"
-3196,18111,GO-20171472647,THEFT OF EBIKE UNDER $5000,2017-08-11T00:00:00,2017,August,Friday,11,223,16,2017-08-18T00:00:00,2017,August,Friday,18,230,8,D32,Toronto,51,Willowdale East (51),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TMC,BRUTE 72V,SC,0,BLK,2175.0,STOLEN,3193,"{'type': 'Point', 'coordinates': (-79.41553623, 43.77976942)}"
-3197,19978,GO-20181779795,THEFT UNDER,2018-09-25T00:00:00,2018,September,Tuesday,25,268,8,2018-09-25T00:00:00,2018,September,Tuesday,25,268,23,D32,Toronto,51,Willowdale East (51),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DAYMAK,PARIS,EL,6,,1200.0,STOLEN,3194,"{'type': 'Point', 'coordinates': (-79.40858219, 43.76496556)}"
-3198,20000,GO-20189039899,THEFT UNDER - BICYCLE,2018-11-26T00:00:00,2018,November,Monday,26,330,15,2018-11-26T00:00:00,2018,November,Monday,26,330,22,D32,Toronto,51,Willowdale East (51),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,SIRRUS,TO,21,BLK,750.0,STOLEN,3195,"{'type': 'Point', 'coordinates': (-79.41279351, 43.7755047)}"
-3199,20057,GO-20199022357,THEFT UNDER - BICYCLE,2019-07-12T00:00:00,2019,July,Friday,12,193,8,2019-07-15T00:00:00,2019,July,Monday,15,196,15,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,GT,,MT,7,BLK,400.0,STOLEN,3196,"{'type': 'Point', 'coordinates': (-79.40653241, 43.75650092)}"
-3200,20073,GO-20199031460,THEFT UNDER - BICYCLE,2019-09-20T00:00:00,2019,September,Friday,20,263,13,2019-09-25T00:00:00,2019,September,Wednesday,25,268,13,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,GI,"TCX SLR2, 2016",RC,11,BLK,1700.0,STOLEN,3197,"{'type': 'Point', 'coordinates': (-79.41434293, 43.77515729)}"
-3201,20078,GO-20199035321,THEFT UNDER - BICYCLE,2019-10-14T00:00:00,2019,October,Monday,14,287,12,2019-10-25T00:00:00,2019,October,Friday,25,298,23,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,CA,CANNONDALE,RG,20,BLK,750.0,STOLEN,3198,"{'type': 'Point', 'coordinates': (-79.41279351, 43.7755047)}"
-3202,20079,GO-20199036173,THEFT UNDER,2019-10-30T00:00:00,2019,October,Wednesday,30,303,18,2019-11-01T00:00:00,2019,November,Friday,1,305,21,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,18,PNK,150.0,STOLEN,3199,"{'type': 'Point', 'coordinates': (-79.40677003, 43.76063785)}"
-3203,1068,GO-20179011853,THEFT UNDER - BICYCLE,2017-08-05T00:00:00,2017,August,Saturday,5,217,8,2017-08-07T00:00:00,2017,August,Monday,7,219,15,D32,Toronto,51,Willowdale East (51),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,STORM 9.1 20 BL,MT,40,BLK,900.0,STOLEN,3200,"{'type': 'Point', 'coordinates': (-79.40653241, 43.75650092)}"
-3204,17455,GO-20142542817,THEFT UNDER,2014-07-13T00:00:00,2014,July,Sunday,13,194,13,2014-07-25T00:00:00,2014,July,Friday,25,206,12,D33,Toronto,53,Henry Farm (53),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,BM,1,YEL,,STOLEN,3201,"{'type': 'Point', 'coordinates': (-79.34648977, 43.76957102)}"
-3205,8191,GO-20149004241,THEFT UNDER,2014-06-08T00:00:00,2014,June,Sunday,8,159,19,2014-06-19T00:00:00,2014,June,Thursday,19,170,14,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,7300FX,TO,21,LBL,700.0,STOLEN,3202,"{'type': 'Point', 'coordinates': (-79.36604563, 43.70694742)}"
-3206,1123,GO-20179012194,THEFT UNDER - BICYCLE,2017-08-10T00:00:00,2017,August,Thursday,10,222,21,2017-08-11T00:00:00,2017,August,Friday,11,223,16,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,UK,ROCKHOPPER 29,MT,21,BLK,1000.0,STOLEN,3203,"{'type': 'Point', 'coordinates': (-79.41003415, 43.76798465)}"
-3207,20088,GO-20209013149,THEFT UNDER - BICYCLE,2020-05-14T00:00:00,2020,May,Thursday,14,135,18,2020-05-14T00:00:00,2020,May,Thursday,14,135,20,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,CA,QUICK 7,OT,24,ONG,700.0,STOLEN,3204,"{'type': 'Point', 'coordinates': (-79.39306144, 43.76323381)}"
-3208,20089,GO-2020957688,THEFT UNDER - BICYCLE,2020-05-24T00:00:00,2020,May,Sunday,24,145,9,2020-05-24T00:00:00,2020,May,Sunday,24,145,16,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,HARDROCK,MT,24,RED,500.0,STOLEN,3205,"{'type': 'Point', 'coordinates': (-79.40885012000001, 43.75848523)}"
-3209,20102,GO-20209017045,THEFT UNDER - BICYCLE,2020-07-06T00:00:00,2020,July,Monday,6,188,8,2020-07-07T00:00:00,2020,July,Tuesday,7,189,15,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,TR,HYBRID,MT,17,LGR,700.0,STOLEN,3206,"{'type': 'Point', 'coordinates': (-79.40653241, 43.75650092)}"
-3210,20105,GO-20209017839,THEFT UNDER - BICYCLE,2020-07-16T00:00:00,2020,July,Thursday,16,198,23,2020-07-18T00:00:00,2020,July,Saturday,18,200,0,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,CC,"29"""" ALPHA",MT,40,GRN,650.0,STOLEN,3207,"{'type': 'Point', 'coordinates': (-79.40399933, 43.75860698)}"
-3211,20109,GO-20209018471,THEFT UNDER - BICYCLE,2020-07-15T00:00:00,2020,July,Wednesday,15,197,16,2020-07-24T00:00:00,2020,July,Friday,24,206,20,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,CC,TRAILHEAD DS,MT,21,BLU,800.0,STOLEN,3208,"{'type': 'Point', 'coordinates': (-79.41227445, 43.78047607)}"
-3212,20112,GO-20201515905,THEFT UNDER - BICYCLE,2020-07-29T00:00:00,2020,July,Wednesday,29,211,23,2020-08-13T00:00:00,2020,August,Thursday,13,226,11,D32,Toronto,51,Willowdale East (51),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RG,15,GRN,178.0,STOLEN,3209,"{'type': 'Point', 'coordinates': (-79.4119511, 43.76565724)}"
-3213,20115,GO-20209021255,THEFT UNDER - BICYCLE,2020-08-05T00:00:00,2020,August,Wednesday,5,218,9,2020-08-25T00:00:00,2020,August,Tuesday,25,238,12,D32,Toronto,51,Willowdale East (51),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,RG,15,,0.0,STOLEN,3210,"{'type': 'Point', 'coordinates': (-79.40706415, 43.78162589)}"
-3214,7658,GO-20202225906,THEFT UNDER - BICYCLE,2020-11-23T00:00:00,2020,November,Monday,23,328,20,2020-11-24T00:00:00,2020,November,Tuesday,24,329,12,D33,Toronto,52,Bayview Village (52),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MOTO BE,CANE,RC,18,,2400.0,STOLEN,3211,"{'type': 'Point', 'coordinates': (-79.38734638, 43.77123819)}"
-3215,20118,GO-20201603474,THEFT UNDER - BICYCLE,2019-08-01T00:00:00,2019,August,Thursday,1,213,0,2020-08-29T00:00:00,2020,August,Saturday,29,242,18,D32,Toronto,51,Willowdale East (51),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,SUPERCHARGER,RG,12,BLUBLK,400.0,STOLEN,3212,"{'type': 'Point', 'coordinates': (-79.41286325, 43.76927425)}"
-3216,20131,GO-20209027755,THEFT UNDER - BICYCLE,2020-08-30T00:00:00,2020,August,Sunday,30,243,15,2020-10-26T00:00:00,2020,October,Monday,26,300,15,D32,Toronto,51,Willowdale East (51),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,JEKYLL,MT,24,BLU,5000.0,STOLEN,3213,"{'type': 'Point', 'coordinates': (-79.40850721, 43.75760637)}"
-3217,21177,GO-20179009413,THEFT UNDER,2017-06-30T00:00:00,2017,June,Friday,30,181,13,2017-07-04T00:00:00,2017,July,Tuesday,4,185,17,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,GI,YUKON,MT,12,BLK,0.0,STOLEN,3214,"{'type': 'Point', 'coordinates': (-79.41089678000002, 43.76150872)}"
-3218,21206,GO-20171602768,THEFT UNDER - BICYCLE,2017-08-31T00:00:00,2017,August,Thursday,31,243,14,2017-09-04T00:00:00,2017,September,Monday,4,247,18,D32,Toronto,51,Willowdale East (51),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,,MT,21,RED,150.0,STOLEN,3215,"{'type': 'Point', 'coordinates': (-79.40677003, 43.76063785)}"
-3219,21207,GO-20171602768,THEFT UNDER - BICYCLE,2017-08-31T00:00:00,2017,August,Thursday,31,243,14,2017-09-04T00:00:00,2017,September,Monday,4,247,18,D32,Toronto,51,Willowdale East (51),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,,MT,24,BLUWHI,,STOLEN,3216,"{'type': 'Point', 'coordinates': (-79.40677003, 43.76063785)}"
-3220,21247,GO-2018245738,THEFT OVER - BICYCLE,2018-01-15T00:00:00,2018,January,Monday,15,15,16,2018-02-12T00:00:00,2018,February,Monday,12,43,16,D32,Toronto,51,Willowdale East (51),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,TOP FUEL 9.8L,MT,21,BLK,7000.0,STOLEN,3217,"{'type': 'Point', 'coordinates': (-79.40858219, 43.76496556)}"
-3221,21292,GO-20181056805,THEFT UNDER - BICYCLE,2018-06-06T00:00:00,2018,June,Wednesday,6,157,19,2018-06-11T00:00:00,2018,June,Monday,11,162,11,D32,Toronto,51,Willowdale East (51),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUPERCYCLE,MOUNTAIN BIKE,MT,18,GRNGRY,50.0,STOLEN,3218,"{'type': 'Point', 'coordinates': (-79.4119511, 43.76565724)}"
-3222,21293,GO-20181056805,THEFT UNDER - BICYCLE,2018-06-06T00:00:00,2018,June,Wednesday,6,157,19,2018-06-11T00:00:00,2018,June,Monday,11,162,11,D32,Toronto,51,Willowdale East (51),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUPERCYCLE,MOUNTAIN BIKE,MT,18,GRY,60.0,STOLEN,3219,"{'type': 'Point', 'coordinates': (-79.4119511, 43.76565724)}"
-3223,21994,GO-20141293197,B&E,2013-12-28T00:00:00,2013,December,Saturday,28,362,16,2014-01-06T00:00:00,2014,January,Monday,6,6,20,D32,Toronto,51,Willowdale East (51),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GENESIS,,MT,0,WHITE,1500.0,STOLEN,3220,"{'type': 'Point', 'coordinates': (-79.39753649, 43.77931556)}"
-3224,22020,GO-20142454265,B&E,2014-07-07T00:00:00,2014,July,Monday,7,188,2,2014-07-11T00:00:00,2014,July,Friday,11,192,6,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,COLNAGO,OTHER,RC,10,BLK,,STOLEN,3221,"{'type': 'Point', 'coordinates': (-79.41003415, 43.76798465)}"
-3225,22026,GO-20149005280,THEFT UNDER,2014-07-23T00:00:00,2014,July,Wednesday,23,204,15,2014-07-23T00:00:00,2014,July,Wednesday,23,204,17,D32,Toronto,51,Willowdale East (51),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,MT,21,RED,500.0,STOLEN,3222,"{'type': 'Point', 'coordinates': (-79.41240726, 43.76747172)}"
-3226,22072,GO-20151271616,THEFT UNDER,2015-07-24T00:00:00,2015,July,Friday,24,205,21,2015-07-25T00:00:00,2015,July,Saturday,25,206,19,D32,Toronto,51,Willowdale East (51),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KALKHOFF,BIG VELLEY,MT,21,BLURED,700.0,STOLEN,3223,"{'type': 'Point', 'coordinates': (-79.39648112, 43.77672719)}"
-3227,22102,GO-2016795929,THEFT UNDER - BICYCLE,2016-03-15T00:00:00,2016,March,Tuesday,15,75,12,2016-05-09T00:00:00,2016,May,Monday,9,130,12,D32,Toronto,51,Willowdale East (51),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SCHWINN,,MT,10,RED,200.0,STOLEN,3224,"{'type': 'Point', 'coordinates': (-79.41101450000001, 43.77739285)}"
-3228,22108,GO-20161057997,THEFT UNDER - BICYCLE,2016-06-16T00:00:00,2016,June,Thursday,16,168,19,2016-06-17T00:00:00,2016,June,Friday,17,169,17,D32,Toronto,51,Willowdale East (51),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SHAWDOWLAND,364055,OT,24,WHI,600.0,STOLEN,3225,"{'type': 'Point', 'coordinates': (-79.40934023, 43.76033147)}"
-3229,22110,GO-20161088215,THEFT UNDER - BICYCLE,2016-06-21T00:00:00,2016,June,Tuesday,21,173,16,2016-06-22T00:00:00,2016,June,Wednesday,22,174,7,D32,Toronto,51,Willowdale East (51),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,,MT,20,YELBLK,500.0,STOLEN,3226,"{'type': 'Point', 'coordinates': (-79.41153302, 43.77136949)}"
-3230,22141,GO-20179003256,THEFT UNDER - BICYCLE,2017-02-01T00:00:00,2017,February,Wednesday,1,32,9,2017-03-14T00:00:00,2017,March,Tuesday,14,73,22,D32,Toronto,51,Willowdale East (51),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,CAN 700 M QUICK,RG,24,BLK,900.0,STOLEN,3227,"{'type': 'Point', 'coordinates': (-79.41172327, 43.76481417)}"
-3231,17456,GO-20142542817,THEFT UNDER,2014-07-13T00:00:00,2014,July,Sunday,13,194,13,2014-07-25T00:00:00,2014,July,Friday,25,206,12,D33,Toronto,53,Henry Farm (53),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,OT,1,BLU,,STOLEN,3228,"{'type': 'Point', 'coordinates': (-79.34648977, 43.76957102)}"
-3232,1128,GO-20179012232,THEFT UNDER - BICYCLE,2017-08-10T00:00:00,2017,August,Thursday,10,222,21,2017-08-12T00:00:00,2017,August,Saturday,12,224,10,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,UK,ROCKHOPPER 29,MT,21,BLK,1000.0,STOLEN,3229,"{'type': 'Point', 'coordinates': (-79.41003415, 43.76798465)}"
-3233,8944,GO-20149007111,THEFT UNDER,2014-09-21T00:00:00,2014,September,Sunday,21,264,14,2014-09-22T00:00:00,2014,September,Monday,22,265,12,D53,Toronto,56,Leaside-Bennington (56),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,X-FIRE,RC,12,BLK,2300.0,STOLEN,3230,"{'type': 'Point', 'coordinates': (-79.37223701, 43.70909553)}"
-3234,9455,GO-20159002133,THEFT UNDER,2015-04-19T00:00:00,2015,April,Sunday,19,109,18,2015-04-21T00:00:00,2015,April,Tuesday,21,111,13,D53,Toronto,56,Leaside-Bennington (56),Bar / Restaurant,Commercial,OT,GATTO,EL,32,SIL,1800.0,STOLEN,3312,"{'type': 'Point', 'coordinates': (-79.36348605, 43.71036039)}"
-3235,22145,GO-20179004111,THEFT UNDER - BICYCLE,2017-02-18T00:00:00,2017,February,Saturday,18,49,14,2017-04-02T00:00:00,2017,April,Sunday,2,92,15,D32,Toronto,51,Willowdale East (51),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,MT,28,,0.0,STOLEN,3231,"{'type': 'Point', 'coordinates': (-79.40850721, 43.75760637)}"
-3236,23250,GO-20199013786,THEFT UNDER,2019-05-01T00:00:00,2019,May,Wednesday,1,121,6,2019-05-02T00:00:00,2019,May,Thursday,2,122,22,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,OT,JS2011 BIKE 24,MT,21,BLK,150.0,STOLEN,3232,"{'type': 'Point', 'coordinates': (-79.39306144, 43.76323381)}"
-3237,23307,GO-20199031025,THEFT UNDER,2019-09-17T00:00:00,2019,September,Tuesday,17,260,11,2019-09-22T00:00:00,2019,September,Sunday,22,265,9,D32,Toronto,51,Willowdale East (51),Ttc Subway Station,Transit,FJ,,RG,6,SIL,120.0,STOLEN,3233,"{'type': 'Point', 'coordinates': (-79.40677003, 43.76063785)}"
-3238,23308,GO-20191845563,THEFT UNDER - BICYCLE,2019-09-25T00:00:00,2019,September,Wednesday,25,268,0,2019-09-25T00:00:00,2019,September,Wednesday,25,268,9,D32,Toronto,51,Willowdale East (51),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,MT,10,BLKONG,,STOLEN,3234,"{'type': 'Point', 'coordinates': (-79.39719126, 43.77842569)}"
-3239,23310,GO-20191864292,THEFT UNDER - BICYCLE,2019-09-27T00:00:00,2019,September,Friday,27,270,6,2019-09-27T00:00:00,2019,September,Friday,27,270,16,D32,Toronto,51,Willowdale East (51),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,ATX2020,MT,21,BLKWHI,600.0,STOLEN,3235,"{'type': 'Point', 'coordinates': (-79.4135337, 43.7719925)}"
-3240,23325,GO-20201041467,THEFT UNDER,2020-06-06T00:00:00,2020,June,Saturday,6,158,12,2020-06-06T00:00:00,2020,June,Saturday,6,158,15,D32,Toronto,51,Willowdale East (51),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SEVEN PEAKS,,MT,24,BLK,500.0,STOLEN,3236,"{'type': 'Point', 'coordinates': (-79.39166393, 43.772052480000006)}"
-3241,23328,GO-20209015420,THEFT FROM MOTOR VEHICLE UNDER,2020-06-11T00:00:00,2020,June,Thursday,11,163,20,2020-06-15T00:00:00,2020,June,Monday,15,167,16,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,GI,FASTROAD,TO,1,BLK,1600.0,STOLEN,3237,"{'type': 'Point', 'coordinates': (-79.40934023, 43.76033147)}"
-3242,23329,GO-20209015420,THEFT FROM MOTOR VEHICLE UNDER,2020-06-11T00:00:00,2020,June,Thursday,11,163,20,2020-06-15T00:00:00,2020,June,Monday,15,167,16,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,1,,1400.0,STOLEN,3238,"{'type': 'Point', 'coordinates': (-79.40934023, 43.76033147)}"
-3243,23332,GO-20209016159,THEFT UNDER - BICYCLE,2020-02-01T00:00:00,2020,February,Saturday,1,32,18,2020-06-25T00:00:00,2020,June,Thursday,25,177,17,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,GI,REVEL,MT,70,WHI,1000.0,STOLEN,3239,"{'type': 'Point', 'coordinates': (-79.40653241, 43.75650092)}"
-3244,23334,GO-20209017062,THEFT UNDER - BICYCLE,2020-07-04T00:00:00,2020,July,Saturday,4,186,14,2020-07-07T00:00:00,2020,July,Tuesday,7,189,21,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,GI,STP1,MT,18,BRN,700.0,STOLEN,3240,"{'type': 'Point', 'coordinates': (-79.41199761, 43.77246016)}"
-3245,23335,GO-20209017445,THEFT UNDER - BICYCLE,2020-07-10T00:00:00,2020,July,Friday,10,192,1,2020-07-13T00:00:00,2020,July,Monday,13,195,13,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,OT,,FO,30,,800.0,STOLEN,3241,"{'type': 'Point', 'coordinates': (-79.41089678000002, 43.76150872)}"
-3246,23337,GO-20201298724,THEFT UNDER - BICYCLE,2020-06-19T00:00:00,2020,June,Friday,19,171,12,2020-07-16T00:00:00,2020,July,Thursday,16,198,11,D32,Toronto,51,Willowdale East (51),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ZZZ,U/K,RC,10,BLK,300.0,STOLEN,3242,"{'type': 'Point', 'coordinates': (-79.395107, 43.76673791)}"
-3247,24209,GO-20179012314,THEFT UNDER - BICYCLE,2017-08-12T00:00:00,2017,August,Saturday,12,224,20,2017-08-13T00:00:00,2017,August,Sunday,13,225,16,D32,Toronto,51,Willowdale East (51),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,AVALANCHE,MT,50,GRY,600.0,STOLEN,3243,"{'type': 'Point', 'coordinates': (-79.41089678000002, 43.76150872)}"
-3248,24216,GO-20179012900,THEFT UNDER - BICYCLE,2017-08-20T00:00:00,2017,August,Sunday,20,232,13,2017-08-21T00:00:00,2017,August,Monday,21,233,10,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,MA,,RG,21,SIL,500.0,STOLEN,3244,"{'type': 'Point', 'coordinates': (-79.40677003, 43.76063785)}"
-3249,24230,GO-20179014622,THEFT UNDER - BICYCLE,2017-09-12T00:00:00,2017,September,Tuesday,12,255,15,2017-09-13T00:00:00,2017,September,Wednesday,13,256,10,D32,Toronto,51,Willowdale East (51),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,ALLEGRO,MT,21,BLU,450.0,STOLEN,3245,"{'type': 'Point', 'coordinates': (-79.40282947, 43.7632966)}"
-3250,24242,GO-20179016896,THEFT UNDER,2017-09-24T00:00:00,2017,September,Sunday,24,267,0,2017-10-10T00:00:00,2017,October,Tuesday,10,283,21,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,CA,CATALYST 1,MT,27,GRY,900.0,STOLEN,3246,"{'type': 'Point', 'coordinates': (-79.40850721, 43.75760637)}"
-3251,24243,GO-20179016896,THEFT UNDER,2017-09-24T00:00:00,2017,September,Sunday,24,267,0,2017-10-10T00:00:00,2017,October,Tuesday,10,283,21,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,CA,ALTHEA 2,OT,24,GRY,800.0,STOLEN,3247,"{'type': 'Point', 'coordinates': (-79.40850721, 43.75760637)}"
-3252,24250,GO-20179017911,THEFT UNDER - BICYCLE,2017-07-30T00:00:00,2017,July,Sunday,30,211,11,2017-10-23T00:00:00,2017,October,Monday,23,296,12,D32,Toronto,51,Willowdale East (51),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GT,,MT,27,BLK,400.0,STOLEN,3248,"{'type': 'Point', 'coordinates': (-79.40850721, 43.75760637)}"
-3253,24272,GO-20189001209,THEFT UNDER,2018-01-11T00:00:00,2018,January,Thursday,11,11,20,2018-01-14T00:00:00,2018,January,Sunday,14,14,18,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,CA,,RG,18,BLK,1181.0,STOLEN,3249,"{'type': 'Point', 'coordinates': (-79.41153302, 43.77136949)}"
-3254,24459,GO-20159003705,THEFT UNDER,2015-06-11T00:00:00,2015,June,Thursday,11,162,5,2015-06-17T00:00:00,2015,June,Wednesday,17,168,18,D32,Toronto,51,Willowdale East (51),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,DIVINCI,RG,20,BLK,771.0,STOLEN,3250,"{'type': 'Point', 'coordinates': (-79.41315316, 43.77692597)}"
-3255,24467,GO-20159005010,THEFT UNDER,2015-07-23T00:00:00,2015,July,Thursday,23,204,8,2015-07-26T00:00:00,2015,July,Sunday,26,207,16,D32,Toronto,51,Willowdale East (51),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,8.3 DUAL SPORT,RG,24,BLK,779.0,STOLEN,3251,"{'type': 'Point', 'coordinates': (-79.40934023, 43.76033147)}"
-3256,24484,GO-20159006351,THEFT UNDER,2015-08-23T00:00:00,2015,August,Sunday,23,235,20,2015-08-24T00:00:00,2015,August,Monday,24,236,15,D32,Toronto,51,Willowdale East (51),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,CROSSTRAIL,OT,24,BLK,650.0,STOLEN,3252,"{'type': 'Point', 'coordinates': (-79.41111496, 43.76235207)}"
-3257,24485,GO-20159006351,THEFT UNDER,2015-08-23T00:00:00,2015,August,Sunday,23,235,20,2015-08-24T00:00:00,2015,August,Monday,24,236,15,D32,Toronto,51,Willowdale East (51),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RM,,MT,24,SIL,0.0,STOLEN,3253,"{'type': 'Point', 'coordinates': (-79.41111496, 43.76235207)}"
-3258,24491,GO-20159007731,THEFT UNDER,2015-09-25T00:00:00,2015,September,Friday,25,268,16,2015-09-25T00:00:00,2015,September,Friday,25,268,22,D32,Toronto,51,Willowdale East (51),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE1 YEAR 20,OT,27,GRY,800.0,STOLEN,3254,"{'type': 'Point', 'coordinates': (-79.41111496, 43.76235207)}"
-3259,24508,GO-20169002260,THEFT UNDER - BICYCLE,2016-02-10T00:00:00,2016,February,Wednesday,10,41,12,2016-03-12T00:00:00,2016,March,Saturday,12,72,13,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,TR,8.3 DS,RG,1,BLKBLU,911.0,STOLEN,3255,"{'type': 'Point', 'coordinates': (-79.41315316, 43.77692597)}"
-3260,24510,GO-20169003107,THEFT UNDER - BICYCLE,2016-04-01T00:00:00,2016,April,Friday,1,92,5,2016-04-06T00:00:00,2016,April,Wednesday,6,97,9,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,OT,CORSO,RG,24,BLK,700.0,STOLEN,3256,"{'type': 'Point', 'coordinates': (-79.41245564, 43.77617495)}"
-3261,24517,GO-20169004434,THEFT UNDER - BICYCLE,2016-05-12T00:00:00,2016,May,Thursday,12,133,9,2016-05-12T00:00:00,2016,May,Thursday,12,133,13,D32,Toronto,51,Willowdale East (51),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,,MT,10,,1000.0,STOLEN,3257,"{'type': 'Point', 'coordinates': (-79.4119511, 43.76565724)}"
-3262,24518,GO-20169004574,THEFT UNDER - BICYCLE,2016-05-05T00:00:00,2016,May,Thursday,5,126,11,2016-05-16T00:00:00,2016,May,Monday,16,137,11,D32,Toronto,51,Willowdale East (51),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,RG,21,RED,642.0,STOLEN,3258,"{'type': 'Point', 'coordinates': (-79.41240726, 43.76747172)}"
-3263,24538,GO-20161455935,THEFT UNDER - BICYCLE,2016-08-17T00:00:00,2016,August,Wednesday,17,230,17,2016-08-17T00:00:00,2016,August,Wednesday,17,230,17,D32,Toronto,51,Willowdale East (51),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,,RG,10,BLK,,STOLEN,3259,"{'type': 'Point', 'coordinates': (-79.41240726, 43.76747172)}"
-3264,24543,GO-20169010405,THEFT UNDER - BICYCLE,2016-09-08T00:00:00,2016,September,Thursday,8,252,20,2016-09-14T00:00:00,2016,September,Wednesday,14,258,9,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,CA,QUICK 7,RG,24,BLK,520.0,STOLEN,3260,"{'type': 'Point', 'coordinates': (-79.41434293, 43.77515729)}"
-3265,24544,GO-20169010513,THEFT UNDER,2016-09-15T00:00:00,2016,September,Thursday,15,259,8,2016-09-15T00:00:00,2016,September,Thursday,15,259,20,D32,Toronto,51,Willowdale East (51),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SIRRUS,RG,9,BLK,800.0,STOLEN,3261,"{'type': 'Point', 'coordinates': (-79.41070756, 43.76071381)}"
-3266,24551,GO-20161890700,THEFT UNDER - BICYCLE,2016-09-19T00:00:00,2016,September,Monday,19,263,6,2016-10-24T00:00:00,2016,October,Monday,24,298,11,D32,Toronto,51,Willowdale East (51),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,HARD ROCK,MT,21,GRYBLU,500.0,STOLEN,3262,"{'type': 'Point', 'coordinates': (-79.40184054, 43.78276044)}"
-3267,720,GO-20179008961,THEFT UNDER - BICYCLE,2017-06-26T00:00:00,2017,June,Monday,26,177,0,2017-06-26T00:00:00,2017,June,Monday,26,177,20,D33,Toronto,52,Bayview Village (52),"Group Homes (Non-Profit, Halfway House, Social Agency)",Other,UK,,MT,8,RED,0.0,STOLEN,3264,"{'type': 'Point', 'coordinates': (-79.38239492, 43.7643067)}"
-3268,946,GO-20179010763,THEFT UNDER - BICYCLE,2017-07-21T00:00:00,2017,July,Friday,21,202,15,2017-07-21T00:00:00,2017,July,Friday,21,202,16,D33,Toronto,52,Bayview Village (52),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,ELITE TARMAC,RC,22,BLK,4000.0,RECOVERED,3265,"{'type': 'Point', 'coordinates': (-79.37425215, 43.77013677)}"
-3269,1701,GO-20179017673,THEFT UNDER - BICYCLE,2017-10-18T00:00:00,2017,October,Wednesday,18,291,21,2017-10-20T00:00:00,2017,October,Friday,20,293,9,D33,Toronto,52,Bayview Village (52),"Apartment (Rooming House, Condo)",Apartment,TR,TREK,RC,21,BLU,1300.0,STOLEN,3266,"{'type': 'Point', 'coordinates': (-79.37088107, 43.76947723)}"
-3270,1794,GO-20179018893,THEFT UNDER,2017-11-01T00:00:00,2017,November,Wednesday,1,305,10,2017-11-04T00:00:00,2017,November,Saturday,4,308,16,D33,Toronto,52,Bayview Village (52),"Apartment (Rooming House, Condo)",Apartment,OT,KENSINGTON,OT,6,PLE,300.0,STOLEN,3267,"{'type': 'Point', 'coordinates': (-79.37043936, 43.76834039)}"
-3271,1800,GO-20179018893,THEFT UNDER,2017-11-01T00:00:00,2017,November,Wednesday,1,305,10,2017-11-04T00:00:00,2017,November,Saturday,4,308,16,D33,Toronto,52,Bayview Village (52),"Apartment (Rooming House, Condo)",Apartment,OT,KENSINGTON,OT,6,PLE,300.0,STOLEN,3268,"{'type': 'Point', 'coordinates': (-79.37043936, 43.76834039)}"
-3272,1980,GO-20189000919,THEFT UNDER - BICYCLE,2018-01-03T00:00:00,2018,January,Wednesday,3,3,19,2018-01-11T00:00:00,2018,January,Thursday,11,11,19,D33,Toronto,52,Bayview Village (52),"Apartment (Rooming House, Condo)",Apartment,CR,CARRERA,MT,21,BLK,300.0,STOLEN,3269,"{'type': 'Point', 'coordinates': (-79.38425341, 43.76575373)}"
-3273,2091,GO-20189008674,THEFT UNDER,2018-03-19T00:00:00,2018,March,Monday,19,78,12,2018-03-20T00:00:00,2018,March,Tuesday,20,79,12,D33,Toronto,52,Bayview Village (52),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,84-7153,OT,10,BLU,600.0,STOLEN,3270,"{'type': 'Point', 'coordinates': (-79.37122689, 43.77035775)}"
-3274,2153,GO-20189011351,THEFT UNDER - BICYCLE,2018-04-09T00:00:00,2018,April,Monday,9,99,23,2018-04-12T00:00:00,2018,April,Thursday,12,102,11,D33,Toronto,52,Bayview Village (52),"Apartment (Rooming House, Condo)",Apartment,GI,REVOLT 2,RC,9,GRY,1570.0,STOLEN,3271,"{'type': 'Point', 'coordinates': (-79.37088107, 43.76947723)}"
-3275,2556,GO-20189018547,THEFT UNDER - BICYCLE,2018-06-13T00:00:00,2018,June,Wednesday,13,164,15,2018-06-13T00:00:00,2018,June,Wednesday,13,164,17,D33,Toronto,52,Bayview Village (52),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,TO,21,BLK,1300.0,STOLEN,3272,"{'type': 'Point', 'coordinates': (-79.38837449, 43.76819127000001)}"
-3276,2676,GO-20189020150,THEFT UNDER - BICYCLE,2018-06-24T00:00:00,2018,June,Sunday,24,175,0,2018-06-25T00:00:00,2018,June,Monday,25,176,12,D33,Toronto,52,Bayview Village (52),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,BM,1,DGR,1000.0,STOLEN,3273,"{'type': 'Point', 'coordinates': (-79.38734638, 43.77123819)}"
-3277,3153,GO-20189025891,THEFT UNDER - BICYCLE,2018-08-10T00:00:00,2018,August,Friday,10,222,11,2018-08-10T00:00:00,2018,August,Friday,10,222,16,D33,Toronto,52,Bayview Village (52),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,,RG,9,BLK,1000.0,STOLEN,3274,"{'type': 'Point', 'coordinates': (-79.38801507, 43.76658916)}"
-3278,4085,GO-2019440265,THEFT UNDER - BICYCLE,2019-01-02T00:00:00,2019,January,Wednesday,2,2,11,2019-03-10T00:00:00,2019,March,Sunday,10,69,14,D33,Toronto,52,Bayview Village (52),"Private Property Structure (Pool, Shed, Detached Garage)",Other,ORBEA,MX50 29,MT,10,ONGBLK,45672.0,STOLEN,3275,"{'type': 'Point', 'coordinates': (-79.38837449, 43.76819127000001)}"
-3279,4185,GO-20199012557,THEFT UNDER - BICYCLE,2019-04-20T00:00:00,2019,April,Saturday,20,110,8,2019-04-21T00:00:00,2019,April,Sunday,21,111,3,D33,Toronto,52,Bayview Village (52),Ttc Subway Station,Transit,NO,VFR 4 LARGE,RG,21,RED,550.0,STOLEN,3276,"{'type': 'Point', 'coordinates': (-79.37562316000002, 43.7694024)}"
-3280,4625,GO-20191197972,PROPERTY - FOUND,2019-06-27T00:00:00,2019,June,Thursday,27,178,23,2019-06-27T00:00:00,2019,June,Thursday,27,178,23,D33,Toronto,52,Bayview Village (52),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RAZOR,RAZOR,SC,0,SIL,,UNKNOWN,3277,"{'type': 'Point', 'coordinates': (-79.37043936, 43.76834039)}"
-3281,5093,GO-20199026657,THEFT UNDER - BICYCLE,2019-08-16T00:00:00,2019,August,Friday,16,228,10,2019-08-17T00:00:00,2019,August,Saturday,17,229,21,D33,Toronto,52,Bayview Village (52),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,CHINOOK BICYCLE,RG,8,GLD,650.0,STOLEN,3278,"{'type': 'Point', 'coordinates': (-79.37324568, 43.78914923)}"
-3282,5221,GO-20199028635,THEFT UNDER - BICYCLE,2019-08-30T00:00:00,2019,August,Friday,30,242,11,2019-09-03T00:00:00,2019,September,Tuesday,3,246,22,D33,Toronto,52,Bayview Village (52),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,,RG,7,RED,0.0,STOLEN,3279,"{'type': 'Point', 'coordinates': (-79.38801507, 43.76658916)}"
-3283,5589,GO-20199035134,THEFT UNDER,2019-10-24T00:00:00,2019,October,Thursday,24,297,15,2019-10-24T00:00:00,2019,October,Thursday,24,297,22,D33,Toronto,52,Bayview Village (52),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,TR,MADONE,RC,60,BLU,2000.0,STOLEN,3280,"{'type': 'Point', 'coordinates': (-79.36423724, 43.76942135)}"
-3284,5680,GO-20192178314,ROBBERY - BUSINESS,2019-11-11T00:00:00,2019,November,Monday,11,315,9,2019-11-11T00:00:00,2019,November,Monday,11,315,9,D33,Toronto,52,Bayview Village (52),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TREK,SPEED CONCEPT,RC,0,BLK,8000.0,STOLEN,3281,"{'type': 'Point', 'coordinates': (-79.37425215, 43.77013677)}"
-3285,5938,GO-20209007448,THEFT UNDER - BICYCLE,2020-03-01T00:00:00,2020,March,Sunday,1,61,22,2020-03-01T00:00:00,2020,March,Sunday,1,61,22,D33,Toronto,52,Bayview Village (52),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,KATO 2,MT,24,RED,830.0,STOLEN,3282,"{'type': 'Point', 'coordinates': (-79.36616685, 43.76932225)}"
-3286,6012,GO-20209010299,THEFT UNDER - BICYCLE,2020-03-29T00:00:00,2020,March,Sunday,29,89,19,2020-04-01T00:00:00,2020,April,Wednesday,1,92,18,D33,Toronto,52,Bayview Village (52),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,,MT,21,BLK,400.0,STOLEN,3283,"{'type': 'Point', 'coordinates': (-79.38425341, 43.76575373)}"
-3287,6013,GO-20209010299,THEFT UNDER - BICYCLE,2020-03-29T00:00:00,2020,March,Sunday,29,89,19,2020-04-01T00:00:00,2020,April,Wednesday,1,92,18,D33,Toronto,52,Bayview Village (52),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,,MT,21,ONG,700.0,STOLEN,3284,"{'type': 'Point', 'coordinates': (-79.38425341, 43.76575373)}"
-3288,6072,GO-20209011321,THEFT UNDER - BICYCLE,2020-04-13T00:00:00,2020,April,Monday,13,104,17,2020-04-16T00:00:00,2020,April,Thursday,16,107,21,D33,Toronto,52,Bayview Village (52),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,CCM DS-650 DUAL,MT,20,,650.0,STOLEN,3285,"{'type': 'Point', 'coordinates': (-79.37043936, 43.76834039)}"
-3289,6120,GO-2020808344,THEFT UNDER - BICYCLE,2019-10-01T00:00:00,2019,October,Tuesday,1,274,0,2020-04-29T00:00:00,2020,April,Wednesday,29,120,16,D33,Toronto,52,Bayview Village (52),"Apartment (Rooming House, Condo)",Apartment,MEC,COTE,OT,10,LGR,2100.0,STOLEN,3286,"{'type': 'Point', 'coordinates': (-79.38112689, 43.76823174)}"
-3290,6123,GO-20209012196,THEFT UNDER,2020-04-15T00:00:00,2020,April,Wednesday,15,106,11,2020-04-30T00:00:00,2020,April,Thursday,30,121,11,D33,Toronto,52,Bayview Village (52),"Apartment (Rooming House, Condo)",Apartment,GT,TRANSEO HYBIRD,MT,24,SIL,400.0,STOLEN,3287,"{'type': 'Point', 'coordinates': (-79.38734638, 43.77123819)}"
-3291,6149,GO-20209012565,THEFT UNDER - BICYCLE,2020-05-02T00:00:00,2020,May,Saturday,2,123,17,2020-05-06T00:00:00,2020,May,Wednesday,6,127,10,D33,Toronto,52,Bayview Village (52),"Apartment (Rooming House, Condo)",Apartment,GT,TRANSEO 4.0,OT,40,GRY,700.0,STOLEN,3288,"{'type': 'Point', 'coordinates': (-79.37159387, 43.76801606)}"
-3292,6229,GO-20209013723,THEFT UNDER - BICYCLE,2020-05-08T00:00:00,2020,May,Friday,8,129,22,2020-05-22T00:00:00,2020,May,Friday,22,143,19,D33,Toronto,52,Bayview Village (52),"Apartment (Rooming House, Condo)",Apartment,CC,,RG,20,WHI,350.0,STOLEN,3289,"{'type': 'Point', 'coordinates': (-79.37043936, 43.76834039)}"
-3293,6447,GO-20209015961,THEFT UNDER - BICYCLE,2020-06-20T00:00:00,2020,June,Saturday,20,172,12,2020-06-23T00:00:00,2020,June,Tuesday,23,175,13,D33,Toronto,52,Bayview Village (52),"Apartment (Rooming House, Condo)",Apartment,GT,GT,MT,70,GRN,1049.0,STOLEN,3290,"{'type': 'Point', 'coordinates': (-79.38309871, 43.76780368)}"
-3294,6539,GO-20209016929,THEFT UNDER - BICYCLE,2020-07-05T00:00:00,2020,July,Sunday,5,187,17,2020-07-06T00:00:00,2020,July,Monday,6,188,12,D33,Toronto,52,Bayview Village (52),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SCIROCCO,MT,21,DGR,200.0,STOLEN,3291,"{'type': 'Point', 'coordinates': (-79.37153097, 43.78752037)}"
-3295,6540,GO-20209016931,THEFT UNDER - BICYCLE,2020-06-22T00:00:00,2020,June,Monday,22,174,11,2020-07-06T00:00:00,2020,July,Monday,6,188,11,D33,Toronto,52,Bayview Village (52),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,10,,1000.0,STOLEN,3292,"{'type': 'Point', 'coordinates': (-79.38425341, 43.76575373)}"
-3296,6564,GO-20201248666,THEFT UNDER - BICYCLE,2020-07-01T00:00:00,2020,July,Wednesday,1,183,19,2020-07-09T00:00:00,2020,July,Thursday,9,191,13,D33,Toronto,52,Bayview Village (52),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,,MT,10,BLKYEL,200.0,STOLEN,3293,"{'type': 'Point', 'coordinates': (-79.38363574000002, 43.76990337000001)}"
-3297,6565,GO-20201248666,THEFT UNDER - BICYCLE,2020-07-01T00:00:00,2020,July,Wednesday,1,183,19,2020-07-09T00:00:00,2020,July,Thursday,9,191,13,D33,Toronto,52,Bayview Village (52),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,,MT,10,BLK,400.0,STOLEN,3294,"{'type': 'Point', 'coordinates': (-79.38363574000002, 43.76990337000001)}"
-3298,6581,GO-20209017279,THEFT UNDER - BICYCLE,2020-07-09T00:00:00,2020,July,Thursday,9,191,21,2020-07-10T00:00:00,2020,July,Friday,10,192,18,D33,Toronto,52,Bayview Village (52),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,7,BLK,459.0,STOLEN,3295,"{'type': 'Point', 'coordinates': (-79.37088107, 43.76947723)}"
-3299,6685,GO-20209018107,THEFT UNDER - BICYCLE,2020-07-20T00:00:00,2020,July,Monday,20,202,10,2020-07-21T00:00:00,2020,July,Tuesday,21,203,10,D33,Toronto,52,Bayview Village (52),"Apartment (Rooming House, Condo)",Apartment,TR,1500 (DISCOVERY,RC,18,BLU,1500.0,STOLEN,3296,"{'type': 'Point', 'coordinates': (-79.38494494, 43.76741056)}"
-3300,6826,GO-20209019080,THEFT UNDER - BICYCLE,2020-07-31T00:00:00,2020,July,Friday,31,213,0,2020-07-31T00:00:00,2020,July,Friday,31,213,13,D33,Toronto,52,Bayview Village (52),"Apartment (Rooming House, Condo)",Apartment,GI,RAPID,RG,27,WHI,350.0,STOLEN,3297,"{'type': 'Point', 'coordinates': (-79.37441762, 43.77087909)}"
-3301,6958,GO-20201531682,THEFT FROM MOTOR VEHICLE UNDER,2020-08-15T00:00:00,2020,August,Saturday,15,228,12,2020-08-15T00:00:00,2020,August,Saturday,15,228,20,D33,Toronto,52,Bayview Village (52),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NORCO,INDIE,RG,8,GRY,1200.0,STOLEN,3298,"{'type': 'Point', 'coordinates': (-79.38363574000002, 43.76990337000001)}"
-3302,7117,GO-20201626281,THEFT UNDER - BICYCLE,2020-07-27T00:00:00,2020,July,Monday,27,209,21,2020-08-29T00:00:00,2020,August,Saturday,29,242,9,D33,Toronto,52,Bayview Village (52),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,SCAPE 3,OT,18,RED,854.0,STOLEN,3299,"{'type': 'Point', 'coordinates': (-79.37159387, 43.76801606)}"
-3303,7170,GO-20209022253,THEFT UNDER - BICYCLE,2020-08-29T00:00:00,2020,August,Saturday,29,242,11,2020-09-03T00:00:00,2020,September,Thursday,3,247,23,D33,Toronto,52,Bayview Village (52),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,MT,21,,200.0,STOLEN,3300,"{'type': 'Point', 'coordinates': (-79.38309871, 43.76780368)}"
-3304,7185,GO-20209022441,THEFT UNDER - BICYCLE,2020-09-05T00:00:00,2020,September,Saturday,5,249,16,2020-09-05T00:00:00,2020,September,Saturday,5,249,19,D33,Toronto,52,Bayview Village (52),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,ROAM 3,TO,6,BLK,600.0,STOLEN,3301,"{'type': 'Point', 'coordinates': (-79.37159387, 43.76801606)}"
-3305,7293,GO-20209023808,THEFT UNDER,2020-09-16T00:00:00,2020,September,Wednesday,16,260,0,2020-09-19T00:00:00,2020,September,Saturday,19,263,0,D33,Toronto,52,Bayview Village (52),"Apartment (Rooming House, Condo)",Apartment,RA,TARANTULA,MT,21,SIL,0.0,STOLEN,3302,"{'type': 'Point', 'coordinates': (-79.38494494, 43.76741056)}"
-3306,7302,GO-20209023858,THEFT UNDER,2020-09-19T00:00:00,2020,September,Saturday,19,263,9,2020-09-19T00:00:00,2020,September,Saturday,19,263,18,D33,Toronto,52,Bayview Village (52),Ttc Subway Station,Transit,OT,WMC-T26-1021,MT,21,BLU,178.0,STOLEN,3303,"{'type': 'Point', 'coordinates': (-79.3673214, 43.77085025)}"
-3307,7592,GO-20209028622,THEFT UNDER - BICYCLE,2020-11-04T00:00:00,2020,November,Wednesday,4,309,15,2020-11-04T00:00:00,2020,November,Wednesday,4,309,15,D33,Toronto,52,Bayview Village (52),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,APEX,MT,21,WHI,200.0,STOLEN,3304,"{'type': 'Point', 'coordinates': (-79.38734638, 43.77123819)}"
-3308,7642,GO-20209029794,THEFT UNDER - BICYCLE,2020-11-10T00:00:00,2020,November,Tuesday,10,315,9,2020-11-16T00:00:00,2020,November,Monday,16,321,21,D33,Toronto,52,Bayview Village (52),"Apartment (Rooming House, Condo)",Apartment,NO,,OT,18,BLK,1000.0,STOLEN,3305,"{'type': 'Point', 'coordinates': (-79.38425341, 43.76575373)}"
-3309,7657,GO-20202225906,THEFT UNDER - BICYCLE,2020-11-23T00:00:00,2020,November,Monday,23,328,20,2020-11-24T00:00:00,2020,November,Tuesday,24,329,12,D33,Toronto,52,Bayview Village (52),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NARIN,PALISADES TRAIL,MT,18,,1500.0,STOLEN,3306,"{'type': 'Point', 'coordinates': (-79.38734638, 43.77123819)}"
-3310,1137,GO-20179012298,THEFT UNDER - BICYCLE,2017-08-12T00:00:00,2017,August,Saturday,12,224,20,2017-08-13T00:00:00,2017,August,Sunday,13,225,9,D32,Toronto,51,Willowdale East (51),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,AVALANCHE COMP,MT,50,GRY,600.0,STOLEN,3307,"{'type': 'Point', 'coordinates': (-79.41089678000002, 43.76150872)}"
-3311,1362,GO-20179014424,THEFT UNDER - BICYCLE,2017-09-09T00:00:00,2017,September,Saturday,9,252,22,2017-09-10T00:00:00,2017,September,Sunday,10,253,21,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,UK,CROSS TRAIL,MT,20,GRY,1145.0,STOLEN,3308,"{'type': 'Point', 'coordinates': (-79.4122846, 43.77322633)}"
-3312,1480,GO-20179015362,THEFT UNDER - BICYCLE,2017-09-20T00:00:00,2017,September,Wednesday,20,263,15,2017-09-21T00:00:00,2017,September,Thursday,21,264,13,D32,Toronto,51,Willowdale East (51),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NAKAMURA,ROYAL W,RG,8,LBL,250.0,STOLEN,3309,"{'type': 'Point', 'coordinates': (-79.41089678000002, 43.76150872)}"
-3313,1620,GO-20179016803,THEFT OVER - BICYCLE,2017-09-24T00:00:00,2017,September,Sunday,24,267,5,2017-10-09T00:00:00,2017,October,Monday,9,282,20,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,TR,X-CALIBER 9,MT,10,BLK,1878.0,STOLEN,3310,"{'type': 'Point', 'coordinates': (-79.40653241, 43.75650092)}"
-3314,17457,GO-20142542817,THEFT UNDER,2014-07-13T00:00:00,2014,July,Sunday,13,194,13,2014-07-25T00:00:00,2014,July,Friday,25,206,12,D33,Toronto,53,Henry Farm (53),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,OT,1,PNK,,STOLEN,3311,"{'type': 'Point', 'coordinates': (-79.34648977, 43.76957102)}"
-3315,1795,GO-20179018917,THEFT UNDER - BICYCLE,2017-11-04T00:00:00,2017,November,Saturday,4,308,20,2017-11-04T00:00:00,2017,November,Saturday,4,308,22,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,GI,ROVE,RG,9,BLU,700.0,STOLEN,3313,"{'type': 'Point', 'coordinates': (-79.40653241, 43.75650092)}"
-3316,1801,GO-20179018917,THEFT UNDER - BICYCLE,2017-11-04T00:00:00,2017,November,Saturday,4,308,20,2017-11-04T00:00:00,2017,November,Saturday,4,308,22,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,9,,700.0,STOLEN,3314,"{'type': 'Point', 'coordinates': (-79.40653241, 43.75650092)}"
-3317,1968,GO-20189000468,THEFT UNDER - BICYCLE,2018-01-04T00:00:00,2018,January,Thursday,4,4,18,2018-01-07T00:00:00,2018,January,Sunday,7,7,12,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,OT,PEAK,MT,27,BLK,800.0,STOLEN,3315,"{'type': 'Point', 'coordinates': (-79.39306144, 43.76323381)}"
-3318,2209,GO-2018749335,B&E,2018-04-26T00:00:00,2018,April,Thursday,26,116,20,2018-04-27T00:00:00,2018,April,Friday,27,117,17,D32,Toronto,51,Willowdale East (51),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,JAMIS,RACER,RG,15,YELBLK,1790.0,STOLEN,3316,"{'type': 'Point', 'coordinates': (-79.40653241, 43.75650092)}"
-3319,2527,GO-20189018176,THEFT UNDER - BICYCLE,2018-06-06T00:00:00,2018,June,Wednesday,6,157,10,2018-06-11T00:00:00,2018,June,Monday,11,162,10,D32,Toronto,51,Willowdale East (51),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,XC27,MT,21,BLK,429.0,STOLEN,3317,"{'type': 'Point', 'coordinates': (-79.40653241, 43.75650092)}"
-3320,2792,GO-20189021772,THEFT UNDER - BICYCLE,2018-07-09T00:00:00,2018,July,Monday,9,190,9,2018-07-09T00:00:00,2018,July,Monday,9,190,23,D32,Toronto,51,Willowdale East (51),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,M300,MT,8,YEL,450.0,STOLEN,3318,"{'type': 'Point', 'coordinates': (-79.41240726, 43.76747172)}"
-3321,3006,GO-20189024293,THEFT UNDER - BICYCLE,2018-07-28T00:00:00,2018,July,Saturday,28,209,1,2018-07-28T00:00:00,2018,July,Saturday,28,209,11,D32,Toronto,51,Willowdale East (51),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,PADDY WAGON,RG,1,BLK,900.0,STOLEN,3319,"{'type': 'Point', 'coordinates': (-79.38934495, 43.77254528)}"
-3322,3144,GO-20189025808,THEFT UNDER - BICYCLE,2018-08-09T00:00:00,2018,August,Thursday,9,221,20,2018-08-09T00:00:00,2018,August,Thursday,9,221,22,D32,Toronto,51,Willowdale East (51),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,,RC,40,,2000.0,STOLEN,3320,"{'type': 'Point', 'coordinates': (-79.39964603000001, 43.76399630000001)}"
-3323,3391,GO-20189029112,THEFT UNDER - BICYCLE,2018-09-03T00:00:00,2018,September,Monday,3,246,1,2018-09-04T00:00:00,2018,September,Tuesday,4,247,20,D32,Toronto,51,Willowdale East (51),Unknown,Other,SU,,MT,40,LBL,140.0,STOLEN,3321,"{'type': 'Point', 'coordinates': (-79.41240726, 43.76747172)}"
-3324,3392,GO-20189029112,THEFT UNDER - BICYCLE,2018-09-03T00:00:00,2018,September,Monday,3,246,1,2018-09-04T00:00:00,2018,September,Tuesday,4,247,20,D32,Toronto,51,Willowdale East (51),Unknown,Other,SU,,MT,50,GRY,200.0,STOLEN,3322,"{'type': 'Point', 'coordinates': (-79.41240726, 43.76747172)}"
-3325,3483,GO-20189030564,THEFT UNDER - BICYCLE,2018-09-13T00:00:00,2018,September,Thursday,13,256,22,2018-09-15T00:00:00,2018,September,Saturday,15,258,13,D32,Toronto,51,Willowdale East (51),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,RIDLEY FENIX,RC,24,WHI,2000.0,STOLEN,3323,"{'type': 'Point', 'coordinates': (-79.41153302, 43.77136949)}"
-3326,3829,GO-20182067085,THEFT UNDER - BICYCLE,2018-11-02T00:00:00,2018,November,Friday,2,306,10,2018-11-09T00:00:00,2018,November,Friday,9,313,11,D32,Toronto,51,Willowdale East (51),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,RG,10,WHI,500.0,STOLEN,3324,"{'type': 'Point', 'coordinates': (-79.41089678000002, 43.76150872)}"
-3327,4042,GO-2019247610,THEFT OVER,2018-08-31T00:00:00,2018,August,Friday,31,243,18,2019-02-08T00:00:00,2019,February,Friday,8,39,14,D32,Toronto,51,Willowdale East (51),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GHETTO,DIRT JUMPER,OT,1,GRY,2200.0,STOLEN,3325,"{'type': 'Point', 'coordinates': (-79.40396032, 43.76742494)}"
-3328,4150,GO-2019645119,THEFT OF MOTOR VEHICLE,2019-04-09T00:00:00,2019,April,Tuesday,9,99,21,2019-04-10T00:00:00,2019,April,Wednesday,10,100,8,D32,Toronto,51,Willowdale East (51),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,RG,1,BLU,150.0,STOLEN,3326,"{'type': 'Point', 'coordinates': (-79.40133178, 43.76800094)}"
-3329,4285,GO-20199015253,THEFT UNDER,2019-05-15T00:00:00,2019,May,Wednesday,15,135,15,2019-05-16T00:00:00,2019,May,Thursday,16,136,13,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,OT,A808,FO,18,WHI,600.0,STOLEN,3327,"{'type': 'Point', 'coordinates': (-79.41003415, 43.76798465)}"
-3330,4487,GO-20191102494,THEFT UNDER,2019-06-11T00:00:00,2019,June,Tuesday,11,162,20,2019-06-14T00:00:00,2019,June,Friday,14,165,22,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,OTHER,HFS 2000,MT,21,WHI,3000.0,STOLEN,3328,"{'type': 'Point', 'coordinates': (-79.41003415, 43.76798465)}"
-3331,4491,GO-20199018672,THEFT UNDER,2018-07-19T00:00:00,2018,July,Thursday,19,200,16,2019-06-14T00:00:00,2019,June,Friday,14,165,23,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,RA,,MT,18,,500.0,STOLEN,3329,"{'type': 'Point', 'coordinates': (-79.40653241, 43.75650092)}"
-3332,4492,GO-20199018672,THEFT UNDER,2018-07-19T00:00:00,2018,July,Thursday,19,200,16,2019-06-14T00:00:00,2019,June,Friday,14,165,23,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,10,RED,450.0,STOLEN,3330,"{'type': 'Point', 'coordinates': (-79.40653241, 43.75650092)}"
-3333,4501,GO-20199018778,THEFT UNDER,2019-06-15T00:00:00,2019,June,Saturday,15,166,18,2019-06-15T00:00:00,2019,June,Saturday,15,166,20,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,CA,,OT,30,BLK,600.0,STOLEN,3331,"{'type': 'Point', 'coordinates': (-79.40653241, 43.75650092)}"
-3334,4646,GO-20199020642,THEFT UNDER - BICYCLE,2019-06-24T00:00:00,2019,June,Monday,24,175,15,2019-07-01T00:00:00,2019,July,Monday,1,182,10,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,CA,,MT,18,BLK,250.0,STOLEN,3332,"{'type': 'Point', 'coordinates': (-79.41003415, 43.76798465)}"
-3335,4916,GO-20191433543,THEFT OF EBIKE UNDER $5000,2019-07-25T00:00:00,2019,July,Thursday,25,206,21,2019-07-30T00:00:00,2019,July,Tuesday,30,211,12,D32,Toronto,51,Willowdale East (51),Ttc Bus Stop / Shelter / Loop,Outside,EMMO,KNIGHT,EL,1,RED,1300.0,STOLEN,3333,"{'type': 'Point', 'coordinates': (-79.41553623, 43.77976942)}"
-3336,5608,GO-20199035595,THEFT UNDER - BICYCLE,2019-10-02T00:00:00,2019,October,Wednesday,2,275,15,2019-10-28T00:00:00,2019,October,Monday,28,301,17,D32,Toronto,51,Willowdale East (51),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,2-29,MT,8,RED,705.0,STOLEN,3334,"{'type': 'Point', 'coordinates': (-79.41279351, 43.7755047)}"
-3337,5725,GO-20192283182,THEFT UNDER,2019-10-29T00:00:00,2019,October,Tuesday,29,302,20,2019-11-26T00:00:00,2019,November,Tuesday,26,330,16,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,CANNONDALE,CANQUICK 8 BBQ,OT,15,REDBLK,610.0,STOLEN,3335,"{'type': 'Point', 'coordinates': (-79.40934023, 43.76033147)}"
-3338,5748,GO-20199039825,THEFT UNDER - BICYCLE,2019-11-16T00:00:00,2019,November,Saturday,16,320,21,2019-12-04T00:00:00,2019,December,Wednesday,4,338,22,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE,MT,18,SIL,600.0,STOLEN,3336,"{'type': 'Point', 'coordinates': (-79.40653241, 43.75650092)}"
-3339,5777,GO-20199041602,THEFT UNDER - BICYCLE,2019-11-20T00:00:00,2019,November,Wednesday,20,324,17,2019-12-20T00:00:00,2019,December,Friday,20,354,17,D32,Toronto,51,Willowdale East (51),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,RG,21,BLK,586.0,STOLEN,3337,"{'type': 'Point', 'coordinates': (-79.40399933, 43.75860698)}"
-3340,5786,GO-20199042027,THEFT UNDER - BICYCLE,2019-11-01T00:00:00,2019,November,Friday,1,305,7,2019-12-26T00:00:00,2019,December,Thursday,26,360,10,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,CA,CANNONDALE,RC,9,BLK,1500.0,STOLEN,3338,"{'type': 'Point', 'coordinates': (-79.40653241, 43.75650092)}"
-3341,5825,GO-20209001488,THEFT UNDER - BICYCLE,2020-01-13T00:00:00,2020,January,Monday,13,13,17,2020-01-14T00:00:00,2020,January,Tuesday,14,14,8,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,10,LBL,0.0,STOLEN,3339,"{'type': 'Point', 'coordinates': (-79.4071259, 43.75791206)}"
-3342,5826,GO-20209001488,THEFT UNDER - BICYCLE,2020-01-13T00:00:00,2020,January,Monday,13,13,17,2020-01-14T00:00:00,2020,January,Tuesday,14,14,8,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,10,BLK,0.0,STOLEN,3340,"{'type': 'Point', 'coordinates': (-79.4071259, 43.75791206)}"
-3343,5898,GO-2020334344,THEFT UNDER - BICYCLE,2019-10-15T00:00:00,2019,October,Tuesday,15,288,0,2020-02-16T00:00:00,2020,February,Sunday,16,47,15,D32,Toronto,51,Willowdale East (51),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,ZZZ,,OT,10,GRY,500.0,STOLEN,3341,"{'type': 'Point', 'coordinates': (-79.40653241, 43.75650092)}"
-3344,6091,GO-2020770077,B&E,2020-04-23T00:00:00,2020,April,Thursday,23,114,3,2020-04-23T00:00:00,2020,April,Thursday,23,114,3,D32,Toronto,51,Willowdale East (51),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UKNOWN,,SC,0,SIL,,STOLEN,3342,"{'type': 'Point', 'coordinates': (-79.40396032, 43.76742494)}"
-3345,6092,GO-2020770077,B&E,2020-04-23T00:00:00,2020,April,Thursday,23,114,3,2020-04-23T00:00:00,2020,April,Thursday,23,114,3,D32,Toronto,51,Willowdale East (51),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKOWN,,SC,0,PNK,,STOLEN,3343,"{'type': 'Point', 'coordinates': (-79.40396032, 43.76742494)}"
-3346,6189,GO-20209013149,THEFT UNDER - BICYCLE,2020-05-14T00:00:00,2020,May,Thursday,14,135,18,2020-05-14T00:00:00,2020,May,Thursday,14,135,20,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,CA,QUICK,OT,24,ONG,700.0,STOLEN,3344,"{'type': 'Point', 'coordinates': (-79.39306144, 43.76323381)}"
-3347,6253,GO-20209013951,THEFT UNDER,2019-10-22T00:00:00,2019,October,Tuesday,22,295,14,2020-05-26T00:00:00,2020,May,Tuesday,26,147,15,D32,Toronto,51,Willowdale East (51),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,ANYROAD,RC,18,OTH,1200.0,STOLEN,3345,"{'type': 'Point', 'coordinates': (-79.40653241, 43.75650092)}"
-3348,6269,GO-20209014197,THEFT UNDER - BICYCLE,2020-05-15T00:00:00,2020,May,Friday,15,136,13,2020-05-29T00:00:00,2020,May,Friday,29,150,13,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,CA,,MT,21,,1000.0,STOLEN,3346,"{'type': 'Point', 'coordinates': (-79.40858219, 43.76496556)}"
-3349,6278,GO-20209014369,THEFT UNDER - BICYCLE,2020-05-31T00:00:00,2020,May,Sunday,31,152,15,2020-06-01T00:00:00,2020,June,Monday,1,153,18,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,TR,7.2 FX 17.5,RG,18,BLK,680.0,STOLEN,3347,"{'type': 'Point', 'coordinates': (-79.40850721, 43.75760637)}"
-3350,6296,GO-20209014528,THEFT UNDER - BICYCLE,2020-06-01T00:00:00,2020,June,Monday,1,153,19,2020-06-04T00:00:00,2020,June,Thursday,4,156,13,D32,Toronto,51,Willowdale East (51),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,SIRRUS 1.0,OT,10,BLK,680.0,STOLEN,3348,"{'type': 'Point', 'coordinates': (-79.41240726, 43.76747172)}"
-3351,6297,GO-20209014528,THEFT UNDER - BICYCLE,2020-06-01T00:00:00,2020,June,Monday,1,153,19,2020-06-04T00:00:00,2020,June,Thursday,4,156,13,D32,Toronto,51,Willowdale East (51),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,,MT,1,BLKWHI,,STOLEN,3349,"{'type': 'Point', 'coordinates': (-79.41240726, 43.76747172)}"
-3352,6398,GO-20209015420,THEFT FROM MOTOR VEHICLE UNDER,2020-06-11T00:00:00,2020,June,Thursday,11,163,20,2020-06-15T00:00:00,2020,June,Monday,15,167,16,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,GI,,TO,1,,1600.0,STOLEN,3350,"{'type': 'Point', 'coordinates': (-79.40934023, 43.76033147)}"
-3353,6399,GO-20209015420,THEFT FROM MOTOR VEHICLE UNDER,2020-06-11T00:00:00,2020,June,Thursday,11,163,20,2020-06-15T00:00:00,2020,June,Monday,15,167,16,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,1,,1400.0,STOLEN,3351,"{'type': 'Point', 'coordinates': (-79.40934023, 43.76033147)}"
-3354,6404,GO-20209015503,THEFT UNDER - BICYCLE,2020-04-12T00:00:00,2020,April,Sunday,12,103,16,2020-06-16T00:00:00,2020,June,Tuesday,16,168,18,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,NO,SLINE,RG,7,GRY,400.0,STOLEN,3352,"{'type': 'Point', 'coordinates': (-79.39198235, 43.76570152)}"
-3355,6442,GO-20209015908,THEFT UNDER - BICYCLE,2020-06-21T00:00:00,2020,June,Sunday,21,173,20,2020-06-22T00:00:00,2020,June,Monday,22,174,16,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,TR,VERVE 3,RG,24,BLK,1000.0,STOLEN,3353,"{'type': 'Point', 'coordinates': (-79.40934023, 43.76033147)}"
-3356,6484,GO-20209016305,THEFT UNDER - BICYCLE,2020-06-27T00:00:00,2020,June,Saturday,27,179,11,2020-06-27T00:00:00,2020,June,Saturday,27,179,13,D32,Toronto,51,Willowdale East (51),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,SURGE,MT,21,GRY,360.0,STOLEN,3354,"{'type': 'Point', 'coordinates': (-79.4084197, 43.76288695)}"
-3357,6486,GO-20201189127,THEFT UNDER,2020-06-20T00:00:00,2020,June,Saturday,20,172,19,2020-06-28T00:00:00,2020,June,Sunday,28,180,10,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,CERVELO,RS,RC,18,WHIRED,,STOLEN,3355,"{'type': 'Point', 'coordinates': (-79.40934023, 43.76033147)}"
-3358,6492,GO-20209016415,THEFT UNDER - BICYCLE,2020-06-23T00:00:00,2020,June,Tuesday,23,175,0,2020-06-29T00:00:00,2020,June,Monday,29,181,0,D32,Toronto,51,Willowdale East (51),"Open Areas (Lakes, Parks, Rivers)",Outside,SC,,MT,21,BLU,350.0,STOLEN,3356,"{'type': 'Point', 'coordinates': (-79.40399933, 43.75860698)}"
-3359,6553,GO-20209017045,THEFT UNDER - BICYCLE,2020-07-06T00:00:00,2020,July,Monday,6,188,8,2020-07-07T00:00:00,2020,July,Tuesday,7,189,15,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,TR,HYBRID,MT,17,GRN,700.0,STOLEN,3357,"{'type': 'Point', 'coordinates': (-79.40653241, 43.75650092)}"
-3360,6601,GO-20209017406,THEFT UNDER - BICYCLE,2020-07-07T00:00:00,2020,July,Tuesday,7,189,16,2020-07-12T00:00:00,2020,July,Sunday,12,194,19,D32,Toronto,51,Willowdale East (51),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,DIADORA - PASSA,RG,7,BLK,380.0,STOLEN,3358,"{'type': 'Point', 'coordinates': (-79.40871291, 43.76283625)}"
-3361,6603,GO-20201296593,THEFT UNDER,2020-07-07T00:00:00,2020,July,Tuesday,7,189,14,2020-07-13T00:00:00,2020,July,Monday,13,195,10,D32,Toronto,51,Willowdale East (51),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,CROSSTRAIL XL,MT,8,BLK,1100.0,STOLEN,3359,"{'type': 'Point', 'coordinates': (-79.41434293, 43.77515729)}"
-3362,6604,GO-20201296593,THEFT UNDER,2020-07-07T00:00:00,2020,July,Tuesday,7,189,14,2020-07-13T00:00:00,2020,July,Monday,13,195,10,D32,Toronto,51,Willowdale East (51),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,TRAIL MOUNTAIN,MT,10,GRY,1000.0,STOLEN,3360,"{'type': 'Point', 'coordinates': (-79.41434293, 43.77515729)}"
-3363,6605,GO-20201296593,THEFT UNDER,2020-07-07T00:00:00,2020,July,Tuesday,7,189,14,2020-07-13T00:00:00,2020,July,Monday,13,195,10,D32,Toronto,51,Willowdale East (51),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,ROSSIGNOL,,MT,8,BLURED,950.0,STOLEN,3361,"{'type': 'Point', 'coordinates': (-79.41434293, 43.77515729)}"
-3364,6680,GO-20209018056,THEFT UNDER - BICYCLE,2020-07-15T00:00:00,2020,July,Wednesday,15,197,17,2020-07-20T00:00:00,2020,July,Monday,20,202,17,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,UK,MEDIUM HARDTAIL,MT,21,YEL,475.0,STOLEN,3362,"{'type': 'Point', 'coordinates': (-79.41227445, 43.78047607)}"
-3365,6718,GO-20201376125,THEFT OF EBIKE UNDER $5000,2020-07-21T00:00:00,2020,July,Tuesday,21,203,16,2020-07-24T00:00:00,2020,July,Friday,24,206,11,D32,Toronto,51,Willowdale East (51),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,UNKNONW,EL,1,RED,1100.0,STOLEN,3363,"{'type': 'Point', 'coordinates': (-79.41220612, 43.76668774)}"
-3366,6815,GO-20209019002,THEFT UNDER - BICYCLE,2020-06-23T00:00:00,2020,June,Tuesday,23,175,13,2020-07-30T00:00:00,2020,July,Thursday,30,212,14,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,,,RG,18,WHI,300.0,STOLEN,3364,"{'type': 'Point', 'coordinates': (-79.40850721, 43.75760637)}"
-3367,6820,GO-20209019045,THEFT UNDER - BICYCLE,2020-07-30T00:00:00,2020,July,Thursday,30,212,21,2020-07-30T00:00:00,2020,July,Thursday,30,212,22,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,UK,P2,OT,50,WHI,2400.0,STOLEN,3365,"{'type': 'Point', 'coordinates': (-79.41204999, 43.7749527)}"
-3368,6888,GO-20209019566,THEFT UNDER - BICYCLE,2020-07-25T00:00:00,2020,July,Saturday,25,207,18,2020-08-06T00:00:00,2020,August,Thursday,6,219,20,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,OT,KULANA CLOCHE,OT,7,BLU,400.0,STOLEN,3366,"{'type': 'Point', 'coordinates': (-79.41245564, 43.77617495)}"
-3369,6918,GO-20201470271,THEFT UNDER - BICYCLE,2020-08-06T00:00:00,2020,August,Thursday,6,219,18,2020-08-10T00:00:00,2020,August,Monday,10,223,12,D32,Toronto,51,Willowdale East (51),"Single Home, House (Attach Garage, Cottage, Mobile)",House,JAMIS,DAKAR,MT,21,REDBLK,1500.0,STOLEN,3367,"{'type': 'Point', 'coordinates': (-79.39103644, 43.76355963)}"
-3370,6920,GO-20201468343,THEFT UNDER - BICYCLE,2020-07-10T00:00:00,2020,July,Friday,10,192,0,2020-08-06T00:00:00,2020,August,Thursday,6,219,15,D32,Toronto,51,Willowdale East (51),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,,MT,18,BLU,1000.0,STOLEN,3368,"{'type': 'Point', 'coordinates': (-79.4071259, 43.75791206)}"
-3371,6987,GO-20209020511,THEFT UNDER - BICYCLE,2020-05-23T00:00:00,2020,May,Saturday,23,144,8,2020-08-18T00:00:00,2020,August,Tuesday,18,231,20,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,CA,RUSH 4,MT,9,WHI,3300.0,STOLEN,3369,"{'type': 'Point', 'coordinates': (-79.40850721, 43.75760637)}"
-3372,7060,GO-20209021153,THEFT UNDER - BICYCLE,2020-08-23T00:00:00,2020,August,Sunday,23,236,20,2020-08-24T00:00:00,2020,August,Monday,24,237,12,D32,Toronto,51,Willowdale East (51),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,MOUNTAIN,MT,21,PLE,800.0,STOLEN,3370,"{'type': 'Point', 'coordinates': (-79.40653241, 43.75650092)}"
-3373,7068,GO-20209021216,THEFT UNDER - BICYCLE,2020-08-24T00:00:00,2020,August,Monday,24,237,4,2020-08-25T00:00:00,2020,August,Tuesday,25,238,9,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,NO,XFR 3 FORMA,MT,27,WHI,600.0,STOLEN,3371,"{'type': 'Point', 'coordinates': (-79.41153302, 43.77136949)}"
-3374,7091,GO-20201613878,THEFT OF EBIKE UNDER $5000,2020-08-26T00:00:00,2020,August,Wednesday,26,239,11,2020-08-27T00:00:00,2020,August,Thursday,27,240,8,D32,Toronto,51,Willowdale East (51),"Single Home, House (Attach Garage, Cottage, Mobile)",House,JETSON,BOLT,EL,1,BLK,452.0,STOLEN,3372,"{'type': 'Point', 'coordinates': (-79.40064723, 43.76638914000001)}"
-3375,7156,GO-20209022098,THEFT UNDER - BICYCLE,2020-08-14T00:00:00,2020,August,Friday,14,227,23,2020-09-02T00:00:00,2020,September,Wednesday,2,246,12,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,IN,"29"""" INFINITY",MT,24,BLK,400.0,STOLEN,3373,"{'type': 'Point', 'coordinates': (-79.4119511, 43.76565724)}"
-3376,7165,GO-20209022191,THEFT UNDER - BICYCLE,2020-09-03T00:00:00,2020,September,Thursday,3,247,1,2020-09-03T00:00:00,2020,September,Thursday,3,247,12,D32,Toronto,51,Willowdale East (51),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,CARBON HYBRID,RG,11,BLK,2500.0,STOLEN,3374,"{'type': 'Point', 'coordinates': (-79.39459523, 43.77899769)}"
-3377,7226,GO-20201697667,THEFT UNDER - BICYCLE,2020-08-11T00:00:00,2020,August,Tuesday,11,224,9,2020-09-08T00:00:00,2020,September,Tuesday,8,252,8,D32,Toronto,51,Willowdale East (51),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,ROAD RACER,RC,16,RED,1000.0,STOLEN,3375,"{'type': 'Point', 'coordinates': (-79.40645869, 43.76071772)}"
-3378,7317,GO-20209024026,THEFT UNDER,2020-09-11T00:00:00,2020,September,Friday,11,255,18,2020-09-22T00:00:00,2020,September,Tuesday,22,266,10,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,GT,,MT,7,GRN,500.0,STOLEN,3376,"{'type': 'Point', 'coordinates': (-79.41279351, 43.7755047)}"
-3379,7854,GO-20149002959,THEFT UNDER,2014-02-17T00:00:00,2014,February,Monday,17,48,0,2014-04-22T00:00:00,2014,April,Tuesday,22,112,11,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,NO,CRD1,RC,10,BLU,1335.0,STOLEN,3377,"{'type': 'Point', 'coordinates': (-79.40934023, 43.76033147)}"
-3380,8084,GO-20149003932,THEFT UNDER,2014-05-28T00:00:00,2014,May,Wednesday,28,148,20,2014-06-09T00:00:00,2014,June,Monday,9,160,20,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,OT,ORMA,MT,21,GRY,250.0,STOLEN,3378,"{'type': 'Point', 'coordinates': (-79.40202124, 43.77643379)}"
-3381,8085,GO-20149003932,THEFT UNDER,2014-05-28T00:00:00,2014,May,Wednesday,28,148,20,2014-06-09T00:00:00,2014,June,Monday,9,160,20,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,OT,ORBITA,MT,18,WHI,200.0,STOLEN,3379,"{'type': 'Point', 'coordinates': (-79.40202124, 43.77643379)}"
-3382,8241,GO-20149004412,THEFT UNDER,2014-06-24T00:00:00,2014,June,Tuesday,24,175,15,2014-06-25T00:00:00,2014,June,Wednesday,25,176,20,D32,Toronto,51,Willowdale East (51),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,,RG,24,BLU,370.0,STOLEN,3380,"{'type': 'Point', 'coordinates': (-79.3968532, 43.77760262)}"
-3383,8323,GO-20142431368,THEFT UNDER,2014-07-03T00:00:00,2014,July,Thursday,3,184,16,2014-07-04T00:00:00,2014,July,Friday,4,185,19,D32,Toronto,51,Willowdale East (51),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCOTT,UNKNOWN,OT,10,,800.0,STOLEN,3381,"{'type': 'Point', 'coordinates': (-79.41553623, 43.77976942)}"
-3384,8406,GO-20149004940,THEFT UNDER,2014-07-12T00:00:00,2014,July,Saturday,12,193,22,2014-07-13T00:00:00,2014,July,Sunday,13,194,14,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,,ROYAL,MT,30,WHI,316.0,STOLEN,3382,"{'type': 'Point', 'coordinates': (-79.41227445, 43.78047607)}"
-3385,8421,GO-20149004988,THEFT UNDER,2014-07-14T00:00:00,2014,July,Monday,14,195,8,2014-07-14T00:00:00,2014,July,Monday,14,195,18,D32,Toronto,51,Willowdale East (51),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,NOVARA PRO,MT,21,CRM,350.0,STOLEN,3383,"{'type': 'Point', 'coordinates': (-79.41089678000002, 43.76150872)}"
-3386,8438,GO-20149005051,PROPERTY - LOST,2014-06-09T00:00:00,2014,June,Monday,9,160,20,2014-07-16T00:00:00,2014,July,Wednesday,16,197,18,D32,Toronto,51,Willowdale East (51),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,FO,6,RED,,UNKNOWN,3384,"{'type': 'Point', 'coordinates': (-79.39753649, 43.77931556)}"
-3387,8543,GO-20149005442,THEFT UNDER,2014-07-28T00:00:00,2014,July,Monday,28,209,15,2014-07-29T00:00:00,2014,July,Tuesday,29,210,15,D32,Toronto,51,Willowdale East (51),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,REPUBLIC,RG,21,ONG,200.0,STOLEN,3385,"{'type': 'Point', 'coordinates': (-79.39306144, 43.76323381)}"
-3388,8561,GO-20149005528,THEFT UNDER,2014-07-31T00:00:00,2014,July,Thursday,31,212,20,2014-07-31T00:00:00,2014,July,Thursday,31,212,21,D32,Toronto,51,Willowdale East (51),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,,MT,5,PLE,112.0,STOLEN,3386,"{'type': 'Point', 'coordinates': (-79.40279623, 43.77148519)}"
-3389,8742,GO-20149006251,THEFT UNDER,2014-08-08T00:00:00,2014,August,Friday,8,220,8,2014-08-24T00:00:00,2014,August,Sunday,24,236,8,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,CC,APEX,MT,10,WHI,400.0,STOLEN,3387,"{'type': 'Point', 'coordinates': (-79.41204999, 43.7749527)}"
-3390,9042,GO-20143078018,THEFT UNDER,2014-10-08T00:00:00,2014,October,Wednesday,8,281,4,2014-10-10T00:00:00,2014,October,Friday,10,283,9,D32,Toronto,51,Willowdale East (51),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,BLADE,RESPONSE,MT,21,BLK,500.0,STOLEN,3388,"{'type': 'Point', 'coordinates': (-79.41279351, 43.7755047)}"
-3391,9077,GO-20149007636,THEFT UNDER,2014-10-16T00:00:00,2014,October,Thursday,16,289,19,2014-10-16T00:00:00,2014,October,Thursday,16,289,19,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,GI,BOULDER,MT,21,GRY,400.0,STOLEN,3389,"{'type': 'Point', 'coordinates': (-79.41279351, 43.7755047)}"
-3392,9106,GO-20143162944,THEFT UNDER,2014-10-10T00:00:00,2014,October,Friday,10,283,0,2014-10-23T00:00:00,2014,October,Thursday,23,296,23,D32,Toronto,51,Willowdale East (51),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,JAMIS,DURANGO -SX-MTB,OT,17,BLK,400.0,STOLEN,3390,"{'type': 'Point', 'coordinates': (-79.41279351, 43.7755047)}"
-3393,9281,GO-20159000508,THEFT UNDER,2015-01-26T00:00:00,2015,January,Monday,26,26,13,2015-01-27T00:00:00,2015,January,Tuesday,27,27,10,D32,Toronto,51,Willowdale East (51),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,ELEVATION 200,MT,24,BLK,200.0,STOLEN,3391,"{'type': 'Point', 'coordinates': (-79.40677813, 43.76150432)}"
-3394,9287,GO-2015199687,THEFT UNDER,2014-10-15T00:00:00,2014,October,Wednesday,15,288,12,2015-02-03T00:00:00,2015,February,Tuesday,3,34,15,D32,Toronto,51,Willowdale East (51),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TREK,,MT,21,CPR,,STOLEN,3392,"{'type': 'Point', 'coordinates': (-79.41279351, 43.7755047)}"
-3395,9308,GO-2015378613,THEFT UNDER,2014-12-25T00:00:00,2014,December,Thursday,25,359,9,2015-03-05T00:00:00,2015,March,Thursday,5,64,11,D32,Toronto,51,Willowdale East (51),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,,MT,12,ONGWHI,687.0,STOLEN,3393,"{'type': 'Point', 'coordinates': (-79.41227445, 43.78047607)}"
-3396,9309,GO-2015378613,THEFT UNDER,2014-12-25T00:00:00,2014,December,Thursday,25,359,9,2015-03-05T00:00:00,2015,March,Thursday,5,64,11,D32,Toronto,51,Willowdale East (51),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,,MT,12,BLKRED,604.0,STOLEN,3394,"{'type': 'Point', 'coordinates': (-79.41227445, 43.78047607)}"
-3397,9397,GO-20159001893,THEFT UNDER,2015-04-01T00:00:00,2015,April,Wednesday,1,91,9,2015-04-13T00:00:00,2015,April,Monday,13,103,21,D32,Toronto,51,Willowdale East (51),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,,RG,18,BLK,350.0,STOLEN,3395,"{'type': 'Point', 'coordinates': (-79.40615370000002, 43.76484512)}"
-3398,9398,GO-20159001893,THEFT UNDER,2015-04-01T00:00:00,2015,April,Wednesday,1,91,9,2015-04-13T00:00:00,2015,April,Monday,13,103,21,D32,Toronto,51,Willowdale East (51),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,BM,1,DBL,400.0,STOLEN,3396,"{'type': 'Point', 'coordinates': (-79.40615370000002, 43.76484512)}"
-3399,10150,GO-20159005186,THEFT UNDER,2015-07-28T00:00:00,2015,July,Tuesday,28,209,14,2015-07-30T00:00:00,2015,July,Thursday,30,211,19,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,OT,756,MT,24,BLU,1200.0,STOLEN,3397,"{'type': 'Point', 'coordinates': (-79.40653241, 43.75650092)}"
-3400,10257,GO-20151384615,THEFT UNDER,2015-08-11T00:00:00,2015,August,Tuesday,11,223,22,2015-08-12T00:00:00,2015,August,Wednesday,12,224,17,D32,Toronto,51,Willowdale East (51),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BIANCHI,NAYA,MT,21,DGR,500.0,STOLEN,3398,"{'type': 'Point', 'coordinates': (-79.41070756, 43.76071381)}"
-3401,10366,GO-20159006508,THEFT UNDER,2015-08-26T00:00:00,2015,August,Wednesday,26,238,14,2015-08-29T00:00:00,2015,August,Saturday,29,241,21,D32,Toronto,51,Willowdale East (51),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,15TALON,MT,30,BLK,660.0,STOLEN,3399,"{'type': 'Point', 'coordinates': (-79.41240726, 43.76747172)}"
-3402,10447,GO-20159007047,THEFT UNDER,2015-09-11T00:00:00,2015,September,Friday,11,254,13,2015-09-11T00:00:00,2015,September,Friday,11,254,16,D32,Toronto,51,Willowdale East (51),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,PE,,MT,12,RED,0.0,STOLEN,3400,"{'type': 'Point', 'coordinates': (-79.40471683, 43.76288857)}"
-3403,10498,GO-20159007427,THEFT UNDER,2015-09-16T00:00:00,2015,September,Wednesday,16,259,12,2015-09-19T00:00:00,2015,September,Saturday,19,262,19,D32,Toronto,51,Willowdale East (51),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,SE 2010,MT,10,LBL,400.0,STOLEN,3401,"{'type': 'Point', 'coordinates': (-79.40471683, 43.76288857)}"
-3404,10503,GO-20151632704,THEFT UNDER,2015-07-30T00:00:00,2015,July,Thursday,30,211,20,2015-09-21T00:00:00,2015,September,Monday,21,264,13,D32,Toronto,51,Willowdale East (51),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SCHWINN,GTX2,RG,21,BLKRED,350.0,STOLEN,3402,"{'type': 'Point', 'coordinates': (-79.41240726, 43.76747172)}"
-3405,10578,GO-20159007731,THEFT UNDER,2015-09-25T00:00:00,2015,September,Friday,25,268,16,2015-09-25T00:00:00,2015,September,Friday,25,268,22,D32,Toronto,51,Willowdale East (51),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE 1 SIZE S,OT,27,GRY,800.0,STOLEN,3403,"{'type': 'Point', 'coordinates': (-79.41111496, 43.76235207)}"
-3406,10814,GO-20152018144,THEFT UNDER,2015-11-16T00:00:00,2015,November,Monday,16,320,18,2015-11-24T00:00:00,2015,November,Tuesday,24,328,19,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,GIANT,XPC1,RG,24,RED,,STOLEN,3404,"{'type': 'Point', 'coordinates': (-79.41434293, 43.77515729)}"
-3407,10874,GO-20159010956,THEFT UNDER,2015-12-06T00:00:00,2015,December,Sunday,6,340,23,2015-12-15T00:00:00,2015,December,Tuesday,15,349,14,D32,Toronto,51,Willowdale East (51),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,KARAKORAM,MT,10,BLK,750.0,STOLEN,3405,"{'type': 'Point', 'coordinates': (-79.40934023, 43.76033147)}"
-3408,9841,GO-20159003805,THEFT UNDER,2015-06-19T00:00:00,2015,June,Friday,19,170,11,2015-06-21T00:00:00,2015,June,Sunday,21,172,16,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,TO,18,,600.0,STOLEN,3406,"{'type': 'Point', 'coordinates': (-79.36690533, 43.70588177)}"
-3409,9858,GO-20159003868,THEFT UNDER,2015-06-19T00:00:00,2015,June,Friday,19,170,16,2015-06-23T00:00:00,2015,June,Tuesday,23,174,12,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,EPIC,MT,30,BLK,4200.0,STOLEN,3407,"{'type': 'Point', 'coordinates': (-79.37501524, 43.70881635)}"
-3410,10011,GO-20159004563,THEFT UNDER,2015-07-13T00:00:00,2015,July,Monday,13,194,22,2015-07-14T00:00:00,2015,July,Tuesday,14,195,18,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GF,,MT,24,BRZ,900.0,STOLEN,3408,"{'type': 'Point', 'coordinates': (-79.36647336, 43.71130005)}"
-3411,10012,GO-20159004563,THEFT UNDER,2015-07-13T00:00:00,2015,July,Monday,13,194,22,2015-07-14T00:00:00,2015,July,Tuesday,14,195,18,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RM,VAPOR,MT,24,BLK,600.0,STOLEN,3409,"{'type': 'Point', 'coordinates': (-79.36647336, 43.71130005)}"
-3412,10142,GO-20159005149,THEFT UNDER,2015-07-26T00:00:00,2015,July,Sunday,26,207,12,2015-07-30T00:00:00,2015,July,Thursday,30,211,12,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,21,DGR,600.0,STOLEN,3410,"{'type': 'Point', 'coordinates': (-79.36485564, 43.71063524)}"
-3413,10145,GO-20159005163,THEFT UNDER,2015-07-20T00:00:00,2015,July,Monday,20,201,15,2015-07-30T00:00:00,2015,July,Thursday,30,211,10,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KO,CINDER CONE,MT,21,RED,750.0,STOLEN,3411,"{'type': 'Point', 'coordinates': (-79.36853989, 43.70987124)}"
-3414,10410,GO-20151539551,THEFT UNDER,2015-09-01T00:00:00,2015,September,Tuesday,1,244,21,2015-09-06T00:00:00,2015,September,Sunday,6,249,14,D53,Toronto,56,Leaside-Bennington (56),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,ROCKY MOUNTAIN,,MT,27,WHI,1000.0,STOLEN,3412,"{'type': 'Point', 'coordinates': (-79.37560854, 43.70694023)}"
-3415,10477,GO-20151587996,THEFT UNDER,2015-09-07T00:00:00,2015,September,Monday,7,250,22,2015-09-14T00:00:00,2015,September,Monday,14,257,12,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,TREK X9,MT,8,BLKRED,4500.0,STOLEN,3413,"{'type': 'Point', 'coordinates': (-79.37439392, 43.70719544)}"
-3416,10870,GO-20152123463,THEFT UNDER,2015-12-11T00:00:00,2015,December,Friday,11,345,12,2015-12-11T00:00:00,2015,December,Friday,11,345,15,D53,Toronto,56,Leaside-Bennington (56),Schools During Supervised Activity,Educational,STORK,SCENARIO,TO,10,BLU,3000.0,STOLEN,3414,"{'type': 'Point', 'coordinates': (-79.37031641, 43.71431091)}"
-3417,11053,GO-2016450173,THEFT UNDER - BICYCLE,2016-03-14T00:00:00,2016,March,Monday,14,74,11,2016-03-16T00:00:00,2016,March,Wednesday,16,76,13,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,KATMANDU,MT,16,BLUWHI,300.0,STOLEN,3415,"{'type': 'Point', 'coordinates': (-79.36552533, 43.71871151)}"
-3418,11125,GO-20169003268,THEFT UNDER - BICYCLE,2016-04-11T00:00:00,2016,April,Monday,11,102,12,2016-04-11T00:00:00,2016,April,Monday,11,102,12,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,CAAD13 BLACK IN,RC,22,,0.0,STOLEN,3416,"{'type': 'Point', 'coordinates': (-79.3610932, 43.70442114)}"
-3419,11156,GO-2016658985,THEFT UNDER - BICYCLE,2016-04-16T00:00:00,2016,April,Saturday,16,107,16,2016-04-18T00:00:00,2016,April,Monday,18,109,21,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,VFR,OT,5,BLK,500.0,STOLEN,3417,"{'type': 'Point', 'coordinates': (-79.3682324, 43.71570373)}"
-3420,11195,GO-2016700281,THEFT UNDER - BICYCLE,2016-04-23T00:00:00,2016,April,Saturday,23,114,16,2016-04-24T00:00:00,2016,April,Sunday,24,115,16,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,ZZZ,MT,99,BLK,,STOLEN,3418,"{'type': 'Point', 'coordinates': (-79.37597943, 43.69498688)}"
-3421,11236,GO-2016740223,THEFT UNDER - BICYCLE,2016-04-24T00:00:00,2016,April,Sunday,24,115,0,2016-04-30T00:00:00,2016,April,Saturday,30,121,18,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,NONE,RG,7,GRY,,STOLEN,3419,"{'type': 'Point', 'coordinates': (-79.37849511, 43.69536763)}"
-3422,11237,GO-2016740223,THEFT UNDER - BICYCLE,2016-04-24T00:00:00,2016,April,Sunday,24,115,0,2016-04-30T00:00:00,2016,April,Saturday,30,121,18,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,RG,7,GRY,150.0,STOLEN,3420,"{'type': 'Point', 'coordinates': (-79.37849511, 43.69536763)}"
-3423,11238,GO-2016740223,THEFT UNDER - BICYCLE,2016-04-24T00:00:00,2016,April,Sunday,24,115,0,2016-04-30T00:00:00,2016,April,Saturday,30,121,18,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MONGOOSE,UNKN,RG,8,PNK,250.0,STOLEN,3421,"{'type': 'Point', 'coordinates': (-79.37849511, 43.69536763)}"
-3424,11239,GO-2016740223,THEFT UNDER - BICYCLE,2016-04-24T00:00:00,2016,April,Sunday,24,115,0,2016-04-30T00:00:00,2016,April,Saturday,30,121,18,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,RG,6,WHI,150.0,STOLEN,3422,"{'type': 'Point', 'coordinates': (-79.37849511, 43.69536763)}"
-3425,11321,GO-2016839588,THEFT UNDER - BICYCLE,2016-05-14T00:00:00,2016,May,Saturday,14,135,23,2016-05-16T00:00:00,2016,May,Monday,16,137,8,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,STUMP JUMPER,MT,0,WHI,300.0,STOLEN,3423,"{'type': 'Point', 'coordinates': (-79.36802813, 43.6999287)}"
-3426,10161,GO-20159005246,THEFT UNDER,2015-07-31T00:00:00,2015,July,Friday,31,212,15,2015-08-01T00:00:00,2015,August,Saturday,1,213,18,D54,Toronto,54,OConnor-Parkview (54),Unknown,Other,OT,HYPER SPINNER P,BM,1,BLK,150.0,STOLEN,3546,"{'type': 'Point', 'coordinates': (-79.2968997, 43.7013288)}"
-3427,11392,GO-20169005033,THEFT UNDER - BICYCLE,2016-05-24T00:00:00,2016,May,Tuesday,24,145,12,2016-05-27T00:00:00,2016,May,Friday,27,148,16,D53,Toronto,56,Leaside-Bennington (56),Schools During Supervised Activity,Educational,TR,6700,MT,6,BLU,0.0,STOLEN,3424,"{'type': 'Point', 'coordinates': (-79.37031641, 43.71431091)}"
-3428,11750,GO-20169006934,THEFT UNDER - BICYCLE,2016-07-09T00:00:00,2016,July,Saturday,9,191,7,2016-07-09T00:00:00,2016,July,Saturday,9,191,19,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ROUBAIX,RC,11,GRY,1720.0,STOLEN,3425,"{'type': 'Point', 'coordinates': (-79.36262942, 43.71495903)}"
-3429,11853,GO-20169007454,THEFT UNDER - BICYCLE,2016-07-17T00:00:00,2016,July,Sunday,17,199,10,2016-07-20T00:00:00,2016,July,Wednesday,20,202,10,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,CYCLOCROSS 5,MT,10,SIL,2000.0,STOLEN,3426,"{'type': 'Point', 'coordinates': (-79.36753319, 43.71393867)}"
-3430,12279,GO-20161587221,B&E W'INTENT,2016-09-06T00:00:00,2016,September,Tuesday,6,250,22,2016-09-07T00:00:00,2016,September,Wednesday,7,251,9,D53,Toronto,56,Leaside-Bennington (56),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CERVELO,P2 105,RC,0,WHI,3000.0,STOLEN,3427,"{'type': 'Point', 'coordinates': (-79.36177754, 43.70611872)}"
-3431,12280,GO-20161587221,B&E W'INTENT,2016-09-06T00:00:00,2016,September,Tuesday,6,250,22,2016-09-07T00:00:00,2016,September,Wednesday,7,251,9,D53,Toronto,56,Leaside-Bennington (56),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CERVELO,C5,RC,0,BLKONG,9500.0,STOLEN,3428,"{'type': 'Point', 'coordinates': (-79.36177754, 43.70611872)}"
-3432,12281,GO-20161587221,B&E W'INTENT,2016-09-06T00:00:00,2016,September,Tuesday,6,250,22,2016-09-07T00:00:00,2016,September,Wednesday,7,251,9,D53,Toronto,56,Leaside-Bennington (56),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CERVELO,R3,RC,0,BLK,4800.0,STOLEN,3429,"{'type': 'Point', 'coordinates': (-79.36177754, 43.70611872)}"
-3433,12282,GO-20161587221,B&E W'INTENT,2016-09-06T00:00:00,2016,September,Tuesday,6,250,22,2016-09-07T00:00:00,2016,September,Wednesday,7,251,9,D53,Toronto,56,Leaside-Bennington (56),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CERVELO,R5 DA,RC,0,BLKRED,8000.0,STOLEN,3430,"{'type': 'Point', 'coordinates': (-79.36177754, 43.70611872)}"
-3434,12283,GO-20161587221,B&E W'INTENT,2016-09-06T00:00:00,2016,September,Tuesday,6,250,22,2016-09-07T00:00:00,2016,September,Wednesday,7,251,9,D53,Toronto,56,Leaside-Bennington (56),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CERVELO,S5 DI2,RC,0,BLK,10500.0,STOLEN,3431,"{'type': 'Point', 'coordinates': (-79.36177754, 43.70611872)}"
-3435,12284,GO-20161587221,B&E W'INTENT,2016-09-06T00:00:00,2016,September,Tuesday,6,250,22,2016-09-07T00:00:00,2016,September,Wednesday,7,251,9,D53,Toronto,56,Leaside-Bennington (56),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CERVELO,S3 UI2,RC,0,BLKRED,5500.0,STOLEN,3432,"{'type': 'Point', 'coordinates': (-79.36177754, 43.70611872)}"
-3436,12285,GO-20161587221,B&E W'INTENT,2016-09-06T00:00:00,2016,September,Tuesday,6,250,22,2016-09-07T00:00:00,2016,September,Wednesday,7,251,9,D53,Toronto,56,Leaside-Bennington (56),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CERVELO,P3 UI2,RC,0,BLKWHI,6300.0,STOLEN,3433,"{'type': 'Point', 'coordinates': (-79.36177754, 43.70611872)}"
-3437,12286,GO-20161587221,B&E W'INTENT,2016-09-06T00:00:00,2016,September,Tuesday,6,250,22,2016-09-07T00:00:00,2016,September,Wednesday,7,251,9,D53,Toronto,56,Leaside-Bennington (56),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CERVELO,RCA,RC,0,BLKRED,23000.0,STOLEN,3434,"{'type': 'Point', 'coordinates': (-79.36177754, 43.70611872)}"
-3438,12287,GO-20161587221,B&E W'INTENT,2016-09-06T00:00:00,2016,September,Tuesday,6,250,22,2016-09-07T00:00:00,2016,September,Wednesday,7,251,9,D53,Toronto,56,Leaside-Bennington (56),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CERVELO,P5 DI2,RC,0,REDWHI,11000.0,STOLEN,3435,"{'type': 'Point', 'coordinates': (-79.36177754, 43.70611872)}"
-3439,12288,GO-20161587221,B&E W'INTENT,2016-09-06T00:00:00,2016,September,Tuesday,6,250,22,2016-09-07T00:00:00,2016,September,Wednesday,7,251,9,D53,Toronto,56,Leaside-Bennington (56),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CERVELO,R3 UI2,RC,0,BLKWHI,4500.0,STOLEN,3436,"{'type': 'Point', 'coordinates': (-79.36177754, 43.70611872)}"
-3440,12975,GO-20199028220,THEFT UNDER - BICYCLE,2019-08-14T00:00:00,2019,August,Wednesday,14,226,1,2019-08-30T00:00:00,2019,August,Friday,30,242,9,D53,Toronto,56,Leaside-Bennington (56),"Apartment (Rooming House, Condo)",Apartment,SC,,MT,18,GLD,450.0,STOLEN,3437,"{'type': 'Point', 'coordinates': (-79.37169762, 43.69675091)}"
-3441,12989,GO-20199032736,B&E,2019-10-05T00:00:00,2019,October,Saturday,5,278,16,2019-10-06T00:00:00,2019,October,Sunday,6,279,20,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,REGISTERED WITH,MT,21,GRY,850.0,STOLEN,3438,"{'type': 'Point', 'coordinates': (-79.36539862, 43.7086074)}"
-3442,13010,GO-20192261923,THEFT UNDER - BICYCLE,2019-11-22T00:00:00,2019,November,Friday,22,326,19,2019-11-23T00:00:00,2019,November,Saturday,23,327,22,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,AQUILA,,RC,16,PLEWHI,2500.0,STOLEN,3439,"{'type': 'Point', 'coordinates': (-79.36703464, 43.71596788)}"
-3443,13011,GO-20192261923,THEFT UNDER - BICYCLE,2019-11-22T00:00:00,2019,November,Friday,22,326,19,2019-11-23T00:00:00,2019,November,Saturday,23,327,22,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CANNONDALE,,MT,18,BLK,2500.0,STOLEN,3440,"{'type': 'Point', 'coordinates': (-79.36703464, 43.71596788)}"
-3444,13053,GO-20209016277,THEFT UNDER - BICYCLE,2020-06-26T00:00:00,2020,June,Friday,26,178,14,2020-06-26T00:00:00,2020,June,Friday,26,178,19,D53,Toronto,56,Leaside-Bennington (56),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,SE1800 (2014),MT,24,WHI,1000.0,STOLEN,3441,"{'type': 'Point', 'coordinates': (-79.36885175, 43.68421332)}"
-3445,14071,GO-20169006073,THEFT UNDER - BICYCLE,2016-06-17T00:00:00,2016,June,Friday,17,169,19,2016-06-20T00:00:00,2016,June,Monday,20,172,13,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RM,ALTITUDE,MT,12,WHI,2500.0,STOLEN,3442,"{'type': 'Point', 'coordinates': (-79.37019571000002, 43.69279313)}"
-3446,14092,GO-20169008664,THEFT UNDER - BICYCLE,2016-07-19T00:00:00,2016,July,Tuesday,19,201,9,2016-08-13T00:00:00,2016,August,Saturday,13,226,9,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,AVALANCHE,MT,10,,800.0,STOLEN,3443,"{'type': 'Point', 'coordinates': (-79.37187337, 43.7149416)}"
-3447,14210,GO-20179018141,THEFT UNDER - BICYCLE,2017-10-24T00:00:00,2017,October,Tuesday,24,297,10,2017-10-25T00:00:00,2017,October,Wednesday,25,298,12,D53,Toronto,56,Leaside-Bennington (56),Schools During Supervised Activity,Educational,UK,,RC,1,BLK,700.0,STOLEN,3444,"{'type': 'Point', 'coordinates': (-79.37353552000002, 43.71180147)}"
-3448,179,GO-2017543247,THEFT OVER,2017-03-27T00:00:00,2017,March,Monday,27,86,9,2017-03-27T00:00:00,2017,March,Monday,27,86,19,D53,Toronto,55,Thorncliffe Park (55),"Apartment (Rooming House, Condo)",Apartment,GHOST,,MT,26,,3450.0,STOLEN,3579,"{'type': 'Point', 'coordinates': (-79.35357569, 43.71406817)}"
-3449,14224,GO-20189009991,THEFT UNDER - BICYCLE,2018-03-29T00:00:00,2018,March,Thursday,29,88,9,2018-03-29T00:00:00,2018,March,Thursday,29,88,22,D53,Toronto,56,Leaside-Bennington (56),Schools During Un-Supervised Activity,Educational,GF,GARY FISCHER TA,MT,1,RED,100.0,STOLEN,3445,"{'type': 'Point', 'coordinates': (-79.37353552000002, 43.71180147)}"
-3450,14248,GO-20181156175,THEFT UNDER - BICYCLE,2018-06-25T00:00:00,2018,June,Monday,25,176,13,2018-06-25T00:00:00,2018,June,Monday,25,176,16,D53,Toronto,56,Leaside-Bennington (56),Schools During Supervised Activity,Educational,GIANT,TALON 3 ACERA,MT,8,BLKRED,790.0,STOLEN,3446,"{'type': 'Point', 'coordinates': (-79.36954643, 43.70689296)}"
-3451,15855,GO-20141904285,THEFT UNDER,2014-04-07T00:00:00,2014,April,Monday,7,97,9,2014-04-16T00:00:00,2014,April,Wednesday,16,106,18,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,XTC 2 HT,MT,21,SILWHI,883.0,STOLEN,3447,"{'type': 'Point', 'coordinates': (-79.36291914, 43.70405429)}"
-3452,15856,GO-20141904285,THEFT UNDER,2014-04-07T00:00:00,2014,April,Monday,7,97,9,2014-04-16T00:00:00,2014,April,Wednesday,16,106,18,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CANNONDALE,TRAIL SL,MT,21,,828.0,STOLEN,3448,"{'type': 'Point', 'coordinates': (-79.36291914, 43.70405429)}"
-3453,15863,GO-20142059340,PROPERTY - FOUND,2014-05-11T00:00:00,2014,May,Sunday,11,131,18,2014-05-11T00:00:00,2014,May,Sunday,11,131,18,D53,Toronto,56,Leaside-Bennington (56),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,ROCKY MOUNTAIN,TRAILHEAD,MT,1,BLK,,RECOVERED,3449,"{'type': 'Point', 'coordinates': (-79.36434865, 43.70357443)}"
-3454,15883,GO-20149004770,THEFT UNDER,2014-07-07T00:00:00,2014,July,Monday,7,188,0,2014-07-07T00:00:00,2014,July,Monday,7,188,14,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,HARDTAIL,MT,27,SIL,900.0,STOLEN,3450,"{'type': 'Point', 'coordinates': (-79.37238182, 43.71294953)}"
-3455,15910,GO-20149007489,THEFT UNDER,2013-09-06T00:00:00,2013,September,Friday,6,249,18,2014-10-08T00:00:00,2014,October,Wednesday,8,281,19,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RM,,RG,21,BLK,900.0,STOLEN,3451,"{'type': 'Point', 'coordinates': (-79.37111606, 43.70490545)}"
-3456,19371,GO-20209013840,THEFT UNDER - BICYCLE,2020-03-24T00:00:00,2020,March,Tuesday,24,84,19,2020-05-24T00:00:00,2020,May,Sunday,24,145,20,D53,Toronto,56,Leaside-Bennington (56),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,30,BLK,1100.0,STOLEN,3480,"{'type': 'Point', 'coordinates': (-79.36438406, 43.70937132)}"
-3457,15911,GO-20149007489,THEFT UNDER,2013-09-06T00:00:00,2013,September,Friday,6,249,18,2014-10-08T00:00:00,2014,October,Wednesday,8,281,19,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RM,,RG,14,SIL,500.0,STOLEN,3452,"{'type': 'Point', 'coordinates': (-79.37111606, 43.70490545)}"
-3458,15927,GO-2015516712,THEFT UNDER,2015-03-25T00:00:00,2015,March,Wednesday,25,84,21,2015-03-28T00:00:00,2015,March,Saturday,28,87,11,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,6500,MT,24,GRY,1500.0,STOLEN,3453,"{'type': 'Point', 'coordinates': (-79.36509625, 43.71444889)}"
-3459,15955,GO-20159004464,THEFT UNDER,2015-07-10T00:00:00,2015,July,Friday,10,191,15,2015-07-12T00:00:00,2015,July,Sunday,12,193,19,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,2012 TREK 7.5 F,TO,9,BLK,2000.0,STOLEN,3454,"{'type': 'Point', 'coordinates': (-79.36539862, 43.7086074)}"
-3460,15957,GO-20159004749,THEFT UNDER,2015-07-19T00:00:00,2015,July,Sunday,19,200,23,2015-07-20T00:00:00,2015,July,Monday,20,201,13,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,MOUNTAIN HYBRID,MT,24,BLK,1000.0,STOLEN,3455,"{'type': 'Point', 'coordinates': (-79.36116529, 43.71720308)}"
-3461,16003,GO-20152142678,THEFT UNDER,2015-12-14T00:00:00,2015,December,Monday,14,348,13,2015-12-14T00:00:00,2015,December,Monday,14,348,15,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,ROAM 2,MT,12,GRYGRN,670.0,STOLEN,3456,"{'type': 'Point', 'coordinates': (-79.36793372, 43.71820575)}"
-3462,16041,GO-20201331078,B&E,2020-07-17T00:00:00,2020,July,Friday,17,199,23,2020-07-18T00:00:00,2020,July,Saturday,18,200,1,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ROCKY MOUNTAIN,FUSION 40 HT,MT,12,YELGRY,1608.0,STOLEN,3457,"{'type': 'Point', 'coordinates': (-79.36262942, 43.71495903)}"
-3463,16106,GO-20209029983,THEFT UNDER,2020-11-17T00:00:00,2020,November,Tuesday,17,322,12,2020-11-18T00:00:00,2020,November,Wednesday,18,323,18,D53,Toronto,56,Leaside-Bennington (56),Schools During Supervised Activity,Educational,TR,MARLIN 5 (2019),MT,27,BLK,650.0,STOLEN,3458,"{'type': 'Point', 'coordinates': (-79.37353552000002, 43.71180147)}"
-3464,19378,GO-20201083205,THEFT UNDER - BICYCLE,2020-06-12T00:00:00,2020,June,Friday,12,164,16,2020-06-12T00:00:00,2020,June,Friday,12,164,17,D53,Toronto,56,Leaside-Bennington (56),"Apartment (Rooming House, Condo)",Apartment,QUICK,CX4,OT,0,,600.0,STOLEN,3481,"{'type': 'Point', 'coordinates': (-79.36227733, 43.71408998)}"
-3465,18715,GO-20209018295,THEFT UNDER - BICYCLE,2020-07-22T00:00:00,2020,July,Wednesday,22,204,19,2020-07-22T00:00:00,2020,July,Wednesday,22,204,21,D53,Toronto,56,Leaside-Bennington (56),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,G28318M20,MT,7,DBL,500.0,STOLEN,3459,"{'type': 'Point', 'coordinates': (-79.37009689, 43.69704686)}"
-3466,18728,GO-20201495630,B&E,2020-08-01T00:00:00,2020,August,Saturday,1,214,19,2020-08-10T00:00:00,2020,August,Monday,10,223,14,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,DUO SPORT 2,MT,18,TRQ,800.0,STOLEN,3460,"{'type': 'Point', 'coordinates': (-79.37489499000002, 43.70510768)}"
-3467,18741,GO-20209020836,THEFT UNDER - BICYCLE,2020-08-20T00:00:00,2020,August,Thursday,20,233,21,2020-08-21T00:00:00,2020,August,Friday,21,234,10,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,2019 2 DISC HYB,MT,10,BLK,1500.0,STOLEN,3461,"{'type': 'Point', 'coordinates': (-79.37042821, 43.70310891)}"
-3468,18771,GO-20209027509,THEFT UNDER,2020-10-20T00:00:00,2020,October,Tuesday,20,294,23,2020-10-24T00:00:00,2020,October,Saturday,24,298,10,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,REVEL 2,MT,21,BLK,500.0,STOLEN,3462,"{'type': 'Point', 'coordinates': (-79.36604563, 43.70694742)}"
-3469,18850,GO-20142577607,THEFT OVER,2014-07-22T00:00:00,2014,July,Tuesday,22,203,0,2014-07-26T00:00:00,2014,July,Saturday,26,207,18,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,MOOTO XY BB,MT,18,GRY,13000.0,STOLEN,3463,"{'type': 'Point', 'coordinates': (-79.36793372, 43.71820575)}"
-3470,18871,GO-20143234627,PROPERTY - FOUND,2013-07-22T00:00:00,2013,July,Monday,22,203,10,2014-11-04T00:00:00,2014,November,Tuesday,4,308,6,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,7100,RG,0,SILBLU,,UNKNOWN,3464,"{'type': 'Point', 'coordinates': (-79.37096293, 43.70937834)}"
-3471,18892,GO-2015922549,THEFT UNDER,2015-05-29T00:00:00,2015,May,Friday,29,149,23,2015-06-02T00:00:00,2015,June,Tuesday,2,153,13,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KONA,JOHN COWAN TYPE,OT,0,BLKWHI,800.0,STOLEN,3465,"{'type': 'Point', 'coordinates': (-79.37209145, 43.69477556)}"
-3472,23913,GO-20149004819,THEFT UNDER,2014-07-07T00:00:00,2014,July,Monday,7,188,0,2014-07-08T00:00:00,2014,July,Tuesday,8,189,17,D33,Toronto,52,Bayview Village (52),Ttc Subway Station,Transit,UK,,MT,14,BLU,0.0,STOLEN,3686,"{'type': 'Point', 'coordinates': (-79.38801507, 43.76658916)}"
-3473,18908,GO-20159004464,THEFT UNDER,2015-07-10T00:00:00,2015,July,Friday,10,191,15,2015-07-12T00:00:00,2015,July,Sunday,12,193,19,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,RG,9,BLK,2000.0,STOLEN,3466,"{'type': 'Point', 'coordinates': (-79.36539862, 43.7086074)}"
-3474,18909,GO-20159004464,THEFT UNDER,2015-07-10T00:00:00,2015,July,Friday,10,191,15,2015-07-12T00:00:00,2015,July,Sunday,12,193,19,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,TO,9,BLU,1000.0,STOLEN,3467,"{'type': 'Point', 'coordinates': (-79.36539862, 43.7086074)}"
-3475,19021,GO-20161445906,THEFT UNDER - BICYCLE,2016-08-15T00:00:00,2016,August,Monday,15,228,22,2016-08-16T00:00:00,2016,August,Tuesday,16,229,7,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CERVELO,S2,RC,22,BLUBLK,4000.0,STOLEN,3468,"{'type': 'Point', 'coordinates': (-79.36361048, 43.70747562)}"
-3476,19022,GO-20161445906,THEFT UNDER - BICYCLE,2016-08-15T00:00:00,2016,August,Monday,15,228,22,2016-08-16T00:00:00,2016,August,Tuesday,16,229,7,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,DIADORA,MT,18,BLK,500.0,STOLEN,3469,"{'type': 'Point', 'coordinates': (-79.36361048, 43.70747562)}"
-3477,19023,GO-20161445906,THEFT UNDER - BICYCLE,2016-08-15T00:00:00,2016,August,Monday,15,228,22,2016-08-16T00:00:00,2016,August,Tuesday,16,229,7,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,,OT,21,BLU,1000.0,STOLEN,3470,"{'type': 'Point', 'coordinates': (-79.36361048, 43.70747562)}"
-3478,19027,GO-20169009248,THEFT UNDER - BICYCLE,2016-08-22T00:00:00,2016,August,Monday,22,235,12,2016-08-22T00:00:00,2016,August,Monday,22,235,14,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KO,"LANAI 13""""",MT,18,BLK,600.0,STOLEN,3471,"{'type': 'Point', 'coordinates': (-79.37160146, 43.70257016)}"
-3479,19087,GO-20179007732,THEFT UNDER - BICYCLE,2017-06-07T00:00:00,2017,June,Wednesday,7,158,17,2017-06-08T00:00:00,2017,June,Thursday,8,159,18,D53,Toronto,56,Leaside-Bennington (56),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SU,,RG,18,BLU,200.0,STOLEN,3472,"{'type': 'Point', 'coordinates': (-79.37009689, 43.69704686)}"
-3480,2632,GO-20189019553,THEFT UNDER - BICYCLE,2018-06-20T00:00:00,2018,June,Wednesday,20,171,9,2018-06-20T00:00:00,2018,June,Wednesday,20,171,22,D33,Toronto,48,Hillcrest Village (48),Universities / Colleges,Educational,UK,,MT,21,BLK,223.0,STOLEN,3513,"{'type': 'Point', 'coordinates': (-79.35182876, 43.79705548)}"
-3481,19153,GO-2018808864,THEFT UNDER - BICYCLE,2018-04-27T00:00:00,2018,April,Friday,27,117,10,2018-05-05T00:00:00,2018,May,Saturday,5,125,12,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,CYPRESS DX HYBR,MT,18,GRY,570.0,STOLEN,3473,"{'type': 'Point', 'coordinates': (-79.37670218, 43.71633524)}"
-3482,19228,GO-2019950301,THEFT OF EBIKE OVER $5000,2019-05-22T00:00:00,2019,May,Wednesday,22,142,20,2019-05-24T00:00:00,2019,May,Friday,24,144,18,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,TURBO LEVO,EL,11,GRN,7401.0,STOLEN,3474,"{'type': 'Point', 'coordinates': (-79.36301503, 43.70587717)}"
-3483,19280,GO-20199028888,THEFT UNDER - BICYCLE,2019-09-05T00:00:00,2019,September,Thursday,5,248,10,2019-09-05T00:00:00,2019,September,Thursday,5,248,18,D53,Toronto,56,Leaside-Bennington (56),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,,RG,12,BLK,0.0,STOLEN,3475,"{'type': 'Point', 'coordinates': (-79.37457452, 43.70427021)}"
-3484,19318,GO-20199036031,THEFT UNDER - BICYCLE,2019-10-25T00:00:00,2019,October,Friday,25,298,13,2019-10-31T00:00:00,2019,October,Thursday,31,304,16,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,FJ,2013 NEVADA 1.5,MT,9,BLK,0.0,STOLEN,3476,"{'type': 'Point', 'coordinates': (-79.36753319, 43.71393867)}"
-3485,19332,GO-20209003596,THEFT UNDER,2020-01-29T00:00:00,2020,January,Wednesday,29,29,12,2020-01-29T00:00:00,2020,January,Wednesday,29,29,22,D53,Toronto,56,Leaside-Bennington (56),Schools During Un-Supervised Activity,Educational,TR,MARLIN 5,MT,8,RED,629.0,STOLEN,3477,"{'type': 'Point', 'coordinates': (-79.36954643, 43.70689296)}"
-3486,19338,GO-20209008307,THEFT UNDER - BICYCLE,2020-03-09T00:00:00,2020,March,Monday,9,69,11,2020-03-09T00:00:00,2020,March,Monday,9,69,15,D53,Toronto,56,Leaside-Bennington (56),"Open Areas (Lakes, Parks, Rivers)",Outside,GI,REVEL 2,MT,21,BLK,450.0,STOLEN,3478,"{'type': 'Point', 'coordinates': (-79.37031641, 43.71431091)}"
-3487,19339,GO-20209008426,THEFT UNDER,2019-10-05T00:00:00,2019,October,Saturday,5,278,10,2020-03-10T00:00:00,2020,March,Tuesday,10,70,12,D53,Toronto,56,Leaside-Bennington (56),Schools During Un-Supervised Activity,Educational,GI,REVEL 2,MT,7,BLKRED,200.0,STOLEN,3479,"{'type': 'Point', 'coordinates': (-79.37031641, 43.71431091)}"
-3488,7702,GO-20209031923,THEFT UNDER,2020-12-13T00:00:00,2020,December,Sunday,13,348,14,2020-12-13T00:00:00,2020,December,Sunday,13,348,17,D53,Toronto,55,Thorncliffe Park (55),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM 4,MT,20,BGE,650.0,STOLEN,3596,"{'type': 'Point', 'coordinates': (-79.35650277, 43.71463968)}"
-3489,19379,GO-20201083205,THEFT UNDER - BICYCLE,2020-06-12T00:00:00,2020,June,Friday,12,164,16,2020-06-12T00:00:00,2020,June,Friday,12,164,17,D53,Toronto,56,Leaside-Bennington (56),"Apartment (Rooming House, Condo)",Apartment,NORTHROCK,,OT,0,REDBLK,500.0,STOLEN,3482,"{'type': 'Point', 'coordinates': (-79.36227733, 43.71408998)}"
-3490,19629,GO-20149004385,THEFT UNDER,2014-06-22T00:00:00,2014,June,Sunday,22,173,12,2014-06-24T00:00:00,2014,June,Tuesday,24,175,9,D53,Toronto,56,Leaside-Bennington (56),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SUBWAY,MT,24,GRY,300.0,STOLEN,3483,"{'type': 'Point', 'coordinates': (-79.37457452, 43.70427021)}"
-3491,19679,GO-20159002148,THEFT UNDER,2015-04-04T00:00:00,2015,April,Saturday,4,94,19,2015-04-21T00:00:00,2015,April,Tuesday,21,111,23,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,IN,,MT,21,BLU,300.0,STOLEN,3484,"{'type': 'Point', 'coordinates': (-79.36438406, 43.70937132)}"
-3492,19684,GO-2015934781,THEFT UNDER,2015-06-03T00:00:00,2015,June,Wednesday,3,154,18,2015-06-04T00:00:00,2015,June,Thursday,4,155,12,D53,Toronto,56,Leaside-Bennington (56),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BIANCHI,,MT,0,RED,2000.0,STOLEN,3485,"{'type': 'Point', 'coordinates': (-79.36718838, 43.713078640000006)}"
-3493,19700,GO-20159004997,THEFT UNDER,2015-07-23T00:00:00,2015,July,Thursday,23,204,21,2015-07-26T00:00:00,2015,July,Sunday,26,207,9,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,TO,27,,800.0,STOLEN,3486,"{'type': 'Point', 'coordinates': (-79.36793372, 43.71820575)}"
-3494,19723,GO-20159006558,THEFT UNDER,2015-08-28T00:00:00,2015,August,Friday,28,240,18,2015-08-31T00:00:00,2015,August,Monday,31,243,12,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,MT,12,BLK,500.0,STOLEN,3487,"{'type': 'Point', 'coordinates': (-79.37034905, 43.71769994)}"
-3495,19724,GO-20159006558,THEFT UNDER,2015-08-28T00:00:00,2015,August,Friday,28,240,18,2015-08-31T00:00:00,2015,August,Monday,31,243,12,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,,MT,12,BLU,500.0,STOLEN,3488,"{'type': 'Point', 'coordinates': (-79.37034905, 43.71769994)}"
-3496,22164,GO-20161146442,THEFT UNDER - BICYCLE,2016-06-26T00:00:00,2016,June,Sunday,26,178,12,2016-06-30T00:00:00,2016,June,Thursday,30,182,19,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,NAVIGATOR,OT,10,SIL,700.0,STOLEN,3489,"{'type': 'Point', 'coordinates': (-79.36611243, 43.71038600000001)}"
-3497,22173,GO-20161344638,THEFT UNDER - BICYCLE,2016-07-30T00:00:00,2016,July,Saturday,30,212,3,2016-07-31T00:00:00,2016,July,Sunday,31,213,11,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ROAM,2,RG,18,BLK,1400.0,STOLEN,3490,"{'type': 'Point', 'coordinates': (-79.36969269, 43.69609231)}"
-3498,22174,GO-20161344638,THEFT UNDER - BICYCLE,2016-07-30T00:00:00,2016,July,Saturday,30,212,3,2016-07-31T00:00:00,2016,July,Sunday,31,213,11,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FUSE,COMP,MT,18,YEL,2260.0,STOLEN,3491,"{'type': 'Point', 'coordinates': (-79.36969269, 43.69609231)}"
-3499,22189,GO-20161576391,THEFT UNDER - BICYCLE,2016-09-02T00:00:00,2016,September,Friday,2,246,10,2016-09-05T00:00:00,2016,September,Monday,5,249,19,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,,MT,21,PNKSIL,500.0,STOLEN,3492,"{'type': 'Point', 'coordinates': (-79.36291914, 43.70405429)}"
-3500,22190,GO-20161576391,THEFT UNDER - BICYCLE,2016-09-02T00:00:00,2016,September,Friday,2,246,10,2016-09-05T00:00:00,2016,September,Monday,5,249,19,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,,MT,21,SIL,500.0,STOLEN,3493,"{'type': 'Point', 'coordinates': (-79.36291914, 43.70405429)}"
-3501,22191,GO-20161576391,THEFT UNDER - BICYCLE,2016-09-02T00:00:00,2016,September,Friday,2,246,10,2016-09-05T00:00:00,2016,September,Monday,5,249,19,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,,MT,21,GLD,500.0,STOLEN,3494,"{'type': 'Point', 'coordinates': (-79.36291914, 43.70405429)}"
-3502,22192,GO-20161576391,THEFT UNDER - BICYCLE,2016-09-02T00:00:00,2016,September,Friday,2,246,10,2016-09-05T00:00:00,2016,September,Monday,5,249,19,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,,MT,21,RED,550.0,STOLEN,3495,"{'type': 'Point', 'coordinates': (-79.36291914, 43.70405429)}"
-3503,22226,GO-20179007946,THEFT UNDER - BICYCLE,2017-06-10T00:00:00,2017,June,Saturday,10,161,0,2017-06-12T00:00:00,2017,June,Monday,12,163,11,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,FUEL EX-6,MT,18,RED,3500.0,STOLEN,3496,"{'type': 'Point', 'coordinates': (-79.37597943, 43.69498688)}"
-3504,22227,GO-20179007946,THEFT UNDER - BICYCLE,2017-06-10T00:00:00,2017,June,Saturday,10,161,0,2017-06-12T00:00:00,2017,June,Monday,12,163,11,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,MULTITRACK HYBR,RG,12,BLU,600.0,STOLEN,3497,"{'type': 'Point', 'coordinates': (-79.37597943, 43.69498688)}"
-3505,22245,GO-20179012454,THEFT UNDER - BICYCLE,2017-08-14T00:00:00,2017,August,Monday,14,226,20,2017-08-15T00:00:00,2017,August,Tuesday,15,227,11,D53,Toronto,56,Leaside-Bennington (56),"Apartment (Rooming House, Condo)",Apartment,SU,,MT,21,RED,600.0,STOLEN,3498,"{'type': 'Point', 'coordinates': (-79.37280591, 43.69956506)}"
-3506,22284,GO-20189012650,THEFT UNDER,2018-04-19T00:00:00,2018,April,Thursday,19,109,11,2018-04-24T00:00:00,2018,April,Tuesday,24,114,11,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,RS 51,RC,21,BLK,3800.0,STOLEN,3499,"{'type': 'Point', 'coordinates': (-79.36753319, 43.71393867)}"
-3507,22294,GO-20189018448,THEFT UNDER - BICYCLE,2018-06-11T00:00:00,2018,June,Monday,11,162,2,2018-06-12T00:00:00,2018,June,Tuesday,12,163,15,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,OT,10,WHI,300.0,STOLEN,3500,"{'type': 'Point', 'coordinates': (-79.36426308, 43.70558612)}"
-3508,22313,GO-20189023488,THEFT UNDER - BICYCLE,2018-07-22T00:00:00,2018,July,Sunday,22,203,18,2018-07-23T00:00:00,2018,July,Monday,23,204,6,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,REVEL 2,MT,21,BLU,550.0,STOLEN,3501,"{'type': 'Point', 'coordinates': (-79.36972707, 43.70494438)}"
-3509,22343,GO-20189032141,THEFT UNDER - BICYCLE,2018-09-27T00:00:00,2018,September,Thursday,27,270,7,2018-09-27T00:00:00,2018,September,Thursday,27,270,17,D53,Toronto,56,Leaside-Bennington (56),Schools During Supervised Activity,Educational,GI,,RG,27,,600.0,STOLEN,3502,"{'type': 'Point', 'coordinates': (-79.37111606, 43.70490545)}"
-3510,19985,GO-20181881196,THEFT OF EBIKE UNDER $5000,2018-10-11T00:00:00,2018,October,Thursday,11,284,8,2018-10-11T00:00:00,2018,October,Thursday,11,284,18,D33,Toronto,53,Henry Farm (53),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,DAYMACK,ROUGE,EL,0,BLKRED,2800.0,STOLEN,3503,"{'type': 'Point', 'coordinates': (-79.32638119, 43.77359642)}"
-3511,2350,GO-20189015583,THEFT UNDER - BICYCLE,2018-05-19T00:00:00,2018,May,Saturday,19,139,18,2018-05-20T00:00:00,2018,May,Sunday,20,140,0,D33,Toronto,48,Hillcrest Village (48),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,UK,,RG,1,RED,0.0,STOLEN,3504,"{'type': 'Point', 'coordinates': (-79.35182876, 43.79705548)}"
-3512,7882,GO-20142019167,THEFT UNDER,2014-04-19T00:00:00,2014,April,Saturday,19,109,19,2014-05-05T00:00:00,2014,May,Monday,5,125,12,D33,Toronto,52,Bayview Village (52),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SCHWINN,SUSPEND,MT,21,PLE,237.0,STOLEN,3505,"{'type': 'Point', 'coordinates': (-79.37088107, 43.76947723)}"
-3513,20104,GO-20201323363,THEFT UNDER - BICYCLE,2020-07-16T00:00:00,2020,July,Thursday,16,198,20,2020-07-17T00:00:00,2020,July,Friday,17,199,20,D33,Toronto,53,Henry Farm (53),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,DAYBAK,EAGLE DELUXE,EL,3,BLK,3500.0,STOLEN,3506,"{'type': 'Point', 'coordinates': (-79.33619472000001, 43.77289559)}"
-3514,8419,GO-20149004978,THEFT UNDER,2014-07-11T00:00:00,2014,July,Friday,11,192,5,2014-07-14T00:00:00,2014,July,Monday,14,195,12,D33,Toronto,52,Bayview Village (52),Ttc Subway Station,Transit,NO,STORM,MT,21,BLK,562.0,STOLEN,3507,"{'type': 'Point', 'coordinates': (-79.3673214, 43.77085025)}"
-3515,8639,GO-20149005810,THEFT UNDER,2014-08-10T00:00:00,2014,August,Sunday,10,222,11,2014-08-11T00:00:00,2014,August,Monday,11,223,1,D33,Toronto,52,Bayview Village (52),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,CC,EXCELS,OT,21,BLU,250.0,STOLEN,3508,"{'type': 'Point', 'coordinates': (-79.38801507, 43.76658916)}"
-3516,20201,GO-20179010140,THEFT UNDER,2017-07-13T00:00:00,2017,July,Thursday,13,194,21,2017-07-14T00:00:00,2017,July,Friday,14,195,8,D33,Toronto,53,Henry Farm (53),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,MT,15,WHI,900.0,STOLEN,3509,"{'type': 'Point', 'coordinates': (-79.34899781, 43.76837833)}"
-3517,2521,GO-20181053551,B&E,2018-06-10T00:00:00,2018,June,Sunday,10,161,0,2018-06-10T00:00:00,2018,June,Sunday,10,161,20,D33,Toronto,48,Hillcrest Village (48),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,ALPHA,MT,21,BLKGRN,319.0,UNKNOWN,3510,"{'type': 'Point', 'coordinates': (-79.3657381, 43.80836564)}"
-3518,9010,GO-20143029556,THEFT UNDER,2014-09-25T00:00:00,2014,September,Thursday,25,268,12,2014-10-02T00:00:00,2014,October,Thursday,2,275,19,D33,Toronto,52,Bayview Village (52),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,,MT,21,BLKRED,1100.0,STOLEN,3511,"{'type': 'Point', 'coordinates': (-79.38309871, 43.76780368)}"
-3519,20444,GO-20151725778,THEFT UNDER,2015-10-06T00:00:00,2015,October,Tuesday,6,279,15,2015-10-06T00:00:00,2015,October,Tuesday,6,279,16,D33,Toronto,53,Henry Farm (53),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,BLACK,,OT,10,BLK,380.0,STOLEN,3512,"{'type': 'Point', 'coordinates': (-79.34116618, 43.77318589)}"
-3520,9850,GO-20151054849,THEFT UNDER,2015-06-19T00:00:00,2015,June,Friday,19,170,21,2015-06-23T00:00:00,2015,June,Tuesday,23,174,8,D33,Toronto,52,Bayview Village (52),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,21,BRN,,STOLEN,3514,"{'type': 'Point', 'coordinates': (-79.38734638, 43.77123819)}"
-3521,20529,GO-20169010175,THEFT UNDER - BICYCLE,2016-09-08T00:00:00,2016,September,Thursday,8,252,8,2016-09-09T00:00:00,2016,September,Friday,9,253,9,D33,Toronto,53,Henry Farm (53),"Apartment (Rooming House, Condo)",Apartment,RA,MATTERHORN,MT,18,OTH,200.0,STOLEN,3515,"{'type': 'Point', 'coordinates': (-79.34368106, 43.77583447)}"
-3522,3087,GO-20189025236,THEFT UNDER - BICYCLE,2018-08-03T00:00:00,2018,August,Friday,3,215,21,2018-08-06T00:00:00,2018,August,Monday,6,218,2,D33,Toronto,48,Hillcrest Village (48),Universities / Colleges,Educational,GT,AGGRESSOR,MT,7,BLU,499.0,STOLEN,3516,"{'type': 'Point', 'coordinates': (-79.35469483, 43.79266025)}"
-3523,9917,GO-20151107369,B&E,2015-06-30T00:00:00,2015,June,Tuesday,30,181,14,2015-07-01T00:00:00,2015,July,Wednesday,1,182,14,D33,Toronto,52,Bayview Village (52),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DAYMAK,X18,OT,0,GRYGRN,350.0,STOLEN,3517,"{'type': 'Point', 'coordinates': (-79.36634407, 43.77617067)}"
-3524,23348,GO-20201501523,THEFT UNDER - BICYCLE,2020-08-09T00:00:00,2020,August,Sunday,9,222,8,2020-08-11T00:00:00,2020,August,Tuesday,11,224,11,D33,Toronto,53,Henry Farm (53),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,RUBAIX,OT,10,BLK,3000.0,STOLEN,3518,"{'type': 'Point', 'coordinates': (-79.32865574, 43.77413045)}"
-3525,3463,GO-20181702336,B&E,2018-09-13T00:00:00,2018,September,Thursday,13,256,18,2018-09-14T00:00:00,2018,September,Friday,14,257,7,D33,Toronto,48,Hillcrest Village (48),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,REVOLT 1,TO,22,BLK,1400.0,STOLEN,3519,"{'type': 'Point', 'coordinates': (-79.36056762, 43.79265331)}"
-3526,9919,GO-20159004088,THEFT UNDER,2015-07-01T00:00:00,2015,July,Wednesday,1,182,12,2015-07-01T00:00:00,2015,July,Wednesday,1,182,14,D33,Toronto,52,Bayview Village (52),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,10,WHI,300.0,STOLEN,3520,"{'type': 'Point', 'coordinates': (-79.36667571, 43.78152038)}"
-3527,23361,GO-20209026429,THEFT UNDER - BICYCLE,2020-10-13T00:00:00,2020,October,Tuesday,13,287,4,2020-10-14T00:00:00,2020,October,Wednesday,14,288,16,D33,Toronto,53,Henry Farm (53),"Apartment (Rooming House, Condo)",Apartment,OT,,BM,1,BLK,250.0,STOLEN,3521,"{'type': 'Point', 'coordinates': (-79.34331851, 43.77501197)}"
-3528,136,GO-2017414307,THEFT OF EBIKE UNDER $5000,2017-03-01T00:00:00,2017,March,Wednesday,1,60,16,2017-03-07T00:00:00,2017,March,Tuesday,7,66,10,D54,Toronto,54,OConnor-Parkview (54),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,,EL,1,RED,,STOLEN,3522,"{'type': 'Point', 'coordinates': (-79.30891403, 43.71052522)}"
-3529,373,GO-20179006163,THEFT UNDER,2017-05-10T00:00:00,2017,May,Wednesday,10,130,12,2017-05-11T00:00:00,2017,May,Thursday,11,131,19,D54,Toronto,54,OConnor-Parkview (54),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,MT,10,WHI,400.0,STOLEN,3523,"{'type': 'Point', 'coordinates': (-79.31279578, 43.7053964)}"
-3530,515,GO-2017972189,THEFT UNDER - BICYCLE,2017-05-26T00:00:00,2017,May,Friday,26,146,20,2017-06-01T00:00:00,2017,June,Thursday,1,152,20,D54,Toronto,54,OConnor-Parkview (54),"Apartment (Rooming House, Condo)",Apartment,CCM,NITRO,MT,18,BLK,200.0,STOLEN,3524,"{'type': 'Point', 'coordinates': (-79.30073605, 43.70808541)}"
-3531,754,GO-20179009205,THEFT UNDER - BICYCLE,2017-06-30T00:00:00,2017,June,Friday,30,181,1,2017-06-30T00:00:00,2017,June,Friday,30,181,11,D54,Toronto,54,OConnor-Parkview (54),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,GRINDER,MT,18,BLU,600.0,STOLEN,3525,"{'type': 'Point', 'coordinates': (-79.30260451, 43.70767009)}"
-3532,1369,GO-20179014488,THEFT UNDER,2017-08-02T00:00:00,2017,August,Wednesday,2,214,16,2017-09-11T00:00:00,2017,September,Monday,11,254,17,D54,Toronto,54,OConnor-Parkview (54),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,OATH,BM,1,DBL,160.0,STOLEN,3526,"{'type': 'Point', 'coordinates': (-79.30826146, 43.70722065)}"
-3533,1392,GO-20179014657,THEFT UNDER - BICYCLE,2017-09-13T00:00:00,2017,September,Wednesday,13,256,11,2017-09-13T00:00:00,2017,September,Wednesday,13,256,15,D54,Toronto,54,OConnor-Parkview (54),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,CC,,MT,7,RED,650.0,STOLEN,3527,"{'type': 'Point', 'coordinates': (-79.2968997, 43.7013288)}"
-3534,2349,GO-2018908248,THEFT UNDER - BICYCLE,2018-05-16T00:00:00,2018,May,Wednesday,16,136,13,2018-05-20T00:00:00,2018,May,Sunday,20,140,10,D54,Toronto,54,OConnor-Parkview (54),"Apartment (Rooming House, Condo)",Apartment,OTHER,NISHIKI,RC,7,YEL,450.0,STOLEN,3528,"{'type': 'Point', 'coordinates': (-79.29910421, 43.6991316)}"
-3535,3172,GO-20189026041,THEFT UNDER - BICYCLE,2018-07-29T00:00:00,2018,July,Sunday,29,210,15,2018-08-12T00:00:00,2018,August,Sunday,12,224,10,D54,Toronto,54,OConnor-Parkview (54),Convenience Stores,Commercial,CC,,MT,21,BLK,200.0,STOLEN,3529,"{'type': 'Point', 'coordinates': (-79.29568112, 43.70819186)}"
-3536,3935,GO-20181311831,THEFT OVER - BICYCLE,2018-07-16T00:00:00,2018,July,Monday,16,197,14,2018-07-16T00:00:00,2018,July,Monday,16,197,14,D54,Toronto,54,OConnor-Parkview (54),"Police / Courts (Parole Board, Probation Office)",Other,OTHER,NORTHROCK,MT,21,WHI,,RECOVERED,3530,"{'type': 'Point', 'coordinates': (-79.31058473, 43.71380448)}"
-3537,4147,GO-2019630664,THEFT OF EBIKE UNDER $5000,2019-04-07T00:00:00,2019,April,Sunday,7,97,23,2019-04-08T00:00:00,2019,April,Monday,8,98,9,D54,Toronto,54,OConnor-Parkview (54),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,MAX,EL,0,BLKRED,2000.0,STOLEN,3531,"{'type': 'Point', 'coordinates': (-79.30709146, 43.7066561)}"
-3538,4644,GO-20199020635,THEFT UNDER,2019-07-01T00:00:00,2019,July,Monday,1,182,3,2019-07-01T00:00:00,2019,July,Monday,1,182,9,D54,Toronto,54,OConnor-Parkview (54),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,GLOBE ROLL 01,RG,1,BLK,0.0,STOLEN,3532,"{'type': 'Point', 'coordinates': (-79.30183619, 43.70589097)}"
-3539,4824,GO-20191368889,THEFT UNDER - BICYCLE,2019-07-12T00:00:00,2019,July,Friday,12,193,16,2019-07-21T00:00:00,2019,July,Sunday,21,202,12,D54,Toronto,54,OConnor-Parkview (54),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SUPERCYCLE,PHANTOM 29,MT,21,BLKRED,200.0,STOLEN,3533,"{'type': 'Point', 'coordinates': (-79.29694018, 43.70045663)}"
-3540,6691,GO-20209018128,THEFT UNDER,2020-07-20T00:00:00,2020,July,Monday,20,202,17,2020-07-22T00:00:00,2020,July,Wednesday,22,204,5,D54,Toronto,54,OConnor-Parkview (54),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,MT,5,PLE,110.0,STOLEN,3534,"{'type': 'Point', 'coordinates': (-79.2972507, 43.70221963)}"
-3541,7305,GO-20201790219,THEFT UNDER,2020-09-20T00:00:00,2020,September,Sunday,20,264,11,2020-09-21T00:00:00,2020,September,Monday,21,265,12,D54,Toronto,54,OConnor-Parkview (54),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,VIPER,MAX,EL,1,GRY,7000.0,STOLEN,3535,"{'type': 'Point', 'coordinates': (-79.30700383, 43.7111251)}"
-3542,7400,GO-20209025245,THEFT UNDER,2020-10-01T00:00:00,2020,October,Thursday,1,275,12,2020-10-02T00:00:00,2020,October,Friday,2,276,11,D54,Toronto,54,OConnor-Parkview (54),"Apartment (Rooming House, Condo)",Apartment,IH,,MT,24,,400.0,STOLEN,3536,"{'type': 'Point', 'coordinates': (-79.29827925, 43.70864368)}"
-3543,22373,GO-20199014717,THEFT UNDER - BICYCLE,2019-05-11T00:00:00,2019,May,Saturday,11,131,16,2019-05-11T00:00:00,2019,May,Saturday,11,131,18,D53,Toronto,56,Leaside-Bennington (56),Schools During Supervised Activity,Educational,GI,ROAM 2 DISK (20,MT,9,BLK,900.0,STOLEN,3537,"{'type': 'Point', 'coordinates': (-79.37353552000002, 43.71180147)}"
-3544,7519,GO-20201981245,THEFT UNDER - BICYCLE,2020-10-11T00:00:00,2020,October,Sunday,11,285,9,2020-10-19T00:00:00,2020,October,Monday,19,293,5,D54,Toronto,54,OConnor-Parkview (54),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,AGGRESSOR,MT,21,BLK,600.0,STOLEN,3538,"{'type': 'Point', 'coordinates': (-79.31049911, 43.70590119)}"
-3545,7692,GO-20202302211,B&E,2020-12-06T00:00:00,2020,December,Sunday,6,341,3,2020-12-06T00:00:00,2020,December,Sunday,6,341,10,D54,Toronto,54,OConnor-Parkview (54),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,ROAM,OT,9,BLK,,STOLEN,3539,"{'type': 'Point', 'coordinates': (-79.30474515000002, 43.71047767)}"
-3546,9269,GO-20159000369,THEFT UNDER,2015-01-19T00:00:00,2015,January,Monday,19,19,21,2015-01-20T00:00:00,2015,January,Tuesday,20,20,9,D54,Toronto,54,OConnor-Parkview (54),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,7000,RG,18,SIL,500.0,STOLEN,3540,"{'type': 'Point', 'coordinates': (-79.30320325, 43.7075406)}"
-3547,9890,GO-20151078493,THEFT UNDER,2015-06-26T00:00:00,2015,June,Friday,26,177,19,2015-06-26T00:00:00,2015,June,Friday,26,177,19,D54,Toronto,54,OConnor-Parkview (54),"Open Areas (Lakes, Parks, Rivers)",Outside,SPECIALIZED,,MT,0,ONG,100.0,STOLEN,3541,"{'type': 'Point', 'coordinates': (-79.30660159, 43.70838352)}"
-3548,9891,GO-20151078493,THEFT UNDER,2015-06-26T00:00:00,2015,June,Friday,26,177,19,2015-06-26T00:00:00,2015,June,Friday,26,177,19,D54,Toronto,54,OConnor-Parkview (54),"Open Areas (Lakes, Parks, Rivers)",Outside,OTHER,,RG,7,RED,100.0,STOLEN,3542,"{'type': 'Point', 'coordinates': (-79.30660159, 43.70838352)}"
-3549,9901,GO-20151082864,THEFT UNDER,2015-06-26T00:00:00,2015,June,Friday,26,177,19,2015-06-27T00:00:00,2015,June,Saturday,27,178,15,D54,Toronto,54,OConnor-Parkview (54),"Open Areas (Lakes, Parks, Rivers)",Outside,SUPERCYCLE,,BM,0,BLU,250.0,STOLEN,3543,"{'type': 'Point', 'coordinates': (-79.33435458, 43.70999672)}"
-3550,9947,GO-20159004201,THEFT FROM MOTOR VEHICLE UNDER,2015-07-04T00:00:00,2015,July,Saturday,4,185,21,2015-07-05T00:00:00,2015,July,Sunday,5,186,18,D54,Toronto,54,OConnor-Parkview (54),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MA,MOUNTAIN BIKE,MT,15,WHI,3700.0,STOLEN,3544,"{'type': 'Point', 'coordinates': (-79.2972507, 43.70221963)}"
-3551,10129,GO-20151299102,THEFT UNDER,2015-07-29T00:00:00,2015,July,Wednesday,29,210,20,2015-07-29T00:00:00,2015,July,Wednesday,29,210,20,D54,Toronto,54,OConnor-Parkview (54),Schools During Un-Supervised Activity,Educational,NORCO,,MT,0,BLK,100.0,STOLEN,3545,"{'type': 'Point', 'coordinates': (-79.30660159, 43.70838352)}"
-3552,10941,GO-2016129747,THEFT UNDER,2016-01-21T00:00:00,2016,January,Thursday,21,21,19,2016-01-22T00:00:00,2016,January,Friday,22,22,12,D54,Toronto,54,OConnor-Parkview (54),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,HARD ROCK,MT,18,BLKRED,600.0,STOLEN,3547,"{'type': 'Point', 'coordinates': (-79.30073605, 43.70808541)}"
-3553,11010,GO-2016326668,THEFT UNDER,2016-02-17T00:00:00,2016,February,Wednesday,17,48,18,2016-02-24T00:00:00,2016,February,Wednesday,24,55,10,D54,Toronto,54,OConnor-Parkview (54),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,LINUS,OT,1,BLK,600.0,STOLEN,3548,"{'type': 'Point', 'coordinates': (-79.29362718, 43.7034645)}"
-3554,11115,GO-2016590160,THEFT UNDER - BICYCLE,2016-04-02T00:00:00,2016,April,Saturday,2,93,12,2016-04-07T00:00:00,2016,April,Thursday,7,98,13,D54,Toronto,54,OConnor-Parkview (54),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EAGLE,,EL,1,BLK,2000.0,STOLEN,3549,"{'type': 'Point', 'coordinates': (-79.29614926, 43.70927721)}"
-3555,11713,GO-20161169300,THEFT UNDER - BICYCLE,2016-07-04T00:00:00,2016,July,Monday,4,186,15,2016-07-04T00:00:00,2016,July,Monday,4,186,15,D54,Toronto,54,OConnor-Parkview (54),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CCM,,MT,7,YELBLK,300.0,STOLEN,3550,"{'type': 'Point', 'coordinates': (-79.2968997, 43.7013288)}"
-3556,12311,GO-20169010224,THEFT UNDER - BICYCLE,2016-08-10T00:00:00,2016,August,Wednesday,10,223,12,2016-09-10T00:00:00,2016,September,Saturday,10,254,12,D54,Toronto,54,OConnor-Parkview (54),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,DOMANE 4.0,RC,21,,2699.0,STOLEN,3551,"{'type': 'Point', 'coordinates': (-79.32548775, 43.70582174)}"
-3557,12886,GO-20181562833,POSSESSION PROPERTY OBC UNDER,2018-08-24T00:00:00,2018,August,Friday,24,236,3,2018-08-24T00:00:00,2018,August,Friday,24,236,9,D54,Toronto,54,OConnor-Parkview (54),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MIYATA,MTS,RC,10,,100.0,STOLEN,3552,"{'type': 'Point', 'coordinates': (-79.30496821, 43.70049288)}"
-3558,12967,GO-20199026875,THEFT UNDER,2019-06-17T00:00:00,2019,June,Monday,17,168,17,2019-08-19T00:00:00,2019,August,Monday,19,231,20,D54,Toronto,54,OConnor-Parkview (54),"Apartment (Rooming House, Condo)",Apartment,TR,8.4 DS,OT,9,GRY,1000.0,STOLEN,3553,"{'type': 'Point', 'coordinates': (-79.2968997, 43.7013288)}"
-3559,14118,GO-20169013114,THEFT UNDER - BICYCLE,2016-11-06T00:00:00,2016,November,Sunday,6,311,19,2016-11-07T00:00:00,2016,November,Monday,7,312,17,D54,Toronto,54,OConnor-Parkview (54),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,PUGSLEY,MT,20,BLK,2500.0,STOLEN,3554,"{'type': 'Point', 'coordinates': (-79.30628929, 43.71204203)}"
-3560,15872,GO-20142283683,THEFT UNDER,2014-06-08T00:00:00,2014,June,Sunday,8,159,16,2014-06-13T00:00:00,2014,June,Friday,13,164,17,D54,Toronto,54,OConnor-Parkview (54),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,STINGER,EL,5,BLKWHI,800.0,STOLEN,3555,"{'type': 'Point', 'coordinates': (-79.30700383, 43.7111251)}"
-3561,15891,GO-20142561479,THEFT UNDER,2014-07-24T00:00:00,2014,July,Thursday,24,205,0,2014-07-24T00:00:00,2014,July,Thursday,24,205,12,D54,Toronto,54,OConnor-Parkview (54),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,BEACH CRUISER,OT,4,BLK,4000.0,STOLEN,3556,"{'type': 'Point', 'coordinates': (-79.30061394, 43.71322494)}"
-3562,15978,GO-20151535082,THEFT UNDER,2015-08-09T00:00:00,2015,August,Sunday,9,221,21,2015-09-05T00:00:00,2015,September,Saturday,5,248,19,D54,Toronto,54,OConnor-Parkview (54),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GENESIS,STEALTH,RG,21,BLKSIL,350.0,STOLEN,3557,"{'type': 'Point', 'coordinates': (-79.31279578, 43.7053964)}"
-3563,15991,GO-20151836543,ROBBERY - MUGGING,2015-10-25T00:00:00,2015,October,Sunday,25,298,16,2015-10-25T00:00:00,2015,October,Sunday,25,298,16,D54,Toronto,54,OConnor-Parkview (54),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,SLAMMER,BM,1,GRY,300.0,STOLEN,3558,"{'type': 'Point', 'coordinates': (-79.29694018, 43.70045663)}"
-3564,16073,GO-20201705452,B&E,2020-09-04T00:00:00,2020,September,Friday,4,248,20,2020-09-09T00:00:00,2020,September,Wednesday,9,253,14,D54,Toronto,54,OConnor-Parkview (54),"Construction Site (Warehouse, Trailer, Shed)",Commercial,SCHWINN,,MT,21,,500.0,STOLEN,3559,"{'type': 'Point', 'coordinates': (-79.30427227, 43.70174962)}"
-3565,18827,GO-20141778180,THEFT UNDER,2014-03-27T00:00:00,2014,March,Thursday,27,86,6,2014-03-27T00:00:00,2014,March,Thursday,27,86,15,D54,Toronto,54,OConnor-Parkview (54),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,LITHIUM 20,EL,3,BLK,2000.0,STOLEN,3560,"{'type': 'Point', 'coordinates': (-79.29694018, 43.70045663)}"
-3566,18882,GO-20159002085,THEFT UNDER,2015-04-01T00:00:00,2015,April,Wednesday,1,91,11,2015-04-20T00:00:00,2015,April,Monday,20,110,12,D54,Toronto,54,OConnor-Parkview (54),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,RG,1,,250.0,STOLEN,3561,"{'type': 'Point', 'coordinates': (-79.30136032000001, 43.70478048)}"
-3567,18999,GO-20169007281,THEFT UNDER,2016-07-01T00:00:00,2016,July,Friday,1,183,13,2016-07-16T00:00:00,2016,July,Saturday,16,198,18,D54,Toronto,54,OConnor-Parkview (54),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,10,BLU,230.0,STOLEN,3562,"{'type': 'Point', 'coordinates': (-79.31931873, 43.70428173)}"
-3568,19145,GO-2018474399,THEFT OVER,2017-08-15T00:00:00,2017,August,Tuesday,15,227,12,2018-03-15T00:00:00,2018,March,Thursday,15,74,14,D54,Toronto,54,OConnor-Parkview (54),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,DAYMAK,,SC,5,,,STOLEN,3563,"{'type': 'Point', 'coordinates': (-79.31696646, 43.70894517)}"
-3569,19196,GO-20181643876,B&E,2018-09-05T00:00:00,2018,September,Wednesday,5,248,1,2018-09-05T00:00:00,2018,September,Wednesday,5,248,14,D54,Toronto,54,OConnor-Parkview (54),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,DAYMAK,,EL,0,BLU,2000.0,STOLEN,3564,"{'type': 'Point', 'coordinates': (-79.31696646, 43.70894517)}"
-3570,19197,GO-20181643876,B&E,2018-09-05T00:00:00,2018,September,Wednesday,5,248,1,2018-09-05T00:00:00,2018,September,Wednesday,5,248,14,D54,Toronto,54,OConnor-Parkview (54),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,DAYMAK,,EL,0,BLU,2000.0,STOLEN,3565,"{'type': 'Point', 'coordinates': (-79.31696646, 43.70894517)}"
-3571,19288,GO-20199029889,THEFT UNDER,2019-09-10T00:00:00,2019,September,Tuesday,10,253,17,2019-09-13T00:00:00,2019,September,Friday,13,256,13,D54,Toronto,54,OConnor-Parkview (54),"Apartment (Rooming House, Condo)",Apartment,CA,,OT,21,BLK,1100.0,STOLEN,3566,"{'type': 'Point', 'coordinates': (-79.29910421, 43.6991316)}"
-3572,19645,GO-20142661541,THEFT UNDER,2014-08-03T00:00:00,2014,August,Sunday,3,215,0,2014-08-08T00:00:00,2014,August,Friday,8,220,15,D54,Toronto,54,OConnor-Parkview (54),"Apartment (Rooming House, Condo)",Apartment,RALEIGH,,MT,18,,200.0,STOLEN,3567,"{'type': 'Point', 'coordinates': (-79.30260451, 43.70767009)}"
-3573,19663,GO-20143101946,PROPERTY - FOUND,2014-07-17T00:00:00,2014,July,Thursday,17,198,13,2014-07-17T00:00:00,2014,July,Thursday,17,198,13,D54,Toronto,54,OConnor-Parkview (54),"Police / Courts (Parole Board, Probation Office)",Other,DIABLE,,EL,0,YEL,500.0,UNKNOWN,3568,"{'type': 'Point', 'coordinates': (-79.31058473, 43.71380448)}"
-3574,22253,GO-20179014073,THEFT UNDER - BICYCLE,2017-09-05T00:00:00,2017,September,Tuesday,5,248,13,2017-09-05T00:00:00,2017,September,Tuesday,5,248,20,D54,Toronto,54,OConnor-Parkview (54),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,BONTRAGER,TO,5,SIL,550.0,STOLEN,3569,"{'type': 'Point', 'coordinates': (-79.30406677, 43.71481064000001)}"
-3575,22296,GO-20181105924,THEFT UNDER - BICYCLE,2018-06-17T00:00:00,2018,June,Sunday,17,168,12,2018-06-18T00:00:00,2018,June,Monday,18,169,9,D54,Toronto,54,OConnor-Parkview (54),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,GTX-2,OT,21,PLE,350.0,STOLEN,3570,"{'type': 'Point', 'coordinates': (-79.30793036, 43.70647749)}"
-3576,22852,GO-20142493412,B&E,2014-07-11T00:00:00,2014,July,Friday,11,192,19,2014-07-14T00:00:00,2014,July,Monday,14,195,7,D54,Toronto,54,OConnor-Parkview (54),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,BMW CRUZE,EL,35,WHIBLK,3500.0,STOLEN,3571,"{'type': 'Point', 'coordinates': (-79.29943495, 43.702865)}"
-3577,22853,GO-20142493412,B&E,2014-07-11T00:00:00,2014,July,Friday,11,192,19,2014-07-14T00:00:00,2014,July,Monday,14,195,7,D54,Toronto,54,OConnor-Parkview (54),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,,MT,24,ONG,400.0,STOLEN,3572,"{'type': 'Point', 'coordinates': (-79.29943495, 43.702865)}"
-3578,22854,GO-20142488482,THEFT UNDER,2014-07-05T00:00:00,2014,July,Saturday,5,186,23,2014-07-13T00:00:00,2014,July,Sunday,13,194,11,D54,Toronto,54,OConnor-Parkview (54),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,RG,5,GRY,,STOLEN,3573,"{'type': 'Point', 'coordinates': (-79.32022259000001, 43.70607892)}"
-3579,22861,GO-20142720742,THEFT UNDER,2014-08-17T00:00:00,2014,August,Sunday,17,229,14,2014-08-17T00:00:00,2014,August,Sunday,17,229,14,D54,Toronto,54,OConnor-Parkview (54),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,,MT,18,,,STOLEN,3574,"{'type': 'Point', 'coordinates': (-79.30320325, 43.7075406)}"
-3580,22909,GO-20151069780,THEFT UNDER,2015-06-24T00:00:00,2015,June,Wednesday,24,175,21,2015-06-25T00:00:00,2015,June,Thursday,25,176,11,D54,Toronto,54,OConnor-Parkview (54),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,BISON,EL,1,BLKBGE,2000.0,STOLEN,3575,"{'type': 'Point', 'coordinates': (-79.29703128, 43.69824602)}"
-3581,25502,GO-20173007345,THEFT OF MOTOR VEHICLE,2017-11-15T00:00:00,2017,November,Wednesday,15,319,20,2017-11-16T00:00:00,2017,November,Thursday,16,320,7,D54,Toronto,54,OConnor-Parkview (54),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,EAGLE,EL,1,GRN,900.0,STOLEN,3576,"{'type': 'Point', 'coordinates': (-79.29524292, 43.7072244)}"
-3582,25568,GO-20189023127,THEFT UNDER - BICYCLE,2018-07-18T00:00:00,2018,July,Wednesday,18,199,23,2018-07-19T00:00:00,2018,July,Thursday,19,200,19,D54,Toronto,54,OConnor-Parkview (54),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MO,"26"""" MNGOOSE FRO",MT,7,RED,150.0,STOLEN,3577,"{'type': 'Point', 'coordinates': (-79.30424293, 43.70105817)}"
-3583,42,GO-20179000403,THEFT UNDER - BICYCLE,2017-01-02T00:00:00,2017,January,Monday,2,2,16,2017-01-09T00:00:00,2017,January,Monday,9,9,17,D53,Toronto,55,Thorncliffe Park (55),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,TRAIL 7 2015,MT,16,BLK,734.0,STOLEN,3578,"{'type': 'Point', 'coordinates': (-79.35617968, 43.71352292)}"
-3584,292,GO-2017739053,THEFT UNDER - BICYCLE,2017-04-26T00:00:00,2017,April,Wednesday,26,116,6,2017-04-27T00:00:00,2017,April,Thursday,27,117,13,D53,Toronto,55,Thorncliffe Park (55),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,RC,8,GRN,300.0,STOLEN,3580,"{'type': 'Point', 'coordinates': (-79.34134662, 43.70801788000001)}"
-3585,463,GO-2017917831,THEFT UNDER - BICYCLE,2017-05-24T00:00:00,2017,May,Wednesday,24,144,19,2017-05-24T00:00:00,2017,May,Wednesday,24,144,19,D53,Toronto,55,Thorncliffe Park (55),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,KARAKORAM,MT,10,BLKGRN,550.0,STOLEN,3581,"{'type': 'Point', 'coordinates': (-79.36348605, 43.71036039)}"
-3586,729,GO-20179009030,THEFT UNDER - BICYCLE,2017-06-25T00:00:00,2017,June,Sunday,25,176,0,2017-06-28T00:00:00,2017,June,Wednesday,28,179,1,D53,Toronto,55,Thorncliffe Park (55),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,SIRRUS SPORT,RC,27,RED,600.0,STOLEN,3582,"{'type': 'Point', 'coordinates': (-79.34658826, 43.70321193)}"
-3587,1046,GO-20179011603,THEFT UNDER - BICYCLE,2017-08-01T00:00:00,2017,August,Tuesday,1,213,15,2017-08-03T00:00:00,2017,August,Thursday,3,215,11,D53,Toronto,55,Thorncliffe Park (55),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KO,HAHANNA,MT,18,RED,100.0,STOLEN,3583,"{'type': 'Point', 'coordinates': (-79.36368726000002, 43.71089654)}"
-3588,1178,GO-20171497669,B&E,2017-08-18T00:00:00,2017,August,Friday,18,230,4,2017-08-19T00:00:00,2017,August,Saturday,19,231,6,D53,Toronto,55,Thorncliffe Park (55),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,ALLEZ TIAGRA,RC,21,WHIBLK,1500.0,STOLEN,3584,"{'type': 'Point', 'coordinates': (-79.35905752, 43.71287988)}"
-3589,2341,GO-20189015341,THEFT UNDER - BICYCLE,2018-05-17T00:00:00,2018,May,Thursday,17,137,18,2018-05-17T00:00:00,2018,May,Thursday,17,137,19,D53,Toronto,55,Thorncliffe Park (55),Unknown,Other,SU,,MT,6,BLK,0.0,STOLEN,3585,"{'type': 'Point', 'coordinates': (-79.34658826, 43.70321193)}"
-3590,4262,GO-2019844720,THEFT UNDER,2019-05-09T00:00:00,2019,May,Thursday,9,129,17,2019-05-09T00:00:00,2019,May,Thursday,9,129,18,D53,Toronto,55,Thorncliffe Park (55),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,MT,21,WHIBLU,750.0,STOLEN,3586,"{'type': 'Point', 'coordinates': (-79.364762, 43.71356637)}"
-3591,4515,GO-20199018924,THEFT UNDER - BICYCLE,2019-06-14T00:00:00,2019,June,Friday,14,165,14,2019-06-17T00:00:00,2019,June,Monday,17,168,13,D53,Toronto,55,Thorncliffe Park (55),Convenience Stores,Commercial,OT,CTM,MT,21,GRY,450.0,STOLEN,3587,"{'type': 'Point', 'coordinates': (-79.34658826, 43.70321193)}"
-3592,4723,GO-20199021651,THEFT UNDER - BICYCLE,2019-07-09T00:00:00,2019,July,Tuesday,9,190,8,2019-07-09T00:00:00,2019,July,Tuesday,9,190,20,D53,Toronto,55,Thorncliffe Park (55),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CC,,MT,5,BLK,0.0,STOLEN,3588,"{'type': 'Point', 'coordinates': (-79.34658826, 43.70321193)}"
-3593,4742,GO-20199021785,THEFT UNDER - BICYCLE,2019-07-10T00:00:00,2019,July,Wednesday,10,191,8,2019-07-10T00:00:00,2019,July,Wednesday,10,191,21,D53,Toronto,55,Thorncliffe Park (55),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UK,HYPER BOUNDARY,MT,18,GRY,140.0,STOLEN,3589,"{'type': 'Point', 'coordinates': (-79.34658826, 43.70321193)}"
-3594,5298,GO-20191747613,THEFT UNDER - BICYCLE,2019-09-11T00:00:00,2019,September,Wednesday,11,254,7,2019-09-12T00:00:00,2019,September,Thursday,12,255,0,D53,Toronto,55,Thorncliffe Park (55),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DEL SOL PROJEKT,,RC,24,BLK,567.0,STOLEN,3590,"{'type': 'Point', 'coordinates': (-79.36177754, 43.70611872)}"
-3595,5972,GO-2020574723,THEFT UNDER - BICYCLE,2020-03-16T00:00:00,2020,March,Monday,16,76,14,2020-03-20T00:00:00,2020,March,Friday,20,80,19,D53,Toronto,55,Thorncliffe Park (55),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,FUJI,FUJI3.6,MT,17,BRN,300.0,STOLEN,3591,"{'type': 'Point', 'coordinates': (-79.35162719, 43.70328132)}"
-3596,6073,GO-20209011331,THEFT UNDER,2020-04-16T00:00:00,2020,April,Thursday,16,107,15,2020-04-17T00:00:00,2020,April,Friday,17,108,9,D53,Toronto,55,Thorncliffe Park (55),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE 3,OT,21,GRY,710.0,STOLEN,3592,"{'type': 'Point', 'coordinates': (-79.35357569, 43.71406817)}"
-3597,6903,GO-20201246958,B&E,2020-07-01T00:00:00,2020,July,Wednesday,1,183,16,2020-07-06T00:00:00,2020,July,Monday,6,188,11,D53,Toronto,55,Thorncliffe Park (55),"Apartment (Rooming House, Condo)",Apartment,TR,X-CALIBER 8,MT,21,BLU,900.0,STOLEN,3593,"{'type': 'Point', 'coordinates': (-79.35445767, 43.71388678000001)}"
-3598,7381,GO-20209024824,THEFT UNDER - BICYCLE,2020-09-28T00:00:00,2020,September,Monday,28,272,19,2020-09-28T00:00:00,2020,September,Monday,28,272,21,D53,Toronto,55,Thorncliffe Park (55),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,TOUGHROAD,MT,9,DBL,1500.0,STOLEN,3594,"{'type': 'Point', 'coordinates': (-79.36348605, 43.71036039)}"
-3599,7626,GO-20202141380,THEFT UNDER - BICYCLE,2020-11-07T00:00:00,2020,November,Saturday,7,312,10,2020-11-13T00:00:00,2020,November,Friday,13,318,12,D53,Toronto,55,Thorncliffe Park (55),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TREK,XCALIBER 29,BM,24,BLK,1850.0,STOLEN,3595,"{'type': 'Point', 'coordinates': (-79.36144176, 43.70527219)}"
-3600,7761,GO-20141508981,THEFT UNDER,2014-02-11T00:00:00,2014,February,Tuesday,11,42,10,2014-02-11T00:00:00,2014,February,Tuesday,11,42,10,D53,Toronto,55,Thorncliffe Park (55),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,CRUX ELITE RIOA,RC,22,RED,3300.0,STOLEN,3597,"{'type': 'Point', 'coordinates': (-79.35905752, 43.71287988)}"
-3601,7766,GO-20141432628,THEFT UNDER,2014-01-28T00:00:00,2014,January,Tuesday,28,28,15,2014-01-29T00:00:00,2014,January,Wednesday,29,29,21,D53,Toronto,55,Thorncliffe Park (55),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CUSTOM,,OT,0,BLU,,STOLEN,3598,"{'type': 'Point', 'coordinates': (-79.36019969, 43.70283234000001)}"
-3602,7833,GO-20141885414,THEFT UNDER - SHOPLIFTING,2014-03-14T00:00:00,2014,March,Friday,14,73,19,2014-04-13T00:00:00,2014,April,Sunday,13,103,22,D53,Toronto,55,Thorncliffe Park (55),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,KIDS RIDE ALONE,OT,1,BLU,72.0,STOLEN,3599,"{'type': 'Point', 'coordinates': (-79.36348605, 43.71036039)}"
-3603,8106,GO-20142274631,THEFT UNDER,2014-06-06T00:00:00,2014,June,Friday,6,157,17,2014-06-12T00:00:00,2014,June,Thursday,12,163,11,D53,Toronto,55,Thorncliffe Park (55),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUPERCYCLE,,MT,10,RED,200.0,STOLEN,3600,"{'type': 'Point', 'coordinates': (-79.34658826, 43.70321193)}"
-3604,8848,GO-20149006710,THEFT UNDER,2014-08-29T00:00:00,2014,August,Friday,29,241,13,2014-09-09T00:00:00,2014,September,Tuesday,9,252,13,D53,Toronto,55,Thorncliffe Park (55),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,21,GRY,100.0,STOLEN,3601,"{'type': 'Point', 'coordinates': (-79.35445767, 43.71388678000001)}"
-3605,8849,GO-20149006711,THEFT UNDER,2014-09-06T00:00:00,2014,September,Saturday,6,249,22,2014-09-09T00:00:00,2014,September,Tuesday,9,252,9,D53,Toronto,55,Thorncliffe Park (55),"Apartment (Rooming House, Condo)",Apartment,KO,,MT,8,WHI,0.0,STOLEN,3602,"{'type': 'Point', 'coordinates': (-79.35650277, 43.71463968)}"
-3606,8850,GO-20149006711,THEFT UNDER,2014-09-06T00:00:00,2014,September,Saturday,6,249,22,2014-09-09T00:00:00,2014,September,Tuesday,9,252,9,D53,Toronto,55,Thorncliffe Park (55),"Apartment (Rooming House, Condo)",Apartment,RA,,FO,3,GLD,0.0,STOLEN,3603,"{'type': 'Point', 'coordinates': (-79.35650277, 43.71463968)}"
-3607,9318,GO-2015417111,THEFT UNDER,2015-03-10T00:00:00,2015,March,Tuesday,10,69,20,2015-03-11T00:00:00,2015,March,Wednesday,11,70,17,D53,Toronto,55,Thorncliffe Park (55),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,RC,16,SILBLU,450.0,STOLEN,3604,"{'type': 'Point', 'coordinates': (-79.34658826, 43.70321193)}"
-3608,9319,GO-2015417111,THEFT UNDER,2015-03-10T00:00:00,2015,March,Tuesday,10,69,20,2015-03-11T00:00:00,2015,March,Wednesday,11,70,17,D53,Toronto,55,Thorncliffe Park (55),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,RC,12,LBL,350.0,STOLEN,3605,"{'type': 'Point', 'coordinates': (-79.34658826, 43.70321193)}"
-3609,9616,GO-2015842573,THEFT UNDER,2015-05-20T00:00:00,2015,May,Wednesday,20,140,15,2015-05-20T00:00:00,2015,May,Wednesday,20,140,19,D53,Toronto,55,Thorncliffe Park (55),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OTHER,,SC,1,BLKGRN,47.0,STOLEN,3606,"{'type': 'Point', 'coordinates': (-79.34658826, 43.70321193)}"
-3610,9895,GO-20151078178,THEFT UNDER,2015-06-26T00:00:00,2015,June,Friday,26,177,15,2015-06-26T00:00:00,2015,June,Friday,26,177,18,D53,Toronto,55,Thorncliffe Park (55),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,TREK,Z20,OT,0,BLU,200.0,STOLEN,3607,"{'type': 'Point', 'coordinates': (-79.34658826, 43.70321193)}"
-3611,11137,GO-20141769678,PROPERTY - FOUND,2014-03-20T00:00:00,2014,March,Thursday,20,79,7,2014-03-26T00:00:00,2014,March,Wednesday,26,85,9,D53,Toronto,55,Thorncliffe Park (55),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SCHWINN,MIDTOWN,MT,18,WHI,,UNKNOWN,3608,"{'type': 'Point', 'coordinates': (-79.35848264, 43.71146597)}"
-3612,11338,GO-2016862538,THEFT UNDER - BICYCLE,2016-05-17T00:00:00,2016,May,Tuesday,17,138,8,2016-05-19T00:00:00,2016,May,Thursday,19,140,14,D53,Toronto,55,Thorncliffe Park (55),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,CAMBER,MT,5,BLKRED,1900.0,STOLEN,3609,"{'type': 'Point', 'coordinates': (-79.35162719, 43.70328132)}"
-3613,12041,GO-20169008468,THEFT UNDER - BICYCLE,2016-08-09T00:00:00,2016,August,Tuesday,9,222,16,2016-08-09T00:00:00,2016,August,Tuesday,9,222,21,D53,Toronto,55,Thorncliffe Park (55),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KO,DEW DELUXE,RG,10,GRY,600.0,STOLEN,3610,"{'type': 'Point', 'coordinates': (-79.34658826, 43.70321193)}"
-3614,12446,GO-20169011055,THEFT UNDER - BICYCLE,2016-09-25T00:00:00,2016,September,Sunday,25,269,8,2016-09-25T00:00:00,2016,September,Sunday,25,269,8,D53,Toronto,55,Thorncliffe Park (55),"Apartment (Rooming House, Condo)",Apartment,KO,LAVA DOME,MT,21,GRN,760.0,STOLEN,3611,"{'type': 'Point', 'coordinates': (-79.35650277, 43.71463968)}"
-3615,12980,GO-20199030265,THEFT UNDER - BICYCLE,2019-09-12T00:00:00,2019,September,Thursday,12,255,21,2019-09-16T00:00:00,2019,September,Monday,16,259,15,D53,Toronto,55,Thorncliffe Park (55),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,TALON,MT,24,BLU,550.0,STOLEN,3612,"{'type': 'Point', 'coordinates': (-79.36177754, 43.70611872)}"
-3616,10043,GO-20151215022,THEFT UNDER,2015-07-16T00:00:00,2015,July,Thursday,16,197,6,2015-07-17T00:00:00,2015,July,Friday,17,198,14,D33,Toronto,52,Bayview Village (52),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,PEUGEOT,,RC,12,GRYBLK,1050.0,STOLEN,3613,"{'type': 'Point', 'coordinates': (-79.38801507, 43.76658916)}"
-3617,10365,GO-20151505465,THEFT UNDER,2015-08-28T00:00:00,2015,August,Friday,28,240,14,2015-09-01T00:00:00,2015,September,Tuesday,1,244,8,D33,Toronto,52,Bayview Village (52),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,SOLARIS,OT,6,RED,300.0,STOLEN,3614,"{'type': 'Point', 'coordinates': (-79.38801507, 43.76658916)}"
-3618,11087,GO-2016544704,B&E,2016-03-31T00:00:00,2016,March,Thursday,31,91,17,2016-03-31T00:00:00,2016,March,Thursday,31,91,20,D33,Toronto,52,Bayview Village (52),"Apartment (Rooming House, Condo)",Apartment,GIANT,,MT,1,,,UNKNOWN,3615,"{'type': 'Point', 'coordinates': (-79.37088107, 43.76947723)}"
-3619,11287,GO-20169004377,THEFT UNDER - BICYCLE,2016-05-10T00:00:00,2016,May,Tuesday,10,131,13,2016-05-10T00:00:00,2016,May,Tuesday,10,131,21,D33,Toronto,52,Bayview Village (52),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,AGGRESSORCOMP,MT,50,BLK,549.0,STOLEN,3616,"{'type': 'Point', 'coordinates': (-79.3885365, 43.76905513)}"
-3620,11417,GO-20169005170,THEFT UNDER,2016-05-25T00:00:00,2016,May,Wednesday,25,146,11,2016-05-30T00:00:00,2016,May,Monday,30,151,21,D33,Toronto,52,Bayview Village (52),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,YUKON,MT,21,SIL,400.0,STOLEN,3617,"{'type': 'Point', 'coordinates': (-79.3885365, 43.76905513)}"
-3621,11479,GO-2016989711,THEFT UNDER - BICYCLE,2016-06-07T00:00:00,2016,June,Tuesday,7,159,13,2016-06-09T00:00:00,2016,June,Thursday,9,161,12,D33,Toronto,52,Bayview Village (52),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,,TO,18,GRY,600.0,STOLEN,3618,"{'type': 'Point', 'coordinates': (-79.38801507, 43.76658916)}"
-3622,11491,GO-20169005581,THEFT UNDER,2016-05-15T00:00:00,2016,May,Sunday,15,136,13,2016-06-10T00:00:00,2016,June,Friday,10,162,16,D33,Toronto,52,Bayview Village (52),"Apartment (Rooming House, Condo)",Apartment,CA,,MT,21,,700.0,STOLEN,3619,"{'type': 'Point', 'coordinates': (-79.37043936, 43.76834039)}"
-3623,11499,GO-20169005581,THEFT UNDER,2016-05-15T00:00:00,2016,May,Sunday,15,136,13,2016-06-10T00:00:00,2016,June,Friday,10,162,16,D33,Toronto,52,Bayview Village (52),"Apartment (Rooming House, Condo)",Apartment,CA,,MT,21,,700.0,STOLEN,3620,"{'type': 'Point', 'coordinates': (-79.37043936, 43.76834039)}"
-3624,11502,GO-20169005624,THEFT UNDER,2016-06-11T00:00:00,2016,June,Saturday,11,163,13,2016-06-11T00:00:00,2016,June,Saturday,11,163,14,D33,Toronto,52,Bayview Village (52),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,7.1FX20,RG,24,SIL,645.0,STOLEN,3621,"{'type': 'Point', 'coordinates': (-79.3885365, 43.76905513)}"
-3625,11529,GO-20169005784,THEFT UNDER - BICYCLE,2016-06-13T00:00:00,2016,June,Monday,13,165,17,2016-06-14T00:00:00,2016,June,Tuesday,14,166,15,D33,Toronto,52,Bayview Village (52),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SC,GRAFT PRO 27,MT,27,RED,800.0,STOLEN,3622,"{'type': 'Point', 'coordinates': (-79.37122689, 43.77035775)}"
-3626,11586,GO-20169006047,THEFT UNDER,2016-06-19T00:00:00,2016,June,Sunday,19,171,14,2016-06-20T00:00:00,2016,June,Monday,20,172,11,D33,Toronto,52,Bayview Village (52),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,3500,TO,20,LGR,500.0,STOLEN,3623,"{'type': 'Point', 'coordinates': (-79.3885365, 43.76905513)}"
-3627,11707,GO-20169006721,THEFT UNDER - BICYCLE,2016-07-04T00:00:00,2016,July,Monday,4,186,14,2016-07-04T00:00:00,2016,July,Monday,4,186,20,D33,Toronto,52,Bayview Village (52),Ttc Subway Station,Transit,UK,ROCKHOPPER COMP,MT,9,BLK,1243.0,STOLEN,3624,"{'type': 'Point', 'coordinates': (-79.38801507, 43.76658916)}"
-3628,11746,GO-20169006922,THEFT UNDER,2016-07-08T00:00:00,2016,July,Friday,8,190,16,2016-07-08T00:00:00,2016,July,Friday,8,190,23,D33,Toronto,52,Bayview Village (52),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,CITADEL ST- COM,RG,6,GRY,1000.0,STOLEN,3625,"{'type': 'Point', 'coordinates': (-79.3885365, 43.76905513)}"
-3629,3569,GO-20189032157,THEFT UNDER - BICYCLE,2018-09-27T00:00:00,2018,September,Thursday,27,270,9,2018-09-27T00:00:00,2018,September,Thursday,27,270,19,D33,Toronto,48,Hillcrest Village (48),Schools During Supervised Activity,Educational,OT,CAMALEON 3,MT,27,SIL,300.0,STOLEN,3626,"{'type': 'Point', 'coordinates': (-79.35182876, 43.79705548)}"
-3630,11869,GO-20169007569,THEFT UNDER - BICYCLE,2016-07-16T00:00:00,2016,July,Saturday,16,198,12,2016-07-20T00:00:00,2016,July,Wednesday,20,202,5,D33,Toronto,52,Bayview Village (52),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,SPECIALIZED ELI,OT,21,BLK,1149.0,STOLEN,3627,"{'type': 'Point', 'coordinates': (-79.3885365, 43.76905513)}"
-3631,11910,GO-20161308869,THEFT UNDER - BICYCLE,2016-07-21T00:00:00,2016,July,Thursday,21,203,19,2016-07-25T00:00:00,2016,July,Monday,25,207,21,D33,Toronto,52,Bayview Village (52),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,NORCO,INDIE,RG,24,GRN,600.0,STOLEN,3628,"{'type': 'Point', 'coordinates': (-79.38801507, 43.76658916)}"
-3632,12535,GO-20169011458,THEFT UNDER - BICYCLE,2016-10-02T00:00:00,2016,October,Sunday,2,276,11,2016-10-02T00:00:00,2016,October,Sunday,2,276,20,D33,Toronto,52,Bayview Village (52),"Apartment (Rooming House, Condo)",Apartment,GI,ANTHEM ADVANCED,MT,10,,3300.0,STOLEN,3630,"{'type': 'Point', 'coordinates': (-79.38425341, 43.76575373)}"
-3633,13532,GO-20192249451,THEFT UNDER - BICYCLE,2019-11-11T00:00:00,2019,November,Monday,11,315,0,2019-11-21T00:00:00,2019,November,Thursday,21,325,16,D33,Toronto,52,Bayview Village (52),"Apartment (Rooming House, Condo)",Apartment,MARIN,,RC,21,TRQBLU,1050.0,STOLEN,3631,"{'type': 'Point', 'coordinates': (-79.37043936, 43.76834039)}"
-3634,13534,GO-20209009146,THEFT UNDER - BICYCLE,2020-03-17T00:00:00,2020,March,Tuesday,17,77,9,2020-03-17T00:00:00,2020,March,Tuesday,17,77,9,D33,Toronto,52,Bayview Village (52),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,MAMBA,MT,21,BLK,0.0,STOLEN,3632,"{'type': 'Point', 'coordinates': (-79.38425341, 43.76575373)}"
-3635,13541,GO-20209014249,THEFT UNDER - BICYCLE,2020-05-27T00:00:00,2020,May,Wednesday,27,148,21,2020-05-30T00:00:00,2020,May,Saturday,30,151,13,D33,Toronto,52,Bayview Village (52),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,CORSO,MT,21,BLK,450.0,STOLEN,3633,"{'type': 'Point', 'coordinates': (-79.38054825, 43.77054719)}"
-3636,13592,GO-20209026377,THEFT UNDER - BICYCLE,2020-10-13T00:00:00,2020,October,Tuesday,13,287,20,2020-10-13T00:00:00,2020,October,Tuesday,13,287,22,D33,Toronto,52,Bayview Village (52),"Apartment (Rooming House, Condo)",Apartment,SU,,RG,6,PLE,200.0,STOLEN,3634,"{'type': 'Point', 'coordinates': (-79.37043936, 43.76834039)}"
-3637,13698,GO-20179011089,THEFT UNDER - BICYCLE,2017-07-26T00:00:00,2017,July,Wednesday,26,207,9,2017-07-26T00:00:00,2017,July,Wednesday,26,207,18,D33,Toronto,52,Bayview Village (52),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,ROVE 1,RG,10,GLD,1300.0,STOLEN,3635,"{'type': 'Point', 'coordinates': (-79.38363574000002, 43.76990337000001)}"
-3638,13714,GO-20179014798,THEFT UNDER - BICYCLE,2017-09-14T00:00:00,2017,September,Thursday,14,257,1,2017-09-14T00:00:00,2017,September,Thursday,14,257,20,D33,Toronto,52,Bayview Village (52),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MO,,OT,21,GRY,725.0,STOLEN,3636,"{'type': 'Point', 'coordinates': (-79.38054825, 43.77054719)}"
-3639,13751,GO-2018830458,THEFT UNDER - BICYCLE,2018-05-04T00:00:00,2018,May,Friday,4,124,15,2018-05-08T00:00:00,2018,May,Tuesday,8,128,15,D33,Toronto,52,Bayview Village (52),"Apartment (Rooming House, Condo)",Apartment,OTHER,SONIX,OT,21,WHIGRY,1300.0,STOLEN,3637,"{'type': 'Point', 'coordinates': (-79.37159387, 43.76801606)}"
-3640,13752,GO-2018830458,THEFT UNDER - BICYCLE,2018-05-04T00:00:00,2018,May,Friday,4,124,15,2018-05-08T00:00:00,2018,May,Tuesday,8,128,15,D33,Toronto,52,Bayview Village (52),"Apartment (Rooming House, Condo)",Apartment,OTHER,KORSA,OT,21,BLKRED,1600.0,STOLEN,3638,"{'type': 'Point', 'coordinates': (-79.37159387, 43.76801606)}"
-3641,13766,GO-20189018547,THEFT UNDER - BICYCLE,2018-06-13T00:00:00,2018,June,Wednesday,13,164,15,2018-06-13T00:00:00,2018,June,Wednesday,13,164,17,D33,Toronto,52,Bayview Village (52),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MA,,TO,21,BLK,1300.0,STOLEN,3639,"{'type': 'Point', 'coordinates': (-79.38837449, 43.76819127000001)}"
-3642,13979,GO-20169006293,THEFT UNDER,2016-06-23T00:00:00,2016,June,Thursday,23,175,15,2016-06-24T00:00:00,2016,June,Friday,24,176,14,D33,Toronto,52,Bayview Village (52),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,KICKER,MT,1,BLU,0.0,STOLEN,3640,"{'type': 'Point', 'coordinates': (-79.38801507, 43.76658916)}"
-3643,14004,GO-20169009723,THEFT UNDER - BICYCLE,2016-08-29T00:00:00,2016,August,Monday,29,242,11,2016-08-30T00:00:00,2016,August,Tuesday,30,243,22,D33,Toronto,52,Bayview Village (52),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,VITA ELITE,RG,21,MRN,819.0,STOLEN,3641,"{'type': 'Point', 'coordinates': (-79.3885365, 43.76905513)}"
-3644,14012,GO-20169010236,THEFT UNDER - BICYCLE,2016-08-30T00:00:00,2016,August,Tuesday,30,243,15,2016-09-10T00:00:00,2016,September,Saturday,10,254,14,D33,Toronto,52,Bayview Village (52),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,TEMPO 700C,RG,21,BLU,400.0,STOLEN,3642,"{'type': 'Point', 'coordinates': (-79.37122689, 43.77035775)}"
-3645,14353,GO-20141941479,PROPERTY - FOUND,2014-04-22T00:00:00,2014,April,Tuesday,22,112,12,2014-04-22T00:00:00,2014,April,Tuesday,22,112,13,D33,Toronto,52,Bayview Village (52),"Open Areas (Lakes, Parks, Rivers)",Outside,SUPERCYCLE,NITROUS,MT,10,RED,300.0,UNKNOWN,3643,"{'type': 'Point', 'coordinates': (-79.36551094, 43.77150108)}"
-3646,16805,GO-20209000438,THEFT UNDER - BICYCLE,2020-01-05T00:00:00,2020,January,Sunday,5,5,13,2020-01-05T00:00:00,2020,January,Sunday,5,5,14,D33,Toronto,52,Bayview Village (52),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,AGGRESOR COMP 2,MT,7,BLK,600.0,STOLEN,3644,"{'type': 'Point', 'coordinates': (-79.38363574000002, 43.76990337000001)}"
-3647,16808,GO-20209010599,THEFT UNDER,2020-04-02T00:00:00,2020,April,Thursday,2,93,13,2020-04-06T00:00:00,2020,April,Monday,6,97,22,D33,Toronto,52,Bayview Village (52),"Apartment (Rooming House, Condo)",Apartment,RM,FUSION,MT,18,WHI,700.0,STOLEN,3645,"{'type': 'Point', 'coordinates': (-79.38425341, 43.76575373)}"
-3648,16819,GO-20201153801,THEFT UNDER - BICYCLE,2020-06-17T00:00:00,2020,June,Wednesday,17,169,19,2020-06-23T00:00:00,2020,June,Tuesday,23,175,8,D33,Toronto,52,Bayview Village (52),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GT,AVALANCHE,MT,18,BLKGRN,860.0,STOLEN,3646,"{'type': 'Point', 'coordinates': (-79.37088107, 43.76947723)}"
-3649,16827,GO-20209018107,THEFT UNDER - BICYCLE,2020-07-20T00:00:00,2020,July,Monday,20,202,10,2020-07-21T00:00:00,2020,July,Tuesday,21,203,10,D33,Toronto,52,Bayview Village (52),"Apartment (Rooming House, Condo)",Apartment,TR,1500 (DISCOVERY,RC,18,BLU,1500.0,STOLEN,3647,"{'type': 'Point', 'coordinates': (-79.38494494, 43.76741056)}"
-3650,16836,GO-20209019617,THEFT UNDER - BICYCLE,2020-08-06T00:00:00,2020,August,Thursday,6,219,18,2020-08-07T00:00:00,2020,August,Friday,7,220,11,D33,Toronto,52,Bayview Village (52),"Apartment (Rooming House, Condo)",Apartment,SU,27.5,MT,21,GRY,406.0,STOLEN,3648,"{'type': 'Point', 'coordinates': (-79.38494494, 43.76741056)}"
-3651,16837,GO-20209020709,THEFT UNDER - BICYCLE,2020-08-10T00:00:00,2020,August,Monday,10,223,19,2020-08-19T00:00:00,2020,August,Wednesday,19,232,19,D33,Toronto,52,Bayview Village (52),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM 3,MT,21,BLK,750.0,STOLEN,3649,"{'type': 'Point', 'coordinates': (-79.38309871, 43.76780368)}"
-3652,16845,GO-20209024708,THEFT UNDER - BICYCLE,2020-09-13T00:00:00,2020,September,Sunday,13,257,0,2020-09-27T00:00:00,2020,September,Sunday,27,271,15,D33,Toronto,52,Bayview Village (52),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,ROAM 3 DISC,RG,24,OTH,689.0,STOLEN,3650,"{'type': 'Point', 'coordinates': (-79.37043936, 43.76834039)}"
-3653,16851,GO-20202082613,THEFT UNDER - BICYCLE,2020-10-31T00:00:00,2020,October,Saturday,31,305,0,2020-11-02T00:00:00,2020,November,Monday,2,307,23,D33,Toronto,52,Bayview Village (52),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CCM,,MT,18,BLU,400.0,STOLEN,3651,"{'type': 'Point', 'coordinates': (-79.38734638, 43.77123819)}"
-3654,16858,GO-20209030401,THEFT UNDER - BICYCLE,2020-11-11T00:00:00,2020,November,Wednesday,11,316,20,2020-11-23T00:00:00,2020,November,Monday,23,328,22,D33,Toronto,52,Bayview Village (52),"Apartment (Rooming House, Condo)",Apartment,SC,HYBRID,OT,21,OTH,500.0,STOLEN,3652,"{'type': 'Point', 'coordinates': (-79.37043936, 43.76834039)}"
-3655,16932,GO-20179008586,THEFT UNDER - BICYCLE,2017-06-19T00:00:00,2017,June,Monday,19,170,17,2017-06-21T00:00:00,2017,June,Wednesday,21,172,16,D33,Toronto,52,Bayview Village (52),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,X-CALIBER 4 18.,MT,12,BLU,700.0,STOLEN,3653,"{'type': 'Point', 'coordinates': (-79.38309871, 43.76780368)}"
-3656,16983,GO-20179015719,THEFT UNDER - BICYCLE,2017-09-10T00:00:00,2017,September,Sunday,10,253,5,2017-09-25T00:00:00,2017,September,Monday,25,268,12,D33,Toronto,52,Bayview Village (52),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE 2 2016 M,OT,24,BLU,612.0,STOLEN,3654,"{'type': 'Point', 'coordinates': (-79.37088107, 43.76947723)}"
-3657,17151,GO-20151205882,THEFT UNDER,2015-07-16T00:00:00,2015,July,Thursday,16,197,6,2015-07-16T00:00:00,2015,July,Thursday,16,197,9,D33,Toronto,52,Bayview Village (52),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,MT,6,SILRED,200.0,STOLEN,3655,"{'type': 'Point', 'coordinates': (-79.38801507, 43.76658916)}"
-3658,17153,GO-20151209816,THEFT UNDER,2015-07-15T00:00:00,2015,July,Wednesday,15,196,20,2015-07-16T00:00:00,2015,July,Thursday,16,197,19,D33,Toronto,52,Bayview Village (52),"Apartment (Rooming House, Condo)",Apartment,CCM,MENS,MT,10,RED,300.0,STOLEN,3656,"{'type': 'Point', 'coordinates': (-79.38054825, 43.77054719)}"
-3659,17177,GO-20159007823,THEFT UNDER,2015-08-23T00:00:00,2015,August,Sunday,23,235,0,2015-09-27T00:00:00,2015,September,Sunday,27,270,22,D33,Toronto,52,Bayview Village (52),"Apartment (Rooming House, Condo)",Apartment,TR,,OT,8,SIL,800.0,STOLEN,3657,"{'type': 'Point', 'coordinates': (-79.37088107, 43.76947723)}"
-3660,17247,GO-20169007077,THEFT UNDER - BICYCLE,2016-07-09T00:00:00,2016,July,Saturday,9,191,23,2016-07-12T00:00:00,2016,July,Tuesday,12,194,11,D33,Toronto,52,Bayview Village (52),"Apartment (Rooming House, Condo)",Apartment,TR,,OT,12,GRY,450.0,STOLEN,3658,"{'type': 'Point', 'coordinates': (-79.38425341, 43.76575373)}"
-3661,17252,GO-20169008342,THEFT UNDER,2016-08-07T00:00:00,2016,August,Sunday,7,220,10,2016-08-07T00:00:00,2016,August,Sunday,7,220,14,D33,Toronto,52,Bayview Village (52),Unknown,Other,OT,2014 TRAIL X2,MT,24,DGR,500.0,STOLEN,3659,"{'type': 'Point', 'coordinates': (-79.38801507, 43.76658916)}"
-3662,17301,GO-2017417544,THEFT UNDER - BICYCLE,2016-12-07T00:00:00,2016,December,Wednesday,7,342,12,2017-03-07T00:00:00,2017,March,Tuesday,7,66,19,D33,Toronto,52,Bayview Village (52),"Apartment (Rooming House, Condo)",Apartment,OTHER,JAGUAR,OT,18,BLK,200.0,STOLEN,3660,"{'type': 'Point', 'coordinates': (-79.38837449, 43.76819127000001)}"
-3663,17432,GO-20142240413,THEFT UNDER,2014-06-07T00:00:00,2014,June,Saturday,7,158,6,2014-06-07T00:00:00,2014,June,Saturday,7,158,13,D33,Toronto,52,Bayview Village (52),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GARY FISHER,ADVANCE,MT,24,GRY,450.0,STOLEN,3661,"{'type': 'Point', 'coordinates': (-79.38801507, 43.76658916)}"
-3664,20030,GO-2019900674,B&E,2019-05-17T00:00:00,2019,May,Friday,17,137,10,2019-05-17T00:00:00,2019,May,Friday,17,137,15,D33,Toronto,52,Bayview Village (52),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,UNKNOWN,OT,0,BLKWHI,,STOLEN,3662,"{'type': 'Point', 'coordinates': (-79.38837449, 43.76819127000001)}"
-3665,20086,GO-20209012411,THEFT UNDER - BICYCLE,2020-05-02T00:00:00,2020,May,Saturday,2,123,16,2020-05-04T00:00:00,2020,May,Monday,4,125,0,D33,Toronto,52,Bayview Village (52),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,MT,21,SIL,500.0,STOLEN,3663,"{'type': 'Point', 'coordinates': (-79.37088107, 43.76947723)}"
-3666,20092,GO-20209015961,THEFT UNDER - BICYCLE,2020-06-20T00:00:00,2020,June,Saturday,20,172,12,2020-06-23T00:00:00,2020,June,Tuesday,23,175,13,D33,Toronto,52,Bayview Village (52),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,MT,6,BLK,,STOLEN,3664,"{'type': 'Point', 'coordinates': (-79.38309871, 43.76780368)}"
-3667,20117,GO-20209021689,THEFT UNDER - BICYCLE,2020-08-28T00:00:00,2020,August,Friday,28,241,22,2020-08-29T00:00:00,2020,August,Saturday,29,242,11,D33,Toronto,52,Bayview Village (52),"Apartment (Rooming House, Condo)",Apartment,,,MT,10,,300.0,STOLEN,3665,"{'type': 'Point', 'coordinates': (-79.37043936, 43.76834039)}"
-3668,20283,GO-20173270647,B&E,2017-12-27T00:00:00,2017,December,Wednesday,27,361,2,2017-12-27T00:00:00,2017,December,Wednesday,27,361,2,D33,Toronto,52,Bayview Village (52),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RIDELY,XTRAIL C50,TO,18,,,STOLEN,3666,"{'type': 'Point', 'coordinates': (-79.37425215, 43.77013677)}"
-3669,20287,GO-20189003888,THEFT UNDER - BICYCLE,2018-02-07T00:00:00,2018,February,Wednesday,7,38,19,2018-02-08T00:00:00,2018,February,Thursday,8,39,11,D33,Toronto,52,Bayview Village (52),"Apartment (Rooming House, Condo)",Apartment,CC,GEMINI,BM,3,BLU,100.0,STOLEN,3667,"{'type': 'Point', 'coordinates': (-79.37088107, 43.76947723)}"
-3670,20304,GO-2018951269,THEFT UNDER - BICYCLE,2018-05-01T00:00:00,2018,May,Tuesday,1,121,0,2018-05-26T00:00:00,2018,May,Saturday,26,146,20,D33,Toronto,52,Bayview Village (52),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,7000 SERIES,MT,21,BLKRED,1500.0,STOLEN,3668,"{'type': 'Point', 'coordinates': (-79.38734638, 43.77123819)}"
-3671,20398,GO-20159004004,THEFT UNDER,2015-06-24T00:00:00,2015,June,Wednesday,24,175,18,2015-06-28T00:00:00,2015,June,Sunday,28,179,14,D33,Toronto,52,Bayview Village (52),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,RA,,MT,12,BLK,300.0,STOLEN,3669,"{'type': 'Point', 'coordinates': (-79.38801507, 43.76658916)}"
-3672,20436,GO-20151605783,THEFT UNDER,2015-09-11T00:00:00,2015,September,Friday,11,254,10,2015-09-12T00:00:00,2015,September,Saturday,12,255,8,D33,Toronto,52,Bayview Village (52),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,NEX,RG,5,SIL,134.0,STOLEN,3670,"{'type': 'Point', 'coordinates': (-79.36545411, 43.77743076)}"
-3673,20496,GO-20169005436,THEFT UNDER,2016-06-06T00:00:00,2016,June,Monday,6,158,16,2016-06-07T00:00:00,2016,June,Tuesday,7,159,17,D33,Toronto,52,Bayview Village (52),"Apartment (Rooming House, Condo)",Apartment,OT,QUICK 4 2015,RG,8,BLU,800.0,STOLEN,3671,"{'type': 'Point', 'coordinates': (-79.37159387, 43.76801606)}"
-3674,23326,GO-20201055426,THEFT UNDER - BICYCLE,2020-06-07T00:00:00,2020,June,Sunday,7,159,21,2020-06-10T00:00:00,2020,June,Wednesday,10,162,12,D33,Toronto,52,Bayview Village (52),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,LAGUNA GTE,MT,7,WHI,460.0,STOLEN,3672,"{'type': 'Point', 'coordinates': (-79.38112689, 43.76823174)}"
-3675,23336,GO-20201306860,B&E,2020-07-13T00:00:00,2020,July,Monday,13,195,16,2020-07-14T00:00:00,2020,July,Tuesday,14,196,16,D33,Toronto,52,Bayview Village (52),"Apartment (Rooming House, Condo)",Apartment,CCM,,MT,29,BLKONG,499.0,STOLEN,3673,"{'type': 'Point', 'coordinates': (-79.37043936, 43.76834039)}"
-3676,23339,GO-20209017852,THEFT UNDER - BICYCLE,2020-07-08T00:00:00,2020,July,Wednesday,8,190,18,2020-07-16T00:00:00,2020,July,Thursday,16,198,15,D33,Toronto,52,Bayview Village (52),"Apartment (Rooming House, Condo)",Apartment,TR,FX2,OT,24,GRY,750.0,STOLEN,3674,"{'type': 'Point', 'coordinates': (-79.37043936, 43.76834039)}"
-3677,23351,GO-20209020709,THEFT UNDER - BICYCLE,2020-08-10T00:00:00,2020,August,Monday,10,223,19,2020-08-19T00:00:00,2020,August,Wednesday,19,232,19,D33,Toronto,52,Bayview Village (52),"Apartment (Rooming House, Condo)",Apartment,GI,2019 GIANT ROAM,OT,21,BLK,736.0,STOLEN,3675,"{'type': 'Point', 'coordinates': (-79.38309871, 43.76780368)}"
-3678,23369,GO-20202224091,THEFT UNDER - BICYCLE,2020-11-11T00:00:00,2020,November,Wednesday,11,316,12,2020-11-24T00:00:00,2020,November,Tuesday,24,329,10,D33,Toronto,52,Bayview Village (52),"Apartment (Rooming House, Condo)",Apartment,SCHWINN,HYBRID,RG,21,WHI,500.0,STOLEN,3676,"{'type': 'Point', 'coordinates': (-79.37043936, 43.76834039)}"
-3679,23513,GO-20189011051,THEFT UNDER - BICYCLE,2018-04-08T00:00:00,2018,April,Sunday,8,98,18,2018-04-09T00:00:00,2018,April,Monday,9,99,18,D33,Toronto,52,Bayview Village (52),"Apartment (Rooming House, Condo)",Apartment,RM,ELEMENT,MT,20,RED,4000.0,STOLEN,3677,"{'type': 'Point', 'coordinates': (-79.37088107, 43.76947723)}"
-3680,23514,GO-20189011224,THEFT UNDER - SHOPLIFTING,2018-04-09T00:00:00,2018,April,Monday,9,99,11,2018-04-11T00:00:00,2018,April,Wednesday,11,101,9,D33,Toronto,52,Bayview Village (52),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,KATO FS 5,MT,10,BLK,2600.0,STOLEN,3678,"{'type': 'Point', 'coordinates': (-79.37425215, 43.77013677)}"
-3681,23574,GO-20189025891,THEFT UNDER - BICYCLE,2018-08-10T00:00:00,2018,August,Friday,10,222,11,2018-08-10T00:00:00,2018,August,Friday,10,222,16,D33,Toronto,52,Bayview Village (52),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,,OT,9,BLK,1000.0,STOLEN,3679,"{'type': 'Point', 'coordinates': (-79.38801507, 43.76658916)}"
-3682,23669,GO-20159009917,THEFT UNDER,2015-11-19T00:00:00,2015,November,Thursday,19,323,11,2015-11-19T00:00:00,2015,November,Thursday,19,323,13,D33,Toronto,52,Bayview Village (52),"Apartment (Rooming House, Condo)",Apartment,UK,HARD ROCK,MT,18,WHI,700.0,STOLEN,3680,"{'type': 'Point', 'coordinates': (-79.37088107, 43.76947723)}"
-3683,23691,GO-20169004159,THEFT UNDER - BICYCLE,2016-05-04T00:00:00,2016,May,Wednesday,4,125,14,2016-05-04T00:00:00,2016,May,Wednesday,4,125,21,D33,Toronto,52,Bayview Village (52),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,MYKA SPORT,MT,21,BLK,500.0,STOLEN,3681,"{'type': 'Point', 'coordinates': (-79.3885365, 43.76905513)}"
-3684,22416,GO-20191763852,B&E,2019-09-13T00:00:00,2019,September,Friday,13,256,20,2019-09-14T00:00:00,2019,September,Saturday,14,257,7,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,TRICROSS SPORT,MT,27,GRN,1000.0,STOLEN,3682,"{'type': 'Point', 'coordinates': (-79.36939373, 43.70775241)}"
-3685,23712,GO-20169006028,THEFT UNDER,2016-06-19T00:00:00,2016,June,Sunday,19,171,12,2016-06-19T00:00:00,2016,June,Sunday,19,171,20,D33,Toronto,52,Bayview Village (52),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,MILANO,RG,21,SIL,550.0,STOLEN,3683,"{'type': 'Point', 'coordinates': (-79.38801507, 43.76658916)}"
-3686,23717,GO-20169006994,THEFT UNDER,2016-07-09T00:00:00,2016,July,Saturday,9,191,21,2016-07-11T00:00:00,2016,July,Monday,11,193,10,D33,Toronto,52,Bayview Village (52),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,VANDAL,MT,1,RED,175.0,STOLEN,3684,"{'type': 'Point', 'coordinates': (-79.36812181, 43.78766718)}"
-3687,23719,GO-20169007221,THEFT UNDER,2016-07-15T00:00:00,2016,July,Friday,15,197,8,2016-07-15T00:00:00,2016,July,Friday,15,197,17,D33,Toronto,52,Bayview Village (52),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,CROSSTRAIL,RG,24,BLK,801.0,STOLEN,3685,"{'type': 'Point', 'coordinates': (-79.38801507, 43.76658916)}"
-3688,23914,GO-20149004817,THEFT UNDER,2014-07-03T00:00:00,2014,July,Thursday,3,184,16,2014-07-08T00:00:00,2014,July,Tuesday,8,189,16,D33,Toronto,52,Bayview Village (52),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,28,,1500.0,STOLEN,3687,"{'type': 'Point', 'coordinates': (-79.38425341, 43.76575373)}"
-3689,4380,GO-2019993328,THEFT OF EBIKE UNDER $5000,2019-05-30T00:00:00,2019,May,Thursday,30,150,15,2019-05-30T00:00:00,2019,May,Thursday,30,150,18,D33,Toronto,53,Henry Farm (53),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,KNIGHT SPORT,EL,3,GRN,3000.0,STOLEN,3688,"{'type': 'Point', 'coordinates': (-79.33202144, 43.77367702)}"
-3690,4845,GO-20199023355,THEFT UNDER - BICYCLE,2019-07-21T00:00:00,2019,July,Sunday,21,202,9,2019-07-23T00:00:00,2019,July,Tuesday,23,204,10,D33,Toronto,53,Henry Farm (53),"Apartment (Rooming House, Condo)",Apartment,HF,,MT,10,BLU,100.0,STOLEN,3689,"{'type': 'Point', 'coordinates': (-79.34331851, 43.77501197)}"
-3691,5080,GO-20191554402,THEFT FROM MOTOR VEHICLE UNDER,2019-08-16T00:00:00,2019,August,Friday,16,228,6,2019-08-16T00:00:00,2019,August,Friday,16,228,6,D33,Toronto,53,Henry Farm (53),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,HIGH 10,RG,7,RED,,RECOVERED,3690,"{'type': 'Point', 'coordinates': (-79.35086996, 43.7698938)}"
-3692,5117,GO-20199027040,THEFT UNDER - BICYCLE,2019-08-21T00:00:00,2019,August,Wednesday,21,233,1,2019-08-21T00:00:00,2019,August,Wednesday,21,233,8,D33,Toronto,53,Henry Farm (53),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,21,WHI,400.0,STOLEN,3691,"{'type': 'Point', 'coordinates': (-79.34368106, 43.77583447)}"
-3693,5496,GO-20191956674,THEFT UNDER,2019-10-09T00:00:00,2019,October,Wednesday,9,282,11,2019-10-10T00:00:00,2019,October,Thursday,10,283,12,D33,Toronto,53,Henry Farm (53),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,RC,0,RED,100.0,STOLEN,3692,"{'type': 'Point', 'coordinates': (-79.34368106, 43.77583447)}"
-3694,6375,GO-20201093440,THEFT UNDER - BICYCLE,2020-06-12T00:00:00,2020,June,Friday,12,164,11,2020-06-14T00:00:00,2020,June,Sunday,14,166,13,D33,Toronto,53,Henry Farm (53),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GT,U/K,RG,21,BLK,550.0,STOLEN,3693,"{'type': 'Point', 'coordinates': (-79.33707105, 43.77440059)}"
-3695,6376,GO-20201093440,THEFT UNDER - BICYCLE,2020-06-12T00:00:00,2020,June,Friday,12,164,11,2020-06-14T00:00:00,2020,June,Sunday,14,166,13,D33,Toronto,53,Henry Farm (53),"Private Property Structure (Pool, Shed, Detached Garage)",Other,WALMART,U/K,RG,21,GRYRED,150.0,STOLEN,3694,"{'type': 'Point', 'coordinates': (-79.33707105, 43.77440059)}"
-3696,6727,GO-20209018459,THEFT UNDER - BICYCLE,2020-07-24T00:00:00,2020,July,Friday,24,206,15,2020-07-24T00:00:00,2020,July,Friday,24,206,19,D33,Toronto,53,Henry Farm (53),"Apartment (Rooming House, Condo)",Apartment,CC,,MT,1,BLK,550.0,STOLEN,3695,"{'type': 'Point', 'coordinates': (-79.34648977, 43.76957102)}"
-3697,6798,GO-20209018846,THEFT UNDER - BICYCLE,2020-07-28T00:00:00,2020,July,Tuesday,28,210,17,2020-07-28T00:00:00,2020,July,Tuesday,28,210,20,D33,Toronto,53,Henry Farm (53),"Apartment (Rooming House, Condo)",Apartment,SU,,RG,21,GRY,500.0,STOLEN,3696,"{'type': 'Point', 'coordinates': (-79.33707105, 43.77440059)}"
-3698,7076,GO-20209021332,THEFT UNDER - BICYCLE,2020-08-01T00:00:00,2020,August,Saturday,1,214,0,2020-08-25T00:00:00,2020,August,Tuesday,25,238,17,D33,Toronto,53,Henry Farm (53),"Apartment (Rooming House, Condo)",Apartment,GT,AGGRESSOR,MT,21,BLK,750.0,STOLEN,3697,"{'type': 'Point', 'coordinates': (-79.33510062, 43.77552237)}"
-3699,7077,GO-20209021332,THEFT UNDER - BICYCLE,2020-08-01T00:00:00,2020,August,Saturday,1,214,0,2020-08-25T00:00:00,2020,August,Tuesday,25,238,17,D33,Toronto,53,Henry Farm (53),"Apartment (Rooming House, Condo)",Apartment,GT,AGGRESSOR,MT,21,RED,750.0,STOLEN,3698,"{'type': 'Point', 'coordinates': (-79.33510062, 43.77552237)}"
-3700,7462,GO-20209026373,THEFT UNDER - BICYCLE,2020-10-13T00:00:00,2020,October,Tuesday,13,287,9,2020-10-13T00:00:00,2020,October,Tuesday,13,287,20,D33,Toronto,53,Henry Farm (53),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,18,BLK,600.0,STOLEN,3699,"{'type': 'Point', 'coordinates': (-79.33707105, 43.77440059)}"
-3701,7893,GO-20142041036,B&E,2014-05-07T00:00:00,2014,May,Wednesday,7,127,21,2014-05-08T00:00:00,2014,May,Thursday,8,128,20,D33,Toronto,53,Henry Farm (53),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,MT,6,GRNBLK,250.0,STOLEN,3700,"{'type': 'Point', 'coordinates': (-79.34725452, 43.769531640000004)}"
-3702,10361,GO-20159006486,THEFT UNDER,2015-08-22T00:00:00,2015,August,Saturday,22,234,23,2015-08-29T00:00:00,2015,August,Saturday,29,241,13,D33,Toronto,53,Henry Farm (53),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,,RG,18,BLK,400.0,STOLEN,3701,"{'type': 'Point', 'coordinates': (-79.34455059, 43.77356825)}"
-3703,13566,GO-20209018910,THEFT UNDER,2020-07-29T00:00:00,2020,July,Wednesday,29,211,14,2020-07-29T00:00:00,2020,July,Wednesday,29,211,17,D33,Toronto,53,Henry Farm (53),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,7.2,RG,21,GRY,500.0,STOLEN,3702,"{'type': 'Point', 'coordinates': (-79.34368106, 43.77583447)}"
-3704,13708,GO-20179012520,THEFT UNDER - BICYCLE,2017-08-14T00:00:00,2017,August,Monday,14,226,16,2017-08-16T00:00:00,2017,August,Wednesday,16,228,9,D33,Toronto,53,Henry Farm (53),Universities / Colleges,Educational,SU,,MT,24,,200.0,STOLEN,3703,"{'type': 'Point', 'coordinates': (-79.33619472000001, 43.77289559)}"
-3705,14006,GO-20161569434,ROBBERY WITH WEAPON,2016-09-04T00:00:00,2016,September,Sunday,4,248,12,2016-09-04T00:00:00,2016,September,Sunday,4,248,14,D42,Toronto,53,Henry Farm (53),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,,RG,5,,,STOLEN,3704,"{'type': 'Point', 'coordinates': (-79.32147665, 43.77194101)}"
-3706,16841,GO-20209021341,THEFT UNDER - BICYCLE,2020-08-23T00:00:00,2020,August,Sunday,23,236,20,2020-08-25T00:00:00,2020,August,Tuesday,25,238,21,D33,Toronto,53,Henry Farm (53),"Apartment (Rooming House, Condo)",Apartment,CC,"VANDAL 26""""",MT,21,BLU,380.0,STOLEN,3705,"{'type': 'Point', 'coordinates': (-79.33510062, 43.77552237)}"
-3707,16948,GO-20179010140,THEFT UNDER,2017-07-13T00:00:00,2017,July,Thursday,13,194,21,2017-07-14T00:00:00,2017,July,Friday,14,195,8,D33,Toronto,53,Henry Farm (53),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,ROCKHOPPER,MT,18,BLK,1000.0,STOLEN,3706,"{'type': 'Point', 'coordinates': (-79.34899781, 43.76837833)}"
-3708,4012,GO-2019108817,PROPERTY - FOUND,2019-01-18T00:00:00,2019,January,Friday,18,18,9,2019-01-18T00:00:00,2019,January,Friday,18,18,15,D33,Toronto,48,Hillcrest Village (48),"Single Home, House (Attach Garage, Cottage, Mobile)",House,PATHFINDER,2000 MTN,MT,1,PURPLE,,UNKNOWN,3707,"{'type': 'Point', 'coordinates': (-79.35681174, 43.79403335000001)}"
-3709,22417,GO-20191763852,B&E,2019-09-13T00:00:00,2019,September,Friday,13,256,20,2019-09-14T00:00:00,2019,September,Saturday,14,257,7,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,TRICROSS SPORT,MT,27,BLU,1225.0,STOLEN,3708,"{'type': 'Point', 'coordinates': (-79.36939373, 43.70775241)}"
-3710,4025,GO-20199003629,THEFT UNDER - BICYCLE,2019-01-17T00:00:00,2019,January,Thursday,17,17,16,2019-01-26T00:00:00,2019,January,Saturday,26,26,16,D33,Toronto,48,Hillcrest Village (48),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,RG,20,,0.0,STOLEN,3709,"{'type': 'Point', 'coordinates': (-79.36888667, 43.79396737)}"
-3711,4382,GO-20199016945,THEFT UNDER,2019-05-27T00:00:00,2019,May,Monday,27,147,18,2019-05-31T00:00:00,2019,May,Friday,31,151,0,D33,Toronto,48,Hillcrest Village (48),"Apartment (Rooming House, Condo)",Apartment,TR,HYBRID BIKE,OT,15,BLK,360.0,STOLEN,3710,"{'type': 'Point', 'coordinates': (-79.35331278, 43.80250819)}"
-3712,22426,GO-20199032643,THEFT UNDER,2019-10-04T00:00:00,2019,October,Friday,4,277,7,2019-10-04T00:00:00,2019,October,Friday,4,277,17,D53,Toronto,56,Leaside-Bennington (56),Schools During Supervised Activity,Educational,GI,TALON 3,MT,24,BLK,659.0,STOLEN,3711,"{'type': 'Point', 'coordinates': (-79.37353552000002, 43.71180147)}"
-3713,4464,GO-20191071378,THEFT UNDER - BICYCLE,2019-06-09T00:00:00,2019,June,Sunday,9,160,12,2019-06-10T00:00:00,2019,June,Monday,10,161,18,D33,Toronto,48,Hillcrest Village (48),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNK,,MT,21,,,STOLEN,3712,"{'type': 'Point', 'coordinates': (-79.35803271, 43.79196201)}"
-3714,22455,GO-20209011362,THEFT UNDER,2020-04-17T00:00:00,2020,April,Friday,17,108,13,2020-04-17T00:00:00,2020,April,Friday,17,108,13,D53,Toronto,56,Leaside-Bennington (56),"Apartment (Rooming House, Condo)",Apartment,TR,TREK 813 DS,EL,17,BLK,2400.0,STOLEN,3713,"{'type': 'Point', 'coordinates': (-79.36438406, 43.70937132)}"
-3715,4857,GO-20191389911,THEFT UNDER - BICYCLE,2019-07-24T00:00:00,2019,July,Wednesday,24,205,5,2019-07-24T00:00:00,2019,July,Wednesday,24,205,11,D33,Toronto,48,Hillcrest Village (48),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,SOLARIS,EL,18,RED,280.0,STOLEN,3714,"{'type': 'Point', 'coordinates': (-79.36202968, 43.792769)}"
-3716,22459,GO-2020789791,THEFT UNDER - BICYCLE,2020-04-18T00:00:00,2020,April,Saturday,18,109,22,2020-04-26T00:00:00,2020,April,Sunday,26,117,13,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,HYBRID,OT,21,GRY,,STOLEN,3715,"{'type': 'Point', 'coordinates': (-79.36289299, 43.70522283)}"
-3717,5435,GO-20199032005,THEFT UNDER - BICYCLE,2019-09-23T00:00:00,2019,September,Monday,23,266,10,2019-09-29T00:00:00,2019,September,Sunday,29,272,17,D33,Toronto,48,Hillcrest Village (48),Schools During Un-Supervised Activity,Educational,OT,KATO 4,MT,30,RED,1135.0,STOLEN,3716,"{'type': 'Point', 'coordinates': (-79.35182876, 43.79705548)}"
-3718,22476,GO-20209015035,THEFT UNDER - BICYCLE,2020-06-06T00:00:00,2020,June,Saturday,6,158,20,2020-06-09T00:00:00,2020,June,Tuesday,9,161,22,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GARNEAU,URBANIA 2,MT,7,WHI,0.0,STOLEN,3717,"{'type': 'Point', 'coordinates': (-79.36485564, 43.71063524)}"
-3719,22477,GO-20201079526,THEFT UNDER - BICYCLE,2020-06-12T00:00:00,2020,June,Friday,12,164,7,2020-06-12T00:00:00,2020,June,Friday,12,164,7,D53,Toronto,56,Leaside-Bennington (56),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN,SILVER KRANKED,RG,0,WHI,,UNKNOWN,3718,"{'type': 'Point', 'coordinates': (-79.36227733, 43.71408998)}"
-3720,22478,GO-20201079526,THEFT UNDER - BICYCLE,2020-06-12T00:00:00,2020,June,Friday,12,164,7,2020-06-12T00:00:00,2020,June,Friday,12,164,7,D53,Toronto,56,Leaside-Bennington (56),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,NORTHROCK,MT,12,OTH,,STOLEN,3719,"{'type': 'Point', 'coordinates': (-79.36227733, 43.71408998)}"
-3721,22516,GO-20209018878,THEFT UNDER - BICYCLE,2020-07-25T00:00:00,2020,July,Saturday,25,207,0,2020-07-29T00:00:00,2020,July,Wednesday,29,211,12,D53,Toronto,56,Leaside-Bennington (56),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RM,VERTEX,MT,10,BLU,1900.0,STOLEN,3720,"{'type': 'Point', 'coordinates': (-79.36658191, 43.69592593)}"
-3722,22530,GO-20201554171,THEFT UNDER - BICYCLE,2020-08-13T00:00:00,2020,August,Thursday,13,226,11,2020-08-20T00:00:00,2020,August,Thursday,20,233,10,D53,Toronto,56,Leaside-Bennington (56),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OPUS,FHAST 2.0,MT,10,BLKRED,4000.0,STOLEN,3721,"{'type': 'Point', 'coordinates': (-79.3779406, 43.71607254)}"
-3723,22572,GO-20209025215,THEFT UNDER - BICYCLE,2020-10-01T00:00:00,2020,October,Thursday,1,275,9,2020-10-02T00:00:00,2020,October,Friday,2,276,9,D53,Toronto,56,Leaside-Bennington (56),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,20,WHI,500.0,STOLEN,3722,"{'type': 'Point', 'coordinates': (-79.36438406, 43.70937132)}"
-3724,22815,GO-20149002951,THEFT UNDER,2014-04-18T00:00:00,2014,April,Friday,18,108,23,2014-04-21T00:00:00,2014,April,Monday,21,111,21,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ELITE,TO,24,SIL,860.0,STOLEN,3723,"{'type': 'Point', 'coordinates': (-79.37351413, 43.70884621)}"
-3725,22816,GO-20149002951,THEFT UNDER,2014-04-18T00:00:00,2014,April,Friday,18,108,23,2014-04-21T00:00:00,2014,April,Monday,21,111,21,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,7300,TO,24,WHI,1000.0,STOLEN,3724,"{'type': 'Point', 'coordinates': (-79.37351413, 43.70884621)}"
-3726,22817,GO-20149002951,THEFT UNDER,2014-04-18T00:00:00,2014,April,Friday,18,108,23,2014-04-21T00:00:00,2014,April,Monday,21,111,21,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KH,TOWN AND COUNTR,TO,24,SIL,450.0,STOLEN,3725,"{'type': 'Point', 'coordinates': (-79.37351413, 43.70884621)}"
-3727,22819,GO-20142058650,THEFT OVER,2014-04-20T00:00:00,2014,April,Sunday,20,110,12,2014-05-11T00:00:00,2014,May,Sunday,11,131,16,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TRANSITION,COVERT,MT,27,BLU,6000.0,STOLEN,3726,"{'type': 'Point', 'coordinates': (-79.36298065, 43.71585508)}"
-3728,22848,GO-20149004602,THEFT UNDER,2014-06-25T00:00:00,2014,June,Wednesday,25,176,11,2014-07-01T00:00:00,2014,July,Tuesday,1,182,16,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,2007 BUSHPILOT,MT,24,DBL,579.0,STOLEN,3727,"{'type': 'Point', 'coordinates': (-79.36361048, 43.70747562)}"
-3729,22892,GO-2015584351,THEFT UNDER,2015-04-08T00:00:00,2015,April,Wednesday,8,98,19,2015-04-09T00:00:00,2015,April,Thursday,9,99,8,D53,Toronto,56,Leaside-Bennington (56),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,RG,21,,450.0,STOLEN,3728,"{'type': 'Point', 'coordinates': (-79.36301503, 43.70587717)}"
-3730,22985,GO-20161294755,THEFT UNDER - BICYCLE,2016-07-17T00:00:00,2016,July,Sunday,17,199,0,2016-07-23T00:00:00,2016,July,Saturday,23,205,16,D53,Toronto,56,Leaside-Bennington (56),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NORCO,VFR2 FORMA,RG,6,WHI,1023.0,STOLEN,3729,"{'type': 'Point', 'coordinates': (-79.37727036, 43.71203098)}"
-3731,25407,GO-20169013032,THEFT UNDER - BICYCLE,2016-11-06T00:00:00,2016,November,Sunday,6,311,3,2016-11-06T00:00:00,2016,November,Sunday,6,311,9,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,MT,20,RED,200.0,STOLEN,3730,"{'type': 'Point', 'coordinates': (-79.37439414, 43.69428304)}"
-3732,25408,GO-20169013032,THEFT UNDER - BICYCLE,2016-11-06T00:00:00,2016,November,Sunday,6,311,3,2016-11-06T00:00:00,2016,November,Sunday,6,311,9,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,TO,25,GRY,200.0,STOLEN,3731,"{'type': 'Point', 'coordinates': (-79.37439414, 43.69428304)}"
-3733,25428,GO-20179002958,THEFT UNDER - BICYCLE,2017-03-08T00:00:00,2017,March,Wednesday,8,67,14,2017-03-08T00:00:00,2017,March,Wednesday,8,67,14,D53,Toronto,56,Leaside-Bennington (56),"Apartment (Rooming House, Condo)",Apartment,,,MT,10,BLU,600.0,STOLEN,3732,"{'type': 'Point', 'coordinates': (-79.36438406, 43.70937132)}"
-3734,25429,GO-20179002958,THEFT UNDER - BICYCLE,2017-03-08T00:00:00,2017,March,Wednesday,8,67,14,2017-03-08T00:00:00,2017,March,Wednesday,8,67,14,D53,Toronto,56,Leaside-Bennington (56),"Apartment (Rooming House, Condo)",Apartment,DB,,MT,10,BLK,500.0,STOLEN,3733,"{'type': 'Point', 'coordinates': (-79.36438406, 43.70937132)}"
-3735,25438,GO-2017816329,THEFT OVER - BICYCLE,2017-05-06T00:00:00,2017,May,Saturday,6,126,15,2017-05-10T00:00:00,2017,May,Wednesday,10,130,13,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,GRAVEL BIKE,OT,22,SIL,8000.0,STOLEN,3734,"{'type': 'Point', 'coordinates': (-79.36802813, 43.6999287)}"
-3736,25537,GO-20189015686,THEFT UNDER - BICYCLE,2018-05-20T00:00:00,2018,May,Sunday,20,140,1,2018-05-21T00:00:00,2018,May,Monday,21,141,14,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,"24"""" REVEL 3",MT,24,GRN,550.0,STOLEN,3735,"{'type': 'Point', 'coordinates': (-79.36575648, 43.70949895)}"
-3737,25616,GO-2019745796,THEFT UNDER,2019-04-20T00:00:00,2019,April,Saturday,20,110,11,2019-04-25T00:00:00,2019,April,Thursday,25,115,17,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,DEVINCI,STOCKHOLM,TO,18,BLK,1000.0,STOLEN,3736,"{'type': 'Point', 'coordinates': (-79.36611243, 43.71038600000001)}"
-3738,25617,GO-2019745796,THEFT UNDER,2019-04-20T00:00:00,2019,April,Saturday,20,110,11,2019-04-25T00:00:00,2019,April,Thursday,25,115,17,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,820,MT,21,BLKYEL,500.0,STOLEN,3737,"{'type': 'Point', 'coordinates': (-79.36611243, 43.71038600000001)}"
-3739,25642,GO-20199022348,THEFT UNDER - BICYCLE,2019-07-15T00:00:00,2019,July,Monday,15,196,14,2019-07-15T00:00:00,2019,July,Monday,15,196,14,D53,Toronto,56,Leaside-Bennington (56),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,,MT,7,BLK,800.0,STOLEN,3738,"{'type': 'Point', 'coordinates': (-79.37744918000001, 43.71309193)}"
-3740,25652,GO-20199024615,THEFT UNDER - BICYCLE,2019-07-31T00:00:00,2019,July,Wednesday,31,212,16,2019-08-01T00:00:00,2019,August,Thursday,1,213,10,D53,Toronto,56,Leaside-Bennington (56),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,CATALYST,RG,21,BLK,550.0,STOLEN,3739,"{'type': 'Point', 'coordinates': (-79.36885175, 43.68421332)}"
-3741,25659,GO-20199026053,THEFT UNDER - BICYCLE,2019-08-13T00:00:00,2019,August,Tuesday,13,225,8,2019-08-13T00:00:00,2019,August,Tuesday,13,225,15,D53,Toronto,56,Leaside-Bennington (56),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RG,21,BLK,550.0,STOLEN,3740,"{'type': 'Point', 'coordinates': (-79.36885175, 43.68421332)}"
-3742,25747,GO-20209017277,THEFT UNDER - BICYCLE,2020-07-10T00:00:00,2020,July,Friday,10,192,16,2020-07-10T00:00:00,2020,July,Friday,10,192,17,D53,Toronto,56,Leaside-Bennington (56),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KH,DJ25,MT,7,SIL,600.0,STOLEN,3741,"{'type': 'Point', 'coordinates': (-79.364762, 43.71356637)}"
-3743,5945,GO-20209007879,THEFT UNDER,2020-03-03T00:00:00,2020,March,Tuesday,3,63,16,2020-03-05T00:00:00,2020,March,Thursday,5,65,16,D54,Toronto,57,Broadview North (57),"Apartment (Rooming House, Condo)",Apartment,OT,BRISTOL,RG,21,GRY,600.0,STOLEN,3758,"{'type': 'Point', 'coordinates': (-79.35717999, 43.68292598)}"
-3744,25789,GO-20201884270,B&E,2020-09-27T00:00:00,2020,September,Sunday,27,271,0,2020-10-04T00:00:00,2020,October,Sunday,4,278,19,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,,RG,18,LBL,600.0,STOLEN,3742,"{'type': 'Point', 'coordinates': (-79.3748651, 43.71526427)}"
-3745,32,GO-20169015197,THEFT UNDER - BICYCLE,2016-09-18T00:00:00,2016,September,Sunday,18,262,20,2016-12-29T00:00:00,2016,December,Thursday,29,364,21,D54,Toronto,57,Broadview North (57),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KO,ZING,RC,10,DBL,903.0,STOLEN,3743,"{'type': 'Point', 'coordinates': (-79.35690832, 43.68393171)}"
-3746,91,GO-2017295663,B&E,2017-02-16T00:00:00,2017,February,Thursday,16,47,7,2017-02-16T00:00:00,2017,February,Thursday,16,47,18,D54,Toronto,57,Broadview North (57),"Apartment (Rooming House, Condo)",Apartment,LOUIS GARNEAU,LTD1,RC,25,YELSIL,500.0,STOLEN,3744,"{'type': 'Point', 'coordinates': (-79.35717999, 43.68292598)}"
-3747,426,GO-2017889266,B&E W'INTENT,2017-05-20T00:00:00,2017,May,Saturday,20,140,5,2017-05-20T00:00:00,2017,May,Saturday,20,140,10,D54,Toronto,57,Broadview North (57),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,UNKNOWN,MT,0,,,STOLEN,3745,"{'type': 'Point', 'coordinates': (-79.35354808, 43.69339156000001)}"
-3748,1476,GO-20179015344,THEFT UNDER - BICYCLE,2017-09-20T00:00:00,2017,September,Wednesday,20,263,20,2017-09-21T00:00:00,2017,September,Thursday,21,264,10,D54,Toronto,57,Broadview North (57),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,ROAM 3 HYBRID,MT,8,BLK,564.0,STOLEN,3746,"{'type': 'Point', 'coordinates': (-79.35717999, 43.68292598)}"
-3749,1551,GO-20179016086,THEFT UNDER - BICYCLE,2017-09-14T00:00:00,2017,September,Thursday,14,257,0,2017-09-29T00:00:00,2017,September,Friday,29,272,10,D54,Toronto,57,Broadview North (57),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,BI,,RG,6,WHI,0.0,STOLEN,3747,"{'type': 'Point', 'coordinates': (-79.35717999, 43.68292598)}"
-3750,1998,GO-20189002126,THEFT UNDER,2018-01-22T00:00:00,2018,January,Monday,22,22,8,2018-01-22T00:00:00,2018,January,Monday,22,22,21,D54,Toronto,57,Broadview North (57),"Apartment (Rooming House, Condo)",Apartment,OT,ELVIS,MT,1,BLK,800.0,STOLEN,3748,"{'type': 'Point', 'coordinates': (-79.35615685, 43.68910492)}"
-3751,3985,GO-20199000656,THEFT UNDER,2018-12-23T00:00:00,2018,December,Sunday,23,357,16,2019-01-06T00:00:00,2019,January,Sunday,6,6,17,D54,Toronto,57,Broadview North (57),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RA,ROPER,RG,9,BLK,1100.0,STOLEN,3749,"{'type': 'Point', 'coordinates': (-79.35327094, 43.68855225)}"
-3752,4108,GO-20199009623,THEFT UNDER,2019-03-20T00:00:00,2019,March,Wednesday,20,79,14,2019-03-25T00:00:00,2019,March,Monday,25,84,18,D54,Toronto,57,Broadview North (57),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,BRISTOL,RG,27,BLK,675.0,STOLEN,3750,"{'type': 'Point', 'coordinates': (-79.3544929, 43.6843941)}"
-3753,4299,GO-20199015534,THEFT UNDER,2019-04-23T00:00:00,2019,April,Tuesday,23,113,0,2019-05-18T00:00:00,2019,May,Saturday,18,138,14,D54,Toronto,57,Broadview North (57),"Apartment (Rooming House, Condo)",Apartment,OT,FAT BIKE,MT,10,GRN,1100.0,STOLEN,3751,"{'type': 'Point', 'coordinates': (-79.35615685, 43.68910492)}"
-3754,4650,GO-20199020689,THEFT UNDER,2019-06-27T00:00:00,2019,June,Thursday,27,178,15,2019-07-02T00:00:00,2019,July,Tuesday,2,183,1,D54,Toronto,57,Broadview North (57),"Apartment (Rooming House, Condo)",Apartment,NO,,MT,7,ONG,600.0,STOLEN,3752,"{'type': 'Point', 'coordinates': (-79.35747691, 43.68194106)}"
-3755,5018,GO-20199025607,THEFT UNDER,2019-08-09T00:00:00,2019,August,Friday,9,221,19,2019-08-10T00:00:00,2019,August,Saturday,10,222,8,D54,Toronto,57,Broadview North (57),Schools During Un-Supervised Activity,Educational,UK,700C/21SPEED,MT,21,GRY,400.0,STOLEN,3753,"{'type': 'Point', 'coordinates': (-79.34949615, 43.68433756)}"
-3756,5239,GO-20199028843,THEFT UNDER,2019-09-03T00:00:00,2019,September,Tuesday,3,246,6,2019-09-05T00:00:00,2019,September,Thursday,5,248,11,D54,Toronto,57,Broadview North (57),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,OT,1,BLK,850.0,STOLEN,3754,"{'type': 'Point', 'coordinates': (-79.35532275, 43.68328708)}"
-3757,5240,GO-20199028843,THEFT UNDER,2019-09-03T00:00:00,2019,September,Tuesday,3,246,6,2019-09-05T00:00:00,2019,September,Thursday,5,248,11,D54,Toronto,57,Broadview North (57),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,7,GRN,450.0,STOLEN,3755,"{'type': 'Point', 'coordinates': (-79.35532275, 43.68328708)}"
-3758,5337,GO-20199030129,THEFT UNDER,2019-09-15T00:00:00,2019,September,Sunday,15,258,17,2019-09-15T00:00:00,2019,September,Sunday,15,258,18,D54,Toronto,57,Broadview North (57),"Apartment (Rooming House, Condo)",Apartment,,ROYAL,MT,21,GRY,219.0,STOLEN,3756,"{'type': 'Point', 'coordinates': (-79.35615685, 43.68910492)}"
-3759,5483,GO-20199032904,THEFT UNDER,2019-10-03T00:00:00,2019,October,Thursday,3,276,1,2019-10-07T00:00:00,2019,October,Monday,7,280,12,D54,Toronto,57,Broadview North (57),"Apartment (Rooming House, Condo)",Apartment,NO,INDIE 4,RG,21,BLK,550.0,STOLEN,3757,"{'type': 'Point', 'coordinates': (-79.35327734, 43.6846346)}"
-3760,6258,GO-20209014020,THEFT UNDER,2020-05-27T00:00:00,2020,May,Wednesday,27,148,9,2020-05-27T00:00:00,2020,May,Wednesday,27,148,12,D54,Toronto,57,Broadview North (57),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,,MT,10,,200.0,STOLEN,3759,"{'type': 'Point', 'coordinates': (-79.35582522, 43.69194455)}"
-3761,6283,GO-20201009296,THEFT UNDER - BICYCLE,2020-05-26T00:00:00,2020,May,Tuesday,26,147,22,2020-06-02T00:00:00,2020,June,Tuesday,2,154,12,D54,Toronto,57,Broadview North (57),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SCHWINN,,BM,1,SIL,270.0,STOLEN,3760,"{'type': 'Point', 'coordinates': (-79.35290925, 43.687578310000006)}"
-3762,6290,GO-20209014446,THEFT UNDER,2020-06-01T00:00:00,2020,June,Monday,1,153,15,2020-06-03T00:00:00,2020,June,Wednesday,3,155,10,D54,Toronto,57,Broadview North (57),"Apartment (Rooming House, Condo)",Apartment,OT,CTM,MT,21,GRY,400.0,STOLEN,3761,"{'type': 'Point', 'coordinates': (-79.3536243, 43.68950641)}"
-3763,6291,GO-20209014446,THEFT UNDER,2020-06-01T00:00:00,2020,June,Monday,1,153,15,2020-06-03T00:00:00,2020,June,Wednesday,3,155,10,D54,Toronto,57,Broadview North (57),"Apartment (Rooming House, Condo)",Apartment,OT,CL5,TO,21,GRY,400.0,STOLEN,3762,"{'type': 'Point', 'coordinates': (-79.3536243, 43.68950641)}"
-3764,6292,GO-20201021913,PROPERTY - FOUND,2020-06-03T00:00:00,2020,June,Wednesday,3,155,13,2020-06-03T00:00:00,2020,June,Wednesday,3,155,13,D54,Toronto,57,Broadview North (57),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,INTRIGUE,MT,12,GRY,,RECOVERED,3763,"{'type': 'Point', 'coordinates': (-79.35973918, 43.68664357)}"
-3765,6293,GO-20201021913,PROPERTY - FOUND,2020-06-03T00:00:00,2020,June,Wednesday,3,155,13,2020-06-03T00:00:00,2020,June,Wednesday,3,155,13,D54,Toronto,57,Broadview North (57),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,HARDROCK,MT,16,,,RECOVERED,3764,"{'type': 'Point', 'coordinates': (-79.35973918, 43.68664357)}"
-3766,6294,GO-20201021913,PROPERTY - FOUND,2020-06-03T00:00:00,2020,June,Wednesday,3,155,13,2020-06-03T00:00:00,2020,June,Wednesday,3,155,13,D54,Toronto,57,Broadview North (57),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,HARDROCK,MT,16,,,RECOVERED,3765,"{'type': 'Point', 'coordinates': (-79.35973918, 43.68664357)}"
-3767,6309,GO-20209014687,THEFT UNDER,2020-06-03T00:00:00,2020,June,Wednesday,3,155,12,2020-06-05T00:00:00,2020,June,Friday,5,157,18,D54,Toronto,57,Broadview North (57),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MO,CANADIAN TIRE,MT,21,BLK,220.0,STOLEN,3766,"{'type': 'Point', 'coordinates': (-79.35083144, 43.68796984)}"
-3768,6764,GO-20209018715,THEFT UNDER,2020-07-27T00:00:00,2020,July,Monday,27,209,16,2020-07-27T00:00:00,2020,July,Monday,27,209,19,D54,Toronto,57,Broadview North (57),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DB,,MT,20,BLK,200.0,STOLEN,3767,"{'type': 'Point', 'coordinates': (-79.35128009, 43.69198434)}"
-3769,7071,GO-20209021293,THEFT FROM MOTOR VEHICLE UNDER,2020-08-22T00:00:00,2020,August,Saturday,22,235,2,2020-08-25T00:00:00,2020,August,Tuesday,25,238,14,D54,Toronto,57,Broadview North (57),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,RG,24,BLU,800.0,STOLEN,3768,"{'type': 'Point', 'coordinates': (-79.34984557, 43.68530219)}"
-3770,7284,GO-20209023715,THEFT UNDER,2020-09-17T00:00:00,2020,September,Thursday,17,261,17,2020-09-18T00:00:00,2020,September,Friday,18,262,11,D54,Toronto,57,Broadview North (57),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,AVALANCHE,MT,7,ONG,350.0,STOLEN,3769,"{'type': 'Point', 'coordinates': (-79.35479655, 43.6852032)}"
-3771,7493,GO-20209026793,THEFT UNDER,2020-10-17T00:00:00,2020,October,Saturday,17,291,17,2020-10-17T00:00:00,2020,October,Saturday,17,291,18,D54,Toronto,57,Broadview North (57),"Apartment (Rooming House, Condo)",Apartment,UK,HOOLIGAN,MT,10,DBL,300.0,STOLEN,3770,"{'type': 'Point', 'coordinates': (-79.35327094, 43.68855225)}"
-3772,7494,GO-20209026793,THEFT UNDER,2020-10-17T00:00:00,2020,October,Saturday,17,291,17,2020-10-17T00:00:00,2020,October,Saturday,17,291,18,D54,Toronto,57,Broadview North (57),"Apartment (Rooming House, Condo)",Apartment,SU,,MT,10,YEL,300.0,STOLEN,3771,"{'type': 'Point', 'coordinates': (-79.35327094, 43.68855225)}"
-3773,7570,GO-20202037032,THEFT UNDER - BICYCLE,2020-10-22T00:00:00,2020,October,Thursday,22,296,18,2020-10-27T00:00:00,2020,October,Tuesday,27,301,10,D54,Toronto,57,Broadview North (57),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OPUS,AVRO 4.0,MT,27,RED,1400.0,STOLEN,3772,"{'type': 'Point', 'coordinates': (-79.34877499, 43.68943255)}"
-3774,7571,GO-20202037032,THEFT UNDER - BICYCLE,2020-10-22T00:00:00,2020,October,Thursday,22,296,18,2020-10-27T00:00:00,2020,October,Tuesday,27,301,10,D54,Toronto,57,Broadview North (57),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KONA,KAHUNA,MT,27,ONG,1200.0,STOLEN,3773,"{'type': 'Point', 'coordinates': (-79.34877499, 43.68943255)}"
-3775,7573,GO-20202059428,THEFT OF EBIKE UNDER $5000,2020-10-21T00:00:00,2020,October,Wednesday,21,295,10,2020-10-31T00:00:00,2020,October,Saturday,31,305,11,D54,Toronto,57,Broadview North (57),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GM,ARIV VERITY,EL,10,WHI,3500.0,STOLEN,3774,"{'type': 'Point', 'coordinates': (-79.34776044, 43.68463573)}"
-3776,7578,GO-20202069429,THEFT OF EBIKE UNDER $5000,2020-10-31T00:00:00,2020,October,Saturday,31,305,19,2020-10-31T00:00:00,2020,October,Saturday,31,305,23,D54,Toronto,57,Broadview North (57),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,XINLAIKE,LAIK,EL,10,BLK,1500.0,STOLEN,3775,"{'type': 'Point', 'coordinates': (-79.35083144, 43.68796984)}"
-3777,8872,GO-20149006798,THEFT UNDER,2014-09-09T00:00:00,2014,September,Tuesday,9,252,9,2014-09-11T00:00:00,2014,September,Thursday,11,254,14,D54,Toronto,57,Broadview North (57),Schools During Supervised Activity,Educational,UK,,MT,7,BLK,450.0,STOLEN,3776,"{'type': 'Point', 'coordinates': (-79.35049388, 43.68705299)}"
-3778,9666,GO-20159003136,THEFT UNDER,2015-05-26T00:00:00,2015,May,Tuesday,26,146,17,2015-05-27T00:00:00,2015,May,Wednesday,27,147,13,D54,Toronto,57,Broadview North (57),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,1,WHI,600.0,STOLEN,3777,"{'type': 'Point', 'coordinates': (-79.35690832, 43.68393171)}"
-3779,10141,GO-20159005142,THEFT UNDER,2015-07-29T00:00:00,2015,July,Wednesday,29,210,3,2015-07-29T00:00:00,2015,July,Wednesday,29,210,18,D54,Toronto,57,Broadview North (57),"Apartment (Rooming House, Condo)",Apartment,OT,DAYMAK DAYTONA,EL,32,MRN,1600.0,STOLEN,3778,"{'type': 'Point', 'coordinates': (-79.35327094, 43.68855225)}"
-3780,10396,GO-20159006686,THEFT UNDER,2015-08-26T00:00:00,2015,August,Wednesday,26,238,19,2015-09-02T00:00:00,2015,September,Wednesday,2,245,22,D54,Toronto,57,Broadview North (57),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,MILANO M,RG,21,SIL,670.0,STOLEN,3779,"{'type': 'Point', 'coordinates': (-79.35532275, 43.68328708)}"
-3781,10744,GO-20159009609,THEFT UNDER,2015-11-02T00:00:00,2015,November,Monday,2,306,19,2015-11-10T00:00:00,2015,November,Tuesday,10,314,23,D54,Toronto,57,Broadview North (57),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RM,,OT,10,BLK,500.0,STOLEN,3780,"{'type': 'Point', 'coordinates': (-79.35615685, 43.68910492)}"
-3782,10745,GO-20159009609,THEFT UNDER,2015-11-02T00:00:00,2015,November,Monday,2,306,19,2015-11-10T00:00:00,2015,November,Tuesday,10,314,23,D54,Toronto,57,Broadview North (57),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,CX2,OT,20,WHI,1000.0,STOLEN,3781,"{'type': 'Point', 'coordinates': (-79.35615685, 43.68910492)}"
-3783,11020,GO-2016386896,B&E,2016-03-04T00:00:00,2016,March,Friday,4,64,22,2016-03-05T00:00:00,2016,March,Saturday,5,65,11,D54,Toronto,57,Broadview North (57),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,10,GRN,300.0,STOLEN,3782,"{'type': 'Point', 'coordinates': (-79.34886883000001, 43.682695)}"
-3784,11021,GO-2016386896,B&E,2016-03-04T00:00:00,2016,March,Friday,4,64,22,2016-03-05T00:00:00,2016,March,Saturday,5,65,11,D54,Toronto,57,Broadview North (57),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,10,REDWHI,400.0,STOLEN,3783,"{'type': 'Point', 'coordinates': (-79.34886883000001, 43.682695)}"
-3785,11032,GO-2016386896,B&E,2016-03-04T00:00:00,2016,March,Friday,4,64,22,2016-03-05T00:00:00,2016,March,Saturday,5,65,11,D54,Toronto,57,Broadview North (57),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,MT,0,GRN,300.0,STOLEN,3784,"{'type': 'Point', 'coordinates': (-79.34886883000001, 43.682695)}"
-3786,11033,GO-2016386896,B&E,2016-03-04T00:00:00,2016,March,Friday,4,64,22,2016-03-05T00:00:00,2016,March,Saturday,5,65,11,D54,Toronto,57,Broadview North (57),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,MT,0,REDBLK,450.0,STOLEN,3785,"{'type': 'Point', 'coordinates': (-79.34886883000001, 43.682695)}"
-3787,11057,GO-20169002434,THEFT UNDER - BICYCLE,2016-03-13T00:00:00,2016,March,Sunday,13,73,13,2016-03-17T00:00:00,2016,March,Thursday,17,77,12,D54,Toronto,57,Broadview North (57),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,BAD BOY,RG,27,BLK,1100.0,STOLEN,3786,"{'type': 'Point', 'coordinates': (-79.35083144, 43.68796984)}"
-3788,12051,GO-20169008521,THEFT UNDER,2016-05-11T00:00:00,2016,May,Wednesday,11,132,9,2016-08-10T00:00:00,2016,August,Wednesday,10,223,21,D54,Toronto,57,Broadview North (57),"Apartment (Rooming House, Condo)",Apartment,OT,SIRRUS,RG,24,BLK,500.0,STOLEN,3787,"{'type': 'Point', 'coordinates': (-79.35690832, 43.68393171)}"
-3789,12296,GO-20161595955,THEFT FROM MOTOR VEHICLE OVER,2016-09-08T00:00:00,2016,September,Thursday,8,252,14,2016-09-08T00:00:00,2016,September,Thursday,8,252,14,D54,Toronto,57,Broadview North (57),"Single Home, House (Attach Garage, Cottage, Mobile)",House,LOOK,795,RC,22,BLURED,,STOLEN,3788,"{'type': 'Point', 'coordinates': (-79.35234826, 43.69560883)}"
-3790,12297,GO-20161595955,THEFT FROM MOTOR VEHICLE OVER,2016-09-08T00:00:00,2016,September,Thursday,8,252,14,2016-09-08T00:00:00,2016,September,Thursday,8,252,14,D54,Toronto,57,Broadview North (57),"Single Home, House (Attach Garage, Cottage, Mobile)",House,LITE SPEED,VORTEX,RC,20,SIL,,STOLEN,3789,"{'type': 'Point', 'coordinates': (-79.35234826, 43.69560883)}"
-3791,12730,GO-20169013042,THEFT UNDER,2016-11-04T00:00:00,2016,November,Friday,4,309,20,2016-11-06T00:00:00,2016,November,Sunday,6,311,14,D54,Toronto,57,Broadview North (57),"Apartment (Rooming House, Condo)",Apartment,NO,,MT,15,BLK,1400.0,STOLEN,3790,"{'type': 'Point', 'coordinates': (-79.35690832, 43.68393171)}"
-3792,12805,GO-20162069416,THEFT UNDER - BICYCLE,2016-11-20T00:00:00,2016,November,Sunday,20,325,12,2016-11-21T00:00:00,2016,November,Monday,21,326,17,D54,Toronto,57,Broadview North (57),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,TARMAC SL4,RC,18,BLKBLU,2000.0,STOLEN,3791,"{'type': 'Point', 'coordinates': (-79.35690832, 43.68393171)}"
-3793,12941,GO-20191136585,THEFT FROM MOTOR VEHICLE UNDER,2019-06-19T00:00:00,2019,June,Wednesday,19,170,0,2019-06-19T00:00:00,2019,June,Wednesday,19,170,15,D54,Toronto,57,Broadview North (57),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BMX,CHILDS,MT,1,ONGGRY,200.0,STOLEN,3792,"{'type': 'Point', 'coordinates': (-79.35083144, 43.68796984)}"
-3794,14067,GO-20161024514,THEFT UNDER,2016-06-12T00:00:00,2016,June,Sunday,12,164,9,2016-06-12T00:00:00,2016,June,Sunday,12,164,19,D54,Toronto,57,Broadview North (57),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,,BM,1,GRY,500.0,STOLEN,3793,"{'type': 'Point', 'coordinates': (-79.3536243, 43.68950641)}"
-3795,14078,GO-20169007260,THEFT UNDER,2016-07-15T00:00:00,2016,July,Friday,15,197,6,2016-07-15T00:00:00,2016,July,Friday,15,197,13,D54,Toronto,57,Broadview North (57),Schools During Un-Supervised Activity,Educational,KO,,MT,21,BLK,300.0,STOLEN,3794,"{'type': 'Point', 'coordinates': (-79.35083144, 43.68796984)}"
-3796,14163,GO-20179008422,THEFT UNDER - BICYCLE,2017-06-18T00:00:00,2017,June,Sunday,18,169,17,2017-06-19T00:00:00,2017,June,Monday,19,170,17,D54,Toronto,57,Broadview North (57),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RG,24,BLK,700.0,STOLEN,3795,"{'type': 'Point', 'coordinates': (-79.35615685, 43.68910492)}"
-3797,14190,GO-20179015004,THEFT UNDER - BICYCLE,2017-09-17T00:00:00,2017,September,Sunday,17,260,16,2017-09-17T00:00:00,2017,September,Sunday,17,260,19,D54,Toronto,57,Broadview North (57),"Apartment (Rooming House, Condo)",Apartment,UK,ZERMATT,OT,24,DGR,848.0,STOLEN,3796,"{'type': 'Point', 'coordinates': (-79.35083144, 43.68796984)}"
-3798,15956,GO-20151205424,THEFT UNDER,2015-07-14T00:00:00,2015,July,Tuesday,14,195,16,2015-07-16T00:00:00,2015,July,Thursday,16,197,7,D54,Toronto,57,Broadview North (57),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,EL,1,,1000.0,STOLEN,3797,"{'type': 'Point', 'coordinates': (-79.35083144, 43.68796984)}"
-3799,15962,GO-20151367026,B&E,2015-08-06T00:00:00,2015,August,Thursday,6,218,15,2015-08-09T00:00:00,2015,August,Sunday,9,221,23,D54,Toronto,57,Broadview North (57),"Apartment (Rooming House, Condo)",Apartment,OTHER,,MT,12,,,STOLEN,3798,"{'type': 'Point', 'coordinates': (-79.35327094, 43.68855225)}"
-3800,15963,GO-20151367026,B&E,2015-08-06T00:00:00,2015,August,Thursday,6,218,15,2015-08-09T00:00:00,2015,August,Sunday,9,221,23,D54,Toronto,57,Broadview North (57),"Apartment (Rooming House, Condo)",Apartment,OTHER,,MT,12,,,STOLEN,3799,"{'type': 'Point', 'coordinates': (-79.35327094, 43.68855225)}"
-3801,15964,GO-20151367026,B&E,2015-08-06T00:00:00,2015,August,Thursday,6,218,15,2015-08-09T00:00:00,2015,August,Sunday,9,221,23,D54,Toronto,57,Broadview North (57),"Apartment (Rooming House, Condo)",Apartment,OTHER,,MT,12,,,STOLEN,3800,"{'type': 'Point', 'coordinates': (-79.35327094, 43.68855225)}"
-3802,16059,GO-20209020585,THEFT UNDER,2020-08-18T00:00:00,2020,August,Tuesday,18,231,15,2020-08-18T00:00:00,2020,August,Tuesday,18,231,16,D54,Toronto,57,Broadview North (57),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SC,GTX-2,RG,21,RED,400.0,STOLEN,3801,"{'type': 'Point', 'coordinates': (-79.35083144, 43.68796984)}"
-3803,16065,GO-20201609214,B&E W'INTENT,2020-08-23T00:00:00,2020,August,Sunday,23,236,0,2020-08-26T00:00:00,2020,August,Wednesday,26,239,13,D54,Toronto,57,Broadview North (57),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN,,RG,10,,,STOLEN,3802,"{'type': 'Point', 'coordinates': (-79.35747691, 43.68194106)}"
-3804,16090,GO-20209025722,THEFT UNDER,2020-10-06T00:00:00,2020,October,Tuesday,6,280,22,2020-10-07T00:00:00,2020,October,Wednesday,7,281,20,D54,Toronto,57,Broadview North (57),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,SEEK 0,RG,8,GRY,500.0,STOLEN,3803,"{'type': 'Point', 'coordinates': (-79.35532275, 43.68328708)}"
-3805,16092,GO-20201923275,B&E,2020-10-10T00:00:00,2020,October,Saturday,10,284,4,2020-10-10T00:00:00,2020,October,Saturday,10,284,4,D54,Toronto,57,Broadview North (57),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,OT,0,BLK,,STOLEN,3804,"{'type': 'Point', 'coordinates': (-79.35747691, 43.68194106)}"
-3806,16093,GO-20201923275,B&E,2020-10-10T00:00:00,2020,October,Saturday,10,284,4,2020-10-10T00:00:00,2020,October,Saturday,10,284,4,D54,Toronto,57,Broadview North (57),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,OT,0,WHI,,STOLEN,3805,"{'type': 'Point', 'coordinates': (-79.35747691, 43.68194106)}"
-3807,18726,GO-20209019290,THEFT UNDER,2020-08-01T00:00:00,2020,August,Saturday,1,214,0,2020-08-04T00:00:00,2020,August,Tuesday,4,217,0,D54,Toronto,57,Broadview North (57),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,5,GRN,1500.0,STOLEN,3806,"{'type': 'Point', 'coordinates': (-79.34657099, 43.68358935)}"
-3808,8237,GO-20149004401,THEFT UNDER,2014-06-23T00:00:00,2014,June,Monday,23,174,10,2014-06-24T00:00:00,2014,June,Tuesday,24,175,15,D32,Toronto,50,Newtonbrook East (50),Go Station,Transit,TR,4300,MT,21,SIL,600.0,STOLEN,3855,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}"
-3809,18756,GO-20201705028,THEFT UNDER,2020-09-03T00:00:00,2020,September,Thursday,3,247,8,2020-09-09T00:00:00,2020,September,Wednesday,9,253,10,D54,Toronto,57,Broadview North (57),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,7.2,OT,24,BLK,,STOLEN,3807,"{'type': 'Point', 'coordinates': (-79.34886883000001, 43.682695)}"
-3810,19106,GO-20171495841,B&E,2017-08-17T00:00:00,2017,August,Thursday,17,229,13,2017-08-19T00:00:00,2017,August,Saturday,19,231,1,D54,Toronto,57,Broadview North (57),"Apartment (Rooming House, Condo)",Apartment,NORCO,VFR4,MT,24,RED,,STOLEN,3808,"{'type': 'Point', 'coordinates': (-79.35690832, 43.68393171)}"
-3811,19294,GO-20199031086,THEFT UNDER,2019-09-21T00:00:00,2019,September,Saturday,21,264,21,2019-09-22T00:00:00,2019,September,Sunday,22,265,17,D54,Toronto,57,Broadview North (57),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,HARO VI,MT,12,BLU,400.0,STOLEN,3809,"{'type': 'Point', 'coordinates': (-79.3549363, 43.68931678)}"
-3812,19335,GO-20209006247,THEFT UNDER,2020-02-20T00:00:00,2020,February,Thursday,20,51,6,2020-02-21T00:00:00,2020,February,Friday,21,52,11,D54,Toronto,57,Broadview North (57),"Apartment (Rooming House, Condo)",Apartment,UK,EPIC COMP,MT,27,BLK,900.0,STOLEN,3810,"{'type': 'Point', 'coordinates': (-79.3536243, 43.68950641)}"
-3813,5687,GO-20192193902,THEFT UNDER,2019-11-12T00:00:00,2019,November,Tuesday,12,316,12,2019-11-14T00:00:00,2019,November,Thursday,14,318,15,D33,Toronto,48,Hillcrest Village (48),Universities / Colleges,Educational,OTHER,MOSCOW,EL,1,WHI,1600.0,STOLEN,3811,"{'type': 'Point', 'coordinates': (-79.35182876, 43.79705548)}"
-3814,8893,GO-20149006921,THEFT UNDER,2014-08-25T00:00:00,2014,August,Monday,25,237,20,2014-09-15T00:00:00,2014,September,Monday,15,258,18,D33,Toronto,48,Hillcrest Village (48),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,VICE,MT,18,,140.0,STOLEN,3812,"{'type': 'Point', 'coordinates': (-79.37065558, 43.804985)}"
-3815,9108,GO-20143166325,THEFT UNDER,2014-10-24T00:00:00,2014,October,Friday,24,297,9,2014-10-24T00:00:00,2014,October,Friday,24,297,13,D33,Toronto,48,Hillcrest Village (48),Schools During Un-Supervised Activity,Educational,GIANT,SC1800,OT,21,BLU,150.0,STOLEN,3813,"{'type': 'Point', 'coordinates': (-79.36727868, 43.8060345)}"
-3816,9577,GO-20159002704,THEFT UNDER,2015-05-12T00:00:00,2015,May,Tuesday,12,132,20,2015-05-13T00:00:00,2015,May,Wednesday,13,133,17,D33,Toronto,48,Hillcrest Village (48),"Apartment (Rooming House, Condo)",Apartment,SC,"MERIDIAN 26""""",TR,1,RED,,STOLEN,3814,"{'type': 'Point', 'coordinates': (-79.35807772, 43.81114186)}"
-3817,9708,GO-20159003270,THEFT UNDER,2015-05-29T00:00:00,2015,May,Friday,29,149,19,2015-06-02T00:00:00,2015,June,Tuesday,2,153,13,D33,Toronto,48,Hillcrest Village (48),Schools During Un-Supervised Activity,Educational,UK,BEST,RG,10,BLU,100.0,STOLEN,3815,"{'type': 'Point', 'coordinates': (-79.356229, 43.8099919)}"
-3818,11096,GO-2016569005,THEFT UNDER - BICYCLE,2016-03-29T00:00:00,2016,March,Tuesday,29,89,15,2016-03-30T00:00:00,2016,March,Wednesday,30,90,9,D33,Toronto,48,Hillcrest Village (48),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,,MT,10,BLK,50.0,STOLEN,3816,"{'type': 'Point', 'coordinates': (-79.35803271, 43.79196201)}"
-3819,13529,GO-20191990602,THEFT UNDER - BICYCLE,2019-10-14T00:00:00,2019,October,Monday,14,287,15,2019-10-15T00:00:00,2019,October,Tuesday,15,288,14,D33,Toronto,48,Hillcrest Village (48),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,RG,3,BLKRED,150.0,STOLEN,3817,"{'type': 'Point', 'coordinates': (-79.34789556, 43.8034697)}"
-3820,14001,GO-20169009431,THEFT UNDER - BICYCLE,2016-08-20T00:00:00,2016,August,Saturday,20,233,21,2016-08-24T00:00:00,2016,August,Wednesday,24,237,17,D33,Toronto,48,Hillcrest Village (48),Universities / Colleges,Educational,CC,VANDAL,MT,21,RED,360.0,STOLEN,3818,"{'type': 'Point', 'coordinates': (-79.35182876, 43.79705548)}"
-3821,16995,GO-20179017561,THEFT UNDER - BICYCLE,2017-10-19T00:00:00,2017,October,Thursday,19,292,19,2017-10-19T00:00:00,2017,October,Thursday,19,292,21,D33,Toronto,48,Hillcrest Village (48),"Gas Station (Self, Full, Attached Convenience)",Commercial,GI,DEFY ADVANCED 2,RC,2,GRN,2149.0,STOLEN,3819,"{'type': 'Point', 'coordinates': (-79.37025604, 43.79960739)}"
-3822,16996,GO-20179017561,THEFT UNDER - BICYCLE,2017-10-19T00:00:00,2017,October,Thursday,19,292,19,2017-10-19T00:00:00,2017,October,Thursday,19,292,21,D33,Toronto,48,Hillcrest Village (48),"Gas Station (Self, Full, Attached Convenience)",Commercial,UK,,RG,1,DGR,0.0,STOLEN,3820,"{'type': 'Point', 'coordinates': (-79.37025604, 43.79960739)}"
-3823,17095,GO-20189027860,THEFT UNDER - BICYCLE,2018-08-20T00:00:00,2018,August,Monday,20,232,17,2018-08-25T00:00:00,2018,August,Saturday,25,237,0,D33,Toronto,48,Hillcrest Village (48),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,SPORT,OT,10,WHI,0.0,STOLEN,3821,"{'type': 'Point', 'coordinates': (-79.35519348, 43.79474924)}"
-3824,17138,GO-2015948838,THEFT UNDER,2015-05-18T00:00:00,2015,May,Monday,18,138,22,2015-06-06T00:00:00,2015,June,Saturday,6,157,15,D33,Toronto,48,Hillcrest Village (48),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,,MT,0,BLK,50.0,STOLEN,3822,"{'type': 'Point', 'coordinates': (-79.35211324, 43.81078061)}"
-3825,17485,GO-20143028390,THEFT UNDER,2014-10-02T00:00:00,2014,October,Thursday,2,275,14,2014-10-02T00:00:00,2014,October,Thursday,2,275,14,D33,Toronto,48,Hillcrest Village (48),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,,MT,18,WHI,250.0,STOLEN,3823,"{'type': 'Point', 'coordinates': (-79.33627417, 43.80408597000001)}"
-3826,20011,GO-2019105647,THREAT - PERSON,2019-01-17T00:00:00,2019,January,Thursday,17,17,16,2019-01-17T00:00:00,2019,January,Thursday,17,17,17,D33,Toronto,48,Hillcrest Village (48),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,RG,6,PLE,100.0,STOLEN,3824,"{'type': 'Point', 'coordinates': (-79.35784791, 43.79390959)}"
-3827,20256,GO-20171834720,THEFT UNDER - BICYCLE,2017-09-13T00:00:00,2017,September,Wednesday,13,256,19,2017-10-10T00:00:00,2017,October,Tuesday,10,283,9,D33,Toronto,48,Hillcrest Village (48),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,AVALANCHE,MT,27,BLKBLU,2000.0,STOLEN,3825,"{'type': 'Point', 'coordinates': (-79.35182876, 43.79705548)}"
-3828,20260,GO-20179017561,THEFT UNDER - BICYCLE,2017-10-19T00:00:00,2017,October,Thursday,19,292,19,2017-10-19T00:00:00,2017,October,Thursday,19,292,21,D33,Toronto,48,Hillcrest Village (48),"Gas Station (Self, Full, Attached Convenience)",Commercial,GI,DEFY ADVANCED 2,RC,2,GRN,2150.0,STOLEN,3826,"{'type': 'Point', 'coordinates': (-79.37025604, 43.79960739)}"
-3829,20261,GO-20179017561,THEFT UNDER - BICYCLE,2017-10-19T00:00:00,2017,October,Thursday,19,292,19,2017-10-19T00:00:00,2017,October,Thursday,19,292,21,D33,Toronto,48,Hillcrest Village (48),"Gas Station (Self, Full, Attached Convenience)",Commercial,UK,,RG,2,,0.0,STOLEN,3827,"{'type': 'Point', 'coordinates': (-79.37025604, 43.79960739)}"
-3830,20461,GO-20151965617,THEFT UNDER,2015-11-11T00:00:00,2015,November,Wednesday,11,315,16,2015-11-16T00:00:00,2015,November,Monday,16,320,9,D33,Toronto,48,Hillcrest Village (48),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,MT,7,BLKRED,120.0,STOLEN,3828,"{'type': 'Point', 'coordinates': (-79.35803271, 43.79196201)}"
-3831,20869,GO-20149004175,THEFT UNDER,2014-06-13T00:00:00,2014,June,Friday,13,164,15,2014-06-17T00:00:00,2014,June,Tuesday,17,168,11,D33,Toronto,48,Hillcrest Village (48),Schools During Un-Supervised Activity,Educational,CC,CCM,MT,24,WHI,600.0,STOLEN,3829,"{'type': 'Point', 'coordinates': (-79.36727868, 43.8060345)}"
-3832,23541,GO-20189018953,THEFT UNDER,2018-06-11T00:00:00,2018,June,Monday,11,162,12,2018-06-16T00:00:00,2018,June,Saturday,16,167,15,D33,Toronto,48,Hillcrest Village (48),Universities / Colleges,Educational,CA,F7,MT,24,WHI,500.0,STOLEN,3830,"{'type': 'Point', 'coordinates': (-79.35182876, 43.79705548)}"
-3833,23554,GO-20189022318,THEFT UNDER - BICYCLE,2018-07-12T00:00:00,2018,July,Thursday,12,193,16,2018-07-13T00:00:00,2018,July,Friday,13,194,15,D33,Toronto,48,Hillcrest Village (48),Universities / Colleges,Educational,SC,,RG,12,DBL,0.0,STOLEN,3831,"{'type': 'Point', 'coordinates': (-79.35182876, 43.79705548)}"
-3834,23692,GO-20169004237,THEFT UNDER - BICYCLE,2016-04-20T00:00:00,2016,April,Wednesday,20,111,10,2016-05-06T00:00:00,2016,May,Friday,6,127,17,D33,Toronto,48,Hillcrest Village (48),"Apartment (Rooming House, Condo)",Apartment,IN,,MT,22,BLU,0.0,STOLEN,3832,"{'type': 'Point', 'coordinates': (-79.35519348, 43.79474924)}"
-3835,1866,GO-20179020237,THEFT UNDER - BICYCLE,2017-11-20T00:00:00,2017,November,Monday,20,324,3,2017-11-21T00:00:00,2017,November,Tuesday,21,325,22,D33,Toronto,49,Bayview Woods-Steeles (49),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,TEMPO 700C,RG,21,SIL,300.0,STOLEN,3833,"{'type': 'Point', 'coordinates': (-79.37817787, 43.80385327)}"
-3836,1895,GO-20173085479,THEFT UNDER - BICYCLE,2017-11-22T00:00:00,2017,November,Wednesday,22,326,15,2017-11-28T00:00:00,2017,November,Tuesday,28,332,6,D33,Toronto,49,Bayview Woods-Steeles (49),"Single Home, House (Attach Garage, Cottage, Mobile)",House,INFINITY\,MENS,RG,0,BLK,300.0,STOLEN,3834,"{'type': 'Point', 'coordinates': (-79.37410261, 43.79434227)}"
-3837,4532,GO-20199019118,THEFT UNDER,2019-06-15T00:00:00,2019,June,Saturday,15,166,18,2019-06-16T00:00:00,2019,June,Sunday,16,167,9,D33,Toronto,49,Bayview Woods-Steeles (49),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,,MT,15,DGR,300.0,STOLEN,3835,"{'type': 'Point', 'coordinates': (-79.38413382, 43.79511564)}"
-3838,9365,GO-2015563537,PROPERTY - FOUND,2015-04-05T00:00:00,2015,April,Sunday,5,95,12,2015-04-05T00:00:00,2015,April,Sunday,5,95,12,D33,Toronto,49,Bayview Woods-Steeles (49),"Open Areas (Lakes, Parks, Rivers)",Outside,CCM,SYSTEM TI,RC,10,BLKONG,,UNKNOWN,3836,"{'type': 'Point', 'coordinates': (-79.39270421, 43.78802361)}"
-3839,9419,GO-2015635252,THEFT UNDER,2015-04-17T00:00:00,2015,April,Friday,17,107,12,2015-04-17T00:00:00,2015,April,Friday,17,107,13,D33,Toronto,49,Bayview Woods-Steeles (49),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NEXT,,RG,1,GRN,,STOLEN,3837,"{'type': 'Point', 'coordinates': (-79.37433316, 43.79510943)}"
-3840,9420,GO-2015635252,THEFT UNDER,2015-04-17T00:00:00,2015,April,Friday,17,107,12,2015-04-17T00:00:00,2015,April,Friday,17,107,13,D33,Toronto,49,Bayview Woods-Steeles (49),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NEXT,NONE,RG,1,MRN,100.0,STOLEN,3838,"{'type': 'Point', 'coordinates': (-79.37433316, 43.79510943)}"
-3841,14017,GO-20169010746,THEFT UNDER - BICYCLE,2016-09-19T00:00:00,2016,September,Monday,19,263,8,2016-09-19T00:00:00,2016,September,Monday,19,263,21,D33,Toronto,49,Bayview Woods-Steeles (49),"Open Areas (Lakes, Parks, Rivers)",Outside,BL,,RG,18,SIL,1000.0,STOLEN,3839,"{'type': 'Point', 'coordinates': (-79.37207474, 43.80053375)}"
-3842,16772,GO-20199019118,THEFT UNDER,2019-06-15T00:00:00,2019,June,Saturday,15,166,18,2019-06-16T00:00:00,2019,June,Sunday,16,167,9,D33,Toronto,49,Bayview Woods-Steeles (49),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,,MT,15,DGR,300.0,STOLEN,3840,"{'type': 'Point', 'coordinates': (-79.38413382, 43.79511564)}"
-3843,16840,GO-20209020955,THEFT UNDER - BICYCLE,2020-08-21T00:00:00,2020,August,Friday,21,234,19,2020-08-22T00:00:00,2020,August,Saturday,22,235,0,D33,Toronto,49,Bayview Woods-Steeles (49),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,DB,UNKNOWN,MT,3,BLK,550.0,STOLEN,3841,"{'type': 'Point', 'coordinates': (-79.39331204, 43.791127530000004)}"
-3844,16848,GO-20209026286,THEFT UNDER - BICYCLE,2020-09-30T00:00:00,2020,September,Wednesday,30,274,18,2020-10-13T00:00:00,2020,October,Tuesday,13,287,14,D33,Toronto,49,Bayview Woods-Steeles (49),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,,RG,5,SIL,1500.0,STOLEN,3842,"{'type': 'Point', 'coordinates': (-79.37207474, 43.80053375)}"
-3845,20121,GO-20201704836,THEFT UNDER - BICYCLE,2020-09-05T00:00:00,2020,September,Saturday,5,249,3,2020-09-09T00:00:00,2020,September,Wednesday,9,253,8,D33,Toronto,49,Bayview Woods-Steeles (49),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUPERCYCLE,,MT,0,BLKONG,900.0,STOLEN,3843,"{'type': 'Point', 'coordinates': (-79.38990195, 43.7890419)}"
-3846,20299,GO-20189015052,THEFT UNDER - BICYCLE,2018-05-09T00:00:00,2018,May,Wednesday,9,129,21,2018-05-15T00:00:00,2018,May,Tuesday,15,135,16,D33,Toronto,49,Bayview Woods-Steeles (49),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,7,,396.0,STOLEN,3844,"{'type': 'Point', 'coordinates': (-79.39250497, 43.79443203)}"
-3847,20941,GO-20149007907,THEFT UNDER,2014-10-30T00:00:00,2014,October,Thursday,30,303,13,2014-10-30T00:00:00,2014,October,Thursday,30,303,14,D33,Toronto,49,Bayview Woods-Steeles (49),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,6,WHI,200.0,STOLEN,3845,"{'type': 'Point', 'coordinates': (-79.37933994, 43.80352826)}"
-3848,23951,GO-20142913787,THEFT UNDER,2014-09-12T00:00:00,2014,September,Friday,12,255,18,2014-09-15T00:00:00,2014,September,Monday,15,258,11,D33,Toronto,49,Bayview Woods-Steeles (49),"Open Areas (Lakes, Parks, Rivers)",Outside,OTHER,NITR,BM,1,BLK,700.0,STOLEN,3846,"{'type': 'Point', 'coordinates': (-79.37207474, 43.80053375)}"
-3849,1136,GO-20179012296,THEFT UNDER - BICYCLE,2017-08-12T00:00:00,2017,August,Saturday,12,224,14,2017-08-13T00:00:00,2017,August,Sunday,13,225,12,D32,Toronto,50,Newtonbrook East (50),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,21,BLK,563.0,STOLEN,3847,"{'type': 'Point', 'coordinates': (-79.41494292, 43.78578909)}"
-3850,1618,GO-20179016797,THEFT UNDER - BICYCLE,2017-10-07T00:00:00,2017,October,Saturday,7,280,14,2017-10-09T00:00:00,2017,October,Monday,9,282,16,D32,Toronto,50,Newtonbrook East (50),Ttc Subway Station,Transit,CC,VECTOR 700C,TO,21,BLU,300.0,STOLEN,3848,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}"
-3851,3226,GO-20189026627,THEFT UNDER - BICYCLE,2018-07-24T00:00:00,2018,July,Tuesday,24,205,8,2018-08-15T00:00:00,2018,August,Wednesday,15,227,20,D32,Toronto,50,Newtonbrook East (50),Ttc Subway Station,Transit,OT,VITA COMP-HYPER,OT,15,YEL,1359.0,STOLEN,3849,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}"
-3852,3379,GO-20189028860,THEFT UNDER - BICYCLE,2018-08-31T00:00:00,2018,August,Friday,31,243,21,2018-09-02T00:00:00,2018,September,Sunday,2,245,11,D32,Toronto,50,Newtonbrook East (50),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,MOUNTAIN,FO,28,YEL,1200.0,STOLEN,3850,"{'type': 'Point', 'coordinates': (-79.41809349, 43.79025338)}"
-3853,4194,GO-20199012829,THEFT UNDER,2019-04-23T00:00:00,2019,April,Tuesday,23,113,8,2019-04-23T00:00:00,2019,April,Tuesday,23,113,20,D32,Toronto,50,Newtonbrook East (50),Ttc Subway Station,Transit,KH,,RG,7,GRY,600.0,STOLEN,3851,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}"
-3854,5487,GO-20199033030,THEFT UNDER - BICYCLE,2019-10-07T00:00:00,2019,October,Monday,7,280,1,2019-10-07T00:00:00,2019,October,Monday,7,280,23,D32,Toronto,50,Newtonbrook East (50),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RA,,RG,6,LBL,300.0,STOLEN,3852,"{'type': 'Point', 'coordinates': (-79.41298953, 43.78626718)}"
-3855,5631,GO-20199036165,THEFT UNDER - BICYCLE,2019-11-01T00:00:00,2019,November,Friday,1,305,5,2019-11-01T00:00:00,2019,November,Friday,1,305,17,D32,Toronto,50,Newtonbrook East (50),Ttc Subway Station,Transit,CA,CANNONDALE HYBR,RG,21,BLK,1200.0,STOLEN,3853,"{'type': 'Point', 'coordinates': (-79.41553623, 43.77976942)}"
-3856,5906,GO-20209006027,THEFT UNDER - BICYCLE,2020-01-15T00:00:00,2020,January,Wednesday,15,15,0,2020-02-19T00:00:00,2020,February,Wednesday,19,50,15,D32,Toronto,50,Newtonbrook East (50),"Apartment (Rooming House, Condo)",Apartment,UK,LEGACY,MT,21,BLK,600.0,STOLEN,3854,"{'type': 'Point', 'coordinates': (-79.41494292, 43.78578909)}"
-3857,8291,GO-20142441173,PROPERTY - FOUND,2014-07-06T00:00:00,2014,July,Sunday,6,187,9,2014-07-06T00:00:00,2014,July,Sunday,6,187,9,D32,Toronto,50,Newtonbrook East (50),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,MCQUEEN,BM,0,BLKRED,,UNKNOWN,3856,"{'type': 'Point', 'coordinates': (-79.40064134, 43.78877431)}"
-3858,8612,GO-20149005710,THEFT UNDER,2014-08-06T00:00:00,2014,August,Wednesday,6,218,14,2014-08-07T00:00:00,2014,August,Thursday,7,219,15,D32,Toronto,50,Newtonbrook East (50),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,CCM,MT,21,RED,500.0,STOLEN,3857,"{'type': 'Point', 'coordinates': (-79.42004278, 43.79800044)}"
-3859,8895,GO-20149006908,THEFT UNDER,2014-09-15T00:00:00,2014,September,Monday,15,258,9,2014-09-15T00:00:00,2014,September,Monday,15,258,11,D32,Toronto,50,Newtonbrook East (50),Ttc Subway Station,Transit,UK,SPECIALIZED,OT,24,BLK,800.0,STOLEN,3858,"{'type': 'Point', 'coordinates': (-79.41553623, 43.77976942)}"
-3860,9205,GO-20143387156,THEFT UNDER,2014-11-28T00:00:00,2014,November,Friday,28,332,7,2014-11-28T00:00:00,2014,November,Friday,28,332,16,D32,Toronto,50,Newtonbrook East (50),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,TIMBERLINE,MT,21,SIL,400.0,STOLEN,3859,"{'type': 'Point', 'coordinates': (-79.40586302, 43.80019256)}"
-3861,9542,GO-2015754395,THEFT UNDER,2015-05-05T00:00:00,2015,May,Tuesday,5,125,8,2015-05-06T00:00:00,2015,May,Wednesday,6,126,16,D32,Toronto,50,Newtonbrook East (50),Schools During Supervised Activity,Educational,OTHER,,MT,6,YELWHI,200.0,STOLEN,3860,"{'type': 'Point', 'coordinates': (-79.40064134, 43.78877431)}"
-3862,9764,GO-2015966580,THEFT UNDER,2015-06-08T00:00:00,2015,June,Monday,8,159,14,2015-06-09T00:00:00,2015,June,Tuesday,9,160,14,D32,Toronto,50,Newtonbrook East (50),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,OT,5,,280.0,STOLEN,3861,"{'type': 'Point', 'coordinates': (-79.41831964, 43.79117431)}"
-3863,10196,GO-20151359632,THEFT UNDER,2015-07-23T00:00:00,2015,July,Thursday,23,204,8,2015-07-29T00:00:00,2015,July,Wednesday,29,210,13,D32,Toronto,50,Newtonbrook East (50),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN,,MT,21,BLK,80.0,STOLEN,3862,"{'type': 'Point', 'coordinates': (-79.41494292, 43.78578909)}"
-3864,12179,GO-20169009287,THEFT UNDER - BICYCLE,2016-08-22T00:00:00,2016,August,Monday,22,235,5,2016-08-22T00:00:00,2016,August,Monday,22,235,20,D32,Toronto,50,Newtonbrook East (50),Go Station,Transit,TR,NAVIGATOR,RG,3,MRN,350.0,STOLEN,3863,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}"
-3865,12309,GO-20169010214,THEFT UNDER - BICYCLE,2016-09-08T00:00:00,2016,September,Thursday,8,252,20,2016-09-09T00:00:00,2016,September,Friday,9,253,20,D32,Toronto,50,Newtonbrook East (50),Go Station,Transit,CC,,MT,18,WHI,659.0,STOLEN,3864,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}"
-3866,12494,GO-20161730115,THEFT UNDER - BICYCLE,2016-09-29T00:00:00,2016,September,Thursday,29,273,1,2016-09-29T00:00:00,2016,September,Thursday,29,273,7,D32,Toronto,50,Newtonbrook East (50),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,AGGRESSOR 3,MT,0,BLU,600.0,STOLEN,3865,"{'type': 'Point', 'coordinates': (-79.40175361, 43.79245521)}"
-3867,12685,GO-20161906026,MHA SEC 16 (FORM 2),2016-10-26T00:00:00,2016,October,Wednesday,26,300,17,2016-10-26T00:00:00,2016,October,Wednesday,26,300,20,D32,Toronto,50,Newtonbrook East (50),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,8152-01CT,MT,6,BLKGRN,200.0,UNKNOWN,3866,"{'type': 'Point', 'coordinates': (-79.39961562, 43.78420347)}"
-3868,12829,GO-20169013979,THEFT UNDER,2016-11-18T00:00:00,2016,November,Friday,18,323,21,2016-11-29T00:00:00,2016,November,Tuesday,29,334,10,D32,Toronto,50,Newtonbrook East (50),"Apartment (Rooming House, Condo)",Apartment,OT,HARDROCK SPORTS,MT,24,WHI,500.0,STOLEN,3867,"{'type': 'Point', 'coordinates': (-79.41494292, 43.78578909)}"
-3869,12830,GO-20169013984,THEFT UNDER - BICYCLE,2016-11-29T00:00:00,2016,November,Tuesday,29,334,11,2016-11-29T00:00:00,2016,November,Tuesday,29,334,12,D32,Toronto,50,Newtonbrook East (50),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,HARDROCK SPORTS,MT,24,WHI,500.0,STOLEN,3868,"{'type': 'Point', 'coordinates': (-79.41494292, 43.78578909)}"
-3870,13828,GO-20189032302,THEFT UNDER,2018-09-26T00:00:00,2018,September,Wednesday,26,269,8,2018-09-28T00:00:00,2018,September,Friday,28,271,20,D32,Toronto,50,Newtonbrook East (50),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM 2,RG,24,GRY,760.0,STOLEN,3869,"{'type': 'Point', 'coordinates': (-79.41494292, 43.78578909)}"
-3871,14783,GO-2018887353,B&E,2018-05-16T00:00:00,2018,May,Wednesday,16,136,0,2018-05-17T00:00:00,2018,May,Thursday,17,137,7,D32,Toronto,50,Newtonbrook East (50),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,NORTHROCK,MT,29,BLK,400.0,STOLEN,3870,"{'type': 'Point', 'coordinates': (-79.4138057, 43.79097554)}"
-3872,14986,GO-20152163240,THEFT UNDER,2015-12-14T00:00:00,2015,December,Monday,14,348,18,2015-12-17T00:00:00,2015,December,Thursday,17,351,18,D32,Toronto,50,Newtonbrook East (50),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,,MT,27,WHIRED,1500.0,STOLEN,3871,"{'type': 'Point', 'coordinates': (-79.41359445000002, 43.78784272)}"
-3873,17952,GO-20143381891,B&E,2014-11-27T00:00:00,2014,November,Thursday,27,331,8,2014-11-27T00:00:00,2014,November,Thursday,27,331,19,D32,Toronto,50,Newtonbrook East (50),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,UNKNOWN,OT,12,SILBLK,800.0,STOLEN,3872,"{'type': 'Point', 'coordinates': (-79.40586302, 43.80019256)}"
-3874,17971,GO-20151078203,THEFT UNDER,2015-01-02T00:00:00,2015,January,Friday,2,2,0,2015-06-26T00:00:00,2015,June,Friday,26,177,18,D32,Toronto,50,Newtonbrook East (50),"Apartment (Rooming House, Condo)",Apartment,OTHER,KRANKED,MT,18,BLKRED,50.0,STOLEN,3873,"{'type': 'Point', 'coordinates': (-79.4130406, 43.78231386000001)}"
-3875,18079,GO-20179008976,THEFT UNDER - BICYCLE,2017-06-26T00:00:00,2017,June,Monday,26,177,10,2017-06-27T00:00:00,2017,June,Tuesday,27,178,0,D32,Toronto,50,Newtonbrook East (50),Go Station,Transit,SC,,RG,7,DBL,270.0,STOLEN,3874,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}"
-3876,18084,GO-20179009545,THEFT UNDER - BICYCLE,2017-07-05T00:00:00,2017,July,Wednesday,5,186,16,2017-07-06T00:00:00,2017,July,Thursday,6,187,9,D32,Toronto,50,Newtonbrook East (50),Go Station,Transit,,,RG,18,BLK,200.0,STOLEN,3875,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}"
-3877,20058,GO-20191333096,THEFT UNDER - BICYCLE,2019-07-09T00:00:00,2019,July,Tuesday,9,190,14,2019-07-16T00:00:00,2019,July,Tuesday,16,197,15,D32,Toronto,50,Newtonbrook East (50),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,0,GRY,,STOLEN,3876,"{'type': 'Point', 'coordinates': (-79.40175361, 43.79245521)}"
-3878,20069,GO-20199029268,THEFT UNDER - BICYCLE,2019-09-08T00:00:00,2019,September,Sunday,8,251,13,2019-09-09T00:00:00,2019,September,Monday,9,252,12,D32,Toronto,50,Newtonbrook East (50),"Apartment (Rooming House, Condo)",Apartment,RA,,MT,21,BLK,200.0,STOLEN,3877,"{'type': 'Point', 'coordinates': (-79.41809349, 43.79025338)}"
-3879,20071,GO-20199030120,THEFT UNDER - BICYCLE,2019-08-15T00:00:00,2019,August,Thursday,15,227,16,2019-09-15T00:00:00,2019,September,Sunday,15,258,16,D32,Toronto,50,Newtonbrook East (50),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,OT,30,OTH,1000.0,STOLEN,3878,"{'type': 'Point', 'coordinates': (-79.41146225, 43.798970540000006)}"
-3880,20076,GO-20191990170,THEFT UNDER - BICYCLE,2019-10-12T00:00:00,2019,October,Saturday,12,285,12,2019-10-16T00:00:00,2019,October,Wednesday,16,289,17,D32,Toronto,50,Newtonbrook East (50),Homeless Shelter / Mission,Other,CCM,SUPERCYCLE,RC,10,RED,300.0,STOLEN,3879,"{'type': 'Point', 'coordinates': (-79.39650387, 43.79828321)}"
-3881,21210,GO-20179014214,THEFT UNDER - BICYCLE,2017-09-05T00:00:00,2017,September,Tuesday,5,248,15,2017-09-07T00:00:00,2017,September,Thursday,7,250,16,D32,Toronto,50,Newtonbrook East (50),Ttc Subway Station,Transit,MO,EXCURSION,MT,21,BLK,168.0,STOLEN,3880,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}"
-3882,21225,GO-20171888938,THEFT UNDER - BICYCLE,2017-10-09T00:00:00,2017,October,Monday,9,282,16,2017-10-18T00:00:00,2017,October,Wednesday,18,291,18,D32,Toronto,50,Newtonbrook East (50),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,MT,24,WHI,400.0,STOLEN,3881,"{'type': 'Point', 'coordinates': (-79.39842993, 43.80205208)}"
-3883,21330,GO-20189025871,THEFT UNDER - BICYCLE,2018-08-04T00:00:00,2018,August,Saturday,4,216,14,2018-08-10T00:00:00,2018,August,Friday,10,222,14,D32,Toronto,50,Newtonbrook East (50),"Apartment (Rooming House, Condo)",Apartment,EM,KNIGHT GTS,EL,32,BLK,5000.0,STOLEN,3882,"{'type': 'Point', 'coordinates': (-79.41809349, 43.79025338)}"
-3884,22005,GO-20142174891,THEFT UNDER,2014-05-15T00:00:00,2014,May,Thursday,15,135,10,2014-05-16T00:00:00,2014,May,Friday,16,136,23,D32,Toronto,50,Newtonbrook East (50),Other Train Admin Or Support Facility,Transit,INFINITY,700C,RG,20,BLK,330.0,STOLEN,3883,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}"
-3885,22013,GO-20149003869,THEFT UNDER,2014-06-06T00:00:00,2014,June,Friday,6,157,19,2014-06-07T00:00:00,2014,June,Saturday,7,158,16,D32,Toronto,50,Newtonbrook East (50),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,HARDROCK,MT,24,RED,650.0,STOLEN,3884,"{'type': 'Point', 'coordinates': (-79.41494292, 43.78578909)}"
-3886,22075,GO-20159005734,THEFT UNDER,2015-08-10T00:00:00,2015,August,Monday,10,222,9,2015-08-13T00:00:00,2015,August,Thursday,13,225,10,D32,Toronto,50,Newtonbrook East (50),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,,MT,10,,200.0,STOLEN,3885,"{'type': 'Point', 'coordinates': (-79.41532197, 43.79454803)}"
-3887,22123,GO-20169008397,THEFT UNDER - BICYCLE,2016-08-03T00:00:00,2016,August,Wednesday,3,216,21,2016-08-08T00:00:00,2016,August,Monday,8,221,17,D32,Toronto,50,Newtonbrook East (50),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,AMEGO STREAM,EL,99,BLK,1700.0,STOLEN,3886,"{'type': 'Point', 'coordinates': (-79.41778215000001, 43.7889785)}"
-3888,24263,GO-20173026242,B&E,2017-11-19T00:00:00,2017,November,Sunday,19,323,2,2017-11-19T00:00:00,2017,November,Sunday,19,323,6,D32,Toronto,50,Newtonbrook East (50),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,FOLDING BIKE,FO,5,YEL,800.0,STOLEN,3887,"{'type': 'Point', 'coordinates': (-79.39695216, 43.78916043)}"
-3889,24495,GO-20159008565,THEFT UNDER,2015-10-14T00:00:00,2015,October,Wednesday,14,287,19,2015-10-15T00:00:00,2015,October,Thursday,15,288,15,D32,Toronto,50,Newtonbrook East (50),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,,RG,10,GRY,250.0,STOLEN,3888,"{'type': 'Point', 'coordinates': (-79.40427336, 43.79443185)}"
-3890,72,GO-2017174452,THEFT UNDER - BICYCLE,2016-12-28T00:00:00,2016,December,Wednesday,28,363,15,2017-01-28T00:00:00,2017,January,Saturday,28,28,12,D32,Toronto,51,Willowdale East (51),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,SLOPE,MT,21,BLUGRN,310.0,STOLEN,3889,"{'type': 'Point', 'coordinates': (-79.41153302, 43.77136949)}"
-3891,125,GO-20179002662,THEFT UNDER - BICYCLE,2017-02-01T00:00:00,2017,February,Wednesday,1,32,18,2017-03-01T00:00:00,2017,March,Wednesday,1,60,18,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,OT,MX30,MT,30,BLK,750.0,STOLEN,3890,"{'type': 'Point', 'coordinates': (-79.40850721, 43.75760637)}"
-3892,208,GO-2017639010,THEFT UNDER - BICYCLE,2017-02-24T00:00:00,2017,February,Friday,24,55,0,2017-04-11T00:00:00,2017,April,Tuesday,11,101,15,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,TREK,CROSSTRIP COMP,RC,24,BLK,1100.0,STOLEN,3891,"{'type': 'Point', 'coordinates': (-79.40934023, 43.76033147)}"
-3893,631,GO-20171079314,THEFT UNDER - BICYCLE,2017-06-17T00:00:00,2017,June,Saturday,17,168,3,2017-06-17T00:00:00,2017,June,Saturday,17,168,9,D32,Toronto,51,Willowdale East (51),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,YUKON FX,MT,0,BLKSIL,1000.0,STOLEN,3892,"{'type': 'Point', 'coordinates': (-79.39459523, 43.77899769)}"
-3894,644,GO-20179008308,THEFT UNDER - BICYCLE,2017-06-14T00:00:00,2017,June,Wednesday,14,165,18,2017-06-17T00:00:00,2017,June,Saturday,17,168,14,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,OT,HATCHET,RC,18,GRY,1000.0,STOLEN,3893,"{'type': 'Point', 'coordinates': (-79.40615370000002, 43.76484512)}"
-3895,668,GO-20171102753,THEFT UNDER - BICYCLE,2017-06-19T00:00:00,2017,June,Monday,19,170,0,2017-06-21T00:00:00,2017,June,Wednesday,21,172,15,D32,Toronto,51,Willowdale East (51),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,,MT,18,REDGLD,500.0,STOLEN,3894,"{'type': 'Point', 'coordinates': (-79.40054115, 43.77289782)}"
-3896,782,GO-20171194067,THEFT UNDER - BICYCLE,2017-07-01T00:00:00,2017,July,Saturday,1,182,0,2017-07-04T00:00:00,2017,July,Tuesday,4,185,12,D32,Toronto,51,Willowdale East (51),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,ROAM,MT,21,GRYRED,800.0,STOLEN,3895,"{'type': 'Point', 'coordinates': (-79.41089678000002, 43.76150872)}"
-3897,795,GO-20179009648,THEFT UNDER - BICYCLE,2017-07-07T00:00:00,2017,July,Friday,7,188,9,2017-07-07T00:00:00,2017,July,Friday,7,188,14,D32,Toronto,51,Willowdale East (51),Schools During Supervised Activity,Educational,CC,,MT,10,PLE,800.0,STOLEN,3896,"{'type': 'Point', 'coordinates': (-79.40858610000001, 43.76392818000001)}"
-3898,823,GO-20179009860,THEFT UNDER - BICYCLE,2017-07-10T00:00:00,2017,July,Monday,10,191,12,2017-07-10T00:00:00,2017,July,Monday,10,191,13,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,24,SIL,2000.0,STOLEN,3897,"{'type': 'Point', 'coordinates': (-79.41315316, 43.77692597)}"
-3899,1056,GO-20179011732,THEFT UNDER - BICYCLE,2017-08-04T00:00:00,2017,August,Friday,4,216,11,2017-08-05T00:00:00,2017,August,Saturday,5,217,11,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,OT,NEMESIS 650 SP,MT,9,WHI,700.0,STOLEN,3898,"{'type': 'Point', 'coordinates': (-79.41204999, 43.7749527)}"
-3900,13000,GO-20199034499,THEFT UNDER - BICYCLE,2019-10-19T00:00:00,2019,October,Saturday,19,292,17,2019-10-19T00:00:00,2019,October,Saturday,19,292,19,D53,Toronto,55,Thorncliffe Park (55),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,AGGRESSOR,MT,21,BLK,439.0,STOLEN,3899,"{'type': 'Point', 'coordinates': (-79.35905752, 43.71287988)}"
-3901,13026,GO-20209011228,THEFT UNDER - BICYCLE,2020-03-15T00:00:00,2020,March,Sunday,15,75,17,2020-04-15T00:00:00,2020,April,Wednesday,15,106,18,D53,Toronto,55,Thorncliffe Park (55),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,STOCKHOLM,OT,18,BLK,500.0,STOLEN,3900,"{'type': 'Point', 'coordinates': (-79.3555434, 43.71424754)}"
-3902,13064,GO-20201246958,B&E,2020-07-01T00:00:00,2020,July,Wednesday,1,183,16,2020-07-06T00:00:00,2020,July,Monday,6,188,11,D53,Toronto,55,Thorncliffe Park (55),"Apartment (Rooming House, Condo)",Apartment,OTHER,NORTH ROCK,OT,21,BLKBLU,,STOLEN,3901,"{'type': 'Point', 'coordinates': (-79.35445767, 43.71388678000001)}"
-3903,14075,GO-20169006664,THEFT UNDER - BICYCLE,2016-07-03T00:00:00,2016,July,Sunday,3,185,12,2016-07-03T00:00:00,2016,July,Sunday,3,185,19,D53,Toronto,55,Thorncliffe Park (55),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,MILANO,RG,21,GRY,600.0,STOLEN,3902,"{'type': 'Point', 'coordinates': (-79.35848264, 43.71146597)}"
-3904,14123,GO-20162070165,THEFT UNDER - BICYCLE,2016-11-15T00:00:00,2016,November,Tuesday,15,320,12,2016-11-21T00:00:00,2016,November,Monday,21,326,20,D53,Toronto,55,Thorncliffe Park (55),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,ROCKY MOUNTAIN,SLAYER,MT,27,WHI,500.0,STOLEN,3903,"{'type': 'Point', 'coordinates': (-79.35445767, 43.71388678000001)}"
-3905,14124,GO-20162070165,THEFT UNDER - BICYCLE,2016-11-15T00:00:00,2016,November,Tuesday,15,320,12,2016-11-21T00:00:00,2016,November,Monday,21,326,20,D53,Toronto,55,Thorncliffe Park (55),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,RANGE A72,MT,21,BLU,500.0,STOLEN,3904,"{'type': 'Point', 'coordinates': (-79.35445767, 43.71388678000001)}"
-3906,14155,GO-20179006334,THEFT UNDER - BICYCLE,2017-05-12T00:00:00,2017,May,Friday,12,132,19,2017-05-15T00:00:00,2017,May,Monday,15,135,15,D53,Toronto,55,Thorncliffe Park (55),"Apartment (Rooming House, Condo)",Apartment,NO,XFR,RG,21,BLK,1000.0,STOLEN,3905,"{'type': 'Point', 'coordinates': (-79.35445767, 43.71388678000001)}"
-3907,15959,GO-20159004775,THEFT UNDER,2015-07-20T00:00:00,2015,July,Monday,20,201,5,2015-07-20T00:00:00,2015,July,Monday,20,201,17,D53,Toronto,55,Thorncliffe Park (55),"Religious Facilities (Synagogue, Church, Convent, Mosque)",Other,OT,E-BIKE,EL,32,SIL,450.0,STOLEN,3906,"{'type': 'Point', 'coordinates': (-79.34983684, 43.70500656)}"
-3908,16016,GO-2016823004,THEFT UNDER - BICYCLE,2016-05-07T00:00:00,2016,May,Saturday,7,128,9,2016-05-13T00:00:00,2016,May,Friday,13,134,13,D53,Toronto,55,Thorncliffe Park (55),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,M4,OT,21,BLKRED,,STOLEN,3907,"{'type': 'Point', 'coordinates': (-79.35162719, 43.70328132)}"
-3909,18710,GO-20209017565,THEFT UNDER - BICYCLE,2020-07-14T00:00:00,2020,July,Tuesday,14,196,13,2020-07-14T00:00:00,2020,July,Tuesday,14,196,17,D53,Toronto,55,Thorncliffe Park (55),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,MA,,RG,6,GRY,600.0,STOLEN,3908,"{'type': 'Point', 'coordinates': (-79.36348605, 43.71036039)}"
-3910,19004,GO-20161267045,THEFT OF EBIKE UNDER $5000,2016-07-19T00:00:00,2016,July,Tuesday,19,201,13,2016-07-19T00:00:00,2016,July,Tuesday,19,201,13,D53,Toronto,55,Thorncliffe Park (55),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,RIVELO,EL,0,RED,1800.0,STOLEN,3909,"{'type': 'Point', 'coordinates': (-79.35710131, 43.7083768)}"
-3911,19025,GO-20161452156,THEFT UNDER - BICYCLE,2016-08-12T00:00:00,2016,August,Friday,12,225,21,2016-08-17T00:00:00,2016,August,Wednesday,17,230,5,D53,Toronto,55,Thorncliffe Park (55),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KHS,FLIGHT 300,RC,10,RED,2000.0,STOLEN,3910,"{'type': 'Point', 'coordinates': (-79.35710131, 43.7083768)}"
-3912,19147,GO-20189008808,THEFT UNDER - BICYCLE,2018-03-21T00:00:00,2018,March,Wednesday,21,80,11,2018-03-21T00:00:00,2018,March,Wednesday,21,80,11,D53,Toronto,55,Thorncliffe Park (55),"Apartment (Rooming House, Condo)",Apartment,GI,2018 TALON 3,MT,27,BLK,699.0,STOLEN,3911,"{'type': 'Point', 'coordinates': (-79.35650277, 43.71463968)}"
-3913,19627,GO-20142323982,THEFT UNDER,2014-06-18T00:00:00,2014,June,Wednesday,18,169,19,2014-06-19T00:00:00,2014,June,Thursday,19,170,14,D53,Toronto,55,Thorncliffe Park (55),"Apartment (Rooming House, Condo)",Apartment,OTHER,WALMART,RG,5,BLU,160.0,STOLEN,3912,"{'type': 'Point', 'coordinates': (-79.34134662, 43.70801788000001)}"
-3914,19760,GO-2016738272,THEFT UNDER - BICYCLE,2016-04-30T00:00:00,2016,April,Saturday,30,121,11,2016-04-30T00:00:00,2016,April,Saturday,30,121,13,D53,Toronto,55,Thorncliffe Park (55),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,SUPERCYCLE,MT,1,BLUSIL,500.0,STOLEN,3913,"{'type': 'Point', 'coordinates': (-79.34658826, 43.70321193)}"
-3915,22204,GO-20169011050,THEFT UNDER - BICYCLE,2016-09-15T00:00:00,2016,September,Thursday,15,259,13,2016-09-24T00:00:00,2016,September,Saturday,24,268,20,D53,Toronto,55,Thorncliffe Park (55),"Apartment (Rooming House, Condo)",Apartment,OT,OPUS CAPRICCIO,RG,16,RED,1387.0,STOLEN,3914,"{'type': 'Point', 'coordinates': (-79.35445767, 43.71388678000001)}"
-3916,22393,GO-20199021655,THEFT UNDER - BICYCLE,2019-07-09T00:00:00,2019,July,Tuesday,9,190,8,2019-07-09T00:00:00,2019,July,Tuesday,9,190,20,D53,Toronto,55,Thorncliffe Park (55),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SU,,RG,5,LBL,0.0,STOLEN,3915,"{'type': 'Point', 'coordinates': (-79.34658826, 43.70321193)}"
-3917,22506,GO-20209017812,THEFT UNDER - BICYCLE,2020-07-15T00:00:00,2020,July,Wednesday,15,197,19,2020-07-17T00:00:00,2020,July,Friday,17,199,17,D53,Toronto,55,Thorncliffe Park (55),Bar / Restaurant,Commercial,GI,,OT,7,GRY,500.0,STOLEN,3916,"{'type': 'Point', 'coordinates': (-79.36177754, 43.70611872)}"
-3918,22545,GO-20209021666,THEFT UNDER - BICYCLE,2020-08-28T00:00:00,2020,August,Friday,28,241,20,2020-08-28T00:00:00,2020,August,Friday,28,241,20,D53,Toronto,55,Thorncliffe Park (55),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,CTM,RG,21,GRY,399.0,STOLEN,3917,"{'type': 'Point', 'coordinates': (-79.36177754, 43.70611872)}"
-3919,22590,GO-20209029468,THEFT UNDER - BICYCLE,2020-11-12T00:00:00,2020,November,Thursday,12,317,16,2020-11-12T00:00:00,2020,November,Thursday,12,317,23,D53,Toronto,55,Thorncliffe Park (55),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,AGGRESSOR,MT,3,BLU,700.0,STOLEN,3918,"{'type': 'Point', 'coordinates': (-79.36348605, 43.71036039)}"
-3920,22835,GO-20142242449,THEFT UNDER,2014-06-07T00:00:00,2014,June,Saturday,7,158,18,2014-06-07T00:00:00,2014,June,Saturday,7,158,18,D53,Toronto,55,Thorncliffe Park (55),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,,BM,0,BLU,200.0,STOLEN,3919,"{'type': 'Point', 'coordinates': (-79.34658826, 43.70321193)}"
-3921,25384,GO-20169009668,THEFT UNDER - BICYCLE,2016-08-29T00:00:00,2016,August,Monday,29,242,20,2016-08-29T00:00:00,2016,August,Monday,29,242,20,D53,Toronto,55,Thorncliffe Park (55),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,20,,1700.0,STOLEN,3920,"{'type': 'Point', 'coordinates': (-79.3555434, 43.71424754)}"
-3922,25385,GO-20169009668,THEFT UNDER - BICYCLE,2016-08-29T00:00:00,2016,August,Monday,29,242,20,2016-08-29T00:00:00,2016,August,Monday,29,242,20,D53,Toronto,55,Thorncliffe Park (55),"Apartment (Rooming House, Condo)",Apartment,CA,,MT,20,,650.0,STOLEN,3921,"{'type': 'Point', 'coordinates': (-79.3555434, 43.71424754)}"
-3923,25386,GO-20169009668,THEFT UNDER - BICYCLE,2016-08-29T00:00:00,2016,August,Monday,29,242,20,2016-08-29T00:00:00,2016,August,Monday,29,242,20,D53,Toronto,55,Thorncliffe Park (55),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,20,,777.0,STOLEN,3922,"{'type': 'Point', 'coordinates': (-79.3555434, 43.71424754)}"
-3924,25402,GO-20169012119,THEFT UNDER - BICYCLE,2016-10-14T00:00:00,2016,October,Friday,14,288,9,2016-10-15T00:00:00,2016,October,Saturday,15,289,22,D53,Toronto,55,Thorncliffe Park (55),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,TALON,MT,24,RED,772.0,STOLEN,3923,"{'type': 'Point', 'coordinates': (-79.35445767, 43.71388678000001)}"
-3925,25476,GO-20179013173,THEFT UNDER - BICYCLE,2017-08-15T00:00:00,2017,August,Tuesday,15,227,20,2017-08-23T00:00:00,2017,August,Wednesday,23,235,20,D53,Toronto,55,Thorncliffe Park (55),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,,MT,21,YEL,400.0,STOLEN,3924,"{'type': 'Point', 'coordinates': (-79.34658826, 43.70321193)}"
-3926,25490,GO-20179015971,THEFT UNDER - BICYCLE,2017-09-22T00:00:00,2017,September,Friday,22,265,20,2017-09-28T00:00:00,2017,September,Thursday,28,271,16,D53,Toronto,55,Thorncliffe Park (55),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,2,BLK,175.0,STOLEN,3925,"{'type': 'Point', 'coordinates': (-79.34658826, 43.70321193)}"
-3927,25552,GO-20189020387,THEFT UNDER - BICYCLE,2018-05-24T00:00:00,2018,May,Thursday,24,144,20,2018-06-26T00:00:00,2018,June,Tuesday,26,177,14,D53,Toronto,55,Thorncliffe Park (55),"Apartment (Rooming House, Condo)",Apartment,SU,,MT,21,RED,150.0,STOLEN,3926,"{'type': 'Point', 'coordinates': (-79.34658826, 43.70321193)}"
-3928,25696,GO-20209006418,THEFT UNDER,2020-02-19T00:00:00,2020,February,Wednesday,19,50,17,2020-02-22T00:00:00,2020,February,Saturday,22,53,12,D53,Toronto,55,Thorncliffe Park (55),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MO,,MT,24,SIL,650.0,STOLEN,3927,"{'type': 'Point', 'coordinates': (-79.3555434, 43.71424754)}"
-3929,25716,GO-2020971099,B&E,2020-04-11T00:00:00,2020,April,Saturday,11,102,12,2020-05-26T00:00:00,2020,May,Tuesday,26,147,15,D53,Toronto,55,Thorncliffe Park (55),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NORCO,,MT,18,GRY,700.0,STOLEN,3928,"{'type': 'Point', 'coordinates': (-79.35378714, 43.71217566)}"
-3930,25792,GO-20209026355,THEFT UNDER,2020-10-13T00:00:00,2020,October,Tuesday,13,287,17,2020-10-13T00:00:00,2020,October,Tuesday,13,287,17,D53,Toronto,55,Thorncliffe Park (55),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,21,BLK,450.0,STOLEN,3929,"{'type': 'Point', 'coordinates': (-79.35534142, 43.71370176)}"
-3931,356,GO-2017816329,THEFT OVER - BICYCLE,2017-05-06T00:00:00,2017,May,Saturday,6,126,15,2017-05-10T00:00:00,2017,May,Wednesday,10,130,13,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,OT,11,GRY,8000.0,STOLEN,3930,"{'type': 'Point', 'coordinates': (-79.36802813, 43.6999287)}"
-3932,842,GO-20179010027,THEFT UNDER - BICYCLE,2017-06-29T00:00:00,2017,June,Thursday,29,180,19,2017-07-12T00:00:00,2017,July,Wednesday,12,193,12,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,MT,11,,3600.0,STOLEN,3931,"{'type': 'Point', 'coordinates': (-79.37308522, 43.71468249)}"
-3933,982,GO-20179011046,THEFT UNDER - BICYCLE,2017-06-30T00:00:00,2017,June,Friday,30,181,9,2017-07-26T00:00:00,2017,July,Wednesday,26,207,10,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,ROUBAIX EXPERT,RC,21,BLK,4500.0,STOLEN,3932,"{'type': 'Point', 'coordinates': (-79.36760464, 43.70261961)}"
-3934,1214,GO-20171519322,THEFT UNDER - BICYCLE,2017-08-13T00:00:00,2017,August,Sunday,13,225,0,2017-08-22T00:00:00,2017,August,Tuesday,22,234,15,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CANNONDALE,QUICK,RG,2,WHI,900.0,STOLEN,3933,"{'type': 'Point', 'coordinates': (-79.36972707, 43.70494438)}"
-3935,1309,GO-20179014003,THEFT UNDER - BICYCLE,2017-09-03T00:00:00,2017,September,Sunday,3,246,13,2017-09-05T00:00:00,2017,September,Tuesday,5,248,13,D53,Toronto,56,Leaside-Bennington (56),Convenience Stores,Commercial,GI,,MT,6,PLE,600.0,STOLEN,3934,"{'type': 'Point', 'coordinates': (-79.37009689, 43.69704686)}"
-3936,1356,GO-20179014418,THEFT UNDER - BICYCLE,2017-09-07T00:00:00,2017,September,Thursday,7,250,15,2017-09-10T00:00:00,2017,September,Sunday,10,253,18,D53,Toronto,56,Leaside-Bennington (56),Schools During Un-Supervised Activity,Educational,GI,REVEL,MT,21,RED,600.0,STOLEN,3935,"{'type': 'Point', 'coordinates': (-79.36945066, 43.7154621)}"
-3937,1563,GO-20179016205,THEFT UNDER - BICYCLE,2017-10-01T00:00:00,2017,October,Sunday,1,274,1,2017-10-01T00:00:00,2017,October,Sunday,1,274,14,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,DEFY 1,RC,12,BLK,1000.0,STOLEN,3936,"{'type': 'Point', 'coordinates': (-79.36301503, 43.70587717)}"
-3938,1752,GO-20179018299,THEFT UNDER - BICYCLE,2017-10-26T00:00:00,2017,October,Thursday,26,299,16,2017-10-27T00:00:00,2017,October,Friday,27,300,8,D53,Toronto,56,Leaside-Bennington (56),Schools During Un-Supervised Activity,Educational,GI,TALON,MT,20,ONG,1355.0,STOLEN,3937,"{'type': 'Point', 'coordinates': (-79.37353552000002, 43.71180147)}"
-3939,1806,GO-20179019079,THEFT UNDER - BICYCLE,2017-11-06T00:00:00,2017,November,Monday,6,310,9,2017-11-07T00:00:00,2017,November,Tuesday,7,311,10,D53,Toronto,56,Leaside-Bennington (56),Schools During Supervised Activity,Educational,GT,AVALANCHE COMP,MT,27,BLK,600.0,STOLEN,3938,"{'type': 'Point', 'coordinates': (-79.36954643, 43.70689296)}"
-3940,2066,GO-20189006982,THEFT UNDER - BICYCLE,2018-03-05T00:00:00,2018,March,Monday,5,64,9,2018-03-06T00:00:00,2018,March,Tuesday,6,65,12,D53,Toronto,56,Leaside-Bennington (56),Schools During Un-Supervised Activity,Educational,UK,CAMBER 650B,MT,10,GRN,1900.0,STOLEN,3939,"{'type': 'Point', 'coordinates': (-79.37353552000002, 43.71180147)}"
-3941,2180,GO-2018707640,B&E W'INTENT,2018-04-20T00:00:00,2018,April,Friday,20,110,14,2018-04-20T00:00:00,2018,April,Friday,20,110,17,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ROCKY MOUNTAIN,RC10,MT,12,RED,,STOLEN,3940,"{'type': 'Point', 'coordinates': (-79.36544952, 43.71532694)}"
-3942,2331,GO-20189015226,THEFT UNDER - BICYCLE,2018-05-15T00:00:00,2018,May,Tuesday,15,135,20,2018-05-16T00:00:00,2018,May,Wednesday,16,136,20,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,TRANSIO,TO,21,GRY,550.0,STOLEN,3941,"{'type': 'Point', 'coordinates': (-79.36485564, 43.71063524)}"
-3943,2365,GO-20189015686,THEFT UNDER - BICYCLE,2018-05-20T00:00:00,2018,May,Sunday,20,140,1,2018-05-21T00:00:00,2018,May,Monday,21,141,14,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,MT,24,,,STOLEN,3942,"{'type': 'Point', 'coordinates': (-79.36575648, 43.70949895)}"
-3944,3774,GO-20189035910,THEFT UNDER - BICYCLE,2018-10-22T00:00:00,2018,October,Monday,22,295,14,2018-10-28T00:00:00,2018,October,Sunday,28,301,14,D53,Toronto,56,Leaside-Bennington (56),"Apartment (Rooming House, Condo)",Apartment,SU,NITROUS,MT,21,BLK,150.0,STOLEN,3950,"{'type': 'Point', 'coordinates': (-79.36434865, 43.70357443)}"
-3945,2431,GO-20189016925,THEFT UNDER - BICYCLE,2018-05-18T00:00:00,2018,May,Friday,18,138,12,2018-05-31T00:00:00,2018,May,Thursday,31,151,14,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,DEW DELUXE,RG,9,DBL,750.0,STOLEN,3943,"{'type': 'Point', 'coordinates': (-79.37153829000002, 43.69982919)}"
-3946,2539,GO-20189018341,THEFT UNDER - BICYCLE,2018-06-02T00:00:00,2018,June,Saturday,2,153,3,2018-06-12T00:00:00,2018,June,Tuesday,12,163,11,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,ANTELOPE 820,RG,21,RED,499.0,STOLEN,3944,"{'type': 'Point', 'coordinates': (-79.36982442, 43.70134847)}"
-3947,2540,GO-20189018341,THEFT UNDER - BICYCLE,2018-06-02T00:00:00,2018,June,Saturday,2,153,3,2018-06-12T00:00:00,2018,June,Tuesday,12,163,11,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,GIANT ROAM,OT,21,BLK,499.0,STOLEN,3945,"{'type': 'Point', 'coordinates': (-79.36982442, 43.70134847)}"
-3948,2659,GO-20189019908,THEFT UNDER - BICYCLE,2018-06-23T00:00:00,2018,June,Saturday,23,174,1,2018-06-23T00:00:00,2018,June,Saturday,23,174,9,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,REVEL 2,MT,10,,500.0,STOLEN,3946,"{'type': 'Point', 'coordinates': (-79.36802813, 43.6999287)}"
-3949,3450,GO-20189030048,THEFT UNDER - BICYCLE,2018-09-12T00:00:00,2018,September,Wednesday,12,255,7,2018-09-12T00:00:00,2018,September,Wednesday,12,255,9,D53,Toronto,56,Leaside-Bennington (56),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,,MT,12,BLU,600.0,STOLEN,3947,"{'type': 'Point', 'coordinates': (-79.3611556, 43.70279213)}"
-3950,3555,GO-20189031916,THEFT UNDER - BICYCLE,2018-09-14T00:00:00,2018,September,Friday,14,257,15,2018-09-25T00:00:00,2018,September,Tuesday,25,268,20,D53,Toronto,56,Leaside-Bennington (56),Schools During Un-Supervised Activity,Educational,GT,TRAFIK,RG,24,BLK,250.0,STOLEN,3948,"{'type': 'Point', 'coordinates': (-79.37353552000002, 43.71180147)}"
-3951,3766,GO-20189035720,THEFT UNDER - BICYCLE,2018-10-26T00:00:00,2018,October,Friday,26,299,13,2018-10-26T00:00:00,2018,October,Friday,26,299,16,D53,Toronto,56,Leaside-Bennington (56),Schools During Un-Supervised Activity,Educational,GI,REVEL 3 HT,MT,21,GRN,600.0,STOLEN,3949,"{'type': 'Point', 'coordinates': (-79.37353552000002, 43.71180147)}"
-3952,5863,GO-20209003677,THEFT UNDER,2020-01-30T00:00:00,2020,January,Thursday,30,30,17,2020-01-30T00:00:00,2020,January,Thursday,30,30,17,D53,Toronto,56,Leaside-Bennington (56),"Apartment (Rooming House, Condo)",Apartment,OT,V,RG,21,BLK,650.0,STOLEN,3965,"{'type': 'Point', 'coordinates': (-79.37280591, 43.69956506)}"
-3953,3815,GO-20182025450,THEFT UNDER,2018-10-29T00:00:00,2018,October,Monday,29,302,15,2018-11-02T00:00:00,2018,November,Friday,2,306,22,D53,Toronto,56,Leaside-Bennington (56),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,,MT,24,BLKGRY,600.0,STOLEN,3951,"{'type': 'Point', 'coordinates': (-79.36539862, 43.7086074)}"
-3954,3821,GO-20189037087,THEFT UNDER - BICYCLE,2018-09-18T00:00:00,2018,September,Tuesday,18,261,23,2018-11-06T00:00:00,2018,November,Tuesday,6,310,14,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,ATTENDTION 29,MT,14,GRY,1000.0,STOLEN,3952,"{'type': 'Point', 'coordinates': (-79.36753319, 43.71393867)}"
-3955,3822,GO-20189037087,THEFT UNDER - BICYCLE,2018-09-18T00:00:00,2018,September,Tuesday,18,261,23,2018-11-06T00:00:00,2018,November,Tuesday,6,310,14,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,SYNAPSE 4,RC,21,RED,2500.0,STOLEN,3953,"{'type': 'Point', 'coordinates': (-79.36753319, 43.71393867)}"
-3956,4276,GO-20199015020,THEFT UNDER - BICYCLE,2019-05-14T00:00:00,2019,May,Tuesday,14,134,15,2019-05-14T00:00:00,2019,May,Tuesday,14,134,15,D53,Toronto,56,Leaside-Bennington (56),Schools During Un-Supervised Activity,Educational,OT,,MT,10,BLK,4500.0,STOLEN,3954,"{'type': 'Point', 'coordinates': (-79.37353552000002, 43.71180147)}"
-3957,4746,GO-20199021858,THEFT UNDER - BICYCLE,2019-07-10T00:00:00,2019,July,Wednesday,10,191,17,2019-07-11T00:00:00,2019,July,Thursday,11,192,18,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RE,DS2,TO,28,BLK,1000.0,STOLEN,3955,"{'type': 'Point', 'coordinates': (-79.36450522, 43.70102724)}"
-3958,4781,GO-20199022473,THEFT UNDER - BICYCLE,2019-07-15T00:00:00,2019,July,Monday,15,196,18,2019-07-16T00:00:00,2019,July,Tuesday,16,197,10,D53,Toronto,56,Leaside-Bennington (56),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,,RC,21,BLK,1100.0,STOLEN,3956,"{'type': 'Point', 'coordinates': (-79.36368726000002, 43.71089654)}"
-3959,5054,GO-20199026047,THEFT UNDER - BICYCLE,2019-08-13T00:00:00,2019,August,Tuesday,13,225,11,2019-08-13T00:00:00,2019,August,Tuesday,13,225,15,D53,Toronto,56,Leaside-Bennington (56),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,GI,GIANT,MT,5,WHI,2000.0,STOLEN,3957,"{'type': 'Point', 'coordinates': (-79.37560854, 43.70694023)}"
-3960,5062,GO-20199026123,THEFT UNDER - BICYCLE,2019-08-13T00:00:00,2019,August,Tuesday,13,225,8,2019-08-14T00:00:00,2019,August,Wednesday,14,226,6,D53,Toronto,56,Leaside-Bennington (56),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,CASE 7D,RG,7,BRN,900.0,STOLEN,3958,"{'type': 'Point', 'coordinates': (-79.36885175, 43.68421332)}"
-3961,5098,GO-20191572897,THEFT UNDER - BICYCLE,2019-08-13T00:00:00,2019,August,Tuesday,13,225,21,2019-08-18T00:00:00,2019,August,Sunday,18,230,18,D53,Toronto,56,Leaside-Bennington (56),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CANNONDALE,RUSH 4,MT,24,BRZ,2000.0,STOLEN,3959,"{'type': 'Point', 'coordinates': (-79.37727036, 43.71203098)}"
-3962,5459,GO-20199032416,THEFT UNDER - BICYCLE,2019-10-01T00:00:00,2019,October,Tuesday,1,274,15,2019-10-02T00:00:00,2019,October,Wednesday,2,275,20,D53,Toronto,56,Leaside-Bennington (56),"Open Areas (Lakes, Parks, Rivers)",Outside,NO,,MT,21,BLK,500.0,STOLEN,3960,"{'type': 'Point', 'coordinates': (-79.36356347000002, 43.7022143)}"
-3963,5554,GO-20192031678,THEFT UNDER - BICYCLE,2019-10-20T00:00:00,2019,October,Sunday,20,293,21,2019-10-21T00:00:00,2019,October,Monday,21,294,12,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,ROAM 2,OT,0,GRY,500.0,STOLEN,3961,"{'type': 'Point', 'coordinates': (-79.36925763, 43.71167683)}"
-3964,5726,GO-20192283638,THEFT UNDER - BICYCLE,2019-11-26T00:00:00,2019,November,Tuesday,26,330,10,2019-11-26T00:00:00,2019,November,Tuesday,26,330,16,D53,Toronto,56,Leaside-Bennington (56),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,ROCK HOPPER,MT,9,BLK,1300.0,STOLEN,3962,"{'type': 'Point', 'coordinates': (-79.37353552000002, 43.71180147)}"
-3965,5737,GO-20199039402,THEFT UNDER - BICYCLE,2019-11-29T00:00:00,2019,November,Friday,29,333,8,2019-11-30T00:00:00,2019,November,Saturday,30,334,18,D53,Toronto,56,Leaside-Bennington (56),Schools During Un-Supervised Activity,Educational,GI,REVEL,MT,21,BLK,587.0,STOLEN,3963,"{'type': 'Point', 'coordinates': (-79.37353552000002, 43.71180147)}"
-3966,5860,GO-20209003544,THEFT UNDER,2020-01-29T00:00:00,2020,January,Wednesday,29,29,12,2020-01-29T00:00:00,2020,January,Wednesday,29,29,16,D53,Toronto,56,Leaside-Bennington (56),Schools During Un-Supervised Activity,Educational,TR,MARLIN 4,MT,21,SIL,580.0,STOLEN,3964,"{'type': 'Point', 'coordinates': (-79.36954643, 43.70689296)}"
-3967,5959,GO-2020532792,B&E,2020-03-12T00:00:00,2020,March,Thursday,12,72,1,2020-03-14T00:00:00,2020,March,Saturday,14,74,11,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,ROCKHOPPER,MT,24,BLK,600.0,STOLEN,3966,"{'type': 'Point', 'coordinates': (-79.36760464, 43.70261961)}"
-3968,5960,GO-2020532792,B&E,2020-03-12T00:00:00,2020,March,Thursday,12,72,1,2020-03-14T00:00:00,2020,March,Saturday,14,74,11,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CANNONDALE,,RG,16,BRN,1365.0,STOLEN,3967,"{'type': 'Point', 'coordinates': (-79.36760464, 43.70261961)}"
-3969,5978,GO-2020578563,B&E,2020-03-09T00:00:00,2020,March,Monday,9,69,18,2020-03-21T00:00:00,2020,March,Saturday,21,81,14,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GT,HELION,MT,24,BLULBL,4000.0,STOLEN,3968,"{'type': 'Point', 'coordinates': (-79.36261534, 43.70006635)}"
-3970,5982,GO-20209009576,THEFT UNDER,2020-02-22T00:00:00,2020,February,Saturday,22,53,14,2020-03-22T00:00:00,2020,March,Sunday,22,82,15,D53,Toronto,56,Leaside-Bennington (56),"Apartment (Rooming House, Condo)",Apartment,CA,CAAD 5 R800,RC,9,RED,1000.0,STOLEN,3969,"{'type': 'Point', 'coordinates': (-79.3779406, 43.71607254)}"
-3971,6031,GO-2020675823,B&E,2020-04-06T00:00:00,2020,April,Monday,6,97,21,2020-04-07T00:00:00,2020,April,Tuesday,7,98,8,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,EVIL,INSURGENT,MT,12,CRM,9000.0,STOLEN,3970,"{'type': 'Point', 'coordinates': (-79.36868434, 43.70178823)}"
-3972,6235,GO-20209013764,B&E,2020-05-23T00:00:00,2020,May,Saturday,23,144,2,2020-05-23T00:00:00,2020,May,Saturday,23,144,20,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,2014 ALLEZ COMP,RC,11,SIL,1356.0,STOLEN,3971,"{'type': 'Point', 'coordinates': (-79.36972707, 43.70494438)}"
-3973,6240,GO-20209013846,THEFT UNDER - BICYCLE,2020-05-25T00:00:00,2020,May,Monday,25,146,10,2020-05-25T00:00:00,2020,May,Monday,25,146,10,D53,Toronto,56,Leaside-Bennington (56),"Apartment (Rooming House, Condo)",Apartment,CA,SYNAPSE,RC,21,BLU,900.0,STOLEN,3972,"{'type': 'Point', 'coordinates': (-79.36438406, 43.70937132)}"
-3974,6241,GO-20209013846,THEFT UNDER - BICYCLE,2020-05-25T00:00:00,2020,May,Monday,25,146,10,2020-05-25T00:00:00,2020,May,Monday,25,146,10,D53,Toronto,56,Leaside-Bennington (56),"Apartment (Rooming House, Condo)",Apartment,UK,UNSURE,RG,21,BLK,400.0,STOLEN,3973,"{'type': 'Point', 'coordinates': (-79.36438406, 43.70937132)}"
-3975,6271,GO-20209014261,THEFT UNDER - BICYCLE,2020-05-30T00:00:00,2020,May,Saturday,30,151,15,2020-05-30T00:00:00,2020,May,Saturday,30,151,16,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MA,HAWK HILL,MT,12,GRN,2000.0,STOLEN,3974,"{'type': 'Point', 'coordinates': (-79.37351413, 43.70884621)}"
-3976,6430,GO-20209015779,THEFT UNDER - BICYCLE,2020-06-19T00:00:00,2020,June,Friday,19,171,22,2020-06-20T00:00:00,2020,June,Saturday,20,172,21,D53,Toronto,56,Leaside-Bennington (56),Schools During Un-Supervised Activity,Educational,TR,DUAL SPORT 2,MT,24,BLK,1000.0,STOLEN,3975,"{'type': 'Point', 'coordinates': (-79.37353552000002, 43.71180147)}"
-3977,6441,GO-20209015779,THEFT UNDER - BICYCLE,2020-06-19T00:00:00,2020,June,Friday,19,171,22,2020-06-20T00:00:00,2020,June,Saturday,20,172,21,D53,Toronto,56,Leaside-Bennington (56),Schools During Un-Supervised Activity,Educational,TR,DUAL SPORT 2,MT,24,BLK,1000.0,STOLEN,3976,"{'type': 'Point', 'coordinates': (-79.37353552000002, 43.71180147)}"
-3978,6496,GO-20201198855,B&E,2020-06-29T00:00:00,2020,June,Monday,29,181,16,2020-06-29T00:00:00,2020,June,Monday,29,181,17,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,STAMBEK,MT,10,BLK,3850.0,STOLEN,3977,"{'type': 'Point', 'coordinates': (-79.37597943, 43.69498688)}"
-3979,6609,GO-20201298067,B&E,2020-06-17T00:00:00,2020,June,Wednesday,17,169,11,2020-07-13T00:00:00,2020,July,Monday,13,195,14,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KONA,FIRE MOUNTAIN,MT,9,BLKYEL,900.0,STOLEN,3978,"{'type': 'Point', 'coordinates': (-79.36885175, 43.68421332)}"
-3980,6610,GO-20201298067,B&E,2020-06-17T00:00:00,2020,June,Wednesday,17,169,11,2020-07-13T00:00:00,2020,July,Monday,13,195,14,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KONA,FIRE MOUNTAIN,MT,9,BLKYEL,900.0,STOLEN,3979,"{'type': 'Point', 'coordinates': (-79.36885175, 43.68421332)}"
-3981,6611,GO-20201298067,B&E,2020-06-17T00:00:00,2020,June,Wednesday,17,169,11,2020-07-13T00:00:00,2020,July,Monday,13,195,14,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KONA,FIRE MOUNTAIN,MT,9,BLKYEL,900.0,STOLEN,3980,"{'type': 'Point', 'coordinates': (-79.36885175, 43.68421332)}"
-3982,7978,GO-20149003583,THEFT UNDER,2014-05-24T00:00:00,2014,May,Saturday,24,144,22,2014-05-25T00:00:00,2014,May,Sunday,25,145,18,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,7,BLK,,STOLEN,4020,"{'type': 'Point', 'coordinates': (-79.31140037, 43.66749248)}"
-3983,6612,GO-20201298067,B&E,2020-06-17T00:00:00,2020,June,Wednesday,17,169,11,2020-07-13T00:00:00,2020,July,Monday,13,195,14,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KONA,FIRE MOUTAIN,MT,9,BLKYEL,900.0,STOLEN,3981,"{'type': 'Point', 'coordinates': (-79.36885175, 43.68421332)}"
-3984,6730,GO-20209018295,THEFT UNDER - BICYCLE,2020-07-22T00:00:00,2020,July,Wednesday,22,204,19,2020-07-22T00:00:00,2020,July,Wednesday,22,204,21,D53,Toronto,56,Leaside-Bennington (56),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,,MT,7,DBL,500.0,STOLEN,3982,"{'type': 'Point', 'coordinates': (-79.37009689, 43.69704686)}"
-3985,6780,GO-20201409693,THEFT OF MOTOR VEHICLE,2020-07-28T00:00:00,2020,July,Tuesday,28,210,23,2020-07-29T00:00:00,2020,July,Wednesday,29,211,6,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,,OT,1,,,STOLEN,3983,"{'type': 'Point', 'coordinates': (-79.37334173, 43.704534390000006)}"
-3986,7055,GO-20209021093,THEFT UNDER - BICYCLE,2020-08-22T00:00:00,2020,August,Saturday,22,235,22,2020-08-23T00:00:00,2020,August,Sunday,23,236,22,D53,Toronto,56,Leaside-Bennington (56),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,60,,1100.0,STOLEN,3984,"{'type': 'Point', 'coordinates': (-79.37280591, 43.69956506)}"
-3987,7122,GO-20209021768,THEFT UNDER - BICYCLE,2020-08-28T00:00:00,2020,August,Friday,28,241,18,2020-08-30T00:00:00,2020,August,Sunday,30,243,1,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,FCR 3,RG,24,BLK,500.0,STOLEN,3985,"{'type': 'Point', 'coordinates': (-79.36549061, 43.70406185)}"
-3988,7256,GO-20201728143,THEFT UNDER - BICYCLE,2020-09-12T00:00:00,2020,September,Saturday,12,256,13,2020-09-16T00:00:00,2020,September,Wednesday,16,260,9,D53,Toronto,56,Leaside-Bennington (56),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TREK,MARLIN 6 WSD,MT,8,LGR,760.0,STOLEN,3986,"{'type': 'Point', 'coordinates': (-79.37009689, 43.69704686)}"
-3989,7384,GO-20209024867,THEFT UNDER - BICYCLE,2020-09-28T00:00:00,2020,September,Monday,28,272,19,2020-09-29T00:00:00,2020,September,Tuesday,29,273,12,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,MT,18,GRN,100.0,STOLEN,3987,"{'type': 'Point', 'coordinates': (-79.36261534, 43.70006635)}"
-3990,19174,GO-20189021179,THEFT UNDER - BICYCLE,2018-07-04T00:00:00,2018,July,Wednesday,4,185,8,2018-07-04T00:00:00,2018,July,Wednesday,4,185,17,D55,Toronto,62,East End-Danforth (62),Go Station,Transit,FJ,TRACK,RC,1,BLU,400.0,STOLEN,4357,"{'type': 'Point', 'coordinates': (-79.30088278, 43.68550226)}"
-3991,7530,GO-20202005550,B&E,2020-10-18T00:00:00,2020,October,Sunday,18,292,16,2020-10-23T00:00:00,2020,October,Friday,23,297,11,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,MARTIN 5,MT,18,BLU,450.0,STOLEN,3988,"{'type': 'Point', 'coordinates': (-79.36642156, 43.707911)}"
-3992,7734,GO-20141287666,THEFT FROM MOTOR VEHICLE UNDER,2014-01-04T00:00:00,2014,January,Saturday,4,4,20,2014-01-05T00:00:00,2014,January,Sunday,5,5,18,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,IGUANA,MT,21,GRNMRN,900.0,STOLEN,3989,"{'type': 'Point', 'coordinates': (-79.36301503, 43.70587717)}"
-3993,7790,GO-20149001867,THEFT UNDER,2014-03-08T00:00:00,2014,March,Saturday,8,67,7,2014-03-08T00:00:00,2014,March,Saturday,8,67,8,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,X-FIRE,OT,18,WHI,2500.0,STOLEN,3990,"{'type': 'Point', 'coordinates': (-79.36647336, 43.71130005)}"
-3994,7794,GO-20149002225,THEFT UNDER,2014-03-19T00:00:00,2014,March,Wednesday,19,78,3,2014-03-21T00:00:00,2014,March,Friday,21,80,11,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,TREK 7300,MT,18,SIL,400.0,STOLEN,3991,"{'type': 'Point', 'coordinates': (-79.36426308, 43.70558612)}"
-3995,7795,GO-20149002225,THEFT UNDER,2014-03-19T00:00:00,2014,March,Wednesday,19,78,3,2014-03-21T00:00:00,2014,March,Friday,21,80,11,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SPECIALIZED HOT,MT,18,RED,300.0,STOLEN,3992,"{'type': 'Point', 'coordinates': (-79.36426308, 43.70558612)}"
-3996,7796,GO-20141788268,THEFT UNDER,2014-03-18T00:00:00,2014,March,Tuesday,18,77,18,2014-03-29T00:00:00,2014,March,Saturday,29,88,7,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,STUMP JUMPER,MT,21,SIL,2000.0,STOLEN,3993,"{'type': 'Point', 'coordinates': (-79.36571783, 43.70614592)}"
-3997,7829,GO-20149002760,THEFT UNDER,2014-04-11T00:00:00,2014,April,Friday,11,101,18,2014-04-12T00:00:00,2014,April,Saturday,12,102,11,D53,Toronto,56,Leaside-Bennington (56),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RM,EDGE,MT,15,BLK,700.0,STOLEN,3994,"{'type': 'Point', 'coordinates': (-79.36925763, 43.71167683)}"
-3998,7879,GO-20142007176,THEFT UNDER,2014-05-01T00:00:00,2014,May,Thursday,1,121,16,2014-05-03T00:00:00,2014,May,Saturday,3,123,13,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,TACHYON,RC,0,GRN,649.0,STOLEN,3995,"{'type': 'Point', 'coordinates': (-79.36539862, 43.7086074)}"
-3999,7880,GO-20142007176,THEFT UNDER,2014-05-01T00:00:00,2014,May,Thursday,1,121,16,2014-05-03T00:00:00,2014,May,Saturday,3,123,13,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,OPAL,RC,0,BLU,4319.0,STOLEN,3996,"{'type': 'Point', 'coordinates': (-79.36539862, 43.7086074)}"
-4000,7931,GO-20149003355,THEFT UNDER,2014-05-05T00:00:00,2014,May,Monday,5,125,23,2014-05-15T00:00:00,2014,May,Thursday,15,135,10,D53,Toronto,56,Leaside-Bennington (56),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,DEW 56CM,RG,18,BLK,500.0,STOLEN,3997,"{'type': 'Point', 'coordinates': (-79.36982442, 43.70134847)}"
-4001,8077,GO-20149003898,THEFT UNDER,2014-06-08T00:00:00,2014,June,Sunday,8,159,11,2014-06-08T00:00:00,2014,June,Sunday,8,159,18,D53,Toronto,56,Leaside-Bennington (56),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,TRANCE,MT,12,WHI,2700.0,STOLEN,3998,"{'type': 'Point', 'coordinates': (-79.36885175, 43.68421332)}"
-4002,6583,GO-20201284336,B&E,2020-07-10T00:00:00,2020,July,Friday,10,192,14,2020-07-11T00:00:00,2020,July,Saturday,11,193,12,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GT,ZASKER,MT,10,SIL,2500.0,STOLEN,3999,"{'type': 'Point', 'coordinates': (-79.30984941, 43.66965172)}"
-4003,6584,GO-20201284336,B&E,2020-07-10T00:00:00,2020,July,Friday,10,192,14,2020-07-11T00:00:00,2020,July,Saturday,11,193,12,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OPUS,ALLEGRO,RG,10,,1500.0,STOLEN,4000,"{'type': 'Point', 'coordinates': (-79.30984941, 43.66965172)}"
-4004,6769,GO-20201405601,THEFT UNDER,2020-07-14T00:00:00,2020,July,Tuesday,14,196,22,2020-07-28T00:00:00,2020,July,Tuesday,28,210,14,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,SIRRUS 2.0,MT,18,GRYGRN,2000.0,STOLEN,4001,"{'type': 'Point', 'coordinates': (-79.29520183, 43.67385349)}"
-4005,6784,GO-20201405601,THEFT UNDER,2020-07-14T00:00:00,2020,July,Tuesday,14,196,22,2020-07-28T00:00:00,2020,July,Tuesday,28,210,14,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SIRRUS 3.0,TO,21,DGR,1220.0,STOLEN,4002,"{'type': 'Point', 'coordinates': (-79.29520183, 43.67385349)}"
-4006,6792,GO-20209018823,THEFT UNDER,2020-07-27T00:00:00,2020,July,Monday,27,209,9,2020-07-28T00:00:00,2020,July,Tuesday,28,210,11,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,21,BLK,650.0,STOLEN,4003,"{'type': 'Point', 'coordinates': (-79.30898153, 43.66452549)}"
-4007,6932,GO-20201501555,THEFT UNDER,2020-07-26T00:00:00,2020,July,Sunday,26,208,16,2020-08-11T00:00:00,2020,August,Tuesday,11,224,11,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,THULE,COASTER,OT,0,BLU,600.0,STOLEN,4004,"{'type': 'Point', 'coordinates': (-79.30788672, 43.67392776)}"
-4008,6946,GO-20209020035,THEFT UNDER,2020-08-12T00:00:00,2020,August,Wednesday,12,225,2,2020-08-12T00:00:00,2020,August,Wednesday,12,225,17,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,ESCAPE 2 CITY,RG,24,GRY,599.0,STOLEN,4005,"{'type': 'Point', 'coordinates': (-79.3071757, 43.67221054)}"
-4009,6950,GO-20201517436,PROPERTY - FOUND,2020-08-13T00:00:00,2020,August,Thursday,13,226,15,2020-08-13T00:00:00,2020,August,Thursday,13,226,15,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,EMMO,MONTA,MT,7,BLK,1999.0,RECOVERED,4006,"{'type': 'Point', 'coordinates': (-79.30219567, 43.66955978)}"
-4010,6962,GO-20209020276,THEFT UNDER,2020-08-15T00:00:00,2020,August,Saturday,15,228,10,2020-08-15T00:00:00,2020,August,Saturday,15,228,11,D55,Toronto,63,The Beaches (63),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CLASSICO LIGHTW,RG,9,BLU,1200.0,STOLEN,4007,"{'type': 'Point', 'coordinates': (-79.29798392000001, 43.67888482)}"
-4011,7026,GO-20209020899,THEFT UNDER,2020-08-21T00:00:00,2020,August,Friday,21,234,9,2020-08-21T00:00:00,2020,August,Friday,21,234,15,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ST TROPEZ,RG,24,GRY,1000.0,STOLEN,4008,"{'type': 'Point', 'coordinates': (-79.30915558, 43.66798981)}"
-4012,7057,GO-20201596457,B&E,2020-08-21T00:00:00,2020,August,Friday,21,234,0,2020-08-24T00:00:00,2020,August,Monday,24,237,18,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SCOTT,UNKNOWN,MT,12,BLKONG,1000.0,STOLEN,4009,"{'type': 'Point', 'coordinates': (-79.30376909, 43.67390191)}"
-4013,7083,GO-20209021416,THEFT UNDER,2020-08-09T00:00:00,2020,August,Sunday,9,222,15,2020-08-26T00:00:00,2020,August,Wednesday,26,239,13,D55,Toronto,63,The Beaches (63),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,,RG,1,GRY,600.0,STOLEN,4010,"{'type': 'Point', 'coordinates': (-79.29521244, 43.66756321)}"
-4014,7178,GO-20201673936,THEFT UNDER - BICYCLE,2020-08-30T00:00:00,2020,August,Sunday,30,243,6,2020-09-04T00:00:00,2020,September,Friday,4,248,16,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,CANNONDALE,,RG,9,PNKBLU,1500.0,STOLEN,4011,"{'type': 'Point', 'coordinates': (-79.29253268, 43.67161075)}"
-4015,7180,GO-20201685640,B&E W'INTENT,2020-09-05T00:00:00,2020,September,Saturday,5,249,21,2020-09-06T00:00:00,2020,September,Sunday,6,250,11,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ROCKY MOUNTAIN,2010 SOLO CXR,RC,10,BLK,1000.0,STOLEN,4012,"{'type': 'Point', 'coordinates': (-79.28814693, 43.68042306)}"
-4016,7412,GO-20209025406,THEFT UNDER,2020-10-04T00:00:00,2020,October,Sunday,4,278,10,2020-10-04T00:00:00,2020,October,Sunday,4,278,14,D55,Toronto,63,The Beaches (63),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SIRRUS SPORT,TO,10,YEL,1000.0,STOLEN,4013,"{'type': 'Point', 'coordinates': (-79.31029568, 43.66773066)}"
-4017,7419,GO-20209025506,THEFT UNDER,2020-09-23T00:00:00,2020,September,Wednesday,23,267,1,2020-10-05T00:00:00,2020,October,Monday,5,279,19,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,ESCAPE 1,OT,18,BLK,1000.0,STOLEN,4014,"{'type': 'Point', 'coordinates': (-79.28700185, 43.67465874)}"
-4018,7452,GO-20201942016,B&E,2020-10-12T00:00:00,2020,October,Monday,12,286,22,2020-10-13T00:00:00,2020,October,Tuesday,13,287,16,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CERVELO,,TO,24,BLKBLU,4000.0,STOLEN,4015,"{'type': 'Point', 'coordinates': (-79.28117652, 43.6739536)}"
-4019,7557,GO-20209027835,THEFT UNDER,2020-10-24T00:00:00,2020,October,Saturday,24,298,10,2020-10-27T00:00:00,2020,October,Tuesday,27,301,13,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,OT,URBANIA 5,RG,21,GRY,500.0,STOLEN,4016,"{'type': 'Point', 'coordinates': (-79.30915558, 43.66798981)}"
-4020,7621,GO-20202143166,THEFT OF EBIKE UNDER $5000,2020-11-10T00:00:00,2020,November,Tuesday,10,315,21,2020-11-11T00:00:00,2020,November,Wednesday,11,316,18,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,MENS LOW CROSS,EL,30,DGR,2000.0,STOLEN,4017,"{'type': 'Point', 'coordinates': (-79.31160345, 43.66911004)}"
-4021,7718,GO-20202433586,THEFT OF EBIKE UNDER $5000,2020-12-27T00:00:00,2020,December,Sunday,27,362,15,2020-12-28T00:00:00,2020,December,Monday,28,363,0,D55,Toronto,63,The Beaches (63),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,GTS,EL,40,BLK,5000.0,STOLEN,4018,"{'type': 'Point', 'coordinates': (-79.28408315, 43.67336022)}"
-4022,7926,GO-20142085266,THEFT UNDER,2014-05-15T00:00:00,2014,May,Thursday,15,135,14,2014-05-15T00:00:00,2014,May,Thursday,15,135,22,D55,Toronto,63,The Beaches (63),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,BMX VERDE EON,BM,0,BLK,760.0,STOLEN,4019,"{'type': 'Point', 'coordinates': (-79.30898153, 43.66452549)}"
-4023,8147,GO-20149004064,THEFT UNDER,2014-06-13T00:00:00,2014,June,Friday,13,164,16,2014-06-14T00:00:00,2014,June,Saturday,14,165,13,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,GIANT STP,OT,24,GRY,400.0,STOLEN,4021,"{'type': 'Point', 'coordinates': (-79.2906355, 43.6785827)}"
-4024,8171,GO-20142327075,THEFT UNDER,2014-06-14T00:00:00,2014,June,Saturday,14,165,12,2014-06-20T00:00:00,2014,June,Friday,20,171,1,D55,Toronto,63,The Beaches (63),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RALEIGH,TORO,MT,10,BLK,230.0,STOLEN,4022,"{'type': 'Point', 'coordinates': (-79.28345658, 43.67347772)}"
-4025,8181,GO-20149004206,THEFT UNDER,2014-06-18T00:00:00,2014,June,Wednesday,18,169,0,2014-06-18T00:00:00,2014,June,Wednesday,18,169,11,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,ROAM 3,MT,21,BLK,600.0,STOLEN,4023,"{'type': 'Point', 'coordinates': (-79.28604808, 43.68062672)}"
-4026,8183,GO-20149004212,THEFT UNDER,2014-06-14T00:00:00,2014,June,Saturday,14,165,11,2014-06-18T00:00:00,2014,June,Wednesday,18,169,15,D55,Toronto,63,The Beaches (63),"Open Areas (Lakes, Parks, Rivers)",Outside,SA,BULLIT,MT,24,DGR,3500.0,STOLEN,4024,"{'type': 'Point', 'coordinates': (-79.29708442, 43.66833831000001)}"
-4027,8300,GO-20142448769,THEFT UNDER,2014-07-07T00:00:00,2014,July,Monday,7,188,12,2014-07-07T00:00:00,2014,July,Monday,7,188,14,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,VICE,RG,18,LGR,200.0,STOLEN,4025,"{'type': 'Point', 'coordinates': (-79.30643537, 43.67043507)}"
-4028,8307,GO-20142448112,THEFT UNDER,2014-07-06T00:00:00,2014,July,Sunday,6,187,9,2014-07-08T00:00:00,2014,July,Tuesday,8,189,9,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,,MT,21,,500.0,STOLEN,4026,"{'type': 'Point', 'coordinates': (-79.30898153, 43.66452549)}"
-4029,8308,GO-20142448112,THEFT UNDER,2014-07-06T00:00:00,2014,July,Sunday,6,187,9,2014-07-08T00:00:00,2014,July,Tuesday,8,189,9,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,ROCKY MOUNTAIN,WHISTLER,MT,21,BLKGRN,960.0,STOLEN,4027,"{'type': 'Point', 'coordinates': (-79.30898153, 43.66452549)}"
-4030,8352,GO-20142495161,THEFT OF MOTOR VEHICLE,2014-07-14T00:00:00,2014,July,Monday,14,195,1,2014-07-14T00:00:00,2014,July,Monday,14,195,12,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,,MT,2,BLK,200.0,STOLEN,4028,"{'type': 'Point', 'coordinates': (-79.28980949, 43.66917198)}"
-4031,8433,GO-20142511589,THEFT FROM MOTOR VEHICLE UNDER,2014-07-02T00:00:00,2014,July,Wednesday,2,183,0,2014-07-16T00:00:00,2014,July,Wednesday,16,197,20,D55,Toronto,63,The Beaches (63),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,PISTOL 2,MT,21,BLKGRN,700.0,STOLEN,4029,"{'type': 'Point', 'coordinates': (-79.29346405, 43.67346399)}"
-4032,8463,GO-20149005151,THEFT UNDER,2014-07-20T00:00:00,2014,July,Sunday,20,201,0,2014-07-20T00:00:00,2014,July,Sunday,20,201,21,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RC,12,OTH,4000.0,STOLEN,4030,"{'type': 'Point', 'coordinates': (-79.30783944, 43.66478095)}"
-4033,8501,GO-20142564782,THEFT UNDER,2014-07-18T00:00:00,2014,July,Friday,18,199,23,2014-07-24T00:00:00,2014,July,Thursday,24,205,19,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,JAMISON,,MT,16,SILGRY,500.0,STOLEN,4031,"{'type': 'Point', 'coordinates': (-79.30915558, 43.66798981)}"
-4034,8502,GO-20142564782,THEFT UNDER,2014-07-18T00:00:00,2014,July,Friday,18,199,23,2014-07-24T00:00:00,2014,July,Thursday,24,205,19,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,,RC,16,RED,800.0,STOLEN,4032,"{'type': 'Point', 'coordinates': (-79.30915558, 43.66798981)}"
-4035,8514,GO-20149005343,THEFT UNDER,2014-07-24T00:00:00,2014,July,Thursday,24,205,21,2014-07-25T00:00:00,2014,July,Friday,25,206,17,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,CA,CADD9,RC,12,SIL,1000.0,STOLEN,4033,"{'type': 'Point', 'coordinates': (-79.30219567, 43.66955978)}"
-4036,8673,GO-20149005988,THEFT UNDER,2014-08-15T00:00:00,2014,August,Friday,15,227,15,2014-08-15T00:00:00,2014,August,Friday,15,227,17,D55,Toronto,63,The Beaches (63),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,CYPRESS,RG,21,BLK,580.0,STOLEN,4034,"{'type': 'Point', 'coordinates': (-79.30915558, 43.66798981)}"
-4037,8820,GO-20149006600,THEFT UNDER,2014-08-29T00:00:00,2014,August,Friday,29,241,17,2014-09-05T00:00:00,2014,September,Friday,5,248,17,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,2001 CITY GLIDE,RG,8,WHI,600.0,STOLEN,4035,"{'type': 'Point', 'coordinates': (-79.28519586, 43.67311655)}"
-4038,8835,GO-20149006663,THEFT UNDER,2014-09-08T00:00:00,2014,September,Monday,8,251,16,2014-09-08T00:00:00,2014,September,Monday,8,251,17,D55,Toronto,63,The Beaches (63),Convenience Stores,Commercial,TR,4500,OT,21,GRN,1000.0,STOLEN,4036,"{'type': 'Point', 'coordinates': (-79.32901937, 43.66055266)}"
-4039,8941,GO-20142962720,PROPERTY - FOUND,2014-09-19T00:00:00,2014,September,Friday,19,262,12,2014-09-22T00:00:00,2014,September,Monday,22,265,20,D55,Toronto,63,The Beaches (63),"Open Areas (Lakes, Parks, Rivers)",Outside,UNKNOWN MAKE,,MT,21,CRM,,STOLEN,4037,"{'type': 'Point', 'coordinates': (-79.28400366, 43.67845854)}"
-4040,8942,GO-20142962720,PROPERTY - FOUND,2014-09-19T00:00:00,2014,September,Friday,19,262,12,2014-09-22T00:00:00,2014,September,Monday,22,265,20,D55,Toronto,63,The Beaches (63),"Open Areas (Lakes, Parks, Rivers)",Outside,UNKNOWN MAKE,,MT,21,CRM,100.0,STOLEN,4038,"{'type': 'Point', 'coordinates': (-79.28400366, 43.67845854)}"
-4041,8984,GO-20149007246,THEFT UNDER,2014-09-26T00:00:00,2014,September,Friday,26,269,18,2014-09-26T00:00:00,2014,September,Friday,26,269,22,D55,Toronto,63,The Beaches (63),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,RENZO,RC,1,,,STOLEN,4039,"{'type': 'Point', 'coordinates': (-79.29813181000002, 43.67377781)}"
-4042,9032,GO-20149007493,THEFT UNDER,2014-09-28T00:00:00,2014,September,Sunday,28,271,17,2014-10-09T00:00:00,2014,October,Thursday,9,282,9,D55,Toronto,63,The Beaches (63),Unknown,Other,OT,KOMODO,MT,10,LGR,400.0,STOLEN,4040,"{'type': 'Point', 'coordinates': (-79.31481084000002, 43.66673892000001)}"
-4043,9134,GO-20143210259,THEFT UNDER,2014-10-17T00:00:00,2014,October,Friday,17,290,0,2014-10-31T00:00:00,2014,October,Friday,31,304,9,D55,Toronto,63,The Beaches (63),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CERVELO,SOLOIST,OT,10,BLU,2300.0,STOLEN,4041,"{'type': 'Point', 'coordinates': (-79.30898153, 43.66452549)}"
-4044,9179,GO-20149008076,THEFT UNDER,2014-11-07T00:00:00,2014,November,Friday,7,311,18,2014-11-07T00:00:00,2014,November,Friday,7,311,21,D55,Toronto,63,The Beaches (63),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,DEFY COMPOSITE,RC,20,BLK,2800.0,STOLEN,4042,"{'type': 'Point', 'coordinates': (-79.29442986, 43.67121)}"
-4045,9664,GO-20159003129,THEFT UNDER,2015-05-24T00:00:00,2015,May,Sunday,24,144,18,2015-05-27T00:00:00,2015,May,Wednesday,27,147,10,D55,Toronto,63,The Beaches (63),"Religious Facilities (Synagogue, Church, Convent, Mosque)",Other,EM,,EL,30,GRN,899.0,STOLEN,4043,"{'type': 'Point', 'coordinates': (-79.28479611, 43.67217304)}"
-4046,9716,GO-20159003298,THEFT UNDER,2015-06-03T00:00:00,2015,June,Wednesday,3,154,9,2015-06-03T00:00:00,2015,June,Wednesday,3,154,9,D55,Toronto,63,The Beaches (63),Bar / Restaurant,Commercial,OT,MANTRA FIXIE,RG,1,GRY,300.0,STOLEN,4044,"{'type': 'Point', 'coordinates': (-79.29442986, 43.67121)}"
-4047,10291,GO-20159005947,THEFT UNDER,2015-08-16T00:00:00,2015,August,Sunday,16,228,22,2015-08-18T00:00:00,2015,August,Tuesday,18,230,9,D55,Toronto,63,The Beaches (63),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,3700,MT,21,BLU,500.0,STOLEN,4045,"{'type': 'Point', 'coordinates': (-79.28235036, 43.67372113)}"
-4048,10586,GO-20151712249,THEFT UNDER,2015-10-01T00:00:00,2015,October,Thursday,1,274,23,2015-10-04T00:00:00,2015,October,Sunday,4,277,11,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RALEIGH,,OT,18,GRYONG,400.0,STOLEN,4046,"{'type': 'Point', 'coordinates': (-79.306719, 43.66513509)}"
-4049,10647,GO-20159008663,THEFT UNDER,2015-10-16T00:00:00,2015,October,Friday,16,289,20,2015-10-17T00:00:00,2015,October,Saturday,17,290,12,D55,Toronto,63,The Beaches (63),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,MT,12,YEL,100.0,STOLEN,4047,"{'type': 'Point', 'coordinates': (-79.30082686, 43.6698443)}"
-4050,11006,GO-20169001671,THEFT UNDER - BICYCLE,2016-02-21T00:00:00,2016,February,Sunday,21,52,17,2016-02-23T00:00:00,2016,February,Tuesday,23,54,10,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,2015 THRESHOLD,OT,12,BLK,2000.0,STOLEN,4048,"{'type': 'Point', 'coordinates': (-79.28235036, 43.67372113)}"
-4051,11007,GO-20169001671,THEFT UNDER - BICYCLE,2016-02-21T00:00:00,2016,February,Sunday,21,52,17,2016-02-23T00:00:00,2016,February,Tuesday,23,54,10,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,MT,12,SIL,700.0,STOLEN,4049,"{'type': 'Point', 'coordinates': (-79.28235036, 43.67372113)}"
-4052,11008,GO-20169001671,THEFT UNDER - BICYCLE,2016-02-21T00:00:00,2016,February,Sunday,21,52,17,2016-02-23T00:00:00,2016,February,Tuesday,23,54,10,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,MT,12,BLK,700.0,STOLEN,4050,"{'type': 'Point', 'coordinates': (-79.28235036, 43.67372113)}"
-4053,11064,GO-2016393604,THEFT UNDER - BICYCLE,2016-03-05T00:00:00,2016,March,Saturday,5,65,12,2016-03-06T00:00:00,2016,March,Sunday,6,66,13,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,EPIC,MT,27,BLK,4000.0,STOLEN,4051,"{'type': 'Point', 'coordinates': (-79.29987616, 43.67851223)}"
-4054,11110,GO-2016584844,THEFT UNDER,2016-03-27T00:00:00,2016,March,Sunday,27,87,9,2016-04-06T00:00:00,2016,April,Wednesday,6,97,16,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,,OT,0,GRN,,STOLEN,4052,"{'type': 'Point', 'coordinates': (-79.29223214, 43.67090058)}"
-4055,11376,GO-20169004958,THEFT UNDER - BICYCLE,2016-05-24T00:00:00,2016,May,Tuesday,24,145,15,2016-05-25T00:00:00,2016,May,Wednesday,25,146,16,D55,Toronto,63,The Beaches (63),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,ALPINE,MT,21,WHI,500.0,STOLEN,4053,"{'type': 'Point', 'coordinates': (-79.29813181000002, 43.67377781)}"
-4056,11390,GO-2016921213,B&E,2016-05-26T00:00:00,2016,May,Thursday,26,147,20,2016-05-28T00:00:00,2016,May,Saturday,28,149,12,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,GIANT,HYBRID,MT,18,WHI,250.0,UNKNOWN,4054,"{'type': 'Point', 'coordinates': (-79.29442986, 43.67121)}"
-4057,11413,GO-2016944679,THEFT UNDER - BICYCLE,2016-05-30T00:00:00,2016,May,Monday,30,151,21,2016-05-31T00:00:00,2016,May,Tuesday,31,152,20,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OPUS,,MT,10,YEL,558.0,STOLEN,4055,"{'type': 'Point', 'coordinates': (-79.30915558, 43.66798981)}"
-4058,11414,GO-2016944679,THEFT UNDER - BICYCLE,2016-05-30T00:00:00,2016,May,Monday,30,151,21,2016-05-31T00:00:00,2016,May,Tuesday,31,152,20,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TUXEDO,,TO,10,BLK,630.0,STOLEN,4056,"{'type': 'Point', 'coordinates': (-79.30915558, 43.66798981)}"
-4059,11487,GO-20161009355,B&E,2016-06-09T00:00:00,2016,June,Thursday,9,161,23,2016-06-10T00:00:00,2016,June,Friday,10,162,12,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,,MT,10,BLKONG,500.0,STOLEN,4057,"{'type': 'Point', 'coordinates': (-79.30898153, 43.66452549)}"
-4060,11495,GO-20161011920,MISCHIEF UNDER,2016-06-09T00:00:00,2016,June,Thursday,9,161,20,2016-06-10T00:00:00,2016,June,Friday,10,162,19,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,UNKNOWN,RG,0,PLE,,STOLEN,4058,"{'type': 'Point', 'coordinates': (-79.30783944, 43.66478095)}"
-4061,11503,GO-20161021294,THEFT UNDER - BICYCLE,2016-06-11T00:00:00,2016,June,Saturday,11,163,23,2016-06-12T00:00:00,2016,June,Sunday,12,164,9,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DEVINCI,,MT,10,,1500.0,STOLEN,4059,"{'type': 'Point', 'coordinates': (-79.30061073, 43.66664045)}"
-4062,11504,GO-20161021294,THEFT UNDER - BICYCLE,2016-06-11T00:00:00,2016,June,Saturday,11,163,23,2016-06-12T00:00:00,2016,June,Sunday,12,164,9,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,CITY EXPRESS,RG,10,,100.0,UNKNOWN,4060,"{'type': 'Point', 'coordinates': (-79.30061073, 43.66664045)}"
-4063,11514,GO-20161029207,THEFT UNDER - BICYCLE,2016-06-13T00:00:00,2016,June,Monday,13,165,0,2016-06-13T00:00:00,2016,June,Monday,13,165,14,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,ZENA,MT,10,TRQ,400.0,STOLEN,4061,"{'type': 'Point', 'coordinates': (-79.29269888, 43.67158255)}"
-4064,11570,GO-20169005965,THEFT UNDER,2016-06-17T00:00:00,2016,June,Friday,17,169,15,2016-06-17T00:00:00,2016,June,Friday,17,169,17,D55,Toronto,63,The Beaches (63),Bar / Restaurant,Commercial,MA,29ER REI MODEL,OT,27,BLK,800.0,STOLEN,4062,"{'type': 'Point', 'coordinates': (-79.32901937, 43.66055266)}"
-4065,11671,GO-20161041526,THEFT UNDER,2016-06-14T00:00:00,2016,June,Tuesday,14,166,18,2016-06-15T00:00:00,2016,June,Wednesday,15,167,11,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GF,WINGRA,MT,12,BLK,1000.0,STOLEN,4063,"{'type': 'Point', 'coordinates': (-79.30800813, 43.66824442)}"
-4066,11672,GO-20161041526,THEFT UNDER,2016-06-14T00:00:00,2016,June,Tuesday,14,166,18,2016-06-15T00:00:00,2016,June,Wednesday,15,167,11,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,MT,12,,500.0,STOLEN,4064,"{'type': 'Point', 'coordinates': (-79.30800813, 43.66824442)}"
-4067,11696,GO-20169006684,THEFT UNDER,2016-06-30T00:00:00,2016,June,Thursday,30,182,10,2016-07-04T00:00:00,2016,July,Monday,4,186,9,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,RAPID,RG,10,SIL,1200.0,STOLEN,4065,"{'type': 'Point', 'coordinates': (-79.29194412, 43.67018885000001)}"
-4068,11822,GO-20161259303,B&E,2016-07-18T00:00:00,2016,July,Monday,18,200,6,2016-07-18T00:00:00,2016,July,Monday,18,200,10,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,EVERYDAY COMMUT,RG,0,BLU,200.0,STOLEN,4066,"{'type': 'Point', 'coordinates': (-79.30724223, 43.67447391)}"
-4069,11830,GO-20161262304,THEFT UNDER - BICYCLE,2016-07-18T00:00:00,2016,July,Monday,18,200,18,2016-07-18T00:00:00,2016,July,Monday,18,200,18,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KONA,UNKNOWN,MT,12,BLUBLK,529.0,STOLEN,4067,"{'type': 'Point', 'coordinates': (-79.29944657, 43.67682862)}"
-4070,11841,GO-20169007370,THEFT UNDER - BICYCLE,2016-07-18T00:00:00,2016,July,Monday,18,200,18,2016-07-18T00:00:00,2016,July,Monday,18,200,20,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RM,FLARE,MT,21,RED,800.0,STOLEN,4068,"{'type': 'Point', 'coordinates': (-79.29995937, 43.67532728)}"
-4071,11842,GO-20169007382,THEFT UNDER - BICYCLE,2016-07-18T00:00:00,2016,July,Monday,18,200,13,2016-07-19T00:00:00,2016,July,Tuesday,19,201,7,D55,Toronto,63,The Beaches (63),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,FRONT SUSPENSIO,RG,20,BLU,550.0,STOLEN,4069,"{'type': 'Point', 'coordinates': (-79.32826088, 43.65898454)}"
-4072,11919,GO-20161292450,THEFT UNDER - BICYCLE,2016-07-22T00:00:00,2016,July,Friday,22,204,8,2016-07-23T00:00:00,2016,July,Saturday,23,205,8,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CANNONDALE,,MT,7,RED,1300.0,STOLEN,4070,"{'type': 'Point', 'coordinates': (-79.31029568, 43.66773066)}"
-4073,11920,GO-20161292450,THEFT UNDER - BICYCLE,2016-07-22T00:00:00,2016,July,Friday,22,204,8,2016-07-23T00:00:00,2016,July,Saturday,23,205,8,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GT,AGRESSOR,MT,5,BLKONG,620.0,STOLEN,4071,"{'type': 'Point', 'coordinates': (-79.31029568, 43.66773066)}"
-4074,11941,GO-20169007882,THEFT UNDER - BICYCLE,2016-07-28T00:00:00,2016,July,Thursday,28,210,11,2016-07-28T00:00:00,2016,July,Thursday,28,210,16,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,CROSSTRAIL,MT,18,BLK,850.0,STOLEN,4072,"{'type': 'Point', 'coordinates': (-79.30915558, 43.66798981)}"
-4075,11952,GO-20161346172,B&E,2016-07-29T00:00:00,2016,July,Friday,29,211,9,2016-07-31T00:00:00,2016,July,Sunday,31,213,17,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,CROSSFIRE,OT,10,WHI,2000.0,STOLEN,4073,"{'type': 'Point', 'coordinates': (-79.30082686, 43.6698443)}"
-4076,11953,GO-20161346172,B&E,2016-07-29T00:00:00,2016,July,Friday,29,211,9,2016-07-31T00:00:00,2016,July,Sunday,31,213,17,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,ROUBAIX,OT,10,BLK,5700.0,STOLEN,4074,"{'type': 'Point', 'coordinates': (-79.30082686, 43.6698443)}"
-4077,11959,GO-20161292450,THEFT UNDER - BICYCLE,2016-07-22T00:00:00,2016,July,Friday,22,204,8,2016-07-23T00:00:00,2016,July,Saturday,23,205,8,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,F600,MT,21,RED,1350.0,STOLEN,4075,"{'type': 'Point', 'coordinates': (-79.31029568, 43.66773066)}"
-4078,11960,GO-20161292450,THEFT UNDER - BICYCLE,2016-07-22T00:00:00,2016,July,Friday,22,204,8,2016-07-23T00:00:00,2016,July,Saturday,23,205,8,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GT,,MT,21,BLK,520.0,STOLEN,4076,"{'type': 'Point', 'coordinates': (-79.31029568, 43.66773066)}"
-4079,11984,GO-20169008146,THEFT UNDER - BICYCLE,2016-08-02T00:00:00,2016,August,Tuesday,2,215,22,2016-08-03T00:00:00,2016,August,Wednesday,3,216,10,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,2011 DASH 2M,RG,28,WHI,950.0,STOLEN,4077,"{'type': 'Point', 'coordinates': (-79.28479611, 43.67217304)}"
-4080,12044,GO-20161262304,THEFT UNDER - BICYCLE,2016-07-18T00:00:00,2016,July,Monday,18,200,18,2016-07-18T00:00:00,2016,July,Monday,18,200,18,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,,MT,12,BLU,,STOLEN,4078,"{'type': 'Point', 'coordinates': (-79.29944657, 43.67682862)}"
-4081,12070,GO-20169008613,THEFT UNDER,2016-08-10T00:00:00,2016,August,Wednesday,10,223,3,2016-08-12T00:00:00,2016,August,Friday,12,225,8,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KO,LAVA DOME 15 GR,MT,15,LGR,500.0,STOLEN,4079,"{'type': 'Point', 'coordinates': (-79.29521244, 43.66756321)}"
-4082,12127,GO-20169008948,THEFT UNDER - BICYCLE,2016-08-17T00:00:00,2016,August,Wednesday,17,230,14,2016-08-17T00:00:00,2016,August,Wednesday,17,230,16,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,TCR ADVANCED,RC,20,GRY,5000.0,STOLEN,4080,"{'type': 'Point', 'coordinates': (-79.306719, 43.66513509)}"
-4083,12134,GO-20161450900,B&E W'INTENT,2016-08-05T00:00:00,2016,August,Friday,5,218,1,2016-08-16T00:00:00,2016,August,Tuesday,16,229,21,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,ESCAPE 1,RG,10,GRN,650.0,STOLEN,4081,"{'type': 'Point', 'coordinates': (-79.28117652, 43.6739536)}"
-4084,12149,GO-20161481796,THEFT UNDER - BICYCLE,2016-08-07T00:00:00,2016,August,Sunday,7,220,0,2016-08-21T00:00:00,2016,August,Sunday,21,234,17,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SCOTT,,RC,24,YELBLK,2000.0,STOLEN,4082,"{'type': 'Point', 'coordinates': (-79.2956652, 43.66864481)}"
-4085,12150,GO-20161481796,THEFT UNDER - BICYCLE,2016-08-07T00:00:00,2016,August,Sunday,7,220,0,2016-08-21T00:00:00,2016,August,Sunday,21,234,17,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,,MT,24,RED,1000.0,STOLEN,4083,"{'type': 'Point', 'coordinates': (-79.2956652, 43.66864481)}"
-4086,12166,GO-20161488492,PROPERTY - FOUND,2016-08-22T00:00:00,2016,August,Monday,22,235,20,2016-08-22T00:00:00,2016,August,Monday,22,235,21,D55,Toronto,63,The Beaches (63),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DCO,DCO XZONE 261,MT,21,BLKBLU,,UNKNOWN,4084,"{'type': 'Point', 'coordinates': (-79.30104916, 43.66768758)}"
-4087,12219,GO-20161532437,THEFT UNDER - BICYCLE,2016-08-20T00:00:00,2016,August,Saturday,20,233,15,2016-08-29T00:00:00,2016,August,Monday,29,242,15,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,MOUNTAIN,MT,0,BLU,1500.0,STOLEN,4085,"{'type': 'Point', 'coordinates': (-79.306719, 43.66513509)}"
-4088,12220,GO-20161532437,THEFT UNDER - BICYCLE,2016-08-20T00:00:00,2016,August,Saturday,20,233,15,2016-08-29T00:00:00,2016,August,Monday,29,242,15,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,JEKYL STYLE,RG,0,BLUYEL,1000.0,STOLEN,4086,"{'type': 'Point', 'coordinates': (-79.306719, 43.66513509)}"
-4089,12221,GO-20161532437,THEFT UNDER - BICYCLE,2016-08-20T00:00:00,2016,August,Saturday,20,233,15,2016-08-29T00:00:00,2016,August,Monday,29,242,15,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,ORBEA,MT,0,PNKPLE,2500.0,STOLEN,4087,"{'type': 'Point', 'coordinates': (-79.306719, 43.66513509)}"
-4090,12251,GO-20169009904,THEFT UNDER,2016-08-28T00:00:00,2016,August,Sunday,28,241,23,2016-09-03T00:00:00,2016,September,Saturday,3,247,10,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,TARANTULA SE,MT,21,RED,200.0,STOLEN,4088,"{'type': 'Point', 'coordinates': (-79.30800813, 43.66824442)}"
-4091,12252,GO-20169009904,THEFT UNDER,2016-08-28T00:00:00,2016,August,Sunday,28,241,23,2016-09-03T00:00:00,2016,September,Saturday,3,247,10,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,EXPEDITION SPOR,RG,7,BLK,550.0,STOLEN,4089,"{'type': 'Point', 'coordinates': (-79.30800813, 43.66824442)}"
-4092,12341,GO-20169010426,THEFT UNDER,2016-09-09T00:00:00,2016,September,Friday,9,253,17,2016-09-14T00:00:00,2016,September,Wednesday,14,258,17,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,GT,,MT,21,GRY,500.0,STOLEN,4090,"{'type': 'Point', 'coordinates': (-79.30687812, 43.66849906)}"
-4093,12342,GO-20169010443,THEFT UNDER,2016-09-09T00:00:00,2016,September,Friday,9,253,21,2016-09-14T00:00:00,2016,September,Wednesday,14,258,14,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,SKYWAY,RG,1,BLK,550.0,STOLEN,4091,"{'type': 'Point', 'coordinates': (-79.28718029, 43.67175018)}"
-4094,12373,GO-20169010617,THEFT UNDER,2016-09-18T00:00:00,2016,September,Sunday,18,262,1,2016-09-18T00:00:00,2016,September,Sunday,18,262,1,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,OT,18,GRN,250.0,STOLEN,4092,"{'type': 'Point', 'coordinates': (-79.2956652, 43.66864481)}"
-4095,12585,GO-20169011816,THEFT UNDER - BICYCLE,2016-10-09T00:00:00,2016,October,Sunday,9,283,21,2016-10-10T00:00:00,2016,October,Monday,10,284,21,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,CUSTOM FIXIE,OT,1,BLK,700.0,STOLEN,4093,"{'type': 'Point', 'coordinates': (-79.30469992, 43.66622023)}"
-4096,12704,GO-20161940449,B&E W'INTENT,2016-09-26T00:00:00,2016,September,Monday,26,270,23,2016-11-01T00:00:00,2016,November,Tuesday,1,306,8,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,MIYATA,OT,10,SILBLU,1500.0,STOLEN,4094,"{'type': 'Point', 'coordinates': (-79.30800813, 43.66824442)}"
-4097,12880,GO-20189026724,THEFT UNDER - BICYCLE,2018-08-16T00:00:00,2018,August,Thursday,16,228,8,2018-08-16T00:00:00,2018,August,Thursday,16,228,21,D55,Toronto,63,The Beaches (63),Schools During Supervised Activity,Educational,TR,7.2 FX,TO,24,BLU,600.0,STOLEN,4095,"{'type': 'Point', 'coordinates': (-79.30347834, 43.66926169)}"
-4098,12981,GO-20199030340,THEFT UNDER,2019-09-17T00:00:00,2019,September,Tuesday,17,260,5,2019-09-17T00:00:00,2019,September,Tuesday,17,260,12,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,TO,8,GRY,2500.0,STOLEN,4096,"{'type': 'Point', 'coordinates': (-79.30520081, 43.67357575)}"
-4099,13024,GO-20209010024,THEFT UNDER,2020-03-28T00:00:00,2020,March,Saturday,28,88,10,2020-03-28T00:00:00,2020,March,Saturday,28,88,10,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,NO,,RG,15,DBL,0.0,STOLEN,4097,"{'type': 'Point', 'coordinates': (-79.30469992, 43.66622023)}"
-4100,14064,GO-2016990964,THEFT UNDER - BICYCLE,2016-05-27T00:00:00,2016,May,Friday,27,148,20,2016-06-07T00:00:00,2016,June,Tuesday,7,159,17,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,XFR,RG,21,BLURED,700.0,STOLEN,4098,"{'type': 'Point', 'coordinates': (-79.28479611, 43.67217304)}"
-4101,11102,GO-2016580104,ROBBERY - OTHER,2016-04-05T00:00:00,2016,April,Tuesday,5,96,21,2016-04-05T00:00:00,2016,April,Tuesday,5,96,23,D55,Toronto,64,Woodbine Corridor (64),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKOWN,,MT,10,BLK,,UNKNOWN,4099,"{'type': 'Point', 'coordinates': (-79.31158524, 43.67051816000001)}"
-4102,11103,GO-2016580104,ROBBERY - OTHER,2016-04-05T00:00:00,2016,April,Tuesday,5,96,21,2016-04-05T00:00:00,2016,April,Tuesday,5,96,23,D55,Toronto,64,Woodbine Corridor (64),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,,RG,10,BLK,,RECOVERED,4100,"{'type': 'Point', 'coordinates': (-79.31158524, 43.67051816000001)}"
-4103,11104,GO-2016580104,ROBBERY - OTHER,2016-04-05T00:00:00,2016,April,Tuesday,5,96,21,2016-04-05T00:00:00,2016,April,Tuesday,5,96,23,D55,Toronto,64,Woodbine Corridor (64),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EBIKE,,EL,10,BLU,,RECOVERED,4101,"{'type': 'Point', 'coordinates': (-79.31158524, 43.67051816000001)}"
-4104,11455,GO-2016975309,THEFT OF EBIKE UNDER $5000,2016-06-04T00:00:00,2016,June,Saturday,4,156,22,2016-06-05T00:00:00,2016,June,Sunday,5,157,9,D55,Toronto,64,Woodbine Corridor (64),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,EMMO,F6,EL,6,RED,1300.0,STOLEN,4102,"{'type': 'Point', 'coordinates': (-79.31933836, 43.6796677)}"
-4105,11518,GO-20169005715,THEFT UNDER - BICYCLE,2016-06-10T00:00:00,2016,June,Friday,10,162,22,2016-06-13T00:00:00,2016,June,Monday,13,165,13,D55,Toronto,64,Woodbine Corridor (64),"Apartment (Rooming House, Condo)",Apartment,CC,PRESTO 700C,RC,21,DGR,390.0,STOLEN,4103,"{'type': 'Point', 'coordinates': (-79.31801480000001, 43.66990354)}"
-4106,11677,GO-20161153182,THEFT UNDER - BICYCLE,2016-07-01T00:00:00,2016,July,Friday,1,183,21,2016-07-01T00:00:00,2016,July,Friday,1,183,23,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OPUS,ALLEGRO 2.0,OT,0,BLKONG,3000.0,STOLEN,4104,"{'type': 'Point', 'coordinates': (-79.3137786, 43.67531524)}"
-4107,11979,GO-20169008057,THEFT UNDER - BICYCLE,2016-07-28T00:00:00,2016,July,Thursday,28,210,18,2016-08-02T00:00:00,2016,August,Tuesday,2,215,8,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,RG,15,,500.0,STOLEN,4105,"{'type': 'Point', 'coordinates': (-79.31084084, 43.67564377)}"
-4108,12011,GO-20169008277,THEFT UNDER,2016-08-05T00:00:00,2016,August,Friday,5,218,19,2016-08-06T00:00:00,2016,August,Saturday,6,219,15,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,NAVIGATOR SF24,EL,20,RED,750.0,STOLEN,4106,"{'type': 'Point', 'coordinates': (-79.31321623000001, 43.67327701)}"
-4109,12063,GO-20161394092,THEFT UNDER - BICYCLE,2016-08-07T00:00:00,2016,August,Sunday,7,220,18,2016-08-08T00:00:00,2016,August,Monday,8,221,7,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,AGRESSOR SPORT,MT,0,BLUBLK,500.0,STOLEN,4107,"{'type': 'Point', 'coordinates': (-79.31033224, 43.6715023)}"
-4110,12133,GO-20161446115,THEFT UNDER - BICYCLE,2016-08-15T00:00:00,2016,August,Monday,15,228,20,2016-08-16T00:00:00,2016,August,Tuesday,16,229,8,D55,Toronto,64,Woodbine Corridor (64),"Private Property Structure (Pool, Shed, Detached Garage)",Other,DIAMONDBACK,MIRAMAR,OT,21,BRN,400.0,STOLEN,4108,"{'type': 'Point', 'coordinates': (-79.31010387, 43.67595759)}"
-4111,12544,GO-20169011533,THEFT UNDER - BICYCLE,2016-10-03T00:00:00,2016,October,Monday,3,277,22,2016-10-04T00:00:00,2016,October,Tuesday,4,278,10,D55,Toronto,64,Woodbine Corridor (64),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,FX2,RG,8,OTH,550.0,STOLEN,4109,"{'type': 'Point', 'coordinates': (-79.31044041, 43.67702031)}"
-4112,12610,GO-20169011998,THEFT UNDER - BICYCLE,2016-10-13T00:00:00,2016,October,Thursday,13,287,2,2016-10-13T00:00:00,2016,October,Thursday,13,287,14,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,1,WHI,232.0,STOLEN,4110,"{'type': 'Point', 'coordinates': (-79.3137786, 43.67531524)}"
-4113,12683,GO-20161910364,THEFT UNDER - BICYCLE,2016-09-27T00:00:00,2016,September,Tuesday,27,271,12,2016-10-27T00:00:00,2016,October,Thursday,27,301,12,D55,Toronto,64,Woodbine Corridor (64),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,OT,0,PLE,100.0,STOLEN,4111,"{'type': 'Point', 'coordinates': (-79.31933836, 43.6796677)}"
-4114,12821,GO-20162089365,THEFT OF EBIKE UNDER $5000,2016-11-24T00:00:00,2016,November,Thursday,24,329,19,2016-11-24T00:00:00,2016,November,Thursday,24,329,20,D55,Toronto,64,Woodbine Corridor (64),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,COMMUTER,EL,1,ONG,,STOLEN,4112,"{'type': 'Point', 'coordinates': (-79.32359895, 43.68336554)}"
-4115,12950,GO-20199022288,THEFT FROM MOTOR VEHICLE UNDER,2019-07-14T00:00:00,2019,July,Sunday,14,195,21,2019-07-15T00:00:00,2019,July,Monday,15,196,9,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,FOLDERS,FO,5,BLU,250.0,STOLEN,4113,"{'type': 'Point', 'coordinates': (-79.31346540000001, 43.6840323)}"
-4116,12983,GO-20199030612,THEFT UNDER,2019-09-15T00:00:00,2019,September,Sunday,15,258,4,2019-09-18T00:00:00,2019,September,Wednesday,18,261,20,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,EVO CITY,TO,8,LBL,560.0,STOLEN,4114,"{'type': 'Point', 'coordinates': (-79.30926012, 43.67726468)}"
-4117,12997,GO-20192025565,THEFT UNDER,2019-10-19T00:00:00,2019,October,Saturday,19,292,13,2019-10-20T00:00:00,2019,October,Sunday,20,293,16,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,MENS,MT,12,GRYSIL,750.0,STOLEN,4115,"{'type': 'Point', 'coordinates': (-79.31805937, 43.67593003)}"
-4118,12998,GO-20192025565,THEFT UNDER,2019-10-19T00:00:00,2019,October,Saturday,19,292,13,2019-10-20T00:00:00,2019,October,Sunday,20,293,16,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,WOMENS,MT,12,WHI,750.0,STOLEN,4116,"{'type': 'Point', 'coordinates': (-79.31805937, 43.67593003)}"
-4119,12999,GO-20192025565,THEFT UNDER,2019-10-19T00:00:00,2019,October,Saturday,19,292,13,2019-10-20T00:00:00,2019,October,Sunday,20,293,16,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,BMX,BM,1,YEL,200.0,STOLEN,4117,"{'type': 'Point', 'coordinates': (-79.31805937, 43.67593003)}"
-4120,14087,GO-20169008057,THEFT UNDER - BICYCLE,2016-07-28T00:00:00,2016,July,Thursday,28,210,18,2016-08-02T00:00:00,2016,August,Tuesday,2,215,8,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,RG,15,BLK,500.0,STOLEN,4118,"{'type': 'Point', 'coordinates': (-79.31084084, 43.67564377)}"
-4121,14094,GO-20169008971,THEFT UNDER,2016-08-16T00:00:00,2016,August,Tuesday,16,229,0,2016-08-18T00:00:00,2016,August,Thursday,18,231,0,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,MATARO,OT,1,LBL,1000.0,STOLEN,4119,"{'type': 'Point', 'coordinates': (-79.31133316000002, 43.67681383000001)}"
-4122,14105,GO-20161629616,THEFT OF MOTOR VEHICLE,2016-08-24T00:00:00,2016,August,Wednesday,24,237,18,2016-09-14T00:00:00,2016,September,Wednesday,14,258,9,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,BIONX,EL,1,BLKGRY,4500.0,STOLEN,4120,"{'type': 'Point', 'coordinates': (-79.31680224, 43.68124332)}"
-4123,14146,GO-20179004597,THEFT UNDER,2017-04-11T00:00:00,2017,April,Tuesday,11,101,23,2017-04-12T00:00:00,2017,April,Wednesday,12,102,10,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,CROSS TRAIL EXP,OT,15,RED,1200.0,STOLEN,4121,"{'type': 'Point', 'coordinates': (-79.31576561000001, 43.67080008)}"
-4124,14175,GO-20179011426,THEFT UNDER - BICYCLE,2017-07-30T00:00:00,2017,July,Sunday,30,211,15,2017-07-31T00:00:00,2017,July,Monday,31,212,18,D55,Toronto,64,Woodbine Corridor (64),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SIRRIUS,TO,21,BLK,800.0,STOLEN,4122,"{'type': 'Point', 'coordinates': (-79.31255363, 43.66724381)}"
-4125,14176,GO-20179011426,THEFT UNDER - BICYCLE,2017-07-30T00:00:00,2017,July,Sunday,30,211,15,2017-07-31T00:00:00,2017,July,Monday,31,212,18,D55,Toronto,64,Woodbine Corridor (64),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CROSSTRAIL,TO,21,BLK,900.0,STOLEN,4123,"{'type': 'Point', 'coordinates': (-79.31255363, 43.66724381)}"
-4126,14256,GO-20189021487,THEFT UNDER - BICYCLE,2018-07-06T00:00:00,2018,July,Friday,6,187,18,2018-07-06T00:00:00,2018,July,Friday,6,187,19,D55,Toronto,64,Woodbine Corridor (64),Bar / Restaurant,Commercial,GI,GIANT,RC,21,GRY,1500.0,STOLEN,4124,"{'type': 'Point', 'coordinates': (-79.31926987, 43.67290749)}"
-4127,15988,GO-20151754024,THEFT UNDER,2015-10-10T00:00:00,2015,October,Saturday,10,283,14,2015-10-11T00:00:00,2015,October,Sunday,11,284,11,D55,Toronto,64,Woodbine Corridor (64),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,INDIE,MT,24,BLK,500.0,STOLEN,4125,"{'type': 'Point', 'coordinates': (-79.31404693, 43.68540464)}"
-4128,15999,GO-20152100421,THEFT UNDER,2015-11-13T00:00:00,2015,November,Friday,13,317,3,2015-12-08T00:00:00,2015,December,Tuesday,8,342,6,D55,Toronto,64,Woodbine Corridor (64),"Apartment (Rooming House, Condo)",Apartment,GI,,RC,21,,900.0,STOLEN,4126,"{'type': 'Point', 'coordinates': (-79.31368474, 43.67107952)}"
-4129,16000,GO-20152100421,THEFT UNDER,2015-11-13T00:00:00,2015,November,Friday,13,317,3,2015-12-08T00:00:00,2015,December,Tuesday,8,342,6,D55,Toronto,64,Woodbine Corridor (64),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,,RC,21,GRY,700.0,STOLEN,4127,"{'type': 'Point', 'coordinates': (-79.31368474, 43.67107952)}"
-4130,16004,GO-20152217342,PROPERTY - FOUND,2015-12-27T00:00:00,2015,December,Sunday,27,361,12,2015-12-27T00:00:00,2015,December,Sunday,27,361,14,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,OT,1,BLKONG,,RECOVERED,4128,"{'type': 'Point', 'coordinates': (-79.31412868, 43.67869605)}"
-4131,16055,GO-20201504289,B&E,2020-08-10T00:00:00,2020,August,Monday,10,223,23,2020-08-11T00:00:00,2020,August,Tuesday,11,224,18,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,SPECIALIZED,OT,5,BLK,1000.0,STOLEN,4129,"{'type': 'Point', 'coordinates': (-79.32016436, 43.68408341)}"
-4132,16060,GO-20201554217,THEFT OF EBIKE UNDER $5000,2020-08-14T00:00:00,2020,August,Friday,14,227,22,2020-08-18T00:00:00,2020,August,Tuesday,18,231,19,D55,Toronto,64,Woodbine Corridor (64),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,HORNET,EL,0,BLU,3400.0,STOLEN,4130,"{'type': 'Point', 'coordinates': (-79.30963163, 43.67818369)}"
-4133,16064,GO-20201602346,THEFT OF EBIKE UNDER $5000,2020-08-24T00:00:00,2020,August,Monday,24,237,23,2020-08-25T00:00:00,2020,August,Tuesday,25,238,15,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,VIENNA,EL,1,BLU,3000.0,STOLEN,4131,"{'type': 'Point', 'coordinates': (-79.31204532, 43.67851269)}"
-4134,16086,GO-20209024471,THEFT UNDER,2020-09-24T00:00:00,2020,September,Thursday,24,268,22,2020-09-25T00:00:00,2020,September,Friday,25,269,12,D55,Toronto,64,Woodbine Corridor (64),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,GRADUATE PLASTI,BM,30,BLK,132.0,STOLEN,4132,"{'type': 'Point', 'coordinates': (-79.30963163, 43.67818369)}"
-4135,16087,GO-20209024471,THEFT UNDER,2020-09-24T00:00:00,2020,September,Thursday,24,268,22,2020-09-25T00:00:00,2020,September,Friday,25,269,12,D55,Toronto,64,Woodbine Corridor (64),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,BMX CURSE FC GL,BM,30,BLK,900.0,STOLEN,4133,"{'type': 'Point', 'coordinates': (-79.30963163, 43.67818369)}"
-4136,16089,GO-20201866121,THEFT UNDER,2020-09-17T00:00:00,2020,September,Thursday,17,261,0,2020-10-04T00:00:00,2020,October,Sunday,4,278,14,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNK,,SC,1,SILRED,,STOLEN,4134,"{'type': 'Point', 'coordinates': (-79.31866241, 43.68056668)}"
-4137,16094,GO-20209026212,THEFT UNDER,2020-10-11T00:00:00,2020,October,Sunday,11,285,21,2020-10-12T00:00:00,2020,October,Monday,12,286,18,D55,Toronto,64,Woodbine Corridor (64),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SC,BIGGITY DLX HAR,OT,7,SIL,500.0,STOLEN,4135,"{'type': 'Point', 'coordinates': (-79.3190054, 43.67580551)}"
-4138,18735,GO-20209020216,THEFT UNDER,2020-05-05T00:00:00,2020,May,Tuesday,5,126,4,2020-08-14T00:00:00,2020,August,Friday,14,227,13,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ARISE 2,RG,1,BRZ,1250.0,STOLEN,4136,"{'type': 'Point', 'coordinates': (-79.31805937, 43.67593003)}"
-4139,18744,GO-20209021029,THEFT UNDER,2020-08-18T00:00:00,2020,August,Tuesday,18,231,21,2020-08-22T00:00:00,2020,August,Saturday,22,235,19,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,3500,MT,18,BLK,400.0,STOLEN,4137,"{'type': 'Point', 'coordinates': (-79.31572756, 43.67715498)}"
-4140,18874,GO-20143322604,THEFT UNDER - SHOPLIFTING,2014-11-18T00:00:00,2014,November,Tuesday,18,322,10,2014-11-18T00:00:00,2014,November,Tuesday,18,322,10,D55,Toronto,64,Woodbine Corridor (64),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GIANT,CYPRESS,MT,0,SIL,,STOLEN,4138,"{'type': 'Point', 'coordinates': (-79.31481084000002, 43.66673892000001)}"
-4141,18949,GO-20151814200,THEFT UNDER,2015-10-21T00:00:00,2015,October,Wednesday,21,294,15,2015-10-21T00:00:00,2015,October,Wednesday,21,294,19,D55,Toronto,64,Woodbine Corridor (64),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN,,RG,10,BLUWHI,500.0,STOLEN,4139,"{'type': 'Point', 'coordinates': (-79.31656232, 43.66635918)}"
-4142,19024,GO-20169008907,THEFT UNDER,2016-08-17T00:00:00,2016,August,Wednesday,17,230,5,2016-08-17T00:00:00,2016,August,Wednesday,17,230,6,D55,Toronto,64,Woodbine Corridor (64),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,,OT,15,RED,200.0,STOLEN,4140,"{'type': 'Point', 'coordinates': (-79.31286292, 43.67550879)}"
-4143,19030,GO-20161520700,B&E,2016-08-26T00:00:00,2016,August,Friday,26,239,21,2016-08-27T00:00:00,2016,August,Saturday,27,240,18,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,6,OT,1,BLK,2000.0,STOLEN,4141,"{'type': 'Point', 'coordinates': (-79.31920051, 43.68428635)}"
-4144,19076,GO-20179005370,THEFT UNDER - BICYCLE,2017-04-26T00:00:00,2017,April,Wednesday,26,116,7,2017-04-27T00:00:00,2017,April,Thursday,27,117,13,D55,Toronto,64,Woodbine Corridor (64),"Apartment (Rooming House, Condo)",Apartment,OT,COLOSSAL 2,RC,16,GRY,1500.0,STOLEN,4142,"{'type': 'Point', 'coordinates': (-79.31404693, 43.68540464)}"
-4145,19112,GO-20179014088,THEFT UNDER,2017-09-05T00:00:00,2017,September,Tuesday,5,248,18,2017-09-06T00:00:00,2017,September,Wednesday,6,249,8,D55,Toronto,64,Woodbine Corridor (64),"Apartment (Rooming House, Condo)",Apartment,OT,HARD ROCK,MT,21,BLK,600.0,STOLEN,4143,"{'type': 'Point', 'coordinates': (-79.31404693, 43.68540464)}"
-4146,19113,GO-20179014088,THEFT UNDER,2017-09-05T00:00:00,2017,September,Tuesday,5,248,18,2017-09-06T00:00:00,2017,September,Wednesday,6,249,8,D55,Toronto,64,Woodbine Corridor (64),"Apartment (Rooming House, Condo)",Apartment,RM,EDGE,MT,21,DBL,600.0,STOLEN,4144,"{'type': 'Point', 'coordinates': (-79.31404693, 43.68540464)}"
-4147,19184,GO-20189024548,THEFT UNDER - BICYCLE,2018-07-25T00:00:00,2018,July,Wednesday,25,206,0,2018-07-31T00:00:00,2018,July,Tuesday,31,212,0,D55,Toronto,64,Woodbine Corridor (64),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,TO,21,BLU,1800.0,STOLEN,4145,"{'type': 'Point', 'coordinates': (-79.31351686, 43.66702936)}"
-4148,19186,GO-20189025428,THEFT UNDER - BICYCLE,2018-08-07T00:00:00,2018,August,Tuesday,7,219,13,2018-08-07T00:00:00,2018,August,Tuesday,7,219,15,D55,Toronto,64,Woodbine Corridor (64),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,TREK FX1,RG,21,BLK,500.0,STOLEN,4146,"{'type': 'Point', 'coordinates': (-79.31713686, 43.68473778)}"
-4149,19220,GO-20182271177,PROPERTY - FOUND,2018-12-11T00:00:00,2018,December,Tuesday,11,345,10,2018-12-11T00:00:00,2018,December,Tuesday,11,345,10,D55,Toronto,64,Woodbine Corridor (64),"Police / Courts (Parole Board, Probation Office)",Other,TREK,ALPHA ALUMINUM,RC,18,MUL,,UNKNOWN,4147,"{'type': 'Point', 'coordinates': (-79.3176124, 43.66888972)}"
-4150,19281,GO-20199029056,THEFT UNDER,2019-09-05T00:00:00,2019,September,Thursday,5,248,20,2019-09-07T00:00:00,2019,September,Saturday,7,250,13,D55,Toronto,64,Woodbine Corridor (64),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ROM,RG,15,RED,500.0,STOLEN,4148,"{'type': 'Point', 'coordinates': (-79.31494646, 43.67808986)}"
-4151,19311,GO-20191972434,B&E,2019-10-12T00:00:00,2019,October,Saturday,12,285,2,2019-10-12T00:00:00,2019,October,Saturday,12,285,16,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,ALPHA,MT,0,GRY,1000.0,STOLEN,4149,"{'type': 'Point', 'coordinates': (-79.31564158, 43.66992156)}"
-4152,19312,GO-20191972434,B&E,2019-10-12T00:00:00,2019,October,Saturday,12,285,2,2019-10-12T00:00:00,2019,October,Saturday,12,285,16,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GARY FISHER,MARLIN,MT,0,GRY,700.0,STOLEN,4150,"{'type': 'Point', 'coordinates': (-79.31564158, 43.66992156)}"
-4153,19313,GO-20191972434,B&E,2019-10-12T00:00:00,2019,October,Saturday,12,285,2,2019-10-12T00:00:00,2019,October,Saturday,12,285,16,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,FX 2 DISC,OT,0,BLK,1000.0,STOLEN,4151,"{'type': 'Point', 'coordinates': (-79.31564158, 43.66992156)}"
-4154,19632,GO-20142471435,THEFT UNDER,2014-07-10T00:00:00,2014,July,Thursday,10,191,18,2014-07-10T00:00:00,2014,July,Thursday,10,191,18,D55,Toronto,64,Woodbine Corridor (64),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,ROCKY MOUNTAIN,UNKNOWN,MT,21,GRN,400.0,STOLEN,4152,"{'type': 'Point', 'coordinates': (-79.31481084000002, 43.66673892000001)}"
-4155,19698,GO-20151258718,THEFT UNDER,2015-07-23T00:00:00,2015,July,Thursday,23,204,21,2015-07-23T00:00:00,2015,July,Thursday,23,204,21,D55,Toronto,64,Woodbine Corridor (64),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,,EL,1,WHI,,STOLEN,4153,"{'type': 'Point', 'coordinates': (-79.31656232, 43.66635918)}"
-4156,19753,GO-2016486799,THEFT UNDER - BICYCLE,2016-02-15T00:00:00,2016,February,Monday,15,46,18,2016-03-21T00:00:00,2016,March,Monday,21,81,16,D55,Toronto,64,Woodbine Corridor (64),"Apartment (Rooming House, Condo)",Apartment,SUPERCYCLE,BMX,BM,3,BLK,400.0,STOLEN,4154,"{'type': 'Point', 'coordinates': (-79.31404693, 43.68540464)}"
-4157,22179,GO-20169008673,THEFT UNDER,2016-08-12T00:00:00,2016,August,Friday,12,225,14,2016-08-13T00:00:00,2016,August,Saturday,13,226,11,D55,Toronto,64,Woodbine Corridor (64),"Apartment (Rooming House, Condo)",Apartment,OT,CX 2008,RC,14,WHI,1500.0,STOLEN,4155,"{'type': 'Point', 'coordinates': (-79.31481084000002, 43.66673892000001)}"
-4158,22180,GO-20169008771,THEFT UNDER - BICYCLE,2016-08-15T00:00:00,2016,August,Monday,15,228,5,2016-08-15T00:00:00,2016,August,Monday,15,228,9,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,FBR,MT,10,BLK,523.0,STOLEN,4156,"{'type': 'Point', 'coordinates': (-79.3137786, 43.67531524)}"
-4159,22182,GO-20169008965,THEFT UNDER - BICYCLE,2016-08-16T00:00:00,2016,August,Tuesday,16,229,2,2016-08-17T00:00:00,2016,August,Wednesday,17,230,22,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,SEEK 1,TO,8,SIL,1179.0,STOLEN,4157,"{'type': 'Point', 'coordinates': (-79.31321154, 43.676394280000004)}"
-4160,22255,GO-20179014582,THEFT UNDER,2017-09-12T00:00:00,2017,September,Tuesday,12,255,15,2017-09-12T00:00:00,2017,September,Tuesday,12,255,19,D55,Toronto,64,Woodbine Corridor (64),"Apartment (Rooming House, Condo)",Apartment,RA,HYBRID,MT,18,GRY,400.0,STOLEN,4158,"{'type': 'Point', 'coordinates': (-79.31368474, 43.67107952)}"
-4161,22265,GO-20179017640,THEFT UNDER - BICYCLE,2017-10-19T00:00:00,2017,October,Thursday,19,292,14,2017-10-19T00:00:00,2017,October,Thursday,19,292,16,D55,Toronto,64,Woodbine Corridor (64),Schools During Un-Supervised Activity,Educational,TR,,RG,7,BLK,500.0,STOLEN,4159,"{'type': 'Point', 'coordinates': (-79.32023787000001, 43.68175735)}"
-4162,22280,GO-20189008032,THEFT UNDER - BICYCLE,2018-03-15T00:00:00,2018,March,Thursday,15,74,8,2018-03-15T00:00:00,2018,March,Thursday,15,74,10,D55,Toronto,64,Woodbine Corridor (64),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RA,ROPER,RG,6,ONG,700.0,STOLEN,4160,"{'type': 'Point', 'coordinates': (-79.31274232, 43.6823304)}"
-4163,22329,GO-20189029395,THEFT UNDER,2018-09-05T00:00:00,2018,September,Wednesday,5,248,21,2018-09-06T00:00:00,2018,September,Thursday,6,249,21,D55,Toronto,64,Woodbine Corridor (64),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,TRANCE X4,MT,27,GRY,1500.0,STOLEN,4161,"{'type': 'Point', 'coordinates': (-79.31564158, 43.66992156)}"
-4164,22340,GO-20189031668,THEFT UNDER - BICYCLE,2018-09-06T00:00:00,2018,September,Thursday,6,249,10,2018-09-24T00:00:00,2018,September,Monday,24,267,0,D55,Toronto,64,Woodbine Corridor (64),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SC,UNKNOWN,MT,1,DGR,100.0,STOLEN,4162,"{'type': 'Point', 'coordinates': (-79.31646681, 43.67138179)}"
-4165,22504,GO-20201319182,B&E,2020-07-16T00:00:00,2020,July,Thursday,16,198,2,2020-07-16T00:00:00,2020,July,Thursday,16,198,12,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,MT,21,GRYGRN,300.0,STOLEN,4163,"{'type': 'Point', 'coordinates': (-79.31926987, 43.67290749)}"
-4166,22552,GO-20201694574,THEFT UNDER,2020-09-07T00:00:00,2020,September,Monday,7,251,17,2020-09-07T00:00:00,2020,September,Monday,7,251,18,D55,Toronto,64,Woodbine Corridor (64),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,ZIPPER,,SC,1,BLU,500.0,STOLEN,4164,"{'type': 'Point', 'coordinates': (-79.31462684, 43.67288655)}"
-4167,22555,GO-20201712871,THEFT UNDER - BICYCLE,2020-09-09T00:00:00,2020,September,Wednesday,9,253,20,2020-09-10T00:00:00,2020,September,Thursday,10,254,11,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,,RG,3,BLKGLD,300.0,STOLEN,4165,"{'type': 'Point', 'coordinates': (-79.31646681, 43.67138179)}"
-4168,22569,GO-20209024397,THEFT UNDER,2020-09-24T00:00:00,2020,September,Thursday,24,268,10,2020-09-24T00:00:00,2020,September,Thursday,24,268,21,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,MT,7,RED,600.0,STOLEN,4166,"{'type': 'Point', 'coordinates': (-79.31762961, 43.68462674)}"
-4169,22576,GO-20201884771,B&E,2020-10-02T00:00:00,2020,October,Friday,2,276,17,2020-10-04T00:00:00,2020,October,Sunday,4,278,15,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,,MT,21,BLK,800.0,STOLEN,4167,"{'type': 'Point', 'coordinates': (-79.31785521, 43.67321129)}"
-4170,22887,GO-201591398,THEFT UNDER,2014-12-01T00:00:00,2014,December,Monday,1,335,12,2015-01-16T00:00:00,2015,January,Friday,16,16,15,D55,Toronto,64,Woodbine Corridor (64),"Apartment (Rooming House, Condo)",Apartment,PEUGEOT,,RC,12,GRYBLK,300.0,STOLEN,4168,"{'type': 'Point', 'coordinates': (-79.31801480000001, 43.66990354)}"
-4171,22927,GO-20159006881,THEFT UNDER,2015-09-04T00:00:00,2015,September,Friday,4,247,14,2015-09-08T00:00:00,2015,September,Tuesday,8,251,12,D55,Toronto,64,Woodbine Corridor (64),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,SIRRUS COMP,TO,12,RED,1150.0,STOLEN,4169,"{'type': 'Point', 'coordinates': (-79.3129692, 43.68286392)}"
-4172,22928,GO-20159006881,THEFT UNDER,2015-09-04T00:00:00,2015,September,Friday,4,247,14,2015-09-08T00:00:00,2015,September,Tuesday,8,251,12,D55,Toronto,64,Woodbine Corridor (64),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,SIRRUS LARGE,TO,18,GRY,700.0,STOLEN,4170,"{'type': 'Point', 'coordinates': (-79.3129692, 43.68286392)}"
-4173,22939,GO-20151729555,PROPERTY - FOUND,2015-10-06T00:00:00,2015,October,Tuesday,6,279,11,2015-10-07T00:00:00,2015,October,Wednesday,7,280,9,D55,Toronto,64,Woodbine Corridor (64),"Police / Courts (Parole Board, Probation Office)",Other,SU,XTI-18,MT,99,BLKRED,,UNKNOWN,4171,"{'type': 'Point', 'coordinates': (-79.3176124, 43.66888972)}"
-4174,22941,GO-20151924937,THEFT UNDER,2015-10-08T00:00:00,2015,October,Thursday,8,281,9,2015-11-09T00:00:00,2015,November,Monday,9,313,14,D55,Toronto,64,Woodbine Corridor (64),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,PILOT 2.1,RC,21,BLU,2100.0,STOLEN,4172,"{'type': 'Point', 'coordinates': (-79.32359895, 43.68336554)}"
-4175,22954,GO-20159011413,THEFT FROM MOTOR VEHICLE UNDER,2015-12-13T00:00:00,2015,December,Sunday,13,347,1,2015-12-30T00:00:00,2015,December,Wednesday,30,364,10,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,CARIBOU TOURING,TO,27,,1000.0,STOLEN,4173,"{'type': 'Point', 'coordinates': (-79.31368474, 43.67107952)}"
-4176,22957,GO-20169002059,THEFT UNDER,2015-03-14T00:00:00,2015,March,Saturday,14,73,18,2016-03-06T00:00:00,2016,March,Sunday,6,66,18,D55,Toronto,64,Woodbine Corridor (64),"Apartment (Rooming House, Condo)",Apartment,MA,INVERNESS,RG,1,BLK,600.0,STOLEN,4174,"{'type': 'Point', 'coordinates': (-79.31404693, 43.68540464)}"
-4177,25397,GO-20169010821,THEFT UNDER - BICYCLE,2016-09-20T00:00:00,2016,September,Tuesday,20,264,1,2016-09-20T00:00:00,2016,September,Tuesday,20,264,23,D55,Toronto,64,Woodbine Corridor (64),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,FIXED,RC,1,RED,450.0,STOLEN,4175,"{'type': 'Point', 'coordinates': (-79.31230274, 43.66990781)}"
-4178,25412,GO-20169013267,THEFT UNDER - BICYCLE,2016-11-09T00:00:00,2016,November,Wednesday,9,314,16,2016-11-11T00:00:00,2016,November,Friday,11,316,15,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,TOSCA SL1 (MODI,RG,10,BLK,2200.0,STOLEN,4176,"{'type': 'Point', 'coordinates': (-79.3172039, 43.66793095)}"
-4179,25465,GO-20179010448,THEFT UNDER,2017-07-17T00:00:00,2017,July,Monday,17,198,12,2017-07-17T00:00:00,2017,July,Monday,17,198,23,D55,Toronto,64,Woodbine Corridor (64),Bar / Restaurant,Commercial,,,MT,21,BLK,300.0,STOLEN,4177,"{'type': 'Point', 'coordinates': (-79.32085134, 43.68394391)}"
-4180,25491,GO-20179016008,THEFT UNDER - BICYCLE,2017-09-26T00:00:00,2017,September,Tuesday,26,269,19,2017-09-28T00:00:00,2017,September,Thursday,28,271,12,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,MT,21,SIL,0.0,STOLEN,4178,"{'type': 'Point', 'coordinates': (-79.31823934, 43.68204673)}"
-4181,25523,GO-2018441410,THEFT UNDER - BICYCLE,2018-03-09T00:00:00,2018,March,Friday,9,68,22,2018-03-14T00:00:00,2018,March,Wednesday,14,73,9,D55,Toronto,64,Woodbine Corridor (64),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,VITA,RG,10,PLE,600.0,STOLEN,4179,"{'type': 'Point', 'coordinates': (-79.31607668, 43.6748962)}"
-4182,25546,GO-20189018458,THEFT UNDER - BICYCLE,2018-06-11T00:00:00,2018,June,Monday,11,162,20,2018-06-12T00:00:00,2018,June,Tuesday,12,163,20,D55,Toronto,64,Woodbine Corridor (64),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,CRUISER,OT,6,BLK,500.0,STOLEN,4180,"{'type': 'Point', 'coordinates': (-79.31713686, 43.68473778)}"
-4183,25591,GO-20181775223,THEFT UNDER - BICYCLE,2018-09-24T00:00:00,2018,September,Monday,24,267,16,2018-09-25T00:00:00,2018,September,Tuesday,25,268,10,D55,Toronto,64,Woodbine Corridor (64),"Open Areas (Lakes, Parks, Rivers)",Outside,UNK,,OT,24,YEL,100.0,STOLEN,4181,"{'type': 'Point', 'coordinates': (-79.31805937, 43.67593003)}"
-4184,25621,GO-2019789762,THEFT UNDER - BICYCLE,2019-05-02T00:00:00,2019,May,Thursday,2,122,6,2019-05-02T00:00:00,2019,May,Thursday,2,122,6,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,,TO,1,WHI,400.0,STOLEN,4182,"{'type': 'Point', 'coordinates': (-79.32023787000001, 43.68175735)}"
-4185,25635,GO-20199018811,THEFT UNDER,2019-06-16T00:00:00,2019,June,Sunday,16,167,10,2019-06-16T00:00:00,2019,June,Sunday,16,167,11,D55,Toronto,64,Woodbine Corridor (64),"Apartment (Rooming House, Condo)",Apartment,AQUILA,650B,MT,24,BLK,750.0,STOLEN,4183,"{'type': 'Point', 'coordinates': (-79.31404693, 43.68540464)}"
-4186,25667,GO-20199029542,THEFT UNDER,2019-09-10T00:00:00,2019,September,Tuesday,10,253,18,2019-09-11T00:00:00,2019,September,Wednesday,11,254,9,D55,Toronto,64,Woodbine Corridor (64),Bar / Restaurant,Commercial,OT,KATO,MT,1,BLK,900.0,STOLEN,4184,"{'type': 'Point', 'coordinates': (-79.32085134, 43.68394391)}"
-4187,25687,GO-20192076573,THEFT UNDER - BICYCLE,2019-10-26T00:00:00,2019,October,Saturday,26,299,21,2019-10-27T00:00:00,2019,October,Sunday,27,300,20,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,21,BLKBLU,500.0,STOLEN,4185,"{'type': 'Point', 'coordinates': (-79.31186665, 43.68037567)}"
-4188,25695,GO-20209006169,THEFT UNDER,2020-02-20T00:00:00,2020,February,Thursday,20,51,7,2020-02-20T00:00:00,2020,February,Thursday,20,51,14,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,INDIE,RG,20,BLK,800.0,STOLEN,4186,"{'type': 'Point', 'coordinates': (-79.31450438, 43.67704048000001)}"
-4189,25742,GO-20209017070,THEFT UNDER,2020-07-07T00:00:00,2020,July,Tuesday,7,189,23,2020-07-08T00:00:00,2020,July,Wednesday,8,190,6,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,STORM,MT,21,GRY,600.0,STOLEN,4187,"{'type': 'Point', 'coordinates': (-79.32076157, 43.67653289)}"
-4190,25778,GO-20201828065,THEFT UNDER - BICYCLE,2020-09-25T00:00:00,2020,September,Friday,25,269,19,2020-09-26T00:00:00,2020,September,Saturday,26,270,15,D55,Toronto,64,Woodbine Corridor (64),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,,MT,27,SILBLK,900.0,STOLEN,4188,"{'type': 'Point', 'coordinates': (-79.32023787000001, 43.68175735)}"
-4191,25779,GO-20201828065,THEFT UNDER - BICYCLE,2020-09-25T00:00:00,2020,September,Friday,25,269,19,2020-09-26T00:00:00,2020,September,Saturday,26,270,15,D55,Toronto,64,Woodbine Corridor (64),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,,MT,10,MRNGRN,440.0,STOLEN,4189,"{'type': 'Point', 'coordinates': (-79.32023787000001, 43.68175735)}"
-4192,25780,GO-20201828065,THEFT UNDER - BICYCLE,2020-09-25T00:00:00,2020,September,Friday,25,269,19,2020-09-26T00:00:00,2020,September,Saturday,26,270,15,D55,Toronto,64,Woodbine Corridor (64),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,,MT,10,MRNGRN,440.0,STOLEN,4190,"{'type': 'Point', 'coordinates': (-79.32023787000001, 43.68175735)}"
-4193,355,GO-20179006058,THEFT UNDER,2017-04-30T00:00:00,2017,April,Sunday,30,120,14,2017-05-10T00:00:00,2017,May,Wednesday,10,130,14,D55,Toronto,65,Greenwood-Coxwell (65),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE,OT,21,,900.0,STOLEN,4191,"{'type': 'Point', 'coordinates': (-79.31971022, 43.66562158)}"
-4194,620,GO-20171055702,THEFT UNDER,2017-06-13T00:00:00,2017,June,Tuesday,13,164,22,2017-06-14T00:00:00,2017,June,Wednesday,14,165,0,D55,Toronto,65,Greenwood-Coxwell (65),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FORTRESS,1750 FORTRESS,SC,8,BLU,3500.0,STOLEN,4192,"{'type': 'Point', 'coordinates': (-79.32688298, 43.67118651)}"
-4195,622,GO-20179008119,THEFT UNDER - BICYCLE,2017-06-06T00:00:00,2017,June,Tuesday,6,157,23,2017-06-15T00:00:00,2017,June,Thursday,15,166,0,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,STEAMROLLER,RC,35,BGE,900.0,STOLEN,4193,"{'type': 'Point', 'coordinates': (-79.3275818, 43.68075601)}"
-4196,863,GO-20171280834,THEFT OVER,2017-07-14T00:00:00,2017,July,Friday,14,195,17,2017-07-17T00:00:00,2017,July,Monday,17,198,11,D55,Toronto,65,Greenwood-Coxwell (65),"Apartment (Rooming House, Condo)",Apartment,FUJI,ROUBAIX,RC,40,SIL,2200.0,UNKNOWN,4194,"{'type': 'Point', 'coordinates': (-79.32589804, 43.67140105)}"
-4197,864,GO-20171280834,THEFT OVER,2017-07-14T00:00:00,2017,July,Friday,14,195,17,2017-07-17T00:00:00,2017,July,Monday,17,198,11,D55,Toronto,65,Greenwood-Coxwell (65),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,EPIC COMP,MT,40,SIL,5000.0,STOLEN,4195,"{'type': 'Point', 'coordinates': (-79.32589804, 43.67140105)}"
-4198,889,GO-20179010377,THEFT OVER - BICYCLE,2017-07-14T00:00:00,2017,July,Friday,14,195,17,2017-07-17T00:00:00,2017,July,Monday,17,198,10,D55,Toronto,65,Greenwood-Coxwell (65),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,FJ,ROUBOUIX,RC,21,SIL,2500.0,STOLEN,4196,"{'type': 'Point', 'coordinates': (-79.32589804, 43.67140105)}"
-4199,890,GO-20179010377,THEFT OVER - BICYCLE,2017-07-14T00:00:00,2017,July,Friday,14,195,17,2017-07-17T00:00:00,2017,July,Monday,17,198,10,D55,Toronto,65,Greenwood-Coxwell (65),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,EPIC COMP,MT,27,BLK,5000.0,STOLEN,4197,"{'type': 'Point', 'coordinates': (-79.32589804, 43.67140105)}"
-4200,1040,GO-20179011550,THEFT UNDER,2017-08-01T00:00:00,2017,August,Tuesday,1,213,0,2017-08-02T00:00:00,2017,August,Wednesday,2,214,16,D55,Toronto,65,Greenwood-Coxwell (65),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,THE NIGHT,OT,1,GRY,400.0,STOLEN,4198,"{'type': 'Point', 'coordinates': (-79.32328138, 43.6795952)}"
-4201,19255,GO-20199023992,THEFT UNDER,2019-07-27T00:00:00,2019,July,Saturday,27,208,3,2019-07-27T00:00:00,2019,July,Saturday,27,208,11,D54,Toronto,59,Danforth East York (59),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,MT,18,RED,2500.0,STOLEN,4199,"{'type': 'Point', 'coordinates': (-79.31618861, 43.69239626)}"
-4202,19389,GO-20209016936,THEFT UNDER,2020-06-29T00:00:00,2020,June,Monday,29,181,0,2020-07-06T00:00:00,2020,July,Monday,6,188,12,D54,Toronto,59,Danforth East York (59),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,OT,21,BRZ,1200.0,STOLEN,4200,"{'type': 'Point', 'coordinates': (-79.3354643, 43.68866015)}"
-4203,19680,GO-20159002386,THEFT UNDER,2015-05-01T00:00:00,2015,May,Friday,1,121,8,2015-05-02T00:00:00,2015,May,Saturday,2,122,14,D54,Toronto,59,Danforth East York (59),"Apartment (Rooming House, Condo)",Apartment,EM,,EL,2,,,STOLEN,4201,"{'type': 'Point', 'coordinates': (-79.3354643, 43.68866015)}"
-4204,22292,GO-20189017170,THEFT UNDER - BICYCLE,2018-06-03T00:00:00,2018,June,Sunday,3,154,0,2018-06-03T00:00:00,2018,June,Sunday,3,154,7,D54,Toronto,59,Danforth East York (59),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,ZEKTOR 3,RG,18,BLK,1100.0,STOLEN,4202,"{'type': 'Point', 'coordinates': (-79.31954614, 43.69515957)}"
-4205,22301,GO-20189020931,THEFT UNDER - BICYCLE,2017-07-28T00:00:00,2017,July,Friday,28,209,15,2018-07-02T00:00:00,2018,July,Monday,2,183,15,D54,Toronto,59,Danforth East York (59),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,THE ADMIRAL,RG,1,BLU,350.0,STOLEN,4203,"{'type': 'Point', 'coordinates': (-79.32062053, 43.69144722)}"
-4206,22387,GO-20191215900,B&E,2019-06-29T00:00:00,2019,June,Saturday,29,180,18,2019-06-30T00:00:00,2019,June,Sunday,30,181,15,D54,Toronto,59,Danforth East York (59),"Single Home, House (Attach Garage, Cottage, Mobile)",House,LEMOND,,OT,1,BRN,6000.0,STOLEN,4204,"{'type': 'Point', 'coordinates': (-79.31539704, 43.69179343)}"
-4207,22401,GO-20199024876,THEFT UNDER,2019-08-03T00:00:00,2019,August,Saturday,3,215,16,2019-08-03T00:00:00,2019,August,Saturday,3,215,20,D54,Toronto,59,Danforth East York (59),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,EVA,RG,1,PLE,250.0,STOLEN,4205,"{'type': 'Point', 'coordinates': (-79.32029803, 43.69073133)}"
-4208,22421,GO-20191846271,THEFT OF EBIKE UNDER $5000,2019-09-23T00:00:00,2019,September,Monday,23,266,7,2019-09-25T00:00:00,2019,September,Wednesday,25,268,10,D54,Toronto,59,Danforth East York (59),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,MONSTER,EL,1,BLK,500.0,STOLEN,4206,"{'type': 'Point', 'coordinates': (-79.32797783, 43.69413643)}"
-4209,22453,GO-20209011016,THEFT UNDER,2020-04-08T00:00:00,2020,April,Wednesday,8,99,18,2020-04-13T00:00:00,2020,April,Monday,13,104,12,D54,Toronto,59,Danforth East York (59),"Apartment (Rooming House, Condo)",Apartment,CA,BAD BOY,RG,24,BLK,1130.0,STOLEN,4207,"{'type': 'Point', 'coordinates': (-79.34201301, 43.69086007000001)}"
-4210,22482,GO-20201147082,THEFT UNDER,2020-06-21T00:00:00,2020,June,Sunday,21,173,11,2020-06-22T00:00:00,2020,June,Monday,22,174,10,D54,Toronto,59,Danforth East York (59),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,ROSCOE,BM,18,ONG,1900.0,STOLEN,4208,"{'type': 'Point', 'coordinates': (-79.34087527, 43.6841443)}"
-4211,22483,GO-20201147082,THEFT UNDER,2020-06-21T00:00:00,2020,June,Sunday,21,173,11,2020-06-22T00:00:00,2020,June,Monday,22,174,10,D54,Toronto,59,Danforth East York (59),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPEC,P3,BM,1,BLK,2000.0,STOLEN,4209,"{'type': 'Point', 'coordinates': (-79.34087527, 43.6841443)}"
-4212,22523,GO-20209019415,THEFT UNDER,2020-08-01T00:00:00,2020,August,Saturday,1,214,21,2020-08-05T00:00:00,2020,August,Wednesday,5,218,18,D54,Toronto,59,Danforth East York (59),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,CRUX E5,RC,20,RED,1600.0,STOLEN,4210,"{'type': 'Point', 'coordinates': (-79.33177831, 43.68671282)}"
-4213,22585,GO-20202120824,THEFT UNDER - BICYCLE,2020-11-07T00:00:00,2020,November,Saturday,7,312,17,2020-11-08T00:00:00,2020,November,Sunday,8,313,17,D54,Toronto,59,Danforth East York (59),"Private Property Structure (Pool, Shed, Detached Garage)",Other,DEVINCI,RIFF DEORE,MT,27,BLKGRY,1199.0,STOLEN,4211,"{'type': 'Point', 'coordinates': (-79.32879665, 43.68658238)}"
-4214,22586,GO-20202120824,THEFT UNDER - BICYCLE,2020-11-07T00:00:00,2020,November,Saturday,7,312,17,2020-11-08T00:00:00,2020,November,Sunday,8,313,17,D54,Toronto,59,Danforth East York (59),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,MARLIN 7,MT,27,BLKBLU,1099.0,STOLEN,4212,"{'type': 'Point', 'coordinates': (-79.32879665, 43.68658238)}"
-4215,22836,GO-20149003887,THEFT UNDER,2014-06-08T00:00:00,2014,June,Sunday,8,159,1,2014-06-08T00:00:00,2014,June,Sunday,8,159,10,D54,Toronto,59,Danforth East York (59),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,VFR D2,MT,12,BLK,1000.0,STOLEN,4213,"{'type': 'Point', 'coordinates': (-79.3290727, 43.68730129)}"
-4216,22868,GO-20149006703,THEFT UNDER,2014-09-08T00:00:00,2014,September,Monday,8,251,9,2014-09-08T00:00:00,2014,September,Monday,8,251,19,D54,Toronto,59,Danforth East York (59),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,ESCAPE RX,OT,10,BLK,1250.0,STOLEN,4214,"{'type': 'Point', 'coordinates': (-79.34167633, 43.68622256)}"
-4217,22958,GO-2016412669,B&E,2016-03-08T00:00:00,2016,March,Tuesday,8,68,8,2016-03-09T00:00:00,2016,March,Wednesday,9,69,13,D54,Toronto,59,Danforth East York (59),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,FAT BOY,RG,0,BLKONG,2500.0,STOLEN,4215,"{'type': 'Point', 'coordinates': (-79.34201301, 43.69086007000001)}"
-4218,22959,GO-2016412669,B&E,2016-03-08T00:00:00,2016,March,Tuesday,8,68,8,2016-03-09T00:00:00,2016,March,Wednesday,9,69,13,D54,Toronto,59,Danforth East York (59),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TREK,SUPER FLY,RG,0,BLKBLU,4000.0,STOLEN,4216,"{'type': 'Point', 'coordinates': (-79.34201301, 43.69086007000001)}"
-4219,22960,GO-2016412669,B&E,2016-03-08T00:00:00,2016,March,Tuesday,8,68,8,2016-03-09T00:00:00,2016,March,Wednesday,9,69,13,D54,Toronto,59,Danforth East York (59),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,MISFIT DESCENT,OT,1,SIL,1500.0,STOLEN,4217,"{'type': 'Point', 'coordinates': (-79.34201301, 43.69086007000001)}"
-4220,22986,GO-20161352799,B&E,2016-07-29T00:00:00,2016,July,Friday,29,211,8,2016-08-01T00:00:00,2016,August,Monday,1,214,20,D54,Toronto,59,Danforth East York (59),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,MT,18,BLK,2000.0,STOLEN,4218,"{'type': 'Point', 'coordinates': (-79.32362512000002, 43.69428536)}"
-4221,22987,GO-20161352799,B&E,2016-07-29T00:00:00,2016,July,Friday,29,211,8,2016-08-01T00:00:00,2016,August,Monday,1,214,20,D54,Toronto,59,Danforth East York (59),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,MT,18,WHI,2000.0,STOLEN,4219,"{'type': 'Point', 'coordinates': (-79.32362512000002, 43.69428536)}"
-4222,25394,GO-20161648195,THEFT UNDER - BICYCLE,2016-09-04T00:00:00,2016,September,Sunday,4,248,23,2016-09-16T00:00:00,2016,September,Friday,16,260,13,D54,Toronto,59,Danforth East York (59),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,,OT,21,GRYWHI,778.0,STOLEN,4220,"{'type': 'Point', 'coordinates': (-79.32547713, 43.69082011)}"
-4223,25482,GO-20171601019,PROPERTY - FOUND,2017-09-04T00:00:00,2017,September,Monday,4,247,12,2017-09-04T00:00:00,2017,September,Monday,4,247,12,D54,Toronto,59,Danforth East York (59),Schools During Un-Supervised Activity,Educational,NEXT,ULTRASHOCK,MT,21,BLKRED,100.0,RECOVERED,4221,"{'type': 'Point', 'coordinates': (-79.34094657, 43.68942155)}"
-4224,25596,GO-20189034925,THEFT UNDER - BICYCLE,2018-10-21T00:00:00,2018,October,Sunday,21,294,6,2018-10-21T00:00:00,2018,October,Sunday,21,294,13,D54,Toronto,59,Danforth East York (59),"Apartment (Rooming House, Condo)",Apartment,UK,ROCKHOPPER,MT,25,WHI,1000.0,STOLEN,4222,"{'type': 'Point', 'coordinates': (-79.33167404, 43.68946281)}"
-4225,673,GO-20179008519,THEFT UNDER - BICYCLE,2017-06-20T00:00:00,2017,June,Tuesday,20,171,8,2017-06-20T00:00:00,2017,June,Tuesday,20,171,20,D54,Toronto,60,Woodbine-Lumsden (60),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KO,DEW - 2004,MT,24,BGE,250.0,STOLEN,4223,"{'type': 'Point', 'coordinates': (-79.31223776, 43.6952963)}"
-4226,2969,GO-20189023959,THEFT UNDER - BICYCLE,2018-07-24T00:00:00,2018,July,Tuesday,24,205,8,2018-07-26T00:00:00,2018,July,Thursday,26,207,8,D54,Toronto,60,Woodbine-Lumsden (60),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,MT,3,BLK,150.0,STOLEN,4224,"{'type': 'Point', 'coordinates': (-79.31495709, 43.69544283)}"
-4227,3342,GO-20181593284,THEFT UNDER - BICYCLE,2018-08-27T00:00:00,2018,August,Monday,27,239,21,2018-08-28T00:00:00,2018,August,Tuesday,28,240,18,D54,Toronto,60,Woodbine-Lumsden (60),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,CTM,MT,21,GRY,360.0,STOLEN,4225,"{'type': 'Point', 'coordinates': (-79.3103671, 43.69090243)}"
-4228,3442,GO-20189029913,THEFT UNDER - BICYCLE,2018-09-10T00:00:00,2018,September,Monday,10,253,23,2018-09-11T00:00:00,2018,September,Tuesday,11,254,9,D54,Toronto,60,Woodbine-Lumsden (60),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RA,HYBRID,RG,21,PLE,650.0,STOLEN,4226,"{'type': 'Point', 'coordinates': (-79.30669566, 43.69093797)}"
-4229,3825,GO-20189029913,THEFT UNDER - BICYCLE,2018-09-10T00:00:00,2018,September,Monday,10,253,23,2018-09-11T00:00:00,2018,September,Tuesday,11,254,9,D54,Toronto,60,Woodbine-Lumsden (60),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RA,HYBRID,OT,21,PLE,650.0,STOLEN,4227,"{'type': 'Point', 'coordinates': (-79.30669566, 43.69093797)}"
-4230,4890,GO-20199023819,THEFT UNDER,2019-07-20T00:00:00,2019,July,Saturday,20,201,12,2019-07-26T00:00:00,2019,July,Friday,26,207,2,D54,Toronto,60,Woodbine-Lumsden (60),Ttc Subway Station,Transit,CC,CAPRI,OT,7,PNK,400.0,STOLEN,4228,"{'type': 'Point', 'coordinates': (-79.31310933, 43.68652567000001)}"
-4231,4924,GO-20191441955,THEFT UNDER - BICYCLE,2019-07-28T00:00:00,2019,July,Sunday,28,209,21,2019-07-31T00:00:00,2019,July,Wednesday,31,212,15,D54,Toronto,60,Woodbine-Lumsden (60),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,ROCK HOPPS,MT,21,BLK,400.0,STOLEN,4229,"{'type': 'Point', 'coordinates': (-79.31192935, 43.68679018)}"
-4232,4925,GO-20191441955,THEFT UNDER - BICYCLE,2019-07-28T00:00:00,2019,July,Sunday,28,209,21,2019-07-31T00:00:00,2019,July,Wednesday,31,212,15,D54,Toronto,60,Woodbine-Lumsden (60),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CERVELO,SOLOIST,RC,21,GLD,1000.0,STOLEN,4230,"{'type': 'Point', 'coordinates': (-79.31192935, 43.68679018)}"
-4233,5014,GO-20199025578,THEFT UNDER,2019-08-09T00:00:00,2019,August,Friday,9,221,10,2019-08-09T00:00:00,2019,August,Friday,9,221,18,D54,Toronto,60,Woodbine-Lumsden (60),Ttc Subway Station,Transit,OT,ALLEZ,RC,20,WHI,1500.0,STOLEN,4231,"{'type': 'Point', 'coordinates': (-79.31310933, 43.68652567000001)}"
-4234,5049,GO-20199025970,THEFT UNDER,2019-08-12T00:00:00,2019,August,Monday,12,224,8,2019-08-12T00:00:00,2019,August,Monday,12,224,22,D54,Toronto,60,Woodbine-Lumsden (60),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,PRIORITY CLASSI,RG,3,BLU,375.0,STOLEN,4232,"{'type': 'Point', 'coordinates': (-79.30538883, 43.69353242)}"
-4235,6665,GO-20209017970,THEFT UNDER,2020-07-16T00:00:00,2020,July,Thursday,16,198,23,2020-07-19T00:00:00,2020,July,Sunday,19,201,19,D54,Toronto,60,Woodbine-Lumsden (60),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,TOSCANA,RG,21,BLK,250.0,STOLEN,4233,"{'type': 'Point', 'coordinates': (-79.31127894, 43.68694946)}"
-4236,7516,GO-20209027072,THEFT UNDER,2020-10-07T00:00:00,2020,October,Wednesday,7,281,8,2020-10-20T00:00:00,2020,October,Tuesday,20,294,13,D54,Toronto,60,Woodbine-Lumsden (60),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,BOLT,RG,21,BLK,400.0,STOLEN,4234,"{'type': 'Point', 'coordinates': (-79.31396948, 43.69317222)}"
-4237,7606,GO-20209029024,THEFT UNDER,2020-10-24T00:00:00,2020,October,Saturday,24,298,23,2020-11-08T00:00:00,2020,November,Sunday,8,313,20,D54,Toronto,60,Woodbine-Lumsden (60),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,DURANGO 1 19'',MT,7,SIL,500.0,STOLEN,4235,"{'type': 'Point', 'coordinates': (-79.31005669, 43.69741802)}"
-4238,7637,GO-20202168763,B&E,2020-11-14T00:00:00,2020,November,Saturday,14,319,16,2020-11-15T00:00:00,2020,November,Sunday,15,320,17,D54,Toronto,60,Woodbine-Lumsden (60),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OPUS,ADAJIO,MT,18,BLK,,STOLEN,4236,"{'type': 'Point', 'coordinates': (-79.30790117, 43.69372445)}"
-4239,7638,GO-20202168763,B&E,2020-11-14T00:00:00,2020,November,Saturday,14,319,16,2020-11-15T00:00:00,2020,November,Sunday,15,320,17,D54,Toronto,60,Woodbine-Lumsden (60),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SCHWINN,HYBRID,MT,12,BLK,,STOLEN,4237,"{'type': 'Point', 'coordinates': (-79.30790117, 43.69372445)}"
-4240,7639,GO-20202168763,B&E,2020-11-14T00:00:00,2020,November,Saturday,14,319,16,2020-11-15T00:00:00,2020,November,Sunday,15,320,17,D54,Toronto,60,Woodbine-Lumsden (60),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,,OT,10,BLU,,STOLEN,4238,"{'type': 'Point', 'coordinates': (-79.30790117, 43.69372445)}"
-4241,8265,GO-20149004492,THEFT UNDER,2014-06-07T00:00:00,2014,June,Saturday,7,158,10,2014-06-27T00:00:00,2014,June,Friday,27,178,10,D54,Toronto,60,Woodbine-Lumsden (60),Unknown,Other,OT,DOLCE ELITE 200,RC,21,BLU,1300.0,STOLEN,4239,"{'type': 'Point', 'coordinates': (-79.3103671, 43.69090243)}"
-4242,8398,GO-20149004918,THEFT UNDER,2014-07-10T00:00:00,2014,July,Thursday,10,191,8,2014-07-11T00:00:00,2014,July,Friday,11,192,19,D54,Toronto,60,Woodbine-Lumsden (60),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,VITA,TO,5,WHI,600.0,STOLEN,4240,"{'type': 'Point', 'coordinates': (-79.30629426, 43.69563039)}"
-4243,9183,GO-20143293490,THEFT UNDER,2014-10-24T00:00:00,2014,October,Friday,24,297,14,2014-11-13T00:00:00,2014,November,Thursday,13,317,11,D54,Toronto,60,Woodbine-Lumsden (60),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RALEIGH,BLUEMAX,MT,18,BLU,800.0,STOLEN,4241,"{'type': 'Point', 'coordinates': (-79.31509258, 43.6910867)}"
-4244,10175,GO-20159005326,THEFT UNDER,2015-07-18T00:00:00,2015,July,Saturday,18,199,2,2015-08-04T00:00:00,2015,August,Tuesday,4,216,16,D54,Toronto,60,Woodbine-Lumsden (60),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RM,SOUL,MT,21,BLK,1000.0,STOLEN,4242,"{'type': 'Point', 'coordinates': (-79.31396948, 43.69317222)}"
-4245,10537,GO-20159007668,THEFT UNDER,2015-09-11T00:00:00,2015,September,Friday,11,254,14,2015-09-23T00:00:00,2015,September,Wednesday,23,266,20,D54,Toronto,60,Woodbine-Lumsden (60),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,10,GRY,500.0,STOLEN,4243,"{'type': 'Point', 'coordinates': (-79.30417619, 43.69075231)}"
-4246,10538,GO-20159007668,THEFT UNDER,2015-09-11T00:00:00,2015,September,Friday,11,254,14,2015-09-23T00:00:00,2015,September,Wednesday,23,266,20,D54,Toronto,60,Woodbine-Lumsden (60),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,10,MRN,500.0,STOLEN,4244,"{'type': 'Point', 'coordinates': (-79.30417619, 43.69075231)}"
-4247,11225,GO-2016733217,THEFT UNDER - BICYCLE,2016-04-29T00:00:00,2016,April,Friday,29,120,17,2016-04-29T00:00:00,2016,April,Friday,29,120,17,D54,Toronto,60,Woodbine-Lumsden (60),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GARY FISHER,AVANT GARDE,MT,0,SIL,300.0,STOLEN,4245,"{'type': 'Point', 'coordinates': (-79.31010268000001, 43.69627478)}"
-4248,11882,GO-20169007647,THEFT UNDER - BICYCLE,2016-07-23T00:00:00,2016,July,Saturday,23,205,3,2016-07-23T00:00:00,2016,July,Saturday,23,205,11,D54,Toronto,60,Woodbine-Lumsden (60),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ADAGIO,RG,24,,750.0,STOLEN,4246,"{'type': 'Point', 'coordinates': (-79.30446505, 43.69144567)}"
-4249,12916,GO-20182321719,THEFT OF EBIKE UNDER $5000,2018-12-19T00:00:00,2018,December,Wednesday,19,353,0,2018-12-19T00:00:00,2018,December,Wednesday,19,353,7,D54,Toronto,60,Woodbine-Lumsden (60),"Single Home, House (Attach Garage, Cottage, Mobile)",House,HARO,,EL,3,BLK,1800.0,STOLEN,4247,"{'type': 'Point', 'coordinates': (-79.31604983, 43.69335557)}"
-4250,12926,GO-20199013544,THEFT UNDER,2019-04-30T00:00:00,2019,April,Tuesday,30,120,7,2019-04-30T00:00:00,2019,April,Tuesday,30,120,18,D54,Toronto,60,Woodbine-Lumsden (60),Ttc Subway Station,Transit,SC,DELMAR,OT,1,LGR,300.0,STOLEN,4248,"{'type': 'Point', 'coordinates': (-79.31310933, 43.68652567000001)}"
-4251,15921,GO-20143406070,B&E,2014-12-01T00:00:00,2014,December,Monday,1,335,7,2014-12-01T00:00:00,2014,December,Monday,1,335,21,D54,Toronto,60,Woodbine-Lumsden (60),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,MYKA ELITE,MT,18,BLUBRN,,STOLEN,4249,"{'type': 'Point', 'coordinates': (-79.30477556, 43.69214748)}"
-4252,19096,GO-20179009824,THEFT UNDER - BICYCLE,2017-07-09T00:00:00,2017,July,Sunday,9,190,19,2017-07-10T00:00:00,2017,July,Monday,10,191,11,D54,Toronto,60,Woodbine-Lumsden (60),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,5,LGR,200.0,STOLEN,4250,"{'type': 'Point', 'coordinates': (-79.31127894, 43.68694946)}"
-4253,19293,GO-20199030944,THEFT UNDER,2019-09-20T00:00:00,2019,September,Friday,20,263,13,2019-09-21T00:00:00,2019,September,Saturday,21,264,9,D54,Toronto,60,Woodbine-Lumsden (60),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,GTX2 700C,MT,24,RED,500.0,STOLEN,4251,"{'type': 'Point', 'coordinates': (-79.31377201, 43.68810001)}"
-4254,19651,GO-20149006466,THEFT UNDER,2014-08-31T00:00:00,2014,August,Sunday,31,243,20,2014-09-01T00:00:00,2014,September,Monday,1,244,15,D54,Toronto,60,Woodbine-Lumsden (60),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,MT,21,BLU,500.0,STOLEN,4252,"{'type': 'Point', 'coordinates': (-79.30919372, 43.68822884)}"
-4255,19766,GO-2016881335,THEFT UNDER,2016-05-20T00:00:00,2016,May,Friday,20,141,13,2016-05-22T00:00:00,2016,May,Sunday,22,143,12,D54,Toronto,60,Woodbine-Lumsden (60),"Open Areas (Lakes, Parks, Rivers)",Outside,CCM,SS2.0,RG,6,GRN,160.0,STOLEN,4253,"{'type': 'Point', 'coordinates': (-79.31223776, 43.6952963)}"
-4256,22187,GO-20169009758,THEFT UNDER - BICYCLE,2016-08-10T00:00:00,2016,August,Wednesday,10,223,18,2016-08-31T00:00:00,2016,August,Wednesday,31,244,16,D54,Toronto,60,Woodbine-Lumsden (60),Ttc Subway Station,Transit,SU,,MT,12,,250.0,STOLEN,4254,"{'type': 'Point', 'coordinates': (-79.31310933, 43.68652567000001)}"
-4257,22391,GO-20199021328,THEFT UNDER,2019-07-05T00:00:00,2019,July,Friday,5,186,1,2019-07-07T00:00:00,2019,July,Sunday,7,188,10,D54,Toronto,60,Woodbine-Lumsden (60),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FJ,,MT,12,BLK,650.0,STOLEN,4255,"{'type': 'Point', 'coordinates': (-79.31396948, 43.69317222)}"
-4258,22966,GO-2016547409,THEFT UNDER,2016-03-26T00:00:00,2016,March,Saturday,26,86,21,2016-03-31T00:00:00,2016,March,Thursday,31,91,18,D54,Toronto,60,Woodbine-Lumsden (60),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,PHYTHON,RG,21,BLK,100.0,STOLEN,4256,"{'type': 'Point', 'coordinates': (-79.30472926, 43.69483278)}"
-4259,22995,GO-20161475596,B&E,2016-08-20T00:00:00,2016,August,Saturday,20,233,16,2016-08-20T00:00:00,2016,August,Saturday,20,233,16,D54,Toronto,60,Woodbine-Lumsden (60),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,INDY 3,TO,18,BLKGRY,500.0,STOLEN,4257,"{'type': 'Point', 'coordinates': (-79.31739177, 43.69644432)}"
-4260,25383,GO-20169009427,THEFT UNDER,2016-06-23T00:00:00,2016,June,Thursday,23,175,20,2016-08-24T00:00:00,2016,August,Wednesday,24,237,14,D54,Toronto,60,Woodbine-Lumsden (60),Ttc Subway Station,Transit,TR,,MT,24,BLU,600.0,STOLEN,4258,"{'type': 'Point', 'coordinates': (-79.31310933, 43.68652567000001)}"
-4261,25570,GO-20189023526,THEFT UNDER - BICYCLE,2018-07-21T00:00:00,2018,July,Saturday,21,202,11,2018-07-23T00:00:00,2018,July,Monday,23,204,11,D54,Toronto,60,Woodbine-Lumsden (60),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,RG,21,BLK,700.0,STOLEN,4259,"{'type': 'Point', 'coordinates': (-79.31005669, 43.69741802)}"
-4262,14085,GO-20161354391,PROPERTY - FOUND,2016-08-02T00:00:00,2016,August,Tuesday,2,215,4,2016-08-02T00:00:00,2016,August,Tuesday,2,215,4,D55,Toronto,63,The Beaches (63),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,WINNER,SC,1,SILBLK,,UNKNOWN,4260,"{'type': 'Point', 'coordinates': (-79.31482799, 43.66227291)}"
-4263,25699,GO-20209009115,THEFT UNDER,2020-03-12T00:00:00,2020,March,Thursday,12,72,4,2020-03-16T00:00:00,2020,March,Monday,16,76,17,D54,Toronto,60,Woodbine-Lumsden (60),Ttc Subway Station,Transit,CC,,RG,20,DGR,100.0,STOLEN,4261,"{'type': 'Point', 'coordinates': (-79.31310933, 43.68652567000001)}"
-4264,430,GO-2017892097,THEFT UNDER - BICYCLE,2017-05-20T00:00:00,2017,May,Saturday,20,140,17,2017-05-20T00:00:00,2017,May,Saturday,20,140,19,D55,Toronto,61,Taylor-Massey (61),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GIANT,,TO,24,BLKSIL,300.0,STOLEN,4262,"{'type': 'Point', 'coordinates': (-79.28831806, 43.69123147)}"
-4265,710,GO-20171138282,THEFT UNDER - BICYCLE,2017-06-26T00:00:00,2017,June,Monday,26,177,1,2017-06-26T00:00:00,2017,June,Monday,26,177,1,D54,Toronto,61,Taylor-Massey (61),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,XFS-XWS,EL,40,BGE,1200.0,STOLEN,4263,"{'type': 'Point', 'coordinates': (-79.29906513, 43.69245061)}"
-4266,1346,GO-20179014303,THEFT UNDER,2017-09-08T00:00:00,2017,September,Friday,8,251,11,2017-09-08T00:00:00,2017,September,Friday,8,251,21,D54,Toronto,61,Taylor-Massey (61),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,800,MT,25,DGR,600.0,STOLEN,4264,"{'type': 'Point', 'coordinates': (-79.29235253, 43.69527373)}"
-4267,1819,GO-20172025685,THEFT OF EBIKE UNDER $5000,2017-11-06T00:00:00,2017,November,Monday,6,310,23,2017-11-08T00:00:00,2017,November,Wednesday,8,312,20,D54,Toronto,61,Taylor-Massey (61),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,MONSTER,EL,3,BLK,,STOLEN,4265,"{'type': 'Point', 'coordinates': (-79.29729507, 43.69491488)}"
-4268,2108,GO-20189009527,THEFT UNDER - BICYCLE,2018-03-24T00:00:00,2018,March,Saturday,24,83,8,2018-03-26T00:00:00,2018,March,Monday,26,85,13,D55,Toronto,61,Taylor-Massey (61),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,DOWNTOWN 701,RG,24,BLK,449.0,STOLEN,4266,"{'type': 'Point', 'coordinates': (-79.28831806, 43.69123147)}"
-4269,2400,GO-20189016392,THEFT UNDER,2018-05-26T00:00:00,2018,May,Saturday,26,146,20,2018-05-27T00:00:00,2018,May,Sunday,27,147,12,D55,Toronto,61,Taylor-Massey (61),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SU,VICE DUAL SUSPE,MT,18,BLU,170.0,STOLEN,4267,"{'type': 'Point', 'coordinates': (-79.28831806, 43.69123147)}"
-4270,2456,GO-20189017365,THEFT UNDER - BICYCLE,2018-06-04T00:00:00,2018,June,Monday,4,155,10,2018-06-04T00:00:00,2018,June,Monday,4,155,18,D54,Toronto,61,Taylor-Massey (61),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SC,,MT,21,,150.0,STOLEN,4268,"{'type': 'Point', 'coordinates': (-79.29729507, 43.69491488)}"
-4271,2727,GO-20189020853,THEFT UNDER - BICYCLE,2018-06-30T00:00:00,2018,June,Saturday,30,181,23,2018-07-01T00:00:00,2018,July,Sunday,1,182,7,D54,Toronto,61,Taylor-Massey (61),"Apartment (Rooming House, Condo)",Apartment,CC,ALFA DUAL,MT,24,GRN,450.0,STOLEN,4269,"{'type': 'Point', 'coordinates': (-79.30232936, 43.69261241)}"
-4272,1542,GO-20179015983,THEFT UNDER - BICYCLE,2017-09-27T00:00:00,2017,September,Wednesday,27,270,9,2017-09-27T00:00:00,2017,September,Wednesday,27,270,22,D55,Toronto,65,Greenwood-Coxwell (65),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,16,BLU,2500.0,STOLEN,4270,"{'type': 'Point', 'coordinates': (-79.32589804, 43.67140105)}"
-4273,3154,GO-20189025901,THEFT UNDER - BICYCLE,2018-08-10T00:00:00,2018,August,Friday,10,222,16,2018-08-10T00:00:00,2018,August,Friday,10,222,18,D55,Toronto,61,Taylor-Massey (61),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RM,EDGE,MT,24,BLK,500.0,STOLEN,4271,"{'type': 'Point', 'coordinates': (-79.28831806, 43.69123147)}"
-4274,3641,GO-20189033288,THEFT UNDER - BICYCLE,2018-10-08T00:00:00,2018,October,Monday,8,281,22,2018-10-09T00:00:00,2018,October,Tuesday,9,282,0,D54,Toronto,61,Taylor-Massey (61),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,29 BEAST,MT,20,BLK,294.0,STOLEN,4272,"{'type': 'Point', 'coordinates': (-79.30232936, 43.69261241)}"
-4275,3951,GO-20189042898,THEFT UNDER - BICYCLE,2018-12-19T00:00:00,2018,December,Wednesday,19,353,2,2018-12-21T00:00:00,2018,December,Friday,21,355,6,D54,Toronto,61,Taylor-Massey (61),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,1,BLK,700.0,STOLEN,4273,"{'type': 'Point', 'coordinates': (-79.30056835, 43.69437813)}"
-4276,4687,GO-20191267293,PROPERTY - FOUND,2019-07-06T00:00:00,2019,July,Saturday,6,187,15,2019-07-07T00:00:00,2019,July,Sunday,7,188,17,D54,Toronto,61,Taylor-Massey (61),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,FS2.0,BM,6,BLUWHI,170.0,UNKNOWN,4274,"{'type': 'Point', 'coordinates': (-79.302075, 43.69199783)}"
-4277,5386,GO-20199031265,THEFT UNDER,2019-09-23T00:00:00,2019,September,Monday,23,266,17,2019-09-23T00:00:00,2019,September,Monday,23,266,22,D55,Toronto,61,Taylor-Massey (61),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,FJ,,OT,24,BLK,1000.0,STOLEN,4275,"{'type': 'Point', 'coordinates': (-79.28831806, 43.69123147)}"
-4278,5699,GO-20199037854,THEFT UNDER,2019-11-16T00:00:00,2019,November,Saturday,16,320,9,2019-11-18T00:00:00,2019,November,Monday,18,322,9,D54,Toronto,61,Taylor-Massey (61),"Apartment (Rooming House, Condo)",Apartment,SC,GTX 2 700C,RG,21,BLK,550.0,STOLEN,4276,"{'type': 'Point', 'coordinates': (-79.29729507, 43.69491488)}"
-4279,6418,GO-20209015601,THEFT FROM MOTOR VEHICLE UNDER,2020-06-16T00:00:00,2020,June,Tuesday,16,168,18,2020-06-17T00:00:00,2020,June,Wednesday,17,169,21,D54,Toronto,61,Taylor-Massey (61),"Apartment (Rooming House, Condo)",Apartment,CC,APEX,MT,24,RED,720.0,STOLEN,4277,"{'type': 'Point', 'coordinates': (-79.29181642, 43.69575899)}"
-4280,6849,GO-20201449190,THEFT OF EBIKE UNDER $5000,2020-08-02T00:00:00,2020,August,Sunday,2,215,20,2020-08-03T00:00:00,2020,August,Monday,3,216,21,D54,Toronto,61,Taylor-Massey (61),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TMC,F1,EL,3,RED,4000.0,STOLEN,4278,"{'type': 'Point', 'coordinates': (-79.29060362, 43.69164337)}"
-4281,7090,GO-20209021354,THEFT UNDER,2020-08-25T00:00:00,2020,August,Tuesday,25,238,18,2020-08-25T00:00:00,2020,August,Tuesday,25,238,22,D55,Toronto,61,Taylor-Massey (61),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,,MT,27,,,STOLEN,4279,"{'type': 'Point', 'coordinates': (-79.28831806, 43.69123147)}"
-4282,7353,GO-20209024411,THEFT UNDER,2020-09-24T00:00:00,2020,September,Thursday,24,268,21,2020-09-25T00:00:00,2020,September,Friday,25,269,15,D54,Toronto,61,Taylor-Massey (61),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,,MT,12,GRY,400.0,STOLEN,4280,"{'type': 'Point', 'coordinates': (-79.30508393, 43.69284018)}"
-4283,7485,GO-20201970883,THEFT OF EBIKE UNDER $5000,2020-10-08T00:00:00,2020,October,Thursday,8,282,20,2020-10-09T00:00:00,2020,October,Friday,9,283,12,D54,Toronto,61,Taylor-Massey (61),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,CHAMELEON DLX,EL,1,OTH,1350.0,STOLEN,4281,"{'type': 'Point', 'coordinates': (-79.29235253, 43.69527373)}"
-4284,7695,GO-20209031452,THEFT UNDER,2020-12-08T00:00:00,2020,December,Tuesday,8,343,2,2020-12-08T00:00:00,2020,December,Tuesday,8,343,10,D54,Toronto,61,Taylor-Massey (61),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KO,STINKY,MT,18,SIL,2000.0,STOLEN,4282,"{'type': 'Point', 'coordinates': (-79.29728834, 43.694578220000004)}"
-4285,8159,GO-20142297997,THEFT UNDER,2014-06-14T00:00:00,2014,June,Saturday,14,165,20,2014-06-15T00:00:00,2014,June,Sunday,15,166,20,D55,Toronto,61,Taylor-Massey (61),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT`,,MT,18,GRN,792.0,STOLEN,4283,"{'type': 'Point', 'coordinates': (-79.28831806, 43.69123147)}"
-4286,8182,GO-20149004211,B&E,2014-06-18T00:00:00,2014,June,Wednesday,18,169,0,2014-06-18T00:00:00,2014,June,Wednesday,18,169,10,D54,Toronto,61,Taylor-Massey (61),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,NRS,MT,9,RED,1400.0,STOLEN,4284,"{'type': 'Point', 'coordinates': (-79.29125809000001, 43.69314398)}"
-4287,9078,GO-20149007637,THEFT UNDER,2014-10-16T00:00:00,2014,October,Thursday,16,289,19,2014-10-17T00:00:00,2014,October,Friday,17,290,9,D54,Toronto,61,Taylor-Massey (61),"Apartment (Rooming House, Condo)",Apartment,BI,,RC,10,DBL,200.0,STOLEN,4285,"{'type': 'Point', 'coordinates': (-79.29509473, 43.69607965)}"
-4288,9139,GO-20143217834,THEFT UNDER,2014-10-30T00:00:00,2014,October,Thursday,30,303,17,2014-11-01T00:00:00,2014,November,Saturday,1,305,13,D54,Toronto,61,Taylor-Massey (61),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CCM,100TH ANNIVERSA,RG,0,BLU,129.0,UNKNOWN,4286,"{'type': 'Point', 'coordinates': (-79.29368242, 43.69258698)}"
-4289,9813,GO-20151003581,THEFT UNDER,2015-06-10T00:00:00,2015,June,Wednesday,10,161,17,2015-06-15T00:00:00,2015,June,Monday,15,166,12,D55,Toronto,61,Taylor-Massey (61),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SCHWINN,,MT,21,BLK,600.0,STOLEN,4287,"{'type': 'Point', 'coordinates': (-79.28831806, 43.69123147)}"
-4290,10494,GO-20151608633,THEFT UNDER,2015-09-17T00:00:00,2015,September,Thursday,17,260,14,2015-09-17T00:00:00,2015,September,Thursday,17,260,14,D54,Toronto,61,Taylor-Massey (61),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GATTO,E-BIKE,OT,0,GRN,1000.0,STOLEN,4288,"{'type': 'Point', 'coordinates': (-79.28831806, 43.69123147)}"
-4291,10682,GO-20151834416,THEFT UNDER,2015-10-25T00:00:00,2015,October,Sunday,25,298,6,2015-10-25T00:00:00,2015,October,Sunday,25,298,6,D54,Toronto,61,Taylor-Massey (61),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,HARD ROCK,MT,15,,800.0,STOLEN,4289,"{'type': 'Point', 'coordinates': (-79.3000385, 43.69144852)}"
-4292,10858,GO-20152126789,PROPERTY - FOUND,2015-12-12T00:00:00,2015,December,Saturday,12,346,1,2015-12-12T00:00:00,2015,December,Saturday,12,346,1,D54,Toronto,61,Taylor-Massey (61),"Religious Facilities (Synagogue, Church, Convent, Mosque)",Other,OTHER,1700 TA,SC,5,BLK,,UNKNOWN,4290,"{'type': 'Point', 'coordinates': (-79.28831806, 43.69123147)}"
-4293,11274,GO-20169004253,THEFT UNDER,2016-05-06T00:00:00,2016,May,Friday,6,127,6,2016-05-07T00:00:00,2016,May,Saturday,7,128,17,D54,Toronto,61,Taylor-Massey (61),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,21,WHI,1000.0,STOLEN,4291,"{'type': 'Point', 'coordinates': (-79.30472926, 43.69483278)}"
-4294,11402,GO-2016919827,THEFT UNDER - BICYCLE,2016-05-27T00:00:00,2016,May,Friday,27,148,21,2016-05-28T00:00:00,2016,May,Saturday,28,149,7,D54,Toronto,61,Taylor-Massey (61),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPEALIZED,SIRRUS,MT,27,GRY,1000.0,STOLEN,4292,"{'type': 'Point', 'coordinates': (-79.29703492, 43.692197240000006)}"
-4295,11730,GO-20161177407,THEFT OF EBIKE UNDER $5000,2016-05-30T00:00:00,2016,May,Monday,30,151,12,2016-07-05T00:00:00,2016,July,Tuesday,5,187,20,D54,Toronto,61,Taylor-Massey (61),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,EL,1,WHI,800.0,STOLEN,4293,"{'type': 'Point', 'coordinates': (-79.29509473, 43.69607965)}"
-4296,12590,GO-20169011825,THEFT UNDER,2016-10-08T00:00:00,2016,October,Saturday,8,282,10,2016-10-11T00:00:00,2016,October,Tuesday,11,285,10,D54,Toronto,61,Taylor-Massey (61),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,2013 REVEL 4,RG,18,RED,500.0,STOLEN,4294,"{'type': 'Point', 'coordinates': (-79.30003877, 43.69314633)}"
-4297,12700,GO-20169012780,THEFT UNDER,2016-10-29T00:00:00,2016,October,Saturday,29,303,0,2016-10-30T00:00:00,2016,October,Sunday,30,304,17,D54,Toronto,61,Taylor-Massey (61),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,MOUNTAIN BIKE,MT,6,BLK,300.0,STOLEN,4295,"{'type': 'Point', 'coordinates': (-79.30232936, 43.69261241)}"
-4298,12900,GO-20189034407,THEFT UNDER - BICYCLE,2018-10-17T00:00:00,2018,October,Wednesday,17,290,9,2018-10-17T00:00:00,2018,October,Wednesday,17,290,12,D54,Toronto,61,Taylor-Massey (61),Schools During Un-Supervised Activity,Educational,UK,SUPERCYCLE 1800,MT,25,,109.0,STOLEN,4296,"{'type': 'Point', 'coordinates': (-79.29264529, 43.69022289)}"
-4299,14117,GO-20169012546,THEFT UNDER - BICYCLE,2016-10-24T00:00:00,2016,October,Monday,24,298,20,2016-10-25T00:00:00,2016,October,Tuesday,25,299,1,D55,Toronto,61,Taylor-Massey (61),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CC,ORION,OT,21,BLK,450.0,STOLEN,4297,"{'type': 'Point', 'coordinates': (-79.28831806, 43.69123147)}"
-4300,14142,GO-2017174295,FTC WITH CONDITIONS,2017-01-28T00:00:00,2017,January,Saturday,28,28,11,2017-01-28T00:00:00,2017,January,Saturday,28,28,11,D55,Toronto,61,Taylor-Massey (61),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SUN,,SC,0,,,STOLEN,4298,"{'type': 'Point', 'coordinates': (-79.28831806, 43.69123147)}"
-4301,14230,GO-20189013544,THEFT UNDER,2018-04-19T00:00:00,2018,April,Thursday,19,109,16,2018-05-02T00:00:00,2018,May,Wednesday,2,122,9,D54,Toronto,61,Taylor-Massey (61),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,DAYTRIPPER,RG,3,BRZ,0.0,STOLEN,4299,"{'type': 'Point', 'coordinates': (-79.29908427, 43.6933709)}"
-4302,14241,GO-20189018251,THEFT UNDER,2018-06-11T00:00:00,2018,June,Monday,11,162,12,2018-06-11T00:00:00,2018,June,Monday,11,162,15,D54,Toronto,61,Taylor-Massey (61),Schools During Supervised Activity,Educational,OT,VICTORY,SC,5,DBL,3500.0,STOLEN,4300,"{'type': 'Point', 'coordinates': (-79.29144739, 43.69050786)}"
-4303,22215,GO-20169014214,THEFT UNDER,2016-11-20T00:00:00,2016,November,Sunday,20,325,18,2016-12-04T00:00:00,2016,December,Sunday,4,339,17,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,ST1,EL,40,BLK,4500.0,STOLEN,4301,"{'type': 'Point', 'coordinates': (-79.31029568, 43.66773066)}"
-4304,15890,GO-20142555903,THEFT UNDER,2014-07-23T00:00:00,2014,July,Wednesday,23,204,11,2014-07-23T00:00:00,2014,July,Wednesday,23,204,13,D54,Toronto,62,East End-Danforth (62),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FORTRESS,1700 DT,SC,50,BLU,2500.0,RECOVERED,4302,"{'type': 'Point', 'coordinates': (-79.2967315, 43.68930442)}"
-4305,22846,GO-20149004564,THEFT UNDER,2014-06-29T00:00:00,2014,June,Sunday,29,180,18,2014-06-29T00:00:00,2014,June,Sunday,29,180,21,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,JAMIS,RC,6,RED,600.0,STOLEN,4303,"{'type': 'Point', 'coordinates': (-79.30587251, 43.68484095)}"
-4306,14088,GO-20169008206,THEFT UNDER - BICYCLE,2016-07-28T00:00:00,2016,July,Thursday,28,210,9,2016-08-04T00:00:00,2016,August,Thursday,4,217,14,D55,Toronto,63,The Beaches (63),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,HR COMP,MT,24,RED,0.0,STOLEN,4304,"{'type': 'Point', 'coordinates': (-79.29694703, 43.66801642000001)}"
-4307,15899,GO-20149005986,THEFT UNDER,2014-08-13T00:00:00,2014,August,Wednesday,13,225,20,2014-08-15T00:00:00,2014,August,Friday,15,227,13,D55,Toronto,62,East End-Danforth (62),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,MT,21,BLK,700.0,STOLEN,4305,"{'type': 'Point', 'coordinates': (-79.28696197, 43.687938370000005)}"
-4308,22216,GO-20169014662,POSSESSION PROPERTY OBC OVER,2016-12-09T00:00:00,2016,December,Friday,9,344,23,2016-12-14T00:00:00,2016,December,Wednesday,14,349,21,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,TR,X CALIBER,MT,21,RED,800.0,STOLEN,4306,"{'type': 'Point', 'coordinates': (-79.30295345, 43.66702426)}"
-4309,22849,GO-20149004618,THEFT UNDER,2014-07-02T00:00:00,2014,July,Wednesday,2,183,1,2014-07-02T00:00:00,2014,July,Wednesday,2,183,13,D55,Toronto,62,East End-Danforth (62),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,METRO,EL,7,,2000.0,STOLEN,4307,"{'type': 'Point', 'coordinates': (-79.30729606, 43.68693699)}"
-4310,1605,GO-20179016636,THEFT UNDER - BICYCLE,2017-10-06T00:00:00,2017,October,Friday,6,279,0,2017-10-07T00:00:00,2017,October,Saturday,7,280,0,D55,Toronto,65,Greenwood-Coxwell (65),"Apartment (Rooming House, Condo)",Apartment,OT,SC1,TO,9,LBL,800.0,STOLEN,4308,"{'type': 'Point', 'coordinates': (-79.32730959, 43.66390954)}"
-4311,14098,GO-20161501233,THEFT UNDER - BICYCLE,2016-08-23T00:00:00,2016,August,Tuesday,23,236,19,2016-08-24T00:00:00,2016,August,Wednesday,24,237,17,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,WHISTLER,MT,27,LBL,1017.0,STOLEN,4309,"{'type': 'Point', 'coordinates': (-79.29725266, 43.67726857)}"
-4312,1643,GO-20179016911,THEFT UNDER - BICYCLE,2017-10-07T00:00:00,2017,October,Saturday,7,280,18,2017-10-10T00:00:00,2017,October,Tuesday,10,283,23,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,,RG,80,WHI,169.0,STOLEN,4310,"{'type': 'Point', 'coordinates': (-79.32076157, 43.67653289)}"
-4313,14100,GO-20169009847,THEFT UNDER,2016-09-02T00:00:00,2016,September,Friday,2,246,10,2016-09-02T00:00:00,2016,September,Friday,2,246,10,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,OT,6,,500.0,STOLEN,4311,"{'type': 'Point', 'coordinates': (-79.29797652, 43.67046133)}"
-4314,15914,GO-20143127296,THEFT UNDER,2014-10-18T00:00:00,2014,October,Saturday,18,291,8,2014-10-18T00:00:00,2014,October,Saturday,18,291,9,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SUPERCYCLE,,RG,6,PLE,200.0,STOLEN,4312,"{'type': 'Point', 'coordinates': (-79.30155909, 43.68767501)}"
-4315,1799,GO-20179018955,THEFT UNDER - BICYCLE,2017-11-05T00:00:00,2017,November,Sunday,5,309,0,2017-11-05T00:00:00,2017,November,Sunday,5,309,19,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ASPECT 940,MT,24,RED,850.0,STOLEN,4313,"{'type': 'Point', 'coordinates': (-79.32402651, 43.66676495)}"
-4316,22244,GO-20179011890,THEFT UNDER - BICYCLE,2017-08-05T00:00:00,2017,August,Saturday,5,217,23,2017-08-08T00:00:00,2017,August,Tuesday,8,220,9,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,SU,VIE,RG,21,MRN,100.0,STOLEN,4314,"{'type': 'Point', 'coordinates': (-79.30687812, 43.66849906)}"
-4317,22864,GO-20149006217,THEFT UNDER,2014-08-23T00:00:00,2014,August,Saturday,23,235,14,2014-08-23T00:00:00,2014,August,Saturday,23,235,15,D54,Toronto,62,East End-Danforth (62),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,DETOUR,MT,21,GRY,400.0,STOLEN,4315,"{'type': 'Point', 'coordinates': (-79.31163998, 43.68594944)}"
-4318,14122,GO-20169013527,THEFT UNDER - BICYCLE,2016-11-16T00:00:00,2016,November,Wednesday,16,321,22,2016-11-17T00:00:00,2016,November,Thursday,17,322,13,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,KO,,OT,11,BLK,2000.0,STOLEN,4316,"{'type': 'Point', 'coordinates': (-79.30915558, 43.66798981)}"
-4319,15918,GO-20143291698,THEFT UNDER,2014-11-08T00:00:00,2014,November,Saturday,8,312,15,2014-11-13T00:00:00,2014,November,Thursday,13,317,4,D55,Toronto,62,East End-Danforth (62),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,,EL,1,BLU,1400.0,STOLEN,4317,"{'type': 'Point', 'coordinates': (-79.3005068, 43.68844665)}"
-4320,15932,GO-2015721503,THEFT UNDER,2015-05-01T00:00:00,2015,May,Friday,1,121,12,2015-05-01T00:00:00,2015,May,Friday,1,121,12,D54,Toronto,62,East End-Danforth (62),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FORESTER,,SC,1,BLU,1200.0,STOLEN,4318,"{'type': 'Point', 'coordinates': (-79.3017916, 43.68814492)}"
-4321,15969,GO-20151427228,THEFT UNDER,2015-08-19T00:00:00,2015,August,Wednesday,19,231,13,2015-08-19T00:00:00,2015,August,Wednesday,19,231,16,D54,Toronto,62,East End-Danforth (62),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FORTRESS,14-1700,SC,5,,4000.0,STOLEN,4319,"{'type': 'Point', 'coordinates': (-79.3017916, 43.68814492)}"
-4322,15975,GO-20159006456,THEFT UNDER,2015-08-28T00:00:00,2015,August,Friday,28,240,1,2015-08-28T00:00:00,2015,August,Friday,28,240,12,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CC,,MT,16,WHI,800.0,STOLEN,4320,"{'type': 'Point', 'coordinates': (-79.29488033, 43.68971806)}"
-4323,15983,GO-20159007760,THEFT UNDER,2015-09-25T00:00:00,2015,September,Friday,25,268,10,2015-09-25T00:00:00,2015,September,Friday,25,268,18,D54,Toronto,62,East End-Danforth (62),Ttc Subway Station,Transit,GI,,RC,24,BLK,1000.0,STOLEN,4321,"{'type': 'Point', 'coordinates': (-79.30093674, 43.68940767)}"
-4324,16001,GO-20159010700,THEFT UNDER,2015-10-16T00:00:00,2015,October,Friday,16,289,12,2015-10-16T00:00:00,2015,October,Friday,16,289,18,D55,Toronto,62,East End-Danforth (62),Schools During Un-Supervised Activity,Educational,UK,,RC,3,WHI,900.0,STOLEN,4322,"{'type': 'Point', 'coordinates': (-79.29265957, 43.68365894)}"
-4325,16002,GO-20159010700,THEFT UNDER,2015-10-16T00:00:00,2015,October,Friday,16,289,12,2015-10-16T00:00:00,2015,October,Friday,16,289,18,D55,Toronto,62,East End-Danforth (62),Schools During Un-Supervised Activity,Educational,UK,,RG,3,GRN,600.0,STOLEN,4323,"{'type': 'Point', 'coordinates': (-79.29265957, 43.68365894)}"
-4326,16012,GO-2016629906,B&E,2016-04-12T00:00:00,2016,April,Tuesday,12,103,2,2016-04-13T00:00:00,2016,April,Wednesday,13,104,16,D55,Toronto,62,East End-Danforth (62),"Apartment (Rooming House, Condo)",Apartment,NORCO,SPADE,RC,1,BLKPLE,600.0,STOLEN,4324,"{'type': 'Point', 'coordinates': (-79.29833016, 43.68042744)}"
-4327,16014,GO-20169004053,THEFT UNDER - BICYCLE,2016-04-30T00:00:00,2016,April,Saturday,30,121,23,2016-05-02T00:00:00,2016,May,Monday,2,123,12,D55,Toronto,62,East End-Danforth (62),"Apartment (Rooming House, Condo)",Apartment,UK,2014,RG,24,BLK,700.0,STOLEN,4325,"{'type': 'Point', 'coordinates': (-79.28965689, 43.68620736)}"
-4328,16042,GO-20209017811,THEFT UNDER,2020-07-16T00:00:00,2020,July,Thursday,16,198,1,2020-07-17T00:00:00,2020,July,Friday,17,199,16,D54,Toronto,62,East End-Danforth (62),"Apartment (Rooming House, Condo)",Apartment,RA,OZARK,MT,10,TAN,100.0,STOLEN,4326,"{'type': 'Point', 'coordinates': (-79.30762828, 43.68765923)}"
-4329,16058,GO-20209020375,THEFT UNDER,2020-08-15T00:00:00,2020,August,Saturday,15,228,23,2020-08-17T00:00:00,2020,August,Monday,17,230,14,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,MT,1,,350.0,STOLEN,4327,"{'type': 'Point', 'coordinates': (-79.30917735, 43.68567653)}"
-4330,16066,GO-20209021549,THEFT UNDER,2020-08-26T00:00:00,2020,August,Wednesday,26,239,21,2020-08-27T00:00:00,2020,August,Thursday,27,240,15,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SU,SC1800 18-SPEED,RG,18,SIL,0.0,STOLEN,4328,"{'type': 'Point', 'coordinates': (-79.29871872, 43.68424822)}"
-4331,16076,GO-20209022998,THEFT UNDER,2020-09-11T00:00:00,2020,September,Friday,11,255,16,2020-09-11T00:00:00,2020,September,Friday,11,255,16,D54,Toronto,62,East End-Danforth (62),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,FX3,TO,21,BLK,900.0,STOLEN,4329,"{'type': 'Point', 'coordinates': (-79.29786068, 43.68903988000001)}"
-4332,16077,GO-20209023042,FTC PROBATION ORDER,2020-08-29T00:00:00,2020,August,Saturday,29,242,5,2020-09-12T00:00:00,2020,September,Saturday,12,256,11,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,AREVA,MT,21,LBL,225.0,STOLEN,4330,"{'type': 'Point', 'coordinates': (-79.2870473, 43.68053895)}"
-4333,16111,GO-20209032086,THEFT UNDER,2020-12-09T00:00:00,2020,December,Wednesday,9,344,23,2020-12-15T00:00:00,2020,December,Tuesday,15,350,13,D55,Toronto,62,East End-Danforth (62),"Apartment (Rooming House, Condo)",Apartment,OT,CHANCE,RG,11,GRY,2000.0,STOLEN,4331,"{'type': 'Point', 'coordinates': (-79.29987616, 43.67851223)}"
-4334,18712,GO-20209017944,THEFT UNDER,2020-07-19T00:00:00,2020,July,Sunday,19,201,11,2020-07-19T00:00:00,2020,July,Sunday,19,201,13,D54,Toronto,62,East End-Danforth (62),Convenience Stores,Commercial,,PRISTINE 24,MT,7,LBL,270.0,STOLEN,4332,"{'type': 'Point', 'coordinates': (-79.29786068, 43.68903988000001)}"
-4335,18754,GO-20201685277,B&E,2020-09-06T00:00:00,2020,September,Sunday,6,250,4,2020-09-06T00:00:00,2020,September,Sunday,6,250,13,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CCM,700C VELOCI,MT,12,GRN,300.0,STOLEN,4333,"{'type': 'Point', 'coordinates': (-79.30500531, 43.68035009)}"
-4336,18762,GO-20209024796,THEFT UNDER,2020-09-22T00:00:00,2020,September,Tuesday,22,266,0,2020-09-28T00:00:00,2020,September,Monday,28,272,15,D54,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,RIVERSIDE 500,RG,9,BLK,430.0,STOLEN,4334,"{'type': 'Point', 'coordinates': (-79.30387522, 43.69004961)}"
-4337,18763,GO-20201871244,THEFT UNDER,2020-10-02T00:00:00,2020,October,Friday,2,276,11,2020-10-02T00:00:00,2020,October,Friday,2,276,11,D54,Toronto,62,East End-Danforth (62),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GIANT,ALIGHT,RG,24,BLK,900.0,STOLEN,4335,"{'type': 'Point', 'coordinates': (-79.31310933, 43.68652567000001)}"
-4338,18774,GO-20202053114,THEFT OF EBIKE UNDER $5000,2020-10-21T00:00:00,2020,October,Wednesday,21,295,10,2020-10-29T00:00:00,2020,October,Thursday,29,303,14,D54,Toronto,62,East End-Danforth (62),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,,EL,1,REDBLK,2000.0,STOLEN,4336,"{'type': 'Point', 'coordinates': (-79.3017916, 43.68814492)}"
-4339,18838,GO-20149004488,THEFT UNDER,2014-06-23T00:00:00,2014,June,Monday,23,174,6,2014-06-27T00:00:00,2014,June,Friday,27,178,9,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,PE,T6000A ?,TO,18,SIL,0.0,STOLEN,4337,"{'type': 'Point', 'coordinates': (-79.29125135, 43.68687322)}"
-4340,18839,GO-20149004488,THEFT UNDER,2014-06-23T00:00:00,2014,June,Monday,23,174,6,2014-06-27T00:00:00,2014,June,Friday,27,178,9,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,IH,,MT,18,BLU,500.0,STOLEN,4338,"{'type': 'Point', 'coordinates': (-79.29125135, 43.68687322)}"
-4341,18877,GO-2015109251,THEFT UNDER,2015-01-02T00:00:00,2015,January,Friday,2,2,18,2015-01-19T00:00:00,2015,January,Monday,19,19,16,D55,Toronto,62,East End-Danforth (62),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,DAYMAK,ECO STAR.,EL,1,RED,800.0,STOLEN,4339,"{'type': 'Point', 'coordinates': (-79.29589298, 43.68486187)}"
-4342,18903,GO-20151030851,THEFT UNDER,2015-06-19T00:00:00,2015,June,Friday,19,170,13,2015-06-19T00:00:00,2015,June,Friday,19,170,13,D55,Toronto,62,East End-Danforth (62),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,EWINOBIKES,EL,1,RED,1200.0,STOLEN,4340,"{'type': 'Point', 'coordinates': (-79.3005068, 43.68844665)}"
-4343,18919,GO-20151368941,THEFT UNDER,2015-08-10T00:00:00,2015,August,Monday,10,222,8,2015-08-10T00:00:00,2015,August,Monday,10,222,9,D54,Toronto,62,East End-Danforth (62),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,MT,15,BLU,,STOLEN,4341,"{'type': 'Point', 'coordinates': (-79.3017916, 43.68814492)}"
-4344,18933,GO-20159006879,THEFT UNDER,2015-08-22T00:00:00,2015,August,Saturday,22,234,11,2015-09-08T00:00:00,2015,September,Tuesday,8,251,12,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,PHEONIX,RG,21,SIL,300.0,STOLEN,4342,"{'type': 'Point', 'coordinates': (-79.29265957, 43.68365894)}"
-4345,18938,GO-20159007507,THEFT UNDER,2015-09-19T00:00:00,2015,September,Saturday,19,262,19,2015-09-21T00:00:00,2015,September,Monday,21,264,13,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,SC,1,PLE,50.0,STOLEN,4343,"{'type': 'Point', 'coordinates': (-79.29265957, 43.68365894)}"
-4346,18962,GO-2016290356,THEFT UNDER,2016-02-16T00:00:00,2016,February,Tuesday,16,47,10,2016-02-18T00:00:00,2016,February,Thursday,18,49,9,D55,Toronto,62,East End-Danforth (62),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FORTRESS,UNKNOWN,SC,0,BLK,3500.0,STOLEN,4344,"{'type': 'Point', 'coordinates': (-79.29375531, 43.68996433)}"
-4347,18963,GO-2016345108,PROPERTY - FOUND,2016-02-27T00:00:00,2016,February,Saturday,27,58,11,2016-02-27T00:00:00,2016,February,Saturday,27,58,14,D55,Toronto,62,East End-Danforth (62),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,PRELUDE,TO,14,BLUBLK,300.0,UNKNOWN,4345,"{'type': 'Point', 'coordinates': (-79.29065471, 43.68211585)}"
-4348,18996,GO-20169006671,THEFT UNDER - BICYCLE,2016-07-04T00:00:00,2016,July,Monday,4,186,3,2016-07-04T00:00:00,2016,July,Monday,4,186,7,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SIRRUS,RG,18,BLK,600.0,STOLEN,4346,"{'type': 'Point', 'coordinates': (-79.30960335, 43.68364534)}"
-4349,19001,GO-20169007328,THEFT UNDER - BICYCLE,2016-07-17T00:00:00,2016,July,Sunday,17,199,2,2016-07-18T00:00:00,2016,July,Monday,18,200,13,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,CROSSTRAIL ELIT,RG,18,BLK,1200.0,STOLEN,4347,"{'type': 'Point', 'coordinates': (-79.3021187, 43.67941268)}"
-4350,19172,GO-20189020854,THEFT UNDER - BICYCLE,2018-06-19T00:00:00,2018,June,Tuesday,19,170,16,2018-07-01T00:00:00,2018,July,Sunday,1,182,8,D55,Toronto,62,East End-Danforth (62),Go Station,Transit,RM,METRO,MT,21,BLU,530.0,STOLEN,4356,"{'type': 'Point', 'coordinates': (-79.30088278, 43.68550226)}"
-4351,19002,GO-20169007328,THEFT UNDER - BICYCLE,2016-07-17T00:00:00,2016,July,Sunday,17,199,2,2016-07-18T00:00:00,2016,July,Monday,18,200,13,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,GIANT ROAM,MT,18,GRY,1050.0,STOLEN,4348,"{'type': 'Point', 'coordinates': (-79.3021187, 43.67941268)}"
-4352,19003,GO-20169007328,THEFT UNDER - BICYCLE,2016-07-17T00:00:00,2016,July,Sunday,17,199,2,2016-07-18T00:00:00,2016,July,Monday,18,200,13,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,GIAN CYPRESS HY,MT,18,DBL,600.0,STOLEN,4349,"{'type': 'Point', 'coordinates': (-79.3021187, 43.67941268)}"
-4353,19042,GO-20169011418,THEFT UNDER,2016-10-01T00:00:00,2016,October,Saturday,1,275,16,2016-10-01T00:00:00,2016,October,Saturday,1,275,16,D54,Toronto,62,East End-Danforth (62),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,KH,FLITE 100,RC,1,BLK,700.0,STOLEN,4350,"{'type': 'Point', 'coordinates': (-79.2967315, 43.68930442)}"
-4354,19101,GO-20179012022,THEFT UNDER - BICYCLE,2017-08-09T00:00:00,2017,August,Wednesday,9,221,7,2017-08-09T00:00:00,2017,August,Wednesday,9,221,16,D54,Toronto,62,East End-Danforth (62),Ttc Subway Station,Transit,UK,SINGLE SPEED FI,RC,1,BLK,680.0,STOLEN,4351,"{'type': 'Point', 'coordinates': (-79.30093674, 43.68940767)}"
-4355,19117,GO-20171723179,THEFT UNDER - BICYCLE,2017-09-22T00:00:00,2017,September,Friday,22,265,9,2017-09-22T00:00:00,2017,September,Friday,22,265,18,D54,Toronto,62,East End-Danforth (62),"Group Homes (Non-Profit, Halfway House, Social Agency)",Other,SUPERCYCLE,TEMPO,RG,1,YELWHI,250.0,STOLEN,4352,"{'type': 'Point', 'coordinates': (-79.29786068, 43.68903988000001)}"
-4356,19124,GO-20179017012,THEFT UNDER - BICYCLE,2017-10-05T00:00:00,2017,October,Thursday,5,278,7,2017-10-12T00:00:00,2017,October,Thursday,12,285,12,D55,Toronto,62,East End-Danforth (62),Go Station,Transit,GI,CYPRESS R,RG,15,GRY,350.0,STOLEN,4353,"{'type': 'Point', 'coordinates': (-79.30088278, 43.68550226)}"
-4357,19156,GO-20189014366,THEFT UNDER,2018-05-09T00:00:00,2018,May,Wednesday,9,129,2,2018-05-09T00:00:00,2018,May,Wednesday,9,129,20,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,,RG,5,,0.0,STOLEN,4354,"{'type': 'Point', 'coordinates': (-79.30088278, 43.68550226)}"
-4358,19169,GO-20181082743,THEFT OF EBIKE UNDER $5000,2018-06-14T00:00:00,2018,June,Thursday,14,165,20,2018-06-14T00:00:00,2018,June,Thursday,14,165,21,D54,Toronto,62,East End-Danforth (62),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,VIENNA,EL,1,BLUBLK,800.0,STOLEN,4355,"{'type': 'Point', 'coordinates': (-79.30131028, 43.69027674)}"
-4359,19208,GO-20181931015,THEFT UNDER,2018-10-18T00:00:00,2018,October,Thursday,18,291,11,2018-10-19T00:00:00,2018,October,Friday,19,292,13,D54,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DIAMON,BACK,MT,21,SIL,200.0,STOLEN,4358,"{'type': 'Point', 'coordinates': (-79.30387522, 43.69004961)}"
-4360,19222,GO-20199010039,THEFT UNDER,2019-03-25T00:00:00,2019,March,Monday,25,84,15,2019-03-29T00:00:00,2019,March,Friday,29,88,15,D55,Toronto,62,East End-Danforth (62),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,10,RED,250.0,STOLEN,4359,"{'type': 'Point', 'coordinates': (-79.31062815, 43.68616272)}"
-4361,19238,GO-20199018158,THEFT UNDER,2019-06-07T00:00:00,2019,June,Friday,7,158,7,2019-06-11T00:00:00,2019,June,Tuesday,11,162,10,D55,Toronto,62,East End-Danforth (62),Go Train,Transit,OT,550-TUONO-BLK-5,RG,21,BLK,500.0,STOLEN,4360,"{'type': 'Point', 'coordinates': (-79.30088278, 43.68550226)}"
-4362,19264,GO-20191526325,THEFT UNDER - BICYCLE,2019-08-10T00:00:00,2019,August,Saturday,10,222,20,2019-08-12T00:00:00,2019,August,Monday,12,224,11,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,ROAM BIKE,RG,0,BLK,1000.0,STOLEN,4361,"{'type': 'Point', 'coordinates': (-79.2938025, 43.68634589)}"
-4363,19278,GO-20199028781,THEFT UNDER,2019-09-02T00:00:00,2019,September,Monday,2,245,20,2019-09-04T00:00:00,2019,September,Wednesday,4,247,20,D54,Toronto,62,East End-Danforth (62),Ttc Subway Station,Transit,AQUILA,,OT,15,WHI,100.0,STOLEN,4362,"{'type': 'Point', 'coordinates': (-79.3017916, 43.68814492)}"
-4364,19348,GO-2020648751,THEFT UNDER,2020-03-28T00:00:00,2020,March,Saturday,28,88,20,2020-04-02T00:00:00,2020,April,Thursday,2,93,17,D55,Toronto,62,East End-Danforth (62),"Apartment (Rooming House, Condo)",Apartment,IRON HORSE,AXION,MT,18,SIL,225.0,STOLEN,4363,"{'type': 'Point', 'coordinates': (-79.30114138, 43.67812586)}"
-4365,19354,GO-20209010975,THEFT UNDER,2020-04-12T00:00:00,2020,April,Sunday,12,103,1,2020-04-12T00:00:00,2020,April,Sunday,12,103,13,D55,Toronto,62,East End-Danforth (62),"Apartment (Rooming House, Condo)",Apartment,RM,,MT,10,,500.0,STOLEN,4364,"{'type': 'Point', 'coordinates': (-79.30724223, 43.67447391)}"
-4366,19355,GO-20209010975,THEFT UNDER,2020-04-12T00:00:00,2020,April,Sunday,12,103,1,2020-04-12T00:00:00,2020,April,Sunday,12,103,13,D55,Toronto,62,East End-Danforth (62),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,10,,150.0,STOLEN,4365,"{'type': 'Point', 'coordinates': (-79.30724223, 43.67447391)}"
-4367,19360,GO-20209012997,THEFT UNDER,2020-05-08T00:00:00,2020,May,Friday,8,129,18,2020-05-12T00:00:00,2020,May,Tuesday,12,133,19,D54,Toronto,62,East End-Danforth (62),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,25,BLK,1200.0,STOLEN,4366,"{'type': 'Point', 'coordinates': (-79.3017916, 43.68814492)}"
-4368,19611,GO-20142033897,THEFT UNDER,2014-05-07T00:00:00,2014,May,Wednesday,7,127,17,2014-05-07T00:00:00,2014,May,Wednesday,7,127,17,D55,Toronto,62,East End-Danforth (62),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCOTT ASPECT 10,940,MT,24,SIL,3000.0,STOLEN,4367,"{'type': 'Point', 'coordinates': (-79.29375531, 43.68996433)}"
-4369,19613,GO-20142089548,THEFT UNDER,2014-05-10T00:00:00,2014,May,Saturday,10,130,20,2014-05-16T00:00:00,2014,May,Friday,16,136,17,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,DEVINCI,DUBIN,MT,27,BLKGRY,860.0,STOLEN,4368,"{'type': 'Point', 'coordinates': (-79.29065403, 43.68700162)}"
-4370,19614,GO-20142089548,THEFT UNDER,2014-05-10T00:00:00,2014,May,Saturday,10,130,20,2014-05-16T00:00:00,2014,May,Friday,16,136,17,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,ESCAPE CITY,MT,8,PLEGRY,580.0,STOLEN,4369,"{'type': 'Point', 'coordinates': (-79.29065403, 43.68700162)}"
-4371,19615,GO-20142085824,THEFT UNDER,2014-05-15T00:00:00,2014,May,Thursday,15,135,7,2014-05-15T00:00:00,2014,May,Thursday,15,135,17,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,THIN BLUE LINE,CYCLONE,MT,24,BRN,400.0,STOLEN,4370,"{'type': 'Point', 'coordinates': (-79.29125135, 43.68687322)}"
-4372,19616,GO-20142085824,THEFT UNDER,2014-05-15T00:00:00,2014,May,Thursday,15,135,7,2014-05-15T00:00:00,2014,May,Thursday,15,135,17,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,7100WSD,OT,21,WHI,500.0,STOLEN,4371,"{'type': 'Point', 'coordinates': (-79.29125135, 43.68687322)}"
-4373,19617,GO-20142102880,B&E W'INTENT,2014-05-18T00:00:00,2014,May,Sunday,18,138,3,2014-05-18T00:00:00,2014,May,Sunday,18,138,12,D54,Toronto,62,East End-Danforth (62),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,ECO STAR,OT,1,BLU,700.0,STOLEN,4372,"{'type': 'Point', 'coordinates': (-79.29602309, 43.6894511)}"
-4374,19757,GO-2016675465,THEFT UNDER - BICYCLE,2016-04-20T00:00:00,2016,April,Wednesday,20,111,17,2016-04-20T00:00:00,2016,April,Wednesday,20,111,17,D55,Toronto,62,East End-Danforth (62),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,COLNAGO,OT,11,BLK,6550.0,STOLEN,4389,"{'type': 'Point', 'coordinates': (-79.29944329, 43.68219661)}"
-4375,19630,GO-20142436854,THEFT UNDER,2014-07-05T00:00:00,2014,July,Saturday,5,186,16,2014-07-05T00:00:00,2014,July,Saturday,5,186,16,D55,Toronto,62,East End-Danforth (62),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,STUMP JUMPER,MT,10,BLK,2000.0,STOLEN,4373,"{'type': 'Point', 'coordinates': (-79.30495544, 43.68748082)}"
-4376,19634,GO-20149004790,THEFT UNDER,2014-07-07T00:00:00,2014,July,Monday,7,188,15,2014-07-07T00:00:00,2014,July,Monday,7,188,19,D55,Toronto,62,East End-Danforth (62),Convenience Stores,Commercial,UK,HARD ROCK,MT,21,BLU,400.0,STOLEN,4374,"{'type': 'Point', 'coordinates': (-79.30495544, 43.68748082)}"
-4377,19638,GO-20142518797,THEFT UNDER,2014-07-16T00:00:00,2014,July,Wednesday,16,197,17,2014-07-17T00:00:00,2014,July,Thursday,17,198,21,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,MT,16,BLKPNK,75.0,STOLEN,4375,"{'type': 'Point', 'coordinates': (-79.29488033, 43.68971806)}"
-4378,19639,GO-20149005153,THEFT UNDER,2014-07-20T00:00:00,2014,July,Sunday,20,201,13,2014-07-20T00:00:00,2014,July,Sunday,20,201,14,D55,Toronto,62,East End-Danforth (62),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RA,,RG,3,BLK,500.0,STOLEN,4376,"{'type': 'Point', 'coordinates': (-79.30495544, 43.68748082)}"
-4379,19667,GO-20143292674,THEFT UNDER,2014-11-12T00:00:00,2014,November,Wednesday,12,316,20,2014-11-13T00:00:00,2014,November,Thursday,13,317,9,D54,Toronto,62,East End-Danforth (62),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,MONSTER,EL,0,BLK,2350.0,STOLEN,4377,"{'type': 'Point', 'coordinates': (-79.29602309, 43.6894511)}"
-4380,19690,GO-20151051558,THEFT UNDER,2015-06-07T00:00:00,2015,June,Sunday,7,158,17,2015-06-22T00:00:00,2015,June,Monday,22,173,17,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,7.1 FX,OT,21,BLKSIL,500.0,STOLEN,4378,"{'type': 'Point', 'coordinates': (-79.2870473, 43.68053895)}"
-4381,19692,GO-20151095995,B&E W'INTENT,2015-06-29T00:00:00,2015,June,Monday,29,180,13,2015-06-29T00:00:00,2015,June,Monday,29,180,18,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,ROAD,TO,0,WHIBLU,4000.0,STOLEN,4379,"{'type': 'Point', 'coordinates': (-79.29065429, 43.68024947)}"
-4382,19709,GO-20151415270,THEFT UNDER,2015-08-17T00:00:00,2015,August,Monday,17,229,6,2015-08-17T00:00:00,2015,August,Monday,17,229,15,D54,Toronto,62,East End-Danforth (62),Ttc Subway Station,Transit,OTHER,OMNI,EL,20,,2000.0,STOLEN,4380,"{'type': 'Point', 'coordinates': (-79.30093674, 43.68940767)}"
-4383,19711,GO-20159006050,THEFT UNDER,2014-07-19T00:00:00,2014,July,Saturday,19,200,18,2015-08-19T00:00:00,2015,August,Wednesday,19,231,19,D54,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RA,,MT,21,SIL,300.0,STOLEN,4381,"{'type': 'Point', 'coordinates': (-79.30387522, 43.69004961)}"
-4384,19712,GO-20159006050,THEFT UNDER,2014-07-19T00:00:00,2014,July,Saturday,19,200,18,2015-08-19T00:00:00,2015,August,Wednesday,19,231,19,D54,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,,MT,24,BLK,2000.0,STOLEN,4382,"{'type': 'Point', 'coordinates': (-79.30387522, 43.69004961)}"
-4385,19713,GO-20159006050,THEFT UNDER,2014-07-19T00:00:00,2014,July,Saturday,19,200,18,2015-08-19T00:00:00,2015,August,Wednesday,19,231,19,D54,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,MT,24,RED,2500.0,STOLEN,4383,"{'type': 'Point', 'coordinates': (-79.30387522, 43.69004961)}"
-4386,19720,GO-20159006481,THEFT UNDER,2015-08-26T00:00:00,2015,August,Wednesday,26,238,0,2015-08-29T00:00:00,2015,August,Saturday,29,241,0,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,RG,24,WHI,575.0,STOLEN,4384,"{'type': 'Point', 'coordinates': (-79.29779131, 43.68547473)}"
-4387,19721,GO-20159006481,THEFT UNDER,2015-08-26T00:00:00,2015,August,Wednesday,26,238,0,2015-08-29T00:00:00,2015,August,Saturday,29,241,0,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,MT,36,ONG,1169.0,STOLEN,4385,"{'type': 'Point', 'coordinates': (-79.29779131, 43.68547473)}"
-4388,19731,GO-20151620573,THEFT UNDER,2015-09-10T00:00:00,2015,September,Thursday,10,253,17,2015-09-19T00:00:00,2015,September,Saturday,19,262,11,D55,Toronto,62,East End-Danforth (62),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,HARD ROCK 21,MT,24,REDBLK,,STOLEN,4386,"{'type': 'Point', 'coordinates': (-79.30495544, 43.68748082)}"
-4389,19740,GO-20159008854,THEFT UNDER,2015-10-17T00:00:00,2015,October,Saturday,17,290,20,2015-10-21T00:00:00,2015,October,Wednesday,21,294,20,D55,Toronto,62,East End-Danforth (62),"Apartment (Rooming House, Condo)",Apartment,CC,CCM,RG,10,BLU,150.0,STOLEN,4387,"{'type': 'Point', 'coordinates': (-79.29881127, 43.68074144)}"
-4390,19751,GO-20169001629,THEFT UNDER,2016-02-21T00:00:00,2016,February,Sunday,21,52,15,2016-02-21T00:00:00,2016,February,Sunday,21,52,21,D55,Toronto,62,East End-Danforth (62),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE 3,RG,18,BLK,400.0,STOLEN,4388,"{'type': 'Point', 'coordinates': (-79.2934083, 43.68540038)}"
-4391,22169,GO-20169007091,THEFT UNDER - BICYCLE,2016-07-12T00:00:00,2016,July,Tuesday,12,194,1,2016-07-12T00:00:00,2016,July,Tuesday,12,194,16,D55,Toronto,62,East End-Danforth (62),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,TO,24,WHI,900.0,STOLEN,4390,"{'type': 'Point', 'coordinates': (-79.30575161, 43.68353613)}"
-4392,22196,GO-20161644098,B&E,2016-09-13T00:00:00,2016,September,Tuesday,13,257,9,2016-09-15T00:00:00,2016,September,Thursday,15,259,20,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,TIAGRA,RC,16,BLK,2500.0,STOLEN,4391,"{'type': 'Point', 'coordinates': (-79.29316895, 43.68157604)}"
-4393,22197,GO-20161644098,B&E,2016-09-13T00:00:00,2016,September,Tuesday,13,257,9,2016-09-15T00:00:00,2016,September,Thursday,15,259,20,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,MT,16,BLK,3500.0,STOLEN,4392,"{'type': 'Point', 'coordinates': (-79.29316895, 43.68157604)}"
-4394,22198,GO-20161644098,B&E,2016-09-13T00:00:00,2016,September,Tuesday,13,257,9,2016-09-15T00:00:00,2016,September,Thursday,15,259,20,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GF,KOBIA,MT,10,DBL,1200.0,STOLEN,4393,"{'type': 'Point', 'coordinates': (-79.29316895, 43.68157604)}"
-4395,22229,GO-20179008062,THEFT UNDER - BICYCLE,2017-06-07T00:00:00,2017,June,Wednesday,7,158,12,2017-06-13T00:00:00,2017,June,Tuesday,13,164,23,D54,Toronto,62,East End-Danforth (62),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,RG,21,WHI,200.0,STOLEN,4394,"{'type': 'Point', 'coordinates': (-79.31310933, 43.68652567000001)}"
-4396,22233,GO-20171226481,ROBBERY - OTHER,2017-07-08T00:00:00,2017,July,Saturday,8,189,21,2017-07-09T00:00:00,2017,July,Sunday,9,190,5,D55,Toronto,62,East End-Danforth (62),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,,OT,1,BLK,90.0,STOLEN,4395,"{'type': 'Point', 'coordinates': (-79.28402002, 43.68081049)}"
-4397,22275,GO-20173264050,THEFT OF EBIKE UNDER $5000,2017-12-24T00:00:00,2017,December,Sunday,24,358,22,2017-12-25T00:00:00,2017,December,Monday,25,359,18,D54,Toronto,62,East End-Danforth (62),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,EL,32,BLK,2000.0,STOLEN,4396,"{'type': 'Point', 'coordinates': (-79.30495544, 43.68748082)}"
-4398,22402,GO-20199025635,THEFT UNDER,2019-08-09T00:00:00,2019,August,Friday,9,221,8,2019-08-10T00:00:00,2019,August,Saturday,10,222,13,D55,Toronto,62,East End-Danforth (62),Go Station,Transit,SC,WOMEN RANGER 26,MT,21,WHI,200.0,STOLEN,4405,"{'type': 'Point', 'coordinates': (-79.30088278, 43.68550226)}"
-4399,22276,GO-20173264050,THEFT OF EBIKE UNDER $5000,2017-12-24T00:00:00,2017,December,Sunday,24,358,22,2017-12-25T00:00:00,2017,December,Monday,25,359,18,D54,Toronto,62,East End-Danforth (62),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,EL,1,,2500.0,STOLEN,4397,"{'type': 'Point', 'coordinates': (-79.30495544, 43.68748082)}"
-4400,22293,GO-20189018327,THEFT UNDER - BICYCLE,2018-06-11T00:00:00,2018,June,Monday,11,162,2,2018-06-12T00:00:00,2018,June,Tuesday,12,163,8,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,FREESTYLE,BM,1,BLK,250.0,STOLEN,4398,"{'type': 'Point', 'coordinates': (-79.29779131, 43.68547473)}"
-4401,22337,GO-20189031002,THEFT UNDER,2018-09-18T00:00:00,2018,September,Tuesday,18,261,12,2018-09-18T00:00:00,2018,September,Tuesday,18,261,16,D55,Toronto,62,East End-Danforth (62),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,ESCAPE,OT,21,BRZ,500.0,STOLEN,4399,"{'type': 'Point', 'coordinates': (-79.29265957, 43.68365894)}"
-4402,22348,GO-20189033179,THEFT UNDER - BICYCLE,2018-10-07T00:00:00,2018,October,Sunday,7,280,12,2018-10-07T00:00:00,2018,October,Sunday,7,280,14,D55,Toronto,62,East End-Danforth (62),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,TR,8000,MT,21,BLU,700.0,STOLEN,4400,"{'type': 'Point', 'coordinates': (-79.29871872, 43.68424822)}"
-4403,22363,GO-20189042547,THEFT UNDER - BICYCLE,2018-07-13T00:00:00,2018,July,Friday,13,194,12,2018-12-18T00:00:00,2018,December,Tuesday,18,352,13,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,HARDROCK,MT,21,RED,560.0,STOLEN,4401,"{'type': 'Point', 'coordinates': (-79.31217339, 43.68430932)}"
-4404,22377,GO-20199017046,THEFT UNDER,2019-05-26T00:00:00,2019,May,Sunday,26,146,23,2019-05-31T00:00:00,2019,May,Friday,31,151,16,D55,Toronto,62,East End-Danforth (62),"Apartment (Rooming House, Condo)",Apartment,OT,STOCKHOLM,RG,24,BLK,150.0,STOLEN,4402,"{'type': 'Point', 'coordinates': (-79.29987616, 43.67851223)}"
-4405,22378,GO-20199017191,THEFT UNDER,2019-06-02T00:00:00,2019,June,Sunday,2,153,17,2019-06-02T00:00:00,2019,June,Sunday,2,153,21,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,7.3 FX,RG,27,BLU,0.0,STOLEN,4403,"{'type': 'Point', 'coordinates': (-79.2934083, 43.68540038)}"
-4406,22395,GO-20191328055,THEFT UNDER - BICYCLE,2019-07-15T00:00:00,2019,July,Monday,15,196,15,2019-07-15T00:00:00,2019,July,Monday,15,196,21,D55,Toronto,62,East End-Danforth (62),Go Train,Transit,CRITICAL,HARPER,MT,8,,250.0,STOLEN,4404,"{'type': 'Point', 'coordinates': (-79.30088278, 43.68550226)}"
-4407,22427,GO-20199034172,THEFT UNDER,2019-10-08T00:00:00,2019,October,Tuesday,8,281,20,2019-10-17T00:00:00,2019,October,Thursday,17,290,8,D55,Toronto,62,East End-Danforth (62),"Gas Station (Self, Full, Attached Convenience)",Commercial,OT,,RG,10,GRY,900.0,STOLEN,4406,"{'type': 'Point', 'coordinates': (-79.30724223, 43.67447391)}"
-4408,22469,GO-2020995056,THEFT FROM MOTOR VEHICLE UNDER,2020-05-29T00:00:00,2020,May,Friday,29,150,16,2020-05-30T00:00:00,2020,May,Saturday,30,151,6,D55,Toronto,62,East End-Danforth (62),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,,MT,5,GRYRED,500.0,STOLEN,4407,"{'type': 'Point', 'coordinates': (-79.30542389, 43.67902478)}"
-4409,22493,GO-20209016862,THEFT UNDER,2020-07-05T00:00:00,2020,July,Sunday,5,187,5,2020-07-05T00:00:00,2020,July,Sunday,5,187,10,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,GIANT ESCAPE,RG,21,GRY,800.0,STOLEN,4408,"{'type': 'Point', 'coordinates': (-79.30088278, 43.68550226)}"
-4410,22494,GO-20209016862,THEFT UNDER,2020-07-05T00:00:00,2020,July,Sunday,5,187,5,2020-07-05T00:00:00,2020,July,Sunday,5,187,10,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,RG,21,,800.0,STOLEN,4409,"{'type': 'Point', 'coordinates': (-79.30088278, 43.68550226)}"
-4411,22551,GO-20209022464,THEFT UNDER,2020-09-04T00:00:00,2020,September,Friday,4,248,14,2020-09-06T00:00:00,2020,September,Sunday,6,250,15,D55,Toronto,62,East End-Danforth (62),"Apartment (Rooming House, Condo)",Apartment,RA,DETOUR1,RG,21,GRY,500.0,STOLEN,4410,"{'type': 'Point', 'coordinates': (-79.29690721, 43.68819235)}"
-4412,22818,GO-20149002985,THEFT UNDER,2014-04-23T00:00:00,2014,April,Wednesday,23,113,19,2014-04-25T00:00:00,2014,April,Friday,25,115,18,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SC,,MT,18,,650.0,STOLEN,4411,"{'type': 'Point', 'coordinates': (-79.30074123, 43.68188823)}"
-4413,22827,GO-20149003522,THEFT UNDER,2014-05-21T00:00:00,2014,May,Wednesday,21,141,18,2014-05-22T00:00:00,2014,May,Thursday,22,142,21,D55,Toronto,62,East End-Danforth (62),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,21,SIL,500.0,STOLEN,4412,"{'type': 'Point', 'coordinates': (-79.29065471, 43.68211585)}"
-4414,22845,GO-20149004354,THEFT UNDER,2014-06-22T00:00:00,2014,June,Sunday,22,173,20,2014-06-23T00:00:00,2014,June,Monday,23,174,12,D55,Toronto,62,East End-Danforth (62),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,1,GLD,700.0,STOLEN,4413,"{'type': 'Point', 'coordinates': (-79.30076798, 43.68522739)}"
-4415,14126,GO-20162100935,THEFT OVER,2016-11-23T00:00:00,2016,November,Wednesday,23,328,20,2016-11-26T00:00:00,2016,November,Saturday,26,331,19,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GAINT,ANTHEM X2,MT,27,BLUWHI,2900.0,STOLEN,4414,"{'type': 'Point', 'coordinates': (-79.31007432, 43.66428057)}"
-4416,14127,GO-20162100935,THEFT OVER,2016-11-23T00:00:00,2016,November,Wednesday,23,328,20,2016-11-26T00:00:00,2016,November,Saturday,26,331,19,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GAINT,ANTHEM X1,MT,27,ONGWHI,3500.0,STOLEN,4415,"{'type': 'Point', 'coordinates': (-79.31007432, 43.66428057)}"
-4417,22867,GO-20142833853,THEFT UNDER,2014-09-03T00:00:00,2014,September,Wednesday,3,246,13,2014-09-03T00:00:00,2014,September,Wednesday,3,246,13,D55,Toronto,62,East End-Danforth (62),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,FORTRESS,SC,1,RED,3000.0,STOLEN,4416,"{'type': 'Point', 'coordinates': (-79.3017916, 43.68814492)}"
-4418,14135,GO-20169014476,THEFT UNDER - BICYCLE,2016-12-10T00:00:00,2016,December,Saturday,10,345,13,2016-12-10T00:00:00,2016,December,Saturday,10,345,13,D55,Toronto,63,The Beaches (63),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,X-CALIBER,MT,30,OTH,830.0,STOLEN,4417,"{'type': 'Point', 'coordinates': (-79.30295345, 43.66702426)}"
-4419,1803,GO-20179018955,THEFT UNDER - BICYCLE,2017-11-05T00:00:00,2017,November,Sunday,5,309,0,2017-11-05T00:00:00,2017,November,Sunday,5,309,19,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ASPECT 940,MT,24,RED,850.0,STOLEN,4418,"{'type': 'Point', 'coordinates': (-79.32402651, 43.66676495)}"
-4420,22878,GO-20149007424,THEFT UNDER,2014-10-05T00:00:00,2014,October,Sunday,5,278,17,2014-10-06T00:00:00,2014,October,Monday,6,279,9,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,MT TRACK 200,BM,7,ONG,330.0,STOLEN,4419,"{'type': 'Point', 'coordinates': (-79.29944329, 43.68219661)}"
-4421,22312,GO-20189023278,THEFT UNDER - BICYCLE,2018-07-19T00:00:00,2018,July,Thursday,19,200,23,2018-07-20T00:00:00,2018,July,Friday,20,201,23,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,SU,,RC,14,BLU,200.0,STOLEN,4420,"{'type': 'Point', 'coordinates': (-79.28345658, 43.67347772)}"
-4422,14136,GO-201712282,THEFT UNDER,2016-12-27T00:00:00,2016,December,Tuesday,27,362,0,2017-01-03T00:00:00,2017,January,Tuesday,3,3,11,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,PIVOT,MACH 4,MT,22,BLKGRN,7500.0,STOLEN,4421,"{'type': 'Point', 'coordinates': (-79.29798392000001, 43.67888482)}"
-4423,22350,GO-20181905786,THEFT UNDER - BICYCLE,2018-10-14T00:00:00,2018,October,Sunday,14,287,23,2018-10-15T00:00:00,2018,October,Monday,15,288,16,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KONA\,,MT,24,BLU,1000.0,STOLEN,4422,"{'type': 'Point', 'coordinates': (-79.30114138, 43.67812586)}"
-4424,1928,GO-20179021680,THEFT UNDER - BICYCLE,2017-12-08T00:00:00,2017,December,Friday,8,342,5,2017-12-08T00:00:00,2017,December,Friday,8,342,16,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,RED,RG,1,RED,300.0,STOLEN,4423,"{'type': 'Point', 'coordinates': (-79.32969472, 43.66211217)}"
-4425,14137,GO-201712282,THEFT UNDER,2016-12-27T00:00:00,2016,December,Tuesday,27,362,0,2017-01-03T00:00:00,2017,January,Tuesday,3,3,11,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,YETI,SB6,MT,11,GRN,6625.0,STOLEN,4424,"{'type': 'Point', 'coordinates': (-79.29798392000001, 43.67888482)}"
-4426,22365,GO-20199003176,THEFT UNDER - BICYCLE,2019-01-20T00:00:00,2019,January,Sunday,20,20,6,2019-01-23T00:00:00,2019,January,Wednesday,23,23,15,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,TR,2018 FX 2 DISC,RG,10,GRY,850.0,STOLEN,4425,"{'type': 'Point', 'coordinates': (-79.29798392000001, 43.67888482)}"
-4427,22879,GO-20149007495,THEFT UNDER,2014-10-08T00:00:00,2014,October,Wednesday,8,281,8,2014-10-09T00:00:00,2014,October,Thursday,9,282,6,D55,Toronto,62,East End-Danforth (62),Schools During Un-Supervised Activity,Educational,NO,PINNACLE,MT,21,DGR,350.0,STOLEN,4426,"{'type': 'Point', 'coordinates': (-79.28796414, 43.68269557)}"
-4428,2103,GO-20189009243,THEFT UNDER,2018-03-23T00:00:00,2018,March,Friday,23,82,10,2018-03-24T00:00:00,2018,March,Saturday,24,83,10,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,DEW PLUS 2011,RG,12,DBL,600.0,STOLEN,4427,"{'type': 'Point', 'coordinates': (-79.32485369, 43.67405485)}"
-4429,14138,GO-201712282,THEFT UNDER,2016-12-27T00:00:00,2016,December,Tuesday,27,362,0,2017-01-03T00:00:00,2017,January,Tuesday,3,3,11,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,SC,BRONSON,MT,11,PNK,3695.0,STOLEN,4428,"{'type': 'Point', 'coordinates': (-79.29798392000001, 43.67888482)}"
-4430,22379,GO-20191018123,THEFT UNDER,2019-06-03T00:00:00,2019,June,Monday,3,154,11,2019-06-03T00:00:00,2019,June,Monday,3,154,11,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,ALLEZ,RG,6,BLK,1500.0,STOLEN,4429,"{'type': 'Point', 'coordinates': (-79.30573552, 43.66875614)}"
-4431,22885,GO-20143555642,B&E W'INTENT,2014-12-17T00:00:00,2014,December,Wednesday,17,351,15,2014-12-27T00:00:00,2014,December,Saturday,27,361,17,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,UNKNOWN,RG,24,BLKDGR,150.0,STOLEN,4430,"{'type': 'Point', 'coordinates': (-79.29779131, 43.68547473)}"
-4432,2136,GO-20189010555,THEFT UNDER - BICYCLE,2018-04-05T00:00:00,2018,April,Thursday,5,95,0,2018-04-05T00:00:00,2018,April,Thursday,5,95,11,D55,Toronto,65,Greenwood-Coxwell (65),"Apartment (Rooming House, Condo)",Apartment,NO,FBR2 W/ SRAM 1X,RC,10,GRY,1500.0,RECOVERED,4431,"{'type': 'Point', 'coordinates': (-79.3295907, 43.67650588)}"
-4433,14139,GO-201712282,THEFT UNDER,2016-12-27T00:00:00,2016,December,Tuesday,27,362,0,2017-01-03T00:00:00,2017,January,Tuesday,3,3,11,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,SC,TALL BOY,MT,11,GRY,7000.0,STOLEN,4432,"{'type': 'Point', 'coordinates': (-79.29798392000001, 43.67888482)}"
-4434,22406,GO-20199027666,THEFT UNDER,2019-08-25T00:00:00,2019,August,Sunday,25,237,23,2019-08-26T00:00:00,2019,August,Monday,26,238,9,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,RG,7,DBL,200.0,STOLEN,4433,"{'type': 'Point', 'coordinates': (-79.2906355, 43.6785827)}"
-4435,22422,GO-20199031588,THEFT UNDER,2019-09-26T00:00:00,2019,September,Thursday,26,269,5,2019-09-26T00:00:00,2019,September,Thursday,26,269,11,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,,MT,27,,500.0,STOLEN,4434,"{'type': 'Point', 'coordinates': (-79.30376909, 43.67390191)}"
-4436,22557,GO-20209023062,THEFT FROM MOTOR VEHICLE UNDER,2020-09-11T00:00:00,2020,September,Friday,11,255,23,2020-09-12T00:00:00,2020,September,Saturday,12,256,14,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,TR,,RG,6,GRY,0.0,STOLEN,4435,"{'type': 'Point', 'coordinates': (-79.28117652, 43.6739536)}"
-4437,22562,GO-20209023538,THEFT UNDER,2020-09-14T00:00:00,2020,September,Monday,14,258,13,2020-09-17T00:00:00,2020,September,Thursday,17,261,13,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,TR,,RC,24,SIL,1499.0,STOLEN,4436,"{'type': 'Point', 'coordinates': (-79.31140037, 43.66749248)}"
-4438,22564,GO-20209023820,THEFT UNDER,2020-09-11T00:00:00,2020,September,Friday,11,255,4,2020-09-19T00:00:00,2020,September,Saturday,19,263,11,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,GRAN TOUR 15,TO,21,GRN,0.0,STOLEN,4437,"{'type': 'Point', 'coordinates': (-79.30104916, 43.66768758)}"
-4439,22588,GO-20202143166,THEFT OF EBIKE UNDER $5000,2020-11-10T00:00:00,2020,November,Tuesday,10,315,21,2020-11-11T00:00:00,2020,November,Wednesday,11,316,18,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,CT48,EL,5,GRN,2000.0,STOLEN,4438,"{'type': 'Point', 'coordinates': (-79.31160345, 43.66911004)}"
-4440,22820,GO-20142082360,THEFT UNDER,2014-05-12T00:00:00,2014,May,Monday,12,132,23,2014-05-15T00:00:00,2014,May,Thursday,15,135,11,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,RG,21,GRY,1500.0,STOLEN,4439,"{'type': 'Point', 'coordinates': (-79.30898153, 43.66452549)}"
-4441,22821,GO-20142082360,THEFT UNDER,2014-05-12T00:00:00,2014,May,Monday,12,132,23,2014-05-15T00:00:00,2014,May,Thursday,15,135,11,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,,MT,1,BLK,1500.0,STOLEN,4440,"{'type': 'Point', 'coordinates': (-79.30898153, 43.66452549)}"
-4442,22822,GO-20142082360,THEFT UNDER,2014-05-12T00:00:00,2014,May,Monday,12,132,23,2014-05-15T00:00:00,2014,May,Thursday,15,135,11,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,LLBEAN,RG,20,BLU,450.0,STOLEN,4441,"{'type': 'Point', 'coordinates': (-79.30898153, 43.66452549)}"
-4443,22839,GO-20142257544,THEFT UNDER,2014-06-08T00:00:00,2014,June,Sunday,8,159,17,2014-06-09T00:00:00,2014,June,Monday,9,160,23,D55,Toronto,63,The Beaches (63),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,820,MT,18,,500.0,STOLEN,4442,"{'type': 'Point', 'coordinates': (-79.29683327, 43.67071067)}"
-4444,22844,GO-20149004308,THEFT UNDER,2014-06-16T00:00:00,2014,June,Monday,16,167,17,2014-06-22T00:00:00,2014,June,Sunday,22,173,17,D55,Toronto,63,The Beaches (63),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,IH,,MT,18,GLD,0.0,STOLEN,4443,"{'type': 'Point', 'coordinates': (-79.30800813, 43.66824442)}"
-4445,22847,GO-20142448095,THEFT OVER,2014-07-07T00:00:00,2014,July,Monday,7,188,3,2014-07-07T00:00:00,2014,July,Monday,7,188,13,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,BEARGREASE,OT,21,BLK,6500.0,STOLEN,4444,"{'type': 'Point', 'coordinates': (-79.31007432, 43.66428057)}"
-4446,22873,GO-20142960689,THEFT UNDER,2014-09-21T00:00:00,2014,September,Sunday,21,264,16,2014-09-22T00:00:00,2014,September,Monday,22,265,14,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,21,WHI,200.0,STOLEN,4445,"{'type': 'Point', 'coordinates': (-79.30870846, 43.66992435)}"
-4447,22874,GO-20142971762,THEFT OVER,2014-09-23T00:00:00,2014,September,Tuesday,23,266,8,2014-09-24T00:00:00,2014,September,Wednesday,24,267,9,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,BMC,RC,22,BLKRED,7000.0,STOLEN,4446,"{'type': 'Point', 'coordinates': (-79.2966074, 43.67532085)}"
-4448,22875,GO-20142971762,THEFT OVER,2014-09-23T00:00:00,2014,September,Tuesday,23,266,8,2014-09-24T00:00:00,2014,September,Wednesday,24,267,9,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,MENS RACER,RC,22,BLKRED,2500.0,STOLEN,4447,"{'type': 'Point', 'coordinates': (-79.2966074, 43.67532085)}"
-4449,22881,GO-20149007696,THEFT UNDER,2014-10-19T00:00:00,2014,October,Sunday,19,292,17,2014-10-20T00:00:00,2014,October,Monday,20,293,11,D55,Toronto,63,The Beaches (63),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,TRAVELER,TO,21,WHI,200.0,STOLEN,4448,"{'type': 'Point', 'coordinates': (-79.29255199, 43.68010915)}"
-4450,22911,GO-20151196119,THEFT UNDER,2015-07-14T00:00:00,2015,July,Tuesday,14,195,20,2015-07-14T00:00:00,2015,July,Tuesday,14,195,21,D55,Toronto,63,The Beaches (63),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,LIV,OT,18,TRQ,600.0,STOLEN,4449,"{'type': 'Point', 'coordinates': (-79.32826088, 43.65898454)}"
-4451,22926,GO-20159006687,THEFT UNDER,2015-08-10T00:00:00,2015,August,Monday,10,222,0,2015-09-03T00:00:00,2015,September,Thursday,3,246,0,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,IH,MOUNTAIN BIKE,MT,21,SIL,700.0,STOLEN,4450,"{'type': 'Point', 'coordinates': (-79.29194412, 43.67018885000001)}"
-4452,22942,GO-20151950062,THEFT UNDER,2015-11-13T00:00:00,2015,November,Friday,13,317,11,2015-11-13T00:00:00,2015,November,Friday,13,317,14,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,SCOPE,MT,6,REDBLK,200.0,STOLEN,4451,"{'type': 'Point', 'coordinates': (-79.31029568, 43.66773066)}"
-4453,22943,GO-20151950062,THEFT UNDER,2015-11-13T00:00:00,2015,November,Friday,13,317,11,2015-11-13T00:00:00,2015,November,Friday,13,317,14,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,VIPER,MT,6,SILRED,617.0,STOLEN,4452,"{'type': 'Point', 'coordinates': (-79.31029568, 43.66773066)}"
-4454,22972,GO-20169004896,THEFT UNDER,2016-05-17T00:00:00,2016,May,Tuesday,17,138,21,2016-05-24T00:00:00,2016,May,Tuesday,24,145,15,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,ESCAPE 2013,OT,10,BLK,1000.0,STOLEN,4453,"{'type': 'Point', 'coordinates': (-79.29987616, 43.67851223)}"
-4455,22978,GO-20169006266,THEFT UNDER,2016-06-23T00:00:00,2016,June,Thursday,23,175,3,2016-06-23T00:00:00,2016,June,Thursday,23,175,22,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,HOLD STEADY,RG,8,RED,1550.0,STOLEN,4454,"{'type': 'Point', 'coordinates': (-79.2918831, 43.67417053)}"
-4456,22994,GO-20161450900,B&E W'INTENT,2016-08-05T00:00:00,2016,August,Friday,5,218,1,2016-08-16T00:00:00,2016,August,Tuesday,16,229,21,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,MT,10,GRN,500.0,UNKNOWN,4455,"{'type': 'Point', 'coordinates': (-79.28117652, 43.6739536)}"
-4457,25396,GO-20169010651,THEFT UNDER,2016-09-17T00:00:00,2016,September,Saturday,17,261,14,2016-09-18T00:00:00,2016,September,Sunday,18,262,17,D55,Toronto,63,The Beaches (63),Bar / Restaurant,Commercial,UK,,RC,10,BLK,200.0,STOLEN,4456,"{'type': 'Point', 'coordinates': (-79.30573552, 43.66875614)}"
-4458,25405,GO-20169012631,THEFT UNDER,2016-10-25T00:00:00,2016,October,Tuesday,25,299,22,2016-10-26T00:00:00,2016,October,Wednesday,26,300,17,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,SPECIALIZED ALL,RC,16,PLE,2000.0,STOLEN,4457,"{'type': 'Point', 'coordinates': (-79.30915558, 43.66798981)}"
-4459,25406,GO-20169012631,THEFT UNDER,2016-10-25T00:00:00,2016,October,Tuesday,25,299,22,2016-10-26T00:00:00,2016,October,Wednesday,26,300,17,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MA,LUCAS VALLEY,RG,24,RED,920.0,STOLEN,4458,"{'type': 'Point', 'coordinates': (-79.30915558, 43.66798981)}"
-4460,25414,GO-20162049053,B&E,2016-11-17T00:00:00,2016,November,Thursday,17,322,22,2016-11-18T00:00:00,2016,November,Friday,18,323,11,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MIELE,,MT,21,BLUGRY,500.0,STOLEN,4459,"{'type': 'Point', 'coordinates': (-79.30065999, 43.6745663)}"
-4461,25415,GO-20162049053,B&E,2016-11-17T00:00:00,2016,November,Thursday,17,322,22,2016-11-18T00:00:00,2016,November,Friday,18,323,11,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MIELE,,MT,21,MRNGRY,500.0,STOLEN,4460,"{'type': 'Point', 'coordinates': (-79.30065999, 43.6745663)}"
-4462,25416,GO-20162049053,B&E,2016-11-17T00:00:00,2016,November,Thursday,17,322,22,2016-11-18T00:00:00,2016,November,Friday,18,323,11,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,ESCAPE,MT,21,BLUWHI,450.0,STOLEN,4461,"{'type': 'Point', 'coordinates': (-79.30065999, 43.6745663)}"
-4463,25417,GO-20162079698,B&E,2016-11-22T00:00:00,2016,November,Tuesday,22,327,21,2016-11-23T00:00:00,2016,November,Wednesday,23,328,19,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,DEVINCI,MILANO,OT,21,SIL,500.0,STOLEN,4462,"{'type': 'Point', 'coordinates': (-79.30898153, 43.66452549)}"
-4464,25418,GO-20162079698,B&E,2016-11-22T00:00:00,2016,November,Tuesday,22,327,21,2016-11-23T00:00:00,2016,November,Wednesday,23,328,19,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OPUS,CITATO,OT,21,GRY,1000.0,STOLEN,4463,"{'type': 'Point', 'coordinates': (-79.30898153, 43.66452549)}"
-4465,25431,GO-20179003624,THEFT UNDER - BICYCLE,2016-02-13T00:00:00,2016,February,Saturday,13,44,16,2017-03-22T00:00:00,2017,March,Wednesday,22,81,16,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,WOMEN'S QUICK 5,OT,40,TRQ,730.0,STOLEN,4464,"{'type': 'Point', 'coordinates': (-79.30800813, 43.66824442)}"
-4466,25463,GO-20179010356,THEFT UNDER - BICYCLE,2017-07-17T00:00:00,2017,July,Monday,17,198,0,2017-07-17T00:00:00,2017,July,Monday,17,198,0,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,SU,,RG,3,RED,200.0,STOLEN,4465,"{'type': 'Point', 'coordinates': (-79.30573552, 43.66875614)}"
-4467,25496,GO-20179017811,THEFT UNDER,2017-10-20T00:00:00,2017,October,Friday,20,293,19,2017-10-21T00:00:00,2017,October,Saturday,21,294,12,D55,Toronto,63,The Beaches (63),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE 1,RC,18,SIL,600.0,STOLEN,4466,"{'type': 'Point', 'coordinates': (-79.29348746, 43.67139937)}"
-4468,25517,GO-20173246532,FRAUD OVER,2017-12-22T00:00:00,2017,December,Friday,22,356,13,2017-12-22T00:00:00,2017,December,Friday,22,356,13,D55,Toronto,63,The Beaches (63),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SANTA CRUZ,,MT,1,,10307.0,STOLEN,4467,"{'type': 'Point', 'coordinates': (-79.29798392000001, 43.67888482)}"
-4469,25577,GO-20189026023,THEFT UNDER,2018-08-12T00:00:00,2018,August,Sunday,12,224,1,2018-08-12T00:00:00,2018,August,Sunday,12,224,14,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,URBANISTA,RG,30,BLK,700.0,STOLEN,4468,"{'type': 'Point', 'coordinates': (-79.3049279, 43.67282534)}"
-4470,25583,GO-20189029616,THEFT UNDER - BICYCLE,2018-09-07T00:00:00,2018,September,Friday,7,250,23,2018-09-08T00:00:00,2018,September,Saturday,8,251,17,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,MT,21,,500.0,STOLEN,4469,"{'type': 'Point', 'coordinates': (-79.30870846, 43.66992435)}"
-4471,25611,GO-20189042866,THEFT UNDER - BICYCLE,2018-12-20T00:00:00,2018,December,Thursday,20,354,16,2018-12-20T00:00:00,2018,December,Thursday,20,354,17,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,CRUISER,OT,1,BLK,300.0,STOLEN,4470,"{'type': 'Point', 'coordinates': (-79.306719, 43.66513509)}"
-4472,25651,GO-20199024538,THEFT UNDER,2019-07-30T00:00:00,2019,July,Tuesday,30,211,18,2019-07-31T00:00:00,2019,July,Wednesday,31,212,15,D55,Toronto,63,The Beaches (63),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,TOUGH ROAD,OT,26,DBL,1200.0,STOLEN,4471,"{'type': 'Point', 'coordinates': (-79.31481084000002, 43.66673892000001)}"
-4473,25653,GO-20191479526,THEFT UNDER,2019-08-01T00:00:00,2019,August,Thursday,1,213,9,2019-08-05T00:00:00,2019,August,Monday,5,217,21,D55,Toronto,63,The Beaches (63),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,,MT,18,ONG,,STOLEN,4472,"{'type': 'Point', 'coordinates': (-79.29655475, 43.67075402)}"
-4474,25681,GO-20191928589,THEFT UNDER - BICYCLE,2019-10-04T00:00:00,2019,October,Friday,4,277,6,2019-10-06T00:00:00,2019,October,Sunday,6,279,17,D55,Toronto,63,The Beaches (63),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,DEVINCI,HEX DEORE,OT,10,BLKONG,1000.0,STOLEN,4473,"{'type': 'Point', 'coordinates': (-79.29987616, 43.67851223)}"
-4475,25710,GO-20209011353,THEFT UNDER - BICYCLE,2020-04-16T00:00:00,2020,April,Thursday,16,107,23,2020-04-17T00:00:00,2020,April,Friday,17,108,12,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,MISCEO TRAIL I1,OT,11,GRY,1200.0,STOLEN,4474,"{'type': 'Point', 'coordinates': (-79.2969965, 43.67402422)}"
-4476,25729,GO-20201130779,THEFT UNDER - BICYCLE,2020-06-19T00:00:00,2020,June,Friday,19,171,16,2020-06-19T00:00:00,2020,June,Friday,19,171,19,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,TR,6,BLK,1100.0,STOLEN,4475,"{'type': 'Point', 'coordinates': (-79.30651458, 43.67513552)}"
-4477,25743,GO-20201264543,B&E,2020-06-26T00:00:00,2020,June,Friday,26,178,0,2020-07-08T00:00:00,2020,July,Wednesday,8,190,20,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,,RC,18,BLK,,STOLEN,4476,"{'type': 'Point', 'coordinates': (-79.29978601, 43.67007127)}"
-4478,25744,GO-20201269062,THEFT UNDER - BICYCLE,2020-07-09T00:00:00,2020,July,Thursday,9,191,4,2020-07-09T00:00:00,2020,July,Thursday,9,191,10,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CCM,,MT,10,BLKGRN,300.0,STOLEN,4477,"{'type': 'Point', 'coordinates': (-79.30915558, 43.66798981)}"
-4479,507,GO-2017958803,THEFT UNDER - BICYCLE,2017-05-30T00:00:00,2017,May,Tuesday,30,150,21,2017-05-30T00:00:00,2017,May,Tuesday,30,150,23,D55,Toronto,64,Woodbine Corridor (64),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,ROCK,MT,21,GRY,140.0,STOLEN,4478,"{'type': 'Point', 'coordinates': (-79.31656232, 43.66635918)}"
-4480,553,GO-20171005782,THEFT UNDER - BICYCLE,2017-06-06T00:00:00,2017,June,Tuesday,6,157,17,2017-06-06T00:00:00,2017,June,Tuesday,6,157,20,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,HUFFY,BRAZEN,BM,1,LGR,200.0,STOLEN,4479,"{'type': 'Point', 'coordinates': (-79.31881863, 43.678235580000006)}"
-4481,589,GO-20179007909,THEFT UNDER,2017-06-08T00:00:00,2017,June,Thursday,8,159,19,2017-06-11T00:00:00,2017,June,Sunday,11,162,20,D55,Toronto,64,Woodbine Corridor (64),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,"NEXT """"HIGH PEAK",MT,18,GRY,100.0,STOLEN,4480,"{'type': 'Point', 'coordinates': (-79.3190054, 43.67580551)}"
-4482,1035,GO-20171361185,THEFT UNDER - BICYCLE,2017-07-27T00:00:00,2017,July,Thursday,27,208,23,2017-07-29T00:00:00,2017,July,Saturday,29,210,9,D55,Toronto,64,Woodbine Corridor (64),"Apartment (Rooming House, Condo)",Apartment,CCM,,RG,21,BLU,700.0,STOLEN,4481,"{'type': 'Point', 'coordinates': (-79.31933836, 43.6796677)}"
-4483,1357,GO-20179014420,THEFT UNDER,2017-09-10T00:00:00,2017,September,Sunday,10,253,16,2017-09-10T00:00:00,2017,September,Sunday,10,253,19,D55,Toronto,64,Woodbine Corridor (64),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,STUMPJUMPER,MT,2,BLU,300.0,STOLEN,4482,"{'type': 'Point', 'coordinates': (-79.32076157, 43.67653289)}"
-4484,1510,GO-20171739965,THEFT UNDER - BICYCLE,2017-09-25T00:00:00,2017,September,Monday,25,268,12,2017-09-25T00:00:00,2017,September,Monday,25,268,12,D55,Toronto,64,Woodbine Corridor (64),"Religious Facilities (Synagogue, Church, Convent, Mosque)",Other,UNKNOWN MAKE,,OT,0,,,STOLEN,4483,"{'type': 'Point', 'coordinates': (-79.3176124, 43.66888972)}"
-4485,1622,GO-20171807110,THEFT UNDER,2017-10-05T00:00:00,2017,October,Thursday,5,278,0,2017-10-05T00:00:00,2017,October,Thursday,5,278,15,D55,Toronto,64,Woodbine Corridor (64),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,,MT,10,BLK,500.0,STOLEN,4484,"{'type': 'Point', 'coordinates': (-79.31920051, 43.68428635)}"
-4486,1874,GO-20179020403,THEFT UNDER - BICYCLE,2017-11-22T00:00:00,2017,November,Wednesday,22,326,22,2017-11-23T00:00:00,2017,November,Thursday,23,327,18,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,18,ONG,1000.0,STOLEN,4485,"{'type': 'Point', 'coordinates': (-79.32076157, 43.67653289)}"
-4487,2088,GO-20189008552,THEFT UNDER,2017-11-20T00:00:00,2017,November,Monday,20,324,16,2018-03-19T00:00:00,2018,March,Monday,19,78,16,D55,Toronto,64,Woodbine Corridor (64),"Apartment (Rooming House, Condo)",Apartment,CA,QUICK ACERA BBQ,RG,7,BLK,519.0,STOLEN,4486,"{'type': 'Point', 'coordinates': (-79.31404693, 43.68540464)}"
-4488,2244,GO-20189013662,THEFT UNDER,2018-04-03T00:00:00,2018,April,Tuesday,3,93,0,2018-05-03T00:00:00,2018,May,Thursday,3,123,10,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,MT,18,BLK,430.0,STOLEN,4487,"{'type': 'Point', 'coordinates': (-79.31432569, 43.682576020000006)}"
-4489,2246,GO-20189013719,THEFT UNDER,2018-05-02T00:00:00,2018,May,Wednesday,2,122,18,2018-05-03T00:00:00,2018,May,Thursday,3,123,18,D55,Toronto,64,Woodbine Corridor (64),"Apartment (Rooming House, Condo)",Apartment,CA,,MT,21,BLU,500.0,STOLEN,4488,"{'type': 'Point', 'coordinates': (-79.31404693, 43.68540464)}"
-4490,2260,GO-20189013925,THEFT UNDER - BICYCLE,2018-04-30T00:00:00,2018,April,Monday,30,120,17,2018-05-05T00:00:00,2018,May,Saturday,5,125,21,D55,Toronto,64,Woodbine Corridor (64),"Apartment (Rooming House, Condo)",Apartment,OT,REFLEX 10,MT,21,WHI,1469.0,STOLEN,4489,"{'type': 'Point', 'coordinates': (-79.31404693, 43.68540464)}"
-4491,2874,GO-20189022828,THEFT UNDER - BICYCLE,2018-07-17T00:00:00,2018,July,Tuesday,17,198,4,2018-07-17T00:00:00,2018,July,Tuesday,17,198,16,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ROADSTER,RG,1,BLK,800.0,STOLEN,4490,"{'type': 'Point', 'coordinates': (-79.31172041, 43.67527723)}"
-4492,2878,GO-20189022957,THEFT UNDER,2018-07-10T00:00:00,2018,July,Tuesday,10,191,20,2018-07-18T00:00:00,2018,July,Wednesday,18,199,17,D55,Toronto,64,Woodbine Corridor (64),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RM,METRO 10,OT,24,GRY,499.0,STOLEN,4491,"{'type': 'Point', 'coordinates': (-79.31404693, 43.68540464)}"
-4493,3457,GO-20189030265,THEFT UNDER,2018-09-12T00:00:00,2018,September,Wednesday,12,255,0,2018-09-13T00:00:00,2018,September,Thursday,13,256,14,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KH,URBAN X-PRESS,TO,21,BLK,0.0,STOLEN,4492,"{'type': 'Point', 'coordinates': (-79.31572756, 43.67715498)}"
-4494,3458,GO-20189030265,THEFT UNDER,2018-09-12T00:00:00,2018,September,Wednesday,12,255,0,2018-09-13T00:00:00,2018,September,Thursday,13,256,14,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,TO,21,BLK,500.0,STOLEN,4493,"{'type': 'Point', 'coordinates': (-79.31572756, 43.67715498)}"
-4495,3750,GO-20189035289,THEFT UNDER - BICYCLE,2018-10-23T00:00:00,2018,October,Tuesday,23,296,15,2018-10-23T00:00:00,2018,October,Tuesday,23,296,19,D55,Toronto,64,Woodbine Corridor (64),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,,MT,21,BLK,380.0,STOLEN,4494,"{'type': 'Point', 'coordinates': (-79.32359895, 43.68336554)}"
-4496,4109,GO-20199009661,THEFT UNDER,2019-03-25T00:00:00,2019,March,Monday,25,84,10,2019-03-26T00:00:00,2019,March,Tuesday,26,85,9,D55,Toronto,64,Woodbine Corridor (64),"Apartment (Rooming House, Condo)",Apartment,TR,970,MT,21,RED,0.0,STOLEN,4495,"{'type': 'Point', 'coordinates': (-79.31494646, 43.67808986)}"
-4497,4188,GO-20199012611,THEFT UNDER,2019-04-21T00:00:00,2019,April,Sunday,21,111,0,2019-04-21T00:00:00,2019,April,Sunday,21,111,21,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RM,SOLO CX,OT,10,BLK,750.0,STOLEN,4496,"{'type': 'Point', 'coordinates': (-79.31801480000001, 43.66990354)}"
-4498,4545,GO-20191138658,THEFT UNDER,2019-06-18T00:00:00,2019,June,Tuesday,18,169,4,2019-06-19T00:00:00,2019,June,Wednesday,19,170,20,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OPUS,ADANTE 3,RC,9,GRYGRN,1500.0,STOLEN,4497,"{'type': 'Point', 'coordinates': (-79.31368474, 43.67107952)}"
-4499,4587,GO-20199019864,THEFT UNDER,2019-06-20T00:00:00,2019,June,Thursday,20,171,16,2019-06-24T00:00:00,2019,June,Monday,24,175,9,D55,Toronto,64,Woodbine Corridor (64),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CORSO 2.0,MT,21,BLK,500.0,STOLEN,4498,"{'type': 'Point', 'coordinates': (-79.31523183, 43.68515061)}"
-4500,4605,GO-20191184739,THEFT UNDER,2019-06-24T00:00:00,2019,June,Monday,24,175,22,2019-06-26T00:00:00,2019,June,Wednesday,26,177,9,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KONA,JAKE,MT,10,BLKBLU,3500.0,STOLEN,4499,"{'type': 'Point', 'coordinates': (-79.31204532, 43.67851269)}"
-4501,4917,GO-20199024257,THEFT UNDER,2019-07-24T00:00:00,2019,July,Wednesday,24,205,15,2019-07-29T00:00:00,2019,July,Monday,29,210,15,D55,Toronto,64,Woodbine Corridor (64),"Apartment (Rooming House, Condo)",Apartment,UK,SPEEDSTER,RC,9,BLK,1500.0,STOLEN,4500,"{'type': 'Point', 'coordinates': (-79.31404693, 43.68540464)}"
-4502,4918,GO-20199024257,THEFT UNDER,2019-07-24T00:00:00,2019,July,Wednesday,24,205,15,2019-07-29T00:00:00,2019,July,Monday,29,210,15,D55,Toronto,64,Woodbine Corridor (64),"Apartment (Rooming House, Condo)",Apartment,UK,AUDACIO,RC,21,BLU,1500.0,STOLEN,4501,"{'type': 'Point', 'coordinates': (-79.31404693, 43.68540464)}"
-4503,5312,GO-20191752018,THEFT UNDER,2019-09-08T00:00:00,2019,September,Sunday,8,251,0,2019-09-12T00:00:00,2019,September,Thursday,12,255,15,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,EMMO,,EL,1,,1500.0,STOLEN,4502,"{'type': 'Point', 'coordinates': (-79.31646681, 43.67138179)}"
-4504,5511,GO-20191973230,B&E,2019-10-11T00:00:00,2019,October,Friday,11,284,19,2019-10-12T00:00:00,2019,October,Saturday,12,285,19,D55,Toronto,64,Woodbine Corridor (64),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,,TO,12,BLK,1650.0,STOLEN,4503,"{'type': 'Point', 'coordinates': (-79.31494646, 43.67808986)}"
-4505,5583,GO-20192053410,THEFT UNDER - BICYCLE,2019-09-09T00:00:00,2019,September,Monday,9,252,17,2019-10-24T00:00:00,2019,October,Thursday,24,297,12,D55,Toronto,64,Woodbine Corridor (64),"Apartment (Rooming House, Condo)",Apartment,OTHER,,OT,21,WHI,700.0,STOLEN,4504,"{'type': 'Point', 'coordinates': (-79.31368474, 43.67107952)}"
-4506,6045,GO-20209010851,THEFT UNDER,2020-04-09T00:00:00,2020,April,Thursday,9,100,13,2020-04-10T00:00:00,2020,April,Friday,10,101,14,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,DIRT JUMPER,MT,21,,2500.0,STOLEN,4505,"{'type': 'Point', 'coordinates': (-79.31351686, 43.66702936)}"
-4507,6050,GO-20209010926,THEFT UNDER,2020-04-11T00:00:00,2020,April,Saturday,11,102,16,2020-04-11T00:00:00,2020,April,Saturday,11,102,17,D55,Toronto,64,Woodbine Corridor (64),"Apartment (Rooming House, Condo)",Apartment,TR,FX 3 2019,RG,18,RED,1352.0,STOLEN,4506,"{'type': 'Point', 'coordinates': (-79.3190054, 43.67580551)}"
-4508,6262,GO-20209014093,THEFT UNDER,2020-05-28T00:00:00,2020,May,Thursday,28,149,7,2020-05-28T00:00:00,2020,May,Thursday,28,149,10,D55,Toronto,64,Woodbine Corridor (64),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SU,,MT,18,BLK,50.0,STOLEN,4507,"{'type': 'Point', 'coordinates': (-79.3172039, 43.66793095)}"
-4509,6416,GO-20209015571,THEFT UNDER,2020-06-17T00:00:00,2020,June,Wednesday,17,169,13,2020-06-17T00:00:00,2020,June,Wednesday,17,169,14,D55,Toronto,64,Woodbine Corridor (64),"Apartment (Rooming House, Condo)",Apartment,,ECKO 26,MT,6,BLK,300.0,STOLEN,4508,"{'type': 'Point', 'coordinates': (-79.31404693, 43.68540464)}"
-4510,6438,GO-20201149377,THEFT UNDER - BICYCLE,2020-06-21T00:00:00,2020,June,Sunday,21,173,20,2020-06-22T00:00:00,2020,June,Monday,22,174,15,D55,Toronto,64,Woodbine Corridor (64),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,URBAN,EL,3,BLK,1400.0,RECOVERED,4509,"{'type': 'Point', 'coordinates': (-79.31158524, 43.67051816000001)}"
-4511,6982,GO-20201553093,B&E,2020-08-14T00:00:00,2020,August,Friday,14,227,0,2020-08-18T00:00:00,2020,August,Tuesday,18,231,17,D55,Toronto,64,Woodbine Corridor (64),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,MENS,RC,12,BLK,1500.0,STOLEN,4510,"{'type': 'Point', 'coordinates': (-79.32076157, 43.67653289)}"
-4512,6983,GO-20201553093,B&E,2020-08-14T00:00:00,2020,August,Friday,14,227,0,2020-08-18T00:00:00,2020,August,Tuesday,18,231,17,D55,Toronto,64,Woodbine Corridor (64),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,LINUS,RG,12,GRYWHI,1000.0,STOLEN,4511,"{'type': 'Point', 'coordinates': (-79.32076157, 43.67653289)}"
-4513,6984,GO-20201553093,B&E,2020-08-14T00:00:00,2020,August,Friday,14,227,0,2020-08-18T00:00:00,2020,August,Tuesday,18,231,17,D55,Toronto,64,Woodbine Corridor (64),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,LINUS,RG,3,BGE,400.0,STOLEN,4512,"{'type': 'Point', 'coordinates': (-79.32076157, 43.67653289)}"
-4514,7350,GO-20209024397,THEFT UNDER,2020-09-24T00:00:00,2020,September,Thursday,24,268,10,2020-09-24T00:00:00,2020,September,Thursday,24,268,21,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,XTC JR,MT,7,RED,340.0,STOLEN,4513,"{'type': 'Point', 'coordinates': (-79.31762961, 43.68462674)}"
-4515,7372,GO-20209024746,THEFT UNDER,2020-09-27T00:00:00,2020,September,Sunday,27,271,22,2020-09-28T00:00:00,2020,September,Monday,28,272,9,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KH,,RG,21,BLU,200.0,STOLEN,4514,"{'type': 'Point', 'coordinates': (-79.31769628, 43.68078118)}"
-4516,7482,GO-20201971972,B&E,2020-10-16T00:00:00,2020,October,Friday,16,290,16,2020-10-17T00:00:00,2020,October,Saturday,17,291,15,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DIAMOND BACK,LX WHEEL,UN,1,,250.0,STOLEN,4515,"{'type': 'Point', 'coordinates': (-79.31404693, 43.68540464)}"
-4517,7765,GO-20141546511,THEFT UNDER,2014-01-17T00:00:00,2014,January,Friday,17,17,6,2014-02-17T00:00:00,2014,February,Monday,17,48,13,D55,Toronto,64,Woodbine Corridor (64),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,1700,SC,10,,,STOLEN,4516,"{'type': 'Point', 'coordinates': (-79.32026102, 43.67533667)}"
-4518,8211,GO-20149004333,THEFT UNDER,2014-06-21T00:00:00,2014,June,Saturday,21,172,22,2014-06-23T00:00:00,2014,June,Monday,23,174,19,D55,Toronto,64,Woodbine Corridor (64),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,CALYPSO,TO,7,,375.0,STOLEN,4517,"{'type': 'Point', 'coordinates': (-79.31926987, 43.67290749)}"
-4519,8753,GO-20149006196,THEFT UNDER,2014-06-28T00:00:00,2014,June,Saturday,28,179,1,2014-08-22T00:00:00,2014,August,Friday,22,234,11,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,MT,18,LGR,700.0,STOLEN,4518,"{'type': 'Point', 'coordinates': (-79.31346540000001, 43.6840323)}"
-4520,9642,GO-2015865523,THEFT UNDER,2015-05-24T00:00:00,2015,May,Sunday,24,144,13,2015-05-24T00:00:00,2015,May,Sunday,24,144,14,D55,Toronto,64,Woodbine Corridor (64),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,EMMO URBAN,EL,50,RED,2447.0,STOLEN,4519,"{'type': 'Point', 'coordinates': (-79.31926987, 43.67290749)}"
-4521,10820,GO-20159010280,THEFT UNDER,2015-11-24T00:00:00,2015,November,Tuesday,24,328,0,2015-11-28T00:00:00,2015,November,Saturday,28,332,16,D55,Toronto,64,Woodbine Corridor (64),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,200.1,BM,1,GRY,305.0,STOLEN,4520,"{'type': 'Point', 'coordinates': (-79.31769628, 43.68078118)}"
-4522,10822,GO-20159010306,THEFT UNDER,2015-11-27T00:00:00,2015,November,Friday,27,331,11,2015-11-29T00:00:00,2015,November,Sunday,29,333,12,D55,Toronto,64,Woodbine Corridor (64),"Apartment (Rooming House, Condo)",Apartment,GI,RAPID,RG,7,BLK,900.0,STOLEN,4521,"{'type': 'Point', 'coordinates': (-79.31692618, 43.67617575)}"
-4523,10832,GO-20159010480,THEFT UNDER,2015-12-02T00:00:00,2015,December,Wednesday,2,336,23,2015-12-03T00:00:00,2015,December,Thursday,3,337,15,D55,Toronto,64,Woodbine Corridor (64),"Private Property Structure (Pool, Shed, Detached Garage)",Other,JAMIS,X-TRAIL,MT,7,GRY,450.0,STOLEN,4522,"{'type': 'Point', 'coordinates': (-79.31643421, 43.68296649)}"
-4524,10974,GO-20169001234,THEFT UNDER,2015-12-18T00:00:00,2015,December,Friday,18,352,9,2016-02-08T00:00:00,2016,February,Monday,8,39,9,D55,Toronto,64,Woodbine Corridor (64),"Apartment (Rooming House, Condo)",Apartment,OT,TRAIL-OR-PARK,MT,9,BLU,1500.0,STOLEN,4523,"{'type': 'Point', 'coordinates': (-79.31033224, 43.6715023)}"
-4525,10996,GO-2016283868,THEFT OVER,2016-02-14T00:00:00,2016,February,Sunday,14,45,16,2016-02-17T00:00:00,2016,February,Wednesday,17,48,8,D55,Toronto,64,Woodbine Corridor (64),"Apartment (Rooming House, Condo)",Apartment,NORCO,,OT,20,WHIRED,5000.0,STOLEN,4524,"{'type': 'Point', 'coordinates': (-79.31404693, 43.68540464)}"
-4526,11101,GO-2016580104,ROBBERY - OTHER,2016-04-05T00:00:00,2016,April,Tuesday,5,96,21,2016-04-05T00:00:00,2016,April,Tuesday,5,96,23,D55,Toronto,64,Woodbine Corridor (64),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EBIKE,,EL,10,ONG,,RECOVERED,4525,"{'type': 'Point', 'coordinates': (-79.31158524, 43.67051816000001)}"
-4527,14140,GO-201712282,THEFT UNDER,2016-12-27T00:00:00,2016,December,Tuesday,27,362,0,2017-01-03T00:00:00,2017,January,Tuesday,3,3,11,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,YETI,SB,MT,11,BLK,6100.0,STOLEN,4526,"{'type': 'Point', 'coordinates': (-79.29798392000001, 43.67888482)}"
-4528,14147,GO-20179005217,THEFT UNDER,2017-04-24T00:00:00,2017,April,Monday,24,114,16,2017-04-24T00:00:00,2017,April,Monday,24,114,21,D55,Toronto,63,The Beaches (63),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,58 CM FRAME,RC,1,BLK,477.0,STOLEN,4527,"{'type': 'Point', 'coordinates': (-79.31255363, 43.66724381)}"
-4529,14149,GO-2017737042,THEFT OVER,2017-04-26T00:00:00,2017,April,Wednesday,26,116,23,2017-04-27T00:00:00,2017,April,Thursday,27,117,7,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KONA,,MT,24,BLU,2500.0,STOLEN,4528,"{'type': 'Point', 'coordinates': (-79.28496237, 43.67823917)}"
-4530,14150,GO-2017737042,THEFT OVER,2017-04-26T00:00:00,2017,April,Wednesday,26,116,23,2017-04-27T00:00:00,2017,April,Thursday,27,117,7,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCOTT,SCALE,MT,24,WHIBLK,7500.0,STOLEN,4529,"{'type': 'Point', 'coordinates': (-79.28496237, 43.67823917)}"
-4531,14167,GO-20179009308,THEFT UNDER - BICYCLE,2017-06-21T00:00:00,2017,June,Wednesday,21,172,0,2017-07-02T00:00:00,2017,July,Sunday,2,183,22,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,KO,DEWEY 2016,TO,8,BLK,580.0,STOLEN,4530,"{'type': 'Point', 'coordinates': (-79.30650986, 43.67400438)}"
-4532,14178,GO-20179011740,THEFT UNDER - BICYCLE,2017-08-05T00:00:00,2017,August,Saturday,5,217,13,2017-08-05T00:00:00,2017,August,Saturday,5,217,13,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,REMEDY 7,MT,14,BLK,2500.0,STOLEN,4531,"{'type': 'Point', 'coordinates': (-79.30049309, 43.676622140000006)}"
-4533,2426,GO-20189016821,THEFT UNDER - BICYCLE,2018-05-30T00:00:00,2018,May,Wednesday,30,150,9,2018-05-30T00:00:00,2018,May,Wednesday,30,150,14,D55,Toronto,65,Greenwood-Coxwell (65),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RA,SUMMIT,MT,15,TRQ,150.0,STOLEN,4532,"{'type': 'Point', 'coordinates': (-79.32659503, 43.66220958)}"
-4534,14180,GO-20179012225,THEFT UNDER,2017-08-12T00:00:00,2017,August,Saturday,12,224,9,2017-08-12T00:00:00,2017,August,Saturday,12,224,10,D55,Toronto,63,The Beaches (63),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,DB,HANJO,RG,16,BLK,790.0,STOLEN,4533,"{'type': 'Point', 'coordinates': (-79.32901937, 43.66055266)}"
-4535,22894,GO-2015649368,THEFT UNDER,2015-04-19T00:00:00,2015,April,Sunday,19,109,12,2015-04-19T00:00:00,2015,April,Sunday,19,109,19,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,OT,0,,,STOLEN,4534,"{'type': 'Point', 'coordinates': (-79.29583159, 43.67938411)}"
-4536,14198,GO-20179015839,THEFT UNDER,2017-09-26T00:00:00,2017,September,Tuesday,26,269,13,2017-09-26T00:00:00,2017,September,Tuesday,26,269,15,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,OT,VITA STEP THROU,RG,21,WHI,687.0,STOLEN,4535,"{'type': 'Point', 'coordinates': (-79.29134424, 43.66876346000001)}"
-4537,14204,GO-20179016429,THEFT UNDER - BICYCLE,2017-10-02T00:00:00,2017,October,Monday,2,275,14,2017-10-04T00:00:00,2017,October,Wednesday,4,277,12,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,"1805, BLACK, 24",RG,10,BLK,800.0,STOLEN,4536,"{'type': 'Point', 'coordinates': (-79.2892718, 43.68000987)}"
-4538,14236,GO-20189016627,THEFT UNDER - BICYCLE,2018-05-27T00:00:00,2018,May,Sunday,27,147,16,2018-05-28T00:00:00,2018,May,Monday,28,148,17,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KH,,MT,18,YEL,0.0,STOLEN,4537,"{'type': 'Point', 'coordinates': (-79.30157426, 43.67437094)}"
-4539,14259,GO-20189022445,THEFT UNDER - BICYCLE,2018-07-11T00:00:00,2018,July,Wednesday,11,192,0,2018-07-14T00:00:00,2018,July,Saturday,14,195,18,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,TR,FX 7.1,RG,21,BLK,700.0,STOLEN,4538,"{'type': 'Point', 'coordinates': (-79.30573552, 43.66875614)}"
-4540,15874,GO-20149004100,THEFT UNDER,2014-06-14T00:00:00,2014,June,Saturday,14,165,4,2014-06-15T00:00:00,2014,June,Sunday,15,166,20,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GF,GARY FISHER,RG,24,GRY,200.0,STOLEN,4539,"{'type': 'Point', 'coordinates': (-79.31029568, 43.66773066)}"
-4541,15876,GO-20142349697,B&E W'INTENT,2014-06-23T00:00:00,2014,June,Monday,23,174,5,2014-06-23T00:00:00,2014,June,Monday,23,174,12,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,OTHER,RETROSPEC,OT,1,GRY,300.0,STOLEN,4540,"{'type': 'Point', 'coordinates': (-79.30687812, 43.66849906)}"
-4542,15887,GO-20142511127,THEFT UNDER,2014-06-06T00:00:00,2014,June,Friday,6,157,13,2014-07-16T00:00:00,2014,July,Wednesday,16,197,19,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MARIN OR MARINO,,MT,21,GRY,1500.0,STOLEN,4541,"{'type': 'Point', 'coordinates': (-79.31029568, 43.66773066)}"
-4543,15896,GO-20149005581,THEFT UNDER,2014-08-03T00:00:00,2014,August,Sunday,3,215,16,2014-08-03T00:00:00,2014,August,Sunday,3,215,19,D55,Toronto,63,The Beaches (63),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SIRRUS,TO,24,BLK,1037.0,STOLEN,4542,"{'type': 'Point', 'coordinates': (-79.31481084000002, 43.66673892000001)}"
-4544,15900,GO-20149006465,THEFT UNDER,2014-08-31T00:00:00,2014,August,Sunday,31,243,23,2014-09-01T00:00:00,2014,September,Monday,1,244,11,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,COMP EVO FSR 29,MT,14,BLK,3300.0,STOLEN,4543,"{'type': 'Point', 'coordinates': (-79.28519586, 43.67311655)}"
-4545,15903,GO-20149006725,THEFT UNDER,2014-09-09T00:00:00,2014,September,Tuesday,9,252,16,2014-09-09T00:00:00,2014,September,Tuesday,9,252,16,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,U/K,MT,21,BLK,0.0,STOLEN,4544,"{'type': 'Point', 'coordinates': (-79.2870473, 43.68053895)}"
-4546,15907,GO-20149007025,THEFT UNDER,2014-09-17T00:00:00,2014,September,Wednesday,17,260,20,2014-09-18T00:00:00,2014,September,Thursday,18,261,21,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,H500,RG,18,RED,1200.0,STOLEN,4545,"{'type': 'Point', 'coordinates': (-79.29813181000002, 43.67377781)}"
-4547,15931,GO-20159002323,THEFT UNDER,2015-04-26T00:00:00,2015,April,Sunday,26,116,22,2015-04-27T00:00:00,2015,April,Monday,27,117,21,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,IH,,RG,18,,100.0,STOLEN,4546,"{'type': 'Point', 'coordinates': (-79.3026378, 43.6741343)}"
-4548,15938,GO-20159002630,THEFT UNDER,2015-05-10T00:00:00,2015,May,Sunday,10,130,16,2015-05-11T00:00:00,2015,May,Monday,11,131,15,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,SR SUNTOUR XCM,MT,8,WHI,639.0,STOLEN,4547,"{'type': 'Point', 'coordinates': (-79.31140037, 43.66749248)}"
-4549,15958,GO-20151244307,THEFT UNDER,2015-07-21T00:00:00,2015,July,Tuesday,21,202,18,2015-07-21T00:00:00,2015,July,Tuesday,21,202,18,D55,Toronto,63,The Beaches (63),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,,OT,0,RED,3000.0,STOLEN,4548,"{'type': 'Point', 'coordinates': (-79.29571436, 43.67093546)}"
-4550,16028,GO-2016990964,THEFT UNDER - BICYCLE,2016-05-27T00:00:00,2016,May,Friday,27,148,20,2016-06-07T00:00:00,2016,June,Tuesday,7,159,17,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RAZOR,E100,RG,0,SIL,200.0,STOLEN,4549,"{'type': 'Point', 'coordinates': (-79.28479611, 43.67217304)}"
-4551,16029,GO-20209016946,THEFT UNDER,2020-07-05T00:00:00,2020,July,Sunday,5,187,0,2020-07-06T00:00:00,2020,July,Monday,6,188,13,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,GI,TALON 29,MT,12,BLK,1200.0,STOLEN,4550,"{'type': 'Point', 'coordinates': (-79.30687812, 43.66849906)}"
-4552,16081,GO-20209023538,THEFT UNDER,2020-09-14T00:00:00,2020,September,Monday,14,258,13,2020-09-17T00:00:00,2020,September,Thursday,17,261,13,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,TR,,RC,12,,1700.0,STOLEN,4551,"{'type': 'Point', 'coordinates': (-79.31140037, 43.66749248)}"
-4553,16082,GO-20209023809,THEFT UNDER,2020-09-18T00:00:00,2020,September,Friday,18,262,23,2020-09-19T00:00:00,2020,September,Saturday,19,263,9,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,UK,SINGLE SPEED,RG,1,BLK,700.0,STOLEN,4552,"{'type': 'Point', 'coordinates': (-79.30295345, 43.66702426)}"
-4554,18733,GO-20209020035,THEFT UNDER,2020-08-12T00:00:00,2020,August,Wednesday,12,225,2,2020-08-12T00:00:00,2020,August,Wednesday,12,225,17,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,RG,24,GRY,500.0,STOLEN,4553,"{'type': 'Point', 'coordinates': (-79.3071757, 43.67221054)}"
-4555,18750,GO-20201611408,THEFT UNDER,2020-08-24T00:00:00,2020,August,Monday,24,237,2,2020-08-26T00:00:00,2020,August,Wednesday,26,239,19,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,NAKAMURA,UNKNOWN,OT,21,PLE,700.0,STOLEN,4554,"{'type': 'Point', 'coordinates': (-79.30546668, 43.66809787)}"
-4556,18759,GO-20209023381,THEFT UNDER,2020-09-16T00:00:00,2020,September,Wednesday,16,260,2,2020-09-16T00:00:00,2020,September,Wednesday,16,260,9,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,,RG,7,PLE,400.0,STOLEN,4555,"{'type': 'Point', 'coordinates': (-79.30469992, 43.66622023)}"
-4557,18772,GO-20202031331,B&E,2020-10-23T00:00:00,2020,October,Friday,23,297,12,2020-10-27T00:00:00,2020,October,Tuesday,27,301,9,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,OPUS,ALEGRO,RC,10,BLUWHI,200.0,STOLEN,4556,"{'type': 'Point', 'coordinates': (-79.29978601, 43.67007127)}"
-4558,18780,GO-20209029040,THEFT UNDER,2020-11-08T00:00:00,2020,November,Sunday,8,313,20,2020-11-09T00:00:00,2020,November,Monday,9,314,8,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,MIDTOWN,RG,28,SIL,750.0,STOLEN,4557,"{'type': 'Point', 'coordinates': (-79.29456095000002, 43.66892028)}"
-4559,18783,GO-20202178144,B&E,2020-11-17T00:00:00,2020,November,Tuesday,17,322,5,2020-11-17T00:00:00,2020,November,Tuesday,17,322,6,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,MT,12,,400.0,STOLEN,4558,"{'type': 'Point', 'coordinates': (-79.29151999, 43.67325534)}"
-4560,18841,GO-20142448110,THEFT UNDER,2014-07-07T00:00:00,2014,July,Monday,7,188,5,2014-07-07T00:00:00,2014,July,Monday,7,188,6,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CANNONDALE,F600,MT,21,SIL,,STOLEN,4559,"{'type': 'Point', 'coordinates': (-79.30898153, 43.66452549)}"
-4561,18842,GO-20142448110,THEFT UNDER,2014-07-07T00:00:00,2014,July,Monday,7,188,5,2014-07-07T00:00:00,2014,July,Monday,7,188,6,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CANNONDALE,F400,MT,21,BLU,,STOLEN,4560,"{'type': 'Point', 'coordinates': (-79.30898153, 43.66452549)}"
-4562,18859,GO-20142894056,THEFT UNDER,2014-09-11T00:00:00,2014,September,Thursday,11,254,15,2014-09-12T00:00:00,2014,September,Friday,12,255,9,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RALEIGH,,MT,21,GRYWHI,600.0,STOLEN,4561,"{'type': 'Point', 'coordinates': (-79.30783944, 43.66478095)}"
-4563,18860,GO-20142894056,THEFT UNDER,2014-09-11T00:00:00,2014,September,Thursday,11,254,15,2014-09-12T00:00:00,2014,September,Friday,12,255,9,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RALEIGH,,TO,21,BLUWHI,600.0,STOLEN,4562,"{'type': 'Point', 'coordinates': (-79.30783944, 43.66478095)}"
-4564,18861,GO-20149006923,THEFT UNDER,2014-09-01T00:00:00,2014,September,Monday,1,244,6,2014-09-15T00:00:00,2014,September,Monday,15,258,18,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DB,WILDWOOD,MT,21,RED,0.0,STOLEN,4563,"{'type': 'Point', 'coordinates': (-79.29550865, 43.67861413000001)}"
-4565,18865,GO-20149007165,THEFT UNDER,2014-09-17T00:00:00,2014,September,Wednesday,17,260,22,2014-09-24T00:00:00,2014,September,Wednesday,24,267,12,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MA,OLDER THAN 2007,MT,21,BLK,400.0,STOLEN,4564,"{'type': 'Point', 'coordinates': (-79.29165664, 43.66951774)}"
-4566,18867,GO-20143017402,THEFT UNDER,2014-09-30T00:00:00,2014,September,Tuesday,30,273,18,2014-09-30T00:00:00,2014,September,Tuesday,30,273,21,D55,Toronto,63,The Beaches (63),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,,OT,21,PLE,,STOLEN,4565,"{'type': 'Point', 'coordinates': (-79.31255363, 43.66724381)}"
-4567,18904,GO-20151039339,THEFT FROM MOTOR VEHICLE UNDER,2015-06-20T00:00:00,2015,June,Saturday,20,171,18,2015-06-20T00:00:00,2015,June,Saturday,20,171,19,D55,Toronto,63,The Beaches (63),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,DIAMONDBACK,MOUNTAIN,MT,24,GLD,1500.0,STOLEN,4566,"{'type': 'Point', 'coordinates': (-79.29417215, 43.66801509)}"
-4568,18926,GO-20159006383,THEFT UNDER,2015-08-23T00:00:00,2015,August,Sunday,23,235,13,2015-08-25T00:00:00,2015,August,Tuesday,25,237,13,D55,Toronto,63,The Beaches (63),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,VITA,MT,18,WHI,950.0,STOLEN,4567,"{'type': 'Point', 'coordinates': (-79.30295345, 43.66702426)}"
-4569,18937,GO-20151607442,THEFT UNDER,2015-09-15T00:00:00,2015,September,Tuesday,15,258,8,2015-09-17T00:00:00,2015,September,Thursday,17,260,11,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,JINHUALUYUAN,,EL,1,,700.0,STOLEN,4568,"{'type': 'Point', 'coordinates': (-79.2850277, 43.68071915)}"
-4570,18955,GO-20152103232,THEFT UNDER,2015-12-07T00:00:00,2015,December,Monday,7,341,0,2015-12-08T00:00:00,2015,December,Tuesday,8,342,14,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,7.3 FX,MT,25,BLK,900.0,STOLEN,4569,"{'type': 'Point', 'coordinates': (-79.30904711, 43.67286837)}"
-4571,18971,GO-20169004081,THEFT UNDER,2016-04-29T00:00:00,2016,April,Friday,29,120,17,2016-05-02T00:00:00,2016,May,Monday,2,123,21,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,INDIE 2 (2012),RG,27,BLK,725.0,STOLEN,4570,"{'type': 'Point', 'coordinates': (-79.30870846, 43.66992435)}"
-4572,18977,GO-2016837212,THEFT UNDER - BICYCLE,2016-05-14T00:00:00,2016,May,Saturday,14,135,11,2016-05-16T00:00:00,2016,May,Monday,16,137,11,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DEVINCI,TOSCA,OT,21,WHI,1500.0,STOLEN,4571,"{'type': 'Point', 'coordinates': (-79.29194412, 43.67018885000001)}"
-4573,18985,GO-2016992630,THEFT UNDER - BICYCLE,2016-06-07T00:00:00,2016,June,Tuesday,7,159,22,2016-06-07T00:00:00,2016,June,Tuesday,7,159,23,D55,Toronto,63,The Beaches (63),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,2015,MT,27,GRY,450.0,STOLEN,4572,"{'type': 'Point', 'coordinates': (-79.32901937, 43.66055266)}"
-4574,18987,GO-20169005738,THEFT UNDER - BICYCLE,2016-06-12T00:00:00,2016,June,Sunday,12,164,21,2016-06-13T00:00:00,2016,June,Monday,13,165,20,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,DURANGO SPORT,MT,21,DBL,0.0,STOLEN,4573,"{'type': 'Point', 'coordinates': (-79.28492309, 43.68072537)}"
-4575,19015,GO-20169008420,THEFT UNDER - BICYCLE,2016-08-08T00:00:00,2016,August,Monday,8,221,23,2016-08-09T00:00:00,2016,August,Tuesday,9,222,15,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,ROAM 2,MT,10,GRY,800.0,STOLEN,4574,"{'type': 'Point', 'coordinates': (-79.28836926, 43.68039456)}"
-4576,19016,GO-20169008420,THEFT UNDER - BICYCLE,2016-08-08T00:00:00,2016,August,Monday,8,221,23,2016-08-09T00:00:00,2016,August,Tuesday,9,222,15,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,ROAM 2,MT,10,GRY,800.0,STOLEN,4575,"{'type': 'Point', 'coordinates': (-79.28836926, 43.68039456)}"
-4577,19026,GO-20169009191,THEFT UNDER - BICYCLE,2016-08-21T00:00:00,2016,August,Sunday,21,234,2,2016-08-22T00:00:00,2016,August,Monday,22,235,17,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,15 XL,MT,15,BLK,700.0,STOLEN,4576,"{'type': 'Point', 'coordinates': (-79.30469992, 43.66622023)}"
-4578,19035,GO-20161607267,THEFT UNDER - BICYCLE,2016-09-09T00:00:00,2016,September,Friday,9,253,16,2016-09-10T00:00:00,2016,September,Saturday,10,254,7,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,ROCKY MOUNTAIN,,MT,21,WHIBLU,1400.0,STOLEN,4577,"{'type': 'Point', 'coordinates': (-79.30898153, 43.66452549)}"
-4579,19036,GO-20161607267,THEFT UNDER - BICYCLE,2016-09-09T00:00:00,2016,September,Friday,9,253,16,2016-09-10T00:00:00,2016,September,Saturday,10,254,7,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,OT,0,PLE,1000.0,STOLEN,4578,"{'type': 'Point', 'coordinates': (-79.30898153, 43.66452549)}"
-4580,19040,GO-20169010643,THEFT UNDER,2016-09-17T00:00:00,2016,September,Saturday,17,261,23,2016-09-18T00:00:00,2016,September,Sunday,18,262,14,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RC,10,BLK,250.0,STOLEN,4579,"{'type': 'Point', 'coordinates': (-79.28408315, 43.67336022)}"
-4581,19061,GO-20162047311,TRESPASS AT NIGHT,2016-11-18T00:00:00,2016,November,Friday,18,323,3,2016-11-18T00:00:00,2016,November,Friday,18,323,5,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BLADE,AGGRESSOR,BM,0,WHI,,RECOVERED,4580,"{'type': 'Point', 'coordinates': (-79.3026378, 43.6741343)}"
-4582,19062,GO-20162047311,TRESPASS AT NIGHT,2016-11-18T00:00:00,2016,November,Friday,18,323,3,2016-11-18T00:00:00,2016,November,Friday,18,323,5,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MIELE,VERONA,OT,0,BURGUN,,RECOVERED,4581,"{'type': 'Point', 'coordinates': (-79.3026378, 43.6741343)}"
-4583,19085,GO-20171007989,THEFT UNDER - BICYCLE,2017-06-07T00:00:00,2017,June,Wednesday,7,158,7,2017-06-07T00:00:00,2017,June,Wednesday,7,158,7,D55,Toronto,63,The Beaches (63),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SCOTT,SUB10,RC,21,WHI,2000.0,STOLEN,4582,"{'type': 'Point', 'coordinates': (-79.30898153, 43.66452549)}"
-4584,19143,GO-20189004515,THEFT UNDER - BICYCLE,2018-02-07T00:00:00,2018,February,Wednesday,7,38,13,2018-02-13T00:00:00,2018,February,Tuesday,13,44,14,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,CA,BAD BOY #,MT,24,BLK,1500.0,STOLEN,4583,"{'type': 'Point', 'coordinates': (-79.30082686, 43.6698443)}"
-4585,19150,GO-2018598875,THEFT UNDER - BICYCLE,2018-04-03T00:00:00,2018,April,Tuesday,3,93,21,2018-04-03T00:00:00,2018,April,Tuesday,3,93,21,D55,Toronto,63,The Beaches (63),Convenience Stores,Commercial,DEVINCI,,TO,10,WHI,1000.0,STOLEN,4584,"{'type': 'Point', 'coordinates': (-79.32901937, 43.66055266)}"
-4586,19152,GO-2018773686,THEFT UNDER - BICYCLE,2018-04-30T00:00:00,2018,April,Monday,30,120,17,2018-04-30T00:00:00,2018,April,Monday,30,120,17,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,OT,16,GRNPLE,500.0,STOLEN,4585,"{'type': 'Point', 'coordinates': (-79.30157426, 43.67437094)}"
-4587,19183,GO-20181317304,THEFT UNDER - BICYCLE,2018-07-13T00:00:00,2018,July,Friday,13,194,12,2018-07-19T00:00:00,2018,July,Thursday,19,200,11,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DEVINCI,,OT,21,RED,90021.0,STOLEN,4586,"{'type': 'Point', 'coordinates': (-79.28440123000001, 43.6712057)}"
-4588,19194,GO-20189027025,THEFT UNDER,2018-08-15T00:00:00,2018,August,Wednesday,15,227,18,2018-08-19T00:00:00,2018,August,Sunday,19,231,17,D55,Toronto,63,The Beaches (63),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,MT,21,,0.0,STOLEN,4587,"{'type': 'Point', 'coordinates': (-79.29797652, 43.67046133)}"
-4589,19200,GO-20181737737,THEFT UNDER - BICYCLE,2018-09-18T00:00:00,2018,September,Tuesday,18,261,18,2018-09-19T00:00:00,2018,September,Wednesday,19,262,17,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KONA\,,MT,21,BLKBLU,1500.0,STOLEN,4588,"{'type': 'Point', 'coordinates': (-79.306719, 43.66513509)}"
-4590,19201,GO-20181737737,THEFT UNDER - BICYCLE,2018-09-18T00:00:00,2018,September,Tuesday,18,261,18,2018-09-19T00:00:00,2018,September,Wednesday,19,262,17,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KONA\,,MT,21,WHIBLU,1000.0,STOLEN,4589,"{'type': 'Point', 'coordinates': (-79.306719, 43.66513509)}"
-4591,19219,GO-20189041003,THEFT UNDER - BICYCLE,2018-12-03T00:00:00,2018,December,Monday,3,337,10,2018-12-06T00:00:00,2018,December,Thursday,6,340,6,D55,Toronto,63,The Beaches (63),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RA,RALEIGHT 3.5,RG,5,BLU,500.0,STOLEN,4590,"{'type': 'Point', 'coordinates': (-79.30347834, 43.66926169)}"
-4592,19221,GO-20199002783,THEFT UNDER - BICYCLE,2019-01-20T00:00:00,2019,January,Sunday,20,20,2,2019-01-20T00:00:00,2019,January,Sunday,20,20,20,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,GT,PANTERA,MT,21,GRY,1500.0,STOLEN,4591,"{'type': 'Point', 'coordinates': (-79.29798392000001, 43.67888482)}"
-4593,19229,GO-2019958099,THEFT UNDER - BICYCLE,2019-05-25T00:00:00,2019,May,Saturday,25,145,20,2019-05-25T00:00:00,2019,May,Saturday,25,145,21,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,MT,10,,,STOLEN,4592,"{'type': 'Point', 'coordinates': (-79.3071757, 43.67221054)}"
-4594,19231,GO-20191019082,THEFT UNDER,2019-06-03T00:00:00,2019,June,Monday,3,154,11,2019-06-03T00:00:00,2019,June,Monday,3,154,14,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,DEVINCI,ST TROPEZ,OT,24,BLK,,STOLEN,4593,"{'type': 'Point', 'coordinates': (-79.30573552, 43.66875614)}"
-4595,19235,GO-20199017872,THEFT UNDER,2018-09-01T00:00:00,2018,September,Saturday,1,244,19,2019-06-08T00:00:00,2019,June,Saturday,8,159,19,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,TR,,RG,19,BRN,1200.0,STOLEN,4594,"{'type': 'Point', 'coordinates': (-79.29798392000001, 43.67888482)}"
-4596,19266,GO-20199026289,THEFT UNDER,2019-08-15T00:00:00,2019,August,Thursday,15,227,9,2019-08-15T00:00:00,2019,August,Thursday,15,227,9,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,,TO,3,BLK,850.0,STOLEN,4595,"{'type': 'Point', 'coordinates': (-79.30469992, 43.66622023)}"
-4597,19272,GO-20199028348,THEFT UNDER,2019-08-31T00:00:00,2019,August,Saturday,31,243,0,2019-08-31T00:00:00,2019,August,Saturday,31,243,12,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,PROJEKT 8,RC,8,RED,900.0,STOLEN,4596,"{'type': 'Point', 'coordinates': (-79.30219567, 43.66955978)}"
-4598,19290,GO-20199030072,THEFT UNDER,2019-09-15T00:00:00,2019,September,Sunday,15,258,6,2019-09-15T00:00:00,2019,September,Sunday,15,258,17,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,ROCK HOPPER,MT,21,RED,0.0,STOLEN,4597,"{'type': 'Point', 'coordinates': (-79.30643537, 43.67043507)}"
-4599,19314,GO-20191984547,THEFT UNDER,2019-10-13T00:00:00,2019,October,Sunday,13,286,19,2019-10-14T00:00:00,2019,October,Monday,14,287,16,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,RIDGE RUNNER,MT,18,GRY,2000.0,STOLEN,4598,"{'type': 'Point', 'coordinates': (-79.28440123000001, 43.6712057)}"
-4600,19315,GO-20199033871,THEFT UNDER,2019-10-12T00:00:00,2019,October,Saturday,12,285,22,2019-10-14T00:00:00,2019,October,Monday,14,287,18,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RA,INFERNO,RG,21,BLK,,STOLEN,4599,"{'type': 'Point', 'coordinates': (-79.28304118, 43.67357992)}"
-4601,19380,GO-20209015727,THEFT UNDER,2020-06-17T00:00:00,2020,June,Wednesday,17,169,7,2020-06-19T00:00:00,2020,June,Friday,19,171,14,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,GI,,TO,12,BLK,500.0,STOLEN,4600,"{'type': 'Point', 'coordinates': (-79.29346405, 43.67346399)}"
-4602,19631,GO-20142449217,THEFT UNDER,2014-07-07T00:00:00,2014,July,Monday,7,188,3,2014-07-07T00:00:00,2014,July,Monday,7,188,16,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,JAMIS,BLAZE,MT,15,WHIGRY,,STOLEN,4601,"{'type': 'Point', 'coordinates': (-79.30898153, 43.66452549)}"
-4603,19654,GO-20149006721,THEFT UNDER,2014-09-09T00:00:00,2014,September,Tuesday,9,252,6,2014-09-09T00:00:00,2014,September,Tuesday,9,252,16,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,HOLD-STEADY - M,RG,10,BLK,1200.0,STOLEN,4602,"{'type': 'Point', 'coordinates': (-79.2906355, 43.6785827)}"
-4604,19655,GO-20149007061,THEFT UNDER,2013-08-08T00:00:00,2013,August,Thursday,8,220,15,2014-09-20T00:00:00,2014,September,Saturday,20,263,13,D55,Toronto,63,The Beaches (63),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,AQUILA,RINCON DISC,MT,21,WHI,549.0,STOLEN,4603,"{'type': 'Point', 'coordinates': (-79.31481084000002, 43.66673892000001)}"
-4605,19658,GO-20143021111,THEFT UNDER,2014-09-30T00:00:00,2014,September,Tuesday,30,273,18,2014-10-01T00:00:00,2014,October,Wednesday,1,274,13,D55,Toronto,63,The Beaches (63),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,,RG,21,PLE,700.0,STOLEN,4604,"{'type': 'Point', 'coordinates': (-79.31255363, 43.66724381)}"
-4606,19669,GO-20143419149,THEFT UNDER,2014-12-03T00:00:00,2014,December,Wednesday,3,337,17,2014-12-03T00:00:00,2014,December,Wednesday,3,337,19,D55,Toronto,63,The Beaches (63),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,0K2001,MT,10,REDYEL,900.0,STOLEN,4605,"{'type': 'Point', 'coordinates': (-79.32839639, 43.65923478)}"
-4607,19671,GO-20149008873,THEFT UNDER,2014-12-19T00:00:00,2014,December,Friday,19,353,19,2014-12-20T00:00:00,2014,December,Saturday,20,354,13,D55,Toronto,63,The Beaches (63),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ROAM,MT,24,BLK,800.0,STOLEN,4606,"{'type': 'Point', 'coordinates': (-79.31029568, 43.66773066)}"
-4608,19678,GO-20159002112,THEFT UNDER,2015-04-20T00:00:00,2015,April,Monday,20,110,19,2015-04-20T00:00:00,2015,April,Monday,20,110,20,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM,MT,24,LGR,757.0,STOLEN,4607,"{'type': 'Point', 'coordinates': (-79.31140037, 43.66749248)}"
-4609,19682,GO-2015744234,THEFT UNDER,2015-05-02T00:00:00,2015,May,Saturday,2,122,16,2015-05-05T00:00:00,2015,May,Tuesday,5,125,6,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,CAMAROWTI,,RC,18,RED,5000.0,STOLEN,4608,"{'type': 'Point', 'coordinates': (-79.30687812, 43.66849906)}"
-4610,19688,GO-20151042057,THEFT UNDER,2015-06-20T00:00:00,2015,June,Saturday,20,171,16,2015-06-21T00:00:00,2015,June,Sunday,21,172,7,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,ROCKY MOUNTAIN,,MT,21,RED,1100.0,STOLEN,4609,"{'type': 'Point', 'coordinates': (-79.30383728, 43.66917425)}"
-4611,19752,GO-2016393604,THEFT UNDER - BICYCLE,2016-03-05T00:00:00,2016,March,Saturday,5,65,12,2016-03-06T00:00:00,2016,March,Sunday,6,66,13,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,EPIC,MT,27,BLKRED,4000.0,STOLEN,4610,"{'type': 'Point', 'coordinates': (-79.29987616, 43.67851223)}"
-4612,22166,GO-20169006849,THEFT UNDER - BICYCLE,2016-07-06T00:00:00,2016,July,Wednesday,6,188,22,2016-07-07T00:00:00,2016,July,Thursday,7,189,9,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,29INCH MOUTAINI,MT,28,BLK,700.0,STOLEN,4611,"{'type': 'Point', 'coordinates': (-79.2870473, 43.68053895)}"
-4613,22171,GO-20169007456,THEFT UNDER - BICYCLE,2016-07-18T00:00:00,2016,July,Monday,18,200,18,2016-07-20T00:00:00,2016,July,Wednesday,20,202,10,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MA,NAIL TRAIL 9.7,MT,20,BRN,2286.0,STOLEN,4612,"{'type': 'Point', 'coordinates': (-79.30104916, 43.66768758)}"
-4614,22194,GO-20161607267,THEFT UNDER - BICYCLE,2016-09-09T00:00:00,2016,September,Friday,9,253,16,2016-09-10T00:00:00,2016,September,Saturday,10,254,7,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RM,FUSION,MT,21,WHI,1000.0,STOLEN,4613,"{'type': 'Point', 'coordinates': (-79.30898153, 43.66452549)}"
-4615,22195,GO-20161607267,THEFT UNDER - BICYCLE,2016-09-09T00:00:00,2016,September,Friday,9,253,16,2016-09-10T00:00:00,2016,September,Saturday,10,254,7,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,ROVE 2,MT,18,PLE,700.0,STOLEN,4614,"{'type': 'Point', 'coordinates': (-79.30898153, 43.66452549)}"
-4616,22206,GO-20161792466,B&E,2016-10-08T00:00:00,2016,October,Saturday,8,282,0,2016-10-08T00:00:00,2016,October,Saturday,8,282,17,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,1.2,RC,21,,1000.0,STOLEN,4615,"{'type': 'Point', 'coordinates': (-79.30783944, 43.66478095)}"
-4617,2477,GO-20189017560,THEFT UNDER - BICYCLE,2018-06-05T00:00:00,2018,June,Tuesday,5,156,23,2018-06-06T00:00:00,2018,June,Wednesday,6,157,8,D55,Toronto,65,Greenwood-Coxwell (65),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,OT,16,BLK,250.0,STOLEN,4616,"{'type': 'Point', 'coordinates': (-79.32119568, 43.67247049)}"
-4618,22907,GO-20151019639,THEFT UNDER,2015-06-06T00:00:00,2015,June,Saturday,6,157,9,2015-06-17T00:00:00,2015,June,Wednesday,17,168,19,D55,Toronto,62,East End-Danforth (62),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,BLUE AVENUE,STRIKER,EL,2,RED,2000.0,STOLEN,4617,"{'type': 'Point', 'coordinates': (-79.3005068, 43.68844665)}"
-4619,2503,GO-20189017786,THEFT UNDER - BICYCLE,2018-06-07T00:00:00,2018,June,Thursday,7,158,12,2018-06-07T00:00:00,2018,June,Thursday,7,158,17,D55,Toronto,65,Greenwood-Coxwell (65),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,3 SERIES,MT,10,GRN,1100.0,STOLEN,4618,"{'type': 'Point', 'coordinates': (-79.32328138, 43.6795952)}"
-4620,22938,GO-20159008038,THEFT UNDER,2015-10-01T00:00:00,2015,October,Thursday,1,274,21,2015-10-02T00:00:00,2015,October,Friday,2,275,12,D55,Toronto,62,East End-Danforth (62),"Apartment (Rooming House, Condo)",Apartment,GI,2015,RG,8,BLK,500.0,STOLEN,4619,"{'type': 'Point', 'coordinates': (-79.29881127, 43.68074144)}"
-4621,2566,GO-20189018693,THEFT UNDER - BICYCLE,2018-06-13T00:00:00,2018,June,Wednesday,13,164,23,2018-06-14T00:00:00,2018,June,Thursday,14,165,13,D55,Toronto,65,Greenwood-Coxwell (65),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,MT,18,BLK,300.0,STOLEN,4620,"{'type': 'Point', 'coordinates': (-79.32402651, 43.66676495)}"
-4622,22961,GO-2016447141,B&E,2016-03-12T00:00:00,2016,March,Saturday,12,72,0,2016-03-15T00:00:00,2016,March,Tuesday,15,75,7,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,REGAL,MARQUEE,MT,0,LBL,500.0,STOLEN,4621,"{'type': 'Point', 'coordinates': (-79.29599307, 43.68509658)}"
-4623,2687,GO-20189020314,THEFT UNDER - BICYCLE,2018-06-25T00:00:00,2018,June,Monday,25,176,21,2018-06-26T00:00:00,2018,June,Tuesday,26,177,21,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,RG,21,WHI,750.0,STOLEN,4622,"{'type': 'Point', 'coordinates': (-79.32408401, 43.67941804)}"
-4624,22962,GO-2016447141,B&E,2016-03-12T00:00:00,2016,March,Saturday,12,72,0,2016-03-15T00:00:00,2016,March,Tuesday,15,75,7,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CANNONDALE,BLACKMACK,TO,24,BLK,1000.0,STOLEN,4623,"{'type': 'Point', 'coordinates': (-79.29599307, 43.68509658)}"
-4625,2779,GO-20189021574,THEFT UNDER,2018-07-07T00:00:00,2018,July,Saturday,7,188,10,2018-07-07T00:00:00,2018,July,Saturday,7,188,23,D55,Toronto,65,Greenwood-Coxwell (65),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,SU100,MT,24,SIL,750.0,STOLEN,4624,"{'type': 'Point', 'coordinates': (-79.32557578, 43.68134426)}"
-4626,22989,GO-20161382438,THEFT UNDER - BICYCLE,2016-08-01T00:00:00,2016,August,Monday,1,214,10,2016-08-06T00:00:00,2016,August,Saturday,6,219,9,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,F600SL,MT,24,BLU,2000.0,STOLEN,4625,"{'type': 'Point', 'coordinates': (-79.30568587, 43.67716771)}"
-4627,3068,GO-20189025062,THEFT UNDER - BICYCLE,2018-08-03T00:00:00,2018,August,Friday,3,215,21,2018-08-03T00:00:00,2018,August,Friday,3,215,22,D55,Toronto,65,Greenwood-Coxwell (65),Bar / Restaurant,Commercial,OT,,TO,21,BLU,350.0,STOLEN,4626,"{'type': 'Point', 'coordinates': (-79.31926987, 43.67290749)}"
-4628,3094,GO-20189025327,THEFT UNDER,2018-08-06T00:00:00,2018,August,Monday,6,218,14,2018-08-06T00:00:00,2018,August,Monday,6,218,19,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,VESTA,RC,20,BLU,1000.0,STOLEN,4627,"{'type': 'Point', 'coordinates': (-79.32589804, 43.67140105)}"
-4629,25388,GO-20169010222,THEFT UNDER - BICYCLE,2016-09-09T00:00:00,2016,September,Friday,9,253,20,2016-09-10T00:00:00,2016,September,Saturday,10,254,11,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,MT,24,BLK,1000.0,STOLEN,4628,"{'type': 'Point', 'coordinates': (-79.29722788, 43.68069873)}"
-4630,3095,GO-20189025327,THEFT UNDER,2018-08-06T00:00:00,2018,August,Monday,6,218,14,2018-08-06T00:00:00,2018,August,Monday,6,218,19,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,RIDEALONG,OT,1,ONG,300.0,STOLEN,4629,"{'type': 'Point', 'coordinates': (-79.32589804, 43.67140105)}"
-4631,3135,GO-20189025693,THEFT UNDER - BICYCLE,2018-07-20T00:00:00,2018,July,Friday,20,201,13,2018-08-09T00:00:00,2018,August,Thursday,9,221,13,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,SIRRUS COMP,RG,10,GRY,1300.0,STOLEN,4630,"{'type': 'Point', 'coordinates': (-79.3275818, 43.68075601)}"
-4632,3151,GO-20189025877,THEFT UNDER,2018-08-10T00:00:00,2018,August,Friday,10,222,5,2018-08-10T00:00:00,2018,August,Friday,10,222,14,D55,Toronto,65,Greenwood-Coxwell (65),"Apartment (Rooming House, Condo)",Apartment,UK,CUSTOM,OT,1,BLK,1200.0,STOLEN,4631,"{'type': 'Point', 'coordinates': (-79.32128430000002, 43.67486395)}"
-4633,3176,GO-20189026077,THEFT UNDER,2018-08-09T00:00:00,2018,August,Thursday,9,221,23,2018-08-12T00:00:00,2018,August,Sunday,12,224,16,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TT,,MT,18,BLK,125.0,STOLEN,4632,"{'type': 'Point', 'coordinates': (-79.32485369, 43.67405485)}"
-4634,3292,GO-20189027553,THEFT UNDER - BICYCLE,2018-08-22T00:00:00,2018,August,Wednesday,22,234,18,2018-08-23T00:00:00,2018,August,Thursday,23,235,10,D55,Toronto,65,Greenwood-Coxwell (65),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,ODT MUDSLIDE,MT,21,BLU,80.0,STOLEN,4633,"{'type': 'Point', 'coordinates': (-79.32328138, 43.6795952)}"
-4635,3319,GO-20189027905,THEFT UNDER - BICYCLE,2018-08-25T00:00:00,2018,August,Saturday,25,237,1,2018-08-25T00:00:00,2018,August,Saturday,25,237,13,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,ELEGANCE 701,RG,21,BLK,500.0,STOLEN,4634,"{'type': 'Point', 'coordinates': (-79.32876002000002, 43.67668917)}"
-4636,3475,GO-20189030521,THEFT UNDER - BICYCLE,2018-09-12T00:00:00,2018,September,Wednesday,12,255,19,2018-09-14T00:00:00,2018,September,Friday,14,257,21,D55,Toronto,65,Greenwood-Coxwell (65),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,JULIET,RG,1,BLK,500.0,STOLEN,4635,"{'type': 'Point', 'coordinates': (-79.31926987, 43.67290749)}"
-4637,3749,GO-20189035263,THEFT UNDER - BICYCLE,2018-10-23T00:00:00,2018,October,Tuesday,23,296,10,2018-10-23T00:00:00,2018,October,Tuesday,23,296,16,D55,Toronto,65,Greenwood-Coxwell (65),Schools During Supervised Activity,Educational,UK,,MT,21,GRY,200.0,STOLEN,4636,"{'type': 'Point', 'coordinates': (-79.32328138, 43.6795952)}"
-4638,4204,GO-2019744685,THEFT UNDER,2019-04-24T00:00:00,2019,April,Wednesday,24,114,17,2019-04-25T00:00:00,2019,April,Thursday,25,115,14,D55,Toronto,65,Greenwood-Coxwell (65),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,,MT,7,BLKBLU,180.0,STOLEN,4637,"{'type': 'Point', 'coordinates': (-79.31926987, 43.67290749)}"
-4639,4319,GO-2019933551,THEFT UNDER,2019-05-22T00:00:00,2019,May,Wednesday,22,142,13,2019-05-22T00:00:00,2019,May,Wednesday,22,142,14,D55,Toronto,65,Greenwood-Coxwell (65),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OPUS,GRID,OT,0,BLKGRY,2500.0,STOLEN,4638,"{'type': 'Point', 'coordinates': (-79.31761906, 43.66609083)}"
-4640,4367,GO-20199016667,THEFT UNDER,2019-05-27T00:00:00,2019,May,Monday,27,147,21,2019-05-28T00:00:00,2019,May,Tuesday,28,148,16,D55,Toronto,65,Greenwood-Coxwell (65),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,ROAD,RG,1,BLU,280.0,STOLEN,4639,"{'type': 'Point', 'coordinates': (-79.31971022, 43.66562158)}"
-4641,4372,GO-20199016822,THEFT UNDER,2019-05-28T00:00:00,2019,May,Tuesday,28,148,12,2019-05-29T00:00:00,2019,May,Wednesday,29,149,15,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,EL,20,,1200.0,STOLEN,4640,"{'type': 'Point', 'coordinates': (-79.31971022, 43.66562158)}"
-4642,4393,GO-20199017083,THEFT UNDER,2019-05-28T00:00:00,2019,May,Tuesday,28,148,9,2019-06-01T00:00:00,2019,June,Saturday,1,152,9,D55,Toronto,65,Greenwood-Coxwell (65),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SU,,MT,18,BLU,100.0,STOLEN,4641,"{'type': 'Point', 'coordinates': (-79.31801480000001, 43.66990354)}"
-4643,4512,GO-20199018875,THEFT UNDER,2019-06-12T00:00:00,2019,June,Wednesday,12,163,21,2019-06-16T00:00:00,2019,June,Sunday,16,167,22,D55,Toronto,65,Greenwood-Coxwell (65),"Apartment (Rooming House, Condo)",Apartment,CC,,MT,21,,0.0,STOLEN,4642,"{'type': 'Point', 'coordinates': (-79.32503489, 43.67157976)}"
-4644,4538,GO-20199019178,THEFT UNDER,2019-06-16T00:00:00,2019,June,Sunday,16,167,23,2019-06-18T00:00:00,2019,June,Tuesday,18,169,22,D55,Toronto,65,Greenwood-Coxwell (65),"Apartment (Rooming House, Condo)",Apartment,OT,LOFT 7I,RG,7,LBL,800.0,STOLEN,4643,"{'type': 'Point', 'coordinates': (-79.32006867000001, 43.66578511)}"
-4645,4692,GO-20199021347,THEFT UNDER,2019-07-07T00:00:00,2019,July,Sunday,7,188,13,2019-07-07T00:00:00,2019,July,Sunday,7,188,16,D55,Toronto,65,Greenwood-Coxwell (65),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RM,METRO 5,OT,24,SIL,550.0,STOLEN,4644,"{'type': 'Point', 'coordinates': (-79.31926987, 43.67290749)}"
-4646,4734,GO-20191289493,THEFT UNDER,2019-07-10T00:00:00,2019,July,Wednesday,10,191,12,2019-07-10T00:00:00,2019,July,Wednesday,10,191,17,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,,RG,0,PLE,150.0,STOLEN,4645,"{'type': 'Point', 'coordinates': (-79.32287486, 43.67208051)}"
-4647,4735,GO-20191289493,THEFT UNDER,2019-07-10T00:00:00,2019,July,Wednesday,10,191,12,2019-07-10T00:00:00,2019,July,Wednesday,10,191,17,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,SANCTUARY 7 CRU,RG,7,PLE,300.0,STOLEN,4646,"{'type': 'Point', 'coordinates': (-79.32287486, 43.67208051)}"
-4648,4736,GO-20191289493,THEFT UNDER,2019-07-10T00:00:00,2019,July,Wednesday,10,191,12,2019-07-10T00:00:00,2019,July,Wednesday,10,191,17,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,SANCTUARY 7 CRU,RG,7,PNK,300.0,STOLEN,4647,"{'type': 'Point', 'coordinates': (-79.32287486, 43.67208051)}"
-4649,5169,GO-20199027728,THEFT FROM MOTOR VEHICLE UNDER,2019-07-28T00:00:00,2019,July,Sunday,28,209,0,2019-08-26T00:00:00,2019,August,Monday,26,238,13,D55,Toronto,65,Greenwood-Coxwell (65),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ANDANTE,RC,21,WHI,2499.0,STOLEN,4648,"{'type': 'Point', 'coordinates': (-79.32471205, 43.67930693)}"
-4650,5213,GO-20199028499,THEFT UNDER,2019-09-02T00:00:00,2019,September,Monday,2,245,11,2019-09-02T00:00:00,2019,September,Monday,2,245,13,D55,Toronto,65,Greenwood-Coxwell (65),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,,OT,7,BLK,400.0,STOLEN,4649,"{'type': 'Point', 'coordinates': (-79.31926987, 43.67290749)}"
-4651,5308,GO-20199029779,THEFT UNDER,2019-09-11T00:00:00,2019,September,Wednesday,11,254,23,2019-09-12T00:00:00,2019,September,Thursday,12,255,15,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,ALPHA DUAL SUSP,MT,21,BLK,649.0,STOLEN,4650,"{'type': 'Point', 'coordinates': (-79.3295907, 43.67650588)}"
-4652,5309,GO-20199029779,THEFT UNDER,2019-09-11T00:00:00,2019,September,Wednesday,11,254,23,2019-09-12T00:00:00,2019,September,Thursday,12,255,15,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,ROVE 3,MT,21,BLK,649.0,STOLEN,4651,"{'type': 'Point', 'coordinates': (-79.3295907, 43.67650588)}"
-4653,5310,GO-20199029779,THEFT UNDER,2019-09-11T00:00:00,2019,September,Wednesday,11,254,23,2019-09-12T00:00:00,2019,September,Thursday,12,255,15,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,TRAILHEAD HARDT,MT,21,RED,659.0,STOLEN,4652,"{'type': 'Point', 'coordinates': (-79.3295907, 43.67650588)}"
-4654,1050,GO-20179011677,THEFT UNDER,2017-08-03T00:00:00,2017,August,Thursday,3,215,18,2017-08-04T00:00:00,2017,August,Friday,4,216,12,D54,Toronto,66,Danforth (66),Ttc Subway Station,Transit,RA,,TO,10,,0.0,STOLEN,5730,"{'type': 'Point', 'coordinates': (-79.33727518, 43.68042137)}"
-4655,5329,GO-20199030143,THEFT UNDER,2019-09-12T00:00:00,2019,September,Thursday,12,255,20,2019-09-15T00:00:00,2019,September,Sunday,15,258,23,D55,Toronto,65,Greenwood-Coxwell (65),Schools During Un-Supervised Activity,Educational,OT,"YOUTH, LARGE",MT,21,BLU,500.0,STOLEN,4653,"{'type': 'Point', 'coordinates': (-79.32287486, 43.67208051)}"
-4656,5371,GO-20199030762,THEFT UNDER,2019-09-19T00:00:00,2019,September,Thursday,19,262,7,2019-09-20T00:00:00,2019,September,Friday,20,263,8,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,7.1 FX,MT,18,BLU,0.0,STOLEN,4654,"{'type': 'Point', 'coordinates': (-79.32429071, 43.67520616)}"
-4657,5403,GO-20199031510,THEFT UNDER,2019-09-25T00:00:00,2019,September,Wednesday,25,268,1,2019-09-25T00:00:00,2019,September,Wednesday,25,268,15,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MA,LARKSPUR,RG,21,SIL,800.0,STOLEN,4655,"{'type': 'Point', 'coordinates': (-79.32547877, 43.66764684)}"
-4658,5417,GO-20191845805,THEFT UNDER,2019-09-25T00:00:00,2019,September,Wednesday,25,268,0,2019-09-25T00:00:00,2019,September,Wednesday,25,268,9,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,MT,21,BLUWHI,380.0,STOLEN,4656,"{'type': 'Point', 'coordinates': (-79.32555059, 43.66505905)}"
-4659,5507,GO-20199033448,THEFT UNDER,2019-10-06T00:00:00,2019,October,Sunday,6,279,21,2019-10-10T00:00:00,2019,October,Thursday,10,283,21,D55,Toronto,65,Greenwood-Coxwell (65),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GENESIS,TRAFIK,OT,24,BLK,750.0,STOLEN,4657,"{'type': 'Point', 'coordinates': (-79.32128430000002, 43.67486395)}"
-4660,5528,GO-20191998423,THEFT UNDER - BICYCLE,2019-10-14T00:00:00,2019,October,Monday,14,287,23,2019-10-16T00:00:00,2019,October,Wednesday,16,289,16,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MARIN,LARKSPUR,TO,21,SIL,1000.0,STOLEN,4658,"{'type': 'Point', 'coordinates': (-79.32395096, 43.67184363)}"
-4661,5529,GO-20191998423,THEFT UNDER - BICYCLE,2019-10-14T00:00:00,2019,October,Monday,14,287,23,2019-10-16T00:00:00,2019,October,Wednesday,16,289,16,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ZZZ,,TO,24,GRN,1000.0,STOLEN,4659,"{'type': 'Point', 'coordinates': (-79.32395096, 43.67184363)}"
-4662,5798,GO-202014564,THEFT UNDER,2020-01-02T00:00:00,2020,January,Thursday,2,2,22,2020-01-03T00:00:00,2020,January,Friday,3,3,7,D55,Toronto,65,Greenwood-Coxwell (65),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CCM,INCLINE,MT,0,BLK,,STOLEN,4660,"{'type': 'Point', 'coordinates': (-79.33180554, 43.68014121)}"
-4663,5799,GO-202014564,THEFT UNDER,2020-01-02T00:00:00,2020,January,Thursday,2,2,22,2020-01-03T00:00:00,2020,January,Friday,3,3,7,D55,Toronto,65,Greenwood-Coxwell (65),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,,RG,0,BLU,,STOLEN,4661,"{'type': 'Point', 'coordinates': (-79.33180554, 43.68014121)}"
-4664,5827,GO-20209001489,THEFT UNDER,2020-01-13T00:00:00,2020,January,Monday,13,13,6,2020-01-14T00:00:00,2020,January,Tuesday,14,14,9,D55,Toronto,65,Greenwood-Coxwell (65),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,2008 7200 WSD,RG,5,GRN,300.0,STOLEN,4662,"{'type': 'Point', 'coordinates': (-79.32659879, 43.66759903)}"
-4665,6000,GO-20209010118,THEFT FROM MOTOR VEHICLE UNDER,2020-02-22T00:00:00,2020,February,Saturday,22,53,0,2020-03-29T00:00:00,2020,March,Sunday,29,89,19,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,HELSINKI,RG,20,WHI,1000.0,STOLEN,4663,"{'type': 'Point', 'coordinates': (-79.32271725, 43.674542130000006)}"
-4666,6001,GO-20209010118,THEFT FROM MOTOR VEHICLE UNDER,2020-02-22T00:00:00,2020,February,Saturday,22,53,0,2020-03-29T00:00:00,2020,March,Sunday,29,89,19,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,BADBOY,MT,10,BLK,800.0,STOLEN,4664,"{'type': 'Point', 'coordinates': (-79.32271725, 43.674542130000006)}"
-4667,6030,GO-20209010598,THEFT UNDER,2020-04-06T00:00:00,2020,April,Monday,6,97,19,2020-04-06T00:00:00,2020,April,Monday,6,97,21,D55,Toronto,65,Greenwood-Coxwell (65),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,2017 HYBRID YOR,RG,21,BRZ,700.0,STOLEN,4665,"{'type': 'Point', 'coordinates': (-79.32621386, 43.67476354)}"
-4668,6093,GO-20209011769,THEFT UNDER,2020-04-22T00:00:00,2020,April,Wednesday,22,113,2,2020-04-23T00:00:00,2020,April,Thursday,23,114,9,D55,Toronto,65,Greenwood-Coxwell (65),"Apartment (Rooming House, Condo)",Apartment,OT,SPECIALIZED,RG,9,PLE,800.0,STOLEN,4666,"{'type': 'Point', 'coordinates': (-79.32526809, 43.66439702)}"
-4669,6344,GO-20201067492,THEFT UNDER - BICYCLE,2020-06-09T00:00:00,2020,June,Tuesday,9,161,18,2020-06-10T00:00:00,2020,June,Wednesday,10,162,12,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,TANGO 6,MT,27,GRY,706.0,STOLEN,4667,"{'type': 'Point', 'coordinates': (-79.32328138, 43.6795952)}"
-4670,2664,GO-20189019981,THEFT UNDER - BICYCLE,2018-06-23T00:00:00,2018,June,Saturday,23,174,16,2018-06-23T00:00:00,2018,June,Saturday,23,174,21,D55,Toronto,63,The Beaches (63),Bar / Restaurant,Commercial,UK,ROUBAIX ELITE,RC,11,,3800.0,STOLEN,4756,"{'type': 'Point', 'coordinates': (-79.32901937, 43.66055266)}"
-4671,6349,GO-20209015051,THEFT UNDER,2020-06-09T00:00:00,2020,June,Tuesday,9,161,22,2020-06-10T00:00:00,2020,June,Wednesday,10,162,10,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,CROSSTRAIL HYDR,MT,21,BLK,927.0,STOLEN,4668,"{'type': 'Point', 'coordinates': (-79.32471205, 43.67930693)}"
-4672,6426,GO-20201120469,B&E,2020-06-18T00:00:00,2020,June,Thursday,18,170,2,2020-06-18T00:00:00,2020,June,Thursday,18,170,11,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,,MT,26,BLU,600.0,STOLEN,4669,"{'type': 'Point', 'coordinates': (-79.31687762, 43.66716081)}"
-4673,6530,GO-20209016821,THEFT UNDER,2020-07-03T00:00:00,2020,July,Friday,3,185,19,2020-07-04T00:00:00,2020,July,Saturday,4,186,2,D55,Toronto,65,Greenwood-Coxwell (65),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CLASSIC PLUS,RG,3,BLK,675.0,STOLEN,4670,"{'type': 'Point', 'coordinates': (-79.32688298, 43.67118651)}"
-4674,6576,GO-20201278473,THEFT UNDER,2020-06-13T00:00:00,2020,June,Saturday,13,165,0,2020-07-10T00:00:00,2020,July,Friday,10,192,16,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OPUS TRITON,,RC,20,BLUSIL,2000.0,STOLEN,4671,"{'type': 'Point', 'coordinates': (-79.32076157, 43.67653289)}"
-4675,6577,GO-20201278473,THEFT UNDER,2020-06-13T00:00:00,2020,June,Saturday,13,165,0,2020-07-10T00:00:00,2020,July,Friday,10,192,16,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,VALENCE,RC,22,BLKYEL,2700.0,STOLEN,4672,"{'type': 'Point', 'coordinates': (-79.32076157, 43.67653289)}"
-4676,6593,GO-20201290814,B&E,2020-07-09T00:00:00,2020,July,Thursday,9,191,0,2020-07-12T00:00:00,2020,July,Sunday,12,194,15,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,,RC,21,BLKWHI,2000.0,STOLEN,4673,"{'type': 'Point', 'coordinates': (-79.32616543, 43.68281145)}"
-4677,6626,GO-20209017613,THEFT UNDER,2020-07-15T00:00:00,2020,July,Wednesday,15,197,3,2020-07-15T00:00:00,2020,July,Wednesday,15,197,11,D55,Toronto,65,Greenwood-Coxwell (65),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,6,BLK,0.0,STOLEN,4674,"{'type': 'Point', 'coordinates': (-79.32974131, 43.682061)}"
-4678,6667,GO-20201343298,THEFT UNDER,2020-07-19T00:00:00,2020,July,Sunday,19,201,14,2020-07-20T00:00:00,2020,July,Monday,20,202,8,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,OT,21,GLD,,STOLEN,4675,"{'type': 'Point', 'coordinates': (-79.32395096, 43.67184363)}"
-4679,6668,GO-20201343298,THEFT UNDER,2020-07-19T00:00:00,2020,July,Sunday,19,201,14,2020-07-20T00:00:00,2020,July,Monday,20,202,8,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,PEUGEOT,,OT,21,RED,,STOLEN,4676,"{'type': 'Point', 'coordinates': (-79.32395096, 43.67184363)}"
-4680,6794,GO-20201413779,B&E,2020-07-28T00:00:00,2020,July,Tuesday,28,210,22,2020-07-29T00:00:00,2020,July,Wednesday,29,211,18,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,UNKNOWN,MT,12,BLKMRN,200.0,STOLEN,4677,"{'type': 'Point', 'coordinates': (-79.3295907, 43.67650588)}"
-4681,6907,GO-20209019716,THEFT UNDER,2020-08-08T00:00:00,2020,August,Saturday,8,221,0,2020-08-08T00:00:00,2020,August,Saturday,8,221,22,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,21,BLK,600.0,STOLEN,4678,"{'type': 'Point', 'coordinates': (-79.32648231000002, 43.68099288)}"
-4682,6908,GO-20209019716,THEFT UNDER,2020-08-08T00:00:00,2020,August,Saturday,8,221,0,2020-08-08T00:00:00,2020,August,Saturday,8,221,22,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,21,BLK,600.0,STOLEN,4679,"{'type': 'Point', 'coordinates': (-79.32648231000002, 43.68099288)}"
-4683,6909,GO-20209019716,THEFT UNDER,2020-08-08T00:00:00,2020,August,Saturday,8,221,0,2020-08-08T00:00:00,2020,August,Saturday,8,221,22,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,21,GRY,700.0,STOLEN,4680,"{'type': 'Point', 'coordinates': (-79.32648231000002, 43.68099288)}"
-4684,6963,GO-20209020277,THEFT UNDER,2020-08-09T00:00:00,2020,August,Sunday,9,222,9,2020-08-15T00:00:00,2020,August,Saturday,15,228,11,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,,MT,1,PLE,175.0,STOLEN,4681,"{'type': 'Point', 'coordinates': (-79.32485369, 43.67405485)}"
-4685,7042,GO-20201585990,B&E W'INTENT,2020-08-23T00:00:00,2020,August,Sunday,23,236,1,2020-08-23T00:00:00,2020,August,Sunday,23,236,11,D55,Toronto,65,Greenwood-Coxwell (65),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OPUS,INTERSECT 3,MT,27,WHI,1112.0,STOLEN,4682,"{'type': 'Point', 'coordinates': (-79.3212511, 43.66529095)}"
-4686,7043,GO-20201585990,B&E W'INTENT,2020-08-23T00:00:00,2020,August,Sunday,23,236,1,2020-08-23T00:00:00,2020,August,Sunday,23,236,11,D55,Toronto,65,Greenwood-Coxwell (65),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OPUS,ROAD BIKE,TO,27,BLK,1155.0,STOLEN,4683,"{'type': 'Point', 'coordinates': (-79.3212511, 43.66529095)}"
-4687,7044,GO-20201585990,B&E W'INTENT,2020-08-23T00:00:00,2020,August,Sunday,23,236,1,2020-08-23T00:00:00,2020,August,Sunday,23,236,11,D55,Toronto,65,Greenwood-Coxwell (65),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,MAMBA,MT,27,,1105.0,STOLEN,4684,"{'type': 'Point', 'coordinates': (-79.3212511, 43.66529095)}"
-4688,7203,GO-20201701498,B&E,2020-09-08T00:00:00,2020,September,Tuesday,8,252,5,2020-09-08T00:00:00,2020,September,Tuesday,8,252,19,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,INDIE 3,TO,1,BLK,1000.0,STOLEN,4685,"{'type': 'Point', 'coordinates': (-79.3212511, 43.66529095)}"
-4689,7262,GO-20209023407,THEFT UNDER,2020-09-07T00:00:00,2020,September,Monday,7,251,4,2020-09-16T00:00:00,2020,September,Wednesday,16,260,12,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RC,21,BLK,700.0,STOLEN,4686,"{'type': 'Point', 'coordinates': (-79.33092053, 43.67798858)}"
-4690,7263,GO-20209023407,THEFT UNDER,2020-09-07T00:00:00,2020,September,Monday,7,251,4,2020-09-16T00:00:00,2020,September,Wednesday,16,260,12,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,8,BLK,650.0,STOLEN,4687,"{'type': 'Point', 'coordinates': (-79.33092053, 43.67798858)}"
-4691,7378,GO-20209024781,THEFT UNDER,2020-09-28T00:00:00,2020,September,Monday,28,272,9,2020-09-28T00:00:00,2020,September,Monday,28,272,13,D55,Toronto,65,Greenwood-Coxwell (65),Schools During Un-Supervised Activity,Educational,GI,,MT,24,BLK,600.0,STOLEN,4688,"{'type': 'Point', 'coordinates': (-79.32471205, 43.67930693)}"
-4692,7379,GO-20209024781,THEFT UNDER,2020-09-28T00:00:00,2020,September,Monday,28,272,9,2020-09-28T00:00:00,2020,September,Monday,28,272,13,D55,Toronto,65,Greenwood-Coxwell (65),Schools During Un-Supervised Activity,Educational,GI,ROVE 3,MT,28,BLK,650.0,STOLEN,4689,"{'type': 'Point', 'coordinates': (-79.32471205, 43.67930693)}"
-4693,7416,GO-20201890336,B&E,2020-10-02T00:00:00,2020,October,Friday,2,276,8,2020-10-05T00:00:00,2020,October,Monday,5,279,12,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,MT,90,SIL,,STOLEN,4690,"{'type': 'Point', 'coordinates': (-79.32210681, 43.67469421)}"
-4694,7499,GO-20209026843,THEFT UNDER,2020-10-18T00:00:00,2020,October,Sunday,18,292,0,2020-10-18T00:00:00,2020,October,Sunday,18,292,10,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,TRAFIK,OT,21,BLK,486.0,STOLEN,4691,"{'type': 'Point', 'coordinates': (-79.32444497, 43.67015214)}"
-4695,7500,GO-20209026843,THEFT UNDER,2020-10-18T00:00:00,2020,October,Sunday,18,292,0,2020-10-18T00:00:00,2020,October,Sunday,18,292,10,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,TRAFIK HYBRID,OT,21,BLK,486.0,STOLEN,4692,"{'type': 'Point', 'coordinates': (-79.32444497, 43.67015214)}"
-4696,7534,GO-20209027495,THEFT UNDER,2020-10-22T00:00:00,2020,October,Thursday,22,296,8,2020-10-23T00:00:00,2020,October,Friday,23,297,20,D55,Toronto,65,Greenwood-Coxwell (65),Schools During Supervised Activity,Educational,GI,,MT,24,BLK,1000.0,STOLEN,4693,"{'type': 'Point', 'coordinates': (-79.32328138, 43.6795952)}"
-4697,7719,GO-20202449278,B&E,2020-12-29T00:00:00,2020,December,Tuesday,29,364,8,2020-12-30T00:00:00,2020,December,Wednesday,30,365,16,D55,Toronto,65,Greenwood-Coxwell (65),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SCHWINN,,MT,21,BLU,,STOLEN,4694,"{'type': 'Point', 'coordinates': (-79.32494156, 43.68149215)}"
-4698,7780,GO-20141694393,THEFT UNDER,2014-03-11T00:00:00,2014,March,Tuesday,11,70,11,2014-03-13T00:00:00,2014,March,Thursday,13,72,17,D55,Toronto,65,Greenwood-Coxwell (65),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OPUS,FLUX 1.0,MT,21,RED,1000.0,STOLEN,4695,"{'type': 'Point', 'coordinates': (-79.31761906, 43.66609083)}"
-4699,7798,GO-20141796490,THEFT UNDER,2014-03-30T00:00:00,2014,March,Sunday,30,89,16,2014-03-30T00:00:00,2014,March,Sunday,30,89,17,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,EMMO,E-BIKE,EL,2,BLU,1050.0,STOLEN,4696,"{'type': 'Point', 'coordinates': (-79.32060131, 43.67503841)}"
-4700,7806,GO-20141821281,THEFT UNDER,2014-04-03T00:00:00,2014,April,Thursday,3,93,6,2014-04-03T00:00:00,2014,April,Thursday,3,93,15,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIO,500 PLUS,EL,4,ONG,650.0,STOLEN,4697,"{'type': 'Point', 'coordinates': (-79.32494156, 43.68149215)}"
-4701,8019,GO-20149003740,THEFT UNDER,2014-05-31T00:00:00,2014,May,Saturday,31,151,23,2014-06-01T00:00:00,2014,June,Sunday,1,152,20,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,KENSINGTON,TO,21,PLE,250.0,STOLEN,4698,"{'type': 'Point', 'coordinates': (-79.3187045, 43.66864445)}"
-4702,8188,GO-20149004235,THEFT UNDER,2014-06-19T00:00:00,2014,June,Thursday,19,170,9,2014-06-19T00:00:00,2014,June,Thursday,19,170,9,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,OT,6,BLK,350.0,STOLEN,4699,"{'type': 'Point', 'coordinates': (-79.32866305, 43.6805326)}"
-4703,8245,GO-20149004417,THEFT UNDER,2014-06-22T00:00:00,2014,June,Sunday,22,173,12,2014-06-24T00:00:00,2014,June,Tuesday,24,175,21,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,DAYTRIPPER,RG,3,BLU,800.0,STOLEN,4700,"{'type': 'Point', 'coordinates': (-79.32234881, 43.66504062)}"
-4704,8374,GO-20142508125,THEFT UNDER,2014-07-12T00:00:00,2014,July,Saturday,12,193,16,2014-07-16T00:00:00,2014,July,Wednesday,16,197,11,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,SPORT,RG,27,GRY,700.0,STOLEN,4701,"{'type': 'Point', 'coordinates': (-79.32550967, 43.68118943)}"
-4705,8430,GO-20142527957,THEFT UNDER,2014-07-18T00:00:00,2014,July,Friday,18,199,23,2014-07-19T00:00:00,2014,July,Saturday,19,200,9,D55,Toronto,65,Greenwood-Coxwell (65),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,WOMAN,MT,5,GRY,500.0,STOLEN,4702,"{'type': 'Point', 'coordinates': (-79.33077081, 43.68037372)}"
-4706,8446,GO-20149005086,THEFT UNDER,2014-07-19T00:00:00,2014,July,Saturday,19,200,10,2014-07-19T00:00:00,2014,July,Saturday,19,200,11,D55,Toronto,65,Greenwood-Coxwell (65),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CHURCHILL VICTO,RG,3,BLK,800.0,STOLEN,4703,"{'type': 'Point', 'coordinates': (-79.31926987, 43.67290749)}"
-4707,8476,GO-20142558527,THEFT UNDER,2014-07-03T00:00:00,2014,July,Thursday,3,184,1,2014-07-23T00:00:00,2014,July,Wednesday,23,204,21,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,EAGLE,,EL,1,,1359.0,STOLEN,4704,"{'type': 'Point', 'coordinates': (-79.32006867000001, 43.66578511)}"
-4708,8485,GO-20142543466,THEFT UNDER,2014-07-21T00:00:00,2014,July,Monday,21,202,14,2014-07-21T00:00:00,2014,July,Monday,21,202,18,D55,Toronto,65,Greenwood-Coxwell (65),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UXWING,RAPTOR,EL,1,DGR,950.0,STOLEN,4705,"{'type': 'Point', 'coordinates': (-79.32594707, 43.66422253)}"
-4709,8550,GO-20142628420,THEFT UNDER,2014-08-03T00:00:00,2014,August,Sunday,3,215,13,2014-08-03T00:00:00,2014,August,Sunday,3,215,13,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BRODIE,,RG,10,YEL,,STOLEN,4706,"{'type': 'Point', 'coordinates': (-79.32526809, 43.66439702)}"
-4710,8713,GO-20149006179,THEFT UNDER,2014-08-14T00:00:00,2014,August,Thursday,14,226,16,2014-08-21T00:00:00,2014,August,Thursday,21,233,16,D55,Toronto,65,Greenwood-Coxwell (65),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,,MT,21,BLU,,STOLEN,4707,"{'type': 'Point', 'coordinates': (-79.32555059, 43.66505905)}"
-4711,9260,GO-20159000247,THEFT UNDER,2015-01-13T00:00:00,2015,January,Tuesday,13,13,8,2015-01-14T00:00:00,2015,January,Wednesday,14,14,9,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,2011 - QUICK 3,OT,9,BLK,1097.0,STOLEN,4708,"{'type': 'Point', 'coordinates': (-79.32895785, 43.66352946)}"
-4712,9297,GO-2015294591,THEFT OVER,2015-02-18T00:00:00,2015,February,Wednesday,18,49,22,2015-02-19T00:00:00,2015,February,Thursday,19,50,11,D55,Toronto,65,Greenwood-Coxwell (65),"Apartment (Rooming House, Condo)",Apartment,KIWI,GFORCE,EL,30,LBL,1000.0,STOLEN,4709,"{'type': 'Point', 'coordinates': (-79.3212511, 43.66529095)}"
-4713,9298,GO-2015294591,THEFT OVER,2015-02-18T00:00:00,2015,February,Wednesday,18,49,22,2015-02-19T00:00:00,2015,February,Thursday,19,50,11,D55,Toronto,65,Greenwood-Coxwell (65),"Apartment (Rooming House, Condo)",Apartment,BISON,,EL,30,BLK,2000.0,STOLEN,4710,"{'type': 'Point', 'coordinates': (-79.3212511, 43.66529095)}"
-4714,9299,GO-2015295477,THEFT UNDER,2015-02-19T00:00:00,2015,February,Thursday,19,50,10,2015-02-19T00:00:00,2015,February,Thursday,19,50,14,D55,Toronto,65,Greenwood-Coxwell (65),"Apartment (Rooming House, Condo)",Apartment,OTHER,KIWI,EL,1,LBL,900.0,STOLEN,4711,"{'type': 'Point', 'coordinates': (-79.3212511, 43.66529095)}"
-4715,9748,GO-2015949312,THEFT UNDER,2015-05-09T00:00:00,2015,May,Saturday,9,129,4,2015-06-06T00:00:00,2015,June,Saturday,6,157,17,D55,Toronto,65,Greenwood-Coxwell (65),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KANE,,OT,27,,500.0,STOLEN,4712,"{'type': 'Point', 'coordinates': (-79.31971022, 43.66562158)}"
-4716,25410,GO-20161978184,THEFT UNDER - BICYCLE,2016-11-07T00:00:00,2016,November,Monday,7,312,0,2016-11-07T00:00:00,2016,November,Monday,7,312,6,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ZYCLE,,OT,1,RED,450.0,STOLEN,4713,"{'type': 'Point', 'coordinates': (-79.30700672, 43.6777419)}"
-4717,25411,GO-20161978184,THEFT UNDER - BICYCLE,2016-11-07T00:00:00,2016,November,Monday,7,312,0,2016-11-07T00:00:00,2016,November,Monday,7,312,6,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,ZYCLE,OT,1,BLK,450.0,STOLEN,4714,"{'type': 'Point', 'coordinates': (-79.30700672, 43.6777419)}"
-4718,25427,GO-20179002381,THEFT UNDER,2017-02-22T00:00:00,2017,February,Wednesday,22,53,11,2017-02-23T00:00:00,2017,February,Thursday,23,54,12,D55,Toronto,62,East End-Danforth (62),Go Station,Transit,OT,ZARNETT,RG,21,BLK,500.0,STOLEN,4715,"{'type': 'Point', 'coordinates': (-79.30088278, 43.68550226)}"
-4719,25440,GO-2017883997,THEFT UNDER - BICYCLE,2017-05-18T00:00:00,2017,May,Thursday,18,138,22,2017-05-19T00:00:00,2017,May,Friday,19,139,14,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MARIN OR MARINO,NAIL TRAIL,MT,24,YELBLU,2500.0,STOLEN,4716,"{'type': 'Point', 'coordinates': (-79.30737973, 43.68606805)}"
-4720,25456,GO-20171188729,B&E,2017-06-25T00:00:00,2017,June,Sunday,25,176,23,2017-07-05T00:00:00,2017,July,Wednesday,5,186,16,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SIXTHREEZERO,XDS CROSS,OT,21,GRY,500.0,STOLEN,4717,"{'type': 'Point', 'coordinates': (-79.31089756000002, 43.68611329)}"
-4721,25512,GO-20173125146,PROPERTY - FOUND,2017-12-03T00:00:00,2017,December,Sunday,3,337,21,2017-12-03T00:00:00,2017,December,Sunday,3,337,21,D55,Toronto,62,East End-Danforth (62),"Open Areas (Lakes, Parks, Rivers)",Outside,TREK,6000,MT,12,DBL,,UNKNOWN,4718,"{'type': 'Point', 'coordinates': (-79.30963163, 43.67818369)}"
-4722,25515,GO-20173163803,THEFT UNDER - BICYCLE,2017-12-03T00:00:00,2017,December,Sunday,3,337,20,2017-12-09T00:00:00,2017,December,Saturday,9,343,15,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK 6500,MENS,RG,2,BLU,,STOLEN,4719,"{'type': 'Point', 'coordinates': (-79.30742332, 43.67866627)}"
-4723,25544,GO-20189017987,THEFT UNDER - BICYCLE,2018-06-08T00:00:00,2018,June,Friday,8,159,16,2018-06-09T00:00:00,2018,June,Saturday,9,160,12,D55,Toronto,62,East End-Danforth (62),Go Station,Transit,NO,,RG,24,ONG,1000.0,STOLEN,4720,"{'type': 'Point', 'coordinates': (-79.30088278, 43.68550226)}"
-4724,25559,GO-20181246962,B&E,2018-07-08T00:00:00,2018,July,Sunday,8,189,12,2018-07-09T00:00:00,2018,July,Monday,9,190,9,D55,Toronto,62,East End-Danforth (62),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,TARMAC S-WORKS,RC,11,YEL,5000.0,STOLEN,4721,"{'type': 'Point', 'coordinates': (-79.30917735, 43.68567653)}"
-4725,25582,GO-20181650339,THEFT UNDER,2018-08-26T00:00:00,2018,August,Sunday,26,238,20,2018-09-06T00:00:00,2018,September,Thursday,6,249,12,D55,Toronto,62,East End-Danforth (62),"Apartment (Rooming House, Condo)",Apartment,KONA\,,MT,24,,1100.0,STOLEN,4722,"{'type': 'Point', 'coordinates': (-79.30724223, 43.67447391)}"
-4726,25585,GO-20189030457,THEFT UNDER - BICYCLE,2018-09-15T00:00:00,2018,September,Saturday,15,258,3,2018-09-15T00:00:00,2018,September,Saturday,15,258,17,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,BI,,MT,21,WHI,200.0,STOLEN,4723,"{'type': 'Point', 'coordinates': (-79.29411718, 43.68710073)}"
-4727,25586,GO-20189030457,THEFT UNDER - BICYCLE,2018-09-15T00:00:00,2018,September,Saturday,15,258,3,2018-09-15T00:00:00,2018,September,Saturday,15,258,17,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RA,,MT,21,WHI,100.0,STOLEN,4724,"{'type': 'Point', 'coordinates': (-79.29411718, 43.68710073)}"
-4728,25612,GO-2019138225,THEFT FROM MOTOR VEHICLE UNDER,2019-01-19T00:00:00,2019,January,Saturday,19,19,16,2019-01-23T00:00:00,2019,January,Wednesday,23,23,17,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,,MT,21,BLKGRN,1000.0,STOLEN,4725,"{'type': 'Point', 'coordinates': (-79.30998764, 43.6790374)}"
-4729,25658,GO-20199025944,THEFT UNDER,2019-08-11T00:00:00,2019,August,Sunday,11,223,18,2019-08-12T00:00:00,2019,August,Monday,12,224,18,D54,Toronto,62,East End-Danforth (62),Go Station,Transit,GI,ESCAPE 2018,RG,27,,500.0,STOLEN,4726,"{'type': 'Point', 'coordinates': (-79.3017916, 43.68814492)}"
-4730,25697,GO-2020442253,B&E,2020-02-17T00:00:00,2020,February,Monday,17,48,0,2020-03-02T00:00:00,2020,March,Monday,2,62,14,D55,Toronto,62,East End-Danforth (62),"Apartment (Rooming House, Condo)",Apartment,CANNONDALE,,RG,24,BLK,,STOLEN,4727,"{'type': 'Point', 'coordinates': (-79.29583159, 43.67938411)}"
-4731,25698,GO-2020442253,B&E,2020-02-17T00:00:00,2020,February,Monday,17,48,0,2020-03-02T00:00:00,2020,March,Monday,2,62,14,D55,Toronto,62,East End-Danforth (62),"Apartment (Rooming House, Condo)",Apartment,GIANT,TALON,MT,24,BLK,,STOLEN,4728,"{'type': 'Point', 'coordinates': (-79.29583159, 43.67938411)}"
-4732,25760,GO-20209020375,THEFT UNDER,2020-08-15T00:00:00,2020,August,Saturday,15,228,23,2020-08-17T00:00:00,2020,August,Monday,17,230,14,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,MT,1,,350.0,STOLEN,4729,"{'type': 'Point', 'coordinates': (-79.30917735, 43.68567653)}"
-4733,25764,GO-20209021212,THEFT UNDER,2020-08-20T00:00:00,2020,August,Thursday,20,233,0,2020-08-25T00:00:00,2020,August,Tuesday,25,238,3,D55,Toronto,62,East End-Danforth (62),"Apartment (Rooming House, Condo)",Apartment,CC,CCM EXCURSION M,OT,24,SIL,500.0,STOLEN,4730,"{'type': 'Point', 'coordinates': (-79.30729606, 43.68693699)}"
-4734,25784,GO-20209025138,THEFT UNDER,2020-10-01T00:00:00,2020,October,Thursday,1,275,8,2020-10-01T00:00:00,2020,October,Thursday,1,275,14,D54,Toronto,62,East End-Danforth (62),"Apartment (Rooming House, Condo)",Apartment,UK,FOLDING BIKE,FO,12,RED,300.0,STOLEN,4731,"{'type': 'Point', 'coordinates': (-79.30093674, 43.68940767)}"
-4735,25796,GO-20209028661,THEFT UNDER,2020-10-31T00:00:00,2020,October,Saturday,31,305,22,2020-11-04T00:00:00,2020,November,Wednesday,4,309,19,D55,Toronto,62,East End-Danforth (62),"Apartment (Rooming House, Condo)",Apartment,CC,,MT,18,RED,300.0,STOLEN,4732,"{'type': 'Point', 'coordinates': (-79.29602309, 43.6894511)}"
-4736,2,GO-20169014493,THEFT UNDER - BICYCLE,2016-12-07T00:00:00,2016,December,Wednesday,7,342,10,2016-12-10T00:00:00,2016,December,Saturday,10,345,17,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,HF,WICKED MOOSE,OT,1,GRY,250.0,STOLEN,4733,"{'type': 'Point', 'coordinates': (-79.30915558, 43.66798981)}"
-4737,15,GO-20169014662,POSSESSION PROPERTY OBC OVER,2016-12-09T00:00:00,2016,December,Friday,9,344,23,2016-12-14T00:00:00,2016,December,Wednesday,14,349,21,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,30,OTH,830.0,STOLEN,4734,"{'type': 'Point', 'coordinates': (-79.30295345, 43.66702426)}"
-4738,30,GO-20169015027,THEFT UNDER - BICYCLE,2016-12-22T00:00:00,2016,December,Thursday,22,357,22,2016-12-23T00:00:00,2016,December,Friday,23,358,15,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,AXIS SL2,RC,20,BLK,1200.0,STOLEN,4735,"{'type': 'Point', 'coordinates': (-79.30295345, 43.66702426)}"
-4739,225,GO-2017669939,THEFT UNDER - BICYCLE,2017-04-09T00:00:00,2017,April,Sunday,9,99,12,2017-04-16T00:00:00,2017,April,Sunday,16,106,17,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CANNONDALE,,RC,21,BLU,3000.0,STOLEN,4736,"{'type': 'Point', 'coordinates': (-79.28496237, 43.67823917)}"
-4740,226,GO-2017669939,THEFT UNDER - BICYCLE,2017-04-09T00:00:00,2017,April,Sunday,9,99,12,2017-04-16T00:00:00,2017,April,Sunday,16,106,17,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KONA,,RG,21,BLK,1200.0,STOLEN,4737,"{'type': 'Point', 'coordinates': (-79.28496237, 43.67823917)}"
-4741,346,GO-2017815813,B&E,2017-05-09T00:00:00,2017,May,Tuesday,9,129,0,2017-05-09T00:00:00,2017,May,Tuesday,9,129,12,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,SCOTT,,MT,18,,3000.0,STOLEN,4738,"{'type': 'Point', 'coordinates': (-79.30800813, 43.66824442)}"
-4742,522,GO-2017984314,THEFT UNDER - BICYCLE,2017-06-03T00:00:00,2017,June,Saturday,3,154,13,2017-06-03T00:00:00,2017,June,Saturday,3,154,14,D55,Toronto,63,The Beaches (63),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,OT,0,,,STOLEN,4739,"{'type': 'Point', 'coordinates': (-79.30971285, 43.66339578)}"
-4743,860,GO-20179010196,THEFT UNDER - BICYCLE,2017-07-14T00:00:00,2017,July,Friday,14,195,2,2017-07-14T00:00:00,2017,July,Friday,14,195,14,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,24,WHI,600.0,STOLEN,4740,"{'type': 'Point', 'coordinates': (-79.28775467, 43.67650964)}"
-4744,908,GO-20179010523,THEFT UNDER,2017-07-18T00:00:00,2017,July,Tuesday,18,199,22,2017-07-19T00:00:00,2017,July,Wednesday,19,200,10,D55,Toronto,63,The Beaches (63),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,MA,SAN RAFAEL,RG,21,GRY,580.0,STOLEN,4741,"{'type': 'Point', 'coordinates': (-79.29348746, 43.67139937)}"
-4745,954,GO-20179010889,THEFT UNDER,2017-07-23T00:00:00,2017,July,Sunday,23,204,0,2017-07-24T00:00:00,2017,July,Monday,24,205,7,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,,OT,1,BLK,600.0,STOLEN,4742,"{'type': 'Point', 'coordinates': (-79.30904711, 43.67286837)}"
-4746,1111,GO-20171448068,PROPERTY - FOUND,2017-08-10T00:00:00,2017,August,Thursday,10,222,22,2017-08-11T00:00:00,2017,August,Friday,11,223,15,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,MT,10,DBL,,UNKNOWN,4743,"{'type': 'Point', 'coordinates': (-79.30469992, 43.66622023)}"
-4747,1112,GO-20179012090,THEFT UNDER - BICYCLE,2017-08-08T00:00:00,2017,August,Tuesday,8,220,19,2017-08-10T00:00:00,2017,August,Thursday,10,222,14,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,OSLO,RG,18,GRY,1800.0,STOLEN,4744,"{'type': 'Point', 'coordinates': (-79.2918831, 43.67417053)}"
-4748,1168,GO-20171487085,ASSAULT,2017-08-17T00:00:00,2017,August,Thursday,17,229,16,2017-08-17T00:00:00,2017,August,Thursday,17,229,18,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,UNKNOWN,OT,0,GRN,300.0,STOLEN,4745,"{'type': 'Point', 'coordinates': (-79.3049279, 43.67282534)}"
-4749,1350,GO-20179014360,THEFT UNDER,2017-09-09T00:00:00,2017,September,Saturday,9,252,18,2017-09-09T00:00:00,2017,September,Saturday,9,252,20,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,SAMURAI,MT,1,ONG,319.0,STOLEN,4746,"{'type': 'Point', 'coordinates': (-79.30295345, 43.66702426)}"
-4750,1898,GO-20173090010,THEFT OF MOTOR VEHICLE,2017-11-23T00:00:00,2017,November,Thursday,23,327,22,2017-11-28T00:00:00,2017,November,Tuesday,28,332,18,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,EMMO,SCOOTER,EL,1,BLK,2500.0,STOLEN,4747,"{'type': 'Point', 'coordinates': (-79.28117652, 43.6739536)}"
-4751,1899,GO-20173102191,THEFT UNDER,2017-11-23T00:00:00,2017,November,Thursday,23,327,22,2017-11-30T00:00:00,2017,November,Thursday,30,334,14,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,,OT,12,BLU,775.0,STOLEN,4748,"{'type': 'Point', 'coordinates': (-79.28117652, 43.6739536)}"
-4752,2029,GO-20189004515,THEFT UNDER - BICYCLE,2018-02-07T00:00:00,2018,February,Wednesday,7,38,13,2018-02-13T00:00:00,2018,February,Tuesday,13,44,14,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,CA,,TO,24,BLK,1500.0,STOLEN,4749,"{'type': 'Point', 'coordinates': (-79.30082686, 43.6698443)}"
-4753,2082,GO-2018493523,THEFT UNDER,2018-03-17T00:00:00,2018,March,Saturday,17,76,0,2018-03-18T00:00:00,2018,March,Sunday,18,77,16,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,,RC,18,BLK,1500.0,STOLEN,4750,"{'type': 'Point', 'coordinates': (-79.28598482, 43.67801056)}"
-4754,2083,GO-2018493523,THEFT UNDER,2018-03-17T00:00:00,2018,March,Saturday,17,76,0,2018-03-18T00:00:00,2018,March,Sunday,18,77,16,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,,RC,18,WHI,1500.0,STOLEN,4751,"{'type': 'Point', 'coordinates': (-79.28598482, 43.67801056)}"
-4755,2084,GO-2018493523,THEFT UNDER,2018-03-17T00:00:00,2018,March,Saturday,17,76,0,2018-03-18T00:00:00,2018,March,Sunday,18,77,16,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,DEVINCI,,OT,24,BLK,850.0,STOLEN,4752,"{'type': 'Point', 'coordinates': (-79.28598482, 43.67801056)}"
-4756,2124,GO-2018572995,THEFT UNDER,2018-03-29T00:00:00,2018,March,Thursday,29,88,0,2018-03-30T00:00:00,2018,March,Friday,30,89,18,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,SCHWINN,MOAB,MT,9,BLKONG,2100.0,STOLEN,4753,"{'type': 'Point', 'coordinates': (-79.28906311, 43.67015691000001)}"
-4757,2528,GO-20189018209,THEFT UNDER - BICYCLE,2018-06-11T00:00:00,2018,June,Monday,11,162,9,2018-06-11T00:00:00,2018,June,Monday,11,162,12,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,,CRUISER FIXED G,OT,1,PLE,300.0,STOLEN,4754,"{'type': 'Point', 'coordinates': (-79.304605, 43.669000350000005)}"
-4758,2591,GO-20189018979,THEFT UNDER,2018-06-15T00:00:00,2018,June,Friday,15,166,22,2018-06-16T00:00:00,2018,June,Saturday,16,167,19,D55,Toronto,63,The Beaches (63),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ELEGANCE 703,RG,21,GRY,500.0,STOLEN,4755,"{'type': 'Point', 'coordinates': (-79.30186572, 43.66961806)}"
-4759,2673,GO-20189020094,THEFT UNDER - BICYCLE,2018-06-01T00:00:00,2018,June,Friday,1,152,7,2018-06-25T00:00:00,2018,June,Monday,25,176,8,D55,Toronto,63,The Beaches (63),Go Station,Transit,OT,MIELLI,MT,21,ONG,565.0,STOLEN,4757,"{'type': 'Point', 'coordinates': (-79.28754184, 43.67263381)}"
-4760,2682,GO-20189020241,THEFT UNDER - BICYCLE,2018-06-25T00:00:00,2018,June,Monday,25,176,16,2018-06-25T00:00:00,2018,June,Monday,25,176,17,D55,Toronto,63,The Beaches (63),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SOLEIST,RG,1,BLK,500.0,STOLEN,4758,"{'type': 'Point', 'coordinates': (-79.31029568, 43.66773066)}"
-4761,2766,GO-20189021379,THEFT UNDER - BICYCLE,2018-07-05T00:00:00,2018,July,Thursday,5,186,14,2018-07-05T00:00:00,2018,July,Thursday,5,186,22,D55,Toronto,63,The Beaches (63),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RA,ALYYSA1,RG,20,BLK,400.0,STOLEN,4759,"{'type': 'Point', 'coordinates': (-79.32901937, 43.66055266)}"
-4762,2859,GO-20189022713,THEFT UNDER - BICYCLE,2018-07-15T00:00:00,2018,July,Sunday,15,196,0,2018-07-17T00:00:00,2018,July,Tuesday,17,198,0,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,PR,,RG,10,BLU,300.0,STOLEN,4760,"{'type': 'Point', 'coordinates': (-79.3071757, 43.67221054)}"
-4763,3085,GO-20189025212,THEFT UNDER - BICYCLE,2018-08-05T00:00:00,2018,August,Sunday,5,217,15,2018-08-05T00:00:00,2018,August,Sunday,5,217,18,D55,Toronto,63,The Beaches (63),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RA,,MT,15,GRY,550.0,STOLEN,4761,"{'type': 'Point', 'coordinates': (-79.31481084000002, 43.66673892000001)}"
-4764,3086,GO-20189025212,THEFT UNDER - BICYCLE,2018-08-05T00:00:00,2018,August,Sunday,5,217,15,2018-08-05T00:00:00,2018,August,Sunday,5,217,18,D55,Toronto,63,The Beaches (63),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,,MT,15,BLU,1000.0,STOLEN,4762,"{'type': 'Point', 'coordinates': (-79.31481084000002, 43.66673892000001)}"
-4765,3309,GO-20189027757,THEFT FROM MOTOR VEHICLE UNDER,2018-08-23T00:00:00,2018,August,Thursday,23,235,0,2018-08-24T00:00:00,2018,August,Friday,24,236,13,D55,Toronto,63,The Beaches (63),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,18 ESCAPE JR,MT,24,BLK,486.0,STOLEN,4763,"{'type': 'Point', 'coordinates': (-79.30724223, 43.67447391)}"
-4766,3427,GO-20189029624,THEFT UNDER - BICYCLE,2018-09-07T00:00:00,2018,September,Friday,7,250,20,2018-09-08T00:00:00,2018,September,Saturday,8,251,18,D55,Toronto,63,The Beaches (63),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,CROSSROAD SPORT,RG,24,BLK,600.0,STOLEN,4764,"{'type': 'Point', 'coordinates': (-79.32901937, 43.66055266)}"
-4767,3502,GO-20189030947,THEFT UNDER - BICYCLE,2018-09-16T00:00:00,2018,September,Sunday,16,259,0,2018-09-18T00:00:00,2018,September,Tuesday,18,261,10,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,RG,18,BLU,1000.0,STOLEN,4765,"{'type': 'Point', 'coordinates': (-79.2892718, 43.68000987)}"
-4768,3606,GO-20189032742,THEFT UNDER - BICYCLE,2018-09-06T00:00:00,2018,September,Thursday,6,249,23,2018-10-03T00:00:00,2018,October,Wednesday,3,276,10,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,ROCKET,SC,1,BLU,250.0,STOLEN,4766,"{'type': 'Point', 'coordinates': (-79.29142431, 43.67582895)}"
-4769,3724,GO-20189034541,THEFT UNDER - BICYCLE,2018-10-17T00:00:00,2018,October,Wednesday,17,290,18,2018-10-18T00:00:00,2018,October,Thursday,18,291,11,D55,Toronto,63,The Beaches (63),"Religious Facilities (Synagogue, Church, Convent, Mosque)",Other,TR,,RG,21,LBL,0.0,STOLEN,4767,"{'type': 'Point', 'coordinates': (-79.2870473, 43.68053895)}"
-4770,3782,GO-20189036118,THEFT UNDER - BICYCLE,2018-10-26T00:00:00,2018,October,Friday,26,299,22,2018-10-29T00:00:00,2018,October,Monday,29,302,22,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,TR,,RG,7,BLK,500.0,STOLEN,4768,"{'type': 'Point', 'coordinates': (-79.29987616, 43.67851223)}"
-4771,3846,GO-20182090749,THEFT UNDER,2018-11-13T00:00:00,2018,November,Tuesday,13,317,4,2018-11-13T00:00:00,2018,November,Tuesday,13,317,7,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,,RC,21,BLUWHI,3000.0,STOLEN,4769,"{'type': 'Point', 'coordinates': (-79.2948456, 43.67700604)}"
-4772,4415,GO-20199017511,THEFT UNDER,2019-06-05T00:00:00,2019,June,Wednesday,5,156,13,2019-06-05T00:00:00,2019,June,Wednesday,5,156,15,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,TR,LEXA,RC,22,RED,3000.0,STOLEN,4770,"{'type': 'Point', 'coordinates': (-79.30219567, 43.66955978)}"
-4773,4684,GO-20199021249,THEFT UNDER,2019-07-06T00:00:00,2019,July,Saturday,6,187,17,2019-07-06T00:00:00,2019,July,Saturday,6,187,18,D55,Toronto,63,The Beaches (63),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,TALON,MT,30,BLK,500.0,STOLEN,4771,"{'type': 'Point', 'coordinates': (-79.32901937, 43.66055266)}"
-4774,4700,GO-20199021249,THEFT UNDER,2019-07-06T00:00:00,2019,July,Saturday,6,187,17,2019-07-06T00:00:00,2019,July,Saturday,6,187,18,D55,Toronto,63,The Beaches (63),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,,MT,30,BLK,0.0,STOLEN,4772,"{'type': 'Point', 'coordinates': (-79.32901937, 43.66055266)}"
-4775,5086,GO-20199026402,THEFT UNDER,2019-08-13T00:00:00,2019,August,Tuesday,13,225,21,2019-08-15T00:00:00,2019,August,Thursday,15,227,20,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,RG,21,,400.0,STOLEN,4773,"{'type': 'Point', 'coordinates': (-79.30157426, 43.67437094)}"
-4776,5100,GO-20191552501,THEFT UNDER - BICYCLE,2019-08-15T00:00:00,2019,August,Thursday,15,227,12,2019-08-15T00:00:00,2019,August,Thursday,15,227,20,D55,Toronto,63,The Beaches (63),"Open Areas (Lakes, Parks, Rivers)",Outside,DEVINCI,ST TROPEZ,RG,12,GRYBLU,600.0,STOLEN,4774,"{'type': 'Point', 'coordinates': (-79.31482799, 43.66227291)}"
-4777,5119,GO-20191593451,THEFT FROM MOTOR VEHICLE OVER,2019-08-16T00:00:00,2019,August,Friday,16,228,22,2019-08-21T00:00:00,2019,August,Wednesday,21,233,15,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,ROUBAIX ELITE,OT,0,,9500.0,STOLEN,4775,"{'type': 'Point', 'coordinates': (-79.29956015, 43.67770284)}"
-4778,5144,GO-20199027418,THEFT UNDER,2019-08-23T00:00:00,2019,August,Friday,23,235,8,2019-08-23T00:00:00,2019,August,Friday,23,235,14,D55,Toronto,63,The Beaches (63),"Open Areas (Lakes, Parks, Rivers)",Outside,NO,NORCO,RC,10,GRN,2000.0,STOLEN,4776,"{'type': 'Point', 'coordinates': (-79.29797652, 43.67046133)}"
-4779,5170,GO-20199027758,THEFT UNDER,2019-08-25T00:00:00,2019,August,Sunday,25,237,23,2019-08-26T00:00:00,2019,August,Monday,26,238,14,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,RG,7,DBL,400.0,STOLEN,4777,"{'type': 'Point', 'coordinates': (-79.2906355, 43.6785827)}"
-4780,5274,GO-20199029230,THEFT UNDER,2019-09-08T00:00:00,2019,September,Sunday,8,251,17,2019-09-08T00:00:00,2019,September,Sunday,8,251,22,D55,Toronto,63,The Beaches (63),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,SPRITE 27,RG,10,GRN,550.0,STOLEN,4778,"{'type': 'Point', 'coordinates': (-79.29797652, 43.67046133)}"
-4781,5325,GO-20199030072,THEFT UNDER,2019-09-15T00:00:00,2019,September,Sunday,15,258,6,2019-09-15T00:00:00,2019,September,Sunday,15,258,17,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,HUDSON,TO,7,BLK,0.0,STOLEN,4779,"{'type': 'Point', 'coordinates': (-79.30643537, 43.67043507)}"
-4782,5331,GO-20191777656,THEFT UNDER - BICYCLE,2019-09-15T00:00:00,2019,September,Sunday,15,258,12,2019-09-16T00:00:00,2019,September,Monday,16,259,8,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,,OT,24,SILBLU,750.0,STOLEN,4780,"{'type': 'Point', 'coordinates': (-79.30295345, 43.66702426)}"
-4783,5332,GO-20191777656,THEFT UNDER - BICYCLE,2019-09-15T00:00:00,2019,September,Sunday,15,258,12,2019-09-16T00:00:00,2019,September,Monday,16,259,8,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OPUS,,OT,21,BLK,750.0,STOLEN,4781,"{'type': 'Point', 'coordinates': (-79.30295345, 43.66702426)}"
-4784,5343,GO-20191777656,THEFT UNDER - BICYCLE,2019-09-15T00:00:00,2019,September,Sunday,15,258,12,2019-09-16T00:00:00,2019,September,Monday,16,259,8,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,,OT,24,SIL,,STOLEN,4782,"{'type': 'Point', 'coordinates': (-79.30295345, 43.66702426)}"
-4785,5344,GO-20191777656,THEFT UNDER - BICYCLE,2019-09-15T00:00:00,2019,September,Sunday,15,258,12,2019-09-16T00:00:00,2019,September,Monday,16,259,8,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,OT,21,BLK,,STOLEN,4783,"{'type': 'Point', 'coordinates': (-79.30295345, 43.66702426)}"
-4786,5349,GO-20199030340,THEFT UNDER,2019-09-17T00:00:00,2019,September,Tuesday,17,260,5,2019-09-17T00:00:00,2019,September,Tuesday,17,260,12,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,SEEK 0,TO,8,GRY,2500.0,STOLEN,4784,"{'type': 'Point', 'coordinates': (-79.30520081, 43.67357575)}"
-4787,5412,GO-20199031588,THEFT UNDER,2019-09-26T00:00:00,2019,September,Thursday,26,269,5,2019-09-26T00:00:00,2019,September,Thursday,26,269,11,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,AGGRESSOR,MT,27,BLK,500.0,STOLEN,4785,"{'type': 'Point', 'coordinates': (-79.30376909, 43.67390191)}"
-4788,5524,GO-20199033871,THEFT UNDER,2019-10-12T00:00:00,2019,October,Saturday,12,285,22,2019-10-14T00:00:00,2019,October,Monday,14,287,18,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RA,INFERNO,RG,21,BLK,300.0,STOLEN,4786,"{'type': 'Point', 'coordinates': (-79.28304118, 43.67357992)}"
-4789,5541,GO-20199034276,THEFT UNDER,2019-10-17T00:00:00,2019,October,Thursday,17,290,16,2019-10-17T00:00:00,2019,October,Thursday,17,290,19,D55,Toronto,63,The Beaches (63),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,ST-TROPEZ,MT,10,SIL,700.0,STOLEN,4787,"{'type': 'Point', 'coordinates': (-79.30104916, 43.66768758)}"
-4790,5605,GO-20192083918,B&E,2019-10-26T00:00:00,2019,October,Saturday,26,299,5,2019-10-28T00:00:00,2019,October,Monday,28,301,18,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,OT,18,,0.0,STOLEN,4788,"{'type': 'Point', 'coordinates': (-79.30219567, 43.66955978)}"
-4791,5606,GO-20192083918,B&E,2019-10-26T00:00:00,2019,October,Saturday,26,299,5,2019-10-28T00:00:00,2019,October,Monday,28,301,18,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,OT,18,,0.0,STOLEN,4789,"{'type': 'Point', 'coordinates': (-79.30219567, 43.66955978)}"
-4792,5774,GO-20199041571,THEFT UNDER,2019-12-19T00:00:00,2019,December,Thursday,19,353,21,2019-12-20T00:00:00,2019,December,Friday,20,354,15,D55,Toronto,63,The Beaches (63),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,MT,10,BLK,1000.0,STOLEN,4790,"{'type': 'Point', 'coordinates': (-79.30469992, 43.66622023)}"
-4793,5885,GO-2020288870,B&E,2020-02-04T00:00:00,2020,February,Tuesday,4,35,3,2020-02-10T00:00:00,2020,February,Monday,10,41,14,D55,Toronto,63,The Beaches (63),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UNKNOWN MAKE,,MT,15,BLK,1000.0,STOLEN,4791,"{'type': 'Point', 'coordinates': (-79.29798392000001, 43.67888482)}"
-4794,5903,GO-20209005825,THEFT UNDER,2020-01-01T00:00:00,2020,January,Wednesday,1,1,0,2020-02-18T00:00:00,2020,February,Tuesday,18,49,10,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,OTHER,MATTE BLACK PIX,RC,18,BLK,1500.0,STOLEN,4792,"{'type': 'Point', 'coordinates': (-79.29798392000001, 43.67888482)}"
-4795,6055,GO-20209010989,THEFT UNDER,2020-04-11T00:00:00,2020,April,Saturday,11,102,1,2020-04-12T00:00:00,2020,April,Sunday,12,103,18,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,THRESHOLD,TO,10,BLK,1534.0,STOLEN,4793,"{'type': 'Point', 'coordinates': (-79.28235036, 43.67372113)}"
-4796,6190,GO-2020902385,B&E,2020-05-11T00:00:00,2020,May,Monday,11,132,22,2020-05-15T00:00:00,2020,May,Friday,15,136,16,D55,Toronto,63,The Beaches (63),"Apartment (Rooming House, Condo)",Apartment,GT,MOUNTAIN BIKE,MT,10,WHI,250.0,STOLEN,4794,"{'type': 'Point', 'coordinates': (-79.31140037, 43.66749248)}"
-4797,6378,GO-20209015308,THEFT UNDER,2020-06-13T00:00:00,2020,June,Saturday,13,165,22,2020-06-14T00:00:00,2020,June,Sunday,14,166,15,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,PARADISO MEDIUM,MT,21,BLU,499.0,STOLEN,4795,"{'type': 'Point', 'coordinates': (-79.28718029, 43.67175018)}"
-4798,6379,GO-20209015308,THEFT UNDER,2020-06-13T00:00:00,2020,June,Saturday,13,165,22,2020-06-14T00:00:00,2020,June,Sunday,14,166,15,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,GT AGGRESSOR SP,MT,21,BLU,499.0,STOLEN,4796,"{'type': 'Point', 'coordinates': (-79.28718029, 43.67175018)}"
-4799,6380,GO-20209015308,THEFT UNDER,2020-06-13T00:00:00,2020,June,Saturday,13,165,22,2020-06-14T00:00:00,2020,June,Sunday,14,166,15,D55,Toronto,63,The Beaches (63),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,GT AGGRESSOR,MT,21,BLU,499.0,STOLEN,4797,"{'type': 'Point', 'coordinates': (-79.28718029, 43.67175018)}"
-4800,6454,GO-20209016068,THEFT UNDER,2020-06-23T00:00:00,2020,June,Tuesday,23,175,16,2020-06-23T00:00:00,2020,June,Tuesday,23,175,17,D55,Toronto,63,The Beaches (63),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,4130 (OR SIMILA,OT,1,BLK,622.0,STOLEN,4798,"{'type': 'Point', 'coordinates': (-79.31007432, 43.66428057)}"
-4801,15882,GO-20142424690,THEFT UNDER,2014-07-03T00:00:00,2014,July,Thursday,3,184,17,2014-07-03T00:00:00,2014,July,Thursday,3,184,20,D55,Toronto,61,Taylor-Massey (61),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GIANT,,OT,15,BLK,500.0,STOLEN,4799,"{'type': 'Point', 'coordinates': (-79.28831806, 43.69123147)}"
-4802,15925,GO-2015120014,THEFT UNDER,2015-01-19T00:00:00,2015,January,Monday,19,19,18,2015-01-21T00:00:00,2015,January,Wednesday,21,21,10,D54,Toronto,61,Taylor-Massey (61),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KONA KILAUEA,,MT,18,GRN,1300.0,STOLEN,4800,"{'type': 'Point', 'coordinates': (-79.29473219, 43.70006581)}"
-4803,16068,GO-20201604076,THEFT UNDER - BICYCLE,2020-08-25T00:00:00,2020,August,Tuesday,25,238,18,2020-08-25T00:00:00,2020,August,Tuesday,25,238,19,D55,Toronto,61,Taylor-Massey (61),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SCHWINN,,MT,7,REDWHI,900.0,STOLEN,4801,"{'type': 'Point', 'coordinates': (-79.28831806, 43.69123147)}"
-4804,18747,GO-20209021354,THEFT UNDER,2020-08-25T00:00:00,2020,August,Tuesday,25,238,18,2020-08-25T00:00:00,2020,August,Tuesday,25,238,22,D55,Toronto,61,Taylor-Massey (61),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,GIANT LIV,MT,27,WHI,759.0,STOLEN,4802,"{'type': 'Point', 'coordinates': (-79.28831806, 43.69123147)}"
-4805,18765,GO-20209026357,THEFT UNDER,2020-10-13T00:00:00,2020,October,Tuesday,13,287,17,2020-10-13T00:00:00,2020,October,Tuesday,13,287,18,D54,Toronto,61,Taylor-Massey (61),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,PINNACLE,MT,21,BLK,250.0,STOLEN,4803,"{'type': 'Point', 'coordinates': (-79.30232936, 43.69261241)}"
-4806,18884,GO-2015728167,THEFT UNDER,2015-04-03T00:00:00,2015,April,Friday,3,93,0,2015-05-02T00:00:00,2015,May,Saturday,2,122,14,D54,Toronto,61,Taylor-Massey (61),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,SPEED BIKE,OT,21,DBL,400.0,STOLEN,4804,"{'type': 'Point', 'coordinates': (-79.29718776, 43.69354148)}"
-4807,18968,GO-2016717929,THEFT UNDER - BICYCLE,2016-04-24T00:00:00,2016,April,Sunday,24,115,18,2016-04-27T00:00:00,2016,April,Wednesday,27,118,12,D54,Toronto,61,Taylor-Massey (61),"Apartment (Rooming House, Condo)",Apartment,DAYMAK,VIENNA,EL,0,BLK,1000.0,STOLEN,4805,"{'type': 'Point', 'coordinates': (-79.29181642, 43.69575899)}"
-4808,19160,GO-2018898470,THEFT UNDER,2018-05-18T00:00:00,2018,May,Friday,18,138,14,2018-05-21T00:00:00,2018,May,Monday,21,141,20,D55,Toronto,61,Taylor-Massey (61),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,1700,SC,1,RED,3800.0,STOLEN,4806,"{'type': 'Point', 'coordinates': (-79.28831806, 43.69123147)}"
-4809,19178,GO-20189022374,THEFT UNDER,2018-07-12T00:00:00,2018,July,Thursday,12,193,7,2018-07-14T00:00:00,2018,July,Saturday,14,195,9,D54,Toronto,61,Taylor-Massey (61),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,OT,1,ONG,200.0,STOLEN,4807,"{'type': 'Point', 'coordinates': (-79.29906513, 43.69245061)}"
-4810,19619,GO-20142148181,THEFT UNDER,2014-05-24T00:00:00,2014,May,Saturday,24,144,21,2014-05-25T00:00:00,2014,May,Sunday,25,145,8,D54,Toronto,61,Taylor-Massey (61),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,MURANO,MT,24,BLKSIL,350.0,STOLEN,4808,"{'type': 'Point', 'coordinates': (-79.30336319, 43.69170016000001)}"
-4811,19633,GO-20149004692,THEFT UNDER,2014-07-03T00:00:00,2014,July,Thursday,3,184,18,2014-07-03T00:00:00,2014,July,Thursday,3,184,20,D54,Toronto,61,Taylor-Massey (61),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,10,BGE,40.0,STOLEN,4809,"{'type': 'Point', 'coordinates': (-79.29599915, 43.69243237)}"
-4812,19635,GO-20149004912,THEFT UNDER,2014-07-09T00:00:00,2014,July,Wednesday,9,190,14,2014-07-11T00:00:00,2014,July,Friday,11,192,17,D55,Toronto,61,Taylor-Massey (61),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,MT,11,SIL,1200.0,STOLEN,4810,"{'type': 'Point', 'coordinates': (-79.28831806, 43.69123147)}"
-4813,19726,GO-20159006863,THEFT UNDER,2015-09-03T00:00:00,2015,September,Thursday,3,246,15,2015-09-07T00:00:00,2015,September,Monday,7,250,22,D54,Toronto,61,Taylor-Massey (61),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,NOVARA,MT,7,BLK,280.0,STOLEN,4811,"{'type': 'Point', 'coordinates': (-79.29728834, 43.694578220000004)}"
-4814,19745,GO-20151985041,THEFT UNDER,2015-11-19T00:00:00,2015,November,Thursday,19,323,9,2015-11-19T00:00:00,2015,November,Thursday,19,323,11,D55,Toronto,61,Taylor-Massey (61),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,FORTRESS 1600,SC,1,BLU,3041.0,STOLEN,4812,"{'type': 'Point', 'coordinates': (-79.28831806, 43.69123147)}"
-4815,19747,GO-20152180897,B&E,2015-12-20T00:00:00,2015,December,Sunday,20,354,17,2015-12-20T00:00:00,2015,December,Sunday,20,354,22,D54,Toronto,61,Taylor-Massey (61),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,RG,0,GRN,340.0,STOLEN,4813,"{'type': 'Point', 'coordinates': (-79.29509473, 43.69607965)}"
-4816,22311,GO-20181297336,B&E W'INTENT,2018-07-12T00:00:00,2018,July,Thursday,12,193,11,2018-07-16T00:00:00,2018,July,Monday,16,197,14,D54,Toronto,61,Taylor-Massey (61),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,RG,21,RED,170.0,STOLEN,4814,"{'type': 'Point', 'coordinates': (-79.30417619, 43.69075231)}"
-4817,22342,GO-20189031794,THEFT UNDER - BICYCLE,2018-09-19T00:00:00,2018,September,Wednesday,19,262,10,2018-09-25T00:00:00,2018,September,Tuesday,25,268,1,D54,Toronto,61,Taylor-Massey (61),Schools During Un-Supervised Activity,Educational,GT,AVALANCHE,MT,27,BLK,633.0,STOLEN,4815,"{'type': 'Point', 'coordinates': (-79.29264529, 43.69022289)}"
-4818,22347,GO-20189032967,THEFT UNDER - BICYCLE,2018-07-05T00:00:00,2018,July,Thursday,5,186,0,2018-10-05T00:00:00,2018,October,Friday,5,278,0,D54,Toronto,61,Taylor-Massey (61),"Single Home, House (Attach Garage, Cottage, Mobile)",House,IN,,MT,15,BRN,450.0,STOLEN,4816,"{'type': 'Point', 'coordinates': (-79.29247781, 43.69286384)}"
-4819,22358,GO-20189036950,THEFT UNDER - BICYCLE,2018-10-21T00:00:00,2018,October,Sunday,21,294,6,2018-11-05T00:00:00,2018,November,Monday,5,309,16,D54,Toronto,61,Taylor-Massey (61),"Apartment (Rooming House, Condo)",Apartment,CC,CCM 18 SPEED,RG,15,GRY,0.0,STOLEN,4817,"{'type': 'Point', 'coordinates': (-79.2996563, 43.69468093)}"
-4820,22446,GO-20209009120,THEFT UNDER,2020-03-16T00:00:00,2020,March,Monday,16,76,16,2020-03-16T00:00:00,2020,March,Monday,16,76,18,D55,Toronto,61,Taylor-Massey (61),Convenience Stores,Commercial,TR,,MT,24,BLK,800.0,STOLEN,4818,"{'type': 'Point', 'coordinates': (-79.28831806, 43.69123147)}"
-4821,22537,GO-20201589488,B&E,2020-08-23T00:00:00,2020,August,Sunday,23,236,11,2020-08-24T00:00:00,2020,August,Monday,24,237,10,D54,Toronto,61,Taylor-Massey (61),"Apartment (Rooming House, Condo)",Apartment,SCHWINN,,OT,21,,549.0,STOLEN,4819,"{'type': 'Point', 'coordinates': (-79.29264529, 43.69022289)}"
-4822,22563,GO-20201771582,B&E,2020-09-16T00:00:00,2020,September,Wednesday,16,260,23,2020-09-18T00:00:00,2020,September,Friday,18,262,19,D54,Toronto,61,Taylor-Massey (61),"Single Home, House (Attach Garage, Cottage, Mobile)",House,EMMO,SPORT 2.0,EL,1,RED,2835.0,STOLEN,4820,"{'type': 'Point', 'coordinates': (-79.293098, 43.70222225)}"
-4823,22589,GO-20202154814,THEFT UNDER,2020-11-12T00:00:00,2020,November,Thursday,12,317,22,2020-11-13T00:00:00,2020,November,Friday,13,318,14,D54,Toronto,61,Taylor-Massey (61),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TAO TAO,ARIES,EL,0,BLU,2500.0,STOLEN,4821,"{'type': 'Point', 'coordinates': (-79.29308081, 43.69120549)}"
-4824,22871,GO-20149007016,THEFT UNDER,2014-09-18T00:00:00,2014,September,Thursday,18,261,8,2014-09-18T00:00:00,2014,September,Thursday,18,261,17,D55,Toronto,61,Taylor-Massey (61),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CC,PRESTO,RC,21,BLK,370.0,STOLEN,4822,"{'type': 'Point', 'coordinates': (-79.28831806, 43.69123147)}"
-4825,22947,GO-20159010359,THEFT UNDER,2015-11-30T00:00:00,2015,November,Monday,30,334,19,2015-11-30T00:00:00,2015,November,Monday,30,334,21,D54,Toronto,61,Taylor-Massey (61),"Apartment (Rooming House, Condo)",Apartment,OT,DYNO,BM,1,DGR,600.0,STOLEN,4823,"{'type': 'Point', 'coordinates': (-79.29181642, 43.69575899)}"
-4826,22967,GO-2016560330,THEFT UNDER - BICYCLE,2016-04-02T00:00:00,2016,April,Saturday,2,93,15,2016-04-02T00:00:00,2016,April,Saturday,2,93,18,D54,Toronto,61,Taylor-Massey (61),"Open Areas (Lakes, Parks, Rivers)",Outside,UNKNOWN MAKE,CORDLESS,SC,1,BLU,3500.0,STOLEN,4824,"{'type': 'Point', 'coordinates': (-79.29144739, 43.69050786)}"
-4827,22969,GO-2016764391,THEFT UNDER - BICYCLE,2016-05-03T00:00:00,2016,May,Tuesday,3,124,18,2016-05-04T00:00:00,2016,May,Wednesday,4,125,14,D54,Toronto,61,Taylor-Massey (61),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,RUBY EXPERT,RG,20,RED,3500.0,STOLEN,4825,"{'type': 'Point', 'coordinates': (-79.302075, 43.69199783)}"
-4828,25556,GO-20189020840,THEFT UNDER - BICYCLE,2017-07-28T00:00:00,2017,July,Friday,28,209,10,2018-07-02T00:00:00,2018,July,Monday,2,183,10,D54,Toronto,61,Taylor-Massey (61),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,KO,,MT,7,SIL,400.0,STOLEN,4826,"{'type': 'Point', 'coordinates': (-79.302075, 43.69199783)}"
-4829,25624,GO-2019949908,THEFT OF EBIKE UNDER $5000,2019-05-24T00:00:00,2019,May,Friday,24,144,17,2019-05-24T00:00:00,2019,May,Friday,24,144,20,D54,Toronto,61,Taylor-Massey (61),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,EL,10,BLK,,STOLEN,4827,"{'type': 'Point', 'coordinates': (-79.29181642, 43.69575899)}"
-4830,25722,GO-20209014871,THEFT UNDER,2020-06-08T00:00:00,2020,June,Monday,8,160,7,2020-06-08T00:00:00,2020,June,Monday,8,160,16,D55,Toronto,61,Taylor-Massey (61),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,SIRRUS COMP,OT,10,GRY,1000.0,STOLEN,4828,"{'type': 'Point', 'coordinates': (-79.28831806, 43.69123147)}"
-4831,25723,GO-20209015155,THEFT UNDER,2020-06-07T00:00:00,2020,June,Sunday,7,159,17,2020-06-11T00:00:00,2020,June,Thursday,11,163,19,D54,Toronto,61,Taylor-Massey (61),"Apartment (Rooming House, Condo)",Apartment,SP,,MT,7,WHI,350.0,STOLEN,4829,"{'type': 'Point', 'coordinates': (-79.29152464, 43.69615032)}"
-4832,25755,GO-20201402997,THEFT UNDER - BICYCLE,2020-07-27T00:00:00,2020,July,Monday,27,209,22,2020-07-31T00:00:00,2020,July,Friday,31,213,18,D54,Toronto,61,Taylor-Massey (61),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,CIRRUS,RG,12,GRY,1500.0,STOLEN,4830,"{'type': 'Point', 'coordinates': (-79.29294874, 43.69093583)}"
-4833,25756,GO-20201402997,THEFT UNDER - BICYCLE,2020-07-27T00:00:00,2020,July,Monday,27,209,22,2020-07-31T00:00:00,2020,July,Friday,31,213,18,D54,Toronto,61,Taylor-Massey (61),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,SIRRUS,TO,18,GRY,700.0,STOLEN,4831,"{'type': 'Point', 'coordinates': (-79.29294874, 43.69093583)}"
-4834,96,GO-2017312515,ASSAULT,2017-02-19T00:00:00,2017,February,Sunday,19,50,12,2017-02-19T00:00:00,2017,February,Sunday,19,50,12,D55,Toronto,62,East End-Danforth (62),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,,MT,18,BLK,500.0,STOLEN,4832,"{'type': 'Point', 'coordinates': (-79.30495544, 43.68748082)}"
-4835,147,GO-2017410822,B&E,2017-03-03T00:00:00,2017,March,Friday,3,62,18,2017-03-06T00:00:00,2017,March,Monday,6,65,18,D55,Toronto,62,East End-Danforth (62),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RC,10,SIL,100.0,STOLEN,4833,"{'type': 'Point', 'coordinates': (-79.31071492, 43.68079300000001)}"
-4836,148,GO-2017410822,B&E,2017-03-03T00:00:00,2017,March,Friday,3,62,18,2017-03-06T00:00:00,2017,March,Monday,6,65,18,D55,Toronto,62,East End-Danforth (62),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RC,10,BLK,50.0,STOLEN,4834,"{'type': 'Point', 'coordinates': (-79.31071492, 43.68079300000001)}"
-4837,149,GO-2017410822,B&E,2017-03-03T00:00:00,2017,March,Friday,3,62,18,2017-03-06T00:00:00,2017,March,Monday,6,65,18,D55,Toronto,62,East End-Danforth (62),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RC,10,,100.0,STOLEN,4835,"{'type': 'Point', 'coordinates': (-79.31071492, 43.68079300000001)}"
-4838,150,GO-2017410822,B&E,2017-03-03T00:00:00,2017,March,Friday,3,62,18,2017-03-06T00:00:00,2017,March,Monday,6,65,18,D55,Toronto,62,East End-Danforth (62),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RC,10,BLK,4500.0,STOLEN,4836,"{'type': 'Point', 'coordinates': (-79.31071492, 43.68079300000001)}"
-4839,151,GO-2017410822,B&E,2017-03-03T00:00:00,2017,March,Friday,3,62,18,2017-03-06T00:00:00,2017,March,Monday,6,65,18,D55,Toronto,62,East End-Danforth (62),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RC,10,BLK,800.0,STOLEN,4837,"{'type': 'Point', 'coordinates': (-79.31071492, 43.68079300000001)}"
-4840,221,GO-2017660086,THEFT OF EBIKE UNDER $5000,2017-04-14T00:00:00,2017,April,Friday,14,104,17,2017-04-14T00:00:00,2017,April,Friday,14,104,21,D55,Toronto,62,East End-Danforth (62),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,EL,1,BLK,,STOLEN,4838,"{'type': 'Point', 'coordinates': (-79.29798392000001, 43.67888482)}"
-4841,408,GO-20179006518,THEFT UNDER,2017-05-17T00:00:00,2017,May,Wednesday,17,137,3,2017-05-17T00:00:00,2017,May,Wednesday,17,137,16,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,,MT,7,PLE,150.0,STOLEN,4839,"{'type': 'Point', 'coordinates': (-79.31033017, 43.68539595)}"
-4842,416,GO-20179006564,THEFT UNDER - BICYCLE,2017-05-18T00:00:00,2017,May,Thursday,18,138,13,2017-05-18T00:00:00,2017,May,Thursday,18,138,13,D55,Toronto,62,East End-Danforth (62),Schools During Un-Supervised Activity,Educational,GI,TALON 3,MT,8,ONG,659.0,STOLEN,4840,"{'type': 'Point', 'coordinates': (-79.29265957, 43.68365894)}"
-4843,470,GO-2017912054,B&E,2017-05-21T00:00:00,2017,May,Sunday,21,141,13,2017-05-24T00:00:00,2017,May,Wednesday,24,144,1,D55,Toronto,62,East End-Danforth (62),"Apartment (Rooming House, Condo)",Apartment,OTHER,,MT,0,WHIRED,,STOLEN,4841,"{'type': 'Point', 'coordinates': (-79.3005068, 43.68844665)}"
-4844,601,GO-20171042990,THEFT UNDER - BICYCLE,2017-06-10T00:00:00,2017,June,Saturday,10,161,13,2017-06-12T00:00:00,2017,June,Monday,12,163,9,D54,Toronto,62,East End-Danforth (62),Homeless Shelter / Mission,Other,UNKNOWN MAKE,,MT,18,BLKSIL,100.0,STOLEN,4842,"{'type': 'Point', 'coordinates': (-79.29786068, 43.68903988000001)}"
-4845,838,GO-20179010020,THEFT UNDER,2017-07-12T00:00:00,2017,July,Wednesday,12,193,21,2017-07-13T00:00:00,2017,July,Thursday,13,194,0,D54,Toronto,62,East End-Danforth (62),Ttc Subway Station,Transit,OT,ALBA LX,RC,14,PLE,0.0,STOLEN,4843,"{'type': 'Point', 'coordinates': (-79.31310933, 43.68652567000001)}"
-4846,906,GO-20179010506,THEFT UNDER - BICYCLE,2017-07-18T00:00:00,2017,July,Tuesday,18,199,16,2017-07-18T00:00:00,2017,July,Tuesday,18,199,17,D55,Toronto,62,East End-Danforth (62),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KO,JAKE,TO,16,CPR,900.0,STOLEN,4844,"{'type': 'Point', 'coordinates': (-79.30495544, 43.68748082)}"
-4847,1059,GO-20179011771,THEFT UNDER - BICYCLE,2017-08-04T00:00:00,2017,August,Friday,4,216,7,2017-08-05T00:00:00,2017,August,Saturday,5,217,22,D55,Toronto,62,East End-Danforth (62),Go Station,Transit,SC,VOLARE 1200,OT,21,OTH,350.0,STOLEN,4845,"{'type': 'Point', 'coordinates': (-79.30088278, 43.68550226)}"
-4848,1375,GO-20179014525,THEFT UNDER,2017-08-05T00:00:00,2017,August,Saturday,5,217,0,2017-09-12T00:00:00,2017,September,Tuesday,12,255,9,D55,Toronto,62,East End-Danforth (62),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,7,DBL,0.0,STOLEN,4846,"{'type': 'Point', 'coordinates': (-79.29881127, 43.68074144)}"
-4849,1417,GO-20179014826,THEFT UNDER - BICYCLE,2017-09-13T00:00:00,2017,September,Wednesday,13,256,8,2017-09-15T00:00:00,2017,September,Friday,15,258,1,D54,Toronto,62,East End-Danforth (62),Go Station,Transit,OT,HYBRID-MOUNTAIN,RG,27,BLK,850.0,STOLEN,4847,"{'type': 'Point', 'coordinates': (-79.3017916, 43.68814492)}"
-4850,1606,GO-20179016644,THEFT UNDER - BICYCLE,2017-10-06T00:00:00,2017,October,Friday,6,279,18,2017-10-07T00:00:00,2017,October,Saturday,7,280,10,D55,Toronto,62,East End-Danforth (62),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,GI,15 REVEL 3 XS,MT,10,BLK,420.0,STOLEN,4848,"{'type': 'Point', 'coordinates': (-79.30155909, 43.68767501)}"
-4851,1688,GO-20179017567,THEFT UNDER - BICYCLE,2017-10-07T00:00:00,2017,October,Saturday,7,280,5,2017-10-19T00:00:00,2017,October,Thursday,19,292,20,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SIRRUS,RG,25,BLK,900.0,STOLEN,4849,"{'type': 'Point', 'coordinates': (-79.30871871, 43.6818006)}"
-4852,1785,GO-20179018780,THEFT UNDER - BICYCLE,2017-11-01T00:00:00,2017,November,Wednesday,1,305,16,2017-11-02T00:00:00,2017,November,Thursday,2,306,18,D55,Toronto,62,East End-Danforth (62),Go Station,Transit,IH,,MT,5,ONG,500.0,STOLEN,4850,"{'type': 'Point', 'coordinates': (-79.30088278, 43.68550226)}"
-4853,1813,GO-20179019134,THEFT UNDER,2017-11-07T00:00:00,2017,November,Tuesday,7,311,15,2017-11-07T00:00:00,2017,November,Tuesday,7,311,22,D55,Toronto,62,East End-Danforth (62),Schools During Un-Supervised Activity,Educational,GI,ESCAPE,RG,10,BLU,0.0,STOLEN,4851,"{'type': 'Point', 'coordinates': (-79.29265957, 43.68365894)}"
-4854,1828,GO-20172054460,THEFT UNDER,2017-10-29T00:00:00,2017,October,Sunday,29,302,12,2017-11-13T00:00:00,2017,November,Monday,13,317,14,D55,Toronto,62,East End-Danforth (62),"Apartment (Rooming House, Condo)",Apartment,BEJING,,EL,0,BLK,1199.0,STOLEN,4852,"{'type': 'Point', 'coordinates': (-79.29255199, 43.68010915)}"
-4855,1838,GO-20172055236,THEFT OF EBIKE UNDER $5000,2017-11-13T00:00:00,2017,November,Monday,13,317,16,2017-11-13T00:00:00,2017,November,Monday,13,317,16,D54,Toronto,62,East End-Danforth (62),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,EL,1,BLU,2000.0,STOLEN,4853,"{'type': 'Point', 'coordinates': (-79.31273908, 43.68568467)}"
-4856,1847,GO-20179019691,THEFT UNDER - BICYCLE,2017-11-14T00:00:00,2017,November,Tuesday,14,318,23,2017-11-15T00:00:00,2017,November,Wednesday,15,319,9,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,FX 7.2,MT,24,BLK,600.0,STOLEN,4854,"{'type': 'Point', 'coordinates': (-79.28943238, 43.68626339)}"
-4857,1931,GO-20173163853,THEFT OF EBIKE UNDER $5000,2017-12-05T00:00:00,2017,December,Tuesday,5,339,16,2017-12-11T00:00:00,2017,December,Monday,11,345,11,D54,Toronto,62,East End-Danforth (62),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,BISON,,EL,0,BLK,2000.0,STOLEN,4855,"{'type': 'Point', 'coordinates': (-79.29602309, 43.6894511)}"
-4858,2017,GO-2018233630,THEFT OF EBIKE UNDER $5000,2018-02-06T00:00:00,2018,February,Tuesday,6,37,14,2018-02-06T00:00:00,2018,February,Tuesday,6,37,15,D55,Toronto,62,East End-Danforth (62),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,,,EL,0,RED,,STOLEN,4856,"{'type': 'Point', 'coordinates': (-79.29786068, 43.68903988000001)}"
-4859,2138,GO-20189010777,THEFT UNDER,2018-04-05T00:00:00,2018,April,Thursday,5,95,19,2018-04-06T00:00:00,2018,April,Friday,6,96,19,D55,Toronto,62,East End-Danforth (62),Go Station,Transit,SC,,RG,21,RED,300.0,STOLEN,4857,"{'type': 'Point', 'coordinates': (-79.30088278, 43.68550226)}"
-4860,2261,GO-2018796609,THEFT UNDER - BICYCLE,2018-04-24T00:00:00,2018,April,Tuesday,24,114,16,2018-05-03T00:00:00,2018,May,Thursday,3,123,22,D54,Toronto,62,East End-Danforth (62),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,,MT,0,GRY,300.0,STOLEN,4858,"{'type': 'Point', 'coordinates': (-79.30093674, 43.68940767)}"
-4861,2304,GO-20189014829,THEFT UNDER - BICYCLE,2018-05-11T00:00:00,2018,May,Friday,11,131,22,2018-05-14T00:00:00,2018,May,Monday,14,134,10,D55,Toronto,62,East End-Danforth (62),Bar / Restaurant,Commercial,OT,,RG,1,RED,500.0,STOLEN,4859,"{'type': 'Point', 'coordinates': (-79.30852768, 43.68664338)}"
-4862,2435,GO-20189016962,THEFT UNDER,2018-05-30T00:00:00,2018,May,Wednesday,30,150,17,2018-05-31T00:00:00,2018,May,Thursday,31,151,17,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,DB,MIRAMAR,RG,21,WHI,100.0,STOLEN,4860,"{'type': 'Point', 'coordinates': (-79.30471413, 43.67742357)}"
-4863,2647,GO-20189019813,THEFT UNDER - BICYCLE,2018-06-22T00:00:00,2018,June,Friday,22,173,2,2018-06-22T00:00:00,2018,June,Friday,22,173,14,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,RG,7,BLK,0.0,STOLEN,4861,"{'type': 'Point', 'coordinates': (-79.29632282, 43.68502429)}"
-4864,2906,GO-20189023301,THEFT UNDER - BICYCLE,2018-07-21T00:00:00,2018,July,Saturday,21,202,1,2018-07-21T00:00:00,2018,July,Saturday,21,202,10,D55,Toronto,62,East End-Danforth (62),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,10,RED,200.0,STOLEN,4862,"{'type': 'Point', 'coordinates': (-79.30587251, 43.68484095)}"
-4865,2949,GO-20181359179,THEFT OVER,2018-07-19T00:00:00,2018,July,Thursday,19,200,21,2018-07-25T00:00:00,2018,July,Wednesday,25,206,15,D54,Toronto,62,East End-Danforth (62),"Construction Site (Warehouse, Trailer, Shed)",Commercial,SPECIALIZED,STATUS,MT,9,BLKWHI,3500.0,STOLEN,4863,"{'type': 'Point', 'coordinates': (-79.30356807, 43.68935187)}"
-4866,2950,GO-20181359179,THEFT OVER,2018-07-19T00:00:00,2018,July,Thursday,19,200,21,2018-07-25T00:00:00,2018,July,Wednesday,25,206,15,D54,Toronto,62,East End-Danforth (62),"Construction Site (Warehouse, Trailer, Shed)",Commercial,SPECIALIZED,PITCH,MT,27,BRNONG,3000.0,STOLEN,4864,"{'type': 'Point', 'coordinates': (-79.30356807, 43.68935187)}"
-4867,2951,GO-20181359179,THEFT OVER,2018-07-19T00:00:00,2018,July,Thursday,19,200,21,2018-07-25T00:00:00,2018,July,Wednesday,25,206,15,D54,Toronto,62,East End-Danforth (62),"Construction Site (Warehouse, Trailer, Shed)",Commercial,NORCO,NITRO,MT,27,RED,1600.0,STOLEN,4865,"{'type': 'Point', 'coordinates': (-79.30356807, 43.68935187)}"
-4868,3009,GO-20189024320,THEFT UNDER - BICYCLE,2018-07-26T00:00:00,2018,July,Thursday,26,207,10,2018-07-28T00:00:00,2018,July,Saturday,28,209,12,D55,Toronto,62,East End-Danforth (62),Go Station,Transit,OT,MODEM,RG,1,BLU,300.0,STOLEN,4866,"{'type': 'Point', 'coordinates': (-79.30088278, 43.68550226)}"
-4869,3029,GO-20189024540,THEFT UNDER - BICYCLE,2018-07-27T00:00:00,2018,July,Friday,27,208,12,2018-07-30T00:00:00,2018,July,Monday,30,211,20,D54,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SIRRUS SPORT 20,RG,27,BLK,800.0,STOLEN,4867,"{'type': 'Point', 'coordinates': (-79.30387522, 43.69004961)}"
-4870,3189,GO-20181495782,B&E,2018-08-13T00:00:00,2018,August,Monday,13,225,23,2018-08-14T00:00:00,2018,August,Tuesday,14,226,11,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DAHONE,SPEED TR,MT,24,GRN,2000.0,STOLEN,4868,"{'type': 'Point', 'coordinates': (-79.29488033, 43.68971806)}"
-4871,3469,GO-20181692039,THEFT UNDER - BICYCLE,2018-09-11T00:00:00,2018,September,Tuesday,11,254,11,2018-09-12T00:00:00,2018,September,Wednesday,12,255,17,D55,Toronto,62,East End-Danforth (62),Other Passenger Train Station,Transit,SUPERCYCLE,1800,MT,18,BLK,200.0,STOLEN,4869,"{'type': 'Point', 'coordinates': (-79.30088278, 43.68550226)}"
-4872,3528,GO-20189031389,THEFT UNDER - BICYCLE,2018-09-21T00:00:00,2018,September,Friday,21,264,3,2018-09-21T00:00:00,2018,September,Friday,21,264,12,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,VFR 1 2017,RG,20,BLK,2000.0,STOLEN,4870,"{'type': 'Point', 'coordinates': (-79.30431327, 43.67870059)}"
-4873,3553,GO-20189031899,THEFT UNDER - BICYCLE,2018-09-25T00:00:00,2018,September,Tuesday,25,268,17,2018-09-25T00:00:00,2018,September,Tuesday,25,268,19,D55,Toronto,62,East End-Danforth (62),Schools During Supervised Activity,Educational,OT,MAMBA,MT,21,BLK,1000.0,STOLEN,4871,"{'type': 'Point', 'coordinates': (-79.29265957, 43.68365894)}"
-4874,3564,GO-20181787864,B&E,2018-09-26T00:00:00,2018,September,Wednesday,26,269,19,2018-09-27T00:00:00,2018,September,Thursday,27,270,10,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,PEUGEOT,,BM,6,,100.0,STOLEN,4872,"{'type': 'Point', 'coordinates': (-79.29516235, 43.68311921)}"
-4875,3570,GO-20189032175,THEFT UNDER,2018-09-27T00:00:00,2018,September,Thursday,27,270,9,2018-09-27T00:00:00,2018,September,Thursday,27,270,21,D55,Toronto,62,East End-Danforth (62),Schools During Supervised Activity,Educational,OT,TALON,MT,18,RED,757.0,STOLEN,4873,"{'type': 'Point', 'coordinates': (-79.29265957, 43.68365894)}"
-4876,3623,GO-20181846736,THEFT UNDER - BICYCLE,2018-10-06T00:00:00,2018,October,Saturday,6,279,0,2018-10-06T00:00:00,2018,October,Saturday,6,279,8,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,,RG,1,PLE,,STOLEN,4874,"{'type': 'Point', 'coordinates': (-79.29516235, 43.68311921)}"
-4877,3624,GO-20181846736,THEFT UNDER - BICYCLE,2018-10-06T00:00:00,2018,October,Saturday,6,279,0,2018-10-06T00:00:00,2018,October,Saturday,6,279,8,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,,BM,1,BLK,,STOLEN,4875,"{'type': 'Point', 'coordinates': (-79.29516235, 43.68311921)}"
-4878,3634,GO-20189033179,THEFT UNDER - BICYCLE,2018-10-07T00:00:00,2018,October,Sunday,7,280,12,2018-10-07T00:00:00,2018,October,Sunday,7,280,14,D55,Toronto,62,East End-Danforth (62),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,TR,,MT,21,BLU,700.0,STOLEN,4876,"{'type': 'Point', 'coordinates': (-79.29871872, 43.68424822)}"
-4879,3666,GO-20189033624,THEFT UNDER,2018-10-11T00:00:00,2018,October,Thursday,11,284,10,2018-10-11T00:00:00,2018,October,Thursday,11,284,11,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SC,,EL,40,SIL,2000.0,STOLEN,4877,"{'type': 'Point', 'coordinates': (-79.30076798, 43.68522739)}"
-4880,3700,GO-20189034099,THEFT UNDER,2018-10-14T00:00:00,2018,October,Sunday,14,287,21,2018-10-15T00:00:00,2018,October,Monday,15,288,7,D55,Toronto,62,East End-Danforth (62),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,DEW,RG,10,BLU,100.0,STOLEN,4878,"{'type': 'Point', 'coordinates': (-79.30011602, 43.68394954)}"
-4881,4052,GO-20199024845,THEFT UNDER,2019-08-03T00:00:00,2019,August,Saturday,3,215,3,2019-08-03T00:00:00,2019,August,Saturday,3,215,9,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,4900,MT,24,GRY,700.0,STOLEN,4879,"{'type': 'Point', 'coordinates': (-79.28606409000001, 43.6831302)}"
-4882,4062,GO-2019342944,B&E,2019-02-23T00:00:00,2019,February,Saturday,23,54,4,2019-02-23T00:00:00,2019,February,Saturday,23,54,13,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,,RG,20,BLK,500.0,STOLEN,4880,"{'type': 'Point', 'coordinates': (-79.28998346, 43.68423792)}"
-4883,4063,GO-2019342944,B&E,2019-02-23T00:00:00,2019,February,Saturday,23,54,4,2019-02-23T00:00:00,2019,February,Saturday,23,54,13,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,,MT,20,WHI,500.0,STOLEN,4881,"{'type': 'Point', 'coordinates': (-79.28998346, 43.68423792)}"
-4884,4093,GO-20199008427,THEFT UNDER - BICYCLE,2019-03-13T00:00:00,2019,March,Wednesday,13,72,5,2019-03-16T00:00:00,2019,March,Saturday,16,75,0,D55,Toronto,62,East End-Danforth (62),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MA,,MT,24,BLK,399.0,STOLEN,4882,"{'type': 'Point', 'coordinates': (-79.31071492, 43.68079300000001)}"
-4885,4094,GO-20199008427,THEFT UNDER - BICYCLE,2019-03-13T00:00:00,2019,March,Wednesday,13,72,5,2019-03-16T00:00:00,2019,March,Saturday,16,75,0,D55,Toronto,62,East End-Danforth (62),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,LIFESTYLE,RG,10,WHI,350.0,STOLEN,4883,"{'type': 'Point', 'coordinates': (-79.31071492, 43.68079300000001)}"
-4886,4117,GO-2019551244,THEFT UNDER - BICYCLE,2018-12-02T00:00:00,2018,December,Sunday,2,336,12,2019-03-27T00:00:00,2019,March,Wednesday,27,86,10,D55,Toronto,62,East End-Danforth (62),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,IRON HORSE,MAVERICK 3.3,MT,21,SIL,500.0,STOLEN,4884,"{'type': 'Point', 'coordinates': (-79.30963163, 43.67818369)}"
-4887,4450,GO-20191047973,B&E,2019-06-02T00:00:00,2019,June,Sunday,2,153,7,2019-06-07T00:00:00,2019,June,Friday,7,158,11,D55,Toronto,62,East End-Danforth (62),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,SIRRUS,RG,10,PLEBLK,,STOLEN,4885,"{'type': 'Point', 'coordinates': (-79.29987616, 43.67851223)}"
-4888,4564,GO-20191075290,THEFT UNDER,2019-06-05T00:00:00,2019,June,Wednesday,5,156,1,2019-06-11T00:00:00,2019,June,Tuesday,11,162,10,D55,Toronto,62,East End-Danforth (62),"Apartment (Rooming House, Condo)",Apartment,TEC,,RC,0,WHI,,STOLEN,4886,"{'type': 'Point', 'coordinates': (-79.29690721, 43.68819235)}"
-4889,4592,GO-20191174248,THEFT UNDER,2017-06-24T00:00:00,2017,June,Saturday,24,175,10,2019-06-25T00:00:00,2019,June,Tuesday,25,176,11,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,HOOLIGAN,,MT,10,GRN,,STOLEN,4887,"{'type': 'Point', 'coordinates': (-79.30186665, 43.68554235)}"
-4890,4657,GO-20199020820,THEFT UNDER,2019-07-03T00:00:00,2019,July,Wednesday,3,184,7,2019-07-03T00:00:00,2019,July,Wednesday,3,184,11,D55,Toronto,62,East End-Danforth (62),"Open Areas (Lakes, Parks, Rivers)",Outside,TR,7.2,RG,10,GRY,600.0,STOLEN,4888,"{'type': 'Point', 'coordinates': (-79.29871872, 43.68424822)}"
-4891,5057,GO-20173264050,THEFT OF EBIKE UNDER $5000,2017-12-24T00:00:00,2017,December,Sunday,24,358,22,2017-12-25T00:00:00,2017,December,Monday,25,359,18,D54,Toronto,62,East End-Danforth (62),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,EL,60,BLK,0.0,STOLEN,4889,"{'type': 'Point', 'coordinates': (-79.30495544, 43.68748082)}"
-4892,5123,GO-20199027178,THEFT UNDER,2019-08-21T00:00:00,2019,August,Wednesday,21,233,8,2019-08-21T00:00:00,2019,August,Wednesday,21,233,18,D55,Toronto,62,East End-Danforth (62),Go Station,Transit,OT,,RG,3,BLK,0.0,STOLEN,4890,"{'type': 'Point', 'coordinates': (-79.30088278, 43.68550226)}"
-4893,5181,GO-20199028019,THEFT UNDER,2019-08-28T00:00:00,2019,August,Wednesday,28,240,12,2019-08-28T00:00:00,2019,August,Wednesday,28,240,13,D55,Toronto,62,East End-Danforth (62),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,REVERE,RC,18,BLU,1000.0,STOLEN,4891,"{'type': 'Point', 'coordinates': (-79.31163998, 43.68594944)}"
-4894,5258,GO-20199029071,THEFT UNDER,2019-09-06T00:00:00,2019,September,Friday,6,249,8,2019-09-07T00:00:00,2019,September,Saturday,7,250,12,D54,Toronto,62,East End-Danforth (62),Ttc Subway Station,Transit,RA,,RG,10,BLK,200.0,STOLEN,4892,"{'type': 'Point', 'coordinates': (-79.31273908, 43.68568467)}"
-4895,5421,GO-20199031812,THEFT UNDER,2019-09-27T00:00:00,2019,September,Friday,27,270,19,2019-09-27T00:00:00,2019,September,Friday,27,270,19,D55,Toronto,62,East End-Danforth (62),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,24,LBL,600.0,STOLEN,4893,"{'type': 'Point', 'coordinates': (-79.28836926, 43.68039456)}"
-4896,5790,GO-20192506549,THEFT UNDER,2019-12-28T00:00:00,2019,December,Saturday,28,362,18,2019-12-29T00:00:00,2019,December,Sunday,29,363,16,D55,Toronto,62,East End-Danforth (62),"Apartment (Rooming House, Condo)",Apartment,IRON HORSE,AXION,MT,21,GRYSIL,350.0,STOLEN,4894,"{'type': 'Point', 'coordinates': (-79.30114138, 43.67812586)}"
-4897,6206,GO-2020918591,THEFT UNDER - BICYCLE,2020-05-18T00:00:00,2020,May,Monday,18,139,10,2020-05-18T00:00:00,2020,May,Monday,18,139,11,D54,Toronto,62,East End-Danforth (62),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,B BREEZER,UPTOWN,MT,21,SIL,100.0,STOLEN,4895,"{'type': 'Point', 'coordinates': (-79.30093674, 43.68940767)}"
-4898,6531,GO-20209016830,THEFT UNDER,2020-07-03T00:00:00,2020,July,Friday,3,185,22,2020-07-04T00:00:00,2020,July,Saturday,4,186,11,D54,Toronto,62,East End-Danforth (62),Ttc Subway Station,Transit,OT,MANTRA,RG,1,WHI,450.0,STOLEN,4896,"{'type': 'Point', 'coordinates': (-79.3017916, 43.68814492)}"
-4899,6549,GO-20191786303,FRAUD OVER,2019-04-01T00:00:00,2019,April,Monday,1,91,0,2019-09-17T00:00:00,2019,September,Tuesday,17,260,10,D55,Toronto,62,East End-Danforth (62),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,VIPERMAX,STREET PRO 72,EL,1,GRN,7500.0,STOLEN,4897,"{'type': 'Point', 'coordinates': (-79.2934083, 43.68540038)}"
-4900,6587,GO-20209017311,THEFT UNDER,2020-07-09T00:00:00,2020,July,Thursday,9,191,23,2020-07-11T00:00:00,2020,July,Saturday,11,193,12,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,TO,7,GRY,500.0,STOLEN,4898,"{'type': 'Point', 'coordinates': (-79.30595044, 43.68265349)}"
-4901,6638,GO-20209017746,THEFT UNDER,2020-07-15T00:00:00,2020,July,Wednesday,15,197,12,2020-07-16T00:00:00,2020,July,Thursday,16,198,21,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,TALON,MT,21,BLK,700.0,STOLEN,4899,"{'type': 'Point', 'coordinates': (-79.28581917, 43.68516017000001)}"
-4902,6654,GO-20209017811,THEFT UNDER,2020-07-16T00:00:00,2020,July,Thursday,16,198,1,2020-07-17T00:00:00,2020,July,Friday,17,199,16,D54,Toronto,62,East End-Danforth (62),"Apartment (Rooming House, Condo)",Apartment,RA,RED,MT,10,RED,100.0,STOLEN,4900,"{'type': 'Point', 'coordinates': (-79.30762828, 43.68765923)}"
-4903,6677,GO-20209016862,THEFT UNDER,2020-07-05T00:00:00,2020,July,Sunday,5,187,5,2020-07-05T00:00:00,2020,July,Sunday,5,187,10,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,ESCAPE 3 L,RG,21,,500.0,STOLEN,4901,"{'type': 'Point', 'coordinates': (-79.30088278, 43.68550226)}"
-4904,6899,GO-20201477766,B&E,2020-08-07T00:00:00,2020,August,Friday,7,220,20,2020-08-08T00:00:00,2020,August,Saturday,8,221,12,D54,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,XT RANGER,MT,18,RED,500.0,STOLEN,4902,"{'type': 'Point', 'coordinates': (-79.30356807, 43.68935187)}"
-4905,6914,GO-20201469441,THEFT OVER - BICYCLE,2020-08-05T00:00:00,2020,August,Wednesday,5,218,22,2020-08-10T00:00:00,2020,August,Monday,10,223,10,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SANTA CRUZ,BLUR,MT,24,BGE,5000.0,STOLEN,4903,"{'type': 'Point', 'coordinates': (-79.30777953, 43.67952117)}"
-4906,6980,GO-20201551638,THEFT UNDER - BICYCLE,2020-08-16T00:00:00,2020,August,Sunday,16,229,14,2020-08-18T00:00:00,2020,August,Tuesday,18,231,13,D55,Toronto,62,East End-Danforth (62),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,OT,10,,,STOLEN,4904,"{'type': 'Point', 'coordinates': (-79.30186665, 43.68554235)}"
-4907,7040,GO-20209020992,THEFT UNDER,2020-08-21T00:00:00,2020,August,Friday,21,234,1,2020-08-22T00:00:00,2020,August,Saturday,22,235,14,D54,Toronto,62,East End-Danforth (62),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,ENDURANCE ROAD,TO,14,RED,550.0,STOLEN,4905,"{'type': 'Point', 'coordinates': (-79.31273908, 43.68568467)}"
-4908,7049,GO-20209021037,THEFT UNDER,2020-08-22T00:00:00,2020,August,Saturday,22,235,16,2020-08-22T00:00:00,2020,August,Saturday,22,235,21,D55,Toronto,62,East End-Danforth (62),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,UK,,RG,10,,0.0,STOLEN,4906,"{'type': 'Point', 'coordinates': (-79.30155909, 43.68767501)}"
-4909,7136,GO-20209021846,THEFT UNDER,2020-08-31T00:00:00,2020,August,Monday,31,244,7,2020-08-31T00:00:00,2020,August,Monday,31,244,11,D55,Toronto,62,East End-Danforth (62),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,18,SIL,1000.0,STOLEN,4907,"{'type': 'Point', 'coordinates': (-79.29602309, 43.6894511)}"
-4910,7247,GO-20209022998,THEFT UNDER,2020-09-11T00:00:00,2020,September,Friday,11,255,16,2020-09-11T00:00:00,2020,September,Friday,11,255,16,D54,Toronto,62,East End-Danforth (62),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,FX3,TO,27,BLK,900.0,STOLEN,4908,"{'type': 'Point', 'coordinates': (-79.29786068, 43.68903988000001)}"
-4911,7281,GO-20201768219,THEFT UNDER - BICYCLE,2020-09-10T00:00:00,2020,September,Thursday,10,254,14,2020-09-18T00:00:00,2020,September,Friday,18,262,6,D54,Toronto,62,East End-Danforth (62),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,VITA,RG,21,BLK,600.0,STOLEN,4909,"{'type': 'Point', 'coordinates': (-79.31310933, 43.68652567000001)}"
-4912,7341,GO-20201804482,THEFT UNDER - BICYCLE,2020-09-15T00:00:00,2020,September,Tuesday,15,259,4,2020-09-24T00:00:00,2020,September,Thursday,24,268,14,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,TORNADO,RG,12,BLUWHI,300.0,STOLEN,4910,"{'type': 'Point', 'coordinates': (-79.28836926, 43.68039456)}"
-4913,7342,GO-20201804482,THEFT UNDER - BICYCLE,2020-09-15T00:00:00,2020,September,Tuesday,15,259,4,2020-09-24T00:00:00,2020,September,Thursday,24,268,14,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,STABILYZER,MT,12,BLK,1400.0,STOLEN,4911,"{'type': 'Point', 'coordinates': (-79.28836926, 43.68039456)}"
-4914,7390,GO-20209025031,THEFT UNDER,2020-09-30T00:00:00,2020,September,Wednesday,30,274,2,2020-09-30T00:00:00,2020,September,Wednesday,30,274,12,D54,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,RG,10,ONG,500.0,STOLEN,4912,"{'type': 'Point', 'coordinates': (-79.29599915, 43.69243237)}"
-4915,7435,GO-20201930924,FTC PROBATION ORDER,2020-10-07T00:00:00,2020,October,Wednesday,7,281,16,2020-10-11T00:00:00,2020,October,Sunday,11,285,13,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,JAMIS,,RG,24,BLK,,STOLEN,4913,"{'type': 'Point', 'coordinates': (-79.30845956, 43.67532677)}"
-4916,7450,GO-20209026222,THEFT UNDER,2020-10-12T00:00:00,2020,October,Monday,12,286,22,2020-10-13T00:00:00,2020,October,Tuesday,13,287,11,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SU,SUPERCYCLE FOR,MT,30,BLK,100.0,STOLEN,4914,"{'type': 'Point', 'coordinates': (-79.31033017, 43.68539595)}"
-4917,7451,GO-20209026222,THEFT UNDER,2020-10-12T00:00:00,2020,October,Monday,12,286,22,2020-10-13T00:00:00,2020,October,Tuesday,13,287,11,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,HYBRID,MT,30,DBL,500.0,STOLEN,4915,"{'type': 'Point', 'coordinates': (-79.31033017, 43.68539595)}"
-4918,3471,GO-20189030499,THEFT UNDER,2018-09-14T00:00:00,2018,September,Friday,14,257,8,2018-09-14T00:00:00,2018,September,Friday,14,257,18,D54,Toronto,66,Danforth (66),Ttc Subway Station,Transit,SU,TEMPO 700C,RG,21,SIL,150.0,STOLEN,5739,"{'type': 'Point', 'coordinates': (-79.33007622, 43.68284971)}"
-4919,7514,GO-20209027049,THEFT UNDER,2020-10-19T00:00:00,2020,October,Monday,19,293,20,2020-10-20T00:00:00,2020,October,Tuesday,20,294,19,D54,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,HEAR,MT,1,BLK,300.0,STOLEN,4916,"{'type': 'Point', 'coordinates': (-79.29970525, 43.69063657)}"
-4920,7543,GO-20209027646,THEFT UNDER,2020-10-24T00:00:00,2020,October,Saturday,24,298,10,2020-10-25T00:00:00,2020,October,Sunday,25,299,17,D54,Toronto,62,East End-Danforth (62),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,,RG,8,BLK,400.0,STOLEN,4917,"{'type': 'Point', 'coordinates': (-79.31273908, 43.68568467)}"
-4921,7615,GO-20209029211,THEFT UNDER,2020-11-05T00:00:00,2020,November,Thursday,5,310,12,2020-11-10T00:00:00,2020,November,Tuesday,10,315,14,D55,Toronto,62,East End-Danforth (62),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,NITROUS,MT,21,BLK,200.0,STOLEN,4918,"{'type': 'Point', 'coordinates': (-79.29375531, 43.68996433)}"
-4922,7772,GO-20149001784,THEFT UNDER,2014-03-04T00:00:00,2014,March,Tuesday,4,63,21,2014-03-04T00:00:00,2014,March,Tuesday,4,63,21,D55,Toronto,62,East End-Danforth (62),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,ESCAPE,MT,16,BLK,800.0,STOLEN,4919,"{'type': 'Point', 'coordinates': (-79.29798392000001, 43.67888482)}"
-4923,7910,GO-20149003290,THEFT UNDER,2014-05-12T00:00:00,2014,May,Monday,12,132,1,2014-05-12T00:00:00,2014,May,Monday,12,132,1,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,3500,MT,18,SIL,500.0,STOLEN,4920,"{'type': 'Point', 'coordinates': (-79.2938025, 43.68634589)}"
-4924,7917,GO-20142062543,THEFT UNDER,2014-05-11T00:00:00,2014,May,Sunday,11,131,19,2014-05-12T00:00:00,2014,May,Monday,12,132,9,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SCOTT,,OT,24,WHI,1600.0,STOLEN,4921,"{'type': 'Point', 'coordinates': (-79.29125135, 43.68687322)}"
-4925,7918,GO-20142062543,THEFT UNDER,2014-05-11T00:00:00,2014,May,Sunday,11,131,19,2014-05-12T00:00:00,2014,May,Monday,12,132,9,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RALEIGH,,OT,18,BLU,650.0,STOLEN,4922,"{'type': 'Point', 'coordinates': (-79.29125135, 43.68687322)}"
-4926,8087,GO-20142234818,THEFT UNDER,2014-06-06T00:00:00,2014,June,Friday,6,157,8,2014-06-06T00:00:00,2014,June,Friday,6,157,16,D55,Toronto,62,East End-Danforth (62),Go Station,Transit,CCM,29ER,MT,22,BLK,400.0,STOLEN,4923,"{'type': 'Point', 'coordinates': (-79.30088278, 43.68550226)}"
-4927,8214,GO-20142338385,THEFT UNDER,2014-06-21T00:00:00,2014,June,Saturday,21,172,13,2014-06-21T00:00:00,2014,June,Saturday,21,172,15,D54,Toronto,62,East End-Danforth (62),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MONGOOSE,,OT,5,DGR,250.0,STOLEN,4924,"{'type': 'Point', 'coordinates': (-79.31089756000002, 43.68611329)}"
-4928,8242,GO-20142356777,THEFT UNDER,2014-06-24T00:00:00,2014,June,Tuesday,24,175,0,2014-06-24T00:00:00,2014,June,Tuesday,24,175,11,D55,Toronto,62,East End-Danforth (62),"Apartment (Rooming House, Condo)",Apartment,FUJI,NEWEST,OT,21,GRY,,STOLEN,4925,"{'type': 'Point', 'coordinates': (-79.28965689, 43.68620736)}"
-4929,8442,GO-20149005076,THEFT UNDER,2014-07-17T00:00:00,2014,July,Thursday,17,198,13,2014-07-17T00:00:00,2014,July,Thursday,17,198,17,D55,Toronto,62,East End-Danforth (62),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,ECOTOUR,EL,30,BLK,1000.0,STOLEN,4926,"{'type': 'Point', 'coordinates': (-79.31163998, 43.68594944)}"
-4930,8575,GO-20149005571,THEFT UNDER,2014-08-01T00:00:00,2014,August,Friday,1,213,21,2014-08-02T00:00:00,2014,August,Saturday,2,214,12,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,"FXR 3 18"""" B",MT,15,BLK,700.0,STOLEN,4927,"{'type': 'Point', 'coordinates': (-79.29599307, 43.68509658)}"
-4931,8584,GO-20142656825,THEFT UNDER,2014-08-07T00:00:00,2014,August,Thursday,7,219,12,2014-08-07T00:00:00,2014,August,Thursday,7,219,21,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,B-TWEEN,MT,1,RED,450.0,STOLEN,4928,"{'type': 'Point', 'coordinates': (-79.2938025, 43.68634589)}"
-4932,8585,GO-20149005608,THEFT UNDER,2014-08-01T00:00:00,2014,August,Friday,1,213,11,2014-08-05T00:00:00,2014,August,Tuesday,5,217,11,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,SEEK 2,RG,27,SIL,600.0,STOLEN,4929,"{'type': 'Point', 'coordinates': (-79.29410702, 43.68707633)}"
-4933,8654,GO-20142725123,PROPERTY - FOUND,2014-08-18T00:00:00,2014,August,Monday,18,230,0,2014-08-18T00:00:00,2014,August,Monday,18,230,9,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,SHIMANO,MT,21,BLK,,UNKNOWN,4930,"{'type': 'Point', 'coordinates': (-79.29255199, 43.68010915)}"
-4934,9041,GO-20143073926,THEFT UNDER,2014-10-09T00:00:00,2014,October,Thursday,9,282,16,2014-10-09T00:00:00,2014,October,Thursday,9,282,16,D54,Toronto,62,East End-Danforth (62),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,VIENNA,EL,1,YEL,800.0,STOLEN,4931,"{'type': 'Point', 'coordinates': (-79.31062815, 43.68616272)}"
-4935,9278,GO-2015150798,THEFT UNDER,2015-01-26T00:00:00,2015,January,Monday,26,26,10,2015-01-26T00:00:00,2015,January,Monday,26,26,12,D55,Toronto,62,East End-Danforth (62),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,YONGE IS,,EL,1,MRN,2000.0,STOLEN,4932,"{'type': 'Point', 'coordinates': (-79.3005068, 43.68844665)}"
-4936,9285,GO-2015189266,B&E,2015-01-31T00:00:00,2015,January,Saturday,31,31,22,2015-02-01T00:00:00,2015,February,Sunday,1,32,21,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,1,,600.0,STOLEN,4933,"{'type': 'Point', 'coordinates': (-79.28604808, 43.68062672)}"
-4937,9286,GO-2015189266,B&E,2015-01-31T00:00:00,2015,January,Saturday,31,31,22,2015-02-01T00:00:00,2015,February,Sunday,1,32,21,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,6,,,STOLEN,4934,"{'type': 'Point', 'coordinates': (-79.28604808, 43.68062672)}"
-4938,9404,GO-2015581613,B&E,2015-04-03T00:00:00,2015,April,Friday,3,93,18,2015-04-08T00:00:00,2015,April,Wednesday,8,98,21,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,JAMIS,,MT,18,LBL,800.0,STOLEN,4935,"{'type': 'Point', 'coordinates': (-79.29222707, 43.68752966)}"
-4939,9417,GO-20159001976,THEFT UNDER,2015-04-16T00:00:00,2015,April,Thursday,16,106,17,2015-04-16T00:00:00,2015,April,Thursday,16,106,17,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FJ,"29"""" MTB RED",MT,21,RED,750.0,STOLEN,4936,"{'type': 'Point', 'coordinates': (-79.29779131, 43.68547473)}"
-4940,9441,GO-2015649368,THEFT UNDER,2015-04-19T00:00:00,2015,April,Sunday,19,109,12,2015-04-19T00:00:00,2015,April,Sunday,19,109,19,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,5,RED,100.0,STOLEN,4937,"{'type': 'Point', 'coordinates': (-79.29583159, 43.67938411)}"
-4941,9442,GO-2015649368,THEFT UNDER,2015-04-19T00:00:00,2015,April,Sunday,19,109,12,2015-04-19T00:00:00,2015,April,Sunday,19,109,19,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,4,RED,60.0,STOLEN,4938,"{'type': 'Point', 'coordinates': (-79.29583159, 43.67938411)}"
-4942,9683,GO-2015901706,B&E,2015-05-30T00:00:00,2015,May,Saturday,30,150,3,2015-05-30T00:00:00,2015,May,Saturday,30,150,3,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,RAZOR,SC,0,BLK,150.0,STOLEN,4939,"{'type': 'Point', 'coordinates': (-79.29190363, 43.68185196)}"
-4943,9737,GO-2015955028,THEFT UNDER,2015-06-07T00:00:00,2015,June,Sunday,7,158,11,2015-06-07T00:00:00,2015,June,Sunday,7,158,17,D55,Toronto,62,East End-Danforth (62),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTS,,SC,0,BLKYEL,1200.0,STOLEN,4940,"{'type': 'Point', 'coordinates': (-79.30155909, 43.68767501)}"
-4944,9826,GO-20151013364,THEFT UNDER,2015-06-15T00:00:00,2015,June,Monday,15,166,22,2015-06-19T00:00:00,2015,June,Friday,19,170,9,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BLUE AVENUE,PB709HA2-6T,EL,3,BLUBLK,1000.0,STOLEN,4941,"{'type': 'Point', 'coordinates': (-79.30892122000002, 43.67646033)}"
-4945,9996,GO-20151179770,THEFT UNDER,2015-07-11T00:00:00,2015,July,Saturday,11,192,19,2015-07-12T00:00:00,2015,July,Sunday,12,193,13,D55,Toronto,62,East End-Danforth (62),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,EAGLE2,,EL,10,MRN,1500.0,STOLEN,4942,"{'type': 'Point', 'coordinates': (-79.30114138, 43.67812586)}"
-4946,10091,GO-20159004952,THEFT UNDER,2015-07-24T00:00:00,2015,July,Friday,24,205,16,2015-07-24T00:00:00,2015,July,Friday,24,205,19,D55,Toronto,62,East End-Danforth (62),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KO,SHRED,MT,1,GRY,500.0,STOLEN,4943,"{'type': 'Point', 'coordinates': (-79.30724223, 43.67447391)}"
-4947,10135,GO-20159005122,THEFT UNDER,2015-07-29T00:00:00,2015,July,Wednesday,29,210,16,2015-07-29T00:00:00,2015,July,Wednesday,29,210,17,D55,Toronto,62,East End-Danforth (62),"Apartment (Rooming House, Condo)",Apartment,OT,CROSSTRAIL EXPE,RG,27,RED,1200.0,STOLEN,4944,"{'type': 'Point', 'coordinates': (-79.28814693, 43.68042306)}"
-4948,10138,GO-20159005148,THEFT UNDER,2015-07-30T00:00:00,2015,July,Thursday,30,211,7,2015-07-30T00:00:00,2015,July,Thursday,30,211,7,D55,Toronto,62,East End-Danforth (62),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EM,MAX,OT,1,BLK,1200.0,STOLEN,4945,"{'type': 'Point', 'coordinates': (-79.3005068, 43.68844665)}"
-4949,10168,GO-20159005278,THEFT UNDER,2015-08-03T00:00:00,2015,August,Monday,3,215,0,2015-08-03T00:00:00,2015,August,Monday,3,215,15,D54,Toronto,62,East End-Danforth (62),"Apartment (Rooming House, Condo)",Apartment,UK,E-BIKE,EL,31,PNK,1300.0,STOLEN,4946,"{'type': 'Point', 'coordinates': (-79.2967315, 43.68930442)}"
-4950,10319,GO-20159006140,THEFT UNDER,2015-08-21T00:00:00,2015,August,Friday,21,233,8,2015-08-21T00:00:00,2015,August,Friday,21,233,22,D55,Toronto,62,East End-Danforth (62),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,SC,20,RED,800.0,STOLEN,4947,"{'type': 'Point', 'coordinates': (-79.30155909, 43.68767501)}"
-4951,10431,GO-20159006880,THEFT UNDER,2015-06-01T00:00:00,2015,June,Monday,1,152,12,2015-09-08T00:00:00,2015,September,Tuesday,8,251,12,D55,Toronto,62,East End-Danforth (62),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,MT,21,BLK,400.0,STOLEN,4948,"{'type': 'Point', 'coordinates': (-79.29265957, 43.68365894)}"
-4952,10487,GO-20159007327,POSSESSION PROPERTY OBC UNDER,2015-01-09T00:00:00,2015,January,Friday,9,9,16,2015-01-09T00:00:00,2015,January,Friday,9,9,16,D54,Toronto,62,East End-Danforth (62),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MATARO (TRACK B,OT,1,BLK,900.0,STOLEN,4949,"{'type': 'Point', 'coordinates': (-79.29786068, 43.68903988000001)}"
-4953,10709,GO-20151877095,THEFT UNDER,2015-10-03T00:00:00,2015,October,Saturday,3,276,11,2015-11-01T00:00:00,2015,November,Sunday,1,305,10,D54,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,,OT,24,SIL,750.0,STOLEN,4950,"{'type': 'Point', 'coordinates': (-79.30762828, 43.68765923)}"
-4954,10754,GO-20159009637,THEFT UNDER,2015-11-10T00:00:00,2015,November,Tuesday,10,314,22,2015-11-11T00:00:00,2015,November,Wednesday,11,315,15,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,TREK 4500,MT,24,BLK,1000.0,STOLEN,4951,"{'type': 'Point', 'coordinates': (-79.29265957, 43.68365894)}"
-4955,10856,GO-20159010778,THEFT UNDER,2015-12-10T00:00:00,2015,December,Thursday,10,344,8,2015-12-10T00:00:00,2015,December,Thursday,10,344,20,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,STRADA T6,RC,10,BLU,650.0,STOLEN,4952,"{'type': 'Point', 'coordinates': (-79.28943238, 43.68626339)}"
-4956,10898,GO-20152193950,THEFT UNDER,2015-12-23T00:00:00,2015,December,Wednesday,23,357,0,2015-12-23T00:00:00,2015,December,Wednesday,23,357,0,D55,Toronto,62,East End-Danforth (62),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,220 MT,MT,10,REDSIL,300.0,UNKNOWN,4953,"{'type': 'Point', 'coordinates': (-79.29190363, 43.68185196)}"
-4957,10972,GO-20169001189,THEFT UNDER,2016-01-25T00:00:00,2016,January,Monday,25,25,19,2016-02-06T00:00:00,2016,February,Saturday,6,37,16,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,THRIVE COMAX 1,RG,22,BLK,2000.0,STOLEN,4954,"{'type': 'Point', 'coordinates': (-79.28814693, 43.68042306)}"
-4958,5965,GO-20209009006,THEFT UNDER,2020-03-13T00:00:00,2020,March,Friday,13,73,23,2020-03-15T00:00:00,2020,March,Sunday,15,75,14,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,CA,,RG,18,BLK,1200.0,STOLEN,5187,"{'type': 'Point', 'coordinates': (-79.35047888, 43.66047387)}"
-4959,10986,GO-20169001327,THEFT UNDER,2016-01-29T00:00:00,2016,January,Friday,29,29,6,2016-02-10T00:00:00,2016,February,Wednesday,10,41,20,D55,Toronto,62,East End-Danforth (62),"Apartment (Rooming House, Condo)",Apartment,FJ,,RC,1,WHI,500.0,STOLEN,4955,"{'type': 'Point', 'coordinates': (-79.30076798, 43.68522739)}"
-4960,11613,GO-20169006215,THEFT UNDER,2016-06-16T00:00:00,2016,June,Thursday,16,168,15,2016-06-22T00:00:00,2016,June,Wednesday,22,174,12,D54,Toronto,62,East End-Danforth (62),Ttc Subway Station,Transit,OT,MILANO,RG,21,BLK,600.0,STOLEN,4956,"{'type': 'Point', 'coordinates': (-79.31310933, 43.68652567000001)}"
-4961,11643,GO-20161119810,B&E,2016-06-26T00:00:00,2016,June,Sunday,26,178,14,2016-06-26T00:00:00,2016,June,Sunday,26,178,21,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,MOUNTAIN,MT,18,SIL,200.0,STOLEN,4957,"{'type': 'Point', 'coordinates': (-79.30742332, 43.67866627)}"
-4962,11708,GO-20161168882,THEFT UNDER - BICYCLE,2016-07-01T00:00:00,2016,July,Friday,1,183,14,2016-07-04T00:00:00,2016,July,Monday,4,186,14,D55,Toronto,62,East End-Danforth (62),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,SIRRUS,OT,21,BLK,250.0,STOLEN,4958,"{'type': 'Point', 'coordinates': (-79.30088278, 43.68550226)}"
-4963,11729,GO-20169006839,THEFT UNDER - BICYCLE,2016-07-06T00:00:00,2016,July,Wednesday,6,188,2,2016-07-07T00:00:00,2016,July,Thursday,7,189,11,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,18,OTH,700.0,STOLEN,4959,"{'type': 'Point', 'coordinates': (-79.30641248, 43.67888396)}"
-4964,11831,GO-20169007328,THEFT UNDER - BICYCLE,2016-07-17T00:00:00,2016,July,Sunday,17,199,2,2016-07-18T00:00:00,2016,July,Monday,18,200,13,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,CROSSTRAIL ELIT,RG,18,BLK,1050.0,STOLEN,4960,"{'type': 'Point', 'coordinates': (-79.3021187, 43.67941268)}"
-4965,11832,GO-20169007328,THEFT UNDER - BICYCLE,2016-07-17T00:00:00,2016,July,Sunday,17,199,2,2016-07-18T00:00:00,2016,July,Monday,18,200,13,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,GIANT ROAM,MT,18,GRY,1050.0,STOLEN,4961,"{'type': 'Point', 'coordinates': (-79.3021187, 43.67941268)}"
-4966,11833,GO-20169007328,THEFT UNDER - BICYCLE,2016-07-17T00:00:00,2016,July,Sunday,17,199,2,2016-07-18T00:00:00,2016,July,Monday,18,200,13,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,GIAN CYPRESS HY,MT,18,DBL,600.0,STOLEN,4962,"{'type': 'Point', 'coordinates': (-79.3021187, 43.67941268)}"
-4967,11994,GO-20169008208,THEFT UNDER - BICYCLE,2016-07-30T00:00:00,2016,July,Saturday,30,212,16,2016-08-04T00:00:00,2016,August,Thursday,4,217,14,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,INDIE 2,RG,27,WHI,680.0,STOLEN,4963,"{'type': 'Point', 'coordinates': (-79.29599307, 43.68509658)}"
-4968,12004,GO-20169008245,THEFT UNDER - BICYCLE,2016-08-04T00:00:00,2016,August,Thursday,4,217,10,2016-08-04T00:00:00,2016,August,Thursday,4,217,23,D54,Toronto,62,East End-Danforth (62),Ttc Subway Station,Transit,SU,WOMENS ADULT PI,RG,10,PNK,100.0,STOLEN,4964,"{'type': 'Point', 'coordinates': (-79.31310933, 43.68652567000001)}"
-4969,12099,GO-20169008782,THEFT UNDER - BICYCLE,2016-08-15T00:00:00,2016,August,Monday,15,228,0,2016-08-15T00:00:00,2016,August,Monday,15,228,12,D54,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RA,SERENGETI,MT,18,RED,100.0,STOLEN,4965,"{'type': 'Point', 'coordinates': (-79.29683124, 43.69036292)}"
-4970,12111,GO-20169008856,THEFT UNDER,2016-08-14T00:00:00,2016,August,Sunday,14,227,16,2016-08-16T00:00:00,2016,August,Tuesday,16,229,10,D54,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,OT,21,OTH,200.0,STOLEN,4966,"{'type': 'Point', 'coordinates': (-79.30387522, 43.69004961)}"
-4971,12132,GO-20169009005,THEFT UNDER - BICYCLE,2016-08-17T00:00:00,2016,August,Wednesday,17,230,13,2016-08-18T00:00:00,2016,August,Thursday,18,231,13,D54,Toronto,62,East End-Danforth (62),"Apartment (Rooming House, Condo)",Apartment,SU,,RG,21,BLK,1000.0,STOLEN,4967,"{'type': 'Point', 'coordinates': (-79.31089756000002, 43.68611329)}"
-4972,12152,GO-20169009127,THEFT UNDER,2016-08-20T00:00:00,2016,August,Saturday,20,233,13,2016-08-20T00:00:00,2016,August,Saturday,20,233,13,D55,Toronto,62,East End-Danforth (62),"Apartment (Rooming House, Condo)",Apartment,GT,,MT,12,SIL,300.0,STOLEN,4968,"{'type': 'Point', 'coordinates': (-79.2934083, 43.68540038)}"
-4973,12157,GO-20161485894,PROPERTY - FOUND,2016-08-22T00:00:00,2016,August,Monday,22,235,13,2016-08-22T00:00:00,2016,August,Monday,22,235,13,D55,Toronto,62,East End-Danforth (62),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,SC1800,MT,18,BLU,100.0,UNKNOWN,4969,"{'type': 'Point', 'coordinates': (-79.28916309, 43.68036392)}"
-4974,12172,GO-20169009221,THEFT UNDER - BICYCLE,2016-08-19T00:00:00,2016,August,Friday,19,232,23,2016-08-22T00:00:00,2016,August,Monday,22,235,9,D55,Toronto,62,East End-Danforth (62),"Apartment (Rooming House, Condo)",Apartment,GI,OCR2,RC,24,BLU,400.0,STOLEN,4970,"{'type': 'Point', 'coordinates': (-79.2934083, 43.68540038)}"
-4975,12216,GO-20161527955,THEFT OF EBIKE UNDER $5000,2016-08-24T00:00:00,2016,August,Wednesday,24,237,7,2016-08-28T00:00:00,2016,August,Sunday,28,241,21,D55,Toronto,62,East End-Danforth (62),Go Station,Transit,OTHER,DAYMAK,EL,0,BLK,1000.0,STOLEN,4971,"{'type': 'Point', 'coordinates': (-79.30088278, 43.68550226)}"
-4976,12355,GO-20169010503,THEFT UNDER,2016-09-14T00:00:00,2016,September,Wednesday,14,258,18,2016-09-15T00:00:00,2016,September,Thursday,15,259,19,D55,Toronto,62,East End-Danforth (62),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,7.2 FX,RG,8,BLU,644.0,STOLEN,4972,"{'type': 'Point', 'coordinates': (-79.30023495, 43.68443803000001)}"
-4977,12360,GO-20161644098,B&E,2016-09-13T00:00:00,2016,September,Tuesday,13,257,9,2016-09-15T00:00:00,2016,September,Thursday,15,259,20,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,SOFT TAIL,MT,0,BLU,3000.0,STOLEN,4973,"{'type': 'Point', 'coordinates': (-79.29316895, 43.68157604)}"
-4978,12361,GO-20161644098,B&E,2016-09-13T00:00:00,2016,September,Tuesday,13,257,9,2016-09-15T00:00:00,2016,September,Thursday,15,259,20,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GARY FISHER,HARD TAIL,MT,0,BLU,1800.0,STOLEN,4974,"{'type': 'Point', 'coordinates': (-79.29316895, 43.68157604)}"
-4979,12362,GO-20161644098,B&E,2016-09-13T00:00:00,2016,September,Tuesday,13,257,9,2016-09-15T00:00:00,2016,September,Thursday,15,259,20,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,DEVINCI,,RG,0,BLKRED,2200.0,STOLEN,4975,"{'type': 'Point', 'coordinates': (-79.29316895, 43.68157604)}"
-4980,12542,GO-20169011499,THEFT UNDER - BICYCLE,2016-10-01T00:00:00,2016,October,Saturday,1,275,11,2016-10-03T00:00:00,2016,October,Monday,3,277,16,D54,Toronto,62,East End-Danforth (62),Ttc Subway Station,Transit,UK,,MT,15,BLU,400.0,STOLEN,4976,"{'type': 'Point', 'coordinates': (-79.30093674, 43.68940767)}"
-4981,12653,GO-20161823233,B&E W'INTENT,2016-10-13T00:00:00,2016,October,Thursday,13,287,17,2016-10-13T00:00:00,2016,October,Thursday,13,287,17,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,,OT,3,BLK,700.0,STOLEN,4977,"{'type': 'Point', 'coordinates': (-79.29065471, 43.68211585)}"
-4982,12654,GO-20161823233,B&E W'INTENT,2016-10-13T00:00:00,2016,October,Thursday,13,287,17,2016-10-13T00:00:00,2016,October,Thursday,13,287,17,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,,OT,3,CRM,550.0,STOLEN,4978,"{'type': 'Point', 'coordinates': (-79.29065471, 43.68211585)}"
-4983,12768,GO-20169013474,THEFT UNDER,2016-11-15T00:00:00,2016,November,Tuesday,15,320,10,2016-11-15T00:00:00,2016,November,Tuesday,15,320,22,D55,Toronto,62,East End-Danforth (62),Schools During Un-Supervised Activity,Educational,NO,,MT,18,WHI,600.0,STOLEN,4979,"{'type': 'Point', 'coordinates': (-79.29265957, 43.68365894)}"
-4984,12779,GO-20162047779,THEFT UNDER - BICYCLE,2016-11-17T00:00:00,2016,November,Thursday,17,322,17,2016-11-18T00:00:00,2016,November,Friday,18,323,7,D55,Toronto,62,East End-Danforth (62),"Apartment (Rooming House, Condo)",Apartment,KONA,,MT,21,BLKWHI,1000.0,STOLEN,4980,"{'type': 'Point', 'coordinates': (-79.30963163, 43.67818369)}"
-4985,12782,GO-20162048254,THEFT UNDER - BICYCLE,2016-11-17T00:00:00,2016,November,Thursday,17,322,18,2016-11-18T00:00:00,2016,November,Friday,18,323,10,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNK,,RC,12,RED,1200.0,STOLEN,4981,"{'type': 'Point', 'coordinates': (-79.30641248, 43.67888396)}"
-4986,12806,GO-20162068868,THEFT OF EBIKE UNDER $5000,2016-08-19T00:00:00,2016,August,Friday,19,232,8,2016-11-21T00:00:00,2016,November,Monday,21,326,15,D55,Toronto,62,East End-Danforth (62),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,ASTON,EL,1,WHIBLK,,STOLEN,4982,"{'type': 'Point', 'coordinates': (-79.30088278, 43.68550226)}"
-4987,12881,GO-20189026868,THEFT UNDER - BICYCLE,2018-08-18T00:00:00,2018,August,Saturday,18,230,11,2018-08-18T00:00:00,2018,August,Saturday,18,230,12,D54,Toronto,62,East End-Danforth (62),Ttc Subway Station,Transit,UK,PARATROOPER PRO,MT,27,BLK,1800.0,STOLEN,4983,"{'type': 'Point', 'coordinates': (-79.31273908, 43.68568467)}"
-4988,12892,GO-20181748193,B&E,2018-09-21T00:00:00,2018,September,Friday,21,264,0,2018-09-21T00:00:00,2018,September,Friday,21,264,8,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,LOUIS GARNEAU,,RC,21,BLK,1000.0,STOLEN,4984,"{'type': 'Point', 'coordinates': (-79.3052889, 43.68098824)}"
-4989,12907,GO-20182074030,B&E,2018-10-24T00:00:00,2018,October,Wednesday,24,297,0,2018-11-10T00:00:00,2018,November,Saturday,10,314,15,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,AMIRA COMP SL,RC,18,,4000.0,STOLEN,4985,"{'type': 'Point', 'coordinates': (-79.29871872, 43.68424822)}"
-4990,12908,GO-20182074030,B&E,2018-10-24T00:00:00,2018,October,Wednesday,24,297,0,2018-11-10T00:00:00,2018,November,Saturday,10,314,15,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CERVELO,R3,RC,21,,4500.0,STOLEN,4986,"{'type': 'Point', 'coordinates': (-79.29871872, 43.68424822)}"
-4991,12910,GO-20189038114,THEFT UNDER - BICYCLE,2018-11-13T00:00:00,2018,November,Tuesday,13,317,20,2018-11-13T00:00:00,2018,November,Tuesday,13,317,23,D55,Toronto,62,East End-Danforth (62),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,TRICROSS,RC,21,BLK,1250.0,STOLEN,4987,"{'type': 'Point', 'coordinates': (-79.30431327, 43.67870059)}"
-4992,12927,GO-20199013601,THEFT UNDER,2019-04-30T00:00:00,2019,April,Tuesday,30,120,12,2019-05-01T00:00:00,2019,May,Wednesday,1,121,13,D55,Toronto,62,East End-Danforth (62),Schools During Un-Supervised Activity,Educational,GI,ESCAPE 3,MT,7,BLK,500.0,STOLEN,4988,"{'type': 'Point', 'coordinates': (-79.29265957, 43.68365894)}"
-4993,12944,GO-20199020018,THEFT UNDER,2019-06-25T00:00:00,2019,June,Tuesday,25,176,9,2019-06-25T00:00:00,2019,June,Tuesday,25,176,9,D55,Toronto,62,East End-Danforth (62),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,FEATHER,RC,1,,700.0,STOLEN,4989,"{'type': 'Point', 'coordinates': (-79.30011602, 43.68394954)}"
-4994,12964,GO-20199025371,THEFT UNDER,2019-07-28T00:00:00,2019,July,Sunday,28,209,0,2019-08-08T00:00:00,2019,August,Thursday,8,220,12,D55,Toronto,62,East End-Danforth (62),Go Station,Transit,OT,,MT,23,ONG,200.0,STOLEN,4990,"{'type': 'Point', 'coordinates': (-79.30088278, 43.68550226)}"
-4995,13008,GO-20192256538,THEFT OF EBIKE UNDER $5000,2019-11-21T00:00:00,2019,November,Thursday,21,325,17,2019-11-22T00:00:00,2019,November,Friday,22,326,19,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,EMMO,SOHO 2.0,EL,1,BLK,1810.0,STOLEN,4991,"{'type': 'Point', 'coordinates': (-79.29798392000001, 43.67888482)}"
-4996,13031,GO-2020844592,THEFT UNDER - BICYCLE,2020-05-04T00:00:00,2020,May,Monday,4,125,23,2020-05-05T00:00:00,2020,May,Tuesday,5,126,18,D55,Toronto,62,East End-Danforth (62),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,SOHO DELUXE,OT,10,BLKONG,1650.0,STOLEN,4992,"{'type': 'Point', 'coordinates': (-79.29265957, 43.68365894)}"
-4997,14095,GO-20169009002,THEFT UNDER - BICYCLE,2016-08-18T00:00:00,2016,August,Thursday,18,231,1,2016-08-18T00:00:00,2016,August,Thursday,18,231,13,D54,Toronto,62,East End-Danforth (62),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,21,BLK,600.0,STOLEN,4993,"{'type': 'Point', 'coordinates': (-79.31089756000002, 43.68611329)}"
-4998,14168,GO-20179009514,THEFT UNDER - BICYCLE,2017-07-05T00:00:00,2017,July,Wednesday,5,186,14,2017-07-05T00:00:00,2017,July,Wednesday,5,186,17,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,KENSINGTON,OT,6,BLU,250.0,STOLEN,4994,"{'type': 'Point', 'coordinates': (-79.31060518, 43.68343763)}"
-4999,14170,GO-20179010114,THEFT UNDER - BICYCLE,2017-07-11T00:00:00,2017,July,Tuesday,11,192,0,2017-07-13T00:00:00,2017,July,Thursday,13,194,16,D55,Toronto,62,East End-Danforth (62),"Apartment (Rooming House, Condo)",Apartment,GI,GIANT ANYROAD C,RG,11,GRY,2000.0,STOLEN,4995,"{'type': 'Point', 'coordinates': (-79.31071492, 43.68079300000001)}"
-5000,14223,GO-20189009899,THEFT UNDER - BICYCLE,2018-03-28T00:00:00,2018,March,Wednesday,28,87,9,2018-03-28T00:00:00,2018,March,Wednesday,28,87,22,D55,Toronto,62,East End-Danforth (62),Go Station,Transit,UK,SPECIALIZED SIR,RG,27,BLU,300.0,STOLEN,4996,"{'type': 'Point', 'coordinates': (-79.30088278, 43.68550226)}"
-5001,14240,GO-20189017987,THEFT UNDER - BICYCLE,2018-06-08T00:00:00,2018,June,Friday,8,159,16,2018-06-09T00:00:00,2018,June,Saturday,9,160,12,D55,Toronto,62,East End-Danforth (62),Go Station,Transit,NO,INDIE 2,RG,24,ONG,1000.0,STOLEN,4997,"{'type': 'Point', 'coordinates': (-79.30088278, 43.68550226)}"
-5002,14243,GO-20181107211,B&E,2018-06-18T00:00:00,2018,June,Monday,18,169,9,2018-06-18T00:00:00,2018,June,Monday,18,169,13,D55,Toronto,62,East End-Danforth (62),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GR1ND,,RC,10,BLK,500.0,STOLEN,4998,"{'type': 'Point', 'coordinates': (-79.29871872, 43.68424822)}"
-5003,9754,GO-2015952509,THEFT UNDER,2015-06-06T00:00:00,2015,June,Saturday,6,157,17,2015-06-07T00:00:00,2015,June,Sunday,7,158,7,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DAYMARK,EAGLE,SC,0,BLK,2300.0,STOLEN,4999,"{'type': 'Point', 'coordinates': (-79.31617536, 43.66549298000001)}"
-5004,9896,GO-20151076457,THEFT UNDER,2015-06-24T00:00:00,2015,June,Wednesday,24,175,18,2015-06-26T00:00:00,2015,June,Friday,26,177,13,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,RG,24,LGR,,STOLEN,5000,"{'type': 'Point', 'coordinates': (-79.32395096, 43.67184363)}"
-5005,10429,GO-20151545537,THEFT UNDER,2015-09-03T00:00:00,2015,September,Thursday,3,246,15,2015-09-07T00:00:00,2015,September,Monday,7,250,16,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,PERFORMANCE,MT,21,RED,,RECOVERED,5001,"{'type': 'Point', 'coordinates': (-79.32997313, 43.67708704)}"
-5006,10430,GO-20159006873,THEFT UNDER,2015-09-06T00:00:00,2015,September,Sunday,6,249,20,2015-09-08T00:00:00,2015,September,Tuesday,8,251,9,D55,Toronto,65,Greenwood-Coxwell (65),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,27,BLU,833.0,STOLEN,5002,"{'type': 'Point', 'coordinates': (-79.32014233, 43.66833167000001)}"
-5007,10480,GO-20159007275,THEFT UNDER,2015-09-16T00:00:00,2015,September,Wednesday,16,259,8,2015-09-16T00:00:00,2015,September,Wednesday,16,259,16,D55,Toronto,65,Greenwood-Coxwell (65),Schools During Un-Supervised Activity,Educational,KO,,MT,24,TRQ,450.0,STOLEN,5003,"{'type': 'Point', 'coordinates': (-79.32328138, 43.6795952)}"
-5008,10844,GO-20159010613,THEFT UNDER,2015-12-07T00:00:00,2015,December,Monday,7,341,0,2015-12-08T00:00:00,2015,December,Tuesday,8,342,12,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RM,FLARE,MT,24,BLK,600.0,STOLEN,5004,"{'type': 'Point', 'coordinates': (-79.32524436, 43.67497809)}"
-5009,10904,GO-20169000009,THEFT UNDER,2015-12-31T00:00:00,2015,December,Thursday,31,365,15,2016-01-01T00:00:00,2016,January,Friday,1,1,12,D55,Toronto,65,Greenwood-Coxwell (65),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,STORM 7.2,MT,27,GRY,785.0,STOLEN,5005,"{'type': 'Point', 'coordinates': (-79.31926987, 43.67290749)}"
-5010,10912,GO-20169000223,THEFT UNDER,2016-01-07T00:00:00,2016,January,Thursday,7,7,7,2016-01-07T00:00:00,2016,January,Thursday,7,7,13,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,HYBRID,OT,8,,1850.0,STOLEN,5006,"{'type': 'Point', 'coordinates': (-79.3267799, 43.67886451)}"
-5011,10929,GO-2016101050,THEFT UNDER,2016-01-14T00:00:00,2016,January,Thursday,14,14,18,2016-01-17T00:00:00,2016,January,Sunday,17,17,19,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,RG,18,BLK,,STOLEN,5007,"{'type': 'Point', 'coordinates': (-79.32036035, 43.67266617)}"
-5012,10930,GO-2016101050,THEFT UNDER,2016-01-14T00:00:00,2016,January,Thursday,14,14,18,2016-01-17T00:00:00,2016,January,Sunday,17,17,19,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,RG,18,BLU,,STOLEN,5008,"{'type': 'Point', 'coordinates': (-79.32036035, 43.67266617)}"
-5013,11113,GO-2016591928,THEFT UNDER - BICYCLE,2016-04-07T00:00:00,2016,April,Thursday,7,98,12,2016-04-07T00:00:00,2016,April,Thursday,7,98,18,D55,Toronto,65,Greenwood-Coxwell (65),Schools During Supervised Activity,Educational,SPECIALIZED,,MT,21,GRN,800.0,STOLEN,5009,"{'type': 'Point', 'coordinates': (-79.32328138, 43.6795952)}"
-5014,11173,GO-20151133851,PROPERTY - FOUND,2015-07-01T00:00:00,2015,July,Wednesday,1,182,8,2015-07-05T00:00:00,2015,July,Sunday,5,186,16,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,MT,99,,,UNKNOWN,5010,"{'type': 'Point', 'coordinates': (-79.3212511, 43.66529095)}"
-5015,11209,GO-20151717265,PROPERTY - FOUND,2015-10-05T00:00:00,2015,October,Monday,5,278,9,2015-10-05T00:00:00,2015,October,Monday,5,278,12,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,BOARDWALK,RG,6,GRN,,UNKNOWN,5011,"{'type': 'Point', 'coordinates': (-79.32444497, 43.67015214)}"
-5016,11382,GO-2016896686,THEFT UNDER - BICYCLE,2016-05-18T00:00:00,2016,May,Wednesday,18,139,8,2016-05-24T00:00:00,2016,May,Tuesday,24,145,20,D55,Toronto,65,Greenwood-Coxwell (65),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SCOTT,PEAK,OT,21,GRY,400.0,STOLEN,5012,"{'type': 'Point', 'coordinates': (-79.32271725, 43.674542130000006)}"
-5017,11429,GO-2016950031,THEFT UNDER - BICYCLE,2016-05-29T00:00:00,2016,May,Sunday,29,150,16,2016-06-01T00:00:00,2016,June,Wednesday,1,153,15,D55,Toronto,65,Greenwood-Coxwell (65),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,,EL,1,WHI,1395.0,STOLEN,5013,"{'type': 'Point', 'coordinates': (-79.31617536, 43.66549298000001)}"
-5018,11693,GO-20161160931,THEFT OF EBIKE UNDER $5000,2016-07-03T00:00:00,2016,July,Sunday,3,185,3,2016-07-03T00:00:00,2016,July,Sunday,3,185,8,D55,Toronto,65,Greenwood-Coxwell (65),"Open Areas (Lakes, Parks, Rivers)",Outside,EMMO,,EL,1,BLK,1400.0,STOLEN,5014,"{'type': 'Point', 'coordinates': (-79.32053547, 43.66358697)}"
-5019,11712,GO-20169006731,THEFT UNDER,2016-07-03T00:00:00,2016,July,Sunday,3,185,18,2016-07-05T00:00:00,2016,July,Tuesday,5,187,8,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,OTTAWA,RG,21,RED,250.0,STOLEN,5015,"{'type': 'Point', 'coordinates': (-79.32485369, 43.67405485)}"
-5020,11754,GO-20161207814,THEFT UNDER - BICYCLE,2016-07-09T00:00:00,2016,July,Saturday,9,191,23,2016-07-10T00:00:00,2016,July,Sunday,10,192,13,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,XL ESCAPE 3,MT,0,GRY,500.0,STOLEN,5016,"{'type': 'Point', 'coordinates': (-79.32485369, 43.67405485)}"
-5021,11775,GO-20169007083,THEFT UNDER,2016-07-12T00:00:00,2016,July,Tuesday,12,194,7,2016-07-12T00:00:00,2016,July,Tuesday,12,194,12,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,RAPTOR,EL,1,ONG,400.0,STOLEN,5017,"{'type': 'Point', 'coordinates': (-79.32547877, 43.66764684)}"
-5022,11795,GO-20161232525,B&E,2016-07-14T00:00:00,2016,July,Thursday,14,196,4,2016-07-14T00:00:00,2016,July,Thursday,14,196,5,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CERVELO,SOLOIST,RC,12,,2000.0,STOLEN,5018,"{'type': 'Point', 'coordinates': (-79.32385697, 43.67428532)}"
-5023,11796,GO-20161232525,B&E,2016-07-14T00:00:00,2016,July,Thursday,14,196,4,2016-07-14T00:00:00,2016,July,Thursday,14,196,5,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RIDLEY,CROSS BOW,RC,12,,2000.0,STOLEN,5019,"{'type': 'Point', 'coordinates': (-79.32385697, 43.67428532)}"
-5024,11797,GO-20161232525,B&E,2016-07-14T00:00:00,2016,July,Thursday,14,196,4,2016-07-14T00:00:00,2016,July,Thursday,14,196,5,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNADALE,CAAD,RC,12,,1200.0,STOLEN,5020,"{'type': 'Point', 'coordinates': (-79.32385697, 43.67428532)}"
-5025,11950,GO-20161346274,THEFT UNDER - BICYCLE,2016-07-31T00:00:00,2016,July,Sunday,31,213,17,2016-07-31T00:00:00,2016,July,Sunday,31,213,17,D55,Toronto,65,Greenwood-Coxwell (65),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,1.2,RC,6,LBL,1230.0,STOLEN,5021,"{'type': 'Point', 'coordinates': (-79.32006867000001, 43.66578511)}"
-5026,11951,GO-20161346274,THEFT UNDER - BICYCLE,2016-07-31T00:00:00,2016,July,Sunday,31,213,17,2016-07-31T00:00:00,2016,July,Sunday,31,213,17,D55,Toronto,65,Greenwood-Coxwell (65),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,1.5,RC,6,BLUWHI,1200.0,STOLEN,5022,"{'type': 'Point', 'coordinates': (-79.32006867000001, 43.66578511)}"
-5027,12200,GO-20169009481,THEFT UNDER - BICYCLE,2016-08-25T00:00:00,2016,August,Thursday,25,238,13,2016-08-25T00:00:00,2016,August,Thursday,25,238,13,D55,Toronto,65,Greenwood-Coxwell (65),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SU,,RG,6,RED,90.0,STOLEN,5023,"{'type': 'Point', 'coordinates': (-79.31656232, 43.66635918)}"
-5028,12211,GO-20169009571,THEFT UNDER,2016-08-25T00:00:00,2016,August,Thursday,25,238,23,2016-08-27T00:00:00,2016,August,Saturday,27,240,12,D55,Toronto,65,Greenwood-Coxwell (65),Convenience Stores,Commercial,OT,ROCKHOPPER COMP,MT,27,SIL,0.0,STOLEN,5024,"{'type': 'Point', 'coordinates': (-79.32798238, 43.67092263000001)}"
-5029,12244,GO-20161555583,THEFT UNDER - BICYCLE,2016-09-01T00:00:00,2016,September,Thursday,1,245,11,2016-09-02T00:00:00,2016,September,Friday,2,246,8,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,RACER,MT,10,RED,800.0,STOLEN,5025,"{'type': 'Point', 'coordinates': (-79.32119568, 43.67247049)}"
-5030,12349,GO-20169010481,THEFT UNDER,2016-09-13T00:00:00,2016,September,Tuesday,13,257,9,2016-09-15T00:00:00,2016,September,Thursday,15,259,11,D55,Toronto,65,Greenwood-Coxwell (65),Schools During Supervised Activity,Educational,RA,REDUX 1 SMALL,TO,8,BLK,690.0,STOLEN,5026,"{'type': 'Point', 'coordinates': (-79.32328138, 43.6795952)}"
-5031,12679,GO-20169012617,THEFT UNDER - BICYCLE,2016-10-24T00:00:00,2016,October,Monday,24,298,21,2016-10-26T00:00:00,2016,October,Wednesday,26,300,14,D55,Toronto,65,Greenwood-Coxwell (65),"Gas Station (Self, Full, Attached Convenience)",Commercial,UK,ELEGANCE 701,OT,21,GRY,450.0,STOLEN,5027,"{'type': 'Point', 'coordinates': (-79.33234245, 43.6814835)}"
-5032,12722,GO-20161960455,THEFT UNDER - BICYCLE,2016-11-03T00:00:00,2016,November,Thursday,3,308,19,2016-11-04T00:00:00,2016,November,Friday,4,309,8,D55,Toronto,65,Greenwood-Coxwell (65),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,CROSSROADS,RG,12,,1000.0,STOLEN,5028,"{'type': 'Point', 'coordinates': (-79.3275818, 43.68075601)}"
-5033,12893,GO-20189031605,THEFT UNDER - BICYCLE,2018-09-18T00:00:00,2018,September,Tuesday,18,261,18,2018-09-23T00:00:00,2018,September,Sunday,23,266,11,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,,RG,6,,300.0,STOLEN,5029,"{'type': 'Point', 'coordinates': (-79.32128430000002, 43.67486395)}"
-5034,12899,GO-20189034101,THEFT UNDER - BICYCLE,2018-10-14T00:00:00,2018,October,Sunday,14,287,16,2018-10-15T00:00:00,2018,October,Monday,15,288,7,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,1,BLK,200.0,STOLEN,5030,"{'type': 'Point', 'coordinates': (-79.32524436, 43.67497809)}"
-5035,12919,GO-20199000972,THEFT UNDER - BICYCLE,2019-01-05T00:00:00,2019,January,Saturday,5,5,23,2019-01-08T00:00:00,2019,January,Tuesday,8,8,21,D55,Toronto,65,Greenwood-Coxwell (65),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,RG,1,WHI,0.0,STOLEN,5031,"{'type': 'Point', 'coordinates': (-79.32496824, 43.66654888)}"
-5036,12920,GO-20199003002,THEFT UNDER - BICYCLE,2019-01-15T00:00:00,2019,January,Tuesday,15,15,2,2019-01-22T00:00:00,2019,January,Tuesday,22,22,14,D55,Toronto,65,Greenwood-Coxwell (65),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,GARIBALDI G3,TO,18,GRY,1800.0,STOLEN,5032,"{'type': 'Point', 'coordinates': (-79.32230293, 43.66785798)}"
-5037,12921,GO-20199003002,THEFT UNDER - BICYCLE,2019-01-15T00:00:00,2019,January,Tuesday,15,15,2,2019-01-22T00:00:00,2019,January,Tuesday,22,22,14,D55,Toronto,65,Greenwood-Coxwell (65),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,,TO,18,BLU,1800.0,STOLEN,5033,"{'type': 'Point', 'coordinates': (-79.32230293, 43.66785798)}"
-5038,12995,GO-20199033875,THEFT UNDER,2019-10-14T00:00:00,2019,October,Monday,14,287,21,2019-10-14T00:00:00,2019,October,Monday,14,287,22,D55,Toronto,65,Greenwood-Coxwell (65),Bar / Restaurant,Commercial,TR,,RG,9,BLK,700.0,STOLEN,5034,"{'type': 'Point', 'coordinates': (-79.32489877, 43.67161105)}"
-5039,14084,GO-20169007863,THEFT UNDER - BICYCLE,2016-07-26T00:00:00,2016,July,Tuesday,26,208,1,2016-07-27T00:00:00,2016,July,Wednesday,27,209,20,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,MT,14,BLK,1800.0,STOLEN,5035,"{'type': 'Point', 'coordinates': (-79.32234881, 43.66504062)}"
-5040,14089,GO-20169008297,THEFT UNDER - BICYCLE,2016-08-06T00:00:00,2016,August,Saturday,6,219,12,2016-08-06T00:00:00,2016,August,Saturday,6,219,14,D55,Toronto,65,Greenwood-Coxwell (65),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,DAWG,MT,18,OTH,2000.0,STOLEN,5036,"{'type': 'Point', 'coordinates': (-79.32036035, 43.67266617)}"
-5041,14109,GO-20169011089,THEFT UNDER,2016-09-25T00:00:00,2016,September,Sunday,25,269,14,2016-09-25T00:00:00,2016,September,Sunday,25,269,19,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RE,,BM,1,,500.0,STOLEN,5037,"{'type': 'Point', 'coordinates': (-79.32393815000002, 43.66469202)}"
-5042,14129,GO-20169014076,THEFT UNDER - BICYCLE,2016-11-30T00:00:00,2016,November,Wednesday,30,335,20,2016-12-01T00:00:00,2016,December,Thursday,1,336,9,D55,Toronto,65,Greenwood-Coxwell (65),"Apartment (Rooming House, Condo)",Apartment,CC,,MT,21,BLK,500.0,STOLEN,5038,"{'type': 'Point', 'coordinates': (-79.31926987, 43.67290749)}"
-5043,14130,GO-20169014076,THEFT UNDER - BICYCLE,2016-11-30T00:00:00,2016,November,Wednesday,30,335,20,2016-12-01T00:00:00,2016,December,Thursday,1,336,9,D55,Toronto,65,Greenwood-Coxwell (65),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,21,BLK,400.0,STOLEN,5039,"{'type': 'Point', 'coordinates': (-79.31926987, 43.67290749)}"
-5044,14160,GO-20179007284,THEFT UNDER,2017-05-30T00:00:00,2017,May,Tuesday,30,150,9,2017-05-31T00:00:00,2017,May,Wednesday,31,151,9,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,RG,20,DBL,500.0,STOLEN,5040,"{'type': 'Point', 'coordinates': (-79.32550967, 43.68118943)}"
-5045,14165,GO-20179009152,THEFT UNDER - BICYCLE,2017-06-28T00:00:00,2017,June,Wednesday,28,179,9,2017-06-29T00:00:00,2017,June,Thursday,29,180,11,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,CROSS ROAD SPOR,TO,18,SIL,600.0,STOLEN,5041,"{'type': 'Point', 'coordinates': (-79.3267799, 43.67886451)}"
-5046,14211,GO-20179018195,THEFT UNDER - BICYCLE,2017-10-24T00:00:00,2017,October,Tuesday,24,297,19,2017-10-25T00:00:00,2017,October,Wednesday,25,298,19,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,FO,1,BLU,200.0,STOLEN,5042,"{'type': 'Point', 'coordinates': (-79.32547877, 43.66764684)}"
-5047,14216,GO-20179020402,THEFT UNDER - BICYCLE,2017-11-21T00:00:00,2017,November,Tuesday,21,325,8,2017-11-23T00:00:00,2017,November,Thursday,23,327,17,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,BANDIT,RG,3,BLK,434.0,STOLEN,5043,"{'type': 'Point', 'coordinates': (-79.32621386, 43.67476354)}"
-5048,14227,GO-20189010555,THEFT UNDER - BICYCLE,2018-04-05T00:00:00,2018,April,Thursday,5,95,0,2018-04-05T00:00:00,2018,April,Thursday,5,95,11,D55,Toronto,65,Greenwood-Coxwell (65),"Apartment (Rooming House, Condo)",Apartment,NO,,RC,10,GRY,1500.0,STOLEN,5044,"{'type': 'Point', 'coordinates': (-79.3295907, 43.67650588)}"
-5049,15924,GO-20149009002,THEFT UNDER,2014-12-28T00:00:00,2014,December,Sunday,28,362,0,2014-12-28T00:00:00,2014,December,Sunday,28,362,15,D55,Toronto,65,Greenwood-Coxwell (65),"Apartment (Rooming House, Condo)",Apartment,OT,,EL,40,OTH,,STOLEN,5045,"{'type': 'Point', 'coordinates': (-79.32503489, 43.67157976)}"
-5050,15992,GO-20159009169,THEFT UNDER,2015-10-27T00:00:00,2015,October,Tuesday,27,300,10,2015-10-30T00:00:00,2015,October,Friday,30,303,11,D55,Toronto,65,Greenwood-Coxwell (65),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KH,WESTWOOD,RG,21,,300.0,STOLEN,5046,"{'type': 'Point', 'coordinates': (-79.31846164000001, 43.66591214)}"
-5051,15993,GO-20159009349,THEFT UNDER,2015-11-04T00:00:00,2015,November,Wednesday,4,308,5,2015-11-04T00:00:00,2015,November,Wednesday,4,308,7,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,0902012-13-S-01,BM,1,BLK,458.0,STOLEN,5047,"{'type': 'Point', 'coordinates': (-79.32969472, 43.66211217)}"
-5052,16025,GO-20169005101,THEFT UNDER - BICYCLE,2016-05-30T00:00:00,2016,May,Monday,30,151,11,2016-05-30T00:00:00,2016,May,Monday,30,151,12,D55,Toronto,65,Greenwood-Coxwell (65),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,,MT,21,SIL,400.0,STOLEN,5048,"{'type': 'Point', 'coordinates': (-79.32016368, 43.67506472)}"
-5053,16036,GO-20201298900,B&E,2020-07-08T00:00:00,2020,July,Wednesday,8,190,13,2020-07-13T00:00:00,2020,July,Monday,13,195,15,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,OT,7,BLKWHI,600.0,STOLEN,5049,"{'type': 'Point', 'coordinates': (-79.32328138, 43.6795952)}"
-5054,16047,GO-20201353985,THEFT UNDER - BICYCLE,2020-07-21T00:00:00,2020,July,Tuesday,21,203,4,2020-07-21T00:00:00,2020,July,Tuesday,21,203,10,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,TRI CROSS,TR,16,BLK,800.0,STOLEN,5050,"{'type': 'Point', 'coordinates': (-79.32429071, 43.67520616)}"
-5055,16050,GO-20209018252,THEFT UNDER,2020-07-20T00:00:00,2020,July,Monday,20,202,0,2020-07-22T00:00:00,2020,July,Wednesday,22,204,17,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,PALERMO FEMME,RG,24,LBL,500.0,STOLEN,5051,"{'type': 'Point', 'coordinates': (-79.32429071, 43.67520616)}"
-5056,16088,GO-20209024759,THEFT UNDER,2020-09-28T00:00:00,2020,September,Monday,28,272,0,2020-09-28T00:00:00,2020,September,Monday,28,272,10,D55,Toronto,65,Greenwood-Coxwell (65),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RM,OXYGEN 30,RC,20,WHI,0.0,STOLEN,5052,"{'type': 'Point', 'coordinates': (-79.32795226, 43.67685448)}"
-5057,18705,GO-20209017012,THEFT UNDER,2020-07-06T00:00:00,2020,July,Monday,6,188,21,2020-07-07T00:00:00,2020,July,Tuesday,7,189,12,D55,Toronto,65,Greenwood-Coxwell (65),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,3,BLK,499.0,STOLEN,5053,"{'type': 'Point', 'coordinates': (-79.33153035, 43.67945220000001)}"
-5058,18722,GO-20209018979,THEFT UNDER,2020-07-30T00:00:00,2020,July,Thursday,30,212,13,2020-07-30T00:00:00,2020,July,Thursday,30,212,13,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SIRRUS,RG,24,GRY,800.0,STOLEN,5054,"{'type': 'Point', 'coordinates': (-79.32816064, 43.67431641)}"
-5059,18768,GO-20209027040,THEFT UNDER,2020-10-11T00:00:00,2020,October,Sunday,11,285,2,2020-10-20T00:00:00,2020,October,Tuesday,20,294,14,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,BUTTERFIELD & R,TO,27,BLK,1000.0,STOLEN,5055,"{'type': 'Point', 'coordinates': (-79.32822849, 43.68235875)}"
-5060,18888,GO-20159003058,THEFT UNDER,2015-05-24T00:00:00,2015,May,Sunday,24,144,15,2015-05-24T00:00:00,2015,May,Sunday,24,144,20,D55,Toronto,65,Greenwood-Coxwell (65),"Apartment (Rooming House, Condo)",Apartment,PE,,MT,15,GRY,150.0,STOLEN,5056,"{'type': 'Point', 'coordinates': (-79.32730959, 43.66390954)}"
-5061,18994,GO-20169006425,THEFT UNDER,2016-06-21T00:00:00,2016,June,Tuesday,21,173,1,2016-06-27T00:00:00,2016,June,Monday,27,179,12,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SEKINE,RC,10,RED,1300.0,STOLEN,5057,"{'type': 'Point', 'coordinates': (-79.33153035, 43.67945220000001)}"
-5062,19018,GO-20169008476,THEFT UNDER - BICYCLE,2016-08-06T00:00:00,2016,August,Saturday,6,219,8,2016-08-10T00:00:00,2016,August,Wednesday,10,223,9,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,MT,21,,500.0,STOLEN,5058,"{'type': 'Point', 'coordinates': (-79.3267799, 43.67886451)}"
-5063,19019,GO-20169008476,THEFT UNDER - BICYCLE,2016-08-06T00:00:00,2016,August,Saturday,6,219,8,2016-08-10T00:00:00,2016,August,Wednesday,10,223,9,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,MT,21,,500.0,STOLEN,5059,"{'type': 'Point', 'coordinates': (-79.3267799, 43.67886451)}"
-5064,19020,GO-20169008476,THEFT UNDER - BICYCLE,2016-08-06T00:00:00,2016,August,Saturday,6,219,8,2016-08-10T00:00:00,2016,August,Wednesday,10,223,9,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,MT,21,,450.0,STOLEN,5060,"{'type': 'Point', 'coordinates': (-79.3267799, 43.67886451)}"
-5065,19089,GO-20179007869,THEFT UNDER - BICYCLE,2017-06-10T00:00:00,2017,June,Saturday,10,161,10,2017-06-10T00:00:00,2017,June,Saturday,10,161,21,D55,Toronto,65,Greenwood-Coxwell (65),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RM,EDGE,MT,24,BLK,600.0,STOLEN,5061,"{'type': 'Point', 'coordinates': (-79.31926987, 43.67290749)}"
-5066,19102,GO-20179012094,THEFT UNDER - BICYCLE,2017-04-08T00:00:00,2017,April,Saturday,8,98,18,2017-08-08T00:00:00,2017,August,Tuesday,8,220,18,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,,RG,21,BLK,120.0,STOLEN,5062,"{'type': 'Point', 'coordinates': (-79.31687762, 43.66716081)}"
-5067,19110,GO-20179013187,THEFT UNDER - BICYCLE,2017-08-23T00:00:00,2017,August,Wednesday,23,235,22,2017-08-23T00:00:00,2017,August,Wednesday,23,235,23,D55,Toronto,65,Greenwood-Coxwell (65),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,,RC,1,SIL,500.0,STOLEN,5063,"{'type': 'Point', 'coordinates': (-79.3256913, 43.67909689)}"
-5068,19223,GO-20199011804,THEFT UNDER,2019-04-13T00:00:00,2019,April,Saturday,13,103,22,2019-04-14T00:00:00,2019,April,Sunday,14,104,11,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,CADENT I8,RG,8,BLK,675.0,STOLEN,5064,"{'type': 'Point', 'coordinates': (-79.32688298, 43.67118651)}"
-5069,19253,GO-20199022474,THEFT UNDER - BICYCLE,2019-07-15T00:00:00,2019,July,Monday,15,196,12,2019-07-16T00:00:00,2019,July,Tuesday,16,197,10,D55,Toronto,65,Greenwood-Coxwell (65),Schools During Un-Supervised Activity,Educational,GI,@ BIKE RACK DOO,TO,21,GRY,250.0,STOLEN,5065,"{'type': 'Point', 'coordinates': (-79.32328138, 43.6795952)}"
-5070,19302,GO-20191896013,THEFT UNDER - BICYCLE,2019-10-01T00:00:00,2019,October,Tuesday,1,274,22,2019-10-02T00:00:00,2019,October,Wednesday,2,275,8,D55,Toronto,65,Greenwood-Coxwell (65),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MIELE,,RG,10,GLD,400.0,STOLEN,5066,"{'type': 'Point', 'coordinates': (-79.32444497, 43.67015214)}"
-5071,19303,GO-20191896013,THEFT UNDER - BICYCLE,2019-10-01T00:00:00,2019,October,Tuesday,1,274,22,2019-10-02T00:00:00,2019,October,Wednesday,2,275,8,D55,Toronto,65,Greenwood-Coxwell (65),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,,BM,1,SILGRY,300.0,STOLEN,5067,"{'type': 'Point', 'coordinates': (-79.32444497, 43.67015214)}"
-5072,19304,GO-20191896013,THEFT UNDER - BICYCLE,2019-10-01T00:00:00,2019,October,Tuesday,1,274,22,2019-10-02T00:00:00,2019,October,Wednesday,2,275,8,D55,Toronto,65,Greenwood-Coxwell (65),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,,RC,12,BLUWHI,2000.0,STOLEN,5068,"{'type': 'Point', 'coordinates': (-79.32444497, 43.67015214)}"
-5073,19310,GO-20199033354,THEFT UNDER,2019-10-09T00:00:00,2019,October,Wednesday,9,282,22,2019-10-10T00:00:00,2019,October,Thursday,10,283,11,D55,Toronto,65,Greenwood-Coxwell (65),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,,RG,12,RED,1500.0,STOLEN,5069,"{'type': 'Point', 'coordinates': (-79.32494156, 43.68149215)}"
-5074,19330,GO-20209001908,THEFT UNDER,2020-01-17T00:00:00,2020,January,Friday,17,17,0,2020-01-17T00:00:00,2020,January,Friday,17,17,9,D55,Toronto,65,Greenwood-Coxwell (65),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KO,CINDERCONE,MT,18,GLD,500.0,STOLEN,5070,"{'type': 'Point', 'coordinates': (-79.32014233, 43.66833167000001)}"
-5075,19668,GO-20143355027,THEFT UNDER,2014-11-18T00:00:00,2014,November,Tuesday,18,322,8,2014-11-23T00:00:00,2014,November,Sunday,23,327,16,D54,Toronto,65,Greenwood-Coxwell (65),Ttc Subway Station,Transit,TREK,,TO,18,BLK,600.0,STOLEN,5071,"{'type': 'Point', 'coordinates': (-79.31926987, 43.67290749)}"
-5076,19693,GO-20159004038,THEFT UNDER,2015-06-29T00:00:00,2015,June,Monday,29,180,2,2015-06-29T00:00:00,2015,June,Monday,29,180,18,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,1 SERIES,RC,10,BLK,600.0,STOLEN,5072,"{'type': 'Point', 'coordinates': (-79.32485369, 43.67405485)}"
-5077,19733,GO-20159007577,THEFT UNDER,2015-09-21T00:00:00,2015,September,Monday,21,264,10,2015-09-22T00:00:00,2015,September,Tuesday,22,265,14,D55,Toronto,65,Greenwood-Coxwell (65),Schools During Supervised Activity,Educational,KO,DEW,OT,24,BLK,900.0,STOLEN,5073,"{'type': 'Point', 'coordinates': (-79.32328138, 43.6795952)}"
-5078,19768,GO-2016924810,B&E,2016-05-28T00:00:00,2016,May,Saturday,28,149,13,2016-05-28T00:00:00,2016,May,Saturday,28,149,23,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,,RG,0,BLU,,STOLEN,5074,"{'type': 'Point', 'coordinates': (-79.3187045, 43.66864445)}"
-5079,22165,GO-20161173123,THEFT UNDER - BICYCLE,2016-07-05T00:00:00,2016,July,Tuesday,5,187,7,2016-07-05T00:00:00,2016,July,Tuesday,5,187,11,D55,Toronto,65,Greenwood-Coxwell (65),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,MT,12,,,STOLEN,5075,"{'type': 'Point', 'coordinates': (-79.32688298, 43.67118651)}"
-5080,22170,GO-20161232525,B&E,2016-07-14T00:00:00,2016,July,Thursday,14,196,4,2016-07-14T00:00:00,2016,July,Thursday,14,196,5,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DEVINCI,ST TROPEZ,MT,18,GRY,,UNKNOWN,5076,"{'type': 'Point', 'coordinates': (-79.32385697, 43.67428532)}"
-5081,22267,GO-20172002871,B&E,2017-11-04T00:00:00,2017,November,Saturday,4,308,16,2017-11-05T00:00:00,2017,November,Sunday,5,309,9,D55,Toronto,65,Greenwood-Coxwell (65),"Private Property Structure (Pool, Shed, Detached Garage)",Other,DIAMONDBACK,RESPONSE,MT,27,BRNGLD,300.0,STOLEN,5077,"{'type': 'Point', 'coordinates': (-79.32269565, 43.68122111)}"
-5082,22268,GO-20172002871,B&E,2017-11-04T00:00:00,2017,November,Saturday,4,308,16,2017-11-05T00:00:00,2017,November,Sunday,5,309,9,D55,Toronto,65,Greenwood-Coxwell (65),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,IGNIGHTER,MT,1,RED,300.0,RECOVERED,5078,"{'type': 'Point', 'coordinates': (-79.32269565, 43.68122111)}"
-5083,22281,GO-20189009393,THEFT UNDER - BICYCLE,2018-03-24T00:00:00,2018,March,Saturday,24,83,4,2018-03-25T00:00:00,2018,March,Sunday,25,84,15,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,ESCAPE,TO,27,GRY,1000.0,STOLEN,5079,"{'type': 'Point', 'coordinates': (-79.3210381, 43.66812154)}"
-5084,22282,GO-20189010555,THEFT UNDER - BICYCLE,2018-04-05T00:00:00,2018,April,Thursday,5,95,0,2018-04-05T00:00:00,2018,April,Thursday,5,95,11,D55,Toronto,65,Greenwood-Coxwell (65),"Apartment (Rooming House, Condo)",Apartment,NO,FBR2,RC,10,GRY,1500.0,RECOVERED,5080,"{'type': 'Point', 'coordinates': (-79.3295907, 43.67650588)}"
-5085,22320,GO-20189026875,THEFT UNDER - BICYCLE,2018-08-17T00:00:00,2018,August,Friday,17,229,20,2018-08-18T00:00:00,2018,August,Saturday,18,230,9,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,10,BLK,1000.0,STOLEN,5081,"{'type': 'Point', 'coordinates': (-79.32648231000002, 43.68099288)}"
-5086,22349,GO-20189033894,THEFT UNDER,2018-10-12T00:00:00,2018,October,Friday,12,285,6,2018-10-12T00:00:00,2018,October,Friday,12,285,20,D55,Toronto,65,Greenwood-Coxwell (65),"Construction Site (Warehouse, Trailer, Shed)",Commercial,CC,WOMAN CYCLE,RG,6,CRM,200.0,STOLEN,5082,"{'type': 'Point', 'coordinates': (-79.31926987, 43.67290749)}"
-5087,22364,GO-20199000624,THEFT UNDER - BICYCLE,2019-01-06T00:00:00,2019,January,Sunday,6,6,14,2019-01-06T00:00:00,2019,January,Sunday,6,6,14,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,CARTIER ALTUS,OT,8,BLK,858.0,STOLEN,5083,"{'type': 'Point', 'coordinates': (-79.32402651, 43.66676495)}"
-5088,22396,GO-20199023085,THEFT UNDER,2019-07-21T00:00:00,2019,July,Sunday,21,202,5,2019-07-21T00:00:00,2019,July,Sunday,21,202,9,D55,Toronto,65,Greenwood-Coxwell (65),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,21,BLK,1000.0,STOLEN,5084,"{'type': 'Point', 'coordinates': (-79.32210681, 43.67469421)}"
-5089,22484,GO-20209015962,THEFT UNDER,2020-06-23T00:00:00,2020,June,Tuesday,23,175,0,2020-06-23T00:00:00,2020,June,Tuesday,23,175,13,D55,Toronto,65,Greenwood-Coxwell (65),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,DRIGGS,TO,3,BLK,700.0,STOLEN,5085,"{'type': 'Point', 'coordinates': (-79.31998046, 43.66557249)}"
-5090,22491,GO-20201210509,THEFT UNDER - BICYCLE,2020-06-30T00:00:00,2020,June,Tuesday,30,182,23,2020-07-01T00:00:00,2020,July,Wednesday,1,183,13,D55,Toronto,65,Greenwood-Coxwell (65),"Private Property Structure (Pool, Shed, Detached Garage)",Other,FUJI,FEATHER,RG,24,,1000.0,STOLEN,5086,"{'type': 'Point', 'coordinates': (-79.32053547, 43.66358697)}"
-5091,22518,GO-20209018942,THEFT UNDER,2020-07-29T00:00:00,2020,July,Wednesday,29,211,18,2020-07-29T00:00:00,2020,July,Wednesday,29,211,22,D55,Toronto,65,Greenwood-Coxwell (65),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,7,DGR,2000.0,STOLEN,5087,"{'type': 'Point', 'coordinates': (-79.32523013, 43.66251627)}"
-5092,22526,GO-20201508005,THEFT UNDER,2020-08-11T00:00:00,2020,August,Tuesday,11,224,20,2020-08-12T00:00:00,2020,August,Wednesday,12,225,10,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KONA,LANA'I,TO,8,GRYYEL,700.0,STOLEN,5088,"{'type': 'Point', 'coordinates': (-79.32006867000001, 43.66578511)}"
-5093,22527,GO-20201508005,THEFT UNDER,2020-08-11T00:00:00,2020,August,Tuesday,11,224,20,2020-08-12T00:00:00,2020,August,Wednesday,12,225,10,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,AGGRESSOR,MT,7,,649.0,STOLEN,5089,"{'type': 'Point', 'coordinates': (-79.32006867000001, 43.66578511)}"
-5094,22531,GO-20209020869,THEFT UNDER,2020-08-21T00:00:00,2020,August,Friday,21,234,0,2020-08-21T00:00:00,2020,August,Friday,21,234,12,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,,MT,21,GRY,460.0,STOLEN,5090,"{'type': 'Point', 'coordinates': (-79.32876002000002, 43.67668917)}"
-5095,22532,GO-20209020869,THEFT UNDER,2020-08-21T00:00:00,2020,August,Friday,21,234,0,2020-08-21T00:00:00,2020,August,Friday,21,234,12,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,,MT,18,BLU,360.0,STOLEN,5091,"{'type': 'Point', 'coordinates': (-79.32876002000002, 43.67668917)}"
-5096,22533,GO-20209020865,THEFT UNDER,2020-08-20T00:00:00,2020,August,Thursday,20,233,23,2020-08-21T00:00:00,2020,August,Friday,21,234,11,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,HYBRID,RG,7,BLK,300.0,STOLEN,5092,"{'type': 'Point', 'coordinates': (-79.32621386, 43.67476354)}"
-5097,22547,GO-20201635623,THEFT UNDER - BICYCLE,2020-08-30T00:00:00,2020,August,Sunday,30,243,6,2020-08-30T00:00:00,2020,August,Sunday,30,243,9,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,ROCK HOPPER,MT,9,TRQ,1150.0,STOLEN,5093,"{'type': 'Point', 'coordinates': (-79.32395096, 43.67184363)}"
-5098,22866,GO-20142807767,THEFT UNDER,2014-08-23T00:00:00,2014,August,Saturday,23,235,1,2014-08-30T00:00:00,2014,August,Saturday,30,242,16,D55,Toronto,65,Greenwood-Coxwell (65),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,ALIEN,EL,2,RED,1000.0,STOLEN,5094,"{'type': 'Point', 'coordinates': (-79.31926987, 43.67290749)}"
-5099,22888,GO-20159007249,THEFT UNDER,2015-09-12T00:00:00,2015,September,Saturday,12,255,1,2015-09-15T00:00:00,2015,September,Tuesday,15,258,20,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,MOUNTAIN BIKE,MT,24,,2800.0,STOLEN,5095,"{'type': 'Point', 'coordinates': (-79.32496824, 43.66654888)}"
-5100,22889,GO-2015190712,THEFT UNDER,2015-02-02T00:00:00,2015,February,Monday,2,33,1,2015-02-02T00:00:00,2015,February,Monday,2,33,3,D55,Toronto,65,Greenwood-Coxwell (65),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,FORTRESS 1700,SC,0,RED,3500.0,STOLEN,5096,"{'type': 'Point', 'coordinates': (-79.32659879, 43.66759903)}"
-5101,22948,GO-20152096408,THEFT UNDER,2015-12-04T00:00:00,2015,December,Friday,4,338,18,2015-12-07T00:00:00,2015,December,Monday,7,341,13,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,0,OTH,1600.0,STOLEN,5097,"{'type': 'Point', 'coordinates': (-79.32119568, 43.67247049)}"
-5102,22952,GO-20152168084,THEFT UNDER,2015-12-18T00:00:00,2015,December,Friday,18,352,14,2015-12-18T00:00:00,2015,December,Friday,18,352,14,D55,Toronto,65,Greenwood-Coxwell (65),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,UNKNOWN,BM,0,BLK,1000.0,STOLEN,5098,"{'type': 'Point', 'coordinates': (-79.32526809, 43.66439702)}"
-5103,2677,GO-20189020151,THEFT UNDER - BICYCLE,2018-06-24T00:00:00,2018,June,Sunday,24,175,23,2018-06-25T00:00:00,2018,June,Monday,25,176,12,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,XC29,MT,24,BLK,400.0,STOLEN,5099,"{'type': 'Point', 'coordinates': (-79.33975407, 43.66669946)}"
-5104,7102,GO-20209021584,THEFT UNDER,2020-08-27T00:00:00,2020,August,Thursday,27,240,19,2020-08-27T00:00:00,2020,August,Thursday,27,240,21,D54,Toronto,67,Playter Estates-Danforth (67),Convenience Stores,Commercial,GF,TIBURON,OT,21,BLU,350.0,STOLEN,5100,"{'type': 'Point', 'coordinates': (-79.34603385, 43.68218372)}"
-5105,2711,GO-20189020576,THEFT UNDER - BICYCLE,2018-06-26T00:00:00,2018,June,Tuesday,26,177,1,2018-06-28T00:00:00,2018,June,Thursday,28,179,12,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,18,BLK,600.0,STOLEN,5101,"{'type': 'Point', 'coordinates': (-79.34795473, 43.66261567)}"
-5106,2714,GO-20189020599,THEFT UNDER - BICYCLE,2018-06-21T00:00:00,2018,June,Thursday,21,172,15,2018-06-28T00:00:00,2018,June,Thursday,28,179,15,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,,MT,11,BLK,1000.0,STOLEN,5102,"{'type': 'Point', 'coordinates': (-79.35353151, 43.66163711)}"
-5107,2728,GO-20189020393,THEFT UNDER - BICYCLE,2018-06-25T00:00:00,2018,June,Monday,25,176,18,2018-06-26T00:00:00,2018,June,Tuesday,26,177,21,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GT,AGGRESSOR,MT,21,GRY,549.0,STOLEN,5103,"{'type': 'Point', 'coordinates': (-79.3532346, 43.6616993)}"
-5108,2824,GO-20189022144,THEFT UNDER - BICYCLE,2018-07-11T00:00:00,2018,July,Wednesday,11,192,22,2018-07-12T00:00:00,2018,July,Thursday,12,193,10,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,VFR5,OT,8,BLK,1000.0,STOLEN,5104,"{'type': 'Point', 'coordinates': (-79.35288146, 43.66387781)}"
-5109,2852,GO-20181263649,THEFT OF EBIKE UNDER $5000,2018-06-21T00:00:00,2018,June,Thursday,21,172,18,2018-07-11T00:00:00,2018,July,Wednesday,11,192,14,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,,EL,1,GRN,800.0,STOLEN,5105,"{'type': 'Point', 'coordinates': (-79.33138495, 43.66299749)}"
-5110,2853,GO-20181264162,THEFT UNDER - BICYCLE,2018-06-20T00:00:00,2018,June,Wednesday,20,171,12,2018-07-11T00:00:00,2018,July,Wednesday,11,192,15,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,KONA,14-K14573648K,MT,21,BLK,600.0,STOLEN,5106,"{'type': 'Point', 'coordinates': (-79.3532346, 43.6616993)}"
-5111,3080,GO-20189025163,THEFT UNDER - BICYCLE,2018-08-02T00:00:00,2018,August,Thursday,2,214,17,2018-08-05T00:00:00,2018,August,Sunday,5,217,10,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,UK,CROSSTRAIL CARB,MT,20,BLK,2500.0,STOLEN,5107,"{'type': 'Point', 'coordinates': (-79.3412907, 43.66212954)}"
-5112,3163,GO-20181484649,THEFT OVER,2018-08-10T00:00:00,2018,August,Friday,10,222,22,2018-08-12T00:00:00,2018,August,Sunday,12,224,15,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KONA\,,RC,12,BLU,2500.0,STOLEN,5108,"{'type': 'Point', 'coordinates': (-79.34707943, 43.66048117)}"
-5113,3164,GO-20181484649,THEFT OVER,2018-08-10T00:00:00,2018,August,Friday,10,222,22,2018-08-12T00:00:00,2018,August,Sunday,12,224,15,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,ROUBAIX,RACING,RC,12,BLKRED,3000.0,STOLEN,5109,"{'type': 'Point', 'coordinates': (-79.34707943, 43.66048117)}"
-5114,3165,GO-20181484649,THEFT OVER,2018-08-10T00:00:00,2018,August,Friday,10,222,22,2018-08-12T00:00:00,2018,August,Sunday,12,224,15,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,ALLEZ,RACING,RC,12,BLUWHI,2300.0,STOLEN,5110,"{'type': 'Point', 'coordinates': (-79.34707943, 43.66048117)}"
-5115,3166,GO-20181484649,THEFT OVER,2018-08-10T00:00:00,2018,August,Friday,10,222,22,2018-08-12T00:00:00,2018,August,Sunday,12,224,15,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KONA\,MOUNTAIN,MT,21,RED,1500.0,STOLEN,5111,"{'type': 'Point', 'coordinates': (-79.34707943, 43.66048117)}"
-5116,3173,GO-20189026046,THEFT UNDER,2018-08-12T00:00:00,2018,August,Sunday,12,224,7,2018-08-12T00:00:00,2018,August,Sunday,12,224,11,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,TR,6,SIL,750.0,STOLEN,5112,"{'type': 'Point', 'coordinates': (-79.35220204, 43.66457454)}"
-5117,3178,GO-20189026115,THEFT UNDER,2018-08-12T00:00:00,2018,August,Sunday,12,224,16,2018-08-13T00:00:00,2018,August,Monday,13,225,0,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,GT AGGRESOR,MT,24,BLK,320.0,STOLEN,5113,"{'type': 'Point', 'coordinates': (-79.34246583, 43.66052892)}"
-5118,3191,GO-20189026263,THEFT UNDER - BICYCLE,2018-08-13T00:00:00,2018,August,Monday,13,225,15,2018-08-13T00:00:00,2018,August,Monday,13,225,21,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,DOPPLER,RG,8,SIL,500.0,STOLEN,5114,"{'type': 'Point', 'coordinates': (-79.33705634, 43.66012594)}"
-5119,3201,GO-20189026115,THEFT UNDER,2018-08-12T00:00:00,2018,August,Sunday,12,224,16,2018-08-13T00:00:00,2018,August,Monday,13,225,0,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,AGGRESSOR,MT,21,BLK,599.0,STOLEN,5115,"{'type': 'Point', 'coordinates': (-79.34246583, 43.66052892)}"
-5120,3330,GO-20189028102,THEFT UNDER - BICYCLE,2018-08-24T00:00:00,2018,August,Friday,24,236,11,2018-08-27T00:00:00,2018,August,Monday,27,239,11,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FJ,TRACK,RG,1,BLK,600.0,STOLEN,5116,"{'type': 'Point', 'coordinates': (-79.33539172, 43.66559122)}"
-5121,3356,GO-20181589620,THEFT UNDER - BICYCLE,2018-08-27T00:00:00,2018,August,Monday,27,239,22,2018-08-28T00:00:00,2018,August,Tuesday,28,240,9,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,RG,21,BLK,,STOLEN,5117,"{'type': 'Point', 'coordinates': (-79.35119162, 43.65934342)}"
-5122,3367,GO-20189028623,THEFT UNDER - BICYCLE,2018-08-30T00:00:00,2018,August,Thursday,30,242,10,2018-08-30T00:00:00,2018,August,Thursday,30,242,22,D55,Toronto,70,South Riverdale (70),Schools During Un-Supervised Activity,Educational,TR,FX1,RG,21,BLK,550.0,STOLEN,5118,"{'type': 'Point', 'coordinates': (-79.33556888, 43.66925054)}"
-5123,3394,GO-20181643841,THEFT UNDER,2018-08-29T00:00:00,2018,August,Wednesday,29,241,2,2018-09-05T00:00:00,2018,September,Wednesday,5,248,13,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,X-CALIBER 8,MT,18,RED,1499.0,STOLEN,5119,"{'type': 'Point', 'coordinates': (-79.33065258, 43.67031902)}"
-5124,3397,GO-20189029231,THEFT UNDER - BICYCLE,2018-08-06T00:00:00,2018,August,Monday,6,218,16,2018-09-05T00:00:00,2018,September,Wednesday,5,248,16,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,MIDTOWN,RG,27,BLK,0.0,STOLEN,5120,"{'type': 'Point', 'coordinates': (-79.35288146, 43.66387781)}"
-5125,3494,GO-20189030791,THEFT UNDER - BICYCLE,2018-09-15T00:00:00,2018,September,Saturday,15,258,14,2018-09-17T00:00:00,2018,September,Monday,17,260,13,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,3,WHI,800.0,STOLEN,5121,"{'type': 'Point', 'coordinates': (-79.3400521, 43.66106114)}"
-5126,3523,GO-20181746258,THEFT UNDER - BICYCLE,2018-09-19T00:00:00,2018,September,Wednesday,19,262,0,2018-09-20T00:00:00,2018,September,Thursday,20,263,21,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,STUMP JUMPER,OT,12,BLU,4150.0,STOLEN,5122,"{'type': 'Point', 'coordinates': (-79.34845931, 43.65919131)}"
-5127,3538,GO-20189031591,THEFT UNDER,2018-09-22T00:00:00,2018,September,Saturday,22,265,21,2018-09-23T00:00:00,2018,September,Sunday,23,266,0,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,NORCO VFR 5 FOR,OT,8,GRY,500.0,STOLEN,5123,"{'type': 'Point', 'coordinates': (-79.34740718, 43.65941945)}"
-5128,3591,GO-20189032521,THEFT UNDER - BICYCLE,2018-10-01T00:00:00,2018,October,Monday,1,274,12,2018-10-01T00:00:00,2018,October,Monday,1,274,13,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,6700,MT,27,BLK,200.0,STOLEN,5124,"{'type': 'Point', 'coordinates': (-79.3400521, 43.66106114)}"
-5129,6824,GO-20209019070,THEFT UNDER,2020-07-25T00:00:00,2020,July,Saturday,25,207,13,2020-07-31T00:00:00,2020,July,Friday,31,213,11,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,TRANSEO HYBRID,RG,18,BLK,650.0,STOLEN,5125,"{'type': 'Point', 'coordinates': (-79.32837614, 43.67186386)}"
-5130,7344,GO-20201816050,THEFT UNDER - BICYCLE,2020-09-24T00:00:00,2020,September,Thursday,24,268,0,2020-09-24T00:00:00,2020,September,Thursday,24,268,20,D54,Toronto,67,Playter Estates-Danforth (67),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,,MT,24,GRY,,STOLEN,5126,"{'type': 'Point', 'coordinates': (-79.35674002, 43.68116210000001)}"
-5131,3661,GO-20189033586,THEFT UNDER - BICYCLE,2018-10-10T00:00:00,2018,October,Wednesday,10,283,8,2018-10-10T00:00:00,2018,October,Wednesday,10,283,22,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,CATALYST,MT,21,GRN,565.0,STOLEN,5127,"{'type': 'Point', 'coordinates': (-79.34055684, 43.66228154)}"
-5132,3678,GO-20189033770,THEFT UNDER - BICYCLE,2018-10-10T00:00:00,2018,October,Wednesday,10,283,0,2018-10-12T00:00:00,2018,October,Friday,12,285,9,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,BLK,446.0,STOLEN,5128,"{'type': 'Point', 'coordinates': (-79.34030508, 43.66516613)}"
-5133,3723,GO-20189034518,THEFT UNDER - BICYCLE,2018-10-18T00:00:00,2018,October,Thursday,18,291,3,2018-10-18T00:00:00,2018,October,Thursday,18,291,8,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,CARONA-LITE BRA,MT,15,,0.0,STOLEN,5129,"{'type': 'Point', 'coordinates': (-79.34773339, 43.65642654)}"
-5134,3747,GO-20189035225,THEFT UNDER - BICYCLE,2018-10-23T00:00:00,2018,October,Tuesday,23,296,13,2018-10-23T00:00:00,2018,October,Tuesday,23,296,13,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,18,BLK,650.0,STOLEN,5130,"{'type': 'Point', 'coordinates': (-79.32826088, 43.65898454)}"
-5135,3767,GO-20189035756,THEFT UNDER - BICYCLE,2018-10-26T00:00:00,2018,October,Friday,26,299,19,2018-10-26T00:00:00,2018,October,Friday,26,299,19,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,OT,21,,2000.0,STOLEN,5131,"{'type': 'Point', 'coordinates': (-79.35119162, 43.65934342)}"
-5136,3783,GO-20181976760,THEFT OVER,2018-10-20T00:00:00,2018,October,Saturday,20,293,19,2018-10-26T00:00:00,2018,October,Friday,26,299,13,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,EMMO,URBAN S,EL,1,RED,2000.0,STOLEN,5132,"{'type': 'Point', 'coordinates': (-79.33413241, 43.665859450000006)}"
-5137,3800,GO-20182019908,THEFT UNDER,2018-10-27T00:00:00,2018,October,Saturday,27,300,22,2018-10-28T00:00:00,2018,October,Sunday,28,301,8,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,DIAMONDBACK,,BM,1,BLKBLU,,STOLEN,5133,"{'type': 'Point', 'coordinates': (-79.34907396, 43.66531756)}"
-5138,3801,GO-20182019908,THEFT UNDER,2018-10-27T00:00:00,2018,October,Saturday,27,300,22,2018-10-28T00:00:00,2018,October,Sunday,28,301,8,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OPUS,,RG,8,,,STOLEN,5134,"{'type': 'Point', 'coordinates': (-79.34907396, 43.66531756)}"
-5139,3806,GO-20189036571,THEFT UNDER - BICYCLE,2018-11-01T00:00:00,2018,November,Thursday,1,305,18,2018-11-02T00:00:00,2018,November,Friday,2,306,11,D55,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,2017,RG,21,BLK,500.0,STOLEN,5135,"{'type': 'Point', 'coordinates': (-79.35317174, 43.660039780000005)}"
-5140,3832,GO-20189037487,THEFT UNDER - BICYCLE,2018-11-05T00:00:00,2018,November,Monday,5,309,8,2018-11-09T00:00:00,2018,November,Friday,9,313,10,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,TO,9,GRN,1400.0,STOLEN,5136,"{'type': 'Point', 'coordinates': (-79.34817882, 43.66318305)}"
-5141,3845,GO-20189037627,THEFT UNDER - BICYCLE,2018-11-09T00:00:00,2018,November,Friday,9,313,13,2018-11-09T00:00:00,2018,November,Friday,9,313,22,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,BOULDER SE,MT,21,LBL,450.0,STOLEN,5137,"{'type': 'Point', 'coordinates': (-79.34055684, 43.66228154)}"
-5142,3870,GO-20182124295,B&E,2018-11-17T00:00:00,2018,November,Saturday,17,321,16,2018-11-18T00:00:00,2018,November,Sunday,18,322,14,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,LE CIRCUIT,RG,1,BLK,400.0,STOLEN,5138,"{'type': 'Point', 'coordinates': (-79.33212352000001, 43.65987817)}"
-5143,3884,GO-20182138932,THEFT UNDER - BICYCLE,2018-11-19T00:00:00,2018,November,Monday,19,323,23,2018-11-20T00:00:00,2018,November,Tuesday,20,324,16,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,ELEGANCE,MT,18,BLKGRY,80.0,STOLEN,5139,"{'type': 'Point', 'coordinates': (-79.34817882, 43.66318305)}"
-5144,3927,GO-20189040982,THEFT UNDER - BICYCLE,2018-12-04T00:00:00,2018,December,Tuesday,4,338,9,2018-12-05T00:00:00,2018,December,Wednesday,5,339,20,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,OT,8,PLE,629.0,STOLEN,5140,"{'type': 'Point', 'coordinates': (-79.35288146, 43.66387781)}"
-5145,3929,GO-20182230988,THEFT UNDER,2018-12-04T00:00:00,2018,December,Tuesday,4,338,8,2018-12-04T00:00:00,2018,December,Tuesday,4,338,23,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,HYBRID,OT,21,BLK,700.0,STOLEN,5141,"{'type': 'Point', 'coordinates': (-79.35288146, 43.66387781)}"
-5146,3936,GO-20189041778,THEFT UNDER - BICYCLE,2018-12-11T00:00:00,2018,December,Tuesday,11,345,8,2018-12-12T00:00:00,2018,December,Wednesday,12,346,13,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,21,GRY,500.0,STOLEN,5142,"{'type': 'Point', 'coordinates': (-79.33222359000001, 43.66280519)}"
-5147,3943,GO-20189042213,THEFT UNDER - BICYCLE,2018-12-15T00:00:00,2018,December,Saturday,15,349,23,2018-12-16T00:00:00,2018,December,Sunday,16,350,8,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RC,24,GRY,2000.0,STOLEN,5143,"{'type': 'Point', 'coordinates': (-79.33212352000001, 43.65987817)}"
-5148,3944,GO-20189042213,THEFT UNDER - BICYCLE,2018-12-15T00:00:00,2018,December,Saturday,15,349,23,2018-12-16T00:00:00,2018,December,Sunday,16,350,8,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,S2,RC,14,RED,2000.0,STOLEN,5144,"{'type': 'Point', 'coordinates': (-79.33212352000001, 43.65987817)}"
-5149,3945,GO-20189042213,THEFT UNDER - BICYCLE,2018-12-15T00:00:00,2018,December,Saturday,15,349,23,2018-12-16T00:00:00,2018,December,Sunday,16,350,8,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,TWEED,OT,1,WHI,1000.0,STOLEN,5145,"{'type': 'Point', 'coordinates': (-79.33212352000001, 43.65987817)}"
-5150,3966,GO-20182348717,THEFT UNDER - BICYCLE,2018-12-29T00:00:00,2018,December,Saturday,29,363,23,2018-12-29T00:00:00,2018,December,Saturday,29,363,23,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,FO,1,BLK,0.0,STOLEN,5146,"{'type': 'Point', 'coordinates': (-79.33168448, 43.6667335)}"
-5151,3991,GO-20199000914,THEFT UNDER - BICYCLE,2019-01-08T00:00:00,2019,January,Tuesday,8,8,4,2019-01-08T00:00:00,2019,January,Tuesday,8,8,16,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,CATALYST,RG,10,DGR,1200.0,STOLEN,5147,"{'type': 'Point', 'coordinates': (-79.34107756, 43.66155765)}"
-5152,4081,GO-20199007725,THEFT UNDER - BICYCLE,2019-03-08T00:00:00,2019,March,Friday,8,67,10,2019-03-09T00:00:00,2019,March,Saturday,9,68,11,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,XC29 ROCKPORT,MT,21,BLK,400.0,STOLEN,5148,"{'type': 'Point', 'coordinates': (-79.33413241, 43.665859450000006)}"
-5153,4236,GO-20199014029,THEFT UNDER,2019-05-03T00:00:00,2019,May,Friday,3,123,19,2019-05-06T00:00:00,2019,May,Monday,6,126,7,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,UK,,OT,21,BRN,400.0,STOLEN,5149,"{'type': 'Point', 'coordinates': (-79.34030508, 43.66516613)}"
-5154,4250,GO-2019830290,THEFT UNDER,2019-05-04T00:00:00,2019,May,Saturday,4,124,21,2019-05-07T00:00:00,2019,May,Tuesday,7,127,19,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIST,ROCKHOPPER,MT,18,WHI,1200.0,STOLEN,5150,"{'type': 'Point', 'coordinates': (-79.3401442, 43.65813994)}"
-5155,4251,GO-2019830290,THEFT UNDER,2019-05-04T00:00:00,2019,May,Saturday,4,124,21,2019-05-07T00:00:00,2019,May,Tuesday,7,127,19,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,,MT,18,WHI,1000.0,STOLEN,5151,"{'type': 'Point', 'coordinates': (-79.3401442, 43.65813994)}"
-5156,4305,GO-2019889884,THEFT OF EBIKE UNDER $5000,2019-05-10T00:00:00,2019,May,Friday,10,130,22,2019-05-16T00:00:00,2019,May,Thursday,16,136,7,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,,EL,1,MUL,,STOLEN,5152,"{'type': 'Point', 'coordinates': (-79.35047888, 43.66047387)}"
-5157,4417,GO-20199017558,THEFT UNDER,2019-06-05T00:00:00,2019,June,Wednesday,5,156,19,2019-06-05T00:00:00,2019,June,Wednesday,5,156,20,D55,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SU,,MT,7,BLK,200.0,STOLEN,5153,"{'type': 'Point', 'coordinates': (-79.32839639, 43.65923478)}"
-5158,4500,GO-20199018751,THEFT UNDER,2019-06-14T00:00:00,2019,June,Friday,14,165,19,2019-06-15T00:00:00,2019,June,Saturday,15,166,16,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SC,GRANDE 6.1,MT,21,YEL,600.0,STOLEN,5154,"{'type': 'Point', 'coordinates': (-79.35306089, 43.66126064)}"
-5159,4524,GO-20191111997,THEFT FROM MOTOR VEHICLE OVER,2019-06-16T00:00:00,2019,June,Sunday,16,167,0,2019-06-18T00:00:00,2019,June,Tuesday,18,169,10,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,MADONE,RC,20,BLKRED,6000.0,STOLEN,5155,"{'type': 'Point', 'coordinates': (-79.34543043, 43.659862360000005)}"
-5160,4542,GO-20199019200,THEFT UNDER,2019-06-12T00:00:00,2019,June,Wednesday,12,163,18,2019-06-19T00:00:00,2019,June,Wednesday,19,170,10,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,PROJEKT 8,RG,1,BLK,500.0,STOLEN,5156,"{'type': 'Point', 'coordinates': (-79.34245753, 43.65762329)}"
-5161,4543,GO-20199019217,THEFT UNDER,2019-06-15T00:00:00,2019,June,Saturday,15,166,8,2019-06-19T00:00:00,2019,June,Wednesday,19,170,12,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,OT,PROJEKT 8,RG,8,ONG,479.0,STOLEN,5157,"{'type': 'Point', 'coordinates': (-79.33284988, 43.66647178)}"
-5162,4571,GO-20191111997,THEFT FROM MOTOR VEHICLE OVER,2019-06-16T00:00:00,2019,June,Sunday,16,167,0,2019-06-18T00:00:00,2019,June,Tuesday,18,169,10,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,MADONE 5.5,RC,20,BLK,6000.0,STOLEN,5158,"{'type': 'Point', 'coordinates': (-79.34543043, 43.659862360000005)}"
-5163,4871,GO-20191397940,THEFT UNDER,2019-03-04T00:00:00,2019,March,Monday,4,63,12,2019-07-25T00:00:00,2019,July,Thursday,25,206,12,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,GIANT,,MT,21,,1200.0,STOLEN,5159,"{'type': 'Point', 'coordinates': (-79.33413241, 43.665859450000006)}"
-5164,4872,GO-20191397940,THEFT UNDER,2019-03-04T00:00:00,2019,March,Monday,4,63,12,2019-07-25T00:00:00,2019,July,Thursday,25,206,12,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,OTHER,CROSSFIRE,RC,21,BLKWHI,2000.0,STOLEN,5160,"{'type': 'Point', 'coordinates': (-79.33413241, 43.665859450000006)}"
-5165,4876,GO-20191372463,THEFT OF EBIKE UNDER $5000,2019-07-21T00:00:00,2019,July,Sunday,21,202,22,2019-07-21T00:00:00,2019,July,Sunday,21,202,22,D55,Toronto,70,South Riverdale (70),Bar / Restaurant,Commercial,GOTRAX,XLT,EL,0,BLK,609.0,STOLEN,5161,"{'type': 'Point', 'coordinates': (-79.33754387, 43.6687961)}"
-5166,4963,GO-20199024903,THEFT UNDER,2019-08-04T00:00:00,2019,August,Sunday,4,216,1,2019-08-04T00:00:00,2019,August,Sunday,4,216,12,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,CCM-SL 2.0,MT,21,BLK,550.0,STOLEN,5162,"{'type': 'Point', 'coordinates': (-79.34699433, 43.66667851)}"
-5167,4978,GO-20199025111,THEFT UNDER,2019-08-03T00:00:00,2019,August,Saturday,3,215,13,2019-08-06T00:00:00,2019,August,Tuesday,6,218,14,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,,MT,7,,2000.0,STOLEN,5163,"{'type': 'Point', 'coordinates': (-79.34941789, 43.66615064)}"
-5168,5046,GO-20199025935,THEFT UNDER,2019-08-12T00:00:00,2019,August,Monday,12,224,6,2019-08-12T00:00:00,2019,August,Monday,12,224,17,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,OT,,TO,10,BLK,0.0,STOLEN,5164,"{'type': 'Point', 'coordinates': (-79.34030508, 43.66516613)}"
-5169,5063,GO-20199026164,THEFT UNDER,2019-07-16T00:00:00,2019,July,Tuesday,16,197,10,2019-08-14T00:00:00,2019,August,Wednesday,14,226,11,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,GRANDFONDO GF01,RC,22,BLK,4300.0,STOLEN,5165,"{'type': 'Point', 'coordinates': (-79.33413241, 43.665859450000006)}"
-5170,5081,GO-20199026355,THEFT UNDER,2019-08-07T00:00:00,2019,August,Wednesday,7,219,15,2019-08-15T00:00:00,2019,August,Thursday,15,227,15,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,,MT,12,,400.0,STOLEN,5166,"{'type': 'Point', 'coordinates': (-79.34907396, 43.66531756)}"
-5171,5242,GO-20191705618,B&E,2019-09-05T00:00:00,2019,September,Thursday,5,248,20,2019-09-06T00:00:00,2019,September,Friday,6,249,9,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SANTA CRUZ,5010 CARBON,MT,16,BLK,6000.0,STOLEN,5167,"{'type': 'Point', 'coordinates': (-79.34751991, 43.656494820000006)}"
-5172,5243,GO-20191705618,B&E,2019-09-05T00:00:00,2019,September,Thursday,5,248,20,2019-09-06T00:00:00,2019,September,Friday,6,249,9,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,1,BLU,700.0,STOLEN,5168,"{'type': 'Point', 'coordinates': (-79.34751991, 43.656494820000006)}"
-5173,5249,GO-20199028890,THEFT UNDER,2019-09-05T00:00:00,2019,September,Thursday,5,248,12,2019-09-05T00:00:00,2019,September,Thursday,5,248,19,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,TR,X CALIBER,MT,7,BLU,2000.0,STOLEN,5169,"{'type': 'Point', 'coordinates': (-79.34055684, 43.66228154)}"
-5174,5405,GO-20199031541,THEFT UNDER,2019-06-11T00:00:00,2019,June,Tuesday,11,162,18,2019-09-25T00:00:00,2019,September,Wednesday,25,268,19,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,UK,REMUS 2015 BLUE,RG,1,LBL,650.0,STOLEN,5170,"{'type': 'Point', 'coordinates': (-79.33222359000001, 43.66280519)}"
-5175,5426,GO-20191854098,THEFT OF EBIKE OVER $5000,2019-09-25T00:00:00,2019,September,Wednesday,25,268,21,2019-09-26T00:00:00,2019,September,Thursday,26,269,10,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,,EL,0,BLK,6300.0,STOLEN,5171,"{'type': 'Point', 'coordinates': (-79.34030508, 43.66516613)}"
-5176,5433,GO-20199031942,THEFT UNDER,2019-09-29T00:00:00,2019,September,Sunday,29,272,1,2019-09-29T00:00:00,2019,September,Sunday,29,272,7,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,OT,10,,500.0,STOLEN,5172,"{'type': 'Point', 'coordinates': (-79.33656862, 43.67155632)}"
-5177,5458,GO-20199032421,THEFT UNDER,2019-10-02T00:00:00,2019,October,Wednesday,2,275,18,2019-10-02T00:00:00,2019,October,Wednesday,2,275,20,D55,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,,MT,24,GRN,904.0,STOLEN,5173,"{'type': 'Point', 'coordinates': (-79.33754387, 43.6687961)}"
-5178,5491,GO-20199033218,THEFT UNDER,2019-10-08T00:00:00,2019,October,Tuesday,8,281,22,2019-10-09T00:00:00,2019,October,Wednesday,9,282,11,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,INDIE 4,RG,17,BLK,700.0,STOLEN,5174,"{'type': 'Point', 'coordinates': (-79.33618619, 43.66540784)}"
-5179,5620,GO-20199035811,THEFT UNDER,2019-08-08T00:00:00,2019,August,Thursday,8,220,11,2019-10-30T00:00:00,2019,October,Wednesday,30,303,11,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,EM,URBAN S,EL,30,RED,2500.0,STOLEN,5175,"{'type': 'Point', 'coordinates': (-79.33413241, 43.665859450000006)}"
-5180,5681,GO-20199037129,FTC PROBATION ORDER,2019-11-11T00:00:00,2019,November,Monday,11,315,7,2019-11-11T00:00:00,2019,November,Monday,11,315,10,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,NO,,RG,8,GRY,2000.0,STOLEN,5176,"{'type': 'Point', 'coordinates': (-79.34850134, 43.66635646)}"
-5181,5753,GO-20192388095,B&E,2019-12-01T00:00:00,2019,December,Sunday,1,335,20,2019-12-11T00:00:00,2019,December,Wednesday,11,345,17,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,TALON,MT,27,BLK,88496.0,STOLEN,5177,"{'type': 'Point', 'coordinates': (-79.3412907, 43.66212954)}"
-5182,5792,GO-20199042435,THEFT UNDER,2019-12-24T00:00:00,2019,December,Tuesday,24,358,0,2019-12-30T00:00:00,2019,December,Monday,30,364,18,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,9,,200.0,STOLEN,5178,"{'type': 'Point', 'coordinates': (-79.3532346, 43.6616993)}"
-5183,5818,GO-202074429,B&E,2019-12-20T00:00:00,2019,December,Friday,20,354,16,2020-01-11T00:00:00,2020,January,Saturday,11,11,20,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,ACID CUBE,NOT PROVIDED,MT,17,BLKWHI,1000.0,STOLEN,5179,"{'type': 'Point', 'coordinates': (-79.35353151, 43.66163711)}"
-5184,5881,GO-2020282516,THEFT UNDER,2020-02-08T00:00:00,2020,February,Saturday,8,39,15,2020-02-09T00:00:00,2020,February,Sunday,9,40,16,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,HYBRID,OT,1,BLU,600.0,STOLEN,5180,"{'type': 'Point', 'coordinates': (-79.34804819, 43.66027543)}"
-5185,25464,GO-20179010394,THEFT UNDER - BICYCLE,2017-07-15T00:00:00,2017,July,Saturday,15,196,23,2017-07-18T00:00:00,2017,July,Tuesday,18,199,10,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FJ,DECLARATION 201,RG,1,BLK,600.0,STOLEN,5181,"{'type': 'Point', 'coordinates': (-79.33982221, 43.67917608)}"
-5186,5882,GO-2020282516,THEFT UNDER,2020-02-08T00:00:00,2020,February,Saturday,8,39,15,2020-02-09T00:00:00,2020,February,Sunday,9,40,16,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,BMW,TO,1,SIL,2200.0,STOLEN,5182,"{'type': 'Point', 'coordinates': (-79.34804819, 43.66027543)}"
-5187,5914,GO-2020375616,THEFT UNDER - BICYCLE,2020-02-15T00:00:00,2020,February,Saturday,15,46,10,2020-02-22T00:00:00,2020,February,Saturday,22,53,9,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,JUNIOR,RG,0,,,STOLEN,5183,"{'type': 'Point', 'coordinates': (-79.3458901, 43.66601542)}"
-5188,5915,GO-2020375616,THEFT UNDER - BICYCLE,2020-02-15T00:00:00,2020,February,Saturday,15,46,10,2020-02-22T00:00:00,2020,February,Saturday,22,53,9,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,,OT,11,BLK,1500.0,STOLEN,5184,"{'type': 'Point', 'coordinates': (-79.3458901, 43.66601542)}"
-5189,5955,GO-20209008660,THEFT UNDER,2020-03-12T00:00:00,2020,March,Thursday,12,72,1,2020-03-12T00:00:00,2020,March,Thursday,12,72,10,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ALLEZ SPORT,RC,32,GRY,1500.0,STOLEN,5185,"{'type': 'Point', 'coordinates': (-79.35154717, 43.66021913)}"
-5190,5962,GO-20209008947,THEFT UNDER,2020-03-13T00:00:00,2020,March,Friday,13,73,19,2020-03-14T00:00:00,2020,March,Saturday,14,74,17,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,GT,AVALANCHE,MT,12,GRN,1955.0,STOLEN,5186,"{'type': 'Point', 'coordinates': (-79.34885459, 43.656657970000005)}"
-5191,5966,GO-20209009026,THEFT UNDER,2020-03-15T00:00:00,2020,March,Sunday,15,75,18,2020-03-15T00:00:00,2020,March,Sunday,15,75,19,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GT,21 APEED,MT,21,BLK,150.0,STOLEN,5188,"{'type': 'Point', 'coordinates': (-79.33244189, 43.66846738)}"
-5192,6051,GO-20209010921,THEFT UNDER,2020-04-11T00:00:00,2020,April,Saturday,11,102,15,2020-04-11T00:00:00,2020,April,Saturday,11,102,16,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,OT,1,BLK,60.0,STOLEN,5189,"{'type': 'Point', 'coordinates': (-79.32895785, 43.66352946)}"
-5193,6220,GO-20209013645,THEFT UNDER,2020-05-20T00:00:00,2020,May,Wednesday,20,141,20,2020-05-21T00:00:00,2020,May,Thursday,21,142,18,D55,Toronto,70,South Riverdale (70),"Group Homes (Non-Profit, Halfway House, Social Agency)",Other,OT,FEMALE,MT,30,BLK,1500.0,STOLEN,5190,"{'type': 'Point', 'coordinates': (-79.34235669, 43.64967783)}"
-5194,6221,GO-20209013645,THEFT UNDER,2020-05-20T00:00:00,2020,May,Wednesday,20,141,20,2020-05-21T00:00:00,2020,May,Thursday,21,142,18,D55,Toronto,70,South Riverdale (70),"Group Homes (Non-Profit, Halfway House, Social Agency)",Other,OT,ALUMINIUM,MT,30,SIL,1500.0,STOLEN,5191,"{'type': 'Point', 'coordinates': (-79.34235669, 43.64967783)}"
-5195,6236,GO-20209013785,THEFT UNDER,2020-05-23T00:00:00,2020,May,Saturday,23,144,18,2020-05-24T00:00:00,2020,May,Sunday,24,145,9,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,BAD BOY 1,OT,18,BLK,1500.0,STOLEN,5192,"{'type': 'Point', 'coordinates': (-79.34156719, 43.66484383)}"
-5196,6273,GO-20209014293,THEFT UNDER,2020-05-29T00:00:00,2020,May,Friday,29,150,20,2020-05-31T00:00:00,2020,May,Sunday,31,152,14,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,OT,,TO,27,GRY,1500.0,STOLEN,5193,"{'type': 'Point', 'coordinates': (-79.34030508, 43.66516613)}"
-5197,6287,GO-20209014432,THEFT UNDER,2020-06-02T00:00:00,2020,June,Tuesday,2,154,23,2020-06-03T00:00:00,2020,June,Wednesday,3,155,0,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RG,1,GRY,250.0,STOLEN,5194,"{'type': 'Point', 'coordinates': (-79.34030508, 43.66516613)}"
-5198,6288,GO-20209014432,THEFT UNDER,2020-06-02T00:00:00,2020,June,Tuesday,2,154,23,2020-06-03T00:00:00,2020,June,Wednesday,3,155,0,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RG,1,GRY,250.0,STOLEN,5195,"{'type': 'Point', 'coordinates': (-79.34030508, 43.66516613)}"
-5199,6306,GO-20201040624,THEFT UNDER,2020-06-04T00:00:00,2020,June,Thursday,4,156,2,2020-06-06T00:00:00,2020,June,Saturday,6,158,12,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,RG,21,,,STOLEN,5196,"{'type': 'Point', 'coordinates': (-79.34404681, 43.661521230000005)}"
-5200,6439,GO-20209015890,THEFT UNDER,2020-06-22T00:00:00,2020,June,Monday,22,174,10,2020-06-22T00:00:00,2020,June,Monday,22,174,14,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,MARLIN 7,MT,27,GRY,1000.0,STOLEN,5197,"{'type': 'Point', 'coordinates': (-79.33272528, 43.66912039)}"
-5201,6460,GO-20209016078,THEFT UNDER,2020-06-24T00:00:00,2020,June,Wednesday,24,176,18,2020-06-25T00:00:00,2020,June,Thursday,25,177,8,D55,Toronto,70,South Riverdale (70),"Open Areas (Lakes, Parks, Rivers)",Outside,GI,CYPRESS DX,RG,18,GRY,700.0,STOLEN,5198,"{'type': 'Point', 'coordinates': (-79.34703708, 43.66281247)}"
-5202,6526,GO-20201239093,THEFT UNDER,2020-07-05T00:00:00,2020,July,Sunday,5,187,3,2020-07-05T00:00:00,2020,July,Sunday,5,187,10,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,RADIO,BM,1,,1800.0,STOLEN,5199,"{'type': 'Point', 'coordinates': (-79.34751991, 43.656494820000006)}"
-5203,6527,GO-20201239093,THEFT UNDER,2020-07-05T00:00:00,2020,July,Sunday,5,187,3,2020-07-05T00:00:00,2020,July,Sunday,5,187,10,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,PURE FIX,BM,1,,600.0,STOLEN,5200,"{'type': 'Point', 'coordinates': (-79.34751991, 43.656494820000006)}"
-5204,6552,GO-20209017028,THEFT UNDER,2020-07-05T00:00:00,2020,July,Sunday,5,187,16,2020-07-07T00:00:00,2020,July,Tuesday,7,189,14,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,UK,SIRRUS,TO,21,WHI,800.0,STOLEN,5201,"{'type': 'Point', 'coordinates': (-79.35219877, 43.65833207)}"
-5205,6613,GO-20201294477,THEFT OVER - BICYCLE,2020-07-12T00:00:00,2020,July,Sunday,12,194,22,2020-07-12T00:00:00,2020,July,Sunday,12,194,22,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,OT,24,,,STOLEN,5202,"{'type': 'Point', 'coordinates': (-79.33754387, 43.6687961)}"
-5206,12960,GO-20199025096,THEFT UNDER,2019-08-05T00:00:00,2019,August,Monday,5,217,17,2019-08-06T00:00:00,2019,August,Tuesday,6,218,1,D54,Toronto,66,Danforth (66),Ttc Subway Station,Transit,OT,CROSSROADS,RG,21,GRY,600.0,STOLEN,5203,"{'type': 'Point', 'coordinates': (-79.33761189, 43.68124567)}"
-5207,25539,GO-20189016246,THEFT UNDER - BICYCLE,2018-05-25T00:00:00,2018,May,Friday,25,145,14,2018-05-25T00:00:00,2018,May,Friday,25,145,15,D55,Toronto,68,North Riverdale (68),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,V85,RC,22,BLK,1500.0,STOLEN,5204,"{'type': 'Point', 'coordinates': (-79.35401679, 43.67714457)}"
-5208,6830,GO-20201433732,THEFT UNDER - BICYCLE,2020-07-29T00:00:00,2020,July,Wednesday,29,211,20,2020-08-01T00:00:00,2020,August,Saturday,1,214,16,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DEVINCI,HYBRID,RG,12,BLUGRY,1200.0,STOLEN,5205,"{'type': 'Point', 'coordinates': (-79.34358911, 43.6633331)}"
-5209,25551,GO-20181156632,THEFT UNDER - BICYCLE,2018-06-25T00:00:00,2018,June,Monday,25,176,17,2018-06-25T00:00:00,2018,June,Monday,25,176,17,D55,Toronto,68,North Riverdale (68),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,MT,1,BLK,600.0,STOLEN,5206,"{'type': 'Point', 'coordinates': (-79.35704037, 43.67426395)}"
-5210,7345,GO-20201816050,THEFT UNDER - BICYCLE,2020-09-24T00:00:00,2020,September,Thursday,24,268,0,2020-09-24T00:00:00,2020,September,Thursday,24,268,20,D54,Toronto,67,Playter Estates-Danforth (67),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,,MT,24,BLK,,STOLEN,5207,"{'type': 'Point', 'coordinates': (-79.35674002, 43.68116210000001)}"
-5211,12961,GO-20199025096,THEFT UNDER,2019-08-05T00:00:00,2019,August,Monday,5,217,17,2019-08-06T00:00:00,2019,August,Tuesday,6,218,1,D54,Toronto,66,Danforth (66),Ttc Subway Station,Transit,OTHER,OTTAWA,RG,24,MRN,500.0,STOLEN,5208,"{'type': 'Point', 'coordinates': (-79.33761189, 43.68124567)}"
-5212,25608,GO-20182108900,THEFT UNDER,2018-11-09T00:00:00,2018,November,Friday,9,313,10,2018-11-15T00:00:00,2018,November,Thursday,15,319,21,D55,Toronto,69,Blake-Jones (69),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FORTRESS,1700,SC,1,RED,5000.0,STOLEN,5209,"{'type': 'Point', 'coordinates': (-79.3381091, 43.67514106)}"
-5213,6883,GO-20209019506,THEFT UNDER,2020-08-06T00:00:00,2020,August,Thursday,6,219,6,2020-08-06T00:00:00,2020,August,Thursday,6,219,6,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,3.8 CROSS,MT,9,GRY,1800.0,STOLEN,5210,"{'type': 'Point', 'coordinates': (-79.34295935, 43.66175828)}"
-5214,25625,GO-20199016504,THEFT UNDER,2019-05-27T00:00:00,2019,May,Monday,27,147,8,2019-05-27T00:00:00,2019,May,Monday,27,147,15,D55,Toronto,69,Blake-Jones (69),Schools During Supervised Activity,Educational,OT,NOT SURE,MT,6,YEL,40.0,STOLEN,5211,"{'type': 'Point', 'coordinates': (-79.33917593, 43.67183906)}"
-5215,7199,GO-20201698385,THEFT FROM MOTOR VEHICLE OVER,2020-08-25T00:00:00,2020,August,Tuesday,25,238,17,2020-09-08T00:00:00,2020,September,Tuesday,8,252,10,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,TEAMMACHINE,RG,1,BLKWHI,12000.0,STOLEN,5212,"{'type': 'Point', 'coordinates': (-79.33877517, 43.64023603)}"
-5216,7224,GO-20201642304,B&E,2020-08-30T00:00:00,2020,August,Sunday,30,243,19,2020-08-31T00:00:00,2020,August,Monday,31,244,12,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,QUICK 8,TO,21,TRQ,1000.0,STOLEN,5213,"{'type': 'Point', 'coordinates': (-79.33986979, 43.66696579)}"
-5217,7277,GO-20201764221,B&E W'INTENT,2020-09-16T00:00:00,2020,September,Wednesday,16,260,19,2020-09-18T00:00:00,2020,September,Friday,18,262,17,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DEVINCI,RIFF 29 ALIVIO,MT,21,BLK,850.0,STOLEN,5214,"{'type': 'Point', 'coordinates': (-79.34122836, 43.66079274)}"
-5218,7294,GO-20209023811,THEFT UNDER,2020-09-19T00:00:00,2020,September,Saturday,19,263,1,2020-09-19T00:00:00,2020,September,Saturday,19,263,9,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,RG,15,BLU,0.0,STOLEN,5215,"{'type': 'Point', 'coordinates': (-79.3401442, 43.65813994)}"
-5219,7295,GO-20209023811,THEFT UNDER,2020-09-19T00:00:00,2020,September,Saturday,19,263,1,2020-09-19T00:00:00,2020,September,Saturday,19,263,9,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,POMONA,RG,5,BLU,165.0,STOLEN,5216,"{'type': 'Point', 'coordinates': (-79.3401442, 43.65813994)}"
-5220,7303,GO-20201791495,THEFT UNDER,2020-09-16T00:00:00,2020,September,Wednesday,16,260,18,2020-09-21T00:00:00,2020,September,Monday,21,265,12,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,SUPERCYCLE,,OT,10,,500.0,STOLEN,5217,"{'type': 'Point', 'coordinates': (-79.35317174, 43.660039780000005)}"
-5221,7471,GO-20201946246,THEFT OF EBIKE UNDER $5000,2020-10-13T00:00:00,2020,October,Tuesday,13,287,2,2020-10-13T00:00:00,2020,October,Tuesday,13,287,18,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,GEO,EL,3,,550.0,STOLEN,5218,"{'type': 'Point', 'coordinates': (-79.3389207, 43.65840215)}"
-5222,7544,GO-20209027645,THEFT UNDER,2020-10-10T00:00:00,2020,October,Saturday,10,284,16,2020-10-25T00:00:00,2020,October,Sunday,25,299,17,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,GI,"LIV ROVE 3, 201",RG,7,BLK,599.0,STOLEN,5219,"{'type': 'Point', 'coordinates': (-79.35330744, 43.65809046)}"
-5223,7554,GO-20202024200,THEFT UNDER,2020-10-24T00:00:00,2020,October,Saturday,24,298,20,2020-10-27T00:00:00,2020,October,Tuesday,27,301,13,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,MT,24,BLK,300.0,STOLEN,5220,"{'type': 'Point', 'coordinates': (-79.35156682, 43.66305698)}"
-5224,7631,GO-20209029515,THEFT UNDER,2020-11-13T00:00:00,2020,November,Friday,13,318,15,2020-11-13T00:00:00,2020,November,Friday,13,318,16,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,CA,BAD BOY 1 2020,OT,8,BLK,2800.0,STOLEN,5221,"{'type': 'Point', 'coordinates': (-79.34156719, 43.66484383)}"
-5225,7690,GO-20202291540,THEFT UNDER,2020-12-03T00:00:00,2020,December,Thursday,3,338,20,2020-12-04T00:00:00,2020,December,Friday,4,339,19,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CCM,,MT,27,BLKONG,600.0,STOLEN,5222,"{'type': 'Point', 'coordinates': (-79.34122836, 43.66079274)}"
-5226,7698,GO-20209031734,THEFT UNDER,2020-12-10T00:00:00,2020,December,Thursday,10,345,15,2020-12-10T00:00:00,2020,December,Thursday,10,345,19,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,,MT,18,DGR,1400.0,STOLEN,5223,"{'type': 'Point', 'coordinates': (-79.34707943, 43.66048117)}"
-5227,7712,GO-20202402321,B&E W'INTENT,2020-12-17T00:00:00,2020,December,Thursday,17,352,1,2020-12-22T00:00:00,2020,December,Tuesday,22,357,6,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,1,,1500.0,STOLEN,5224,"{'type': 'Point', 'coordinates': (-79.34543043, 43.659862360000005)}"
-5228,7738,GO-20141304072,B&E W'INTENT,2014-01-07T00:00:00,2014,January,Tuesday,7,7,8,2014-01-08T00:00:00,2014,January,Wednesday,8,8,11,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,YUKON,MT,21,SILBLU,150.0,STOLEN,5225,"{'type': 'Point', 'coordinates': (-79.33111211, 43.66011933)}"
-5229,7763,GO-20141545496,THEFT UNDER,2014-01-15T00:00:00,2014,January,Wednesday,15,15,0,2014-02-17T00:00:00,2014,February,Monday,17,48,10,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MARIN OR MARINO,NOVATO,MT,27,SILBLK,700.0,STOLEN,5226,"{'type': 'Point', 'coordinates': (-79.3341416, 43.65945332)}"
-5230,7803,GO-20141809722,THEFT UNDER,2014-04-01T00:00:00,2014,April,Tuesday,1,91,12,2014-04-01T00:00:00,2014,April,Tuesday,1,91,18,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,EAGLE,NONE,TA,1,MRN,1400.0,STOLEN,5227,"{'type': 'Point', 'coordinates': (-79.3291961, 43.67387997)}"
-5231,25557,GO-20189021110,THEFT UNDER - BICYCLE,2018-07-01T00:00:00,2018,July,Sunday,1,182,1,2018-07-04T00:00:00,2018,July,Wednesday,4,185,9,D55,Toronto,68,North Riverdale (68),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,CHINOOK,RG,40,BLK,800.0,STOLEN,5228,"{'type': 'Point', 'coordinates': (-79.35316558, 43.67305507)}"
-5232,12965,GO-20191501142,THEFT OF MOTOR VEHICLE,2019-08-08T00:00:00,2019,August,Thursday,8,220,16,2019-08-08T00:00:00,2019,August,Thursday,8,220,19,D54,Toronto,66,Danforth (66),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,PEDEGO,,EL,1,SIL,600.0,STOLEN,5229,"{'type': 'Point', 'coordinates': (-79.33727518, 43.68042137)}"
-5233,7346,GO-20201816050,THEFT UNDER - BICYCLE,2020-09-24T00:00:00,2020,September,Thursday,24,268,0,2020-09-24T00:00:00,2020,September,Thursday,24,268,20,D54,Toronto,67,Playter Estates-Danforth (67),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,,MT,24,BLKRED,,STOLEN,5230,"{'type': 'Point', 'coordinates': (-79.35674002, 43.68116210000001)}"
-5234,7863,GO-20149003010,THEFT UNDER,2014-04-20T00:00:00,2014,April,Sunday,20,110,8,2014-04-25T00:00:00,2014,April,Friday,25,115,21,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,ANTHEM X ADVANC,MT,20,WHI,3000.0,STOLEN,5231,"{'type': 'Point', 'coordinates': (-79.33723663, 43.66056273)}"
-5235,7929,GO-20142078954,THEFT UNDER,2014-05-14T00:00:00,2014,May,Wednesday,14,134,15,2014-05-16T00:00:00,2014,May,Friday,16,136,15,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FORTRESS,1700,SC,1,DBL,700.0,STOLEN,5232,"{'type': 'Point', 'coordinates': (-79.33138495, 43.66299749)}"
-5236,8049,GO-20142214576,THEFT UNDER,2014-06-03T00:00:00,2014,June,Tuesday,3,154,18,2014-06-03T00:00:00,2014,June,Tuesday,3,154,19,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,ACAPULCO,MT,21,GRN,550.0,STOLEN,5233,"{'type': 'Point', 'coordinates': (-79.33887346, 43.66133853)}"
-5237,8157,GO-20149004145,THEFT UNDER,2014-06-16T00:00:00,2014,June,Monday,16,167,18,2014-06-16T00:00:00,2014,June,Monday,16,167,20,D55,Toronto,70,South Riverdale (70),"Open Areas (Lakes, Parks, Rivers)",Outside,NO,HEART (2014),RG,1,BLK,500.0,STOLEN,5234,"{'type': 'Point', 'coordinates': (-79.33877517, 43.64023603)}"
-5238,8168,GO-20142319598,B&E,2014-06-18T00:00:00,2014,June,Wednesday,18,169,11,2014-06-19T00:00:00,2014,June,Thursday,19,170,8,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CANNONDALE,,MT,10,BLU,4000.0,STOLEN,5235,"{'type': 'Point', 'coordinates': (-79.33381854000001, 43.67165898)}"
-5239,8248,GO-20149004427,THEFT UNDER,2014-06-15T00:00:00,2014,June,Sunday,15,166,10,2014-06-25T00:00:00,2014,June,Wednesday,25,176,10,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,TR,SL 1000,RC,8,,,STOLEN,5236,"{'type': 'Point', 'coordinates': (-79.35330744, 43.65809046)}"
-5240,8302,GO-20142442318,THEFT UNDER,2014-07-05T00:00:00,2014,July,Saturday,5,186,21,2014-07-07T00:00:00,2014,July,Monday,7,188,21,D55,Toronto,70,South Riverdale (70),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,SCHWINN,HYBRID,OT,28,REDWHI,1000.0,STOLEN,5237,"{'type': 'Point', 'coordinates': (-79.30469992, 43.66622023)}"
-5241,8306,GO-20149004610,THEFT UNDER,2014-06-30T00:00:00,2014,June,Monday,30,181,17,2014-07-01T00:00:00,2014,July,Tuesday,1,182,22,D55,Toronto,70,South Riverdale (70),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,,RG,4,WHI,600.0,STOLEN,5238,"{'type': 'Point', 'coordinates': (-79.31237569, 43.66036758)}"
-5242,8319,GO-20142457019,THEFT UNDER,2014-06-30T00:00:00,2014,June,Monday,30,181,18,2014-07-08T00:00:00,2014,July,Tuesday,8,189,17,D55,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,MIELE,UMBRIA 3,OT,24,BLUGRY,350.0,STOLEN,5239,"{'type': 'Point', 'coordinates': (-79.31237569, 43.66036758)}"
-5243,8337,GO-20142485077,THEFT UNDER,2014-07-12T00:00:00,2014,July,Saturday,12,193,19,2014-07-13T00:00:00,2014,July,Sunday,13,194,0,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN,,RG,0,PNKSIL,50.0,STOLEN,5240,"{'type': 'Point', 'coordinates': (-79.34036066, 43.66817266)}"
-5244,8346,GO-20149004701,THEFT UNDER,2014-07-04T00:00:00,2014,July,Friday,4,185,22,2014-07-05T00:00:00,2014,July,Saturday,5,186,22,D55,Toronto,70,South Riverdale (70),Bar / Restaurant,Commercial,OT,CUSTOM,TO,1,BLK,750.0,STOLEN,5241,"{'type': 'Point', 'coordinates': (-79.34861207, 43.65915101)}"
-5245,8425,GO-20149004995,THEFT UNDER,2014-07-14T00:00:00,2014,July,Monday,14,195,20,2014-07-14T00:00:00,2014,July,Monday,14,195,23,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BI,,RC,10,GRY,1200.0,STOLEN,5242,"{'type': 'Point', 'coordinates': (-79.34358911, 43.6633331)}"
-5246,8444,GO-20149005087,THEFT UNDER,2014-07-18T00:00:00,2014,July,Friday,18,199,20,2014-07-18T00:00:00,2014,July,Friday,18,199,21,D55,Toronto,70,South Riverdale (70),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UK,,MT,24,BLU,,STOLEN,5243,"{'type': 'Point', 'coordinates': (-79.34036066, 43.66817266)}"
-5247,8623,GO-20149005745,THEFT UNDER,2014-08-03T00:00:00,2014,August,Sunday,3,215,17,2014-08-08T00:00:00,2014,August,Friday,8,220,17,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,,TO,6,RED,350.0,STOLEN,5244,"{'type': 'Point', 'coordinates': (-79.351513, 43.65849323)}"
-5248,8644,GO-20149005846,THEFT UNDER,2014-08-10T00:00:00,2014,August,Sunday,10,222,17,2014-08-11T00:00:00,2014,August,Monday,11,223,22,D51,Toronto,70,South Riverdale (70),Bar / Restaurant,Commercial,CC,,OT,21,GRN,500.0,STOLEN,5245,"{'type': 'Point', 'coordinates': (-79.35058013, 43.64309128)}"
-5249,8668,GO-20149005969,THEFT UNDER,2014-08-14T00:00:00,2014,August,Thursday,14,226,19,2014-08-15T00:00:00,2014,August,Friday,15,227,9,D55,Toronto,70,South Riverdale (70),Convenience Stores,Commercial,OT,MONTREAL,OT,7,BLK,800.0,STOLEN,5246,"{'type': 'Point', 'coordinates': (-79.32839639, 43.65923478)}"
-5250,8670,GO-20149005970,THEFT UNDER,2014-07-24T00:00:00,2014,July,Thursday,24,205,10,2014-08-15T00:00:00,2014,August,Friday,15,227,10,D55,Toronto,70,South Riverdale (70),"Open Areas (Lakes, Parks, Rivers)",Outside,GF,GOLD SERIES,OT,24,BLK,250.0,STOLEN,5247,"{'type': 'Point', 'coordinates': (-79.31482799, 43.66227291)}"
-5251,8705,GO-20149006164,THEFT UNDER,2014-08-20T00:00:00,2014,August,Wednesday,20,232,17,2014-08-21T00:00:00,2014,August,Thursday,21,233,8,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,DECLARATION,OT,1,BLK,600.0,STOLEN,5248,"{'type': 'Point', 'coordinates': (-79.35219877, 43.65833207)}"
-5252,8756,GO-20142800792,THEFT UNDER,2014-08-29T00:00:00,2014,August,Friday,29,241,15,2014-08-29T00:00:00,2014,August,Friday,29,241,15,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,ENNO,,EL,1,BLKGRY,1750.0,STOLEN,5249,"{'type': 'Point', 'coordinates': (-79.34707943, 43.66048117)}"
-5253,8797,GO-20149006516,THEFT UNDER,2014-09-02T00:00:00,2014,September,Tuesday,2,245,15,2014-09-03T00:00:00,2014,September,Wednesday,3,246,9,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,EL,3,SIL,1667.0,STOLEN,5250,"{'type': 'Point', 'coordinates': (-79.32730959, 43.66390954)}"
-5254,8839,GO-20142807911,PROPERTY - FOUND,2014-08-30T00:00:00,2014,August,Saturday,30,242,17,2014-09-10T00:00:00,2014,September,Wednesday,10,253,0,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GREEN KHS SOUL,HYBRID,RG,0,,,UNKNOWN,5251,"{'type': 'Point', 'coordinates': (-79.33878004, 43.6613564)}"
-5255,8866,GO-20149006774,THEFT UNDER,2014-09-09T00:00:00,2014,September,Tuesday,9,252,23,2014-09-10T00:00:00,2014,September,Wednesday,10,253,18,D55,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,7.3,RG,18,SIL,900.0,STOLEN,5252,"{'type': 'Point', 'coordinates': (-79.34055684, 43.66228154)}"
-5256,8923,GO-20142941034,B&E,2014-09-18T00:00:00,2014,September,Thursday,18,261,22,2014-09-19T00:00:00,2014,September,Friday,19,262,15,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,OTHER,,RG,12,SILBLU,100.0,STOLEN,5253,"{'type': 'Point', 'coordinates': (-79.35429893, 43.66504781)}"
-5257,8938,GO-20142960787,B&E,2014-09-18T00:00:00,2014,September,Thursday,18,261,19,2014-09-22T00:00:00,2014,September,Monday,22,265,15,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,NORCO,VFR 4,MT,21,BLKGRY,499.0,STOLEN,5254,"{'type': 'Point', 'coordinates': (-79.34217159, 43.66194084)}"
-5258,8939,GO-20142960787,B&E,2014-09-18T00:00:00,2014,September,Thursday,18,261,19,2014-09-22T00:00:00,2014,September,Monday,22,265,15,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,ALLEZ LAS WORKS,OT,21,WHIRED,3800.0,STOLEN,5255,"{'type': 'Point', 'coordinates': (-79.34217159, 43.66194084)}"
-5259,8996,GO-20149007290,THEFT UNDER,2014-09-26T00:00:00,2014,September,Friday,26,269,16,2014-09-29T00:00:00,2014,September,Monday,29,272,13,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,CA,CAAD 10,RC,14,BLK,2000.0,STOLEN,5256,"{'type': 'Point', 'coordinates': (-79.3412907, 43.66212954)}"
-5260,9035,GO-20149007500,THEFT UNDER,2014-10-09T00:00:00,2014,October,Thursday,9,282,17,2014-10-09T00:00:00,2014,October,Thursday,9,282,20,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,XTC2,MT,27,GRY,1130.0,STOLEN,5257,"{'type': 'Point', 'coordinates': (-79.33427841, 43.6661702)}"
-5261,9156,GO-20143243099,THEFT UNDER,2014-11-04T00:00:00,2014,November,Tuesday,4,308,17,2014-11-05T00:00:00,2014,November,Wednesday,5,309,11,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DEVINCI,CARIVOU XL,RC,27,RED,800.0,STOLEN,5258,"{'type': 'Point', 'coordinates': (-79.3400521, 43.66106114)}"
-5262,9206,GO-20142807911,PROPERTY - FOUND,2014-08-30T00:00:00,2014,August,Saturday,30,242,17,2014-09-10T00:00:00,2014,September,Wednesday,10,253,0,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,SOUL,MT,12,,,RECOVERED,5259,"{'type': 'Point', 'coordinates': (-79.33878004, 43.6613564)}"
-5263,9214,GO-20149008549,THEFT UNDER,2014-12-03T00:00:00,2014,December,Wednesday,3,337,18,2014-12-04T00:00:00,2014,December,Thursday,4,338,9,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,CITY GLIDE,TO,7,BLK,600.0,STOLEN,5260,"{'type': 'Point', 'coordinates': (-79.33403107, 43.66241627)}"
-5264,9216,GO-20143248290,THEFT UNDER,2014-11-05T00:00:00,2014,November,Wednesday,5,309,10,2014-11-05T00:00:00,2014,November,Wednesday,5,309,21,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,UNKNOWN,MT,21,BLKBLU,,STOLEN,5261,"{'type': 'Point', 'coordinates': (-79.33244189, 43.66846738)}"
-5265,9242,GO-20143560104,THEFT UNDER,2014-12-27T00:00:00,2014,December,Saturday,27,361,10,2014-12-28T00:00:00,2014,December,Sunday,28,362,3,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,RG,1,BLKPNK,250.0,STOLEN,5262,"{'type': 'Point', 'coordinates': (-79.34122836, 43.66079274)}"
-5266,9294,GO-20159000868,THEFT UNDER,2015-02-08T00:00:00,2015,February,Sunday,8,39,21,2015-02-18T00:00:00,2015,February,Wednesday,18,49,21,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,,RG,16,BLK,700.0,STOLEN,5263,"{'type': 'Point', 'coordinates': (-79.35088962, 43.65863192)}"
-5267,9311,GO-2015390494,THEFT UNDER,2015-03-07T00:00:00,2015,March,Saturday,7,66,8,2015-03-07T00:00:00,2015,March,Saturday,7,66,15,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN,,TO,1,,,STOLEN,5264,"{'type': 'Point', 'coordinates': (-79.35088962, 43.65863192)}"
-5268,9312,GO-2015390494,THEFT UNDER,2015-03-07T00:00:00,2015,March,Saturday,7,66,8,2015-03-07T00:00:00,2015,March,Saturday,7,66,15,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,UNKONWN,,TO,1,,,STOLEN,5265,"{'type': 'Point', 'coordinates': (-79.35088962, 43.65863192)}"
-5269,9351,GO-20159001534,THEFT UNDER,2015-03-25T00:00:00,2015,March,Wednesday,25,84,15,2015-03-25T00:00:00,2015,March,Wednesday,25,84,17,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,,MT,7,BGE,179.0,STOLEN,5266,"{'type': 'Point', 'coordinates': (-79.35220622, 43.66224318)}"
-5270,9366,GO-2015562735,PROPERTY - FOUND,2015-04-05T00:00:00,2015,April,Sunday,5,95,9,2015-04-05T00:00:00,2015,April,Sunday,5,95,16,D55,Toronto,70,South Riverdale (70),"Open Areas (Lakes, Parks, Rivers)",Outside,OTHER,GS32014,BM,0,BLUGRY,,UNKNOWN,5267,"{'type': 'Point', 'coordinates': (-79.33005159, 43.66891377000001)}"
-5271,9367,GO-2015562735,PROPERTY - FOUND,2015-04-05T00:00:00,2015,April,Sunday,5,95,9,2015-04-05T00:00:00,2015,April,Sunday,5,95,16,D55,Toronto,70,South Riverdale (70),"Open Areas (Lakes, Parks, Rivers)",Outside,CCM,,MT,10,GRN,,UNKNOWN,5268,"{'type': 'Point', 'coordinates': (-79.33005159, 43.66891377000001)}"
-5272,9392,GO-2015598145,THEFT UNDER,2015-04-03T00:00:00,2015,April,Friday,3,93,2,2015-04-11T00:00:00,2015,April,Saturday,11,101,12,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,LINUS,GASTON 3,TO,3,BLK,1000.0,STOLEN,5269,"{'type': 'Point', 'coordinates': (-79.33903811, 43.66497532)}"
-5273,9434,GO-2015648821,THEFT OVER,2015-04-19T00:00:00,2015,April,Sunday,19,109,1,2015-04-19T00:00:00,2015,April,Sunday,19,109,18,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,ARGON 18,GALLIUN,RC,10,WHI,4000.0,STOLEN,5270,"{'type': 'Point', 'coordinates': (-79.35010849, 43.65958403)}"
-5274,9435,GO-2015648821,THEFT OVER,2015-04-19T00:00:00,2015,April,Sunday,19,109,1,2015-04-19T00:00:00,2015,April,Sunday,19,109,18,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CERVELO,S3,RG,10,BLKSIL,5000.0,STOLEN,5271,"{'type': 'Point', 'coordinates': (-79.35010849, 43.65958403)}"
-5275,9436,GO-2015648821,THEFT OVER,2015-04-19T00:00:00,2015,April,Sunday,19,109,1,2015-04-19T00:00:00,2015,April,Sunday,19,109,18,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,TRI-CROSS TRIPL,RG,10,,1500.0,STOLEN,5272,"{'type': 'Point', 'coordinates': (-79.35010849, 43.65958403)}"
-5276,9450,GO-2015654746,THEFT UNDER,2015-04-19T00:00:00,2015,April,Sunday,19,109,18,2015-04-20T00:00:00,2015,April,Monday,20,110,17,D55,Toronto,70,South Riverdale (70),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OTHER,,MT,0,GRYBLK,,STOLEN,5273,"{'type': 'Point', 'coordinates': (-79.35010849, 43.65958403)}"
-5277,9488,GO-2015698079,THEFT UNDER,2015-04-27T00:00:00,2015,April,Monday,27,117,7,2015-04-27T00:00:00,2015,April,Monday,27,117,17,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,DISTRICT S,RG,1,BLK,800.0,STOLEN,5274,"{'type': 'Point', 'coordinates': (-79.34246583, 43.66052892)}"
-5278,9493,GO-20159002347,THEFT UNDER,2015-04-29T00:00:00,2015,April,Wednesday,29,119,15,2015-04-29T00:00:00,2015,April,Wednesday,29,119,19,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,ENDURANCE 700C,RC,14,ONG,400.0,STOLEN,5275,"{'type': 'Point', 'coordinates': (-79.34707943, 43.66048117)}"
-5279,9504,GO-2015722905,THEFT UNDER,2015-04-28T00:00:00,2015,April,Tuesday,28,118,11,2015-05-01T00:00:00,2015,May,Friday,1,121,19,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DCO,GIRLS,MT,21,BLK,350.0,STOLEN,5276,"{'type': 'Point', 'coordinates': (-79.34843615, 43.66377748)}"
-5280,9540,GO-2015753678,THEFT UNDER,2015-05-04T00:00:00,2015,May,Monday,4,124,17,2015-05-06T00:00:00,2015,May,Wednesday,6,126,15,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,ROCKY MOUNTAIN,,OT,18,BLKWHI,700.0,STOLEN,5277,"{'type': 'Point', 'coordinates': (-79.35219877, 43.65833207)}"
-5281,9632,GO-20159003002,THEFT UNDER,2015-05-20T00:00:00,2015,May,Wednesday,20,140,12,2015-05-21T00:00:00,2015,May,Thursday,21,141,16,D51,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,15,GRY,150.0,STOLEN,5278,"{'type': 'Point', 'coordinates': (-79.33106729, 43.66794778)}"
-5282,9675,GO-20159003160,THEFT UNDER,2015-05-27T00:00:00,2015,May,Wednesday,27,147,22,2015-05-28T00:00:00,2015,May,Thursday,28,148,22,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,TO,10,WHI,500.0,STOLEN,5279,"{'type': 'Point', 'coordinates': (-79.33498008, 43.66789948000001)}"
-5283,9751,GO-20159003434,THEFT UNDER,2015-05-29T00:00:00,2015,May,Friday,29,149,18,2015-06-03T00:00:00,2015,June,Wednesday,3,154,16,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,MT,28,BLK,600.0,STOLEN,5280,"{'type': 'Point', 'coordinates': (-79.35290454, 43.66176998)}"
-5284,9806,GO-2015992840,THEFT UNDER,2015-06-13T00:00:00,2015,June,Saturday,13,164,14,2015-06-13T00:00:00,2015,June,Saturday,13,164,15,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TRK,,OT,21,GRN,1800.0,STOLEN,5281,"{'type': 'Point', 'coordinates': (-79.32895785, 43.66352946)}"
-5285,9837,GO-20159003784,THEFT UNDER,2015-06-19T00:00:00,2015,June,Friday,19,170,7,2015-06-20T00:00:00,2015,June,Saturday,20,171,19,D55,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,MALAHAT,OT,21,TAN,800.0,STOLEN,5282,"{'type': 'Point', 'coordinates': (-79.33111211, 43.66011933)}"
-5286,9854,GO-20151051265,THEFT UNDER,2015-06-22T00:00:00,2015,June,Monday,22,173,15,2015-06-22T00:00:00,2015,June,Monday,22,173,16,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,,MT,24,BLKWHI,250.0,STOLEN,5283,"{'type': 'Point', 'coordinates': (-79.33754387, 43.6687961)}"
-5287,9862,GO-20159003882,THEFT UNDER,2015-06-23T00:00:00,2015,June,Tuesday,23,174,8,2015-06-23T00:00:00,2015,June,Tuesday,23,174,18,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,5,GRN,,STOLEN,5284,"{'type': 'Point', 'coordinates': (-79.33654683, 43.6690179)}"
-5288,9868,GO-20159003904,THEFT UNDER,2015-06-22T00:00:00,2015,June,Monday,22,173,22,2015-06-24T00:00:00,2015,June,Wednesday,24,175,10,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,1,OTH,300.0,STOLEN,5285,"{'type': 'Point', 'coordinates': (-79.33244189, 43.66846738)}"
-5289,9922,GO-20159004107,THEFT UNDER,2015-07-01T00:00:00,2015,July,Wednesday,1,182,21,2015-07-02T00:00:00,2015,July,Thursday,2,183,18,D55,Toronto,70,South Riverdale (70),"Open Areas (Lakes, Parks, Rivers)",Outside,NO,VFR FORMA,TO,21,WHI,950.0,STOLEN,5286,"{'type': 'Point', 'coordinates': (-79.31237569, 43.66036758)}"
-5290,9940,GO-20159004170,THEFT UNDER,2015-07-04T00:00:00,2015,July,Saturday,4,185,22,2015-07-05T00:00:00,2015,July,Sunday,5,186,3,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,CYLONE 2014 BLA,SC,32,BLK,1600.0,STOLEN,5287,"{'type': 'Point', 'coordinates': (-79.33754387, 43.6687961)}"
-5291,10014,GO-20151199870,B&E W'INTENT,2015-07-14T00:00:00,2015,July,Tuesday,14,195,15,2015-07-15T00:00:00,2015,July,Wednesday,15,196,11,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,PEUGEOT,,RC,1,WHI,400.0,STOLEN,5288,"{'type': 'Point', 'coordinates': (-79.33556888, 43.66925054)}"
-5292,10081,GO-20159004877,THEFT UNDER,2015-07-22T00:00:00,2015,July,Wednesday,22,203,14,2015-07-22T00:00:00,2015,July,Wednesday,22,203,23,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,AGRESSOR,MT,18,BLK,500.0,STOLEN,5289,"{'type': 'Point', 'coordinates': (-79.34981191, 43.65887805)}"
-5293,10088,GO-20159004920,THEFT UNDER,2015-07-23T00:00:00,2015,July,Thursday,23,204,0,2015-07-23T00:00:00,2015,July,Thursday,23,204,22,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,MT,21,RED,200.0,STOLEN,5290,"{'type': 'Point', 'coordinates': (-79.34246583, 43.66052892)}"
-5294,10151,GO-20159005193,THEFT FROM MOTOR VEHICLE UNDER,2015-07-30T00:00:00,2015,July,Thursday,30,211,16,2015-07-30T00:00:00,2015,July,Thursday,30,211,22,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,TOSCANNA 300,TO,24,SIL,800.0,STOLEN,5291,"{'type': 'Point', 'coordinates': (-79.34156719, 43.66484383)}"
-5295,10180,GO-20151353816,THEFT UNDER,2015-08-06T00:00:00,2015,August,Thursday,6,218,20,2015-08-07T00:00:00,2015,August,Friday,7,219,18,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KONA,SUTRA,OT,10,GRN,1200.0,STOLEN,5292,"{'type': 'Point', 'coordinates': (-79.35330744, 43.65809046)}"
-5296,10227,GO-20159005562,THEFT UNDER,2015-08-09T00:00:00,2015,August,Sunday,9,221,15,2015-08-10T00:00:00,2015,August,Monday,10,222,10,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,COMMUTER,OT,21,BLU,758.0,STOLEN,5293,"{'type': 'Point', 'coordinates': (-79.34804819, 43.66027543)}"
-5297,10281,GO-20151429121,B&E,2015-07-21T00:00:00,2015,July,Tuesday,21,202,20,2015-08-19T00:00:00,2015,August,Wednesday,19,231,23,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ROCKY MOUNTAIN,EDGE,MT,10,BLK,500.0,STOLEN,5294,"{'type': 'Point', 'coordinates': (-79.33741384, 43.66581015)}"
-5298,10282,GO-20151429121,B&E,2015-07-21T00:00:00,2015,July,Tuesday,21,202,20,2015-08-19T00:00:00,2015,August,Wednesday,19,231,23,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,GRAFT PRO,MT,18,BLKRED,500.0,STOLEN,5295,"{'type': 'Point', 'coordinates': (-79.33741384, 43.66581015)}"
-5299,10296,GO-20159005968,THEFT UNDER,2015-08-17T00:00:00,2015,August,Monday,17,229,23,2015-08-18T00:00:00,2015,August,Tuesday,18,230,11,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,CROSS TRAIL,MT,18,BLK,1800.0,STOLEN,5296,"{'type': 'Point', 'coordinates': (-79.3444186, 43.66008602)}"
-5300,10299,GO-20151438274,THEFT UNDER,2015-08-10T00:00:00,2015,August,Monday,10,222,12,2015-08-21T00:00:00,2015,August,Friday,21,233,9,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,GT80,EL,0,BLK,2000.0,UNKNOWN,5297,"{'type': 'Point', 'coordinates': (-79.33529466, 43.66211655)}"
-5301,10368,GO-20151519841,B&E,2015-09-02T00:00:00,2015,September,Wednesday,2,245,11,2015-09-03T00:00:00,2015,September,Thursday,3,246,14,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,SCHWINN,DELMAR,RG,12,BLK,494.0,STOLEN,5298,"{'type': 'Point', 'coordinates': (-79.34156719, 43.66484383)}"
-5302,10475,GO-20159007234,THEFT UNDER,2015-09-13T00:00:00,2015,September,Sunday,13,256,23,2015-09-15T00:00:00,2015,September,Tuesday,15,258,18,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,OT,TRICROSS SPORT,TO,9,BLU,1000.0,STOLEN,5299,"{'type': 'Point', 'coordinates': (-79.3533502, 43.66120299)}"
-5303,10574,GO-20151693587,THEFT UNDER,2015-10-01T00:00:00,2015,October,Thursday,1,274,9,2015-10-01T00:00:00,2015,October,Thursday,1,274,9,D51,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TREK,,MT,0,GRYBLK,700.0,STOLEN,5300,"{'type': 'Point', 'coordinates': (-79.35369524, 43.6468818)}"
-5304,10617,GO-20159008458,THEFT UNDER,2015-10-01T00:00:00,2015,October,Thursday,1,274,13,2015-10-12T00:00:00,2015,October,Monday,12,285,14,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,7,BLU,500.0,STOLEN,5301,"{'type': 'Point', 'coordinates': (-79.34156719, 43.66484383)}"
-5305,10741,GO-20159009576,THEFT UNDER,2015-11-01T00:00:00,2015,November,Sunday,1,305,15,2015-11-09T00:00:00,2015,November,Monday,9,313,22,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,EL,30,RED,1150.0,STOLEN,5302,"{'type': 'Point', 'coordinates': (-79.34055684, 43.66228154)}"
-5306,10776,GO-20159009765,THEFT UNDER,2015-11-13T00:00:00,2015,November,Friday,13,317,14,2015-11-15T00:00:00,2015,November,Sunday,15,319,14,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,GT,SADDLEBACK,MT,21,WHI,600.0,STOLEN,5303,"{'type': 'Point', 'coordinates': (-79.34030508, 43.66516613)}"
-5307,10777,GO-20159009765,THEFT UNDER,2015-11-13T00:00:00,2015,November,Friday,13,317,14,2015-11-15T00:00:00,2015,November,Sunday,15,319,14,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,OT,HARDROCK,MT,24,SIL,700.0,STOLEN,5304,"{'type': 'Point', 'coordinates': (-79.34030508, 43.66516613)}"
-5308,10793,GO-20159009930,THEFT UNDER,2015-11-17T00:00:00,2015,November,Tuesday,17,321,23,2015-11-19T00:00:00,2015,November,Thursday,19,323,21,D55,Toronto,70,South Riverdale (70),Bar / Restaurant,Commercial,OT,STUMPJUMPER FSR,MT,27,WHI,3200.0,STOLEN,5305,"{'type': 'Point', 'coordinates': (-79.33018425, 43.663238750000005)}"
-5309,10823,GO-20159010323,THEFT UNDER,2015-11-29T00:00:00,2015,November,Sunday,29,333,13,2015-11-29T00:00:00,2015,November,Sunday,29,333,17,D55,Toronto,70,South Riverdale (70),Unknown,Other,NO,,RG,21,MRN,1000.0,STOLEN,5306,"{'type': 'Point', 'coordinates': (-79.34122836, 43.66079274)}"
-5310,10838,GO-20159010551,THEFT UNDER,2015-12-07T00:00:00,2015,December,Monday,7,341,1,2015-12-07T00:00:00,2015,December,Monday,7,341,11,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,OT,3,BLK,500.0,STOLEN,5307,"{'type': 'Point', 'coordinates': (-79.34082559, 43.66644055)}"
-5311,10855,GO-20159010758,THEFT UNDER,2015-12-09T00:00:00,2015,December,Wednesday,9,343,23,2015-12-10T00:00:00,2015,December,Thursday,10,344,13,D55,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KH,,RC,11,,3799.0,STOLEN,5308,"{'type': 'Point', 'coordinates': (-79.35047888, 43.66047387)}"
-5312,10888,GO-20159011293,THEFT UNDER,2015-12-25T00:00:00,2015,December,Friday,25,359,13,2015-12-26T00:00:00,2015,December,Saturday,26,360,6,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,CROSS CHECK,RC,9,BLK,1200.0,STOLEN,5309,"{'type': 'Point', 'coordinates': (-79.33529466, 43.66211655)}"
-5313,10906,GO-20169000017,THEFT UNDER,2014-12-31T00:00:00,2014,December,Wednesday,31,365,17,2016-01-01T00:00:00,2016,January,Friday,1,1,17,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,1,BLK,320.0,STOLEN,5310,"{'type': 'Point', 'coordinates': (-79.35513876, 43.66481389)}"
-5314,10973,GO-20169001218,THEFT UNDER,2016-02-03T00:00:00,2016,February,Wednesday,3,34,23,2016-02-07T00:00:00,2016,February,Sunday,7,38,17,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,OT,SPEEDSTER S10,RC,10,BLK,1300.0,STOLEN,5311,"{'type': 'Point', 'coordinates': (-79.32871441, 43.6726925)}"
-5315,7347,GO-20201816050,THEFT UNDER - BICYCLE,2020-09-24T00:00:00,2020,September,Thursday,24,268,0,2020-09-24T00:00:00,2020,September,Thursday,24,268,20,D54,Toronto,67,Playter Estates-Danforth (67),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,,MT,24,BLKRED,650.0,STOLEN,5312,"{'type': 'Point', 'coordinates': (-79.35674002, 43.68116210000001)}"
-5316,25562,GO-20189022110,THEFT UNDER,2018-07-11T00:00:00,2018,July,Wednesday,11,192,17,2018-07-11T00:00:00,2018,July,Wednesday,11,192,19,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MA,UNKNOWN,TO,21,GRY,550.0,STOLEN,5313,"{'type': 'Point', 'coordinates': (-79.35287062, 43.6661603)}"
-5317,25575,GO-20189024561,THEFT UNDER - BICYCLE,2018-07-22T00:00:00,2018,July,Sunday,22,203,21,2018-07-30T00:00:00,2018,July,Monday,30,211,20,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,MT,24,BLK,1000.0,STOLEN,5314,"{'type': 'Point', 'coordinates': (-79.35186642, 43.67523398)}"
-5318,13002,GO-20192087795,THEFT FROM MOTOR VEHICLE UNDER,2019-10-29T00:00:00,2019,October,Tuesday,29,302,9,2019-10-29T00:00:00,2019,October,Tuesday,29,302,9,D54,Toronto,66,Danforth (66),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,OT,21,BLK,1000.0,STOLEN,5315,"{'type': 'Point', 'coordinates': (-79.33146579, 43.68256473)}"
-5319,25606,GO-20182085856,THEFT UNDER - BICYCLE,2018-11-09T00:00:00,2018,November,Friday,9,313,17,2018-11-12T00:00:00,2018,November,Monday,12,316,15,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,,MT,0,BLKSIL,500.0,STOLEN,5316,"{'type': 'Point', 'coordinates': (-79.35079801, 43.67260625)}"
-5320,7375,GO-20201819127,THEFT UNDER,2020-09-20T00:00:00,2020,September,Sunday,20,264,23,2020-09-25T00:00:00,2020,September,Friday,25,269,8,D54,Toronto,67,Playter Estates-Danforth (67),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,,MT,15,BLK,100.0,STOLEN,5317,"{'type': 'Point', 'coordinates': (-79.34958264, 43.67801227)}"
-5321,12835,GO-20169014077,THEFT UNDER - BICYCLE,2016-11-30T00:00:00,2016,November,Wednesday,30,335,9,2016-12-01T00:00:00,2016,December,Thursday,1,336,10,D55,Toronto,68,North Riverdale (68),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GT,TRANSEO 4.0 SPO,OT,8,BLK,650.0,STOLEN,5318,"{'type': 'Point', 'coordinates': (-79.3464572, 43.67023848000001)}"
-5322,13040,GO-20201046645,THEFT UNDER - BICYCLE,2020-06-06T00:00:00,2020,June,Saturday,6,158,20,2020-06-07T00:00:00,2020,June,Sunday,7,159,11,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,INDIE 3,MT,27,BLU,600.0,STOLEN,5319,"{'type': 'Point', 'coordinates': (-79.33795893, 43.6821025)}"
-5323,25610,GO-20189040159,THEFT UNDER - BICYCLE,2018-11-28T00:00:00,2018,November,Wednesday,28,332,8,2018-11-28T00:00:00,2018,November,Wednesday,28,332,21,D55,Toronto,68,North Riverdale (68),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,KO,,RG,7,GRY,1050.0,STOLEN,5320,"{'type': 'Point', 'coordinates': (-79.35536552, 43.66548293000001)}"
-5324,7551,GO-20209027068,MISCHIEF UNDER,2020-10-20T00:00:00,2020,October,Tuesday,20,294,9,2020-10-20T00:00:00,2020,October,Tuesday,20,294,11,D54,Toronto,67,Playter Estates-Danforth (67),"Apartment (Rooming House, Condo)",Apartment,KONA,DEW,RG,8,BLK,800.0,RECOVERED,5321,"{'type': 'Point', 'coordinates': (-79.351925, 43.67755671)}"
-5325,12973,GO-20199027984,THEFT UNDER,2019-08-01T00:00:00,2019,August,Thursday,1,213,9,2019-08-28T00:00:00,2019,August,Wednesday,28,240,9,D55,Toronto,68,North Riverdale (68),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,TO,10,BLU,70.0,STOLEN,5322,"{'type': 'Point', 'coordinates': (-79.34681909, 43.67112945)}"
-5326,14090,GO-20169008546,THEFT UNDER,2016-08-10T00:00:00,2016,August,Wednesday,10,223,19,2016-08-10T00:00:00,2016,August,Wednesday,10,223,23,D54,Toronto,66,Danforth (66),Ttc Subway Station,Transit,UK,MODERN TRACK BI,RC,15,BLU,200.0,STOLEN,5323,"{'type': 'Point', 'coordinates': (-79.33007622, 43.68284971)}"
-5327,25615,GO-20199012744,THEFT FROM MOTOR VEHICLE UNDER,2019-04-21T00:00:00,2019,April,Sunday,21,111,2,2019-04-23T00:00:00,2019,April,Tuesday,23,113,10,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SP,,MT,10,BLK,600.0,STOLEN,5324,"{'type': 'Point', 'coordinates': (-79.34255127000002, 43.67199731)}"
-5328,7654,GO-20209030332,THEFT UNDER,2020-11-17T00:00:00,2020,November,Tuesday,17,322,20,2020-11-23T00:00:00,2020,November,Monday,23,328,10,D54,Toronto,67,Playter Estates-Danforth (67),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,DOWNTOWN 702,OT,24,BLK,550.0,STOLEN,5325,"{'type': 'Point', 'coordinates': (-79.34815011, 43.68070289)}"
-5329,13007,GO-20199037805,THEFT UNDER,2019-11-17T00:00:00,2019,November,Sunday,17,321,0,2019-11-17T00:00:00,2019,November,Sunday,17,321,13,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,DUTCHI 3,RG,3,BLK,900.0,STOLEN,5326,"{'type': 'Point', 'coordinates': (-79.34681909, 43.67112945)}"
-5330,14145,GO-2017300788,B&E,2017-02-17T00:00:00,2017,February,Friday,17,48,9,2017-02-17T00:00:00,2017,February,Friday,17,48,14,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,STORCK,VISIONAIRE,TO,0,BLKWHI,,STOLEN,5327,"{'type': 'Point', 'coordinates': (-79.33567666, 43.68430501)}"
-5331,25639,GO-20199019339,THEFT UNDER,2019-06-19T00:00:00,2019,June,Wednesday,19,170,7,2019-06-20T00:00:00,2019,June,Thursday,20,171,10,D55,Toronto,68,North Riverdale (68),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,24,GRN,938.0,STOLEN,5328,"{'type': 'Point', 'coordinates': (-79.34419072, 43.67741288)}"
-5332,7687,GO-20202200302,THEFT UNDER - BICYCLE,2020-11-20T00:00:00,2020,November,Friday,20,325,11,2020-11-20T00:00:00,2020,November,Friday,20,325,13,D54,Toronto,67,Playter Estates-Danforth (67),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,OT,0,BLU,,STOLEN,5329,"{'type': 'Point', 'coordinates': (-79.35979474, 43.67804364)}"
-5333,13045,GO-20209014860,THEFT UNDER,2020-06-08T00:00:00,2020,June,Monday,8,160,14,2020-06-08T00:00:00,2020,June,Monday,8,160,15,D55,Toronto,68,North Riverdale (68),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,6,DBL,0.0,STOLEN,5330,"{'type': 'Point', 'coordinates': (-79.35618763, 43.67337396)}"
-5334,14207,GO-20179017060,THEFT UNDER,2017-10-12T00:00:00,2017,October,Thursday,12,285,18,2017-10-12T00:00:00,2017,October,Thursday,12,285,20,D54,Toronto,66,Danforth (66),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,MT,27,BLK,2000.0,STOLEN,5331,"{'type': 'Point', 'coordinates': (-79.32472818000001, 43.68311648)}"
-5335,14233,GO-20189015310,THEFT UNDER - SHOPLIFTING,2018-05-17T00:00:00,2018,May,Thursday,17,137,11,2018-05-17T00:00:00,2018,May,Thursday,17,137,16,D54,Toronto,66,Danforth (66),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,ALLEZ E5 SPORT,RC,18,GRN,1399.0,STOLEN,5332,"{'type': 'Point', 'coordinates': (-79.32472818000001, 43.68311648)}"
-5336,15868,GO-20149003735,THEFT UNDER,2014-05-30T00:00:00,2014,May,Friday,30,150,8,2014-06-01T00:00:00,2014,June,Sunday,1,152,13,D54,Toronto,66,Danforth (66),Ttc Subway Station,Transit,OT,MILANO,MT,21,BLK,500.0,STOLEN,5333,"{'type': 'Point', 'coordinates': (-79.34511536, 43.67967885)}"
-5337,15919,GO-20143376124,THEFT UNDER,2014-11-13T00:00:00,2014,November,Thursday,13,317,17,2014-11-26T00:00:00,2014,November,Wednesday,26,330,21,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,P1,BM,1,LBL,600.0,STOLEN,5334,"{'type': 'Point', 'coordinates': (-79.34511536, 43.67967885)}"
-5338,15953,GO-20159004075,THEFT UNDER,2015-07-01T00:00:00,2015,July,Wednesday,1,182,16,2015-07-01T00:00:00,2015,July,Wednesday,1,182,20,D54,Toronto,66,Danforth (66),Ttc Subway Station,Transit,KO,,RG,24,GRY,700.0,STOLEN,5335,"{'type': 'Point', 'coordinates': (-79.34511536, 43.67967885)}"
-5339,15996,GO-20151966910,THEFT UNDER,2015-11-15T00:00:00,2015,November,Sunday,15,319,19,2015-11-16T00:00:00,2015,November,Monday,16,320,12,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,,OT,12,BLKGRN,300.0,STOLEN,5336,"{'type': 'Point', 'coordinates': (-79.33727518, 43.68042137)}"
-5340,16023,GO-2016912625,B&E,2016-05-27T00:00:00,2016,May,Friday,27,148,4,2016-05-27T00:00:00,2016,May,Friday,27,148,12,D54,Toronto,66,Danforth (66),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,RIDGE RIDER,EL,50,BLK,2850.0,STOLEN,5337,"{'type': 'Point', 'coordinates': (-79.32822849, 43.68235875)}"
-5341,16024,GO-2016912625,B&E,2016-05-27T00:00:00,2016,May,Friday,27,148,4,2016-05-27T00:00:00,2016,May,Friday,27,148,12,D54,Toronto,66,Danforth (66),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,E3 METRO,EL,50,BLKBLU,2600.0,STOLEN,5338,"{'type': 'Point', 'coordinates': (-79.32822849, 43.68235875)}"
-5342,16026,GO-2016953785,B&E,2016-06-02T00:00:00,2016,June,Thursday,2,154,6,2016-06-02T00:00:00,2016,June,Thursday,2,154,9,D54,Toronto,66,Danforth (66),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,EASY MOTION EVO,EL,18,RED,,STOLEN,5339,"{'type': 'Point', 'coordinates': (-79.32822849, 43.68235875)}"
-5343,16035,GO-20209017400,THEFT UNDER,2020-07-08T00:00:00,2020,July,Wednesday,8,190,19,2020-07-12T00:00:00,2020,July,Sunday,12,194,21,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,KATO 24-INCH,MT,18,ONG,550.0,STOLEN,5340,"{'type': 'Point', 'coordinates': (-79.32781909, 43.68421024)}"
-5344,16037,GO-20209017564,THEFT UNDER,2020-07-13T00:00:00,2020,July,Monday,13,195,16,2020-07-14T00:00:00,2020,July,Tuesday,14,196,17,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,721 (PAINT STRI,RC,1,BLK,1000.0,STOLEN,5341,"{'type': 'Point', 'coordinates': (-79.33007622, 43.68284971)}"
-5345,16038,GO-20209017564,THEFT UNDER,2020-07-13T00:00:00,2020,July,Monday,13,195,16,2020-07-14T00:00:00,2020,July,Tuesday,14,196,17,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,OMNIUM,RC,1,SIL,2000.0,STOLEN,5342,"{'type': 'Point', 'coordinates': (-79.33007622, 43.68284971)}"
-5346,16054,GO-20201447841,THEFT UNDER - BICYCLE,2020-08-02T00:00:00,2020,August,Sunday,2,215,19,2020-08-03T00:00:00,2020,August,Monday,3,216,17,D54,Toronto,66,Danforth (66),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,CYPRESS,OT,21,BLK,780.0,STOLEN,5343,"{'type': 'Point', 'coordinates': (-79.34424142, 43.68252366)}"
-5347,16080,GO-20201754046,THEFT OF EBIKE UNDER $5000,2020-09-15T00:00:00,2020,September,Tuesday,15,259,13,2020-09-16T00:00:00,2020,September,Wednesday,16,260,8,D54,Toronto,66,Danforth (66),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DAYMARK,EAGLE,EL,3,BLK,3000.0,STOLEN,5344,"{'type': 'Point', 'coordinates': (-79.33761189, 43.68124567)}"
-5348,18707,GO-20201283341,THEFT UNDER - BICYCLE,2020-07-11T00:00:00,2020,July,Saturday,11,193,6,2020-07-11T00:00:00,2020,July,Saturday,11,193,8,D54,Toronto,66,Danforth (66),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CANNONDALE,QUICK 4,MT,21,GRY,800.0,STOLEN,5345,"{'type': 'Point', 'coordinates': (-79.32461881, 43.68579192)}"
-5349,18708,GO-20201283341,THEFT UNDER - BICYCLE,2020-07-11T00:00:00,2020,July,Saturday,11,193,6,2020-07-11T00:00:00,2020,July,Saturday,11,193,8,D54,Toronto,66,Danforth (66),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CANNONDALE,QUICK4,MT,21,WHI,800.0,STOLEN,5346,"{'type': 'Point', 'coordinates': (-79.32461881, 43.68579192)}"
-5350,18717,GO-20209018853,THEFT UNDER,2020-07-28T00:00:00,2020,July,Tuesday,28,210,16,2020-07-29T00:00:00,2020,July,Wednesday,29,211,1,D54,Toronto,66,Danforth (66),Ttc Subway Station,Transit,UK,TRACE-10 21-SP,OT,21,BLK,759.0,STOLEN,5347,"{'type': 'Point', 'coordinates': (-79.33761189, 43.68124567)}"
-5351,18732,GO-20209020011,THEFT UNDER,2020-08-11T00:00:00,2020,August,Tuesday,11,224,23,2020-08-12T00:00:00,2020,August,Wednesday,12,225,14,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,PERFORMANCE 700,RG,21,WHI,250.0,STOLEN,5348,"{'type': 'Point', 'coordinates': (-79.33970903, 43.68085481)}"
-5352,18832,GO-20142149692,THEFT UNDER,2014-05-25T00:00:00,2014,May,Sunday,25,145,14,2014-05-25T00:00:00,2014,May,Sunday,25,145,15,D54,Toronto,66,Danforth (66),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SHCWINN,HYBRID,MT,24,BLK,450.0,STOLEN,5349,"{'type': 'Point', 'coordinates': (-79.33234245, 43.6814835)}"
-5353,18835,GO-20149004144,THEFT UNDER,2014-06-16T00:00:00,2014,June,Monday,16,167,10,2014-06-16T00:00:00,2014,June,Monday,16,167,21,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,GLOBE DAILY 2,RG,8,SIL,600.0,STOLEN,5350,"{'type': 'Point', 'coordinates': (-79.31713686, 43.68473778)}"
-5354,18876,GO-20143541626,THEFT UNDER,2014-12-24T00:00:00,2014,December,Wednesday,24,358,5,2014-12-24T00:00:00,2014,December,Wednesday,24,358,5,D54,Toronto,66,Danforth (66),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,UNKNOWN,EL,1,PLE,,STOLEN,5351,"{'type': 'Point', 'coordinates': (-79.34304424, 43.67930242)}"
-5355,18893,GO-2015935485,THEFT UNDER,2015-06-04T00:00:00,2015,June,Thursday,4,155,9,2015-06-04T00:00:00,2015,June,Thursday,4,155,13,D54,Toronto,66,Danforth (66),Ttc Subway Station,Transit,RALEIGH,,TO,5,BLK,,STOLEN,5352,"{'type': 'Point', 'coordinates': (-79.33007622, 43.68284971)}"
-5356,18936,GO-20159007227,THEFT UNDER,2015-09-15T00:00:00,2015,September,Tuesday,15,258,9,2015-09-15T00:00:00,2015,September,Tuesday,15,258,16,D54,Toronto,66,Danforth (66),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,NO,2015 INDIE 3,OT,24,GRY,695.0,RECOVERED,5353,"{'type': 'Point', 'coordinates': (-79.33267576, 43.68227617)}"
-5357,25626,GO-20199016504,THEFT UNDER,2019-05-27T00:00:00,2019,May,Monday,27,147,8,2019-05-27T00:00:00,2019,May,Monday,27,147,15,D55,Toronto,69,Blake-Jones (69),Schools During Supervised Activity,Educational,OT,,MT,6,,40.0,STOLEN,5354,"{'type': 'Point', 'coordinates': (-79.33917593, 43.67183906)}"
-5358,19041,GO-20169010871,THEFT UNDER - BICYCLE,2016-09-21T00:00:00,2016,September,Wednesday,21,265,6,2016-09-21T00:00:00,2016,September,Wednesday,21,265,19,D54,Toronto,66,Danforth (66),Ttc Subway Station,Transit,OT,ELEGANCE,RG,21,BLK,500.0,STOLEN,5355,"{'type': 'Point', 'coordinates': (-79.33007622, 43.68284971)}"
-5359,19047,GO-20169011709,THEFT UNDER - BICYCLE,2016-10-07T00:00:00,2016,October,Friday,7,281,8,2016-10-07T00:00:00,2016,October,Friday,7,281,19,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,3 SPEED,RG,3,DBL,80.0,STOLEN,5356,"{'type': 'Point', 'coordinates': (-79.33831978, 43.68292311)}"
-5360,19057,GO-20169013117,THEFT UNDER - BICYCLE,2016-11-07T00:00:00,2016,November,Monday,7,312,10,2016-11-07T00:00:00,2016,November,Monday,7,312,17,D54,Toronto,66,Danforth (66),Ttc Subway Station,Transit,OT,,RG,20,RED,50.0,STOLEN,5357,"{'type': 'Point', 'coordinates': (-79.32393433, 43.68416734)}"
-5361,19059,GO-20162031807,PROPERTY - FOUND,2016-11-15T00:00:00,2016,November,Tuesday,15,320,17,2016-11-15T00:00:00,2016,November,Tuesday,15,320,17,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,HELIUM,RC,99,BLUGRY,,UNKNOWN,5358,"{'type': 'Point', 'coordinates': (-79.32781909, 43.68421024)}"
-5362,19090,GO-20179008566,THEFT UNDER - BICYCLE,2017-06-21T00:00:00,2017,June,Wednesday,21,172,9,2017-06-21T00:00:00,2017,June,Wednesday,21,172,17,D54,Toronto,66,Danforth (66),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,RG,21,BLK,300.0,STOLEN,5359,"{'type': 'Point', 'coordinates': (-79.32815031, 43.68501776)}"
-5363,19148,GO-20189009523,THEFT UNDER - BICYCLE,2018-03-08T00:00:00,2018,March,Thursday,8,67,23,2018-03-26T00:00:00,2018,March,Monday,26,85,12,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,P2,RC,20,WHI,2500.0,STOLEN,5360,"{'type': 'Point', 'coordinates': (-79.32118135, 43.6847409)}"
-5364,19203,GO-20189032153,THEFT UNDER,2018-09-27T00:00:00,2018,September,Thursday,27,270,8,2018-09-27T00:00:00,2018,September,Thursday,27,270,19,D54,Toronto,66,Danforth (66),Ttc Subway Station,Transit,OT,OSLO,TO,27,BLK,800.0,STOLEN,5361,"{'type': 'Point', 'coordinates': (-79.33007622, 43.68284971)}"
-5365,19204,GO-20189032186,THEFT UNDER - BICYCLE,2018-09-27T00:00:00,2018,September,Thursday,27,270,17,2018-09-28T00:00:00,2018,September,Friday,28,271,8,D54,Toronto,66,Danforth (66),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,OT,21,BLU,200.0,STOLEN,5362,"{'type': 'Point', 'coordinates': (-79.34304424, 43.67930242)}"
-5366,19241,GO-20199018424,THEFT UNDER,2019-06-12T00:00:00,2019,June,Wednesday,12,163,8,2019-06-13T00:00:00,2019,June,Thursday,13,164,10,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,DOWNTOWN 701,RG,7,GRY,450.0,STOLEN,5363,"{'type': 'Point', 'coordinates': (-79.33112003, 43.68526961)}"
-5367,19251,GO-20199021762,THEFT UNDER,2019-07-10T00:00:00,2019,July,Wednesday,10,191,9,2019-07-10T00:00:00,2019,July,Wednesday,10,191,18,D54,Toronto,66,Danforth (66),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,VIENNA,RG,3,WHI,550.0,STOLEN,5364,"{'type': 'Point', 'coordinates': (-79.33146579, 43.68256473)}"
-5368,19254,GO-20191412923,B&E,2019-07-27T00:00:00,2019,July,Saturday,27,208,10,2019-07-27T00:00:00,2019,July,Saturday,27,208,13,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,SIRIS,OT,0,BLK,1500.0,STOLEN,5365,"{'type': 'Point', 'coordinates': (-79.33267576, 43.68227617)}"
-5369,19308,GO-20199032895,THEFT UNDER,2019-10-06T00:00:00,2019,October,Sunday,6,279,23,2019-10-07T00:00:00,2019,October,Monday,7,280,11,D54,Toronto,66,Danforth (66),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,CITATO,RG,10,WHI,1000.0,STOLEN,5366,"{'type': 'Point', 'coordinates': (-79.32846967, 43.6858363)}"
-5370,19750,GO-20169001273,THEFT UNDER,2015-12-02T00:00:00,2015,December,Wednesday,2,336,22,2016-02-09T00:00:00,2016,February,Tuesday,9,40,8,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,,RG,21,GRY,570.0,RECOVERED,5367,"{'type': 'Point', 'coordinates': (-79.33655986, 43.6841221)}"
-5371,19767,GO-2016869818,THEFT UNDER - BICYCLE,2016-05-20T00:00:00,2016,May,Friday,20,141,1,2016-05-27T00:00:00,2016,May,Friday,27,148,8,D54,Toronto,66,Danforth (66),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,EASY MOTION,650 B JUMPER,MT,27,BLK,3300.0,STOLEN,5368,"{'type': 'Point', 'coordinates': (-79.32822849, 43.68235875)}"
-5372,22223,GO-2017913544,THEFT UNDER - BICYCLE,2017-05-24T00:00:00,2017,May,Wednesday,24,144,1,2017-05-24T00:00:00,2017,May,Wednesday,24,144,8,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MASI,,OT,1,RED,800.0,STOLEN,5369,"{'type': 'Point', 'coordinates': (-79.33585599, 43.68342921)}"
-5373,22269,GO-20172036864,THEFT OF EBIKE UNDER $5000,2017-11-10T00:00:00,2017,November,Friday,10,314,7,2017-11-10T00:00:00,2017,November,Friday,10,314,15,D54,Toronto,66,Danforth (66),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,KNIGHT,EL,1,BLK,2000.0,STOLEN,5370,"{'type': 'Point', 'coordinates': (-79.33007622, 43.68284971)}"
-5374,22289,GO-20189015310,THEFT UNDER - SHOPLIFTING,2018-05-17T00:00:00,2018,May,Thursday,17,137,11,2018-05-17T00:00:00,2018,May,Thursday,17,137,16,D54,Toronto,66,Danforth (66),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,ALLEZ E5 SPORT,RC,18,GRN,1399.0,STOLEN,5371,"{'type': 'Point', 'coordinates': (-79.32472818000001, 43.68311648)}"
-5375,22322,GO-20189027378,THEFT UNDER - BICYCLE,2018-08-21T00:00:00,2018,August,Tuesday,21,233,9,2018-08-21T00:00:00,2018,August,Tuesday,21,233,21,D54,Toronto,66,Danforth (66),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,HARDROCK,MT,21,BLK,700.0,STOLEN,5373,"{'type': 'Point', 'coordinates': (-79.33007622, 43.68284971)}"
-5376,22376,GO-20199017006,THEFT UNDER,2019-05-30T00:00:00,2019,May,Thursday,30,150,12,2019-05-31T00:00:00,2019,May,Friday,31,151,15,D54,Toronto,66,Danforth (66),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,OT,3,DGR,500.0,STOLEN,5374,"{'type': 'Point', 'coordinates': (-79.32426234, 43.68497918)}"
-5377,22388,GO-20199021289,THEFT UNDER,2019-06-30T00:00:00,2019,June,Sunday,30,181,20,2019-07-06T00:00:00,2019,July,Saturday,6,187,22,D54,Toronto,66,Danforth (66),Ttc Subway Station,Transit,GI,2018 ESCAPE 2,RG,15,BLK,650.0,STOLEN,5375,"{'type': 'Point', 'coordinates': (-79.32393433, 43.68416734)}"
-5378,22434,GO-20209143,THEFT OF EBIKE UNDER $5000,2019-12-31T00:00:00,2019,December,Tuesday,31,365,19,2020-01-02T00:00:00,2020,January,Thursday,2,2,14,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,EMMO,MONSTER 2,EL,3,RED,2200.0,STOLEN,5376,"{'type': 'Point', 'coordinates': (-79.31523183, 43.68515061)}"
-5379,22496,GO-20209016920,THEFT UNDER,2020-07-05T00:00:00,2020,July,Sunday,5,187,21,2020-07-05T00:00:00,2020,July,Sunday,5,187,22,D54,Toronto,66,Danforth (66),Ttc Subway Station,Transit,TR,MARLIN 4 HARDTA,MT,21,SIL,513.0,STOLEN,5377,"{'type': 'Point', 'coordinates': (-79.33727518, 43.68042137)}"
-5380,22500,GO-20201283341,THEFT UNDER - BICYCLE,2020-07-11T00:00:00,2020,July,Saturday,11,193,6,2020-07-11T00:00:00,2020,July,Saturday,11,193,8,D54,Toronto,66,Danforth (66),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,QUICK 4,RG,9,WHI,800.0,STOLEN,5378,"{'type': 'Point', 'coordinates': (-79.32461881, 43.68579192)}"
-5381,22501,GO-20201283341,THEFT UNDER - BICYCLE,2020-07-11T00:00:00,2020,July,Saturday,11,193,6,2020-07-11T00:00:00,2020,July,Saturday,11,193,8,D54,Toronto,66,Danforth (66),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,QUICK 4,RG,9,DBL,800.0,STOLEN,5379,"{'type': 'Point', 'coordinates': (-79.32461881, 43.68579192)}"
-5382,22553,GO-20209022548,THEFT UNDER,2020-08-31T00:00:00,2020,August,Monday,31,244,19,2020-09-07T00:00:00,2020,September,Monday,7,251,20,D54,Toronto,66,Danforth (66),Convenience Stores,Commercial,OT,SPECIALIZED,RG,21,BLU,500.0,STOLEN,5380,"{'type': 'Point', 'coordinates': (-79.31523183, 43.68515061)}"
-5383,22579,GO-20209026369,THEFT UNDER,2020-09-30T00:00:00,2020,September,Wednesday,30,274,2,2020-10-13T00:00:00,2020,October,Tuesday,13,287,20,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,18,ONG,450.0,STOLEN,5381,"{'type': 'Point', 'coordinates': (-79.33146579, 43.68256473)}"
-5384,22581,GO-20209027730,THEFT UNDER,2020-10-26T00:00:00,2020,October,Monday,26,300,4,2020-10-26T00:00:00,2020,October,Monday,26,300,12,D54,Toronto,66,Danforth (66),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SU,,RG,7,BLK,275.0,STOLEN,5382,"{'type': 'Point', 'coordinates': (-79.33112003, 43.68526961)}"
-5385,22824,GO-20149003376,THEFT UNDER,2014-05-13T00:00:00,2014,May,Tuesday,13,133,9,2014-05-15T00:00:00,2014,May,Thursday,15,135,17,D54,Toronto,66,Danforth (66),Other Passenger Train,Transit,SC,,MT,10,,300.0,STOLEN,5383,"{'type': 'Point', 'coordinates': (-79.33761189, 43.68124567)}"
-5386,22842,GO-20142297604,THEFT UNDER,2014-06-12T00:00:00,2014,June,Thursday,12,163,16,2014-06-15T00:00:00,2014,June,Sunday,15,166,19,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,CHOPPER,OT,1,OTH,100.0,STOLEN,5384,"{'type': 'Point', 'coordinates': (-79.3189637, 43.68788)}"
-5387,22901,GO-20159002948,THEFT UNDER,2015-05-20T00:00:00,2015,May,Wednesday,20,140,14,2015-05-20T00:00:00,2015,May,Wednesday,20,140,18,D54,Toronto,66,Danforth (66),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,FO,7,,,STOLEN,5385,"{'type': 'Point', 'coordinates': (-79.32114974, 43.68386491)}"
-5388,22903,GO-2015872809,THEFT UNDER,2015-05-25T00:00:00,2015,May,Monday,25,145,15,2015-05-25T00:00:00,2015,May,Monday,25,145,17,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DEVINCI,UNKN,OT,12,WHI,1500.0,STOLEN,5386,"{'type': 'Point', 'coordinates': (-79.33062905, 43.68365872)}"
-5389,25459,GO-20171228271,THEFT UNDER - BICYCLE,2017-07-08T00:00:00,2017,July,Saturday,8,189,16,2017-07-09T00:00:00,2017,July,Sunday,9,190,11,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,SEEK1,OT,21,BLK,900.0,STOLEN,5387,"{'type': 'Point', 'coordinates': (-79.34118024, 43.68145255)}"
-5390,25493,GO-20179017555,THEFT UNDER - BICYCLE,2017-10-18T00:00:00,2017,October,Wednesday,18,291,13,2017-10-18T00:00:00,2017,October,Wednesday,18,291,21,D54,Toronto,66,Danforth (66),Schools During Supervised Activity,Educational,CA,QUICK 8,RG,21,BLK,528.0,STOLEN,5388,"{'type': 'Point', 'coordinates': (-79.33267576, 43.68227617)}"
-5391,25498,GO-20179018584,THEFT UNDER - BICYCLE,2017-10-30T00:00:00,2017,October,Monday,30,303,0,2017-10-31T00:00:00,2017,October,Tuesday,31,304,9,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,,MT,21,RED,800.0,STOLEN,5389,"{'type': 'Point', 'coordinates': (-79.32472818000001, 43.68311648)}"
-5392,25531,GO-20189013241,THEFT UNDER - BICYCLE,2018-04-28T00:00:00,2018,April,Saturday,28,118,20,2018-04-29T00:00:00,2018,April,Sunday,29,119,17,D54,Toronto,66,Danforth (66),Ttc Subway Station,Transit,RM,,MT,15,BLK,650.0,STOLEN,5390,"{'type': 'Point', 'coordinates': (-79.33007622, 43.68284971)}"
-5393,25593,GO-20181882646,THEFT UNDER - BICYCLE,2018-07-30T00:00:00,2018,July,Monday,30,211,18,2018-10-13T00:00:00,2018,October,Saturday,13,286,12,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KHS,,MT,7,BLK,520.0,STOLEN,5391,"{'type': 'Point', 'coordinates': (-79.34511536, 43.67967885)}"
-5394,25662,GO-20199027502,THEFT UNDER,2019-08-24T00:00:00,2019,August,Saturday,24,236,0,2019-08-24T00:00:00,2019,August,Saturday,24,236,12,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,9,BLK,800.0,STOLEN,5392,"{'type': 'Point', 'coordinates': (-79.32846967, 43.6858363)}"
-5395,25677,GO-20199032120,THEFT UNDER,2019-09-23T00:00:00,2019,September,Monday,23,266,17,2019-09-30T00:00:00,2019,September,Monday,30,273,16,D54,Toronto,66,Danforth (66),"Apartment (Rooming House, Condo)",Apartment,NO,YORKVILLE,MT,12,WHI,500.0,STOLEN,5393,"{'type': 'Point', 'coordinates': (-79.34227817, 43.68102636)}"
-5396,25691,GO-20192487360,B&E,2019-12-25T00:00:00,2019,December,Wednesday,25,359,22,2019-12-26T00:00:00,2019,December,Thursday,26,360,13,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,21,BLK,,STOLEN,5394,"{'type': 'Point', 'coordinates': (-79.32781909, 43.68421024)}"
-5397,25706,GO-2020636369,THEFT OF EBIKE UNDER $5000,2020-03-31T00:00:00,2020,March,Tuesday,31,91,15,2020-03-31T00:00:00,2020,March,Tuesday,31,91,17,D54,Toronto,66,Danforth (66),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OTHER,SOHO 2.0,EL,1,WHI,1900.0,STOLEN,5395,"{'type': 'Point', 'coordinates': (-79.31273908, 43.68568467)}"
-5398,25763,GO-20209021171,THEFT UNDER,2020-08-24T00:00:00,2020,August,Monday,24,237,13,2020-08-24T00:00:00,2020,August,Monday,24,237,16,D54,Toronto,66,Danforth (66),Bar / Restaurant,Commercial,CA,SYNAPSE,RC,9,BLU,1500.0,STOLEN,5396,"{'type': 'Point', 'coordinates': (-79.31523183, 43.68515061)}"
-5399,109,GO-20179002501,THEFT UNDER,2017-02-25T00:00:00,2017,February,Saturday,25,56,22,2017-02-26T00:00:00,2017,February,Sunday,26,57,12,D54,Toronto,67,Playter Estates-Danforth (67),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,LANGSTER,RC,1,RED,800.0,STOLEN,5397,"{'type': 'Point', 'coordinates': (-79.35230718, 43.68201992)}"
-5400,434,GO-20179006755,THEFT UNDER - BICYCLE,2017-05-20T00:00:00,2017,May,Saturday,20,140,19,2017-05-21T00:00:00,2017,May,Sunday,21,141,22,D54,Toronto,67,Playter Estates-Danforth (67),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,,OT,6,GRN,0.0,STOLEN,5398,"{'type': 'Point', 'coordinates': (-79.36004872, 43.67704588)}"
-5401,732,GO-20171141356,THEFT UNDER - BICYCLE,2017-06-24T00:00:00,2017,June,Saturday,24,175,19,2017-06-26T00:00:00,2017,June,Monday,26,177,12,D54,Toronto,67,Playter Estates-Danforth (67),"Apartment (Rooming House, Condo)",Apartment,CCM,VAPOUR,OT,14,,380.0,STOLEN,5399,"{'type': 'Point', 'coordinates': (-79.36004872, 43.67704588)}"
-5402,748,GO-20179009145,THEFT UNDER - BICYCLE,2017-06-27T00:00:00,2017,June,Tuesday,27,178,18,2017-06-29T00:00:00,2017,June,Thursday,29,180,9,D54,Toronto,67,Playter Estates-Danforth (67),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,OT,10,BLU,0.0,STOLEN,5400,"{'type': 'Point', 'coordinates': (-79.36004872, 43.67704588)}"
-5403,856,GO-20171251193,THEFT UNDER - BICYCLE,2017-07-10T00:00:00,2017,July,Monday,10,191,12,2017-07-12T00:00:00,2017,July,Wednesday,12,193,18,D54,Toronto,67,Playter Estates-Danforth (67),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,,MT,3,BLK,,STOLEN,5401,"{'type': 'Point', 'coordinates': (-79.35529591, 43.67768827)}"
-5404,888,GO-20171260302,THEFT UNDER - BICYCLE,2017-06-23T00:00:00,2017,June,Friday,23,174,15,2017-07-16T00:00:00,2017,July,Sunday,16,197,19,D54,Toronto,67,Playter Estates-Danforth (67),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,3900,MT,21,RED,400.0,STOLEN,5402,"{'type': 'Point', 'coordinates': (-79.35529591, 43.67768827)}"
-5405,1453,GO-20179015168,THEFT UNDER - BICYCLE,2017-09-19T00:00:00,2017,September,Tuesday,19,262,2,2017-09-19T00:00:00,2017,September,Tuesday,19,262,21,D54,Toronto,67,Playter Estates-Danforth (67),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,,RG,7,WHI,400.0,STOLEN,5403,"{'type': 'Point', 'coordinates': (-79.35230718, 43.68201992)}"
-5406,14074,GO-20161165864,THEFT UNDER - BICYCLE,2016-07-04T00:00:00,2016,July,Monday,4,186,3,2016-07-04T00:00:00,2016,July,Monday,4,186,4,D55,Toronto,68,North Riverdale (68),"Open Areas (Lakes, Parks, Rivers)",Outside,OTHER,PHANTOM,RG,0,ONG,300.0,STOLEN,5436,"{'type': 'Point', 'coordinates': (-79.35448832, 43.67126549)}"
-5407,1454,GO-20179015168,THEFT UNDER - BICYCLE,2017-09-19T00:00:00,2017,September,Tuesday,19,262,2,2017-09-19T00:00:00,2017,September,Tuesday,19,262,21,D54,Toronto,67,Playter Estates-Danforth (67),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,BLACK,RG,7,BLK,450.0,STOLEN,5404,"{'type': 'Point', 'coordinates': (-79.35230718, 43.68201992)}"
-5408,1462,GO-20179015258,THEFT UNDER - BICYCLE,2017-09-19T00:00:00,2017,September,Tuesday,19,262,18,2017-09-20T00:00:00,2017,September,Wednesday,20,263,12,D54,Toronto,67,Playter Estates-Danforth (67),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,NITRO,MT,21,GRY,170.0,STOLEN,5405,"{'type': 'Point', 'coordinates': (-79.36004872, 43.67704588)}"
-5409,2044,GO-20189005750,THEFT UNDER - BICYCLE,2018-02-22T00:00:00,2018,February,Thursday,22,53,8,2018-02-23T00:00:00,2018,February,Friday,23,54,8,D54,Toronto,67,Playter Estates-Danforth (67),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE 3,RG,21,BLK,499.0,STOLEN,5406,"{'type': 'Point', 'coordinates': (-79.35979474, 43.67804364)}"
-5410,2555,GO-20189018223,THEFT UNDER - BICYCLE,2018-06-11T00:00:00,2018,June,Monday,11,162,14,2018-06-11T00:00:00,2018,June,Monday,11,162,17,D54,Toronto,67,Playter Estates-Danforth (67),Ttc Subway Station,Transit,KO,SPICE,MT,21,GRY,1000.0,STOLEN,5407,"{'type': 'Point', 'coordinates': (-79.35341489, 43.67804091)}"
-5411,2803,GO-20189021886,THEFT UNDER - BICYCLE,2018-07-04T00:00:00,2018,July,Wednesday,4,185,17,2018-07-10T00:00:00,2018,July,Tuesday,10,191,16,D54,Toronto,67,Playter Estates-Danforth (67),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ROAM 3,RG,18,BLK,700.0,STOLEN,5408,"{'type': 'Point', 'coordinates': (-79.34607621, 43.67870142)}"
-5412,2879,GO-20189022970,THEFT UNDER - BICYCLE,2018-07-18T00:00:00,2018,July,Wednesday,18,199,18,2018-07-18T00:00:00,2018,July,Wednesday,18,199,19,D54,Toronto,67,Playter Estates-Danforth (67),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ASPIRE,MT,24,BLK,850.0,STOLEN,5409,"{'type': 'Point', 'coordinates': (-79.34480222, 43.67895162)}"
-5413,3027,GO-20189024509,THEFT UNDER - BICYCLE,2018-07-30T00:00:00,2018,July,Monday,30,211,4,2018-07-30T00:00:00,2018,July,Monday,30,211,16,D54,Toronto,67,Playter Estates-Danforth (67),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,TRICYCLE,TR,1,BLU,350.0,STOLEN,5410,"{'type': 'Point', 'coordinates': (-79.35321751, 43.677303480000006)}"
-5414,3192,GO-20189026271,THEFT UNDER - BICYCLE,2018-08-13T00:00:00,2018,August,Monday,13,225,12,2018-08-13T00:00:00,2018,August,Monday,13,225,23,D54,Toronto,67,Playter Estates-Danforth (67),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SIRRUS SPORT,OT,24,SIL,600.0,STOLEN,5411,"{'type': 'Point', 'coordinates': (-79.34958264, 43.67801227)}"
-5415,3208,GO-20189026468,THEFT UNDER - BICYCLE,2018-08-13T00:00:00,2018,August,Monday,13,225,22,2018-08-15T00:00:00,2018,August,Wednesday,15,227,10,D54,Toronto,67,Playter Estates-Danforth (67),Bar / Restaurant,Commercial,SC,UNKNOWN,OT,18,GRY,350.0,STOLEN,5412,"{'type': 'Point', 'coordinates': (-79.34607621, 43.67870142)}"
-5416,3506,GO-20189030769,THEFT UNDER,2018-09-10T00:00:00,2018,September,Monday,10,253,12,2018-09-17T00:00:00,2018,September,Monday,17,260,12,D54,Toronto,67,Playter Estates-Danforth (67),"Apartment (Rooming House, Condo)",Apartment,TR,,RG,21,GRY,600.0,STOLEN,5413,"{'type': 'Point', 'coordinates': (-79.36004872, 43.67704588)}"
-5417,3807,GO-20189036686,THEFT UNDER - BICYCLE,2018-10-26T00:00:00,2018,October,Friday,26,299,23,2018-11-03T00:00:00,2018,November,Saturday,3,307,12,D54,Toronto,67,Playter Estates-Danforth (67),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,BROADVIEW,RG,7,BLK,400.0,STOLEN,5414,"{'type': 'Point', 'coordinates': (-79.35341489, 43.67804091)}"
-5418,4371,GO-20199016740,THEFT UNDER,2019-05-28T00:00:00,2019,May,Tuesday,28,148,1,2019-05-29T00:00:00,2019,May,Wednesday,29,149,11,D54,Toronto,67,Playter Estates-Danforth (67),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,18,BLU,400.0,STOLEN,5415,"{'type': 'Point', 'coordinates': (-79.35483239, 43.6786549)}"
-5419,5130,GO-20191593872,THEFT UNDER - BICYCLE,2019-08-19T00:00:00,2019,August,Monday,19,231,18,2019-08-21T00:00:00,2019,August,Wednesday,21,233,18,D54,Toronto,67,Playter Estates-Danforth (67),"Private Property Structure (Pool, Shed, Detached Garage)",Other,ROCKY MOUNTAIN,STUMP JUMPER,MT,10,BLK,1200.0,STOLEN,5416,"{'type': 'Point', 'coordinates': (-79.35674002, 43.68116210000001)}"
-5420,5513,GO-20199033638,THEFT UNDER,2019-10-11T00:00:00,2019,October,Friday,11,284,19,2019-10-11T00:00:00,2019,October,Friday,11,284,23,D54,Toronto,67,Playter Estates-Danforth (67),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,RG,6,BLU,600.0,STOLEN,5417,"{'type': 'Point', 'coordinates': (-79.36004872, 43.67704588)}"
-5421,6405,GO-20209015516,THEFT UNDER,2020-06-16T00:00:00,2020,June,Tuesday,16,168,17,2020-06-16T00:00:00,2020,June,Tuesday,16,168,20,D54,Toronto,67,Playter Estates-Danforth (67),"Apartment (Rooming House, Condo)",Apartment,GT,KARAKORAM COMP,MT,27,BLK,820.0,STOLEN,5418,"{'type': 'Point', 'coordinates': (-79.35979474, 43.67804364)}"
-5422,6741,GO-20201390052,B&E,2020-07-24T00:00:00,2020,July,Friday,24,206,11,2020-07-26T00:00:00,2020,July,Sunday,26,208,16,D54,Toronto,67,Playter Estates-Danforth (67),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,DUAL SPORT,RG,24,,1000.0,STOLEN,5419,"{'type': 'Point', 'coordinates': (-79.35958192, 43.67880566)}"
-5423,6742,GO-20201390052,B&E,2020-07-24T00:00:00,2020,July,Friday,24,206,11,2020-07-26T00:00:00,2020,July,Sunday,26,208,16,D54,Toronto,67,Playter Estates-Danforth (67),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BIANCHI,GOLD,RC,21,RED,1000.0,STOLEN,5420,"{'type': 'Point', 'coordinates': (-79.35958192, 43.67880566)}"
-5424,6778,GO-20201390052,B&E,2020-07-24T00:00:00,2020,July,Friday,24,206,11,2020-07-26T00:00:00,2020,July,Sunday,26,208,16,D54,Toronto,67,Playter Estates-Danforth (67),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,8.4 DS,RG,27,BLU,1018.0,STOLEN,5421,"{'type': 'Point', 'coordinates': (-79.35958192, 43.67880566)}"
-5425,6779,GO-20201390052,B&E,2020-07-24T00:00:00,2020,July,Friday,24,206,11,2020-07-26T00:00:00,2020,July,Sunday,26,208,16,D54,Toronto,67,Playter Estates-Danforth (67),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BI,GOLD RACE,RC,27,RED,1477.0,STOLEN,5422,"{'type': 'Point', 'coordinates': (-79.35958192, 43.67880566)}"
-5426,6785,GO-20201411074,B&E,2020-07-23T00:00:00,2020,July,Thursday,23,205,18,2020-07-29T00:00:00,2020,July,Wednesday,29,211,12,D54,Toronto,67,Playter Estates-Danforth (67),"Single Home, House (Attach Garage, Cottage, Mobile)",House,XTRA CYCLE,TERN CARGO JOE,RG,18,WHI,1000.0,STOLEN,5423,"{'type': 'Point', 'coordinates': (-79.35769028, 43.68100838)}"
-5427,6803,GO-20209018880,THEFT UNDER,2020-07-26T00:00:00,2020,July,Sunday,26,208,20,2020-07-29T00:00:00,2020,July,Wednesday,29,211,13,D54,Toronto,67,Playter Estates-Danforth (67),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,703 DOWNTOWN,RG,27,BLK,650.0,STOLEN,5424,"{'type': 'Point', 'coordinates': (-79.3566491, 43.6774369)}"
-5428,25693,GO-20209004007,THEFT UNDER,2020-02-02T00:00:00,2020,February,Sunday,2,33,4,2020-02-02T00:00:00,2020,February,Sunday,2,33,22,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,BIKE TRAILER,OT,1,RED,330.0,STOLEN,5425,"{'type': 'Point', 'coordinates': (-79.34432378, 43.67158965)}"
-5429,7800,GO-20149002462,THEFT UNDER,2014-03-30T00:00:00,2014,March,Sunday,30,89,17,2014-03-31T00:00:00,2014,March,Monday,31,90,10,D54,Toronto,67,Playter Estates-Danforth (67),Bar / Restaurant,Commercial,SU,PHANTOM 29 MOUN,MT,21,GRY,200.0,STOLEN,5426,"{'type': 'Point', 'coordinates': (-79.34622601, 43.67866925)}"
-5430,13054,GO-20201195957,B&E,2020-06-28T00:00:00,2020,June,Sunday,28,180,23,2020-06-29T00:00:00,2020,June,Monday,29,181,12,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,18,,400.0,STOLEN,5427,"{'type': 'Point', 'coordinates': (-79.35101055, 43.67114849)}"
-5431,25737,GO-20209016416,THEFT UNDER,2020-06-27T00:00:00,2020,June,Saturday,27,179,22,2020-06-29T00:00:00,2020,June,Monday,29,181,8,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,260,MT,21,BLK,450.0,STOLEN,5428,"{'type': 'Point', 'coordinates': (-79.35316558, 43.67305507)}"
-5432,7844,GO-20149002915,THEFT UNDER,2014-04-17T00:00:00,2014,April,Thursday,17,107,8,2014-04-18T00:00:00,2014,April,Friday,18,108,13,D54,Toronto,67,Playter Estates-Danforth (67),"Apartment (Rooming House, Condo)",Apartment,UK,I DONT KNOW,MT,6,BLK,500.0,STOLEN,5429,"{'type': 'Point', 'coordinates': (-79.35958192, 43.67880566)}"
-5433,25636,GO-20199018863,THEFT UNDER,2019-06-16T00:00:00,2019,June,Sunday,16,167,18,2019-06-16T00:00:00,2019,June,Sunday,16,167,20,D55,Toronto,69,Blake-Jones (69),Bar / Restaurant,Commercial,UK,GARNEAU,TO,27,GRY,600.0,STOLEN,5430,"{'type': 'Point', 'coordinates': (-79.34304424, 43.67930242)}"
-5434,7939,GO-20142085833,THEFT UNDER,2014-05-15T00:00:00,2014,May,Thursday,15,135,15,2014-05-15T00:00:00,2014,May,Thursday,15,135,17,D54,Toronto,67,Playter Estates-Danforth (67),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,,MT,18,RED,200.0,STOLEN,5431,"{'type': 'Point', 'coordinates': (-79.35070987, 43.67779387)}"
-5435,14069,GO-20169005970,THEFT UNDER - BICYCLE,2016-06-18T00:00:00,2016,June,Saturday,18,170,13,2016-06-18T00:00:00,2016,June,Saturday,18,170,14,D55,Toronto,68,North Riverdale (68),"Apartment (Rooming House, Condo)",Apartment,CA,BADBOY,MT,27,BLK,2300.0,STOLEN,5432,"{'type': 'Point', 'coordinates': (-79.34547883, 43.66788265)}"
-5436,25748,GO-20209017569,THEFT UNDER,2020-07-13T00:00:00,2020,July,Monday,13,195,23,2020-07-14T00:00:00,2020,July,Tuesday,14,196,17,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,10,BLK,0.0,STOLEN,5433,"{'type': 'Point', 'coordinates': (-79.3506151, 43.67215613)}"
-5437,25637,GO-20199018863,THEFT UNDER,2019-06-16T00:00:00,2019,June,Sunday,16,167,18,2019-06-16T00:00:00,2019,June,Sunday,16,167,20,D55,Toronto,69,Blake-Jones (69),Bar / Restaurant,Commercial,UK,ALIBI ST TARMAC,RG,27,BLK,700.0,STOLEN,5434,"{'type': 'Point', 'coordinates': (-79.34304424, 43.67930242)}"
-5438,8026,GO-20142205019,THEFT UNDER,2014-06-02T00:00:00,2014,June,Monday,2,153,14,2014-06-02T00:00:00,2014,June,Monday,2,153,14,D54,Toronto,67,Playter Estates-Danforth (67),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,RESPONDER,MT,18,BLK,500.0,STOLEN,5435,"{'type': 'Point', 'coordinates': (-79.34607621, 43.67870142)}"
-5439,25765,GO-20209021211,THEFT UNDER,2020-08-24T00:00:00,2020,August,Monday,24,237,18,2020-08-25T00:00:00,2020,August,Tuesday,25,238,0,D55,Toronto,68,North Riverdale (68),Convenience Stores,Commercial,OT,HYBRID,OT,24,BGE,450.0,STOLEN,5437,"{'type': 'Point', 'coordinates': (-79.35883201, 43.67620216)}"
-5440,8051,GO-20142217199,THEFT UNDER,2014-06-02T00:00:00,2014,June,Monday,2,153,22,2014-06-04T00:00:00,2014,June,Wednesday,4,155,6,D54,Toronto,67,Playter Estates-Danforth (67),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,ROAM 2,OT,9,WHISIL,550.0,STOLEN,5438,"{'type': 'Point', 'coordinates': (-79.35470646, 43.68159283)}"
-5441,25682,GO-20191972025,THEFT OVER - BICYCLE,2019-10-12T00:00:00,2019,October,Saturday,12,285,14,2019-10-12T00:00:00,2019,October,Saturday,12,285,15,D55,Toronto,69,Blake-Jones (69),Convenience Stores,Commercial,LAPIERRE,,OT,18,BLKBLU,6000.0,STOLEN,5439,"{'type': 'Point', 'coordinates': (-79.34056846, 43.67979025)}"
-5442,14093,GO-20169008742,THEFT UNDER - BICYCLE,2016-08-14T00:00:00,2016,August,Sunday,14,227,1,2016-08-14T00:00:00,2016,August,Sunday,14,227,15,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,CB4R2247,RG,24,BLK,600.0,STOLEN,5440,"{'type': 'Point', 'coordinates': (-79.34366966, 43.66993701)}"
-5443,25766,GO-20201595981,THEFT UNDER - BICYCLE,2020-08-24T00:00:00,2020,August,Monday,24,237,7,2020-08-24T00:00:00,2020,August,Monday,24,237,17,D55,Toronto,68,North Riverdale (68),"Apartment (Rooming House, Condo)",Apartment,CCM PRAGUE,,TO,7,PNK,500.0,STOLEN,5441,"{'type': 'Point', 'coordinates': (-79.34716166, 43.67195844)}"
-5444,8074,GO-20149003895,THEFT UNDER,2014-06-07T00:00:00,2014,June,Saturday,7,158,23,2014-06-08T00:00:00,2014,June,Sunday,8,159,18,D54,Toronto,67,Playter Estates-Danforth (67),Ttc Subway Station,Transit,UK,SE DRAFT,OT,1,BLK,400.0,STOLEN,5442,"{'type': 'Point', 'coordinates': (-79.35341489, 43.67804091)}"
-5445,25685,GO-20199034579,THEFT UNDER,2019-10-20T00:00:00,2019,October,Sunday,20,293,18,2019-10-20T00:00:00,2019,October,Sunday,20,293,22,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,OT,11,BLK,3000.0,STOLEN,5443,"{'type': 'Point', 'coordinates': (-79.33611676000001, 43.67682597)}"
-5446,14096,GO-20161494852,B&E,2016-08-23T00:00:00,2016,August,Tuesday,23,236,7,2016-08-23T00:00:00,2016,August,Tuesday,23,236,18,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GARY FISHER,,RG,12,BLUONG,500.0,STOLEN,5444,"{'type': 'Point', 'coordinates': (-79.34366966, 43.66993701)}"
-5447,25771,GO-20209022949,THEFT UNDER,2020-09-11T00:00:00,2020,September,Friday,11,255,0,2020-09-11T00:00:00,2020,September,Friday,11,255,11,D55,Toronto,68,North Riverdale (68),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,UMBRIA,TO,3,WHI,600.0,STOLEN,5445,"{'type': 'Point', 'coordinates': (-79.3548915, 43.67200861)}"
-5448,8693,GO-20142758131,THEFT UNDER,2014-08-23T00:00:00,2014,August,Saturday,23,235,1,2014-08-23T00:00:00,2014,August,Saturday,23,235,1,D54,Toronto,67,Playter Estates-Danforth (67),"Apartment (Rooming House, Condo)",Apartment,EMMO,,EL,1,REDBLK,900.0,STOLEN,5446,"{'type': 'Point', 'coordinates': (-79.35938089, 43.67609903)}"
-5449,25690,GO-20199039218,THEFT UNDER,2019-11-28T00:00:00,2019,November,Thursday,28,332,19,2019-11-28T00:00:00,2019,November,Thursday,28,332,20,D55,Toronto,69,Blake-Jones (69),Convenience Stores,Commercial,CA,TOPSTONE SORA 2,RG,12,GRN,1400.0,STOLEN,5447,"{'type': 'Point', 'coordinates': (-79.34304424, 43.67930242)}"
-5450,14097,GO-20161494852,B&E,2016-08-23T00:00:00,2016,August,Tuesday,23,236,7,2016-08-23T00:00:00,2016,August,Tuesday,23,236,18,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ROCKY MOUNTAIN,,MT,7,ONG,300.0,STOLEN,5448,"{'type': 'Point', 'coordinates': (-79.34366966, 43.66993701)}"
-5451,25773,GO-20201742015,THEFT UNDER,2020-09-09T00:00:00,2020,September,Wednesday,9,253,13,2020-09-14T00:00:00,2020,September,Monday,14,258,14,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,,OT,0,BLK,,STOLEN,5449,"{'type': 'Point', 'coordinates': (-79.35480892, 43.6746889)}"
-5452,8730,GO-20149006290,THEFT UNDER,2014-08-23T00:00:00,2014,August,Saturday,23,235,9,2014-08-25T00:00:00,2014,August,Monday,25,237,19,D54,Toronto,67,Playter Estates-Danforth (67),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,DRAFT LITE,RG,1,WHI,451.0,STOLEN,5450,"{'type': 'Point', 'coordinates': (-79.35274855, 43.67738878)}"
-5453,9002,GO-20143021544,THEFT UNDER,2014-09-30T00:00:00,2014,September,Tuesday,30,273,21,2014-10-01T00:00:00,2014,October,Wednesday,1,274,14,D54,Toronto,67,Playter Estates-Danforth (67),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SOLOROCK,ARMSTRONG,EL,1,BLK,1300.0,STOLEN,5451,"{'type': 'Point', 'coordinates': (-79.35938089, 43.67609903)}"
-5454,9045,GO-20143088482,THEFT UNDER,2014-10-02T00:00:00,2014,October,Thursday,2,275,10,2014-10-11T00:00:00,2014,October,Saturday,11,284,23,D54,Toronto,67,Playter Estates-Danforth (67),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,AHWDHNEC,OT,21,BLK,300.0,STOLEN,5452,"{'type': 'Point', 'coordinates': (-79.35470646, 43.68159283)}"
-5455,9209,GO-20149008501,THEFT UNDER,2014-11-29T00:00:00,2014,November,Saturday,29,333,23,2014-12-02T00:00:00,2014,December,Tuesday,2,336,11,D54,Toronto,67,Playter Estates-Danforth (67),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,,MT,15,GRY,500.0,STOLEN,5453,"{'type': 'Point', 'coordinates': (-79.34918791000001, 43.68354869)}"
-5456,9899,GO-20159004007,THEFT UNDER,2015-06-24T00:00:00,2015,June,Wednesday,24,175,17,2015-06-29T00:00:00,2015,June,Monday,29,180,6,D54,Toronto,67,Playter Estates-Danforth (67),"Private Property Structure (Pool, Shed, Detached Garage)",Other,DEVINCI,MONTREAL,RG,7,BLK,800.0,STOLEN,5454,"{'type': 'Point', 'coordinates': (-79.35703352, 43.67821259)}"
-5457,10028,GO-20159004608,THEFT UNDER,2015-07-08T00:00:00,2015,July,Wednesday,8,189,8,2015-07-15T00:00:00,2015,July,Wednesday,15,196,9,D54,Toronto,67,Playter Estates-Danforth (67),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,FJ,FUJI,RG,21,BLK,800.0,STOLEN,5455,"{'type': 'Point', 'coordinates': (-79.36004872, 43.67704588)}"
-5458,10193,GO-20159005423,THEFT UNDER,2015-08-06T00:00:00,2015,August,Thursday,6,218,22,2015-08-06T00:00:00,2015,August,Thursday,6,218,22,D54,Toronto,67,Playter Estates-Danforth (67),Bar / Restaurant,Commercial,KH,COMMUTER URBAN,OT,21,GRY,500.0,STOLEN,5456,"{'type': 'Point', 'coordinates': (-79.35883201, 43.67620216)}"
-5459,10308,GO-20159006019,THEFT UNDER,2015-08-11T00:00:00,2015,August,Tuesday,11,223,4,2015-08-19T00:00:00,2015,August,Wednesday,19,231,13,D54,Toronto,67,Playter Estates-Danforth (67),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,EL,32,RED,1300.0,STOLEN,5457,"{'type': 'Point', 'coordinates': (-79.35274855, 43.67738878)}"
-5460,10470,GO-20159007204,THEFT UNDER,2015-09-14T00:00:00,2015,September,Monday,14,257,18,2015-09-14T00:00:00,2015,September,Monday,14,257,23,D54,Toronto,67,Playter Estates-Danforth (67),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,MASI CX COMP -,TO,10,SIL,1300.0,STOLEN,5458,"{'type': 'Point', 'coordinates': (-79.35764852, 43.68128071)}"
-5461,10963,GO-20169001046,THEFT UNDER,2016-02-01T00:00:00,2016,February,Monday,1,32,17,2016-02-02T00:00:00,2016,February,Tuesday,2,33,13,D54,Toronto,67,Playter Estates-Danforth (67),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,1,BLU,600.0,STOLEN,5459,"{'type': 'Point', 'coordinates': (-79.36004872, 43.67704588)}"
-5462,11241,GO-2016743813,THEFT UNDER - BICYCLE,2016-04-30T00:00:00,2016,April,Saturday,30,121,22,2016-05-01T00:00:00,2016,May,Sunday,1,122,10,D54,Toronto,67,Playter Estates-Danforth (67),Ttc Bus,Transit,KHS,EASTWOOD,RG,8,BLKSIL,400.0,STOLEN,5460,"{'type': 'Point', 'coordinates': (-79.35883201, 43.67620216)}"
-5463,11687,GO-20169006657,THEFT UNDER,2016-07-02T00:00:00,2016,July,Saturday,2,184,14,2016-07-03T00:00:00,2016,July,Sunday,3,185,15,D54,Toronto,67,Playter Estates-Danforth (67),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE 3 2014,RC,7,BLK,500.0,STOLEN,5461,"{'type': 'Point', 'coordinates': (-79.35274855, 43.67738878)}"
-5464,11789,GO-20169007129,THEFT UNDER - BICYCLE,2016-07-12T00:00:00,2016,July,Tuesday,12,194,20,2016-07-13T00:00:00,2016,July,Wednesday,13,195,10,D54,Toronto,67,Playter Estates-Danforth (67),"Single Home, House (Attach Garage, Cottage, Mobile)",House,IN,CRAZY HORSE,MT,21,BLK,315.0,STOLEN,5462,"{'type': 'Point', 'coordinates': (-79.34958264, 43.67801227)}"
-5465,12217,GO-20161507894,THEFT UNDER - BICYCLE,2016-08-25T00:00:00,2016,August,Thursday,25,238,7,2016-08-25T00:00:00,2016,August,Thursday,25,238,17,D54,Toronto,67,Playter Estates-Danforth (67),Ttc Subway Station,Transit,CCM,SLOPE,MT,27,BLU,270.0,STOLEN,5463,"{'type': 'Point', 'coordinates': (-79.351925, 43.67755671)}"
-5466,12352,GO-20169010496,THEFT UNDER,2016-09-14T00:00:00,2016,September,Wednesday,14,258,22,2016-09-15T00:00:00,2016,September,Thursday,15,259,15,D54,Toronto,67,Playter Estates-Danforth (67),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,RG,18,BGE,400.0,STOLEN,5464,"{'type': 'Point', 'coordinates': (-79.35470646, 43.68159283)}"
-5467,12993,GO-20191963567,B&E,2019-10-10T00:00:00,2019,October,Thursday,10,283,11,2019-10-11T00:00:00,2019,October,Friday,11,284,11,D54,Toronto,67,Playter Estates-Danforth (67),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,VOLARE 1300,TO,18,REDWHI,220.0,STOLEN,5465,"{'type': 'Point', 'coordinates': (-79.34608537, 43.68234878)}"
-5468,12994,GO-20191963567,B&E,2019-10-10T00:00:00,2019,October,Thursday,10,283,11,2019-10-11T00:00:00,2019,October,Friday,11,284,11,D54,Toronto,67,Playter Estates-Danforth (67),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,,MT,18,BLK,,STOLEN,5466,"{'type': 'Point', 'coordinates': (-79.34608537, 43.68234878)}"
-5469,13025,GO-20209010679,THEFT UNDER,2020-04-08T00:00:00,2020,April,Wednesday,8,99,8,2020-04-08T00:00:00,2020,April,Wednesday,8,99,9,D54,Toronto,67,Playter Estates-Danforth (67),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,SIENA,RG,8,GRY,325.0,STOLEN,5467,"{'type': 'Point', 'coordinates': (-79.35665477, 43.68031081)}"
-5470,13048,GO-20201111907,THEFT UNDER - BICYCLE,2020-06-17T00:00:00,2020,June,Wednesday,17,169,5,2020-06-17T00:00:00,2020,June,Wednesday,17,169,8,D54,Toronto,67,Playter Estates-Danforth (67),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,TOPSTONE,BM,11,BGE,2000.0,STOLEN,5468,"{'type': 'Point', 'coordinates': (-79.35936654, 43.67967875)}"
-5471,14099,GO-20169009819,THEFT UNDER - BICYCLE,2016-08-31T00:00:00,2016,August,Wednesday,31,244,16,2016-09-01T00:00:00,2016,September,Thursday,1,245,17,D54,Toronto,67,Playter Estates-Danforth (67),"Apartment (Rooming House, Condo)",Apartment,UK,EVIL,MT,15,BLK,600.0,STOLEN,5469,"{'type': 'Point', 'coordinates': (-79.36004872, 43.67704588)}"
-5472,14121,GO-20162042860,THEFT UNDER - BICYCLE,2016-11-16T00:00:00,2016,November,Wednesday,16,321,10,2016-11-17T00:00:00,2016,November,Thursday,17,322,11,D54,Toronto,67,Playter Estates-Danforth (67),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,HARDROCK,OT,12,ONG,1000.0,STOLEN,5470,"{'type': 'Point', 'coordinates': (-79.35979474, 43.67804364)}"
-5473,14260,GO-20189022771,THEFT UNDER - BICYCLE,2018-07-16T00:00:00,2018,July,Monday,16,197,23,2018-07-17T00:00:00,2018,July,Tuesday,17,198,13,D54,Toronto,67,Playter Estates-Danforth (67),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,,RC,4,GLD,100.0,STOLEN,5471,"{'type': 'Point', 'coordinates': (-79.34730449, 43.6784602)}"
-5474,15870,GO-20142224329,THEFT UNDER,2014-06-04T00:00:00,2014,June,Wednesday,4,155,19,2014-06-05T00:00:00,2014,June,Thursday,5,156,6,D54,Toronto,67,Playter Estates-Danforth (67),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,ROCKYMOUNTAIN,ELEMENT 10,MT,1,WHI,2000.0,STOLEN,5472,"{'type': 'Point', 'coordinates': (-79.35883201, 43.67620216)}"
-5475,15902,GO-20149006674,THEFT UNDER,2014-09-05T00:00:00,2014,September,Friday,5,248,10,2014-09-08T00:00:00,2014,September,Monday,8,251,10,D54,Toronto,67,Playter Estates-Danforth (67),"Apartment (Rooming House, Condo)",Apartment,NO,INDIE 8,RG,6,BLU,500.0,STOLEN,5473,"{'type': 'Point', 'coordinates': (-79.35979474, 43.67804364)}"
-5476,15904,GO-20142890861,THEFT UNDER,2014-09-09T00:00:00,2014,September,Tuesday,9,252,7,2014-09-11T00:00:00,2014,September,Thursday,11,254,18,D54,Toronto,67,Playter Estates-Danforth (67),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,48V12AH,EL,0,WHI,735.0,STOLEN,5474,"{'type': 'Point', 'coordinates': (-79.34826949, 43.6782716)}"
-5477,15916,GO-20143144068,THEFT UNDER,2014-10-21T00:00:00,2014,October,Tuesday,21,294,1,2014-10-21T00:00:00,2014,October,Tuesday,21,294,2,D54,Toronto,67,Playter Estates-Danforth (67),"Apartment (Rooming House, Condo)",Apartment,SUPERCYCLE,,MT,8,BLU,,STOLEN,5475,"{'type': 'Point', 'coordinates': (-79.35861168, 43.67752071)}"
-5478,3639,GO-20189033257,THEFT UNDER - BICYCLE,2018-10-08T00:00:00,2018,October,Monday,8,281,14,2018-10-08T00:00:00,2018,October,Monday,8,281,14,D54,Toronto,66,Danforth (66),Ttc Subway Station,Transit,KH,URBAN XCAPE,MT,21,BLK,600.0,STOLEN,5740,"{'type': 'Point', 'coordinates': (-79.32393433, 43.68416734)}"
-5479,16013,GO-2016704891,THEFT UNDER,2015-11-30T00:00:00,2015,November,Monday,30,334,23,2016-04-25T00:00:00,2016,April,Monday,25,116,12,D54,Toronto,67,Playter Estates-Danforth (67),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,7.3 FX,MT,21,BLKGLD,950.0,STOLEN,5476,"{'type': 'Point', 'coordinates': (-79.36004872, 43.67704588)}"
-5480,16061,GO-20201571420,MISCHIEF UNDER,2020-08-21T00:00:00,2020,August,Friday,21,234,2,2020-08-21T00:00:00,2020,August,Friday,21,234,10,D54,Toronto,67,Playter Estates-Danforth (67),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,GARNEAU,OT,21,,,STOLEN,5477,"{'type': 'Point', 'coordinates': (-79.35535616, 43.68049923)}"
-5481,16084,GO-20201806772,B&E,2020-09-12T00:00:00,2020,September,Saturday,12,256,23,2020-09-23T00:00:00,2020,September,Wednesday,23,267,13,D54,Toronto,67,Playter Estates-Danforth (67),"Single Home, House (Attach Garage, Cottage, Mobile)",House,VCO,URBAN,OT,0,GRY,467.0,STOLEN,5478,"{'type': 'Point', 'coordinates': (-79.35674002, 43.68116210000001)}"
-5482,16096,GO-20209026895,THEFT UNDER,2020-10-18T00:00:00,2020,October,Sunday,18,292,22,2020-10-19T00:00:00,2020,October,Monday,19,293,9,D54,Toronto,67,Playter Estates-Danforth (67),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,8,GRY,1000.0,STOLEN,5479,"{'type': 'Point', 'coordinates': (-79.36004872, 43.67704588)}"
-5483,16105,GO-20202161771,THEFT UNDER,2020-11-14T00:00:00,2020,November,Saturday,14,319,11,2020-11-14T00:00:00,2020,November,Saturday,14,319,14,D54,Toronto,67,Playter Estates-Danforth (67),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,ZONE GTS,EL,0,,3997.0,STOLEN,5480,"{'type': 'Point', 'coordinates': (-79.34511536, 43.67967885)}"
-5484,16116,GO-20202421275,B&E,2020-12-25T00:00:00,2020,December,Friday,25,360,4,2020-12-25T00:00:00,2020,December,Friday,25,360,13,D54,Toronto,67,Playter Estates-Danforth (67),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,MT,18,BLK,1200.0,STOLEN,5481,"{'type': 'Point', 'coordinates': (-79.35665477, 43.68031081)}"
-5485,16117,GO-20202421275,B&E,2020-12-25T00:00:00,2020,December,Friday,25,360,4,2020-12-25T00:00:00,2020,December,Friday,25,360,13,D54,Toronto,67,Playter Estates-Danforth (67),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,OT,10,TAN,700.0,STOLEN,5482,"{'type': 'Point', 'coordinates': (-79.35665477, 43.68031081)}"
-5486,18852,GO-20149005744,THEFT UNDER,2014-08-08T00:00:00,2014,August,Friday,8,220,15,2014-08-08T00:00:00,2014,August,Friday,8,220,19,D54,Toronto,67,Playter Estates-Danforth (67),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,VIA CARISMA,OT,15,DGR,630.0,STOLEN,5483,"{'type': 'Point', 'coordinates': (-79.34758568, 43.67920364)}"
-5487,18886,GO-20159002762,THEFT UNDER,2015-05-09T00:00:00,2015,May,Saturday,9,129,7,2015-05-15T00:00:00,2015,May,Friday,15,135,10,D54,Toronto,67,Playter Estates-Danforth (67),Convenience Stores,Commercial,SC,SCH 700C GTX SP,MT,21,RED,300.0,STOLEN,5484,"{'type': 'Point', 'coordinates': (-79.351925, 43.67755671)}"
-5488,18920,GO-20151395703,THEFT UNDER,2015-08-08T00:00:00,2015,August,Saturday,8,220,20,2015-08-14T00:00:00,2015,August,Friday,14,226,13,D54,Toronto,67,Playter Estates-Danforth (67),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KONA,,MT,0,,1200.0,STOLEN,5485,"{'type': 'Point', 'coordinates': (-79.34844294, 43.67823713)}"
-5489,18923,GO-20151463442,THEFT UNDER,2015-08-14T00:00:00,2015,August,Friday,14,226,22,2015-08-26T00:00:00,2015,August,Wednesday,26,238,10,D54,Toronto,67,Playter Estates-Danforth (67),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,PEUGEOT,,RC,12,WHI,300.0,STOLEN,5486,"{'type': 'Point', 'coordinates': (-79.35883201, 43.67620216)}"
-5490,18993,GO-20169006031,THEFT UNDER,2016-06-19T00:00:00,2016,June,Sunday,19,171,18,2016-06-19T00:00:00,2016,June,Sunday,19,171,22,D54,Toronto,67,Playter Estates-Danforth (67),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GF,MAMBA 2002,MT,18,ONG,200.0,STOLEN,5487,"{'type': 'Point', 'coordinates': (-79.35665477, 43.68031081)}"
-5491,19014,GO-20161371072,THEFT UNDER - BICYCLE,2016-08-04T00:00:00,2016,August,Thursday,4,217,2,2016-08-04T00:00:00,2016,August,Thursday,4,217,14,D54,Toronto,67,Playter Estates-Danforth (67),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,KRAVE,MT,20,BLK,1200.0,STOLEN,5488,"{'type': 'Point', 'coordinates': (-79.36153536, 43.68122615)}"
-5492,19033,GO-20169009654,THEFT UNDER - BICYCLE,2016-08-21T00:00:00,2016,August,Sunday,21,234,17,2016-08-29T00:00:00,2016,August,Monday,29,242,14,D54,Toronto,67,Playter Estates-Danforth (67),"Apartment (Rooming House, Condo)",Apartment,,LA VITESSE DESI,RC,10,GRN,0.0,STOLEN,5489,"{'type': 'Point', 'coordinates': (-79.35979474, 43.67804364)}"
-5493,19051,GO-20169012028,THEFT UNDER - BICYCLE,2016-09-11T00:00:00,2016,September,Sunday,11,255,0,2016-10-14T00:00:00,2016,October,Friday,14,288,9,D54,Toronto,67,Playter Estates-Danforth (67),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,MT,24,BLK,675.0,STOLEN,5490,"{'type': 'Point', 'coordinates': (-79.35483239, 43.6786549)}"
-5494,19347,GO-2020639353,THEFT UNDER,2020-04-01T00:00:00,2020,April,Wednesday,1,92,2,2020-04-01T00:00:00,2020,April,Wednesday,1,92,9,D54,Toronto,67,Playter Estates-Danforth (67),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,,OT,18,BLK,300.0,STOLEN,5499,"{'type': 'Point', 'coordinates': (-79.35529591, 43.67768827)}"
-5495,19077,GO-20179005589,THEFT UNDER - BICYCLE,2017-05-01T00:00:00,2017,May,Monday,1,121,19,2017-05-02T00:00:00,2017,May,Tuesday,2,122,14,D54,Toronto,67,Playter Estates-Danforth (67),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,S2,RC,11,BLK,3000.0,STOLEN,5491,"{'type': 'Point', 'coordinates': (-79.35362768, 43.67880298)}"
-5496,19082,GO-2017957322,THEFT UNDER - BICYCLE,2017-05-29T00:00:00,2017,May,Monday,29,149,17,2017-05-30T00:00:00,2017,May,Tuesday,30,150,18,D54,Toronto,67,Playter Estates-Danforth (67),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,ROCKY MOUNTAIN,OFF ROAD,MT,24,RED,850.0,STOLEN,5492,"{'type': 'Point', 'coordinates': (-79.34607621, 43.67870142)}"
-5497,19164,GO-20189016416,THEFT UNDER - BICYCLE,2018-05-25T00:00:00,2018,May,Friday,25,145,16,2018-05-27T00:00:00,2018,May,Sunday,27,147,15,D54,Toronto,67,Playter Estates-Danforth (67),Ttc Subway Station,Transit,GI,ESCAPE,RG,21,BLK,500.0,STOLEN,5493,"{'type': 'Point', 'coordinates': (-79.351925, 43.67755671)}"
-5498,19233,GO-20199017660,THEFT UNDER,2019-06-04T00:00:00,2019,June,Tuesday,4,155,16,2019-06-06T00:00:00,2019,June,Thursday,6,157,17,D54,Toronto,67,Playter Estates-Danforth (67),"Apartment (Rooming House, Condo)",Apartment,UK,,EL,1,BLK,700.0,STOLEN,5494,"{'type': 'Point', 'coordinates': (-79.35838259, 43.67841608)}"
-5499,19262,GO-20199024998,THEFT UNDER,2019-08-05T00:00:00,2019,August,Monday,5,217,0,2019-08-05T00:00:00,2019,August,Monday,5,217,9,D54,Toronto,67,Playter Estates-Danforth (67),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KO,COCOA,RG,9,LGR,700.0,STOLEN,5495,"{'type': 'Point', 'coordinates': (-79.34886883000001, 43.682695)}"
-5500,19327,GO-202087393,B&E,2020-01-10T00:00:00,2020,January,Friday,10,10,19,2020-01-13T00:00:00,2020,January,Monday,13,13,19,D54,Toronto,67,Playter Estates-Danforth (67),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,BIKE TRAILER,OT,0,BLK,320.0,STOLEN,5496,"{'type': 'Point', 'coordinates': (-79.36153536, 43.68122615)}"
-5501,19328,GO-202087393,B&E,2020-01-10T00:00:00,2020,January,Friday,10,10,19,2020-01-13T00:00:00,2020,January,Monday,13,13,19,D54,Toronto,67,Playter Estates-Danforth (67),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,TALON,MT,15,BLK,700.0,STOLEN,5497,"{'type': 'Point', 'coordinates': (-79.36153536, 43.68122615)}"
-5502,19329,GO-202087393,B&E,2020-01-10T00:00:00,2020,January,Friday,10,10,19,2020-01-13T00:00:00,2020,January,Monday,13,13,19,D54,Toronto,67,Playter Estates-Danforth (67),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,MARLON 7,MT,15,BLK,425.0,STOLEN,5498,"{'type': 'Point', 'coordinates': (-79.36153536, 43.68122615)}"
-5503,19659,GO-20143029638,THEFT UNDER,2014-09-30T00:00:00,2014,September,Tuesday,30,273,16,2014-10-02T00:00:00,2014,October,Thursday,2,275,18,D54,Toronto,67,Playter Estates-Danforth (67),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,,OT,0,GRYBLU,1000.0,STOLEN,5500,"{'type': 'Point', 'coordinates': (-79.35665477, 43.68031081)}"
-5504,19666,GO-20143286128,THEFT UNDER,2014-11-11T00:00:00,2014,November,Tuesday,11,315,13,2014-11-12T00:00:00,2014,November,Wednesday,12,316,8,D54,Toronto,67,Playter Estates-Danforth (67),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,OT,18,BLU,,STOLEN,5501,"{'type': 'Point', 'coordinates': (-79.35665477, 43.68031081)}"
-5505,19674,GO-2015384006,THEFT UNDER,2015-03-05T00:00:00,2015,March,Thursday,5,64,23,2015-03-06T00:00:00,2015,March,Friday,6,65,9,D54,Toronto,67,Playter Estates-Danforth (67),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CANNONDALE,BADBOY 5,BM,21,BLK,1200.0,STOLEN,5502,"{'type': 'Point', 'coordinates': (-79.36004872, 43.67704588)}"
-5506,19705,GO-20159005531,THEFT UNDER,2015-08-08T00:00:00,2015,August,Saturday,8,220,22,2015-08-09T00:00:00,2015,August,Sunday,9,221,11,D54,Toronto,67,Playter Estates-Danforth (67),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ROAM,OT,24,RED,689.0,STOLEN,5503,"{'type': 'Point', 'coordinates': (-79.35883201, 43.67620216)}"
-5507,19761,GO-20169004216,THEFT UNDER - BICYCLE,2016-05-05T00:00:00,2016,May,Thursday,5,126,19,2016-05-06T00:00:00,2016,May,Friday,6,127,11,D54,Toronto,67,Playter Estates-Danforth (67),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SINGLE GEAR,RG,1,WHI,700.0,STOLEN,5504,"{'type': 'Point', 'coordinates': (-79.35979474, 43.67804364)}"
-5508,22220,GO-20179005957,THEFT UNDER - BICYCLE,2017-04-19T00:00:00,2017,April,Wednesday,19,109,8,2017-05-08T00:00:00,2017,May,Monday,8,128,19,D54,Toronto,67,Playter Estates-Danforth (67),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,21,DBL,0.0,STOLEN,5505,"{'type': 'Point', 'coordinates': (-79.36004872, 43.67704588)}"
-5509,22230,GO-20171065959,THEFT UNDER - BICYCLE,2017-06-14T00:00:00,2017,June,Wednesday,14,165,14,2017-06-15T00:00:00,2017,June,Thursday,15,166,13,D54,Toronto,67,Playter Estates-Danforth (67),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,VAPOUR,RG,21,BLKRED,400.0,STOLEN,5506,"{'type': 'Point', 'coordinates': (-79.36004872, 43.67704588)}"
-5510,5765,GO-20192415736,PROPERTY - FOUND,2019-12-15T00:00:00,2019,December,Sunday,15,349,13,2019-12-15T00:00:00,2019,December,Sunday,15,349,13,D54,Toronto,66,Danforth (66),Ttc Subway Station,Transit,SUPERCYCLE,DREAM WEAVER,RG,0,PNK,,UNKNOWN,5757,"{'type': 'Point', 'coordinates': (-79.32393433, 43.68416734)}"
-5511,22231,GO-20179008402,THEFT UNDER - BICYCLE,2017-06-18T00:00:00,2017,June,Sunday,18,169,23,2017-06-19T00:00:00,2017,June,Monday,19,170,15,D54,Toronto,67,Playter Estates-Danforth (67),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,ROCKHOPPER,MT,15,BLK,1100.0,STOLEN,5507,"{'type': 'Point', 'coordinates': (-79.34886883000001, 43.682695)}"
-5512,22235,GO-20171260302,THEFT UNDER - BICYCLE,2017-06-23T00:00:00,2017,June,Friday,23,174,15,2017-07-16T00:00:00,2017,July,Sunday,16,197,19,D54,Toronto,67,Playter Estates-Danforth (67),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,3900,MT,21,RED,400.0,STOLEN,5508,"{'type': 'Point', 'coordinates': (-79.35529591, 43.67768827)}"
-5513,22246,GO-20179012522,THEFT UNDER - BICYCLE,2017-08-16T00:00:00,2017,August,Wednesday,16,228,8,2017-08-16T00:00:00,2017,August,Wednesday,16,228,8,D54,Toronto,67,Playter Estates-Danforth (67),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RG,18,SIL,800.0,STOLEN,5509,"{'type': 'Point', 'coordinates': (-79.35979474, 43.67804364)}"
-5514,22314,GO-20189023588,THEFT UNDER - BICYCLE,2018-07-19T00:00:00,2018,July,Thursday,19,200,7,2018-07-23T00:00:00,2018,July,Monday,23,204,16,D54,Toronto,67,Playter Estates-Danforth (67),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,GASTON,RG,3,BLK,920.0,STOLEN,5510,"{'type': 'Point', 'coordinates': (-79.35341489, 43.67804091)}"
-5515,22334,GO-20189030546,THEFT UNDER - BICYCLE,2018-08-30T00:00:00,2018,August,Thursday,30,242,21,2018-09-15T00:00:00,2018,September,Saturday,15,258,9,D54,Toronto,67,Playter Estates-Danforth (67),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KO,DEW PLUS,RG,8,BLK,850.0,STOLEN,5511,"{'type': 'Point', 'coordinates': (-79.35529591, 43.67768827)}"
-5516,22410,GO-20199029533,THEFT UNDER,2019-07-18T00:00:00,2019,July,Thursday,18,199,23,2019-09-10T00:00:00,2019,September,Tuesday,10,253,23,D54,Toronto,67,Playter Estates-Danforth (67),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,HYBRID MOUNTAIN,MT,21,WHI,600.0,STOLEN,5512,"{'type': 'Point', 'coordinates': (-79.35674002, 43.68116210000001)}"
-5517,22519,GO-20201440144,DRUG - POSS METH (SCHD I),2020-08-02T00:00:00,2020,August,Sunday,2,215,14,2020-08-02T00:00:00,2020,August,Sunday,2,215,14,D54,Toronto,67,Playter Estates-Danforth (67),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,AQUILA,PRIMA,RC,18,BLK,,RECOVERED,5513,"{'type': 'Point', 'coordinates': (-79.35958192, 43.67880566)}"
-5518,22598,GO-20202341046,THEFT UNDER,2020-12-10T00:00:00,2020,December,Thursday,10,345,23,2020-12-12T00:00:00,2020,December,Saturday,12,347,9,D54,Toronto,67,Playter Estates-Danforth (67),"Single Home, House (Attach Garage, Cottage, Mobile)",House,EMMO,MONSTER S 84V,EL,0,BLK,2900.0,RECOVERED,5514,"{'type': 'Point', 'coordinates': (-79.35351292, 43.68181884)}"
-5519,22809,GO-20141499515,THEFT UNDER,2014-02-07T00:00:00,2014,February,Friday,7,38,20,2014-02-09T00:00:00,2014,February,Sunday,9,40,18,D54,Toronto,67,Playter Estates-Danforth (67),"Construction Site (Warehouse, Trailer, Shed)",Commercial,SCOTT,SCALE 35,MT,21,,2500.0,STOLEN,5515,"{'type': 'Point', 'coordinates': (-79.35717999, 43.68292598)}"
-5520,22810,GO-20141499515,THEFT UNDER,2014-02-07T00:00:00,2014,February,Friday,7,38,20,2014-02-09T00:00:00,2014,February,Sunday,9,40,18,D54,Toronto,67,Playter Estates-Danforth (67),"Construction Site (Warehouse, Trailer, Shed)",Commercial,OTHER,WILIER,RC,18,WHI,4000.0,STOLEN,5516,"{'type': 'Point', 'coordinates': (-79.35717999, 43.68292598)}"
-5521,22840,GO-20149004071,THEFT UNDER,2014-06-14T00:00:00,2014,June,Saturday,14,165,15,2014-06-14T00:00:00,2014,June,Saturday,14,165,19,D54,Toronto,67,Playter Estates-Danforth (67),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,JAKE - 2005,OT,16,RED,0.0,STOLEN,5517,"{'type': 'Point', 'coordinates': (-79.35838259, 43.67841608)}"
-5522,22884,GO-20149008682,THEFT UNDER,2014-12-10T00:00:00,2014,December,Wednesday,10,344,18,2014-12-10T00:00:00,2014,December,Wednesday,10,344,21,D54,Toronto,67,Playter Estates-Danforth (67),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,UK,,RG,21,GRY,0.0,STOLEN,5518,"{'type': 'Point', 'coordinates': (-79.34958264, 43.67801227)}"
-5523,22895,GO-2015663853,THEFT UNDER,2015-04-21T00:00:00,2015,April,Tuesday,21,111,17,2015-04-22T00:00:00,2015,April,Wednesday,22,112,7,D54,Toronto,67,Playter Estates-Danforth (67),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,SECTOR SPORT C,OT,21,BLUSIL,1200.0,STOLEN,5519,"{'type': 'Point', 'coordinates': (-79.35230718, 43.68201992)}"
-5524,22956,GO-2016258701,THEFT UNDER,2016-02-12T00:00:00,2016,February,Friday,12,43,16,2016-02-12T00:00:00,2016,February,Friday,12,43,19,D54,Toronto,67,Playter Estates-Danforth (67),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DLO,ELELYOYNCE,TO,21,BLU,375.0,STOLEN,5520,"{'type': 'Point', 'coordinates': (-79.351925, 43.67755671)}"
-5525,15961,GO-20151294478,PROPERTY - FOUND,2015-07-29T00:00:00,2015,July,Wednesday,29,210,7,2015-07-29T00:00:00,2015,July,Wednesday,29,210,7,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,MT,99,BLK,,UNKNOWN,5641,"{'type': 'Point', 'coordinates': (-79.34398277, 43.67076068000001)}"
-5526,25393,GO-20161646679,PROPERTY - FOUND,2016-09-16T00:00:00,2016,September,Friday,16,260,10,2016-09-16T00:00:00,2016,September,Friday,16,260,10,D54,Toronto,67,Playter Estates-Danforth (67),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,SUSPEND,MT,21,BLU,,UNKNOWN,5521,"{'type': 'Point', 'coordinates': (-79.34958264, 43.67801227)}"
-5527,25534,GO-20189013772,THEFT UNDER - BICYCLE,2018-05-04T00:00:00,2018,May,Friday,4,124,11,2018-05-04T00:00:00,2018,May,Friday,4,124,11,D54,Toronto,67,Playter Estates-Danforth (67),Convenience Stores,Commercial,OT,,RG,7,,550.0,STOLEN,5522,"{'type': 'Point', 'coordinates': (-79.35883201, 43.67620216)}"
-5528,25545,GO-20189018223,THEFT UNDER - BICYCLE,2018-06-11T00:00:00,2018,June,Monday,11,162,14,2018-06-11T00:00:00,2018,June,Monday,11,162,17,D54,Toronto,67,Playter Estates-Danforth (67),Ttc Subway Station,Transit,KO,HYBRID,MT,21,GRY,800.0,STOLEN,5523,"{'type': 'Point', 'coordinates': (-79.35341489, 43.67804091)}"
-5529,25587,GO-20189030769,THEFT UNDER,2018-09-10T00:00:00,2018,September,Monday,10,253,12,2018-09-17T00:00:00,2018,September,Monday,17,260,12,D54,Toronto,67,Playter Estates-Danforth (67),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,21,GRY,600.0,STOLEN,5524,"{'type': 'Point', 'coordinates': (-79.36004872, 43.67704588)}"
-5530,25613,GO-20199011277,THEFT UNDER,2019-04-09T00:00:00,2019,April,Tuesday,9,99,17,2019-04-09T00:00:00,2019,April,Tuesday,9,99,20,D54,Toronto,67,Playter Estates-Danforth (67),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,TOUGHROAD SLR,RC,11,GRY,2500.0,STOLEN,5525,"{'type': 'Point', 'coordinates': (-79.34511536, 43.67967885)}"
-5531,25627,GO-20199016740,THEFT UNDER,2019-05-28T00:00:00,2019,May,Tuesday,28,148,1,2019-05-29T00:00:00,2019,May,Wednesday,29,149,11,D54,Toronto,67,Playter Estates-Danforth (67),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,KUNSTADT SPORTS,RG,18,DBL,400.0,STOLEN,5526,"{'type': 'Point', 'coordinates': (-79.35483239, 43.6786549)}"
-5532,25666,GO-20199028955,THEFT UNDER,2019-09-05T00:00:00,2019,September,Thursday,5,248,22,2019-09-06T00:00:00,2019,September,Friday,6,249,15,D54,Toronto,67,Playter Estates-Danforth (67),"Apartment (Rooming House, Condo)",Apartment,OT,CITIBIKE 8 SPEE,RG,8,RED,750.0,STOLEN,5527,"{'type': 'Point', 'coordinates': (-79.34958264, 43.67801227)}"
-5533,25731,GO-20201168540,B&E W'INTENT,2020-06-23T00:00:00,2020,June,Tuesday,23,175,22,2020-06-25T00:00:00,2020,June,Thursday,25,177,11,D54,Toronto,67,Playter Estates-Danforth (67),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CINELLI,JASSETTA,RG,2,BLKBLU,1500.0,STOLEN,5528,"{'type': 'Point', 'coordinates': (-79.34758568, 43.67920364)}"
-5534,25758,GO-20201505719,B&E,2020-08-11T00:00:00,2020,August,Tuesday,11,224,4,2020-08-12T00:00:00,2020,August,Wednesday,12,225,11,D54,Toronto,67,Playter Estates-Danforth (67),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,R500,RC,12,BLUYEL,1000.0,STOLEN,5529,"{'type': 'Point', 'coordinates': (-79.35885921, 43.68127506)}"
-5535,231,GO-2017669379,THEFT UNDER,2017-04-16T00:00:00,2017,April,Sunday,16,106,11,2017-04-16T00:00:00,2017,April,Sunday,16,106,15,D55,Toronto,68,North Riverdale (68),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SATORI ALUMINUM,SPRING,OT,0,SIL,43.0,STOLEN,5530,"{'type': 'Point', 'coordinates': (-79.35883201, 43.67620216)}"
-5536,232,GO-2017669379,THEFT UNDER,2017-04-16T00:00:00,2017,April,Sunday,16,106,11,2017-04-16T00:00:00,2017,April,Sunday,16,106,15,D55,Toronto,68,North Riverdale (68),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SELLE ROYAL,LOIRE,OT,0,,40.0,STOLEN,5531,"{'type': 'Point', 'coordinates': (-79.35883201, 43.67620216)}"
-5537,431,GO-20179006699,THEFT UNDER - BICYCLE,2017-05-20T00:00:00,2017,May,Saturday,20,140,12,2017-05-20T00:00:00,2017,May,Saturday,20,140,16,D55,Toronto,68,North Riverdale (68),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,MODENA 2016 HYB,MT,21,BLK,200.0,STOLEN,5532,"{'type': 'Point', 'coordinates': (-79.34826949, 43.6782716)}"
-5538,642,GO-20179008307,THEFT UNDER - BICYCLE,2017-06-17T00:00:00,2017,June,Saturday,17,168,8,2017-06-17T00:00:00,2017,June,Saturday,17,168,12,D55,Toronto,68,North Riverdale (68),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,,RC,40,BLK,1000.0,STOLEN,5533,"{'type': 'Point', 'coordinates': (-79.34730449, 43.6784602)}"
-5539,25740,GO-20209016848,THEFT UNDER,2020-07-04T00:00:00,2020,July,Saturday,4,186,11,2020-07-04T00:00:00,2020,July,Saturday,4,186,16,D55,Toronto,69,Blake-Jones (69),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,URBAN,RG,7,GRY,679.0,STOLEN,5534,"{'type': 'Point', 'coordinates': (-79.33533163, 43.67883247)}"
-5540,25794,GO-20209026401,THEFT UNDER,2020-10-05T00:00:00,2020,October,Monday,5,279,10,2020-10-14T00:00:00,2020,October,Wednesday,14,288,10,D55,Toronto,68,North Riverdale (68),"Apartment (Rooming House, Condo)",Apartment,UK,SIENA 700C,RG,8,GRY,470.0,STOLEN,5535,"{'type': 'Point', 'coordinates': (-79.34716166, 43.67195844)}"
-5541,567,GO-20179007798,THEFT UNDER - BICYCLE,2017-06-07T00:00:00,2017,June,Wednesday,7,158,7,2017-06-09T00:00:00,2017,June,Friday,9,160,19,D55,Toronto,69,Blake-Jones (69),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SC,HYDRA,RG,24,DBL,500.0,STOLEN,5536,"{'type': 'Point', 'coordinates': (-79.33996342, 43.67664689)}"
-5542,670,GO-20179008565,THEFT UNDER - BICYCLE,2017-06-20T00:00:00,2017,June,Tuesday,20,171,20,2017-06-20T00:00:00,2017,June,Tuesday,20,171,23,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,GOLF,RG,1,YEL,400.0,STOLEN,5537,"{'type': 'Point', 'coordinates': (-79.34235228, 43.67296866)}"
-5543,995,GO-20179011161,THEFT UNDER - BICYCLE,2017-07-23T00:00:00,2017,July,Sunday,23,204,21,2017-07-27T00:00:00,2017,July,Thursday,27,208,15,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,MT,18,DGR,0.0,STOLEN,5538,"{'type': 'Point', 'coordinates': (-79.34447854, 43.67814285)}"
-5544,1352,GO-20179014376,THEFT UNDER,2017-09-08T00:00:00,2017,September,Friday,8,251,0,2017-09-10T00:00:00,2017,September,Sunday,10,253,12,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,SECTEUR SPORT,RC,18,RED,1300.0,STOLEN,5539,"{'type': 'Point', 'coordinates': (-79.33945396, 43.67832043)}"
-5545,1441,GO-20179015047,THEFT UNDER - BICYCLE,2017-09-15T00:00:00,2017,September,Friday,15,258,13,2017-09-18T00:00:00,2017,September,Monday,18,261,13,D55,Toronto,69,Blake-Jones (69),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MO,,MT,21,RED,0.0,STOLEN,5540,"{'type': 'Point', 'coordinates': (-79.33996342, 43.67664689)}"
-5546,2715,GO-20189020674,THEFT UNDER - BICYCLE,2018-06-29T00:00:00,2018,June,Friday,29,180,1,2018-06-29T00:00:00,2018,June,Friday,29,180,7,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,UNO RISER 2016,RC,1,GRY,1000.0,STOLEN,5541,"{'type': 'Point', 'coordinates': (-79.3374569, 43.6795733)}"
-5547,3074,GO-20189025110,THEFT UNDER - BICYCLE,2018-08-02T00:00:00,2018,August,Thursday,2,214,19,2018-08-04T00:00:00,2018,August,Saturday,4,216,14,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,BANSHEE,MT,1,LGR,400.0,STOLEN,5542,"{'type': 'Point', 'coordinates': (-79.34295391, 43.6743962)}"
-5548,3235,GO-20189026717,THEFT UNDER,2018-08-15T00:00:00,2018,August,Wednesday,15,227,23,2018-08-16T00:00:00,2018,August,Thursday,16,228,20,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SIRRUS ELITE,RG,16,RED,940.0,STOLEN,5543,"{'type': 'Point', 'coordinates': (-79.3381091, 43.67514106)}"
-5549,4212,GO-20199013347,THEFT UNDER,2019-04-28T00:00:00,2019,April,Sunday,28,118,10,2019-04-28T00:00:00,2019,April,Sunday,28,118,14,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,MEN'S INDIE 2,RG,21,BLK,1000.0,STOLEN,5544,"{'type': 'Point', 'coordinates': (-79.34295391, 43.6743962)}"
-5550,4213,GO-20199013347,THEFT UNDER,2019-04-28T00:00:00,2019,April,Sunday,28,118,10,2019-04-28T00:00:00,2019,April,Sunday,28,118,14,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,HARDROCK,MT,21,BLK,1.0,STOLEN,5545,"{'type': 'Point', 'coordinates': (-79.34295391, 43.6743962)}"
-5551,4441,GO-20199017996,THEFT UNDER,2019-06-08T00:00:00,2019,June,Saturday,8,159,23,2019-06-10T00:00:00,2019,June,Monday,10,161,9,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,,MT,18,BLK,500.0,STOLEN,5546,"{'type': 'Point', 'coordinates': (-79.3342393, 43.67593322)}"
-5552,5015,GO-20191514204,THEFT UNDER,2019-08-10T00:00:00,2019,August,Saturday,10,222,15,2019-08-10T00:00:00,2019,August,Saturday,10,222,16,D55,Toronto,69,Blake-Jones (69),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,RG,18,DGR,350.0,STOLEN,5547,"{'type': 'Point', 'coordinates': (-79.33939532, 43.68001357)}"
-5553,5548,GO-20199034443,THEFT UNDER,2019-10-19T00:00:00,2019,October,Saturday,19,292,14,2019-10-19T00:00:00,2019,October,Saturday,19,292,14,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,FX2,RG,24,GRN,800.0,STOLEN,5548,"{'type': 'Point', 'coordinates': (-79.34123045, 43.6702892)}"
-5554,5560,GO-20199034579,THEFT UNDER,2019-10-20T00:00:00,2019,October,Sunday,20,293,18,2019-10-20T00:00:00,2019,October,Sunday,20,293,22,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,P2,OT,11,BLK,3000.0,STOLEN,5549,"{'type': 'Point', 'coordinates': (-79.33611676000001, 43.67682597)}"
-5555,5734,GO-20199039218,THEFT UNDER,2019-11-28T00:00:00,2019,November,Thursday,28,332,19,2019-11-28T00:00:00,2019,November,Thursday,28,332,20,D55,Toronto,69,Blake-Jones (69),Convenience Stores,Commercial,OT,700M TOPSTONE D,OT,12,GRN,1400.0,STOLEN,5550,"{'type': 'Point', 'coordinates': (-79.34304424, 43.67930242)}"
-5556,14104,GO-20169010347,THEFT UNDER,2016-09-13T00:00:00,2016,September,Tuesday,13,257,0,2016-09-13T00:00:00,2016,September,Tuesday,13,257,10,D55,Toronto,68,North Riverdale (68),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,RG,27,BLK,989.0,STOLEN,5551,"{'type': 'Point', 'coordinates': (-79.35618763, 43.67337396)}"
-5557,5855,GO-20209003269,THEFT UNDER,2020-01-27T00:00:00,2020,January,Monday,27,27,12,2020-01-27T00:00:00,2020,January,Monday,27,27,17,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,CCM,MT,18,RED,300.0,STOLEN,5552,"{'type': 'Point', 'coordinates': (-79.33945396, 43.67832043)}"
-5558,5929,GO-20209006996,THEFT UNDER,2020-02-26T00:00:00,2020,February,Wednesday,26,57,0,2020-02-26T00:00:00,2020,February,Wednesday,26,57,20,D55,Toronto,69,Blake-Jones (69),"Group Homes (Non-Profit, Halfway House, Social Agency)",Other,SU,PHANTOM HARDTAI,MT,21,ONG,260.0,STOLEN,5553,"{'type': 'Point', 'coordinates': (-79.34447854, 43.67814285)}"
-5559,5933,GO-20209007122,THEFT UNDER,2020-02-25T00:00:00,2020,February,Tuesday,25,56,16,2020-02-27T00:00:00,2020,February,Thursday,27,58,14,D55,Toronto,69,Blake-Jones (69),Bar / Restaurant,Commercial,TR,,MT,21,GRY,800.0,STOLEN,5554,"{'type': 'Point', 'coordinates': (-79.34480222, 43.67895162)}"
-5560,6303,GO-20209014627,THEFT UNDER,2020-06-04T00:00:00,2020,June,Thursday,4,156,6,2020-06-05T00:00:00,2020,June,Friday,5,157,10,D55,Toronto,69,Blake-Jones (69),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,,OT,18,BLK,0.0,STOLEN,5555,"{'type': 'Point', 'coordinates': (-79.33996342, 43.67664689)}"
-5561,6320,GO-20209014789,THEFT UNDER,2020-06-07T00:00:00,2020,June,Sunday,7,159,0,2020-06-07T00:00:00,2020,June,Sunday,7,159,14,D55,Toronto,69,Blake-Jones (69),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,ARIEL HYDRAULIC,MT,24,WHI,1012.0,STOLEN,5556,"{'type': 'Point', 'coordinates': (-79.33697985, 43.67711975)}"
-5562,7018,GO-20201565601,THEFT UNDER,2020-08-16T00:00:00,2020,August,Sunday,16,229,2,2020-08-21T00:00:00,2020,August,Friday,21,234,16,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,,OT,12,BLK,,STOLEN,5557,"{'type': 'Point', 'coordinates': (-79.33492942, 43.67988022)}"
-5563,7037,GO-20209020974,THEFT UNDER,2020-08-22T00:00:00,2020,August,Saturday,22,235,0,2020-08-22T00:00:00,2020,August,Saturday,22,235,12,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,TO,7,BLK,600.0,STOLEN,5558,"{'type': 'Point', 'coordinates': (-79.33945396, 43.67832043)}"
-5564,7211,GO-20209022690,B&E,2020-09-09T00:00:00,2020,September,Wednesday,9,253,2,2020-09-09T00:00:00,2020,September,Wednesday,9,253,9,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,TANGO HYBRID,FO,7,RED,300.0,STOLEN,5559,"{'type': 'Point', 'coordinates': (-79.33492942, 43.67988022)}"
-5565,7231,GO-20201727842,THEFT UNDER - BICYCLE,2020-09-01T00:00:00,2020,September,Tuesday,1,245,6,2020-09-12T00:00:00,2020,September,Saturday,12,256,13,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,1,OTH,500.0,STOLEN,5560,"{'type': 'Point', 'coordinates': (-79.33978417, 43.67170628)}"
-5566,7232,GO-20201727842,THEFT UNDER - BICYCLE,2020-09-01T00:00:00,2020,September,Tuesday,1,245,6,2020-09-12T00:00:00,2020,September,Saturday,12,256,13,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,RG,5,PNKYEL,1000.0,STOLEN,5561,"{'type': 'Point', 'coordinates': (-79.33978417, 43.67170628)}"
-5567,25806,GO-20202372210,B&E,2020-12-16T00:00:00,2020,December,Wednesday,16,351,17,2020-12-17T00:00:00,2020,December,Thursday,17,352,11,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,DETOUR,RG,10,BLK,,STOLEN,5562,"{'type': 'Point', 'coordinates': (-79.33180554, 43.68014121)}"
-5568,7807,GO-20149002553,THEFT UNDER,2014-04-03T00:00:00,2014,April,Thursday,3,93,9,2014-04-03T00:00:00,2014,April,Thursday,3,93,15,D55,Toronto,69,Blake-Jones (69),Schools During Supervised Activity,Educational,OT,500W+ ELECTRIC,EL,32,WHI,1300.0,STOLEN,5563,"{'type': 'Point', 'coordinates': (-79.33996342, 43.67664689)}"
-5569,7815,GO-20149002569,THEFT UNDER,2014-04-02T00:00:00,2014,April,Wednesday,2,92,22,2014-04-04T00:00:00,2014,April,Friday,4,94,17,D55,Toronto,69,Blake-Jones (69),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RA,DETOUR,RG,15,RED,600.0,STOLEN,5564,"{'type': 'Point', 'coordinates': (-79.3381234, 43.67832756)}"
-5570,7816,GO-20141832158,THEFT UNDER,2014-04-04T00:00:00,2014,April,Friday,4,94,21,2014-04-05T00:00:00,2014,April,Saturday,5,95,10,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RAPTOR,,EL,1,BLKRED,1300.0,STOLEN,5565,"{'type': 'Point', 'coordinates': (-79.34295391, 43.6743962)}"
-5571,8001,GO-20142171998,THEFT UNDER,2014-05-28T00:00:00,2014,May,Wednesday,28,148,16,2014-05-28T00:00:00,2014,May,Wednesday,28,148,18,D55,Toronto,69,Blake-Jones (69),"Apartment (Rooming House, Condo)",Apartment,DAYMAK,RICKSHAW,EL,10,BLK,1800.0,STOLEN,5566,"{'type': 'Point', 'coordinates': (-79.34386775000002, 43.67663429)}"
-5572,8410,GO-20149004946,THEFT UNDER,2014-07-11T00:00:00,2014,July,Friday,11,192,12,2014-07-13T00:00:00,2014,July,Sunday,13,194,19,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,HEART,RG,1,BLK,550.0,STOLEN,5567,"{'type': 'Point', 'coordinates': (-79.33996342, 43.67664689)}"
-5573,8755,GO-20149006329,THEFT UNDER,2014-08-23T00:00:00,2014,August,Saturday,23,235,18,2014-08-26T00:00:00,2014,August,Tuesday,26,238,21,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,,RG,18,BLU,,STOLEN,5568,"{'type': 'Point', 'coordinates': (-79.33438272, 43.67375401)}"
-5574,8823,GO-20149006628,THEFT UNDER,2014-09-06T00:00:00,2014,September,Saturday,6,249,13,2014-09-06T00:00:00,2014,September,Saturday,6,249,17,D55,Toronto,69,Blake-Jones (69),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE 0,OT,10,WHI,799.0,STOLEN,5569,"{'type': 'Point', 'coordinates': (-79.34480222, 43.67895162)}"
-5575,9089,GO-20143147357,THEFT UNDER,2014-10-16T00:00:00,2014,October,Thursday,16,289,9,2014-10-21T00:00:00,2014,October,Tuesday,21,294,15,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,1,BLU,1100.0,STOLEN,5570,"{'type': 'Point', 'coordinates': (-79.34123045, 43.6702892)}"
-5576,9090,GO-20143147357,THEFT UNDER,2014-10-16T00:00:00,2014,October,Thursday,16,289,9,2014-10-21T00:00:00,2014,October,Tuesday,21,294,15,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,1,WHI,500.0,STOLEN,5571,"{'type': 'Point', 'coordinates': (-79.34123045, 43.6702892)}"
-5577,9464,GO-2015673928,THEFT UNDER,2015-04-22T00:00:00,2015,April,Wednesday,22,112,21,2015-04-23T00:00:00,2015,April,Thursday,23,113,18,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,EMMO,,EL,30,BLK,350.0,STOLEN,5572,"{'type': 'Point', 'coordinates': (-79.33776478000001, 43.67434395)}"
-5578,9478,GO-20159002268,THEFT UNDER,2015-04-25T00:00:00,2015,April,Saturday,25,115,23,2015-04-26T00:00:00,2015,April,Sunday,26,116,14,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,SPORT VISTA,RG,27,WHI,700.0,STOLEN,5573,"{'type': 'Point', 'coordinates': (-79.34265273, 43.67367568)}"
-5579,9551,GO-20159002542,THEFT UNDER,2015-05-04T00:00:00,2015,May,Monday,4,124,21,2015-05-08T00:00:00,2015,May,Friday,8,128,8,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,10,BLU,0.0,STOLEN,5574,"{'type': 'Point', 'coordinates': (-79.3381234, 43.67832756)}"
-5580,9743,GO-2015948849,THEFT UNDER - SHOPLIFTING,2014-11-03T00:00:00,2014,November,Monday,3,307,12,2015-06-06T00:00:00,2015,June,Saturday,6,157,15,D55,Toronto,69,Blake-Jones (69),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,EBIKE,EL,0,ONG,600.0,STOLEN,5575,"{'type': 'Point', 'coordinates': (-79.34480222, 43.67895162)}"
-5581,9759,GO-2015948849,THEFT UNDER - SHOPLIFTING,2014-11-03T00:00:00,2014,November,Monday,3,307,12,2015-06-06T00:00:00,2015,June,Saturday,6,157,15,D55,Toronto,69,Blake-Jones (69),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MEMECYCLE,,EL,0,,,STOLEN,5576,"{'type': 'Point', 'coordinates': (-79.34480222, 43.67895162)}"
-5582,9840,GO-20159003795,THEFT UNDER,2015-06-21T00:00:00,2015,June,Sunday,21,172,1,2015-06-21T00:00:00,2015,June,Sunday,21,172,10,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,"KICKER JUMP 24""""",RG,21,BLU,350.0,STOLEN,5577,"{'type': 'Point', 'coordinates': (-79.33939532, 43.68001357)}"
-5583,10030,GO-20151207744,THEFT UNDER,2015-07-16T00:00:00,2015,July,Thursday,16,197,14,2015-07-16T00:00:00,2015,July,Thursday,16,197,14,D55,Toronto,69,Blake-Jones (69),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,OT,10,BLK,,STOLEN,5578,"{'type': 'Point', 'coordinates': (-79.33727518, 43.68042137)}"
-5584,10034,GO-20159004635,THEFT UNDER,2015-07-15T00:00:00,2015,July,Wednesday,15,196,22,2015-07-16T00:00:00,2015,July,Thursday,16,197,19,D55,Toronto,69,Blake-Jones (69),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,WOMEN'S COMMUTE,TO,18,BLK,500.0,STOLEN,5579,"{'type': 'Point', 'coordinates': (-79.3374569, 43.6795733)}"
-5585,10454,GO-20151583240,THEFT UNDER,2015-08-29T00:00:00,2015,August,Saturday,29,241,12,2015-09-13T00:00:00,2015,September,Sunday,13,256,16,D55,Toronto,69,Blake-Jones (69),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EBIKE,,EL,1,BLK,1300.0,STOLEN,5580,"{'type': 'Point', 'coordinates': (-79.3381091, 43.67514106)}"
-5586,11146,GO-2016653442,THEFT UNDER - BICYCLE,2016-04-16T00:00:00,2016,April,Saturday,16,107,22,2016-04-17T00:00:00,2016,April,Sunday,17,108,9,D55,Toronto,69,Blake-Jones (69),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RAPTOR,,EL,1,DGR,1600.0,STOLEN,5581,"{'type': 'Point', 'coordinates': (-79.33917593, 43.67183906)}"
-5587,11569,GO-20169005956,THEFT UNDER - BICYCLE,2016-06-14T00:00:00,2016,June,Tuesday,14,166,19,2016-06-17T00:00:00,2016,June,Friday,17,169,15,D55,Toronto,69,Blake-Jones (69),Schools During Un-Supervised Activity,Educational,OT,CROSSROADS,RG,21,BLK,500.0,STOLEN,5582,"{'type': 'Point', 'coordinates': (-79.33996342, 43.67664689)}"
-5588,11728,GO-20169006818,THEFT UNDER - BICYCLE,2016-07-02T00:00:00,2016,July,Saturday,2,184,20,2016-07-05T00:00:00,2016,July,Tuesday,5,187,20,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,10,BLK,400.0,STOLEN,5583,"{'type': 'Point', 'coordinates': (-79.34419072, 43.67741288)}"
-5589,11907,GO-20169007742,THEFT UNDER - BICYCLE,2016-07-24T00:00:00,2016,July,Sunday,24,206,22,2016-07-25T00:00:00,2016,July,Monday,25,207,18,D55,Toronto,69,Blake-Jones (69),"Apartment (Rooming House, Condo)",Apartment,GF,WAHOO,MT,24,SIL,500.0,STOLEN,5584,"{'type': 'Point', 'coordinates': (-79.34067035, 43.67151078)}"
-5590,12031,GO-20161375899,THEFT UNDER - BICYCLE,2016-07-30T00:00:00,2016,July,Saturday,30,212,13,2016-08-05T00:00:00,2016,August,Friday,5,218,9,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BURLEY,ENCORE,OT,1,YELBLU,330.0,STOLEN,5585,"{'type': 'Point', 'coordinates': (-79.3342393, 43.67593322)}"
-5591,12189,GO-20161510550,THEFT UNDER - BICYCLE,2016-08-16T00:00:00,2016,August,Tuesday,16,229,17,2016-08-26T00:00:00,2016,August,Friday,26,239,6,D55,Toronto,69,Blake-Jones (69),"Apartment (Rooming House, Condo)",Apartment,CANNONDALE,,MT,18,BLK,500.0,STOLEN,5586,"{'type': 'Point', 'coordinates': (-79.33814773, 43.6724497)}"
-5592,12190,GO-20161510550,THEFT UNDER - BICYCLE,2016-08-16T00:00:00,2016,August,Tuesday,16,229,17,2016-08-26T00:00:00,2016,August,Friday,26,239,6,D55,Toronto,69,Blake-Jones (69),"Apartment (Rooming House, Condo)",Apartment,CANNONDALE,,MT,18,PLE,500.0,STOLEN,5587,"{'type': 'Point', 'coordinates': (-79.33814773, 43.6724497)}"
-5593,12809,GO-20162074811,THEFT UNDER - BICYCLE,2016-11-22T00:00:00,2016,November,Tuesday,22,327,13,2016-11-22T00:00:00,2016,November,Tuesday,22,327,14,D55,Toronto,69,Blake-Jones (69),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,UNKNOWN,MT,18,BLK,200.0,STOLEN,5588,"{'type': 'Point', 'coordinates': (-79.34013767, 43.67987414)}"
-5594,12864,GO-20189023984,THEFT UNDER - BICYCLE,2018-07-25T00:00:00,2018,July,Wednesday,25,206,9,2018-07-26T00:00:00,2018,July,Thursday,26,207,11,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,QUICK CX,TO,18,GRY,800.0,STOLEN,5589,"{'type': 'Point', 'coordinates': (-79.3381091, 43.67514106)}"
-5595,12987,GO-20191897549,THEFT UNDER - BICYCLE,2019-10-02T00:00:00,2019,October,Wednesday,2,275,7,2019-10-02T00:00:00,2019,October,Wednesday,2,275,11,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BIANCHI,,RC,18,DBL,400.0,STOLEN,5590,"{'type': 'Point', 'coordinates': (-79.33697985, 43.67711975)}"
-5596,14102,GO-20169010032,THEFT UNDER,2016-09-03T00:00:00,2016,September,Saturday,3,247,1,2016-09-06T00:00:00,2016,September,Tuesday,6,250,12,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,CITATO,RG,21,GRY,900.0,STOLEN,5591,"{'type': 'Point', 'coordinates': (-79.33573187, 43.67342741)}"
-5597,14157,GO-20179006886,THEFT UNDER - BICYCLE,2017-05-24T00:00:00,2017,May,Wednesday,24,144,7,2017-05-24T00:00:00,2017,May,Wednesday,24,144,9,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,1,PNK,250.0,RECOVERED,5592,"{'type': 'Point', 'coordinates': (-79.3381091, 43.67514106)}"
-5598,14164,GO-20179008567,THEFT UNDER - BICYCLE,2017-06-20T00:00:00,2017,June,Tuesday,20,171,16,2017-06-21T00:00:00,2017,June,Wednesday,21,172,18,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,CHROMALOY HYBRI,OT,18,SIL,70.0,STOLEN,5593,"{'type': 'Point', 'coordinates': (-79.33814773, 43.6724497)}"
-5599,14187,GO-20179014215,THEFT UNDER,2017-09-06T00:00:00,2017,September,Wednesday,6,249,23,2017-09-07T00:00:00,2017,September,Thursday,7,250,16,D55,Toronto,69,Blake-Jones (69),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,7,LGR,900.0,STOLEN,5594,"{'type': 'Point', 'coordinates': (-79.33488761, 43.67491591)}"
-5600,14200,GO-20179015908,THEFT UNDER - BICYCLE,2017-09-22T00:00:00,2017,September,Friday,22,265,14,2017-09-27T00:00:00,2017,September,Wednesday,27,270,12,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,7112566,OT,70,TRQ,460.0,STOLEN,5595,"{'type': 'Point', 'coordinates': (-79.3381091, 43.67514106)}"
-5601,15981,GO-20159007317,THEFT UNDER,2015-09-16T00:00:00,2015,September,Wednesday,16,259,23,2015-09-17T00:00:00,2015,September,Thursday,17,260,0,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,1,BLK,450.0,STOLEN,5596,"{'type': 'Point', 'coordinates': (-79.34235228, 43.67296866)}"
-5602,15990,GO-20159008634,THEFT UNDER,2015-10-09T00:00:00,2015,October,Friday,9,282,16,2015-10-16T00:00:00,2015,October,Friday,16,289,14,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,SOHO,RC,1,BLK,600.0,STOLEN,5597,"{'type': 'Point', 'coordinates': (-79.33883189, 43.67687484)}"
-5603,16045,GO-20201347215,B&E,2020-07-17T00:00:00,2020,July,Friday,17,199,22,2020-07-20T00:00:00,2020,July,Monday,20,202,11,D55,Toronto,69,Blake-Jones (69),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,BIANCHI,,RG,10,,,STOLEN,5598,"{'type': 'Point', 'coordinates': (-79.34056846, 43.67979025)}"
-5604,16063,GO-20209020842,THEFT UNDER,2020-08-20T00:00:00,2020,August,Thursday,20,233,14,2020-08-21T00:00:00,2020,August,Friday,21,234,10,D55,Toronto,69,Blake-Jones (69),"Open Areas (Lakes, Parks, Rivers)",Outside,TR,,RG,24,BGE,450.0,STOLEN,5599,"{'type': 'Point', 'coordinates': (-79.34056846, 43.67979025)}"
-5605,18790,GO-20202326917,THEFT UNDER,2020-12-09T00:00:00,2020,December,Wednesday,9,344,18,2020-12-10T00:00:00,2020,December,Thursday,10,345,9,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,OCR2,RG,21,BLK,1200.0,STOLEN,5600,"{'type': 'Point', 'coordinates': (-79.33492942, 43.67988022)}"
-5606,18791,GO-20202326917,THEFT UNDER,2020-12-09T00:00:00,2020,December,Wednesday,9,344,18,2020-12-10T00:00:00,2020,December,Thursday,10,345,9,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,LANGSTER,RG,1,SIL,750.0,STOLEN,5601,"{'type': 'Point', 'coordinates': (-79.33492942, 43.67988022)}"
-5607,18828,GO-20141810819,THEFT UNDER,2014-04-01T00:00:00,2014,April,Tuesday,1,91,19,2014-04-01T00:00:00,2014,April,Tuesday,1,91,22,D55,Toronto,69,Blake-Jones (69),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,EAGLE,EL,50,MRN,1300.0,STOLEN,5602,"{'type': 'Point', 'coordinates': (-79.34419072, 43.67741288)}"
-5608,18846,GO-20149005066,THEFT UNDER,2014-07-17T00:00:00,2014,July,Thursday,17,198,2,2014-07-17T00:00:00,2014,July,Thursday,17,198,9,D55,Toronto,69,Blake-Jones (69),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,DURANGO SPORT,MT,27,GRY,875.0,STOLEN,5603,"{'type': 'Point', 'coordinates': (-79.33533163, 43.67883247)}"
-5609,18921,GO-20159005738,THEFT UNDER,2015-08-15T00:00:00,2015,August,Saturday,15,227,17,2015-08-16T00:00:00,2015,August,Sunday,16,228,10,D55,Toronto,69,Blake-Jones (69),"Apartment (Rooming House, Condo)",Apartment,EM,TITAN,EL,32,BLK,1920.0,STOLEN,5604,"{'type': 'Point', 'coordinates': (-79.33573187, 43.67342741)}"
-5610,18961,GO-20169001244,THEFT UNDER,2016-02-07T00:00:00,2016,February,Sunday,7,38,23,2016-02-08T00:00:00,2016,February,Monday,8,39,13,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,TALON,RC,12,BLK,3000.0,STOLEN,5605,"{'type': 'Point', 'coordinates': (-79.34419072, 43.67741288)}"
-5611,19098,GO-20171260455,THEFT UNDER - BICYCLE,2017-06-24T00:00:00,2017,June,Saturday,24,175,16,2017-07-14T00:00:00,2017,July,Friday,14,195,7,D55,Toronto,69,Blake-Jones (69),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,OT,9,,,STOLEN,5606,"{'type': 'Point', 'coordinates': (-79.33776478000001, 43.67434395)}"
-5612,19126,GO-20179018192,THEFT UNDER - BICYCLE,2017-10-25T00:00:00,2017,October,Wednesday,25,298,15,2017-10-25T00:00:00,2017,October,Wednesday,25,298,17,D55,Toronto,69,Blake-Jones (69),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,STEALTH 1.0,RG,21,LGR,260.0,STOLEN,5607,"{'type': 'Point', 'coordinates': (-79.33996342, 43.67664689)}"
-5613,19236,GO-20199017940,THEFT UNDER,2019-06-08T00:00:00,2019,June,Saturday,8,159,23,2019-06-09T00:00:00,2019,June,Sunday,9,160,15,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,261,MT,21,BLU,480.0,STOLEN,5608,"{'type': 'Point', 'coordinates': (-79.33697985, 43.67711975)}"
-5614,19652,GO-20149006506,THEFT UNDER,2014-08-27T00:00:00,2014,August,Wednesday,27,239,18,2014-09-02T00:00:00,2014,September,Tuesday,2,245,18,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SATELLITE,MT,21,BLK,400.0,STOLEN,5609,"{'type': 'Point', 'coordinates': (-79.33488761, 43.67491591)}"
-5615,19677,GO-2015666284,THEFT UNDER,2015-04-22T00:00:00,2015,April,Wednesday,22,112,14,2015-04-23T00:00:00,2015,April,Thursday,23,113,7,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,VFR 21,MT,20,BLKGRY,200.0,STOLEN,5610,"{'type': 'Point', 'coordinates': (-79.33573187, 43.67342741)}"
-5616,19746,GO-20152010728,THEFT UNDER,2015-11-23T00:00:00,2015,November,Monday,23,327,9,2015-11-23T00:00:00,2015,November,Monday,23,327,16,D55,Toronto,69,Blake-Jones (69),Schools During Un-Supervised Activity,Educational,SPECIALIZED,HOTROCK,MT,21,ONG,460.0,STOLEN,5611,"{'type': 'Point', 'coordinates': (-79.33996342, 43.67664689)}"
-5617,22290,GO-20189015706,THEFT UNDER - BICYCLE,2018-05-08T00:00:00,2018,May,Tuesday,8,128,19,2018-05-21T00:00:00,2018,May,Monday,21,141,19,D55,Toronto,69,Blake-Jones (69),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,PE,,RC,12,BLK,200.0,STOLEN,5612,"{'type': 'Point', 'coordinates': (-79.33996342, 43.67664689)}"
-5618,22458,GO-20209011790,THEFT UNDER,2020-04-22T00:00:00,2020,April,Wednesday,22,113,20,2020-04-23T00:00:00,2020,April,Thursday,23,114,13,D55,Toronto,69,Blake-Jones (69),"Apartment (Rooming House, Condo)",Apartment,UK,STEEL FIXIE,OT,1,TRQ,700.0,STOLEN,5613,"{'type': 'Point', 'coordinates': (-79.34357052, 43.67587777)}"
-5619,22515,GO-20209018778,THEFT UNDER,2020-07-28T00:00:00,2020,July,Tuesday,28,210,5,2020-07-28T00:00:00,2020,July,Tuesday,28,210,12,D55,Toronto,69,Blake-Jones (69),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,,TO,21,BLU,600.0,STOLEN,5614,"{'type': 'Point', 'coordinates': (-79.3374569, 43.6795733)}"
-5620,22517,GO-20209018932,THEFT UNDER,2020-07-30T00:00:00,2020,July,Thursday,30,212,12,2020-07-30T00:00:00,2020,July,Thursday,30,212,13,D55,Toronto,69,Blake-Jones (69),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,RADISSON,TO,21,GRN,600.0,STOLEN,5615,"{'type': 'Point', 'coordinates': (-79.3417383, 43.6795669)}"
-5621,22917,GO-20151415078,PROPERTY - FOUND,2015-08-17T00:00:00,2015,August,Monday,17,229,13,2015-08-17T00:00:00,2015,August,Monday,17,229,15,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,CCM,RC,21,BLK,150.0,UNKNOWN,5616,"{'type': 'Point', 'coordinates': (-79.34419072, 43.67741288)}"
-5622,22975,GO-2016935385,THEFT UNDER,2016-05-17T00:00:00,2016,May,Tuesday,17,138,22,2016-05-30T00:00:00,2016,May,Monday,30,151,14,D55,Toronto,69,Blake-Jones (69),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FORTRESS,1700,SC,1,BLK,3500.0,STOLEN,5617,"{'type': 'Point', 'coordinates': (-79.34013767, 43.67987414)}"
-5623,25425,GO-20179002073,THEFT UNDER - BICYCLE,2017-02-05T00:00:00,2017,February,Sunday,5,36,21,2017-02-16T00:00:00,2017,February,Thursday,16,47,18,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,"SC 26"""" CRUISER",RG,1,BLK,100.0,STOLEN,5618,"{'type': 'Point', 'coordinates': (-79.33814773, 43.6724497)}"
-5624,25426,GO-20179002073,THEFT UNDER - BICYCLE,2017-02-05T00:00:00,2017,February,Sunday,5,36,21,2017-02-16T00:00:00,2017,February,Thursday,16,47,18,D55,Toronto,69,Blake-Jones (69),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,,RG,1,,100.0,STOLEN,5619,"{'type': 'Point', 'coordinates': (-79.33814773, 43.6724497)}"
-5625,25452,GO-20179008885,THEFT UNDER - BICYCLE,2017-06-25T00:00:00,2017,June,Sunday,25,176,17,2017-06-25T00:00:00,2017,June,Sunday,25,176,20,D55,Toronto,69,Blake-Jones (69),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,F29 CARBON,MT,20,WHI,1500.0,STOLEN,5620,"{'type': 'Point', 'coordinates': (-79.33234245, 43.6814835)}"
-5626,22981,GO-20169006933,THEFT UNDER,2016-07-07T00:00:00,2016,July,Thursday,7,189,16,2016-07-09T00:00:00,2016,July,Saturday,9,191,16,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,REVEL 29,MT,24,GRY,600.0,STOLEN,5621,"{'type': 'Point', 'coordinates': (-79.32014233, 43.66833167000001)}"
-5627,14112,GO-20169011597,THEFT UNDER - BICYCLE,2016-10-05T00:00:00,2016,October,Wednesday,5,279,15,2016-10-05T00:00:00,2016,October,Wednesday,5,279,16,D55,Toronto,68,North Riverdale (68),"Apartment (Rooming House, Condo)",Apartment,KO,CONDER CONE,MT,27,BLU,1200.0,STOLEN,5622,"{'type': 'Point', 'coordinates': (-79.35444372, 43.67371106)}"
-5628,25435,GO-20179005351,THEFT UNDER - BICYCLE,2017-04-23T00:00:00,2017,April,Sunday,23,113,8,2017-04-27T00:00:00,2017,April,Thursday,27,117,8,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,TO,3,,600.0,STOLEN,5623,"{'type': 'Point', 'coordinates': (-79.32119568, 43.67247049)}"
-5629,13,GO-20162212834,THEFT FROM MOTOR VEHICLE UNDER,2016-12-08T00:00:00,2016,December,Thursday,8,343,21,2016-12-14T00:00:00,2016,December,Wednesday,14,349,10,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,LOUIS GARNEAU,,RC,18,BLKRED,1800.0,STOLEN,5624,"{'type': 'Point', 'coordinates': (-79.33699306, 43.66751081)}"
-5630,14128,GO-20162127312,THEFT OF EBIKE UNDER $5000,2016-11-25T00:00:00,2016,November,Friday,25,330,0,2016-11-30T00:00:00,2016,November,Wednesday,30,335,19,D55,Toronto,68,North Riverdale (68),"Open Areas (Lakes, Parks, Rivers)",Outside,OTHER,,EL,1,BLU,2500.0,STOLEN,5625,"{'type': 'Point', 'coordinates': (-79.35444372, 43.67371106)}"
-5631,14,GO-20162212834,THEFT FROM MOTOR VEHICLE UNDER,2016-12-08T00:00:00,2016,December,Thursday,8,343,21,2016-12-14T00:00:00,2016,December,Wednesday,14,349,10,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,,RC,18,BLKSIL,1600.0,STOLEN,5626,"{'type': 'Point', 'coordinates': (-79.33699306, 43.66751081)}"
-5632,14154,GO-2017841797,THEFT UNDER - BICYCLE,2017-05-12T00:00:00,2017,May,Friday,12,132,17,2017-05-13T00:00:00,2017,May,Saturday,13,133,7,D55,Toronto,68,North Riverdale (68),Schools During Un-Supervised Activity,Educational,LITE SPEED,,OT,4,BLK,350.0,STOLEN,5627,"{'type': 'Point', 'coordinates': (-79.34357052, 43.67587777)}"
-5633,23,GO-20162240554,THEFT OVER,2016-12-17T00:00:00,2016,December,Saturday,17,352,4,2016-12-18T00:00:00,2016,December,Sunday,18,353,21,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CERVELO,P2,OT,21,BLUWHI,5000.0,STOLEN,5628,"{'type': 'Point', 'coordinates': (-79.3386054, 43.66392155)}"
-5634,14186,GO-20179013928,THEFT UNDER - BICYCLE,2017-09-03T00:00:00,2017,September,Sunday,3,246,0,2017-09-03T00:00:00,2017,September,Sunday,3,246,17,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,SOHO,RG,8,BLU,1425.0,STOLEN,5629,"{'type': 'Point', 'coordinates': (-79.34768608, 43.67321372)}"
-5635,14195,GO-20171672794,THEFT UNDER - BICYCLE,2017-09-14T00:00:00,2017,September,Thursday,14,257,17,2017-09-15T00:00:00,2017,September,Friday,15,258,11,D55,Toronto,68,North Riverdale (68),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,FX1,OT,21,GRN,390.0,STOLEN,5630,"{'type': 'Point', 'coordinates': (-79.35444372, 43.67371106)}"
-5636,14232,GO-20189014036,THEFT UNDER - BICYCLE,2018-05-05T00:00:00,2018,May,Saturday,5,125,14,2018-05-07T00:00:00,2018,May,Monday,7,127,11,D55,Toronto,68,North Riverdale (68),"Apartment (Rooming House, Condo)",Apartment,OT,CITATO 2,OT,21,WHI,975.0,STOLEN,5631,"{'type': 'Point', 'coordinates': (-79.34716166, 43.67195844)}"
-5637,15865,GO-20142168635,THEFT UNDER,2014-05-26T00:00:00,2014,May,Monday,26,146,20,2014-05-28T00:00:00,2014,May,Wednesday,28,148,9,D55,Toronto,68,North Riverdale (68),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FIORI,,OT,10,BLUWHI,400.0,STOLEN,5632,"{'type': 'Point', 'coordinates': (-79.35287062, 43.6661603)}"
-5638,15875,GO-20149004135,THEFT UNDER,2014-06-12T00:00:00,2014,June,Thursday,12,163,20,2014-06-16T00:00:00,2014,June,Monday,16,167,17,D55,Toronto,68,North Riverdale (68),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,RC,24,OTH,700.0,STOLEN,5633,"{'type': 'Point', 'coordinates': (-79.34480222, 43.67895162)}"
-5639,15877,GO-20149004357,THEFT UNDER,2014-06-22T00:00:00,2014,June,Sunday,22,173,18,2014-06-23T00:00:00,2014,June,Monday,23,174,13,D55,Toronto,68,North Riverdale (68),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,RG,10,BLK,720.0,STOLEN,5634,"{'type': 'Point', 'coordinates': (-79.35633014, 43.67668659)}"
-5640,15886,GO-20149004888,THEFT UNDER,2014-07-04T00:00:00,2014,July,Friday,4,185,18,2014-07-10T00:00:00,2014,July,Thursday,10,191,18,D55,Toronto,68,North Riverdale (68),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RM,,MT,9,WHI,900.0,STOLEN,5635,"{'type': 'Point', 'coordinates': (-79.34958264, 43.67801227)}"
-5641,15901,GO-20149006629,THEFT UNDER,2014-09-06T00:00:00,2014,September,Saturday,6,249,16,2014-09-06T00:00:00,2014,September,Saturday,6,249,19,D55,Toronto,68,North Riverdale (68),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,575,MT,18,TRQ,4500.0,STOLEN,5636,"{'type': 'Point', 'coordinates': (-79.35536552, 43.66548293000001)}"
-5642,15928,GO-20159001949,THEFT UNDER,2015-04-14T00:00:00,2015,April,Tuesday,14,104,21,2015-04-15T00:00:00,2015,April,Wednesday,15,105,15,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,7.5 FX,RG,4,BLK,1199.0,STOLEN,5637,"{'type': 'Point', 'coordinates': (-79.35298994, 43.6688017)}"
-5643,15929,GO-2015667434,THEFT UNDER,2015-04-22T00:00:00,2015,April,Wednesday,22,112,8,2015-04-22T00:00:00,2015,April,Wednesday,22,112,17,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,UNKNOWN,EL,1,BLU,2100.0,STOLEN,5638,"{'type': 'Point', 'coordinates': (-79.35444372, 43.67371106)}"
-5644,15935,GO-20159002575,THEFT UNDER,2015-05-10T00:00:00,2015,May,Sunday,10,130,1,2015-05-10T00:00:00,2015,May,Sunday,10,130,15,D55,Toronto,68,North Riverdale (68),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,FANTOM,RC,18,,1000.0,STOLEN,5639,"{'type': 'Point', 'coordinates': (-79.34797865, 43.66895267)}"
-5645,15950,GO-20151054497,PROPERTY - FOUND,2015-06-18T00:00:00,2015,June,Thursday,18,169,0,2015-06-23T00:00:00,2015,June,Tuesday,23,174,7,D55,Toronto,68,North Riverdale (68),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,REVENGE,MT,21,BLUYEL,,UNKNOWN,5640,"{'type': 'Point', 'coordinates': (-79.34577535000001, 43.66861216)}"
-5646,16021,GO-20169004785,THEFT UNDER,2016-05-20T00:00:00,2016,May,Friday,20,141,17,2016-05-20T00:00:00,2016,May,Friday,20,141,22,D55,Toronto,68,North Riverdale (68),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ROCKHOPPER,MT,21,BLK,1000.0,STOLEN,5642,"{'type': 'Point', 'coordinates': (-79.35444372, 43.67371106)}"
-5647,16083,GO-20209024132,THEFT UNDER,2020-09-22T00:00:00,2020,September,Tuesday,22,266,19,2020-09-23T00:00:00,2020,September,Wednesday,23,267,0,D55,Toronto,68,North Riverdale (68),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,,MT,30,BLK,1500.0,STOLEN,5643,"{'type': 'Point', 'coordinates': (-79.34839053, 43.67490078)}"
-5648,16085,GO-20201811872,B&E,2020-09-24T00:00:00,2020,September,Thursday,24,268,4,2020-09-24T00:00:00,2020,September,Thursday,24,268,10,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,SIDONA,MT,18,SIL,600.0,STOLEN,5644,"{'type': 'Point', 'coordinates': (-79.35365307, 43.67626018)}"
-5649,18748,GO-20201593115,THEFT UNDER - BICYCLE,2020-08-24T00:00:00,2020,August,Monday,24,237,3,2020-08-24T00:00:00,2020,August,Monday,24,237,10,D55,Toronto,68,North Riverdale (68),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SCHWINN,BIZZITY,MT,7,BLKRED,500.0,STOLEN,5645,"{'type': 'Point', 'coordinates': (-79.34716166, 43.67195844)}"
-5650,18769,GO-20209027094,THEFT UNDER - BICYCLE,2020-10-18T00:00:00,2020,October,Sunday,18,292,17,2020-10-20T00:00:00,2020,October,Tuesday,20,294,16,D55,Toronto,68,North Riverdale (68),"Apartment (Rooming House, Condo)",Apartment,FJ,STROLL,OT,1,WHI,500.0,STOLEN,5646,"{'type': 'Point', 'coordinates': (-79.35501957, 43.67694388)}"
-5651,18834,GO-20149003768,THEFT UNDER,2014-05-31T00:00:00,2014,May,Saturday,31,151,19,2014-06-02T00:00:00,2014,June,Monday,2,153,13,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,CROSSROADS STEP,OT,21,BLK,470.0,STOLEN,5647,"{'type': 'Point', 'coordinates': (-79.34826949, 43.6782716)}"
-5652,18845,GO-20149004941,THEFT UNDER,2014-07-12T00:00:00,2014,July,Saturday,12,193,14,2014-07-12T00:00:00,2014,July,Saturday,12,193,16,D55,Toronto,68,North Riverdale (68),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,MT,21,RED,0.0,STOLEN,5648,"{'type': 'Point', 'coordinates': (-79.34480222, 43.67895162)}"
-5653,18862,GO-20142919235,THEFT UNDER,2014-09-01T00:00:00,2014,September,Monday,1,244,19,2014-09-16T00:00:00,2014,September,Tuesday,16,259,8,D55,Toronto,68,North Riverdale (68),"Apartment (Rooming House, Condo)",Apartment,ROCKY MOUNTAIN,UNKNOWN,OT,27,BLK,500.0,STOLEN,5649,"{'type': 'Point', 'coordinates': (-79.3548915, 43.67200861)}"
-5654,18864,GO-20149007107,THEFT UNDER,2014-09-20T00:00:00,2014,September,Saturday,20,263,7,2014-09-22T00:00:00,2014,September,Monday,22,265,10,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RC,21,LBL,500.0,STOLEN,5650,"{'type': 'Point', 'coordinates': (-79.34610545, 43.66939123)}"
-5655,18873,GO-20149008225,THEFT UNDER,2014-11-15T00:00:00,2014,November,Saturday,15,319,15,2014-11-16T00:00:00,2014,November,Sunday,16,320,1,D55,Toronto,68,North Riverdale (68),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,FIRE MOUNTAIN,MT,18,BLU,250.0,STOLEN,5651,"{'type': 'Point', 'coordinates': (-79.35883201, 43.67620216)}"
-5656,18916,GO-20159004963,THEFT UNDER,2015-07-21T00:00:00,2015,July,Tuesday,21,202,0,2015-07-25T00:00:00,2015,July,Saturday,25,206,4,D55,Toronto,68,North Riverdale (68),"Open Areas (Lakes, Parks, Rivers)",Outside,CA,F8C02-CAAD,MT,27,GRY,1200.0,STOLEN,5652,"{'type': 'Point', 'coordinates': (-79.35448832, 43.67126549)}"
-5657,18958,GO-20162322,THEFT UNDER,2015-12-16T00:00:00,2015,December,Wednesday,16,350,10,2016-01-03T00:00:00,2016,January,Sunday,3,3,15,D55,Toronto,68,North Riverdale (68),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SCOTT,MOUNTAIN,MT,24,GRYWHI,800.0,STOLEN,5653,"{'type': 'Point', 'coordinates': (-79.34826949, 43.6782716)}"
-5658,19011,GO-20161299686,THEFT UNDER - BICYCLE,2016-07-24T00:00:00,2016,July,Sunday,24,206,11,2016-07-24T00:00:00,2016,July,Sunday,24,206,12,D55,Toronto,68,North Riverdale (68),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,GIANT ESCAPE 3,MT,0,,600.0,STOLEN,5654,"{'type': 'Point', 'coordinates': (-79.34480222, 43.67895162)}"
-5659,19038,GO-20161644651,THEFT UNDER - BICYCLE,2016-09-15T00:00:00,2016,September,Thursday,15,259,19,2016-09-15T00:00:00,2016,September,Thursday,15,259,22,D55,Toronto,68,North Riverdale (68),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DIADORA,TRACCIA,MT,21,BLK,400.0,STOLEN,5655,"{'type': 'Point', 'coordinates': (-79.34447854, 43.67814285)}"
-5660,19078,GO-20179005604,THEFT UNDER - BICYCLE,2017-05-01T00:00:00,2017,May,Monday,1,121,9,2017-05-02T00:00:00,2017,May,Tuesday,2,122,17,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,VFR 3,RG,24,BLK,500.0,STOLEN,5656,"{'type': 'Point', 'coordinates': (-79.34660982, 43.67691254)}"
-5661,19094,GO-20179009246,THEFT UNDER - BICYCLE,2017-07-01T00:00:00,2017,July,Saturday,1,182,14,2017-07-01T00:00:00,2017,July,Saturday,1,182,14,D55,Toronto,68,North Riverdale (68),"Apartment (Rooming House, Condo)",Apartment,NO,INDIE 2 XS,MT,18,GRY,1000.0,STOLEN,5657,"{'type': 'Point', 'coordinates': (-79.35618763, 43.67337396)}"
-5662,19121,GO-20171757733,THEFT UNDER - BICYCLE,2017-09-27T00:00:00,2017,September,Wednesday,27,270,17,2017-09-27T00:00:00,2017,September,Wednesday,27,270,22,D55,Toronto,68,North Riverdale (68),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SAFARI,,OT,6,,300.0,STOLEN,5658,"{'type': 'Point', 'coordinates': (-79.35348557, 43.66527325)}"
-5663,19123,GO-20171835721,THEFT UNDER - BICYCLE,2017-10-07T00:00:00,2017,October,Saturday,7,280,11,2017-10-10T00:00:00,2017,October,Tuesday,10,283,12,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,0,REDWHI,150.0,STOLEN,5659,"{'type': 'Point', 'coordinates': (-79.35480892, 43.6746889)}"
-5664,19138,GO-20189002337,THEFT UNDER - BICYCLE,2018-01-21T00:00:00,2018,January,Sunday,21,21,23,2018-01-24T00:00:00,2018,January,Wednesday,24,24,14,D55,Toronto,68,North Riverdale (68),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,MT,20,BLK,3500.0,STOLEN,5660,"{'type': 'Point', 'coordinates': (-79.35334358, 43.66775799)}"
-5665,25474,GO-20179012612,THEFT UNDER - BICYCLE,2017-08-16T00:00:00,2017,August,Wednesday,16,228,22,2017-08-17T00:00:00,2017,August,Thursday,17,229,11,D55,Toronto,65,Greenwood-Coxwell (65),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,BM,1,WHI,0.0,STOLEN,5661,"{'type': 'Point', 'coordinates': (-79.32648231000002, 43.68099288)}"
-5666,19139,GO-20189002337,THEFT UNDER - BICYCLE,2018-01-21T00:00:00,2018,January,Sunday,21,21,23,2018-01-24T00:00:00,2018,January,Wednesday,24,24,14,D55,Toronto,68,North Riverdale (68),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,MT,24,GRY,800.0,STOLEN,5662,"{'type': 'Point', 'coordinates': (-79.35334358, 43.66775799)}"
-5667,19140,GO-2018187063,THEFT OVER - BICYCLE,2018-01-22T00:00:00,2018,January,Monday,22,22,9,2018-01-30T00:00:00,2018,January,Tuesday,30,30,11,D55,Toronto,68,North Riverdale (68),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,AWOL COMP,TO,12,BLK,3154.0,STOLEN,5663,"{'type': 'Point', 'coordinates': (-79.34547883, 43.66788265)}"
-5668,19141,GO-2018187063,THEFT OVER - BICYCLE,2018-01-22T00:00:00,2018,January,Monday,22,22,9,2018-01-30T00:00:00,2018,January,Tuesday,30,30,11,D55,Toronto,68,North Riverdale (68),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OPUS,ACAPELLA,TO,12,BLK,1946.0,STOLEN,5664,"{'type': 'Point', 'coordinates': (-79.34547883, 43.66788265)}"
-5669,19155,GO-20189014363,THEFT UNDER - BICYCLE,2018-05-09T00:00:00,2018,May,Wednesday,9,129,14,2018-05-09T00:00:00,2018,May,Wednesday,9,129,20,D55,Toronto,68,North Riverdale (68),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,SUPERCYCLE,OT,1,DBL,0.0,STOLEN,5665,"{'type': 'Point', 'coordinates': (-79.35804422, 43.67540158)}"
-5670,19157,GO-20189014743,THEFT UNDER - BICYCLE,2018-05-11T00:00:00,2018,May,Friday,11,131,18,2018-05-13T00:00:00,2018,May,Sunday,13,133,13,D55,Toronto,68,North Riverdale (68),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,TWOSEAT BIKE TR,OT,1,RED,330.0,STOLEN,5666,"{'type': 'Point', 'coordinates': (-79.35618763, 43.67337396)}"
-5671,19158,GO-20189014917,THEFT UNDER - BICYCLE,2018-05-06T00:00:00,2018,May,Sunday,6,126,21,2018-05-14T00:00:00,2018,May,Monday,14,134,17,D55,Toronto,68,North Riverdale (68),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,CRUISER,TO,3,RED,375.0,STOLEN,5667,"{'type': 'Point', 'coordinates': (-79.35618763, 43.67337396)}"
-5672,19163,GO-20189016246,THEFT UNDER - BICYCLE,2018-05-25T00:00:00,2018,May,Friday,25,145,14,2018-05-25T00:00:00,2018,May,Friday,25,145,15,D55,Toronto,68,North Riverdale (68),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,V85,RC,22,BLK,1500.0,STOLEN,5668,"{'type': 'Point', 'coordinates': (-79.35401679, 43.67714457)}"
-5673,19175,GO-20189021211,THEFT UNDER - BICYCLE,2018-07-04T00:00:00,2018,July,Wednesday,4,185,2,2018-07-04T00:00:00,2018,July,Wednesday,4,185,22,D55,Toronto,68,North Riverdale (68),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,3900,MT,24,OTH,400.0,STOLEN,5669,"{'type': 'Point', 'coordinates': (-79.34826949, 43.6782716)}"
-5674,19185,GO-20189024589,THEFT UNDER - BICYCLE,2018-07-30T00:00:00,2018,July,Monday,30,211,19,2018-07-30T00:00:00,2018,July,Monday,30,211,20,D55,Toronto,68,North Riverdale (68),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MX50,MT,21,ONG,880.0,STOLEN,5670,"{'type': 'Point', 'coordinates': (-79.34844294, 43.67823713)}"
-5675,19217,GO-20189040308,THEFT UNDER - BICYCLE,2018-11-29T00:00:00,2018,November,Thursday,29,333,9,2018-11-30T00:00:00,2018,November,Friday,30,334,11,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,18,BLK,1500.0,STOLEN,5671,"{'type': 'Point', 'coordinates': (-79.34295391, 43.6743962)}"
-5676,19218,GO-20189040308,THEFT UNDER - BICYCLE,2018-11-29T00:00:00,2018,November,Thursday,29,333,9,2018-11-30T00:00:00,2018,November,Friday,30,334,11,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,18,BLK,1500.0,STOLEN,5672,"{'type': 'Point', 'coordinates': (-79.34295391, 43.6743962)}"
-5677,19250,GO-20199021508,THEFT UNDER,2019-07-08T00:00:00,2019,July,Monday,8,189,13,2019-07-08T00:00:00,2019,July,Monday,8,189,19,D55,Toronto,68,North Riverdale (68),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,UK,,RG,1,WHI,300.0,STOLEN,5673,"{'type': 'Point', 'coordinates': (-79.34577535000001, 43.66861216)}"
-5678,19257,GO-20199024213,THEFT UNDER,2019-07-27T00:00:00,2019,July,Saturday,27,208,9,2019-07-29T00:00:00,2019,July,Monday,29,210,11,D55,Toronto,68,North Riverdale (68),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ZYCLEFIX PRIME,RG,1,BLK,600.0,STOLEN,5674,"{'type': 'Point', 'coordinates': (-79.35258366, 43.66548622)}"
-5679,19273,GO-20199028487,THEFT UNDER,2019-08-29T00:00:00,2019,August,Thursday,29,241,6,2019-09-02T00:00:00,2019,September,Monday,2,245,10,D55,Toronto,68,North Riverdale (68),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,MT,21,BLK,600.0,STOLEN,5675,"{'type': 'Point', 'coordinates': (-79.34386775000002, 43.67663429)}"
-5680,19274,GO-20199028487,THEFT UNDER,2019-08-29T00:00:00,2019,August,Thursday,29,241,6,2019-09-02T00:00:00,2019,September,Monday,2,245,10,D55,Toronto,68,North Riverdale (68),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,MT,21,BRZ,600.0,STOLEN,5676,"{'type': 'Point', 'coordinates': (-79.34386775000002, 43.67663429)}"
-5681,19279,GO-20199028832,THEFT UNDER,2019-08-24T00:00:00,2019,August,Saturday,24,236,14,2019-09-05T00:00:00,2019,September,Thursday,5,248,18,D55,Toronto,68,North Riverdale (68),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,G,RC,12,BLK,1400.0,STOLEN,5677,"{'type': 'Point', 'coordinates': (-79.34797865, 43.66895267)}"
-5682,19285,GO-20191741883,THEFT UNDER,2019-09-05T00:00:00,2019,September,Thursday,5,248,19,2019-09-11T00:00:00,2019,September,Wednesday,11,254,9,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,LEJUNE,,RC,10,GRN,500.0,STOLEN,5678,"{'type': 'Point', 'coordinates': (-79.34558067, 43.67713169)}"
-5683,19305,GO-20191910817,THEFT UNDER,2019-10-04T00:00:00,2019,October,Friday,4,277,1,2019-10-04T00:00:00,2019,October,Friday,4,277,8,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,8,BLKYEL,200.0,STOLEN,5679,"{'type': 'Point', 'coordinates': (-79.34941789, 43.66615064)}"
-5684,19341,GO-2020539327,B&E,2020-03-15T00:00:00,2020,March,Sunday,15,75,2,2020-03-15T00:00:00,2020,March,Sunday,15,75,10,D55,Toronto,68,North Riverdale (68),"Apartment (Rooming House, Condo)",Apartment,MIELE,,RC,11,RED,400.0,STOLEN,5680,"{'type': 'Point', 'coordinates': (-79.35070987, 43.67779387)}"
-5685,19342,GO-2020589212,B&E,2020-03-05T00:00:00,2020,March,Thursday,5,65,9,2020-03-23T00:00:00,2020,March,Monday,23,83,14,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,SCENE THREE,RG,7,GRY,1000.0,STOLEN,5681,"{'type': 'Point', 'coordinates': (-79.35101055, 43.67114849)}"
-5686,19343,GO-2020589212,B&E,2020-03-05T00:00:00,2020,March,Thursday,5,65,9,2020-03-23T00:00:00,2020,March,Monday,23,83,14,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,24,SIL,3000.0,STOLEN,5682,"{'type': 'Point', 'coordinates': (-79.35101055, 43.67114849)}"
-5687,19610,GO-20141656024,B&E,2014-03-07T00:00:00,2014,March,Friday,7,66,10,2014-03-07T00:00:00,2014,March,Friday,7,66,11,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,MT,21,BLKWHI,400.0,STOLEN,5683,"{'type': 'Point', 'coordinates': (-79.34255127000002, 43.67199731)}"
-5688,19612,GO-20149003281,THEFT UNDER,2014-05-11T00:00:00,2014,May,Sunday,11,131,7,2014-05-11T00:00:00,2014,May,Sunday,11,131,14,D55,Toronto,68,North Riverdale (68),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,,MT,18,DGR,399.0,STOLEN,5684,"{'type': 'Point', 'coordinates': (-79.34480222, 43.67895162)}"
-5689,19728,GO-20159007101,THEFT UNDER,2015-09-05T00:00:00,2015,September,Saturday,5,248,17,2015-09-12T00:00:00,2015,September,Saturday,12,255,21,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RM,METRO 30,RG,27,RED,650.0,STOLEN,5685,"{'type': 'Point', 'coordinates': (-79.34850134, 43.66635646)}"
-5690,19742,GO-20159009242,THEFT UNDER,2015-10-23T00:00:00,2015,October,Friday,23,296,18,2015-11-02T00:00:00,2015,November,Monday,2,306,9,D55,Toronto,68,North Riverdale (68),"Apartment (Rooming House, Condo)",Apartment,CC,,RG,7,WHI,300.0,STOLEN,5686,"{'type': 'Point', 'coordinates': (-79.35444372, 43.67371106)}"
-5691,22176,GO-20169008323,THEFT UNDER,2016-08-06T00:00:00,2016,August,Saturday,6,219,20,2016-08-06T00:00:00,2016,August,Saturday,6,219,23,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,BLACK LABEL,OT,1,BLU,850.0,STOLEN,5687,"{'type': 'Point', 'coordinates': (-79.34366966, 43.66993701)}"
-5692,22183,GO-20169009059,THEFT UNDER - BICYCLE,2016-08-18T00:00:00,2016,August,Thursday,18,231,0,2016-08-19T00:00:00,2016,August,Friday,19,232,12,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KH,URBAN EXPRESS M,TO,12,BLK,750.0,STOLEN,5688,"{'type': 'Point', 'coordinates': (-79.35146946, 43.67426356)}"
-5693,22240,GO-20179011020,THEFT UNDER - BICYCLE,2017-07-26T00:00:00,2017,July,Wednesday,26,207,0,2017-07-26T00:00:00,2017,July,Wednesday,26,207,13,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,COMMUTER,RG,7,ONG,500.0,STOLEN,5689,"{'type': 'Point', 'coordinates': (-79.34797865, 43.66895267)}"
-5694,22325,GO-20181603978,THEFT UNDER - BICYCLE,2018-08-22T00:00:00,2018,August,Wednesday,22,234,22,2018-08-30T00:00:00,2018,August,Thursday,30,242,10,D55,Toronto,68,North Riverdale (68),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,,OT,21,GRY,900.0,STOLEN,5690,"{'type': 'Point', 'coordinates': (-79.35101055, 43.67114849)}"
-5695,22326,GO-20181603978,THEFT UNDER - BICYCLE,2018-08-22T00:00:00,2018,August,Wednesday,22,234,22,2018-08-30T00:00:00,2018,August,Thursday,30,242,10,D55,Toronto,68,North Riverdale (68),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,,MT,21,BLK,1000.0,STOLEN,5691,"{'type': 'Point', 'coordinates': (-79.35101055, 43.67114849)}"
-5696,22346,GO-20181828389,THEFT UNDER - BICYCLE,2018-09-14T00:00:00,2018,September,Friday,14,257,8,2018-10-03T00:00:00,2018,October,Wednesday,3,276,15,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,TEQUILA,OT,0,GRN,1500.0,STOLEN,5692,"{'type': 'Point', 'coordinates': (-79.347333, 43.66743881)}"
-5697,22351,GO-20189034355,THEFT UNDER - BICYCLE,2018-10-15T00:00:00,2018,October,Monday,15,288,21,2018-10-16T00:00:00,2018,October,Tuesday,16,289,22,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,RG,1,BLK,4000.0,STOLEN,5693,"{'type': 'Point', 'coordinates': (-79.34768608, 43.67321372)}"
-5698,22353,GO-20189035827,THEFT UNDER - BICYCLE,2018-10-25T00:00:00,2018,October,Thursday,25,298,4,2018-10-27T00:00:00,2018,October,Saturday,27,300,14,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ST TROPEZ,RG,24,BLK,750.0,STOLEN,5694,"{'type': 'Point', 'coordinates': (-79.35079801, 43.67260625)}"
-5699,22354,GO-20189035827,THEFT UNDER - BICYCLE,2018-10-25T00:00:00,2018,October,Thursday,25,298,4,2018-10-27T00:00:00,2018,October,Saturday,27,300,14,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,BROADVIEW,RG,7,BLK,250.0,STOLEN,5695,"{'type': 'Point', 'coordinates': (-79.35079801, 43.67260625)}"
-5700,22370,GO-2019798750,THEFT UNDER,2018-11-05T00:00:00,2018,November,Monday,5,309,20,2019-05-03T00:00:00,2019,May,Friday,3,123,10,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FELT,2010 F75,OT,20,WHI,1500.0,STOLEN,5696,"{'type': 'Point', 'coordinates': (-79.3464572, 43.67023848000001)}"
-5701,22394,GO-20191301566,THEFT UNDER - BICYCLE,2019-07-11T00:00:00,2019,July,Thursday,11,192,20,2019-07-12T00:00:00,2019,July,Friday,12,193,8,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,VITA,MT,21,,600.0,STOLEN,5697,"{'type': 'Point', 'coordinates': (-79.34610545, 43.66939123)}"
-5702,22420,GO-20199031304,THEFT UNDER,2019-09-19T00:00:00,2019,September,Thursday,19,262,5,2019-09-24T00:00:00,2019,September,Tuesday,24,267,11,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,RIVERDALE,TO,7,WHI,500.0,STOLEN,5698,"{'type': 'Point', 'coordinates': (-79.35213648, 43.67589164)}"
-5703,22433,GO-20192500995,B&E,2019-12-27T00:00:00,2019,December,Friday,27,361,12,2019-12-28T00:00:00,2019,December,Saturday,28,362,17,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,,,OT,0,GRY,,STOLEN,5699,"{'type': 'Point', 'coordinates': (-79.34432378, 43.67158965)}"
-5704,22443,GO-20209008173,THEFT UNDER,2020-03-04T00:00:00,2020,March,Wednesday,4,64,5,2020-03-08T00:00:00,2020,March,Sunday,8,68,17,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,18,BLK,700.0,STOLEN,5700,"{'type': 'Point', 'coordinates': (-79.34558067, 43.67713169)}"
-5705,22447,GO-20209009456,THEFT UNDER,2020-03-16T00:00:00,2020,March,Monday,16,76,15,2020-03-20T00:00:00,2020,March,Friday,20,80,16,D55,Toronto,68,North Riverdale (68),"Apartment (Rooming House, Condo)",Apartment,OT,LIBERTY,RG,10,CRM,500.0,STOLEN,5701,"{'type': 'Point', 'coordinates': (-79.34716166, 43.67195844)}"
-5706,22450,GO-20209010028,THEFT UNDER,2020-03-27T00:00:00,2020,March,Friday,27,87,12,2020-03-28T00:00:00,2020,March,Saturday,28,88,12,D55,Toronto,68,North Riverdale (68),"Apartment (Rooming House, Condo)",Apartment,OT,AMIRA,TO,11,LBL,1000.0,STOLEN,5702,"{'type': 'Point', 'coordinates': (-79.35480892, 43.6746889)}"
-5707,22456,GO-20209011585,THEFT UNDER,2020-04-20T00:00:00,2020,April,Monday,20,111,13,2020-04-20T00:00:00,2020,April,Monday,20,111,17,D55,Toronto,68,North Riverdale (68),"Apartment (Rooming House, Condo)",Apartment,GI,RAPID 2,RG,21,BLU,1200.0,STOLEN,5703,"{'type': 'Point', 'coordinates': (-79.35444372, 43.67371106)}"
-5708,22462,GO-20209012065,THEFT UNDER,2020-04-21T00:00:00,2020,April,Tuesday,21,112,12,2020-04-28T00:00:00,2020,April,Tuesday,28,119,12,D55,Toronto,68,North Riverdale (68),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,650B,MT,21,OTH,800.0,STOLEN,5704,"{'type': 'Point', 'coordinates': (-79.35109772, 43.67334944000001)}"
-5709,22474,GO-20209014860,THEFT UNDER,2020-06-08T00:00:00,2020,June,Monday,8,160,14,2020-06-08T00:00:00,2020,June,Monday,8,160,15,D55,Toronto,68,North Riverdale (68),"Apartment (Rooming House, Condo)",Apartment,OT,CROSSROADS SPOR,RG,6,BLU,,STOLEN,5705,"{'type': 'Point', 'coordinates': (-79.35618763, 43.67337396)}"
-5710,22565,GO-20209023816,THEFT UNDER,2020-09-19T00:00:00,2020,September,Saturday,19,263,3,2020-09-19T00:00:00,2020,September,Saturday,19,263,10,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,VERB SPORT 27.5,MT,24,BLU,1130.0,STOLEN,5706,"{'type': 'Point', 'coordinates': (-79.34626541, 43.67610646)}"
-5711,22573,GO-20209025256,THEFT UNDER,2020-10-01T00:00:00,2020,October,Thursday,1,275,23,2020-10-02T00:00:00,2020,October,Friday,2,276,13,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,8,SIL,750.0,STOLEN,5707,"{'type': 'Point', 'coordinates': (-79.35186642, 43.67523398)}"
-5712,22830,GO-20142145196,THEFT UNDER,2014-05-24T00:00:00,2014,May,Saturday,24,144,17,2014-05-24T00:00:00,2014,May,Saturday,24,144,20,D55,Toronto,68,North Riverdale (68),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,HARO,300,BM,1,GRYWHI,500.0,STOLEN,5708,"{'type': 'Point', 'coordinates': (-79.35533677, 43.67249975)}"
-5713,22858,GO-20149005500,THEFT UNDER,2014-07-30T00:00:00,2014,July,Wednesday,30,211,6,2014-07-31T00:00:00,2014,July,Thursday,31,212,11,D55,Toronto,68,North Riverdale (68),Bar / Restaurant,Commercial,OT,,RG,24,LGR,,STOLEN,5709,"{'type': 'Point', 'coordinates': (-79.34844294, 43.67823713)}"
-5714,22965,GO-2016545369,THEFT UNDER - BICYCLE,2016-03-30T00:00:00,2016,March,Wednesday,30,90,1,2016-03-31T00:00:00,2016,March,Thursday,31,91,12,D55,Toronto,68,North Riverdale (68),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,LOUIS GARDINER,ROAD,OT,15,GRYWHI,700.0,STOLEN,5710,"{'type': 'Point', 'coordinates': (-79.35444372, 43.67371106)}"
-5715,25390,GO-20169010442,THEFT UNDER,2016-09-05T00:00:00,2016,September,Monday,5,249,15,2016-09-14T00:00:00,2016,September,Wednesday,14,258,14,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,240,RG,6,WHI,400.0,STOLEN,5711,"{'type': 'Point', 'coordinates': (-79.35444372, 43.67371106)}"
-5716,25409,GO-20161974130,THEFT UNDER - BICYCLE,2016-11-03T00:00:00,2016,November,Thursday,3,308,21,2016-11-06T00:00:00,2016,November,Sunday,6,311,11,D55,Toronto,68,North Riverdale (68),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM 26 APEX 19,APEX 19,MT,32,WHIBLU,767.0,STOLEN,5712,"{'type': 'Point', 'coordinates': (-79.35287062, 43.6661603)}"
-5717,25439,GO-20179006581,THEFT UNDER,2016-09-01T00:00:00,2016,September,Thursday,1,245,15,2017-05-18T00:00:00,2017,May,Thursday,18,138,15,D55,Toronto,68,North Riverdale (68),"Apartment (Rooming House, Condo)",Apartment,OT,CROSSTRAIL,OT,21,BLU,600.0,STOLEN,5713,"{'type': 'Point', 'coordinates': (-79.35444372, 43.67371106)}"
-5718,25453,GO-20179009209,THEFT UNDER - BICYCLE,2017-06-29T00:00:00,2017,June,Thursday,29,180,19,2017-06-30T00:00:00,2017,June,Friday,30,181,13,D55,Toronto,68,North Riverdale (68),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,RG,21,BLU,500.0,STOLEN,5714,"{'type': 'Point', 'coordinates': (-79.34797865, 43.66895267)}"
-5719,25484,GO-20171622791,B&E,2017-09-07T00:00:00,2017,September,Thursday,7,250,16,2017-09-07T00:00:00,2017,September,Thursday,7,250,17,D55,Toronto,68,North Riverdale (68),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,MT,11,BLK,4200.0,STOLEN,5715,"{'type': 'Point', 'coordinates': (-79.347333, 43.66743881)}"
-5720,25499,GO-20179018819,THEFT UNDER - BICYCLE,2017-11-03T00:00:00,2017,November,Friday,3,307,1,2017-11-03T00:00:00,2017,November,Friday,3,307,19,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,TARANTULA,MT,18,PLE,75.0,STOLEN,5716,"{'type': 'Point', 'coordinates': (-79.32395096, 43.67184363)}"
-5721,25511,GO-20179020675,THEFT UNDER,2017-11-24T00:00:00,2017,November,Friday,24,328,0,2017-11-27T00:00:00,2017,November,Monday,27,331,13,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,X5,OT,5,BLK,1000.0,STOLEN,5717,"{'type': 'Point', 'coordinates': (-79.32730959, 43.66390954)}"
-5722,25526,GO-20189012367,THEFT UNDER - BICYCLE,2018-04-20T00:00:00,2018,April,Friday,20,110,5,2018-04-21T00:00:00,2018,April,Saturday,21,111,15,D55,Toronto,65,Greenwood-Coxwell (65),Universities / Colleges,Educational,GI,ESCAPE 3,RG,7,BLK,600.0,STOLEN,5718,"{'type': 'Point', 'coordinates': (-79.32128430000002, 43.67486395)}"
-5723,25629,GO-20191029217,THEFT UNDER,2019-05-31T00:00:00,2019,May,Friday,31,151,16,2019-06-04T00:00:00,2019,June,Tuesday,4,155,19,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,YOUTH,RG,1,RED,150.0,STOLEN,5719,"{'type': 'Point', 'coordinates': (-79.32866305, 43.6805326)}"
-5724,25630,GO-20191029217,THEFT UNDER,2019-05-31T00:00:00,2019,May,Friday,31,151,16,2019-06-04T00:00:00,2019,June,Tuesday,4,155,19,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,DS650,MT,5,BLUSIL,350.0,STOLEN,5720,"{'type': 'Point', 'coordinates': (-79.32866305, 43.6805326)}"
-5725,25631,GO-20191029217,THEFT UNDER,2019-05-31T00:00:00,2019,May,Friday,31,151,16,2019-06-04T00:00:00,2019,June,Tuesday,4,155,19,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,DS650,MT,5,BLUSIL,350.0,STOLEN,5721,"{'type': 'Point', 'coordinates': (-79.32866305, 43.6805326)}"
-5726,25661,GO-20191575759,THEFT OF EBIKE UNDER $5000,2019-08-18T00:00:00,2019,August,Sunday,18,230,21,2019-08-19T00:00:00,2019,August,Monday,19,231,7,D55,Toronto,65,Greenwood-Coxwell (65),"Apartment (Rooming House, Condo)",Apartment,ZZZ,,EL,0,BLU,1800.0,STOLEN,5722,"{'type': 'Point', 'coordinates': (-79.32974131, 43.682061)}"
-5727,25679,GO-20199032545,THEFT UNDER,2019-10-03T00:00:00,2019,October,Thursday,3,276,9,2019-10-04T00:00:00,2019,October,Friday,4,277,1,D55,Toronto,65,Greenwood-Coxwell (65),Ttc Subway Station,Transit,UK,,RG,21,MRN,105.0,STOLEN,5723,"{'type': 'Point', 'coordinates': (-79.32903153, 43.673471590000005)}"
-5728,25753,GO-20201390101,THEFT UNDER - BICYCLE,2020-06-06T00:00:00,2020,June,Saturday,6,158,0,2020-07-26T00:00:00,2020,July,Sunday,26,208,11,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,CYPRESS,TO,21,DGR,500.0,STOLEN,5724,"{'type': 'Point', 'coordinates': (-79.32076157, 43.67653289)}"
-5729,25754,GO-20209018957,THEFT UNDER,2020-07-30T00:00:00,2020,July,Thursday,30,212,0,2020-07-30T00:00:00,2020,July,Thursday,30,212,9,D55,Toronto,65,Greenwood-Coxwell (65),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MA,,RG,24,BLK,500.0,STOLEN,5725,"{'type': 'Point', 'coordinates': (-79.32688298, 43.67118651)}"
-5730,81,GO-20179001624,THEFT UNDER - BICYCLE,2017-02-04T00:00:00,2017,February,Saturday,4,35,14,2017-02-06T00:00:00,2017,February,Monday,6,37,14,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,3,BLU,300.0,STOLEN,5726,"{'type': 'Point', 'coordinates': (-79.35422015, 43.66358247)}"
-5731,25788,GO-20209025327,THEFT UNDER,2020-10-03T00:00:00,2020,October,Saturday,3,277,8,2020-10-03T00:00:00,2020,October,Saturday,3,277,12,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,CATALYST 3,MT,21,LGR,678.0,STOLEN,5727,"{'type': 'Point', 'coordinates': (-79.32471205, 43.67930693)}"
-5732,25790,GO-20201920069,PROPERTY - FOUND,2020-10-09T00:00:00,2020,October,Friday,9,283,17,2020-10-10T00:00:00,2020,October,Saturday,10,284,7,D55,Toronto,65,Greenwood-Coxwell (65),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,REACTION,TO,18,WHI,,RECOVERED,5728,"{'type': 'Point', 'coordinates': (-79.32230293, 43.66785798)}"
-5733,548,GO-20179007621,THEFT UNDER - BICYCLE,2017-06-05T00:00:00,2017,June,Monday,5,156,14,2017-06-06T00:00:00,2017,June,Tuesday,6,157,20,D54,Toronto,66,Danforth (66),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,SC1800,MT,18,BLU,100.0,STOLEN,5729,"{'type': 'Point', 'coordinates': (-79.32492505, 43.68659896)}"
-5734,1682,GO-20179017520,THEFT UNDER - BICYCLE,2017-08-18T00:00:00,2017,August,Friday,18,230,14,2017-10-18T00:00:00,2017,October,Wednesday,18,291,14,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ITALIAN VINTAGE,RC,21,BLU,2000.0,STOLEN,5731,"{'type': 'Point', 'coordinates': (-79.34227817, 43.68102636)}"
-5735,2106,GO-20189009514,THEFT UNDER - BICYCLE,2018-03-25T00:00:00,2018,March,Sunday,25,84,0,2018-03-26T00:00:00,2018,March,Monday,26,85,12,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,CAAD10,RC,20,BLK,1800.0,STOLEN,5732,"{'type': 'Point', 'coordinates': (-79.32118135, 43.6847409)}"
-5736,2285,GO-20189014401,THEFT UNDER - BICYCLE,2018-05-09T00:00:00,2018,May,Wednesday,9,129,17,2018-05-10T00:00:00,2018,May,Thursday,10,130,11,D54,Toronto,66,Danforth (66),Schools During Un-Supervised Activity,Educational,OT,HARPER,RG,1,GRN,175.0,STOLEN,5733,"{'type': 'Point', 'coordinates': (-79.31829679, 43.68626954)}"
-5737,2743,GO-20189021049,THEFT UNDER - BICYCLE,2018-07-02T00:00:00,2018,July,Monday,2,183,21,2018-07-03T00:00:00,2018,July,Tuesday,3,184,17,D54,Toronto,66,Danforth (66),Bar / Restaurant,Commercial,OT,,RG,7,BLK,600.0,STOLEN,5734,"{'type': 'Point', 'coordinates': (-79.31404693, 43.68540464)}"
-5738,3007,GO-20181378902,THEFT UNDER,2018-07-21T00:00:00,2018,July,Saturday,21,202,22,2018-07-28T00:00:00,2018,July,Saturday,28,209,8,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNK,UNK,MT,18,YEL,600.0,STOLEN,5735,"{'type': 'Point', 'coordinates': (-79.31556769, 43.68594991)}"
-5739,3102,GO-20181448256,ROBBERY - OTHER,2018-08-07T00:00:00,2018,August,Tuesday,7,219,11,2018-08-07T00:00:00,2018,August,Tuesday,7,219,13,D54,Toronto,66,Danforth (66),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,SIERRA 700,MT,21,SILGRN,600.0,STOLEN,5736,"{'type': 'Point', 'coordinates': (-79.32359895, 43.68336554)}"
-5740,3159,GO-20189025946,THEFT UNDER - BICYCLE,2018-08-10T00:00:00,2018,August,Friday,10,222,23,2018-08-11T00:00:00,2018,August,Saturday,11,223,11,D54,Toronto,66,Danforth (66),Ttc Subway Station,Transit,RM,ROCKY MOUNTAIN,RG,18,,500.0,STOLEN,5737,"{'type': 'Point', 'coordinates': (-79.32393433, 43.68416734)}"
-5741,3170,GO-20189026000,THEFT UNDER,2018-08-11T00:00:00,2018,August,Saturday,11,223,6,2018-08-11T00:00:00,2018,August,Saturday,11,223,18,D54,Toronto,66,Danforth (66),Ttc Subway Station,Transit,TR,FX,RG,14,BLK,520.0,STOLEN,5738,"{'type': 'Point', 'coordinates': (-79.33007622, 43.68284971)}"
-5742,3823,GO-20189037179,THEFT UNDER - BICYCLE,2018-11-06T00:00:00,2018,November,Tuesday,6,310,10,2018-11-07T00:00:00,2018,November,Wednesday,7,311,10,D54,Toronto,66,Danforth (66),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SC,VOLARE S5460 70,OT,21,WHI,100.0,STOLEN,5741,"{'type': 'Point', 'coordinates': (-79.34603385, 43.68218372)}"
-5743,4026,GO-20199003718,THEFT UNDER - BICYCLE,2019-01-26T00:00:00,2019,January,Saturday,26,26,19,2019-01-27T00:00:00,2019,January,Sunday,27,27,19,D54,Toronto,66,Danforth (66),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,BI,CITY BIKE,MT,18,GRY,400.0,STOLEN,5742,"{'type': 'Point', 'coordinates': (-79.33777875, 43.68031263)}"
-5744,4053,GO-2019292566,THEFT OF MOTOR VEHICLE,2019-02-15T00:00:00,2019,February,Friday,15,46,14,2019-02-15T00:00:00,2019,February,Friday,15,46,15,D54,Toronto,66,Danforth (66),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNK,UNK,SC,1,BLU,3400.0,STOLEN,5743,"{'type': 'Point', 'coordinates': (-79.32359895, 43.68336554)}"
-5745,4575,GO-20191159547,THEFT UNDER,2019-06-22T00:00:00,2019,June,Saturday,22,173,17,2019-06-22T00:00:00,2019,June,Saturday,22,173,19,D54,Toronto,66,Danforth (66),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CANNONDALE,,OT,21,SIL,1097.0,STOLEN,5744,"{'type': 'Point', 'coordinates': (-79.31273908, 43.68568467)}"
-5746,4660,GO-20199020855,THEFT UNDER,2019-07-03T00:00:00,2019,July,Wednesday,3,184,7,2019-07-03T00:00:00,2019,July,Wednesday,3,184,13,D54,Toronto,66,Danforth (66),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RC,30,WHI,2000.0,STOLEN,5745,"{'type': 'Point', 'coordinates': (-79.32472818000001, 43.68311648)}"
-5747,4691,GO-20199021323,THEFT UNDER,2019-07-06T00:00:00,2019,July,Saturday,6,187,23,2019-07-07T00:00:00,2019,July,Sunday,7,188,13,D54,Toronto,66,Danforth (66),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,36,GRN,500.0,STOLEN,5746,"{'type': 'Point', 'coordinates': (-79.34519793, 43.68234209)}"
-5748,4737,GO-20199021684,THEFT UNDER,2019-07-09T00:00:00,2019,July,Tuesday,9,190,0,2019-07-10T00:00:00,2019,July,Wednesday,10,191,4,D54,Toronto,66,Danforth (66),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SINGLE SPEED,RG,1,BLK,650.0,STOLEN,5747,"{'type': 'Point', 'coordinates': (-79.33267576, 43.68227617)}"
-5749,4929,GO-20191416610,THEFT UNDER - BICYCLE,2019-07-27T00:00:00,2019,July,Saturday,27,208,21,2019-07-27T00:00:00,2019,July,Saturday,27,208,23,D54,Toronto,66,Danforth (66),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RALEIGH,,MT,1,GRNBLK,500.0,STOLEN,5748,"{'type': 'Point', 'coordinates': (-79.32974131, 43.682061)}"
-5750,4948,GO-20199024563,THEFT UNDER,2019-07-31T00:00:00,2019,July,Wednesday,31,212,7,2019-07-31T00:00:00,2019,July,Wednesday,31,212,19,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,ESCAPE,RG,26,,1000.0,STOLEN,5749,"{'type': 'Point', 'coordinates': (-79.31796557, 43.68543801)}"
-5751,5001,GO-20191501142,THEFT OF MOTOR VEHICLE,2019-08-08T00:00:00,2019,August,Thursday,8,220,16,2019-08-08T00:00:00,2019,August,Thursday,8,220,19,D54,Toronto,66,Danforth (66),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,PEDEGO,,EL,0,SIL,6000.0,STOLEN,5750,"{'type': 'Point', 'coordinates': (-79.33727518, 43.68042137)}"
-5752,5010,GO-20199025555,THEFT UNDER,2019-08-08T00:00:00,2019,August,Thursday,8,220,18,2019-08-09T00:00:00,2019,August,Friday,9,221,16,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SPRINGDALE,RG,21,WHI,327.0,STOLEN,5751,"{'type': 'Point', 'coordinates': (-79.33761189, 43.68124567)}"
-5753,5149,GO-20199027502,THEFT UNDER,2019-08-24T00:00:00,2019,August,Saturday,24,236,0,2019-08-24T00:00:00,2019,August,Saturday,24,236,12,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,15,,0.0,STOLEN,5752,"{'type': 'Point', 'coordinates': (-79.32846967, 43.6858363)}"
-5754,5357,GO-20199030428,THEFT UNDER,2019-09-17T00:00:00,2019,September,Tuesday,17,260,8,2019-09-17T00:00:00,2019,September,Tuesday,17,260,19,D54,Toronto,66,Danforth (66),Schools During Un-Supervised Activity,Educational,TR,,RG,21,WHI,600.0,STOLEN,5753,"{'type': 'Point', 'coordinates': (-79.33267576, 43.68227617)}"
-5755,5557,GO-20192031711,THEFT UNDER,2019-10-15T00:00:00,2019,October,Tuesday,15,288,2,2019-10-21T00:00:00,2019,October,Monday,21,294,12,D54,Toronto,66,Danforth (66),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MARIN,MUIRWOODS,OT,18,GRY,800.0,STOLEN,5754,"{'type': 'Point', 'coordinates': (-79.34003264, 43.68169968)}"
-5756,5667,GO-20192166519,THEFT UNDER - BICYCLE,2019-10-16T00:00:00,2019,October,Wednesday,16,289,8,2019-11-09T00:00:00,2019,November,Saturday,9,313,17,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,CYPRESS,MT,21,GRY,500.0,STOLEN,5755,"{'type': 'Point', 'coordinates': (-79.34519793, 43.68234209)}"
-5757,5668,GO-20192166519,THEFT UNDER - BICYCLE,2019-10-16T00:00:00,2019,October,Wednesday,16,289,8,2019-11-09T00:00:00,2019,November,Saturday,9,313,17,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,CYPRESS,MT,21,GRY,,UNKNOWN,5756,"{'type': 'Point', 'coordinates': (-79.34519793, 43.68234209)}"
-5758,5841,GO-2020110943,THEFT OVER,2020-01-15T00:00:00,2020,January,Wednesday,15,15,5,2020-01-16T00:00:00,2020,January,Thursday,16,16,20,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SURLY,STRAGGER,TO,8,BLK,4000.0,STOLEN,5758,"{'type': 'Point', 'coordinates': (-79.32846967, 43.6858363)}"
-5759,5842,GO-2020110943,THEFT OVER,2020-01-15T00:00:00,2020,January,Wednesday,15,15,5,2020-01-16T00:00:00,2020,January,Thursday,16,16,20,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SOMA,WOLVERINE,TO,8,ONG,4000.0,STOLEN,5759,"{'type': 'Point', 'coordinates': (-79.32846967, 43.6858363)}"
-5760,5843,GO-2020110943,THEFT OVER,2020-01-15T00:00:00,2020,January,Wednesday,15,15,5,2020-01-16T00:00:00,2020,January,Thursday,16,16,20,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,TO,8,BLK,8000.0,STOLEN,5760,"{'type': 'Point', 'coordinates': (-79.32846967, 43.6858363)}"
-5761,5957,GO-20209008752,THEFT UNDER,2020-03-12T00:00:00,2020,March,Thursday,12,72,6,2020-03-12T00:00:00,2020,March,Thursday,12,72,20,D54,Toronto,66,Danforth (66),Ttc Subway Station,Transit,CC,,RG,8,BLK,446.0,STOLEN,5761,"{'type': 'Point', 'coordinates': (-79.34511536, 43.67967885)}"
-5762,6065,GO-2020721113,THEFT UNDER - BICYCLE,2020-04-08T00:00:00,2020,April,Wednesday,8,99,0,2020-04-14T00:00:00,2020,April,Tuesday,14,105,20,D54,Toronto,66,Danforth (66),"Private Property Structure (Pool, Shed, Detached Garage)",Other,ROCKY MOUNTAIN,ALTITUDE 30,MT,18,WHITE,3200.0,STOLEN,5762,"{'type': 'Point', 'coordinates': (-79.32781909, 43.68421024)}"
-5763,6495,GO-20201198494,THEFT UNDER,2020-06-23T00:00:00,2020,June,Tuesday,23,175,17,2020-06-29T00:00:00,2020,June,Monday,29,181,16,D54,Toronto,66,Danforth (66),Ttc Subway Station,Transit,EMMO,UNKNOWN,EL,1,BLK,550.0,STOLEN,5763,"{'type': 'Point', 'coordinates': (-79.34511536, 43.67967885)}"
-5764,6573,GO-20209017219,THEFT UNDER,2020-07-09T00:00:00,2020,July,Thursday,9,191,13,2020-07-10T00:00:00,2020,July,Friday,10,192,8,D54,Toronto,66,Danforth (66),Ttc Subway Station,Transit,CC,,MT,21,BLK,367.0,STOLEN,5764,"{'type': 'Point', 'coordinates': (-79.32359895, 43.68336554)}"
-5765,6602,GO-20201267849,THEFT UNDER - BICYCLE,2020-07-09T00:00:00,2020,July,Thursday,9,191,1,2020-07-09T00:00:00,2020,July,Thursday,9,191,6,D54,Toronto,66,Danforth (66),"Apartment (Rooming House, Condo)",Apartment,RALEIGH,,MT,21,BLU,700.0,STOLEN,5765,"{'type': 'Point', 'coordinates': (-79.32472818000001, 43.68311648)}"
-5766,6621,GO-20201310355,B&E,2020-07-15T00:00:00,2020,July,Wednesday,15,197,6,2020-07-15T00:00:00,2020,July,Wednesday,15,197,9,D54,Toronto,66,Danforth (66),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,,EL,0,BLKWHI,3000.0,STOLEN,5766,"{'type': 'Point', 'coordinates': (-79.33777875, 43.68031263)}"
-5767,6702,GO-20209018230,THEFT UNDER,2020-07-22T00:00:00,2020,July,Wednesday,22,204,10,2020-07-22T00:00:00,2020,July,Wednesday,22,204,14,D54,Toronto,66,Danforth (66),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,STUMPJUMPER,MT,11,BLK,2500.0,STOLEN,5767,"{'type': 'Point', 'coordinates': (-79.32359895, 43.68336554)}"
-5768,6835,GO-20209019132,THEFT UNDER,2020-08-01T00:00:00,2020,August,Saturday,1,214,0,2020-08-01T00:00:00,2020,August,Saturday,1,214,2,D54,Toronto,66,Danforth (66),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,MT,21,BLU,450.0,STOLEN,5768,"{'type': 'Point', 'coordinates': (-79.33146579, 43.68256473)}"
-5769,7041,GO-20201586377,THEFT UNDER - BICYCLE,2020-08-22T00:00:00,2020,August,Saturday,22,235,22,2020-08-23T00:00:00,2020,August,Sunday,23,236,11,D54,Toronto,66,Danforth (66),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,320,MT,10,BLU,400.0,STOLEN,5769,"{'type': 'Point', 'coordinates': (-79.32815031, 43.68501776)}"
-5770,7125,GO-20201610259,THEFT UNDER - BICYCLE,2020-08-25T00:00:00,2020,August,Tuesday,25,238,19,2020-08-26T00:00:00,2020,August,Wednesday,26,239,16,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,CROSSROADS 1.0,RG,8,BLK,,STOLEN,5770,"{'type': 'Point', 'coordinates': (-79.32492505, 43.68659896)}"
-5771,7227,GO-20209022916,THEFT UNDER,2020-09-09T00:00:00,2020,September,Wednesday,9,253,23,2020-09-11T00:00:00,2020,September,Friday,11,255,8,D54,Toronto,66,Danforth (66),"Apartment (Rooming House, Condo)",Apartment,OT,ROCKRIDER 520,MT,6,BLK,500.0,STOLEN,5771,"{'type': 'Point', 'coordinates': (-79.34227817, 43.68102636)}"
-5772,7300,GO-20209023840,THEFT UNDER,2020-09-17T00:00:00,2020,September,Thursday,17,261,2,2020-09-19T00:00:00,2020,September,Saturday,19,263,13,D54,Toronto,66,Danforth (66),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,MX 30,MT,21,BLK,678.0,STOLEN,5772,"{'type': 'Point', 'coordinates': (-79.32815031, 43.68501776)}"
-5773,7361,GO-20209024573,THEFT UNDER,2020-09-26T00:00:00,2020,September,Saturday,26,270,0,2020-09-26T00:00:00,2020,September,Saturday,26,270,0,D54,Toronto,66,Danforth (66),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,OT,1,,700.0,STOLEN,5773,"{'type': 'Point', 'coordinates': (-79.33112003, 43.68526961)}"
-5774,7362,GO-20209024573,THEFT UNDER,2020-09-26T00:00:00,2020,September,Saturday,26,270,0,2020-09-26T00:00:00,2020,September,Saturday,26,270,0,D54,Toronto,66,Danforth (66),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CC,,MT,18,DGR,300.0,STOLEN,5774,"{'type': 'Point', 'coordinates': (-79.33112003, 43.68526961)}"
-5775,7386,GO-20209024906,THEFT UNDER,2020-09-29T00:00:00,2020,September,Tuesday,29,273,9,2020-09-29T00:00:00,2020,September,Tuesday,29,273,15,D54,Toronto,66,Danforth (66),Schools During Un-Supervised Activity,Educational,GI,ESCAPE,RG,21,,1000.0,STOLEN,5775,"{'type': 'Point', 'coordinates': (-79.33267576, 43.68227617)}"
-5776,7396,GO-20209025176,THEFT UNDER,2020-09-29T00:00:00,2020,September,Tuesday,29,273,18,2020-10-01T00:00:00,2020,October,Thursday,1,275,17,D54,Toronto,66,Danforth (66),Bar / Restaurant,Commercial,UK,,TO,7,BLK,944.0,STOLEN,5776,"{'type': 'Point', 'coordinates': (-79.33777875, 43.68031263)}"
-5777,7454,GO-20209026254,THEFT UNDER,2020-10-13T00:00:00,2020,October,Tuesday,13,287,4,2020-10-13T00:00:00,2020,October,Tuesday,13,287,11,D54,Toronto,66,Danforth (66),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RA,RETROGLIDE 7,TO,7,ONG,500.0,STOLEN,5777,"{'type': 'Point', 'coordinates': (-79.31377201, 43.68810001)}"
-5778,7478,GO-20201952928,THEFT UNDER - BICYCLE,2020-09-22T00:00:00,2020,September,Tuesday,22,266,16,2020-10-14T00:00:00,2020,October,Wednesday,14,288,12,D54,Toronto,66,Danforth (66),Go Station,Transit,SUPERCYCLE,,MT,12,BLU,50.0,STOLEN,5778,"{'type': 'Point', 'coordinates': (-79.32393433, 43.68416734)}"
-5779,7510,GO-20209026974,THEFT UNDER,2020-10-19T00:00:00,2020,October,Monday,19,293,19,2020-10-20T00:00:00,2020,October,Tuesday,20,294,9,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,MT,10,DBL,0.0,STOLEN,5779,"{'type': 'Point', 'coordinates': (-79.34519793, 43.68234209)}"
-5780,7593,GO-20209028645,THEFT UNDER,2020-11-04T00:00:00,2020,November,Wednesday,4,309,16,2020-11-04T00:00:00,2020,November,Wednesday,4,309,17,D54,Toronto,66,Danforth (66),Convenience Stores,Commercial,CA,,MT,21,BLU,600.0,STOLEN,5780,"{'type': 'Point', 'coordinates': (-79.32085134, 43.68394391)}"
-5781,8995,GO-20143009344,THEFT UNDER,2014-09-26T00:00:00,2014,September,Friday,26,269,16,2014-09-29T00:00:00,2014,September,Monday,29,272,16,D54,Toronto,66,Danforth (66),Schools During Un-Supervised Activity,Educational,OTHER,"RANT-20""""",BM,1,GRY,300.0,STOLEN,5781,"{'type': 'Point', 'coordinates': (-79.33795893, 43.6821025)}"
-5782,9061,GO-20143101375,THEFT FROM MOTOR VEHICLE OVER,2014-10-13T00:00:00,2014,October,Monday,13,286,17,2014-10-14T00:00:00,2014,October,Tuesday,14,287,11,D54,Toronto,66,Danforth (66),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,FLUID,MT,27,SIL,6500.0,STOLEN,5782,"{'type': 'Point', 'coordinates': (-79.34519793, 43.68234209)}"
-5783,9062,GO-20143101375,THEFT FROM MOTOR VEHICLE OVER,2014-10-13T00:00:00,2014,October,Monday,13,286,17,2014-10-14T00:00:00,2014,October,Tuesday,14,287,11,D54,Toronto,66,Danforth (66),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KHS,A-LITE,MT,27,GRY,1500.0,STOLEN,5783,"{'type': 'Point', 'coordinates': (-79.34519793, 43.68234209)}"
-5784,9413,GO-2015628587,THEFT UNDER,2015-04-16T00:00:00,2015,April,Thursday,16,106,11,2015-04-16T00:00:00,2015,April,Thursday,16,106,12,D54,Toronto,66,Danforth (66),Schools During Supervised Activity,Educational,OTHER,DEKA,BM,1,BLU,289.0,STOLEN,5784,"{'type': 'Point', 'coordinates': (-79.33267576, 43.68227617)}"
-5785,9646,GO-20159003044,THEFT UNDER,2015-05-23T00:00:00,2015,May,Saturday,23,143,14,2015-05-23T00:00:00,2015,May,Saturday,23,143,15,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,262 LG/20 RED,RG,21,RED,550.0,STOLEN,5785,"{'type': 'Point', 'coordinates': (-79.34031094, 43.68250961)}"
-5786,9745,GO-2015949406,THEFT UNDER,2015-06-06T00:00:00,2015,June,Saturday,6,157,17,2015-06-06T00:00:00,2015,June,Saturday,6,157,17,D54,Toronto,66,Danforth (66),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,FORTRESS,SC,2,BLK,3000.0,STOLEN,5786,"{'type': 'Point', 'coordinates': (-79.34603385, 43.68218372)}"
-5787,9782,GO-20159003530,THEFT UNDER,2015-05-11T00:00:00,2015,May,Monday,11,131,7,2015-06-11T00:00:00,2015,June,Thursday,11,162,22,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,OT,18,GRY,,STOLEN,5787,"{'type': 'Point', 'coordinates': (-79.31861091, 43.68706404)}"
-5788,10885,GO-20159011173,THEFT UNDER,2015-12-20T00:00:00,2015,December,Sunday,20,354,17,2015-12-21T00:00:00,2015,December,Monday,21,355,15,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,,RG,10,BLK,1199.0,STOLEN,5788,"{'type': 'Point', 'coordinates': (-79.34118024, 43.68145255)}"
-5789,10965,GO-2016196509,THEFT UNDER,2016-02-02T00:00:00,2016,February,Tuesday,2,33,9,2016-02-02T00:00:00,2016,February,Tuesday,2,33,14,D54,Toronto,66,Danforth (66),Other Regional Transit System Vehicle,Transit,NORCO,,OT,1,GRY,550.0,STOLEN,5789,"{'type': 'Point', 'coordinates': (-79.32393433, 43.68416734)}"
-5790,11309,GO-2016763522,THEFT UNDER - BICYCLE,2016-05-04T00:00:00,2016,May,Wednesday,4,125,12,2016-05-04T00:00:00,2016,May,Wednesday,4,125,12,D54,Toronto,66,Danforth (66),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,HYBRID,MT,36,GRY,,STOLEN,5790,"{'type': 'Point', 'coordinates': (-79.32359895, 43.68336554)}"
-5791,11367,GO-20169004905,THEFT UNDER,2016-05-16T00:00:00,2016,May,Monday,16,137,19,2016-05-24T00:00:00,2016,May,Tuesday,24,145,17,D54,Toronto,66,Danforth (66),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,,RG,7,,0.0,STOLEN,5791,"{'type': 'Point', 'coordinates': (-79.32472818000001, 43.68311648)}"
-5792,11436,GO-2016953785,B&E,2016-06-02T00:00:00,2016,June,Thursday,2,154,6,2016-06-02T00:00:00,2016,June,Thursday,2,154,9,D54,Toronto,66,Danforth (66),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,EVO 27.5,EL,40,RED,3999.0,STOLEN,5792,"{'type': 'Point', 'coordinates': (-79.32822849, 43.68235875)}"
-5793,11603,GO-20161078286,THEFT UNDER - BICYCLE,2016-06-17T00:00:00,2016,June,Friday,17,169,17,2016-06-20T00:00:00,2016,June,Monday,20,172,18,D54,Toronto,66,Danforth (66),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,DAMAX EAGLE,EL,0,BLK,2600.0,STOLEN,5793,"{'type': 'Point', 'coordinates': (-79.34511536, 43.67967885)}"
-5794,11751,GO-20161206950,B&E W'INTENT,2016-07-07T00:00:00,2016,July,Thursday,7,189,17,2016-07-10T00:00:00,2016,July,Sunday,10,192,11,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNANDALE,,RC,1,RED,2500.0,STOLEN,5794,"{'type': 'Point', 'coordinates': (-79.31588523, 43.68677245)}"
-5795,11752,GO-20161206950,B&E W'INTENT,2016-07-07T00:00:00,2016,July,Thursday,7,189,17,2016-07-10T00:00:00,2016,July,Sunday,10,192,11,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,PINERELO,,RC,1,SIL,2500.0,STOLEN,5795,"{'type': 'Point', 'coordinates': (-79.31588523, 43.68677245)}"
-5796,11753,GO-20161206950,B&E W'INTENT,2016-07-07T00:00:00,2016,July,Thursday,7,189,17,2016-07-10T00:00:00,2016,July,Sunday,10,192,11,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNANDALE,,RC,1,BLK,2500.0,STOLEN,5796,"{'type': 'Point', 'coordinates': (-79.31588523, 43.68677245)}"
-5797,11761,GO-20161206950,B&E W'INTENT,2016-07-07T00:00:00,2016,July,Thursday,7,189,17,2016-07-10T00:00:00,2016,July,Sunday,10,192,11,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,SYNAPSE,RC,21,RED,,STOLEN,5797,"{'type': 'Point', 'coordinates': (-79.31588523, 43.68677245)}"
-5798,11762,GO-20161206950,B&E W'INTENT,2016-07-07T00:00:00,2016,July,Thursday,7,189,17,2016-07-10T00:00:00,2016,July,Sunday,10,192,11,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,SYNAPSE,RC,21,,,STOLEN,5798,"{'type': 'Point', 'coordinates': (-79.31588523, 43.68677245)}"
-5799,11763,GO-20161206950,B&E W'INTENT,2016-07-07T00:00:00,2016,July,Thursday,7,189,17,2016-07-10T00:00:00,2016,July,Sunday,10,192,11,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RC,21,SIL,,STOLEN,5799,"{'type': 'Point', 'coordinates': (-79.31588523, 43.68677245)}"
-5800,11933,GO-20161325593,PROPERTY - FOUND,2016-07-28T00:00:00,2016,July,Thursday,28,210,12,2016-07-28T00:00:00,2016,July,Thursday,28,210,12,D54,Toronto,66,Danforth (66),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,EL,1,BLU,,UNKNOWN,5800,"{'type': 'Point', 'coordinates': (-79.33234245, 43.6814835)}"
-5801,11976,GO-20169008111,THEFT UNDER,2016-08-02T00:00:00,2016,August,Tuesday,2,215,8,2016-08-02T00:00:00,2016,August,Tuesday,2,215,19,D54,Toronto,66,Danforth (66),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,RG,21,SIL,650.0,STOLEN,5801,"{'type': 'Point', 'coordinates': (-79.33727518, 43.68042137)}"
-5802,12005,GO-20169008242,THEFT UNDER - BICYCLE,2016-08-04T00:00:00,2016,August,Thursday,4,217,7,2016-08-04T00:00:00,2016,August,Thursday,4,217,19,D54,Toronto,66,Danforth (66),Ttc Subway Station,Transit,OT,CROSSROADS STEP,RG,21,BLU,650.0,STOLEN,5802,"{'type': 'Point', 'coordinates': (-79.33007622, 43.68284971)}"
-5803,12100,GO-20169008785,THEFT UNDER - BICYCLE,2016-08-15T00:00:00,2016,August,Monday,15,228,1,2016-08-15T00:00:00,2016,August,Monday,15,228,12,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MA,HAWK HILL,MT,21,BLU,150.0,STOLEN,5803,"{'type': 'Point', 'coordinates': (-79.34062678, 43.68334692)}"
-5804,12206,GO-20169009542,THEFT UNDER,2016-08-27T00:00:00,2016,August,Saturday,27,240,18,2016-08-27T00:00:00,2016,August,Saturday,27,240,20,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,,MT,10,BLK,350.0,STOLEN,5804,"{'type': 'Point', 'coordinates': (-79.34056846, 43.67979025)}"
-5805,12347,GO-20169010464,THEFT UNDER,2016-09-14T00:00:00,2016,September,Wednesday,14,258,16,2016-09-14T00:00:00,2016,September,Wednesday,14,258,21,D54,Toronto,66,Danforth (66),Ttc Subway Station,Transit,RM,2015,RG,27,RED,1100.0,STOLEN,5805,"{'type': 'Point', 'coordinates': (-79.33761189, 43.68124567)}"
-5806,297,GO-20179005431,THEFT UNDER,2017-04-28T00:00:00,2017,April,Friday,28,118,20,2017-04-28T00:00:00,2017,April,Friday,28,118,22,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,OT,ALLEZ,RC,12,WHI,15000.0,STOLEN,6078,"{'type': 'Point', 'coordinates': (-79.36267396, 43.65942878)}"
-5807,12436,GO-20161700074,THEFT UNDER,2016-09-10T00:00:00,2016,September,Saturday,10,254,12,2016-09-24T00:00:00,2016,September,Saturday,24,268,12,D54,Toronto,66,Danforth (66),"Religious Facilities (Synagogue, Church, Convent, Mosque)",Other,FORTRESS,,SC,1,BLU,4000.0,STOLEN,5806,"{'type': 'Point', 'coordinates': (-79.34480222, 43.67895162)}"
-5808,12869,GO-20181378902,THEFT UNDER,2018-07-21T00:00:00,2018,July,Saturday,21,202,22,2018-07-28T00:00:00,2018,July,Saturday,28,209,8,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,GIANT TOR2 2002,RC,18,YEL,2500.0,STOLEN,5807,"{'type': 'Point', 'coordinates': (-79.31556769, 43.68594991)}"
-5809,12874,GO-20189025744,THEFT UNDER - BICYCLE,2018-08-08T00:00:00,2018,August,Wednesday,8,220,8,2018-08-09T00:00:00,2018,August,Thursday,9,221,19,D54,Toronto,66,Danforth (66),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,GTX 2 HYBRID,RG,18,,550.0,STOLEN,5808,"{'type': 'Point', 'coordinates': (-79.32713047, 43.68258777)}"
-5810,12889,GO-20181686974,THEFT UNDER - BICYCLE,2018-09-11T00:00:00,2018,September,Tuesday,11,254,22,2018-09-12T00:00:00,2018,September,Wednesday,12,255,8,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,QUICK CX,OT,0,SIL,967.0,STOLEN,5809,"{'type': 'Point', 'coordinates': (-79.33970903, 43.68085481)}"
-5811,12896,GO-20189032140,THEFT UNDER,2018-09-18T00:00:00,2018,September,Tuesday,18,261,16,2018-09-27T00:00:00,2018,September,Thursday,27,270,16,D54,Toronto,66,Danforth (66),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,CAMEO LG/470,TO,7,PLE,600.0,STOLEN,5810,"{'type': 'Point', 'coordinates': (-79.34480222, 43.67895162)}"
-5812,12914,GO-20182248974,THEFT OF EBIKE UNDER $5000,2018-11-06T00:00:00,2018,November,Tuesday,6,310,22,2018-12-07T00:00:00,2018,December,Friday,7,341,16,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,,EL,1,GRY,1200.0,STOLEN,5811,"{'type': 'Point', 'coordinates': (-79.33371853, 43.68471309)}"
-5813,12915,GO-20182248974,THEFT OF EBIKE UNDER $5000,2018-11-06T00:00:00,2018,November,Tuesday,6,310,22,2018-12-07T00:00:00,2018,December,Friday,7,341,16,D54,Toronto,66,Danforth (66),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,,EL,1,WHI,1200.0,STOLEN,5812,"{'type': 'Point', 'coordinates': (-79.33371853, 43.68471309)}"
-5814,12931,GO-2019981909,THEFT UNDER,2019-05-13T00:00:00,2019,May,Monday,13,133,4,2019-05-29T00:00:00,2019,May,Wednesday,29,149,8,D54,Toronto,66,Danforth (66),Ttc Subway Station,Transit,SCHWINN,,OT,1,PNK,,STOLEN,5813,"{'type': 'Point', 'coordinates': (-79.34511536, 43.67967885)}"
-5815,170,GO-2017528217,THEFT OF EBIKE UNDER $5000,2017-03-25T00:00:00,2017,March,Saturday,25,84,2,2017-03-25T00:00:00,2017,March,Saturday,25,84,11,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,OTHER,JETTI,EL,1,MRN,,STOLEN,5814,"{'type': 'Point', 'coordinates': (-79.32688386, 43.6658937)}"
-5816,233,GO-2017669966,THEFT OVER - BICYCLE,2017-04-15T00:00:00,2017,April,Saturday,15,105,1,2017-04-16T00:00:00,2017,April,Sunday,16,106,17,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EASY RIDER,EMOTION,EL,0,BLK,6500.0,STOLEN,5815,"{'type': 'Point', 'coordinates': (-79.35156682, 43.66305698)}"
-5817,234,GO-20179004785,THEFT UNDER - BICYCLE,2017-04-16T00:00:00,2017,April,Sunday,16,106,20,2017-04-16T00:00:00,2017,April,Sunday,16,106,22,D55,Toronto,70,South Riverdale (70),Bar / Restaurant,Commercial,OT,SE DRAFT LITE,RG,1,LGR,900.0,STOLEN,5816,"{'type': 'Point', 'coordinates': (-79.34246583, 43.66052892)}"
-5818,241,GO-20179004844,THEFT UNDER - BICYCLE,2017-04-17T00:00:00,2017,April,Monday,17,107,20,2017-04-18T00:00:00,2017,April,Tuesday,18,108,0,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE,RG,24,BLK,500.0,STOLEN,5817,"{'type': 'Point', 'coordinates': (-79.32826088, 43.65898454)}"
-5819,338,GO-20179005866,THEFT UNDER - BICYCLE,2017-05-07T00:00:00,2017,May,Sunday,7,127,7,2017-05-07T00:00:00,2017,May,Sunday,7,127,22,D55,Toronto,70,South Riverdale (70),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,CC,,MT,18,BLK,270.0,STOLEN,5818,"{'type': 'Point', 'coordinates': (-79.35227255, 43.66006097)}"
-5820,347,GO-20179005970,THEFT UNDER,2017-05-09T00:00:00,2017,May,Tuesday,9,129,1,2017-05-09T00:00:00,2017,May,Tuesday,9,129,13,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,KH,,RG,1,,200.0,STOLEN,5819,"{'type': 'Point', 'coordinates': (-79.33222359000001, 43.66280519)}"
-5821,359,GO-20179006072,THEFT UNDER - BICYCLE,2017-05-09T00:00:00,2017,May,Tuesday,9,129,16,2017-05-10T00:00:00,2017,May,Wednesday,10,130,15,D55,Toronto,70,South Riverdale (70),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,RM,EDGE,MT,21,BLK,650.0,STOLEN,5820,"{'type': 'Point', 'coordinates': (-79.34543043, 43.659862360000005)}"
-5822,448,GO-2017908049,THEFT UNDER,2017-05-16T00:00:00,2017,May,Tuesday,16,136,15,2017-05-23T00:00:00,2017,May,Tuesday,23,143,14,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,OT,10,,600.0,STOLEN,5821,"{'type': 'Point', 'coordinates': (-79.33025169000001, 43.6608917)}"
-5823,449,GO-2017908049,THEFT UNDER,2017-05-16T00:00:00,2017,May,Tuesday,16,136,15,2017-05-23T00:00:00,2017,May,Tuesday,23,143,14,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,CHARGE-GRATER,OT,8,OTH,840.0,STOLEN,5822,"{'type': 'Point', 'coordinates': (-79.33025169000001, 43.6608917)}"
-5824,503,GO-2017954942,B&E W'INTENT,2017-02-20T00:00:00,2017,February,Monday,20,51,12,2017-05-30T00:00:00,2017,May,Tuesday,30,150,12,D55,Toronto,70,South Riverdale (70),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,KONA,HONKY TONK,RC,10,DGR,1200.0,STOLEN,5823,"{'type': 'Point', 'coordinates': (-79.35219877, 43.65833207)}"
-5825,584,GO-20179007896,THEFT UNDER,2017-06-07T00:00:00,2017,June,Wednesday,7,158,15,2017-06-11T00:00:00,2017,June,Sunday,11,162,16,D55,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,OT,8,BLK,500.0,STOLEN,5824,"{'type': 'Point', 'coordinates': (-79.34670356, 43.65958053)}"
-5826,596,GO-20171017612,THEFT UNDER - BICYCLE,2017-05-19T00:00:00,2017,May,Friday,19,139,12,2017-06-08T00:00:00,2017,June,Thursday,8,159,13,D55,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OPUS,,RG,1,WHIBLU,,STOLEN,5825,"{'type': 'Point', 'coordinates': (-79.34246583, 43.66052892)}"
-5827,676,GO-20179008578,THEFT UNDER - BICYCLE,2017-06-20T00:00:00,2017,June,Tuesday,20,171,22,2017-06-21T00:00:00,2017,June,Wednesday,21,172,10,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,701 16L SILV,OT,18,SIL,500.0,STOLEN,5826,"{'type': 'Point', 'coordinates': (-79.3324716, 43.67199146)}"
-5828,730,GO-20171139586,THEFT UNDER,2017-06-25T00:00:00,2017,June,Sunday,25,176,15,2017-06-26T00:00:00,2017,June,Monday,26,177,8,D55,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OPUS,,OT,0,BLK,120.0,STOLEN,5827,"{'type': 'Point', 'coordinates': (-79.34030508, 43.66516613)}"
-5829,765,GO-20179009330,THEFT UNDER - BICYCLE,2017-07-02T00:00:00,2017,July,Sunday,2,183,20,2017-07-03T00:00:00,2017,July,Monday,3,184,15,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,DUAL SPORT,RG,24,BLK,799.0,STOLEN,5828,"{'type': 'Point', 'coordinates': (-79.33627589000001, 43.66191093)}"
-5830,1525,GO-20179015768,THEFT UNDER - BICYCLE,2017-09-25T00:00:00,2017,September,Monday,25,268,10,2017-09-25T00:00:00,2017,September,Monday,25,268,20,D55,Toronto,70,South Riverdale (70),Convenience Stores,Commercial,UK,MIXED TAPE,RG,7,GRY,700.0,STOLEN,5853,"{'type': 'Point', 'coordinates': (-79.33754387, 43.6687961)}"
-5831,789,GO-20179009515,THEFT UNDER - BICYCLE,2017-03-22T00:00:00,2017,March,Wednesday,22,81,22,2017-07-05T00:00:00,2017,July,Wednesday,5,186,17,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,2014 SEEK 1,OT,8,BLU,875.0,STOLEN,5829,"{'type': 'Point', 'coordinates': (-79.3395286, 43.66616869)}"
-5832,804,GO-20171223626,THEFT UNDER - SHOPLIFTING,2017-07-08T00:00:00,2017,July,Saturday,8,189,16,2017-07-08T00:00:00,2017,July,Saturday,8,189,16,D55,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,OT,0,,30.0,STOLEN,5830,"{'type': 'Point', 'coordinates': (-79.33754387, 43.6687961)}"
-5833,805,GO-20179009697,THEFT UNDER,2017-07-08T00:00:00,2017,July,Saturday,8,189,10,2017-07-08T00:00:00,2017,July,Saturday,8,189,12,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,UK,NOT THE FULL BI,MT,1,,0.0,STOLEN,5831,"{'type': 'Point', 'coordinates': (-79.34217159, 43.66194084)}"
-5834,843,GO-20179010042,THEFT UNDER - BICYCLE,2017-07-02T00:00:00,2017,July,Sunday,2,183,19,2017-07-12T00:00:00,2017,July,Wednesday,12,193,16,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,TR,137.2 FX20BLK,RG,18,BLK,942.0,STOLEN,5832,"{'type': 'Point', 'coordinates': (-79.33627589000001, 43.66191093)}"
-5835,902,GO-20179010494,THEFT UNDER,2017-07-16T00:00:00,2017,July,Sunday,16,197,19,2017-07-18T00:00:00,2017,July,Tuesday,18,199,15,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,1,BLK,300.0,STOLEN,5833,"{'type': 'Point', 'coordinates': (-79.35270855, 43.66134085)}"
-5836,907,GO-20179010519,THEFT UNDER - BICYCLE,2017-07-18T00:00:00,2017,July,Tuesday,18,199,9,2017-07-18T00:00:00,2017,July,Tuesday,18,199,20,D55,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,INDIA,OT,1,BLK,500.0,STOLEN,5834,"{'type': 'Point', 'coordinates': (-79.34163478, 43.66500656)}"
-5837,911,GO-20179010533,THEFT UNDER - BICYCLE,2017-07-18T00:00:00,2017,July,Tuesday,18,199,2,2017-07-18T00:00:00,2017,July,Tuesday,18,199,20,D55,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,CANNONDALE TRA,MT,30,BLK,1249.0,STOLEN,5835,"{'type': 'Point', 'coordinates': (-79.34845931, 43.65919131)}"
-5838,926,GO-20179010533,THEFT UNDER - BICYCLE,2017-07-18T00:00:00,2017,July,Tuesday,18,199,2,2017-07-18T00:00:00,2017,July,Tuesday,18,199,20,D55,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,,MT,30,BLK,1249.0,STOLEN,5836,"{'type': 'Point', 'coordinates': (-79.34845931, 43.65919131)}"
-5839,928,GO-20179010665,THEFT UNDER - BICYCLE,2017-07-18T00:00:00,2017,July,Tuesday,18,199,0,2017-07-19T00:00:00,2017,July,Wednesday,19,200,12,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,,MT,6,,280.0,STOLEN,5837,"{'type': 'Point', 'coordinates': (-79.34587523, 43.66365254)}"
-5840,944,GO-20179010771,THEFT UNDER - BICYCLE,2017-07-19T00:00:00,2017,July,Wednesday,19,200,21,2017-07-21T00:00:00,2017,July,Friday,21,202,21,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,OT,1,BLK,50.0,STOLEN,5838,"{'type': 'Point', 'coordinates': (-79.33314576, 43.65966573)}"
-5841,1060,GO-20179011768,THEFT UNDER - BICYCLE,2017-08-05T00:00:00,2017,August,Saturday,5,217,15,2017-08-05T00:00:00,2017,August,Saturday,5,217,21,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RA,,RC,10,WHI,1000.0,STOLEN,5839,"{'type': 'Point', 'coordinates': (-79.34156719, 43.66484383)}"
-5842,1062,GO-20179011801,THEFT UNDER - BICYCLE,2017-08-02T00:00:00,2017,August,Wednesday,2,214,17,2017-08-06T00:00:00,2017,August,Sunday,6,218,14,D55,Toronto,70,South Riverdale (70),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,TR,,TO,21,GRY,800.0,STOLEN,5840,"{'type': 'Point', 'coordinates': (-79.33005159, 43.66891377000001)}"
-5843,1065,GO-20179011822,THEFT UNDER - BICYCLE,2017-07-17T00:00:00,2017,July,Monday,17,198,2,2017-08-07T00:00:00,2017,August,Monday,7,219,8,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,FOREST FIXIE,RG,1,DGR,475.0,STOLEN,5841,"{'type': 'Point', 'coordinates': (-79.34246583, 43.66052892)}"
-5844,1067,GO-20179011846,THEFT UNDER - BICYCLE,2017-08-05T00:00:00,2017,August,Saturday,5,217,15,2017-08-07T00:00:00,2017,August,Monday,7,219,13,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RA,GRAND PRIX,RC,10,WHI,1000.0,STOLEN,5842,"{'type': 'Point', 'coordinates': (-79.34156719, 43.66484383)}"
-5845,1074,GO-20179011903,THEFT UNDER,2017-08-03T00:00:00,2017,August,Thursday,3,215,9,2017-08-08T00:00:00,2017,August,Tuesday,8,220,11,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,CAMELEON 2,MT,18,BLK,650.0,STOLEN,5843,"{'type': 'Point', 'coordinates': (-79.34430354, 43.65722444)}"
-5846,1075,GO-20179011903,THEFT UNDER,2017-08-03T00:00:00,2017,August,Thursday,3,215,9,2017-08-08T00:00:00,2017,August,Tuesday,8,220,11,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KO,JAKE,RG,9,BLK,1500.0,STOLEN,5844,"{'type': 'Point', 'coordinates': (-79.34430354, 43.65722444)}"
-5847,1105,GO-20171447198,THEFT OF EBIKE UNDER $5000,2017-08-11T00:00:00,2017,August,Friday,11,223,13,2017-08-11T00:00:00,2017,August,Friday,11,223,13,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,STROMER,ST1,EL,7,WHI,1500.0,STOLEN,5845,"{'type': 'Point', 'coordinates': (-79.33754387, 43.6687961)}"
-5848,1115,GO-20179012133,THEFT UNDER - BICYCLE,2017-08-10T00:00:00,2017,August,Thursday,10,222,2,2017-08-10T00:00:00,2017,August,Thursday,10,222,18,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,ESCAPE,RG,21,,700.0,STOLEN,5846,"{'type': 'Point', 'coordinates': (-79.34030508, 43.66516613)}"
-5849,1229,GO-20179013124,THEFT UNDER - BICYCLE,2017-08-23T00:00:00,2017,August,Wednesday,23,235,12,2017-08-23T00:00:00,2017,August,Wednesday,23,235,12,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,CADENT I8,RG,6,BLK,2000.0,STOLEN,5847,"{'type': 'Point', 'coordinates': (-79.33754387, 43.6687961)}"
-5850,1264,GO-20171564533,THEFT UNDER - BICYCLE,2017-08-16T00:00:00,2017,August,Wednesday,16,228,17,2017-08-29T00:00:00,2017,August,Tuesday,29,241,15,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,BMX,BM,1,BLK,100.0,STOLEN,5848,"{'type': 'Point', 'coordinates': (-79.33222359000001, 43.66280519)}"
-5851,1265,GO-20171564533,THEFT UNDER - BICYCLE,2017-08-16T00:00:00,2017,August,Wednesday,16,228,17,2017-08-29T00:00:00,2017,August,Tuesday,29,241,15,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,MOUNTAIN,MT,1,BLU,250.0,STOLEN,5849,"{'type': 'Point', 'coordinates': (-79.33222359000001, 43.66280519)}"
-5852,1306,GO-20171607775,THEFT UNDER - BICYCLE,2017-09-05T00:00:00,2017,September,Tuesday,5,248,12,2017-09-05T00:00:00,2017,September,Tuesday,5,248,14,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,OT,0,,,STOLEN,5850,"{'type': 'Point', 'coordinates': (-79.34981191, 43.65887805)}"
-5853,1328,GO-20171620007,THEFT UNDER - BICYCLE,2017-09-05T00:00:00,2017,September,Tuesday,5,248,2,2017-09-07T00:00:00,2017,September,Thursday,7,250,10,D51,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,HARO,,OT,8,SIL,500.0,STOLEN,5851,"{'type': 'Point', 'coordinates': (-79.34662225, 43.63906207)}"
-5854,1431,GO-20179014975,THEFT UNDER - BICYCLE,2017-09-16T00:00:00,2017,September,Saturday,16,259,15,2017-09-16T00:00:00,2017,September,Saturday,16,259,19,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,6,WHI,500.0,STOLEN,5852,"{'type': 'Point', 'coordinates': (-79.33413241, 43.665859450000006)}"
-5855,1528,GO-20171724328,THEFT UNDER - BICYCLE,2017-09-22T00:00:00,2017,September,Friday,22,265,21,2017-09-22T00:00:00,2017,September,Friday,22,265,22,D55,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TREK,,RG,21,BLU,500.0,STOLEN,5854,"{'type': 'Point', 'coordinates': (-79.3400521, 43.66106114)}"
-5856,1562,GO-20179016169,THEFT UNDER - BICYCLE,2017-09-28T00:00:00,2017,September,Thursday,28,271,23,2017-09-30T00:00:00,2017,September,Saturday,30,273,0,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ALEX RIMS,RG,1,,150.0,STOLEN,5855,"{'type': 'Point', 'coordinates': (-79.33284988, 43.66647178)}"
-5857,1590,GO-20171804571,THEFT UNDER - BICYCLE,2017-10-04T00:00:00,2017,October,Wednesday,4,277,23,2017-10-05T00:00:00,2017,October,Thursday,5,278,8,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,UNKNOWN,MT,6,GRYONG,100.0,STOLEN,5856,"{'type': 'Point', 'coordinates': (-79.33546976000001, 43.66652748)}"
-5858,1598,GO-20179016595,THEFT UNDER - BICYCLE,2017-10-04T00:00:00,2017,October,Wednesday,4,277,20,2017-10-06T00:00:00,2017,October,Friday,6,279,13,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,QUICK 7 8SP ACE,OT,24,YEL,700.0,STOLEN,5857,"{'type': 'Point', 'coordinates': (-79.34295935, 43.66175828)}"
-5859,1681,GO-20179017513,THEFT UNDER,2017-10-18T00:00:00,2017,October,Wednesday,18,291,13,2017-10-18T00:00:00,2017,October,Wednesday,18,291,13,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MA,,MT,21,SIL,200.0,STOLEN,5858,"{'type': 'Point', 'coordinates': (-79.34678883, 43.6658141)}"
-5860,1692,GO-20179017585,THEFT UNDER - BICYCLE,2017-10-12T00:00:00,2017,October,Thursday,12,285,1,2017-10-19T00:00:00,2017,October,Thursday,19,292,8,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RC,10,,1899.0,STOLEN,5859,"{'type': 'Point', 'coordinates': (-79.34030508, 43.66516613)}"
-5861,1700,GO-20179017656,THEFT UNDER - BICYCLE,2017-10-19T00:00:00,2017,October,Thursday,19,292,17,2017-10-19T00:00:00,2017,October,Thursday,19,292,22,D51,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,X-NIGHT,RC,20,BLK,4000.0,STOLEN,5860,"{'type': 'Point', 'coordinates': (-79.35369524, 43.6468818)}"
-5862,1714,GO-20171898943,THEFT UNDER - BICYCLE,2017-10-19T00:00:00,2017,October,Thursday,19,292,19,2017-10-20T00:00:00,2017,October,Friday,20,293,9,D55,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NORCO,10-XFR3,OT,18,GRY,600.0,STOLEN,5861,"{'type': 'Point', 'coordinates': (-79.33754387, 43.6687961)}"
-5863,1731,GO-20179018035,THEFT UNDER - BICYCLE,2017-10-09T00:00:00,2017,October,Monday,9,282,12,2017-10-24T00:00:00,2017,October,Tuesday,24,297,12,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,AMSTERDAM,TO,21,BLK,1800.0,STOLEN,5862,"{'type': 'Point', 'coordinates': (-79.3433243, 43.65743316)}"
-5864,1753,GO-20179018305,THEFT UNDER - BICYCLE,2017-10-27T00:00:00,2017,October,Friday,27,300,9,2017-10-27T00:00:00,2017,October,Friday,27,300,9,D55,Toronto,70,South Riverdale (70),Schools During Supervised Activity,Educational,SC,,OT,12,BLU,1500.0,STOLEN,5863,"{'type': 'Point', 'coordinates': (-79.33556888, 43.66925054)}"
-5865,1764,GO-20179018455,THEFT UNDER,2017-10-29T00:00:00,2017,October,Sunday,29,302,4,2017-10-29T00:00:00,2017,October,Sunday,29,302,14,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,FITNESS BIKE,MT,30,WHI,2544.0,STOLEN,5864,"{'type': 'Point', 'coordinates': (-79.34543043, 43.659862360000005)}"
-5866,1773,GO-20179018606,THEFT UNDER - BICYCLE,2017-10-31T00:00:00,2017,October,Tuesday,31,304,1,2017-10-31T00:00:00,2017,October,Tuesday,31,304,13,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FJ,SPORTIF 2.5,RC,7,,859.0,STOLEN,5865,"{'type': 'Point', 'coordinates': (-79.33741384, 43.66581015)}"
-5867,1792,GO-20179018880,THEFT UNDER - BICYCLE,2017-10-22T00:00:00,2017,October,Sunday,22,295,5,2017-11-04T00:00:00,2017,November,Saturday,4,308,13,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,AVALANCHE SPORT,MT,27,YEL,700.0,STOLEN,5866,"{'type': 'Point', 'coordinates': (-79.3353053, 43.67182905)}"
-5868,1802,GO-20179018979,THEFT UNDER - BICYCLE,2017-11-05T00:00:00,2017,November,Sunday,5,309,3,2017-11-06T00:00:00,2017,November,Monday,6,310,10,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,YORKVILLE,RG,21,LGR,600.0,STOLEN,5867,"{'type': 'Point', 'coordinates': (-79.34030508, 43.66516613)}"
-5869,1814,GO-20179019153,B&E,2017-11-03T00:00:00,2017,November,Friday,3,307,10,2017-11-08T00:00:00,2017,November,Wednesday,8,312,11,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,NO,THRESHOLD A 105,OT,11,ONG,1799.0,STOLEN,5868,"{'type': 'Point', 'coordinates': (-79.34030508, 43.66516613)}"
-5870,1816,GO-20172027772,B&E,2017-10-29T00:00:00,2017,October,Sunday,29,302,6,2017-11-09T00:00:00,2017,November,Thursday,9,313,8,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,DEVINCI,,RG,21,GRY,600.0,STOLEN,5869,"{'type': 'Point', 'coordinates': (-79.34055684, 43.66228154)}"
-5871,1852,GO-20179019746,THEFT UNDER - BICYCLE,2017-11-15T00:00:00,2017,November,Wednesday,15,319,13,2017-11-15T00:00:00,2017,November,Wednesday,15,319,20,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,B17,OT,9,BLK,178.0,STOLEN,5870,"{'type': 'Point', 'coordinates': (-79.34246583, 43.66052892)}"
-5872,1943,GO-20173225835,THEFT UNDER,2017-12-19T00:00:00,2017,December,Tuesday,19,353,6,2017-12-19T00:00:00,2017,December,Tuesday,19,353,10,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,OTHER,MOTORINO,EL,1,GRN,1650.0,STOLEN,5871,"{'type': 'Point', 'coordinates': (-79.34030508, 43.66516613)}"
-5873,1965,GO-20189000354,THEFT UNDER - BICYCLE,2018-01-03T00:00:00,2018,January,Wednesday,3,3,9,2018-01-05T00:00:00,2018,January,Friday,5,5,12,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,10,GRN,0.0,STOLEN,5872,"{'type': 'Point', 'coordinates': (-79.34907396, 43.66531756)}"
-5874,2008,GO-20189002875,THEFT UNDER - BICYCLE,2018-01-29T00:00:00,2018,January,Monday,29,29,13,2018-01-29T00:00:00,2018,January,Monday,29,29,14,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,RM,,MT,21,BLK,1500.0,STOLEN,5873,"{'type': 'Point', 'coordinates': (-79.3532346, 43.6616993)}"
-5875,2019,GO-2018226916,B&E,2018-02-05T00:00:00,2018,February,Monday,5,36,5,2018-02-05T00:00:00,2018,February,Monday,5,36,15,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,CANNONDALE,,RC,18,BLURED,3500.0,STOLEN,5874,"{'type': 'Point', 'coordinates': (-79.35088962, 43.65863192)}"
-5876,2031,GO-2018271175,THEFT OF EBIKE UNDER $5000,2018-02-05T00:00:00,2018,February,Monday,5,36,23,2018-02-12T00:00:00,2018,February,Monday,12,43,12,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,E-BREEZE,EL,0,BLKSIL,2000.0,STOLEN,5875,"{'type': 'Point', 'coordinates': (-79.35047888, 43.66047387)}"
-5877,2041,GO-20189005654,THEFT UNDER,2016-11-30T00:00:00,2016,November,Wednesday,30,335,22,2018-02-22T00:00:00,2018,February,Thursday,22,53,14,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RM,METROPOLIS,RG,7,,100.0,STOLEN,5876,"{'type': 'Point', 'coordinates': (-79.34030508, 43.66516613)}"
-5878,2158,GO-20189011668,THEFT UNDER - BICYCLE,2018-04-13T00:00:00,2018,April,Friday,13,103,17,2018-04-14T00:00:00,2018,April,Saturday,14,104,23,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,FIXED GEAR,OT,1,BLK,325.0,STOLEN,5877,"{'type': 'Point', 'coordinates': (-79.33284988, 43.66647178)}"
-5879,2161,GO-20189011735,THEFT UNDER - SHOPLIFTING,2018-04-14T00:00:00,2018,April,Saturday,14,104,18,2018-04-15T00:00:00,2018,April,Sunday,15,105,17,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,MT,21,BLK,500.0,STOLEN,5878,"{'type': 'Point', 'coordinates': (-79.33529466, 43.66211655)}"
-5880,2193,GO-20189012657,THEFT UNDER,2018-03-29T00:00:00,2018,March,Thursday,29,88,21,2018-04-24T00:00:00,2018,April,Tuesday,24,114,17,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,PE,,RC,12,PLE,500.0,STOLEN,5879,"{'type': 'Point', 'coordinates': (-79.35088962, 43.65863192)}"
-5881,2201,GO-20189012801,THEFT UNDER - BICYCLE,2017-11-01T00:00:00,2017,November,Wednesday,1,305,13,2018-04-25T00:00:00,2018,April,Wednesday,25,115,13,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,UK,,OT,1,BLK,650.0,STOLEN,5880,"{'type': 'Point', 'coordinates': (-79.34030508, 43.66516613)}"
-5882,2202,GO-2018729134,THEFT OF EBIKE UNDER $5000,2018-04-21T00:00:00,2018,April,Saturday,21,111,2,2018-04-23T00:00:00,2018,April,Monday,23,113,22,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MOTORINO,,EL,0,GRN,1700.0,STOLEN,5881,"{'type': 'Point', 'coordinates': (-79.34030508, 43.66516613)}"
-5883,2282,GO-2018822394,THEFT OF EBIKE UNDER $5000,2018-05-05T00:00:00,2018,May,Saturday,5,125,15,2018-05-07T00:00:00,2018,May,Monday,7,127,13,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,X20LI,EL,0,BLK,1700.0,STOLEN,5882,"{'type': 'Point', 'coordinates': (-79.35132068, 43.66246707)}"
-5884,2284,GO-2018843625,DRUG - TRAF CANNABIS (SCHD II),2018-05-05T00:00:00,2018,May,Saturday,5,125,15,2018-05-10T00:00:00,2018,May,Thursday,10,130,13,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,EMMO,,EL,5,BLK,1700.0,STOLEN,5883,"{'type': 'Point', 'coordinates': (-79.35132068, 43.66246707)}"
-5885,2294,GO-20189014672,THEFT UNDER,2018-05-12T00:00:00,2018,May,Saturday,12,132,12,2018-05-12T00:00:00,2018,May,Saturday,12,132,17,D55,Toronto,70,South Riverdale (70),Bar / Restaurant,Commercial,OT,1887 CLASSIC FI,RG,1,BLK,316.0,STOLEN,5884,"{'type': 'Point', 'coordinates': (-79.35219877, 43.65833207)}"
-5886,2311,GO-20189014967,THEFT UNDER - BICYCLE,2018-05-13T00:00:00,2018,May,Sunday,13,133,15,2018-05-14T00:00:00,2018,May,Monday,14,134,20,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,CAFFE,RG,21,ONG,1000.0,STOLEN,5885,"{'type': 'Point', 'coordinates': (-79.34055684, 43.66228154)}"
-5887,2401,GO-20189016394,THEFT UNDER,2018-05-24T00:00:00,2018,May,Thursday,24,144,20,2018-05-27T00:00:00,2018,May,Sunday,27,147,12,D55,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,VANTARA,TO,21,BLK,800.0,STOLEN,5886,"{'type': 'Point', 'coordinates': (-79.32826088, 43.65898454)}"
-5888,2408,GO-20189016473,THEFT UNDER - BICYCLE,2018-05-25T00:00:00,2018,May,Friday,25,145,17,2018-05-28T00:00:00,2018,May,Monday,28,148,9,D55,Toronto,70,South Riverdale (70),Schools During Un-Supervised Activity,Educational,RM,SOUL 730,MT,27,BLU,1269.0,STOLEN,5887,"{'type': 'Point', 'coordinates': (-79.33556888, 43.66925054)}"
-5889,2413,GO-20189016394,THEFT UNDER,2018-05-24T00:00:00,2018,May,Thursday,24,144,20,2018-05-27T00:00:00,2018,May,Sunday,27,147,12,D55,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,VANTARA,TO,28,BLK,800.0,STOLEN,5888,"{'type': 'Point', 'coordinates': (-79.32826088, 43.65898454)}"
-5890,790,GO-20179009543,THEFT UNDER - BICYCLE,2017-07-03T00:00:00,2017,July,Monday,3,184,17,2017-07-05T00:00:00,2017,July,Wednesday,5,186,20,D55,Toronto,68,North Riverdale (68),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,HYBRID 700 ZOOM,RG,14,BLK,0.0,STOLEN,5889,"{'type': 'Point', 'coordinates': (-79.34305235, 43.66844643)}"
-5891,2428,GO-20189016864,THEFT UNDER - BICYCLE,2018-05-28T00:00:00,2018,May,Monday,28,148,18,2018-05-30T00:00:00,2018,May,Wednesday,30,150,18,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,TRANSEO 2.0,MT,27,BLK,1150.0,STOLEN,5890,"{'type': 'Point', 'coordinates': (-79.34082559, 43.66644055)}"
-5892,2512,GO-20189017977,THEFT UNDER - BICYCLE,2018-06-08T00:00:00,2018,June,Friday,8,159,20,2018-06-09T00:00:00,2018,June,Saturday,9,160,9,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,U4 TRANSPORTER,RG,3,BLK,700.0,STOLEN,5891,"{'type': 'Point', 'coordinates': (-79.34135774, 43.6578776)}"
-5893,2513,GO-20189017977,THEFT UNDER - BICYCLE,2018-06-08T00:00:00,2018,June,Friday,8,159,20,2018-06-09T00:00:00,2018,June,Saturday,9,160,9,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ESPRIT,RG,3,,900.0,STOLEN,5892,"{'type': 'Point', 'coordinates': (-79.34135774, 43.6578776)}"
-5894,2535,GO-20189018380,THEFT UNDER - BICYCLE,2018-06-12T00:00:00,2018,June,Tuesday,12,163,16,2018-06-12T00:00:00,2018,June,Tuesday,12,163,16,D55,Toronto,70,South Riverdale (70),Schools During Supervised Activity,Educational,OT,5,RG,7,GRY,500.0,STOLEN,5893,"{'type': 'Point', 'coordinates': (-79.35047888, 43.66047387)}"
-5895,2537,GO-20189018359,THEFT UNDER - BICYCLE,2018-06-11T00:00:00,2018,June,Monday,11,162,22,2018-06-12T00:00:00,2018,June,Tuesday,12,163,11,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,MISCEO,OT,21,BLK,300.0,STOLEN,5894,"{'type': 'Point', 'coordinates': (-79.34030508, 43.66516613)}"
-5896,2622,GO-20189019406,THEFT UNDER,2018-06-19T00:00:00,2018,June,Tuesday,19,170,12,2018-06-19T00:00:00,2018,June,Tuesday,19,170,21,D55,Toronto,70,South Riverdale (70),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,,RG,3,YEL,1200.0,STOLEN,5895,"{'type': 'Point', 'coordinates': (-79.30469992, 43.66622023)}"
-5897,2637,GO-20189019589,THEFT UNDER - BICYCLE,2018-06-11T00:00:00,2018,June,Monday,11,162,7,2018-06-21T00:00:00,2018,June,Thursday,21,172,9,D55,Toronto,70,South Riverdale (70),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,UNO,RC,1,TAN,1500.0,STOLEN,5896,"{'type': 'Point', 'coordinates': (-79.3433243, 43.65743316)}"
-5898,2668,GO-20189020049,THEFT UNDER - BICYCLE,2018-06-24T00:00:00,2018,June,Sunday,24,175,10,2018-06-24T00:00:00,2018,June,Sunday,24,175,15,D55,Toronto,70,South Riverdale (70),"Open Areas (Lakes, Parks, Rivers)",Outside,DB,,MT,15,ONG,0.0,STOLEN,5897,"{'type': 'Point', 'coordinates': (-79.34543043, 43.659862360000005)}"
-5899,2670,GO-20189020070,THEFT UNDER - BICYCLE,2018-06-24T00:00:00,2018,June,Sunday,24,175,9,2018-06-24T00:00:00,2018,June,Sunday,24,175,19,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,RESPONSE,MT,21,BLU,499.0,STOLEN,5898,"{'type': 'Point', 'coordinates': (-79.34543043, 43.659862360000005)}"
-5900,2674,GO-20189020112,FTC PROBATION ORDER,2018-06-20T00:00:00,2018,June,Wednesday,20,171,8,2018-06-25T00:00:00,2018,June,Monday,25,176,11,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,BOWERY,RC,1,RED,650.0,STOLEN,5899,"{'type': 'Point', 'coordinates': (-79.34030508, 43.66516613)}"
-5901,1048,GO-20171398545,THEFT UNDER - BICYCLE,2017-07-26T00:00:00,2017,July,Wednesday,26,207,19,2017-08-04T00:00:00,2017,August,Friday,4,216,10,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,,MT,10,WHI,400.0,STOLEN,5900,"{'type': 'Point', 'coordinates': (-79.34398277, 43.67076068000001)}"
-5902,1405,GO-20179014743,THEFT UNDER - BICYCLE,2017-09-13T00:00:00,2017,September,Wednesday,13,256,15,2017-09-14T00:00:00,2017,September,Thursday,14,257,20,D55,Toronto,68,North Riverdale (68),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,1200 VOLARE,RG,27,DBL,550.0,STOLEN,5901,"{'type': 'Point', 'coordinates': (-79.35070987, 43.67779387)}"
-5903,1466,GO-20171710472,THEFT OVER - BICYCLE,2017-09-20T00:00:00,2017,September,Wednesday,20,263,18,2017-09-20T00:00:00,2017,September,Wednesday,20,263,21,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,BULLIT,OT,18,WHI,5900.0,STOLEN,5902,"{'type': 'Point', 'coordinates': (-79.3464572, 43.67023848000001)}"
-5904,1481,GO-20179015368,THEFT UNDER - BICYCLE,2017-09-20T00:00:00,2017,September,Wednesday,20,263,15,2017-09-21T00:00:00,2017,September,Thursday,21,264,14,D55,Toronto,68,North Riverdale (68),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MO,ZERO-G SX,MT,21,BLU,0.0,STOLEN,5903,"{'type': 'Point', 'coordinates': (-79.35501957, 43.67694388)}"
-5905,1607,GO-20179016673,THEFT UNDER - BICYCLE,2017-10-06T00:00:00,2017,October,Friday,6,279,16,2017-10-07T00:00:00,2017,October,Saturday,7,280,13,D55,Toronto,68,North Riverdale (68),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,,OT,27,BLK,1200.0,STOLEN,5904,"{'type': 'Point', 'coordinates': (-79.35618763, 43.67337396)}"
-5906,1709,GO-20179017796,THEFT UNDER - BICYCLE,2017-10-20T00:00:00,2017,October,Friday,20,293,17,2017-10-21T00:00:00,2017,October,Saturday,21,294,10,D55,Toronto,68,North Riverdale (68),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,NO,THRESHOLD,OT,21,BLK,1200.0,STOLEN,5905,"{'type': 'Point', 'coordinates': (-79.35258366, 43.66548622)}"
-5907,1713,GO-20179017810,THEFT UNDER - BICYCLE,2017-10-20T00:00:00,2017,October,Friday,20,293,6,2017-10-21T00:00:00,2017,October,Saturday,21,294,15,D55,Toronto,68,North Riverdale (68),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,HARD ROCK,MT,21,GRN,600.0,STOLEN,5906,"{'type': 'Point', 'coordinates': (-79.34607621, 43.67870142)}"
-5908,1738,GO-20179018169,THEFT UNDER - BICYCLE,2017-10-14T00:00:00,2017,October,Saturday,14,287,8,2017-10-25T00:00:00,2017,October,Wednesday,25,298,22,D55,Toronto,68,North Riverdale (68),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,CYCLEPATH,RG,18,BLK,500.0,STOLEN,5907,"{'type': 'Point', 'coordinates': (-79.34305235, 43.66844643)}"
-5909,1761,GO-20179018420,THEFT UNDER - BICYCLE,2017-10-28T00:00:00,2017,October,Saturday,28,301,8,2017-10-28T00:00:00,2017,October,Saturday,28,301,21,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,21,CRM,200.0,STOLEN,5908,"{'type': 'Point', 'coordinates': (-79.34366966, 43.66993701)}"
-5910,1946,GO-20179022596,THEFT UNDER - BICYCLE,2017-12-18T00:00:00,2017,December,Monday,18,352,19,2017-12-19T00:00:00,2017,December,Tuesday,19,353,14,D55,Toronto,68,North Riverdale (68),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,RG,24,BLK,0.0,STOLEN,5909,"{'type': 'Point', 'coordinates': (-79.35316558, 43.67305507)}"
-5911,2277,GO-2018838818,B&E,2018-05-09T00:00:00,2018,May,Wednesday,9,129,14,2018-05-09T00:00:00,2018,May,Wednesday,9,129,18,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,RG,12,DGR,30.0,STOLEN,5910,"{'type': 'Point', 'coordinates': (-79.34295391, 43.6743962)}"
-5912,2278,GO-2018838818,B&E,2018-05-09T00:00:00,2018,May,Wednesday,9,129,14,2018-05-09T00:00:00,2018,May,Wednesday,9,129,18,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ZYCLE,FIXIE,OT,0,BLK,450.0,STOLEN,5911,"{'type': 'Point', 'coordinates': (-79.34295391, 43.6743962)}"
-5913,2658,GO-20189019873,THEFT UNDER,2018-06-13T00:00:00,2018,June,Wednesday,13,164,17,2018-06-22T00:00:00,2018,June,Friday,22,173,21,D55,Toronto,68,North Riverdale (68),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SC,2-SEAT BIKE TRA,OT,1,BLU,100.0,STOLEN,5912,"{'type': 'Point', 'coordinates': (-79.35618763, 43.67337396)}"
-5914,2972,GO-20189024003,THEFT UNDER - BICYCLE,2018-07-25T00:00:00,2018,July,Wednesday,25,206,12,2018-07-26T00:00:00,2018,July,Thursday,26,207,12,D55,Toronto,68,North Riverdale (68),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,HARDROCK,MT,12,BLK,600.0,STOLEN,5913,"{'type': 'Point', 'coordinates': (-79.34607621, 43.67870142)}"
-5915,2985,GO-20189024003,THEFT UNDER - BICYCLE,2018-07-25T00:00:00,2018,July,Wednesday,25,206,12,2018-07-26T00:00:00,2018,July,Thursday,26,207,12,D55,Toronto,68,North Riverdale (68),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,HARDROCK,MT,21,BLK,600.0,STOLEN,5914,"{'type': 'Point', 'coordinates': (-79.34607621, 43.67870142)}"
-5916,3000,GO-20189024237,THEFT UNDER - BICYCLE,2018-07-26T00:00:00,2018,July,Thursday,26,207,23,2018-07-27T00:00:00,2018,July,Friday,27,208,17,D55,Toronto,68,North Riverdale (68),"Apartment (Rooming House, Condo)",Apartment,CA,QUICK,RG,18,PLE,1200.0,STOLEN,5915,"{'type': 'Point', 'coordinates': (-79.35314005, 43.6668051)}"
-5917,3023,GO-20189024463,THEFT UNDER - BICYCLE,2018-07-29T00:00:00,2018,July,Sunday,29,210,23,2018-07-30T00:00:00,2018,July,Monday,30,211,9,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,WAD 2.0,RC,21,WHI,1200.0,STOLEN,5916,"{'type': 'Point', 'coordinates': (-79.35101055, 43.67114849)}"
-5918,3060,GO-20189024953,THEFT UNDER - BICYCLE,2018-08-02T00:00:00,2018,August,Thursday,2,214,21,2018-08-03T00:00:00,2018,August,Friday,3,215,7,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,,RG,7,BGE,40.0,STOLEN,5917,"{'type': 'Point', 'coordinates': (-79.35186642, 43.67523398)}"
-5919,3467,GO-20181709317,THEFT UNDER - BICYCLE,2018-09-15T00:00:00,2018,September,Saturday,15,258,3,2018-09-15T00:00:00,2018,September,Saturday,15,258,9,D55,Toronto,68,North Riverdale (68),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SONDORS,,EL,1,BLK,1250.0,STOLEN,5918,"{'type': 'Point', 'coordinates': (-79.34610545, 43.66939123)}"
-5920,3478,GO-20189030545,THEFT UNDER - BICYCLE,2018-09-15T00:00:00,2018,September,Saturday,15,258,0,2018-09-15T00:00:00,2018,September,Saturday,15,258,10,D55,Toronto,68,North Riverdale (68),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,VERZA,OT,10,BLK,1200.0,STOLEN,5919,"{'type': 'Point', 'coordinates': (-79.34123045, 43.6702892)}"
-5921,3491,GO-20181700976,THEFT FROM MOTOR VEHICLE UNDER,2018-09-13T00:00:00,2018,September,Thursday,13,256,0,2018-09-13T00:00:00,2018,September,Thursday,13,256,23,D55,Toronto,68,North Riverdale (68),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OPUS,,MT,19,BLK,600.0,STOLEN,5920,"{'type': 'Point', 'coordinates': (-79.35101055, 43.67114849)}"
-5922,3647,GO-20189033393,THEFT UNDER - BICYCLE,2018-09-24T00:00:00,2018,September,Monday,24,267,22,2018-10-09T00:00:00,2018,October,Tuesday,9,282,18,D55,Toronto,68,North Riverdale (68),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,18,BLK,350.0,STOLEN,5921,"{'type': 'Point', 'coordinates': (-79.34607621, 43.67870142)}"
-5923,3788,GO-20189036238,THEFT UNDER - BICYCLE,2018-10-30T00:00:00,2018,October,Tuesday,30,303,1,2018-10-30T00:00:00,2018,October,Tuesday,30,303,15,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MO,,BM,1,LGR,500.0,STOLEN,5922,"{'type': 'Point', 'coordinates': (-79.34768608, 43.67321372)}"
-5924,3837,GO-20189037686,THEFT UNDER,2018-11-08T00:00:00,2018,November,Thursday,8,312,2,2018-11-10T00:00:00,2018,November,Saturday,10,314,15,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,7 SPEED,MT,7,GRY,1500.0,STOLEN,5923,"{'type': 'Point', 'coordinates': (-79.35101055, 43.67114849)}"
-5925,3838,GO-20189037686,THEFT UNDER,2018-11-08T00:00:00,2018,November,Thursday,8,312,2,2018-11-10T00:00:00,2018,November,Saturday,10,314,15,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,FX WSD,TO,9,PLE,1400.0,STOLEN,5924,"{'type': 'Point', 'coordinates': (-79.35101055, 43.67114849)}"
-5926,3839,GO-20189037686,THEFT UNDER,2018-11-08T00:00:00,2018,November,Thursday,8,312,2,2018-11-10T00:00:00,2018,November,Saturday,10,314,15,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,SINGLE SPEED,OT,1,WHI,1500.0,STOLEN,5925,"{'type': 'Point', 'coordinates': (-79.35101055, 43.67114849)}"
-5927,3865,GO-20182120292,THEFT UNDER,2018-11-09T00:00:00,2018,November,Friday,9,313,6,2018-11-17T00:00:00,2018,November,Saturday,17,321,18,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ROCKY MOUNTAIN,,MT,0,,350.0,STOLEN,5926,"{'type': 'Point', 'coordinates': (-79.34769007, 43.67640991)}"
-5928,3917,GO-20189040672,THEFT UNDER - BICYCLE,2018-12-03T00:00:00,2018,December,Monday,3,337,17,2018-12-03T00:00:00,2018,December,Monday,3,337,18,D55,Toronto,68,North Riverdale (68),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MO,HILLTOPPER,MT,21,MRN,0.0,STOLEN,5927,"{'type': 'Point', 'coordinates': (-79.35314005, 43.6668051)}"
-5929,3980,GO-20199000475,THEFT UNDER - BICYCLE,2019-01-03T00:00:00,2019,January,Thursday,3,3,2,2019-01-05T00:00:00,2019,January,Saturday,5,5,0,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BI,,RG,14,BLK,150.0,STOLEN,5928,"{'type': 'Point', 'coordinates': (-79.34681909, 43.67112945)}"
-5930,3986,GO-20199000690,THEFT UNDER - BICYCLE,2018-12-07T00:00:00,2018,December,Friday,7,341,9,2019-01-07T00:00:00,2019,January,Monday,7,7,10,D55,Toronto,68,North Riverdale (68),"Apartment (Rooming House, Condo)",Apartment,GI,,OT,21,BLK,700.0,STOLEN,5929,"{'type': 'Point', 'coordinates': (-79.35618763, 43.67337396)}"
-5931,4175,GO-20199012187,THEFT UNDER,2019-04-16T00:00:00,2019,April,Tuesday,16,106,18,2019-04-17T00:00:00,2019,April,Wednesday,17,107,11,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,,MT,15,GRN,750.0,STOLEN,5930,"{'type': 'Point', 'coordinates': (-79.35316558, 43.67305507)}"
-5932,4307,GO-20199015721,THEFT UNDER,2019-05-14T00:00:00,2019,May,Tuesday,14,134,8,2019-05-21T00:00:00,2019,May,Tuesday,21,141,8,D55,Toronto,68,North Riverdale (68),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,UK,BRODIE,RG,21,GRN,1200.0,STOLEN,5931,"{'type': 'Point', 'coordinates': (-79.34716166, 43.67195844)}"
-5933,4379,GO-20199016880,THEFT UNDER,2019-05-29T00:00:00,2019,May,Wednesday,29,149,19,2019-05-30T00:00:00,2019,May,Thursday,30,150,12,D55,Toronto,68,North Riverdale (68),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,CA,LEFTY F29,MT,30,GRN,2400.0,STOLEN,5932,"{'type': 'Point', 'coordinates': (-79.35536552, 43.66548293000001)}"
-5934,4434,GO-20199017892,THEFT UNDER,2019-06-07T00:00:00,2019,June,Friday,7,158,23,2019-06-08T00:00:00,2019,June,Saturday,8,159,21,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,10,DBL,0.0,STOLEN,5933,"{'type': 'Point', 'coordinates': (-79.35365307, 43.67626018)}"
-5935,4458,GO-20199018230,THEFT UNDER,2019-05-31T00:00:00,2019,May,Friday,31,151,11,2019-06-11T00:00:00,2019,June,Tuesday,11,162,18,D55,Toronto,68,North Riverdale (68),"Apartment (Rooming House, Condo)",Apartment,CA,2018 QUICK CARB,RG,9,BLK,2000.0,STOLEN,5934,"{'type': 'Point', 'coordinates': (-79.35618763, 43.67337396)}"
-5936,4662,GO-20199020859,THEFT UNDER,2019-07-03T00:00:00,2019,July,Wednesday,3,184,13,2019-07-03T00:00:00,2019,July,Wednesday,3,184,13,D55,Toronto,68,North Riverdale (68),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,STORM 2017,MT,21,RED,540.0,STOLEN,5935,"{'type': 'Point', 'coordinates': (-79.34763958000002, 43.6681871)}"
-5937,4663,GO-20199020859,THEFT UNDER,2019-07-03T00:00:00,2019,July,Wednesday,3,184,13,2019-07-03T00:00:00,2019,July,Wednesday,3,184,13,D55,Toronto,68,North Riverdale (68),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,UNKNOWN - 1991,MT,18,RED,150.0,STOLEN,5936,"{'type': 'Point', 'coordinates': (-79.34763958000002, 43.6681871)}"
-5938,5012,GO-20199025564,THEFT UNDER,2019-08-09T00:00:00,2019,August,Friday,9,221,17,2019-08-09T00:00:00,2019,August,Friday,9,221,17,D55,Toronto,68,North Riverdale (68),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,,RG,16,RED,1200.0,STOLEN,5937,"{'type': 'Point', 'coordinates': (-79.35536552, 43.66548293000001)}"
-5939,5041,GO-20199025853,THEFT UNDER,2019-08-11T00:00:00,2019,August,Sunday,11,223,23,2019-08-12T00:00:00,2019,August,Monday,12,224,12,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,RAPID 2,RG,12,OTH,1200.0,STOLEN,5938,"{'type': 'Point', 'coordinates': (-79.347333, 43.66743881)}"
-5940,5077,GO-20199026284,THEFT UNDER,2019-08-14T00:00:00,2019,August,Wednesday,14,226,22,2019-08-15T00:00:00,2019,August,Thursday,15,227,9,D55,Toronto,68,North Riverdale (68),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,SIRRUS,RG,24,BLK,999.0,STOLEN,5939,"{'type': 'Point', 'coordinates': (-79.35633014, 43.67668659)}"
-5941,5177,GO-20199027873,THEFT UNDER,2019-08-26T00:00:00,2019,August,Monday,26,238,23,2019-08-27T00:00:00,2019,August,Tuesday,27,239,11,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,PADDY WAGON,RC,1,BLK,1000.0,STOLEN,5940,"{'type': 'Point', 'coordinates': (-79.34681909, 43.67112945)}"
-5942,5208,GO-20191678472,THEFT UNDER,2019-08-29T00:00:00,2019,August,Thursday,29,241,6,2019-09-02T00:00:00,2019,September,Monday,2,245,14,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,MT,24,GLD,600.0,STOLEN,5941,"{'type': 'Point', 'coordinates': (-79.34386775000002, 43.67663429)}"
-5943,5209,GO-20191678472,THEFT UNDER,2019-08-29T00:00:00,2019,August,Thursday,29,241,6,2019-09-02T00:00:00,2019,September,Monday,2,245,14,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,MT,24,BLK,600.0,STOLEN,5942,"{'type': 'Point', 'coordinates': (-79.34386775000002, 43.67663429)}"
-5944,5272,GO-20199029212,THEFT UNDER,2019-09-07T00:00:00,2019,September,Saturday,7,250,17,2019-09-08T00:00:00,2019,September,Sunday,8,251,21,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,BAD BOY 3,OT,27,BLK,1200.0,STOLEN,5943,"{'type': 'Point', 'coordinates': (-79.34797865, 43.66895267)}"
-5945,5273,GO-20199029212,THEFT UNDER,2019-09-07T00:00:00,2019,September,Saturday,7,250,17,2019-09-08T00:00:00,2019,September,Sunday,8,251,21,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,7.3 FX,TO,24,GRY,950.0,STOLEN,5944,"{'type': 'Point', 'coordinates': (-79.34797865, 43.66895267)}"
-5946,5321,GO-20199029998,THEFT UNDER,2019-09-13T00:00:00,2019,September,Friday,13,256,20,2019-09-14T00:00:00,2019,September,Saturday,14,257,14,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ROCKHOPPER,MT,27,BLK,500.0,STOLEN,5945,"{'type': 'Point', 'coordinates': (-79.34265273, 43.67367568)}"
-5947,5393,GO-20191832819,THEFT UNDER - BICYCLE,2019-08-28T00:00:00,2019,August,Wednesday,28,240,17,2019-09-23T00:00:00,2019,September,Monday,23,266,13,D55,Toronto,68,North Riverdale (68),"Private Property Structure (Pool, Shed, Detached Garage)",Other,ROCKY MOUNTAIN,,MT,21,YEL,500.0,STOLEN,5946,"{'type': 'Point', 'coordinates': (-79.3464572, 43.67023848000001)}"
-5948,5508,GO-20199033527,THEFT UNDER,2019-10-10T00:00:00,2019,October,Thursday,10,283,20,2019-10-11T00:00:00,2019,October,Friday,11,284,13,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,SEEK 3,RG,21,BLK,200.0,STOLEN,5947,"{'type': 'Point', 'coordinates': (-79.35314005, 43.6668051)}"
-5949,5769,GO-20192428221,THEFT UNDER,2019-12-11T00:00:00,2019,December,Wednesday,11,345,8,2019-12-17T00:00:00,2019,December,Tuesday,17,351,12,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,SYNAPSE,RC,22,RED,3000.0,STOLEN,5948,"{'type': 'Point', 'coordinates': (-79.34334348, 43.66914894)}"
-5950,5770,GO-20192428221,THEFT UNDER,2019-12-11T00:00:00,2019,December,Wednesday,11,345,8,2019-12-17T00:00:00,2019,December,Tuesday,17,351,12,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,SYNAPSE,RC,22,BLK,3000.0,STOLEN,5949,"{'type': 'Point', 'coordinates': (-79.34334348, 43.66914894)}"
-5951,5780,GO-20199041792,THEFT UNDER,2019-11-09T00:00:00,2019,November,Saturday,9,313,11,2019-12-23T00:00:00,2019,December,Monday,23,357,8,D55,Toronto,68,North Riverdale (68),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,NOMAD ELITE 700,MT,21,BLK,700.0,STOLEN,5950,"{'type': 'Point', 'coordinates': (-79.35070987, 43.67779387)}"
-5952,5918,GO-2020383262,B&E,2020-02-15T00:00:00,2020,February,Saturday,15,46,14,2020-02-23T00:00:00,2020,February,Sunday,23,54,11,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CYCLEMANIA,,TO,0,BLK,505.0,STOLEN,5951,"{'type': 'Point', 'coordinates': (-79.34906762, 43.67652779)}"
-5953,5950,GO-20209008240,THEFT UNDER,2020-03-08T00:00:00,2020,March,Sunday,8,68,16,2020-03-08T00:00:00,2020,March,Sunday,8,68,22,D55,Toronto,68,North Riverdale (68),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,ROCKHOPPER,MT,18,WHI,1653.0,STOLEN,5952,"{'type': 'Point', 'coordinates': (-79.35298994, 43.6688017)}"
-5954,6548,GO-20209017000,THEFT UNDER,2020-07-06T00:00:00,2020,July,Monday,6,188,23,2020-07-07T00:00:00,2020,July,Tuesday,7,189,1,D55,Toronto,68,North Riverdale (68),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,,OT,1,GRY,500.0,STOLEN,5953,"{'type': 'Point', 'coordinates': (-79.35448832, 43.67126549)}"
-5955,6639,GO-20201324921,THEFT UNDER,2020-07-17T00:00:00,2020,July,Friday,17,199,8,2020-07-17T00:00:00,2020,July,Friday,17,199,12,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,,MT,0,MRN,,STOLEN,5954,"{'type': 'Point', 'coordinates': (-79.34768608, 43.67321372)}"
-5956,6640,GO-20201324921,THEFT UNDER,2020-07-17T00:00:00,2020,July,Friday,17,199,8,2020-07-17T00:00:00,2020,July,Friday,17,199,12,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,,OT,0,BLU,1400.0,STOLEN,5955,"{'type': 'Point', 'coordinates': (-79.34768608, 43.67321372)}"
-5957,7006,GO-20209020724,THEFT UNDER,2020-08-18T00:00:00,2020,August,Tuesday,18,231,16,2020-08-20T00:00:00,2020,August,Thursday,20,233,0,D55,Toronto,68,North Riverdale (68),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,RG,24,WHI,400.0,STOLEN,5956,"{'type': 'Point', 'coordinates': (-79.35633014, 43.67668659)}"
-5958,7069,GO-20209021211,THEFT UNDER,2020-08-24T00:00:00,2020,August,Monday,24,237,18,2020-08-25T00:00:00,2020,August,Tuesday,25,238,0,D55,Toronto,68,North Riverdale (68),Convenience Stores,Commercial,UK,ST TROPEZ,OT,24,BGE,450.0,STOLEN,5957,"{'type': 'Point', 'coordinates': (-79.35883201, 43.67620216)}"
-5959,7134,GO-20201595981,THEFT UNDER - BICYCLE,2020-08-24T00:00:00,2020,August,Monday,24,237,7,2020-08-24T00:00:00,2020,August,Monday,24,237,17,D55,Toronto,68,North Riverdale (68),"Apartment (Rooming House, Condo)",Apartment,CC,PRAGUE 770C,TO,7,PNK,450.0,STOLEN,5958,"{'type': 'Point', 'coordinates': (-79.34716166, 43.67195844)}"
-5960,7190,GO-20209022463,THEFT UNDER,2020-09-05T00:00:00,2020,September,Saturday,5,249,23,2020-09-06T00:00:00,2020,September,Sunday,6,250,12,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,KORSA,RC,10,BLK,2200.0,STOLEN,5959,"{'type': 'Point', 'coordinates': (-79.34436538, 43.67168872)}"
-5961,7215,GO-20209022744,THEFT UNDER,2020-09-09T00:00:00,2020,September,Wednesday,9,253,0,2020-09-09T00:00:00,2020,September,Wednesday,9,253,12,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,19 NORCO STORM,MT,21,BLK,800.0,STOLEN,5960,"{'type': 'Point', 'coordinates': (-79.34610545, 43.66939123)}"
-5962,7587,GO-20209028520,THEFT UNDER,2020-11-03T00:00:00,2020,November,Tuesday,3,308,16,2020-11-03T00:00:00,2020,November,Tuesday,3,308,18,D55,Toronto,68,North Riverdale (68),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,SL 2.0,MT,21,BLK,300.0,STOLEN,5961,"{'type': 'Point', 'coordinates': (-79.35883201, 43.67620216)}"
-5963,7847,GO-20149002953,THEFT UNDER,2014-04-18T00:00:00,2014,April,Friday,18,108,21,2014-04-21T00:00:00,2014,April,Monday,21,111,21,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,EM,,EL,32,GRN,900.0,STOLEN,5962,"{'type': 'Point', 'coordinates': (-79.34386775000002, 43.67663429)}"
-5964,7940,GO-20149003412,THEFT UNDER,2014-05-17T00:00:00,2014,May,Saturday,17,137,18,2014-05-17T00:00:00,2014,May,Saturday,17,137,20,D55,Toronto,68,North Riverdale (68),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MILANO,RG,21,BLK,560.0,STOLEN,5963,"{'type': 'Point', 'coordinates': (-79.35274855, 43.67738878)}"
-5965,7970,GO-20142160908,THEFT UNDER,2014-05-27T00:00:00,2014,May,Tuesday,27,147,6,2014-05-27T00:00:00,2014,May,Tuesday,27,147,7,D55,Toronto,68,North Riverdale (68),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCOTT,SCALE 50,MT,21,WHIBLK,1500.0,STOLEN,5964,"{'type': 'Point', 'coordinates': (-79.34607621, 43.67870142)}"
-5966,7980,GO-20141992310,THEFT UNDER,2014-03-02T00:00:00,2014,March,Sunday,2,61,12,2014-05-01T00:00:00,2014,May,Thursday,1,121,8,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,10,BLK,500.0,STOLEN,5965,"{'type': 'Point', 'coordinates': (-79.34681909, 43.67112945)}"
-5967,7981,GO-20141992310,THEFT UNDER,2014-03-02T00:00:00,2014,March,Sunday,2,61,12,2014-05-01T00:00:00,2014,May,Thursday,1,121,8,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,10,MRN,500.0,STOLEN,5966,"{'type': 'Point', 'coordinates': (-79.34681909, 43.67112945)}"
-5968,8064,GO-20149003849,THEFT UNDER,2014-06-05T00:00:00,2014,June,Thursday,5,156,18,2014-06-05T00:00:00,2014,June,Thursday,5,156,21,D55,Toronto,68,North Riverdale (68),"Open Areas (Lakes, Parks, Rivers)",Outside,GI,GIANT ESCAPE,OT,8,LGR,599.0,STOLEN,5967,"{'type': 'Point', 'coordinates': (-79.35258366, 43.66548622)}"
-5969,8173,GO-20149004181,THEFT UNDER,2014-06-17T00:00:00,2014,June,Tuesday,17,168,10,2014-06-17T00:00:00,2014,June,Tuesday,17,168,18,D55,Toronto,68,North Riverdale (68),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,TOP HI,EL,40,GRY,1400.0,STOLEN,5968,"{'type': 'Point', 'coordinates': (-79.35536552, 43.66548293000001)}"
-5970,8445,GO-20149005103,THEFT UNDER,2014-07-18T00:00:00,2014,July,Friday,18,199,17,2014-07-18T00:00:00,2014,July,Friday,18,199,18,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,HF,,MT,6,GRY,0.0,STOLEN,5969,"{'type': 'Point', 'coordinates': (-79.34906762, 43.67652779)}"
-5971,8892,GO-20149006900,THEFT UNDER,2014-09-15T00:00:00,2014,September,Monday,15,258,8,2014-09-15T00:00:00,2014,September,Monday,15,258,10,D55,Toronto,68,North Riverdale (68),"Apartment (Rooming House, Condo)",Apartment,UK,COMMUTER 2,RG,8,BLU,650.0,STOLEN,5970,"{'type': 'Point', 'coordinates': (-79.35533677, 43.67249975)}"
-5972,9008,GO-20149007358,THEFT UNDER,2014-09-28T00:00:00,2014,September,Sunday,28,271,19,2014-10-02T00:00:00,2014,October,Thursday,2,275,19,D55,Toronto,68,North Riverdale (68),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,VISCOUNT,RC,1,CRM,375.0,STOLEN,5971,"{'type': 'Point', 'coordinates': (-79.34730449, 43.6784602)}"
-5973,9131,GO-20143204324,THEFT UNDER,2014-10-29T00:00:00,2014,October,Wednesday,29,302,21,2014-10-30T00:00:00,2014,October,Thursday,30,303,11,D55,Toronto,68,North Riverdale (68),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,,EL,1,MRN,500.0,STOLEN,5972,"{'type': 'Point', 'coordinates': (-79.34305235, 43.66844643)}"
-5974,9141,GO-20143228990,THEFT UNDER,2014-10-31T00:00:00,2014,October,Friday,31,304,12,2014-11-03T00:00:00,2014,November,Monday,3,307,9,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MARIN OR MARINO,,MT,21,BLK,200.0,STOLEN,5973,"{'type': 'Point', 'coordinates': (-79.35101055, 43.67114849)}"
-5975,9454,GO-2015665524,THEFT UNDER,2015-04-21T00:00:00,2015,April,Tuesday,21,111,1,2015-04-22T00:00:00,2015,April,Wednesday,22,112,12,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DAYMAK,INDIANAPOLIS,EL,0,DBL,,STOLEN,5974,"{'type': 'Point', 'coordinates': (-79.35444372, 43.67371106)}"
-5976,9772,GO-20159003508,THEFT UNDER,2015-05-31T00:00:00,2015,May,Sunday,31,151,0,2015-06-10T00:00:00,2015,June,Wednesday,10,161,16,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,EASY 3 XL,MT,7,BLK,500.0,STOLEN,5975,"{'type': 'Point', 'coordinates': (-79.34941789, 43.66615064)}"
-5977,9773,GO-20159003508,THEFT UNDER,2015-05-31T00:00:00,2015,May,Sunday,31,151,0,2015-06-10T00:00:00,2015,June,Wednesday,10,161,16,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,6,WHI,200.0,STOLEN,5976,"{'type': 'Point', 'coordinates': (-79.34941789, 43.66615064)}"
-5978,9892,GO-20159003947,THEFT UNDER,2015-02-01T00:00:00,2015,February,Sunday,1,32,9,2015-06-26T00:00:00,2015,June,Friday,26,177,13,D55,Toronto,68,North Riverdale (68),"Apartment (Rooming House, Condo)",Apartment,OT,HARDROCK A1 COM,MT,8,RED,920.0,STOLEN,5977,"{'type': 'Point', 'coordinates': (-79.35444372, 43.67371106)}"
-5979,10147,GO-20159005182,THEFT UNDER,2015-07-23T00:00:00,2015,July,Thursday,23,204,22,2015-07-30T00:00:00,2015,July,Thursday,30,211,16,D55,Toronto,68,North Riverdale (68),"Apartment (Rooming House, Condo)",Apartment,OT,VENTURA - SPORT,RC,14,BLK,800.0,STOLEN,5978,"{'type': 'Point', 'coordinates': (-79.35334358, 43.66775799)}"
-5980,10148,GO-20159005178,THEFT UNDER,2015-07-13T00:00:00,2015,July,Monday,13,194,17,2015-07-30T00:00:00,2015,July,Thursday,30,211,17,D55,Toronto,68,North Riverdale (68),"Apartment (Rooming House, Condo)",Apartment,EM,EBIKE - URBAN,SC,32,WHI,1400.0,STOLEN,5979,"{'type': 'Point', 'coordinates': (-79.35444372, 43.67371106)}"
-5981,10496,GO-20159007386,THEFT UNDER,2015-09-18T00:00:00,2015,September,Friday,18,261,0,2015-09-19T00:00:00,2015,September,Saturday,19,262,9,D55,Toronto,68,North Riverdale (68),"Apartment (Rooming House, Condo)",Apartment,NO,15 VFR 4 FORMA,RG,24,SIL,650.0,STOLEN,5980,"{'type': 'Point', 'coordinates': (-79.35316558, 43.67305507)}"
-5982,10497,GO-20159007419,THEFT UNDER,2015-08-12T00:00:00,2015,August,Wednesday,12,224,9,2015-09-19T00:00:00,2015,September,Saturday,19,262,17,D55,Toronto,68,North Riverdale (68),"Apartment (Rooming House, Condo)",Apartment,OT,DE LA LOIRE,TO,18,SIL,650.0,STOLEN,5981,"{'type': 'Point', 'coordinates': (-79.35444372, 43.67371106)}"
-5983,10527,GO-20151644141,THEFT UNDER,2015-05-27T00:00:00,2015,May,Wednesday,27,147,11,2015-09-23T00:00:00,2015,September,Wednesday,23,266,9,D55,Toronto,68,North Riverdale (68),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPORTEK,HT-26,MT,21,DBL,,STOLEN,5982,"{'type': 'Point', 'coordinates': (-79.34480222, 43.67895162)}"
-5984,10707,GO-20151870983,THEFT UNDER,2015-10-30T00:00:00,2015,October,Friday,30,303,19,2015-10-31T00:00:00,2015,October,Saturday,31,304,10,D55,Toronto,68,North Riverdale (68),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,RC,12,BLU,100.0,STOLEN,5983,"{'type': 'Point', 'coordinates': (-79.3531753, 43.66970657)}"
-5985,10720,GO-20159009359,THEFT UNDER,2015-10-27T00:00:00,2015,October,Tuesday,27,300,15,2015-11-04T00:00:00,2015,November,Wednesday,4,308,14,D55,Toronto,68,North Riverdale (68),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,,OT,1,DBL,500.0,STOLEN,5984,"{'type': 'Point', 'coordinates': (-79.35357786, 43.66597125)}"
-5986,10781,GO-20151950550,THEFT UNDER,2015-11-11T00:00:00,2015,November,Wednesday,11,315,18,2015-11-17T00:00:00,2015,November,Tuesday,17,321,20,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SMOA SAN MARCOS,ROAD BIKE,OT,18,LBL,2500.0,STOLEN,5985,"{'type': 'Point', 'coordinates': (-79.35101055, 43.67114849)}"
-5987,10815,GO-20151271201,THEFT UNDER,2015-07-25T00:00:00,2015,July,Saturday,25,206,18,2015-07-25T00:00:00,2015,July,Saturday,25,206,18,D55,Toronto,68,North Riverdale (68),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,BIANCHI,ROAD,OT,12,RED,500.0,STOLEN,5986,"{'type': 'Point', 'coordinates': (-79.35633014, 43.67668659)}"
-5988,10865,GO-20159010865,THEFT UNDER,2015-12-12T00:00:00,2015,December,Saturday,12,346,7,2015-12-13T00:00:00,2015,December,Sunday,13,347,11,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,SYNAPSE,RC,21,,600.0,STOLEN,5987,"{'type': 'Point', 'coordinates': (-79.34305235, 43.66844643)}"
-5989,10961,GO-2016189841,THEFT UNDER,2015-12-20T00:00:00,2015,December,Sunday,20,354,9,2016-02-01T00:00:00,2016,February,Monday,1,32,14,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,SC,1,BGE,2200.0,STOLEN,5988,"{'type': 'Point', 'coordinates': (-79.34797865, 43.66895267)}"
-5990,10975,GO-2016231224,THEFT OVER,2016-02-07T00:00:00,2016,February,Sunday,7,38,13,2016-02-08T00:00:00,2016,February,Monday,8,39,10,D55,Toronto,68,North Riverdale (68),"Construction Site (Warehouse, Trailer, Shed)",Commercial,DEVINCI,CAMELEON,MT,10,BLU,1000.0,STOLEN,5989,"{'type': 'Point', 'coordinates': (-79.34577535000001, 43.66861216)}"
-5991,10976,GO-2016231224,THEFT OVER,2016-02-07T00:00:00,2016,February,Sunday,7,38,13,2016-02-08T00:00:00,2016,February,Monday,8,39,10,D55,Toronto,68,North Riverdale (68),"Construction Site (Warehouse, Trailer, Shed)",Commercial,DEVINCI,CAMELEON,MT,10,GRN,1000.0,STOLEN,5990,"{'type': 'Point', 'coordinates': (-79.34577535000001, 43.66861216)}"
-5992,11063,GO-2016480239,THEFT UNDER,2016-03-20T00:00:00,2016,March,Sunday,20,80,12,2016-03-20T00:00:00,2016,March,Sunday,20,80,14,D55,Toronto,68,North Riverdale (68),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BRODIE,TESLA,MT,21,DBL,800.0,STOLEN,5991,"{'type': 'Point', 'coordinates': (-79.34480222, 43.67895162)}"
-5993,11194,GO-2016701823,THEFT UNDER - BICYCLE,2016-04-24T00:00:00,2016,April,Sunday,24,115,19,2016-04-24T00:00:00,2016,April,Sunday,24,115,22,D55,Toronto,68,North Riverdale (68),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,,RG,12,WHI,450.0,STOLEN,5992,"{'type': 'Point', 'coordinates': (-79.34730449, 43.6784602)}"
-5994,11240,GO-2016668970,B&E W'INTENT,2016-04-19T00:00:00,2016,April,Tuesday,19,110,8,2016-04-19T00:00:00,2016,April,Tuesday,19,110,17,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,MT,10,BLU,600.0,STOLEN,5993,"{'type': 'Point', 'coordinates': (-79.34334348, 43.66914894)}"
-5995,12121,GO-20169008950,THEFT FROM MOTOR VEHICLE UNDER,2016-08-14T00:00:00,2016,August,Sunday,14,227,12,2016-08-17T00:00:00,2016,August,Wednesday,17,230,18,D55,Toronto,68,North Riverdale (68),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,4500 ALPHA,MT,24,RED,0.0,STOLEN,5994,"{'type': 'Point', 'coordinates': (-79.34768608, 43.67321372)}"
-5996,12122,GO-20169008950,THEFT FROM MOTOR VEHICLE UNDER,2016-08-14T00:00:00,2016,August,Sunday,14,227,12,2016-08-17T00:00:00,2016,August,Wednesday,17,230,18,D55,Toronto,68,North Riverdale (68),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,GIANT,MT,27,SIL,0.0,STOLEN,5995,"{'type': 'Point', 'coordinates': (-79.34768608, 43.67321372)}"
-5997,12306,GO-20161602993,THEFT UNDER,2016-09-08T00:00:00,2016,September,Thursday,8,252,21,2016-09-09T00:00:00,2016,September,Friday,9,253,15,D55,Toronto,68,North Riverdale (68),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN,,SC,1,BLK,3000.0,STOLEN,5996,"{'type': 'Point', 'coordinates': (-79.34941789, 43.66615064)}"
-5998,12423,GO-20161687061,PROPERTY - FOUND,2016-09-22T00:00:00,2016,September,Thursday,22,266,11,2016-09-22T00:00:00,2016,September,Thursday,22,266,12,D55,Toronto,68,North Riverdale (68),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,1,BLK,,UNKNOWN,5997,"{'type': 'Point', 'coordinates': (-79.35480892, 43.6746889)}"
-5999,12462,GO-20169011147,THEFT UNDER,2016-09-24T00:00:00,2016,September,Saturday,24,268,0,2016-09-26T00:00:00,2016,September,Monday,26,270,20,D55,Toronto,68,North Riverdale (68),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,CROSSTRAIL,MT,27,BLK,729.0,STOLEN,5998,"{'type': 'Point', 'coordinates': (-79.34681909, 43.67112945)}"
-6000,20701,GO-20209011499,THEFT UNDER - BICYCLE,2020-04-18T00:00:00,2020,April,Saturday,18,109,23,2020-04-19T00:00:00,2020,April,Sunday,19,110,13,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,OT,KHS URBAN SOUL,RG,1,SIL,2000.0,STOLEN,5999,"{'type': 'Point', 'coordinates': (-79.37717453, 43.66359899)}"
-6001,20705,GO-20209013109,THEFT UNDER,2020-05-14T00:00:00,2020,May,Thursday,14,135,13,2020-05-14T00:00:00,2020,May,Thursday,14,135,16,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,RG,10,BLU,600.0,STOLEN,6000,"{'type': 'Point', 'coordinates': (-79.37085094, 43.66451729)}"
-6002,20708,GO-2020931052,PROPERTY - FOUND,2020-05-20T00:00:00,2020,May,Wednesday,20,141,16,2020-05-20T00:00:00,2020,May,Wednesday,20,141,16,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,MT,16,WHI,,UNKNOWN,6001,"{'type': 'Point', 'coordinates': (-79.37085094, 43.66451729)}"
-6003,20847,GO-20141542732,B&E,2014-02-16T00:00:00,2014,February,Sunday,16,47,19,2014-02-16T00:00:00,2014,February,Sunday,16,47,19,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,NONE,RC,10,BLK,500.0,STOLEN,6002,"{'type': 'Point', 'coordinates': (-79.36558916, 43.6665295)}"
-6004,20851,GO-20141668687,THEFT UNDER,2014-03-08T00:00:00,2014,March,Saturday,8,67,9,2014-03-10T00:00:00,2014,March,Monday,10,69,13,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,EPIC COMP,OT,21,BLK,2000.0,STOLEN,6003,"{'type': 'Point', 'coordinates': (-79.37717453, 43.66359899)}"
-6005,20867,GO-20149004091,THEFT UNDER,2014-06-15T00:00:00,2014,June,Sunday,15,166,11,2014-06-15T00:00:00,2014,June,Sunday,15,166,13,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,MANOMANO,MT,14,BLU,1500.0,STOLEN,6004,"{'type': 'Point', 'coordinates': (-79.36801682000001, 43.66446336)}"
-6006,20894,GO-20149005284,THEFT UNDER,2014-07-24T00:00:00,2014,July,Thursday,24,205,9,2014-07-24T00:00:00,2014,July,Thursday,24,205,9,D51,Toronto,71,Cabbagetown-South St.James Town (71),Schools During Supervised Activity,Educational,OT,"XC2.6 26""""",RG,21,RED,147.0,STOLEN,6005,"{'type': 'Point', 'coordinates': (-79.37830693, 43.66628508)}"
-6007,20914,GO-20142763398,THEFT UNDER,2014-08-23T00:00:00,2014,August,Saturday,23,235,20,2014-08-23T00:00:00,2014,August,Saturday,23,235,22,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,PEUGEOT,,RG,0,,,STOLEN,6006,"{'type': 'Point', 'coordinates': (-79.36992785, 43.66558086)}"
-6008,20932,GO-20143065914,THEFT UNDER,2014-10-08T00:00:00,2014,October,Wednesday,8,281,7,2014-10-08T00:00:00,2014,October,Wednesday,8,281,13,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,,SC,1,ONG,1500.0,STOLEN,6007,"{'type': 'Point', 'coordinates': (-79.37581268, 43.66648596000001)}"
-6009,20960,GO-2015635131,THEFT UNDER,2015-04-17T00:00:00,2015,April,Friday,17,107,9,2015-04-17T00:00:00,2015,April,Friday,17,107,12,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,MAC,OT,27,BGE,1000.0,STOLEN,6008,"{'type': 'Point', 'coordinates': (-79.37048033, 43.66372252)}"
-6010,22618,GO-20191527344,THEFT OF EBIKE UNDER $5000,2019-07-19T00:00:00,2019,July,Friday,19,200,0,2019-08-12T00:00:00,2019,August,Monday,12,224,13,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,EL,1,,2000.0,STOLEN,6009,"{'type': 'Point', 'coordinates': (-79.36600501, 43.66217007)}"
-6011,22640,GO-20199028826,THEFT UNDER,2019-09-03T00:00:00,2019,September,Tuesday,3,246,15,2019-09-05T00:00:00,2019,September,Thursday,5,248,9,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,OT,DEVINCI,RG,21,BLK,700.0,STOLEN,6010,"{'type': 'Point', 'coordinates': (-79.37785611, 43.66521591)}"
-6012,22703,GO-2020652625,B&E W'INTENT,2020-03-17T00:00:00,2020,March,Tuesday,17,77,23,2020-04-03T00:00:00,2020,April,Friday,3,94,11,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,PURE,OSCAR,RC,1,SIL,700.0,STOLEN,6011,"{'type': 'Point', 'coordinates': (-79.3641184, 43.66609313000001)}"
-6013,22704,GO-2020652625,B&E W'INTENT,2020-03-17T00:00:00,2020,March,Tuesday,17,77,23,2020-04-03T00:00:00,2020,April,Friday,3,94,11,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,ABICI,ITALIA,TO,1,BGE,800.0,STOLEN,6012,"{'type': 'Point', 'coordinates': (-79.3641184, 43.66609313000001)}"
-6014,22705,GO-2020652625,B&E W'INTENT,2020-03-17T00:00:00,2020,March,Tuesday,17,77,23,2020-04-03T00:00:00,2020,April,Friday,3,94,11,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,ABICI,ITALIA,TO,1,GRN,800.0,STOLEN,6013,"{'type': 'Point', 'coordinates': (-79.3641184, 43.66609313000001)}"
-6015,22715,GO-20209012083,THEFT UNDER - BICYCLE,2020-04-25T00:00:00,2020,April,Saturday,25,116,22,2020-04-28T00:00:00,2020,April,Tuesday,28,119,16,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,24,WHI,1500.0,STOLEN,6014,"{'type': 'Point', 'coordinates': (-79.361458, 43.66315822)}"
-6016,22735,GO-20209016286,THEFT UNDER,2020-06-27T00:00:00,2020,June,Saturday,27,179,0,2020-06-27T00:00:00,2020,June,Saturday,27,179,9,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,SC 700C KROSSRO,RG,12,BLU,349.0,STOLEN,6015,"{'type': 'Point', 'coordinates': (-79.3687933, 43.67333061)}"
-6017,22744,GO-20201262782,THEFT UNDER - BICYCLE,2020-07-04T00:00:00,2020,July,Saturday,4,186,9,2020-07-08T00:00:00,2020,July,Wednesday,8,190,14,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,VERGE,MT,21,BLUWHI,300.0,STOLEN,6016,"{'type': 'Point', 'coordinates': (-79.37430926, 43.66291642)}"
-6018,22753,GO-20209018848,THEFT UNDER,2020-07-26T00:00:00,2020,July,Sunday,26,208,14,2020-07-28T00:00:00,2020,July,Tuesday,28,210,20,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,CA,ALTHEA,TO,18,BLK,1200.0,STOLEN,6017,"{'type': 'Point', 'coordinates': (-79.37717453, 43.66359899)}"
-6019,22782,GO-20209025057,THEFT UNDER - BICYCLE,2020-09-29T00:00:00,2020,September,Tuesday,29,273,13,2020-09-30T00:00:00,2020,September,Wednesday,30,274,16,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,2013ROAM3MTNHYB,MT,18,BLK,566.0,STOLEN,6018,"{'type': 'Point', 'coordinates': (-79.36825854, 43.66505739)}"
-6020,22784,GO-20209025522,THEFT UNDER - BICYCLE,2020-10-05T00:00:00,2020,October,Monday,5,279,21,2020-10-06T00:00:00,2020,October,Tuesday,6,280,9,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SIRRUS,RG,21,RED,500.0,STOLEN,6019,"{'type': 'Point', 'coordinates': (-79.36362419, 43.66846157)}"
-6021,22908,GO-20151045103,THEFT UNDER - BICYCLE,2015-06-21T00:00:00,2015,June,Sunday,21,172,18,2015-06-21T00:00:00,2015,June,Sunday,21,172,18,D53,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,INFINITY,,MT,6,REDYEL,250.0,STOLEN,6020,"{'type': 'Point', 'coordinates': (-79.3601117, 43.67019753)}"
-6022,23213,GO-20189033047,THEFT UNDER - BICYCLE,2017-09-30T00:00:00,2017,September,Saturday,30,273,10,2018-10-05T00:00:00,2018,October,Friday,5,278,14,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UK,,RC,1,,2500.0,STOLEN,6021,"{'type': 'Point', 'coordinates': (-79.37085094, 43.66451729)}"
-6023,23215,GO-20189033575,THEFT UNDER - BICYCLE,2018-10-10T00:00:00,2018,October,Wednesday,10,283,14,2018-10-10T00:00:00,2018,October,Wednesday,10,283,22,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,RAPID 2,RG,20,WHI,700.0,STOLEN,6022,"{'type': 'Point', 'coordinates': (-79.37785611, 43.66521591)}"
-6024,23232,GO-20182311065,THEFT UNDER - BICYCLE,2018-12-14T00:00:00,2018,December,Friday,14,348,15,2018-12-17T00:00:00,2018,December,Monday,17,351,14,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,UNKN,OT,0,,1000.0,STOLEN,6023,"{'type': 'Point', 'coordinates': (-79.3680462, 43.66847147)}"
-6025,23253,GO-20199015233,THEFT UNDER,2019-05-15T00:00:00,2019,May,Wednesday,15,135,22,2019-05-16T00:00:00,2019,May,Thursday,16,136,11,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,OT,SINGLE SPEED,TO,1,BLK,600.0,STOLEN,6024,"{'type': 'Point', 'coordinates': (-79.36715127, 43.66233418)}"
-6026,23256,GO-20199016500,THEFT UNDER,2019-05-27T00:00:00,2019,May,Monday,27,147,12,2019-05-27T00:00:00,2019,May,Monday,27,147,15,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KH,URBAN SOUL,RG,1,BRN,500.0,STOLEN,6025,"{'type': 'Point', 'coordinates': (-79.37048033, 43.66372252)}"
-6027,23263,GO-20199018493,THEFT UNDER,2019-05-30T00:00:00,2019,May,Thursday,30,150,18,2019-06-13T00:00:00,2019,June,Thursday,13,164,15,D51,Toronto,71,Cabbagetown-South St.James Town (71),Ttc Subway Station,Transit,NO,,RG,12,BLU,0.0,STOLEN,6026,"{'type': 'Point', 'coordinates': (-79.36816374, 43.67377546)}"
-6028,23264,GO-20191112925,B&E,2019-06-16T00:00:00,2019,June,Sunday,16,167,0,2019-06-16T00:00:00,2019,June,Sunday,16,167,20,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,,MT,21,BLK,1500.0,UNKNOWN,6027,"{'type': 'Point', 'coordinates': (-79.36749818, 43.66688218000001)}"
-6029,23265,GO-20191112925,B&E,2019-06-16T00:00:00,2019,June,Sunday,16,167,0,2019-06-16T00:00:00,2019,June,Sunday,16,167,20,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,18 CT SPORT,MT,21,BLUBLK,1500.0,STOLEN,6028,"{'type': 'Point', 'coordinates': (-79.36749818, 43.66688218000001)}"
-6030,23272,GO-20199019898,THEFT UNDER,2019-06-21T00:00:00,2019,June,Friday,21,172,0,2019-06-24T00:00:00,2019,June,Monday,24,175,13,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,DEL SOL,RG,21,BLK,600.0,STOLEN,6029,"{'type': 'Point', 'coordinates': (-79.36794156, 43.66428583)}"
-6031,23277,GO-20191241938,THEFT UNDER,2019-07-01T00:00:00,2019,July,Monday,1,182,21,2019-07-04T00:00:00,2019,July,Thursday,4,185,11,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,SAVAGE,MT,18,BLKBLU,200.0,STOLEN,6030,"{'type': 'Point', 'coordinates': (-79.36247702, 43.66569194)}"
-6032,23278,GO-20191241938,THEFT UNDER,2019-07-01T00:00:00,2019,July,Monday,1,182,21,2019-07-04T00:00:00,2019,July,Thursday,4,185,11,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,MT,18,BLKLGR,250.0,STOLEN,6031,"{'type': 'Point', 'coordinates': (-79.36247702, 43.66569194)}"
-6033,23444,GO-20179010686,THEFT UNDER - BICYCLE,2017-07-19T00:00:00,2017,July,Wednesday,19,200,21,2017-07-20T00:00:00,2017,July,Thursday,20,201,13,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,DEW PLUS,OT,15,BRN,900.0,STOLEN,6032,"{'type': 'Point', 'coordinates': (-79.37547981, 43.66574074)}"
-6034,23450,GO-20179011229,ASSAULT WITH WEAPON,2017-07-28T00:00:00,2017,July,Friday,28,209,13,2017-07-28T00:00:00,2017,July,Friday,28,209,13,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,1,LBL,300.0,STOLEN,6033,"{'type': 'Point', 'coordinates': (-79.37170183, 43.66651225)}"
-6035,23495,GO-20179019696,THEFT UNDER - BICYCLE,2017-11-14T00:00:00,2017,November,Tuesday,14,318,5,2017-11-15T00:00:00,2017,November,Wednesday,15,319,10,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SKYLINE,RG,1,BLK,550.0,STOLEN,6034,"{'type': 'Point', 'coordinates': (-79.3636648, 43.66404625)}"
-6036,23511,GO-20189009426,THEFT UNDER - BICYCLE,2018-03-25T00:00:00,2018,March,Sunday,25,84,18,2018-03-25T00:00:00,2018,March,Sunday,25,84,18,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,KO,SPLICE,MT,21,BLK,849.0,STOLEN,6035,"{'type': 'Point', 'coordinates': (-79.37085094, 43.66451729)}"
-6037,23556,GO-2018845419,THEFT OVER - BICYCLE,2018-05-09T00:00:00,2018,May,Wednesday,9,129,20,2018-05-12T00:00:00,2018,May,Saturday,12,132,8,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,NORCO,THRESHOLD,MT,21,ONG,,STOLEN,6036,"{'type': 'Point', 'coordinates': (-79.37489281, 43.66432923)}"
-6038,23558,GO-20189022737,THEFT UNDER - BICYCLE,2018-07-16T00:00:00,2018,July,Monday,16,197,19,2018-07-17T00:00:00,2018,July,Tuesday,17,198,9,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,MA,LARKSPUR,RG,21,GRY,200.0,STOLEN,6037,"{'type': 'Point', 'coordinates': (-79.36992785, 43.66558086)}"
-6039,23563,GO-20181343102,THEFT UNDER - BICYCLE,2018-07-16T00:00:00,2018,July,Monday,16,197,13,2018-07-23T00:00:00,2018,July,Monday,23,204,7,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUPERCYCLE,MOUNTAIN,MT,6,RED,140.0,STOLEN,6038,"{'type': 'Point', 'coordinates': (-79.37717453, 43.66359899)}"
-6040,23573,GO-20189025258,THEFT UNDER - BICYCLE,2018-08-04T00:00:00,2018,August,Saturday,4,216,11,2018-08-06T00:00:00,2018,August,Monday,6,218,11,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,CA,ALTHEA,TO,18,BLK,150.0,STOLEN,6039,"{'type': 'Point', 'coordinates': (-79.37717453, 43.66359899)}"
-6041,23576,GO-20189026092,THEFT UNDER - BICYCLE,2018-08-12T00:00:00,2018,August,Sunday,12,224,14,2018-08-12T00:00:00,2018,August,Sunday,12,224,17,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,OT,SIZE 53 SINGLE,RG,1,BLK,800.0,STOLEN,6040,"{'type': 'Point', 'coordinates': (-79.37373773, 43.66729501)}"
-6042,406,GO-20179006488,THEFT UNDER,2017-05-11T00:00:00,2017,May,Thursday,11,131,16,2017-05-17T00:00:00,2017,May,Wednesday,17,137,8,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,KO,PADDY WAGON,OT,1,GRY,800.0,STOLEN,6079,"{'type': 'Point', 'coordinates': (-79.35685690000001, 43.65820104)}"
-6043,23583,GO-20189027062,THEFT UNDER - BICYCLE,2018-08-20T00:00:00,2018,August,Monday,20,232,1,2018-08-20T00:00:00,2018,August,Monday,20,232,7,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,TO,18,TRQ,250.0,STOLEN,6041,"{'type': 'Point', 'coordinates': (-79.36481189, 43.66919785)}"
-6044,23585,GO-20189027645,THEFT UNDER,2018-08-23T00:00:00,2018,August,Thursday,23,235,15,2018-08-23T00:00:00,2018,August,Thursday,23,235,18,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,7,BLK,300.0,STOLEN,6042,"{'type': 'Point', 'coordinates': (-79.36600501, 43.66217007)}"
-6045,23596,GO-20159002765,THEFT UNDER,2015-05-14T00:00:00,2015,May,Thursday,14,134,23,2015-05-15T00:00:00,2015,May,Friday,15,135,13,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,MT,21,PNK,200.0,STOLEN,6043,"{'type': 'Point', 'coordinates': (-79.361458, 43.66315822)}"
-6046,23603,GO-20159003186,THEFT UNDER,2015-05-24T00:00:00,2015,May,Sunday,24,144,9,2015-05-29T00:00:00,2015,May,Friday,29,149,15,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,KIWI LITHIUM IO,EL,35,BLU,,RECOVERED,6044,"{'type': 'Point', 'coordinates': (-79.36399223000001, 43.66939187)}"
-6047,23631,GO-20159005243,THEFT UNDER,2015-08-01T00:00:00,2015,August,Saturday,1,213,15,2015-08-01T00:00:00,2015,August,Saturday,1,213,16,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,FJ,C040B12,MT,12,BLK,800.0,STOLEN,6045,"{'type': 'Point', 'coordinates': (-79.36665439, 43.66476997)}"
-6048,23641,GO-20159005698,THEFT UNDER,2015-08-11T00:00:00,2015,August,Tuesday,11,223,14,2015-08-12T00:00:00,2015,August,Wednesday,12,224,16,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FJ,"TOURING""""",TO,21,BLK,500.0,STOLEN,6046,"{'type': 'Point', 'coordinates': (-79.36481189, 43.66919785)}"
-6049,23647,GO-20159006293,THEFT UNDER,2015-08-23T00:00:00,2015,August,Sunday,23,235,1,2015-08-23T00:00:00,2015,August,Sunday,23,235,11,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BI,,RC,24,GRN,500.0,STOLEN,6047,"{'type': 'Point', 'coordinates': (-79.36078708, 43.66464918)}"
-6050,23916,GO-20142469396,THEFT UNDER,2014-07-09T00:00:00,2014,July,Wednesday,9,190,11,2014-07-16T00:00:00,2014,July,Wednesday,16,197,15,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,CCM,VANDEL 25,MT,21,WHI,250.0,STOLEN,6062,"{'type': 'Point', 'coordinates': (-79.37547981, 43.66574074)}"
-6051,23654,GO-20159007463,THEFT UNDER,2015-09-19T00:00:00,2015,September,Saturday,19,262,23,2015-09-20T00:00:00,2015,September,Sunday,20,263,18,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,,RG,21,BLU,,STOLEN,6048,"{'type': 'Point', 'coordinates': (-79.37717453, 43.66359899)}"
-6052,23677,GO-2016334854,THEFT UNDER,2016-02-23T00:00:00,2016,February,Tuesday,23,54,22,2016-02-25T00:00:00,2016,February,Thursday,25,56,17,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,EMMO,MONSTER,EL,1,BLKRED,2250.0,STOLEN,6049,"{'type': 'Point', 'coordinates': (-79.3680462, 43.66847147)}"
-6053,23684,GO-20169003742,THEFT UNDER - BICYCLE,2016-04-22T00:00:00,2016,April,Friday,22,113,23,2016-04-23T00:00:00,2016,April,Saturday,23,114,17,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,RIDEAU,RG,21,GRY,700.0,STOLEN,6050,"{'type': 'Point', 'coordinates': (-79.37212433, 43.6633875)}"
-6054,23687,GO-20169003994,THEFT UNDER - BICYCLE,2016-04-30T00:00:00,2016,April,Saturday,30,121,16,2016-04-30T00:00:00,2016,April,Saturday,30,121,21,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,HARDROCK,RG,21,RED,499.0,STOLEN,6051,"{'type': 'Point', 'coordinates': (-79.36801682000001, 43.66446336)}"
-6055,23711,GO-20161056378,THEFT UNDER - BICYCLE,2016-06-17T00:00:00,2016,June,Friday,17,169,13,2016-06-17T00:00:00,2016,June,Friday,17,169,13,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,GLOBE,OT,1,GRYLBL,2215.0,STOLEN,6052,"{'type': 'Point', 'coordinates': (-79.3721682, 43.66763473)}"
-6056,23724,GO-20169008403,THEFT UNDER,2016-08-08T00:00:00,2016,August,Monday,8,221,19,2016-08-08T00:00:00,2016,August,Monday,8,221,20,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,TEMPO 700C,RG,21,SIL,150.0,STOLEN,6053,"{'type': 'Point', 'coordinates': (-79.36750361, 43.66320621)}"
-6057,23741,GO-20169009575,THEFT UNDER,2016-08-26T00:00:00,2016,August,Friday,26,239,21,2016-08-27T00:00:00,2016,August,Saturday,27,240,14,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,RA,MATTERHORN,MT,12,BLU,0.0,STOLEN,6054,"{'type': 'Point', 'coordinates': (-79.37489281, 43.66432923)}"
-6058,23759,GO-20161824302,THEFT UNDER - BICYCLE,2016-10-13T00:00:00,2016,October,Thursday,13,287,17,2016-10-13T00:00:00,2016,October,Thursday,13,287,21,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,,FO,6,OTH,,STOLEN,6055,"{'type': 'Point', 'coordinates': (-79.36801682000001, 43.66446336)}"
-6059,23763,GO-20161814990,PROPERTY - FOUND,2016-09-21T00:00:00,2016,September,Wednesday,21,265,0,2016-10-12T00:00:00,2016,October,Wednesday,12,286,16,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TECH TEAM,NEMESIS,BM,6,BRZ,300.0,UNKNOWN,6056,"{'type': 'Point', 'coordinates': (-79.37489281, 43.66432923)}"
-6060,23868,GO-20149000071,THEFT UNDER,2013-12-25T00:00:00,2013,December,Wednesday,25,359,10,2014-01-02T00:00:00,2014,January,Thursday,2,2,14,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BI,,TO,25,RED,400.0,STOLEN,6057,"{'type': 'Point', 'coordinates': (-79.37373773, 43.66729501)}"
-6061,23880,GO-20149003499,THEFT UNDER,2014-05-20T00:00:00,2014,May,Tuesday,20,140,19,2014-05-22T00:00:00,2014,May,Thursday,22,142,19,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,DISC 29,MT,10,ONG,1100.0,STOLEN,6058,"{'type': 'Point', 'coordinates': (-79.36722396, 43.66616179)}"
-6062,23905,GO-20149004424,THEFT UNDER,2014-06-16T00:00:00,2014,June,Monday,16,167,8,2014-06-25T00:00:00,2014,June,Wednesday,25,176,9,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,14,WHI,0.0,STOLEN,6059,"{'type': 'Point', 'coordinates': (-79.37547981, 43.66574074)}"
-6063,23907,GO-20142396871,THEFT UNDER,2014-06-29T00:00:00,2014,June,Sunday,29,180,20,2014-07-03T00:00:00,2014,July,Thursday,3,184,22,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,,OT,21,GRY,500.0,STOLEN,6060,"{'type': 'Point', 'coordinates': (-79.37048033, 43.66372252)}"
-6064,23908,GO-20142396871,THEFT UNDER,2014-06-29T00:00:00,2014,June,Sunday,29,180,20,2014-07-03T00:00:00,2014,July,Thursday,3,184,22,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,,OT,21,SIL,500.0,STOLEN,6061,"{'type': 'Point', 'coordinates': (-79.37048033, 43.66372252)}"
-6065,23928,GO-20149005380,THEFT UNDER,2014-07-27T00:00:00,2014,July,Sunday,27,208,14,2014-07-27T00:00:00,2014,July,Sunday,27,208,16,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,EXCELSIOR,MT,21,RED,279.0,STOLEN,6063,"{'type': 'Point', 'coordinates': (-79.36794156, 43.66428583)}"
-6066,23929,GO-20149005391,THEFT UNDER,2014-07-25T00:00:00,2014,July,Friday,25,206,7,2014-07-28T00:00:00,2014,July,Monday,28,209,10,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,SPECIALIZED HOT,MT,21,BLK,400.0,STOLEN,6064,"{'type': 'Point', 'coordinates': (-79.37785611, 43.66521591)}"
-6067,23932,GO-20149005449,THEFT UNDER,2014-06-03T00:00:00,2014,June,Tuesday,3,154,21,2014-07-29T00:00:00,2014,July,Tuesday,29,210,19,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,EXCELSIOR,RG,21,RED,300.0,STOLEN,6065,"{'type': 'Point', 'coordinates': (-79.37430926, 43.66291642)}"
-6068,23937,GO-20149005788,THEFT UNDER,2014-08-02T00:00:00,2014,August,Saturday,2,214,12,2014-08-10T00:00:00,2014,August,Sunday,10,222,14,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,WORK 2,RG,21,GRY,836.0,STOLEN,6066,"{'type': 'Point', 'coordinates': (-79.37085094, 43.66451729)}"
-6069,23964,GO-20143138742,THEFT UNDER,2014-10-20T00:00:00,2014,October,Monday,20,293,7,2014-10-20T00:00:00,2014,October,Monday,20,293,8,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,BASSO,,EL,10,WHI,1500.0,STOLEN,6067,"{'type': 'Point', 'coordinates': (-79.37170183, 43.66651225)}"
-6070,23968,GO-20149008691,THEFT UNDER,2014-12-10T00:00:00,2014,December,Wednesday,10,344,8,2014-12-10T00:00:00,2014,December,Wednesday,10,344,22,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,UK,OBJEKT,OT,1,BLK,600.0,STOLEN,6068,"{'type': 'Point', 'coordinates': (-79.37717453, 43.66359899)}"
-6071,23971,GO-20159000362,THEFT UNDER,2015-01-19T00:00:00,2015,January,Monday,19,19,11,2015-01-19T00:00:00,2015,January,Monday,19,19,20,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,NO,HEART,RG,1,BLK,441.0,STOLEN,6069,"{'type': 'Point', 'coordinates': (-79.37170183, 43.66651225)}"
-6072,23975,GO-20159001607,THEFT UNDER,2015-03-24T00:00:00,2015,March,Tuesday,24,83,0,2015-03-29T00:00:00,2015,March,Sunday,29,88,10,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,OT,LEMOND VERSAILL,RC,12,GRY,0.0,STOLEN,6070,"{'type': 'Point', 'coordinates': (-79.3721682, 43.66763473)}"
-6073,23978,GO-20159002042,THEFT UNDER,2015-04-18T00:00:00,2015,April,Saturday,18,108,23,2015-04-19T00:00:00,2015,April,Sunday,19,109,9,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,18,GRY,100.0,STOLEN,6071,"{'type': 'Point', 'coordinates': (-79.37170183, 43.66651225)}"
-6074,23980,GO-2015675002,THEFT UNDER,2015-04-23T00:00:00,2015,April,Thursday,23,113,21,2015-04-23T00:00:00,2015,April,Thursday,23,113,22,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,EL,0,BLU,400.0,STOLEN,6072,"{'type': 'Point', 'coordinates': (-79.36451274, 43.66387933)}"
-6075,23985,GO-20159002613,THEFT UNDER,2015-05-09T00:00:00,2015,May,Saturday,9,129,0,2015-05-11T00:00:00,2015,May,Monday,11,131,10,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MA,LARKSPUR,RG,21,SIL,500.0,STOLEN,6073,"{'type': 'Point', 'coordinates': (-79.36362419, 43.66846157)}"
-6076,55,GO-20179000864,THEFT UNDER - BICYCLE,2016-11-15T00:00:00,2016,November,Tuesday,15,320,20,2017-01-19T00:00:00,2017,January,Thursday,19,19,22,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,SC,HYDRA,RG,21,GRY,0.0,STOLEN,6074,"{'type': 'Point', 'coordinates': (-79.36019846, 43.66007445)}"
-6077,167,GO-20179003708,THEFT OVER - BICYCLE,2017-03-22T00:00:00,2017,March,Wednesday,22,81,22,2017-03-23T00:00:00,2017,March,Thursday,23,82,21,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,12,BLU,5000.0,STOLEN,6075,"{'type': 'Point', 'coordinates': (-79.35685690000001, 43.65820104)}"
-6078,187,GO-20179004094,THEFT UNDER - BICYCLE,2017-04-01T00:00:00,2017,April,Saturday,1,91,19,2017-04-01T00:00:00,2017,April,Saturday,1,91,20,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,SC,,RC,21,RED,450.0,STOLEN,6076,"{'type': 'Point', 'coordinates': (-79.36126289, 43.65912823)}"
-6079,254,GO-2017702106,THEFT OF EBIKE UNDER $5000,2017-04-21T00:00:00,2017,April,Friday,21,111,18,2017-04-21T00:00:00,2017,April,Friday,21,111,18,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,,EL,0,RED,1200.0,STOLEN,6077,"{'type': 'Point', 'coordinates': (-79.36442266, 43.65561541)}"
-6080,514,GO-20179007324,THEFT UNDER - BICYCLE,2017-05-31T00:00:00,2017,May,Wednesday,31,151,5,2017-06-01T00:00:00,2017,June,Thursday,1,152,8,D51,Toronto,72,Regent Park (72),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,AMSTERDAM 2017,RG,15,BLK,1920.0,STOLEN,6080,"{'type': 'Point', 'coordinates': (-79.36019846, 43.66007445)}"
-6081,688,GO-20179008688,THEFT UNDER - BICYCLE,2017-06-17T00:00:00,2017,June,Saturday,17,168,22,2017-06-22T00:00:00,2017,June,Thursday,22,173,15,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ORIGAMI,FO,7,GRY,800.0,STOLEN,6081,"{'type': 'Point', 'coordinates': (-79.36267396, 43.65942878)}"
-6082,816,GO-20179009786,THEFT UNDER - BICYCLE,2017-07-08T00:00:00,2017,July,Saturday,8,189,19,2017-07-09T00:00:00,2017,July,Sunday,9,190,13,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,OT,COMMUTER,OT,7,BLK,300.0,STOLEN,6082,"{'type': 'Point', 'coordinates': (-79.36222438, 43.65609425)}"
-6083,878,GO-20179010353,THEFT UNDER,2017-07-15T00:00:00,2017,July,Saturday,15,196,20,2017-07-16T00:00:00,2017,July,Sunday,16,197,22,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,8,BLK,850.0,STOLEN,6083,"{'type': 'Point', 'coordinates': (-79.36267396, 43.65942878)}"
-6084,894,GO-20171298414,THEFT UNDER - BICYCLE,2017-07-19T00:00:00,2017,July,Wednesday,19,200,20,2017-07-19T00:00:00,2017,July,Wednesday,19,200,22,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MONGOOSE,,OT,10,PLE,1000.0,STOLEN,6084,"{'type': 'Point', 'coordinates': (-79.36142559000001, 43.65627028)}"
-6085,895,GO-20171298414,THEFT UNDER - BICYCLE,2017-07-19T00:00:00,2017,July,Wednesday,19,200,20,2017-07-19T00:00:00,2017,July,Wednesday,19,200,22,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,MOUNTAIN,OT,10,,0.0,STOLEN,6085,"{'type': 'Point', 'coordinates': (-79.36142559000001, 43.65627028)}"
-6086,934,GO-20179010705,THEFT UNDER,2017-07-20T00:00:00,2017,July,Thursday,20,201,18,2017-07-20T00:00:00,2017,July,Thursday,20,201,21,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,UK,,OT,15,WHI,500.0,STOLEN,6086,"{'type': 'Point', 'coordinates': (-79.36126289, 43.65912823)}"
-6087,1000,GO-20171364123,THEFT UNDER - BICYCLE,2017-07-29T00:00:00,2017,July,Saturday,29,210,16,2017-07-29T00:00:00,2017,July,Saturday,29,210,19,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,ARGON 18,KR 36,RC,20,BLKRED,2000.0,STOLEN,6087,"{'type': 'Point', 'coordinates': (-79.3649748, 43.66105179)}"
-6088,1007,GO-20179011333,THEFT UNDER - BICYCLE,2017-07-29T00:00:00,2017,July,Saturday,29,210,9,2017-07-30T00:00:00,2017,July,Sunday,30,211,8,D51,Toronto,72,Regent Park (72),"Open Areas (Lakes, Parks, Rivers)",Outside,GI,ESCAPE 3,RG,21,BLK,499.0,STOLEN,6088,"{'type': 'Point', 'coordinates': (-79.36174292, 43.66035993)}"
-6089,1098,GO-20171441119,THEFT UNDER - BICYCLE,2017-08-10T00:00:00,2017,August,Thursday,10,222,7,2017-08-10T00:00:00,2017,August,Thursday,10,222,15,D51,Toronto,72,Regent Park (72),"Open Areas (Lakes, Parks, Rivers)",Outside,-,,OT,0,,,STOLEN,6089,"{'type': 'Point', 'coordinates': (-79.36296147, 43.660087000000004)}"
-6090,1196,GO-20179012893,THEFT UNDER,2017-08-11T00:00:00,2017,August,Friday,11,223,8,2017-08-21T00:00:00,2017,August,Monday,21,233,9,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,CA,CANNONDALE QUIC,RG,20,TRQ,999.0,STOLEN,6090,"{'type': 'Point', 'coordinates': (-79.36019846, 43.66007445)}"
-6091,1242,GO-20179013251,THEFT UNDER - BICYCLE,2017-08-21T00:00:00,2017,August,Monday,21,233,16,2017-08-24T00:00:00,2017,August,Thursday,24,236,17,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,GI,BOULDER SE,MT,8,BLU,350.0,STOLEN,6091,"{'type': 'Point', 'coordinates': (-79.3632636, 43.66077482)}"
-6092,1459,GO-20171708732,THEFT UNDER - BICYCLE,2017-09-20T00:00:00,2017,September,Wednesday,20,263,6,2017-09-20T00:00:00,2017,September,Wednesday,20,263,16,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,MT,21,WHI,1200.0,STOLEN,6092,"{'type': 'Point', 'coordinates': (-79.36267396, 43.65942878)}"
-6093,1512,GO-20179015673,THEFT UNDER - BICYCLE,2017-09-23T00:00:00,2017,September,Saturday,23,266,18,2017-09-24T00:00:00,2017,September,Sunday,24,267,23,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,MA,,OT,21,BLK,600.0,STOLEN,6093,"{'type': 'Point', 'coordinates': (-79.3632636, 43.66077482)}"
-6094,1691,GO-20179017570,THEFT UNDER - BICYCLE,2017-10-18T00:00:00,2017,October,Wednesday,18,291,15,2017-10-19T00:00:00,2017,October,Thursday,19,292,20,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,UK,ZW,RG,18,GRY,2000.0,STOLEN,6094,"{'type': 'Point', 'coordinates': (-79.3647333, 43.66044764)}"
-6095,1697,GO-20171882354,THEFT OF EBIKE UNDER $5000,2017-10-17T00:00:00,2017,October,Tuesday,17,290,15,2017-10-17T00:00:00,2017,October,Tuesday,17,290,18,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,,EL,1,BLK,600.0,STOLEN,6095,"{'type': 'Point', 'coordinates': (-79.36597615, 43.65944077)}"
-6096,1704,GO-20179017708,THEFT UNDER - BICYCLE,2017-10-17T00:00:00,2017,October,Tuesday,17,290,0,2017-10-20T00:00:00,2017,October,Friday,20,293,13,D51,Toronto,72,Regent Park (72),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,RG,21,BLU,500.0,STOLEN,6096,"{'type': 'Point', 'coordinates': (-79.36198608, 43.65760269)}"
-6097,1775,GO-20179018626,THEFT UNDER - BICYCLE,2017-10-31T00:00:00,2017,October,Tuesday,31,304,6,2017-10-31T00:00:00,2017,October,Tuesday,31,304,14,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,MA,LARKSPUR CS2,RG,21,GRY,200.0,STOLEN,6097,"{'type': 'Point', 'coordinates': (-79.36267396, 43.65942878)}"
-6098,1784,GO-20171987378,B&E,2017-11-02T00:00:00,2017,November,Thursday,2,306,13,2017-11-02T00:00:00,2017,November,Thursday,2,306,19,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN,,MT,10,BLK,40.0,STOLEN,6098,"{'type': 'Point', 'coordinates': (-79.35605001000002, 43.66165771)}"
-6099,1850,GO-20179019711,THEFT UNDER - BICYCLE,2017-11-01T00:00:00,2017,November,Wednesday,1,305,13,2017-11-15T00:00:00,2017,November,Wednesday,15,319,13,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,OT,ENDURO PRO,MT,18,BRN,0.0,STOLEN,6099,"{'type': 'Point', 'coordinates': (-79.36019846, 43.66007445)}"
-6100,1863,GO-20179020092,THEFT UNDER - BICYCLE,2017-11-16T00:00:00,2017,November,Thursday,16,320,11,2017-11-20T00:00:00,2017,November,Monday,20,324,15,D51,Toronto,72,Regent Park (72),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,,,MT,15,WHI,225.0,STOLEN,6100,"{'type': 'Point', 'coordinates': (-79.36597615, 43.65944077)}"
-6101,1924,GO-20179021540,THEFT UNDER - BICYCLE,2017-12-06T00:00:00,2017,December,Wednesday,6,340,23,2017-12-07T00:00:00,2017,December,Thursday,7,341,17,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,VIA,RG,12,PNK,1000.0,STOLEN,6101,"{'type': 'Point', 'coordinates': (-79.36126289, 43.65912823)}"
-6102,1966,GO-20189000378,THEFT UNDER - BICYCLE,2017-12-23T00:00:00,2017,December,Saturday,23,357,13,2018-01-05T00:00:00,2018,January,Friday,5,5,15,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,JAKE THE SNAKE,TO,24,BLK,1000.0,STOLEN,6102,"{'type': 'Point', 'coordinates': (-79.36126289, 43.65912823)}"
-6103,1985,GO-20189001063,THEFT UNDER - BICYCLE,2018-01-12T00:00:00,2018,January,Friday,12,12,17,2018-01-12T00:00:00,2018,January,Friday,12,12,20,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,OT,DANFORTH CYCLEM,RG,30,BLK,1100.0,STOLEN,6103,"{'type': 'Point', 'coordinates': (-79.36267396, 43.65942878)}"
-6104,2150,GO-20189011243,THEFT UNDER,2018-04-10T00:00:00,2018,April,Tuesday,10,100,8,2018-04-11T00:00:00,2018,April,Wednesday,11,101,10,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,OT,FIXED SPEED ALU,RG,1,BLK,85.0,STOLEN,6104,"{'type': 'Point', 'coordinates': (-79.36174292, 43.66035993)}"
-6105,2156,GO-2018655710,B&E,2017-11-25T00:00:00,2017,November,Saturday,25,329,5,2018-04-13T00:00:00,2018,April,Friday,13,103,13,D51,Toronto,72,Regent Park (72),"Single Home, House (Attach Garage, Cottage, Mobile)",House,PE,,RG,1,YEL,400.0,STOLEN,6105,"{'type': 'Point', 'coordinates': (-79.35741721, 43.65952408)}"
-6106,2274,GO-20189014244,THEFT UNDER - BICYCLE,2018-05-08T00:00:00,2018,May,Tuesday,8,128,19,2018-05-09T00:00:00,2018,May,Wednesday,9,129,9,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,GASTON,RG,3,BLK,500.0,STOLEN,6106,"{'type': 'Point', 'coordinates': (-79.36126289, 43.65912823)}"
-6107,2387,GO-20189016134,THEFT UNDER - BICYCLE,2018-05-22T00:00:00,2018,May,Tuesday,22,142,22,2018-05-24T00:00:00,2018,May,Thursday,24,144,20,D51,Toronto,72,Regent Park (72),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,KROSSPORT WOMEN,RG,18,WHI,360.0,STOLEN,6107,"{'type': 'Point', 'coordinates': (-79.36267396, 43.65942878)}"
-6108,2389,GO-20189016138,THEFT UNDER - BICYCLE,2018-05-24T00:00:00,2018,May,Thursday,24,144,19,2018-05-24T00:00:00,2018,May,Thursday,24,144,21,D51,Toronto,72,Regent Park (72),Convenience Stores,Commercial,UK,,MT,7,BLK,600.0,STOLEN,6108,"{'type': 'Point', 'coordinates': (-79.36597615, 43.65944077)}"
-6109,2461,GO-20181016355,POSSESSION PROPERTY OBC UNDER,2018-06-05T00:00:00,2018,June,Tuesday,5,156,0,2018-06-05T00:00:00,2018,June,Tuesday,5,156,9,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,NITRO XT,RG,21,BLUTWH,300.0,RECOVERED,6109,"{'type': 'Point', 'coordinates': (-79.36442266, 43.65561541)}"
-6110,2514,GO-20189017989,THEFT UNDER - BICYCLE,2018-06-08T00:00:00,2018,June,Friday,8,159,17,2018-06-09T00:00:00,2018,June,Saturday,9,160,11,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,1,BLK,400.0,STOLEN,6110,"{'type': 'Point', 'coordinates': (-79.36296147, 43.660087000000004)}"
-6111,2596,GO-20189019038,THEFT UNDER - BICYCLE,2018-06-15T00:00:00,2018,June,Friday,15,166,12,2018-06-17T00:00:00,2018,June,Sunday,17,168,12,D51,Toronto,72,Regent Park (72),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,,MT,21,WHI,449.0,STOLEN,6111,"{'type': 'Point', 'coordinates': (-79.361458, 43.66315822)}"
-6112,2689,GO-20189020349,THEFT UNDER - BICYCLE,2018-06-21T00:00:00,2018,June,Thursday,21,172,19,2018-06-26T00:00:00,2018,June,Tuesday,26,177,10,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM 2,MT,27,GRY,800.0,STOLEN,6112,"{'type': 'Point', 'coordinates': (-79.36267396, 43.65942878)}"
-6113,2851,GO-20181295798,THEFT UNDER - BICYCLE,2018-07-13T00:00:00,2018,July,Friday,13,194,13,2018-07-16T00:00:00,2018,July,Monday,16,197,10,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,NORCO,PINNACLE,MT,12,BLK,350.0,STOLEN,6113,"{'type': 'Point', 'coordinates': (-79.36126289, 43.65912823)}"
-6114,2897,GO-20189023163,THEFT UNDER - BICYCLE,2018-07-20T00:00:00,2018,July,Friday,20,201,0,2018-07-20T00:00:00,2018,July,Friday,20,201,10,D51,Toronto,72,Regent Park (72),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,MT,7,RED,0.0,STOLEN,6114,"{'type': 'Point', 'coordinates': (-79.35682972, 43.66437541)}"
-6115,2899,GO-20189023155,THEFT UNDER - BICYCLE,2018-07-19T00:00:00,2018,July,Thursday,19,200,8,2018-07-20T00:00:00,2018,July,Friday,20,201,8,D51,Toronto,72,Regent Park (72),"Open Areas (Lakes, Parks, Rivers)",Outside,CA,QUICK 7,RG,18,YELBLK,700.0,STOLEN,6115,"{'type': 'Point', 'coordinates': (-79.3632636, 43.66077482)}"
-6116,2930,GO-20189023555,THEFT UNDER - BICYCLE,2018-07-20T00:00:00,2018,July,Friday,20,201,18,2018-07-23T00:00:00,2018,July,Monday,23,204,14,D51,Toronto,72,Regent Park (72),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,CUSTOM TOURING,TO,3,BLK,1504.0,STOLEN,6116,"{'type': 'Point', 'coordinates': (-79.35888422, 43.65683302)}"
-6117,3089,GO-20189025246,THEFT UNDER,2018-07-28T00:00:00,2018,July,Saturday,28,209,17,2018-08-06T00:00:00,2018,August,Monday,6,218,17,D51,Toronto,72,Regent Park (72),Ttc Subway Train,Transit,UNKNOWN MAKE,,OT,12,BLK,,STOLEN,6117,"{'type': 'Point', 'coordinates': (-79.36597615, 43.65944077)}"
-6118,3184,GO-20189026193,THEFT UNDER - BICYCLE,2018-08-12T00:00:00,2018,August,Sunday,12,224,17,2018-08-13T00:00:00,2018,August,Monday,13,225,15,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,OT,HARDROCK DISC S,MT,18,BLK,1600.0,STOLEN,6118,"{'type': 'Point', 'coordinates': (-79.36019846, 43.66007445)}"
-6119,3236,GO-20181491894,B&E W'INTENT,2018-08-13T00:00:00,2018,August,Monday,13,225,1,2018-08-13T00:00:00,2018,August,Monday,13,225,16,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,HARDROCK,MT,18,BLK,1600.0,STOLEN,6119,"{'type': 'Point', 'coordinates': (-79.36019846, 43.66007445)}"
-6120,3237,GO-20181491894,B&E W'INTENT,2018-08-13T00:00:00,2018,August,Monday,13,225,1,2018-08-13T00:00:00,2018,August,Monday,13,225,16,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,CUBE,ROADBIKE,OT,18,BLKRED,2500.0,STOLEN,6120,"{'type': 'Point', 'coordinates': (-79.36019846, 43.66007445)}"
-6121,3621,GO-20181844150,POSSESSION PROPERTY OBC UNDER,2018-10-05T00:00:00,2018,October,Friday,5,278,20,2018-10-05T00:00:00,2018,October,Friday,5,278,20,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,,RG,18,BLK,,RECOVERED,6121,"{'type': 'Point', 'coordinates': (-79.36496226, 43.65694355)}"
-6122,3727,GO-20181923433,THEFT UNDER - BICYCLE,2018-10-01T00:00:00,2018,October,Monday,1,274,0,2018-10-19T00:00:00,2018,October,Friday,19,292,11,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,CCM,,MT,12,BLK,400.0,STOLEN,6122,"{'type': 'Point', 'coordinates': (-79.35926483000001, 43.66093395)}"
-6123,3950,GO-20189042840,THEFT UNDER - BICYCLE,2018-12-16T00:00:00,2018,December,Sunday,16,350,17,2018-12-20T00:00:00,2018,December,Thursday,20,354,15,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,OT,ORBITA,RG,18,PLE,249.0,STOLEN,6123,"{'type': 'Point', 'coordinates': (-79.3632636, 43.66077482)}"
-6124,4044,GO-20199005062,B&E,2019-02-10T00:00:00,2019,February,Sunday,10,41,18,2019-02-10T00:00:00,2019,February,Sunday,10,41,22,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,TR,REMEDY 7,MT,27,BLK,4199.0,STOLEN,6124,"{'type': 'Point', 'coordinates': (-79.36267396, 43.65942878)}"
-6125,4071,GO-20199006969,THEFT UNDER - BICYCLE,2019-02-27T00:00:00,2019,February,Wednesday,27,58,7,2019-03-01T00:00:00,2019,March,Friday,1,60,14,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE 1,RG,27,GRY,1000.0,STOLEN,6125,"{'type': 'Point', 'coordinates': (-79.3632636, 43.66077482)}"
-6126,4127,GO-20199010544,THEFT UNDER,2019-04-03T00:00:00,2019,April,Wednesday,3,93,18,2019-04-03T00:00:00,2019,April,Wednesday,3,93,21,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,EMONDA ALR 6 20,RC,22,BLK,3400.0,STOLEN,6126,"{'type': 'Point', 'coordinates': (-79.36442266, 43.65561541)}"
-6127,4130,GO-20199010544,THEFT UNDER,2019-04-03T00:00:00,2019,April,Wednesday,3,93,18,2019-04-03T00:00:00,2019,April,Wednesday,3,93,21,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,RC,22,BLK,3400.0,STOLEN,6127,"{'type': 'Point', 'coordinates': (-79.36442266, 43.65561541)}"
-6128,4148,GO-20199011225,THEFT UNDER,2019-04-09T00:00:00,2019,April,Tuesday,9,99,8,2019-04-09T00:00:00,2019,April,Tuesday,9,99,15,D51,Toronto,72,Regent Park (72),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,MEC HOLD STEADY,OT,8,RED,1500.0,STOLEN,6128,"{'type': 'Point', 'coordinates': (-79.3649748, 43.66105179)}"
-6129,4238,GO-2019820018,B&E,2019-04-27T00:00:00,2019,April,Saturday,27,117,0,2019-05-06T00:00:00,2019,May,Monday,6,126,13,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,NORCO,OPTIC,MT,0,LGR,2500.0,STOLEN,6129,"{'type': 'Point', 'coordinates': (-79.3632636, 43.66077482)}"
-6130,4253,GO-20199014412,THEFT UNDER,2019-05-08T00:00:00,2019,May,Wednesday,8,128,17,2019-05-09T00:00:00,2019,May,Thursday,9,129,8,D51,Toronto,72,Regent Park (72),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,700C,MT,7,GRN,299.0,STOLEN,6130,"{'type': 'Point', 'coordinates': (-79.3647333, 43.66044764)}"
-6131,4263,GO-20199014680,B&E,2019-04-29T00:00:00,2019,April,Monday,29,119,10,2019-05-11T00:00:00,2019,May,Saturday,11,131,11,D51,Toronto,72,Regent Park (72),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,MX 2018,MT,12,LGR,800.0,STOLEN,6131,"{'type': 'Point', 'coordinates': (-79.36267396, 43.65942878)}"
-6132,4320,GO-2019933102,B&E,2019-05-22T00:00:00,2019,May,Wednesday,22,142,5,2019-05-22T00:00:00,2019,May,Wednesday,22,142,12,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,SCHWINN,,MT,1,WHI,300.0,STOLEN,6132,"{'type': 'Point', 'coordinates': (-79.36267396, 43.65942878)}"
-6133,4325,GO-20199010544,THEFT UNDER,2019-04-03T00:00:00,2019,April,Wednesday,3,93,18,2019-04-03T00:00:00,2019,April,Wednesday,3,93,21,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,TREK EMONDA ALR,RC,22,BLK,3400.0,STOLEN,6133,"{'type': 'Point', 'coordinates': (-79.36442266, 43.65561541)}"
-6134,4329,GO-2019942985,B&E,2019-05-21T00:00:00,2019,May,Tuesday,21,141,13,2019-05-23T00:00:00,2019,May,Thursday,23,143,21,D51,Toronto,72,Regent Park (72),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CANNONDALE,,RG,10,BLKGRN,2000.0,STOLEN,6134,"{'type': 'Point', 'coordinates': (-79.36267396, 43.65942878)}"
-6135,4366,GO-20199016492,B&E,2019-05-24T00:00:00,2019,May,Friday,24,144,8,2019-05-27T00:00:00,2019,May,Monday,27,147,15,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,SU,AMERA COMP.,OT,11,BLK,3000.0,STOLEN,6135,"{'type': 'Point', 'coordinates': (-79.36267396, 43.65942878)}"
-6136,4531,GO-20199019110,THEFT UNDER,2019-06-17T00:00:00,2019,June,Monday,17,168,18,2019-06-18T00:00:00,2019,June,Tuesday,18,169,15,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,TR,EDMONDS ALT 4 D,RC,10,BLK,2200.0,STOLEN,6136,"{'type': 'Point', 'coordinates': (-79.3632636, 43.66077482)}"
-6137,4665,GO-20199020923,THEFT UNDER,2019-07-02T00:00:00,2019,July,Tuesday,2,183,23,2019-07-04T00:00:00,2019,July,Thursday,4,185,1,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,CA,CAAD 12,RC,12,SIL,2000.0,STOLEN,6137,"{'type': 'Point', 'coordinates': (-79.3632636, 43.66077482)}"
-6138,5116,GO-20199027036,THEFT UNDER,2019-08-20T00:00:00,2019,August,Tuesday,20,232,23,2019-08-21T00:00:00,2019,August,Wednesday,21,233,7,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,1,BLK,450.0,STOLEN,6138,"{'type': 'Point', 'coordinates': (-79.3632636, 43.66077482)}"
-6139,5159,GO-20191626171,B&E,2019-08-25T00:00:00,2019,August,Sunday,25,237,23,2019-08-26T00:00:00,2019,August,Monday,26,238,8,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,CANNONDALE,,MT,0,BLK,,STOLEN,6139,"{'type': 'Point', 'coordinates': (-79.35687193, 43.65823653)}"
-6140,5160,GO-20191626171,B&E,2019-08-25T00:00:00,2019,August,Sunday,25,237,23,2019-08-26T00:00:00,2019,August,Monday,26,238,8,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,GIANT,SEDONA,MT,0,BLU,,STOLEN,6140,"{'type': 'Point', 'coordinates': (-79.35687193, 43.65823653)}"
-6141,5211,GO-20191680093,THEFT UNDER,2019-07-29T00:00:00,2019,July,Monday,29,210,19,2019-09-02T00:00:00,2019,September,Monday,2,245,20,D51,Toronto,72,Regent Park (72),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,HUFFY,CRUISER,RG,0,BLK,500.0,STOLEN,6141,"{'type': 'Point', 'coordinates': (-79.36267396, 43.65942878)}"
-6142,5241,GO-20191690487,THEFT UNDER,2019-08-15T00:00:00,2019,August,Thursday,15,227,0,2019-09-04T00:00:00,2019,September,Wednesday,4,247,9,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,SUPERCYCLE,MOUNTAIN BIKE,MT,0,ONG,200.0,STOLEN,6142,"{'type': 'Point', 'coordinates': (-79.3624383, 43.65887568)}"
-6143,5306,GO-20199029771,THEFT UNDER,2019-09-12T00:00:00,2019,September,Thursday,12,255,18,2019-09-12T00:00:00,2019,September,Thursday,12,255,21,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM 2,RG,27,BLU,800.0,STOLEN,6143,"{'type': 'Point', 'coordinates': (-79.36624697, 43.66011067)}"
-6144,5313,GO-20199029827,THEFT UNDER,2019-09-12T00:00:00,2019,September,Thursday,12,255,20,2019-09-13T00:00:00,2019,September,Friday,13,256,9,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,OT,ORIGAMI,FO,7,PLE,800.0,STOLEN,6144,"{'type': 'Point', 'coordinates': (-79.36267396, 43.65942878)}"
-6145,5704,GO-20199038004,THEFT UNDER,2019-11-17T00:00:00,2019,November,Sunday,17,321,23,2019-11-18T00:00:00,2019,November,Monday,18,322,22,D51,Toronto,72,Regent Park (72),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,FORAY 3,MT,8,PLE,700.0,STOLEN,6145,"{'type': 'Point', 'coordinates': (-79.35946503, 43.65830111)}"
-6146,5764,GO-20192415552,B&E,2019-12-15T00:00:00,2019,December,Sunday,15,349,13,2019-12-15T00:00:00,2019,December,Sunday,15,349,13,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,EVIAN,,RG,10,WHI,350.0,STOLEN,6146,"{'type': 'Point', 'coordinates': (-79.35751963, 43.65976947)}"
-6147,5778,GO-20201519594,POSSESSION PROPERTY OBC UNDER,2020-08-13T00:00:00,2020,August,Thursday,13,226,20,2020-08-13T00:00:00,2020,August,Thursday,13,226,20,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,AMOGO,OT,5,BLK,2500.0,STOLEN,6147,"{'type': 'Point', 'coordinates': (-79.35605001000002, 43.66165771)}"
-6148,5908,GO-2020355516,THEFT UNDER - BICYCLE,2020-01-30T00:00:00,2020,January,Thursday,30,30,15,2020-02-19T00:00:00,2020,February,Wednesday,19,50,15,D51,Toronto,72,Regent Park (72),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RALEIGH,,MT,18,BLUGRY,500.0,STOLEN,6148,"{'type': 'Point', 'coordinates': (-79.36252926, 43.65680676)}"
-6149,5909,GO-2020355516,THEFT UNDER - BICYCLE,2020-01-30T00:00:00,2020,January,Thursday,30,30,15,2020-02-19T00:00:00,2020,February,Wednesday,19,50,15,D51,Toronto,72,Regent Park (72),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TREK,,MT,21,GRY,550.0,STOLEN,6149,"{'type': 'Point', 'coordinates': (-79.36252926, 43.65680676)}"
-6150,5917,GO-20209006406,THEFT UNDER,2019-11-01T00:00:00,2019,November,Friday,1,305,11,2020-02-22T00:00:00,2020,February,Saturday,22,53,11,D51,Toronto,72,Regent Park (72),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,OUTLAW 2019,RG,1,BLK,2200.0,STOLEN,6150,"{'type': 'Point', 'coordinates': (-79.36019846, 43.66007445)}"
-6151,5964,GO-20209009002,THEFT UNDER,2020-03-15T00:00:00,2020,March,Sunday,15,75,9,2020-03-15T00:00:00,2020,March,Sunday,15,75,13,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,27,SIL,1400.0,STOLEN,6151,"{'type': 'Point', 'coordinates': (-79.35685690000001, 43.65820104)}"
-6152,5995,GO-2020613414,THEFT OF EBIKE UNDER $5000,2020-03-25T00:00:00,2020,March,Wednesday,25,85,17,2020-03-27T00:00:00,2020,March,Friday,27,87,18,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,OTHER,,EL,0,OTH,2000.0,STOLEN,6152,"{'type': 'Point', 'coordinates': (-79.3649748, 43.66105179)}"
-6153,6299,GO-20209014589,THEFT UNDER,2020-06-03T00:00:00,2020,June,Wednesday,3,155,21,2020-06-04T00:00:00,2020,June,Thursday,4,156,16,D51,Toronto,72,Regent Park (72),"Open Areas (Lakes, Parks, Rivers)",Outside,GI,ANYROAD 2,RG,18,BLK,1220.0,STOLEN,6153,"{'type': 'Point', 'coordinates': (-79.35946503, 43.65830111)}"
-6154,6304,GO-20209014629,THEFT UNDER,2020-06-04T00:00:00,2020,June,Thursday,4,156,22,2020-06-05T00:00:00,2020,June,Friday,5,157,11,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,CC,,RG,16,SIL,350.0,STOLEN,6154,"{'type': 'Point', 'coordinates': (-79.3632636, 43.66077482)}"
-6155,6305,GO-20201017831,THEFT UNDER - BICYCLE,2020-06-02T00:00:00,2020,June,Tuesday,2,154,16,2020-06-02T00:00:00,2020,June,Tuesday,2,154,19,D51,Toronto,72,Regent Park (72),"Open Areas (Lakes, Parks, Rivers)",Outside,SCOTT,,RC,7,BLK,1000.0,STOLEN,6155,"{'type': 'Point', 'coordinates': (-79.36174292, 43.66035993)}"
-6156,6485,GO-20209016351,THEFT UNDER,2020-06-17T00:00:00,2020,June,Wednesday,17,169,22,2020-06-27T00:00:00,2020,June,Saturday,27,179,23,D51,Toronto,72,Regent Park (72),Convenience Stores,Commercial,UK,THE RAPTOR,RG,1,RED,446.0,STOLEN,6156,"{'type': 'Point', 'coordinates': (-79.36597615, 43.65944077)}"
-6157,6546,GO-20201249609,THEFT OVER - BICYCLE,2020-06-12T00:00:00,2020,June,Friday,12,164,13,2020-07-06T00:00:00,2020,July,Monday,6,188,17,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN,UNKNOWN,EL,5,,600.0,STOLEN,6157,"{'type': 'Point', 'coordinates': (-79.35605001000002, 43.66165771)}"
-6158,7038,GO-20201585595,PROPERTY - FOUND,2020-08-22T00:00:00,2020,August,Saturday,22,235,20,2020-08-23T00:00:00,2020,August,Sunday,23,236,10,D51,Toronto,72,Regent Park (72),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,MT,1,TRQ,,UNKNOWN,6158,"{'type': 'Point', 'coordinates': (-79.36546109, 43.65817175)}"
-6159,7084,GO-20209021420,THEFT UNDER,2020-08-26T00:00:00,2020,August,Wednesday,26,239,7,2020-08-26T00:00:00,2020,August,Wednesday,26,239,13,D51,Toronto,72,Regent Park (72),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,MADONE,RC,10,WHI,2500.0,STOLEN,6159,"{'type': 'Point', 'coordinates': (-79.35687193, 43.65823653)}"
-6160,7508,GO-20209026949,THEFT UNDER,2020-10-19T00:00:00,2020,October,Monday,19,293,11,2020-10-19T00:00:00,2020,October,Monday,19,293,22,D51,Toronto,72,Regent Park (72),Convenience Stores,Commercial,OT,RED STEEL,RG,14,RED,399.0,STOLEN,6160,"{'type': 'Point', 'coordinates': (-79.36597615, 43.65944077)}"
-6161,7700,GO-20209031791,THEFT UNDER,2020-12-06T00:00:00,2020,December,Sunday,6,341,12,2020-12-12T00:00:00,2020,December,Saturday,12,347,13,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,GI,CYPRESS,TO,15,LGR,0.0,STOLEN,6161,"{'type': 'Point', 'coordinates': (-79.3647333, 43.66044764)}"
-6162,7922,GO-20149003317,THEFT UNDER,2014-05-09T00:00:00,2014,May,Friday,9,129,6,2014-05-13T00:00:00,2014,May,Tuesday,13,133,14,D51,Toronto,72,Regent Park (72),Unknown,Other,KH,FLITE 720,RC,10,LBL,1400.0,STOLEN,6162,"{'type': 'Point', 'coordinates': (-79.35649069, 43.65737489000001)}"
-6163,7952,GO-20142122036,THEFT UNDER,2014-05-21T00:00:00,2014,May,Wednesday,21,141,9,2014-05-21T00:00:00,2014,May,Wednesday,21,141,12,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,4500,MT,21,BLU,200.0,STOLEN,6163,"{'type': 'Point', 'coordinates': (-79.36222438, 43.65609425)}"
-6164,8005,GO-20142189645,THEFT UNDER,2013-05-04T00:00:00,2013,May,Saturday,4,124,12,2014-05-31T00:00:00,2014,May,Saturday,31,151,9,D51,Toronto,72,Regent Park (72),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPALDING,,MT,18,GRY,500.0,STOLEN,6164,"{'type': 'Point', 'coordinates': (-79.36019846, 43.66007445)}"
-6165,8292,GO-20142431618,THEFT UNDER,2014-06-30T00:00:00,2014,June,Monday,30,181,13,2014-07-04T00:00:00,2014,July,Friday,4,185,20,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,EL,12,,1800.0,STOLEN,6165,"{'type': 'Point', 'coordinates': (-79.36597615, 43.65944077)}"
-6166,8391,GO-20149004891,THEFT UNDER,2014-07-10T00:00:00,2014,July,Thursday,10,191,19,2014-07-10T00:00:00,2014,July,Thursday,10,191,19,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,2010,OT,8,GRY,639.0,STOLEN,6166,"{'type': 'Point', 'coordinates': (-79.3647333, 43.66044764)}"
-6167,8399,GO-20149004920,THEFT UNDER,2014-07-10T00:00:00,2014,July,Thursday,10,191,17,2014-07-11T00:00:00,2014,July,Friday,11,192,22,D51,Toronto,72,Regent Park (72),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,TALON,MT,27,WHI,1029.0,STOLEN,6167,"{'type': 'Point', 'coordinates': (-79.36267396, 43.65942878)}"
-6168,8471,GO-20142533476,THEFT UNDER,2014-07-08T00:00:00,2014,July,Tuesday,8,189,15,2014-07-20T00:00:00,2014,July,Sunday,20,201,6,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,SC,0,,,STOLEN,6168,"{'type': 'Point', 'coordinates': (-79.36496226, 43.65694355)}"
-6169,8538,GO-20142602639,THEFT UNDER,2014-07-22T00:00:00,2014,July,Tuesday,22,203,16,2014-07-30T00:00:00,2014,July,Wednesday,30,211,16,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,EL,1,BLU,950.0,STOLEN,6169,"{'type': 'Point', 'coordinates': (-79.35864726, 43.66241529)}"
-6170,8656,GO-20149005916,THEFT UNDER,2014-08-13T00:00:00,2014,August,Wednesday,13,225,8,2014-08-13T00:00:00,2014,August,Wednesday,13,225,22,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,YORKVILLE 2012,RG,21,GRY,350.0,STOLEN,6170,"{'type': 'Point', 'coordinates': (-79.36174292, 43.66035993)}"
-6171,8661,GO-20149005955,THEFT UNDER,2014-08-14T00:00:00,2014,August,Thursday,14,226,21,2014-08-14T00:00:00,2014,August,Thursday,14,226,21,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,TR,,OT,24,BLK,650.0,STOLEN,6171,"{'type': 'Point', 'coordinates': (-79.36019846, 43.66007445)}"
-6172,8680,GO-20149006015,THEFT UNDER,2014-08-14T00:00:00,2014,August,Thursday,14,226,23,2014-08-19T00:00:00,2014,August,Tuesday,19,231,22,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,OT,CAFE 3,RG,3,SIL,400.0,STOLEN,6172,"{'type': 'Point', 'coordinates': (-79.3647333, 43.66044764)}"
-6173,8837,GO-20142875027,THEFT UNDER,2014-09-08T00:00:00,2014,September,Monday,8,251,17,2014-09-09T00:00:00,2014,September,Tuesday,9,252,12,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,EL,1,BLU,1200.0,STOLEN,6173,"{'type': 'Point', 'coordinates': (-79.35888422, 43.65683302)}"
-6174,8992,GO-20143004958,THEFT UNDER,2014-09-28T00:00:00,2014,September,Sunday,28,271,22,2014-09-29T00:00:00,2014,September,Monday,29,272,1,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,,EL,1,MRN,1145.0,STOLEN,6174,"{'type': 'Point', 'coordinates': (-79.35864726, 43.66241529)}"
-6175,9213,GO-20143422504,THEFT UNDER,2014-12-04T00:00:00,2014,December,Thursday,4,338,10,2014-12-04T00:00:00,2014,December,Thursday,4,338,11,D51,Toronto,72,Regent Park (72),"Religious Facilities (Synagogue, Church, Convent, Mosque)",Other,OTHER,FORTRESS 1700,SC,2,BLK,,STOLEN,6175,"{'type': 'Point', 'coordinates': (-79.36371778000002, 43.65992508)}"
-6176,9596,GO-2015812159,THEFT UNDER,2015-05-03T00:00:00,2015,May,Sunday,3,123,12,2015-05-15T00:00:00,2015,May,Friday,15,135,18,D51,Toronto,72,Regent Park (72),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SUPERCYCLE,,MT,0,BLU,300.0,STOLEN,6176,"{'type': 'Point', 'coordinates': (-79.36267396, 43.65942878)}"
-6177,9605,GO-2015835182,THEFT UNDER,2015-05-19T00:00:00,2015,May,Tuesday,19,139,7,2015-05-19T00:00:00,2015,May,Tuesday,19,139,16,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,DAYNAK - VIENNA,EL,1,BLKRED,500.0,STOLEN,6177,"{'type': 'Point', 'coordinates': (-79.35685690000001, 43.65820104)}"
-6178,9645,GO-2015866635,B&E,2015-05-24T00:00:00,2015,May,Sunday,24,144,12,2015-05-24T00:00:00,2015,May,Sunday,24,144,21,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,OTHER,,RG,12,GRN,500.0,STOLEN,6178,"{'type': 'Point', 'coordinates': (-79.35888422, 43.65683302)}"
-6179,9648,GO-2015873821,THEFT UNDER,2015-05-25T00:00:00,2015,May,Monday,25,145,17,2015-05-25T00:00:00,2015,May,Monday,25,145,20,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,PIERROT,BLACK AND WHITE,RC,1,BLKWHI,400.0,STOLEN,6179,"{'type': 'Point', 'coordinates': (-79.3632636, 43.66077482)}"
-6180,9995,GO-20159004467,THEFT UNDER,2015-05-29T00:00:00,2015,May,Friday,29,149,14,2015-07-12T00:00:00,2015,July,Sunday,12,193,19,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,OT,PANAMAO X 6,OT,30,BRN,1200.0,STOLEN,6180,"{'type': 'Point', 'coordinates': (-79.36019846, 43.66007445)}"
-6181,10301,GO-20151439424,THEFT UNDER,2015-06-20T00:00:00,2015,June,Saturday,20,171,23,2015-08-21T00:00:00,2015,August,Friday,21,233,13,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,TITAN,EL,0,BLK,2000.0,STOLEN,6181,"{'type': 'Point', 'coordinates': (-79.36442266, 43.65561541)}"
-6182,10312,GO-20151440192,THEFT UNDER,2015-08-21T00:00:00,2015,August,Friday,21,233,15,2015-08-21T00:00:00,2015,August,Friday,21,233,15,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MOTORINO,XPD,EL,6,,,STOLEN,6182,"{'type': 'Point', 'coordinates': (-79.35605001000002, 43.66165771)}"
-6183,10528,GO-20151647476,THEFT UNDER,2015-09-23T00:00:00,2015,September,Wednesday,23,266,19,2015-09-23T00:00:00,2015,September,Wednesday,23,266,19,D51,Toronto,72,Regent Park (72),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,21,WHIBLU,1500.0,STOLEN,6183,"{'type': 'Point', 'coordinates': (-79.36293169, 43.65807657)}"
-6184,10529,GO-20159007605,THEFT UNDER,2015-09-21T00:00:00,2015,September,Monday,21,264,13,2015-09-23T00:00:00,2015,September,Wednesday,23,266,10,D51,Toronto,72,Regent Park (72),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,TSR 9,OT,9,GRN,2500.0,STOLEN,6184,"{'type': 'Point', 'coordinates': (-79.35925501, 43.65771025)}"
-6185,10613,GO-20151748377,THEFT UNDER,2015-10-09T00:00:00,2015,October,Friday,9,282,18,2015-10-10T00:00:00,2015,October,Saturday,10,283,10,D51,Toronto,72,Regent Park (72),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,,OT,0,,,STOLEN,6185,"{'type': 'Point', 'coordinates': (-79.36198608, 43.65760269)}"
-6186,11022,GO-2016403804,THEFT UNDER - BICYCLE,2016-03-07T00:00:00,2016,March,Monday,7,67,13,2016-03-08T00:00:00,2016,March,Tuesday,8,68,6,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,GT5,EL,0,BLUWHI,3000.0,STOLEN,6186,"{'type': 'Point', 'coordinates': (-79.36318424, 43.6558798)}"
-6187,11051,GO-2016453685,THEFT UNDER,2016-03-04T00:00:00,2016,March,Friday,4,64,0,2016-03-16T00:00:00,2016,March,Wednesday,16,76,8,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN,,OT,1,,,STOLEN,6187,"{'type': 'Point', 'coordinates': (-79.36267396, 43.65942878)}"
-6188,11099,GO-2016572968,THEFT UNDER,2016-04-04T00:00:00,2016,April,Monday,4,95,19,2016-04-04T00:00:00,2016,April,Monday,4,95,19,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,JAMES,,RG,21,BLK,1000.0,STOLEN,6188,"{'type': 'Point', 'coordinates': (-79.36597615, 43.65944077)}"
-6189,11315,GO-20169004573,THEFT UNDER - BICYCLE,2016-05-16T00:00:00,2016,May,Monday,16,137,11,2016-05-16T00:00:00,2016,May,Monday,16,137,11,D51,Toronto,72,Regent Park (72),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GF,,MT,21,,0.0,STOLEN,6189,"{'type': 'Point', 'coordinates': (-79.35685690000001, 43.65820104)}"
-6190,11400,GO-2016915784,THEFT UNDER - BICYCLE,2016-05-27T00:00:00,2016,May,Friday,27,148,15,2016-05-27T00:00:00,2016,May,Friday,27,148,16,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,TANGO,FO,4,BLU,300.0,STOLEN,6190,"{'type': 'Point', 'coordinates': (-79.3649748, 43.66105179)}"
-6191,11477,GO-20169005500,THEFT UNDER - BICYCLE,2016-06-08T00:00:00,2016,June,Wednesday,8,160,22,2016-06-09T00:00:00,2016,June,Thursday,9,161,10,D51,Toronto,72,Regent Park (72),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,SUNDANCE 800,MT,40,BLK,800.0,STOLEN,6191,"{'type': 'Point', 'coordinates': (-79.36019846, 43.66007445)}"
-6192,11622,GO-20169006275,THEFT UNDER,2016-06-23T00:00:00,2016,June,Thursday,23,175,17,2016-06-24T00:00:00,2016,June,Friday,24,176,9,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,SU,,MT,21,RED,200.0,STOLEN,6192,"{'type': 'Point', 'coordinates': (-79.36019846, 43.66007445)}"
-6193,11647,GO-20161118089,B&E,2016-06-26T00:00:00,2016,June,Sunday,26,178,12,2016-06-26T00:00:00,2016,June,Sunday,26,178,15,D51,Toronto,72,Regent Park (72),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,GIANT,MT,12,BLK,600.0,STOLEN,6193,"{'type': 'Point', 'coordinates': (-79.3649748, 43.66105179)}"
-6194,11921,GO-20161317464,THEFT UNDER - BICYCLE,2016-07-23T00:00:00,2016,July,Saturday,23,205,14,2016-07-27T00:00:00,2016,July,Wednesday,27,209,8,D51,Toronto,72,Regent Park (72),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RALEIGH,,OT,18,BLK,240.0,STOLEN,6194,"{'type': 'Point', 'coordinates': (-79.3632636, 43.66077482)}"
-6195,11935,GO-20161327355,THEFT UNDER - BICYCLE,2016-07-28T00:00:00,2016,July,Thursday,28,210,16,2016-07-28T00:00:00,2016,July,Thursday,28,210,16,D51,Toronto,72,Regent Park (72),"Religious Facilities (Synagogue, Church, Convent, Mosque)",Other,SUPERCYCLE,NONE,RG,21,BLU,150.0,STOLEN,6195,"{'type': 'Point', 'coordinates': (-79.36371778000002, 43.65992508)}"
-6196,12047,GO-20169008501,THEFT UNDER,2016-08-08T00:00:00,2016,August,Monday,8,221,19,2016-08-10T00:00:00,2016,August,Wednesday,10,223,11,D51,Toronto,72,Regent Park (72),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,HARDROCK CLASSI,MT,12,DGR,0.0,STOLEN,6196,"{'type': 'Point', 'coordinates': (-79.35842146, 43.66188892)}"
-6197,12368,GO-20169010587,THEFT UNDER - BICYCLE,2016-09-16T00:00:00,2016,September,Friday,16,260,22,2016-09-17T00:00:00,2016,September,Saturday,17,261,12,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,OT,BELLADONNA,RG,21,PLE,1000.0,STOLEN,6197,"{'type': 'Point', 'coordinates': (-79.35810175, 43.6591204)}"
-6198,12507,GO-20169011313,THEFT UNDER - BICYCLE,2016-09-26T00:00:00,2016,September,Monday,26,270,2,2016-09-29T00:00:00,2016,September,Thursday,29,273,16,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,21,BLU,0.0,STOLEN,6198,"{'type': 'Point', 'coordinates': (-79.35685690000001, 43.65820104)}"
-6199,11111,GO-20169003115,THEFT UNDER - BICYCLE,2016-04-06T00:00:00,2016,April,Wednesday,6,97,11,2016-04-06T00:00:00,2016,April,Wednesday,6,97,12,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,7.1,TO,28,GRY,500.0,STOLEN,6199,"{'type': 'Point', 'coordinates': (-79.37147803000002, 43.66351279)}"
-6200,11163,GO-20169003624,THEFT UNDER,2016-04-18T00:00:00,2016,April,Monday,18,109,7,2016-04-20T00:00:00,2016,April,Wednesday,20,111,16,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,04R1405,RG,7,BLU,198.0,STOLEN,6200,"{'type': 'Point', 'coordinates': (-79.36801682000001, 43.66446336)}"
-6201,11184,GO-20169003721,THEFT UNDER,2016-04-18T00:00:00,2016,April,Monday,18,109,7,2016-04-22T00:00:00,2016,April,Friday,22,113,20,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,04R1405,RG,7,BLU,198.0,STOLEN,6201,"{'type': 'Point', 'coordinates': (-79.36801682000001, 43.66446336)}"
-6202,11191,GO-20169003775,THEFT UNDER,2016-04-23T00:00:00,2016,April,Saturday,23,114,23,2016-04-24T00:00:00,2016,April,Sunday,24,115,14,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,RG,16,GRN,0.0,STOLEN,6202,"{'type': 'Point', 'coordinates': (-79.3721682, 43.66763473)}"
-6203,11260,GO-20169004171,THEFT UNDER - BICYCLE,2016-05-05T00:00:00,2016,May,Thursday,5,126,2,2016-05-05T00:00:00,2016,May,Thursday,5,126,10,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,CITY GLIDE,RG,1,BLK,650.0,STOLEN,6203,"{'type': 'Point', 'coordinates': (-79.36451274, 43.66387933)}"
-6204,11265,GO-20169004227,THEFT UNDER,2016-05-06T00:00:00,2016,May,Friday,6,127,3,2016-05-06T00:00:00,2016,May,Friday,6,127,15,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,CUSTOM MOD,MT,15,BLK,650.0,STOLEN,6204,"{'type': 'Point', 'coordinates': (-79.36801682000001, 43.66446336)}"
-6205,11271,GO-2016786575,THEFT UNDER - BICYCLE,2016-05-06T00:00:00,2016,May,Friday,6,127,17,2016-05-07T00:00:00,2016,May,Saturday,7,128,20,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,ZOOM,FOLDING,EL,1,GRN,1700.0,STOLEN,6205,"{'type': 'Point', 'coordinates': (-79.37547981, 43.66574074)}"
-6206,11305,GO-2016832618,THEFT UNDER - BICYCLE,2016-05-13T00:00:00,2016,May,Friday,13,134,23,2016-05-14T00:00:00,2016,May,Saturday,14,135,23,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,EXPEDITION LOW,OT,0,BLK,800.0,STOLEN,6206,"{'type': 'Point', 'coordinates': (-79.36749818, 43.66688218000001)}"
-6207,11377,GO-20169004975,THEFT UNDER,2016-05-26T00:00:00,2016,May,Thursday,26,147,11,2016-05-26T00:00:00,2016,May,Thursday,26,147,11,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,SUPERCYCLE,MT,18,WHI,200.0,STOLEN,6207,"{'type': 'Point', 'coordinates': (-79.37302171, 43.66318983)}"
-6208,11484,GO-2016997730,THEFT UNDER - BICYCLE,2016-06-08T00:00:00,2016,June,Wednesday,8,160,16,2016-06-08T00:00:00,2016,June,Wednesday,8,160,17,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,BUSH PILOT,MT,18,REDWHI,700.0,STOLEN,6208,"{'type': 'Point', 'coordinates': (-79.36926699, 43.66399224)}"
-6209,11497,GO-20169005595,THEFT UNDER,2016-06-10T00:00:00,2016,June,Friday,10,162,0,2016-06-10T00:00:00,2016,June,Friday,10,162,23,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,B7 ORANGE MEN'S,RG,7,ONG,700.0,STOLEN,6209,"{'type': 'Point', 'coordinates': (-79.36277259, 43.664236560000006)}"
-6210,11748,GO-20169006927,THEFT UNDER,2016-07-09T00:00:00,2016,July,Saturday,9,191,3,2016-07-09T00:00:00,2016,July,Saturday,9,191,13,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BI,,TO,24,LGR,1000.0,STOLEN,6210,"{'type': 'Point', 'coordinates': (-79.36304717, 43.66708373)}"
-6211,11771,GO-20169007057,THEFT UNDER,2016-07-11T00:00:00,2016,July,Monday,11,193,12,2016-07-11T00:00:00,2016,July,Monday,11,193,22,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,16 SIRRUS,RG,24,BLK,629.0,STOLEN,6211,"{'type': 'Point', 'coordinates': (-79.36672639, 43.66935975)}"
-6212,11794,GO-20169007076,THEFT UNDER - BICYCLE,2016-07-11T00:00:00,2016,July,Monday,11,193,23,2016-07-12T00:00:00,2016,July,Tuesday,12,194,11,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,DEW DELUX,RG,21,BLK,400.0,STOLEN,6212,"{'type': 'Point', 'coordinates': (-79.36247702, 43.66569194)}"
-6213,11808,GO-20169007211,THEFT UNDER,2016-06-14T00:00:00,2016,June,Tuesday,14,166,19,2016-07-15T00:00:00,2016,July,Friday,15,197,20,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,GI,,TO,14,BLK,685.0,STOLEN,6213,"{'type': 'Point', 'coordinates': (-79.37170183, 43.66651225)}"
-6214,22186,GO-20169009496,THEFT UNDER,2016-08-21T00:00:00,2016,August,Sunday,21,234,17,2016-08-25T00:00:00,2016,August,Thursday,25,238,22,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,GI,DEFY 5,RC,8,BLK,860.0,STOLEN,6613,"{'type': 'Point', 'coordinates': (-79.33168448, 43.6667335)}"
-6215,11854,GO-20161250482,THEFT OF EBIKE UNDER $5000,2016-07-10T00:00:00,2016,July,Sunday,10,192,0,2016-07-16T00:00:00,2016,July,Saturday,16,198,20,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,DAYMAK EAGLE,EL,0,BLK,2400.0,STOLEN,6214,"{'type': 'Point', 'coordinates': (-79.37087406, 43.66790841)}"
-6216,11876,GO-20169007610,THEFT UNDER - BICYCLE,2016-07-22T00:00:00,2016,July,Friday,22,204,0,2016-07-22T00:00:00,2016,July,Friday,22,204,9,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,WORK,RG,7,GRY,500.0,STOLEN,6215,"{'type': 'Point', 'coordinates': (-79.36530929, 43.66582369)}"
-6217,11939,GO-20169007873,THEFT UNDER - BICYCLE,2016-07-27T00:00:00,2016,July,Wednesday,27,209,17,2016-07-28T00:00:00,2016,July,Thursday,28,210,10,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,SCALPEL 29ER 20,MT,22,WHI,4000.0,RECOVERED,6216,"{'type': 'Point', 'coordinates': (-79.36750361, 43.66320621)}"
-6218,12048,GO-20169008513,THEFT UNDER,2016-08-10T00:00:00,2016,August,Wednesday,10,223,10,2016-08-10T00:00:00,2016,August,Wednesday,10,223,19,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,CITY BIKE,RG,10,TRQ,500.0,STOLEN,6217,"{'type': 'Point', 'coordinates': (-79.36460631, 43.66598269)}"
-6219,12077,GO-20169008674,THEFT UNDER,2016-08-12T00:00:00,2016,August,Friday,12,225,0,2016-08-13T00:00:00,2016,August,Saturday,13,226,11,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,618GT,RG,18,BLU,1200.0,STOLEN,6218,"{'type': 'Point', 'coordinates': (-79.3641184, 43.66609313000001)}"
-6220,12078,GO-20169008667,THEFT UNDER,2016-08-13T00:00:00,2016,August,Saturday,13,226,1,2016-08-13T00:00:00,2016,August,Saturday,13,226,9,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KO,,TO,8,GRY,1200.0,STOLEN,6219,"{'type': 'Point', 'coordinates': (-79.3677947, 43.66755905)}"
-6221,12193,GO-20169009414,THEFT UNDER,2016-08-23T00:00:00,2016,August,Tuesday,23,236,20,2016-08-25T00:00:00,2016,August,Thursday,25,238,12,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,INDIE 4,RG,24,BLK,599.0,STOLEN,6220,"{'type': 'Point', 'coordinates': (-79.36801682000001, 43.66446336)}"
-6222,12299,GO-20169010142,THEFT UNDER,2016-09-07T00:00:00,2016,September,Wednesday,7,251,22,2016-09-08T00:00:00,2016,September,Thursday,8,252,19,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Group Homes (Non-Profit, Halfway House, Social Agency)",Other,CC,ALPHA 29,MT,21,BLK,640.0,STOLEN,6221,"{'type': 'Point', 'coordinates': (-79.37717453, 43.66359899)}"
-6223,12343,GO-20169010450,THEFT UNDER,2016-09-14T00:00:00,2016,September,Wednesday,14,258,0,2016-09-14T00:00:00,2016,September,Wednesday,14,258,15,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,GI,15 ALIGHT 2M,RG,10,PLE,500.0,STOLEN,6222,"{'type': 'Point', 'coordinates': (-79.36992785, 43.66558086)}"
-6224,12491,GO-20169011277,THEFT UNDER - BICYCLE,2016-09-28T00:00:00,2016,September,Wednesday,28,272,10,2016-09-28T00:00:00,2016,September,Wednesday,28,272,20,D51,Toronto,71,Cabbagetown-South St.James Town (71),Schools During Supervised Activity,Educational,OT,,MT,24,BLK,323.0,STOLEN,6223,"{'type': 'Point', 'coordinates': (-79.37830693, 43.66628508)}"
-6225,12576,GO-20169011717,THEFT UNDER,2016-10-05T00:00:00,2016,October,Wednesday,5,279,22,2016-10-07T00:00:00,2016,October,Friday,7,281,17,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,7,PLE,812.0,STOLEN,6224,"{'type': 'Point', 'coordinates': (-79.3602871, 43.66342614)}"
-6226,12579,GO-20161795618,THEFT UNDER - BICYCLE,2016-10-08T00:00:00,2016,October,Saturday,8,282,4,2016-10-09T00:00:00,2016,October,Sunday,9,283,6,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FUJI,FEATHER,RG,1,YEL,1000.0,STOLEN,6225,"{'type': 'Point', 'coordinates': (-79.37085094, 43.66451729)}"
-6227,12580,GO-20161795618,THEFT UNDER - BICYCLE,2016-10-08T00:00:00,2016,October,Saturday,8,282,4,2016-10-09T00:00:00,2016,October,Sunday,9,283,6,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,RG,1,BLK,1000.0,STOLEN,6226,"{'type': 'Point', 'coordinates': (-79.37085094, 43.66451729)}"
-6228,12581,GO-20161795618,THEFT UNDER - BICYCLE,2016-10-08T00:00:00,2016,October,Saturday,8,282,4,2016-10-09T00:00:00,2016,October,Sunday,9,283,6,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,LEMOND,,OT,18,BLUWHI,,STOLEN,6227,"{'type': 'Point', 'coordinates': (-79.37085094, 43.66451729)}"
-6229,12582,GO-20169011776,THEFT UNDER - BICYCLE,2016-10-08T00:00:00,2016,October,Saturday,8,282,9,2016-10-09T00:00:00,2016,October,Sunday,9,283,16,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,,MT,15,GRY,750.0,STOLEN,6228,"{'type': 'Point', 'coordinates': (-79.37170183, 43.66651225)}"
-6230,12591,GO-20169011854,THEFT UNDER,2016-10-11T00:00:00,2016,October,Tuesday,11,285,12,2016-10-11T00:00:00,2016,October,Tuesday,11,285,13,D51,Toronto,71,Cabbagetown-South St.James Town (71),Bar / Restaurant,Commercial,GI,SEEK 2,OT,21,BLK,500.0,STOLEN,6229,"{'type': 'Point', 'coordinates': (-79.37373773, 43.66729501)}"
-6231,12612,GO-20169012017,THEFT UNDER - BICYCLE,2016-10-07T00:00:00,2016,October,Friday,7,281,20,2016-10-13T00:00:00,2016,October,Thursday,13,287,21,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,ANNEX,RG,7,BLK,300.0,STOLEN,6230,"{'type': 'Point', 'coordinates': (-79.36825854, 43.66505739)}"
-6232,12613,GO-20169012030,THEFT UNDER - BICYCLE,2016-10-13T00:00:00,2016,October,Thursday,13,287,22,2016-10-14T00:00:00,2016,October,Friday,14,288,10,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,MO,DEVIANT,RG,24,WHI,250.0,STOLEN,6231,"{'type': 'Point', 'coordinates': (-79.37717453, 43.66359899)}"
-6233,12721,GO-20169012920,THEFT UNDER - BICYCLE,2016-11-01T00:00:00,2016,November,Tuesday,1,306,19,2016-11-03T00:00:00,2016,November,Thursday,3,308,8,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Religious Facilities (Synagogue, Church, Convent, Mosque)",Other,SU,SUPERCYCLE,TO,7,RED,500.0,STOLEN,6232,"{'type': 'Point', 'coordinates': (-79.36694644, 43.66547502)}"
-6234,13486,GO-20199015350,THEFT UNDER,2019-05-16T00:00:00,2019,May,Thursday,16,136,16,2019-05-17T00:00:00,2019,May,Friday,17,137,7,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,SC,GTX,RG,21,RED,550.0,STOLEN,6233,"{'type': 'Point', 'coordinates': (-79.3721682, 43.66763473)}"
-6235,13505,GO-20199020493,THEFT UNDER,2019-06-29T00:00:00,2019,June,Saturday,29,180,0,2019-06-29T00:00:00,2019,June,Saturday,29,180,11,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,BIGFOOT 2,MT,11,RED,1200.0,STOLEN,6234,"{'type': 'Point', 'coordinates': (-79.37717453, 43.66359899)}"
-6236,22811,GO-20149001966,THEFT UNDER,2014-01-15T00:00:00,2014,January,Wednesday,15,15,11,2014-03-12T00:00:00,2014,March,Wednesday,12,71,11,D55,Toronto,70,South Riverdale (70),Ttc Subway Station,Transit,UK,FORGOT,MT,21,LBL,400.0,STOLEN,6670,"{'type': 'Point', 'coordinates': (-79.32288072, 43.652347070000005)}"
-6237,13715,GO-20179014866,THEFT UNDER - BICYCLE,2017-09-15T00:00:00,2017,September,Friday,15,258,13,2017-09-15T00:00:00,2017,September,Friday,15,258,14,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,TO,23,BLU,1500.0,STOLEN,6235,"{'type': 'Point', 'coordinates': (-79.36859203, 43.66587501)}"
-6238,13734,GO-20172025911,B&E,2017-10-30T00:00:00,2017,October,Monday,30,303,0,2017-11-09T00:00:00,2017,November,Thursday,9,313,21,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,MIX-TAPE,OT,5,GLD,475.0,STOLEN,6236,"{'type': 'Point', 'coordinates': (-79.37717453, 43.66359899)}"
-6239,13762,GO-20181011032,THEFT UNDER - BICYCLE,2018-06-01T00:00:00,2018,June,Friday,1,152,16,2018-06-04T00:00:00,2018,June,Monday,4,155,14,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,OT,10,BLK,800.0,STOLEN,6237,"{'type': 'Point', 'coordinates': (-79.37489281, 43.66432923)}"
-6240,13797,GO-20189026561,THEFT FROM MOTOR VEHICLE UNDER,2018-08-15T00:00:00,2018,August,Wednesday,15,227,3,2018-08-15T00:00:00,2018,August,Wednesday,15,227,21,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ALLEZ,RC,12,BLU,1000.0,STOLEN,6238,"{'type': 'Point', 'coordinates': (-79.36558916, 43.6665295)}"
-6241,13798,GO-20189026561,THEFT FROM MOTOR VEHICLE UNDER,2018-08-15T00:00:00,2018,August,Wednesday,15,227,3,2018-08-15T00:00:00,2018,August,Wednesday,15,227,21,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,Z5,RC,12,WHI,3000.0,STOLEN,6239,"{'type': 'Point', 'coordinates': (-79.36558916, 43.6665295)}"
-6242,13803,GO-20181512555,THEFT UNDER - BICYCLE,2018-08-05T00:00:00,2018,August,Sunday,5,217,12,2018-08-16T00:00:00,2018,August,Thursday,16,228,15,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,PEUGEOT,,MT,10,WHISIL,,STOLEN,6240,"{'type': 'Point', 'coordinates': (-79.3602871, 43.66342614)}"
-6243,13806,GO-20181550630,THEFT UNDER - BICYCLE,2018-08-20T00:00:00,2018,August,Monday,20,232,23,2018-08-24T00:00:00,2018,August,Friday,24,236,6,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,,TO,12,GRN,200.0,STOLEN,6241,"{'type': 'Point', 'coordinates': (-79.36665439, 43.66476997)}"
-6244,13811,GO-20189028894,THEFT UNDER - BICYCLE,2018-08-22T00:00:00,2018,August,Wednesday,22,234,17,2018-09-02T00:00:00,2018,September,Sunday,2,245,19,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,ONE WAY,OT,1,BLU,350.0,STOLEN,6242,"{'type': 'Point', 'coordinates': (-79.36908046, 43.66710657)}"
-6245,13822,GO-20189031053,THEFT UNDER - BICYCLE,2018-09-18T00:00:00,2018,September,Tuesday,18,261,21,2018-09-19T00:00:00,2018,September,Wednesday,19,262,8,D51,Toronto,71,Cabbagetown-South St.James Town (71),Bar / Restaurant,Commercial,CA,,RG,21,YEL,750.0,STOLEN,6243,"{'type': 'Point', 'coordinates': (-79.37489281, 43.66432923)}"
-6246,13850,GO-20189041771,THEFT UNDER - BICYCLE,2018-12-11T00:00:00,2018,December,Tuesday,11,345,13,2018-12-12T00:00:00,2018,December,Wednesday,12,346,13,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,10,BLK,1500.0,STOLEN,6244,"{'type': 'Point', 'coordinates': (-79.3677947, 43.66755905)}"
-6247,13854,GO-201922285,THEFT UNDER - BICYCLE,2019-01-04T00:00:00,2019,January,Friday,4,4,16,2019-01-04T00:00:00,2019,January,Friday,4,4,16,D51,Toronto,71,Cabbagetown-South St.James Town (71),Convenience Stores,Commercial,TREK,,MT,0,BLK,400.0,STOLEN,6245,"{'type': 'Point', 'coordinates': (-79.37373773, 43.66729501)}"
-6248,13855,GO-20199001317,THEFT UNDER - BICYCLE,2019-01-10T00:00:00,2019,January,Thursday,10,10,18,2019-01-11T00:00:00,2019,January,Friday,11,11,10,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,054311-17-L,OT,21,,529.0,STOLEN,6246,"{'type': 'Point', 'coordinates': (-79.36078708, 43.66464918)}"
-6249,13856,GO-20199002584,THEFT UNDER - BICYCLE,2019-01-19T00:00:00,2019,January,Saturday,19,19,0,2019-01-19T00:00:00,2019,January,Saturday,19,19,11,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,OT,AXIS SL3,RC,21,RED,1200.0,STOLEN,6247,"{'type': 'Point', 'coordinates': (-79.37048033, 43.66372252)}"
-6250,13868,GO-20159002990,THEFT UNDER,2015-04-28T00:00:00,2015,April,Tuesday,28,118,21,2015-05-22T00:00:00,2015,May,Friday,22,142,10,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,RC,10,RED,0.0,STOLEN,6248,"{'type': 'Point', 'coordinates': (-79.36196759, 43.66442232)}"
-6251,11740,GO-20169006860,THEFT UNDER,2016-07-06T00:00:00,2016,July,Wednesday,6,188,22,2016-07-07T00:00:00,2016,July,Thursday,7,189,15,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,NO,,OT,7,,100.0,STOLEN,6735,"{'type': 'Point', 'coordinates': (-79.34055684, 43.66228154)}"
-6252,13903,GO-20159006295,THEFT UNDER,2015-08-22T00:00:00,2015,August,Saturday,22,234,19,2015-08-23T00:00:00,2015,August,Sunday,23,235,11,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,ORBITA,MT,6,WHI,320.0,STOLEN,6249,"{'type': 'Point', 'coordinates': (-79.37085094, 43.66451729)}"
-6253,13908,GO-20159007060,THEFT UNDER,2015-09-11T00:00:00,2015,September,Friday,11,254,10,2015-09-11T00:00:00,2015,September,Friday,11,254,17,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,RG,24,DGR,700.0,STOLEN,6250,"{'type': 'Point', 'coordinates': (-79.36926699, 43.66399224)}"
-6254,13911,GO-20159007463,THEFT UNDER,2015-09-19T00:00:00,2015,September,Saturday,19,262,23,2015-09-20T00:00:00,2015,September,Sunday,20,263,18,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,YORKVILLE,RG,21,BLU,400.0,STOLEN,6251,"{'type': 'Point', 'coordinates': (-79.37717453, 43.66359899)}"
-6255,13915,GO-20151680642,THEFT UNDER,2015-09-28T00:00:00,2015,September,Monday,28,271,1,2015-09-28T00:00:00,2015,September,Monday,28,271,8,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,NORCO,VF3,MT,12,BLK,500.0,STOLEN,6252,"{'type': 'Point', 'coordinates': (-79.36750361, 43.66320621)}"
-6256,13916,GO-20151680642,THEFT UNDER,2015-09-28T00:00:00,2015,September,Monday,28,271,1,2015-09-28T00:00:00,2015,September,Monday,28,271,8,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,NORCO,VF4,MT,12,PLE,600.0,STOLEN,6253,"{'type': 'Point', 'coordinates': (-79.36750361, 43.66320621)}"
-6257,13919,GO-20159007916,THEFT UNDER,2015-09-29T00:00:00,2015,September,Tuesday,29,272,12,2015-09-29T00:00:00,2015,September,Tuesday,29,272,17,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,SC 700C TEMPO,RC,21,SIL,350.0,STOLEN,6254,"{'type': 'Point', 'coordinates': (-79.37830693, 43.66628508)}"
-6258,13920,GO-20159008117,THEFT UNDER,2015-10-03T00:00:00,2015,October,Saturday,3,276,19,2015-10-04T00:00:00,2015,October,Sunday,4,277,14,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MILANO,OT,24,BLK,620.0,STOLEN,6255,"{'type': 'Point', 'coordinates': (-79.37717453, 43.66359899)}"
-6259,12596,GO-20169011194,THEFT UNDER,2016-09-27T00:00:00,2016,September,Tuesday,27,271,15,2016-09-27T00:00:00,2016,September,Tuesday,27,271,16,D51,Toronto,72,Regent Park (72),Homeless Shelter / Mission,Other,CA,,RG,21,,1300.0,STOLEN,7204,"{'type': 'Point', 'coordinates': (-79.3649748, 43.66105179)}"
-6260,13937,GO-20152101727,THEFT UNDER,2015-12-07T00:00:00,2015,December,Monday,7,341,18,2015-12-08T00:00:00,2015,December,Tuesday,8,342,10,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FIT VH1,BMX,BM,1,TRQ,650.0,STOLEN,6256,"{'type': 'Point', 'coordinates': (-79.36078708, 43.66464918)}"
-6261,13948,GO-2016329406,B&E,2016-01-27T00:00:00,2016,January,Wednesday,27,27,17,2016-02-24T00:00:00,2016,February,Wednesday,24,55,18,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,TO,3,GRN,500.0,STOLEN,6257,"{'type': 'Point', 'coordinates': (-79.37489281, 43.66432923)}"
-6262,13955,GO-20169003065,THEFT UNDER,2016-04-04T00:00:00,2016,April,Monday,4,95,3,2016-04-04T00:00:00,2016,April,Monday,4,95,18,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,TRIUMPH,EL,3,SIL,1599.0,STOLEN,6258,"{'type': 'Point', 'coordinates': (-79.36801682000001, 43.66446336)}"
-6263,13957,GO-20169003536,THEFT FROM MOTOR VEHICLE UNDER,2016-04-15T00:00:00,2016,April,Friday,15,106,17,2016-04-18T00:00:00,2016,April,Monday,18,109,20,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,SC,TESLIN 2.4,MT,21,RED,650.0,STOLEN,6259,"{'type': 'Point', 'coordinates': (-79.3721682, 43.66763473)}"
-6264,13985,GO-20169007081,THEFT UNDER - BICYCLE,2016-07-08T00:00:00,2016,July,Friday,8,190,12,2016-07-12T00:00:00,2016,July,Tuesday,12,194,12,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,AMSTERDAM,RG,5,BLK,1000.0,STOLEN,6260,"{'type': 'Point', 'coordinates': (-79.36304717, 43.66708373)}"
-6265,13993,GO-20161408013,THEFT OF EBIKE UNDER $5000,2016-08-09T00:00:00,2016,August,Tuesday,9,222,22,2016-08-10T00:00:00,2016,August,Wednesday,10,223,9,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,MISCEO,EL,0,BLU,3500.0,STOLEN,6261,"{'type': 'Point', 'coordinates': (-79.3641184, 43.66609313000001)}"
-6266,14030,GO-20169013216,THEFT UNDER - BICYCLE,2016-11-09T00:00:00,2016,November,Wednesday,9,314,1,2016-11-10T00:00:00,2016,November,Thursday,10,315,14,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,CITY EXPRESS,MT,7,WHI,150.0,STOLEN,6262,"{'type': 'Point', 'coordinates': (-79.36801682000001, 43.66446336)}"
-6267,14037,GO-20169014351,THEFT UNDER,2016-12-04T00:00:00,2016,December,Sunday,4,339,0,2016-12-07T00:00:00,2016,December,Wednesday,7,342,16,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,ROAM,RG,12,BLK,700.0,STOLEN,6263,"{'type': 'Point', 'coordinates': (-79.3658853, 43.66722444)}"
-6268,14042,GO-2017118600,THEFT UNDER - BICYCLE,2017-01-19T00:00:00,2017,January,Thursday,19,19,23,2017-01-19T00:00:00,2017,January,Thursday,19,19,23,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,,BM,10,YEL,,STOLEN,6264,"{'type': 'Point', 'coordinates': (-79.36794156, 43.66428583)}"
-6269,14048,GO-20179002781,THEFT UNDER - BICYCLE,2017-03-05T00:00:00,2017,March,Sunday,5,64,8,2017-03-05T00:00:00,2017,March,Sunday,5,64,15,D51,Toronto,71,Cabbagetown-South St.James Town (71),Bar / Restaurant,Commercial,CA,SL-4,MT,28,BLK,7000.0,STOLEN,6265,"{'type': 'Point', 'coordinates': (-79.36825854, 43.66505739)}"
-6270,14052,GO-2017675667,THEFT UNDER - BICYCLE,2017-04-17T00:00:00,2017,April,Monday,17,107,16,2017-04-17T00:00:00,2017,April,Monday,17,107,18,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,RG,18,DGR,,STOLEN,6266,"{'type': 'Point', 'coordinates': (-79.36908046, 43.66710657)}"
-6271,14056,GO-20179005359,THEFT UNDER - BICYCLE,2017-04-26T00:00:00,2017,April,Wednesday,26,116,9,2017-04-27T00:00:00,2017,April,Thursday,27,117,10,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,CC,LUCERNE,TO,7,PNK,300.0,STOLEN,6267,"{'type': 'Point', 'coordinates': (-79.36715127, 43.66233418)}"
-6272,14059,GO-2017812255,THEFT UNDER - BICYCLE,2017-04-28T00:00:00,2017,April,Friday,28,118,15,2017-05-08T00:00:00,2017,May,Monday,8,128,20,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,INDY 4,MT,21,,850.0,STOLEN,6268,"{'type': 'Point', 'coordinates': (-79.37212433, 43.6633875)}"
-6273,14349,GO-20141791881,THEFT UNDER,2014-03-29T00:00:00,2014,March,Saturday,29,88,15,2014-03-29T00:00:00,2014,March,Saturday,29,88,21,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,,EL,1,GRN,800.0,STOLEN,6269,"{'type': 'Point', 'coordinates': (-79.37373773, 43.66729501)}"
-6274,15819,GO-20201686873,B&E,2020-09-06T00:00:00,2020,September,Sunday,6,250,0,2020-09-06T00:00:00,2020,September,Sunday,6,250,14,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,ROCKY MOUNTAIN,,MT,21,,2000.0,STOLEN,6292,"{'type': 'Point', 'coordinates': (-79.36926699, 43.66399224)}"
-6275,14351,GO-20141902305,THEFT UNDER,2014-04-07T00:00:00,2014,April,Monday,7,97,18,2014-04-16T00:00:00,2014,April,Wednesday,16,106,12,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,,MT,21,BLK,600.0,STOLEN,6270,"{'type': 'Point', 'coordinates': (-79.36952193, 43.66817448)}"
-6276,14357,GO-20149003205,THEFT UNDER,2014-05-06T00:00:00,2014,May,Tuesday,6,126,11,2014-05-07T00:00:00,2014,May,Wednesday,7,127,18,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,1,BGE,300.0,STOLEN,6271,"{'type': 'Point', 'coordinates': (-79.37717453, 43.66359899)}"
-6277,14371,GO-20149004260,THEFT UNDER,2014-06-19T00:00:00,2014,June,Thursday,19,170,17,2014-06-19T00:00:00,2014,June,Thursday,19,170,19,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,GT,,MT,27,BLK,600.0,STOLEN,6272,"{'type': 'Point', 'coordinates': (-79.36221749, 43.66503447)}"
-6278,14377,GO-20142349296,THEFT UNDER,2014-06-21T00:00:00,2014,June,Saturday,21,172,14,2014-06-23T00:00:00,2014,June,Monday,23,174,10,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,WEINMANN,OT,0,,,STOLEN,6273,"{'type': 'Point', 'coordinates': (-79.3673296, 43.67436858)}"
-6279,14380,GO-20142412181,THEFT UNDER,2014-07-01T00:00:00,2014,July,Tuesday,1,182,19,2014-07-02T00:00:00,2014,July,Wednesday,2,183,6,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,FORTRESS,1700,SC,1,BLK,4000.0,STOLEN,6274,"{'type': 'Point', 'coordinates': (-79.37087406, 43.66790841)}"
-6280,14384,GO-20149004607,THEFT UNDER,2014-06-28T00:00:00,2014,June,Saturday,28,179,7,2014-07-01T00:00:00,2014,July,Tuesday,1,182,21,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,OT,DASER,RG,21,RED,150.0,STOLEN,6275,"{'type': 'Point', 'coordinates': (-79.37717453, 43.66359899)}"
-6281,14399,GO-20149005577,THEFT UNDER,2014-08-03T00:00:00,2014,August,Sunday,3,215,17,2014-08-03T00:00:00,2014,August,Sunday,3,215,17,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,GI,,OT,10,OTH,800.0,STOLEN,6276,"{'type': 'Point', 'coordinates': (-79.37170183, 43.66651225)}"
-6282,14420,GO-20149007345,THEFT UNDER,2014-09-30T00:00:00,2014,September,Tuesday,30,273,17,2014-10-01T00:00:00,2014,October,Wednesday,1,274,17,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,,RG,1,,500.0,STOLEN,6277,"{'type': 'Point', 'coordinates': (-79.3721682, 43.66763473)}"
-6283,14421,GO-20149007345,THEFT UNDER,2014-09-30T00:00:00,2014,September,Tuesday,30,273,17,2014-10-01T00:00:00,2014,October,Wednesday,1,274,17,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RG,7,WHI,500.0,STOLEN,6278,"{'type': 'Point', 'coordinates': (-79.3721682, 43.66763473)}"
-6284,14433,GO-2015204117,B&E W'INTENT,2015-02-03T00:00:00,2015,February,Tuesday,3,34,15,2015-02-04T00:00:00,2015,February,Wednesday,4,35,10,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,EL,0,BLK,,STOLEN,6279,"{'type': 'Point', 'coordinates': (-79.36915141, 43.66726995)}"
-6285,14434,GO-2015204117,B&E W'INTENT,2015-02-03T00:00:00,2015,February,Tuesday,3,34,15,2015-02-04T00:00:00,2015,February,Wednesday,4,35,10,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,EL,40,BLUWHI,,STOLEN,6280,"{'type': 'Point', 'coordinates': (-79.36915141, 43.66726995)}"
-6286,14443,GO-2015671981,THEFT UNDER,2015-04-18T00:00:00,2015,April,Saturday,18,108,22,2015-04-23T00:00:00,2015,April,Thursday,23,113,13,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OPUS,MONDENO,OT,24,GRY,500.0,STOLEN,6281,"{'type': 'Point', 'coordinates': (-79.36694644, 43.66547502)}"
-6287,15658,GO-20191413661,B&E,2019-07-27T00:00:00,2019,July,Saturday,27,208,14,2019-07-27T00:00:00,2019,July,Saturday,27,208,19,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,OT,0,REDWHI,,STOLEN,6282,"{'type': 'Point', 'coordinates': (-79.3721682, 43.66763473)}"
-6288,15660,GO-20199024105,THEFT UNDER,2019-07-27T00:00:00,2019,July,Saturday,27,208,21,2019-07-28T00:00:00,2019,July,Sunday,28,209,13,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,TR,8900,MT,1,YEL,0.0,STOLEN,6283,"{'type': 'Point', 'coordinates': (-79.37717453, 43.66359899)}"
-6289,15685,GO-20191676682,THEFT UNDER - BICYCLE,2019-08-30T00:00:00,2019,August,Friday,30,242,20,2019-09-04T00:00:00,2019,September,Wednesday,4,247,19,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,EXPERT,TO,15,BLK,2000.0,STOLEN,6284,"{'type': 'Point', 'coordinates': (-79.36665439, 43.66476997)}"
-6290,14020,GO-20169011194,THEFT UNDER,2016-09-27T00:00:00,2016,September,Tuesday,27,271,15,2016-09-27T00:00:00,2016,September,Tuesday,27,271,16,D51,Toronto,72,Regent Park (72),Homeless Shelter / Mission,Other,CA,,RG,21,BLK,1300.0,STOLEN,7221,"{'type': 'Point', 'coordinates': (-79.3649748, 43.66105179)}"
-6291,15686,GO-20191676682,THEFT UNDER - BICYCLE,2019-08-30T00:00:00,2019,August,Friday,30,242,20,2019-09-04T00:00:00,2019,September,Wednesday,4,247,19,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,,TO,10,BLU,200.0,STOLEN,6285,"{'type': 'Point', 'coordinates': (-79.36665439, 43.66476997)}"
-6292,15687,GO-20191676682,THEFT UNDER - BICYCLE,2019-08-30T00:00:00,2019,August,Friday,30,242,20,2019-09-04T00:00:00,2019,September,Wednesday,4,247,19,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,,TO,10,SIL,600.0,STOLEN,6286,"{'type': 'Point', 'coordinates': (-79.36665439, 43.66476997)}"
-6293,15737,GO-20192415401,B&E,2019-12-14T00:00:00,2019,December,Saturday,14,348,21,2019-12-15T00:00:00,2019,December,Sunday,15,349,12,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ROCKY MOUNTAIN,,MT,21,BLK,1000.0,STOLEN,6287,"{'type': 'Point', 'coordinates': (-79.36615925, 43.6679329)}"
-6294,15738,GO-20192423553,B&E,2019-12-12T00:00:00,2019,December,Thursday,12,346,1,2019-12-16T00:00:00,2019,December,Monday,16,350,16,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,,MT,24,LGR,,STOLEN,6288,"{'type': 'Point', 'coordinates': (-79.3602871, 43.66342614)}"
-6295,15783,GO-20209016124,THEFT UNDER,2020-06-24T00:00:00,2020,June,Wednesday,24,176,17,2020-06-25T00:00:00,2020,June,Thursday,25,177,10,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,AMIRA COMP,RC,10,RED,2700.0,STOLEN,6289,"{'type': 'Point', 'coordinates': (-79.36379928, 43.66540705)}"
-6296,15796,GO-20201378917,THEFT OF EBIKE UNDER $5000,2020-07-24T00:00:00,2020,July,Friday,24,206,0,2020-07-24T00:00:00,2020,July,Friday,24,206,18,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,SOHO,EL,2,BLK,2000.0,STOLEN,6290,"{'type': 'Point', 'coordinates': (-79.37717453, 43.66359899)}"
-6297,15798,GO-20209018623,THEFT UNDER,2020-07-24T00:00:00,2020,July,Friday,24,206,14,2020-07-26T00:00:00,2020,July,Sunday,26,208,22,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,RG,15,,370.0,STOLEN,6291,"{'type': 'Point', 'coordinates': (-79.37430926, 43.66291642)}"
-6298,15820,GO-20201686873,B&E,2020-09-06T00:00:00,2020,September,Sunday,6,250,0,2020-09-06T00:00:00,2020,September,Sunday,6,250,14,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,OT,21,,1000.0,STOLEN,6293,"{'type': 'Point', 'coordinates': (-79.36926699, 43.66399224)}"
-6299,16420,GO-20192372397,THEFT OF EBIKE UNDER $5000,2019-12-08T00:00:00,2019,December,Sunday,8,342,21,2019-12-09T00:00:00,2019,December,Monday,9,343,14,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,ZANAY,SCOOTER,EL,1,ONGYEL,700.0,STOLEN,6294,"{'type': 'Point', 'coordinates': (-79.37717453, 43.66359899)}"
-6300,16422,GO-20192415401,B&E,2019-12-14T00:00:00,2019,December,Saturday,14,348,21,2019-12-15T00:00:00,2019,December,Sunday,15,349,12,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RM,RC30,RG,21,BLK,,STOLEN,6295,"{'type': 'Point', 'coordinates': (-79.36615925, 43.6679329)}"
-6301,16446,GO-2020619742,THEFT UNDER,2020-03-25T00:00:00,2020,March,Wednesday,25,85,22,2020-03-28T00:00:00,2020,March,Saturday,28,88,19,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,,OT,18,PLE,200.0,STOLEN,6296,"{'type': 'Point', 'coordinates': (-79.35920465, 43.66370719)}"
-6302,16478,GO-20209017477,THEFT UNDER,2020-07-13T00:00:00,2020,July,Monday,13,195,14,2020-07-13T00:00:00,2020,July,Monday,13,195,16,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Group Homes (Non-Profit, Halfway House, Social Agency)",Other,CC,SCHWINN,MT,21,WHI,600.0,STOLEN,6297,"{'type': 'Point', 'coordinates': (-79.37489281, 43.66432923)}"
-6303,16485,GO-20209018848,THEFT UNDER,2020-07-26T00:00:00,2020,July,Sunday,26,208,14,2020-07-28T00:00:00,2020,July,Tuesday,28,210,20,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,CA,ALTHEA,MT,24,BLK,1100.0,STOLEN,6298,"{'type': 'Point', 'coordinates': (-79.37717453, 43.66359899)}"
-6304,4741,GO-20199021766,THEFT UNDER,2019-07-10T00:00:00,2019,July,Wednesday,10,191,12,2019-07-10T00:00:00,2019,July,Wednesday,10,191,18,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,TEMPT 3,MT,8,BLK,300.0,STOLEN,6299,"{'type': 'Point', 'coordinates': (-79.36915141, 43.66726995)}"
-6305,25530,GO-20189012657,THEFT UNDER,2018-03-29T00:00:00,2018,March,Thursday,29,88,21,2018-04-24T00:00:00,2018,April,Tuesday,24,114,17,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,PE,,RC,12,PLE,500.0,STOLEN,6300,"{'type': 'Point', 'coordinates': (-79.35088962, 43.65863192)}"
-6306,22238,GO-20179010664,THEFT UNDER - BICYCLE,2017-07-18T00:00:00,2017,July,Tuesday,18,199,0,2017-07-19T00:00:00,2017,July,Wednesday,19,200,12,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,"HOMEMADE, HEAVY",OT,12,BLK,0.0,STOLEN,6301,"{'type': 'Point', 'coordinates': (-79.33066238, 43.66696603)}"
-6307,4750,GO-20199021930,THEFT UNDER,2019-07-11T00:00:00,2019,July,Thursday,11,192,7,2019-07-11T00:00:00,2019,July,Thursday,11,192,19,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,TO,16,BLK,1100.0,STOLEN,6302,"{'type': 'Point', 'coordinates': (-79.37547981, 43.66574074)}"
-6308,4758,GO-20191306788,THEFT UNDER - BICYCLE,2019-07-12T00:00:00,2019,July,Friday,12,193,21,2019-07-12T00:00:00,2019,July,Friday,12,193,21,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORTHROCK,CTM,MT,21,GRYBLK,599.0,UNKNOWN,6303,"{'type': 'Point', 'coordinates': (-79.37581268, 43.66648596000001)}"
-6309,4851,GO-20191384539,THEFT UNDER - BICYCLE,2019-07-19T00:00:00,2019,July,Friday,19,200,17,2019-07-23T00:00:00,2019,July,Tuesday,23,204,15,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,,MT,6,GRY,100.0,STOLEN,6304,"{'type': 'Point', 'coordinates': (-79.36952193, 43.66817448)}"
-6310,5055,GO-20199026102,THEFT UNDER,2019-08-12T00:00:00,2019,August,Monday,12,224,17,2019-08-13T00:00:00,2019,August,Tuesday,13,225,19,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,SU,SUPERCYCLE NITR,MT,21,ONG,140.0,STOLEN,6305,"{'type': 'Point', 'coordinates': (-79.37430926, 43.66291642)}"
-6311,5078,GO-20199026307,THEFT FROM MOTOR VEHICLE UNDER,2019-08-14T00:00:00,2019,August,Wednesday,14,226,0,2019-08-15T00:00:00,2019,August,Thursday,15,227,11,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,PE,,TO,10,MRN,200.0,STOLEN,6306,"{'type': 'Point', 'coordinates': (-79.37430926, 43.66291642)}"
-6312,5155,GO-20199027617,THEFT UNDER,2019-08-25T00:00:00,2019,August,Sunday,25,237,2,2019-08-25T00:00:00,2019,August,Sunday,25,237,13,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,OT,FIX X1 700C STE,RG,1,BLU,198.0,STOLEN,6307,"{'type': 'Point', 'coordinates': (-79.36749818, 43.66688218000001)}"
-6313,13895,GO-20159005422,THEFT UNDER,2015-08-06T00:00:00,2015,August,Thursday,6,218,19,2015-08-06T00:00:00,2015,August,Thursday,6,218,22,D51,Toronto,73,Moss Park (73),Universities / Colleges,Educational,,,RG,21,BLU,230.0,STOLEN,7486,"{'type': 'Point', 'coordinates': (-79.37065383, 43.65073186)}"
-6314,5353,GO-20199030350,THEFT FROM MOTOR VEHICLE UNDER,2019-05-10T00:00:00,2019,May,Friday,10,130,23,2019-09-17T00:00:00,2019,September,Tuesday,17,260,17,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,MIDTOWN,OT,33,GRY,800.0,STOLEN,6308,"{'type': 'Point', 'coordinates': (-79.36481189, 43.66919785)}"
-6315,5382,GO-20199031120,THEFT UNDER - BICYCLE,2019-09-19T00:00:00,2019,September,Thursday,19,262,20,2019-09-23T00:00:00,2019,September,Monday,23,266,10,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,RC,21,RED,250.0,STOLEN,6309,"{'type': 'Point', 'coordinates': (-79.37430926, 43.66291642)}"
-6316,5486,GO-20199033032,THEFT UNDER - BICYCLE,2019-10-07T00:00:00,2019,October,Monday,7,280,10,2019-10-07T00:00:00,2019,October,Monday,7,280,22,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KH,FLITE 100,RG,1,BLK,700.0,STOLEN,6310,"{'type': 'Point', 'coordinates': (-79.36078708, 43.66464918)}"
-6317,5760,GO-20199040750,THEFT UNDER,2019-12-12T00:00:00,2019,December,Thursday,12,346,16,2019-12-13T00:00:00,2019,December,Friday,13,347,8,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,OT,ICARUS SLS,RC,10,OTH,1500.0,STOLEN,6311,"{'type': 'Point', 'coordinates': (-79.37489281, 43.66432923)}"
-6318,5866,GO-20209003749,THEFT UNDER,2020-01-31T00:00:00,2020,January,Friday,31,31,2,2020-01-31T00:00:00,2020,January,Friday,31,31,11,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,DEW,RG,21,GRN,699.0,STOLEN,6312,"{'type': 'Point', 'coordinates': (-79.36451274, 43.66387933)}"
-6319,5878,GO-2020273343,B&E,2019-08-29T00:00:00,2019,August,Thursday,29,241,0,2020-02-08T00:00:00,2020,February,Saturday,8,39,8,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,,MT,10,BLK,1500.0,STOLEN,6313,"{'type': 'Point', 'coordinates': (-79.37717453, 43.66359899)}"
-6320,5935,GO-20209007192,THEFT UNDER,2020-02-17T00:00:00,2020,February,Monday,17,48,14,2020-02-27T00:00:00,2020,February,Thursday,27,58,22,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,DB,OVERDRIVE COMP,MT,20,GRY,1300.0,STOLEN,6314,"{'type': 'Point', 'coordinates': (-79.37581268, 43.66648596000001)}"
-6321,20263,GO-20179017989,B&E,2017-10-23T00:00:00,2017,October,Monday,23,296,11,2017-10-23T00:00:00,2017,October,Monday,23,296,18,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,SIRRUS SPORT,RG,18,SIL,250.0,STOLEN,7647,"{'type': 'Point', 'coordinates': (-79.36859808, 43.65214811)}"
-6322,5980,GO-2020580021,B&E,2020-03-20T00:00:00,2020,March,Friday,20,80,23,2020-03-21T00:00:00,2020,March,Saturday,21,81,20,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,,MT,6,BLK,600.0,STOLEN,6315,"{'type': 'Point', 'coordinates': (-79.3622939, 43.66297124)}"
-6323,6100,GO-20209011906,THEFT UNDER - BICYCLE,2020-04-25T00:00:00,2020,April,Saturday,25,116,9,2020-04-25T00:00:00,2020,April,Saturday,25,116,10,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,,RG,9,BLU,850.0,STOLEN,6316,"{'type': 'Point', 'coordinates': (-79.37547981, 43.66574074)}"
-6324,6113,GO-2020796704,THEFT UNDER - BICYCLE,2020-04-24T00:00:00,2020,April,Friday,24,115,19,2020-04-28T00:00:00,2020,April,Tuesday,28,119,13,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,SIRRUS ELITE,OT,30,RED,4000.0,STOLEN,6317,"{'type': 'Point', 'coordinates': (-79.361458, 43.66315822)}"
-6325,6186,GO-2020895621,B&E,2020-05-10T00:00:00,2020,May,Sunday,10,131,20,2020-05-14T00:00:00,2020,May,Thursday,14,135,12,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,KONA\,BLAST,MT,10,BRNWHI,1200.0,STOLEN,6318,"{'type': 'Point', 'coordinates': (-79.3721682, 43.66763473)}"
-6326,6187,GO-20209013109,THEFT UNDER,2020-05-14T00:00:00,2020,May,Thursday,14,135,13,2020-05-14T00:00:00,2020,May,Thursday,14,135,16,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,RG,10,BLU,600.0,STOLEN,6319,"{'type': 'Point', 'coordinates': (-79.37085094, 43.66451729)}"
-6327,6214,GO-20209013585,THEFT UNDER,2020-05-20T00:00:00,2020,May,Wednesday,20,141,1,2020-05-21T00:00:00,2020,May,Thursday,21,142,14,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,8,MRN,800.0,STOLEN,6320,"{'type': 'Point', 'coordinates': (-79.36399777, 43.66258744)}"
-6328,6834,GO-20209019121,THEFT UNDER,2020-07-31T00:00:00,2020,July,Friday,31,213,11,2020-07-31T00:00:00,2020,July,Friday,31,213,19,D51,Toronto,71,Cabbagetown-South St.James Town (71),Convenience Stores,Commercial,TR,UNKNOWN,RG,18,WHI,600.0,STOLEN,6321,"{'type': 'Point', 'coordinates': (-79.36750361, 43.66320621)}"
-6329,6872,GO-20209019438,THEFT UNDER,2020-08-05T00:00:00,2020,August,Wednesday,5,218,10,2020-08-05T00:00:00,2020,August,Wednesday,5,218,22,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GF,,MT,12,BLU,0.0,STOLEN,6322,"{'type': 'Point', 'coordinates': (-79.36722396, 43.66616179)}"
-6330,6873,GO-20209019438,THEFT UNDER,2020-08-05T00:00:00,2020,August,Wednesday,5,218,10,2020-08-05T00:00:00,2020,August,Wednesday,5,218,22,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,PINNACLE,MT,12,RED,0.0,STOLEN,6323,"{'type': 'Point', 'coordinates': (-79.36722396, 43.66616179)}"
-6331,6900,GO-20209019668,THEFT UNDER,2020-08-08T00:00:00,2020,August,Saturday,8,221,0,2020-08-08T00:00:00,2020,August,Saturday,8,221,11,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,3,BRZ,1130.0,STOLEN,6324,"{'type': 'Point', 'coordinates': (-79.37048033, 43.66372252)}"
-6332,6913,GO-20209019750,THEFT UNDER,2020-08-02T00:00:00,2020,August,Sunday,2,215,10,2020-08-09T00:00:00,2020,August,Sunday,9,222,13,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,OT,18,WHI,0.0,STOLEN,6325,"{'type': 'Point', 'coordinates': (-79.3658853, 43.66722444)}"
-6333,6944,GO-20209020016,THEFT UNDER,2020-08-12T00:00:00,2020,August,Wednesday,12,225,7,2020-08-12T00:00:00,2020,August,Wednesday,12,225,15,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,10,BLK,0.0,STOLEN,6326,"{'type': 'Point', 'coordinates': (-79.37302171, 43.66318983)}"
-6334,6990,GO-20209020550,THEFT UNDER - BICYCLE,2020-08-18T00:00:00,2020,August,Tuesday,18,231,1,2020-08-18T00:00:00,2020,August,Tuesday,18,231,12,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,TR,TREK,MT,11,YEL,600.0,STOLEN,6327,"{'type': 'Point', 'coordinates': (-79.37464369, 43.66709416)}"
-6335,7173,GO-20209022270,THEFT UNDER,2020-09-04T00:00:00,2020,September,Friday,4,248,2,2020-09-04T00:00:00,2020,September,Friday,4,248,8,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,ACERA STEP THRU,RG,7,BLK,600.0,STOLEN,6328,"{'type': 'Point', 'coordinates': (-79.36615925, 43.6679329)}"
-6336,7174,GO-20209022270,THEFT UNDER,2020-09-04T00:00:00,2020,September,Friday,4,248,2,2020-09-04T00:00:00,2020,September,Friday,4,248,8,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FJ,,RG,21,GRY,700.0,STOLEN,6329,"{'type': 'Point', 'coordinates': (-79.36615925, 43.6679329)}"
-6337,7444,GO-20209026127,THEFT UNDER,2020-09-30T00:00:00,2020,September,Wednesday,30,274,19,2020-10-12T00:00:00,2020,October,Monday,12,286,22,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KO,,RG,7,GRN,500.0,STOLEN,6330,"{'type': 'Point', 'coordinates': (-79.36750361, 43.66320621)}"
-6338,7559,GO-20202038899,THEFT OF EBIKE UNDER $5000,2020-10-11T00:00:00,2020,October,Sunday,11,285,20,2020-10-27T00:00:00,2020,October,Tuesday,27,301,14,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,ELECTRA,GEMMO,EL,1,RED,2960.0,STOLEN,6331,"{'type': 'Point', 'coordinates': (-79.37785611, 43.66521591)}"
-6339,7608,GO-20209029113,THEFT UNDER,2020-11-09T00:00:00,2020,November,Monday,9,314,15,2020-11-09T00:00:00,2020,November,Monday,9,314,17,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,SIRRUS,OT,18,BLK,800.0,STOLEN,6332,"{'type': 'Point', 'coordinates': (-79.36926699, 43.66399224)}"
-6340,7624,GO-20209029360,THEFT UNDER - BICYCLE,2020-11-11T00:00:00,2020,November,Wednesday,11,316,0,2020-11-12T00:00:00,2020,November,Thursday,12,317,11,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MO,,RG,21,ONG,0.0,STOLEN,6333,"{'type': 'Point', 'coordinates': (-79.3680462, 43.66847147)}"
-6341,7754,GO-20149000818,THEFT UNDER,2014-01-27T00:00:00,2014,January,Monday,27,27,17,2014-01-28T00:00:00,2014,January,Tuesday,28,28,13,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,RG,10,WHI,1600.0,STOLEN,6334,"{'type': 'Point', 'coordinates': (-79.37785611, 43.66521591)}"
-6342,7755,GO-20149000818,THEFT UNDER,2014-01-27T00:00:00,2014,January,Monday,27,27,17,2014-01-28T00:00:00,2014,January,Tuesday,28,28,13,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GT,,RG,10,RED,1100.0,STOLEN,6335,"{'type': 'Point', 'coordinates': (-79.37785611, 43.66521591)}"
-6343,7759,GO-20141475534,THEFT UNDER,2014-02-04T00:00:00,2014,February,Tuesday,4,35,18,2014-02-05T00:00:00,2014,February,Wednesday,5,36,18,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RAVEN,RAVEN,EL,1,RED,400.0,STOLEN,6336,"{'type': 'Point', 'coordinates': (-79.37785611, 43.66521591)}"
-6344,7783,GO-20141736217,THEFT UNDER,2014-03-20T00:00:00,2014,March,Thursday,20,79,13,2014-03-20T00:00:00,2014,March,Thursday,20,79,15,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,,EL,1,BLK,895.0,STOLEN,6337,"{'type': 'Point', 'coordinates': (-79.37489281, 43.66432923)}"
-6345,7839,GO-20141895846,THEFT UNDER,2014-04-15T00:00:00,2014,April,Tuesday,15,105,11,2014-04-15T00:00:00,2014,April,Tuesday,15,105,17,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,,SC,0,RED,4000.0,STOLEN,6338,"{'type': 'Point', 'coordinates': (-79.36699543, 43.66195021000001)}"
-6346,7949,GO-20149003474,THEFT UNDER,2014-05-21T00:00:00,2014,May,Wednesday,21,141,18,2014-05-21T00:00:00,2014,May,Wednesday,21,141,18,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,DOUBLE TRAILER,OT,1,ONG,400.0,STOLEN,6339,"{'type': 'Point', 'coordinates': (-79.3641184, 43.66609313000001)}"
-6347,8023,GO-20142199558,THEFT UNDER,2014-06-01T00:00:00,2014,June,Sunday,1,152,13,2014-06-01T00:00:00,2014,June,Sunday,1,152,18,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,MT,4,BLK,750.0,STOLEN,6340,"{'type': 'Point', 'coordinates': (-79.36801682000001, 43.66446336)}"
-6348,8035,GO-20149003773,THEFT UNDER,2014-01-03T00:00:00,2014,January,Friday,3,3,9,2014-06-03T00:00:00,2014,June,Tuesday,3,154,10,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,CITY,TO,18,SIL,0.0,STOLEN,6341,"{'type': 'Point', 'coordinates': (-79.36825854, 43.66505739)}"
-6349,8044,GO-20142218659,THEFT UNDER,2014-06-03T00:00:00,2014,June,Tuesday,3,154,2,2014-06-04T00:00:00,2014,June,Wednesday,4,155,12,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TECH TEAM,,EL,30,RED,750.0,STOLEN,6342,"{'type': 'Point', 'coordinates': (-79.36801682000001, 43.66446336)}"
-6350,8050,GO-20142214828,THEFT UNDER,2014-06-03T00:00:00,2014,June,Tuesday,3,154,19,2014-06-03T00:00:00,2014,June,Tuesday,3,154,19,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,GT5,EL,0,BLK,2000.0,STOLEN,6343,"{'type': 'Point', 'coordinates': (-79.36908046, 43.66710657)}"
-6351,8057,GO-20149003837,THEFT UNDER,2014-05-25T00:00:00,2014,May,Sunday,25,145,1,2014-06-05T00:00:00,2014,June,Thursday,5,156,14,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,21,GRY,170.0,UNKNOWN,6344,"{'type': 'Point', 'coordinates': (-79.37667701, 43.66241871)}"
-6352,10240,GO-20159005641,THEFT UNDER,2015-08-11T00:00:00,2015,August,Tuesday,11,223,0,2015-08-11T00:00:00,2015,August,Tuesday,11,223,13,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,10,GLD,0.0,STOLEN,6389,"{'type': 'Point', 'coordinates': (-79.37170183, 43.66651225)}"
-6353,8115,GO-20142281756,THEFT UNDER,2014-06-12T00:00:00,2014,June,Thursday,12,163,20,2014-06-13T00:00:00,2014,June,Friday,13,164,11,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,E-BIKE,EL,0,WHI,1100.0,STOLEN,6345,"{'type': 'Point', 'coordinates': (-79.36952193, 43.66817448)}"
-6354,8126,GO-20149004004,THEFT UNDER,2014-06-11T00:00:00,2014,June,Wednesday,11,162,18,2014-06-12T00:00:00,2014,June,Thursday,12,163,9,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,PURE PR01,RC,30,BLK,2700.0,STOLEN,6346,"{'type': 'Point', 'coordinates': (-79.3677947, 43.66755905)}"
-6355,8127,GO-20149004004,THEFT UNDER,2014-06-11T00:00:00,2014,June,Wednesday,11,162,18,2014-06-12T00:00:00,2014,June,Thursday,12,163,9,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RA,FURLEY,OT,1,BLK,850.0,STOLEN,6347,"{'type': 'Point', 'coordinates': (-79.3677947, 43.66755905)}"
-6356,8128,GO-20149004004,THEFT UNDER,2014-06-11T00:00:00,2014,June,Wednesday,11,162,18,2014-06-12T00:00:00,2014,June,Thursday,12,163,9,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GF,,MT,24,WHI,500.0,STOLEN,6348,"{'type': 'Point', 'coordinates': (-79.3677947, 43.66755905)}"
-6357,8193,GO-20149004242,THEFT UNDER,2014-06-18T00:00:00,2014,June,Wednesday,18,169,10,2014-06-19T00:00:00,2014,June,Thursday,19,170,12,D51,Toronto,71,Cabbagetown-South St.James Town (71),Convenience Stores,Commercial,GI,MANHATTAN,RG,3,BLK,450.0,STOLEN,6349,"{'type': 'Point', 'coordinates': (-79.36859203, 43.66587501)}"
-6358,8212,GO-20149004327,THEFT UNDER,2014-06-22T00:00:00,2014,June,Sunday,22,173,11,2014-06-22T00:00:00,2014,June,Sunday,22,173,14,D51,Toronto,71,Cabbagetown-South St.James Town (71),Schools During Un-Supervised Activity,Educational,TR,DS 8.3,MT,21,GRY,850.0,STOLEN,6350,"{'type': 'Point', 'coordinates': (-79.3673296, 43.67436858)}"
-6359,8252,GO-20149004441,THEFT UNDER,2014-05-30T00:00:00,2014,May,Friday,30,150,16,2014-06-25T00:00:00,2014,June,Wednesday,25,176,16,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,WHI,500.0,STOLEN,6351,"{'type': 'Point', 'coordinates': (-79.37302171, 43.66318983)}"
-6360,12875,GO-20181481599,THEFT UNDER,2018-08-12T00:00:00,2018,August,Sunday,12,224,0,2018-08-12T00:00:00,2018,August,Sunday,12,224,4,D55,Toronto,70,South Riverdale (70),"Open Areas (Lakes, Parks, Rivers)",Outside,UNKNOWN MAKE,,RG,5,RED,,STOLEN,6775,"{'type': 'Point', 'coordinates': (-79.31237569, 43.66036758)}"
-6361,8281,GO-20149004556,THEFT UNDER,2014-06-29T00:00:00,2014,June,Sunday,29,180,4,2014-06-29T00:00:00,2014,June,Sunday,29,180,16,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,24,GRY,500.0,STOLEN,6352,"{'type': 'Point', 'coordinates': (-79.3641184, 43.66609313000001)}"
-6362,8357,GO-20142499604,POSSESSION PROPERTY OBC UNDER,2014-07-15T00:00:00,2014,July,Tuesday,15,196,4,2014-07-15T00:00:00,2014,July,Tuesday,15,196,4,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,,EL,1,WHI,,RECOVERED,6353,"{'type': 'Point', 'coordinates': (-79.37212433, 43.6633875)}"
-6363,8441,GO-20149005067,THEFT UNDER,2014-07-16T00:00:00,2014,July,Wednesday,16,197,9,2014-07-17T00:00:00,2014,July,Thursday,17,198,9,D51,Toronto,71,Cabbagetown-South St.James Town (71),Ttc Bus Stop / Shelter / Loop,Outside,OT,TRAFIK,FO,6,SIL,300.0,STOLEN,6354,"{'type': 'Point', 'coordinates': (-79.35920465, 43.66370719)}"
-6364,8443,GO-20149005079,THEFT UNDER,2014-07-17T00:00:00,2014,July,Thursday,17,198,13,2014-07-17T00:00:00,2014,July,Thursday,17,198,20,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,KING KIKAPO,MT,27,BLU,1000.0,STOLEN,6355,"{'type': 'Point', 'coordinates': (-79.36926699, 43.66399224)}"
-6365,8536,GO-20149005407,B&E,2014-07-10T00:00:00,2014,July,Thursday,10,191,9,2014-07-28T00:00:00,2014,July,Monday,28,209,15,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,ESCAPE CITY,RG,21,GRY,599.0,STOLEN,6356,"{'type': 'Point', 'coordinates': (-79.36451274, 43.66387933)}"
-6366,8597,GO-20149005675,THEFT UNDER,2014-08-05T00:00:00,2014,August,Tuesday,5,217,14,2014-08-06T00:00:00,2014,August,Wednesday,6,218,15,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,CA,ROAD R-800,RC,9,WHI,1500.0,STOLEN,6357,"{'type': 'Point', 'coordinates': (-79.37717453, 43.66359899)}"
-6367,8598,GO-20149005675,THEFT UNDER,2014-08-05T00:00:00,2014,August,Tuesday,5,217,14,2014-08-06T00:00:00,2014,August,Wednesday,6,218,15,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,CA,BAD BOY ULTRA,RG,9,BLK,1700.0,STOLEN,6358,"{'type': 'Point', 'coordinates': (-79.37717453, 43.66359899)}"
-6368,25565,GO-20189022479,THEFT UNDER - BICYCLE,2018-07-14T00:00:00,2018,July,Saturday,14,195,10,2018-07-15T00:00:00,2018,July,Sunday,15,196,11,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,OT,ROCK HOPPER,MT,21,ONG,500.0,STOLEN,6412,"{'type': 'Point', 'coordinates': (-79.34030508, 43.66516613)}"
-6369,8646,GO-20142715245,THEFT UNDER,2013-12-03T00:00:00,2013,December,Tuesday,3,337,0,2014-08-16T00:00:00,2014,August,Saturday,16,228,16,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,MT,24,WHI,350.0,STOLEN,6359,"{'type': 'Point', 'coordinates': (-79.36653342, 43.66342256)}"
-6370,8710,GO-20149006176,THEFT UNDER,2014-08-21T00:00:00,2014,August,Thursday,21,233,14,2014-08-21T00:00:00,2014,August,Thursday,21,233,14,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,SCRAMBLER,MT,21,BLU,300.0,STOLEN,6360,"{'type': 'Point', 'coordinates': (-79.36750361, 43.66320621)}"
-6371,8772,GO-20149006421,THEFT UNDER,2014-08-19T00:00:00,2014,August,Tuesday,19,231,12,2014-08-30T00:00:00,2014,August,Saturday,30,242,7,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,OT,GLOBE COMP,RG,8,GRY,800.0,STOLEN,6361,"{'type': 'Point', 'coordinates': (-79.37170183, 43.66651225)}"
-6372,8910,GO-20149006983,THEFT UNDER,2014-09-15T00:00:00,2014,September,Monday,15,258,20,2014-09-17T00:00:00,2014,September,Wednesday,17,260,16,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MA,BRIDGEWAY,RG,24,WHI,400.0,STOLEN,6362,"{'type': 'Point', 'coordinates': (-79.3658853, 43.66722444)}"
-6373,8917,GO-20149007004,THEFT UNDER,2014-09-18T00:00:00,2014,September,Thursday,18,261,2,2014-09-18T00:00:00,2014,September,Thursday,18,261,11,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,ONETEN,RG,1,LBL,400.0,STOLEN,6363,"{'type': 'Point', 'coordinates': (-79.37212433, 43.6633875)}"
-6374,8934,GO-20149007083,THEFT UNDER,2014-09-17T00:00:00,2014,September,Wednesday,17,260,18,2014-09-21T00:00:00,2014,September,Sunday,21,264,17,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,RG,21,,,STOLEN,6364,"{'type': 'Point', 'coordinates': (-79.37170183, 43.66651225)}"
-6375,8968,GO-20149007162,THEFT UNDER,2014-09-23T00:00:00,2014,September,Tuesday,23,266,19,2014-09-24T00:00:00,2014,September,Wednesday,24,267,12,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,PE,TEN SPEED ROAD,RC,10,BLU,200.0,STOLEN,6365,"{'type': 'Point', 'coordinates': (-79.37547981, 43.66574074)}"
-6376,8993,GO-20143007120,THEFT UNDER,2014-09-28T00:00:00,2014,September,Sunday,28,271,17,2014-09-29T00:00:00,2014,September,Monday,29,272,11,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPORTEK,,OT,10,,,STOLEN,6366,"{'type': 'Point', 'coordinates': (-79.37717453, 43.66359899)}"
-6377,9025,GO-20143054931,THEFT UNDER,2014-10-06T00:00:00,2014,October,Monday,6,279,11,2014-10-06T00:00:00,2014,October,Monday,6,279,17,D51,Toronto,71,Cabbagetown-South St.James Town (71),Schools During Supervised Activity,Educational,NORCO,INDIE 4,OT,24,GRN,400.0,STOLEN,6367,"{'type': 'Point', 'coordinates': (-79.37830693, 43.66628508)}"
-6378,9158,GO-20143250271,THEFT UNDER,2014-11-05T00:00:00,2014,November,Wednesday,5,309,15,2014-11-06T00:00:00,2014,November,Thursday,6,310,13,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,ROCKY MOUNTAIN,WHISTLER50,OT,18,BLU,200.0,STOLEN,6368,"{'type': 'Point', 'coordinates': (-79.36952193, 43.66817448)}"
-6379,9257,GO-201568010,B&E,2014-12-30T00:00:00,2014,December,Tuesday,30,364,19,2015-01-12T00:00:00,2015,January,Monday,12,12,19,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,EPIC COMP CARBO,MT,20,WHI,5100.0,STOLEN,6369,"{'type': 'Point', 'coordinates': (-79.37717453, 43.66359899)}"
-6380,9268,GO-20159000357,THEFT UNDER,2015-01-17T00:00:00,2015,January,Saturday,17,17,14,2015-01-19T00:00:00,2015,January,Monday,19,19,11,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,2012 RZR 500WAT,SC,32,YEL,1000.0,STOLEN,6370,"{'type': 'Point', 'coordinates': (-79.37430926, 43.66291642)}"
-6381,9307,GO-2015377913,THEFT UNDER,2015-03-04T00:00:00,2015,March,Wednesday,4,63,20,2015-03-05T00:00:00,2015,March,Thursday,5,64,9,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MASI,,RG,7,,700.0,STOLEN,6371,"{'type': 'Point', 'coordinates': (-79.36665439, 43.66476997)}"
-6382,9332,GO-20159001378,THEFT UNDER,2015-03-12T00:00:00,2015,March,Thursday,12,71,16,2015-03-18T00:00:00,2015,March,Wednesday,18,77,10,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,CC,,MT,21,WHI,500.0,STOLEN,6372,"{'type': 'Point', 'coordinates': (-79.37212433, 43.6633875)}"
-6383,9401,GO-2015614955,THEFT UNDER,2015-04-13T00:00:00,2015,April,Monday,13,103,22,2015-04-14T00:00:00,2015,April,Tuesday,14,104,8,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BOBBIN,VINTAGE,RG,15,BLK,900.0,STOLEN,6373,"{'type': 'Point', 'coordinates': (-79.36501416, 43.66513376)}"
-6384,9443,GO-2015651850,THEFT UNDER,2015-04-19T00:00:00,2015,April,Sunday,19,109,18,2015-04-20T00:00:00,2015,April,Monday,20,110,9,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,CYCLE MANIA,RG,14,DGRBLU,175.0,STOLEN,6374,"{'type': 'Point', 'coordinates': (-79.37170183, 43.66651225)}"
-6385,9490,GO-20159002327,THEFT UNDER,2015-04-27T00:00:00,2015,April,Monday,27,117,7,2015-04-28T00:00:00,2015,April,Tuesday,28,118,14,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,CYPRESS,MT,12,WHI,800.0,STOLEN,6375,"{'type': 'Point', 'coordinates': (-79.3658853, 43.66722444)}"
-6386,9491,GO-20159002327,THEFT UNDER,2015-04-27T00:00:00,2015,April,Monday,27,117,7,2015-04-28T00:00:00,2015,April,Tuesday,28,118,14,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,URBANITE,MT,12,,800.0,STOLEN,6376,"{'type': 'Point', 'coordinates': (-79.3658853, 43.66722444)}"
-6387,9554,GO-20159002546,THEFT UNDER,2015-05-08T00:00:00,2015,May,Friday,8,128,1,2015-05-08T00:00:00,2015,May,Friday,8,128,9,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,?,RG,12,GRY,400.0,STOLEN,6377,"{'type': 'Point', 'coordinates': (-79.36304717, 43.66708373)}"
-6388,9636,GO-2015859318,THEFT UNDER,2015-05-23T00:00:00,2015,May,Saturday,23,143,0,2015-05-23T00:00:00,2015,May,Saturday,23,143,12,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,NAKAMURA,,TO,10,REDYEL,100.0,STOLEN,6378,"{'type': 'Point', 'coordinates': (-79.37717453, 43.66359899)}"
-6389,9639,GO-20159003021,THEFT UNDER,2015-05-09T00:00:00,2015,May,Saturday,9,129,21,2015-05-22T00:00:00,2015,May,Friday,22,142,21,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,RA,,MT,21,BLU,,STOLEN,6379,"{'type': 'Point', 'coordinates': (-79.37212433, 43.6633875)}"
-6390,9690,GO-2015906276,THEFT UNDER,2015-05-30T00:00:00,2015,May,Saturday,30,150,20,2015-05-30T00:00:00,2015,May,Saturday,30,150,20,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,EL,0,BLK,1000.0,UNKNOWN,6380,"{'type': 'Point', 'coordinates': (-79.36794156, 43.66428583)}"
-6391,9709,GO-20159003272,THEFT UNDER,2015-06-01T00:00:00,2015,June,Monday,1,152,9,2015-06-02T00:00:00,2015,June,Tuesday,2,153,13,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,VINTAGE GREEN,TO,3,GRN,0.0,STOLEN,6381,"{'type': 'Point', 'coordinates': (-79.36648296, 43.66881803)}"
-6392,9766,GO-20159003479,THEFT UNDER,2015-06-09T00:00:00,2015,June,Tuesday,9,160,20,2015-06-09T00:00:00,2015,June,Tuesday,9,160,20,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,OT,MONSTER,EL,32,BLK,2500.0,STOLEN,6382,"{'type': 'Point', 'coordinates': (-79.36801682000001, 43.66446336)}"
-6393,9792,GO-20159003553,B&E,2015-06-08T00:00:00,2015,June,Monday,8,159,21,2015-06-12T00:00:00,2015,June,Friday,12,163,16,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,OT,18,SIL,200.0,STOLEN,6383,"{'type': 'Point', 'coordinates': (-79.37085094, 43.66451729)}"
-6394,9842,GO-20159003803,THEFT UNDER,2015-06-21T00:00:00,2015,June,Sunday,21,172,15,2015-06-21T00:00:00,2015,June,Sunday,21,172,16,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,,6.5,MT,21,BLK,300.0,STOLEN,6384,"{'type': 'Point', 'coordinates': (-79.36801682000001, 43.66446336)}"
-6395,9982,GO-20159004390,THEFT UNDER,2015-07-09T00:00:00,2015,July,Thursday,9,190,22,2015-07-10T00:00:00,2015,July,Friday,10,191,14,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,8,BRZ,800.0,STOLEN,6385,"{'type': 'Point', 'coordinates': (-79.36078708, 43.66464918)}"
-6396,10004,GO-20159004523,THEFT UNDER,2015-07-12T00:00:00,2015,July,Sunday,12,193,20,2015-07-13T00:00:00,2015,July,Monday,13,194,20,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,HOTROCK,MT,6,LGR,357.0,STOLEN,6386,"{'type': 'Point', 'coordinates': (-79.36304717, 43.66708373)}"
-6397,10005,GO-20159004523,THEFT UNDER,2015-07-12T00:00:00,2015,July,Sunday,12,193,20,2015-07-13T00:00:00,2015,July,Monday,13,194,20,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,MT,12,DGR,600.0,STOLEN,6387,"{'type': 'Point', 'coordinates': (-79.36304717, 43.66708373)}"
-6398,10118,GO-20159005066,THEFT UNDER,2015-07-27T00:00:00,2015,July,Monday,27,208,7,2015-07-27T00:00:00,2015,July,Monday,27,208,20,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,SU,NITRO XT,MT,21,WHI,180.0,STOLEN,6388,"{'type': 'Point', 'coordinates': (-79.37170183, 43.66651225)}"
-6399,10423,GO-20159006857,THEFT UNDER,2015-09-03T00:00:00,2015,September,Thursday,3,246,12,2015-09-07T00:00:00,2015,September,Monday,7,250,19,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,EM,WIND,EL,40,BLK,3500.0,STOLEN,6390,"{'type': 'Point', 'coordinates': (-79.36399223000001, 43.66939187)}"
-6400,10432,GO-20151525816,THEFT UNDER - BICYCLE,2015-09-11T00:00:00,2015,September,Friday,11,254,7,2015-09-11T00:00:00,2015,September,Friday,11,254,7,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,GT,RG,21,SIL,350.0,STOLEN,6391,"{'type': 'Point', 'coordinates': (-79.3677947, 43.66755905)}"
-6401,10438,GO-20151565837,THEFT UNDER,2015-09-05T00:00:00,2015,September,Saturday,5,248,20,2015-09-10T00:00:00,2015,September,Thursday,10,253,19,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,TREK,MOUNTAIN,MT,21,GRY,800.0,STOLEN,6392,"{'type': 'Point', 'coordinates': (-79.36558916, 43.6665295)}"
-6402,10560,GO-20159007871,THEFT UNDER,2015-09-25T00:00:00,2015,September,Friday,25,268,18,2015-09-28T00:00:00,2015,September,Monday,28,271,15,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,2010HAUL 1 STEP,OT,16,CRM,450.0,STOLEN,6393,"{'type': 'Point', 'coordinates': (-79.3622939, 43.66297124)}"
-6403,10561,GO-20159007893,THEFT UNDER,2015-09-28T00:00:00,2015,September,Monday,28,271,20,2015-09-29T00:00:00,2015,September,Tuesday,29,272,0,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,RA,REVENINO,RC,9,BLK,150.0,STOLEN,6394,"{'type': 'Point', 'coordinates': (-79.37302171, 43.66318983)}"
-6404,10672,GO-20151818913,THEFT UNDER,2015-10-15T00:00:00,2015,October,Thursday,15,288,23,2015-10-22T00:00:00,2015,October,Thursday,22,295,14,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,MT,24,REDWHI,120.0,STOLEN,6395,"{'type': 'Point', 'coordinates': (-79.36926699, 43.66399224)}"
-6405,10687,GO-20151831406,THEFT UNDER,2015-10-22T00:00:00,2015,October,Thursday,22,295,18,2015-10-24T00:00:00,2015,October,Saturday,24,297,17,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,VALETTA,EL,1,WHI,1300.0,STOLEN,6396,"{'type': 'Point', 'coordinates': (-79.37430926, 43.66291642)}"
-6406,10738,GO-20151917124,THEFT UNDER,2015-11-07T00:00:00,2015,November,Saturday,7,311,16,2015-11-07T00:00:00,2015,November,Saturday,7,311,22,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,SC,32,,1000.0,STOLEN,6397,"{'type': 'Point', 'coordinates': (-79.37547981, 43.66574074)}"
-6407,10772,GO-20159009725,THEFT UNDER,2015-11-13T00:00:00,2015,November,Friday,13,317,23,2015-11-14T00:00:00,2015,November,Saturday,14,318,11,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,LONG HAUL TRUCK,TO,27,BLK,1600.0,STOLEN,6398,"{'type': 'Point', 'coordinates': (-79.36501416, 43.66513376)}"
-6408,10813,GO-20159010202,THEFT UNDER,2015-11-25T00:00:00,2015,November,Wednesday,25,329,11,2015-11-25T00:00:00,2015,November,Wednesday,25,329,18,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,SC,,MT,21,DBL,250.0,STOLEN,6399,"{'type': 'Point', 'coordinates': (-79.36600501, 43.66217007)}"
-6409,10899,GO-20159011417,THEFT UNDER,2015-12-20T00:00:00,2015,December,Sunday,20,354,14,2015-12-30T00:00:00,2015,December,Wednesday,30,364,11,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,TEV ESCOOTER,EL,32,BLU,1596.0,STOLEN,6400,"{'type': 'Point', 'coordinates': (-79.3721682, 43.66763473)}"
-6410,14166,GO-20179009294,THEFT UNDER - BICYCLE,2017-07-01T00:00:00,2017,July,Saturday,1,182,22,2017-07-02T00:00:00,2017,July,Sunday,2,183,17,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,TRIPPER 2015,RG,1,GRN,900.0,STOLEN,6401,"{'type': 'Point', 'coordinates': (-79.35220622, 43.66224318)}"
-6411,16517,GO-20209023450,THEFT UNDER - BICYCLE,2020-09-15T00:00:00,2020,September,Tuesday,15,259,16,2020-09-16T00:00:00,2020,September,Wednesday,16,260,17,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,PRESTO,RG,7,,1200.0,STOLEN,6402,"{'type': 'Point', 'coordinates': (-79.36750361, 43.66320621)}"
-6412,25540,GO-20189016806,THEFT UNDER - BICYCLE,2018-05-24T00:00:00,2018,May,Thursday,24,144,21,2018-05-30T00:00:00,2018,May,Wednesday,30,150,13,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,,MT,15,,300.0,STOLEN,6403,"{'type': 'Point', 'coordinates': (-79.35219877, 43.65833207)}"
-6413,14171,GO-20179010391,THEFT UNDER - BICYCLE,2017-07-09T00:00:00,2017,July,Sunday,9,190,15,2017-07-17T00:00:00,2017,July,Monday,17,198,12,D55,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,DUAL SPORT (DS),RG,30,BLK,1500.0,STOLEN,6404,"{'type': 'Point', 'coordinates': (-79.33627589000001, 43.66191093)}"
-6414,25541,GO-20189016806,THEFT UNDER - BICYCLE,2018-05-24T00:00:00,2018,May,Thursday,24,144,21,2018-05-30T00:00:00,2018,May,Wednesday,30,150,13,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SC,,RG,15,BLU,500.0,STOLEN,6405,"{'type': 'Point', 'coordinates': (-79.35219877, 43.65833207)}"
-6415,14172,GO-20179010391,THEFT UNDER - BICYCLE,2017-07-09T00:00:00,2017,July,Sunday,9,190,15,2017-07-17T00:00:00,2017,July,Monday,17,198,12,D55,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,FX 7.4 WSD,RG,27,SIL,1000.0,STOLEN,6406,"{'type': 'Point', 'coordinates': (-79.33627589000001, 43.66191093)}"
-6416,25553,GO-20189020393,THEFT UNDER - BICYCLE,2018-06-25T00:00:00,2018,June,Monday,25,176,18,2018-06-26T00:00:00,2018,June,Tuesday,26,177,21,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GT,,MT,21,GRY,550.0,STOLEN,6407,"{'type': 'Point', 'coordinates': (-79.3532346, 43.6616993)}"
-6417,14173,GO-20179010494,THEFT UNDER,2017-07-16T00:00:00,2017,July,Sunday,16,197,19,2017-07-18T00:00:00,2017,July,Tuesday,18,199,15,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,1,,300.0,STOLEN,6408,"{'type': 'Point', 'coordinates': (-79.35270855, 43.66134085)}"
-6418,25558,GO-20181223747,THEFT UNDER - BICYCLE,2018-07-03T00:00:00,2018,July,Tuesday,3,184,15,2018-07-05T00:00:00,2018,July,Thursday,5,186,15,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,SCHWINN,TRIKE,TR,1,PNK,500.0,STOLEN,6409,"{'type': 'Point', 'coordinates': (-79.33138495, 43.66299749)}"
-6419,14179,GO-20179012062,THEFT UNDER - BICYCLE,2017-08-09T00:00:00,2017,August,Wednesday,9,221,20,2017-08-10T00:00:00,2017,August,Thursday,10,222,7,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,OT,ALPINE 2,OT,8,BLK,1600.0,STOLEN,6410,"{'type': 'Point', 'coordinates': (-79.33284988, 43.66647178)}"
-6420,25561,GO-20189022055,THEFT UNDER - BICYCLE,2018-07-11T00:00:00,2018,July,Wednesday,11,192,7,2018-07-11T00:00:00,2018,July,Wednesday,11,192,9,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,R330,RG,24,GRN,275.0,STOLEN,6411,"{'type': 'Point', 'coordinates': (-79.34163478, 43.66500656)}"
-6421,25574,GO-20189024530,THEFT UNDER - BICYCLE,2018-07-28T00:00:00,2018,July,Saturday,28,209,21,2018-07-30T00:00:00,2018,July,Monday,30,211,13,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FJ,FEATHER,OT,1,LGR,800.0,STOLEN,6413,"{'type': 'Point', 'coordinates': (-79.34430354, 43.65722444)}"
-6422,25578,GO-20189027648,THEFT UNDER,2018-08-23T00:00:00,2018,August,Thursday,23,235,14,2018-08-23T00:00:00,2018,August,Thursday,23,235,18,D55,Toronto,70,South Riverdale (70),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,RIVER SPORT,RG,21,BLK,750.0,STOLEN,6414,"{'type': 'Point', 'coordinates': (-79.34515535, 43.66709459)}"
-6423,25579,GO-20181568266,THEFT UNDER - BICYCLE,2018-08-24T00:00:00,2018,August,Friday,24,236,20,2018-08-24T00:00:00,2018,August,Friday,24,236,23,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FUJI,FEATHER,RG,24,BLK,850.0,STOLEN,6415,"{'type': 'Point', 'coordinates': (-79.33654683, 43.6690179)}"
-6424,25584,GO-20189030020,THEFT UNDER - BICYCLE,2018-09-07T00:00:00,2018,September,Friday,7,250,23,2018-09-11T00:00:00,2018,September,Tuesday,11,254,22,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,OT,DEVINCI,RC,21,BLU,1000.0,STOLEN,6416,"{'type': 'Point', 'coordinates': (-79.35088962, 43.65863192)}"
-6425,25590,GO-20181755783,THEFT UNDER - BICYCLE,2018-09-15T00:00:00,2018,September,Saturday,15,258,21,2018-09-22T00:00:00,2018,September,Saturday,22,265,9,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MARIN,,MT,21,GRYOTH,,STOLEN,6417,"{'type': 'Point', 'coordinates': (-79.33284988, 43.66647178)}"
-6426,25594,GO-20189034156,THEFT FROM MOTOR VEHICLE UNDER,2018-06-11T00:00:00,2018,June,Monday,11,162,1,2018-10-15T00:00:00,2018,October,Monday,15,288,13,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,DEW,MT,24,DBL,600.0,STOLEN,6418,"{'type': 'Point', 'coordinates': (-79.34163478, 43.66500656)}"
-6427,25595,GO-20189034733,THEFT UNDER - BICYCLE,2018-10-08T00:00:00,2018,October,Monday,8,281,1,2018-10-19T00:00:00,2018,October,Friday,19,292,14,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,OMAFIETS CLASSI,RG,7,BLK,1463.0,STOLEN,6419,"{'type': 'Point', 'coordinates': (-79.34884568, 43.66008746)}"
-6428,25598,GO-20189036005,THEFT UNDER - BICYCLE,2018-10-28T00:00:00,2018,October,Sunday,28,301,17,2018-10-29T00:00:00,2018,October,Monday,29,302,7,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,CA,,MT,24,SIL,800.0,STOLEN,6420,"{'type': 'Point', 'coordinates': (-79.35371098, 43.66367583)}"
-6429,25603,GO-20189036574,THEFT UNDER - BICYCLE,2018-11-01T00:00:00,2018,November,Thursday,1,305,23,2018-11-02T00:00:00,2018,November,Friday,2,306,11,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,MT,18,BLU,600.0,STOLEN,6421,"{'type': 'Point', 'coordinates': (-79.35132068, 43.66246707)}"
-6430,25604,GO-20189037162,THEFT UNDER,2018-11-05T00:00:00,2018,November,Monday,5,309,17,2018-11-07T00:00:00,2018,November,Wednesday,7,311,9,D55,Toronto,70,South Riverdale (70),Schools During Un-Supervised Activity,Educational,OT,STEALTH,MT,21,BLK,650.0,STOLEN,6422,"{'type': 'Point', 'coordinates': (-79.33556888, 43.66925054)}"
-6431,25668,GO-20199029599,THEFT UNDER,2019-09-10T00:00:00,2019,September,Tuesday,10,253,23,2019-09-11T00:00:00,2019,September,Wednesday,11,254,13,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,1,BLK,0.0,STOLEN,6423,"{'type': 'Point', 'coordinates': (-79.34845931, 43.65919131)}"
-6432,25671,GO-20199030035,THEFT UNDER,2019-09-13T00:00:00,2019,September,Friday,13,256,17,2019-09-14T00:00:00,2019,September,Saturday,14,257,18,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,CA,TRAIL SL 29,MT,27,BLK,1140.0,STOLEN,6424,"{'type': 'Point', 'coordinates': (-79.34055684, 43.66228154)}"
-6433,25714,GO-20209013981,THEFT UNDER,2020-05-27T00:00:00,2020,May,Wednesday,27,148,0,2020-05-27T00:00:00,2020,May,Wednesday,27,148,7,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,TO,10,BLK,500.0,STOLEN,6425,"{'type': 'Point', 'coordinates': (-79.34804819, 43.66027543)}"
-6434,25715,GO-20209013981,THEFT UNDER,2020-05-27T00:00:00,2020,May,Wednesday,27,148,0,2020-05-27T00:00:00,2020,May,Wednesday,27,148,7,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,CYPRESS LX,MT,18,BLK,600.0,STOLEN,6426,"{'type': 'Point', 'coordinates': (-79.34804819, 43.66027543)}"
-6435,22259,GO-20179014837,THEFT UNDER - BICYCLE,2017-09-15T00:00:00,2017,September,Friday,15,258,9,2017-09-15T00:00:00,2017,September,Friday,15,258,11,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,XCW,MT,21,WHI,0.0,STOLEN,6427,"{'type': 'Point', 'coordinates': (-79.33754387, 43.6687961)}"
-6436,16729,GO-20189043026,THEFT UNDER - BICYCLE,2018-12-10T00:00:00,2018,December,Monday,10,344,23,2018-12-22T00:00:00,2018,December,Saturday,22,356,15,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,21,BLK,500.0,STOLEN,6428,"{'type': 'Point', 'coordinates': (-79.36399777, 43.66258744)}"
-6437,25718,GO-20209014432,THEFT UNDER,2020-06-02T00:00:00,2020,June,Tuesday,2,154,23,2020-06-03T00:00:00,2020,June,Wednesday,3,155,0,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RG,1,GRY,250.0,STOLEN,6429,"{'type': 'Point', 'coordinates': (-79.34030508, 43.66516613)}"
-6438,25721,GO-20209014804,THEFT UNDER,2020-06-07T00:00:00,2020,June,Sunday,7,159,18,2020-06-07T00:00:00,2020,June,Sunday,7,159,20,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,OT,,TO,27,BLK,1000.0,STOLEN,6430,"{'type': 'Point', 'coordinates': (-79.34055684, 43.66228154)}"
-6439,25761,GO-20209020411,THEFT UNDER,2020-08-15T00:00:00,2020,August,Saturday,15,228,19,2020-08-17T00:00:00,2020,August,Monday,17,230,9,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,OT,ON ONE,RC,1,BLU,350.0,STOLEN,6431,"{'type': 'Point', 'coordinates': (-79.34515535, 43.66709459)}"
-6440,25768,GO-20209022395,THEFT UNDER,2020-09-05T00:00:00,2020,September,Saturday,5,249,6,2020-09-05T00:00:00,2020,September,Saturday,5,249,11,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,CUSTOM,MT,21,SIL,0.0,STOLEN,6432,"{'type': 'Point', 'coordinates': (-79.33539172, 43.66559122)}"
-6441,25769,GO-20209022474,THEFT UNDER,2020-09-06T00:00:00,2020,September,Sunday,6,250,1,2020-09-06T00:00:00,2020,September,Sunday,6,250,14,D55,Toronto,70,South Riverdale (70),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,,OT,3,BLK,1200.0,STOLEN,6433,"{'type': 'Point', 'coordinates': (-79.31482799, 43.66227291)}"
-6442,25781,GO-20201829170,THEFT OF MOTOR VEHICLE,2020-09-26T00:00:00,2020,September,Saturday,26,270,13,2020-09-26T00:00:00,2020,September,Saturday,26,270,14,D55,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,EMMO,,EL,1,BLK,1200.0,STOLEN,6434,"{'type': 'Point', 'coordinates': (-79.33754387, 43.6687961)}"
-6443,307,GO-2017760297,B&E,2017-04-28T00:00:00,2017,April,Friday,28,118,18,2017-04-30T00:00:00,2017,April,Sunday,30,120,18,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,OTHER,,MT,21,DBL,400.0,STOLEN,6435,"{'type': 'Point', 'coordinates': (-79.36749818, 43.66688218000001)}"
-6444,333,GO-2017797659,THEFT UNDER,2017-04-29T00:00:00,2017,April,Saturday,29,119,17,2017-05-06T00:00:00,2017,May,Saturday,6,126,12,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,GT,,MT,24,YEL,,STOLEN,6436,"{'type': 'Point', 'coordinates': (-79.37212433, 43.6633875)}"
-6445,334,GO-2017797659,THEFT UNDER,2017-04-29T00:00:00,2017,April,Saturday,29,119,17,2017-05-06T00:00:00,2017,May,Saturday,6,126,12,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,SCHWINN,,MT,24,BLUWHI,,STOLEN,6437,"{'type': 'Point', 'coordinates': (-79.37212433, 43.6633875)}"
-6446,382,GO-20179006248,B&E,2017-05-08T00:00:00,2017,May,Monday,8,128,22,2017-05-13T00:00:00,2017,May,Saturday,13,133,16,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,,200.0,STOLEN,6438,"{'type': 'Point', 'coordinates': (-79.37212433, 43.6633875)}"
-6447,562,GO-20179007760,THEFT UNDER,2017-06-08T00:00:00,2017,June,Thursday,8,159,22,2017-06-09T00:00:00,2017,June,Friday,9,160,9,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,18,BLU,100.0,STOLEN,6439,"{'type': 'Point', 'coordinates': (-79.37547981, 43.66574074)}"
-6448,778,GO-20171186826,THEFT UNDER,2017-07-02T00:00:00,2017,July,Sunday,2,183,21,2017-07-03T00:00:00,2017,July,Monday,3,184,8,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MARIN OR MARINO,SAN ANSELMO DS3,RG,27,,850.0,STOLEN,6440,"{'type': 'Point', 'coordinates': (-79.36277259, 43.664236560000006)}"
-6449,874,GO-20179010315,THEFT UNDER - BICYCLE,2017-07-11T00:00:00,2017,July,Tuesday,11,192,15,2017-07-16T00:00:00,2017,July,Sunday,16,197,10,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,SU,,OT,6,BLU,218.0,STOLEN,6441,"{'type': 'Point', 'coordinates': (-79.37302171, 43.66318983)}"
-6450,939,GO-20179010736,THEFT UNDER - BICYCLE,2017-07-23T00:00:00,2017,July,Sunday,23,204,16,2017-07-23T00:00:00,2017,July,Sunday,23,204,16,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MA,FAIRFAX,RG,21,SIL,500.0,STOLEN,6442,"{'type': 'Point', 'coordinates': (-79.36247702, 43.66569194)}"
-6451,952,GO-20179010874,THEFT UNDER - BICYCLE,2017-07-21T00:00:00,2017,July,Friday,21,202,11,2017-07-23T00:00:00,2017,July,Sunday,23,204,17,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,SU,SUPERCYCLE,MT,21,GRY,550.0,STOLEN,6443,"{'type': 'Point', 'coordinates': (-79.37785611, 43.66521591)}"
-6452,959,GO-20179010906,THEFT UNDER - BICYCLE,2017-07-20T00:00:00,2017,July,Thursday,20,201,15,2017-07-24T00:00:00,2017,July,Monday,24,205,12,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Open Areas (Lakes, Parks, Rivers)",Outside,KO,DEW DELUXE,OT,21,GLD,900.0,STOLEN,6444,"{'type': 'Point', 'coordinates': (-79.3594376, 43.66449587)}"
-6453,1037,GO-20179011533,THEFT UNDER,2017-08-01T00:00:00,2017,August,Tuesday,1,213,17,2017-08-02T00:00:00,2017,August,Wednesday,2,214,9,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RG,24,BLK,550.0,STOLEN,6445,"{'type': 'Point', 'coordinates': (-79.37717453, 43.66359899)}"
-6454,1222,GO-20179013050,THEFT UNDER - BICYCLE,2017-08-14T00:00:00,2017,August,Monday,14,226,3,2017-08-22T00:00:00,2017,August,Tuesday,22,234,15,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,ROUNDABOUT,RG,9,CPR,1100.0,STOLEN,6446,"{'type': 'Point', 'coordinates': (-79.3602871, 43.66342614)}"
-6455,1336,GO-20179014179,THEFT UNDER,2017-09-04T00:00:00,2017,September,Monday,4,247,21,2017-09-07T00:00:00,2017,September,Thursday,7,250,10,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,REDUX 3,RG,19,GRY,1100.0,STOLEN,6447,"{'type': 'Point', 'coordinates': (-79.36362419, 43.66846157)}"
-6456,1442,GO-20179014866,THEFT UNDER - BICYCLE,2017-09-15T00:00:00,2017,September,Friday,15,258,13,2017-09-15T00:00:00,2017,September,Friday,15,258,14,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,F50 ROAD BIKE,TO,23,BLU,3918.0,STOLEN,6448,"{'type': 'Point', 'coordinates': (-79.36859203, 43.66587501)}"
-6457,1564,GO-20179016220,THEFT UNDER - BICYCLE,2017-10-01T00:00:00,2017,October,Sunday,1,274,0,2017-10-01T00:00:00,2017,October,Sunday,1,274,17,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,SIRRUS,OT,24,BLK,899.0,STOLEN,6449,"{'type': 'Point', 'coordinates': (-79.36362419, 43.66846157)}"
-6458,1580,GO-20179016345,THEFT UNDER - BICYCLE,2017-10-03T00:00:00,2017,October,Tuesday,3,276,7,2017-10-03T00:00:00,2017,October,Tuesday,3,276,8,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,URBANIA,RG,24,GRY,700.0,STOLEN,6450,"{'type': 'Point', 'coordinates': (-79.37785611, 43.66521591)}"
-6459,1623,GO-20179016836,THEFT UNDER - BICYCLE,2017-10-08T00:00:00,2017,October,Sunday,8,281,20,2017-10-10T00:00:00,2017,October,Tuesday,10,283,10,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,1,BLK,500.0,STOLEN,6451,"{'type': 'Point', 'coordinates': (-79.36715127, 43.66233418)}"
-6460,1626,GO-20179016845,THEFT UNDER - BICYCLE,2017-10-08T00:00:00,2017,October,Sunday,8,281,22,2017-10-10T00:00:00,2017,October,Tuesday,10,283,11,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,21,,500.0,STOLEN,6452,"{'type': 'Point', 'coordinates': (-79.36615925, 43.6679329)}"
-6461,1669,GO-20179017342,THEFT UNDER - BICYCLE,2017-10-08T00:00:00,2017,October,Sunday,8,281,18,2017-10-16T00:00:00,2017,October,Monday,16,289,17,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,NO,2011,OT,1,BLK,800.0,STOLEN,6453,"{'type': 'Point', 'coordinates': (-79.37489281, 43.66432923)}"
-6462,1835,GO-20179019521,THEFT UNDER,2017-11-11T00:00:00,2017,November,Saturday,11,315,21,2017-11-13T00:00:00,2017,November,Monday,13,317,15,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,OT,SPEEDSTER S30 2,RC,30,WHI,550.0,STOLEN,6454,"{'type': 'Point', 'coordinates': (-79.3721682, 43.66763473)}"
-6463,1905,GO-20179021077,THEFT UNDER - BICYCLE,2017-12-02T00:00:00,2017,December,Saturday,2,336,11,2017-12-02T00:00:00,2017,December,Saturday,2,336,12,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,PROJEKT 21,RG,18,BLK,650.0,STOLEN,6455,"{'type': 'Point', 'coordinates': (-79.361458, 43.66315822)}"
-6464,1944,GO-20179022573,THEFT OF EBIKE UNDER $5000,2017-12-18T00:00:00,2017,December,Monday,18,352,12,2017-12-19T00:00:00,2017,December,Tuesday,19,353,12,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,UK,,EL,30,RED,2300.0,STOLEN,6456,"{'type': 'Point', 'coordinates': (-79.37785611, 43.66521591)}"
-6465,2056,GO-20189003884,THEFT UNDER - BICYCLE,2018-02-07T00:00:00,2018,February,Wednesday,7,38,20,2018-02-08T00:00:00,2018,February,Thursday,8,39,11,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RA,,OT,8,BLK,,STOLEN,6457,"{'type': 'Point', 'coordinates': (-79.36992785, 43.66558086)}"
-6466,2104,GO-20189009306,THEFT UNDER - BICYCLE,2018-03-24T00:00:00,2018,March,Saturday,24,83,20,2018-03-24T00:00:00,2018,March,Saturday,24,83,21,D51,Toronto,71,Cabbagetown-South St.James Town (71),Schools During Un-Supervised Activity,Educational,NO,ROAD BICYCLE,RG,1,BLK,500.0,STOLEN,6458,"{'type': 'Point', 'coordinates': (-79.36825854, 43.66505739)}"
-6467,2433,GO-20189016952,THEFT UNDER - BICYCLE,2018-05-29T00:00:00,2018,May,Tuesday,29,149,1,2018-05-31T00:00:00,2018,May,Thursday,31,151,16,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ALIBI STEP THRO,RG,8,BLK,650.0,STOLEN,6459,"{'type': 'Point', 'coordinates': (-79.36501416, 43.66513376)}"
-6468,2722,GO-20189020764,THEFT UNDER - BICYCLE,2018-06-28T00:00:00,2018,June,Thursday,28,179,12,2018-06-29T00:00:00,2018,June,Friday,29,180,17,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,DIRT JUMPER,MT,10,BLK,900.0,STOLEN,6460,"{'type': 'Point', 'coordinates': (-79.36722396, 43.66616179)}"
-6469,2734,GO-20189020959,THEFT UNDER - BICYCLE,2018-07-02T00:00:00,2018,July,Monday,2,183,21,2018-07-02T00:00:00,2018,July,Monday,2,183,22,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,SEARCH 2015,RC,24,GRY,1200.0,STOLEN,6461,"{'type': 'Point', 'coordinates': (-79.37212433, 43.6633875)}"
-6470,2745,GO-20189021094,THEFT UNDER,2018-06-30T00:00:00,2018,June,Saturday,30,181,6,2018-07-04T00:00:00,2018,July,Wednesday,4,185,10,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,,MT,18,BLK,200.0,STOLEN,6462,"{'type': 'Point', 'coordinates': (-79.37785611, 43.66521591)}"
-6471,2746,GO-20189021094,THEFT UNDER,2018-06-30T00:00:00,2018,June,Saturday,30,181,6,2018-07-04T00:00:00,2018,July,Wednesday,4,185,10,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,,MT,18,GRN,200.0,STOLEN,6463,"{'type': 'Point', 'coordinates': (-79.37785611, 43.66521591)}"
-6472,2772,GO-20189021453,THEFT UNDER - BICYCLE,2018-06-25T00:00:00,2018,June,Monday,25,176,0,2018-07-06T00:00:00,2018,July,Friday,6,187,13,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,SOLOIST,RG,1,BLK,550.0,STOLEN,6464,"{'type': 'Point', 'coordinates': (-79.37085094, 43.66451729)}"
-6473,2788,GO-20181254545,THEFT UNDER,2018-07-09T00:00:00,2018,July,Monday,9,190,19,2018-07-10T00:00:00,2018,July,Tuesday,10,191,8,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,FORTRESS,1700FW,SC,0,BLK,3500.0,STOLEN,6465,"{'type': 'Point', 'coordinates': (-79.37085094, 43.66451729)}"
-6474,2829,GO-20181280484,THEFT UNDER - BICYCLE,2018-07-13T00:00:00,2018,July,Friday,13,194,19,2018-07-13T00:00:00,2018,July,Friday,13,194,21,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DEVINCI,TIAGRA,RG,18,SIL,2000.0,STOLEN,6466,"{'type': 'Point', 'coordinates': (-79.36600501, 43.66217007)}"
-6475,2835,GO-20189022277,THEFT UNDER - BICYCLE,2018-07-07T00:00:00,2018,July,Saturday,7,188,16,2018-07-13T00:00:00,2018,July,Friday,13,194,11,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,M,RG,21,BRN,625.0,STOLEN,6467,"{'type': 'Point', 'coordinates': (-79.37785611, 43.66521591)}"
-6476,2876,GO-20189022946,THEFT UNDER,2018-07-16T00:00:00,2018,July,Monday,16,197,3,2018-07-18T00:00:00,2018,July,Wednesday,18,199,16,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,CC,PACE FIXIE 700C,OT,1,BLK,400.0,STOLEN,6468,"{'type': 'Point', 'coordinates': (-79.36722396, 43.66616179)}"
-6477,2925,GO-20189023475,THEFT UNDER - BICYCLE,2018-07-21T00:00:00,2018,July,Saturday,21,202,23,2018-07-22T00:00:00,2018,July,Sunday,22,203,23,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,2017 FX 2,OT,8,BLK,599.0,STOLEN,6469,"{'type': 'Point', 'coordinates': (-79.36451274, 43.66387933)}"
-6478,3044,GO-20189024746,B&E,2018-07-25T00:00:00,2018,July,Wednesday,25,206,9,2018-08-01T00:00:00,2018,August,Wednesday,1,213,16,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,CC,700 VECTOR,RG,8,BLU,338.0,STOLEN,6470,"{'type': 'Point', 'coordinates': (-79.37489281, 43.66432923)}"
-6479,3214,GO-20189026501,THEFT UNDER - BICYCLE,2018-08-14T00:00:00,2018,August,Tuesday,14,226,19,2018-08-15T00:00:00,2018,August,Wednesday,15,227,15,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,24,GRY,250.0,STOLEN,6471,"{'type': 'Point', 'coordinates': (-79.36992785, 43.66558086)}"
-6480,3336,GO-20181588743,THEFT UNDER - BICYCLE,2018-08-28T00:00:00,2018,August,Tuesday,28,240,5,2018-08-28T00:00:00,2018,August,Tuesday,28,240,5,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,TRI-CROSS,OT,20,BLKGRY,300.0,STOLEN,6472,"{'type': 'Point', 'coordinates': (-79.37302171, 43.66318983)}"
-6481,3432,GO-20189029800,THEFT UNDER - BICYCLE,2018-09-08T00:00:00,2018,September,Saturday,8,251,19,2018-09-10T00:00:00,2018,September,Monday,10,253,11,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MA,BOLINAS RIDGE,RG,24,BLU,500.0,STOLEN,6473,"{'type': 'Point', 'coordinates': (-79.3721682, 43.66763473)}"
-6482,3453,GO-20189030190,THEFT UNDER - BICYCLE,2018-09-12T00:00:00,2018,September,Wednesday,12,255,7,2018-09-13T00:00:00,2018,September,Thursday,13,256,8,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,18,BLK,700.0,STOLEN,6474,"{'type': 'Point', 'coordinates': (-79.36952193, 43.66817448)}"
-6483,3581,GO-20189032454,THEFT UNDER - BICYCLE,2018-09-26T00:00:00,2018,September,Wednesday,26,269,18,2018-09-30T00:00:00,2018,September,Sunday,30,273,22,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,TR,VALENCIA,RG,24,DBL,300.0,STOLEN,6475,"{'type': 'Point', 'coordinates': (-79.37785611, 43.66521591)}"
-6484,3609,GO-20189032784,THEFT UNDER - BICYCLE,2018-10-03T00:00:00,2018,October,Wednesday,3,276,11,2018-10-03T00:00:00,2018,October,Wednesday,3,276,14,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,MT,16,,0.0,STOLEN,6476,"{'type': 'Point', 'coordinates': (-79.37085094, 43.66451729)}"
-6485,3628,GO-20181852675,THEFT UNDER,2018-10-07T00:00:00,2018,October,Sunday,7,280,9,2018-10-07T00:00:00,2018,October,Sunday,7,280,9,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,DEVINCI,AMSTERDAM,RG,18,BLK,900.0,STOLEN,6477,"{'type': 'Point', 'coordinates': (-79.3680462, 43.66847147)}"
-6486,3629,GO-20181852675,THEFT UNDER,2018-10-07T00:00:00,2018,October,Sunday,7,280,9,2018-10-07T00:00:00,2018,October,Sunday,7,280,9,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,TRI-CROSS,RC,21,BLU,1500.0,STOLEN,6478,"{'type': 'Point', 'coordinates': (-79.3680462, 43.66847147)}"
-6487,3630,GO-20181852675,THEFT UNDER,2018-10-07T00:00:00,2018,October,Sunday,7,280,9,2018-10-07T00:00:00,2018,October,Sunday,7,280,9,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,FAIRDALELOOKFAR,RG,18,BLK,1000.0,STOLEN,6479,"{'type': 'Point', 'coordinates': (-79.3680462, 43.66847147)}"
-6488,3631,GO-20181852675,THEFT UNDER,2018-10-07T00:00:00,2018,October,Sunday,7,280,9,2018-10-07T00:00:00,2018,October,Sunday,7,280,9,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,BMX TRICK,BM,14,BLK,200.0,STOLEN,6480,"{'type': 'Point', 'coordinates': (-79.3680462, 43.66847147)}"
-6489,3672,GO-20189033740,THEFT UNDER - BICYCLE,2018-09-10T00:00:00,2018,September,Monday,10,253,21,2018-10-11T00:00:00,2018,October,Thursday,11,284,21,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,18 YORKVILLE,RG,15,GRY,500.0,STOLEN,6481,"{'type': 'Point', 'coordinates': (-79.36558916, 43.6665295)}"
-6490,3673,GO-20189033740,THEFT UNDER - BICYCLE,2018-09-10T00:00:00,2018,September,Monday,10,253,21,2018-10-11T00:00:00,2018,October,Thursday,11,284,21,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,YORKVILLE,OT,21,GRY,500.0,STOLEN,6482,"{'type': 'Point', 'coordinates': (-79.36558916, 43.6665295)}"
-6491,3689,GO-20181885781,THEFT OF EBIKE UNDER $5000,2018-10-11T00:00:00,2018,October,Thursday,11,284,17,2018-10-12T00:00:00,2018,October,Friday,12,285,13,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OTHER,EDISON,EL,32,BLKYEL,3000.0,STOLEN,6483,"{'type': 'Point', 'coordinates': (-79.37170183, 43.66651225)}"
-6492,3711,GO-20189034400,THEFT UNDER - BICYCLE,2018-10-11T00:00:00,2018,October,Thursday,11,284,17,2018-10-17T00:00:00,2018,October,Wednesday,17,290,12,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,EDISON XL,EL,18,BLK,3000.0,STOLEN,6484,"{'type': 'Point', 'coordinates': (-79.37170183, 43.66651225)}"
-6493,3712,GO-20189034402,THEFT UNDER - BICYCLE,2018-10-16T00:00:00,2018,October,Tuesday,16,289,16,2018-10-17T00:00:00,2018,October,Wednesday,17,290,12,D51,Toronto,71,Cabbagetown-South St.James Town (71),Schools During Un-Supervised Activity,Educational,CA,,TO,27,BRZ,400.0,STOLEN,6485,"{'type': 'Point', 'coordinates': (-79.37830693, 43.66628508)}"
-6494,3734,GO-20189034837,THEFT UNDER - BICYCLE,2018-10-17T00:00:00,2018,October,Wednesday,17,290,20,2018-10-20T00:00:00,2018,October,Saturday,20,293,13,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,YORKVILLE,RG,21,BLU,400.0,STOLEN,6486,"{'type': 'Point', 'coordinates': (-79.36460631, 43.66598269)}"
-6495,3751,GO-20189035294,THEFT UNDER,2018-10-23T00:00:00,2018,October,Tuesday,23,296,12,2018-10-23T00:00:00,2018,October,Tuesday,23,296,19,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,18 SIRRUS,RG,24,GRY,749.0,STOLEN,6487,"{'type': 'Point', 'coordinates': (-79.36801682000001, 43.66446336)}"
-6496,3754,GO-20189035350,B&E,2018-10-23T00:00:00,2018,October,Tuesday,23,296,23,2018-10-24T00:00:00,2018,October,Wednesday,24,297,12,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,OT,10,,0.0,STOLEN,6488,"{'type': 'Point', 'coordinates': (-79.36362419, 43.66846157)}"
-6497,3868,GO-20189038548,THEFT UNDER - BICYCLE,2018-11-14T00:00:00,2018,November,Wednesday,14,318,23,2018-11-16T00:00:00,2018,November,Friday,16,320,17,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,MINELLI,RG,1,BLK,600.0,STOLEN,6489,"{'type': 'Point', 'coordinates': (-79.36992785, 43.66558086)}"
-6498,3869,GO-20189038561,THEFT UNDER - BICYCLE,2018-11-13T00:00:00,2018,November,Tuesday,13,317,0,2018-11-16T00:00:00,2018,November,Friday,16,320,18,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,DEW PLUS,RG,18,OTH,850.0,STOLEN,6490,"{'type': 'Point', 'coordinates': (-79.36460631, 43.66598269)}"
-6499,3873,GO-20189038615,THEFT UNDER - BICYCLE,2018-11-17T00:00:00,2018,November,Saturday,17,321,13,2018-11-17T00:00:00,2018,November,Saturday,17,321,14,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,TR,7.6 FX,RG,9,RED,1200.0,STOLEN,6491,"{'type': 'Point', 'coordinates': (-79.37489281, 43.66432923)}"
-6500,3882,GO-20189038918,THEFT UNDER - BICYCLE,2018-11-19T00:00:00,2018,November,Monday,19,323,19,2018-11-20T00:00:00,2018,November,Tuesday,20,324,7,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,GI,REBEL,MT,21,BLK,1000.0,STOLEN,6492,"{'type': 'Point', 'coordinates': (-79.37667701, 43.66241871)}"
-6501,3894,GO-20189039576,THEFT UNDER - BICYCLE,2018-11-23T00:00:00,2018,November,Friday,23,327,23,2018-11-24T00:00:00,2018,November,Saturday,24,328,10,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,RG,21,SIL,800.0,STOLEN,6493,"{'type': 'Point', 'coordinates': (-79.3594376, 43.66449587)}"
-6502,3895,GO-20189039576,THEFT UNDER - BICYCLE,2018-11-23T00:00:00,2018,November,Friday,23,327,23,2018-11-24T00:00:00,2018,November,Saturday,24,328,10,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,MT,18,,500.0,STOLEN,6494,"{'type': 'Point', 'coordinates': (-79.3594376, 43.66449587)}"
-6503,3918,GO-20182220665,B&E,2018-11-26T00:00:00,2018,November,Monday,26,330,12,2018-12-03T00:00:00,2018,December,Monday,3,337,11,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,SIRRUS,RG,20,RED,737.0,RECOVERED,6495,"{'type': 'Point', 'coordinates': (-79.3658853, 43.66722444)}"
-6504,3919,GO-20182220665,B&E,2018-11-26T00:00:00,2018,November,Monday,26,330,12,2018-12-03T00:00:00,2018,December,Monday,3,337,11,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KHS,XC304,MT,10,BLKBLU,1100.0,STOLEN,6496,"{'type': 'Point', 'coordinates': (-79.3658853, 43.66722444)}"
-6505,3921,GO-20189040709,THEFT UNDER - BICYCLE,2018-12-04T00:00:00,2018,December,Tuesday,4,338,10,2018-12-04T00:00:00,2018,December,Tuesday,4,338,11,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,MT,10,GRN,600.0,STOLEN,6497,"{'type': 'Point', 'coordinates': (-79.36247702, 43.66569194)}"
-6506,3937,GO-20182285125,B&E,2018-12-12T00:00:00,2018,December,Wednesday,12,346,23,2018-12-13T00:00:00,2018,December,Thursday,13,347,15,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,HORNET,RG,1,BLK,396.0,STOLEN,6498,"{'type': 'Point', 'coordinates': (-79.36694644, 43.66547502)}"
-6507,3938,GO-20182285125,B&E,2018-12-12T00:00:00,2018,December,Wednesday,12,346,23,2018-12-13T00:00:00,2018,December,Thursday,13,347,15,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,ALIBI,RG,7,BLK,757.0,STOLEN,6499,"{'type': 'Point', 'coordinates': (-79.36694644, 43.66547502)}"
-6508,4032,GO-20199003720,THEFT UNDER - BICYCLE,2019-01-27T00:00:00,2019,January,Sunday,27,27,16,2019-01-27T00:00:00,2019,January,Sunday,27,27,21,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,RA,LITE SE HYBRID,MT,24,SIL,690.0,STOLEN,6500,"{'type': 'Point', 'coordinates': (-79.37717453, 43.66359899)}"
-6509,4266,GO-20199014704,THEFT UNDER,2019-05-10T00:00:00,2019,May,Friday,10,130,16,2019-05-11T00:00:00,2019,May,Saturday,11,131,15,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,KO,DEW,RC,24,GRY,1000.0,STOLEN,6501,"{'type': 'Point', 'coordinates': (-79.37785611, 43.66521591)}"
-6510,4330,GO-20199016055,THEFT UNDER,2019-05-20T00:00:00,2019,May,Monday,20,140,14,2019-05-23T00:00:00,2019,May,Thursday,23,143,16,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,OT,17 SIRRUS SPORT,OT,12,,2418.0,STOLEN,6502,"{'type': 'Point', 'coordinates': (-79.37489281, 43.66432923)}"
-6511,4358,GO-20199016522,THEFT UNDER,2019-05-27T00:00:00,2019,May,Monday,27,147,16,2019-05-27T00:00:00,2019,May,Monday,27,147,18,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,FO,8,RED,400.0,STOLEN,6503,"{'type': 'Point', 'coordinates': (-79.37373773, 43.66729501)}"
-6512,4384,GO-2019994415,B&E,2019-05-28T00:00:00,2019,May,Tuesday,28,148,22,2019-05-30T00:00:00,2019,May,Thursday,30,150,21,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BRODIE,VOLTAGE,TO,16,GRY,500.0,STOLEN,6504,"{'type': 'Point', 'coordinates': (-79.36816374, 43.67377546)}"
-6513,4385,GO-20199016971,THEFT UNDER,2019-05-30T00:00:00,2019,May,Thursday,30,150,8,2019-05-31T00:00:00,2019,May,Friday,31,151,9,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RM,SOUL,MT,21,BLK,1000.0,STOLEN,6505,"{'type': 'Point', 'coordinates': (-79.36460631, 43.66598269)}"
-6514,4508,GO-20199018818,THEFT UNDER,2019-06-16T00:00:00,2019,June,Sunday,16,167,0,2019-06-16T00:00:00,2019,June,Sunday,16,167,12,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,KO,,RC,20,GRY,800.0,STOLEN,6506,"{'type': 'Point', 'coordinates': (-79.37489281, 43.66432923)}"
-6515,4703,GO-20199021432,THEFT UNDER,2019-07-07T00:00:00,2019,July,Sunday,7,188,17,2019-07-08T00:00:00,2019,July,Monday,8,189,10,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,,MT,10,BLU,470.0,STOLEN,6507,"{'type': 'Point', 'coordinates': (-79.36708561, 43.66868443)}"
-6516,19010,GO-20161292149,B&E,2016-07-23T00:00:00,2016,July,Saturday,23,205,6,2016-07-23T00:00:00,2016,July,Saturday,23,205,6,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,REVOLVER 9.2,MT,0,BLKPLE,,STOLEN,6508,"{'type': 'Point', 'coordinates': (-79.33314576, 43.65966573)}"
-6517,14182,GO-20179013128,THEFT UNDER - BICYCLE,2017-08-23T00:00:00,2017,August,Wednesday,23,235,9,2017-08-24T00:00:00,2017,August,Thursday,24,236,13,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,RG,7,GRN,500.0,STOLEN,6509,"{'type': 'Point', 'coordinates': (-79.34845931, 43.65919131)}"
-6518,19017,GO-20161407978,THEFT UNDER,2016-08-09T00:00:00,2016,August,Tuesday,9,222,18,2016-08-10T00:00:00,2016,August,Wednesday,10,223,10,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,,MT,18,WHI,300.0,STOLEN,6510,"{'type': 'Point', 'coordinates': (-79.34366346, 43.66351902)}"
-6519,10993,GO-20169001456,THEFT UNDER,2016-02-15T00:00:00,2016,February,Monday,15,46,20,2016-02-16T00:00:00,2016,February,Tuesday,16,47,15,D55,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,EPIC M4FSR,MT,27,BLK,3500.0,STOLEN,6511,"{'type': 'Point', 'coordinates': (-79.3412907, 43.66212954)}"
-6520,22260,GO-20171693632,THEFT UNDER - BICYCLE,2017-09-09T00:00:00,2017,September,Saturday,9,252,17,2017-09-18T00:00:00,2017,September,Monday,18,261,13,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,ONE WAY,OT,0,DBL,1000.0,STOLEN,6512,"{'type': 'Point', 'coordinates': (-79.33618619, 43.66540784)}"
-6521,14188,GO-20179014312,THEFT UNDER,2017-09-03T00:00:00,2017,September,Sunday,3,246,0,2017-09-09T00:00:00,2017,September,Saturday,9,252,8,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,ROPER,RG,9,ONG,770.0,STOLEN,6513,"{'type': 'Point', 'coordinates': (-79.35288146, 43.66387781)}"
-6522,11041,GO-2016431529,THEFT UNDER,2016-03-12T00:00:00,2016,March,Saturday,12,72,12,2016-03-12T00:00:00,2016,March,Saturday,12,72,14,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OPUS,CORSO,MT,21,BLK,,STOLEN,6514,"{'type': 'Point', 'coordinates': (-79.3400521, 43.66106114)}"
-6523,19028,GO-20161495696,B&E W'INTENT,2016-08-22T00:00:00,2016,August,Monday,22,235,18,2016-08-23T00:00:00,2016,August,Tuesday,23,236,20,D55,Toronto,70,South Riverdale (70),"Construction Site (Warehouse, Trailer, Shed)",Commercial,OTHER,,MT,12,OTH,20.0,STOLEN,6515,"{'type': 'Point', 'coordinates': (-79.32288072, 43.652347070000005)}"
-6524,14196,GO-20171703924,B&E,2017-09-19T00:00:00,2017,September,Tuesday,19,262,22,2017-09-19T00:00:00,2017,September,Tuesday,19,262,22,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MARIN,,RC,18,,300.0,STOLEN,6516,"{'type': 'Point', 'coordinates': (-79.35220622, 43.66224318)}"
-6525,22261,GO-20179016304,THEFT UNDER - BICYCLE,2017-08-18T00:00:00,2017,August,Friday,18,230,10,2017-10-02T00:00:00,2017,October,Monday,2,275,17,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,OT,URBANISTA (TOPO,TO,7,WHI,600.0,STOLEN,6517,"{'type': 'Point', 'coordinates': (-79.3533502, 43.66120299)}"
-6526,11076,GO-2016513331,THEFT OVER,2016-03-25T00:00:00,2016,March,Friday,25,85,23,2016-03-26T00:00:00,2016,March,Saturday,26,86,5,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,RG,12,WHI,3000.0,STOLEN,6518,"{'type': 'Point', 'coordinates': (-79.35088962, 43.65863192)}"
-6527,19029,GO-20169009486,THEFT UNDER,2016-08-25T00:00:00,2016,August,Thursday,25,238,9,2016-08-25T00:00:00,2016,August,Thursday,25,238,18,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,CLASSICO,RG,12,GRY,700.0,STOLEN,6519,"{'type': 'Point', 'coordinates': (-79.34404681, 43.661521230000005)}"
-6528,14201,GO-20179016094,THEFT UNDER - BICYCLE,2017-09-28T00:00:00,2017,September,Thursday,28,271,9,2017-09-29T00:00:00,2017,September,Friday,29,272,11,D55,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RG,1,BLK,500.0,STOLEN,6520,"{'type': 'Point', 'coordinates': (-79.34163478, 43.66500656)}"
-6529,22270,GO-20172052167,B&E W'INTENT,2017-11-10T00:00:00,2017,November,Friday,10,314,14,2017-11-13T00:00:00,2017,November,Monday,13,317,9,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,SUNRA,EM70,EL,0,YEL,8000.0,STOLEN,6521,"{'type': 'Point', 'coordinates': (-79.34055684, 43.66228154)}"
-6530,11112,GO-20169003132,THEFT UNDER,2016-04-05T00:00:00,2016,April,Tuesday,5,96,20,2016-04-06T00:00:00,2016,April,Wednesday,6,97,19,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,21,YEL,3000.0,STOLEN,6522,"{'type': 'Point', 'coordinates': (-79.3533502, 43.66120299)}"
-6531,19031,GO-20169009543,THEFT UNDER,2016-08-22T00:00:00,2016,August,Monday,22,235,16,2016-08-27T00:00:00,2016,August,Saturday,27,240,17,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,MEN'S MONTEREY,OT,8,OTH,250.0,STOLEN,6523,"{'type': 'Point', 'coordinates': (-79.34271326, 43.661181860000006)}"
-6532,19037,GO-20169010292,THEFT UNDER,2016-09-11T00:00:00,2016,September,Sunday,11,255,18,2016-09-11T00:00:00,2016,September,Sunday,11,255,23,D55,Toronto,70,South Riverdale (70),"Religious Facilities (Synagogue, Church, Convent, Mosque)",Other,CC,KROSSPORT,MT,3,WHI,700.0,STOLEN,6524,"{'type': 'Point', 'coordinates': (-79.34479982, 43.66626599)}"
-6533,19045,GO-20169011460,THEFT UNDER - BICYCLE,2016-10-02T00:00:00,2016,October,Sunday,2,276,22,2016-10-02T00:00:00,2016,October,Sunday,2,276,22,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CC,29ER 6061 ALUMI,MT,7,BLK,350.0,STOLEN,6525,"{'type': 'Point', 'coordinates': (-79.33427841, 43.6661702)}"
-6534,19049,GO-20169012012,THEFT UNDER - BICYCLE,2016-10-13T00:00:00,2016,October,Thursday,13,287,19,2016-10-13T00:00:00,2016,October,Thursday,13,287,21,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,Z95,RC,9,WHI,1500.0,STOLEN,6526,"{'type': 'Point', 'coordinates': (-79.35010849, 43.65958403)}"
-6535,19050,GO-20169012012,THEFT UNDER - BICYCLE,2016-10-13T00:00:00,2016,October,Thursday,13,287,19,2016-10-13T00:00:00,2016,October,Thursday,13,287,21,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,ZW100,RC,16,BLK,1500.0,STOLEN,6527,"{'type': 'Point', 'coordinates': (-79.35010849, 43.65958403)}"
-6536,19060,GO-20169013471,B&E,2016-11-14T00:00:00,2016,November,Monday,14,319,8,2016-11-15T00:00:00,2016,November,Tuesday,15,320,21,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,UK,SECTEUR,RC,18,BLK,2200.0,STOLEN,6528,"{'type': 'Point', 'coordinates': (-79.34795473, 43.66261567)}"
-6537,19063,GO-20169014355,THEFT UNDER,2016-12-04T00:00:00,2016,December,Sunday,4,339,20,2016-12-07T00:00:00,2016,December,Wednesday,7,342,17,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,Q620,MT,8,BLK,700.0,STOLEN,6529,"{'type': 'Point', 'coordinates': (-79.34030508, 43.66516613)}"
-6538,19064,GO-20169014438,THEFT UNDER,2016-12-03T00:00:00,2016,December,Saturday,3,338,11,2016-12-09T00:00:00,2016,December,Friday,9,344,11,D55,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,FJ,,RC,1,BLK,0.0,STOLEN,6530,"{'type': 'Point', 'coordinates': (-79.34030508, 43.66516613)}"
-6539,19071,GO-20179002438,THEFT UNDER,2017-02-17T00:00:00,2017,February,Friday,17,48,16,2017-02-24T00:00:00,2017,February,Friday,24,55,16,D55,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,3 SPEED IN REAR,OT,3,BLK,700.0,STOLEN,6531,"{'type': 'Point', 'coordinates': (-79.34212986, 43.66615881)}"
-6540,19079,GO-20179006247,THEFT UNDER - BICYCLE,2017-05-13T00:00:00,2017,May,Saturday,13,133,19,2017-05-13T00:00:00,2017,May,Saturday,13,133,20,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,CYPRESS (ASSUME,RG,24,LBL,500.0,STOLEN,6532,"{'type': 'Point', 'coordinates': (-79.32839639, 43.65923478)}"
-6541,19083,GO-2017975096,THEFT UNDER - BICYCLE,2017-06-02T00:00:00,2017,June,Friday,2,153,0,2017-06-02T00:00:00,2017,June,Friday,2,153,9,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,,TR,1,BLU,600.0,STOLEN,6533,"{'type': 'Point', 'coordinates': (-79.33086755, 43.66016452)}"
-6542,19097,GO-20179010038,THEFT UNDER - BICYCLE,2017-07-12T00:00:00,2017,July,Wednesday,12,193,13,2017-07-12T00:00:00,2017,July,Wednesday,12,193,14,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,NO,2001 CHARGER,MT,24,WHI,750.0,STOLEN,6534,"{'type': 'Point', 'coordinates': (-79.34885459, 43.656657970000005)}"
-6543,19099,GO-20179010416,THEFT UNDER - BICYCLE,2017-07-18T00:00:00,2017,July,Tuesday,18,199,9,2017-07-18T00:00:00,2017,July,Tuesday,18,199,16,D55,Toronto,70,South Riverdale (70),Bar / Restaurant,Commercial,GI,2017 LIV AVAIL,RC,16,CRM,905.0,STOLEN,6535,"{'type': 'Point', 'coordinates': (-79.32787173, 43.66379895000001)}"
-6544,19119,GO-20179015901,THEFT UNDER,2017-09-21T00:00:00,2017,September,Thursday,21,264,18,2017-09-27T00:00:00,2017,September,Wednesday,27,270,11,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,OT,2160 CLASSIC FI,TO,1,LBL,320.0,STOLEN,6536,"{'type': 'Point', 'coordinates': (-79.34030508, 43.66516613)}"
-6545,19122,GO-20179016551,THEFT UNDER - BICYCLE,2017-10-05T00:00:00,2017,October,Thursday,5,278,15,2017-10-05T00:00:00,2017,October,Thursday,5,278,19,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,HF,,RG,10,BLU,250.0,STOLEN,6537,"{'type': 'Point', 'coordinates': (-79.33647123, 43.66631738000001)}"
-6546,19129,GO-20173032087,B&E,2017-11-15T00:00:00,2017,November,Wednesday,15,319,12,2017-11-20T00:00:00,2017,November,Monday,20,324,18,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,NORCO,INDIE 11 IGH,RG,0,BLK,1700.0,STOLEN,6538,"{'type': 'Point', 'coordinates': (-79.34030508, 43.66516613)}"
-6547,16733,GO-20199003510,THEFT UNDER - BICYCLE,2019-01-17T00:00:00,2019,January,Thursday,17,17,22,2019-01-25T00:00:00,2019,January,Friday,25,25,16,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,GF,'PIRANHA',MT,21,BLU,1300.0,STOLEN,6539,"{'type': 'Point', 'coordinates': (-79.36859203, 43.66587501)}"
-6548,19131,GO-20179020292,THEFT UNDER - BICYCLE,2017-11-23T00:00:00,2017,November,Thursday,23,327,12,2017-11-23T00:00:00,2017,November,Thursday,23,327,18,D55,Toronto,70,South Riverdale (70),Schools During Supervised Activity,Educational,OT,FLUX 2.0,MT,27,WHI,1215.0,STOLEN,6540,"{'type': 'Point', 'coordinates': (-79.35047888, 43.66047387)}"
-6549,19137,GO-20189001201,THEFT UNDER - BICYCLE,2018-01-14T00:00:00,2018,January,Sunday,14,14,17,2018-01-14T00:00:00,2018,January,Sunday,14,14,17,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,OT,1,LBL,600.0,STOLEN,6541,"{'type': 'Point', 'coordinates': (-79.34030508, 43.66516613)}"
-6550,19144,GO-20189005242,THEFT UNDER,2018-02-15T00:00:00,2018,February,Thursday,15,46,6,2018-02-19T00:00:00,2018,February,Monday,19,50,12,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,DOUBLE-CROSS,TO,21,BLK,2000.0,STOLEN,6542,"{'type': 'Point', 'coordinates': (-79.34030508, 43.66516613)}"
-6551,19165,GO-20189018063,THEFT UNDER - BICYCLE,2018-06-09T00:00:00,2018,June,Saturday,9,160,13,2018-06-10T00:00:00,2018,June,Sunday,10,161,10,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,OT,DUTCHIE 8,TO,8,BLK,1200.0,STOLEN,6543,"{'type': 'Point', 'coordinates': (-79.34740718, 43.65941945)}"
-6552,19168,GO-20189018876,THEFT UNDER,2018-06-15T00:00:00,2018,June,Friday,15,166,14,2018-06-15T00:00:00,2018,June,Friday,15,166,20,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RA,2013 TALUS 3.0,MT,21,BLU,0.0,STOLEN,6544,"{'type': 'Point', 'coordinates': (-79.33754387, 43.6687961)}"
-6553,19170,GO-20189020580,THEFT UNDER - BICYCLE,2018-03-01T00:00:00,2018,March,Thursday,1,60,0,2018-06-28T00:00:00,2018,June,Thursday,28,179,12,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,ADVENTURE,OT,21,BLK,850.0,STOLEN,6545,"{'type': 'Point', 'coordinates': (-79.3533502, 43.66120299)}"
-6554,19188,GO-20181476945,THEFT UNDER - BICYCLE,2018-08-11T00:00:00,2018,August,Saturday,11,223,11,2018-08-11T00:00:00,2018,August,Saturday,11,223,11,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FUJI,SPORTIF,RC,21,BLKGRN,1500.0,STOLEN,6546,"{'type': 'Point', 'coordinates': (-79.34814889, 43.66552337)}"
-6555,19193,GO-20181517208,THEFT UNDER - BICYCLE,2018-08-16T00:00:00,2018,August,Thursday,16,228,12,2018-08-17T00:00:00,2018,August,Friday,17,229,10,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,PANAMAO,MT,18,WHI,600.0,STOLEN,6547,"{'type': 'Point', 'coordinates': (-79.34804819, 43.66027543)}"
-6556,19198,GO-20189030147,THEFT UNDER - BICYCLE,2018-09-12T00:00:00,2018,September,Wednesday,12,255,9,2018-09-12T00:00:00,2018,September,Wednesday,12,255,17,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,CONTEND SL 1,RC,20,BLK,1659.0,STOLEN,6548,"{'type': 'Point', 'coordinates': (-79.35132068, 43.66246707)}"
-6557,19206,GO-20189034117,THEFT UNDER - BICYCLE,2018-10-06T00:00:00,2018,October,Saturday,6,279,10,2018-10-15T00:00:00,2018,October,Monday,15,288,10,D55,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RG,7,,150.0,STOLEN,6549,"{'type': 'Point', 'coordinates': (-79.34030508, 43.66516613)}"
-6558,19211,GO-20189036812,THEFT UNDER - BICYCLE,2018-11-04T00:00:00,2018,November,Sunday,4,308,15,2018-11-04T00:00:00,2018,November,Sunday,4,308,16,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,TO,24,GRY,600.0,STOLEN,6550,"{'type': 'Point', 'coordinates': (-79.34907396, 43.66531756)}"
-6559,19212,GO-20189036812,THEFT UNDER - BICYCLE,2018-11-04T00:00:00,2018,November,Sunday,4,308,15,2018-11-04T00:00:00,2018,November,Sunday,4,308,16,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,TO,24,GRY,500.0,STOLEN,6551,"{'type': 'Point', 'coordinates': (-79.34907396, 43.66531756)}"
-6560,19213,GO-20182066225,THEFT UNDER - BICYCLE,2018-11-03T00:00:00,2018,November,Saturday,3,307,12,2018-11-09T00:00:00,2018,November,Friday,9,313,8,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,CCM,,OT,0,RED,500.0,STOLEN,6552,"{'type': 'Point', 'coordinates': (-79.35119162, 43.65934342)}"
-6561,19214,GO-20182066225,THEFT UNDER - BICYCLE,2018-11-03T00:00:00,2018,November,Saturday,3,307,12,2018-11-09T00:00:00,2018,November,Friday,9,313,8,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,OT,0,GRN,200.0,STOLEN,6553,"{'type': 'Point', 'coordinates': (-79.35119162, 43.65934342)}"
-6562,19230,GO-2019987769,THEFT UNDER - BICYCLE,2019-05-29T00:00:00,2019,May,Wednesday,29,149,16,2019-05-29T00:00:00,2019,May,Wednesday,29,149,23,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RM,ROCKHOPPER,MT,21,BLK,1500.0,STOLEN,6554,"{'type': 'Point', 'coordinates': (-79.34055684, 43.66228154)}"
-6563,19232,GO-20199017326,THEFT UNDER,2019-06-01T00:00:00,2019,June,Saturday,1,152,21,2019-06-03T00:00:00,2019,June,Monday,3,154,21,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,18,BLU,400.0,STOLEN,6555,"{'type': 'Point', 'coordinates': (-79.33272528, 43.66912039)}"
-6564,19237,GO-20199018086,THEFT UNDER,2019-06-08T00:00:00,2019,June,Saturday,8,159,10,2019-06-10T00:00:00,2019,June,Monday,10,161,17,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,RG,5,LBL,100.0,STOLEN,6556,"{'type': 'Point', 'coordinates': (-79.34941789, 43.66615064)}"
-6565,19240,GO-20199018244,THEFT UNDER,2019-06-11T00:00:00,2019,June,Tuesday,11,162,4,2019-06-11T00:00:00,2019,June,Tuesday,11,162,20,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,BOLT,RG,7,BLK,677.0,STOLEN,6557,"{'type': 'Point', 'coordinates': (-79.35353151, 43.66163711)}"
-6566,19247,GO-20199020861,THEFT UNDER,2019-07-03T00:00:00,2019,July,Wednesday,3,184,6,2019-07-03T00:00:00,2019,July,Wednesday,3,184,14,D55,Toronto,70,South Riverdale (70),Unknown,Other,GI,TCX,RC,22,SIL,800.0,STOLEN,6558,"{'type': 'Point', 'coordinates': (-79.33877517, 43.64023603)}"
-6567,19259,GO-20199024818,THEFT UNDER,2019-08-02T00:00:00,2019,August,Friday,2,214,0,2019-08-03T00:00:00,2019,August,Saturday,3,215,10,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,RG,24,GRY,0.0,STOLEN,6559,"{'type': 'Point', 'coordinates': (-79.33244189, 43.66846738)}"
-6568,19260,GO-20199024893,THEFT UNDER,2019-07-01T00:00:00,2019,July,Monday,1,182,9,2019-08-04T00:00:00,2019,August,Sunday,4,216,9,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,CANNONDALE,QUICK 8 BBQ -XL,OT,21,BLK,600.0,STOLEN,6560,"{'type': 'Point', 'coordinates': (-79.35219877, 43.65833207)}"
-6569,19261,GO-20191475414,THEFT UNDER,2019-08-02T00:00:00,2019,August,Friday,2,214,22,2019-08-05T00:00:00,2019,August,Monday,5,217,9,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,SIRRUS EXPERT,RC,1,BLKGRN,,STOLEN,6561,"{'type': 'Point', 'coordinates': (-79.32895785, 43.66352946)}"
-6570,19270,GO-20191624388,THEFT UNDER - BICYCLE,2019-08-25T00:00:00,2019,August,Sunday,25,237,19,2019-08-25T00:00:00,2019,August,Sunday,25,237,22,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,LAKE SHORE,RG,1,RED,800.0,STOLEN,6562,"{'type': 'Point', 'coordinates': (-79.33510487000001, 43.65924955)}"
-6571,19275,GO-20191683751,THEFT UNDER,2019-08-28T00:00:00,2019,August,Wednesday,28,240,10,2019-09-03T00:00:00,2019,September,Tuesday,3,246,11,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,LEFTY,MT,21,BLK,2000.0,STOLEN,6563,"{'type': 'Point', 'coordinates': (-79.3386054, 43.66392155)}"
-6572,19276,GO-20191683751,THEFT UNDER,2019-08-28T00:00:00,2019,August,Wednesday,28,240,10,2019-09-03T00:00:00,2019,September,Tuesday,3,246,11,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KONA,KULA,MT,21,BLUWHI,1500.0,STOLEN,6564,"{'type': 'Point', 'coordinates': (-79.3386054, 43.66392155)}"
-6573,19282,GO-20199029189,THEFT UNDER,2019-09-07T00:00:00,2019,September,Saturday,7,250,17,2019-09-08T00:00:00,2019,September,Sunday,8,251,16,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SURRIUS 2019,RG,10,RED,850.0,STOLEN,6565,"{'type': 'Point', 'coordinates': (-79.33093697, 43.67130509)}"
-6574,19286,GO-20199029611,THEFT UNDER,2019-08-18T00:00:00,2019,August,Sunday,18,230,22,2019-09-11T00:00:00,2019,September,Wednesday,11,254,14,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,NO,,RG,21,GRY,100.0,STOLEN,6566,"{'type': 'Point', 'coordinates': (-79.35219877, 43.65833207)}"
-6575,19309,GO-20199033247,THEFT UNDER,2019-10-09T00:00:00,2019,October,Wednesday,9,282,15,2019-10-09T00:00:00,2019,October,Wednesday,9,282,16,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,MICRO MAXI,SC,1,PNK,200.0,STOLEN,6567,"{'type': 'Point', 'coordinates': (-79.33106729, 43.66794778)}"
-6576,19316,GO-20199034155,THEFT UNDER,2019-10-16T00:00:00,2019,October,Wednesday,16,289,13,2019-10-16T00:00:00,2019,October,Wednesday,16,289,21,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CYCLEMANIA,MT,10,SIL,400.0,STOLEN,6568,"{'type': 'Point', 'coordinates': (-79.35219877, 43.65833207)}"
-6577,19317,GO-20199034412,THEFT UNDER,2019-10-18T00:00:00,2019,October,Friday,18,291,9,2019-10-18T00:00:00,2019,October,Friday,18,291,22,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,1,BLK,1500.0,STOLEN,6569,"{'type': 'Point', 'coordinates': (-79.35290454, 43.66176998)}"
-6578,19349,GO-2020658934,B&E,2020-04-03T00:00:00,2020,April,Friday,3,94,15,2020-04-04T00:00:00,2020,April,Saturday,4,95,13,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BRODIE,,OT,6,GRY,800.0,STOLEN,6570,"{'type': 'Point', 'coordinates': (-79.34817882, 43.66318305)}"
-6579,19350,GO-2020658934,B&E,2020-04-03T00:00:00,2020,April,Friday,3,94,15,2020-04-04T00:00:00,2020,April,Saturday,4,95,13,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BRODIE,BOLT,OT,6,BLK,800.0,STOLEN,6571,"{'type': 'Point', 'coordinates': (-79.34817882, 43.66318305)}"
-6580,19351,GO-2020658934,B&E,2020-04-03T00:00:00,2020,April,Friday,3,94,15,2020-04-04T00:00:00,2020,April,Saturday,4,95,13,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BRODIE,TESLA,OT,6,ONG,800.0,STOLEN,6572,"{'type': 'Point', 'coordinates': (-79.34817882, 43.66318305)}"
-6581,19361,GO-20209013342,THEFT UNDER,2020-05-17T00:00:00,2020,May,Sunday,17,138,14,2020-05-18T00:00:00,2020,May,Monday,18,139,9,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,2.3 BONTRAGER,RC,10,WHI,1700.0,STOLEN,6573,"{'type': 'Point', 'coordinates': (-79.32826088, 43.65898454)}"
-6582,19362,GO-20209013342,THEFT UNDER,2020-05-17T00:00:00,2020,May,Sunday,17,138,14,2020-05-18T00:00:00,2020,May,Monday,18,139,9,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,,OT,1,GRY,140.0,STOLEN,6574,"{'type': 'Point', 'coordinates': (-79.32826088, 43.65898454)}"
-6583,19363,GO-20209013342,THEFT UNDER,2020-05-17T00:00:00,2020,May,Sunday,17,138,14,2020-05-18T00:00:00,2020,May,Monday,18,139,9,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,OT,1,SIL,130.0,STOLEN,6575,"{'type': 'Point', 'coordinates': (-79.32826088, 43.65898454)}"
-6584,19364,GO-20209013342,THEFT UNDER,2020-05-17T00:00:00,2020,May,Sunday,17,138,14,2020-05-18T00:00:00,2020,May,Monday,18,139,9,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,OT,1,BLK,150.0,STOLEN,6576,"{'type': 'Point', 'coordinates': (-79.32826088, 43.65898454)}"
-6585,19365,GO-20209013342,THEFT UNDER,2020-05-17T00:00:00,2020,May,Sunday,17,138,14,2020-05-18T00:00:00,2020,May,Monday,18,139,9,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,OT,1,,42.0,STOLEN,6577,"{'type': 'Point', 'coordinates': (-79.32826088, 43.65898454)}"
-6586,19366,GO-20209013342,THEFT UNDER,2020-05-17T00:00:00,2020,May,Sunday,17,138,14,2020-05-18T00:00:00,2020,May,Monday,18,139,9,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,OT,1,BLK,10.0,STOLEN,6578,"{'type': 'Point', 'coordinates': (-79.32826088, 43.65898454)}"
-6587,19367,GO-20209013342,THEFT UNDER,2020-05-17T00:00:00,2020,May,Sunday,17,138,14,2020-05-18T00:00:00,2020,May,Monday,18,139,9,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,EX-1,OT,1,BLK,45.0,STOLEN,6579,"{'type': 'Point', 'coordinates': (-79.32826088, 43.65898454)}"
-6588,19368,GO-20209013342,THEFT UNDER,2020-05-17T00:00:00,2020,May,Sunday,17,138,14,2020-05-18T00:00:00,2020,May,Monday,18,139,9,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,OT,1,WHI,36.0,STOLEN,6580,"{'type': 'Point', 'coordinates': (-79.32826088, 43.65898454)}"
-6589,19369,GO-20209013342,THEFT UNDER,2020-05-17T00:00:00,2020,May,Sunday,17,138,14,2020-05-18T00:00:00,2020,May,Monday,18,139,9,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,BLUE SC,OT,1,BLK,83.0,STOLEN,6581,"{'type': 'Point', 'coordinates': (-79.32826088, 43.65898454)}"
-6590,19370,GO-20209013342,THEFT UNDER,2020-05-17T00:00:00,2020,May,Sunday,17,138,14,2020-05-18T00:00:00,2020,May,Monday,18,139,9,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,SPEED AND CADEN,OT,1,GRY,80.0,STOLEN,6582,"{'type': 'Point', 'coordinates': (-79.32826088, 43.65898454)}"
-6591,19373,GO-20209014296,THEFT UNDER,2020-05-29T00:00:00,2020,May,Friday,29,150,20,2020-05-31T00:00:00,2020,May,Sunday,31,152,15,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,27,BLK,600.0,STOLEN,6583,"{'type': 'Point', 'coordinates': (-79.34030508, 43.66516613)}"
-6592,19374,GO-20209014310,THEFT UNDER,2020-05-29T00:00:00,2020,May,Friday,29,150,20,2020-05-31T00:00:00,2020,May,Sunday,31,152,19,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,OT,PERFORMANCE,MT,27,BLK,2000.0,STOLEN,6584,"{'type': 'Point', 'coordinates': (-79.34030508, 43.66516613)}"
-6593,19383,GO-20201171094,B&E,2020-06-24T00:00:00,2020,June,Wednesday,24,176,18,2020-06-25T00:00:00,2020,June,Thursday,25,177,20,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,NORCO,,MT,21,GRY,1000.0,STOLEN,6585,"{'type': 'Point', 'coordinates': (-79.35290454, 43.66176998)}"
-6594,19623,GO-20149004025,THEFT UNDER,2014-06-11T00:00:00,2014,June,Wednesday,11,162,9,2014-06-12T00:00:00,2014,June,Thursday,12,163,21,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GT,OUTBACK,MT,15,BLK,0.0,STOLEN,6586,"{'type': 'Point', 'coordinates': (-79.33485068, 43.66223293)}"
-6595,19641,GO-20149005196,THEFT UNDER,2014-07-17T00:00:00,2014,July,Thursday,17,198,23,2014-07-21T00:00:00,2014,July,Monday,21,202,8,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DB,GRIND,BM,1,RED,600.0,STOLEN,6587,"{'type': 'Point', 'coordinates': (-79.33125518, 43.67211569)}"
-6596,19642,GO-20149005196,THEFT UNDER,2014-07-17T00:00:00,2014,July,Thursday,17,198,23,2014-07-21T00:00:00,2014,July,Monday,21,202,8,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DB,GRIND,BM,1,RED,200.0,STOLEN,6588,"{'type': 'Point', 'coordinates': (-79.33125518, 43.67211569)}"
-6597,19643,GO-20149005196,THEFT UNDER,2014-07-17T00:00:00,2014,July,Thursday,17,198,23,2014-07-21T00:00:00,2014,July,Monday,21,202,8,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DB,BMX,BM,1,BLU,200.0,STOLEN,6589,"{'type': 'Point', 'coordinates': (-79.33125518, 43.67211569)}"
-6598,19644,GO-20149005196,THEFT UNDER,2014-07-17T00:00:00,2014,July,Thursday,17,198,23,2014-07-21T00:00:00,2014,July,Monday,21,202,8,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,IN,INFINITY,OT,1,BLU,200.0,STOLEN,6590,"{'type': 'Point', 'coordinates': (-79.33125518, 43.67211569)}"
-6599,19650,GO-20149006390,THEFT UNDER,2014-08-29T00:00:00,2014,August,Friday,29,241,11,2014-08-29T00:00:00,2014,August,Friday,29,241,17,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,800 W,EL,40,BLK,800.0,STOLEN,6591,"{'type': 'Point', 'coordinates': (-79.3457491, 43.66297277)}"
-6600,19656,GO-20142994929,THEFT UNDER,2014-09-24T00:00:00,2014,September,Wednesday,24,267,22,2014-09-27T00:00:00,2014,September,Saturday,27,270,13,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,RC,1,RED,600.0,STOLEN,6592,"{'type': 'Point', 'coordinates': (-79.35219877, 43.65833207)}"
-6601,19661,GO-20143064729,THEFT UNDER,2014-10-06T00:00:00,2014,October,Monday,6,279,18,2014-10-08T00:00:00,2014,October,Wednesday,8,281,8,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,DEVINCI,ST. TROPEZ,RG,24,SIL,600.0,STOLEN,6593,"{'type': 'Point', 'coordinates': (-79.33878004, 43.6613564)}"
-6602,19664,GO-20149007826,THEFT UNDER,2014-10-25T00:00:00,2014,October,Saturday,25,298,11,2014-10-25T00:00:00,2014,October,Saturday,25,298,21,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EM,ALIEN,EL,32,RED,956.0,STOLEN,6594,"{'type': 'Point', 'coordinates': (-79.33754387, 43.6687961)}"
-6603,19672,GO-20159001046,THEFT UNDER,2015-02-28T00:00:00,2015,February,Saturday,28,59,11,2015-03-02T00:00:00,2015,March,Monday,2,61,17,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,OT,SUB 10,RG,8,WHI,1600.0,STOLEN,6595,"{'type': 'Point', 'coordinates': (-79.34885459, 43.656657970000005)}"
-6604,19673,GO-20159001046,THEFT UNDER,2015-02-28T00:00:00,2015,February,Saturday,28,59,11,2015-03-02T00:00:00,2015,March,Monday,2,61,17,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,OT,SUB 10,RG,8,WHI,1600.0,STOLEN,6596,"{'type': 'Point', 'coordinates': (-79.34885459, 43.656657970000005)}"
-6605,19683,GO-2015760310,THEFT UNDER,2015-04-25T00:00:00,2015,April,Saturday,25,115,12,2015-05-07T00:00:00,2015,May,Thursday,7,127,15,D55,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KONA,10DEWPLUS GRY,OT,10,,,STOLEN,6597,"{'type': 'Point', 'coordinates': (-79.34055684, 43.66228154)}"
-6606,19694,GO-20159004047,THEFT UNDER,2015-06-29T00:00:00,2015,June,Monday,29,180,9,2015-06-30T00:00:00,2015,June,Tuesday,30,181,10,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,WAHOO - GARY FI,MT,21,BLU,800.0,STOLEN,6598,"{'type': 'Point', 'coordinates': (-79.32934411, 43.66728877)}"
-6607,19699,GO-20151255901,THEFT UNDER,2015-07-03T00:00:00,2015,July,Friday,3,184,10,2015-07-23T00:00:00,2015,July,Thursday,23,204,13,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,,OT,0,,100.0,STOLEN,6599,"{'type': 'Point', 'coordinates': (-79.32901937, 43.66055266)}"
-6608,19710,GO-20151414532,THEFT UNDER,2015-08-16T00:00:00,2015,August,Sunday,16,228,23,2015-08-17T00:00:00,2015,August,Monday,17,229,14,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,EXCELSIOR,MT,21,RED,380.0,STOLEN,6600,"{'type': 'Point', 'coordinates': (-79.32977663, 43.66821521)}"
-6609,19722,GO-20151523112,THEFT UNDER,2015-09-03T00:00:00,2015,September,Thursday,3,246,20,2015-09-04T00:00:00,2015,September,Friday,4,247,0,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MARIN OR MARINO,,MT,21,SIL,160.0,STOLEN,6601,"{'type': 'Point', 'coordinates': (-79.33723663, 43.66056273)}"
-6610,19730,GO-20159007350,THEFT UNDER,2015-09-15T00:00:00,2015,September,Tuesday,15,258,19,2015-09-18T00:00:00,2015,September,Friday,18,261,1,D55,Toronto,70,South Riverdale (70),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,,RC,10,GRY,200.0,STOLEN,6602,"{'type': 'Point', 'coordinates': (-79.34740718, 43.65941945)}"
-6611,19739,GO-20159008535,THEFT UNDER,2015-10-08T00:00:00,2015,October,Thursday,8,281,20,2015-10-14T00:00:00,2015,October,Wednesday,14,287,21,D55,Toronto,70,South Riverdale (70),Schools During Un-Supervised Activity,Educational,OT,MIDTOWN,RG,9,BLU,675.0,STOLEN,6603,"{'type': 'Point', 'coordinates': (-79.35132068, 43.66246707)}"
-6612,19743,GO-20159009606,THEFT UNDER,2015-11-10T00:00:00,2015,November,Tuesday,10,314,16,2015-11-10T00:00:00,2015,November,Tuesday,10,314,21,D55,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CC,,MT,7,YEL,300.0,STOLEN,6604,"{'type': 'Point', 'coordinates': (-79.32826088, 43.65898454)}"
-6613,19744,GO-20151963307,THEFT UNDER,2015-11-15T00:00:00,2015,November,Sunday,15,319,19,2015-11-15T00:00:00,2015,November,Sunday,15,319,19,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,DIADORA,,MT,10,SIL,300.0,STOLEN,6605,"{'type': 'Point', 'coordinates': (-79.34678883, 43.6658141)}"
-6614,19755,GO-2016648811,THEFT UNDER - BICYCLE,2016-04-16T00:00:00,2016,April,Saturday,16,107,14,2016-04-16T00:00:00,2016,April,Saturday,16,107,14,D55,Toronto,70,South Riverdale (70),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,SHIMANO,,RG,10,,,STOLEN,6606,"{'type': 'Point', 'coordinates': (-79.33754387, 43.6687961)}"
-6615,19763,GO-20169004520,THEFT UNDER,2016-05-14T00:00:00,2016,May,Saturday,14,135,16,2016-05-14T00:00:00,2016,May,Saturday,14,135,16,D55,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KO,,RG,8,WHI,600.0,STOLEN,6607,"{'type': 'Point', 'coordinates': (-79.34036066, 43.66817266)}"
-6616,19776,GO-20169006268,THEFT UNDER,2016-06-14T00:00:00,2016,June,Tuesday,14,166,2,2016-06-24T00:00:00,2016,June,Friday,24,176,3,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,CCM 700C ORION,RG,21,GRY,300.0,STOLEN,6608,"{'type': 'Point', 'coordinates': (-79.33138495, 43.66299749)}"
-6617,20412,GO-20151224130,THEFT UNDER,2015-07-18T00:00:00,2015,July,Saturday,18,199,19,2015-07-21T00:00:00,2015,July,Tuesday,21,202,9,D51,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,FECTEUR,BM,27,BLKGRY,1000.0,STOLEN,6609,"{'type': 'Point', 'coordinates': (-79.35058013, 43.64309128)}"
-6618,22167,GO-20169006983,THEFT UNDER,2016-07-10T00:00:00,2016,July,Sunday,10,192,8,2016-07-10T00:00:00,2016,July,Sunday,10,192,19,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,LIV TEMPT 3,MT,28,BLK,750.0,STOLEN,6610,"{'type': 'Point', 'coordinates': (-79.33066238, 43.66696603)}"
-6619,22168,GO-20169006983,THEFT UNDER,2016-07-10T00:00:00,2016,July,Sunday,10,192,8,2016-07-10T00:00:00,2016,July,Sunday,10,192,19,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,SONIX,MT,28,ONG,1500.0,STOLEN,6611,"{'type': 'Point', 'coordinates': (-79.33066238, 43.66696603)}"
-6620,22172,GO-20161319317,THEFT UNDER - BICYCLE,2016-07-27T00:00:00,2016,July,Wednesday,27,209,2,2016-07-27T00:00:00,2016,July,Wednesday,27,209,13,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,1,PNKPLE,100.0,STOLEN,6612,"{'type': 'Point', 'coordinates': (-79.33776437, 43.65866695)}"
-6621,22193,GO-20169010027,B&E,2016-09-01T00:00:00,2016,September,Thursday,1,245,9,2016-09-06T00:00:00,2016,September,Tuesday,6,250,9,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,GI,REVOLT 1,OT,10,BLK,1400.0,STOLEN,6614,"{'type': 'Point', 'coordinates': (-79.34156719, 43.66484383)}"
-6622,22202,GO-20169011025,THEFT UNDER - BICYCLE,2016-09-24T00:00:00,2016,September,Saturday,24,268,8,2016-09-24T00:00:00,2016,September,Saturday,24,268,14,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,OT,SILHOUETTE 700C,RG,21,BLK,350.0,STOLEN,6615,"{'type': 'Point', 'coordinates': (-79.34751991, 43.656494820000006)}"
-6623,22203,GO-20169011018,THEFT UNDER - BICYCLE,2016-09-24T00:00:00,2016,September,Saturday,24,268,12,2016-09-24T00:00:00,2016,September,Saturday,24,268,12,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,DIABLO,RC,20,BLK,1500.0,STOLEN,6616,"{'type': 'Point', 'coordinates': (-79.33326421, 43.66257268)}"
-6624,22209,GO-20169012059,THEFT UNDER - BICYCLE,2016-10-13T00:00:00,2016,October,Thursday,13,287,19,2016-10-14T00:00:00,2016,October,Friday,14,288,15,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,ZW100,RC,16,BLK,1500.0,STOLEN,6617,"{'type': 'Point', 'coordinates': (-79.35010849, 43.65958403)}"
-6625,22210,GO-20169012059,THEFT UNDER - BICYCLE,2016-10-13T00:00:00,2016,October,Thursday,13,287,19,2016-10-14T00:00:00,2016,October,Friday,14,288,15,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,Z95,TO,18,WHI,1500.0,STOLEN,6618,"{'type': 'Point', 'coordinates': (-79.35010849, 43.65958403)}"
-6626,22225,GO-2017927961,PROPERTY - FOUND,2017-05-24T00:00:00,2017,May,Wednesday,24,144,19,2017-05-26T00:00:00,2017,May,Friday,26,146,10,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,KICKER PRO,MT,21,SIL,,UNKNOWN,6619,"{'type': 'Point', 'coordinates': (-79.33799991, 43.66242646)}"
-6627,14206,GO-20179016977,THEFT UNDER,2017-10-11T00:00:00,2017,October,Wednesday,11,284,8,2017-10-11T00:00:00,2017,October,Wednesday,11,284,21,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,MT,7,,100.0,STOLEN,6620,"{'type': 'Point', 'coordinates': (-79.34907396, 43.66531756)}"
-6628,22271,GO-20172052167,B&E W'INTENT,2017-11-10T00:00:00,2017,November,Friday,10,314,14,2017-11-13T00:00:00,2017,November,Monday,13,317,9,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,SUNRA,EM70,EL,0,YEL,8000.0,STOLEN,6621,"{'type': 'Point', 'coordinates': (-79.34055684, 43.66228154)}"
-6629,22272,GO-20179020040,THEFT UNDER - BICYCLE,2017-11-19T00:00:00,2017,November,Sunday,19,323,23,2017-11-20T00:00:00,2017,November,Monday,20,324,9,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FJ,TRACK,OT,1,BLK,745.0,STOLEN,6622,"{'type': 'Point', 'coordinates': (-79.33539172, 43.66559122)}"
-6630,22273,GO-20179020043,THEFT UNDER,2017-11-19T00:00:00,2017,November,Sunday,19,323,14,2017-11-20T00:00:00,2017,November,Monday,20,324,9,D55,Toronto,70,South Riverdale (70),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,DB,,OT,28,BLK,450.0,STOLEN,6623,"{'type': 'Point', 'coordinates': (-79.34543043, 43.659862360000005)}"
-6631,22274,GO-20179020734,THEFT UNDER - BICYCLE,2017-11-05T00:00:00,2017,November,Sunday,5,309,6,2017-11-28T00:00:00,2017,November,Tuesday,28,332,7,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,CYPRES,TO,21,BLK,2500.0,STOLEN,6624,"{'type': 'Point', 'coordinates': (-79.32688386, 43.6658937)}"
-6632,22286,GO-20189014071,THEFT UNDER - BICYCLE,2018-05-04T00:00:00,2018,May,Friday,4,124,1,2018-05-07T00:00:00,2018,May,Monday,7,127,13,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,DB,,RG,10,BRZ,300.0,STOLEN,6625,"{'type': 'Point', 'coordinates': (-79.35513876, 43.66481389)}"
-6633,22287,GO-20189014071,THEFT UNDER - BICYCLE,2018-05-04T00:00:00,2018,May,Friday,4,124,1,2018-05-07T00:00:00,2018,May,Monday,7,127,13,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RA,,RG,3,RED,200.0,STOLEN,6626,"{'type': 'Point', 'coordinates': (-79.35513876, 43.66481389)}"
-6634,22298,GO-20189020082,THEFT UNDER - BICYCLE,2018-06-24T00:00:00,2018,June,Sunday,24,175,10,2018-06-24T00:00:00,2018,June,Sunday,24,175,22,D55,Toronto,70,South Riverdale (70),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,CC,DUAL SUSPENSION,MT,21,WHI,299.0,STOLEN,6627,"{'type': 'Point', 'coordinates': (-79.34543043, 43.659862360000005)}"
-6635,22299,GO-20189020468,THEFT UNDER - BICYCLE,2018-06-27T00:00:00,2018,June,Wednesday,27,178,11,2018-06-27T00:00:00,2018,June,Wednesday,27,178,20,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,STOCKHOLM,RG,24,BLK,1062.0,STOLEN,6628,"{'type': 'Point', 'coordinates': (-79.33277457, 43.66267098)}"
-6636,22300,GO-20189020940,THEFT UNDER - BICYCLE,2018-07-02T00:00:00,2018,July,Monday,2,183,16,2018-07-02T00:00:00,2018,July,Monday,2,183,16,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,KH,XC,MT,24,GRY,0.0,STOLEN,6629,"{'type': 'Point', 'coordinates': (-79.34055684, 43.66228154)}"
-6637,22302,GO-20189021337,THEFT UNDER - BICYCLE,2018-07-05T00:00:00,2018,July,Thursday,5,186,7,2018-07-05T00:00:00,2018,July,Thursday,5,186,23,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,FJ,FEATHER,RG,1,BLK,508.0,STOLEN,6630,"{'type': 'Point', 'coordinates': (-79.34030508, 43.66516613)}"
-6638,22310,GO-20189022396,THEFT UNDER - BICYCLE,2018-07-13T00:00:00,2018,July,Friday,13,194,13,2018-07-14T00:00:00,2018,July,Saturday,14,195,12,D55,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,SUEDE,OT,7,BLK,1000.0,STOLEN,6631,"{'type': 'Point', 'coordinates': (-79.33754387, 43.6687961)}"
-6639,22330,GO-20189029537,THEFT UNDER,2018-09-07T00:00:00,2018,September,Friday,7,250,18,2018-09-07T00:00:00,2018,September,Friday,7,250,23,D55,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,EXPLORER 3 E,EL,9,GRN,3300.0,STOLEN,6632,"{'type': 'Point', 'coordinates': (-79.34699433, 43.66667851)}"
-6640,22331,GO-20181689431,THEFT UNDER - BICYCLE,2018-09-12T00:00:00,2018,September,Wednesday,12,255,7,2018-09-12T00:00:00,2018,September,Wednesday,12,255,10,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,NORCO,RIDEAU,MT,21,GRY,,STOLEN,6633,"{'type': 'Point', 'coordinates': (-79.33284988, 43.66647178)}"
-6641,22336,GO-20189030791,THEFT UNDER - BICYCLE,2018-09-15T00:00:00,2018,September,Saturday,15,258,14,2018-09-17T00:00:00,2018,September,Monday,17,260,13,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,SOUVILLE E-3,RG,3,WHI,500.0,STOLEN,6634,"{'type': 'Point', 'coordinates': (-79.3400521, 43.66106114)}"
-6642,22352,GO-20189035501,THEFT UNDER - BICYCLE,2018-10-24T00:00:00,2018,October,Wednesday,24,297,23,2018-10-25T00:00:00,2018,October,Thursday,25,298,12,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,CROSS CHECK,RG,1,ONG,1000.0,STOLEN,6635,"{'type': 'Point', 'coordinates': (-79.34884568, 43.66008746)}"
-6643,22355,GO-20189035862,THEFT UNDER - BICYCLE,2018-10-26T00:00:00,2018,October,Friday,26,299,19,2018-10-27T00:00:00,2018,October,Saturday,27,300,19,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,GRAND SPORT 56C,TO,16,ONG,1074.0,STOLEN,6636,"{'type': 'Point', 'coordinates': (-79.34845931, 43.65919131)}"
-6644,16734,GO-20199003720,THEFT UNDER - BICYCLE,2019-01-27T00:00:00,2019,January,Sunday,27,27,16,2019-01-27T00:00:00,2019,January,Sunday,27,27,21,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,RA,20 YEARS OLD,RG,18,SIL,600.0,STOLEN,6637,"{'type': 'Point', 'coordinates': (-79.37717453, 43.66359899)}"
-6645,11228,GO-20169003957,THEFT UNDER - BICYCLE,2016-04-28T00:00:00,2016,April,Thursday,28,119,1,2016-04-29T00:00:00,2016,April,Friday,29,120,18,D55,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,DEVINCI,SILVERSTONE,MT,0,WHI,,STOLEN,6638,"{'type': 'Point', 'coordinates': (-79.34156719, 43.66484383)}"
-6646,22356,GO-20189036005,THEFT UNDER - BICYCLE,2018-10-28T00:00:00,2018,October,Sunday,28,301,17,2018-10-29T00:00:00,2018,October,Monday,29,302,7,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,CA,,MT,24,,800.0,STOLEN,6639,"{'type': 'Point', 'coordinates': (-79.35371098, 43.66367583)}"
-6647,22359,GO-20189037627,THEFT UNDER - BICYCLE,2018-11-09T00:00:00,2018,November,Friday,9,313,13,2018-11-09T00:00:00,2018,November,Friday,9,313,22,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,BOULDER SE,MT,21,LBL,450.0,STOLEN,6640,"{'type': 'Point', 'coordinates': (-79.34055684, 43.66228154)}"
-6648,22361,GO-20189039144,THEFT UNDER - BICYCLE,2018-11-20T00:00:00,2018,November,Tuesday,20,324,18,2018-11-21T00:00:00,2018,November,Wednesday,21,325,13,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,UK,ROAD BIKE,RC,3,ONG,400.0,STOLEN,6641,"{'type': 'Point', 'coordinates': (-79.3412907, 43.66212954)}"
-6649,22362,GO-20189042435,THEFT UNDER - BICYCLE,2018-12-05T00:00:00,2018,December,Wednesday,5,339,9,2018-12-17T00:00:00,2018,December,Monday,17,351,15,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,LAKESHORE,RG,1,BLU,600.0,STOLEN,6642,"{'type': 'Point', 'coordinates': (-79.33986979, 43.66696579)}"
-6650,22366,GO-2019311238,THEFT UNDER,2019-02-12T00:00:00,2019,February,Tuesday,12,43,22,2019-02-18T00:00:00,2019,February,Monday,18,49,18,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FUJI,,RG,1,YEL,400.0,STOLEN,6643,"{'type': 'Point', 'coordinates': (-79.33381854000001, 43.67165898)}"
-6651,22371,GO-20199013955,THEFT UNDER,2019-04-04T00:00:00,2019,April,Thursday,4,94,20,2019-05-05T00:00:00,2019,May,Sunday,5,125,9,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,6,BLU,500.0,STOLEN,6644,"{'type': 'Point', 'coordinates': (-79.34030508, 43.66516613)}"
-6652,22372,GO-20199013955,THEFT UNDER,2019-04-04T00:00:00,2019,April,Thursday,4,94,20,2019-05-05T00:00:00,2019,May,Sunday,5,125,9,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,BLK,800.0,STOLEN,6645,"{'type': 'Point', 'coordinates': (-79.34030508, 43.66516613)}"
-6653,22392,GO-20191272783,B&E,2019-07-08T00:00:00,2019,July,Monday,8,189,0,2019-07-08T00:00:00,2019,July,Monday,8,189,14,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,UNKNOWN,MT,10,SIL,,STOLEN,6646,"{'type': 'Point', 'coordinates': (-79.34751991, 43.656494820000006)}"
-6654,22403,GO-20199025703,THEFT UNDER,2019-08-10T00:00:00,2019,August,Saturday,10,222,14,2019-08-10T00:00:00,2019,August,Saturday,10,222,19,D55,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RC,30,OTH,150.0,STOLEN,6647,"{'type': 'Point', 'coordinates': (-79.33754387, 43.6687961)}"
-6655,22425,GO-20199032566,THEFT UNDER,2019-10-03T00:00:00,2019,October,Thursday,3,276,18,2019-10-04T00:00:00,2019,October,Friday,4,277,10,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,OT,STRAGGLER,RG,11,BLK,2299.0,STOLEN,6648,"{'type': 'Point', 'coordinates': (-79.34055684, 43.66228154)}"
-6656,22436,GO-2020214234,THEFT UNDER,2020-01-30T00:00:00,2020,January,Thursday,30,30,4,2020-01-31T00:00:00,2020,January,Friday,31,31,10,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,DEVINCI,,OT,7,BLK,,STOLEN,6649,"{'type': 'Point', 'coordinates': (-79.34246583, 43.66052892)}"
-6657,22437,GO-20209004433,THEFT UNDER,2020-02-04T00:00:00,2020,February,Tuesday,4,35,17,2020-02-06T00:00:00,2020,February,Thursday,6,37,10,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,ADVENTURE BIKE,MT,30,WHI,0.0,STOLEN,6650,"{'type': 'Point', 'coordinates': (-79.35270855, 43.66134085)}"
-6658,22464,GO-20209013347,THEFT UNDER,2020-05-12T00:00:00,2020,May,Tuesday,12,133,2,2020-05-18T00:00:00,2020,May,Monday,18,139,9,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,5,TRQ,700.0,STOLEN,6651,"{'type': 'Point', 'coordinates': (-79.33654683, 43.6690179)}"
-6659,22489,GO-20201189656,B&E,2020-06-27T00:00:00,2020,June,Saturday,27,179,21,2020-06-28T00:00:00,2020,June,Sunday,28,180,13,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FELT,55X,RC,1,GRY,2000.0,STOLEN,6652,"{'type': 'Point', 'coordinates': (-79.33830359, 43.66318301)}"
-6660,22490,GO-20201189656,B&E,2020-06-27T00:00:00,2020,June,Saturday,27,179,21,2020-06-28T00:00:00,2020,June,Sunday,28,180,13,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,PITCH,MT,1,ONG,700.0,STOLEN,6653,"{'type': 'Point', 'coordinates': (-79.33830359, 43.66318301)}"
-6661,22492,GO-20209016750,THEFT UNDER,2020-06-29T00:00:00,2020,June,Monday,29,181,13,2020-07-03T00:00:00,2020,July,Friday,3,185,13,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GF,,MT,18,BLK,0.0,STOLEN,6654,"{'type': 'Point', 'coordinates': (-79.3532346, 43.6616993)}"
-6662,22511,GO-20209018381,THEFT UNDER,2020-07-23T00:00:00,2020,July,Thursday,23,205,9,2020-07-23T00:00:00,2020,July,Thursday,23,205,21,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,12,BLK,200.0,STOLEN,6655,"{'type': 'Point', 'coordinates': (-79.33674126, 43.66591271000001)}"
-6663,22512,GO-20209018381,THEFT UNDER,2020-07-23T00:00:00,2020,July,Thursday,23,205,9,2020-07-23T00:00:00,2020,July,Thursday,23,205,21,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,OT,3,BLK,200.0,STOLEN,6656,"{'type': 'Point', 'coordinates': (-79.33674126, 43.66591271000001)}"
-6664,22549,GO-20209022429,THEFT UNDER,2020-09-03T00:00:00,2020,September,Thursday,3,247,17,2020-09-05T00:00:00,2020,September,Saturday,5,249,17,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,UK,SIRRUS 2.0,RG,16,BLK,900.0,STOLEN,6657,"{'type': 'Point', 'coordinates': (-79.33585561, 43.66200934)}"
-6665,22550,GO-20209022429,THEFT UNDER,2020-09-03T00:00:00,2020,September,Thursday,3,247,17,2020-09-05T00:00:00,2020,September,Saturday,5,249,17,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,UK,SIRRUS 2.0,RG,16,BLK,900.0,STOLEN,6658,"{'type': 'Point', 'coordinates': (-79.33585561, 43.66200934)}"
-6666,22554,GO-20201704223,B&E,2020-09-08T00:00:00,2020,September,Tuesday,8,252,23,2020-09-09T00:00:00,2020,September,Wednesday,9,253,7,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,RC,21,WHIBLU,1300.0,STOLEN,6659,"{'type': 'Point', 'coordinates': (-79.34751991, 43.656494820000006)}"
-6667,22556,GO-20209022901,THEFT UNDER,2020-09-10T00:00:00,2020,September,Thursday,10,254,18,2020-09-10T00:00:00,2020,September,Thursday,10,254,18,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,ALPHA,MT,21,BLK,1500.0,STOLEN,6660,"{'type': 'Point', 'coordinates': (-79.34082559, 43.66644055)}"
-6668,22566,GO-20209023822,THEFT UNDER,2020-09-19T00:00:00,2020,September,Saturday,19,263,3,2020-09-19T00:00:00,2020,September,Saturday,19,263,11,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,FJ,FEATHER,RG,1,BLK,900.0,STOLEN,6661,"{'type': 'Point', 'coordinates': (-79.34430354, 43.65722444)}"
-6669,22571,GO-20201856627,B&E,2020-09-29T00:00:00,2020,September,Tuesday,29,273,20,2020-09-30T00:00:00,2020,September,Wednesday,30,274,10,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,JAMIS,4.40E+11,MT,10,,600.0,STOLEN,6662,"{'type': 'Point', 'coordinates': (-79.33302872, 43.66981394)}"
-6670,22575,GO-20201866335,THEFT UNDER - BICYCLE,2020-09-28T00:00:00,2020,September,Monday,28,272,22,2020-10-01T00:00:00,2020,October,Thursday,1,275,16,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MARIN OR MARINO,,MT,7,RED,1500.0,STOLEN,6663,"{'type': 'Point', 'coordinates': (-79.34156719, 43.66484383)}"
-6671,22578,GO-20209025595,THEFT UNDER,2020-10-05T00:00:00,2020,October,Monday,5,279,21,2020-10-06T00:00:00,2020,October,Tuesday,6,280,14,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,ALIGHT 1 DD,RG,24,DBL,800.0,STOLEN,6664,"{'type': 'Point', 'coordinates': (-79.34678883, 43.6658141)}"
-6672,22596,GO-20202243957,THEFT UNDER - BICYCLE,2020-11-26T00:00:00,2020,November,Thursday,26,331,20,2020-11-27T00:00:00,2020,November,Friday,27,332,12,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,ALLEZ,RC,24,WHI,500.0,STOLEN,6665,"{'type': 'Point', 'coordinates': (-79.34358911, 43.6633331)}"
-6673,22597,GO-20202243957,THEFT UNDER - BICYCLE,2020-11-26T00:00:00,2020,November,Thursday,26,331,20,2020-11-27T00:00:00,2020,November,Friday,27,332,12,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,JAMIS,VENTURA SPORT,RC,24,BLK,800.0,STOLEN,6666,"{'type': 'Point', 'coordinates': (-79.34358911, 43.6633331)}"
-6674,22600,GO-20202359137,B&E,2020-12-14T00:00:00,2020,December,Monday,14,349,23,2020-12-15T00:00:00,2020,December,Tuesday,15,350,9,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KONA,DEW,OT,21,BLU,400.0,STOLEN,6667,"{'type': 'Point', 'coordinates': (-79.33618619, 43.66540784)}"
-6675,22601,GO-20202359137,B&E,2020-12-14T00:00:00,2020,December,Monday,14,349,23,2020-12-15T00:00:00,2020,December,Tuesday,15,350,9,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KONA,DEWPLUS,OT,21,SIL,500.0,STOLEN,6668,"{'type': 'Point', 'coordinates': (-79.33618619, 43.66540784)}"
-6676,22603,GO-20209032760,THEFT UNDER,2020-12-23T00:00:00,2020,December,Wednesday,23,358,0,2020-12-23T00:00:00,2020,December,Wednesday,23,358,16,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DEVINCI,JACKSON G02,MT,21,BLK,300.0,STOLEN,6669,"{'type': 'Point', 'coordinates': (-79.33699306, 43.66751081)}"
-6677,22823,GO-20142080050,THEFT UNDER,2014-05-14T00:00:00,2014,May,Wednesday,14,134,7,2014-05-14T00:00:00,2014,May,Wednesday,14,134,19,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OPUS,CLASSICO,OT,7,BLK,675.0,STOLEN,6671,"{'type': 'Point', 'coordinates': (-79.33025169000001, 43.6608917)}"
-6678,22825,GO-20149003459,THEFT UNDER,2014-05-17T00:00:00,2014,May,Saturday,17,137,0,2014-05-19T00:00:00,2014,May,Monday,19,139,23,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,RM,WHISTLER 10,MT,8,DBL,629.0,STOLEN,6672,"{'type': 'Point', 'coordinates': (-79.33427841, 43.6661702)}"
-6679,22841,GO-20149004121,THEFT UNDER,2014-06-11T00:00:00,2014,June,Wednesday,11,162,17,2014-06-16T00:00:00,2014,June,Monday,16,167,12,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,LAGER,RG,1,BLK,550.0,STOLEN,6673,"{'type': 'Point', 'coordinates': (-79.35371098, 43.66367583)}"
-6680,22843,GO-20149004261,THEFT UNDER,2014-05-24T00:00:00,2014,May,Saturday,24,144,3,2014-06-20T00:00:00,2014,June,Friday,20,171,9,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,IN,,MT,6,BLU,100.0,STOLEN,6674,"{'type': 'Point', 'coordinates': (-79.33830359, 43.66318301)}"
-6681,22860,GO-20149005733,THEFT UNDER,2014-08-06T00:00:00,2014,August,Wednesday,6,218,12,2014-08-07T00:00:00,2014,August,Thursday,7,219,14,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ALLEZ,RG,27,GRY,1500.0,STOLEN,6675,"{'type': 'Point', 'coordinates': (-79.33878004, 43.6613564)}"
-6682,22876,GO-20143008954,THEFT UNDER,2014-09-29T00:00:00,2014,September,Monday,29,272,14,2014-09-29T00:00:00,2014,September,Monday,29,272,15,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,MONTERAY,OT,18,GRY,900.0,STOLEN,6676,"{'type': 'Point', 'coordinates': (-79.34795473, 43.66261567)}"
-6683,22880,GO-20143071765,THEFT UNDER,2014-10-09T00:00:00,2014,October,Thursday,9,282,0,2014-10-09T00:00:00,2014,October,Thursday,9,282,10,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,MT,10,WHI,1300.0,STOLEN,6677,"{'type': 'Point', 'coordinates': (-79.33427841, 43.6661702)}"
-6684,22883,GO-20149007799,THEFT UNDER,2014-10-23T00:00:00,2014,October,Thursday,23,296,12,2014-10-24T00:00:00,2014,October,Friday,24,297,12,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,,MT,18,GRY,150.0,STOLEN,6678,"{'type': 'Point', 'coordinates': (-79.33986979, 43.66696579)}"
-6685,22899,GO-20159002862,THEFT UNDER,2015-05-15T00:00:00,2015,May,Friday,15,135,20,2015-05-18T00:00:00,2015,May,Monday,18,138,20,D55,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SA,SUPERLIGHT,MT,9,BLK,1800.0,STOLEN,6679,"{'type': 'Point', 'coordinates': (-79.34055684, 43.66228154)}"
-6686,22905,GO-20159003523,THEFT UNDER,2015-06-11T00:00:00,2015,June,Thursday,11,162,12,2015-06-11T00:00:00,2015,June,Thursday,11,162,13,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,OT,STINGER,SC,40,BLU,841.0,STOLEN,6680,"{'type': 'Point', 'coordinates': (-79.35047888, 43.66047387)}"
-6687,22920,GO-20151414061,THEFT UNDER,2015-08-16T00:00:00,2015,August,Sunday,16,228,21,2015-08-17T00:00:00,2015,August,Monday,17,229,12,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DAMAK,EAGLE,EL,1,GRN,2500.0,STOLEN,6681,"{'type': 'Point', 'coordinates': (-79.33138495, 43.66299749)}"
-6688,22921,GO-20159006158,THEFT UNDER,2015-08-26T00:00:00,2015,August,Wednesday,26,238,20,2015-08-26T00:00:00,2015,August,Wednesday,26,238,20,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,MT,18,OTH,0.0,STOLEN,6682,"{'type': 'Point', 'coordinates': (-79.34843615, 43.66377748)}"
-6689,22922,GO-20159006333,THEFT UNDER,2015-08-23T00:00:00,2015,August,Sunday,23,235,22,2015-08-24T00:00:00,2015,August,Monday,24,236,12,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,CADENT I8 52 CM,RG,8,BLK,1147.0,STOLEN,6683,"{'type': 'Point', 'coordinates': (-79.33053004, 43.67035035)}"
-6690,22931,GO-20159007159,THEFT UNDER,2015-09-11T00:00:00,2015,September,Friday,11,254,14,2015-09-14T00:00:00,2015,September,Monday,14,257,13,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,CYPRESS,MT,21,BLU,300.0,STOLEN,6684,"{'type': 'Point', 'coordinates': (-79.33887346, 43.66133853)}"
-6691,22953,GO-20159011254,THEFT UNDER,2015-12-23T00:00:00,2015,December,Wednesday,23,357,21,2015-12-23T00:00:00,2015,December,Wednesday,23,357,22,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ELECTRO,MT,18,OTH,0.0,STOLEN,6685,"{'type': 'Point', 'coordinates': (-79.34843615, 43.66377748)}"
-6692,22964,GO-2016466697,B&E,2016-03-17T00:00:00,2016,March,Thursday,17,77,14,2016-03-19T00:00:00,2016,March,Saturday,19,79,10,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,CROSS,OT,21,BLK,1400.0,RECOVERED,6686,"{'type': 'Point', 'coordinates': (-79.33314576, 43.65966573)}"
-6693,22968,GO-2016704074,ASSAULT,2016-04-25T00:00:00,2016,April,Monday,25,116,10,2016-04-25T00:00:00,2016,April,Monday,25,116,10,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,UNKOWN,RG,6,BLK,200.0,STOLEN,6687,"{'type': 'Point', 'coordinates': (-79.34850134, 43.66635646)}"
-6694,22971,GO-2016784957,THEFT UNDER - BICYCLE,2016-05-07T00:00:00,2016,May,Saturday,7,128,12,2016-05-07T00:00:00,2016,May,Saturday,7,128,15,D55,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,BIANCHI,SCARPIN,OT,1,GRN,400.0,STOLEN,6688,"{'type': 'Point', 'coordinates': (-79.33861619, 43.65444256)}"
-6695,22977,GO-20161084036,B&E,2016-06-21T00:00:00,2016,June,Tuesday,21,173,5,2016-06-21T00:00:00,2016,June,Tuesday,21,173,23,D55,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,WICKED,MT,21,BLK,1000.0,STOLEN,6689,"{'type': 'Point', 'coordinates': (-79.33766387, 43.66159786)}"
-6696,22988,GO-20161356186,THEFT UNDER - BICYCLE,2016-07-29T00:00:00,2016,July,Friday,29,211,13,2016-08-05T00:00:00,2016,August,Friday,5,218,8,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RALEIGH,BACK ALLEY,OT,1,BLKRED,500.0,STOLEN,6690,"{'type': 'Point', 'coordinates': (-79.33529466, 43.66211655)}"
-6697,22993,GO-20161443549,B&E W'INTENT,2016-08-14T00:00:00,2016,August,Sunday,14,227,23,2016-08-15T00:00:00,2016,August,Monday,15,228,19,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,,MT,21,YELWHI,2000.0,STOLEN,6691,"{'type': 'Point', 'coordinates': (-79.34217159, 43.66194084)}"
-6698,23269,GO-20199019196,THEFT UNDER,2019-06-08T00:00:00,2019,June,Saturday,8,159,15,2019-06-19T00:00:00,2019,June,Wednesday,19,170,10,D51,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,,RC,21,RED,750.0,STOLEN,6692,"{'type': 'Point', 'coordinates': (-79.35058013, 43.64309128)}"
-6699,23873,GO-20149003131,THEFT UNDER,2014-05-03T00:00:00,2014,May,Saturday,3,123,12,2014-05-03T00:00:00,2014,May,Saturday,3,123,15,D51,Toronto,70,South Riverdale (70),Convenience Stores,Commercial,TR,7.2FX,RG,24,BLK,700.0,STOLEN,6693,"{'type': 'Point', 'coordinates': (-79.35058013, 43.64309128)}"
-6700,25387,GO-20169010027,B&E,2016-09-01T00:00:00,2016,September,Thursday,1,245,9,2016-09-06T00:00:00,2016,September,Tuesday,6,250,9,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,GI,REVOLT 1,OT,10,BLK,1400.0,STOLEN,6694,"{'type': 'Point', 'coordinates': (-79.34156719, 43.66484383)}"
-6701,25403,GO-20161904167,FTC PROBATION ORDER,2016-10-26T00:00:00,2016,October,Wednesday,26,300,12,2016-10-26T00:00:00,2016,October,Wednesday,26,300,12,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NEXT,CHALLENGER R,MT,18,BLK,,RECOVERED,6695,"{'type': 'Point', 'coordinates': (-79.3400521, 43.66106114)}"
-6702,25404,GO-20161904167,FTC PROBATION ORDER,2016-10-26T00:00:00,2016,October,Wednesday,26,300,12,2016-10-26T00:00:00,2016,October,Wednesday,26,300,12,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RALEIGH,UNKNOWN,MT,18,BLKYEL,,RECOVERED,6696,"{'type': 'Point', 'coordinates': (-79.3400521, 43.66106114)}"
-6703,25413,GO-20162049063,THEFT UNDER - BICYCLE,2016-11-17T00:00:00,2016,November,Thursday,17,322,14,2016-11-18T00:00:00,2016,November,Friday,18,323,11,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,,MT,18,SIL,1000.0,STOLEN,6697,"{'type': 'Point', 'coordinates': (-79.33754387, 43.6687961)}"
-6704,25424,GO-20179001256,THEFT UNDER - BICYCLE,2017-01-23T00:00:00,2017,January,Monday,23,23,23,2017-01-27T00:00:00,2017,January,Friday,27,27,11,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,HARDROCK,MT,21,RED,700.0,STOLEN,6698,"{'type': 'Point', 'coordinates': (-79.33639169, 43.66592571)}"
-6705,25445,GO-2017956622,THEFT UNDER - BICYCLE,2017-05-29T00:00:00,2017,May,Monday,29,149,17,2017-05-30T00:00:00,2017,May,Tuesday,30,150,16,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SCHWINN,,OT,18,BLK,,STOLEN,6699,"{'type': 'Point', 'coordinates': (-79.35288146, 43.66387781)}"
-6706,25446,GO-20179007330,THEFT UNDER - BICYCLE,2017-06-01T00:00:00,2017,June,Thursday,1,152,8,2017-06-01T00:00:00,2017,June,Thursday,1,152,12,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,DOWNTOWN DLX 20,BM,1,BLK,470.0,STOLEN,6700,"{'type': 'Point', 'coordinates': (-79.33986979, 43.66696579)}"
-6707,25450,GO-20179008332,THEFT UNDER - BICYCLE,2017-06-17T00:00:00,2017,June,Saturday,17,168,9,2017-06-18T00:00:00,2017,June,Sunday,18,169,9,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,CC,,MT,18,BLU,300.0,STOLEN,6701,"{'type': 'Point', 'coordinates': (-79.35227255, 43.66006097)}"
-6708,25451,GO-20171081715,THEFT UNDER - BICYCLE,2017-06-10T00:00:00,2017,June,Saturday,10,161,12,2017-06-17T00:00:00,2017,June,Saturday,17,168,16,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,NISEO,RG,12,BLK,700.0,STOLEN,6702,"{'type': 'Point', 'coordinates': (-79.34707943, 43.66048117)}"
-6709,25454,GO-20179009329,THEFT UNDER - BICYCLE,2017-05-26T00:00:00,2017,May,Friday,26,146,9,2017-07-03T00:00:00,2017,July,Monday,3,184,15,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,UK,,BM,1,BLU,1.0,STOLEN,6703,"{'type': 'Point', 'coordinates': (-79.34635446, 43.66117743)}"
-6710,25455,GO-20179009329,THEFT UNDER - BICYCLE,2017-05-26T00:00:00,2017,May,Friday,26,146,9,2017-07-03T00:00:00,2017,July,Monday,3,184,15,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,18,GRY,250.0,STOLEN,6704,"{'type': 'Point', 'coordinates': (-79.34635446, 43.66117743)}"
-6711,25460,GO-20179010202,THEFT UNDER - BICYCLE,2017-07-11T00:00:00,2017,July,Tuesday,11,192,18,2017-07-14T00:00:00,2017,July,Friday,14,195,18,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,RG,21,BLK,600.0,STOLEN,6705,"{'type': 'Point', 'coordinates': (-79.34055684, 43.66228154)}"
-6712,25467,GO-20179010662,THEFT UNDER,2017-07-17T00:00:00,2017,July,Monday,17,198,14,2017-07-20T00:00:00,2017,July,Thursday,20,201,10,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,1,LGR,350.0,STOLEN,6706,"{'type': 'Point', 'coordinates': (-79.35132068, 43.66246707)}"
-6713,25485,GO-20179015332,THEFT UNDER - BICYCLE,2017-09-20T00:00:00,2017,September,Wednesday,20,263,12,2017-09-20T00:00:00,2017,September,Wednesday,20,263,15,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KH,FLITE 223,TO,21,GRY,900.0,STOLEN,6707,"{'type': 'Point', 'coordinates': (-79.3400521, 43.66106114)}"
-6714,25494,GO-20179017683,THEFT UNDER,2017-10-19T00:00:00,2017,October,Thursday,19,292,9,2017-10-20T00:00:00,2017,October,Friday,20,293,10,D55,Toronto,70,South Riverdale (70),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,,TO,28,BLK,1200.0,STOLEN,6708,"{'type': 'Point', 'coordinates': (-79.3458901, 43.66601542)}"
-6715,25501,GO-20179019173,THEFT UNDER,2017-11-07T00:00:00,2017,November,Tuesday,7,311,1,2017-11-08T00:00:00,2017,November,Wednesday,8,312,14,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,CA,,TO,18,BLU,1500.0,STOLEN,6709,"{'type': 'Point', 'coordinates': (-79.35088962, 43.65863192)}"
-6716,25504,GO-20179020036,THEFT UNDER - BICYCLE,2017-11-19T00:00:00,2017,November,Sunday,19,323,23,2017-11-20T00:00:00,2017,November,Monday,20,324,9,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,KO,,RG,10,,500.0,STOLEN,6710,"{'type': 'Point', 'coordinates': (-79.33539172, 43.66559122)}"
-6717,25505,GO-20179020210,THEFT UNDER - BICYCLE,2017-11-20T00:00:00,2017,November,Monday,20,324,18,2017-11-21T00:00:00,2017,November,Tuesday,21,325,15,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,OT,ALLEZ SPORT,RC,9,GRY,1500.0,STOLEN,6711,"{'type': 'Point', 'coordinates': (-79.34055684, 43.66228154)}"
-6718,25506,GO-20179020210,THEFT UNDER - BICYCLE,2017-11-20T00:00:00,2017,November,Monday,20,324,18,2017-11-21T00:00:00,2017,November,Tuesday,21,325,15,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,TR,ALPHA ALUMINUM,RC,9,WHI,1000.0,STOLEN,6712,"{'type': 'Point', 'coordinates': (-79.34055684, 43.66228154)}"
-6719,25513,GO-20179021224,THEFT UNDER - BICYCLE,2017-12-02T00:00:00,2017,December,Saturday,2,336,0,2017-12-04T00:00:00,2017,December,Monday,4,338,13,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,STROLL,RG,1,WHI,690.0,STOLEN,6713,"{'type': 'Point', 'coordinates': (-79.33754387, 43.6687961)}"
-6720,25518,GO-20189002458,THEFT UNDER - BICYCLE,2018-01-25T00:00:00,2018,January,Thursday,25,25,0,2018-01-25T00:00:00,2018,January,Thursday,25,25,14,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,OT,18,BLK,0.0,STOLEN,6714,"{'type': 'Point', 'coordinates': (-79.33277457, 43.66267098)}"
-6721,25520,GO-20189005043,FTC PROBATION ORDER,2018-02-16T00:00:00,2018,February,Friday,16,47,6,2018-02-16T00:00:00,2018,February,Friday,16,47,15,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,OT,ALLEGRO,OT,18,LBL,500.0,STOLEN,6715,"{'type': 'Point', 'coordinates': (-79.34030508, 43.66516613)}"
-6722,25528,GO-20189012473,THEFT UNDER - BICYCLE,2018-04-21T00:00:00,2018,April,Saturday,21,111,2,2018-04-22T00:00:00,2018,April,Sunday,22,112,23,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,LIGHTNING,RC,21,BLK,200.0,STOLEN,6716,"{'type': 'Point', 'coordinates': (-79.34030508, 43.66516613)}"
-6723,25529,GO-20189012523,THEFT UNDER - BICYCLE,2018-04-23T00:00:00,2018,April,Monday,23,113,12,2018-04-23T00:00:00,2018,April,Monday,23,113,12,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,NO,,RG,9,GRY,620.0,STOLEN,6717,"{'type': 'Point', 'coordinates': (-79.34030508, 43.66516613)}"
-6724,14208,GO-20171886110,PROPERTY - FOUND,2017-10-18T00:00:00,2017,October,Wednesday,18,291,10,2017-10-18T00:00:00,2017,October,Wednesday,18,291,11,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,NITRO XT,MT,7,GRNBLK,,UNKNOWN,6718,"{'type': 'Point', 'coordinates': (-79.34217159, 43.66194084)}"
-6725,11278,GO-20169004303,THEFT UNDER,2016-05-07T00:00:00,2016,May,Saturday,7,128,1,2016-05-09T00:00:00,2016,May,Monday,9,130,13,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,TOMAHAWK,MT,15,SIL,20.0,STOLEN,6719,"{'type': 'Point', 'coordinates': (-79.33284988, 43.66647178)}"
-6726,16753,GO-20199015350,THEFT UNDER,2019-05-16T00:00:00,2019,May,Thursday,16,136,16,2019-05-17T00:00:00,2019,May,Friday,17,137,7,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,SC,GTX2,RG,21,RED,550.0,STOLEN,6720,"{'type': 'Point', 'coordinates': (-79.3721682, 43.66763473)}"
-6727,11308,GO-20169004544,THEFT UNDER,2016-05-14T00:00:00,2016,May,Saturday,14,135,2,2016-05-15T00:00:00,2016,May,Sunday,15,136,9,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,,MT,24,BLK,310.0,STOLEN,6721,"{'type': 'Point', 'coordinates': (-79.3341416, 43.65945332)}"
-6728,11310,GO-20169004545,THEFT UNDER - BICYCLE,2016-05-14T00:00:00,2016,May,Saturday,14,135,1,2016-05-15T00:00:00,2016,May,Sunday,15,136,0,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,9,,600.0,STOLEN,6722,"{'type': 'Point', 'coordinates': (-79.34246583, 43.66052892)}"
-6729,11322,GO-2016850224,THEFT UNDER - BICYCLE,2016-05-17T00:00:00,2016,May,Tuesday,17,138,13,2016-05-17T00:00:00,2016,May,Tuesday,17,138,18,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,,OT,1,BLK,1700.0,STOLEN,6723,"{'type': 'Point', 'coordinates': (-79.33093697, 43.67130509)}"
-6730,11326,GO-2016825332,THEFT UNDER - BICYCLE,2016-05-13T00:00:00,2016,May,Friday,13,134,18,2016-05-13T00:00:00,2016,May,Friday,13,134,19,D55,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,BRODIE,VOLTAGE,MT,1,GRY,750.0,STOLEN,6724,"{'type': 'Point', 'coordinates': (-79.35219877, 43.65833207)}"
-6731,11375,GO-20169004956,THEFT OVER - BICYCLE,2016-04-28T00:00:00,2016,April,Thursday,28,119,16,2016-05-25T00:00:00,2016,May,Wednesday,25,146,16,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,50,BLU,8000.0,STOLEN,6725,"{'type': 'Point', 'coordinates': (-79.35330744, 43.65809046)}"
-6732,11424,GO-20169005220,THEFT UNDER,2016-05-26T00:00:00,2016,May,Thursday,26,147,23,2016-06-01T00:00:00,2016,June,Wednesday,1,153,15,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,GLOBE VIENNA,MT,18,DBL,500.0,STOLEN,6726,"{'type': 'Point', 'coordinates': (-79.33485068, 43.66223293)}"
-6733,11483,GO-2016997405,THEFT UNDER,2016-06-08T00:00:00,2016,June,Wednesday,8,160,13,2016-06-08T00:00:00,2016,June,Wednesday,8,160,16,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SCHWINN,BIKE SEAT,OT,0,,60.0,STOLEN,6727,"{'type': 'Point', 'coordinates': (-79.33138495, 43.66299749)}"
-6734,11555,GO-20169005834,THEFT UNDER,2016-06-01T00:00:00,2016,June,Wednesday,1,153,14,2016-06-15T00:00:00,2016,June,Wednesday,15,167,14,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SU,,MT,18,BLU,100.0,STOLEN,6728,"{'type': 'Point', 'coordinates': (-79.33618619, 43.66540784)}"
-6735,11562,GO-20161048947,THEFT OF EBIKE UNDER $5000,2016-06-13T00:00:00,2016,June,Monday,13,165,21,2016-06-16T00:00:00,2016,June,Thursday,16,168,12,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DRAGON,X25,EL,0,MRN,3000.0,STOLEN,6729,"{'type': 'Point', 'coordinates': (-79.351513, 43.65849323)}"
-6736,11566,GO-20169005927,THEFT UNDER,2016-06-16T00:00:00,2016,June,Thursday,16,168,23,2016-06-17T00:00:00,2016,June,Friday,17,169,9,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SU,,MT,18,PLE,150.0,STOLEN,6730,"{'type': 'Point', 'coordinates': (-79.33618619, 43.66540784)}"
-6737,11658,GO-20169006490,THEFT UNDER,2016-06-28T00:00:00,2016,June,Tuesday,28,180,16,2016-06-28T00:00:00,2016,June,Tuesday,28,180,19,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,GI,,RC,8,SIL,600.0,STOLEN,6731,"{'type': 'Point', 'coordinates': (-79.3412907, 43.66212954)}"
-6738,11660,GO-20169006501,THEFT UNDER,2016-06-28T00:00:00,2016,June,Tuesday,28,180,13,2016-06-28T00:00:00,2016,June,Tuesday,28,180,23,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,UK,STRAGGLER,RG,22,BLK,4400.0,STOLEN,6732,"{'type': 'Point', 'coordinates': (-79.3412907, 43.66212954)}"
-6739,11666,GO-20161140125,THEFT UNDER,2016-06-29T00:00:00,2016,June,Wednesday,29,181,16,2016-06-29T00:00:00,2016,June,Wednesday,29,181,21,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,,MT,21,GRY,,STOLEN,6733,"{'type': 'Point', 'coordinates': (-79.3400521, 43.66106114)}"
-6740,11727,GO-20169006800,THEFT UNDER - BICYCLE,2016-06-29T00:00:00,2016,June,Wednesday,29,181,22,2016-07-06T00:00:00,2016,July,Wednesday,6,188,12,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,GI,XTC2 29ER,MT,27,WHI,1200.0,STOLEN,6734,"{'type': 'Point', 'coordinates': (-79.3412907, 43.66212954)}"
-6741,11768,GO-20169007031,THEFT UNDER,2016-06-27T00:00:00,2016,June,Monday,27,179,13,2016-07-11T00:00:00,2016,July,Monday,11,193,16,D55,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RG,12,BLU,500.0,STOLEN,6736,"{'type': 'Point', 'coordinates': (-79.34055684, 43.66228154)}"
-6742,11790,GO-20169007130,THEFT UNDER - BICYCLE,2016-07-11T00:00:00,2016,July,Monday,11,193,12,2016-07-12T00:00:00,2016,July,Tuesday,12,194,21,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,EVERYDAY QUEEN,RG,7,GRN,300.0,STOLEN,6737,"{'type': 'Point', 'coordinates': (-79.34885459, 43.656657970000005)}"
-6743,11800,GO-20161213073,THEFT FROM MOTOR VEHICLE OVER,2016-07-10T00:00:00,2016,July,Sunday,10,192,17,2016-07-11T00:00:00,2016,July,Monday,11,193,9,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,,MT,21,WHIBLK,10000.0,STOLEN,6738,"{'type': 'Point', 'coordinates': (-79.35422015, 43.66358247)}"
-6744,11886,GO-20169007669,THEFT UNDER - BICYCLE,2016-07-23T00:00:00,2016,July,Saturday,23,205,23,2016-07-24T00:00:00,2016,July,Sunday,24,206,8,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,OT,FSX 2.0,MT,24,BLK,1195.0,STOLEN,6739,"{'type': 'Point', 'coordinates': (-79.33314576, 43.65966573)}"
-6745,11929,GO-20161213073,THEFT FROM MOTOR VEHICLE OVER,2016-07-10T00:00:00,2016,July,Sunday,10,192,17,2016-07-11T00:00:00,2016,July,Monday,11,193,9,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,TOP FUEL 9.9SSL,MT,16,BLK,14000.0,STOLEN,6740,"{'type': 'Point', 'coordinates': (-79.35422015, 43.66358247)}"
-6746,12006,GO-20169008265,THEFT UNDER - BICYCLE,2016-07-26T00:00:00,2016,July,Tuesday,26,208,23,2016-08-05T00:00:00,2016,August,Friday,5,218,13,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SC,SCHWINN HYDRA 7,RG,24,GRY,400.0,STOLEN,6741,"{'type': 'Point', 'coordinates': (-79.33799991, 43.66242646)}"
-6747,12007,GO-20169008265,THEFT UNDER - BICYCLE,2016-07-26T00:00:00,2016,July,Tuesday,26,208,23,2016-08-05T00:00:00,2016,August,Friday,5,218,13,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,GIANT ESCAPE,RG,24,SIL,800.0,STOLEN,6742,"{'type': 'Point', 'coordinates': (-79.33799991, 43.66242646)}"
-6748,5648,GO-20192076067,PROPERTY - FOUND,2019-10-27T00:00:00,2019,October,Sunday,27,300,15,2019-10-27T00:00:00,2019,October,Sunday,27,300,16,D51,Toronto,73,Moss Park (73),"Police / Courts (Parole Board, Probation Office)",Other,CCM,,RG,0,BLU,,UNKNOWN,7112,"{'type': 'Point', 'coordinates': (-79.3627004, 43.65156829000001)}"
-6749,12026,GO-20169008399,THEFT UNDER,2016-08-06T00:00:00,2016,August,Saturday,6,219,16,2016-08-08T00:00:00,2016,August,Monday,8,221,19,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,CITYGLIDE,RG,8,LGR,1000.0,STOLEN,6743,"{'type': 'Point', 'coordinates': (-79.34670356, 43.65958053)}"
-6750,12094,GO-20169008759,THEFT UNDER - BICYCLE,2016-08-14T00:00:00,2016,August,Sunday,14,227,14,2016-08-14T00:00:00,2016,August,Sunday,14,227,21,D55,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,MT,24,RED,700.0,STOLEN,6744,"{'type': 'Point', 'coordinates': (-79.32901937, 43.66055266)}"
-6751,12175,GO-20169009254,B&E,2016-08-21T00:00:00,2016,August,Sunday,21,234,3,2016-08-22T00:00:00,2016,August,Monday,22,235,14,D51,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CC,,RG,21,BLK,0.0,STOLEN,6745,"{'type': 'Point', 'coordinates': (-79.34118116, 43.64211235)}"
-6752,12277,GO-20161586395,THEFT UNDER - BICYCLE,2016-09-06T00:00:00,2016,September,Tuesday,6,250,22,2016-09-07T00:00:00,2016,September,Wednesday,7,251,7,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,INDIE,RG,24,BLK,800.0,STOLEN,6746,"{'type': 'Point', 'coordinates': (-79.34843615, 43.66377748)}"
-6753,12333,GO-20161626585,B&E,2016-09-12T00:00:00,2016,September,Monday,12,256,10,2016-09-13T00:00:00,2016,September,Tuesday,13,257,9,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KONA,JAKE THE SNAKE,RG,21,BLKONG,1400.0,STOLEN,6747,"{'type': 'Point', 'coordinates': (-79.32787173, 43.66379895000001)}"
-6754,12337,GO-20169010404,THEFT UNDER,2016-09-13T00:00:00,2016,September,Tuesday,13,257,20,2016-09-14T00:00:00,2016,September,Wednesday,14,258,5,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EM,MONSTER,EL,32,BLK,2500.0,STOLEN,6748,"{'type': 'Point', 'coordinates': (-79.33277457, 43.66267098)}"
-6755,12375,GO-20169010622,THEFT UNDER,2016-09-15T00:00:00,2016,September,Thursday,15,259,10,2016-09-18T00:00:00,2016,September,Sunday,18,262,2,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,2016 DEW,RG,24,BLK,600.0,STOLEN,6749,"{'type': 'Point', 'coordinates': (-79.34082559, 43.66644055)}"
-6756,12376,GO-20169010622,THEFT UNDER,2016-09-15T00:00:00,2016,September,Thursday,15,259,10,2016-09-18T00:00:00,2016,September,Sunday,18,262,2,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,2011 BOWERY,RG,1,WHI,1500.0,STOLEN,6750,"{'type': 'Point', 'coordinates': (-79.34082559, 43.66644055)}"
-6757,12394,GO-20169010622,THEFT UNDER,2016-09-15T00:00:00,2016,September,Thursday,15,259,10,2016-09-18T00:00:00,2016,September,Sunday,18,262,2,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,2016 KONA DEW,RG,24,BLK,600.0,STOLEN,6751,"{'type': 'Point', 'coordinates': (-79.34082559, 43.66644055)}"
-6758,12395,GO-20169010622,THEFT UNDER,2016-09-15T00:00:00,2016,September,Thursday,15,259,10,2016-09-18T00:00:00,2016,September,Sunday,18,262,2,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,2011 GIANT BOWE,RG,1,WHI,1500.0,STOLEN,6752,"{'type': 'Point', 'coordinates': (-79.34082559, 43.66644055)}"
-6759,12408,GO-20169010781,THEFT UNDER - BICYCLE,2016-09-20T00:00:00,2016,September,Tuesday,20,264,1,2016-09-20T00:00:00,2016,September,Tuesday,20,264,13,D55,Toronto,70,South Riverdale (70),Bar / Restaurant,Commercial,PE,?,RC,1,GRN,1100.0,STOLEN,6753,"{'type': 'Point', 'coordinates': (-79.33018425, 43.663238750000005)}"
-6760,12409,GO-20169010781,THEFT UNDER - BICYCLE,2016-09-20T00:00:00,2016,September,Tuesday,20,264,1,2016-09-20T00:00:00,2016,September,Tuesday,20,264,13,D55,Toronto,70,South Riverdale (70),Bar / Restaurant,Commercial,PE,,RC,10,MRN,500.0,STOLEN,6754,"{'type': 'Point', 'coordinates': (-79.33018425, 43.663238750000005)}"
-6761,12445,GO-20169011025,THEFT UNDER - BICYCLE,2016-09-24T00:00:00,2016,September,Saturday,24,268,8,2016-09-24T00:00:00,2016,September,Saturday,24,268,14,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,OT,SILHOUETTE 700C,RG,21,BLK,350.0,STOLEN,6755,"{'type': 'Point', 'coordinates': (-79.34751991, 43.656494820000006)}"
-6762,12453,GO-20169011097,THEFT UNDER,2016-09-25T00:00:00,2016,September,Sunday,25,269,18,2016-09-25T00:00:00,2016,September,Sunday,25,269,22,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KH,XCAPE,OT,21,GRY,500.0,STOLEN,6756,"{'type': 'Point', 'coordinates': (-79.33272528, 43.66912039)}"
-6763,12457,GO-20169011111,THEFT UNDER - BICYCLE,2016-09-26T00:00:00,2016,September,Monday,26,270,10,2016-09-26T00:00:00,2016,September,Monday,26,270,10,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RC,18,BLU,800.0,STOLEN,6757,"{'type': 'Point', 'coordinates': (-79.33654683, 43.6690179)}"
-6764,12528,GO-20169011435,THEFT UNDER - BICYCLE,2016-09-30T00:00:00,2016,September,Friday,30,274,7,2016-10-02T00:00:00,2016,October,Sunday,2,276,12,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,PANAMAO X3,RG,24,BLK,775.0,STOLEN,6758,"{'type': 'Point', 'coordinates': (-79.32871441, 43.6726925)}"
-6765,12566,GO-20169011662,THEFT UNDER - BICYCLE,2016-10-06T00:00:00,2016,October,Thursday,6,280,3,2016-10-06T00:00:00,2016,October,Thursday,6,280,14,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,UK,?,MT,10,BLK,500.0,STOLEN,6759,"{'type': 'Point', 'coordinates': (-79.32594707, 43.66422253)}"
-6766,12575,GO-20169011704,THEFT UNDER - BICYCLE,2016-10-04T00:00:00,2016,October,Tuesday,4,278,18,2016-10-07T00:00:00,2016,October,Friday,7,281,19,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,QUICK CX 3,MT,24,WHI,1000.0,STOLEN,6760,"{'type': 'Point', 'coordinates': (-79.35088962, 43.65863192)}"
-6767,12627,GO-20161773982,B&E W'INTENT,2016-10-04T00:00:00,2016,October,Tuesday,4,278,23,2016-10-05T00:00:00,2016,October,Wednesday,5,279,20,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,QUICK 4,RG,0,BLU,838.0,STOLEN,6761,"{'type': 'Point', 'coordinates': (-79.3341416, 43.65945332)}"
-6768,12632,GO-20169012196,THEFT UNDER,2016-10-17T00:00:00,2016,October,Monday,17,291,9,2016-10-17T00:00:00,2016,October,Monday,17,291,21,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,21,BLK,850.0,STOLEN,6762,"{'type': 'Point', 'coordinates': (-79.34355095, 43.66028737)}"
-6769,12636,GO-20161854436,THEFT UNDER - BICYCLE,2016-10-15T00:00:00,2016,October,Saturday,15,289,15,2016-10-18T00:00:00,2016,October,Tuesday,18,292,15,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,BM,1,BLK,,STOLEN,6763,"{'type': 'Point', 'coordinates': (-79.34156719, 43.66484383)}"
-6770,12648,GO-20161864814,B&E,2016-10-20T00:00:00,2016,October,Thursday,20,294,1,2016-10-20T00:00:00,2016,October,Thursday,20,294,8,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ARGON 18,2012 E112KIT4X5,OT,12,WHI,3000.0,STOLEN,6764,"{'type': 'Point', 'coordinates': (-79.32730959, 43.66390954)}"
-6771,12689,GO-20161911484,THEFT OF EBIKE UNDER $5000,2016-10-23T00:00:00,2016,October,Sunday,23,297,23,2016-10-27T00:00:00,2016,October,Thursday,27,301,15,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,EL,1,,1200.0,STOLEN,6765,"{'type': 'Point', 'coordinates': (-79.34217159, 43.66194084)}"
-6772,12767,GO-20169013458,THEFT UNDER,2016-11-14T00:00:00,2016,November,Monday,14,319,6,2016-11-15T00:00:00,2016,November,Tuesday,15,320,16,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,NO,VALENCE CARBON,RC,16,BLK,2600.0,STOLEN,6766,"{'type': 'Point', 'coordinates': (-79.34156719, 43.66484383)}"
-6773,12797,GO-20162061255,B&E,2016-11-20T00:00:00,2016,November,Sunday,20,325,0,2016-11-20T00:00:00,2016,November,Sunday,20,325,10,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,BIANCHI,ROAD,RC,10,TRQ,5000.0,STOLEN,6767,"{'type': 'Point', 'coordinates': (-79.35047888, 43.66047387)}"
-6774,12823,GO-20169013832,THEFT UNDER - BICYCLE,2016-11-24T00:00:00,2016,November,Thursday,24,329,20,2016-11-25T00:00:00,2016,November,Friday,25,330,10,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SIRRUS COMP2014,OT,10,GRY,1200.0,STOLEN,6768,"{'type': 'Point', 'coordinates': (-79.33529466, 43.66211655)}"
-6775,12827,GO-20169013881,THEFT UNDER - BICYCLE,2016-11-24T00:00:00,2016,November,Thursday,24,329,23,2016-11-26T00:00:00,2016,November,Saturday,26,331,15,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,AS-R,MT,27,WHI,3000.0,STOLEN,6769,"{'type': 'Point', 'coordinates': (-79.33921751, 43.66541664)}"
-6776,12842,GO-20162149409,B&E,2016-10-28T00:00:00,2016,October,Friday,28,302,23,2016-12-04T00:00:00,2016,December,Sunday,4,339,9,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,MADONE,OT,21,BLKGRY,5000.0,STOLEN,6770,"{'type': 'Point', 'coordinates': (-79.34804819, 43.66027543)}"
-6777,12846,GO-20169014191,THEFT UNDER,2016-12-02T00:00:00,2016,December,Friday,2,337,23,2016-12-04T00:00:00,2016,December,Sunday,4,339,12,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,RC,18,,0.0,STOLEN,6771,"{'type': 'Point', 'coordinates': (-79.33136335, 43.66863682)}"
-6778,12854,GO-20162181083,B&E W'INTENT,2016-12-08T00:00:00,2016,December,Thursday,8,343,16,2016-12-09T00:00:00,2016,December,Friday,9,344,8,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,OTHER,,BM,5,PLE,1800.0,STOLEN,6772,"{'type': 'Point', 'coordinates': (-79.34030508, 43.66516613)}"
-6779,12855,GO-20162181083,B&E W'INTENT,2016-12-08T00:00:00,2016,December,Thursday,8,343,16,2016-12-09T00:00:00,2016,December,Friday,9,344,8,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,TREK,,OT,10,WHI,1000.0,STOLEN,6773,"{'type': 'Point', 'coordinates': (-79.34030508, 43.66516613)}"
-6780,12872,GO-20189025200,THEFT UNDER,2018-08-05T00:00:00,2018,August,Sunday,5,217,6,2018-08-05T00:00:00,2018,August,Sunday,5,217,15,D55,Toronto,70,South Riverdale (70),"Religious Facilities (Synagogue, Church, Convent, Mosque)",Other,TU,,RC,24,,100.0,STOLEN,6774,"{'type': 'Point', 'coordinates': (-79.35010849, 43.65958403)}"
-6781,12876,GO-20189025937,THEFT UNDER,2018-08-09T00:00:00,2018,August,Thursday,9,221,21,2018-08-10T00:00:00,2018,August,Friday,10,222,11,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,,RG,7,DBL,400.0,STOLEN,6776,"{'type': 'Point', 'coordinates': (-79.34884568, 43.66008746)}"
-6782,12902,GO-20189035140,THEFT UNDER - BICYCLE,2018-10-22T00:00:00,2018,October,Monday,22,295,11,2018-10-22T00:00:00,2018,October,Monday,22,295,18,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,TO,18,SIL,1200.0,STOLEN,6777,"{'type': 'Point', 'coordinates': (-79.33903811, 43.66497532)}"
-6783,12903,GO-20189035140,THEFT UNDER - BICYCLE,2018-10-22T00:00:00,2018,October,Monday,22,295,11,2018-10-22T00:00:00,2018,October,Monday,22,295,18,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,TO,18,RED,1200.0,STOLEN,6778,"{'type': 'Point', 'coordinates': (-79.33903811, 43.66497532)}"
-6784,12906,GO-20189036764,THEFT UNDER - BICYCLE,2018-11-02T00:00:00,2018,November,Friday,2,306,12,2018-11-04T00:00:00,2018,November,Sunday,4,308,8,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,24,WHI,500.0,STOLEN,6779,"{'type': 'Point', 'coordinates': (-79.34358911, 43.6633331)}"
-6785,12917,GO-20199000152,THEFT UNDER - BICYCLE,2018-12-20T00:00:00,2018,December,Thursday,20,354,16,2019-01-02T00:00:00,2019,January,Wednesday,2,2,16,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RM,GROWLER,MT,28,WHI,2279.0,STOLEN,6780,"{'type': 'Point', 'coordinates': (-79.3533502, 43.66120299)}"
-6786,12952,GO-20199022891,THEFT UNDER,2019-07-16T00:00:00,2019,July,Tuesday,16,197,3,2019-07-19T00:00:00,2019,July,Friday,19,200,10,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,FJ,,RG,1,BLK,600.0,STOLEN,6781,"{'type': 'Point', 'coordinates': (-79.33284988, 43.66647178)}"
-6787,12962,GO-20199025209,THEFT UNDER,2019-08-04T00:00:00,2019,August,Sunday,4,216,9,2019-08-07T00:00:00,2019,August,Wednesday,7,219,12,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,HYBRID,OT,21,BLK,800.0,STOLEN,6782,"{'type': 'Point', 'coordinates': (-79.34804819, 43.66027543)}"
-6788,12963,GO-20199025254,THEFT UNDER,2019-08-03T00:00:00,2019,August,Saturday,3,215,0,2019-08-07T00:00:00,2019,August,Wednesday,7,219,16,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,,MT,21,GRY,250.0,STOLEN,6783,"{'type': 'Point', 'coordinates': (-79.35290454, 43.66176998)}"
-6789,12968,GO-20191585322,THEFT UNDER - BICYCLE,2019-08-19T00:00:00,2019,August,Monday,19,231,19,2019-08-20T00:00:00,2019,August,Tuesday,20,232,17,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MARIN SC HYPR,FAIRFAX,RG,24,BLK,550.0,STOLEN,6784,"{'type': 'Point', 'coordinates': (-79.35220622, 43.66224318)}"
-6790,12969,GO-20199027648,THEFT UNDER,2019-08-24T00:00:00,2019,August,Saturday,24,236,19,2019-08-25T00:00:00,2019,August,Sunday,25,237,19,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,TRANSFER TEN,MT,21,GRY,300.0,STOLEN,6785,"{'type': 'Point', 'coordinates': (-79.33654683, 43.6690179)}"
-6791,12974,GO-20199028088,THEFT UNDER,2019-08-28T00:00:00,2019,August,Wednesday,28,240,6,2019-08-28T00:00:00,2019,August,Wednesday,28,240,22,D55,Toronto,70,South Riverdale (70),"Open Areas (Lakes, Parks, Rivers)",Outside,NORCO,SCENE 2,MT,8,DBL,942.0,STOLEN,6786,"{'type': 'Point', 'coordinates': (-79.31237569, 43.66036758)}"
-6792,12982,GO-20199030502,THEFT UNDER,2019-09-17T00:00:00,2019,September,Tuesday,17,260,23,2019-09-18T00:00:00,2019,September,Wednesday,18,261,13,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,TO,10,BLK,400.0,STOLEN,6787,"{'type': 'Point', 'coordinates': (-79.34135774, 43.6578776)}"
-6793,12984,GO-20199031214,THEFT UNDER,2019-09-20T00:00:00,2019,September,Friday,20,263,17,2019-09-23T00:00:00,2019,September,Monday,23,266,14,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,1,BLK,350.0,STOLEN,6788,"{'type': 'Point', 'coordinates': (-79.34740718, 43.65941945)}"
-6794,12986,GO-20199031744,INVALID GO - RMS ONLY,2019-09-25T00:00:00,2019,September,Wednesday,25,268,21,2019-09-27T00:00:00,2019,September,Friday,27,270,11,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,LEVO,MT,10,BLK,4999.0,STOLEN,6789,"{'type': 'Point', 'coordinates': (-79.34030508, 43.66516613)}"
-6795,12988,GO-20199032425,THEFT UNDER,2019-09-30T00:00:00,2019,September,Monday,30,273,17,2019-10-02T00:00:00,2019,October,Wednesday,2,275,22,D55,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,,RC,8,BLU,1000.0,STOLEN,6790,"{'type': 'Point', 'coordinates': (-79.32839639, 43.65923478)}"
-6796,12992,GO-20199033247,THEFT UNDER,2019-10-09T00:00:00,2019,October,Wednesday,9,282,15,2019-10-09T00:00:00,2019,October,Wednesday,9,282,16,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,SC,1,PNK,200.0,STOLEN,6791,"{'type': 'Point', 'coordinates': (-79.33106729, 43.66794778)}"
-6797,13005,GO-20192159186,THEFT UNDER,2019-11-02T00:00:00,2019,November,Saturday,2,306,2,2019-11-08T00:00:00,2019,November,Friday,8,312,11,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,EMMO,GT80,EL,0,ONG,,STOLEN,6792,"{'type': 'Point', 'coordinates': (-79.34030508, 43.66516613)}"
-6798,13020,GO-20209005806,THEFT UNDER,2020-02-17T00:00:00,2020,February,Monday,17,48,21,2020-02-18T00:00:00,2020,February,Tuesday,18,49,9,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,LIV AVAIL,RC,11,WHI,1800.0,STOLEN,6793,"{'type': 'Point', 'coordinates': (-79.3353053, 43.67182905)}"
-6799,13021,GO-20209005806,THEFT UNDER,2020-02-17T00:00:00,2020,February,Monday,17,48,21,2020-02-18T00:00:00,2020,February,Tuesday,18,49,9,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,,RC,11,BLK,2500.0,STOLEN,6794,"{'type': 'Point', 'coordinates': (-79.3353053, 43.67182905)}"
-6800,13046,GO-20201081158,THEFT OF EBIKE UNDER $5000,2020-06-11T00:00:00,2020,June,Thursday,11,163,20,2020-06-12T00:00:00,2020,June,Friday,12,164,12,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,OTHER,TYPHOON,EL,3,REDWHI,3600.0,STOLEN,6795,"{'type': 'Point', 'coordinates': (-79.35088962, 43.65863192)}"
-6801,13056,GO-20209016420,THEFT UNDER,2020-06-28T00:00:00,2020,June,Sunday,28,180,10,2020-06-29T00:00:00,2020,June,Monday,29,181,7,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GF,TIBURON,OT,21,OTH,364.0,STOLEN,6796,"{'type': 'Point', 'coordinates': (-79.34212986, 43.66615881)}"
-6802,13469,GO-2019370588,THEFT OVER,2018-11-18T00:00:00,2018,November,Sunday,18,322,10,2019-02-27T00:00:00,2019,February,Wednesday,27,58,20,D51,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,INFINITY,,MT,21,WHI,400.0,STOLEN,6797,"{'type': 'Point', 'coordinates': (-79.35145165, 43.64785423)}"
-6803,13781,GO-20189021995,THEFT UNDER - BICYCLE,2018-07-10T00:00:00,2018,July,Tuesday,10,191,22,2018-07-11T00:00:00,2018,July,Wednesday,11,192,1,D51,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,FIXIE SINGLE SP,RG,1,BLK,550.0,STOLEN,6798,"{'type': 'Point', 'coordinates': (-79.35058013, 43.64309128)}"
-6804,14068,GO-20169005959,THEFT UNDER,2016-06-16T00:00:00,2016,June,Thursday,16,168,16,2016-06-17T00:00:00,2016,June,Friday,17,169,16,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,OT,HARDROCK SPECIA,MT,18,GRY,1000.0,STOLEN,6799,"{'type': 'Point', 'coordinates': (-79.34885459, 43.656657970000005)}"
-6805,14070,GO-20161060851,B&E,2016-06-17T00:00:00,2016,June,Friday,17,169,14,2016-06-19T00:00:00,2016,June,Sunday,19,171,19,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,MT,0,RED,50.0,STOLEN,6800,"{'type': 'Point', 'coordinates': (-79.33244189, 43.66846738)}"
-6806,14073,GO-20169006318,THEFT UNDER,2016-06-24T00:00:00,2016,June,Friday,24,176,19,2016-06-24T00:00:00,2016,June,Friday,24,176,21,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,DEW,RG,24,WHI,500.0,STOLEN,6801,"{'type': 'Point', 'coordinates': (-79.35219877, 43.65833207)}"
-6807,14077,GO-20169007095,THEFT UNDER,2016-07-12T00:00:00,2016,July,Tuesday,12,194,0,2016-07-12T00:00:00,2016,July,Tuesday,12,194,17,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,,RG,1,DGR,400.0,STOLEN,6802,"{'type': 'Point', 'coordinates': (-79.33403107, 43.66241627)}"
-6808,14080,GO-20169007525,THEFT UNDER - BICYCLE,2016-07-20T00:00:00,2016,July,Wednesday,20,202,4,2016-07-20T00:00:00,2016,July,Wednesday,20,202,22,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,OT,THE CHROME,RG,1,SIL,565.0,STOLEN,6803,"{'type': 'Point', 'coordinates': (-79.33585561, 43.66200934)}"
-6809,14091,GO-20169008563,THEFT UNDER - BICYCLE,2016-08-10T00:00:00,2016,August,Wednesday,10,223,1,2016-08-11T00:00:00,2016,August,Thursday,11,224,12,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ROMULOUS,RC,8,BRN,900.0,STOLEN,6804,"{'type': 'Point', 'coordinates': (-79.34122836, 43.66079274)}"
-6810,14116,GO-20161856147,THEFT OF EBIKE UNDER $5000,2016-10-18T00:00:00,2016,October,Tuesday,18,292,18,2016-10-18T00:00:00,2016,October,Tuesday,18,292,20,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,CARBON ELECTRIC,EL,21,BLK,,STOLEN,6805,"{'type': 'Point', 'coordinates': (-79.34358911, 43.6633331)}"
-6811,14119,GO-20169013156,THEFT UNDER - BICYCLE,2016-11-01T00:00:00,2016,November,Tuesday,1,306,19,2016-11-08T00:00:00,2016,November,Tuesday,8,313,21,D55,Toronto,70,South Riverdale (70),Bar / Restaurant,Commercial,UK,,OT,1,BLK,0.0,STOLEN,6806,"{'type': 'Point', 'coordinates': (-79.33754387, 43.6687961)}"
-6812,14132,GO-20162137499,THEFT UNDER - BICYCLE,2016-12-01T00:00:00,2016,December,Thursday,1,336,9,2016-12-02T00:00:00,2016,December,Friday,2,337,15,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,MT,1,WHI,400.0,STOLEN,6807,"{'type': 'Point', 'coordinates': (-79.33197134, 43.67003293)}"
-6813,14133,GO-20162137499,THEFT UNDER - BICYCLE,2016-12-01T00:00:00,2016,December,Thursday,1,336,9,2016-12-02T00:00:00,2016,December,Friday,2,337,15,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,MT,1,BLK,560.0,STOLEN,6808,"{'type': 'Point', 'coordinates': (-79.33197134, 43.67003293)}"
-6814,14134,GO-20169014143,THEFT UNDER,2016-11-13T00:00:00,2016,November,Sunday,13,318,15,2016-12-02T00:00:00,2016,December,Friday,2,337,15,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,TR,PDX,OT,24,BLK,1000.0,STOLEN,6809,"{'type': 'Point', 'coordinates': (-79.34030508, 43.66516613)}"
-6815,14151,GO-20179005510,THEFT UNDER - BICYCLE,2017-04-30T00:00:00,2017,April,Sunday,30,120,13,2017-05-01T00:00:00,2017,May,Monday,1,121,11,D55,Toronto,70,South Riverdale (70),Bar / Restaurant,Commercial,OT,THE DUKE,OT,1,BLK,395.0,STOLEN,6810,"{'type': 'Point', 'coordinates': (-79.33627589000001, 43.66191093)}"
-6816,14156,GO-20179006838,THEFT UNDER - BICYCLE,2017-05-23T00:00:00,2017,May,Tuesday,23,143,8,2017-05-23T00:00:00,2017,May,Tuesday,23,143,18,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CLASSICO,RG,7,ONG,650.0,STOLEN,6811,"{'type': 'Point', 'coordinates': (-79.34270264, 43.66475523)}"
-6817,14158,GO-20179006900,THEFT UNDER - BICYCLE,2017-05-24T00:00:00,2017,May,Wednesday,24,144,0,2017-05-24T00:00:00,2017,May,Wednesday,24,144,13,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,VFR,RG,21,WHI,907.0,STOLEN,6812,"{'type': 'Point', 'coordinates': (-79.33654683, 43.6690179)}"
-6818,14159,GO-20179007052,THEFT UNDER,2017-05-26T00:00:00,2017,May,Friday,26,146,14,2017-05-26T00:00:00,2017,May,Friday,26,146,23,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SC,GTX2,OT,21,RED,595.0,STOLEN,6813,"{'type': 'Point', 'coordinates': (-79.33754387, 43.6687961)}"
-6819,14161,GO-20179007815,THEFT UNDER - BICYCLE,2017-06-08T00:00:00,2017,June,Thursday,8,159,20,2017-06-09T00:00:00,2017,June,Friday,9,160,22,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CYCLEMANIA DANF,RG,21,BLK,570.0,STOLEN,6814,"{'type': 'Point', 'coordinates': (-79.34055684, 43.66228154)}"
-6820,14214,GO-20179019939,THEFT UNDER - BICYCLE,2017-11-17T00:00:00,2017,November,Friday,17,321,12,2017-11-18T00:00:00,2017,November,Saturday,18,322,10,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RC,21,BLK,750.0,STOLEN,6815,"{'type': 'Point', 'coordinates': (-79.34156719, 43.66484383)}"
-6821,14215,GO-20179019939,THEFT UNDER - BICYCLE,2017-11-17T00:00:00,2017,November,Friday,17,321,12,2017-11-18T00:00:00,2017,November,Saturday,18,322,10,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RG,21,BLK,600.0,STOLEN,6816,"{'type': 'Point', 'coordinates': (-79.34156719, 43.66484383)}"
-6822,14217,GO-20179020456,THEFT UNDER - BICYCLE,2017-11-22T00:00:00,2017,November,Wednesday,22,326,12,2017-11-24T00:00:00,2017,November,Friday,24,328,15,D55,Toronto,70,South Riverdale (70),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,MANTRA,RG,1,TRQ,400.0,STOLEN,6817,"{'type': 'Point', 'coordinates': (-79.35317174, 43.660039780000005)}"
-6823,14220,GO-2018455329,THEFT UNDER - BICYCLE,2018-03-12T00:00:00,2018,March,Monday,12,71,2,2018-03-12T00:00:00,2018,March,Monday,12,71,14,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,HASKELL,RG,5,GRN,850.0,STOLEN,6818,"{'type': 'Point', 'coordinates': (-79.34941789, 43.66615064)}"
-6824,14221,GO-2018507607,THEFT UNDER - BICYCLE,2018-03-20T00:00:00,2018,March,Tuesday,20,79,7,2018-03-20T00:00:00,2018,March,Tuesday,20,79,17,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,URBAN X,,MT,7,BLK,600.0,STOLEN,6819,"{'type': 'Point', 'coordinates': (-79.34845931, 43.65919131)}"
-6825,14229,GO-20189012012,THEFT UNDER - BICYCLE,2018-04-16T00:00:00,2018,April,Monday,16,106,18,2018-04-18T00:00:00,2018,April,Wednesday,18,108,12,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,CARTIER ALTUS,RG,8,GRY,800.0,STOLEN,6820,"{'type': 'Point', 'coordinates': (-79.34030508, 43.66516613)}"
-6826,14238,GO-20189016805,THEFT UNDER - BICYCLE,2018-05-30T00:00:00,2018,May,Wednesday,30,150,8,2018-05-30T00:00:00,2018,May,Wednesday,30,150,13,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,OT,SIRRUS,RG,21,BRN,750.0,STOLEN,6821,"{'type': 'Point', 'coordinates': (-79.3412907, 43.66212954)}"
-6827,14242,GO-20189018380,THEFT UNDER - BICYCLE,2018-06-12T00:00:00,2018,June,Tuesday,12,163,16,2018-06-12T00:00:00,2018,June,Tuesday,12,163,16,D55,Toronto,70,South Riverdale (70),Schools During Supervised Activity,Educational,OT,URBANIA 5,OT,7,GRY,500.0,STOLEN,6822,"{'type': 'Point', 'coordinates': (-79.35047888, 43.66047387)}"
-6828,14246,GO-20189020332,THEFT UNDER - BICYCLE,2018-06-25T00:00:00,2018,June,Monday,25,176,22,2018-06-26T00:00:00,2018,June,Tuesday,26,177,22,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,UK,URBANIA 5,OT,8,WHI,795.0,STOLEN,6823,"{'type': 'Point', 'coordinates': (-79.35010849, 43.65958403)}"
-6829,15871,GO-20142247981,THEFT UNDER,2014-06-08T00:00:00,2014,June,Sunday,8,159,7,2014-06-08T00:00:00,2014,June,Sunday,8,159,15,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,ROAM,OT,24,BLKBLU,600.0,STOLEN,6824,"{'type': 'Point', 'coordinates': (-79.33754387, 43.6687961)}"
-6830,15878,GO-20142373670,THEFT UNDER,2014-06-20T00:00:00,2014,June,Friday,20,171,20,2014-06-26T00:00:00,2014,June,Thursday,26,177,21,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,FCR2,MT,21,BLKSIL,1400.0,STOLEN,6825,"{'type': 'Point', 'coordinates': (-79.34036066, 43.66817266)}"
-6831,15879,GO-20142365653,THEFT UNDER,2014-06-19T00:00:00,2014,June,Thursday,19,170,21,2014-06-25T00:00:00,2014,June,Wednesday,25,176,15,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SWOBO,DELNORTE,OT,1,BLK,1000.0,STOLEN,6826,"{'type': 'Point', 'coordinates': (-79.33556888, 43.66925054)}"
-6832,15889,GO-20142535648,THEFT UNDER,2014-07-20T00:00:00,2014,July,Sunday,20,201,15,2014-07-20T00:00:00,2014,July,Sunday,20,201,15,D55,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NAKAMURA,,OT,10,BLKWHI,300.0,STOLEN,6827,"{'type': 'Point', 'coordinates': (-79.3400521, 43.66106114)}"
-6833,15906,GO-20142926127,THEFT UNDER,2014-07-15T00:00:00,2014,July,Tuesday,15,196,16,2014-09-17T00:00:00,2014,September,Wednesday,17,260,9,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,ROAD,OT,12,YEL,1200.0,STOLEN,6828,"{'type': 'Point', 'coordinates': (-79.35306089, 43.66126064)}"
-6834,15909,GO-20143003925,THEFT UNDER,2014-09-26T00:00:00,2014,September,Friday,26,269,21,2014-09-28T00:00:00,2014,September,Sunday,28,271,20,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,LEADER,MOUNTAIN,OT,1,BLK,500.0,STOLEN,6829,"{'type': 'Point', 'coordinates': (-79.35219877, 43.65833207)}"
-6835,15912,GO-20143097218,THEFT UNDER,2014-10-13T00:00:00,2014,October,Monday,13,286,16,2014-10-13T00:00:00,2014,October,Monday,13,286,18,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GREEN BIKE,,EL,2,SIL,2000.0,STOLEN,6830,"{'type': 'Point', 'coordinates': (-79.34941789, 43.66615064)}"
-6836,15917,GO-20149007873,THEFT UNDER,2014-10-26T00:00:00,2014,October,Sunday,26,299,0,2014-10-28T00:00:00,2014,October,Tuesday,28,301,19,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,OT,XPH,EL,32,BLK,3000.0,STOLEN,6831,"{'type': 'Point', 'coordinates': (-79.35047888, 43.66047387)}"
-6837,15923,GO-20143461703,THEFT UNDER,2014-12-08T00:00:00,2014,December,Monday,8,342,23,2014-12-10T00:00:00,2014,December,Wednesday,10,344,18,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NEXT,HIGH PEAK,MT,18,WHI,100.0,STOLEN,6832,"{'type': 'Point', 'coordinates': (-79.33618619, 43.66540784)}"
-6838,15926,GO-20142807873,THEFT UNDER,2014-08-30T00:00:00,2014,August,Saturday,30,242,17,2014-09-10T00:00:00,2014,September,Wednesday,10,253,0,D55,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,MT,12,,,UNKNOWN,6833,"{'type': 'Point', 'coordinates': (-79.33878004, 43.6613564)}"
-6839,15930,GO-20159002183,THEFT UNDER,2015-04-23T00:00:00,2015,April,Thursday,23,113,8,2015-04-23T00:00:00,2015,April,Thursday,23,113,18,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,5,BLU,,STOLEN,6834,"{'type': 'Point', 'coordinates': (-79.35330744, 43.65809046)}"
-6840,15936,GO-20159002585,THEFT UNDER,2015-05-07T00:00:00,2015,May,Thursday,7,127,18,2015-05-09T00:00:00,2015,May,Saturday,9,129,19,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,GRN,0.0,STOLEN,6835,"{'type': 'Point', 'coordinates': (-79.34885459, 43.656657970000005)}"
-6841,15940,GO-20159002914,THEFT UNDER,2015-05-18T00:00:00,2015,May,Monday,18,138,17,2015-05-19T00:00:00,2015,May,Tuesday,19,139,21,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,7000,TO,21,LGR,400.0,STOLEN,6836,"{'type': 'Point', 'coordinates': (-79.33138495, 43.66299749)}"
-6842,15946,GO-2015979418,THEFT UNDER,2015-06-05T00:00:00,2015,June,Friday,5,156,12,2015-06-13T00:00:00,2015,June,Saturday,13,164,12,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,24,BLKGRY,500.0,STOLEN,6837,"{'type': 'Point', 'coordinates': (-79.33415422, 43.67243048)}"
-6843,15948,GO-20151003354,THEFT UNDER,2015-06-14T00:00:00,2015,June,Sunday,14,165,23,2015-06-15T00:00:00,2015,June,Monday,15,166,11,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN,,EL,1,,,STOLEN,6838,"{'type': 'Point', 'coordinates': (-79.34941789, 43.66615064)}"
-6844,15949,GO-20151047536,THEFT UNDER,2015-06-22T00:00:00,2015,June,Monday,22,173,6,2015-06-22T00:00:00,2015,June,Monday,22,173,6,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,MASI,RG,1,YEL,1500.0,STOLEN,6839,"{'type': 'Point', 'coordinates': (-79.35270855, 43.66134085)}"
-6845,15965,GO-20159005561,THEFT UNDER,2015-08-09T00:00:00,2015,August,Sunday,9,221,22,2015-08-10T00:00:00,2015,August,Monday,10,222,9,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RM,CARDIAC,MT,24,BLK,800.0,STOLEN,6840,"{'type': 'Point', 'coordinates': (-79.34246583, 43.66052892)}"
-6846,15973,GO-20159006368,THEFT UNDER,2015-08-23T00:00:00,2015,August,Sunday,23,235,18,2015-08-24T00:00:00,2015,August,Monday,24,236,21,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,DR. DEW,RG,21,GRY,1200.0,STOLEN,6841,"{'type': 'Point', 'coordinates': (-79.34543043, 43.659862360000005)}"
-6847,15976,GO-20151512811,THEFT UNDER,2015-08-17T00:00:00,2015,August,Monday,17,229,18,2015-09-02T00:00:00,2015,September,Wednesday,2,245,10,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CANNONDALE,BADBOY,OT,18,BLK,1700.0,STOLEN,6842,"{'type': 'Point', 'coordinates': (-79.34981191, 43.65887805)}"
-6848,15980,GO-20159007237,THEFT UNDER,2015-09-15T00:00:00,2015,September,Tuesday,15,258,6,2015-09-15T00:00:00,2015,September,Tuesday,15,258,17,D55,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,7.1 FX,MT,21,BLK,653.0,STOLEN,6843,"{'type': 'Point', 'coordinates': (-79.35220622, 43.66224318)}"
-6849,15994,GO-20151930752,THEFT UNDER,2015-11-09T00:00:00,2015,November,Monday,9,313,23,2015-11-11T00:00:00,2015,November,Wednesday,11,315,13,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FOLDING,EBIKE,EL,1,BLK,1200.0,STOLEN,6844,"{'type': 'Point', 'coordinates': (-79.35353151, 43.66163711)}"
-6850,15998,GO-20159010360,THEFT UNDER,2015-11-29T00:00:00,2015,November,Sunday,29,333,17,2015-11-30T00:00:00,2015,November,Monday,30,334,23,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RC,21,DBL,300.0,STOLEN,6845,"{'type': 'Point', 'coordinates': (-79.33053004, 43.67035035)}"
-6851,16008,GO-2016466697,B&E,2016-03-17T00:00:00,2016,March,Thursday,17,77,14,2016-03-19T00:00:00,2016,March,Saturday,19,79,10,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OPUS,CROSS,OT,21,BLK,1400.0,RECOVERED,6846,"{'type': 'Point', 'coordinates': (-79.33314576, 43.65966573)}"
-6852,16009,GO-2016466697,B&E,2016-03-17T00:00:00,2016,March,Thursday,17,77,14,2016-03-19T00:00:00,2016,March,Saturday,19,79,10,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,VITA,OT,18,GRY,900.0,RECOVERED,6847,"{'type': 'Point', 'coordinates': (-79.33314576, 43.65966573)}"
-6853,16010,GO-2016466697,B&E,2016-03-17T00:00:00,2016,March,Thursday,17,77,14,2016-03-19T00:00:00,2016,March,Saturday,19,79,10,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KONA,FIRE MOUNTAIN,MT,21,SILRED,700.0,STOLEN,6848,"{'type': 'Point', 'coordinates': (-79.33314576, 43.65966573)}"
-6854,16015,GO-2016812634,THEFT UNDER - BICYCLE,2016-05-09T00:00:00,2016,May,Monday,9,130,19,2016-05-13T00:00:00,2016,May,Friday,13,134,10,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,,OT,1,BLU,700.0,STOLEN,6849,"{'type': 'Point', 'coordinates': (-79.33539172, 43.66559122)}"
-6855,16017,GO-2016841367,MISCHIEF UNDER,2016-05-15T00:00:00,2016,May,Sunday,15,136,22,2016-05-16T00:00:00,2016,May,Monday,16,137,17,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,,OT,1,BLK,,STOLEN,6850,"{'type': 'Point', 'coordinates': (-79.33025169000001, 43.6608917)}"
-6856,16018,GO-2016841367,MISCHIEF UNDER,2016-05-15T00:00:00,2016,May,Sunday,15,136,22,2016-05-16T00:00:00,2016,May,Monday,16,137,17,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,ROCKHOPPER,MT,21,RED,500.0,STOLEN,6851,"{'type': 'Point', 'coordinates': (-79.33025169000001, 43.6608917)}"
-6857,16032,GO-20201277275,B&E,2019-08-28T00:00:00,2019,August,Wednesday,28,240,6,2020-07-10T00:00:00,2020,July,Friday,10,192,11,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,CANNONDALE,CCAAD10 RACER,RC,11,BLK,1800.0,STOLEN,6852,"{'type': 'Point', 'coordinates': (-79.34246583, 43.66052892)}"
-6858,16033,GO-20201277275,B&E,2019-08-28T00:00:00,2019,August,Wednesday,28,240,6,2020-07-10T00:00:00,2020,July,Friday,10,192,11,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,GIANT,FATHOM 1,MT,12,LBL,2000.0,STOLEN,6853,"{'type': 'Point', 'coordinates': (-79.34246583, 43.66052892)}"
-6859,16044,GO-20209017855,THEFT UNDER,2020-07-17T00:00:00,2020,July,Friday,17,199,23,2020-07-18T00:00:00,2020,July,Saturday,18,200,10,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RC,40,BLU,1000.0,STOLEN,6854,"{'type': 'Point', 'coordinates': (-79.33754387, 43.6687961)}"
-6860,16048,GO-20201361305,THEFT FROM MOTOR VEHICLE UNDER,2020-07-21T00:00:00,2020,July,Tuesday,21,203,23,2020-07-22T00:00:00,2020,July,Wednesday,22,204,10,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,WHIDE WHEEL,EL,1,,1807.0,STOLEN,6855,"{'type': 'Point', 'coordinates': (-79.34430354, 43.65722444)}"
-6861,16049,GO-20201361305,THEFT FROM MOTOR VEHICLE UNDER,2020-07-21T00:00:00,2020,July,Tuesday,21,203,23,2020-07-22T00:00:00,2020,July,Wednesday,22,204,10,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,EXPLORE,EL,1,,1920.0,STOLEN,6856,"{'type': 'Point', 'coordinates': (-79.34430354, 43.65722444)}"
-6862,16053,GO-20209018698,THEFT UNDER,2020-07-05T00:00:00,2020,July,Sunday,5,187,22,2020-07-27T00:00:00,2020,July,Monday,27,209,16,D55,Toronto,70,South Riverdale (70),"Open Areas (Lakes, Parks, Rivers)",Outside,CC,,MT,21,OTH,200.0,STOLEN,6857,"{'type': 'Point', 'coordinates': (-79.31237569, 43.66036758)}"
-6863,16057,GO-20209020223,THEFT UNDER,2020-08-06T00:00:00,2020,August,Thursday,6,219,17,2020-08-14T00:00:00,2020,August,Friday,14,227,14,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,,MT,21,BLK,550.0,STOLEN,6858,"{'type': 'Point', 'coordinates': (-79.32826088, 43.65898454)}"
-6864,16101,GO-20209028235,THEFT UNDER,2020-09-22T00:00:00,2020,September,Tuesday,22,266,15,2020-11-01T00:00:00,2020,November,Sunday,1,306,9,D55,Toronto,70,South Riverdale (70),"Open Areas (Lakes, Parks, Rivers)",Outside,CANNONDALE,QUICK,OT,14,GRY,1600.0,STOLEN,6859,"{'type': 'Point', 'coordinates': (-79.32288072, 43.652347070000005)}"
-6865,16109,GO-20202312487,THEFT UNDER - BICYCLE,2020-12-04T00:00:00,2020,December,Friday,4,339,7,2020-12-08T00:00:00,2020,December,Tuesday,8,343,9,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GARNEAU,,RG,18,,,STOLEN,6860,"{'type': 'Point', 'coordinates': (-79.34817882, 43.66318305)}"
-6866,16113,GO-20202421582,THEFT UNDER - BICYCLE,2020-12-22T00:00:00,2020,December,Tuesday,22,357,11,2020-12-25T00:00:00,2020,December,Friday,25,360,14,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,CRD2,OT,10,GRNBLK,1200.0,STOLEN,6861,"{'type': 'Point', 'coordinates': (-79.34355095, 43.66028737)}"
-6867,16114,GO-20202421582,THEFT UNDER - BICYCLE,2020-12-22T00:00:00,2020,December,Tuesday,22,357,11,2020-12-25T00:00:00,2020,December,Friday,25,360,14,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GARY FISHER,,MT,18,BLUONG,1200.0,STOLEN,6862,"{'type': 'Point', 'coordinates': (-79.34355095, 43.66028737)}"
-6868,16115,GO-20202421582,THEFT UNDER - BICYCLE,2020-12-22T00:00:00,2020,December,Tuesday,22,357,11,2020-12-25T00:00:00,2020,December,Friday,25,360,14,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORVO,,OT,12,BLK,1000.0,STOLEN,6863,"{'type': 'Point', 'coordinates': (-79.34355095, 43.66028737)}"
-6869,18706,GO-20201272967,THEFT UNDER,2020-07-08T00:00:00,2020,July,Wednesday,8,190,9,2020-07-09T00:00:00,2020,July,Thursday,9,191,21,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,RALEIGH,,TO,1,RED,600.0,STOLEN,6864,"{'type': 'Point', 'coordinates': (-79.33585561, 43.66200934)}"
-6870,18716,GO-20209018649,THEFT UNDER,2020-07-12T00:00:00,2020,July,Sunday,12,194,2,2020-07-27T00:00:00,2020,July,Monday,27,209,10,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,,MT,21,SIL,400.0,STOLEN,6865,"{'type': 'Point', 'coordinates': (-79.33699306, 43.66751081)}"
-6871,18719,GO-20209018916,THEFT UNDER,2020-07-29T00:00:00,2020,July,Wednesday,29,211,17,2020-07-29T00:00:00,2020,July,Wednesday,29,211,19,D55,Toronto,70,South Riverdale (70),"Open Areas (Lakes, Parks, Rivers)",Outside,TR,DUALSPORT 2,OT,27,SIL,1000.0,STOLEN,6866,"{'type': 'Point', 'coordinates': (-79.30469992, 43.66622023)}"
-6872,18720,GO-20209018916,THEFT UNDER,2020-07-29T00:00:00,2020,July,Wednesday,29,211,17,2020-07-29T00:00:00,2020,July,Wednesday,29,211,19,D55,Toronto,70,South Riverdale (70),"Open Areas (Lakes, Parks, Rivers)",Outside,TR,820,MT,24,DBL,600.0,STOLEN,6867,"{'type': 'Point', 'coordinates': (-79.30469992, 43.66622023)}"
-6873,18729,GO-20209019813,THEFT UNDER,2020-08-10T00:00:00,2020,August,Monday,10,223,1,2020-08-10T00:00:00,2020,August,Monday,10,223,12,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,SOULVILLE,OT,7,BRN,0.0,STOLEN,6868,"{'type': 'Point', 'coordinates': (-79.3353053, 43.67182905)}"
-6874,18730,GO-20209019813,THEFT UNDER,2020-08-10T00:00:00,2020,August,Monday,10,223,1,2020-08-10T00:00:00,2020,August,Monday,10,223,12,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,SOULVILLE,OT,7,BRN,0.0,STOLEN,6869,"{'type': 'Point', 'coordinates': (-79.3353053, 43.67182905)}"
-6875,18737,GO-20201539983,THEFT UNDER - BICYCLE,2020-08-16T00:00:00,2020,August,Sunday,16,229,18,2020-08-16T00:00:00,2020,August,Sunday,16,229,18,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,PARIS,EL,7,RED,1000.0,STOLEN,6870,"{'type': 'Point', 'coordinates': (-79.35219877, 43.65833207)}"
-6876,18745,GO-20209021195,THEFT UNDER,2020-08-16T00:00:00,2020,August,Sunday,16,229,22,2020-08-24T00:00:00,2020,August,Monday,24,237,19,D55,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RC,12,BLU,300.0,STOLEN,6871,"{'type': 'Point', 'coordinates': (-79.32839639, 43.65923478)}"
-6877,18746,GO-20201599836,THEFT UNDER,2020-08-24T00:00:00,2020,August,Monday,24,237,19,2020-08-25T00:00:00,2020,August,Tuesday,25,238,9,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KHS,URBAN SOUL,RG,1,DBL,500.0,STOLEN,6872,"{'type': 'Point', 'coordinates': (-79.34135774, 43.6578776)}"
-6878,18752,GO-20209021839,THEFT UNDER,2020-08-27T00:00:00,2020,August,Thursday,27,240,21,2020-08-31T00:00:00,2020,August,Monday,31,244,10,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,7,BLK,500.0,STOLEN,6873,"{'type': 'Point', 'coordinates': (-79.34030508, 43.66516613)}"
-6879,18755,GO-20201695140,THEFT OF EBIKE UNDER $5000,2020-09-07T00:00:00,2020,September,Monday,7,251,20,2020-09-07T00:00:00,2020,September,Monday,7,251,21,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,SOLO ROCK- MINI,EL,30,BLK,1500.0,STOLEN,6874,"{'type': 'Point', 'coordinates': (-79.32526809, 43.66439702)}"
-6880,18758,GO-20201726795,B&E W'INTENT,2020-09-08T00:00:00,2020,September,Tuesday,8,252,0,2020-09-13T00:00:00,2020,September,Sunday,13,257,9,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,ORIGAMI,FO,7,GRY,750.0,STOLEN,6875,"{'type': 'Point', 'coordinates': (-79.33212352000001, 43.65987817)}"
-6881,18825,GO-20141298500,THEFT UNDER,2013-11-22T00:00:00,2013,November,Friday,22,326,8,2014-01-07T00:00:00,2014,January,Tuesday,7,7,13,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,GIANT,RAPID,OT,3,YELRED,1300.0,STOLEN,6876,"{'type': 'Point', 'coordinates': (-79.34055684, 43.66228154)}"
-6882,18843,GO-20149004614,THEFT UNDER,2014-06-29T00:00:00,2014,June,Sunday,29,180,10,2014-07-02T00:00:00,2014,July,Wednesday,2,183,10,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SIRRUS COMP,MT,20,BLK,1200.0,RECOVERED,6877,"{'type': 'Point', 'coordinates': (-79.33358342, 43.66820801)}"
-6883,18857,GO-20142873214,B&E,2014-09-04T00:00:00,2014,September,Thursday,4,247,18,2014-09-09T00:00:00,2014,September,Tuesday,9,252,6,D55,Toronto,70,South Riverdale (70),"Construction Site (Warehouse, Trailer, Shed)",Commercial,OTHER,REACTOR ADAMS,MT,12,,,UNKNOWN,6878,"{'type': 'Point', 'coordinates': (-79.33918706, 43.64965536)}"
-6884,18869,GO-20143100951,THEFT UNDER,2014-09-04T00:00:00,2014,September,Thursday,4,247,20,2014-09-04T00:00:00,2014,September,Thursday,4,247,21,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,ROCK HOPPER PRO,RG,21,BLU,1200.0,STOLEN,6879,"{'type': 'Point', 'coordinates': (-79.32839639, 43.65923478)}"
-6885,18879,GO-2015493896,THEFT UNDER,2015-03-24T00:00:00,2015,March,Tuesday,24,83,13,2015-03-24T00:00:00,2015,March,Tuesday,24,83,15,D55,Toronto,70,South Riverdale (70),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,NORCO,INDI 2,TO,24,BLK,500.0,STOLEN,6880,"{'type': 'Point', 'coordinates': (-79.33887346, 43.66133853)}"
-6886,18885,GO-20159002527,THEFT UNDER,2015-01-26T00:00:00,2015,January,Monday,26,26,16,2015-05-07T00:00:00,2015,May,Thursday,7,127,17,D55,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,MADONE,RG,10,DBL,1800.0,STOLEN,6881,"{'type': 'Point', 'coordinates': (-79.3412907, 43.66212954)}"
-6887,18887,GO-20159002798,THEFT UNDER,2015-04-25T00:00:00,2015,April,Saturday,25,115,14,2015-05-16T00:00:00,2015,May,Saturday,16,136,16,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,1,,500.0,STOLEN,6882,"{'type': 'Point', 'coordinates': (-79.35088962, 43.65863192)}"
-6888,18905,GO-20159004053,THEFT UNDER,2015-06-24T00:00:00,2015,June,Wednesday,24,175,0,2015-06-30T00:00:00,2015,June,Tuesday,30,181,15,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,NO,HEART,RG,1,BLK,650.0,STOLEN,6883,"{'type': 'Point', 'coordinates': (-79.33529466, 43.66211655)}"
-6889,18906,GO-20151135067,MISCHIEF UNDER,2015-07-05T00:00:00,2015,July,Sunday,5,186,19,2015-07-06T00:00:00,2015,July,Monday,6,187,0,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BRODIE,,RG,10,,1200.0,STOLEN,6884,"{'type': 'Point', 'coordinates': (-79.34707943, 43.66048117)}"
-6890,18924,GO-20151469351,THEFT OVER,2015-08-26T00:00:00,2015,August,Wednesday,26,238,12,2015-08-26T00:00:00,2015,August,Wednesday,26,238,12,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,BONTRAGER,RACELIGHT,MT,10,ONG,10000.0,STOLEN,6885,"{'type': 'Point', 'coordinates': (-79.34529206, 43.6569886)}"
-6891,18927,GO-20151513805,THEFT UNDER,2015-09-02T00:00:00,2015,September,Wednesday,2,245,11,2015-09-02T00:00:00,2015,September,Wednesday,2,245,13,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,,RC,10,GRN,500.0,STOLEN,6886,"{'type': 'Point', 'coordinates': (-79.33627589000001, 43.66191093)}"
-6892,18932,GO-20159006604,THEFT UNDER,2015-08-31T00:00:00,2015,August,Monday,31,243,19,2015-09-01T00:00:00,2015,September,Tuesday,1,244,12,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,OT,,TR,1,RED,190.0,STOLEN,6887,"{'type': 'Point', 'coordinates': (-79.3412907, 43.66212954)}"
-6893,18944,GO-20151697302,THEFT UNDER,2015-10-01T00:00:00,2015,October,Thursday,1,274,7,2015-10-01T00:00:00,2015,October,Thursday,1,274,20,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,TRANSEND,OT,0,GRY,100.0,STOLEN,6888,"{'type': 'Point', 'coordinates': (-79.34245753, 43.65762329)}"
-6894,18952,GO-20159009372,THEFT UNDER,2015-11-04T00:00:00,2015,November,Wednesday,4,308,15,2015-11-04T00:00:00,2015,November,Wednesday,4,308,18,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,EBS COMP 44,MT,24,BLK,700.0,STOLEN,6889,"{'type': 'Point', 'coordinates': (-79.3389207, 43.65840215)}"
-6895,18954,GO-20152070618,THEFT UNDER,2015-11-28T00:00:00,2015,November,Saturday,28,332,15,2015-12-03T00:00:00,2015,December,Thursday,3,337,9,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,MANTARAY,TO,1,RED,800.0,STOLEN,6890,"{'type': 'Point', 'coordinates': (-79.34246583, 43.66052892)}"
-6896,18956,GO-20159010874,THEFT UNDER,2015-12-13T00:00:00,2015,December,Sunday,13,347,15,2015-12-13T00:00:00,2015,December,Sunday,13,347,15,D55,Toronto,70,South Riverdale (70),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,EL,32,GRN,1000.0,STOLEN,6891,"{'type': 'Point', 'coordinates': (-79.33754387, 43.6687961)}"
-6897,18967,GO-20169003915,THEFT UNDER - BICYCLE,2016-04-28T00:00:00,2016,April,Thursday,28,119,15,2016-04-28T00:00:00,2016,April,Thursday,28,119,16,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,OT,X BOW ALL ROAD,OT,16,,1650.0,STOLEN,6892,"{'type': 'Point', 'coordinates': (-79.35330744, 43.65809046)}"
-6898,18970,GO-20169004058,THEFT UNDER - BICYCLE,2016-05-01T00:00:00,2016,May,Sunday,1,122,14,2016-05-02T00:00:00,2016,May,Monday,2,123,14,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,MILANO,RG,21,BLK,650.0,STOLEN,6893,"{'type': 'Point', 'coordinates': (-79.33986979, 43.66696579)}"
-6899,18976,GO-2016811095,THEFT UNDER,2016-05-11T00:00:00,2016,May,Wednesday,11,132,12,2016-05-12T00:00:00,2016,May,Thursday,12,133,18,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DAYMAK,TURINO,EL,1,BLKYEL,600.0,STOLEN,6894,"{'type': 'Point', 'coordinates': (-79.32927783, 43.67408405)}"
-6900,18978,GO-2016846218,THEFT UNDER - BICYCLE,2016-05-17T00:00:00,2016,May,Tuesday,17,138,8,2016-05-17T00:00:00,2016,May,Tuesday,17,138,8,D55,Toronto,70,South Riverdale (70),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,TRI-CROSS,MT,24,WHIPLE,1500.0,STOLEN,6895,"{'type': 'Point', 'coordinates': (-79.35330744, 43.65809046)}"
-6901,18979,GO-2016849844,THEFT UNDER - BICYCLE,2016-05-16T00:00:00,2016,May,Monday,16,137,15,2016-05-17T00:00:00,2016,May,Tuesday,17,138,17,D55,Toronto,70,South Riverdale (70),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,UNKNOWN,OT,10,BLK,500.0,STOLEN,6896,"{'type': 'Point', 'coordinates': (-79.351513, 43.65849323)}"
-6902,18980,GO-2016862375,B&E W'INTENT,2015-05-10T00:00:00,2015,May,Sunday,10,130,20,2016-05-19T00:00:00,2016,May,Thursday,19,140,14,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,,OT,20,GRY,870.0,STOLEN,6897,"{'type': 'Point', 'coordinates': (-79.34358911, 43.6633331)}"
-6903,18981,GO-2016862375,B&E W'INTENT,2015-05-10T00:00:00,2015,May,Sunday,10,130,20,2016-05-19T00:00:00,2016,May,Thursday,19,140,14,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,,MT,20,WHI,589.0,STOLEN,6898,"{'type': 'Point', 'coordinates': (-79.34358911, 43.6633331)}"
-6904,18982,GO-2016894661,THEFT UNDER,2016-05-23T00:00:00,2016,May,Monday,23,144,22,2016-05-24T00:00:00,2016,May,Tuesday,24,145,15,D55,Toronto,70,South Riverdale (70),"Open Areas (Lakes, Parks, Rivers)",Outside,FORTRESS,,SC,1,BLU,5000.0,STOLEN,6899,"{'type': 'Point', 'coordinates': (-79.31482799, 43.66227291)}"
-6905,18989,GO-20169005834,THEFT UNDER,2016-06-01T00:00:00,2016,June,Wednesday,1,153,14,2016-06-15T00:00:00,2016,June,Wednesday,15,167,14,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SU,,MT,18,BLU,100.0,STOLEN,6900,"{'type': 'Point', 'coordinates': (-79.33618619, 43.66540784)}"
-6906,18992,GO-20169006014,THEFT UNDER - BICYCLE,2016-06-19T00:00:00,2016,June,Sunday,19,171,9,2016-06-19T00:00:00,2016,June,Sunday,19,171,12,D55,Toronto,70,South Riverdale (70),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,DEFY,RC,18,BLK,1049.0,STOLEN,6901,"{'type': 'Point', 'coordinates': (-79.34543043, 43.659862360000005)}"
-6907,19005,GO-20169007426,THEFT UNDER - BICYCLE,2016-07-09T00:00:00,2016,July,Saturday,9,191,17,2016-07-19T00:00:00,2016,July,Tuesday,19,201,15,D55,Toronto,70,South Riverdale (70),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,ALLEZ,RC,10,BLU,2300.0,STOLEN,6902,"{'type': 'Point', 'coordinates': (-79.34707943, 43.66048117)}"
-6908,19009,GO-20161292149,B&E,2016-07-23T00:00:00,2016,July,Saturday,23,205,6,2016-07-23T00:00:00,2016,July,Saturday,23,205,6,D55,Toronto,70,South Riverdale (70),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CERVELO,S2,TO,0,BLUBLK,,STOLEN,6903,"{'type': 'Point', 'coordinates': (-79.33314576, 43.65966573)}"
-6909,16769,GO-20199018586,THEFT UNDER,2019-06-13T00:00:00,2019,June,Thursday,13,164,13,2019-06-14T00:00:00,2019,June,Friday,14,165,13,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,10,GRY,1150.0,STOLEN,6904,"{'type': 'Point', 'coordinates': (-79.37373773, 43.66729501)}"
-6910,16914,GO-20179006205,THEFT UNDER,2017-05-12T00:00:00,2017,May,Friday,12,132,14,2017-05-12T00:00:00,2017,May,Friday,12,132,16,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,FX 7.1,RG,21,BLK,1500.0,STOLEN,6905,"{'type': 'Point', 'coordinates': (-79.37048033, 43.66372252)}"
-6911,16931,GO-20179008156,THEFT OF EBIKE UNDER $5000,2017-06-15T00:00:00,2017,June,Thursday,15,166,13,2017-06-15T00:00:00,2017,June,Thursday,15,166,13,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,EL,35,BLK,1200.0,STOLEN,6906,"{'type': 'Point', 'coordinates': (-79.36915141, 43.66726995)}"
-6912,16943,GO-20179009630,THEFT UNDER - BICYCLE,2017-07-06T00:00:00,2017,July,Thursday,6,187,10,2017-07-07T00:00:00,2017,July,Friday,7,188,11,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,EXPRESSWAY (I T,FO,7,BLK,0.0,STOLEN,6907,"{'type': 'Point', 'coordinates': (-79.36399777, 43.66258744)}"
-6913,16974,GO-20179014114,THEFT UNDER,2017-09-05T00:00:00,2017,September,Tuesday,5,248,17,2017-09-06T00:00:00,2017,September,Wednesday,6,249,10,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,TR,,TO,9,SIL,1700.0,STOLEN,6908,"{'type': 'Point', 'coordinates': (-79.37785611, 43.66521591)}"
-6914,16978,GO-20179014372,THEFT UNDER,2017-09-09T00:00:00,2017,September,Saturday,9,252,21,2017-09-10T00:00:00,2017,September,Sunday,10,253,9,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,AXIS 5,RC,22,BLK,700.0,STOLEN,6909,"{'type': 'Point', 'coordinates': (-79.37302171, 43.66318983)}"
-6915,17014,GO-20179022305,THEFT UNDER - BICYCLE,2017-12-15T00:00:00,2017,December,Friday,15,349,17,2017-12-15T00:00:00,2017,December,Friday,15,349,18,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,OT,GALILEO,RC,18,RED,3000.0,STOLEN,6910,"{'type': 'Point', 'coordinates': (-79.37547981, 43.66574074)}"
-6916,5858,GO-20209003455,THEFT UNDER,2020-01-28T00:00:00,2020,January,Tuesday,28,28,18,2020-01-29T00:00:00,2020,January,Wednesday,29,29,12,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,GI,TALON,MT,9,BLU,938.0,STOLEN,7129,"{'type': 'Point', 'coordinates': (-79.36527402, 43.65426123)}"
-6917,17017,GO-20189003884,THEFT UNDER - BICYCLE,2018-02-07T00:00:00,2018,February,Wednesday,7,38,20,2018-02-08T00:00:00,2018,February,Thursday,8,39,11,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RA,,OT,8,BLK,1000.0,STOLEN,6911,"{'type': 'Point', 'coordinates': (-79.36992785, 43.66558086)}"
-6918,17032,GO-20189015709,THEFT UNDER,2018-05-18T00:00:00,2018,May,Friday,18,138,17,2018-05-21T00:00:00,2018,May,Monday,21,141,20,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,16,PLE,200.0,STOLEN,6912,"{'type': 'Point', 'coordinates': (-79.37048033, 43.66372252)}"
-6919,17042,GO-20181011032,THEFT UNDER - BICYCLE,2018-06-01T00:00:00,2018,June,Friday,1,152,16,2018-06-04T00:00:00,2018,June,Monday,4,155,14,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,YORKVILLE,OT,10,BLK,607.0,STOLEN,6913,"{'type': 'Point', 'coordinates': (-79.37489281, 43.66432923)}"
-6920,17060,GO-20181186069,PROPERTY - FOUND,2018-06-29T00:00:00,2018,June,Friday,29,180,22,2018-06-29T00:00:00,2018,June,Friday,29,180,22,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GARNEAU,PENNY,RG,6,WHIT,,UNKNOWN,6914,"{'type': 'Point', 'coordinates': (-79.3631446, 43.66279163)}"
-6921,17073,GO-20189023601,THEFT UNDER - BICYCLE,2018-07-23T00:00:00,2018,July,Monday,23,204,15,2018-07-23T00:00:00,2018,July,Monday,23,204,16,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,HARPER,RG,1,BLK,350.0,STOLEN,6915,"{'type': 'Point', 'coordinates': (-79.37170183, 43.66651225)}"
-6922,17081,GO-20189024668,THEFT UNDER - BICYCLE,2018-07-28T00:00:00,2018,July,Saturday,28,209,22,2018-07-31T00:00:00,2018,July,Tuesday,31,212,14,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,URBANO,RG,21,LGR,520.0,STOLEN,6916,"{'type': 'Point', 'coordinates': (-79.37547981, 43.66574074)}"
-6923,17089,GO-20189026479,THEFT UNDER - BICYCLE,2018-08-15T00:00:00,2018,August,Wednesday,15,227,3,2018-08-15T00:00:00,2018,August,Wednesday,15,227,12,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,FX-3,TO,27,LBL,950.0,STOLEN,6917,"{'type': 'Point', 'coordinates': (-79.36078708, 43.66464918)}"
-6924,17091,GO-20181530737,THEFT UNDER - BICYCLE,2018-08-19T00:00:00,2018,August,Sunday,19,231,8,2018-08-19T00:00:00,2018,August,Sunday,19,231,11,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,INDIE 3,TO,21,BLK,1200.0,STOLEN,6918,"{'type': 'Point', 'coordinates': (-79.36078708, 43.66464918)}"
-6925,17104,GO-20181727700,THEFT UNDER - BICYCLE,2018-09-18T00:00:00,2018,September,Tuesday,18,261,5,2018-09-18T00:00:00,2018,September,Tuesday,18,261,5,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Open Areas (Lakes, Parks, Rivers)",Outside,FUJI,RACE,RC,24,GRY,,RECOVERED,6919,"{'type': 'Point', 'coordinates': (-79.36750361, 43.66320621)}"
-6926,17109,GO-20181324153,B&E,2018-07-20T00:00:00,2018,July,Friday,20,201,0,2018-07-20T00:00:00,2018,July,Friday,20,201,10,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,,RG,1,,400.0,STOLEN,6920,"{'type': 'Point', 'coordinates': (-79.36304717, 43.66708373)}"
-6927,17113,GO-20181954152,PROPERTY - FOUND,2018-10-23T00:00:00,2018,October,Tuesday,23,296,7,2018-10-23T00:00:00,2018,October,Tuesday,23,296,7,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KHS,URBAN SOUL,RG,0,,,UNKNOWN,6921,"{'type': 'Point', 'coordinates': (-79.37667701, 43.66241871)}"
-6928,17114,GO-20181954152,PROPERTY - FOUND,2018-10-23T00:00:00,2018,October,Tuesday,23,296,7,2018-10-23T00:00:00,2018,October,Tuesday,23,296,7,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,INDIE,RG,0,BLK,1000.0,UNKNOWN,6922,"{'type': 'Point', 'coordinates': (-79.37667701, 43.66241871)}"
-6929,17117,GO-20159002206,THEFT UNDER,2015-04-23T00:00:00,2015,April,Thursday,23,113,16,2015-04-24T00:00:00,2015,April,Friday,24,114,15,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,"NONE, GREEN AND",MT,21,LGR,0.0,STOLEN,6923,"{'type': 'Point', 'coordinates': (-79.3636648, 43.66404625)}"
-6930,17121,GO-20159002439,THEFT UNDER,2015-04-27T00:00:00,2015,April,Monday,27,117,10,2015-05-04T00:00:00,2015,May,Monday,4,124,18,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,RG,18,OTH,0.0,STOLEN,6924,"{'type': 'Point', 'coordinates': (-79.36926699, 43.66399224)}"
-6931,9049,GO-20143096408,THEFT UNDER,2014-10-12T00:00:00,2014,October,Sunday,12,285,13,2014-10-13T00:00:00,2014,October,Monday,13,286,14,D51,Toronto,73,Moss Park (73),"Open Areas (Lakes, Parks, Rivers)",Outside,UNKNOWN,E-BIKE,OT,1,RED,440.0,STOLEN,7013,"{'type': 'Point', 'coordinates': (-79.37008264, 43.656162280000004)}"
-6932,17123,GO-2015759341,THEFT UNDER,2015-05-07T00:00:00,2015,May,Thursday,7,127,0,2015-05-07T00:00:00,2015,May,Thursday,7,127,12,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,EMMO,,EL,0,BLK,2000.0,STOLEN,6925,"{'type': 'Point', 'coordinates': (-79.37489281, 43.66432923)}"
-6933,17129,GO-20159002813,THEFT UNDER,2015-05-10T00:00:00,2015,May,Sunday,10,130,1,2015-05-17T00:00:00,2015,May,Sunday,17,137,11,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,OT,ROAM,TO,21,PLE,750.0,STOLEN,6926,"{'type': 'Point', 'coordinates': (-79.36481189, 43.66919785)}"
-6934,17132,GO-20159003036,THEFT UNDER,2015-05-23T00:00:00,2015,May,Saturday,23,143,20,2015-05-23T00:00:00,2015,May,Saturday,23,143,20,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SENTRY,BM,1,LGR,0.0,STOLEN,6927,"{'type': 'Point', 'coordinates': (-79.36749818, 43.66688218000001)}"
-6935,17139,GO-20151014007,THEFT UNDER,2015-06-11T00:00:00,2015,June,Thursday,11,162,17,2015-06-16T00:00:00,2015,June,Tuesday,16,167,22,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,GT5,EL,1,REDBLK,1500.0,STOLEN,6928,"{'type': 'Point', 'coordinates': (-79.37547981, 43.66574074)}"
-6936,17145,GO-20151142967,THEFT UNDER,2015-07-07T00:00:00,2015,July,Tuesday,7,188,0,2015-07-07T00:00:00,2015,July,Tuesday,7,188,0,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,G50,EL,4,RED,1000.0,STOLEN,6929,"{'type': 'Point', 'coordinates': (-79.36859203, 43.66587501)}"
-6937,17149,GO-20159004444,THEFT UNDER,2015-07-11T00:00:00,2015,July,Saturday,11,192,12,2015-07-11T00:00:00,2015,July,Saturday,11,192,22,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,BIKE SHARE TORO,OT,1,,1200.0,STOLEN,6930,"{'type': 'Point', 'coordinates': (-79.37085094, 43.66451729)}"
-6938,17232,GO-20161047513,THEFT UNDER - BICYCLE,2016-06-15T00:00:00,2016,June,Wednesday,15,167,8,2016-06-16T00:00:00,2016,June,Thursday,16,168,8,D51,Toronto,71,Cabbagetown-South St.James Town (71),Schools During Un-Supervised Activity,Educational,TREK,820,MT,18,GRY,406.0,STOLEN,6931,"{'type': 'Point', 'coordinates': (-79.37170183, 43.66651225)}"
-6939,9458,GO-20159002143,THEFT UNDER,2015-04-14T00:00:00,2015,April,Tuesday,14,104,20,2015-04-21T00:00:00,2015,April,Tuesday,21,111,18,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,UK,,OT,1,,,STOLEN,7030,"{'type': 'Point', 'coordinates': (-79.36066683, 43.65248849)}"
-6940,17235,GO-20169006236,THEFT UNDER,2016-06-14T00:00:00,2016,June,Tuesday,14,166,0,2016-06-23T00:00:00,2016,June,Thursday,23,175,11,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,,RG,1,BLK,750.0,STOLEN,6932,"{'type': 'Point', 'coordinates': (-79.36362419, 43.66846157)}"
-6941,17238,GO-20169006410,THEFT FROM MOTOR VEHICLE UNDER,2016-06-27T00:00:00,2016,June,Monday,27,179,10,2016-06-27T00:00:00,2016,June,Monday,27,179,10,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,MT,16,,100.0,STOLEN,6933,"{'type': 'Point', 'coordinates': (-79.3641184, 43.66609313000001)}"
-6942,17246,GO-20169007076,THEFT UNDER - BICYCLE,2016-07-11T00:00:00,2016,July,Monday,11,193,23,2016-07-12T00:00:00,2016,July,Tuesday,12,194,11,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,DEW DELUX,RG,21,BLK,400.0,STOLEN,6934,"{'type': 'Point', 'coordinates': (-79.36247702, 43.66569194)}"
-6943,17254,GO-20161410168,THEFT UNDER - BICYCLE,2016-08-07T00:00:00,2016,August,Sunday,7,220,10,2016-08-10T00:00:00,2016,August,Wednesday,10,223,15,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NAKAMURA,,MT,1,WHI,200.0,STOLEN,6935,"{'type': 'Point', 'coordinates': (-79.36801682000001, 43.66446336)}"
-6944,17264,GO-20169009805,THEFT UNDER,2016-09-01T00:00:00,2016,September,Thursday,1,245,1,2016-09-01T00:00:00,2016,September,Thursday,1,245,16,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,AXIS 5,RG,16,GRY,900.0,STOLEN,6936,"{'type': 'Point', 'coordinates': (-79.37170183, 43.66651225)}"
-6945,17268,GO-20169010351,THEFT UNDER - BICYCLE,2016-09-10T00:00:00,2016,September,Saturday,10,254,1,2016-09-13T00:00:00,2016,September,Tuesday,13,257,11,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,RG,21,BLK,500.0,RECOVERED,6937,"{'type': 'Point', 'coordinates': (-79.3658853, 43.66722444)}"
-6946,17277,GO-20169011406,THEFT UNDER - BICYCLE,2016-09-28T00:00:00,2016,September,Wednesday,28,272,8,2016-10-01T00:00:00,2016,October,Saturday,1,275,14,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,7,WHI,350.0,STOLEN,6938,"{'type': 'Point', 'coordinates': (-79.36801682000001, 43.66446336)}"
-6947,17306,GO-2017667768,ROBBERY - OTHER,2017-04-15T00:00:00,2017,April,Saturday,15,105,21,2017-04-16T00:00:00,2017,April,Sunday,16,106,8,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KONA,JAKE THE SNAKE,RC,1,BLK,,STOLEN,6939,"{'type': 'Point', 'coordinates': (-79.37302171, 43.66318983)}"
-6948,17420,GO-20141404003,THEFT UNDER,2014-01-05T00:00:00,2014,January,Sunday,5,5,12,2014-01-24T00:00:00,2014,January,Friday,24,24,18,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,XINGYUE,TDR295,SC,1,BLK,1800.0,STOLEN,6940,"{'type': 'Point', 'coordinates': (-79.37785611, 43.66521591)}"
-6949,17425,GO-20141828757,THEFT UNDER,2014-04-04T00:00:00,2014,April,Friday,4,94,6,2014-04-04T00:00:00,2014,April,Friday,4,94,19,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,SC,2,WHI,1000.0,STOLEN,6941,"{'type': 'Point', 'coordinates': (-79.37085094, 43.66451729)}"
-6950,17437,GO-20142304450,THEFT UNDER,2014-06-13T00:00:00,2014,June,Friday,13,164,18,2014-06-16T00:00:00,2014,June,Monday,16,167,19,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,GT5,EL,0,BLK,500.0,UNKNOWN,6942,"{'type': 'Point', 'coordinates': (-79.361458, 43.66315822)}"
-6951,17439,GO-20149004180,THEFT UNDER,2014-06-16T00:00:00,2014,June,Monday,16,167,18,2014-06-17T00:00:00,2014,June,Tuesday,17,168,17,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,VERVE 2 HYBRID,RG,21,GRY,683.0,STOLEN,6943,"{'type': 'Point', 'coordinates': (-79.37785611, 43.66521591)}"
-6952,18803,GO-20209024982,THEFT UNDER - BICYCLE,2020-09-28T00:00:00,2020,September,Monday,28,272,8,2020-09-29T00:00:00,2020,September,Tuesday,29,273,18,D51,Toronto,71,Cabbagetown-South St.James Town (71),Schools During Supervised Activity,Educational,NO,YORKVILLE,MT,12,WHI,400.0,STOLEN,6944,"{'type': 'Point', 'coordinates': (-79.3673296, 43.67436858)}"
-6953,18817,GO-20201987921,THEFT UNDER - BICYCLE,2020-10-07T00:00:00,2020,October,Wednesday,7,281,5,2020-10-20T00:00:00,2020,October,Tuesday,20,294,8,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,BRODIE,,TO,8,BLU,800.0,STOLEN,6945,"{'type': 'Point', 'coordinates': (-79.37170183, 43.66651225)}"
-6954,18818,GO-20209027247,THEFT UNDER - BICYCLE,2020-10-05T00:00:00,2020,October,Monday,5,279,17,2020-10-21T00:00:00,2020,October,Wednesday,21,295,17,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,SPORTS HYBRID,OT,21,BLK,580.0,STOLEN,6946,"{'type': 'Point', 'coordinates': (-79.36915141, 43.66726995)}"
-6955,18821,GO-20209029465,THEFT UNDER,2020-11-12T00:00:00,2020,November,Thursday,12,317,19,2020-11-12T00:00:00,2020,November,Thursday,12,317,22,D51,Toronto,71,Cabbagetown-South St.James Town (71),Bar / Restaurant,Commercial,SC,K2 PROFLEX 2000,MT,30,,1300.0,STOLEN,6947,"{'type': 'Point', 'coordinates': (-79.37048033, 43.66372252)}"
-6956,19607,GO-20209030181,THEFT UNDER,2020-11-20T00:00:00,2020,November,Friday,20,325,13,2020-11-20T00:00:00,2020,November,Friday,20,325,20,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KH,KHS URBAN,RG,8,GRY,600.0,STOLEN,6948,"{'type': 'Point', 'coordinates': (-79.36825854, 43.66505739)}"
-6957,19999,GO-20189038561,THEFT UNDER - BICYCLE,2018-11-13T00:00:00,2018,November,Tuesday,13,317,0,2018-11-16T00:00:00,2018,November,Friday,16,320,18,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,,RG,24,RED,800.0,STOLEN,6949,"{'type': 'Point', 'coordinates': (-79.36460631, 43.66598269)}"
-6958,20004,GO-20182315724,B&E,2018-12-18T00:00:00,2018,December,Tuesday,18,352,8,2018-12-18T00:00:00,2018,December,Tuesday,18,352,20,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BROOKLYN,FRANKLIN,RG,7,WHI,850.0,STOLEN,6950,"{'type': 'Point', 'coordinates': (-79.36078708, 43.66464918)}"
-6959,20005,GO-20182315724,B&E,2018-12-18T00:00:00,2018,December,Tuesday,18,352,8,2018-12-18T00:00:00,2018,December,Tuesday,18,352,20,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,ROAM,RG,24,BLK,750.0,STOLEN,6951,"{'type': 'Point', 'coordinates': (-79.36078708, 43.66464918)}"
-6960,20006,GO-20182315724,B&E,2018-12-18T00:00:00,2018,December,Tuesday,18,352,8,2018-12-18T00:00:00,2018,December,Tuesday,18,352,20,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CAMBER,FSR 29,MT,24,BLK,2550.0,STOLEN,6952,"{'type': 'Point', 'coordinates': (-79.36078708, 43.66464918)}"
-6961,6574,GO-20209017221,THEFT UNDER,2020-07-08T00:00:00,2020,July,Wednesday,8,190,18,2020-07-10T00:00:00,2020,July,Friday,10,192,2,D51,Toronto,73,Moss Park (73),Universities / Colleges,Educational,CC,,RG,15,DGR,50.0,STOLEN,7147,"{'type': 'Point', 'coordinates': (-79.37065383, 43.65073186)}"
-6962,20008,GO-20199000817,THEFT UNDER - BICYCLE,2019-01-05T00:00:00,2019,January,Saturday,5,5,9,2019-01-08T00:00:00,2019,January,Tuesday,8,8,9,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,GIANT ESCAPE,RG,21,BLK,600.0,STOLEN,6953,"{'type': 'Point', 'coordinates': (-79.36558916, 43.6665295)}"
-6963,20010,GO-20199001689,THEFT UNDER - BICYCLE,2018-12-02T00:00:00,2018,December,Sunday,2,336,10,2019-01-14T00:00:00,2019,January,Monday,14,14,11,D51,Toronto,71,Cabbagetown-South St.James Town (71),Retirement Home,Other,OT,,OT,18,BRN,400.0,STOLEN,6954,"{'type': 'Point', 'coordinates': (-79.36247702, 43.66569194)}"
-6964,20019,GO-20199010525,THEFT UNDER,2019-03-27T00:00:00,2019,March,Wednesday,27,86,23,2019-04-03T00:00:00,2019,April,Wednesday,3,93,16,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,OT,EASY RIDE,RG,1,TRQ,178.0,STOLEN,6955,"{'type': 'Point', 'coordinates': (-79.37785611, 43.66521591)}"
-6965,20026,GO-20199014196,THEFT UNDER,2019-05-04T00:00:00,2019,May,Saturday,4,124,19,2019-05-07T00:00:00,2019,May,Tuesday,7,127,12,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,CA,14 QUICK WM237,RG,21,BLK,1200.0,STOLEN,6956,"{'type': 'Point', 'coordinates': (-79.37785611, 43.66521591)}"
-6966,20031,GO-20199016207,B&E,2019-05-17T00:00:00,2019,May,Friday,17,137,11,2019-05-24T00:00:00,2019,May,Friday,24,144,17,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,05 YORKVILLE,RG,24,GRY,426.0,STOLEN,6957,"{'type': 'Point', 'coordinates': (-79.36078708, 43.66464918)}"
-6967,20038,GO-20199018854,THEFT UNDER,2019-06-15T00:00:00,2019,June,Saturday,15,166,1,2019-06-16T00:00:00,2019,June,Sunday,16,167,19,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,UK,MOUNTAIN,MT,10,BLU,250.0,STOLEN,6958,"{'type': 'Point', 'coordinates': (-79.37373773, 43.66729501)}"
-6968,20049,GO-20191243040,PROPERTY - FOUND,2019-06-27T00:00:00,2019,June,Thursday,27,178,0,2019-07-04T00:00:00,2019,July,Thursday,4,185,11,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NAKAMURA,JUNY,RG,1,GRN,,UNKNOWN,6959,"{'type': 'Point', 'coordinates': (-79.36615925, 43.6679329)}"
-6969,5638,GO-20199036319,THEFT UNDER,2019-11-03T00:00:00,2019,November,Sunday,3,307,14,2019-11-03T00:00:00,2019,November,Sunday,3,307,18,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,BMX,BM,35,BLK,1350.0,STOLEN,7111,"{'type': 'Point', 'coordinates': (-79.37065383, 43.65073186)}"
-6970,20182,GO-20179007960,THEFT UNDER,2017-06-09T00:00:00,2017,June,Friday,9,160,17,2017-06-12T00:00:00,2017,June,Monday,12,163,12,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,21,GRN,900.0,STOLEN,6960,"{'type': 'Point', 'coordinates': (-79.37085094, 43.66451729)}"
-6971,20183,GO-20171044624,THEFT UNDER,2017-06-12T00:00:00,2017,June,Monday,12,163,1,2017-06-12T00:00:00,2017,June,Monday,12,163,13,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,EL,1,GRY,,STOLEN,6961,"{'type': 'Point', 'coordinates': (-79.37085094, 43.66451729)}"
-6972,20198,GO-20179009598,THEFT UNDER - BICYCLE,2017-07-03T00:00:00,2017,July,Monday,3,184,22,2017-07-06T00:00:00,2017,July,Thursday,6,187,13,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SP,,RC,5,,400.0,STOLEN,6962,"{'type': 'Point', 'coordinates': (-79.37430926, 43.66291642)}"
-6973,20215,GO-20179011820,THEFT UNDER,2017-08-06T00:00:00,2017,August,Sunday,6,218,19,2017-08-06T00:00:00,2017,August,Sunday,6,218,23,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,OT,,TO,1,BLK,350.0,STOLEN,6963,"{'type': 'Point', 'coordinates': (-79.37581268, 43.66648596000001)}"
-6974,20227,GO-20179012794,THEFT UNDER - BICYCLE,2017-08-15T00:00:00,2017,August,Tuesday,15,227,21,2017-08-19T00:00:00,2017,August,Saturday,19,231,0,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SILVERSTONE,RC,46,BLK,1605.0,STOLEN,6964,"{'type': 'Point', 'coordinates': (-79.37373773, 43.66729501)}"
-6975,20241,GO-20179015380,THEFT UNDER - BICYCLE,2017-09-20T00:00:00,2017,September,Wednesday,20,263,22,2017-09-21T00:00:00,2017,September,Thursday,21,264,14,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,18,,100.0,STOLEN,6965,"{'type': 'Point', 'coordinates': (-79.37717453, 43.66359899)}"
-6976,20247,GO-20179016005,THEFT UNDER,2017-09-28T00:00:00,2017,September,Thursday,28,271,1,2017-09-28T00:00:00,2017,September,Thursday,28,271,10,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KO,ROVE - AL,TO,16,BLK,1080.0,STOLEN,6966,"{'type': 'Point', 'coordinates': (-79.3602871, 43.66342614)}"
-6977,8689,GO-20149006081,THEFT UNDER,2014-08-08T00:00:00,2014,August,Friday,8,220,16,2014-08-19T00:00:00,2014,August,Tuesday,19,231,12,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RM,XC 30,MT,20,RED,2500.0,STOLEN,7003,"{'type': 'Point', 'coordinates': (-79.37156529, 43.652817240000005)}"
-6978,20249,GO-20179016387,THEFT UNDER - BICYCLE,2017-10-03T00:00:00,2017,October,Tuesday,3,276,14,2017-10-03T00:00:00,2017,October,Tuesday,3,276,15,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,FIRE MOUNTAIN,MT,21,ONG,1000.0,STOLEN,6967,"{'type': 'Point', 'coordinates': (-79.36750361, 43.66320621)}"
-6979,20259,GO-20179017333,THEFT UNDER,2017-10-15T00:00:00,2017,October,Sunday,15,288,21,2017-10-16T00:00:00,2017,October,Monday,16,289,15,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,FJ,,RC,1,BLK,450.0,STOLEN,6968,"{'type': 'Point', 'coordinates': (-79.36859203, 43.66587501)}"
-6980,20273,GO-20179019454,THEFT UNDER - BICYCLE,2017-11-11T00:00:00,2017,November,Saturday,11,315,18,2017-11-12T00:00:00,2017,November,Sunday,12,316,22,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,JEKYLL 400,MT,27,BLU,1500.0,STOLEN,6969,"{'type': 'Point', 'coordinates': (-79.3721682, 43.66763473)}"
-6981,20280,GO-20179021247,THEFT UNDER - BICYCLE,2017-12-03T00:00:00,2017,December,Sunday,3,337,13,2017-12-04T00:00:00,2017,December,Monday,4,338,22,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,7,,0.0,STOLEN,6970,"{'type': 'Point', 'coordinates': (-79.37212433, 43.6633875)}"
-6982,20324,GO-20189020635,THEFT UNDER - BICYCLE,2018-06-27T00:00:00,2018,June,Wednesday,27,178,21,2018-06-28T00:00:00,2018,June,Thursday,28,179,19,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,REVEL 0 (2012),MT,8,BLK,700.0,STOLEN,6971,"{'type': 'Point', 'coordinates': (-79.37430926, 43.66291642)}"
-6983,20327,GO-20189021862,THEFT UNDER - BICYCLE,2018-07-07T00:00:00,2018,July,Saturday,7,188,11,2018-07-10T00:00:00,2018,July,Tuesday,10,191,14,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RG,18,GRY,1250.0,STOLEN,6972,"{'type': 'Point', 'coordinates': (-79.37667701, 43.66241871)}"
-6984,20328,GO-20189021947,THEFT UNDER - BICYCLE,2018-07-10T00:00:00,2018,July,Tuesday,10,191,13,2018-07-10T00:00:00,2018,July,Tuesday,10,191,18,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RM,SOLO CX 2009,RC,21,WHI,1300.0,STOLEN,6973,"{'type': 'Point', 'coordinates': (-79.37373773, 43.66729501)}"
-6985,20330,GO-20189022149,THEFT UNDER - BICYCLE,2018-07-10T00:00:00,2018,July,Tuesday,10,191,17,2018-07-12T00:00:00,2018,July,Thursday,12,193,13,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,NO,SPADE,RG,1,WHI,0.0,STOLEN,6974,"{'type': 'Point', 'coordinates': (-79.37717453, 43.66359899)}"
-6986,20341,GO-20181399614,B&E,2018-07-29T00:00:00,2018,July,Sunday,29,210,22,2018-07-31T00:00:00,2018,July,Tuesday,31,212,10,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,,RG,8,BGE,800.0,STOLEN,6975,"{'type': 'Point', 'coordinates': (-79.36304717, 43.66708373)}"
-6987,20343,GO-20189025666,THEFT UNDER - BICYCLE,2018-08-02T00:00:00,2018,August,Thursday,2,214,0,2018-08-09T00:00:00,2018,August,Thursday,9,221,10,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,18,CPR,700.0,STOLEN,6976,"{'type': 'Point', 'coordinates': (-79.3677947, 43.66755905)}"
-6988,20344,GO-20189026016,THEFT UNDER - BICYCLE,2018-08-11T00:00:00,2018,August,Saturday,11,223,19,2018-08-11T00:00:00,2018,August,Saturday,11,223,19,D51,Toronto,71,Cabbagetown-South St.James Town (71),Unknown,Other,OT,,OT,30,BLK,450.0,STOLEN,6977,"{'type': 'Point', 'coordinates': (-79.37581268, 43.66648596000001)}"
-6989,20351,GO-20181509696,THEFT UNDER - BICYCLE,2018-08-15T00:00:00,2018,August,Wednesday,15,227,21,2018-08-16T00:00:00,2018,August,Thursday,16,228,8,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,,OT,12,REDBLK,900.0,STOLEN,6978,"{'type': 'Point', 'coordinates': (-79.36078708, 43.66464918)}"
-6990,20352,GO-20181509696,THEFT UNDER - BICYCLE,2018-08-15T00:00:00,2018,August,Wednesday,15,227,21,2018-08-16T00:00:00,2018,August,Thursday,16,228,8,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,,RG,12,BLU,500.0,STOLEN,6979,"{'type': 'Point', 'coordinates': (-79.36078708, 43.66464918)}"
-6991,20353,GO-20181509696,THEFT UNDER - BICYCLE,2018-08-15T00:00:00,2018,August,Wednesday,15,227,21,2018-08-16T00:00:00,2018,August,Thursday,16,228,8,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,,RC,6,BLK,400.0,STOLEN,6980,"{'type': 'Point', 'coordinates': (-79.36078708, 43.66464918)}"
-6992,20399,GO-20151097029,THEFT UNDER,2015-06-29T00:00:00,2015,June,Monday,29,180,10,2015-06-29T00:00:00,2015,June,Monday,29,180,21,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,UNKNOWN,FO,0,LGR,,STOLEN,6981,"{'type': 'Point', 'coordinates': (-79.37489281, 43.66432923)}"
-6993,20405,GO-20159004440,THEFT UNDER,2015-07-11T00:00:00,2015,July,Saturday,11,192,12,2015-07-11T00:00:00,2015,July,Saturday,11,192,22,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,OT,10,BLK,1200.0,STOLEN,6982,"{'type': 'Point', 'coordinates': (-79.37085094, 43.66451729)}"
-6994,20445,GO-20151755955,THEFT UNDER,2015-10-11T00:00:00,2015,October,Sunday,11,284,16,2015-10-12T00:00:00,2015,October,Monday,12,285,9,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,EL,1,BLKONG,500.0,STOLEN,6983,"{'type': 'Point', 'coordinates': (-79.36794156, 43.66428583)}"
-6995,20446,GO-20159008468,THEFT UNDER,2015-10-12T00:00:00,2015,October,Monday,12,285,18,2015-10-12T00:00:00,2015,October,Monday,12,285,21,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,GI,DASH 3,RG,27,WHI,1000.0,STOLEN,6984,"{'type': 'Point', 'coordinates': (-79.37547981, 43.66574074)}"
-6996,20447,GO-20159008553,THEFT UNDER,2015-10-15T00:00:00,2015,October,Thursday,15,288,1,2015-10-15T00:00:00,2015,October,Thursday,15,288,9,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RG,21,BLK,200.0,STOLEN,6985,"{'type': 'Point', 'coordinates': (-79.37717453, 43.66359899)}"
-6997,20462,GO-20152006596,THEFT UNDER,2015-11-22T00:00:00,2015,November,Sunday,22,326,16,2015-11-22T00:00:00,2015,November,Sunday,22,326,22,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,HARDROCK,MT,24,DBLDGR,1200.0,STOLEN,6986,"{'type': 'Point', 'coordinates': (-79.37302171, 43.66318983)}"
-6998,20467,GO-20169000242,THEFT UNDER,2016-01-07T00:00:00,2016,January,Thursday,7,7,8,2016-01-07T00:00:00,2016,January,Thursday,7,7,18,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,,MT,7,GRY,520.0,STOLEN,6987,"{'type': 'Point', 'coordinates': (-79.37717453, 43.66359899)}"
-6999,9043,GO-20149007527,THEFT UNDER,2014-10-06T00:00:00,2014,October,Monday,6,279,8,2014-10-11T00:00:00,2014,October,Saturday,11,284,8,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,AR5,RC,10,BLK,,STOLEN,7012,"{'type': 'Point', 'coordinates': (-79.36859808, 43.65214811)}"
-7000,20468,GO-20169000582,THEFT UNDER,2016-01-15T00:00:00,2016,January,Friday,15,15,20,2016-01-17T00:00:00,2016,January,Sunday,17,17,14,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MA,HYBRID STEP THR,RG,21,BLK,400.0,STOLEN,6988,"{'type': 'Point', 'coordinates': (-79.36749818, 43.66688218000001)}"
-7001,20474,GO-20169001535,THEFT UNDER,2015-01-18T00:00:00,2015,January,Sunday,18,18,11,2016-02-18T00:00:00,2016,February,Thursday,18,49,21,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,FO,15,BLK,450.0,STOLEN,6989,"{'type': 'Point', 'coordinates': (-79.36615925, 43.6679329)}"
-7002,20534,GO-20161635284,THEFT UNDER - BICYCLE,2016-09-14T00:00:00,2016,September,Wednesday,14,258,8,2016-09-14T00:00:00,2016,September,Wednesday,14,258,14,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,KHS,URDAN XPRESS,OT,24,BLKPLE,800.0,RECOVERED,6990,"{'type': 'Point', 'coordinates': (-79.37717453, 43.66359899)}"
-7003,20537,GO-20169010936,B&E,2016-09-15T00:00:00,2016,September,Thursday,15,259,18,2016-09-22T00:00:00,2016,September,Thursday,22,266,22,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,OT,QUANTUM,MT,24,SIL,500.0,STOLEN,6991,"{'type': 'Point', 'coordinates': (-79.37430926, 43.66291642)}"
-7004,20553,GO-20169013435,B&E,2016-11-13T00:00:00,2016,November,Sunday,13,318,17,2016-11-15T00:00:00,2016,November,Tuesday,15,320,11,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,SU,,RG,1,BLU,150.0,STOLEN,6992,"{'type': 'Point', 'coordinates': (-79.37489281, 43.66432923)}"
-7005,20627,GO-20191600919,B&E,2019-08-20T00:00:00,2019,August,Tuesday,20,232,23,2019-08-22T00:00:00,2019,August,Thursday,22,234,15,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,JAMIS,,RG,21,BLU,700.0,STOLEN,6993,"{'type': 'Point', 'coordinates': (-79.36615925, 43.6679329)}"
-7006,20638,GO-20199029544,THEFT UNDER,2019-09-10T00:00:00,2019,September,Tuesday,10,253,20,2019-09-11T00:00:00,2019,September,Wednesday,11,254,8,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,2018 DEW PLUS,RG,27,TRQ,800.0,STOLEN,6994,"{'type': 'Point', 'coordinates': (-79.36460631, 43.66598269)}"
-7007,20643,GO-20199030135,THEFT UNDER,2019-09-11T00:00:00,2019,September,Wednesday,11,254,8,2019-09-15T00:00:00,2019,September,Sunday,15,258,21,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KO,18 COCO LG,RG,9,YEL,1250.0,STOLEN,6995,"{'type': 'Point', 'coordinates': (-79.3721682, 43.66763473)}"
-7008,20644,GO-20199030319,THEFT UNDER,2019-09-17T00:00:00,2019,September,Tuesday,17,260,0,2019-09-17T00:00:00,2019,September,Tuesday,17,260,9,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,RG,21,WHI,700.0,STOLEN,6996,"{'type': 'Point', 'coordinates': (-79.36354306, 43.66948205)}"
-7009,20665,GO-20199035104,THEFT UNDER,2019-07-01T00:00:00,2019,July,Monday,1,182,0,2019-10-24T00:00:00,2019,October,Thursday,24,297,17,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,YORKVILLE,MT,7,BLK,379.0,STOLEN,6997,"{'type': 'Point', 'coordinates': (-79.36362419, 43.66846157)}"
-7010,20690,GO-202086324,THEFT UNDER,2019-01-13T00:00:00,2019,January,Sunday,13,13,5,2020-01-13T00:00:00,2020,January,Monday,13,13,15,D51,Toronto,71,Cabbagetown-South St.James Town (71),"Apartment (Rooming House, Condo)",Apartment,MEC,1971,TO,21,MRN,1400.0,STOLEN,6998,"{'type': 'Point', 'coordinates': (-79.37170183, 43.66651225)}"
-7011,8521,GO-20149005361,THEFT UNDER,2014-07-25T00:00:00,2014,July,Friday,25,206,22,2014-07-26T00:00:00,2014,July,Saturday,26,207,12,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CR,,RG,6,GRY,,STOLEN,6999,"{'type': 'Point', 'coordinates': (-79.3679435, 43.65898317)}"
-7012,8562,GO-20149005527,THEFT UNDER,2014-07-31T00:00:00,2014,July,Thursday,31,212,21,2014-08-01T00:00:00,2014,August,Friday,1,213,0,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,FULL TILT,MT,21,GRY,600.0,STOLEN,7000,"{'type': 'Point', 'coordinates': (-79.36665279, 43.65068091)}"
-7013,8621,GO-20149005735,THEFT UNDER,2014-08-07T00:00:00,2014,August,Thursday,7,219,11,2014-08-08T00:00:00,2014,August,Friday,8,220,15,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KH,URBAN SOUL,OT,1,BLK,500.0,STOLEN,7001,"{'type': 'Point', 'coordinates': (-79.3627004, 43.65156829000001)}"
-7014,8672,GO-20149005987,THEFT UNDER,2014-08-14T00:00:00,2014,August,Thursday,14,226,23,2014-08-15T00:00:00,2014,August,Friday,15,227,14,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,RG,1,BLK,450.0,STOLEN,7002,"{'type': 'Point', 'coordinates': (-79.37203827, 43.65395725)}"
-7015,8716,GO-20149006188,THEFT UNDER,2014-08-20T00:00:00,2014,August,Wednesday,20,232,15,2014-08-21T00:00:00,2014,August,Thursday,21,233,19,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,KINITIC,MT,6,RED,0.0,STOLEN,7004,"{'type': 'Point', 'coordinates': (-79.37008264, 43.656162280000004)}"
-7016,8764,GO-20149006372,THEFT UNDER,2014-08-11T00:00:00,2014,August,Monday,11,223,14,2014-08-27T00:00:00,2014,August,Wednesday,27,239,20,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,SU,,MT,18,,,STOLEN,7005,"{'type': 'Point', 'coordinates': (-79.37008264, 43.656162280000004)}"
-7017,8865,GO-20149006769,THEFT UNDER,2014-09-10T00:00:00,2014,September,Wednesday,10,253,9,2014-09-10T00:00:00,2014,September,Wednesday,10,253,16,D51,Toronto,73,Moss Park (73),Universities / Colleges,Educational,IH,,OT,7,DBL,500.0,STOLEN,7006,"{'type': 'Point', 'coordinates': (-79.37065383, 43.65073186)}"
-7018,8916,GO-20149007001,THEFT UNDER,2014-09-17T00:00:00,2014,September,Wednesday,17,260,18,2014-09-18T00:00:00,2014,September,Thursday,18,261,9,D51,Toronto,73,Moss Park (73),Universities / Colleges,Educational,OT,RESPONSE,MT,21,BLK,378.0,STOLEN,7007,"{'type': 'Point', 'coordinates': (-79.36981519, 43.65189242)}"
-7019,9014,GO-20143035054,THEFT UNDER,2014-10-02T00:00:00,2014,October,Thursday,2,275,22,2014-10-03T00:00:00,2014,October,Friday,3,276,14,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,FUEL 8,MT,0,GRYRED,3200.0,STOLEN,7008,"{'type': 'Point', 'coordinates': (-79.35837569, 43.65558195)}"
-7020,9016,GO-20149007389,THEFT UNDER,2014-10-02T00:00:00,2014,October,Thursday,2,275,22,2014-10-03T00:00:00,2014,October,Friday,3,276,21,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,SUPERA,RC,21,RED,250.0,STOLEN,7009,"{'type': 'Point', 'coordinates': (-79.3687877, 43.65699417)}"
-7021,9026,GO-20143055341,THEFT UNDER,2014-09-27T00:00:00,2014,September,Saturday,27,270,15,2014-10-06T00:00:00,2014,October,Monday,6,279,18,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,,OT,18,BLK,1100.0,STOLEN,7010,"{'type': 'Point', 'coordinates': (-79.35837569, 43.65558195)}"
-7022,9033,GO-20143060982,THEFT UNDER,2014-10-07T00:00:00,2014,October,Tuesday,7,280,13,2014-10-07T00:00:00,2014,October,Tuesday,7,280,16,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,SEEK 2,MT,18,GRN,1000.0,STOLEN,7011,"{'type': 'Point', 'coordinates': (-79.36701066, 43.65154726)}"
-7023,9091,GO-20143134483,B&E,2014-10-18T00:00:00,2014,October,Saturday,18,291,14,2014-10-19T00:00:00,2014,October,Sunday,19,292,13,D51,Toronto,73,Moss Park (73),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UNKNOWN,,RG,0,,,STOLEN,7014,"{'type': 'Point', 'coordinates': (-79.37008264, 43.656162280000004)}"
-7024,9092,GO-20143134483,B&E,2014-10-18T00:00:00,2014,October,Saturday,18,291,14,2014-10-19T00:00:00,2014,October,Sunday,19,292,13,D51,Toronto,73,Moss Park (73),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UNKNOWN,,RG,0,,,STOLEN,7015,"{'type': 'Point', 'coordinates': (-79.37008264, 43.656162280000004)}"
-7025,9107,GO-20149007791,THEFT UNDER,2014-10-23T00:00:00,2014,October,Thursday,23,296,11,2014-10-24T00:00:00,2014,October,Friday,24,297,9,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,KO,KAHUNA,MT,27,DBL,1500.0,STOLEN,7016,"{'type': 'Point', 'coordinates': (-79.3687877, 43.65699417)}"
-7026,9120,GO-20149007842,THEFT UNDER,2014-10-23T00:00:00,2014,October,Thursday,23,296,12,2014-10-27T00:00:00,2014,October,Monday,27,300,16,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,KO,KAHUNA,MT,27,DBL,1500.0,STOLEN,7017,"{'type': 'Point', 'coordinates': (-79.3687877, 43.65699417)}"
-7027,9170,GO-20143282179,THEFT UNDER,2014-11-11T00:00:00,2014,November,Tuesday,11,315,14,2014-11-11T00:00:00,2014,November,Tuesday,11,315,14,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,FARRAGO,RG,21,BLK,,RECOVERED,7018,"{'type': 'Point', 'coordinates': (-79.36924, 43.65389302)}"
-7028,9207,GO-20149008462,THEFT UNDER,2014-11-29T00:00:00,2014,November,Saturday,29,333,13,2014-11-30T00:00:00,2014,November,Sunday,30,334,21,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,KO,FOUR DELUXE,MT,21,BLU,1500.0,STOLEN,7019,"{'type': 'Point', 'coordinates': (-79.37103886, 43.65160431)}"
-7029,9225,GO-20149008684,THEFT UNDER,2014-12-10T00:00:00,2014,December,Wednesday,10,344,17,2014-12-11T00:00:00,2014,December,Thursday,11,345,11,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,TRANCE 3,MT,21,GRY,2000.0,STOLEN,7020,"{'type': 'Point', 'coordinates': (-79.36561747, 43.65679343)}"
-7030,9234,GO-20149008804,THEFT UNDER,2014-12-16T00:00:00,2014,December,Tuesday,16,350,18,2014-12-17T00:00:00,2014,December,Wednesday,17,351,11,D51,Toronto,73,Moss Park (73),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,KH,,RG,7,SIL,800.0,STOLEN,7021,"{'type': 'Point', 'coordinates': (-79.37219606, 43.66122668)}"
-7031,9235,GO-20179003637,THEFT UNDER,2017-03-20T00:00:00,2017,March,Monday,20,79,23,2017-03-22T00:00:00,2017,March,Wednesday,22,81,19,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,EVERYDAY,OT,7,BLK,300.0,STOLEN,7022,"{'type': 'Point', 'coordinates': (-79.37219606, 43.66122668)}"
-7032,9288,GO-2015233526,THEFT UNDER,2015-02-04T00:00:00,2015,February,Wednesday,4,35,10,2015-02-04T00:00:00,2015,February,Wednesday,4,35,20,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OTHER,,EL,0,RED,1695.0,STOLEN,7023,"{'type': 'Point', 'coordinates': (-79.37008264, 43.656162280000004)}"
-7033,9310,GO-20159001114,THEFT UNDER,2015-03-05T00:00:00,2015,March,Thursday,5,64,21,2015-03-06T00:00:00,2015,March,Friday,6,65,11,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RA,3-SPEED,RG,3,DGR,600.0,STOLEN,7024,"{'type': 'Point', 'coordinates': (-79.36118094, 43.653894820000005)}"
-7034,9388,GO-2015593110,THEFT UNDER,2015-04-09T00:00:00,2015,April,Thursday,9,99,15,2015-04-10T00:00:00,2015,April,Friday,10,100,15,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,5TH DISTRICT,RG,1,ONG,800.0,STOLEN,7025,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7035,17317,GO-2017834023,FIRE - DETERMINED,2017-05-12T00:00:00,2017,May,Friday,12,132,3,2017-05-12T00:00:00,2017,May,Friday,12,132,3,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,RALEIGH,,MT,10,BLKSIL,,STOLEN,7026,"{'type': 'Point', 'coordinates': (-79.36095013, 43.65403384)}"
-7036,9427,GO-2015642856,THEFT UNDER,2015-04-17T00:00:00,2015,April,Friday,17,107,22,2015-04-18T00:00:00,2015,April,Saturday,18,108,16,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,7.1FX,RG,0,BLK,60.0,STOLEN,7027,"{'type': 'Point', 'coordinates': (-79.3723499, 43.65817021)}"
-7037,9452,GO-2015664919,B&E,2015-04-22T00:00:00,2015,April,Wednesday,22,112,10,2015-04-22T00:00:00,2015,April,Wednesday,22,112,10,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KONA,NONE,MT,12,BLU,800.0,STOLEN,7028,"{'type': 'Point', 'coordinates': (-79.36852769, 43.65887073)}"
-7038,9453,GO-2015664919,B&E,2015-04-22T00:00:00,2015,April,Wednesday,22,112,10,2015-04-22T00:00:00,2015,April,Wednesday,22,112,10,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KONA,NONE,MT,12,MRN,800.0,STOLEN,7029,"{'type': 'Point', 'coordinates': (-79.36852769, 43.65887073)}"
-7039,9472,GO-2015684918,THEFT FROM MOTOR VEHICLE OVER,2015-04-25T00:00:00,2015,April,Saturday,25,115,9,2015-04-25T00:00:00,2015,April,Saturday,25,115,14,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,AMIRA PRO,RC,20,REDWHI,6700.0,STOLEN,7031,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7040,9475,GO-20159002260,THEFT UNDER,2015-04-21T00:00:00,2015,April,Tuesday,21,111,17,2015-04-26T00:00:00,2015,April,Sunday,26,116,8,D51,Toronto,73,Moss Park (73),Bar / Restaurant,Commercial,KO,HONKY INC,RG,20,DGR,1500.0,STOLEN,7032,"{'type': 'Point', 'coordinates': (-79.36926699, 43.66399224)}"
-7041,9496,GO-20159002354,THEFT UNDER,2015-04-28T00:00:00,2015,April,Tuesday,28,118,4,2015-04-30T00:00:00,2015,April,Thursday,30,120,11,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,SC,?,MT,18,BLU,699.0,STOLEN,7033,"{'type': 'Point', 'coordinates': (-79.37156529, 43.652817240000005)}"
-7042,9503,GO-20159002375,THEFT UNDER,2015-05-01T00:00:00,2015,May,Friday,1,121,16,2015-05-01T00:00:00,2015,May,Friday,1,121,17,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,DAISY 3I,RG,3,YEL,500.0,STOLEN,7034,"{'type': 'Point', 'coordinates': (-79.36731187, 43.65912273)}"
-7043,9668,GO-20159003143,THEFT UNDER,2015-05-27T00:00:00,2015,May,Wednesday,27,147,12,2015-05-27T00:00:00,2015,May,Wednesday,27,147,16,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,AGRESSOR,MT,6,WHI,399.0,STOLEN,7035,"{'type': 'Point', 'coordinates': (-79.36755676, 43.65636789)}"
-7044,9671,GO-2015882542,THEFT UNDER,2015-05-22T00:00:00,2015,May,Friday,22,142,23,2015-05-27T00:00:00,2015,May,Wednesday,27,147,7,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,,MT,21,RED,100.0,STOLEN,7036,"{'type': 'Point', 'coordinates': (-79.37066212, 43.66156417)}"
-7045,9672,GO-2015882542,THEFT UNDER,2015-05-22T00:00:00,2015,May,Friday,22,142,23,2015-05-27T00:00:00,2015,May,Wednesday,27,147,7,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,4300,MT,21,SILBLK,800.0,STOLEN,7037,"{'type': 'Point', 'coordinates': (-79.37066212, 43.66156417)}"
-7046,9677,GO-2015891343,THEFT UNDER,2015-05-27T00:00:00,2015,May,Wednesday,27,147,17,2015-05-28T00:00:00,2015,May,Thursday,28,148,14,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,EMMO,TITON,EL,1,BLK,2000.0,STOLEN,7038,"{'type': 'Point', 'coordinates': (-79.3687877, 43.65699417)}"
-7047,9696,GO-2015914867,B&E W'INTENT,2015-04-27T00:00:00,2015,April,Monday,27,117,23,2015-06-01T00:00:00,2015,June,Monday,1,152,10,D51,Toronto,73,Moss Park (73),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OTHER,KESTREL TALON,TO,21,BLKRED,2000.0,STOLEN,7039,"{'type': 'Point', 'coordinates': (-79.37142509, 43.64944981)}"
-7048,9715,GO-2015934272,THEFT UNDER,2015-06-04T00:00:00,2015,June,Thursday,4,155,10,2015-06-04T00:00:00,2015,June,Thursday,4,155,10,D51,Toronto,73,Moss Park (73),"Open Areas (Lakes, Parks, Rivers)",Outside,CCM,,MT,10,RED,,STOLEN,7040,"{'type': 'Point', 'coordinates': (-79.3627004, 43.65156829000001)}"
-7049,9785,GO-2015897862,PROPERTY - LOST,2015-05-29T00:00:00,2015,May,Friday,29,149,14,2015-06-12T00:00:00,2015,June,Friday,12,163,23,D51,Toronto,73,Moss Park (73),"Open Areas (Lakes, Parks, Rivers)",Outside,OTHER,EBIKE,EL,30,BLK,,UNKNOWN,7041,"{'type': 'Point', 'coordinates': (-79.3627004, 43.65156829000001)}"
-7050,9810,GO-20159003648,THEFT UNDER,2015-06-15T00:00:00,2015,June,Monday,15,166,18,2015-06-15T00:00:00,2015,June,Monday,15,166,20,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,NO,KATMANDU,MT,21,YEL,500.0,STOLEN,7042,"{'type': 'Point', 'coordinates': (-79.36738106, 43.65241212)}"
-7051,9829,GO-20151018806,THEFT UNDER,2015-06-17T00:00:00,2015,June,Wednesday,17,168,13,2015-06-17T00:00:00,2015,June,Wednesday,17,168,17,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NORCO,SCRAMBLER,OT,21,BLKWHI,900.0,STOLEN,7043,"{'type': 'Point', 'coordinates': (-79.37203827, 43.65395725)}"
-7052,9928,GO-20159004133,THEFT UNDER,2015-07-03T00:00:00,2015,July,Friday,3,184,7,2015-07-03T00:00:00,2015,July,Friday,3,184,9,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,MASI,OT,1,BLU,800.0,STOLEN,7044,"{'type': 'Point', 'coordinates': (-79.36947164, 43.65865872)}"
-7053,9941,GO-20151133913,THEFT UNDER,2015-07-05T00:00:00,2015,July,Sunday,5,186,15,2015-07-05T00:00:00,2015,July,Sunday,5,186,16,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,,RG,21,WHIBLU,100.0,STOLEN,7045,"{'type': 'Point', 'coordinates': (-79.3714043, 43.65589538)}"
-7054,9948,GO-20151040382,THEFT UNDER,2015-06-20T00:00:00,2015,June,Saturday,20,171,22,2015-06-20T00:00:00,2015,June,Saturday,20,171,23,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,1880M,RG,0,REDBLK,135.0,STOLEN,7046,"{'type': 'Point', 'coordinates': (-79.36941977, 43.65452491)}"
-7055,9966,GO-20151156086,THEFT UNDER,2015-07-04T00:00:00,2015,July,Saturday,4,185,20,2015-07-08T00:00:00,2015,July,Wednesday,8,189,22,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,CROSSTRAIL,OT,24,BLK,800.0,STOLEN,7047,"{'type': 'Point', 'coordinates': (-79.36738106, 43.65241212)}"
-7056,9967,GO-20151156086,THEFT UNDER,2015-07-04T00:00:00,2015,July,Saturday,4,185,20,2015-07-08T00:00:00,2015,July,Wednesday,8,189,22,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,DOLCE,OT,21,BLKBLU,900.0,STOLEN,7048,"{'type': 'Point', 'coordinates': (-79.36738106, 43.65241212)}"
-7057,9973,GO-20151168596,THEFT UNDER,2015-07-10T00:00:00,2015,July,Friday,10,191,7,2015-07-10T00:00:00,2015,July,Friday,10,191,19,D51,Toronto,73,Moss Park (73),Universities / Colleges,Educational,ROCKY MOUNTAIN,FUSION,MT,18,SIL,900.0,STOLEN,7049,"{'type': 'Point', 'coordinates': (-79.37065383, 43.65073186)}"
-7058,10000,GO-20159004495,THEFT UNDER,2015-07-10T00:00:00,2015,July,Friday,10,191,12,2015-07-13T00:00:00,2015,July,Monday,13,194,12,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,RA,,RG,8,SIL,0.0,STOLEN,7050,"{'type': 'Point', 'coordinates': (-79.3687877, 43.65699417)}"
-7059,10007,GO-20151188719,THEFT UNDER,2015-07-12T00:00:00,2015,July,Sunday,12,193,18,2015-07-13T00:00:00,2015,July,Monday,13,194,19,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,MENS,MT,10,BLU,,STOLEN,7051,"{'type': 'Point', 'coordinates': (-79.3687877, 43.65699417)}"
-7060,10009,GO-20159004543,THEFT UNDER,2015-07-04T00:00:00,2015,July,Saturday,4,185,1,2015-07-14T00:00:00,2015,July,Tuesday,14,195,12,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FJ,DECLARATION,RG,1,GRY,600.0,STOLEN,7052,"{'type': 'Point', 'coordinates': (-79.37185641, 43.65351071)}"
-7061,10017,GO-20151196256,THEFT UNDER,2015-07-08T00:00:00,2015,July,Wednesday,8,189,22,2015-07-14T00:00:00,2015,July,Tuesday,14,195,20,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,HUFFY,MOUNTAIN,MT,12,BLUSIL,,STOLEN,7053,"{'type': 'Point', 'coordinates': (-79.36947164, 43.65865872)}"
-7062,10059,GO-20159004760,THEFT UNDER,2015-07-18T00:00:00,2015,July,Saturday,18,199,12,2015-07-20T00:00:00,2015,July,Monday,20,201,15,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,GI,GIANT VIA BLUE,RG,50,BLU,550.0,STOLEN,7054,"{'type': 'Point', 'coordinates': (-79.36813583, 43.66211281)}"
-7063,10097,GO-20159004979,THEFT UNDER,2015-07-09T00:00:00,2015,July,Thursday,9,190,15,2015-07-25T00:00:00,2015,July,Saturday,25,206,14,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,PHANTOM 29,MT,21,ONG,250.0,STOLEN,7055,"{'type': 'Point', 'coordinates': (-79.36941977, 43.65452491)}"
-7064,10232,GO-20159005614,THEFT UNDER,2015-08-11T00:00:00,2015,August,Tuesday,11,223,9,2015-08-11T00:00:00,2015,August,Tuesday,11,223,10,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,SC,,RG,10,RED,0.0,STOLEN,7056,"{'type': 'Point', 'coordinates': (-79.37066212, 43.66156417)}"
-7065,10239,GO-20159005629,THEFT UNDER,2015-08-10T00:00:00,2015,August,Monday,10,222,14,2015-08-11T00:00:00,2015,August,Tuesday,11,223,11,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SPECIAL,RC,9,WHI,0.0,STOLEN,7057,"{'type': 'Point', 'coordinates': (-79.36981519, 43.65189242)}"
-7066,10269,GO-20159005840,THEFT UNDER,2015-08-15T00:00:00,2015,August,Saturday,15,227,8,2015-08-15T00:00:00,2015,August,Saturday,15,227,15,D51,Toronto,73,Moss Park (73),Universities / Colleges,Educational,UK,ORMA,MT,21,BLK,400.0,STOLEN,7058,"{'type': 'Point', 'coordinates': (-79.37065383, 43.65073186)}"
-7067,10298,GO-20151413939,THEFT UNDER,2015-08-01T00:00:00,2015,August,Saturday,1,213,12,2015-08-17T00:00:00,2015,August,Monday,17,229,12,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,FO,7,BLK,250.0,STOLEN,7059,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7068,10370,GO-20151494495,THEFT UNDER,2015-08-29T00:00:00,2015,August,Saturday,29,241,16,2015-08-30T00:00:00,2015,August,Sunday,30,242,13,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,MINELLI,SOLOIST,OT,1,BLK,350.0,STOLEN,7060,"{'type': 'Point', 'coordinates': (-79.36738106, 43.65241212)}"
-7069,10372,GO-20159006544,THEFT UNDER,2015-08-29T00:00:00,2015,August,Saturday,29,241,0,2015-08-31T00:00:00,2015,August,Monday,31,243,10,D51,Toronto,73,Moss Park (73),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MA,BRIDGEWAY,RG,6,TAN,620.0,STOLEN,7061,"{'type': 'Point', 'coordinates': (-79.37147803000002, 43.66351279)}"
-7070,10493,GO-20151623638,THEFT UNDER,2015-09-19T00:00:00,2015,September,Saturday,19,262,20,2015-09-20T00:00:00,2015,September,Sunday,20,263,9,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,HUFFY,,MT,20,ONGBLK,500.0,STOLEN,7062,"{'type': 'Point', 'coordinates': (-79.36665279, 43.65068091)}"
-7071,10552,GO-20159007790,THEFT UNDER,2015-09-26T00:00:00,2015,September,Saturday,26,269,8,2015-09-27T00:00:00,2015,September,Sunday,27,270,0,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,JETTI,EL,32,YEL,1250.0,STOLEN,7063,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7072,10558,GO-20159007868,THEFT UNDER,2015-09-27T00:00:00,2015,September,Sunday,27,270,18,2015-09-28T00:00:00,2015,September,Monday,28,271,15,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,HYBRID,RG,21,BLU,500.0,STOLEN,7064,"{'type': 'Point', 'coordinates': (-79.36926699, 43.66399224)}"
-7073,10678,GO-20159008886,THEFT UNDER,2015-10-21T00:00:00,2015,October,Wednesday,21,294,19,2015-10-22T00:00:00,2015,October,Thursday,22,295,14,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,FEATHER,TO,1,DGR,800.0,STOLEN,7065,"{'type': 'Point', 'coordinates': (-79.36571619, 43.65533986)}"
-7074,10689,GO-20151842198,THEFT UNDER,2015-10-26T00:00:00,2015,October,Monday,26,299,11,2015-10-26T00:00:00,2015,October,Monday,26,299,16,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,EL,1,OTH,1500.0,STOLEN,7066,"{'type': 'Point', 'coordinates': (-79.37103886, 43.65160431)}"
-7075,10694,GO-20159009077,THEFT UNDER,2015-10-26T00:00:00,2015,October,Monday,26,299,19,2015-10-27T00:00:00,2015,October,Tuesday,27,300,13,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,,MT,6,RED,130.0,STOLEN,7067,"{'type': 'Point', 'coordinates': (-79.3679435, 43.65898317)}"
-7076,10699,GO-20159009126,THEFT UNDER,2015-09-23T00:00:00,2015,September,Wednesday,23,266,9,2015-10-28T00:00:00,2015,October,Wednesday,28,301,18,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,TRACK,RG,1,BLK,700.0,STOLEN,7068,"{'type': 'Point', 'coordinates': (-79.36474468, 43.65298813)}"
-7077,10715,GO-20159009301,THEFT UNDER,2015-11-02T00:00:00,2015,November,Monday,2,306,8,2015-11-03T00:00:00,2015,November,Tuesday,3,307,12,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,UNO,OT,1,BLK,300.0,STOLEN,7069,"{'type': 'Point', 'coordinates': (-79.36095013, 43.65403384)}"
-7078,10717,GO-20159009337,THEFT UNDER,2015-11-03T00:00:00,2015,November,Tuesday,3,307,9,2015-11-03T00:00:00,2015,November,Tuesday,3,307,19,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KH,,RG,3,BLK,500.0,STOLEN,7070,"{'type': 'Point', 'coordinates': (-79.36701066, 43.65154726)}"
-7079,10730,GO-20151901210,THEFT UNDER,2015-11-03T00:00:00,2015,November,Tuesday,3,307,13,2015-11-05T00:00:00,2015,November,Thursday,5,309,9,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,BUSHWHACKER,MT,21,PLE,300.0,STOLEN,7071,"{'type': 'Point', 'coordinates': (-79.37147803000002, 43.66351279)}"
-7080,10765,GO-20159009700,THEFT UNDER,2015-11-13T00:00:00,2015,November,Friday,13,317,3,2015-11-13T00:00:00,2015,November,Friday,13,317,13,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,RA,10 SPEED CONVER,RC,1,BLK,500.0,STOLEN,7072,"{'type': 'Point', 'coordinates': (-79.3723499, 43.65817021)}"
-7081,10840,GO-20152102504,ROBBERY - HOME INVASION,2015-12-08T00:00:00,2015,December,Tuesday,8,342,5,2015-12-08T00:00:00,2015,December,Tuesday,8,342,12,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN,UNKNOWN,EL,0,WHIBLU,1200.0,STOLEN,7073,"{'type': 'Point', 'coordinates': (-79.37008264, 43.656162280000004)}"
-7082,10863,GO-20159010817,THEFT UNDER,2015-12-11T00:00:00,2015,December,Friday,11,345,13,2015-12-11T00:00:00,2015,December,Friday,11,345,16,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,21,PLE,1000.0,STOLEN,7074,"{'type': 'Point', 'coordinates': (-79.37065383, 43.65073186)}"
-7083,10922,GO-201667978,THEFT UNDER,2015-11-18T00:00:00,2015,November,Wednesday,18,322,0,2016-01-12T00:00:00,2016,January,Tuesday,12,12,12,D51,Toronto,73,Moss Park (73),"Religious Facilities (Synagogue, Church, Convent, Mosque)",Other,CANNONDALE,SUPER 6 5,OT,24,BLK,2000.0,STOLEN,7075,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7084,10994,GO-20169001459,B&E,2016-01-01T00:00:00,2016,January,Friday,1,1,16,2016-02-16T00:00:00,2016,February,Tuesday,16,47,17,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,,RC,30,BLK,535.0,STOLEN,7076,"{'type': 'Point', 'coordinates': (-79.36738106, 43.65241212)}"
-7085,11050,GO-20169002392,THEFT UNDER,2016-03-15T00:00:00,2016,March,Tuesday,15,75,20,2016-03-15T00:00:00,2016,March,Tuesday,15,75,20,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,ROVE 3,RG,24,BLU,500.0,RECOVERED,7077,"{'type': 'Point', 'coordinates': (-79.36066683, 43.65248849)}"
-7086,11054,GO-20169002392,THEFT UNDER,2016-03-15T00:00:00,2016,March,Tuesday,15,75,20,2016-03-15T00:00:00,2016,March,Tuesday,15,75,20,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,ROVE 3,RG,24,BLU,500.0,STOLEN,7078,"{'type': 'Point', 'coordinates': (-79.36066683, 43.65248849)}"
-7087,11224,GO-2016733735,THEFT UNDER,2016-04-29T00:00:00,2016,April,Friday,29,120,16,2016-04-29T00:00:00,2016,April,Friday,29,120,19,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,,MT,21,SIL,3700.0,STOLEN,7079,"{'type': 'Point', 'coordinates': (-79.35611831000001, 43.65686841)}"
-7088,11246,GO-2016753099,THEFT UNDER - BICYCLE,2016-05-02T00:00:00,2016,May,Monday,2,123,7,2016-05-02T00:00:00,2016,May,Monday,2,123,21,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,MT,21,BLU,,STOLEN,7080,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7089,11248,GO-2016751374,B&E,2016-04-25T00:00:00,2016,April,Monday,25,116,10,2016-05-02T00:00:00,2016,May,Monday,2,123,15,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,PRO SERIES,BM,1,BLK,600.0,STOLEN,7081,"{'type': 'Point', 'coordinates': (-79.35800136, 43.65577965)}"
-7090,11257,GO-20169004149,THEFT UNDER,2016-05-04T00:00:00,2016,May,Wednesday,4,125,11,2016-05-04T00:00:00,2016,May,Wednesday,4,125,17,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,,RG,18,RED,350.0,STOLEN,7082,"{'type': 'Point', 'coordinates': (-79.3627004, 43.65156829000001)}"
-7091,11366,GO-2016893938,THEFT UNDER,2016-05-07T00:00:00,2016,May,Saturday,7,128,0,2016-05-16T00:00:00,2016,May,Monday,16,137,10,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,,MT,0,BLK,900.0,STOLEN,7083,"{'type': 'Point', 'coordinates': (-79.35576206, 43.65652566)}"
-7092,11510,GO-20169005676,THEFT UNDER,2016-06-06T00:00:00,2016,June,Monday,6,158,8,2016-06-12T00:00:00,2016,June,Sunday,12,164,20,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,NO,VALENCE,RC,18,BLK,1500.0,STOLEN,7084,"{'type': 'Point', 'coordinates': (-79.36967717, 43.66178085)}"
-7093,11515,GO-20169005707,THEFT UNDER - BICYCLE,2016-06-10T00:00:00,2016,June,Friday,10,162,14,2016-06-13T00:00:00,2016,June,Monday,13,165,10,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,24,BLK,1500.0,STOLEN,7085,"{'type': 'Point', 'coordinates': (-79.37156529, 43.652817240000005)}"
-7094,11543,GO-20169005850,THEFT UNDER - BICYCLE,2016-06-15T00:00:00,2016,June,Wednesday,15,167,16,2016-06-15T00:00:00,2016,June,Wednesday,15,167,19,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,2016 TREK 7.2 F,RG,24,BLK,800.0,STOLEN,7086,"{'type': 'Point', 'coordinates': (-79.37103886, 43.65160431)}"
-7095,11560,GO-20169005902,THEFT UNDER - BICYCLE,2016-05-27T00:00:00,2016,May,Friday,27,148,14,2016-06-16T00:00:00,2016,June,Thursday,16,168,15,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,RA,TARANTULA,MT,21,OTH,350.0,STOLEN,7087,"{'type': 'Point', 'coordinates': (-79.36738106, 43.65241212)}"
-7096,11572,GO-20169005991,THEFT UNDER - BICYCLE,2016-06-17T00:00:00,2016,June,Friday,17,169,20,2016-06-18T00:00:00,2016,June,Saturday,18,170,9,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,KO,JAKE,RC,10,ONG,1236.0,STOLEN,7088,"{'type': 'Point', 'coordinates': (-79.37103886, 43.65160431)}"
-7097,11630,GO-20169006305,THEFT UNDER,2016-06-23T00:00:00,2016,June,Thursday,23,175,16,2016-06-24T00:00:00,2016,June,Friday,24,176,16,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,1,MRN,271.0,STOLEN,7089,"{'type': 'Point', 'coordinates': (-79.36701066, 43.65154726)}"
-7098,11670,GO-20161135155,THEFT UNDER - BICYCLE,2016-06-28T00:00:00,2016,June,Tuesday,28,180,19,2016-06-29T00:00:00,2016,June,Wednesday,29,181,7,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ROCKY MOUNTAIN,,RC,11,ONG,1600.0,STOLEN,7090,"{'type': 'Point', 'coordinates': (-79.36967717, 43.66178085)}"
-7099,11675,GO-20169006591,THEFT UNDER - BICYCLE,2016-06-30T00:00:00,2016,June,Thursday,30,182,9,2016-06-30T00:00:00,2016,June,Thursday,30,182,19,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,HARDROCK SPORT,MT,21,GRY,679.0,STOLEN,7091,"{'type': 'Point', 'coordinates': (-79.36237053, 43.65321832)}"
-7100,11685,GO-20169006652,THEFT UNDER - BICYCLE,2016-07-03T00:00:00,2016,July,Sunday,3,185,10,2016-07-03T00:00:00,2016,July,Sunday,3,185,19,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,1,BLK,0.0,STOLEN,7092,"{'type': 'Point', 'coordinates': (-79.36320575, 43.6527297)}"
-7101,11698,GO-20161163163,THEFT OF EBIKE UNDER $5000,2016-07-01T00:00:00,2016,July,Friday,1,183,21,2016-07-03T00:00:00,2016,July,Sunday,3,185,17,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN,UNKNOWN,EL,1,BLU,1000.0,STOLEN,7093,"{'type': 'Point', 'coordinates': (-79.36691319, 43.65649967)}"
-7102,11739,GO-20169006858,THEFT UNDER,2016-07-07T00:00:00,2016,July,Thursday,7,189,0,2016-07-07T00:00:00,2016,July,Thursday,7,189,11,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,FIXIE,RG,1,WHI,275.0,STOLEN,7094,"{'type': 'Point', 'coordinates': (-79.35693963, 43.65638235)}"
-7103,11756,GO-20161208089,THEFT UNDER - BICYCLE,2016-07-10T00:00:00,2016,July,Sunday,10,192,13,2016-07-10T00:00:00,2016,July,Sunday,10,192,14,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TEV BIKE,,SC,15,RED,1500.0,STOLEN,7095,"{'type': 'Point', 'coordinates': (-79.36755676, 43.65636789)}"
-7104,11798,GO-20161233740,THEFT UNDER - BICYCLE,2016-07-13T00:00:00,2016,July,Wednesday,13,195,18,2016-07-14T00:00:00,2016,July,Thursday,14,196,9,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,6500,MT,21,,2800.0,STOLEN,7096,"{'type': 'Point', 'coordinates': (-79.37352514, 43.66094246)}"
-7105,11809,GO-20169007214,THEFT UNDER,2016-06-23T00:00:00,2016,June,Thursday,23,175,22,2016-07-15T00:00:00,2016,July,Friday,15,197,20,D51,Toronto,73,Moss Park (73),Schools During Supervised Activity,Educational,UK,HELIX,MT,18,PLE,500.0,STOLEN,7097,"{'type': 'Point', 'coordinates': (-79.37065383, 43.65073186)}"
-7106,11848,GO-20169007418,THEFT UNDER - BICYCLE,2016-07-18T00:00:00,2016,July,Monday,18,200,20,2016-07-19T00:00:00,2016,July,Tuesday,19,201,15,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,FARLEY 6,MT,20,BLK,2042.0,STOLEN,7098,"{'type': 'Point', 'coordinates': (-79.36616856, 43.6526954)}"
-7107,11878,GO-20161292139,THEFT OF EBIKE UNDER $5000,2016-07-18T00:00:00,2016,July,Monday,18,200,16,2016-07-23T00:00:00,2016,July,Saturday,23,205,6,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,EMMO,HORNET,EL,1,RED,,STOLEN,7099,"{'type': 'Point', 'coordinates': (-79.37008264, 43.656162280000004)}"
-7108,5161,GO-20191626680,THEFT UNDER - BICYCLE,2019-08-25T00:00:00,2019,August,Sunday,25,237,15,2019-08-26T00:00:00,2019,August,Monday,26,238,9,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,MT,0,,,STOLEN,7100,"{'type': 'Point', 'coordinates': (-79.3723499, 43.65817021)}"
-7109,5197,GO-20199028262,THEFT UNDER,2019-08-29T00:00:00,2019,August,Thursday,29,241,1,2019-08-30T00:00:00,2019,August,Friday,30,242,16,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,SKYWAY BELT DRI,RG,1,BLK,995.0,STOLEN,7101,"{'type': 'Point', 'coordinates': (-79.36859808, 43.65214811)}"
-7110,5222,GO-20199028650,THEFT UNDER,2019-09-02T00:00:00,2019,September,Monday,2,245,23,2019-09-03T00:00:00,2019,September,Tuesday,3,246,20,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,BLACK/BLUE,RG,21,BLU,200.0,STOLEN,7102,"{'type': 'Point', 'coordinates': (-79.37452691, 43.65706649)}"
-7111,5291,GO-20191743455,B&E,2019-09-10T00:00:00,2019,September,Tuesday,10,253,18,2019-09-11T00:00:00,2019,September,Wednesday,11,254,15,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,E-BIKE,EL,0,BLK,5000.0,STOLEN,7103,"{'type': 'Point', 'coordinates': (-79.37048033, 43.66372252)}"
-7112,5363,GO-20199030610,THEFT UNDER,2019-09-18T00:00:00,2019,September,Wednesday,18,261,18,2019-09-18T00:00:00,2019,September,Wednesday,18,261,22,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,REVOLT,RC,12,BLK,1500.0,STOLEN,7104,"{'type': 'Point', 'coordinates': (-79.36943408, 43.65100125)}"
-7113,5392,GO-20191832638,THEFT UNDER - BICYCLE,2019-09-23T00:00:00,2019,September,Monday,23,266,13,2019-09-23T00:00:00,2019,September,Monday,23,266,13,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,TO,81,SILGRY,2500.0,STOLEN,7105,"{'type': 'Point', 'coordinates': (-79.37066212, 43.66156417)}"
-7114,5463,GO-20199032524,THEFT UNDER - BICYCLE,2019-10-03T00:00:00,2019,October,Thursday,3,276,19,2019-10-03T00:00:00,2019,October,Thursday,3,276,20,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,30,GRN,1200.0,STOLEN,7106,"{'type': 'Point', 'coordinates': (-79.37452691, 43.65706649)}"
-7115,5479,GO-20199032835,THEFT UNDER,2019-10-05T00:00:00,2019,October,Saturday,5,278,17,2019-10-07T00:00:00,2019,October,Monday,7,280,9,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,25,BLK,850.0,STOLEN,7107,"{'type': 'Point', 'coordinates': (-79.35351296, 43.65500405)}"
-7116,5480,GO-20199032852,THEFT UNDER,2019-09-10T00:00:00,2019,September,Tuesday,10,253,8,2019-10-07T00:00:00,2019,October,Monday,7,280,9,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,ONG,500.0,STOLEN,7108,"{'type': 'Point', 'coordinates': (-79.36701066, 43.65154726)}"
-7117,5526,GO-20191996236,THEFT UNDER - BICYCLE,2019-10-11T00:00:00,2019,October,Friday,11,284,17,2019-10-16T00:00:00,2019,October,Wednesday,16,289,11,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,DIVERGE E5 COMP,OT,21,,2500.0,STOLEN,7109,"{'type': 'Point', 'coordinates': (-79.36849898, 43.66204335)}"
-7118,5539,GO-20199033967,THEFT UNDER - BICYCLE,2019-10-11T00:00:00,2019,October,Friday,11,284,20,2019-10-15T00:00:00,2019,October,Tuesday,15,288,16,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,CCM APEX WOMEN',MT,24,BLK,408.0,STOLEN,7110,"{'type': 'Point', 'coordinates': (-79.35351296, 43.65500405)}"
-7119,5649,GO-20192076128,PROPERTY - FOUND,2019-10-27T00:00:00,2019,October,Sunday,27,300,15,2019-10-27T00:00:00,2019,October,Sunday,27,300,16,D51,Toronto,73,Moss Park (73),"Police / Courts (Parole Board, Probation Office)",Other,NORCO,INDIE 9,RG,0,GRY,,UNKNOWN,7113,"{'type': 'Point', 'coordinates': (-79.3627004, 43.65156829000001)}"
-7120,5654,GO-20199036541,THEFT UNDER,2019-10-29T00:00:00,2019,October,Tuesday,29,302,11,2019-11-05T00:00:00,2019,November,Tuesday,5,309,15,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,FCR 2,OT,27,OTH,0.0,STOLEN,7114,"{'type': 'Point', 'coordinates': (-79.37103886, 43.65160431)}"
-7121,5656,GO-20199036548,THEFT UNDER,2019-11-03T00:00:00,2019,November,Sunday,3,307,17,2019-11-05T00:00:00,2019,November,Tuesday,5,309,16,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,ANYROAD 2,OT,18,BLK,1500.0,STOLEN,7115,"{'type': 'Point', 'coordinates': (-79.36701066, 43.65154726)}"
-7122,5697,GO-20192225356,THEFT UNDER,2019-10-24T00:00:00,2019,October,Thursday,24,297,23,2019-10-25T00:00:00,2019,October,Friday,25,298,8,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,ZZZ,,OT,12,BLK,1000.0,STOLEN,7116,"{'type': 'Point', 'coordinates': (-79.3723499, 43.65817021)}"
-7123,5698,GO-20192205675,THEFT UNDER - BICYCLE,2019-11-14T00:00:00,2019,November,Thursday,14,318,20,2019-11-15T00:00:00,2019,November,Friday,15,319,8,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MINELLI,,RC,10,PNK,1000.0,STOLEN,7117,"{'type': 'Point', 'coordinates': (-79.37469468, 43.66068103)}"
-7124,5701,GO-20192226123,B&E,2019-11-18T00:00:00,2019,November,Monday,18,322,4,2019-11-18T00:00:00,2019,November,Monday,18,322,14,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,OT,0,,,STOLEN,7118,"{'type': 'Point', 'coordinates': (-79.36437279, 43.65212359)}"
-7125,5702,GO-20192226123,B&E,2019-11-18T00:00:00,2019,November,Monday,18,322,4,2019-11-18T00:00:00,2019,November,Monday,18,322,14,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,OT,0,,,STOLEN,7119,"{'type': 'Point', 'coordinates': (-79.36437279, 43.65212359)}"
-7126,5710,GO-20192230929,B&E,2019-10-25T00:00:00,2019,October,Friday,25,298,17,2019-11-18T00:00:00,2019,November,Monday,18,322,23,D51,Toronto,73,Moss Park (73),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,OTHER,,OT,26,BLU,180.0,STOLEN,7120,"{'type': 'Point', 'coordinates': (-79.36642171, 43.65262692)}"
-7127,5735,GO-20192304446,THEFT OF EBIKE UNDER $5000,2019-11-28T00:00:00,2019,November,Thursday,28,332,17,2019-11-29T00:00:00,2019,November,Friday,29,333,15,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,EMMO,URBAN S,EL,12,REDBLK,800.0,STOLEN,7121,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7128,5763,GO-20199040877,THEFT UNDER,2019-12-12T00:00:00,2019,December,Thursday,12,346,18,2019-12-14T00:00:00,2019,December,Saturday,14,348,0,D51,Toronto,73,Moss Park (73),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,NORCO INDIE 3,RG,3,BLK,800.0,STOLEN,7122,"{'type': 'Point', 'coordinates': (-79.36967717, 43.66178085)}"
-7129,5771,GO-20199041382,THEFT UNDER,2019-12-12T00:00:00,2019,December,Thursday,12,346,17,2019-12-18T00:00:00,2019,December,Wednesday,18,352,17,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,PITCH,MT,16,GRY,100.0,STOLEN,7123,"{'type': 'Point', 'coordinates': (-79.36527402, 43.65426123)}"
-7130,5772,GO-20199041424,THEFT UNDER,2019-12-18T00:00:00,2019,December,Wednesday,18,352,22,2019-12-18T00:00:00,2019,December,Wednesday,18,352,23,D51,Toronto,73,Moss Park (73),"Private Property Structure (Pool, Shed, Detached Garage)",Other,,MONSTER,MT,7,SIL,193.0,STOLEN,7124,"{'type': 'Point', 'coordinates': (-79.37352514, 43.66094246)}"
-7131,5794,GO-20209000061,THEFT UNDER,2020-01-01T00:00:00,2020,January,Wednesday,1,1,20,2020-01-01T00:00:00,2020,January,Wednesday,1,1,20,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,700C CITIBIKE 7,OT,7,TRQ,1200.0,STOLEN,7125,"{'type': 'Point', 'coordinates': (-79.36095013, 43.65403384)}"
-7132,5807,GO-20209000465,THEFT UNDER,2020-01-03T00:00:00,2020,January,Friday,3,3,20,2020-01-05T00:00:00,2020,January,Sunday,5,5,16,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,2018 ALLEZELITE,RC,11,BLK,1500.0,STOLEN,7126,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7133,5835,GO-2020106887,B&E,2020-01-15T00:00:00,2020,January,Wednesday,15,15,15,2020-01-16T00:00:00,2020,January,Thursday,16,16,10,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT AIRSTREAM,CRUISER,EL,3,GRY,,STOLEN,7127,"{'type': 'Point', 'coordinates': (-79.3687877, 43.65699417)}"
-7134,5836,GO-2020106887,B&E,2020-01-15T00:00:00,2020,January,Wednesday,15,15,15,2020-01-16T00:00:00,2020,January,Thursday,16,16,10,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,JUGGERNAUT,FAT BIKE,EL,1,BLKRED,,STOLEN,7128,"{'type': 'Point', 'coordinates': (-79.3687877, 43.65699417)}"
-7135,5869,GO-2020226369,THEFT UNDER,2020-02-01T00:00:00,2020,February,Saturday,1,32,21,2020-02-01T00:00:00,2020,February,Saturday,1,32,22,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,AMEGO,FREEDOM,EL,2,SILBLK,1400.0,STOLEN,7130,"{'type': 'Point', 'coordinates': (-79.36941977, 43.65452491)}"
-7136,6017,GO-2020656216,B&E,2020-04-01T00:00:00,2020,April,Wednesday,1,92,17,2020-04-04T00:00:00,2020,April,Saturday,4,95,13,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,ROCK HOPPER 29,MT,0,WHI,800.0,STOLEN,7131,"{'type': 'Point', 'coordinates': (-79.36527402, 43.65426123)}"
-7137,6077,GO-2020731393,THEFT UNDER - BICYCLE,2020-04-10T00:00:00,2020,April,Friday,10,101,18,2020-04-16T00:00:00,2020,April,Thursday,16,107,14,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,,,OT,0,RED,350.0,STOLEN,7132,"{'type': 'Point', 'coordinates': (-79.36738106, 43.65241212)}"
-7138,6128,GO-20209012347,THEFT UNDER,2020-05-02T00:00:00,2020,May,Saturday,2,123,10,2020-05-02T00:00:00,2020,May,Saturday,2,123,16,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,UK,AMERICAN DESIGN,RG,6,BLK,500.0,STOLEN,7133,"{'type': 'Point', 'coordinates': (-79.36822197, 43.65127732)}"
-7139,6198,GO-2020920374,B&E W'INTENT,2020-05-17T00:00:00,2020,May,Sunday,17,138,0,2020-05-18T00:00:00,2020,May,Monday,18,139,17,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,GARNEAU,,RG,0,BLK,1650.0,STOLEN,7134,"{'type': 'Point', 'coordinates': (-79.35837569, 43.65558195)}"
-7140,6199,GO-2020920374,B&E W'INTENT,2020-05-17T00:00:00,2020,May,Sunday,17,138,0,2020-05-18T00:00:00,2020,May,Monday,18,139,17,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,TREK,,RG,0,BLK,400.0,STOLEN,7135,"{'type': 'Point', 'coordinates': (-79.35837569, 43.65558195)}"
-7141,6203,GO-2020912611,PROPERTY - FOUND,2020-05-17T00:00:00,2020,May,Sunday,17,138,4,2020-05-17T00:00:00,2020,May,Sunday,17,138,11,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,,MT,12,,,UNKNOWN,7136,"{'type': 'Point', 'coordinates': (-79.3723499, 43.65817021)}"
-7142,6204,GO-2020925190,B&E,2020-05-16T00:00:00,2020,May,Saturday,16,137,0,2020-05-19T00:00:00,2020,May,Tuesday,19,140,14,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,ROCKY MOUNTAIN,WHISTLER 50,MT,21,GRY,1300.0,STOLEN,7137,"{'type': 'Point', 'coordinates': (-79.35837569, 43.65558195)}"
-7143,6205,GO-2020925190,B&E,2020-05-16T00:00:00,2020,May,Saturday,16,137,0,2020-05-19T00:00:00,2020,May,Tuesday,19,140,14,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,MYKA EXPERT,MT,21,PLE,1300.0,STOLEN,7138,"{'type': 'Point', 'coordinates': (-79.35837569, 43.65558195)}"
-7144,6230,GO-20209013737,THEFT UNDER,2020-05-22T00:00:00,2020,May,Friday,22,143,1,2020-05-23T00:00:00,2020,May,Saturday,23,144,11,D51,Toronto,73,Moss Park (73),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,OT,4,BLK,400.0,STOLEN,7139,"{'type': 'Point', 'coordinates': (-79.35800136, 43.65577965)}"
-7145,6242,GO-20209013855,THEFT UNDER,2020-05-24T00:00:00,2020,May,Sunday,24,145,20,2020-05-25T00:00:00,2020,May,Monday,25,146,12,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,12,BLK,500.0,STOLEN,7140,"{'type': 'Point', 'coordinates': (-79.36320575, 43.6527297)}"
-7146,6263,GO-2020980280,B&E,2020-05-26T00:00:00,2020,May,Tuesday,26,147,13,2020-05-27T00:00:00,2020,May,Wednesday,27,148,21,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,GIANT,CONTEND,OT,21,MUL,1872.0,STOLEN,7141,"{'type': 'Point', 'coordinates': (-79.35800136, 43.65577965)}"
-7147,6386,GO-20209015367,THEFT UNDER,2020-06-14T00:00:00,2020,June,Sunday,14,166,16,2020-06-14T00:00:00,2020,June,Sunday,14,166,19,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,18,,600.0,STOLEN,7142,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7148,6392,GO-20209015410,THEFT UNDER,2020-06-13T00:00:00,2020,June,Saturday,13,165,13,2020-06-15T00:00:00,2020,June,Monday,15,167,13,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,HF,,MT,6,WHI,0.0,STOLEN,7143,"{'type': 'Point', 'coordinates': (-79.36642171, 43.65262692)}"
-7149,6393,GO-20209015411,THEFT UNDER,2020-06-14T00:00:00,2020,June,Sunday,14,166,20,2020-06-15T00:00:00,2020,June,Monday,15,167,13,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,GI,,OT,21,,650.0,STOLEN,7144,"{'type': 'Point', 'coordinates': (-79.35693963, 43.65638235)}"
-7150,6456,GO-20201145349,THEFT UNDER,2020-06-21T00:00:00,2020,June,Sunday,21,173,16,2020-06-21T00:00:00,2020,June,Sunday,21,173,23,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,ZYCLE PRINE,OT,6,BLK,400.0,STOLEN,7145,"{'type': 'Point', 'coordinates': (-79.37481095, 43.66065384)}"
-7151,6464,GO-20209016019,THEFT UNDER,2020-06-23T00:00:00,2020,June,Tuesday,23,175,20,2020-06-24T00:00:00,2020,June,Wednesday,24,176,2,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RM,FUSION,MT,18,MRN,0.0,STOLEN,7146,"{'type': 'Point', 'coordinates': (-79.36701066, 43.65154726)}"
-7152,6606,GO-20209017418,THEFT UNDER,2020-07-10T00:00:00,2020,July,Friday,10,192,18,2020-07-13T00:00:00,2020,July,Monday,13,195,9,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,30,BLU,0.0,STOLEN,7148,"{'type': 'Point', 'coordinates': (-79.37352514, 43.66094246)}"
-7153,6902,GO-20201452483,THEFT UNDER,2020-03-03T00:00:00,2020,March,Tuesday,3,63,12,2020-08-04T00:00:00,2020,August,Tuesday,4,217,12,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,GIANT,,MT,18,,2000.0,STOLEN,7149,"{'type': 'Point', 'coordinates': (-79.35576206, 43.65652566)}"
-7154,6921,GO-20201497635,PROPERTY - FOUND,2020-08-10T00:00:00,2020,August,Monday,10,223,12,2020-08-10T00:00:00,2020,August,Monday,10,223,20,D51,Toronto,73,Moss Park (73),"Police / Courts (Parole Board, Probation Office)",Other,KONA,,RG,21,BLK,,UNKNOWN,7150,"{'type': 'Point', 'coordinates': (-79.3627004, 43.65156829000001)}"
-7155,6922,GO-20201497635,PROPERTY - FOUND,2020-08-10T00:00:00,2020,August,Monday,10,223,12,2020-08-10T00:00:00,2020,August,Monday,10,223,20,D51,Toronto,73,Moss Park (73),"Police / Courts (Parole Board, Probation Office)",Other,UNKNOWN MAKE,,EL,0,RED,,UNKNOWN,7151,"{'type': 'Point', 'coordinates': (-79.3627004, 43.65156829000001)}"
-7156,6923,GO-20201497635,PROPERTY - FOUND,2020-08-10T00:00:00,2020,August,Monday,10,223,12,2020-08-10T00:00:00,2020,August,Monday,10,223,20,D51,Toronto,73,Moss Park (73),"Police / Courts (Parole Board, Probation Office)",Other,UNKNOWN MAKE,UNKNOWN,RG,21,BLKGRY,,UNKNOWN,7152,"{'type': 'Point', 'coordinates': (-79.3627004, 43.65156829000001)}"
-7157,6924,GO-20201497635,PROPERTY - FOUND,2020-08-10T00:00:00,2020,August,Monday,10,223,12,2020-08-10T00:00:00,2020,August,Monday,10,223,20,D51,Toronto,73,Moss Park (73),"Police / Courts (Parole Board, Probation Office)",Other,SPECIALIZED,SIRRUS,RG,21,BLK,,UNKNOWN,7153,"{'type': 'Point', 'coordinates': (-79.3627004, 43.65156829000001)}"
-7158,6925,GO-20201497635,PROPERTY - FOUND,2020-08-10T00:00:00,2020,August,Monday,10,223,12,2020-08-10T00:00:00,2020,August,Monday,10,223,20,D51,Toronto,73,Moss Park (73),"Police / Courts (Parole Board, Probation Office)",Other,JAMIS,,RG,21,BLKBLU,,UNKNOWN,7154,"{'type': 'Point', 'coordinates': (-79.3627004, 43.65156829000001)}"
-7159,6949,GO-20201490120,THEFT UNDER - BICYCLE,2020-08-08T00:00:00,2020,August,Saturday,8,221,3,2020-08-09T00:00:00,2020,August,Sunday,9,222,18,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,AGRESSOR,MT,21,BLU,500.0,STOLEN,7155,"{'type': 'Point', 'coordinates': (-79.36738106, 43.65241212)}"
-7160,6989,GO-20209020539,THEFT UNDER - BICYCLE,2020-08-18T00:00:00,2020,August,Tuesday,18,231,17,2020-08-19T00:00:00,2020,August,Wednesday,19,232,1,D51,Toronto,73,Moss Park (73),Schools During Supervised Activity,Educational,OT,SECTEUR SPORT (,RC,9,RED,1400.0,STOLEN,7156,"{'type': 'Point', 'coordinates': (-79.36924, 43.65389302)}"
-7161,7014,GO-20209020809,THEFT UNDER - BICYCLE,2020-08-20T00:00:00,2020,August,Thursday,20,233,18,2020-08-20T00:00:00,2020,August,Thursday,20,233,20,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,MT,10,BLK,1000.0,STOLEN,7157,"{'type': 'Point', 'coordinates': (-79.36665279, 43.65068091)}"
-7162,7080,GO-20209021353,THEFT UNDER,2020-08-22T00:00:00,2020,August,Saturday,22,235,19,2020-08-25T00:00:00,2020,August,Tuesday,25,238,22,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,UK,,OT,1,,200.0,STOLEN,7158,"{'type': 'Point', 'coordinates': (-79.3687877, 43.65699417)}"
-7163,7113,GO-20209021652,THEFT UNDER,2020-08-08T00:00:00,2020,August,Saturday,8,221,16,2020-08-28T00:00:00,2020,August,Friday,28,241,16,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,SC,SCHWINN,RG,21,PLE,349.0,STOLEN,7159,"{'type': 'Point', 'coordinates': (-79.37272187, 43.65560782)}"
-7164,7162,GO-20209022159,THEFT UNDER - BICYCLE,2020-09-02T00:00:00,2020,September,Wednesday,2,246,19,2020-09-02T00:00:00,2020,September,Wednesday,2,246,23,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SINGLE SPEED FI,RG,1,GRY,350.0,STOLEN,7160,"{'type': 'Point', 'coordinates': (-79.36859808, 43.65214811)}"
-7165,7290,GO-20209023784,THEFT UNDER,2020-09-17T00:00:00,2020,September,Thursday,17,261,2,2020-09-18T00:00:00,2020,September,Friday,18,262,17,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,BEAR,MT,21,BLK,175.0,STOLEN,7161,"{'type': 'Point', 'coordinates': (-79.36738106, 43.65241212)}"
-7166,7298,GO-20209023838,MISCHIEF TO VEHICLE,2020-09-18T00:00:00,2020,September,Friday,18,262,21,2020-09-19T00:00:00,2020,September,Saturday,19,263,13,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,DRAGON 29ER,MT,18,DGR,1000.0,STOLEN,7162,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7167,7328,GO-20201804948,THEFT UNDER - BICYCLE,2020-09-18T00:00:00,2020,September,Friday,18,262,16,2020-09-23T00:00:00,2020,September,Wednesday,23,267,10,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GT,TRANSEO SPORT,OT,15,BLURED,670.0,STOLEN,7163,"{'type': 'Point', 'coordinates': (-79.35576206, 43.65652566)}"
-7168,7340,GO-20209024309,THEFT UNDER - BICYCLE,2020-09-23T00:00:00,2020,September,Wednesday,23,267,23,2020-09-24T00:00:00,2020,September,Thursday,24,268,10,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,SU,,RG,10,,110.0,STOLEN,7164,"{'type': 'Point', 'coordinates': (-79.36642171, 43.65262692)}"
-7169,7354,GO-20209024309,THEFT UNDER - BICYCLE,2020-09-23T00:00:00,2020,September,Wednesday,23,267,23,2020-09-24T00:00:00,2020,September,Thursday,24,268,10,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,SU,,RG,10,,110.0,STOLEN,7165,"{'type': 'Point', 'coordinates': (-79.36642171, 43.65262692)}"
-7170,7366,GO-20209024652,THEFT UNDER - BICYCLE,2020-09-28T00:00:00,2020,September,Monday,28,272,11,2020-09-28T00:00:00,2020,September,Monday,28,272,15,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,,TO,1,BLK,0.0,STOLEN,7166,"{'type': 'Point', 'coordinates': (-79.37452691, 43.65706649)}"
-7171,7391,GO-20209025045,THEFT UNDER - BICYCLE,2020-09-27T00:00:00,2020,September,Sunday,27,271,17,2020-09-30T00:00:00,2020,September,Wednesday,30,274,14,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,HF,,RG,7,BLU,400.0,STOLEN,7167,"{'type': 'Point', 'coordinates': (-79.36437279, 43.65212359)}"
-7172,7413,GO-20201866358,THEFT UNDER - BICYCLE,2020-09-18T00:00:00,2020,September,Friday,18,262,21,2020-10-01T00:00:00,2020,October,Thursday,1,275,16,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,RG,6,,,STOLEN,7168,"{'type': 'Point', 'coordinates': (-79.37066212, 43.66156417)}"
-7173,7414,GO-20201866358,THEFT UNDER - BICYCLE,2020-09-18T00:00:00,2020,September,Friday,18,262,21,2020-10-01T00:00:00,2020,October,Thursday,1,275,16,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,INFINITY,,MT,6,,,STOLEN,7169,"{'type': 'Point', 'coordinates': (-79.37066212, 43.66156417)}"
-7174,7459,GO-20201950679,THEFT UNDER,2020-10-04T00:00:00,2020,October,Sunday,4,278,4,2020-10-14T00:00:00,2020,October,Wednesday,14,288,12,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KONA,ROVE SLATE 52,RG,22,DGR,1300.0,STOLEN,7170,"{'type': 'Point', 'coordinates': (-79.37066212, 43.66156417)}"
-7175,7473,GO-20201956820,THEFT UNDER - BICYCLE,2020-10-08T00:00:00,2020,October,Thursday,8,282,14,2020-10-15T00:00:00,2020,October,Thursday,15,289,13,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GIANT,ESCAPE 2 DISC C,OT,10,DBL,1000.0,STOLEN,7171,"{'type': 'Point', 'coordinates': (-79.36926699, 43.66399224)}"
-7176,7481,GO-20201969604,THEFT OF EBIKE OVER $5000,2020-10-08T00:00:00,2020,October,Thursday,8,282,23,2020-10-17T00:00:00,2020,October,Saturday,17,291,6,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,EMMO,ZONE GTS,EL,0,BLK,6000.0,STOLEN,7172,"{'type': 'Point', 'coordinates': (-79.37452691, 43.65706649)}"
-7177,7496,GO-20209026835,THEFT UNDER - BICYCLE,2020-10-16T00:00:00,2020,October,Friday,16,290,17,2020-10-17T00:00:00,2020,October,Saturday,17,291,23,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,SC,210-FS,TO,21,BLU,300.0,STOLEN,7173,"{'type': 'Point', 'coordinates': (-79.37099208, 43.65829436)}"
-7178,7535,GO-20209027507,THEFT FROM MOTOR VEHICLE UNDER,2020-10-23T00:00:00,2020,October,Friday,23,297,19,2020-10-24T00:00:00,2020,October,Saturday,24,298,10,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ROCKHOPPER SPOR,MT,18,BLK,1017.0,STOLEN,7174,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7179,7556,GO-20209027814,THEFT OVER - BICYCLE,2020-10-23T00:00:00,2020,October,Friday,23,297,8,2020-10-27T00:00:00,2020,October,Tuesday,27,301,9,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,VECTOR 700,RG,21,DBL,500.0,STOLEN,7175,"{'type': 'Point', 'coordinates': (-79.37156529, 43.652817240000005)}"
-7180,7568,GO-20209028111,THEFT UNDER - BICYCLE,2020-10-17T00:00:00,2020,October,Saturday,17,291,12,2020-10-29T00:00:00,2020,October,Thursday,29,303,12,D51,Toronto,73,Moss Park (73),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,OT,12,,0.0,STOLEN,7176,"{'type': 'Point', 'coordinates': (-79.36627913, 43.65664856)}"
-7181,7669,GO-20202247200,THEFT OVER - BICYCLE,2020-11-25T00:00:00,2020,November,Wednesday,25,330,13,2020-11-27T00:00:00,2020,November,Friday,27,332,17,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,TURISMO,TO,30,DGR,5400.0,STOLEN,7177,"{'type': 'Point', 'coordinates': (-79.36604724, 43.65176413)}"
-7182,7678,GO-20209030907,THEFT UNDER - BICYCLE,2020-11-13T00:00:00,2020,November,Friday,13,318,5,2020-11-30T00:00:00,2020,November,Monday,30,335,12,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,NO,SCENE 3,RG,7,PNK,680.0,STOLEN,7178,"{'type': 'Point', 'coordinates': (-79.37156529, 43.652817240000005)}"
-7183,12508,GO-20169011313,THEFT UNDER - BICYCLE,2016-09-26T00:00:00,2016,September,Monday,26,270,2,2016-09-29T00:00:00,2016,September,Thursday,29,273,16,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,UK,,OT,21,WHI,0.0,STOLEN,7179,"{'type': 'Point', 'coordinates': (-79.35685690000001, 43.65820104)}"
-7184,7679,GO-20202275953,THEFT UNDER - BICYCLE,2020-11-30T00:00:00,2020,November,Monday,30,335,17,2020-12-02T00:00:00,2020,December,Wednesday,2,337,12,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,REDLINE,,OT,1,BLU,2000.0,STOLEN,7180,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7185,7706,GO-20209032212,THEFT UNDER - BICYCLE,2020-12-16T00:00:00,2020,December,Wednesday,16,351,9,2020-12-16T00:00:00,2020,December,Wednesday,16,351,19,D51,Toronto,73,Moss Park (73),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,TRICROSS,OT,28,BLK,400.0,STOLEN,7181,"{'type': 'Point', 'coordinates': (-79.37302171, 43.66318983)}"
-7186,7724,GO-20209033144,THEFT UNDER - BICYCLE,2020-12-29T00:00:00,2020,December,Tuesday,29,364,3,2020-12-30T00:00:00,2020,December,Wednesday,30,365,23,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RG,10,DBL,350.0,STOLEN,7182,"{'type': 'Point', 'coordinates': (-79.37103886, 43.65160431)}"
-7187,7740,GO-20149000241,THEFT UNDER - BICYCLE,2014-01-08T00:00:00,2014,January,Wednesday,8,8,20,2014-01-08T00:00:00,2014,January,Wednesday,8,8,21,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,MILANO WD,RG,21,BLK,479.0,STOLEN,7183,"{'type': 'Point', 'coordinates': (-79.35576206, 43.65652566)}"
-7188,7775,GO-20141650747,THEFT UNDER,2014-03-06T00:00:00,2014,March,Thursday,6,65,9,2014-03-06T00:00:00,2014,March,Thursday,6,65,13,D51,Toronto,73,Moss Park (73),"Open Areas (Lakes, Parks, Rivers)",Outside,EMMO,S6,EL,1,YEL,2000.0,STOLEN,7184,"{'type': 'Point', 'coordinates': (-79.3687877, 43.65699417)}"
-7189,7779,GO-20141681258,THEFT UNDER,2014-03-10T00:00:00,2014,March,Monday,10,69,22,2014-03-12T00:00:00,2014,March,Wednesday,12,71,13,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,CUSTOM,SC,32,BLK,500.0,STOLEN,7185,"{'type': 'Point', 'coordinates': (-79.36755676, 43.65636789)}"
-7190,7789,GO-20149001842,THEFT UNDER,2014-03-05T00:00:00,2014,March,Wednesday,5,64,10,2014-03-07T00:00:00,2014,March,Friday,7,66,13,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KH,URBAN X,RG,24,BLK,500.0,STOLEN,7186,"{'type': 'Point', 'coordinates': (-79.36941977, 43.65452491)}"
-7191,7821,GO-20141850531,THEFT UNDER,2014-04-07T00:00:00,2014,April,Monday,7,97,23,2014-04-08T00:00:00,2014,April,Tuesday,8,98,11,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,DEFY,RC,21,BLKYEL,1300.0,STOLEN,7187,"{'type': 'Point', 'coordinates': (-79.36947164, 43.65865872)}"
-7192,7840,GO-20149002873,THEFT UNDER,2014-04-10T00:00:00,2014,April,Thursday,10,100,3,2014-04-15T00:00:00,2014,April,Tuesday,15,105,18,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,EARL,RG,1,BLK,700.0,STOLEN,7188,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7193,7870,GO-20141971165,THEFT UNDER,2014-04-26T00:00:00,2014,April,Saturday,26,116,2,2014-04-27T00:00:00,2014,April,Sunday,27,117,20,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,YORKVILLE,OT,21,BLK,465.0,STOLEN,7189,"{'type': 'Point', 'coordinates': (-79.36852769, 43.65887073)}"
-7194,7884,GO-20142020274,THEFT UNDER,2014-05-05T00:00:00,2014,May,Monday,5,125,14,2014-05-05T00:00:00,2014,May,Monday,5,125,15,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,TEMPO,OT,21,BLU,375.0,STOLEN,7190,"{'type': 'Point', 'coordinates': (-79.37219606, 43.66122668)}"
-7195,7914,GO-20142068530,B&E,2014-05-13T00:00:00,2014,May,Tuesday,13,133,5,2014-05-13T00:00:00,2014,May,Tuesday,13,133,5,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,SECTEUR,RC,12,REDWHI,1200.0,STOLEN,7191,"{'type': 'Point', 'coordinates': (-79.36527402, 43.65426123)}"
-7196,7915,GO-20142068530,B&E,2014-05-13T00:00:00,2014,May,Tuesday,13,133,5,2014-05-13T00:00:00,2014,May,Tuesday,13,133,5,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,JAGERMEISTER,TO,0,BLKRED,1200.0,STOLEN,7192,"{'type': 'Point', 'coordinates': (-79.36527402, 43.65426123)}"
-7197,7919,GO-20142065987,MISCHIEF UNDER,2014-05-08T00:00:00,2014,May,Thursday,8,128,22,2014-05-13T00:00:00,2014,May,Tuesday,13,133,20,D51,Toronto,73,Moss Park (73),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RALEIGH,,RG,3,BRN,500.0,STOLEN,7193,"{'type': 'Point', 'coordinates': (-79.3687877, 43.65699417)}"
-7198,8125,GO-20149003954,THEFT UNDER,2014-06-09T00:00:00,2014,June,Monday,9,160,17,2014-06-10T00:00:00,2014,June,Tuesday,10,161,15,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,AXIS SL1,RC,18,WHI,1700.0,STOLEN,7194,"{'type': 'Point', 'coordinates': (-79.36604724, 43.65176413)}"
-7199,8135,GO-20149004060,THEFT UNDER,2014-06-13T00:00:00,2014,June,Friday,13,164,11,2014-06-14T00:00:00,2014,June,Saturday,14,165,12,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ORPHEUS,OT,24,BLK,800.0,STOLEN,7195,"{'type': 'Point', 'coordinates': (-79.36738106, 43.65241212)}"
-7200,8136,GO-20149003991,THEFT UNDER,2014-06-09T00:00:00,2014,June,Monday,9,160,17,2014-06-11T00:00:00,2014,June,Wednesday,11,162,17,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GT,5 SERIES,OT,16,BLU,,STOLEN,7196,"{'type': 'Point', 'coordinates': (-79.36604724, 43.65176413)}"
-7201,8250,GO-20149004437,THEFT UNDER,2014-06-22T00:00:00,2014,June,Sunday,22,173,21,2014-06-25T00:00:00,2014,June,Wednesday,25,176,14,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,DB,,MT,12,BLK,750.0,STOLEN,7197,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7202,8266,GO-20149004496,THEFT UNDER,2014-06-27T00:00:00,2014,June,Friday,27,178,12,2014-06-27T00:00:00,2014,June,Friday,27,178,14,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SIRRIUS COMP X3,RG,27,GRY,900.0,STOLEN,7198,"{'type': 'Point', 'coordinates': (-79.36662886, 43.65929244)}"
-7203,8321,GO-20142427986,THEFT UNDER,2014-07-03T00:00:00,2014,July,Thursday,3,184,20,2014-07-04T00:00:00,2014,July,Friday,4,185,10,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,RC,21,GRNWHI,500.0,STOLEN,7199,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7204,8364,GO-20142502460,THEFT UNDER,2014-07-15T00:00:00,2014,July,Tuesday,15,196,14,2014-07-15T00:00:00,2014,July,Tuesday,15,196,15,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,EMMO,,EL,6,GLD,1500.0,STOLEN,7200,"{'type': 'Point', 'coordinates': (-79.36813583, 43.66211281)}"
-7205,23618,GO-20159003754,THEFT UNDER,2015-06-17T00:00:00,2015,June,Wednesday,17,168,13,2015-06-19T00:00:00,2015,June,Friday,19,170,11,D51,Toronto,73,Moss Park (73),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,NO,SCRAMBLER,MT,21,BLK,1000.0,STOLEN,7201,"{'type': 'Point', 'coordinates': (-79.37203827, 43.65395725)}"
-7206,17429,GO-20142199157,THEFT UNDER,2014-06-01T00:00:00,2014,June,Sunday,1,152,10,2014-06-01T00:00:00,2014,June,Sunday,1,152,16,D51,Toronto,73,Moss Park (73),Universities / Colleges,Educational,EVERYDAY,CHEEPSOOT,FO,6,WHI,189.0,STOLEN,7202,"{'type': 'Point', 'coordinates': (-79.36943408, 43.65100125)}"
-7207,12595,GO-20169011194,THEFT UNDER,2016-09-27T00:00:00,2016,September,Tuesday,27,271,15,2016-09-27T00:00:00,2016,September,Tuesday,27,271,16,D51,Toronto,72,Regent Park (72),Homeless Shelter / Mission,Other,CA,,RG,21,,1300.0,STOLEN,7203,"{'type': 'Point', 'coordinates': (-79.3649748, 43.66105179)}"
-7208,12739,GO-20161983202,THEFT UNDER - BICYCLE,2016-11-07T00:00:00,2016,November,Monday,7,312,20,2016-11-07T00:00:00,2016,November,Monday,7,312,21,D51,Toronto,72,Regent Park (72),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,S WORK,MT,1,PLE,4000.0,STOLEN,7205,"{'type': 'Point', 'coordinates': (-79.36597615, 43.65944077)}"
-7209,12747,GO-20162004320,THEFT UNDER - BICYCLE,2016-11-10T00:00:00,2016,November,Thursday,10,315,22,2016-11-11T00:00:00,2016,November,Friday,11,316,7,D51,Toronto,72,Regent Park (72),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,HOLD STEADY,OT,0,SIL,1500.0,STOLEN,7206,"{'type': 'Point', 'coordinates': (-79.35685690000001, 43.65820104)}"
-7210,12748,GO-20162004320,THEFT UNDER - BICYCLE,2016-11-10T00:00:00,2016,November,Thursday,10,315,22,2016-11-11T00:00:00,2016,November,Friday,11,316,7,D51,Toronto,72,Regent Park (72),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,GIANT HYBRID,OT,0,BLK,650.0,STOLEN,7207,"{'type': 'Point', 'coordinates': (-79.35685690000001, 43.65820104)}"
-7211,13479,GO-2019851997,THEFT UNDER,2019-04-10T00:00:00,2019,April,Wednesday,10,100,20,2019-04-11T00:00:00,2019,April,Thursday,11,101,8,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,MT,18,,,STOLEN,7208,"{'type': 'Point', 'coordinates': (-79.3664929, 43.66071879)}"
-7212,13480,GO-20199012717,THEFT UNDER,2019-04-21T00:00:00,2019,April,Sunday,21,111,10,2019-04-22T00:00:00,2019,April,Monday,22,112,22,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,OT,XCW,RG,21,GRY,452.0,STOLEN,7209,"{'type': 'Point', 'coordinates': (-79.36267396, 43.65942878)}"
-7213,13702,GO-20171410339,THEFT UNDER - BICYCLE,2017-08-05T00:00:00,2017,August,Saturday,5,217,8,2017-08-10T00:00:00,2017,August,Thursday,10,222,8,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,7.2FX,OT,30,BLU,550.0,STOLEN,7210,"{'type': 'Point', 'coordinates': (-79.36442266, 43.65561541)}"
-7214,13730,GO-20179018543,THEFT UNDER - BICYCLE,2017-10-30T00:00:00,2017,October,Monday,30,303,11,2017-10-30T00:00:00,2017,October,Monday,30,303,16,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,12,BLU,0.0,STOLEN,7211,"{'type': 'Point', 'coordinates': (-79.35649069, 43.65737489000001)}"
-7215,13784,GO-20189022739,THEFT UNDER - BICYCLE,2018-06-11T00:00:00,2018,June,Monday,11,162,10,2018-07-17T00:00:00,2018,July,Tuesday,17,198,10,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,UK,SIBELIUS 2,RC,18,WHI,1150.0,STOLEN,7212,"{'type': 'Point', 'coordinates': (-79.36267396, 43.65942878)}"
-7216,13790,GO-20189024550,THEFT UNDER - BICYCLE,2018-07-21T00:00:00,2018,July,Saturday,21,202,22,2018-07-30T00:00:00,2018,July,Monday,30,211,22,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,1,BLK,500.0,STOLEN,7213,"{'type': 'Point', 'coordinates': (-79.36222438, 43.65609425)}"
-7217,13872,GO-2015875575,THEFT UNDER,2015-05-12T00:00:00,2015,May,Tuesday,12,132,15,2015-05-19T00:00:00,2015,May,Tuesday,19,139,18,D51,Toronto,72,Regent Park (72),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SCHWINN,,MT,18,BLK,450.0,STOLEN,7214,"{'type': 'Point', 'coordinates': (-79.36267396, 43.65942878)}"
-7218,13879,GO-20151003924,THEFT UNDER,2015-06-10T00:00:00,2015,June,Wednesday,10,161,0,2015-06-15T00:00:00,2015,June,Monday,15,166,12,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,SANTA CRUZ,KING CITY CRUIS,EL,6,BLK,1300.0,STOLEN,7215,"{'type': 'Point', 'coordinates': (-79.36267396, 43.65942878)}"
-7219,13882,GO-20159004090,THEFT UNDER,2015-07-01T00:00:00,2015,July,Wednesday,1,182,7,2015-07-01T00:00:00,2015,July,Wednesday,1,182,17,D51,Toronto,72,Regent Park (72),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,,MT,21,GRY,0.0,STOLEN,7216,"{'type': 'Point', 'coordinates': (-79.35649069, 43.65737489000001)}"
-7220,13933,GO-20151956424,THEFT UNDER,2015-11-14T00:00:00,2015,November,Saturday,14,318,12,2015-11-14T00:00:00,2015,November,Saturday,14,318,14,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,UNKNOWN,OT,10,RED,400.0,STOLEN,7217,"{'type': 'Point', 'coordinates': (-79.36296147, 43.660087000000004)}"
-7221,13954,GO-2016568930,THEFT UNDER - BICYCLE,2016-03-12T00:00:00,2016,March,Saturday,12,72,8,2016-03-15T00:00:00,2016,March,Tuesday,15,75,17,D51,Toronto,72,Regent Park (72),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,OT,0,BLKGRY,400.0,STOLEN,7218,"{'type': 'Point', 'coordinates': (-79.36267396, 43.65942878)}"
-7222,13978,GO-20169006283,THEFT UNDER,2016-06-23T00:00:00,2016,June,Thursday,23,175,17,2016-06-23T00:00:00,2016,June,Thursday,23,175,21,D51,Toronto,72,Regent Park (72),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,RM,RC50PERFORMANCE,RG,27,BLK,1120.0,STOLEN,7219,"{'type': 'Point', 'coordinates': (-79.36198608, 43.65760269)}"
-7223,13986,GO-20169007133,THEFT UNDER,2016-07-07T00:00:00,2016,July,Thursday,7,189,21,2016-07-13T00:00:00,2016,July,Wednesday,13,195,10,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,,RG,1,BLK,350.0,STOLEN,7220,"{'type': 'Point', 'coordinates': (-79.35810175, 43.6591204)}"
-7224,14029,GO-20161985170,THEFT UNDER - BICYCLE,2016-11-08T00:00:00,2016,November,Tuesday,8,313,6,2016-11-08T00:00:00,2016,November,Tuesday,8,313,8,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,OT,0,RED,600.0,STOLEN,7222,"{'type': 'Point', 'coordinates': (-79.36597615, 43.65944077)}"
-7225,11887,GO-20169007689,THEFT UNDER - BICYCLE,2016-07-17T00:00:00,2016,July,Sunday,17,199,21,2016-07-25T00:00:00,2016,July,Monday,25,207,0,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,REVE,RC,18,BLU,800.0,STOLEN,7223,"{'type': 'Point', 'coordinates': (-79.37585959, 43.66043919)}"
-7226,17434,GO-20142252913,THEFT UNDER,2014-06-08T00:00:00,2014,June,Sunday,8,159,19,2014-06-09T00:00:00,2014,June,Monday,9,160,11,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,GT5,EL,1,LBL,1300.0,STOLEN,7224,"{'type': 'Point', 'coordinates': (-79.37352514, 43.66094246)}"
-7227,23621,GO-20159004202,THEFT UNDER,2015-07-06T00:00:00,2015,July,Monday,6,187,2,2015-07-06T00:00:00,2015,July,Monday,6,187,9,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,EL,32,RED,2500.0,STOLEN,7225,"{'type': 'Point', 'coordinates': (-79.37585959, 43.66043919)}"
-7228,14063,GO-20179006374,THEFT UNDER - BICYCLE,2017-05-15T00:00:00,2017,May,Monday,15,135,8,2017-05-15T00:00:00,2017,May,Monday,15,135,14,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,1,GRY,200.0,STOLEN,7226,"{'type': 'Point', 'coordinates': (-79.35888422, 43.65683302)}"
-7229,14362,GO-20149003547,THEFT UNDER,2014-05-23T00:00:00,2014,May,Friday,23,143,19,2014-05-24T00:00:00,2014,May,Saturday,24,144,11,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,21,OTH,250.0,STOLEN,7227,"{'type': 'Point', 'coordinates': (-79.35682972, 43.66437541)}"
-7230,15700,GO-20191771414,THEFT UNDER - BICYCLE,2019-08-31T00:00:00,2019,August,Saturday,31,243,17,2019-09-15T00:00:00,2019,September,Sunday,15,258,12,D51,Toronto,72,Regent Park (72),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,OT,0,BLKGLD,1200.0,STOLEN,7228,"{'type': 'Point', 'coordinates': (-79.36267396, 43.65942878)}"
-7231,15708,GO-20191837309,THEFT FROM MOTOR VEHICLE UNDER,2019-09-10T00:00:00,2019,September,Tuesday,10,253,17,2019-09-13T00:00:00,2019,September,Friday,13,256,13,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN,,EL,1,,100.0,STOLEN,7229,"{'type': 'Point', 'coordinates': (-79.35649069, 43.65737489000001)}"
-7232,15759,GO-20209013694,THEFT UNDER,2020-05-16T00:00:00,2020,May,Saturday,16,137,21,2020-05-22T00:00:00,2020,May,Friday,22,143,12,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM 2 DISC,RG,27,BLK,699.0,STOLEN,7230,"{'type': 'Point', 'coordinates': (-79.36019846, 43.66007445)}"
-7233,15771,GO-20201030075,THEFT UNDER,2020-06-04T00:00:00,2020,June,Thursday,4,156,17,2020-06-04T00:00:00,2020,June,Thursday,4,156,17,D51,Toronto,72,Regent Park (72),"Open Areas (Lakes, Parks, Rivers)",Outside,KHS,,MT,21,BLK,,STOLEN,7231,"{'type': 'Point', 'coordinates': (-79.35946503, 43.65830111)}"
-7234,15774,GO-20201052908,THEFT UNDER - BICYCLE,2020-06-07T00:00:00,2020,June,Sunday,7,159,22,2020-06-08T00:00:00,2020,June,Monday,8,160,10,D51,Toronto,72,Regent Park (72),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,,OT,10,PLE,700.0,STOLEN,7232,"{'type': 'Point', 'coordinates': (-79.35925501, 43.65771025)}"
-7235,15776,GO-20209015360,THEFT UNDER,2020-06-14T00:00:00,2020,June,Sunday,14,166,19,2020-06-14T00:00:00,2020,June,Sunday,14,166,21,D51,Toronto,72,Regent Park (72),Convenience Stores,Commercial,SC,BREAKER,MT,7,BLU,338.0,STOLEN,7233,"{'type': 'Point', 'coordinates': (-79.36597615, 43.65944077)}"
-7236,15829,GO-20209023602,THEFT UNDER,2020-09-08T00:00:00,2020,September,Tuesday,8,252,20,2020-09-17T00:00:00,2020,September,Thursday,17,261,18,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,SP,HURRICANE,MT,18,BLK,200.0,STOLEN,7234,"{'type': 'Point', 'coordinates': (-79.35682972, 43.66437541)}"
-7237,16339,GO-20191356244,THEFT UNDER,2019-07-08T00:00:00,2019,July,Monday,8,189,20,2019-07-19T00:00:00,2019,July,Friday,19,200,16,D51,Toronto,72,Regent Park (72),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,OT,0,BLK,168.0,STOLEN,7235,"{'type': 'Point', 'coordinates': (-79.35785372, 43.66056871)}"
-7238,16363,GO-20199026864,THEFT UNDER,2019-08-19T00:00:00,2019,August,Monday,19,231,20,2019-08-19T00:00:00,2019,August,Monday,19,231,20,D51,Toronto,72,Regent Park (72),Schools During Un-Supervised Activity,Educational,NO,,RG,3,BRZ,700.0,STOLEN,7236,"{'type': 'Point', 'coordinates': (-79.36198608, 43.65760269)}"
-7239,16376,GO-20199029771,THEFT UNDER,2019-09-12T00:00:00,2019,September,Thursday,12,255,18,2019-09-12T00:00:00,2019,September,Thursday,12,255,21,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM 2,RG,27,BLU,1050.0,STOLEN,7237,"{'type': 'Point', 'coordinates': (-79.36624697, 43.66011067)}"
-7240,20745,GO-20209019851,THEFT UNDER,2020-08-10T00:00:00,2020,August,Monday,10,223,13,2020-08-10T00:00:00,2020,August,Monday,10,223,19,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,DB,,RG,20,BLU,200.0,STOLEN,7704,"{'type': 'Point', 'coordinates': (-79.37103886, 43.65160431)}"
-7241,16414,GO-20199038252,THEFT UNDER,2019-11-20T00:00:00,2019,November,Wednesday,20,324,10,2019-11-20T00:00:00,2019,November,Wednesday,20,324,22,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,MO,REFORM,RG,24,GRY,620.0,STOLEN,7238,"{'type': 'Point', 'coordinates': (-79.3647333, 43.66044764)}"
-7242,16418,GO-20192320439,B&E W'INTENT,2019-11-21T00:00:00,2019,November,Thursday,21,325,5,2019-11-21T00:00:00,2019,November,Thursday,21,325,9,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,ZZZ,,OT,0,BLK,500.0,STOLEN,7239,"{'type': 'Point', 'coordinates': (-79.36267396, 43.65942878)}"
-7243,16425,GO-20199041750,THEFT UNDER,2019-12-15T00:00:00,2019,December,Sunday,15,349,6,2019-12-22T00:00:00,2019,December,Sunday,22,356,15,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,KH,ALITE 500,MT,10,BLK,600.0,STOLEN,7240,"{'type': 'Point', 'coordinates': (-79.35925501, 43.65771025)}"
-7244,16426,GO-20199041750,THEFT UNDER,2019-12-15T00:00:00,2019,December,Sunday,15,349,6,2019-12-22T00:00:00,2019,December,Sunday,22,356,15,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,KH,ALITE 1000,MT,10,BLK,900.0,STOLEN,7241,"{'type': 'Point', 'coordinates': (-79.35925501, 43.65771025)}"
-7245,16427,GO-20199041750,THEFT UNDER,2019-12-15T00:00:00,2019,December,Sunday,15,349,6,2019-12-22T00:00:00,2019,December,Sunday,22,356,15,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,KH,ALITE 500,MT,10,BLK,600.0,STOLEN,7242,"{'type': 'Point', 'coordinates': (-79.35925501, 43.65771025)}"
-7246,20754,GO-20201550944,B&E,2020-08-14T00:00:00,2020,August,Friday,14,227,15,2020-08-18T00:00:00,2020,August,Tuesday,18,231,19,D51,Toronto,73,Moss Park (73),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,CCM,TRAILHEAD,MT,21,,660.0,STOLEN,7243,"{'type': 'Point', 'coordinates': (-79.36813583, 43.66211281)}"
-7247,16743,GO-2019726171,B&E,2019-02-20T00:00:00,2019,February,Wednesday,20,51,0,2019-04-23T00:00:00,2019,April,Tuesday,23,113,8,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,DEVINCI,,MT,18,BLUWHI,1500.0,STOLEN,7244,"{'type': 'Point', 'coordinates': (-79.36126289, 43.65912823)}"
-7248,16756,GO-20199015652,THEFT UNDER,2019-05-20T00:00:00,2019,May,Monday,20,140,1,2019-05-20T00:00:00,2019,May,Monday,20,140,2,D51,Toronto,72,Regent Park (72),Bar / Restaurant,Commercial,OT,,RC,40,BLK,300.0,STOLEN,7245,"{'type': 'Point', 'coordinates': (-79.36624697, 43.66011067)}"
-7249,2418,GO-2018959425,B&E,2018-05-21T00:00:00,2018,May,Monday,21,141,6,2018-05-21T00:00:00,2018,May,Monday,21,141,13,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,TREK,,RG,0,DARK,600.0,UNKNOWN,7729,"{'type': 'Point', 'coordinates': (-79.37008264, 43.656162280000004)}"
-7250,16759,GO-20199016492,B&E,2019-05-24T00:00:00,2019,May,Friday,24,144,8,2019-05-27T00:00:00,2019,May,Monday,27,147,15,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,AMIRA COMP,OT,11,BLKWHI,3000.0,STOLEN,7246,"{'type': 'Point', 'coordinates': (-79.36267396, 43.65942878)}"
-7251,16916,GO-20179006970,THEFT UNDER,2017-05-24T00:00:00,2017,May,Wednesday,24,144,14,2017-05-25T00:00:00,2017,May,Thursday,25,145,15,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,OT,UMBRIA 1,RG,21,MRN,300.0,STOLEN,7247,"{'type': 'Point', 'coordinates': (-79.36126289, 43.65912823)}"
-7252,16956,GO-20179010872,THEFT UNDER - BICYCLE,2017-07-20T00:00:00,2017,July,Thursday,20,201,20,2017-07-23T00:00:00,2017,July,Sunday,23,204,17,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,1,OTH,0.0,STOLEN,7248,"{'type': 'Point', 'coordinates': (-79.36496226, 43.65694355)}"
-7253,16993,GO-20179017061,THEFT UNDER - BICYCLE,2017-09-28T00:00:00,2017,September,Thursday,28,271,8,2017-10-12T00:00:00,2017,October,Thursday,12,285,23,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,FO,30,,1000.0,STOLEN,7249,"{'type': 'Point', 'coordinates': (-79.36126289, 43.65912823)}"
-7254,17021,GO-2018654124,THEFT UNDER - BICYCLE,2018-04-12T00:00:00,2018,April,Thursday,12,102,9,2018-04-12T00:00:00,2018,April,Thursday,12,102,10,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MERRIN BICYCLE,,OT,0,,,STOLEN,7250,"{'type': 'Point', 'coordinates': (-79.36252926, 43.65680676)}"
-7255,17024,GO-20189012776,THEFT UNDER - BICYCLE,2018-04-22T00:00:00,2018,April,Sunday,22,112,11,2018-04-25T00:00:00,2018,April,Wednesday,25,115,11,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,25,GRN,1000.0,STOLEN,7251,"{'type': 'Point', 'coordinates': (-79.3647333, 43.66044764)}"
-7256,17035,GO-20189016479,THEFT UNDER - BICYCLE,2018-05-22T00:00:00,2018,May,Tuesday,22,142,12,2018-05-28T00:00:00,2018,May,Monday,28,148,10,D51,Toronto,72,Regent Park (72),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,VENTURA COMP,RC,18,WHI,1200.0,STOLEN,7252,"{'type': 'Point', 'coordinates': (-79.3647333, 43.66044764)}"
-7257,17045,GO-20189017989,THEFT UNDER - BICYCLE,2018-06-08T00:00:00,2018,June,Friday,8,159,17,2018-06-09T00:00:00,2018,June,Saturday,9,160,11,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,1,BLK,400.0,STOLEN,7253,"{'type': 'Point', 'coordinates': (-79.36296147, 43.660087000000004)}"
-7258,17058,GO-20181180846,B&E,2018-06-11T00:00:00,2018,June,Monday,11,162,0,2018-06-29T00:00:00,2018,June,Friday,29,180,8,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,BIANCHI,INTENSO,RG,22,BLKWHI,2200.0,STOLEN,7254,"{'type': 'Point', 'coordinates': (-79.36624697, 43.66011067)}"
-7259,17059,GO-20181180846,B&E,2018-06-11T00:00:00,2018,June,Monday,11,162,0,2018-06-29T00:00:00,2018,June,Friday,29,180,8,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,TARMAC,RG,22,,1800.0,STOLEN,7255,"{'type': 'Point', 'coordinates': (-79.36624697, 43.66011067)}"
-7260,17082,GO-20189024780,THEFT UNDER - BICYCLE,2018-07-30T00:00:00,2018,July,Monday,30,211,18,2018-08-01T00:00:00,2018,August,Wednesday,1,213,22,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,OT,CARBON FIBER,RC,14,RED,400.0,STOLEN,7256,"{'type': 'Point', 'coordinates': (-79.3647333, 43.66044764)}"
-7261,17115,GO-20181967945,THEFT UNDER - BICYCLE,2018-10-12T00:00:00,2018,October,Friday,12,285,7,2018-10-15T00:00:00,2018,October,Monday,15,288,21,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,RG,0,,250.0,STOLEN,7257,"{'type': 'Point', 'coordinates': (-79.35605001000002, 43.66165771)}"
-7262,17134,GO-20159003120,THEFT UNDER,2015-05-26T00:00:00,2015,May,Tuesday,26,146,11,2015-05-26T00:00:00,2015,May,Tuesday,26,146,20,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,UK,NOVARA,MT,18,BLK,250.0,STOLEN,7258,"{'type': 'Point', 'coordinates': (-79.3632636, 43.66077482)}"
-7263,17150,GO-20151187004,THEFT UNDER,2015-07-13T00:00:00,2015,July,Monday,13,194,14,2015-07-13T00:00:00,2015,July,Monday,13,194,15,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,EL,1,BLK,1300.0,STOLEN,7259,"{'type': 'Point', 'coordinates': (-79.36252926, 43.65680676)}"
-7264,17164,GO-20159006656,THEFT UNDER,2015-06-08T00:00:00,2015,June,Monday,8,159,23,2015-09-02T00:00:00,2015,September,Wednesday,2,245,13,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,EM,DART RED,EL,40,RED,790.0,STOLEN,7260,"{'type': 'Point', 'coordinates': (-79.36267396, 43.65942878)}"
-7265,17169,GO-20159006968,THEFT UNDER,2015-09-07T00:00:00,2015,September,Monday,7,250,5,2015-09-09T00:00:00,2015,September,Wednesday,9,252,21,D51,Toronto,72,Regent Park (72),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,UNO,RG,1,GRN,300.0,STOLEN,7261,"{'type': 'Point', 'coordinates': (-79.36019846, 43.66007445)}"
-7266,17181,GO-20151805124,THEFT UNDER,2015-10-19T00:00:00,2015,October,Monday,19,292,20,2015-10-20T00:00:00,2015,October,Tuesday,20,293,10,D51,Toronto,72,Regent Park (72),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,MOTORORIZED,SC,1,BLK,2000.0,STOLEN,7262,"{'type': 'Point', 'coordinates': (-79.36597615, 43.65944077)}"
-7267,17199,GO-20169000418,THEFT UNDER,2016-01-12T00:00:00,2016,January,Tuesday,12,12,16,2016-01-12T00:00:00,2016,January,Tuesday,12,12,16,D51,Toronto,72,Regent Park (72),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SIRRUS,RG,24,RED,700.0,STOLEN,7263,"{'type': 'Point', 'coordinates': (-79.3649748, 43.66105179)}"
-7268,17200,GO-20169000418,THEFT UNDER,2016-01-12T00:00:00,2016,January,Tuesday,12,12,16,2016-01-12T00:00:00,2016,January,Tuesday,12,12,16,D51,Toronto,72,Regent Park (72),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,PRO TEAM FLOOR,OT,1,,52.0,STOLEN,7264,"{'type': 'Point', 'coordinates': (-79.3649748, 43.66105179)}"
-7269,17241,GO-20169006574,THEFT UNDER - BICYCLE,2016-06-27T00:00:00,2016,June,Monday,27,179,22,2016-06-30T00:00:00,2016,June,Thursday,30,182,14,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,SEEK XL,TO,21,GRY,1600.0,STOLEN,7265,"{'type': 'Point', 'coordinates': (-79.3647333, 43.66044764)}"
-7270,17245,GO-20161182496,THEFT UNDER - BICYCLE,2016-07-06T00:00:00,2016,July,Wednesday,6,188,10,2016-07-06T00:00:00,2016,July,Wednesday,6,188,15,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,,OT,18,DBLSIL,600.0,STOLEN,7266,"{'type': 'Point', 'coordinates': (-79.35649069, 43.65737489000001)}"
-7271,17263,GO-20169009784,THEFT UNDER - BICYCLE,2016-08-31T00:00:00,2016,August,Wednesday,31,244,21,2016-09-01T00:00:00,2016,September,Thursday,1,245,9,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,20,YEL,2500.0,STOLEN,7267,"{'type': 'Point', 'coordinates': (-79.36546109, 43.65817175)}"
-7272,17280,GO-20161822332,THEFT UNDER - BICYCLE,2016-10-08T00:00:00,2016,October,Saturday,8,282,11,2016-10-13T00:00:00,2016,October,Thursday,13,287,15,D51,Toronto,72,Regent Park (72),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,FO,1,ONG,,UNKNOWN,7268,"{'type': 'Point', 'coordinates': (-79.35842146, 43.66188892)}"
-7273,17422,GO-20141634799,THEFT UNDER,2014-03-03T00:00:00,2014,March,Monday,3,62,20,2014-03-03T00:00:00,2014,March,Monday,3,62,21,D51,Toronto,72,Regent Park (72),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,MICGARGI,,OT,1,BLK,1500.0,STOLEN,7269,"{'type': 'Point', 'coordinates': (-79.35687193, 43.65823653)}"
-7274,17444,GO-20142421080,THEFT UNDER,2014-06-28T00:00:00,2014,June,Saturday,28,179,14,2014-07-03T00:00:00,2014,July,Thursday,3,184,11,D51,Toronto,72,Regent Park (72),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,MARIN,CHALLENGER,MT,27,WHI,700.0,STOLEN,7270,"{'type': 'Point', 'coordinates': (-79.36174292, 43.66035993)}"
-7275,17477,GO-20149006687,THEFT UNDER,2014-09-03T00:00:00,2014,September,Wednesday,3,246,13,2014-09-08T00:00:00,2014,September,Monday,8,251,13,D51,Toronto,72,Regent Park (72),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,GI,TCR 1,TO,10,BLK,1500.0,STOLEN,7271,"{'type': 'Point', 'coordinates': (-79.36098009, 43.66053078)}"
-7276,17506,GO-2015434908,THEFT UNDER,2015-03-13T00:00:00,2015,March,Friday,13,72,10,2015-03-14T00:00:00,2015,March,Saturday,14,73,16,D51,Toronto,72,Regent Park (72),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,FUJI,,OT,1,BRN,700.0,STOLEN,7272,"{'type': 'Point', 'coordinates': (-79.36019846, 43.66007445)}"
-7277,17508,GO-20159001825,THEFT UNDER,2015-04-10T00:00:00,2015,April,Friday,10,100,9,2015-04-10T00:00:00,2015,April,Friday,10,100,15,D51,Toronto,72,Regent Park (72),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,IN,INTRIGUE,MT,21,SIL,150.0,STOLEN,7273,"{'type': 'Point', 'coordinates': (-79.3632636, 43.66077482)}"
-7278,18805,GO-20209025115,THEFT UNDER,2020-09-30T00:00:00,2020,September,Wednesday,30,274,22,2020-10-01T00:00:00,2020,October,Thursday,1,275,10,D51,Toronto,72,Regent Park (72),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,,OT,7,DBL,250.0,STOLEN,7274,"{'type': 'Point', 'coordinates': (-79.35687193, 43.65823653)}"
-7279,19589,GO-20201805687,B&E,2020-09-23T00:00:00,2020,September,Wednesday,23,267,1,2020-09-23T00:00:00,2020,September,Wednesday,23,267,13,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,MEC,MT,10,LGR,300.0,STOLEN,7275,"{'type': 'Point', 'coordinates': (-79.35925501, 43.65771025)}"
-7280,19590,GO-20201832948,THEFT OF EBIKE UNDER $5000,2020-09-26T00:00:00,2020,September,Saturday,26,270,23,2020-09-27T00:00:00,2020,September,Sunday,27,271,0,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,EL,8,BLK,2500.0,STOLEN,7276,"{'type': 'Point', 'coordinates': (-79.35785372, 43.66056871)}"
-7281,19600,GO-20209027081,THEFT UNDER,2020-10-20T00:00:00,2020,October,Tuesday,20,294,15,2020-10-20T00:00:00,2020,October,Tuesday,20,294,15,D51,Toronto,72,Regent Park (72),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,TO,18,,200.0,STOLEN,7277,"{'type': 'Point', 'coordinates': (-79.36597615, 43.65944077)}"
-7282,19984,GO-20181885005,THEFT UNDER - BICYCLE,2018-10-06T00:00:00,2018,October,Saturday,6,279,22,2018-10-11T00:00:00,2018,October,Thursday,11,284,8,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,MT,0,,,UNKNOWN,7278,"{'type': 'Point', 'coordinates': (-79.35605001000002, 43.66165771)}"
-7283,19994,GO-20181984127,B&E W'INTENT,2018-10-24T00:00:00,2018,October,Wednesday,24,297,2,2018-10-27T00:00:00,2018,October,Saturday,27,300,16,D51,Toronto,72,Regent Park (72),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,,BM,15,BLKGLD,600.0,STOLEN,7279,"{'type': 'Point', 'coordinates': (-79.35741721, 43.65952408)}"
-7284,19995,GO-20181984127,B&E W'INTENT,2018-10-24T00:00:00,2018,October,Wednesday,24,297,2,2018-10-27T00:00:00,2018,October,Saturday,27,300,16,D51,Toronto,72,Regent Park (72),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,MT,17,GRYBLU,1700.0,STOLEN,7280,"{'type': 'Point', 'coordinates': (-79.35741721, 43.65952408)}"
-7285,20012,GO-2019243279,POSSESSION PROPERTY OBC UNDER,2019-02-07T00:00:00,2019,February,Thursday,7,38,19,2019-02-07T00:00:00,2019,February,Thursday,7,38,19,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,,OT,12,RED,,RECOVERED,7281,"{'type': 'Point', 'coordinates': (-79.35605001000002, 43.66165771)}"
-7286,20029,GO-2019882914,B&E,2019-04-29T00:00:00,2019,April,Monday,29,119,9,2019-05-15T00:00:00,2019,May,Wednesday,15,135,9,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,VOLAGI,MT,0,,1500.0,STOLEN,7282,"{'type': 'Point', 'coordinates': (-79.36267396, 43.65942878)}"
-7287,20252,GO-20171806093,THEFT UNDER - BICYCLE,2017-10-03T00:00:00,2017,October,Tuesday,3,276,17,2017-10-05T00:00:00,2017,October,Thursday,5,278,12,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,ELECTRA,TOWNIE EURO 8D,OT,8,BGE,850.0,STOLEN,7283,"{'type': 'Point', 'coordinates': (-79.36318424, 43.6558798)}"
-7288,20276,GO-20173073945,THEFT UNDER - BICYCLE,2017-11-26T00:00:00,2017,November,Sunday,26,330,9,2017-11-26T00:00:00,2017,November,Sunday,26,330,11,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,MT,21,DGR,,STOLEN,7284,"{'type': 'Point', 'coordinates': (-79.36252926, 43.65680676)}"
-7289,20312,GO-20189017756,THEFT UNDER - BICYCLE,2018-06-06T00:00:00,2018,June,Wednesday,6,157,18,2018-06-07T00:00:00,2018,June,Thursday,7,158,12,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,21,ONG,900.0,STOLEN,7285,"{'type': 'Point', 'coordinates': (-79.35685690000001, 43.65820104)}"
-7290,20313,GO-20189017756,THEFT UNDER - BICYCLE,2018-06-06T00:00:00,2018,June,Wednesday,6,157,18,2018-06-07T00:00:00,2018,June,Thursday,7,158,12,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,NO,,RG,21,LBL,800.0,STOLEN,7286,"{'type': 'Point', 'coordinates': (-79.35685690000001, 43.65820104)}"
-7291,20355,GO-20181535928,THEFT UNDER - BICYCLE,2018-07-12T00:00:00,2018,July,Thursday,12,193,23,2018-08-20T00:00:00,2018,August,Monday,20,232,8,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,HOOLIGAN,,MT,12,WHI,75.0,STOLEN,7287,"{'type': 'Point', 'coordinates': (-79.36126289, 43.65912823)}"
-7292,20361,GO-20181596405,THEFT OF EBIKE UNDER $5000,2018-08-04T00:00:00,2018,August,Saturday,4,216,3,2018-08-29T00:00:00,2018,August,Wednesday,29,241,7,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,ZHUOTENG HARLEY,EL,12,,1800.0,STOLEN,7288,"{'type': 'Point', 'coordinates': (-79.36267396, 43.65942878)}"
-7293,20384,GO-2015866961,THEFT UNDER,2015-05-24T00:00:00,2015,May,Sunday,24,144,9,2015-05-24T00:00:00,2015,May,Sunday,24,144,18,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BIANCHI,,MT,5,,200.0,STOLEN,7289,"{'type': 'Point', 'coordinates': (-79.36252926, 43.65680676)}"
-7294,20430,GO-20159006535,THEFT UNDER,2015-08-29T00:00:00,2015,August,Saturday,29,241,3,2015-08-30T00:00:00,2015,August,Sunday,30,242,20,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,PE,,TO,10,BLK,250.0,STOLEN,7290,"{'type': 'Point', 'coordinates': (-79.36019846, 43.66007445)}"
-7295,20440,GO-20159007608,THEFT UNDER,2015-09-22T00:00:00,2015,September,Tuesday,22,265,16,2015-09-22T00:00:00,2015,September,Tuesday,22,265,23,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,VIA,RG,3,BLK,300.0,STOLEN,7291,"{'type': 'Point', 'coordinates': (-79.36267396, 43.65942878)}"
-7296,20454,GO-20159009194,THEFT UNDER,2015-10-30T00:00:00,2015,October,Friday,30,303,19,2015-10-30T00:00:00,2015,October,Friday,30,303,23,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,8.3 D.S 19 GRAP,RG,30,GRY,700.0,STOLEN,7292,"{'type': 'Point', 'coordinates': (-79.3647333, 43.66044764)}"
-7297,20470,GO-2016131442,THEFT UNDER,2016-01-21T00:00:00,2016,January,Thursday,21,21,2,2016-01-22T00:00:00,2016,January,Friday,22,22,18,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,UNKNOWN,OT,1,BLUPLE,200.0,STOLEN,7293,"{'type': 'Point', 'coordinates': (-79.36496226, 43.65694355)}"
-7298,20472,GO-2016280475,THEFT UNDER,2015-12-25T00:00:00,2015,December,Friday,25,359,12,2016-02-16T00:00:00,2016,February,Tuesday,16,47,16,D51,Toronto,72,Regent Park (72),"Single Home, House (Attach Garage, Cottage, Mobile)",House,EMMO,,EL,1,BLK,950.0,STOLEN,7294,"{'type': 'Point', 'coordinates': (-79.35920465, 43.66370719)}"
-7299,20509,GO-20169007238,THEFT UNDER,2016-07-14T00:00:00,2016,July,Thursday,14,196,22,2016-07-14T00:00:00,2016,July,Thursday,14,196,22,D51,Toronto,72,Regent Park (72),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,RG,1,BLK,400.0,STOLEN,7295,"{'type': 'Point', 'coordinates': (-79.36019846, 43.66007445)}"
-7300,20536,GO-20169010866,B&E,2016-09-17T00:00:00,2016,September,Saturday,17,261,1,2016-09-21T00:00:00,2016,September,Wednesday,21,265,11,D51,Toronto,72,Regent Park (72),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CANNONDALE,10 QUICK 5,RG,21,BLK,1000.0,STOLEN,7296,"{'type': 'Point', 'coordinates': (-79.35925501, 43.65771025)}"
-7301,20574,GO-20179006020,THEFT UNDER - BICYCLE,2017-05-09T00:00:00,2017,May,Tuesday,9,129,18,2017-05-09T00:00:00,2017,May,Tuesday,9,129,22,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,TR,CROSS COUNTRY,MT,27,BLU,1200.0,STOLEN,7297,"{'type': 'Point', 'coordinates': (-79.36126289, 43.65912823)}"
-7302,20616,GO-20191525005,THEFT UNDER,2019-07-11T00:00:00,2019,July,Thursday,11,192,0,2019-08-12T00:00:00,2019,August,Monday,12,224,7,D51,Toronto,72,Regent Park (72),"Open Areas (Lakes, Parks, Rivers)",Outside,HUFFY,CRUISER,RG,1,BLK,200.0,STOLEN,7298,"{'type': 'Point', 'coordinates': (-79.36267396, 43.65942878)}"
-7303,20619,GO-20199026562,THEFT UNDER,2019-08-16T00:00:00,2019,August,Friday,16,228,2,2019-08-17T00:00:00,2019,August,Saturday,17,229,9,D51,Toronto,72,Regent Park (72),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,LIV ALIGHT 3,RG,20,BLK,530.0,STOLEN,7299,"{'type': 'Point', 'coordinates': (-79.3632636, 43.66077482)}"
-7304,20739,GO-20201410768,B&E,2020-07-29T00:00:00,2020,July,Wednesday,29,211,2,2020-07-29T00:00:00,2020,July,Wednesday,29,211,11,D51,Toronto,72,Regent Park (72),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,SUPERCYCLE,KROSSROADS,MT,0,GRYONG,,STOLEN,7300,"{'type': 'Point', 'coordinates': (-79.35649069, 43.65737489000001)}"
-7305,20767,GO-20209021420,THEFT UNDER,2020-08-26T00:00:00,2020,August,Wednesday,26,239,7,2020-08-26T00:00:00,2020,August,Wednesday,26,239,13,D51,Toronto,72,Regent Park (72),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,MADONE,RC,10,WHI,2500.0,STOLEN,7301,"{'type': 'Point', 'coordinates': (-79.35687193, 43.65823653)}"
-7306,20870,GO-20149004245,THEFT UNDER,2014-06-12T00:00:00,2014,June,Thursday,12,163,17,2014-06-19T00:00:00,2014,June,Thursday,19,170,16,D51,Toronto,72,Regent Park (72),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RG,7,BLK,400.0,STOLEN,7302,"{'type': 'Point', 'coordinates': (-79.36047375, 43.65647925)}"
-7307,20872,GO-20149004306,THEFT UNDER,2014-06-21T00:00:00,2014,June,Saturday,21,172,12,2014-06-21T00:00:00,2014,June,Saturday,21,172,18,D51,Toronto,72,Regent Park (72),Unknown,Other,UK,NUMBER 2,RG,1,BLK,900.0,STOLEN,7303,"{'type': 'Point', 'coordinates': (-79.35649069, 43.65737489000001)}"
-7308,20891,GO-20149005122,THEFT UNDER,2014-07-18T00:00:00,2014,July,Friday,18,199,8,2014-07-18T00:00:00,2014,July,Friday,18,199,14,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,RG,10,WHI,0.0,STOLEN,7304,"{'type': 'Point', 'coordinates': (-79.36044709, 43.66067264)}"
-7309,20919,GO-20142897235,THEFT FROM MOTOR VEHICLE UNDER,2014-08-13T00:00:00,2014,August,Wednesday,13,225,23,2014-09-12T00:00:00,2014,September,Friday,12,255,18,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,ARGON,GALLIUM PRO,RC,12,BLKWHI,3500.0,STOLEN,7305,"{'type': 'Point', 'coordinates': (-79.35925501, 43.65771025)}"
-7310,1791,GO-20172000478,THEFT UNDER - BICYCLE,2017-11-04T00:00:00,2017,November,Saturday,4,308,12,2017-11-04T00:00:00,2017,November,Saturday,4,308,21,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,,MT,12,REDWHI,800.0,STOLEN,7306,"{'type': 'Point', 'coordinates': (-79.37103886, 43.65160431)}"
-7311,15681,GO-20199027765,THEFT UNDER,2019-08-26T00:00:00,2019,August,Monday,26,238,13,2019-08-26T00:00:00,2019,August,Monday,26,238,15,D51,Toronto,73,Moss Park (73),"Gas Station (Self, Full, Attached Convenience)",Commercial,NO,,TO,24,RED,1200.0,STOLEN,7307,"{'type': 'Point', 'coordinates': (-79.36785245, 43.6503944)}"
-7312,17436,GO-20149003944,THEFT UNDER,2014-06-04T00:00:00,2014,June,Wednesday,4,155,19,2014-06-10T00:00:00,2014,June,Tuesday,10,161,11,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,VFR 3,OT,18,SIL,500.0,STOLEN,7308,"{'type': 'Point', 'coordinates': (-79.36822197, 43.65127732)}"
-7313,15688,GO-20199028691,THEFT UNDER,2019-09-04T00:00:00,2019,September,Wednesday,4,247,1,2019-09-04T00:00:00,2019,September,Wednesday,4,247,10,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MO,,BM,1,,373.0,STOLEN,7309,"{'type': 'Point', 'coordinates': (-79.359544, 43.65670469)}"
-7314,11900,GO-20161305951,THEFT UNDER - BICYCLE,2016-07-25T00:00:00,2016,July,Monday,25,207,13,2016-07-25T00:00:00,2016,July,Monday,25,207,13,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,CONTINENTAL,RG,3,BLK,1000.0,STOLEN,7310,"{'type': 'Point', 'coordinates': (-79.36755676, 43.65636789)}"
-7315,20755,GO-20201550944,B&E,2020-08-14T00:00:00,2020,August,Friday,14,227,15,2020-08-18T00:00:00,2020,August,Tuesday,18,231,19,D51,Toronto,73,Moss Park (73),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,CCM,29ER,MT,21,,620.0,STOLEN,7311,"{'type': 'Point', 'coordinates': (-79.36813583, 43.66211281)}"
-7316,20756,GO-20201550944,B&E,2020-08-14T00:00:00,2020,August,Friday,14,227,15,2020-08-18T00:00:00,2020,August,Tuesday,18,231,19,D51,Toronto,73,Moss Park (73),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,CCM,STATIC,MT,21,,920.0,STOLEN,7312,"{'type': 'Point', 'coordinates': (-79.36813583, 43.66211281)}"
-7317,20757,GO-20201550944,B&E,2020-08-14T00:00:00,2020,August,Friday,14,227,15,2020-08-18T00:00:00,2020,August,Tuesday,18,231,19,D51,Toronto,73,Moss Park (73),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,CCM,SUTHERLAND,OT,14,,630.0,STOLEN,7313,"{'type': 'Point', 'coordinates': (-79.36813583, 43.66211281)}"
-7318,20758,GO-20201550944,B&E,2020-08-14T00:00:00,2020,August,Friday,14,227,15,2020-08-18T00:00:00,2020,August,Tuesday,18,231,19,D51,Toronto,73,Moss Park (73),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,CCM,,OT,0,,660.0,STOLEN,7314,"{'type': 'Point', 'coordinates': (-79.36813583, 43.66211281)}"
-7319,20759,GO-20201550944,B&E,2020-08-14T00:00:00,2020,August,Friday,14,227,15,2020-08-18T00:00:00,2020,August,Tuesday,18,231,19,D51,Toronto,73,Moss Park (73),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,CCM,KROSSPORT,OT,21,,500.0,STOLEN,7315,"{'type': 'Point', 'coordinates': (-79.36813583, 43.66211281)}"
-7320,20760,GO-20201550944,B&E,2020-08-14T00:00:00,2020,August,Friday,14,227,15,2020-08-18T00:00:00,2020,August,Tuesday,18,231,19,D51,Toronto,73,Moss Park (73),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,CCM,KROSSPORT,OT,21,,1000.0,STOLEN,7316,"{'type': 'Point', 'coordinates': (-79.36813583, 43.66211281)}"
-7321,20761,GO-20201550944,B&E,2020-08-14T00:00:00,2020,August,Friday,14,227,15,2020-08-18T00:00:00,2020,August,Tuesday,18,231,19,D51,Toronto,73,Moss Park (73),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,CCM,KROSSPORT,OT,21,,1000.0,STOLEN,7317,"{'type': 'Point', 'coordinates': (-79.36813583, 43.66211281)}"
-7322,20775,GO-20209023159,THEFT UNDER,2020-09-13T00:00:00,2020,September,Sunday,13,257,19,2020-09-14T00:00:00,2020,September,Monday,14,258,0,D51,Toronto,73,Moss Park (73),"Gas Station (Self, Full, Attached Convenience)",Commercial,CA,SUPERSIX EVO,RC,22,RED,4000.0,STOLEN,7318,"{'type': 'Point', 'coordinates': (-79.36785245, 43.6503944)}"
-7323,20777,GO-20209023399,THEFT UNDER,2020-09-10T00:00:00,2020,September,Thursday,10,254,10,2020-09-16T00:00:00,2020,September,Wednesday,16,260,11,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,ORPHEO 2,RG,18,BLK,980.0,STOLEN,7319,"{'type': 'Point', 'coordinates': (-79.35351296, 43.65500405)}"
-7324,20844,GO-20141351368,THEFT UNDER,2014-01-15T00:00:00,2014,January,Wednesday,15,15,21,2014-01-15T00:00:00,2014,January,Wednesday,15,15,23,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIMELLY,,EL,1,RED,750.0,STOLEN,7320,"{'type': 'Point', 'coordinates': (-79.3723499, 43.65817021)}"
-7325,20845,GO-20141455227,THEFT UNDER,2014-02-01T00:00:00,2014,February,Saturday,1,32,15,2014-02-02T00:00:00,2014,February,Sunday,2,33,11,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,STINGER,EL,30,WHI,850.0,STOLEN,7321,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7326,20846,GO-20141488887,THEFT UNDER,2014-02-07T00:00:00,2014,February,Friday,7,38,17,2014-02-07T00:00:00,2014,February,Friday,7,38,21,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,EL,1,BLK,,STOLEN,7322,"{'type': 'Point', 'coordinates': (-79.37341859, 43.65730333)}"
-7327,20861,GO-20142047547,THEFT UNDER,2014-05-07T00:00:00,2014,May,Wednesday,7,127,17,2014-05-09T00:00:00,2014,May,Friday,9,129,20,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,MT,24,ONG,700.0,STOLEN,7323,"{'type': 'Point', 'coordinates': (-79.36527402, 43.65426123)}"
-7328,20863,GO-20142137455,THEFT UNDER,2014-05-23T00:00:00,2014,May,Friday,23,143,15,2014-05-23T00:00:00,2014,May,Friday,23,143,17,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,OT,0,,250.0,STOLEN,7324,"{'type': 'Point', 'coordinates': (-79.36604724, 43.65176413)}"
-7329,20871,GO-20149004284,THEFT UNDER,2014-06-20T00:00:00,2014,June,Friday,20,171,13,2014-06-20T00:00:00,2014,June,Friday,20,171,17,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,TO,21,GRY,500.0,STOLEN,7325,"{'type': 'Point', 'coordinates': (-79.35940961, 43.65496744)}"
-7330,20880,GO-20149004663,THEFT UNDER,2014-07-02T00:00:00,2014,July,Wednesday,2,183,21,2014-07-03T00:00:00,2014,July,Thursday,3,184,11,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,AVALANCHE 3.0,MT,24,DBL,550.0,STOLEN,7326,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7331,20888,GO-20149004980,THEFT UNDER,2014-07-14T00:00:00,2014,July,Monday,14,195,0,2014-07-14T00:00:00,2014,July,Monday,14,195,15,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MA,2010 MARIN STIN,RG,24,DBL,,STOLEN,7327,"{'type': 'Point', 'coordinates': (-79.35693963, 43.65638235)}"
-7332,20897,GO-20149005333,THEFT UNDER,2014-07-25T00:00:00,2014,July,Friday,25,206,12,2014-07-25T00:00:00,2014,July,Friday,25,206,21,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,27,BLK,600.0,STOLEN,7328,"{'type': 'Point', 'coordinates': (-79.36924, 43.65389302)}"
-7333,23636,GO-20159005467,THEFT UNDER,2015-08-02T00:00:00,2015,August,Sunday,2,214,4,2015-08-07T00:00:00,2015,August,Friday,7,219,16,D51,Toronto,73,Moss Park (73),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,X-CALIBER 7,MT,60,PLE,1099.0,STOLEN,7329,"{'type': 'Point', 'coordinates': (-79.36047375, 43.65647925)}"
-7334,17440,GO-20142330954,THEFT UNDER,2014-06-20T00:00:00,2014,June,Friday,20,171,0,2014-06-20T00:00:00,2014,June,Friday,20,171,14,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPORTEK,,MT,10,MRN,,STOLEN,7330,"{'type': 'Point', 'coordinates': (-79.3723499, 43.65817021)}"
-7335,20920,GO-20142897235,THEFT FROM MOTOR VEHICLE UNDER,2014-08-13T00:00:00,2014,August,Wednesday,13,225,23,2014-09-12T00:00:00,2014,September,Friday,12,255,18,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,ALLEZ,RC,12,REDWHI,400.0,STOLEN,7331,"{'type': 'Point', 'coordinates': (-79.35925501, 43.65771025)}"
-7336,15689,GO-20199028691,THEFT UNDER,2019-09-04T00:00:00,2019,September,Wednesday,4,247,1,2019-09-04T00:00:00,2019,September,Wednesday,4,247,10,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,,RG,24,,677.0,STOLEN,7332,"{'type': 'Point', 'coordinates': (-79.359544, 43.65670469)}"
-7337,11911,GO-20169007753,THEFT UNDER - BICYCLE,2016-07-25T00:00:00,2016,July,Monday,25,207,18,2016-07-26T00:00:00,2016,July,Tuesday,26,208,0,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MA,DOMINICAN,OT,1,WHI,630.0,STOLEN,7333,"{'type': 'Point', 'coordinates': (-79.36981519, 43.65189242)}"
-7338,1822,GO-20172037438,B&E,2017-11-10T00:00:00,2017,November,Friday,10,314,0,2017-11-11T00:00:00,2017,November,Saturday,11,315,16,D51,Toronto,73,Moss Park (73),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,ROLL SPORT,RG,21,GRN,759.0,STOLEN,7334,"{'type': 'Point', 'coordinates': (-79.3664929, 43.66071879)}"
-7339,20898,GO-20149005711,THEFT UNDER,2014-08-05T00:00:00,2014,August,Tuesday,5,217,23,2014-08-07T00:00:00,2014,August,Thursday,7,219,17,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,HEART,RG,1,BLK,325.0,STOLEN,7335,"{'type': 'Point', 'coordinates': (-79.37156529, 43.652817240000005)}"
-7340,20899,GO-20142688606,POSSESSION PROPERTY OBC UNDER,2014-07-15T00:00:00,2014,July,Tuesday,15,196,12,2014-07-15T00:00:00,2014,July,Tuesday,15,196,12,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,JAMIS,DURANGO,MT,20,BLK,1000.0,RECOVERED,7336,"{'type': 'Point', 'coordinates': (-79.3627004, 43.65156829000001)}"
-7341,20900,GO-20142688606,POSSESSION PROPERTY OBC UNDER,2014-07-15T00:00:00,2014,July,Tuesday,15,196,12,2014-07-15T00:00:00,2014,July,Tuesday,15,196,12,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KONA,DEW PLUS,MT,20,BLU,1000.0,RECOVERED,7337,"{'type': 'Point', 'coordinates': (-79.3627004, 43.65156829000001)}"
-7342,20901,GO-20142688606,POSSESSION PROPERTY OBC UNDER,2014-07-15T00:00:00,2014,July,Tuesday,15,196,12,2014-07-15T00:00:00,2014,July,Tuesday,15,196,12,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,SOHO,MT,20,BLK,1000.0,RECOVERED,7338,"{'type': 'Point', 'coordinates': (-79.3627004, 43.65156829000001)}"
-7343,20902,GO-20142688606,POSSESSION PROPERTY OBC UNDER,2014-07-15T00:00:00,2014,July,Tuesday,15,196,12,2014-07-15T00:00:00,2014,July,Tuesday,15,196,12,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,7100,MT,20,BLK,1000.0,RECOVERED,7339,"{'type': 'Point', 'coordinates': (-79.3627004, 43.65156829000001)}"
-7344,20903,GO-20142688606,POSSESSION PROPERTY OBC UNDER,2014-07-15T00:00:00,2014,July,Tuesday,15,196,12,2014-07-15T00:00:00,2014,July,Tuesday,15,196,12,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KONA,DR GOOD,MT,20,GRN,1000.0,RECOVERED,7340,"{'type': 'Point', 'coordinates': (-79.3627004, 43.65156829000001)}"
-7345,20904,GO-20142688606,POSSESSION PROPERTY OBC UNDER,2014-07-15T00:00:00,2014,July,Tuesday,15,196,12,2014-07-15T00:00:00,2014,July,Tuesday,15,196,12,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,FX72,MT,20,BLK,1000.0,RECOVERED,7341,"{'type': 'Point', 'coordinates': (-79.3627004, 43.65156829000001)}"
-7346,20905,GO-20142688606,POSSESSION PROPERTY OBC UNDER,2014-07-15T00:00:00,2014,July,Tuesday,15,196,12,2014-07-15T00:00:00,2014,July,Tuesday,15,196,12,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DIAMONDBACK,,MT,20,GRN,1000.0,RECOVERED,7342,"{'type': 'Point', 'coordinates': (-79.3627004, 43.65156829000001)}"
-7347,20929,GO-20142969372,THEFT UNDER,2014-09-23T00:00:00,2014,September,Tuesday,23,266,18,2014-09-23T00:00:00,2014,September,Tuesday,23,266,19,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,OT,0,BLU,100.0,STOLEN,7343,"{'type': 'Point', 'coordinates': (-79.36527402, 43.65426123)}"
-7348,20931,GO-20149007431,THEFT UNDER,2014-10-03T00:00:00,2014,October,Friday,3,276,19,2014-10-06T00:00:00,2014,October,Monday,6,279,11,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RA,,RG,5,BLU,0.0,STOLEN,7344,"{'type': 'Point', 'coordinates': (-79.36066683, 43.65248849)}"
-7349,20938,GO-20143139908,THEFT UNDER,2014-10-14T00:00:00,2014,October,Tuesday,14,287,21,2014-10-20T00:00:00,2014,October,Monday,20,293,11,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,URBANITE,FIXED GEAR,OT,1,,800.0,RECOVERED,7345,"{'type': 'Point', 'coordinates': (-79.35693963, 43.65638235)}"
-7350,20939,GO-20142943717,PROPERTY - FOUND,2014-09-19T00:00:00,2014,September,Friday,19,262,19,2014-09-19T00:00:00,2014,September,Friday,19,262,19,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,TRIUMPH FRENZY,MT,99,,,UNKNOWN,7346,"{'type': 'Point', 'coordinates': (-79.37187401, 43.65046356)}"
-7351,20944,GO-20143241946,THEFT UNDER,2014-11-04T00:00:00,2014,November,Tuesday,4,308,21,2014-11-05T00:00:00,2014,November,Wednesday,5,309,8,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,MT,5,BLK,250.0,STOLEN,7347,"{'type': 'Point', 'coordinates': (-79.37099208, 43.65829436)}"
-7352,20963,GO-2015710807,THEFT UNDER,2015-04-29T00:00:00,2015,April,Wednesday,29,119,12,2015-04-29T00:00:00,2015,April,Wednesday,29,119,18,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,KOKANEE,MT,18,GRNBLK,250.0,STOLEN,7348,"{'type': 'Point', 'coordinates': (-79.36571619, 43.65533986)}"
-7353,20964,GO-20159002474,THEFT UNDER,2015-05-04T00:00:00,2015,May,Monday,4,124,18,2015-05-05T00:00:00,2015,May,Tuesday,5,125,17,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,CC,"26"""" STATIC",MT,21,BLK,200.0,STOLEN,7349,"{'type': 'Point', 'coordinates': (-79.36066683, 43.65248849)}"
-7354,22612,GO-20199024490,THEFT UNDER,2019-07-30T00:00:00,2019,July,Tuesday,30,211,20,2019-07-31T00:00:00,2019,July,Wednesday,31,212,10,D51,Toronto,73,Moss Park (73),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,OT,20,GRY,2000.0,STOLEN,7350,"{'type': 'Point', 'coordinates': (-79.36738106, 43.65241212)}"
-7355,22657,GO-20199033120,THEFT UNDER,2019-10-04T00:00:00,2019,October,Friday,4,277,19,2019-10-08T00:00:00,2019,October,Tuesday,8,281,15,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,21,GRY,550.0,STOLEN,7351,"{'type': 'Point', 'coordinates': (-79.3723499, 43.65817021)}"
-7356,22672,GO-20199035173,THEFT UNDER,2019-10-24T00:00:00,2019,October,Thursday,24,297,11,2019-10-25T00:00:00,2019,October,Friday,25,298,12,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,TR,,TO,18,SIL,1000.0,STOLEN,7352,"{'type': 'Point', 'coordinates': (-79.3723499, 43.65817021)}"
-7357,22680,GO-20192235660,PROPERTY - FOUND,2019-11-17T00:00:00,2019,November,Sunday,17,321,18,2019-11-19T00:00:00,2019,November,Tuesday,19,323,16,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MARIN OR MARINO,,RG,21,,,RECOVERED,7353,"{'type': 'Point', 'coordinates': (-79.37469468, 43.66068103)}"
-7358,22684,GO-20199038637,THEFT UNDER,2019-11-22T00:00:00,2019,November,Friday,22,326,23,2019-11-24T00:00:00,2019,November,Sunday,24,328,15,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,CYRESS,RG,21,BLU,0.0,STOLEN,7354,"{'type': 'Point', 'coordinates': (-79.36665279, 43.65068091)}"
-7359,22701,GO-2020629437,PROPERTY - RECOVERED,2020-03-30T00:00:00,2020,March,Monday,30,90,14,2020-03-30T00:00:00,2020,March,Monday,30,90,14,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,MONTA,EL,7,,2000.0,UNKNOWN,7355,"{'type': 'Point', 'coordinates': (-79.37008264, 43.656162280000004)}"
-7360,22706,GO-20209010441,THEFT UNDER,2020-03-22T00:00:00,2020,March,Sunday,22,82,12,2020-04-04T00:00:00,2020,April,Saturday,4,95,13,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,NO,VFR 3,RG,21,GRY,600.0,STOLEN,7356,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7361,22708,GO-20209010827,THEFT UNDER,2020-04-10T00:00:00,2020,April,Friday,10,101,8,2020-04-10T00:00:00,2020,April,Friday,10,101,9,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,3,,1200.0,STOLEN,7357,"{'type': 'Point', 'coordinates': (-79.36571619, 43.65533986)}"
-7362,22730,GO-20209015669,THEFT UNDER,2020-06-18T00:00:00,2020,June,Thursday,18,170,4,2020-06-18T00:00:00,2020,June,Thursday,18,170,17,D51,Toronto,73,Moss Park (73),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CC,,MT,21,BLK,565.0,STOLEN,7358,"{'type': 'Point', 'coordinates': (-79.36926699, 43.66399224)}"
-7363,22743,GO-20209017147,THEFT UNDER,2020-07-08T00:00:00,2020,July,Wednesday,8,190,15,2020-07-08T00:00:00,2020,July,Wednesday,8,190,20,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RA,MOUNTAIN BIKE,MT,21,PLE,400.0,STOLEN,7359,"{'type': 'Point', 'coordinates': (-79.37302171, 43.66318983)}"
-7364,22757,GO-20209019477,THEFT UNDER,2020-08-05T00:00:00,2020,August,Wednesday,5,218,11,2020-08-05T00:00:00,2020,August,Wednesday,5,218,18,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,CCM APEX MEN'S,MT,24,BLK,660.0,STOLEN,7360,"{'type': 'Point', 'coordinates': (-79.36941977, 43.65452491)}"
-7365,22760,GO-20201529258,PROPERTY - FOUND,2020-08-17T00:00:00,2020,August,Monday,17,230,6,2020-08-17T00:00:00,2020,August,Monday,17,230,6,D51,Toronto,73,Moss Park (73),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,SCHWINN,,TR,18,BLU,,UNKNOWN,7361,"{'type': 'Point', 'coordinates': (-79.3627004, 43.65156829000001)}"
-7366,22770,GO-20201656813,THEFT OVER,2020-09-01T00:00:00,2020,September,Tuesday,1,245,21,2020-09-02T00:00:00,2020,September,Wednesday,2,246,9,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,CARRERA,,SC,1,BLK,5100.0,STOLEN,7362,"{'type': 'Point', 'coordinates': (-79.37452691, 43.65706649)}"
-7367,22792,GO-20209026835,THEFT UNDER - BICYCLE,2020-10-16T00:00:00,2020,October,Friday,16,290,17,2020-10-17T00:00:00,2020,October,Saturday,17,291,23,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,SC,FS-210,MT,21,BLU,300.0,STOLEN,7363,"{'type': 'Point', 'coordinates': (-79.37099208, 43.65829436)}"
-7368,23197,GO-20199023455,THEFT UNDER,2019-07-23T00:00:00,2019,July,Tuesday,23,204,2,2019-07-23T00:00:00,2019,July,Tuesday,23,204,20,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,SR SUNTOUR,OT,21,CRM,550.0,STOLEN,7364,"{'type': 'Point', 'coordinates': (-79.36604724, 43.65176413)}"
-7369,23198,GO-20181636868,PROPERTY - FOUND,2018-08-31T00:00:00,2018,August,Friday,31,243,20,2018-09-04T00:00:00,2018,September,Tuesday,4,247,13,D51,Toronto,73,Moss Park (73),"Open Areas (Lakes, Parks, Rivers)",Outside,PINARELLO,ONDA FP,RC,10,WHIBLK,4000.0,UNKNOWN,7365,"{'type': 'Point', 'coordinates': (-79.37008264, 43.656162280000004)}"
-7370,23202,GO-20189029581,THEFT UNDER - BICYCLE,2018-09-03T00:00:00,2018,September,Monday,3,246,12,2018-09-08T00:00:00,2018,September,Saturday,8,251,13,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,NO,,OT,6,BLK,500.0,STOLEN,7366,"{'type': 'Point', 'coordinates': (-79.36738106, 43.65241212)}"
-7371,23209,GO-20189032025,THEFT UNDER - BICYCLE,2018-09-26T00:00:00,2018,September,Wednesday,26,269,14,2018-09-26T00:00:00,2018,September,Wednesday,26,269,17,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,FX 7.2 WOMANS,TO,24,MRN,600.0,STOLEN,7367,"{'type': 'Point', 'coordinates': (-79.37065383, 43.65073186)}"
-7372,23212,GO-20181801529,THEFT UNDER - BICYCLE,2018-09-24T00:00:00,2018,September,Monday,24,267,22,2018-09-29T00:00:00,2018,September,Saturday,29,272,9,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BIKE SHARE,,OT,3,BLK,,STOLEN,7368,"{'type': 'Point', 'coordinates': (-79.3723499, 43.65817021)}"
-7373,23214,GO-20189033159,THEFT UNDER - BICYCLE,2018-10-07T00:00:00,2018,October,Sunday,7,280,3,2018-10-07T00:00:00,2018,October,Sunday,7,280,10,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,CA,ACCENT MD ROAD,RG,28,DBL,600.0,STOLEN,7369,"{'type': 'Point', 'coordinates': (-79.36738106, 43.65241212)}"
-7374,23219,GO-20189034508,THEFT UNDER - BICYCLE,2018-10-15T00:00:00,2018,October,Monday,15,288,2,2018-10-17T00:00:00,2018,October,Wednesday,17,290,23,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,RA,OASIS,RG,5,BLK,300.0,STOLEN,7370,"{'type': 'Point', 'coordinates': (-79.37103886, 43.65160431)}"
-7375,23223,GO-20189035935,THEFT UNDER - BICYCLE,2018-10-27T00:00:00,2018,October,Saturday,27,300,18,2018-10-28T00:00:00,2018,October,Sunday,28,301,17,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ROADSTER SPORT,RG,3,BGE,500.0,STOLEN,7371,"{'type': 'Point', 'coordinates': (-79.36852769, 43.65887073)}"
-7376,23225,GO-20182061702,THEFT OF EBIKE UNDER $5000,2018-10-18T00:00:00,2018,October,Thursday,18,291,17,2018-11-08T00:00:00,2018,November,Thursday,8,312,14,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,ALIEN,EL,0,BLKWHI,1200.0,STOLEN,7372,"{'type': 'Point', 'coordinates': (-79.3687877, 43.65699417)}"
-7377,23234,GO-20199001466,THEFT UNDER - BICYCLE,2019-01-08T00:00:00,2019,January,Tuesday,8,8,18,2019-01-12T00:00:00,2019,January,Saturday,12,12,10,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,NO,,RC,12,BLU,500.0,STOLEN,7373,"{'type': 'Point', 'coordinates': (-79.37156529, 43.652817240000005)}"
-7378,23235,GO-20199001551,THEFT UNDER - BICYCLE,2019-01-09T00:00:00,2019,January,Wednesday,9,9,8,2019-01-12T00:00:00,2019,January,Saturday,12,12,22,D51,Toronto,73,Moss Park (73),Universities / Colleges,Educational,UK,,OT,3,BRN,600.0,STOLEN,7374,"{'type': 'Point', 'coordinates': (-79.36604724, 43.65176413)}"
-7379,23237,GO-20199005756,THEFT UNDER,2019-02-16T00:00:00,2019,February,Saturday,16,47,15,2019-02-17T00:00:00,2019,February,Sunday,17,48,13,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,OSLO,OT,27,SIL,900.0,STOLEN,7375,"{'type': 'Point', 'coordinates': (-79.37065383, 43.65073186)}"
-7380,23242,GO-20199006824,THEFT UNDER,2019-02-11T00:00:00,2019,February,Monday,11,42,0,2019-02-27T00:00:00,2019,February,Wednesday,27,58,16,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,OT,3,BLK,0.0,STOLEN,7376,"{'type': 'Point', 'coordinates': (-79.3723499, 43.65817021)}"
-7381,23249,GO-2019761341,B&E,2019-03-15T00:00:00,2019,March,Friday,15,74,0,2019-04-27T00:00:00,2019,April,Saturday,27,117,22,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,FORTRESS,SC,1,BLU,500.0,UNKNOWN,7377,"{'type': 'Point', 'coordinates': (-79.36691319, 43.65649967)}"
-7382,23258,GO-20199017057,THEFT UNDER,2019-05-31T00:00:00,2019,May,Friday,31,151,8,2019-05-31T00:00:00,2019,May,Friday,31,151,19,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,CC,,RG,12,BLU,500.0,STOLEN,7378,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7383,23261,GO-20199017847,THEFT UNDER,2019-06-08T00:00:00,2019,June,Saturday,8,159,14,2019-06-08T00:00:00,2019,June,Saturday,8,159,14,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,CA,TRAIL5,MT,15,BLK,1000.0,STOLEN,7379,"{'type': 'Point', 'coordinates': (-79.35351296, 43.65500405)}"
-7384,23266,GO-20199019010,THEFT UNDER,2019-06-17T00:00:00,2019,June,Monday,17,168,10,2019-06-17T00:00:00,2019,June,Monday,17,168,20,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,FX 7.3,RG,27,BLK,700.0,STOLEN,7380,"{'type': 'Point', 'coordinates': (-79.36355867000002, 43.65356373)}"
-7385,23268,GO-20191126288,THEFT UNDER - BICYCLE,2019-06-02T00:00:00,2019,June,Sunday,2,153,16,2019-06-18T00:00:00,2019,June,Tuesday,18,169,9,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,BAD BOY,BM,9,BLK,,UNKNOWN,7381,"{'type': 'Point', 'coordinates': (-79.36474468, 43.65298813)}"
-7386,23401,GO-2017673894,PROPERTY - FOUND,2017-04-16T00:00:00,2017,April,Sunday,16,106,22,2017-04-17T00:00:00,2017,April,Monday,17,107,13,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SUPERCYCLE,MT. BIKE,MT,15,BLK,50.0,UNKNOWN,7382,"{'type': 'Point', 'coordinates': (-79.37452691, 43.65706649)}"
-7387,23405,GO-20179005745,THEFT UNDER - BICYCLE,2017-05-03T00:00:00,2017,May,Wednesday,3,123,9,2017-05-05T00:00:00,2017,May,Friday,5,125,7,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,HF,,MT,6,RED,150.0,STOLEN,7383,"{'type': 'Point', 'coordinates': (-79.36604724, 43.65176413)}"
-7388,23415,GO-20179007237,THEFT UNDER - BICYCLE,2017-05-01T00:00:00,2017,May,Monday,1,121,12,2017-05-30T00:00:00,2017,May,Tuesday,30,150,12,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,ROAD BIKE,RC,18,WHI,1000.0,STOLEN,7384,"{'type': 'Point', 'coordinates': (-79.35576206, 43.65652566)}"
-7389,23417,GO-20179007427,THEFT UNDER - BICYCLE,2017-06-02T00:00:00,2017,June,Friday,2,153,18,2017-06-03T00:00:00,2017,June,Saturday,3,154,10,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,HELIX SPORT 20,MT,24,GRY,500.0,STOLEN,7385,"{'type': 'Point', 'coordinates': (-79.35940961, 43.65496744)}"
-7390,23424,GO-20179008472,THEFT UNDER - BICYCLE,2017-06-19T00:00:00,2017,June,Monday,19,170,15,2017-06-20T00:00:00,2017,June,Tuesday,20,171,11,D51,Toronto,73,Moss Park (73),Schools During Supervised Activity,Educational,UK,,RG,3,BLK,200.0,STOLEN,7386,"{'type': 'Point', 'coordinates': (-79.37065383, 43.65073186)}"
-7391,23427,GO-20179008891,THEFT UNDER - BICYCLE,2017-06-24T00:00:00,2017,June,Saturday,24,175,12,2017-06-25T00:00:00,2017,June,Sunday,25,176,22,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,JAKE,TO,9,GRY,1500.0,STOLEN,7387,"{'type': 'Point', 'coordinates': (-79.37352514, 43.66094246)}"
-7392,23436,GO-20179009768,THEFT FROM MOTOR VEHICLE UNDER,2017-07-08T00:00:00,2017,July,Saturday,8,189,13,2017-07-09T00:00:00,2017,July,Sunday,9,190,13,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,GTR,RC,18,BLK,2440.0,STOLEN,7388,"{'type': 'Point', 'coordinates': (-79.36738106, 43.65241212)}"
-7393,23437,GO-20179009808,THEFT UNDER - BICYCLE,2017-07-04T00:00:00,2017,July,Tuesday,4,185,10,2017-07-09T00:00:00,2017,July,Sunday,9,190,19,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,GRADE COMP FB,RG,15,BLU,680.0,STOLEN,7389,"{'type': 'Point', 'coordinates': (-79.36859808, 43.65214811)}"
-7394,23441,GO-20179010280,THEFT UNDER - BICYCLE,2017-07-14T00:00:00,2017,July,Friday,14,195,21,2017-07-15T00:00:00,2017,July,Saturday,15,196,15,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,,RG,21,GRY,500.0,STOLEN,7390,"{'type': 'Point', 'coordinates': (-79.36738106, 43.65241212)}"
-7395,23453,GO-20179011427,THEFT UNDER - BICYCLE,2017-07-18T00:00:00,2017,July,Tuesday,18,199,6,2017-07-31T00:00:00,2017,July,Monday,31,212,18,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,CA,BAD BOY 4,RG,24,BLK,1500.0,STOLEN,7391,"{'type': 'Point', 'coordinates': (-79.37103886, 43.65160431)}"
-7396,23460,GO-20179012441,THEFT UNDER - BICYCLE,2017-08-12T00:00:00,2017,August,Saturday,12,224,9,2017-08-15T00:00:00,2017,August,Tuesday,15,227,9,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,,MT,7,BLU,700.0,STOLEN,7392,"{'type': 'Point', 'coordinates': (-79.35576206, 43.65652566)}"
-7397,23476,GO-20179015984,THEFT UNDER - BICYCLE,2017-09-27T00:00:00,2017,September,Wednesday,27,270,14,2017-09-27T00:00:00,2017,September,Wednesday,27,270,21,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,DB,,TO,21,BLU,200.0,STOLEN,7393,"{'type': 'Point', 'coordinates': (-79.36924, 43.65389302)}"
-7398,23481,GO-20179016579,THEFT UNDER - BICYCLE,2017-10-06T00:00:00,2017,October,Friday,6,279,7,2017-10-06T00:00:00,2017,October,Friday,6,279,11,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,,,RC,12,PLE,140.0,STOLEN,7394,"{'type': 'Point', 'coordinates': (-79.37352514, 43.66094246)}"
-7399,23484,GO-20179017096,THEFT UNDER,2017-10-06T00:00:00,2017,October,Friday,6,279,7,2017-10-13T00:00:00,2017,October,Friday,13,286,13,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,21,BLU,50.0,STOLEN,7395,"{'type': 'Point', 'coordinates': (-79.36738106, 43.65241212)}"
-7400,23488,GO-20171898438,B&E,2017-10-20T00:00:00,2017,October,Friday,20,293,7,2017-10-20T00:00:00,2017,October,Friday,20,293,8,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,SHIMANO,MT,12,WHI,600.0,STOLEN,7396,"{'type': 'Point', 'coordinates': (-79.36967717, 43.66178085)}"
-7401,23491,GO-20171925585,THEFT UNDER - BICYCLE,2017-10-22T00:00:00,2017,October,Sunday,22,295,15,2017-10-24T00:00:00,2017,October,Tuesday,24,297,13,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,10,WHIBLU,,STOLEN,7397,"{'type': 'Point', 'coordinates': (-79.3559923, 43.65548812)}"
-7402,23496,GO-20173000152,THEFT UNDER - BICYCLE,2017-11-13T00:00:00,2017,November,Monday,13,317,20,2017-11-15T00:00:00,2017,November,Wednesday,15,319,3,D51,Toronto,73,Moss Park (73),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RALEIGH,UK,RG,21,GRY,250.0,STOLEN,7398,"{'type': 'Point', 'coordinates': (-79.36852769, 43.65887073)}"
-7403,23497,GO-20173000152,THEFT UNDER - BICYCLE,2017-11-13T00:00:00,2017,November,Monday,13,317,20,2017-11-15T00:00:00,2017,November,Wednesday,15,319,3,D51,Toronto,73,Moss Park (73),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RALEIGH,UK,RG,27,GRY,400.0,STOLEN,7399,"{'type': 'Point', 'coordinates': (-79.36852769, 43.65887073)}"
-7404,23505,GO-20179021975,THEFT UNDER,2017-11-06T00:00:00,2017,November,Monday,6,310,15,2017-12-12T00:00:00,2017,December,Tuesday,12,346,15,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,QUEEN ST. CRUIS,RG,5,GRN,0.0,STOLEN,7400,"{'type': 'Point', 'coordinates': (-79.36738106, 43.65241212)}"
-7405,23509,GO-20189009118,THEFT UNDER - BICYCLE,2018-03-22T00:00:00,2018,March,Thursday,22,81,17,2018-03-23T00:00:00,2018,March,Friday,23,82,10,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,SPRITE,TO,6,BRN,500.0,STOLEN,7401,"{'type': 'Point', 'coordinates': (-79.37185641, 43.65351071)}"
-7406,23534,GO-20189018106,THEFT UNDER - BICYCLE,2018-06-08T00:00:00,2018,June,Friday,8,159,16,2018-06-10T00:00:00,2018,June,Sunday,10,161,15,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,UK,HARDROCK SPORT,MT,21,WHI,500.0,STOLEN,7402,"{'type': 'Point', 'coordinates': (-79.36320575, 43.6527297)}"
-7407,23537,GO-20181066885,THEFT OF EBIKE UNDER $5000,2018-06-10T00:00:00,2018,June,Sunday,10,161,12,2018-06-12T00:00:00,2018,June,Tuesday,12,163,19,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OTHER,GALAXY,EL,18,GRY,1500.0,STOLEN,7403,"{'type': 'Point', 'coordinates': (-79.36967717, 43.66178085)}"
-7408,23545,GO-20189020725,THEFT UNDER - BICYCLE,2018-05-28T00:00:00,2018,May,Monday,28,148,11,2018-06-29T00:00:00,2018,June,Friday,29,180,11,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,NO,CHARGER,MT,25,BLK,1000.0,STOLEN,7404,"{'type': 'Point', 'coordinates': (-79.36822197, 43.65127732)}"
-7409,23549,GO-20189021667,THEFT UNDER - BICYCLE,2018-07-09T00:00:00,2018,July,Monday,9,190,9,2018-07-09T00:00:00,2018,July,Monday,9,190,9,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,PE,,MT,21,BLU,500.0,STOLEN,7405,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7410,23567,GO-20189024176,THEFT UNDER - BICYCLE,2018-07-27T00:00:00,2018,July,Friday,27,208,10,2018-07-27T00:00:00,2018,July,Friday,27,208,13,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,MO,MOUNTAIN BIKE,MT,21,BLU,400.0,STOLEN,7406,"{'type': 'Point', 'coordinates': (-79.36738106, 43.65241212)}"
-7411,23577,GO-20189026296,THEFT UNDER - BICYCLE,2018-08-14T00:00:00,2018,August,Tuesday,14,226,0,2018-08-14T00:00:00,2018,August,Tuesday,14,226,9,D51,Toronto,73,Moss Park (73),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,,MT,15,DGR,300.0,STOLEN,7407,"{'type': 'Point', 'coordinates': (-79.36627913, 43.65664856)}"
-7412,23578,GO-20181509423,THEFT OF MOTOR VEHICLE,2018-08-15T00:00:00,2018,August,Wednesday,15,227,22,2018-08-16T00:00:00,2018,August,Thursday,16,228,7,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,SC,5,WHI,,STOLEN,7408,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7413,23581,GO-20189027054,B&E,2018-08-13T00:00:00,2018,August,Monday,13,225,19,2018-08-19T00:00:00,2018,August,Sunday,19,231,23,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,FJ,FEATHER SINGLE,RG,1,GRY,950.0,STOLEN,7409,"{'type': 'Point', 'coordinates': (-79.3714043, 43.65589538)}"
-7414,23582,GO-20189027051,THEFT UNDER - BICYCLE,2018-08-18T00:00:00,2018,August,Saturday,18,230,0,2018-08-19T00:00:00,2018,August,Sunday,19,231,22,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,3,BLK,200.0,STOLEN,7410,"{'type': 'Point', 'coordinates': (-79.37147803000002, 43.66351279)}"
-7415,23584,GO-20181557743,THEFT UNDER - BICYCLE,2018-07-20T00:00:00,2018,July,Friday,20,201,10,2018-08-23T00:00:00,2018,August,Thursday,23,235,12,D51,Toronto,73,Moss Park (73),Schools During Supervised Activity,Educational,SUPERCYCLE,,MT,0,BLKBRN,60.0,STOLEN,7411,"{'type': 'Point', 'coordinates': (-79.37065383, 43.65073186)}"
-7416,23589,GO-20189028115,THEFT UNDER - BICYCLE,2018-08-26T00:00:00,2018,August,Sunday,26,238,23,2018-08-27T00:00:00,2018,August,Monday,27,239,12,D51,Toronto,73,Moss Park (73),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,ALLANT,RG,10,GRY,650.0,STOLEN,7412,"{'type': 'Point', 'coordinates': (-79.36926699, 43.66399224)}"
-7417,23597,GO-20159002793,THEFT UNDER,2015-05-16T00:00:00,2015,May,Saturday,16,136,14,2015-05-16T00:00:00,2015,May,Saturday,16,136,14,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,RG,10,,900.0,STOLEN,7413,"{'type': 'Point', 'coordinates': (-79.36926699, 43.66399224)}"
-7418,23616,GO-20159003720,THEFT UNDER,2015-06-17T00:00:00,2015,June,Wednesday,17,168,21,2015-06-18T00:00:00,2015,June,Thursday,18,169,11,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,8217-3603,OT,7,SIL,850.0,STOLEN,7414,"{'type': 'Point', 'coordinates': (-79.35693963, 43.65638235)}"
-7419,23617,GO-20159003720,THEFT UNDER,2015-06-17T00:00:00,2015,June,Wednesday,17,168,21,2015-06-18T00:00:00,2015,June,Thursday,18,169,11,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,82173603,OT,7,RED,850.0,STOLEN,7415,"{'type': 'Point', 'coordinates': (-79.35693963, 43.65638235)}"
-7420,11925,GO-20169007787,THEFT UNDER - BICYCLE,2016-07-26T00:00:00,2016,July,Tuesday,26,208,17,2016-07-26T00:00:00,2016,July,Tuesday,26,208,17,D51,Toronto,73,Moss Park (73),Universities / Colleges,Educational,GI,2016 GIANT ESCA,RG,40,BLK,665.0,STOLEN,7416,"{'type': 'Point', 'coordinates': (-79.37065383, 43.65073186)}"
-7421,11946,GO-20161314278,THEFT UNDER - BICYCLE,2016-07-26T00:00:00,2016,July,Tuesday,26,208,13,2016-07-26T00:00:00,2016,July,Tuesday,26,208,17,D51,Toronto,73,Moss Park (73),Universities / Colleges,Educational,OTHER,,MT,6,DGRRED,679.0,STOLEN,7417,"{'type': 'Point', 'coordinates': (-79.36981519, 43.65189242)}"
-7422,11989,GO-20161370811,THEFT UNDER - BICYCLE,2016-08-04T00:00:00,2016,August,Thursday,4,217,10,2016-08-04T00:00:00,2016,August,Thursday,4,217,13,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,TANGO,RG,0,RED,350.0,STOLEN,7418,"{'type': 'Point', 'coordinates': (-79.36320575, 43.6527297)}"
-7423,12016,GO-20169008341,THEFT UNDER - BICYCLE,2016-08-06T00:00:00,2016,August,Saturday,6,219,22,2016-08-07T00:00:00,2016,August,Sunday,7,220,14,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,CRUX,RC,21,BLK,2400.0,STOLEN,7419,"{'type': 'Point', 'coordinates': (-79.37066212, 43.66156417)}"
-7424,12030,GO-20169008410,THEFT UNDER,2016-08-03T00:00:00,2016,August,Wednesday,3,216,18,2016-08-09T00:00:00,2016,August,Tuesday,9,222,7,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,GHOST (MEC),MT,21,BLK,700.0,STOLEN,7420,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7425,12050,GO-20169008519,THEFT UNDER,2016-08-07T00:00:00,2016,August,Sunday,7,220,14,2016-08-10T00:00:00,2016,August,Wednesday,10,223,14,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,NO,VFR6,RG,21,BLU,600.0,STOLEN,7421,"{'type': 'Point', 'coordinates': (-79.37103886, 43.65160431)}"
-7426,12055,GO-20161405302,THEFT UNDER - BICYCLE,2016-07-31T00:00:00,2016,July,Sunday,31,213,10,2016-08-09T00:00:00,2016,August,Tuesday,9,222,20,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,ALLEZ,RG,1,BLK,800.0,STOLEN,7422,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7427,12068,GO-20161369358,SUSPICIOUS INCIDENT,2016-08-04T00:00:00,2016,August,Thursday,4,217,10,2016-08-05T00:00:00,2016,August,Friday,5,218,9,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,,TO,21,BLKGRY,,UNKNOWN,7423,"{'type': 'Point', 'coordinates': (-79.36571619, 43.65533986)}"
-7428,12129,GO-20161388684,B&E,2016-08-07T00:00:00,2016,August,Sunday,7,220,9,2016-08-07T00:00:00,2016,August,Sunday,7,220,9,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OTHER,,RG,10,YEL,,STOLEN,7424,"{'type': 'Point', 'coordinates': (-79.37469468, 43.66068103)}"
-7429,12201,GO-20169009499,THEFT UNDER,2016-08-26T00:00:00,2016,August,Friday,26,239,0,2016-08-26T00:00:00,2016,August,Friday,26,239,11,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,EM,SOHO,SC,40,BLK,1488.0,STOLEN,7425,"{'type': 'Point', 'coordinates': (-79.3666932, 43.65393254)}"
-7430,12205,GO-20161511609,B&E,2016-08-24T00:00:00,2016,August,Wednesday,24,237,10,2016-08-26T00:00:00,2016,August,Friday,26,239,10,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,XENITH,J5,RC,10,GRY,2900.0,STOLEN,7426,"{'type': 'Point', 'coordinates': (-79.36849898, 43.66204335)}"
-7431,12265,GO-20169010001,THEFT UNDER,2016-09-05T00:00:00,2016,September,Monday,5,249,21,2016-09-05T00:00:00,2016,September,Monday,5,249,21,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,TUXEDO,RG,8,BLK,700.0,STOLEN,7427,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7432,12323,GO-20169010332,THEFT UNDER,2016-09-03T00:00:00,2016,September,Saturday,3,247,13,2016-09-12T00:00:00,2016,September,Monday,12,256,21,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,CA,CAAD12,RC,22,GRY,3777.0,STOLEN,7428,"{'type': 'Point', 'coordinates': (-79.36701066, 43.65154726)}"
-7433,12339,GO-20169010407,THEFT UNDER,2016-09-12T00:00:00,2016,September,Monday,12,256,19,2016-09-14T00:00:00,2016,September,Wednesday,14,258,8,D51,Toronto,73,Moss Park (73),Universities / Colleges,Educational,UK,HARDROCK SPORT,MT,21,BRN,500.0,STOLEN,7429,"{'type': 'Point', 'coordinates': (-79.37065383, 43.65073186)}"
-7434,12344,GO-20169010461,THEFT UNDER,2016-09-10T00:00:00,2016,September,Saturday,10,254,17,2016-09-14T00:00:00,2016,September,Wednesday,14,258,16,D51,Toronto,73,Moss Park (73),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SC,,MT,21,SIL,300.0,STOLEN,7430,"{'type': 'Point', 'coordinates': (-79.36849898, 43.66204335)}"
-7435,12367,GO-20161652816,THEFT OF EBIKE UNDER $5000,2016-09-17T00:00:00,2016,September,Saturday,17,261,0,2016-09-17T00:00:00,2016,September,Saturday,17,261,3,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,SOHO,EL,1,BLK,1800.0,STOLEN,7431,"{'type': 'Point', 'coordinates': (-79.37341859, 43.65730333)}"
-7436,12397,GO-20169010694,THEFT UNDER - BICYCLE,2016-07-22T00:00:00,2016,July,Friday,22,204,20,2016-09-19T00:00:00,2016,September,Monday,19,263,11,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,15SIRRUS,TO,27,BLK,579.0,STOLEN,7432,"{'type': 'Point', 'coordinates': (-79.36561747, 43.65679343)}"
-7437,17446,GO-20142474870,THEFT UNDER,2014-07-10T00:00:00,2014,July,Thursday,10,191,10,2014-07-11T00:00:00,2014,July,Friday,11,192,9,D51,Toronto,73,Moss Park (73),"Open Areas (Lakes, Parks, Rivers)",Outside,CCM,,MT,10,BLKWHI,,STOLEN,7433,"{'type': 'Point', 'coordinates': (-79.36269927, 43.65407778)}"
-7438,23637,GO-20159005467,THEFT UNDER,2015-08-02T00:00:00,2015,August,Sunday,2,214,4,2015-08-07T00:00:00,2015,August,Friday,7,219,16,D51,Toronto,73,Moss Park (73),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,MT,60,WHI,700.0,STOLEN,7434,"{'type': 'Point', 'coordinates': (-79.36047375, 43.65647925)}"
-7439,12404,GO-20169010768,THEFT UNDER - BICYCLE,2016-09-19T00:00:00,2016,September,Monday,19,263,22,2016-09-20T00:00:00,2016,September,Tuesday,20,264,10,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,,RG,8,GRY,800.0,STOLEN,7435,"{'type': 'Point', 'coordinates': (-79.36849898, 43.66204335)}"
-7440,12466,GO-20161716734,THEFT UNDER - BICYCLE,2016-09-26T00:00:00,2016,September,Monday,26,270,21,2016-09-27T00:00:00,2016,September,Tuesday,27,271,8,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,RG,6,BLU,20.0,STOLEN,7436,"{'type': 'Point', 'coordinates': (-79.36941977, 43.65452491)}"
-7441,12517,GO-20169011384,THEFT UNDER - BICYCLE,2016-09-30T00:00:00,2016,September,Friday,30,274,10,2016-09-30T00:00:00,2016,September,Friday,30,274,23,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,ARROW,RG,1,BLK,1000.0,STOLEN,7437,"{'type': 'Point', 'coordinates': (-79.37147803000002, 43.66351279)}"
-7442,12557,GO-20169011591,THEFT UNDER,2016-10-05T00:00:00,2016,October,Wednesday,5,279,9,2016-10-05T00:00:00,2016,October,Wednesday,5,279,9,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GT,BBS02,OT,7,,140.0,STOLEN,7438,"{'type': 'Point', 'coordinates': (-79.36738106, 43.65241212)}"
-7443,12630,GO-20161848130,THEFT UNDER - BICYCLE,2016-10-17T00:00:00,2016,October,Monday,17,291,15,2016-10-17T00:00:00,2016,October,Monday,17,291,16,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,OT,21,BLU,300.0,STOLEN,7439,"{'type': 'Point', 'coordinates': (-79.37321466, 43.65372868)}"
-7444,12668,GO-20169012475,THEFT UNDER,2016-10-23T00:00:00,2016,October,Sunday,23,297,10,2016-10-23T00:00:00,2016,October,Sunday,23,297,16,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,UK,ALLEZ,RC,18,RED,600.0,STOLEN,7440,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7445,12673,GO-20161885091,THEFT FROM MOTOR VEHICLE OVER,2016-10-22T00:00:00,2016,October,Saturday,22,296,23,2016-10-23T00:00:00,2016,October,Sunday,23,297,12,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,WHEELS,OT,0,,4000.0,STOLEN,7441,"{'type': 'Point', 'coordinates': (-79.35800136, 43.65577965)}"
-7446,12674,GO-20161885091,THEFT FROM MOTOR VEHICLE OVER,2016-10-22T00:00:00,2016,October,Saturday,22,296,23,2016-10-23T00:00:00,2016,October,Sunday,23,297,12,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,ALUMINATOR,RC,0,GRY,6000.0,STOLEN,7442,"{'type': 'Point', 'coordinates': (-79.35800136, 43.65577965)}"
-7447,12680,GO-20161905370,THEFT UNDER,2016-10-25T00:00:00,2016,October,Tuesday,25,299,19,2016-10-26T00:00:00,2016,October,Wednesday,26,300,15,D51,Toronto,73,Moss Park (73),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN,,RC,20,PNKYEL,100.0,STOLEN,7443,"{'type': 'Point', 'coordinates': (-79.37066212, 43.66156417)}"
-7448,12752,GO-20162002860,THEFT UNDER,2016-11-10T00:00:00,2016,November,Thursday,10,315,18,2016-11-10T00:00:00,2016,November,Thursday,10,315,21,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MARIN OR MARINO,DRAKE BEACH,OT,1,RED,,STOLEN,7444,"{'type': 'Point', 'coordinates': (-79.37452691, 43.65706649)}"
-7449,12761,GO-20169013387,THEFT UNDER,2016-11-11T00:00:00,2016,November,Friday,11,316,16,2016-11-14T00:00:00,2016,November,Monday,14,319,13,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,FO,6,RED,310.0,STOLEN,7445,"{'type': 'Point', 'coordinates': (-79.37103886, 43.65160431)}"
-7450,12833,GO-20169014072,THEFT UNDER - BICYCLE,2016-11-28T00:00:00,2016,November,Monday,28,333,19,2016-12-01T00:00:00,2016,December,Thursday,1,336,8,D51,Toronto,73,Moss Park (73),"Religious Facilities (Synagogue, Church, Convent, Mosque)",Other,GI,ESCAPE,RG,1,GRY,500.0,STOLEN,7446,"{'type': 'Point', 'coordinates': (-79.3591753, 43.65509862)}"
-7451,12834,GO-20162128146,THEFT OVER - BICYCLE,2016-11-20T00:00:00,2016,November,Sunday,20,325,12,2016-11-30T00:00:00,2016,November,Wednesday,30,335,21,D51,Toronto,73,Moss Park (73),Homeless Shelter / Mission,Other,OPUS BAROPCCO,CARBON MONIQUE,RC,10,GRN,5000.0,STOLEN,7447,"{'type': 'Point', 'coordinates': (-79.37469468, 43.66068103)}"
-7452,13473,GO-20199010270,THEFT UNDER - BICYCLE,2019-03-31T00:00:00,2019,March,Sunday,31,90,12,2019-04-01T00:00:00,2019,April,Monday,1,91,13,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,KO,ROVE DL,RC,20,LBL,1300.0,STOLEN,7448,"{'type': 'Point', 'coordinates': (-79.36701066, 43.65154726)}"
-7453,13478,GO-2019685319,B&E,2019-04-15T00:00:00,2019,April,Monday,15,105,22,2019-04-16T00:00:00,2019,April,Tuesday,16,106,12,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,RG,0,,,STOLEN,7449,"{'type': 'Point', 'coordinates': (-79.37452691, 43.65706649)}"
-7454,13494,GO-20191044933,THEFT UNDER,2019-06-06T00:00:00,2019,June,Thursday,6,157,21,2019-06-06T00:00:00,2019,June,Thursday,6,157,21,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,MT,21,GRYBLK,130.0,STOLEN,7450,"{'type': 'Point', 'coordinates': (-79.37065383, 43.65073186)}"
-7455,15705,GO-20199030876,THEFT UNDER,2019-09-20T00:00:00,2019,September,Friday,20,263,11,2019-09-20T00:00:00,2019,September,Friday,20,263,16,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,UK,ROCKHOPPER,MT,27,RED,1000.0,STOLEN,7451,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7456,20924,GO-20142929141,THEFT UNDER,2014-09-16T00:00:00,2014,September,Tuesday,16,259,8,2014-09-17T00:00:00,2014,September,Wednesday,17,260,16,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,RG,16,,,STOLEN,7452,"{'type': 'Point', 'coordinates': (-79.35649069, 43.65737489000001)}"
-7457,13496,GO-20199017922,THEFT UNDER,2019-06-08T00:00:00,2019,June,Saturday,8,159,5,2019-06-09T00:00:00,2019,June,Sunday,9,160,10,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,SC,700C,OT,21,BLK,620.0,STOLEN,7453,"{'type': 'Point', 'coordinates': (-79.37103886, 43.65160431)}"
-7458,13503,GO-20191185759,THEFT OF EBIKE UNDER $5000,2019-06-06T00:00:00,2019,June,Thursday,6,157,12,2019-06-26T00:00:00,2019,June,Wednesday,26,177,11,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,MONSTER,EL,1,BLK,2200.0,STOLEN,7454,"{'type': 'Point', 'coordinates': (-79.35351296, 43.65500405)}"
-7459,13678,GO-20179008702,THEFT UNDER - BICYCLE,2017-06-21T00:00:00,2017,June,Wednesday,21,172,17,2017-06-22T00:00:00,2017,June,Thursday,22,173,17,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,LAGER,RG,1,SIL,700.0,STOLEN,7455,"{'type': 'Point', 'coordinates': (-79.35940961, 43.65496744)}"
-7460,13680,GO-20179008903,THEFT UNDER - BICYCLE,2017-06-23T00:00:00,2017,June,Friday,23,174,22,2017-06-26T00:00:00,2017,June,Monday,26,177,10,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,F800 CAD2,MT,21,ONG,350.0,STOLEN,7456,"{'type': 'Point', 'coordinates': (-79.36738106, 43.65241212)}"
-7461,13693,GO-20179010146,THEFT UNDER - BICYCLE,2017-06-29T00:00:00,2017,June,Thursday,29,180,9,2017-07-13T00:00:00,2017,July,Thursday,13,194,21,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,FAT BIKE,BEARGREASE,MT,22,BLKBGE,4000.0,STOLEN,7457,"{'type': 'Point', 'coordinates': (-79.36701066, 43.65154726)}"
-7462,13705,GO-20179012322,THEFT UNDER - BICYCLE,2017-08-08T00:00:00,2017,August,Tuesday,8,220,14,2017-08-13T00:00:00,2017,August,Sunday,13,225,23,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,UK,,OT,7,,5000.0,STOLEN,7458,"{'type': 'Point', 'coordinates': (-79.3723499, 43.65817021)}"
-7463,13706,GO-20179012381,THEFT UNDER,2017-08-13T00:00:00,2017,August,Sunday,13,225,15,2017-08-14T00:00:00,2017,August,Monday,14,226,13,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,MT,8,SIL,400.0,STOLEN,7459,"{'type': 'Point', 'coordinates': (-79.36355867000002, 43.65356373)}"
-7464,13721,GO-20179016830,THEFT UNDER - BICYCLE,2017-10-09T00:00:00,2017,October,Monday,9,282,23,2017-10-10T00:00:00,2017,October,Tuesday,10,283,8,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,TO,3,YEL,400.0,STOLEN,7460,"{'type': 'Point', 'coordinates': (-79.36701066, 43.65154726)}"
-7465,13725,GO-20179017830,THEFT UNDER - BICYCLE,2017-10-21T00:00:00,2017,October,Saturday,21,294,21,2017-10-22T00:00:00,2017,October,Sunday,22,295,9,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,TR,,RC,11,BLU,0.0,STOLEN,7461,"{'type': 'Point', 'coordinates': (-79.36738106, 43.65241212)}"
-7466,13735,GO-20172001753,THEFT UNDER,2017-11-04T00:00:00,2017,November,Saturday,4,308,2,2017-11-05T00:00:00,2017,November,Sunday,5,309,1,D51,Toronto,73,Moss Park (73),"Private Property Structure (Pool, Shed, Detached Garage)",Other,PROTOUR,PROMOBILE,SC,4,,5000.0,STOLEN,7462,"{'type': 'Point', 'coordinates': (-79.37219606, 43.66122668)}"
-7467,13741,GO-2018313102,B&E,2018-02-18T00:00:00,2018,February,Sunday,18,49,19,2018-02-18T00:00:00,2018,February,Sunday,18,49,19,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,UNKNOWN,RC,1,BLK,50.0,UNKNOWN,7463,"{'type': 'Point', 'coordinates': (-79.35800136, 43.65577965)}"
-7468,13743,GO-20189007414,THEFT UNDER - BICYCLE,2018-03-09T00:00:00,2018,March,Friday,9,68,14,2018-03-09T00:00:00,2018,March,Friday,9,68,16,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,KO,,RG,1,BLK,1113.0,STOLEN,7464,"{'type': 'Point', 'coordinates': (-79.3687877, 43.65699417)}"
-7469,13755,GO-20189015127,THEFT UNDER - BICYCLE,2018-05-15T00:00:00,2018,May,Tuesday,15,135,20,2018-05-16T00:00:00,2018,May,Wednesday,16,136,10,D51,Toronto,73,Moss Park (73),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,SUPERCYCLE KROS,MT,21,SIL,239.0,STOLEN,7465,"{'type': 'Point', 'coordinates': (-79.35576206, 43.65652566)}"
-7470,13764,GO-20189018340,THEFT UNDER - BICYCLE,2018-06-08T00:00:00,2018,June,Friday,8,159,1,2018-06-12T00:00:00,2018,June,Tuesday,12,163,10,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,12,BLK,40.0,STOLEN,7466,"{'type': 'Point', 'coordinates': (-79.36738106, 43.65241212)}"
-7471,13767,GO-20189018575,THEFT UNDER - BICYCLE,2018-05-24T00:00:00,2018,May,Thursday,24,144,16,2018-06-13T00:00:00,2018,June,Wednesday,13,164,15,D51,Toronto,73,Moss Park (73),"Open Areas (Lakes, Parks, Rivers)",Outside,KO,,MT,18,,500.0,STOLEN,7467,"{'type': 'Point', 'coordinates': (-79.36941977, 43.65452491)}"
-7472,13769,GO-20189018830,THEFT UNDER - BICYCLE,2018-06-14T00:00:00,2018,June,Thursday,14,165,2,2018-06-15T00:00:00,2018,June,Friday,15,166,15,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,UK,,OT,1,BRN,0.0,STOLEN,7468,"{'type': 'Point', 'coordinates': (-79.36822197, 43.65127732)}"
-7473,13791,GO-20189024622,THEFT UNDER - BICYCLE,2018-07-25T00:00:00,2018,July,Wednesday,25,206,7,2018-07-31T00:00:00,2018,July,Tuesday,31,212,9,D51,Toronto,73,Moss Park (73),Bar / Restaurant,Commercial,OT,PROJEKT,RG,1,BLK,440.0,STOLEN,7469,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7474,1869,GO-20179020323,THEFT UNDER - BICYCLE,2017-11-22T00:00:00,2017,November,Wednesday,22,326,17,2017-11-22T00:00:00,2017,November,Wednesday,22,326,22,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,QUICK 4,TO,27,GRY,1000.0,STOLEN,7470,"{'type': 'Point', 'coordinates': (-79.36981519, 43.65189242)}"
-7475,13799,GO-20189026689,THEFT UNDER - BICYCLE,2018-08-15T00:00:00,2018,August,Wednesday,15,227,23,2018-08-16T00:00:00,2018,August,Thursday,16,228,17,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN,,OT,99,,,STOLEN,7471,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7476,13807,GO-20189028225,THEFT UNDER - BICYCLE,2018-08-26T00:00:00,2018,August,Sunday,26,238,11,2018-08-28T00:00:00,2018,August,Tuesday,28,240,9,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RG,9,,400.0,STOLEN,7472,"{'type': 'Point', 'coordinates': (-79.36665279, 43.65068091)}"
-7477,13812,GO-20181630599,THEFT OF EBIKE UNDER $5000,2018-09-03T00:00:00,2018,September,Monday,3,246,10,2018-09-03T00:00:00,2018,September,Monday,3,246,12,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EZRIDERS,EZFOLDER,EL,0,BLK,1000.0,STOLEN,7473,"{'type': 'Point', 'coordinates': (-79.37302171, 43.66318983)}"
-7478,13814,GO-20189029642,THEFT UNDER,2018-09-04T00:00:00,2018,September,Tuesday,4,247,16,2018-09-08T00:00:00,2018,September,Saturday,8,251,21,D51,Toronto,73,Moss Park (73),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,FX85,TO,18,PLE,1200.0,STOLEN,7474,"{'type': 'Point', 'coordinates': (-79.36701066, 43.65154726)}"
-7479,13843,GO-20189036246,THEFT UNDER - BICYCLE,2018-10-29T00:00:00,2018,October,Monday,29,302,21,2018-10-30T00:00:00,2018,October,Tuesday,30,303,16,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,2016 GIANT ESCA,RG,15,BLK,600.0,STOLEN,7475,"{'type': 'Point', 'coordinates': (-79.36981519, 43.65189242)}"
-7480,13844,GO-20182027008,THEFT UNDER - BICYCLE,2018-06-16T00:00:00,2018,June,Saturday,16,167,7,2018-11-03T00:00:00,2018,November,Saturday,3,307,5,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,,RG,18,RED,200.0,STOLEN,7476,"{'type': 'Point', 'coordinates': (-79.37008264, 43.656162280000004)}"
-7481,13858,GO-20199004607,THEFT UNDER - BICYCLE,2019-01-06T00:00:00,2019,January,Sunday,6,6,10,2019-02-06T00:00:00,2019,February,Wednesday,6,37,11,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,GI,2016 GIANT ROAM,RG,27,GRY,900.0,STOLEN,7477,"{'type': 'Point', 'coordinates': (-79.35576206, 43.65652566)}"
-7482,13865,GO-20159002850,THEFT UNDER,2015-05-13T00:00:00,2015,May,Wednesday,13,133,19,2015-05-18T00:00:00,2015,May,Monday,18,138,14,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KH,KHS,MT,21,RED,1500.0,STOLEN,7478,"{'type': 'Point', 'coordinates': (-79.36474468, 43.65298813)}"
-7483,13867,GO-2015848663,THEFT UNDER,2015-05-21T00:00:00,2015,May,Thursday,21,141,7,2015-05-21T00:00:00,2015,May,Thursday,21,141,18,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,ROCKY MOUNTAIN,FLAIR 29,MT,24,BLK,700.0,STOLEN,7479,"{'type': 'Point', 'coordinates': (-79.36604724, 43.65176413)}"
-7484,13873,GO-20159003091,THEFT UNDER,2015-05-25T00:00:00,2015,May,Monday,25,145,10,2015-05-25T00:00:00,2015,May,Monday,25,145,19,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,UK,SAINT,BM,1,BLK,400.0,RECOVERED,7480,"{'type': 'Point', 'coordinates': (-79.35888422, 43.65683302)}"
-7485,13874,GO-2015884996,THEFT UNDER,2015-05-25T00:00:00,2015,May,Monday,25,145,17,2015-05-27T00:00:00,2015,May,Wednesday,27,147,14,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,HYBRID,OT,24,WHI,,STOLEN,7481,"{'type': 'Point', 'coordinates': (-79.37156529, 43.652817240000005)}"
-7486,13875,GO-2015884996,THEFT UNDER,2015-05-25T00:00:00,2015,May,Monday,25,145,17,2015-05-27T00:00:00,2015,May,Wednesday,27,147,14,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,HYBRID,OT,24,WHI,,STOLEN,7482,"{'type': 'Point', 'coordinates': (-79.37156529, 43.652817240000005)}"
-7487,13877,GO-2015940251,THEFT UNDER,2015-06-02T00:00:00,2015,June,Tuesday,2,153,22,2015-06-05T00:00:00,2015,June,Friday,5,156,9,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,RALEIGH,MOUNTAIN BIKE,MT,21,REDSIL,700.0,STOLEN,7483,"{'type': 'Point', 'coordinates': (-79.36691319, 43.65649967)}"
-7488,13890,GO-20151315397,B&E,2015-08-01T00:00:00,2015,August,Saturday,1,213,10,2015-08-01T00:00:00,2015,August,Saturday,1,213,10,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,NONE,MT,10,BLK,1200.0,STOLEN,7484,"{'type': 'Point', 'coordinates': (-79.36546109, 43.65817175)}"
-7489,13891,GO-20151315397,B&E,2015-08-01T00:00:00,2015,August,Saturday,1,213,10,2015-08-01T00:00:00,2015,August,Saturday,1,213,10,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,NONE,MT,10,BLK,450.0,STOLEN,7485,"{'type': 'Point', 'coordinates': (-79.36546109, 43.65817175)}"
-7490,13900,GO-20151435281,THEFT UNDER,2015-08-20T00:00:00,2015,August,Thursday,20,232,14,2015-08-20T00:00:00,2015,August,Thursday,20,232,19,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,MONSTER,EL,1,REDBLK,1300.0,STOLEN,7487,"{'type': 'Point', 'coordinates': (-79.36604724, 43.65176413)}"
-7491,13906,GO-20151555920,THEFT UNDER,2015-09-09T00:00:00,2015,September,Wednesday,9,252,9,2015-09-09T00:00:00,2015,September,Wednesday,9,252,9,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OTHER,,MT,10,BLU,,STOLEN,7488,"{'type': 'Point', 'coordinates': (-79.35693963, 43.65638235)}"
-7492,13917,GO-20159007862,THEFT UNDER,2015-09-25T00:00:00,2015,September,Friday,25,268,13,2015-09-28T00:00:00,2015,September,Monday,28,271,13,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MOUNTAIN BIKE,MT,18,GRY,0.0,STOLEN,7489,"{'type': 'Point', 'coordinates': (-79.37142509, 43.64944981)}"
-7493,13926,GO-20159008590,THEFT UNDER,2015-10-15T00:00:00,2015,October,Thursday,15,288,9,2015-10-16T00:00:00,2015,October,Friday,16,289,9,D51,Toronto,73,Moss Park (73),Universities / Colleges,Educational,UK,TRAIL X,MT,21,GRY,429.0,STOLEN,7490,"{'type': 'Point', 'coordinates': (-79.36981519, 43.65189242)}"
-7494,13930,GO-20159009539,THEFT UNDER,2015-11-09T00:00:00,2015,November,Monday,9,313,9,2015-11-09T00:00:00,2015,November,Monday,9,313,10,D51,Toronto,73,Moss Park (73),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,,MT,5,RED,120.0,STOLEN,7491,"{'type': 'Point', 'coordinates': (-79.36731187, 43.65912273)}"
-7495,13942,GO-201667978,THEFT UNDER,2015-11-18T00:00:00,2015,November,Wednesday,18,322,0,2016-01-12T00:00:00,2016,January,Tuesday,12,12,12,D51,Toronto,73,Moss Park (73),"Religious Facilities (Synagogue, Church, Convent, Mosque)",Other,CANNONDALE,SUPER 6.5,OT,24,BLK,,STOLEN,7492,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7496,13951,GO-20169002303,THEFT UNDER - BICYCLE,2016-03-10T00:00:00,2016,March,Thursday,10,70,9,2016-03-13T00:00:00,2016,March,Sunday,13,73,20,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,GI,RAINIER,MT,27,LBL,350.0,STOLEN,7493,"{'type': 'Point', 'coordinates': (-79.37103886, 43.65160431)}"
-7497,13968,GO-20169004845,THEFT UNDER,2016-05-19T00:00:00,2016,May,Thursday,19,140,12,2016-05-23T00:00:00,2016,May,Monday,23,144,13,D51,Toronto,73,Moss Park (73),Schools During Supervised Activity,Educational,UK,,RG,1,BLK,580.0,STOLEN,7494,"{'type': 'Point', 'coordinates': (-79.37065383, 43.65073186)}"
-7498,13970,GO-2016925768,THEFT UNDER - BICYCLE,2016-05-27T00:00:00,2016,May,Friday,27,148,0,2016-05-27T00:00:00,2016,May,Friday,27,148,2,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MIELE,,RC,10,WHI,250.0,STOLEN,7495,"{'type': 'Point', 'coordinates': (-79.37341859, 43.65730333)}"
-7499,13971,GO-20169005119,THEFT UNDER,2016-05-29T00:00:00,2016,May,Sunday,29,150,22,2016-05-30T00:00:00,2016,May,Monday,30,151,10,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,MI,MILLENIUM,MT,21,MRN,100.0,STOLEN,7496,"{'type': 'Point', 'coordinates': (-79.37103886, 43.65160431)}"
-7500,13977,GO-20169006095,THEFT UNDER,2016-06-20T00:00:00,2016,June,Monday,20,172,12,2016-06-20T00:00:00,2016,June,Monday,20,172,21,D51,Toronto,73,Moss Park (73),Schools During Supervised Activity,Educational,FJ,2012,RC,9,RED,1300.0,STOLEN,7497,"{'type': 'Point', 'coordinates': (-79.36981519, 43.65189242)}"
-7501,13984,GO-20161209172,THEFT UNDER - BICYCLE,2016-07-09T00:00:00,2016,July,Saturday,9,191,22,2016-07-10T00:00:00,2016,July,Sunday,10,192,17,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RALEIGH,,RC,0,,,STOLEN,7498,"{'type': 'Point', 'coordinates': (-79.359544, 43.65670469)}"
-7502,13989,GO-20169007600,THEFT UNDER - BICYCLE,2016-07-17T00:00:00,2016,July,Sunday,17,199,11,2016-07-22T00:00:00,2016,July,Friday,22,204,21,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,GI,SEEK 3,RG,24,BLK,700.0,STOLEN,7499,"{'type': 'Point', 'coordinates': (-79.36320575, 43.6527297)}"
-7503,13994,GO-20169008599,THEFT UNDER,2016-08-11T00:00:00,2016,August,Thursday,11,224,14,2016-08-11T00:00:00,2016,August,Thursday,11,224,18,D51,Toronto,73,Moss Park (73),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,SC,GTX 2 DUAL SPO,RG,21,RED,540.0,STOLEN,7500,"{'type': 'Point', 'coordinates': (-79.37065383, 43.65073186)}"
-7504,13996,GO-20169008893,THEFT UNDER,2016-07-27T00:00:00,2016,July,Wednesday,27,209,19,2016-08-16T00:00:00,2016,August,Tuesday,16,229,20,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,LUCERNE WOMEN'S,RG,7,PNK,300.0,STOLEN,7501,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7505,14014,GO-20161615685,THEFT OF EBIKE UNDER $5000,2016-09-10T00:00:00,2016,September,Saturday,10,254,14,2016-09-11T00:00:00,2016,September,Sunday,11,255,15,D51,Toronto,73,Moss Park (73),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,EAGLE,EBIKE,TO,1,GRN,,STOLEN,7502,"{'type': 'Point', 'coordinates': (-79.36813583, 43.66211281)}"
-7506,14031,GO-20162029157,B&E,2016-11-13T00:00:00,2016,November,Sunday,13,318,7,2016-11-15T00:00:00,2016,November,Tuesday,15,320,10,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,MARIN OR MARINO,,RG,18,BLU,1000.0,STOLEN,7503,"{'type': 'Point', 'coordinates': (-79.36789985, 43.65485425000001)}"
-7507,14033,GO-20162072619,THEFT UNDER - BICYCLE,2016-10-26T00:00:00,2016,October,Wednesday,26,300,14,2016-11-22T00:00:00,2016,November,Tuesday,22,327,9,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,ROCKY MOUNTAIN,,MT,0,RED,1000.0,STOLEN,7504,"{'type': 'Point', 'coordinates': (-79.37008264, 43.656162280000004)}"
-7508,14049,GO-2017652659,THEFT OF EBIKE UNDER $5000,2017-04-09T00:00:00,2017,April,Sunday,9,99,8,2017-04-13T00:00:00,2017,April,Thursday,13,103,14,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,AUSTIN SX,EL,1,WHIRED,1600.0,STOLEN,7505,"{'type': 'Point', 'coordinates': (-79.37156529, 43.652817240000005)}"
-7509,14061,GO-20179006392,THEFT UNDER,2017-05-14T00:00:00,2017,May,Sunday,14,134,14,2017-05-15T00:00:00,2017,May,Monday,15,135,10,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,OT,21,RED,549.0,STOLEN,7506,"{'type': 'Point', 'coordinates': (-79.36981519, 43.65189242)}"
-7510,14364,GO-20149003786,THEFT UNDER,2014-06-03T00:00:00,2014,June,Tuesday,3,154,7,2014-06-04T00:00:00,2014,June,Wednesday,4,155,0,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RC,1,BLK,500.0,STOLEN,7507,"{'type': 'Point', 'coordinates': (-79.36926699, 43.66399224)}"
-7511,14368,GO-20142246825,THEFT UNDER,2014-06-03T00:00:00,2014,June,Tuesday,3,154,18,2014-06-08T00:00:00,2014,June,Sunday,8,159,12,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,DEVINCI,CHAMELEON,MT,24,BLU,,STOLEN,7508,"{'type': 'Point', 'coordinates': (-79.36947164, 43.65865872)}"
-7512,14379,GO-20149004399,THEFT UNDER,2014-05-27T00:00:00,2014,May,Tuesday,27,147,0,2014-06-24T00:00:00,2014,June,Tuesday,24,175,16,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,TR,,RG,7,BLK,519.0,STOLEN,7509,"{'type': 'Point', 'coordinates': (-79.3723499, 43.65817021)}"
-7513,14382,GO-20149004552,THEFT UNDER,2014-06-28T00:00:00,2014,June,Saturday,28,179,16,2014-06-29T00:00:00,2014,June,Sunday,29,180,11,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SPEEDSTER S50FB,TO,24,WHI,1200.0,STOLEN,7510,"{'type': 'Point', 'coordinates': (-79.36701066, 43.65154726)}"
-7514,14386,GO-20149004728,THEFT UNDER,2014-07-03T00:00:00,2014,July,Thursday,3,184,10,2014-07-04T00:00:00,2014,July,Friday,4,185,19,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SC,FOLDING,FO,6,MRN,150.0,STOLEN,7511,"{'type': 'Point', 'coordinates': (-79.36967717, 43.66178085)}"
-7515,14406,GO-20149006368,THEFT UNDER,2014-08-26T00:00:00,2014,August,Tuesday,26,238,22,2014-08-27T00:00:00,2014,August,Wednesday,27,239,17,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,TR,RUMBLEFISH,MT,24,WHI,3000.0,STOLEN,7512,"{'type': 'Point', 'coordinates': (-79.35837569, 43.65558195)}"
-7516,14409,GO-20149006770,THEFT UNDER,2014-09-10T00:00:00,2014,September,Wednesday,10,253,15,2014-09-10T00:00:00,2014,September,Wednesday,10,253,21,D51,Toronto,73,Moss Park (73),Universities / Colleges,Educational,GI,,MT,24,BLK,500.0,STOLEN,7513,"{'type': 'Point', 'coordinates': (-79.36981519, 43.65189242)}"
-7517,14424,GO-20149007809,THEFT UNDER,2014-10-23T00:00:00,2014,October,Thursday,23,296,21,2014-10-24T00:00:00,2014,October,Friday,24,297,20,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,905,MT,6,BLK,500.0,STOLEN,7514,"{'type': 'Point', 'coordinates': (-79.37352514, 43.66094246)}"
-7518,14438,GO-2015489554,THEFT UNDER,2015-03-23T00:00:00,2015,March,Monday,23,82,11,2015-03-23T00:00:00,2015,March,Monday,23,82,21,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,HYBRID,OT,3,BLK,500.0,STOLEN,7515,"{'type': 'Point', 'coordinates': (-79.3664929, 43.66071879)}"
-7519,15662,GO-20199024772,THEFT UNDER,2019-07-29T00:00:00,2019,July,Monday,29,210,20,2019-08-02T00:00:00,2019,August,Friday,2,214,15,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,24,GRY,0.0,STOLEN,7516,"{'type': 'Point', 'coordinates': (-79.37008264, 43.656162280000004)}"
-7520,15667,GO-20191506349,ROBBERY - OTHER,2019-08-09T00:00:00,2019,August,Friday,9,221,14,2019-08-09T00:00:00,2019,August,Friday,9,221,15,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,OT,0,BLUWHI,,STOLEN,7517,"{'type': 'Point', 'coordinates': (-79.3714043, 43.65589538)}"
-7521,15707,GO-20191817999,THEFT UNDER - BICYCLE,2019-09-19T00:00:00,2019,September,Thursday,19,262,13,2019-09-21T00:00:00,2019,September,Saturday,21,264,12,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,,RE,18,ONG,1300.0,STOLEN,7518,"{'type': 'Point', 'coordinates': (-79.37065383, 43.65073186)}"
-7522,15714,GO-20199033006,THEFT UNDER,2019-10-07T00:00:00,2019,October,Monday,7,280,14,2019-10-07T00:00:00,2019,October,Monday,7,280,20,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,BOLT 59CM (L),RG,21,BLK,600.0,STOLEN,7519,"{'type': 'Point', 'coordinates': (-79.36604724, 43.65176413)}"
-7523,15719,GO-20199033906,THEFT UNDER,2019-10-12T00:00:00,2019,October,Saturday,12,285,9,2019-10-15T00:00:00,2019,October,Tuesday,15,288,10,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,SC,SIRRUS,RG,24,BLK,620.0,STOLEN,7520,"{'type': 'Point', 'coordinates': (-79.359544, 43.65670469)}"
-7524,15723,GO-20199035153,THEFT UNDER - BICYCLE,2019-10-16T00:00:00,2019,October,Wednesday,16,289,11,2019-10-25T00:00:00,2019,October,Friday,25,298,9,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,FJ,ROAD BIKE,RG,1,RED,350.0,STOLEN,7521,"{'type': 'Point', 'coordinates': (-79.36437279, 43.65212359)}"
-7525,15752,GO-20209011802,THEFT UNDER,2020-04-22T00:00:00,2020,April,Wednesday,22,113,13,2020-04-23T00:00:00,2020,April,Thursday,23,114,16,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,20,BRN,0.0,STOLEN,7522,"{'type': 'Point', 'coordinates': (-79.36859808, 43.65214811)}"
-7526,15768,GO-20209014199,THEFT UNDER,2020-05-28T00:00:00,2020,May,Thursday,28,149,0,2020-05-29T00:00:00,2020,May,Friday,29,150,13,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,KH,DJ-50,OT,7,WHI,1000.0,STOLEN,7523,"{'type': 'Point', 'coordinates': (-79.35576206, 43.65652566)}"
-7527,15772,GO-20209014780,THEFT UNDER,2020-06-06T00:00:00,2020,June,Saturday,6,158,20,2020-06-07T00:00:00,2020,June,Sunday,7,159,8,D51,Toronto,73,Moss Park (73),Schools During Supervised Activity,Educational,SU,1800 MEN'S HARD,MT,18,BLK,200.0,STOLEN,7524,"{'type': 'Point', 'coordinates': (-79.37065383, 43.65073186)}"
-7528,15787,GO-20201217146,B&E,2020-05-01T00:00:00,2020,May,Friday,1,122,0,2020-07-02T00:00:00,2020,July,Thursday,2,184,13,D51,Toronto,73,Moss Park (73),"Private Property Structure (Pool, Shed, Detached Garage)",Other,BRODIE,ELAN,TO,24,GRN,1800.0,STOLEN,7525,"{'type': 'Point', 'coordinates': (-79.36731187, 43.65912273)}"
-7529,15799,GO-20209018924,THEFT UNDER,2020-07-29T00:00:00,2020,July,Wednesday,29,211,16,2020-07-29T00:00:00,2020,July,Wednesday,29,211,19,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,NCM MOSCOW PLUS,MT,32,WHI,3200.0,STOLEN,7526,"{'type': 'Point', 'coordinates': (-79.37147803000002, 43.66351279)}"
-7530,15813,GO-20201579165,THEFT UNDER,2020-08-18T00:00:00,2020,August,Tuesday,18,231,23,2020-08-23T00:00:00,2020,August,Sunday,23,236,19,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,ASCENTI,OT,1,WHI,1200.0,STOLEN,7527,"{'type': 'Point', 'coordinates': (-79.36941977, 43.65452491)}"
-7531,15826,GO-20209023399,THEFT UNDER,2020-09-10T00:00:00,2020,September,Thursday,10,254,10,2020-09-16T00:00:00,2020,September,Wednesday,16,260,11,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,ORPHEO 2,RG,18,BLK,980.0,STOLEN,7528,"{'type': 'Point', 'coordinates': (-79.35351296, 43.65500405)}"
-7532,15848,GO-20202390697,THEFT UNDER - BICYCLE,2020-12-15T00:00:00,2020,December,Tuesday,15,350,9,2020-12-20T00:00:00,2020,December,Sunday,20,355,16,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,ZZZ,,RG,3,BLK,2500.0,STOLEN,7529,"{'type': 'Point', 'coordinates': (-79.37452691, 43.65706649)}"
-7533,15849,GO-20209032614,THEFT UNDER - BICYCLE,2020-12-13T00:00:00,2020,December,Sunday,13,348,17,2020-12-23T00:00:00,2020,December,Wednesday,23,358,15,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,BI,,RG,10,WHI,0.0,STOLEN,7530,"{'type': 'Point', 'coordinates': (-79.35519255, 43.65477338)}"
-7534,16334,GO-20191321179,ROBBERY WITH WEAPON,2019-07-14T00:00:00,2019,July,Sunday,14,195,23,2019-07-14T00:00:00,2019,July,Sunday,14,195,23,D51,Toronto,73,Moss Park (73),"Open Areas (Lakes, Parks, Rivers)",Outside,UNKNOWN MAKE,,RG,0,BLKBLU,800.0,STOLEN,7531,"{'type': 'Point', 'coordinates': (-79.37352514, 43.66094246)}"
-7535,16361,GO-20199026572,THEFT UNDER,2019-08-16T00:00:00,2019,August,Friday,16,228,20,2019-08-17T00:00:00,2019,August,Saturday,17,229,11,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SU,,MT,21,LGR,325.0,STOLEN,7532,"{'type': 'Point', 'coordinates': (-79.36665279, 43.65068091)}"
-7536,16378,GO-20191776455,ROBBERY - OTHER,2019-09-16T00:00:00,2019,September,Monday,16,259,0,2019-09-16T00:00:00,2019,September,Monday,16,259,1,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,,MT,0,GRYBLK,300.0,STOLEN,7533,"{'type': 'Point', 'coordinates': (-79.36941977, 43.65452491)}"
-7537,16383,GO-20199030876,THEFT UNDER,2019-09-20T00:00:00,2019,September,Friday,20,263,11,2019-09-20T00:00:00,2019,September,Friday,20,263,16,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,UK,ROCKHOPPER,MT,27,RED,400.0,STOLEN,7534,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7538,16387,GO-20199031677,THEFT UNDER,2019-03-01T00:00:00,2019,March,Friday,1,60,16,2019-09-26T00:00:00,2019,September,Thursday,26,269,20,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,GI,TCR COMPOSITE 2,RC,10,BLK,2500.0,STOLEN,7535,"{'type': 'Point', 'coordinates': (-79.36859808, 43.65214811)}"
-7539,16397,GO-20199033546,THEFT UNDER - BICYCLE,2019-10-11T00:00:00,2019,October,Friday,11,284,3,2019-10-11T00:00:00,2019,October,Friday,11,284,15,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,8,,0.0,STOLEN,7536,"{'type': 'Point', 'coordinates': (-79.36859808, 43.65214811)}"
-7540,16424,GO-20192468760,THEFT UNDER,2019-12-06T00:00:00,2019,December,Friday,6,340,0,2019-12-20T00:00:00,2019,December,Friday,20,354,10,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,DIADORA,,MT,0,,300.0,STOLEN,7537,"{'type': 'Point', 'coordinates': (-79.36474468, 43.65298813)}"
-7541,20948,GO-20143337986,THEFT UNDER,2014-11-20T00:00:00,2014,November,Thursday,20,324,9,2014-11-20T00:00:00,2014,November,Thursday,20,324,19,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,DAYMAK,VERMONT,EL,1,RED,,STOLEN,7538,"{'type': 'Point', 'coordinates': (-79.36174292, 43.66035993)}"
-7542,16435,GO-2020226369,THEFT UNDER,2020-02-01T00:00:00,2020,February,Saturday,1,32,21,2020-02-01T00:00:00,2020,February,Saturday,1,32,22,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,FUJI,BARNEBEY,OT,7,GRN,500.0,RECOVERED,7539,"{'type': 'Point', 'coordinates': (-79.36941977, 43.65452491)}"
-7543,16455,GO-20209013545,THEFT UNDER,2020-05-19T00:00:00,2020,May,Tuesday,19,140,20,2020-05-20T00:00:00,2020,May,Wednesday,20,141,19,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,20,BLK,200.0,STOLEN,7540,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7544,16457,GO-20209014186,THEFT UNDER,2020-05-26T00:00:00,2020,May,Tuesday,26,147,0,2020-05-29T00:00:00,2020,May,Friday,29,150,11,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,21,BLK,700.0,STOLEN,7541,"{'type': 'Point', 'coordinates': (-79.36527402, 43.65426123)}"
-7545,16464,GO-20201144145,B&E,2020-06-21T00:00:00,2020,June,Sunday,21,173,5,2020-06-21T00:00:00,2020,June,Sunday,21,173,20,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,MT,26,WHI,2000.0,STOLEN,7542,"{'type': 'Point', 'coordinates': (-79.3723499, 43.65817021)}"
-7546,16465,GO-20201123513,THEFT FROM MOTOR VEHICLE UNDER,2020-06-17T00:00:00,2020,June,Wednesday,17,169,19,2020-06-18T00:00:00,2020,June,Thursday,18,170,18,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,,OT,3,WHI,300.0,STOLEN,7543,"{'type': 'Point', 'coordinates': (-79.36662886, 43.65929244)}"
-7547,16468,GO-20209016019,THEFT UNDER,2020-06-23T00:00:00,2020,June,Tuesday,23,175,20,2020-06-24T00:00:00,2020,June,Wednesday,24,176,2,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RM,FUSION,MT,18,MRN,0.0,STOLEN,7544,"{'type': 'Point', 'coordinates': (-79.36701066, 43.65154726)}"
-7548,16481,GO-20201356614,THEFT UNDER - BICYCLE,2020-07-14T00:00:00,2020,July,Tuesday,14,196,10,2020-07-21T00:00:00,2020,July,Tuesday,21,203,16,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,SIRRUS,OT,18,BLKWHI,975.0,STOLEN,7545,"{'type': 'Point', 'coordinates': (-79.36320575, 43.6527297)}"
-7549,16508,GO-20209021968,THEFT UNDER,2020-08-31T00:00:00,2020,August,Monday,31,244,15,2020-09-01T00:00:00,2020,September,Tuesday,1,245,18,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,BIKESHARE #: P,OT,3,DGR,1200.0,STOLEN,7546,"{'type': 'Point', 'coordinates': (-79.35888422, 43.65683302)}"
-7550,16721,GO-20182019972,THEFT UNDER - BICYCLE,2018-10-27T00:00:00,2018,October,Saturday,27,300,20,2018-11-02T00:00:00,2018,November,Friday,2,306,6,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,UNKN,OT,0,BLK,,STOLEN,7547,"{'type': 'Point', 'coordinates': (-79.3687877, 43.65699417)}"
-7551,16731,GO-201925964,B&E,2019-01-05T00:00:00,2019,January,Saturday,5,5,9,2019-01-05T00:00:00,2019,January,Saturday,5,5,9,D51,Toronto,73,Moss Park (73),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,,RG,12,GRY,1200.0,STOLEN,7548,"{'type': 'Point', 'coordinates': (-79.36947164, 43.65865872)}"
-7552,16732,GO-201925964,B&E,2019-01-05T00:00:00,2019,January,Saturday,5,5,9,2019-01-05T00:00:00,2019,January,Saturday,5,5,9,D51,Toronto,73,Moss Park (73),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,,RG,12,GRY,1000.0,STOLEN,7549,"{'type': 'Point', 'coordinates': (-79.36947164, 43.65865872)}"
-7553,16735,GO-20199006791,B&E,2019-02-26T00:00:00,2019,February,Tuesday,26,57,23,2019-02-27T00:00:00,2019,February,Wednesday,27,58,12,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,UK,,TO,1,GRY,0.0,STOLEN,7550,"{'type': 'Point', 'coordinates': (-79.35576206, 43.65652566)}"
-7554,16747,GO-2019803158,THEFT UNDER,2019-05-02T00:00:00,2019,May,Thursday,2,122,9,2019-05-03T00:00:00,2019,May,Friday,3,123,21,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,OT,18,GRY,1000.0,STOLEN,7551,"{'type': 'Point', 'coordinates': (-79.37481095, 43.66065384)}"
-7555,16748,GO-2019803158,THEFT UNDER,2019-05-02T00:00:00,2019,May,Thursday,2,122,9,2019-05-03T00:00:00,2019,May,Friday,3,123,21,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SUPERCYCLE,,MT,21,BLU,400.0,STOLEN,7552,"{'type': 'Point', 'coordinates': (-79.37481095, 43.66065384)}"
-7556,16762,GO-20199017740,THEFT UNDER,2019-05-21T00:00:00,2019,May,Tuesday,21,141,0,2019-06-07T00:00:00,2019,June,Friday,7,158,13,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,KO,ROVE,RG,11,BLK,1000.0,STOLEN,7553,"{'type': 'Point', 'coordinates': (-79.37452691, 43.65706649)}"
-7557,16773,GO-20199019736,THEFT UNDER,2019-06-21T00:00:00,2019,June,Friday,21,172,17,2019-06-22T00:00:00,2019,June,Saturday,22,173,22,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,DOLCE SPORT TRI,RC,27,RED,1000.0,STOLEN,7554,"{'type': 'Point', 'coordinates': (-79.36943408, 43.65100125)}"
-7558,16915,GO-20179006597,THEFT UNDER - BICYCLE,2017-05-18T00:00:00,2017,May,Thursday,18,138,10,2017-05-18T00:00:00,2017,May,Thursday,18,138,19,D51,Toronto,73,Moss Park (73),Universities / Colleges,Educational,GI,ROAM 2,MT,27,GRY,800.0,STOLEN,7555,"{'type': 'Point', 'coordinates': (-79.37185641, 43.65351071)}"
-7559,17460,GO-20142584735,THEFT UNDER,2014-07-23T00:00:00,2014,July,Wednesday,23,204,11,2014-07-27T00:00:00,2014,July,Sunday,27,208,20,D51,Toronto,73,Moss Park (73),Schools During Supervised Activity,Educational,OTHER,TRAFFIC,RG,7,BRN,465.0,STOLEN,7556,"{'type': 'Point', 'coordinates': (-79.36981519, 43.65189242)}"
-7560,2025,GO-20189004317,THEFT UNDER,2018-02-11T00:00:00,2018,February,Sunday,11,42,17,2018-02-12T00:00:00,2018,February,Monday,12,43,1,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,FJ,,RC,1,BLK,600.0,STOLEN,7557,"{'type': 'Point', 'coordinates': (-79.37008264, 43.656162280000004)}"
-7561,23640,GO-20151381237,THEFT UNDER,2015-08-12T00:00:00,2015,August,Wednesday,12,224,6,2015-08-12T00:00:00,2015,August,Wednesday,12,224,6,D51,Toronto,73,Moss Park (73),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,TCX,RC,18,BLKWHI,1800.0,STOLEN,7558,"{'type': 'Point', 'coordinates': (-79.36152898, 43.65368329)}"
-7562,16918,GO-2017948181,THEFT OF EBIKE UNDER $5000,2017-05-27T00:00:00,2017,May,Saturday,27,147,12,2017-05-29T00:00:00,2017,May,Monday,29,149,12,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,EMMO,2017,EL,50,BLK,2300.0,STOLEN,7559,"{'type': 'Point', 'coordinates': (-79.37008264, 43.656162280000004)}"
-7563,16923,GO-20171043883,THEFT UNDER - BICYCLE,2017-06-11T00:00:00,2017,June,Sunday,11,162,18,2017-06-12T00:00:00,2017,June,Monday,12,163,11,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,SIRRUS,OT,24,GRY,500.0,STOLEN,7560,"{'type': 'Point', 'coordinates': (-79.35779295, 43.65428865)}"
-7564,16925,GO-20179008018,THEFT UNDER - BICYCLE,2017-05-11T00:00:00,2017,May,Thursday,11,131,9,2017-06-13T00:00:00,2017,June,Tuesday,13,164,13,D51,Toronto,73,Moss Park (73),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,SU,,RC,21,BLU,450.0,STOLEN,7561,"{'type': 'Point', 'coordinates': (-79.36926699, 43.66399224)}"
-7565,16926,GO-20179008032,THEFT UNDER,2017-06-11T00:00:00,2017,June,Sunday,11,162,0,2017-06-13T00:00:00,2017,June,Tuesday,13,164,15,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,VIENNA 3,RG,1,BLK,1500.0,STOLEN,7562,"{'type': 'Point', 'coordinates': (-79.37008264, 43.656162280000004)}"
-7566,16927,GO-20179008032,THEFT UNDER,2017-06-11T00:00:00,2017,June,Sunday,11,162,0,2017-06-13T00:00:00,2017,June,Tuesday,13,164,15,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,NATIONAL,RG,27,BLU,1500.0,STOLEN,7563,"{'type': 'Point', 'coordinates': (-79.37008264, 43.656162280000004)}"
-7567,16938,GO-20179009240,THEFT UNDER - BICYCLE,2017-07-01T00:00:00,2017,July,Saturday,1,182,1,2017-07-01T00:00:00,2017,July,Saturday,1,182,12,D51,Toronto,73,Moss Park (73),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,UK,NERVE XC 9.0,MT,21,BLK,2700.0,STOLEN,7564,"{'type': 'Point', 'coordinates': (-79.36852769, 43.65887073)}"
-7568,16947,GO-20179010139,THEFT UNDER - BICYCLE,2017-07-13T00:00:00,2017,July,Thursday,13,194,8,2017-07-13T00:00:00,2017,July,Thursday,13,194,20,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,VITA,RG,8,DBL,950.0,STOLEN,7565,"{'type': 'Point', 'coordinates': (-79.36738106, 43.65241212)}"
-7569,16958,GO-20179011190,THEFT UNDER - BICYCLE,2017-07-26T00:00:00,2017,July,Wednesday,26,207,13,2017-07-27T00:00:00,2017,July,Thursday,27,208,19,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,RG,21,GRY,400.0,STOLEN,7566,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7570,16959,GO-20179011461,THEFT UNDER - BICYCLE,2017-07-31T00:00:00,2017,July,Monday,31,212,23,2017-08-01T00:00:00,2017,August,Tuesday,1,213,12,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,FJ,FEATHER,RG,1,RED,700.0,STOLEN,7567,"{'type': 'Point', 'coordinates': (-79.36947164, 43.65865872)}"
-7571,16963,GO-20179012164,THEFT UNDER - BICYCLE,2017-08-09T00:00:00,2017,August,Wednesday,9,221,13,2017-08-11T00:00:00,2017,August,Friday,11,223,12,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,B2115-7302,TO,7,LGR,565.0,STOLEN,7568,"{'type': 'Point', 'coordinates': (-79.36604724, 43.65176413)}"
-7572,16966,GO-20179012435,THEFT UNDER - BICYCLE,2017-08-15T00:00:00,2017,August,Tuesday,15,227,0,2017-08-15T00:00:00,2017,August,Tuesday,15,227,10,D51,Toronto,73,Moss Park (73),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,8,BLU,800.0,STOLEN,7569,"{'type': 'Point', 'coordinates': (-79.36947164, 43.65865872)}"
-7573,16980,GO-20179014673,THEFT UNDER - BICYCLE,2017-09-13T00:00:00,2017,September,Wednesday,13,256,0,2017-09-13T00:00:00,2017,September,Wednesday,13,256,16,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,DAMCO,RG,1,BLK,600.0,STOLEN,7570,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7574,16985,GO-20179016022,THEFT UNDER - BICYCLE,2017-09-27T00:00:00,2017,September,Wednesday,27,270,18,2017-09-28T00:00:00,2017,September,Thursday,28,271,16,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GF,,OT,21,RED,300.0,STOLEN,7571,"{'type': 'Point', 'coordinates': (-79.37352514, 43.66094246)}"
-7575,16992,GO-20179016954,THEFT UNDER - BICYCLE,2017-10-05T00:00:00,2017,October,Thursday,5,278,14,2017-10-11T00:00:00,2017,October,Wednesday,11,284,14,D51,Toronto,73,Moss Park (73),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RA,M20 OR M30,MT,10,PLE,400.0,STOLEN,7572,"{'type': 'Point', 'coordinates': (-79.37048033, 43.66372252)}"
-7576,17006,GO-20179019777,THEFT UNDER - BICYCLE,2017-11-13T00:00:00,2017,November,Monday,13,317,17,2017-11-16T00:00:00,2017,November,Thursday,16,320,11,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,SC,GTX 2,OT,21,RED,400.0,STOLEN,7573,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7577,17008,GO-20179020455,THEFT UNDER - BICYCLE,2017-11-13T00:00:00,2017,November,Monday,13,317,12,2017-11-24T00:00:00,2017,November,Friday,24,328,14,D51,Toronto,73,Moss Park (73),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RA,,RG,14,WHI,420.0,STOLEN,7574,"{'type': 'Point', 'coordinates': (-79.3723499, 43.65817021)}"
-7578,17009,GO-20179020455,THEFT UNDER - BICYCLE,2017-11-13T00:00:00,2017,November,Monday,13,317,12,2017-11-24T00:00:00,2017,November,Friday,24,328,14,D51,Toronto,73,Moss Park (73),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,RG,16,BLK,860.0,STOLEN,7575,"{'type': 'Point', 'coordinates': (-79.3723499, 43.65817021)}"
-7579,17015,GO-20173233051,THEFT OF EBIKE UNDER $5000,2017-12-08T00:00:00,2017,December,Friday,8,342,17,2017-12-10T00:00:00,2017,December,Sunday,10,344,13,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,EL,0,BLU,700.0,STOLEN,7576,"{'type': 'Point', 'coordinates': (-79.36755676, 43.65636789)}"
-7580,17020,GO-20189010903,THEFT UNDER - BICYCLE,2018-03-26T00:00:00,2018,March,Monday,26,85,13,2018-04-08T00:00:00,2018,April,Sunday,8,98,13,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,RG,21,BLU,300.0,STOLEN,7577,"{'type': 'Point', 'coordinates': (-79.36437279, 43.65212359)}"
-7581,17025,GO-20189013698,THEFT UNDER,2018-05-02T00:00:00,2018,May,Wednesday,2,122,7,2018-05-03T00:00:00,2018,May,Thursday,3,123,15,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,GI,KRONOS,RC,21,BLK,300.0,STOLEN,7578,"{'type': 'Point', 'coordinates': (-79.35576206, 43.65652566)}"
-7582,17031,GO-20189015679,THEFT UNDER - BICYCLE,2018-05-17T00:00:00,2018,May,Thursday,17,137,17,2018-05-21T00:00:00,2018,May,Monday,21,141,13,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,LONDON DELUXE,RG,1,BLK,300.0,STOLEN,7579,"{'type': 'Point', 'coordinates': (-79.36604724, 43.65176413)}"
-7583,17033,GO-20189015910,THEFT UNDER - BICYCLE,2018-05-16T00:00:00,2018,May,Wednesday,16,136,17,2018-05-23T00:00:00,2018,May,Wednesday,23,143,11,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,FJ,,TO,12,SIL,1600.0,STOLEN,7580,"{'type': 'Point', 'coordinates': (-79.35576206, 43.65652566)}"
-7584,17056,GO-20189019955,THEFT UNDER - BICYCLE,2018-06-23T00:00:00,2018,June,Saturday,23,174,21,2018-06-24T00:00:00,2018,June,Sunday,24,175,4,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DB,INSIGHT 2,TO,9,BLU,600.0,STOLEN,7581,"{'type': 'Point', 'coordinates': (-79.36947164, 43.65865872)}"
-7585,17057,GO-20181173489,THEFT UNDER - BICYCLE,2018-06-27T00:00:00,2018,June,Wednesday,27,178,2,2018-06-28T00:00:00,2018,June,Thursday,28,179,8,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,MT,12,GRN,120.0,STOLEN,7582,"{'type': 'Point', 'coordinates': (-79.35693963, 43.65638235)}"
-7586,17062,GO-20189021087,THEFT UNDER - BICYCLE,2018-05-18T00:00:00,2018,May,Friday,18,138,8,2018-07-03T00:00:00,2018,July,Tuesday,3,184,22,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,30,GRY,500.0,STOLEN,7583,"{'type': 'Point', 'coordinates': (-79.3723499, 43.65817021)}"
-7587,17064,GO-20189021253,THEFT UNDER - BICYCLE,2018-07-04T00:00:00,2018,July,Wednesday,4,185,22,2018-07-05T00:00:00,2018,July,Thursday,5,186,11,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,TR,,TO,9,DGR,1500.0,STOLEN,7584,"{'type': 'Point', 'coordinates': (-79.37066212, 43.66156417)}"
-7588,17068,GO-20189022242,THEFT UNDER - BICYCLE,2018-07-12T00:00:00,2018,July,Thursday,12,193,19,2018-07-12T00:00:00,2018,July,Thursday,12,193,22,D51,Toronto,73,Moss Park (73),Schools During Supervised Activity,Educational,OT,,RG,28,PLE,600.0,STOLEN,7585,"{'type': 'Point', 'coordinates': (-79.36943408, 43.65100125)}"
-7589,17077,GO-20189023978,THEFT UNDER - BICYCLE,2018-06-15T00:00:00,2018,June,Friday,15,166,9,2018-07-26T00:00:00,2018,July,Thursday,26,207,11,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,CA,QUICK 3 DISC WO,RG,9,BLK,999.0,STOLEN,7586,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7590,17090,GO-20189026926,THEFT UNDER - BICYCLE,2018-08-18T00:00:00,2018,August,Saturday,18,230,8,2018-08-18T00:00:00,2018,August,Saturday,18,230,17,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,BLK,1500.0,STOLEN,7587,"{'type': 'Point', 'coordinates': (-79.3666932, 43.65393254)}"
-7591,17111,GO-20189033900,THEFT UNDER - BICYCLE,2018-10-01T00:00:00,2018,October,Monday,1,274,22,2018-10-12T00:00:00,2018,October,Friday,12,285,22,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,SECTUER,RC,7,BLK,1050.0,STOLEN,7588,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7592,17126,GO-20159002672,THEFT UNDER,2015-05-12T00:00:00,2015,May,Tuesday,12,132,2,2015-05-12T00:00:00,2015,May,Tuesday,12,132,13,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,MA,SAN RAPHAEL DS2,MT,6,BLK,450.0,STOLEN,7589,"{'type': 'Point', 'coordinates': (-79.37185641, 43.65351071)}"
-7593,17137,GO-20159003328,THEFT UNDER,2015-06-04T00:00:00,2015,June,Thursday,4,155,9,2015-06-04T00:00:00,2015,June,Thursday,4,155,12,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,MA,UNKNOWN,RG,21,BLK,536.0,STOLEN,7590,"{'type': 'Point', 'coordinates': (-79.37103886, 43.65160431)}"
-7594,17146,GO-20159004293,THEFT UNDER,2015-07-07T00:00:00,2015,July,Tuesday,7,188,14,2015-07-07T00:00:00,2015,July,Tuesday,7,188,19,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,TO,21,,450.0,STOLEN,7591,"{'type': 'Point', 'coordinates': (-79.36183481, 43.65349743)}"
-7595,17152,GO-20151210452,THEFT UNDER,2015-07-15T00:00:00,2015,July,Wednesday,15,196,23,2015-07-16T00:00:00,2015,July,Thursday,16,197,21,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,TFS,MT,24,GRNBLK,1400.0,STOLEN,7592,"{'type': 'Point', 'coordinates': (-79.37156529, 43.652817240000005)}"
-7596,17182,GO-20151815081,THEFT UNDER,2015-10-21T00:00:00,2015,October,Wednesday,21,294,18,2015-10-23T00:00:00,2015,October,Friday,23,296,9,D51,Toronto,73,Moss Park (73),Schools During Un-Supervised Activity,Educational,NORCO,INDY 3,MT,21,BLK,739.0,STOLEN,7593,"{'type': 'Point', 'coordinates': (-79.37065383, 43.65073186)}"
-7597,17185,GO-20159009195,THEFT UNDER,2015-10-15T00:00:00,2015,October,Thursday,15,288,1,2015-10-31T00:00:00,2015,October,Saturday,31,304,3,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,20,BLK,700.0,STOLEN,7594,"{'type': 'Point', 'coordinates': (-79.37103886, 43.65160431)}"
-7598,17195,GO-20159010514,B&E,2015-11-23T00:00:00,2015,November,Monday,23,327,11,2015-12-05T00:00:00,2015,December,Saturday,5,339,12,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,TR,MADONE 3.1,RC,18,,2400.0,STOLEN,7595,"{'type': 'Point', 'coordinates': (-79.36738106, 43.65241212)}"
-7599,17214,GO-20169003928,THEFT UNDER - BICYCLE,2016-04-27T00:00:00,2016,April,Wednesday,27,118,18,2016-04-28T00:00:00,2016,April,Thursday,28,119,22,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,PE,,RC,6,RED,400.0,STOLEN,7596,"{'type': 'Point', 'coordinates': (-79.36738106, 43.65241212)}"
-7600,17222,GO-20169004926,THEFT UNDER,2016-05-20T00:00:00,2016,May,Friday,20,141,17,2016-05-25T00:00:00,2016,May,Wednesday,25,146,8,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,TR,SOHO S,RG,1,BLK,1200.0,STOLEN,7597,"{'type': 'Point', 'coordinates': (-79.36320575, 43.6527297)}"
-7601,17226,GO-20169005492,THEFT UNDER - BICYCLE,2016-06-08T00:00:00,2016,June,Wednesday,8,160,9,2016-06-08T00:00:00,2016,June,Wednesday,8,160,18,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,TO,3,BGE,,STOLEN,7598,"{'type': 'Point', 'coordinates': (-79.37156529, 43.652817240000005)}"
-7602,17230,GO-20169005801,THEFT UNDER - BICYCLE,2016-06-11T00:00:00,2016,June,Saturday,11,163,16,2016-06-14T00:00:00,2016,June,Tuesday,14,166,21,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,RM,RC-30,RC,24,YEL,672.0,STOLEN,7599,"{'type': 'Point', 'coordinates': (-79.35693963, 43.65638235)}"
-7603,17234,GO-20169006198,THEFT UNDER,2016-06-09T00:00:00,2016,June,Thursday,9,161,23,2016-06-22T00:00:00,2016,June,Wednesday,22,174,10,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,NO,VFR4,RG,21,BLK,400.0,STOLEN,7600,"{'type': 'Point', 'coordinates': (-79.36731187, 43.65912273)}"
-7604,17236,GO-20169006330,THEFT UNDER,2016-06-24T00:00:00,2016,June,Friday,24,176,17,2016-06-25T00:00:00,2016,June,Saturday,25,177,2,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,,RG,21,BLK,600.0,STOLEN,7601,"{'type': 'Point', 'coordinates': (-79.36320575, 43.6527297)}"
-7605,17248,GO-20169007155,THEFT UNDER - BICYCLE,2016-07-12T00:00:00,2016,July,Tuesday,12,194,16,2016-07-13T00:00:00,2016,July,Wednesday,13,195,15,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,OT,1,PLE,500.0,STOLEN,7602,"{'type': 'Point', 'coordinates': (-79.37341859, 43.65730333)}"
-7606,17250,GO-20169007256,THEFT UNDER - BICYCLE,2016-07-14T00:00:00,2016,July,Thursday,14,196,14,2016-07-15T00:00:00,2016,July,Friday,15,197,11,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,1,LGR,250.0,STOLEN,7603,"{'type': 'Point', 'coordinates': (-79.37156529, 43.652817240000005)}"
-7607,17253,GO-20161406315,ROBBERY - OTHER,2016-08-10T00:00:00,2016,August,Wednesday,10,223,1,2016-08-10T00:00:00,2016,August,Wednesday,10,223,1,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DIAMONDBACK,,MT,18,BLU,700.0,STOLEN,7604,"{'type': 'Point', 'coordinates': (-79.36859808, 43.65214811)}"
-7608,17262,GO-20169009666,THEFT UNDER - BICYCLE,2016-08-29T00:00:00,2016,August,Monday,29,242,16,2016-08-29T00:00:00,2016,August,Monday,29,242,18,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,PRIME,RG,1,BLK,600.0,STOLEN,7605,"{'type': 'Point', 'coordinates': (-79.36813583, 43.66211281)}"
-7609,17266,GO-20169010318,THEFT UNDER,2016-09-12T00:00:00,2016,September,Monday,12,256,0,2016-09-12T00:00:00,2016,September,Monday,12,256,12,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,AQUILA,OT,10,BLU,900.0,STOLEN,7606,"{'type': 'Point', 'coordinates': (-79.36849898, 43.66204335)}"
-7610,17267,GO-20169010318,THEFT UNDER,2016-09-12T00:00:00,2016,September,Monday,12,256,0,2016-09-12T00:00:00,2016,September,Monday,12,256,12,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,OT,1,SIL,500.0,STOLEN,7607,"{'type': 'Point', 'coordinates': (-79.36849898, 43.66204335)}"
-7611,17270,GO-20169010516,THEFT UNDER - BICYCLE,2016-09-15T00:00:00,2016,September,Thursday,15,259,0,2016-09-16T00:00:00,2016,September,Friday,16,260,2,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,RIVERSPORT,RG,21,,470.0,STOLEN,7608,"{'type': 'Point', 'coordinates': (-79.36738106, 43.65241212)}"
-7612,17278,GO-20169011665,THEFT UNDER,2016-10-05T00:00:00,2016,October,Wednesday,5,279,16,2016-10-06T00:00:00,2016,October,Thursday,6,280,15,D51,Toronto,73,Moss Park (73),Universities / Colleges,Educational,OT,IZALCO,RC,40,PLE,2000.0,STOLEN,7609,"{'type': 'Point', 'coordinates': (-79.36903404, 43.65009982)}"
-7613,17279,GO-20169011705,THEFT UNDER - BICYCLE,2016-10-06T00:00:00,2016,October,Thursday,6,280,23,2016-10-07T00:00:00,2016,October,Friday,7,281,17,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,,NAKAMURA,RG,10,PLE,400.0,STOLEN,7610,"{'type': 'Point', 'coordinates': (-79.36701066, 43.65154726)}"
-7614,17284,GO-20169012624,THEFT UNDER - BICYCLE,2016-10-26T00:00:00,2016,October,Wednesday,26,300,0,2016-10-26T00:00:00,2016,October,Wednesday,26,300,15,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,BRODIESTERLING,RG,12,LGR,679.0,STOLEN,7611,"{'type': 'Point', 'coordinates': (-79.36047375, 43.65647925)}"
-7615,17287,GO-20161935532,THEFT UNDER - BICYCLE,2016-10-31T00:00:00,2016,October,Monday,31,305,9,2016-10-31T00:00:00,2016,October,Monday,31,305,13,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RALEIGH,,RG,10,,,STOLEN,7612,"{'type': 'Point', 'coordinates': (-79.37065383, 43.65073186)}"
-7616,17290,GO-20169013534,THEFT UNDER - BICYCLE,2016-11-17T00:00:00,2016,November,Thursday,17,322,8,2016-11-17T00:00:00,2016,November,Thursday,17,322,15,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,UK,MOUNTAIN BIKE,MT,21,RED,226.0,STOLEN,7613,"{'type': 'Point', 'coordinates': (-79.36947164, 43.65865872)}"
-7617,17291,GO-20169013828,THEFT UNDER,2016-11-23T00:00:00,2016,November,Wednesday,23,328,21,2016-11-24T00:00:00,2016,November,Thursday,24,329,22,D51,Toronto,73,Moss Park (73),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,NO,VALENCE 2015,TO,11,RED,1475.0,STOLEN,7614,"{'type': 'Point', 'coordinates': (-79.3666932, 43.65393254)}"
-7618,17293,GO-20162074286,THEFT OVER - BICYCLE,2016-11-22T00:00:00,2016,November,Tuesday,22,327,12,2016-12-01T00:00:00,2016,December,Thursday,1,336,14,D51,Toronto,73,Moss Park (73),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OTHER,ATALAYA,MT,14,SIL,7000.0,STOLEN,7615,"{'type': 'Point', 'coordinates': (-79.37008264, 43.656162280000004)}"
-7619,17297,GO-2017297203,THEFT UNDER - BICYCLE,2017-02-16T00:00:00,2017,February,Thursday,16,47,23,2017-02-17T00:00:00,2017,February,Friday,17,48,0,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,DASH,OT,24,WHIYEL,600.0,STOLEN,7616,"{'type': 'Point', 'coordinates': (-79.36926699, 43.66399224)}"
-7620,17315,GO-20179005788,THEFT UNDER - BICYCLE,2017-04-21T00:00:00,2017,April,Friday,21,111,17,2017-05-05T00:00:00,2017,May,Friday,5,125,17,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,UK,"1981 21.5"""" FRAM",RC,10,BLU,400.0,STOLEN,7617,"{'type': 'Point', 'coordinates': (-79.37103886, 43.65160431)}"
-7621,17467,GO-20142693804,THEFT UNDER,2014-08-11T00:00:00,2014,August,Monday,11,223,9,2014-08-13T00:00:00,2014,August,Wednesday,13,225,11,D51,Toronto,73,Moss Park (73),Universities / Colleges,Educational,RALEIGH,CADENT,MT,21,SIL,500.0,STOLEN,7618,"{'type': 'Point', 'coordinates': (-79.37156529, 43.652817240000005)}"
-7622,17478,GO-20149006778,PROPERTY - LOST,2014-09-08T00:00:00,2014,September,Monday,8,251,8,2014-09-10T00:00:00,2014,September,Wednesday,10,253,23,D51,Toronto,73,Moss Park (73),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,UK,,RC,30,,1000.0,UNKNOWN,7619,"{'type': 'Point', 'coordinates': (-79.36981519, 43.65189242)}"
-7623,17487,GO-20149007439,THEFT UNDER,2014-10-06T00:00:00,2014,October,Monday,6,279,15,2014-10-06T00:00:00,2014,October,Monday,6,279,23,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CYCLONE,SC,1,BLK,1921.0,STOLEN,7620,"{'type': 'Point', 'coordinates': (-79.37027555, 43.64981872)}"
-7624,17491,GO-20143229667,THEFT UNDER,2014-10-31T00:00:00,2014,October,Friday,31,304,22,2014-11-03T00:00:00,2014,November,Monday,3,307,11,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GITANE,,RC,6,GRNYEL,500.0,STOLEN,7621,"{'type': 'Point', 'coordinates': (-79.37066212, 43.66156417)}"
-7625,17492,GO-20143229667,THEFT UNDER,2014-10-31T00:00:00,2014,October,Friday,31,304,22,2014-11-03T00:00:00,2014,November,Monday,3,307,11,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TRIUMPH,,RC,6,RED,,STOLEN,7622,"{'type': 'Point', 'coordinates': (-79.37066212, 43.66156417)}"
-7626,17495,GO-20143309349,THEFT UNDER,2014-11-15T00:00:00,2014,November,Saturday,15,319,19,2014-11-16T00:00:00,2014,November,Sunday,16,320,0,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OTHER,,EL,0,,1600.0,STOLEN,7623,"{'type': 'Point', 'coordinates': (-79.37099208, 43.65829436)}"
-7627,17497,GO-20143355394,THEFT UNDER,2014-11-13T00:00:00,2014,November,Thursday,13,317,9,2014-11-23T00:00:00,2014,November,Sunday,23,327,17,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,ROAD BIKE,RG,21,BLK,500.0,STOLEN,7624,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7628,17501,GO-20159000512,THEFT UNDER,2015-01-24T00:00:00,2015,January,Saturday,24,24,17,2015-01-27T00:00:00,2015,January,Tuesday,27,27,18,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,,6.2 MONSTER,MT,21,BLK,500.0,STOLEN,7625,"{'type': 'Point', 'coordinates': (-79.36320575, 43.6527297)}"
-7629,17502,GO-20159000579,THEFT UNDER,2015-01-26T00:00:00,2015,January,Monday,26,26,8,2015-02-02T00:00:00,2015,February,Monday,2,33,0,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,TREK 3700 ALPHA,MT,21,RED,200.0,STOLEN,7626,"{'type': 'Point', 'coordinates': (-79.37156529, 43.652817240000005)}"
-7630,18823,GO-20202247200,THEFT OVER - BICYCLE,2020-11-25T00:00:00,2020,November,Wednesday,25,330,13,2020-11-27T00:00:00,2020,November,Friday,27,332,17,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,MARINOMI,TURISMO,TO,0,GRN,5400.0,STOLEN,7627,"{'type': 'Point', 'coordinates': (-79.36604724, 43.65176413)}"
-7631,19604,GO-20209028111,THEFT UNDER - BICYCLE,2020-10-17T00:00:00,2020,October,Saturday,17,291,12,2020-10-29T00:00:00,2020,October,Thursday,29,303,12,D51,Toronto,73,Moss Park (73),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,DOWNTOWN 701 CH,RG,12,BLK,449.0,STOLEN,7628,"{'type': 'Point', 'coordinates': (-79.36627913, 43.65664856)}"
-7632,19605,GO-20209028111,THEFT UNDER - BICYCLE,2020-10-17T00:00:00,2020,October,Saturday,17,291,12,2020-10-29T00:00:00,2020,October,Thursday,29,303,12,D51,Toronto,73,Moss Park (73),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,CITY CLASS LOW,RG,12,BLK,429.0,STOLEN,7629,"{'type': 'Point', 'coordinates': (-79.36627913, 43.65664856)}"
-7633,19976,GO-20189031332,THEFT UNDER - BICYCLE,2018-09-19T00:00:00,2018,September,Wednesday,19,262,9,2018-09-20T00:00:00,2018,September,Thursday,20,263,22,D51,Toronto,73,Moss Park (73),Universities / Colleges,Educational,OT,ALLEZ E5,RG,8,BLK,900.0,STOLEN,7630,"{'type': 'Point', 'coordinates': (-79.36981519, 43.65189242)}"
-7634,19980,GO-20189032554,THEFT UNDER - BICYCLE,2018-10-01T00:00:00,2018,October,Monday,1,274,15,2018-10-01T00:00:00,2018,October,Monday,1,274,15,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ALLOY -6 SPROCK,TO,12,RED,200.0,STOLEN,7631,"{'type': 'Point', 'coordinates': (-79.36095013, 43.65403384)}"
-7635,19987,GO-20189033985,THEFT UNDER - BICYCLE,2018-10-13T00:00:00,2018,October,Saturday,13,286,9,2018-10-13T00:00:00,2018,October,Saturday,13,286,17,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,,OT,16,BLK,3000.0,STOLEN,7632,"{'type': 'Point', 'coordinates': (-79.35940961, 43.65496744)}"
-7636,19988,GO-20189034056,THEFT UNDER - BICYCLE,2018-10-13T00:00:00,2018,October,Saturday,13,286,12,2018-10-14T00:00:00,2018,October,Sunday,14,287,15,D51,Toronto,73,Moss Park (73),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,SU,700C CIRCUIT,RC,14,LBL,299.0,STOLEN,7633,"{'type': 'Point', 'coordinates': (-79.36941977, 43.65452491)}"
-7637,19993,GO-20189034997,THEFT UNDER - BICYCLE,2018-10-18T00:00:00,2018,October,Thursday,18,291,20,2018-10-22T00:00:00,2018,October,Monday,22,295,9,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,SILVERSTONE 1,RC,14,RED,999.0,STOLEN,7634,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7638,19996,GO-20189035724,THEFT UNDER - BICYCLE,2018-10-25T00:00:00,2018,October,Thursday,25,298,16,2018-10-26T00:00:00,2018,October,Friday,26,299,16,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,VICE DUAL SUSPE,MT,18,BLU,169.0,STOLEN,7635,"{'type': 'Point', 'coordinates': (-79.36943408, 43.65100125)}"
-7639,20003,GO-20189041906,THEFT UNDER,2018-12-06T00:00:00,2018,December,Thursday,6,340,9,2018-12-13T00:00:00,2018,December,Thursday,13,347,12,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,OT,1,,800.0,STOLEN,7636,"{'type': 'Point', 'coordinates': (-79.36437279, 43.65212359)}"
-7640,20014,GO-20199006824,THEFT UNDER,2019-02-11T00:00:00,2019,February,Monday,11,42,0,2019-02-27T00:00:00,2019,February,Wednesday,27,58,16,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,OT,3,BLK,0.0,STOLEN,7637,"{'type': 'Point', 'coordinates': (-79.3723499, 43.65817021)}"
-7641,20023,GO-2019720270,THEFT UNDER,2019-04-21T00:00:00,2019,April,Sunday,21,111,20,2019-04-21T00:00:00,2019,April,Sunday,21,111,20,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,,RG,21,BLK,,STOLEN,7638,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7642,20032,GO-2019984205,B&E,2019-05-15T00:00:00,2019,May,Wednesday,15,135,10,2019-05-29T00:00:00,2019,May,Wednesday,29,149,13,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OTHER,MARIPOSA,RG,21,WHI,10000.0,STOLEN,7639,"{'type': 'Point', 'coordinates': (-79.36943408, 43.65100125)}"
-7643,20033,GO-20199017794,THEFT UNDER,2019-06-07T00:00:00,2019,June,Friday,7,158,9,2019-06-07T00:00:00,2019,June,Friday,7,158,22,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ROAM XL BLACK,RG,21,BLK,1242.0,STOLEN,7640,"{'type': 'Point', 'coordinates': (-79.37027555, 43.64981872)}"
-7644,20192,GO-20179008600,THEFT UNDER - BICYCLE,2017-06-19T00:00:00,2017,June,Monday,19,170,20,2017-06-21T00:00:00,2017,June,Wednesday,21,172,13,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,CC,SLOPE 26'',MT,21,BLK,540.0,STOLEN,7641,"{'type': 'Point', 'coordinates': (-79.36701066, 43.65154726)}"
-7645,20223,GO-20171459781,THEFT UNDER - BICYCLE,2017-08-13T00:00:00,2017,August,Sunday,13,225,13,2017-08-13T00:00:00,2017,August,Sunday,13,225,13,D51,Toronto,73,Moss Park (73),"Open Areas (Lakes, Parks, Rivers)",Outside,MIA DORA,ORBITA,MT,21,,100.0,STOLEN,7642,"{'type': 'Point', 'coordinates': (-79.37008264, 43.656162280000004)}"
-7646,20231,GO-20179013382,THEFT UNDER,2017-08-23T00:00:00,2017,August,Wednesday,23,235,17,2017-08-26T00:00:00,2017,August,Saturday,26,238,10,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,,RG,21,BLK,0.0,STOLEN,7643,"{'type': 'Point', 'coordinates': (-79.36527402, 43.65426123)}"
-7647,20239,GO-20171680458,THEFT UNDER - BICYCLE,2017-09-16T00:00:00,2017,September,Saturday,16,259,11,2017-09-16T00:00:00,2017,September,Saturday,16,259,13,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RALEIGH,SUPERB,OT,3,GRN,300.0,STOLEN,7644,"{'type': 'Point', 'coordinates': (-79.36859808, 43.65214811)}"
-7648,20240,GO-20171717224,THEFT UNDER - BICYCLE,2017-09-21T00:00:00,2017,September,Thursday,21,264,10,2017-09-21T00:00:00,2017,September,Thursday,21,264,21,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,RC,6,BLU,250.0,STOLEN,7645,"{'type': 'Point', 'coordinates': (-79.36399025000001, 43.65127325)}"
-7649,20262,GO-20179017844,THEFT UNDER - BICYCLE,2017-10-18T00:00:00,2017,October,Wednesday,18,291,15,2017-10-22T00:00:00,2017,October,Sunday,22,295,15,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,UK,LANGSTER,RG,1,BLK,300.0,STOLEN,7646,"{'type': 'Point', 'coordinates': (-79.36947164, 43.65865872)}"
-7650,20265,GO-20179018188,THEFT UNDER - BICYCLE,2017-10-25T00:00:00,2017,October,Wednesday,25,298,12,2017-10-25T00:00:00,2017,October,Wednesday,25,298,17,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ROAM 3 DISC,RG,24,BLK,674.0,STOLEN,7648,"{'type': 'Point', 'coordinates': (-79.36662886, 43.65929244)}"
-7651,20268,GO-20179018708,THEFT UNDER - BICYCLE,2017-11-01T00:00:00,2017,November,Wednesday,1,305,1,2017-11-01T00:00:00,2017,November,Wednesday,1,305,19,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,RM,,MT,24,BLK,1000.0,STOLEN,7649,"{'type': 'Point', 'coordinates': (-79.36701066, 43.65154726)}"
-7652,20274,GO-20173014822,THEFT UNDER - BICYCLE,2017-10-23T00:00:00,2017,October,Monday,23,296,11,2017-11-17T00:00:00,2017,November,Friday,17,321,17,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,MT,12,BLU,,STOLEN,7650,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7653,20282,GO-20179022429,THEFT UNDER - BICYCLE,2017-11-01T00:00:00,2017,November,Wednesday,1,305,6,2017-12-17T00:00:00,2017,December,Sunday,17,351,18,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,RM,,MT,20,BLK,1253.0,STOLEN,7651,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7654,20289,GO-20189005878,THEFT UNDER - BICYCLE,2018-02-23T00:00:00,2018,February,Friday,23,54,14,2018-02-23T00:00:00,2018,February,Friday,23,54,20,D51,Toronto,73,Moss Park (73),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,KO,,MT,24,BLK,600.0,STOLEN,7652,"{'type': 'Point', 'coordinates': (-79.37302171, 43.66318983)}"
-7655,20293,GO-20189013378,THEFT UNDER - BICYCLE,2018-04-25T00:00:00,2018,April,Wednesday,25,115,12,2018-04-30T00:00:00,2018,April,Monday,30,120,22,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,"26"""" BIGGITY DEL",OT,7,GRY,400.0,STOLEN,7653,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7656,20296,GO-20189014445,THEFT UNDER,2018-04-30T00:00:00,2018,April,Monday,30,120,15,2018-05-10T00:00:00,2018,May,Thursday,10,130,15,D51,Toronto,73,Moss Park (73),Homeless Shelter / Mission,Other,OT,VENETTO400,MT,21,RED,10000.0,STOLEN,7654,"{'type': 'Point', 'coordinates': (-79.37267618, 43.65234821)}"
-7657,20298,GO-20189014880,THEFT UNDER - BICYCLE,2018-05-14T00:00:00,2018,May,Monday,14,134,9,2018-05-14T00:00:00,2018,May,Monday,14,134,14,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,21,WHI,400.0,STOLEN,7655,"{'type': 'Point', 'coordinates': (-79.36859808, 43.65214811)}"
-7658,20300,GO-20189015359,THEFT UNDER - BICYCLE,2018-05-13T00:00:00,2018,May,Sunday,13,133,16,2018-05-18T00:00:00,2018,May,Friday,18,138,0,D51,Toronto,73,Moss Park (73),Bar / Restaurant,Commercial,OT,OPTIMUM 61,TO,24,,1000.0,STOLEN,7656,"{'type': 'Point', 'coordinates': (-79.36399025000001, 43.65127325)}"
-7659,20301,GO-20189015936,THEFT UNDER - BICYCLE,2018-05-19T00:00:00,2018,May,Saturday,19,139,23,2018-05-23T00:00:00,2018,May,Wednesday,23,143,14,D51,Toronto,73,Moss Park (73),Convenience Stores,Commercial,FJ,ABSOLUTE 2.0,OT,6,GRY,700.0,STOLEN,7657,"{'type': 'Point', 'coordinates': (-79.37585959, 43.66043919)}"
-7660,20316,GO-20189019190,THEFT UNDER - BICYCLE,2018-06-18T00:00:00,2018,June,Monday,18,169,7,2018-06-18T00:00:00,2018,June,Monday,18,169,17,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ROAD RACING BIK,RC,1,WHI,600.0,STOLEN,7658,"{'type': 'Point', 'coordinates': (-79.35693963, 43.65638235)}"
-7661,20318,GO-20189019607,THEFT UNDER - BICYCLE,2018-06-20T00:00:00,2018,June,Wednesday,20,171,17,2018-06-21T00:00:00,2018,June,Thursday,21,172,12,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,TR,EX-8,MT,18,BLK,4500.0,STOLEN,7659,"{'type': 'Point', 'coordinates': (-79.36701066, 43.65154726)}"
-7662,20321,GO-20181166381,THEFT UNDER - BICYCLE,2018-06-27T00:00:00,2018,June,Wednesday,27,178,5,2018-06-27T00:00:00,2018,June,Wednesday,27,178,6,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,GIOS TORINO,RC,10,LBL,2500.0,STOLEN,7660,"{'type': 'Point', 'coordinates': (-79.37279194, 43.6527041)}"
-7663,20332,GO-20189022521,THEFT UNDER - BICYCLE,2018-07-13T00:00:00,2018,July,Friday,13,194,17,2018-07-15T00:00:00,2018,July,Sunday,15,196,18,D51,Toronto,73,Moss Park (73),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,17 PROJEKT 21 S,RG,10,BLU,600.0,STOLEN,7661,"{'type': 'Point', 'coordinates': (-79.3723499, 43.65817021)}"
-7664,20340,GO-20181373319,THEFT OF EBIKE UNDER $5000,2018-07-24T00:00:00,2018,July,Tuesday,24,205,18,2018-07-27T00:00:00,2018,July,Friday,27,208,13,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,URBAN S,EL,32,BLK,1000.0,STOLEN,7662,"{'type': 'Point', 'coordinates': (-79.35800136, 43.65577965)}"
-7665,20342,GO-20189025472,THEFT UNDER,2018-08-07T00:00:00,2018,August,Tuesday,7,219,0,2018-08-07T00:00:00,2018,August,Tuesday,7,219,21,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,CC,ALPHA,MT,21,BLK,700.0,STOLEN,7663,"{'type': 'Point', 'coordinates': (-79.36947164, 43.65865872)}"
-7666,20346,GO-20189026220,THEFT UNDER - BICYCLE,2018-08-12T00:00:00,2018,August,Sunday,12,224,14,2018-08-13T00:00:00,2018,August,Monday,13,225,17,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,VFR 5,OT,21,GRY,645.0,STOLEN,7664,"{'type': 'Point', 'coordinates': (-79.37667701, 43.66241871)}"
-7667,20349,GO-20189026446,THEFT UNDER - BICYCLE,2018-08-11T00:00:00,2018,August,Saturday,11,223,15,2018-08-15T00:00:00,2018,August,Wednesday,15,227,15,D51,Toronto,73,Moss Park (73),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,NOVA,TO,18,ONG,300.0,STOLEN,7665,"{'type': 'Point', 'coordinates': (-79.36701066, 43.65154726)}"
-7668,20362,GO-20189028515,THEFT FROM MOTOR VEHICLE UNDER,2018-08-23T00:00:00,2018,August,Thursday,23,235,23,2018-08-29T00:00:00,2018,August,Wednesday,29,241,22,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,SU,,MT,21,RED,0.0,STOLEN,7666,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7669,20377,GO-20189031165,THEFT UNDER - BICYCLE,2018-09-19T00:00:00,2018,September,Wednesday,19,262,13,2018-09-19T00:00:00,2018,September,Wednesday,19,262,14,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BI,BIANCHI,RC,8,WHI,1200.0,STOLEN,7667,"{'type': 'Point', 'coordinates': (-79.35940961, 43.65496744)}"
-7670,20392,GO-2015947587,THEFT UNDER,2015-06-06T00:00:00,2015,June,Saturday,6,157,11,2015-06-06T00:00:00,2015,June,Saturday,6,157,11,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MASI,SPECIAL,TO,1,ONG,900.0,STOLEN,7668,"{'type': 'Point', 'coordinates': (-79.36320575, 43.6527297)}"
-7671,20396,GO-20159003735,THEFT UNDER,2015-06-18T00:00:00,2015,June,Thursday,18,169,13,2015-06-18T00:00:00,2015,June,Thursday,18,169,15,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,MEN'S 700CC HYB,OT,7,BLK,250.0,STOLEN,7669,"{'type': 'Point', 'coordinates': (-79.35837569, 43.65558195)}"
-7672,20400,GO-20151148841,THEFT UNDER,2015-07-06T00:00:00,2015,July,Monday,6,187,23,2015-07-07T00:00:00,2015,July,Tuesday,7,188,20,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,,MT,12,CRM,300.0,STOLEN,7670,"{'type': 'Point', 'coordinates': (-79.37219606, 43.66122668)}"
-7673,20401,GO-20151148841,THEFT UNDER,2015-07-06T00:00:00,2015,July,Monday,6,187,23,2015-07-07T00:00:00,2015,July,Tuesday,7,188,20,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,CYPRESS,MT,12,GRY,600.0,STOLEN,7671,"{'type': 'Point', 'coordinates': (-79.37219606, 43.66122668)}"
-7674,20406,GO-20159004610,THEFT UNDER,2015-07-16T00:00:00,2015,July,Thursday,16,197,7,2015-07-16T00:00:00,2015,July,Thursday,16,197,8,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,FX7.3,TO,27,BLK,720.0,STOLEN,7672,"{'type': 'Point', 'coordinates': (-79.37156529, 43.652817240000005)}"
-7675,20407,GO-20159004631,THEFT UNDER,2015-07-01T00:00:00,2015,July,Wednesday,1,182,15,2015-07-16T00:00:00,2015,July,Thursday,16,197,18,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,07GIANTFCR2(W),OT,21,WHI,1000.0,STOLEN,7673,"{'type': 'Point', 'coordinates': (-79.37156529, 43.652817240000005)}"
-7676,20411,GO-20151221966,THEFT UNDER,2015-07-15T00:00:00,2015,July,Wednesday,15,196,17,2015-07-18T00:00:00,2015,July,Saturday,18,199,14,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OTHER,,RG,1,PNK,150.0,STOLEN,7674,"{'type': 'Point', 'coordinates': (-79.3687877, 43.65699417)}"
-7677,20418,GO-20151262131,THEFT UNDER,2015-07-23T00:00:00,2015,July,Thursday,23,204,9,2015-07-24T00:00:00,2015,July,Friday,24,205,12,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,APOLLO,TRACE 10,OT,15,BLKGRN,550.0,STOLEN,7675,"{'type': 'Point', 'coordinates': (-79.37185641, 43.65351071)}"
-7678,20424,GO-20159005432,THEFT UNDER,2015-08-06T00:00:00,2015,August,Thursday,6,218,23,2015-08-07T00:00:00,2015,August,Friday,7,219,9,D51,Toronto,73,Moss Park (73),Bar / Restaurant,Commercial,SU,STORM,BM,18,PLE,300.0,STOLEN,7676,"{'type': 'Point', 'coordinates': (-79.37341859, 43.65730333)}"
-7679,20431,GO-20159006579,THEFT UNDER,2015-09-01T00:00:00,2015,September,Tuesday,1,244,10,2015-09-01T00:00:00,2015,September,Tuesday,1,244,11,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,UK,EM355,EL,30,,1200.0,STOLEN,7677,"{'type': 'Point', 'coordinates': (-79.37099208, 43.65829436)}"
-7680,20434,GO-20159006829,THEFT UNDER,2015-06-29T00:00:00,2015,June,Monday,29,180,17,2015-09-06T00:00:00,2015,September,Sunday,6,249,18,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,21,SIL,650.0,STOLEN,7678,"{'type': 'Point', 'coordinates': (-79.37219606, 43.66122668)}"
-7681,20435,GO-20159006829,THEFT UNDER,2015-06-29T00:00:00,2015,June,Monday,29,180,17,2015-09-06T00:00:00,2015,September,Sunday,6,249,18,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,,FO,10,RED,325.0,STOLEN,7679,"{'type': 'Point', 'coordinates': (-79.37219606, 43.66122668)}"
-7682,20449,GO-20159009095,THEFT UNDER,2015-10-22T00:00:00,2015,October,Thursday,22,295,21,2015-10-27T00:00:00,2015,October,Tuesday,27,300,18,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,DAILY,RG,3,LGR,900.0,STOLEN,7680,"{'type': 'Point', 'coordinates': (-79.37048033, 43.66372252)}"
-7683,20480,GO-20169003351,THEFT UNDER - BICYCLE,2016-04-11T00:00:00,2016,April,Monday,11,102,20,2016-04-13T00:00:00,2016,April,Wednesday,13,104,8,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,EM,KING KONG,EL,32,BLU,1800.0,STOLEN,7681,"{'type': 'Point', 'coordinates': (-79.3687877, 43.65699417)}"
-7684,20486,GO-2016751374,B&E,2016-04-25T00:00:00,2016,April,Monday,25,116,10,2016-05-02T00:00:00,2016,May,Monday,2,123,15,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,ELECTRA CRUISER,THE BETTY,OT,10,BLK,1400.0,STOLEN,7682,"{'type': 'Point', 'coordinates': (-79.35800136, 43.65577965)}"
-7685,20491,GO-2016815415,THEFT UNDER - BICYCLE,2016-05-10T00:00:00,2016,May,Tuesday,10,131,12,2016-05-12T00:00:00,2016,May,Thursday,12,133,10,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CANADIAN TIRE,,RG,6,,200.0,STOLEN,7683,"{'type': 'Point', 'coordinates': (-79.36738106, 43.65241212)}"
-7686,20498,GO-20161044951,THEFT OF EBIKE UNDER $5000,2016-06-15T00:00:00,2016,June,Wednesday,15,167,18,2016-06-15T00:00:00,2016,June,Wednesday,15,167,20,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,YUKON FOLDABLE,EL,0,YEL,1500.0,STOLEN,7684,"{'type': 'Point', 'coordinates': (-79.35837569, 43.65558195)}"
-7687,20499,GO-20161044951,THEFT OF EBIKE UNDER $5000,2016-06-15T00:00:00,2016,June,Wednesday,15,167,18,2016-06-15T00:00:00,2016,June,Wednesday,15,167,20,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,EMMO,UNKN,EL,0,RED,1100.0,STOLEN,7685,"{'type': 'Point', 'coordinates': (-79.35837569, 43.65558195)}"
-7688,20513,GO-20169007795,THEFT UNDER - BICYCLE,2016-07-17T00:00:00,2016,July,Sunday,17,199,22,2016-07-27T00:00:00,2016,July,Wednesday,27,209,10,D51,Toronto,73,Moss Park (73),Convenience Stores,Commercial,OT,CITY,RG,3,BLK,500.0,STOLEN,7686,"{'type': 'Point', 'coordinates': (-79.36789985, 43.65485425000001)}"
-7689,20516,GO-20169008139,THEFT UNDER - BICYCLE,2016-08-02T00:00:00,2016,August,Tuesday,2,215,13,2016-08-03T00:00:00,2016,August,Wednesday,3,216,13,D51,Toronto,73,Moss Park (73),Bar / Restaurant,Commercial,GI,ESCAPE,RG,24,BLU,300.0,STOLEN,7687,"{'type': 'Point', 'coordinates': (-79.36822197, 43.65127732)}"
-7690,20524,GO-20169009558,THEFT UNDER,2016-08-26T00:00:00,2016,August,Friday,26,239,23,2016-08-26T00:00:00,2016,August,Friday,26,239,23,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,,RG,21,WHI,1000.0,STOLEN,7688,"{'type': 'Point', 'coordinates': (-79.36731187, 43.65912273)}"
-7691,20525,GO-20169009558,THEFT UNDER,2016-08-26T00:00:00,2016,August,Friday,26,239,23,2016-08-26T00:00:00,2016,August,Friday,26,239,23,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,RG,10,WHI,1370.0,STOLEN,7689,"{'type': 'Point', 'coordinates': (-79.36731187, 43.65912273)}"
-7692,20559,GO-20169014440,THEFT UNDER - BICYCLE,2016-12-09T00:00:00,2016,December,Friday,9,344,12,2016-12-09T00:00:00,2016,December,Friday,9,344,12,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,7,BLU,50.0,STOLEN,7690,"{'type': 'Point', 'coordinates': (-79.37321466, 43.65372868)}"
-7693,20560,GO-201752572,THEFT UNDER - BICYCLE,2017-01-08T00:00:00,2017,January,Sunday,8,8,13,2017-01-10T00:00:00,2017,January,Tuesday,10,10,7,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,FELT,Z85,RG,21,BLKRED,1500.0,STOLEN,7691,"{'type': 'Point', 'coordinates': (-79.37103886, 43.65160431)}"
-7694,20561,GO-2017199854,THEFT UNDER - BICYCLE,2016-11-12T00:00:00,2016,November,Saturday,12,317,9,2017-02-01T00:00:00,2017,February,Wednesday,1,32,13,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,FUJI,ABSOLUTE 4.0,OT,21,BLK,1000.0,STOLEN,7692,"{'type': 'Point', 'coordinates': (-79.36859808, 43.65214811)}"
-7695,20563,GO-20179002227,THEFT UNDER,2017-02-20T00:00:00,2017,February,Monday,20,51,0,2017-02-20T00:00:00,2017,February,Monday,20,51,18,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,E BIKE,EL,30,SIL,250.0,STOLEN,7693,"{'type': 'Point', 'coordinates': (-79.37099208, 43.65829436)}"
-7696,20565,GO-20179003883,THEFT UNDER - BICYCLE,2017-03-25T00:00:00,2017,March,Saturday,25,84,17,2017-03-27T00:00:00,2017,March,Monday,27,86,17,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,575,MT,18,LGR,4000.0,STOLEN,7694,"{'type': 'Point', 'coordinates': (-79.36822197, 43.65127732)}"
-7697,20612,GO-20199025346,THEFT UNDER - BICYCLE,2019-08-03T00:00:00,2019,August,Saturday,3,215,9,2019-08-08T00:00:00,2019,August,Thursday,8,220,10,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,CA,,RG,12,GRY,925.0,STOLEN,7695,"{'type': 'Point', 'coordinates': (-79.35351296, 43.65500405)}"
-7698,20637,GO-20191684686,THEFT OF EBIKE UNDER $5000,2019-08-21T00:00:00,2019,August,Wednesday,21,233,0,2019-09-03T00:00:00,2019,September,Tuesday,3,246,22,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,EL,0,BLK,1200.0,STOLEN,7696,"{'type': 'Point', 'coordinates': (-79.37099208, 43.65829436)}"
-7699,20640,GO-20191759399,THEFT OF EBIKE UNDER $5000,2019-09-13T00:00:00,2019,September,Friday,13,256,9,2019-09-13T00:00:00,2019,September,Friday,13,256,16,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,IOTA,EL,1,GRY,1999.0,STOLEN,7697,"{'type': 'Point', 'coordinates': (-79.36981519, 43.65189242)}"
-7700,20666,GO-20192075903,PROPERTY - FOUND,2019-10-27T00:00:00,2019,October,Sunday,27,300,15,2019-10-27T00:00:00,2019,October,Sunday,27,300,15,D51,Toronto,73,Moss Park (73),"Police / Courts (Parole Board, Probation Office)",Other,NORCO,INDIE 4,RG,0,BLK,,UNKNOWN,7698,"{'type': 'Point', 'coordinates': (-79.3627004, 43.65156829000001)}"
-7701,20688,GO-20209000637,THEFT UNDER,2019-12-01T00:00:00,2019,December,Sunday,1,335,0,2020-01-07T00:00:00,2020,January,Tuesday,7,7,9,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,21,BLK,400.0,STOLEN,7699,"{'type': 'Point', 'coordinates': (-79.36852769, 43.65887073)}"
-7702,20700,GO-20209010759,THEFT UNDER,2020-04-08T00:00:00,2020,April,Wednesday,8,99,19,2020-04-09T00:00:00,2020,April,Thursday,9,100,11,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,21,BLK,1170.0,STOLEN,7700,"{'type': 'Point', 'coordinates': (-79.3723499, 43.65817021)}"
-7703,20706,GO-2020902829,THEFT UNDER - BICYCLE,2020-05-13T00:00:00,2020,May,Wednesday,13,134,20,2020-05-16T00:00:00,2020,May,Saturday,16,137,19,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,CROSSPORT,OT,1,BLU,600.0,STOLEN,7701,"{'type': 'Point', 'coordinates': (-79.36642171, 43.65262692)}"
-7704,20707,GO-20209013297,THEFT UNDER,2020-05-16T00:00:00,2020,May,Saturday,16,137,19,2020-05-17T00:00:00,2020,May,Sunday,17,138,10,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,FJ,,RG,1,WHI,600.0,STOLEN,7702,"{'type': 'Point', 'coordinates': (-79.37008264, 43.656162280000004)}"
-7705,20720,GO-20209016303,THEFT UNDER,2020-06-26T00:00:00,2020,June,Friday,26,178,19,2020-06-27T00:00:00,2020,June,Saturday,27,179,13,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,SUB CROSS 40,OT,7,BLK,1000.0,STOLEN,7703,"{'type': 'Point', 'coordinates': (-79.37103886, 43.65160431)}"
-7706,20748,GO-20201550944,B&E,2020-08-14T00:00:00,2020,August,Friday,14,227,15,2020-08-18T00:00:00,2020,August,Tuesday,18,231,19,D51,Toronto,73,Moss Park (73),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,CCM,STATIC,MT,21,,920.0,STOLEN,7705,"{'type': 'Point', 'coordinates': (-79.36813583, 43.66211281)}"
-7707,20749,GO-20201550944,B&E,2020-08-14T00:00:00,2020,August,Friday,14,227,15,2020-08-18T00:00:00,2020,August,Tuesday,18,231,19,D51,Toronto,73,Moss Park (73),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,CCM,STATIC,MT,21,,460.0,STOLEN,7706,"{'type': 'Point', 'coordinates': (-79.36813583, 43.66211281)}"
-7708,20750,GO-20201550944,B&E,2020-08-14T00:00:00,2020,August,Friday,14,227,15,2020-08-18T00:00:00,2020,August,Tuesday,18,231,19,D51,Toronto,73,Moss Park (73),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OTHER,,OT,0,,250.0,STOLEN,7707,"{'type': 'Point', 'coordinates': (-79.36813583, 43.66211281)}"
-7709,20751,GO-20201550944,B&E,2020-08-14T00:00:00,2020,August,Friday,14,227,15,2020-08-18T00:00:00,2020,August,Tuesday,18,231,19,D51,Toronto,73,Moss Park (73),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,SUPERCYCLE,NITRO,MT,21,,170.0,STOLEN,7708,"{'type': 'Point', 'coordinates': (-79.36813583, 43.66211281)}"
-7710,20752,GO-20201550944,B&E,2020-08-14T00:00:00,2020,August,Friday,14,227,15,2020-08-18T00:00:00,2020,August,Tuesday,18,231,19,D51,Toronto,73,Moss Park (73),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,CCM,ENDURANCE,RC,14,,550.0,STOLEN,7709,"{'type': 'Point', 'coordinates': (-79.36813583, 43.66211281)}"
-7711,20753,GO-20201550944,B&E,2020-08-14T00:00:00,2020,August,Friday,14,227,15,2020-08-18T00:00:00,2020,August,Tuesday,18,231,19,D51,Toronto,73,Moss Park (73),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,SUPERCYCLE,REACTION,OT,18,,300.0,STOLEN,7710,"{'type': 'Point', 'coordinates': (-79.36813583, 43.66211281)}"
-7712,23650,GO-20159007058,THEFT UNDER,2015-09-11T00:00:00,2015,September,Friday,11,254,18,2015-09-11T00:00:00,2015,September,Friday,11,254,18,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE CITY HYB,TO,12,BLK,599.0,STOLEN,7711,"{'type': 'Point', 'coordinates': (-79.359544, 43.65670469)}"
-7713,2048,GO-2018364268,DRUG - TRAF OTHER (SCHD I),2018-02-26T00:00:00,2018,February,Monday,26,57,17,2018-02-26T00:00:00,2018,February,Monday,26,57,17,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RALEIGH,,RC,1,,,STOLEN,7712,"{'type': 'Point', 'coordinates': (-79.37321466, 43.65372868)}"
-7714,22621,GO-20199026524,THEFT UNDER,2019-08-16T00:00:00,2019,August,Friday,16,228,11,2019-08-16T00:00:00,2019,August,Friday,16,228,17,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,MT,7,TRQ,0.0,STOLEN,7713,"{'type': 'Point', 'coordinates': (-79.36296147, 43.660087000000004)}"
-7715,2145,GO-2018635658,THEFT UNDER - BICYCLE,2018-02-21T00:00:00,2018,February,Wednesday,21,52,12,2018-04-09T00:00:00,2018,April,Monday,9,99,15,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,MOTOBIKE,HYBRED,RG,12,RED,700.0,STOLEN,7714,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7716,2147,GO-20189011176,THEFT UNDER - BICYCLE,2018-04-10T00:00:00,2018,April,Tuesday,10,100,7,2018-04-10T00:00:00,2018,April,Tuesday,10,100,17,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM 2,RG,27,SIL,749.0,STOLEN,7715,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7717,2174,GO-2018702990,THEFT UNDER - BICYCLE,2018-04-19T00:00:00,2018,April,Thursday,19,109,16,2018-04-19T00:00:00,2018,April,Thursday,19,109,23,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,OT,21,SIL,1200.0,STOLEN,7716,"{'type': 'Point', 'coordinates': (-79.36924, 43.65389302)}"
-7718,2192,GO-20189012607,THEFT UNDER - BICYCLE,2018-04-21T00:00:00,2018,April,Saturday,21,111,18,2018-04-23T00:00:00,2018,April,Monday,23,113,22,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,KH,URBAN UNO,RG,1,BLK,300.0,STOLEN,7717,"{'type': 'Point', 'coordinates': (-79.37219606, 43.66122668)}"
-7719,2235,GO-20189013481,THEFT UNDER - BICYCLE,2018-05-01T00:00:00,2018,May,Tuesday,1,121,9,2018-05-01T00:00:00,2018,May,Tuesday,1,121,19,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,TO,21,BLK,700.0,STOLEN,7718,"{'type': 'Point', 'coordinates': (-79.35576206, 43.65652566)}"
-7720,2240,GO-20189013600,THEFT UNDER - BICYCLE,2018-05-01T00:00:00,2018,May,Tuesday,1,121,15,2018-05-02T00:00:00,2018,May,Wednesday,2,122,17,D51,Toronto,73,Moss Park (73),Convenience Stores,Commercial,EM,URBAN,EL,32,YEL,1500.0,STOLEN,7719,"{'type': 'Point', 'coordinates': (-79.36546109, 43.65817175)}"
-7721,2241,GO-20189013617,THEFT UNDER - BICYCLE,2018-04-24T00:00:00,2018,April,Tuesday,24,114,20,2018-05-02T00:00:00,2018,May,Wednesday,2,122,20,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RG,21,SIL,850.0,STOLEN,7720,"{'type': 'Point', 'coordinates': (-79.36738106, 43.65241212)}"
-7722,2242,GO-20189013623,THEFT UNDER - BICYCLE,2018-04-24T00:00:00,2018,April,Tuesday,24,114,20,2018-05-02T00:00:00,2018,May,Wednesday,2,122,22,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,BROUGHAM,OT,1,GRY,1000.0,STOLEN,7721,"{'type': 'Point', 'coordinates': (-79.36738106, 43.65241212)}"
-7723,2257,GO-2018809095,B&E,2018-04-26T00:00:00,2018,April,Thursday,26,116,0,2018-05-05T00:00:00,2018,May,Saturday,5,125,13,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KHS,ALITE 500,MT,18,ONG,750.0,STOLEN,7722,"{'type': 'Point', 'coordinates': (-79.3679435, 43.65898317)}"
-7724,2258,GO-2018809095,B&E,2018-04-26T00:00:00,2018,April,Thursday,26,116,0,2018-05-05T00:00:00,2018,May,Saturday,5,125,13,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,KROSS SPORT,TO,18,WHI,300.0,STOLEN,7723,"{'type': 'Point', 'coordinates': (-79.3679435, 43.65898317)}"
-7725,2259,GO-2018809095,B&E,2018-04-26T00:00:00,2018,April,Thursday,26,116,0,2018-05-05T00:00:00,2018,May,Saturday,5,125,13,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,ALLEZ-ELITE,RC,18,GRNSIL,1600.0,STOLEN,7724,"{'type': 'Point', 'coordinates': (-79.3679435, 43.65898317)}"
-7726,2310,GO-20189014880,THEFT UNDER - BICYCLE,2018-05-14T00:00:00,2018,May,Monday,14,134,9,2018-05-14T00:00:00,2018,May,Monday,14,134,14,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,21,,400.0,STOLEN,7725,"{'type': 'Point', 'coordinates': (-79.36859808, 43.65214811)}"
-7727,2327,GO-20189015217,THEFT UNDER - BICYCLE,2018-05-16T00:00:00,2018,May,Wednesday,16,136,17,2018-05-16T00:00:00,2018,May,Wednesday,16,136,20,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KO,DEWEY,RG,17,BLK,750.0,STOLEN,7726,"{'type': 'Point', 'coordinates': (-79.36571619, 43.65533986)}"
-7728,2355,GO-20189015638,THEFT UNDER - BICYCLE,2018-05-20T00:00:00,2018,May,Sunday,20,140,18,2018-05-20T00:00:00,2018,May,Sunday,20,140,19,D51,Toronto,73,Moss Park (73),"Open Areas (Lakes, Parks, Rivers)",Outside,CC,MOUNTAIN BIKE,MT,10,RED,500.0,STOLEN,7727,"{'type': 'Point', 'coordinates': (-79.36941977, 43.65452491)}"
-7729,2417,GO-2018959425,B&E,2018-05-21T00:00:00,2018,May,Monday,21,141,6,2018-05-21T00:00:00,2018,May,Monday,21,141,13,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,NORCO,,RG,0,GRY,200.0,STOLEN,7728,"{'type': 'Point', 'coordinates': (-79.37008264, 43.656162280000004)}"
-7730,2442,GO-20189017127,THEFT UNDER - BICYCLE,2018-05-31T00:00:00,2018,May,Thursday,31,151,18,2018-06-02T00:00:00,2018,June,Saturday,2,153,17,D51,Toronto,73,Moss Park (73),Universities / Colleges,Educational,RA,RAL CADENT 4,RG,20,BLU,1100.0,STOLEN,7730,"{'type': 'Point', 'coordinates': (-79.36981519, 43.65189242)}"
-7731,2448,GO-20189017251,THEFT UNDER - BICYCLE,2018-06-03T00:00:00,2018,June,Sunday,3,154,9,2018-06-04T00:00:00,2018,June,Monday,4,155,9,D51,Toronto,73,Moss Park (73),"Open Areas (Lakes, Parks, Rivers)",Outside,GI,CYPRESS,RG,18,GRY,700.0,STOLEN,7731,"{'type': 'Point', 'coordinates': (-79.37203827, 43.65395725)}"
-7732,2451,GO-20189017127,THEFT UNDER - BICYCLE,2018-05-31T00:00:00,2018,May,Thursday,31,151,18,2018-06-02T00:00:00,2018,June,Saturday,2,153,17,D51,Toronto,73,Moss Park (73),Universities / Colleges,Educational,UK,,RG,20,BLU,1100.0,STOLEN,7732,"{'type': 'Point', 'coordinates': (-79.36981519, 43.65189242)}"
-7733,2457,GO-20189017355,THEFT UNDER - BICYCLE,2018-05-26T00:00:00,2018,May,Saturday,26,146,17,2018-06-04T00:00:00,2018,June,Monday,4,155,16,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,GI,LIV ROVE,TO,27,GRY,850.0,STOLEN,7733,"{'type': 'Point', 'coordinates': (-79.36738106, 43.65241212)}"
-7734,2484,GO-20189017686,THEFT UNDER - BICYCLE,2018-06-04T00:00:00,2018,June,Monday,4,155,16,2018-06-06T00:00:00,2018,June,Wednesday,6,157,22,D51,Toronto,73,Moss Park (73),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,GI,ROAM 2 2015,RG,9,BLK,1000.0,STOLEN,7734,"{'type': 'Point', 'coordinates': (-79.37302171, 43.66318983)}"
-7735,2552,GO-20181051556,THEFT UNDER - BICYCLE,2018-06-09T00:00:00,2018,June,Saturday,9,160,21,2018-06-10T00:00:00,2018,June,Sunday,10,161,14,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KHS,,RC,21,BLUWHI,700.0,STOLEN,7735,"{'type': 'Point', 'coordinates': (-79.36738106, 43.65241212)}"
-7736,2557,GO-20189018575,THEFT UNDER - BICYCLE,2018-05-24T00:00:00,2018,May,Thursday,24,144,16,2018-06-13T00:00:00,2018,June,Wednesday,13,164,15,D51,Toronto,73,Moss Park (73),"Open Areas (Lakes, Parks, Rivers)",Outside,KO,DEW,MT,18,WHI,500.0,STOLEN,7736,"{'type': 'Point', 'coordinates': (-79.36941977, 43.65452491)}"
-7737,2576,GO-20189018804,THEFT UNDER - BICYCLE,2018-05-01T00:00:00,2018,May,Tuesday,1,121,12,2018-06-15T00:00:00,2018,June,Friday,15,166,12,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,GT,TRANSEO 4.0,RG,8,BLK,500.0,STOLEN,7737,"{'type': 'Point', 'coordinates': (-79.37187401, 43.65046356)}"
-7738,2614,GO-20181114971,THEFT OF EBIKE UNDER $5000,2018-06-19T00:00:00,2018,June,Tuesday,19,170,14,2018-06-19T00:00:00,2018,June,Tuesday,19,170,14,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GTA EBIKE,,EL,0,RED,2000.0,STOLEN,7738,"{'type': 'Point', 'coordinates': (-79.359544, 43.65670469)}"
-7739,2642,GO-20189019671,THEFT UNDER - BICYCLE,2018-06-20T00:00:00,2018,June,Wednesday,20,171,11,2018-06-21T00:00:00,2018,June,Thursday,21,172,16,D51,Toronto,73,Moss Park (73),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,,RG,1,GRY,600.0,STOLEN,7739,"{'type': 'Point', 'coordinates': (-79.36546109, 43.65817175)}"
-7740,2681,GO-20189020230,THEFT UNDER - BICYCLE,2018-06-19T00:00:00,2018,June,Tuesday,19,170,9,2018-06-25T00:00:00,2018,June,Monday,25,176,17,D51,Toronto,73,Moss Park (73),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,CA,2018 700F QUICK,RG,27,BLK,1140.0,STOLEN,7740,"{'type': 'Point', 'coordinates': (-79.37633027, 43.65851354)}"
-7741,2698,GO-20189020415,THEFT UNDER,2018-06-23T00:00:00,2018,June,Saturday,23,174,23,2018-06-27T00:00:00,2018,June,Wednesday,27,178,10,D51,Toronto,73,Moss Park (73),"Open Areas (Lakes, Parks, Rivers)",Outside,SU,,RC,24,SIL,500.0,STOLEN,7741,"{'type': 'Point', 'coordinates': (-79.37203827, 43.65395725)}"
-7742,2758,GO-20189021321,THEFT UNDER - BICYCLE,2018-07-04T00:00:00,2018,July,Wednesday,4,185,11,2018-07-05T00:00:00,2018,July,Thursday,5,186,14,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,RG,21,BLK,0.0,STOLEN,7742,"{'type': 'Point', 'coordinates': (-79.35940961, 43.65496744)}"
-7743,22644,GO-20199029771,THEFT UNDER,2019-09-12T00:00:00,2019,September,Thursday,12,255,18,2019-09-12T00:00:00,2019,September,Thursday,12,255,21,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM 2,RG,27,BLU,800.0,STOLEN,7743,"{'type': 'Point', 'coordinates': (-79.36624697, 43.66011067)}"
-7744,23652,GO-20159007228,THEFT UNDER,2015-09-14T00:00:00,2015,September,Monday,14,257,9,2015-09-15T00:00:00,2015,September,Tuesday,15,258,15,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,CYPRESS DX,RG,18,DBL,500.0,STOLEN,7744,"{'type': 'Point', 'coordinates': (-79.36924, 43.65389302)}"
-7745,2844,GO-20189022426,THEFT UNDER - BICYCLE,2018-07-14T00:00:00,2018,July,Saturday,14,195,16,2018-07-14T00:00:00,2018,July,Saturday,14,195,16,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,SORRENTO,MT,21,SIL,250.0,STOLEN,7745,"{'type': 'Point', 'coordinates': (-79.37156529, 43.652817240000005)}"
-7746,2886,GO-20189023072,THEFT UNDER - BICYCLE,2018-07-19T00:00:00,2018,July,Thursday,19,200,2,2018-07-19T00:00:00,2018,July,Thursday,19,200,14,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,UK,VOLATGE,RG,18,DBL,800.0,STOLEN,7746,"{'type': 'Point', 'coordinates': (-79.36943408, 43.65100125)}"
-7747,2893,GO-20189023137,THEFT UNDER - BICYCLE,2018-07-19T00:00:00,2018,July,Thursday,19,200,19,2018-07-19T00:00:00,2018,July,Thursday,19,200,22,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,EXPLORE,EL,9,BLK,2900.0,STOLEN,7747,"{'type': 'Point', 'coordinates': (-79.37585959, 43.66043919)}"
-7748,2920,GO-20181343608,THEFT UNDER - BICYCLE,2018-07-22T00:00:00,2018,July,Sunday,22,203,16,2018-07-23T00:00:00,2018,July,Monday,23,204,12,D51,Toronto,73,Moss Park (73),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KHS,URBAN-X,RG,10,,1000.0,STOLEN,7748,"{'type': 'Point', 'coordinates': (-79.35888422, 43.65683302)}"
-7749,2933,GO-20189023631,THEFT UNDER - BICYCLE,2018-07-23T00:00:00,2018,July,Monday,23,204,19,2018-07-24T00:00:00,2018,July,Tuesday,24,205,9,D51,Toronto,73,Moss Park (73),"Open Areas (Lakes, Parks, Rivers)",Outside,NO,,MT,25,,400.0,STOLEN,7749,"{'type': 'Point', 'coordinates': (-79.37203827, 43.65395725)}"
-7750,2935,GO-20189023682,THEFT UNDER - BICYCLE,2018-07-23T00:00:00,2018,July,Monday,23,204,17,2018-07-24T00:00:00,2018,July,Tuesday,24,205,10,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,17 DIVERGE ELIT,RG,20,BLK,2250.0,STOLEN,7750,"{'type': 'Point', 'coordinates': (-79.37142509, 43.64944981)}"
-7751,2945,GO-20189023631,THEFT UNDER - BICYCLE,2018-07-23T00:00:00,2018,July,Monday,23,204,19,2018-07-24T00:00:00,2018,July,Tuesday,24,205,9,D51,Toronto,73,Moss Park (73),"Open Areas (Lakes, Parks, Rivers)",Outside,NO,NAVAJO,MT,25,PLE,400.0,STOLEN,7751,"{'type': 'Point', 'coordinates': (-79.37203827, 43.65395725)}"
-7752,3042,GO-20189024734,THEFT UNDER - BICYCLE,2018-07-28T00:00:00,2018,July,Saturday,28,209,18,2018-08-01T00:00:00,2018,August,Wednesday,1,213,11,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,FLEX,OT,1,WHI,1200.0,STOLEN,7752,"{'type': 'Point', 'coordinates': (-79.36437279, 43.65212359)}"
-7753,3104,GO-20189025411,THEFT UNDER - BICYCLE,2018-08-04T00:00:00,2018,August,Saturday,4,216,13,2018-08-07T00:00:00,2018,August,Tuesday,7,219,14,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,FX2,RG,24,BLU,500.0,STOLEN,7753,"{'type': 'Point', 'coordinates': (-79.37065383, 43.65073186)}"
-7754,3185,GO-20181495377,THEFT UNDER,2018-08-12T00:00:00,2018,August,Sunday,12,224,19,2018-08-14T00:00:00,2018,August,Tuesday,14,226,7,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,SC,0,RED,,STOLEN,7754,"{'type': 'Point', 'coordinates': (-79.37008264, 43.656162280000004)}"
-7755,3212,GO-20189026550,THEFT UNDER - BICYCLE,2018-08-15T00:00:00,2018,August,Wednesday,15,227,8,2018-08-15T00:00:00,2018,August,Wednesday,15,227,19,D51,Toronto,73,Moss Park (73),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,2016 BEATNIK,RG,1,GRY,531.0,STOLEN,7755,"{'type': 'Point', 'coordinates': (-79.37302171, 43.66318983)}"
-7756,3259,GO-20189027128,THEFT UNDER,2018-07-24T00:00:00,2018,July,Tuesday,24,205,20,2018-08-20T00:00:00,2018,August,Monday,20,232,14,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,,RC,10,,100.0,STOLEN,7756,"{'type': 'Point', 'coordinates': (-79.36355867000002, 43.65356373)}"
-7757,3284,GO-20181549703,THEFT FROM MOTOR VEHICLE OVER,2018-07-30T00:00:00,2018,July,Monday,30,211,19,2018-08-22T00:00:00,2018,August,Wednesday,22,234,9,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,FUEL EX9,RC,11,SIL,5000.0,STOLEN,7757,"{'type': 'Point', 'coordinates': (-79.36738106, 43.65241212)}"
-7758,3301,GO-20181564535,THEFT UNDER - BICYCLE,2018-08-23T00:00:00,2018,August,Thursday,23,235,12,2018-08-24T00:00:00,2018,August,Friday,24,236,12,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CYCLEMANIA,RIVERDALE,RG,10,BLK,500.0,STOLEN,7758,"{'type': 'Point', 'coordinates': (-79.36947164, 43.65865872)}"
-7759,3331,GO-20189028115,THEFT UNDER - BICYCLE,2018-08-26T00:00:00,2018,August,Sunday,26,238,23,2018-08-27T00:00:00,2018,August,Monday,27,239,12,D51,Toronto,73,Moss Park (73),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,,OT,10,GRY,625.0,STOLEN,7759,"{'type': 'Point', 'coordinates': (-79.36926699, 43.66399224)}"
-7760,3333,GO-20189028111,THEFT UNDER - BICYCLE,2018-08-14T00:00:00,2018,August,Tuesday,14,226,12,2018-08-27T00:00:00,2018,August,Monday,27,239,12,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,2012 NORCO CHAR,MT,21,RED,1000.0,STOLEN,7760,"{'type': 'Point', 'coordinates': (-79.36437279, 43.65212359)}"
-7761,3334,GO-20189028111,THEFT UNDER - BICYCLE,2018-08-14T00:00:00,2018,August,Tuesday,14,226,12,2018-08-27T00:00:00,2018,August,Monday,27,239,12,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,CHARGER,MT,21,RED,1000.0,STOLEN,7761,"{'type': 'Point', 'coordinates': (-79.36437279, 43.65212359)}"
-7762,3343,GO-20189028313,THEFT UNDER - BICYCLE,2018-08-21T00:00:00,2018,August,Tuesday,21,233,3,2018-08-28T00:00:00,2018,August,Tuesday,28,240,16,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,DBL,650.0,STOLEN,7762,"{'type': 'Point', 'coordinates': (-79.36822197, 43.65127732)}"
-7763,3438,GO-20189029880,THEFT UNDER - BICYCLE,2018-09-09T00:00:00,2018,September,Sunday,9,252,21,2018-09-10T00:00:00,2018,September,Monday,10,253,19,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MANTRA,RG,1,,500.0,STOLEN,7763,"{'type': 'Point', 'coordinates': (-79.37219606, 43.66122668)}"
-7764,3480,GO-20189030540,THEFT UNDER - BICYCLE,2018-09-15T00:00:00,2018,September,Saturday,15,258,23,2018-09-16T00:00:00,2018,September,Sunday,16,259,12,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,FJ,FEATHER,RG,1,LBL,1200.0,STOLEN,7764,"{'type': 'Point', 'coordinates': (-79.37272187, 43.65560782)}"
-7765,3549,GO-20189031757,THEFT UNDER - BICYCLE,2018-08-22T00:00:00,2018,August,Wednesday,22,234,16,2018-09-24T00:00:00,2018,September,Monday,24,267,17,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,24,BLK,800.0,STOLEN,7765,"{'type': 'Point', 'coordinates': (-79.36738106, 43.65241212)}"
-7766,3595,GO-20189032630,THEFT UNDER - BICYCLE,2018-10-01T00:00:00,2018,October,Monday,1,274,23,2018-10-02T00:00:00,2018,October,Tuesday,2,275,12,D51,Toronto,73,Moss Park (73),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,WELLINGTON -201,RG,12,WHI,750.0,STOLEN,7766,"{'type': 'Point', 'coordinates': (-79.37185641, 43.65351071)}"
-7767,3617,GO-20189032965,THEFT UNDER - BICYCLE,2018-10-04T00:00:00,2018,October,Thursday,4,277,17,2018-10-04T00:00:00,2018,October,Thursday,4,277,22,D51,Toronto,73,Moss Park (73),Bar / Restaurant,Commercial,PE,UO-8,TO,12,ONG,800.0,RECOVERED,7767,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7768,3675,GO-20189033757,THEFT UNDER - BICYCLE,2018-10-11T00:00:00,2018,October,Thursday,11,284,22,2018-10-12T00:00:00,2018,October,Friday,12,285,8,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,SC,,RG,12,,500.0,STOLEN,7768,"{'type': 'Point', 'coordinates': (-79.37352514, 43.66094246)}"
-7769,3676,GO-20189033757,THEFT UNDER - BICYCLE,2018-10-11T00:00:00,2018,October,Thursday,11,284,22,2018-10-12T00:00:00,2018,October,Friday,12,285,8,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,18,,250.0,STOLEN,7769,"{'type': 'Point', 'coordinates': (-79.37352514, 43.66094246)}"
-7770,3705,GO-20189034213,THEFT UNDER - BICYCLE,2018-10-15T00:00:00,2018,October,Monday,15,288,17,2018-10-15T00:00:00,2018,October,Monday,15,288,19,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ALIGHT,RG,24,BLU,450.0,STOLEN,7770,"{'type': 'Point', 'coordinates': (-79.37219606, 43.66122668)}"
-7771,3713,GO-20189034403,THEFT UNDER - BICYCLE,2018-10-17T00:00:00,2018,October,Wednesday,17,290,1,2018-10-17T00:00:00,2018,October,Wednesday,17,290,10,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,MERIT 3,RC,22,BLU,1689.0,STOLEN,7771,"{'type': 'Point', 'coordinates': (-79.3687877, 43.65699417)}"
-7772,3737,GO-20189034911,THEFT UNDER - BICYCLE,2018-10-18T00:00:00,2018,October,Thursday,18,291,20,2018-10-21T00:00:00,2018,October,Sunday,21,294,8,D51,Toronto,73,Moss Park (73),"Group Homes (Non-Profit, Halfway House, Social Agency)",Other,TR,RUBY,RC,27,BLK,2000.0,STOLEN,7772,"{'type': 'Point', 'coordinates': (-79.37099208, 43.65829436)}"
-7773,3776,GO-20189035935,THEFT UNDER - BICYCLE,2018-10-27T00:00:00,2018,October,Saturday,27,300,18,2018-10-28T00:00:00,2018,October,Sunday,28,301,17,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ROADSTER SPORT,RG,3,BGE,500.0,STOLEN,7773,"{'type': 'Point', 'coordinates': (-79.36852769, 43.65887073)}"
-7774,3841,GO-20189037796,THEFT UNDER - BICYCLE,2018-11-11T00:00:00,2018,November,Sunday,11,315,17,2018-11-11T00:00:00,2018,November,Sunday,11,315,23,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,SC,700C GTX-2,OT,21,BLK,500.0,STOLEN,7774,"{'type': 'Point', 'coordinates': (-79.37008264, 43.656162280000004)}"
-7775,3914,GO-20189040579,THEFT UNDER - BICYCLE,2018-11-28T00:00:00,2018,November,Wednesday,28,332,19,2018-12-02T00:00:00,2018,December,Sunday,2,336,21,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,8,BLK,650.0,STOLEN,7775,"{'type': 'Point', 'coordinates': (-79.35351296, 43.65500405)}"
-7776,3928,GO-20189041051,THEFT UNDER - BICYCLE,2018-10-01T00:00:00,2018,October,Monday,1,274,14,2018-12-06T00:00:00,2018,December,Thursday,6,340,14,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,GI,ROVE 2,RG,16,WHI,1059.0,STOLEN,7776,"{'type': 'Point', 'coordinates': (-79.35351296, 43.65500405)}"
-7777,3952,GO-20182337367,B&E W'INTENT,2018-12-20T00:00:00,2018,December,Thursday,20,354,15,2018-12-20T00:00:00,2018,December,Thursday,20,354,15,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,CANNONDALE,,RG,0,DGR,1200.0,STOLEN,7777,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7778,3976,GO-20198269,THEFT OF EBIKE UNDER $5000,2019-01-02T00:00:00,2019,January,Wednesday,2,2,4,2019-01-02T00:00:00,2019,January,Wednesday,2,2,13,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,EMMO,KNIGHT SPORT,EL,3,BLK,2800.0,STOLEN,7778,"{'type': 'Point', 'coordinates': (-79.36750361, 43.66320621)}"
-7779,4003,GO-20199001569,THEFT UNDER - BICYCLE,2019-01-12T00:00:00,2019,January,Saturday,12,12,22,2019-01-13T00:00:00,2019,January,Sunday,13,13,11,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,MT,12,BLK,200.0,STOLEN,7779,"{'type': 'Point', 'coordinates': (-79.36738106, 43.65241212)}"
-7780,4069,GO-2019361411,B&E,2019-02-23T00:00:00,2019,February,Saturday,23,54,23,2019-02-26T00:00:00,2019,February,Tuesday,26,57,12,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OTHER,,EL,10,SIL,500.0,STOLEN,7780,"{'type': 'Point', 'coordinates': (-79.37099208, 43.65829436)}"
-7781,4070,GO-20199006791,B&E,2019-02-26T00:00:00,2019,February,Tuesday,26,57,23,2019-02-27T00:00:00,2019,February,Wednesday,27,58,12,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,UK,,TO,1,GRY,0.0,STOLEN,7781,"{'type': 'Point', 'coordinates': (-79.35576206, 43.65652566)}"
-7782,4095,GO-20199008518,THEFT UNDER - BICYCLE,2019-03-16T00:00:00,2019,March,Saturday,16,75,10,2019-03-16T00:00:00,2019,March,Saturday,16,75,18,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,NO,STORM 9.2,MT,24,GRY,750.0,STOLEN,7782,"{'type': 'Point', 'coordinates': (-79.36738106, 43.65241212)}"
-7783,4144,GO-20199011141,B&E,2019-03-13T00:00:00,2019,March,Wednesday,13,72,20,2019-04-08T00:00:00,2019,April,Monday,8,98,21,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,PURE FIX,RG,1,GRN,400.0,STOLEN,7783,"{'type': 'Point', 'coordinates': (-79.36822197, 43.65127732)}"
-7784,4172,GO-20199012156,THEFT UNDER,2019-04-08T00:00:00,2019,April,Monday,8,98,19,2019-04-13T00:00:00,2019,April,Saturday,13,103,20,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,MT,21,SIL,1650.0,STOLEN,7784,"{'type': 'Point', 'coordinates': (-79.36822197, 43.65127732)}"
-7785,4177,GO-2019694101,B&E,2019-04-11T00:00:00,2019,April,Thursday,11,101,15,2019-04-17T00:00:00,2019,April,Wednesday,17,107,14,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,WUDI,,RG,2,BGE,1500.0,STOLEN,7785,"{'type': 'Point', 'coordinates': (-79.36642171, 43.65262692)}"
-7786,4178,GO-2019694101,B&E,2019-04-11T00:00:00,2019,April,Thursday,11,101,15,2019-04-17T00:00:00,2019,April,Wednesday,17,107,14,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,GIANT,GIANT,RG,18,WHI,2700.0,STOLEN,7786,"{'type': 'Point', 'coordinates': (-79.36642171, 43.65262692)}"
-7787,4190,GO-2019720664,PROPERTY - FOUND,2019-04-21T00:00:00,2019,April,Sunday,21,111,22,2019-04-21T00:00:00,2019,April,Sunday,21,111,22,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MOTOBECANE,PHANTOM PRO,RC,30,WHIBLK,1500.0,UNKNOWN,7787,"{'type': 'Point', 'coordinates': (-79.37341859, 43.65730333)}"
-7788,4198,GO-20199012952,THEFT UNDER,2019-04-23T00:00:00,2019,April,Tuesday,23,113,19,2019-04-24T00:00:00,2019,April,Wednesday,24,114,22,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,8,,200.0,STOLEN,7788,"{'type': 'Point', 'coordinates': (-79.35800136, 43.65577965)}"
-7789,4269,GO-2019869124,B&E,2019-02-11T00:00:00,2019,February,Monday,11,42,0,2019-05-13T00:00:00,2019,May,Monday,13,133,11,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OTHER,,RG,1,LGR,1200.0,STOLEN,7789,"{'type': 'Point', 'coordinates': (-79.37065383, 43.65073186)}"
-7790,4282,GO-20199015157,THEFT UNDER,2019-05-08T00:00:00,2019,May,Wednesday,8,128,9,2019-05-15T00:00:00,2019,May,Wednesday,15,135,15,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,TR,1000,RG,24,YEL,400.0,STOLEN,7790,"{'type': 'Point', 'coordinates': (-79.37065383, 43.65073186)}"
-7791,4302,GO-2019914076,THEFT UNDER - BICYCLE,2018-10-01T00:00:00,2018,October,Monday,1,274,0,2019-05-20T00:00:00,2019,May,Monday,20,140,12,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,GIANT,,RC,18,BLKWHI,1000.0,STOLEN,7791,"{'type': 'Point', 'coordinates': (-79.35351296, 43.65500405)}"
-7792,4383,GO-2019994714,THEFT UNDER,2019-05-30T00:00:00,2019,May,Thursday,30,150,16,2019-05-30T00:00:00,2019,May,Thursday,30,150,22,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,HONDA,EMO HORNET,EL,1,RED,2000.0,STOLEN,7792,"{'type': 'Point', 'coordinates': (-79.36437279, 43.65212359)}"
-7793,4389,GO-20199017044,THEFT UNDER,2019-05-31T00:00:00,2019,May,Friday,31,151,15,2019-05-31T00:00:00,2019,May,Friday,31,151,18,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM 2,TO,27,GRY,790.0,STOLEN,7793,"{'type': 'Point', 'coordinates': (-79.35576206, 43.65652566)}"
-7794,1073,GO-20179011897,THEFT UNDER - BICYCLE,2017-08-08T00:00:00,2017,August,Tuesday,8,220,9,2017-08-08T00:00:00,2017,August,Tuesday,8,220,9,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,8,GRN,600.0,STOLEN,7978,"{'type': 'Point', 'coordinates': (-79.36738106, 43.65241212)}"
-7795,4392,GO-2019995215,THEFT UNDER,2019-05-30T00:00:00,2019,May,Thursday,30,150,20,2019-05-31T00:00:00,2019,May,Friday,31,151,0,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,GIANT,,MT,10,GRY,400.0,STOLEN,7794,"{'type': 'Point', 'coordinates': (-79.35576206, 43.65652566)}"
-7796,4412,GO-20199017447,THEFT UNDER,2019-06-04T00:00:00,2019,June,Tuesday,4,155,10,2019-06-05T00:00:00,2019,June,Wednesday,5,156,4,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,SU,,TO,6,BLK,199.0,STOLEN,7795,"{'type': 'Point', 'coordinates': (-79.37452691, 43.65706649)}"
-7797,4429,GO-20199017819,THEFT UNDER,2019-06-07T00:00:00,2019,June,Friday,7,158,18,2019-06-08T00:00:00,2019,June,Saturday,8,159,10,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,?,MT,21,BLK,600.0,STOLEN,7796,"{'type': 'Point', 'coordinates': (-79.36437279, 43.65212359)}"
-7798,4432,GO-20191044933,THEFT UNDER,2019-06-06T00:00:00,2019,June,Thursday,6,157,21,2019-06-06T00:00:00,2019,June,Thursday,6,157,21,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,MT,21,GRYBLK,130.0,STOLEN,7797,"{'type': 'Point', 'coordinates': (-79.37065383, 43.65073186)}"
-7799,4444,GO-20199018029,THEFT UNDER,2019-05-29T00:00:00,2019,May,Wednesday,29,149,11,2019-06-10T00:00:00,2019,June,Monday,10,161,11,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,1,BLK,0.0,STOLEN,7798,"{'type': 'Point', 'coordinates': (-79.37452691, 43.65706649)}"
-7800,4462,GO-20199018265,THEFT UNDER,2019-06-11T00:00:00,2019,June,Tuesday,11,162,10,2019-06-12T00:00:00,2019,June,Wednesday,12,163,8,D51,Toronto,73,Moss Park (73),"Private Property Structure (Pool, Shed, Detached Garage)",Other,BI,,RG,10,,60.0,STOLEN,7799,"{'type': 'Point', 'coordinates': (-79.36967717, 43.66178085)}"
-7801,4502,GO-20199018773,THEFT UNDER,2019-06-15T00:00:00,2019,June,Saturday,15,166,8,2019-06-15T00:00:00,2019,June,Saturday,15,166,19,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,DUAL ACE,RC,10,SIL,1200.0,STOLEN,7800,"{'type': 'Point', 'coordinates': (-79.36859808, 43.65214811)}"
-7802,4549,GO-2019962089,PROPERTY - FOUND,2019-05-26T00:00:00,2019,May,Sunday,26,146,13,2019-05-26T00:00:00,2019,May,Sunday,26,146,14,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,DCO PERFORMANCE,RC,18,BLKRED,700.0,UNKNOWN,7801,"{'type': 'Point', 'coordinates': (-79.36941977, 43.65452491)}"
-7803,4560,GO-20199019435,THEFT UNDER,2018-10-20T00:00:00,2018,October,Saturday,20,293,19,2019-06-20T00:00:00,2019,June,Thursday,20,171,19,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,GI,2018 ROAM 2 DIS,RG,35,GRY,1000.0,STOLEN,7802,"{'type': 'Point', 'coordinates': (-79.36527402, 43.65426123)}"
-7804,4645,GO-20199020610,THEFT UNDER,2019-06-29T00:00:00,2019,June,Saturday,29,180,14,2019-06-30T00:00:00,2019,June,Sunday,30,181,18,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,1,GRY,300.0,STOLEN,7803,"{'type': 'Point', 'coordinates': (-79.36474468, 43.65298813)}"
-7805,4690,GO-20191268380,THEFT UNDER - BICYCLE,2019-07-05T00:00:00,2019,July,Friday,5,186,9,2019-07-07T00:00:00,2019,July,Sunday,7,188,20,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CCM,,RG,1,BLK,50.0,STOLEN,7804,"{'type': 'Point', 'coordinates': (-79.36924, 43.65389302)}"
-7806,4848,GO-20191382706,B&E,2019-07-17T00:00:00,2019,July,Wednesday,17,198,0,2019-07-23T00:00:00,2019,July,Tuesday,23,204,20,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,SCWINN,,OT,1,BLU,250.0,STOLEN,7805,"{'type': 'Point', 'coordinates': (-79.37633027, 43.65851354)}"
-7807,4879,GO-20199023682,THEFT UNDER,2019-07-25T00:00:00,2019,July,Thursday,25,206,11,2019-07-25T00:00:00,2019,July,Thursday,25,206,12,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,7,ONG,500.0,STOLEN,7806,"{'type': 'Point', 'coordinates': (-79.37065383, 43.65073186)}"
-7808,4937,GO-20199024490,THEFT UNDER,2019-07-30T00:00:00,2019,July,Tuesday,30,211,20,2019-07-31T00:00:00,2019,July,Wednesday,31,212,10,D51,Toronto,73,Moss Park (73),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,TRI-CROSS,OT,20,GRY,2000.0,STOLEN,7807,"{'type': 'Point', 'coordinates': (-79.36738106, 43.65241212)}"
-7809,5065,GO-20199026187,THEFT UNDER,2019-08-09T00:00:00,2019,August,Friday,9,221,18,2019-08-14T00:00:00,2019,August,Wednesday,14,226,14,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CLASSIC FIXED G,RC,1,GRY,278.0,STOLEN,7808,"{'type': 'Point', 'coordinates': (-79.37187401, 43.65046356)}"
-7810,5079,GO-20199026312,THEFT UNDER,2019-08-14T00:00:00,2019,August,Wednesday,14,226,22,2019-08-15T00:00:00,2019,August,Thursday,15,227,12,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,16,PNK,0.0,STOLEN,7809,"{'type': 'Point', 'coordinates': (-79.35576206, 43.65652566)}"
-7811,5138,GO-20199027328,THEFT UNDER,2019-08-22T00:00:00,2019,August,Thursday,22,234,15,2019-08-22T00:00:00,2019,August,Thursday,22,234,19,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,18 ALIGHT 2 DD,TO,24,GRY,700.0,STOLEN,7810,"{'type': 'Point', 'coordinates': (-79.36924, 43.65389302)}"
-7812,23676,GO-2016254774,THEFT UNDER,2016-02-11T00:00:00,2016,February,Thursday,11,42,22,2016-02-12T00:00:00,2016,February,Friday,12,43,7,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,KIWI URBAN,OT,1,GRN,700.0,STOLEN,7811,"{'type': 'Point', 'coordinates': (-79.36142559000001, 43.65627028)}"
-7813,23690,GO-2016765305,B&E,2016-04-20T00:00:00,2016,April,Wednesday,20,111,0,2016-05-04T00:00:00,2016,May,Wednesday,4,125,17,D51,Toronto,73,Moss Park (73),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MOTOBECANE,,OT,0,ONG,500.0,STOLEN,7812,"{'type': 'Point', 'coordinates': (-79.36527402, 43.65426123)}"
-7814,23694,GO-20169004507,THEFT UNDER - BICYCLE,2016-05-12T00:00:00,2016,May,Thursday,12,133,13,2016-05-14T00:00:00,2016,May,Saturday,14,135,9,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,MIXED TAPE 2015,RG,7,SIL,851.0,STOLEN,7813,"{'type': 'Point', 'coordinates': (-79.37232549, 43.65152723)}"
-7815,23702,GO-20169005492,THEFT UNDER - BICYCLE,2016-06-08T00:00:00,2016,June,Wednesday,8,160,9,2016-06-08T00:00:00,2016,June,Wednesday,8,160,18,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,BELLVILLE,TO,3,BGE,2000.0,STOLEN,7814,"{'type': 'Point', 'coordinates': (-79.37156529, 43.652817240000005)}"
-7816,23710,GO-20161052278,THEFT OF EBIKE UNDER $5000,2016-06-16T00:00:00,2016,June,Thursday,16,168,15,2016-06-16T00:00:00,2016,June,Thursday,16,168,21,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,EMMO,,EL,1,BLKWHI,1000.0,STOLEN,7815,"{'type': 'Point', 'coordinates': (-79.37008264, 43.656162280000004)}"
-7817,23715,GO-20169006404,THEFT UNDER,2016-06-26T00:00:00,2016,June,Sunday,26,178,18,2016-06-27T00:00:00,2016,June,Monday,27,179,10,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,6,,699.0,STOLEN,7816,"{'type': 'Point', 'coordinates': (-79.37066212, 43.66156417)}"
-7818,23732,GO-20169008846,THEFT UNDER - BICYCLE,2016-08-15T00:00:00,2016,August,Monday,15,228,9,2016-08-16T00:00:00,2016,August,Tuesday,16,229,9,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,TALON 4,MT,21,BLU,1000.0,STOLEN,7817,"{'type': 'Point', 'coordinates': (-79.36604724, 43.65176413)}"
-7819,23734,GO-20161484650,THEFT UNDER - BICYCLE,2016-08-21T00:00:00,2016,August,Sunday,21,234,23,2016-08-22T00:00:00,2016,August,Monday,22,235,7,D51,Toronto,73,Moss Park (73),Homeless Shelter / Mission,Other,REEBOK,,MT,18,WHI,300.0,STOLEN,7818,"{'type': 'Point', 'coordinates': (-79.36941977, 43.65452491)}"
-7820,23739,GO-20161494523,THEFT UNDER - BICYCLE,2016-08-23T00:00:00,2016,August,Tuesday,23,236,15,2016-08-23T00:00:00,2016,August,Tuesday,23,236,17,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,,MT,21,BLK,600.0,STOLEN,7819,"{'type': 'Point', 'coordinates': (-79.36399025000001, 43.65127325)}"
-7821,23756,GO-20169011555,B&E,2016-09-27T00:00:00,2016,September,Tuesday,27,271,16,2016-10-04T00:00:00,2016,October,Tuesday,4,278,16,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,GI,DEFY - CARBON F,RC,21,BLK,1500.0,STOLEN,7820,"{'type': 'Point', 'coordinates': (-79.35693963, 43.65638235)}"
-7822,23760,GO-20169012217,THEFT UNDER - BICYCLE,2016-10-17T00:00:00,2016,October,Monday,17,291,9,2016-10-18T00:00:00,2016,October,Tuesday,18,292,9,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,GRY,260.0,STOLEN,7821,"{'type': 'Point', 'coordinates': (-79.35693963, 43.65638235)}"
-7823,23766,GO-20169012787,THEFT FROM MOTOR VEHICLE UNDER,2016-10-30T00:00:00,2016,October,Sunday,30,304,15,2016-10-30T00:00:00,2016,October,Sunday,30,304,23,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ROCKHOPPER,MT,21,SIL,510.0,STOLEN,7822,"{'type': 'Point', 'coordinates': (-79.36340246, 43.65583062)}"
-7824,23767,GO-20169013069,B&E,2016-09-16T00:00:00,2016,September,Friday,16,260,9,2016-11-07T00:00:00,2016,November,Monday,7,312,9,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,NO,INDIE 4,RG,24,BLK,650.0,STOLEN,7823,"{'type': 'Point', 'coordinates': (-79.37156529, 43.652817240000005)}"
-7825,23773,GO-20162123327,THEFT UNDER - BICYCLE,2016-11-29T00:00:00,2016,November,Tuesday,29,334,23,2016-11-30T00:00:00,2016,November,Wednesday,30,335,7,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SOLO ROCK,URBAN,EL,1,BLK,1000.0,STOLEN,7824,"{'type': 'Point', 'coordinates': (-79.36142559000001, 43.65627028)}"
-7826,23778,GO-20179000341,THEFT UNDER,2017-01-07T00:00:00,2017,January,Saturday,7,7,11,2017-01-08T00:00:00,2017,January,Sunday,8,8,20,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,KO,ZING,RC,20,BLK,1100.0,STOLEN,7825,"{'type': 'Point', 'coordinates': (-79.36701066, 43.65154726)}"
-7827,23779,GO-20179001246,B&E,2017-01-21T00:00:00,2017,January,Saturday,21,21,22,2017-01-27T00:00:00,2017,January,Friday,27,27,8,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,TR,2.1 C H2 56,RC,9,,1568.0,STOLEN,7826,"{'type': 'Point', 'coordinates': (-79.37103886, 43.65160431)}"
-7828,23780,GO-20179001687,THEFT UNDER,2017-01-02T00:00:00,2017,January,Monday,2,2,22,2017-02-07T00:00:00,2017,February,Tuesday,7,38,22,D51,Toronto,73,Moss Park (73),Ttc Subway Station,Transit,NO,,RC,27,RED,3000.0,STOLEN,7827,"{'type': 'Point', 'coordinates': (-79.36755676, 43.65636789)}"
-7829,23782,GO-20169011581,B&E,2016-09-26T00:00:00,2016,September,Monday,26,270,7,2016-10-05T00:00:00,2016,October,Wednesday,5,279,8,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,GI,2015,RG,60,BLK,1000.0,STOLEN,7828,"{'type': 'Point', 'coordinates': (-79.35576206, 43.65652566)}"
-7830,23883,GO-20149003759,THEFT UNDER,2014-05-28T00:00:00,2014,May,Wednesday,28,148,19,2014-06-02T00:00:00,2014,June,Monday,2,153,12,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,IN,XM2,MT,24,BLK,340.0,STOLEN,7829,"{'type': 'Point', 'coordinates': (-79.36822197, 43.65127732)}"
-7831,23893,GO-20149003976,THEFT UNDER,2014-06-10T00:00:00,2014,June,Tuesday,10,161,12,2014-06-11T00:00:00,2014,June,Wednesday,11,162,10,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,18,TRQ,,STOLEN,7830,"{'type': 'Point', 'coordinates': (-79.36859808, 43.65214811)}"
-7832,23895,GO-20149004048,THEFT UNDER,2014-06-09T00:00:00,2014,June,Monday,9,160,17,2014-06-13T00:00:00,2014,June,Friday,13,164,18,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,BOULDER SE,MT,21,RED,250.0,STOLEN,7831,"{'type': 'Point', 'coordinates': (-79.36604724, 43.65176413)}"
-7833,23901,GO-20149004258,THEFT UNDER,2014-06-19T00:00:00,2014,June,Thursday,19,170,18,2014-06-19T00:00:00,2014,June,Thursday,19,170,22,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,TOWNIE 7D,OT,7,BRN,550.0,STOLEN,7832,"{'type': 'Point', 'coordinates': (-79.36665279, 43.65068091)}"
-7834,23915,GO-20149004850,THEFT UNDER,2014-06-30T00:00:00,2014,June,Monday,30,181,13,2014-07-09T00:00:00,2014,July,Wednesday,9,190,19,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SIRRUS SPORT,RG,24,GRN,3000.0,STOLEN,7833,"{'type': 'Point', 'coordinates': (-79.36355867000002, 43.65356373)}"
-7835,23924,GO-20149005068,THEFT UNDER,2014-07-16T00:00:00,2014,July,Wednesday,16,197,23,2014-07-17T00:00:00,2014,July,Thursday,17,198,1,D51,Toronto,73,Moss Park (73),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,,RG,6,TRQ,0.0,STOLEN,7834,"{'type': 'Point', 'coordinates': (-79.36813583, 43.66211281)}"
-7836,23934,GO-20149005677,THEFT UNDER,2014-08-06T00:00:00,2014,August,Wednesday,6,218,9,2014-08-06T00:00:00,2014,August,Wednesday,6,218,16,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,RALEIGH MATTERH,MT,18,BLU,0.0,STOLEN,7835,"{'type': 'Point', 'coordinates': (-79.36604724, 43.65176413)}"
-7837,23935,GO-20142680463,THEFT UNDER,2014-08-11T00:00:00,2014,August,Monday,11,223,12,2014-08-12T00:00:00,2014,August,Tuesday,12,224,3,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,,EL,0,BLK,700.0,STOLEN,7836,"{'type': 'Point', 'coordinates': (-79.36731187, 43.65912273)}"
-7838,23938,GO-20142720064,PROPERTY - LOST,2014-08-17T00:00:00,2014,August,Sunday,17,229,12,2014-08-17T00:00:00,2014,August,Sunday,17,229,12,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,EQUATOR,MT,21,PLESIL,,UNKNOWN,7837,"{'type': 'Point', 'coordinates': (-79.36355867000002, 43.65356373)}"
-7839,23952,GO-20149006973,PROPERTY - LOST,2014-09-14T00:00:00,2014,September,Sunday,14,257,21,2014-09-17T00:00:00,2014,September,Wednesday,17,260,16,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,TREK FUEL EX 9.,MT,21,BLK,5299.0,UNKNOWN,7838,"{'type': 'Point', 'coordinates': (-79.36701066, 43.65154726)}"
-7840,23955,GO-20149007012,THEFT UNDER,2014-09-16T00:00:00,2014,September,Tuesday,16,259,9,2014-09-18T00:00:00,2014,September,Thursday,18,261,15,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,,RG,8,TRQ,0.0,STOLEN,7839,"{'type': 'Point', 'coordinates': (-79.37147803000002, 43.66351279)}"
-7841,23983,GO-2015768658,THEFT UNDER,2015-05-08T00:00:00,2015,May,Friday,8,128,19,2015-05-08T00:00:00,2015,May,Friday,8,128,19,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DIAMONDBACK,,MT,21,GRY,400.0,STOLEN,7840,"{'type': 'Point', 'coordinates': (-79.36941977, 43.65452491)}"
-7842,23984,GO-20159002568,THEFT UNDER,2015-05-08T00:00:00,2015,May,Friday,8,128,20,2015-05-09T00:00:00,2015,May,Saturday,9,129,0,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE,OT,9,SIL,650.0,STOLEN,7841,"{'type': 'Point', 'coordinates': (-79.35940961, 43.65496744)}"
-7843,137,GO-2017415007,THEFT UNDER - BICYCLE,2017-03-06T00:00:00,2017,March,Monday,6,65,21,2017-03-07T00:00:00,2017,March,Tuesday,7,66,13,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,OTHER,,OT,1,BLK,350.0,STOLEN,7842,"{'type': 'Point', 'coordinates': (-79.37575001, 43.6696557)}"
-7844,142,GO-20179002895,THEFT UNDER - BICYCLE,2017-03-06T00:00:00,2017,March,Monday,6,65,18,2017-03-07T00:00:00,2017,March,Tuesday,7,66,13,D51,Toronto,74,North St.James Town (74),Universities / Colleges,Educational,GI,SEEK 1,OT,8,BLU,1100.0,STOLEN,7843,"{'type': 'Point', 'coordinates': (-79.37681431, 43.67235839)}"
-7845,275,GO-2017720839,THEFT UNDER - BICYCLE,2017-04-24T00:00:00,2017,April,Monday,24,114,13,2017-04-25T00:00:00,2017,April,Tuesday,25,115,17,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,NOMAD,MT,10,DGR,500.0,STOLEN,7844,"{'type': 'Point', 'coordinates': (-79.37681431, 43.67235839)}"
-7846,298,GO-20179005447,THEFT UNDER - BICYCLE,2017-04-27T00:00:00,2017,April,Thursday,27,117,0,2017-04-29T00:00:00,2017,April,Saturday,29,119,15,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,ICE,MT,21,RED,500.0,STOLEN,7845,"{'type': 'Point', 'coordinates': (-79.37368966, 43.67132826)}"
-7847,367,GO-2017830811,B&E,2017-05-10T00:00:00,2017,May,Wednesday,10,130,17,2017-05-11T00:00:00,2017,May,Thursday,11,131,15,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,RALEIGH,REVINO CARBON,MT,10,BLKSIL,,STOLEN,7846,"{'type': 'Point', 'coordinates': (-79.37575001, 43.6696557)}"
-7848,398,GO-20179006390,THEFT UNDER - BICYCLE,2017-05-15T00:00:00,2017,May,Monday,15,135,11,2017-05-15T00:00:00,2017,May,Monday,15,135,13,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,THE BIRDIE,OT,3,BLU,650.0,STOLEN,7847,"{'type': 'Point', 'coordinates': (-79.37681431, 43.67235839)}"
-7849,421,GO-20179006624,THEFT UNDER - BICYCLE,2017-05-18T00:00:00,2017,May,Thursday,18,138,21,2017-05-19T00:00:00,2017,May,Friday,19,139,10,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,3,BLU,0.0,STOLEN,7848,"{'type': 'Point', 'coordinates': (-79.37646069, 43.66642862)}"
-7850,538,GO-20179007507,THEFT UNDER - BICYCLE,2017-05-28T00:00:00,2017,May,Sunday,28,148,21,2017-06-05T00:00:00,2017,June,Monday,5,156,11,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,UNKNOWN,MT,7,BLK,50.0,STOLEN,7849,"{'type': 'Point', 'coordinates': (-79.37681431, 43.67235839)}"
-7851,569,GO-20179007801,THEFT UNDER - BICYCLE,2017-06-09T00:00:00,2017,June,Friday,9,160,19,2017-06-09T00:00:00,2017,June,Friday,9,160,19,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,RA,PEAK,MT,4,WHI,0.0,STOLEN,7850,"{'type': 'Point', 'coordinates': (-79.37646069, 43.66642862)}"
-7852,582,GO-20171027313,THEFT OF EBIKE OVER $5000,2017-06-09T00:00:00,2017,June,Friday,9,160,20,2017-06-09T00:00:00,2017,June,Friday,9,160,21,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,EL,1,PNK,1000.0,STOLEN,7851,"{'type': 'Point', 'coordinates': (-79.3764768, 43.67145630000001)}"
-7853,737,GO-20179009133,THEFT UNDER - BICYCLE,2017-06-28T00:00:00,2017,June,Wednesday,28,179,17,2017-06-28T00:00:00,2017,June,Wednesday,28,179,23,D51,Toronto,74,North St.James Town (74),Ttc Subway Station,Transit,UK,HARDROCK,MT,8,BLK,200.0,STOLEN,7852,"{'type': 'Point', 'coordinates': (-79.37681431, 43.67235839)}"
-7854,745,GO-20171144702,THEFT UNDER,2017-06-26T00:00:00,2017,June,Monday,26,177,22,2017-06-26T00:00:00,2017,June,Monday,26,177,22,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,EMMO,HORNET,SC,1,REDBLK,1600.0,STOLEN,7853,"{'type': 'Point', 'coordinates': (-79.3721682, 43.66763473)}"
-7855,828,GO-20179009905,THEFT UNDER - BICYCLE,2017-07-10T00:00:00,2017,July,Monday,10,191,16,2017-07-10T00:00:00,2017,July,Monday,10,191,20,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,OT,MARK II,RG,7,BLU,600.0,STOLEN,7854,"{'type': 'Point', 'coordinates': (-79.37854549, 43.67025604)}"
-7856,885,GO-20179010137,THEFT UNDER - BICYCLE,2017-07-13T00:00:00,2017,July,Thursday,13,194,9,2017-07-13T00:00:00,2017,July,Thursday,13,194,18,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SU,,RG,18,RED,0.0,STOLEN,7855,"{'type': 'Point', 'coordinates': (-79.37681431, 43.67235839)}"
-7857,903,GO-20179010503,THEFT UNDER - BICYCLE,2017-07-18T00:00:00,2017,July,Tuesday,18,199,14,2017-07-18T00:00:00,2017,July,Tuesday,18,199,17,D51,Toronto,74,North St.James Town (74),Schools During Supervised Activity,Educational,SU,,OT,21,GRY,350.0,STOLEN,7856,"{'type': 'Point', 'coordinates': (-79.37681431, 43.67235839)}"
-7858,929,GO-20171316619,THEFT UNDER - BICYCLE,2017-07-20T00:00:00,2017,July,Thursday,20,201,20,2017-07-22T00:00:00,2017,July,Saturday,22,203,14,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,JEEP,,TO,6,CRMBLU,,STOLEN,7857,"{'type': 'Point', 'coordinates': (-79.37036718, 43.67025828)}"
-7859,1019,GO-20179011369,THEFT UNDER - BICYCLE,2017-06-14T00:00:00,2017,June,Wednesday,14,165,19,2017-07-31T00:00:00,2017,July,Monday,31,212,0,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,BAD BOY 9,OT,24,BLK,800.0,STOLEN,7858,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-7860,1031,GO-20179011468,THEFT UNDER - BICYCLE,2017-07-31T00:00:00,2017,July,Monday,31,212,20,2017-08-01T00:00:00,2017,August,Tuesday,1,213,16,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,OT,ALLEZ SPORT,RC,9,BLU,1100.0,STOLEN,7859,"{'type': 'Point', 'coordinates': (-79.37645102, 43.66797312)}"
-7861,1100,GO-20179012019,THEFT UNDER - BICYCLE,2017-08-08T00:00:00,2017,August,Tuesday,8,220,2,2017-08-09T00:00:00,2017,August,Wednesday,9,221,16,D51,Toronto,74,North St.James Town (74),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,LUXOR,EL,12,BLK,2500.0,STOLEN,7860,"{'type': 'Point', 'coordinates': (-79.37538102, 43.67127942)}"
-7862,1102,GO-20179012065,THEFT UNDER - BICYCLE,2017-08-09T00:00:00,2017,August,Wednesday,9,221,1,2017-08-10T00:00:00,2017,August,Thursday,10,222,9,D51,Toronto,74,North St.James Town (74),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,TRANSEO 4.0,RG,6,WHI,800.0,STOLEN,7861,"{'type': 'Point', 'coordinates': (-79.37538102, 43.67127942)}"
-7863,1151,GO-20179012445,THEFT UNDER - BICYCLE,2017-08-14T00:00:00,2017,August,Monday,14,226,11,2017-08-15T00:00:00,2017,August,Tuesday,15,227,10,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,GTX-2 700 C,MT,21,RED,555.0,STOLEN,7862,"{'type': 'Point', 'coordinates': (-79.37368966, 43.67132826)}"
-7864,1154,GO-20179012486,THEFT UNDER - BICYCLE,2017-08-15T00:00:00,2017,August,Tuesday,15,227,17,2017-08-15T00:00:00,2017,August,Tuesday,15,227,19,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE 3,RG,21,BLK,600.0,STOLEN,7863,"{'type': 'Point', 'coordinates': (-79.37883544, 43.67093622)}"
-7865,1387,GO-20171665848,B&E,2017-09-14T00:00:00,2017,September,Thursday,14,257,11,2017-09-14T00:00:00,2017,September,Thursday,14,257,11,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,PINARELLO,,OT,10,BLU,5500.0,STOLEN,7864,"{'type': 'Point', 'coordinates': (-79.37645102, 43.66797312)}"
-7866,1388,GO-20171665848,B&E,2017-09-14T00:00:00,2017,September,Thursday,14,257,11,2017-09-14T00:00:00,2017,September,Thursday,14,257,11,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,,RG,10,BLK,1500.0,STOLEN,7865,"{'type': 'Point', 'coordinates': (-79.37645102, 43.66797312)}"
-7867,1428,GO-20179014944,THEFT UNDER - BICYCLE,2017-09-16T00:00:00,2017,September,Saturday,16,259,13,2017-09-16T00:00:00,2017,September,Saturday,16,259,13,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SC,SANCTUARY 7,TO,7,PLE,400.0,STOLEN,7866,"{'type': 'Point', 'coordinates': (-79.37279145, 43.66924446)}"
-7868,1448,GO-20179015085,THEFT UNDER - BICYCLE,2017-09-16T00:00:00,2017,September,Saturday,16,259,10,2017-09-18T00:00:00,2017,September,Monday,18,261,15,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,H6,FO,6,BLK,2500.0,STOLEN,7867,"{'type': 'Point', 'coordinates': (-79.38052643, 43.67161072)}"
-7869,1673,GO-20179017411,THEFT UNDER - BICYCLE,2017-10-16T00:00:00,2017,October,Monday,16,289,9,2017-10-17T00:00:00,2017,October,Tuesday,17,290,13,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,SPORTSTER 200,MT,25,BLK,1500.0,STOLEN,7868,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-7870,1699,GO-20179017552,THEFT UNDER - BICYCLE,2017-10-18T00:00:00,2017,October,Wednesday,18,291,19,2017-10-18T00:00:00,2017,October,Wednesday,18,291,20,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KO,FIRE MOUNTAIN,MT,8,GRY,700.0,STOLEN,7869,"{'type': 'Point', 'coordinates': (-79.3721682, 43.66763473)}"
-7871,1855,GO-20173006578,THEFT OF EBIKE UNDER $5000,2017-11-15T00:00:00,2017,November,Wednesday,15,319,21,2017-11-16T00:00:00,2017,November,Thursday,16,320,2,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DCO,,EL,1,BLK,2500.0,STOLEN,7870,"{'type': 'Point', 'coordinates': (-79.37883544, 43.67093622)}"
-7872,1860,GO-20179019960,THEFT UNDER - BICYCLE,2017-11-18T00:00:00,2017,November,Saturday,18,322,15,2017-11-18T00:00:00,2017,November,Saturday,18,322,18,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,OCR1,TO,27,BLU,0.0,STOLEN,7871,"{'type': 'Point', 'coordinates': (-79.37581268, 43.66648596000001)}"
-7873,1873,GO-20179020399,THEFT UNDER - BICYCLE,2017-11-19T00:00:00,2017,November,Sunday,19,323,23,2017-11-23T00:00:00,2017,November,Thursday,23,327,17,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,SC,GRAFT PRO,MT,24,WHI,0.0,STOLEN,7872,"{'type': 'Point', 'coordinates': (-79.37646069, 43.66642862)}"
-7874,1884,GO-20173082243,B&E,2017-11-20T00:00:00,2017,November,Monday,20,324,16,2017-11-27T00:00:00,2017,November,Monday,27,331,16,D51,Toronto,74,North St.James Town (74),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,NONE,OT,0,BLKSIL,120.0,STOLEN,7873,"{'type': 'Point', 'coordinates': (-79.37279145, 43.66924446)}"
-7875,1885,GO-20173082243,B&E,2017-11-20T00:00:00,2017,November,Monday,20,324,16,2017-11-27T00:00:00,2017,November,Monday,27,331,16,D51,Toronto,74,North St.James Town (74),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,NONE,OT,0,GRN,80.0,STOLEN,7874,"{'type': 'Point', 'coordinates': (-79.37279145, 43.66924446)}"
-7876,2068,GO-20189007063,THEFT UNDER - BICYCLE,2018-03-06T00:00:00,2018,March,Tuesday,6,65,9,2018-03-06T00:00:00,2018,March,Tuesday,6,65,19,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,GI,OCR3,RC,24,RED,400.0,STOLEN,7875,"{'type': 'Point', 'coordinates': (-79.37646069, 43.66642862)}"
-7877,2073,GO-20189007645,THEFT UNDER - BICYCLE,2018-03-06T00:00:00,2018,March,Tuesday,6,65,17,2018-03-12T00:00:00,2018,March,Monday,12,71,10,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,OT,13 SECTEUR C2,RC,99,RED,500.0,STOLEN,7876,"{'type': 'Point', 'coordinates': (-79.37646069, 43.66642862)}"
-7878,2264,GO-20189014003,THEFT UNDER - BICYCLE,2018-05-02T00:00:00,2018,May,Wednesday,2,122,20,2018-05-06T00:00:00,2018,May,Sunday,6,126,21,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,2011 HUDSON 1.0,RG,7,BLK,300.0,STOLEN,7877,"{'type': 'Point', 'coordinates': (-79.37646069, 43.66642862)}"
-7879,2281,GO-20189014343,THEFT UNDER - BICYCLE,2018-05-07T00:00:00,2018,May,Monday,7,127,9,2018-05-09T00:00:00,2018,May,Wednesday,9,129,18,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,HUNTER - STEEL,FO,7,ONG,230.0,STOLEN,7878,"{'type': 'Point', 'coordinates': (-79.37279145, 43.66924446)}"
-7880,2357,GO-20189015653,THEFT UNDER - BICYCLE,2018-05-20T00:00:00,2018,May,Sunday,20,140,15,2018-05-21T00:00:00,2018,May,Monday,21,141,8,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,BOULDER,MT,21,GRY,360.0,STOLEN,7879,"{'type': 'Point', 'coordinates': (-79.37513727, 43.66825437)}"
-7881,2366,GO-20189015653,THEFT UNDER - BICYCLE,2018-05-20T00:00:00,2018,May,Sunday,20,140,15,2018-05-21T00:00:00,2018,May,Monday,21,141,8,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,BOULDER,MT,21,GRY,600.0,STOLEN,7880,"{'type': 'Point', 'coordinates': (-79.37513727, 43.66825437)}"
-7882,2473,GO-20189017531,THEFT UNDER - BICYCLE,2018-06-04T00:00:00,2018,June,Monday,4,155,10,2018-06-05T00:00:00,2018,June,Tuesday,5,156,20,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,FJ,ROADBIKE,RC,20,BLK,600.0,STOLEN,7881,"{'type': 'Point', 'coordinates': (-79.37681431, 43.67235839)}"
-7883,2523,GO-20189018147,THEFT UNDER - BICYCLE,2018-06-10T00:00:00,2018,June,Sunday,10,161,21,2018-06-10T00:00:00,2018,June,Sunday,10,161,23,D51,Toronto,74,North St.James Town (74),"Gas Station (Self, Full, Attached Convenience)",Commercial,CC,,OT,7,RED,200.0,STOLEN,7882,"{'type': 'Point', 'coordinates': (-79.37830693, 43.66628508)}"
-7884,2713,GO-20181180825,B&E,2016-06-28T00:00:00,2016,June,Tuesday,28,180,11,2018-06-29T00:00:00,2018,June,Friday,29,180,8,D51,Toronto,74,North St.James Town (74),"Private Property Structure (Pool, Shed, Detached Garage)",Other,COLNAGO,,RC,12,RED,3000.0,STOLEN,7883,"{'type': 'Point', 'coordinates': (-79.37900573, 43.66793407)}"
-7885,2975,GO-20189024047,THEFT UNDER - BICYCLE,2018-07-22T00:00:00,2018,July,Sunday,22,203,18,2018-07-26T00:00:00,2018,July,Thursday,26,207,20,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SU,SOLARIS,RG,18,GRY,270.0,STOLEN,7884,"{'type': 'Point', 'coordinates': (-79.3721682, 43.66763473)}"
-7886,3005,GO-20189024287,THEFT UNDER - BICYCLE,2018-07-25T00:00:00,2018,July,Wednesday,25,206,22,2018-07-29T00:00:00,2018,July,Sunday,29,210,0,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,RM,,TO,24,GRY,400.0,STOLEN,7885,"{'type': 'Point', 'coordinates': (-79.37036718, 43.67025828)}"
-7887,3174,GO-20189026087,THEFT UNDER - BICYCLE,2018-08-02T00:00:00,2018,August,Thursday,2,214,17,2018-08-12T00:00:00,2018,August,Sunday,12,224,16,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,SC,GTX2 700C,RG,12,,100.0,STOLEN,7886,"{'type': 'Point', 'coordinates': (-79.37830693, 43.66628508)}"
-7888,3182,GO-20189026159,THEFT UNDER - BICYCLE,2018-08-11T00:00:00,2018,August,Saturday,11,223,15,2018-08-13T00:00:00,2018,August,Monday,13,225,10,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MILANO,RG,3,BLK,900.0,STOLEN,7887,"{'type': 'Point', 'coordinates': (-79.37883544, 43.67093622)}"
-7889,3385,GO-20181592652,THEFT OF EBIKE UNDER $5000,2018-08-28T00:00:00,2018,August,Tuesday,28,240,7,2018-08-28T00:00:00,2018,August,Tuesday,28,240,16,D51,Toronto,74,North St.James Town (74),"Construction Site (Warehouse, Trailer, Shed)",Commercial,EMMO,,EL,1,BLK,2000.0,STOLEN,7888,"{'type': 'Point', 'coordinates': (-79.37646069, 43.66642862)}"
-7890,3417,GO-20189029525,THEFT UNDER - BICYCLE,2018-09-05T00:00:00,2018,September,Wednesday,5,248,16,2018-09-07T00:00:00,2018,September,Friday,7,250,21,D51,Toronto,74,North St.James Town (74),"Open Areas (Lakes, Parks, Rivers)",Outside,TR,FX 7.2,OT,21,SIL,500.0,STOLEN,7889,"{'type': 'Point', 'coordinates': (-79.37941202, 43.66889376)}"
-7891,3484,GO-20189030562,THEFT UNDER - BICYCLE,2018-09-06T00:00:00,2018,September,Thursday,6,249,9,2018-09-15T00:00:00,2018,September,Saturday,15,258,12,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,2017,MT,24,BLK,400.0,STOLEN,7890,"{'type': 'Point', 'coordinates': (-79.374408, 43.66886889)}"
-7892,3489,GO-20189030742,THEFT UNDER - BICYCLE,2018-09-16T00:00:00,2018,September,Sunday,16,259,22,2018-09-16T00:00:00,2018,September,Sunday,16,259,23,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,RG,3,BLU,500.0,STOLEN,7891,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-7893,3537,GO-20189031590,THEFT UNDER - BICYCLE,2018-09-22T00:00:00,2018,September,Saturday,22,265,19,2018-09-23T00:00:00,2018,September,Sunday,23,266,16,D51,Toronto,74,North St.James Town (74),Bar / Restaurant,Commercial,TR,7.3 FX,RG,21,BLK,700.0,STOLEN,7892,"{'type': 'Point', 'coordinates': (-79.37493677, 43.67129082)}"
-7894,3614,GO-20189032859,THEFT UNDER - BICYCLE,2018-10-03T00:00:00,2018,October,Wednesday,3,276,8,2018-10-04T00:00:00,2018,October,Thursday,4,277,8,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,OT,CRITICAL,RG,1,BLK,200.0,STOLEN,7893,"{'type': 'Point', 'coordinates': (-79.37645102, 43.66797312)}"
-7895,3757,GO-20189035451,THEFT UNDER - BICYCLE,2018-09-24T00:00:00,2018,September,Monday,24,267,20,2018-10-24T00:00:00,2018,October,Wednesday,24,297,20,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,KO,,RG,10,WHI,700.0,STOLEN,7894,"{'type': 'Point', 'coordinates': (-79.37513727, 43.66825437)}"
-7896,3758,GO-20189035451,THEFT UNDER - BICYCLE,2018-09-24T00:00:00,2018,September,Monday,24,267,20,2018-10-24T00:00:00,2018,October,Wednesday,24,297,20,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,10,WHI,1300.0,STOLEN,7895,"{'type': 'Point', 'coordinates': (-79.37513727, 43.66825437)}"
-7897,4124,GO-20199010445,B&E,2019-03-28T00:00:00,2019,March,Thursday,28,87,20,2019-04-02T00:00:00,2019,April,Tuesday,2,92,22,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,OT,MIELE,RG,10,MRN,200.0,STOLEN,7896,"{'type': 'Point', 'coordinates': (-79.3721682, 43.66763473)}"
-7898,4129,GO-2019600645,THEFT UNDER - BICYCLE,2019-04-03T00:00:00,2019,April,Wednesday,3,93,15,2019-04-03T00:00:00,2019,April,Wednesday,3,93,17,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,RG,1,BLKYEL,,STOLEN,7897,"{'type': 'Point', 'coordinates': (-79.38052643, 43.67161072)}"
-7899,4131,GO-20199010722,B&E,2019-04-03T00:00:00,2019,April,Wednesday,3,93,14,2019-04-04T00:00:00,2019,April,Thursday,4,94,22,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RM,BLIZZARD,MT,21,WHI,2200.0,STOLEN,7898,"{'type': 'Point', 'coordinates': (-79.38052643, 43.67161072)}"
-7900,4230,GO-20199013837,THEFT UNDER,2019-04-25T00:00:00,2019,April,Thursday,25,115,1,2019-05-03T00:00:00,2019,May,Friday,3,123,14,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,OT,ANDANTE 5,TO,8,BLK,1090.0,STOLEN,7899,"{'type': 'Point', 'coordinates': (-79.37513727, 43.66825437)}"
-7901,4249,GO-2019829852,THEFT UNDER - BICYCLE,2019-05-07T00:00:00,2019,May,Tuesday,7,127,14,2019-05-07T00:00:00,2019,May,Tuesday,7,127,18,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,,RG,5,BLK,350.0,STOLEN,7900,"{'type': 'Point', 'coordinates': (-79.3721682, 43.66763473)}"
-7902,4259,GO-2019841851,THEFT UNDER,2019-05-09T00:00:00,2019,May,Thursday,9,129,10,2019-05-09T00:00:00,2019,May,Thursday,9,129,11,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NONE,,SC,0,RED,2000.0,STOLEN,7901,"{'type': 'Point', 'coordinates': (-79.37575001, 43.6696557)}"
-7903,4284,GO-20199015234,THEFT UNDER,2019-05-16T00:00:00,2019,May,Thursday,16,136,5,2019-05-16T00:00:00,2019,May,Thursday,16,136,11,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,10,,1000.0,STOLEN,7902,"{'type': 'Point', 'coordinates': (-79.37646069, 43.66642862)}"
-7904,4336,GO-20199016150,THEFT UNDER,2019-05-24T00:00:00,2019,May,Friday,24,144,12,2019-05-24T00:00:00,2019,May,Friday,24,144,13,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,BIKESHARE TORON,OT,3,GRN,0.0,STOLEN,7903,"{'type': 'Point', 'coordinates': (-79.37513727, 43.66825437)}"
-7905,22681,GO-20192227836,THEFT UNDER - BICYCLE,2019-11-17T00:00:00,2019,November,Sunday,17,321,23,2019-11-18T00:00:00,2019,November,Monday,18,322,13,D51,Toronto,72,Regent Park (72),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MIELE,UMBRIA1,OT,21,BLK,450.0,STOLEN,7904,"{'type': 'Point', 'coordinates': (-79.35946503, 43.65830111)}"
-7906,22694,GO-2020391521,THEFT UNDER,2020-02-14T00:00:00,2020,February,Friday,14,45,3,2020-02-24T00:00:00,2020,February,Monday,24,55,14,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,AQUILA,,MT,6,RED,300.0,STOLEN,7905,"{'type': 'Point', 'coordinates': (-79.35785372, 43.66056871)}"
-7907,22716,GO-20209012780,THEFT UNDER,2020-05-08T00:00:00,2020,May,Friday,8,129,17,2020-05-09T00:00:00,2020,May,Saturday,9,130,12,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,OT,2009 SPECIALE F,RC,1,BLK,800.0,STOLEN,7906,"{'type': 'Point', 'coordinates': (-79.35812204, 43.66119775)}"
-7908,22801,GO-20209029008,THEFT UNDER,2020-11-07T00:00:00,2020,November,Saturday,7,312,18,2020-11-08T00:00:00,2020,November,Sunday,8,313,15,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,SC,DISCOVERY 700,OT,21,BLK,500.0,STOLEN,7907,"{'type': 'Point', 'coordinates': (-79.3647333, 43.66044764)}"
-7909,22805,GO-20209031791,THEFT UNDER,2020-12-06T00:00:00,2020,December,Sunday,6,341,12,2020-12-12T00:00:00,2020,December,Saturday,12,347,13,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,NO,,TO,15,OTH,0.0,STOLEN,7908,"{'type': 'Point', 'coordinates': (-79.3647333, 43.66044764)}"
-7910,23218,GO-20181917942,B&E,2018-10-06T00:00:00,2018,October,Saturday,6,279,16,2018-10-17T00:00:00,2018,October,Wednesday,17,290,13,D51,Toronto,72,Regent Park (72),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,FELT,17VR60,OT,0,,1017.0,STOLEN,7909,"{'type': 'Point', 'coordinates': (-79.3647333, 43.66044764)}"
-7911,23230,GO-20182157928,THEFT UNDER,2018-11-09T00:00:00,2018,November,Friday,9,313,11,2018-11-27T00:00:00,2018,November,Tuesday,27,331,10,D51,Toronto,72,Regent Park (72),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,DAYMARK,,SC,1,BLU,4000.0,STOLEN,7910,"{'type': 'Point', 'coordinates': (-79.3647333, 43.66044764)}"
-7912,23252,GO-2019826413,THEFT UNDER,2019-01-07T00:00:00,2019,January,Monday,7,7,12,2019-05-07T00:00:00,2019,May,Tuesday,7,127,10,D51,Toronto,72,Regent Park (72),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,AGTA,4 WHEEL-PART,OT,1,BLK,2000.0,STOLEN,7911,"{'type': 'Point', 'coordinates': (-79.3649748, 43.66105179)}"
-7913,23267,GO-20191125915,ASSAULT WITH WEAPON,2019-06-18T00:00:00,2019,June,Tuesday,18,169,8,2019-06-18T00:00:00,2019,June,Tuesday,18,169,9,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,TREK,EMONDA ALR 4 DI,OT,18,BLK,2400.0,STOLEN,7912,"{'type': 'Point', 'coordinates': (-79.3632636, 43.66077482)}"
-7914,23271,GO-20199019803,THEFT UNDER,2019-06-23T00:00:00,2019,June,Sunday,23,174,16,2019-06-23T00:00:00,2019,June,Sunday,23,174,19,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OPUS,MOLLY 13,RG,3,BLU,500.0,STOLEN,7913,"{'type': 'Point', 'coordinates': (-79.36597615, 43.65944077)}"
-7915,23434,GO-20171194313,THEFT UNDER - BICYCLE,2017-07-04T00:00:00,2017,July,Tuesday,4,185,9,2017-07-04T00:00:00,2017,July,Tuesday,4,185,12,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,DEVINCI,JOHNSON,RG,13,,2600.0,STOLEN,7914,"{'type': 'Point', 'coordinates': (-79.36174292, 43.66035993)}"
-7916,23443,GO-20171310301,THEFT OF EBIKE UNDER $5000,2017-07-21T00:00:00,2017,July,Friday,21,202,14,2017-07-21T00:00:00,2017,July,Friday,21,202,16,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,UNKNOWN,EL,1,BLU,2000.0,STOLEN,7915,"{'type': 'Point', 'coordinates': (-79.36597615, 43.65944077)}"
-7917,23446,GO-20171327046,THEFT UNDER - BICYCLE,2017-07-18T00:00:00,2017,July,Tuesday,18,199,2,2017-07-24T00:00:00,2017,July,Monday,24,205,9,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,MT,0,GRY,200.0,STOLEN,7916,"{'type': 'Point', 'coordinates': (-79.35903709, 43.660341980000005)}"
-7918,23449,GO-20171328905,THEFT UNDER,2017-07-24T00:00:00,2017,July,Monday,24,205,5,2017-07-24T00:00:00,2017,July,Monday,24,205,14,D51,Toronto,72,Regent Park (72),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNK,,OT,0,,,STOLEN,7917,"{'type': 'Point', 'coordinates': (-79.35682972, 43.66437541)}"
-7919,23486,GO-20179017374,THEFT UNDER,2017-10-16T00:00:00,2017,October,Monday,16,289,19,2017-10-16T00:00:00,2017,October,Monday,16,289,20,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,1,BLK,100.0,STOLEN,7918,"{'type': 'Point', 'coordinates': (-79.3664929, 43.66071879)}"
-7920,23510,GO-20189009218,THEFT UNDER - BICYCLE,2018-03-21T00:00:00,2018,March,Wednesday,21,80,18,2018-03-23T00:00:00,2018,March,Friday,23,82,21,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,GI,18 ANYROAD 2,RC,9,BLK,1040.0,STOLEN,7919,"{'type': 'Point', 'coordinates': (-79.3647333, 43.66044764)}"
-7921,23515,GO-2018655710,B&E,2017-11-25T00:00:00,2017,November,Saturday,25,329,5,2018-04-13T00:00:00,2018,April,Friday,13,103,13,D51,Toronto,72,Regent Park (72),"Single Home, House (Attach Garage, Cottage, Mobile)",House,PEUGEOT,ROAD,RC,1,YEL,400.0,STOLEN,7920,"{'type': 'Point', 'coordinates': (-79.35741721, 43.65952408)}"
-7922,23532,GO-20189017756,THEFT UNDER - BICYCLE,2018-06-06T00:00:00,2018,June,Wednesday,6,157,18,2018-06-07T00:00:00,2018,June,Thursday,7,158,12,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,NO,VFR 6,RG,21,LBL,700.0,STOLEN,7921,"{'type': 'Point', 'coordinates': (-79.35685690000001, 43.65820104)}"
-7923,23533,GO-20189017756,THEFT UNDER - BICYCLE,2018-06-06T00:00:00,2018,June,Wednesday,6,157,18,2018-06-07T00:00:00,2018,June,Thursday,7,158,12,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,OT,VERZA,RG,21,ONG,900.0,STOLEN,7922,"{'type': 'Point', 'coordinates': (-79.35685690000001, 43.65820104)}"
-7924,23639,GO-20159005544,THEFT UNDER,2015-08-09T00:00:00,2015,August,Sunday,9,221,16,2015-08-09T00:00:00,2015,August,Sunday,9,221,20,D51,Toronto,72,Regent Park (72),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,2011 X-CAL,MT,30,WHI,0.0,STOLEN,7923,"{'type': 'Point', 'coordinates': (-79.35842146, 43.66188892)}"
-7925,23660,GO-20151795325,THEFT UNDER,2015-10-06T00:00:00,2015,October,Tuesday,6,279,17,2015-10-17T00:00:00,2015,October,Saturday,17,290,12,D51,Toronto,72,Regent Park (72),"Open Areas (Lakes, Parks, Rivers)",Outside,SUPERCYCLE,NITRO,MT,18,WHI,200.0,STOLEN,7924,"{'type': 'Point', 'coordinates': (-79.3664929, 43.66071879)}"
-7926,23667,GO-20159009572,THEFT UNDER,2015-11-09T00:00:00,2015,November,Monday,9,313,9,2015-11-09T00:00:00,2015,November,Monday,9,313,21,D51,Toronto,72,Regent Park (72),"Dealership (Car, Motorcycle, Marine, Trailer, Etc.)",Commercial,SC,SCHWINN CIRCUIT,RG,24,DBL,400.0,STOLEN,7925,"{'type': 'Point', 'coordinates': (-79.35677781, 43.6607909)}"
-7927,23674,GO-20169001091,THEFT UNDER,2016-02-03T00:00:00,2016,February,Wednesday,3,34,17,2016-02-03T00:00:00,2016,February,Wednesday,3,34,18,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,GT,GRADE CLARIS,RC,8,BLK,879.0,STOLEN,7926,"{'type': 'Point', 'coordinates': (-79.36267396, 43.65942878)}"
-7928,23700,GO-20169005256,THEFT UNDER - BICYCLE,2016-05-30T00:00:00,2016,May,Monday,30,151,21,2016-06-02T00:00:00,2016,June,Thursday,2,154,23,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,AMSTERDAM,OT,21,GRY,1200.0,STOLEN,7927,"{'type': 'Point', 'coordinates': (-79.36044709, 43.66067264)}"
-7929,23704,GO-20169005552,THEFT UNDER,2016-06-07T00:00:00,2016,June,Tuesday,7,159,8,2016-06-10T00:00:00,2016,June,Friday,10,162,9,D51,Toronto,72,Regent Park (72),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KO,,MT,14,ONG,2300.0,STOLEN,7928,"{'type': 'Point', 'coordinates': (-79.35925501, 43.65771025)}"
-7930,23723,GO-20169008377,B&E,2016-08-08T00:00:00,2016,August,Monday,8,221,10,2016-08-08T00:00:00,2016,August,Monday,8,221,10,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,RA,RALIEGH 3.0,OT,21,GRY,600.0,STOLEN,7929,"{'type': 'Point', 'coordinates': (-79.36019846, 43.66007445)}"
-7931,23770,GO-20162031823,THEFT OF EBIKE UNDER $5000,2016-11-08T00:00:00,2016,November,Tuesday,8,313,14,2016-11-17T00:00:00,2016,November,Thursday,17,322,0,D51,Toronto,72,Regent Park (72),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,RAPTOR,EL,0,RED,1011.0,STOLEN,7930,"{'type': 'Point', 'coordinates': (-79.35605001000002, 43.66165771)}"
-7932,23896,GO-20149004061,THEFT UNDER,2014-06-13T00:00:00,2014,June,Friday,13,164,11,2014-06-14T00:00:00,2014,June,Saturday,14,165,12,D51,Toronto,72,Regent Park (72),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,EL,32,ONG,1200.0,STOLEN,7931,"{'type': 'Point', 'coordinates': (-79.35741721, 43.65952408)}"
-7933,23933,GO-20142630812,THEFT UNDER,2014-07-27T00:00:00,2014,July,Sunday,27,208,10,2014-08-03T00:00:00,2014,August,Sunday,3,215,21,D51,Toronto,72,Regent Park (72),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,CCM,MT,1,WHI,200.0,STOLEN,7932,"{'type': 'Point', 'coordinates': (-79.36019846, 43.66007445)}"
-7934,23957,GO-20149007126,THEFT UNDER,2014-09-19T00:00:00,2014,September,Friday,19,262,20,2014-09-22T00:00:00,2014,September,Monday,22,265,17,D51,Toronto,72,Regent Park (72),"Apartment (Rooming House, Condo)",Apartment,TR,7100,OT,21,BRN,510.0,STOLEN,7933,"{'type': 'Point', 'coordinates': (-79.36267396, 43.65942878)}"
-7935,23959,GO-20142982401,THEFT UNDER,2014-09-23T00:00:00,2014,September,Tuesday,23,266,11,2014-09-25T00:00:00,2014,September,Thursday,25,268,17,D51,Toronto,72,Regent Park (72),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,,MT,4,PNK,50.0,STOLEN,7934,"{'type': 'Point', 'coordinates': (-79.3649748, 43.66105179)}"
-7936,23960,GO-20142982401,THEFT UNDER,2014-09-23T00:00:00,2014,September,Tuesday,23,266,11,2014-09-25T00:00:00,2014,September,Thursday,25,268,17,D51,Toronto,72,Regent Park (72),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,,MT,4,GRY,80.0,STOLEN,7935,"{'type': 'Point', 'coordinates': (-79.3649748, 43.66105179)}"
-7937,22,GO-20169014792,THEFT UNDER - BICYCLE,2016-12-17T00:00:00,2016,December,Saturday,17,352,16,2016-12-17T00:00:00,2016,December,Saturday,17,352,20,D51,Toronto,73,Moss Park (73),Convenience Stores,Commercial,NO,I,RG,26,RED,800.0,STOLEN,7936,"{'type': 'Point', 'coordinates': (-79.36715127, 43.66233418)}"
-7938,31,GO-20162281027,THEFT UNDER - BICYCLE,2016-12-24T00:00:00,2016,December,Saturday,24,359,15,2016-12-25T00:00:00,2016,December,Sunday,25,360,14,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,QUICK 4,OT,21,BLK,699.0,STOLEN,7937,"{'type': 'Point', 'coordinates': (-79.36010584, 43.652974560000004)}"
-7939,36,GO-201710432,B&E,2016-12-22T00:00:00,2016,December,Thursday,22,357,12,2017-01-02T00:00:00,2017,January,Monday,2,2,22,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,WOLLY WAGON,WOLLY WAGON,OT,1,GRN,800.0,STOLEN,7938,"{'type': 'Point', 'coordinates': (-79.36822197, 43.65127732)}"
-7940,38,GO-20179000174,THEFT UNDER - BICYCLE,2017-01-04T00:00:00,2017,January,Wednesday,4,4,12,2017-01-04T00:00:00,2017,January,Wednesday,4,4,16,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RA,REVENIO,TO,21,GRY,1000.0,STOLEN,7939,"{'type': 'Point', 'coordinates': (-79.36715127, 43.66233418)}"
-7941,47,GO-20179000516,THEFT UNDER,2017-01-10T00:00:00,2017,January,Tuesday,10,10,20,2017-01-12T00:00:00,2017,January,Thursday,12,12,8,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,SCHERZO,RC,20,BLK,2500.0,STOLEN,7940,"{'type': 'Point', 'coordinates': (-79.37103886, 43.65160431)}"
-7942,50,GO-20179000676,THEFT UNDER,2017-01-15T00:00:00,2017,January,Sunday,15,15,14,2017-01-15T00:00:00,2017,January,Sunday,15,15,16,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,FJ,,OT,10,,300.0,STOLEN,7941,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7943,84,GO-20179001675,THEFT UNDER - BICYCLE,2017-02-07T00:00:00,2017,February,Tuesday,7,38,7,2017-02-07T00:00:00,2017,February,Tuesday,7,38,18,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,NO,JUBEI,MT,21,RED,2125.0,STOLEN,7942,"{'type': 'Point', 'coordinates': (-79.36738106, 43.65241212)}"
-7944,118,GO-20179002566,THEFT UNDER - BICYCLE,2017-02-26T00:00:00,2017,February,Sunday,26,57,18,2017-02-27T00:00:00,2017,February,Monday,27,58,15,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,VECTOR 700 C RD,TO,21,BLU,500.0,STOLEN,7943,"{'type': 'Point', 'coordinates': (-79.3714043, 43.65589538)}"
-7945,144,GO-2017410888,B&E,2017-02-24T00:00:00,2017,February,Friday,24,55,0,2017-03-06T00:00:00,2017,March,Monday,6,65,19,D51,Toronto,73,Moss Park (73),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CANNONDALE,29 CARBON 2,OT,11,WHI,2000.0,STOLEN,7944,"{'type': 'Point', 'coordinates': (-79.35576206, 43.65652566)}"
-7946,210,GO-20179004553,THEFT UNDER - BICYCLE,2017-04-10T00:00:00,2017,April,Monday,10,100,8,2017-04-11T00:00:00,2017,April,Tuesday,11,101,8,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,STOCKHOLM,TO,18,RED,750.0,STOLEN,7945,"{'type': 'Point', 'coordinates': (-79.36665279, 43.65068091)}"
-7947,224,GO-20179004721,THEFT UNDER - BICYCLE,2017-04-15T00:00:00,2017,April,Saturday,15,105,9,2017-04-15T00:00:00,2017,April,Saturday,15,105,14,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,HOOLIGAN,MT,18,BLU,300.0,STOLEN,7946,"{'type': 'Point', 'coordinates': (-79.37008264, 43.656162280000004)}"
-7948,235,GO-20179004790,THEFT UNDER - BICYCLE,2017-04-09T00:00:00,2017,April,Sunday,9,99,0,2017-04-17T00:00:00,2017,April,Monday,17,107,9,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,DEW,MT,24,BLK,599.0,STOLEN,7947,"{'type': 'Point', 'coordinates': (-79.36852769, 43.65887073)}"
-7949,247,GO-20179004721,THEFT UNDER - BICYCLE,2017-04-15T00:00:00,2017,April,Saturday,15,105,9,2017-04-15T00:00:00,2017,April,Saturday,15,105,14,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,SUPERCYCLE,MT,18,BLU,300.0,STOLEN,7948,"{'type': 'Point', 'coordinates': (-79.37008264, 43.656162280000004)}"
-7950,248,GO-20179004955,THEFT UNDER - BICYCLE,2017-04-19T00:00:00,2017,April,Wednesday,19,109,9,2017-04-19T00:00:00,2017,April,Wednesday,19,109,19,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,RG,27,GRY,600.0,STOLEN,7949,"{'type': 'Point', 'coordinates': (-79.36859808, 43.65214811)}"
-7951,266,GO-20179005125,THEFT UNDER,2017-04-08T00:00:00,2017,April,Saturday,8,98,15,2017-04-23T00:00:00,2017,April,Sunday,23,113,14,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,21,ONG,1000.0,STOLEN,7950,"{'type': 'Point', 'coordinates': (-79.35576206, 43.65652566)}"
-7952,365,GO-2017830225,THEFT OF EBIKE UNDER $5000,2017-05-10T00:00:00,2017,May,Wednesday,10,130,15,2017-05-11T00:00:00,2017,May,Thursday,11,131,13,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DAYMAK,KINGSTON,EL,6,RED,1999.0,STOLEN,7951,"{'type': 'Point', 'coordinates': (-79.37232549, 43.65152723)}"
-7953,370,GO-20179006154,THEFT UNDER,2017-05-10T00:00:00,2017,May,Wednesday,10,130,15,2017-05-11T00:00:00,2017,May,Thursday,11,131,16,D51,Toronto,73,Moss Park (73),Ttc Light Rail Transit Station,Transit,UK,,FO,50,YEL,200.0,STOLEN,7952,"{'type': 'Point', 'coordinates': (-79.36813583, 43.66211281)}"
-7954,447,GO-20179006597,THEFT UNDER - BICYCLE,2017-05-18T00:00:00,2017,May,Thursday,18,138,10,2017-05-18T00:00:00,2017,May,Thursday,18,138,19,D51,Toronto,73,Moss Park (73),Universities / Colleges,Educational,GI,ROAM 2,MT,27,GRY,800.0,STOLEN,7953,"{'type': 'Point', 'coordinates': (-79.37185641, 43.65351071)}"
-7955,544,GO-20179007596,THEFT UNDER - BICYCLE,2017-06-04T00:00:00,2017,June,Sunday,4,155,9,2017-06-06T00:00:00,2017,June,Tuesday,6,157,8,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,PUGSLEY 'FATTIE,MT,27,OTH,1500.0,STOLEN,7954,"{'type': 'Point', 'coordinates': (-79.37452691, 43.65706649)}"
-7956,603,GO-20179007993,THEFT UNDER - BICYCLE,2017-06-11T00:00:00,2017,June,Sunday,11,162,22,2017-06-12T00:00:00,2017,June,Monday,12,163,16,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ELEVATION,MT,9,GRY,875.0,STOLEN,7955,"{'type': 'Point', 'coordinates': (-79.35779295, 43.65428865)}"
-7957,605,GO-20179007999,THEFT UNDER - BICYCLE,2017-06-12T00:00:00,2017,June,Monday,12,163,19,2017-06-13T00:00:00,2017,June,Tuesday,13,164,0,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,COLORADO TRI,RC,21,PNK,300.0,STOLEN,7956,"{'type': 'Point', 'coordinates': (-79.35693963, 43.65638235)}"
-7958,609,GO-20171011533,THEFT UNDER - BICYCLE,2017-05-28T00:00:00,2017,May,Sunday,28,148,18,2017-06-08T00:00:00,2017,June,Thursday,8,159,18,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,,OT,15,BLK,720.0,STOLEN,7957,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7959,614,GO-20179008108,THEFT UNDER - BICYCLE,2017-06-14T00:00:00,2017,June,Wednesday,14,165,9,2017-06-14T00:00:00,2017,June,Wednesday,14,165,21,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,GTX2 700C HYBRI,OT,21,RED,550.0,STOLEN,7958,"{'type': 'Point', 'coordinates': (-79.36616856, 43.6526954)}"
-7960,628,GO-20171073249,THEFT UNDER - BICYCLE,2017-06-13T00:00:00,2017,June,Tuesday,13,164,9,2017-06-16T00:00:00,2017,June,Friday,16,167,13,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,RG,7,SIL,200.0,STOLEN,7959,"{'type': 'Point', 'coordinates': (-79.37185641, 43.65351071)}"
-7961,651,GO-20179008426,THEFT UNDER,2017-06-19T00:00:00,2017,June,Monday,19,170,1,2017-06-19T00:00:00,2017,June,Monday,19,170,16,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,MILANO,RG,24,BLK,400.0,STOLEN,7960,"{'type': 'Point', 'coordinates': (-79.36691319, 43.65649967)}"
-7962,678,GO-20179008604,THEFT UNDER - BICYCLE,2017-06-21T00:00:00,2017,June,Wednesday,21,172,12,2017-06-21T00:00:00,2017,June,Wednesday,21,172,13,D51,Toronto,73,Moss Park (73),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,BUB,OT,3,RED,100.0,STOLEN,7961,"{'type': 'Point', 'coordinates': (-79.36967717, 43.66178085)}"
-7963,680,GO-20171110474,THEFT UNDER - BICYCLE,2017-06-19T00:00:00,2017,June,Monday,19,170,5,2017-06-21T00:00:00,2017,June,Wednesday,21,172,20,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,MT,1,,500.0,STOLEN,7962,"{'type': 'Point', 'coordinates': (-79.37302171, 43.66318983)}"
-7964,682,GO-20179008640,THEFT UNDER - BICYCLE,2017-06-18T00:00:00,2017,June,Sunday,18,169,7,2017-06-21T00:00:00,2017,June,Wednesday,21,172,19,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,2013,RC,12,BLK,200.0,STOLEN,7963,"{'type': 'Point', 'coordinates': (-79.3687877, 43.65699417)}"
-7965,718,GO-20179008913,THEFT UNDER - BICYCLE,2017-06-24T00:00:00,2017,June,Saturday,24,175,12,2017-06-26T00:00:00,2017,June,Monday,26,177,11,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,1983,RC,6,PLE,500.0,STOLEN,7964,"{'type': 'Point', 'coordinates': (-79.36662886, 43.65929244)}"
-7966,771,GO-20179009383,THEFT UNDER,2017-07-02T00:00:00,2017,July,Sunday,2,183,23,2017-07-04T00:00:00,2017,July,Tuesday,4,185,11,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,CC,,RG,7,TRQ,400.0,STOLEN,7965,"{'type': 'Point', 'coordinates': (-79.36066683, 43.65248849)}"
-7967,808,GO-20179009737,THEFT UNDER - BICYCLE,2017-07-07T00:00:00,2017,July,Friday,7,188,23,2017-07-08T00:00:00,2017,July,Saturday,8,189,18,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,13 INDIE 4 BLAC,RG,16,BLK,450.0,STOLEN,7966,"{'type': 'Point', 'coordinates': (-79.3714043, 43.65589538)}"
-7968,824,GO-20179009863,THEFT UNDER - BICYCLE,2017-07-08T00:00:00,2017,July,Saturday,8,189,14,2017-07-10T00:00:00,2017,July,Monday,10,191,13,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,ORBITA,MT,21,BLK,250.0,STOLEN,7967,"{'type': 'Point', 'coordinates': (-79.36738106, 43.65241212)}"
-7969,825,GO-20179009863,THEFT UNDER - BICYCLE,2017-07-08T00:00:00,2017,July,Saturday,8,189,14,2017-07-10T00:00:00,2017,July,Monday,10,191,13,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,SC,HYDRA 700CC,TO,21,LBL,395.0,STOLEN,7968,"{'type': 'Point', 'coordinates': (-79.36738106, 43.65241212)}"
-7970,869,GO-20179010275,THEFT UNDER - BICYCLE,2017-07-15T00:00:00,2017,July,Saturday,15,196,12,2017-07-15T00:00:00,2017,July,Saturday,15,196,15,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CC,,MT,21,BLU,0.0,STOLEN,7969,"{'type': 'Point', 'coordinates': (-79.36941977, 43.65452491)}"
-7971,871,GO-20179010289,THEFT UNDER - BICYCLE,2017-07-17T00:00:00,2017,July,Monday,17,198,2,2017-07-17T00:00:00,2017,July,Monday,17,198,6,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,,OT,24,RED,550.0,STOLEN,7970,"{'type': 'Point', 'coordinates': (-79.36662886, 43.65929244)}"
-7972,876,GO-20179010346,THEFT UNDER - BICYCLE,2017-07-13T00:00:00,2017,July,Thursday,13,194,19,2017-07-16T00:00:00,2017,July,Sunday,16,197,22,D51,Toronto,73,Moss Park (73),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,YORKVILLE M,RG,18,DGR,451.0,STOLEN,7971,"{'type': 'Point', 'coordinates': (-79.36910821, 43.65337764000001)}"
-7973,920,GO-20179010563,THEFT UNDER,2017-07-14T00:00:00,2017,July,Friday,14,195,10,2017-07-19T00:00:00,2017,July,Wednesday,19,200,10,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,CA,QUICK DISC 5,RG,9,BLK,900.0,STOLEN,7972,"{'type': 'Point', 'coordinates': (-79.36738106, 43.65241212)}"
-7974,949,GO-20179010848,THEFT UNDER - BICYCLE,2017-07-16T00:00:00,2017,July,Sunday,16,197,0,2017-07-23T00:00:00,2017,July,Sunday,23,204,0,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,CLASSIC,RG,3,DBL,664.0,STOLEN,7973,"{'type': 'Point', 'coordinates': (-79.35576206, 43.65652566)}"
-7975,974,GO-20179011025,THEFT UNDER - BICYCLE,2017-07-25T00:00:00,2017,July,Tuesday,25,206,9,2017-07-25T00:00:00,2017,July,Tuesday,25,206,18,D51,Toronto,73,Moss Park (73),Universities / Colleges,Educational,SC,ONUS,MT,21,BLK,299.0,STOLEN,7974,"{'type': 'Point', 'coordinates': (-79.37065383, 43.65073186)}"
-7976,1033,GO-20179011500,THEFT UNDER - BICYCLE,2017-07-30T00:00:00,2017,July,Sunday,30,211,13,2017-08-01T00:00:00,2017,August,Tuesday,1,213,17,D51,Toronto,73,Moss Park (73),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,E-BREEZE,EL,30,TRQ,1499.0,STOLEN,7975,"{'type': 'Point', 'coordinates': (-79.37008264, 43.656162280000004)}"
-7977,1044,GO-20171368216,THEFT FROM MOTOR VEHICLE OVER,2017-07-29T00:00:00,2017,July,Saturday,29,210,7,2017-07-30T00:00:00,2017,July,Sunday,30,211,12,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CANNONDALE,HABIT,MT,20,GRN,5300.0,STOLEN,7976,"{'type': 'Point', 'coordinates': (-79.36738106, 43.65241212)}"
-7978,1071,GO-20179010875,MISCHIEF TO VEHICLE,2017-07-22T00:00:00,2017,July,Saturday,22,203,12,2017-07-23T00:00:00,2017,July,Sunday,23,204,18,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,PHANTOM 29,MT,21,SIL,550.0,STOLEN,7977,"{'type': 'Point', 'coordinates': (-79.36947164, 43.65865872)}"
-7979,1087,GO-20179011963,THEFT UNDER - BICYCLE,2017-08-04T00:00:00,2017,August,Friday,4,216,7,2017-08-08T00:00:00,2017,August,Tuesday,8,220,22,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,,OT,18,BLU,750.0,STOLEN,7979,"{'type': 'Point', 'coordinates': (-79.37008264, 43.656162280000004)}"
-7980,1159,GO-20179012524,THEFT UNDER - BICYCLE,2017-08-15T00:00:00,2017,August,Tuesday,15,227,23,2017-08-16T00:00:00,2017,August,Wednesday,16,228,9,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,THE KNIGHT,RG,1,GRY,350.0,STOLEN,7980,"{'type': 'Point', 'coordinates': (-79.36822197, 43.65127732)}"
-7981,1170,GO-20171421497,B&E,2017-08-04T00:00:00,2017,August,Friday,4,216,10,2017-08-07T00:00:00,2017,August,Monday,7,219,15,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,EAST SIDE COMPL,MT,21,,,STOLEN,7981,"{'type': 'Point', 'coordinates': (-79.37103886, 43.65160431)}"
-7982,1215,GO-20171526126,THEFT UNDER - BICYCLE,2017-08-23T00:00:00,2017,August,Wednesday,23,235,0,2017-08-23T00:00:00,2017,August,Wednesday,23,235,15,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,,MT,21,GRN,500.0,STOLEN,7982,"{'type': 'Point', 'coordinates': (-79.36947164, 43.65865872)}"
-7983,1216,GO-20171526126,THEFT UNDER - BICYCLE,2017-08-23T00:00:00,2017,August,Wednesday,23,235,0,2017-08-23T00:00:00,2017,August,Wednesday,23,235,15,D51,Toronto,73,Moss Park (73),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,,MT,10,BLK,150.0,STOLEN,7983,"{'type': 'Point', 'coordinates': (-79.36947164, 43.65865872)}"
-7984,1260,GO-20179013506,THEFT UNDER - BICYCLE,2017-08-22T00:00:00,2017,August,Tuesday,22,234,17,2017-08-28T00:00:00,2017,August,Monday,28,240,17,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,GTX-2,OT,21,RED,400.0,STOLEN,7984,"{'type': 'Point', 'coordinates': (-79.36738106, 43.65241212)}"
-7985,1333,GO-20179014187,THEFT UNDER,2017-09-07T00:00:00,2017,September,Thursday,7,250,9,2017-09-07T00:00:00,2017,September,Thursday,7,250,11,D51,Toronto,73,Moss Park (73),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,SC,TALIK,MT,24,BLK,600.0,STOLEN,7985,"{'type': 'Point', 'coordinates': (-79.37008264, 43.656162280000004)}"
-7986,1338,GO-20179014183,THEFT UNDER,2017-09-06T00:00:00,2017,September,Wednesday,6,249,22,2017-09-07T00:00:00,2017,September,Thursday,7,250,10,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,GARNEAU,TO,12,BLK,1500.0,STOLEN,7986,"{'type': 'Point', 'coordinates': (-79.37232549, 43.65152723)}"
-7987,1425,GO-20171688135,THEFT OF EBIKE UNDER $5000,2017-09-17T00:00:00,2017,September,Sunday,17,260,7,2017-09-17T00:00:00,2017,September,Sunday,17,260,17,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,SC,1,BLU,3000.0,STOLEN,7987,"{'type': 'Point', 'coordinates': (-79.36947164, 43.65865872)}"
-7988,1440,GO-20179015045,THEFT UNDER - BICYCLE,2017-09-14T00:00:00,2017,September,Thursday,14,257,11,2017-09-18T00:00:00,2017,September,Monday,18,261,12,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ROAM 2,TO,27,BLK,900.0,STOLEN,7988,"{'type': 'Point', 'coordinates': (-79.37065383, 43.65073186)}"
-7989,1456,GO-20179015182,THEFT UNDER - BICYCLE,2017-09-17T00:00:00,2017,September,Sunday,17,260,12,2017-09-19T00:00:00,2017,September,Tuesday,19,262,15,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,LONG HAUL TRUCK,TO,10,GRY,1498.0,STOLEN,7989,"{'type': 'Point', 'coordinates': (-79.36437279, 43.65212359)}"
-7990,1544,GO-20179015994,THEFT UNDER - BICYCLE,2017-09-27T00:00:00,2017,September,Wednesday,27,270,17,2017-09-28T00:00:00,2017,September,Thursday,28,271,11,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,OT,21,SIL,300.0,STOLEN,7990,"{'type': 'Point', 'coordinates': (-79.36597615, 43.65944077)}"
-7991,1581,GO-20179016370,THEFT UNDER - BICYCLE,2017-10-01T00:00:00,2017,October,Sunday,1,274,13,2017-10-03T00:00:00,2017,October,Tuesday,3,276,13,D51,Toronto,73,Moss Park (73),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,WHITE,RG,6,WHI,250.0,STOLEN,7991,"{'type': 'Point', 'coordinates': (-79.37008264, 43.656162280000004)}"
-7992,1600,GO-20179016613,THEFT UNDER - BICYCLE,2017-10-06T00:00:00,2017,October,Friday,6,279,12,2017-10-06T00:00:00,2017,October,Friday,6,279,16,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,RIVER SPORT,RG,21,BLK,450.0,STOLEN,7992,"{'type': 'Point', 'coordinates': (-79.37185641, 43.65351071)}"
-7993,1676,GO-20171885967,B&E W'INTENT,2017-10-13T00:00:00,2017,October,Friday,13,286,18,2017-10-18T00:00:00,2017,October,Wednesday,18,291,10,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,TREK,7.2 FX,TO,9,,500.0,STOLEN,7993,"{'type': 'Point', 'coordinates': (-79.37212433, 43.6633875)}"
-7994,1715,GO-20179017830,THEFT UNDER - BICYCLE,2017-10-21T00:00:00,2017,October,Saturday,21,294,21,2017-10-22T00:00:00,2017,October,Sunday,22,295,9,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,20,BLU,1500.0,STOLEN,7994,"{'type': 'Point', 'coordinates': (-79.36738106, 43.65241212)}"
-7995,1728,GO-20179017989,B&E,2017-10-23T00:00:00,2017,October,Monday,23,296,11,2017-10-23T00:00:00,2017,October,Monday,23,296,18,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,OT,SIRRUS COMP,RG,18,SIL,250.0,STOLEN,7995,"{'type': 'Point', 'coordinates': (-79.36859808, 43.65214811)}"
-7996,1734,GO-20179018051,THEFT UNDER - BICYCLE,2017-10-01T00:00:00,2017,October,Sunday,1,274,14,2017-10-24T00:00:00,2017,October,Tuesday,24,297,14,D51,Toronto,73,Moss Park (73),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,TOUGH ROAD SLR,RG,24,DBL,1069.0,STOLEN,7996,"{'type': 'Point', 'coordinates': (-79.37103886, 43.65160431)}"
-7997,1758,GO-20171957432,THEFT UNDER,2017-10-28T00:00:00,2017,October,Saturday,28,301,1,2017-10-29T00:00:00,2017,October,Sunday,29,302,9,D51,Toronto,73,Moss Park (73),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,SC,1,BLK,,STOLEN,7997,"{'type': 'Point', 'coordinates': (-79.36571619, 43.65533986)}"
-7998,1768,GO-20171964819,THEFT OVER - BICYCLE,2017-10-28T00:00:00,2017,October,Saturday,28,301,15,2017-10-30T00:00:00,2017,October,Monday,30,303,13,D51,Toronto,73,Moss Park (73),"Apartment (Rooming House, Condo)",Apartment,CERVELO,5,EL,27,BLK,10000.0,STOLEN,7998,"{'type': 'Point', 'coordinates': (-79.36701066, 43.65154726)}"
-7999,9356,GO-20159001611,THEFT UNDER,2015-03-28T00:00:00,2015,March,Saturday,28,87,12,2015-03-29T00:00:00,2015,March,Sunday,29,88,16,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,FJ,,RC,24,,300.0,STOLEN,7999,"{'type': 'Point', 'coordinates': (-79.37583535, 43.65495451)}"
-8000,9362,GO-2015548522,THEFT UNDER,2015-04-01T00:00:00,2015,April,Wednesday,1,91,23,2015-04-02T00:00:00,2015,April,Thursday,2,92,17,D51,Toronto,75,Church-Yonge Corridor (75),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,AGGRESSOR GT 3.,MT,21,ONGWHI,1200.0,STOLEN,8000,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-8001,9395,GO-2015612404,B&E,2015-04-13T00:00:00,2015,April,Monday,13,103,18,2015-04-13T00:00:00,2015,April,Monday,13,103,20,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GIANT,SPEED BIKE,MT,18,BLACK,1250.0,STOLEN,8001,"{'type': 'Point', 'coordinates': (-79.37872961, 43.654321780000004)}"
-8002,9396,GO-2015612404,B&E,2015-04-13T00:00:00,2015,April,Monday,13,103,18,2015-04-13T00:00:00,2015,April,Monday,13,103,20,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NORCO,CITY GLIDE,MT,8,BLUE,,STOLEN,8002,"{'type': 'Point', 'coordinates': (-79.37872961, 43.654321780000004)}"
-8003,9399,GO-20159001885,THEFT UNDER,2015-04-13T00:00:00,2015,April,Monday,13,103,9,2015-04-13T00:00:00,2015,April,Monday,13,103,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,700C HYBRID,RG,1,BLK,316.0,STOLEN,8003,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-8004,9418,GO-20159001990,THEFT UNDER,2014-09-04T00:00:00,2014,September,Thursday,4,247,10,2015-04-17T00:00:00,2015,April,Friday,17,107,10,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ANDANTE,TO,21,WHI,1600.0,STOLEN,8004,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-8005,9423,GO-20159002008,THEFT UNDER,2015-04-14T00:00:00,2015,April,Tuesday,14,104,8,2015-04-17T00:00:00,2015,April,Friday,17,107,21,D51,Toronto,75,Church-Yonge Corridor (75),Schools During Supervised Activity,Educational,TR,7.1 FX,MT,21,BLK,500.0,STOLEN,8005,"{'type': 'Point', 'coordinates': (-79.37783798, 43.66217202)}"
-8006,9486,GO-20159002303,THEFT UNDER,2015-04-16T00:00:00,2015,April,Thursday,16,106,7,2015-04-27T00:00:00,2015,April,Monday,27,117,13,D51,Toronto,75,Church-Yonge Corridor (75),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,,MT,18,OTH,900.0,STOLEN,8006,"{'type': 'Point', 'coordinates': (-79.37691204, 43.65291764)}"
-8007,9508,GO-2015731478,THEFT UNDER,2015-05-03T00:00:00,2015,May,Sunday,3,123,0,2015-05-03T00:00:00,2015,May,Sunday,3,123,1,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,,MT,6,GLDWHI,100.0,STOLEN,8007,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-8008,9529,GO-2015747870,THEFT UNDER,2015-05-05T00:00:00,2015,May,Tuesday,5,125,13,2015-05-05T00:00:00,2015,May,Tuesday,5,125,17,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,"OLD """"POLICE""""",OT,4,BLUCPR,,RECOVERED,8008,"{'type': 'Point', 'coordinates': (-79.37516377, 43.6518061)}"
-8009,9538,GO-20159002499,THEFT UNDER,2015-04-02T00:00:00,2015,April,Thursday,2,92,12,2015-05-06T00:00:00,2015,May,Wednesday,6,126,14,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,RA,CADENT,RG,7,BLK,,STOLEN,8009,"{'type': 'Point', 'coordinates': (-79.37585959, 43.66043919)}"
-8010,9539,GO-20159002499,THEFT UNDER,2015-04-02T00:00:00,2015,April,Thursday,2,92,12,2015-05-06T00:00:00,2015,May,Wednesday,6,126,14,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,UK,SPEEDSTER,RC,18,WHI,,STOLEN,8010,"{'type': 'Point', 'coordinates': (-79.37585959, 43.66043919)}"
-8011,9569,GO-2015800092,THEFT UNDER,2015-05-13T00:00:00,2015,May,Wednesday,13,133,18,2015-05-13T00:00:00,2015,May,Wednesday,13,133,19,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,MT,7,GRY,1625.0,STOLEN,8011,"{'type': 'Point', 'coordinates': (-79.37872961, 43.654321780000004)}"
-8012,9595,GO-2015820063,THEFT UNDER,2015-05-16T00:00:00,2015,May,Saturday,16,136,21,2015-05-17T00:00:00,2015,May,Sunday,17,137,1,D51,Toronto,75,Church-Yonge Corridor (75),"Open Areas (Lakes, Parks, Rivers)",Outside,EMMO,,EL,30,BLU,1645.0,STOLEN,8012,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-8013,23557,GO-20189022581,THEFT UNDER - BICYCLE,2018-07-14T00:00:00,2018,July,Saturday,14,195,19,2018-07-16T00:00:00,2018,July,Monday,16,197,12,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,BLK,400.0,STOLEN,8013,"{'type': 'Point', 'coordinates': (-79.37645102, 43.66797312)}"
-8014,9608,GO-20159002896,THEFT UNDER,2015-05-18T00:00:00,2015,May,Monday,18,138,16,2015-05-19T00:00:00,2015,May,Tuesday,19,139,17,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,5,BLK,0.0,STOLEN,8014,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-8015,9627,GO-20159002979,THEFT UNDER,2015-05-20T00:00:00,2015,May,Wednesday,20,140,19,2015-05-21T00:00:00,2015,May,Thursday,21,141,1,D52,Toronto,75,Church-Yonge Corridor (75),"Open Areas (Lakes, Parks, Rivers)",Outside,NO,INDIE 3,RG,18,YEL,800.0,STOLEN,8015,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-8016,9674,GO-20159003159,THEFT UNDER,2015-05-24T00:00:00,2015,May,Sunday,24,144,4,2015-05-28T00:00:00,2015,May,Thursday,28,148,12,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,OT,50,BLU,200.0,STOLEN,8016,"{'type': 'Point', 'coordinates': (-79.3823358, 43.67122103)}"
-8017,9680,GO-20159003178,THEFT UNDER,2015-05-28T00:00:00,2015,May,Thursday,28,148,17,2015-05-28T00:00:00,2015,May,Thursday,28,148,21,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,NO,,RC,16,WHI,1000.0,STOLEN,8017,"{'type': 'Point', 'coordinates': (-79.37781507, 43.65821091)}"
-8018,9685,GO-2015892409,THEFT UNDER,2015-05-26T00:00:00,2015,May,Tuesday,26,146,12,2015-05-28T00:00:00,2015,May,Thursday,28,148,16,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,,MT,21,BLU,700.0,STOLEN,8018,"{'type': 'Point', 'coordinates': (-79.37953592, 43.65629127)}"
-8019,9689,GO-2015906281,THEFT UNDER,2015-05-30T00:00:00,2015,May,Saturday,30,150,20,2015-05-30T00:00:00,2015,May,Saturday,30,150,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,OT,1,WHI,300.0,STOLEN,8019,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-8020,9712,GO-20159003279,THEFT UNDER,2015-05-24T00:00:00,2015,May,Sunday,24,144,9,2015-06-03T00:00:00,2015,June,Wednesday,3,154,13,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,GRATER,RG,8,BLK,699.0,STOLEN,8020,"{'type': 'Point', 'coordinates': (-79.37830573, 43.66310625)}"
-8021,9720,GO-20159003309,THEFT UNDER,2015-05-05T00:00:00,2015,May,Tuesday,5,125,14,2015-06-03T00:00:00,2015,June,Wednesday,3,154,15,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,OT,KUWAHARA FASTLA,MT,21,DBL,200.0,STOLEN,8021,"{'type': 'Point', 'coordinates': (-79.37827718, 43.65626242)}"
-8022,9753,GO-2015959886,THEFT UNDER,2015-06-05T00:00:00,2015,June,Friday,5,156,17,2015-06-08T00:00:00,2015,June,Monday,8,159,13,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,SCHWINN,NETWORK 2,RG,7,SIL,300.0,STOLEN,8022,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-8023,9763,GO-2015966212,THEFT UNDER,2015-06-05T00:00:00,2015,June,Friday,5,156,22,2015-06-09T00:00:00,2015,June,Tuesday,9,160,13,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,BRODIE,,OT,21,GRY,750.0,STOLEN,8023,"{'type': 'Point', 'coordinates': (-79.37872961, 43.654321780000004)}"
-8024,9774,GO-2015974356,B&E,2015-05-21T00:00:00,2015,May,Thursday,21,141,13,2015-06-10T00:00:00,2015,June,Wednesday,10,161,17,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,MARIN OR MARINO,,OT,3,GRN,1000.0,STOLEN,8024,"{'type': 'Point', 'coordinates': (-79.38491403, 43.66584039)}"
-8025,9780,GO-20159003527,THEFT UNDER,2015-06-05T00:00:00,2015,June,Friday,5,156,15,2015-06-11T00:00:00,2015,June,Thursday,11,162,15,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,RA,,RG,7,WHI,400.0,STOLEN,8025,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-8026,9783,GO-20159003534,THEFT UNDER,2015-06-06T00:00:00,2015,June,Saturday,6,157,22,2015-06-11T00:00:00,2015,June,Thursday,11,162,22,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,PULSE,EL,30,LGR,1000.0,STOLEN,8026,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-8027,9794,GO-2015968223,THEFT UNDER,2015-06-09T00:00:00,2015,June,Tuesday,9,160,12,2015-06-09T00:00:00,2015,June,Tuesday,9,160,19,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BRODIE,TESLA,OT,24,BLK,860.0,STOLEN,8027,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-8028,9820,GO-20151009369,THEFT UNDER,2015-06-14T00:00:00,2015,June,Sunday,14,165,9,2015-06-16T00:00:00,2015,June,Tuesday,16,167,9,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KHS,DEW,OT,21,BLK,450.0,STOLEN,8028,"{'type': 'Point', 'coordinates': (-79.38091931, 43.66572241)}"
-8029,9827,GO-20159003728,THEFT UNDER,2015-06-18T00:00:00,2015,June,Thursday,18,169,11,2015-06-18T00:00:00,2015,June,Thursday,18,169,21,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,1,BGE,400.0,STOLEN,8029,"{'type': 'Point', 'coordinates': (-79.37512219, 43.65330838)}"
-8030,9843,GO-20159003801,THEFT UNDER,2015-06-20T00:00:00,2015,June,Saturday,20,171,15,2015-06-21T00:00:00,2015,June,Sunday,21,172,12,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,TO,21,BLK,1200.0,STOLEN,8030,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-8031,9867,GO-20151065983,INCIDENT,2015-06-23T00:00:00,2015,June,Tuesday,23,174,19,2015-06-24T00:00:00,2015,June,Wednesday,24,175,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KONA,MTN BIKE,MT,21,BLUWHI,1500.0,STOLEN,8031,"{'type': 'Point', 'coordinates': (-79.38007115, 43.66369728000001)}"
-8032,9886,GO-20151077570,THEFT UNDER,2015-06-26T00:00:00,2015,June,Friday,26,177,11,2015-06-26T00:00:00,2015,June,Friday,26,177,16,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,,MT,18,BLU,900.0,STOLEN,8032,"{'type': 'Point', 'coordinates': (-79.37662709, 43.65297714)}"
-8033,9907,GO-20159004032,THEFT UNDER,2015-06-19T00:00:00,2015,June,Friday,19,170,15,2015-06-29T00:00:00,2015,June,Monday,29,180,19,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,GI,SEEK 3,MT,24,GRY,600.0,STOLEN,8033,"{'type': 'Point', 'coordinates': (-79.37781507, 43.65821091)}"
-8034,9910,GO-20159004048,THEFT UNDER,2015-06-26T00:00:00,2015,June,Friday,26,177,19,2015-06-29T00:00:00,2015,June,Monday,29,180,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EM,GT-80,EL,32,BLK,2000.0,STOLEN,8034,"{'type': 'Point', 'coordinates': (-79.38201616, 43.6683485)}"
-8035,9933,GO-20159004158,THEFT UNDER,2015-06-27T00:00:00,2015,June,Saturday,27,178,20,2015-07-03T00:00:00,2015,July,Friday,3,184,21,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,TR,1000,RC,24,BLK,1200.0,STOLEN,8035,"{'type': 'Point', 'coordinates': (-79.37734964, 43.66099991)}"
-8036,9963,GO-20159004304,THEFT UNDER,2015-07-06T00:00:00,2015,July,Monday,6,187,17,2015-07-08T00:00:00,2015,July,Wednesday,8,189,14,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SU,,RG,21,BLU,200.0,STOLEN,8036,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-8037,9968,GO-20159004315,THEFT UNDER,2015-07-07T00:00:00,2015,July,Tuesday,7,188,8,2015-07-08T00:00:00,2015,July,Wednesday,8,189,15,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,ESCAPE,RG,21,BLU,420.0,STOLEN,8037,"{'type': 'Point', 'coordinates': (-79.37669194, 43.64940479)}"
-8038,9993,GO-20151185183,THEFT UNDER,2015-07-12T00:00:00,2015,July,Sunday,12,193,21,2015-07-13T00:00:00,2015,July,Monday,13,194,10,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,URBAN,EL,0,WHI,,STOLEN,8038,"{'type': 'Point', 'coordinates': (-79.38159830000001, 43.66737287)}"
-8039,10025,GO-20159004604,THEFT UNDER,2015-07-15T00:00:00,2015,July,Wednesday,15,196,15,2015-07-16T00:00:00,2015,July,Thursday,16,197,0,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,27,GRY,0.0,STOLEN,8039,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-8040,10029,GO-20159004609,THEFT UNDER,2015-07-16T00:00:00,2015,July,Thursday,16,197,8,2015-07-16T00:00:00,2015,July,Thursday,16,197,9,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,UK,DE VINCI,RG,21,DBL,700.0,STOLEN,8040,"{'type': 'Point', 'coordinates': (-79.37953592, 43.65629127)}"
-8041,10072,GO-20151237139,THEFT UNDER,2015-07-20T00:00:00,2015,July,Monday,20,201,16,2015-07-20T00:00:00,2015,July,Monday,20,201,18,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,ULTIMATE,PLATINUM,SC,0,BLK,3000.0,STOLEN,8041,"{'type': 'Point', 'coordinates': (-79.38159830000001, 43.66737287)}"
-8042,10077,GO-20151261342,THEFT UNDER,2015-07-11T00:00:00,2015,July,Saturday,11,192,19,2015-07-12T00:00:00,2015,July,Sunday,12,193,11,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KHS,,MT,26,BLK,800.0,STOLEN,8042,"{'type': 'Point', 'coordinates': (-79.37796823, 43.66213714)}"
-8043,10095,GO-20159004961,THEFT UNDER,2015-07-23T00:00:00,2015,July,Thursday,23,204,12,2015-07-25T00:00:00,2015,July,Saturday,25,206,0,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RA,MOUNTAIN BIKE,MT,18,BLK,100.0,STOLEN,8043,"{'type': 'Point', 'coordinates': (-79.38245382, 43.66941071)}"
-8044,10096,GO-20159004980,THEFT UNDER,2015-06-24T00:00:00,2015,June,Wednesday,24,175,12,2015-07-25T00:00:00,2015,July,Saturday,25,206,16,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,RM,TEKTRO R350 BRA,RC,1,BLK,250.0,STOLEN,8044,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-8045,10116,GO-20151276950,THEFT UNDER,2015-07-26T00:00:00,2015,July,Sunday,26,207,14,2015-07-26T00:00:00,2015,July,Sunday,26,207,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,GT80,EL,1,BLK,1700.0,STOLEN,8045,"{'type': 'Point', 'coordinates': (-79.38201616, 43.6683485)}"
-8046,10132,GO-20151286630,THEFT UNDER,2015-07-27T00:00:00,2015,July,Monday,27,208,16,2015-07-28T00:00:00,2015,July,Tuesday,28,209,2,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,STATE,STATE BICYCLE,OT,6,WHI,450.0,STOLEN,8046,"{'type': 'Point', 'coordinates': (-79.38501192, 43.66606363)}"
-8047,10144,GO-20159005151,THEFT UNDER,2015-07-28T00:00:00,2015,July,Tuesday,28,209,2,2015-07-30T00:00:00,2015,July,Thursday,30,211,14,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GI,2014 TEMPT,MT,24,,575.0,STOLEN,8047,"{'type': 'Point', 'coordinates': (-79.38530036, 43.66669498)}"
-8048,10187,GO-20151353861,THEFT UNDER,2015-08-02T00:00:00,2015,August,Sunday,2,214,13,2015-08-07T00:00:00,2015,August,Friday,7,219,18,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,,MT,21,WHI,400.0,STOLEN,8048,"{'type': 'Point', 'coordinates': (-79.37758587, 43.65456447)}"
-8049,10231,GO-20159005593,THEFT UNDER,2015-08-09T00:00:00,2015,August,Sunday,9,221,14,2015-08-10T00:00:00,2015,August,Monday,10,222,14,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,MT,21,WHI,500.0,STOLEN,8049,"{'type': 'Point', 'coordinates': (-79.37953592, 43.65629127)}"
-8050,10258,GO-20159005737,B&E,2015-07-21T00:00:00,2015,July,Tuesday,21,202,10,2015-08-16T00:00:00,2015,August,Sunday,16,228,10,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GI,TCR 1,RC,20,BLK,2400.0,STOLEN,8050,"{'type': 'Point', 'coordinates': (-79.38245382, 43.66941071)}"
-8051,10304,GO-20159005995,THEFT UNDER,2015-08-18T00:00:00,2015,August,Tuesday,18,230,19,2015-08-18T00:00:00,2015,August,Tuesday,18,230,19,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EM,,EL,30,BLK,1500.0,STOLEN,8051,"{'type': 'Point', 'coordinates': (-79.37585959, 43.66043919)}"
-8052,10311,GO-20159006068,THEFT UNDER,2015-08-20T00:00:00,2015,August,Thursday,20,232,10,2015-08-20T00:00:00,2015,August,Thursday,20,232,14,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,MT,10,BLK,700.0,STOLEN,8052,"{'type': 'Point', 'coordinates': (-79.37840051, 43.66333422)}"
-8053,10315,GO-20159006102,THEFT UNDER,2015-08-20T00:00:00,2015,August,Thursday,20,232,14,2015-08-20T00:00:00,2015,August,Thursday,20,232,22,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EM,EMMO GT5,EL,32,RED,1000.0,STOLEN,8053,"{'type': 'Point', 'coordinates': (-79.38091931, 43.66572241)}"
-8054,10329,GO-20151468213,THEFT UNDER,2015-08-17T00:00:00,2015,August,Monday,17,229,9,2015-08-26T00:00:00,2015,August,Wednesday,26,238,9,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,,OT,0,BLKPLE,800.0,STOLEN,8054,"{'type': 'Point', 'coordinates': (-79.38607321, 43.66863079)}"
-8055,10333,GO-20151478704,THEFT UNDER,2015-08-23T00:00:00,2015,August,Sunday,23,235,14,2015-08-27T00:00:00,2015,August,Thursday,27,239,22,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,MT,24,DBL,350.0,STOLEN,8055,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-8056,10343,GO-20159006344,THEFT UNDER,2015-08-23T00:00:00,2015,August,Sunday,23,235,21,2015-08-24T00:00:00,2015,August,Monday,24,236,14,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,1.1 ONE,RC,12,,999.0,STOLEN,8056,"{'type': 'Point', 'coordinates': (-79.38638506, 43.669368250000005)}"
-8057,10349,GO-20159006408,THEFT UNDER,2015-08-25T00:00:00,2015,August,Tuesday,25,237,17,2015-08-25T00:00:00,2015,August,Tuesday,25,237,19,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RG,21,BLK,0.0,STOLEN,8057,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-8058,10350,GO-20159006418,THEFT UNDER,2015-08-24T00:00:00,2015,August,Monday,24,236,10,2015-08-25T00:00:00,2015,August,Tuesday,25,237,22,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,MIXTE 3,RG,3,MRN,700.0,STOLEN,8058,"{'type': 'Point', 'coordinates': (-79.37642159, 43.65482917)}"
-8059,10369,GO-20151511916,THEFT UNDER,2015-08-27T00:00:00,2015,August,Thursday,27,239,16,2015-09-02T00:00:00,2015,September,Wednesday,2,245,7,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DAYMAC,TORINO,EL,1,BLU,900.0,STOLEN,8059,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-8060,10379,GO-20151511947,THEFT UNDER,2015-08-28T00:00:00,2015,August,Friday,28,240,17,2015-09-02T00:00:00,2015,September,Wednesday,2,245,7,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,6.3,MT,24,BLKRED,560.0,STOLEN,8060,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-8061,10383,GO-20159006606,THEFT UNDER,2015-08-28T00:00:00,2015,August,Friday,28,240,8,2015-09-01T00:00:00,2015,September,Tuesday,1,244,13,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,OCHO,RG,8,BLK,1150.0,STOLEN,8061,"{'type': 'Point', 'coordinates': (-79.37600691000002, 43.64815434)}"
-8062,10400,GO-20159006742,THEFT UNDER,2015-09-04T00:00:00,2015,September,Friday,4,247,10,2015-09-04T00:00:00,2015,September,Friday,4,247,12,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,EM,,EL,1,MRN,1000.0,STOLEN,8062,"{'type': 'Point', 'coordinates': (-79.37700237, 43.66017519)}"
-8063,10405,GO-20159006763,THEFT UNDER,2015-09-01T00:00:00,2015,September,Tuesday,1,244,23,2015-09-04T00:00:00,2015,September,Friday,4,247,15,D51,Toronto,75,Church-Yonge Corridor (75),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,QUICK CX3,MT,18,WHI,972.0,STOLEN,8063,"{'type': 'Point', 'coordinates': (-79.38159830000001, 43.66737287)}"
-8064,10408,GO-20159006778,THEFT UNDER,2015-09-04T00:00:00,2015,September,Friday,4,247,21,2015-09-05T00:00:00,2015,September,Saturday,5,248,11,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RC,10,RED,0.0,STOLEN,8064,"{'type': 'Point', 'coordinates': (-79.37652171000002, 43.65664882)}"
-8065,10413,GO-20159006816,THEFT UNDER,2015-07-17T00:00:00,2015,July,Friday,17,198,13,2015-09-06T00:00:00,2015,September,Sunday,6,249,13,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,CC,PRESTO,RC,21,SIL,400.0,STOLEN,8065,"{'type': 'Point', 'coordinates': (-79.37827718, 43.65626242)}"
-8066,10566,GO-20159007931,THEFT UNDER,2015-09-10T00:00:00,2015,September,Thursday,10,253,17,2015-09-29T00:00:00,2015,September,Tuesday,29,272,17,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,IH,,MT,21,BLU,250.0,STOLEN,8073,"{'type': 'Point', 'coordinates': (-79.38091931, 43.66572241)}"
-8067,10436,GO-20159006922,THEFT UNDER,2015-09-09T00:00:00,2015,September,Wednesday,9,252,16,2015-09-09T00:00:00,2015,September,Wednesday,9,252,19,D51,Toronto,75,Church-Yonge Corridor (75),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,GF,,RG,6,SIL,200.0,STOLEN,8066,"{'type': 'Point', 'coordinates': (-79.37691204, 43.65291764)}"
-8068,10449,GO-20151562567,THEFT UNDER,2015-09-10T00:00:00,2015,September,Thursday,10,253,9,2015-09-10T00:00:00,2015,September,Thursday,10,253,9,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,MOUNTAIN,MT,21,BLK,,STOLEN,8067,"{'type': 'Point', 'coordinates': (-79.37652171000002, 43.65664882)}"
-8069,10466,GO-20159007193,THEFT UNDER,2015-09-14T00:00:00,2015,September,Monday,14,257,16,2015-09-14T00:00:00,2015,September,Monday,14,257,20,D51,Toronto,75,Church-Yonge Corridor (75),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,RM,TRAILHEAD,MT,27,DGR,500.0,STOLEN,8068,"{'type': 'Point', 'coordinates': (-79.37691204, 43.65291764)}"
-8070,10471,GO-20159007205,THEFT UNDER,2015-09-14T00:00:00,2015,September,Monday,14,257,18,2015-09-15T00:00:00,2015,September,Tuesday,15,258,0,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,CADILLAC,EL,1,BLK,4000.0,STOLEN,8069,"{'type': 'Point', 'coordinates': (-79.37700237, 43.66017519)}"
-8071,10482,GO-20151615181,THEFT UNDER,2015-09-17T00:00:00,2015,September,Thursday,17,260,22,2015-09-18T00:00:00,2015,September,Friday,18,261,14,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,STINGER,,EL,0,BLU,400.0,STOLEN,8070,"{'type': 'Point', 'coordinates': (-79.38521897, 43.66654709)}"
-8072,10508,GO-20159007489,THEFT UNDER,2015-09-20T00:00:00,2015,September,Sunday,20,263,22,2015-09-21T00:00:00,2015,September,Monday,21,264,8,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,UK,LAKESHORE,RG,1,ONG,569.0,STOLEN,8071,"{'type': 'Point', 'coordinates': (-79.37867256, 43.6639886)}"
-8073,10536,GO-20159007662,THEFT UNDER,2015-09-09T00:00:00,2015,September,Wednesday,9,252,11,2015-09-23T00:00:00,2015,September,Wednesday,23,266,22,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GF,ZEBRANO,MT,21,BLK,500.0,STOLEN,8072,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-8074,6641,GO-20209017751,THEFT UNDER,2020-07-16T00:00:00,2020,July,Thursday,16,198,17,2020-07-16T00:00:00,2020,July,Thursday,16,198,22,D51,Toronto,75,Church-Yonge Corridor (75),Homeless Shelter / Mission,Other,UK,,MT,6,RED,0.0,STOLEN,8162,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-8075,10594,GO-20159008193,THEFT UNDER,2015-10-02T00:00:00,2015,October,Friday,2,275,14,2015-10-05T00:00:00,2015,October,Monday,5,278,15,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GT,GT TRANSEO 4.0,MT,24,SIL,550.0,STOLEN,8074,"{'type': 'Point', 'coordinates': (-79.38201616, 43.6683485)}"
-8076,10595,GO-20159008193,THEFT UNDER,2015-10-02T00:00:00,2015,October,Friday,2,275,14,2015-10-05T00:00:00,2015,October,Monday,5,278,15,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GT,GT TRANSEO 4.0,MT,24,BLU,550.0,STOLEN,8075,"{'type': 'Point', 'coordinates': (-79.38201616, 43.6683485)}"
-8077,10601,GO-20151726291,THEFT UNDER,2015-10-06T00:00:00,2015,October,Tuesday,6,279,17,2015-10-06T00:00:00,2015,October,Tuesday,6,279,17,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,,MT,6,BLK,300.0,STOLEN,8076,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-8078,10611,GO-20151742974,THEFT UNDER,2015-10-08T00:00:00,2015,October,Thursday,8,281,17,2015-10-09T00:00:00,2015,October,Friday,9,282,12,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,S/N YORKVILLE,OT,10,,520.0,STOLEN,8077,"{'type': 'Point', 'coordinates': (-79.3771082, 43.65650088)}"
-8079,10618,GO-20159008461,THEFT UNDER,2015-10-11T00:00:00,2015,October,Sunday,11,284,11,2015-10-12T00:00:00,2015,October,Monday,12,285,16,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GF,ZEBRANO,MT,24,,300.0,STOLEN,8078,"{'type': 'Point', 'coordinates': (-79.38132262, 43.6667026)}"
-8080,10625,GO-20159008505,THEFT UNDER,2015-08-28T00:00:00,2015,August,Friday,28,240,2,2015-10-14T00:00:00,2015,October,Wednesday,14,287,2,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,SU,,RG,3,BLU,0.0,STOLEN,8079,"{'type': 'Point', 'coordinates': (-79.38007115, 43.66369728000001)}"
-8081,10628,GO-20159008522,THEFT UNDER,2015-10-14T00:00:00,2015,October,Wednesday,14,287,9,2015-10-14T00:00:00,2015,October,Wednesday,14,287,20,D51,Toronto,75,Church-Yonge Corridor (75),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,MIXTE,RC,12,BLU,550.0,STOLEN,8080,"{'type': 'Point', 'coordinates': (-79.3749313, 43.65514877)}"
-8082,10633,GO-20151778468,B&E,2015-10-14T00:00:00,2015,October,Wednesday,14,287,0,2015-10-15T00:00:00,2015,October,Thursday,15,288,17,D51,Toronto,75,Church-Yonge Corridor (75),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,TOURING,TO,12,GRYRED,1200.0,STOLEN,8081,"{'type': 'Point', 'coordinates': (-79.38159830000001, 43.66737287)}"
-8083,10635,GO-20151780154,THEFT UNDER,2015-10-15T00:00:00,2015,October,Thursday,15,288,16,2015-10-15T00:00:00,2015,October,Thursday,15,288,23,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KONA,FIREMOUNTAIN,MT,18,RED,500.0,STOLEN,8082,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-8084,10636,GO-20159008594,THEFT UNDER,2015-10-15T00:00:00,2015,October,Thursday,15,288,15,2015-10-16T00:00:00,2015,October,Friday,16,289,10,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,VITA,RG,8,PLE,750.0,STOLEN,8083,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-8085,10666,GO-20159008852,THEFT UNDER,2015-10-21T00:00:00,2015,October,Wednesday,21,294,17,2015-10-21T00:00:00,2015,October,Wednesday,21,294,19,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RM,WHISTLER 50,RG,21,RED,0.0,STOLEN,8084,"{'type': 'Point', 'coordinates': (-79.3774505, 43.65131026)}"
-8086,10680,GO-20159008904,THEFT UNDER,2015-10-20T00:00:00,2015,October,Tuesday,20,293,19,2015-10-22T00:00:00,2015,October,Thursday,22,295,20,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,UK,BLACK SOLARIS,OT,18,,200.0,STOLEN,8085,"{'type': 'Point', 'coordinates': (-79.37700237, 43.66017519)}"
-8087,10693,GO-20151848396,B&E,2015-10-20T00:00:00,2015,October,Tuesday,20,293,0,2015-10-27T00:00:00,2015,October,Tuesday,27,300,16,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,RIDLEY,,OT,12,WHI,1000.0,STOLEN,8086,"{'type': 'Point', 'coordinates': (-79.38201616, 43.6683485)}"
-8088,10704,GO-20159009155,THEFT UNDER,2015-10-29T00:00:00,2015,October,Thursday,29,302,13,2015-10-29T00:00:00,2015,October,Thursday,29,302,18,D51,Toronto,75,Church-Yonge Corridor (75),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,,TO,7,LGR,250.0,STOLEN,8087,"{'type': 'Point', 'coordinates': (-79.37771935, 43.65196319)}"
-8089,10722,GO-20151889720,B&E,2015-10-14T00:00:00,2015,October,Wednesday,14,287,9,2015-11-03T00:00:00,2015,November,Tuesday,3,307,12,D51,Toronto,75,Church-Yonge Corridor (75),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,TCR COMPOSITE,RC,28,BLUWHI,3500.0,STOLEN,8088,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-8090,10746,GO-20159009614,THEFT UNDER,2015-10-10T00:00:00,2015,October,Saturday,10,283,6,2015-11-10T00:00:00,2015,November,Tuesday,10,314,18,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CC,PRESTO,RC,21,WHI,500.0,STOLEN,8089,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-8091,10767,GO-20159009708,THEFT UNDER,2015-10-23T00:00:00,2015,October,Friday,23,296,12,2015-11-13T00:00:00,2015,November,Friday,13,317,17,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,TR,LEXA,RC,12,BLK,2240.0,STOLEN,8090,"{'type': 'Point', 'coordinates': (-79.37516377, 43.6518061)}"
-8092,10780,GO-20151973485,THEFT OF MOTOR VEHICLE,2015-11-17T00:00:00,2015,November,Tuesday,17,321,12,2015-11-17T00:00:00,2015,November,Tuesday,17,321,14,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,ROCKY MOUNTAIN,,EL,6,,800.0,UNKNOWN,8091,"{'type': 'Point', 'coordinates': (-79.38091931, 43.66572241)}"
-8093,10788,GO-20151972368,THEFT UNDER,2015-11-17T00:00:00,2015,November,Tuesday,17,321,10,2015-11-17T00:00:00,2015,November,Tuesday,17,321,11,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,E-BREEZE,EL,1,BLU,1900.0,STOLEN,8092,"{'type': 'Point', 'coordinates': (-79.38581622, 43.66799576)}"
-8094,10791,GO-20159009918,THEFT UNDER,2015-11-17T00:00:00,2015,November,Tuesday,17,321,16,2015-11-19T00:00:00,2015,November,Thursday,19,323,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,CITY GLIDE,RG,1,BLK,500.0,STOLEN,8093,"{'type': 'Point', 'coordinates': (-79.38063454, 43.65577409)}"
-8095,10806,GO-20159010123,THEFT UNDER,2015-11-23T00:00:00,2015,November,Monday,23,327,18,2015-11-23T00:00:00,2015,November,Monday,23,327,23,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,VFR 3,RG,1,GRY,500.0,STOLEN,8094,"{'type': 'Point', 'coordinates': (-79.38063454, 43.65577409)}"
-8096,10819,GO-20152033300,THEFT UNDER,2015-11-25T00:00:00,2015,November,Wednesday,25,329,17,2015-11-27T00:00:00,2015,November,Friday,27,331,8,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,730,OT,24,RED,600.0,STOLEN,8095,"{'type': 'Point', 'coordinates': (-79.37721761, 43.65831575)}"
-8097,10843,GO-20159010596,THEFT UNDER,2015-12-07T00:00:00,2015,December,Monday,7,341,11,2015-12-07T00:00:00,2015,December,Monday,7,341,22,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,OT,,RG,21,BLU,300.0,STOLEN,8096,"{'type': 'Point', 'coordinates': (-79.37781507, 43.65821091)}"
-8098,10848,GO-20159010675,THEFT UNDER,2015-09-07T00:00:00,2015,September,Monday,7,250,14,2015-09-14T00:00:00,2015,September,Monday,14,257,14,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,LEGATO,MT,21,,800.0,STOLEN,8097,"{'type': 'Point', 'coordinates': (-79.37900573, 43.66793407)}"
-8099,10854,GO-20142449314,THEFT OVER,2014-07-07T00:00:00,2014,July,Monday,7,188,12,2014-07-07T00:00:00,2014,July,Monday,7,188,16,D51,Toronto,75,Church-Yonge Corridor (75),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,SPECIALIZED,TRICROSS EXPERT,RC,0,REWHI,5000.0,STOLEN,8098,"{'type': 'Point', 'coordinates': (-79.37691204, 43.65291764)}"
-8100,10868,GO-20152120942,THEFT OVER,2015-12-10T00:00:00,2015,December,Thursday,10,344,18,2015-12-11T00:00:00,2015,December,Friday,11,345,8,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,SUBURBAN,MT,1,BLKWHI,5500.0,STOLEN,8099,"{'type': 'Point', 'coordinates': (-79.37700237, 43.66017519)}"
-8101,7820,GO-20141856259,THEFT UNDER,2014-04-09T00:00:00,2014,April,Wednesday,9,99,10,2014-04-09T00:00:00,2014,April,Wednesday,9,99,10,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,,EL,1,WHIBLU,,UNKNOWN,8100,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-8102,3113,GO-20189025493,THEFT UNDER - BICYCLE,2018-08-04T00:00:00,2018,August,Saturday,4,216,23,2018-08-08T00:00:00,2018,August,Wednesday,8,220,7,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MA,"18.5"""" P. TRAIL",MT,18,RED,800.0,STOLEN,8101,"{'type': 'Point', 'coordinates': (-79.37830573, 43.66310625)}"
-8103,5821,GO-20209001261,THEFT UNDER,2019-10-20T00:00:00,2019,October,Sunday,20,293,0,2020-01-11T00:00:00,2020,January,Saturday,11,11,18,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,,RG,27,BLK,1050.0,STOLEN,8102,"{'type': 'Point', 'coordinates': (-79.37849549, 43.65985781)}"
-8104,16988,GO-20179016465,THEFT UNDER,2017-10-02T00:00:00,2017,October,Monday,2,275,19,2017-10-04T00:00:00,2017,October,Wednesday,4,277,17,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,GI,TALON 2,MT,21,GRY,1200.0,STOLEN,8103,"{'type': 'Point', 'coordinates': (-79.37279145, 43.66924446)}"
-8105,4520,GO-20199019040,THEFT UNDER,2019-06-17T00:00:00,2019,June,Monday,17,168,21,2019-06-18T00:00:00,2019,June,Tuesday,18,169,3,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,GREEN CRUISER 7,FO,7,SIL,290.0,STOLEN,8104,"{'type': 'Point', 'coordinates': (-79.38091931, 43.66572241)}"
-8106,1318,GO-20179014033,THEFT UNDER,2017-09-05T00:00:00,2017,September,Tuesday,5,248,9,2017-09-05T00:00:00,2017,September,Tuesday,5,248,14,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,SU,,MT,12,PLE,500.0,STOLEN,8105,"{'type': 'Point', 'coordinates': (-79.37516377, 43.6518061)}"
-8107,23604,GO-2015906689,THEFT UNDER,2015-05-23T00:00:00,2015,May,Saturday,23,143,21,2015-05-30T00:00:00,2015,May,Saturday,30,150,21,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CANNONDALE,BAD BOY,OT,27,BLK,2000.0,STOLEN,8106,"{'type': 'Point', 'coordinates': (-79.37620707000002, 43.67079259)}"
-8108,23624,GO-20159004303,THEFT UNDER,2015-07-08T00:00:00,2015,July,Wednesday,8,189,13,2015-07-08T00:00:00,2015,July,Wednesday,8,189,14,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,HYBRID,RG,8,WHI,600.0,STOLEN,8107,"{'type': 'Point', 'coordinates': (-79.3764768, 43.67145630000001)}"
-8109,23628,GO-20151238360,B&E,2015-07-20T00:00:00,2015,July,Monday,20,201,2,2015-07-20T00:00:00,2015,July,Monday,20,201,22,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,OTHER,MODE,MT,10,BLK,400.0,STOLEN,8108,"{'type': 'Point', 'coordinates': (-79.37513727, 43.66825437)}"
-8110,23634,GO-20159005316,THEFT UNDER,2015-04-27T00:00:00,2015,April,Monday,27,117,21,2015-08-04T00:00:00,2015,August,Tuesday,4,216,15,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,TR,ALLANT,RG,7,DBL,600.0,STOLEN,8109,"{'type': 'Point', 'coordinates': (-79.37646069, 43.66642862)}"
-8111,23656,GO-20151702268,THEFT UNDER,2015-10-02T00:00:00,2015,October,Friday,2,275,12,2015-10-02T00:00:00,2015,October,Friday,2,275,16,D51,Toronto,74,North St.James Town (74),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OTHER,CITY COMMUTER,EL,5,WHI,3000.0,STOLEN,8110,"{'type': 'Point', 'coordinates': (-79.37513727, 43.66825437)}"
-8112,23658,GO-20151707447,THEFT UNDER,2015-10-03T00:00:00,2015,October,Saturday,3,276,13,2015-10-03T00:00:00,2015,October,Saturday,3,276,13,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GARY FISHER,,MT,12,BLKYEL,200.0,STOLEN,8111,"{'type': 'Point', 'coordinates': (-79.3721682, 43.66763473)}"
-8113,23662,GO-20159008901,THEFT UNDER,2015-10-22T00:00:00,2015,October,Thursday,22,295,19,2015-10-23T00:00:00,2015,October,Friday,23,296,0,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,RG,27,BLK,350.0,STOLEN,8112,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-8114,1319,GO-20179014033,THEFT UNDER,2017-09-05T00:00:00,2017,September,Tuesday,5,248,9,2017-09-05T00:00:00,2017,September,Tuesday,5,248,14,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,RM,,MT,28,GRN,600.0,STOLEN,8113,"{'type': 'Point', 'coordinates': (-79.37516377, 43.6518061)}"
-8115,7822,GO-20141852381,THEFT UNDER,2014-04-08T00:00:00,2014,April,Tuesday,8,98,15,2014-04-08T00:00:00,2014,April,Tuesday,8,98,17,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,,OT,1,BLK,1300.0,STOLEN,8114,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-8116,23665,GO-20159009535,B&E,2015-10-18T00:00:00,2015,October,Sunday,18,291,14,2015-11-09T00:00:00,2015,November,Monday,9,313,10,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,,100.0,STOLEN,8115,"{'type': 'Point', 'coordinates': (-79.37645102, 43.66797312)}"
-8117,3129,GO-20181466020,THEFT UNDER - BICYCLE,2018-08-09T00:00:00,2018,August,Thursday,9,221,15,2018-08-09T00:00:00,2018,August,Thursday,9,221,18,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RALEIGH,,MT,10,BLU,150.0,STOLEN,8116,"{'type': 'Point', 'coordinates': (-79.3771082, 43.65650088)}"
-8118,5837,GO-2020100914,THEFT UNDER,2019-12-31T00:00:00,2019,December,Tuesday,31,365,15,2020-01-15T00:00:00,2020,January,Wednesday,15,15,13,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,OT,0,BLK,,STOLEN,8117,"{'type': 'Point', 'coordinates': (-79.37516377, 43.6518061)}"
-8119,1327,GO-20171615311,THEFT OVER - BICYCLE,2017-09-02T00:00:00,2017,September,Saturday,2,245,12,2017-09-07T00:00:00,2017,September,Thursday,7,250,9,D51,Toronto,75,Church-Yonge Corridor (75),"Single Home, House (Attach Garage, Cottage, Mobile)",House,LOOK,596,RC,1,BLKWHI,7000.0,STOLEN,8118,"{'type': 'Point', 'coordinates': (-79.37572376, 43.64746036)}"
-8120,7853,GO-20149002958,THEFT UNDER,2014-02-27T00:00:00,2014,February,Thursday,27,58,21,2014-04-22T00:00:00,2014,April,Tuesday,22,112,14,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,12,BLU,900.0,STOLEN,8119,"{'type': 'Point', 'coordinates': (-79.37734964, 43.66099991)}"
-8121,23672,GO-20152113918,B&E,2015-12-10T00:00:00,2015,December,Thursday,10,344,0,2015-12-10T00:00:00,2015,December,Thursday,10,344,7,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,E-BIKE,E-BIKE,OT,1,WHI,1000.0,STOLEN,8120,"{'type': 'Point', 'coordinates': (-79.37493677, 43.67129082)}"
-8122,3131,GO-20181466306,B&E,2018-08-08T00:00:00,2018,August,Wednesday,8,220,10,2018-08-09T00:00:00,2018,August,Thursday,9,221,20,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,CERVELO,,RC,0,YEL,2800.0,STOLEN,8121,"{'type': 'Point', 'coordinates': (-79.37583535, 43.65495451)}"
-8123,5846,GO-20209002528,THEFT UNDER,2019-09-01T00:00:00,2019,September,Sunday,1,244,0,2020-01-22T00:00:00,2020,January,Wednesday,22,22,9,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,40,WHI,1300.0,STOLEN,8122,"{'type': 'Point', 'coordinates': (-79.37516377, 43.6518061)}"
-8124,5849,GO-20209003005,THEFT UNDER,2020-01-20T00:00:00,2020,January,Monday,20,20,14,2020-01-25T00:00:00,2020,January,Saturday,25,25,14,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,YORKVILLE,RG,21,BLK,983.0,STOLEN,8123,"{'type': 'Point', 'coordinates': (-79.38201616, 43.6683485)}"
-8125,5871,GO-2020235203,THEFT UNDER,2020-01-12T00:00:00,2020,January,Sunday,12,12,16,2020-02-03T00:00:00,2020,February,Monday,3,34,10,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OTHER,,OT,8,BLK,1600.0,STOLEN,8124,"{'type': 'Point', 'coordinates': (-79.37639111, 43.64874921)}"
-8126,5905,GO-20209005905,THEFT UNDER,2020-02-12T00:00:00,2020,February,Wednesday,12,43,18,2020-02-18T00:00:00,2020,February,Tuesday,18,49,16,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,MEC MIDTOWN,OT,24,GRY,1100.0,STOLEN,8125,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-8127,5911,GO-20209005905,THEFT UNDER,2020-02-12T00:00:00,2020,February,Wednesday,12,43,18,2020-02-18T00:00:00,2020,February,Tuesday,18,49,16,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,MEC MIDTOWN,TO,24,GRY,1100.0,STOLEN,8126,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-8128,5913,GO-20209005905,THEFT UNDER,2020-02-12T00:00:00,2020,February,Wednesday,12,43,18,2020-02-18T00:00:00,2020,February,Tuesday,18,49,16,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,MEC MIDTOWN,TO,24,,1100.0,STOLEN,8127,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-8129,5922,GO-2020387852,THEFT UNDER,2020-02-23T00:00:00,2020,February,Sunday,23,54,0,2020-02-24T00:00:00,2020,February,Monday,24,55,2,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,OT,0,,,STOLEN,8128,"{'type': 'Point', 'coordinates': (-79.37869993, 43.65105518)}"
-8130,5947,GO-20209008109,THEFT UNDER,2020-03-07T00:00:00,2020,March,Saturday,7,67,16,2020-03-07T00:00:00,2020,March,Saturday,7,67,17,D52,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,,MT,21,GRY,260.0,STOLEN,8129,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-8131,5961,GO-20209008934,THEFT UNDER,2020-03-14T00:00:00,2020,March,Saturday,14,74,15,2020-03-14T00:00:00,2020,March,Saturday,14,74,16,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,PARATROUPER PRO,FO,24,BLK,1500.0,STOLEN,8130,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-8132,5963,GO-20209008958,THEFT UNDER,2020-03-08T00:00:00,2020,March,Sunday,8,68,23,2020-03-14T00:00:00,2020,March,Saturday,14,74,20,D51,Toronto,75,Church-Yonge Corridor (75),Homeless Shelter / Mission,Other,SU,,MT,18,GRY,80.0,STOLEN,8131,"{'type': 'Point', 'coordinates': (-79.37830693, 43.66628508)}"
-8133,6004,GO-20209010169,THEFT UNDER,2020-03-27T00:00:00,2020,March,Friday,27,87,17,2020-03-30T00:00:00,2020,March,Monday,30,90,17,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,7,,0.0,STOLEN,8132,"{'type': 'Point', 'coordinates': (-79.38091931, 43.66572241)}"
-8134,6008,GO-20209010245,THEFT UNDER,2020-03-24T00:00:00,2020,March,Tuesday,24,84,1,2020-04-01T00:00:00,2020,April,Wednesday,1,92,1,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,"SC 26"""" 1800 M",MT,18,BLK,110.0,STOLEN,8133,"{'type': 'Point', 'coordinates': (-79.37573379, 43.65316827000001)}"
-8135,6016,GO-2020646680,THEFT OVER,2020-03-31T00:00:00,2020,March,Tuesday,31,91,15,2020-04-02T00:00:00,2020,April,Thursday,2,93,11,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OTHER,HAKALUGGI,RC,20,BLK,8000.0,STOLEN,8134,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-8136,6047,GO-20209010895,THEFT UNDER,2020-04-08T00:00:00,2020,April,Wednesday,8,99,20,2020-04-11T00:00:00,2020,April,Saturday,11,102,12,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,CC,ANETTE,OT,6,WHI,250.0,STOLEN,8135,"{'type': 'Point', 'coordinates': (-79.38245382, 43.66941071)}"
-8137,6076,GO-20209011437,THEFT UNDER,2020-04-17T00:00:00,2020,April,Friday,17,108,23,2020-04-18T00:00:00,2020,April,Saturday,18,109,17,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,FJ,FEATHER,OT,30,BLK,650.0,STOLEN,8136,"{'type': 'Point', 'coordinates': (-79.38201616, 43.6683485)}"
-8138,6080,GO-20209011514,THEFT UNDER - BICYCLE,2020-04-18T00:00:00,2020,April,Saturday,18,109,16,2020-04-19T00:00:00,2020,April,Sunday,19,110,15,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,SU,,MT,18,BLU,150.0,STOLEN,8137,"{'type': 'Point', 'coordinates': (-79.38091931, 43.66572241)}"
-8139,4351,GO-20199016380,THEFT UNDER,2019-05-26T00:00:00,2019,May,Sunday,26,146,3,2019-05-26T00:00:00,2019,May,Sunday,26,146,20,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RG,1,MRN,200.0,STOLEN,8138,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-8140,6103,GO-20209011920,THEFT UNDER - BICYCLE,2020-04-22T00:00:00,2020,April,Wednesday,22,113,0,2020-04-25T00:00:00,2020,April,Saturday,25,116,14,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GI,13 ESCAPE 2 MED,RG,8,WHI,600.0,STOLEN,8139,"{'type': 'Point', 'coordinates': (-79.37652171000002, 43.65664882)}"
-8141,6157,GO-20209012722,THEFT UNDER,2020-05-08T00:00:00,2020,May,Friday,8,129,12,2020-05-08T00:00:00,2020,May,Friday,8,129,14,D51,Toronto,75,Church-Yonge Corridor (75),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,,MT,18,RED,100.0,STOLEN,8140,"{'type': 'Point', 'coordinates': (-79.37691204, 43.65291764)}"
-8142,6172,GO-20209013011,THEFT UNDER,2020-05-13T00:00:00,2020,May,Wednesday,13,134,6,2020-05-13T00:00:00,2020,May,Wednesday,13,134,7,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,DUTCHIE,RG,5,BGE,1200.0,STOLEN,8141,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-8143,6173,GO-20209013011,THEFT UNDER,2020-05-13T00:00:00,2020,May,Wednesday,13,134,6,2020-05-13T00:00:00,2020,May,Wednesday,13,134,7,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,NO,,RG,5,TRQ,1300.0,STOLEN,8142,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-8144,6200,GO-20209013353,THEFT UNDER,2020-05-17T00:00:00,2020,May,Sunday,17,138,10,2020-05-18T00:00:00,2020,May,Monday,18,139,11,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,ACCEL X 700C,RC,14,BLK,443.0,STOLEN,8143,"{'type': 'Point', 'coordinates': (-79.3823358, 43.67122103)}"
-8145,6308,GO-2020988521,THEFT OF EBIKE UNDER $5000,2020-05-28T00:00:00,2020,May,Thursday,28,149,21,2020-05-29T00:00:00,2020,May,Friday,29,150,7,D51,Toronto,75,Church-Yonge Corridor (75),"Single Home, House (Attach Garage, Cottage, Mobile)",House,EM,ZONE GTS,EL,32,WHI,3000.0,STOLEN,8144,"{'type': 'Point', 'coordinates': (-79.37543679, 43.65246584)}"
-8146,6334,GO-20209014859,THEFT UNDER,2020-06-06T00:00:00,2020,June,Saturday,6,158,2,2020-06-08T00:00:00,2020,June,Monday,8,160,14,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,SC,TOURING,TO,21,GRN,400.0,STOLEN,8145,"{'type': 'Point', 'coordinates': (-79.37971563, 43.66282598)}"
-8147,6348,GO-20201074169,THEFT UNDER - BICYCLE,2020-06-10T00:00:00,2020,June,Wednesday,10,162,19,2020-06-11T00:00:00,2020,June,Thursday,11,163,13,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GIANT,ANY ROAD,MT,21,BLK,1000.0,STOLEN,8146,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-8148,6374,GO-20209015298,THEFT UNDER,2020-06-07T00:00:00,2020,June,Sunday,7,159,18,2020-06-14T00:00:00,2020,June,Sunday,14,166,12,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM 2 DISC,RG,9,BLK,800.0,STOLEN,8147,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-8149,6384,GO-20209015328,THEFT UNDER,2020-06-13T00:00:00,2020,June,Saturday,13,165,20,2020-06-13T00:00:00,2020,June,Saturday,13,165,22,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,UK,,OT,3,BLK,1200.0,STOLEN,8148,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-8150,6396,GO-20209015436,THEFT UNDER,2020-06-15T00:00:00,2020,June,Monday,15,167,19,2020-06-15T00:00:00,2020,June,Monday,15,167,21,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,X8,FO,25,BLK,900.0,STOLEN,8149,"{'type': 'Point', 'coordinates': (-79.38411783, 43.66390399)}"
-8151,6403,GO-20209015483,THEFT UNDER,2020-06-13T00:00:00,2020,June,Saturday,13,165,18,2020-06-16T00:00:00,2020,June,Tuesday,16,168,19,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,BVLD,RG,1,BLK,395.0,STOLEN,8150,"{'type': 'Point', 'coordinates': (-79.37562599, 43.6568205)}"
-8152,6445,GO-20201153624,THEFT UNDER - BICYCLE,2020-06-22T00:00:00,2020,June,Monday,22,174,23,2020-06-23T00:00:00,2020,June,Tuesday,23,175,9,D51,Toronto,75,Church-Yonge Corridor (75),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,CROSSTRAIL,MT,24,GRY,1000.0,STOLEN,8151,"{'type': 'Point', 'coordinates': (-79.38159830000001, 43.66737287)}"
-8153,6462,GO-20201168913,THEFT OF EBIKE UNDER $5000,2020-06-25T00:00:00,2020,June,Thursday,25,177,11,2020-06-25T00:00:00,2020,June,Thursday,25,177,11,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,MADCAT,,EL,0,WHI,2500.0,STOLEN,8152,"{'type': 'Point', 'coordinates': (-79.37872961, 43.654321780000004)}"
-8154,6489,GO-20201168639,THEFT OF EBIKE UNDER $5000,2020-06-25T00:00:00,2020,June,Thursday,25,177,11,2020-06-25T00:00:00,2020,June,Thursday,25,177,11,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MAD CAT,UNK,EL,0,WHI,2500.0,STOLEN,8153,"{'type': 'Point', 'coordinates': (-79.37872961, 43.654321780000004)}"
-8155,6491,GO-20209016414,THEFT UNDER,2020-06-28T00:00:00,2020,June,Sunday,28,180,22,2020-06-29T00:00:00,2020,June,Monday,29,181,0,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,TREK FX - 2018,RG,7,GRY,0.0,STOLEN,8154,"{'type': 'Point', 'coordinates': (-79.38007115, 43.66369728000001)}"
-8156,4521,GO-20199019040,THEFT UNDER,2019-06-17T00:00:00,2019,June,Monday,17,168,21,2019-06-18T00:00:00,2019,June,Tuesday,18,169,3,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,GREEN CRUISER,FO,7,BLU,290.0,STOLEN,8155,"{'type': 'Point', 'coordinates': (-79.38091931, 43.66572241)}"
-8157,6506,GO-20209016488,THEFT UNDER,2020-06-26T00:00:00,2020,June,Friday,26,178,18,2020-06-29T00:00:00,2020,June,Monday,29,181,17,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,NO,VFR 4 20IN,RG,21,GRN,804.0,STOLEN,8156,"{'type': 'Point', 'coordinates': (-79.3749069, 43.65118528)}"
-8158,6507,GO-20209016488,THEFT UNDER,2020-06-26T00:00:00,2020,June,Friday,26,178,18,2020-06-29T00:00:00,2020,June,Monday,29,181,17,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE 2 DISC,RG,20,BLK,1100.0,STOLEN,8157,"{'type': 'Point', 'coordinates': (-79.3749069, 43.65118528)}"
-8159,6533,GO-20209016844,THEFT UNDER,2020-07-04T00:00:00,2020,July,Saturday,4,186,13,2020-07-04T00:00:00,2020,July,Saturday,4,186,16,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,2004 MADONE 5.9,RC,50,GRY,750.0,STOLEN,8158,"{'type': 'Point', 'coordinates': (-79.37843045, 43.65040714)}"
-8160,6558,GO-20201258583,B&E,2020-06-09T00:00:00,2020,June,Tuesday,9,161,16,2020-07-08T00:00:00,2020,July,Wednesday,8,190,12,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,TREK,FX SPORT,RG,20,DBLGRY,2486.0,STOLEN,8159,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-8161,6586,GO-20201284559,THEFT UNDER - BICYCLE,2020-07-09T00:00:00,2020,July,Thursday,9,191,17,2020-07-11T00:00:00,2020,July,Saturday,11,193,12,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,JAMIS,CODA,RC,21,GRYBLK,1000.0,STOLEN,8160,"{'type': 'Point', 'coordinates': (-79.37562599, 43.6568205)}"
-8162,6637,GO-20201322559,THEFT OF EBIKE UNDER $5000,2020-07-15T00:00:00,2020,July,Wednesday,15,197,18,2020-07-16T00:00:00,2020,July,Thursday,16,198,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NCM MOSCOW,,EL,1,BLKBLU,1650.0,STOLEN,8161,"{'type': 'Point', 'coordinates': (-79.38052643, 43.67161072)}"
-8163,6662,GO-20209017942,THEFT UNDER,2020-07-19T00:00:00,2020,July,Sunday,19,201,13,2020-07-19T00:00:00,2020,July,Sunday,19,201,14,D52,Toronto,75,Church-Yonge Corridor (75),Unknown,Other,UK,SKYWAY,RC,1,BLK,120.0,STOLEN,8163,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-8164,6698,GO-20209018178,THEFT UNDER,2020-07-21T00:00:00,2020,July,Tuesday,21,203,8,2020-07-21T00:00:00,2020,July,Tuesday,21,203,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,BALLAD,RG,8,MRN,1000.0,STOLEN,8164,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-8165,6789,GO-20201412424,THEFT OF EBIKE UNDER $5000,2020-07-29T00:00:00,2020,July,Wednesday,29,211,10,2020-07-29T00:00:00,2020,July,Wednesday,29,211,14,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,VADO 40,EL,1,BLKGRY,4900.0,STOLEN,8165,"{'type': 'Point', 'coordinates': (-79.38063454, 43.65577409)}"
-8166,6791,GO-20201407824,THEFT UNDER - BICYCLE,2020-07-24T00:00:00,2020,July,Friday,24,206,19,2020-07-28T00:00:00,2020,July,Tuesday,28,210,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,ELITE SERIES,OT,21,BLKBLU,800.0,STOLEN,8166,"{'type': 'Point', 'coordinates': (-79.37652171000002, 43.65664882)}"
-8167,6805,GO-20209018917,THEFT UNDER,2020-07-29T00:00:00,2020,July,Wednesday,29,211,15,2020-07-29T00:00:00,2020,July,Wednesday,29,211,18,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,,MT,8,PLE,800.0,STOLEN,8167,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-8168,6810,GO-20209018860,THEFT UNDER,2020-07-28T00:00:00,2020,July,Tuesday,28,210,19,2020-07-29T00:00:00,2020,July,Wednesday,29,211,9,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,DESIRE 2012,RG,8,TRQ,750.0,STOLEN,8168,"{'type': 'Point', 'coordinates': (-79.38201616, 43.6683485)}"
-8169,6833,GO-20209019116,THEFT UNDER,2020-07-29T00:00:00,2020,July,Wednesday,29,211,21,2020-07-31T00:00:00,2020,July,Friday,31,213,18,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,MA,SAN RAFAEL DS 1,RG,25,SIL,650.0,STOLEN,8169,"{'type': 'Point', 'coordinates': (-79.37883347, 43.66067091000001)}"
-8170,6838,GO-20209019140,THEFT UNDER,2020-07-31T00:00:00,2020,July,Friday,31,213,22,2020-08-01T00:00:00,2020,August,Saturday,1,214,11,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,CANNONDALE QUIC,MT,24,BLK,600.0,STOLEN,8170,"{'type': 'Point', 'coordinates': (-79.37583535, 43.65495451)}"
-8171,6935,GO-20209019907,THEFT UNDER,2020-08-07T00:00:00,2020,August,Friday,7,220,2,2020-08-11T00:00:00,2020,August,Tuesday,11,224,14,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,1,BLK,640.0,STOLEN,8171,"{'type': 'Point', 'coordinates': (-79.37830573, 43.66310625)}"
-8172,10316,GO-20159006110,THEFT UNDER,2015-08-21T00:00:00,2015,August,Friday,21,233,11,2015-08-21T00:00:00,2015,August,Friday,21,233,11,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,OT,SECTEUR,RG,18,BLK,899.0,STOLEN,8172,"{'type': 'Point', 'coordinates': (-79.37575001, 43.6696557)}"
-8173,16994,GO-20179017552,THEFT UNDER - BICYCLE,2017-10-18T00:00:00,2017,October,Wednesday,18,291,19,2017-10-18T00:00:00,2017,October,Wednesday,18,291,20,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KO,,MT,8,GRY,700.0,STOLEN,8173,"{'type': 'Point', 'coordinates': (-79.3721682, 43.66763473)}"
-8174,6947,GO-20209020042,THEFT UNDER,2020-08-12T00:00:00,2020,August,Wednesday,12,225,9,2020-08-12T00:00:00,2020,August,Wednesday,12,225,19,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,XT NITRO,MT,18,,400.0,STOLEN,8174,"{'type': 'Point', 'coordinates': (-79.37843045, 43.65040714)}"
-8175,6970,GO-20201547352,THEFT UNDER - BICYCLE,2020-08-16T00:00:00,2020,August,Sunday,16,229,19,2020-08-17T00:00:00,2020,August,Monday,17,230,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,MOSCO,MT,12,BLKBLU,1800.0,STOLEN,8175,"{'type': 'Point', 'coordinates': (-79.37883347, 43.66067091000001)}"
-8176,6986,GO-20209020526,THEFT UNDER - BICYCLE,2020-08-18T00:00:00,2020,August,Tuesday,18,231,18,2020-08-18T00:00:00,2020,August,Tuesday,18,231,22,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,ALIGHT,RG,21,BLU,570.0,STOLEN,8176,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-8177,7004,GO-20209020712,THEFT UNDER - BICYCLE,2020-08-19T00:00:00,2020,August,Wednesday,19,232,11,2020-08-19T00:00:00,2020,August,Wednesday,19,232,19,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,DAYTRIPPER,OT,3,BLU,500.0,RECOVERED,8177,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-8178,7029,GO-20209020931,THEFT UNDER,2020-08-21T00:00:00,2020,August,Friday,21,234,14,2020-08-21T00:00:00,2020,August,Friday,21,234,18,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,TR,TREK NAV 2.0 16,MT,30,,400.0,STOLEN,8178,"{'type': 'Point', 'coordinates': (-79.38245382, 43.66941071)}"
-8179,7035,GO-20209020960,THEFT UNDER,2020-08-21T00:00:00,2020,August,Friday,21,234,23,2020-08-22T00:00:00,2020,August,Saturday,22,235,2,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,UK,,RC,12,,0.0,STOLEN,8179,"{'type': 'Point', 'coordinates': (-79.37652171000002, 43.65664882)}"
-8180,7047,GO-20209020931,THEFT UNDER,2020-08-21T00:00:00,2020,August,Friday,21,234,14,2020-08-21T00:00:00,2020,August,Friday,21,234,18,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,TR,NAV 2.0,MT,30,GRY,400.0,STOLEN,8180,"{'type': 'Point', 'coordinates': (-79.38245382, 43.66941071)}"
-8181,7054,GO-20209021095,THEFT UNDER - BICYCLE,2020-08-24T00:00:00,2020,August,Monday,24,237,0,2020-08-24T00:00:00,2020,August,Monday,24,237,2,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,TR,DUAL SPORT 3 HY,MT,30,BLK,1000.0,STOLEN,8181,"{'type': 'Point', 'coordinates': (-79.38154682, 43.65790792)}"
-8182,7067,GO-20209021210,THEFT UNDER - BICYCLE,2020-08-20T00:00:00,2020,August,Thursday,20,233,16,2020-08-25T00:00:00,2020,August,Tuesday,25,238,2,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,INFINITE STEP T,EL,32,GRY,2500.0,STOLEN,8182,"{'type': 'Point', 'coordinates': (-79.38091931, 43.66572241)}"
-8183,7097,GO-20209021541,THEFT UNDER,2020-08-27T00:00:00,2020,August,Thursday,27,240,1,2020-08-27T00:00:00,2020,August,Thursday,27,240,15,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,NO,,RG,1,PLE,400.0,STOLEN,8183,"{'type': 'Point', 'coordinates': (-79.3749313, 43.65514877)}"
-8184,7110,GO-20209020526,THEFT UNDER - BICYCLE,2020-08-18T00:00:00,2020,August,Tuesday,18,231,18,2020-08-18T00:00:00,2020,August,Tuesday,18,231,22,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,ALIGHT 3,RG,21,BLU,570.0,STOLEN,8184,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-8185,7137,GO-20209021837,THEFT UNDER - BICYCLE,2020-08-30T00:00:00,2020,August,Sunday,30,243,19,2020-08-31T00:00:00,2020,August,Monday,31,244,10,D51,Toronto,75,Church-Yonge Corridor (75),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,NO,VER4 FORMA,TO,18,LGR,625.0,STOLEN,8185,"{'type': 'Point', 'coordinates': (-79.37691204, 43.65291764)}"
-8186,7149,GO-20209021998,THEFT UNDER,2020-08-31T00:00:00,2020,August,Monday,31,244,20,2020-09-01T00:00:00,2020,September,Tuesday,1,245,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,BM,1,BLU,1000.0,STOLEN,8186,"{'type': 'Point', 'coordinates': (-79.38530036, 43.66669498)}"
-8187,7158,GO-20209022096,THEFT UNDER,2020-08-29T00:00:00,2020,August,Saturday,29,242,5,2020-09-02T00:00:00,2020,September,Wednesday,2,246,12,D51,Toronto,75,Church-Yonge Corridor (75),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,PURE CITY THE A,RG,8,YEL,400.0,STOLEN,8187,"{'type': 'Point', 'coordinates': (-79.37900573, 43.66793407)}"
-8188,7160,GO-20209022119,THEFT UNDER,2020-09-02T00:00:00,2020,September,Wednesday,2,246,13,2020-09-02T00:00:00,2020,September,Wednesday,2,246,15,D51,Toronto,75,Church-Yonge Corridor (75),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,GI,,MT,18,GRY,1600.0,STOLEN,8188,"{'type': 'Point', 'coordinates': (-79.38530036, 43.66669498)}"
-8189,7183,GO-20201678540,THEFT OF EBIKE UNDER $5000,2020-08-30T00:00:00,2020,August,Sunday,30,243,18,2020-09-05T00:00:00,2020,September,Saturday,5,249,9,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,EMMO,VGO 4.0,EL,0,WHI,1800.0,STOLEN,8189,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-8190,7184,GO-20209022440,THEFT UNDER,2020-09-05T00:00:00,2020,September,Saturday,5,249,18,2020-09-05T00:00:00,2020,September,Saturday,5,249,18,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,,,RG,18,BLU,200.0,STOLEN,8190,"{'type': 'Point', 'coordinates': (-79.37827718, 43.65626242)}"
-8191,7198,GO-20209022549,THEFT UNDER,2020-09-07T00:00:00,2020,September,Monday,7,251,14,2020-09-07T00:00:00,2020,September,Monday,7,251,21,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,,RG,25,BLU,200.0,STOLEN,8191,"{'type': 'Point', 'coordinates': (-79.37452691, 43.65706649)}"
-8192,7205,GO-20209022652,THEFT FROM MOTOR VEHICLE UNDER,2020-09-07T00:00:00,2020,September,Monday,7,251,10,2020-09-08T00:00:00,2020,September,Tuesday,8,252,18,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,7,MRN,300.0,STOLEN,8192,"{'type': 'Point', 'coordinates': (-79.37639111, 43.64874921)}"
-8193,7209,GO-20201705252,B&E,2020-09-08T00:00:00,2020,September,Tuesday,8,252,17,2020-09-09T00:00:00,2020,September,Wednesday,9,253,11,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,OT,0,,,STOLEN,8193,"{'type': 'Point', 'coordinates': (-79.37267618, 43.65234821)}"
-8194,7213,GO-20209022719,THEFT UNDER,2020-09-08T00:00:00,2020,September,Tuesday,8,252,20,2020-09-09T00:00:00,2020,September,Wednesday,9,253,11,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,21,BLK,474.0,STOLEN,8194,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-8195,7222,GO-20209022851,THEFT UNDER - BICYCLE,2020-09-10T00:00:00,2020,September,Thursday,10,254,13,2020-09-10T00:00:00,2020,September,Thursday,10,254,16,D51,Toronto,75,Church-Yonge Corridor (75),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,SC,,MT,30,BLK,800.0,STOLEN,8195,"{'type': 'Point', 'coordinates': (-79.37691204, 43.65291764)}"
-8196,7223,GO-20209022833,THEFT UNDER,2020-09-04T00:00:00,2020,September,Friday,4,248,21,2020-09-10T00:00:00,2020,September,Thursday,10,254,23,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,CC,,MT,12,BLK,50.0,STOLEN,8196,"{'type': 'Point', 'coordinates': (-79.3823358, 43.67122103)}"
-8197,7257,GO-20209023372,THEFT UNDER - BICYCLE,2020-09-03T00:00:00,2020,September,Thursday,3,247,22,2020-09-16T00:00:00,2020,September,Wednesday,16,260,8,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,VFR 3 STEP THRU,RG,21,BLK,585.0,STOLEN,8197,"{'type': 'Point', 'coordinates': (-79.37971563, 43.66282598)}"
-8198,7282,GO-20209023691,THEFT UNDER,2020-09-18T00:00:00,2020,September,Friday,18,262,9,2020-09-18T00:00:00,2020,September,Friday,18,262,17,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,5,,600.0,STOLEN,8198,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-8199,7314,GO-20209023979,THEFT UNDER - BICYCLE,2020-09-16T00:00:00,2020,September,Wednesday,16,260,12,2020-09-21T00:00:00,2020,September,Monday,21,265,15,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,UK,(2000) ALLEZ A1,RC,18,WHI,600.0,STOLEN,8199,"{'type': 'Point', 'coordinates': (-79.37700237, 43.66017519)}"
-8200,7343,GO-20201804484,THEFT OF EBIKE UNDER $5000,2020-09-15T00:00:00,2020,September,Tuesday,15,259,21,2020-09-24T00:00:00,2020,September,Thursday,24,268,19,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,QUICK PLUS,EL,5,BLK,2580.0,STOLEN,8200,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-8201,7355,GO-20209024460,THEFT UNDER - BICYCLE,2020-09-25T00:00:00,2020,September,Friday,25,269,11,2020-09-25T00:00:00,2020,September,Friday,25,269,12,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,SC,61CM,TO,12,BLK,450.0,STOLEN,8201,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-8202,7739,GO-20141305317,THEFT UNDER,2014-01-05T00:00:00,2014,January,Sunday,5,5,23,2014-01-08T00:00:00,2014,January,Wednesday,8,8,15,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,VELOTEQ,SHOGT,EL,23,BLK,1800.0,STOLEN,8218,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-8203,7426,GO-20201907652,THEFT OF EBIKE UNDER $5000,2020-10-07T00:00:00,2020,October,Wednesday,7,281,19,2020-10-08T00:00:00,2020,October,Thursday,8,282,11,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OTHER,NCM MOSCOW,EL,7,BLKBLU,1899.0,UNKNOWN,8202,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-8204,7502,GO-20209022631,THEFT UNDER,2020-09-01T00:00:00,2020,September,Tuesday,1,245,1,2020-09-08T00:00:00,2020,September,Tuesday,8,252,15,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,OCHO 2015 XS,RG,8,GRY,1000.0,RECOVERED,8203,"{'type': 'Point', 'coordinates': (-79.37900573, 43.66793407)}"
-8205,7509,GO-20209026970,THEFT UNDER,2020-10-09T00:00:00,2020,October,Friday,9,283,10,2020-10-19T00:00:00,2020,October,Monday,19,293,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,EXCURSION HYBRI,RG,24,GRY,400.0,STOLEN,8204,"{'type': 'Point', 'coordinates': (-79.37633027, 43.65851354)}"
-8206,7524,GO-20209027327,THEFT UNDER,2020-10-21T00:00:00,2020,October,Wednesday,21,295,18,2020-10-22T00:00:00,2020,October,Thursday,22,296,14,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,1,RED,150.0,STOLEN,8205,"{'type': 'Point', 'coordinates': (-79.38612041000002, 43.66874221)}"
-8207,7527,GO-20209027370,THEFT UNDER - BICYCLE,2020-10-22T00:00:00,2020,October,Thursday,22,296,19,2020-10-22T00:00:00,2020,October,Thursday,22,296,19,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,TR,900,RG,21,WHI,200.0,STOLEN,8206,"{'type': 'Point', 'coordinates': (-79.37452691, 43.65706649)}"
-8208,7567,GO-20202051253,THEFT UNDER - BICYCLE,2020-10-19T00:00:00,2020,October,Monday,19,293,7,2020-10-29T00:00:00,2020,October,Thursday,29,303,9,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SC,MERIDIAN,TR,1,MRN,1000.0,STOLEN,8207,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-8209,7586,GO-20209028406,THEFT UNDER - BICYCLE,2020-10-30T00:00:00,2020,October,Friday,30,304,10,2020-11-02T00:00:00,2020,November,Monday,2,307,15,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,1,,0.0,STOLEN,8208,"{'type': 'Point', 'coordinates': (-79.38159830000001, 43.66737287)}"
-8210,7660,GO-20209030511,THEFT UNDER - BICYCLE,2020-11-24T00:00:00,2020,November,Tuesday,24,329,20,2020-11-25T00:00:00,2020,November,Wednesday,25,330,1,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,TR,,MT,7,BLK,500.0,STOLEN,8209,"{'type': 'Point', 'coordinates': (-79.38612041000002, 43.66874221)}"
-8211,7682,GO-20209031078,THEFT UNDER,2020-12-02T00:00:00,2020,December,Wednesday,2,337,18,2020-12-02T00:00:00,2020,December,Wednesday,2,337,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,DYNAMO,RG,8,WHI,0.0,STOLEN,8210,"{'type': 'Point', 'coordinates': (-79.38277088, 43.67016017)}"
-8212,7694,GO-20202310658,THEFT UNDER - BICYCLE,2020-12-07T00:00:00,2020,December,Monday,7,342,10,2020-12-07T00:00:00,2020,December,Monday,7,342,16,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FUJI,CLASSIC,RG,1,BLKRED,1000.0,STOLEN,8211,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-8213,7725,GO-20202448376,THEFT OF EBIKE UNDER $5000,2020-12-29T00:00:00,2020,December,Tuesday,29,364,15,2020-12-30T00:00:00,2020,December,Wednesday,30,365,12,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,PRAQUE,EL,32,BLK,1650.0,STOLEN,8212,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-8214,7729,GO-20149000074,THEFT UNDER,2013-12-25T00:00:00,2013,December,Wednesday,25,359,16,2014-01-02T00:00:00,2014,January,Thursday,2,2,16,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,CA,RZ 120 1,MT,21,WHI,1500.0,STOLEN,8213,"{'type': 'Point', 'coordinates': (-79.37267618, 43.65234821)}"
-8215,7730,GO-20141281947,THEFT UNDER,2014-01-04T00:00:00,2014,January,Saturday,4,4,18,2014-01-04T00:00:00,2014,January,Saturday,4,4,18,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,MIELE,,RG,21,BLU,200.0,STOLEN,8214,"{'type': 'Point', 'coordinates': (-79.38007115, 43.66369728000001)}"
-8216,7731,GO-20141285125,THEFT UNDER,2013-12-23T00:00:00,2013,December,Monday,23,357,9,2014-01-05T00:00:00,2014,January,Sunday,5,5,9,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,E-BIKE,ELECTRIC,EL,23,GRN,1000.0,STOLEN,8215,"{'type': 'Point', 'coordinates': (-79.37633027, 43.65851354)}"
-8217,7735,GO-20149000113,THEFT UNDER,2013-12-31T00:00:00,2013,December,Tuesday,31,365,0,2014-01-03T00:00:00,2014,January,Friday,3,3,16,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,18,BLK,1200.0,STOLEN,8216,"{'type': 'Point', 'coordinates': (-79.37516377, 43.6518061)}"
-8218,7736,GO-20149000113,THEFT UNDER,2013-12-31T00:00:00,2013,December,Tuesday,31,365,0,2014-01-03T00:00:00,2014,January,Friday,3,3,16,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,KO,,RC,18,BLK,1500.0,STOLEN,8217,"{'type': 'Point', 'coordinates': (-79.37516377, 43.6518061)}"
-8219,7785,GO-20141743873,THEFT UNDER,2014-03-14T00:00:00,2014,March,Friday,14,73,19,2014-03-21T00:00:00,2014,March,Friday,21,80,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIO,ITALIA,EL,4,BLK,1000.0,STOLEN,8219,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-8220,7797,GO-20149002410,THEFT UNDER,2014-03-28T00:00:00,2014,March,Friday,28,87,15,2014-03-28T00:00:00,2014,March,Friday,28,87,19,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,PREMIUM,RG,1,BLU,800.0,STOLEN,8220,"{'type': 'Point', 'coordinates': (-79.37781507, 43.65821091)}"
-8221,7799,GO-20149002440,THEFT UNDER,2014-03-30T00:00:00,2014,March,Sunday,30,89,12,2014-03-30T00:00:00,2014,March,Sunday,30,89,13,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SC,,OT,21,,350.0,STOLEN,8221,"{'type': 'Point', 'coordinates': (-79.38612041000002, 43.66874221)}"
-8222,7802,GO-20141809196,THEFT UNDER,2014-01-31T00:00:00,2014,January,Friday,31,31,21,2014-04-01T00:00:00,2014,April,Tuesday,1,91,16,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,56,EL,5,BLKBLU,1815.0,STOLEN,8222,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-8223,7819,GO-20149002617,THEFT UNDER,2014-04-08T00:00:00,2014,April,Tuesday,8,98,13,2014-04-08T00:00:00,2014,April,Tuesday,8,98,18,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SECTOR 2012,RC,10,RED,800.0,STOLEN,8223,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-8224,3167,GO-20189025958,THEFT UNDER - BICYCLE,2018-08-12T00:00:00,2018,August,Sunday,12,224,8,2018-08-12T00:00:00,2018,August,Sunday,12,224,11,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,8,BLK,680.0,STOLEN,8224,"{'type': 'Point', 'coordinates': (-79.38334664, 43.66205466)}"
-8225,3198,GO-20189026345,THEFT UNDER,2018-08-10T00:00:00,2018,August,Friday,10,222,18,2018-08-14T00:00:00,2018,August,Tuesday,14,226,16,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,EM,EWILD,EL,30,BLK,2300.0,STOLEN,8225,"{'type': 'Point', 'coordinates': (-79.37883347, 43.66067091000001)}"
-8226,3230,GO-20189026677,THEFT UNDER - BICYCLE,2018-08-16T00:00:00,2018,August,Thursday,16,228,7,2018-08-16T00:00:00,2018,August,Thursday,16,228,16,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ZZYZX SPIRIT US,RC,24,BLU,1500.0,STOLEN,8226,"{'type': 'Point', 'coordinates': (-79.3811853, 43.65703802)}"
-8227,3244,GO-20189026907,THEFT UNDER - BICYCLE,2018-07-18T00:00:00,2018,July,Wednesday,18,199,0,2018-08-18T00:00:00,2018,August,Saturday,18,230,14,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,TR,FX 7200,OT,10,DBL,700.0,STOLEN,8227,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-8228,3271,GO-20189027200,THEFT UNDER - BICYCLE,2018-08-20T00:00:00,2018,August,Monday,20,232,16,2018-08-20T00:00:00,2018,August,Monday,20,232,19,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,OT,,OT,5,RED,500.0,STOLEN,8228,"{'type': 'Point', 'coordinates': (-79.3749069, 43.65118528)}"
-8229,3274,GO-20181525974,THEFT OF EBIKE UNDER $5000,2018-08-14T00:00:00,2018,August,Tuesday,14,226,13,2018-08-18T00:00:00,2018,August,Saturday,18,230,16,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,EL,40,MRN,1800.0,STOLEN,8229,"{'type': 'Point', 'coordinates': (-79.37642159, 43.65482917)}"
-8230,23688,GO-20169004132,THEFT UNDER - BICYCLE,2016-05-03T00:00:00,2016,May,Tuesday,3,124,12,2016-05-04T00:00:00,2016,May,Wednesday,4,125,12,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,,RG,18,BLK,1200.0,STOLEN,8230,"{'type': 'Point', 'coordinates': (-79.37854549, 43.67025604)}"
-8231,3278,GO-20189027271,THEFT UNDER - BICYCLE,2018-08-20T00:00:00,2018,August,Monday,20,232,2,2018-08-21T00:00:00,2018,August,Tuesday,21,233,12,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,TR,DS 8.3,MT,21,BLK,1400.0,STOLEN,8231,"{'type': 'Point', 'coordinates': (-79.38159830000001, 43.66737287)}"
-8232,1345,GO-20179014308,THEFT UNDER - BICYCLE,2017-09-08T00:00:00,2017,September,Friday,8,251,18,2017-09-08T00:00:00,2017,September,Friday,8,251,23,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RG,10,BLU,0.0,STOLEN,8232,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-8233,7860,GO-20149002998,THEFT UNDER,2014-04-12T00:00:00,2014,April,Saturday,12,102,17,2014-04-24T00:00:00,2014,April,Thursday,24,114,17,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,UK,EAZYRIDERS,EL,32,DBL,1500.0,STOLEN,8233,"{'type': 'Point', 'coordinates': (-79.37971563, 43.66282598)}"
-8234,23705,GO-20169005592,THEFT UNDER,2016-06-04T00:00:00,2016,June,Saturday,4,156,19,2016-06-10T00:00:00,2016,June,Friday,10,162,19,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,UK,SILVERSTONE 1,RC,24,WHI,1000.0,STOLEN,8234,"{'type': 'Point', 'coordinates': (-79.37575001, 43.6696557)}"
-8235,3288,GO-20189027482,THEFT UNDER - BICYCLE,2018-08-21T00:00:00,2018,August,Tuesday,21,233,15,2018-08-22T00:00:00,2018,August,Wednesday,22,234,16,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,PRIME,RC,1,RED,500.0,STOLEN,8235,"{'type': 'Point', 'coordinates': (-79.37827718, 43.65626242)}"
-8236,4436,GO-20199017886,THEFT UNDER,2019-06-08T00:00:00,2019,June,Saturday,8,159,15,2019-06-08T00:00:00,2019,June,Saturday,8,159,20,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KH,500 ALITE,MT,18,WHI,250.0,STOLEN,8236,"{'type': 'Point', 'coordinates': (-79.37513727, 43.66825437)}"
-8237,10328,GO-20159006189,THEFT UNDER,2015-08-13T00:00:00,2015,August,Thursday,13,225,22,2015-08-26T00:00:00,2015,August,Wednesday,26,238,11,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,SC,04SW2611T 071-1,MT,24,BLK,1000.0,STOLEN,8237,"{'type': 'Point', 'coordinates': (-79.37513727, 43.66825437)}"
-8238,1354,GO-20179014397,THEFT UNDER,2017-09-09T00:00:00,2017,September,Saturday,9,252,19,2017-09-10T00:00:00,2017,September,Sunday,10,253,14,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,BI,JAPANESE HI-MN,RC,14,LBL,700.0,STOLEN,8238,"{'type': 'Point', 'coordinates': (-79.37849549, 43.65985781)}"
-8239,4459,GO-20191081987,THEFT UNDER,2019-06-04T00:00:00,2019,June,Tuesday,4,155,0,2019-06-12T00:00:00,2019,June,Wednesday,12,163,8,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN,,OT,1,,50.0,UNKNOWN,8239,"{'type': 'Point', 'coordinates': (-79.374408, 43.66886889)}"
-8240,23716,GO-20169006737,THEFT UNDER,2016-07-02T00:00:00,2016,July,Saturday,2,184,8,2016-07-05T00:00:00,2016,July,Tuesday,5,187,8,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,9,BLK,700.0,STOLEN,8240,"{'type': 'Point', 'coordinates': (-79.37942813, 43.6718256)}"
-8241,7871,GO-20141982447,THEFT UNDER,2014-04-28T00:00:00,2014,April,Monday,28,118,17,2014-04-29T00:00:00,2014,April,Tuesday,29,119,16,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,,RC,21,BLKRED,500.0,STOLEN,8241,"{'type': 'Point', 'coordinates': (-79.38201616, 43.6683485)}"
-8242,4522,GO-20199019033,THEFT UNDER,2019-06-12T00:00:00,2019,June,Wednesday,12,163,17,2019-06-17T00:00:00,2019,June,Monday,17,168,23,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,CC,,OT,21,LBL,389.0,STOLEN,8242,"{'type': 'Point', 'coordinates': (-79.37410556, 43.64926232)}"
-8243,17043,GO-20189017531,THEFT UNDER - BICYCLE,2018-06-04T00:00:00,2018,June,Monday,4,155,10,2018-06-05T00:00:00,2018,June,Tuesday,5,156,20,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,FJ,NEWWEST1.1,RC,20,BLK,600.0,STOLEN,8243,"{'type': 'Point', 'coordinates': (-79.37681431, 43.67235839)}"
-8244,17048,GO-20189018385,THEFT UNDER - BICYCLE,2018-06-01T00:00:00,2018,June,Friday,1,152,13,2018-06-12T00:00:00,2018,June,Tuesday,12,163,16,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,BI,1990 CAMPIONE,RC,3,LBL,500.0,STOLEN,8244,"{'type': 'Point', 'coordinates': (-79.37681431, 43.67235839)}"
-8245,3289,GO-20189027271,THEFT UNDER - BICYCLE,2018-08-20T00:00:00,2018,August,Monday,20,232,2,2018-08-21T00:00:00,2018,August,Tuesday,21,233,12,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,TR,DS 8.3,MT,21,,1718.0,STOLEN,8245,"{'type': 'Point', 'coordinates': (-79.38159830000001, 43.66737287)}"
-8246,17096,GO-20189029102,THEFT UNDER - BICYCLE,2018-09-04T00:00:00,2018,September,Tuesday,4,247,14,2018-09-04T00:00:00,2018,September,Tuesday,4,247,19,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,BIG 9,MT,9,BLK,1000.0,STOLEN,8246,"{'type': 'Point', 'coordinates': (-79.37620707000002, 43.67079259)}"
-8247,10374,GO-20159006560,THEFT UNDER,2015-08-30T00:00:00,2015,August,Sunday,30,242,1,2015-08-31T00:00:00,2015,August,Monday,31,243,14,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM 2,OT,27,BLU,918.0,STOLEN,8247,"{'type': 'Point', 'coordinates': (-79.37646069, 43.66642862)}"
-8248,4488,GO-20191105288,PROPERTY - FOUND,2019-06-14T00:00:00,2019,June,Friday,14,165,22,2019-06-15T00:00:00,2019,June,Saturday,15,166,11,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,APOLLO,TRANSFER 10,MT,21,BLKONG,500.0,UNKNOWN,8248,"{'type': 'Point', 'coordinates': (-79.37083034, 43.67140373)}"
-8249,1380,GO-20179014555,THEFT UNDER,2017-09-11T00:00:00,2017,September,Monday,11,254,20,2017-09-12T00:00:00,2017,September,Tuesday,12,255,10,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GF,KAITAI,OT,18,BLK,600.0,STOLEN,8249,"{'type': 'Point', 'coordinates': (-79.38565257, 43.66756225)}"
-8250,8063,GO-20149003845,THEFT UNDER,2014-06-04T00:00:00,2014,June,Wednesday,4,155,20,2014-06-05T00:00:00,2014,June,Thursday,5,156,20,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,OT,1.3ALU,MT,27,BLK,300.0,STOLEN,8266,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-8251,23718,GO-20169007157,THEFT UNDER - BICYCLE,2016-07-13T00:00:00,2016,July,Wednesday,13,195,12,2016-07-13T00:00:00,2016,July,Wednesday,13,195,16,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,SIRRUS,TO,21,GRY,750.0,STOLEN,8250,"{'type': 'Point', 'coordinates': (-79.37513727, 43.66825437)}"
-8252,4546,GO-20191139528,THEFT OF EBIKE UNDER $5000,2019-06-19T00:00:00,2019,June,Wednesday,19,170,22,2019-06-19T00:00:00,2019,June,Wednesday,19,170,22,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,AZ EBIKE,OT,6,BLK,2500.0,STOLEN,8251,"{'type': 'Point', 'coordinates': (-79.37827718, 43.65626242)}"
-8253,7877,GO-20141995643,THEFT UNDER,2014-04-26T00:00:00,2014,April,Saturday,26,116,13,2014-05-01T00:00:00,2014,May,Thursday,1,121,17,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OTHER,,OT,8,GRN,130.0,STOLEN,8252,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-8254,7886,GO-20141740213,THEFT UNDER,2014-03-18T00:00:00,2014,March,Tuesday,18,77,17,2014-03-18T00:00:00,2014,March,Tuesday,18,77,17,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OTHER,DAYMAK,EL,6,BLK,,STOLEN,8253,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-8255,7899,GO-20142047200,THEFT UNDER,2014-05-09T00:00:00,2014,May,Friday,9,129,10,2014-05-09T00:00:00,2014,May,Friday,9,129,19,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,EL,1,BLK,1000.0,STOLEN,8254,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-8256,7920,GO-20142064711,THEFT UNDER,2014-05-11T00:00:00,2014,May,Sunday,11,131,2,2014-05-12T00:00:00,2014,May,Monday,12,132,14,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,KHS,URBAN SOUL,RG,1,BLK,700.0,STOLEN,8255,"{'type': 'Point', 'coordinates': (-79.38132262, 43.6667026)}"
-8257,7934,GO-20149003367,THEFT UNDER,2014-05-14T00:00:00,2014,May,Wednesday,14,134,16,2014-05-15T00:00:00,2014,May,Thursday,15,135,14,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,21,RED,400.0,STOLEN,8256,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-8258,7937,GO-20149003393,THEFT UNDER,2014-05-16T00:00:00,2014,May,Friday,16,136,16,2014-05-16T00:00:00,2014,May,Friday,16,136,17,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,JAKE,RC,1,BLU,1300.0,STOLEN,8257,"{'type': 'Point', 'coordinates': (-79.38132262, 43.6667026)}"
-8259,7941,GO-20149003409,THEFT UNDER,2014-05-15T00:00:00,2014,May,Thursday,15,135,7,2014-05-17T00:00:00,2014,May,Saturday,17,137,18,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ARISTOTLE,RC,1,BLK,1000.0,STOLEN,8258,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-8260,7944,GO-20149003423,THEFT UNDER,2014-05-09T00:00:00,2014,May,Friday,9,129,14,2014-05-18T00:00:00,2014,May,Sunday,18,138,14,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,21,OTH,0.0,STOLEN,8259,"{'type': 'Point', 'coordinates': (-79.38132262, 43.6667026)}"
-8261,7950,GO-20142115665,THEFT UNDER,2014-05-20T00:00:00,2014,May,Tuesday,20,140,12,2014-05-20T00:00:00,2014,May,Tuesday,20,140,13,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,PRO SPORT,OT,3,BLK,650.0,STOLEN,8260,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-8262,7988,GO-20142154575,THEFT UNDER,2014-05-24T00:00:00,2014,May,Saturday,24,144,1,2014-05-26T00:00:00,2014,May,Monday,26,146,9,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,SEDONA,OT,24,BLK,600.0,STOLEN,8261,"{'type': 'Point', 'coordinates': (-79.37787874, 43.64914837)}"
-8263,8014,GO-20149003720,THEFT UNDER,2014-05-28T00:00:00,2014,May,Wednesday,28,148,17,2014-05-31T00:00:00,2014,May,Saturday,31,151,12,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,RM,VAPOR,MT,27,BLU,900.0,STOLEN,8262,"{'type': 'Point', 'coordinates': (-79.37781507, 43.65821091)}"
-8264,8047,GO-20149003802,THEFT UNDER,2014-06-04T00:00:00,2014,June,Wednesday,4,155,0,2014-06-04T00:00:00,2014,June,Wednesday,4,155,13,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,04S2280,FO,7,BLK,200.0,STOLEN,8263,"{'type': 'Point', 'coordinates': (-79.37583535, 43.65495451)}"
-8265,8058,GO-20142222175,THEFT UNDER,2014-06-04T00:00:00,2014,June,Wednesday,4,155,7,2014-06-04T00:00:00,2014,June,Wednesday,4,155,19,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,,OT,7,WHIYEL,300.0,STOLEN,8264,"{'type': 'Point', 'coordinates': (-79.37691204, 43.65291764)}"
-8266,8062,GO-20142226651,THEFT UNDER,2014-06-05T00:00:00,2014,June,Thursday,5,156,9,2014-06-05T00:00:00,2014,June,Thursday,5,156,13,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,AQUILA,UNKNOWN,OT,21,BLU,100.0,STOLEN,8265,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-8267,8069,GO-20149003853,THEFT UNDER,2014-06-01T00:00:00,2014,June,Sunday,1,152,13,2014-06-06T00:00:00,2014,June,Friday,6,157,11,D51,Toronto,75,Church-Yonge Corridor (75),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,AMSTERDAM 2011,OT,27,RED,1100.0,STOLEN,8267,"{'type': 'Point', 'coordinates': (-79.37840051, 43.66333422)}"
-8268,8083,GO-20149003928,THEFT UNDER,2014-06-08T00:00:00,2014,June,Sunday,8,159,19,2014-06-09T00:00:00,2014,June,Monday,9,160,17,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,PRESTO,RC,21,GRY,350.0,STOLEN,8268,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-8269,8102,GO-20142270662,THEFT UNDER,2014-06-11T00:00:00,2014,June,Wednesday,11,162,9,2014-06-11T00:00:00,2014,June,Wednesday,11,162,19,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,,MT,21,,200.0,STOLEN,8269,"{'type': 'Point', 'coordinates': (-79.37643241, 43.65085158000001)}"
-8270,8131,GO-20149004040,THEFT UNDER,2014-06-13T00:00:00,2014,June,Friday,13,164,8,2014-06-13T00:00:00,2014,June,Friday,13,164,15,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GF,HYBRID HARDTAIL,MT,24,LBL,800.0,STOLEN,8270,"{'type': 'Point', 'coordinates': (-79.37600691000002, 43.64815434)}"
-8271,8146,GO-20149004063,THEFT UNDER,2014-05-02T00:00:00,2014,May,Friday,2,122,12,2014-06-14T00:00:00,2014,June,Saturday,14,165,13,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,CROSS TRAIL,OT,21,BLK,900.0,STOLEN,8271,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-8272,8158,GO-20149004150,THEFT UNDER,2014-06-16T00:00:00,2014,June,Monday,16,167,19,2014-06-16T00:00:00,2014,June,Monday,16,167,21,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,RG,18,GRY,850.0,STOLEN,8272,"{'type': 'Point', 'coordinates': (-79.37410556, 43.64926232)}"
-8273,8177,GO-20142309006,THEFT UNDER,2014-06-08T00:00:00,2014,June,Sunday,8,159,14,2014-06-17T00:00:00,2014,June,Tuesday,17,168,13,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RALEIGH,U/K,RG,21,RED,600.0,STOLEN,8273,"{'type': 'Point', 'coordinates': (-79.37382409, 43.64862739)}"
-8274,8180,GO-20149004199,THEFT UNDER,2014-06-17T00:00:00,2014,June,Tuesday,17,168,16,2014-06-17T00:00:00,2014,June,Tuesday,17,168,23,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,KO,BLAST,MT,21,WHI,0.0,STOLEN,8274,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-8275,8195,GO-20149004271,THEFT UNDER,2014-06-20T00:00:00,2014,June,Friday,20,171,8,2014-06-20T00:00:00,2014,June,Friday,20,171,12,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,21,,400.0,STOLEN,8275,"{'type': 'Point', 'coordinates': (-79.37805214, 43.6526818)}"
-8276,8218,GO-20142344452,THEFT UNDER,2014-06-14T00:00:00,2014,June,Saturday,14,165,23,2014-06-22T00:00:00,2014,June,Sunday,22,173,14,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,SPORT,RC,10,BLU,900.0,STOLEN,8276,"{'type': 'Point', 'coordinates': (-79.37866195000001, 43.66712397)}"
-8277,8239,GO-20149004409,THEFT UNDER,2014-06-23T00:00:00,2014,June,Monday,23,174,19,2014-06-24T00:00:00,2014,June,Tuesday,24,175,19,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,KO,,RG,8,BLU,600.0,STOLEN,8277,"{'type': 'Point', 'coordinates': (-79.38245382, 43.66941071)}"
-8278,8244,GO-20149004422,THEFT UNDER,2014-06-24T00:00:00,2014,June,Tuesday,24,175,18,2014-06-25T00:00:00,2014,June,Wednesday,25,176,9,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,CYPRESS,RG,21,SIL,800.0,STOLEN,8278,"{'type': 'Point', 'coordinates': (-79.37615599, 43.65014184)}"
-8279,8246,GO-20142358066,THEFT UNDER,2014-06-12T00:00:00,2014,June,Thursday,12,163,18,2014-06-24T00:00:00,2014,June,Tuesday,24,175,14,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,TEVBIKE,EL,1,WHI,1100.0,STOLEN,8279,"{'type': 'Point', 'coordinates': (-79.37900573, 43.66793407)}"
-8280,23736,GO-20161491822,THEFT OF EBIKE UNDER $5000,2016-07-26T00:00:00,2016,July,Tuesday,26,208,19,2016-08-23T00:00:00,2016,August,Tuesday,23,236,10,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,,EL,1,BLKGRN,,STOLEN,8280,"{'type': 'Point', 'coordinates': (-79.37513727, 43.66825437)}"
-8281,1433,GO-20179014971,THEFT UNDER - BICYCLE,2017-09-15T00:00:00,2017,September,Friday,15,258,14,2017-09-16T00:00:00,2017,September,Saturday,16,259,17,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,SU,,RG,18,RED,250.0,STOLEN,8281,"{'type': 'Point', 'coordinates': (-79.38007115, 43.66369728000001)}"
-8282,4505,GO-20199018797,THEFT UNDER,2019-06-15T00:00:00,2019,June,Saturday,15,166,18,2019-06-16T00:00:00,2019,June,Sunday,16,167,1,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KO,JAKE THE SNAKE,RG,16,BLU,400.0,STOLEN,8282,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-8283,10389,GO-20159006657,B&E,2015-08-21T00:00:00,2015,August,Friday,21,233,22,2015-09-02T00:00:00,2015,September,Wednesday,2,245,14,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,GT,AVALANCHE,MT,10,RED,900.0,STOLEN,8283,"{'type': 'Point', 'coordinates': (-79.37513727, 43.66825437)}"
-8284,3297,GO-20189027584,THEFT UNDER - BICYCLE,2018-06-02T00:00:00,2018,June,Saturday,2,153,10,2018-08-23T00:00:00,2018,August,Thursday,23,235,12,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,NO,"VALENCE A2, 60.",RG,18,BLK,1350.0,STOLEN,8284,"{'type': 'Point', 'coordinates': (-79.37830573, 43.66310625)}"
-8285,17103,GO-20189030742,THEFT UNDER - BICYCLE,2018-09-16T00:00:00,2018,September,Sunday,16,259,22,2018-09-16T00:00:00,2018,September,Sunday,16,259,23,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,RG,3,,500.0,STOLEN,8285,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-8286,4562,GO-20191133879,B&E,2019-06-19T00:00:00,2019,June,Wednesday,19,170,0,2019-06-21T00:00:00,2019,June,Friday,21,172,10,D51,Toronto,75,Church-Yonge Corridor (75),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,OT,0,BLK,,STOLEN,8286,"{'type': 'Point', 'coordinates': (-79.37900573, 43.66793407)}"
-8287,8249,GO-20149004436,THEFT UNDER,2014-06-22T00:00:00,2014,June,Sunday,22,173,11,2014-06-25T00:00:00,2014,June,Wednesday,25,176,14,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RC,10,OTH,1500.0,STOLEN,8287,"{'type': 'Point', 'coordinates': (-79.3811853, 43.65703802)}"
-8288,8258,GO-20149004472,THEFT UNDER,2014-06-25T00:00:00,2014,June,Wednesday,25,176,0,2014-06-26T00:00:00,2014,June,Thursday,26,177,12,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,EL,32,BRN,800.0,STOLEN,8288,"{'type': 'Point', 'coordinates': (-79.37669194, 43.64940479)}"
-8289,8261,GO-20149004487,THEFT UNDER,2014-06-27T00:00:00,2014,June,Friday,27,178,1,2014-06-27T00:00:00,2014,June,Friday,27,178,4,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,FACTOR,MT,21,ONG,400.0,STOLEN,8289,"{'type': 'Point', 'coordinates': (-79.3774505, 43.65131026)}"
-8290,8290,GO-20142421096,THEFT UNDER,2014-06-26T00:00:00,2014,June,Thursday,26,177,17,2014-07-03T00:00:00,2014,July,Thursday,3,184,11,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,RG,3,WHI,500.0,STOLEN,8290,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-8291,8304,GO-20149004603,THEFT UNDER,2014-06-28T00:00:00,2014,June,Saturday,28,179,21,2014-07-01T00:00:00,2014,July,Tuesday,1,182,16,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KH,FLITE 220,TO,16,LBL,,STOLEN,8291,"{'type': 'Point', 'coordinates': (-79.38063454, 43.65577409)}"
-8292,8305,GO-20149004608,THEFT UNDER,2014-07-01T00:00:00,2014,July,Tuesday,1,182,18,2014-07-01T00:00:00,2014,July,Tuesday,1,182,19,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,GHOST,RC,21,BLK,1500.0,STOLEN,8292,"{'type': 'Point', 'coordinates': (-79.37633027, 43.65851354)}"
-8293,8329,GO-20149004665,THEFT UNDER,2014-07-02T00:00:00,2014,July,Wednesday,2,183,14,2014-07-03T00:00:00,2014,July,Thursday,3,184,13,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,FASTBACK,OT,8,RED,700.0,STOLEN,8293,"{'type': 'Point', 'coordinates': (-79.38159830000001, 43.66737287)}"
-8294,8340,GO-20149004684,THEFT UNDER,2014-07-03T00:00:00,2014,July,Thursday,3,184,17,2014-07-03T00:00:00,2014,July,Thursday,3,184,18,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,TR,,RG,9,GRY,,STOLEN,8294,"{'type': 'Point', 'coordinates': (-79.37840051, 43.66333422)}"
-8295,8344,GO-20149004693,THEFT UNDER,2014-07-03T00:00:00,2014,July,Thursday,3,184,0,2014-07-03T00:00:00,2014,July,Thursday,3,184,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,SIRRUS,RG,21,BLK,600.0,STOLEN,8295,"{'type': 'Point', 'coordinates': (-79.38607321, 43.66863079)}"
-8296,8347,GO-20149004705,THEFT UNDER,2014-07-04T00:00:00,2014,July,Friday,4,185,22,2014-07-05T00:00:00,2014,July,Saturday,5,186,0,D51,Toronto,75,Church-Yonge Corridor (75),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,EL,1,GRN,1500.0,STOLEN,8296,"{'type': 'Point', 'coordinates': (-79.37643241, 43.65085158000001)}"
-8297,8351,GO-20149004732,THEFT UNDER,2014-07-04T00:00:00,2014,July,Friday,4,185,17,2014-07-05T00:00:00,2014,July,Saturday,5,186,13,D51,Toronto,75,Church-Yonge Corridor (75),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,,RG,1,DGR,,STOLEN,8297,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-8298,8367,GO-20149004810,THEFT UNDER,2014-07-07T00:00:00,2014,July,Monday,7,188,9,2014-07-08T00:00:00,2014,July,Tuesday,8,189,12,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,DB,KALAMAR,OT,7,SIL,200.0,STOLEN,8298,"{'type': 'Point', 'coordinates': (-79.37572376, 43.64746036)}"
-8299,8393,GO-20149004907,THEFT UNDER,2014-05-21T00:00:00,2014,May,Wednesday,21,141,18,2014-07-11T00:00:00,2014,July,Friday,11,192,13,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,OT,,RC,21,BLK,,STOLEN,8299,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-8300,8405,GO-20149004936,THEFT UNDER,2014-07-11T00:00:00,2014,July,Friday,11,192,10,2014-07-12T00:00:00,2014,July,Saturday,12,193,13,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,PADDY WAGON,RG,1,BLK,500.0,STOLEN,8300,"{'type': 'Point', 'coordinates': (-79.37953592, 43.65629127)}"
-8301,8427,GO-20149005005,THEFT UNDER,2014-07-14T00:00:00,2014,July,Monday,14,195,10,2014-07-15T00:00:00,2014,July,Tuesday,15,196,11,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,,OT,21,RED,,STOLEN,8301,"{'type': 'Point', 'coordinates': (-79.37512219, 43.65330838)}"
-8302,8428,GO-20149005014,THEFT UNDER,2014-07-12T00:00:00,2014,July,Saturday,12,193,23,2014-07-15T00:00:00,2014,July,Tuesday,15,196,15,D51,Toronto,75,Church-Yonge Corridor (75),Unknown,Other,UK,,RG,21,,600.0,STOLEN,8302,"{'type': 'Point', 'coordinates': (-79.37943497, 43.65603477)}"
-8303,8451,GO-20142514424,THEFT UNDER,2014-07-16T00:00:00,2014,July,Wednesday,16,197,20,2014-07-17T00:00:00,2014,July,Thursday,17,198,9,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,,TA,25,GRY,,STOLEN,8303,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-8304,8479,GO-20149005210,THEFT UNDER,2014-07-23T00:00:00,2014,July,Wednesday,23,204,18,2014-07-24T00:00:00,2014,July,Thursday,24,205,1,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,20,BLK,0.0,STOLEN,8304,"{'type': 'Point', 'coordinates': (-79.38091931, 43.66572241)}"
-8305,8489,GO-20149005246,THEFT UNDER,2014-07-22T00:00:00,2014,July,Tuesday,22,203,18,2014-07-22T00:00:00,2014,July,Tuesday,22,203,23,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GT,GT AVALANCHE 2,MT,24,SIL,1000.0,STOLEN,8305,"{'type': 'Point', 'coordinates': (-79.37785611, 43.66521591)}"
-8306,8500,GO-20149005259,THEFT UNDER,2014-07-21T00:00:00,2014,July,Monday,21,202,23,2014-07-24T00:00:00,2014,July,Thursday,24,205,11,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,1,,,STOLEN,8306,"{'type': 'Point', 'coordinates': (-79.38201616, 43.6683485)}"
-8307,8568,GO-20149005559,THEFT UNDER,2014-07-11T00:00:00,2014,July,Friday,11,192,15,2014-08-01T00:00:00,2014,August,Friday,1,213,16,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,SEDONADX W,RG,24,DGR,300.0,STOLEN,8307,"{'type': 'Point', 'coordinates': (-79.37700237, 43.66017519)}"
-8308,8583,GO-20142660478,THEFT UNDER,2014-08-08T00:00:00,2014,August,Friday,8,220,12,2014-08-08T00:00:00,2014,August,Friday,8,220,12,D51,Toronto,75,Church-Yonge Corridor (75),"Open Areas (Lakes, Parks, Rivers)",Outside,GT,GHOST,MT,18,SIL,1000.0,STOLEN,8308,"{'type': 'Point', 'coordinates': (-79.38521897, 43.66654709)}"
-8309,8624,GO-20149005749,THEFT UNDER,2014-08-08T00:00:00,2014,August,Friday,8,220,10,2014-08-09T00:00:00,2014,August,Saturday,9,221,10,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,GI,ROVE 3 WOMENS M,MT,24,GRY,600.0,STOLEN,8309,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-8310,8645,GO-20149005853,THEFT UNDER,2014-08-11T00:00:00,2014,August,Monday,11,223,17,2014-08-12T00:00:00,2014,August,Tuesday,12,224,10,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,"26"""" HIGH PEAK W",MT,18,WHI,99.0,STOLEN,8310,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-8311,8662,GO-20149005956,THEFT UNDER,2014-08-14T00:00:00,2014,August,Thursday,14,226,19,2014-08-14T00:00:00,2014,August,Thursday,14,226,22,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,2200,RC,18,BLK,2000.0,STOLEN,8311,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-8312,8709,GO-20142753975,THEFT UNDER,2014-08-17T00:00:00,2014,August,Sunday,17,229,16,2014-08-22T00:00:00,2014,August,Friday,22,234,13,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CANNONDALE,LEFTY,MT,27,LBL,500.0,STOLEN,8312,"{'type': 'Point', 'coordinates': (-79.37691204, 43.65291764)}"
-8313,8725,GO-20149006274,THEFT UNDER,2014-08-24T00:00:00,2014,August,Sunday,24,236,19,2014-08-25T00:00:00,2014,August,Monday,25,237,12,D51,Toronto,75,Church-Yonge Corridor (75),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,TR,5700,MT,21,BLK,0.0,STOLEN,8313,"{'type': 'Point', 'coordinates': (-79.37827718, 43.65626242)}"
-8314,8726,GO-20149006274,THEFT UNDER,2014-08-24T00:00:00,2014,August,Sunday,24,236,19,2014-08-25T00:00:00,2014,August,Monday,25,237,12,D51,Toronto,75,Church-Yonge Corridor (75),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,UK,,RG,21,BLK,200.0,STOLEN,8314,"{'type': 'Point', 'coordinates': (-79.37827718, 43.65626242)}"
-8315,8729,GO-20149006282,THEFT UNDER,2014-08-08T00:00:00,2014,August,Friday,8,220,19,2014-08-25T00:00:00,2014,August,Monday,25,237,16,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RG,5,RED,400.0,STOLEN,8315,"{'type': 'Point', 'coordinates': (-79.37572376, 43.64746036)}"
-8316,8731,GO-20149006291,THEFT UNDER,2014-08-23T00:00:00,2014,August,Saturday,23,235,19,2014-08-25T00:00:00,2014,August,Monday,25,237,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,1,DBL,250.0,STOLEN,8316,"{'type': 'Point', 'coordinates': (-79.37785611, 43.66521591)}"
-8317,8743,GO-20149006233,THEFT UNDER,2014-08-21T00:00:00,2014,August,Thursday,21,233,10,2014-08-24T00:00:00,2014,August,Sunday,24,236,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,RG,21,BLU,430.0,STOLEN,8317,"{'type': 'Point', 'coordinates': (-79.37720552, 43.6506687)}"
-8318,8754,GO-20149006234,THEFT UNDER,2014-08-24T00:00:00,2014,August,Sunday,24,236,11,2014-08-24T00:00:00,2014,August,Sunday,24,236,19,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,CCM APEX,MT,24,WHI,600.0,STOLEN,8318,"{'type': 'Point', 'coordinates': (-79.37894504, 43.65169174)}"
-8319,8780,GO-20149006458,THEFT UNDER,2014-09-01T00:00:00,2014,September,Monday,1,244,15,2014-09-01T00:00:00,2014,September,Monday,1,244,15,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,RM,,RG,10,RED,80.0,STOLEN,8319,"{'type': 'Point', 'coordinates': (-79.38201616, 43.6683485)}"
-8320,8790,GO-20149006498,THEFT UNDER,2013-09-28T00:00:00,2013,September,Saturday,28,271,19,2014-09-02T00:00:00,2014,September,Tuesday,2,245,14,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BI,BIANCHI ML3 DON,RC,1,BLU,800.0,STOLEN,8320,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-8321,8795,GO-20149006511,THEFT UNDER,2014-09-02T00:00:00,2014,September,Tuesday,2,245,22,2014-09-03T00:00:00,2014,September,Wednesday,3,246,1,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,,,MT,8,BLK,400.0,STOLEN,8321,"{'type': 'Point', 'coordinates': (-79.37830693, 43.66628508)}"
-8322,8796,GO-20149006511,THEFT UNDER,2014-09-02T00:00:00,2014,September,Tuesday,2,245,22,2014-09-03T00:00:00,2014,September,Wednesday,3,246,1,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GF,,OT,8,BLK,400.0,STOLEN,8322,"{'type': 'Point', 'coordinates': (-79.37830693, 43.66628508)}"
-8323,8818,GO-20149006589,THEFT UNDER,2014-09-05T00:00:00,2014,September,Friday,5,248,8,2014-09-05T00:00:00,2014,September,Friday,5,248,16,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,KH,URBAN SOUL,RG,1,BLK,500.0,STOLEN,8323,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-8324,8842,GO-20142876399,THEFT UNDER,2014-09-09T00:00:00,2014,September,Tuesday,9,252,14,2014-09-09T00:00:00,2014,September,Tuesday,9,252,15,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CANNONDALE,,MT,10,RED,1800.0,STOLEN,8324,"{'type': 'Point', 'coordinates': (-79.37215317, 43.64913066)}"
-8325,8860,GO-20149006745,THEFT UNDER,2014-08-11T00:00:00,2014,August,Monday,11,223,9,2014-09-10T00:00:00,2014,September,Wednesday,10,253,9,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RM,SOUL,MT,27,WHI,1200.0,STOLEN,8325,"{'type': 'Point', 'coordinates': (-79.37267618, 43.65234821)}"
-8326,8876,GO-20142878601,THEFT UNDER,2014-09-09T00:00:00,2014,September,Tuesday,9,252,19,2014-09-09T00:00:00,2014,September,Tuesday,9,252,22,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,CCM,EXCELSIOR,OT,21,RED,400.0,STOLEN,8326,"{'type': 'Point', 'coordinates': (-79.37721761, 43.65831575)}"
-8327,8888,GO-20149006890,THEFT UNDER,2014-09-13T00:00:00,2014,September,Saturday,13,256,18,2014-09-14T00:00:00,2014,September,Sunday,14,257,18,D52,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,HYDRA MEN'S 700,OT,24,BLU,360.0,STOLEN,8327,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-8328,8906,GO-20142916387,THEFT UNDER,2014-09-15T00:00:00,2014,September,Monday,15,258,10,2014-09-15T00:00:00,2014,September,Monday,15,258,18,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,APEX 26,MT,24,GRN,300.0,STOLEN,8328,"{'type': 'Point', 'coordinates': (-79.37720552, 43.6506687)}"
-8329,8915,GO-20149007000,THEFT UNDER,2014-09-15T00:00:00,2014,September,Monday,15,258,23,2014-09-17T00:00:00,2014,September,Wednesday,17,260,11,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,GLOBE,RG,12,BLK,900.0,STOLEN,8329,"{'type': 'Point', 'coordinates': (-79.37717453, 43.66359899)}"
-8330,8927,GO-20149007038,THEFT UNDER,2014-09-15T00:00:00,2014,September,Monday,15,258,17,2014-09-19T00:00:00,2014,September,Friday,19,262,17,D51,Toronto,75,Church-Yonge Corridor (75),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,TRICKSTER,BM,3,BLK,750.0,STOLEN,8330,"{'type': 'Point', 'coordinates': (-79.37691204, 43.65291764)}"
-8331,8951,GO-20142968832,THEFT UNDER,2014-09-05T00:00:00,2014,September,Friday,5,248,15,2014-09-23T00:00:00,2014,September,Tuesday,23,266,17,D52,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,VITA X3,MT,24,BLU,400.0,STOLEN,8331,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-8332,9027,GO-20143057853,THEFT UNDER,2014-10-06T00:00:00,2014,October,Monday,6,279,6,2014-10-07T00:00:00,2014,October,Tuesday,7,280,7,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,INFINITY,,OT,6,WHIBLK,200.0,STOLEN,8332,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-8333,9031,GO-20149007473,THEFT UNDER,2014-09-13T00:00:00,2014,September,Saturday,13,256,9,2014-10-08T00:00:00,2014,October,Wednesday,8,281,11,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,MA,,MT,24,BLK,120.0,STOLEN,8333,"{'type': 'Point', 'coordinates': (-79.37781507, 43.65821091)}"
-8334,9036,GO-20143075724,THEFT UNDER,2014-10-09T00:00:00,2014,October,Thursday,9,282,18,2014-10-09T00:00:00,2014,October,Thursday,9,282,21,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,,MT,21,ONG,500.0,STOLEN,8334,"{'type': 'Point', 'coordinates': (-79.38063454, 43.65577409)}"
-8335,9073,GO-20143115332,THEFT UNDER,2014-10-16T00:00:00,2014,October,Thursday,16,289,11,2014-10-16T00:00:00,2014,October,Thursday,16,289,14,D51,Toronto,75,Church-Yonge Corridor (75),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,EMMO,S6,SC,0,BLK,1500.0,STOLEN,8335,"{'type': 'Point', 'coordinates': (-79.37691204, 43.65291764)}"
-8336,9086,GO-20143146028,THEFT UNDER,2014-10-20T00:00:00,2014,October,Monday,20,293,14,2014-10-21T00:00:00,2014,October,Tuesday,21,294,11,D51,Toronto,75,Church-Yonge Corridor (75),Schools During Supervised Activity,Educational,NORCO,CITY GLIDE,RG,21,RED,,STOLEN,8336,"{'type': 'Point', 'coordinates': (-79.37633027, 43.65851354)}"
-8337,9173,GO-20149008132,THEFT UNDER,2014-11-07T00:00:00,2014,November,Friday,7,311,12,2014-11-11T00:00:00,2014,November,Tuesday,11,315,12,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,BLC14060660,RG,7,GRY,629.0,STOLEN,8337,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-8338,9189,GO-20143303182,THEFT UNDER,2014-11-14T00:00:00,2014,November,Friday,14,318,22,2014-11-14T00:00:00,2014,November,Friday,14,318,22,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,MAX,EL,3,BLK,1750.0,STOLEN,8338,"{'type': 'Point', 'coordinates': (-79.37562599, 43.6568205)}"
-8339,9203,GO-20149008441,THEFT UNDER,2014-11-16T00:00:00,2014,November,Sunday,16,320,16,2014-11-27T00:00:00,2014,November,Thursday,27,331,20,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,SST TRACK BIKE,RC,1,SIL,429.0,STOLEN,8339,"{'type': 'Point', 'coordinates': (-79.37849549, 43.65985781)}"
-8340,9217,GO-20143437133,THEFT UNDER,2014-12-06T00:00:00,2014,December,Saturday,6,340,15,2014-12-06T00:00:00,2014,December,Saturday,6,340,17,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,4300XC,MT,21,GRY,600.0,STOLEN,8340,"{'type': 'Point', 'coordinates': (-79.37573379, 43.65316827000001)}"
-8341,9218,GO-20149008597,THEFT UNDER,2014-12-06T00:00:00,2014,December,Saturday,6,340,9,2014-12-07T00:00:00,2014,December,Sunday,7,341,14,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,703 ELEGANCE,RG,24,SIL,500.0,STOLEN,8341,"{'type': 'Point', 'coordinates': (-79.3771082, 43.65650088)}"
-8342,9224,GO-20149008645,THEFT UNDER,2014-12-06T00:00:00,2014,December,Saturday,6,340,8,2014-12-09T00:00:00,2014,December,Tuesday,9,343,11,D51,Toronto,75,Church-Yonge Corridor (75),"Religious Facilities (Synagogue, Church, Convent, Mosque)",Other,TR,,TO,24,BLU,0.0,STOLEN,8342,"{'type': 'Point', 'coordinates': (-79.37662709, 43.65297714)}"
-8343,9226,GO-20149008688,THEFT UNDER,2014-12-03T00:00:00,2014,December,Wednesday,3,337,20,2014-12-11T00:00:00,2014,December,Thursday,11,345,10,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ROCKHOPPER PRO,MT,18,BLK,1150.0,STOLEN,8343,"{'type': 'Point', 'coordinates': (-79.37669194, 43.64940479)}"
-8344,9233,GO-20143501329,THEFT UNDER,2014-12-11T00:00:00,2014,December,Thursday,11,345,12,2014-12-17T00:00:00,2014,December,Wednesday,17,351,9,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,FUJI,,MT,12,BLUGRY,500.0,STOLEN,8344,"{'type': 'Point', 'coordinates': (-79.37796823, 43.66213714)}"
-8345,9236,GO-20149008885,THEFT UNDER,2014-12-20T00:00:00,2014,December,Saturday,20,354,23,2014-12-21T00:00:00,2014,December,Sunday,21,355,11,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,SEEK1 XL,RG,27,GRY,650.0,STOLEN,8345,"{'type': 'Point', 'coordinates': (-79.38245382, 43.66941071)}"
-8346,23737,GO-20169009232,THEFT UNDER,2016-08-22T00:00:00,2016,August,Monday,22,235,0,2016-08-22T00:00:00,2016,August,Monday,22,235,11,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,TR,NEKO SL WSD 16,RC,27,BLU,1037.0,STOLEN,8354,"{'type': 'Point', 'coordinates': (-79.37535291, 43.66874604)}"
-8347,9239,GO-20143547673,THEFT UNDER,2014-12-25T00:00:00,2014,December,Thursday,25,359,0,2014-12-25T00:00:00,2014,December,Thursday,25,359,12,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,RG,10,GRY,1000.0,STOLEN,8346,"{'type': 'Point', 'coordinates': (-79.37783798, 43.66217202)}"
-8348,9243,GO-20143569982,THEFT UNDER,2014-12-29T00:00:00,2014,December,Monday,29,363,19,2014-12-29T00:00:00,2014,December,Monday,29,363,21,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,EL,1,BLK,2000.0,STOLEN,8347,"{'type': 'Point', 'coordinates': (-79.37849549, 43.65985781)}"
-8349,9253,GO-20159000137,THEFT UNDER,2014-12-21T00:00:00,2014,December,Sunday,21,355,1,2015-01-08T00:00:00,2015,January,Thursday,8,8,15,D51,Toronto,75,Church-Yonge Corridor (75),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,50,BLK,0.0,STOLEN,8348,"{'type': 'Point', 'coordinates': (-79.37883347, 43.66067091000001)}"
-8350,9258,GO-20159000250,THEFT UNDER,2015-01-11T00:00:00,2015,January,Sunday,11,11,13,2015-01-14T00:00:00,2015,January,Wednesday,14,14,10,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,,100.0,STOLEN,8349,"{'type': 'Point', 'coordinates': (-79.37849549, 43.65985781)}"
-8351,9279,GO-20159000498,B&E,2015-01-11T00:00:00,2015,January,Sunday,11,11,12,2015-01-27T00:00:00,2015,January,Tuesday,27,27,13,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,ROAD FRAME,RC,9,RED,1250.0,STOLEN,8350,"{'type': 'Point', 'coordinates': (-79.38159626, 43.66440307)}"
-8352,9280,GO-20159000498,B&E,2015-01-11T00:00:00,2015,January,Sunday,11,11,12,2015-01-27T00:00:00,2015,January,Tuesday,27,27,13,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,HYBRID FRAME,MT,8,WHI,1250.0,STOLEN,8351,"{'type': 'Point', 'coordinates': (-79.38159626, 43.66440307)}"
-8353,9289,GO-2015242716,THEFT OVER,2015-02-10T00:00:00,2015,February,Tuesday,10,41,15,2015-02-10T00:00:00,2015,February,Tuesday,10,41,16,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,HAMPSTEN,CLASSIC,OT,20,RED,7000.0,STOLEN,8352,"{'type': 'Point', 'coordinates': (-79.37691204, 43.65291764)}"
-8354,9322,GO-2015445726,THEFT UNDER,2015-02-01T00:00:00,2015,February,Sunday,1,32,12,2015-03-16T00:00:00,2015,March,Monday,16,75,15,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,FOCUS,EZO 2.0,RG,10,BLKRED,3400.0,STOLEN,8353,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-8355,23775,GO-20169015221,THEFT UNDER - BICYCLE,2016-11-01T00:00:00,2016,November,Tuesday,1,306,13,2016-12-30T00:00:00,2016,December,Friday,30,365,13,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,1,GRN,400.0,STOLEN,8355,"{'type': 'Point', 'coordinates': (-79.37645102, 43.66797312)}"
-8356,23892,GO-20149004017,THEFT UNDER,2014-06-12T00:00:00,2014,June,Thursday,12,163,9,2014-06-12T00:00:00,2014,June,Thursday,12,163,16,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,GLOBE CENTRUM S,RG,1,BLK,1100.0,STOLEN,8356,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-8357,23953,GO-20149006988,THEFT UNDER,2014-09-15T00:00:00,2014,September,Monday,15,258,17,2014-09-17T00:00:00,2014,September,Wednesday,17,260,19,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,MILANO,RG,21,BLU,400.0,STOLEN,8357,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-8358,23973,GO-2015311491,THEFT FROM MOTOR VEHICLE UNDER,2015-02-21T00:00:00,2015,February,Saturday,21,52,16,2015-02-22T00:00:00,2015,February,Sunday,22,53,7,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CERVELO,DUAL,RC,11,SIL,1035.0,STOLEN,8358,"{'type': 'Point', 'coordinates': (-79.37513727, 43.66825437)}"
-8359,19,GO-20169014745,THEFT UNDER,2016-11-09T00:00:00,2016,November,Wednesday,9,314,16,2016-12-16T00:00:00,2016,December,Friday,16,351,16,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,GI,ESCAPE,TO,27,DBL,600.0,STOLEN,8359,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-8360,26,GO-20162240423,THEFT UNDER - BICYCLE,2016-12-18T00:00:00,2016,December,Sunday,18,353,16,2016-12-18T00:00:00,2016,December,Sunday,18,353,18,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,RG,3,YEL,140.0,STOLEN,8360,"{'type': 'Point', 'coordinates': (-79.37585959, 43.66043919)}"
-8361,56,GO-20179000898,THEFT UNDER,2017-01-17T00:00:00,2017,January,Tuesday,17,17,7,2017-01-20T00:00:00,2017,January,Friday,20,20,11,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,KH,BLACK 56CM KHS,RC,10,BLK,1500.0,STOLEN,8361,"{'type': 'Point', 'coordinates': (-79.37516377, 43.6518061)}"
-8362,62,GO-2017143313,THEFT UNDER - BICYCLE,2016-12-29T00:00:00,2016,December,Thursday,29,364,20,2017-01-23T00:00:00,2017,January,Monday,23,23,21,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,SCOTT,FOIL 40,RC,21,BLK,4500.0,STOLEN,8362,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-8363,82,GO-20179001628,THEFT UNDER,2017-02-06T00:00:00,2017,February,Monday,6,37,12,2017-02-07T00:00:00,2017,February,Tuesday,7,38,0,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,HERITAGE LO,RC,1,BLK,300.0,STOLEN,8363,"{'type': 'Point', 'coordinates': (-79.38159626, 43.66440307)}"
-8364,112,GO-20179002520,THEFT UNDER,2017-02-26T00:00:00,2017,February,Sunday,26,57,5,2017-02-26T00:00:00,2017,February,Sunday,26,57,20,D51,Toronto,75,Church-Yonge Corridor (75),"Group Homes (Non-Profit, Halfway House, Social Agency)",Other,UK,,TO,14,GLD,600.0,STOLEN,8364,"{'type': 'Point', 'coordinates': (-79.38501192, 43.66606363)}"
-8365,115,GO-20179002555,THEFT UNDER - BICYCLE,2017-02-27T00:00:00,2017,February,Monday,27,58,8,2017-02-27T00:00:00,2017,February,Monday,27,58,19,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RA,,RG,8,,610.0,STOLEN,8365,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-8366,123,GO-20179002647,THEFT UNDER,2017-03-01T00:00:00,2017,March,Wednesday,1,60,10,2017-03-01T00:00:00,2017,March,Wednesday,1,60,14,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CROSSBOW,RC,20,YEL,1000.0,STOLEN,8366,"{'type': 'Point', 'coordinates': (-79.38277088, 43.67016017)}"
-8367,203,GO-20179004446,THEFT UNDER - BICYCLE,2017-04-08T00:00:00,2017,April,Saturday,8,98,17,2017-04-08T00:00:00,2017,April,Saturday,8,98,22,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,BAD BOY 4,OT,8,BLK,850.0,STOLEN,8367,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-8368,1449,GO-20179015112,THEFT UNDER - BICYCLE,2017-09-17T00:00:00,2017,September,Sunday,17,260,21,2017-09-18T00:00:00,2017,September,Monday,18,261,20,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GI,BOWERY '72 (201,OT,1,RED,700.0,STOLEN,8368,"{'type': 'Point', 'coordinates': (-79.37872961, 43.654321780000004)}"
-8369,214,GO-20179004611,THEFT UNDER,2017-04-12T00:00:00,2017,April,Wednesday,12,102,15,2017-04-12T00:00:00,2017,April,Wednesday,12,102,17,D51,Toronto,75,Church-Yonge Corridor (75),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,NELLI,RC,15,GLD,400.0,STOLEN,8369,"{'type': 'Point', 'coordinates': (-79.37267618, 43.65234821)}"
-8370,217,GO-20179004663,THEFT UNDER - BICYCLE,2017-04-13T00:00:00,2017,April,Thursday,13,103,15,2017-04-13T00:00:00,2017,April,Thursday,13,103,16,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EM,SOHO,EL,3,BLU,1200.0,STOLEN,8370,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-8371,278,GO-20179005231,THEFT UNDER,2017-04-24T00:00:00,2017,April,Monday,24,114,20,2017-04-25T00:00:00,2017,April,Tuesday,25,115,8,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,FIXED GEAR RACI,OT,1,BLK,450.0,STOLEN,8371,"{'type': 'Point', 'coordinates': (-79.3811853, 43.65703802)}"
-8372,313,GO-20179005554,THEFT UNDER - BICYCLE,2017-05-01T00:00:00,2017,May,Monday,1,121,9,2017-05-01T00:00:00,2017,May,Monday,1,121,19,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,NO,YORKVILLE,RG,21,BLU,499.0,STOLEN,8372,"{'type': 'Point', 'coordinates': (-79.38201616, 43.6683485)}"
-8373,327,GO-20179005719,THEFT UNDER,2017-05-04T00:00:00,2017,May,Thursday,4,124,9,2017-05-04T00:00:00,2017,May,Thursday,4,124,20,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,,RG,18,BLK,275.0,STOLEN,8373,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-8374,4540,GO-20191134186,THEFT UNDER,2019-05-26T00:00:00,2019,May,Sunday,26,146,12,2019-06-19T00:00:00,2019,June,Wednesday,19,170,10,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EVO,,RG,8,BLK,500.0,STOLEN,8374,"{'type': 'Point', 'coordinates': (-79.37830693, 43.66628508)}"
-8375,364,GO-2017812233,THEFT OF EBIKE UNDER $5000,2017-05-08T00:00:00,2017,May,Monday,8,128,18,2017-05-08T00:00:00,2017,May,Monday,8,128,20,D51,Toronto,75,Church-Yonge Corridor (75),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,BIKE,,EL,1,,2300.0,STOLEN,8375,"{'type': 'Point', 'coordinates': (-79.38132262, 43.6667026)}"
-8376,390,GO-20179006315,THEFT UNDER - BICYCLE,2017-05-13T00:00:00,2017,May,Saturday,13,133,18,2017-05-15T00:00:00,2017,May,Monday,15,135,9,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,A FRAME,RG,1,ONG,700.0,STOLEN,8376,"{'type': 'Point', 'coordinates': (-79.37215317, 43.64913066)}"
-8377,412,GO-20179006535,THEFT UNDER - BICYCLE,2017-05-17T00:00:00,2017,May,Wednesday,17,137,7,2017-05-17T00:00:00,2017,May,Wednesday,17,137,19,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,YUKON 750,EL,7,BLK,1800.0,STOLEN,8377,"{'type': 'Point', 'coordinates': (-79.37894504, 43.65169174)}"
-8378,428,GO-20179006665,THEFT UNDER,2017-05-16T00:00:00,2017,May,Tuesday,16,136,22,2017-05-19T00:00:00,2017,May,Friday,19,139,17,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,15,RED,75.0,STOLEN,8378,"{'type': 'Point', 'coordinates': (-79.38091931, 43.66572241)}"
-8379,446,GO-20179006796,THEFT UNDER - BICYCLE,2017-05-18T00:00:00,2017,May,Thursday,18,138,7,2017-05-22T00:00:00,2017,May,Monday,22,142,13,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,ROUBAIX,RC,22,BLK,1800.0,STOLEN,8379,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-8380,460,GO-20179006893,THEFT UNDER - BICYCLE,2017-05-22T00:00:00,2017,May,Monday,22,142,20,2017-05-24T00:00:00,2017,May,Wednesday,24,144,12,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,POCKET ROCKET,FO,24,BLK,1200.0,STOLEN,8380,"{'type': 'Point', 'coordinates': (-79.37796823, 43.66213714)}"
-8381,3335,GO-20181587291,THEFT UNDER - BICYCLE,2018-08-27T00:00:00,2018,August,Monday,27,239,21,2018-08-27T00:00:00,2018,August,Monday,27,239,21,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,MT,10,BLK,,STOLEN,8381,"{'type': 'Point', 'coordinates': (-79.38245382, 43.66941071)}"
-8382,461,GO-20179006893,THEFT UNDER - BICYCLE,2017-05-22T00:00:00,2017,May,Monday,22,142,20,2017-05-24T00:00:00,2017,May,Wednesday,24,144,12,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,SPEED PRO,FO,24,ONG,1000.0,STOLEN,8382,"{'type': 'Point', 'coordinates': (-79.37796823, 43.66213714)}"
-8383,488,GO-20179007083,THEFT UNDER,2017-05-12T00:00:00,2017,May,Friday,12,132,17,2017-05-27T00:00:00,2017,May,Saturday,27,147,17,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,CA,XR1000,RC,18,SIL,1100.0,STOLEN,8383,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-8384,495,GO-2017941246,THEFT UNDER - BICYCLE,2017-05-27T00:00:00,2017,May,Saturday,27,147,17,2017-05-28T00:00:00,2017,May,Sunday,28,148,11,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,VERVE 1,RG,18,BLK,550.0,STOLEN,8384,"{'type': 'Point', 'coordinates': (-79.38091931, 43.66572241)}"
-8385,497,GO-2017950312,THEFT UNDER - BICYCLE,2017-05-28T00:00:00,2017,May,Sunday,28,148,20,2017-05-29T00:00:00,2017,May,Monday,29,149,18,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,SCHWINN,700C GTXSP,OT,21,RED,400.0,STOLEN,8385,"{'type': 'Point', 'coordinates': (-79.37830693, 43.66628508)}"
-8386,498,GO-20179007142,THEFT UNDER - BICYCLE,2017-05-28T00:00:00,2017,May,Sunday,28,148,17,2017-05-29T00:00:00,2017,May,Monday,29,149,0,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,REEBOK,MT,24,BLK,400.0,STOLEN,8386,"{'type': 'Point', 'coordinates': (-79.37700237, 43.66017519)}"
-8387,506,GO-20179007220,THEFT UNDER,2017-05-29T00:00:00,2017,May,Monday,29,149,17,2017-05-30T00:00:00,2017,May,Tuesday,30,150,10,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,,RG,20,,200.0,STOLEN,8387,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-8388,520,GO-20179006535,THEFT UNDER - BICYCLE,2017-05-17T00:00:00,2017,May,Wednesday,17,137,7,2017-05-17T00:00:00,2017,May,Wednesday,17,137,19,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,YUKON 750,EL,7,BLK,2000.0,STOLEN,8388,"{'type': 'Point', 'coordinates': (-79.37894504, 43.65169174)}"
-8389,525,GO-20179007434,THEFT UNDER,2017-06-01T00:00:00,2017,June,Thursday,1,152,2,2017-06-03T00:00:00,2017,June,Saturday,3,154,13,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,1,BLK,0.0,STOLEN,8389,"{'type': 'Point', 'coordinates': (-79.38007115, 43.66369728000001)}"
-8390,533,GO-20179007477,THEFT UNDER,2017-06-04T00:00:00,2017,June,Sunday,4,155,1,2017-06-04T00:00:00,2017,June,Sunday,4,155,15,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,TO,10,BLK,100.0,STOLEN,8390,"{'type': 'Point', 'coordinates': (-79.38334664, 43.66205466)}"
-8391,540,GO-20179007529,THEFT UNDER - BICYCLE,2017-06-05T00:00:00,2017,June,Monday,5,156,17,2017-06-05T00:00:00,2017,June,Monday,5,156,19,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,OT,THIN,EL,35,BLK,900.0,STOLEN,8391,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-8392,549,GO-20179007626,THEFT UNDER - BICYCLE,2017-06-06T00:00:00,2017,June,Tuesday,6,157,8,2017-06-06T00:00:00,2017,June,Tuesday,6,157,15,D51,Toronto,75,Church-Yonge Corridor (75),Schools During Supervised Activity,Educational,CC,,RG,14,BLU,500.0,STOLEN,8392,"{'type': 'Point', 'coordinates': (-79.37781507, 43.65821091)}"
-8393,611,GO-20179008065,THEFT UNDER - BICYCLE,2017-06-12T00:00:00,2017,June,Monday,12,163,8,2017-06-14T00:00:00,2017,June,Wednesday,14,165,8,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RC,21,BLK,1000.0,STOLEN,8393,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-8394,618,GO-20179008077,THEFT UNDER - BICYCLE,2017-06-14T00:00:00,2017,June,Wednesday,14,165,7,2017-06-14T00:00:00,2017,June,Wednesday,14,165,13,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,CRUISER SIX,RG,6,BLK,500.0,STOLEN,8394,"{'type': 'Point', 'coordinates': (-79.3749313, 43.65514877)}"
-8395,643,GO-20179008314,THEFT UNDER - BICYCLE,2017-06-15T00:00:00,2017,June,Thursday,15,166,9,2017-06-17T00:00:00,2017,June,Saturday,17,168,18,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,GENESIS 5.0,OT,28,BLK,600.0,STOLEN,8395,"{'type': 'Point', 'coordinates': (-79.37662709, 43.65297714)}"
-8396,645,GO-20179008321,THEFT UNDER - BICYCLE,2017-06-16T00:00:00,2017,June,Friday,16,167,19,2017-06-17T00:00:00,2017,June,Saturday,17,168,19,D51,Toronto,75,Church-Yonge Corridor (75),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,1290,RG,5,BLK,900.0,STOLEN,8396,"{'type': 'Point', 'coordinates': (-79.38091931, 43.66572241)}"
-8397,672,GO-20171110260,THEFT UNDER - BICYCLE,2017-06-21T00:00:00,2017,June,Wednesday,21,172,19,2017-06-21T00:00:00,2017,June,Wednesday,21,172,19,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MARINONI,,MT,12,BLU,2000.0,STOLEN,8397,"{'type': 'Point', 'coordinates': (-79.38007115, 43.66369728000001)}"
-8398,674,GO-20179008531,THEFT UNDER - BICYCLE,2017-06-19T00:00:00,2017,June,Monday,19,170,13,2017-06-20T00:00:00,2017,June,Tuesday,20,171,21,D51,Toronto,75,Church-Yonge Corridor (75),Schools During Supervised Activity,Educational,CC,700C VECTOR,OT,21,LBL,500.0,STOLEN,8398,"{'type': 'Point', 'coordinates': (-79.37953592, 43.65629127)}"
-8399,681,GO-20179008623,THEFT UNDER - BICYCLE,2017-06-10T00:00:00,2017,June,Saturday,10,161,14,2017-06-20T00:00:00,2017,June,Tuesday,20,171,23,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,RG,18,BLU,400.0,STOLEN,8399,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-8400,726,GO-20179008973,THEFT UNDER - BICYCLE,2017-06-26T00:00:00,2017,June,Monday,26,177,21,2017-06-26T00:00:00,2017,June,Monday,26,177,22,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,TO,24,RED,1000.0,STOLEN,8400,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-8401,759,GO-20179009279,THEFT UNDER,2017-07-01T00:00:00,2017,July,Saturday,1,182,22,2017-07-02T00:00:00,2017,July,Sunday,2,183,14,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,STEP THROUGH SC,RG,7,DBL,250.0,STOLEN,8401,"{'type': 'Point', 'coordinates': (-79.37562599, 43.6568205)}"
-8402,997,GO-20179011197,THEFT UNDER - BICYCLE,2017-07-27T00:00:00,2017,July,Thursday,27,208,20,2017-07-27T00:00:00,2017,July,Thursday,27,208,23,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,UK,,OT,1,YEL,500.0,STOLEN,8418,"{'type': 'Point', 'coordinates': (-79.37652171000002, 43.65664882)}"
-8403,761,GO-20179009306,THEFT UNDER - BICYCLE,2017-07-01T00:00:00,2017,July,Saturday,1,182,23,2017-07-02T00:00:00,2017,July,Sunday,2,183,22,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,1,BLK,75.0,STOLEN,8402,"{'type': 'Point', 'coordinates': (-79.37652171000002, 43.65664882)}"
-8404,762,GO-20179009306,THEFT UNDER - BICYCLE,2017-07-01T00:00:00,2017,July,Saturday,1,182,23,2017-07-02T00:00:00,2017,July,Sunday,2,183,22,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RC,18,BLK,500.0,STOLEN,8403,"{'type': 'Point', 'coordinates': (-79.37652171000002, 43.65664882)}"
-8405,784,GO-20179009527,THEFT UNDER - BICYCLE,2017-07-04T00:00:00,2017,July,Tuesday,4,185,23,2017-07-05T00:00:00,2017,July,Wednesday,5,186,19,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,RA,REVENIO 1.0,RC,11,SIL,600.0,STOLEN,8404,"{'type': 'Point', 'coordinates': (-79.37562599, 43.6568205)}"
-8406,786,GO-20179009546,THEFT UNDER - BICYCLE,2017-07-03T00:00:00,2017,July,Monday,3,184,9,2017-07-06T00:00:00,2017,July,Thursday,6,187,9,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,1,SIL,500.0,STOLEN,8405,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-8407,788,GO-20179009533,THEFT UNDER - BICYCLE,2017-07-05T00:00:00,2017,July,Wednesday,5,186,9,2017-07-05T00:00:00,2017,July,Wednesday,5,186,19,D51,Toronto,75,Church-Yonge Corridor (75),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,GI,ROAM 1,MT,30,BLK,800.0,STOLEN,8406,"{'type': 'Point', 'coordinates': (-79.3745937, 43.65047389)}"
-8408,818,GO-20179009811,THEFT UNDER - BICYCLE,2017-06-04T00:00:00,2017,June,Sunday,4,155,1,2017-07-09T00:00:00,2017,July,Sunday,9,190,18,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,HYBRID,TO,18,BLK,650.0,STOLEN,8407,"{'type': 'Point', 'coordinates': (-79.38581622, 43.66799576)}"
-8409,822,GO-20179009736,THEFT UNDER - BICYCLE,2017-07-08T00:00:00,2017,July,Saturday,8,189,16,2017-07-08T00:00:00,2017,July,Saturday,8,189,18,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,FELT Z95 51CM,OT,24,WHI,1000.0,STOLEN,8408,"{'type': 'Point', 'coordinates': (-79.37943497, 43.65603477)}"
-8410,826,GO-20179009875,THEFT UNDER - BICYCLE,2017-07-07T00:00:00,2017,July,Friday,7,188,18,2017-07-10T00:00:00,2017,July,Monday,10,191,16,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,FJ,CROSSTOWN,RG,30,DBL,600.0,STOLEN,8409,"{'type': 'Point', 'coordinates': (-79.38334664, 43.66205466)}"
-8411,852,GO-20171249273,THEFT UNDER - BICYCLE,2017-07-12T00:00:00,2017,July,Wednesday,12,193,13,2017-07-14T00:00:00,2017,July,Friday,14,195,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,WOMEN'S HYBRID,OT,24,BLK,650.0,STOLEN,8410,"{'type': 'Point', 'coordinates': (-79.38091931, 43.66572241)}"
-8412,867,GO-20179010249,THEFT UNDER - BICYCLE,2017-07-14T00:00:00,2017,July,Friday,14,195,14,2017-07-15T00:00:00,2017,July,Saturday,15,196,11,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,CROSS TRAIL,RG,15,BLK,849.0,STOLEN,8411,"{'type': 'Point', 'coordinates': (-79.37516377, 43.6518061)}"
-8413,886,GO-20179010371,THEFT UNDER - BICYCLE,2017-07-16T00:00:00,2017,July,Sunday,16,197,21,2017-07-17T00:00:00,2017,July,Monday,17,198,10,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KO,DEW PLUS,OT,24,GRN,900.0,STOLEN,8412,"{'type': 'Point', 'coordinates': (-79.37215317, 43.64913066)}"
-8414,899,GO-20179010446,THEFT UNDER,2017-07-17T00:00:00,2017,July,Monday,17,198,22,2017-07-18T00:00:00,2017,July,Tuesday,18,199,1,D51,Toronto,75,Church-Yonge Corridor (75),Unknown,Other,CC,,MT,21,RED,650.0,STOLEN,8413,"{'type': 'Point', 'coordinates': (-79.3774505, 43.65131026)}"
-8415,900,GO-20179010446,THEFT UNDER,2017-07-17T00:00:00,2017,July,Monday,17,198,22,2017-07-18T00:00:00,2017,July,Tuesday,18,199,1,D51,Toronto,75,Church-Yonge Corridor (75),Unknown,Other,CC,,MT,21,BLK,639.0,STOLEN,8414,"{'type': 'Point', 'coordinates': (-79.3774505, 43.65131026)}"
-8416,922,GO-20179010564,THEFT UNDER,2017-07-18T00:00:00,2017,July,Tuesday,18,199,1,2017-07-19T00:00:00,2017,July,Wednesday,19,200,9,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,GALAXY,TO,10,BRN,400.0,STOLEN,8415,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-8417,941,GO-20179010749,THEFT UNDER - BICYCLE,2017-06-01T00:00:00,2017,June,Thursday,1,152,14,2017-07-23T00:00:00,2017,July,Sunday,23,204,14,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,RC,21,PNK,900.0,STOLEN,8416,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-8418,971,GO-20179010994,THEFT UNDER - BICYCLE,2017-07-25T00:00:00,2017,July,Tuesday,25,206,10,2017-07-25T00:00:00,2017,July,Tuesday,25,206,14,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RM,TRAILHEAD,MT,24,BLK,500.0,STOLEN,8417,"{'type': 'Point', 'coordinates': (-79.37894504, 43.65169174)}"
-8419,1013,GO-20171350351,THEFT FROM MOTOR VEHICLE UNDER,2017-07-28T00:00:00,2017,July,Friday,28,209,10,2017-07-31T00:00:00,2017,July,Monday,31,212,21,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CANNONDALE,6,OT,24,BLUBLK,3200.0,STOLEN,8419,"{'type': 'Point', 'coordinates': (-79.37543679, 43.65246584)}"
-8420,1014,GO-20171350351,THEFT FROM MOTOR VEHICLE UNDER,2017-07-28T00:00:00,2017,July,Friday,28,209,10,2017-07-31T00:00:00,2017,July,Monday,31,212,21,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CANNONDALE,SYNAPSE,OT,24,BLUWHI,1500.0,STOLEN,8420,"{'type': 'Point', 'coordinates': (-79.37543679, 43.65246584)}"
-8421,1021,GO-20179011409,THEFT UNDER - BICYCLE,2017-07-30T00:00:00,2017,July,Sunday,30,211,23,2017-07-31T00:00:00,2017,July,Monday,31,212,19,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,CCM ENDURANCE 7,RC,14,BLK,550.0,STOLEN,8421,"{'type': 'Point', 'coordinates': (-79.37783798, 43.66217202)}"
-8422,1138,GO-20179012301,THEFT UNDER - BICYCLE,2017-08-13T00:00:00,2017,August,Sunday,13,225,11,2017-08-13T00:00:00,2017,August,Sunday,13,225,12,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,CA,,RG,35,GRY,1000.0,RECOVERED,8422,"{'type': 'Point', 'coordinates': (-79.38245382, 43.66941071)}"
-8423,1140,GO-20179012318,THEFT UNDER - BICYCLE,2017-08-13T00:00:00,2017,August,Sunday,13,225,18,2017-08-13T00:00:00,2017,August,Sunday,13,225,19,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,"LAVA DOME 29""""",MT,24,BLK,750.0,STOLEN,8423,"{'type': 'Point', 'coordinates': (-79.37382409, 43.64862739)}"
-8424,1148,GO-20179012411,THEFT UNDER,2017-08-12T00:00:00,2017,August,Saturday,12,224,15,2017-08-14T00:00:00,2017,August,Monday,14,226,19,D51,Toronto,75,Church-Yonge Corridor (75),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,FJ,CROSSTOWN,OT,21,DGR,537.0,STOLEN,8424,"{'type': 'Point', 'coordinates': (-79.38338195, 43.66213624)}"
-8425,1150,GO-20179012434,THEFT UNDER - BICYCLE,2017-08-14T00:00:00,2017,August,Monday,14,226,23,2017-08-15T00:00:00,2017,August,Tuesday,15,227,8,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,MT,21,BLK,300.0,STOLEN,8425,"{'type': 'Point', 'coordinates': (-79.37516377, 43.6518061)}"
-8426,1156,GO-20179012510,THEFT UNDER - BICYCLE,2017-08-15T00:00:00,2017,August,Tuesday,15,227,10,2017-08-15T00:00:00,2017,August,Tuesday,15,227,20,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,FX 3 WM,RG,21,BLK,700.0,STOLEN,8426,"{'type': 'Point', 'coordinates': (-79.37667701, 43.66241871)}"
-8427,1173,GO-20179012699,THEFT UNDER - BICYCLE,2017-08-13T00:00:00,2017,August,Sunday,13,225,7,2017-08-18T00:00:00,2017,August,Friday,18,230,8,D51,Toronto,75,Church-Yonge Corridor (75),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,TR,DOMANE 2.0,RC,21,WHI,1300.0,STOLEN,8427,"{'type': 'Point', 'coordinates': (-79.37691204, 43.65291764)}"
-8428,1175,GO-20171495774,THEFT UNDER - BICYCLE,2017-08-18T00:00:00,2017,August,Friday,18,230,13,2017-08-18T00:00:00,2017,August,Friday,18,230,21,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,FO,9,GRY,,STOLEN,8428,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-8429,1198,GO-20179012907,THEFT UNDER - BICYCLE,2017-08-09T00:00:00,2017,August,Wednesday,9,221,8,2017-08-21T00:00:00,2017,August,Monday,21,233,11,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,,TO,24,,500.0,STOLEN,8429,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-8430,1199,GO-20179012925,THEFT UNDER - BICYCLE,2017-08-18T00:00:00,2017,August,Friday,18,230,17,2017-08-21T00:00:00,2017,August,Monday,21,233,13,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,RM,,MT,9,WHI,2000.0,STOLEN,8430,"{'type': 'Point', 'coordinates': (-79.37583535, 43.65495451)}"
-8431,1209,GO-20179012997,THEFT UNDER - BICYCLE,2017-08-20T00:00:00,2017,August,Sunday,20,232,23,2017-08-22T00:00:00,2017,August,Tuesday,22,234,8,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,UK,,TO,15,WHI,500.0,STOLEN,8431,"{'type': 'Point', 'coordinates': (-79.37830573, 43.66310625)}"
-8432,1210,GO-20179012997,THEFT UNDER - BICYCLE,2017-08-20T00:00:00,2017,August,Sunday,20,232,23,2017-08-22T00:00:00,2017,August,Tuesday,22,234,8,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,UK,,TO,12,DBL,500.0,STOLEN,8432,"{'type': 'Point', 'coordinates': (-79.37830573, 43.66310625)}"
-8433,3497,GO-20189030872,THEFT UNDER - BICYCLE,2018-09-08T00:00:00,2018,September,Saturday,8,251,18,2018-09-18T00:00:00,2018,September,Tuesday,18,261,4,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,SC,GTX-2 700C,RG,21,BLK,400.0,STOLEN,8456,"{'type': 'Point', 'coordinates': (-79.38411783, 43.66390399)}"
-8434,1221,GO-20179013084,THEFT UNDER - BICYCLE,2017-08-22T00:00:00,2017,August,Tuesday,22,234,9,2017-08-22T00:00:00,2017,August,Tuesday,22,234,21,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,OT,7,BLK,1500.0,STOLEN,8433,"{'type': 'Point', 'coordinates': (-79.38277088, 43.67016017)}"
-8435,1234,GO-20179013193,THEFT UNDER - BICYCLE,2017-08-23T00:00:00,2017,August,Wednesday,23,235,21,2017-08-24T00:00:00,2017,August,Thursday,24,236,1,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,OT,2167,RG,1,WHI,280.0,STOLEN,8434,"{'type': 'Point', 'coordinates': (-79.38565257, 43.66756225)}"
-8436,1238,GO-20179013084,THEFT UNDER - BICYCLE,2017-08-22T00:00:00,2017,August,Tuesday,22,234,9,2017-08-22T00:00:00,2017,August,Tuesday,22,234,21,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,OT,7,,1500.0,STOLEN,8435,"{'type': 'Point', 'coordinates': (-79.38277088, 43.67016017)}"
-8437,1266,GO-20179013586,THEFT UNDER - BICYCLE,2017-08-27T00:00:00,2017,August,Sunday,27,239,18,2017-08-29T00:00:00,2017,August,Tuesday,29,241,10,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,MOUNTAINEER,MT,21,,50.0,STOLEN,8436,"{'type': 'Point', 'coordinates': (-79.38159626, 43.66440307)}"
-8438,1278,GO-20179013789,THEFT UNDER - BICYCLE,2017-09-01T00:00:00,2017,September,Friday,1,244,17,2017-09-01T00:00:00,2017,September,Friday,1,244,17,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,FX 3,OT,10,,700.0,STOLEN,8437,"{'type': 'Point', 'coordinates': (-79.37662709, 43.65297714)}"
-8439,1280,GO-20179013797,B&E,2017-08-07T00:00:00,2017,August,Monday,7,219,23,2017-08-31T00:00:00,2017,August,Thursday,31,243,23,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,ALLEZ,TO,10,WHI,2500.0,STOLEN,8438,"{'type': 'Point', 'coordinates': (-79.37562599, 43.6568205)}"
-8440,1285,GO-20171585501,THEFT UNDER - BICYCLE,2017-08-24T00:00:00,2017,August,Thursday,24,236,20,2017-09-01T00:00:00,2017,September,Friday,1,244,18,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,DS 8.2,OT,10,,830.0,STOLEN,8439,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-8441,4438,GO-20199017917,THEFT UNDER,2019-06-08T00:00:00,2019,June,Saturday,8,159,22,2019-06-09T00:00:00,2019,June,Sunday,9,160,1,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,15,,0.0,STOLEN,8520,"{'type': 'Point', 'coordinates': (-79.37562599, 43.6568205)}"
-8442,1292,GO-20179013894,THEFT UNDER - BICYCLE,2017-09-02T00:00:00,2017,September,Saturday,2,245,15,2017-09-02T00:00:00,2017,September,Saturday,2,245,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,TRAIL X 2015,MT,21,BLK,400.0,STOLEN,8440,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-8443,1300,GO-20179013937,THEFT UNDER - BICYCLE,2017-09-01T00:00:00,2017,September,Friday,1,244,17,2017-09-03T00:00:00,2017,September,Sunday,3,246,19,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,10,BLU,240.0,STOLEN,8441,"{'type': 'Point', 'coordinates': (-79.3774505, 43.65131026)}"
-8444,10390,GO-20159006657,B&E,2015-08-21T00:00:00,2015,August,Friday,21,233,22,2015-09-02T00:00:00,2015,September,Wednesday,2,245,14,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,EM,URBAN,SC,30,BLK,1250.0,STOLEN,8442,"{'type': 'Point', 'coordinates': (-79.37513727, 43.66825437)}"
-8445,4563,GO-20191133879,B&E,2019-06-19T00:00:00,2019,June,Wednesday,19,170,0,2019-06-21T00:00:00,2019,June,Friday,21,172,10,D51,Toronto,75,Church-Yonge Corridor (75),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,OT,0,BLKGRN,,STOLEN,8443,"{'type': 'Point', 'coordinates': (-79.37900573, 43.66793407)}"
-8446,17105,GO-20189031183,THEFT UNDER,2018-09-17T00:00:00,2018,September,Monday,17,260,17,2018-09-19T00:00:00,2018,September,Wednesday,19,262,20,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,OT,HYBRID,OT,21,BLK,1200.0,STOLEN,8444,"{'type': 'Point', 'coordinates': (-79.37646069, 43.66642862)}"
-8447,3337,GO-20189028153,THEFT UNDER - BICYCLE,2018-08-27T00:00:00,2018,August,Monday,27,239,0,2018-08-27T00:00:00,2018,August,Monday,27,239,15,D51,Toronto,75,Church-Yonge Corridor (75),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,BA,,RG,1,,1000.0,STOLEN,8445,"{'type': 'Point', 'coordinates': (-79.38159626, 43.66440307)}"
-8448,3341,GO-20189028222,THEFT UNDER - BICYCLE,2018-08-24T00:00:00,2018,August,Friday,24,236,21,2018-08-28T00:00:00,2018,August,Tuesday,28,240,10,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,RG,35,,800.0,STOLEN,8446,"{'type': 'Point', 'coordinates': (-79.37787874, 43.64914837)}"
-8449,3347,GO-20189028416,THEFT UNDER - BICYCLE,2018-08-10T00:00:00,2018,August,Friday,10,222,19,2018-08-29T00:00:00,2018,August,Wednesday,29,241,11,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,,RG,18,WHI,200.0,STOLEN,8447,"{'type': 'Point', 'coordinates': (-79.37691204, 43.65291764)}"
-8450,3351,GO-20189028432,THEFT UNDER - BICYCLE,2018-08-29T00:00:00,2018,August,Wednesday,29,241,10,2018-08-29T00:00:00,2018,August,Wednesday,29,241,13,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,820 WSD,MT,7,LBL,800.0,STOLEN,8448,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-8451,3381,GO-20181629579,PROPERTY - FOUND,2018-09-02T00:00:00,2018,September,Sunday,2,245,0,2018-09-03T00:00:00,2018,September,Monday,3,246,8,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,REVEL,MT,21,BLK,,UNKNOWN,8449,"{'type': 'Point', 'coordinates': (-79.3763333, 43.65225839)}"
-8452,3393,GO-20181637253,THEFT UNDER - BICYCLE,2018-09-04T00:00:00,2018,September,Tuesday,4,247,13,2018-09-04T00:00:00,2018,September,Tuesday,4,247,14,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,JAMIS,HYBRID,RC,24,GRY,600.0,STOLEN,8450,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-8453,3396,GO-20189029226,THEFT UNDER - BICYCLE,2018-08-22T00:00:00,2018,August,Wednesday,22,234,12,2018-09-05T00:00:00,2018,September,Wednesday,5,248,22,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,MT,18,WHI,300.0,STOLEN,8451,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-8454,3404,GO-20189029354,THEFT UNDER - BICYCLE,2018-09-06T00:00:00,2018,September,Thursday,6,249,7,2018-09-06T00:00:00,2018,September,Thursday,6,249,16,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,1.1,RC,12,BLK,1000.0,STOLEN,8452,"{'type': 'Point', 'coordinates': (-79.38052643, 43.67161072)}"
-8455,3408,GO-20189029413,THEFT UNDER - BICYCLE,2018-09-06T00:00:00,2018,September,Thursday,6,249,23,2018-09-06T00:00:00,2018,September,Thursday,6,249,23,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,RA,,MT,5,BLK,300.0,STOLEN,8453,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-8456,3412,GO-20189029400,THEFT UNDER - BICYCLE,2018-09-05T00:00:00,2018,September,Wednesday,5,248,20,2018-09-06T00:00:00,2018,September,Thursday,6,249,22,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,21,DBL,500.0,STOLEN,8454,"{'type': 'Point', 'coordinates': (-79.37872961, 43.654321780000004)}"
-8457,3416,GO-20189029491,THEFT UNDER - BICYCLE,2018-09-07T00:00:00,2018,September,Friday,7,250,16,2018-09-07T00:00:00,2018,September,Friday,7,250,16,D51,Toronto,75,Church-Yonge Corridor (75),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,GI,,RG,21,GRY,650.0,STOLEN,8455,"{'type': 'Point', 'coordinates': (-79.37691204, 43.65291764)}"
-8458,3513,GO-20181736381,THEFT OF EBIKE UNDER $5000,2018-09-09T00:00:00,2018,September,Sunday,9,252,21,2018-09-19T00:00:00,2018,September,Wednesday,19,262,11,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,EL,3,BLKONG,1500.0,STOLEN,8457,"{'type': 'Point', 'coordinates': (-79.37633027, 43.65851354)}"
-8459,3535,GO-20189031456,THEFT UNDER - BICYCLE,2018-09-19T00:00:00,2018,September,Wednesday,19,262,12,2018-09-21T00:00:00,2018,September,Friday,21,264,18,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,TR,ZEKTOR 2,RG,8,BLK,1000.0,STOLEN,8458,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-8460,3554,GO-20189031925,THEFT UNDER - BICYCLE,2018-09-24T00:00:00,2018,September,Monday,24,267,17,2018-09-25T00:00:00,2018,September,Tuesday,25,268,22,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,DX-5000,RC,1,PLE,2000.0,STOLEN,8459,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-8461,3566,GO-20189032119,THEFT UNDER - BICYCLE,2018-09-24T00:00:00,2018,September,Monday,24,267,16,2018-09-27T00:00:00,2018,September,Thursday,27,270,14,D51,Toronto,75,Church-Yonge Corridor (75),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,UK,,RG,3,,150.0,STOLEN,8460,"{'type': 'Point', 'coordinates': (-79.37953592, 43.65629127)}"
-8462,3572,GO-20189032284,THEFT UNDER - BICYCLE,2018-09-28T00:00:00,2018,September,Friday,28,271,13,2018-09-28T00:00:00,2018,September,Friday,28,271,17,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,MARLIN 5,MT,21,RED,500.0,STOLEN,8461,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-8463,3577,GO-20189032374,THEFT UNDER - BICYCLE,2018-09-22T00:00:00,2018,September,Saturday,22,265,21,2018-09-29T00:00:00,2018,September,Saturday,29,272,16,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,RINCON DISC 201,MT,24,WHI,400.0,STOLEN,8462,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-8464,3582,GO-20189032456,THEFT UNDER - BICYCLE,2018-09-20T00:00:00,2018,September,Thursday,20,263,7,2018-09-30T00:00:00,2018,September,Sunday,30,273,21,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SIRRUS XL,OT,21,GRY,650.0,STOLEN,8463,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-8465,3600,GO-20189032682,THEFT UNDER - BICYCLE,2018-09-30T00:00:00,2018,September,Sunday,30,273,12,2018-10-02T00:00:00,2018,October,Tuesday,2,275,14,D51,Toronto,75,Church-Yonge Corridor (75),Convenience Stores,Commercial,UK,DEL SOL PROJEKT,RG,8,BLU,600.0,STOLEN,8464,"{'type': 'Point', 'coordinates': (-79.37787874, 43.64914837)}"
-8466,3610,GO-20189032771,THEFT UNDER - BICYCLE,2018-10-02T00:00:00,2018,October,Tuesday,2,275,19,2018-10-03T00:00:00,2018,October,Wednesday,3,276,12,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,UK,,RC,15,ONG,400.0,STOLEN,8465,"{'type': 'Point', 'coordinates': (-79.37953592, 43.65629127)}"
-8467,3613,GO-20189032850,THEFT UNDER - BICYCLE,2018-10-03T00:00:00,2018,October,Wednesday,3,276,8,2018-10-03T00:00:00,2018,October,Wednesday,3,276,22,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,,RG,8,BLK,200.0,STOLEN,8466,"{'type': 'Point', 'coordinates': (-79.37760867, 43.64852311)}"
-8468,3625,GO-20189033080,THEFT UNDER - BICYCLE,2018-10-05T00:00:00,2018,October,Friday,5,278,20,2018-10-05T00:00:00,2018,October,Friday,5,278,23,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,OT,VENTURE,MT,18,DBL,0.0,STOLEN,8467,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-8469,3651,GO-20189033468,THEFT UNDER - BICYCLE,2018-10-05T00:00:00,2018,October,Friday,5,278,13,2018-10-10T00:00:00,2018,October,Wednesday,10,283,11,D51,Toronto,75,Church-Yonge Corridor (75),"Construction Site (Warehouse, Trailer, Shed)",Commercial,RA,,RG,3,BLK,150.0,STOLEN,8468,"{'type': 'Point', 'coordinates': (-79.37600691000002, 43.64815434)}"
-8470,3659,GO-20189033578,THEFT UNDER - BICYCLE,2018-10-10T00:00:00,2018,October,Wednesday,10,283,16,2018-10-10T00:00:00,2018,October,Wednesday,10,283,22,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,OT,18,BLK,650.0,STOLEN,8469,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-8471,3690,GO-20189033886,THEFT UNDER - BICYCLE,2018-10-12T00:00:00,2018,October,Friday,12,285,16,2018-10-12T00:00:00,2018,October,Friday,12,285,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,KATO,MT,24,BLK,800.0,STOLEN,8470,"{'type': 'Point', 'coordinates': (-79.37843045, 43.65040714)}"
-8472,3698,GO-20181888687,THEFT UNDER - BICYCLE,2018-10-01T00:00:00,2018,October,Monday,1,274,2,2018-10-12T00:00:00,2018,October,Friday,12,285,21,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,AGGRESSOR COMP,MT,0,BLK,600.0,STOLEN,8471,"{'type': 'Point', 'coordinates': (-79.37573379, 43.65316827000001)}"
-8473,3699,GO-20189034005,THEFT UNDER - BICYCLE,2018-10-13T00:00:00,2018,October,Saturday,13,286,13,2018-10-13T00:00:00,2018,October,Saturday,13,286,18,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ROCKJUMPER,MT,1,BLK,500.0,STOLEN,8472,"{'type': 'Point', 'coordinates': (-79.37643241, 43.65085158000001)}"
-8474,3709,GO-20189034363,THEFT UNDER - BICYCLE,2018-09-28T00:00:00,2018,September,Friday,28,271,21,2018-10-16T00:00:00,2018,October,Tuesday,16,289,23,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,FX 7.2,TO,24,BLK,500.0,STOLEN,8473,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-8475,3715,GO-20189034427,THEFT UNDER - BICYCLE,2018-07-17T00:00:00,2018,July,Tuesday,17,198,21,2018-10-17T00:00:00,2018,October,Wednesday,17,290,13,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ROAM 2,OT,21,GRY,800.0,STOLEN,8474,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-8476,3725,GO-20189034535,THEFT UNDER - BICYCLE,2018-10-18T00:00:00,2018,October,Thursday,18,291,8,2018-10-18T00:00:00,2018,October,Thursday,18,291,10,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,UK,825715-7004,RG,3,BLK,998.0,STOLEN,8475,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-8477,3732,GO-20189034784,THEFT UNDER - BICYCLE,2018-10-19T00:00:00,2018,October,Friday,19,292,11,2018-10-19T00:00:00,2018,October,Friday,19,292,19,D51,Toronto,75,Church-Yonge Corridor (75),Schools During Un-Supervised Activity,Educational,UK,,TO,12,DGR,900.0,STOLEN,8476,"{'type': 'Point', 'coordinates': (-79.37781507, 43.65821091)}"
-8478,3738,GO-20189034971,THEFT UNDER - BICYCLE,2018-10-21T00:00:00,2018,October,Sunday,21,294,16,2018-10-21T00:00:00,2018,October,Sunday,21,294,19,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MO,,RG,12,PNK,300.0,STOLEN,8477,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-8479,3763,GO-20181957230,THEFT UNDER - BICYCLE,2018-10-19T00:00:00,2018,October,Friday,19,292,16,2018-10-23T00:00:00,2018,October,Tuesday,23,296,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,NONE,RC,18,,860.0,STOLEN,8478,"{'type': 'Point', 'coordinates': (-79.37843045, 43.65040714)}"
-8480,3769,GO-20189035795,THEFT UNDER - BICYCLE,2018-10-22T00:00:00,2018,October,Monday,22,295,17,2018-10-27T00:00:00,2018,October,Saturday,27,300,11,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,NO,YORKVILLE STEP-,RG,21,PNK,600.0,STOLEN,8479,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-8481,3791,GO-20189036321,THEFT UNDER - BICYCLE,2018-10-30T00:00:00,2018,October,Tuesday,30,303,22,2018-10-30T00:00:00,2018,October,Tuesday,30,303,23,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,GREY/RED,RC,7,GRY,250.0,STOLEN,8480,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-8482,3805,GO-20181998498,THEFT UNDER - BICYCLE,2018-10-29T00:00:00,2018,October,Monday,29,302,18,2018-10-29T00:00:00,2018,October,Monday,29,302,21,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,RC,6,RED,500.0,STOLEN,8481,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-8483,3812,GO-20189036949,THEFT UNDER - BICYCLE,2018-10-26T00:00:00,2018,October,Friday,26,299,16,2018-11-05T00:00:00,2018,November,Monday,5,309,16,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,MT,24,LGR,1600.0,STOLEN,8482,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-8484,3896,GO-20189039702,THEFT UNDER - BICYCLE,2018-11-24T00:00:00,2018,November,Saturday,24,328,20,2018-11-25T00:00:00,2018,November,Sunday,25,329,12,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,SEEK 1 XL,RG,27,GRY,734.0,STOLEN,8483,"{'type': 'Point', 'coordinates': (-79.38245382, 43.66941071)}"
-8485,3905,GO-20189040115,THEFT UNDER - BICYCLE,2018-11-27T00:00:00,2018,November,Tuesday,27,331,12,2018-11-28T00:00:00,2018,November,Wednesday,28,332,14,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,UK,TRAXION,MT,15,BLK,350.0,STOLEN,8484,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-8486,3934,GO-20189041701,THEFT UNDER - BICYCLE,2018-12-11T00:00:00,2018,December,Tuesday,11,345,15,2018-12-11T00:00:00,2018,December,Tuesday,11,345,19,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,NO,HEART,RG,1,BLK,800.0,STOLEN,8485,"{'type': 'Point', 'coordinates': (-79.37700237, 43.66017519)}"
-8487,3947,GO-20189042609,B&E,2018-11-16T00:00:00,2018,November,Friday,16,320,20,2018-12-18T00:00:00,2018,December,Tuesday,18,352,20,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,RUBY,RC,16,WHI,1900.0,STOLEN,8486,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-8488,3958,GO-20182329351,THEFT UNDER - BICYCLE,2018-12-18T00:00:00,2018,December,Tuesday,18,352,18,2018-12-20T00:00:00,2018,December,Thursday,20,354,10,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,MT,1,BLK,500.0,STOLEN,8487,"{'type': 'Point', 'coordinates': (-79.37883347, 43.66067091000001)}"
-8489,3989,GO-20199000794,THEFT UNDER - BICYCLE,2019-01-07T00:00:00,2019,January,Monday,7,7,22,2019-01-07T00:00:00,2019,January,Monday,7,7,23,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,DAKOTA SPORT,MT,9,BLK,2200.0,STOLEN,8488,"{'type': 'Point', 'coordinates': (-79.37516377, 43.6518061)}"
-8490,4027,GO-20199003933,THEFT UNDER - BICYCLE,2018-05-01T00:00:00,2018,May,Tuesday,1,121,15,2019-01-29T00:00:00,2019,January,Tuesday,29,29,18,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,1,BLK,300.0,STOLEN,8489,"{'type': 'Point', 'coordinates': (-79.38334664, 43.66205466)}"
-8491,4046,GO-20199005194,THEFT UNDER - BICYCLE,2019-01-12T00:00:00,2019,January,Saturday,12,12,11,2019-02-12T00:00:00,2019,February,Tuesday,12,43,11,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,SIRRUS,OT,12,,2400.0,STOLEN,8490,"{'type': 'Point', 'coordinates': (-79.37639111, 43.64874921)}"
-8492,4047,GO-20199005265,THEFT UNDER - BICYCLE,2019-02-12T00:00:00,2019,February,Tuesday,12,43,16,2019-02-12T00:00:00,2019,February,Tuesday,12,43,17,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,SIRRUS CARBONFI,RC,12,BLK,2000.0,STOLEN,8491,"{'type': 'Point', 'coordinates': (-79.37639111, 43.64874921)}"
-8493,4048,GO-20199005265,THEFT UNDER - BICYCLE,2019-02-12T00:00:00,2019,February,Tuesday,12,43,16,2019-02-12T00:00:00,2019,February,Tuesday,12,43,17,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,SIRRUS CARBON,OT,12,,2000.0,STOLEN,8492,"{'type': 'Point', 'coordinates': (-79.37639111, 43.64874921)}"
-8494,4054,GO-2019303897,THEFT UNDER - BICYCLE,2019-02-16T00:00:00,2019,February,Saturday,16,47,21,2019-02-17T00:00:00,2019,February,Sunday,17,48,12,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNONW,6KU,RG,6,WHI,350.0,STOLEN,8493,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-8495,4074,GO-20199007095,THEFT UNDER - BICYCLE,2019-03-02T00:00:00,2019,March,Saturday,2,61,20,2019-03-02T00:00:00,2019,March,Saturday,2,61,23,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,UK,2018 APOLLO TRA,OT,24,GRY,420.0,STOLEN,8494,"{'type': 'Point', 'coordinates': (-79.37573379, 43.65316827000001)}"
-8496,4111,GO-20199009765,THEFT UNDER,2019-03-23T00:00:00,2019,March,Saturday,23,82,19,2019-03-26T00:00:00,2019,March,Tuesday,26,85,18,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,CC,,MT,7,YEL,500.0,STOLEN,8495,"{'type': 'Point', 'coordinates': (-79.37633027, 43.65851354)}"
-8497,4112,GO-20199009775,THEFT UNDER,2019-03-26T00:00:00,2019,March,Tuesday,26,85,18,2019-03-27T00:00:00,2019,March,Wednesday,27,86,10,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,30,RED,200.0,STOLEN,8496,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-8498,4128,GO-20199010553,THEFT UNDER,2019-03-31T00:00:00,2019,March,Sunday,31,90,18,2019-04-03T00:00:00,2019,April,Wednesday,3,93,18,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,TR,MADONE 3.1,TO,10,BLU,2000.0,STOLEN,8497,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-8499,4156,GO-2019657141,THEFT UNDER,2019-04-11T00:00:00,2019,April,Thursday,11,101,18,2019-04-11T00:00:00,2019,April,Thursday,11,101,22,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OTHER,,MT,18,BLKGRN,200.0,STOLEN,8498,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-8500,4164,GO-20199011750,THEFT UNDER,2019-04-13T00:00:00,2019,April,Saturday,13,103,10,2019-04-13T00:00:00,2019,April,Saturday,13,103,16,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,15,WHI,500.0,STOLEN,8499,"{'type': 'Point', 'coordinates': (-79.38411783, 43.66390399)}"
-8501,4201,GO-20199013059,THEFT UNDER,2019-04-25T00:00:00,2019,April,Thursday,25,115,8,2019-04-25T00:00:00,2019,April,Thursday,25,115,19,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,TESLA 2016,RG,8,ONG,1000.0,STOLEN,8500,"{'type': 'Point', 'coordinates': (-79.37787874, 43.64914837)}"
-8502,4202,GO-20199013086,THEFT UNDER,2019-04-25T00:00:00,2019,April,Thursday,25,115,20,2019-04-25T00:00:00,2019,April,Thursday,25,115,23,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,20,DBL,350.0,STOLEN,8501,"{'type': 'Point', 'coordinates': (-79.3811853, 43.65703802)}"
-8503,4203,GO-20199013161,THEFT UNDER,2019-04-26T00:00:00,2019,April,Friday,26,116,1,2019-04-26T00:00:00,2019,April,Friday,26,116,15,D51,Toronto,75,Church-Yonge Corridor (75),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,BRISTOL,OT,27,BLK,600.0,STOLEN,8502,"{'type': 'Point', 'coordinates': (-79.37883347, 43.66067091000001)}"
-8504,4243,GO-2019822450,THEFT UNDER - BICYCLE,2019-05-06T00:00:00,2019,May,Monday,6,126,7,2019-05-06T00:00:00,2019,May,Monday,6,126,18,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,18 CONTEND SL 1,TO,21,GRNGRY,1600.0,STOLEN,8503,"{'type': 'Point', 'coordinates': (-79.38245382, 43.66941071)}"
-8505,4288,GO-20199015329,THEFT UNDER,2019-05-10T00:00:00,2019,May,Friday,10,130,17,2019-05-16T00:00:00,2019,May,Thursday,16,136,19,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GI,RAPID 3,RG,7,GRY,1000.0,STOLEN,8504,"{'type': 'Point', 'coordinates': (-79.37883347, 43.66067091000001)}"
-8506,4298,GO-20199015512,THEFT UNDER,2019-05-17T00:00:00,2019,May,Friday,17,137,17,2019-05-18T00:00:00,2019,May,Saturday,18,138,9,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,RM,REAPER 2,MT,16,BLK,900.0,STOLEN,8505,"{'type': 'Point', 'coordinates': (-79.3749313, 43.65514877)}"
-8507,4304,GO-20199015684,THEFT UNDER,2019-05-19T00:00:00,2019,May,Sunday,19,139,0,2019-05-20T00:00:00,2019,May,Monday,20,140,15,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,UK,,FO,1,,100.0,STOLEN,8506,"{'type': 'Point', 'coordinates': (-79.37700237, 43.66017519)}"
-8508,4308,GO-20199015728,THEFT UNDER,2019-05-20T00:00:00,2019,May,Monday,20,140,12,2019-05-21T00:00:00,2019,May,Tuesday,21,141,10,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KH,,TO,10,ONG,1700.0,STOLEN,8507,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-8509,4314,GO-20199015772,THEFT UNDER,2019-05-17T00:00:00,2019,May,Friday,17,137,11,2019-05-21T00:00:00,2019,May,Tuesday,21,141,12,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,REVOLT 3,RG,21,GRY,700.0,STOLEN,8508,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-8510,4315,GO-20199015789,THEFT UNDER,2019-05-14T00:00:00,2019,May,Tuesday,14,134,18,2019-05-21T00:00:00,2019,May,Tuesday,21,141,16,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,KH,URBANXPRESS,RG,21,BLK,750.0,STOLEN,8509,"{'type': 'Point', 'coordinates': (-79.37953592, 43.65629127)}"
-8511,4322,GO-20199015882,THEFT UNDER,2019-05-22T00:00:00,2019,May,Wednesday,22,142,12,2019-05-22T00:00:00,2019,May,Wednesday,22,142,16,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,TR,FX3,RG,15,BLK,857.0,STOLEN,8510,"{'type': 'Point', 'coordinates': (-79.37872961, 43.654321780000004)}"
-8512,4323,GO-20199015948,THEFT UNDER,2019-05-22T00:00:00,2019,May,Wednesday,22,142,17,2019-05-22T00:00:00,2019,May,Wednesday,22,142,20,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,TR,DOMANE AL 2,TO,16,BLK,1020.0,STOLEN,8511,"{'type': 'Point', 'coordinates': (-79.37633027, 43.65851354)}"
-8513,4362,GO-20199016554,THEFT UNDER,2019-05-27T00:00:00,2019,May,Monday,27,147,18,2019-05-28T00:00:00,2019,May,Tuesday,28,148,0,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,LE MONTREAL,RG,7,BLK,,STOLEN,8512,"{'type': 'Point', 'coordinates': (-79.38091931, 43.66572241)}"
-8514,4377,GO-2019990047,B&E,2019-05-30T00:00:00,2019,May,Thursday,30,150,3,2019-05-30T00:00:00,2019,May,Thursday,30,150,10,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,CCM,,OT,10,BLU,,STOLEN,8513,"{'type': 'Point', 'coordinates': (-79.38159626, 43.66440307)}"
-8515,4394,GO-20199017118,THEFT UNDER,2019-05-26T00:00:00,2019,May,Sunday,26,146,14,2019-06-01T00:00:00,2019,June,Saturday,1,152,15,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,ROSSIN SYNTHESI,RC,10,LBL,1600.0,STOLEN,8514,"{'type': 'Point', 'coordinates': (-79.37516377, 43.6518061)}"
-8516,4398,GO-20199017159,THEFT UNDER,2019-05-17T00:00:00,2019,May,Friday,17,137,20,2019-06-02T00:00:00,2019,June,Sunday,2,153,12,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,RM,VERTEX 10,MT,21,BLU,0.0,STOLEN,8515,"{'type': 'Point', 'coordinates': (-79.38581622, 43.66799576)}"
-8517,4399,GO-20191015028,THEFT OF EBIKE UNDER $5000,2019-06-02T00:00:00,2019,June,Sunday,2,153,11,2019-06-02T00:00:00,2019,June,Sunday,2,153,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,AMIGO,,EL,5,SIL,2400.0,STOLEN,8516,"{'type': 'Point', 'coordinates': (-79.3738772, 43.65536132)}"
-8518,4409,GO-20199017434,THEFT UNDER,2019-06-04T00:00:00,2019,June,Tuesday,4,155,18,2019-06-04T00:00:00,2019,June,Tuesday,4,155,22,D52,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,WMC-T26-1206,RG,35,LGR,178.0,STOLEN,8517,"{'type': 'Point', 'coordinates': (-79.37943497, 43.65603477)}"
-8519,4426,GO-20199017790,THEFT UNDER,2019-06-07T00:00:00,2019,June,Friday,7,158,15,2019-06-07T00:00:00,2019,June,Friday,7,158,21,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,GRN,300.0,STOLEN,8518,"{'type': 'Point', 'coordinates': (-79.37639111, 43.64874921)}"
-8520,4430,GO-20191047522,B&E,2019-06-07T00:00:00,2019,June,Friday,7,158,4,2019-06-07T00:00:00,2019,June,Friday,7,158,13,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,RA,REVENIO,RG,9,GRY,1200.0,STOLEN,8519,"{'type': 'Point', 'coordinates': (-79.37883347, 43.66067091000001)}"
-8521,4445,GO-20199018018,THEFT UNDER,2019-05-11T00:00:00,2019,May,Saturday,11,131,10,2019-06-10T00:00:00,2019,June,Monday,10,161,11,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,10,,1470.0,STOLEN,8521,"{'type': 'Point', 'coordinates': (-79.37639111, 43.64874921)}"
-8522,4454,GO-20199018154,THEFT UNDER,2019-05-18T00:00:00,2019,May,Saturday,18,138,9,2019-06-11T00:00:00,2019,June,Tuesday,11,162,10,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,TO,10,DBL,1749.0,STOLEN,8522,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-8523,4465,GO-20191065023,THEFT UNDER,2019-06-08T00:00:00,2019,June,Saturday,8,159,18,2019-06-09T00:00:00,2019,June,Sunday,9,160,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KNIU,,EL,1,WHI,720.0,STOLEN,8523,"{'type': 'Point', 'coordinates': (-79.37953592, 43.65629127)}"
-8524,4470,GO-20199018395,THEFT UNDER,2019-06-11T00:00:00,2019,June,Tuesday,11,162,18,2019-06-12T00:00:00,2019,June,Wednesday,12,163,20,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RG,3,BLK,300.0,STOLEN,8524,"{'type': 'Point', 'coordinates': (-79.37410556, 43.64926232)}"
-8525,4475,GO-20199018442,THEFT UNDER,2019-06-12T00:00:00,2019,June,Wednesday,12,163,17,2019-06-13T00:00:00,2019,June,Thursday,13,164,10,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,SU,SOLARIS HYBRID,RG,10,BLK,275.0,STOLEN,8525,"{'type': 'Point', 'coordinates': (-79.37781507, 43.65821091)}"
-8526,4485,GO-20191102219,THEFT OF EBIKE UNDER $5000,2019-06-14T00:00:00,2019,June,Friday,14,165,20,2019-06-14T00:00:00,2019,June,Friday,14,165,21,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,INFINITY,AMIGO,EL,0,BLK,2500.0,STOLEN,8526,"{'type': 'Point', 'coordinates': (-79.3771082, 43.65650088)}"
-8527,4490,GO-20199018652,THEFT UNDER,2019-06-14T00:00:00,2019,June,Friday,14,165,17,2019-06-14T00:00:00,2019,June,Friday,14,165,19,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,MANTRA,RG,1,BLU,300.0,STOLEN,8527,"{'type': 'Point', 'coordinates': (-79.37785611, 43.66521591)}"
-8528,4495,GO-20199018695,THEFT UNDER,2019-06-12T00:00:00,2019,June,Wednesday,12,163,22,2019-06-15T00:00:00,2019,June,Saturday,15,166,11,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,21,BLK,1500.0,STOLEN,8528,"{'type': 'Point', 'coordinates': (-79.37639111, 43.64874921)}"
-8529,4509,GO-20199018850,THEFT UNDER,2019-06-13T00:00:00,2019,June,Thursday,13,164,17,2019-06-16T00:00:00,2019,June,Sunday,16,167,17,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,ATTAIN,RC,22,BLK,1000.0,STOLEN,8529,"{'type': 'Point', 'coordinates': (-79.37410556, 43.64926232)}"
-8530,4511,GO-20191118639,THEFT OF EBIKE OVER $5000,2019-06-16T00:00:00,2019,June,Sunday,16,167,19,2019-06-17T00:00:00,2019,June,Monday,17,168,11,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,STROMER ST1S,EL,18,GRN,6000.0,STOLEN,8530,"{'type': 'Point', 'coordinates': (-79.3836938, 43.66289618)}"
-8531,4586,GO-20191174286,THEFT UNDER,2019-05-30T00:00:00,2019,May,Thursday,30,150,23,2019-06-24T00:00:00,2019,June,Monday,24,175,19,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,CROSSTRAIL,OT,8,BLK,800.0,STOLEN,8531,"{'type': 'Point', 'coordinates': (-79.38048097, 43.66464717)}"
-8532,17136,GO-20159003291,THEFT UNDER,2015-06-03T00:00:00,2015,June,Wednesday,3,154,8,2015-06-03T00:00:00,2015,June,Wednesday,3,154,18,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,3,,0.0,STOLEN,8532,"{'type': 'Point', 'coordinates': (-79.37681431, 43.67235839)}"
-8533,4541,GO-20191122960,THEFT UNDER - BICYCLE,2019-06-17T00:00:00,2019,June,Monday,17,168,19,2019-06-17T00:00:00,2019,June,Monday,17,168,20,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,SCHWINN,,RG,6,BLKBLU,600.0,STOLEN,8533,"{'type': 'Point', 'coordinates': (-79.37493677, 43.67129082)}"
-8534,1450,GO-20179015109,THEFT UNDER - BICYCLE,2017-09-14T00:00:00,2017,September,Thursday,14,257,15,2017-09-18T00:00:00,2017,September,Monday,18,261,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,VANTAGE 5 ROAD,RG,7,BLK,700.0,STOLEN,8534,"{'type': 'Point', 'coordinates': (-79.37700237, 43.66017519)}"
-8535,10752,GO-20151927626,THEFT UNDER,2015-11-06T00:00:00,2015,November,Friday,6,310,9,2015-11-11T00:00:00,2015,November,Wednesday,11,315,19,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,AGGRESSOR 2.0,MT,21,BLKGRN,300.0,STOLEN,8535,"{'type': 'Point', 'coordinates': (-79.37513727, 43.66825437)}"
-8536,17142,GO-20159003933,THEFT UNDER,2015-06-25T00:00:00,2015,June,Thursday,25,176,9,2015-06-25T00:00:00,2015,June,Thursday,25,176,17,D51,Toronto,74,North St.James Town (74),"Open Areas (Lakes, Parks, Rivers)",Outside,GI,ESCAPE 3,RG,7,BLU,500.0,STOLEN,8536,"{'type': 'Point', 'coordinates': (-79.37513727, 43.66825437)}"
-8537,4568,GO-20191156645,THEFT UNDER,2019-06-21T00:00:00,2019,June,Friday,21,172,21,2019-06-22T00:00:00,2019,June,Saturday,22,173,9,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,TREVISO,RG,0,BLK,1500.0,STOLEN,8537,"{'type': 'Point', 'coordinates': (-79.37941202, 43.66889376)}"
-8538,1475,GO-20179015341,THEFT UNDER - BICYCLE,2017-09-19T00:00:00,2017,September,Tuesday,19,262,12,2017-09-21T00:00:00,2017,September,Thursday,21,264,16,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,UK,CORDOBA,RC,1,GRY,1000.0,STOLEN,8538,"{'type': 'Point', 'coordinates': (-79.37781507, 43.65821091)}"
-8539,10798,GO-20159010013,THEFT UNDER,2015-11-21T00:00:00,2015,November,Saturday,21,325,21,2015-11-21T00:00:00,2015,November,Saturday,21,325,22,D51,Toronto,74,North St.James Town (74),Convenience Stores,Commercial,IN,INVADOR,MT,21,RED,350.0,STOLEN,8539,"{'type': 'Point', 'coordinates': (-79.37646069, 43.66642862)}"
-8540,4588,GO-20199019883,THEFT UNDER,2019-06-22T00:00:00,2019,June,Saturday,22,173,17,2019-06-24T00:00:00,2019,June,Monday,24,175,11,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RC,12,BLK,700.0,STOLEN,8540,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-8541,17148,GO-20159004410,THEFT UNDER,2015-07-05T00:00:00,2015,July,Sunday,5,186,20,2015-07-11T00:00:00,2015,July,Saturday,11,192,2,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,SU,,RG,21,BLK,250.0,STOLEN,8541,"{'type': 'Point', 'coordinates': (-79.37575001, 43.6696557)}"
-8542,4569,GO-20191156645,THEFT UNDER,2019-06-21T00:00:00,2019,June,Friday,21,172,21,2019-06-22T00:00:00,2019,June,Saturday,22,173,9,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CERVELO,C2,RC,0,BLKBLU,3600.0,STOLEN,8542,"{'type': 'Point', 'coordinates': (-79.37941202, 43.66889376)}"
-8543,1477,GO-20171631131,THEFT UNDER - BICYCLE,2017-09-08T00:00:00,2017,September,Friday,8,251,23,2017-09-08T00:00:00,2017,September,Friday,8,251,23,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,VANTARA,RC,21,BLK,800.0,STOLEN,8543,"{'type': 'Point', 'coordinates': (-79.38607321, 43.66863079)}"
-8544,10821,GO-20152036206,THEFT UNDER,2015-11-27T00:00:00,2015,November,Friday,27,331,19,2015-11-29T00:00:00,2015,November,Sunday,29,333,14,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RALEIGH,,RC,21,GRY,1000.0,STOLEN,8544,"{'type': 'Point', 'coordinates': (-79.37681431, 43.67235839)}"
-8545,4606,GO-20199020087,THEFT UNDER,2019-06-25T00:00:00,2019,June,Tuesday,25,176,15,2019-06-25T00:00:00,2019,June,Tuesday,25,176,16,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SIRRUS SPORT,RC,10,WHI,0.0,STOLEN,8545,"{'type': 'Point', 'coordinates': (-79.37691204, 43.65291764)}"
-8546,17154,GO-20151234751,POSSESSION PROPERTY OBC UNDER,2015-07-25T00:00:00,2015,July,Saturday,25,206,21,2015-07-25T00:00:00,2015,July,Saturday,25,206,21,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,MT,8,BLK,0.0,STOLEN,8546,"{'type': 'Point', 'coordinates': (-79.37830693, 43.66628508)}"
-8547,4675,GO-20191238814,THEFT OF EBIKE UNDER $5000,2019-07-03T00:00:00,2019,July,Wednesday,3,184,18,2019-07-03T00:00:00,2019,July,Wednesday,3,184,19,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BIKTRIX,KUTTY LT,EL,6,LBL,2050.0,STOLEN,8547,"{'type': 'Point', 'coordinates': (-79.37681431, 43.67235839)}"
-8548,1506,GO-20179015587,THEFT UNDER - BICYCLE,2017-09-23T00:00:00,2017,September,Saturday,23,266,18,2017-09-23T00:00:00,2017,September,Saturday,23,266,23,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,CAMBRIDGE,RG,7,GLD,399.0,STOLEN,8548,"{'type': 'Point', 'coordinates': (-79.37382409, 43.64862739)}"
-8549,1537,GO-20171736506,THEFT UNDER - BICYCLE,2017-09-24T00:00:00,2017,September,Sunday,24,267,15,2017-09-24T00:00:00,2017,September,Sunday,24,267,21,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,CIRCUIT,OT,1,DBL,300.0,STOLEN,8549,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-8550,1549,GO-20171769761,THEFT OF EBIKE UNDER $5000,2017-09-29T00:00:00,2017,September,Friday,29,272,9,2017-09-29T00:00:00,2017,September,Friday,29,272,18,D52,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,SHADOW,SC,3,BLUONG,1400.0,STOLEN,8550,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-8551,1558,GO-20179016145,THEFT UNDER - BICYCLE,2017-09-22T00:00:00,2017,September,Friday,22,265,19,2017-10-01T00:00:00,2017,October,Sunday,1,274,0,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,OT,0,,300.0,STOLEN,8551,"{'type': 'Point', 'coordinates': (-79.37215317, 43.64913066)}"
-8552,20479,GO-20169003349,THEFT UNDER,2016-04-12T00:00:00,2016,April,Tuesday,12,103,1,2016-04-12T00:00:00,2016,April,Tuesday,12,103,23,D51,Toronto,74,North St.James Town (74),Bar / Restaurant,Commercial,EM,MTO,EL,62,BLK,2200.0,STOLEN,8949,"{'type': 'Point', 'coordinates': (-79.37640913, 43.67127239)}"
-8553,1559,GO-20179016145,THEFT UNDER - BICYCLE,2017-09-22T00:00:00,2017,September,Friday,22,265,19,2017-10-01T00:00:00,2017,October,Sunday,1,274,0,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,HF,SPORTSMAN,RG,3,BLK,300.0,STOLEN,8552,"{'type': 'Point', 'coordinates': (-79.37215317, 43.64913066)}"
-8554,1578,GO-20171791564,B&E,2017-10-03T00:00:00,2017,October,Tuesday,3,276,9,2017-10-03T00:00:00,2017,October,Tuesday,3,276,9,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,RC,18,GRY,,STOLEN,8553,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-8555,1594,GO-20179016564,THEFT UNDER - BICYCLE,2017-10-06T00:00:00,2017,October,Friday,6,279,6,2017-10-06T00:00:00,2017,October,Friday,6,279,6,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,XFR 3,MT,24,BLK,2000.0,STOLEN,8554,"{'type': 'Point', 'coordinates': (-79.37843045, 43.65040714)}"
-8556,1611,GO-20171801450,THEFT UNDER - BICYCLE,2017-09-30T00:00:00,2017,September,Saturday,30,273,15,2017-10-04T00:00:00,2017,October,Wednesday,4,277,17,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,,OT,0,WHIBLK,2500.0,STOLEN,8555,"{'type': 'Point', 'coordinates': (-79.37840051, 43.66333422)}"
-8557,1625,GO-20179016847,THEFT UNDER - BICYCLE,2017-10-09T00:00:00,2017,October,Monday,9,282,20,2017-10-10T00:00:00,2017,October,Tuesday,10,283,11,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GI,STP 2,MT,1,GRY,1500.0,STOLEN,8556,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-8558,1685,GO-20179017553,THEFT UNDER - BICYCLE,2017-05-12T00:00:00,2017,May,Friday,12,132,20,2017-10-18T00:00:00,2017,October,Wednesday,18,291,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,,MT,7,GRN,160.0,STOLEN,8557,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-8559,1695,GO-20171898555,THEFT UNDER - BICYCLE,2017-10-17T00:00:00,2017,October,Tuesday,17,290,6,2017-10-20T00:00:00,2017,October,Friday,20,293,8,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,,OT,15,BLK,400.0,STOLEN,8558,"{'type': 'Point', 'coordinates': (-79.38245382, 43.66941071)}"
-8560,7099,GO-20201618686,THEFT UNDER - BICYCLE,2020-08-27T00:00:00,2020,August,Thursday,27,240,21,2020-08-27T00:00:00,2020,August,Thursday,27,240,21,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,NCM,MOSCOW,EL,1,BLKBLU,2000.0,RECOVERED,8671,"{'type': 'Point', 'coordinates': (-79.37279145, 43.66924446)}"
-8561,1710,GO-20179017798,THEFT UNDER - BICYCLE,2017-10-20T00:00:00,2017,October,Friday,20,293,8,2017-10-21T00:00:00,2017,October,Saturday,21,294,11,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,OT,TOSCA,TO,10,RED,800.0,STOLEN,8559,"{'type': 'Point', 'coordinates': (-79.37781507, 43.65821091)}"
-8562,1717,GO-20171905801,THEFT UNDER - BICYCLE,2017-10-21T00:00:00,2017,October,Saturday,21,294,2,2017-10-21T00:00:00,2017,October,Saturday,21,294,10,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DIAMONDBACK,,MT,21,BLUWHI,600.0,STOLEN,8560,"{'type': 'Point', 'coordinates': (-79.3749069, 43.65118528)}"
-8563,1726,GO-20179017972,THEFT UNDER - BICYCLE,2017-10-10T00:00:00,2017,October,Tuesday,10,283,21,2017-10-23T00:00:00,2017,October,Monday,23,296,19,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RC,30,BLK,300.0,STOLEN,8561,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-8564,1755,GO-20179018327,THEFT UNDER - BICYCLE,2017-10-26T00:00:00,2017,October,Thursday,26,299,19,2017-10-27T00:00:00,2017,October,Friday,27,300,13,D51,Toronto,75,Church-Yonge Corridor (75),Schools During Un-Supervised Activity,Educational,UK,CONQUEROR,OT,1,BLU,400.0,STOLEN,8562,"{'type': 'Point', 'coordinates': (-79.37781507, 43.65821091)}"
-8565,1772,GO-20179018554,THEFT UNDER - BICYCLE,2017-09-07T00:00:00,2017,September,Thursday,7,250,15,2017-10-30T00:00:00,2017,October,Monday,30,303,17,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,NO,,RC,7,BLK,1000.0,STOLEN,8563,"{'type': 'Point', 'coordinates': (-79.37781507, 43.65821091)}"
-8566,1823,GO-20179019372,THEFT UNDER - BICYCLE,2017-11-11T00:00:00,2017,November,Saturday,11,315,13,2017-11-11T00:00:00,2017,November,Saturday,11,315,14,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,IH,DESPERADO,MT,21,WHI,350.0,STOLEN,8564,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-8567,1824,GO-20179019390,THEFT UNDER - BICYCLE,2017-10-24T00:00:00,2017,October,Tuesday,24,297,12,2017-11-11T00:00:00,2017,November,Saturday,11,315,17,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,NO,THRESHOLD,RC,16,BLK,900.0,STOLEN,8565,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-8568,1834,GO-20179019512,THEFT UNDER,2017-11-10T00:00:00,2017,November,Friday,10,314,19,2017-11-13T00:00:00,2017,November,Monday,13,317,15,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,NO,,RG,21,BLU,300.0,STOLEN,8566,"{'type': 'Point', 'coordinates': (-79.38007115, 43.66369728000001)}"
-8569,1845,GO-20179019620,THEFT UNDER - BICYCLE,2017-11-11T00:00:00,2017,November,Saturday,11,315,5,2017-11-14T00:00:00,2017,November,Tuesday,14,318,19,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,SC,,RG,21,PNK,350.0,STOLEN,8567,"{'type': 'Point', 'coordinates': (-79.38245382, 43.66941071)}"
-8570,1857,GO-20179019853,THEFT UNDER - BICYCLE,2017-11-16T00:00:00,2017,November,Thursday,16,320,8,2017-11-17T00:00:00,2017,November,Friday,17,321,8,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,MT,24,DGR,250.0,STOLEN,8568,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-8571,1879,GO-20179020483,THEFT UNDER - BICYCLE,2017-11-13T00:00:00,2017,November,Monday,13,317,17,2017-11-24T00:00:00,2017,November,Friday,24,328,18,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ROAD BIKE 700C,RG,21,BLK,700.0,STOLEN,8569,"{'type': 'Point', 'coordinates': (-79.38245382, 43.66941071)}"
-8572,1881,GO-20179020587,THEFT UNDER - BICYCLE,2017-11-24T00:00:00,2017,November,Friday,24,328,19,2017-11-26T00:00:00,2017,November,Sunday,26,330,20,D51,Toronto,75,Church-Yonge Corridor (75),Convenience Stores,Commercial,SC,GTX-2,OT,21,RED,550.0,STOLEN,8570,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-8573,1882,GO-20179020596,THEFT UNDER - BICYCLE,2017-11-26T00:00:00,2017,November,Sunday,26,330,23,2017-11-27T00:00:00,2017,November,Monday,27,331,0,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,OT,MAILLOT JAUNE,TO,6,YEL,500.0,STOLEN,8571,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-8574,1886,GO-20173084281,POSSESSION PROPERTY OBC UNDER,2017-11-27T00:00:00,2017,November,Monday,27,331,20,2017-11-27T00:00:00,2017,November,Monday,27,331,22,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,ROAM,MT,27,BLK,800.0,RECOVERED,8572,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-8575,1908,GO-20179021234,THEFT UNDER - BICYCLE,2017-12-03T00:00:00,2017,December,Sunday,3,337,21,2017-12-04T00:00:00,2017,December,Monday,4,338,22,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,,MT,21,PLE,250.0,STOLEN,8573,"{'type': 'Point', 'coordinates': (-79.37941202, 43.66889376)}"
-8576,2507,GO-20189017952,THEFT UNDER - BICYCLE,2018-05-21T00:00:00,2018,May,Monday,21,141,18,2018-06-08T00:00:00,2018,June,Friday,8,159,19,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,CC,TOULOUSE,RG,7,YEL,365.0,STOLEN,8604,"{'type': 'Point', 'coordinates': (-79.37583535, 43.65495451)}"
-8577,1915,GO-20179021379,THEFT UNDER - BICYCLE,2017-11-29T00:00:00,2017,November,Wednesday,29,333,21,2017-12-05T00:00:00,2017,December,Tuesday,5,339,21,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,NO,INDIE NEXUS 8,OT,8,GRY,700.0,STOLEN,8574,"{'type': 'Point', 'coordinates': (-79.3811853, 43.65703802)}"
-8578,1929,GO-20179021696,THEFT UNDER - BICYCLE,2017-12-08T00:00:00,2017,December,Friday,8,342,20,2017-12-08T00:00:00,2017,December,Friday,8,342,22,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,10,RED,0.0,STOLEN,8575,"{'type': 'Point', 'coordinates': (-79.38159830000001, 43.66737287)}"
-8579,1951,GO-20179022676,THEFT UNDER - BICYCLE,2017-12-19T00:00:00,2017,December,Tuesday,19,353,23,2017-12-20T00:00:00,2017,December,Wednesday,20,354,14,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,,EL,32,LGR,500.0,STOLEN,8576,"{'type': 'Point', 'coordinates': (-79.37796823, 43.66213714)}"
-8580,1961,GO-20189000055,THEFT UNDER - BICYCLE,2017-12-30T00:00:00,2017,December,Saturday,30,364,10,2018-01-02T00:00:00,2018,January,Tuesday,2,2,10,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE 3,OT,18,GRY,700.0,STOLEN,8577,"{'type': 'Point', 'coordinates': (-79.38091931, 43.66572241)}"
-8581,2003,GO-20189002632,THEFT UNDER - BICYCLE,2018-01-25T00:00:00,2018,January,Thursday,25,25,13,2018-01-26T00:00:00,2018,January,Friday,26,26,21,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,AMPIO DS,MT,40,LGR,560.0,STOLEN,8578,"{'type': 'Point', 'coordinates': (-79.38091931, 43.66572241)}"
-8582,2024,GO-20189004165,THEFT UNDER - BICYCLE,2018-02-08T00:00:00,2018,February,Thursday,8,39,14,2018-02-10T00:00:00,2018,February,Saturday,10,41,14,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,SL3,MT,27,WHI,0.0,STOLEN,8579,"{'type': 'Point', 'coordinates': (-79.37562599, 43.6568205)}"
-8583,2035,GO-20189005182,THEFT UNDER,2018-02-17T00:00:00,2018,February,Saturday,17,48,13,2018-02-18T00:00:00,2018,February,Sunday,18,49,15,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,CRUX,OT,10,RED,1500.0,STOLEN,8580,"{'type': 'Point', 'coordinates': (-79.37872961, 43.654321780000004)}"
-8584,2053,GO-20189006270,THEFT UNDER - BICYCLE,2018-02-27T00:00:00,2018,February,Tuesday,27,58,10,2018-02-27T00:00:00,2018,February,Tuesday,27,58,17,D51,Toronto,75,Church-Yonge Corridor (75),"Religious Facilities (Synagogue, Church, Convent, Mosque)",Other,OT,,RG,21,TRQ,620.0,STOLEN,8581,"{'type': 'Point', 'coordinates': (-79.37953592, 43.65629127)}"
-8585,2079,GO-20189008326,THEFT UNDER - BICYCLE,2017-10-10T00:00:00,2017,October,Tuesday,10,283,16,2018-03-17T00:00:00,2018,March,Saturday,17,76,16,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,AWOL,TO,21,GRY,1855.0,STOLEN,8582,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-8586,2090,GO-20189008661,THEFT UNDER - BICYCLE,2018-03-12T00:00:00,2018,March,Monday,12,71,12,2018-03-20T00:00:00,2018,March,Tuesday,20,79,11,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RG,30,BLU,300.0,STOLEN,8583,"{'type': 'Point', 'coordinates': (-79.37600691000002, 43.64815434)}"
-8587,2099,GO-20189008790,THEFT UNDER,2018-03-21T00:00:00,2018,March,Wednesday,21,80,1,2018-03-21T00:00:00,2018,March,Wednesday,21,80,8,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,OT,1,,800.0,STOLEN,8584,"{'type': 'Point', 'coordinates': (-79.3749313, 43.65514877)}"
-8588,2100,GO-20189009084,THEFT UNDER - BICYCLE,2018-03-22T00:00:00,2018,March,Thursday,22,81,7,2018-03-23T00:00:00,2018,March,Friday,23,82,11,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,TRICROSS,TO,27,GRN,900.0,STOLEN,8585,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-8589,2111,GO-20189009695,THEFT OF EBIKE UNDER $5000,2017-02-28T00:00:00,2017,February,Tuesday,28,59,0,2018-03-27T00:00:00,2018,March,Tuesday,27,86,12,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,EL,48,BLK,800.0,STOLEN,8586,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-8590,2112,GO-20189009757,THEFT UNDER - BICYCLE,2018-03-27T00:00:00,2018,March,Tuesday,27,86,9,2018-03-27T00:00:00,2018,March,Tuesday,27,86,19,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,VFR5 FORMA,RG,12,WHI,500.0,STOLEN,8587,"{'type': 'Point', 'coordinates': (-79.37827718, 43.65626242)}"
-8591,2114,GO-20189009726,THEFT UNDER - BICYCLE,2018-03-27T00:00:00,2018,March,Tuesday,27,86,9,2018-03-27T00:00:00,2018,March,Tuesday,27,86,17,D51,Toronto,75,Church-Yonge Corridor (75),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,AUDAX,RC,18,BLU,1146.0,STOLEN,8588,"{'type': 'Point', 'coordinates': (-79.37691204, 43.65291764)}"
-8592,2702,GO-20189020490,THEFT UNDER - BICYCLE,2018-06-22T00:00:00,2018,June,Friday,22,173,10,2018-06-27T00:00:00,2018,June,Wednesday,27,178,15,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,OT,,RC,24,YEL,600.0,STOLEN,8621,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-8593,2143,GO-2018631502,THEFT UNDER - BICYCLE,2018-04-08T00:00:00,2018,April,Sunday,8,98,11,2018-04-08T00:00:00,2018,April,Sunday,8,98,23,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KONA\,JAKE THE SNAKE,OT,18,ONGBLK,1500.0,STOLEN,8589,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-8594,2175,GO-20189012130,THEFT UNDER - BICYCLE,2018-04-11T00:00:00,2018,April,Wednesday,11,101,22,2018-04-19T00:00:00,2018,April,Thursday,19,109,10,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KO,SMOKE,RG,15,BLK,400.0,STOLEN,8590,"{'type': 'Point', 'coordinates': (-79.37867256, 43.6639886)}"
-8595,2176,GO-20189012150,THEFT UNDER - BICYCLE,2018-04-19T00:00:00,2018,April,Thursday,19,109,11,2018-04-19T00:00:00,2018,April,Thursday,19,109,13,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,ADDICT 2014,RC,10,BLK,0.0,STOLEN,8591,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-8596,2184,GO-20189012384,THEFT UNDER - BICYCLE,2018-04-20T00:00:00,2018,April,Friday,20,110,4,2018-04-21T00:00:00,2018,April,Saturday,21,111,17,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,GI,ESCAPE 3,RG,7,BLK,600.0,STOLEN,8592,"{'type': 'Point', 'coordinates': (-79.37721761, 43.65831575)}"
-8597,2223,GO-20189013259,THEFT UNDER - BICYCLE,2018-04-29T00:00:00,2018,April,Sunday,29,119,18,2018-04-29T00:00:00,2018,April,Sunday,29,119,21,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RC,15,LBL,0.0,STOLEN,8593,"{'type': 'Point', 'coordinates': (-79.37771935, 43.65196319)}"
-8598,2232,GO-20189013458,THEFT UNDER - BICYCLE,2018-04-26T00:00:00,2018,April,Thursday,26,116,9,2018-05-01T00:00:00,2018,May,Tuesday,1,121,18,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,ORION,OT,21,BLU,400.0,STOLEN,8594,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-8599,2287,GO-20189014455,THEFT UNDER - BICYCLE,2018-05-09T00:00:00,2018,May,Wednesday,9,129,23,2018-05-10T00:00:00,2018,May,Thursday,10,130,16,D52,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,PRESTIGE VELO S,TO,12,SIL,300.0,STOLEN,8595,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-8600,5196,GO-20199028253,THEFT UNDER,2019-08-30T00:00:00,2019,August,Friday,30,242,11,2019-08-30T00:00:00,2019,August,Friday,30,242,14,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,OT,BIRDIE,RG,3,RED,660.0,STOLEN,8645,"{'type': 'Point', 'coordinates': (-79.37368966, 43.67132826)}"
-8601,2306,GO-20189014786,THEFT UNDER - BICYCLE,2018-05-13T00:00:00,2018,May,Sunday,13,133,12,2018-05-13T00:00:00,2018,May,Sunday,13,133,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,,ECKO 2018,MT,6,BLK,150.0,STOLEN,8596,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-8602,2378,GO-20189015921,THEFT UNDER - BICYCLE,2018-05-22T00:00:00,2018,May,Tuesday,22,142,1,2018-05-23T00:00:00,2018,May,Wednesday,23,143,12,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,4,TRQ,300.0,STOLEN,8597,"{'type': 'Point', 'coordinates': (-79.3749313, 43.65514877)}"
-8603,2412,GO-20189016352,THEFT UNDER - BICYCLE,2018-05-24T00:00:00,2018,May,Thursday,24,144,20,2018-05-26T00:00:00,2018,May,Saturday,26,146,19,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,SCALE 950,MT,30,GRY,2500.0,STOLEN,8598,"{'type': 'Point', 'coordinates': (-79.37516377, 43.6518061)}"
-8604,2430,GO-20189016438,THEFT UNDER - BICYCLE,2018-05-27T00:00:00,2018,May,Sunday,27,147,18,2018-05-27T00:00:00,2018,May,Sunday,27,147,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,FX,MT,21,BLK,600.0,STOLEN,8599,"{'type': 'Point', 'coordinates': (-79.37410556, 43.64926232)}"
-8605,2460,GO-20189017406,THEFT UNDER - BICYCLE,2018-06-04T00:00:00,2018,June,Monday,4,155,23,2018-06-05T00:00:00,2018,June,Tuesday,5,156,1,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RG,14,RED,0.0,STOLEN,8600,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-8606,2475,GO-20189017552,THEFT UNDER - BICYCLE,2018-06-05T00:00:00,2018,June,Tuesday,5,156,20,2018-06-05T00:00:00,2018,June,Tuesday,5,156,23,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,CIRCUT,RC,14,DBL,300.0,STOLEN,8601,"{'type': 'Point', 'coordinates': (-79.3774505, 43.65131026)}"
-8607,2485,GO-20181029282,THEFT UNDER - BICYCLE,2018-05-25T00:00:00,2018,May,Friday,25,145,23,2018-05-25T00:00:00,2018,May,Friday,25,145,23,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,AMEGO,,EL,10,,1600.0,STOLEN,8602,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-8608,2504,GO-20189017887,THEFT UNDER - BICYCLE,2018-06-08T00:00:00,2018,June,Friday,8,159,9,2018-06-08T00:00:00,2018,June,Friday,8,159,14,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,JULIET,RG,1,BLK,450.0,STOLEN,8603,"{'type': 'Point', 'coordinates': (-79.38612041000002, 43.66874221)}"
-8609,2508,GO-20189017967,THEFT UNDER - BICYCLE,2018-06-07T00:00:00,2018,June,Thursday,7,158,19,2018-06-09T00:00:00,2018,June,Saturday,9,160,8,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,HARDROCK,MT,12,GRY,650.0,STOLEN,8605,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-8610,2509,GO-20189017967,THEFT UNDER - BICYCLE,2018-06-07T00:00:00,2018,June,Thursday,7,158,19,2018-06-09T00:00:00,2018,June,Saturday,9,160,8,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,QUANTUM,MT,10,BLU,1500.0,STOLEN,8606,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-8611,2531,GO-20189018265,THEFT UNDER - BICYCLE,2018-06-11T00:00:00,2018,June,Monday,11,162,2,2018-06-11T00:00:00,2018,June,Monday,11,162,16,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,5,,250.0,STOLEN,8607,"{'type': 'Point', 'coordinates': (-79.37849549, 43.65985781)}"
-8612,2534,GO-20189018298,THEFT UNDER - BICYCLE,2018-06-08T00:00:00,2018,June,Friday,8,159,18,2018-06-11T00:00:00,2018,June,Monday,11,162,21,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,NO,13 VALENCE C4 U,RC,10,BLK,1550.0,STOLEN,8608,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-8613,2546,GO-20189018460,THEFT UNDER - BICYCLE,2018-06-11T00:00:00,2018,June,Monday,11,162,7,2018-06-12T00:00:00,2018,June,Tuesday,12,163,21,D52,Toronto,75,Church-Yonge Corridor (75),Ttc Subway Station,Transit,CC,,MT,28,,349.0,STOLEN,8609,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-8614,2547,GO-20189018449,THEFT UNDER - BICYCLE,2018-06-12T00:00:00,2018,June,Tuesday,12,163,10,2018-06-12T00:00:00,2018,June,Tuesday,12,163,19,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,,MT,10,MRN,300.0,STOLEN,8610,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-8615,2551,GO-20189018471,THEFT UNDER - BICYCLE,2018-06-12T00:00:00,2018,June,Tuesday,12,163,18,2018-06-12T00:00:00,2018,June,Tuesday,12,163,23,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,GI,,MT,21,MRN,700.0,STOLEN,8611,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-8616,2559,GO-20189018653,THEFT UNDER,2018-06-08T00:00:00,2018,June,Friday,8,159,11,2018-06-14T00:00:00,2018,June,Thursday,14,165,11,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GI,FCR,OT,24,BLK,700.0,STOLEN,8612,"{'type': 'Point', 'coordinates': (-79.37883347, 43.66067091000001)}"
-8617,2580,GO-20189018908,THEFT UNDER - BICYCLE,2018-06-15T00:00:00,2018,June,Friday,15,166,22,2018-06-16T00:00:00,2018,June,Saturday,16,167,9,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,TO,15,GRN,1000.0,STOLEN,8613,"{'type': 'Point', 'coordinates': (-79.37771935, 43.65196319)}"
-8618,2581,GO-20189018897,THEFT UNDER - BICYCLE,2018-06-15T00:00:00,2018,June,Friday,15,166,20,2018-06-15T00:00:00,2018,June,Friday,15,166,23,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,GT,,MT,27,,350.0,STOLEN,8614,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-8619,2582,GO-20189018301,THEFT UNDER - BICYCLE,2018-06-11T00:00:00,2018,June,Monday,11,162,12,2018-06-11T00:00:00,2018,June,Monday,11,162,18,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,CYPRESS ST,OT,21,SIL,400.0,STOLEN,8615,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-8620,2583,GO-20189018907,THEFT UNDER - BICYCLE,2018-06-15T00:00:00,2018,June,Friday,15,166,22,2018-06-16T00:00:00,2018,June,Saturday,16,167,9,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,RG,15,BLU,500.0,STOLEN,8616,"{'type': 'Point', 'coordinates': (-79.37771935, 43.65196319)}"
-8621,2592,GO-20189019005,THEFT UNDER - BICYCLE,2018-06-16T00:00:00,2018,June,Saturday,16,167,23,2018-06-16T00:00:00,2018,June,Saturday,16,167,23,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,KH,,OT,1,BLK,500.0,STOLEN,8617,"{'type': 'Point', 'coordinates': (-79.3774505, 43.65131026)}"
-8622,2605,GO-20189019005,THEFT UNDER - BICYCLE,2018-06-16T00:00:00,2018,June,Saturday,16,167,23,2018-06-16T00:00:00,2018,June,Saturday,16,167,23,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,KH,FLITE ONE HUNDR,RG,1,BLK,500.0,STOLEN,8618,"{'type': 'Point', 'coordinates': (-79.3774505, 43.65131026)}"
-8623,2617,GO-20189019326,THEFT UNDER - BICYCLE,2018-06-18T00:00:00,2018,June,Monday,18,169,9,2018-06-19T00:00:00,2018,June,Tuesday,19,170,13,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RG,7,SIL,500.0,STOLEN,8619,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-8624,2633,GO-20189019538,THEFT UNDER - BICYCLE,2018-06-12T00:00:00,2018,June,Tuesday,12,163,16,2018-06-20T00:00:00,2018,June,Wednesday,20,171,19,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,LANGSTER PRO,RC,1,WHI,1200.0,STOLEN,8620,"{'type': 'Point', 'coordinates': (-79.38277088, 43.67016017)}"
-8625,2736,GO-20189020968,THEFT UNDER - BICYCLE,2018-06-29T00:00:00,2018,June,Friday,29,180,21,2018-07-02T00:00:00,2018,July,Monday,2,183,23,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,UK,,RG,9,BLK,1200.0,STOLEN,8622,"{'type': 'Point', 'coordinates': (-79.3811853, 43.65703802)}"
-8626,2756,GO-20189021206,THEFT UNDER - BICYCLE,2018-07-04T00:00:00,2018,July,Wednesday,4,185,20,2018-07-04T00:00:00,2018,July,Wednesday,4,185,22,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,EL,1,,0.0,STOLEN,8623,"{'type': 'Point', 'coordinates': (-79.37512219, 43.65330838)}"
-8627,2763,GO-20189021285,THEFT UNDER - BICYCLE,2018-06-12T00:00:00,2018,June,Tuesday,12,163,23,2018-07-05T00:00:00,2018,July,Thursday,5,186,13,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,FENIX AR2,RC,10,WHI,1550.0,STOLEN,8624,"{'type': 'Point', 'coordinates': (-79.37215317, 43.64913066)}"
-8628,2778,GO-20189021560,THEFT UNDER - BICYCLE,2018-07-07T00:00:00,2018,July,Saturday,7,188,0,2018-07-07T00:00:00,2018,July,Saturday,7,188,18,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,700C VECTOR,RG,21,BLU,500.0,STOLEN,8625,"{'type': 'Point', 'coordinates': (-79.38048097, 43.66464717)}"
-8629,2804,GO-20189021913,THEFT UNDER - BICYCLE,2018-07-09T00:00:00,2018,July,Monday,9,190,18,2018-07-10T00:00:00,2018,July,Tuesday,10,191,17,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,2018 TOURING,TO,9,BLU,1600.0,STOLEN,8626,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-8630,2839,GO-20189022319,THEFT UNDER - BICYCLE,2018-06-20T00:00:00,2018,June,Wednesday,20,171,19,2018-07-13T00:00:00,2018,July,Friday,13,194,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,21,,500.0,STOLEN,8627,"{'type': 'Point', 'coordinates': (-79.37953592, 43.65629127)}"
-8631,2898,GO-20189023142,THEFT UNDER - BICYCLE,2018-07-19T00:00:00,2018,July,Thursday,19,200,21,2018-07-20T00:00:00,2018,July,Friday,20,201,0,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,GI,RAPID,RC,10,GRY,1449.0,STOLEN,8628,"{'type': 'Point', 'coordinates': (-79.37827718, 43.65626242)}"
-8632,2939,GO-20189023690,THEFT UNDER - BICYCLE,2018-07-23T00:00:00,2018,July,Monday,23,204,14,2018-07-24T00:00:00,2018,July,Tuesday,24,205,10,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SU,,RG,14,BLU,300.0,STOLEN,8629,"{'type': 'Point', 'coordinates': (-79.37943497, 43.65603477)}"
-8633,2965,GO-20181368600,THEFT OF EBIKE UNDER $5000,2018-07-25T00:00:00,2018,July,Wednesday,25,206,21,2018-07-26T00:00:00,2018,July,Thursday,26,207,19,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,URBAN S,EL,0,REDBLK,,STOLEN,8630,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-8634,2974,GO-20189024021,THEFT UNDER - BICYCLE,2018-07-24T00:00:00,2018,July,Tuesday,24,205,13,2018-07-26T00:00:00,2018,July,Thursday,26,207,13,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,TR,7.2 FX,RG,7,,0.0,STOLEN,8631,"{'type': 'Point', 'coordinates': (-79.38245382, 43.66941071)}"
-8635,3001,GO-20189024243,THEFT UNDER - BICYCLE,2018-07-27T00:00:00,2018,July,Friday,27,208,9,2018-07-27T00:00:00,2018,July,Friday,27,208,19,D51,Toronto,75,Church-Yonge Corridor (75),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,FJ,ROUBAIX,RG,10,RED,500.0,STOLEN,8632,"{'type': 'Point', 'coordinates': (-79.38159626, 43.66440307)}"
-8636,3041,GO-20181406606,THEFT OF EBIKE UNDER $5000,2018-08-01T00:00:00,2018,August,Wednesday,1,213,9,2018-08-01T00:00:00,2018,August,Wednesday,1,213,10,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,ELECTRA,UNKNO,EL,3,BLU,1600.0,STOLEN,8633,"{'type': 'Point', 'coordinates': (-79.37573379, 43.65316827000001)}"
-8637,3045,GO-20189024777,THEFT UNDER - BICYCLE,2018-08-01T00:00:00,2018,August,Wednesday,1,213,10,2018-08-01T00:00:00,2018,August,Wednesday,1,213,16,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,BI,,OT,10,,800.0,STOLEN,8634,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-8638,3049,GO-20189024822,THEFT UNDER - BICYCLE,2018-07-31T00:00:00,2018,July,Tuesday,31,212,18,2018-08-02T00:00:00,2018,August,Thursday,2,214,10,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,,RG,21,BLU,700.0,STOLEN,8635,"{'type': 'Point', 'coordinates': (-79.37583535, 43.65495451)}"
-8639,3067,GO-20189025059,THEFT UNDER - BICYCLE,2018-08-03T00:00:00,2018,August,Friday,3,215,19,2018-08-03T00:00:00,2018,August,Friday,3,215,22,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,UK,FT.301,MT,24,ONG,400.0,STOLEN,8636,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-8640,7022,GO-20201572738,THEFT OVER,2019-03-01T00:00:00,2019,March,Friday,1,60,0,2020-08-21T00:00:00,2020,August,Friday,21,234,12,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,PIRELLI,RACER,RC,0,PLE,2000.0,STOLEN,8670,"{'type': 'Point', 'coordinates': (-79.37036718, 43.67025828)}"
-8641,4789,GO-20199022658,THEFT UNDER,2019-07-16T00:00:00,2019,July,Tuesday,16,197,18,2019-07-17T00:00:00,2019,July,Wednesday,17,198,14,D51,Toronto,74,North St.James Town (74),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SC,TBD,TO,21,PLE,0.0,STOLEN,8637,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-8642,4912,GO-20191404441,THEFT UNDER - BICYCLE,2019-06-30T00:00:00,2019,June,Sunday,30,181,12,2019-07-26T00:00:00,2019,July,Friday,26,207,9,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,SIRRUS,OT,24,BLK,700.0,STOLEN,8638,"{'type': 'Point', 'coordinates': (-79.37807893, 43.66914655)}"
-8643,4934,GO-20199024440,THEFT UNDER,2019-07-30T00:00:00,2019,July,Tuesday,30,211,16,2019-07-30T00:00:00,2019,July,Tuesday,30,211,20,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,HYBRID - COMFOR,TO,24,BLK,700.0,STOLEN,8639,"{'type': 'Point', 'coordinates': (-79.3764768, 43.67145630000001)}"
-8644,4976,GO-20199025068,THEFT UNDER,2019-08-06T00:00:00,2019,August,Tuesday,6,218,18,2019-08-06T00:00:00,2019,August,Tuesday,6,218,20,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,MA,ARGENTA,RG,10,WHI,200.0,STOLEN,8640,"{'type': 'Point', 'coordinates': (-79.3764768, 43.67145630000001)}"
-8645,5091,GO-20199026553,THEFT UNDER,2019-08-16T00:00:00,2019,August,Friday,16,228,13,2019-08-16T00:00:00,2019,August,Friday,16,228,21,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,KH,URBAN,RG,18,MRN,350.0,STOLEN,8641,"{'type': 'Point', 'coordinates': (-79.37279145, 43.66924446)}"
-8646,5095,GO-20199026675,THEFT UNDER,2019-08-16T00:00:00,2019,August,Friday,16,228,3,2019-08-18T00:00:00,2019,August,Sunday,18,230,9,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MOTOBECANE,RG,21,PLE,300.0,STOLEN,8642,"{'type': 'Point', 'coordinates': (-79.38052643, 43.67161072)}"
-8647,5107,GO-20199026854,THEFT UNDER,2019-08-17T00:00:00,2019,August,Saturday,17,229,20,2019-08-19T00:00:00,2019,August,Monday,19,231,19,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SIRRUS MEN SS,OT,27,BLK,599.0,STOLEN,8643,"{'type': 'Point', 'coordinates': (-79.37513727, 43.66825437)}"
-8648,5189,GO-20199028118,THEFT UNDER,2019-08-23T00:00:00,2019,August,Friday,23,235,22,2019-08-29T00:00:00,2019,August,Thursday,29,241,14,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,UK,EBIKE,EL,45,GRY,600.0,STOLEN,8644,"{'type': 'Point', 'coordinates': (-79.37942813, 43.6718256)}"
-8649,5219,GO-20191665846,THEFT UNDER - BICYCLE,2019-08-30T00:00:00,2019,August,Friday,30,242,19,2019-08-31T00:00:00,2019,August,Saturday,31,243,15,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,,RG,10,PLE,200.0,STOLEN,8646,"{'type': 'Point', 'coordinates': (-79.37645102, 43.66797312)}"
-8650,5257,GO-20191703758,THEFT UNDER - BICYCLE,2019-09-05T00:00:00,2019,September,Thursday,5,248,21,2019-09-06T00:00:00,2019,September,Friday,6,249,0,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RALEIGH,BACK ALLEY,MT,1,BLKRED,500.0,STOLEN,8647,"{'type': 'Point', 'coordinates': (-79.37464369, 43.66709416)}"
-8651,5324,GO-20199030065,THEFT UNDER,2019-09-14T00:00:00,2019,September,Saturday,14,257,0,2019-09-14T00:00:00,2019,September,Saturday,14,257,23,D51,Toronto,74,North St.James Town (74),Ttc Subway Station,Transit,SU,,MT,20,SIL,0.0,STOLEN,8648,"{'type': 'Point', 'coordinates': (-79.37681431, 43.67235839)}"
-8652,5419,GO-20191862741,THEFT UNDER,2019-09-16T00:00:00,2019,September,Monday,16,259,0,2019-09-27T00:00:00,2019,September,Friday,27,270,13,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,ZZZ,,EL,1,,1000.0,STOLEN,8649,"{'type': 'Point', 'coordinates': (-79.37493677, 43.67129082)}"
-8653,5420,GO-20191862741,THEFT UNDER,2019-09-16T00:00:00,2019,September,Monday,16,259,0,2019-09-27T00:00:00,2019,September,Friday,27,270,13,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,ZZZ,,EL,1,BLKRED,1000.0,STOLEN,8650,"{'type': 'Point', 'coordinates': (-79.37493677, 43.67129082)}"
-8654,5423,GO-20199031837,THEFT UNDER - BICYCLE,2019-09-26T00:00:00,2019,September,Thursday,26,269,8,2019-09-27T00:00:00,2019,September,Friday,27,270,22,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,NO,MONTE CARLO,RG,12,RED,220.0,STOLEN,8651,"{'type': 'Point', 'coordinates': (-79.37575001, 43.6696557)}"
-8655,5569,GO-20192040465,THEFT UNDER - BICYCLE,2019-10-22T00:00:00,2019,October,Tuesday,22,295,16,2019-10-22T00:00:00,2019,October,Tuesday,22,295,16,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RALEIGH,,RC,1,BLK,,STOLEN,8652,"{'type': 'Point', 'coordinates': (-79.37513727, 43.66825437)}"
-8656,6026,GO-20209010551,THEFT UNDER,2020-04-06T00:00:00,2020,April,Monday,6,97,11,2020-04-06T00:00:00,2020,April,Monday,6,97,12,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,OT,ROADSTER,RG,8,BLK,1000.0,STOLEN,8653,"{'type': 'Point', 'coordinates': (-79.37322899, 43.67133373000001)}"
-8657,6084,GO-2020754565,THEFT UNDER - BICYCLE,2020-04-16T00:00:00,2020,April,Thursday,16,107,19,2020-04-20T00:00:00,2020,April,Monday,20,111,14,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,,MT,1,PNK,200.0,STOLEN,8654,"{'type': 'Point', 'coordinates': (-79.37942813, 43.6718256)}"
-8658,6098,GO-20209011872,THEFT UNDER,2020-04-24T00:00:00,2020,April,Friday,24,115,10,2020-04-24T00:00:00,2020,April,Friday,24,115,12,D51,Toronto,74,North St.James Town (74),Unknown,Other,OT,INFINITY,EL,30,BLK,2300.0,STOLEN,8655,"{'type': 'Point', 'coordinates': (-79.37883544, 43.67093622)}"
-8659,6106,GO-20209011991,THEFT UNDER,2020-04-27T00:00:00,2020,April,Monday,27,118,4,2020-04-27T00:00:00,2020,April,Monday,27,118,10,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,SC,,RG,21,BLK,300.0,STOLEN,8656,"{'type': 'Point', 'coordinates': (-79.37645102, 43.66797312)}"
-8660,6197,GO-20209013323,THEFT UNDER,2020-05-09T00:00:00,2020,May,Saturday,9,130,14,2020-05-17T00:00:00,2020,May,Sunday,17,138,16,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,OT,NORTHROCK,MT,21,GRY,399.0,STOLEN,8657,"{'type': 'Point', 'coordinates': (-79.37646069, 43.66642862)}"
-8661,6201,GO-20209013360,THEFT UNDER,2020-04-22T00:00:00,2020,April,Wednesday,22,113,12,2020-05-18T00:00:00,2020,May,Monday,18,139,12,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,CC,VECTOR,MT,21,BLK,350.0,STOLEN,8658,"{'type': 'Point', 'coordinates': (-79.37646069, 43.66642862)}"
-8662,6311,GO-20209014729,THEFT UNDER,2020-04-06T00:00:00,2020,April,Monday,6,97,13,2020-06-06T00:00:00,2020,June,Saturday,6,158,13,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,10,,200.0,STOLEN,8659,"{'type': 'Point', 'coordinates': (-79.37036718, 43.67025828)}"
-8663,6373,GO-20209015293,THEFT UNDER,2020-06-12T00:00:00,2020,June,Friday,12,164,15,2020-06-13T00:00:00,2020,June,Saturday,13,165,12,D51,Toronto,74,North St.James Town (74),Convenience Stores,Commercial,UK,,RC,6,BLK,200.0,STOLEN,8660,"{'type': 'Point', 'coordinates': (-79.37646069, 43.66642862)}"
-8664,6415,GO-20209015568,THEFT UNDER,2020-06-17T00:00:00,2020,June,Wednesday,17,169,20,2020-06-17T00:00:00,2020,June,Wednesday,17,169,21,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,PE,,RG,6,BLU,800.0,STOLEN,8661,"{'type': 'Point', 'coordinates': (-79.37373773, 43.66729501)}"
-8665,21121,GO-2020627625,B&E,2020-03-27T00:00:00,2020,March,Friday,27,87,14,2020-03-30T00:00:00,2020,March,Monday,30,90,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,,RC,10,,700.0,STOLEN,17705,"{'type': 'Point', 'coordinates': (-79.40442195, 43.64140672)}"
-8666,6458,GO-20209016074,THEFT UNDER,2020-04-02T00:00:00,2020,April,Thursday,2,93,12,2020-06-24T00:00:00,2020,June,Wednesday,24,176,18,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,OT,7.4 FX (2013),RG,20,BLK,1000.0,STOLEN,8662,"{'type': 'Point', 'coordinates': (-79.37854549, 43.67025604)}"
-8667,6669,GO-20209017986,THEFT UNDER,2020-07-20T00:00:00,2020,July,Monday,20,202,3,2020-07-20T00:00:00,2020,July,Monday,20,202,6,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,UK,BIXI QR:AB1F591,OT,3,BLK,1356.0,STOLEN,8663,"{'type': 'Point', 'coordinates': (-79.37620707000002, 43.67079259)}"
-8668,6690,GO-20209018127,THEFT UNDER,2020-07-21T00:00:00,2020,July,Tuesday,21,203,2,2020-07-21T00:00:00,2020,July,Tuesday,21,203,13,D51,Toronto,74,North St.James Town (74),Bar / Restaurant,Commercial,UK,HYBRID,RG,9,SIL,1800.0,STOLEN,8664,"{'type': 'Point', 'coordinates': (-79.37830693, 43.66628508)}"
-8669,6928,GO-20209019837,THEFT UNDER,2020-08-10T00:00:00,2020,August,Monday,10,223,14,2020-08-10T00:00:00,2020,August,Monday,10,223,15,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,TR,SPEED CONCEPT,OT,11,WHI,4600.0,STOLEN,8665,"{'type': 'Point', 'coordinates': (-79.37681431, 43.67235839)}"
-8670,6993,GO-20209017986,THEFT UNDER,2020-07-20T00:00:00,2020,July,Monday,20,202,3,2020-07-20T00:00:00,2020,July,Monday,20,202,6,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,UK,ICONIC,RG,3,BLK,1200.0,STOLEN,8666,"{'type': 'Point', 'coordinates': (-79.37620707000002, 43.67079259)}"
-8671,6997,GO-20201557911,THEFT OF EBIKE UNDER $5000,2020-08-18T00:00:00,2020,August,Tuesday,18,231,23,2020-08-19T00:00:00,2020,August,Wednesday,19,232,13,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,EMMO,HORNET,EL,1,RED,1780.0,STOLEN,8667,"{'type': 'Point', 'coordinates': (-79.37368966, 43.67132826)}"
-8672,7020,GO-20201572738,THEFT OVER,2019-03-01T00:00:00,2019,March,Friday,1,60,0,2020-08-21T00:00:00,2020,August,Friday,21,234,12,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,PIRELLI,RACER,RC,0,BLU,1700.0,STOLEN,8668,"{'type': 'Point', 'coordinates': (-79.37036718, 43.67025828)}"
-8673,7021,GO-20201572738,THEFT OVER,2019-03-01T00:00:00,2019,March,Friday,1,60,0,2020-08-21T00:00:00,2020,August,Friday,21,234,12,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,PIRELLI,,RC,0,,1700.0,STOLEN,8669,"{'type': 'Point', 'coordinates': (-79.37036718, 43.67025828)}"
-8674,7124,GO-20209021774,THEFT UNDER,2020-08-23T00:00:00,2020,August,Sunday,23,236,16,2020-08-30T00:00:00,2020,August,Sunday,30,243,10,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,12,BLK,1350.0,STOLEN,8672,"{'type': 'Point', 'coordinates': (-79.37681431, 43.67235839)}"
-8675,7164,GO-20201630013,THEFT UNDER - BICYCLE,2020-08-29T00:00:00,2020,August,Saturday,29,242,0,2020-09-02T00:00:00,2020,September,Wednesday,2,246,13,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,6,GRN,100.0,STOLEN,8673,"{'type': 'Point', 'coordinates': (-79.37681431, 43.67235839)}"
-8676,7271,GO-20201763656,PROPERTY - FOUND,2020-09-17T00:00:00,2020,September,Thursday,17,261,14,2020-09-17T00:00:00,2020,September,Thursday,17,261,16,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,FELT,,RG,1,SIL,,UNKNOWN,8674,"{'type': 'Point', 'coordinates': (-79.37620707000002, 43.67079259)}"
-8677,7278,GO-20201778987,THEFT OF EBIKE UNDER $5000,2020-09-19T00:00:00,2020,September,Saturday,19,263,14,2020-09-19T00:00:00,2020,September,Saturday,19,263,16,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,EL,0,RED,,RECOVERED,8675,"{'type': 'Point', 'coordinates': (-79.374408, 43.66886889)}"
-8678,7288,GO-20201787518,THEFT OF EBIKE UNDER $5000,2020-09-20T00:00:00,2020,September,Sunday,20,264,19,2020-09-20T00:00:00,2020,September,Sunday,20,264,20,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,EMMO,URBAN,EL,0,BLU,2800.0,STOLEN,8676,"{'type': 'Point', 'coordinates': (-79.37620707000002, 43.67079259)}"
-8679,7315,GO-20209023981,THEFT UNDER,2020-09-09T00:00:00,2020,September,Wednesday,9,253,17,2020-09-21T00:00:00,2020,September,Monday,21,265,16,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,OT,14 OPUS ANDANTE,RC,11,BLK,2500.0,STOLEN,8677,"{'type': 'Point', 'coordinates': (-79.3764768, 43.67145630000001)}"
-8680,4633,GO-20199020401,THEFT UNDER,2019-06-27T00:00:00,2019,June,Thursday,27,178,20,2019-06-27T00:00:00,2019,June,Thursday,27,178,21,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,2016,MT,15,WHI,2000.0,STOLEN,8678,"{'type': 'Point', 'coordinates': (-79.37410556, 43.64926232)}"
-8681,7332,GO-20201800122,PROPERTY - FOUND,2020-09-22T00:00:00,2020,September,Tuesday,22,266,18,2020-09-22T00:00:00,2020,September,Tuesday,22,266,20,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,GRATER,GRATER,OT,18,DGR,,UNKNOWN,8679,"{'type': 'Point', 'coordinates': (-79.37854549, 43.67025604)}"
-8682,7532,GO-20209027488,THEFT UNDER,2019-10-25T00:00:00,2019,October,Friday,25,298,18,2020-10-23T00:00:00,2020,October,Friday,23,297,20,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RM,FUSION 30 (2017,MT,9,BLK,1000.0,STOLEN,8680,"{'type': 'Point', 'coordinates': (-79.37883544, 43.67093622)}"
-8683,7589,GO-20202091197,THEFT UNDER,2020-09-04T00:00:00,2020,September,Friday,4,248,5,2020-11-04T00:00:00,2020,November,Wednesday,4,309,13,D51,Toronto,74,North St.James Town (74),"Open Areas (Lakes, Parks, Rivers)",Outside,FORTRESS,,SC,0,BLU,4000.0,STOLEN,8681,"{'type': 'Point', 'coordinates': (-79.37620707000002, 43.67079259)}"
-8684,7647,GO-20202193363,THEFT OF EBIKE UNDER $5000,2020-11-12T00:00:00,2020,November,Thursday,12,317,19,2020-11-19T00:00:00,2020,November,Thursday,19,324,11,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,ARIV,EL,6,WHI,,STOLEN,8682,"{'type': 'Point', 'coordinates': (-79.37807893, 43.66914655)}"
-8685,7713,GO-20209032618,THEFT UNDER - BICYCLE,2020-12-22T00:00:00,2020,December,Tuesday,22,357,23,2020-12-23T00:00:00,2020,December,Wednesday,23,358,9,D51,Toronto,74,North St.James Town (74),Bar / Restaurant,Commercial,OT,,RG,3,BLK,1200.0,STOLEN,8683,"{'type': 'Point', 'coordinates': (-79.37883544, 43.67093622)}"
-8686,7776,GO-20141677268,THEFT UNDER,2014-03-10T00:00:00,2014,March,Monday,10,69,19,2014-03-10T00:00:00,2014,March,Monday,10,69,19,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,OTHER,UNKNOWN,MT,10,GRN,200.0,STOLEN,8684,"{'type': 'Point', 'coordinates': (-79.37373773, 43.66729501)}"
-8687,7781,GO-20141711138,THEFT UNDER,2014-03-16T00:00:00,2014,March,Sunday,16,75,0,2014-03-16T00:00:00,2014,March,Sunday,16,75,11,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,,EL,0,BLK,500.0,STOLEN,8685,"{'type': 'Point', 'coordinates': (-79.3721682, 43.66763473)}"
-8688,7883,GO-20149003159,THEFT UNDER,2014-04-28T00:00:00,2014,April,Monday,28,118,10,2014-05-05T00:00:00,2014,May,Monday,5,125,10,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,MT,10,,3500.0,STOLEN,8686,"{'type': 'Point', 'coordinates': (-79.37942813, 43.6718256)}"
-8689,8039,GO-20149003789,THEFT UNDER,2014-06-03T00:00:00,2014,June,Tuesday,3,154,16,2014-06-03T00:00:00,2014,June,Tuesday,3,154,18,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,RG,7,PLE,205.0,STOLEN,8687,"{'type': 'Point', 'coordinates': (-79.3721682, 43.66763473)}"
-8690,8123,GO-20149003958,THEFT UNDER,2014-06-10T00:00:00,2014,June,Tuesday,10,161,8,2014-06-10T00:00:00,2014,June,Tuesday,10,161,20,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RM,RC70,RG,10,WHI,1500.0,STOLEN,8688,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-8691,8282,GO-20142420896,THEFT UNDER,2014-06-27T00:00:00,2014,June,Friday,27,178,10,2014-07-03T00:00:00,2014,July,Thursday,3,184,11,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NORCO,,TO,7,BLK,600.0,STOLEN,8689,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-8692,8422,GO-20149004991,THEFT UNDER,2014-07-14T00:00:00,2014,July,Monday,14,195,15,2014-07-14T00:00:00,2014,July,Monday,14,195,20,D51,Toronto,74,North St.James Town (74),Universities / Colleges,Educational,OT,SUPERA ROAD TEC,RC,21,RED,300.0,STOLEN,8690,"{'type': 'Point', 'coordinates': (-79.37681431, 43.67235839)}"
-8693,8434,GO-20149005027,THEFT FROM MOTOR VEHICLE UNDER,2014-07-15T00:00:00,2014,July,Tuesday,15,196,9,2014-07-16T00:00:00,2014,July,Wednesday,16,197,8,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,,EL,30,,2699.0,STOLEN,8691,"{'type': 'Point', 'coordinates': (-79.37640913, 43.67127239)}"
-8694,8435,GO-20149005027,THEFT FROM MOTOR VEHICLE UNDER,2014-07-15T00:00:00,2014,July,Tuesday,15,196,9,2014-07-16T00:00:00,2014,July,Wednesday,16,197,8,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,,EL,30,WHI,2699.0,STOLEN,8692,"{'type': 'Point', 'coordinates': (-79.37640913, 43.67127239)}"
-8695,8529,GO-20142600874,THEFT UNDER,2014-07-27T00:00:00,2014,July,Sunday,27,208,12,2014-07-30T00:00:00,2014,July,Wednesday,30,211,11,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,HYBRID,MT,24,BLK,1200.0,STOLEN,8693,"{'type': 'Point', 'coordinates': (-79.37645102, 43.66797312)}"
-8696,8540,GO-20149005428,THEFT UNDER,2014-07-28T00:00:00,2014,July,Monday,28,209,22,2014-07-29T00:00:00,2014,July,Tuesday,29,210,9,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,B. HINAULT,RC,18,,1500.0,STOLEN,8694,"{'type': 'Point', 'coordinates': (-79.37645102, 43.66797312)}"
-8697,8566,GO-20149005551,THEFT UNDER,2014-08-01T00:00:00,2014,August,Friday,1,213,14,2014-08-01T00:00:00,2014,August,Friday,1,213,15,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,NO,YORKVILLE,OT,7,BLU,650.0,STOLEN,8695,"{'type': 'Point', 'coordinates': (-79.37036718, 43.67025828)}"
-8698,8576,GO-20142654851,THEFT UNDER,2014-08-03T00:00:00,2014,August,Sunday,3,215,19,2014-08-07T00:00:00,2014,August,Thursday,7,219,16,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,,RC,10,,1000.0,STOLEN,8696,"{'type': 'Point', 'coordinates': (-79.37464369, 43.66709416)}"
-8699,8600,GO-20149005687,THEFT UNDER,2014-08-06T00:00:00,2014,August,Wednesday,6,218,19,2014-08-06T00:00:00,2014,August,Wednesday,6,218,23,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GF,,MT,21,ONG,,STOLEN,8697,"{'type': 'Point', 'coordinates': (-79.37513727, 43.66825437)}"
-8700,8640,GO-20142707849,THEFT UNDER,2014-07-12T00:00:00,2014,July,Saturday,12,193,14,2014-08-14T00:00:00,2014,August,Thursday,14,226,13,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,WINDSOR,EL,10,WHI,1217.0,STOLEN,8698,"{'type': 'Point', 'coordinates': (-79.3764768, 43.67145630000001)}"
-8701,8856,GO-20149006734,THEFT UNDER,2014-09-09T00:00:00,2014,September,Tuesday,9,252,12,2014-09-09T00:00:00,2014,September,Tuesday,9,252,23,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,,MT,21,RED,500.0,STOLEN,8699,"{'type': 'Point', 'coordinates': (-79.37513727, 43.66825437)}"
-8702,8874,GO-20142910453,B&E,2014-09-14T00:00:00,2014,September,Sunday,14,257,20,2014-09-15T00:00:00,2014,September,Monday,15,258,0,D51,Toronto,74,North St.James Town (74),"Private Property Structure (Pool, Shed, Detached Garage)",Other,WHEELER,,MT,20,SIL,350.0,STOLEN,8700,"{'type': 'Point', 'coordinates': (-79.37942813, 43.6718256)}"
-8703,8899,GO-20142922426,THEFT UNDER,2014-09-16T00:00:00,2014,September,Tuesday,16,259,22,2014-09-16T00:00:00,2014,September,Tuesday,16,259,22,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,MINELLI,RC,21,BLKWHI,375.0,STOLEN,8701,"{'type': 'Point', 'coordinates': (-79.37883544, 43.67093622)}"
-8704,9038,GO-20143074073,THEFT UNDER,2014-10-09T00:00:00,2014,October,Thursday,9,282,11,2014-10-09T00:00:00,2014,October,Thursday,9,282,16,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,219605953,OT,1,BLUTRQ,300.0,STOLEN,8702,"{'type': 'Point', 'coordinates': (-79.37681431, 43.67235839)}"
-8705,9044,GO-20143090689,THEFT UNDER,2014-10-11T00:00:00,2014,October,Saturday,11,284,11,2014-10-12T00:00:00,2014,October,Sunday,12,285,10,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TRAK,6000,MT,12,BLU,800.0,STOLEN,8703,"{'type': 'Point', 'coordinates': (-79.37464369, 43.66709416)}"
-8706,9105,GO-20149007782,B&E,2014-10-21T00:00:00,2014,October,Tuesday,21,294,17,2014-10-23T00:00:00,2014,October,Thursday,23,296,19,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,EM,GT5,EL,35,BLK,1095.0,STOLEN,8704,"{'type': 'Point', 'coordinates': (-79.37322899, 43.67133373000001)}"
-8707,9184,GO-20149008151,THEFT UNDER,2014-11-11T00:00:00,2014,November,Tuesday,11,315,8,2014-11-12T00:00:00,2014,November,Wednesday,12,316,8,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,EM,,EL,32,YEL,1595.0,STOLEN,8705,"{'type': 'Point', 'coordinates': (-79.37493677, 43.67129082)}"
-8708,9185,GO-20149008178,THEFT UNDER,2014-11-12T00:00:00,2014,November,Wednesday,12,316,14,2014-11-13T00:00:00,2014,November,Thursday,13,317,12,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,1,GRY,100.0,STOLEN,8706,"{'type': 'Point', 'coordinates': (-79.37681431, 43.67235839)}"
-8709,17155,GO-20151234751,POSSESSION PROPERTY OBC UNDER,2015-07-25T00:00:00,2015,July,Saturday,25,206,21,2015-07-25T00:00:00,2015,July,Saturday,25,206,21,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,MT,7,RED,0.0,STOLEN,8707,"{'type': 'Point', 'coordinates': (-79.37830693, 43.66628508)}"
-8710,10891,GO-20152228309,THEFT UNDER,2015-12-24T00:00:00,2015,December,Thursday,24,358,22,2015-12-29T00:00:00,2015,December,Tuesday,29,363,18,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,UNKNOWN,EL,1,,900.0,STOLEN,8708,"{'type': 'Point', 'coordinates': (-79.37373773, 43.66729501)}"
-8711,9231,GO-20149008790,THEFT UNDER,2014-12-15T00:00:00,2014,December,Monday,15,349,20,2014-12-16T00:00:00,2014,December,Tuesday,16,350,16,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,UK,ECLIPSE X20,FO,6,BLK,1300.0,STOLEN,8709,"{'type': 'Point', 'coordinates': (-79.37645102, 43.66797312)}"
-8712,9232,GO-20149008790,THEFT UNDER,2014-12-15T00:00:00,2014,December,Monday,15,349,20,2014-12-16T00:00:00,2014,December,Tuesday,16,350,16,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,UK,,FO,6,WHI,180.0,STOLEN,8710,"{'type': 'Point', 'coordinates': (-79.37645102, 43.66797312)}"
-8713,9241,GO-20149008982,THEFT UNDER,2014-12-18T00:00:00,2014,December,Thursday,18,352,21,2014-12-23T00:00:00,2014,December,Tuesday,23,357,21,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,XPR,EL,32,RED,2000.0,STOLEN,8711,"{'type': 'Point', 'coordinates': (-79.37866195000001, 43.66712397)}"
-8714,9249,GO-20151781,THEFT UNDER,2014-12-31T00:00:00,2014,December,Wednesday,31,365,18,2015-01-01T00:00:00,2015,January,Thursday,1,1,5,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,EL,1,MRN,1500.0,STOLEN,8712,"{'type': 'Point', 'coordinates': (-79.37807893, 43.66914655)}"
-8715,9259,GO-201578319,THEFT UNDER,2015-01-13T00:00:00,2015,January,Tuesday,13,13,13,2015-01-14T00:00:00,2015,January,Wednesday,14,14,13,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,ROCKY MOUNTAIN,SOUL,MT,21,GRNYEL,,STOLEN,8713,"{'type': 'Point', 'coordinates': (-79.37646069, 43.66642862)}"
-8716,9315,GO-20159001189,THEFT UNDER,2015-03-05T00:00:00,2015,March,Thursday,5,64,13,2015-03-09T00:00:00,2015,March,Monday,9,68,18,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,COCO,RG,9,DGR,699.0,STOLEN,8714,"{'type': 'Point', 'coordinates': (-79.37681431, 43.67235839)}"
-8717,9317,GO-20159001230,THEFT UNDER,2015-03-08T00:00:00,2015,March,Sunday,8,67,12,2015-03-11T00:00:00,2015,March,Wednesday,11,70,12,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,,TO,21,TRQ,400.0,STOLEN,8715,"{'type': 'Point', 'coordinates': (-79.37807893, 43.66914655)}"
-8718,9373,GO-2015571938,THEFT UNDER,2015-04-07T00:00:00,2015,April,Tuesday,7,97,4,2015-04-07T00:00:00,2015,April,Tuesday,7,97,4,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,,RG,1,BLU,,STOLEN,8716,"{'type': 'Point', 'coordinates': (-79.37646069, 43.66642862)}"
-8719,9456,GO-20159002127,THEFT UNDER,2015-04-19T00:00:00,2015,April,Sunday,19,109,17,2015-04-21T00:00:00,2015,April,Tuesday,21,111,10,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,TR,,RG,5,BLK,1000.0,STOLEN,8717,"{'type': 'Point', 'coordinates': (-79.37645102, 43.66797312)}"
-8720,9476,GO-2015685297,PROPERTY - FOUND,2015-04-18T00:00:00,2015,April,Saturday,18,108,14,2015-04-25T00:00:00,2015,April,Saturday,25,115,10,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KHS,TRUVATIV,RC,12,BLK,,UNKNOWN,8718,"{'type': 'Point', 'coordinates': (-79.37279145, 43.66924446)}"
-8721,9499,GO-20159002371,THEFT UNDER,2015-04-22T00:00:00,2015,April,Wednesday,22,112,18,2015-04-30T00:00:00,2015,April,Thursday,30,120,19,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,GI,SEEK 3,OT,18,BLK,1000.0,STOLEN,8719,"{'type': 'Point', 'coordinates': (-79.37513727, 43.66825437)}"
-8722,9728,GO-20159003349,THEFT UNDER,2015-06-04T00:00:00,2015,June,Thursday,4,155,9,2015-06-05T00:00:00,2015,June,Friday,5,156,10,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,3,BLK,1000.0,STOLEN,8720,"{'type': 'Point', 'coordinates': (-79.37681431, 43.67235839)}"
-8723,9779,GO-2015974784,THEFT UNDER,2015-06-09T00:00:00,2015,June,Tuesday,9,160,21,2015-06-10T00:00:00,2015,June,Wednesday,10,161,18,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,UNKNOWN,EL,1,RED,800.0,STOLEN,8721,"{'type': 'Point', 'coordinates': (-79.3721682, 43.66763473)}"
-8724,9787,GO-2015979614,THEFT UNDER,2015-06-07T00:00:00,2015,June,Sunday,7,158,14,2015-06-11T00:00:00,2015,June,Thursday,11,162,13,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FUJI,DECLARATION,RC,1,BLK,1000.0,STOLEN,8722,"{'type': 'Point', 'coordinates': (-79.37535291, 43.66874604)}"
-8725,9848,GO-20151049549,THEFT UNDER,2015-06-18T00:00:00,2015,June,Thursday,18,169,15,2015-06-22T00:00:00,2015,June,Monday,22,173,12,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUPERCYCLE,,RG,6,BLKRED,250.0,STOLEN,8723,"{'type': 'Point', 'coordinates': (-79.3721682, 43.66763473)}"
-8726,9852,GO-20159003838,THEFT UNDER,2015-06-22T00:00:00,2015,June,Monday,22,173,8,2015-06-22T00:00:00,2015,June,Monday,22,173,15,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,13 XFR 3 SILVER,OT,50,SIL,640.0,STOLEN,8724,"{'type': 'Point', 'coordinates': (-79.37581268, 43.66648596000001)}"
-8727,9883,GO-20159003932,THEFT UNDER,2015-06-25T00:00:00,2015,June,Thursday,25,176,14,2015-06-25T00:00:00,2015,June,Thursday,25,176,17,D51,Toronto,74,North St.James Town (74),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,TR,1400,OT,14,,0.0,STOLEN,8725,"{'type': 'Point', 'coordinates': (-79.37513727, 43.66825437)}"
-8728,9965,GO-20159004317,THEFT UNDER,2015-07-03T00:00:00,2015,July,Friday,3,184,8,2015-07-08T00:00:00,2015,July,Wednesday,8,189,20,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,MT,24,GRY,200.0,STOLEN,8726,"{'type': 'Point', 'coordinates': (-79.37807893, 43.66914655)}"
-8729,10172,GO-20151341963,THEFT UNDER,2015-07-28T00:00:00,2015,July,Tuesday,28,209,21,2015-08-06T00:00:00,2015,August,Thursday,6,218,20,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,SC1800,RG,18,SILPLE,99.0,STOLEN,8727,"{'type': 'Point', 'coordinates': (-79.37941202, 43.66889376)}"
-8730,10210,GO-20159005497,THEFT UNDER,2015-08-07T00:00:00,2015,August,Friday,7,219,20,2015-08-08T00:00:00,2015,August,Saturday,8,220,1,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,11.Dec,SC,1,ONG,1200.0,STOLEN,8728,"{'type': 'Point', 'coordinates': (-79.37646069, 43.66642862)}"
-8731,10314,GO-20159006084,B&E,2015-08-10T00:00:00,2015,August,Monday,10,222,17,2015-08-25T00:00:00,2015,August,Tuesday,25,237,9,D51,Toronto,74,North St.James Town (74),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,10,,700.0,STOLEN,8729,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-8732,10950,GO-20169000808,THEFT UNDER,2016-01-24T00:00:00,2016,January,Sunday,24,24,19,2016-01-25T00:00:00,2016,January,Monday,25,25,13,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,FJ,2014,OT,1,BLK,650.0,STOLEN,8730,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-8733,10970,GO-2016212153,THEFT UNDER,2016-02-03T00:00:00,2016,February,Wednesday,3,34,19,2016-02-05T00:00:00,2016,February,Friday,5,36,0,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,EL,16,,700.0,STOLEN,8731,"{'type': 'Point', 'coordinates': (-79.37036718, 43.67025828)}"
-8734,11084,GO-2016540530,THEFT UNDER - BICYCLE,2016-03-30T00:00:00,2016,March,Wednesday,30,90,2,2016-03-30T00:00:00,2016,March,Wednesday,30,90,17,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,EL,1,BLKGRN,2200.0,STOLEN,8732,"{'type': 'Point', 'coordinates': (-79.37368966, 43.67132826)}"
-8735,11107,GO-20169003104,THEFT UNDER,2016-04-03T00:00:00,2016,April,Sunday,3,94,8,2016-04-06T00:00:00,2016,April,Wednesday,6,97,7,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,COPPENHAGEN CAR,OT,21,BLK,1250.0,STOLEN,8733,"{'type': 'Point', 'coordinates': (-79.37620707000002, 43.67079259)}"
-8736,11229,GO-20169003977,THEFT UNDER - BICYCLE,2016-04-28T00:00:00,2016,April,Thursday,28,119,12,2016-04-30T00:00:00,2016,April,Saturday,30,121,12,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,REDUX,TO,8,BLK,700.0,STOLEN,8734,"{'type': 'Point', 'coordinates': (-79.37854549, 43.67025604)}"
-8737,11245,GO-2016748571,THEFT UNDER,2016-04-30T00:00:00,2016,April,Saturday,30,121,17,2016-05-02T00:00:00,2016,May,Monday,2,123,7,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,,SC,1,WHI,,STOLEN,8735,"{'type': 'Point', 'coordinates': (-79.37322899, 43.67133373000001)}"
-8738,11276,GO-2016791154,THEFT UNDER - BICYCLE,2016-05-08T00:00:00,2016,May,Sunday,8,129,8,2016-05-08T00:00:00,2016,May,Sunday,8,129,16,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,OTHER,MASSY ROAD BIKE,RC,1,BRN,100.0,STOLEN,8736,"{'type': 'Point', 'coordinates': (-79.37640913, 43.67127239)}"
-8739,11277,GO-2016791154,THEFT UNDER - BICYCLE,2016-05-08T00:00:00,2016,May,Sunday,8,129,8,2016-05-08T00:00:00,2016,May,Sunday,8,129,16,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,EMMO,,EL,1,LBL,300.0,STOLEN,8737,"{'type': 'Point', 'coordinates': (-79.37640913, 43.67127239)}"
-8740,11397,GO-2016928088,THEFT UNDER,2016-05-28T00:00:00,2016,May,Saturday,28,149,22,2016-05-29T00:00:00,2016,May,Sunday,29,150,13,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EBIKE,,EL,0,ONG,1000.0,STOLEN,8738,"{'type': 'Point', 'coordinates': (-79.37620707000002, 43.67079259)}"
-8741,11406,GO-20169005127,THEFT UNDER - BICYCLE,2016-05-28T00:00:00,2016,May,Saturday,28,149,19,2016-05-30T00:00:00,2016,May,Monday,30,151,10,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,OT,18,PLE,125.0,STOLEN,8739,"{'type': 'Point', 'coordinates': (-79.37620707000002, 43.67079259)}"
-8742,11408,GO-20169005139,THEFT UNDER - BICYCLE,2016-05-28T00:00:00,2016,May,Saturday,28,149,0,2016-05-30T00:00:00,2016,May,Monday,30,151,21,D51,Toronto,74,North St.James Town (74),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,NOVARA 2016,MT,21,BLK,280.0,STOLEN,8740,"{'type': 'Point', 'coordinates': (-79.3721682, 43.66763473)}"
-8743,11449,GO-20169005373,THEFT UNDER - BICYCLE,2016-06-05T00:00:00,2016,June,Sunday,5,157,0,2016-06-06T00:00:00,2016,June,Monday,6,158,10,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,2300,RC,11,OTH,350.0,STOLEN,8741,"{'type': 'Point', 'coordinates': (-79.3721682, 43.66763473)}"
-8744,11490,GO-20169005580,THEFT UNDER,2016-06-10T00:00:00,2016,June,Friday,10,162,8,2016-06-10T00:00:00,2016,June,Friday,10,162,17,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RG,24,GRY,800.0,STOLEN,8742,"{'type': 'Point', 'coordinates': (-79.37883544, 43.67093622)}"
-8745,11565,GO-20169005922,THEFT UNDER - BICYCLE,2016-06-16T00:00:00,2016,June,Thursday,16,168,0,2016-06-16T00:00:00,2016,June,Thursday,16,168,16,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,OT,12,RG,12,BLK,500.0,STOLEN,8743,"{'type': 'Point', 'coordinates': (-79.37513727, 43.66825437)}"
-8746,11595,GO-20161077459,THEFT UNDER - BICYCLE,2016-06-19T00:00:00,2016,June,Sunday,19,171,21,2016-06-20T00:00:00,2016,June,Monday,20,172,16,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,,OT,0,BLK,500.0,STOLEN,8744,"{'type': 'Point', 'coordinates': (-79.37646069, 43.66642862)}"
-8747,11689,GO-20161154877,THEFT UNDER - BICYCLE,2016-07-01T00:00:00,2016,July,Friday,1,183,14,2016-07-02T00:00:00,2016,July,Saturday,2,184,8,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FUJI,TRACK,OT,1,GRY,500.0,STOLEN,8745,"{'type': 'Point', 'coordinates': (-79.37620707000002, 43.67079259)}"
-8748,11865,GO-20169007548,THEFT UNDER - BICYCLE,2016-07-21T00:00:00,2016,July,Thursday,21,203,0,2016-07-21T00:00:00,2016,July,Thursday,21,203,10,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KO,,OT,24,BLK,0.0,STOLEN,8746,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-8749,11996,GO-20169008215,THEFT UNDER - BICYCLE,2016-08-03T00:00:00,2016,August,Wednesday,3,216,21,2016-08-04T00:00:00,2016,August,Thursday,4,217,16,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,,MT,21,BLK,800.0,STOLEN,8747,"{'type': 'Point', 'coordinates': (-79.37513727, 43.66825437)}"
-8750,12039,GO-20169008450,THEFT UNDER - BICYCLE,2016-08-08T00:00:00,2016,August,Monday,8,221,15,2016-08-09T00:00:00,2016,August,Tuesday,9,222,14,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CC,VECTOR 700C ROA,RG,21,,500.0,STOLEN,8748,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-8751,12101,GO-20169008794,THEFT UNDER - BICYCLE,2016-08-14T00:00:00,2016,August,Sunday,14,227,23,2016-08-15T00:00:00,2016,August,Monday,15,228,15,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,ROAD BIKE,RG,20,BLK,400.0,STOLEN,8749,"{'type': 'Point', 'coordinates': (-79.37493677, 43.67129082)}"
-8752,12271,GO-20161582762,THEFT UNDER,2016-08-09T00:00:00,2016,August,Tuesday,9,222,17,2016-09-06T00:00:00,2016,September,Tuesday,6,250,16,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RALEIGH,U/K,RG,99,LBL,120.0,STOLEN,8750,"{'type': 'Point', 'coordinates': (-79.37279145, 43.66924446)}"
-8753,10113,GO-20151255139,B&E,2015-07-23T00:00:00,2015,July,Thursday,23,204,1,2015-07-24T00:00:00,2015,July,Friday,24,205,3,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OTHER,,FO,0,,,STOLEN,10276,"{'type': 'Point', 'coordinates': (-79.38768427, 43.66564487000001)}"
-8754,12398,GO-20169010721,THEFT UNDER - BICYCLE,2016-09-16T00:00:00,2016,September,Friday,16,260,15,2016-09-19T00:00:00,2016,September,Monday,19,263,15,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,SU,CLASSIC CRUISER,RG,15,GRY,200.0,STOLEN,8751,"{'type': 'Point', 'coordinates': (-79.37854549, 43.67025604)}"
-8755,12492,GO-20169011279,THEFT UNDER,2016-09-28T00:00:00,2016,September,Wednesday,28,272,22,2016-09-29T00:00:00,2016,September,Thursday,29,273,2,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,EM,URBAN,EL,30,BLK,1000.0,STOLEN,8752,"{'type': 'Point', 'coordinates': (-79.37322899, 43.67133373000001)}"
-8756,12646,GO-20169012322,THEFT UNDER,2016-10-01T00:00:00,2016,October,Saturday,1,275,0,2016-10-19T00:00:00,2016,October,Wednesday,19,293,22,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,KH,URBAN XPRESS,OT,21,GRY,600.0,STOLEN,8753,"{'type': 'Point', 'coordinates': (-79.37373773, 43.66729501)}"
-8757,12734,GO-20169013094,THEFT OF EBIKE UNDER $5000,2016-11-07T00:00:00,2016,November,Monday,7,312,18,2016-11-07T00:00:00,2016,November,Monday,7,312,21,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EM,,SC,30,BLK,800.0,STOLEN,8754,"{'type': 'Point', 'coordinates': (-79.37581268, 43.66648596000001)}"
-8758,12735,GO-20169013094,THEFT OF EBIKE UNDER $5000,2016-11-07T00:00:00,2016,November,Monday,7,312,18,2016-11-07T00:00:00,2016,November,Monday,7,312,21,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EM,,EL,30,BLK,50.0,STOLEN,8755,"{'type': 'Point', 'coordinates': (-79.37581268, 43.66648596000001)}"
-8759,12832,GO-20162122700,B&E,2016-11-30T00:00:00,2016,November,Wednesday,30,335,4,2016-11-30T00:00:00,2016,November,Wednesday,30,335,4,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,GI,ALLIANCE TCR1,RC,21,RED,2400.0,STOLEN,8756,"{'type': 'Point', 'coordinates': (-79.37513727, 43.66825437)}"
-8760,12851,GO-20169014319,THEFT UNDER,2016-11-30T00:00:00,2016,November,Wednesday,30,335,23,2016-12-06T00:00:00,2016,December,Tuesday,6,341,23,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,OT,ZW 85,RC,18,RED,1650.0,STOLEN,8757,"{'type': 'Point', 'coordinates': (-79.37513727, 43.66825437)}"
-8761,13485,GO-20199014698,THEFT UNDER,2019-05-10T00:00:00,2019,May,Friday,10,130,22,2019-05-11T00:00:00,2019,May,Saturday,11,131,14,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,700C CIRCUIT,RC,14,BLU,300.0,STOLEN,8758,"{'type': 'Point', 'coordinates': (-79.37681431, 43.67235839)}"
-8762,13664,GO-20179006677,THEFT UNDER - BICYCLE,2017-05-18T00:00:00,2017,May,Thursday,18,138,21,2017-05-19T00:00:00,2017,May,Friday,19,139,21,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,HF,,RG,5,BLU,108.0,STOLEN,8759,"{'type': 'Point', 'coordinates': (-79.37087406, 43.66790841)}"
-8763,13673,GO-20179008675,THEFT UNDER,2017-03-31T00:00:00,2017,March,Friday,31,90,10,2017-06-22T00:00:00,2017,June,Thursday,22,173,11,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,MARY XC,MT,9,YEL,0.0,STOLEN,8760,"{'type': 'Point', 'coordinates': (-79.37279145, 43.66924446)}"
-8764,13674,GO-20179008675,THEFT UNDER,2017-03-31T00:00:00,2017,March,Friday,31,90,10,2017-06-22T00:00:00,2017,June,Thursday,22,173,11,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,850,MT,24,BLK,0.0,STOLEN,8761,"{'type': 'Point', 'coordinates': (-79.37279145, 43.66924446)}"
-8765,13675,GO-20179008675,THEFT UNDER,2017-03-31T00:00:00,2017,March,Friday,31,90,10,2017-06-22T00:00:00,2017,June,Thursday,22,173,11,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,,RG,24,PLE,0.0,STOLEN,8762,"{'type': 'Point', 'coordinates': (-79.37279145, 43.66924446)}"
-8766,13676,GO-20179008675,THEFT UNDER,2017-03-31T00:00:00,2017,March,Friday,31,90,10,2017-06-22T00:00:00,2017,June,Thursday,22,173,11,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,OT,7,ONG,0.0,STOLEN,8763,"{'type': 'Point', 'coordinates': (-79.37279145, 43.66924446)}"
-8767,13677,GO-20179008675,THEFT UNDER,2017-03-31T00:00:00,2017,March,Friday,31,90,10,2017-06-22T00:00:00,2017,June,Thursday,22,173,11,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SU,,BM,1,RED,0.0,STOLEN,8764,"{'type': 'Point', 'coordinates': (-79.37279145, 43.66924446)}"
-8768,13679,GO-20171123966,THEFT UNDER - BICYCLE,2017-06-23T00:00:00,2017,June,Friday,23,174,17,2017-06-23T00:00:00,2017,June,Friday,23,174,19,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,OT,1,WHI,800.0,STOLEN,8765,"{'type': 'Point', 'coordinates': (-79.3764768, 43.67145630000001)}"
-8769,13863,GO-2015822632,THEFT UNDER,2015-05-17T00:00:00,2015,May,Sunday,17,137,14,2015-05-17T00:00:00,2015,May,Sunday,17,137,14,D51,Toronto,74,North St.James Town (74),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,,MT,4,PLE,400.0,STOLEN,8774,"{'type': 'Point', 'coordinates': (-79.37645102, 43.66797312)}"
-8770,13704,GO-20179012262,THEFT UNDER - BICYCLE,2017-08-10T00:00:00,2017,August,Thursday,10,222,0,2017-08-12T00:00:00,2017,August,Saturday,12,224,16,D51,Toronto,74,North St.James Town (74),"Religious Facilities (Synagogue, Church, Convent, Mosque)",Other,CC,ORYX,MT,15,WHI,100.0,STOLEN,8766,"{'type': 'Point', 'coordinates': (-79.37368966, 43.67132826)}"
-8771,13720,GO-20171793469,THEFT UNDER - BICYCLE,2017-10-03T00:00:00,2017,October,Tuesday,3,276,8,2017-10-03T00:00:00,2017,October,Tuesday,3,276,14,D51,Toronto,74,North St.James Town (74),Schools During Supervised Activity,Educational,DAVINCI,,TA,1,BLU,900.0,STOLEN,8767,"{'type': 'Point', 'coordinates': (-79.37807893, 43.66914655)}"
-8772,13726,GO-20179018042,THEFT UNDER - BICYCLE,2017-10-24T00:00:00,2017,October,Tuesday,24,297,8,2017-10-24T00:00:00,2017,October,Tuesday,24,297,13,D51,Toronto,74,North St.James Town (74),Schools During Supervised Activity,Educational,OT,FIXIE SINGLE SP,RG,1,WHI,400.0,STOLEN,8768,"{'type': 'Point', 'coordinates': (-79.37279145, 43.66924446)}"
-8773,13745,GO-2018610081,THEFT UNDER,2018-03-01T00:00:00,2018,March,Thursday,1,60,0,2018-04-05T00:00:00,2018,April,Thursday,5,95,13,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,FOTRESS,SC,1,BLK,3000.0,STOLEN,8769,"{'type': 'Point', 'coordinates': (-79.37538102, 43.67127942)}"
-8774,13760,GO-20189016871,THEFT UNDER - BICYCLE,2018-05-28T00:00:00,2018,May,Monday,28,148,0,2018-05-30T00:00:00,2018,May,Wednesday,30,150,20,D51,Toronto,74,North St.James Town (74),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,SC,,RG,21,GLD,549.0,STOLEN,8770,"{'type': 'Point', 'coordinates': (-79.37575001, 43.6696557)}"
-8775,13817,GO-20181708230,THEFT OF EBIKE UNDER $5000,2018-09-14T00:00:00,2018,September,Friday,14,257,23,2018-09-15T00:00:00,2018,September,Saturday,15,258,0,D51,Toronto,74,North St.James Town (74),"Gas Station (Self, Full, Attached Convenience)",Commercial,OTHER,,EL,1,WHI,,STOLEN,8771,"{'type': 'Point', 'coordinates': (-79.37830693, 43.66628508)}"
-8776,13827,GO-20189031590,THEFT UNDER - BICYCLE,2018-09-22T00:00:00,2018,September,Saturday,22,265,19,2018-09-23T00:00:00,2018,September,Sunday,23,266,16,D51,Toronto,74,North St.James Town (74),Bar / Restaurant,Commercial,OT,SIRRUS,RG,24,BLK,700.0,STOLEN,8772,"{'type': 'Point', 'coordinates': (-79.37493677, 43.67129082)}"
-8777,13839,GO-20189034953,THEFT UNDER - BICYCLE,2018-10-21T00:00:00,2018,October,Sunday,21,294,13,2018-10-21T00:00:00,2018,October,Sunday,21,294,16,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,GHOST,RG,24,DBL,650.0,STOLEN,8773,"{'type': 'Point', 'coordinates': (-79.37575001, 43.6696557)}"
-8778,13864,GO-2015822632,THEFT UNDER,2015-05-17T00:00:00,2015,May,Sunday,17,137,14,2015-05-17T00:00:00,2015,May,Sunday,17,137,14,D51,Toronto,74,North St.James Town (74),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,,MT,4,BLK,630.0,STOLEN,8775,"{'type': 'Point', 'coordinates': (-79.37645102, 43.66797312)}"
-8779,13892,GO-20151341972,THEFT UNDER,2015-07-31T00:00:00,2015,July,Friday,31,212,17,2015-08-05T00:00:00,2015,August,Wednesday,5,217,20,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,SUPERCYCLE,CLASSIC,MT,18,WHI,,STOLEN,8776,"{'type': 'Point', 'coordinates': (-79.37087406, 43.66790841)}"
-8780,13936,GO-20159010526,THEFT UNDER,2015-12-05T00:00:00,2015,December,Saturday,5,339,9,2015-12-05T00:00:00,2015,December,Saturday,5,339,19,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,TRAIL X COMP,MT,24,,649.0,STOLEN,8777,"{'type': 'Point', 'coordinates': (-79.3764768, 43.67145630000001)}"
-8781,13940,GO-20159011172,THEFT UNDER,2015-12-23T00:00:00,2015,December,Wednesday,23,357,13,2015-12-23T00:00:00,2015,December,Wednesday,23,357,17,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EM,GT5,EL,32,PLE,1000.0,STOLEN,8778,"{'type': 'Point', 'coordinates': (-79.37646069, 43.66642862)}"
-8782,13958,GO-2016666133,THEFT UNDER,2016-04-15T00:00:00,2016,April,Friday,15,106,14,2016-04-18T00:00:00,2016,April,Monday,18,109,19,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,MONSTER,EL,0,BLK,1700.0,STOLEN,8779,"{'type': 'Point', 'coordinates': (-79.37373773, 43.66729501)}"
-8783,13959,GO-2016666296,THEFT UNDER - BICYCLE,2016-04-18T00:00:00,2016,April,Monday,18,109,22,2016-04-19T00:00:00,2016,April,Tuesday,19,110,16,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,RAPTOR,EL,12,WHI,2500.0,STOLEN,8780,"{'type': 'Point', 'coordinates': (-79.37373773, 43.66729501)}"
-8784,13960,GO-2016666296,THEFT UNDER - BICYCLE,2016-04-18T00:00:00,2016,April,Monday,18,109,22,2016-04-19T00:00:00,2016,April,Tuesday,19,110,16,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,RAPTOR,EL,12,,2500.0,RECOVERED,8781,"{'type': 'Point', 'coordinates': (-79.37373773, 43.66729501)}"
-8785,13962,GO-2016762238,THEFT UNDER - BICYCLE,2016-05-04T00:00:00,2016,May,Wednesday,4,125,5,2016-05-04T00:00:00,2016,May,Wednesday,4,125,9,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,EMMO,,EL,1,PLE,1700.0,STOLEN,8782,"{'type': 'Point', 'coordinates': (-79.37620707000002, 43.67079259)}"
-8786,13975,GO-20169005854,THEFT UNDER,2016-06-14T00:00:00,2016,June,Tuesday,14,166,20,2016-06-15T00:00:00,2016,June,Wednesday,15,167,19,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,CC,29ER,MT,24,BLU,300.0,STOLEN,8783,"{'type': 'Point', 'coordinates': (-79.37279145, 43.66924446)}"
-8787,13981,GO-20161158462,THEFT UNDER - BICYCLE,2016-07-02T00:00:00,2016,July,Saturday,2,184,19,2016-07-02T00:00:00,2016,July,Saturday,2,184,20,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KONA,DEW,MT,18,BLU,300.0,STOLEN,8784,"{'type': 'Point', 'coordinates': (-79.37830693, 43.66628508)}"
-8788,13982,GO-20169006817,THEFT UNDER - BICYCLE,2016-07-04T00:00:00,2016,July,Monday,4,186,15,2016-07-06T00:00:00,2016,July,Wednesday,6,188,15,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,SECTEUR,RC,18,BLK,2000.0,STOLEN,8785,"{'type': 'Point', 'coordinates': (-79.37645102, 43.66797312)}"
-8789,14000,GO-20169009265,THEFT UNDER - BICYCLE,2016-08-20T00:00:00,2016,August,Saturday,20,233,21,2016-08-20T00:00:00,2016,August,Saturday,20,233,21,D51,Toronto,74,North St.James Town (74),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,RC,18,,1500.0,STOLEN,8786,"{'type': 'Point', 'coordinates': (-79.37645102, 43.66797312)}"
-8790,14005,GO-20169009774,THEFT UNDER,2016-08-25T00:00:00,2016,August,Thursday,25,238,7,2016-08-31T00:00:00,2016,August,Wednesday,31,244,19,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,ASPECT 930,MT,27,BLU,1000.0,STOLEN,8787,"{'type': 'Point', 'coordinates': (-79.37646069, 43.66642862)}"
-8791,14010,GO-20161588831,THEFT UNDER - BICYCLE,2016-09-05T00:00:00,2016,September,Monday,5,249,10,2016-09-07T00:00:00,2016,September,Wednesday,7,251,14,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,MT,10,BLK,100.0,STOLEN,8788,"{'type': 'Point', 'coordinates': (-79.37373773, 43.66729501)}"
-8792,14016,GO-20161671512,OTHER FEDERAL STATUTE OFFENCES,2016-09-20T00:00:00,2016,September,Tuesday,20,264,3,2016-09-20T00:00:00,2016,September,Tuesday,20,264,3,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,6KU TRACK 55,OT,1,BLK,,RECOVERED,8789,"{'type': 'Point', 'coordinates': (-79.37493677, 43.67129082)}"
-8793,14023,GO-20169011934,THEFT UNDER,2016-10-12T00:00:00,2016,October,Wednesday,12,286,8,2016-10-12T00:00:00,2016,October,Wednesday,12,286,13,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,NO,,OT,21,BLK,545.0,STOLEN,8790,"{'type': 'Point', 'coordinates': (-79.37575001, 43.6696557)}"
-8794,14025,GO-20161830076,THEFT UNDER - BICYCLE,2016-10-14T00:00:00,2016,October,Friday,14,288,8,2016-10-14T00:00:00,2016,October,Friday,14,288,18,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KHS,,OT,0,,600.0,STOLEN,8791,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-8795,14370,GO-20142308806,THEFT UNDER,2014-06-16T00:00:00,2014,June,Monday,16,167,12,2014-06-17T00:00:00,2014,June,Tuesday,17,168,12,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KHS,TR-101,RG,18,BLK,1200.0,STOLEN,8792,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-8796,14413,GO-20142919744,PROPERTY - FOUND,2014-09-16T00:00:00,2014,September,Tuesday,16,259,9,2014-09-16T00:00:00,2014,September,Tuesday,16,259,9,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,99,,,RECOVERED,8793,"{'type': 'Point', 'coordinates': (-79.37373773, 43.66729501)}"
-8797,14422,GO-20143111031,THEFT UNDER,2014-10-15T00:00:00,2014,October,Wednesday,15,288,12,2014-10-15T00:00:00,2014,October,Wednesday,15,288,20,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,DAYMAK ROME,EL,32,BLU,2000.0,STOLEN,8794,"{'type': 'Point', 'coordinates': (-79.37646069, 43.66642862)}"
-8798,14426,GO-20143257735,THEFT UNDER,2014-10-10T00:00:00,2014,October,Friday,10,283,17,2014-11-07T00:00:00,2014,November,Friday,7,311,14,D51,Toronto,74,North St.James Town (74),"Single Home, House (Attach Garage, Cottage, Mobile)",House,PEUGEOT,CLUB,OT,0,DBL,100.0,STOLEN,8795,"{'type': 'Point', 'coordinates': (-79.37322899, 43.67133373000001)}"
-8799,14428,GO-20143410718,THEFT UNDER,2014-11-28T00:00:00,2014,November,Friday,28,332,19,2014-12-02T00:00:00,2014,December,Tuesday,2,336,21,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,GT6,EL,1,REDWHI,1299.0,STOLEN,8796,"{'type': 'Point', 'coordinates': (-79.37513727, 43.66825437)}"
-8800,14429,GO-20149008696,THEFT UNDER,2014-12-10T00:00:00,2014,December,Wednesday,10,344,8,2014-12-11T00:00:00,2014,December,Thursday,11,345,15,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,UK,,TO,12,RED,1000.0,STOLEN,8797,"{'type': 'Point', 'coordinates': (-79.37620707000002, 43.67079259)}"
-8801,14432,GO-201567608,THEFT UNDER,2015-01-09T00:00:00,2015,January,Friday,9,9,21,2015-01-12T00:00:00,2015,January,Monday,12,12,18,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,EMMO,URBAN,EL,1,GRN,1000.0,STOLEN,8798,"{'type': 'Point', 'coordinates': (-79.37513727, 43.66825437)}"
-8802,14437,GO-20159001252,THEFT UNDER,2015-03-11T00:00:00,2015,March,Wednesday,11,70,7,2015-03-12T00:00:00,2015,March,Thursday,12,71,11,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,18,BLK,2300.0,STOLEN,8799,"{'type': 'Point', 'coordinates': (-79.37645102, 43.66797312)}"
-8803,14441,GO-2015654847,B&E,2015-04-17T00:00:00,2015,April,Friday,17,107,17,2015-04-20T00:00:00,2015,April,Monday,20,110,17,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,IRON HORSE,,OT,21,BRNWHI,,STOLEN,8800,"{'type': 'Point', 'coordinates': (-79.37645102, 43.66797312)}"
-8804,15656,GO-20199023643,THEFT UNDER,2019-07-22T00:00:00,2019,July,Monday,22,203,12,2019-07-25T00:00:00,2019,July,Thursday,25,206,10,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,8,BRN,400.0,STOLEN,8801,"{'type': 'Point', 'coordinates': (-79.37645102, 43.66797312)}"
-8805,15674,GO-20199026553,THEFT UNDER,2019-08-16T00:00:00,2019,August,Friday,16,228,13,2019-08-16T00:00:00,2019,August,Friday,16,228,21,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,KH,URBAN,RG,18,MRN,350.0,STOLEN,8802,"{'type': 'Point', 'coordinates': (-79.37279145, 43.66924446)}"
-8806,15725,GO-20199035338,THEFT UNDER - BICYCLE,2019-10-25T00:00:00,2019,October,Friday,25,298,20,2019-10-26T00:00:00,2019,October,Saturday,26,299,12,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,CANNADOLE,MT,16,BLK,100.0,STOLEN,8803,"{'type': 'Point', 'coordinates': (-79.37883544, 43.67093622)}"
-8807,15741,GO-20209003120,THEFT UNDER,2020-01-26T00:00:00,2020,January,Sunday,26,26,16,2020-01-26T00:00:00,2020,January,Sunday,26,26,19,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SC,,MT,9,DGR,50.0,STOLEN,8804,"{'type': 'Point', 'coordinates': (-79.37279145, 43.66924446)}"
-8808,15761,GO-20209013720,THEFT UNDER,2019-11-01T00:00:00,2019,November,Friday,1,305,16,2020-05-22T00:00:00,2020,May,Friday,22,143,17,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,GI,,RC,21,DBL,1500.0,STOLEN,8805,"{'type': 'Point', 'coordinates': (-79.37646069, 43.66642862)}"
-8809,15762,GO-20209013720,THEFT UNDER,2019-11-01T00:00:00,2019,November,Friday,1,305,16,2020-05-22T00:00:00,2020,May,Friday,22,143,17,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,21,BLK,400.0,STOLEN,8806,"{'type': 'Point', 'coordinates': (-79.37646069, 43.66642862)}"
-8810,15834,GO-20209025077,THEFT UNDER,2020-09-29T00:00:00,2020,September,Tuesday,29,273,18,2020-09-30T00:00:00,2020,September,Wednesday,30,274,18,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,3,GRN,1700.0,STOLEN,8807,"{'type': 'Point', 'coordinates': (-79.374408, 43.66886889)}"
-8811,16345,GO-20199023856,THEFT UNDER,2019-07-26T00:00:00,2019,July,Friday,26,207,10,2019-07-26T00:00:00,2019,July,Friday,26,207,13,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CROSSTRAIL,RG,9,SIL,1000.0,STOLEN,8808,"{'type': 'Point', 'coordinates': (-79.37681431, 43.67235839)}"
-8812,16364,GO-20199026866,THEFT UNDER,2019-08-18T00:00:00,2019,August,Sunday,18,230,1,2019-08-19T00:00:00,2019,August,Monday,19,231,20,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CC,SUTHERLAND GRAV,TO,14,GRY,630.0,STOLEN,8809,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-8813,16407,GO-20192062765,THEFT OF EBIKE UNDER $5000,2019-10-25T00:00:00,2019,October,Friday,25,298,9,2019-10-28T00:00:00,2019,October,Monday,28,301,13,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,XIOMI,MYSTYLE,SC,5,BLK,500.0,STOLEN,8810,"{'type': 'Point', 'coordinates': (-79.37681431, 43.67235839)}"
-8814,16448,GO-20209011513,THEFT UNDER,2019-09-01T00:00:00,2019,September,Sunday,1,244,17,2020-04-19T00:00:00,2020,April,Sunday,19,110,17,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,BAD BOY,RG,16,BLK,1159.0,STOLEN,8811,"{'type': 'Point', 'coordinates': (-79.37513727, 43.66825437)}"
-8815,16466,GO-20209015872,THEFT UNDER,2020-06-21T00:00:00,2020,June,Sunday,21,173,21,2020-06-22T00:00:00,2020,June,Monday,22,174,10,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MILANO,OT,21,BLK,500.0,STOLEN,8812,"{'type': 'Point', 'coordinates': (-79.37620707000002, 43.67079259)}"
-8816,16507,GO-20201604857,THEFT OF EBIKE UNDER $5000,2020-08-25T00:00:00,2020,August,Tuesday,25,238,8,2020-08-25T00:00:00,2020,August,Tuesday,25,238,21,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,UK,,EL,30,,2000.0,STOLEN,8813,"{'type': 'Point', 'coordinates': (-79.37681431, 43.67235839)}"
-8817,16745,GO-20199013417,THEFT UNDER,2019-04-28T00:00:00,2019,April,Sunday,28,118,18,2019-04-29T00:00:00,2019,April,Monday,29,119,12,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,GIANT FASTROAD,RG,22,RED,1599.0,STOLEN,8814,"{'type': 'Point', 'coordinates': (-79.37807893, 43.66914655)}"
-8818,16775,GO-20199020185,THEFT UNDER,2019-06-22T00:00:00,2019,June,Saturday,22,173,16,2019-06-26T00:00:00,2019,June,Wednesday,26,177,13,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MA,,TO,7,DGR,500.0,STOLEN,8815,"{'type': 'Point', 'coordinates': (-79.37493677, 43.67129082)}"
-8819,16777,GO-20199021030,THEFT UNDER,2019-07-04T00:00:00,2019,July,Thursday,4,185,19,2019-07-04T00:00:00,2019,July,Thursday,4,185,21,D51,Toronto,74,North St.James Town (74),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,THE HOPPER,RG,1,TRQ,400.0,STOLEN,8816,"{'type': 'Point', 'coordinates': (-79.37640913, 43.67127239)}"
-8820,16944,GO-20179009661,THEFT UNDER - BICYCLE,2017-07-07T00:00:00,2017,July,Friday,7,188,7,2017-07-07T00:00:00,2017,July,Friday,7,188,17,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KH,,OT,1,BLK,450.0,STOLEN,8817,"{'type': 'Point', 'coordinates': (-79.37681431, 43.67235839)}"
-8821,16946,GO-20179010137,THEFT UNDER - BICYCLE,2017-07-13T00:00:00,2017,July,Thursday,13,194,9,2017-07-13T00:00:00,2017,July,Thursday,13,194,18,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SU,,RG,18,RED,0.0,STOLEN,8818,"{'type': 'Point', 'coordinates': (-79.37681431, 43.67235839)}"
-8822,16957,GO-20179011125,THEFT UNDER - BICYCLE,2017-05-26T00:00:00,2017,May,Friday,26,146,9,2017-07-27T00:00:00,2017,July,Thursday,27,208,9,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,MODENA,OT,21,GRY,400.0,STOLEN,8819,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-8823,16987,GO-20171787978,B&E,2017-10-02T00:00:00,2017,October,Monday,2,275,3,2017-10-02T00:00:00,2017,October,Monday,2,275,17,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,OTHER,RITCHEY LOGIC,RC,22,GRY,5500.0,STOLEN,8820,"{'type': 'Point', 'coordinates': (-79.37513727, 43.66825437)}"
-8824,4648,GO-20191223636,THEFT UNDER - BICYCLE,2019-07-01T00:00:00,2019,July,Monday,1,182,15,2019-07-01T00:00:00,2019,July,Monday,1,182,19,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,UNKNOWN,RG,18,BLU,150.0,STOLEN,8821,"{'type': 'Point', 'coordinates': (-79.3763333, 43.65225839)}"
-8825,17170,GO-20159006994,THEFT UNDER,2015-09-10T00:00:00,2015,September,Thursday,10,253,13,2015-09-10T00:00:00,2015,September,Thursday,10,253,17,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,TRACK CLASSIC,RG,20,WHI,600.0,STOLEN,8822,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-8826,4655,GO-20199020803,THEFT UNDER,2019-07-02T00:00:00,2019,July,Tuesday,2,183,22,2019-07-03T00:00:00,2019,July,Wednesday,3,184,9,D51,Toronto,75,Church-Yonge Corridor (75),Homeless Shelter / Mission,Other,UK,,OT,1,RED,500.0,STOLEN,8823,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-8827,4678,GO-20199021182,THEFT UNDER,2019-07-05T00:00:00,2019,July,Friday,5,186,23,2019-07-06T00:00:00,2019,July,Saturday,6,187,0,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,OT,PLUG 4,TO,2,SIL,350.0,STOLEN,8824,"{'type': 'Point', 'coordinates': (-79.37843045, 43.65040714)}"
-8828,4688,GO-20199021298,THEFT UNDER,2019-07-04T00:00:00,2019,July,Thursday,4,185,14,2019-07-07T00:00:00,2019,July,Sunday,7,188,1,D51,Toronto,75,Church-Yonge Corridor (75),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,OT,FAT BIKE,OT,10,BLK,2000.0,STOLEN,8825,"{'type': 'Point', 'coordinates': (-79.37827718, 43.65626242)}"
-8829,4701,GO-20191273396,THEFT UNDER,2019-07-04T00:00:00,2019,July,Thursday,4,185,0,2019-07-08T00:00:00,2019,July,Monday,8,189,14,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,SPORTEK,,MT,21,WHI,,STOLEN,8826,"{'type': 'Point', 'coordinates': (-79.37267618, 43.65234821)}"
-8830,4733,GO-20199021705,THEFT UNDER,2019-07-10T00:00:00,2019,July,Wednesday,10,191,17,2019-07-10T00:00:00,2019,July,Wednesday,10,191,18,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,OT,ALBA,RG,14,PLE,600.0,STOLEN,8827,"{'type': 'Point', 'coordinates': (-79.37573379, 43.65316827000001)}"
-8831,4743,GO-20199021847,THEFT UNDER,2019-07-11T00:00:00,2019,July,Thursday,11,192,9,2019-07-11T00:00:00,2019,July,Thursday,11,192,12,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,SU,BEAST 29 INCH,MT,21,BLU,350.0,STOLEN,8828,"{'type': 'Point', 'coordinates': (-79.37781507, 43.65821091)}"
-8832,4744,GO-20199021847,THEFT UNDER,2019-07-11T00:00:00,2019,July,Thursday,11,192,9,2019-07-11T00:00:00,2019,July,Thursday,11,192,12,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,SU,,MT,21,,350.0,STOLEN,8829,"{'type': 'Point', 'coordinates': (-79.37781507, 43.65821091)}"
-8833,4756,GO-20199021958,THEFT UNDER,2019-07-11T00:00:00,2019,July,Thursday,11,192,12,2019-07-11T00:00:00,2019,July,Thursday,11,192,20,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,SC,,TO,1,BLU,0.0,STOLEN,8830,"{'type': 'Point', 'coordinates': (-79.3763333, 43.65225839)}"
-8834,4759,GO-20199022046,THEFT UNDER,2019-07-05T00:00:00,2019,July,Friday,5,186,8,2019-07-12T00:00:00,2019,July,Friday,12,193,14,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,21,DBL,500.0,STOLEN,8831,"{'type': 'Point', 'coordinates': (-79.38201616, 43.6683485)}"
-8835,4811,GO-20199022967,THEFT UNDER - BICYCLE,2019-07-19T00:00:00,2019,July,Friday,19,200,7,2019-07-19T00:00:00,2019,July,Friday,19,200,17,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,DEW,RG,24,GRN,699.0,STOLEN,8832,"{'type': 'Point', 'coordinates': (-79.37720552, 43.6506687)}"
-8836,4839,GO-20199023290,THEFT UNDER - BICYCLE,2019-07-22T00:00:00,2019,July,Monday,22,203,12,2019-07-22T00:00:00,2019,July,Monday,22,203,18,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,RC,9,GRY,800.0,STOLEN,8833,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-8837,4855,GO-20199023473,THEFT UNDER,2019-07-22T00:00:00,2019,July,Monday,22,203,20,2019-07-23T00:00:00,2019,July,Tuesday,23,204,23,D51,Toronto,75,Church-Yonge Corridor (75),Convenience Stores,Commercial,OT,ENERGY,RC,24,BLK,750.0,STOLEN,8834,"{'type': 'Point', 'coordinates': (-79.37894504, 43.65169174)}"
-8838,4870,GO-20199023606,THEFT UNDER,2019-07-24T00:00:00,2019,July,Wednesday,24,205,16,2019-07-24T00:00:00,2019,July,Wednesday,24,205,19,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,ROVE,TO,8,BLK,1164.0,STOLEN,8835,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-8839,4877,GO-20191370633,THEFT UNDER - BICYCLE,2019-07-21T00:00:00,2019,July,Sunday,21,202,14,2019-07-21T00:00:00,2019,July,Sunday,21,202,17,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,DEFYE,TO,21,BLKYEL,3000.0,STOLEN,8836,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-8840,4878,GO-20199023673,THEFT UNDER - BICYCLE,2019-07-19T00:00:00,2019,July,Friday,19,200,13,2019-07-25T00:00:00,2019,July,Thursday,25,206,11,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,"DOLCE ELITE 51""""",OT,10,OTH,2000.0,STOLEN,8837,"{'type': 'Point', 'coordinates': (-79.37215317, 43.64913066)}"
-8841,4896,GO-20191403136,THEFT UNDER,2019-07-26T00:00:00,2019,July,Friday,26,207,4,2019-07-26T00:00:00,2019,July,Friday,26,207,4,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,,EL,1,,,RECOVERED,8838,"{'type': 'Point', 'coordinates': (-79.38334664, 43.66205466)}"
-8842,4900,GO-20199024009,THEFT UNDER,2019-07-25T00:00:00,2019,July,Thursday,25,206,18,2019-07-27T00:00:00,2019,July,Saturday,27,208,13,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,YORKVILLE,RG,21,GRY,500.0,STOLEN,8839,"{'type': 'Point', 'coordinates': (-79.37583535, 43.65495451)}"
-8843,4903,GO-20199024068,THEFT UNDER - BICYCLE,2019-07-27T00:00:00,2019,July,Saturday,27,208,0,2019-07-27T00:00:00,2019,July,Saturday,27,208,22,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,FIDELIO,RG,14,RED,700.0,STOLEN,8840,"{'type': 'Point', 'coordinates': (-79.37796823, 43.66213714)}"
-8844,4904,GO-20199024060,THEFT UNDER - BICYCLE,2019-07-22T00:00:00,2019,July,Monday,22,203,7,2019-07-27T00:00:00,2019,July,Saturday,27,208,20,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,NEKO S WSD,RC,16,BLK,650.0,STOLEN,8841,"{'type': 'Point', 'coordinates': (-79.37410556, 43.64926232)}"
-8845,4913,GO-20191408383,THEFT OF EBIKE UNDER $5000,2019-07-25T00:00:00,2019,July,Thursday,25,206,10,2019-07-30T00:00:00,2019,July,Tuesday,30,211,17,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,VIPER MAX,EL,1,RED,3000.0,STOLEN,8842,"{'type': 'Point', 'coordinates': (-79.38007115, 43.66369728000001)}"
-8846,4961,GO-20199024891,THEFT UNDER,2019-08-02T00:00:00,2019,August,Friday,2,214,6,2019-08-04T00:00:00,2019,August,Sunday,4,216,9,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,KO,KONA ROVAL,OT,1,BLK,2000.0,STOLEN,8843,"{'type': 'Point', 'coordinates': (-79.37953592, 43.65629127)}"
-8847,4962,GO-20199024898,THEFT UNDER,2019-08-02T00:00:00,2019,August,Friday,2,214,16,2019-08-04T00:00:00,2019,August,Sunday,4,216,12,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,SU,,MT,18,,170.0,STOLEN,8844,"{'type': 'Point', 'coordinates': (-79.37781507, 43.65821091)}"
-8848,4965,GO-20199024919,THEFT UNDER,2018-06-01T00:00:00,2018,June,Friday,1,152,13,2019-08-04T00:00:00,2019,August,Sunday,4,216,13,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,VITA,MT,12,BLK,700.0,STOLEN,8845,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-8849,4966,GO-20199024935,THEFT UNDER,2019-08-03T00:00:00,2019,August,Saturday,3,215,19,2019-08-04T00:00:00,2019,August,Sunday,4,216,16,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,SCHWINN GTX-2,OT,21,BLK,550.0,STOLEN,8846,"{'type': 'Point', 'coordinates': (-79.38052643, 43.67161072)}"
-8850,4967,GO-20199024938,THEFT UNDER,2019-08-04T00:00:00,2019,August,Sunday,4,216,1,2019-08-04T00:00:00,2019,August,Sunday,4,216,16,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,5,WHI,200.0,STOLEN,8847,"{'type': 'Point', 'coordinates': (-79.37583535, 43.65495451)}"
-8851,4975,GO-20199025058,THEFT UNDER,2019-08-05T00:00:00,2019,August,Monday,5,217,18,2019-08-05T00:00:00,2019,August,Monday,5,217,21,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,CC,,RG,21,BLK,700.0,STOLEN,8848,"{'type': 'Point', 'coordinates': (-79.38565257, 43.66756225)}"
-8852,4985,GO-20199025235,THEFT UNDER - BICYCLE,2019-08-05T00:00:00,2019,August,Monday,5,217,16,2019-08-07T00:00:00,2019,August,Wednesday,7,219,16,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,30,,800.0,STOLEN,8849,"{'type': 'Point', 'coordinates': (-79.38245382, 43.66941071)}"
-8853,5011,GO-20199025563,THEFT UNDER - BICYCLE,2019-08-09T00:00:00,2019,August,Friday,9,221,8,2019-08-09T00:00:00,2019,August,Friday,9,221,17,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,UK,,MT,21,BLK,100.0,STOLEN,8850,"{'type': 'Point', 'coordinates': (-79.38154682, 43.65790792)}"
-8854,5028,GO-20199025733,THEFT UNDER,2019-03-25T00:00:00,2019,March,Monday,25,84,11,2019-08-11T00:00:00,2019,August,Sunday,11,223,12,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,1,BLU,2000.0,STOLEN,8851,"{'type': 'Point', 'coordinates': (-79.38159626, 43.66440307)}"
-8855,5029,GO-20199025733,THEFT UNDER,2019-03-25T00:00:00,2019,March,Monday,25,84,11,2019-08-11T00:00:00,2019,August,Sunday,11,223,12,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,5,BLK,500.0,STOLEN,8852,"{'type': 'Point', 'coordinates': (-79.38159626, 43.66440307)}"
-8856,5042,GO-20199025883,THEFT UNDER,2019-08-12T00:00:00,2019,August,Monday,12,224,12,2019-08-12T00:00:00,2019,August,Monday,12,224,14,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,FJ,,RC,1,BLK,500.0,STOLEN,8853,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-8857,5072,GO-20199026253,THEFT UNDER,2019-08-14T00:00:00,2019,August,Wednesday,14,226,17,2019-08-14T00:00:00,2019,August,Wednesday,14,226,19,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SIRRUS BLACK,RG,21,BLK,650.0,STOLEN,8854,"{'type': 'Point', 'coordinates': (-79.37787874, 43.64914837)}"
-8858,5076,GO-20199026293,THEFT UNDER,2019-08-13T00:00:00,2019,August,Tuesday,13,225,9,2019-08-15T00:00:00,2019,August,Thursday,15,227,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MO,,RG,27,GRY,100.0,STOLEN,8855,"{'type': 'Point', 'coordinates': (-79.37424947, 43.653501610000006)}"
-8859,5090,GO-20199026514,THEFT UNDER,2019-08-16T00:00:00,2019,August,Friday,16,228,7,2019-08-16T00:00:00,2019,August,Friday,16,228,17,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,SIRRUS MEN ELIT,RG,18,RED,1300.0,STOLEN,8856,"{'type': 'Point', 'coordinates': (-79.37971563, 43.66282598)}"
-8860,5096,GO-20199026514,THEFT UNDER,2019-08-16T00:00:00,2019,August,Friday,16,228,7,2019-08-16T00:00:00,2019,August,Friday,16,228,17,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RG,8,RED,1300.0,STOLEN,8857,"{'type': 'Point', 'coordinates': (-79.37971563, 43.66282598)}"
-8861,5097,GO-20191570848,THEFT UNDER - BICYCLE,2019-07-16T00:00:00,2019,July,Tuesday,16,197,22,2019-08-18T00:00:00,2019,August,Sunday,18,230,13,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,FELT,VERSA50,TO,21,DBLLBL,500.0,STOLEN,8858,"{'type': 'Point', 'coordinates': (-79.37941202, 43.66889376)}"
-8862,5101,GO-20199026739,THEFT UNDER,2019-08-18T00:00:00,2019,August,Sunday,18,230,15,2019-08-18T00:00:00,2019,August,Sunday,18,230,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,QUICK 4,TO,18,BLU,1000.0,STOLEN,8859,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-8863,5137,GO-20199027295,THEFT UNDER,2019-08-22T00:00:00,2019,August,Thursday,22,234,20,2019-08-22T00:00:00,2019,August,Thursday,22,234,22,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,HOMEMADE CARBON,RE,16,BLK,3000.0,STOLEN,8860,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-8864,5145,GO-20199027385,THEFT UNDER,2019-08-22T00:00:00,2019,August,Thursday,22,234,13,2019-08-23T00:00:00,2019,August,Friday,23,235,11,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,REID CITY 2 HYB,OT,24,GRY,1244.0,STOLEN,8861,"{'type': 'Point', 'coordinates': (-79.38334664, 43.66205466)}"
-8865,5156,GO-20199027626,THEFT UNDER,2019-08-25T00:00:00,2019,August,Sunday,25,237,9,2019-08-25T00:00:00,2019,August,Sunday,25,237,14,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RM,,MT,24,BLU,500.0,STOLEN,8862,"{'type': 'Point', 'coordinates': (-79.38052643, 43.67161072)}"
-8866,5172,GO-20199027772,THEFT UNDER,2019-08-25T00:00:00,2019,August,Sunday,25,237,17,2019-08-26T00:00:00,2019,August,Monday,26,238,16,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,TAG # P25702,OT,3,GRY,0.0,STOLEN,8863,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-8867,5186,GO-20199028101,THEFT UNDER,2019-08-28T00:00:00,2019,August,Wednesday,28,240,13,2019-08-29T00:00:00,2019,August,Thursday,29,241,9,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,1,BLU,650.0,STOLEN,8864,"{'type': 'Point', 'coordinates': (-79.37830573, 43.66310625)}"
-8868,5217,GO-20191666652,THEFT OF EBIKE UNDER $5000,2019-08-31T00:00:00,2019,August,Saturday,31,243,15,2019-09-03T00:00:00,2019,September,Tuesday,3,246,19,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPORTEK,SPARK,EL,7,BLK,1500.0,STOLEN,8865,"{'type': 'Point', 'coordinates': (-79.38188491, 43.65866815)}"
-8869,5268,GO-20191714006,PROPERTY - FOUND,2019-09-07T00:00:00,2019,September,Saturday,7,250,11,2019-09-07T00:00:00,2019,September,Saturday,7,250,18,D51,Toronto,75,Church-Yonge Corridor (75),Pharmacy,Other,SCHWINN,GTX2 700C,MT,0,OTH,,UNKNOWN,8866,"{'type': 'Point', 'coordinates': (-79.38334664, 43.66205466)}"
-8870,5271,GO-20199029096,THEFT UNDER,2019-09-07T00:00:00,2019,September,Saturday,7,250,13,2019-09-07T00:00:00,2019,September,Saturday,7,250,14,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,UK,RENT BIKE GREEN,RG,3,BLK,500.0,STOLEN,8867,"{'type': 'Point', 'coordinates': (-79.37971563, 43.66282598)}"
-8871,5277,GO-20199029239,THEFT UNDER,2019-09-03T00:00:00,2019,September,Tuesday,3,246,15,2019-09-09T00:00:00,2019,September,Monday,9,252,1,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CCM ALPHA,MT,21,GRN,375.0,STOLEN,8868,"{'type': 'Point', 'coordinates': (-79.38132262, 43.6667026)}"
-8872,5285,GO-20199029341,THEFT UNDER,2019-09-09T00:00:00,2019,September,Monday,9,252,15,2019-09-09T00:00:00,2019,September,Monday,9,252,16,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,AWOL,TO,9,BRN,1200.0,STOLEN,8869,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-8873,5307,GO-20199029774,THEFT UNDER,2019-09-12T00:00:00,2019,September,Thursday,12,255,18,2019-09-12T00:00:00,2019,September,Thursday,12,255,19,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GI,ALIGHT,RG,21,,750.0,STOLEN,8870,"{'type': 'Point', 'coordinates': (-79.38091931, 43.66572241)}"
-8874,5326,GO-20199030075,THEFT UNDER,2019-09-15T00:00:00,2019,September,Sunday,15,258,7,2019-09-15T00:00:00,2019,September,Sunday,15,258,9,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,7,RED,600.0,STOLEN,8871,"{'type': 'Point', 'coordinates': (-79.37883347, 43.66067091000001)}"
-8875,5342,GO-20199030131,THEFT UNDER,2019-09-15T00:00:00,2019,September,Sunday,15,258,13,2019-09-15T00:00:00,2019,September,Sunday,15,258,18,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,THRIVE,OT,11,LBL,1150.0,STOLEN,8872,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-8876,5355,GO-20199030407,THEFT UNDER,2019-08-25T00:00:00,2019,August,Sunday,25,237,16,2019-09-17T00:00:00,2019,September,Tuesday,17,260,16,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,OT,STUMP JUMPER,MT,27,GRY,3000.0,STOLEN,8873,"{'type': 'Point', 'coordinates': (-79.37783798, 43.66217202)}"
-8877,5362,GO-20199030540,THEFT UNDER,2019-09-18T00:00:00,2019,September,Wednesday,18,261,9,2019-09-18T00:00:00,2019,September,Wednesday,18,261,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,MT,21,GRY,800.0,STOLEN,8874,"{'type': 'Point', 'coordinates': (-79.37827718, 43.65626242)}"
-8878,5373,GO-20199030960,THEFT UNDER - BICYCLE,2019-09-20T00:00:00,2019,September,Friday,20,263,21,2019-09-21T00:00:00,2019,September,Saturday,21,264,13,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,CYPRESS,RG,21,BLU,500.0,STOLEN,8875,"{'type': 'Point', 'coordinates': (-79.38091931, 43.66572241)}"
-8879,5383,GO-20199031177,THEFT UNDER,2019-09-21T00:00:00,2019,September,Saturday,21,264,20,2019-09-23T00:00:00,2019,September,Monday,23,266,12,D52,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,SEEK,MT,21,GRY,1300.0,STOLEN,8876,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-8880,5402,GO-20199031499,THEFT UNDER,2019-09-24T00:00:00,2019,September,Tuesday,24,267,20,2019-09-25T00:00:00,2019,September,Wednesday,25,268,21,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,SU,#199-2763-0,MT,21,BLK,226.0,STOLEN,8877,"{'type': 'Point', 'coordinates': (-79.37953592, 43.65629127)}"
-8881,5411,GO-20191845915,THEFT UNDER - BICYCLE,2019-09-25T00:00:00,2019,September,Wednesday,25,268,3,2019-09-25T00:00:00,2019,September,Wednesday,25,268,9,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,TROLL LOW RISE,MT,7,BLK,289.0,UNKNOWN,8878,"{'type': 'Point', 'coordinates': (-79.37953592, 43.65629127)}"
-8882,5418,GO-20191851292,THEFT UNDER - BICYCLE,2019-09-25T00:00:00,2019,September,Wednesday,25,268,14,2019-09-25T00:00:00,2019,September,Wednesday,25,268,21,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DEVINCI,SILVERSTONE S4,OT,0,BLK,1700.0,STOLEN,8879,"{'type': 'Point', 'coordinates': (-79.37781507, 43.65821091)}"
-8883,5432,GO-20191863812,THEFT OF EBIKE UNDER $5000,2019-09-27T00:00:00,2019,September,Friday,27,270,13,2019-09-27T00:00:00,2019,September,Friday,27,270,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,GT5,EL,1,BLKWHI,800.0,STOLEN,8880,"{'type': 'Point', 'coordinates': (-79.37633027, 43.65851354)}"
-8884,5442,GO-20199032108,THEFT UNDER - SHOPLIFTING,2019-09-21T00:00:00,2019,September,Saturday,21,264,9,2019-09-30T00:00:00,2019,September,Monday,30,273,15,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,CC,700C XSPORT,RG,20,WHI,200.0,STOLEN,8881,"{'type': 'Point', 'coordinates': (-79.38334664, 43.66205466)}"
-8885,5443,GO-20199032142,THEFT UNDER - BICYCLE,2019-09-30T00:00:00,2019,September,Monday,30,273,18,2019-09-30T00:00:00,2019,September,Monday,30,273,18,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,RG,8,,600.0,STOLEN,8882,"{'type': 'Point', 'coordinates': (-79.37849549, 43.65985781)}"
-8886,5449,GO-20199032202,THEFT UNDER,2019-09-30T00:00:00,2019,September,Monday,30,273,19,2019-10-01T00:00:00,2019,October,Tuesday,1,274,12,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,VERZA SPEED 20,RG,20,GRY,1400.0,STOLEN,8883,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-8887,5457,GO-20199032382,THEFT UNDER,2019-09-30T00:00:00,2019,September,Monday,30,273,21,2019-10-02T00:00:00,2019,October,Wednesday,2,275,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MA,FAIRFAX SC2,RG,24,DBL,600.0,STOLEN,8884,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-8888,5477,GO-20191928819,FTC WITH CONDITIONS,2019-10-06T00:00:00,2019,October,Sunday,6,279,18,2019-10-06T00:00:00,2019,October,Sunday,6,279,18,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,72 VOLT F1,EL,3,YELBLK,3000.0,RECOVERED,8885,"{'type': 'Point', 'coordinates': (-79.37652171000002, 43.65664882)}"
-8889,5484,GO-20199032937,THEFT UNDER,2019-10-05T00:00:00,2019,October,Saturday,5,278,14,2019-10-07T00:00:00,2019,October,Monday,7,280,14,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GT,,OT,6,,700.0,STOLEN,8886,"{'type': 'Point', 'coordinates': (-79.37437294, 43.64992152)}"
-8890,5488,GO-20191929218,THEFT UNDER - BICYCLE,2019-10-06T00:00:00,2019,October,Sunday,6,279,1,2019-10-06T00:00:00,2019,October,Sunday,6,279,19,D51,Toronto,75,Church-Yonge Corridor (75),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,,MT,21,SIL,450.0,STOLEN,8887,"{'type': 'Point', 'coordinates': (-79.37971563, 43.66282598)}"
-8891,5490,GO-20199032851,THEFT UNDER,2019-10-04T00:00:00,2019,October,Friday,4,277,18,2019-10-07T00:00:00,2019,October,Monday,7,280,9,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RG,6,GRY,0.0,STOLEN,8888,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-8892,5495,GO-20199033291,THEFT UNDER,2019-10-09T00:00:00,2019,October,Wednesday,9,282,9,2019-10-09T00:00:00,2019,October,Wednesday,9,282,19,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,TR,FX 1 DISC HYBRI,RG,18,LGR,800.0,STOLEN,8889,"{'type': 'Point', 'coordinates': (-79.37953592, 43.65629127)}"
-8893,5514,GO-20199033642,THEFT UNDER,2019-10-07T00:00:00,2019,October,Monday,7,280,6,2019-10-12T00:00:00,2019,October,Saturday,12,285,8,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,S6L,FO,6,DGR,2316.0,STOLEN,8890,"{'type': 'Point', 'coordinates': (-79.38159626, 43.66440307)}"
-8894,5520,GO-20199033784,THEFT UNDER,2019-10-12T00:00:00,2019,October,Saturday,12,285,19,2019-10-13T00:00:00,2019,October,Sunday,13,286,19,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SC,,RG,18,,100.0,STOLEN,8891,"{'type': 'Point', 'coordinates': (-79.37516377, 43.6518061)}"
-8895,5525,GO-20191977911,THEFT UNDER - BICYCLE,2019-10-13T00:00:00,2019,October,Sunday,13,286,11,2019-10-13T00:00:00,2019,October,Sunday,13,286,14,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,ZZZ,,RC,1,,,STOLEN,8892,"{'type': 'Point', 'coordinates': (-79.37516377, 43.6518061)}"
-8896,5531,GO-20191998219,THEFT OF EBIKE UNDER $5000,2019-10-11T00:00:00,2019,October,Friday,11,284,5,2019-10-16T00:00:00,2019,October,Wednesday,16,289,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,NIGHT SPORT,EL,3,GRN,3000.0,STOLEN,8893,"{'type': 'Point', 'coordinates': (-79.37691204, 43.65291764)}"
-8897,5532,GO-20199034091,THEFT UNDER,2019-10-15T00:00:00,2019,October,Tuesday,15,288,17,2019-10-16T00:00:00,2019,October,Wednesday,16,289,14,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,POMONA MEN,MT,20,BLU,200.0,STOLEN,8894,"{'type': 'Point', 'coordinates': (-79.38638506, 43.669368250000005)}"
-8898,5535,GO-20199034133,THEFT UNDER - BICYCLE,2019-10-16T00:00:00,2019,October,Wednesday,16,289,14,2019-10-16T00:00:00,2019,October,Wednesday,16,289,18,D51,Toronto,75,Church-Yonge Corridor (75),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,KH,,RG,6,TRQ,1000.0,STOLEN,8895,"{'type': 'Point', 'coordinates': (-79.38132262, 43.6667026)}"
-8899,5562,GO-20199034701,THEFT UNDER - BICYCLE,2019-10-19T00:00:00,2019,October,Saturday,19,292,10,2019-10-21T00:00:00,2019,October,Monday,21,294,17,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,PREMIUM FIXIE,OT,1,BLK,700.0,STOLEN,8896,"{'type': 'Point', 'coordinates': (-79.37562599, 43.6568205)}"
-8900,5564,GO-20199034738,THEFT UNDER - BICYCLE,2019-10-09T00:00:00,2019,October,Wednesday,9,282,18,2019-10-21T00:00:00,2019,October,Monday,21,294,22,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,TR,TREK DUAL SPORT,RG,24,BLK,800.0,STOLEN,8897,"{'type': 'Point', 'coordinates': (-79.37562599, 43.6568205)}"
-8901,5593,GO-20199035165,THEFT UNDER - BICYCLE,2019-10-23T00:00:00,2019,October,Wednesday,23,296,20,2019-10-25T00:00:00,2019,October,Friday,25,298,11,D51,Toronto,75,Church-Yonge Corridor (75),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,UK,,TO,30,BLK,500.0,STOLEN,8898,"{'type': 'Point', 'coordinates': (-79.3745937, 43.65047389)}"
-8902,5597,GO-20199035286,THEFT UNDER - BICYCLE,2019-10-21T00:00:00,2019,October,Monday,21,294,19,2019-10-25T00:00:00,2019,October,Friday,25,298,19,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GI,,FO,6,SIL,0.0,STOLEN,8899,"{'type': 'Point', 'coordinates': (-79.38334664, 43.66205466)}"
-8903,5616,GO-20199035733,THEFT UNDER - BICYCLE,2019-10-01T00:00:00,2019,October,Tuesday,1,274,0,2019-10-29T00:00:00,2019,October,Tuesday,29,302,15,D51,Toronto,75,Church-Yonge Corridor (75),Schools During Un-Supervised Activity,Educational,UK,ROAD BIKE,OT,6,GRY,200.0,STOLEN,8900,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-8904,8496,GO-20149005255,THEFT UNDER,2014-07-23T00:00:00,2014,July,Wednesday,23,204,18,2014-07-23T00:00:00,2014,July,Wednesday,23,204,21,D52,Toronto,76,Bay Street Corridor (76),Bar / Restaurant,Commercial,NO,VALENCE 2,RC,21,BLK,850.0,STOLEN,10349,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-8905,5619,GO-20192095948,THEFT UNDER - BICYCLE,2019-10-29T00:00:00,2019,October,Tuesday,29,302,21,2019-10-30T00:00:00,2019,October,Wednesday,30,303,12,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TTC TRAUSEO,SPORT,MT,10,BLKGRN,250.0,STOLEN,8901,"{'type': 'Point', 'coordinates': (-79.38245382, 43.66941071)}"
-8906,5621,GO-20192088618,THEFT FROM MOTOR VEHICLE OVER,2019-10-28T00:00:00,2019,October,Monday,28,301,20,2019-10-29T00:00:00,2019,October,Tuesday,29,302,12,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MEC,1971,OT,21,GRYRED,2100.0,STOLEN,8902,"{'type': 'Point', 'coordinates': (-79.37424947, 43.653501610000006)}"
-8907,5622,GO-20199035865,THEFT UNDER - BICYCLE,2019-10-30T00:00:00,2019,October,Wednesday,30,303,12,2019-10-30T00:00:00,2019,October,Wednesday,30,303,15,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,NO,CHARGER,MT,27,BLK,1250.0,STOLEN,8903,"{'type': 'Point', 'coordinates': (-79.37643241, 43.65085158000001)}"
-8908,5634,GO-20199036214,THEFT UNDER,2019-11-02T00:00:00,2019,November,Saturday,2,306,11,2019-11-02T00:00:00,2019,November,Saturday,2,306,14,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RA,,RC,21,YEL,900.0,STOLEN,8904,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-8909,5642,GO-20199036215,THEFT UNDER - BICYCLE,2019-10-25T00:00:00,2019,October,Friday,25,298,0,2019-11-02T00:00:00,2019,November,Saturday,2,306,16,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,RA,,RC,21,,900.0,STOLEN,8905,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-8910,5650,GO-20199036497,THEFT UNDER,2019-11-01T00:00:00,2019,November,Friday,1,305,9,2019-11-05T00:00:00,2019,November,Tuesday,5,309,10,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,RIDLEY CROSSBOW,RG,10,WHI,300.0,STOLEN,8906,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-8911,5685,GO-20199037340,THEFT UNDER - BICYCLE,2019-11-12T00:00:00,2019,November,Tuesday,12,316,12,2019-11-13T00:00:00,2019,November,Wednesday,13,317,10,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,UK,31466084,MT,18,BLK,138.0,STOLEN,8907,"{'type': 'Point', 'coordinates': (-79.38154682, 43.65790792)}"
-8912,17210,GO-2016531998,THEFT UNDER - BICYCLE,2016-03-29T00:00:00,2016,March,Tuesday,29,89,1,2016-03-29T00:00:00,2016,March,Tuesday,29,89,12,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,EL,40,GRN,500.0,STOLEN,8915,"{'type': 'Point', 'coordinates': (-79.37368966, 43.67132826)}"
-8913,5714,GO-20199038151,THEFT UNDER,2019-09-28T00:00:00,2019,September,Saturday,28,271,10,2019-11-20T00:00:00,2019,November,Wednesday,20,324,7,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ALL CITY X,RG,10,BLK,1500.0,STOLEN,8908,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-8914,5744,GO-20192340695,THEFT OF EBIKE UNDER $5000,2019-12-02T00:00:00,2019,December,Monday,2,336,19,2019-12-04T00:00:00,2019,December,Wednesday,4,338,18,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMO,PRESTIGE,EL,0,BLK,,STOLEN,8909,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-8915,5752,GO-20192368313,THEFT UNDER - BICYCLE,2019-12-08T00:00:00,2019,December,Sunday,8,342,18,2019-12-08T00:00:00,2019,December,Sunday,8,342,20,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OTHER,,OT,21,BLK,740.0,STOLEN,8910,"{'type': 'Point', 'coordinates': (-79.37512219, 43.65330838)}"
-8916,5816,GO-202048954,THEFT OVER - BICYCLE,2019-07-31T00:00:00,2019,July,Wednesday,31,212,7,2020-01-08T00:00:00,2020,January,Wednesday,8,8,9,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,AQUILA,,OT,0,RED,6000.0,STOLEN,8911,"{'type': 'Point', 'coordinates': (-79.37872961, 43.654321780000004)}"
-8917,17180,GO-20151751233,THEFT UNDER,2015-10-09T00:00:00,2015,October,Friday,9,282,7,2015-10-10T00:00:00,2015,October,Saturday,10,283,20,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,OT,21,BLK,100.0,STOLEN,8912,"{'type': 'Point', 'coordinates': (-79.37575001, 43.6696557)}"
-8918,17193,GO-20151983564,THEFT UNDER,2015-11-18T00:00:00,2015,November,Wednesday,18,322,23,2015-11-19T00:00:00,2015,November,Thursday,19,323,7,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,URBAN,EL,1,BLK,900.0,STOLEN,8913,"{'type': 'Point', 'coordinates': (-79.37581268, 43.66648596000001)}"
-8919,17194,GO-20159010355,THEFT UNDER,2015-11-28T00:00:00,2015,November,Saturday,28,332,12,2015-11-30T00:00:00,2015,November,Monday,30,334,18,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GF,MARLIN,MT,8,RED,0.0,STOLEN,8914,"{'type': 'Point', 'coordinates': (-79.37513727, 43.66825437)}"
-8920,20457,GO-20159009568,THEFT UNDER,2015-11-09T00:00:00,2015,November,Monday,9,313,9,2015-11-09T00:00:00,2015,November,Monday,9,313,21,D51,Toronto,74,North St.James Town (74),Ttc Subway Station,Transit,EM,,EL,30,BLK,1600.0,STOLEN,8948,"{'type': 'Point', 'coordinates': (-79.3764768, 43.67145630000001)}"
-8921,17215,GO-20169004132,THEFT UNDER - BICYCLE,2016-05-03T00:00:00,2016,May,Tuesday,3,124,12,2016-05-04T00:00:00,2016,May,Wednesday,4,125,12,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,OT,0,,,STOLEN,8916,"{'type': 'Point', 'coordinates': (-79.37854549, 43.67025604)}"
-8922,17224,GO-20169005083,THEFT UNDER,2016-05-28T00:00:00,2016,May,Saturday,28,149,21,2016-05-29T00:00:00,2016,May,Sunday,29,150,15,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,EM,URBAN,EL,32,ONG,1100.0,STOLEN,8917,"{'type': 'Point', 'coordinates': (-79.37620707000002, 43.67079259)}"
-8923,17228,GO-20169005561,THEFT FROM MOTOR VEHICLE UNDER,2016-06-07T00:00:00,2016,June,Tuesday,7,159,15,2016-06-10T00:00:00,2016,June,Friday,10,162,9,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,OT,SPORT ELITE,TO,27,WHI,1200.0,STOLEN,8918,"{'type': 'Point', 'coordinates': (-79.37646069, 43.66642862)}"
-8924,17243,GO-20169006737,THEFT UNDER,2016-07-02T00:00:00,2016,July,Saturday,2,184,8,2016-07-05T00:00:00,2016,July,Tuesday,5,187,8,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,DEVINCI,MT,9,BLK,700.0,STOLEN,8919,"{'type': 'Point', 'coordinates': (-79.37942813, 43.6718256)}"
-8925,17249,GO-20169007157,THEFT UNDER - BICYCLE,2016-07-13T00:00:00,2016,July,Wednesday,13,195,12,2016-07-13T00:00:00,2016,July,Wednesday,13,195,16,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,TO,21,GRY,750.0,STOLEN,8920,"{'type': 'Point', 'coordinates': (-79.37513727, 43.66825437)}"
-8926,17276,GO-20169011392,B&E,2016-08-30T00:00:00,2016,August,Tuesday,30,243,9,2016-10-01T00:00:00,2016,October,Saturday,1,275,10,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,,ROYAL,RG,10,,300.0,STOLEN,8921,"{'type': 'Point', 'coordinates': (-79.37575001, 43.6696557)}"
-8927,17283,GO-20169012601,THEFT UNDER - BICYCLE,2016-10-26T00:00:00,2016,October,Wednesday,26,300,5,2016-10-26T00:00:00,2016,October,Wednesday,26,300,9,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,1.2 WSD,TO,12,BLK,800.0,STOLEN,8922,"{'type': 'Point', 'coordinates': (-79.37513727, 43.66825437)}"
-8928,17286,GO-20161922324,B&E,2016-10-29T00:00:00,2016,October,Saturday,29,303,11,2016-10-29T00:00:00,2016,October,Saturday,29,303,11,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,EMMO,NONE,EL,5,BLK,500.0,STOLEN,8923,"{'type': 'Point', 'coordinates': (-79.37640913, 43.67127239)}"
-8929,17288,GO-20169013178,THEFT UNDER - BICYCLE,2016-11-09T00:00:00,2016,November,Wednesday,9,314,16,2016-11-09T00:00:00,2016,November,Wednesday,9,314,22,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,UK,"ALPINE RACER""""",RG,21,ONG,600.0,STOLEN,8924,"{'type': 'Point', 'coordinates': (-79.37373773, 43.66729501)}"
-8930,17294,GO-20169014271,THEFT UNDER,2016-11-29T00:00:00,2016,November,Tuesday,29,334,16,2016-12-05T00:00:00,2016,December,Monday,5,340,20,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,11,BLK,5500.0,STOLEN,8925,"{'type': 'Point', 'coordinates': (-79.37513727, 43.66825437)}"
-8931,17427,GO-20149002918,THEFT UNDER,2014-04-17T00:00:00,2014,April,Thursday,17,107,20,2014-04-18T00:00:00,2014,April,Friday,18,108,18,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,SINGLE SPEED,RG,1,BLK,600.0,STOLEN,8926,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-8932,17448,GO-20149004881,THEFT UNDER,2014-07-08T00:00:00,2014,July,Tuesday,8,189,20,2014-07-10T00:00:00,2014,July,Thursday,10,191,15,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,26 INCH SILVER,MT,6,SIL,220.0,STOLEN,8927,"{'type': 'Point', 'coordinates': (-79.37513727, 43.66825437)}"
-8933,17464,GO-20142682183,ROBBERY - OTHER,2014-08-04T00:00:00,2014,August,Monday,4,216,15,2014-08-11T00:00:00,2014,August,Monday,11,223,17,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RALEIGH,,MT,1,LBL,200.0,STOLEN,8928,"{'type': 'Point', 'coordinates': (-79.37373773, 43.66729501)}"
-8934,17466,GO-20149005754,THEFT UNDER,2014-08-06T00:00:00,2014,August,Wednesday,6,218,23,2014-08-09T00:00:00,2014,August,Saturday,9,221,1,D51,Toronto,74,North St.James Town (74),"Open Areas (Lakes, Parks, Rivers)",Outside,GF,,MT,10,ONG,0.0,STOLEN,8929,"{'type': 'Point', 'coordinates': (-79.37513727, 43.66825437)}"
-8935,17494,GO-20143287574,THEFT UNDER,2014-11-11T00:00:00,2014,November,Tuesday,11,315,17,2014-11-12T00:00:00,2014,November,Wednesday,12,316,12,D51,Toronto,74,North St.James Town (74),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,URBANITE,TO,1,BLK,800.0,STOLEN,8930,"{'type': 'Point', 'coordinates': (-79.37645102, 43.66797312)}"
-8936,17499,GO-20143471059,B&E,2014-12-09T00:00:00,2014,December,Tuesday,9,343,8,2014-12-12T00:00:00,2014,December,Friday,12,346,11,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN,,TO,12,RED,1000.0,STOLEN,8931,"{'type': 'Point', 'coordinates': (-79.37620707000002, 43.67079259)}"
-8937,18802,GO-20209024946,THEFT UNDER - BICYCLE,2020-09-27T00:00:00,2020,September,Sunday,27,271,19,2020-09-29T00:00:00,2020,September,Tuesday,29,273,16,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,OT,EVO CITY SEVEN,OT,7,BLK,630.0,STOLEN,8932,"{'type': 'Point', 'coordinates': (-79.37942813, 43.6718256)}"
-8938,18808,GO-20209025861,THEFT UNDER - BICYCLE,2020-10-08T00:00:00,2020,October,Thursday,8,282,8,2020-10-08T00:00:00,2020,October,Thursday,8,282,21,D51,Toronto,74,North St.James Town (74),"Religious Facilities (Synagogue, Church, Convent, Mosque)",Other,TR,,OT,3,RED,400.0,STOLEN,8933,"{'type': 'Point', 'coordinates': (-79.37368966, 43.67132826)}"
-8939,19602,GO-20209027824,THEFT UNDER,2020-10-27T00:00:00,2020,October,Tuesday,27,301,12,2020-10-27T00:00:00,2020,October,Tuesday,27,301,12,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,UK,,EL,27,RED,1800.0,STOLEN,8934,"{'type': 'Point', 'coordinates': (-79.37279145, 43.66924446)}"
-8940,19977,GO-20189031590,THEFT UNDER - BICYCLE,2018-09-22T00:00:00,2018,September,Saturday,22,265,19,2018-09-23T00:00:00,2018,September,Sunday,23,266,16,D51,Toronto,74,North St.James Town (74),Bar / Restaurant,Commercial,OT,SIRRUS,RG,28,BLK,700.0,RECOVERED,8935,"{'type': 'Point', 'coordinates': (-79.37493677, 43.67129082)}"
-8941,20045,GO-20191184943,THEFT OF EBIKE UNDER $5000,2019-06-26T00:00:00,2019,June,Wednesday,26,177,8,2019-06-26T00:00:00,2019,June,Wednesday,26,177,9,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,GREEN,EL,1,BLK,1600.0,STOLEN,8936,"{'type': 'Point', 'coordinates': (-79.37883544, 43.67093622)}"
-8942,20202,GO-20171234187,THEFT OVER - BICYCLE,2017-07-05T00:00:00,2017,July,Wednesday,5,186,21,2017-07-15T00:00:00,2017,July,Saturday,15,196,14,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SANTA CRUZ,STIGMATA,OT,11,BLKBLU,6000.0,STOLEN,8937,"{'type': 'Point', 'coordinates': (-79.37646069, 43.66642862)}"
-8943,20209,GO-20179010593,THEFT UNDER,2017-07-19T00:00:00,2017,July,Wednesday,19,200,11,2017-07-19T00:00:00,2017,July,Wednesday,19,200,13,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,SOULVILLE,RG,3,WHI,750.0,STOLEN,8938,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-8944,20253,GO-20179016823,THEFT UNDER,2017-10-03T00:00:00,2017,October,Tuesday,3,276,10,2017-10-10T00:00:00,2017,October,Tuesday,10,283,1,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,ANNEX MEN'S 700,RG,7,BLK,300.0,STOLEN,8939,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-8945,20271,GO-20172042421,THEFT UNDER - BICYCLE,2017-11-11T00:00:00,2017,November,Saturday,11,315,13,2017-11-11T00:00:00,2017,November,Saturday,11,315,16,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,BIANCHI,CINELLI,RC,1,BLK,4000.0,STOLEN,8940,"{'type': 'Point', 'coordinates': (-79.37279145, 43.66924446)}"
-8946,20275,GO-20173007465,THEFT OF EBIKE UNDER $5000,2017-11-15T00:00:00,2017,November,Wednesday,15,319,21,2017-11-16T00:00:00,2017,November,Thursday,16,320,8,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DIAMONDBACK,,EL,20,,2500.0,STOLEN,8941,"{'type': 'Point', 'coordinates': (-79.37883544, 43.67093622)}"
-8947,20302,GO-20189015986,THEFT UNDER - BICYCLE,2018-05-23T00:00:00,2018,May,Wednesday,23,143,18,2018-05-23T00:00:00,2018,May,Wednesday,23,143,18,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,KO,LANAI,MT,24,BLU,600.0,STOLEN,8942,"{'type': 'Point', 'coordinates': (-79.37513727, 43.66825437)}"
-8948,20315,GO-20181069929,THEFT UNDER - BICYCLE,2018-06-07T00:00:00,2018,June,Thursday,7,158,9,2018-06-13T00:00:00,2018,June,Wednesday,13,164,8,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,EMMO,EMMO,EL,0,,,STOLEN,8943,"{'type': 'Point', 'coordinates': (-79.37620707000002, 43.67079259)}"
-8949,20427,GO-20159005793,THEFT UNDER,2015-08-13T00:00:00,2015,August,Thursday,13,225,8,2015-08-14T00:00:00,2015,August,Friday,14,226,10,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,SPECIALIZED,MT,10,GRY,1000.0,STOLEN,8944,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-8950,20442,GO-20159007863,THEFT UNDER,2015-09-28T00:00:00,2015,September,Monday,28,271,1,2015-09-28T00:00:00,2015,September,Monday,28,271,13,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,,TO,10,BLU,1000.0,STOLEN,8945,"{'type': 'Point', 'coordinates': (-79.37883544, 43.67093622)}"
-8951,20448,GO-20159009045,THEFT UNDER,2015-10-26T00:00:00,2015,October,Monday,26,299,10,2015-10-26T00:00:00,2015,October,Monday,26,299,18,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,MATT BLACK 5,RG,15,BLK,500.0,STOLEN,8946,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-8952,20451,GO-20151855412,B&E,2015-10-28T00:00:00,2015,October,Wednesday,28,301,20,2015-10-28T00:00:00,2015,October,Wednesday,28,301,20,D51,Toronto,74,North St.James Town (74),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,ORBEA SLT,OT,12,WHI,2500.0,STOLEN,8947,"{'type': 'Point', 'coordinates': (-79.37645102, 43.66797312)}"
-8953,20487,GO-20169004203,B&E W'INTENT,2016-05-01T00:00:00,2016,May,Sunday,1,122,11,2016-05-05T00:00:00,2016,May,Thursday,5,126,15,D51,Toronto,74,North St.James Town (74),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,12 SEEK 1 L ANO,RG,10,BLK,1200.0,STOLEN,8950,"{'type': 'Point', 'coordinates': (-79.37883544, 43.67093622)}"
-8954,20490,GO-20169004405,THEFT UNDER - BICYCLE,2016-05-11T00:00:00,2016,May,Wednesday,11,132,12,2016-05-11T00:00:00,2016,May,Wednesday,11,132,15,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,MOUNTAIN BIKE,MT,18,BLK,200.0,STOLEN,8951,"{'type': 'Point', 'coordinates': (-79.37883544, 43.67093622)}"
-8955,20515,GO-20161356057,THEFT OF EBIKE UNDER $5000,2016-07-26T00:00:00,2016,July,Tuesday,26,208,19,2016-08-02T00:00:00,2016,August,Tuesday,2,215,11,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,EMMO,,EL,0,,,STOLEN,8952,"{'type': 'Point', 'coordinates': (-79.37513727, 43.66825437)}"
-8956,20555,GO-20169013623,THEFT UNDER - BICYCLE,2016-11-16T00:00:00,2016,November,Wednesday,16,321,12,2016-11-20T00:00:00,2016,November,Sunday,20,325,16,D51,Toronto,74,North St.James Town (74),"Private Property Structure (Pool, Shed, Detached Garage)",Other,EM,,EL,35,BLK,3000.0,STOLEN,8953,"{'type': 'Point', 'coordinates': (-79.37087406, 43.66790841)}"
-8957,20571,GO-2017724940,THEFT UNDER - BICYCLE,2017-04-24T00:00:00,2017,April,Monday,24,114,8,2017-04-25T00:00:00,2017,April,Tuesday,25,115,11,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,INDIE 320,RG,24,BLK,820.0,STOLEN,8954,"{'type': 'Point', 'coordinates': (-79.38052643, 43.67161072)}"
-8958,20604,GO-20191427686,THEFT UNDER,2019-07-26T00:00:00,2019,July,Friday,26,207,19,2019-07-29T00:00:00,2019,July,Monday,29,210,15,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,700 C MUNICH,OT,21,BLU,500.0,STOLEN,8955,"{'type': 'Point', 'coordinates': (-79.37464369, 43.66709416)}"
-8959,20617,GO-20199026294,THEFT UNDER,2019-08-15T00:00:00,2019,August,Thursday,15,227,17,2019-08-15T00:00:00,2019,August,Thursday,15,227,21,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MA,,RC,21,SIL,1100.0,STOLEN,8956,"{'type': 'Point', 'coordinates': (-79.37830693, 43.66628508)}"
-8960,20630,GO-20199027526,THEFT UNDER,2019-08-23T00:00:00,2019,August,Friday,23,235,7,2019-08-24T00:00:00,2019,August,Saturday,24,236,15,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,FJ,NEVADA 1.9,MT,21,BLK,450.0,STOLEN,8957,"{'type': 'Point', 'coordinates': (-79.3764768, 43.67145630000001)}"
-8961,20654,GO-20199031697,THEFT UNDER - BICYCLE,2019-09-25T00:00:00,2019,September,Wednesday,25,268,12,2019-09-27T00:00:00,2019,September,Friday,27,270,13,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,GTX-2 700C,MT,18,BLK,549.0,STOLEN,8958,"{'type': 'Point', 'coordinates': (-79.37620707000002, 43.67079259)}"
-8962,20673,GO-20199036260,THEFT UNDER - BICYCLE,2019-11-02T00:00:00,2019,November,Saturday,2,306,0,2019-11-03T00:00:00,2019,November,Sunday,3,307,1,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GT,,RG,24,GRY,580.0,STOLEN,8959,"{'type': 'Point', 'coordinates': (-79.3721682, 43.66763473)}"
-8963,20687,GO-20209000134,THEFT UNDER - BICYCLE,2019-11-30T00:00:00,2019,November,Saturday,30,334,9,2020-01-02T00:00:00,2020,January,Thursday,2,2,22,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,SU,,RG,12,PLE,150.0,STOLEN,8960,"{'type': 'Point', 'coordinates': (-79.37535291, 43.66874604)}"
-8964,20721,GO-20209016349,THEFT UNDER - BICYCLE,2020-06-27T00:00:00,2020,June,Saturday,27,179,20,2020-06-27T00:00:00,2020,June,Saturday,27,179,23,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,8,WHI,300.0,STOLEN,8961,"{'type': 'Point', 'coordinates': (-79.37646069, 43.66642862)}"
-8965,20766,GO-20201604857,THEFT OF EBIKE UNDER $5000,2020-08-25T00:00:00,2020,August,Tuesday,25,238,8,2020-08-25T00:00:00,2020,August,Tuesday,25,238,21,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,U/K,,EL,0,BLK,2000.0,STOLEN,8962,"{'type': 'Point', 'coordinates': (-79.37681431, 43.67235839)}"
-8966,20859,GO-20149003168,THEFT UNDER,2013-10-01T00:00:00,2013,October,Tuesday,1,274,16,2014-05-05T00:00:00,2014,May,Monday,5,125,16,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,GI,11 SEEK 1 M MAT,RG,9,BLK,1106.0,STOLEN,8963,"{'type': 'Point', 'coordinates': (-79.37513727, 43.66825437)}"
-8967,20876,GO-20142403381,THEFT UNDER,2014-06-26T00:00:00,2014,June,Thursday,26,177,20,2014-06-30T00:00:00,2014,June,Monday,30,181,19,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,MIATA,OT,18,MRN,100.0,STOLEN,8964,"{'type': 'Point', 'coordinates': (-79.37279145, 43.66924446)}"
-8968,20877,GO-20142415327,THEFT UNDER,2014-07-02T00:00:00,2014,July,Wednesday,2,183,15,2014-07-02T00:00:00,2014,July,Wednesday,2,183,15,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,,MT,18,GRN,500.0,STOLEN,8965,"{'type': 'Point', 'coordinates': (-79.37883544, 43.67093622)}"
-8969,20907,GO-20142694390,THEFT FROM MOTOR VEHICLE UNDER,2014-07-25T00:00:00,2014,July,Friday,25,206,23,2014-08-13T00:00:00,2014,August,Wednesday,13,225,13,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,OCR1,OT,24,BLU,1000.0,STOLEN,8966,"{'type': 'Point', 'coordinates': (-79.3764768, 43.67145630000001)}"
-8970,20926,GO-20142952972,THEFT UNDER,2014-09-20T00:00:00,2014,September,Saturday,20,263,23,2014-09-21T00:00:00,2014,September,Sunday,21,264,10,D51,Toronto,74,North St.James Town (74),"Single Home, House (Attach Garage, Cottage, Mobile)",House,EMMO,H5,EL,0,REDWHI,1100.0,STOLEN,8967,"{'type': 'Point', 'coordinates': (-79.37854549, 43.67025604)}"
-8971,20928,GO-20149007144,THEFT UNDER,2014-09-16T00:00:00,2014,September,Tuesday,16,259,18,2014-09-23T00:00:00,2014,September,Tuesday,23,266,9,D51,Toronto,74,North St.James Town (74),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,VENETTO 4000,OT,21,RED,400.0,STOLEN,8968,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-8972,20956,GO-201542494,B&E,2014-12-15T00:00:00,2014,December,Monday,15,349,0,2015-01-08T00:00:00,2015,January,Thursday,8,8,13,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OPUS,MAADH 3,MT,21,BRN,2500.0,STOLEN,8969,"{'type': 'Point', 'coordinates': (-79.37645102, 43.66797312)}"
-8973,20957,GO-201542494,B&E,2014-12-15T00:00:00,2014,December,Monday,15,349,0,2015-01-08T00:00:00,2015,January,Thursday,8,8,13,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TREK,MAMBA,MT,10,,800.0,STOLEN,8970,"{'type': 'Point', 'coordinates': (-79.37645102, 43.66797312)}"
-8974,22663,GO-20199033743,THEFT UNDER,2019-10-11T00:00:00,2019,October,Friday,11,284,14,2019-10-13T00:00:00,2019,October,Sunday,13,286,10,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,D STREET,RC,15,BLK,200.0,STOLEN,8971,"{'type': 'Point', 'coordinates': (-79.37279145, 43.66924446)}"
-8975,22688,GO-20192450174,B&E,2019-12-19T00:00:00,2019,December,Thursday,19,353,15,2019-12-21T00:00:00,2019,December,Saturday,21,355,13,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,GIANT,CONTEND SL,RC,0,BLUBLK,1130.0,STOLEN,8972,"{'type': 'Point', 'coordinates': (-79.37646069, 43.66642862)}"
-8976,23226,GO-20189037901,THEFT UNDER - BICYCLE,2018-11-11T00:00:00,2018,November,Sunday,11,315,12,2018-11-12T00:00:00,2018,November,Monday,12,316,14,D51,Toronto,74,North St.James Town (74),Ttc Subway Station,Transit,KO,SPLICE,RG,21,GRY,950.0,STOLEN,8981,"{'type': 'Point', 'coordinates': (-79.3764768, 43.67145630000001)}"
-8977,22689,GO-20192502901,B&E,2019-12-28T00:00:00,2019,December,Saturday,28,362,16,2019-12-29T00:00:00,2019,December,Sunday,29,363,13,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,TREK,MADONE SSL,OT,0,REDWHI,6000.0,STOLEN,8973,"{'type': 'Point', 'coordinates': (-79.37646069, 43.66642862)}"
-8978,22693,GO-2020362592,THEFT UNDER - BICYCLE,2020-01-01T00:00:00,2020,January,Wednesday,1,1,9,2020-02-21T00:00:00,2020,February,Friday,21,52,11,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,ARGON 18,GALLIUM PRO,OT,10,BLKRED,1800.0,STOLEN,8974,"{'type': 'Point', 'coordinates': (-79.3764768, 43.67145630000001)}"
-8979,22712,GO-2020745891,B&E W'INTENT,2020-01-01T00:00:00,2020,January,Wednesday,1,1,0,2020-04-18T00:00:00,2020,April,Saturday,18,109,21,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,STATE,UNDEFEATED,RC,1,SIL,2000.0,STOLEN,8975,"{'type': 'Point', 'coordinates': (-79.37620707000002, 43.67079259)}"
-8980,22720,GO-20209013712,THEFT UNDER,2020-05-23T00:00:00,2020,May,Saturday,23,144,0,2020-05-23T00:00:00,2020,May,Saturday,23,144,3,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,,,RG,30,BLK,350.0,STOLEN,8976,"{'type': 'Point', 'coordinates': (-79.37575001, 43.6696557)}"
-8981,22729,GO-20209015568,THEFT UNDER,2020-06-17T00:00:00,2020,June,Wednesday,17,169,20,2020-06-17T00:00:00,2020,June,Wednesday,17,169,21,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,PE,,RG,6,BLU,800.0,STOLEN,8977,"{'type': 'Point', 'coordinates': (-79.37373773, 43.66729501)}"
-8982,22731,GO-20209015872,THEFT UNDER,2020-06-21T00:00:00,2020,June,Sunday,21,173,21,2020-06-22T00:00:00,2020,June,Monday,22,174,10,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MILANO,OT,21,BLK,500.0,STOLEN,8978,"{'type': 'Point', 'coordinates': (-79.37620707000002, 43.67079259)}"
-8983,22802,GO-20202157086,THEFT OF EBIKE UNDER $5000,2020-11-08T00:00:00,2020,November,Sunday,8,313,21,2020-11-13T00:00:00,2020,November,Friday,13,318,19,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,,EL,1,,3000.0,STOLEN,8979,"{'type': 'Point', 'coordinates': (-79.37087406, 43.66790841)}"
-8984,23200,GO-20189029102,THEFT UNDER - BICYCLE,2018-09-04T00:00:00,2018,September,Tuesday,4,247,14,2018-09-04T00:00:00,2018,September,Tuesday,4,247,19,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,MOUNTAIN BIKE,MT,9,BLK,1000.0,STOLEN,8980,"{'type': 'Point', 'coordinates': (-79.37620707000002, 43.67079259)}"
-8985,23273,GO-20191159482,THEFT UNDER - BICYCLE,2019-06-22T00:00:00,2019,June,Saturday,22,173,17,2019-06-22T00:00:00,2019,June,Saturday,22,173,17,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DIADORA,,RG,7,BLKRED,400.0,STOLEN,8982,"{'type': 'Point', 'coordinates': (-79.37830693, 43.66628508)}"
-8986,23282,GO-20199021141,THEFT UNDER,2019-07-05T00:00:00,2019,July,Friday,5,186,15,2019-07-05T00:00:00,2019,July,Friday,5,186,15,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,ESCAPE,RG,21,BLK,550.0,STOLEN,8983,"{'type': 'Point', 'coordinates': (-79.37942813, 43.6718256)}"
-8987,23403,GO-2017724343,THEFT UNDER - BICYCLE,2017-04-24T00:00:00,2017,April,Monday,24,114,20,2017-04-25T00:00:00,2017,April,Tuesday,25,115,9,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,YORKVILLE,OT,3,LBL,500.0,STOLEN,8984,"{'type': 'Point', 'coordinates': (-79.37854549, 43.67025604)}"
-8988,23406,GO-20179005964,THEFT UNDER - BICYCLE,2017-05-08T00:00:00,2017,May,Monday,8,128,23,2017-05-09T00:00:00,2017,May,Tuesday,9,129,12,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,CC,UNSURE,MT,21,BLU,60.0,STOLEN,8985,"{'type': 'Point', 'coordinates': (-79.37645102, 43.66797312)}"
-8989,23418,GO-2017996460,THEFT UNDER - BICYCLE,2017-06-05T00:00:00,2017,June,Monday,5,156,12,2017-06-05T00:00:00,2017,June,Monday,5,156,13,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,6045,RG,21,DGR,200.0,STOLEN,8986,"{'type': 'Point', 'coordinates': (-79.37535291, 43.66874604)}"
-8990,23428,GO-20179008901,THEFT UNDER - BICYCLE,2017-06-25T00:00:00,2017,June,Sunday,25,176,19,2017-06-26T00:00:00,2017,June,Monday,26,177,10,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,EL,30,WHI,1200.0,STOLEN,8987,"{'type': 'Point', 'coordinates': (-79.37681431, 43.67235839)}"
-8991,23429,GO-20179008901,THEFT UNDER - BICYCLE,2017-06-25T00:00:00,2017,June,Sunday,25,176,19,2017-06-26T00:00:00,2017,June,Monday,26,177,10,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,EL,30,WHI,1200.0,STOLEN,8988,"{'type': 'Point', 'coordinates': (-79.37681431, 43.67235839)}"
-8992,23459,GO-20171448010,ROBBERY WITH WEAPON,2017-08-11T00:00:00,2017,August,Friday,11,223,15,2017-08-11T00:00:00,2017,August,Friday,11,223,15,D51,Toronto,74,North St.James Town (74),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,VFR4,MT,6,SILWHI,979.0,STOLEN,8989,"{'type': 'Point', 'coordinates': (-79.37830693, 43.66628508)}"
-8993,23466,GO-20171602376,B&E,2017-08-31T00:00:00,2017,August,Thursday,31,243,0,2017-09-04T00:00:00,2017,September,Monday,4,247,17,D51,Toronto,74,North St.James Town (74),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UNKNOWN MAKE,"'INTENSE""""",MT,11,GRN,10000.0,STOLEN,8990,"{'type': 'Point', 'coordinates': (-79.37646069, 43.66642862)}"
-8994,23472,GO-20179015854,THEFT UNDER - BICYCLE,2017-09-25T00:00:00,2017,September,Monday,25,268,22,2017-09-26T00:00:00,2017,September,Tuesday,26,269,17,D51,Toronto,74,North St.James Town (74),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,,MT,18,GRN,2000.0,STOLEN,8991,"{'type': 'Point', 'coordinates': (-79.37900573, 43.66793407)}"
-8995,23473,GO-20179015854,THEFT UNDER - BICYCLE,2017-09-25T00:00:00,2017,September,Monday,25,268,22,2017-09-26T00:00:00,2017,September,Tuesday,26,269,17,D51,Toronto,74,North St.James Town (74),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,,TO,15,BLK,500.0,STOLEN,8992,"{'type': 'Point', 'coordinates': (-79.37900573, 43.66793407)}"
-8996,23480,GO-20179016412,THEFT UNDER - BICYCLE,2017-10-03T00:00:00,2017,October,Tuesday,3,276,8,2017-10-03T00:00:00,2017,October,Tuesday,3,276,20,D51,Toronto,74,North St.James Town (74),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,BANDIT CITY BIK,RG,3,BLK,450.0,STOLEN,8993,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-8997,23498,GO-20179019800,THEFT UNDER - BICYCLE,2017-11-16T00:00:00,2017,November,Thursday,16,320,13,2017-11-16T00:00:00,2017,November,Thursday,16,320,14,D51,Toronto,74,North St.James Town (74),Bar / Restaurant,Commercial,OT,,EL,30,BLK,2500.0,STOLEN,8994,"{'type': 'Point', 'coordinates': (-79.37883544, 43.67093622)}"
-8998,23499,GO-20179019800,THEFT UNDER - BICYCLE,2017-11-16T00:00:00,2017,November,Thursday,16,320,13,2017-11-16T00:00:00,2017,November,Thursday,16,320,14,D51,Toronto,74,North St.James Town (74),Bar / Restaurant,Commercial,OT,,EL,26,BLK,2500.0,STOLEN,8995,"{'type': 'Point', 'coordinates': (-79.37883544, 43.67093622)}"
-8999,23512,GO-20189009758,THEFT UNDER - BICYCLE,2018-03-17T00:00:00,2018,March,Saturday,17,76,19,2018-03-27T00:00:00,2018,March,Tuesday,27,86,21,D51,Toronto,74,North St.James Town (74),"Apartment (Rooming House, Condo)",Apartment,TR,2.1,RC,21,BLK,2000.0,STOLEN,8996,"{'type': 'Point', 'coordinates': (-79.37646069, 43.66642862)}"
-9000,23529,GO-20181017688,THEFT OF EBIKE UNDER $5000,2018-06-04T00:00:00,2018,June,Monday,4,155,23,2018-06-05T00:00:00,2018,June,Tuesday,5,156,12,D51,Toronto,74,North St.James Town (74),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,,,EL,0,GRY,2400.0,STOLEN,8997,"{'type': 'Point', 'coordinates': (-79.37513727, 43.66825437)}"
-9001,23536,GO-20181058134,B&E,2018-06-10T00:00:00,2018,June,Sunday,10,161,3,2018-06-11T00:00:00,2018,June,Monday,11,162,14,D51,Toronto,74,North St.James Town (74),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,TIAN NE NG,,EL,10,GRNWHI,1800.0,STOLEN,8998,"{'type': 'Point', 'coordinates': (-79.37942813, 43.6718256)}"
-9002,15711,GO-20199032128,THEFT UNDER - BICYCLE,2019-09-27T00:00:00,2019,September,Friday,27,270,17,2019-09-30T00:00:00,2019,September,Monday,30,273,19,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RA,,OT,1,GRY,150.0,STOLEN,8999,"{'type': 'Point', 'coordinates': (-79.38638506, 43.669368250000005)}"
-9003,15712,GO-20199032681,THEFT UNDER - BICYCLE,2019-10-02T00:00:00,2019,October,Wednesday,2,275,22,2019-10-05T00:00:00,2019,October,Saturday,5,278,0,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,CC,,RG,25,,359.0,STOLEN,9000,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-9004,15713,GO-20199032851,THEFT UNDER,2019-10-04T00:00:00,2019,October,Friday,4,277,18,2019-10-07T00:00:00,2019,October,Monday,7,280,9,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,,RG,7,,1356.0,STOLEN,9001,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-9005,15717,GO-20199033447,THEFT UNDER - BICYCLE,2019-10-10T00:00:00,2019,October,Thursday,10,283,11,2019-10-10T00:00:00,2019,October,Thursday,10,283,21,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,MOUNTAIN BIKE W,MT,24,WHI,599.0,STOLEN,9002,"{'type': 'Point', 'coordinates': (-79.38091931, 43.66572241)}"
-9006,15718,GO-20199033815,THEFT UNDER - BICYCLE,2019-10-13T00:00:00,2019,October,Sunday,13,286,16,2019-10-14T00:00:00,2019,October,Monday,14,287,9,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,OT,10,BLK,1200.0,STOLEN,9003,"{'type': 'Point', 'coordinates': (-79.37639111, 43.64874921)}"
-9007,15721,GO-20199034869,THEFT UNDER - BICYCLE,2019-10-21T00:00:00,2019,October,Monday,21,294,20,2019-10-22T00:00:00,2019,October,Tuesday,22,295,21,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RM,FLARE,MT,24,RED,700.0,STOLEN,9004,"{'type': 'Point', 'coordinates': (-79.38565257, 43.66756225)}"
-9008,15745,GO-20209010237,THEFT UNDER,2020-03-31T00:00:00,2020,March,Tuesday,31,91,13,2020-03-31T00:00:00,2020,March,Tuesday,31,91,18,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,SU,,MT,18,GRY,300.0,STOLEN,9013,"{'type': 'Point', 'coordinates': (-79.38091931, 43.66572241)}"
-9009,15727,GO-20199037186,THEFT UNDER - BICYCLE,2019-11-11T00:00:00,2019,November,Monday,11,315,10,2019-11-11T00:00:00,2019,November,Monday,11,315,19,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,INFINITE,EL,8,SIL,2199.0,STOLEN,9005,"{'type': 'Point', 'coordinates': (-79.38091931, 43.66572241)}"
-9010,15729,GO-20192226279,B&E,2019-11-17T00:00:00,2019,November,Sunday,17,321,7,2019-11-18T00:00:00,2019,November,Monday,18,322,12,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,ZZZ,,OT,12,,,STOLEN,9006,"{'type': 'Point', 'coordinates': (-79.37667701, 43.66241871)}"
-9011,15730,GO-20192226279,B&E,2019-11-17T00:00:00,2019,November,Sunday,17,321,7,2019-11-18T00:00:00,2019,November,Monday,18,322,12,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,ZZZ,,OT,0,,,STOLEN,9007,"{'type': 'Point', 'coordinates': (-79.37667701, 43.66241871)}"
-9012,15731,GO-20192226279,B&E,2019-11-17T00:00:00,2019,November,Sunday,17,321,7,2019-11-18T00:00:00,2019,November,Monday,18,322,12,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,ZZZ,,OT,0,,,STOLEN,9008,"{'type': 'Point', 'coordinates': (-79.37667701, 43.66241871)}"
-9013,10872,GO-20159010894,THEFT UNDER,2015-12-13T00:00:00,2015,December,Sunday,13,347,1,2015-12-14T00:00:00,2015,December,Monday,14,348,9,D51,Toronto,75,Church-Yonge Corridor (75),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DB,"HOOK, LINE, AND",MT,15,ONG,1100.0,STOLEN,9009,"{'type': 'Point', 'coordinates': (-79.37734964, 43.66099991)}"
-9014,15732,GO-20192226279,B&E,2019-11-17T00:00:00,2019,November,Sunday,17,321,7,2019-11-18T00:00:00,2019,November,Monday,18,322,12,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,ZZZ,,OT,0,,,STOLEN,9010,"{'type': 'Point', 'coordinates': (-79.37667701, 43.66241871)}"
-9015,15733,GO-20192226279,B&E,2019-11-17T00:00:00,2019,November,Sunday,17,321,7,2019-11-18T00:00:00,2019,November,Monday,18,322,12,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,FUJI,,RG,12,BLK,700.0,STOLEN,9011,"{'type': 'Point', 'coordinates': (-79.37667701, 43.66241871)}"
-9016,15742,GO-20209008245,THEFT UNDER,2020-03-07T00:00:00,2020,March,Saturday,7,67,18,2020-03-09T00:00:00,2020,March,Monday,9,69,2,D52,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,,RG,20,BLK,135.0,STOLEN,9012,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-9017,15754,GO-2020831390,THEFT UNDER - BICYCLE,2020-05-02T00:00:00,2020,May,Saturday,2,123,21,2020-05-03T00:00:00,2020,May,Sunday,3,124,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,,MT,0,YEL,250.0,STOLEN,9014,"{'type': 'Point', 'coordinates': (-79.3738772, 43.65536132)}"
-9018,15757,GO-2020868250,THEFT UNDER - BICYCLE,2020-05-09T00:00:00,2020,May,Saturday,9,130,17,2020-05-09T00:00:00,2020,May,Saturday,9,130,18,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,SKYLINE,,OT,4,BLU,80.0,RECOVERED,9015,"{'type': 'Point', 'coordinates': (-79.38201616, 43.6683485)}"
-9019,15765,GO-20209013884,THEFT UNDER,2020-05-23T00:00:00,2020,May,Saturday,23,144,17,2020-05-25T00:00:00,2020,May,Monday,25,146,17,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,AVENUE,MT,18,DBL,200.0,STOLEN,9016,"{'type': 'Point', 'coordinates': (-79.37900573, 43.66793407)}"
-9020,15766,GO-20209014154,THEFT UNDER,2020-05-13T00:00:00,2020,May,Wednesday,13,134,22,2020-05-28T00:00:00,2020,May,Thursday,28,149,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,,RG,10,BGE,300.0,STOLEN,9017,"{'type': 'Point', 'coordinates': (-79.37872961, 43.654321780000004)}"
-9021,15769,GO-20209014363,THEFT UNDER,2020-06-01T00:00:00,2020,June,Monday,1,153,6,2020-06-01T00:00:00,2020,June,Monday,1,153,16,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,TARMAC,RC,16,RED,1100.0,STOLEN,9018,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-9022,15778,GO-20209015473,THEFT UNDER,2020-06-15T00:00:00,2020,June,Monday,15,167,21,2020-06-16T00:00:00,2020,June,Tuesday,16,168,15,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,SU,"WOMEN'S HYBRID,",OT,21,PLE,400.0,STOLEN,9019,"{'type': 'Point', 'coordinates': (-79.38245382, 43.66941071)}"
-9023,15779,GO-20209015519,THEFT UNDER,2020-06-16T00:00:00,2020,June,Tuesday,16,168,20,2020-06-16T00:00:00,2020,June,Tuesday,16,168,22,D51,Toronto,75,Church-Yonge Corridor (75),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,DEROSA,RC,11,RED,0.0,STOLEN,9020,"{'type': 'Point', 'coordinates': (-79.38091931, 43.66572241)}"
-9024,15780,GO-20209015648,THEFT UNDER,2020-06-18T00:00:00,2020,June,Thursday,18,170,9,2020-06-18T00:00:00,2020,June,Thursday,18,170,13,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,WITH BABY SEAT,MT,10,,500.0,STOLEN,9021,"{'type': 'Point', 'coordinates': (-79.37615599, 43.65014184)}"
-9025,15781,GO-20209015925,THEFT UNDER,2020-06-22T00:00:00,2020,June,Monday,22,174,16,2020-06-22T00:00:00,2020,June,Monday,22,174,23,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,FAULKNER 82085,FO,6,SIL,240.0,STOLEN,9022,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-9026,15789,GO-20209016889,MISCHIEF UNDER,2020-07-03T00:00:00,2020,July,Friday,3,185,21,2020-07-05T00:00:00,2020,July,Sunday,5,187,15,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,KO,,RG,6,DGR,1000.0,STOLEN,9023,"{'type': 'Point', 'coordinates': (-79.37971563, 43.66282598)}"
-9027,15792,GO-20201256255,THEFT OF EBIKE UNDER $5000,2020-07-07T00:00:00,2020,July,Tuesday,7,189,15,2020-07-07T00:00:00,2020,July,Tuesday,7,189,16,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SEGWAY,9BOTMAX,SC,0,GRY,1200.0,STOLEN,9024,"{'type': 'Point', 'coordinates': (-79.38638506, 43.669368250000005)}"
-9028,15793,GO-20209017962,THEFT UNDER,2020-07-18T00:00:00,2020,July,Saturday,18,200,22,2020-07-19T00:00:00,2020,July,Sunday,19,201,17,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GI,XC29,MT,24,BLK,425.0,STOLEN,9025,"{'type': 'Point', 'coordinates': (-79.37971563, 43.66282598)}"
-9029,15805,GO-20209020000,THEFT UNDER,2020-08-09T00:00:00,2020,August,Sunday,9,222,21,2020-08-12T00:00:00,2020,August,Wednesday,12,225,10,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,TR,,RG,27,BLK,1000.0,STOLEN,9026,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-9030,15806,GO-20201515871,PROPERTY - FOUND,2020-08-12T00:00:00,2020,August,Wednesday,12,225,11,2020-08-13T00:00:00,2020,August,Thursday,13,226,20,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,TREK,BURNER,MT,18,ONG,,UNKNOWN,9027,"{'type': 'Point', 'coordinates': (-79.3738772, 43.65536132)}"
-9031,15811,GO-20201559595,THEFT OF EBIKE UNDER $5000,2020-08-19T00:00:00,2020,August,Wednesday,19,232,14,2020-08-19T00:00:00,2020,August,Wednesday,19,232,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,EL,21,BLKBLU,1800.0,STOLEN,9028,"{'type': 'Point', 'coordinates': (-79.37585959, 43.66043919)}"
-9032,15814,GO-20201594805,ASSAULT WITH WEAPON,2020-08-24T00:00:00,2020,August,Monday,24,237,13,2020-08-24T00:00:00,2020,August,Monday,24,237,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,EWILD S2,EL,1,BLK,3050.0,STOLEN,9029,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-9033,15818,GO-20209022129,THEFT UNDER - BICYCLE,2020-09-02T00:00:00,2020,September,Wednesday,2,246,12,2020-09-02T00:00:00,2020,September,Wednesday,2,246,19,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,NO,,MT,3,GRY,0.0,STOLEN,9030,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-9034,15821,GO-20209022631,THEFT UNDER,2020-09-01T00:00:00,2020,September,Tuesday,1,245,1,2020-09-08T00:00:00,2020,September,Tuesday,8,252,15,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,OCHO 2015 XS,RG,8,GRY,1000.0,RECOVERED,9031,"{'type': 'Point', 'coordinates': (-79.37900573, 43.66793407)}"
-9035,15823,GO-20209023092,THEFT UNDER - BICYCLE,2020-09-12T00:00:00,2020,September,Saturday,12,256,15,2020-09-12T00:00:00,2020,September,Saturday,12,256,23,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,E BIKE,EL,34,WHI,1500.0,STOLEN,9032,"{'type': 'Point', 'coordinates': (-79.37410556, 43.64926232)}"
-9036,15831,GO-20209024025,THEFT UNDER - BICYCLE,2020-09-22T00:00:00,2020,September,Tuesday,22,266,12,2020-09-22T00:00:00,2020,September,Tuesday,22,266,12,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GF,WINGRA,RG,24,BLK,0.0,STOLEN,9033,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-9037,15833,GO-20209024821,THEFT UNDER - BICYCLE,2020-08-28T00:00:00,2020,August,Friday,28,241,21,2020-09-28T00:00:00,2020,September,Monday,28,272,19,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,BONAVENTURE,EL,25,BLU,2595.0,STOLEN,9034,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-9038,15841,GO-20209026892,THEFT UNDER - BICYCLE,2020-10-15T00:00:00,2020,October,Thursday,15,289,21,2020-10-15T00:00:00,2020,October,Thursday,15,289,22,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,UK,CC489DE692,EL,30,GRN,2000.0,STOLEN,9035,"{'type': 'Point', 'coordinates': (-79.37585959, 43.66043919)}"
-9039,15844,GO-20202210957,THEFT OF EBIKE UNDER $5000,2020-11-21T00:00:00,2020,November,Saturday,21,326,12,2020-11-22T00:00:00,2020,November,Sunday,22,327,11,D51,Toronto,75,Church-Yonge Corridor (75),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,UK,29 LTD,EL,30,GRY,5000.0,STOLEN,9036,"{'type': 'Point', 'coordinates': (-79.37827718, 43.65626242)}"
-9040,15846,GO-20202245611,PROPERTY - FOUND,2020-11-27T00:00:00,2020,November,Friday,27,332,0,2020-11-28T00:00:00,2020,November,Saturday,28,333,14,D51,Toronto,75,Church-Yonge Corridor (75),"Open Areas (Lakes, Parks, Rivers)",Outside,OTHER,SWITCH 100,EL,1,BLU,,STOLEN,9037,"{'type': 'Point', 'coordinates': (-79.38132262, 43.6667026)}"
-9041,15847,GO-20209031078,THEFT UNDER,2020-12-02T00:00:00,2020,December,Wednesday,2,337,18,2020-12-02T00:00:00,2020,December,Wednesday,2,337,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,DYNAMO,RG,8,WHI,1000.0,STOLEN,9038,"{'type': 'Point', 'coordinates': (-79.38277088, 43.67016017)}"
-9042,15850,GO-20209032653,THEFT UNDER - BICYCLE,2020-12-21T00:00:00,2020,December,Monday,21,356,17,2020-12-22T00:00:00,2020,December,Tuesday,22,357,4,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,X-TRAIL A55,TO,30,BLU,2250.0,STOLEN,9039,"{'type': 'Point', 'coordinates': (-79.37720552, 43.6506687)}"
-9043,16011,GO-2016538901,THEFT UNDER - BICYCLE,2016-03-29T00:00:00,2016,March,Tuesday,29,89,16,2016-03-30T00:00:00,2016,March,Wednesday,30,90,12,D53,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,TITAN,SC,1,BLK,2000.0,STOLEN,9040,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-9044,16235,GO-20189014863,THEFT UNDER - BICYCLE,2018-05-13T00:00:00,2018,May,Sunday,13,133,18,2018-05-14T00:00:00,2018,May,Monday,14,134,12,D52,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,MA,,MT,1,,250.0,STOLEN,9041,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-9045,16347,GO-20199024319,THEFT UNDER,2019-07-29T00:00:00,2019,July,Monday,29,210,18,2019-07-29T00:00:00,2019,July,Monday,29,210,22,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,OT,21,BLK,0.0,STOLEN,9042,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-9046,16351,GO-20199024846,THEFT UNDER - BICYCLE,2019-08-02T00:00:00,2019,August,Friday,2,214,23,2019-08-03T00:00:00,2019,August,Saturday,3,215,10,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,RC,9,BLU,250.0,STOLEN,9043,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-9047,16354,GO-20199025766,THEFT UNDER,2019-08-11T00:00:00,2019,August,Sunday,11,223,16,2019-08-11T00:00:00,2019,August,Sunday,11,223,18,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,,RC,10,BLK,1800.0,STOLEN,9044,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-9048,16356,GO-20199026293,THEFT UNDER,2019-08-13T00:00:00,2019,August,Tuesday,13,225,9,2019-08-15T00:00:00,2019,August,Thursday,15,227,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MO,,RG,21,GRY,100.0,STOLEN,9045,"{'type': 'Point', 'coordinates': (-79.37424947, 43.653501610000006)}"
-9049,16357,GO-20199026414,THEFT UNDER,2019-08-15T00:00:00,2019,August,Thursday,15,227,23,2019-08-16T00:00:00,2019,August,Friday,16,228,20,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,700C 36VBIKE,OT,20,LBL,1200.0,STOLEN,9046,"{'type': 'Point', 'coordinates': (-79.38132262, 43.6667026)}"
-9050,16358,GO-20199026414,THEFT UNDER,2019-08-15T00:00:00,2019,August,Thursday,15,227,23,2019-08-16T00:00:00,2019,August,Friday,16,228,20,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,SC,,MT,7,BLK,1900.0,STOLEN,9047,"{'type': 'Point', 'coordinates': (-79.38132262, 43.6667026)}"
-9051,16366,GO-20199027292,THEFT UNDER,2019-08-22T00:00:00,2019,August,Thursday,22,234,14,2019-08-22T00:00:00,2019,August,Thursday,22,234,15,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,UK,2016 F65X,RC,11,BLK,1500.0,STOLEN,9048,"{'type': 'Point', 'coordinates': (-79.38411783, 43.66390399)}"
-9052,16369,GO-20199028140,THEFT UNDER,2019-08-29T00:00:00,2019,August,Thursday,29,241,12,2019-08-29T00:00:00,2019,August,Thursday,29,241,13,D51,Toronto,75,Church-Yonge Corridor (75),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SC,,RG,21,RED,0.0,STOLEN,9049,"{'type': 'Point', 'coordinates': (-79.37600691000002, 43.64815434)}"
-9053,16373,GO-20199029396,THEFT UNDER,2019-09-09T00:00:00,2019,September,Monday,9,252,11,2019-09-09T00:00:00,2019,September,Monday,9,252,21,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,6,GRN,0.0,STOLEN,9050,"{'type': 'Point', 'coordinates': (-79.3811853, 43.65703802)}"
-9054,16381,GO-20199030283,THEFT UNDER,2019-07-26T00:00:00,2019,July,Friday,26,207,19,2019-09-16T00:00:00,2019,September,Monday,16,259,19,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,,TO,1,ONG,2000.0,STOLEN,9051,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-9055,16382,GO-20199030283,THEFT UNDER,2019-07-26T00:00:00,2019,July,Friday,26,207,19,2019-09-16T00:00:00,2019,September,Monday,16,259,19,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,ONG,2500.0,STOLEN,9052,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-9056,16388,GO-20199031826,THEFT UNDER - BICYCLE,2019-09-13T00:00:00,2019,September,Friday,13,256,0,2019-09-27T00:00:00,2019,September,Friday,27,270,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,RG,7,SIL,400.0,STOLEN,9053,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-9057,16390,GO-20191864069,THEFT UNDER - BICYCLE,2019-09-27T00:00:00,2019,September,Friday,27,270,15,2019-09-29T00:00:00,2019,September,Sunday,29,272,18,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,SUPERCYCLE,RG,21,BLU,500.0,STOLEN,9054,"{'type': 'Point', 'coordinates': (-79.37849549, 43.65985781)}"
-9058,16391,GO-20199032176,THEFT UNDER,2019-09-18T00:00:00,2019,September,Wednesday,18,261,6,2019-10-01T00:00:00,2019,October,Tuesday,1,274,11,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,25,RED,350.0,STOLEN,9055,"{'type': 'Point', 'coordinates': (-79.37883347, 43.66067091000001)}"
-9059,22788,GO-20209026035,THEFT UNDER,2020-10-10T00:00:00,2020,October,Saturday,10,284,18,2020-10-10T00:00:00,2020,October,Saturday,10,284,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,18,LBL,1000.0,STOLEN,9056,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-9060,16393,GO-20199032290,THEFT UNDER,2019-10-01T00:00:00,2019,October,Tuesday,1,274,7,2019-10-01T00:00:00,2019,October,Tuesday,1,274,20,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,3,,1000.0,STOLEN,9057,"{'type': 'Point', 'coordinates': (-79.37971563, 43.66282598)}"
-9061,16398,GO-20199033850,THEFT UNDER - BICYCLE,2019-10-13T00:00:00,2019,October,Sunday,13,286,13,2019-10-14T00:00:00,2019,October,Monday,14,287,13,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,OT,1,BLK,500.0,STOLEN,9058,"{'type': 'Point', 'coordinates': (-79.38411783, 43.66390399)}"
-9062,16412,GO-20199037604,THEFT UNDER,2019-11-13T00:00:00,2019,November,Wednesday,13,317,19,2019-11-15T00:00:00,2019,November,Friday,15,319,15,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,TR,2017 1.2,RC,5,BLK,1000.0,STOLEN,9059,"{'type': 'Point', 'coordinates': (-79.37639111, 43.64874921)}"
-9063,16415,GO-20199038485,THEFT UNDER,2019-11-21T00:00:00,2019,November,Thursday,21,325,22,2019-11-22T00:00:00,2019,November,Friday,22,326,16,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,XC27,MT,21,BLK,450.0,STOLEN,9060,"{'type': 'Point', 'coordinates': (-79.37639111, 43.64874921)}"
-9064,16433,GO-20209001772,THEFT UNDER,2020-01-14T00:00:00,2020,January,Tuesday,14,14,14,2020-01-15T00:00:00,2020,January,Wednesday,15,15,17,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,SC1,RG,21,BLU,622.0,STOLEN,9061,"{'type': 'Point', 'coordinates': (-79.37720552, 43.6506687)}"
-9065,16441,GO-2020521333,THEFT OF EBIKE UNDER $5000,2020-03-12T00:00:00,2020,March,Thursday,12,72,19,2020-03-12T00:00:00,2020,March,Thursday,12,72,19,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPARK,SPARK,EL,0,WHI,2500.0,STOLEN,9062,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-9066,16445,GO-20209009375,THEFT UNDER,2020-03-17T00:00:00,2020,March,Tuesday,17,77,23,2020-03-19T00:00:00,2020,March,Thursday,19,79,15,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,TALON 3 LARGE,MT,24,BLK,699.0,STOLEN,9063,"{'type': 'Point', 'coordinates': (-79.38612041000002, 43.66874221)}"
-9067,16452,GO-20209012253,THEFT UNDER,2020-04-30T00:00:00,2020,April,Thursday,30,121,17,2020-04-30T00:00:00,2020,April,Thursday,30,121,20,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GI,ANTHEM X,MT,10,BLK,5000.0,STOLEN,9064,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-9068,16456,GO-20209013935,THEFT UNDER,2020-05-25T00:00:00,2020,May,Monday,25,146,22,2020-05-26T00:00:00,2020,May,Tuesday,26,147,13,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,HARRIER 1.0,RG,1,BLK,500.0,STOLEN,9065,"{'type': 'Point', 'coordinates': (-79.38091931, 43.66572241)}"
-9069,16460,GO-20209015047,THEFT UNDER,2020-06-09T00:00:00,2020,June,Tuesday,9,161,10,2020-06-10T00:00:00,2020,June,Wednesday,10,162,8,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,MT,10,BLU,500.0,STOLEN,9066,"{'type': 'Point', 'coordinates': (-79.37662709, 43.65297714)}"
-9070,16461,GO-20209015124,THEFT UNDER,2020-06-10T00:00:00,2020,June,Wednesday,10,162,14,2020-06-11T00:00:00,2020,June,Thursday,11,163,12,D51,Toronto,75,Church-Yonge Corridor (75),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,650B MTB,MT,7,LGR,389.0,STOLEN,9067,"{'type': 'Point', 'coordinates': (-79.38277088, 43.67016017)}"
-9071,16467,GO-20209015925,THEFT UNDER,2020-06-22T00:00:00,2020,June,Monday,22,174,16,2020-06-22T00:00:00,2020,June,Monday,22,174,23,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,82085,OT,6,SIL,240.0,STOLEN,9068,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-9072,16470,GO-20209016373,THEFT UNDER,2020-06-28T00:00:00,2020,June,Sunday,28,180,3,2020-06-28T00:00:00,2020,June,Sunday,28,180,14,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,UK,,RG,8,BLK,900.0,STOLEN,9069,"{'type': 'Point', 'coordinates': (-79.38411783, 43.66390399)}"
-9073,16472,GO-20209016912,THEFT UNDER,2020-06-29T00:00:00,2020,June,Monday,29,181,10,2020-07-05T00:00:00,2020,July,Sunday,5,187,17,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SIRRUS,OT,8,WHI,800.0,STOLEN,9070,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-9074,16475,GO-20201239524,THEFT UNDER - BICYCLE,2020-06-29T00:00:00,2020,June,Monday,29,181,10,2020-07-05T00:00:00,2020,July,Sunday,5,187,10,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,SIRRUS,MT,21,WHIBLK,800.0,STOLEN,9071,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-9075,16486,GO-20209018860,THEFT UNDER,2020-07-28T00:00:00,2020,July,Tuesday,28,210,19,2020-07-29T00:00:00,2020,July,Wednesday,29,211,9,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GI,2018 ESCAPE CIT,RG,24,DGR,679.0,STOLEN,9072,"{'type': 'Point', 'coordinates': (-79.38201616, 43.6683485)}"
-9076,16487,GO-20209019052,THEFT UNDER,2020-07-28T00:00:00,2020,July,Tuesday,28,210,2,2020-07-30T00:00:00,2020,July,Thursday,30,212,23,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,FOLDING BIKE,FO,32,RED,1050.0,STOLEN,9073,"{'type': 'Point', 'coordinates': (-79.37971563, 43.66282598)}"
-9077,16492,GO-20209019682,THEFT UNDER,2020-07-19T00:00:00,2020,July,Sunday,19,201,8,2020-08-08T00:00:00,2020,August,Saturday,8,221,11,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,3,DGR,250.0,STOLEN,9074,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-9078,13849,GO-20189038758,B&E,2018-11-08T00:00:00,2018,November,Thursday,8,312,10,2018-11-19T00:00:00,2018,November,Monday,19,323,10,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,CA,CANONDALE TRAIL,MT,3,BLU,2000.0,STOLEN,9075,"{'type': 'Point', 'coordinates': (-79.38159626, 43.66440307)}"
-9079,23579,GO-20189026856,THEFT UNDER - BICYCLE,2018-08-13T00:00:00,2018,August,Monday,13,225,18,2018-08-17T00:00:00,2018,August,Friday,17,229,22,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,PARADISE,MT,21,,324.0,STOLEN,9076,"{'type': 'Point', 'coordinates': (-79.37943497, 43.65603477)}"
-9080,16498,GO-20209019881,THEFT UNDER,2020-08-10T00:00:00,2020,August,Monday,10,223,20,2020-08-11T00:00:00,2020,August,Tuesday,11,224,11,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,CAAD X,TO,18,,1200.0,STOLEN,9077,"{'type': 'Point', 'coordinates': (-79.37424947, 43.653501610000006)}"
-9081,16499,GO-20209019881,THEFT UNDER,2020-08-10T00:00:00,2020,August,Monday,10,223,20,2020-08-11T00:00:00,2020,August,Tuesday,11,224,11,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,7000,RG,24,GRY,700.0,STOLEN,9078,"{'type': 'Point', 'coordinates': (-79.37424947, 43.653501610000006)}"
-9082,16500,GO-20209019881,THEFT UNDER,2020-08-10T00:00:00,2020,August,Monday,10,223,20,2020-08-11T00:00:00,2020,August,Tuesday,11,224,11,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,DEW CITY,RG,21,BLK,600.0,STOLEN,9079,"{'type': 'Point', 'coordinates': (-79.37424947, 43.653501610000006)}"
-9083,16510,GO-20209022265,THEFT UNDER - BICYCLE,2020-09-03T00:00:00,2020,September,Thursday,3,247,23,2020-09-04T00:00:00,2020,September,Friday,4,248,0,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,OT,2018 SIRRUS V S,MT,21,BLK,600.0,STOLEN,9080,"{'type': 'Point', 'coordinates': (-79.37971563, 43.66282598)}"
-9084,16513,GO-20209022485,THEFT UNDER,2020-09-04T00:00:00,2020,September,Friday,4,248,22,2020-09-06T00:00:00,2020,September,Sunday,6,250,18,D51,Toronto,75,Church-Yonge Corridor (75),Ttc Subway Station,Transit,UK,"RAMBLER 24"""" CRU",RG,1,DGR,260.0,STOLEN,9081,"{'type': 'Point', 'coordinates': (-79.38491403, 43.66584039)}"
-9085,16534,GO-20143001211,THEFT UNDER,2014-09-27T00:00:00,2014,September,Saturday,27,270,13,2014-09-28T00:00:00,2014,September,Sunday,28,271,12,D52,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,HYBRID,OT,21,BLK,350.0,STOLEN,9082,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-9086,16720,GO-20189036662,THEFT UNDER - BICYCLE,2018-11-02T00:00:00,2018,November,Friday,2,306,22,2018-11-03T00:00:00,2018,November,Saturday,3,307,0,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,GTX 700C,RG,20,BLK,550.0,STOLEN,9083,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-9087,16722,GO-20189037928,THEFT UNDER - BICYCLE,2018-11-12T00:00:00,2018,November,Monday,12,316,13,2018-11-12T00:00:00,2018,November,Monday,12,316,16,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,LONDON,OT,21,SIL,800.0,STOLEN,9084,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-9088,16723,GO-20189037928,THEFT UNDER - BICYCLE,2018-11-12T00:00:00,2018,November,Monday,12,316,13,2018-11-12T00:00:00,2018,November,Monday,12,316,16,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,OT,27,BLK,900.0,STOLEN,9085,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-9089,16726,GO-20182108875,THEFT OF EBIKE UNDER $5000,2018-11-11T00:00:00,2018,November,Sunday,11,315,15,2018-11-15T00:00:00,2018,November,Thursday,15,319,21,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,AMIGO,FREEDOM,EL,5,SIL,1300.0,STOLEN,9086,"{'type': 'Point', 'coordinates': (-79.37883347, 43.66067091000001)}"
-9090,16727,GO-20182170335,THEFT UNDER - BICYCLE,2018-11-21T00:00:00,2018,November,Wednesday,21,325,16,2018-11-25T00:00:00,2018,November,Sunday,25,329,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,,MT,21,BLU,800.0,STOLEN,9087,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-9091,16728,GO-20189042618,THEFT UNDER - BICYCLE,2018-12-18T00:00:00,2018,December,Tuesday,18,352,18,2018-12-18T00:00:00,2018,December,Tuesday,18,352,22,D51,Toronto,75,Church-Yonge Corridor (75),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,CC,SCOPE,MT,21,RED,0.0,STOLEN,9088,"{'type': 'Point', 'coordinates': (-79.37215317, 43.64913066)}"
-9092,16746,GO-20199013725,B&E,2019-04-30T00:00:00,2019,April,Tuesday,30,120,21,2019-05-02T00:00:00,2019,May,Thursday,2,122,14,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GI,,RC,9,BLK,1000.0,STOLEN,9089,"{'type': 'Point', 'coordinates': (-79.37883347, 43.66067091000001)}"
-9093,16749,GO-20199014386,THEFT UNDER,2019-05-08T00:00:00,2019,May,Wednesday,8,128,9,2019-05-08T00:00:00,2019,May,Wednesday,8,128,19,D51,Toronto,75,Church-Yonge Corridor (75),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,ELEGANCE 701,RG,25,GRY,700.0,STOLEN,9090,"{'type': 'Point', 'coordinates': (-79.37615599, 43.65014184)}"
-9094,16751,GO-20199015196,THEFT UNDER,2019-05-05T00:00:00,2019,May,Sunday,5,125,10,2019-05-15T00:00:00,2019,May,Wednesday,15,135,23,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,BRODIE,ELAN,TO,30,DGR,2300.0,STOLEN,9091,"{'type': 'Point', 'coordinates': (-79.38091931, 43.66572241)}"
-9095,16752,GO-20199015196,THEFT UNDER,2019-05-05T00:00:00,2019,May,Sunday,5,125,10,2019-05-15T00:00:00,2019,May,Wednesday,15,135,23,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,JAMIS,VENTURA SPORT,RG,15,LBL,250.0,STOLEN,9092,"{'type': 'Point', 'coordinates': (-79.38091931, 43.66572241)}"
-9096,16754,GO-2019910912,THEFT OF EBIKE UNDER $5000,2019-05-19T00:00:00,2019,May,Sunday,19,139,2,2019-05-19T00:00:00,2019,May,Sunday,19,139,3,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,EL,1,BLK,1000.0,STOLEN,9093,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-9097,16755,GO-2019910912,THEFT OF EBIKE UNDER $5000,2019-05-19T00:00:00,2019,May,Sunday,19,139,2,2019-05-19T00:00:00,2019,May,Sunday,19,139,3,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,EL,1,YEL,1000.0,STOLEN,9094,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-9098,16758,GO-2019934731,THEFT UNDER - BICYCLE,2019-05-19T00:00:00,2019,May,Sunday,19,139,19,2019-05-23T00:00:00,2019,May,Thursday,23,143,17,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,,OT,1,WHIYEL,290.0,UNKNOWN,9095,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-9099,16761,GO-20199017689,THEFT UNDER,2019-06-06T00:00:00,2019,June,Thursday,6,157,20,2019-06-06T00:00:00,2019,June,Thursday,6,157,22,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,MEN'S SIRRUS EL,RG,10,BLK,1600.0,STOLEN,9096,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-9100,16767,GO-20191074426,THEFT UNDER - BICYCLE,2019-06-11T00:00:00,2019,June,Tuesday,11,162,5,2019-06-11T00:00:00,2019,June,Tuesday,11,162,7,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,EL,1,BLKBLU,3000.0,STOLEN,9097,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-9101,16779,GO-20199021286,THEFT UNDER,2019-07-04T00:00:00,2019,July,Thursday,4,185,8,2019-07-07T00:00:00,2019,July,Sunday,7,188,15,D51,Toronto,75,Church-Yonge Corridor (75),Schools During Supervised Activity,Educational,TR,MARLIN 4,MT,21,SIL,650.0,STOLEN,9098,"{'type': 'Point', 'coordinates': (-79.37781507, 43.65821091)}"
-9102,16780,GO-20199021302,THEFT UNDER,2019-07-01T00:00:00,2019,July,Monday,1,182,15,2019-07-07T00:00:00,2019,July,Sunday,7,188,7,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,21,BLU,250.0,STOLEN,9099,"{'type': 'Point', 'coordinates': (-79.37783798, 43.66217202)}"
-9103,16782,GO-20191275830,THEFT UNDER,2019-07-07T00:00:00,2019,July,Sunday,7,188,0,2019-07-09T00:00:00,2019,July,Tuesday,9,190,13,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,MT,1,,,STOLEN,9100,"{'type': 'Point', 'coordinates': (-79.37573379, 43.65316827000001)}"
-9104,16919,GO-20179007130,THEFT UNDER - BICYCLE,2017-05-28T00:00:00,2017,May,Sunday,28,148,19,2017-05-28T00:00:00,2017,May,Sunday,28,148,20,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ALLEZ SPORT,RC,9,SIL,1000.0,STOLEN,9101,"{'type': 'Point', 'coordinates': (-79.37516377, 43.6518061)}"
-9105,16921,GO-20179007367,THEFT UNDER - BICYCLE,2017-05-03T00:00:00,2017,May,Wednesday,3,123,22,2017-06-01T00:00:00,2017,June,Thursday,1,152,21,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,URBANIA 4.0,OT,24,BRN,750.0,STOLEN,9102,"{'type': 'Point', 'coordinates': (-79.3823358, 43.67122103)}"
-9106,20290,GO-20189008790,THEFT UNDER,2018-03-21T00:00:00,2018,March,Wednesday,21,80,1,2018-03-21T00:00:00,2018,March,Wednesday,21,80,8,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,CHILD CARRIER,OT,1,LGR,950.0,STOLEN,9103,"{'type': 'Point', 'coordinates': (-79.3749313, 43.65514877)}"
-9107,12586,GO-20161807064,POSSESSION PROPERTY OBC UNDER,2016-10-11T00:00:00,2016,October,Tuesday,11,285,11,2016-10-11T00:00:00,2016,October,Tuesday,11,285,11,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,STRIKER TECH TE,,MT,21,,,RECOVERED,9104,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-9108,20292,GO-2018734899,THEFT UNDER - BICYCLE,2018-04-24T00:00:00,2018,April,Tuesday,24,114,17,2018-04-24T00:00:00,2018,April,Tuesday,24,114,19,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,,RC,27,BLK,,STOLEN,9105,"{'type': 'Point', 'coordinates': (-79.37781507, 43.65821091)}"
-9109,10873,GO-20159010920,THEFT UNDER,2015-12-14T00:00:00,2015,December,Monday,14,348,9,2015-12-14T00:00:00,2015,December,Monday,14,348,19,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,,RG,21,DGR,100.0,STOLEN,9106,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-9110,20295,GO-20189014201,THEFT UNDER - BICYCLE,2018-05-07T00:00:00,2018,May,Monday,7,127,14,2018-05-08T00:00:00,2018,May,Tuesday,8,128,16,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,MT,8,BLK,1200.0,STOLEN,9107,"{'type': 'Point', 'coordinates': (-79.37758587, 43.65456447)}"
-9111,13853,GO-20199000258,THEFT UNDER - BICYCLE,2018-12-18T00:00:00,2018,December,Tuesday,18,352,0,2019-01-03T00:00:00,2019,January,Thursday,3,3,12,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,21,BLK,600.0,STOLEN,9108,"{'type': 'Point', 'coordinates': (-79.37869993, 43.65105518)}"
-9112,10876,GO-20159010961,THEFT UNDER,2015-12-15T00:00:00,2015,December,Tuesday,15,349,8,2015-12-15T00:00:00,2015,December,Tuesday,15,349,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,DECLARATION,RG,1,GRY,500.0,STOLEN,9109,"{'type': 'Point', 'coordinates': (-79.37872961, 43.654321780000004)}"
-9113,20297,GO-2018864995,THEFT UNDER - BICYCLE,2018-05-13T00:00:00,2018,May,Sunday,13,133,20,2018-05-13T00:00:00,2018,May,Sunday,13,133,22,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,POPULO,UNK,OT,18,BLK,1450.0,STOLEN,9110,"{'type': 'Point', 'coordinates': (-79.37562599, 43.6568205)}"
-9114,17296,GO-2017143313,THEFT UNDER - BICYCLE,2016-12-29T00:00:00,2016,December,Thursday,29,364,20,2017-01-23T00:00:00,2017,January,Monday,23,23,21,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,FOIL 40,RC,20,BLK,3500.0,STOLEN,9111,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-9115,12604,GO-20169011957,THEFT UNDER - BICYCLE,2016-10-07T00:00:00,2016,October,Friday,7,281,16,2016-10-12T00:00:00,2016,October,Wednesday,12,286,22,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,1,BLK,450.0,STOLEN,9112,"{'type': 'Point', 'coordinates': (-79.38530036, 43.66669498)}"
-9116,22789,GO-20209026264,THEFT UNDER,2020-10-11T00:00:00,2020,October,Sunday,11,285,18,2020-10-13T00:00:00,2020,October,Tuesday,13,287,12,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,OT,VINTAGE,RC,55,BLK,260.0,STOLEN,9113,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-9117,23592,GO-20189028356,THEFT UNDER - BICYCLE,2018-08-28T00:00:00,2018,August,Tuesday,28,240,21,2018-08-29T00:00:00,2018,August,Wednesday,29,241,2,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,CA,R-4000,RC,20,RED,300.0,STOLEN,9114,"{'type': 'Point', 'coordinates': (-79.3771082, 43.65650088)}"
-9118,20698,GO-20209010065,THEFT UNDER,2020-03-23T00:00:00,2020,March,Monday,23,83,11,2020-03-29T00:00:00,2020,March,Sunday,29,89,10,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,4,GRY,0.0,STOLEN,9115,"{'type': 'Point', 'coordinates': (-79.37639111, 43.64874921)}"
-9119,13861,GO-20199006516,THEFT UNDER - BICYCLE,2019-02-09T00:00:00,2019,February,Saturday,9,40,0,2019-02-24T00:00:00,2019,February,Sunday,24,55,22,D51,Toronto,75,Church-Yonge Corridor (75),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,PODIUM,TO,21,WHI,1700.0,STOLEN,9116,"{'type': 'Point', 'coordinates': (-79.3823358, 43.67122103)}"
-9120,17302,GO-20179003203,THEFT UNDER,2017-03-10T00:00:00,2017,March,Friday,10,69,23,2017-03-13T00:00:00,2017,March,Monday,13,72,19,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EM,,EL,32,PLE,350.0,STOLEN,9117,"{'type': 'Point', 'coordinates': (-79.38201616, 43.6683485)}"
-9121,10877,GO-20159010966,THEFT UNDER,2015-12-12T00:00:00,2015,December,Saturday,12,346,3,2015-12-15T00:00:00,2015,December,Tuesday,15,349,16,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,EM,URBAN 2.0,SC,35,WHI,1400.0,STOLEN,9118,"{'type': 'Point', 'coordinates': (-79.38091931, 43.66572241)}"
-9122,23595,GO-20189028891,THEFT UNDER - BICYCLE,2018-09-01T00:00:00,2018,September,Saturday,1,244,14,2018-09-02T00:00:00,2018,September,Sunday,2,245,18,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,CC,700C XSPORT,RG,21,BLK,500.0,STOLEN,9119,"{'type': 'Point', 'coordinates': (-79.37849549, 43.65985781)}"
-9123,13870,GO-2015853845,THEFT UNDER,2015-05-21T00:00:00,2015,May,Thursday,21,141,22,2015-05-22T00:00:00,2015,May,Friday,22,142,14,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TAO-TAO,CARA,EL,1,BLK,1200.0,STOLEN,9120,"{'type': 'Point', 'coordinates': (-79.37781507, 43.65821091)}"
-9124,17303,GO-20179003654,THEFT UNDER - BICYCLE,2017-03-22T00:00:00,2017,March,Wednesday,22,81,7,2017-03-23T00:00:00,2017,March,Thursday,23,82,11,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,SINGLE SPEED,RG,1,WHI,500.0,STOLEN,9121,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-9125,20699,GO-2020686596,B&E,2020-04-07T00:00:00,2020,April,Tuesday,7,98,17,2020-04-09T00:00:00,2020,April,Thursday,9,100,9,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OTHER,,TO,0,BLK,,STOLEN,9122,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-9126,22793,GO-20209027103,THEFT UNDER - BICYCLE,2020-10-15T00:00:00,2020,October,Thursday,15,289,14,2020-10-20T00:00:00,2020,October,Tuesday,20,294,18,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GI,2016 GIANT ESCA,OT,20,BLK,807.0,STOLEN,9123,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-9127,20306,GO-2018977223,THEFT UNDER - BICYCLE,2018-05-27T00:00:00,2018,May,Sunday,27,147,18,2018-05-30T00:00:00,2018,May,Wednesday,30,150,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,NITRO XT,RG,21,BLUWHI,300.0,STOLEN,9124,"{'type': 'Point', 'coordinates': (-79.37906116, 43.66495458)}"
-9128,13909,GO-20151590902,THEFT UNDER,2015-09-16T00:00:00,2015,September,Wednesday,16,259,8,2015-09-16T00:00:00,2015,September,Wednesday,16,259,8,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,GT,,RG,9,BLU,900.0,STOLEN,9148,"{'type': 'Point', 'coordinates': (-79.37953592, 43.65629127)}"
-9129,12619,GO-20161835196,THEFT UNDER - BICYCLE,2016-10-15T00:00:00,2016,October,Saturday,15,289,4,2016-10-15T00:00:00,2016,October,Saturday,15,289,14,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,UNKNOWN,MT,21,RED,,STOLEN,9125,"{'type': 'Point', 'coordinates': (-79.38159626, 43.66440307)}"
-9130,10879,GO-20159011008,THEFT UNDER,2015-12-07T00:00:00,2015,December,Monday,7,341,16,2015-12-16T00:00:00,2015,December,Wednesday,16,350,13,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,7,,2000.0,STOLEN,9126,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-9131,22794,GO-20209027100,THEFT UNDER,2020-10-13T00:00:00,2020,October,Tuesday,13,287,13,2020-10-20T00:00:00,2020,October,Tuesday,20,294,18,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,SPECIALIZED,RG,21,DGR,250.0,STOLEN,9127,"{'type': 'Point', 'coordinates': (-79.37830693, 43.66628508)}"
-9132,17309,GO-20179004907,THEFT UNDER,2017-04-18T00:00:00,2017,April,Tuesday,18,108,10,2017-04-19T00:00:00,2017,April,Wednesday,19,109,10,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GI,LIV CRUISER,TO,3,BGE,600.0,STOLEN,9128,"{'type': 'Point', 'coordinates': (-79.37267618, 43.65234821)}"
-9133,20307,GO-20189016959,THEFT UNDER - BICYCLE,2017-12-03T00:00:00,2017,December,Sunday,3,337,16,2018-05-31T00:00:00,2018,May,Thursday,31,151,17,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,12,,1200.0,STOLEN,9129,"{'type': 'Point', 'coordinates': (-79.38007115, 43.66369728000001)}"
-9134,13871,GO-2015853845,THEFT UNDER,2015-05-21T00:00:00,2015,May,Thursday,21,141,22,2015-05-22T00:00:00,2015,May,Friday,22,142,14,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,XINRI,EM09,EL,1,SIL,1200.0,STOLEN,9130,"{'type': 'Point', 'coordinates': (-79.37781507, 43.65821091)}"
-9135,23598,GO-2015842388,THEFT UNDER,2015-05-20T00:00:00,2015,May,Wednesday,20,140,18,2015-05-20T00:00:00,2015,May,Wednesday,20,140,18,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,MOTORINO,EL,10,BLKGRY,2300.0,STOLEN,9131,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-9136,16924,GO-20171045138,THEFT UNDER,2017-04-01T00:00:00,2017,April,Saturday,1,91,9,2017-06-12T00:00:00,2017,June,Monday,12,163,14,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,SCOTT,,RG,10,,,STOLEN,9132,"{'type': 'Point', 'coordinates': (-79.37267618, 43.65234821)}"
-9137,12623,GO-20169012092,THEFT UNDER - BICYCLE,2016-10-09T00:00:00,2016,October,Sunday,9,283,21,2016-10-15T00:00:00,2016,October,Saturday,15,289,19,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,MA,KENTFIELD,RG,21,BLK,600.0,STOLEN,9133,"{'type': 'Point', 'coordinates': (-79.37872961, 43.654321780000004)}"
-9138,20713,GO-20209014453,THEFT UNDER,2020-05-31T00:00:00,2020,May,Sunday,31,152,10,2020-06-03T00:00:00,2020,June,Wednesday,3,155,10,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,21,DGR,0.0,STOLEN,9134,"{'type': 'Point', 'coordinates': (-79.38159626, 43.66440307)}"
-9139,10880,GO-20159011008,THEFT UNDER,2015-12-07T00:00:00,2015,December,Monday,7,341,16,2015-12-16T00:00:00,2015,December,Wednesday,16,350,13,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,EM,,EL,30,,1200.0,STOLEN,9135,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-9140,22795,GO-20209027486,THEFT UNDER,2020-10-23T00:00:00,2020,October,Friday,23,297,18,2020-10-23T00:00:00,2020,October,Friday,23,297,20,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RM,FUSION 40 (2019,MT,10,MRN,1200.0,STOLEN,9136,"{'type': 'Point', 'coordinates': (-79.38063454, 43.65577409)}"
-9141,17311,GO-2017690342,THEFT UNDER - BICYCLE,2017-04-19T00:00:00,2017,April,Wednesday,19,109,23,2017-04-19T00:00:00,2017,April,Wednesday,19,109,23,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,,OT,27,LBLOTH,450.0,STOLEN,9137,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-9142,20309,GO-20189017697,THEFT UNDER - BICYCLE,2018-06-06T00:00:00,2018,June,Wednesday,6,157,15,2018-06-07T00:00:00,2018,June,Thursday,7,158,13,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,JAKE,RC,10,ONG,700.0,STOLEN,9138,"{'type': 'Point', 'coordinates': (-79.37543679, 43.65246584)}"
-9143,13876,GO-2015906126,B&E,2015-05-22T00:00:00,2015,May,Friday,22,142,11,2015-05-30T00:00:00,2015,May,Saturday,30,150,19,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TREK,HYBRID,OT,21,BLK,800.0,STOLEN,9139,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-9144,16975,GO-20179014169,THEFT UNDER,2017-09-03T00:00:00,2017,September,Sunday,3,246,22,2017-09-06T00:00:00,2017,September,Wednesday,6,249,23,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GI,,OT,7,,500.0,STOLEN,9251,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-9145,23600,GO-2015865740,THEFT UNDER,2015-05-23T00:00:00,2015,May,Saturday,23,143,20,2015-05-24T00:00:00,2015,May,Sunday,24,144,14,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DIAMOND BACK,,MT,27,,1000.0,STOLEN,9140,"{'type': 'Point', 'coordinates': (-79.37872961, 43.654321780000004)}"
-9146,13880,GO-20159003722,THEFT UNDER,2015-06-17T00:00:00,2015,June,Wednesday,17,168,9,2015-06-18T00:00:00,2015,June,Thursday,18,169,11,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,APEX,MT,21,WHI,599.0,STOLEN,9141,"{'type': 'Point', 'coordinates': (-79.38565257, 43.66756225)}"
-9147,13885,GO-20151213472,THEFT UNDER,2015-07-17T00:00:00,2015,July,Friday,17,198,10,2015-07-17T00:00:00,2015,July,Friday,17,198,10,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,,OT,21,BLU,500.0,STOLEN,9142,"{'type': 'Point', 'coordinates': (-79.38048097, 43.66464717)}"
-9148,13889,GO-20159005040,THEFT UNDER,2015-07-26T00:00:00,2015,July,Sunday,26,207,4,2015-07-27T00:00:00,2015,July,Monday,27,208,11,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,HAWAII,RG,3,PNK,300.0,STOLEN,9143,"{'type': 'Point', 'coordinates': (-79.38521897, 43.66654709)}"
-9149,13893,GO-20159005306,THEFT UNDER,2015-08-03T00:00:00,2015,August,Monday,3,215,19,2015-08-04T00:00:00,2015,August,Tuesday,4,216,11,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,OT,ITALIA 500W,EL,37,BLU,1000.0,STOLEN,9144,"{'type': 'Point', 'coordinates': (-79.38501192, 43.66606363)}"
-9150,13894,GO-20159005336,THEFT UNDER,2015-08-04T00:00:00,2015,August,Tuesday,4,216,17,2015-08-04T00:00:00,2015,August,Tuesday,4,216,19,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,FO,3,RED,200.0,STOLEN,9145,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-9151,13902,GO-20159006144,THEFT UNDER,2015-08-21T00:00:00,2015,August,Friday,21,233,10,2015-08-22T00:00:00,2015,August,Saturday,22,234,1,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,OTHELLO,RC,14,ONG,1100.0,STOLEN,9146,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-9152,13905,GO-20159006545,THEFT UNDER,2015-08-27T00:00:00,2015,August,Thursday,27,239,10,2015-08-31T00:00:00,2015,August,Monday,31,243,10,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RA,SAFARI,RG,5,BLU,200.0,STOLEN,9147,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-9153,13918,GO-20151681152,THEFT UNDER,2015-09-18T00:00:00,2015,September,Friday,18,261,18,2015-09-29T00:00:00,2015,September,Tuesday,29,272,9,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIAL,PITCH,MT,24,BLK,600.0,STOLEN,9149,"{'type': 'Point', 'coordinates': (-79.37669194, 43.64940479)}"
-9154,13922,GO-20159008318,THEFT UNDER,2015-10-06T00:00:00,2015,October,Tuesday,6,279,18,2015-10-07T00:00:00,2015,October,Wednesday,7,280,19,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,KO,,MT,9,ONG,600.0,STOLEN,9150,"{'type': 'Point', 'coordinates': (-79.38188491, 43.65866815)}"
-9155,13923,GO-20151767212,THEFT UNDER,2015-10-10T00:00:00,2015,October,Saturday,10,283,14,2015-10-14T00:00:00,2015,October,Wednesday,14,287,9,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,NORCO,,OT,10,GRY,650.0,STOLEN,9151,"{'type': 'Point', 'coordinates': (-79.38201616, 43.6683485)}"
-9156,13924,GO-20151767212,THEFT UNDER,2015-10-10T00:00:00,2015,October,Saturday,10,283,14,2015-10-14T00:00:00,2015,October,Wednesday,14,287,9,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GIANT,ONE,OT,10,WHIBLU,1200.0,STOLEN,9152,"{'type': 'Point', 'coordinates': (-79.38201616, 43.6683485)}"
-9157,13932,GO-20159009712,THEFT UNDER,2015-10-21T00:00:00,2015,October,Wednesday,21,294,9,2015-11-13T00:00:00,2015,November,Friday,13,317,18,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,CA,SYNAPSE,RC,12,WHI,2937.0,STOLEN,9153,"{'type': 'Point', 'coordinates': (-79.37516377, 43.6518061)}"
-9158,13935,GO-20159009827,THEFT UNDER,2015-11-13T00:00:00,2015,November,Friday,13,317,15,2015-11-17T00:00:00,2015,November,Tuesday,17,321,12,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,AKSIUM,RC,10,BLK,350.0,STOLEN,9154,"{'type': 'Point', 'coordinates': (-79.37267618, 43.65234821)}"
-9159,13938,GO-20152101314,THEFT UNDER,2015-12-04T00:00:00,2015,December,Friday,4,338,22,2015-12-08T00:00:00,2015,December,Tuesday,8,342,9,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,MARIN OR MARINO,,OT,10,,,STOLEN,9155,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-9160,13939,GO-20159010977,THEFT UNDER,2015-12-15T00:00:00,2015,December,Tuesday,15,349,15,2015-12-15T00:00:00,2015,December,Tuesday,15,349,17,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,ENDURO,MT,27,BLK,1000.0,STOLEN,9156,"{'type': 'Point', 'coordinates': (-79.37424947, 43.653501610000006)}"
-9161,13945,GO-20169001673,THEFT UNDER - BICYCLE,2016-02-14T00:00:00,2016,February,Sunday,14,45,12,2016-02-23T00:00:00,2016,February,Tuesday,23,54,10,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,MOUNTAIN BIKE,MT,10,GRY,500.0,STOLEN,9157,"{'type': 'Point', 'coordinates': (-79.37267618, 43.65234821)}"
-9162,13950,GO-20169002150,THEFT UNDER - BICYCLE,2016-02-12T00:00:00,2016,February,Friday,12,43,8,2016-03-09T00:00:00,2016,March,Wednesday,9,69,11,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,SEVEN.THREE,RG,24,BLK,700.0,STOLEN,9158,"{'type': 'Point', 'coordinates': (-79.37827718, 43.65626242)}"
-9163,13952,GO-2016457286,THEFT UNDER,2016-03-16T00:00:00,2016,March,Wednesday,16,76,16,2016-03-16T00:00:00,2016,March,Wednesday,16,76,18,D51,Toronto,75,Church-Yonge Corridor (75),"Private Property Structure (Pool, Shed, Detached Garage)",Other,EMMO,,SC,0,BLK,1100.0,STOLEN,9159,"{'type': 'Point', 'coordinates': (-79.37953592, 43.65629127)}"
-9164,13953,GO-20169003004,THEFT UNDER,2016-04-01T00:00:00,2016,April,Friday,1,92,17,2016-04-02T00:00:00,2016,April,Saturday,2,93,16,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,UK,ROME,EL,1,BLU,3000.0,STOLEN,9160,"{'type': 'Point', 'coordinates': (-79.38607321, 43.66863079)}"
-9165,13961,GO-2016716481,THEFT UNDER,2016-04-27T00:00:00,2016,April,Wednesday,27,118,8,2016-04-27T00:00:00,2016,April,Wednesday,27,118,8,D51,Toronto,75,Church-Yonge Corridor (75),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,OTHER,,OT,10,PLE,200.0,STOLEN,9161,"{'type': 'Point', 'coordinates': (-79.38091931, 43.66572241)}"
-9166,13963,GO-2016771440,THEFT UNDER - BICYCLE,2016-05-05T00:00:00,2016,May,Thursday,5,126,14,2016-05-05T00:00:00,2016,May,Thursday,5,126,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FUJI,ABSOLUTE,OT,10,BLKRED,700.0,STOLEN,9162,"{'type': 'Point', 'coordinates': (-79.38565257, 43.66756225)}"
-9167,13967,GO-2016802493,THEFT UNDER,2016-03-01T00:00:00,2016,March,Tuesday,1,61,11,2016-05-10T00:00:00,2016,May,Tuesday,10,131,13,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,ALIEN,EL,0,BLKYEL,2000.0,STOLEN,9163,"{'type': 'Point', 'coordinates': (-79.38159626, 43.66440307)}"
-9168,17005,GO-20179019498,THEFT UNDER,2017-11-12T00:00:00,2017,November,Sunday,12,316,13,2017-11-13T00:00:00,2017,November,Monday,13,317,15,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,OT,AVANT H50,RC,9,GRN,900.0,STOLEN,9259,"{'type': 'Point', 'coordinates': (-79.37781507, 43.65821091)}"
-9169,13973,GO-20169005626,THEFT UNDER,2016-06-09T00:00:00,2016,June,Thursday,9,161,19,2016-06-11T00:00:00,2016,June,Saturday,11,163,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SC4,RG,21,,560.0,STOLEN,9164,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-9170,13974,GO-20169005697,THEFT UNDER,2016-06-13T00:00:00,2016,June,Monday,13,165,9,2016-06-13T00:00:00,2016,June,Monday,13,165,11,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,EM,,EL,32,PLE,0.0,STOLEN,9165,"{'type': 'Point', 'coordinates': (-79.38201616, 43.6683485)}"
-9171,13976,GO-20169006011,THEFT UNDER - BICYCLE,2016-06-14T00:00:00,2016,June,Tuesday,14,166,9,2016-06-19T00:00:00,2016,June,Sunday,19,171,11,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RG,21,BLK,600.0,STOLEN,9166,"{'type': 'Point', 'coordinates': (-79.37583535, 43.65495451)}"
-9172,13980,GO-20169006497,THEFT OF EBIKE UNDER $5000,2016-06-28T00:00:00,2016,June,Tuesday,28,180,1,2016-06-28T00:00:00,2016,June,Tuesday,28,180,22,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,THE PILOT,EL,35,OTH,2000.0,STOLEN,9167,"{'type': 'Point', 'coordinates': (-79.37900573, 43.66793407)}"
-9173,13987,GO-20161213407,THEFT OF EBIKE UNDER $5000,2016-06-29T00:00:00,2016,June,Wednesday,29,181,13,2016-07-11T00:00:00,2016,July,Monday,11,193,10,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,,EL,0,SIL,900.0,STOLEN,9168,"{'type': 'Point', 'coordinates': (-79.37512219, 43.65330838)}"
-9174,13995,GO-20169008680,THEFT UNDER - BICYCLE,2016-08-12T00:00:00,2016,August,Friday,12,225,23,2016-08-13T00:00:00,2016,August,Saturday,13,226,13,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,MOUNTAIN BIKE,MT,21,LBL,500.0,STOLEN,9169,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-9175,14009,GO-20169010048,THEFT UNDER - BICYCLE,2016-08-02T00:00:00,2016,August,Tuesday,2,215,11,2016-09-06T00:00:00,2016,September,Tuesday,6,250,13,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,NO,,MT,21,GRY,100.0,STOLEN,9170,"{'type': 'Point', 'coordinates': (-79.38154682, 43.65790792)}"
-9176,14015,GO-20169010427,THEFT UNDER,2016-09-11T00:00:00,2016,September,Sunday,11,255,2,2016-09-14T00:00:00,2016,September,Wednesday,14,258,14,D51,Toronto,75,Church-Yonge Corridor (75),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,OT,ROADBIKE,TO,21,GRY,400.0,STOLEN,9171,"{'type': 'Point', 'coordinates': (-79.3745937, 43.65047389)}"
-9177,14019,GO-20161719297,THEFT OF EBIKE UNDER $5000,2016-09-27T00:00:00,2016,September,Tuesday,27,271,13,2016-09-27T00:00:00,2016,September,Tuesday,27,271,14,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,EL,0,,1500.0,STOLEN,9172,"{'type': 'Point', 'coordinates': (-79.37758587, 43.65456447)}"
-9178,14022,GO-20169011378,THEFT UNDER - BICYCLE,2016-09-29T00:00:00,2016,September,Thursday,29,273,17,2016-09-30T00:00:00,2016,September,Friday,30,274,19,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,5,GLD,0.0,STOLEN,9173,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-9179,14024,GO-20169012019,THEFT UNDER - BICYCLE,2016-10-13T00:00:00,2016,October,Thursday,13,287,16,2016-10-13T00:00:00,2016,October,Thursday,13,287,22,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,TRK,RG,1,BRZ,400.0,STOLEN,9174,"{'type': 'Point', 'coordinates': (-79.37573379, 43.65316827000001)}"
-9180,14028,GO-20169012940,THEFT UNDER - BICYCLE,2016-10-30T00:00:00,2016,October,Sunday,30,304,1,2016-11-03T00:00:00,2016,November,Thursday,3,308,12,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,SU,,RG,10,,0.0,STOLEN,9175,"{'type': 'Point', 'coordinates': (-79.38201616, 43.6683485)}"
-9181,14034,GO-20162078868,THEFT UNDER - BICYCLE,2016-11-22T00:00:00,2016,November,Tuesday,22,327,17,2016-11-23T00:00:00,2016,November,Wednesday,23,328,8,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,,MT,10,,300.0,STOLEN,9176,"{'type': 'Point', 'coordinates': (-79.37758587, 43.65456447)}"
-9182,14038,GO-20162174000,THEFT UNDER - BICYCLE,2016-12-08T00:00:00,2016,December,Thursday,8,343,5,2016-12-08T00:00:00,2016,December,Thursday,8,343,5,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OTHER,,OT,0,BLK,,STOLEN,9177,"{'type': 'Point', 'coordinates': (-79.37667701, 43.66241871)}"
-9183,14039,GO-20169014604,THEFT UNDER - BICYCLE,2016-12-08T00:00:00,2016,December,Thursday,8,343,5,2016-12-13T00:00:00,2016,December,Tuesday,13,348,16,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,MA,LARKSPUR CS2,MT,8,BLK,539.0,STOLEN,9178,"{'type': 'Point', 'coordinates': (-79.37667701, 43.66241871)}"
-9184,14044,GO-20179001034,THEFT UNDER - BICYCLE,2017-01-20T00:00:00,2017,January,Friday,20,20,8,2017-01-23T00:00:00,2017,January,Monday,23,23,11,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,TR,3900,MT,24,BLU,650.0,STOLEN,9179,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-9185,14045,GO-20179001850,THEFT UNDER - BICYCLE,2016-10-01T00:00:00,2016,October,Saturday,1,275,11,2017-02-12T00:00:00,2017,February,Sunday,12,43,11,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,CYCLECROSS,RC,10,OTH,1300.0,STOLEN,9180,"{'type': 'Point', 'coordinates': (-79.38159626, 43.66440307)}"
-9186,14046,GO-20179001850,THEFT UNDER - BICYCLE,2016-10-01T00:00:00,2016,October,Saturday,1,275,11,2017-02-12T00:00:00,2017,February,Sunday,12,43,11,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,NO,,RC,12,RED,900.0,STOLEN,9181,"{'type': 'Point', 'coordinates': (-79.38159626, 43.66440307)}"
-9187,14057,GO-20179005598,THEFT UNDER - BICYCLE,2017-05-02T00:00:00,2017,May,Tuesday,2,122,10,2017-05-02T00:00:00,2017,May,Tuesday,2,122,16,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,OT,21,RED,600.0,STOLEN,9182,"{'type': 'Point', 'coordinates': (-79.37781507, 43.65821091)}"
-9188,14058,GO-20179005695,THEFT UNDER - BICYCLE,2017-05-03T00:00:00,2017,May,Wednesday,3,123,8,2017-05-03T00:00:00,2017,May,Wednesday,3,123,22,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,OT,,RG,50,BLK,850.0,STOLEN,9183,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-9189,14060,GO-20179006315,THEFT UNDER - BICYCLE,2017-05-13T00:00:00,2017,May,Saturday,13,133,18,2017-05-15T00:00:00,2017,May,Monday,15,135,9,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,1,ONG,700.0,STOLEN,9184,"{'type': 'Point', 'coordinates': (-79.37215317, 43.64913066)}"
-9190,14350,GO-20149002783,THEFT UNDER,2014-04-11T00:00:00,2014,April,Friday,11,101,17,2014-04-11T00:00:00,2014,April,Friday,11,101,23,D51,Toronto,75,Church-Yonge Corridor (75),"Open Areas (Lakes, Parks, Rivers)",Outside,TR,7.2 FX WSD (201,RG,8,SIL,600.0,STOLEN,9185,"{'type': 'Point', 'coordinates': (-79.37943497, 43.65603477)}"
-9191,14352,GO-20141926054,THEFT UNDER,2014-04-20T00:00:00,2014,April,Sunday,20,110,3,2014-04-20T00:00:00,2014,April,Sunday,20,110,14,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,SUPERCYCLE,TEMPO,OT,15,SIL,300.0,STOLEN,9186,"{'type': 'Point', 'coordinates': (-79.38007115, 43.66369728000001)}"
-9192,14354,GO-20142020530,THEFT UNDER,2014-05-04T00:00:00,2014,May,Sunday,4,124,22,2014-05-05T00:00:00,2014,May,Monday,5,125,15,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RALEIGH,,OT,0,BLK,150.0,STOLEN,9187,"{'type': 'Point', 'coordinates': (-79.37900573, 43.66793407)}"
-9193,14355,GO-20142020530,THEFT UNDER,2014-05-04T00:00:00,2014,May,Sunday,4,124,22,2014-05-05T00:00:00,2014,May,Monday,5,125,15,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MCKINELY,,OT,0,BLK,150.0,STOLEN,9188,"{'type': 'Point', 'coordinates': (-79.37900573, 43.66793407)}"
-9194,14356,GO-20149003193,THEFT UNDER,2014-05-06T00:00:00,2014,May,Tuesday,6,126,8,2014-05-06T00:00:00,2014,May,Tuesday,6,126,17,D51,Toronto,75,Church-Yonge Corridor (75),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,OLYMPIC,RC,10,DBL,350.0,STOLEN,9189,"{'type': 'Point', 'coordinates': (-79.37691204, 43.65291764)}"
-9195,14359,GO-20142072716,THEFT UNDER,2014-05-12T00:00:00,2014,May,Monday,12,132,18,2014-05-13T00:00:00,2014,May,Tuesday,13,133,17,D51,Toronto,75,Church-Yonge Corridor (75),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,EBIKE,,EL,3,WHI,900.0,STOLEN,9190,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-9196,14360,GO-20149003375,THEFT UNDER,2014-05-13T00:00:00,2014,May,Tuesday,13,133,16,2014-05-15T00:00:00,2014,May,Thursday,15,135,16,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CHALLENGER,MT,18,BLK,120.0,STOLEN,9191,"{'type': 'Point', 'coordinates': (-79.37953592, 43.65629127)}"
-9197,14361,GO-20149003425,THEFT UNDER,2014-05-16T00:00:00,2014,May,Friday,16,136,8,2014-05-18T00:00:00,2014,May,Sunday,18,138,18,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,TREK 720,TO,24,BLK,500.0,STOLEN,9192,"{'type': 'Point', 'coordinates': (-79.37872961, 43.654321780000004)}"
-9198,14363,GO-20142165022,THEFT UNDER,2014-05-27T00:00:00,2014,May,Tuesday,27,147,18,2014-05-27T00:00:00,2014,May,Tuesday,27,147,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,VIENNA 72V,EL,1,BLK,1478.0,STOLEN,9193,"{'type': 'Point', 'coordinates': (-79.3811853, 43.65703802)}"
-9199,14365,GO-20142225737,THEFT UNDER,2014-06-02T00:00:00,2014,June,Monday,2,153,9,2014-06-05T00:00:00,2014,June,Thursday,5,156,10,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,H5,EL,1,BLK,1100.0,STOLEN,9194,"{'type': 'Point', 'coordinates': (-79.37720552, 43.6506687)}"
-9200,23726,GO-20169008452,THEFT UNDER,2016-08-08T00:00:00,2016,August,Monday,8,221,2,2016-08-09T00:00:00,2016,August,Tuesday,9,222,14,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,CC,,MT,30,GRY,0.0,STOLEN,9412,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-9201,14366,GO-20149003843,THEFT UNDER,2014-06-04T00:00:00,2014,June,Wednesday,4,155,20,2014-06-05T00:00:00,2014,June,Thursday,5,156,19,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,EDGE (UNMARKED),RG,1,BLK,0.0,STOLEN,9195,"{'type': 'Point', 'coordinates': (-79.38491403, 43.66584039)}"
-9202,14367,GO-20149003844,THEFT UNDER,2014-06-05T00:00:00,2014,June,Thursday,5,156,7,2014-06-05T00:00:00,2014,June,Thursday,5,156,19,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,TDR317Z BLACK #,EL,30,BLK,1000.0,STOLEN,9196,"{'type': 'Point', 'coordinates': (-79.37583535, 43.65495451)}"
-9203,14376,GO-20149004332,THEFT UNDER,2014-06-22T00:00:00,2014,June,Sunday,22,173,6,2014-06-23T00:00:00,2014,June,Monday,23,174,9,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CROSSTRAIL SPOR,OT,9,BRZ,940.0,STOLEN,9197,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-9204,14378,GO-20149004359,THEFT UNDER,2014-06-22T00:00:00,2014,June,Sunday,22,173,11,2014-06-23T00:00:00,2014,June,Monday,23,174,13,D51,Toronto,75,Church-Yonge Corridor (75),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,OT,CRYSTAL WHITE,EL,32,WHI,4000.0,STOLEN,9198,"{'type': 'Point', 'coordinates': (-79.37667701, 43.66241871)}"
-9205,14381,GO-20149004543,THEFT UNDER,2014-06-27T00:00:00,2014,June,Friday,27,178,18,2014-06-28T00:00:00,2014,June,Saturday,28,179,16,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,5.1,OT,1,BLK,1500.0,STOLEN,9199,"{'type': 'Point', 'coordinates': (-79.37783798, 43.66217202)}"
-9206,14385,GO-20149004694,THEFT UNDER,2014-07-02T00:00:00,2014,July,Wednesday,2,183,18,2014-07-04T00:00:00,2014,July,Friday,4,185,5,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,NO,,RG,21,,,STOLEN,9200,"{'type': 'Point', 'coordinates': (-79.37907575, 43.66125894)}"
-9207,14387,GO-20149004730,PROPERTY - LOST,2014-07-10T00:00:00,2014,July,Thursday,10,191,8,2014-07-10T00:00:00,2014,July,Thursday,10,191,17,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,OT,"HIGH PEAK 26""""",RG,5,BLK,98.0,UNKNOWN,9201,"{'type': 'Point', 'coordinates': (-79.37781507, 43.65821091)}"
-9208,14388,GO-20149004733,THEFT UNDER,2014-06-29T00:00:00,2014,June,Sunday,29,180,12,2014-07-06T00:00:00,2014,July,Sunday,6,187,16,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RA,WOMENS ROUTE 5.,OT,8,WHI,660.0,STOLEN,9202,"{'type': 'Point', 'coordinates': (-79.38612041000002, 43.66874221)}"
-9209,14391,GO-20142527517,THEFT UNDER,2014-07-14T00:00:00,2014,July,Monday,14,195,18,2014-07-19T00:00:00,2014,July,Saturday,19,200,6,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,HARD ROCK,MT,16,RED,600.0,STOLEN,9203,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-9210,14393,GO-20149005264,THEFT UNDER,2014-07-23T00:00:00,2014,July,Wednesday,23,204,9,2014-07-23T00:00:00,2014,July,Wednesday,23,204,21,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,,RG,3,BLU,200.0,STOLEN,9204,"{'type': 'Point', 'coordinates': (-79.37543679, 43.65246584)}"
-9211,14395,GO-20142560124,THEFT UNDER,2014-07-04T00:00:00,2014,July,Friday,4,185,9,2014-07-24T00:00:00,2014,July,Thursday,24,205,5,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,7.0 FX,RG,21,GRY,,STOLEN,9205,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-9212,14400,GO-20149005632,THEFT UNDER,2014-08-04T00:00:00,2014,August,Monday,4,216,13,2014-08-04T00:00:00,2014,August,Monday,4,216,22,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,7,LGR,540.0,STOLEN,9206,"{'type': 'Point', 'coordinates': (-79.37900573, 43.66793407)}"
-9213,14402,GO-20149005732,THEFT UNDER,2014-08-07T00:00:00,2014,August,Thursday,7,219,20,2014-08-08T00:00:00,2014,August,Friday,8,220,11,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KH,KHS URBAN SOUL,RG,1,BLK,500.0,STOLEN,9207,"{'type': 'Point', 'coordinates': (-79.38091931, 43.66572241)}"
-9214,14405,GO-20149006059,THEFT UNDER,2014-08-20T00:00:00,2014,August,Wednesday,20,232,8,2014-08-20T00:00:00,2014,August,Wednesday,20,232,17,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,7005,RC,21,BLU,200.0,STOLEN,9208,"{'type': 'Point', 'coordinates': (-79.37643241, 43.65085158000001)}"
-9215,14408,GO-20149006671,THEFT UNDER,2014-09-03T00:00:00,2014,September,Wednesday,3,246,23,2014-09-08T00:00:00,2014,September,Monday,8,251,9,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,CC,PRODUCT #71-136,TO,18,BLU,440.0,STOLEN,9209,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-9216,14410,GO-20149006816,THEFT UNDER,2014-09-11T00:00:00,2014,September,Thursday,11,254,19,2014-09-11T00:00:00,2014,September,Thursday,11,254,23,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RM,RC30,RG,27,WHI,650.0,STOLEN,9210,"{'type': 'Point', 'coordinates': (-79.3811853, 43.65703802)}"
-9217,14415,GO-20142910672,THEFT UNDER,2014-09-14T00:00:00,2014,September,Sunday,14,257,18,2014-09-14T00:00:00,2014,September,Sunday,14,257,21,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,AMEGO,STREAM ION,EL,1,BLK,1200.0,STOLEN,9211,"{'type': 'Point', 'coordinates': (-79.37827718, 43.65626242)}"
-9218,14423,GO-20149007645,THEFT UNDER,2014-10-13T00:00:00,2014,October,Monday,13,286,13,2014-10-17T00:00:00,2014,October,Friday,17,290,15,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,12,BLU,400.0,STOLEN,9212,"{'type': 'Point', 'coordinates': (-79.38159626, 43.66440307)}"
-9219,14425,GO-20149007941,THEFT UNDER,2014-10-25T00:00:00,2014,October,Saturday,25,298,14,2014-11-01T00:00:00,2014,November,Saturday,1,305,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MA,MOUNT VISION XC,MT,21,BLK,4000.0,STOLEN,9213,"{'type': 'Point', 'coordinates': (-79.3771082, 43.65650088)}"
-9220,14431,GO-20159000070,THEFT UNDER,2015-01-04T00:00:00,2015,January,Sunday,4,4,18,2015-01-05T00:00:00,2015,January,Monday,5,5,13,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,IN,INIFINITY,MT,21,RED,350.0,STOLEN,9214,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-9221,14440,GO-20159002026,THEFT UNDER,2015-04-17T00:00:00,2015,April,Friday,17,107,17,2015-04-18T00:00:00,2015,April,Saturday,18,108,16,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,725,OT,1,BLK,1000.0,STOLEN,9215,"{'type': 'Point', 'coordinates': (-79.37424947, 43.653501610000006)}"
-9222,14442,GO-20159002136,THEFT UNDER,2015-04-20T00:00:00,2015,April,Monday,20,110,15,2015-04-21T00:00:00,2015,April,Tuesday,21,111,16,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,SU,,MT,21,WHI,180.0,STOLEN,9216,"{'type': 'Point', 'coordinates': (-79.38159626, 43.66440307)}"
-9223,14444,GO-2015683688,THEFT UNDER,2015-04-24T00:00:00,2015,April,Friday,24,114,17,2015-04-25T00:00:00,2015,April,Saturday,25,115,10,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RALEIGH,DETOUR,TO,21,BLU,320.0,STOLEN,9217,"{'type': 'Point', 'coordinates': (-79.37941202, 43.66889376)}"
-9224,14445,GO-20159002368,THEFT UNDER,2015-04-30T00:00:00,2015,April,Thursday,30,120,16,2015-05-01T00:00:00,2015,May,Friday,1,121,10,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CROSSROAD SPORT,RG,24,LGR,629.0,STOLEN,9218,"{'type': 'Point', 'coordinates': (-79.38581622, 43.66799576)}"
-9225,14446,GO-2015728767,THEFT UNDER,2015-04-29T00:00:00,2015,April,Wednesday,29,119,15,2015-05-02T00:00:00,2015,May,Saturday,2,122,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RALEIGH,ROAD,RG,10,DBL,150.0,STOLEN,9219,"{'type': 'Point', 'coordinates': (-79.38091931, 43.66572241)}"
-9226,14447,GO-20159002571,THEFT UNDER,2015-05-07T00:00:00,2015,May,Thursday,7,127,8,2015-05-09T00:00:00,2015,May,Saturday,9,129,8,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,21,RED,250.0,STOLEN,9220,"{'type': 'Point', 'coordinates': (-79.37805214, 43.6526818)}"
-9227,15648,GO-20199022887,THEFT UNDER,2019-07-18T00:00:00,2019,July,Thursday,18,199,18,2019-07-19T00:00:00,2019,July,Friday,19,200,10,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,TR,,MT,18,LGR,0.0,STOLEN,9221,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-9228,15653,GO-20199023152,THEFT UNDER,2019-07-19T00:00:00,2019,July,Friday,19,200,19,2019-07-21T00:00:00,2019,July,Sunday,21,202,19,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,18,GRY,700.0,STOLEN,9222,"{'type': 'Point', 'coordinates': (-79.38581622, 43.66799576)}"
-9229,15654,GO-20199023159,THEFT UNDER - BICYCLE,2019-07-21T00:00:00,2019,July,Sunday,21,202,18,2019-07-21T00:00:00,2019,July,Sunday,21,202,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,6KU FIXED GEAR,RG,25,RED,280.0,STOLEN,9223,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-9230,15655,GO-20199023601,THEFT UNDER,2019-07-24T00:00:00,2019,July,Wednesday,24,205,13,2019-07-24T00:00:00,2019,July,Wednesday,24,205,19,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GI,TALON 29ER,MT,27,BLK,1100.0,STOLEN,9224,"{'type': 'Point', 'coordinates': (-79.37639111, 43.64874921)}"
-9231,15665,GO-20191473313,THEFT UNDER - BICYCLE,2019-08-04T00:00:00,2019,August,Sunday,4,216,21,2019-08-08T00:00:00,2019,August,Thursday,8,220,13,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FELT,,MT,27,DBLWHI,1500.0,STOLEN,9225,"{'type': 'Point', 'coordinates': (-79.37758587, 43.65456447)}"
-9232,15666,GO-20199025387,THEFT UNDER,2019-05-03T00:00:00,2019,May,Friday,3,123,6,2019-08-08T00:00:00,2019,August,Thursday,8,220,15,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,10,BLK,2000.0,STOLEN,9226,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-9233,15668,GO-20199025708,THEFT UNDER,2019-08-10T00:00:00,2019,August,Saturday,10,222,13,2019-08-10T00:00:00,2019,August,Saturday,10,222,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CTM,MT,21,GRY,400.0,STOLEN,9227,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-9234,15669,GO-20199025789,THEFT UNDER,2019-08-02T00:00:00,2019,August,Friday,2,214,14,2019-08-12T00:00:00,2019,August,Monday,12,224,0,D51,Toronto,75,Church-Yonge Corridor (75),Schools During Un-Supervised Activity,Educational,SU,,MT,20,GRY,220.0,STOLEN,9228,"{'type': 'Point', 'coordinates': (-79.38411783, 43.66390399)}"
-9235,15671,GO-20199026277,THEFT UNDER,2019-08-14T00:00:00,2019,August,Wednesday,14,226,22,2019-08-15T00:00:00,2019,August,Thursday,15,227,0,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,FJ,FUJI TRACK,RG,1,BLK,900.0,STOLEN,9229,"{'type': 'Point', 'coordinates': (-79.38007115, 43.66369728000001)}"
-9236,15676,GO-20191586871,B&E,2019-08-13T00:00:00,2019,August,Tuesday,13,225,17,2019-08-21T00:00:00,2019,August,Wednesday,21,233,16,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TREK,FX2,OT,24,BLK,818.0,STOLEN,9230,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-9237,15680,GO-20199027688,THEFT FROM MOTOR VEHICLE UNDER,2019-08-24T00:00:00,2019,August,Saturday,24,236,8,2019-08-26T00:00:00,2019,August,Monday,26,238,11,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,I DO NOT REMEMB,RC,12,BGE,2000.0,STOLEN,9231,"{'type': 'Point', 'coordinates': (-79.37866195000001, 43.66712397)}"
-9238,15690,GO-20199028686,THEFT UNDER,2019-09-03T00:00:00,2019,September,Tuesday,3,246,19,2019-09-04T00:00:00,2019,September,Wednesday,4,247,9,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,GI,ESCAPE 0,RG,10,,500.0,STOLEN,9232,"{'type': 'Point', 'coordinates': (-79.37700237, 43.66017519)}"
-9239,15695,GO-20199029409,THEFT UNDER,2019-09-06T00:00:00,2019,September,Friday,6,249,9,2019-09-10T00:00:00,2019,September,Tuesday,10,253,12,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,OT,,RC,21,BLK,0.0,STOLEN,9233,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-9240,15704,GO-20191795897,THEFT OF EBIKE UNDER $5000,2019-09-18T00:00:00,2019,September,Wednesday,18,261,9,2019-09-18T00:00:00,2019,September,Wednesday,18,261,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,ELITE,EL,21,SILBLK,2500.0,STOLEN,9234,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-9241,16928,GO-20179008077,THEFT UNDER - BICYCLE,2017-06-14T00:00:00,2017,June,Wednesday,14,165,7,2017-06-14T00:00:00,2017,June,Wednesday,14,165,13,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,CRUISER 6,RG,6,BLK,500.0,STOLEN,9235,"{'type': 'Point', 'coordinates': (-79.3749313, 43.65514877)}"
-9242,22796,GO-20202032948,B&E,2020-10-13T00:00:00,2020,October,Tuesday,13,287,18,2020-10-26T00:00:00,2020,October,Monday,26,300,19,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,SUPERCYCLE,SOLARIS,MT,21,BLK,,STOLEN,9236,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-9243,10909,GO-20169000118,THEFT UNDER,2015-12-01T00:00:00,2015,December,Tuesday,1,335,15,2016-01-04T00:00:00,2016,January,Monday,4,4,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,10,BLK,1400.0,STOLEN,9237,"{'type': 'Point', 'coordinates': (-79.37667701, 43.66241871)}"
-9244,17312,GO-20179005103,THEFT UNDER,2017-04-22T00:00:00,2017,April,Saturday,22,112,19,2017-04-22T00:00:00,2017,April,Saturday,22,112,21,D51,Toronto,75,Church-Yonge Corridor (75),Unknown,Other,CC,KROSSPORT,MT,8,,500.0,STOLEN,9238,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-9245,16933,GO-20179008844,THEFT UNDER - BICYCLE,2017-06-24T00:00:00,2017,June,Saturday,24,175,18,2017-06-25T00:00:00,2017,June,Sunday,25,176,0,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RC,12,,1200.0,STOLEN,9239,"{'type': 'Point', 'coordinates': (-79.37866195000001, 43.66712397)}"
-9246,16934,GO-20179008893,THEFT UNDER - BICYCLE,2017-06-26T00:00:00,2017,June,Monday,26,177,0,2017-06-26T00:00:00,2017,June,Monday,26,177,0,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,BI,ROAD BIKE,OT,1,BLK,300.0,STOLEN,9240,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-9247,20319,GO-20189019676,THEFT UNDER - BICYCLE,2018-06-18T00:00:00,2018,June,Monday,18,169,17,2018-06-21T00:00:00,2018,June,Thursday,21,172,16,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,FIXIE,OT,1,WHI,260.0,STOLEN,9241,"{'type': 'Point', 'coordinates': (-79.38245382, 43.66941071)}"
-9248,16935,GO-20179009056,THEFT UNDER - BICYCLE,2017-06-27T00:00:00,2017,June,Tuesday,27,178,8,2017-06-27T00:00:00,2017,June,Tuesday,27,178,22,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,21,BLU,390.0,STOLEN,9242,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-9249,16951,GO-20179010335,THEFT UNDER,2017-07-14T00:00:00,2017,July,Friday,14,195,22,2017-07-15T00:00:00,2017,July,Saturday,15,196,2,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,MT,24,SIL,500.0,STOLEN,9243,"{'type': 'Point', 'coordinates': (-79.37830693, 43.66628508)}"
-9250,16952,GO-20179010380,THEFT UNDER - BICYCLE,2017-07-14T00:00:00,2017,July,Friday,14,195,18,2017-07-17T00:00:00,2017,July,Monday,17,198,12,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RG,12,MRN,500.0,STOLEN,9244,"{'type': 'Point', 'coordinates': (-79.37424947, 43.653501610000006)}"
-9251,16954,GO-20171307949,THEFT UNDER - BICYCLE,2017-07-20T00:00:00,2017,July,Thursday,20,201,23,2017-07-21T00:00:00,2017,July,Friday,21,202,9,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EVO,ROAD BIKE,OT,21,BLK,300.0,STOLEN,9245,"{'type': 'Point', 'coordinates': (-79.38132262, 43.6667026)}"
-9252,16955,GO-20179010859,THEFT UNDER - BICYCLE,2017-07-22T00:00:00,2017,July,Saturday,22,203,9,2017-07-23T00:00:00,2017,July,Sunday,23,204,9,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,MT,21,BLU,250.0,STOLEN,9246,"{'type': 'Point', 'coordinates': (-79.38159626, 43.66440307)}"
-9253,16970,GO-20179012961,THEFT UNDER,2017-08-21T00:00:00,2017,August,Monday,21,233,12,2017-08-21T00:00:00,2017,August,Monday,21,233,17,D51,Toronto,75,Church-Yonge Corridor (75),Schools During Supervised Activity,Educational,IN,,RG,30,MRN,250.0,STOLEN,9247,"{'type': 'Point', 'coordinates': (-79.38159830000001, 43.66737287)}"
-9254,16971,GO-20179013370,THEFT UNDER,2017-08-25T00:00:00,2017,August,Friday,25,237,18,2017-08-25T00:00:00,2017,August,Friday,25,237,19,D51,Toronto,75,Church-Yonge Corridor (75),"Open Areas (Lakes, Parks, Rivers)",Outside,RA,2015,RG,1,BLK,420.0,STOLEN,9248,"{'type': 'Point', 'coordinates': (-79.37943497, 43.65603477)}"
-9255,16972,GO-20179013393,THEFT UNDER - BICYCLE,2017-08-24T00:00:00,2017,August,Thursday,24,236,14,2017-08-26T00:00:00,2017,August,Saturday,26,238,12,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,KO,,RG,8,DGR,810.0,STOLEN,9249,"{'type': 'Point', 'coordinates': (-79.37652171000002, 43.65664882)}"
-9256,16973,GO-20179013730,THEFT UNDER,2017-08-28T00:00:00,2017,August,Monday,28,240,10,2017-08-31T00:00:00,2017,August,Thursday,31,243,2,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ORMA HT 2015,MT,21,BLK,269.0,STOLEN,9250,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-9257,16976,GO-20171627066,THEFT UNDER - BICYCLE,2017-08-26T00:00:00,2017,August,Saturday,26,238,13,2017-09-08T00:00:00,2017,September,Friday,8,251,11,D51,Toronto,75,Church-Yonge Corridor (75),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,GIANT,TCR,TO,16,WHI,800.0,STOLEN,9252,"{'type': 'Point', 'coordinates': (-79.38159626, 43.66440307)}"
-9258,16979,GO-20179014421,THEFT UNDER - BICYCLE,2017-09-09T00:00:00,2017,September,Saturday,9,252,9,2017-09-10T00:00:00,2017,September,Sunday,10,253,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,THE SUPERCYCLE,MT,18,PLE,130.0,STOLEN,9253,"{'type': 'Point', 'coordinates': (-79.37452691, 43.65706649)}"
-9259,16986,GO-20171759722,THEFT OF EBIKE UNDER $5000,2017-09-20T00:00:00,2017,September,Wednesday,20,263,18,2017-09-28T00:00:00,2017,September,Thursday,28,271,9,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,DAYMAK PARIS,EL,1,WHI,2000.0,STOLEN,9254,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-9260,23601,GO-2015870053,THEFT UNDER,2015-05-24T00:00:00,2015,May,Sunday,24,144,12,2015-05-25T00:00:00,2015,May,Monday,25,145,9,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,RG,1,WHI,,STOLEN,9255,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-9261,16991,GO-20179016858,THEFT UNDER,2017-10-09T00:00:00,2017,October,Monday,9,282,22,2017-10-10T00:00:00,2017,October,Tuesday,10,283,12,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,OT,CX,OT,21,WHI,1300.0,STOLEN,9256,"{'type': 'Point', 'coordinates': (-79.37971563, 43.66282598)}"
-9262,16998,GO-20179017804,THEFT UNDER - BICYCLE,2017-10-20T00:00:00,2017,October,Friday,20,293,13,2017-10-21T00:00:00,2017,October,Saturday,21,294,13,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KH,,MT,10,GRY,500.0,STOLEN,9257,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-9263,17004,GO-20172047670,THEFT UNDER - BICYCLE,2017-11-12T00:00:00,2017,November,Sunday,12,316,10,2017-11-12T00:00:00,2017,November,Sunday,12,316,12,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,UNKNOWN,RG,1,GRY,300.0,STOLEN,9258,"{'type': 'Point', 'coordinates': (-79.37758587, 43.65456447)}"
-9264,8914,GO-20149006998,THEFT UNDER,2014-07-03T00:00:00,2014,July,Thursday,3,184,13,2014-07-03T00:00:00,2014,July,Thursday,3,184,13,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,JACK,MT,7,BLK,600.0,STOLEN,10382,"{'type': 'Point', 'coordinates': (-79.38338195, 43.66213624)}"
-9265,17007,GO-20179019989,THEFT UNDER - BICYCLE,2017-11-16T00:00:00,2017,November,Thursday,16,320,15,2017-11-19T00:00:00,2017,November,Sunday,19,323,12,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,RA,RAMPAR,OT,10,BLU,160.0,STOLEN,9260,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-9266,17010,GO-20179020768,THEFT UNDER - BICYCLE,2017-11-26T00:00:00,2017,November,Sunday,26,330,13,2017-11-28T00:00:00,2017,November,Tuesday,28,332,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,FX 2 20,RG,20,BLK,600.0,STOLEN,9261,"{'type': 'Point', 'coordinates': (-79.37781507, 43.65821091)}"
-9267,17011,GO-20179020868,THEFT UNDER - BICYCLE,2017-11-27T00:00:00,2017,November,Monday,27,331,12,2017-11-29T00:00:00,2017,November,Wednesday,29,333,16,D51,Toronto,75,Church-Yonge Corridor (75),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,,RG,24,BLU,800.0,STOLEN,9262,"{'type': 'Point', 'coordinates': (-79.38581622, 43.66799576)}"
-9268,17012,GO-20179020903,THEFT UNDER - BICYCLE,2017-11-29T00:00:00,2017,November,Wednesday,29,333,5,2017-11-29T00:00:00,2017,November,Wednesday,29,333,20,D51,Toronto,75,Church-Yonge Corridor (75),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,RM,HAMMER RACE,MT,8,RED,1000.0,STOLEN,9263,"{'type': 'Point', 'coordinates': (-79.37691204, 43.65291764)}"
-9269,17013,GO-20179021179,THEFT UNDER - BICYCLE,2017-10-20T00:00:00,2017,October,Friday,20,293,18,2017-12-03T00:00:00,2017,December,Sunday,3,337,10,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,BI,,RG,7,RED,70.0,STOLEN,9264,"{'type': 'Point', 'coordinates': (-79.37583535, 43.65495451)}"
-9270,17016,GO-20173266012,B&E,2017-12-16T00:00:00,2017,December,Saturday,16,350,23,2017-12-26T00:00:00,2017,December,Tuesday,26,360,6,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,OT,10,,300.0,STOLEN,9265,"{'type': 'Point', 'coordinates': (-79.3738772, 43.65536132)}"
-9271,17019,GO-2018528020,B&E,2018-03-22T00:00:00,2018,March,Thursday,22,81,1,2018-03-23T00:00:00,2018,March,Friday,23,82,17,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,MATE,E BIKE,EL,1,RED,2000.0,STOLEN,9266,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-9272,23731,GO-20161423574,THEFT UNDER,2016-08-12T00:00:00,2016,August,Friday,12,225,16,2016-08-12T00:00:00,2016,August,Friday,12,225,16,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,CANONDALE,,MT,21,BLU,75.0,STOLEN,9413,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-9273,17023,GO-20189012496,THEFT UNDER - BICYCLE,2018-04-22T00:00:00,2018,April,Sunday,22,112,10,2018-04-23T00:00:00,2018,April,Monday,23,113,10,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,13 RAPID 2 S,RG,10,SIL,899.0,STOLEN,9267,"{'type': 'Point', 'coordinates': (-79.38048097, 43.66464717)}"
-9274,17026,GO-20189014282,THEFT UNDER - BICYCLE,2018-05-08T00:00:00,2018,May,Tuesday,8,128,19,2018-05-09T00:00:00,2018,May,Wednesday,9,129,12,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,OT,SPORT,RG,21,BLK,0.0,STOLEN,9268,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-9275,17029,GO-20189015164,THEFT UNDER - BICYCLE,2018-05-16T00:00:00,2018,May,Wednesday,16,136,0,2018-05-16T00:00:00,2018,May,Wednesday,16,136,13,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,15,RED,0.0,STOLEN,9269,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-9276,17034,GO-20189016438,THEFT UNDER - BICYCLE,2018-05-27T00:00:00,2018,May,Sunday,27,147,18,2018-05-27T00:00:00,2018,May,Sunday,27,147,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,TREK FX HYBRID,MT,18,BLK,600.0,STOLEN,9270,"{'type': 'Point', 'coordinates': (-79.37410556, 43.64926232)}"
-9277,17039,GO-20189016707,THEFT UNDER - BICYCLE,2018-05-24T00:00:00,2018,May,Thursday,24,144,22,2018-05-29T00:00:00,2018,May,Tuesday,29,149,17,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,18 DS 3 BLK 21,MT,27,BLK,1300.0,STOLEN,9271,"{'type': 'Point', 'coordinates': (-79.37691204, 43.65291764)}"
-9278,17040,GO-20189016955,THEFT UNDER - BICYCLE,2018-05-30T00:00:00,2018,May,Wednesday,30,150,21,2018-05-31T00:00:00,2018,May,Thursday,31,151,16,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,NORCO CITY GLID,RG,3,RED,700.0,STOLEN,9272,"{'type': 'Point', 'coordinates': (-79.37953592, 43.65629127)}"
-9279,17041,GO-20189017260,THEFT UNDER - BICYCLE,2018-06-03T00:00:00,2018,June,Sunday,3,154,13,2018-06-04T00:00:00,2018,June,Monday,4,155,9,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,MOOSE XXL,OT,20,BLK,1500.0,STOLEN,9273,"{'type': 'Point', 'coordinates': (-79.38159626, 43.66440307)}"
-9280,12531,GO-20161755063,B&E,2016-10-03T00:00:00,2016,October,Monday,3,277,3,2016-10-03T00:00:00,2016,October,Monday,3,277,4,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OTHER,,MT,0,BLK,,STOLEN,9578,"{'type': 'Point', 'coordinates': (-79.37667701, 43.66241871)}"
-9281,17046,GO-20189018255,THEFT UNDER - BICYCLE,2018-06-07T00:00:00,2018,June,Thursday,7,158,12,2018-06-11T00:00:00,2018,June,Monday,11,162,15,D51,Toronto,75,Church-Yonge Corridor (75),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,UK,21 SPEED SHIMAN,RC,21,BLK,400.0,STOLEN,9274,"{'type': 'Point', 'coordinates': (-79.37691204, 43.65291764)}"
-9282,17047,GO-20189018301,THEFT UNDER - BICYCLE,2018-06-11T00:00:00,2018,June,Monday,11,162,12,2018-06-11T00:00:00,2018,June,Monday,11,162,18,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,CYPRESS ST,OT,21,GRY,400.0,STOLEN,9275,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-9283,17052,GO-20189019670,THEFT UNDER - BICYCLE,2018-06-21T00:00:00,2018,June,Thursday,21,172,8,2018-06-21T00:00:00,2018,June,Thursday,21,172,16,D51,Toronto,75,Church-Yonge Corridor (75),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,NO,REVOLVER 2,MT,12,RED,4000.0,STOLEN,9276,"{'type': 'Point', 'coordinates': (-79.37872961, 43.654321780000004)}"
-9284,17053,GO-20189019695,THEFT UNDER - BICYCLE,2018-06-21T00:00:00,2018,June,Thursday,21,172,10,2018-06-21T00:00:00,2018,June,Thursday,21,172,17,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CROSSTRAIL SPOR,RG,24,RED,900.0,STOLEN,9277,"{'type': 'Point', 'coordinates': (-79.3763333, 43.65225839)}"
-9285,17055,GO-20189019939,THEFT UNDER - BICYCLE,2018-06-22T00:00:00,2018,June,Friday,22,173,8,2018-06-23T00:00:00,2018,June,Saturday,23,174,14,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,STOCKHOLM,RG,21,BLK,862.0,STOLEN,9278,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-9286,17061,GO-20189021022,THEFT UNDER - BICYCLE,2018-06-28T00:00:00,2018,June,Thursday,28,179,14,2018-07-03T00:00:00,2018,July,Tuesday,3,184,14,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,UK,KRAMPUS,MT,7,RED,2850.0,STOLEN,9279,"{'type': 'Point', 'coordinates': (-79.37410556, 43.64926232)}"
-9287,17063,GO-20189021083,THEFT UNDER - BICYCLE,2018-06-28T00:00:00,2018,June,Thursday,28,179,16,2018-07-03T00:00:00,2018,July,Tuesday,3,184,21,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,18,,200.0,STOLEN,9280,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-9288,17065,GO-20181203144,THEFT UNDER - BICYCLE,2018-07-02T00:00:00,2018,July,Monday,2,183,15,2018-07-06T00:00:00,2018,July,Friday,6,187,8,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MOVELO,ALGONQUIN,MT,18,LBLPLE,150.0,STOLEN,9281,"{'type': 'Point', 'coordinates': (-79.38154682, 43.65790792)}"
-9289,17069,GO-20189022830,THEFT UNDER - BICYCLE,2018-07-16T00:00:00,2018,July,Monday,16,197,19,2018-07-17T00:00:00,2018,July,Tuesday,17,198,18,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,PR,,RC,18,RED,200.0,STOLEN,9282,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-9290,17071,GO-20189022995,THEFT UNDER - BICYCLE,2018-07-17T00:00:00,2018,July,Tuesday,17,198,23,2018-07-18T00:00:00,2018,July,Wednesday,18,199,23,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,1,BLK,50.0,STOLEN,9283,"{'type': 'Point', 'coordinates': (-79.37953592, 43.65629127)}"
-9291,17074,GO-20189023713,THEFT UNDER - BICYCLE,2018-06-23T00:00:00,2018,June,Saturday,23,174,13,2018-07-24T00:00:00,2018,July,Tuesday,24,205,13,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,21,,1300.0,STOLEN,9284,"{'type': 'Point', 'coordinates': (-79.37639111, 43.64874921)}"
-9292,17076,GO-20189023937,THEFT OVER - BICYCLE,2018-07-25T00:00:00,2018,July,Wednesday,25,206,20,2018-07-25T00:00:00,2018,July,Wednesday,25,206,21,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,CA,SYNAPSE,RC,11,BLK,30000.0,STOLEN,9285,"{'type': 'Point', 'coordinates': (-79.37512219, 43.65330838)}"
-9293,17083,GO-20189025277,THEFT UNDER - BICYCLE,2018-08-03T00:00:00,2018,August,Friday,3,215,10,2018-08-06T00:00:00,2018,August,Monday,6,218,13,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,UK,,MT,21,BRN,200.0,STOLEN,9286,"{'type': 'Point', 'coordinates': (-79.37700237, 43.66017519)}"
-9294,17085,GO-20189025978,THEFT UNDER - BICYCLE,2018-08-10T00:00:00,2018,August,Friday,10,222,15,2018-08-11T00:00:00,2018,August,Saturday,11,223,14,D51,Toronto,75,Church-Yonge Corridor (75),Ttc Subway Station,Transit,NO,,MT,24,GRY,649.0,STOLEN,9287,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-9295,17088,GO-20189026477,THEFT UNDER - BICYCLE,2018-08-14T00:00:00,2018,August,Tuesday,14,226,10,2018-08-15T00:00:00,2018,August,Wednesday,15,227,10,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RC,5,YEL,500.0,STOLEN,9288,"{'type': 'Point', 'coordinates': (-79.38277088, 43.67016017)}"
-9296,17092,GO-20189027007,THEFT UNDER - BICYCLE,2018-08-16T00:00:00,2018,August,Thursday,16,228,15,2018-08-19T00:00:00,2018,August,Sunday,19,231,14,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RA,,OT,5,,0.0,STOLEN,9289,"{'type': 'Point', 'coordinates': (-79.38048097, 43.66464717)}"
-9297,17093,GO-20189027199,THEFT UNDER - BICYCLE,2018-08-20T00:00:00,2018,August,Monday,20,232,16,2018-08-20T00:00:00,2018,August,Monday,20,232,19,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,CYPRESS DX,OT,8,DBL,700.0,STOLEN,9290,"{'type': 'Point', 'coordinates': (-79.3749069, 43.65118528)}"
-9298,17097,GO-20189029228,THEFT UNDER - BICYCLE,2018-09-02T00:00:00,2018,September,Sunday,2,245,20,2018-09-05T00:00:00,2018,September,Wednesday,5,248,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,FX 2 WSD DISC,RG,24,GRY,1000.0,STOLEN,9291,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-9299,17116,GO-20189035638,THEFT UNDER - BICYCLE,2018-10-25T00:00:00,2018,October,Thursday,25,298,18,2018-10-25T00:00:00,2018,October,Thursday,25,298,23,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,RG,18,BLU,300.0,STOLEN,9292,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-9300,17118,GO-2015697798,THEFT UNDER,2015-01-01T00:00:00,2015,January,Thursday,1,1,1,2015-04-27T00:00:00,2015,April,Monday,27,117,17,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,,MT,21,BLKBLU,500.0,STOLEN,9293,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-9301,17119,GO-2015697798,THEFT UNDER,2015-01-01T00:00:00,2015,January,Thursday,1,1,1,2015-04-27T00:00:00,2015,April,Monday,27,117,17,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,,MT,21,BLUPLE,500.0,STOLEN,9294,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-9302,17120,GO-2015702588,THEFT UNDER,2015-04-27T00:00:00,2015,April,Monday,27,117,14,2015-04-28T00:00:00,2015,April,Tuesday,28,118,12,D51,Toronto,75,Church-Yonge Corridor (75),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SUPERCYCLE,,RC,21,BLU,545.0,STOLEN,9295,"{'type': 'Point', 'coordinates': (-79.38137353, 43.66683138)}"
-9303,21122,GO-2020627625,B&E,2020-03-27T00:00:00,2020,March,Friday,27,87,14,2020-03-30T00:00:00,2020,March,Monday,30,90,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OTHER,LEADER,RC,10,,1300.0,STOLEN,17706,"{'type': 'Point', 'coordinates': (-79.40442195, 43.64140672)}"
-9304,17122,GO-20159002452,THEFT UNDER,2015-05-04T00:00:00,2015,May,Monday,4,124,21,2015-05-05T00:00:00,2015,May,Tuesday,5,125,1,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,30,BLU,,STOLEN,9296,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-9305,17124,GO-2015760469,THEFT UNDER,2015-05-07T00:00:00,2015,May,Thursday,7,127,14,2015-05-07T00:00:00,2015,May,Thursday,7,127,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,XINRI,XR-EM33,EL,40,BLK,1100.0,STOLEN,9297,"{'type': 'Point', 'coordinates': (-79.38607321, 43.66863079)}"
-9306,17127,GO-20159002751,THEFT UNDER,2015-05-14T00:00:00,2015,May,Thursday,14,134,18,2015-05-14T00:00:00,2015,May,Thursday,14,134,22,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,OT,DOLCE,RC,10,BLK,1300.0,STOLEN,9298,"{'type': 'Point', 'coordinates': (-79.38374902, 43.66302137000001)}"
-9307,17140,GO-20159003745,THEFT UNDER,2015-06-11T00:00:00,2015,June,Thursday,11,162,19,2015-06-18T00:00:00,2015,June,Thursday,18,169,19,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,SC,,RC,20,RED,600.0,STOLEN,9299,"{'type': 'Point', 'coordinates': (-79.38530036, 43.66669498)}"
-9308,17144,GO-20159004033,THEFT UNDER,2015-06-28T00:00:00,2015,June,Sunday,28,179,14,2015-06-29T00:00:00,2015,June,Monday,29,180,13,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,SMOKE,MT,24,BLK,600.0,STOLEN,9300,"{'type': 'Point', 'coordinates': (-79.37796823, 43.66213714)}"
-9309,17147,GO-20159004297,THEFT UNDER,2015-07-07T00:00:00,2015,July,Tuesday,7,188,13,2015-07-07T00:00:00,2015,July,Tuesday,7,188,21,D51,Toronto,75,Church-Yonge Corridor (75),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,X-BOW ALL ROAD,RC,28,GRY,1650.0,STOLEN,9301,"{'type': 'Point', 'coordinates': (-79.37691204, 43.65291764)}"
-9310,17156,GO-20159005012,THEFT UNDER,2015-07-16T00:00:00,2015,July,Thursday,16,197,16,2015-07-26T00:00:00,2015,July,Sunday,26,207,16,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,MKIV,RC,10,BLK,1000.0,STOLEN,9302,"{'type': 'Point', 'coordinates': (-79.38159626, 43.66440307)}"
-9311,17157,GO-20159005325,B&E,2015-07-31T00:00:00,2015,July,Friday,31,212,16,2015-08-04T00:00:00,2015,August,Tuesday,4,216,15,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,AXIS5,RC,18,BLK,700.0,STOLEN,9303,"{'type': 'Point', 'coordinates': (-79.38245382, 43.66941071)}"
-9312,17158,GO-20151341634,B&E,2015-07-07T00:00:00,2015,July,Tuesday,7,188,11,2015-08-05T00:00:00,2015,August,Wednesday,5,217,19,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GIANT,ESCAPE,MT,24,BLK,1000.0,STOLEN,9304,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-9313,17162,GO-20159006272,THEFT UNDER,2015-08-21T00:00:00,2015,August,Friday,21,233,15,2015-08-21T00:00:00,2015,August,Friday,21,233,16,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,DIRT JUMPER,MT,8,BLK,900.0,STOLEN,9305,"{'type': 'Point', 'coordinates': (-79.37583535, 43.65495451)}"
-9314,17166,GO-20159006752,THEFT UNDER,2015-09-04T00:00:00,2015,September,Friday,4,247,8,2015-09-04T00:00:00,2015,September,Friday,4,247,13,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,IH,,MT,24,BRZ,600.0,STOLEN,9306,"{'type': 'Point', 'coordinates': (-79.37633027, 43.65851354)}"
-9315,17173,GO-20159007348,THEFT UNDER,2015-09-08T00:00:00,2015,September,Tuesday,8,251,10,2015-09-17T00:00:00,2015,September,Thursday,17,260,21,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,ASCENT,MT,21,GRY,200.0,STOLEN,9307,"{'type': 'Point', 'coordinates': (-79.37760867, 43.64852311)}"
-9316,17174,GO-20151612342,THEFT UNDER,2015-09-18T00:00:00,2015,September,Friday,18,261,1,2015-09-18T00:00:00,2015,September,Friday,18,261,3,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,OT,1,BRN,500.0,STOLEN,9308,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-9317,17175,GO-20151612342,THEFT UNDER,2015-09-18T00:00:00,2015,September,Friday,18,261,1,2015-09-18T00:00:00,2015,September,Friday,18,261,3,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,OT,1,BLK,300.0,STOLEN,9309,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-9318,17176,GO-20151659302,THEFT UNDER,2015-09-25T00:00:00,2015,September,Friday,25,268,16,2015-09-25T00:00:00,2015,September,Friday,25,268,16,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,UNKNOWN,SC,0,BLU,80.0,STOLEN,9310,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-9319,17184,GO-20151862136,THEFT UNDER,2015-10-29T00:00:00,2015,October,Thursday,29,302,14,2015-10-29T00:00:00,2015,October,Thursday,29,302,21,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,,EL,1,RED,2000.0,STOLEN,9311,"{'type': 'Point', 'coordinates': (-79.37543679, 43.65246584)}"
-9320,17187,GO-20151882354,THEFT UNDER,2015-10-30T00:00:00,2015,October,Friday,30,303,23,2015-11-02T00:00:00,2015,November,Monday,2,306,9,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,,OT,18,BLK,,STOLEN,9312,"{'type': 'Point', 'coordinates': (-79.37669194, 43.64940479)}"
-9321,17188,GO-20159009318,THEFT UNDER,2015-11-02T00:00:00,2015,November,Monday,2,306,10,2015-11-03T00:00:00,2015,November,Tuesday,3,307,15,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,GI,,MT,18,SIL,165.0,STOLEN,9313,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-9322,17189,GO-20159009357,THEFT UNDER,2015-11-02T00:00:00,2015,November,Monday,2,306,9,2015-11-04T00:00:00,2015,November,Wednesday,4,308,13,D51,Toronto,75,Church-Yonge Corridor (75),Schools During Supervised Activity,Educational,OT,,MT,40,DGR,600.0,STOLEN,9314,"{'type': 'Point', 'coordinates': (-79.37953592, 43.65629127)}"
-9323,17190,GO-20159009410,THEFT UNDER,2015-10-24T00:00:00,2015,October,Saturday,24,297,18,2015-11-06T00:00:00,2015,November,Friday,6,310,12,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,BI,STRADA 86,RC,12,PNK,600.0,STOLEN,9315,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-9324,17191,GO-20159009477,THEFT UNDER,2015-11-06T00:00:00,2015,November,Friday,6,310,13,2015-11-07T00:00:00,2015,November,Saturday,7,311,13,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,X470 IM,OT,20,BLK,200.0,STOLEN,9316,"{'type': 'Point', 'coordinates': (-79.37669194, 43.64940479)}"
-9325,17196,GO-20159010935,THEFT UNDER,2015-12-14T00:00:00,2015,December,Monday,14,348,9,2015-12-15T00:00:00,2015,December,Tuesday,15,349,10,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,DOUBLE CROSS,TO,18,BLK,750.0,STOLEN,9317,"{'type': 'Point', 'coordinates': (-79.37894504, 43.65169174)}"
-9326,17201,GO-2016257485,THEFT UNDER,2016-02-07T00:00:00,2016,February,Sunday,7,38,12,2016-02-12T00:00:00,2016,February,Friday,12,43,16,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RALEIGH,UNKNOWN,OT,3,BRN,,STOLEN,9318,"{'type': 'Point', 'coordinates': (-79.37592197, 43.64958517)}"
-9327,12532,GO-20161755063,B&E,2016-10-03T00:00:00,2016,October,Monday,3,277,3,2016-10-03T00:00:00,2016,October,Monday,3,277,4,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OTHER,,MT,0,BLK,,STOLEN,9579,"{'type': 'Point', 'coordinates': (-79.37667701, 43.66241871)}"
-9328,17206,GO-2016356414,THEFT UNDER,2016-02-29T00:00:00,2016,February,Monday,29,60,8,2016-02-29T00:00:00,2016,February,Monday,29,60,10,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,UNKNOWN,EL,1,RED,950.0,STOLEN,9319,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-9329,17207,GO-20169002044,THEFT UNDER - BICYCLE,2016-02-15T00:00:00,2016,February,Monday,15,46,10,2016-03-06T00:00:00,2016,March,Sunday,6,66,10,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,REVOLT 3,RG,20,GRY,800.0,STOLEN,9320,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-9330,17211,GO-20169002910,THEFT UNDER - BICYCLE,2016-03-30T00:00:00,2016,March,Wednesday,30,90,5,2016-03-30T00:00:00,2016,March,Wednesday,30,90,14,D51,Toronto,75,Church-Yonge Corridor (75),Ttc Subway Station,Transit,UK,,RC,18,GRY,450.0,STOLEN,9321,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-9331,17212,GO-20169003746,THEFT UNDER - BICYCLE,2016-04-22T00:00:00,2016,April,Friday,22,113,19,2016-04-24T00:00:00,2016,April,Sunday,24,115,16,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,FIDELIO,RC,18,DBL,1500.0,STOLEN,9322,"{'type': 'Point', 'coordinates': (-79.37215317, 43.64913066)}"
-9332,17218,GO-2016807383,THEFT UNDER - BICYCLE,2016-04-30T00:00:00,2016,April,Saturday,30,121,18,2016-05-02T00:00:00,2016,May,Monday,2,123,17,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,MT,18,,500.0,STOLEN,9323,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-9333,17221,GO-20169004743,THEFT UNDER - BICYCLE,2016-05-19T00:00:00,2016,May,Thursday,19,140,17,2016-05-20T00:00:00,2016,May,Friday,20,141,17,D51,Toronto,75,Church-Yonge Corridor (75),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,TR,,OT,21,BLU,400.0,STOLEN,9324,"{'type': 'Point', 'coordinates': (-79.37953592, 43.65629127)}"
-9334,17225,GO-2016952655,THEFT UNDER - BICYCLE,2016-06-01T00:00:00,2016,June,Wednesday,1,153,9,2016-06-01T00:00:00,2016,June,Wednesday,1,153,23,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,MOMENTUM,RG,7,GRN,700.0,STOLEN,9325,"{'type': 'Point', 'coordinates': (-79.37943497, 43.65603477)}"
-9335,17227,GO-20169005550,THEFT UNDER,2016-06-09T00:00:00,2016,June,Thursday,9,161,21,2016-06-09T00:00:00,2016,June,Thursday,9,161,23,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,SC,VOLARE 1300,RC,14,WHI,500.0,STOLEN,9326,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-9336,17233,GO-20161075545,THEFT UNDER - BICYCLE,2016-06-19T00:00:00,2016,June,Sunday,19,171,15,2016-06-20T00:00:00,2016,June,Monday,20,172,11,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TREK,7.2,MT,7,BLKSIL,750.0,STOLEN,9327,"{'type': 'Point', 'coordinates': (-79.38159626, 43.66440307)}"
-9337,17237,GO-20161103362,THEFT UNDER - BICYCLE,2016-06-23T00:00:00,2016,June,Thursday,23,175,12,2016-06-24T00:00:00,2016,June,Friday,24,176,11,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,,FO,12,ONG,700.0,STOLEN,9328,"{'type': 'Point', 'coordinates': (-79.38132262, 43.6667026)}"
-9338,17240,GO-20169006540,THEFT UNDER - BICYCLE,2016-06-29T00:00:00,2016,June,Wednesday,29,181,16,2016-06-29T00:00:00,2016,June,Wednesday,29,181,19,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,FIRE MOUNTAIN,MT,18,GRN,600.0,STOLEN,9329,"{'type': 'Point', 'coordinates': (-79.37643241, 43.65085158000001)}"
-9339,12624,GO-20169012092,THEFT UNDER - BICYCLE,2016-10-09T00:00:00,2016,October,Sunday,9,283,21,2016-10-15T00:00:00,2016,October,Saturday,15,289,19,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RC,21,SIL,300.0,STOLEN,9330,"{'type': 'Point', 'coordinates': (-79.37872961, 43.654321780000004)}"
-9340,17244,GO-20169006752,THEFT UNDER - BICYCLE,2016-07-04T00:00:00,2016,July,Monday,4,186,22,2016-07-05T00:00:00,2016,July,Tuesday,5,187,12,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,7.0 FX,TO,21,GRY,600.0,STOLEN,9331,"{'type': 'Point', 'coordinates': (-79.37872961, 43.654321780000004)}"
-9341,17260,GO-20169009452,THEFT UNDER - BICYCLE,2016-08-24T00:00:00,2016,August,Wednesday,24,237,20,2016-08-25T00:00:00,2016,August,Thursday,25,238,21,D51,Toronto,75,Church-Yonge Corridor (75),Unknown,Other,OT,RIVER SPORT,RG,21,RED,446.0,STOLEN,9332,"{'type': 'Point', 'coordinates': (-79.37943497, 43.65603477)}"
-9342,17261,GO-20169009478,THEFT UNDER - BICYCLE,2016-08-25T00:00:00,2016,August,Thursday,25,238,3,2016-08-26T00:00:00,2016,August,Friday,26,239,13,D51,Toronto,75,Church-Yonge Corridor (75),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,,RC,18,BLU,400.0,STOLEN,9333,"{'type': 'Point', 'coordinates': (-79.38048097, 43.66464717)}"
-9343,12533,GO-20161755063,B&E,2016-10-03T00:00:00,2016,October,Monday,3,277,3,2016-10-03T00:00:00,2016,October,Monday,3,277,4,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OTHER,,MT,0,,,STOLEN,9580,"{'type': 'Point', 'coordinates': (-79.37667701, 43.66241871)}"
-9344,17269,GO-20161634185,THEFT OF MOTOR VEHICLE,2016-08-30T00:00:00,2016,August,Tuesday,30,243,5,2016-09-14T00:00:00,2016,September,Wednesday,14,258,11,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,VOLT,SPYDER,SC,1,BGE,1500.0,STOLEN,9334,"{'type': 'Point', 'coordinates': (-79.38007115, 43.66369728000001)}"
-9345,20716,GO-20209015415,THEFT UNDER,2020-03-10T00:00:00,2020,March,Tuesday,10,70,15,2020-06-15T00:00:00,2020,June,Monday,15,167,15,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,CA,QUICK WOMEN'S 3,OT,18,DGR,1200.0,STOLEN,9335,"{'type': 'Point', 'coordinates': (-79.38091931, 43.66572241)}"
-9346,17273,GO-20161711752,THEFT UNDER - BICYCLE,2016-09-23T00:00:00,2016,September,Friday,23,267,15,2016-09-26T00:00:00,2016,September,Monday,26,270,11,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SURLY,CROSSCHECK,TO,1,BLU,1800.0,STOLEN,9336,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-9347,17281,GO-20169012270,THEFT UNDER - BICYCLE,2016-10-13T00:00:00,2016,October,Thursday,13,287,18,2016-10-18T00:00:00,2016,October,Tuesday,18,292,21,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,1,BLK,270.0,STOLEN,9337,"{'type': 'Point', 'coordinates': (-79.37941202, 43.66889376)}"
-9348,17282,GO-20161858485,THEFT UNDER - BICYCLE,2016-10-18T00:00:00,2016,October,Tuesday,18,292,18,2016-10-19T00:00:00,2016,October,Wednesday,19,293,8,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SE DRAFT,,OT,0,,560.0,STOLEN,9338,"{'type': 'Point', 'coordinates': (-79.37781507, 43.65821091)}"
-9349,17292,GO-20169014022,THEFT UNDER,2016-11-23T00:00:00,2016,November,Wednesday,23,328,8,2016-11-30T00:00:00,2016,November,Wednesday,30,335,1,D51,Toronto,75,Church-Yonge Corridor (75),Schools During Supervised Activity,Educational,IN,HURON,MT,21,GRY,360.0,STOLEN,9339,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-9350,17295,GO-20169015240,THEFT UNDER - BICYCLE,2016-12-30T00:00:00,2016,December,Friday,30,365,7,2016-12-30T00:00:00,2016,December,Friday,30,365,20,D51,Toronto,75,Church-Yonge Corridor (75),"Open Areas (Lakes, Parks, Rivers)",Outside,KH,URBAN SOUL,OT,1,BLK,450.0,STOLEN,9340,"{'type': 'Point', 'coordinates': (-79.37585959, 43.66043919)}"
-9351,12534,GO-20161755063,B&E,2016-10-03T00:00:00,2016,October,Monday,3,277,3,2016-10-03T00:00:00,2016,October,Monday,3,277,4,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OTHER,,OT,0,,,STOLEN,9581,"{'type': 'Point', 'coordinates': (-79.37667701, 43.66241871)}"
-9352,20719,GO-20201150918,THEFT UNDER - BICYCLE,2020-06-22T00:00:00,2020,June,Monday,22,174,16,2020-06-22T00:00:00,2020,June,Monday,22,174,18,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,AGRESSOR,MT,21,BLK,560.0,STOLEN,9341,"{'type': 'Point', 'coordinates': (-79.38052643, 43.67161072)}"
-9353,17314,GO-20179005522,THEFT UNDER - BICYCLE,2016-04-30T00:00:00,2016,April,Saturday,30,121,18,2017-05-01T00:00:00,2017,May,Monday,1,121,19,D51,Toronto,75,Church-Yonge Corridor (75),Schools During Un-Supervised Activity,Educational,OT,,OT,30,BLK,1200.0,STOLEN,9342,"{'type': 'Point', 'coordinates': (-79.37781507, 43.65821091)}"
-9354,20727,GO-20201233367,THEFT UNDER - BICYCLE,2020-07-04T00:00:00,2020,July,Saturday,4,186,12,2020-07-04T00:00:00,2020,July,Saturday,4,186,14,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,ZZZ,HYPER,EL,6,BLKGRN,800.0,STOLEN,9343,"{'type': 'Point', 'coordinates': (-79.37583535, 43.65495451)}"
-9355,10942,GO-2016132911,B&E,2016-01-22T00:00:00,2016,January,Friday,22,22,18,2016-01-22T00:00:00,2016,January,Friday,22,22,23,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,RALEIGH,MOUNTAIN,MT,6,,100.0,STOLEN,9344,"{'type': 'Point', 'coordinates': (-79.37633027, 43.65851354)}"
-9356,10952,GO-2016153877,THEFT UNDER,2016-01-26T00:00:00,2016,January,Tuesday,26,26,16,2016-01-26T00:00:00,2016,January,Tuesday,26,26,16,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,MOTORINO XMS,EL,0,LBL,2200.0,STOLEN,9345,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-9357,10958,GO-2016178196,THEFT UNDER,2016-01-30T00:00:00,2016,January,Saturday,30,30,15,2016-01-30T00:00:00,2016,January,Saturday,30,30,15,D51,Toronto,75,Church-Yonge Corridor (75),Unknown,Other,UNKNOWN MAKE,,OT,0,,,STOLEN,9346,"{'type': 'Point', 'coordinates': (-79.38245382, 43.66941071)}"
-9358,10959,GO-20169000983,THEFT UNDER,2016-01-29T00:00:00,2016,January,Friday,29,29,19,2016-01-31T00:00:00,2016,January,Sunday,31,31,10,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,SOHO,OT,1,BLK,700.0,STOLEN,9347,"{'type': 'Point', 'coordinates': (-79.38491403, 43.66584039)}"
-9359,10990,GO-20169001384,THEFT UNDER,2016-02-13T00:00:00,2016,February,Saturday,13,44,11,2016-02-13T00:00:00,2016,February,Saturday,13,44,12,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,UK,ALLEZ C2,RC,10,BLK,1000.0,STOLEN,9348,"{'type': 'Point', 'coordinates': (-79.37900573, 43.66793407)}"
-9360,10997,GO-2016282015,THEFT UNDER,2016-02-16T00:00:00,2016,February,Tuesday,16,47,18,2016-02-16T00:00:00,2016,February,Tuesday,16,47,22,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,MT,21,WHIBLK,300.0,STOLEN,9349,"{'type': 'Point', 'coordinates': (-79.38411783, 43.66390399)}"
-9361,11023,GO-20169002124,THEFT UNDER - BICYCLE,2016-03-07T00:00:00,2016,March,Monday,7,67,19,2016-03-08T00:00:00,2016,March,Tuesday,8,68,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,MT,18,BLU,2500.0,STOLEN,9350,"{'type': 'Point', 'coordinates': (-79.38132262, 43.6667026)}"
-9362,11039,GO-20169002234,THEFT UNDER,2016-03-11T00:00:00,2016,March,Friday,11,71,12,2016-03-11T00:00:00,2016,March,Friday,11,71,15,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,GI,ROAM 2,MT,24,GRY,900.0,STOLEN,9351,"{'type': 'Point', 'coordinates': (-79.38245382, 43.66941071)}"
-9363,17421,GO-20141600543,THEFT UNDER,2014-02-25T00:00:00,2014,February,Tuesday,25,56,8,2014-02-26T00:00:00,2014,February,Wednesday,26,57,9,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,2012 SIRRUS SPO,OT,21,BLK,700.0,STOLEN,9352,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-9364,11043,GO-20169002276,THEFT UNDER,2016-03-12T00:00:00,2016,March,Saturday,12,72,15,2016-03-12T00:00:00,2016,March,Saturday,12,72,23,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,15,BLK,0.0,STOLEN,9353,"{'type': 'Point', 'coordinates': (-79.38052643, 43.67161072)}"
-9365,17423,GO-20149002177,THEFT UNDER,2014-03-19T00:00:00,2014,March,Wednesday,19,78,17,2014-03-19T00:00:00,2014,March,Wednesday,19,78,18,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,SC,,RG,7,LGR,300.0,STOLEN,9354,"{'type': 'Point', 'coordinates': (-79.37781507, 43.65821091)}"
-9366,12661,GO-20161877711,THEFT UNDER - BICYCLE,2016-10-22T00:00:00,2016,October,Saturday,22,296,7,2016-10-22T00:00:00,2016,October,Saturday,22,296,7,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KHS,FLITE 300,RC,27,BLU,1000.0,STOLEN,9355,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-9367,20729,GO-20201212958,THEFT UNDER - BICYCLE,2020-06-17T00:00:00,2020,June,Wednesday,17,169,0,2020-07-05T00:00:00,2020,July,Sunday,5,187,15,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,CCM,,TO,12,GRY,250.0,STOLEN,9356,"{'type': 'Point', 'coordinates': (-79.3763333, 43.65225839)}"
-9368,20735,GO-20209018524,THEFT UNDER,2020-07-25T00:00:00,2020,July,Saturday,25,207,12,2020-07-25T00:00:00,2020,July,Saturday,25,207,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KH,URBAN SOUL,RG,1,GRY,475.0,STOLEN,9357,"{'type': 'Point', 'coordinates': (-79.38063454, 43.65577409)}"
-9369,22797,GO-20202032948,B&E,2020-10-13T00:00:00,2020,October,Tuesday,13,287,18,2020-10-26T00:00:00,2020,October,Monday,26,300,19,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,SUPERCYCLE,SOLARIS,MT,21,GRY,,STOLEN,9358,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-9370,11097,GO-2016570091,THEFT UNDER,2015-12-04T00:00:00,2015,December,Friday,4,338,12,2016-04-04T00:00:00,2016,April,Monday,4,95,11,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,CANNONDALE,TRAIL 5,MT,18,BLK,860.0,STOLEN,9359,"{'type': 'Point', 'coordinates': (-79.38159626, 43.66440307)}"
-9371,17424,GO-20141822324,THEFT UNDER,2014-01-27T00:00:00,2014,January,Monday,27,27,18,2014-04-04T00:00:00,2014,April,Friday,4,94,17,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,VELO SPORT,CAVALIER RSV,EL,1,BLK,2485.0,STOLEN,9360,"{'type': 'Point', 'coordinates': (-79.38007115, 43.66369728000001)}"
-9372,20322,GO-20189020539,THEFT UNDER - BICYCLE,2018-06-27T00:00:00,2018,June,Wednesday,27,178,7,2018-06-28T00:00:00,2018,June,Thursday,28,179,0,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,TWIN TRACK 300,MT,21,YEL,0.0,STOLEN,9361,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-9373,20762,GO-20209020675,THEFT UNDER - BICYCLE,2020-08-12T00:00:00,2020,August,Wednesday,12,225,21,2020-08-19T00:00:00,2020,August,Wednesday,19,232,13,D51,Toronto,75,Church-Yonge Corridor (75),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,,RC,19,BLK,2300.0,STOLEN,9362,"{'type': 'Point', 'coordinates': (-79.37691204, 43.65291764)}"
-9374,12662,GO-20161873128,THEFT UNDER - BICYCLE,2016-10-19T00:00:00,2016,October,Wednesday,19,293,6,2016-10-21T00:00:00,2016,October,Friday,21,295,13,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,,OT,15,SIL,,STOLEN,9363,"{'type': 'Point', 'coordinates': (-79.37907575, 43.66125894)}"
-9375,23607,GO-20159003331,THEFT UNDER,2015-06-01T00:00:00,2015,June,Monday,1,152,15,2015-06-04T00:00:00,2015,June,Thursday,4,155,12,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,NO,INDIE,RG,13,GRY,1800.0,STOLEN,9364,"{'type': 'Point', 'coordinates': (-79.38491403, 43.66584039)}"
-9376,22798,GO-20202024796,THEFT UNDER,2020-10-17T00:00:00,2020,October,Saturday,17,291,15,2020-10-25T00:00:00,2020,October,Sunday,25,299,12,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NCM,MOSCOW,EL,1,BLKBLU,1500.0,STOLEN,9365,"{'type': 'Point', 'coordinates': (-79.37562599, 43.6568205)}"
-9377,11123,GO-2016611345,THEFT UNDER - BICYCLE,2016-03-26T00:00:00,2016,March,Saturday,26,86,15,2016-04-10T00:00:00,2016,April,Sunday,10,101,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,CRS3,OT,18,GRY,1000.0,STOLEN,9366,"{'type': 'Point', 'coordinates': (-79.37652171000002, 43.65664882)}"
-9378,17426,GO-20149002771,THEFT UNDER,2014-04-10T00:00:00,2014,April,Thursday,10,100,15,2014-04-11T00:00:00,2014,April,Friday,11,101,14,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,EM,,EL,30,RED,900.0,STOLEN,9367,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-9379,20323,GO-20189020644,THEFT UNDER - BICYCLE,2018-06-28T00:00:00,2018,June,Thursday,28,179,12,2018-06-28T00:00:00,2018,June,Thursday,28,179,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,12,DBL,120.0,STOLEN,9368,"{'type': 'Point', 'coordinates': (-79.37452691, 43.65706649)}"
-9380,11155,GO-2016659494,B&E,2016-04-18T00:00:00,2016,April,Monday,18,109,0,2016-04-18T00:00:00,2016,April,Monday,18,109,10,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OTHER,YETI ASR-C X01,MT,12,BLK,7000.0,STOLEN,9369,"{'type': 'Point', 'coordinates': (-79.37424947, 43.653501610000006)}"
-9381,22800,GO-20209028804,THEFT UNDER,2020-11-05T00:00:00,2020,November,Thursday,5,310,19,2020-11-06T00:00:00,2020,November,Friday,6,311,8,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,MT,18,YEL,700.0,STOLEN,9370,"{'type': 'Point', 'coordinates': (-79.37785611, 43.66521591)}"
-9382,23615,GO-20159003726,THEFT UNDER,2015-06-17T00:00:00,2015,June,Wednesday,17,168,20,2015-06-18T00:00:00,2015,June,Thursday,18,169,13,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CROSSTRAIL,MT,21,BLK,768.0,STOLEN,9371,"{'type': 'Point', 'coordinates': (-79.37787874, 43.64914837)}"
-9383,12665,GO-20169012426,THEFT UNDER,2016-10-16T00:00:00,2016,October,Sunday,16,290,9,2016-10-22T00:00:00,2016,October,Saturday,22,296,12,D52,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MA,MUIRWOODS 29ER,RG,10,BLK,600.0,STOLEN,9372,"{'type': 'Point', 'coordinates': (-79.37600691000002, 43.64815434)}"
-9384,20764,GO-20209021025,THEFT UNDER,2020-08-21T00:00:00,2020,August,Friday,21,234,19,2020-08-22T00:00:00,2020,August,Saturday,22,235,17,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,SHRED 2-4,MT,21,BRN,0.0,STOLEN,9373,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-9385,17428,GO-20149003014,THEFT UNDER,2014-04-25T00:00:00,2014,April,Friday,25,115,18,2014-04-26T00:00:00,2014,April,Saturday,26,116,9,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,NO,KOKANEE,MT,21,BLU,300.0,STOLEN,9374,"{'type': 'Point', 'coordinates': (-79.37700237, 43.66017519)}"
-9386,20765,GO-20209021025,THEFT UNDER,2020-08-21T00:00:00,2020,August,Friday,21,234,19,2020-08-22T00:00:00,2020,August,Saturday,22,235,17,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,,MT,21,GRY,0.0,STOLEN,9375,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-9387,12681,GO-20169012647,THEFT UNDER - BICYCLE,2016-10-26T00:00:00,2016,October,Wednesday,26,300,18,2016-10-26T00:00:00,2016,October,Wednesday,26,300,20,D51,Toronto,75,Church-Yonge Corridor (75),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,TR,,MT,21,GRY,500.0,STOLEN,9376,"{'type': 'Point', 'coordinates': (-79.37872961, 43.654321780000004)}"
-9388,23626,GO-20159004568,THEFT UNDER,2015-07-13T00:00:00,2015,July,Monday,13,194,19,2015-07-14T00:00:00,2015,July,Tuesday,14,195,22,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,VITA STEP,OT,8,WHI,600.0,STOLEN,9377,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-9389,11170,GO-20169003654,THEFT UNDER - BICYCLE,2016-04-20T00:00:00,2016,April,Wednesday,20,111,11,2016-04-21T00:00:00,2016,April,Thursday,21,112,13,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,RINCON ATB 24 S,MT,4,YEL,400.0,STOLEN,9378,"{'type': 'Point', 'coordinates': (-79.38007115, 43.66369728000001)}"
-9390,22803,GO-20209031655,THEFT UNDER - BICYCLE,2020-12-08T00:00:00,2020,December,Tuesday,8,343,17,2020-12-10T00:00:00,2020,December,Thursday,10,345,10,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,6,TRQ,0.0,STOLEN,9379,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-9391,20325,GO-20189021514,THEFT UNDER - BICYCLE,2018-07-06T00:00:00,2018,July,Friday,6,187,18,2018-07-07T00:00:00,2018,July,Saturday,7,188,11,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,GI,ESCAPE,MT,21,WHI,700.0,STOLEN,9380,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-9392,17433,GO-20142251420,THEFT UNDER,2014-06-08T00:00:00,2014,June,Sunday,8,159,23,2014-06-09T00:00:00,2014,June,Monday,9,160,7,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TEK,710015BLACK-SL,BM,18,BLK,1000.0,STOLEN,9381,"{'type': 'Point', 'coordinates': (-79.37849549, 43.65985781)}"
-9393,20768,GO-20209021470,THEFT UNDER,2020-08-26T00:00:00,2020,August,Wednesday,26,239,12,2020-08-26T00:00:00,2020,August,Wednesday,26,239,21,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,SU,,RG,10,RED,100.0,STOLEN,9382,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-9394,12682,GO-20161909469,THEFT UNDER - BICYCLE,2016-10-20T00:00:00,2016,October,Thursday,20,294,0,2016-10-27T00:00:00,2016,October,Thursday,27,301,10,D51,Toronto,75,Church-Yonge Corridor (75),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,,MT,10,,250.0,STOLEN,9383,"{'type': 'Point', 'coordinates': (-79.37667701, 43.66241871)}"
-9395,23627,GO-20151203788,THEFT UNDER,2015-07-15T00:00:00,2015,July,Wednesday,15,196,18,2015-07-15T00:00:00,2015,July,Wednesday,15,196,22,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OPUS,BERRETTA,RC,1,GRN,850.0,STOLEN,9384,"{'type': 'Point', 'coordinates': (-79.37843045, 43.65040714)}"
-9396,23630,GO-20159005075,THEFT UNDER,2015-07-27T00:00:00,2015,July,Monday,27,208,16,2015-07-28T00:00:00,2015,July,Tuesday,28,209,9,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RC,21,GRY,700.0,STOLEN,9385,"{'type': 'Point', 'coordinates': (-79.37717453, 43.66359899)}"
-9397,23632,GO-20151305228,THEFT UNDER,2015-07-30T00:00:00,2015,July,Thursday,30,211,11,2015-07-30T00:00:00,2015,July,Thursday,30,211,18,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,ALIEN,EL,1,BLKPLE,1200.0,STOLEN,9386,"{'type': 'Point', 'coordinates': (-79.37721761, 43.65831575)}"
-9398,23633,GO-20159005306,THEFT UNDER,2015-08-03T00:00:00,2015,August,Monday,3,215,19,2015-08-04T00:00:00,2015,August,Tuesday,4,216,11,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,OT,ITALIA 500W,EL,37,BLU,1000.0,STOLEN,9387,"{'type': 'Point', 'coordinates': (-79.38501192, 43.66606363)}"
-9399,23635,GO-20151339498,THEFT UNDER,2015-07-31T00:00:00,2015,July,Friday,31,212,16,2015-08-05T00:00:00,2015,August,Wednesday,5,217,12,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,EMMO,XL,EL,1,BLK,,STOLEN,9388,"{'type': 'Point', 'coordinates': (-79.37652171000002, 43.65664882)}"
-9400,23638,GO-20151369729,THEFT UNDER,2015-08-05T00:00:00,2015,August,Wednesday,5,217,18,2015-08-10T00:00:00,2015,August,Monday,10,222,11,D51,Toronto,75,Church-Yonge Corridor (75),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CCM,PRESTO,OT,21,BLKGRN,500.0,STOLEN,9389,"{'type': 'Point', 'coordinates': (-79.38159626, 43.66440307)}"
-9401,23642,GO-20159005749,THEFT UNDER,2015-08-11T00:00:00,2015,August,Tuesday,11,223,9,2015-08-13T00:00:00,2015,August,Thursday,13,225,13,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,DUTCHI,RG,3,GRN,500.0,STOLEN,9390,"{'type': 'Point', 'coordinates': (-79.37830693, 43.66628508)}"
-9402,23643,GO-20159005787,THEFT UNDER,2015-08-12T00:00:00,2015,August,Wednesday,12,224,8,2015-08-14T00:00:00,2015,August,Friday,14,226,8,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,PE,RECORD DU MONDE,RC,1,WHI,350.0,STOLEN,9391,"{'type': 'Point', 'coordinates': (-79.38201616, 43.6683485)}"
-9403,23646,GO-20151464979,THEFT UNDER,2015-08-25T00:00:00,2015,August,Tuesday,25,237,15,2015-08-25T00:00:00,2015,August,Tuesday,25,237,17,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GARY FISHER,MARLIN,RG,0,GRNBLK,600.0,STOLEN,9392,"{'type': 'Point', 'coordinates': (-79.37849549, 43.65985781)}"
-9404,23648,GO-20151534899,THEFT UNDER,2015-08-17T00:00:00,2015,August,Monday,17,229,1,2015-09-06T00:00:00,2015,September,Sunday,6,249,0,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,TEV EBIKE,EL,12,RED,,STOLEN,9393,"{'type': 'Point', 'coordinates': (-79.38565257, 43.66756225)}"
-9405,23651,GO-20151584432,THEFT UNDER,2015-09-09T00:00:00,2015,September,Wednesday,9,252,14,2015-09-14T00:00:00,2015,September,Monday,14,257,17,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CANNONDALE,ROAD BIKE,OT,21,BLK,1000.0,STOLEN,9394,"{'type': 'Point', 'coordinates': (-79.37781507, 43.65821091)}"
-9406,23659,GO-20151735565,B&E,2015-09-27T00:00:00,2015,September,Sunday,27,270,15,2015-10-08T00:00:00,2015,October,Thursday,8,281,8,D51,Toronto,75,Church-Yonge Corridor (75),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,ESCAPE CITY,OT,24,BLK,800.0,STOLEN,9395,"{'type': 'Point', 'coordinates': (-79.38491403, 43.66584039)}"
-9407,172,GO-20179003810,THEFT UNDER,2017-03-26T00:00:00,2017,March,Sunday,26,85,15,2017-03-26T00:00:00,2017,March,Sunday,26,85,15,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,LIBERO ACCIAO,RC,14,RED,500.0,STOLEN,10723,"{'type': 'Point', 'coordinates': (-79.38334664, 43.66205466)}"
-9408,23663,GO-20159009332,THEFT UNDER,2015-11-03T00:00:00,2015,November,Tuesday,3,307,9,2015-11-03T00:00:00,2015,November,Tuesday,3,307,20,D51,Toronto,75,Church-Yonge Corridor (75),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,STUMP JUMPER,MT,18,ONG,600.0,STOLEN,9396,"{'type': 'Point', 'coordinates': (-79.37872961, 43.654321780000004)}"
-9409,23664,GO-20159009357,THEFT UNDER,2015-11-02T00:00:00,2015,November,Monday,2,306,9,2015-11-04T00:00:00,2015,November,Wednesday,4,308,13,D51,Toronto,75,Church-Yonge Corridor (75),Schools During Supervised Activity,Educational,UK,,MT,30,GRN,600.0,STOLEN,9397,"{'type': 'Point', 'coordinates': (-79.37953592, 43.65629127)}"
-9410,23666,GO-20159009554,THEFT UNDER,2015-09-22T00:00:00,2015,September,Tuesday,22,265,17,2015-11-09T00:00:00,2015,November,Monday,9,313,14,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,OT,,EL,31,ONG,600.0,STOLEN,9398,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-9411,23668,GO-20151968706,THEFT UNDER,2015-11-13T00:00:00,2015,November,Friday,13,317,18,2015-11-16T00:00:00,2015,November,Monday,16,320,18,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GT,KARAKORAM SPORT,MT,27,BLU,500.0,STOLEN,9399,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-9412,23671,GO-20152042384,THEFT UNDER,2015-11-12T00:00:00,2015,November,Thursday,12,316,17,2015-11-28T00:00:00,2015,November,Saturday,28,332,16,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KONA,UNKNOWN,MT,21,GRY,800.0,STOLEN,9400,"{'type': 'Point', 'coordinates': (-79.37721761, 43.65831575)}"
-9413,23673,GO-20159011177,THEFT UNDER,2015-12-21T00:00:00,2015,December,Monday,21,355,18,2015-12-21T00:00:00,2015,December,Monday,21,355,23,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,EM,ALIEN,SC,32,RED,1400.0,STOLEN,9401,"{'type': 'Point', 'coordinates': (-79.37781507, 43.65821091)}"
-9414,23678,GO-2016359977,THEFT OVER,2016-02-29T00:00:00,2016,February,Monday,29,60,19,2016-02-29T00:00:00,2016,February,Monday,29,60,21,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CERVELO,S3,OT,22,RED,5000.0,STOLEN,9402,"{'type': 'Point', 'coordinates': (-79.37516377, 43.6518061)}"
-9415,23679,GO-20169002481,THEFT UNDER,2016-03-18T00:00:00,2016,March,Friday,18,78,11,2016-03-18T00:00:00,2016,March,Friday,18,78,20,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,,MT,24,GRY,200.0,STOLEN,9403,"{'type': 'Point', 'coordinates': (-79.37787874, 43.64914837)}"
-9416,23681,GO-20169002992,THEFT UNDER,2016-04-01T00:00:00,2016,April,Friday,1,92,20,2016-04-02T00:00:00,2016,April,Saturday,2,93,12,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,MT,15,BLK,699.0,STOLEN,9404,"{'type': 'Point', 'coordinates': (-79.38612041000002, 43.66874221)}"
-9417,23683,GO-2016622845,THEFT UNDER,2016-04-06T00:00:00,2016,April,Wednesday,6,97,18,2016-04-12T00:00:00,2016,April,Tuesday,12,103,16,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,OTHER,,RG,1,BLK,700.0,STOLEN,9405,"{'type': 'Point', 'coordinates': (-79.37849549, 43.65985781)}"
-9418,23686,GO-20169003978,THEFT UNDER - BICYCLE,2016-04-27T00:00:00,2016,April,Wednesday,27,118,18,2016-04-30T00:00:00,2016,April,Saturday,30,121,11,D51,Toronto,75,Church-Yonge Corridor (75),Unknown,Other,OT,SOLOIST,RC,1,BLK,350.0,STOLEN,9406,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-9419,23696,GO-20169004786,THEFT UNDER,2016-05-16T00:00:00,2016,May,Monday,16,137,23,2016-05-21T00:00:00,2016,May,Saturday,21,142,11,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GI,OCR 3,RC,24,BLK,600.0,STOLEN,9407,"{'type': 'Point', 'coordinates': (-79.37562599, 43.6568205)}"
-9420,23701,GO-20169005383,THEFT UNDER - BICYCLE,2016-05-25T00:00:00,2016,May,Wednesday,25,146,12,2016-06-06T00:00:00,2016,June,Monday,6,158,14,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,20,WHI,1000.0,STOLEN,9408,"{'type': 'Point', 'coordinates': (-79.37583535, 43.65495451)}"
-9421,23703,GO-20169005514,THEFT UNDER,2016-06-07T00:00:00,2016,June,Tuesday,7,159,7,2016-06-09T00:00:00,2016,June,Thursday,9,161,12,D51,Toronto,75,Church-Yonge Corridor (75),Schools During Un-Supervised Activity,Educational,OT,CLASSICO 2.0,RG,7,BLK,733.0,STOLEN,9409,"{'type': 'Point', 'coordinates': (-79.37721761, 43.65831575)}"
-9422,23713,GO-20169006260,THEFT UNDER,2016-06-22T00:00:00,2016,June,Wednesday,22,174,8,2016-06-23T00:00:00,2016,June,Thursday,23,175,20,D51,Toronto,75,Church-Yonge Corridor (75),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,GT,,MT,21,,600.0,STOLEN,9410,"{'type': 'Point', 'coordinates': (-79.37691204, 43.65291764)}"
-9423,23721,GO-20169007640,THEFT UNDER - BICYCLE,2016-07-23T00:00:00,2016,July,Saturday,23,205,18,2016-07-23T00:00:00,2016,July,Saturday,23,205,22,D51,Toronto,75,Church-Yonge Corridor (75),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,STREET RACER SR,RC,20,RED,1300.0,STOLEN,9411,"{'type': 'Point', 'coordinates': (-79.37691204, 43.65291764)}"
-9424,23733,GO-20169009029,THEFT UNDER - BICYCLE,2016-08-18T00:00:00,2016,August,Thursday,18,231,15,2016-08-18T00:00:00,2016,August,Thursday,18,231,18,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,"FIXED GEAR, PUR",RG,1,LGR,600.0,STOLEN,9414,"{'type': 'Point', 'coordinates': (-79.37652171000002, 43.65664882)}"
-9425,23750,GO-20169010628,THEFT UNDER - BICYCLE,2016-09-17T00:00:00,2016,September,Saturday,17,261,11,2016-09-18T00:00:00,2016,September,Sunday,18,262,10,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,CC,700C ORION,RG,30,OTH,420.0,STOLEN,9415,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-9426,23751,GO-20169010816,THEFT UNDER - BICYCLE,2016-09-16T00:00:00,2016,September,Friday,16,260,22,2016-09-20T00:00:00,2016,September,Tuesday,20,264,21,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,MYKA SPORT DISC,MT,8,BLK,750.0,STOLEN,9416,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-9427,23755,GO-20169011494,B&E,2016-10-02T00:00:00,2016,October,Sunday,2,276,12,2016-10-03T00:00:00,2016,October,Monday,3,277,15,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,VENTURA SPORT,RC,8,BLK,1400.0,STOLEN,9417,"{'type': 'Point', 'coordinates': (-79.38159626, 43.66440307)}"
-9428,23761,GO-20169012220,THEFT UNDER - BICYCLE,2016-10-18T00:00:00,2016,October,Tuesday,18,292,8,2016-10-18T00:00:00,2016,October,Tuesday,18,292,10,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,AUSTIN 72V SX,EL,3,MRN,2000.0,STOLEN,9418,"{'type': 'Point', 'coordinates': (-79.38159626, 43.66440307)}"
-9429,23762,GO-20169012247,THEFT UNDER,2016-10-18T00:00:00,2016,October,Tuesday,18,292,13,2016-10-18T00:00:00,2016,October,Tuesday,18,292,16,D51,Toronto,75,Church-Yonge Corridor (75),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,SCOTT,SCALE 950,MT,27,BLK,3500.0,STOLEN,9419,"{'type': 'Point', 'coordinates': (-79.37805214, 43.6526818)}"
-9430,23764,GO-20169012451,THEFT UNDER,2016-10-15T00:00:00,2016,October,Saturday,15,289,0,2016-10-22T00:00:00,2016,October,Saturday,22,296,20,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,21,,1500.0,STOLEN,9420,"{'type': 'Point', 'coordinates': (-79.37279194, 43.6527041)}"
-9431,23769,GO-20169013413,THEFT UNDER,2016-11-14T00:00:00,2016,November,Monday,14,319,9,2016-11-14T00:00:00,2016,November,Monday,14,319,19,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ORPHEO 4.0,RG,24,BLK,600.0,STOLEN,9421,"{'type': 'Point', 'coordinates': (-79.37894504, 43.65169174)}"
-9432,23771,GO-20169013537,THEFT UNDER,2016-10-31T00:00:00,2016,October,Monday,31,305,18,2016-11-17T00:00:00,2016,November,Thursday,17,322,15,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,SU,6 SPEED CRUISER,OT,6,GRN,150.0,STOLEN,9422,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-9433,23774,GO-20162254345,THEFT OF EBIKE UNDER $5000,2016-12-20T00:00:00,2016,December,Tuesday,20,355,22,2016-12-20T00:00:00,2016,December,Tuesday,20,355,22,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,ROCKY MOUNTAIN,XIURI 39,EL,0,BLK,800.0,STOLEN,9423,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-9434,23776,GO-20169015232,THEFT UNDER,2016-12-25T00:00:00,2016,December,Sunday,25,360,17,2016-12-30T00:00:00,2016,December,Friday,30,365,14,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,DIVERGE,RG,15,BLK,2000.0,STOLEN,9424,"{'type': 'Point', 'coordinates': (-79.37642159, 43.65482917)}"
-9435,23777,GO-201728393,THEFT UNDER - BICYCLE,2017-01-05T00:00:00,2017,January,Thursday,5,5,8,2017-01-05T00:00:00,2017,January,Thursday,5,5,17,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,16 YORKVILLE,RG,21,SIL,800.0,UNKNOWN,9425,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-9436,23781,GO-20179002646,THEFT UNDER,2017-02-28T00:00:00,2017,February,Tuesday,28,59,9,2017-03-01T00:00:00,2017,March,Wednesday,1,60,15,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,BIONX,EL,32,BLK,2500.0,STOLEN,9426,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-9437,23869,GO-20149002631,THEFT UNDER,2014-03-06T00:00:00,2014,March,Thursday,6,65,14,2014-04-08T00:00:00,2014,April,Tuesday,8,98,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RM,,MT,4,GRY,70.0,STOLEN,9427,"{'type': 'Point', 'coordinates': (-79.37652171000002, 43.65664882)}"
-9438,23870,GO-20149002636,THEFT UNDER,2014-04-08T00:00:00,2014,April,Tuesday,8,98,10,2014-04-08T00:00:00,2014,April,Tuesday,8,98,17,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ALL-CITY NATURE,RG,1,PLE,1100.0,STOLEN,9428,"{'type': 'Point', 'coordinates': (-79.3811853, 43.65703802)}"
-9439,7518,GO-20209027095,THEFT UNDER,2020-10-20T00:00:00,2020,October,Tuesday,20,294,7,2020-10-20T00:00:00,2020,October,Tuesday,20,294,17,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,3,GRN,500.0,STOLEN,17747,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-9440,23871,GO-20141908304,THEFT UNDER,2014-04-17T00:00:00,2014,April,Thursday,17,107,10,2014-04-17T00:00:00,2014,April,Thursday,17,107,11,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KHS,ELECTRIC,EL,1,BLU,500.0,STOLEN,9429,"{'type': 'Point', 'coordinates': (-79.37691204, 43.65291764)}"
-9441,23872,GO-20141988123,THEFT UNDER,2014-04-30T00:00:00,2014,April,Wednesday,30,120,12,2014-04-30T00:00:00,2014,April,Wednesday,30,120,14,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KIWI,,EL,4,YEL,870.0,STOLEN,9430,"{'type': 'Point', 'coordinates': (-79.37691204, 43.65291764)}"
-9442,23874,GO-20149003144,THEFT UNDER,2014-05-04T00:00:00,2014,May,Sunday,4,124,9,2014-05-04T00:00:00,2014,May,Sunday,4,124,16,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,HARDROCK,MT,24,BLK,800.0,STOLEN,9431,"{'type': 'Point', 'coordinates': (-79.37279194, 43.6527041)}"
-9443,23875,GO-20149003173,THEFT UNDER,2014-05-05T00:00:00,2014,May,Monday,5,125,18,2014-05-05T00:00:00,2014,May,Monday,5,125,18,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MA,KENTFIELD,RG,21,BLU,350.0,STOLEN,9432,"{'type': 'Point', 'coordinates': (-79.38201616, 43.6683485)}"
-9444,23876,GO-20142046987,THEFT UNDER,2014-05-09T00:00:00,2014,May,Friday,9,129,13,2014-05-09T00:00:00,2014,May,Friday,9,129,18,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,GIANT,ESCAPE 2,OT,24,SIL,550.0,STOLEN,9433,"{'type': 'Point', 'coordinates': (-79.37849549, 43.65985781)}"
-9445,23879,GO-20142109010,THEFT UNDER,2014-05-18T00:00:00,2014,May,Sunday,18,138,21,2014-05-19T00:00:00,2014,May,Monday,19,139,12,D51,Toronto,75,Church-Yonge Corridor (75),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OPUS,LIBRETTO,RC,1,GRNBRN,675.0,RECOVERED,9434,"{'type': 'Point', 'coordinates': (-79.37783798, 43.66217202)}"
-9446,23881,GO-20142196711,PROPERTY - FOUND,2014-06-01T00:00:00,2014,June,Sunday,1,152,7,2014-06-01T00:00:00,2014,June,Sunday,1,152,9,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,HUFFY,RIVAL,MT,18,GRY,,UNKNOWN,9435,"{'type': 'Point', 'coordinates': (-79.37633027, 43.65851354)}"
-9447,23882,GO-20149003736,THEFT UNDER,2014-05-31T00:00:00,2014,May,Saturday,31,151,21,2014-06-01T00:00:00,2014,June,Sunday,1,152,14,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,MT,18,,250.0,STOLEN,9436,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-9448,23887,GO-20142213287,THEFT UNDER,2014-06-03T00:00:00,2014,June,Tuesday,3,154,10,2014-06-03T00:00:00,2014,June,Tuesday,3,154,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,,BM,21,BLK,600.0,STOLEN,9437,"{'type': 'Point', 'coordinates': (-79.38607321, 43.66863079)}"
-9449,23890,GO-20142275000,THEFT UNDER,2014-06-12T00:00:00,2014,June,Thursday,12,163,12,2014-06-12T00:00:00,2014,June,Thursday,12,163,12,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DAYMAK,EAGLE,EL,0,GRN,900.0,STOLEN,9438,"{'type': 'Point', 'coordinates': (-79.37691204, 43.65291764)}"
-9450,23891,GO-20142271203,THEFT UNDER,2014-06-11T00:00:00,2014,June,Wednesday,11,162,19,2014-06-11T00:00:00,2014,June,Wednesday,11,162,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,MT,18,REDWHI,,STOLEN,9439,"{'type': 'Point', 'coordinates': (-79.38052643, 43.67161072)}"
-9451,23894,GO-20149004028,THEFT UNDER,2014-06-12T00:00:00,2014,June,Thursday,12,163,19,2014-06-12T00:00:00,2014,June,Thursday,12,163,23,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GF,,MT,21,,300.0,STOLEN,9440,"{'type': 'Point', 'coordinates': (-79.37721761, 43.65831575)}"
-9452,23897,GO-20142309875,THEFT UNDER,2014-06-17T00:00:00,2014,June,Tuesday,17,168,15,2014-06-17T00:00:00,2014,June,Tuesday,17,168,17,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,,OT,21,RED,299.0,STOLEN,9441,"{'type': 'Point', 'coordinates': (-79.38048097, 43.66464717)}"
-9453,23904,GO-20149004373,THEFT UNDER,2014-06-21T00:00:00,2014,June,Saturday,21,172,21,2014-06-23T00:00:00,2014,June,Monday,23,174,22,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,4300,MT,18,GRY,500.0,STOLEN,9442,"{'type': 'Point', 'coordinates': (-79.37382409, 43.64862739)}"
-9454,23906,GO-20142366884,THEFT UNDER,2014-06-22T00:00:00,2014,June,Sunday,22,173,18,2014-06-25T00:00:00,2014,June,Wednesday,25,176,18,D51,Toronto,75,Church-Yonge Corridor (75),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,CITY GLIDE,OT,8,RED,400.0,RECOVERED,9443,"{'type': 'Point', 'coordinates': (-79.38201616, 43.6683485)}"
-9455,23909,GO-20149004559,THEFT UNDER,2014-06-29T00:00:00,2014,June,Sunday,29,180,11,2014-06-29T00:00:00,2014,June,Sunday,29,180,17,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MO,,RG,21,RED,1600.0,STOLEN,9444,"{'type': 'Point', 'coordinates': (-79.37771935, 43.65196319)}"
-9456,23910,GO-20142431626,THEFT UNDER,2014-06-27T00:00:00,2014,June,Friday,27,178,15,2014-07-06T00:00:00,2014,July,Sunday,6,187,15,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,SUPERCYCLE,ACCENT,MT,21,BLK,400.0,STOLEN,9445,"{'type': 'Point', 'coordinates': (-79.38159830000001, 43.66737287)}"
-9457,23911,GO-20142454207,THEFT UNDER,2014-07-07T00:00:00,2014,July,Monday,7,188,21,2014-07-08T00:00:00,2014,July,Tuesday,8,189,9,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,BM,0,,,STOLEN,9446,"{'type': 'Point', 'coordinates': (-79.37830693, 43.66628508)}"
-9458,23912,GO-20149004795,THEFT UNDER,2014-07-05T00:00:00,2014,July,Saturday,5,186,12,2014-07-07T00:00:00,2014,July,Monday,7,188,21,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,RINCON,MT,12,GRY,500.0,STOLEN,9447,"{'type': 'Point', 'coordinates': (-79.38521897, 43.66654709)}"
-9459,23917,GO-20149004928,THEFT UNDER,2014-07-12T00:00:00,2014,July,Saturday,12,193,0,2014-07-12T00:00:00,2014,July,Saturday,12,193,8,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EM,EMMO-X,EL,1,BLK,2800.0,STOLEN,9448,"{'type': 'Point', 'coordinates': (-79.37267618, 43.65234821)}"
-9460,23918,GO-20149004943,THEFT UNDER,2014-07-10T00:00:00,2014,July,Thursday,10,191,9,2014-07-12T00:00:00,2014,July,Saturday,12,193,22,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,UK,,MT,7,SIL,200.0,STOLEN,9449,"{'type': 'Point', 'coordinates': (-79.37781507, 43.65821091)}"
-9461,23919,GO-20142518964,THEFT UNDER,2014-07-16T00:00:00,2014,July,Wednesday,16,197,20,2014-07-18T00:00:00,2014,July,Friday,18,199,0,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,SUPERCYCLE,XC2-6,MT,0,REDWHI,200.0,STOLEN,9450,"{'type': 'Point', 'coordinates': (-79.37906116, 43.66495458)}"
-9462,23920,GO-20142491577,THEFT UNDER,2014-07-13T00:00:00,2014,July,Sunday,13,194,19,2014-07-13T00:00:00,2014,July,Sunday,13,194,21,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,VFR4 FORMA,MT,6,BLU,450.0,STOLEN,9451,"{'type': 'Point', 'coordinates': (-79.37953592, 43.65629127)}"
-9463,23922,GO-20149004966,THEFT UNDER,2014-07-13T00:00:00,2014,July,Sunday,13,194,20,2014-07-14T00:00:00,2014,July,Monday,14,195,8,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SU,TEMPO,OT,21,GRY,200.0,STOLEN,9452,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-9464,23923,GO-20149005042,THEFT UNDER,2014-07-15T00:00:00,2014,July,Tuesday,15,196,21,2014-07-16T00:00:00,2014,July,Wednesday,16,197,15,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,WELLINGTON,RG,9,WHI,800.0,STOLEN,9453,"{'type': 'Point', 'coordinates': (-79.37906116, 43.66495458)}"
-9465,23930,GO-20142568385,THEFT UNDER,2014-07-25T00:00:00,2014,July,Friday,25,206,7,2014-07-25T00:00:00,2014,July,Friday,25,206,10,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,JAMESON,2,OT,21,PLE,520.0,STOLEN,9454,"{'type': 'Point', 'coordinates': (-79.38154682, 43.65790792)}"
-9466,23931,GO-20142568385,THEFT UNDER,2014-07-25T00:00:00,2014,July,Friday,25,206,7,2014-07-25T00:00:00,2014,July,Friday,25,206,10,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNK,,OT,0,,,STOLEN,9455,"{'type': 'Point', 'coordinates': (-79.38154682, 43.65790792)}"
-9467,23936,GO-20149005718,THEFT UNDER,2014-08-06T00:00:00,2014,August,Wednesday,6,218,17,2014-08-07T00:00:00,2014,August,Thursday,7,219,22,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,RG,21,,0.0,STOLEN,9456,"{'type': 'Point', 'coordinates': (-79.37583535, 43.65495451)}"
-9468,23940,GO-20142740246,THEFT UNDER,2014-08-14T00:00:00,2014,August,Thursday,14,226,14,2014-08-20T00:00:00,2014,August,Wednesday,20,232,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,VAGABOND,FOLDING BIKE,OT,6,WHIGRN,230.0,STOLEN,9457,"{'type': 'Point', 'coordinates': (-79.37830693, 43.66628508)}"
-9469,23944,GO-20149006181,THEFT UNDER,2014-08-20T00:00:00,2014,August,Wednesday,20,232,16,2014-08-21T00:00:00,2014,August,Thursday,21,233,16,D51,Toronto,75,Church-Yonge Corridor (75),"Open Areas (Lakes, Parks, Rivers)",Outside,RA,MATTERHORN,MT,18,OTH,175.0,STOLEN,9458,"{'type': 'Point', 'coordinates': (-79.37941202, 43.66889376)}"
-9470,23954,GO-20142929431,THEFT UNDER,2014-09-17T00:00:00,2014,September,Wednesday,17,260,14,2014-09-17T00:00:00,2014,September,Wednesday,17,260,17,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RALEIGH,,MT,21,GRY,200.0,STOLEN,9459,"{'type': 'Point', 'coordinates': (-79.37700237, 43.66017519)}"
-9471,23958,GO-20149007153,THEFT UNDER,2014-09-21T00:00:00,2014,September,Sunday,21,264,22,2014-09-23T00:00:00,2014,September,Tuesday,23,266,21,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,HARDROCK,MT,21,BLK,627.0,STOLEN,9460,"{'type': 'Point', 'coordinates': (-79.37872961, 43.654321780000004)}"
-9472,23961,GO-20149007241,THEFT UNDER,2014-09-24T00:00:00,2014,September,Wednesday,24,267,8,2014-09-26T00:00:00,2014,September,Friday,26,269,20,D51,Toronto,75,Church-Yonge Corridor (75),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,NO,NORCO BLUISH GR,MT,15,OTH,1000.0,STOLEN,9461,"{'type': 'Point', 'coordinates': (-79.38159626, 43.66440307)}"
-9473,23963,GO-20149007522,THEFT UNDER,2014-10-10T00:00:00,2014,October,Friday,10,283,7,2014-10-10T00:00:00,2014,October,Friday,10,283,20,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,UK,,EL,1,BLK,1500.0,STOLEN,9462,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-9474,23966,GO-20143315393,THEFT UNDER,2014-11-17T00:00:00,2014,November,Monday,17,321,0,2014-11-17T00:00:00,2014,November,Monday,17,321,5,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,BATAVUS,RG,3,GRY,,STOLEN,9463,"{'type': 'Point', 'coordinates': (-79.37783798, 43.66217202)}"
-9475,23969,GO-20143483971,THEFT UNDER,2014-12-14T00:00:00,2014,December,Sunday,14,348,13,2014-12-14T00:00:00,2014,December,Sunday,14,348,13,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,,OT,21,GRN,1500.0,STOLEN,9464,"{'type': 'Point', 'coordinates': (-79.38132262, 43.6667026)}"
-9476,23972,GO-2015205735,THEFT UNDER,2015-01-02T00:00:00,2015,January,Friday,2,2,6,2015-02-04T00:00:00,2015,February,Wednesday,4,35,15,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,EMMO,,EL,1,BLK,1100.0,STOLEN,9465,"{'type': 'Point', 'coordinates': (-79.37941202, 43.66889376)}"
-9477,23976,GO-20159001999,THEFT UNDER,2015-03-08T00:00:00,2015,March,Sunday,8,67,17,2015-04-17T00:00:00,2015,April,Friday,17,107,18,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,16,RED,800.0,STOLEN,9466,"{'type': 'Point', 'coordinates': (-79.37872961, 43.654321780000004)}"
-9478,23979,GO-20159002117,THEFT UNDER,2015-04-03T00:00:00,2015,April,Friday,3,93,19,2015-04-20T00:00:00,2015,April,Monday,20,110,22,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,UK,,OT,10,BLK,1000.0,STOLEN,9467,"{'type': 'Point', 'coordinates': (-79.37872961, 43.654321780000004)}"
-9479,23982,GO-2015746010,THEFT UNDER,2015-05-05T00:00:00,2015,May,Tuesday,5,125,11,2015-05-05T00:00:00,2015,May,Tuesday,5,125,12,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,RC,21,SILRED,1300.0,STOLEN,9468,"{'type': 'Point', 'coordinates': (-79.37827718, 43.65626242)}"
-9480,24792,GO-20149004335,THEFT UNDER,2014-06-21T00:00:00,2014,June,Saturday,21,172,18,2014-06-22T00:00:00,2014,June,Sunday,22,173,13,D52,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,HARDROCK,MT,21,BLK,500.0,STOLEN,9469,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-9481,24815,GO-20149005883,THEFT UNDER,2014-08-14T00:00:00,2014,August,Thursday,14,226,18,2014-08-14T00:00:00,2014,August,Thursday,14,226,18,D52,Toronto,75,Church-Yonge Corridor (75),"Open Areas (Lakes, Parks, Rivers)",Outside,SP,,MT,21,BLK,99.0,STOLEN,9470,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-9482,3,GO-20162182674,THEFT UNDER - BICYCLE,2016-12-09T00:00:00,2016,December,Friday,9,344,9,2016-12-09T00:00:00,2016,December,Friday,9,344,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,UNKNOWN,MT,18,BLK,1500.0,STOLEN,9471,"{'type': 'Point', 'coordinates': (-79.38411783, 43.66390399)}"
-9483,5,GO-20169014547,THEFT UNDER - BICYCLE,2016-12-09T00:00:00,2016,December,Friday,9,344,9,2016-12-12T00:00:00,2016,December,Monday,12,347,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,,MT,21,BLK,1500.0,STOLEN,9472,"{'type': 'Point', 'coordinates': (-79.38374902, 43.66302137000001)}"
-9484,7,GO-20169014563,THEFT UNDER - BICYCLE,2016-12-08T00:00:00,2016,December,Thursday,8,343,17,2016-12-12T00:00:00,2016,December,Monday,12,347,15,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,MILANO,RG,18,SIL,553.0,STOLEN,9473,"{'type': 'Point', 'coordinates': (-79.37968936, 43.64733439)}"
-9485,28,GO-20169014946,THEFT UNDER - BICYCLE,2016-12-18T00:00:00,2016,December,Sunday,18,353,2,2016-12-21T00:00:00,2016,December,Wednesday,21,356,18,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RG,27,WHI,1200.0,STOLEN,9474,"{'type': 'Point', 'coordinates': (-79.37760867, 43.64852311)}"
-9486,17438,GO-20149004067,THEFT UNDER,2014-06-13T00:00:00,2014,June,Friday,13,164,18,2014-06-14T00:00:00,2014,June,Saturday,14,165,14,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,DEW 59 BLK,MT,21,BLK,700.0,STOLEN,9475,"{'type': 'Point', 'coordinates': (-79.37953592, 43.65629127)}"
-9487,11196,GO-20169003791,THEFT UNDER,2016-04-24T00:00:00,2016,April,Sunday,24,115,20,2016-04-25T00:00:00,2016,April,Monday,25,116,1,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,GI,,RG,24,BLK,1300.0,STOLEN,9476,"{'type': 'Point', 'coordinates': (-79.3811853, 43.65703802)}"
-9488,12687,GO-20169012677,THEFT UNDER,2016-10-26T00:00:00,2016,October,Wednesday,26,300,19,2016-10-27T00:00:00,2016,October,Thursday,27,301,19,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,FJ,TRACK CLASSIC,RG,1,SIL,700.0,STOLEN,9477,"{'type': 'Point', 'coordinates': (-79.37781507, 43.65821091)}"
-9489,20769,GO-20201661228,THEFT UNDER - BICYCLE,2020-08-29T00:00:00,2020,August,Saturday,29,242,18,2020-09-02T00:00:00,2020,September,Wednesday,2,246,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,UNKNOWN,MT,18,GRYRED,100.0,STOLEN,9478,"{'type': 'Point', 'coordinates': (-79.3749313, 43.65514877)}"
-9490,20326,GO-20181245691,THEFT UNDER - BICYCLE,2018-07-08T00:00:00,2018,July,Sunday,8,189,18,2018-07-08T00:00:00,2018,July,Sunday,8,189,23,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CANNONDALE,R-500,RC,21,PLE,1500.0,STOLEN,9479,"{'type': 'Point', 'coordinates': (-79.38132262, 43.6667026)}"
-9491,22804,GO-20209031655,THEFT UNDER - BICYCLE,2020-12-08T00:00:00,2020,December,Tuesday,8,343,17,2020-12-10T00:00:00,2020,December,Thursday,10,345,10,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,6,WHI,0.0,STOLEN,9480,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-9492,11247,GO-20169004094,THEFT UNDER,2016-05-02T00:00:00,2016,May,Monday,2,123,9,2016-05-03T00:00:00,2016,May,Tuesday,3,124,11,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,KO,JAKE,TO,24,GRY,1017.0,STOLEN,9481,"{'type': 'Point', 'coordinates': (-79.37827718, 43.65626242)}"
-9493,20770,GO-20209022243,THEFT UNDER,2020-08-29T00:00:00,2020,August,Saturday,29,242,15,2020-09-03T00:00:00,2020,September,Thursday,3,247,20,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,,BM,1,BLK,250.0,STOLEN,9482,"{'type': 'Point', 'coordinates': (-79.38245382, 43.66941071)}"
-9494,12714,GO-20169012927,THEFT UNDER - BICYCLE,2016-11-03T00:00:00,2016,November,Thursday,3,308,2,2016-11-03T00:00:00,2016,November,Thursday,3,308,9,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,5,BLU,50.0,STOLEN,9483,"{'type': 'Point', 'coordinates': (-79.3763333, 43.65225839)}"
-9495,22806,GO-20202448376,THEFT OF EBIKE UNDER $5000,2020-12-29T00:00:00,2020,December,Tuesday,29,364,15,2020-12-30T00:00:00,2020,December,Wednesday,30,365,12,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,PRAQUE,EL,32,BLK,1650.0,STOLEN,9484,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-9496,20334,GO-20181286429,THEFT UNDER - BICYCLE,2018-07-08T00:00:00,2018,July,Sunday,8,189,5,2018-07-14T00:00:00,2018,July,Saturday,14,195,20,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,SUPERCYCLE,NITRO XT,MT,21,BLUWHI,400.0,STOLEN,9485,"{'type': 'Point', 'coordinates': (-79.37785611, 43.66521591)}"
-9497,11261,GO-20169004188,THEFT UNDER,2016-05-05T00:00:00,2016,May,Thursday,5,126,9,2016-05-05T00:00:00,2016,May,Thursday,5,126,14,D51,Toronto,75,Church-Yonge Corridor (75),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,NO,,RG,18,BLK,500.0,STOLEN,9486,"{'type': 'Point', 'coordinates': (-79.37827718, 43.65626242)}"
-9498,20774,GO-20201700725,B&E,2020-07-07T00:00:00,2020,July,Tuesday,7,189,0,2020-09-08T00:00:00,2020,September,Tuesday,8,252,15,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,TREK,,MT,10,BLUBLK,900.0,STOLEN,9487,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-9499,12742,GO-20169013151,THEFT UNDER - BICYCLE,2016-11-08T00:00:00,2016,November,Tuesday,8,313,16,2016-11-08T00:00:00,2016,November,Tuesday,8,313,18,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,TO,1,GRY,260.0,STOLEN,9488,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-9500,12754,GO-20169013298,THEFT UNDER,2016-11-09T00:00:00,2016,November,Wednesday,9,314,1,2016-11-12T00:00:00,2016,November,Saturday,12,317,12,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,10,SIL,200.0,STOLEN,9489,"{'type': 'Point', 'coordinates': (-79.38091931, 43.66572241)}"
-9501,17443,GO-20149004518,THEFT UNDER,2014-06-26T00:00:00,2014,June,Thursday,26,177,22,2014-06-30T00:00:00,2014,June,Monday,30,181,23,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MOTORINO XPH,EL,40,YEL,2298.0,STOLEN,9490,"{'type': 'Point', 'coordinates': (-79.38091931, 43.66572241)}"
-9502,20335,GO-20189023100,THEFT UNDER - BICYCLE,2018-07-19T00:00:00,2018,July,Thursday,19,200,16,2018-07-19T00:00:00,2018,July,Thursday,19,200,17,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,CC,,MT,6,GRY,199.0,STOLEN,9491,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-9503,20776,GO-20209023395,THEFT UNDER,2020-09-15T00:00:00,2020,September,Tuesday,15,259,19,2020-09-16T00:00:00,2020,September,Wednesday,16,260,11,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,PLUS,RG,21,TRQ,900.0,STOLEN,9492,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-9504,20336,GO-20181337142,THEFT UNDER - BICYCLE,2018-07-17T00:00:00,2018,July,Tuesday,17,198,13,2018-07-22T00:00:00,2018,July,Sunday,22,203,5,D51,Toronto,75,Church-Yonge Corridor (75),Schools During Un-Supervised Activity,Educational,GIANT,,MT,10,BLK,600.0,STOLEN,9493,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-9505,22807,GO-20202330705,THEFT UNDER,2020-12-10T00:00:00,2020,December,Thursday,10,345,11,2020-12-11T00:00:00,2020,December,Friday,11,346,5,D51,Toronto,75,Church-Yonge Corridor (75),Ttc Subway Station,Transit,SUPERCYCLE,,OT,0,BLK,400.0,STOLEN,9494,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-9506,12788,GO-20169013587,THEFT UNDER,2016-11-18T00:00:00,2016,November,Friday,18,323,9,2016-11-18T00:00:00,2016,November,Friday,18,323,20,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,ALLEGRO ELITE,TO,18,GRY,1400.0,STOLEN,9495,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-9507,17445,GO-20142448762,THEFT UNDER,2014-07-07T00:00:00,2014,July,Monday,7,188,12,2014-07-07T00:00:00,2014,July,Monday,7,188,13,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OTHER,EBIKE,SC,0,RED,1500.0,STOLEN,9496,"{'type': 'Point', 'coordinates': (-79.37849549, 43.65985781)}"
-9508,17447,GO-20142505767,THEFT UNDER,2014-07-15T00:00:00,2014,July,Tuesday,15,196,22,2014-07-15T00:00:00,2014,July,Tuesday,15,196,23,D51,Toronto,75,Church-Yonge Corridor (75),"Open Areas (Lakes, Parks, Rivers)",Outside,SCOTT ASPECT,45,MT,24,BLK,800.0,STOLEN,9497,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-9509,11328,GO-2016840972,B&E,2016-05-16T00:00:00,2016,May,Monday,16,137,0,2016-05-16T00:00:00,2016,May,Monday,16,137,11,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,UNKNOWN,OT,1,BLK,,STOLEN,9498,"{'type': 'Point', 'coordinates': (-79.38201616, 43.6683485)}"
-9510,12828,GO-20169013928,THEFT UNDER - BICYCLE,2016-11-25T00:00:00,2016,November,Friday,25,330,10,2016-11-27T00:00:00,2016,November,Sunday,27,332,23,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,OCR3,RC,21,BLK,1000.0,STOLEN,9499,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-9511,23193,GO-20199022267,THEFT UNDER,2019-07-14T00:00:00,2019,July,Sunday,14,195,19,2019-07-15T00:00:00,2019,July,Monday,15,196,0,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,DIADORA CORSO,MT,21,LGR,400.0,STOLEN,9500,"{'type': 'Point', 'coordinates': (-79.37783798, 43.66217202)}"
-9512,17450,GO-20149005020,THEFT UNDER,2014-07-15T00:00:00,2014,July,Tuesday,15,196,7,2014-07-15T00:00:00,2014,July,Tuesday,15,196,18,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,ROAD,RG,10,BLU,200.0,STOLEN,9501,"{'type': 'Point', 'coordinates': (-79.37424947, 43.653501610000006)}"
-9513,20337,GO-20189023491,THEFT UNDER - BICYCLE,2018-07-22T00:00:00,2018,July,Sunday,22,203,17,2018-07-23T00:00:00,2018,July,Monday,23,204,9,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE,MT,21,SIL,650.0,STOLEN,9502,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-9514,13315,GO-20151058209,THEFT UNDER,2015-06-23T00:00:00,2015,June,Tuesday,23,174,15,2015-06-23T00:00:00,2015,June,Tuesday,23,174,16,D52,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,THIN BLUE LINE,RAGE,MT,14,DBL,280.0,STOLEN,9503,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-9515,11350,GO-20169004808,THEFT UNDER,2016-05-21T00:00:00,2016,May,Saturday,21,142,22,2016-05-22T00:00:00,2016,May,Sunday,22,143,0,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,CHARGER 9.2,MT,18,BLK,500.0,STOLEN,9504,"{'type': 'Point', 'coordinates': (-79.37953592, 43.65629127)}"
-9516,20780,GO-20209024025,THEFT UNDER - BICYCLE,2020-09-22T00:00:00,2020,September,Tuesday,22,266,12,2020-09-22T00:00:00,2020,September,Tuesday,22,266,12,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GF,WINGRA,RG,24,BLK,0.0,STOLEN,9505,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-9517,23205,GO-20189030885,THEFT UNDER - BICYCLE,2018-09-17T00:00:00,2018,September,Monday,17,260,8,2018-09-18T00:00:00,2018,September,Tuesday,18,261,0,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,GT,AGRESSOR COMP,MT,3,BLK,600.0,STOLEN,9506,"{'type': 'Point', 'coordinates': (-79.3811853, 43.65703802)}"
-9518,17451,GO-20149005099,THEFT UNDER,2014-07-18T00:00:00,2014,July,Friday,18,199,13,2014-07-18T00:00:00,2014,July,Friday,18,199,21,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,FO,7,WHI,200.0,STOLEN,9507,"{'type': 'Point', 'coordinates': (-79.38638506, 43.669368250000005)}"
-9519,20339,GO-20181368600,THEFT OF EBIKE UNDER $5000,2018-07-25T00:00:00,2018,July,Wednesday,25,206,21,2018-07-26T00:00:00,2018,July,Thursday,26,207,19,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,URBAN S,SC,1,RED,1300.0,STOLEN,9508,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-9520,13420,GO-20169010537,THEFT UNDER - BICYCLE,2016-09-15T00:00:00,2016,September,Thursday,15,259,9,2016-09-16T00:00:00,2016,September,Friday,16,260,12,D52,Toronto,75,Church-Yonge Corridor (75),"Open Areas (Lakes, Parks, Rivers)",Outside,RA,RUSH HOUR,RC,1,BLK,600.0,STOLEN,9509,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-9521,11365,GO-2016897643,THEFT UNDER - BICYCLE,2016-05-24T00:00:00,2016,May,Tuesday,24,145,19,2016-05-24T00:00:00,2016,May,Tuesday,24,145,23,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,RG,18,YEL,250.0,STOLEN,9510,"{'type': 'Point', 'coordinates': (-79.3771082, 43.65650088)}"
-9522,11372,GO-20169004930,THEFT UNDER,2016-05-24T00:00:00,2016,May,Tuesday,24,145,10,2016-05-24T00:00:00,2016,May,Tuesday,24,145,19,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,TR,3500 DISC 18 GL,MT,7,GRY,500.0,STOLEN,9511,"{'type': 'Point', 'coordinates': (-79.37652171000002, 43.65664882)}"
-9523,11373,GO-20169004928,THEFT UNDER,2016-05-24T00:00:00,2016,May,Tuesday,24,145,9,2016-05-25T00:00:00,2016,May,Wednesday,25,146,9,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,EM,S6,EL,50,RED,1500.0,STOLEN,9512,"{'type': 'Point', 'coordinates': (-79.37781507, 43.65821091)}"
-9524,11384,GO-20169004991,THEFT UNDER,2016-05-26T00:00:00,2016,May,Thursday,26,147,12,2016-05-26T00:00:00,2016,May,Thursday,26,147,15,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,UK,JYNX SPORT,MT,24,BLK,1000.0,STOLEN,9513,"{'type': 'Point', 'coordinates': (-79.37971563, 43.66282598)}"
-9525,11388,GO-20169005024,THEFT UNDER - BICYCLE,2016-05-26T00:00:00,2016,May,Thursday,26,147,12,2016-05-27T00:00:00,2016,May,Friday,27,148,12,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,QUICK WOMEN'S 4,OT,9,BLK,800.0,STOLEN,9514,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-9526,11419,GO-20169005182,THEFT UNDER,2016-05-31T00:00:00,2016,May,Tuesday,31,152,16,2016-05-31T00:00:00,2016,May,Tuesday,31,152,17,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,UK,ALLEGRO 2.0,OT,18,BLK,950.0,STOLEN,9515,"{'type': 'Point', 'coordinates': (-79.37830573, 43.66310625)}"
-9527,11443,GO-20169005311,THEFT UNDER - BICYCLE,2016-05-27T00:00:00,2016,May,Friday,27,148,13,2016-06-03T00:00:00,2016,June,Friday,3,155,12,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,MT,21,RED,439.0,STOLEN,9516,"{'type': 'Point', 'coordinates': (-79.38091931, 43.66572241)}"
-9528,11444,GO-2016979860,POSSESSION PROPERTY OBC UNDER,2016-06-06T00:00:00,2016,June,Monday,6,158,5,2016-06-06T00:00:00,2016,June,Monday,6,158,5,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FELT,,RC,1,WHI,,RECOVERED,9517,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-9529,11463,GO-2016982500,THEFT OF EBIKE UNDER $5000,2016-06-06T00:00:00,2016,June,Monday,6,158,11,2016-06-06T00:00:00,2016,June,Monday,6,158,13,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,MONSTER,EL,1,GRN,,STOLEN,9518,"{'type': 'Point', 'coordinates': (-79.37830693, 43.66628508)}"
-9530,11481,GO-20169005522,THEFT UNDER,2016-06-08T00:00:00,2016,June,Wednesday,8,160,23,2016-06-09T00:00:00,2016,June,Thursday,9,161,14,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,MT,21,,120.0,STOLEN,9519,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-9531,11488,GO-20169005571,THEFT UNDER,2016-06-10T00:00:00,2016,June,Friday,10,162,8,2016-06-10T00:00:00,2016,June,Friday,10,162,17,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,LIV,RG,6,WHI,800.0,STOLEN,9520,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-9532,11496,GO-20169005591,THEFT UNDER - BICYCLE,2016-06-06T00:00:00,2016,June,Monday,6,158,11,2016-06-10T00:00:00,2016,June,Friday,10,162,21,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,3,GRN,200.0,STOLEN,9521,"{'type': 'Point', 'coordinates': (-79.37843045, 43.65040714)}"
-9533,11508,GO-20161018855,THEFT OF EBIKE UNDER $5000,2016-06-10T00:00:00,2016,June,Friday,10,162,19,2016-06-11T00:00:00,2016,June,Saturday,11,163,21,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,ECOPED,,EL,0,BLK,,STOLEN,9522,"{'type': 'Point', 'coordinates': (-79.38245382, 43.66941071)}"
-9534,11512,GO-20161018051,THEFT UNDER,2016-06-11T00:00:00,2016,June,Saturday,11,163,15,2016-06-13T00:00:00,2016,June,Monday,13,165,12,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,MASI SPECIALE,OT,1,GRN,,STOLEN,9523,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-9535,12554,GO-20169011564,B&E,2016-10-03T00:00:00,2016,October,Monday,3,277,3,2016-10-04T00:00:00,2016,October,Tuesday,4,278,18,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,TR,8.3DS,RG,24,WHI,800.0,STOLEN,9582,"{'type': 'Point', 'coordinates': (-79.37667701, 43.66241871)}"
-9536,11544,GO-20169005843,THEFT UNDER - BICYCLE,2016-06-14T00:00:00,2016,June,Tuesday,14,166,17,2016-06-15T00:00:00,2016,June,Wednesday,15,167,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,UMBRIA,RG,10,BLK,585.0,STOLEN,9524,"{'type': 'Point', 'coordinates': (-79.38607321, 43.66863079)}"
-9537,11559,GO-20169005900,THEFT UNDER - BICYCLE,2016-06-16T00:00:00,2016,June,Thursday,16,168,15,2016-06-16T00:00:00,2016,June,Thursday,16,168,18,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,SIRRUS,RG,21,SIL,500.0,STOLEN,9525,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-9538,11679,GO-20161144186,THEFT UNDER - BICYCLE,2016-06-26T00:00:00,2016,June,Sunday,26,178,14,2016-06-30T00:00:00,2016,June,Thursday,30,182,13,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,CROSSROADS,TO,21,GRYLGR,800.0,STOLEN,9526,"{'type': 'Point', 'coordinates': (-79.37953592, 43.65629127)}"
-9539,11706,GO-20169006720,THEFT UNDER - BICYCLE,2016-07-04T00:00:00,2016,July,Monday,4,186,17,2016-07-04T00:00:00,2016,July,Monday,4,186,20,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE RX2,OT,9,CRM,800.0,STOLEN,9527,"{'type': 'Point', 'coordinates': (-79.38201616, 43.6683485)}"
-9540,11715,GO-20161169144,THEFT UNDER - BICYCLE,2016-07-03T00:00:00,2016,July,Sunday,3,185,18,2016-07-04T00:00:00,2016,July,Monday,4,186,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,RG,1,BRN,175.0,STOLEN,9528,"{'type': 'Point', 'coordinates': (-79.37953592, 43.65629127)}"
-9541,11722,GO-20169006777,THEFT UNDER,2016-07-03T00:00:00,2016,July,Sunday,3,185,0,2016-07-06T00:00:00,2016,July,Wednesday,6,188,0,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE 2 2015,OT,24,BLK,499.0,STOLEN,9529,"{'type': 'Point', 'coordinates': (-79.38091931, 43.66572241)}"
-9542,11724,GO-20169006790,THEFT UNDER,2016-06-29T00:00:00,2016,June,Wednesday,29,181,17,2016-07-05T00:00:00,2016,July,Tuesday,5,187,23,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,NO,,MT,21,BLK,0.0,STOLEN,9530,"{'type': 'Point', 'coordinates': (-79.38007115, 43.66369728000001)}"
-9543,22691,GO-20209001112,THEFT UNDER,2019-11-10T00:00:00,2019,November,Sunday,10,314,12,2020-01-10T00:00:00,2020,January,Friday,10,10,12,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,,TO,8,DBL,1200.0,STOLEN,9661,"{'type': 'Point', 'coordinates': (-79.37639111, 43.64874921)}"
-9544,11732,GO-20161195660,THEFT UNDER - BICYCLE,2016-07-06T00:00:00,2016,July,Wednesday,6,188,0,2016-07-08T00:00:00,2016,July,Friday,8,190,19,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GIANT,ROAM 3,MT,18,BLUBLK,400.0,STOLEN,9531,"{'type': 'Point', 'coordinates': (-79.38201616, 43.6683485)}"
-9545,11733,GO-20161195660,THEFT UNDER - BICYCLE,2016-07-06T00:00:00,2016,July,Wednesday,6,188,0,2016-07-08T00:00:00,2016,July,Friday,8,190,19,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GIANT,ROAM 2,MT,18,BLUGRN,350.0,STOLEN,9532,"{'type': 'Point', 'coordinates': (-79.38201616, 43.6683485)}"
-9546,11777,GO-20169007098,THEFT UNDER,2016-07-12T00:00:00,2016,July,Tuesday,12,194,7,2016-07-12T00:00:00,2016,July,Tuesday,12,194,17,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,,MT,9,WHI,150.0,STOLEN,9533,"{'type': 'Point', 'coordinates': (-79.37691204, 43.65291764)}"
-9547,11784,GO-20169007112,THEFT UNDER,2016-07-09T00:00:00,2016,July,Saturday,9,191,15,2016-07-12T00:00:00,2016,July,Tuesday,12,194,10,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,MT,21,,700.0,STOLEN,9534,"{'type': 'Point', 'coordinates': (-79.38581622, 43.66799576)}"
-9548,11805,GO-20169007197,THEFT UNDER,2016-07-13T00:00:00,2016,July,Wednesday,13,195,22,2016-07-14T00:00:00,2016,July,Thursday,14,196,14,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,1,BLK,327.0,STOLEN,9535,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-9549,11820,GO-20169007280,THEFT UNDER,2016-07-16T00:00:00,2016,July,Saturday,16,198,1,2016-07-16T00:00:00,2016,July,Saturday,16,198,18,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,HF,HUFFY-KOLO,MT,40,GRY,193.0,STOLEN,9536,"{'type': 'Point', 'coordinates': (-79.37906116, 43.66495458)}"
-9550,11840,GO-20169007374,THEFT UNDER - BICYCLE,2016-07-18T00:00:00,2016,July,Monday,18,200,0,2016-07-18T00:00:00,2016,July,Monday,18,200,21,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,LUNGAVITA,RC,1,GRY,1200.0,STOLEN,9537,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-9551,11855,GO-20169007464,THEFT UNDER,2016-07-01T00:00:00,2016,July,Friday,1,183,9,2016-07-20T00:00:00,2016,July,Wednesday,20,202,12,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,UK,SEAT + POST + L,OT,1,BLK,250.0,STOLEN,9538,"{'type': 'Point', 'coordinates': (-79.37953592, 43.65629127)}"
-9552,11859,GO-20169007521,THEFT UNDER - BICYCLE,2016-07-19T00:00:00,2016,July,Tuesday,19,201,21,2016-07-20T00:00:00,2016,July,Wednesday,20,202,22,D51,Toronto,75,Church-Yonge Corridor (75),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UK,EVO EDGE 2 COMB,OT,21,WHI,600.0,STOLEN,9539,"{'type': 'Point', 'coordinates': (-79.37943497, 43.65603477)}"
-9553,11861,GO-20169007537,THEFT UNDER,2016-07-20T00:00:00,2016,July,Wednesday,20,202,18,2016-07-21T00:00:00,2016,July,Thursday,21,203,22,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,SC,04S2786A,OT,21,RED,550.0,STOLEN,9540,"{'type': 'Point', 'coordinates': (-79.37583535, 43.65495451)}"
-9554,11862,GO-20169007539,THEFT UNDER,2016-07-18T00:00:00,2016,July,Monday,18,200,16,2016-07-21T00:00:00,2016,July,Thursday,21,203,9,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,36V ELECTRIC,EL,7,WHI,600.0,STOLEN,9541,"{'type': 'Point', 'coordinates': (-79.37907575, 43.66125894)}"
-9555,11872,GO-20169007591,THEFT UNDER - BICYCLE,2016-06-22T00:00:00,2016,June,Wednesday,22,174,9,2016-07-21T00:00:00,2016,July,Thursday,21,203,21,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,CC,APEX 26,MT,24,WHI,660.0,STOLEN,9542,"{'type': 'Point', 'coordinates': (-79.37633027, 43.65851354)}"
-9556,11902,GO-20169007713,THEFT UNDER - BICYCLE,2016-06-23T00:00:00,2016,June,Thursday,23,175,8,2016-07-25T00:00:00,2016,July,Monday,25,207,20,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,CA,SYNAPSE,RC,21,DBL,1500.0,STOLEN,9543,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-9557,11908,GO-20169007743,THEFT UNDER - BICYCLE,2016-07-25T00:00:00,2016,July,Monday,25,207,9,2016-07-25T00:00:00,2016,July,Monday,25,207,19,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,DURANGO,MT,2,GRY,900.0,STOLEN,9544,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-9558,11945,GO-20169007911,THEFT UNDER - BICYCLE,2016-07-25T00:00:00,2016,July,Monday,25,207,13,2016-07-29T00:00:00,2016,July,Friday,29,211,12,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,25,BLK,500.0,STOLEN,9545,"{'type': 'Point', 'coordinates': (-79.38245382, 43.66941071)}"
-9559,11966,GO-20169008010,THEFT UNDER,2016-07-28T00:00:00,2016,July,Thursday,28,210,18,2016-07-31T00:00:00,2016,July,Sunday,31,213,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,AVENUE 700C HYB,RG,18,BLU,400.0,STOLEN,9546,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-9560,11967,GO-20169008007,THEFT UNDER,2016-07-26T00:00:00,2016,July,Tuesday,26,208,14,2016-07-28T00:00:00,2016,July,Thursday,28,210,8,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,RG,21,BLK,600.0,STOLEN,9547,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-9561,11975,GO-20169008087,THEFT UNDER - BICYCLE,2016-08-02T00:00:00,2016,August,Tuesday,2,215,13,2016-08-02T00:00:00,2016,August,Tuesday,2,215,14,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,VALENCE,RC,16,BLU,1000.0,STOLEN,9548,"{'type': 'Point', 'coordinates': (-79.38159626, 43.66440307)}"
-9562,11978,GO-20169008119,B&E,2016-07-28T00:00:00,2016,July,Thursday,28,210,9,2016-08-02T00:00:00,2016,August,Tuesday,2,215,22,D51,Toronto,75,Church-Yonge Corridor (75),Schools During Supervised Activity,Educational,OT,,RG,24,BLK,500.0,STOLEN,9549,"{'type': 'Point', 'coordinates': (-79.37827718, 43.65626242)}"
-9563,11985,GO-20169008151,THEFT UNDER - BICYCLE,2016-07-27T00:00:00,2016,July,Wednesday,27,209,18,2016-08-03T00:00:00,2016,August,Wednesday,3,216,17,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,6,WHI,250.0,STOLEN,9550,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-9564,11987,GO-20161356170,THEFT UNDER - BICYCLE,2016-07-27T00:00:00,2016,July,Wednesday,27,209,23,2016-08-02T00:00:00,2016,August,Tuesday,2,215,11,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,MT,24,GLDBLK,900.0,STOLEN,9551,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-9565,12027,GO-20169008401,THEFT UNDER,2016-08-07T00:00:00,2016,August,Sunday,7,220,21,2016-08-08T00:00:00,2016,August,Monday,8,221,19,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ALIGHT,RG,7,,200.0,STOLEN,9552,"{'type': 'Point', 'coordinates': (-79.37215317, 43.64913066)}"
-9566,12072,GO-20161406256,THEFT OF EBIKE OVER $5000,2016-08-09T00:00:00,2016,August,Tuesday,9,222,20,2016-08-10T00:00:00,2016,August,Wednesday,10,223,0,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,EL,1,BLK,900.0,STOLEN,9553,"{'type': 'Point', 'coordinates': (-79.37783798, 43.66217202)}"
-9567,5823,GO-20209001412,THEFT UNDER,2020-01-13T00:00:00,2020,January,Monday,13,13,15,2020-01-13T00:00:00,2020,January,Monday,13,13,15,D52,Toronto,76,Bay Street Corridor (76),"Open Areas (Lakes, Parks, Rivers)",Outside,EM,SUBURBAN,EL,30,BLK,2400.0,STOLEN,10018,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-9568,12087,GO-20169008680,THEFT UNDER - BICYCLE,2016-08-12T00:00:00,2016,August,Friday,12,225,23,2016-08-13T00:00:00,2016,August,Saturday,13,226,13,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,MOUNTAIN BIKE,MT,21,LBL,500.0,STOLEN,9554,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-9569,12093,GO-20161441140,B&E,2016-08-15T00:00:00,2016,August,Monday,15,228,3,2016-08-15T00:00:00,2016,August,Monday,15,228,12,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,TREK,8.6DS,MT,30,GRY,2000.0,STOLEN,9555,"{'type': 'Point', 'coordinates': (-79.38159626, 43.66440307)}"
-9570,12130,GO-20169008993,THEFT UNDER - BICYCLE,2016-08-18T00:00:00,2016,August,Thursday,18,231,8,2016-08-18T00:00:00,2016,August,Thursday,18,231,11,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,1,LBL,300.0,STOLEN,9556,"{'type': 'Point', 'coordinates': (-79.37953592, 43.65629127)}"
-9571,12148,GO-20161481300,THEFT OVER - BICYCLE,2016-08-21T00:00:00,2016,August,Sunday,21,234,15,2016-08-21T00:00:00,2016,August,Sunday,21,234,16,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,ESCAPE RX,EL,18,BLUBLK,5700.0,STOLEN,9557,"{'type': 'Point', 'coordinates': (-79.38581622, 43.66799576)}"
-9572,12156,GO-20169009138,THEFT UNDER,2016-08-19T00:00:00,2016,August,Friday,19,232,19,2016-08-20T00:00:00,2016,August,Saturday,20,233,15,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,KH,URBAN XCAPE,RG,8,BLK,600.0,STOLEN,9558,"{'type': 'Point', 'coordinates': (-79.38491403, 43.66584039)}"
-9573,12169,GO-20169009178,THEFT UNDER - BICYCLE,2016-08-21T00:00:00,2016,August,Sunday,21,234,13,2016-08-21T00:00:00,2016,August,Sunday,21,234,13,D51,Toronto,75,Church-Yonge Corridor (75),Schools During Un-Supervised Activity,Educational,SC,,MT,21,PLE,0.0,STOLEN,9559,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-9574,12170,GO-20169009211,THEFT UNDER - BICYCLE,2016-08-21T00:00:00,2016,August,Sunday,21,234,8,2016-08-22T00:00:00,2016,August,Monday,22,235,1,D51,Toronto,75,Church-Yonge Corridor (75),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,SC,GTX2 DUAL SPORT,RG,7,,500.0,STOLEN,9560,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-9575,12183,GO-20169009328,THEFT UNDER,2016-08-22T00:00:00,2016,August,Monday,22,235,17,2016-08-23T00:00:00,2016,August,Tuesday,23,236,12,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,GI,ESCAPE 3,OT,21,BLK,499.0,STOLEN,9561,"{'type': 'Point', 'coordinates': (-79.3811853, 43.65703802)}"
-9576,12223,GO-20169009623,THEFT UNDER,2016-08-19T00:00:00,2016,August,Friday,19,232,15,2016-08-29T00:00:00,2016,August,Monday,29,242,9,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,,RG,12,GRY,240.0,STOLEN,9562,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-9577,12233,GO-20161537842,B&E,2016-08-24T00:00:00,2016,August,Wednesday,24,237,17,2016-08-30T00:00:00,2016,August,Tuesday,30,243,13,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,SCHWINN,ONUS,MT,10,GRY,,STOLEN,9563,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-9578,12240,GO-20161533559,THEFT UNDER,2016-08-29T00:00:00,2016,August,Monday,29,242,17,2016-08-29T00:00:00,2016,August,Monday,29,242,19,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,OT,12,,,STOLEN,9564,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-9579,12241,GO-20161536739,THEFT UNDER - BICYCLE,2016-08-28T00:00:00,2016,August,Sunday,28,241,15,2016-08-30T00:00:00,2016,August,Tuesday,30,243,10,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,MT,21,BLUWHI,750.0,STOLEN,9565,"{'type': 'Point', 'coordinates': (-79.38091931, 43.66572241)}"
-9580,12246,GO-20169009872,THEFT UNDER,2016-09-01T00:00:00,2016,September,Thursday,1,245,17,2016-09-02T00:00:00,2016,September,Friday,2,246,15,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,HF,,MT,18,,169.0,STOLEN,9566,"{'type': 'Point', 'coordinates': (-79.37215317, 43.64913066)}"
-9581,12247,GO-20169009878,THEFT UNDER,2016-09-02T00:00:00,2016,September,Friday,2,246,14,2016-09-02T00:00:00,2016,September,Friday,2,246,17,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,UK,D-STREET,RG,1,RED,550.0,STOLEN,9567,"{'type': 'Point', 'coordinates': (-79.3774505, 43.65131026)}"
-9582,12291,GO-20169010128,THEFT UNDER,2016-09-07T00:00:00,2016,September,Wednesday,7,251,16,2016-09-08T00:00:00,2016,September,Thursday,8,252,10,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RA,,RG,18,,50.0,STOLEN,9568,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-9583,12382,GO-20169010631,THEFT UNDER - BICYCLE,2016-09-11T00:00:00,2016,September,Sunday,11,255,11,2016-09-18T00:00:00,2016,September,Sunday,18,262,12,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,GIANT,RG,18,WHI,600.0,STOLEN,9569,"{'type': 'Point', 'coordinates': (-79.37583535, 43.65495451)}"
-9584,12383,GO-20161656344,THEFT UNDER - BICYCLE,2016-09-17T00:00:00,2016,September,Saturday,17,261,16,2016-09-17T00:00:00,2016,September,Saturday,17,261,17,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NAKAMURA,ROYAL M700C,MT,21,BLK,250.0,STOLEN,9570,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-9585,12403,GO-20169010765,THEFT UNDER - BICYCLE,2016-09-20T00:00:00,2016,September,Tuesday,20,264,7,2016-09-20T00:00:00,2016,September,Tuesday,20,264,8,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SCULTURA,RG,1,BLK,8000.0,STOLEN,9571,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-9586,12407,GO-20161673181,THEFT UNDER - BICYCLE,2016-09-20T00:00:00,2016,September,Tuesday,20,264,9,2016-09-20T00:00:00,2016,September,Tuesday,20,264,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,MTN BIKE,MT,5,BLKGRN,900.0,STOLEN,9572,"{'type': 'Point', 'coordinates': (-79.38159626, 43.66440307)}"
-9587,12422,GO-20169010882,THEFT UNDER - BICYCLE,2016-09-21T00:00:00,2016,September,Wednesday,21,265,17,2016-09-21T00:00:00,2016,September,Wednesday,21,265,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,RG,21,RED,300.0,STOLEN,9573,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-9588,12426,GO-20169010882,THEFT UNDER - BICYCLE,2016-09-21T00:00:00,2016,September,Wednesday,21,265,17,2016-09-21T00:00:00,2016,September,Wednesday,21,265,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,RG,21,RED,,STOLEN,9574,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-9589,12429,GO-20169010928,THEFT UNDER,2016-09-22T00:00:00,2016,September,Thursday,22,266,9,2016-09-22T00:00:00,2016,September,Thursday,22,266,18,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,2016 GIANT ESCA,RG,7,BLK,565.0,STOLEN,9575,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-9590,12447,GO-20169011062,THEFT FROM MOTOR VEHICLE UNDER,2016-09-25T00:00:00,2016,September,Sunday,25,269,0,2016-09-25T00:00:00,2016,September,Sunday,25,269,11,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ORIGIMA,FO,5,GRY,1500.0,STOLEN,9576,"{'type': 'Point', 'coordinates': (-79.37759057, 43.66156859)}"
-9591,12490,GO-20169011276,THEFT UNDER - BICYCLE,2016-09-28T00:00:00,2016,September,Wednesday,28,272,21,2016-09-28T00:00:00,2016,September,Wednesday,28,272,22,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,OT,RONIN,RC,21,BLK,1600.0,STOLEN,9577,"{'type': 'Point', 'coordinates': (-79.37849549, 43.65985781)}"
-9592,12567,GO-20169011669,THEFT UNDER - BICYCLE,2016-10-03T00:00:00,2016,October,Monday,3,277,17,2016-10-06T00:00:00,2016,October,Thursday,6,280,16,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MO,04MGG09A,RG,6,GRY,300.0,STOLEN,9583,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-9593,12572,GO-20169011687,THEFT UNDER,2016-09-07T00:00:00,2016,September,Wednesday,7,251,12,2016-10-07T00:00:00,2016,October,Friday,7,281,11,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,OT,,TO,21,BLK,0.0,STOLEN,9584,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-9594,20347,GO-20189026314,THEFT UNDER - BICYCLE,2018-08-13T00:00:00,2018,August,Monday,13,225,17,2018-08-14T00:00:00,2018,August,Tuesday,14,226,10,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE 3 7SP TO,RG,21,BLK,575.0,STOLEN,9585,"{'type': 'Point', 'coordinates': (-79.37827718, 43.65626242)}"
-9595,13470,GO-2019436744,THEFT UNDER,2019-03-09T00:00:00,2019,March,Saturday,9,68,21,2019-03-09T00:00:00,2019,March,Saturday,9,68,21,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,ALPHA 29 ER,OT,21,BLKGRN,175.0,STOLEN,9586,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-9596,20849,GO-20149001765,THEFT UNDER,2014-03-03T00:00:00,2014,March,Monday,3,62,19,2014-03-04T00:00:00,2014,March,Tuesday,4,63,12,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,MT,21,RED,80.0,STOLEN,9587,"{'type': 'Point', 'coordinates': (-79.37583535, 43.65495451)}"
-9597,17454,GO-20149005206,THEFT UNDER,2014-07-07T00:00:00,2014,July,Monday,7,188,20,2014-07-21T00:00:00,2014,July,Monday,21,202,17,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,14 ESCAPE 0 W M,RG,30,WHI,800.0,STOLEN,9588,"{'type': 'Point', 'coordinates': (-79.37953592, 43.65629127)}"
-9598,20350,GO-20189026460,THEFT UNDER - BICYCLE,2018-08-14T00:00:00,2018,August,Tuesday,14,226,16,2018-08-15T00:00:00,2018,August,Wednesday,15,227,0,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,UK,BEASLEY,MT,8,BLK,525.0,STOLEN,9589,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-9599,20850,GO-20141649320,THEFT UNDER,2014-03-05T00:00:00,2014,March,Wednesday,5,64,20,2014-03-06T00:00:00,2014,March,Thursday,6,65,9,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,EMMA,BIKE,EL,1,BGE,2000.0,STOLEN,9590,"{'type': 'Point', 'coordinates': (-79.37872961, 43.654321780000004)}"
-9600,23206,GO-20181756666,THEFT UNDER - BICYCLE,2018-09-22T00:00:00,2018,September,Saturday,22,265,11,2018-09-22T00:00:00,2018,September,Saturday,22,265,11,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,FUJI,BRAVADO 2.3,RC,22,BLK,2500.0,STOLEN,9591,"{'type': 'Point', 'coordinates': (-79.37516377, 43.6518061)}"
-9601,13475,GO-2019647542,THEFT OF EBIKE UNDER $5000,2019-04-10T00:00:00,2019,April,Wednesday,10,100,13,2019-04-10T00:00:00,2019,April,Wednesday,10,100,14,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,URBAN RIDER,EL,7,BLK,2000.0,STOLEN,9592,"{'type': 'Point', 'coordinates': (-79.38411783, 43.66390399)}"
-9602,17459,GO-20149005306,THEFT UNDER,2014-07-24T00:00:00,2014,July,Thursday,24,205,22,2014-07-25T00:00:00,2014,July,Friday,25,206,3,D51,Toronto,75,Church-Yonge Corridor (75),"Open Areas (Lakes, Parks, Rivers)",Outside,CC,CCM29ER,MT,21,BLK,600.0,STOLEN,9593,"{'type': 'Point', 'coordinates': (-79.38491403, 43.66584039)}"
-9603,20852,GO-20141778734,THEFT UNDER,2014-03-27T00:00:00,2014,March,Thursday,27,86,4,2014-03-27T00:00:00,2014,March,Thursday,27,86,19,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,H5,EL,5,BLK,3000.0,STOLEN,9594,"{'type': 'Point', 'coordinates': (-79.37642159, 43.65482917)}"
-9604,23207,GO-20189031746,THEFT UNDER - BICYCLE,2018-09-19T00:00:00,2018,September,Wednesday,19,262,12,2018-09-24T00:00:00,2018,September,Monday,24,267,16,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,TR,ZEKTOR 2,RG,8,BLK,1458.0,STOLEN,9595,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-9605,13481,GO-2019713702,THEFT UNDER,2019-04-17T00:00:00,2019,April,Wednesday,17,107,20,2019-04-20T00:00:00,2019,April,Saturday,20,110,16,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,STUMP JUMPER,MT,21,BLKWHI,2700.0,STOLEN,9596,"{'type': 'Point', 'coordinates': (-79.37437294, 43.64992152)}"
-9606,20354,GO-20189026713,THEFT UNDER - BICYCLE,2018-08-16T00:00:00,2018,August,Thursday,16,228,13,2018-08-16T00:00:00,2018,August,Thursday,16,228,19,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ORPHEO,RG,21,GRY,1000.0,STOLEN,9597,"{'type': 'Point', 'coordinates': (-79.37953592, 43.65629127)}"
-9607,17465,GO-20149005736,THEFT UNDER,2014-08-08T00:00:00,2014,August,Friday,8,220,8,2014-08-08T00:00:00,2014,August,Friday,8,220,19,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,12 DASH 4,TO,12,LBL,650.0,STOLEN,9598,"{'type': 'Point', 'coordinates': (-79.38581622, 43.66799576)}"
-9608,13487,GO-2019926063,B&E,2019-05-18T00:00:00,2019,May,Saturday,18,138,22,2019-05-21T00:00:00,2019,May,Tuesday,21,141,13,D51,Toronto,75,Church-Yonge Corridor (75),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,OTHER,RACING,RC,21,WHI,,STOLEN,9599,"{'type': 'Point', 'coordinates': (-79.37639111, 43.64874921)}"
-9609,20853,GO-20141837662,THEFT UNDER,2014-04-05T00:00:00,2014,April,Saturday,5,95,19,2014-04-06T00:00:00,2014,April,Sunday,6,96,8,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,MT,12,GRNWHI,100.0,STOLEN,9600,"{'type': 'Point', 'coordinates': (-79.37953592, 43.65629127)}"
-9610,20356,GO-20189027197,THEFT UNDER - BICYCLE,2018-08-20T00:00:00,2018,August,Monday,20,232,15,2018-08-20T00:00:00,2018,August,Monday,20,232,18,D51,Toronto,75,Church-Yonge Corridor (75),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,CC,,RC,50,BLK,100.0,STOLEN,9601,"{'type': 'Point', 'coordinates': (-79.37830693, 43.66628508)}"
-9611,23208,GO-20181782449,THEFT UNDER - BICYCLE,2018-09-15T00:00:00,2018,September,Saturday,15,258,15,2018-09-26T00:00:00,2018,September,Wednesday,26,269,11,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,TALON 2,MT,21,BLKBLU,,STOLEN,9602,"{'type': 'Point', 'coordinates': (-79.37562599, 43.6568205)}"
-9612,17470,GO-20149005990,THEFT UNDER,2014-08-15T00:00:00,2014,August,Friday,15,227,15,2014-08-15T00:00:00,2014,August,Friday,15,227,18,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,EL,35,YEL,300.0,STOLEN,9603,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-9613,13488,GO-20199015976,THEFT UNDER,2019-05-22T00:00:00,2019,May,Wednesday,22,142,12,2019-05-23T00:00:00,2019,May,Thursday,23,143,10,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RG,24,BLK,1200.0,STOLEN,9604,"{'type': 'Point', 'coordinates': (-79.37572376, 43.64746036)}"
-9614,20854,GO-20149002850,THEFT UNDER,2014-04-14T00:00:00,2014,April,Monday,14,104,12,2014-04-14T00:00:00,2014,April,Monday,14,104,19,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,TR,10 2.1C,RC,10,BLU,1500.0,STOLEN,9605,"{'type': 'Point', 'coordinates': (-79.37700237, 43.66017519)}"
-9615,19608,GO-20209031987,THEFT UNDER,2020-12-13T00:00:00,2020,December,Sunday,13,348,6,2020-12-14T00:00:00,2020,December,Monday,14,349,14,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,21,GRY,350.0,RECOVERED,9808,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-9616,20855,GO-20141922632,THEFT UNDER,2014-04-19T00:00:00,2014,April,Saturday,19,109,20,2014-04-19T00:00:00,2014,April,Saturday,19,109,21,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,MAX,EL,3,ONG,1300.0,STOLEN,9606,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-9617,20857,GO-20142015829,THEFT UNDER,2014-05-04T00:00:00,2014,May,Sunday,4,124,8,2014-05-04T00:00:00,2014,May,Sunday,4,124,21,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,,EL,0,YEL,1000.0,STOLEN,9607,"{'type': 'Point', 'coordinates': (-79.37872961, 43.654321780000004)}"
-9618,20873,GO-20149004315,THEFT UNDER,2014-06-21T00:00:00,2014,June,Saturday,21,172,15,2014-06-21T00:00:00,2014,June,Saturday,21,172,19,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SIRRUS ELITE,RG,27,SIL,900.0,STOLEN,9608,"{'type': 'Point', 'coordinates': (-79.37382409, 43.64862739)}"
-9619,20882,GO-20149004743,THEFT UNDER,2014-06-29T00:00:00,2014,June,Sunday,29,180,20,2014-07-06T00:00:00,2014,July,Sunday,6,187,19,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,12 CROSSTRAIL X,MT,18,BLK,850.0,STOLEN,9609,"{'type': 'Point', 'coordinates': (-79.37796823, 43.66213714)}"
-9620,20887,GO-20149004875,THEFT UNDER,2014-07-10T00:00:00,2014,July,Thursday,10,191,14,2014-07-10T00:00:00,2014,July,Thursday,10,191,18,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,UK,,TO,18,GRY,,STOLEN,9610,"{'type': 'Point', 'coordinates': (-79.37516377, 43.6518061)}"
-9621,20890,GO-20149005102,THEFT UNDER,2014-07-18T00:00:00,2014,July,Friday,18,199,19,2014-07-18T00:00:00,2014,July,Friday,18,199,21,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,RG,10,BLK,400.0,STOLEN,9611,"{'type': 'Point', 'coordinates': (-79.37215317, 43.64913066)}"
-9622,20896,GO-20142560173,THEFT UNDER,2014-07-14T00:00:00,2014,July,Monday,14,195,19,2014-07-24T00:00:00,2014,July,Thursday,24,205,5,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OPUS,,MT,6,REDWHI,990.0,STOLEN,9612,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-9623,20911,GO-20149005891,THEFT UNDER,2014-08-16T00:00:00,2014,August,Saturday,16,228,23,2014-08-17T00:00:00,2014,August,Sunday,17,229,13,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,VOLTAGE,RG,21,BLK,750.0,RECOVERED,9613,"{'type': 'Point', 'coordinates': (-79.38491403, 43.66584039)}"
-9624,20912,GO-20149005901,THEFT UNDER,2014-08-11T00:00:00,2014,August,Monday,11,223,9,2014-08-13T00:00:00,2014,August,Wednesday,13,225,19,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ENDUROSPORT,TO,14,BLK,500.0,STOLEN,9614,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-9625,20915,GO-20149006186,THEFT UNDER,2014-08-17T00:00:00,2014,August,Sunday,17,229,19,2014-08-21T00:00:00,2014,August,Thursday,21,233,17,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM XR 2,OT,21,WHI,1150.0,STOLEN,9615,"{'type': 'Point', 'coordinates': (-79.37215317, 43.64913066)}"
-9626,20921,GO-20149006793,THEFT UNDER,2014-09-10T00:00:00,2014,September,Wednesday,10,253,22,2014-09-11T00:00:00,2014,September,Thursday,11,254,12,D51,Toronto,75,Church-Yonge Corridor (75),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,TRAVELER 26''CO,RG,21,WHI,170.0,STOLEN,9616,"{'type': 'Point', 'coordinates': (-79.37907575, 43.66125894)}"
-9627,20922,GO-20149006922,THEFT UNDER,2014-09-15T00:00:00,2014,September,Monday,15,258,9,2014-09-15T00:00:00,2014,September,Monday,15,258,18,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,OT,,RG,21,BLU,600.0,STOLEN,9617,"{'type': 'Point', 'coordinates': (-79.37953592, 43.65629127)}"
-9628,20923,GO-20149006971,THEFT UNDER,2014-09-12T00:00:00,2014,September,Friday,12,255,16,2014-09-17T00:00:00,2014,September,Wednesday,17,260,11,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,RA,DISCOVERY,MT,21,BLU,0.0,STOLEN,9618,"{'type': 'Point', 'coordinates': (-79.37700237, 43.66017519)}"
-9629,20925,GO-20142948130,THEFT UNDER,2014-09-20T00:00:00,2014,September,Saturday,20,263,14,2014-09-20T00:00:00,2014,September,Saturday,20,263,15,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,FELT,VERZA CITY,RG,21,BLK,1000.0,STOLEN,9619,"{'type': 'Point', 'coordinates': (-79.38245382, 43.66941071)}"
-9630,20927,GO-20149007114,THEFT UNDER,2014-09-16T00:00:00,2014,September,Tuesday,16,259,18,2014-09-22T00:00:00,2014,September,Monday,22,265,13,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,IH,JOURNEY DX W,RG,21,GRY,0.0,STOLEN,9620,"{'type': 'Point', 'coordinates': (-79.37849549, 43.65985781)}"
-9631,20934,GO-20143074549,THEFT UNDER,2014-10-09T00:00:00,2014,October,Thursday,9,282,14,2014-10-09T00:00:00,2014,October,Thursday,9,282,17,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,,OT,18,BLK,300.0,STOLEN,9621,"{'type': 'Point', 'coordinates': (-79.37382409, 43.64862739)}"
-9632,20935,GO-20143081968,THEFT UNDER,2014-10-10T00:00:00,2014,October,Friday,10,283,14,2014-10-11T00:00:00,2014,October,Saturday,11,284,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SILVER SPRING,,RC,12,WHI,,STOLEN,9622,"{'type': 'Point', 'coordinates': (-79.37583535, 43.65495451)}"
-9633,20936,GO-20143088743,PROPERTY - FOUND,2014-10-12T00:00:00,2014,October,Sunday,12,285,0,2014-10-12T00:00:00,2014,October,Sunday,12,285,0,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,RC,99,LBL,,RECOVERED,9623,"{'type': 'Point', 'coordinates': (-79.38048097, 43.66464717)}"
-9634,20940,GO-20143179755,THEFT UNDER,2014-10-26T00:00:00,2014,October,Sunday,26,299,13,2014-10-26T00:00:00,2014,October,Sunday,26,299,14,D51,Toronto,75,Church-Yonge Corridor (75),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,RG,5,RED,100.0,STOLEN,9624,"{'type': 'Point', 'coordinates': (-79.3749313, 43.65514877)}"
-9635,20942,GO-20143220566,THEFT UNDER,2014-11-01T00:00:00,2014,November,Saturday,1,305,16,2014-11-01T00:00:00,2014,November,Saturday,1,305,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,,MT,18,PLE,100.0,STOLEN,9625,"{'type': 'Point', 'coordinates': (-79.38132262, 43.6667026)}"
-9636,20946,GO-20143253012,THEFT UNDER,2014-11-06T00:00:00,2014,November,Thursday,6,310,16,2014-11-06T00:00:00,2014,November,Thursday,6,310,21,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,,MT,18,BLK,150.0,STOLEN,9626,"{'type': 'Point', 'coordinates': (-79.37642159, 43.65482917)}"
-9637,20947,GO-20149008125,THEFT UNDER,2014-11-10T00:00:00,2014,November,Monday,10,314,19,2014-11-11T00:00:00,2014,November,Tuesday,11,315,10,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,CORSA,RG,9,BLK,400.0,STOLEN,9627,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-9638,20949,GO-20143373975,THEFT UNDER,2014-11-25T00:00:00,2014,November,Tuesday,25,329,12,2014-11-26T00:00:00,2014,November,Wednesday,26,330,14,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,MARIN OR MARINO,,TO,10,SILBLK,500.0,STOLEN,9628,"{'type': 'Point', 'coordinates': (-79.37585959, 43.66043919)}"
-9639,22645,GO-20199029789,THEFT UNDER,2019-09-12T00:00:00,2019,September,Thursday,12,255,10,2019-09-12T00:00:00,2019,September,Thursday,12,255,16,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE,RG,21,WHI,1000.0,STOLEN,9644,"{'type': 'Point', 'coordinates': (-79.37849549, 43.65985781)}"
-9640,20951,GO-20149008651,THEFT UNDER,2014-12-08T00:00:00,2014,December,Monday,8,342,9,2014-12-09T00:00:00,2014,December,Tuesday,9,343,18,D51,Toronto,75,Church-Yonge Corridor (75),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,SILHOUETTE,RG,21,WHI,340.0,STOLEN,9629,"{'type': 'Point', 'coordinates': (-79.37633027, 43.65851354)}"
-9641,20952,GO-20143521700,THEFT UNDER,2014-12-03T00:00:00,2014,December,Wednesday,3,337,11,2014-12-20T00:00:00,2014,December,Saturday,20,354,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,AMEGO,BOLD,EL,1,RED,4200.0,STOLEN,9630,"{'type': 'Point', 'coordinates': (-79.37953592, 43.65629127)}"
-9642,20953,GO-20149008933,THEFT UNDER,2014-12-17T00:00:00,2014,December,Wednesday,17,351,0,2014-12-24T00:00:00,2014,December,Wednesday,24,358,0,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KO,DR DEW FS,OT,21,GRN,700.0,RECOVERED,9631,"{'type': 'Point', 'coordinates': (-79.3738772, 43.65536132)}"
-9643,20962,GO-2015701171,B&E,2015-04-27T00:00:00,2015,April,Monday,27,117,9,2015-04-28T00:00:00,2015,April,Tuesday,28,118,8,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,RALEIGH,UNKNOWN,RG,21,BRNWHI,,STOLEN,9632,"{'type': 'Point', 'coordinates': (-79.37941202, 43.66889376)}"
-9644,20965,GO-20159002534,THEFT UNDER,2015-05-07T00:00:00,2015,May,Thursday,7,127,18,2015-05-07T00:00:00,2015,May,Thursday,7,127,22,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SU,SUPERCYCLE BEAS,MT,21,BLU,239.0,STOLEN,9633,"{'type': 'Point', 'coordinates': (-79.38201616, 43.6683485)}"
-9645,22607,GO-20199023625,THEFT UNDER,2019-07-20T00:00:00,2019,July,Saturday,20,201,10,2019-07-24T00:00:00,2019,July,Wednesday,24,205,23,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,BL,,MT,3,BLU,0.0,STOLEN,9634,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-9646,22610,GO-20191433137,PROPERTY - FOUND,2019-07-30T00:00:00,2019,July,Tuesday,30,211,9,2019-07-30T00:00:00,2019,July,Tuesday,30,211,12,D51,Toronto,75,Church-Yonge Corridor (75),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,SUPERCYCLE,,MT,0,BLKRED,,UNKNOWN,9635,"{'type': 'Point', 'coordinates': (-79.38159626, 43.66440307)}"
-9647,22690,GO-202036484,B&E,2019-12-28T00:00:00,2019,December,Saturday,28,362,0,2020-01-06T00:00:00,2020,January,Monday,6,6,20,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GIANT,,RG,0,GRY,1000.0,STOLEN,9660,"{'type': 'Point', 'coordinates': (-79.38245382, 43.66941071)}"
-9648,22619,GO-20199025888,THEFT UNDER - BICYCLE,2019-08-09T00:00:00,2019,August,Friday,9,221,14,2019-08-12T00:00:00,2019,August,Monday,12,224,14,D51,Toronto,75,Church-Yonge Corridor (75),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,TR,LEXA,RG,9,BLK,1000.0,STOLEN,9636,"{'type': 'Point', 'coordinates': (-79.38581622, 43.66799576)}"
-9649,22620,GO-20191529334,THEFT UNDER - BICYCLE,2019-08-08T00:00:00,2019,August,Thursday,8,220,12,2019-08-14T00:00:00,2019,August,Wednesday,14,226,16,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FUJI,PROFESSIONAL 3.,OT,20,REDBLK,1200.0,STOLEN,9637,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-9650,22623,GO-20199026552,THEFT UNDER,2019-08-15T00:00:00,2019,August,Thursday,15,227,22,2019-08-16T00:00:00,2019,August,Friday,16,228,21,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,FX3,OT,24,BLK,1040.0,STOLEN,9638,"{'type': 'Point', 'coordinates': (-79.37410556, 43.64926232)}"
-9651,22629,GO-20199027329,THEFT UNDER,2019-08-22T00:00:00,2019,August,Thursday,22,234,18,2019-08-22T00:00:00,2019,August,Thursday,22,234,19,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,THE BARON,OT,1,BLK,395.0,STOLEN,9639,"{'type': 'Point', 'coordinates': (-79.37583535, 43.65495451)}"
-9652,22633,GO-20191600353,THEFT OF EBIKE UNDER $5000,2019-08-22T00:00:00,2019,August,Thursday,22,234,4,2019-08-24T00:00:00,2019,August,Saturday,24,236,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,AMEGO,HUSKY,EL,5,BLK,2600.0,STOLEN,9640,"{'type': 'Point', 'coordinates': (-79.37734964, 43.66099991)}"
-9653,22635,GO-20199027757,THEFT UNDER,2019-08-24T00:00:00,2019,August,Saturday,24,236,9,2019-08-26T00:00:00,2019,August,Monday,26,238,14,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,SU,,RG,7,TRQ,225.0,STOLEN,9641,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-9654,22642,GO-20199029396,THEFT UNDER,2019-09-09T00:00:00,2019,September,Monday,9,252,11,2019-09-09T00:00:00,2019,September,Monday,9,252,21,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,6,GRN,0.0,STOLEN,9642,"{'type': 'Point', 'coordinates': (-79.3811853, 43.65703802)}"
-9655,22643,GO-20199029678,THEFT UNDER,2019-09-08T00:00:00,2019,September,Sunday,8,251,11,2019-09-11T00:00:00,2019,September,Wednesday,11,254,21,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,CC,ORION,RG,21,WHI,400.0,STOLEN,9643,"{'type': 'Point', 'coordinates': (-79.38159830000001, 43.66737287)}"
-9656,22646,GO-20199030074,THEFT UNDER,2019-09-14T00:00:00,2019,September,Saturday,14,257,20,2019-09-15T00:00:00,2019,September,Sunday,15,258,10,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,17PROJEKT21,RG,21,BLK,499.0,STOLEN,9645,"{'type': 'Point', 'coordinates': (-79.38201616, 43.6683485)}"
-9657,22648,GO-20199030282,THEFT UNDER,2019-08-27T00:00:00,2019,August,Tuesday,27,239,17,2019-09-16T00:00:00,2019,September,Monday,16,259,19,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,NEXT,RG,7,GRN,150.0,STOLEN,9646,"{'type': 'Point', 'coordinates': (-79.38159830000001, 43.66737287)}"
-9658,22652,GO-20199031955,THEFT UNDER - BICYCLE,2019-09-28T00:00:00,2019,September,Saturday,28,271,8,2019-09-29T00:00:00,2019,September,Sunday,29,272,12,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,UK,17 SPEEDSTER GR,OT,20,GRY,1800.0,STOLEN,9647,"{'type': 'Point', 'coordinates': (-79.37639111, 43.64874921)}"
-9659,22654,GO-20199032180,THEFT UNDER,2019-09-30T00:00:00,2019,September,Monday,30,273,19,2019-10-01T00:00:00,2019,October,Tuesday,1,274,11,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,IN,,RG,21,BLK,300.0,STOLEN,9648,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-9660,22658,GO-20191963600,B&E W'INTENT,2019-10-08T00:00:00,2019,October,Tuesday,8,281,9,2019-10-11T00:00:00,2019,October,Friday,11,284,11,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OTHER,THE KENNEDY '16,RG,20,BLK,850.0,STOLEN,9649,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-9661,22659,GO-20191963600,B&E W'INTENT,2019-10-08T00:00:00,2019,October,Tuesday,8,281,9,2019-10-11T00:00:00,2019,October,Friday,11,284,11,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,TARMAC SL4 SPOR,BM,10,,2440.0,UNKNOWN,9650,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-9662,22661,GO-20199033680,THEFT UNDER - BICYCLE,2019-10-12T00:00:00,2019,October,Saturday,12,285,12,2019-10-12T00:00:00,2019,October,Saturday,12,285,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,MT,28,ONG,750.0,STOLEN,9651,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-9663,22666,GO-20199034557,THEFT UNDER,2019-09-14T00:00:00,2019,September,Saturday,14,257,17,2019-10-20T00:00:00,2019,October,Sunday,20,293,17,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,RM,,MT,21,,1300.0,STOLEN,9652,"{'type': 'Point', 'coordinates': (-79.37639111, 43.64874921)}"
-9664,22669,GO-20192034370,THEFT UNDER - BICYCLE,2019-09-02T00:00:00,2019,September,Monday,2,245,9,2019-10-21T00:00:00,2019,October,Monday,21,294,18,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,,OT,21,BLK,800.0,STOLEN,9653,"{'type': 'Point', 'coordinates': (-79.38091931, 43.66572241)}"
-9665,22671,GO-20192049696,THEFT UNDER - BICYCLE,2019-10-23T00:00:00,2019,October,Wednesday,23,296,21,2019-10-24T00:00:00,2019,October,Thursday,24,297,13,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,INFINITY,AMEGO,EL,50,BLK,2500.0,STOLEN,9654,"{'type': 'Point', 'coordinates': (-79.38411783, 43.66390399)}"
-9666,22673,GO-20199035165,THEFT UNDER - BICYCLE,2019-10-23T00:00:00,2019,October,Wednesday,23,296,20,2019-10-25T00:00:00,2019,October,Friday,25,298,11,D51,Toronto,75,Church-Yonge Corridor (75),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,UK,,TO,18,BLK,1000.0,STOLEN,9655,"{'type': 'Point', 'coordinates': (-79.3745937, 43.65047389)}"
-9667,22674,GO-20192051831,THEFT UNDER - BICYCLE,2019-10-23T00:00:00,2019,October,Wednesday,23,296,13,2019-10-24T00:00:00,2019,October,Thursday,24,297,8,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,BONTRAGER,OT,21,BLK,500.0,STOLEN,9656,"{'type': 'Point', 'coordinates': (-79.37781507, 43.65821091)}"
-9668,22676,GO-20199036005,THEFT UNDER - BICYCLE,2019-10-25T00:00:00,2019,October,Friday,25,298,23,2019-10-31T00:00:00,2019,October,Thursday,31,304,19,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,RG,1,SIL,,STOLEN,9657,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-9669,22677,GO-20192109331,THEFT OF EBIKE UNDER $5000,2019-10-18T00:00:00,2019,October,Friday,18,291,3,2019-11-01T00:00:00,2019,November,Friday,1,305,9,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,ENO,MONSTER S,EL,0,BLK,2600.0,STOLEN,9658,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-9670,22682,GO-20199038135,THEFT UNDER,2019-11-19T00:00:00,2019,November,Tuesday,19,323,13,2019-11-19T00:00:00,2019,November,Tuesday,19,323,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ALIGHT,RG,10,WHI,500.0,STOLEN,9659,"{'type': 'Point', 'coordinates': (-79.37669194, 43.64940479)}"
-9671,22698,GO-20209009112,THEFT UNDER,2020-03-15T00:00:00,2020,March,Sunday,15,75,12,2020-03-16T00:00:00,2020,March,Monday,16,76,17,D51,Toronto,75,Church-Yonge Corridor (75),"Open Areas (Lakes, Parks, Rivers)",Outside,CC,ASPEN 26-IN,MT,24,BLU,700.0,STOLEN,9662,"{'type': 'Point', 'coordinates': (-79.38277088, 43.67016017)}"
-9672,22700,GO-2020574736,THEFT OVER - BICYCLE,2020-03-20T00:00:00,2020,March,Friday,20,80,18,2020-03-20T00:00:00,2020,March,Friday,20,80,19,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CANNONDALE,FIAL 5,MT,21,BLKBLU,6000.0,STOLEN,9663,"{'type': 'Point', 'coordinates': (-79.38411783, 43.66390399)}"
-9673,22713,GO-20209011533,THEFT UNDER,2020-04-19T00:00:00,2020,April,Sunday,19,110,8,2020-04-20T00:00:00,2020,April,Monday,20,111,10,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,ALLANT WSD 2015,RG,12,BLK,200.0,STOLEN,9664,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-9674,22714,GO-20209011690,THEFT UNDER - BICYCLE,2020-04-20T00:00:00,2020,April,Monday,20,111,9,2020-04-22T00:00:00,2020,April,Wednesday,22,113,10,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,SAGRES BLACK 43,RG,7,BLK,240.0,STOLEN,9665,"{'type': 'Point', 'coordinates': (-79.38132262, 43.6667026)}"
-9675,22717,GO-20209013141,THEFT UNDER,2020-05-14T00:00:00,2020,May,Thursday,14,135,13,2020-05-14T00:00:00,2020,May,Thursday,14,135,14,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,UK,,OT,1,WHI,400.0,STOLEN,9666,"{'type': 'Point', 'coordinates': (-79.38638506, 43.669368250000005)}"
-9676,22719,GO-2020946800,THEFT OF EBIKE UNDER $5000,2020-05-21T00:00:00,2020,May,Thursday,21,142,20,2020-05-22T00:00:00,2020,May,Friday,22,143,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,AMEGO,SC,0,SIL,1200.0,STOLEN,9667,"{'type': 'Point', 'coordinates': (-79.38411783, 43.66390399)}"
-9677,22722,GO-20209014154,THEFT UNDER,2020-05-13T00:00:00,2020,May,Wednesday,13,134,22,2020-05-28T00:00:00,2020,May,Thursday,28,149,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,,RG,10,BGE,300.0,STOLEN,9668,"{'type': 'Point', 'coordinates': (-79.37872961, 43.654321780000004)}"
-9678,22764,GO-20209021038,THEFT UNDER,2020-08-18T00:00:00,2020,August,Tuesday,18,231,17,2020-08-22T00:00:00,2020,August,Saturday,22,235,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,10,CPR,1000.0,STOLEN,9677,"{'type': 'Point', 'coordinates': (-79.37424947, 43.653501610000006)}"
-9679,22723,GO-2020988521,THEFT OF EBIKE UNDER $5000,2020-05-28T00:00:00,2020,May,Thursday,28,149,21,2020-05-29T00:00:00,2020,May,Friday,29,150,7,D51,Toronto,75,Church-Yonge Corridor (75),"Single Home, House (Attach Garage, Cottage, Mobile)",House,EM,ZONE GTS,EL,32,WHI,3000.0,STOLEN,9669,"{'type': 'Point', 'coordinates': (-79.37543679, 43.65246584)}"
-9680,22728,GO-20209015272,THEFT FROM MOTOR VEHICLE UNDER,2020-06-12T00:00:00,2020,June,Friday,12,164,19,2020-06-13T00:00:00,2020,June,Saturday,13,165,5,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,NO,MOUNTAINEER,MT,10,DBL,300.0,STOLEN,9670,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-9681,22732,GO-20209016100,THEFT UNDER,2020-06-24T00:00:00,2020,June,Wednesday,24,176,20,2020-06-24T00:00:00,2020,June,Wednesday,24,176,23,D51,Toronto,75,Church-Yonge Corridor (75),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,DIADORA AREZZO,RG,21,BLK,470.0,STOLEN,9671,"{'type': 'Point', 'coordinates': (-79.38091931, 43.66572241)}"
-9682,22734,GO-20209016274,THEFT UNDER,2020-06-26T00:00:00,2020,June,Friday,26,178,17,2020-06-26T00:00:00,2020,June,Friday,26,178,18,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,RM,METRO 50,RG,27,BLU,1000.0,STOLEN,9672,"{'type': 'Point', 'coordinates': (-79.37669194, 43.64940479)}"
-9683,22736,GO-20209016488,THEFT UNDER,2020-06-26T00:00:00,2020,June,Friday,26,178,18,2020-06-29T00:00:00,2020,June,Monday,29,181,17,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,NO,,RG,21,GRN,1100.0,STOLEN,9673,"{'type': 'Point', 'coordinates': (-79.3749069, 43.65118528)}"
-9684,22737,GO-20209016488,THEFT UNDER,2020-06-26T00:00:00,2020,June,Friday,26,178,18,2020-06-29T00:00:00,2020,June,Monday,29,181,17,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,21,BLK,800.0,STOLEN,9674,"{'type': 'Point', 'coordinates': (-79.3749069, 43.65118528)}"
-9685,22739,GO-20209016767,THEFT UNDER,2020-07-02T00:00:00,2020,July,Thursday,2,184,18,2020-07-03T00:00:00,2020,July,Friday,3,185,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,FREEDOM,EL,32,BLK,1808.0,STOLEN,9675,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-9686,22762,GO-20209020432,THEFT UNDER,2020-08-16T00:00:00,2020,August,Sunday,16,229,17,2020-08-17T00:00:00,2020,August,Monday,17,230,11,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,PUEBLO,MT,10,SIL,0.0,STOLEN,9676,"{'type': 'Point', 'coordinates': (-79.37516377, 43.6518061)}"
-9687,22767,GO-20201616608,THEFT UNDER - BICYCLE,2020-08-27T00:00:00,2020,August,Thursday,27,240,14,2020-08-27T00:00:00,2020,August,Thursday,27,240,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,MT,26,BLK,500.0,STOLEN,9678,"{'type': 'Point', 'coordinates': (-79.3811853, 43.65703802)}"
-9688,22768,GO-20209021804,THEFT UNDER,2020-08-30T00:00:00,2020,August,Sunday,30,243,7,2020-08-30T00:00:00,2020,August,Sunday,30,243,21,D51,Toronto,75,Church-Yonge Corridor (75),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,CROSSTRAIL,OT,24,RED,600.0,STOLEN,9679,"{'type': 'Point', 'coordinates': (-79.37691204, 43.65291764)}"
-9689,22771,GO-20201665735,THEFT OF EBIKE UNDER $5000,2020-09-03T00:00:00,2020,September,Thursday,3,247,13,2020-09-03T00:00:00,2020,September,Thursday,3,247,13,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,UNKNOWN,EL,1,BLK,1200.0,STOLEN,9680,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-9690,22774,GO-20201697636,THEFT UNDER - BICYCLE,2020-08-30T00:00:00,2020,August,Sunday,30,243,19,2020-09-08T00:00:00,2020,September,Tuesday,8,252,8,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,NCM,MOSCOW,RG,2,BLK,2033.0,STOLEN,9681,"{'type': 'Point', 'coordinates': (-79.37941202, 43.66889376)}"
-9691,22775,GO-20209022807,THEFT UNDER,2020-09-09T00:00:00,2020,September,Wednesday,9,253,21,2020-09-09T00:00:00,2020,September,Wednesday,9,253,22,D51,Toronto,75,Church-Yonge Corridor (75),Convenience Stores,Commercial,TR,DOMANE,RC,18,GRY,1500.0,STOLEN,9682,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-9692,22779,GO-20201804476,THEFT UNDER - BICYCLE,2020-09-15T00:00:00,2020,September,Tuesday,15,259,20,2020-09-23T00:00:00,2020,September,Wednesday,23,267,8,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,SOLARIS,TO,21,BLK,310.0,STOLEN,9683,"{'type': 'Point', 'coordinates': (-79.38277088, 43.67016017)}"
-9693,23211,GO-20189032417,THEFT UNDER - BICYCLE,2018-09-08T00:00:00,2018,September,Saturday,8,251,9,2018-09-30T00:00:00,2018,September,Sunday,30,273,10,D51,Toronto,75,Church-Yonge Corridor (75),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,UK,GT SPORT HYBRID,MT,12,PLE,400.0,STOLEN,9684,"{'type': 'Point', 'coordinates': (-79.37894504, 43.65169174)}"
-9694,18812,GO-20201934323,THEFT OF EBIKE UNDER $5000,2020-10-11T00:00:00,2020,October,Sunday,11,285,18,2020-10-11T00:00:00,2020,October,Sunday,11,285,21,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,ZENGBU,,EL,0,BLK,1700.0,STOLEN,9799,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-9695,23216,GO-20189034041,THEFT UNDER - BICYCLE,2018-10-12T00:00:00,2018,October,Friday,12,285,5,2018-10-14T00:00:00,2018,October,Sunday,14,287,10,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,LOFT 7D,RG,7,GRN,600.0,STOLEN,9685,"{'type': 'Point', 'coordinates': (-79.38277088, 43.67016017)}"
-9696,17471,GO-20142768468,THEFT UNDER,2014-08-15T00:00:00,2014,August,Friday,15,227,9,2014-08-24T00:00:00,2014,August,Sunday,24,236,18,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GARY FISHER,PIRAHNA,MT,21,RED,550.0,STOLEN,9686,"{'type': 'Point', 'coordinates': (-79.37717453, 43.66359899)}"
-9697,17479,GO-20149006897,THEFT UNDER,2014-09-14T00:00:00,2014,September,Sunday,14,257,13,2014-09-15T00:00:00,2014,September,Monday,15,258,7,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CROSSROADS,TO,18,DBL,1000.0,STOLEN,9687,"{'type': 'Point', 'coordinates': (-79.37943497, 43.65603477)}"
-9698,20357,GO-20181539174,THEFT FROM MOTOR VEHICLE OVER,2018-08-16T00:00:00,2018,August,Thursday,16,228,17,2018-08-22T00:00:00,2018,August,Wednesday,22,234,20,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TREK,REMEDY 9.8,MT,11,BLKSIL,7575.0,STOLEN,9688,"{'type': 'Point', 'coordinates': (-79.38338195, 43.66213624)}"
-9699,17482,GO-20142731179,THEFT UNDER,2014-08-14T00:00:00,2014,August,Thursday,14,226,13,2014-08-19T00:00:00,2014,August,Tuesday,19,231,8,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GT,TIMBERLINE,MT,21,GRN,200.0,STOLEN,9689,"{'type': 'Point', 'coordinates': (-79.37643241, 43.65085158000001)}"
-9700,20363,GO-20189028522,B&E,2018-08-12T00:00:00,2018,August,Sunday,12,224,19,2018-08-29T00:00:00,2018,August,Wednesday,29,241,23,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,CA,2016 CAAD8,RC,16,OTH,1600.0,STOLEN,9690,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-9701,23220,GO-20189034838,THEFT UNDER - BICYCLE,2018-10-20T00:00:00,2018,October,Saturday,20,293,9,2018-10-20T00:00:00,2018,October,Saturday,20,293,14,D51,Toronto,75,Church-Yonge Corridor (75),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,CLOUDS530,MT,21,BLU,700.0,STOLEN,9691,"{'type': 'Point', 'coordinates': (-79.37907575, 43.66125894)}"
-9702,17484,GO-20142993683,THEFT UNDER,2014-09-26T00:00:00,2014,September,Friday,26,269,23,2014-09-27T00:00:00,2014,September,Saturday,27,270,9,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,DEVINCI,,RC,21,GRY,1500.0,STOLEN,9692,"{'type': 'Point', 'coordinates': (-79.37717453, 43.66359899)}"
-9703,20364,GO-20181615654,THEFT UNDER - BICYCLE,2018-08-31T00:00:00,2018,August,Friday,31,243,20,2018-08-31T00:00:00,2018,August,Friday,31,243,23,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,ROCKY MOUNTAIN,INSTINCT,MT,10,DGRONG,3389.0,STOLEN,9693,"{'type': 'Point', 'coordinates': (-79.38411783, 43.66390399)}"
-9704,20365,GO-20189028963,THEFT UNDER - BICYCLE,2018-09-03T00:00:00,2018,September,Monday,3,246,15,2018-09-03T00:00:00,2018,September,Monday,3,246,19,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RM,2012,MT,21,YEL,800.0,STOLEN,9694,"{'type': 'Point', 'coordinates': (-79.37830693, 43.66628508)}"
-9705,13490,GO-2019982816,THEFT UNDER - BICYCLE,2019-03-15T00:00:00,2019,March,Friday,15,74,11,2019-05-29T00:00:00,2019,May,Wednesday,29,149,10,D51,Toronto,75,Church-Yonge Corridor (75),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,BIGGITY,MT,0,BLK,460.0,STOLEN,9695,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-9706,17488,GO-20143093105,THEFT UNDER,2014-10-11T00:00:00,2014,October,Saturday,11,284,21,2014-10-12T00:00:00,2014,October,Sunday,12,285,20,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN,UNKNOWN,EL,1,BLK,1000.0,STOLEN,9696,"{'type': 'Point', 'coordinates': (-79.38007115, 43.66369728000001)}"
-9707,20366,GO-20189029059,THEFT UNDER - BICYCLE,2018-09-02T00:00:00,2018,September,Sunday,2,245,9,2018-09-03T00:00:00,2018,September,Monday,3,246,12,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,STEALTH,OT,24,RED,0.0,STOLEN,9697,"{'type': 'Point', 'coordinates': (-79.3763333, 43.65225839)}"
-9708,23221,GO-20189035175,THEFT UNDER - BICYCLE,2018-10-23T00:00:00,2018,October,Tuesday,23,296,7,2018-10-23T00:00:00,2018,October,Tuesday,23,296,9,D51,Toronto,75,Church-Yonge Corridor (75),"Construction Site (Warehouse, Trailer, Shed)",Commercial,TR,TREK ROAD BIKE,RC,21,BLU,600.0,STOLEN,9698,"{'type': 'Point', 'coordinates': (-79.38201616, 43.6683485)}"
-9709,8768,GO-20149006382,THEFT UNDER,2014-08-28T00:00:00,2014,August,Thursday,28,240,10,2014-08-28T00:00:00,2014,August,Thursday,28,240,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,27,BLK,699.0,STOLEN,17870,"{'type': 'Point', 'coordinates': (-79.40266560000002, 43.64392483)}"
-9710,13491,GO-20191004337,THEFT UNDER - BICYCLE,2019-05-28T00:00:00,2019,May,Tuesday,28,148,19,2019-06-01T00:00:00,2019,June,Saturday,1,152,8,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,FLUID 4,MT,10,BLK,3000.0,STOLEN,9699,"{'type': 'Point', 'coordinates': (-79.37267618, 43.65234821)}"
-9711,17489,GO-20143115722,THEFT UNDER,2014-10-16T00:00:00,2014,October,Thursday,16,289,5,2014-10-16T00:00:00,2014,October,Thursday,16,289,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,EL,12,,1000.0,STOLEN,9700,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-9712,20367,GO-20189029218,THEFT UNDER - BICYCLE,2018-08-22T00:00:00,2018,August,Wednesday,22,234,18,2018-09-05T00:00:00,2018,September,Wednesday,5,248,17,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SPORT 3,RG,27,BLK,626.0,STOLEN,9701,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-9713,23222,GO-20189035815,THEFT UNDER - BICYCLE,2018-10-26T00:00:00,2018,October,Friday,26,299,22,2018-10-27T00:00:00,2018,October,Saturday,27,300,13,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,UK,FREEDOM,EL,20,BLK,1700.0,STOLEN,9702,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-9714,23224,GO-20189037380,THEFT UNDER - BICYCLE,2018-11-08T00:00:00,2018,November,Thursday,8,312,2,2018-11-08T00:00:00,2018,November,Thursday,8,312,13,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,,EL,25,BLK,1500.0,STOLEN,9703,"{'type': 'Point', 'coordinates': (-79.37805214, 43.6526818)}"
-9715,23227,GO-20182125408,THEFT UNDER - BICYCLE,2018-11-13T00:00:00,2018,November,Tuesday,13,317,11,2018-11-18T00:00:00,2018,November,Sunday,18,322,16,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,BIKE,OT,0,GRN,,STOLEN,9704,"{'type': 'Point', 'coordinates': (-79.37662709, 43.65297714)}"
-9716,23229,GO-20182180623,THEFT OF MOTOR VEHICLE,2018-11-26T00:00:00,2018,November,Monday,26,330,22,2018-11-27T00:00:00,2018,November,Tuesday,27,331,8,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,FORTRESS,1700,SC,0,BLU,3000.0,STOLEN,9705,"{'type': 'Point', 'coordinates': (-79.38007115, 43.66369728000001)}"
-9717,5200,GO-20199028322,THEFT UNDER,2019-08-29T00:00:00,2019,August,Thursday,29,241,22,2019-08-31T00:00:00,2019,August,Saturday,31,243,0,D52,Toronto,76,Bay Street Corridor (76),Bar / Restaurant,Commercial,UK,,RG,18,BLK,650.0,STOLEN,10963,"{'type': 'Point', 'coordinates': (-79.38644891, 43.66715659)}"
-9718,23236,GO-2019283820,THEFT UNDER - BICYCLE,2018-12-19T00:00:00,2018,December,Wednesday,19,353,12,2019-02-14T00:00:00,2019,February,Thursday,14,45,10,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,NORCO,BIG FOOT,MT,10,GRYBLK,1000.0,STOLEN,9706,"{'type': 'Point', 'coordinates': (-79.38201616, 43.6683485)}"
-9719,23241,GO-20199006369,THEFT UNDER - BICYCLE,2019-02-22T00:00:00,2019,February,Friday,22,53,19,2019-02-22T00:00:00,2019,February,Friday,22,53,22,D51,Toronto,75,Church-Yonge Corridor (75),"Open Areas (Lakes, Parks, Rivers)",Outside,BI,IMPULSO,RG,10,BLK,1500.0,STOLEN,9707,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-9720,23247,GO-20199012513,THEFT UNDER,2019-04-20T00:00:00,2019,April,Saturday,20,110,8,2019-04-20T00:00:00,2019,April,Saturday,20,110,12,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,1,ONG,400.0,STOLEN,9708,"{'type': 'Point', 'coordinates': (-79.37652171000002, 43.65664882)}"
-9721,23248,GO-20199013075,B&E,2019-04-25T00:00:00,2019,April,Thursday,25,115,16,2019-04-25T00:00:00,2019,April,Thursday,25,115,17,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,DIVERGE,RG,16,BLK,1500.0,STOLEN,9709,"{'type': 'Point', 'coordinates': (-79.38491403, 43.66584039)}"
-9722,23251,GO-20199013863,THEFT UNDER,2019-05-02T00:00:00,2019,May,Thursday,2,122,8,2019-05-03T00:00:00,2019,May,Friday,3,123,20,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,TR,FUEL EX 5,MT,10,BLU,1977.0,STOLEN,9710,"{'type': 'Point', 'coordinates': (-79.38245382, 43.66941071)}"
-9723,23255,GO-20199015948,THEFT UNDER,2019-05-22T00:00:00,2019,May,Wednesday,22,142,17,2019-05-22T00:00:00,2019,May,Wednesday,22,142,20,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,TR,AL 2,TO,16,BLK,1020.0,STOLEN,9711,"{'type': 'Point', 'coordinates': (-79.37633027, 43.65851354)}"
-9724,23257,GO-20199016554,THEFT UNDER,2019-05-27T00:00:00,2019,May,Monday,27,147,18,2019-05-28T00:00:00,2019,May,Tuesday,28,148,0,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,LE MONTREAL,TO,7,BLK,1500.0,STOLEN,9712,"{'type': 'Point', 'coordinates': (-79.38091931, 43.66572241)}"
-9725,23260,GO-20199017562,THEFT UNDER - BICYCLE,2019-06-05T00:00:00,2019,June,Wednesday,5,156,9,2019-06-05T00:00:00,2019,June,Wednesday,5,156,21,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,HARDTAIL (I THI,MT,9,BLK,750.0,STOLEN,9713,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-9726,23275,GO-20191198245,THEFT UNDER - BICYCLE,2019-06-23T00:00:00,2019,June,Sunday,23,174,10,2019-06-28T00:00:00,2019,June,Friday,28,179,0,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,ZZZ,GENESIS,OT,0,,,STOLEN,9714,"{'type': 'Point', 'coordinates': (-79.37796823, 43.66213714)}"
-9727,23283,GO-20199021368,THEFT UNDER,2019-07-04T00:00:00,2019,July,Thursday,4,185,17,2019-07-07T00:00:00,2019,July,Sunday,7,188,23,D51,Toronto,75,Church-Yonge Corridor (75),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,SCENE 3,OT,7,GRY,1000.0,STOLEN,9715,"{'type': 'Point', 'coordinates': (-79.38159830000001, 43.66737287)}"
-9728,23396,GO-20179006568,THEFT UNDER,2017-05-17T00:00:00,2017,May,Wednesday,17,137,19,2017-05-18T00:00:00,2017,May,Thursday,18,138,14,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,1,BLK,150.0,STOLEN,9716,"{'type': 'Point', 'coordinates': (-79.38245382, 43.66941071)}"
-9729,23402,GO-20179004907,THEFT UNDER,2017-04-18T00:00:00,2017,April,Tuesday,18,108,10,2017-04-19T00:00:00,2017,April,Wednesday,19,109,10,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GI,VIA 1 WOMAN'S X,TO,3,OTH,677.0,STOLEN,9717,"{'type': 'Point', 'coordinates': (-79.37267618, 43.65234821)}"
-9730,23407,GO-20179006089,THEFT UNDER - BICYCLE,2017-04-29T00:00:00,2017,April,Saturday,29,119,20,2017-05-10T00:00:00,2017,May,Wednesday,10,130,20,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RC,20,GRY,1300.0,STOLEN,9718,"{'type': 'Point', 'coordinates': (-79.3823358, 43.67122103)}"
-9731,23408,GO-20179006089,THEFT UNDER - BICYCLE,2017-04-29T00:00:00,2017,April,Saturday,29,119,20,2017-05-10T00:00:00,2017,May,Wednesday,10,130,20,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,TCA,RC,20,BLK,1700.0,STOLEN,9719,"{'type': 'Point', 'coordinates': (-79.3823358, 43.67122103)}"
-9732,23409,GO-20179006189,THEFT UNDER - BICYCLE,2017-05-11T00:00:00,2017,May,Thursday,11,131,18,2017-05-12T00:00:00,2017,May,Friday,12,132,12,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,FENIX,RC,18,WHI,1100.0,STOLEN,9720,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-9733,23410,GO-2017850108,THEFT UNDER - BICYCLE,2017-05-14T00:00:00,2017,May,Sunday,14,134,7,2017-05-14T00:00:00,2017,May,Sunday,14,134,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MIELE,VINCEANZO,RG,12,GRNYEL,500.0,STOLEN,9721,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-9734,23412,GO-20179006820,THEFT UNDER - BICYCLE,2017-05-19T00:00:00,2017,May,Friday,19,139,15,2017-05-23T00:00:00,2017,May,Tuesday,23,143,12,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,MA,,RG,18,,520.0,STOLEN,9722,"{'type': 'Point', 'coordinates': (-79.38581622, 43.66799576)}"
-9735,23413,GO-20179006814,THEFT UNDER - BICYCLE,2017-05-17T00:00:00,2017,May,Wednesday,17,137,18,2017-05-23T00:00:00,2017,May,Tuesday,23,143,11,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,ELAN,TO,9,BLU,1500.0,STOLEN,9723,"{'type': 'Point', 'coordinates': (-79.38091931, 43.66572241)}"
-9736,23419,GO-20179007905,THEFT UNDER,2017-06-03T00:00:00,2017,June,Saturday,3,154,6,2017-06-12T00:00:00,2017,June,Monday,12,163,19,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,TUNARI,MT,18,BLU,596.0,STOLEN,9724,"{'type': 'Point', 'coordinates': (-79.37437294, 43.64992152)}"
-9737,23421,GO-20179008077,THEFT UNDER - BICYCLE,2017-06-14T00:00:00,2017,June,Wednesday,14,165,7,2017-06-14T00:00:00,2017,June,Wednesday,14,165,13,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,CRUISER SIX,RG,6,BLK,500.0,STOLEN,9725,"{'type': 'Point', 'coordinates': (-79.3749313, 43.65514877)}"
-9738,23423,GO-20179008200,THEFT UNDER - BICYCLE,2017-06-15T00:00:00,2017,June,Thursday,15,166,20,2017-06-15T00:00:00,2017,June,Thursday,15,166,22,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,12,GRN,200.0,STOLEN,9726,"{'type': 'Point', 'coordinates': (-79.38374902, 43.66302137000001)}"
-9739,23426,GO-20179008775,THEFT UNDER - BICYCLE,2017-06-21T00:00:00,2017,June,Wednesday,21,172,23,2017-06-23T00:00:00,2017,June,Friday,23,174,14,D51,Toronto,75,Church-Yonge Corridor (75),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,TORONTO POLICE,EL,8,CRM,5000.0,STOLEN,9727,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-9740,23430,GO-20171151591,THEFT UNDER - BICYCLE,2017-06-27T00:00:00,2017,June,Tuesday,27,178,21,2017-06-27T00:00:00,2017,June,Tuesday,27,178,22,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,DEFY,RC,6,WHI,1000.0,STOLEN,9728,"{'type': 'Point', 'coordinates': (-79.38245382, 43.66941071)}"
-9741,23432,GO-20179009375,THEFT UNDER,2017-06-26T00:00:00,2017,June,Monday,26,177,0,2017-07-04T00:00:00,2017,July,Tuesday,4,185,10,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,NO,YORKVILLE,RG,21,GRY,500.0,STOLEN,9729,"{'type': 'Point', 'coordinates': (-79.37583535, 43.65495451)}"
-9742,23433,GO-20179009445,THEFT UNDER,2017-07-04T00:00:00,2017,July,Tuesday,4,185,21,2017-07-05T00:00:00,2017,July,Wednesday,5,186,0,D51,Toronto,75,Church-Yonge Corridor (75),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,KH,FLITE,RG,1,DGR,500.0,STOLEN,9730,"{'type': 'Point', 'coordinates': (-79.37953592, 43.65629127)}"
-9743,23435,GO-20179009736,THEFT UNDER - BICYCLE,2017-07-08T00:00:00,2017,July,Saturday,8,189,16,2017-07-08T00:00:00,2017,July,Saturday,8,189,18,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RC,24,,1000.0,STOLEN,9731,"{'type': 'Point', 'coordinates': (-79.37943497, 43.65603477)}"
-9744,23440,GO-20179010035,THEFT UNDER - BICYCLE,2017-07-11T00:00:00,2017,July,Tuesday,11,192,18,2017-07-12T00:00:00,2017,July,Wednesday,12,193,11,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,PANAMAO X2,RG,24,BLK,1000.0,STOLEN,9732,"{'type': 'Point', 'coordinates': (-79.3763333, 43.65225839)}"
-9745,23442,GO-20179010335,THEFT UNDER,2017-07-14T00:00:00,2017,July,Friday,14,195,22,2017-07-15T00:00:00,2017,July,Saturday,15,196,2,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,NOT SURE,MT,24,SIL,500.0,STOLEN,9733,"{'type': 'Point', 'coordinates': (-79.37830693, 43.66628508)}"
-9746,23455,GO-20179011527,THEFT UNDER,2017-07-31T00:00:00,2017,July,Monday,31,212,17,2017-08-02T00:00:00,2017,August,Wednesday,2,214,7,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,LAGER,RG,1,WHI,600.0,STOLEN,9734,"{'type': 'Point', 'coordinates': (-79.37652171000002, 43.65664882)}"
-9747,23457,GO-20179011893,THEFT UNDER - BICYCLE,2017-07-31T00:00:00,2017,July,Monday,31,212,8,2017-08-08T00:00:00,2017,August,Tuesday,8,220,8,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,SIRIUS ELITE,MT,18,BLK,2200.0,STOLEN,9735,"{'type': 'Point', 'coordinates': (-79.37516377, 43.6518061)}"
-9748,23461,GO-20179012458,THEFT UNDER,2017-08-15T00:00:00,2017,August,Tuesday,15,227,12,2017-08-15T00:00:00,2017,August,Tuesday,15,227,21,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,RG,12,BLU,70.0,STOLEN,9736,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-9749,23462,GO-20171452723,THEFT UNDER - BICYCLE,2017-08-08T00:00:00,2017,August,Tuesday,8,220,14,2017-08-12T00:00:00,2017,August,Saturday,12,224,10,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,GIANT,OT,18,BLU,600.0,STOLEN,9737,"{'type': 'Point', 'coordinates': (-79.3836938, 43.66289618)}"
-9750,23463,GO-20179012727,THEFT UNDER - BICYCLE,2017-08-18T00:00:00,2017,August,Friday,18,230,7,2017-08-18T00:00:00,2017,August,Friday,18,230,13,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,TEMPO,RG,21,SIL,350.0,STOLEN,9738,"{'type': 'Point', 'coordinates': (-79.3774505, 43.65131026)}"
-9751,23467,GO-20179013979,THEFT UNDER,2017-09-03T00:00:00,2017,September,Sunday,3,246,13,2017-09-04T00:00:00,2017,September,Monday,4,247,21,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,,TO,3,,0.0,STOLEN,9739,"{'type': 'Point', 'coordinates': (-79.37583535, 43.65495451)}"
-9752,23468,GO-20179014108,THEFT UNDER,2017-08-31T00:00:00,2017,August,Thursday,31,243,21,2017-09-06T00:00:00,2017,September,Wednesday,6,249,14,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,MT,21,PLE,400.0,STOLEN,9740,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-9753,23469,GO-20179014872,THEFT UNDER - BICYCLE,2017-09-15T00:00:00,2017,September,Friday,15,258,11,2017-09-15T00:00:00,2017,September,Friday,15,258,15,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,FX 2,RG,24,BLK,600.0,STOLEN,9741,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-9754,23482,GO-20179016699,THEFT UNDER - BICYCLE,2017-10-07T00:00:00,2017,October,Saturday,7,280,4,2017-10-07T00:00:00,2017,October,Saturday,7,280,17,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,CANNONDALE,MT,8,BLK,700.0,STOLEN,9742,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-9755,23489,GO-20179018105,THEFT UNDER - BICYCLE,2017-10-24T00:00:00,2017,October,Tuesday,24,297,23,2017-10-25T00:00:00,2017,October,Wednesday,25,298,0,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RC,22,GRN,3000.0,STOLEN,9743,"{'type': 'Point', 'coordinates': (-79.38048097, 43.66464717)}"
-9756,23493,GO-20179018326,THEFT UNDER - BICYCLE,2017-10-25T00:00:00,2017,October,Wednesday,25,298,17,2017-10-27T00:00:00,2017,October,Friday,27,300,14,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,,RG,21,BLK,750.0,STOLEN,9744,"{'type': 'Point', 'coordinates': (-79.37787874, 43.64914837)}"
-9757,23494,GO-20179019611,THEFT UNDER - BICYCLE,2017-11-14T00:00:00,2017,November,Tuesday,14,318,16,2017-11-14T00:00:00,2017,November,Tuesday,14,318,18,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,3,PLE,500.0,STOLEN,9745,"{'type': 'Point', 'coordinates': (-79.38565257, 43.66756225)}"
-9758,23500,GO-20179019955,THEFT UNDER - BICYCLE,2017-11-15T00:00:00,2017,November,Wednesday,15,319,12,2017-11-18T00:00:00,2017,November,Saturday,18,322,17,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,MEGA,MT,18,GRY,2500.0,STOLEN,9746,"{'type': 'Point', 'coordinates': (-79.38530036, 43.66669498)}"
-9759,23502,GO-20179021375,THEFT UNDER - BICYCLE,2017-12-06T00:00:00,2017,December,Wednesday,6,340,0,2017-12-06T00:00:00,2017,December,Wednesday,6,340,2,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,TR,DCLV 5200,RC,21,GRY,1000.0,STOLEN,9747,"{'type': 'Point', 'coordinates': (-79.37796823, 43.66213714)}"
-9760,23503,GO-20173137612,THEFT OF EBIKE UNDER $5000,2017-12-01T00:00:00,2017,December,Friday,1,335,17,2017-12-05T00:00:00,2017,December,Tuesday,5,339,16,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,EAGLE,EL,0,REDMRN,3000.0,STOLEN,9748,"{'type': 'Point', 'coordinates': (-79.37872961, 43.654321780000004)}"
-9761,23504,GO-20179021954,THEFT UNDER - BICYCLE,2017-11-01T00:00:00,2017,November,Wednesday,1,305,8,2017-12-12T00:00:00,2017,December,Tuesday,12,346,8,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,DOLCE,RC,18,WHI,500.0,STOLEN,9749,"{'type': 'Point', 'coordinates': (-79.37872961, 43.654321780000004)}"
-9762,23506,GO-20179023116,THEFT UNDER - BICYCLE,2017-12-21T00:00:00,2017,December,Thursday,21,355,13,2017-12-28T00:00:00,2017,December,Thursday,28,362,14,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,MT,10,WHI,0.0,STOLEN,9750,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-9763,23507,GO-20189002092,THEFT UNDER - BICYCLE,2018-01-19T00:00:00,2018,January,Friday,19,19,23,2018-01-22T00:00:00,2018,January,Monday,22,22,13,D51,Toronto,75,Church-Yonge Corridor (75),Unknown,Other,UK,BIKE SHARE TORO,OT,3,BLK,1000.0,STOLEN,9751,"{'type': 'Point', 'coordinates': (-79.38338195, 43.66213624)}"
-9764,23508,GO-20189002629,THEFT UNDER,2018-01-26T00:00:00,2018,January,Friday,26,26,18,2018-01-26T00:00:00,2018,January,Friday,26,26,21,D51,Toronto,75,Church-Yonge Corridor (75),Unknown,Other,OT,ALARE,RC,21,BLK,1200.0,STOLEN,9752,"{'type': 'Point', 'coordinates': (-79.37843045, 43.65040714)}"
-9765,23518,GO-20189014388,THEFT UNDER - BICYCLE,2018-05-09T00:00:00,2018,May,Wednesday,9,129,18,2018-05-10T00:00:00,2018,May,Thursday,10,130,9,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,RG,21,BLU,500.0,STOLEN,9753,"{'type': 'Point', 'coordinates': (-79.38638506, 43.669368250000005)}"
-9766,23519,GO-20189014587,THEFT UNDER - BICYCLE,2018-05-11T00:00:00,2018,May,Friday,11,131,16,2018-05-11T00:00:00,2018,May,Friday,11,131,17,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SIRRUS MEN V BL,RG,21,BLK,600.0,STOLEN,9754,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-9767,23520,GO-20189014862,THEFT UNDER,2018-05-14T00:00:00,2018,May,Monday,14,134,9,2018-05-14T00:00:00,2018,May,Monday,14,134,12,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EM,S6,EL,40,MRN,2000.0,STOLEN,9755,"{'type': 'Point', 'coordinates': (-79.37573379, 43.65316827000001)}"
-9768,23521,GO-20189014962,THEFT UNDER - BICYCLE,2018-05-14T00:00:00,2018,May,Monday,14,134,13,2018-05-14T00:00:00,2018,May,Monday,14,134,20,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,,RG,3,BLU,150.0,STOLEN,9756,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-9769,23522,GO-20189014965,THEFT UNDER,2018-05-13T00:00:00,2018,May,Sunday,13,133,7,2018-05-14T00:00:00,2018,May,Monday,14,134,20,D51,Toronto,75,Church-Yonge Corridor (75),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,GT,GRADE,RC,8,BLK,1050.0,STOLEN,9757,"{'type': 'Point', 'coordinates': (-79.37691204, 43.65291764)}"
-9770,23523,GO-20189015333,THEFT UNDER,2018-05-17T00:00:00,2018,May,Thursday,17,137,9,2018-05-17T00:00:00,2018,May,Thursday,17,137,18,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,18,BLU,80.0,STOLEN,9758,"{'type': 'Point', 'coordinates': (-79.37662709, 43.65297714)}"
-9771,23524,GO-20189015618,THEFT UNDER - BICYCLE,2018-05-20T00:00:00,2018,May,Sunday,20,140,14,2018-05-20T00:00:00,2018,May,Sunday,20,140,16,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CC,,MT,12,GRN,500.0,STOLEN,9759,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-9772,23526,GO-20189016029,THEFT UNDER - BICYCLE,2018-05-21T00:00:00,2018,May,Monday,21,141,1,2018-05-24T00:00:00,2018,May,Thursday,24,144,11,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,4,,300.0,STOLEN,9760,"{'type': 'Point', 'coordinates': (-79.3749313, 43.65514877)}"
-9773,23527,GO-20189016352,THEFT UNDER - BICYCLE,2018-05-24T00:00:00,2018,May,Thursday,24,144,20,2018-05-26T00:00:00,2018,May,Saturday,26,146,19,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,2013 SCALE 950,MT,30,GRY,2500.0,STOLEN,9761,"{'type': 'Point', 'coordinates': (-79.37516377, 43.6518061)}"
-9774,23528,GO-20189016827,THEFT UNDER - BICYCLE,2018-05-30T00:00:00,2018,May,Wednesday,30,150,15,2018-05-30T00:00:00,2018,May,Wednesday,30,150,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CANNONDALE,CANNONDALE,MT,21,GRY,682.0,STOLEN,9762,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-9775,23530,GO-20181023537,THEFT UNDER - BICYCLE,2018-05-22T00:00:00,2018,May,Tuesday,22,142,19,2018-06-06T00:00:00,2018,June,Wednesday,6,157,10,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,CROSSOVER,MT,15,REDBLK,1000.0,STOLEN,9763,"{'type': 'Point', 'coordinates': (-79.37883347, 43.66067091000001)}"
-9776,23531,GO-20189017887,THEFT UNDER - BICYCLE,2018-06-08T00:00:00,2018,June,Friday,8,159,9,2018-06-08T00:00:00,2018,June,Friday,8,159,14,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,OT,1,BLK,450.0,STOLEN,9764,"{'type': 'Point', 'coordinates': (-79.38612041000002, 43.66874221)}"
-9777,23538,GO-20181075038,THEFT OF EBIKE UNDER $5000,2018-06-13T00:00:00,2018,June,Wednesday,13,164,19,2018-06-13T00:00:00,2018,June,Wednesday,13,164,19,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EBIKE,,EL,1,GRN,,STOLEN,9765,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-9778,23539,GO-20189018582,THEFT UNDER,2018-06-10T00:00:00,2018,June,Sunday,10,161,18,2018-06-13T00:00:00,2018,June,Wednesday,13,164,17,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,----,MT,5,BLK,500.0,STOLEN,9766,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-9779,23544,GO-20189019684,THEFT UNDER - BICYCLE,2018-06-20T00:00:00,2018,June,Wednesday,20,171,18,2018-06-21T00:00:00,2018,June,Thursday,21,172,20,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,10,BLK,400.0,STOLEN,9767,"{'type': 'Point', 'coordinates': (-79.37585959, 43.66043919)}"
-9780,23546,GO-20189020750,THEFT UNDER - BICYCLE,2018-06-29T00:00:00,2018,June,Friday,29,180,11,2018-06-29T00:00:00,2018,June,Friday,29,180,15,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,GT,AGGRESOR,MT,12,BLK,250.0,STOLEN,9768,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-9781,23547,GO-20189020852,THEFT UNDER - BICYCLE,2018-06-30T00:00:00,2018,June,Saturday,30,181,13,2018-07-01T00:00:00,2018,July,Sunday,1,182,0,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,6,DBL,200.0,STOLEN,9769,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-9782,23550,GO-20189021892,THEFT OF EBIKE UNDER $5000,2018-07-10T00:00:00,2018,July,Tuesday,10,191,20,2018-07-11T00:00:00,2018,July,Wednesday,11,192,8,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,BEAMER MATRIX,SC,80,RED,400.0,STOLEN,9770,"{'type': 'Point', 'coordinates': (-79.3749313, 43.65514877)}"
-9783,23551,GO-20189021955,THEFT UNDER - BICYCLE,2018-07-10T00:00:00,2018,July,Tuesday,10,191,18,2018-07-10T00:00:00,2018,July,Tuesday,10,191,20,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,,RC,40,BLU,500.0,STOLEN,9771,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-9784,23559,GO-20189022852,THEFT UNDER - BICYCLE,2018-07-17T00:00:00,2018,July,Tuesday,17,198,20,2018-07-17T00:00:00,2018,July,Tuesday,17,198,22,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM 3,OT,24,BLK,620.0,STOLEN,9772,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-9785,23561,GO-20189023058,THEFT UNDER - BICYCLE,2018-07-18T00:00:00,2018,July,Wednesday,18,199,20,2018-07-19T00:00:00,2018,July,Thursday,19,200,14,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,FJ,SUPREME,OT,12,BLU,250.0,STOLEN,9773,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-9786,23564,GO-20189023593,THEFT UNDER - BICYCLE,2018-07-20T00:00:00,2018,July,Friday,20,201,10,2018-07-23T00:00:00,2018,July,Monday,23,204,16,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,EM,F7,EL,30,RED,1650.0,STOLEN,9774,"{'type': 'Point', 'coordinates': (-79.37652171000002, 43.65664882)}"
-9787,23565,GO-20189024102,THEFT UNDER - BICYCLE,2018-07-26T00:00:00,2018,July,Thursday,26,207,20,2018-07-26T00:00:00,2018,July,Thursday,26,207,22,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,15,DBL,900.0,STOLEN,9775,"{'type': 'Point', 'coordinates': (-79.38132262, 43.6667026)}"
-9788,23569,GO-20189024389,B&E,2018-07-16T00:00:00,2018,July,Monday,16,197,17,2018-07-29T00:00:00,2018,July,Sunday,29,210,22,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,TR,DS3,RG,24,BLK,700.0,STOLEN,9776,"{'type': 'Point', 'coordinates': (-79.37583535, 43.65495451)}"
-9789,23570,GO-20189024679,THEFT UNDER - BICYCLE,2018-07-17T00:00:00,2018,July,Tuesday,17,198,18,2018-07-31T00:00:00,2018,July,Tuesday,31,212,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,20,,355.0,STOLEN,9777,"{'type': 'Point', 'coordinates': (-79.37849549, 43.65985781)}"
-9790,23572,GO-20189024828,THEFT UNDER - BICYCLE,2018-07-26T00:00:00,2018,July,Thursday,26,207,21,2018-08-02T00:00:00,2018,August,Thursday,2,214,9,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,XCT,RG,18,BLK,500.0,STOLEN,9778,"{'type': 'Point', 'coordinates': (-79.37583535, 43.65495451)}"
-9791,23575,GO-20189025978,THEFT UNDER - BICYCLE,2018-08-10T00:00:00,2018,August,Friday,10,222,15,2018-08-11T00:00:00,2018,August,Saturday,11,223,14,D51,Toronto,75,Church-Yonge Corridor (75),Ttc Subway Station,Transit,NO,MOUNTAIN BIKE,RG,24,GRY,649.0,STOLEN,9779,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-9792,17493,GO-20143074539,THEFT UNDER,2014-10-09T00:00:00,2014,October,Thursday,9,282,15,2014-10-09T00:00:00,2014,October,Thursday,9,282,17,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RALEIGH,MOUNTAIN,MT,21,BLK,600.0,STOLEN,9780,"{'type': 'Point', 'coordinates': (-79.38201616, 43.6683485)}"
-9793,13492,GO-20191023331,THEFT OF EBIKE UNDER $5000,2019-06-03T00:00:00,2019,June,Monday,3,154,21,2019-06-04T00:00:00,2019,June,Tuesday,4,155,8,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,STROMER,,EL,5,BLK,3500.0,STOLEN,9781,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-9794,17496,GO-20143340688,THEFT UNDER,2014-11-21T00:00:00,2014,November,Friday,21,325,9,2014-11-21T00:00:00,2014,November,Friday,21,325,10,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMO,,EL,1,GRN,600.0,STOLEN,9782,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-9795,13506,GO-20191199755,THEFT OF EBIKE UNDER $5000,2019-06-27T00:00:00,2019,June,Thursday,27,178,23,2019-06-28T00:00:00,2019,June,Friday,28,179,8,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPEADWAY,IV,SC,1,BLK,2500.0,STOLEN,9783,"{'type': 'Point', 'coordinates': (-79.37543679, 43.65246584)}"
-9796,5824,GO-20209001454,THEFT UNDER,2019-10-25T00:00:00,2019,October,Friday,25,298,16,2020-01-13T00:00:00,2020,January,Monday,13,13,21,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,UK,,RG,1,BLK,300.0,STOLEN,10019,"{'type': 'Point', 'coordinates': (-79.38946225, 43.66523161)}"
-9797,17503,GO-20159000811,THEFT UNDER,2015-02-11T00:00:00,2015,February,Wednesday,11,42,15,2015-02-16T00:00:00,2015,February,Monday,16,47,15,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EM,URBAN 2.0,EL,32,BLK,1724.0,STOLEN,9784,"{'type': 'Point', 'coordinates': (-79.38245382, 43.66941071)}"
-9798,13507,GO-20199020978,THEFT UNDER,2019-07-04T00:00:00,2019,July,Thursday,4,185,13,2019-07-04T00:00:00,2019,July,Thursday,4,185,14,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,PE,,RG,21,RED,0.0,STOLEN,9785,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-9799,17510,GO-20159001895,THEFT UNDER,2015-04-13T00:00:00,2015,April,Monday,13,103,18,2015-04-13T00:00:00,2015,April,Monday,13,103,21,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,NO,VFR,MT,18,BLK,700.0,STOLEN,9786,"{'type': 'Point', 'coordinates': (-79.37849549, 43.65985781)}"
-9800,20368,GO-20189029240,THEFT UNDER - BICYCLE,2018-09-03T00:00:00,2018,September,Monday,3,246,15,2018-09-05T00:00:00,2018,September,Wednesday,5,248,16,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,RM,VAPOR,MT,21,YEL,800.0,STOLEN,9787,"{'type': 'Point', 'coordinates': (-79.37830693, 43.66628508)}"
-9801,13620,GO-20142311115,THEFT UNDER,2014-06-17T00:00:00,2014,June,Tuesday,17,168,7,2014-06-17T00:00:00,2014,June,Tuesday,17,168,18,D52,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,ESCAPE 3,OT,21,,400.0,STOLEN,9788,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-9802,17511,GO-2015634936,THEFT UNDER,2015-04-14T00:00:00,2015,April,Tuesday,14,104,15,2015-04-17T00:00:00,2015,April,Friday,17,107,12,D51,Toronto,75,Church-Yonge Corridor (75),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,,RG,3,BLK,580.0,STOLEN,9789,"{'type': 'Point', 'coordinates': (-79.37583535, 43.65495451)}"
-9803,20371,GO-20189030352,THEFT UNDER - BICYCLE,2018-09-11T00:00:00,2018,September,Tuesday,11,254,23,2018-09-13T00:00:00,2018,September,Thursday,13,256,23,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,GT,VALANCHE,MT,9,YEL,700.0,STOLEN,9790,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-9804,13663,GO-20179006541,THEFT UNDER - BICYCLE,2017-05-17T00:00:00,2017,May,Wednesday,17,137,20,2017-05-17T00:00:00,2017,May,Wednesday,17,137,22,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE 2,RG,21,GRY,400.0,STOLEN,9791,"{'type': 'Point', 'coordinates': (-79.38132262, 43.6667026)}"
-9805,18800,GO-20209024689,THEFT UNDER,2020-09-25T00:00:00,2020,September,Friday,25,269,12,2020-09-27T00:00:00,2020,September,Sunday,27,271,13,D51,Toronto,75,Church-Yonge Corridor (75),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SC,GTX-2 HYBRID 70,RG,21,BLK,550.0,STOLEN,9792,"{'type': 'Point', 'coordinates': (-79.37943497, 43.65603477)}"
-9806,20372,GO-20189030367,THEFT UNDER,2018-09-13T00:00:00,2018,September,Thursday,13,256,22,2018-09-14T00:00:00,2018,September,Friday,14,257,4,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RC,21,BRZ,0.0,STOLEN,9793,"{'type': 'Point', 'coordinates': (-79.38154682, 43.65790792)}"
-9807,13665,GO-20179006796,THEFT UNDER - BICYCLE,2017-05-18T00:00:00,2017,May,Thursday,18,138,7,2017-05-22T00:00:00,2017,May,Monday,22,142,13,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,ROUBAIX,RC,22,BLK,1800.0,STOLEN,9794,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-9808,18804,GO-20201856658,THEFT OF EBIKE UNDER $5000,2020-09-18T00:00:00,2020,September,Friday,18,262,13,2020-10-01T00:00:00,2020,October,Thursday,1,275,8,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,E-WILD,EL,1,BLK,2597.0,STOLEN,9795,"{'type': 'Point', 'coordinates': (-79.37691204, 43.65291764)}"
-9809,20374,GO-20181722071,THEFT UNDER,2018-09-16T00:00:00,2018,September,Sunday,16,259,17,2018-09-17T00:00:00,2018,September,Monday,17,260,9,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,TANGO FOLDING B,OT,6,RED,100.0,STOLEN,9796,"{'type': 'Point', 'coordinates': (-79.38334664, 43.66205466)}"
-9810,13666,GO-20179007130,THEFT UNDER - BICYCLE,2017-05-28T00:00:00,2017,May,Sunday,28,148,19,2017-05-28T00:00:00,2017,May,Sunday,28,148,20,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ALLEZ SPORT,RC,9,SIL,1000.0,STOLEN,9797,"{'type': 'Point', 'coordinates': (-79.37516377, 43.6518061)}"
-9811,18811,GO-20209026427,THEFT UNDER,2020-10-13T00:00:00,2020,October,Tuesday,13,287,1,2020-10-14T00:00:00,2020,October,Wednesday,14,288,14,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,TRANSFER 30,MT,21,GRY,879.0,STOLEN,9798,"{'type': 'Point', 'coordinates': (-79.37906116, 43.66495458)}"
-9812,18819,GO-20202081332,B&E,2020-10-16T00:00:00,2020,October,Friday,16,290,12,2020-11-02T00:00:00,2020,November,Monday,2,307,18,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,MARIN OR MARINO,TERRA LINDA,MT,7,TRQSIL,,STOLEN,9800,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-9813,18820,GO-20202081332,B&E,2020-10-16T00:00:00,2020,October,Friday,16,290,12,2020-11-02T00:00:00,2020,November,Monday,2,307,18,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,MARIN OR MARINO,PRESIDIO,MT,3,BLKSIL,850.0,STOLEN,9801,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-9814,18824,GO-20209031929,THEFT UNDER - BICYCLE,2020-11-26T00:00:00,2020,November,Thursday,26,331,20,2020-12-13T00:00:00,2020,December,Sunday,13,348,18,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,RA,,RG,12,BGE,0.0,STOLEN,9802,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-9815,19404,GO-20179007127,THEFT UNDER,2017-05-14T00:00:00,2017,May,Sunday,14,134,18,2017-05-28T00:00:00,2017,May,Sunday,28,148,18,D52,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CC,,RC,10,,349.0,STOLEN,9803,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-9816,19483,GO-20189014863,THEFT UNDER - BICYCLE,2018-05-13T00:00:00,2018,May,Sunday,13,133,18,2018-05-14T00:00:00,2018,May,Monday,14,134,12,D52,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,MA,HAMILTON,OT,1,BLK,250.0,STOLEN,9804,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-9817,19531,GO-20189026801,THEFT UNDER - BICYCLE,2018-08-16T00:00:00,2018,August,Thursday,16,228,19,2018-08-17T00:00:00,2018,August,Friday,17,229,15,D52,Toronto,75,Church-Yonge Corridor (75),"Construction Site (Warehouse, Trailer, Shed)",Commercial,KO,,MT,18,BLU,600.0,STOLEN,9805,"{'type': 'Point', 'coordinates': (-79.37953592, 43.65629127)}"
-9818,19603,GO-20202051253,THEFT UNDER - BICYCLE,2020-10-19T00:00:00,2020,October,Monday,19,293,7,2020-10-29T00:00:00,2020,October,Thursday,29,303,9,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SCHWINN,MERIDIAN,TR,6,BRNMRN,2000.0,STOLEN,9806,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-9819,19606,GO-20209030108,THEFT UNDER - BICYCLE,2020-10-25T00:00:00,2020,October,Sunday,25,299,11,2020-11-20T00:00:00,2020,November,Friday,20,325,0,D51,Toronto,75,Church-Yonge Corridor (75),Convenience Stores,Commercial,UK,TRIUMPH,MT,15,RED,0.0,STOLEN,9807,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-9820,19777,GO-20149005012,THEFT UNDER,2014-07-09T00:00:00,2014,July,Wednesday,9,190,17,2014-07-15T00:00:00,2014,July,Tuesday,15,196,16,D52,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,M6L,FO,6,BLK,1500.0,STOLEN,9809,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-9821,19983,GO-20189033438,THEFT UNDER - BICYCLE,2018-10-08T00:00:00,2018,October,Monday,8,281,3,2018-10-10T00:00:00,2018,October,Wednesday,10,283,9,D51,Toronto,75,Church-Yonge Corridor (75),Convenience Stores,Commercial,SC,,MT,21,GRN,300.0,STOLEN,9810,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-9822,19997,GO-20189037302,THEFT UNDER - BICYCLE,2018-11-06T00:00:00,2018,November,Tuesday,6,310,21,2018-11-07T00:00:00,2018,November,Wednesday,7,311,18,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,DEVINCI,LISBON,MT,5,BLK,0.0,STOLEN,9811,"{'type': 'Point', 'coordinates': (-79.38159626, 43.66440307)}"
-9823,20001,GO-20189041690,THEFT UNDER - BICYCLE,2018-12-11T00:00:00,2018,December,Tuesday,11,345,16,2018-12-11T00:00:00,2018,December,Tuesday,11,345,18,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,OT,MAUI,FO,8,BLK,350.0,STOLEN,9812,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-9824,20009,GO-20199001095,THEFT OF EBIKE UNDER $5000,2019-01-08T00:00:00,2019,January,Tuesday,8,8,18,2019-01-09T00:00:00,2019,January,Wednesday,9,9,17,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,OT,,EL,10,WHI,4000.0,STOLEN,9813,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-9825,20022,GO-20199012417,THEFT UNDER,2019-04-18T00:00:00,2019,April,Thursday,18,108,22,2019-04-19T00:00:00,2019,April,Friday,19,109,0,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,UK,,RG,1,GRN,0.0,STOLEN,9814,"{'type': 'Point', 'coordinates': (-79.38048097, 43.66464717)}"
-9826,20025,GO-20199013300,THEFT UNDER,2019-04-04T00:00:00,2019,April,Thursday,4,94,18,2019-04-27T00:00:00,2019,April,Saturday,27,117,18,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,10,BLK,300.0,STOLEN,9815,"{'type': 'Point', 'coordinates': (-79.37562599, 43.6568205)}"
-9827,20041,GO-20191147027,THEFT UNDER - BICYCLE,2019-06-20T00:00:00,2019,June,Thursday,20,171,21,2019-06-20T00:00:00,2019,June,Thursday,20,171,22,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MARIN,MILL VALLEY,OT,0,SIL,3000.0,STOLEN,9816,"{'type': 'Point', 'coordinates': (-79.37971563, 43.66282598)}"
-9828,20042,GO-20191161189,THEFT UNDER - BICYCLE,2019-06-22T00:00:00,2019,June,Saturday,22,173,14,2019-06-22T00:00:00,2019,June,Saturday,22,173,23,D51,Toronto,75,Church-Yonge Corridor (75),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OPUS,,RC,21,BLU,750.0,STOLEN,9817,"{'type': 'Point', 'coordinates': (-79.38159626, 43.66440307)}"
-9829,20046,GO-20199020469,THEFT UNDER,2019-06-26T00:00:00,2019,June,Wednesday,26,177,23,2019-06-28T00:00:00,2019,June,Friday,28,179,20,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,NO,,RG,27,,380.0,STOLEN,9818,"{'type': 'Point', 'coordinates': (-79.37941202, 43.66889376)}"
-9830,20048,GO-20199020803,THEFT UNDER,2019-07-02T00:00:00,2019,July,Tuesday,2,183,22,2019-07-03T00:00:00,2019,July,Wednesday,3,184,9,D51,Toronto,75,Church-Yonge Corridor (75),Homeless Shelter / Mission,Other,UK,78 FRAME,BM,1,OTH,500.0,STOLEN,9819,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-9831,20050,GO-20199021124,THEFT UNDER,2019-07-04T00:00:00,2019,July,Thursday,4,185,18,2019-07-05T00:00:00,2019,July,Friday,5,186,14,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,ASPECT,MT,20,BLK,0.0,STOLEN,9820,"{'type': 'Point', 'coordinates': (-79.38201616, 43.6683485)}"
-9832,20051,GO-20191260898,THEFT UNDER - BICYCLE,2019-07-06T00:00:00,2019,July,Saturday,6,187,14,2019-07-06T00:00:00,2019,July,Saturday,6,187,18,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,ROAM2,OT,27,BLK,1000.0,STOLEN,9821,"{'type': 'Point', 'coordinates': (-79.37279194, 43.6527041)}"
-9833,20052,GO-20199021253,THEFT UNDER - BICYCLE,2019-07-06T00:00:00,2019,July,Saturday,6,187,17,2019-07-06T00:00:00,2019,July,Saturday,6,187,18,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GI,DEFY 2 DISC L B,RC,10,BLK,1200.0,STOLEN,9822,"{'type': 'Point', 'coordinates': (-79.38159626, 43.66440307)}"
-9834,20179,GO-20179007484,THEFT UNDER - BICYCLE,2017-06-02T00:00:00,2017,June,Friday,2,153,21,2017-06-04T00:00:00,2017,June,Sunday,4,155,20,D51,Toronto,75,Church-Yonge Corridor (75),Convenience Stores,Commercial,TR,TREK 7.1 FX,RG,21,GRY,800.0,STOLEN,9823,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-9835,20180,GO-20179007484,THEFT UNDER - BICYCLE,2017-06-02T00:00:00,2017,June,Friday,2,153,21,2017-06-04T00:00:00,2017,June,Sunday,4,155,20,D51,Toronto,75,Church-Yonge Corridor (75),Convenience Stores,Commercial,GI,,RG,21,GRY,1000.0,STOLEN,9824,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-9836,20181,GO-20179007748,THEFT UNDER - BICYCLE,2017-06-08T00:00:00,2017,June,Thursday,8,159,10,2017-06-08T00:00:00,2017,June,Thursday,8,159,23,D51,Toronto,75,Church-Yonge Corridor (75),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,OT,,OT,3,BLK,750.0,STOLEN,9825,"{'type': 'Point', 'coordinates': (-79.3771082, 43.65650088)}"
-9837,20184,GO-20179008041,THEFT UNDER,2017-06-13T00:00:00,2017,June,Tuesday,13,164,8,2017-06-13T00:00:00,2017,June,Tuesday,13,164,18,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,RA,UNKNOWN,TO,21,SIL,1600.0,STOLEN,9826,"{'type': 'Point', 'coordinates': (-79.37781507, 43.65821091)}"
-9838,20186,GO-20171054901,THEFT OF EBIKE UNDER $5000,2017-06-12T00:00:00,2017,June,Monday,12,163,17,2017-06-13T00:00:00,2017,June,Tuesday,13,164,21,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,EL,1,BLU,1400.0,STOLEN,9827,"{'type': 'Point', 'coordinates': (-79.38091931, 43.66572241)}"
-9839,20187,GO-20171058362,THEFT UNDER - BICYCLE,2017-06-13T00:00:00,2017,June,Tuesday,13,164,8,2017-06-14T00:00:00,2017,June,Wednesday,14,165,11,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,INNOVA,MT,21,SIL,1200.0,STOLEN,9828,"{'type': 'Point', 'coordinates': (-79.37437294, 43.64992152)}"
-9840,20188,GO-20179008206,THEFT UNDER - BICYCLE,2017-06-16T00:00:00,2017,June,Friday,16,167,16,2017-06-17T00:00:00,2017,June,Saturday,17,168,2,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,5,,315.0,STOLEN,9829,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-9841,20189,GO-20179008369,THEFT UNDER - BICYCLE,2017-06-16T00:00:00,2017,June,Friday,16,167,16,2017-06-19T00:00:00,2017,June,Monday,19,170,0,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,2017 ROAM 0,MT,30,BLK,1600.0,STOLEN,9830,"{'type': 'Point', 'coordinates': (-79.37516377, 43.6518061)}"
-9842,20190,GO-20179008369,THEFT UNDER - BICYCLE,2017-06-16T00:00:00,2017,June,Friday,16,167,16,2017-06-19T00:00:00,2017,June,Monday,19,170,0,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,VITA,RG,24,PLE,1500.0,STOLEN,9831,"{'type': 'Point', 'coordinates': (-79.37516377, 43.6518061)}"
-9843,13804,GO-20189027338,THEFT UNDER - BICYCLE,2018-08-21T00:00:00,2018,August,Tuesday,21,233,13,2018-08-21T00:00:00,2018,August,Tuesday,21,233,16,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,KH,,RG,7,BRN,480.0,STOLEN,9921,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-9844,20193,GO-20179008729,THEFT UNDER - BICYCLE,2017-06-22T00:00:00,2017,June,Thursday,22,173,11,2017-06-22T00:00:00,2017,June,Thursday,22,173,20,D51,Toronto,75,Church-Yonge Corridor (75),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,FIRENZE,RC,14,GRY,800.0,STOLEN,9832,"{'type': 'Point', 'coordinates': (-79.37691204, 43.65291764)}"
-9845,20194,GO-20179008767,THEFT UNDER - BICYCLE,2017-06-22T00:00:00,2017,June,Thursday,22,173,20,2017-06-23T00:00:00,2017,June,Friday,23,174,12,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,ECHO,MT,9,SIL,500.0,STOLEN,9833,"{'type': 'Point', 'coordinates': (-79.38374902, 43.66302137000001)}"
-9846,20195,GO-20179008844,THEFT UNDER - BICYCLE,2017-06-24T00:00:00,2017,June,Saturday,24,175,18,2017-06-25T00:00:00,2017,June,Sunday,25,176,0,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RC,12,YEL,1200.0,STOLEN,9834,"{'type': 'Point', 'coordinates': (-79.37866195000001, 43.66712397)}"
-9847,20196,GO-20179009129,THEFT UNDER - BICYCLE,2017-06-28T00:00:00,2017,June,Wednesday,28,179,17,2017-06-28T00:00:00,2017,June,Wednesday,28,179,18,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,MT,24,BLK,800.0,STOLEN,9835,"{'type': 'Point', 'coordinates': (-79.37424947, 43.653501610000006)}"
-9848,20197,GO-20171143869,THEFT UNDER - BICYCLE,2017-06-21T00:00:00,2017,June,Wednesday,21,172,8,2017-06-26T00:00:00,2017,June,Monday,26,177,19,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,CASE,MT,3,WHI,600.0,STOLEN,9836,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-9849,20199,GO-20179009690,THEFT UNDER - BICYCLE,2017-07-08T00:00:00,2017,July,Saturday,8,189,4,2017-07-08T00:00:00,2017,July,Saturday,8,189,13,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,2017 SIRRUS CAR,RG,22,RED,2600.0,STOLEN,9837,"{'type': 'Point', 'coordinates': (-79.38334664, 43.66205466)}"
-9850,20200,GO-20179009817,THEFT UNDER - BICYCLE,2017-07-08T00:00:00,2017,July,Saturday,8,189,18,2017-07-10T00:00:00,2017,July,Monday,10,191,11,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,MO,,MT,21,GLD,400.0,STOLEN,9838,"{'type': 'Point', 'coordinates': (-79.37516377, 43.6518061)}"
-9851,20441,GO-20159007762,THEFT UNDER,2015-09-25T00:00:00,2015,September,Friday,25,268,14,2015-09-25T00:00:00,2015,September,Friday,25,268,20,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,OT,,OT,1,PNK,550.0,STOLEN,9952,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-9852,20204,GO-20171275299,THEFT UNDER - BICYCLE,2017-07-15T00:00:00,2017,July,Saturday,15,196,22,2017-07-16T00:00:00,2017,July,Sunday,16,197,12,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,SOLARIS,OT,21,GRYPNK,300.0,STOLEN,9839,"{'type': 'Point', 'coordinates': (-79.37516377, 43.6518061)}"
-9853,20206,GO-20179010418,THEFT UNDER,2017-07-16T00:00:00,2017,July,Sunday,16,197,18,2017-07-17T00:00:00,2017,July,Monday,17,198,16,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,SEDONA,MT,21,BGE,800.0,STOLEN,9840,"{'type': 'Point', 'coordinates': (-79.37667701, 43.66241871)}"
-9854,20208,GO-20179010516,THEFT UNDER,2017-07-18T00:00:00,2017,July,Tuesday,18,199,7,2017-07-18T00:00:00,2017,July,Tuesday,18,199,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,STRADA 600,OT,21,BLK,1200.0,STOLEN,9841,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-9855,20210,GO-20171296773,THEFT UNDER,2017-05-01T00:00:00,2017,May,Monday,1,121,12,2017-07-19T00:00:00,2017,July,Wednesday,19,200,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FORTRESS,1700,SC,0,BLK,1800.0,STOLEN,9842,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-9856,20212,GO-20171330819,THEFT UNDER - BICYCLE,2017-07-22T00:00:00,2017,July,Saturday,22,203,22,2017-07-24T00:00:00,2017,July,Monday,24,205,19,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,,RG,24,BLK,300.0,STOLEN,9843,"{'type': 'Point', 'coordinates': (-79.38052643, 43.67161072)}"
-9857,20214,GO-20179011261,THEFT UNDER,2017-07-27T00:00:00,2017,July,Thursday,27,208,15,2017-07-28T00:00:00,2017,July,Friday,28,209,18,D51,Toronto,75,Church-Yonge Corridor (75),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,GI,,RC,27,BLK,2000.0,STOLEN,9844,"{'type': 'Point', 'coordinates': (-79.37562599, 43.6568205)}"
-9858,20217,GO-20179011965,THEFT UNDER - BICYCLE,2017-08-08T00:00:00,2017,August,Tuesday,8,220,8,2017-08-08T00:00:00,2017,August,Tuesday,8,220,23,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,,RG,20,BLK,110.0,STOLEN,9845,"{'type': 'Point', 'coordinates': (-79.38052643, 43.67161072)}"
-9859,20219,GO-20179012040,THEFT UNDER - BICYCLE,2017-08-09T00:00:00,2017,August,Wednesday,9,221,8,2017-08-09T00:00:00,2017,August,Wednesday,9,221,19,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,24,WHI,750.0,STOLEN,9846,"{'type': 'Point', 'coordinates': (-79.37849549, 43.65985781)}"
-9860,20220,GO-20179012040,THEFT UNDER - BICYCLE,2017-08-09T00:00:00,2017,August,Wednesday,9,221,8,2017-08-09T00:00:00,2017,August,Wednesday,9,221,19,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GI,RAPID (SIZE = M,TO,24,WHI,500.0,STOLEN,9847,"{'type': 'Point', 'coordinates': (-79.37849549, 43.65985781)}"
-9861,20225,GO-20179012549,THEFT UNDER - BICYCLE,2017-08-16T00:00:00,2017,August,Wednesday,16,228,8,2017-08-17T00:00:00,2017,August,Thursday,17,229,0,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,PRESTO,RC,21,BLK,450.0,STOLEN,9848,"{'type': 'Point', 'coordinates': (-79.37615599, 43.65014184)}"
-9862,20226,GO-20171495774,THEFT UNDER - BICYCLE,2017-08-18T00:00:00,2017,August,Friday,18,230,13,2017-08-18T00:00:00,2017,August,Friday,18,230,21,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,LINK D7I,FO,9,GRY,1200.0,STOLEN,9849,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-9863,20228,GO-20179012806,THEFT UNDER - BICYCLE,2017-08-20T00:00:00,2017,August,Sunday,20,232,11,2017-08-20T00:00:00,2017,August,Sunday,20,232,19,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,STOCKHOLM,OT,24,BLK,300.0,STOLEN,9850,"{'type': 'Point', 'coordinates': (-79.37943497, 43.65603477)}"
-9864,20232,GO-20179013450,THEFT UNDER,2017-08-26T00:00:00,2017,August,Saturday,26,238,10,2017-08-27T00:00:00,2017,August,Sunday,27,239,11,D51,Toronto,75,Church-Yonge Corridor (75),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,RM,,MT,10,BLK,1200.0,STOLEN,9851,"{'type': 'Point', 'coordinates': (-79.37215317, 43.64913066)}"
-9865,20233,GO-20179013621,THEFT UNDER,2017-08-29T00:00:00,2017,August,Tuesday,29,241,15,2017-08-29T00:00:00,2017,August,Tuesday,29,241,15,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,ESCAPE 3,RG,8,YEL,1000.0,STOLEN,9852,"{'type': 'Point', 'coordinates': (-79.37906116, 43.66495458)}"
-9866,20234,GO-20179013658,THEFT UNDER - BICYCLE,2017-07-21T00:00:00,2017,July,Friday,21,202,8,2017-08-30T00:00:00,2017,August,Wednesday,30,242,10,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,RA,PORTAGE,RG,18,SIL,500.0,STOLEN,9853,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-9867,20238,GO-20179014552,THEFT UNDER - BICYCLE,2017-09-12T00:00:00,2017,September,Tuesday,12,255,7,2017-09-12T00:00:00,2017,September,Tuesday,12,255,14,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,OT,,RG,8,BRN,0.0,STOLEN,9854,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-9868,20245,GO-20179015833,THEFT UNDER - BICYCLE,2017-09-21T00:00:00,2017,September,Thursday,21,264,9,2017-09-26T00:00:00,2017,September,Tuesday,26,269,13,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,BI,,TO,12,BLK,400.0,STOLEN,9855,"{'type': 'Point', 'coordinates': (-79.37643241, 43.65085158000001)}"
-9869,20248,GO-20179016331,THEFT UNDER - BICYCLE,2017-10-01T00:00:00,2017,October,Sunday,1,274,18,2017-10-02T00:00:00,2017,October,Monday,2,275,21,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,DOWNTOWN EX,RG,7,LGR,150.0,STOLEN,9856,"{'type': 'Point', 'coordinates': (-79.38201616, 43.6683485)}"
-9870,20251,GO-20179016655,THEFT UNDER - BICYCLE,2017-10-07T00:00:00,2017,October,Saturday,7,280,9,2017-10-07T00:00:00,2017,October,Saturday,7,280,11,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,ADVANTAGE,RC,9,BLK,1500.0,STOLEN,9857,"{'type': 'Point', 'coordinates': (-79.37830573, 43.66310625)}"
-9871,20264,GO-20179018105,THEFT UNDER - BICYCLE,2017-10-24T00:00:00,2017,October,Tuesday,24,297,23,2017-10-25T00:00:00,2017,October,Wednesday,25,298,0,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,GF-02,TO,22,GRN,3000.0,STOLEN,9858,"{'type': 'Point', 'coordinates': (-79.38048097, 43.66464717)}"
-9872,20266,GO-20179018298,THEFT UNDER - BICYCLE,2017-10-26T00:00:00,2017,October,Thursday,26,299,18,2017-10-27T00:00:00,2017,October,Friday,27,300,1,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,OT,1,ONG,450.0,STOLEN,9859,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-9873,20278,GO-20179021063,THEFT UNDER - BICYCLE,2017-12-01T00:00:00,2017,December,Friday,1,335,18,2017-12-02T00:00:00,2017,December,Saturday,2,336,3,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,RG,9,GRY,800.0,STOLEN,9860,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-9874,20284,GO-20189000122,THEFT UNDER - BICYCLE,2017-12-30T00:00:00,2017,December,Saturday,30,364,23,2018-01-02T00:00:00,2018,January,Tuesday,2,2,18,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,10,BLU,1000.0,STOLEN,9861,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-9875,20375,GO-20189030755,THEFT UNDER - BICYCLE,2018-09-08T00:00:00,2018,September,Saturday,8,251,17,2018-09-17T00:00:00,2018,September,Monday,17,260,9,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,WINDSOR 3.0,RG,8,WHI,350.0,STOLEN,9862,"{'type': 'Point', 'coordinates': (-79.37583535, 43.65495451)}"
-9876,13667,GO-20179007244,THEFT UNDER,2017-05-30T00:00:00,2017,May,Tuesday,30,150,9,2017-05-30T00:00:00,2017,May,Tuesday,30,150,20,D51,Toronto,75,Church-Yonge Corridor (75),Convenience Stores,Commercial,UK,HARPER SINGLE S,RG,1,GRY,270.0,STOLEN,9863,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-9877,20376,GO-20189031147,THEFT UNDER - BICYCLE,2018-09-18T00:00:00,2018,September,Tuesday,18,261,9,2018-09-19T00:00:00,2018,September,Wednesday,19,262,14,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MA,2150,TO,20,GRY,600.0,STOLEN,9864,"{'type': 'Point', 'coordinates': (-79.3774505, 43.65131026)}"
-9878,20378,GO-20189031323,THEFT UNDER - BICYCLE,2018-09-20T00:00:00,2018,September,Thursday,20,263,19,2018-09-20T00:00:00,2018,September,Thursday,20,263,21,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,3,,0.0,STOLEN,9865,"{'type': 'Point', 'coordinates': (-79.38245382, 43.66941071)}"
-9879,13668,GO-2017994048,THEFT UNDER - BICYCLE,2017-06-05T00:00:00,2017,June,Monday,5,156,6,2017-06-05T00:00:00,2017,June,Monday,5,156,7,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,DEFY,RC,0,WHI,850.0,STOLEN,9866,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-9880,20379,GO-20159002616,THEFT FROM MOTOR VEHICLE UNDER,2015-05-07T00:00:00,2015,May,Thursday,7,127,22,2015-05-11T00:00:00,2015,May,Monday,11,131,11,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,PARATROOPER,FO,21,GRN,1000.0,STOLEN,9867,"{'type': 'Point', 'coordinates': (-79.37830573, 43.66310625)}"
-9881,13670,GO-20179007807,THEFT UNDER - BICYCLE,2017-06-09T00:00:00,2017,June,Friday,9,160,9,2017-06-09T00:00:00,2017,June,Friday,9,160,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,2016 ESCAPE 3,RG,21,GRY,499.0,STOLEN,9868,"{'type': 'Point', 'coordinates': (-79.37805214, 43.6526818)}"
-9882,20381,GO-20159002747,THEFT UNDER,2015-04-24T00:00:00,2015,April,Friday,24,114,16,2015-05-14T00:00:00,2015,May,Thursday,14,134,21,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,OT,EITHER 2012 OR,RC,16,BLK,500.0,STOLEN,9869,"{'type': 'Point', 'coordinates': (-79.37781507, 43.65821091)}"
-9883,13672,GO-20171073577,THEFT UNDER - BICYCLE,2017-06-16T00:00:00,2017,June,Friday,16,167,8,2017-06-16T00:00:00,2017,June,Friday,16,167,14,D51,Toronto,75,Church-Yonge Corridor (75),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UNKNOWN,UNKNONW,OT,5,BLK,260.0,STOLEN,9870,"{'type': 'Point', 'coordinates': (-79.38201616, 43.6683485)}"
-9884,20382,GO-20159002875,THEFT UNDER,2015-04-24T00:00:00,2015,April,Friday,24,114,11,2015-05-19T00:00:00,2015,May,Tuesday,19,139,11,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,UNO,OT,1,BLK,750.0,STOLEN,9871,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-9885,13683,GO-20179009123,THEFT UNDER - BICYCLE,2017-06-03T00:00:00,2017,June,Saturday,3,154,16,2017-06-28T00:00:00,2017,June,Wednesday,28,179,21,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,2014 SUPERSIX E,RC,21,BLK,2000.0,STOLEN,9872,"{'type': 'Point', 'coordinates': (-79.37516377, 43.6518061)}"
-9886,20383,GO-2015864614,THEFT UNDER,2015-05-24T00:00:00,2015,May,Sunday,24,144,0,2015-05-24T00:00:00,2015,May,Sunday,24,144,10,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,EMMO,EX500,EL,0,BLK,1147.0,STOLEN,9873,"{'type': 'Point', 'coordinates': (-79.37941202, 43.66889376)}"
-9887,13685,GO-20171166553,THEFT OF EBIKE UNDER $5000,2017-06-29T00:00:00,2017,June,Thursday,29,180,18,2017-06-29T00:00:00,2017,June,Thursday,29,180,22,D51,Toronto,75,Church-Yonge Corridor (75),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,TMC,29572V,EL,3,BLU,2200.0,STOLEN,9874,"{'type': 'Point', 'coordinates': (-79.38132262, 43.6667026)}"
-9888,20386,GO-2015870000,THEFT UNDER,2015-05-19T00:00:00,2015,May,Tuesday,19,139,4,2015-05-25T00:00:00,2015,May,Monday,25,145,9,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SCOTT,SCALE 970,MT,30,BLKRED,1200.0,STOLEN,9875,"{'type': 'Point', 'coordinates': (-79.37583535, 43.65495451)}"
-9889,13686,GO-20179009348,THEFT UNDER,2017-07-02T00:00:00,2017,July,Sunday,2,183,20,2017-07-03T00:00:00,2017,July,Monday,3,184,19,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MILANO,OT,1,RED,600.0,STOLEN,9876,"{'type': 'Point', 'coordinates': (-79.37691204, 43.65291764)}"
-9890,12550,GO-20169011545,THEFT UNDER - BICYCLE,2016-10-04T00:00:00,2016,October,Tuesday,4,278,14,2016-10-04T00:00:00,2016,October,Tuesday,4,278,15,D14,Toronto,84,Little Portugal (84),Unknown,Other,GI,ESCAPE 3,MT,21,GRY,600.0,STOLEN,18153,"{'type': 'Point', 'coordinates': (-79.42808463, 43.64955835)}"
-9891,13687,GO-20179009370,THEFT UNDER - BICYCLE,2017-06-30T00:00:00,2017,June,Friday,30,181,8,2017-07-04T00:00:00,2017,July,Tuesday,4,185,9,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,OT,21,GRN,800.0,STOLEN,9877,"{'type': 'Point', 'coordinates': (-79.37894504, 43.65169174)}"
-9892,13688,GO-20179009375,THEFT UNDER,2017-06-26T00:00:00,2017,June,Monday,26,177,0,2017-07-04T00:00:00,2017,July,Tuesday,4,185,10,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,NO,YORKVILLE,RG,21,PNK,500.0,STOLEN,9878,"{'type': 'Point', 'coordinates': (-79.37583535, 43.65495451)}"
-9893,13689,GO-20179009452,THEFT UNDER - BICYCLE,2017-07-04T00:00:00,2017,July,Tuesday,4,185,20,2017-07-05T00:00:00,2017,July,Wednesday,5,186,7,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,3,RG,25,BLK,499.0,STOLEN,9879,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-9894,13690,GO-20179009493,THEFT UNDER - BICYCLE,2017-06-30T00:00:00,2017,June,Friday,30,181,15,2017-07-05T00:00:00,2017,July,Wednesday,5,186,15,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RG,1,WHI,500.0,STOLEN,9880,"{'type': 'Point', 'coordinates': (-79.38201616, 43.6683485)}"
-9895,13691,GO-20179009632,THEFT UNDER - BICYCLE,2017-07-06T00:00:00,2017,July,Thursday,6,187,17,2017-07-07T00:00:00,2017,July,Friday,7,188,11,D51,Toronto,75,Church-Yonge Corridor (75),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,2012 GIANT ESCA,RG,8,WHI,550.0,STOLEN,9881,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-9896,13692,GO-20171208956,THEFT UNDER - BICYCLE,2017-07-05T00:00:00,2017,July,Wednesday,5,186,20,2017-07-06T00:00:00,2017,July,Thursday,6,187,13,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,EMONDA ALR 4,MT,18,BLKGRY,2000.0,STOLEN,9882,"{'type': 'Point', 'coordinates': (-79.38638506, 43.669368250000005)}"
-9897,13694,GO-20171263033,THEFT UNDER - BICYCLE,2017-07-06T00:00:00,2017,July,Thursday,6,187,18,2017-07-17T00:00:00,2017,July,Monday,17,198,16,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MARIN OR MARINO,SAN ANSELMO,OT,24,GRY,800.0,STOLEN,9883,"{'type': 'Point', 'coordinates': (-79.38063454, 43.65577409)}"
-9898,13695,GO-20179010278,THEFT UNDER - BICYCLE,2017-07-15T00:00:00,2017,July,Saturday,15,196,13,2017-07-15T00:00:00,2017,July,Saturday,15,196,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,SCHWINN CROSSFI,RC,30,RED,500.0,STOLEN,9884,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-9899,13696,GO-20179010554,THEFT UNDER - BICYCLE,2017-07-18T00:00:00,2017,July,Tuesday,18,199,8,2017-07-18T00:00:00,2017,July,Tuesday,18,199,23,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,RC,12,ONG,450.0,STOLEN,9885,"{'type': 'Point', 'coordinates': (-79.38638506, 43.669368250000005)}"
-9900,13697,GO-20179010758,THEFT UNDER - BICYCLE,2017-07-06T00:00:00,2017,July,Thursday,6,187,21,2017-07-21T00:00:00,2017,July,Friday,21,202,14,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,96243,TR,5,BLU,700.0,STOLEN,9886,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-9901,13700,GO-20179011871,THEFT UNDER - BICYCLE,2017-08-06T00:00:00,2017,August,Sunday,6,218,0,2017-08-07T00:00:00,2017,August,Monday,7,219,20,D51,Toronto,75,Church-Yonge Corridor (75),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,MA,SAUSALITO,TO,21,SIL,600.0,STOLEN,9887,"{'type': 'Point', 'coordinates': (-79.38338195, 43.66213624)}"
-9902,13701,GO-20179011871,THEFT UNDER - BICYCLE,2017-08-06T00:00:00,2017,August,Sunday,6,218,0,2017-08-07T00:00:00,2017,August,Monday,7,219,20,D51,Toronto,75,Church-Yonge Corridor (75),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,GI,EXPRESSWAY,FO,6,BLK,500.0,STOLEN,9888,"{'type': 'Point', 'coordinates': (-79.38338195, 43.66213624)}"
-9903,13703,GO-20179011988,THEFT UNDER - BICYCLE,2017-08-08T00:00:00,2017,August,Tuesday,8,220,21,2017-08-09T00:00:00,2017,August,Wednesday,9,221,11,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CORSO 2.0 SUS H,OT,21,RED,680.0,STOLEN,9889,"{'type': 'Point', 'coordinates': (-79.38159830000001, 43.66737287)}"
-9904,13707,GO-20179012468,THEFT UNDER - BICYCLE,2017-08-14T00:00:00,2017,August,Monday,14,226,3,2017-08-15T00:00:00,2017,August,Tuesday,15,227,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,NINETEEN SEVENT,TO,10,MRN,1200.0,STOLEN,9890,"{'type': 'Point', 'coordinates': (-79.37943497, 43.65603477)}"
-9905,13710,GO-20179013815,THEFT UNDER - BICYCLE,2017-08-28T00:00:00,2017,August,Monday,28,240,7,2017-09-01T00:00:00,2017,September,Friday,1,244,10,D51,Toronto,75,Church-Yonge Corridor (75),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,CC,MONZA,RG,21,SIL,300.0,STOLEN,9891,"{'type': 'Point', 'coordinates': (-79.37691204, 43.65291764)}"
-9906,13711,GO-20179014235,THEFT OF EBIKE UNDER $5000,2017-09-07T00:00:00,2017,September,Thursday,7,250,17,2017-09-07T00:00:00,2017,September,Thursday,7,250,22,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,V1 ELITE BLACK,EL,40,BLK,3000.0,STOLEN,9892,"{'type': 'Point', 'coordinates': (-79.37652171000002, 43.65664882)}"
-9907,13712,GO-20179014387,THEFT UNDER,2017-09-08T00:00:00,2017,September,Friday,8,251,19,2017-09-10T00:00:00,2017,September,Sunday,10,253,13,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,DETOUR,RG,7,GRY,450.0,STOLEN,9893,"{'type': 'Point', 'coordinates': (-79.38334664, 43.66205466)}"
-9908,13713,GO-20179014499,B&E,2017-08-15T00:00:00,2017,August,Tuesday,15,227,19,2017-09-11T00:00:00,2017,September,Monday,11,254,19,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,SIRRUS CARBON,RC,24,BLK,2300.0,STOLEN,9894,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-9909,13723,GO-20179017639,THEFT UNDER - BICYCLE,2017-10-18T00:00:00,2017,October,Wednesday,18,291,9,2017-10-19T00:00:00,2017,October,Thursday,19,292,15,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KO,JAKE CX 2016,OT,24,BLK,1900.0,STOLEN,9895,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-9910,13727,GO-20179018337,THEFT UNDER - BICYCLE,2017-10-12T00:00:00,2017,October,Thursday,12,285,23,2017-10-27T00:00:00,2017,October,Friday,27,300,14,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,10SP NZW,RG,21,RED,550.0,STOLEN,9896,"{'type': 'Point', 'coordinates': (-79.38159830000001, 43.66737287)}"
-9911,13729,GO-20179018517,THEFT UNDER - BICYCLE,2017-10-27T00:00:00,2017,October,Friday,27,300,10,2017-10-30T00:00:00,2017,October,Monday,30,303,15,D51,Toronto,75,Church-Yonge Corridor (75),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,,MT,18,BLK,600.0,STOLEN,9897,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-9912,13731,GO-20179018871,THEFT UNDER - BICYCLE,2017-10-20T00:00:00,2017,October,Friday,20,293,11,2017-11-04T00:00:00,2017,November,Saturday,4,308,12,D51,Toronto,75,Church-Yonge Corridor (75),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,WOMEN'S 7.2,TO,27,WHI,800.0,STOLEN,9898,"{'type': 'Point', 'coordinates': (-79.38159626, 43.66440307)}"
-9913,13732,GO-20179018896,THEFT UNDER - BICYCLE,2017-11-04T00:00:00,2017,November,Saturday,4,308,11,2017-11-04T00:00:00,2017,November,Saturday,4,308,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,SUPERCYCLE SC 1,MT,18,BLK,113.0,STOLEN,9899,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-9914,13733,GO-20179018978,THEFT UNDER - BICYCLE,2017-11-06T00:00:00,2017,November,Monday,6,310,9,2017-11-06T00:00:00,2017,November,Monday,6,310,10,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RC,7,WHI,2400.0,STOLEN,9900,"{'type': 'Point', 'coordinates': (-79.37758587, 43.65456447)}"
-9915,13736,GO-20172044474,B&E,2017-11-11T00:00:00,2017,November,Saturday,11,315,3,2017-11-11T00:00:00,2017,November,Saturday,11,315,20,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NORCO,A2,RC,18,,3000.0,STOLEN,9901,"{'type': 'Point', 'coordinates': (-79.38245382, 43.66941071)}"
-9916,13737,GO-20179019504,THEFT UNDER,2017-11-13T00:00:00,2017,November,Monday,13,317,2,2017-11-14T00:00:00,2017,November,Tuesday,14,318,3,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,NO,CRD 1,RC,30,OTH,1000.0,STOLEN,9902,"{'type': 'Point', 'coordinates': (-79.38612041000002, 43.66874221)}"
-9917,13738,GO-20179020606,THEFT UNDER - BICYCLE,2017-11-23T00:00:00,2017,November,Thursday,23,327,15,2017-11-26T00:00:00,2017,November,Sunday,26,330,11,D51,Toronto,75,Church-Yonge Corridor (75),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UK,,OT,1,,0.0,RECOVERED,9903,"{'type': 'Point', 'coordinates': (-79.38159626, 43.66440307)}"
-9918,13739,GO-20179021314,THEFT UNDER - BICYCLE,2017-12-04T00:00:00,2017,December,Monday,4,338,23,2017-12-05T00:00:00,2017,December,Tuesday,5,339,9,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,7.2 FX,OT,24,BLK,600.0,STOLEN,9904,"{'type': 'Point', 'coordinates': (-79.38277088, 43.67016017)}"
-9919,4804,GO-20199022876,THEFT UNDER,2019-07-19T00:00:00,2019,July,Friday,19,200,0,2019-07-19T00:00:00,2019,July,Friday,19,200,8,D11,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,KO,DEW,MT,9,GRY,500.0,STOLEN,18466,"{'type': 'Point', 'coordinates': (-79.44298987, 43.65560387)}"
-9920,13748,GO-20189014008,THEFT UNDER - BICYCLE,2018-05-02T00:00:00,2018,May,Wednesday,2,122,21,2018-05-06T00:00:00,2018,May,Sunday,6,126,21,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,MT,28,RED,2000.0,STOLEN,9905,"{'type': 'Point', 'coordinates': (-79.37840051, 43.66333422)}"
-9921,13750,GO-20189014379,THEFT UNDER - BICYCLE,2018-02-01T00:00:00,2018,February,Thursday,1,32,18,2018-05-10T00:00:00,2018,May,Thursday,10,130,8,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,ROAM,RG,10,SIL,800.0,STOLEN,9906,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-9922,13754,GO-2018862298,THEFT UNDER - BICYCLE,2018-05-13T00:00:00,2018,May,Sunday,13,133,12,2018-05-13T00:00:00,2018,May,Sunday,13,133,12,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,MT,18,YEL,5000.0,STOLEN,9907,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-9923,13757,GO-2018931582,THEFT UNDER - BICYCLE,2018-05-21T00:00:00,2018,May,Monday,21,141,14,2018-05-24T00:00:00,2018,May,Thursday,24,144,9,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KONA,DEW,OT,0,,,STOLEN,9908,"{'type': 'Point', 'coordinates': (-79.38245382, 43.66941071)}"
-9924,13759,GO-20189016827,THEFT UNDER - BICYCLE,2018-05-30T00:00:00,2018,May,Wednesday,30,150,15,2018-05-30T00:00:00,2018,May,Wednesday,30,150,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,,MT,21,GRY,682.0,STOLEN,9909,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-9925,13768,GO-20181060994,THEFT UNDER - BICYCLE,2018-06-11T00:00:00,2018,June,Monday,11,162,8,2018-06-11T00:00:00,2018,June,Monday,11,162,22,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,LINUS,LADIES,OT,0,PNK,1000.0,STOLEN,9910,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-9926,13776,GO-20189019722,THEFT UNDER - BICYCLE,2018-06-21T00:00:00,2018,June,Thursday,21,172,13,2018-06-21T00:00:00,2018,June,Thursday,21,172,20,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,UK,2711,RG,1,WHI,300.0,STOLEN,9911,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-9927,13779,GO-20189021455,THEFT FROM MOTOR VEHICLE UNDER,2018-07-05T00:00:00,2018,July,Thursday,5,186,23,2018-07-06T00:00:00,2018,July,Friday,6,187,16,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,RAZZLE 51818C,RG,1,PNK,100.0,STOLEN,9912,"{'type': 'Point', 'coordinates': (-79.37633027, 43.65851354)}"
-9928,13780,GO-20189021555,THEFT UNDER - BICYCLE,2018-07-07T00:00:00,2018,July,Saturday,7,188,22,2018-07-08T00:00:00,2018,July,Sunday,8,189,17,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,VIA CARISMA,RG,21,DGR,125.0,STOLEN,9913,"{'type': 'Point', 'coordinates': (-79.37883347, 43.66067091000001)}"
-9929,13782,GO-20189022121,THEFT UNDER - BICYCLE,2018-07-11T00:00:00,2018,July,Wednesday,11,192,20,2018-07-11T00:00:00,2018,July,Wednesday,11,192,23,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BI,,RG,24,LGR,450.0,STOLEN,9914,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-9930,13783,GO-20189022509,THEFT UNDER - BICYCLE,2018-07-14T00:00:00,2018,July,Saturday,14,195,18,2018-07-15T00:00:00,2018,July,Sunday,15,196,14,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,DEVINCI CARTIER,RG,9,BLK,1175.0,STOLEN,9915,"{'type': 'Point', 'coordinates': (-79.37267618, 43.65234821)}"
-9931,13786,GO-20189023700,THEFT UNDER - BICYCLE,2018-07-21T00:00:00,2018,July,Saturday,21,202,7,2018-07-24T00:00:00,2018,July,Tuesday,24,205,12,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,TR,,RG,21,BLK,400.0,STOLEN,9916,"{'type': 'Point', 'coordinates': (-79.38201616, 43.6683485)}"
-9932,13789,GO-20189024198,THEFT UNDER - BICYCLE,2018-07-24T00:00:00,2018,July,Tuesday,24,205,10,2018-07-27T00:00:00,2018,July,Friday,27,208,14,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,UK,,RG,3,BLU,0.0,STOLEN,9917,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-9933,13795,GO-20189025397,THEFT UNDER - BICYCLE,2018-07-31T00:00:00,2018,July,Tuesday,31,212,13,2018-08-07T00:00:00,2018,August,Tuesday,7,219,13,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GI,,TO,9,BLU,1500.0,STOLEN,9918,"{'type': 'Point', 'coordinates': (-79.37562599, 43.6568205)}"
-9934,13801,GO-20181512274,THEFT FROM MOTOR VEHICLE UNDER,2018-08-15T00:00:00,2018,August,Wednesday,15,227,21,2018-08-16T00:00:00,2018,August,Thursday,16,228,15,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,OT,7,GRN,300.0,STOLEN,9919,"{'type': 'Point', 'coordinates': (-79.38565257, 43.66756225)}"
-9935,13802,GO-20181512274,THEFT FROM MOTOR VEHICLE UNDER,2018-08-15T00:00:00,2018,August,Wednesday,15,227,21,2018-08-16T00:00:00,2018,August,Thursday,16,228,15,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,OT,7,BLK,300.0,STOLEN,9920,"{'type': 'Point', 'coordinates': (-79.38565257, 43.66756225)}"
-9936,13805,GO-20189027622,THEFT UNDER,2018-08-23T00:00:00,2018,August,Thursday,23,235,14,2018-08-23T00:00:00,2018,August,Thursday,23,235,15,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,PE,1970S,RC,12,BLU,200.0,STOLEN,9922,"{'type': 'Point', 'coordinates': (-79.37572376, 43.64746036)}"
-9937,13808,GO-20181552907,THEFT UNDER - BICYCLE,2018-08-19T00:00:00,2018,August,Sunday,19,231,1,2018-08-29T00:00:00,2018,August,Wednesday,29,241,20,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OPUS,CITATO 1.0,OT,18,SILBLK,1700.0,STOLEN,9923,"{'type': 'Point', 'coordinates': (-79.37215317, 43.64913066)}"
-9938,13809,GO-20189028402,THEFT UNDER - BICYCLE,2018-08-28T00:00:00,2018,August,Tuesday,28,240,11,2018-08-29T00:00:00,2018,August,Wednesday,29,241,10,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,IH,ALL-TERRAIN FAT,MT,7,BLK,600.0,STOLEN,9924,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-9939,13810,GO-20189028891,THEFT UNDER - BICYCLE,2018-09-01T00:00:00,2018,September,Saturday,1,244,14,2018-09-02T00:00:00,2018,September,Sunday,2,245,18,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,CC,700C XSPORT,RG,21,BLK,500.0,STOLEN,9925,"{'type': 'Point', 'coordinates': (-79.37849549, 43.65985781)}"
-9940,13813,GO-20189029623,THEFT UNDER - BICYCLE,2018-09-08T00:00:00,2018,September,Saturday,8,251,16,2018-09-08T00:00:00,2018,September,Saturday,8,251,18,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,DCO DOWNTOWN 70,RG,7,BLK,400.0,STOLEN,9926,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-9941,13820,GO-20189030994,THEFT UNDER - BICYCLE,2018-09-15T00:00:00,2018,September,Saturday,15,258,18,2018-09-18T00:00:00,2018,September,Tuesday,18,261,16,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,OT,SIRRUS,TO,27,SIL,800.0,STOLEN,9927,"{'type': 'Point', 'coordinates': (-79.3771082, 43.65650088)}"
-9942,13821,GO-20189030994,THEFT UNDER - BICYCLE,2018-09-15T00:00:00,2018,September,Saturday,15,258,18,2018-09-18T00:00:00,2018,September,Tuesday,18,261,16,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,KO,DEW,TO,24,GRN,800.0,STOLEN,9928,"{'type': 'Point', 'coordinates': (-79.3771082, 43.65650088)}"
-9943,20576,GO-20179006603,THEFT UNDER,2017-05-18T00:00:00,2017,May,Thursday,18,138,8,2017-05-18T00:00:00,2017,May,Thursday,18,138,21,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,KO,,MT,21,BLK,500.0,STOLEN,9983,"{'type': 'Point', 'coordinates': (-79.38154682, 43.65790792)}"
-9944,13823,GO-20189031112,THEFT UNDER - BICYCLE,2018-09-19T00:00:00,2018,September,Wednesday,19,262,6,2018-09-19T00:00:00,2018,September,Wednesday,19,262,13,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,SPECIALIZED,ALIBI STEP THRU,RG,7,BLK,900.0,STOLEN,9929,"{'type': 'Point', 'coordinates': (-79.37953592, 43.65629127)}"
-9945,13835,GO-20181882731,PROPERTY - FOUND,2018-10-11T00:00:00,2018,October,Thursday,11,284,23,2018-10-11T00:00:00,2018,October,Thursday,11,284,23,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,OT,1,GRY,,UNKNOWN,9930,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-9946,13837,GO-20189034162,THEFT FROM MOTOR VEHICLE UNDER,2018-10-14T00:00:00,2018,October,Sunday,14,287,20,2018-10-15T00:00:00,2018,October,Monday,15,288,13,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,GI,OCR TOURING,RG,27,GRY,1000.0,STOLEN,9931,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-9947,13840,GO-20189035166,THEFT UNDER,2018-10-20T00:00:00,2018,October,Saturday,20,293,21,2018-10-23T00:00:00,2018,October,Tuesday,23,296,9,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,TR,MADONE 5,RC,24,BLK,3000.0,STOLEN,9932,"{'type': 'Point', 'coordinates': (-79.37424947, 43.653501610000006)}"
-9948,13841,GO-20189035166,THEFT UNDER,2018-10-20T00:00:00,2018,October,Saturday,20,293,21,2018-10-23T00:00:00,2018,October,Tuesday,23,296,9,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,CA,HYBRID,RG,24,BLK,700.0,STOLEN,9933,"{'type': 'Point', 'coordinates': (-79.37424947, 43.653501610000006)}"
-9949,13845,GO-20189037928,THEFT UNDER - BICYCLE,2018-11-12T00:00:00,2018,November,Monday,12,316,13,2018-11-12T00:00:00,2018,November,Monday,12,316,16,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,OT,27,BLK,900.0,STOLEN,9934,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-9950,13846,GO-20189037928,THEFT UNDER - BICYCLE,2018-11-12T00:00:00,2018,November,Monday,12,316,13,2018-11-12T00:00:00,2018,November,Monday,12,316,16,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,21,SIL,800.0,STOLEN,9935,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-9951,13847,GO-20189038203,THEFT UNDER - BICYCLE,2018-11-14T00:00:00,2018,November,Wednesday,14,318,16,2018-11-14T00:00:00,2018,November,Wednesday,14,318,23,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,UK,ALLEZ,TO,18,RED,800.0,STOLEN,9936,"{'type': 'Point', 'coordinates': (-79.3749069, 43.65118528)}"
-9952,13848,GO-20189038702,THEFT UNDER - BICYCLE,2018-11-17T00:00:00,2018,November,Saturday,17,321,13,2018-11-18T00:00:00,2018,November,Sunday,18,322,13,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,TOURING 1,TO,20,BLK,2114.0,STOLEN,9937,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-9953,20387,GO-20159003204,THEFT UNDER,2015-05-29T00:00:00,2015,May,Friday,29,149,23,2015-05-30T00:00:00,2015,May,Saturday,30,150,14,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,BIRDIE,OT,3,RED,500.0,STOLEN,9938,"{'type': 'Point', 'coordinates': (-79.37906116, 43.66495458)}"
-9954,20389,GO-20159003337,THEFT UNDER,2015-06-03T00:00:00,2015,June,Wednesday,3,154,22,2015-06-04T00:00:00,2015,June,Thursday,4,155,18,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,PE,,RG,8,BLU,600.0,STOLEN,9939,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-9955,20390,GO-2015934059,THEFT UNDER,2015-05-31T00:00:00,2015,May,Sunday,31,151,18,2015-06-04T00:00:00,2015,June,Thursday,4,155,9,D51,Toronto,75,Church-Yonge Corridor (75),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,CAAD8,RC,0,GRY,,STOLEN,9940,"{'type': 'Point', 'coordinates': (-79.38491403, 43.66584039)}"
-9956,20391,GO-2015934059,THEFT UNDER,2015-05-31T00:00:00,2015,May,Sunday,31,151,18,2015-06-04T00:00:00,2015,June,Thursday,4,155,9,D51,Toronto,75,Church-Yonge Corridor (75),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,4500,RC,24,BLUSIL,850.0,STOLEN,9941,"{'type': 'Point', 'coordinates': (-79.38491403, 43.66584039)}"
-9957,20393,GO-20151002903,THEFT UNDER,2015-01-11T00:00:00,2015,January,Sunday,11,11,0,2015-06-15T00:00:00,2015,June,Monday,15,166,10,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OTHER,,MT,10,BLU,128.0,STOLEN,9942,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-9958,20402,GO-20159004292,THEFT UNDER,2015-07-07T00:00:00,2015,July,Tuesday,7,188,20,2015-07-08T00:00:00,2015,July,Wednesday,8,189,0,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,KING MIDAS - SM,RG,1,BLK,425.0,STOLEN,9943,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-9959,20592,GO-20199022373,THEFT UNDER,2019-07-15T00:00:00,2019,July,Monday,15,196,17,2019-07-15T00:00:00,2019,July,Monday,15,196,23,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,FJ,ROUBAIX FC 770,TO,11,RED,1500.0,STOLEN,9984,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-9960,20403,GO-20151153161,THEFT UNDER,2015-07-06T00:00:00,2015,July,Monday,6,187,17,2015-07-08T00:00:00,2015,July,Wednesday,8,189,13,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,HYBRID,OT,21,,200.0,STOLEN,9944,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-9961,20404,GO-20159004374,THEFT UNDER,2015-07-08T00:00:00,2015,July,Wednesday,8,189,7,2015-07-10T00:00:00,2015,July,Friday,10,191,10,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,URBAN,EL,1,BLK,1000.0,STOLEN,9945,"{'type': 'Point', 'coordinates': (-79.37652171000002, 43.65664882)}"
-9962,20409,GO-20159004648,THEFT UNDER,2015-07-15T00:00:00,2015,July,Wednesday,15,196,12,2015-07-17T00:00:00,2015,July,Friday,17,198,9,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,HYBRID,RG,24,BLK,700.0,STOLEN,9946,"{'type': 'Point', 'coordinates': (-79.37691204, 43.65291764)}"
-9963,20428,GO-20159005795,THEFT UNDER,2015-08-13T00:00:00,2015,August,Thursday,13,225,10,2015-08-14T00:00:00,2015,August,Friday,14,226,11,D51,Toronto,75,Church-Yonge Corridor (75),Schools During Supervised Activity,Educational,IN,698003,MT,6,RED,200.0,STOLEN,9947,"{'type': 'Point', 'coordinates': (-79.37700237, 43.66017519)}"
-9964,20432,GO-20159006712,THEFT UNDER,2015-09-01T00:00:00,2015,September,Tuesday,1,244,15,2015-09-03T00:00:00,2015,September,Thursday,3,246,13,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,RG,7,PLE,549.0,STOLEN,9948,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-9965,20433,GO-20151556482,THEFT UNDER,2015-09-09T00:00:00,2015,September,Wednesday,9,252,3,2015-09-09T00:00:00,2015,September,Wednesday,9,252,11,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CANNONDALE,M400,MT,21,GRN,,STOLEN,9949,"{'type': 'Point', 'coordinates': (-79.37849549, 43.65985781)}"
-9966,20438,GO-20159007286,THEFT UNDER,2015-09-11T00:00:00,2015,September,Friday,11,254,12,2015-09-16T00:00:00,2015,September,Wednesday,16,259,18,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,18,RED,500.0,STOLEN,9950,"{'type': 'Point', 'coordinates': (-79.37662709, 43.65297714)}"
-9967,20439,GO-20151630490,THEFT UNDER,2015-08-26T00:00:00,2015,August,Wednesday,26,238,12,2015-09-21T00:00:00,2015,September,Monday,21,264,7,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,COITE,RG,21,ONGBLK,1000.0,STOLEN,9951,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-9968,20453,GO-20159009181,THEFT UNDER,2015-10-30T00:00:00,2015,October,Friday,30,303,9,2015-10-30T00:00:00,2015,October,Friday,30,303,19,D51,Toronto,75,Church-Yonge Corridor (75),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,,TO,16,GRN,500.0,STOLEN,9953,"{'type': 'Point', 'coordinates': (-79.37758587, 43.65456447)}"
-9969,20455,GO-20159009274,THEFT UNDER,2015-11-01T00:00:00,2015,November,Sunday,1,305,22,2015-11-02T00:00:00,2015,November,Monday,2,306,17,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,UK,,MT,15,DBL,0.0,STOLEN,9954,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-9970,20460,GO-20151968706,THEFT UNDER,2015-11-13T00:00:00,2015,November,Friday,13,317,18,2015-11-16T00:00:00,2015,November,Monday,16,320,18,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,KAROKARAN,MT,27,BLK,600.0,STOLEN,9955,"{'type': 'Point', 'coordinates': (-79.37986573, 43.669973840000004)}"
-9971,20463,GO-20159010237,THEFT UNDER,2015-11-25T00:00:00,2015,November,Wednesday,25,329,20,2015-11-26T00:00:00,2015,November,Thursday,26,330,16,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,PUBLIC C7 ORANG,RG,7,ONG,700.0,STOLEN,9956,"{'type': 'Point', 'coordinates': (-79.37785611, 43.66521591)}"
-9972,20464,GO-20159010978,THEFT UNDER,2015-12-14T00:00:00,2015,December,Monday,14,348,22,2015-12-15T00:00:00,2015,December,Tuesday,15,349,21,D51,Toronto,75,Church-Yonge Corridor (75),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,,RG,3,,300.0,STOLEN,9957,"{'type': 'Point', 'coordinates': (-79.37734964, 43.66099991)}"
-9973,20465,GO-20159011009,THEFT UNDER,2015-12-16T00:00:00,2015,December,Wednesday,16,350,13,2015-12-16T00:00:00,2015,December,Wednesday,16,350,14,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,EM,,EL,30,,900.0,STOLEN,9958,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-9974,20477,GO-2016396267,THEFT UNDER,2016-03-06T00:00:00,2016,March,Sunday,6,66,19,2016-03-06T00:00:00,2016,March,Sunday,6,66,22,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,BAJA,EL,0,DBL,,STOLEN,9959,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-9975,20488,GO-2016773528,THEFT UNDER,2016-05-04T00:00:00,2016,May,Wednesday,4,125,18,2016-05-05T00:00:00,2016,May,Thursday,5,126,21,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CANADIAN TIRE,,OT,1,,,STOLEN,9960,"{'type': 'Point', 'coordinates': (-79.38245382, 43.66941071)}"
-9976,20492,GO-2016816584,THEFT UNDER - BICYCLE,2016-05-03T00:00:00,2016,May,Tuesday,3,124,12,2016-05-12T00:00:00,2016,May,Thursday,12,133,13,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,FORTRESS 1700GT,EL,1,RED,1000.0,STOLEN,9961,"{'type': 'Point', 'coordinates': (-79.38091931, 43.66572241)}"
-9977,20494,GO-2016964601,THEFT UNDER - BICYCLE,2016-06-03T00:00:00,2016,June,Friday,3,155,15,2016-06-05T00:00:00,2016,June,Sunday,5,157,17,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,MTN BIKE,MT,8,ONG,300.0,STOLEN,9962,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-9978,20495,GO-20169005356,THEFT UNDER - BICYCLE,2016-05-23T00:00:00,2016,May,Monday,23,144,21,2016-06-05T00:00:00,2016,June,Sunday,5,157,23,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KH,CX550,OT,11,WHI,5000.0,STOLEN,9963,"{'type': 'Point', 'coordinates': (-79.37953592, 43.65629127)}"
-9979,20504,GO-20161140494,THEFT UNDER - BICYCLE,2016-06-29T00:00:00,2016,June,Wednesday,29,181,16,2016-06-29T00:00:00,2016,June,Wednesday,29,181,22,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,ROCKY 2,RG,2,RED,,STOLEN,9964,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-9980,20511,GO-20169007559,THEFT UNDER - BICYCLE,2016-07-20T00:00:00,2016,July,Wednesday,20,202,18,2016-07-21T00:00:00,2016,July,Thursday,21,203,17,D51,Toronto,75,Church-Yonge Corridor (75),Schools During Supervised Activity,Educational,OT,,RC,8,BLK,700.0,STOLEN,9965,"{'type': 'Point', 'coordinates': (-79.37781507, 43.65821091)}"
-9981,20521,GO-20169009017,THEFT UNDER,2016-08-18T00:00:00,2016,August,Thursday,18,231,11,2016-08-18T00:00:00,2016,August,Thursday,18,231,15,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,PHANTOM X2,EL,8,BLK,1500.0,STOLEN,9966,"{'type': 'Point', 'coordinates': (-79.37615599, 43.65014184)}"
-9982,20523,GO-20169009450,THEFT UNDER - BICYCLE,2016-08-24T00:00:00,2016,August,Wednesday,24,237,22,2016-08-25T00:00:00,2016,August,Thursday,25,238,10,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RC,1,WHI,1000.0,STOLEN,9967,"{'type': 'Point', 'coordinates': (-79.3749313, 43.65514877)}"
-9983,21816,GO-20142680310,THEFT UNDER,2014-08-05T00:00:00,2014,August,Tuesday,5,217,6,2014-08-11T00:00:00,2014,August,Monday,11,223,12,D14,Toronto,85,South Parkdale (85),Go Train,Transit,OTHER,,BM,1,DGR,200.0,STOLEN,18627,"{'type': 'Point', 'coordinates': (-79.42125039, 43.64017825)}"
-9984,20526,GO-20161530817,B&E,2016-08-23T00:00:00,2016,August,Tuesday,23,236,0,2016-08-29T00:00:00,2016,August,Monday,29,242,11,D51,Toronto,75,Church-Yonge Corridor (75),"Private Property Structure (Pool, Shed, Detached Garage)",Other,REGAL,KNIGHT,OT,1,GRY,500.0,STOLEN,9968,"{'type': 'Point', 'coordinates': (-79.38159626, 43.66440307)}"
-9985,20527,GO-20169009788,THEFT UNDER,2016-08-31T00:00:00,2016,August,Wednesday,31,244,22,2016-09-01T00:00:00,2016,September,Thursday,1,245,10,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,1,BLK,0.0,STOLEN,9969,"{'type': 'Point', 'coordinates': (-79.38201616, 43.6683485)}"
-9986,20528,GO-20161569972,THEFT UNDER,2016-09-04T00:00:00,2016,September,Sunday,4,248,12,2016-09-04T00:00:00,2016,September,Sunday,4,248,14,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,LE GATO 3,OT,7,GRY,900.0,STOLEN,9970,"{'type': 'Point', 'coordinates': (-79.37781507, 43.65821091)}"
-9987,20531,GO-20169010299,THEFT UNDER,2016-09-12T00:00:00,2016,September,Monday,12,256,2,2016-09-12T00:00:00,2016,September,Monday,12,256,17,D51,Toronto,75,Church-Yonge Corridor (75),Bar / Restaurant,Commercial,UK,,MT,10,,700.0,STOLEN,9971,"{'type': 'Point', 'coordinates': (-79.38048097, 43.66464717)}"
-9988,20532,GO-20169010364,THEFT UNDER,2016-09-10T00:00:00,2016,September,Saturday,10,254,17,2016-09-13T00:00:00,2016,September,Tuesday,13,257,13,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,,WOMEN'S ROYAL,RG,7,WHI,300.0,STOLEN,9972,"{'type': 'Point', 'coordinates': (-79.37583535, 43.65495451)}"
-9989,20533,GO-20161633858,THEFT UNDER - BICYCLE,2016-09-06T00:00:00,2016,September,Tuesday,6,250,22,2016-09-14T00:00:00,2016,September,Wednesday,14,258,10,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,AGGRESSOR,MT,21,BLK,439.0,STOLEN,9973,"{'type': 'Point', 'coordinates': (-79.37783798, 43.66217202)}"
-9990,20541,GO-20169011389,THEFT UNDER - BICYCLE,2016-10-01T00:00:00,2016,October,Saturday,1,275,9,2016-10-01T00:00:00,2016,October,Saturday,1,275,9,D51,Toronto,75,Church-Yonge Corridor (75),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,,RG,21,,250.0,STOLEN,9974,"{'type': 'Point', 'coordinates': (-79.37583535, 43.65495451)}"
-9991,20594,GO-20199022516,THEFT UNDER,2019-07-14T00:00:00,2019,July,Sunday,14,195,23,2019-07-16T00:00:00,2019,July,Tuesday,16,197,13,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,IH,,MT,18,BLK,1000.0,STOLEN,9985,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-9992,20546,GO-20161847063,THEFT UNDER - BICYCLE,2016-10-13T00:00:00,2016,October,Thursday,13,287,15,2016-10-17T00:00:00,2016,October,Monday,17,291,13,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,CROSSTRAIL,BM,24,BLKONG,1000.0,STOLEN,9975,"{'type': 'Point', 'coordinates': (-79.37720552, 43.6506687)}"
-9993,20548,GO-20161859894,ROBBERY WITH WEAPON,2016-10-19T00:00:00,2016,October,Wednesday,19,293,12,2016-10-19T00:00:00,2016,October,Wednesday,19,293,12,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GARNEAU,,TO,18,BLKWHI,2700.0,STOLEN,9976,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-9994,20549,GO-20169012451,THEFT UNDER,2016-10-15T00:00:00,2016,October,Saturday,15,289,0,2016-10-22T00:00:00,2016,October,Saturday,22,296,20,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,UK,STUMPJUMPER FSR,MT,21,BLK,1500.0,STOLEN,9977,"{'type': 'Point', 'coordinates': (-79.37279194, 43.6527041)}"
-9995,20554,GO-20169013506,THEFT UNDER - BICYCLE,2016-11-15T00:00:00,2016,November,Tuesday,15,320,12,2016-11-16T00:00:00,2016,November,Wednesday,16,321,19,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,CC,EXTREME MEGA IC,MT,18,GRY,150.0,STOLEN,9978,"{'type': 'Point', 'coordinates': (-79.37781507, 43.65821091)}"
-9996,20562,GO-20179002059,THEFT UNDER - BICYCLE,2017-02-16T00:00:00,2017,February,Thursday,16,47,18,2017-02-17T00:00:00,2017,February,Friday,17,48,3,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,HOOLIGAN,MT,21,BLU,250.0,STOLEN,9979,"{'type': 'Point', 'coordinates': (-79.38334664, 43.66205466)}"
-9997,20568,GO-2017634156,THEFT UNDER - BICYCLE,2017-04-10T00:00:00,2017,April,Monday,10,100,14,2017-04-10T00:00:00,2017,April,Monday,10,100,18,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,RC,1,BLUWHI,300.0,STOLEN,9980,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-9998,20569,GO-2017662788,THEFT UNDER - BICYCLE,2017-04-13T00:00:00,2017,April,Thursday,13,103,20,2017-04-15T00:00:00,2017,April,Saturday,15,105,11,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNK,,OT,0,,,STOLEN,9981,"{'type': 'Point', 'coordinates': (-79.37872961, 43.654321780000004)}"
-9999,20572,GO-2017764732,THEFT OF EBIKE UNDER $5000,2017-05-01T00:00:00,2017,May,Monday,1,121,10,2017-05-01T00:00:00,2017,May,Monday,1,121,12,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,MONSTER,EL,1,BLK,2000.0,STOLEN,9982,"{'type': 'Point', 'coordinates': (-79.37830693, 43.66628508)}"
-10000,20597,GO-20199023686,THEFT UNDER,2019-07-23T00:00:00,2019,July,Tuesday,23,204,16,2019-07-25T00:00:00,2019,July,Thursday,25,206,12,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BI,CS598282,RC,12,RED,600.0,STOLEN,9986,"{'type': 'Point', 'coordinates': (-79.37562599, 43.6568205)}"
-10001,20599,GO-20199023731,THEFT UNDER,2019-07-24T00:00:00,2019,July,Wednesday,24,205,13,2019-07-25T00:00:00,2019,July,Thursday,25,206,14,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,UK,JULIET,RG,1,ONG,450.0,STOLEN,9987,"{'type': 'Point', 'coordinates': (-79.37781507, 43.65821091)}"
-10002,20603,GO-20199024226,THEFT UNDER - BICYCLE,2019-07-10T00:00:00,2019,July,Wednesday,10,191,13,2019-07-29T00:00:00,2019,July,Monday,29,210,13,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,MARATHON PLUS,TO,23,SIL,400.0,STOLEN,9988,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-10003,20626,GO-20191590839,THEFT UNDER,2019-08-20T00:00:00,2019,August,Tuesday,20,232,22,2019-08-21T00:00:00,2019,August,Wednesday,21,233,8,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OTHER,CHINOOK,RG,21,BLKCPR,706.0,STOLEN,9989,"{'type': 'Point', 'coordinates': (-79.38581622, 43.66799576)}"
-10004,20646,GO-20199030512,THEFT UNDER,2019-09-18T00:00:00,2019,September,Wednesday,18,261,13,2019-09-18T00:00:00,2019,September,Wednesday,18,261,13,D51,Toronto,75,Church-Yonge Corridor (75),Unknown,Other,SU,,MT,6,,500.0,STOLEN,9990,"{'type': 'Point', 'coordinates': (-79.38159626, 43.66440307)}"
-10005,20647,GO-20199030733,THEFT UNDER - BICYCLE,2019-09-17T00:00:00,2019,September,Tuesday,17,260,20,2019-09-19T00:00:00,2019,September,Thursday,19,262,18,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,TR,TREK FX 3 DISC,RG,17,BLK,960.0,STOLEN,9991,"{'type': 'Point', 'coordinates': (-79.38245382, 43.66941071)}"
-10006,20660,GO-20199034134,THEFT UNDER - BICYCLE,2019-10-14T00:00:00,2019,October,Monday,14,287,18,2019-10-16T00:00:00,2019,October,Wednesday,16,289,18,D51,Toronto,75,Church-Yonge Corridor (75),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,50,BLK,750.0,STOLEN,9992,"{'type': 'Point', 'coordinates': (-79.37585959, 43.66043919)}"
-10007,20661,GO-20199034524,THEFT UNDER,2019-10-18T00:00:00,2019,October,Friday,18,291,9,2019-10-20T00:00:00,2019,October,Sunday,20,293,11,D51,Toronto,75,Church-Yonge Corridor (75),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,GI,GIANT CYPRESS,RG,21,BLU,800.0,STOLEN,9993,"{'type': 'Point', 'coordinates': (-79.37691204, 43.65291764)}"
-10008,20668,GO-20199035731,THEFT UNDER - BICYCLE,2019-10-22T00:00:00,2019,October,Tuesday,22,295,11,2019-10-29T00:00:00,2019,October,Tuesday,29,302,16,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,OT,C17 S LADIES SA,OT,1,GRY,100.0,STOLEN,9994,"{'type': 'Point', 'coordinates': (-79.37781507, 43.65821091)}"
-10009,20669,GO-20199035783,THEFT UNDER - BICYCLE,2019-10-29T00:00:00,2019,October,Tuesday,29,302,8,2019-10-29T00:00:00,2019,October,Tuesday,29,302,20,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,ARIEL,MT,24,YEL,760.0,STOLEN,9995,"{'type': 'Point', 'coordinates': (-79.37669194, 43.64940479)}"
-10010,20672,GO-20199036005,THEFT UNDER - BICYCLE,2019-10-25T00:00:00,2019,October,Friday,25,298,23,2019-10-31T00:00:00,2019,October,Thursday,31,304,19,D51,Toronto,75,Church-Yonge Corridor (75),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RG,1,SIL,452.0,STOLEN,9996,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-10011,20683,GO-20192300746,PROPERTY - FOUND,2019-11-29T00:00:00,2019,November,Friday,29,333,0,2019-12-02T00:00:00,2019,December,Monday,2,336,15,D51,Toronto,75,Church-Yonge Corridor (75),Universities / Colleges,Educational,NORCO,,RG,0,BLK,,UNKNOWN,9997,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-10012,20686,GO-20199041347,THEFT UNDER,2019-12-17T00:00:00,2019,December,Tuesday,17,351,19,2019-12-18T00:00:00,2019,December,Wednesday,18,352,12,D51,Toronto,75,Church-Yonge Corridor (75),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,DEVINCI JACK XP,MT,24,BLU,900.0,STOLEN,9998,"{'type': 'Point', 'coordinates': (-79.37691204, 43.65291764)}"
-10013,5623,GO-20199035882,THEFT UNDER,2019-10-28T00:00:00,2019,October,Monday,28,301,19,2019-10-30T00:00:00,2019,October,Wednesday,30,303,16,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,WMC-T700-101,RC,14,BLK,168.0,STOLEN,9999,"{'type': 'Point', 'coordinates': (-79.38737611, 43.66847728)}"
-10014,1335,GO-20179014208,THEFT UNDER,2017-09-07T00:00:00,2017,September,Thursday,7,250,13,2017-09-07T00:00:00,2017,September,Thursday,7,250,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,ZEKTOR 3 2017,OT,18,BLK,1000.0,STOLEN,10000,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10015,5635,GO-20192125859,THEFT OF EBIKE UNDER $5000,2019-11-03T00:00:00,2019,November,Sunday,3,307,13,2019-11-03T00:00:00,2019,November,Sunday,3,307,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,AMIGO,,EL,0,,2200.0,STOLEN,10001,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-10016,5651,GO-20192138842,B&E,2019-10-26T00:00:00,2019,October,Saturday,26,299,21,2019-11-05T00:00:00,2019,November,Tuesday,5,309,13,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,BIANCHI,PISTASEI GIORNI,RC,1,BLK,1520.0,STOLEN,10002,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-10017,5659,GO-20192156634,THEFT OF EBIKE UNDER $5000,2019-11-07T00:00:00,2019,November,Thursday,7,311,22,2019-11-07T00:00:00,2019,November,Thursday,7,311,23,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,KJING ELECTRIC,EL,10,WHIRED,1600.0,STOLEN,10003,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-10018,5660,GO-20192156634,THEFT OF EBIKE UNDER $5000,2019-11-07T00:00:00,2019,November,Thursday,7,311,22,2019-11-07T00:00:00,2019,November,Thursday,7,311,23,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,KYB LCD,BM,10,WHIRED,1600.0,STOLEN,10004,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-10019,5674,GO-20192169286,THEFT UNDER,2019-11-09T00:00:00,2019,November,Saturday,9,313,18,2019-11-10T00:00:00,2019,November,Sunday,10,314,23,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,AMEGO,INFINITE PLUS,EL,0,BLK,2400.0,STOLEN,10005,"{'type': 'Point', 'coordinates': (-79.3879785, 43.66997438)}"
-10020,5692,GO-20199037537,THEFT UNDER,2019-11-04T00:00:00,2019,November,Monday,4,308,22,2019-11-15T00:00:00,2019,November,Friday,15,319,0,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,,MONSTER,MT,21,BLK,350.0,STOLEN,10006,"{'type': 'Point', 'coordinates': (-79.38673938, 43.66335885)}"
-10021,5709,GO-20199038054,THEFT UNDER,2019-11-18T00:00:00,2019,November,Monday,18,322,9,2019-11-19T00:00:00,2019,November,Tuesday,19,323,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RC,30,BLK,175.0,STOLEN,10007,"{'type': 'Point', 'coordinates': (-79.38542161, 43.64752091)}"
-10022,5715,GO-20192230617,THEFT UNDER,2019-11-18T00:00:00,2019,November,Monday,18,322,14,2019-11-18T00:00:00,2019,November,Monday,18,322,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,UNKNOWN,RG,21,GRY,250.0,STOLEN,10008,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-10023,5813,GO-20209000806,THEFT UNDER,2020-01-07T00:00:00,2020,January,Tuesday,7,7,0,2020-01-08T00:00:00,2020,January,Wednesday,8,8,9,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,RA,,MT,21,BLU,0.0,STOLEN,10017,"{'type': 'Point', 'coordinates': (-79.38596803, 43.65904449)}"
-10024,5716,GO-20192243742,THEFT OF EBIKE UNDER $5000,2019-11-20T00:00:00,2019,November,Wednesday,20,324,10,2019-11-20T00:00:00,2019,November,Wednesday,20,324,20,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OTHER,KINGSTON,EL,1,RED,4000.0,STOLEN,10009,"{'type': 'Point', 'coordinates': (-79.37878196, 43.64896093)}"
-10025,5720,GO-20199038529,THEFT UNDER,2019-11-21T00:00:00,2019,November,Thursday,21,325,9,2019-11-22T00:00:00,2019,November,Friday,22,326,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,GRATER,RG,1,GRY,600.0,STOLEN,10010,"{'type': 'Point', 'coordinates': (-79.38738577, 43.66051487)}"
-10026,5766,GO-20199040972,THEFT UNDER,2019-12-14T00:00:00,2019,December,Saturday,14,348,10,2019-12-14T00:00:00,2019,December,Saturday,14,348,18,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KH,ALITE 350,MT,24,RED,0.0,STOLEN,10011,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-10027,5788,GO-20199042073,THEFT UNDER,2019-12-26T00:00:00,2019,December,Thursday,26,360,21,2019-12-26T00:00:00,2019,December,Thursday,26,360,23,D52,Toronto,76,Bay Street Corridor (76),Bar / Restaurant,Commercial,FJ,,RG,1,BLK,800.0,STOLEN,10012,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-10028,9358,GO-20159001633,THEFT UNDER,2015-03-25T00:00:00,2015,March,Wednesday,25,84,18,2015-03-30T00:00:00,2015,March,Monday,30,89,15,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,FJ,1984,RC,1,BLK,500.0,STOLEN,10013,"{'type': 'Point', 'coordinates': (-79.38482092, 43.65454718)}"
-10029,5803,GO-20209000332,THEFT UNDER,2020-01-02T00:00:00,2020,January,Thursday,2,2,18,2020-01-04T00:00:00,2020,January,Saturday,4,4,10,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,7.5,OT,8,GRY,1000.0,STOLEN,10014,"{'type': 'Point', 'coordinates': (-79.38820193, 43.66114001)}"
-10030,5804,GO-20209000344,THEFT UNDER,2020-01-03T00:00:00,2020,January,Friday,3,3,19,2020-01-04T00:00:00,2020,January,Saturday,4,4,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,LANGSTER,OT,1,BRN,1500.0,STOLEN,10015,"{'type': 'Point', 'coordinates': (-79.37894504, 43.65169174)}"
-10031,5812,GO-202035851,THEFT UNDER,2019-12-30T00:00:00,2019,December,Monday,30,364,17,2020-01-07T00:00:00,2020,January,Tuesday,7,7,16,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN,GOGO,SC,1,REDSIL,1500.0,STOLEN,10016,"{'type': 'Point', 'coordinates': (-79.38581514, 43.66081576)}"
-10032,5830,GO-20209001650,THEFT UNDER,2020-01-10T00:00:00,2020,January,Friday,10,10,8,2020-01-15T00:00:00,2020,January,Wednesday,15,15,10,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,TR,930,RG,27,DGR,0.0,STOLEN,10020,"{'type': 'Point', 'coordinates': (-79.38596803, 43.65904449)}"
-10033,5844,GO-20209001830,THEFT UNDER,2020-01-16T00:00:00,2020,January,Thursday,16,16,8,2020-01-16T00:00:00,2020,January,Thursday,16,16,20,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,,RG,6,BLK,1000.0,STOLEN,10021,"{'type': 'Point', 'coordinates': (-79.38740686, 43.66497543)}"
-10034,5848,GO-2020163401,THEFT OVER,2020-01-24T00:00:00,2020,January,Friday,24,24,8,2020-01-24T00:00:00,2020,January,Friday,24,24,10,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CERVELO,S2T3,RG,0,WHIRED,10000.0,STOLEN,10022,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-10035,5859,GO-20209003543,THEFT UNDER,2020-01-29T00:00:00,2020,January,Wednesday,29,29,12,2020-01-29T00:00:00,2020,January,Wednesday,29,29,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,DOOR PRIZE,RG,16,BLK,1000.0,STOLEN,10023,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10036,5872,GO-20209004010,THEFT UNDER,2020-02-02T00:00:00,2020,February,Sunday,2,33,22,2020-02-03T00:00:00,2020,February,Monday,3,34,5,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,DB,,RG,10,BLK,500.0,STOLEN,10024,"{'type': 'Point', 'coordinates': (-79.38596803, 43.65904449)}"
-10037,5895,GO-20209005490,THEFT UNDER,2020-02-14T00:00:00,2020,February,Friday,14,45,8,2020-02-14T00:00:00,2020,February,Friday,14,45,18,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RG,1,ONG,300.0,STOLEN,10025,"{'type': 'Point', 'coordinates': (-79.37968936, 43.64733439)}"
-10038,5899,GO-20209005730,THEFT UNDER,2020-02-16T00:00:00,2020,February,Sunday,16,47,20,2020-02-17T00:00:00,2020,February,Monday,17,48,0,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,1,GRN,600.0,STOLEN,10026,"{'type': 'Point', 'coordinates': (-79.38437564, 43.65730783)}"
-10039,5901,GO-2020332678,B&E,2020-01-12T00:00:00,2020,January,Sunday,12,12,19,2020-02-16T00:00:00,2020,February,Sunday,16,47,11,D52,Toronto,76,Bay Street Corridor (76),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GT,ZASKAR,MT,21,YEL,2000.0,STOLEN,10027,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-10040,5902,GO-2020332678,B&E,2020-01-12T00:00:00,2020,January,Sunday,12,12,19,2020-02-16T00:00:00,2020,February,Sunday,16,47,11,D52,Toronto,76,Bay Street Corridor (76),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,ARIEL,OT,24,TRQ,900.0,STOLEN,10028,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-10041,5916,GO-20209006387,THEFT UNDER,2020-02-21T00:00:00,2020,February,Friday,21,52,19,2020-02-22T00:00:00,2020,February,Saturday,22,53,0,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,7,DBL,200.0,STOLEN,10029,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10042,5949,GO-20209008180,THEFT UNDER,2020-03-05T00:00:00,2020,March,Thursday,5,65,16,2020-03-08T00:00:00,2020,March,Sunday,8,68,13,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,UK,SOLOIST STEEL,RG,1,BLK,530.0,STOLEN,10030,"{'type': 'Point', 'coordinates': (-79.38946225, 43.66523161)}"
-10043,5968,GO-2020567140,THEFT UNDER - BICYCLE,2020-03-19T00:00:00,2020,March,Thursday,19,79,14,2020-03-19T00:00:00,2020,March,Thursday,19,79,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,FX1,OT,7,SIL,833.0,STOLEN,10031,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10044,5989,GO-20209009015,THEFT UNDER,2019-12-01T00:00:00,2019,December,Sunday,1,335,0,2020-03-15T00:00:00,2020,March,Sunday,15,75,16,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,SPARK 760,MT,21,BLK,2900.0,STOLEN,10032,"{'type': 'Point', 'coordinates': (-79.38714344, 43.66436762)}"
-10045,6003,GO-20209010166,THEFT UNDER,2020-03-21T00:00:00,2020,March,Saturday,21,81,17,2020-03-30T00:00:00,2020,March,Monday,30,90,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,20,BLU,0.0,STOLEN,10033,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-10046,6007,GO-20209010238,THEFT UNDER - BICYCLE,2020-03-30T00:00:00,2020,March,Monday,30,90,9,2020-03-31T00:00:00,2020,March,Tuesday,31,91,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,DUAL SPORT,OT,18,SIL,1000.0,STOLEN,10034,"{'type': 'Point', 'coordinates': (-79.38640575, 43.65337704000001)}"
-10047,6024,GO-20209010544,THEFT UNDER,2020-04-05T00:00:00,2020,April,Sunday,5,96,13,2020-04-06T00:00:00,2020,April,Monday,6,97,8,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,RXF,EL,5,BLK,2000.0,STOLEN,10035,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-10048,6033,GO-20209010655,THEFT UNDER,2020-04-07T00:00:00,2020,April,Tuesday,7,98,14,2020-04-07T00:00:00,2020,April,Tuesday,7,98,19,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,CA,,TO,7,BLU,100.0,STOLEN,10036,"{'type': 'Point', 'coordinates': (-79.38618236, 43.65775862)}"
-10049,6081,GO-20209011519,THEFT UNDER,2020-03-27T00:00:00,2020,March,Friday,27,87,18,2020-04-19T00:00:00,2020,April,Sunday,19,110,22,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,,OT,15,BLK,1000.0,STOLEN,10037,"{'type': 'Point', 'coordinates': (-79.38601979, 43.65524051)}"
-10050,6152,GO-20209012625,THEFT UNDER,2020-03-16T00:00:00,2020,March,Monday,16,76,6,2020-05-07T00:00:00,2020,May,Thursday,7,128,10,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,AMEGO INFINITE,EL,30,SIL,2039.0,STOLEN,10038,"{'type': 'Point', 'coordinates': (-79.38260155, 43.6529703)}"
-10051,6257,GO-20209013989,THEFT UNDER,2020-05-20T00:00:00,2020,May,Wednesday,20,141,18,2020-05-26T00:00:00,2020,May,Tuesday,26,147,21,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,ROAD BIKE,OT,15,BLK,1130.0,STOLEN,10039,"{'type': 'Point', 'coordinates': (-79.38402022, 43.65643576000001)}"
-10052,6265,GO-20209014104,THEFT UNDER,2020-05-26T00:00:00,2020,May,Tuesday,26,147,11,2020-05-27T00:00:00,2020,May,Wednesday,27,148,23,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,CARTIER BLACK,RG,8,BLK,780.0,STOLEN,10040,"{'type': 'Point', 'coordinates': (-79.38632177, 43.65593978)}"
-10053,6270,GO-20209014226,THEFT UNDER,2020-05-29T00:00:00,2020,May,Friday,29,150,19,2020-05-29T00:00:00,2020,May,Friday,29,150,23,D52,Toronto,76,Bay Street Corridor (76),Bar / Restaurant,Commercial,OT,,EL,30,,799.0,STOLEN,10041,"{'type': 'Point', 'coordinates': (-79.38649082, 43.66146692)}"
-10054,6284,GO-20209012528,THEFT UNDER,2020-03-15T00:00:00,2020,March,Sunday,15,75,12,2020-05-05T00:00:00,2020,May,Tuesday,5,126,16,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,,RG,21,GRY,600.0,STOLEN,10042,"{'type': 'Point', 'coordinates': (-79.38492429, 43.65121654)}"
-10055,6285,GO-20201016400,THEFT UNDER - BICYCLE,2020-06-02T00:00:00,2020,June,Tuesday,2,154,16,2020-06-02T00:00:00,2020,June,Tuesday,2,154,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,CONTEND 3,TO,21,BLK,1100.0,STOLEN,10043,"{'type': 'Point', 'coordinates': (-79.38411783, 43.66390399)}"
-10056,6333,GO-20209014847,THEFT UNDER,2020-06-08T00:00:00,2020,June,Monday,8,160,1,2020-06-08T00:00:00,2020,June,Monday,8,160,13,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,RG,21,GRY,1000.0,STOLEN,10044,"{'type': 'Point', 'coordinates': (-79.38209114, 43.64961443)}"
-10057,6390,GO-20209015390,THEFT UNDER,2020-06-06T00:00:00,2020,June,Saturday,6,158,12,2020-06-15T00:00:00,2020,June,Monday,15,167,12,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,CA,QUICK CX 4,RG,18,GRY,750.0,STOLEN,10045,"{'type': 'Point', 'coordinates': (-79.38236226, 43.65027737)}"
-10058,6409,GO-20201100556,THEFT UNDER - BICYCLE,2020-06-15T00:00:00,2020,June,Monday,15,167,13,2020-06-15T00:00:00,2020,June,Monday,15,167,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KONA,FIRE MOUNTAIN,MT,18,GRY,700.0,STOLEN,10046,"{'type': 'Point', 'coordinates': (-79.3879785, 43.66997438)}"
-10059,6413,GO-20209015390,THEFT UNDER,2020-06-06T00:00:00,2020,June,Saturday,6,158,12,2020-06-15T00:00:00,2020,June,Monday,15,167,12,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,CA,QUICK CX 4,RG,18,GRY,750.0,STOLEN,10047,"{'type': 'Point', 'coordinates': (-79.38236226, 43.65027737)}"
-10060,6423,GO-20209015643,THEFT UNDER,2020-05-24T00:00:00,2020,May,Sunday,24,145,17,2020-06-18T00:00:00,2020,June,Thursday,18,170,9,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,,MT,12,BLK,1500.0,STOLEN,10048,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-10061,6427,GO-20209015710,THEFT UNDER,2020-06-15T00:00:00,2020,June,Monday,15,167,14,2020-06-19T00:00:00,2020,June,Friday,19,171,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,INDIE-2,MT,27,BLK,600.0,STOLEN,10049,"{'type': 'Point', 'coordinates': (-79.38407058, 43.649187680000004)}"
-10062,6479,GO-20209016268,THEFT UNDER,2020-06-26T00:00:00,2020,June,Friday,26,178,7,2020-06-26T00:00:00,2020,June,Friday,26,178,18,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ALLEZ,RC,16,BLK,1200.0,STOLEN,10050,"{'type': 'Point', 'coordinates': (-79.38353872, 43.64792395)}"
-10063,6556,GO-20209017058,THEFT UNDER,2020-07-07T00:00:00,2020,July,Tuesday,7,189,17,2020-07-07T00:00:00,2020,July,Tuesday,7,189,18,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,EL,4,,900.0,STOLEN,10051,"{'type': 'Point', 'coordinates': (-79.37968936, 43.64733439)}"
-10064,7285,GO-20201786029,THEFT OF EBIKE UNDER $5000,2020-09-20T00:00:00,2020,September,Sunday,20,264,15,2020-09-20T00:00:00,2020,September,Sunday,20,264,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,EL,1,WHI,2500.0,STOLEN,10052,"{'type': 'Point', 'coordinates': (-79.38671683, 43.66779)}"
-10065,6559,GO-20201238069,THEFT UNDER - BICYCLE,2020-07-04T00:00:00,2020,July,Saturday,4,186,18,2020-07-05T00:00:00,2020,July,Sunday,5,187,1,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,UNKNOWN,MT,21,GLD,75.0,STOLEN,10053,"{'type': 'Point', 'coordinates': (-79.38768427, 43.66564487000001)}"
-10066,6561,GO-20209017137,PROPERTY - RECOVERED,2020-07-06T00:00:00,2020,July,Monday,6,188,19,2020-07-08T00:00:00,2020,July,Wednesday,8,190,17,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,1,BLK,800.0,RECOVERED,10054,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-10067,6598,GO-20209017378,THEFT UNDER,2019-08-12T00:00:00,2019,August,Monday,12,224,16,2020-07-12T00:00:00,2020,July,Sunday,12,194,14,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,TR,,RC,9,YEL,375.0,STOLEN,10055,"{'type': 'Point', 'coordinates': (-79.38485374000001, 43.65851077)}"
-10068,6599,GO-20209017395,THEFT UNDER,2020-07-12T00:00:00,2020,July,Sunday,12,194,19,2020-07-12T00:00:00,2020,July,Sunday,12,194,19,D52,Toronto,76,Bay Street Corridor (76),Bar / Restaurant,Commercial,UK,,RG,10,GRN,1500.0,STOLEN,10056,"{'type': 'Point', 'coordinates': (-79.38188491, 43.65866815)}"
-10069,6630,GO-20209017667,THEFT UNDER,2020-07-15T00:00:00,2020,July,Wednesday,15,197,18,2020-07-15T00:00:00,2020,July,Wednesday,15,197,20,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,CA,F400,MT,18,BLK,500.0,STOLEN,10057,"{'type': 'Point', 'coordinates': (-79.38618236, 43.65775862)}"
-10070,6632,GO-2020935180,B&E,2020-05-21T00:00:00,2020,May,Thursday,21,142,0,2020-05-21T00:00:00,2020,May,Thursday,21,142,17,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,CUSTOM,OT,0,SIL,,STOLEN,10058,"{'type': 'Point', 'coordinates': (-79.39045505, 43.65985872)}"
-10071,6645,GO-20209017772,THEFT UNDER,2020-07-15T00:00:00,2020,July,Wednesday,15,197,6,2020-07-17T00:00:00,2020,July,Friday,17,199,17,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,SCALPEL,RG,32,SIL,500.0,STOLEN,10059,"{'type': 'Point', 'coordinates': (-79.37968936, 43.64733439)}"
-10072,6666,GO-20209017976,THEFT UNDER,2020-07-19T00:00:00,2020,July,Sunday,19,201,14,2020-07-19T00:00:00,2020,July,Sunday,19,201,18,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RA,,OT,8,SIL,1200.0,STOLEN,10060,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-10073,3371,GO-20181594484,THEFT UNDER - BICYCLE,2018-08-28T00:00:00,2018,August,Tuesday,28,240,19,2018-08-28T00:00:00,2018,August,Tuesday,28,240,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NAKAMURA,ROYAL 700,OT,0,GRY,,STOLEN,10061,"{'type': 'Point', 'coordinates': (-79.38374902, 43.66302137000001)}"
-10074,6705,GO-20209018251,THEFT UNDER,2020-07-20T00:00:00,2020,July,Monday,20,202,17,2020-07-22T00:00:00,2020,July,Wednesday,22,204,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,MARLIN 5,MT,21,WHI,700.0,STOLEN,10062,"{'type': 'Point', 'coordinates': (-79.38687123, 43.6623556)}"
-10075,6715,GO-20209018352,THEFT UNDER,2020-07-18T00:00:00,2020,July,Saturday,18,200,17,2020-07-23T00:00:00,2020,July,Thursday,23,205,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,RC,18,WHI,1600.0,STOLEN,10063,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10076,6716,GO-20209018352,THEFT UNDER,2020-07-18T00:00:00,2020,July,Saturday,18,200,17,2020-07-23T00:00:00,2020,July,Thursday,23,205,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RM,ELEMENT,MT,18,RED,2800.0,STOLEN,10064,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10077,6722,GO-20201380284,THEFT UNDER,2020-07-24T00:00:00,2020,July,Friday,24,206,21,2020-07-24T00:00:00,2020,July,Friday,24,206,21,D52,Toronto,76,Bay Street Corridor (76),"Open Areas (Lakes, Parks, Rivers)",Outside,DAYMAK,HAMILTON,EL,60,BLK,708.0,STOLEN,10065,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-10078,6731,GO-20201363684,THEFT UNDER,2020-07-22T00:00:00,2020,July,Wednesday,22,204,14,2020-07-22T00:00:00,2020,July,Wednesday,22,204,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,20 ESCAPE 3,RC,16,BLK,610.0,STOLEN,10066,"{'type': 'Point', 'coordinates': (-79.38768427, 43.66564487000001)}"
-10079,6733,GO-20201385802,THEFT OF EBIKE UNDER $5000,2020-07-25T00:00:00,2020,July,Saturday,25,207,14,2020-07-25T00:00:00,2020,July,Saturday,25,207,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,EL,1,LBL,900.0,STOLEN,10067,"{'type': 'Point', 'coordinates': (-79.38687123, 43.6623556)}"
-10080,6736,GO-20209018543,THEFT UNDER,2020-07-25T00:00:00,2020,July,Saturday,25,207,14,2020-07-25T00:00:00,2020,July,Saturday,25,207,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,,ROYAL 700C,RG,50,BLU,300.0,STOLEN,10068,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-10081,6737,GO-20209018539,THEFT UNDER,2020-07-25T00:00:00,2020,July,Saturday,25,207,14,2020-07-25T00:00:00,2020,July,Saturday,25,207,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,3,WHI,750.0,STOLEN,10069,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-10082,6756,GO-20209018665,THEFT UNDER,2020-07-26T00:00:00,2020,July,Sunday,26,208,14,2020-07-27T00:00:00,2020,July,Monday,27,209,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,MT,21,BLK,500.0,STOLEN,10070,"{'type': 'Point', 'coordinates': (-79.38124592, 43.65320661)}"
-10083,6799,GO-20209018850,THEFT UNDER,2020-07-28T00:00:00,2020,July,Tuesday,28,210,7,2020-07-28T00:00:00,2020,July,Tuesday,28,210,22,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,MEC DESIRE 2012,RG,8,TRQ,750.0,STOLEN,10071,"{'type': 'Point', 'coordinates': (-79.38353872, 43.64792395)}"
-10084,6825,GO-20209019079,THEFT UNDER,2020-07-28T00:00:00,2020,July,Tuesday,28,210,10,2020-07-31T00:00:00,2020,July,Friday,31,213,13,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RE,CONQUEST,OT,30,BRN,2400.0,STOLEN,10072,"{'type': 'Point', 'coordinates': (-79.37903365, 43.65028111)}"
-10085,6831,GO-20209019109,THEFT UNDER,2020-07-29T00:00:00,2020,July,Wednesday,29,211,17,2020-07-31T00:00:00,2020,July,Friday,31,213,17,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,TR,,RG,1,RED,0.0,STOLEN,10073,"{'type': 'Point', 'coordinates': (-79.38820648, 43.66681234)}"
-10086,6832,GO-20209019109,THEFT UNDER,2020-07-29T00:00:00,2020,July,Wednesday,29,211,17,2020-07-31T00:00:00,2020,July,Friday,31,213,17,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,TR,,RG,1,BLU,0.0,STOLEN,10074,"{'type': 'Point', 'coordinates': (-79.38820648, 43.66681234)}"
-10087,6867,GO-20201459426,THEFT UNDER - BICYCLE,2020-08-03T00:00:00,2020,August,Monday,3,216,22,2020-08-05T00:00:00,2020,August,Wednesday,5,218,11,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,SPECIALIZED,ROCKCHOPPER COM,MT,0,RED,1500.0,STOLEN,10075,"{'type': 'Point', 'coordinates': (-79.38946225, 43.66523161)}"
-10088,6892,GO-20209019600,THEFT UNDER,2020-08-06T00:00:00,2020,August,Thursday,6,219,16,2020-08-07T00:00:00,2020,August,Friday,7,220,7,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,SIRRUS,OT,21,PLE,799.0,STOLEN,10076,"{'type': 'Point', 'coordinates': (-79.38353872, 43.64792395)}"
-10089,6893,GO-20209019599,THEFT UNDER,2020-08-06T00:00:00,2020,August,Thursday,6,219,12,2020-08-07T00:00:00,2020,August,Friday,7,220,7,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,TCX SLR 2,RC,22,BLK,3000.0,STOLEN,10077,"{'type': 'Point', 'coordinates': (-79.38487134, 43.64619564)}"
-10090,6894,GO-20209019625,THEFT UNDER,2020-08-07T00:00:00,2020,August,Friday,7,220,7,2020-08-07T00:00:00,2020,August,Friday,7,220,12,D52,Toronto,76,Bay Street Corridor (76),"Open Areas (Lakes, Parks, Rivers)",Outside,SU,"SC COMP 26""""",MT,1,BLK,230.0,STOLEN,10078,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-10091,6897,GO-20209019600,THEFT UNDER,2020-08-06T00:00:00,2020,August,Thursday,6,219,16,2020-08-07T00:00:00,2020,August,Friday,7,220,7,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,SIRRUS,OT,21,PLE,700.0,STOLEN,10079,"{'type': 'Point', 'coordinates': (-79.38353872, 43.64792395)}"
-10092,6904,GO-20209019707,THEFT UNDER,2020-08-07T00:00:00,2020,August,Friday,7,220,23,2020-08-08T00:00:00,2020,August,Saturday,8,221,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,RG,21,BLK,700.0,STOLEN,10080,"{'type': 'Point', 'coordinates': (-79.38260155, 43.6529703)}"
-10093,6926,GO-20201473407,THEFT OF EBIKE UNDER $5000,2020-08-06T00:00:00,2020,August,Thursday,6,219,22,2020-08-07T00:00:00,2020,August,Friday,7,220,10,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIO,,EL,0,ONG,1500.0,STOLEN,10081,"{'type': 'Point', 'coordinates': (-79.38581514, 43.66081576)}"
-10094,6929,GO-20209019835,THEFT UNDER,2020-08-08T00:00:00,2020,August,Saturday,8,221,11,2020-08-10T00:00:00,2020,August,Monday,10,223,14,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,SC,WAYFARER BIKE,OT,7,LBL,300.0,STOLEN,10082,"{'type': 'Point', 'coordinates': (-79.39054537, 43.66944743)}"
-10095,6959,GO-20209020263,THEFT UNDER,2020-08-14T00:00:00,2020,August,Friday,14,227,11,2020-08-14T00:00:00,2020,August,Friday,14,227,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,TREK 820,MT,40,BLU,250.0,STOLEN,10083,"{'type': 'Point', 'coordinates': (-79.3802391, 43.64865033)}"
-10096,6985,GO-20209020520,THEFT UNDER,2020-08-17T00:00:00,2020,August,Monday,17,230,17,2020-08-18T00:00:00,2020,August,Tuesday,18,231,10,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,URBANITE LAKESH,RG,1,RED,700.0,STOLEN,10084,"{'type': 'Point', 'coordinates': (-79.38808613, 43.66653345)}"
-10097,7008,GO-20209020734,THEFT UNDER,2020-08-19T00:00:00,2020,August,Wednesday,19,232,17,2020-08-20T00:00:00,2020,August,Thursday,20,233,9,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,BI,,RC,24,BLK,1500.0,STOLEN,10085,"{'type': 'Point', 'coordinates': (-79.38209114, 43.64961443)}"
-10098,7033,GO-20209020956,THEFT UNDER,2020-08-20T00:00:00,2020,August,Thursday,20,233,18,2020-08-22T00:00:00,2020,August,Saturday,22,235,0,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,BM,7,BLU,500.0,STOLEN,10086,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-10099,7036,GO-20209020969,THEFT UNDER,2020-08-18T00:00:00,2020,August,Tuesday,18,231,18,2020-08-22T00:00:00,2020,August,Saturday,22,235,11,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,274905,MT,30,GRY,1396.0,STOLEN,10087,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-10100,7045,GO-20209021005,THEFT UNDER,2020-08-13T00:00:00,2020,August,Thursday,13,226,14,2020-08-22T00:00:00,2020,August,Saturday,22,235,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MARINER D7,FO,12,SIL,800.0,STOLEN,10088,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10101,7056,GO-20209020952,THEFT UNDER,2020-08-21T00:00:00,2020,August,Friday,21,234,15,2020-08-21T00:00:00,2020,August,Friday,21,234,23,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,ESCAPE,MT,24,WHI,500.0,STOLEN,10089,"{'type': 'Point', 'coordinates': (-79.38209114, 43.64961443)}"
-10102,7061,GO-20209021175,THEFT UNDER,2020-08-24T00:00:00,2020,August,Monday,24,237,9,2020-08-24T00:00:00,2020,August,Monday,24,237,16,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,FX 2,RG,24,BLK,750.0,STOLEN,10090,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10103,7073,GO-20209021314,THEFT UNDER,2020-08-25T00:00:00,2020,August,Tuesday,25,238,14,2020-08-25T00:00:00,2020,August,Tuesday,25,238,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,,MONTAIN BIKE,MT,40,BLU,300.0,STOLEN,10091,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-10104,7094,GO-20201596543,THEFT UNDER,2020-08-24T00:00:00,2020,August,Monday,24,237,18,2020-08-24T00:00:00,2020,August,Monday,24,237,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MIELE,,RG,9,YEL,260.0,STOLEN,10092,"{'type': 'Point', 'coordinates': (-79.38634339, 43.66246955)}"
-10105,7096,GO-20201597355,THEFT UNDER - BICYCLE,2020-08-24T00:00:00,2020,August,Monday,24,237,18,2020-08-24T00:00:00,2020,August,Monday,24,237,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,ROCKY MOUNTAIN,RC50,MT,14,BLKRED,700.0,STOLEN,10093,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10106,7140,GO-20209021898,THEFT UNDER,2020-08-31T00:00:00,2020,August,Monday,31,244,15,2020-08-31T00:00:00,2020,August,Monday,31,244,17,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RG,18,BLK,250.0,STOLEN,10094,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-10107,7146,GO-20209021983,THEFT UNDER,2020-08-31T00:00:00,2020,August,Monday,31,244,9,2020-09-01T00:00:00,2020,September,Tuesday,1,245,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,,RG,20,PLE,100.0,STOLEN,10095,"{'type': 'Point', 'coordinates': (-79.38407058, 43.649187680000004)}"
-10108,7167,GO-20209022224,THEFT UNDER,2020-09-03T00:00:00,2020,September,Thursday,3,247,14,2020-09-03T00:00:00,2020,September,Thursday,3,247,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,29ER HARDTAIL M,MT,21,GRY,620.0,STOLEN,10096,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10109,7168,GO-20209022232,THEFT UNDER,2020-09-03T00:00:00,2020,September,Thursday,3,247,17,2020-09-03T00:00:00,2020,September,Thursday,3,247,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,,,MT,10,BLK,300.0,STOLEN,10097,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-10110,7177,GO-20201669086,THEFT OF EBIKE UNDER $5000,2020-08-31T00:00:00,2020,August,Monday,31,244,0,2020-09-03T00:00:00,2020,September,Thursday,3,247,22,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GM,ARIV VERITY,EL,0,WHI,,STOLEN,10098,"{'type': 'Point', 'coordinates': (-79.38334664, 43.66205466)}"
-10111,7187,GO-20209022453,THEFT UNDER,2020-09-05T00:00:00,2020,September,Saturday,5,249,20,2020-09-06T00:00:00,2020,September,Sunday,6,250,3,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,TR,,RG,10,BLU,400.0,STOLEN,10099,"{'type': 'Point', 'coordinates': (-79.38581514, 43.66081576)}"
-10112,7201,GO-20209022562,THEFT UNDER,2020-08-06T00:00:00,2020,August,Thursday,6,219,11,2020-09-08T00:00:00,2020,September,Tuesday,8,252,7,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,SU,HYBRID 700 C,OT,18,GRY,275.0,STOLEN,10100,"{'type': 'Point', 'coordinates': (-79.38738577, 43.66051487)}"
-10113,7202,GO-20201685937,THEFT UNDER - BICYCLE,2020-09-02T00:00:00,2020,September,Wednesday,2,246,17,2020-09-06T00:00:00,2020,September,Sunday,6,250,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,700,RC,21,BLK,621.0,STOLEN,10101,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-10114,7249,GO-20209023267,THEFT FROM MOTOR VEHICLE UNDER,2020-09-15T00:00:00,2020,September,Tuesday,15,259,2,2020-09-15T00:00:00,2020,September,Tuesday,15,259,6,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,NINEBOT S,OT,15,BLK,564.0,RECOVERED,10102,"{'type': 'Point', 'coordinates': (-79.37787874, 43.64914837)}"
-10115,8189,GO-20149004238,THEFT UNDER,2014-06-18T00:00:00,2014,June,Wednesday,18,169,19,2014-06-19T00:00:00,2014,June,Thursday,19,170,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MA,,MT,35,SIL,500.0,STOLEN,10103,"{'type': 'Point', 'coordinates': (-79.38946225, 43.66523161)}"
-10116,1365,GO-20179014471,THEFT UNDER,2017-08-25T00:00:00,2017,August,Friday,25,237,13,2017-09-11T00:00:00,2017,September,Monday,11,254,13,D52,Toronto,76,Bay Street Corridor (76),"Open Areas (Lakes, Parks, Rivers)",Outside,NO,,TO,10,GRY,600.0,STOLEN,10104,"{'type': 'Point', 'coordinates': (-79.39060913000002, 43.66358401)}"
-10117,1370,GO-20179014495,THEFT UNDER,2017-09-11T00:00:00,2017,September,Monday,11,254,16,2017-09-11T00:00:00,2017,September,Monday,11,254,19,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,MT,21,BLK,0.0,STOLEN,10105,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-10118,9360,GO-2015541036,THEFT UNDER,2015-03-31T00:00:00,2015,March,Tuesday,31,90,15,2015-04-01T00:00:00,2015,April,Wednesday,1,91,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,RETRO MEN'S 700,RG,21,GRN,200.0,STOLEN,10106,"{'type': 'Point', 'coordinates': (-79.38411783, 43.66390399)}"
-10119,8202,GO-20149004286,THEFT OVER,2014-06-20T00:00:00,2014,June,Friday,20,171,10,2014-06-20T00:00:00,2014,June,Friday,20,171,13,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,GF,"19"""" FRAME",MT,24,GRY,1800.0,STOLEN,10107,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-10120,3373,GO-20181620870,PROPERTY - FOUND,2018-09-01T00:00:00,2018,September,Saturday,1,244,20,2018-09-01T00:00:00,2018,September,Saturday,1,244,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,TRANSEO,MT,21,BLU,650.0,UNKNOWN,10108,"{'type': 'Point', 'coordinates': (-79.38702746, 43.66853925)}"
-10121,9379,GO-20159001769,THEFT UNDER,2015-04-07T00:00:00,2015,April,Tuesday,7,97,5,2015-04-08T00:00:00,2015,April,Wednesday,8,98,13,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,TR,,RG,21,BLK,450.0,STOLEN,10109,"{'type': 'Point', 'coordinates': (-79.3863755, 43.65817391)}"
-10122,1371,GO-20179014494,THEFT UNDER,2017-09-10T00:00:00,2017,September,Sunday,10,253,18,2017-09-11T00:00:00,2017,September,Monday,11,254,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,PAVE LITE,RG,45,DBL,1100.0,STOLEN,10110,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-10123,8207,GO-20149004304,THEFT UNDER,2014-06-20T00:00:00,2014,June,Friday,20,171,15,2014-06-21T00:00:00,2014,June,Saturday,21,172,14,D52,Toronto,76,Bay Street Corridor (76),Bar / Restaurant,Commercial,OT,AWOL,MT,10,BLK,1800.0,STOLEN,10111,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-10124,1374,GO-20179014510,THEFT UNDER,2017-09-07T00:00:00,2017,September,Thursday,7,250,13,2017-09-12T00:00:00,2017,September,Tuesday,12,255,0,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,ZEKTOR 3,OT,18,BLK,1000.0,STOLEN,10112,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10125,7286,GO-20209023769,THEFT UNDER,2020-09-18T00:00:00,2020,September,Friday,18,262,13,2020-09-18T00:00:00,2020,September,Friday,18,262,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,1,,1200.0,STOLEN,10113,"{'type': 'Point', 'coordinates': (-79.38334664, 43.66205466)}"
-10126,8209,GO-20149004317,THEFT UNDER,2014-06-21T00:00:00,2014,June,Saturday,21,172,15,2014-06-21T00:00:00,2014,June,Saturday,21,172,23,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,DB,INSIGHT,RG,24,BLK,355.0,STOLEN,10114,"{'type': 'Point', 'coordinates': (-79.38167842, 43.65189355)}"
-10127,9385,GO-2015593814,THEFT UNDER,2015-04-10T00:00:00,2015,April,Friday,10,100,16,2015-04-10T00:00:00,2015,April,Friday,10,100,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RAVEN,E SCOOTER,SC,1,SIL,1000.0,STOLEN,10115,"{'type': 'Point', 'coordinates': (-79.38298971, 43.64660463)}"
-10128,3376,GO-20189028832,THEFT UNDER - BICYCLE,2018-09-01T00:00:00,2018,September,Saturday,1,244,12,2018-09-01T00:00:00,2018,September,Saturday,1,244,21,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,IN,,RG,21,GRY,300.0,STOLEN,10116,"{'type': 'Point', 'coordinates': (-79.38596803, 43.65904449)}"
-10129,1379,GO-20179014517,THEFT UNDER,2017-09-08T00:00:00,2017,September,Friday,8,251,22,2017-09-12T00:00:00,2017,September,Tuesday,12,255,1,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,GT,VANTARA,OT,8,BLK,560.0,STOLEN,10117,"{'type': 'Point', 'coordinates': (-79.38491403, 43.66584039)}"
-10130,7318,GO-20201801799,THEFT OF EBIKE UNDER $5000,2020-09-22T00:00:00,2020,September,Tuesday,22,266,19,2020-09-22T00:00:00,2020,September,Tuesday,22,266,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,HYPER,,EL,40,GRNBLK,900.0,STOLEN,10118,"{'type': 'Point', 'coordinates': (-79.38482092, 43.65454718)}"
-10131,7356,GO-20209024483,THEFT UNDER,2020-09-25T00:00:00,2020,September,Friday,25,269,12,2020-09-25T00:00:00,2020,September,Friday,25,269,13,D52,Toronto,76,Bay Street Corridor (76),Ttc Subway Station,Transit,OT,RED STEEL BIKE,RG,1,RED,400.0,STOLEN,10119,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-10132,7364,GO-20209024612,THEFT UNDER,2020-09-26T00:00:00,2020,September,Saturday,26,270,15,2020-09-26T00:00:00,2020,September,Saturday,26,270,15,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,GIANT ROAM 2,OT,24,BLK,1000.0,STOLEN,10120,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-10133,7365,GO-20209024619,THEFT UNDER,2020-09-25T00:00:00,2020,September,Friday,25,269,20,2020-09-26T00:00:00,2020,September,Saturday,26,270,16,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,TR,FX3,OT,9,BLK,850.0,STOLEN,10121,"{'type': 'Point', 'coordinates': (-79.38596803, 43.65904449)}"
-10134,7367,GO-20209024671,THEFT UNDER,2020-09-13T00:00:00,2020,September,Sunday,13,257,9,2020-09-27T00:00:00,2020,September,Sunday,27,271,8,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,ESPACE 4 STEPTH,RG,7,WHI,600.0,STOLEN,10122,"{'type': 'Point', 'coordinates': (-79.39038732, 43.66791603)}"
-10135,7383,GO-20201856460,THEFT UNDER,2020-09-22T00:00:00,2020,September,Tuesday,22,266,12,2020-09-30T00:00:00,2020,September,Wednesday,30,274,9,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,VERMONT,,OT,0,LBL,150.0,STOLEN,10123,"{'type': 'Point', 'coordinates': (-79.39348694, 43.66726478)}"
-10136,7392,GO-20209025052,THEFT UNDER,2020-09-30T00:00:00,2020,September,Wednesday,30,274,12,2020-09-30T00:00:00,2020,September,Wednesday,30,274,15,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,ST TROPEZ,RG,24,BLK,700.0,STOLEN,10124,"{'type': 'Point', 'coordinates': (-79.38124592, 43.65320661)}"
-10137,7397,GO-20209025184,THEFT UNDER,2020-10-01T00:00:00,2020,October,Thursday,1,275,8,2020-10-01T00:00:00,2020,October,Thursday,1,275,19,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,UK,SWEEP,RG,10,BLK,1000.0,STOLEN,10125,"{'type': 'Point', 'coordinates': (-79.38946225, 43.66523161)}"
-10138,7401,GO-20201871338,PROPERTY - FOUND,2020-10-02T00:00:00,2020,October,Friday,2,276,14,2020-10-02T00:00:00,2020,October,Friday,2,276,15,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OTHER,DAYMAK,EL,10,PNKBLK,,UNKNOWN,10126,"{'type': 'Point', 'coordinates': (-79.38596803, 43.65904449)}"
-10139,7436,GO-20201913219,THEFT UNDER - BICYCLE,2020-10-04T00:00:00,2020,October,Sunday,4,278,21,2020-10-11T00:00:00,2020,October,Sunday,11,285,15,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,MARLON 6,TO,12,BLKYEL,900.0,STOLEN,10127,"{'type': 'Point', 'coordinates': (-79.38402022, 43.65643576000001)}"
-10140,7438,GO-20209026013,THEFT UNDER,2020-10-10T00:00:00,2020,October,Saturday,10,284,12,2020-10-10T00:00:00,2020,October,Saturday,10,284,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,,RG,16,ONG,500.0,STOLEN,10128,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-10141,7446,GO-20209026150,THEFT UNDER,2020-10-11T00:00:00,2020,October,Sunday,11,285,19,2020-10-11T00:00:00,2020,October,Sunday,11,285,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,20,,210.0,STOLEN,10129,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-10142,7448,GO-20209026013,THEFT UNDER,2020-10-10T00:00:00,2020,October,Saturday,10,284,12,2020-10-10T00:00:00,2020,October,Saturday,10,284,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,GRAND SPORT,RG,18,ONG,500.0,STOLEN,10130,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-10143,7470,GO-20209026452,THEFT UNDER,2020-10-13T00:00:00,2020,October,Tuesday,13,287,13,2020-10-14T00:00:00,2020,October,Wednesday,14,288,18,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,,RC,35,BLK,3350.0,STOLEN,10131,"{'type': 'Point', 'coordinates': (-79.38596803, 43.65904449)}"
-10144,7476,GO-20209026567,THEFT UNDER,2020-10-15T00:00:00,2020,October,Thursday,15,289,15,2020-10-15T00:00:00,2020,October,Thursday,15,289,15,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,CRUISER SKATEBO,TO,1,RED,50.0,STOLEN,10132,"{'type': 'Point', 'coordinates': (-79.3811853, 43.65703802)}"
-10145,7479,GO-20201963168,THEFT UNDER - BICYCLE,2020-10-09T00:00:00,2020,October,Friday,9,283,17,2020-10-16T00:00:00,2020,October,Friday,16,290,9,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,HUFFY,,MT,18,PLE,,STOLEN,10133,"{'type': 'Point', 'coordinates': (-79.38771667, 43.66119164)}"
-10146,7503,GO-20209026897,THEFT UNDER,2020-10-16T00:00:00,2020,October,Friday,16,290,15,2020-10-19T00:00:00,2020,October,Monday,19,293,8,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,RA,REVENIO 3.0,RG,25,BLK,1200.0,STOLEN,10134,"{'type': 'Point', 'coordinates': (-79.38596803, 43.65904449)}"
-10147,7512,GO-20209026997,THEFT UNDER,2020-10-19T00:00:00,2020,October,Monday,19,293,16,2020-10-19T00:00:00,2020,October,Monday,19,293,20,D52,Toronto,76,Bay Street Corridor (76),Schools During Supervised Activity,Educational,GI,LIV AVAIL,TO,10,BLK,1700.0,STOLEN,10135,"{'type': 'Point', 'coordinates': (-79.38154682, 43.65790792)}"
-10148,7515,GO-20209026997,THEFT UNDER,2020-10-19T00:00:00,2020,October,Monday,19,293,16,2020-10-19T00:00:00,2020,October,Monday,19,293,20,D52,Toronto,76,Bay Street Corridor (76),Schools During Supervised Activity,Educational,GI,AVAIL COMPOSITE,TO,10,PLE,1700.0,STOLEN,10136,"{'type': 'Point', 'coordinates': (-79.38154682, 43.65790792)}"
-10149,7517,GO-20209027066,THEFT UNDER,2020-10-19T00:00:00,2020,October,Monday,19,293,9,2020-10-20T00:00:00,2020,October,Tuesday,20,294,11,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,TOPSTONE 105,OT,11,GRY,2000.0,STOLEN,10137,"{'type': 'Point', 'coordinates': (-79.37968936, 43.64733439)}"
-10150,7545,GO-202012019323,THEFT UNDER,2020-10-24T00:00:00,2020,October,Saturday,24,298,13,2020-10-26T00:00:00,2020,October,Monday,26,300,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,XIAOMI,M365 PRO,EL,1,BLK,1000.0,STOLEN,10138,"{'type': 'Point', 'coordinates': (-79.38518506, 43.65542635)}"
-10151,7558,GO-20202018434,THEFT OF EBIKE UNDER $5000,2020-10-20T00:00:00,2020,October,Tuesday,20,294,9,2020-10-24T00:00:00,2020,October,Saturday,24,298,12,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,RADCITY,EL,1,BLK,2000.0,STOLEN,10139,"{'type': 'Point', 'coordinates': (-79.38640575, 43.65337704000001)}"
-10152,7582,GO-20209028338,THEFT UNDER,2020-10-30T00:00:00,2020,October,Friday,30,304,14,2020-11-01T00:00:00,2020,November,Sunday,1,306,21,D52,Toronto,76,Bay Street Corridor (76),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,SC,GTX 2 700CC,RG,7,BLK,600.0,STOLEN,10140,"{'type': 'Point', 'coordinates': (-79.38268555, 43.64598268)}"
-10153,7602,GO-20209028964,THEFT UNDER,2020-11-07T00:00:00,2020,November,Saturday,7,312,20,2020-11-07T00:00:00,2020,November,Saturday,7,312,20,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,OT,3,,1500.0,STOLEN,10141,"{'type': 'Point', 'coordinates': (-79.38658151, 43.64863773)}"
-10154,7603,GO-20202122378,B&E,2020-11-08T00:00:00,2020,November,Sunday,8,313,17,2020-11-08T00:00:00,2020,November,Sunday,8,313,19,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,GIANT,CYPRESS DX,MT,10,BLK,800.0,STOLEN,10142,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10155,7610,GO-20209029137,THEFT UNDER,2020-11-05T00:00:00,2020,November,Thursday,5,310,8,2020-11-09T00:00:00,2020,November,Monday,9,314,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE,RG,27,DBL,750.0,STOLEN,10143,"{'type': 'Point', 'coordinates': (-79.38618236, 43.65775862)}"
-10156,7611,GO-20209029145,THEFT UNDER,2020-10-10T00:00:00,2020,October,Saturday,10,284,10,2020-11-08T00:00:00,2020,November,Sunday,8,313,10,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,CA,NEO 2,EL,9,GRN,2850.0,STOLEN,10144,"{'type': 'Point', 'coordinates': (-79.3879785, 43.66997438)}"
-10157,7617,GO-20209029227,THEFT UNDER,2020-11-10T00:00:00,2020,November,Tuesday,10,315,14,2020-11-10T00:00:00,2020,November,Tuesday,10,315,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DB,,RG,5,SIL,250.0,STOLEN,10145,"{'type': 'Point', 'coordinates': (-79.38124592, 43.65320661)}"
-10158,7629,GO-20209029491,THEFT UNDER - BICYCLE,2020-11-13T00:00:00,2020,November,Friday,13,318,10,2020-11-13T00:00:00,2020,November,Friday,13,318,13,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,2.01E+11,OT,3,GRN,1200.0,RECOVERED,10146,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10159,7632,GO-20209029551,THEFT UNDER,2020-11-14T00:00:00,2020,November,Saturday,14,319,13,2020-11-14T00:00:00,2020,November,Saturday,14,319,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,"700/NAVY/17""""",RG,21,DBL,450.0,STOLEN,10147,"{'type': 'Point', 'coordinates': (-79.3888294, 43.66819662)}"
-10160,7662,GO-20209030536,THEFT UNDER,2020-11-25T00:00:00,2020,November,Wednesday,25,330,11,2020-11-25T00:00:00,2020,November,Wednesday,25,330,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,10,WHI,250.0,STOLEN,10148,"{'type': 'Point', 'coordinates': (-79.38581514, 43.66081576)}"
-10161,7674,GO-20209030824,THEFT UNDER,2020-11-28T00:00:00,2020,November,Saturday,28,333,9,2020-11-28T00:00:00,2020,November,Saturday,28,333,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,LYNC 5,TO,16,BLK,2250.0,STOLEN,10149,"{'type': 'Point', 'coordinates': (-79.39410211, 43.66871992)}"
-10162,7675,GO-20202258058,THEFT UNDER - BICYCLE,2020-11-28T00:00:00,2020,November,Saturday,28,333,23,2020-11-29T00:00:00,2020,November,Sunday,29,334,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,FEMALE,RG,18,GRY,100.0,STOLEN,10150,"{'type': 'Point', 'coordinates': (-79.39045505, 43.65985872)}"
-10163,7705,GO-20202365991,B&E,2020-12-14T00:00:00,2020,December,Monday,14,349,0,2020-12-16T00:00:00,2020,December,Wednesday,16,351,12,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,MINI X ELECTRIC,EL,35,BLK,1200.0,STOLEN,10151,"{'type': 'Point', 'coordinates': (-79.3888294, 43.66819662)}"
-10164,7721,GO-20209033092,THEFT UNDER,2020-12-29T00:00:00,2020,December,Tuesday,29,364,15,2020-12-30T00:00:00,2020,December,Wednesday,30,365,1,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,CC,,MT,20,YEL,300.0,STOLEN,10152,"{'type': 'Point', 'coordinates': (-79.3802391, 43.64865033)}"
-10165,7722,GO-20209033093,THEFT UNDER,2020-12-26T00:00:00,2020,December,Saturday,26,361,12,2020-12-30T00:00:00,2020,December,Wednesday,30,365,12,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,12,DGR,700.0,STOLEN,10153,"{'type': 'Point', 'coordinates': (-79.38671683, 43.66779)}"
-10166,7723,GO-20202454712,THEFT UNDER - BICYCLE,2020-12-30T00:00:00,2020,December,Wednesday,30,365,20,2020-12-31T00:00:00,2020,December,Thursday,31,366,13,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,GT,GOTRAX27,EL,21,WHI,1300.0,STOLEN,10154,"{'type': 'Point', 'coordinates': (-79.38209114, 43.64961443)}"
-10167,7773,GO-20149001820,THEFT UNDER,2014-03-05T00:00:00,2014,March,Wednesday,5,64,8,2014-03-06T00:00:00,2014,March,Thursday,6,65,10,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,"COBRA 18""""",BM,1,WHI,350.0,STOLEN,10155,"{'type': 'Point', 'coordinates': (-79.38847714, 43.66743649)}"
-10168,7774,GO-20149001820,THEFT UNDER,2014-03-05T00:00:00,2014,March,Wednesday,5,64,8,2014-03-06T00:00:00,2014,March,Thursday,6,65,10,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,P.24,BM,1,BLK,550.0,STOLEN,10156,"{'type': 'Point', 'coordinates': (-79.38847714, 43.66743649)}"
-10169,7784,GO-20141742378,THEFT UNDER,2014-03-19T00:00:00,2014,March,Wednesday,19,78,10,2014-03-21T00:00:00,2014,March,Friday,21,80,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,,TO,21,RED,100.0,STOLEN,10157,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10170,7791,GO-20149001884,THEFT UNDER,2014-03-08T00:00:00,2014,March,Saturday,8,67,16,2014-03-08T00:00:00,2014,March,Saturday,8,67,22,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,7,BLK,500.0,STOLEN,10158,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-10171,7792,GO-20149002347,THEFT UNDER,2014-03-25T00:00:00,2014,March,Tuesday,25,84,6,2014-03-25T00:00:00,2014,March,Tuesday,25,84,19,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,NO,CITY GLIDE,RG,8,LBL,800.0,STOLEN,10159,"{'type': 'Point', 'coordinates': (-79.38618236, 43.65775862)}"
-10172,7793,GO-20149001917,THEFT UNDER,2014-03-07T00:00:00,2014,March,Friday,7,66,15,2014-03-10T00:00:00,2014,March,Monday,10,69,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,DEW DELUXE,RG,27,GRN,700.0,STOLEN,10160,"{'type': 'Point', 'coordinates': (-79.39054537, 43.66944743)}"
-10173,7831,GO-20149002787,THEFT UNDER,2014-04-06T00:00:00,2014,April,Sunday,6,96,10,2014-04-12T00:00:00,2014,April,Saturday,12,102,8,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,EM,,EL,1,BLK,1465.0,STOLEN,10161,"{'type': 'Point', 'coordinates': (-79.38944954, 43.65752945)}"
-10174,7832,GO-20149002796,THEFT UNDER,2014-04-11T00:00:00,2014,April,Friday,11,101,8,2014-04-12T00:00:00,2014,April,Saturday,12,102,18,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,TR,,RC,12,RED,2100.0,STOLEN,10162,"{'type': 'Point', 'coordinates': (-79.3888294, 43.66819662)}"
-10175,7848,GO-20141943305,THEFT UNDER,2014-04-11T00:00:00,2014,April,Friday,11,101,15,2014-04-23T00:00:00,2014,April,Wednesday,23,113,13,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,PUREFIX,THE ECHO,OT,1,BLK,450.0,STOLEN,10163,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10176,7849,GO-20141936846,THEFT UNDER,2014-04-21T00:00:00,2014,April,Monday,21,111,14,2014-04-22T00:00:00,2014,April,Tuesday,22,112,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DAVINCI,STOCKHOLME,OT,3,BLK,500.0,STOLEN,10164,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-10177,7858,GO-20141945055,THEFT UNDER,2014-04-23T00:00:00,2014,April,Wednesday,23,113,13,2014-04-23T00:00:00,2014,April,Wednesday,23,113,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,UNKNOWN,RG,15,BLUGRY,,STOLEN,10165,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10178,7873,GO-20141987552,THEFT UNDER,2014-04-27T00:00:00,2014,April,Sunday,27,117,9,2014-04-30T00:00:00,2014,April,Wednesday,30,120,13,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,OTHER,MASI UNO,RG,1,BLKRED,620.0,STOLEN,10166,"{'type': 'Point', 'coordinates': (-79.39348694, 43.66726478)}"
-10179,7878,GO-20149003119,THEFT UNDER,2014-05-02T00:00:00,2014,May,Friday,2,122,16,2014-05-02T00:00:00,2014,May,Friday,2,122,18,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,EM,G5408,EL,40,RED,1000.0,STOLEN,10167,"{'type': 'Point', 'coordinates': (-79.38338195, 43.66213624)}"
-10180,7890,GO-20149003212,THEFT UNDER,2014-05-07T00:00:00,2014,May,Wednesday,7,127,19,2014-05-07T00:00:00,2014,May,Wednesday,7,127,20,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,7.2FX,TO,18,BLK,550.0,STOLEN,10168,"{'type': 'Point', 'coordinates': (-79.38485374000001, 43.65851077)}"
-10181,7891,GO-20149003214,THEFT UNDER,2014-05-07T00:00:00,2014,May,Wednesday,7,127,10,2014-05-07T00:00:00,2014,May,Wednesday,7,127,22,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ROCKHOPPER,MT,21,BLK,500.0,STOLEN,10169,"{'type': 'Point', 'coordinates': (-79.38946773, 43.66966903)}"
-10182,7896,GO-20149003224,THEFT UNDER,2014-05-08T00:00:00,2014,May,Thursday,8,128,9,2014-05-08T00:00:00,2014,May,Thursday,8,128,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,FACTOR,MT,21,CPR,350.0,STOLEN,10170,"{'type': 'Point', 'coordinates': (-79.38702746, 43.66853925)}"
-10183,7900,GO-20142047643,THEFT UNDER,2014-05-09T00:00:00,2014,May,Friday,9,129,15,2014-05-09T00:00:00,2014,May,Friday,9,129,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FUJI,CLASSIC,OT,1,RED,840.0,STOLEN,10171,"{'type': 'Point', 'coordinates': (-79.39060913000002, 43.66358401)}"
-10184,7902,GO-20149003270,THEFT UNDER,2014-05-10T00:00:00,2014,May,Saturday,10,130,15,2014-05-10T00:00:00,2014,May,Saturday,10,130,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,ALLEZ,RC,12,WHI,700.0,STOLEN,10172,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10185,7906,GO-20149003276,THEFT UNDER,2014-05-10T00:00:00,2014,May,Saturday,10,130,11,2014-05-11T00:00:00,2014,May,Sunday,11,131,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CR,SWIFT,MT,21,BLU,300.0,STOLEN,10173,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10186,7907,GO-20149003284,THEFT UNDER,2014-05-07T00:00:00,2014,May,Wednesday,7,127,1,2014-05-11T00:00:00,2014,May,Sunday,11,131,17,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SC,HYDRA 700C BICY,RG,24,BLU,300.0,STOLEN,10174,"{'type': 'Point', 'coordinates': (-79.38605934000002, 43.6615638)}"
-10187,7912,GO-20142065788,THEFT UNDER,2014-05-01T00:00:00,2014,May,Thursday,1,121,12,2014-05-12T00:00:00,2014,May,Monday,12,132,17,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,SUPERCYCLE,UNKNOWN,OT,21,BLKBLU,250.0,STOLEN,10175,"{'type': 'Point', 'coordinates': (-79.38946225, 43.66523161)}"
-10188,7913,GO-20142066244,THEFT UNDER,2014-05-08T00:00:00,2014,May,Thursday,8,128,8,2014-05-12T00:00:00,2014,May,Monday,12,132,18,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,NORCO,OLYMPIA,OT,21,GRY,500.0,STOLEN,10176,"{'type': 'Point', 'coordinates': (-79.38739744, 43.65571903)}"
-10189,7916,GO-20149003307,THEFT UNDER,2014-05-09T00:00:00,2014,May,Friday,9,129,7,2014-05-12T00:00:00,2014,May,Monday,12,132,19,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,EM,,EL,1,BLK,1295.0,STOLEN,10177,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10190,7930,GO-20142079726,THEFT UNDER,2014-05-14T00:00:00,2014,May,Wednesday,14,134,11,2014-05-14T00:00:00,2014,May,Wednesday,14,134,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FELT,,OT,18,,250.0,STOLEN,10178,"{'type': 'Point', 'coordinates': (-79.38103127, 43.65056603)}"
-10191,7936,GO-20149003386,THEFT UNDER,2014-05-13T00:00:00,2014,May,Tuesday,13,133,7,2014-05-15T00:00:00,2014,May,Thursday,15,135,23,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,BIGFOOT,MT,18,OTH,300.0,STOLEN,10179,"{'type': 'Point', 'coordinates': (-79.38353872, 43.64792395)}"
-10192,7942,GO-20142104453,THEFT UNDER,2014-05-18T00:00:00,2014,May,Sunday,18,138,13,2014-05-18T00:00:00,2014,May,Sunday,18,138,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,FCR3,OT,8,,,STOLEN,10180,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10193,7955,GO-20149003516,THEFT UNDER,2014-05-22T00:00:00,2014,May,Thursday,22,142,8,2014-05-22T00:00:00,2014,May,Thursday,22,142,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,UNKNOWN,EL,35,GRY,700.0,STOLEN,10181,"{'type': 'Point', 'coordinates': (-79.38461112, 43.65044055)}"
-10194,7956,GO-20149003518,THEFT UNDER,2014-05-22T00:00:00,2014,May,Thursday,22,142,19,2014-05-22T00:00:00,2014,May,Thursday,22,142,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,BROUGHAM 3 SPEE,RC,3,BLU,1000.0,STOLEN,10182,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-10195,7959,GO-20142152098,THEFT UNDER,2014-05-25T00:00:00,2014,May,Sunday,25,145,16,2014-05-25T00:00:00,2014,May,Sunday,25,145,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,ROUBAIX,RC,27,SIL,1050.0,STOLEN,10183,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10196,7968,GO-20149003545,THEFT UNDER,2014-05-24T00:00:00,2014,May,Saturday,24,144,11,2014-05-24T00:00:00,2014,May,Saturday,24,144,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GF,2010 MARLIN,MT,27,BLK,900.0,STOLEN,10184,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-10197,7973,GO-20142138896,THEFT UNDER,2014-05-23T00:00:00,2014,May,Friday,23,143,20,2014-05-23T00:00:00,2014,May,Friday,23,143,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,APEX 26,MT,24,WHI,600.0,STOLEN,10185,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10198,7983,GO-20142149862,THEFT UNDER,2014-05-25T00:00:00,2014,May,Sunday,25,145,12,2014-05-28T00:00:00,2014,May,Wednesday,28,148,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RAPTOR,,EL,1,RED,1000.0,STOLEN,10186,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10199,7985,GO-20149003608,THEFT UNDER,2014-05-16T00:00:00,2014,May,Friday,16,136,12,2014-05-26T00:00:00,2014,May,Monday,26,146,16,D52,Toronto,76,Bay Street Corridor (76),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,ALLEZ EXPERT,RC,9,GRY,700.0,STOLEN,10187,"{'type': 'Point', 'coordinates': (-79.3888294, 43.66819662)}"
-10200,7989,GO-20142155053,THEFT UNDER,2014-05-21T00:00:00,2014,May,Wednesday,21,141,16,2014-05-26T00:00:00,2014,May,Monday,26,146,11,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SCHWINN,LAGUNA,SC,1,BLK,1800.0,STOLEN,10188,"{'type': 'Point', 'coordinates': (-79.3865128, 43.66731082)}"
-10201,7991,GO-20142155928,B&E,2014-05-12T00:00:00,2014,May,Monday,12,132,5,2014-05-26T00:00:00,2014,May,Monday,26,146,13,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN,,OT,21,BLKBGE,700.0,STOLEN,10189,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10202,7998,GO-20149003671,THEFT UNDER,2014-05-27T00:00:00,2014,May,Tuesday,27,147,22,2014-05-29T00:00:00,2014,May,Thursday,29,149,17,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,HYBRID,OT,19,LBL,220.0,STOLEN,10190,"{'type': 'Point', 'coordinates': (-79.3888294, 43.66819662)}"
-10203,8015,GO-20142179744,THEFT UNDER,2014-05-29T00:00:00,2014,May,Thursday,29,149,18,2014-06-01T00:00:00,2014,June,Sunday,1,152,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,13 YORKVILLE,OT,21,BLU,685.0,STOLEN,10191,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10204,8021,GO-20142191279,THEFT UNDER,2014-05-31T00:00:00,2014,May,Saturday,31,151,13,2014-05-31T00:00:00,2014,May,Saturday,31,151,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,,MT,0,BLK,800.0,STOLEN,10192,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-10205,8025,GO-20149003769,THEFT UNDER,2014-06-02T00:00:00,2014,June,Monday,2,153,20,2014-06-02T00:00:00,2014,June,Monday,2,153,21,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,CC,ALPINE,MT,21,WHI,450.0,STOLEN,10193,"{'type': 'Point', 'coordinates': (-79.38820193, 43.66114001)}"
-10206,8031,GO-20142213856,THEFT UNDER,2014-06-03T00:00:00,2014,June,Tuesday,3,154,13,2014-06-03T00:00:00,2014,June,Tuesday,3,154,17,D52,Toronto,76,Bay Street Corridor (76),"Open Areas (Lakes, Parks, Rivers)",Outside,KONA SUTRA,,TO,9,BRN,1300.0,STOLEN,10194,"{'type': 'Point', 'coordinates': (-79.38738577, 43.66051487)}"
-10207,8040,GO-20149003788,THEFT UNDER,2014-06-03T00:00:00,2014,June,Tuesday,3,154,14,2014-06-03T00:00:00,2014,June,Tuesday,3,154,22,D52,Toronto,76,Bay Street Corridor (76),Homeless Shelter / Mission,Other,OT,,SC,32,GRY,1300.0,STOLEN,10195,"{'type': 'Point', 'coordinates': (-79.38501192, 43.66606363)}"
-10208,8053,GO-20149003824,THEFT UNDER,2014-06-04T00:00:00,2014,June,Wednesday,4,155,3,2014-06-04T00:00:00,2014,June,Wednesday,4,155,22,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MA,LADIES HYBRID,RG,21,SIL,550.0,STOLEN,10196,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10209,8055,GO-20149003831,THEFT UNDER,2014-06-01T00:00:00,2014,June,Sunday,1,152,21,2014-06-05T00:00:00,2014,June,Thursday,5,156,8,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,E-ASPECT 710,EL,10,BLK,4500.0,STOLEN,10197,"{'type': 'Point', 'coordinates': (-79.38581514, 43.66081576)}"
-10210,8056,GO-20149003834,THEFT UNDER,2014-06-03T00:00:00,2014,June,Tuesday,3,154,16,2014-06-05T00:00:00,2014,June,Thursday,5,156,11,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,TR,,RG,21,BLK,600.0,STOLEN,10198,"{'type': 'Point', 'coordinates': (-79.38618236, 43.65775862)}"
-10211,8066,GO-20142228259,THEFT UNDER,2014-06-05T00:00:00,2014,June,Thursday,5,156,11,2014-06-05T00:00:00,2014,June,Thursday,5,156,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,WISPER,805FE,EL,6,SIL,1300.0,STOLEN,10199,"{'type': 'Point', 'coordinates': (-79.38738577, 43.66051487)}"
-10212,8067,GO-20142228373,THEFT UNDER,2014-06-05T00:00:00,2014,June,Thursday,5,156,9,2014-06-05T00:00:00,2014,June,Thursday,5,156,17,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,DA VINCI,MILANO,OT,18,LBL,500.0,STOLEN,10200,"{'type': 'Point', 'coordinates': (-79.3879785, 43.66997438)}"
-10213,8091,GO-20149003972,THEFT UNDER,2014-06-10T00:00:00,2014,June,Tuesday,10,161,23,2014-06-11T00:00:00,2014,June,Wednesday,11,162,9,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,14 ESCAPE 3 L,RG,24,BLK,500.0,STOLEN,10201,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-10214,8093,GO-20142274984,THEFT UNDER,2014-06-11T00:00:00,2014,June,Wednesday,11,162,19,2014-06-12T00:00:00,2014,June,Thursday,12,163,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,71-1240-2,FO,6,OTH,200.0,STOLEN,10202,"{'type': 'Point', 'coordinates': (-79.3811853, 43.65703802)}"
-10215,8100,GO-20142266974,THEFT UNDER,2014-04-27T00:00:00,2014,April,Sunday,27,117,15,2014-06-11T00:00:00,2014,June,Wednesday,11,162,9,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GHOST,,MT,21,BLK,670.0,STOLEN,10203,"{'type': 'Point', 'coordinates': (-79.3888294, 43.66819662)}"
-10216,8105,GO-20142294366,THEFT UNDER,2014-06-13T00:00:00,2014,June,Friday,13,164,9,2014-06-15T00:00:00,2014,June,Sunday,15,166,8,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,MARIN OR MARINO,,MT,21,BLK,500.0,STOLEN,10204,"{'type': 'Point', 'coordinates': (-79.38714344, 43.66436762)}"
-10217,8117,GO-20149003935,THEFT UNDER,2014-06-09T00:00:00,2014,June,Monday,9,160,8,2014-06-10T00:00:00,2014,June,Tuesday,10,161,1,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CC,VANDEL,RG,6,WHI,175.0,STOLEN,10205,"{'type': 'Point', 'coordinates': (-79.38374902, 43.66302137000001)}"
-10218,8124,GO-20149003968,THEFT UNDER,2014-06-10T00:00:00,2014,June,Tuesday,10,161,8,2014-06-10T00:00:00,2014,June,Tuesday,10,161,22,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,CHICANE SGX-61,RC,12,WHI,1600.0,STOLEN,10206,"{'type': 'Point', 'coordinates': (-79.37968936, 43.64733439)}"
-10219,8129,GO-20149004024,THEFT UNDER,2014-06-12T00:00:00,2014,June,Thursday,12,163,15,2014-06-12T00:00:00,2014,June,Thursday,12,163,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,VFR 3,OT,27,WHI,600.0,STOLEN,10207,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10220,8133,GO-20149003997,THEFT UNDER,2013-09-18T00:00:00,2013,September,Wednesday,18,261,15,2014-06-11T00:00:00,2014,June,Wednesday,11,162,20,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,GI,TRANCE 3,MT,21,BLU,1700.0,STOLEN,10208,"{'type': 'Point', 'coordinates': (-79.37878196, 43.64896093)}"
-10221,8142,GO-20142296318,THEFT UNDER,2014-06-15T00:00:00,2014,June,Sunday,15,166,15,2014-06-15T00:00:00,2014,June,Sunday,15,166,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,7300 INKWELL,OT,18,BLU,800.0,STOLEN,10209,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10222,8150,GO-20149004128,THEFT UNDER,2014-06-06T00:00:00,2014,June,Friday,6,157,20,2014-06-16T00:00:00,2014,June,Monday,16,167,15,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CC,NITRO X,MT,21,,140.0,STOLEN,10210,"{'type': 'Point', 'coordinates': (-79.38605934000002, 43.6615638)}"
-10223,9489,GO-2015703184,THEFT UNDER,2015-04-24T00:00:00,2015,April,Friday,24,114,16,2015-04-28T00:00:00,2015,April,Tuesday,28,118,14,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,SCHWINN,,MT,0,DBLWHI,200.0,STOLEN,10235,"{'type': 'Point', 'coordinates': (-79.38739744, 43.65571903)}"
-10224,8151,GO-20142304396,THEFT UNDER,2014-06-12T00:00:00,2014,June,Thursday,12,163,20,2014-06-16T00:00:00,2014,June,Monday,16,167,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,OT,18,BLUWHI,500.0,STOLEN,10211,"{'type': 'Point', 'coordinates': (-79.38658151, 43.64863773)}"
-10225,8156,GO-20149004141,THEFT UNDER,2014-06-16T00:00:00,2014,June,Monday,16,167,9,2014-06-16T00:00:00,2014,June,Monday,16,167,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,TRANSEND,RG,24,GRY,0.0,STOLEN,10212,"{'type': 'Point', 'coordinates': (-79.3879785, 43.66997438)}"
-10226,8164,GO-20149004151,THEFT UNDER,2014-06-13T00:00:00,2014,June,Friday,13,164,11,2014-06-17T00:00:00,2014,June,Tuesday,17,168,9,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,NO,6.1,MT,24,WHI,500.0,STOLEN,10213,"{'type': 'Point', 'coordinates': (-79.38820193, 43.66114001)}"
-10227,8169,GO-20142302230,THEFT UNDER,2014-06-15T00:00:00,2014,June,Sunday,15,166,20,2014-06-16T00:00:00,2014,June,Monday,16,167,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,OT,18,,200.0,STOLEN,10214,"{'type': 'Point', 'coordinates': (-79.38634339, 43.66246955)}"
-10228,8172,GO-20149004183,THEFT UNDER,2014-06-17T00:00:00,2014,June,Tuesday,17,168,9,2014-06-17T00:00:00,2014,June,Tuesday,17,168,18,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,CLASSICO,TO,7,BLK,600.0,STOLEN,10215,"{'type': 'Point', 'coordinates': (-79.38129397, 43.65116987)}"
-10229,8228,GO-20149004363,THEFT UNDER,2014-06-23T00:00:00,2014,June,Monday,23,174,14,2014-06-23T00:00:00,2014,June,Monday,23,174,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,SCHWINN MOUNTAI,MT,21,GRY,300.0,STOLEN,10216,"{'type': 'Point', 'coordinates': (-79.38316368, 43.65431877)}"
-10230,9403,GO-2015618490,THEFT UNDER,2015-04-13T00:00:00,2015,April,Monday,13,103,12,2015-04-14T00:00:00,2015,April,Tuesday,14,104,18,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,MASI,UNO RISER,TO,0,GRY,800.0,STOLEN,10217,"{'type': 'Point', 'coordinates': (-79.38737611, 43.66847728)}"
-10231,1383,GO-20179014609,THEFT UNDER,2017-09-12T00:00:00,2017,September,Tuesday,12,255,19,2017-09-12T00:00:00,2017,September,Tuesday,12,255,23,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,RA,GRAND PRIX 1979,TO,10,BLU,900.0,STOLEN,10218,"{'type': 'Point', 'coordinates': (-79.38209114, 43.64961443)}"
-10232,3383,GO-20189028960,THEFT UNDER - BICYCLE,2018-09-03T00:00:00,2018,September,Monday,3,246,8,2018-09-03T00:00:00,2018,September,Monday,3,246,17,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,KH,,MT,27,LGR,350.0,STOLEN,10219,"{'type': 'Point', 'coordinates': (-79.38167842, 43.65189355)}"
-10233,8229,GO-20149004361,THEFT UNDER,2014-06-23T00:00:00,2014,June,Monday,23,174,8,2014-06-23T00:00:00,2014,June,Monday,23,174,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,MT,24,RED,500.0,STOLEN,10220,"{'type': 'Point', 'coordinates': (-79.38124592, 43.65320661)}"
-10234,1384,GO-20179014611,THEFT UNDER,2017-09-11T00:00:00,2017,September,Monday,11,254,19,2017-09-13T00:00:00,2017,September,Wednesday,13,256,0,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,10,DBL,0.0,STOLEN,10221,"{'type': 'Point', 'coordinates': (-79.38737611, 43.66847728)}"
-10235,9422,GO-20159002019,THEFT UNDER,2015-04-17T00:00:00,2015,April,Friday,17,107,10,2015-04-18T00:00:00,2015,April,Saturday,18,108,10,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,CYPRESS W,RG,18,BLK,700.0,STOLEN,10222,"{'type': 'Point', 'coordinates': (-79.37843045, 43.65040714)}"
-10236,3387,GO-20189028998,THEFT UNDER - BICYCLE,2018-09-04T00:00:00,2018,September,Tuesday,4,247,8,2018-09-04T00:00:00,2018,September,Tuesday,4,247,10,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,KH,WESTWOOD,RG,30,BLK,500.0,STOLEN,10223,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10237,8235,GO-20142352227,THEFT UNDER,2014-06-23T00:00:00,2014,June,Monday,23,174,11,2014-06-23T00:00:00,2014,June,Monday,23,174,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,,MT,21,SIL,400.0,STOLEN,10224,"{'type': 'Point', 'coordinates': (-79.38374902, 43.66302137000001)}"
-10238,1394,GO-20179014679,THEFT UNDER - BICYCLE,2017-09-13T00:00:00,2017,September,Wednesday,13,256,11,2017-09-13T00:00:00,2017,September,Wednesday,13,256,18,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,RAYMOND POULIDO,RC,15,PNK,150.0,STOLEN,10225,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10239,9425,GO-20159002020,THEFT UNDER,2015-04-18T00:00:00,2015,April,Saturday,18,108,10,2015-04-18T00:00:00,2015,April,Saturday,18,108,11,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RC,1,RED,250.0,STOLEN,10226,"{'type': 'Point', 'coordinates': (-79.38768427, 43.66564487000001)}"
-10240,3409,GO-20189029384,THEFT UNDER,2018-09-06T00:00:00,2018,September,Thursday,6,249,13,2018-09-06T00:00:00,2018,September,Thursday,6,249,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,STOCKHOLM,RG,27,BLK,900.0,STOLEN,10227,"{'type': 'Point', 'coordinates': (-79.38762534000001, 43.66100486)}"
-10241,8255,GO-20149004468,THEFT UNDER,2014-06-26T00:00:00,2014,June,Thursday,26,177,7,2014-06-26T00:00:00,2014,June,Thursday,26,177,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,VALETTA,EL,32,SIL,895.0,STOLEN,10228,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-10242,1399,GO-20179014722,THEFT UNDER - BICYCLE,2017-09-13T00:00:00,2017,September,Wednesday,13,256,17,2017-09-14T00:00:00,2017,September,Thursday,14,257,10,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,2014 JAVIS CODA,MT,24,GRY,989.0,STOLEN,10229,"{'type': 'Point', 'coordinates': (-79.38209114, 43.64961443)}"
-10243,9430,GO-2015647867,THEFT UNDER,2015-04-16T00:00:00,2015,April,Thursday,16,106,6,2015-04-19T00:00:00,2015,April,Sunday,19,109,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KONA,DEW,TO,21,WHI,700.0,STOLEN,10230,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-10244,9437,GO-20159002058,THEFT UNDER,2015-04-19T00:00:00,2015,April,Sunday,19,109,13,2015-04-19T00:00:00,2015,April,Sunday,19,109,19,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,VENTURA SPORT,OT,21,BLK,750.0,STOLEN,10231,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-10245,9438,GO-20159002058,THEFT UNDER,2015-04-19T00:00:00,2015,April,Sunday,19,109,13,2015-04-19T00:00:00,2015,April,Sunday,19,109,19,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,VENTURA SPORT,OT,21,BLK,600.0,STOLEN,10232,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-10246,9440,GO-2015649337,THEFT UNDER,2015-04-18T00:00:00,2015,April,Saturday,18,108,14,2015-04-19T00:00:00,2015,April,Sunday,19,109,19,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,LINUS NIXTE,OT,3,CRM,,STOLEN,10233,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-10247,9465,GO-20159002185,THEFT UNDER,2015-04-23T00:00:00,2015,April,Thursday,23,113,16,2015-04-23T00:00:00,2015,April,Thursday,23,113,19,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,CUSTOM ROAD,RG,1,GRY,1100.0,STOLEN,10234,"{'type': 'Point', 'coordinates': (-79.3879785, 43.66997438)}"
-10248,9506,GO-20159002385,THEFT UNDER,2015-05-02T00:00:00,2015,May,Saturday,2,122,12,2015-05-02T00:00:00,2015,May,Saturday,2,122,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MA,URBAN 29,MT,27,WHI,1200.0,STOLEN,10236,"{'type': 'Point', 'coordinates': (-79.3861386, 43.66649311)}"
-10249,9513,GO-20159002413,THEFT UNDER,2015-05-02T00:00:00,2015,May,Saturday,2,122,22,2015-05-03T00:00:00,2015,May,Sunday,3,123,15,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,NO,SASQUATCH,MT,18,GRN,1400.0,STOLEN,10237,"{'type': 'Point', 'coordinates': (-79.38768427, 43.66564487000001)}"
-10250,9522,GO-20159002440,THEFT UNDER,2015-05-04T00:00:00,2015,May,Monday,4,124,13,2015-05-04T00:00:00,2015,May,Monday,4,124,19,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GF,SUGAR 3,MT,24,GRY,,STOLEN,10238,"{'type': 'Point', 'coordinates': (-79.38738577, 43.66051487)}"
-10251,9528,GO-20159002472,THEFT UNDER,2015-05-05T00:00:00,2015,May,Tuesday,5,125,6,2015-05-05T00:00:00,2015,May,Tuesday,5,125,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,MT,24,,0.0,STOLEN,10239,"{'type': 'Point', 'coordinates': (-79.38581514, 43.66081576)}"
-10252,9541,GO-2015754828,THEFT UNDER,2015-05-06T00:00:00,2015,May,Wednesday,6,126,12,2015-05-06T00:00:00,2015,May,Wednesday,6,126,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,GLOBE ELITE,OT,8,DBL,500.0,STOLEN,10240,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10253,9543,GO-20159002511,THEFT UNDER,2015-05-06T00:00:00,2015,May,Wednesday,6,126,15,2015-05-06T00:00:00,2015,May,Wednesday,6,126,21,D52,Toronto,76,Bay Street Corridor (76),"Open Areas (Lakes, Parks, Rivers)",Outside,CC,,MT,21,BLK,500.0,STOLEN,10241,"{'type': 'Point', 'coordinates': (-79.38260155, 43.6529703)}"
-10254,9546,GO-20159002520,THEFT UNDER,2015-05-06T00:00:00,2015,May,Wednesday,6,126,16,2015-05-07T00:00:00,2015,May,Thursday,7,127,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ESCOOTER,SC,32,RED,1500.0,STOLEN,10242,"{'type': 'Point', 'coordinates': (-79.38124592, 43.65320661)}"
-10255,9556,GO-20159002548,THEFT UNDER,2015-05-02T00:00:00,2015,May,Saturday,2,122,20,2015-05-08T00:00:00,2015,May,Friday,8,128,9,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,2014 TALON 27.5,MT,9,BLK,1000.0,STOLEN,10243,"{'type': 'Point', 'coordinates': (-79.38634339, 43.66246955)}"
-10256,9564,GO-20159002622,THEFT UNDER,2015-05-10T00:00:00,2015,May,Sunday,10,130,17,2015-05-11T00:00:00,2015,May,Monday,11,131,13,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,SC,"SPORTERRA,",OT,8,RED,0.0,STOLEN,10244,"{'type': 'Point', 'coordinates': (-79.3888294, 43.66819662)}"
-10257,9576,GO-20159002674,THEFT UNDER,2015-05-12T00:00:00,2015,May,Tuesday,12,132,9,2015-05-12T00:00:00,2015,May,Tuesday,12,132,13,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,PLUG,OT,1,LBL,600.0,STOLEN,10245,"{'type': 'Point', 'coordinates': (-79.38461112, 43.65044055)}"
-10258,9582,GO-2015792847,THEFT UNDER,2015-05-12T00:00:00,2015,May,Tuesday,12,132,15,2015-05-12T00:00:00,2015,May,Tuesday,12,132,16,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,RAVEN,EL,1,LBL,750.0,STOLEN,10246,"{'type': 'Point', 'coordinates': (-79.38820648, 43.66681234)}"
-10259,9588,GO-20159002755,THEFT UNDER,2015-05-14T00:00:00,2015,May,Thursday,14,134,23,2015-05-15T00:00:00,2015,May,Friday,15,135,7,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,FCR,RG,21,WHI,500.0,STOLEN,10247,"{'type': 'Point', 'coordinates': (-79.38820648, 43.66681234)}"
-10260,9591,GO-2015806203,THEFT UNDER,2015-05-14T00:00:00,2015,May,Thursday,14,134,9,2015-05-16T00:00:00,2015,May,Saturday,16,136,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,JAMIS,MTN BIKE,MT,18,OTH,700.0,STOLEN,10248,"{'type': 'Point', 'coordinates': (-79.38542161, 43.64752091)}"
-10261,9610,GO-2015839374,THEFT UNDER,2015-05-12T00:00:00,2015,May,Tuesday,12,132,9,2015-05-20T00:00:00,2015,May,Wednesday,20,140,9,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CANNONDALE,LEFTY,RG,27,BLK,1600.0,STOLEN,10249,"{'type': 'Point', 'coordinates': (-79.38298971, 43.64660463)}"
-10262,9618,GO-20159002966,THEFT UNDER,2015-05-20T00:00:00,2015,May,Wednesday,20,140,16,2015-05-21T00:00:00,2015,May,Thursday,21,141,7,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,RG,24,GRY,0.0,STOLEN,10250,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10263,9643,GO-2015860705,THEFT UNDER,2015-05-23T00:00:00,2015,May,Saturday,23,143,6,2015-05-23T00:00:00,2015,May,Saturday,23,143,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,,MT,21,SIL,,STOLEN,10251,"{'type': 'Point', 'coordinates': (-79.38268555, 43.64598268)}"
-10264,9653,GO-20159003094,THEFT UNDER,2015-05-25T00:00:00,2015,May,Monday,25,145,9,2015-05-25T00:00:00,2015,May,Monday,25,145,22,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE,OT,24,DBL,680.0,STOLEN,10252,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-10265,9661,GO-2015884097,THEFT UNDER,2015-05-27T00:00:00,2015,May,Wednesday,27,147,12,2015-05-27T00:00:00,2015,May,Wednesday,27,147,12,D52,Toronto,76,Bay Street Corridor (76),Schools During Un-Supervised Activity,Educational,NORCO,,MT,6,GRYWHI,500.0,STOLEN,10253,"{'type': 'Point', 'coordinates': (-79.38946225, 43.66523161)}"
-10266,9731,GO-2015937869,THEFT UNDER,2015-06-04T00:00:00,2015,June,Thursday,4,155,17,2015-06-04T00:00:00,2015,June,Thursday,4,155,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,ALLEZ,RC,0,BLK,900.0,STOLEN,10254,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10267,9757,GO-2015961825,THEFT UNDER,2015-06-05T00:00:00,2015,June,Friday,5,156,8,2015-06-08T00:00:00,2015,June,Monday,8,159,19,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,SCHWININ,HYDRA 700C,TO,24,BLU,450.0,STOLEN,10255,"{'type': 'Point', 'coordinates': (-79.38467283, 43.65807476)}"
-10268,9775,GO-20159003513,THEFT UNDER,2015-06-09T00:00:00,2015,June,Tuesday,9,160,16,2015-06-10T00:00:00,2015,June,Wednesday,10,161,16,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,QUICK 5,RG,21,PLE,600.0,STOLEN,10256,"{'type': 'Point', 'coordinates': (-79.38482092, 43.65454718)}"
-10269,9818,GO-20151006124,THEFT UNDER,2015-06-15T00:00:00,2015,June,Monday,15,166,6,2015-06-15T00:00:00,2015,June,Monday,15,166,18,D52,Toronto,76,Bay Street Corridor (76),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,IRON HORSE,URBAN SERIES,MT,14,WHI,300.0,STOLEN,10257,"{'type': 'Point', 'coordinates': (-79.38262593, 43.65086783)}"
-10270,9835,GO-20159003760,THEFT UNDER,2015-06-18T00:00:00,2015,June,Thursday,18,169,15,2015-06-19T00:00:00,2015,June,Friday,19,170,15,D52,Toronto,76,Bay Street Corridor (76),Unknown,Other,UK,UNKNOWN,OT,1,BLU,1200.0,STOLEN,10258,"{'type': 'Point', 'coordinates': (-79.39410211, 43.66871992)}"
-10271,9836,GO-20159003773,THEFT UNDER,2015-06-17T00:00:00,2015,June,Wednesday,17,168,10,2015-06-18T00:00:00,2015,June,Thursday,18,169,13,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,,MT,20,ONG,,STOLEN,10259,"{'type': 'Point', 'coordinates': (-79.38407058, 43.649187680000004)}"
-10272,9872,GO-20159003915,THEFT UNDER,2015-06-21T00:00:00,2015,June,Sunday,21,172,16,2015-06-24T00:00:00,2015,June,Wednesday,24,175,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CARVE EXPERT 20,MT,10,BLK,1500.0,STOLEN,10260,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-10273,9879,GO-20159003923,THEFT UNDER,2015-06-25T00:00:00,2015,June,Thursday,25,176,6,2015-06-25T00:00:00,2015,June,Thursday,25,176,16,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,,OT,12,BLK,1300.0,STOLEN,10261,"{'type': 'Point', 'coordinates': (-79.38353872, 43.64792395)}"
-10274,9885,GO-20159003937,THEFT UNDER,2015-06-24T00:00:00,2015,June,Wednesday,24,175,9,2015-06-25T00:00:00,2015,June,Thursday,25,176,11,D52,Toronto,76,Bay Street Corridor (76),"Construction Site (Warehouse, Trailer, Shed)",Commercial,UK,,EL,30,,1300.0,STOLEN,10262,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-10275,9921,GO-20159004093,THEFT UNDER,2015-07-01T00:00:00,2015,July,Wednesday,1,182,14,2015-07-01T00:00:00,2015,July,Wednesday,1,182,23,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,VALENCE FORMA A,RC,18,WHI,820.0,STOLEN,10263,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-10276,9938,GO-20159004167,THEFT UNDER,2015-07-03T00:00:00,2015,July,Friday,3,184,14,2015-07-04T00:00:00,2015,July,Saturday,4,185,18,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,SINGLEGEAR ROAD,OT,1,BLK,300.0,STOLEN,10264,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-10277,9952,GO-20159004228,THEFT UNDER,2015-07-03T00:00:00,2015,July,Friday,3,184,7,2015-07-06T00:00:00,2015,July,Monday,6,187,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,ORION,OT,21,BLU,269.0,STOLEN,10265,"{'type': 'Point', 'coordinates': (-79.38618236, 43.65775862)}"
-10278,9960,GO-20151148160,THEFT UNDER,2015-07-01T00:00:00,2015,July,Wednesday,1,182,18,2015-07-07T00:00:00,2015,July,Tuesday,7,188,18,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,INDIE,OT,6,,500.0,STOLEN,10266,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-10279,10016,GO-20151195789,THEFT UNDER,2015-07-14T00:00:00,2015,July,Tuesday,14,195,12,2015-07-14T00:00:00,2015,July,Tuesday,14,195,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,EL,0,LGR,,STOLEN,10267,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-10280,10018,GO-20151196504,THEFT UNDER,2015-07-09T00:00:00,2015,July,Thursday,9,190,16,2015-07-15T00:00:00,2015,July,Wednesday,15,196,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,NITRO X,MT,21,BLK,150.0,STOLEN,10268,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-10281,10036,GO-20159004638,THEFT UNDER,2015-07-02T00:00:00,2015,July,Thursday,2,183,20,2015-07-16T00:00:00,2015,July,Thursday,16,197,12,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,,,RG,18,BLK,277.0,STOLEN,10269,"{'type': 'Point', 'coordinates': (-79.38605934000002, 43.6615638)}"
-10282,10039,GO-20151209637,THEFT UNDER,2015-07-14T00:00:00,2015,July,Tuesday,14,195,21,2015-07-16T00:00:00,2015,July,Thursday,16,197,19,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,VELO SPORT,,MT,12,MRN,600.0,STOLEN,10270,"{'type': 'Point', 'coordinates': (-79.38709792, 43.64990598)}"
-10283,10045,GO-20159004660,THEFT UNDER,2015-07-16T00:00:00,2015,July,Thursday,16,197,9,2015-07-17T00:00:00,2015,July,Friday,17,198,9,D52,Toronto,76,Bay Street Corridor (76),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,RA,,MT,16,PNK,100.0,STOLEN,10271,"{'type': 'Point', 'coordinates': (-79.38268555, 43.64598268)}"
-10284,10055,GO-20159004735,THEFT UNDER,2015-07-17T00:00:00,2015,July,Friday,17,198,13,2015-07-20T00:00:00,2015,July,Monday,20,201,14,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,FJ,FEATHER,RC,1,BLK,750.0,STOLEN,10272,"{'type': 'Point', 'coordinates': (-79.38103127, 43.65056603)}"
-10285,10058,GO-20159004748,THEFT UNDER,2015-07-15T00:00:00,2015,July,Wednesday,15,196,0,2015-07-20T00:00:00,2015,July,Monday,20,201,12,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,PANASONIC X2,OT,24,BLK,600.0,STOLEN,10273,"{'type': 'Point', 'coordinates': (-79.38482092, 43.65454718)}"
-10286,10087,GO-20159004916,THEFT UNDER,2015-07-22T00:00:00,2015,July,Wednesday,22,203,17,2015-07-23T00:00:00,2015,July,Thursday,23,204,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,BM,6,PLE,500.0,STOLEN,10274,"{'type': 'Point', 'coordinates': (-79.38485374000001, 43.65851077)}"
-10287,10112,GO-20151287664,THEFT UNDER,2015-07-22T00:00:00,2015,July,Wednesday,22,203,17,2015-07-28T00:00:00,2015,July,Tuesday,28,209,8,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,SCHWINN,HYBRID,OT,10,BLU,300.0,STOLEN,10275,"{'type': 'Point', 'coordinates': (-79.38737611, 43.66847728)}"
-10288,10115,GO-20159005064,THEFT UNDER,2015-06-13T00:00:00,2015,June,Saturday,13,164,11,2015-07-27T00:00:00,2015,July,Monday,27,208,20,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,GF,,MT,12,BLK,2000.0,STOLEN,10277,"{'type': 'Point', 'coordinates': (-79.3888294, 43.66819662)}"
-10289,10121,GO-20159005084,THEFT UNDER,2015-07-10T00:00:00,2015,July,Friday,10,191,21,2015-07-28T00:00:00,2015,July,Tuesday,28,209,13,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,HARDROCK,MT,21,RED,600.0,STOLEN,10278,"{'type': 'Point', 'coordinates': (-79.38353872, 43.64792395)}"
-10290,10125,GO-20151276931,THEFT UNDER,2015-07-25T00:00:00,2015,July,Saturday,25,206,12,2015-07-26T00:00:00,2015,July,Sunday,26,207,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,GT5,EL,0,BLUWHI,1000.0,STOLEN,10279,"{'type': 'Point', 'coordinates': (-79.38374902, 43.66302137000001)}"
-10291,10131,GO-20159005105,THEFT UNDER,2015-07-28T00:00:00,2015,July,Tuesday,28,209,8,2015-07-28T00:00:00,2015,July,Tuesday,28,209,23,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,GI,SEDONA DX,RG,18,BLK,0.0,STOLEN,10280,"{'type': 'Point', 'coordinates': (-79.38618236, 43.65775862)}"
-10292,10134,GO-20151287777,THEFT UNDER,2015-07-28T00:00:00,2015,July,Tuesday,28,209,7,2015-07-28T00:00:00,2015,July,Tuesday,28,209,8,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,TEV,EL,0,BLUSIL,1300.0,STOLEN,10281,"{'type': 'Point', 'coordinates': (-79.38338195, 43.66213624)}"
-10293,10162,GO-20159005245,THEFT UNDER,2015-08-01T00:00:00,2015,August,Saturday,1,213,9,2015-08-01T00:00:00,2015,August,Saturday,1,213,19,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,CACTUS,MT,18,GRN,0.0,STOLEN,10282,"{'type': 'Point', 'coordinates': (-79.38498159, 43.64477493)}"
-10294,10170,GO-20159005296,THEFT UNDER,2015-08-03T00:00:00,2015,August,Monday,3,215,16,2015-08-03T00:00:00,2015,August,Monday,3,215,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CUSTOM,OT,3,BLK,1250.0,STOLEN,10283,"{'type': 'Point', 'coordinates': (-79.3879785, 43.66997438)}"
-10295,10188,GO-20159005415,THEFT UNDER,2015-08-06T00:00:00,2015,August,Thursday,6,218,8,2015-08-06T00:00:00,2015,August,Thursday,6,218,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,FUJI TRACK CLAS,RG,1,BLK,600.0,STOLEN,10284,"{'type': 'Point', 'coordinates': (-79.38771667, 43.66119164)}"
-10296,10229,GO-20151381986,PROPERTY - FOUND,2015-08-12T00:00:00,2015,August,Wednesday,12,224,9,2015-08-12T00:00:00,2015,August,Wednesday,12,224,10,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FUJI,CLASSIC,RG,1,BLK,,UNKNOWN,10285,"{'type': 'Point', 'coordinates': (-79.38501192, 43.66606363)}"
-10297,10237,GO-20159005620,THEFT UNDER,2015-08-10T00:00:00,2015,August,Monday,10,222,9,2015-08-10T00:00:00,2015,August,Monday,10,222,23,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,METRIX,RG,18,BLK,700.0,STOLEN,10286,"{'type': 'Point', 'coordinates': (-79.38768427, 43.66564487000001)}"
-10298,10262,GO-20159005767,THEFT UNDER,2015-07-11T00:00:00,2015,July,Saturday,11,192,15,2015-08-14T00:00:00,2015,August,Friday,14,226,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,2014 TRAIL SL 2,MT,10,BLK,1500.0,STOLEN,10287,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-10299,10270,GO-20159005845,THEFT UNDER,2015-08-15T00:00:00,2015,August,Saturday,15,227,10,2015-08-15T00:00:00,2015,August,Saturday,15,227,14,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,WOMENS MEDIUM,RG,3,WHI,480.0,STOLEN,10288,"{'type': 'Point', 'coordinates': (-79.38581514, 43.66081576)}"
-10300,10275,GO-20159005875,THEFT UNDER,2015-08-16T00:00:00,2015,August,Sunday,16,228,23,2015-08-17T00:00:00,2015,August,Monday,17,229,0,D52,Toronto,76,Bay Street Corridor (76),Bar / Restaurant,Commercial,NO,CITY GLIDE,OT,1,RED,700.0,STOLEN,10289,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-10301,10284,GO-20159005922,THEFT UNDER,2015-08-14T00:00:00,2015,August,Friday,14,226,9,2015-08-17T00:00:00,2015,August,Monday,17,229,16,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,MENS NOVARA HT,MT,15,BLK,300.0,STOLEN,10290,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-10302,10313,GO-20159006077,THEFT UNDER,2015-08-20T00:00:00,2015,August,Thursday,20,232,9,2015-08-20T00:00:00,2015,August,Thursday,20,232,18,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,PAVE LITE AQUIL,OT,18,GRY,900.0,STOLEN,10291,"{'type': 'Point', 'coordinates': (-79.38268555, 43.64598268)}"
-10303,10331,GO-20159006250,THEFT UNDER,2015-08-27T00:00:00,2015,August,Thursday,27,239,11,2015-08-27T00:00:00,2015,August,Thursday,27,239,22,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RG,21,YEL,0.0,STOLEN,10292,"{'type': 'Point', 'coordinates': (-79.38407058, 43.649187680000004)}"
-10304,10375,GO-20159006565,THEFT UNDER,2015-08-31T00:00:00,2015,August,Monday,31,243,12,2015-08-31T00:00:00,2015,August,Monday,31,243,14,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,MA,RAVEENA,RG,8,DBL,920.0,STOLEN,10293,"{'type': 'Point', 'coordinates': (-79.38618236, 43.65775862)}"
-10305,10387,GO-20151522473,THEFT UNDER,2015-08-14T00:00:00,2015,August,Friday,14,226,22,2015-09-03T00:00:00,2015,September,Thursday,3,246,18,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,ROAM 3,OT,21,SILBLK,500.0,STOLEN,10294,"{'type': 'Point', 'coordinates': (-79.37968936, 43.64733439)}"
-10306,10456,GO-20159007126,THEFT UNDER,2015-09-13T00:00:00,2015,September,Sunday,13,256,16,2015-09-13T00:00:00,2015,September,Sunday,13,256,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,TRACK,RG,1,,600.0,STOLEN,10295,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10307,10457,GO-20159007103,THEFT UNDER,2015-09-10T00:00:00,2015,September,Thursday,10,253,8,2015-09-12T00:00:00,2015,September,Saturday,12,255,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,DURANGO,MT,18,SIL,500.0,STOLEN,10296,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-10308,10468,GO-20151596078,THEFT UNDER,2015-09-06T00:00:00,2015,September,Sunday,6,249,0,2015-09-15T00:00:00,2015,September,Tuesday,15,258,16,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,MIELIE,,OT,15,BLK,800.0,STOLEN,10297,"{'type': 'Point', 'coordinates': (-79.38338195, 43.66213624)}"
-10309,10472,GO-20151603416,THEFT UNDER,2015-09-13T00:00:00,2015,September,Sunday,13,256,22,2015-09-16T00:00:00,2015,September,Wednesday,16,259,18,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,OTHER,,OT,0,,,STOLEN,10298,"{'type': 'Point', 'coordinates': (-79.38737611, 43.66847728)}"
-10310,10485,GO-20159007320,THEFT UNDER,2015-09-12T00:00:00,2015,September,Saturday,12,255,20,2015-09-17T00:00:00,2015,September,Thursday,17,260,13,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,,TO,27,,600.0,STOLEN,10299,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10311,10486,GO-20159007336,THEFT UNDER,2015-09-14T00:00:00,2015,September,Monday,14,257,8,2015-09-17T00:00:00,2015,September,Thursday,17,260,17,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,1,RED,400.0,STOLEN,10300,"{'type': 'Point', 'coordinates': (-79.38596803, 43.65904449)}"
-10312,10499,GO-20159007433,THEFT UNDER,2015-09-19T00:00:00,2015,September,Saturday,19,262,12,2015-09-19T00:00:00,2015,September,Saturday,19,262,21,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,CROSSROADS,RG,12,GRY,860.0,STOLEN,10301,"{'type': 'Point', 'coordinates': (-79.38238489, 43.65176074)}"
-10313,10500,GO-20159007432,THEFT UNDER,2015-09-19T00:00:00,2015,September,Saturday,19,262,12,2015-09-19T00:00:00,2015,September,Saturday,19,262,22,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,OLYMPIA,OT,18,BLU,600.0,STOLEN,10302,"{'type': 'Point', 'coordinates': (-79.38238489, 43.65176074)}"
-10314,10526,GO-20151649874,THEFT UNDER,2015-09-15T00:00:00,2015,September,Tuesday,15,258,17,2015-09-24T00:00:00,2015,September,Thursday,24,267,7,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,OTHER,,MT,0,BLK,600.0,STOLEN,10303,"{'type': 'Point', 'coordinates': (-79.38946225, 43.66523161)}"
-10315,10544,GO-20151659545,THEFT UNDER,2015-09-25T00:00:00,2015,September,Friday,25,268,13,2015-09-25T00:00:00,2015,September,Friday,25,268,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,REVOLT,MT,18,GRY,,STOLEN,10304,"{'type': 'Point', 'coordinates': (-79.38625132, 43.6500866)}"
-10316,10587,GO-20151712793,THEFT UNDER,2015-10-02T00:00:00,2015,October,Friday,2,275,20,2015-10-04T00:00:00,2015,October,Sunday,4,277,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,TEMPO 700,MT,18,GRY,174.0,STOLEN,10305,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-10317,10589,GO-20159008164,THEFT UNDER,2015-10-04T00:00:00,2015,October,Sunday,4,277,14,2015-10-05T00:00:00,2015,October,Monday,5,278,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KH,VITAMIN B,RG,8,BLK,650.0,STOLEN,10306,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-10318,10596,GO-20159008213,THEFT UNDER,2015-09-30T00:00:00,2015,September,Wednesday,30,273,21,2015-10-05T00:00:00,2015,October,Monday,5,278,20,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,MANTRA FIXIE,OT,1,BLK,409.0,STOLEN,10307,"{'type': 'Point', 'coordinates': (-79.38820648, 43.66681234)}"
-10319,10619,GO-20159008465,THEFT UNDER,2015-10-12T00:00:00,2015,October,Monday,12,285,12,2015-10-12T00:00:00,2015,October,Monday,12,285,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,CAAD8,RC,20,BLK,1200.0,STOLEN,10308,"{'type': 'Point', 'coordinates': (-79.38124592, 43.65320661)}"
-10320,10621,GO-20159008467,THEFT UNDER,2015-10-12T00:00:00,2015,October,Monday,12,285,21,2015-10-12T00:00:00,2015,October,Monday,12,285,21,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RC,27,YEL,1790.0,RECOVERED,10309,"{'type': 'Point', 'coordinates': (-79.38601979, 43.65524051)}"
-10321,10630,GO-20151777391,THEFT UNDER,2015-10-06T00:00:00,2015,October,Tuesday,6,279,9,2015-10-15T00:00:00,2015,October,Thursday,15,288,14,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,KONA,JAKE,OT,20,ONG,2500.0,STOLEN,10310,"{'type': 'Point', 'coordinates': (-79.39348694, 43.66726478)}"
-10322,10637,GO-20159008596,THEFT UNDER,2015-10-06T00:00:00,2015,October,Tuesday,6,279,19,2015-10-16T00:00:00,2015,October,Friday,16,289,9,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SIRRUS SPORT,OT,27,GRY,1000.0,STOLEN,10311,"{'type': 'Point', 'coordinates': (-79.38605934000002, 43.6615638)}"
-10323,10648,GO-20159008677,THEFT UNDER,2015-10-15T00:00:00,2015,October,Thursday,15,288,8,2015-10-18T00:00:00,2015,October,Sunday,18,291,11,D52,Toronto,76,Bay Street Corridor (76),"Open Areas (Lakes, Parks, Rivers)",Outside,GI,LIV GIANT ROVE,RG,2,BLK,670.0,STOLEN,10312,"{'type': 'Point', 'coordinates': (-79.38260155, 43.6529703)}"
-10324,10673,GO-20151819164,THEFT UNDER,2015-10-22T00:00:00,2015,October,Thursday,22,295,14,2015-10-22T00:00:00,2015,October,Thursday,22,295,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,PEGASUS,INNOVARE,SC,1,,3700.0,STOLEN,10313,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-10325,10711,GO-20151889455,THEFT UNDER,2015-10-09T00:00:00,2015,October,Friday,9,282,19,2015-11-03T00:00:00,2015,November,Tuesday,3,307,11,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,JAMIS,,RG,1,BLKYEL,1200.0,STOLEN,10314,"{'type': 'Point', 'coordinates': (-79.38601979, 43.65524051)}"
-10326,10719,GO-20151901450,THEFT UNDER,2015-11-04T00:00:00,2015,November,Wednesday,4,308,11,2015-11-05T00:00:00,2015,November,Thursday,5,309,10,D52,Toronto,76,Bay Street Corridor (76),Ttc Subway Station,Transit,CCM,,OT,21,,150.0,STOLEN,10315,"{'type': 'Point', 'coordinates': (-79.38268555, 43.64598268)}"
-10327,10723,GO-20151906843,THEFT UNDER,2015-11-02T00:00:00,2015,November,Monday,2,306,11,2015-11-06T00:00:00,2015,November,Friday,6,310,8,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,OTHER,,MT,21,BLK,350.0,STOLEN,10316,"{'type': 'Point', 'coordinates': (-79.39348694, 43.66726478)}"
-10328,10749,GO-20151939911,THEFT UNDER,2015-11-04T00:00:00,2015,November,Wednesday,4,308,14,2015-11-11T00:00:00,2015,November,Wednesday,11,315,18,D52,Toronto,76,Bay Street Corridor (76),"Open Areas (Lakes, Parks, Rivers)",Outside,OTHER,AVANTI,TO,10,BLU,500.0,STOLEN,10317,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-10329,10762,GO-20151937310,THEFT UNDER,2015-11-10T00:00:00,2015,November,Tuesday,10,314,14,2015-11-13T00:00:00,2015,November,Friday,13,317,11,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,PRESTIGE,EL,1,PLEMRN,2100.0,STOLEN,10318,"{'type': 'Point', 'coordinates': (-79.38892782, 43.65634783)}"
-10330,10770,GO-20151949861,THEFT UNDER,2015-11-13T00:00:00,2015,November,Friday,13,317,2,2015-11-13T00:00:00,2015,November,Friday,13,317,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,ALIEN,EL,1,WHI,2500.0,STOLEN,10319,"{'type': 'Point', 'coordinates': (-79.3861386, 43.66649311)}"
-10331,10771,GO-20151957399,THEFT UNDER,2015-11-02T00:00:00,2015,November,Monday,2,306,16,2015-11-14T00:00:00,2015,November,Saturday,14,318,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,PIDGEON,UNKNOWN,EL,0,BLU,1300.0,STOLEN,10320,"{'type': 'Point', 'coordinates': (-79.38077050000001, 43.64989242)}"
-10332,10784,GO-20159009886,THEFT UNDER,2015-11-18T00:00:00,2015,November,Wednesday,18,322,8,2015-11-18T00:00:00,2015,November,Wednesday,18,322,22,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,SIRRUS PRO,RG,21,GRY,1500.0,STOLEN,10321,"{'type': 'Point', 'coordinates': (-79.38892782, 43.65634783)}"
-10333,10789,GO-20151984896,THEFT UNDER,2015-11-17T00:00:00,2015,November,Tuesday,17,321,7,2015-11-19T00:00:00,2015,November,Thursday,19,323,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MINELLI,,RC,18,BLK,350.0,STOLEN,10322,"{'type': 'Point', 'coordinates': (-79.38374902, 43.66302137000001)}"
-10334,3428,GO-20189029646,POSSESSION PROPERTY OBC UNDER,2018-09-08T00:00:00,2018,September,Saturday,8,251,16,2018-09-08T00:00:00,2018,September,Saturday,8,251,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,XFR 2 2O,MT,21,GRY,1000.0,STOLEN,10323,"{'type': 'Point', 'coordinates': (-79.38552201, 43.64605338)}"
-10335,8272,GO-20142416000,THEFT UNDER,2014-06-28T00:00:00,2014,June,Saturday,28,179,14,2014-07-02T00:00:00,2014,July,Wednesday,2,183,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,,MT,21,BLKWHI,450.0,STOLEN,10324,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10336,1401,GO-20171648555,THEFT UNDER - BICYCLE,2017-09-10T00:00:00,2017,September,Sunday,10,253,15,2017-09-11T00:00:00,2017,September,Monday,11,254,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,,FO,0,WHI,300.0,STOLEN,10325,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-10337,8274,GO-20142422741,THEFT UNDER,2014-06-27T00:00:00,2014,June,Friday,27,178,13,2014-07-03T00:00:00,2014,July,Thursday,3,184,15,D52,Toronto,76,Bay Street Corridor (76),"Open Areas (Lakes, Parks, Rivers)",Outside,FUJI,HYBRID,RC,18,BLK,,STOLEN,10326,"{'type': 'Point', 'coordinates': (-79.38827434000001, 43.65479006)}"
-10338,8277,GO-20149004550,THEFT UNDER,2014-06-28T00:00:00,2014,June,Saturday,28,179,12,2014-06-29T00:00:00,2014,June,Sunday,29,180,9,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,VILANO TUONO HY,RG,21,BLK,400.0,STOLEN,10327,"{'type': 'Point', 'coordinates': (-79.38437564, 43.65730783)}"
-10339,8279,GO-20149004531,THEFT UNDER,2014-06-27T00:00:00,2014,June,Friday,27,178,19,2014-06-28T00:00:00,2014,June,Saturday,28,179,10,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,,RG,8,GRY,600.0,STOLEN,10328,"{'type': 'Point', 'coordinates': (-79.38518506, 43.65542635)}"
-10340,8280,GO-20142430889,THEFT UNDER,2014-07-04T00:00:00,2014,July,Friday,4,185,13,2014-07-04T00:00:00,2014,July,Friday,4,185,18,D52,Toronto,76,Bay Street Corridor (76),"Open Areas (Lakes, Parks, Rivers)",Outside,NORCO,BIKE,RG,27,BLK,500.0,STOLEN,10329,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-10341,8296,GO-20142447826,THEFT UNDER,2014-06-30T00:00:00,2014,June,Monday,30,181,13,2014-07-07T00:00:00,2014,July,Monday,7,188,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BRODIE,VOLTAGE,OT,12,BLK,600.0,STOLEN,10330,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-10342,8299,GO-20149004590,THEFT UNDER,2013-07-25T00:00:00,2013,July,Thursday,25,206,10,2014-07-01T00:00:00,2014,July,Tuesday,1,182,9,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,MT,24,BLU,,STOLEN,10331,"{'type': 'Point', 'coordinates': (-79.38596803, 43.65904449)}"
-10343,8309,GO-20142420499,THEFT UNDER,2014-07-02T00:00:00,2014,July,Wednesday,2,183,9,2014-07-03T00:00:00,2014,July,Thursday,3,184,10,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREX 2X 8000,HARD PALE,MT,21,SIL,2000.0,STOLEN,10332,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-10344,8310,GO-20142422454,THEFT UNDER,2014-06-22T00:00:00,2014,June,Sunday,22,173,17,2014-07-03T00:00:00,2014,July,Thursday,3,184,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,SEDONA,MT,21,,700.0,STOLEN,10333,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-10345,8313,GO-20149004625,THEFT UNDER,2014-06-28T00:00:00,2014,June,Saturday,28,179,14,2014-07-02T00:00:00,2014,July,Wednesday,2,183,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MA,,MT,21,GRY,550.0,STOLEN,10334,"{'type': 'Point', 'coordinates': (-79.38714344, 43.66436762)}"
-10346,8343,GO-20149004697,THEFT UNDER,2014-07-05T00:00:00,2014,July,Saturday,5,186,13,2014-07-06T00:00:00,2014,July,Sunday,6,187,17,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,GI,TCR ALLIANCE,RC,18,WHI,1900.0,STOLEN,10335,"{'type': 'Point', 'coordinates': (-79.38482092, 43.65454718)}"
-10347,8365,GO-20149004801,THEFT UNDER,2014-07-03T00:00:00,2014,July,Thursday,3,184,23,2014-07-08T00:00:00,2014,July,Tuesday,8,189,9,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,STORM 2,MT,24,WHI,0.0,STOLEN,10336,"{'type': 'Point', 'coordinates': (-79.38353872, 43.64792395)}"
-10348,8368,GO-20149004802,THEFT UNDER,2014-07-07T00:00:00,2014,July,Monday,7,188,19,2014-07-07T00:00:00,2014,July,Monday,7,188,22,D52,Toronto,76,Bay Street Corridor (76),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,,FO,7,RED,400.0,STOLEN,10337,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10349,8369,GO-20149004802,THEFT UNDER,2014-07-07T00:00:00,2014,July,Monday,7,188,19,2014-07-07T00:00:00,2014,July,Monday,7,188,22,D52,Toronto,76,Bay Street Corridor (76),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,,FO,7,GRN,400.0,STOLEN,10338,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10350,8375,GO-20149004845,THEFT UNDER,2014-07-09T00:00:00,2014,July,Wednesday,9,190,12,2014-07-09T00:00:00,2014,July,Wednesday,9,190,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,MOUNTAIN,MT,27,GRY,350.0,STOLEN,10339,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-10351,8388,GO-20149004877,THEFT UNDER,2014-07-10T00:00:00,2014,July,Thursday,10,191,12,2014-07-10T00:00:00,2014,July,Thursday,10,191,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,RG,21,BLK,700.0,STOLEN,10340,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10352,8397,GO-20149004915,THEFT UNDER,2014-07-11T00:00:00,2014,July,Friday,11,192,8,2014-07-11T00:00:00,2014,July,Friday,11,192,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DB,,MT,21,BLK,0.0,STOLEN,10341,"{'type': 'Point', 'coordinates': (-79.38565688, 43.65832672)}"
-10353,8402,GO-20149004929,THEFT UNDER,2014-07-12T00:00:00,2014,July,Saturday,12,193,0,2014-07-12T00:00:00,2014,July,Saturday,12,193,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,CYPRESS 1020,OT,3,BLU,400.0,STOLEN,10342,"{'type': 'Point', 'coordinates': (-79.39098691, 43.66935825)}"
-10354,8420,GO-20149004981,THEFT UNDER,2014-07-11T00:00:00,2014,July,Friday,11,192,10,2014-07-14T00:00:00,2014,July,Monday,14,195,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SCOTT SUB 40 HY,RG,24,GRY,823.0,STOLEN,10343,"{'type': 'Point', 'coordinates': (-79.38581514, 43.66081576)}"
-10355,8436,GO-20149005030,THEFT UNDER,2014-07-15T00:00:00,2014,July,Tuesday,15,196,17,2014-07-16T00:00:00,2014,July,Wednesday,16,197,9,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,RG,21,BLK,0.0,STOLEN,10344,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10356,8439,GO-20142518570,THEFT UNDER,2014-07-13T00:00:00,2014,July,Sunday,13,194,13,2014-07-17T00:00:00,2014,July,Thursday,17,198,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,ROAM 2,OT,9,GRY,1500.0,STOLEN,10345,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10357,8450,GO-20142514116,THEFT UNDER,2014-07-16T00:00:00,2014,July,Wednesday,16,197,8,2014-07-17T00:00:00,2014,July,Thursday,17,198,8,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CANNONDALE,,MT,21,GLD,1500.0,STOLEN,10346,"{'type': 'Point', 'coordinates': (-79.37878196, 43.64896093)}"
-10358,8462,GO-20149005146,THEFT UNDER,2014-07-16T00:00:00,2014,July,Wednesday,16,197,7,2014-07-20T00:00:00,2014,July,Sunday,20,201,13,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,TR,2.1,RC,10,BLK,1500.0,STOLEN,10347,"{'type': 'Point', 'coordinates': (-79.38649082, 43.66146692)}"
-10359,8475,GO-20149005188,THEFT UNDER,2014-07-19T00:00:00,2014,July,Saturday,19,200,0,2014-07-21T00:00:00,2014,July,Monday,21,202,10,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,,RC,10,BLK,2500.0,STOLEN,10348,"{'type': 'Point', 'coordinates': (-79.37968936, 43.64733439)}"
-10360,8506,GO-20149005312,THEFT UNDER,2014-07-23T00:00:00,2014,July,Wednesday,23,204,7,2014-07-23T00:00:00,2014,July,Wednesday,23,204,23,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,TR,2009,OT,8,TAN,600.0,STOLEN,10350,"{'type': 'Point', 'coordinates': (-79.38618236, 43.65775862)}"
-10361,8507,GO-20149005325,THEFT UNDER,2014-07-24T00:00:00,2014,July,Thursday,24,205,16,2014-07-25T00:00:00,2014,July,Friday,25,206,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,PE,,TO,7,SIL,450.0,STOLEN,10351,"{'type': 'Point', 'coordinates': (-79.38581622, 43.66799576)}"
-10362,8512,GO-20149005334,THEFT UNDER,2014-07-25T00:00:00,2014,July,Friday,25,206,16,2014-07-25T00:00:00,2014,July,Friday,25,206,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,TRIUMPH,MT,18,DBL,200.0,STOLEN,10352,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-10363,8516,GO-20142589541,THEFT UNDER,2014-07-27T00:00:00,2014,July,Sunday,27,208,19,2014-07-28T00:00:00,2014,July,Monday,28,209,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,X-CALIBER,MT,18,BLU,676.0,STOLEN,10353,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-10364,8520,GO-20149005352,THEFT UNDER,2014-07-16T00:00:00,2014,July,Wednesday,16,197,22,2014-07-26T00:00:00,2014,July,Saturday,26,207,11,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,GF,WAHOO,MT,21,BLK,400.0,STOLEN,10354,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-10365,8531,GO-20149005390,THEFT UNDER,2014-07-27T00:00:00,2014,July,Sunday,27,208,17,2014-07-27T00:00:00,2014,July,Sunday,27,208,22,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,FUEL 90,MT,9,BLK,0.0,STOLEN,10355,"{'type': 'Point', 'coordinates': (-79.38702746, 43.66853925)}"
-10366,8533,GO-20142605940,THEFT UNDER,2014-07-30T00:00:00,2014,July,Wednesday,30,211,20,2014-07-31T00:00:00,2014,July,Thursday,31,212,7,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NROCO,VFR4,MT,18,WHI,,STOLEN,10356,"{'type': 'Point', 'coordinates': (-79.3879785, 43.66997438)}"
-10367,8537,GO-20149005410,THEFT UNDER,2014-07-28T00:00:00,2014,July,Monday,28,209,7,2014-07-28T00:00:00,2014,July,Monday,28,209,17,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,GI,ESCAPE,RG,24,WHI,600.0,STOLEN,10357,"{'type': 'Point', 'coordinates': (-79.3863755, 43.65817391)}"
-10368,8601,GO-20149005694,THEFT UNDER,2014-08-05T00:00:00,2014,August,Tuesday,5,217,19,2014-08-06T00:00:00,2014,August,Wednesday,6,218,22,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,KH,FLITE 300,RC,16,BLK,1100.0,STOLEN,10358,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10369,8635,GO-20149005783,THEFT UNDER,2014-08-13T00:00:00,2014,August,Wednesday,13,225,11,2014-08-13T00:00:00,2014,August,Wednesday,13,225,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,VFR 1,OT,27,RED,1300.0,STOLEN,10359,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10370,8657,GO-20149005924,THEFT UNDER,2014-08-17T00:00:00,2014,August,Sunday,17,229,15,2014-08-17T00:00:00,2014,August,Sunday,17,229,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,IH,ESTATE,MT,21,GRY,272.0,STOLEN,10360,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10371,8685,GO-20149006062,THEFT UNDER,2014-08-18T00:00:00,2014,August,Monday,18,230,10,2014-08-19T00:00:00,2014,August,Tuesday,19,231,2,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,LANGSTER LOS AN,RC,1,BLK,1000.0,STOLEN,10361,"{'type': 'Point', 'coordinates': (-79.38551636, 43.64886856)}"
-10372,8698,GO-20149006120,THEFT UNDER,2014-08-15T00:00:00,2014,August,Friday,15,227,8,2014-08-20T00:00:00,2014,August,Wednesday,20,232,8,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,VFR 4 FORMA LAD,RG,24,LBL,700.0,STOLEN,10362,"{'type': 'Point', 'coordinates': (-79.37869993, 43.65105518)}"
-10373,8722,GO-20142763159,THEFT UNDER,2014-08-19T00:00:00,2014,August,Tuesday,19,231,12,2014-08-23T00:00:00,2014,August,Saturday,23,235,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KNIFE,COMPRESSION,OT,18,BLK,500.0,STOLEN,10363,"{'type': 'Point', 'coordinates': (-79.38298971, 43.64660463)}"
-10374,8737,GO-20149006313,THEFT UNDER,2014-08-25T00:00:00,2014,August,Monday,25,237,7,2014-08-26T00:00:00,2014,August,Tuesday,26,238,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,SEEK,MT,18,GRY,600.0,STOLEN,10364,"{'type': 'Point', 'coordinates': (-79.39054537, 43.66944743)}"
-10375,8752,GO-20149006199,THEFT UNDER,2014-08-22T00:00:00,2014,August,Friday,22,234,9,2014-08-22T00:00:00,2014,August,Friday,22,234,18,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,"2009 VFR D4 22""""",RG,24,BLK,734.0,STOLEN,10365,"{'type': 'Point', 'coordinates': (-79.38820648, 43.66681234)}"
-10376,8770,GO-20149006397,THEFT UNDER,2014-08-28T00:00:00,2014,August,Thursday,28,240,14,2014-08-29T00:00:00,2014,August,Friday,29,241,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,THE DUKE - MEDI,RG,1,BLK,375.0,STOLEN,10366,"{'type': 'Point', 'coordinates': (-79.38491403, 43.66584039)}"
-10377,8774,GO-20142800780,THEFT UNDER,2014-08-23T00:00:00,2014,August,Saturday,23,235,10,2014-08-29T00:00:00,2014,August,Friday,29,241,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,SC,1,MRN,2000.0,STOLEN,10367,"{'type': 'Point', 'coordinates': (-79.38632177, 43.65593978)}"
-10378,8778,GO-20149006432,THEFT UNDER,2014-08-31T00:00:00,2014,August,Sunday,31,243,18,2014-08-31T00:00:00,2014,August,Sunday,31,243,23,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RA,SUMMIT,MT,18,RED,0.0,STOLEN,10368,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-10379,8779,GO-20149006454,THEFT UNDER,2014-08-29T00:00:00,2014,August,Friday,29,241,22,2014-08-31T00:00:00,2014,August,Sunday,31,243,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,HORNET,OT,1,LBL,299.0,STOLEN,10369,"{'type': 'Point', 'coordinates': (-79.38596803, 43.65904449)}"
-10380,8828,GO-20149006634,THEFT UNDER,2014-09-06T00:00:00,2014,September,Saturday,6,249,17,2014-09-06T00:00:00,2014,September,Saturday,6,249,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,LTD RACE,MT,30,GRY,1700.0,STOLEN,10370,"{'type': 'Point', 'coordinates': (-79.38124592, 43.65320661)}"
-10381,8831,GO-20149006646,THEFT UNDER,2014-09-03T00:00:00,2014,September,Wednesday,3,246,7,2014-09-07T00:00:00,2014,September,Sunday,7,250,15,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,CC,,RG,12,PLE,100.0,STOLEN,10371,"{'type': 'Point', 'coordinates': (-79.38209114, 43.64961443)}"
-10382,8832,GO-20149006649,THEFT UNDER,2014-08-21T00:00:00,2014,August,Thursday,21,233,19,2014-09-07T00:00:00,2014,September,Sunday,7,250,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,BIG HORN,RG,12,DBL,100.0,STOLEN,10372,"{'type': 'Point', 'coordinates': (-79.37760867, 43.64852311)}"
-10383,8908,GO-20149006970,THEFT UNDER,2014-09-17T00:00:00,2014,September,Wednesday,17,260,12,2014-09-17T00:00:00,2014,September,Wednesday,17,260,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,INDIE4,RG,18,BLK,600.0,STOLEN,10381,"{'type': 'Point', 'coordinates': (-79.38581622, 43.66799576)}"
-10384,8840,GO-20149006678,THEFT UNDER,2014-09-03T00:00:00,2014,September,Wednesday,3,246,8,2014-09-08T00:00:00,2014,September,Monday,8,251,11,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,CAN 11 QUICK 4,BM,21,GRY,827.0,STOLEN,10373,"{'type': 'Point', 'coordinates': (-79.38407058, 43.649187680000004)}"
-10385,8843,GO-20149006698,THEFT UNDER,2014-09-08T00:00:00,2014,September,Monday,8,251,18,2014-09-08T00:00:00,2014,September,Monday,8,251,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,2009-VFRD4,TO,24,BLK,700.0,STOLEN,10374,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-10386,8880,GO-20149006848,THEFT UNDER,2014-09-12T00:00:00,2014,September,Friday,12,255,15,2014-09-13T00:00:00,2014,September,Saturday,13,256,8,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,,,MT,21,SIL,300.0,STOLEN,10375,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-10387,8883,GO-20149006873,THEFT UNDER,2014-09-12T00:00:00,2014,September,Friday,12,255,23,2014-09-14T00:00:00,2014,September,Sunday,14,257,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,18,BLK,100.0,STOLEN,10376,"{'type': 'Point', 'coordinates': (-79.38768427, 43.66564487000001)}"
-10388,8884,GO-20142519359,THEFT UNDER,2014-07-17T00:00:00,2014,July,Thursday,17,198,17,2014-07-18T00:00:00,2014,July,Friday,18,199,0,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,G-FORCE RAPTOR,EL,1,BLK,1500.0,STOLEN,10377,"{'type': 'Point', 'coordinates': (-79.38353872, 43.64792395)}"
-10389,8887,GO-20149006885,THEFT UNDER,2014-09-14T00:00:00,2014,September,Sunday,14,257,16,2014-09-14T00:00:00,2014,September,Sunday,14,257,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,20,WHI,1200.0,STOLEN,10378,"{'type': 'Point', 'coordinates': (-79.38542161, 43.64752091)}"
-10390,8897,GO-20149006913,THEFT UNDER,2014-09-15T00:00:00,2014,September,Monday,15,258,9,2014-09-15T00:00:00,2014,September,Monday,15,258,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CROSSTRAIL SPOR,MT,27,BLU,600.0,STOLEN,10379,"{'type': 'Point', 'coordinates': (-79.38482092, 43.65454718)}"
-10391,8902,GO-20149006950,THEFT UNDER,2014-09-12T00:00:00,2014,September,Friday,12,255,8,2014-09-16T00:00:00,2014,September,Tuesday,16,259,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,RG,27,BLK,800.0,STOLEN,10380,"{'type': 'Point', 'coordinates': (-79.38298971, 43.64660463)}"
-10392,8918,GO-20149007005,THEFT UNDER,2014-09-07T00:00:00,2014,September,Sunday,7,250,11,2014-09-18T00:00:00,2014,September,Thursday,18,261,11,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,TR,7.3 FX,RG,24,GRY,0.0,STOLEN,10383,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-10393,8919,GO-20149007014,THEFT UNDER,2014-09-18T00:00:00,2014,September,Thursday,18,261,10,2014-09-18T00:00:00,2014,September,Thursday,18,261,17,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RC,18,BLK,750.0,STOLEN,10384,"{'type': 'Point', 'coordinates': (-79.38407058, 43.649187680000004)}"
-10394,8937,GO-20142952422,THEFT UNDER,2014-09-20T00:00:00,2014,September,Saturday,20,263,16,2014-09-21T00:00:00,2014,September,Sunday,21,264,8,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,EMMO,H5,OT,1,BLK,800.0,STOLEN,10385,"{'type': 'Point', 'coordinates': (-79.38482092, 43.65454718)}"
-10395,8950,GO-20149007133,THEFT UNDER,2014-09-18T00:00:00,2014,September,Thursday,18,261,22,2014-09-22T00:00:00,2014,September,Monday,22,265,22,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,NO,VFR 4,RG,21,BLK,350.0,STOLEN,10386,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-10396,8959,GO-20142972558,THEFT UNDER,2014-09-23T00:00:00,2014,September,Tuesday,23,266,19,2014-09-24T00:00:00,2014,September,Wednesday,24,267,10,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,UNKNOWN,BM,10,BLU,750.0,STOLEN,10387,"{'type': 'Point', 'coordinates': (-79.38618236, 43.65775862)}"
-10397,8964,GO-20149007172,THEFT UNDER,2014-09-24T00:00:00,2014,September,Wednesday,24,267,10,2014-09-24T00:00:00,2014,September,Wednesday,24,267,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EM,,EL,32,LBL,1300.0,STOLEN,10388,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10398,8981,GO-20142987051,THEFT UNDER,2014-09-26T00:00:00,2014,September,Friday,26,269,8,2014-09-26T00:00:00,2014,September,Friday,26,269,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CERVELO,S5,OT,11,GRY,10000.0,STOLEN,10389,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-10399,8982,GO-20142986984,THEFT UNDER,2014-09-26T00:00:00,2014,September,Friday,26,269,10,2014-09-26T00:00:00,2014,September,Friday,26,269,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,RAINIER,MT,21,BLU,,STOLEN,10390,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-10400,8990,GO-20143001192,THEFT UNDER,2014-09-27T00:00:00,2014,September,Saturday,27,270,12,2014-09-28T00:00:00,2014,September,Sunday,28,271,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,HARDROCK SPORT,MT,21,BLK,500.0,STOLEN,10391,"{'type': 'Point', 'coordinates': (-79.38687123, 43.6623556)}"
-10401,9003,GO-20149007334,THEFT UNDER,2014-10-01T00:00:00,2014,October,Wednesday,1,274,13,2014-10-01T00:00:00,2014,October,Wednesday,1,274,16,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,EM,GT5,EL,32,RED,2000.0,STOLEN,10392,"{'type': 'Point', 'coordinates': (-79.38994423, 43.6587011)}"
-10402,9034,GO-20143074181,THEFT UNDER,2014-10-09T00:00:00,2014,October,Thursday,9,282,12,2014-10-09T00:00:00,2014,October,Thursday,9,282,18,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,TDR295,SC,0,BLK,2000.0,STOLEN,10393,"{'type': 'Point', 'coordinates': (-79.38581514, 43.66081576)}"
-10403,9037,GO-20143078519,THEFT UNDER,2014-10-09T00:00:00,2014,October,Thursday,9,282,19,2014-10-10T00:00:00,2014,October,Friday,10,283,11,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,KONA,CINDERCONE,MT,18,BRZ,1000.0,STOLEN,10394,"{'type': 'Point', 'coordinates': (-79.38640575, 43.65337704000001)}"
-10404,9040,GO-20149007515,THEFT UNDER,2014-10-09T00:00:00,2014,October,Thursday,9,282,18,2014-10-10T00:00:00,2014,October,Friday,10,283,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,,RC,21,BLU,200.0,STOLEN,10395,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10405,9060,GO-20149007576,THEFT UNDER,2014-10-13T00:00:00,2014,October,Monday,13,286,19,2014-10-14T00:00:00,2014,October,Tuesday,14,287,13,D52,Toronto,76,Bay Street Corridor (76),Bar / Restaurant,Commercial,OT,CYCLONE,EL,32,BLK,2226.0,STOLEN,10396,"{'type': 'Point', 'coordinates': (-79.38154682, 43.65790792)}"
-10406,9071,GO-20149007593,THEFT UNDER,2014-07-23T00:00:00,2014,July,Wednesday,23,204,17,2014-10-14T00:00:00,2014,October,Tuesday,14,287,21,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,"CURVEDTOPTUBE,V",RC,6,PNK,800.0,STOLEN,10397,"{'type': 'Point', 'coordinates': (-79.38634339, 43.66246955)}"
-10407,9080,GO-20149007679,THEFT UNDER,2014-10-19T00:00:00,2014,October,Sunday,19,292,9,2014-10-19T00:00:00,2014,October,Sunday,19,292,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,MT,21,WHI,400.0,STOLEN,10398,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-10408,9084,GO-20149007697,THEFT UNDER,2014-10-11T00:00:00,2014,October,Saturday,11,284,16,2014-10-20T00:00:00,2014,October,Monday,20,293,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,RG,24,LBL,500.0,STOLEN,10399,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-10409,9100,GO-20143154735,THEFT UNDER,2014-10-22T00:00:00,2014,October,Wednesday,22,295,9,2014-10-22T00:00:00,2014,October,Wednesday,22,295,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,ECO,PED,EL,1,,1000.0,STOLEN,10400,"{'type': 'Point', 'coordinates': (-79.38709792, 43.64990598)}"
-10410,9103,GO-20143158284,THEFT UNDER,2014-10-21T00:00:00,2014,October,Tuesday,21,294,17,2014-10-23T00:00:00,2014,October,Thursday,23,296,9,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,TEV,EL,1,BLU,,STOLEN,10401,"{'type': 'Point', 'coordinates': (-79.38501192, 43.66606363)}"
-10411,9132,GO-20149007914,THEFT UNDER,2014-10-30T00:00:00,2014,October,Thursday,30,303,17,2014-10-30T00:00:00,2014,October,Thursday,30,303,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ELECTRIC,SC,3,MRN,1000.0,STOLEN,10402,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10412,9148,GO-20143168302,THEFT UNDER,2014-10-23T00:00:00,2014,October,Thursday,23,296,9,2014-10-24T00:00:00,2014,October,Friday,24,297,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,,EL,1,,,STOLEN,10403,"{'type': 'Point', 'coordinates': (-79.3802391, 43.64865033)}"
-10413,9180,GO-20149008004,THEFT UNDER,2014-10-21T00:00:00,2014,October,Tuesday,21,294,8,2014-11-04T00:00:00,2014,November,Tuesday,4,308,10,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EM,,EL,30,WHI,1100.0,STOLEN,10404,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10414,9182,GO-20149008042,THEFT UNDER,2014-11-05T00:00:00,2014,November,Wednesday,5,309,21,2014-11-06T00:00:00,2014,November,Thursday,6,310,14,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,CAPRICCIO,RC,10,RED,1300.0,STOLEN,10405,"{'type': 'Point', 'coordinates': (-79.38374902, 43.66302137000001)}"
-10415,9204,GO-20149008443,THEFT UNDER,2014-11-27T00:00:00,2014,November,Thursday,27,331,15,2014-11-27T00:00:00,2014,November,Thursday,27,331,20,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,2009 TOURING 1,TO,30,WHI,1500.0,STOLEN,10406,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-10416,9238,GO-20143537221,THEFT UNDER,2014-12-21T00:00:00,2014,December,Sunday,21,355,2,2014-12-23T00:00:00,2014,December,Tuesday,23,357,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GARY FISHER,,OT,24,BLK,1400.0,STOLEN,10407,"{'type': 'Point', 'coordinates': (-79.37968936, 43.64733439)}"
-10417,9250,GO-20159000101,THEFT UNDER,2011-07-01T00:00:00,2011,July,Friday,1,182,6,2015-01-06T00:00:00,2015,January,Tuesday,6,6,18,D52,Toronto,76,Bay Street Corridor (76),Schools During Un-Supervised Activity,Educational,GI,,RC,3,WHI,1000.0,STOLEN,10408,"{'type': 'Point', 'coordinates': (-79.38820648, 43.66681234)}"
-10418,9266,GO-2015106978,THEFT UNDER,2015-01-17T00:00:00,2015,January,Saturday,17,17,23,2015-01-19T00:00:00,2015,January,Monday,19,19,9,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,EL,1,BLU,1000.0,STOLEN,10409,"{'type': 'Point', 'coordinates': (-79.38737611, 43.66847728)}"
-10419,9272,GO-20159000409,THEFT UNDER,2015-01-22T00:00:00,2015,January,Thursday,22,22,9,2015-01-22T00:00:00,2015,January,Thursday,22,22,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,,RG,21,SIL,400.0,STOLEN,10410,"{'type': 'Point', 'coordinates': (-79.38565688, 43.65832672)}"
-10420,9293,GO-20159000779,THEFT UNDER,2015-02-14T00:00:00,2015,February,Saturday,14,45,16,2015-02-14T00:00:00,2015,February,Saturday,14,45,17,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,CUSTOM,MT,16,BLK,2500.0,STOLEN,10411,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-10421,9321,GO-2015446138,THEFT UNDER,2014-09-30T00:00:00,2014,September,Tuesday,30,273,17,2015-03-16T00:00:00,2015,March,Monday,16,75,16,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,ARGON 18,RADON,RG,20,BLK,1000.0,STOLEN,10412,"{'type': 'Point', 'coordinates': (-79.38437564, 43.65730783)}"
-10422,9326,GO-2015450760,THEFT UNDER,2014-12-30T00:00:00,2014,December,Tuesday,30,364,16,2015-03-17T00:00:00,2015,March,Tuesday,17,76,12,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,GARY FISHER,AR SUPER,RC,21,LBL,,STOLEN,10413,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-10423,9329,GO-20159001372,THEFT UNDER,2015-03-16T00:00:00,2015,March,Monday,16,75,22,2015-03-17T00:00:00,2015,March,Tuesday,17,76,18,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,GT,AGGRESSOR 3.0 2,MT,21,ONG,400.0,STOLEN,10414,"{'type': 'Point', 'coordinates': (-79.38820648, 43.66681234)}"
-10424,9343,GO-20159001472,THEFT UNDER,2015-03-20T00:00:00,2015,March,Friday,20,79,17,2015-03-23T00:00:00,2015,March,Monday,23,82,9,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,J13 ENDURA COMP,RG,20,BLK,1920.0,STOLEN,10415,"{'type': 'Point', 'coordinates': (-79.38687123, 43.6623556)}"
-10425,9354,GO-2015518798,THEFT UNDER,2015-03-21T00:00:00,2015,March,Saturday,21,80,18,2015-03-28T00:00:00,2015,March,Saturday,28,87,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,ALIEN,EL,1,PLE,600.0,STOLEN,10416,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10426,3429,GO-20189026600,THEFT UNDER - BICYCLE,2018-08-16T00:00:00,2018,August,Thursday,16,228,1,2018-08-16T00:00:00,2018,August,Thursday,16,228,9,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,MA,,RG,8,ONG,1000.0,STOLEN,10417,"{'type': 'Point', 'coordinates': (-79.38687123, 43.6623556)}"
-10427,1402,GO-20171648555,THEFT UNDER - BICYCLE,2017-09-10T00:00:00,2017,September,Sunday,10,253,15,2017-09-11T00:00:00,2017,September,Monday,11,254,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,MT,0,BLU,500.0,STOLEN,10418,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-10428,3440,GO-20189029646,POSSESSION PROPERTY OBC UNDER,2018-09-08T00:00:00,2018,September,Saturday,8,251,16,2018-09-08T00:00:00,2018,September,Saturday,8,251,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,OT,24,,1000.0,STOLEN,10419,"{'type': 'Point', 'coordinates': (-79.38552201, 43.64605338)}"
-10429,1416,GO-20179014824,THEFT UNDER - BICYCLE,2017-09-14T00:00:00,2017,September,Thursday,14,257,9,2017-09-15T00:00:00,2017,September,Friday,15,258,10,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,QUICK DISC 1 WO,RC,20,BLU,1300.0,STOLEN,10420,"{'type': 'Point', 'coordinates': (-79.38618236, 43.65775862)}"
-10430,3444,GO-20189029984,THEFT UNDER - BICYCLE,2018-09-08T00:00:00,2018,September,Saturday,8,251,20,2018-09-11T00:00:00,2018,September,Tuesday,11,254,18,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,ROAD,TO,18,GRY,300.0,STOLEN,10421,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-10431,1621,GO-20179016820,THEFT UNDER,2017-10-02T00:00:00,2017,October,Monday,2,275,14,2017-10-09T00:00:00,2017,October,Monday,9,282,23,D52,Toronto,76,Bay Street Corridor (76),Bar / Restaurant,Commercial,TR,TREK 16 7.2 FX,RG,21,BLK,800.0,STOLEN,10437,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-10432,1423,GO-20171686227,B&E,2017-09-02T00:00:00,2017,September,Saturday,2,245,15,2017-09-17T00:00:00,2017,September,Sunday,17,260,11,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,FELT,Z5,RC,22,GRY,2500.0,STOLEN,10422,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-10433,1426,GO-20171661886,THEFT UNDER - BICYCLE,2017-09-13T00:00:00,2017,September,Wednesday,13,256,12,2017-09-13T00:00:00,2017,September,Wednesday,13,256,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,,MT,21,BLKSIL,600.0,STOLEN,10423,"{'type': 'Point', 'coordinates': (-79.38625132, 43.6500866)}"
-10434,1457,GO-20179015223,THEFT UNDER - SHOPLIFTING,2016-12-26T00:00:00,2016,December,Monday,26,361,9,2017-01-12T00:00:00,2017,January,Thursday,12,12,13,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,BIXBY,RG,3,PNK,2500.0,STOLEN,10424,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-10435,1478,GO-20179015350,THEFT UNDER - BICYCLE,2017-09-19T00:00:00,2017,September,Tuesday,19,262,18,2017-09-21T00:00:00,2017,September,Thursday,21,264,11,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,,SKYLINE BIKE,FO,6,BLK,250.0,STOLEN,10425,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-10436,1479,GO-20179015348,THEFT UNDER - BICYCLE,2017-09-19T00:00:00,2017,September,Tuesday,19,262,9,2017-09-21T00:00:00,2017,September,Thursday,21,264,10,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BI,REAR WHEEL,OT,10,,250.0,STOLEN,10426,"{'type': 'Point', 'coordinates': (-79.38581622, 43.66799576)}"
-10437,1483,GO-20179015381,THEFT UNDER - BICYCLE,2017-09-19T00:00:00,2017,September,Tuesday,19,262,23,2017-09-21T00:00:00,2017,September,Thursday,21,264,15,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,GI,,RG,9,SIL,700.0,STOLEN,10427,"{'type': 'Point', 'coordinates': (-79.39219449, 43.66603246)}"
-10438,1485,GO-20179015441,THEFT UNDER - BICYCLE,2017-09-21T00:00:00,2017,September,Thursday,21,264,19,2017-09-22T00:00:00,2017,September,Friday,22,265,10,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,12,RED,0.0,STOLEN,10428,"{'type': 'Point', 'coordinates': (-79.38605934000002, 43.6615638)}"
-10439,1638,GO-20171841964,THEFT UNDER - BICYCLE,2017-09-08T00:00:00,2017,September,Friday,8,251,13,2017-10-11T00:00:00,2017,October,Wednesday,11,284,11,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,UNKNOWN MAKE,,MT,0,,90.0,STOLEN,10438,"{'type': 'Point', 'coordinates': (-79.38737611, 43.66847728)}"
-10440,1505,GO-20179015574,THEFT UNDER,2017-09-19T00:00:00,2017,September,Tuesday,19,262,10,2017-09-23T00:00:00,2017,September,Saturday,23,266,19,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,GI,,MT,20,WHI,500.0,STOLEN,10429,"{'type': 'Point', 'coordinates': (-79.38771667, 43.66119164)}"
-10441,1516,GO-20179015684,MISCHIEF UNDER,2017-09-22T00:00:00,2017,September,Friday,22,265,5,2017-09-25T00:00:00,2017,September,Monday,25,268,10,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,1,,0.0,STOLEN,10430,"{'type': 'Point', 'coordinates': (-79.39038732, 43.66791603)}"
-10442,1519,GO-20179015718,THEFT UNDER - BICYCLE,2017-09-23T00:00:00,2017,September,Saturday,23,266,13,2017-09-25T00:00:00,2017,September,Monday,25,268,13,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,NO,INDIE,RG,24,BLK,0.0,STOLEN,10431,"{'type': 'Point', 'coordinates': (-79.38491403, 43.66584039)}"
-10443,1533,GO-20179015884,THEFT UNDER - BICYCLE,2017-09-26T00:00:00,2017,September,Tuesday,26,269,17,2017-09-26T00:00:00,2017,September,Tuesday,26,269,20,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,NO,16XFH4,MT,27,SIL,750.0,STOLEN,10432,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-10444,1545,GO-20179015999,THEFT UNDER - BICYCLE,2017-09-27T00:00:00,2017,September,Wednesday,27,270,12,2017-09-28T00:00:00,2017,September,Thursday,28,271,10,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,7.2 FX,OT,24,BLK,700.0,STOLEN,10433,"{'type': 'Point', 'coordinates': (-79.39054537, 43.66944743)}"
-10445,1574,GO-20179016321,THEFT UNDER - BICYCLE,2017-10-02T00:00:00,2017,October,Monday,2,275,14,2017-10-02T00:00:00,2017,October,Monday,2,275,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,REVOLT 3,TO,24,DBL,1100.0,STOLEN,10434,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-10446,1595,GO-20179016557,THEFT UNDER - BICYCLE,2017-09-11T00:00:00,2017,September,Monday,11,254,22,2017-10-05T00:00:00,2017,October,Thursday,5,278,21,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,10,RED,200.0,STOLEN,10435,"{'type': 'Point', 'coordinates': (-79.38491403, 43.66584039)}"
-10447,1619,GO-20179016814,THEFT UNDER,2017-10-09T00:00:00,2017,October,Monday,9,282,18,2017-10-09T00:00:00,2017,October,Monday,9,282,20,D52,Toronto,76,Bay Street Corridor (76),Bar / Restaurant,Commercial,NO,CHARGER,MT,9,DGR,1200.0,STOLEN,10436,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-10448,1644,GO-20171826164,THEFT UNDER - BICYCLE,2017-10-06T00:00:00,2017,October,Friday,6,279,12,2017-10-08T00:00:00,2017,October,Sunday,8,281,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,RG,3,BLKSIL,200.0,STOLEN,10439,"{'type': 'Point', 'coordinates': (-79.38768427, 43.66564487000001)}"
-10449,1668,GO-20171878228,THEFT UNDER - BICYCLE,2017-09-13T00:00:00,2017,September,Wednesday,13,256,10,2017-10-17T00:00:00,2017,October,Tuesday,17,290,7,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,JAMIS,,MT,0,WHI,515.0,STOLEN,10440,"{'type': 'Point', 'coordinates': (-79.38820193, 43.66114001)}"
-10450,1674,GO-20179017412,THEFT UNDER - BICYCLE,2017-10-11T00:00:00,2017,October,Wednesday,11,284,22,2017-10-17T00:00:00,2017,October,Tuesday,17,290,13,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,GI,,RG,10,RED,2100.0,STOLEN,10441,"{'type': 'Point', 'coordinates': (-79.38739744, 43.65571903)}"
-10451,1696,GO-20179017644,THEFT UNDER - BICYCLE,2017-10-19T00:00:00,2017,October,Thursday,19,292,20,2017-10-19T00:00:00,2017,October,Thursday,19,292,21,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,CA,10,RG,18,CPR,733.0,STOLEN,10442,"{'type': 'Point', 'coordinates': (-79.38209114, 43.64961443)}"
-10452,1706,GO-20179017754,THEFT UNDER - BICYCLE,2017-10-21T00:00:00,2017,October,Saturday,21,294,20,2017-10-22T00:00:00,2017,October,Sunday,22,295,0,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,NO,VALENCE,OT,20,WHI,1000.0,STOLEN,10443,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-10453,1716,GO-20171916760,THEFT UNDER - BICYCLE,2017-10-19T00:00:00,2017,October,Thursday,19,292,8,2017-10-23T00:00:00,2017,October,Monday,23,296,6,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,TRANSEO 4.0,TO,6,BLUBLK,450.0,STOLEN,10444,"{'type': 'Point', 'coordinates': (-79.37878196, 43.64896093)}"
-10454,1719,GO-20171896137,THEFT OF EBIKE UNDER $5000,2017-10-19T00:00:00,2017,October,Thursday,19,292,18,2017-10-19T00:00:00,2017,October,Thursday,19,292,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,EL,1,WHI,1000.0,STOLEN,10445,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10455,1725,GO-20179017979,THEFT UNDER,2017-10-23T00:00:00,2017,October,Monday,23,296,14,2017-10-23T00:00:00,2017,October,Monday,23,296,18,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,MILANO,OT,24,BLK,1200.0,STOLEN,10446,"{'type': 'Point', 'coordinates': (-79.38581514, 43.66081576)}"
-10456,1732,GO-20179018054,THEFT UNDER,2017-10-23T00:00:00,2017,October,Monday,23,296,7,2017-10-24T00:00:00,2017,October,Tuesday,24,297,14,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,,MT,21,,400.0,STOLEN,10447,"{'type': 'Point', 'coordinates': (-79.38209114, 43.64961443)}"
-10457,1744,GO-20171937523,THEFT UNDER - BICYCLE,2017-09-20T00:00:00,2017,September,Wednesday,20,263,8,2017-10-26T00:00:00,2017,October,Thursday,26,299,9,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,RALEIGH,,MT,0,,600.0,STOLEN,10448,"{'type': 'Point', 'coordinates': (-79.38820648, 43.66681234)}"
-10458,1746,GO-20179018225,THEFT UNDER - BICYCLE,2017-10-25T00:00:00,2017,October,Wednesday,25,298,9,2017-10-26T00:00:00,2017,October,Thursday,26,299,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MILANO,RG,21,WHI,500.0,STOLEN,10449,"{'type': 'Point', 'coordinates': (-79.38353872, 43.64792395)}"
-10459,1762,GO-20179018441,THEFT UNDER - BICYCLE,2017-10-28T00:00:00,2017,October,Saturday,28,301,22,2017-10-29T00:00:00,2017,October,Sunday,29,302,10,D52,Toronto,76,Bay Street Corridor (76),Bar / Restaurant,Commercial,GI,,MT,27,GRY,800.0,STOLEN,10450,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-10460,1765,GO-20171947561,THEFT OF EBIKE UNDER $5000,2017-10-24T00:00:00,2017,October,Tuesday,24,297,12,2017-10-27T00:00:00,2017,October,Friday,27,300,18,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,E BIKE AMEGO,INFINICE,TA,0,,2400.0,STOLEN,10451,"{'type': 'Point', 'coordinates': (-79.38260155, 43.6529703)}"
-10461,1777,GO-20179018664,THEFT UNDER - BICYCLE,2017-10-30T00:00:00,2017,October,Monday,30,303,8,2017-11-01T00:00:00,2017,November,Wednesday,1,305,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,OT,21,,100.0,STOLEN,10452,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-10462,1781,GO-20179018720,THEFT UNDER - BICYCLE,2017-10-25T00:00:00,2017,October,Wednesday,25,298,9,2017-11-01T00:00:00,2017,November,Wednesday,1,305,21,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,,ROYAL,RG,40,WHI,220.0,STOLEN,10453,"{'type': 'Point', 'coordinates': (-79.38581514, 43.66081576)}"
-10463,1796,GO-20179018441,THEFT UNDER - BICYCLE,2017-10-28T00:00:00,2017,October,Saturday,28,301,22,2017-10-29T00:00:00,2017,October,Sunday,29,302,10,D52,Toronto,76,Bay Street Corridor (76),Bar / Restaurant,Commercial,GI,LIV,MT,27,DBL,800.0,STOLEN,10454,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-10464,1829,GO-20179019488,THEFT UNDER - BICYCLE,2017-11-10T00:00:00,2017,November,Friday,10,314,7,2017-11-13T00:00:00,2017,November,Monday,13,317,12,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,,MT,24,GRY,800.0,STOLEN,10455,"{'type': 'Point', 'coordinates': (-79.38827434000001, 43.65479006)}"
-10465,1836,GO-20179019548,THEFT UNDER,2017-11-09T00:00:00,2017,November,Thursday,9,313,18,2017-11-13T00:00:00,2017,November,Monday,13,317,18,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,CA,BAD BOY 4,RG,12,BLK,1400.0,STOLEN,10456,"{'type': 'Point', 'coordinates': (-79.38820648, 43.66681234)}"
-10466,1837,GO-20179019562,THEFT UNDER - BICYCLE,2017-11-08T00:00:00,2017,November,Wednesday,8,312,23,2017-11-13T00:00:00,2017,November,Monday,13,317,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,BIRDIE 3-SPEED,OT,3,RED,600.0,STOLEN,10457,"{'type': 'Point', 'coordinates': (-79.38103127, 43.65056603)}"
-10467,1872,GO-20179020368,THEFT UNDER - BICYCLE,2017-10-20T00:00:00,2017,October,Friday,20,293,0,2017-11-23T00:00:00,2017,November,Thursday,23,327,12,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,RG,15,BLK,700.0,STOLEN,10458,"{'type': 'Point', 'coordinates': (-79.38334664, 43.66205466)}"
-10468,1880,GO-20179020489,THEFT UNDER - BICYCLE,2017-11-23T00:00:00,2017,November,Thursday,23,327,11,2017-11-24T00:00:00,2017,November,Friday,24,328,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,BRC,MT,18,YEL,400.0,STOLEN,10459,"{'type': 'Point', 'coordinates': (-79.37903365, 43.65028111)}"
-10469,1892,GO-20179020755,THEFT UNDER - BICYCLE,2017-11-23T00:00:00,2017,November,Thursday,23,327,8,2017-11-28T00:00:00,2017,November,Tuesday,28,332,11,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,FAST TRACK 470,RG,14,BLU,500.0,STOLEN,10460,"{'type': 'Point', 'coordinates': (-79.38601979, 43.65524051)}"
-10470,1896,GO-20179020890,THEFT UNDER - BICYCLE,2017-11-28T00:00:00,2017,November,Tuesday,28,332,18,2017-11-30T00:00:00,2017,November,Thursday,30,334,0,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,DEWEY,RG,24,BLU,600.0,STOLEN,10461,"{'type': 'Point', 'coordinates': (-79.38411783, 43.66390399)}"
-10471,6433,GO-20209015867,THEFT UNDER,2020-06-22T00:00:00,2020,June,Monday,22,174,1,2020-06-22T00:00:00,2020,June,Monday,22,174,9,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,BI,,RC,6,BLK,800.0,STOLEN,18748,"{'type': 'Point', 'coordinates': (-79.42475884, 43.64301634)}"
-10472,1901,GO-20179021028,THEFT UNDER,2017-11-30T00:00:00,2017,November,Thursday,30,334,7,2017-12-01T00:00:00,2017,December,Friday,1,335,15,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,MIXED TAPE,RG,7,GRY,929.0,STOLEN,10462,"{'type': 'Point', 'coordinates': (-79.38581514, 43.66081576)}"
-10473,1907,GO-20173129215,THEFT UNDER - BICYCLE,2017-11-22T00:00:00,2017,November,Wednesday,22,326,18,2017-12-04T00:00:00,2017,December,Monday,4,338,14,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,LOUIS GARNEAU,DE LA LOIRE,MT,21,GRNGRY,200.0,STOLEN,10463,"{'type': 'Point', 'coordinates': (-79.38740686, 43.66497543)}"
-10474,1909,GO-20179017754,THEFT UNDER - BICYCLE,2017-10-21T00:00:00,2017,October,Saturday,21,294,20,2017-10-22T00:00:00,2017,October,Sunday,22,295,0,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,NO,VALENCE,RC,30,,1000.0,STOLEN,10464,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-10475,1914,GO-20179021354,THEFT UNDER - SHOPLIFTING,2017-11-28T00:00:00,2017,November,Tuesday,28,332,1,2017-12-05T00:00:00,2017,December,Tuesday,5,339,14,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,GF,,MT,15,BLK,5000.0,STOLEN,10465,"{'type': 'Point', 'coordinates': (-79.38702746, 43.66853925)}"
-10476,1923,GO-20179021544,THEFT UNDER - BICYCLE,2017-11-28T00:00:00,2017,November,Tuesday,28,332,8,2017-12-07T00:00:00,2017,December,Thursday,7,341,12,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CC,,RG,21,BLU,400.0,STOLEN,10466,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-10477,1934,GO-20173186891,THEFT UNDER - BICYCLE,2017-10-12T00:00:00,2017,October,Thursday,12,285,9,2017-12-13T00:00:00,2017,December,Wednesday,13,347,10,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,GIANT,TALON,MT,0,REDSIL,2000.0,STOLEN,10467,"{'type': 'Point', 'coordinates': (-79.38739744, 43.65571903)}"
-10478,1935,GO-20173186891,THEFT UNDER - BICYCLE,2017-10-12T00:00:00,2017,October,Thursday,12,285,9,2017-12-13T00:00:00,2017,December,Wednesday,13,347,10,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,SUPERCYCLE,,MT,0,REDSIL,250.0,STOLEN,10468,"{'type': 'Point', 'coordinates': (-79.38739744, 43.65571903)}"
-10479,21722,GO-20182304851,B&E,2018-12-16T00:00:00,2018,December,Sunday,16,350,4,2018-12-16T00:00:00,2018,December,Sunday,16,350,14,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,UK,SIRRUS HYBRID,OT,8,BLK,610.0,STOLEN,19767,"{'type': 'Point', 'coordinates': (-79.44487118, 43.64997504)}"
-10480,1948,GO-20179022653,THEFT UNDER,2017-12-19T00:00:00,2017,December,Tuesday,19,353,8,2017-12-20T00:00:00,2017,December,Wednesday,20,354,10,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,,RG,15,DBL,700.0,STOLEN,10469,"{'type': 'Point', 'coordinates': (-79.38209114, 43.64961443)}"
-10481,1955,GO-20179022722,THEFT UNDER,2017-12-20T00:00:00,2017,December,Wednesday,20,354,15,2017-12-21T00:00:00,2017,December,Thursday,21,355,10,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,NO,INDIE,RG,16,,900.0,STOLEN,10470,"{'type': 'Point', 'coordinates': (-79.38601979, 43.65524051)}"
-10482,1956,GO-20179022770,THEFT UNDER,2017-12-15T00:00:00,2017,December,Friday,15,349,15,2017-12-21T00:00:00,2017,December,Thursday,21,355,22,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,TR,,MT,9,BLK,800.0,STOLEN,10471,"{'type': 'Point', 'coordinates': (-79.38581514, 43.66081576)}"
-10483,2006,GO-2018179308,THEFT UNDER - BICYCLE,2017-11-22T00:00:00,2017,November,Wednesday,22,326,16,2018-01-29T00:00:00,2018,January,Monday,29,29,8,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,APOLLO,TRACE,RG,0,,595.0,STOLEN,10472,"{'type': 'Point', 'coordinates': (-79.38946225, 43.66523161)}"
-10484,2015,GO-2018202360,THEFT UNDER - BICYCLE,2017-12-13T00:00:00,2017,December,Wednesday,13,347,18,2018-02-01T00:00:00,2018,February,Thursday,1,32,15,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,CCM,CCM,OT,18,,400.0,STOLEN,10473,"{'type': 'Point', 'coordinates': (-79.39219449, 43.66603246)}"
-10485,2026,GO-20189004335,THEFT UNDER - BICYCLE,2018-02-09T00:00:00,2018,February,Friday,9,40,15,2018-02-12T00:00:00,2018,February,Monday,12,43,10,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,CC,MOUNTAIN BIKE,MT,21,GRY,700.0,STOLEN,10474,"{'type': 'Point', 'coordinates': (-79.3888294, 43.66819662)}"
-10486,2039,GO-20189005530,THEFT UNDER,2018-02-15T00:00:00,2018,February,Thursday,15,46,17,2018-02-21T00:00:00,2018,February,Wednesday,21,52,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,SUPERCYCLE,MT,18,GRY,100.0,STOLEN,10475,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-10487,2042,GO-20189005711,THEFT UNDER - BICYCLE,2018-02-22T00:00:00,2018,February,Thursday,22,53,9,2018-02-22T00:00:00,2018,February,Thursday,22,53,18,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,GI,ESCAPE 3,RG,21,GRY,480.0,STOLEN,10476,"{'type': 'Point', 'coordinates': (-79.38209114, 43.64961443)}"
-10488,2050,GO-20189006181,THEFT UNDER - BICYCLE,2018-02-26T00:00:00,2018,February,Monday,26,57,18,2018-02-27T00:00:00,2018,February,Tuesday,27,58,0,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,700C TEMPO,TO,21,SIL,250.0,STOLEN,10477,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10489,2059,GO-20189006450,THEFT UNDER - BICYCLE,2018-02-28T00:00:00,2018,February,Wednesday,28,59,8,2018-03-01T00:00:00,2018,March,Thursday,1,60,10,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ROUBAIX,RC,11,RED,1500.0,STOLEN,10478,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10490,2069,GO-2018433240,POSSESSION PROPERTY OBC UNDER,2018-03-09T00:00:00,2018,March,Friday,9,68,0,2018-03-09T00:00:00,2018,March,Friday,9,68,0,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,ORBEA,SNARA 15H,RC,21,BLKBLU,800.0,RECOVERED,10479,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10491,2107,GO-20189009503,THEFT UNDER - BICYCLE,2018-03-24T00:00:00,2018,March,Saturday,24,83,9,2018-03-26T00:00:00,2018,March,Monday,26,85,10,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,1,GRY,350.0,STOLEN,10480,"{'type': 'Point', 'coordinates': (-79.38658879, 43.65085253)}"
-10492,2116,GO-20189009818,THEFT UNDER - BICYCLE,2018-03-27T00:00:00,2018,March,Tuesday,27,86,7,2018-03-28T00:00:00,2018,March,Wednesday,28,87,12,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,STUMP JUMPER,MT,1,BLK,3954.0,STOLEN,10481,"{'type': 'Point', 'coordinates': (-79.38209114, 43.64961443)}"
-10493,2146,GO-20189011126,B&E,2018-04-04T00:00:00,2018,April,Wednesday,4,94,0,2018-04-10T00:00:00,2018,April,Tuesday,10,100,13,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,NO,VFR5,OT,24,BLK,750.0,STOLEN,10482,"{'type': 'Point', 'coordinates': (-79.38437564, 43.65730783)}"
-10494,2154,GO-20189011435,THEFT UNDER - BICYCLE,2018-04-12T00:00:00,2018,April,Thursday,12,102,17,2018-04-12T00:00:00,2018,April,Thursday,12,102,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CHINOOK,RG,24,CPR,800.0,STOLEN,10483,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10495,2155,GO-20189011485,THEFT UNDER - BICYCLE,2018-04-13T00:00:00,2018,April,Friday,13,103,8,2018-04-13T00:00:00,2018,April,Friday,13,103,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,PANAMAO X2,RG,24,BLK,1100.0,STOLEN,10484,"{'type': 'Point', 'coordinates': (-79.37894504, 43.65169174)}"
-10496,2160,GO-20189011691,THEFT UNDER - BICYCLE,2018-04-09T00:00:00,2018,April,Monday,9,99,17,2018-04-15T00:00:00,2018,April,Sunday,15,105,9,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,CTM MOUNTAIN BI,MT,21,GRY,400.0,STOLEN,10485,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10497,2162,GO-20189011691,THEFT UNDER - BICYCLE,2018-04-09T00:00:00,2018,April,Monday,9,99,17,2018-04-15T00:00:00,2018,April,Sunday,15,105,9,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,CTM MOUNTAIN BI,MT,21,GRY,400.0,STOLEN,10486,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10498,2190,GO-20189012511,THEFT UNDER - BICYCLE,2018-04-23T00:00:00,2018,April,Monday,23,113,9,2018-04-23T00:00:00,2018,April,Monday,23,113,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,VITA,RG,8,BLK,800.0,STOLEN,10487,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-10499,2195,GO-20189012686,THEFT UNDER - BICYCLE,2018-04-23T00:00:00,2018,April,Monday,23,113,13,2018-04-24T00:00:00,2018,April,Tuesday,24,114,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,DENALI GMC,RC,21,RED,300.0,STOLEN,10488,"{'type': 'Point', 'coordinates': (-79.38565688, 43.65832672)}"
-10500,2198,GO-2018737442,THEFT UNDER - BICYCLE,2018-04-23T00:00:00,2018,April,Monday,23,113,11,2018-04-25T00:00:00,2018,April,Wednesday,25,115,8,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,UNKNOWN MAKE,,MT,0,PLE,50.0,STOLEN,10489,"{'type': 'Point', 'coordinates': (-79.39219449, 43.66603246)}"
-10501,2206,GO-2018752616,THEFT UNDER - BICYCLE,2018-04-21T00:00:00,2018,April,Saturday,21,111,15,2018-04-27T00:00:00,2018,April,Friday,27,117,11,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,CCM,SLOPE,MT,0,,500.0,STOLEN,10490,"{'type': 'Point', 'coordinates': (-79.38702746, 43.66853925)}"
-10502,2212,GO-20189013129,THEFT UNDER,2018-04-27T00:00:00,2018,April,Friday,27,117,17,2018-04-27T00:00:00,2018,April,Friday,27,117,23,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SINGLE GEAR,RG,1,BLK,365.0,STOLEN,10491,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-10503,2226,GO-20189013316,THEFT UNDER - BICYCLE,2018-04-26T00:00:00,2018,April,Thursday,26,116,13,2018-04-30T00:00:00,2018,April,Monday,30,120,13,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RG,5,BLK,800.0,STOLEN,10492,"{'type': 'Point', 'coordinates': (-79.38236226, 43.65027737)}"
-10504,2230,GO-20189013397,THEFT UNDER - BICYCLE,2018-04-30T00:00:00,2018,April,Monday,30,120,18,2018-05-01T00:00:00,2018,May,Tuesday,1,121,0,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,RACER,OT,1,BLK,500.0,STOLEN,10493,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-10505,2233,GO-20189013502,THEFT UNDER - BICYCLE,2018-05-01T00:00:00,2018,May,Tuesday,1,121,9,2018-05-01T00:00:00,2018,May,Tuesday,1,121,22,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,IH,HYBRID BIKE,OT,18,BLK,274.0,STOLEN,10494,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-10506,2247,GO-20189013724,THEFT UNDER,2018-05-03T00:00:00,2018,May,Thursday,3,123,10,2018-05-03T00:00:00,2018,May,Thursday,3,123,18,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,FASTROAD,RG,12,BLK,1500.0,STOLEN,10495,"{'type': 'Point', 'coordinates': (-79.38514686, 43.64828129)}"
-10507,2249,GO-20189013727,THEFT UNDER - BICYCLE,2018-05-01T00:00:00,2018,May,Tuesday,1,121,7,2018-05-03T00:00:00,2018,May,Thursday,3,123,17,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,MT,18,WHI,40.0,STOLEN,10496,"{'type': 'Point', 'coordinates': (-79.38268555, 43.64598268)}"
-10508,2280,GO-20189014321,THEFT UNDER - BICYCLE,2018-05-07T00:00:00,2018,May,Monday,7,127,11,2018-05-09T00:00:00,2018,May,Wednesday,9,129,16,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,VR5,RC,11,BLU,4000.0,STOLEN,10497,"{'type': 'Point', 'coordinates': (-79.38601979, 43.65524051)}"
-10509,2292,GO-20189014542,THEFT UNDER - BICYCLE,2018-05-10T00:00:00,2018,May,Thursday,10,130,7,2018-05-11T00:00:00,2018,May,Friday,11,131,11,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,PERSUIT,RC,1,BLK,750.0,STOLEN,10498,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-10510,2301,GO-20189014791,THEFT UNDER,2017-10-01T00:00:00,2017,October,Sunday,1,274,21,2018-05-13T00:00:00,2018,May,Sunday,13,133,21,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,MOUNTAINEER,MT,18,BLU,300.0,STOLEN,10499,"{'type': 'Point', 'coordinates': (-79.3888294, 43.66819662)}"
-10511,4013,GO-20199002708,THEFT UNDER - BICYCLE,2019-01-14T00:00:00,2019,January,Monday,14,14,9,2019-01-20T00:00:00,2019,January,Sunday,20,20,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,RG,18,,100.0,STOLEN,10553,"{'type': 'Point', 'coordinates': (-79.38673938, 43.66335885)}"
-10512,2309,GO-20189014932,THEFT UNDER - BICYCLE,2018-05-14T00:00:00,2018,May,Monday,14,134,9,2018-05-14T00:00:00,2018,May,Monday,14,134,18,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RG,7,GRY,508.0,STOLEN,10500,"{'type': 'Point', 'coordinates': (-79.38514686, 43.64828129)}"
-10513,2320,GO-2018881731,THEFT UNDER - BICYCLE,2018-05-06T00:00:00,2018,May,Sunday,6,126,15,2018-05-16T00:00:00,2018,May,Wednesday,16,136,10,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,EL,0,,850.0,STOLEN,10501,"{'type': 'Point', 'coordinates': (-79.38437564, 43.65730783)}"
-10514,2339,GO-20189015307,THEFT UNDER - BICYCLE,2018-05-17T00:00:00,2018,May,Thursday,17,137,0,2018-05-17T00:00:00,2018,May,Thursday,17,137,15,D52,Toronto,76,Bay Street Corridor (76),Bar / Restaurant,Commercial,FJ,FEATHER,OT,1,RED,860.0,STOLEN,10502,"{'type': 'Point', 'coordinates': (-79.38353872, 43.64792395)}"
-10515,2342,GO-20189015346,THEFT UNDER - BICYCLE,2018-05-17T00:00:00,2018,May,Thursday,17,137,8,2018-05-17T00:00:00,2018,May,Thursday,17,137,18,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,HEART,RG,1,BLK,600.0,STOLEN,10503,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-10516,2346,GO-20189015479,THEFT UNDER - BICYCLE,2018-05-18T00:00:00,2018,May,Friday,18,138,9,2018-05-18T00:00:00,2018,May,Friday,18,138,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MIXED TAPE,RG,7,LGR,874.0,STOLEN,10504,"{'type': 'Point', 'coordinates': (-79.38103127, 43.65056603)}"
-10517,2351,GO-2018910229,THEFT UNDER - BICYCLE,2018-05-20T00:00:00,2018,May,Sunday,20,140,14,2018-05-20T00:00:00,2018,May,Sunday,20,140,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCOTT,ASPECT 750 XS,MT,26,GRNWHI,700.0,STOLEN,10505,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10518,2353,GO-2018911516,THEFT OF EBIKE UNDER $5000,2018-05-20T00:00:00,2018,May,Sunday,20,140,19,2018-05-20T00:00:00,2018,May,Sunday,20,140,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,ST1 S PLATINUM,EL,18,GRN,3300.0,STOLEN,10506,"{'type': 'Point', 'coordinates': (-79.38154682, 43.65790792)}"
-10519,2360,GO-20189015713,THEFT UNDER,2018-04-19T00:00:00,2018,April,Thursday,19,109,19,2018-05-21T00:00:00,2018,May,Monday,21,141,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,FIXIE VAGES,RG,1,WHI,360.0,STOLEN,10507,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10520,2375,GO-20189015888,THEFT UNDER - BICYCLE,2018-05-22T00:00:00,2018,May,Tuesday,22,142,23,2018-05-23T00:00:00,2018,May,Wednesday,23,143,1,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,OT,21,BLU,333.0,STOLEN,10508,"{'type': 'Point', 'coordinates': (-79.38411783, 43.66390399)}"
-10521,3474,GO-20189030516,THEFT UNDER - BICYCLE,2018-09-14T00:00:00,2018,September,Friday,14,257,9,2018-09-14T00:00:00,2018,September,Friday,14,257,21,D52,Toronto,76,Bay Street Corridor (76),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,FX STAGGER BIKE,RG,7,BLK,522.0,STOLEN,10509,"{'type': 'Point', 'coordinates': (-79.38238489, 43.65176074)}"
-10522,3476,GO-20189030525,THEFT UNDER - BICYCLE,2018-09-14T00:00:00,2018,September,Friday,14,257,16,2018-09-15T00:00:00,2018,September,Saturday,15,258,0,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,GI,FASTROAD COMAX,RC,11,BLK,2800.0,STOLEN,10510,"{'type': 'Point', 'coordinates': (-79.38581514, 43.66081576)}"
-10523,3486,GO-20189030646,THEFT UNDER - BICYCLE,2018-09-13T00:00:00,2018,September,Thursday,13,256,16,2018-09-16T00:00:00,2018,September,Sunday,16,259,10,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,8,WHI,500.0,STOLEN,10511,"{'type': 'Point', 'coordinates': (-79.3863755, 43.65817391)}"
-10524,3490,GO-20181698314,THEFT UNDER - BICYCLE,2018-09-13T00:00:00,2018,September,Thursday,13,256,15,2018-09-13T00:00:00,2018,September,Thursday,13,256,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,HUFFY,ROCK,MT,0,GRY,189.0,STOLEN,10512,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10525,3493,GO-20189030784,THEFT UNDER - BICYCLE,2018-09-15T00:00:00,2018,September,Saturday,15,258,19,2018-09-17T00:00:00,2018,September,Monday,17,260,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,UNO RISER,RG,2,BLK,0.0,STOLEN,10513,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-10526,3510,GO-20181735971,THEFT UNDER - BICYCLE,2018-09-14T00:00:00,2018,September,Friday,14,257,20,2018-09-15T00:00:00,2018,September,Saturday,15,258,15,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,OT,0,LBL,652.0,STOLEN,10514,"{'type': 'Point', 'coordinates': (-79.38820648, 43.66681234)}"
-10527,9790,GO-2015992209,THEFT UNDER,2015-06-13T00:00:00,2015,June,Saturday,13,164,8,2015-06-13T00:00:00,2015,June,Saturday,13,164,13,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,NORCO,VALENCE,MT,21,WHI,5500.0,STOLEN,21096,"{'type': 'Point', 'coordinates': (-79.38883215, 43.67530065)}"
-10528,3548,GO-20181748951,THEFT UNDER - BICYCLE,2018-09-18T00:00:00,2018,September,Tuesday,18,261,18,2018-09-19T00:00:00,2018,September,Wednesday,19,262,10,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,MT,0,ONG,1000.0,STOLEN,10515,"{'type': 'Point', 'coordinates': (-79.39348694, 43.66726478)}"
-10529,3557,GO-20189031897,THEFT UNDER - BICYCLE,2018-09-19T00:00:00,2018,September,Wednesday,19,262,17,2018-09-25T00:00:00,2018,September,Tuesday,25,268,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,MT,21,BLK,600.0,STOLEN,10516,"{'type': 'Point', 'coordinates': (-79.38581514, 43.66081576)}"
-10530,3561,GO-20189031951,THEFT UNDER - BICYCLE,2018-09-21T00:00:00,2018,September,Friday,21,264,10,2018-09-26T00:00:00,2018,September,Wednesday,26,269,10,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,CYPRESS,RG,21,BLK,250.0,STOLEN,10517,"{'type': 'Point', 'coordinates': (-79.38209114, 43.64961443)}"
-10531,3611,GO-20189032809,THEFT UNDER - BICYCLE,2018-10-03T00:00:00,2018,October,Wednesday,3,276,11,2018-10-03T00:00:00,2018,October,Wednesday,3,276,16,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,7.2FX,RG,24,BLK,800.0,STOLEN,10518,"{'type': 'Point', 'coordinates': (-79.37878196, 43.64896093)}"
-10532,3626,GO-20181844458,THEFT OF EBIKE UNDER $5000,2018-10-05T00:00:00,2018,October,Friday,5,278,20,2018-10-05T00:00:00,2018,October,Friday,5,278,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CLASSIC,CLASSIC,EL,1,BLU,1200.0,STOLEN,10519,"{'type': 'Point', 'coordinates': (-79.38658151, 43.64863773)}"
-10533,3627,GO-20189033123,THEFT UNDER - BICYCLE,2018-10-05T00:00:00,2018,October,Friday,5,278,23,2018-10-06T00:00:00,2018,October,Saturday,6,279,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,FX 7.3,RG,27,BLK,700.0,STOLEN,10520,"{'type': 'Point', 'coordinates': (-79.38847714, 43.66743649)}"
-10534,3632,GO-20189033150,THEFT OF EBIKE UNDER $5000,2018-10-06T00:00:00,2018,October,Saturday,6,279,19,2018-10-06T00:00:00,2018,October,Saturday,6,279,22,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,KAB 375,EL,8,BLK,2300.0,STOLEN,10521,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10535,3664,GO-20189033608,THEFT UNDER - BICYCLE,2018-10-10T00:00:00,2018,October,Wednesday,10,283,13,2018-10-11T00:00:00,2018,October,Thursday,11,284,9,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,PITCH,MT,24,GRY,700.0,STOLEN,10522,"{'type': 'Point', 'coordinates': (-79.37968936, 43.64733439)}"
-10536,3670,GO-20189033676,THEFT UNDER - BICYCLE,2018-10-11T00:00:00,2018,October,Thursday,11,284,12,2018-10-11T00:00:00,2018,October,Thursday,11,284,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,GTX 700C WOMEN,RG,21,BLK,350.0,STOLEN,10523,"{'type': 'Point', 'coordinates': (-79.38664264, 43.6606615)}"
-10537,3681,GO-20189033815,THEFT UNDER,2018-10-10T00:00:00,2018,October,Wednesday,10,283,18,2018-10-12T00:00:00,2018,October,Friday,12,285,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,10,RED,100.0,STOLEN,10524,"{'type': 'Point', 'coordinates': (-79.38167842, 43.65189355)}"
-10538,3691,GO-20189033929,THEFT UNDER - BICYCLE,2018-10-11T00:00:00,2018,October,Thursday,11,284,20,2018-10-13T00:00:00,2018,October,Saturday,13,286,11,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,,OT,1,BLU,300.0,STOLEN,10525,"{'type': 'Point', 'coordinates': (-79.38625132, 43.6500866)}"
-10539,3707,GO-20189034351,THEFT UNDER - BICYCLE,2018-10-16T00:00:00,2018,October,Tuesday,16,289,10,2018-10-16T00:00:00,2018,October,Tuesday,16,289,22,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RC,10,OTH,1000.0,STOLEN,10526,"{'type': 'Point', 'coordinates': (-79.37968936, 43.64733439)}"
-10540,3729,GO-20189034760,THEFT UNDER - BICYCLE,2018-10-19T00:00:00,2018,October,Friday,19,292,10,2018-10-19T00:00:00,2018,October,Friday,19,292,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,OT,30,,200.0,STOLEN,10527,"{'type': 'Point', 'coordinates': (-79.38236226, 43.65027737)}"
-10541,3740,GO-20189035043,THEFT UNDER - BICYCLE,2018-10-21T00:00:00,2018,October,Sunday,21,294,20,2018-10-22T00:00:00,2018,October,Monday,22,295,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,RG,18,BLK,0.0,STOLEN,10528,"{'type': 'Point', 'coordinates': (-79.38944954, 43.65752945)}"
-10542,3753,GO-20189034428,THEFT UNDER - BICYCLE,2018-10-16T00:00:00,2018,October,Tuesday,16,289,11,2018-10-17T00:00:00,2018,October,Wednesday,17,290,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EM,F7,EL,25,RED,2146.0,STOLEN,10529,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-10543,3777,GO-20189035994,THEFT UNDER - BICYCLE,2018-10-28T00:00:00,2018,October,Sunday,28,301,18,2018-10-29T00:00:00,2018,October,Monday,29,302,8,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,MT,40,RED,1000.0,STOLEN,10530,"{'type': 'Point', 'coordinates': (-79.38374902, 43.66302137000001)}"
-10544,3781,GO-20189036107,THEFT UNDER - BICYCLE,2018-10-29T00:00:00,2018,October,Monday,29,302,17,2018-10-29T00:00:00,2018,October,Monday,29,302,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,18,MRN,0.0,STOLEN,10531,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-10545,3786,GO-20189036145,THEFT UNDER - BICYCLE,2018-10-29T00:00:00,2018,October,Monday,29,302,17,2018-10-29T00:00:00,2018,October,Monday,29,302,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ST. TROPEZ,RG,24,BLU,650.0,STOLEN,10532,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10546,3810,GO-20189036763,THEFT UNDER - BICYCLE,2018-11-03T00:00:00,2018,November,Saturday,3,307,15,2018-11-04T00:00:00,2018,November,Sunday,4,308,1,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE,TO,21,,500.0,STOLEN,10533,"{'type': 'Point', 'coordinates': (-79.38618236, 43.65775862)}"
-10547,3827,GO-20182036448,THEFT UNDER - BICYCLE,2018-10-08T00:00:00,2018,October,Monday,8,281,9,2018-11-08T00:00:00,2018,November,Thursday,8,312,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,FRV3,RG,21,GRNGRY,640.0,STOLEN,10534,"{'type': 'Point', 'coordinates': (-79.37733067, 43.64784591)}"
-10548,3840,GO-20189037734,THEFT UNDER - BICYCLE,2018-11-10T00:00:00,2018,November,Saturday,10,314,19,2018-11-10T00:00:00,2018,November,Saturday,10,314,21,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,"FOLDING-500 ,19",FO,3,RED,0.0,STOLEN,10535,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10549,3843,GO-20182069016,THEFT OF EBIKE UNDER $5000,2018-11-05T00:00:00,2018,November,Monday,5,309,12,2018-11-09T00:00:00,2018,November,Friday,9,313,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,,EL,50,MRN,2500.0,STOLEN,10536,"{'type': 'Point', 'coordinates': (-79.3879785, 43.66997438)}"
-10550,4024,GO-2019143046,B&E,2019-01-23T00:00:00,2019,January,Wednesday,23,23,0,2019-01-23T00:00:00,2019,January,Wednesday,23,23,14,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,CA,CAADX 105 SE,OT,10,GRY,2100.0,STOLEN,10554,"{'type': 'Point', 'coordinates': (-79.38482092, 43.65454718)}"
-10551,3852,GO-20189038117,THEFT UNDER - BICYCLE,2018-11-12T00:00:00,2018,November,Monday,12,316,23,2018-11-14T00:00:00,2018,November,Wednesday,14,318,0,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,REVOLUTION 20I,RG,21,BLK,600.0,STOLEN,10537,"{'type': 'Point', 'coordinates': (-79.38209114, 43.64961443)}"
-10552,3855,GO-20189038281,THEFT FROM MOTOR VEHICLE UNDER,2018-11-14T00:00:00,2018,November,Wednesday,14,318,0,2018-11-14T00:00:00,2018,November,Wednesday,14,318,22,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,20,GRY,1200.0,STOLEN,10538,"{'type': 'Point', 'coordinates': (-79.38437564, 43.65730783)}"
-10553,3857,GO-20189038309,THEFT UNDER - BICYCLE,2018-11-14T00:00:00,2018,November,Wednesday,14,318,18,2018-11-15T00:00:00,2018,November,Thursday,15,319,10,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,17 CITY GLIDE,RG,7,TRQ,600.0,STOLEN,10539,"{'type': 'Point', 'coordinates': (-79.38243116, 43.64529171000001)}"
-10554,3859,GO-20189038400,THEFT UNDER - BICYCLE,2018-11-15T00:00:00,2018,November,Thursday,15,319,14,2018-11-15T00:00:00,2018,November,Thursday,15,319,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,FX1,OT,21,BLK,500.0,STOLEN,10540,"{'type': 'Point', 'coordinates': (-79.38492429, 43.65121654)}"
-10555,3860,GO-20189038390,THEFT UNDER - BICYCLE,2018-10-24T00:00:00,2018,October,Wednesday,24,297,19,2018-11-15T00:00:00,2018,November,Thursday,15,319,16,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,KO,,RG,10,,2000.0,STOLEN,10541,"{'type': 'Point', 'coordinates': (-79.38584448, 43.65698887)}"
-10556,3864,GO-20189038501,THEFT UNDER - BICYCLE,2018-11-16T00:00:00,2018,November,Friday,16,320,9,2018-11-16T00:00:00,2018,November,Friday,16,320,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,REVOLUTION,TO,21,YEL,120.0,STOLEN,10542,"{'type': 'Point', 'coordinates': (-79.38209114, 43.64961443)}"
-10557,3881,GO-20189038909,THEFT UNDER - BICYCLE,2018-11-19T00:00:00,2018,November,Monday,19,323,17,2018-11-19T00:00:00,2018,November,Monday,19,323,23,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,10,LBL,550.0,STOLEN,10543,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10558,3893,GO-20189039567,THEFT UNDER - BICYCLE,2018-11-23T00:00:00,2018,November,Friday,23,327,17,2018-11-23T00:00:00,2018,November,Friday,23,327,22,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,OT,21,BLK,520.0,STOLEN,10544,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10559,3904,GO-20189040056,THEFT UNDER - BICYCLE,2018-11-27T00:00:00,2018,November,Tuesday,27,331,16,2018-11-27T00:00:00,2018,November,Tuesday,27,331,23,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,FX 2 WSD,RG,18,BLK,400.0,STOLEN,10545,"{'type': 'Point', 'coordinates': (-79.38316368, 43.65431877)}"
-10560,3916,GO-20182220509,B&E,2018-11-29T00:00:00,2018,November,Thursday,29,333,22,2018-12-03T00:00:00,2018,December,Monday,3,337,21,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,CANNONDALE,27 GEAR,TO,27,BLK,1500.0,STOLEN,10546,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-10561,3930,GO-20182253628,THEFT UNDER - BICYCLE,2018-12-09T00:00:00,2018,December,Sunday,9,343,6,2018-12-09T00:00:00,2018,December,Sunday,9,343,6,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,MT,10,BLU,1000.0,STOLEN,10547,"{'type': 'Point', 'coordinates': (-79.38209114, 43.64961443)}"
-10562,3949,GO-20189042751,THEFT UNDER - BICYCLE,2018-12-19T00:00:00,2018,December,Wednesday,19,353,19,2018-12-19T00:00:00,2018,December,Wednesday,19,353,22,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,,RG,18,BLU,350.0,STOLEN,10548,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10563,3978,GO-20197162,THEFT OF EBIKE UNDER $5000,2018-12-27T00:00:00,2018,December,Thursday,27,361,18,2019-01-02T00:00:00,2019,January,Wednesday,2,2,10,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,POPULO,SPORT V,EL,0,BLK,1433.0,STOLEN,10549,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-10564,3983,GO-201932587,THEFT UNDER - BICYCLE,2019-01-06T00:00:00,2019,January,Sunday,6,6,11,2019-01-06T00:00:00,2019,January,Sunday,6,6,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SHIMANO,OPUS,OT,10,BLK,2000.0,STOLEN,10550,"{'type': 'Point', 'coordinates': (-79.38518506, 43.65542635)}"
-10565,3990,GO-20199000913,THEFT UNDER - BICYCLE,2019-01-08T00:00:00,2019,January,Tuesday,8,8,12,2019-01-08T00:00:00,2019,January,Tuesday,8,8,15,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,BI,PISTA SEI GIORN,OT,1,BLK,1200.0,STOLEN,10551,"{'type': 'Point', 'coordinates': (-79.38209114, 43.64961443)}"
-10566,3992,GO-20199000918,THEFT UNDER - BICYCLE,2019-01-08T00:00:00,2019,January,Tuesday,8,8,12,2019-01-08T00:00:00,2019,January,Tuesday,8,8,16,D52,Toronto,76,Bay Street Corridor (76),Bar / Restaurant,Commercial,RA,,MT,1,DBL,200.0,STOLEN,10552,"{'type': 'Point', 'coordinates': (-79.38565257, 43.66756225)}"
-10567,4040,GO-20199004794,THEFT UNDER - BICYCLE,2019-02-07T00:00:00,2019,February,Thursday,7,38,8,2019-02-08T00:00:00,2019,February,Friday,8,39,8,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,NO,,RG,9,BLK,75.0,STOLEN,10555,"{'type': 'Point', 'coordinates': (-79.38771667, 43.66119164)}"
-10568,4099,GO-20199008880,THEFT UNDER - BICYCLE,2019-03-19T00:00:00,2019,March,Tuesday,19,78,9,2019-03-19T00:00:00,2019,March,Tuesday,19,78,17,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,,RG,22,BLU,500.0,STOLEN,10556,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-10569,4133,GO-2019609659,THEFT UNDER - BICYCLE,2019-04-04T00:00:00,2019,April,Thursday,4,94,20,2019-04-06T00:00:00,2019,April,Saturday,6,96,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FELT,F75X,OT,18,WHI,2000.0,STOLEN,10557,"{'type': 'Point', 'coordinates': (-79.38243116, 43.64529171000001)}"
-10570,4157,GO-20199011618,THEFT UNDER - BICYCLE,2019-03-24T00:00:00,2019,March,Sunday,24,83,18,2019-04-12T00:00:00,2019,April,Friday,12,102,14,D52,Toronto,76,Bay Street Corridor (76),Go Bus,Transit,SU,2019,BM,20,GRY,170.0,STOLEN,10558,"{'type': 'Point', 'coordinates': (-79.38077050000001, 43.64989242)}"
-10571,4161,GO-20199011722,THEFT UNDER - BICYCLE,2019-04-12T00:00:00,2019,April,Friday,12,102,20,2019-04-13T00:00:00,2019,April,Saturday,13,103,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,HEART 2016,RC,1,BLK,625.0,STOLEN,10559,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10572,4174,GO-20199012175,THEFT UNDER,2019-04-16T00:00:00,2019,April,Tuesday,16,106,9,2019-04-17T00:00:00,2019,April,Wednesday,17,107,8,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,DCO,MT,30,BLK,800.0,STOLEN,10560,"{'type': 'Point', 'coordinates': (-79.37903365, 43.65028111)}"
-10573,4182,GO-20199012408,THEFT UNDER,2019-04-18T00:00:00,2019,April,Thursday,18,108,19,2019-04-18T00:00:00,2019,April,Thursday,18,108,22,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,CCM ALPHA,MT,15,BLK,650.0,STOLEN,10561,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10574,4195,GO-20199012888,THEFT UNDER,2019-04-24T00:00:00,2019,April,Wednesday,24,114,8,2019-04-24T00:00:00,2019,April,Wednesday,24,114,13,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,18 ROAM 2 DISC,MT,24,GRY,1000.0,STOLEN,10562,"{'type': 'Point', 'coordinates': (-79.37760867, 43.64852311)}"
-10575,4196,GO-20199012900,THEFT UNDER,2019-04-24T00:00:00,2019,April,Wednesday,24,114,9,2019-04-24T00:00:00,2019,April,Wednesday,24,114,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,NITROXT,MT,21,BLK,140.0,STOLEN,10563,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-10576,4205,GO-20199013185,THEFT UNDER,2019-04-22T00:00:00,2019,April,Monday,22,112,16,2019-04-26T00:00:00,2019,April,Friday,26,116,16,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,FJ,PALETTE,RG,12,BLK,500.0,STOLEN,10564,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-10577,4223,GO-20199013651,THEFT UNDER,2019-04-29T00:00:00,2019,April,Monday,29,119,17,2019-05-01T00:00:00,2019,May,Wednesday,1,121,19,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,XCW,MT,21,BLU,400.0,STOLEN,10565,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-10578,4226,GO-20199013727,THEFT UNDER,2019-04-30T00:00:00,2019,April,Tuesday,30,120,15,2019-05-02T00:00:00,2019,May,Thursday,2,122,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,RC,21,RED,450.0,STOLEN,10566,"{'type': 'Point', 'coordinates': (-79.37894504, 43.65169174)}"
-10579,4233,GO-20199013975,THEFT UNDER,2019-04-26T00:00:00,2019,April,Friday,26,116,20,2019-05-05T00:00:00,2019,May,Sunday,5,125,13,D52,Toronto,76,Bay Street Corridor (76),Bar / Restaurant,Commercial,SU,VICE,MT,18,LBL,170.0,STOLEN,10567,"{'type': 'Point', 'coordinates': (-79.38188491, 43.65866815)}"
-10580,4240,GO-20199014116,THEFT UNDER,2019-05-06T00:00:00,2019,May,Monday,6,126,13,2019-05-06T00:00:00,2019,May,Monday,6,126,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,INFERNO,RG,21,PLE,0.0,STOLEN,10568,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-10581,4242,GO-2019821984,THEFT UNDER - BICYCLE,2019-05-06T00:00:00,2019,May,Monday,6,126,15,2019-05-06T00:00:00,2019,May,Monday,6,126,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,PITCH,MT,21,ONG,875.0,STOLEN,10569,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-10582,4270,GO-20199014807,THEFT UNDER,2019-05-10T00:00:00,2019,May,Friday,10,130,19,2019-05-13T00:00:00,2019,May,Monday,13,133,9,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,LUNDI 26,OT,9,,4125.0,STOLEN,10570,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-10583,4274,GO-20199014961,THEFT UNDER,2019-05-13T00:00:00,2019,May,Monday,13,133,9,2019-05-14T00:00:00,2019,May,Tuesday,14,134,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SHAFTDRIVE/CHAI,RG,7,SIL,2000.0,STOLEN,10571,"{'type': 'Point', 'coordinates': (-79.38103127, 43.65056603)}"
-10584,4279,GO-20199015114,THEFT UNDER,2019-05-10T00:00:00,2019,May,Friday,10,130,18,2019-05-15T00:00:00,2019,May,Wednesday,15,135,12,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KO,DEW 56 2013,RG,24,BLK,500.0,STOLEN,10572,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-10585,4297,GO-2019902786,THEFT OF EBIKE UNDER $5000,2019-05-16T00:00:00,2019,May,Thursday,16,136,21,2019-05-17T00:00:00,2019,May,Friday,17,137,22,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,EMMO,URBAN,EL,1,BLK,,STOLEN,10573,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-10586,4324,GO-20199015959,THEFT UNDER,2019-05-21T00:00:00,2019,May,Tuesday,21,141,13,2019-05-22T00:00:00,2019,May,Wednesday,22,142,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,11,BLK,2175.0,STOLEN,10574,"{'type': 'Point', 'coordinates': (-79.38467283, 43.65807476)}"
-10587,4341,GO-20199016218,THEFT UNDER,2019-05-23T00:00:00,2019,May,Thursday,23,143,15,2019-05-24T00:00:00,2019,May,Friday,24,144,22,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,CC,700C,RC,14,RED,600.0,STOLEN,10575,"{'type': 'Point', 'coordinates': (-79.38334664, 43.66205466)}"
-10588,4350,GO-20199016374,THEFT UNDER,2019-05-23T00:00:00,2019,May,Thursday,23,143,15,2019-05-26T00:00:00,2019,May,Sunday,26,146,19,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,GI,NORTHROCK 29IN.,MT,10,BLK,486.0,STOLEN,10576,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-10589,4370,GO-20199016745,THEFT UNDER,2019-05-28T00:00:00,2019,May,Tuesday,28,148,14,2019-05-29T00:00:00,2019,May,Wednesday,29,149,11,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,,MT,1,GRY,500.0,STOLEN,10577,"{'type': 'Point', 'coordinates': (-79.38124592, 43.65320661)}"
-10590,4373,GO-20199016852,THEFT UNDER,2019-05-29T00:00:00,2019,May,Wednesday,29,149,20,2019-05-30T00:00:00,2019,May,Thursday,30,150,6,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RM,WHISTLER 50,RG,27,WHI,600.0,STOLEN,10578,"{'type': 'Point', 'coordinates': (-79.38530036, 43.66669498)}"
-10591,4396,GO-20199017124,THEFT UNDER - BICYCLE,2019-05-30T00:00:00,2019,May,Thursday,30,150,9,2019-06-01T00:00:00,2019,June,Saturday,1,152,16,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,GI,ESCAPE 3 MATTE,RG,15,BLK,600.0,STOLEN,10579,"{'type': 'Point', 'coordinates': (-79.38129397, 43.65116987)}"
-10592,4397,GO-20191009240,THEFT UNDER,2019-06-01T00:00:00,2019,June,Saturday,1,152,23,2019-06-01T00:00:00,2019,June,Saturday,1,152,23,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,NITRO XT,MT,7,GRYONG,180.0,STOLEN,10580,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-10593,4403,GO-20191000423,THEFT UNDER,2019-05-31T00:00:00,2019,May,Friday,31,151,9,2019-06-03T00:00:00,2019,June,Monday,3,154,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,UNKNOWN,OT,15,BLK,30.0,STOLEN,10581,"{'type': 'Point', 'coordinates': (-79.38077050000001, 43.64989242)}"
-10594,4408,GO-20191025390,THEFT OF EBIKE UNDER $5000,2019-06-03T00:00:00,2019,June,Monday,3,154,11,2019-06-04T00:00:00,2019,June,Tuesday,4,155,9,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,,EL,7,BLU,2500.0,STOLEN,10582,"{'type': 'Point', 'coordinates': (-79.39045505, 43.65985872)}"
-10595,4476,GO-20199018510,THEFT UNDER,2018-11-01T00:00:00,2018,November,Thursday,1,305,0,2019-06-13T00:00:00,2019,June,Thursday,13,164,16,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,KO,JAKE 56,RC,30,GRY,1200.0,STOLEN,10583,"{'type': 'Point', 'coordinates': (-79.38482092, 43.65454718)}"
-10596,4489,GO-20199018604,THEFT UNDER,2019-06-13T00:00:00,2019,June,Thursday,13,164,21,2019-06-14T00:00:00,2019,June,Friday,14,165,15,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,UNO RISER,RG,1,BLK,700.0,STOLEN,10584,"{'type': 'Point', 'coordinates': (-79.3802391, 43.64865033)}"
-10597,4494,GO-20199018691,THEFT UNDER,2019-06-12T00:00:00,2019,June,Wednesday,12,163,8,2019-06-15T00:00:00,2019,June,Saturday,15,166,10,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,CHINOCK,RG,24,BLK,650.0,STOLEN,10585,"{'type': 'Point', 'coordinates': (-79.38892782, 43.65634783)}"
-10598,10935,GO-20169000704,THEFT UNDER,2016-01-20T00:00:00,2016,January,Wednesday,20,20,14,2016-01-20T00:00:00,2016,January,Wednesday,20,20,19,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,GF,,MT,21,BLK,0.0,STOLEN,10610,"{'type': 'Point', 'coordinates': (-79.39219449, 43.66603246)}"
-10599,4526,GO-20199019053,THEFT UNDER,2019-06-17T00:00:00,2019,June,Monday,17,168,13,2019-06-18T00:00:00,2019,June,Tuesday,18,169,8,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,FRANCHE COMTE,TO,21,YEL,850.0,STOLEN,10586,"{'type': 'Point', 'coordinates': (-79.38658879, 43.65085253)}"
-10600,4537,GO-20199019167,THEFT UNDER,2019-06-18T00:00:00,2019,June,Tuesday,18,169,19,2019-06-18T00:00:00,2019,June,Tuesday,18,169,22,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,ESCAPE,RG,8,BLK,500.0,STOLEN,10587,"{'type': 'Point', 'coordinates': (-79.38411783, 43.66390399)}"
-10601,4553,GO-20191137138,THEFT UNDER,2019-06-19T00:00:00,2019,June,Wednesday,19,170,15,2019-06-19T00:00:00,2019,June,Wednesday,19,170,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,COLUMBIA,,MT,6,BLU,,STOLEN,10588,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10602,4555,GO-20199019391,THEFT UNDER,2019-06-20T00:00:00,2019,June,Thursday,20,171,13,2019-06-20T00:00:00,2019,June,Thursday,20,171,13,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,,RG,15,BLU,300.0,STOLEN,10589,"{'type': 'Point', 'coordinates': (-79.37878196, 43.64896093)}"
-10603,4573,GO-20199019560,THEFT UNDER,2019-06-20T00:00:00,2019,June,Thursday,20,171,8,2019-06-21T00:00:00,2019,June,Friday,21,172,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,STEP-THROUGH 3I,RG,3,YEL,900.0,STOLEN,10590,"{'type': 'Point', 'coordinates': (-79.38407058, 43.649187680000004)}"
-10604,4593,GO-20199019953,THEFT UNDER,2019-06-21T00:00:00,2019,June,Friday,21,172,15,2019-06-24T00:00:00,2019,June,Monday,24,175,18,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,FJ,DECLARATION,OT,1,BLK,565.0,STOLEN,10591,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-10605,4607,GO-20191169666,THEFT UNDER - BICYCLE,2019-06-21T00:00:00,2019,June,Friday,21,172,14,2019-06-24T00:00:00,2019,June,Monday,24,175,7,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,LIV,OT,19,GRY,676.0,STOLEN,10592,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-10606,4617,GO-20191171013,THEFT UNDER - BICYCLE,2019-06-21T00:00:00,2019,June,Friday,21,172,21,2019-06-27T00:00:00,2019,June,Thursday,27,178,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,SAVAGE,MT,20,BLKPNK,170.0,STOLEN,10593,"{'type': 'Point', 'coordinates': (-79.38714344, 43.66436762)}"
-10607,4649,GO-20199020675,THEFT UNDER,2019-07-01T00:00:00,2019,July,Monday,1,182,9,2019-07-01T00:00:00,2019,July,Monday,1,182,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,PRO STREET,BM,1,SIL,0.0,STOLEN,10594,"{'type': 'Point', 'coordinates': (-79.38077050000001, 43.64989242)}"
-10608,4654,GO-20199020779,THEFT UNDER,2019-07-02T00:00:00,2019,July,Tuesday,2,183,13,2019-07-02T00:00:00,2019,July,Tuesday,2,183,19,D52,Toronto,76,Bay Street Corridor (76),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,,MT,21,GRN,1000.0,STOLEN,10595,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-10609,4656,GO-20199020819,THEFT UNDER,2019-07-02T00:00:00,2019,July,Tuesday,2,183,9,2019-07-03T00:00:00,2019,July,Wednesday,3,184,10,D52,Toronto,76,Bay Street Corridor (76),Unknown,Other,UK,,OT,1,BLK,0.0,STOLEN,10596,"{'type': 'Point', 'coordinates': (-79.38601979, 43.65524051)}"
-10610,4658,GO-20191236169,THEFT OF EBIKE OVER $5000,2019-07-03T00:00:00,2019,July,Wednesday,3,184,12,2019-07-03T00:00:00,2019,July,Wednesday,3,184,12,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OTHER,,EL,0,,2300.0,STOLEN,10597,"{'type': 'Point', 'coordinates': (-79.38601979, 43.65524051)}"
-10611,4668,GO-20199020938,THEFT UNDER,2019-07-03T00:00:00,2019,July,Wednesday,3,184,18,2019-07-04T00:00:00,2019,July,Thursday,4,185,10,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RC,10,WHI,160.0,STOLEN,10598,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10612,10794,GO-20159009937,THEFT UNDER,2015-11-19T00:00:00,2015,November,Thursday,19,323,19,2015-11-20T00:00:00,2015,November,Friday,20,324,8,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,GAZZETTA,OT,1,BLU,1200.0,STOLEN,10599,"{'type': 'Point', 'coordinates': (-79.3861386, 43.66649311)}"
-10613,2395,GO-20189016249,THEFT UNDER - BICYCLE,2018-05-25T00:00:00,2018,May,Friday,25,145,14,2018-05-25T00:00:00,2018,May,Friday,25,145,16,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RC,1,BLK,800.0,STOLEN,10600,"{'type': 'Point', 'coordinates': (-79.37968936, 43.64733439)}"
-10614,2399,GO-20189016360,THEFT UNDER - BICYCLE,2018-05-26T00:00:00,2018,May,Saturday,26,146,15,2018-05-26T00:00:00,2018,May,Saturday,26,146,22,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,CA,QUICK SL 3,MT,39,ONG,800.0,STOLEN,10601,"{'type': 'Point', 'coordinates': (-79.38260155, 43.6529703)}"
-10615,10801,GO-20159010041,THEFT UNDER,2015-11-22T00:00:00,2015,November,Sunday,22,326,22,2015-11-22T00:00:00,2015,November,Sunday,22,326,23,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,SYNAPS,OT,16,BLK,1070.0,STOLEN,10602,"{'type': 'Point', 'coordinates': (-79.38625132, 43.6500866)}"
-10616,2446,GO-20189017240,THEFT UNDER,2018-06-03T00:00:00,2018,June,Sunday,3,154,16,2018-06-03T00:00:00,2018,June,Sunday,3,154,22,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,HYBRID BICYCLE,OT,21,BLU,250.0,STOLEN,10603,"{'type': 'Point', 'coordinates': (-79.38601979, 43.65524051)}"
-10617,10804,GO-20159010062,THEFT UNDER,2015-11-22T00:00:00,2015,November,Sunday,22,326,15,2015-11-22T00:00:00,2015,November,Sunday,22,326,21,D52,Toronto,76,Bay Street Corridor (76),"Religious Facilities (Synagogue, Church, Convent, Mosque)",Other,EM,GT80,SC,55,BLU,1400.0,STOLEN,10604,"{'type': 'Point', 'coordinates': (-79.38601979, 43.65524051)}"
-10618,2465,GO-20189017435,THEFT UNDER - BICYCLE,2018-06-03T00:00:00,2018,June,Sunday,3,154,16,2018-06-05T00:00:00,2018,June,Tuesday,5,156,10,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,DEW PLUS,RG,24,BLU,899.0,STOLEN,10605,"{'type': 'Point', 'coordinates': (-79.37968936, 43.64733439)}"
-10619,10847,GO-20159010671,THEFT UNDER,2015-08-28T00:00:00,2015,August,Friday,28,240,8,2015-08-29T00:00:00,2015,August,Saturday,29,241,8,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,S2,RC,20,RED,5000.0,STOLEN,10606,"{'type': 'Point', 'coordinates': (-79.38944954, 43.65752945)}"
-10620,10895,GO-20152226312,THEFT UNDER,2015-12-08T00:00:00,2015,December,Tuesday,8,342,10,2015-12-30T00:00:00,2015,December,Wednesday,30,364,8,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,RAVEN,,EL,0,WHI,1200.0,STOLEN,10607,"{'type': 'Point', 'coordinates': (-79.39219449, 43.66603246)}"
-10621,10900,GO-20152225292,THEFT UNDER,2015-12-24T00:00:00,2015,December,Thursday,24,358,10,2015-12-29T00:00:00,2015,December,Tuesday,29,363,8,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,EVERYDAY,,RG,10,BLU,179.0,STOLEN,10608,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-10622,10910,GO-20169000202,THEFT UNDER,2016-01-05T00:00:00,2016,January,Tuesday,5,5,9,2016-01-06T00:00:00,2016,January,Wednesday,6,6,23,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,1,BLK,100.0,STOLEN,10609,"{'type': 'Point', 'coordinates': (-79.38596803, 43.65904449)}"
-10623,10939,GO-2016124663,THEFT UNDER,2016-01-20T00:00:00,2016,January,Wednesday,20,20,18,2016-01-21T00:00:00,2016,January,Thursday,21,21,17,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,GARY FISHER,,RG,21,BLKWHI,1000.0,STOLEN,10611,"{'type': 'Point', 'coordinates': (-79.39219449, 43.66603246)}"
-10624,10943,GO-20169000757,THEFT UNDER,2016-01-22T00:00:00,2016,January,Friday,22,22,18,2016-01-22T00:00:00,2016,January,Friday,22,22,23,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KO,DEW,RG,8,BLK,489.0,STOLEN,10612,"{'type': 'Point', 'coordinates': (-79.3879785, 43.66997438)}"
-10625,10960,GO-20169000998,B&E,2016-01-30T00:00:00,2016,January,Saturday,30,30,5,2016-01-31T00:00:00,2016,January,Sunday,31,31,22,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,BLK,,STOLEN,10613,"{'type': 'Point', 'coordinates': (-79.38714344, 43.66436762)}"
-10626,10964,GO-20169000998,B&E,2016-01-30T00:00:00,2016,January,Saturday,30,30,5,2016-01-31T00:00:00,2016,January,Sunday,31,31,22,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,WHI,250.0,STOLEN,10614,"{'type': 'Point', 'coordinates': (-79.38714344, 43.66436762)}"
-10627,10981,GO-201639998,B&E,2016-01-01T00:00:00,2016,January,Friday,1,1,3,2016-01-08T00:00:00,2016,January,Friday,8,8,15,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,BLACK MARKET,MT,21,GRN,1500.0,STOLEN,10615,"{'type': 'Point', 'coordinates': (-79.38737611, 43.66847728)}"
-10628,10982,GO-201639998,B&E,2016-01-01T00:00:00,2016,January,Friday,1,1,3,2016-01-08T00:00:00,2016,January,Friday,8,8,15,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,HARO,SX,MT,21,GRY,1000.0,STOLEN,10616,"{'type': 'Point', 'coordinates': (-79.38737611, 43.66847728)}"
-10629,10983,GO-201639998,B&E,2016-01-01T00:00:00,2016,January,Friday,1,1,3,2016-01-08T00:00:00,2016,January,Friday,8,8,15,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NORCO,6 SE,MT,21,OTH,5800.0,STOLEN,10617,"{'type': 'Point', 'coordinates': (-79.38737611, 43.66847728)}"
-10630,11013,GO-20169001754,THEFT UNDER,2016-02-24T00:00:00,2016,February,Wednesday,24,55,18,2016-02-25T00:00:00,2016,February,Thursday,25,56,17,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,30,CPR,1000.0,STOLEN,10618,"{'type': 'Point', 'coordinates': (-79.38605934000002, 43.6615638)}"
-10631,11025,GO-2016409034,THEFT UNDER,2016-03-08T00:00:00,2016,March,Tuesday,8,68,18,2016-03-08T00:00:00,2016,March,Tuesday,8,68,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,EL,32,BLUWHI,1400.0,STOLEN,10619,"{'type': 'Point', 'coordinates': (-79.38738577, 43.66051487)}"
-10632,11027,GO-2016407864,THEFT UNDER,2016-03-08T00:00:00,2016,March,Tuesday,8,68,8,2016-03-08T00:00:00,2016,March,Tuesday,8,68,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,DAILY TWO BIKE,OT,1,SIL,700.0,STOLEN,10620,"{'type': 'Point', 'coordinates': (-79.38298971, 43.64660463)}"
-10633,11031,GO-2016412242,THEFT UNDER - BICYCLE,2016-03-09T00:00:00,2016,March,Wednesday,9,69,10,2016-03-09T00:00:00,2016,March,Wednesday,9,69,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,PRESTIGE,EL,1,BLU,3400.0,STOLEN,10621,"{'type': 'Point', 'coordinates': (-79.3861386, 43.66649311)}"
-10634,4669,GO-20199020982,THEFT UNDER,2019-07-04T00:00:00,2019,July,Thursday,4,185,12,2019-07-04T00:00:00,2019,July,Thursday,4,185,15,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,,OT,24,SIL,550.0,STOLEN,10622,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-10635,40,GO-201721988,THEFT OF EBIKE UNDER $5000,2017-01-04T00:00:00,2017,January,Wednesday,4,4,17,2017-01-04T00:00:00,2017,January,Wednesday,4,4,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,FREEDOM,EL,20,RED,1700.0,STOLEN,10623,"{'type': 'Point', 'coordinates': (-79.38262593, 43.65086783)}"
-10636,11037,GO-20169002214,THEFT UNDER,2016-03-08T00:00:00,2016,March,Tuesday,8,68,9,2016-03-11T00:00:00,2016,March,Friday,11,71,9,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,CA,R800,RC,1,BLU,300.0,STOLEN,10624,"{'type': 'Point', 'coordinates': (-79.38820648, 43.66681234)}"
-10637,11059,GO-20169002486,THEFT UNDER,2016-03-18T00:00:00,2016,March,Friday,18,78,16,2016-03-18T00:00:00,2016,March,Friday,18,78,23,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SIRRUS,RG,8,GRY,750.0,STOLEN,10625,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10638,11081,GO-2016534968,THEFT UNDER - BICYCLE,2016-03-22T00:00:00,2016,March,Tuesday,22,82,22,2016-03-29T00:00:00,2016,March,Tuesday,29,89,20,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,CANNONDALE,SUPER 6,RC,16,WHI,3000.0,STOLEN,10626,"{'type': 'Point', 'coordinates': (-79.38482092, 43.65454718)}"
-10639,11100,GO-2016578494,THEFT OVER,2016-03-27T00:00:00,2016,March,Sunday,27,87,18,2016-04-05T00:00:00,2016,April,Tuesday,5,96,16,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,SCOTT,,OT,0,GRN,6000.0,STOLEN,10627,"{'type': 'Point', 'coordinates': (-79.38820648, 43.66681234)}"
-10640,11128,GO-20169003295,THEFT UNDER - BICYCLE,2016-04-10T00:00:00,2016,April,Sunday,10,101,22,2016-04-11T00:00:00,2016,April,Monday,11,102,20,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM,TO,27,WHI,1100.0,STOLEN,10628,"{'type': 'Point', 'coordinates': (-79.38491403, 43.66584039)}"
-10641,11139,GO-20169003448,THEFT UNDER - BICYCLE,2016-04-15T00:00:00,2016,April,Friday,15,106,8,2016-04-15T00:00:00,2016,April,Friday,15,106,19,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,GI,SEDONA,RG,21,BLK,800.0,STOLEN,10629,"{'type': 'Point', 'coordinates': (-79.37878196, 43.64896093)}"
-10642,11177,GO-20169003684,THEFT UNDER - BICYCLE,2016-04-22T00:00:00,2016,April,Friday,22,113,9,2016-04-22T00:00:00,2016,April,Friday,22,113,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE 2,RG,14,SIL,500.0,STOLEN,10630,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-10643,11192,GO-2016701172,THEFT UNDER,2016-04-23T00:00:00,2016,April,Saturday,23,114,19,2016-04-24T00:00:00,2016,April,Sunday,24,115,19,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SCHWINN,VOLARE 700C,RC,14,WHI,423.0,STOLEN,10631,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-10644,11199,GO-2016705874,THEFT UNDER,2016-04-25T00:00:00,2016,April,Monday,25,116,14,2016-04-25T00:00:00,2016,April,Monday,25,116,15,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,PRIDE,WINNER 4,SC,1,GRYBLU,4627.0,STOLEN,10632,"{'type': 'Point', 'coordinates': (-79.38664264, 43.6606615)}"
-10645,11222,GO-20169003935,THEFT UNDER - BICYCLE,2016-04-26T00:00:00,2016,April,Tuesday,26,117,19,2016-04-29T00:00:00,2016,April,Friday,29,120,0,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,,FO,18,BLK,0.0,STOLEN,10633,"{'type': 'Point', 'coordinates': (-79.3863755, 43.65817391)}"
-10646,11226,GO-2016735358,THEFT UNDER - BICYCLE,2016-04-30T00:00:00,2016,April,Saturday,30,121,0,2016-04-30T00:00:00,2016,April,Saturday,30,121,0,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,,MT,10,BLKWHI,1000.0,STOLEN,10634,"{'type': 'Point', 'coordinates': (-79.37894504, 43.65169174)}"
-10647,11234,GO-20169004032,THEFT UNDER,2015-09-25T00:00:00,2015,September,Friday,25,268,23,2016-05-01T00:00:00,2016,May,Sunday,1,122,18,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,ZW95,RC,9,BLK,1000.0,STOLEN,10635,"{'type': 'Point', 'coordinates': (-79.38482092, 43.65454718)}"
-10648,11235,GO-20169004032,THEFT UNDER,2015-09-25T00:00:00,2015,September,Friday,25,268,23,2016-05-01T00:00:00,2016,May,Sunday,1,122,18,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,GI,CUSTOM (FIXED),RC,1,,800.0,STOLEN,10636,"{'type': 'Point', 'coordinates': (-79.38482092, 43.65454718)}"
-10649,11243,GO-20169004077,THEFT UNDER,2016-05-02T00:00:00,2016,May,Monday,2,123,13,2016-05-02T00:00:00,2016,May,Monday,2,123,20,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KO,ZING SUPREME,RC,10,GRY,600.0,STOLEN,10637,"{'type': 'Point', 'coordinates': (-79.37968936, 43.64733439)}"
-10650,11251,GO-2016758894,THEFT UNDER - BICYCLE,2016-05-03T00:00:00,2016,May,Tuesday,3,124,14,2016-05-03T00:00:00,2016,May,Tuesday,3,124,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,EL,1,RED,1800.0,STOLEN,10638,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-10651,11253,GO-20169004129,THEFT UNDER - BICYCLE,2016-04-29T00:00:00,2016,April,Friday,29,120,9,2016-05-04T00:00:00,2016,May,Wednesday,4,125,10,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,CITY,RG,5,,550.0,STOLEN,10639,"{'type': 'Point', 'coordinates': (-79.39060913000002, 43.66358401)}"
-10652,11255,GO-20169004144,THEFT UNDER - BICYCLE,2016-05-04T00:00:00,2016,May,Wednesday,4,125,9,2016-05-04T00:00:00,2016,May,Wednesday,4,125,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,FOLDING BIKE,FO,6,BLU,400.0,STOLEN,10640,"{'type': 'Point', 'coordinates': (-79.38581514, 43.66081576)}"
-10653,11258,GO-2016765845,THEFT UNDER,2016-05-04T00:00:00,2016,May,Wednesday,4,125,16,2016-05-04T00:00:00,2016,May,Wednesday,4,125,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,SHADOW,EL,0,BLK,1700.0,STOLEN,10641,"{'type': 'Point', 'coordinates': (-79.38262593, 43.65086783)}"
-10654,11280,GO-20169004314,THEFT UNDER,2014-06-16T00:00:00,2014,June,Monday,16,167,9,2016-05-09T00:00:00,2016,May,Monday,9,130,13,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,SYNAPSE,RC,10,BLU,900.0,STOLEN,10642,"{'type': 'Point', 'coordinates': (-79.39045505, 43.65985872)}"
-10655,11285,GO-20169004350,THEFT UNDER - BICYCLE,2016-05-09T00:00:00,2016,May,Monday,9,130,19,2016-05-10T00:00:00,2016,May,Tuesday,10,131,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SIRRUS DREAM,RG,8,GRY,700.0,STOLEN,10643,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10656,11286,GO-20169004357,THEFT UNDER - BICYCLE,2016-04-25T00:00:00,2016,April,Monday,25,116,23,2016-05-10T00:00:00,2016,May,Tuesday,10,131,13,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,1,,0.0,STOLEN,10644,"{'type': 'Point', 'coordinates': (-79.38236226, 43.65027737)}"
-10657,11297,GO-20169004442,THEFT UNDER,2016-05-12T00:00:00,2016,May,Thursday,12,133,16,2016-05-12T00:00:00,2016,May,Thursday,12,133,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,TRAFIK 6.0,TO,18,BLU,650.0,STOLEN,10645,"{'type': 'Point', 'coordinates': (-79.38467283, 43.65807476)}"
-10658,11300,GO-20169004469,THEFT UNDER - BICYCLE,2016-05-12T00:00:00,2016,May,Thursday,12,133,19,2016-05-12T00:00:00,2016,May,Thursday,12,133,22,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ANGEL,OT,1,WHI,600.0,STOLEN,10646,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-10659,11331,GO-20169004689,THEFT UNDER,2016-05-18T00:00:00,2016,May,Wednesday,18,139,20,2016-05-19T00:00:00,2016,May,Thursday,19,140,7,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RC,21,WHI,0.0,STOLEN,10647,"{'type': 'Point', 'coordinates': (-79.38601979, 43.65524051)}"
-10660,11336,GO-20169004722,THEFT UNDER - BICYCLE,2016-05-17T00:00:00,2016,May,Tuesday,17,138,17,2016-05-19T00:00:00,2016,May,Thursday,19,140,20,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,RAVEN DELUXE EB,EL,20,BLK,1500.0,STOLEN,10648,"{'type': 'Point', 'coordinates': (-79.38077050000001, 43.64989242)}"
-10661,11340,GO-2016863567,THEFT UNDER,2016-05-18T00:00:00,2016,May,Wednesday,18,139,12,2016-05-19T00:00:00,2016,May,Thursday,19,140,17,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,700C ORION,OT,21,BLU,300.0,STOLEN,10649,"{'type': 'Point', 'coordinates': (-79.38260155, 43.6529703)}"
-10662,11358,GO-20169004859,THEFT UNDER,2016-05-20T00:00:00,2016,May,Friday,20,141,20,2016-05-23T00:00:00,2016,May,Monday,23,144,20,D52,Toronto,76,Bay Street Corridor (76),Ttc Subway Station,Transit,MO,,MT,10,WHI,0.0,STOLEN,10650,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-10663,11374,GO-2016900039,THEFT UNDER - BICYCLE,2016-05-24T00:00:00,2016,May,Tuesday,24,145,17,2016-05-25T00:00:00,2016,May,Wednesday,25,146,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCOTT,SPORTSTER 50,OT,21,BLKRED,700.0,STOLEN,10651,"{'type': 'Point', 'coordinates': (-79.38209114, 43.64961443)}"
-10664,11383,GO-20169004994,THEFT UNDER,2016-05-20T00:00:00,2016,May,Friday,20,141,10,2016-05-26T00:00:00,2016,May,Thursday,26,147,15,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,,MT,21,GRY,0.0,STOLEN,10652,"{'type': 'Point', 'coordinates': (-79.3863755, 43.65817391)}"
-10665,11387,GO-2016909181,THEFT UNDER,2016-05-26T00:00:00,2016,May,Thursday,26,147,12,2016-05-26T00:00:00,2016,May,Thursday,26,147,16,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,SCHWINN,,MT,26,PLE,500.0,STOLEN,10653,"{'type': 'Point', 'coordinates': (-79.38262593, 43.65086783)}"
-10666,11399,GO-20169005075,THEFT UNDER,2016-05-28T00:00:00,2016,May,Saturday,28,149,21,2016-05-28T00:00:00,2016,May,Saturday,28,149,23,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,21,,0.0,STOLEN,10654,"{'type': 'Point', 'coordinates': (-79.38407058, 43.649187680000004)}"
-10667,11410,GO-20169005142,THEFT UNDER - BICYCLE,2016-05-30T00:00:00,2016,May,Monday,30,151,18,2016-05-30T00:00:00,2016,May,Monday,30,151,18,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,2012 SCOTT SUB,RG,24,BLK,960.0,STOLEN,10655,"{'type': 'Point', 'coordinates': (-79.38664264, 43.6606615)}"
-10668,11446,GO-20169005351,THEFT UNDER,2016-05-23T00:00:00,2016,May,Monday,23,144,15,2016-06-05T00:00:00,2016,June,Sunday,5,157,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MA,RAVEENA,RG,8,BLU,750.0,STOLEN,10656,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-10669,11448,GO-20169005363,THEFT UNDER - BICYCLE,2016-05-26T00:00:00,2016,May,Thursday,26,147,20,2016-06-06T00:00:00,2016,June,Monday,6,158,8,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,,RG,27,BLK,938.0,STOLEN,10657,"{'type': 'Point', 'coordinates': (-79.39098691, 43.66935825)}"
-10670,11634,GO-20169006337,THEFT UNDER,2016-06-20T00:00:00,2016,June,Monday,20,172,18,2016-06-25T00:00:00,2016,June,Saturday,25,177,12,D52,Toronto,76,Bay Street Corridor (76),Unknown,Other,UK,UNKNOWN,EL,12,,3200.0,STOLEN,10673,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-10671,11457,GO-20169005414,THEFT UNDER - BICYCLE,2016-06-06T00:00:00,2016,June,Monday,6,158,18,2016-06-07T00:00:00,2016,June,Tuesday,7,159,10,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,,RG,21,GRY,600.0,STOLEN,10658,"{'type': 'Point', 'coordinates': (-79.38268555, 43.64598268)}"
-10672,11478,GO-20169005499,THEFT UNDER - BICYCLE,2016-06-08T00:00:00,2016,June,Wednesday,8,160,17,2016-06-08T00:00:00,2016,June,Wednesday,8,160,22,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,TR,FX 7.5,RG,30,GRY,1400.0,STOLEN,10659,"{'type': 'Point', 'coordinates': (-79.37968936, 43.64733439)}"
-10673,11494,GO-20169005586,THEFT UNDER,2016-06-09T00:00:00,2016,June,Thursday,9,161,9,2016-06-10T00:00:00,2016,June,Friday,10,162,20,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RG,10,GRY,700.0,STOLEN,10660,"{'type': 'Point', 'coordinates': (-79.38820648, 43.66681234)}"
-10674,11539,GO-20169005832,FTC PROBATION ORDER,2016-06-14T00:00:00,2016,June,Tuesday,14,166,14,2016-06-15T00:00:00,2016,June,Wednesday,15,167,13,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,TR,,OT,27,LBL,749.0,STOLEN,10661,"{'type': 'Point', 'coordinates': (-79.3863755, 43.65817391)}"
-10675,11540,GO-20169005828,THEFT UNDER,2016-06-14T00:00:00,2016,June,Tuesday,14,166,16,2016-06-15T00:00:00,2016,June,Wednesday,15,167,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,7.5 FX,RG,21,WHI,1350.0,STOLEN,10662,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-10676,11546,GO-20169005853,THEFT UNDER - BICYCLE,2016-06-15T00:00:00,2016,June,Wednesday,15,167,19,2016-06-15T00:00:00,2016,June,Wednesday,15,167,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,AL 1020 SILVER,EL,10,SIL,500.0,STOLEN,10663,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-10677,11552,GO-20169005880,THEFT UNDER - BICYCLE,2016-06-14T00:00:00,2016,June,Tuesday,14,166,10,2016-06-16T00:00:00,2016,June,Thursday,16,168,10,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,RADON,RC,1,BLU,2500.0,STOLEN,10664,"{'type': 'Point', 'coordinates': (-79.38236226, 43.65027737)}"
-10678,11765,GO-20161190799,THEFT UNDER - BICYCLE,2016-07-07T00:00:00,2016,July,Thursday,7,189,15,2016-07-07T00:00:00,2016,July,Thursday,7,189,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,OT,7,BLK,400.0,STOLEN,10682,"{'type': 'Point', 'coordinates': (-79.38518506, 43.65542635)}"
-10679,11576,GO-20169006013,THEFT UNDER - BICYCLE,2016-06-18T00:00:00,2016,June,Saturday,18,170,12,2016-06-19T00:00:00,2016,June,Sunday,19,171,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ZERMATT URBANIS,RG,18,BLK,800.0,STOLEN,10665,"{'type': 'Point', 'coordinates': (-79.38944954, 43.65752945)}"
-10680,11577,GO-20161066912,THEFT UNDER - BICYCLE,2016-06-18T00:00:00,2016,June,Saturday,18,170,8,2016-06-19T00:00:00,2016,June,Sunday,19,171,0,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,OT,0,GRYRED,1100.0,STOLEN,10666,"{'type': 'Point', 'coordinates': (-79.38103127, 43.65056603)}"
-10681,11585,GO-20169005954,THEFT UNDER - BICYCLE,2016-06-17T00:00:00,2016,June,Friday,17,169,8,2016-06-17T00:00:00,2016,June,Friday,17,169,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,1,GRY,0.0,STOLEN,10667,"{'type': 'Point', 'coordinates': (-79.38353872, 43.64792395)}"
-10682,11588,GO-20169006067,THEFT UNDER - BICYCLE,2016-06-16T00:00:00,2016,June,Thursday,16,168,9,2016-06-20T00:00:00,2016,June,Monday,20,172,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,,RG,8,SIL,1100.0,STOLEN,10668,"{'type': 'Point', 'coordinates': (-79.38402022, 43.65643576000001)}"
-10683,11590,GO-20169006085,THEFT UNDER - BICYCLE,2016-06-20T00:00:00,2016,June,Monday,20,172,13,2016-06-20T00:00:00,2016,June,Monday,20,172,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ROAM 2,OT,9,GRN,1000.0,STOLEN,10669,"{'type': 'Point', 'coordinates': (-79.38491403, 43.66584039)}"
-10684,11596,GO-20169006120,THEFT UNDER,2016-06-21T00:00:00,2016,June,Tuesday,21,173,7,2016-06-21T00:00:00,2016,June,Tuesday,21,173,13,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,21,WHI,400.0,STOLEN,10670,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-10685,11605,GO-20169006161,THEFT UNDER - BICYCLE,2016-06-21T00:00:00,2016,June,Tuesday,21,173,9,2016-06-22T00:00:00,2016,June,Wednesday,22,174,9,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KH,VITAMIN A,RG,18,SIL,250.0,STOLEN,10671,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-10686,11624,GO-20161092649,THEFT UNDER - BICYCLE,2016-06-22T00:00:00,2016,June,Wednesday,22,174,16,2016-06-22T00:00:00,2016,June,Wednesday,22,174,19,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TREK,,RG,10,BLK,,STOLEN,10672,"{'type': 'Point', 'coordinates': (-79.38103127, 43.65056603)}"
-10687,11665,GO-20169006522,THEFT UNDER - BICYCLE,2016-06-29T00:00:00,2016,June,Wednesday,29,181,10,2016-06-29T00:00:00,2016,June,Wednesday,29,181,15,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,MELBOURNE,RC,10,BLK,3000.0,STOLEN,10674,"{'type': 'Point', 'coordinates': (-79.38808613, 43.66653345)}"
-10688,11669,GO-20161132781,THEFT UNDER - BICYCLE,2016-06-28T00:00:00,2016,June,Tuesday,28,180,13,2016-06-28T00:00:00,2016,June,Tuesday,28,180,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,MT,10,BLK,800.0,STOLEN,10675,"{'type': 'Point', 'coordinates': (-79.38260155, 43.6529703)}"
-10689,11674,GO-20169006581,THEFT UNDER,2016-06-20T00:00:00,2016,June,Monday,20,172,14,2016-06-30T00:00:00,2016,June,Thursday,30,182,15,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,GF,,MT,21,BLU,0.0,STOLEN,10676,"{'type': 'Point', 'coordinates': (-79.38338195, 43.66213624)}"
-10690,11684,GO-20161148034,THEFT OF EBIKE UNDER $5000,2016-06-29T00:00:00,2016,June,Wednesday,29,181,21,2016-07-01T00:00:00,2016,July,Friday,1,183,0,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,EL,1,,600.0,STOLEN,10677,"{'type': 'Point', 'coordinates': (-79.38634339, 43.66246955)}"
-10691,11709,GO-20161168800,THEFT UNDER,2016-06-30T00:00:00,2016,June,Thursday,30,182,16,2016-07-04T00:00:00,2016,July,Monday,4,186,14,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNK,UNK,OT,0,BLK,300.0,STOLEN,10678,"{'type': 'Point', 'coordinates': (-79.38714344, 43.66436762)}"
-10692,11711,GO-20169006729,THEFT UNDER,2015-06-18T00:00:00,2015,June,Thursday,18,169,13,2016-07-05T00:00:00,2016,July,Tuesday,5,187,10,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,UK,,OT,1,BLK,500.0,STOLEN,10679,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10693,11718,GO-20161170832,THEFT UNDER - BICYCLE,2016-07-04T00:00:00,2016,July,Monday,4,186,16,2016-07-04T00:00:00,2016,July,Monday,4,186,20,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RALEIGH,TERANTULA,MT,24,GRYSIL,400.0,STOLEN,10680,"{'type': 'Point', 'coordinates': (-79.38374902, 43.66302137000001)}"
-10694,11737,GO-20161182891,THEFT OF EBIKE UNDER $5000,2016-07-06T00:00:00,2016,July,Wednesday,6,188,10,2016-07-06T00:00:00,2016,July,Wednesday,6,188,16,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,MOTORINO,EL,0,GRN,2500.0,STOLEN,10681,"{'type': 'Point', 'coordinates': (-79.38103127, 43.65056603)}"
-10695,11769,GO-20169007034,THEFT UNDER - BICYCLE,2016-07-08T00:00:00,2016,July,Friday,8,190,9,2016-07-11T00:00:00,2016,July,Monday,11,193,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,1,TRQ,180.0,STOLEN,10683,"{'type': 'Point', 'coordinates': (-79.38738577, 43.66051487)}"
-10696,11772,GO-20169007066,THEFT UNDER,2016-07-11T00:00:00,2016,July,Monday,11,193,19,2016-07-12T00:00:00,2016,July,Tuesday,12,194,8,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,INVERNESS,RG,1,BLK,200.0,STOLEN,10684,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-10697,11776,GO-20169007090,THEFT UNDER - BICYCLE,2016-07-11T00:00:00,2016,July,Monday,11,193,12,2016-07-12T00:00:00,2016,July,Tuesday,12,194,14,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RC,1,,1500.0,STOLEN,10685,"{'type': 'Point', 'coordinates': (-79.38406005, 43.64638318)}"
-10698,11783,GO-20161203884,THEFT UNDER - BICYCLE,2016-07-09T00:00:00,2016,July,Saturday,9,191,18,2016-07-09T00:00:00,2016,July,Saturday,9,191,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KONA,ROVE AL,RG,16,GRY,600.0,STOLEN,10686,"{'type': 'Point', 'coordinates': (-79.38353872, 43.64792395)}"
-10699,11799,GO-20161233085,THEFT UNDER - BICYCLE,2016-07-13T00:00:00,2016,July,Wednesday,13,195,14,2016-07-14T00:00:00,2016,July,Thursday,14,196,7,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,APOLLO,GRAND SPORT,RG,12,BLK,2000.0,STOLEN,10687,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10700,11802,GO-20169007164,THEFT UNDER - BICYCLE,2016-07-13T00:00:00,2016,July,Wednesday,13,195,8,2016-07-13T00:00:00,2016,July,Wednesday,13,195,21,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,CA,SYNAPSE,RC,21,RED,0.0,STOLEN,10688,"{'type': 'Point', 'coordinates': (-79.3863755, 43.65817391)}"
-10701,11818,GO-20169007265,THEFT UNDER,2016-07-15T00:00:00,2016,July,Friday,15,197,8,2016-07-15T00:00:00,2016,July,Friday,15,197,21,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,,MT,24,WHI,700.0,STOLEN,10689,"{'type': 'Point', 'coordinates': (-79.38268555, 43.64598268)}"
-10702,11828,GO-20169007306,THEFT UNDER,2016-07-17T00:00:00,2016,July,Sunday,17,199,10,2016-07-17T00:00:00,2016,July,Sunday,17,199,23,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,15,,200.0,STOLEN,10690,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-10703,11829,GO-20169007317,THEFT UNDER,2016-06-23T00:00:00,2016,June,Thursday,23,175,19,2016-07-18T00:00:00,2016,July,Monday,18,200,10,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,GI,,RC,1,LBL,2000.0,STOLEN,10691,"{'type': 'Point', 'coordinates': (-79.38491403, 43.66584039)}"
-10704,11836,GO-20169007386,THEFT UNDER,2016-07-18T00:00:00,2016,July,Monday,18,200,9,2016-07-19T00:00:00,2016,July,Tuesday,19,201,9,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KO,KILAUEA,MT,24,DGR,350.0,STOLEN,10692,"{'type': 'Point', 'coordinates': (-79.38262593, 43.65086783)}"
-10705,11844,GO-20169007395,THEFT UNDER,2016-07-17T00:00:00,2016,July,Sunday,17,199,22,2016-07-19T00:00:00,2016,July,Tuesday,19,201,11,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,5,,200.0,STOLEN,10693,"{'type': 'Point', 'coordinates': (-79.38644891, 43.66715659)}"
-10706,11846,GO-20169007411,THEFT UNDER - BICYCLE,2016-07-17T00:00:00,2016,July,Sunday,17,199,13,2016-07-19T00:00:00,2016,July,Tuesday,19,201,13,D52,Toronto,76,Bay Street Corridor (76),Unknown,Other,UK,,MT,21,SIL,800.0,STOLEN,10694,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-10707,11847,GO-20169007411,THEFT UNDER - BICYCLE,2016-07-17T00:00:00,2016,July,Sunday,17,199,13,2016-07-19T00:00:00,2016,July,Tuesday,19,201,13,D52,Toronto,76,Bay Street Corridor (76),Unknown,Other,OT,CAPRICCIO,OT,20,RED,1100.0,STOLEN,10695,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-10708,11852,GO-20161251761,THEFT UNDER - BICYCLE,2016-07-16T00:00:00,2016,July,Saturday,16,198,21,2016-07-17T00:00:00,2016,July,Sunday,17,199,1,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KONA,DEW DELUXE,OT,21,GLD,600.0,STOLEN,10696,"{'type': 'Point', 'coordinates': (-79.38482092, 43.65454718)}"
-10709,11867,GO-20161289028,THEFT UNDER - BICYCLE,2016-07-22T00:00:00,2016,July,Friday,22,204,9,2016-07-22T00:00:00,2016,July,Friday,22,204,19,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,NORCO,INDY 4,OT,24,BLKWHI,,STOLEN,10697,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-10710,11899,GO-20161280896,THEFT UNDER - BICYCLE,2016-07-21T00:00:00,2016,July,Thursday,21,203,5,2016-07-21T00:00:00,2016,July,Thursday,21,203,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,,OT,7,BLK,900.0,STOLEN,10698,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-10711,11912,GO-20169007755,THEFT UNDER - BICYCLE,2016-07-25T00:00:00,2016,July,Monday,25,207,18,2016-07-25T00:00:00,2016,July,Monday,25,207,23,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,TALUS 2.0 2014,RG,21,BLK,330.0,STOLEN,10699,"{'type': 'Point', 'coordinates': (-79.3879785, 43.66997438)}"
-10712,11927,GO-20169007800,THEFT UNDER,2016-07-26T00:00:00,2016,July,Tuesday,26,208,9,2016-07-26T00:00:00,2016,July,Tuesday,26,208,22,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,NEWEST,RG,1,YEL,900.0,STOLEN,10700,"{'type': 'Point', 'coordinates': (-79.38298971, 43.64660463)}"
-10713,11943,GO-20169007895,THEFT UNDER,2016-07-28T00:00:00,2016,July,Thursday,28,210,19,2016-07-28T00:00:00,2016,July,Thursday,28,210,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RC,21,BLK,1000.0,STOLEN,10701,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-10714,11964,GO-20169007993,THEFT UNDER - BICYCLE,2016-07-28T00:00:00,2016,July,Thursday,28,210,12,2016-07-31T00:00:00,2016,July,Sunday,31,213,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,WELLINGTON,TO,9,WHI,850.0,STOLEN,10702,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-10715,11974,GO-20169008071,THEFT UNDER - BICYCLE,2016-08-02T00:00:00,2016,August,Tuesday,2,215,15,2016-08-03T00:00:00,2016,August,Wednesday,3,216,2,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,EM,URBAN,EL,40,WHI,1099.0,STOLEN,10703,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-10716,2476,GO-20189017567,THEFT UNDER - BICYCLE,2018-06-05T00:00:00,2018,June,Tuesday,5,156,21,2018-06-06T00:00:00,2018,June,Wednesday,6,157,11,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,CUSTOM FIXED GE,OT,1,SIL,1500.0,STOLEN,10704,"{'type': 'Point', 'coordinates': (-79.38406005, 43.64638318)}"
-10717,57,GO-20179000940,THEFT UNDER - BICYCLE,2017-01-19T00:00:00,2017,January,Thursday,19,19,18,2017-01-20T00:00:00,2017,January,Friday,20,20,22,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CC,AFTERBURNER,MT,5,,70.0,STOLEN,10705,"{'type': 'Point', 'coordinates': (-79.38374902, 43.66302137000001)}"
-10718,4670,GO-20199021007,THEFT UNDER,2019-07-03T00:00:00,2019,July,Wednesday,3,184,21,2019-07-04T00:00:00,2019,July,Thursday,4,185,17,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,CC,VECTOR,OT,21,BLK,300.0,STOLEN,10706,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10719,2487,GO-20189017710,THEFT UNDER - BICYCLE,2018-06-06T00:00:00,2018,June,Wednesday,6,157,14,2018-06-07T00:00:00,2018,June,Thursday,7,158,0,D52,Toronto,76,Bay Street Corridor (76),Bar / Restaurant,Commercial,UK,ORBITA,MT,6,LGR,246.0,STOLEN,10707,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-10720,4672,GO-20199021041,THEFT UNDER,2019-07-03T00:00:00,2019,July,Wednesday,3,184,18,2019-07-04T00:00:00,2019,July,Thursday,4,185,22,D52,Toronto,76,Bay Street Corridor (76),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SU,,MT,18,RED,50.0,STOLEN,10708,"{'type': 'Point', 'coordinates': (-79.38437564, 43.65730783)}"
-10721,2492,GO-20189017778,THEFT UNDER,2018-06-01T00:00:00,2018,June,Friday,1,152,11,2018-06-07T00:00:00,2018,June,Thursday,7,158,16,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UK,,OT,3,DBL,500.0,STOLEN,10709,"{'type': 'Point', 'coordinates': (-79.38374902, 43.66302137000001)}"
-10722,4676,GO-20199021139,THEFT UNDER,2019-07-03T00:00:00,2019,July,Wednesday,3,184,23,2019-07-05T00:00:00,2019,July,Friday,5,186,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,14,BLK,1199.0,STOLEN,10710,"{'type': 'Point', 'coordinates': (-79.38634339, 43.66246955)}"
-10723,59,GO-20179000991,THEFT UNDER - BICYCLE,2017-01-21T00:00:00,2017,January,Saturday,21,21,9,2017-01-22T00:00:00,2017,January,Sunday,22,22,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ROAM XR1,MT,30,BLK,1149.0,STOLEN,10711,"{'type': 'Point', 'coordinates': (-79.3879785, 43.66997438)}"
-10724,2493,GO-20189017737,THEFT UNDER,2018-06-07T00:00:00,2018,June,Thursday,7,158,8,2018-06-07T00:00:00,2018,June,Thursday,7,158,11,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,OT,1,BLK,200.0,STOLEN,10712,"{'type': 'Point', 'coordinates': (-79.38209114, 43.64961443)}"
-10725,4679,GO-20191261342,THEFT UNDER,2019-07-06T00:00:00,2019,July,Saturday,6,187,18,2019-07-06T00:00:00,2019,July,Saturday,6,187,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GARNEAU,MX4,MT,24,GRY,700.0,STOLEN,10713,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10726,69,GO-20179001243,THEFT UNDER - BICYCLE,2017-01-26T00:00:00,2017,January,Thursday,26,26,7,2017-01-27T00:00:00,2017,January,Friday,27,27,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SIRRUS SPORT,RG,21,BLK,549.0,STOLEN,10714,"{'type': 'Point', 'coordinates': (-79.38581514, 43.66081576)}"
-10727,2506,GO-20189017944,THEFT UNDER - BICYCLE,2018-06-08T00:00:00,2018,June,Friday,8,159,8,2018-06-08T00:00:00,2018,June,Friday,8,159,18,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,CIRRUS SPORT,OT,18,GRY,1000.0,STOLEN,10715,"{'type': 'Point', 'coordinates': (-79.37878196, 43.64896093)}"
-10728,4680,GO-20191261342,THEFT UNDER,2019-07-06T00:00:00,2019,July,Saturday,6,187,18,2019-07-06T00:00:00,2019,July,Saturday,6,187,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GARNEAU,MX4,MT,24,GRY,700.0,STOLEN,10716,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10729,73,GO-2017174760,THEFT UNDER - BICYCLE,2017-01-28T00:00:00,2017,January,Saturday,28,28,6,2017-01-28T00:00:00,2017,January,Saturday,28,28,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RALEIGH,REDUX2,MT,27,BLK,860.0,RECOVERED,10717,"{'type': 'Point', 'coordinates': (-79.38338195, 43.66213624)}"
-10730,2510,GO-20189017969,THEFT UNDER - BICYCLE,2018-06-08T00:00:00,2018,June,Friday,8,159,23,2018-06-09T00:00:00,2018,June,Saturday,9,160,1,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,20,BLU,200.0,STOLEN,10718,"{'type': 'Point', 'coordinates': (-79.38402022, 43.65643576000001)}"
-10731,4685,GO-20199021251,THEFT UNDER,2019-07-06T00:00:00,2019,July,Saturday,6,187,9,2019-07-06T00:00:00,2019,July,Saturday,6,187,18,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RG,1,BLU,0.0,STOLEN,10719,"{'type': 'Point', 'coordinates': (-79.38353872, 43.64792395)}"
-10732,79,GO-20179001484,THEFT UNDER - BICYCLE,2017-01-24T00:00:00,2017,January,Tuesday,24,24,13,2017-02-02T00:00:00,2017,February,Thursday,2,33,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,,RG,10,SIL,250.0,STOLEN,10720,"{'type': 'Point', 'coordinates': (-79.37968936, 43.64733439)}"
-10733,94,GO-2017308908,B&E,2017-01-15T00:00:00,2017,January,Sunday,15,15,12,2017-02-18T00:00:00,2017,February,Saturday,18,49,20,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,CANNONDALE,CAAD 10,OT,10,WHIGRN,2300.0,STOLEN,10721,"{'type': 'Point', 'coordinates': (-79.38437564, 43.65730783)}"
-10734,107,GO-20179002400,THEFT UNDER - BICYCLE,2017-02-19T00:00:00,2017,February,Sunday,19,50,15,2017-02-23T00:00:00,2017,February,Thursday,23,54,15,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,22625,RG,7,BLU,199.0,STOLEN,10722,"{'type': 'Point', 'coordinates': (-79.38491403, 43.66584039)}"
-10735,173,GO-2017539646,THEFT UNDER - BICYCLE,2017-03-17T00:00:00,2017,March,Friday,17,76,12,2017-03-27T00:00:00,2017,March,Monday,27,86,9,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,SCHWINN,,OT,0,,300.0,STOLEN,10724,"{'type': 'Point', 'coordinates': (-79.38737611, 43.66847728)}"
-10736,184,GO-20179004020,THEFT UNDER - BICYCLE,2017-03-30T00:00:00,2017,March,Thursday,30,89,16,2017-03-30T00:00:00,2017,March,Thursday,30,89,23,D52,Toronto,76,Bay Street Corridor (76),Bar / Restaurant,Commercial,UK,RECORD,RC,27,WHI,1000.0,STOLEN,10725,"{'type': 'Point', 'coordinates': (-79.38209114, 43.64961443)}"
-10737,195,GO-20179004169,THEFT UNDER - BICYCLE,2016-10-03T00:00:00,2016,October,Monday,3,277,15,2017-04-03T00:00:00,2017,April,Monday,3,93,16,D52,Toronto,76,Bay Street Corridor (76),Unknown,Other,RA,ALYSA 2 WMB BLU,MT,18,BLU,655.0,STOLEN,10726,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-10738,201,GO-2017614803,THEFT UNDER - BICYCLE,2017-03-17T00:00:00,2017,March,Friday,17,76,16,2017-04-07T00:00:00,2017,April,Friday,7,97,18,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,GIANT,,MT,0,SILLGR,650.0,STOLEN,10727,"{'type': 'Point', 'coordinates': (-79.38737611, 43.66847728)}"
-10739,209,GO-2017641190,THEFT UNDER - BICYCLE,2017-04-01T00:00:00,2017,April,Saturday,1,91,12,2017-04-11T00:00:00,2017,April,Tuesday,11,101,19,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,ROUBAIX COMP,OT,20,BLK,3500.0,STOLEN,10728,"{'type': 'Point', 'coordinates': (-79.38487134, 43.64619564)}"
-10740,213,GO-20179004591,THEFT UNDER,2017-04-11T00:00:00,2017,April,Tuesday,11,101,7,2017-04-12T00:00:00,2017,April,Wednesday,12,102,9,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,,MT,27,BLK,900.0,STOLEN,10729,"{'type': 'Point', 'coordinates': (-79.38664264, 43.6606615)}"
-10741,227,GO-20179004755,THEFT UNDER - BICYCLE,2017-04-15T00:00:00,2017,April,Saturday,15,105,15,2017-04-16T00:00:00,2017,April,Sunday,16,106,10,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,1,BLK,300.0,STOLEN,10730,"{'type': 'Point', 'coordinates': (-79.38820648, 43.66681234)}"
-10742,229,GO-20179004773,THEFT UNDER - BICYCLE,2017-04-16T00:00:00,2017,April,Sunday,16,106,13,2017-04-16T00:00:00,2017,April,Sunday,16,106,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SC3,RG,18,GRY,600.0,STOLEN,10731,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-10743,261,GO-20179005108,THEFT UNDER - BICYCLE,2017-04-22T00:00:00,2017,April,Saturday,22,112,16,2017-04-22T00:00:00,2017,April,Saturday,22,112,21,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,18 INCH FRAME,MT,21,SIL,500.0,STOLEN,10732,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10744,262,GO-20179005110,THEFT UNDER - BICYCLE,2017-04-21T00:00:00,2017,April,Friday,21,111,8,2017-04-21T00:00:00,2017,April,Friday,21,111,14,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,MT,15,,250.0,STOLEN,10733,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-10745,276,GO-2017727188,B&E,2017-04-23T00:00:00,2017,April,Sunday,23,113,20,2017-04-25T00:00:00,2017,April,Tuesday,25,115,17,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CERVELO,R2,RG,22,GRY,2000.0,STOLEN,10734,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-10746,289,GO-20179005205,THEFT UNDER - BICYCLE,2017-04-24T00:00:00,2017,April,Monday,24,114,11,2017-04-24T00:00:00,2017,April,Monday,24,114,15,D52,Toronto,76,Bay Street Corridor (76),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,OT,CROSS BOW,RC,10,WHI,,STOLEN,10735,"{'type': 'Point', 'coordinates': (-79.38262593, 43.65086783)}"
-10747,293,GO-20179005402,THEFT UNDER - BICYCLE,2017-04-27T00:00:00,2017,April,Thursday,27,117,21,2017-04-28T00:00:00,2017,April,Friday,28,118,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,2016 DEFY 3 9SP,RC,10,,1100.0,STOLEN,10736,"{'type': 'Point', 'coordinates': (-79.38640575, 43.65337704000001)}"
-10748,300,GO-20179004773,THEFT UNDER - BICYCLE,2017-04-16T00:00:00,2017,April,Sunday,16,106,13,2017-04-16T00:00:00,2017,April,Sunday,16,106,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,URBANIA SC3 STE,RG,21,GRY,845.0,STOLEN,10737,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-10749,302,GO-20179005491,THEFT UNDER - BICYCLE,2017-04-29T00:00:00,2017,April,Saturday,29,119,0,2017-04-30T00:00:00,2017,April,Sunday,30,120,14,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,TR,TREK OCLV 5000,RC,18,SIL,2500.0,STOLEN,10738,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-10750,303,GO-20179005489,THEFT UNDER - BICYCLE,2017-04-24T00:00:00,2017,April,Monday,24,114,8,2017-04-30T00:00:00,2017,April,Sunday,30,120,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,RG,21,GRY,980.0,STOLEN,10739,"{'type': 'Point', 'coordinates': (-79.38353872, 43.64792395)}"
-10751,397,GO-20179006354,THEFT UNDER,2017-05-07T00:00:00,2017,May,Sunday,7,127,14,2017-05-15T00:00:00,2017,May,Monday,15,135,18,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,TR,BONTRAGER,MT,18,GRY,1500.0,STOLEN,10740,"{'type': 'Point', 'coordinates': (-79.38820648, 43.66681234)}"
-10752,399,GO-20179006411,THEFT UNDER - BICYCLE,2017-05-15T00:00:00,2017,May,Monday,15,135,19,2017-05-15T00:00:00,2017,May,Monday,15,135,23,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SPORTSTER X40,RG,27,PLE,900.0,STOLEN,10741,"{'type': 'Point', 'coordinates': (-79.38353872, 43.64792395)}"
-10753,401,GO-20179006427,THEFT UNDER,2017-04-22T00:00:00,2017,April,Saturday,22,112,6,2017-05-16T00:00:00,2017,May,Tuesday,16,136,11,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,CROSSRIP 2,RC,40,GRY,2260.0,STOLEN,10742,"{'type': 'Point', 'coordinates': (-79.38565688, 43.65832672)}"
-10754,427,GO-20179006661,THEFT UNDER - BICYCLE,2017-05-19T00:00:00,2017,May,Friday,19,139,14,2017-05-19T00:00:00,2017,May,Friday,19,139,16,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,REVOLT,RG,21,BLK,1000.0,STOLEN,10743,"{'type': 'Point', 'coordinates': (-79.38209114, 43.64961443)}"
-10755,432,GO-20179006712,THEFT UNDER,2017-05-20T00:00:00,2017,May,Saturday,20,140,22,2017-05-21T00:00:00,2017,May,Sunday,21,141,4,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,NO. 1,RG,1,DGR,677.0,STOLEN,10744,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-10756,489,GO-20179007116,THEFT UNDER - BICYCLE,2017-05-28T00:00:00,2017,May,Sunday,28,148,8,2017-05-28T00:00:00,2017,May,Sunday,28,148,15,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,RM,FOX FRONT FORKS,BM,24,GRY,1400.0,STOLEN,10745,"{'type': 'Point', 'coordinates': (-79.38374902, 43.66302137000001)}"
-10757,501,GO-20179007169,THEFT UNDER,2017-05-28T00:00:00,2017,May,Sunday,28,148,12,2017-05-29T00:00:00,2017,May,Monday,29,149,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ROADSTER,TO,1,BLK,575.0,STOLEN,10746,"{'type': 'Point', 'coordinates': (-79.38671683, 43.66779)}"
-10758,509,GO-2017961422,THEFT UNDER - BICYCLE,2017-05-18T00:00:00,2017,May,Thursday,18,138,11,2017-05-31T00:00:00,2017,May,Wednesday,31,151,10,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,BIANCHI,,RC,0,,500.0,STOLEN,10747,"{'type': 'Point', 'coordinates': (-79.39114165, 43.66483963)}"
-10759,516,GO-20179007346,THEFT UNDER - BICYCLE,2017-06-01T00:00:00,2017,June,Thursday,1,152,17,2017-06-01T00:00:00,2017,June,Thursday,1,152,22,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RM,RBM METRO 30,RG,27,WHI,500.0,STOLEN,10748,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-10760,543,GO-2017999111,THEFT UNDER - BICYCLE,2017-06-05T00:00:00,2017,June,Monday,5,156,12,2017-06-06T00:00:00,2017,June,Tuesday,6,157,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,1000,OT,1,SIL,800.0,STOLEN,10749,"{'type': 'Point', 'coordinates': (-79.38461112, 43.65044055)}"
-10761,606,GO-20179008026,THEFT UNDER - BICYCLE,2017-06-07T00:00:00,2017,June,Wednesday,7,158,8,2017-06-13T00:00:00,2017,June,Tuesday,13,164,14,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,AGGRESSOR,MT,7,BLK,360.0,STOLEN,10750,"{'type': 'Point', 'coordinates': (-79.38581514, 43.66081576)}"
-10762,613,GO-20179008105,THEFT UNDER - BICYCLE,2017-06-12T00:00:00,2017,June,Monday,12,163,19,2017-06-14T00:00:00,2017,June,Wednesday,14,165,18,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,SC,SCHWINN GTX2 ME,OT,21,RED,550.0,STOLEN,10751,"{'type': 'Point', 'coordinates': (-79.38581514, 43.66081576)}"
-10763,633,GO-20171005592,THEFT UNDER - BICYCLE,2017-06-06T00:00:00,2017,June,Tuesday,6,157,14,2017-06-06T00:00:00,2017,June,Tuesday,6,157,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,,RG,24,BLU,200.0,STOLEN,10752,"{'type': 'Point', 'coordinates': (-79.38124592, 43.65320661)}"
-10764,649,GO-20171075000,THEFT UNDER - BICYCLE,2017-06-16T00:00:00,2017,June,Friday,16,167,13,2017-06-16T00:00:00,2017,June,Friday,16,167,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KONA,DEW,MT,21,WHI,400.0,STOLEN,10753,"{'type': 'Point', 'coordinates': (-79.38671683, 43.66779)}"
-10765,650,GO-20171076279,THEFT UNDER - BICYCLE,2017-05-18T00:00:00,2017,May,Thursday,18,138,18,2017-06-16T00:00:00,2017,June,Friday,16,167,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,ROCKY MOUNTAIN,RC50,MT,22,RED,850.0,STOLEN,10754,"{'type': 'Point', 'coordinates': (-79.38379426, 43.64856165)}"
-10766,657,GO-20179008458,THEFT UNDER - BICYCLE,2017-06-19T00:00:00,2017,June,Monday,19,170,15,2017-06-19T00:00:00,2017,June,Monday,19,170,22,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,XTC,MT,7,WHI,2000.0,STOLEN,10755,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-10767,658,GO-20179008478,THEFT UNDER - BICYCLE,2017-06-19T00:00:00,2017,June,Monday,19,170,20,2017-06-20T00:00:00,2017,June,Tuesday,20,171,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SHS270,OT,10,RED,500.0,STOLEN,10756,"{'type': 'Point', 'coordinates': (-79.38714344, 43.66436762)}"
-10768,679,GO-20179008610,THEFT UNDER - BICYCLE,2017-06-21T00:00:00,2017,June,Wednesday,21,172,8,2017-06-21T00:00:00,2017,June,Wednesday,21,172,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,COCO,RG,9,BLU,700.0,STOLEN,10757,"{'type': 'Point', 'coordinates': (-79.38406005, 43.64638318)}"
-10769,701,GO-20179008800,THEFT UNDER - BICYCLE,2017-06-16T00:00:00,2017,June,Friday,16,167,16,2017-06-23T00:00:00,2017,June,Friday,23,174,23,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,TANGO,FO,6,RED,200.0,STOLEN,10758,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-10770,713,GO-20179008889,THEFT UNDER - BICYCLE,2017-06-24T00:00:00,2017,June,Saturday,24,175,19,2017-06-25T00:00:00,2017,June,Sunday,25,176,22,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DB,DISCOVERY,MT,18,SIL,250.0,STOLEN,10759,"{'type': 'Point', 'coordinates': (-79.38124592, 43.65320661)}"
-10771,716,GO-20179008895,THEFT UNDER - BICYCLE,2017-06-23T00:00:00,2017,June,Friday,23,174,20,2017-06-26T00:00:00,2017,June,Monday,26,177,0,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,2013,OT,60,BLK,700.0,STOLEN,10760,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-10772,760,GO-20179009302,THEFT UNDER - BICYCLE,2017-07-02T00:00:00,2017,July,Sunday,2,183,16,2017-07-02T00:00:00,2017,July,Sunday,2,183,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,UMBRIA III,RG,12,RED,400.0,STOLEN,10761,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-10773,774,GO-20179009319,THEFT UNDER - BICYCLE,2017-04-29T00:00:00,2017,April,Saturday,29,119,22,2017-07-03T00:00:00,2017,July,Monday,3,184,17,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,21,GRY,200.0,STOLEN,10762,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-10774,781,GO-20179009485,THEFT UNDER - BICYCLE,2017-07-01T00:00:00,2017,July,Saturday,1,182,13,2017-07-05T00:00:00,2017,July,Wednesday,5,186,13,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RM,RC 50 M,MT,9,BLK,927.0,STOLEN,10763,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-10775,783,GO-20179009506,THEFT UNDER - BICYCLE,2017-07-05T00:00:00,2017,July,Wednesday,5,186,12,2017-07-05T00:00:00,2017,July,Wednesday,5,186,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,FIRENZE,MT,21,DGR,400.0,STOLEN,10764,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-10776,787,GO-20179009541,THEFT UNDER - BICYCLE,2017-07-06T00:00:00,2017,July,Thursday,6,187,8,2017-07-06T00:00:00,2017,July,Thursday,6,187,9,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,FJ,STROLL,RC,1,BLK,770.0,STOLEN,10765,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-10777,792,GO-20179009620,THEFT UNDER - BICYCLE,2017-07-06T00:00:00,2017,July,Thursday,6,187,10,2017-07-06T00:00:00,2017,July,Thursday,6,187,16,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,GI,FAST ROAD SLR-1,RC,10,GRY,1600.0,STOLEN,10766,"{'type': 'Point', 'coordinates': (-79.38820648, 43.66681234)}"
-10778,796,GO-20179009647,THEFT UNDER - BICYCLE,2017-07-07T00:00:00,2017,July,Friday,7,188,9,2017-07-08T00:00:00,2017,July,Saturday,8,189,1,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CODA ELITE,RG,27,BLK,1461.0,RECOVERED,10767,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10779,815,GO-20179009647,THEFT UNDER - BICYCLE,2017-07-07T00:00:00,2017,July,Friday,7,188,9,2017-07-08T00:00:00,2017,July,Saturday,8,189,1,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CODA ELITE,RG,27,BLK,906.0,STOLEN,10768,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10780,827,GO-20179009647,THEFT UNDER - BICYCLE,2017-07-07T00:00:00,2017,July,Friday,7,188,9,2017-07-08T00:00:00,2017,July,Saturday,8,189,1,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CODA ELITE,RG,27,BLK,906.0,STOLEN,10769,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10781,924,GO-20179010607,THEFT UNDER - BICYCLE,2017-07-19T00:00:00,2017,July,Wednesday,19,200,10,2017-07-19T00:00:00,2017,July,Wednesday,19,200,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,PR,,MT,10,PLE,150.0,STOLEN,10770,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-10782,931,GO-20179010681,THEFT UNDER - BICYCLE,2017-07-18T00:00:00,2017,July,Tuesday,18,199,14,2017-07-20T00:00:00,2017,July,Thursday,20,201,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,1,BLK,250.0,STOLEN,10771,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10783,935,GO-20179010710,THEFT UNDER,2017-07-19T00:00:00,2017,July,Wednesday,19,200,9,2017-07-20T00:00:00,2017,July,Thursday,20,201,22,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,,RG,24,SIL,1000.0,STOLEN,10772,"{'type': 'Point', 'coordinates': (-79.37843045, 43.65040714)}"
-10784,950,GO-20179010857,THEFT UNDER - BICYCLE,2016-11-24T00:00:00,2016,November,Thursday,24,329,13,2017-07-24T00:00:00,2017,July,Monday,24,205,13,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,3,OT,18,BLK,250.0,STOLEN,10773,"{'type': 'Point', 'coordinates': (-79.38461112, 43.65044055)}"
-10785,951,GO-20179010858,THEFT UNDER - BICYCLE,2017-07-19T00:00:00,2017,July,Wednesday,19,200,8,2017-07-23T00:00:00,2017,July,Sunday,23,204,9,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,7,BLU,0.0,STOLEN,10774,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-10786,973,GO-20179011002,THEFT UNDER - BICYCLE,2017-07-24T00:00:00,2017,July,Monday,24,205,22,2017-07-25T00:00:00,2017,July,Tuesday,25,206,16,D52,Toronto,76,Bay Street Corridor (76),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,UK,,RG,10,BLU,150.0,STOLEN,10775,"{'type': 'Point', 'coordinates': (-79.38601979, 43.65524051)}"
-10787,990,GO-20179011135,THEFT UNDER - BICYCLE,2017-07-25T00:00:00,2017,July,Tuesday,25,206,17,2017-07-27T00:00:00,2017,July,Thursday,27,208,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,GTX2,RC,21,RED,550.0,STOLEN,10776,"{'type': 'Point', 'coordinates': (-79.37733067, 43.64784591)}"
-10788,999,GO-20179011223,THEFT UNDER,2017-07-28T00:00:00,2017,July,Friday,28,209,9,2017-07-28T00:00:00,2017,July,Friday,28,209,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,04S2786A/071112,OT,21,RED,550.0,STOLEN,10777,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10789,1016,GO-20179011346,THEFT UNDER - BICYCLE,2017-07-28T00:00:00,2017,July,Friday,28,209,8,2017-07-30T00:00:00,2017,July,Sunday,30,211,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,,RC,14,BLK,1500.0,STOLEN,10778,"{'type': 'Point', 'coordinates': (-79.38673938, 43.66335885)}"
-10790,1042,GO-20179011581,THEFT UNDER,2017-08-02T00:00:00,2017,August,Wednesday,2,214,7,2017-08-02T00:00:00,2017,August,Wednesday,2,214,21,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,GI,LIV ALIGHT,OT,8,BLK,750.0,STOLEN,10779,"{'type': 'Point', 'coordinates': (-79.38618236, 43.65775862)}"
-10791,1043,GO-20179011594,THEFT UNDER - BICYCLE,2017-07-25T00:00:00,2017,July,Tuesday,25,206,22,2017-08-03T00:00:00,2017,August,Thursday,3,215,10,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,ORION 700C,OT,20,OTH,300.0,STOLEN,10780,"{'type': 'Point', 'coordinates': (-79.3879785, 43.66997438)}"
-10792,1047,GO-20179011632,THEFT UNDER,2017-07-26T00:00:00,2017,July,Wednesday,26,207,20,2017-08-03T00:00:00,2017,August,Thursday,3,215,14,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,UK,FOCUS URBAN 8 B,MT,8,GRY,1300.0,STOLEN,10781,"{'type': 'Point', 'coordinates': (-79.38820648, 43.66681234)}"
-10793,1057,GO-20179011744,THEFT UNDER - BICYCLE,2017-08-05T00:00:00,2017,August,Saturday,5,217,12,2017-08-05T00:00:00,2017,August,Saturday,5,217,15,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,CC,LUCERNE 700C CO,RG,20,BLK,500.0,STOLEN,10782,"{'type': 'Point', 'coordinates': (-79.38946225, 43.66523161)}"
-10794,1084,GO-20179011932,THEFT UNDER,2017-08-01T00:00:00,2017,August,Tuesday,1,213,10,2017-08-08T00:00:00,2017,August,Tuesday,8,220,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,DOLCE SPORT,RC,14,RED,1500.0,STOLEN,10783,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-10795,1090,GO-20179011970,THEFT UNDER - BICYCLE,2017-08-08T00:00:00,2017,August,Tuesday,8,220,21,2017-08-09T00:00:00,2017,August,Wednesday,9,221,2,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RG,4,DGR,650.0,STOLEN,10784,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-10796,1091,GO-20179011970,THEFT UNDER - BICYCLE,2017-08-08T00:00:00,2017,August,Tuesday,8,220,21,2017-08-09T00:00:00,2017,August,Wednesday,9,221,2,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,,FO,7,RED,450.0,STOLEN,10785,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-10797,1099,GO-20171432300,B&E,2017-08-08T00:00:00,2017,August,Tuesday,8,220,16,2017-08-09T00:00:00,2017,August,Wednesday,9,221,9,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,STREET RACER SR,RC,24,RED,2000.0,STOLEN,10786,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-10798,1101,GO-20179012024,THEFT UNDER,2017-07-25T00:00:00,2017,July,Tuesday,25,206,22,2017-08-09T00:00:00,2017,August,Wednesday,9,221,16,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,UK,INTERCEPT,EL,29,,1900.0,STOLEN,10787,"{'type': 'Point', 'coordinates': (-79.38671683, 43.66779)}"
-10799,1103,GO-20171445360,THEFT UNDER - BICYCLE,2017-07-21T00:00:00,2017,July,Friday,21,202,14,2017-08-11T00:00:00,2017,August,Friday,11,223,7,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,SUPERCYCLE,,MT,0,GRY,250.0,STOLEN,10788,"{'type': 'Point', 'coordinates': (-79.39219449, 43.66603246)}"
-10800,1117,GO-20179012138,THEFT UNDER - BICYCLE,2017-08-10T00:00:00,2017,August,Thursday,10,222,8,2017-08-10T00:00:00,2017,August,Thursday,10,222,20,D52,Toronto,76,Bay Street Corridor (76),"Police / Courts (Parole Board, Probation Office)",Other,NO,INDIE 4 (2015),RG,24,BLK,689.0,STOLEN,10789,"{'type': 'Point', 'coordinates': (-79.38605934000002, 43.6615638)}"
-10801,1120,GO-20179012165,THEFT UNDER - BICYCLE,2017-08-10T00:00:00,2017,August,Thursday,10,222,14,2017-08-11T00:00:00,2017,August,Friday,11,223,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,7,BLK,0.0,STOLEN,10790,"{'type': 'Point', 'coordinates': (-79.38492429, 43.65121654)}"
-10802,1122,GO-20179012210,THEFT UNDER - BICYCLE,2017-08-11T00:00:00,2017,August,Friday,11,223,20,2017-08-11T00:00:00,2017,August,Friday,11,223,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,FD806,FO,6,RED,600.0,STOLEN,10791,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-10803,1152,GO-20171467651,THEFT UNDER - BICYCLE,2017-07-29T00:00:00,2017,July,Saturday,29,210,0,2017-08-14T00:00:00,2017,August,Monday,14,226,16,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,RIDLEY ASTERIA,RC,1,BLKRED,1200.0,STOLEN,10792,"{'type': 'Point', 'coordinates': (-79.38437564, 43.65730783)}"
-10804,1158,GO-20171471635,THEFT UNDER - BICYCLE,2017-08-08T00:00:00,2017,August,Tuesday,8,220,17,2017-08-15T00:00:00,2017,August,Tuesday,15,227,10,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,P06050,MT,21,GRN,0.0,STOLEN,10793,"{'type': 'Point', 'coordinates': (-79.3879785, 43.66997438)}"
-10805,1161,GO-20179012515,THEFT UNDER - BICYCLE,2017-08-15T00:00:00,2017,August,Tuesday,15,227,8,2017-08-16T00:00:00,2017,August,Wednesday,16,228,8,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,GI,MOUNTAIN BIKE,MT,21,BLU,400.0,STOLEN,10794,"{'type': 'Point', 'coordinates': (-79.38268555, 43.64598268)}"
-10806,2675,GO-20181072942,THEFT UNDER - BICYCLE,2018-06-13T00:00:00,2018,June,Wednesday,13,164,15,2018-06-13T00:00:00,2018,June,Wednesday,13,164,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,RG,21,,,STOLEN,10833,"{'type': 'Point', 'coordinates': (-79.38268555, 43.64598268)}"
-10807,1177,GO-20179012739,THEFT UNDER - BICYCLE,2017-08-17T00:00:00,2017,August,Thursday,17,229,18,2017-08-18T00:00:00,2017,August,Friday,18,230,15,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KO,JAKE,TO,18,RED,800.0,STOLEN,10795,"{'type': 'Point', 'coordinates': (-79.37878196, 43.64896093)}"
-10808,1180,GO-20179012772,THEFT UNDER - BICYCLE,2017-08-18T00:00:00,2017,August,Friday,18,230,13,2017-08-18T00:00:00,2017,August,Friday,18,230,20,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CC,,RC,21,RED,450.0,STOLEN,10796,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-10809,1185,GO-20179012793,THEFT UNDER - BICYCLE,2017-08-18T00:00:00,2017,August,Friday,18,230,13,2017-08-18T00:00:00,2017,August,Friday,18,230,23,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,MODENA,RC,7,WHI,500.0,STOLEN,10797,"{'type': 'Point', 'coordinates': (-79.38740686, 43.66497543)}"
-10810,1197,GO-20179012898,THEFT UNDER - BICYCLE,2017-08-18T00:00:00,2017,August,Friday,18,230,13,2017-08-21T00:00:00,2017,August,Monday,21,233,10,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,OT,26,OTH,500.0,STOLEN,10798,"{'type': 'Point', 'coordinates': (-79.38209114, 43.64961443)}"
-10811,1207,GO-20179012989,THEFT UNDER - BICYCLE,2017-08-21T00:00:00,2017,August,Monday,21,233,14,2017-08-21T00:00:00,2017,August,Monday,21,233,23,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,CROSS TRAIL,RG,8,SIL,650.0,STOLEN,10799,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-10812,1211,GO-20171524471,THEFT UNDER - BICYCLE,2017-07-03T00:00:00,2017,July,Monday,3,184,2,2017-08-23T00:00:00,2017,August,Wednesday,23,235,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,OT,0,YEL,250.0,STOLEN,10800,"{'type': 'Point', 'coordinates': (-79.3861386, 43.66649311)}"
-10813,1212,GO-20171524471,THEFT UNDER - BICYCLE,2017-07-03T00:00:00,2017,July,Monday,3,184,2,2017-08-23T00:00:00,2017,August,Wednesday,23,235,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RALEIGH,,OT,0,PLE,360.0,STOLEN,10801,"{'type': 'Point', 'coordinates': (-79.3861386, 43.66649311)}"
-10814,4754,GO-20199021953,THEFT UNDER,2019-06-17T00:00:00,2019,June,Monday,17,168,14,2019-07-11T00:00:00,2019,July,Thursday,11,192,20,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,1,GRY,300.0,STOLEN,10834,"{'type': 'Point', 'coordinates': (-79.38671683, 43.66779)}"
-10815,1218,GO-20179013072,THEFT UNDER - BICYCLE,2017-08-22T00:00:00,2017,August,Tuesday,22,234,9,2017-08-22T00:00:00,2017,August,Tuesday,22,234,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RC,30,WHI,300.0,STOLEN,10802,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-10816,1227,GO-20171505247,THEFT UNDER - BICYCLE,2017-08-19T00:00:00,2017,August,Saturday,19,231,16,2017-08-20T00:00:00,2017,August,Sunday,20,232,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MIELE,UMBRIA 3,RG,27,BLU,500.0,STOLEN,10803,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-10817,1228,GO-20179013142,THEFT UNDER - BICYCLE,2017-08-22T00:00:00,2017,August,Tuesday,22,234,16,2017-08-23T00:00:00,2017,August,Wednesday,23,235,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,DEW C59 2013,RG,24,BLK,600.0,STOLEN,10804,"{'type': 'Point', 'coordinates': (-79.38353872, 43.64792395)}"
-10818,1233,GO-20171536939,THEFT OF EBIKE UNDER $5000,2017-08-24T00:00:00,2017,August,Thursday,24,236,8,2017-08-25T00:00:00,2017,August,Friday,25,237,8,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KUO,A2B,EL,10,BLK,2500.0,STOLEN,10805,"{'type': 'Point', 'coordinates': (-79.38209114, 43.64961443)}"
-10819,1244,GO-20179013284,THEFT UNDER - BICYCLE,2017-08-24T00:00:00,2017,August,Thursday,24,236,18,2017-08-24T00:00:00,2017,August,Thursday,24,236,22,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,ESCAPE 1,OT,27,BLK,600.0,STOLEN,10806,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-10820,1245,GO-20179013321,THEFT UNDER - BICYCLE,2017-08-24T00:00:00,2017,August,Thursday,24,236,9,2017-08-25T00:00:00,2017,August,Friday,25,237,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,YORKVILLE,OT,21,BLK,400.0,STOLEN,10807,"{'type': 'Point', 'coordinates': (-79.38063454, 43.65577409)}"
-10821,1261,GO-20179013551,THEFT UNDER,2017-08-28T00:00:00,2017,August,Monday,28,240,7,2017-08-28T00:00:00,2017,August,Monday,28,240,18,D52,Toronto,76,Bay Street Corridor (76),"Open Areas (Lakes, Parks, Rivers)",Outside,SC,,RG,18,BLK,350.0,STOLEN,10808,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-10822,1263,GO-20171555555,B&E,2017-08-28T00:00:00,2017,August,Monday,28,240,7,2017-08-28T00:00:00,2017,August,Monday,28,240,14,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CYCLEMANIA,,RG,18,BLK,1600.0,STOLEN,10809,"{'type': 'Point', 'coordinates': (-79.37968936, 43.64733439)}"
-10823,1289,GO-20179013871,THEFT UNDER - BICYCLE,2017-08-30T00:00:00,2017,August,Wednesday,30,242,12,2017-09-02T00:00:00,2017,September,Saturday,2,245,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CROSSBOW,RC,18,WHI,2800.0,STOLEN,10810,"{'type': 'Point', 'coordinates': (-79.37968936, 43.64733439)}"
-10824,1291,GO-20179013893,THEFT UNDER - BICYCLE,2017-08-29T00:00:00,2017,August,Tuesday,29,241,9,2017-09-02T00:00:00,2017,September,Saturday,2,245,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ECOVELO,RG,21,GRY,270.0,STOLEN,10811,"{'type': 'Point', 'coordinates': (-79.38618236, 43.65775862)}"
-10825,1308,GO-20171596959,THEFT UNDER - BICYCLE,2017-08-29T00:00:00,2017,August,Tuesday,29,241,16,2017-09-03T00:00:00,2017,September,Sunday,3,246,17,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,EARL,RG,1,,500.0,STOLEN,10812,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10826,1329,GO-20179014147,THEFT UNDER - BICYCLE,2017-08-28T00:00:00,2017,August,Monday,28,240,14,2017-09-06T00:00:00,2017,September,Wednesday,6,249,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,,MT,21,GRY,450.0,STOLEN,10813,"{'type': 'Point', 'coordinates': (-79.38712214, 43.65502365)}"
-10827,1334,GO-20179014005,THEFT UNDER - BICYCLE,2017-09-05T00:00:00,2017,September,Tuesday,5,248,10,2017-09-05T00:00:00,2017,September,Tuesday,5,248,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,DR DEW,MT,24,LGR,450.0,STOLEN,10814,"{'type': 'Point', 'coordinates': (-79.38738577, 43.66051487)}"
-10828,2518,GO-20189018061,THEFT UNDER - BICYCLE,2018-06-08T00:00:00,2018,June,Friday,8,159,20,2018-06-09T00:00:00,2018,June,Saturday,9,160,23,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,YORKVILLE,RG,21,SIL,500.0,RECOVERED,10815,"{'type': 'Point', 'coordinates': (-79.38671683, 43.66779)}"
-10829,2542,GO-20189018311,THEFT UNDER - BICYCLE,2018-06-08T00:00:00,2018,June,Friday,8,159,10,2018-06-12T00:00:00,2018,June,Tuesday,12,163,0,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,TR,7100,MT,12,SIL,575.0,STOLEN,10816,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-10830,18166,GO-20169011671,THEFT UNDER,2016-10-06T00:00:00,2016,October,Thursday,6,280,9,2016-10-06T00:00:00,2016,October,Thursday,6,280,16,D14,Toronto,95,Annex (95),Universities / Colleges,Educational,UK,ZYMOTIC V,MT,24,WHI,4500.0,STOLEN,21527,"{'type': 'Point', 'coordinates': (-79.40930544, 43.6742621)}"
-10831,2544,GO-20181047698,THEFT UNDER - BICYCLE,2018-06-09T00:00:00,2018,June,Saturday,9,160,17,2018-06-09T00:00:00,2018,June,Saturday,9,160,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,WETHEPEOPLE,OT,0,BLKBLU,700.0,STOLEN,10817,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-10832,2549,GO-20181048582,THEFT UNDER - BICYCLE,2018-06-09T00:00:00,2018,June,Saturday,9,160,18,2018-06-10T00:00:00,2018,June,Sunday,10,161,0,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,,OT,21,,2000.0,STOLEN,10818,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-10833,2563,GO-20189018690,THEFT UNDER - BICYCLE,2018-06-13T00:00:00,2018,June,Wednesday,13,164,10,2018-06-14T00:00:00,2018,June,Thursday,14,165,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,VITA,OT,8,PNK,1000.0,STOLEN,10819,"{'type': 'Point', 'coordinates': (-79.38640575, 43.65337704000001)}"
-10834,2584,GO-20189018915,THEFT UNDER - BICYCLE,2018-06-16T00:00:00,2018,June,Saturday,16,167,11,2018-06-16T00:00:00,2018,June,Saturday,16,167,11,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,TR,FX 2 22.5,RG,22,BLK,610.0,STOLEN,10820,"{'type': 'Point', 'coordinates': (-79.38437564, 43.65730783)}"
-10835,2587,GO-20189018955,THEFT UNDER,2018-06-14T00:00:00,2018,June,Thursday,14,165,8,2018-06-16T00:00:00,2018,June,Saturday,16,167,15,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,RM,SVELTO RRD,RG,1,WHI,1600.0,STOLEN,10821,"{'type': 'Point', 'coordinates': (-79.38944954, 43.65752945)}"
-10836,2590,GO-20189018963,THEFT UNDER,2018-06-16T00:00:00,2018,June,Saturday,16,167,9,2018-06-16T00:00:00,2018,June,Saturday,16,167,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MA,BRIDGEWAY,RG,10,DBL,500.0,STOLEN,10822,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-10837,4689,GO-20199021291,THEFT UNDER,2019-07-06T00:00:00,2019,July,Saturday,6,187,22,2019-07-06T00:00:00,2019,July,Saturday,6,187,22,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,RED,1400.0,STOLEN,10823,"{'type': 'Point', 'coordinates': (-79.39098691, 43.66935825)}"
-10838,2593,GO-20189019016,THEFT UNDER - BICYCLE,2018-06-15T00:00:00,2018,June,Friday,15,166,12,2018-06-17T00:00:00,2018,June,Sunday,17,168,10,D52,Toronto,76,Bay Street Corridor (76),"Open Areas (Lakes, Parks, Rivers)",Outside,GI,CONTEND SL2 GIA,RC,10,BLK,1371.0,STOLEN,10824,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-10839,2610,GO-20181047698,THEFT UNDER - BICYCLE,2018-06-09T00:00:00,2018,June,Saturday,9,160,17,2018-06-09T00:00:00,2018,June,Saturday,9,160,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,BM,15,BLK,700.0,STOLEN,10825,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-10840,4715,GO-20199021539,THEFT UNDER,2019-07-08T00:00:00,2019,July,Monday,8,189,16,2019-07-09T00:00:00,2019,July,Tuesday,9,190,0,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,DEW PLUS,RG,24,BLK,1324.0,STOLEN,10826,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-10841,2620,GO-20189019374,THEFT UNDER - BICYCLE,2018-06-16T00:00:00,2018,June,Saturday,16,167,15,2018-06-19T00:00:00,2018,June,Tuesday,19,170,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,STUFF (2008),MT,12,BLU,200.0,STOLEN,10827,"{'type': 'Point', 'coordinates': (-79.38712214, 43.65502365)}"
-10842,4716,GO-20199021539,THEFT UNDER,2019-07-08T00:00:00,2019,July,Monday,8,189,16,2019-07-09T00:00:00,2019,July,Tuesday,9,190,0,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MYKA DISC SE,MT,21,SIL,722.0,STOLEN,10828,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-10843,2643,GO-20189019726,THEFT UNDER - BICYCLE,2018-06-21T00:00:00,2018,June,Thursday,21,172,12,2018-06-21T00:00:00,2018,June,Thursday,21,172,19,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,,RG,27,BLU,1000.0,STOLEN,10829,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-10844,4726,GO-20199021663,THEFT UNDER,2019-07-09T00:00:00,2019,July,Tuesday,9,190,12,2019-07-09T00:00:00,2019,July,Tuesday,9,190,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,QUICK 6 C4,RG,27,BLK,900.0,STOLEN,10830,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-10845,2655,GO-20189019769,THEFT UNDER - BICYCLE,2018-06-21T00:00:00,2018,June,Thursday,21,172,23,2018-06-22T00:00:00,2018,June,Friday,22,173,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,ZEKTOR SSB,RG,8,BLK,2300.0,STOLEN,10831,"{'type': 'Point', 'coordinates': (-79.38714344, 43.66436762)}"
-10846,4753,GO-20191204234,B&E,2019-06-28T00:00:00,2019,June,Friday,28,179,18,2019-07-12T00:00:00,2019,July,Friday,12,193,10,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,RUBY SPORT,RC,10,WHI,2825.0,STOLEN,10832,"{'type': 'Point', 'coordinates': (-79.38236226, 43.65027737)}"
-10847,2678,GO-20189020192,THEFT UNDER - BICYCLE,2018-06-22T00:00:00,2018,June,Friday,22,173,20,2018-06-25T00:00:00,2018,June,Monday,25,176,22,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RA,BACK ALLEY,RG,1,BLK,520.0,STOLEN,10835,"{'type': 'Point', 'coordinates': (-79.39348694, 43.66726478)}"
-10848,2683,GO-20181148804,B&E W'INTENT,2018-06-24T00:00:00,2018,June,Sunday,24,175,5,2018-06-26T00:00:00,2018,June,Tuesday,26,177,8,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CERVELO,R3 TEAM,RC,10,WHI,4183.0,RECOVERED,10836,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-10849,2686,GO-20189020278,THEFT UNDER - BICYCLE,2018-06-25T00:00:00,2018,June,Monday,25,176,6,2018-06-25T00:00:00,2018,June,Monday,25,176,19,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,R900,RC,12,WHI,0.0,STOLEN,10837,"{'type': 'Point', 'coordinates': (-79.37878196, 43.64896093)}"
-10850,2691,GO-20189020371,THEFT UNDER - BICYCLE,2018-06-19T00:00:00,2018,June,Tuesday,19,170,21,2018-06-26T00:00:00,2018,June,Tuesday,26,177,23,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RC,21,WHI,2000.0,STOLEN,10838,"{'type': 'Point', 'coordinates': (-79.38407058, 43.649187680000004)}"
-10851,2696,GO-20189020408,THEFT UNDER - BICYCLE,2018-06-26T00:00:00,2018,June,Tuesday,26,177,14,2018-06-27T00:00:00,2018,June,Wednesday,27,178,9,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SILHOUETTE,TO,27,SIL,700.0,STOLEN,10839,"{'type': 'Point', 'coordinates': (-79.38238489, 43.65176074)}"
-10852,2703,GO-20189020495,THEFT UNDER - BICYCLE,2018-06-27T00:00:00,2018,June,Wednesday,27,178,14,2018-06-27T00:00:00,2018,June,Wednesday,27,178,16,D52,Toronto,76,Bay Street Corridor (76),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,,RG,21,BLU,800.0,STOLEN,10840,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-10853,2718,GO-20189020710,THEFT UNDER - BICYCLE,2018-06-29T00:00:00,2018,June,Friday,29,180,23,2018-06-30T00:00:00,2018,June,Saturday,30,181,9,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RG,30,TRQ,200.0,STOLEN,10841,"{'type': 'Point', 'coordinates': (-79.38605934000002, 43.6615638)}"
-10854,2770,GO-20189021429,THEFT UNDER - BICYCLE,2018-07-04T00:00:00,2018,July,Wednesday,4,185,23,2018-07-06T00:00:00,2018,July,Friday,6,187,8,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,RA,POLYCARBONATE,RG,3,GRY,750.0,STOLEN,10842,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-10855,2774,GO-20189021501,THEFT UNDER,2018-07-06T00:00:00,2018,July,Friday,6,187,13,2018-07-06T00:00:00,2018,July,Friday,6,187,23,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,,RG,24,GRY,700.0,STOLEN,10843,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-10856,2790,GO-20189021756,THEFT UNDER - BICYCLE,2018-07-07T00:00:00,2018,July,Saturday,7,188,15,2018-07-10T00:00:00,2018,July,Tuesday,10,191,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,VYBE D7,FO,7,BLK,620.0,STOLEN,10844,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10857,2797,GO-20189021796,THEFT UNDER,2018-07-09T00:00:00,2018,July,Monday,9,190,18,2018-07-09T00:00:00,2018,July,Monday,9,190,20,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,SIRRUS V MEN BL,RG,7,BLK,1085.0,STOLEN,10845,"{'type': 'Point', 'coordinates': (-79.38209114, 43.64961443)}"
-10858,2798,GO-20181260786,THEFT UNDER - BICYCLE,2018-07-02T00:00:00,2018,July,Monday,2,183,16,2018-07-11T00:00:00,2018,July,Wednesday,11,192,6,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,NORTHROCK,,MT,0,GRN,400.0,STOLEN,10846,"{'type': 'Point', 'coordinates': (-79.38737611, 43.66847728)}"
-10859,2816,GO-20189022059,THEFT UNDER - BICYCLE,2018-07-06T00:00:00,2018,July,Friday,6,187,21,2018-07-11T00:00:00,2018,July,Wednesday,11,192,9,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,METIER MIXTE,RG,7,YEL,600.0,STOLEN,10847,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-10860,2828,GO-2018961504,B&E,2018-05-25T00:00:00,2018,May,Friday,25,145,2,2018-05-25T00:00:00,2018,May,Friday,25,145,2,D52,Toronto,76,Bay Street Corridor (76),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,,RG,5,,,STOLEN,10848,"{'type': 'Point', 'coordinates': (-79.38634339, 43.66246955)}"
-10861,2831,GO-20189022224,THEFT UNDER,2018-07-12T00:00:00,2018,July,Thursday,12,193,8,2018-07-12T00:00:00,2018,July,Thursday,12,193,20,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,17 VERZA SPEED,RG,21,TRQ,700.0,STOLEN,10849,"{'type': 'Point', 'coordinates': (-79.38316368, 43.65431877)}"
-10862,2840,GO-20189022331,THEFT UNDER - BICYCLE,2018-07-13T00:00:00,2018,July,Friday,13,194,17,2018-07-13T00:00:00,2018,July,Friday,13,194,17,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,,RG,30,BLK,230.0,STOLEN,10850,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-10863,2842,GO-20189022416,THEFT UNDER - BICYCLE,2018-07-14T00:00:00,2018,July,Saturday,14,195,12,2018-07-14T00:00:00,2018,July,Saturday,14,195,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,SAVAGE,MT,21,GRY,200.0,STOLEN,10851,"{'type': 'Point', 'coordinates': (-79.3811853, 43.65703802)}"
-10864,2855,GO-20189022645,THEFT UNDER - BICYCLE,2018-07-15T00:00:00,2018,July,Sunday,15,196,16,2018-07-16T00:00:00,2018,July,Monday,16,197,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,RG,7,,700.0,STOLEN,10852,"{'type': 'Point', 'coordinates': (-79.3802391, 43.64865033)}"
-10865,2862,GO-20189022741,THEFT UNDER - BICYCLE,2018-07-17T00:00:00,2018,July,Tuesday,17,198,10,2018-07-17T00:00:00,2018,July,Tuesday,17,198,10,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,VFR 4,RG,7,DBL,520.0,STOLEN,10853,"{'type': 'Point', 'coordinates': (-79.38737611, 43.66847728)}"
-10866,2863,GO-20189022891,THEFT UNDER - BICYCLE,2018-07-15T00:00:00,2018,July,Sunday,15,196,7,2018-07-18T00:00:00,2018,July,Wednesday,18,199,11,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KO,,MT,18,BLK,600.0,STOLEN,10854,"{'type': 'Point', 'coordinates': (-79.38768427, 43.66564487000001)}"
-10867,2890,GO-20181323782,THEFT UNDER - BICYCLE,2018-07-11T00:00:00,2018,July,Wednesday,11,192,17,2018-07-12T00:00:00,2018,July,Thursday,12,193,9,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,OT,0,,700.0,STOLEN,10855,"{'type': 'Point', 'coordinates': (-79.38737611, 43.66847728)}"
-10868,2921,GO-20189023513,THEFT UNDER - BICYCLE,2018-07-22T00:00:00,2018,July,Sunday,22,203,17,2018-07-23T00:00:00,2018,July,Monday,23,204,10,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,1,SIL,1600.0,STOLEN,10856,"{'type': 'Point', 'coordinates': (-79.38847714, 43.66743649)}"
-10869,2929,GO-20189023531,THEFT UNDER - BICYCLE,2018-07-23T00:00:00,2018,July,Monday,23,204,0,2018-07-23T00:00:00,2018,July,Monday,23,204,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,DENALI,RG,21,RED,300.0,STOLEN,10857,"{'type': 'Point', 'coordinates': (-79.3888294, 43.66819662)}"
-10870,2932,GO-20189023623,THEFT UNDER - BICYCLE,2018-07-20T00:00:00,2018,July,Friday,20,201,18,2018-07-23T00:00:00,2018,July,Monday,23,204,18,D52,Toronto,76,Bay Street Corridor (76),Bar / Restaurant,Commercial,SU,,MT,20,BLK,125.0,STOLEN,10858,"{'type': 'Point', 'coordinates': (-79.38407058, 43.649187680000004)}"
-10871,2934,GO-20189023637,THEFT UNDER,2018-07-18T00:00:00,2018,July,Wednesday,18,199,17,2018-07-23T00:00:00,2018,July,Monday,23,204,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,6,TRQ,400.0,STOLEN,10859,"{'type': 'Point', 'coordinates': (-79.38467283, 43.65807476)}"
-10872,2942,GO-20189023762,THEFT UNDER - BICYCLE,2018-07-24T00:00:00,2018,July,Tuesday,24,205,10,2018-07-24T00:00:00,2018,July,Tuesday,24,205,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GF,ADVANCE,MT,24,BLU,500.0,STOLEN,10860,"{'type': 'Point', 'coordinates': (-79.38738577, 43.66051487)}"
-10873,2943,GO-20181357140,THEFT UNDER - BICYCLE,2018-07-16T00:00:00,2018,July,Monday,16,197,20,2018-07-17T00:00:00,2018,July,Tuesday,17,198,13,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,OT,0,,400.0,STOLEN,10861,"{'type': 'Point', 'coordinates': (-79.38737611, 43.66847728)}"
-10874,2954,GO-20189023829,THEFT UNDER - BICYCLE,2018-07-24T00:00:00,2018,July,Tuesday,24,205,12,2018-07-25T00:00:00,2018,July,Wednesday,25,206,12,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RA,TARANTULA,MT,24,GRY,0.0,STOLEN,10862,"{'type': 'Point', 'coordinates': (-79.37903365, 43.65028111)}"
-10875,2956,GO-20189023855,THEFT UNDER - BICYCLE,2018-07-25T00:00:00,2018,July,Wednesday,25,206,10,2018-07-25T00:00:00,2018,July,Wednesday,25,206,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SC2,RG,18,BLU,500.0,STOLEN,10863,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-10876,2957,GO-20189023912,THEFT UNDER - BICYCLE,2018-07-24T00:00:00,2018,July,Tuesday,24,205,9,2018-07-25T00:00:00,2018,July,Wednesday,25,206,19,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RC,14,RED,1500.0,STOLEN,10864,"{'type': 'Point', 'coordinates': (-79.3802391, 43.64865033)}"
-10877,2959,GO-20189023913,THEFT UNDER - BICYCLE,2018-07-25T00:00:00,2018,July,Wednesday,25,206,18,2018-07-25T00:00:00,2018,July,Wednesday,25,206,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,3,,1200.0,STOLEN,10865,"{'type': 'Point', 'coordinates': (-79.38476701, 43.64766165)}"
-10878,2981,GO-20181371204,THEFT UNDER - BICYCLE,2018-07-19T00:00:00,2018,July,Thursday,19,200,10,2018-07-20T00:00:00,2018,July,Friday,20,201,11,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,OT,0,,,STOLEN,10866,"{'type': 'Point', 'coordinates': (-79.39219449, 43.66603246)}"
-10879,3018,GO-20181391639,THEFT UNDER - BICYCLE,2018-07-07T00:00:00,2018,July,Saturday,7,188,17,2018-07-20T00:00:00,2018,July,Friday,20,201,12,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,MT,0,,340.0,STOLEN,10867,"{'type': 'Point', 'coordinates': (-79.38737611, 43.66847728)}"
-10880,3019,GO-20189024452,THEFT UNDER - BICYCLE,2018-07-29T00:00:00,2018,July,Sunday,29,210,17,2018-07-29T00:00:00,2018,July,Sunday,29,210,17,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,GI,DEFY 2,RC,10,BLK,1450.0,STOLEN,10868,"{'type': 'Point', 'coordinates': (-79.38482092, 43.65454718)}"
-10881,3025,GO-20189024490,THEFT UNDER - BICYCLE,2018-07-26T00:00:00,2018,July,Thursday,26,207,8,2018-07-30T00:00:00,2018,July,Monday,30,211,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ALLEX,RC,8,BLK,1200.0,STOLEN,10869,"{'type': 'Point', 'coordinates': (-79.38103127, 43.65056603)}"
-10882,3030,GO-20189024569,THEFT UNDER - BICYCLE,2018-07-29T00:00:00,2018,July,Sunday,29,210,18,2018-07-30T00:00:00,2018,July,Monday,30,211,22,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,4,,0.0,STOLEN,10870,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-10883,3036,GO-20181399927,THEFT UNDER,2018-07-13T00:00:00,2018,July,Friday,13,194,22,2018-07-31T00:00:00,2018,July,Tuesday,31,212,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FUJI,CCR2,RC,12,WHI,1191.0,STOLEN,10871,"{'type': 'Point', 'coordinates': (-79.38353872, 43.64792395)}"
-10884,3039,GO-20189024709,THEFT UNDER - BICYCLE,2018-07-29T00:00:00,2018,July,Sunday,29,210,7,2018-07-31T00:00:00,2018,July,Tuesday,31,212,19,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,COMMUTER BIKE,RG,10,BLU,400.0,STOLEN,10872,"{'type': 'Point', 'coordinates': (-79.38738577, 43.66051487)}"
-10885,3051,GO-20181415669,THEFT UNDER - BICYCLE,2018-07-09T00:00:00,2018,July,Monday,9,190,18,2018-08-02T00:00:00,2018,August,Thursday,2,214,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DIAMONDBACK,,RG,1,BLK,400.0,STOLEN,10873,"{'type': 'Point', 'coordinates': (-79.38167842, 43.65189355)}"
-10886,3061,GO-20189024924,THEFT UNDER - BICYCLE,2018-08-02T00:00:00,2018,August,Thursday,2,214,1,2018-08-02T00:00:00,2018,August,Thursday,2,214,19,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,TR,TREK 18 FX2 BLK,OT,8,BLK,852.0,STOLEN,10874,"{'type': 'Point', 'coordinates': (-79.38238489, 43.65176074)}"
-10887,3084,GO-20189025207,THEFT UNDER,2018-04-02T00:00:00,2018,April,Monday,2,92,0,2018-08-05T00:00:00,2018,August,Sunday,5,217,16,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,TR,,RG,7,BLK,550.0,STOLEN,10875,"{'type': 'Point', 'coordinates': (-79.38581514, 43.66081576)}"
-10888,3090,GO-20189025278,THEFT UNDER - BICYCLE,2018-08-04T00:00:00,2018,August,Saturday,4,216,21,2018-08-06T00:00:00,2018,August,Monday,6,218,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,TRANSEO,RG,28,BLK,550.0,STOLEN,10876,"{'type': 'Point', 'coordinates': (-79.38702746, 43.66853925)}"
-10889,3096,GO-20189025338,THEFT UNDER - BICYCLE,2018-08-06T00:00:00,2018,August,Monday,6,218,18,2018-08-06T00:00:00,2018,August,Monday,6,218,19,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,MESA 2,MT,7,DBL,250.0,STOLEN,10877,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10890,3111,GO-20189025474,THEFT UNDER - BICYCLE,2018-08-07T00:00:00,2018,August,Tuesday,7,219,15,2018-08-07T00:00:00,2018,August,Tuesday,7,219,21,D52,Toronto,76,Bay Street Corridor (76),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,OT,22,GRY,1449.0,STOLEN,10878,"{'type': 'Point', 'coordinates': (-79.3879785, 43.66997438)}"
-10891,3112,GO-20189025483,THEFT UNDER - BICYCLE,2018-08-07T00:00:00,2018,August,Tuesday,7,219,18,2018-08-07T00:00:00,2018,August,Tuesday,7,219,23,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,SERIES 3,EL,20,BLK,1600.0,STOLEN,10879,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-10892,3118,GO-20189025591,THEFT UNDER - BICYCLE,2018-08-08T00:00:00,2018,August,Wednesday,8,220,17,2018-08-08T00:00:00,2018,August,Wednesday,8,220,23,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,LAUNCH,BM,1,DBL,750.0,STOLEN,10880,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10893,3120,GO-20189025606,THEFT UNDER - BICYCLE,2018-08-08T00:00:00,2018,August,Wednesday,8,220,17,2018-08-08T00:00:00,2018,August,Wednesday,8,220,23,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ARCADE,BM,1,BLK,700.0,STOLEN,10881,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10894,3128,GO-20189025474,THEFT UNDER - BICYCLE,2018-08-07T00:00:00,2018,August,Tuesday,7,219,15,2018-08-07T00:00:00,2018,August,Tuesday,7,219,21,D52,Toronto,76,Bay Street Corridor (76),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,OT,22,GRY,1449.0,STOLEN,10882,"{'type': 'Point', 'coordinates': (-79.3879785, 43.66997438)}"
-10895,3147,GO-20189025836,THEFT UNDER,2018-08-10T00:00:00,2018,August,Friday,10,222,9,2018-08-10T00:00:00,2018,August,Friday,10,222,18,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MA,KENTFIELD,RG,21,BLK,452.0,STOLEN,10883,"{'type': 'Point', 'coordinates': (-79.38209114, 43.64961443)}"
-10896,3155,GO-20189025906,THEFT UNDER - BICYCLE,2018-08-10T00:00:00,2018,August,Friday,10,222,8,2018-08-10T00:00:00,2018,August,Friday,10,222,18,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,,TO,21,BLK,800.0,STOLEN,10884,"{'type': 'Point', 'coordinates': (-79.38209114, 43.64961443)}"
-10897,3188,GO-20189026259,THEFT UNDER,2018-08-12T00:00:00,2018,August,Sunday,12,224,8,2018-08-13T00:00:00,2018,August,Monday,13,225,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,,RG,1,LGR,200.0,STOLEN,10885,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-10898,3196,GO-20189026334,THEFT UNDER - BICYCLE,2018-08-04T00:00:00,2018,August,Saturday,4,216,13,2018-08-14T00:00:00,2018,August,Tuesday,14,226,13,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,EM,EMMO,EL,35,GRY,500.0,STOLEN,10886,"{'type': 'Point', 'coordinates': (-79.38584448, 43.65698887)}"
-10899,3197,GO-20189026338,THEFT UNDER,2018-08-14T00:00:00,2018,August,Tuesday,14,226,7,2018-08-14T00:00:00,2018,August,Tuesday,14,226,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,TREK BONTRAGER,RG,11,,500.0,STOLEN,10887,"{'type': 'Point', 'coordinates': (-79.38634339, 43.66246955)}"
-10900,3204,GO-20189026458,THEFT UNDER - BICYCLE,2018-08-14T00:00:00,2018,August,Tuesday,14,226,9,2018-08-15T00:00:00,2018,August,Wednesday,15,227,0,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RG,24,GRY,700.0,STOLEN,10888,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-10901,3209,GO-20189026536,THEFT UNDER - BICYCLE,2018-08-15T00:00:00,2018,August,Wednesday,15,227,8,2018-08-15T00:00:00,2018,August,Wednesday,15,227,18,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,HYBRID,RG,1,BLU,400.0,STOLEN,10889,"{'type': 'Point', 'coordinates': (-79.3802391, 43.64865033)}"
-10902,3217,GO-20189026572,THEFT UNDER - BICYCLE,2018-08-15T00:00:00,2018,August,Wednesday,15,227,20,2018-08-16T00:00:00,2018,August,Thursday,16,228,0,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,CC,,MT,21,RED,250.0,STOLEN,10890,"{'type': 'Point', 'coordinates': (-79.38402022, 43.65643576000001)}"
-10903,3223,GO-20189026608,THEFT UNDER - BICYCLE,2018-08-15T00:00:00,2018,August,Wednesday,15,227,13,2018-08-15T00:00:00,2018,August,Wednesday,15,227,16,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,CC,,MT,21,ONG,600.0,STOLEN,10891,"{'type': 'Point', 'coordinates': (-79.38892782, 43.65634783)}"
-10904,3224,GO-20189026617,THEFT UNDER - BICYCLE,2018-08-14T00:00:00,2018,August,Tuesday,14,226,8,2018-08-16T00:00:00,2018,August,Thursday,16,228,10,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,7.4,OT,27,WHI,900.0,STOLEN,10892,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10905,3233,GO-20181516402,THEFT UNDER - BICYCLE,2018-08-10T00:00:00,2018,August,Friday,10,222,13,2018-08-13T00:00:00,2018,August,Monday,13,225,21,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,OT,21,,418.0,STOLEN,10893,"{'type': 'Point', 'coordinates': (-79.38737611, 43.66847728)}"
-10906,3234,GO-20181516402,THEFT UNDER - BICYCLE,2018-08-10T00:00:00,2018,August,Friday,10,222,13,2018-08-13T00:00:00,2018,August,Monday,13,225,21,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,OT,21,,430.0,STOLEN,10894,"{'type': 'Point', 'coordinates': (-79.38737611, 43.66847728)}"
-10907,3281,GO-20189027362,THEFT UNDER - BICYCLE,2018-08-20T00:00:00,2018,August,Monday,20,232,18,2018-08-21T00:00:00,2018,August,Tuesday,21,233,19,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,LIFESTYLE,RG,18,BLK,600.0,STOLEN,10895,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-10908,3290,GO-20189027505,THEFT UNDER - BICYCLE,2018-08-22T00:00:00,2018,August,Wednesday,22,234,18,2018-08-22T00:00:00,2018,August,Wednesday,22,234,18,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,CA,QUICK DISK 5,RG,27,BLK,1400.0,STOLEN,10896,"{'type': 'Point', 'coordinates': (-79.3861386, 43.66649311)}"
-10909,3298,GO-20189027594,THEFT UNDER - BICYCLE,2018-08-23T00:00:00,2018,August,Thursday,23,235,11,2018-08-23T00:00:00,2018,August,Thursday,23,235,13,D52,Toronto,76,Bay Street Corridor (76),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,,RG,3,DGR,0.0,STOLEN,10897,"{'type': 'Point', 'coordinates': (-79.37760867, 43.64852311)}"
-10910,3299,GO-20189027626,THEFT UNDER - BICYCLE,2018-08-22T00:00:00,2018,August,Wednesday,22,234,16,2018-08-23T00:00:00,2018,August,Thursday,23,235,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,COMMUTER,RG,7,BLU,350.0,STOLEN,10898,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-10911,3300,GO-20189027639,THEFT UNDER - BICYCLE,2018-08-22T00:00:00,2018,August,Wednesday,22,234,20,2018-08-23T00:00:00,2018,August,Thursday,23,235,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,BLAST,MT,24,BLK,300.0,STOLEN,10899,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-10912,3313,GO-20189027837,THEFT UNDER - BICYCLE,2018-08-24T00:00:00,2018,August,Friday,24,236,8,2018-08-24T00:00:00,2018,August,Friday,24,236,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MO,D,MT,18,RED,200.0,STOLEN,10900,"{'type': 'Point', 'coordinates': (-79.38353872, 43.64792395)}"
-10913,3316,GO-20189027868,THEFT UNDER - BICYCLE,2018-08-24T00:00:00,2018,August,Friday,24,236,22,2018-08-25T00:00:00,2018,August,Saturday,25,237,1,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,2018 700 M QUIC,RG,8,BLK,590.0,STOLEN,10901,"{'type': 'Point', 'coordinates': (-79.39045505, 43.65985872)}"
-10914,3317,GO-20189027875,THEFT UNDER,2018-08-24T00:00:00,2018,August,Friday,24,236,8,2018-08-25T00:00:00,2018,August,Saturday,25,237,7,D52,Toronto,76,Bay Street Corridor (76),Unknown,Other,UK,,OT,21,GRN,300.0,STOLEN,10902,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10915,3320,GO-20189027915,THEFT UNDER - BICYCLE,2018-08-24T00:00:00,2018,August,Friday,24,236,14,2018-08-25T00:00:00,2018,August,Saturday,25,237,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,ALPHA 1.1,RC,16,BLU,900.0,STOLEN,10903,"{'type': 'Point', 'coordinates': (-79.38402022, 43.65643576000001)}"
-10916,3322,GO-20189027957,THEFT UNDER - BICYCLE,2018-08-25T00:00:00,2018,August,Saturday,25,237,16,2018-08-25T00:00:00,2018,August,Saturday,25,237,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,24,GRY,450.0,STOLEN,10904,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10917,3323,GO-20189027957,THEFT UNDER - BICYCLE,2018-08-25T00:00:00,2018,August,Saturday,25,237,16,2018-08-25T00:00:00,2018,August,Saturday,25,237,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,MT,21,RED,0.0,STOLEN,10905,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10918,3332,GO-20181570017,THEFT OF EBIKE UNDER $5000,2018-08-20T00:00:00,2018,August,Monday,20,232,9,2018-08-25T00:00:00,2018,August,Saturday,25,237,7,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,ELECTRA,SSAM,EL,20,BLK,400.0,STOLEN,10906,"{'type': 'Point', 'coordinates': (-79.38129397, 43.65116987)}"
-10919,3339,GO-20189028211,THEFT UNDER - BICYCLE,2018-08-27T00:00:00,2018,August,Monday,27,239,11,2018-08-28T00:00:00,2018,August,Tuesday,28,240,2,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,700C,OT,15,,500.0,STOLEN,10907,"{'type': 'Point', 'coordinates': (-79.38374902, 43.66302137000001)}"
-10920,3344,GO-20189028318,THEFT UNDER - BICYCLE,2018-08-23T00:00:00,2018,August,Thursday,23,235,20,2018-08-28T00:00:00,2018,August,Tuesday,28,240,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,1,RED,350.0,STOLEN,10908,"{'type': 'Point', 'coordinates': (-79.38738577, 43.66051487)}"
-10921,3354,GO-20189028534,THEFT UNDER - BICYCLE,2018-08-29T00:00:00,2018,August,Wednesday,29,241,8,2018-08-30T00:00:00,2018,August,Thursday,30,242,9,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,SC,,RG,9,BLK,700.0,STOLEN,10909,"{'type': 'Point', 'coordinates': (-79.38771667, 43.66119164)}"
-10922,3364,GO-20189028584,THEFT UNDER - BICYCLE,2018-08-30T00:00:00,2018,August,Thursday,30,242,5,2018-08-30T00:00:00,2018,August,Thursday,30,242,15,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,MILANO,OT,21,BLK,550.0,STOLEN,10910,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-10923,4755,GO-20199021964,THEFT UNDER,2019-07-11T00:00:00,2019,July,Thursday,11,192,13,2019-07-11T00:00:00,2019,July,Thursday,11,192,21,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,SU,,RG,6,BLK,226.0,STOLEN,10911,"{'type': 'Point', 'coordinates': (-79.38129397, 43.65116987)}"
-10924,4774,GO-20199022351,THEFT UNDER,2019-07-14T00:00:00,2019,July,Sunday,14,195,13,2019-07-15T00:00:00,2019,July,Monday,15,196,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,1,BLK,200.0,STOLEN,10912,"{'type': 'Point', 'coordinates': (-79.3811853, 43.65703802)}"
-10925,4776,GO-20199022365,THEFT UNDER,2019-07-15T00:00:00,2019,July,Monday,15,196,15,2019-07-16T00:00:00,2019,July,Tuesday,16,197,9,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,CORSA 1,RG,7,BGE,675.0,STOLEN,10913,"{'type': 'Point', 'coordinates': (-79.38238489, 43.65176074)}"
-10926,4788,GO-20199022585,THEFT UNDER,2019-07-15T00:00:00,2019,July,Monday,15,196,9,2019-07-16T00:00:00,2019,July,Tuesday,16,197,19,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,OPUS,RG,21,RED,60.0,STOLEN,10914,"{'type': 'Point', 'coordinates': (-79.38209114, 43.64961443)}"
-10927,4791,GO-20199022689,THEFT UNDER,2019-07-17T00:00:00,2019,July,Wednesday,17,198,13,2019-07-17T00:00:00,2019,July,Wednesday,17,198,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MARRAKESH,TO,27,DBL,2500.0,STOLEN,10915,"{'type': 'Point', 'coordinates': (-79.38129397, 43.65116987)}"
-10928,4799,GO-20199022842,THEFT UNDER,2019-07-18T00:00:00,2019,July,Thursday,18,199,13,2019-07-18T00:00:00,2019,July,Thursday,18,199,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,DEL REY,TO,24,GRY,250.0,STOLEN,10916,"{'type': 'Point', 'coordinates': (-79.38565688, 43.65832672)}"
-10929,4800,GO-20199022842,THEFT UNDER,2019-07-18T00:00:00,2019,July,Thursday,18,199,13,2019-07-18T00:00:00,2019,July,Thursday,18,199,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,QUICK 5,RG,24,GRY,350.0,STOLEN,10917,"{'type': 'Point', 'coordinates': (-79.38565688, 43.65832672)}"
-10930,4805,GO-20191357638,THEFT UNDER,2019-07-19T00:00:00,2019,July,Friday,19,200,18,2019-07-19T00:00:00,2019,July,Friday,19,200,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,M365,SC,1,BLK,600.0,STOLEN,10918,"{'type': 'Point', 'coordinates': (-79.37968936, 43.64733439)}"
-10931,4807,GO-20199022914,THEFT UNDER,2019-07-19T00:00:00,2019,July,Friday,19,200,13,2019-07-19T00:00:00,2019,July,Friday,19,200,13,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RG,1,BLK,350.0,STOLEN,10919,"{'type': 'Point', 'coordinates': (-79.38581514, 43.66081576)}"
-10932,4810,GO-20199022978,THEFT UNDER,2019-07-19T00:00:00,2019,July,Friday,19,200,8,2019-07-19T00:00:00,2019,July,Friday,19,200,20,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,GI,ESCAPE 2,RG,24,GRY,790.0,STOLEN,10920,"{'type': 'Point', 'coordinates': (-79.38353872, 43.64792395)}"
-10933,4813,GO-20199022960,THEFT UNDER,2019-07-18T00:00:00,2019,July,Thursday,18,199,21,2019-07-19T00:00:00,2019,July,Friday,19,200,16,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,AVALANCHE SPORT,MT,9,BLU,758.0,STOLEN,10921,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10934,4815,GO-20199023024,THEFT UNDER,2019-07-20T00:00:00,2019,July,Saturday,20,201,14,2019-07-20T00:00:00,2019,July,Saturday,20,201,14,D52,Toronto,76,Bay Street Corridor (76),Bar / Restaurant,Commercial,OT,SAVONA,MT,21,PLE,400.0,STOLEN,10922,"{'type': 'Point', 'coordinates': (-79.38702746, 43.66853925)}"
-10935,4825,GO-20191342777,THEFT UNDER - BICYCLE,2019-07-17T00:00:00,2019,July,Wednesday,17,198,15,2019-07-17T00:00:00,2019,July,Wednesday,17,198,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,VIPER,MT,28,REDWHI,900.0,STOLEN,10923,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-10936,4827,GO-20199022978,THEFT UNDER,2019-07-19T00:00:00,2019,July,Friday,19,200,8,2019-07-19T00:00:00,2019,July,Friday,19,200,20,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,GI,ESCAPE 2 DISC,OT,24,GRY,791.0,STOLEN,10924,"{'type': 'Point', 'coordinates': (-79.38353872, 43.64792395)}"
-10937,4829,GO-20199022978,THEFT UNDER,2019-07-19T00:00:00,2019,July,Friday,19,200,8,2019-07-19T00:00:00,2019,July,Friday,19,200,20,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,GI,ESCAPE 2 DISC,OT,24,GRY,791.0,STOLEN,10925,"{'type': 'Point', 'coordinates': (-79.38353872, 43.64792395)}"
-10938,4834,GO-20199023185,THEFT UNDER,2019-07-22T00:00:00,2019,July,Monday,22,203,0,2019-07-22T00:00:00,2019,July,Monday,22,203,8,D52,Toronto,76,Bay Street Corridor (76),Bar / Restaurant,Commercial,OT,STREET BIKE,RG,1,BLK,350.0,STOLEN,10926,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-10939,4843,GO-20199023332,THEFT UNDER,2019-07-22T00:00:00,2019,July,Monday,22,203,19,2019-07-23T00:00:00,2019,July,Tuesday,23,204,1,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RC,1,BLK,0.0,STOLEN,10927,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-10940,4846,GO-20199023371,THEFT UNDER,2019-07-23T00:00:00,2019,July,Tuesday,23,204,9,2019-07-23T00:00:00,2019,July,Tuesday,23,204,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,TO,21,BLU,150.0,STOLEN,10928,"{'type': 'Point', 'coordinates': (-79.38584448, 43.65698887)}"
-10941,4866,GO-20199023582,THEFT UNDER,2019-07-24T00:00:00,2019,July,Wednesday,24,205,10,2019-07-24T00:00:00,2019,July,Wednesday,24,205,17,D52,Toronto,76,Bay Street Corridor (76),Bar / Restaurant,Commercial,FJ,,RC,1,WHI,350.0,STOLEN,10929,"{'type': 'Point', 'coordinates': (-79.38467283, 43.65807476)}"
-10942,4882,GO-20199023762,THEFT UNDER,2019-07-24T00:00:00,2019,July,Wednesday,24,205,20,2019-07-25T00:00:00,2019,July,Thursday,25,206,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,GTX-2,RG,21,BLK,400.0,STOLEN,10930,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-10943,4889,GO-20199023811,THEFT UNDER,2019-07-04T00:00:00,2019,July,Thursday,4,185,16,2019-07-25T00:00:00,2019,July,Thursday,25,206,21,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,RA,,RG,3,,0.0,STOLEN,10931,"{'type': 'Point', 'coordinates': (-79.38077050000001, 43.64989242)}"
-10944,4923,GO-20199024356,THEFT UNDER,2019-07-29T00:00:00,2019,July,Monday,29,210,22,2019-07-30T00:00:00,2019,July,Tuesday,30,211,10,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,NO,FBR3,RG,16,BLK,500.0,STOLEN,10932,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-10945,4932,GO-20199024407,THEFT UNDER,2019-07-28T00:00:00,2019,July,Sunday,28,209,19,2019-07-30T00:00:00,2019,July,Tuesday,30,211,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MO,ALTA,RG,21,WHI,175.0,STOLEN,10933,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-10946,4933,GO-20199024416,THEFT UNDER,2019-07-27T00:00:00,2019,July,Saturday,27,208,19,2019-07-30T00:00:00,2019,July,Tuesday,30,211,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,FIXIE,OT,1,BLU,450.0,STOLEN,10934,"{'type': 'Point', 'coordinates': (-79.39054537, 43.66944743)}"
-10947,4957,GO-20199024748,THEFT UNDER,2019-07-29T00:00:00,2019,July,Monday,29,210,12,2019-08-02T00:00:00,2019,August,Friday,2,214,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,MT,21,WHI,500.0,STOLEN,10935,"{'type': 'Point', 'coordinates': (-79.38565688, 43.65832672)}"
-10948,4958,GO-20199024791,THEFT UNDER,2019-08-02T00:00:00,2019,August,Friday,2,214,8,2019-08-02T00:00:00,2019,August,Friday,2,214,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,PE,SUPER SPORT,RC,10,SIL,1000.0,STOLEN,10936,"{'type': 'Point', 'coordinates': (-79.37760867, 43.64852311)}"
-10949,4968,GO-20199024942,THEFT UNDER,2019-08-03T00:00:00,2019,August,Saturday,3,215,19,2019-08-04T00:00:00,2019,August,Sunday,4,216,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,RG,13,BLU,600.0,STOLEN,10937,"{'type': 'Point', 'coordinates': (-79.3879785, 43.66997438)}"
-10950,4986,GO-20199024569,THEFT UNDER,2019-07-31T00:00:00,2019,July,Wednesday,31,212,8,2019-07-31T00:00:00,2019,July,Wednesday,31,212,18,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,FJ,ABSOLUTE 2.1,RG,24,BLU,550.0,STOLEN,10938,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-10951,4988,GO-20199025288,THEFT UNDER,2019-08-07T00:00:00,2019,August,Wednesday,7,219,11,2019-08-07T00:00:00,2019,August,Wednesday,7,219,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,FX 3,RG,27,BLK,1050.0,STOLEN,10939,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-10952,4994,GO-20199025349,THEFT UNDER,2019-08-08T00:00:00,2019,August,Thursday,8,220,9,2019-08-08T00:00:00,2019,August,Thursday,8,220,10,D52,Toronto,76,Bay Street Corridor (76),Convenience Stores,Commercial,UK,,MT,12,BLK,4500.0,STOLEN,10940,"{'type': 'Point', 'coordinates': (-79.38482092, 43.65454718)}"
-10953,4997,GO-20199025302,THEFT UNDER,2019-08-07T00:00:00,2019,August,Wednesday,7,219,11,2019-08-07T00:00:00,2019,August,Wednesday,7,219,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,OSLO,RG,27,BLK,1100.0,STOLEN,10941,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-10954,4998,GO-20199025305,THEFT UNDER,2019-08-07T00:00:00,2019,August,Wednesday,7,219,10,2019-08-07T00:00:00,2019,August,Wednesday,7,219,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,VFR 4,OT,28,GRN,550.0,STOLEN,10942,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10955,5008,GO-20199025397,THEFT UNDER,2019-08-07T00:00:00,2019,August,Wednesday,7,219,9,2019-08-08T00:00:00,2019,August,Thursday,8,220,15,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,GI,TALON 1,MT,1,BLK,1200.0,STOLEN,10943,"{'type': 'Point', 'coordinates': (-79.37878196, 43.64896093)}"
-10956,5009,GO-20199025537,THEFT UNDER,2019-08-09T00:00:00,2019,August,Friday,9,221,9,2019-08-09T00:00:00,2019,August,Friday,9,221,14,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,CA,20 YEARS OLD,RC,21,YEL,750.0,STOLEN,10944,"{'type': 'Point', 'coordinates': (-79.39054537, 43.66944743)}"
-10957,5019,GO-20199025605,THEFT UNDER,2019-08-07T00:00:00,2019,August,Wednesday,7,219,14,2019-08-10T00:00:00,2019,August,Saturday,10,222,3,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SU,,MT,21,ONG,50.0,STOLEN,10945,"{'type': 'Point', 'coordinates': (-79.38077050000001, 43.64989242)}"
-10958,5023,GO-20199025662,THEFT UNDER,2019-08-10T00:00:00,2019,August,Saturday,10,222,14,2019-08-10T00:00:00,2019,August,Saturday,10,222,15,D52,Toronto,76,Bay Street Corridor (76),Convenience Stores,Commercial,BI,1999 PISTA,RG,1,LBL,0.0,STOLEN,10946,"{'type': 'Point', 'coordinates': (-79.38268555, 43.64598268)}"
-10959,5027,GO-20199025699,B&E,2019-08-05T00:00:00,2019,August,Monday,5,217,18,2019-08-10T00:00:00,2019,August,Saturday,10,222,19,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,UK,ALLEZ ELITE,RC,22,RED,1650.0,STOLEN,10947,"{'type': 'Point', 'coordinates': (-79.38236226, 43.65027737)}"
-10960,5047,GO-20199025909,THEFT UNDER,2019-08-10T00:00:00,2019,August,Saturday,10,222,19,2019-08-12T00:00:00,2019,August,Monday,12,224,15,D52,Toronto,76,Bay Street Corridor (76),Bar / Restaurant,Commercial,SC,,OT,1,RED,1000.0,STOLEN,10948,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-10961,5064,GO-20199026172,THEFT UNDER,2019-08-14T00:00:00,2019,August,Wednesday,14,226,0,2019-08-14T00:00:00,2019,August,Wednesday,14,226,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,RG,6,GRY,350.0,STOLEN,10949,"{'type': 'Point', 'coordinates': (-79.38702746, 43.66853925)}"
-10962,5066,GO-20199026191,THEFT UNDER,2019-08-14T00:00:00,2019,August,Wednesday,14,226,11,2019-08-14T00:00:00,2019,August,Wednesday,14,226,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,21,GRY,200.0,STOLEN,10950,"{'type': 'Point', 'coordinates': (-79.38467283, 43.65807476)}"
-10963,5073,GO-20199026263,THEFT UNDER,2019-08-14T00:00:00,2019,August,Wednesday,14,226,17,2019-08-14T00:00:00,2019,August,Wednesday,14,226,21,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,IN,2018,EL,6,GLD,2200.0,STOLEN,10951,"{'type': 'Point', 'coordinates': (-79.38552201, 43.64605338)}"
-10964,5075,GO-20199026269,THEFT UNDER,2019-08-13T00:00:00,2019,August,Tuesday,13,225,21,2019-08-14T00:00:00,2019,August,Wednesday,14,226,23,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,YORKVILLE,RG,21,BLK,737.0,STOLEN,10952,"{'type': 'Point', 'coordinates': (-79.3879785, 43.66997438)}"
-10965,5102,GO-20199026783,THEFT UNDER,2019-08-16T00:00:00,2019,August,Friday,16,228,19,2019-08-19T00:00:00,2019,August,Monday,19,231,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,NEW WORLD TOURI,FO,27,BLK,2000.0,STOLEN,10953,"{'type': 'Point', 'coordinates': (-79.38461112, 43.65044055)}"
-10966,5109,GO-20199026882,THEFT UNDER,2019-08-03T00:00:00,2019,August,Saturday,3,215,19,2019-08-19T00:00:00,2019,August,Monday,19,231,23,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,8.2,MT,21,SIL,700.0,STOLEN,10954,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-10967,5110,GO-20199026886,THEFT UNDER,2019-08-19T00:00:00,2019,August,Monday,19,231,18,2019-08-20T00:00:00,2019,August,Tuesday,20,232,10,D52,Toronto,76,Bay Street Corridor (76),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,,RG,7,WHI,0.0,STOLEN,10955,"{'type': 'Point', 'coordinates': (-79.38260155, 43.6529703)}"
-10968,5115,GO-20199027026,THEFT UNDER,2019-08-20T00:00:00,2019,August,Tuesday,20,232,10,2019-08-20T00:00:00,2019,August,Tuesday,20,232,21,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,UK,,OT,1,BLK,750.0,STOLEN,10956,"{'type': 'Point', 'coordinates': (-79.37878196, 43.64896093)}"
-10969,5135,GO-20199027254,THEFT UNDER,2019-08-20T00:00:00,2019,August,Tuesday,20,232,8,2019-08-22T00:00:00,2019,August,Thursday,22,234,12,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,SU,ROAD BIKE,RG,5,RED,100.0,STOLEN,10957,"{'type': 'Point', 'coordinates': (-79.38209114, 43.64961443)}"
-10970,5146,GO-20199027439,THEFT UNDER,2019-08-17T00:00:00,2019,August,Saturday,17,229,12,2019-08-23T00:00:00,2019,August,Friday,23,235,15,D52,Toronto,76,Bay Street Corridor (76),Bar / Restaurant,Commercial,OT,HELIUM,OT,11,BLK,2802.0,STOLEN,10958,"{'type': 'Point', 'coordinates': (-79.38379426, 43.64856165)}"
-10971,5173,GO-20199027792,THEFT UNDER,2019-08-26T00:00:00,2019,August,Monday,26,238,15,2019-08-26T00:00:00,2019,August,Monday,26,238,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CARBON LES 27.5,MT,20,BLK,4000.0,STOLEN,10959,"{'type': 'Point', 'coordinates': (-79.38944954, 43.65752945)}"
-10972,5184,GO-20199028095,THEFT UNDER,2019-08-28T00:00:00,2019,August,Wednesday,28,240,20,2019-08-28T00:00:00,2019,August,Wednesday,28,240,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,MT,7,,324.0,STOLEN,10960,"{'type': 'Point', 'coordinates': (-79.38581622, 43.66799576)}"
-10973,5191,GO-20199028159,THEFT UNDER,2019-08-29T00:00:00,2019,August,Thursday,29,241,11,2019-08-29T00:00:00,2019,August,Thursday,29,241,15,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,YORKVILLE,RG,21,SIL,529.0,STOLEN,10961,"{'type': 'Point', 'coordinates': (-79.37878196, 43.64896093)}"
-10974,5194,GO-20199028235,THEFT UNDER,2019-08-30T00:00:00,2019,August,Friday,30,242,12,2019-08-30T00:00:00,2019,August,Friday,30,242,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,VITA ELITE,OT,21,GRY,1000.0,STOLEN,10962,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-10975,5202,GO-20199028369,THEFT UNDER,2019-07-31T00:00:00,2019,July,Wednesday,31,212,8,2019-08-31T00:00:00,2019,August,Saturday,31,243,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,MIELE UMBRIA LL,OT,22,RED,373.0,STOLEN,10964,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-10976,5237,GO-20191684132,THEFT OVER - BICYCLE,2019-09-03T00:00:00,2019,September,Tuesday,3,246,7,2019-09-05T00:00:00,2019,September,Thursday,5,248,16,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SCOTT,GRAVEL ADDICT,MT,12,GRN,5500.0,STOLEN,10965,"{'type': 'Point', 'coordinates': (-79.37903365, 43.65028111)}"
-10977,5250,GO-20199028883,THEFT UNDER,2019-08-16T00:00:00,2019,August,Friday,16,228,9,2019-09-05T00:00:00,2019,September,Thursday,5,248,17,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,FIRENZE,TO,21,BLU,400.0,STOLEN,10966,"{'type': 'Point', 'coordinates': (-79.38407058, 43.649187680000004)}"
-10978,5262,GO-20199029130,THEFT UNDER - BICYCLE,2019-09-07T00:00:00,2019,September,Saturday,7,250,21,2019-09-08T00:00:00,2019,September,Sunday,8,251,11,D52,Toronto,76,Bay Street Corridor (76),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,OT,STRIDE 500 - EL,EL,1,BLK,2000.0,STOLEN,10967,"{'type': 'Point', 'coordinates': (-79.38262593, 43.65086783)}"
-10979,5276,GO-20191716982,THEFT UNDER - BICYCLE,2019-09-07T00:00:00,2019,September,Saturday,7,250,11,2019-09-07T00:00:00,2019,September,Saturday,7,250,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,,OT,15,BLK,500.0,STOLEN,10968,"{'type': 'Point', 'coordinates': (-79.38407058, 43.649187680000004)}"
-10980,5293,GO-20199029510,THEFT UNDER - BICYCLE,2019-09-09T00:00:00,2019,September,Monday,9,252,19,2019-09-10T00:00:00,2019,September,Tuesday,10,253,20,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,OT,LUGANO GREEN,RG,3,DGR,400.0,STOLEN,10969,"{'type': 'Point', 'coordinates': (-79.38581514, 43.66081576)}"
-10981,5322,GO-20191772553,B&E W'INTENT,2019-09-15T00:00:00,2019,September,Sunday,15,258,8,2019-09-15T00:00:00,2019,September,Sunday,15,258,12,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,CANNONDALE,SYNAPSE,RG,18,BLK,2270.0,STOLEN,10970,"{'type': 'Point', 'coordinates': (-79.39038732, 43.66791603)}"
-10982,5358,GO-20191782131,THEFT UNDER - BICYCLE,2019-09-16T00:00:00,2019,September,Monday,16,259,18,2019-09-16T00:00:00,2019,September,Monday,16,259,18,D52,Toronto,76,Bay Street Corridor (76),Bar / Restaurant,Commercial,DIAMONDBACK,,OT,7,PLE,300.0,STOLEN,10971,"{'type': 'Point', 'coordinates': (-79.38649082, 43.66146692)}"
-10983,5365,GO-20199030517,THEFT OF EBIKE UNDER $5000,2019-09-18T00:00:00,2019,September,Wednesday,18,261,12,2019-09-18T00:00:00,2019,September,Wednesday,18,261,13,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,UK,FREEDOM,EL,30,GLD,1200.0,STOLEN,10972,"{'type': 'Point', 'coordinates': (-79.38664264, 43.6606615)}"
-10984,5369,GO-20199030730,THEFT UNDER,2019-09-19T00:00:00,2019,September,Thursday,19,262,7,2019-09-19T00:00:00,2019,September,Thursday,19,262,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,RG,21,YEL,650.0,STOLEN,10973,"{'type': 'Point', 'coordinates': (-79.38103127, 43.65056603)}"
-10985,5372,GO-20199030885,THEFT UNDER,2019-09-16T00:00:00,2019,September,Monday,16,259,20,2019-09-20T00:00:00,2019,September,Friday,20,263,17,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,GI,2017 LITE 2 CIT,OT,21,DGR,650.0,STOLEN,10974,"{'type': 'Point', 'coordinates': (-79.38664264, 43.6606615)}"
-10986,5380,GO-20191831501,THEFT UNDER,2019-09-09T00:00:00,2019,September,Monday,9,252,12,2019-09-23T00:00:00,2019,September,Monday,23,266,10,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,UNKNOWN,,RG,0,,250.0,STOLEN,10975,"{'type': 'Point', 'coordinates': (-79.38820648, 43.66681234)}"
-10987,5381,GO-20199031133,THEFT UNDER,2019-08-28T00:00:00,2019,August,Wednesday,28,240,5,2019-09-23T00:00:00,2019,September,Monday,23,266,10,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,(SEE ATTACHED P,RG,6,TRQ,1200.0,STOLEN,10976,"{'type': 'Point', 'coordinates': (-79.38353872, 43.64792395)}"
-10988,5391,GO-20199031294,THEFT UNDER,2019-09-23T00:00:00,2019,September,Monday,23,266,21,2019-09-24T00:00:00,2019,September,Tuesday,24,267,10,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,SIG. STEP THROU,RG,3,PNK,1200.0,STOLEN,10977,"{'type': 'Point', 'coordinates': (-79.38702746, 43.66853925)}"
-10989,5394,GO-20199031412,THEFT UNDER,2019-09-24T00:00:00,2019,September,Tuesday,24,267,9,2019-09-24T00:00:00,2019,September,Tuesday,24,267,21,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,,NAKAMURA ROYAL,OT,18,DBL,350.0,STOLEN,10978,"{'type': 'Point', 'coordinates': (-79.37843045, 43.65040714)}"
-10990,5441,GO-20199032094,THEFT UNDER,2019-09-29T00:00:00,2019,September,Sunday,29,272,22,2019-09-30T00:00:00,2019,September,Monday,30,273,14,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,BLK,400.0,STOLEN,10987,"{'type': 'Point', 'coordinates': (-79.3888294, 43.66819662)}"
-10991,5397,GO-20191833752,THEFT UNDER - BICYCLE,2019-09-22T00:00:00,2019,September,Sunday,22,265,19,2019-09-23T00:00:00,2019,September,Monday,23,266,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,MOUNTAIN,MT,0,,400.0,RECOVERED,10979,"{'type': 'Point', 'coordinates': (-79.38338195, 43.66213624)}"
-10992,5398,GO-20191846397,THEFT UNDER,2019-09-16T00:00:00,2019,September,Monday,16,259,17,2019-09-25T00:00:00,2019,September,Wednesday,25,268,10,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,CANADIANA,,RG,0,RED,200.0,STOLEN,10980,"{'type': 'Point', 'coordinates': (-79.38737611, 43.66847728)}"
-10993,5401,GO-20199031469,THEFT UNDER,2019-09-24T00:00:00,2019,September,Tuesday,24,267,17,2019-09-25T00:00:00,2019,September,Wednesday,25,268,13,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,DEFY2,RC,18,WHI,3000.0,STOLEN,10981,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-10994,5404,GO-20199031524,THEFT UNDER,2019-09-25T00:00:00,2019,September,Wednesday,25,268,16,2019-09-25T00:00:00,2019,September,Wednesday,25,268,17,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,T2,RC,10,WHI,2800.0,STOLEN,10982,"{'type': 'Point', 'coordinates': (-79.39054537, 43.66944743)}"
-10995,5415,GO-20191860497,THEFT UNDER,2019-09-19T00:00:00,2019,September,Thursday,19,262,17,2019-09-27T00:00:00,2019,September,Friday,27,270,7,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,OTHER,,RC,21,SIL,250.0,STOLEN,10983,"{'type': 'Point', 'coordinates': (-79.38482092, 43.65454718)}"
-10996,5425,GO-20199031486,THEFT UNDER,2019-09-23T00:00:00,2019,September,Monday,23,266,19,2019-09-25T00:00:00,2019,September,Wednesday,25,268,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,RG,21,PLE,350.0,STOLEN,10984,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-10997,5437,GO-20199032007,THEFT UNDER,2019-09-29T00:00:00,2019,September,Sunday,29,272,18,2019-09-29T00:00:00,2019,September,Sunday,29,272,18,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,CHINOOK,RG,32,BLK,700.0,STOLEN,10985,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-10998,5440,GO-20199032061,THEFT UNDER,2019-09-30T00:00:00,2019,September,Monday,30,273,11,2019-09-30T00:00:00,2019,September,Monday,30,273,11,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,OT,3,,0.0,STOLEN,10986,"{'type': 'Point', 'coordinates': (-79.38485374000001, 43.65851077)}"
-10999,5453,GO-20199032299,THEFT UNDER,2019-10-01T00:00:00,2019,October,Tuesday,1,274,10,2019-10-01T00:00:00,2019,October,Tuesday,1,274,22,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RA,,MT,21,BLK,500.0,STOLEN,10988,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-11000,5460,GO-20199032484,THEFT UNDER,2019-09-30T00:00:00,2019,September,Monday,30,273,14,2019-10-03T00:00:00,2019,October,Thursday,3,276,13,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,GI,TCR ADVANCED PR,RC,40,BLK,4500.0,STOLEN,10989,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-11001,5472,GO-20199032678,THEFT UNDER,2019-10-04T00:00:00,2019,October,Friday,4,277,14,2019-10-04T00:00:00,2019,October,Friday,4,277,23,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RG,11,OTH,3200.0,STOLEN,10990,"{'type': 'Point', 'coordinates': (-79.38379426, 43.64856165)}"
-11002,5521,GO-20199033804,THEFT UNDER,2019-10-11T00:00:00,2019,October,Friday,11,284,9,2019-10-13T00:00:00,2019,October,Sunday,13,286,23,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,IN,,MT,21,MRN,200.0,STOLEN,10991,"{'type': 'Point', 'coordinates': (-79.37894504, 43.65169174)}"
-11003,5530,GO-20199033548,THEFT UNDER,2019-10-10T00:00:00,2019,October,Thursday,10,283,9,2019-10-11T00:00:00,2019,October,Friday,11,284,16,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,BI,MILANO,RG,6,BLU,800.0,STOLEN,10992,"{'type': 'Point', 'coordinates': (-79.38260155, 43.6529703)}"
-11004,5552,GO-20199034572,THEFT UNDER,2019-10-20T00:00:00,2019,October,Sunday,20,293,17,2019-10-20T00:00:00,2019,October,Sunday,20,293,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,URBANIA 4,RG,24,WHI,693.0,STOLEN,10993,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11005,5558,GO-20199034645,THEFT UNDER,2019-10-21T00:00:00,2019,October,Monday,21,294,9,2019-10-21T00:00:00,2019,October,Monday,21,294,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,SUPER CYCLE SOL,OT,21,BLU,200.0,STOLEN,10994,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-11006,5563,GO-20199034710,THEFT UNDER,2019-10-19T00:00:00,2019,October,Saturday,19,292,18,2019-10-21T00:00:00,2019,October,Monday,21,294,19,D52,Toronto,76,Bay Street Corridor (76),Bar / Restaurant,Commercial,NO,INDIE 3,RG,40,BLK,850.0,STOLEN,10995,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-11007,5592,GO-20192045292,THEFT UNDER - BICYCLE,2019-10-23T00:00:00,2019,October,Wednesday,23,296,10,2019-10-25T00:00:00,2019,October,Friday,25,298,10,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BIANCHI,,OT,1,BLK,1050.0,STOLEN,10996,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-11008,5609,GO-20199035604,B&E,2019-10-26T00:00:00,2019,October,Saturday,26,299,2,2019-10-28T00:00:00,2019,October,Monday,28,301,19,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,TR,TREK FX 2 WSD,RG,8,WHI,1000.0,STOLEN,10997,"{'type': 'Point', 'coordinates': (-79.38485374000001, 43.65851077)}"
-11009,19822,GO-20159000310,THEFT UNDER,2015-01-12T00:00:00,2015,January,Monday,12,12,18,2015-01-17T00:00:00,2015,January,Saturday,17,17,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,MILANO,RG,14,DBL,,STOLEN,10998,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11010,15815,GO-20209021177,THEFT UNDER,2020-08-23T00:00:00,2020,August,Sunday,23,236,15,2020-08-24T00:00:00,2020,August,Monday,24,237,16,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,CCM,MT,21,GRY,520.0,STOLEN,10999,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-11011,20583,GO-20199020144,THEFT UNDER,2019-06-13T00:00:00,2019,June,Thursday,13,164,16,2019-06-25T00:00:00,2019,June,Tuesday,25,176,22,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,MT,7,GRY,0.0,STOLEN,11000,"{'type': 'Point', 'coordinates': (-79.38658151, 43.64863773)}"
-11012,19823,GO-2015125396,THEFT UNDER,2015-01-17T00:00:00,2015,January,Saturday,17,17,15,2015-01-19T00:00:00,2015,January,Monday,19,19,9,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,UNKNOWN,UNKNOWN,EL,0,BLU,1000.0,STOLEN,11001,"{'type': 'Point', 'coordinates': (-79.38737611, 43.66847728)}"
-11013,15816,GO-20201610014,THEFT UNDER - BICYCLE,2020-08-21T00:00:00,2020,August,Friday,21,234,10,2020-08-26T00:00:00,2020,August,Wednesday,26,239,17,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,BALLAD 56,BORDEAUX,OT,1,RED,940.0,STOLEN,11002,"{'type': 'Point', 'coordinates': (-79.38334664, 43.66205466)}"
-11014,19824,GO-2015235307,THEFT UNDER,2015-02-06T00:00:00,2015,February,Friday,6,37,14,2015-02-09T00:00:00,2015,February,Monday,9,40,14,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,HUFFY,CRANBROOK,OT,1,BLKGLD,120.0,STOLEN,11003,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11015,15817,GO-20209021679,THEFT UNDER,2020-08-28T00:00:00,2020,August,Friday,28,241,12,2020-08-29T00:00:00,2020,August,Saturday,29,242,0,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,SC1800,MT,18,BLK,110.0,STOLEN,11004,"{'type': 'Point', 'coordinates': (-79.38077050000001, 43.64989242)}"
-11016,20584,GO-20191229511,THEFT UNDER - BICYCLE,2019-07-02T00:00:00,2019,July,Tuesday,2,183,15,2019-07-02T00:00:00,2019,July,Tuesday,2,183,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,,TO,0,YEL,,STOLEN,11005,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-11017,19830,GO-20159001933,THEFT UNDER,2015-04-13T00:00:00,2015,April,Monday,13,103,12,2015-04-14T00:00:00,2015,April,Tuesday,14,104,19,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,HARDROCK SPORT,MT,40,,844.0,STOLEN,11006,"{'type': 'Point', 'coordinates': (-79.38687123, 43.6623556)}"
-11018,15827,GO-20209023439,THEFT UNDER,2020-09-15T00:00:00,2020,September,Tuesday,15,259,18,2020-09-16T00:00:00,2020,September,Wednesday,16,260,15,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RG,1,BLK,500.0,STOLEN,11007,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-11019,15832,GO-20209024383,THEFT UNDER,2020-09-24T00:00:00,2020,September,Thursday,24,268,11,2020-09-24T00:00:00,2020,September,Thursday,24,268,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,DOMANE,RC,16,BLK,3000.0,STOLEN,11008,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-11020,15835,GO-20209025859,THEFT UNDER,2020-10-08T00:00:00,2020,October,Thursday,8,282,17,2020-10-08T00:00:00,2020,October,Thursday,8,282,20,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,MT,20,RED,800.0,STOLEN,11009,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-11021,15836,GO-20209025859,THEFT UNDER,2020-10-08T00:00:00,2020,October,Thursday,8,282,17,2020-10-08T00:00:00,2020,October,Thursday,8,282,20,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,OT,20,DGR,1500.0,STOLEN,11010,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-11022,15837,GO-20209026412,THEFT UNDER,2020-10-13T00:00:00,2020,October,Tuesday,13,287,20,2020-10-14T00:00:00,2020,October,Wednesday,14,288,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ROSCOE,RG,21,BLK,150.0,STOLEN,11011,"{'type': 'Point', 'coordinates': (-79.38673938, 43.66335885)}"
-11023,15838,GO-20209026490,THEFT UNDER,2020-10-14T00:00:00,2020,October,Wednesday,14,288,17,2020-10-15T00:00:00,2020,October,Thursday,15,289,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,TRANSIT,RG,21,GRY,400.0,STOLEN,11012,"{'type': 'Point', 'coordinates': (-79.38334664, 43.66205466)}"
-11024,15839,GO-20201961184,THEFT UNDER - BICYCLE,2020-10-15T00:00:00,2020,October,Thursday,15,289,17,2020-10-15T00:00:00,2020,October,Thursday,15,289,22,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NAKAMURA,,RG,1,BLUGRY,200.0,STOLEN,11013,"{'type': 'Point', 'coordinates': (-79.38353872, 43.64792395)}"
-11025,15840,GO-20201976392,THEFT UNDER - BICYCLE,2020-10-17T00:00:00,2020,October,Saturday,17,291,20,2020-10-18T00:00:00,2020,October,Sunday,18,292,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,RG,3,,1200.0,STOLEN,11014,"{'type': 'Point', 'coordinates': (-79.38518506, 43.65542635)}"
-11026,16118,GO-20169010080,THEFT UNDER,2016-09-06T00:00:00,2016,September,Tuesday,6,250,18,2016-09-07T00:00:00,2016,September,Wednesday,7,251,7,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,SU,"29"""" MOUNTAIN",MT,21,ONG,275.0,STOLEN,11015,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11027,16120,GO-2017534658,THEFT FROM MOTOR VEHICLE UNDER,2017-03-26T00:00:00,2017,March,Sunday,26,85,10,2017-03-26T00:00:00,2017,March,Sunday,26,85,12,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,,MT,24,SIL,500.0,STOLEN,11016,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-11028,16121,GO-2017534658,THEFT FROM MOTOR VEHICLE UNDER,2017-03-26T00:00:00,2017,March,Sunday,26,85,10,2017-03-26T00:00:00,2017,March,Sunday,26,85,12,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,GHOST,MT,18,WHIPNK,350.0,STOLEN,11017,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-11029,16124,GO-20179004577,THEFT UNDER,2017-04-10T00:00:00,2017,April,Monday,10,100,16,2017-04-11T00:00:00,2017,April,Tuesday,11,101,8,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,MT,21,WHI,450.0,STOLEN,11018,"{'type': 'Point', 'coordinates': (-79.38581514, 43.66081576)}"
-11030,16127,GO-20179006056,THEFT UNDER - BICYCLE,2017-05-08T00:00:00,2017,May,Monday,8,128,15,2017-05-10T00:00:00,2017,May,Wednesday,10,130,14,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,UK,ST.TROPEZ,OT,24,SIL,1100.0,STOLEN,11019,"{'type': 'Point', 'coordinates': (-79.38188491, 43.65866815)}"
-11031,16128,GO-20179006373,THEFT UNDER - BICYCLE,2017-05-15T00:00:00,2017,May,Monday,15,135,9,2017-05-15T00:00:00,2017,May,Monday,15,135,15,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,DIADORA NOVARA,MT,21,BLK,279.0,STOLEN,11020,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11032,16130,GO-20179006942,THEFT UNDER - BICYCLE,2017-05-24T00:00:00,2017,May,Wednesday,24,144,18,2017-05-25T00:00:00,2017,May,Thursday,25,145,7,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,20,OT,21,GRY,550.0,STOLEN,11021,"{'type': 'Point', 'coordinates': (-79.38154682, 43.65790792)}"
-11033,16135,GO-20179007416,THEFT UNDER - BICYCLE,2017-06-02T00:00:00,2017,June,Friday,2,153,13,2017-06-02T00:00:00,2017,June,Friday,2,153,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,5,ONG,100.0,STOLEN,11022,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-11034,16136,GO-20179007610,THEFT UNDER - BICYCLE,2017-06-06T00:00:00,2017,June,Tuesday,6,157,13,2017-06-06T00:00:00,2017,June,Tuesday,6,157,15,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,MA,SAN RAFAEL DS2,OT,21,WHI,800.0,STOLEN,11023,"{'type': 'Point', 'coordinates': (-79.38129397, 43.65116987)}"
-11035,16137,GO-20179007707,THEFT UNDER - BICYCLE,2017-05-27T00:00:00,2017,May,Saturday,27,147,7,2017-06-08T00:00:00,2017,June,Thursday,8,159,12,D52,Toronto,76,Bay Street Corridor (76),Bar / Restaurant,Commercial,CA,BAD BOY 1,BM,10,BLK,2980.0,STOLEN,11024,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-11036,16140,GO-20171042026,THEFT UNDER - BICYCLE,2017-06-12T00:00:00,2017,June,Monday,12,163,6,2017-06-12T00:00:00,2017,June,Monday,12,163,6,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,RG,1,GLD,,STOLEN,11025,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11037,16143,GO-20179008323,THEFT UNDER - BICYCLE,2017-06-17T00:00:00,2017,June,Saturday,17,168,14,2017-06-17T00:00:00,2017,June,Saturday,17,168,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MO,,MT,21,BLK,168.0,STOLEN,11026,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-11038,16149,GO-20179008805,THEFT UNDER - BICYCLE,2017-06-24T00:00:00,2017,June,Saturday,24,175,6,2017-06-24T00:00:00,2017,June,Saturday,24,175,10,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,MT,21,BLK,800.0,STOLEN,11027,"{'type': 'Point', 'coordinates': (-79.38334664, 43.66205466)}"
-11039,16150,GO-20179008850,THEFT UNDER - BICYCLE,2017-06-24T00:00:00,2017,June,Saturday,24,175,17,2017-06-24T00:00:00,2017,June,Saturday,24,175,22,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KH,2017 KHS URBAN,RG,7,GRY,479.0,STOLEN,11028,"{'type': 'Point', 'coordinates': (-79.38808613, 43.66653345)}"
-11040,16151,GO-20179008970,THEFT UNDER - BICYCLE,2017-06-26T00:00:00,2017,June,Monday,26,177,11,2017-06-26T00:00:00,2017,June,Monday,26,177,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,IH,,MT,40,RED,300.0,STOLEN,11029,"{'type': 'Point', 'coordinates': (-79.38625132, 43.6500866)}"
-11041,16153,GO-20179009112,THEFT UNDER - BICYCLE,2017-06-12T00:00:00,2017,June,Monday,12,163,9,2017-06-28T00:00:00,2017,June,Wednesday,28,179,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,,RC,14,,3500.0,STOLEN,11030,"{'type': 'Point', 'coordinates': (-79.37903365, 43.65028111)}"
-11042,16154,GO-20171163838,THEFT UNDER - BICYCLE,2017-06-29T00:00:00,2017,June,Thursday,29,180,7,2017-06-29T00:00:00,2017,June,Thursday,29,180,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,TO,21,WHI,1200.0,STOLEN,11031,"{'type': 'Point', 'coordinates': (-79.38407058, 43.649187680000004)}"
-11043,16155,GO-20179009319,THEFT UNDER - BICYCLE,2017-04-29T00:00:00,2017,April,Saturday,29,119,22,2017-07-03T00:00:00,2017,July,Monday,3,184,17,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,21,GRY,200.0,STOLEN,11032,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-11044,16156,GO-20179009547,THEFT UNDER,2017-07-06T00:00:00,2017,July,Thursday,6,187,17,2017-07-06T00:00:00,2017,July,Thursday,6,187,23,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,24,BLK,75.0,STOLEN,11033,"{'type': 'Point', 'coordinates': (-79.38737611, 43.66847728)}"
-11045,16157,GO-20179009906,B&E,2017-07-09T00:00:00,2017,July,Sunday,9,190,21,2017-07-10T00:00:00,2017,July,Monday,10,191,21,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,VENTURA RACE FE,RC,20,PLE,700.0,STOLEN,11034,"{'type': 'Point', 'coordinates': (-79.38437564, 43.65730783)}"
-11046,16159,GO-20171287842,THEFT UNDER - BICYCLE,2017-07-12T00:00:00,2017,July,Wednesday,12,193,13,2017-07-18T00:00:00,2017,July,Tuesday,18,199,10,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,CCM,ORION,OT,0,BLUBLK,200.0,STOLEN,11035,"{'type': 'Point', 'coordinates': (-79.38946225, 43.66523161)}"
-11047,16161,GO-20171318401,THEFT OVER - BICYCLE,2017-07-22T00:00:00,2017,July,Saturday,22,203,14,2017-07-25T00:00:00,2017,July,Tuesday,25,206,10,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,STUMPJUMPER FSR,MT,0,RED,5290.0,STOLEN,11036,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-11048,16162,GO-20179010983,THEFT OF EBIKE UNDER $5000,2017-07-21T00:00:00,2017,July,Friday,21,202,16,2017-07-25T00:00:00,2017,July,Tuesday,25,206,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CHAMPION 72V,EL,40,GRY,2500.0,STOLEN,11037,"{'type': 'Point', 'coordinates': (-79.37903365, 43.65028111)}"
-11049,16163,GO-20179011330,THEFT UNDER - BICYCLE,2017-07-29T00:00:00,2017,July,Saturday,29,210,18,2017-07-30T00:00:00,2017,July,Sunday,30,211,11,D52,Toronto,76,Bay Street Corridor (76),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,OT,VITA,TO,18,WHI,1900.0,STOLEN,11038,"{'type': 'Point', 'coordinates': (-79.38262593, 43.65086783)}"
-11050,16164,GO-20179011517,THEFT UNDER,2017-08-01T00:00:00,2017,August,Tuesday,1,213,8,2017-08-01T00:00:00,2017,August,Tuesday,1,213,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,DOLCE SPORT,RC,14,RED,1500.0,STOLEN,11039,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11051,16165,GO-20179011570,THEFT UNDER - BICYCLE,2017-07-25T00:00:00,2017,July,Tuesday,25,206,20,2017-08-02T00:00:00,2017,August,Wednesday,2,214,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DB,ODYSSEY,MT,21,RED,150.0,STOLEN,11040,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-11052,16168,GO-20179011919,THEFT UNDER - BICYCLE,2017-08-08T00:00:00,2017,August,Tuesday,8,220,13,2017-08-08T00:00:00,2017,August,Tuesday,8,220,13,D52,Toronto,76,Bay Street Corridor (76),Bar / Restaurant,Commercial,UK,,RG,7,LGR,600.0,STOLEN,11041,"{'type': 'Point', 'coordinates': (-79.38262593, 43.65086783)}"
-11053,16169,GO-20179012279,THEFT UNDER - BICYCLE,2017-08-12T00:00:00,2017,August,Saturday,12,224,13,2017-08-12T00:00:00,2017,August,Saturday,12,224,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,7.2 FX,TO,21,BLU,600.0,STOLEN,11042,"{'type': 'Point', 'coordinates': (-79.38316368, 43.65431877)}"
-11054,16170,GO-20171471635,THEFT UNDER - BICYCLE,2017-08-08T00:00:00,2017,August,Tuesday,8,220,17,2017-08-15T00:00:00,2017,August,Tuesday,15,227,10,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,MT,21,GRNPLE,,STOLEN,11043,"{'type': 'Point', 'coordinates': (-79.3879785, 43.66997438)}"
-11055,16172,GO-20179012955,THEFT UNDER - BICYCLE,2017-08-20T00:00:00,2017,August,Sunday,20,232,12,2017-08-21T00:00:00,2017,August,Monday,21,233,23,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,CA,SILK ROAD CAAD2,TO,15,RED,1000.0,STOLEN,11044,"{'type': 'Point', 'coordinates': (-79.38467283, 43.65807476)}"
-11056,16173,GO-20179013182,THEFT UNDER - BICYCLE,2017-08-23T00:00:00,2017,August,Wednesday,23,235,17,2017-08-23T00:00:00,2017,August,Wednesday,23,235,22,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,T1000 HYBRID,RG,21,LBL,350.0,STOLEN,11045,"{'type': 'Point', 'coordinates': (-79.38581514, 43.66081576)}"
-11057,16174,GO-20179013327,THEFT UNDER - BICYCLE,2017-08-19T00:00:00,2017,August,Saturday,19,231,9,2017-08-25T00:00:00,2017,August,Friday,25,237,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,ROYALE,OT,21,BLU,0.0,STOLEN,11046,"{'type': 'Point', 'coordinates': (-79.3836938, 43.66289618)}"
-11058,16175,GO-20179014005,THEFT UNDER - BICYCLE,2017-09-05T00:00:00,2017,September,Tuesday,5,248,10,2017-09-05T00:00:00,2017,September,Tuesday,5,248,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,DR. DEW,MT,21,LGR,450.0,STOLEN,11047,"{'type': 'Point', 'coordinates': (-79.38738577, 43.66051487)}"
-11059,16176,GO-20179014160,THEFT UNDER,2017-07-24T00:00:00,2017,July,Monday,24,205,10,2017-09-06T00:00:00,2017,September,Wednesday,6,249,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,VOLARE 1200,RG,21,GRY,0.0,STOLEN,11048,"{'type': 'Point', 'coordinates': (-79.38994423, 43.6587011)}"
-11060,16177,GO-20171621057,THEFT UNDER - BICYCLE,2017-09-06T00:00:00,2017,September,Wednesday,6,249,9,2017-09-11T00:00:00,2017,September,Monday,11,254,11,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SCHWINN,,MT,18,SILWHI,700.0,STOLEN,11049,"{'type': 'Point', 'coordinates': (-79.38353872, 43.64792395)}"
-11061,16180,GO-20179014729,THEFT UNDER,2017-09-13T00:00:00,2017,September,Wednesday,13,256,9,2017-09-14T00:00:00,2017,September,Thursday,14,257,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,"17""""",TO,18,BLK,800.0,STOLEN,11050,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-11062,16182,GO-20179015069,THEFT UNDER - BICYCLE,2017-09-16T00:00:00,2017,September,Saturday,16,259,9,2017-09-18T00:00:00,2017,September,Monday,18,261,23,D52,Toronto,76,Bay Street Corridor (76),"Open Areas (Lakes, Parks, Rivers)",Outside,GI,SEEK,RG,10,DBL,500.0,STOLEN,11051,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-11063,16191,GO-20179016456,THEFT UNDER - BICYCLE,2017-10-04T00:00:00,2017,October,Wednesday,4,277,7,2017-10-04T00:00:00,2017,October,Wednesday,4,277,15,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UK,,OT,50,BLK,300.0,STOLEN,11052,"{'type': 'Point', 'coordinates': (-79.38260155, 43.6529703)}"
-11064,16198,GO-20179017334,THEFT UNDER - BICYCLE,2017-10-16T00:00:00,2017,October,Monday,16,289,0,2017-10-16T00:00:00,2017,October,Monday,16,289,15,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,BA,KATMANDU,OT,10,,0.0,STOLEN,11053,"{'type': 'Point', 'coordinates': (-79.38671683, 43.66779)}"
-11065,16199,GO-20179017387,THEFT UNDER - BICYCLE,2017-10-14T00:00:00,2017,October,Saturday,14,287,20,2017-10-17T00:00:00,2017,October,Tuesday,17,290,7,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,MILANO,RG,21,BLK,550.0,STOLEN,11054,"{'type': 'Point', 'coordinates': (-79.3865128, 43.66731082)}"
-11066,16201,GO-20179017774,THEFT UNDER - BICYCLE,2017-10-21T00:00:00,2017,October,Saturday,21,294,10,2017-10-21T00:00:00,2017,October,Saturday,21,294,19,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,BUSH PILOT,MT,24,PLE,0.0,STOLEN,11055,"{'type': 'Point', 'coordinates': (-79.37968936, 43.64733439)}"
-11067,16202,GO-20179017793,THEFT UNDER - BICYCLE,2017-10-20T00:00:00,2017,October,Friday,20,293,8,2017-10-21T00:00:00,2017,October,Saturday,21,294,10,D52,Toronto,76,Bay Street Corridor (76),Go Station,Transit,SU,,RG,18,GRY,300.0,STOLEN,11056,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-11068,16209,GO-20179019778,THEFT UNDER - BICYCLE,2017-11-15T00:00:00,2017,November,Wednesday,15,319,8,2017-11-16T00:00:00,2017,November,Thursday,16,320,12,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,MIXED TAPE,RG,7,GRY,800.0,STOLEN,11057,"{'type': 'Point', 'coordinates': (-79.38581514, 43.66081576)}"
-11069,16211,GO-20179020354,THEFT UNDER - BICYCLE,2017-11-20T00:00:00,2017,November,Monday,20,324,18,2017-11-22T00:00:00,2017,November,Wednesday,22,326,23,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,40,BLU,0.0,STOLEN,11058,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-11070,16215,GO-20179021136,THEFT UNDER - BICYCLE,2017-12-01T00:00:00,2017,December,Friday,1,335,8,2017-12-03T00:00:00,2017,December,Sunday,3,337,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,URBANIA 3,MT,24,OTH,650.0,STOLEN,11059,"{'type': 'Point', 'coordinates': (-79.37843045, 43.65040714)}"
-11071,16216,GO-20179021936,THEFT UNDER - BICYCLE,2017-09-24T00:00:00,2017,September,Sunday,24,267,19,2017-12-11T00:00:00,2017,December,Monday,11,345,20,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,SYNAPSE DISC 6C,RC,20,WHI,1600.0,STOLEN,11060,"{'type': 'Point', 'coordinates': (-79.38596803, 43.65904449)}"
-11072,16219,GO-20189002260,THEFT UNDER - BICYCLE,2018-01-23T00:00:00,2018,January,Tuesday,23,23,8,2018-01-23T00:00:00,2018,January,Tuesday,23,23,18,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RG,15,BLU,400.0,STOLEN,11061,"{'type': 'Point', 'coordinates': (-79.38298971, 43.64660463)}"
-11073,16220,GO-20189003045,THEFT UNDER,2018-01-30T00:00:00,2018,January,Tuesday,30,30,22,2018-01-30T00:00:00,2018,January,Tuesday,30,30,23,D52,Toronto,76,Bay Street Corridor (76),Bar / Restaurant,Commercial,GT,SASKAR,RC,1,SIL,1000.0,STOLEN,11062,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-11074,16221,GO-20189003045,THEFT UNDER,2018-01-30T00:00:00,2018,January,Tuesday,30,30,22,2018-01-30T00:00:00,2018,January,Tuesday,30,30,23,D52,Toronto,76,Bay Street Corridor (76),Bar / Restaurant,Commercial,GT,ZASKAR,RC,1,SIL,,STOLEN,11063,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-11075,16224,GO-20189005856,THEFT UNDER - BICYCLE,2018-02-23T00:00:00,2018,February,Friday,23,54,9,2018-02-23T00:00:00,2018,February,Friday,23,54,17,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,AA10851515,OT,21,,200.0,STOLEN,11064,"{'type': 'Point', 'coordinates': (-79.38353872, 43.64792395)}"
-11076,16226,GO-2018714369,THEFT UNDER - BICYCLE,2018-04-21T00:00:00,2018,April,Saturday,21,111,15,2018-04-21T00:00:00,2018,April,Saturday,21,111,17,D52,Toronto,76,Bay Street Corridor (76),"Open Areas (Lakes, Parks, Rivers)",Outside,RALEIGH,,RG,12,GRN,100.0,STOLEN,11065,"{'type': 'Point', 'coordinates': (-79.38260155, 43.6529703)}"
-11077,16229,GO-20189013022,THEFT UNDER - BICYCLE,2018-04-26T00:00:00,2018,April,Thursday,26,116,16,2018-04-27T00:00:00,2018,April,Friday,27,117,9,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KH,URBAN SOUL,RG,1,BLK,400.0,STOLEN,11066,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-11078,16231,GO-20189013407,THEFT UNDER - BICYCLE,2018-04-30T00:00:00,2018,April,Monday,30,120,9,2018-04-30T00:00:00,2018,April,Monday,30,120,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,BM,1,GRY,433.0,STOLEN,11067,"{'type': 'Point', 'coordinates': (-79.38827434000001, 43.65479006)}"
-11079,16234,GO-20189014555,THEFT UNDER - BICYCLE,2018-05-08T00:00:00,2018,May,Tuesday,8,128,8,2018-05-11T00:00:00,2018,May,Friday,11,131,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,RG,24,BLK,661.0,STOLEN,11068,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-11080,16236,GO-20189015411,THEFT UNDER - BICYCLE,2018-05-05T00:00:00,2018,May,Saturday,5,125,14,2018-05-18T00:00:00,2018,May,Friday,18,138,13,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,OT,1,ONG,500.0,STOLEN,11069,"{'type': 'Point', 'coordinates': (-79.37968936, 43.64733439)}"
-11081,16238,GO-20181022604,THEFT UNDER - BICYCLE,2018-06-03T00:00:00,2018,June,Sunday,3,154,7,2018-06-06T00:00:00,2018,June,Wednesday,6,157,7,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,LINUX,,RG,0,BLK,600.0,STOLEN,11070,"{'type': 'Point', 'coordinates': (-79.38737611, 43.66847728)}"
-11082,16239,GO-20189017533,THEFT UNDER - BICYCLE,2018-05-31T00:00:00,2018,May,Thursday,31,151,9,2018-06-05T00:00:00,2018,June,Tuesday,5,156,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,VFR3,OT,21,GRY,400.0,STOLEN,11071,"{'type': 'Point', 'coordinates': (-79.37869993, 43.65105518)}"
-11083,16241,GO-20189018633,THEFT UNDER,2018-06-13T00:00:00,2018,June,Wednesday,13,164,22,2018-06-13T00:00:00,2018,June,Wednesday,13,164,23,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,HF,,MT,1,CPR,90.0,STOLEN,11072,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-11084,16245,GO-20189019747,THEFT UNDER - BICYCLE,2018-06-18T00:00:00,2018,June,Monday,18,169,5,2018-06-22T00:00:00,2018,June,Friday,22,173,5,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,80918-7402,RG,18,RED,569.0,STOLEN,11073,"{'type': 'Point', 'coordinates': (-79.37968936, 43.64733439)}"
-11085,16247,GO-20189020495,THEFT UNDER - BICYCLE,2018-06-27T00:00:00,2018,June,Wednesday,27,178,14,2018-06-27T00:00:00,2018,June,Wednesday,27,178,16,D52,Toronto,76,Bay Street Corridor (76),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,K2,RG,21,BLU,800.0,STOLEN,11074,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-11086,16249,GO-20189020892,THEFT UNDER - BICYCLE,2018-07-01T00:00:00,2018,July,Sunday,1,182,17,2018-07-01T00:00:00,2018,July,Sunday,1,182,22,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,FASTROAD COMAX,RG,11,BLK,1900.0,STOLEN,11075,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-11087,16250,GO-20189021178,THEFT UNDER - BICYCLE,2018-07-04T00:00:00,2018,July,Wednesday,4,185,9,2018-07-04T00:00:00,2018,July,Wednesday,4,185,19,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,NO,,RC,30,BLK,400.0,STOLEN,11076,"{'type': 'Point', 'coordinates': (-79.38581514, 43.66081576)}"
-11088,16251,GO-20189021178,THEFT UNDER - BICYCLE,2018-07-04T00:00:00,2018,July,Wednesday,4,185,9,2018-07-04T00:00:00,2018,July,Wednesday,4,185,19,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,NO,,RC,30,BLK,400.0,STOLEN,11077,"{'type': 'Point', 'coordinates': (-79.38581514, 43.66081576)}"
-11089,16252,GO-20189021679,THEFT UNDER - BICYCLE,2018-06-09T00:00:00,2018,June,Saturday,9,160,17,2018-07-09T00:00:00,2018,July,Monday,9,190,10,D52,Toronto,76,Bay Street Corridor (76),Unknown,Other,UK,PROJECKT 8,RG,8,ONG,700.0,STOLEN,11078,"{'type': 'Point', 'coordinates': (-79.38632177, 43.65593978)}"
-11090,16253,GO-20189022086,THEFT UNDER - BICYCLE,2018-07-10T00:00:00,2018,July,Tuesday,10,191,22,2018-07-12T00:00:00,2018,July,Thursday,12,193,11,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,DIVERGE A1,RG,16,BLK,999.0,RECOVERED,11079,"{'type': 'Point', 'coordinates': (-79.38714344, 43.66436762)}"
-11091,16254,GO-20189022086,THEFT UNDER - BICYCLE,2018-07-10T00:00:00,2018,July,Tuesday,10,191,22,2018-07-12T00:00:00,2018,July,Thursday,12,193,11,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,AXELLE 5,RG,16,GRY,820.0,STOLEN,11080,"{'type': 'Point', 'coordinates': (-79.38714344, 43.66436762)}"
-11092,16257,GO-20181294901,THEFT UNDER - BICYCLE,2018-07-10T00:00:00,2018,July,Tuesday,10,191,13,2018-07-16T00:00:00,2018,July,Monday,16,197,9,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,AGRESSOR COMP,MT,7,BLK,500.0,STOLEN,11081,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11093,16259,GO-20189023041,THEFT UNDER - BICYCLE,2018-06-17T00:00:00,2018,June,Sunday,17,168,11,2018-07-19T00:00:00,2018,July,Thursday,19,200,11,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,UK,SPECIALIZED ROU,RC,60,BRN,2500.0,STOLEN,11082,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-11094,16260,GO-20189023271,THEFT UNDER,2018-07-20T00:00:00,2018,July,Friday,20,201,18,2018-07-20T00:00:00,2018,July,Friday,20,201,22,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,2007 7000 WSD,RG,7,LGR,400.0,STOLEN,11083,"{'type': 'Point', 'coordinates': (-79.38124592, 43.65320661)}"
-11095,16261,GO-20189023679,THEFT UNDER - BICYCLE,2018-07-24T00:00:00,2018,July,Tuesday,24,205,5,2018-07-24T00:00:00,2018,July,Tuesday,24,205,10,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,3500,MT,21,BLU,700.0,STOLEN,11084,"{'type': 'Point', 'coordinates': (-79.37968936, 43.64733439)}"
-11096,16264,GO-20181363820,THEFT UNDER - BICYCLE,2018-07-25T00:00:00,2018,July,Wednesday,25,206,13,2018-07-26T00:00:00,2018,July,Thursday,26,207,7,D52,Toronto,76,Bay Street Corridor (76),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,ROSEPORT 4.0,RG,7,GRN,600.0,STOLEN,11085,"{'type': 'Point', 'coordinates': (-79.38634339, 43.66246955)}"
-11097,16265,GO-20189024064,THEFT UNDER - BICYCLE,2018-07-26T00:00:00,2018,July,Thursday,26,207,19,2018-07-26T00:00:00,2018,July,Thursday,26,207,23,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,FX2,OT,24,BLK,599.0,STOLEN,11086,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11098,16267,GO-20189024268,THEFT UNDER - BICYCLE,2018-07-27T00:00:00,2018,July,Friday,27,208,11,2018-07-28T00:00:00,2018,July,Saturday,28,209,0,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,SU,,RG,10,ONG,0.0,STOLEN,11087,"{'type': 'Point', 'coordinates': (-79.38411783, 43.66390399)}"
-11099,16268,GO-20189024412,THEFT UNDER - BICYCLE,2018-07-24T00:00:00,2018,July,Tuesday,24,205,11,2018-07-29T00:00:00,2018,July,Sunday,29,210,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TT,,MT,10,GRN,1000.0,STOLEN,11088,"{'type': 'Point', 'coordinates': (-79.38671683, 43.66779)}"
-11100,16270,GO-20189024543,THEFT UNDER - BICYCLE,2018-07-30T00:00:00,2018,July,Monday,30,211,17,2018-07-30T00:00:00,2018,July,Monday,30,211,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,RG,30,LGR,1000.0,STOLEN,11089,"{'type': 'Point', 'coordinates': (-79.38209114, 43.64961443)}"
-11101,16271,GO-20189024673,THEFT UNDER - BICYCLE,2018-07-31T00:00:00,2018,July,Tuesday,31,212,10,2018-08-01T00:00:00,2018,August,Wednesday,1,213,0,D52,Toronto,76,Bay Street Corridor (76),Ttc Subway Station,Transit,GT,TRANSEO 4.0,MT,24,ONG,200.0,STOLEN,11090,"{'type': 'Point', 'coordinates': (-79.39060913000002, 43.66358401)}"
-11102,16272,GO-20189024709,THEFT UNDER - BICYCLE,2018-07-29T00:00:00,2018,July,Sunday,29,210,7,2018-07-31T00:00:00,2018,July,Tuesday,31,212,19,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,UK,,RG,10,BLU,400.0,STOLEN,11091,"{'type': 'Point', 'coordinates': (-79.38738577, 43.66051487)}"
-11103,16273,GO-20181415669,THEFT UNDER - BICYCLE,2018-07-09T00:00:00,2018,July,Monday,9,190,18,2018-08-02T00:00:00,2018,August,Thursday,2,214,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,1,BLK,400.0,STOLEN,11092,"{'type': 'Point', 'coordinates': (-79.38167842, 43.65189355)}"
-11104,16276,GO-20189025664,THEFT UNDER,2018-08-09T00:00:00,2018,August,Thursday,9,221,2,2018-08-09T00:00:00,2018,August,Thursday,9,221,12,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,UK,CRUISER,RG,7,,320.0,STOLEN,11093,"{'type': 'Point', 'coordinates': (-79.38437564, 43.65730783)}"
-11105,16279,GO-20189027558,THEFT UNDER - BICYCLE,2018-08-22T00:00:00,2018,August,Wednesday,22,234,17,2018-08-23T00:00:00,2018,August,Thursday,23,235,10,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CROSSROADS,OT,21,BLK,400.0,STOLEN,11094,"{'type': 'Point', 'coordinates': (-79.38605934000002, 43.6615638)}"
-11106,16280,GO-20189027578,THEFT UNDER,2018-08-17T00:00:00,2018,August,Friday,17,229,9,2018-08-23T00:00:00,2018,August,Thursday,23,235,11,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,CADX,OT,11,BLK,1800.0,STOLEN,11095,"{'type': 'Point', 'coordinates': (-79.38236226, 43.65027737)}"
-11107,16283,GO-20189028475,THEFT UNDER - BICYCLE,2018-08-29T00:00:00,2018,August,Wednesday,29,241,17,2018-08-29T00:00:00,2018,August,Wednesday,29,241,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,INDIE 4,RG,24,BLK,650.0,STOLEN,11096,"{'type': 'Point', 'coordinates': (-79.37903365, 43.65028111)}"
-11108,16284,GO-20181594484,THEFT UNDER - BICYCLE,2018-08-28T00:00:00,2018,August,Tuesday,28,240,19,2018-08-28T00:00:00,2018,August,Tuesday,28,240,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NAKAMURA,ROYAL 700,OT,0,GRY,300.0,STOLEN,11097,"{'type': 'Point', 'coordinates': (-79.38374902, 43.66302137000001)}"
-11109,16286,GO-20189029114,THEFT UNDER - BICYCLE,2018-09-04T00:00:00,2018,September,Tuesday,4,247,16,2018-09-04T00:00:00,2018,September,Tuesday,4,247,19,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,ANYROAD,RC,22,DBL,1200.0,STOLEN,11098,"{'type': 'Point', 'coordinates': (-79.38209114, 43.64961443)}"
-11110,16287,GO-20189029742,THEFT UNDER - BICYCLE,2018-09-09T00:00:00,2018,September,Sunday,9,252,19,2018-09-09T00:00:00,2018,September,Sunday,9,252,23,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE XL,RG,24,BLK,700.0,STOLEN,11099,"{'type': 'Point', 'coordinates': (-79.38944954, 43.65752945)}"
-11111,16289,GO-20189030853,THEFT UNDER - BICYCLE,2018-09-17T00:00:00,2018,September,Monday,17,260,8,2018-09-17T00:00:00,2018,September,Monday,17,260,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,1,,0.0,STOLEN,11100,"{'type': 'Point', 'coordinates': (-79.3802391, 43.64865033)}"
-11112,16293,GO-20189031788,THEFT UNDER - SHOPLIFTING,2018-09-24T00:00:00,2018,September,Monday,24,267,18,2018-09-24T00:00:00,2018,September,Monday,24,267,23,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,ROAD BIKE,RC,21,BLK,300.0,STOLEN,11101,"{'type': 'Point', 'coordinates': (-79.39098691, 43.66935825)}"
-11113,16294,GO-20189031764,THEFT UNDER,2018-09-22T00:00:00,2018,September,Saturday,22,265,20,2018-09-24T00:00:00,2018,September,Monday,24,267,17,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,,MT,21,BLK,750.0,STOLEN,11102,"{'type': 'Point', 'coordinates': (-79.38596803, 43.65904449)}"
-11114,16297,GO-20189033364,THEFT UNDER - BICYCLE,2018-10-05T00:00:00,2018,October,Friday,5,278,17,2018-10-09T00:00:00,2018,October,Tuesday,9,282,14,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,SUB 10,OT,8,,10000.0,STOLEN,11103,"{'type': 'Point', 'coordinates': (-79.37878196, 43.64896093)}"
-11115,23001,GO-20169013957,THEFT UNDER,2016-11-28T00:00:00,2016,November,Monday,28,333,14,2016-11-28T00:00:00,2016,November,Monday,28,333,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CROSSTRAIL COMP,MT,9,BRZ,1050.0,STOLEN,11104,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11116,16604,GO-20159008305,THEFT UNDER,2015-10-06T00:00:00,2015,October,Tuesday,6,279,16,2015-10-07T00:00:00,2015,October,Wednesday,7,280,15,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,EM,H5,EL,35,WHI,1000.0,STOLEN,11105,"{'type': 'Point', 'coordinates': (-79.37760867, 43.64852311)}"
-11117,19934,GO-20169008944,THEFT UNDER - BICYCLE,2016-08-18T00:00:00,2016,August,Thursday,18,231,0,2016-08-18T00:00:00,2016,August,Thursday,18,231,0,D52,Toronto,76,Bay Street Corridor (76),Bar / Restaurant,Commercial,FJ,STROLL,RC,1,WHI,690.0,STOLEN,11266,"{'type': 'Point', 'coordinates': (-79.37869993, 43.65105518)}"
-11118,23002,GO-20169014622,THEFT UNDER - BICYCLE,2016-12-13T00:00:00,2016,December,Tuesday,13,348,22,2016-12-14T00:00:00,2016,December,Wednesday,14,349,0,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,CC,,MT,21,WHI,350.0,STOLEN,11106,"{'type': 'Point', 'coordinates': (-79.38467283, 43.65807476)}"
-11119,19831,GO-20159001973,THEFT UNDER,2015-04-16T00:00:00,2015,April,Thursday,16,106,9,2015-04-16T00:00:00,2015,April,Thursday,16,106,14,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,TR,7100 FX (7.1),TO,18,GRY,800.0,STOLEN,11107,"{'type': 'Point', 'coordinates': (-79.38596803, 43.65904449)}"
-11120,16607,GO-20151744460,THEFT UNDER,2015-10-07T00:00:00,2015,October,Wednesday,7,280,11,2015-10-09T00:00:00,2015,October,Friday,9,282,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,OT,1,BLK,750.0,STOLEN,11108,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-11121,23003,GO-20179001064,THEFT UNDER - BICYCLE,2017-01-17T00:00:00,2017,January,Tuesday,17,17,10,2017-01-23T00:00:00,2017,January,Monday,23,23,15,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,RM,METRO LO,MT,21,BLU,500.0,STOLEN,11109,"{'type': 'Point', 'coordinates': (-79.38771667, 43.66119164)}"
-11122,16612,GO-20159009395,THEFT UNDER,2015-11-04T00:00:00,2015,November,Wednesday,4,308,8,2015-11-05T00:00:00,2015,November,Thursday,5,309,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,RG,12,RED,400.0,STOLEN,11110,"{'type': 'Point', 'coordinates': (-79.38268555, 43.64598268)}"
-11123,20587,GO-20199021539,THEFT UNDER,2019-07-08T00:00:00,2019,July,Monday,8,189,16,2019-07-09T00:00:00,2019,July,Tuesday,9,190,0,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MYKA DISC SE,MT,21,SIL,722.0,STOLEN,11111,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-11124,23004,GO-20179002294,THEFT UNDER - BICYCLE,2017-02-21T00:00:00,2017,February,Tuesday,21,52,19,2017-02-22T00:00:00,2017,February,Wednesday,22,53,5,D52,Toronto,76,Bay Street Corridor (76),Bar / Restaurant,Commercial,UK,H30 BLACK/RED 2,RC,11,BLK,1400.0,STOLEN,11112,"{'type': 'Point', 'coordinates': (-79.38379426, 43.64856165)}"
-11125,16903,GO-20142560229,FTC PROBATION ORDER,2014-07-07T00:00:00,2014,July,Monday,7,188,9,2014-07-22T00:00:00,2014,July,Tuesday,22,203,9,D52,Toronto,76,Bay Street Corridor (76),"Police / Courts (Parole Board, Probation Office)",Other,TREK,,BM,9,BLK,,STOLEN,11184,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-11126,16613,GO-20151971265,THEFT UNDER,2015-11-17T00:00:00,2015,November,Tuesday,17,321,7,2015-11-17T00:00:00,2015,November,Tuesday,17,321,8,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,MINELLI ROAD,RC,21,BLK,350.0,STOLEN,11113,"{'type': 'Point', 'coordinates': (-79.38374902, 43.66302137000001)}"
-11127,19833,GO-2015672168,THEFT UNDER,2015-04-20T00:00:00,2015,April,Monday,20,110,23,2015-04-23T00:00:00,2015,April,Thursday,23,113,13,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GIANT,15 ESCAPE 3,OT,21,GRY,553.0,STOLEN,11114,"{'type': 'Point', 'coordinates': (-79.38605934000002, 43.6615638)}"
-11128,20589,GO-20199021830,THEFT UNDER,2019-07-11T00:00:00,2019,July,Thursday,11,192,8,2019-07-11T00:00:00,2019,July,Thursday,11,192,10,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,MILANO,RG,21,RED,650.0,STOLEN,11115,"{'type': 'Point', 'coordinates': (-79.38671683, 43.66779)}"
-11129,23006,GO-20179003451,THEFT UNDER,2016-11-01T00:00:00,2016,November,Tuesday,1,306,23,2017-03-19T00:00:00,2017,March,Sunday,19,78,23,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,21,,300.0,STOLEN,11116,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11130,16615,GO-20152027628,THEFT UNDER,2015-11-25T00:00:00,2015,November,Wednesday,25,329,12,2015-11-26T00:00:00,2015,November,Thursday,26,330,10,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,OT,1,WHI,960.0,STOLEN,11117,"{'type': 'Point', 'coordinates': (-79.38501192, 43.66606363)}"
-11131,16617,GO-20159010735,THEFT UNDER,2015-10-18T00:00:00,2015,October,Sunday,18,291,13,2015-12-09T00:00:00,2015,December,Wednesday,9,343,14,D52,Toronto,76,Bay Street Corridor (76),Ttc Subway Station,Transit,UK,MINI,SC,1,BLU,200.0,STOLEN,11118,"{'type': 'Point', 'coordinates': (-79.39348694, 43.66726478)}"
-11132,16621,GO-2016200998,THEFT UNDER,2016-02-03T00:00:00,2016,February,Wednesday,3,34,1,2016-02-03T00:00:00,2016,February,Wednesday,3,34,9,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,OT,0,,,STOLEN,11119,"{'type': 'Point', 'coordinates': (-79.38820648, 43.66681234)}"
-11133,16622,GO-2016200998,THEFT UNDER,2016-02-03T00:00:00,2016,February,Wednesday,3,34,1,2016-02-03T00:00:00,2016,February,Wednesday,3,34,9,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,NORCO YORKVILLE,RG,35,SIL,385.0,STOLEN,11120,"{'type': 'Point', 'coordinates': (-79.38820648, 43.66681234)}"
-11134,16623,GO-2016211459,POSSESSION PROPERTY OBC UNDER,2016-02-04T00:00:00,2016,February,Thursday,4,35,21,2016-02-04T00:00:00,2016,February,Thursday,4,35,23,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,,MT,18,SIL,,UNKNOWN,11121,"{'type': 'Point', 'coordinates': (-79.38702746, 43.66853925)}"
-11135,16624,GO-2016211459,POSSESSION PROPERTY OBC UNDER,2016-02-04T00:00:00,2016,February,Thursday,4,35,21,2016-02-04T00:00:00,2016,February,Thursday,4,35,23,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,HARDROCK,MT,18,SIL,,UNKNOWN,11122,"{'type': 'Point', 'coordinates': (-79.38702746, 43.66853925)}"
-11136,16626,GO-20169002724,THEFT UNDER - BICYCLE,2016-03-22T00:00:00,2016,March,Tuesday,22,82,9,2016-03-24T00:00:00,2016,March,Thursday,24,84,11,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KH,UBRAN SOUL,RG,1,BLK,600.0,STOLEN,11123,"{'type': 'Point', 'coordinates': (-79.38316368, 43.65431877)}"
-11137,16627,GO-20169002801,THEFT UNDER - BICYCLE,2016-03-25T00:00:00,2016,March,Friday,25,85,19,2016-03-27T00:00:00,2016,March,Sunday,27,87,21,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,OT,"SCOTT SUB 10, 2",RG,10,GRN,1085.0,STOLEN,11124,"{'type': 'Point', 'coordinates': (-79.38820648, 43.66681234)}"
-11138,16631,GO-2016736817,THEFT UNDER - BICYCLE,2016-04-17T00:00:00,2016,April,Sunday,17,108,15,2016-04-30T00:00:00,2016,April,Saturday,30,121,18,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,GIANT,XTC,MT,21,BLKWHI,2000.0,STOLEN,11125,"{'type': 'Point', 'coordinates': (-79.38820648, 43.66681234)}"
-11139,16634,GO-20169004179,THEFT UNDER - BICYCLE,2016-05-03T00:00:00,2016,May,Tuesday,3,124,19,2016-05-05T00:00:00,2016,May,Thursday,5,126,12,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,SUB,TO,24,RED,1500.0,STOLEN,11126,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-11140,16635,GO-2016779102,THEFT UNDER - BICYCLE,2016-05-04T00:00:00,2016,May,Wednesday,4,125,16,2016-05-06T00:00:00,2016,May,Friday,6,127,17,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,OPUS,CERVIN,OT,24,WHI,800.0,STOLEN,11127,"{'type': 'Point', 'coordinates': (-79.38737611, 43.66847728)}"
-11141,16639,GO-20169004509,THEFT UNDER - BICYCLE,2016-05-14T00:00:00,2016,May,Saturday,14,135,3,2016-05-14T00:00:00,2016,May,Saturday,14,135,8,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,AVANT,RC,16,BLK,799.0,STOLEN,11128,"{'type': 'Point', 'coordinates': (-79.38612041000002, 43.66874221)}"
-11142,16641,GO-2016874311,THEFT UNDER - BICYCLE,2016-05-20T00:00:00,2016,May,Friday,20,141,18,2016-05-21T00:00:00,2016,May,Saturday,21,142,10,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,MT,12,PNK,200.0,STOLEN,11129,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-11143,16644,GO-20169005028,THEFT UNDER - BICYCLE,2016-05-26T00:00:00,2016,May,Thursday,26,147,16,2016-05-27T00:00:00,2016,May,Friday,27,148,15,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,FJ,2014 FEATHER,RG,1,BLK,600.0,STOLEN,11130,"{'type': 'Point', 'coordinates': (-79.38353872, 43.64792395)}"
-11144,16645,GO-20169005068,THEFT UNDER,2016-05-28T00:00:00,2016,May,Saturday,28,149,18,2016-05-28T00:00:00,2016,May,Saturday,28,149,22,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,VFR 3,TO,21,BLU,800.0,STOLEN,11131,"{'type': 'Point', 'coordinates': (-79.38407058, 43.649187680000004)}"
-11145,16647,GO-20169005149,THEFT UNDER,2016-05-22T00:00:00,2016,May,Sunday,22,143,2,2016-05-30T00:00:00,2016,May,Monday,30,151,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SOLO PLUS 2013,BM,1,RED,400.0,STOLEN,11132,"{'type': 'Point', 'coordinates': (-79.38808613, 43.66653345)}"
-11146,16651,GO-20169005954,THEFT UNDER - BICYCLE,2016-06-17T00:00:00,2016,June,Friday,17,169,8,2016-06-17T00:00:00,2016,June,Friday,17,169,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SQUADRA,RC,10,GRY,500.0,STOLEN,11133,"{'type': 'Point', 'coordinates': (-79.38353872, 43.64792395)}"
-11147,16653,GO-20161083303,B&E,2016-06-20T00:00:00,2016,June,Monday,20,172,8,2016-06-21T00:00:00,2016,June,Tuesday,21,173,13,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,TO,27,WHIGRN,700.0,STOLEN,11134,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-11148,16654,GO-20169006256,THEFT UNDER,2016-06-23T00:00:00,2016,June,Thursday,23,175,13,2016-06-23T00:00:00,2016,June,Thursday,23,175,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,TRANCE,MT,10,WHI,1100.0,STOLEN,11135,"{'type': 'Point', 'coordinates': (-79.38167842, 43.65189355)}"
-11149,16655,GO-20169006349,THEFT UNDER,2016-06-25T00:00:00,2016,June,Saturday,25,177,8,2016-06-25T00:00:00,2016,June,Saturday,25,177,15,D52,Toronto,76,Bay Street Corridor (76),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,OT,CRUISE BIKE,MT,18,WHI,1200.0,STOLEN,11136,"{'type': 'Point', 'coordinates': (-79.38268555, 43.64598268)}"
-11150,16656,GO-20161104766,THEFT OF EBIKE UNDER $5000,2016-06-24T00:00:00,2016,June,Friday,24,176,12,2016-06-27T00:00:00,2016,June,Monday,27,179,8,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RUSH,60 VOLT,EL,3,GRY,2400.0,STOLEN,11137,"{'type': 'Point', 'coordinates': (-79.37968936, 43.64733439)}"
-11151,16657,GO-20169006450,THEFT UNDER - BICYCLE,2016-06-27T00:00:00,2016,June,Monday,27,179,9,2016-06-27T00:00:00,2016,June,Monday,27,179,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,29 GRANDE,MT,21,RED,650.0,STOLEN,11138,"{'type': 'Point', 'coordinates': (-79.38129397, 43.65116987)}"
-11152,16658,GO-20161123590,THEFT OVER - BICYCLE,2016-06-16T00:00:00,2016,June,Thursday,16,168,7,2016-06-27T00:00:00,2016,June,Monday,27,179,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,OPERA,RC,22,LBL,7500.0,STOLEN,11139,"{'type': 'Point', 'coordinates': (-79.38262593, 43.65086783)}"
-11153,16661,GO-20169006926,THEFT UNDER,2016-07-01T00:00:00,2016,July,Friday,1,183,16,2016-07-09T00:00:00,2016,July,Saturday,9,191,12,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,TR,7.3 FX,OT,24,BLK,1100.0,STOLEN,11140,"{'type': 'Point', 'coordinates': (-79.3888294, 43.66819662)}"
-11154,16666,GO-20169007536,THEFT UNDER,2016-07-20T00:00:00,2016,July,Wednesday,20,202,18,2016-07-21T00:00:00,2016,July,Thursday,21,203,9,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE,MT,21,GRY,600.0,STOLEN,11141,"{'type': 'Point', 'coordinates': (-79.38498159, 43.64477493)}"
-11155,16671,GO-20161391142,THEFT UNDER - BICYCLE,2016-08-07T00:00:00,2016,August,Sunday,7,220,16,2016-08-07T00:00:00,2016,August,Sunday,7,220,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,D5 COMPOSITE 2,OT,21,GRY,,STOLEN,11142,"{'type': 'Point', 'coordinates': (-79.38268555, 43.64598268)}"
-11156,16672,GO-20169008714,THEFT UNDER,2016-08-13T00:00:00,2016,August,Saturday,13,226,10,2016-08-14T00:00:00,2016,August,Sunday,14,227,9,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,2008,RG,24,SIL,400.0,STOLEN,11143,"{'type': 'Point', 'coordinates': (-79.38236226, 43.65027737)}"
-11157,16673,GO-20169008724,THEFT UNDER - BICYCLE,2016-08-13T00:00:00,2016,August,Saturday,13,226,14,2016-08-14T00:00:00,2016,August,Sunday,14,227,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,STEALTH,RG,1,BLK,400.0,STOLEN,11144,"{'type': 'Point', 'coordinates': (-79.38154682, 43.65790792)}"
-11158,16675,GO-20169008969,THEFT UNDER - BICYCLE,2016-08-17T00:00:00,2016,August,Wednesday,17,230,17,2016-08-17T00:00:00,2016,August,Wednesday,17,230,22,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,,TO,18,BLK,900.0,STOLEN,11145,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-11159,16676,GO-20169008969,THEFT UNDER - BICYCLE,2016-08-17T00:00:00,2016,August,Wednesday,17,230,17,2016-08-17T00:00:00,2016,August,Wednesday,17,230,22,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,,TO,18,GRY,900.0,STOLEN,11146,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-11160,16677,GO-20161476696,THEFT OF EBIKE UNDER $5000,2016-08-20T00:00:00,2016,August,Saturday,20,233,8,2016-08-20T00:00:00,2016,August,Saturday,20,233,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,SHADOW,EL,0,BLK,2200.0,STOLEN,11147,"{'type': 'Point', 'coordinates': (-79.38584448, 43.65698887)}"
-11161,16683,GO-20169010337,THEFT UNDER,2016-09-12T00:00:00,2016,September,Monday,12,256,12,2016-09-12T00:00:00,2016,September,Monday,12,256,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE 2,RG,3,BRZ,511.0,STOLEN,11148,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11162,16686,GO-20169010578,THEFT UNDER,2016-09-17T00:00:00,2016,September,Saturday,17,261,3,2016-09-17T00:00:00,2016,September,Saturday,17,261,3,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,EM,,EL,32,BLK,1600.0,STOLEN,11149,"{'type': 'Point', 'coordinates': (-79.38944954, 43.65752945)}"
-11163,16690,GO-20169010925,THEFT UNDER,2016-09-22T00:00:00,2016,September,Thursday,22,266,14,2016-09-22T00:00:00,2016,September,Thursday,22,266,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,RG,21,BLK,600.0,STOLEN,11150,"{'type': 'Point', 'coordinates': (-79.38467283, 43.65807476)}"
-11164,16691,GO-20169010946,THEFT UNDER,2016-09-22T00:00:00,2016,September,Thursday,22,266,14,2016-09-23T00:00:00,2016,September,Friday,23,267,8,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,CRUISER,RG,3,BLK,350.0,STOLEN,11151,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-11165,16863,GO-20149002922,THEFT UNDER,2014-04-17T00:00:00,2014,April,Thursday,17,107,15,2014-04-19T00:00:00,2014,April,Saturday,19,109,16,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,FJ,TRACK,RC,1,RED,0.0,STOLEN,11159,"{'type': 'Point', 'coordinates': (-79.38353872, 43.64792395)}"
-11166,16692,GO-20169011316,THEFT UNDER - BICYCLE,2016-08-18T00:00:00,2016,August,Thursday,18,231,13,2016-09-29T00:00:00,2016,September,Thursday,29,273,17,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,COMPULSION,MT,20,BLK,1700.0,STOLEN,11152,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-11167,16695,GO-20169011508,THEFT UNDER - BICYCLE,2016-09-29T00:00:00,2016,September,Thursday,29,273,12,2016-10-03T00:00:00,2016,October,Monday,3,277,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,PE,,RC,3,YEL,300.0,STOLEN,11153,"{'type': 'Point', 'coordinates': (-79.38673938, 43.66335885)}"
-11168,16699,GO-20169011989,THEFT UNDER - BICYCLE,2016-10-12T00:00:00,2016,October,Wednesday,12,286,13,2016-10-13T00:00:00,2016,October,Thursday,13,287,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,18,GRY,1000.0,STOLEN,11154,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-11169,16700,GO-20169012610,THEFT UNDER - BICYCLE,2016-10-21T00:00:00,2016,October,Friday,21,295,23,2016-10-26T00:00:00,2016,October,Wednesday,26,300,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,BM,1,,1000.0,STOLEN,11155,"{'type': 'Point', 'coordinates': (-79.37693454, 43.64688442)}"
-11170,16702,GO-20169012978,THEFT UNDER - BICYCLE,2016-11-04T00:00:00,2016,November,Friday,4,309,9,2016-11-04T00:00:00,2016,November,Friday,4,309,18,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,UK,ECHO,RG,9,SIL,650.0,STOLEN,11156,"{'type': 'Point', 'coordinates': (-79.38129397, 43.65116987)}"
-11171,16708,GO-20162138869,THEFT UNDER - BICYCLE,2016-11-01T00:00:00,2016,November,Tuesday,1,306,0,2016-12-02T00:00:00,2016,December,Friday,2,337,14,D52,Toronto,76,Bay Street Corridor (76),"Open Areas (Lakes, Parks, Rivers)",Outside,OTHER,LIGHTENING 2012,OT,21,SIL,550.0,STOLEN,11157,"{'type': 'Point', 'coordinates': (-79.38634339, 43.66246955)}"
-11172,16719,GO-20179002503,THEFT UNDER,2017-02-23T00:00:00,2017,February,Thursday,23,54,22,2017-02-26T00:00:00,2017,February,Sunday,26,57,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,,RG,8,BGE,120.0,STOLEN,11158,"{'type': 'Point', 'coordinates': (-79.38740686, 43.66497543)}"
-11173,16904,GO-20149005199,THEFT UNDER,2014-07-18T00:00:00,2014,July,Friday,18,199,9,2014-07-21T00:00:00,2014,July,Monday,21,202,14,D52,Toronto,76,Bay Street Corridor (76),Ttc Subway Station,Transit,OT,BUZZ,MT,18,GRY,800.0,STOLEN,11185,"{'type': 'Point', 'coordinates': (-79.38738577, 43.66051487)}"
-11174,16864,GO-20149003207,THEFT UNDER,2014-05-06T00:00:00,2014,May,Tuesday,6,126,9,2014-05-07T00:00:00,2014,May,Wednesday,7,127,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,13ALLANT,RG,7,DBL,650.0,STOLEN,11160,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-11175,16865,GO-20149003215,THEFT UNDER,2014-05-07T00:00:00,2014,May,Wednesday,7,127,11,2014-05-07T00:00:00,2014,May,Wednesday,7,127,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MA,,OT,8,SIL,480.0,STOLEN,11161,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-11176,16867,GO-20149003342,THEFT UNDER,2014-05-13T00:00:00,2014,May,Tuesday,13,133,5,2014-05-13T00:00:00,2014,May,Tuesday,13,133,21,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,TO,14,BLK,3500.0,STOLEN,11162,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-11177,16868,GO-20149003346,THEFT UNDER,2014-05-12T00:00:00,2014,May,Monday,12,132,8,2014-05-14T00:00:00,2014,May,Wednesday,14,134,9,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,KONA DEW CITY,RG,21,GRY,800.0,STOLEN,11163,"{'type': 'Point', 'coordinates': (-79.38407058, 43.649187680000004)}"
-11178,16869,GO-20149003369,THEFT UNDER,2014-05-15T00:00:00,2014,May,Thursday,15,135,9,2014-05-15T00:00:00,2014,May,Thursday,15,135,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,OT,2,BLK,1000.0,STOLEN,11164,"{'type': 'Point', 'coordinates': (-79.38129397, 43.65116987)}"
-11179,16870,GO-20149003400,THEFT UNDER,2014-05-16T00:00:00,2014,May,Friday,16,136,11,2014-05-16T00:00:00,2014,May,Friday,16,136,19,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,CROSSTRAIL PRO,MT,15,BLK,1300.0,STOLEN,11165,"{'type': 'Point', 'coordinates': (-79.38374902, 43.66302137000001)}"
-11180,16871,GO-20149003404,THEFT UNDER,2014-05-16T00:00:00,2014,May,Friday,16,136,15,2014-05-16T00:00:00,2014,May,Friday,16,136,22,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,APEX,MT,18,WHI,600.0,STOLEN,11166,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11181,16872,GO-20142103476,THEFT UNDER,2014-05-18T00:00:00,2014,May,Sunday,18,138,11,2014-05-18T00:00:00,2014,May,Sunday,18,138,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,ESCAPE,OT,24,SIL,600.0,STOLEN,11167,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-11182,16873,GO-20142125389,THEFT UNDER,2014-05-21T00:00:00,2014,May,Wednesday,21,141,10,2014-05-21T00:00:00,2014,May,Wednesday,21,141,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,VITA,OT,8,PLE,700.0,UNKNOWN,11168,"{'type': 'Point', 'coordinates': (-79.38581514, 43.66081576)}"
-11183,16874,GO-20149003528,THEFT UNDER,2014-05-22T00:00:00,2014,May,Thursday,22,142,20,2014-05-23T00:00:00,2014,May,Friday,23,143,10,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,7.0 FX 2013,RG,21,GRY,400.0,STOLEN,11169,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-11184,16875,GO-20149003536,THEFT UNDER,2014-05-22T00:00:00,2014,May,Thursday,22,142,17,2014-05-23T00:00:00,2014,May,Friday,23,143,16,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,,OT,21,YEL,,STOLEN,11170,"{'type': 'Point', 'coordinates': (-79.38738577, 43.66051487)}"
-11185,16876,GO-20149003564,THEFT UNDER,2014-05-24T00:00:00,2014,May,Saturday,24,144,1,2014-05-24T00:00:00,2014,May,Saturday,24,144,19,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,8,GRY,450.0,STOLEN,11171,"{'type': 'Point', 'coordinates': (-79.38808613, 43.66653345)}"
-11186,16877,GO-20149003572,THEFT UNDER,2014-05-20T00:00:00,2014,May,Tuesday,20,140,13,2014-05-25T00:00:00,2014,May,Sunday,25,145,9,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,RM,WHISTLER 10,MT,24,GRY,630.0,STOLEN,11172,"{'type': 'Point', 'coordinates': (-79.38437564, 43.65730783)}"
-11187,16880,GO-20149003827,THEFT UNDER,2014-06-04T00:00:00,2014,June,Wednesday,4,155,16,2014-06-05T00:00:00,2014,June,Thursday,5,156,0,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,RC,10,BLK,,STOLEN,11173,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-11188,16881,GO-20142219464,THEFT UNDER,2014-06-04T00:00:00,2014,June,Wednesday,4,155,7,2014-06-04T00:00:00,2014,June,Wednesday,4,155,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,STATE,OT,1,BLK,1000.0,STOLEN,11174,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-11189,16885,GO-20142264270,THEFT UNDER,2014-06-10T00:00:00,2014,June,Tuesday,10,161,21,2014-06-10T00:00:00,2014,June,Tuesday,10,161,22,D52,Toronto,76,Bay Street Corridor (76),"Open Areas (Lakes, Parks, Rivers)",Outside,VAGABOND,VITA,MT,21,PLE,819.0,STOLEN,11175,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-11190,16888,GO-20142284063,THEFT UNDER,2014-06-13T00:00:00,2014,June,Friday,13,164,8,2014-06-13T00:00:00,2014,June,Friday,13,164,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,ESCAPE 3,OT,21,BLKGRY,500.0,STOLEN,11176,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-11191,16889,GO-20149003963,THEFT UNDER,2014-06-10T00:00:00,2014,June,Tuesday,10,161,17,2014-06-10T00:00:00,2014,June,Tuesday,10,161,20,D52,Toronto,76,Bay Street Corridor (76),"Open Areas (Lakes, Parks, Rivers)",Outside,KH,KHS SOUL,RG,1,BLK,400.0,STOLEN,11177,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-11192,16892,GO-20149004312,THEFT UNDER,2014-06-21T00:00:00,2014,June,Saturday,21,172,11,2014-06-21T00:00:00,2014,June,Saturday,21,172,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,LG SILVER,RG,7,GRY,500.0,STOLEN,11178,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-11193,16893,GO-20149004362,THEFT UNDER,2014-06-22T00:00:00,2014,June,Sunday,22,173,16,2014-06-23T00:00:00,2014,June,Monday,23,174,18,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,CC,COURSE 700C ROA,RC,14,BGE,1200.0,STOLEN,11179,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-11194,16894,GO-20149004362,THEFT UNDER,2014-06-22T00:00:00,2014,June,Sunday,22,173,16,2014-06-23T00:00:00,2014,June,Monday,23,174,18,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,UK,,OT,1,,,STOLEN,11180,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-11195,16896,GO-20142423265,THEFT UNDER,2014-07-03T00:00:00,2014,July,Thursday,3,184,11,2014-07-03T00:00:00,2014,July,Thursday,3,184,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,HEART,RG,1,BLK,450.0,STOLEN,11181,"{'type': 'Point', 'coordinates': (-79.38892782, 43.65634783)}"
-11196,16899,GO-20149004812,THEFT UNDER,2014-07-09T00:00:00,2014,July,Wednesday,9,190,18,2014-07-10T00:00:00,2014,July,Thursday,10,191,9,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RM,SHERPA 10,TO,21,RED,1500.0,STOLEN,11182,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11197,16902,GO-20149005101,THEFT UNDER,2014-07-18T00:00:00,2014,July,Friday,18,199,9,2014-07-18T00:00:00,2014,July,Friday,18,199,18,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,INTERNATIONAL,TO,18,BLU,0.0,STOLEN,11183,"{'type': 'Point', 'coordinates': (-79.38260155, 43.6529703)}"
-11198,16905,GO-20149005345,THEFT UNDER,2014-07-23T00:00:00,2014,July,Wednesday,23,204,23,2014-07-25T00:00:00,2014,July,Friday,25,206,15,D52,Toronto,76,Bay Street Corridor (76),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,THE KNIGHT,RG,1,GRY,400.0,STOLEN,11186,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11199,16909,GO-20149005737,THEFT UNDER,2014-08-08T00:00:00,2014,August,Friday,8,220,22,2014-08-09T00:00:00,2014,August,Saturday,9,221,11,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,UK,FIXED GEAR,OT,1,BLK,900.0,STOLEN,11187,"{'type': 'Point', 'coordinates': (-79.38406005, 43.64638318)}"
-11200,18778,GO-20209028441,THEFT UNDER,2020-10-20T00:00:00,2020,October,Tuesday,20,294,7,2020-11-03T00:00:00,2020,November,Tuesday,3,308,9,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,10,DBL,50.0,STOLEN,11188,"{'type': 'Point', 'coordinates': (-79.38671683, 43.66779)}"
-11201,18784,GO-20202198554,THEFT OF EBIKE UNDER $5000,2020-11-17T00:00:00,2020,November,Tuesday,17,322,14,2020-11-20T00:00:00,2020,November,Friday,20,325,5,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,,EL,1,WHI,,STOLEN,11189,"{'type': 'Point', 'coordinates': (-79.38634339, 43.66246955)}"
-11202,18793,GO-20209032732,THEFT UNDER,2020-12-22T00:00:00,2020,December,Tuesday,22,357,9,2020-12-23T00:00:00,2020,December,Wednesday,23,358,11,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,MADONE,RC,12,GRY,3500.0,STOLEN,11190,"{'type': 'Point', 'coordinates': (-79.38709792, 43.64990598)}"
-11203,18796,GO-20209024273,THEFT UNDER,2020-09-23T00:00:00,2020,September,Wednesday,23,267,9,2020-09-23T00:00:00,2020,September,Wednesday,23,267,19,D52,Toronto,76,Bay Street Corridor (76),"Police / Courts (Parole Board, Probation Office)",Other,OT,,MT,32,BLK,699.0,STOLEN,11191,"{'type': 'Point', 'coordinates': (-79.38640575, 43.65337704000001)}"
-11204,18797,GO-20209024277,THEFT UNDER,2020-09-21T00:00:00,2020,September,Monday,21,265,12,2020-09-23T00:00:00,2020,September,Wednesday,23,267,20,D52,Toronto,76,Bay Street Corridor (76),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,DIADORA ORBITA,MT,18,BLU,250.0,STOLEN,11192,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11205,18798,GO-20209024395,THEFT UNDER,2020-09-24T00:00:00,2020,September,Thursday,24,268,15,2020-09-24T00:00:00,2020,September,Thursday,24,268,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,OBK XC550 ROAD,OT,21,BLK,468.0,STOLEN,11193,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-11206,18799,GO-20209024403,THEFT UNDER,2020-09-22T00:00:00,2020,September,Tuesday,22,266,11,2020-09-24T00:00:00,2020,September,Thursday,24,268,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,EL,30,BLK,1920.0,STOLEN,11194,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11207,18809,GO-20209026086,THEFT UNDER,2020-10-10T00:00:00,2020,October,Saturday,10,284,20,2020-10-10T00:00:00,2020,October,Saturday,10,284,23,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RG,2,BLK,300.0,STOLEN,11195,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-11208,19390,GO-20179005024,THEFT UNDER,2017-04-15T00:00:00,2017,April,Saturday,15,105,21,2017-04-21T00:00:00,2017,April,Friday,21,111,12,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,12,WHI,2000.0,STOLEN,11196,"{'type': 'Point', 'coordinates': (-79.38491403, 43.66584039)}"
-11209,19392,GO-20179005293,THEFT UNDER - BICYCLE,2017-04-23T00:00:00,2017,April,Sunday,23,113,2,2017-04-25T00:00:00,2017,April,Tuesday,25,115,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,2017,MT,1,ONG,650.0,STOLEN,11197,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-11210,19393,GO-20179006063,THEFT UNDER - BICYCLE,2017-05-10T00:00:00,2017,May,Wednesday,10,130,8,2017-05-10T00:00:00,2017,May,Wednesday,10,130,15,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,,OT,10,WHI,650.0,STOLEN,11198,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-11211,19394,GO-20179006238,THEFT UNDER - BICYCLE,2017-05-13T00:00:00,2017,May,Saturday,13,133,15,2017-05-13T00:00:00,2017,May,Saturday,13,133,16,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,UK,THE FUSION,RC,1,BLK,540.0,STOLEN,11199,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11212,19396,GO-20179006350,THEFT UNDER,2017-05-15T00:00:00,2017,May,Monday,15,135,17,2017-05-15T00:00:00,2017,May,Monday,15,135,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,7.1 FX,RG,18,GRY,600.0,STOLEN,11200,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11213,19397,GO-20179006354,THEFT UNDER,2017-05-07T00:00:00,2017,May,Sunday,7,127,14,2017-05-15T00:00:00,2017,May,Monday,15,135,18,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,18,WHI,1500.0,STOLEN,11201,"{'type': 'Point', 'coordinates': (-79.38820648, 43.66681234)}"
-11214,19398,GO-20179006373,THEFT UNDER - BICYCLE,2017-05-15T00:00:00,2017,May,Monday,15,135,9,2017-05-15T00:00:00,2017,May,Monday,15,135,15,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,DIADORA NOVARA,MT,21,BLK,279.0,STOLEN,11202,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11215,19402,GO-20179006888,THEFT UNDER - BICYCLE,2017-05-24T00:00:00,2017,May,Wednesday,24,144,9,2017-05-24T00:00:00,2017,May,Wednesday,24,144,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,DEW,TO,21,DBL,700.0,STOLEN,11203,"{'type': 'Point', 'coordinates': (-79.38298971, 43.64660463)}"
-11216,19403,GO-20179007028,THEFT UNDER,2017-05-26T00:00:00,2017,May,Friday,26,146,9,2017-05-26T00:00:00,2017,May,Friday,26,146,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BI,BIANCHI STRADA,RG,18,MRN,500.0,STOLEN,11204,"{'type': 'Point', 'coordinates': (-79.38209114, 43.64961443)}"
-11217,19406,GO-20171005451,THEFT UNDER - BICYCLE,2017-05-30T00:00:00,2017,May,Tuesday,30,150,15,2017-06-06T00:00:00,2017,June,Tuesday,6,157,18,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,BIANCHI,,TO,1,RED,500.0,STOLEN,11205,"{'type': 'Point', 'coordinates': (-79.38129397, 43.65116987)}"
-11218,19407,GO-20171018500,THEFT UNDER - BICYCLE,2017-06-07T00:00:00,2017,June,Wednesday,7,158,9,2017-06-08T00:00:00,2017,June,Thursday,8,159,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,1.5,RG,16,BLKSIL,500.0,STOLEN,11206,"{'type': 'Point', 'coordinates': (-79.38353872, 43.64792395)}"
-11219,19408,GO-20179008058,THEFT UNDER - BICYCLE,2017-06-13T00:00:00,2017,June,Tuesday,13,164,8,2017-06-13T00:00:00,2017,June,Tuesday,13,164,21,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,TR,MARLIN,MT,21,GRY,745.0,STOLEN,11207,"{'type': 'Point', 'coordinates': (-79.38485374000001, 43.65851077)}"
-11220,19410,GO-20171059124,THEFT UNDER - BICYCLE,2017-06-14T00:00:00,2017,June,Wednesday,14,165,12,2017-06-14T00:00:00,2017,June,Wednesday,14,165,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,LOUIS GARNEAU,XENOS 2,RC,10,BLKRED,5000.0,STOLEN,11208,"{'type': 'Point', 'coordinates': (-79.39045505, 43.65985872)}"
-11221,19411,GO-20179008257,THEFT UNDER - BICYCLE,2017-06-16T00:00:00,2017,June,Friday,16,167,13,2017-06-16T00:00:00,2017,June,Friday,16,167,21,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,SIRRUS,RC,21,BLU,400.0,STOLEN,11209,"{'type': 'Point', 'coordinates': (-79.38946225, 43.66523161)}"
-11222,19412,GO-20179008270,THEFT UNDER - BICYCLE,2017-06-16T00:00:00,2017,June,Friday,16,167,21,2017-06-17T00:00:00,2017,June,Saturday,17,168,0,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,SUPERCYCLE SC18,MT,18,RED,140.0,STOLEN,11210,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-11223,19419,GO-20179009467,THEFT UNDER - BICYCLE,2017-07-04T00:00:00,2017,July,Tuesday,4,185,23,2017-07-05T00:00:00,2017,July,Wednesday,5,186,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,21,SIL,250.0,STOLEN,11211,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-11224,19424,GO-20171308836,THEFT UNDER,2017-06-27T00:00:00,2017,June,Tuesday,27,178,9,2017-07-21T00:00:00,2017,July,Friday,21,202,12,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SYM,SYMBA,SC,0,WHIBLK,3387.0,STOLEN,11212,"{'type': 'Point', 'coordinates': (-79.3879785, 43.66997438)}"
-11225,19834,GO-2015673806,THEFT UNDER,2015-04-23T00:00:00,2015,April,Thursday,23,113,16,2015-04-23T00:00:00,2015,April,Thursday,23,113,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SURLY,LONG HAUL,TO,27,,1200.0,STOLEN,11213,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-11226,19836,GO-20159002310,THEFT UNDER,2015-01-01T00:00:00,2015,January,Thursday,1,1,17,2015-04-27T00:00:00,2015,April,Monday,27,117,17,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,BLK,400.0,STOLEN,11214,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-11227,19837,GO-20159002392,THEFT UNDER,2015-05-02T00:00:00,2015,May,Saturday,2,122,9,2015-05-02T00:00:00,2015,May,Saturday,2,122,12,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GF,,MT,21,BLK,1000.0,STOLEN,11215,"{'type': 'Point', 'coordinates': (-79.38374902, 43.66302137000001)}"
-11228,19839,GO-20159003115,THEFT UNDER,2015-05-19T00:00:00,2015,May,Tuesday,19,139,5,2015-05-26T00:00:00,2015,May,Tuesday,26,146,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,RG,18,RED,1000.0,STOLEN,11216,"{'type': 'Point', 'coordinates': (-79.38402022, 43.65643576000001)}"
-11229,19841,GO-20159003318,THEFT UNDER,2015-06-03T00:00:00,2015,June,Wednesday,3,154,13,2015-06-03T00:00:00,2015,June,Wednesday,3,154,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,XFR 4,OT,8,DBL,575.0,RECOVERED,11217,"{'type': 'Point', 'coordinates': (-79.38402022, 43.65643576000001)}"
-11230,19843,GO-2015935828,THEFT UNDER,2015-06-04T00:00:00,2015,June,Thursday,4,155,14,2015-06-04T00:00:00,2015,June,Thursday,4,155,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MOTORINO,XPN,SC,0,BLK,3000.0,STOLEN,11218,"{'type': 'Point', 'coordinates': (-79.39348694, 43.66726478)}"
-11231,19844,GO-20159003483,THEFT UNDER,2015-06-09T00:00:00,2015,June,Tuesday,9,160,8,2015-06-10T00:00:00,2015,June,Wednesday,10,161,8,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,ONE GEAR,TO,1,BLK,500.0,STOLEN,11219,"{'type': 'Point', 'coordinates': (-79.38634339, 43.66246955)}"
-11232,19846,GO-20151018512,THEFT UNDER,2015-06-16T00:00:00,2015,June,Tuesday,16,167,22,2015-06-17T00:00:00,2015,June,Wednesday,17,168,16,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,EBIKE,EL,0,,500.0,STOLEN,11220,"{'type': 'Point', 'coordinates': (-79.38605934000002, 43.6615638)}"
-11233,19847,GO-20159003874,THEFT UNDER,2015-06-22T00:00:00,2015,June,Monday,22,173,20,2015-06-23T00:00:00,2015,June,Tuesday,23,174,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,18,BLK,50.0,STOLEN,11221,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-11234,19848,GO-20159003898,THEFT UNDER,2015-06-23T00:00:00,2015,June,Tuesday,23,174,19,2015-06-24T00:00:00,2015,June,Wednesday,24,175,0,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RA,,MT,21,SIL,0.0,STOLEN,11222,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-11235,19849,GO-20159003929,THEFT UNDER,2015-06-11T00:00:00,2015,June,Thursday,11,162,9,2015-06-25T00:00:00,2015,June,Thursday,25,176,10,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,UK,,TO,15,BLK,0.0,STOLEN,11223,"{'type': 'Point', 'coordinates': (-79.38739744, 43.65571903)}"
-11236,19850,GO-20159004175,THEFT UNDER,2015-07-05T00:00:00,2015,July,Sunday,5,186,0,2015-07-05T00:00:00,2015,July,Sunday,5,186,9,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE,RG,3,BLK,600.0,STOLEN,11224,"{'type': 'Point', 'coordinates': (-79.38605934000002, 43.6615638)}"
-11237,19854,GO-20159004574,THEFT UNDER,2015-07-15T00:00:00,2015,July,Wednesday,15,196,6,2015-07-15T00:00:00,2015,July,Wednesday,15,196,8,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KO,,MT,30,WHI,1000.0,STOLEN,11225,"{'type': 'Point', 'coordinates': (-79.38124592, 43.65320661)}"
-11238,19855,GO-20159004668,THEFT UNDER,2015-07-18T00:00:00,2015,July,Saturday,18,199,16,2015-07-18T00:00:00,2015,July,Saturday,18,199,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,2015 INDY 3 FOR,TO,25,BLU,800.0,STOLEN,11226,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11239,19856,GO-20159004707,THEFT UNDER,2015-07-18T00:00:00,2015,July,Saturday,18,199,21,2015-07-20T00:00:00,2015,July,Monday,20,201,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MA,,RG,18,BLK,1000.0,STOLEN,11227,"{'type': 'Point', 'coordinates': (-79.38551636, 43.64886856)}"
-11240,19858,GO-20159004885,THEFT UNDER,2015-07-22T00:00:00,2015,July,Wednesday,22,203,11,2015-07-23T00:00:00,2015,July,Thursday,23,204,10,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RM,METRO 10,RG,24,DBL,631.0,STOLEN,11228,"{'type': 'Point', 'coordinates': (-79.38411783, 43.66390399)}"
-11241,19859,GO-20159005042,THEFT UNDER,2015-07-20T00:00:00,2015,July,Monday,20,201,11,2015-07-27T00:00:00,2015,July,Monday,27,208,11,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,INDIE 4,RG,24,BLK,600.0,STOLEN,11229,"{'type': 'Point', 'coordinates': (-79.39098691, 43.66935825)}"
-11242,19860,GO-20159005069,THEFT UNDER,2015-07-27T00:00:00,2015,July,Monday,27,208,8,2015-07-27T00:00:00,2015,July,Monday,27,208,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,GT 1.0,MT,24,SIL,400.0,STOLEN,11230,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-11243,19861,GO-20159005408,THEFT UNDER,2015-08-06T00:00:00,2015,August,Thursday,6,218,9,2015-08-06T00:00:00,2015,August,Thursday,6,218,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,PULSE,EL,32,LGR,700.0,STOLEN,11231,"{'type': 'Point', 'coordinates': (-79.38944954, 43.65752945)}"
-11244,19865,GO-20151432570,THEFT UNDER,2015-08-14T00:00:00,2015,August,Friday,14,226,9,2015-08-20T00:00:00,2015,August,Thursday,20,232,11,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,MT,1,BLK,300.0,STOLEN,11232,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-11245,19866,GO-20159005969,THEFT UNDER,2015-08-17T00:00:00,2015,August,Monday,17,229,14,2015-08-17T00:00:00,2015,August,Monday,17,229,22,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,2009 56/XL,RG,56,WHI,1700.0,STOLEN,11233,"{'type': 'Point', 'coordinates': (-79.38103127, 43.65056603)}"
-11246,19869,GO-20159006567,THEFT UNDER,2015-08-30T00:00:00,2015,August,Sunday,30,242,16,2015-08-31T00:00:00,2015,August,Monday,31,243,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,FIRE MOUNTAIN,MT,27,DBL,650.0,STOLEN,11234,"{'type': 'Point', 'coordinates': (-79.3879785, 43.66997438)}"
-11247,19870,GO-20159006919,THEFT UNDER,2015-09-08T00:00:00,2015,September,Tuesday,8,251,16,2015-09-08T00:00:00,2015,September,Tuesday,8,251,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,,RC,7,WHI,0.0,STOLEN,11235,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11248,19871,GO-20151562970,THEFT UNDER,2015-09-09T00:00:00,2015,September,Wednesday,9,252,8,2015-09-10T00:00:00,2015,September,Thursday,10,253,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,ROCKY MOUNTAIN,RC 10,RG,21,BLU,992.0,STOLEN,11236,"{'type': 'Point', 'coordinates': (-79.38476701, 43.64766165)}"
-11249,19877,GO-20159008529,THEFT UNDER,2015-10-09T00:00:00,2015,October,Friday,9,282,18,2015-10-14T00:00:00,2015,October,Wednesday,14,287,22,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,STORM,MT,18,DBL,500.0,STOLEN,11237,"{'type': 'Point', 'coordinates': (-79.38374902, 43.66302137000001)}"
-11250,19878,GO-20151802070,THEFT UNDER,2015-10-19T00:00:00,2015,October,Monday,19,292,15,2015-10-19T00:00:00,2015,October,Monday,19,292,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,ROCKY MOUNTAIN,WHISTLER,OT,27,GRY,900.0,STOLEN,11238,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11251,20590,GO-20199021856,THEFT UNDER,2019-07-11T00:00:00,2019,July,Thursday,11,192,9,2019-07-11T00:00:00,2019,July,Thursday,11,192,11,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,UK,ANNEX,TO,7,LBL,350.0,STOLEN,11239,"{'type': 'Point', 'coordinates': (-79.37968936, 43.64733439)}"
-11252,19879,GO-20159008868,THEFT UNDER,2015-10-21T00:00:00,2015,October,Wednesday,21,294,15,2015-10-22T00:00:00,2015,October,Thursday,22,295,10,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,FIXED GEAR,RG,1,BLK,400.0,STOLEN,11240,"{'type': 'Point', 'coordinates': (-79.38353872, 43.64792395)}"
-11253,19919,GO-20169006151,THEFT UNDER - BICYCLE,2016-06-21T00:00:00,2016,June,Tuesday,21,173,8,2016-06-21T00:00:00,2016,June,Tuesday,21,173,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,1200,RC,27,RED,1300.0,STOLEN,11257,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-11254,19882,GO-20151957788,THEFT UNDER,2015-11-03T00:00:00,2015,November,Tuesday,3,307,0,2015-11-14T00:00:00,2015,November,Saturday,14,318,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,PIGEON,EL,1,BLU,1130.0,STOLEN,11241,"{'type': 'Point', 'coordinates': (-79.38077050000001, 43.64989242)}"
-11255,19883,GO-20159010116,THEFT UNDER,2015-10-19T00:00:00,2015,October,Monday,19,292,10,2015-11-23T00:00:00,2015,November,Monday,23,327,22,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,,,RG,18,,250.0,STOLEN,11242,"{'type': 'Point', 'coordinates': (-79.38467283, 43.65807476)}"
-11256,19886,GO-20159010860,THEFT UNDER,2015-11-06T00:00:00,2015,November,Friday,6,310,9,2015-12-13T00:00:00,2015,December,Sunday,13,347,10,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,NOVARA PRO 19 I,MT,21,BLK,460.0,STOLEN,11243,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11257,19889,GO-20169000520,THEFT UNDER,2015-12-21T00:00:00,2015,December,Monday,21,355,8,2016-01-15T00:00:00,2016,January,Friday,15,15,8,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,RA,,OT,7,BLK,1000.0,STOLEN,11244,"{'type': 'Point', 'coordinates': (-79.38702746, 43.66853925)}"
-11258,19890,GO-20169000886,THEFT UNDER,2016-01-26T00:00:00,2016,January,Tuesday,26,26,18,2016-01-27T00:00:00,2016,January,Wednesday,27,27,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,PACE HYBRID,RC,1,BLK,250.0,STOLEN,11245,"{'type': 'Point', 'coordinates': (-79.38154682, 43.65790792)}"
-11259,19896,GO-20169002620,THEFT UNDER,2016-03-21T00:00:00,2016,March,Monday,21,81,10,2016-03-23T00:00:00,2016,March,Wednesday,23,83,0,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,INDIE 4,RG,24,RED,597.0,STOLEN,11246,"{'type': 'Point', 'coordinates': (-79.3879785, 43.66997438)}"
-11260,19897,GO-20169002870,THEFT UNDER - BICYCLE,2016-03-25T00:00:00,2016,March,Friday,25,85,7,2016-03-29T00:00:00,2016,March,Tuesday,29,89,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,VFR 4 2012,RG,21,RED,533.0,STOLEN,11247,"{'type': 'Point', 'coordinates': (-79.3863755, 43.65817391)}"
-11261,19899,GO-20169003484,THEFT UNDER,2016-04-16T00:00:00,2016,April,Saturday,16,107,13,2016-04-17T00:00:00,2016,April,Sunday,17,108,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ROME 72V,EL,32,BLK,3000.0,STOLEN,11248,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-11262,19900,GO-20169003613,THEFT UNDER - BICYCLE,2016-04-19T00:00:00,2016,April,Tuesday,19,110,9,2016-04-20T00:00:00,2016,April,Wednesday,20,111,15,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,KO,,MT,21,TRQ,0.0,STOLEN,11249,"{'type': 'Point', 'coordinates': (-79.37760867, 43.64852311)}"
-11263,19904,GO-20169004334,THEFT UNDER,2016-05-09T00:00:00,2016,May,Monday,9,130,12,2016-05-09T00:00:00,2016,May,Monday,9,130,22,D52,Toronto,76,Bay Street Corridor (76),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,OT,SIRRUS COMP 58,RG,28,BLK,1027.0,STOLEN,11250,"{'type': 'Point', 'coordinates': (-79.38461112, 43.65044055)}"
-11264,19905,GO-20169004619,THEFT UNDER,2016-05-16T00:00:00,2016,May,Monday,16,137,18,2016-05-17T00:00:00,2016,May,Tuesday,17,138,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,CROSSTRAIL DISC,RG,8,BLK,700.0,STOLEN,11251,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-11265,19907,GO-20169004824,THEFT UNDER,2016-05-22T00:00:00,2016,May,Sunday,22,143,12,2016-05-22T00:00:00,2016,May,Sunday,22,143,20,D52,Toronto,76,Bay Street Corridor (76),"Religious Facilities (Synagogue, Church, Convent, Mosque)",Other,OT,WELLINGTON,RG,10,WHI,800.0,STOLEN,11252,"{'type': 'Point', 'coordinates': (-79.38808613, 43.66653345)}"
-11266,19909,GO-2016888538,THEFT UNDER - BICYCLE,2016-05-23T00:00:00,2016,May,Monday,23,144,16,2016-05-23T00:00:00,2016,May,Monday,23,144,17,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MIELE,,OT,20,DBL,,STOLEN,11253,"{'type': 'Point', 'coordinates': (-79.38374902, 43.66302137000001)}"
-11267,19911,GO-20169005018,THEFT UNDER - BICYCLE,2016-05-27T00:00:00,2016,May,Friday,27,148,15,2016-05-27T00:00:00,2016,May,Friday,27,148,15,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,OT,0,,,STOLEN,11254,"{'type': 'Point', 'coordinates': (-79.38260155, 43.6529703)}"
-11268,19912,GO-2016933815,THEFT UNDER - BICYCLE,2016-05-24T00:00:00,2016,May,Tuesday,24,145,18,2016-05-30T00:00:00,2016,May,Monday,30,151,10,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,ROLL 1,OT,1,WHI,650.0,STOLEN,11255,"{'type': 'Point', 'coordinates': (-79.38501192, 43.66606363)}"
-11269,19917,GO-20161071720,THEFT OF EBIKE UNDER $5000,2016-06-19T00:00:00,2016,June,Sunday,19,171,7,2016-06-19T00:00:00,2016,June,Sunday,19,171,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,YORKVILLE,EL,2,ONG,1500.0,STOLEN,11256,"{'type': 'Point', 'coordinates': (-79.38262593, 43.65086783)}"
-11270,19922,GO-20169007100,THEFT UNDER - BICYCLE,2016-07-11T00:00:00,2016,July,Monday,11,193,19,2016-07-12T00:00:00,2016,July,Tuesday,12,194,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,THE BARON,RC,20,BLK,0.0,STOLEN,11258,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-11271,19926,GO-20169007503,THEFT UNDER - BICYCLE,2016-07-20T00:00:00,2016,July,Wednesday,20,202,9,2016-07-20T00:00:00,2016,July,Wednesday,20,202,19,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,KH,,RG,24,GRY,757.0,STOLEN,11259,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-11272,19928,GO-20169007685,THEFT OF EBIKE UNDER $5000,2016-07-24T00:00:00,2016,July,Sunday,24,206,16,2016-07-24T00:00:00,2016,July,Sunday,24,206,18,D52,Toronto,76,Bay Street Corridor (76),Convenience Stores,Commercial,UK,E BREEZE,EL,33,BLKSIL,2100.0,STOLEN,11260,"{'type': 'Point', 'coordinates': (-79.38702746, 43.66853925)}"
-11273,19929,GO-20169007791,THEFT UNDER - BICYCLE,2016-07-19T00:00:00,2016,July,Tuesday,19,201,9,2016-07-26T00:00:00,2016,July,Tuesday,26,208,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,RG,10,WHI,406.0,STOLEN,11261,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-11274,19930,GO-20169008089,THEFT UNDER - BICYCLE,2016-07-29T00:00:00,2016,July,Friday,29,211,15,2016-08-02T00:00:00,2016,August,Tuesday,2,215,15,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,CC,,RG,7,LBL,250.0,STOLEN,11262,"{'type': 'Point', 'coordinates': (-79.38209114, 43.64961443)}"
-11275,19931,GO-20169008286,THEFT UNDER,2016-08-05T00:00:00,2016,August,Friday,5,218,20,2016-08-05T00:00:00,2016,August,Friday,5,218,23,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE,RG,21,BLU,779.0,STOLEN,11263,"{'type': 'Point', 'coordinates': (-79.38154682, 43.65790792)}"
-11276,19932,GO-20161412327,THEFT UNDER - BICYCLE,2016-08-06T00:00:00,2016,August,Saturday,6,219,21,2016-08-10T00:00:00,2016,August,Wednesday,10,223,22,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,DIRT JUMPER,OT,1,SIL,500.0,STOLEN,11264,"{'type': 'Point', 'coordinates': (-79.38565688, 43.65832672)}"
-11277,19933,GO-20169008528,THEFT UNDER,2016-08-05T00:00:00,2016,August,Friday,5,218,9,2016-08-10T00:00:00,2016,August,Wednesday,10,223,23,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,GI,,RG,12,,759.0,STOLEN,11265,"{'type': 'Point', 'coordinates': (-79.38209114, 43.64961443)}"
-11278,19935,GO-20169009094,THEFT UNDER,2016-08-19T00:00:00,2016,August,Friday,19,232,8,2016-08-19T00:00:00,2016,August,Friday,19,232,22,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,ABSOLUTE,RG,18,SIL,700.0,STOLEN,11267,"{'type': 'Point', 'coordinates': (-79.38640575, 43.65337704000001)}"
-11279,19936,GO-20169009293,THEFT UNDER,2016-08-22T00:00:00,2016,August,Monday,22,235,20,2016-08-22T00:00:00,2016,August,Monday,22,235,23,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,OT,1,SIL,2500.0,STOLEN,11268,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-11280,19937,GO-20169009610,THEFT UNDER - BICYCLE,2016-08-20T00:00:00,2016,August,Saturday,20,233,19,2016-08-28T00:00:00,2016,August,Sunday,28,241,14,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,FJ,TRACK,RC,1,SIL,650.0,STOLEN,11269,"{'type': 'Point', 'coordinates': (-79.38605934000002, 43.6615638)}"
-11281,19938,GO-20169009657,THEFT UNDER - BICYCLE,2016-08-29T00:00:00,2016,August,Monday,29,242,8,2016-08-29T00:00:00,2016,August,Monday,29,242,18,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,,MT,21,RED,0.0,STOLEN,11270,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-11282,19939,GO-20169009766,THEFT UNDER - BICYCLE,2016-08-26T00:00:00,2016,August,Friday,26,239,17,2016-08-31T00:00:00,2016,August,Wednesday,31,244,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RC,1,BLK,500.0,STOLEN,11271,"{'type': 'Point', 'coordinates': (-79.38542161, 43.64752091)}"
-11283,19942,GO-20161583134,THEFT UNDER - BICYCLE,2016-09-06T00:00:00,2016,September,Tuesday,6,250,16,2016-09-06T00:00:00,2016,September,Tuesday,6,250,17,D52,Toronto,76,Bay Street Corridor (76),Convenience Stores,Commercial,GIANT,ESCAPE,RG,1,BLU,745.0,STOLEN,11272,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-11284,19943,GO-20169010449,THEFT UNDER,2016-09-13T00:00:00,2016,September,Tuesday,13,257,17,2016-09-14T00:00:00,2016,September,Wednesday,14,258,16,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,PROMENADE,RG,40,WHI,540.0,STOLEN,11273,"{'type': 'Point', 'coordinates': (-79.3879785, 43.66997438)}"
-11285,19946,GO-20169011820,THEFT UNDER,2016-10-10T00:00:00,2016,October,Monday,10,284,10,2016-10-11T00:00:00,2016,October,Tuesday,11,285,2,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,VENTURA SPORT,RC,18,GRY,650.0,STOLEN,11274,"{'type': 'Point', 'coordinates': (-79.39410211, 43.66871992)}"
-11286,19947,GO-20169011841,THEFT UNDER,2016-10-01T00:00:00,2016,October,Saturday,1,275,15,2016-10-11T00:00:00,2016,October,Tuesday,11,285,12,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,,OT,20,BLK,1500.0,STOLEN,11275,"{'type': 'Point', 'coordinates': (-79.38634339, 43.66246955)}"
-11287,19949,GO-20169011931,THEFT UNDER,2016-10-11T00:00:00,2016,October,Tuesday,11,285,12,2016-10-12T00:00:00,2016,October,Wednesday,12,286,12,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,NO,VFR3,RG,27,GRY,650.0,STOLEN,11276,"{'type': 'Point', 'coordinates': (-79.38260155, 43.6529703)}"
-11288,19950,GO-20169011991,THEFT UNDER - BICYCLE,2016-09-26T00:00:00,2016,September,Monday,26,270,13,2016-10-13T00:00:00,2016,October,Thursday,13,287,14,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,7.1FX,OT,21,GRY,520.0,STOLEN,11277,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-11289,19951,GO-20169012022,THEFT UNDER - BICYCLE,2016-10-12T00:00:00,2016,October,Wednesday,12,286,9,2016-10-14T00:00:00,2016,October,Friday,14,288,1,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,MT,21,,500.0,STOLEN,11278,"{'type': 'Point', 'coordinates': (-79.38944954, 43.65752945)}"
-11290,19961,GO-20179000812,THEFT UNDER,2017-01-18T00:00:00,2017,January,Wednesday,18,18,9,2017-01-18T00:00:00,2017,January,Wednesday,18,18,15,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ROAD BIKE,RG,10,LBL,200.0,STOLEN,11279,"{'type': 'Point', 'coordinates': (-79.37878196, 43.64896093)}"
-11291,19965,GO-20179001375,THEFT UNDER - BICYCLE,2017-01-30T00:00:00,2017,January,Monday,30,30,20,2017-01-31T00:00:00,2017,January,Tuesday,31,31,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,8,BLU,250.0,STOLEN,11280,"{'type': 'Point', 'coordinates': (-79.38740686, 43.66497543)}"
-11292,19966,GO-20179002189,THEFT UNDER - BICYCLE,2017-02-18T00:00:00,2017,February,Saturday,18,49,16,2017-02-19T00:00:00,2017,February,Sunday,19,50,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,,MT,8,WHI,200.0,STOLEN,11281,"{'type': 'Point', 'coordinates': (-79.38374902, 43.66302137000001)}"
-11293,19972,GO-2017614405,THEFT UNDER - BICYCLE,2017-03-31T00:00:00,2017,March,Friday,31,90,15,2017-04-07T00:00:00,2017,April,Friday,7,97,17,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,REGULAR,,RG,0,BLUWHI,40.0,STOLEN,11282,"{'type': 'Point', 'coordinates': (-79.38737611, 43.66847728)}"
-11294,19973,GO-20179004570,THEFT UNDER - BICYCLE,2017-04-10T00:00:00,2017,April,Monday,10,100,9,2017-04-11T00:00:00,2017,April,Tuesday,11,101,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,9,YEL,1000.0,STOLEN,11283,"{'type': 'Point', 'coordinates': (-79.38124592, 43.65320661)}"
-11295,20135,GO-20141492599,THEFT OVER,2014-01-25T00:00:00,2014,January,Saturday,25,25,8,2014-02-08T00:00:00,2014,February,Saturday,8,39,16,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SCAPIN,FAZER,RC,18,,9423.0,STOLEN,11284,"{'type': 'Point', 'coordinates': (-79.38702746, 43.66853925)}"
-11296,20136,GO-20149001330,THEFT UNDER,2014-02-16T00:00:00,2014,February,Sunday,16,47,14,2014-02-17T00:00:00,2014,February,Monday,17,48,5,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,DB,,RG,21,DGR,150.0,STOLEN,11285,"{'type': 'Point', 'coordinates': (-79.38374902, 43.66302137000001)}"
-11297,20137,GO-20141760643,THEFT UNDER,2014-03-24T00:00:00,2014,March,Monday,24,83,12,2014-03-24T00:00:00,2014,March,Monday,24,83,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,,EL,20,SIL,1800.0,STOLEN,11286,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-11298,20140,GO-20149002669,THEFT UNDER,2014-04-08T00:00:00,2014,April,Tuesday,8,98,2,2014-04-09T00:00:00,2014,April,Wednesday,9,99,19,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,SU,SUPERCYCLE 1800,MT,18,BLU,200.0,STOLEN,11287,"{'type': 'Point', 'coordinates': (-79.38482092, 43.65454718)}"
-11299,20141,GO-20141870591,THEFT UNDER,2014-04-11T00:00:00,2014,April,Friday,11,101,13,2014-04-11T00:00:00,2014,April,Friday,11,101,14,D52,Toronto,76,Bay Street Corridor (76),Jails / Detention Centres,Other,OPUS,21 SPEED,BM,21,BLK,200.0,STOLEN,11288,"{'type': 'Point', 'coordinates': (-79.38167842, 43.65189355)}"
-11300,20145,GO-20149003059,THEFT UNDER,2014-04-28T00:00:00,2014,April,Monday,28,118,21,2014-04-29T00:00:00,2014,April,Tuesday,29,119,10,D52,Toronto,76,Bay Street Corridor (76),Bar / Restaurant,Commercial,UK,,MT,7,TRQ,350.0,STOLEN,11289,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-11301,20149,GO-20149003524,THEFT UNDER,2014-05-21T00:00:00,2014,May,Wednesday,21,141,16,2014-05-22T00:00:00,2014,May,Thursday,22,142,21,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,TR,7300,TO,15,WHI,1000.0,STOLEN,11290,"{'type': 'Point', 'coordinates': (-79.38768427, 43.66564487000001)}"
-11302,20153,GO-20142242705,THEFT UNDER,2014-06-07T00:00:00,2014,June,Saturday,7,158,16,2014-06-10T00:00:00,2014,June,Tuesday,10,161,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,CYPRESS,TO,21,BRN,420.0,STOLEN,11291,"{'type': 'Point', 'coordinates': (-79.38552201, 43.64605338)}"
-11303,20155,GO-20142296318,THEFT UNDER,2014-06-15T00:00:00,2014,June,Sunday,15,166,15,2014-06-15T00:00:00,2014,June,Sunday,15,166,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,,TO,18,BLU,800.0,STOLEN,11292,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11304,20156,GO-20149003960,THEFT UNDER,2014-06-10T00:00:00,2014,June,Tuesday,10,161,10,2014-06-10T00:00:00,2014,June,Tuesday,10,161,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,,RG,12,GRY,400.0,STOLEN,11293,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-11305,20158,GO-20142296362,THEFT UNDER,2014-06-08T00:00:00,2014,June,Sunday,8,159,11,2014-06-15T00:00:00,2014,June,Sunday,15,166,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BROADIE,,MT,21,GLDBRN,450.0,STOLEN,11294,"{'type': 'Point', 'coordinates': (-79.38618236, 43.65775862)}"
-11306,20161,GO-20149004197,THEFT UNDER,2014-06-15T00:00:00,2014,June,Sunday,15,166,0,2014-06-17T00:00:00,2014,June,Tuesday,17,168,22,D52,Toronto,76,Bay Street Corridor (76),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,OT,,MT,22,GRY,900.0,STOLEN,11295,"{'type': 'Point', 'coordinates': (-79.38262593, 43.65086783)}"
-11307,20162,GO-20149004231,THEFT UNDER,2014-06-09T00:00:00,2014,June,Monday,9,160,9,2014-06-19T00:00:00,2014,June,Thursday,19,170,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,MT,21,GRN,600.0,STOLEN,11296,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-11308,20163,GO-20149004243,THEFT UNDER,2014-06-18T00:00:00,2014,June,Wednesday,18,169,18,2014-06-19T00:00:00,2014,June,Thursday,19,170,16,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,EL,32,WHI,,STOLEN,11297,"{'type': 'Point', 'coordinates': (-79.38738577, 43.66051487)}"
-11309,20166,GO-20149004467,THEFT UNDER,2014-06-24T00:00:00,2014,June,Tuesday,24,175,10,2014-06-25T00:00:00,2014,June,Wednesday,25,176,10,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,OT,1,BLK,600.0,STOLEN,11298,"{'type': 'Point', 'coordinates': (-79.38714344, 43.66436762)}"
-11310,20168,GO-20142430215,THEFT UNDER,2014-07-04T00:00:00,2014,July,Friday,4,185,12,2014-07-04T00:00:00,2014,July,Friday,4,185,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,REVA,MT,21,GRYYEL,2500.0,STOLEN,11299,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-11311,20169,GO-20142429738,THEFT UNDER,2014-06-22T00:00:00,2014,June,Sunday,22,173,17,2014-07-04T00:00:00,2014,July,Friday,4,185,15,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RALEIGH,,MT,21,WHI,300.0,STOLEN,11300,"{'type': 'Point', 'coordinates': (-79.38634339, 43.66246955)}"
-11312,20172,GO-20149004857,THEFT UNDER,2014-07-04T00:00:00,2014,July,Friday,4,185,22,2014-07-09T00:00:00,2014,July,Wednesday,9,190,22,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,,RG,21,RED,400.0,STOLEN,11301,"{'type': 'Point', 'coordinates': (-79.37968936, 43.64733439)}"
-11313,20173,GO-20149004914,THEFT UNDER,2014-06-17T00:00:00,2014,June,Tuesday,17,168,1,2014-07-11T00:00:00,2014,July,Friday,11,192,19,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,GI,2012,RC,30,WHI,1000.0,STOLEN,11302,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-11314,20174,GO-20149004914,THEFT UNDER,2014-06-17T00:00:00,2014,June,Tuesday,17,168,1,2014-07-11T00:00:00,2014,July,Friday,11,192,19,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,CA,2012,MT,27,WHI,550.0,STOLEN,11303,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-11315,20175,GO-20149004947,THEFT UNDER,2014-07-12T00:00:00,2014,July,Saturday,12,193,20,2014-07-13T00:00:00,2014,July,Sunday,13,194,10,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,TIKI DELUXE,RG,24,BLU,0.0,STOLEN,11304,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-11316,20176,GO-20149005004,THEFT UNDER,2014-07-14T00:00:00,2014,July,Monday,14,195,9,2014-07-15T00:00:00,2014,July,Tuesday,15,196,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,MT,15,SIL,400.0,STOLEN,11305,"{'type': 'Point', 'coordinates': (-79.38467283, 43.65807476)}"
-11317,20581,GO-20199019307,THEFT UNDER,2019-06-19T00:00:00,2019,June,Wednesday,19,170,15,2019-06-19T00:00:00,2019,June,Wednesday,19,170,21,D52,Toronto,76,Bay Street Corridor (76),Convenience Stores,Commercial,OT,,OT,1,BLU,200.0,STOLEN,11306,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11318,20582,GO-20199019338,THEFT UNDER,2019-06-19T00:00:00,2019,June,Wednesday,19,170,4,2019-06-20T00:00:00,2019,June,Thursday,20,171,10,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,STORM,MT,27,DGR,1000.0,STOLEN,11307,"{'type': 'Point', 'coordinates': (-79.38808613, 43.66653345)}"
-11319,23007,GO-2017489981,THEFT UNDER - BICYCLE,2017-03-18T00:00:00,2017,March,Saturday,18,77,23,2017-03-19T00:00:00,2017,March,Sunday,19,78,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,2016 GIANT,ESCAPE 3,RC,21,GRY,550.0,STOLEN,11308,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-11320,20593,GO-20199022456,THEFT UNDER,2019-07-15T00:00:00,2019,July,Monday,15,196,20,2019-07-15T00:00:00,2019,July,Monday,15,196,23,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,SAVONA,MT,21,OTH,350.0,STOLEN,11309,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11321,23009,GO-2017593953,THEFT UNDER - BICYCLE,2017-03-17T00:00:00,2017,March,Friday,17,76,12,2017-04-04T00:00:00,2017,April,Tuesday,4,94,16,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,SCHWINN,,OT,0,,300.0,STOLEN,11310,"{'type': 'Point', 'coordinates': (-79.38737611, 43.66847728)}"
-11322,20598,GO-20199023709,THEFT UNDER,2019-07-25T00:00:00,2019,July,Thursday,25,206,10,2019-07-25T00:00:00,2019,July,Thursday,25,206,14,D52,Toronto,76,Bay Street Corridor (76),"Open Areas (Lakes, Parks, Rivers)",Outside,CA,,OT,18,LGR,500.0,STOLEN,11311,"{'type': 'Point', 'coordinates': (-79.38124592, 43.65320661)}"
-11323,23010,GO-20179005205,THEFT UNDER - BICYCLE,2017-04-24T00:00:00,2017,April,Monday,24,114,11,2017-04-24T00:00:00,2017,April,Monday,24,114,15,D52,Toronto,76,Bay Street Corridor (76),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,OT,CROSS BOW,RC,10,WHI,600.0,STOLEN,11312,"{'type': 'Point', 'coordinates': (-79.38262593, 43.65086783)}"
-11324,20602,GO-20199024197,THEFT UNDER,2019-07-29T00:00:00,2019,July,Monday,29,210,6,2019-07-29T00:00:00,2019,July,Monday,29,210,9,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,SPECIALIZED,MT,18,WHI,1500.0,STOLEN,11313,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-11325,23012,GO-20179006341,THEFT UNDER,2017-05-15T00:00:00,2017,May,Monday,15,135,13,2017-05-15T00:00:00,2017,May,Monday,15,135,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,ZHUOTENG ZH 295,EL,1,BLK,1400.0,STOLEN,11314,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-11326,20605,GO-20199024569,THEFT UNDER,2019-07-31T00:00:00,2019,July,Wednesday,31,212,8,2019-07-31T00:00:00,2019,July,Wednesday,31,212,18,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,FJ,ABSOLUTE 2.1,RG,24,BLU,605.0,STOLEN,11315,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-11327,23013,GO-20179006350,THEFT UNDER,2017-05-15T00:00:00,2017,May,Monday,15,135,17,2017-05-15T00:00:00,2017,May,Monday,15,135,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,7.1 FX,RG,21,GRY,600.0,STOLEN,11316,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11328,20606,GO-20199024648,THEFT UNDER,2019-07-28T00:00:00,2019,July,Sunday,28,209,21,2019-08-01T00:00:00,2019,August,Thursday,1,213,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,WELLINGTON,RG,27,RED,900.0,STOLEN,11317,"{'type': 'Point', 'coordinates': (-79.3879785, 43.66997438)}"
-11329,23016,GO-20179006951,THEFT UNDER - BICYCLE,2017-05-22T00:00:00,2017,May,Monday,22,142,22,2017-05-25T00:00:00,2017,May,Thursday,25,145,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,MT,21,,0.0,STOLEN,11318,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-11330,20607,GO-20199024648,THEFT UNDER,2019-07-28T00:00:00,2019,July,Sunday,28,209,21,2019-08-01T00:00:00,2019,August,Thursday,1,213,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,STOCKHOLM,RG,27,GRY,900.0,STOLEN,11319,"{'type': 'Point', 'coordinates': (-79.3879785, 43.66997438)}"
-11331,20608,GO-20199024797,THEFT UNDER,2019-06-23T00:00:00,2019,June,Sunday,23,174,8,2019-08-02T00:00:00,2019,August,Friday,2,214,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SE DRAFT,RG,1,BLU,400.0,STOLEN,11320,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-11332,20610,GO-20199025108,THEFT UNDER,2019-08-05T00:00:00,2019,August,Monday,5,217,13,2019-08-06T00:00:00,2019,August,Tuesday,6,218,14,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RG,1,GRN,500.0,STOLEN,11321,"{'type': 'Point', 'coordinates': (-79.38407058, 43.649187680000004)}"
-11333,20611,GO-20199025239,THEFT UNDER,2019-08-07T00:00:00,2019,August,Wednesday,7,219,13,2019-08-07T00:00:00,2019,August,Wednesday,7,219,13,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,7,BLK,5000.0,STOLEN,11322,"{'type': 'Point', 'coordinates': (-79.38808613, 43.66653345)}"
-11334,20613,GO-20199025421,THEFT UNDER,2019-06-18T00:00:00,2019,June,Tuesday,18,169,18,2019-08-08T00:00:00,2019,August,Thursday,8,220,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,700C CIRCUIT,RC,14,BLU,350.0,STOLEN,11323,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-11335,20615,GO-20199025719,THEFT UNDER,2019-08-11T00:00:00,2019,August,Sunday,11,223,1,2019-08-11T00:00:00,2019,August,Sunday,11,223,10,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,EL,25,DBL,2000.0,STOLEN,11324,"{'type': 'Point', 'coordinates': (-79.38634339, 43.66246955)}"
-11336,20618,GO-20199026533,THEFT UNDER,2019-08-16T00:00:00,2019,August,Friday,16,228,16,2019-08-16T00:00:00,2019,August,Friday,16,228,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MALE BICYCLE,RG,6,BLK,100.0,STOLEN,11325,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-11337,20622,GO-20199026766,THEFT UNDER,2019-08-17T00:00:00,2019,August,Saturday,17,229,18,2019-08-19T00:00:00,2019,August,Monday,19,231,9,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,TREK 7100,RG,15,BLU,440.0,STOLEN,11326,"{'type': 'Point', 'coordinates': (-79.38946773, 43.66966903)}"
-11338,20623,GO-20199026766,THEFT UNDER,2019-08-17T00:00:00,2019,August,Saturday,17,229,18,2019-08-19T00:00:00,2019,August,Monday,19,231,9,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,KONA DEW,RG,18,BLK,480.0,STOLEN,11327,"{'type': 'Point', 'coordinates': (-79.38946773, 43.66966903)}"
-11339,20631,GO-20199027649,THEFT UNDER,2019-08-25T00:00:00,2019,August,Sunday,25,237,18,2019-08-25T00:00:00,2019,August,Sunday,25,237,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,MT,21,BLK,250.0,STOLEN,11328,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-11340,20633,GO-20199027892,THEFT UNDER,2019-08-26T00:00:00,2019,August,Monday,26,238,18,2019-08-27T00:00:00,2019,August,Tuesday,27,239,13,D52,Toronto,76,Bay Street Corridor (76),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,3 SPOKE ROAD BI,RC,21,BLK,410.0,STOLEN,11329,"{'type': 'Point', 'coordinates': (-79.38260155, 43.6529703)}"
-11341,20634,GO-20199027892,THEFT UNDER,2019-08-26T00:00:00,2019,August,Monday,26,238,18,2019-08-27T00:00:00,2019,August,Tuesday,27,239,13,D52,Toronto,76,Bay Street Corridor (76),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,,MT,21,LGR,400.0,STOLEN,11330,"{'type': 'Point', 'coordinates': (-79.38260155, 43.6529703)}"
-11342,20635,GO-20199028095,THEFT UNDER,2019-08-28T00:00:00,2019,August,Wednesday,28,240,20,2019-08-28T00:00:00,2019,August,Wednesday,28,240,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,MT,21,LGR,460.0,STOLEN,11331,"{'type': 'Point', 'coordinates': (-79.38581622, 43.66799576)}"
-11343,20636,GO-20191645890,THEFT UNDER - BICYCLE,2019-08-28T00:00:00,2019,August,Wednesday,28,240,20,2019-08-29T00:00:00,2019,August,Thursday,29,241,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,STATIC,OT,21,GRYGRN,459.0,STOLEN,11332,"{'type': 'Point', 'coordinates': (-79.38581622, 43.66799576)}"
-11344,20648,GO-20199030760,THEFT UNDER,2019-09-18T00:00:00,2019,September,Wednesday,18,261,8,2019-09-19T00:00:00,2019,September,Thursday,19,262,22,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,TR,,TO,18,,750.0,STOLEN,11333,"{'type': 'Point', 'coordinates': (-79.38238489, 43.65176074)}"
-11345,20651,GO-20199031486,THEFT UNDER,2019-09-23T00:00:00,2019,September,Monday,23,266,19,2019-09-25T00:00:00,2019,September,Wednesday,25,268,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,RG,21,PLE,350.0,STOLEN,11334,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-11346,20653,GO-20199031602,THEFT UNDER,2019-09-16T00:00:00,2019,September,Monday,16,259,1,2019-09-26T00:00:00,2019,September,Thursday,26,269,12,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,FIRENZE,RC,10,BLK,1000.0,STOLEN,11335,"{'type': 'Point', 'coordinates': (-79.38334664, 43.66205466)}"
-11347,20658,GO-20199033269,THEFT UNDER,2019-10-07T00:00:00,2019,October,Monday,7,280,8,2019-10-09T00:00:00,2019,October,Wednesday,9,282,17,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RC,10,BLK,800.0,STOLEN,11336,"{'type': 'Point', 'coordinates': (-79.37903365, 43.65028111)}"
-11348,20663,GO-20192028234,THEFT UNDER - BICYCLE,2019-10-20T00:00:00,2019,October,Sunday,20,293,20,2019-10-20T00:00:00,2019,October,Sunday,20,293,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,TREK DS 2 XL VI,MT,8,RED,900.0,STOLEN,11337,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-11349,20671,GO-20192102466,THEFT UNDER,2019-10-26T00:00:00,2019,October,Saturday,26,299,9,2019-10-31T00:00:00,2019,October,Thursday,31,304,10,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,CANNONDALE,,RG,0,SIL,1500.0,STOLEN,11338,"{'type': 'Point', 'coordinates': (-79.38737611, 43.66847728)}"
-11350,20677,GO-20192187996,THEFT UNDER - BICYCLE,2019-10-23T00:00:00,2019,October,Wednesday,23,296,9,2019-11-12T00:00:00,2019,November,Tuesday,12,316,17,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,DAYAN,EL,1,MRN,1666.0,STOLEN,11339,"{'type': 'Point', 'coordinates': (-79.38737611, 43.66847728)}"
-11351,20680,GO-20199038134,THEFT UNDER,2019-11-18T00:00:00,2019,November,Monday,18,322,8,2019-11-19T00:00:00,2019,November,Tuesday,19,323,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,1998,MT,18,BLK,200.0,STOLEN,11340,"{'type': 'Point', 'coordinates': (-79.38209114, 43.64961443)}"
-11352,20684,GO-20199039876,THEFT UNDER,2019-12-04T00:00:00,2019,December,Wednesday,4,338,8,2019-12-05T00:00:00,2019,December,Thursday,5,339,14,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,CORDOBA,OT,1,SIL,3000.0,STOLEN,11341,"{'type': 'Point', 'coordinates': (-79.3879785, 43.66997438)}"
-11353,20685,GO-20192375035,THEFT OF EBIKE UNDER $5000,2019-12-09T00:00:00,2019,December,Monday,9,343,18,2019-12-09T00:00:00,2019,December,Monday,9,343,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,MOSCOW,EL,1,WHI,1627.0,STOLEN,11342,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-11354,20689,GO-20209001108,THEFT UNDER,2020-01-08T00:00:00,2020,January,Wednesday,8,8,15,2020-01-10T00:00:00,2020,January,Friday,10,10,12,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,SU,VICE 26,MT,18,BLU,200.0,STOLEN,11343,"{'type': 'Point', 'coordinates': (-79.38353872, 43.64792395)}"
-11355,20691,GO-20209001586,THEFT UNDER,2020-01-13T00:00:00,2020,January,Monday,13,13,20,2020-01-14T00:00:00,2020,January,Tuesday,14,14,15,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MA,GESTALT 1,RC,18,BLU,1100.0,STOLEN,11344,"{'type': 'Point', 'coordinates': (-79.38482092, 43.65454718)}"
-11356,20692,GO-20209001830,THEFT UNDER,2020-01-16T00:00:00,2020,January,Thursday,16,16,8,2020-01-16T00:00:00,2020,January,Thursday,16,16,20,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,,RG,6,BLK,1000.0,STOLEN,11345,"{'type': 'Point', 'coordinates': (-79.38740686, 43.66497543)}"
-11357,23172,GO-2019652601,THEFT UNDER,2019-04-07T00:00:00,2019,April,Sunday,7,97,11,2019-04-16T00:00:00,2019,April,Tuesday,16,106,9,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,DEVINCI,CAMELEAN,MT,12,BLU,510.0,STOLEN,11486,"{'type': 'Point', 'coordinates': (-79.39219449, 43.66603246)}"
-11358,20694,GO-20209007935,THEFT UNDER,2020-03-02T00:00:00,2020,March,Monday,2,62,16,2020-03-06T00:00:00,2020,March,Friday,6,66,9,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,B17,OT,3,BRN,190.0,STOLEN,11346,"{'type': 'Point', 'coordinates': (-79.38771667, 43.66119164)}"
-11359,20709,GO-2020945897,THEFT OF EBIKE UNDER $5000,2020-05-11T00:00:00,2020,May,Monday,11,132,10,2020-05-22T00:00:00,2020,May,Friday,22,143,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,MCM-MOSCO PLUS,EL,0,BLUWHI,3700.0,STOLEN,11347,"{'type': 'Point', 'coordinates': (-79.38491403, 43.66584039)}"
-11360,20710,GO-20209013822,THEFT UNDER,2020-05-23T00:00:00,2020,May,Saturday,23,144,18,2020-05-25T00:00:00,2020,May,Monday,25,146,0,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RM,,RC,9,BLU,0.0,STOLEN,11348,"{'type': 'Point', 'coordinates': (-79.38334664, 43.66205466)}"
-11361,20722,GO-20201196999,THEFT UNDER - BICYCLE,2020-06-17T00:00:00,2020,June,Wednesday,17,169,17,2020-06-29T00:00:00,2020,June,Monday,29,181,12,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,INFINITY\,GENEVA,RG,0,RED,400.0,STOLEN,11349,"{'type': 'Point', 'coordinates': (-79.38737611, 43.66847728)}"
-11362,20723,GO-20209016591,THEFT UNDER,2020-06-28T00:00:00,2020,June,Sunday,28,180,15,2020-06-30T00:00:00,2020,June,Tuesday,30,182,22,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ROAM,RG,21,BLK,0.0,STOLEN,11350,"{'type': 'Point', 'coordinates': (-79.38702746, 43.66853925)}"
-11363,20724,GO-20201211930,THEFT OF EBIKE UNDER $5000,2020-07-01T00:00:00,2020,July,Wednesday,1,183,14,2020-07-01T00:00:00,2020,July,Wednesday,1,183,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SEGWAY,NEBOT,EL,0,BLK,1245.0,STOLEN,11351,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-11364,20726,GO-20201230882,THEFT UNDER - BICYCLE,2020-07-03T00:00:00,2020,July,Friday,3,185,18,2020-07-04T00:00:00,2020,July,Saturday,4,186,1,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,AMEGO,FREEDOM,EL,1,GRY,1500.0,STOLEN,11352,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-11365,20730,GO-20209017195,THEFT UNDER,2020-07-09T00:00:00,2020,July,Thursday,9,191,13,2020-07-09T00:00:00,2020,July,Thursday,9,191,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,FO,7,BLK,1400.0,STOLEN,11353,"{'type': 'Point', 'coordinates': (-79.38501192, 43.66606363)}"
-11366,20731,GO-20209017195,THEFT UNDER,2020-07-09T00:00:00,2020,July,Thursday,9,191,13,2020-07-09T00:00:00,2020,July,Thursday,9,191,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,FO,7,BLK,1400.0,STOLEN,11354,"{'type': 'Point', 'coordinates': (-79.38501192, 43.66606363)}"
-11367,20732,GO-20201296243,B&E,2020-07-10T00:00:00,2020,July,Friday,10,192,11,2020-07-13T00:00:00,2020,July,Monday,13,195,10,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,CERVELO,SOLOIST,MT,10,BLK,3600.0,STOLEN,11355,"{'type': 'Point', 'coordinates': (-79.38596803, 43.65904449)}"
-11368,20734,GO-20209018219,THEFT UNDER,2020-07-21T00:00:00,2020,July,Tuesday,21,203,13,2020-07-22T00:00:00,2020,July,Wednesday,22,204,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,MT,60,GRY,1000.0,STOLEN,11356,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-11369,20736,GO-20209018673,THEFT UNDER,2020-07-27T00:00:00,2020,July,Monday,27,209,19,2020-07-27T00:00:00,2020,July,Monday,27,209,23,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,NINEBOT MAX,SC,20,BLK,1200.0,STOLEN,11357,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-11370,20737,GO-20209018706,THEFT UNDER,2020-07-27T00:00:00,2020,July,Monday,27,209,15,2020-07-27T00:00:00,2020,July,Monday,27,209,17,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,XC29,MT,7,BLK,450.0,STOLEN,11358,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11371,20742,GO-20209019766,THEFT UNDER,2020-08-09T00:00:00,2020,August,Sunday,9,222,14,2020-08-09T00:00:00,2020,August,Sunday,9,222,19,D52,Toronto,76,Bay Street Corridor (76),Convenience Stores,Commercial,OT,ORBITA,MT,18,BLK,330.0,STOLEN,11359,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11372,20743,GO-20209019766,THEFT UNDER,2020-08-09T00:00:00,2020,August,Sunday,9,222,14,2020-08-09T00:00:00,2020,August,Sunday,9,222,19,D52,Toronto,76,Bay Street Corridor (76),Convenience Stores,Commercial,OT,NOVARA,MT,21,YEL,390.0,STOLEN,11360,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11373,20744,GO-20201469960,THEFT UNDER - BICYCLE,2020-08-06T00:00:00,2020,August,Thursday,6,219,18,2020-08-06T00:00:00,2020,August,Thursday,6,219,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,TC,MT,18,RED,2000.0,STOLEN,11361,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-11374,20772,GO-20209022386,THEFT UNDER,2020-09-04T00:00:00,2020,September,Friday,4,248,21,2020-09-05T00:00:00,2020,September,Saturday,5,249,2,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SU,ROAD BIKE,RC,30,BLU,300.0,STOLEN,11362,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-11375,20779,GO-20209023794,THEFT UNDER,2020-09-18T00:00:00,2020,September,Friday,18,262,7,2020-09-18T00:00:00,2020,September,Friday,18,262,20,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,,RG,24,MRN,800.0,STOLEN,11363,"{'type': 'Point', 'coordinates': (-79.39045505, 43.65985872)}"
-11376,22584,GO-20209028762,THEFT UNDER,2020-11-05T00:00:00,2020,November,Thursday,5,310,13,2020-11-05T00:00:00,2020,November,Thursday,5,310,18,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,,RC,12,LBL,1500.0,STOLEN,11364,"{'type': 'Point', 'coordinates': (-79.38268555, 43.64598268)}"
-11377,22587,GO-20209028962,THEFT UNDER,2020-11-07T00:00:00,2020,November,Saturday,7,312,15,2020-11-07T00:00:00,2020,November,Saturday,7,312,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KH,URBAN EXCEL GRE,RG,24,GRY,1000.0,STOLEN,11365,"{'type': 'Point', 'coordinates': (-79.38124592, 43.65320661)}"
-11378,22592,GO-20209030084,THEFT UNDER,2020-11-19T00:00:00,2020,November,Thursday,19,324,15,2020-11-19T00:00:00,2020,November,Thursday,19,324,16,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,ROVE,MT,10,PLE,1200.0,STOLEN,11366,"{'type': 'Point', 'coordinates': (-79.38482092, 43.65454718)}"
-11379,22608,GO-20199023760,THEFT UNDER,2019-07-25T00:00:00,2019,July,Thursday,25,206,17,2019-07-25T00:00:00,2019,July,Thursday,25,206,18,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,RA,,MT,18,MRN,300.0,STOLEN,11367,"{'type': 'Point', 'coordinates': (-79.38618236, 43.65775862)}"
-11380,22611,GO-20199024347,THEFT UNDER,2019-07-22T00:00:00,2019,July,Monday,22,203,3,2019-07-30T00:00:00,2019,July,Tuesday,30,211,10,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,SOHO,RG,18,GRY,1000.0,STOLEN,11368,"{'type': 'Point', 'coordinates': (-79.3802391, 43.64865033)}"
-11381,22616,GO-20199025305,THEFT UNDER,2019-08-07T00:00:00,2019,August,Wednesday,7,219,10,2019-08-07T00:00:00,2019,August,Wednesday,7,219,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,2015 VFR 4,OT,24,GRN,550.0,STOLEN,11369,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11382,22617,GO-20199025397,THEFT UNDER,2019-08-07T00:00:00,2019,August,Wednesday,7,219,9,2019-08-08T00:00:00,2019,August,Thursday,8,220,15,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,TR,7.2FX,MT,18,,500.0,STOLEN,11370,"{'type': 'Point', 'coordinates': (-79.37878196, 43.64896093)}"
-11383,22626,GO-20199027195,THEFT UNDER,2019-08-21T00:00:00,2019,August,Wednesday,21,233,18,2019-08-21T00:00:00,2019,August,Wednesday,21,233,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,,RG,7,RED,200.0,STOLEN,11371,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-11384,22628,GO-20199027305,THEFT UNDER,2019-08-22T00:00:00,2019,August,Thursday,22,234,22,2019-08-22T00:00:00,2019,August,Thursday,22,234,23,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,CRUISER,RG,15,ONG,600.0,STOLEN,11372,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-11385,22639,GO-20191645778,THEFT UNDER,2019-07-28T00:00:00,2019,July,Sunday,28,209,20,2019-08-28T00:00:00,2019,August,Wednesday,28,240,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,MOUNTAIN,MT,10,BLKRED,,STOLEN,11373,"{'type': 'Point', 'coordinates': (-79.38154682, 43.65790792)}"
-11386,22641,GO-20199029195,THEFT UNDER,2019-09-08T00:00:00,2019,September,Sunday,8,251,13,2019-09-08T00:00:00,2019,September,Sunday,8,251,20,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KO,KULA,MT,21,WHI,1500.0,STOLEN,11374,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-11387,22649,GO-20199030848,THEFT UNDER,2019-09-16T00:00:00,2019,September,Monday,16,259,23,2019-09-20T00:00:00,2019,September,Friday,20,263,15,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,GI,GIANT LIV ALIGH,RG,7,TRQ,600.0,STOLEN,11375,"{'type': 'Point', 'coordinates': (-79.38649082, 43.66146692)}"
-11388,22651,GO-20199031650,THEFT UNDER,2019-09-25T00:00:00,2019,September,Wednesday,25,268,17,2019-09-26T00:00:00,2019,September,Thursday,26,269,16,D52,Toronto,76,Bay Street Corridor (76),Bar / Restaurant,Commercial,UK,,RG,7,DBL,500.0,STOLEN,11376,"{'type': 'Point', 'coordinates': (-79.37843045, 43.65040714)}"
-11389,22660,GO-20199033548,THEFT UNDER,2019-10-10T00:00:00,2019,October,Thursday,10,283,9,2019-10-11T00:00:00,2019,October,Friday,11,284,16,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,BI,MILANO,RG,6,BLU,800.0,STOLEN,11377,"{'type': 'Point', 'coordinates': (-79.38260155, 43.6529703)}"
-11390,22664,GO-20199033861,THEFT UNDER,2019-10-10T00:00:00,2019,October,Thursday,10,283,17,2019-10-14T00:00:00,2019,October,Monday,14,287,15,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,GI,ANYROAD 2 LARGE,TO,16,BLK,1199.0,STOLEN,11378,"{'type': 'Point', 'coordinates': (-79.38820648, 43.66681234)}"
-11391,22667,GO-20199034585,THEFT UNDER,2019-10-19T00:00:00,2019,October,Saturday,19,292,9,2019-10-20T00:00:00,2019,October,Sunday,20,293,22,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,2200 RACER,RC,18,RED,0.0,STOLEN,11379,"{'type': 'Point', 'coordinates': (-79.38596803, 43.65904449)}"
-11392,22668,GO-20199034748,THEFT UNDER,2019-10-10T00:00:00,2019,October,Thursday,10,283,21,2019-10-22T00:00:00,2019,October,Tuesday,22,295,3,D52,Toronto,76,Bay Street Corridor (76),Bar / Restaurant,Commercial,OT,WMC-197005,RG,30,BLU,200.0,STOLEN,11380,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-11393,22678,GO-20199036521,THEFT UNDER,2019-11-04T00:00:00,2019,November,Monday,4,308,17,2019-11-05T00:00:00,2019,November,Tuesday,5,309,13,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,SIRRUS DISC ROA,RG,24,WHI,938.0,STOLEN,11381,"{'type': 'Point', 'coordinates': (-79.38353872, 43.64792395)}"
-11394,22683,GO-20192243742,THEFT OF EBIKE UNDER $5000,2019-11-20T00:00:00,2019,November,Wednesday,20,324,10,2019-11-20T00:00:00,2019,November,Wednesday,20,324,20,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,DAYMARK,KINGSTON,EL,1,RED,1000.0,STOLEN,11382,"{'type': 'Point', 'coordinates': (-79.37878196, 43.64896093)}"
-11395,22685,GO-20199038813,THEFT UNDER,2019-11-25T00:00:00,2019,November,Monday,25,329,16,2019-11-25T00:00:00,2019,November,Monday,25,329,19,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,UK,STUMPJUMPER FSR,MT,20,,3500.0,STOLEN,11383,"{'type': 'Point', 'coordinates': (-79.38402022, 43.65643576000001)}"
-11396,22687,GO-20199040233,THEFT UNDER,2019-11-29T00:00:00,2019,November,Friday,29,333,0,2019-12-09T00:00:00,2019,December,Monday,9,343,8,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KH,DESCENT,MT,18,ONG,450.0,STOLEN,11384,"{'type': 'Point', 'coordinates': (-79.38260155, 43.6529703)}"
-11397,22692,GO-20209001598,THEFT UNDER,2020-01-09T00:00:00,2020,January,Thursday,9,9,16,2020-01-14T00:00:00,2020,January,Tuesday,14,14,16,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,TR,DS3,RG,9,BLK,1000.0,STOLEN,11385,"{'type': 'Point', 'coordinates': (-79.39038732, 43.66791603)}"
-11398,22697,GO-20209009015,THEFT UNDER,2019-12-01T00:00:00,2019,December,Sunday,1,335,0,2020-03-15T00:00:00,2020,March,Sunday,15,75,16,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,SPARK 760,MT,21,BLK,2900.0,STOLEN,11386,"{'type': 'Point', 'coordinates': (-79.38714344, 43.66436762)}"
-11399,22699,GO-20209009219,THEFT UNDER,2020-03-17T00:00:00,2020,March,Tuesday,17,77,9,2020-03-17T00:00:00,2020,March,Tuesday,17,77,17,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,UK,SIRIUS 3 0,OT,6,BLK,1000.0,STOLEN,11387,"{'type': 'Point', 'coordinates': (-79.38379426, 43.64856165)}"
-11400,22707,GO-2020667695,THEFT UNDER - BICYCLE,2020-04-05T00:00:00,2020,April,Sunday,5,96,20,2020-04-05T00:00:00,2020,April,Sunday,5,96,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,TRACK BIKE,OT,0,BLK,2000.0,STOLEN,11388,"{'type': 'Point', 'coordinates': (-79.38712214, 43.65502365)}"
-11401,22718,GO-2020935180,B&E,2020-05-21T00:00:00,2020,May,Thursday,21,142,0,2020-05-21T00:00:00,2020,May,Thursday,21,142,17,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,OT,0,SIL,,STOLEN,11389,"{'type': 'Point', 'coordinates': (-79.39045505, 43.65985872)}"
-11402,22721,GO-20209014073,THEFT UNDER,2020-05-27T00:00:00,2020,May,Wednesday,27,148,7,2020-05-27T00:00:00,2020,May,Wednesday,27,148,22,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,MA,,RG,21,RED,650.0,STOLEN,11390,"{'type': 'Point', 'coordinates': (-79.38892782, 43.65634783)}"
-11403,22727,GO-20201081609,THEFT UNDER - BICYCLE,2020-06-08T00:00:00,2020,June,Monday,8,160,23,2020-06-12T00:00:00,2020,June,Friday,12,164,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,JAMIS,TRAIL X2,MT,1,GRNWHI,500.0,STOLEN,11391,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-11404,22746,GO-20209017520,THEFT UNDER,2020-07-13T00:00:00,2020,July,Monday,13,195,17,2020-07-14T00:00:00,2020,July,Tuesday,14,196,10,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,UNI DROP,RG,1,BLK,630.0,STOLEN,11392,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-11405,22748,GO-20209018082,THEFT UNDER,2020-07-20T00:00:00,2020,July,Monday,20,202,7,2020-07-20T00:00:00,2020,July,Monday,20,202,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ROAM 2 DISC,MT,12,BLK,891.0,STOLEN,11393,"{'type': 'Point', 'coordinates': (-79.38077050000001, 43.64989242)}"
-11406,22749,GO-20209018421,THEFT UNDER,2020-07-18T00:00:00,2020,July,Saturday,18,200,16,2020-07-24T00:00:00,2020,July,Friday,24,206,10,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CITIZEN 1,RG,21,BRN,370.0,STOLEN,11394,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-11407,22750,GO-20209018451,THEFT UNDER,2020-07-24T00:00:00,2020,July,Friday,24,206,15,2020-07-24T00:00:00,2020,July,Friday,24,206,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,FIRENZE COMP,RC,20,BLK,1400.0,STOLEN,11395,"{'type': 'Point', 'coordinates': (-79.38467283, 43.65807476)}"
-11408,22755,GO-20209019178,THEFT UNDER,2020-08-01T00:00:00,2020,August,Saturday,1,214,22,2020-08-02T00:00:00,2020,August,Sunday,2,215,0,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,RG,3,,759.0,STOLEN,11396,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-11409,22756,GO-20201455065,THEFT OF EBIKE OVER $5000,2020-07-29T00:00:00,2020,July,Wednesday,29,211,22,2020-08-04T00:00:00,2020,August,Tuesday,4,217,18,D52,Toronto,76,Bay Street Corridor (76),"Single Home, House (Attach Garage, Cottage, Mobile)",House,AVENTON,PACE,EL,5,PLE,1600.0,STOLEN,11397,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-11410,22761,GO-20201532975,THEFT UNDER,2020-08-12T00:00:00,2020,August,Wednesday,12,225,15,2020-08-15T00:00:00,2020,August,Saturday,15,228,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KONA,,MT,8,BLU,1400.0,STOLEN,11398,"{'type': 'Point', 'coordinates': (-79.38581514, 43.66081576)}"
-11411,22763,GO-20209020605,THEFT UNDER,2020-08-18T00:00:00,2020,August,Tuesday,18,231,17,2020-08-18T00:00:00,2020,August,Tuesday,18,231,17,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,SC,,MT,7,BLK,0.0,STOLEN,11399,"{'type': 'Point', 'coordinates': (-79.38209114, 43.64961443)}"
-11412,22765,GO-20209021298,THEFT UNDER,2020-08-20T00:00:00,2020,August,Thursday,20,233,16,2020-08-25T00:00:00,2020,August,Tuesday,25,238,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE 3,MT,7,GRY,650.0,STOLEN,11400,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-11413,22766,GO-20209021653,THEFT UNDER,2020-08-28T00:00:00,2020,August,Friday,28,241,10,2020-08-28T00:00:00,2020,August,Friday,28,241,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CANADIANA PATHF,MT,18,,250.0,STOLEN,11401,"{'type': 'Point', 'coordinates': (-79.3879785, 43.66997438)}"
-11414,22769,GO-20209021835,THEFT UNDER,2020-08-31T00:00:00,2020,August,Monday,31,244,7,2020-08-31T00:00:00,2020,August,Monday,31,244,9,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,MT,21,BLK,400.0,STOLEN,11402,"{'type': 'Point', 'coordinates': (-79.37968936, 43.64733439)}"
-11415,22778,GO-20201779564,THEFT OF EBIKE UNDER $5000,2020-09-19T00:00:00,2020,September,Saturday,19,263,15,2020-09-19T00:00:00,2020,September,Saturday,19,263,17,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NCM,PRAGUE,EL,0,,1400.0,STOLEN,11403,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11416,22781,GO-20201858142,THEFT UNDER - BICYCLE,2020-09-22T00:00:00,2020,September,Tuesday,22,266,21,2020-09-30T00:00:00,2020,September,Wednesday,30,274,13,D52,Toronto,76,Bay Street Corridor (76),Ttc Street Car,Transit,UNKNOWN MAKE,,OT,0,BLUWHI,150.0,STOLEN,11404,"{'type': 'Point', 'coordinates': (-79.38658879, 43.65085253)}"
-11417,22783,GO-20201852064,THEFT OF EBIKE UNDER $5000,2020-09-21T00:00:00,2020,September,Monday,21,265,20,2020-09-29T00:00:00,2020,September,Tuesday,29,273,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NCM,MOSCOW,EL,6,BLKBLU,1700.0,STOLEN,11405,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-11418,22786,GO-20209025849,THEFT UNDER,2020-10-08T00:00:00,2020,October,Thursday,8,282,19,2020-10-09T00:00:00,2020,October,Friday,9,283,8,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,STELLA 26,RG,21,MRN,529.0,STOLEN,11406,"{'type': 'Point', 'coordinates': (-79.38618236, 43.65775862)}"
-11419,22791,GO-20201952693,THEFT UNDER - BICYCLE,2020-10-10T00:00:00,2020,October,Saturday,10,284,20,2020-10-18T00:00:00,2020,October,Sunday,18,292,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,,MT,21,BLK,350.0,STOLEN,11407,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-11420,23000,GO-20162089602,THEFT UNDER - BICYCLE,2016-11-24T00:00:00,2016,November,Thursday,24,329,18,2016-11-24T00:00:00,2016,November,Thursday,24,329,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MIELE,FIRENZE,TO,21,DBL,300.0,STOLEN,11408,"{'type': 'Point', 'coordinates': (-79.39068132, 43.6686362)}"
-11421,23017,GO-20179006951,THEFT UNDER - BICYCLE,2017-05-22T00:00:00,2017,May,Monday,22,142,22,2017-05-25T00:00:00,2017,May,Thursday,25,145,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,7,,0.0,STOLEN,11409,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-11422,23018,GO-20179007169,THEFT UNDER,2017-05-28T00:00:00,2017,May,Sunday,28,148,12,2017-05-29T00:00:00,2017,May,Monday,29,149,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ROADSTER,TA,1,BLK,575.0,STOLEN,11410,"{'type': 'Point', 'coordinates': (-79.38671683, 43.66779)}"
-11423,23020,GO-20179007530,THEFT UNDER - BICYCLE,2017-06-05T00:00:00,2017,June,Monday,5,156,14,2017-06-05T00:00:00,2017,June,Monday,5,156,20,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,NO,THRESHOLD,TO,22,,200.0,STOLEN,11411,"{'type': 'Point', 'coordinates': (-79.38374902, 43.66302137000001)}"
-11424,23023,GO-20179007846,THEFT UNDER - BICYCLE,2017-06-09T00:00:00,2017,June,Friday,9,160,21,2017-06-10T00:00:00,2017,June,Saturday,10,161,16,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,,MT,5,BLK,200.0,STOLEN,11412,"{'type': 'Point', 'coordinates': (-79.38374902, 43.66302137000001)}"
-11425,23028,GO-20179008349,THEFT UNDER - BICYCLE,2017-06-18T00:00:00,2017,June,Sunday,18,169,13,2017-06-18T00:00:00,2017,June,Sunday,18,169,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,VOLTARE 1300,RC,60,WHI,450.0,STOLEN,11413,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-11426,23029,GO-20179008557,THEFT UNDER - BICYCLE,2017-06-20T00:00:00,2017,June,Tuesday,20,171,18,2017-06-20T00:00:00,2017,June,Tuesday,20,171,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,SQUADRON,TO,24,DGR,2000.0,STOLEN,11414,"{'type': 'Point', 'coordinates': (-79.38702746, 43.66853925)}"
-11427,23031,GO-20179008569,THEFT UNDER - BICYCLE,2017-06-21T00:00:00,2017,June,Wednesday,21,172,17,2017-06-21T00:00:00,2017,June,Wednesday,21,172,19,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RC,1,SIL,400.0,STOLEN,11415,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-11428,23037,GO-20179009449,THEFT UNDER - BICYCLE,2017-07-03T00:00:00,2017,July,Monday,3,184,6,2017-07-04T00:00:00,2017,July,Tuesday,4,185,21,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,TR,,MT,6,GRY,500.0,STOLEN,11416,"{'type': 'Point', 'coordinates': (-79.38618236, 43.65775862)}"
-11429,23038,GO-20179009620,THEFT UNDER - BICYCLE,2017-07-06T00:00:00,2017,July,Thursday,6,187,10,2017-07-06T00:00:00,2017,July,Thursday,6,187,16,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,GI,FASTROAD SLR,RC,21,BLK,1600.0,STOLEN,11417,"{'type': 'Point', 'coordinates': (-79.38820648, 43.66681234)}"
-11430,23039,GO-20179009619,THEFT UNDER - BICYCLE,2017-07-05T00:00:00,2017,July,Wednesday,5,186,22,2017-07-07T00:00:00,2017,July,Friday,7,188,10,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,HARDROCK SPORT,MT,21,BLK,500.0,STOLEN,11418,"{'type': 'Point', 'coordinates': (-79.38596803, 43.65904449)}"
-11431,23041,GO-20179010072,THEFT UNDER - BICYCLE,2017-07-13T00:00:00,2017,July,Thursday,13,194,7,2017-07-13T00:00:00,2017,July,Thursday,13,194,8,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,ESCAPE 2,RG,20,GRY,553.0,STOLEN,11419,"{'type': 'Point', 'coordinates': (-79.38298971, 43.64660463)}"
-11432,23042,GO-20179010835,THEFT UNDER - BICYCLE,2017-07-20T00:00:00,2017,July,Thursday,20,201,12,2017-07-22T00:00:00,2017,July,Saturday,22,203,20,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,COMMUTER 2,RG,7,PLE,519.0,STOLEN,11420,"{'type': 'Point', 'coordinates': (-79.39045505, 43.65985872)}"
-11433,23043,GO-20179011181,THEFT UNDER - BICYCLE,2017-07-27T00:00:00,2017,July,Thursday,27,208,6,2017-07-27T00:00:00,2017,July,Thursday,27,208,19,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,SPECIALIZED,ALLEZ,RC,18,BLK,300.0,STOLEN,11421,"{'type': 'Point', 'coordinates': (-79.38771667, 43.66119164)}"
-11434,23046,GO-20179011921,THEFT UNDER - BICYCLE,2017-08-08T00:00:00,2017,August,Tuesday,8,220,9,2017-08-08T00:00:00,2017,August,Tuesday,8,220,14,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,SPECIALIZED,MT,18,BLK,100.0,STOLEN,11422,"{'type': 'Point', 'coordinates': (-79.38374902, 43.66302137000001)}"
-11435,23048,GO-20179012150,THEFT FROM MOTOR VEHICLE UNDER,2017-08-10T00:00:00,2017,August,Thursday,10,222,20,2017-08-10T00:00:00,2017,August,Thursday,10,222,23,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,WIND,EL,1,WHI,3000.0,STOLEN,11423,"{'type': 'Point', 'coordinates': (-79.38491403, 43.66584039)}"
-11436,23055,GO-20171551577,THEFT UNDER - BICYCLE,2017-08-02T00:00:00,2017,August,Wednesday,2,214,14,2017-08-27T00:00:00,2017,August,Sunday,27,239,15,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,ROADRUNNER,MT,18,RED,,STOLEN,11424,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-11437,23057,GO-20171655449,THEFT UNDER - BICYCLE,2017-09-12T00:00:00,2017,September,Tuesday,12,255,16,2017-09-16T00:00:00,2017,September,Saturday,16,259,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,ROAD,OT,10,BLU,130.0,STOLEN,11425,"{'type': 'Point', 'coordinates': (-79.38485374000001, 43.65851077)}"
-11438,23058,GO-20179015069,THEFT UNDER - BICYCLE,2017-09-16T00:00:00,2017,September,Saturday,16,259,9,2017-09-18T00:00:00,2017,September,Monday,18,261,23,D52,Toronto,76,Bay Street Corridor (76),"Open Areas (Lakes, Parks, Rivers)",Outside,GI,SEEK,MT,10,DBL,500.0,STOLEN,11426,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-11439,23060,GO-20179015617,THEFT UNDER - BICYCLE,2017-09-23T00:00:00,2017,September,Saturday,23,266,19,2017-09-24T00:00:00,2017,September,Sunday,24,267,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,DEW,RG,24,BLK,600.0,STOLEN,11427,"{'type': 'Point', 'coordinates': (-79.38402022, 43.65643576000001)}"
-11440,23061,GO-20179015825,THEFT UNDER - BICYCLE,2017-09-25T00:00:00,2017,September,Monday,25,268,18,2017-09-26T00:00:00,2017,September,Tuesday,26,269,13,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UK,CX SPECIALE,TO,56,BRZ,1150.0,STOLEN,11428,"{'type': 'Point', 'coordinates': (-79.38411783, 43.66390399)}"
-11441,23063,GO-20179016371,THEFT UNDER - BICYCLE,2017-10-02T00:00:00,2017,October,Monday,2,275,12,2017-10-03T00:00:00,2017,October,Tuesday,3,276,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,VITA ELITE,OT,9,BLK,1299.0,STOLEN,11429,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-11442,23065,GO-20179016576,THEFT UNDER - BICYCLE,2017-10-05T00:00:00,2017,October,Thursday,5,278,22,2017-10-06T00:00:00,2017,October,Friday,6,279,10,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,,MT,15,YEL,80.0,STOLEN,11430,"{'type': 'Point', 'coordinates': (-79.37903365, 43.65028111)}"
-11443,23066,GO-20179016638,THEFT UNDER - BICYCLE,2017-10-06T00:00:00,2017,October,Friday,6,279,17,2017-10-07T00:00:00,2017,October,Saturday,7,280,0,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,SC,700C SUPERSPORT,RG,21,,500.0,STOLEN,11431,"{'type': 'Point', 'coordinates': (-79.38260155, 43.6529703)}"
-11444,23067,GO-20179016926,THEFT UNDER,2017-09-26T00:00:00,2017,September,Tuesday,26,269,17,2017-10-11T00:00:00,2017,October,Wednesday,11,284,10,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,TR,MARLIN,MT,20,RED,750.0,STOLEN,11432,"{'type': 'Point', 'coordinates': (-79.38618236, 43.65775862)}"
-11445,23069,GO-20179017166,THEFT UNDER - BICYCLE,2017-10-12T00:00:00,2017,October,Thursday,12,285,16,2017-10-14T00:00:00,2017,October,Saturday,14,287,2,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,,RG,21,SIL,350.0,STOLEN,11433,"{'type': 'Point', 'coordinates': (-79.38334664, 43.66205466)}"
-11446,23079,GO-20171963922,B&E,2017-10-16T00:00:00,2017,October,Monday,16,289,0,2017-10-30T00:00:00,2017,October,Monday,30,303,11,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,FELT,,RC,21,BLKBLU,3000.0,STOLEN,11434,"{'type': 'Point', 'coordinates': (-79.38644891, 43.66715659)}"
-11447,23083,GO-20179019840,THEFT UNDER - BICYCLE,2017-11-16T00:00:00,2017,November,Thursday,16,320,20,2017-11-16T00:00:00,2017,November,Thursday,16,320,22,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,TO,10,GRY,1500.0,STOLEN,11435,"{'type': 'Point', 'coordinates': (-79.38402022, 43.65643576000001)}"
-11448,23085,GO-20179021697,THEFT UNDER - BICYCLE,2017-11-20T00:00:00,2017,November,Monday,20,324,18,2017-12-10T00:00:00,2017,December,Sunday,10,344,18,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,VOLTAGE,RG,21,,650.0,STOLEN,11436,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-11449,23086,GO-2018179772,THEFT UNDER - BICYCLE,2017-11-21T00:00:00,2017,November,Tuesday,21,325,8,2018-01-29T00:00:00,2018,January,Monday,29,29,10,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,BRODIE,,RG,21,BRN,1500.0,STOLEN,11437,"{'type': 'Point', 'coordinates': (-79.38737611, 43.66847728)}"
-11450,23087,GO-20189003426,THEFT UNDER - BICYCLE,2018-02-03T00:00:00,2018,February,Saturday,3,34,18,2018-02-05T00:00:00,2018,February,Monday,5,36,2,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,DEW PLUS,OT,27,BLU,700.0,STOLEN,11438,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11451,23088,GO-20189004185,THEFT UNDER,2018-02-09T00:00:00,2018,February,Friday,9,40,14,2018-02-10T00:00:00,2018,February,Saturday,10,41,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,CPRESS STEP THR,RG,21,BLU,400.0,STOLEN,11439,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-11452,23090,GO-20189006049,THEFT UNDER - BICYCLE,2018-02-25T00:00:00,2018,February,Sunday,25,56,13,2018-02-26T00:00:00,2018,February,Monday,26,57,9,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,2017 SPEC DIVER,RG,14,BLK,1500.0,STOLEN,11440,"{'type': 'Point', 'coordinates': (-79.38491403, 43.66584039)}"
-11453,23091,GO-20189006459,THEFT UNDER - BICYCLE,2018-02-26T00:00:00,2018,February,Monday,26,57,9,2018-03-01T00:00:00,2018,March,Thursday,1,60,11,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,URBANIA SP4,RG,18,GRY,800.0,STOLEN,11441,"{'type': 'Point', 'coordinates': (-79.38298971, 43.64660463)}"
-11454,23092,GO-20189007677,THEFT UNDER - BICYCLE,2018-03-12T00:00:00,2018,March,Monday,12,71,8,2018-03-12T00:00:00,2018,March,Monday,12,71,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MILANO WF,RG,21,WHI,479.0,STOLEN,11442,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-11455,23093,GO-20189009116,THEFT UNDER - BICYCLE,2018-03-22T00:00:00,2018,March,Thursday,22,81,12,2018-03-23T00:00:00,2018,March,Friday,23,82,10,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,VIA,FO,7,BLK,400.0,STOLEN,11443,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11456,23095,GO-20189009702,THEFT UNDER,2018-03-23T00:00:00,2018,March,Friday,23,82,16,2018-03-27T00:00:00,2018,March,Tuesday,27,86,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,SPECIALIZED,RC,14,,1500.0,STOLEN,11444,"{'type': 'Point', 'coordinates': (-79.38501192, 43.66606363)}"
-11457,23097,GO-20189011432,THEFT UNDER - BICYCLE,2018-04-11T00:00:00,2018,April,Wednesday,11,101,21,2018-04-12T00:00:00,2018,April,Thursday,12,102,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,UTOPIA,OT,25,WHI,800.0,STOLEN,11445,"{'type': 'Point', 'coordinates': (-79.38353872, 43.64792395)}"
-11458,23098,GO-2018684226,THEFT UNDER - BICYCLE,2018-04-10T00:00:00,2018,April,Tuesday,10,100,10,2018-04-17T00:00:00,2018,April,Tuesday,17,107,8,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,FUJI,NEVADA,RG,0,GRY,630.0,STOLEN,11446,"{'type': 'Point', 'coordinates': (-79.38820648, 43.66681234)}"
-11459,23099,GO-20189012104,THEFT UNDER,2018-04-18T00:00:00,2018,April,Wednesday,18,108,18,2018-04-18T00:00:00,2018,April,Wednesday,18,108,20,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,2308,RG,1,BLK,300.0,STOLEN,11447,"{'type': 'Point', 'coordinates': (-79.38124592, 43.65320661)}"
-11460,23100,GO-20189012713,THEFT UNDER - BICYCLE,2018-04-23T00:00:00,2018,April,Monday,23,113,22,2018-04-24T00:00:00,2018,April,Tuesday,24,114,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SINGLE SPEED ST,RC,1,BLK,400.0,STOLEN,11448,"{'type': 'Point', 'coordinates': (-79.39049247, 43.66072478)}"
-11461,23101,GO-20189012761,THEFT UNDER,2018-04-24T00:00:00,2018,April,Tuesday,24,114,6,2018-04-25T00:00:00,2018,April,Wednesday,25,115,7,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,18,RED,300.0,STOLEN,11449,"{'type': 'Point', 'coordinates': (-79.38298971, 43.64660463)}"
-11462,23102,GO-20189013924,THEFT UNDER - BICYCLE,2018-05-05T00:00:00,2018,May,Saturday,5,125,12,2018-05-05T00:00:00,2018,May,Saturday,5,125,20,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,GI,FASTROAD SLR,RC,10,BLK,1550.0,STOLEN,11450,"{'type': 'Point', 'coordinates': (-79.38684132, 43.64925417)}"
-11463,23104,GO-20189014667,THEFT UNDER,2017-11-12T00:00:00,2017,November,Sunday,12,316,12,2018-05-12T00:00:00,2018,May,Saturday,12,132,16,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,ROAM,RG,24,BLK,600.0,STOLEN,11451,"{'type': 'Point', 'coordinates': (-79.3888294, 43.66819662)}"
-11464,23105,GO-20189014841,THEFT UNDER - BICYCLE,2018-05-13T00:00:00,2018,May,Sunday,13,133,19,2018-05-14T00:00:00,2018,May,Monday,14,134,11,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,ROCK HOPPER,MT,24,SIL,250.0,STOLEN,11452,"{'type': 'Point', 'coordinates': (-79.38353872, 43.64792395)}"
-11465,23108,GO-20189016569,THEFT UNDER - BICYCLE,2018-05-24T00:00:00,2018,May,Thursday,24,144,8,2018-05-28T00:00:00,2018,May,Monday,28,148,14,D52,Toronto,76,Bay Street Corridor (76),Go Station,Transit,SU,,MT,18,BLK,200.0,STOLEN,11453,"{'type': 'Point', 'coordinates': (-79.38243116, 43.64529171000001)}"
-11466,23109,GO-20189017327,THEFT UNDER,2018-06-01T00:00:00,2018,June,Friday,1,152,17,2018-06-04T00:00:00,2018,June,Monday,4,155,15,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,MA,UNKNOWN,RG,18,GRY,0.0,STOLEN,11454,"{'type': 'Point', 'coordinates': (-79.37903365, 43.65028111)}"
-11467,23114,GO-20189018292,THEFT UNDER - BICYCLE,2018-06-08T00:00:00,2018,June,Friday,8,159,14,2018-06-11T00:00:00,2018,June,Monday,11,162,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,GIANTCYPRESS20,RG,6,BLK,400.0,STOLEN,11455,"{'type': 'Point', 'coordinates': (-79.3865128, 43.66731082)}"
-11468,23117,GO-20189018796,THEFT UNDER - BICYCLE,2018-06-15T00:00:00,2018,June,Friday,15,166,9,2018-06-15T00:00:00,2018,June,Friday,15,166,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,?,RG,3,BRZ,200.0,STOLEN,11456,"{'type': 'Point', 'coordinates': (-79.38625132, 43.6500866)}"
-11469,23122,GO-20181253369,THEFT UNDER,2018-07-09T00:00:00,2018,July,Monday,9,190,15,2018-07-10T00:00:00,2018,July,Tuesday,10,191,2,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,,SC,1,BLU,3000.0,STOLEN,11457,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-11470,23123,GO-20189022187,THEFT UNDER - BICYCLE,2018-07-12T00:00:00,2018,July,Thursday,12,193,15,2018-07-12T00:00:00,2018,July,Thursday,12,193,17,D52,Toronto,76,Bay Street Corridor (76),Bar / Restaurant,Commercial,SU,STEALTH,MT,9,BLK,1200.0,STOLEN,11458,"{'type': 'Point', 'coordinates': (-79.38437564, 43.65730783)}"
-11471,23126,GO-20189023692,THEFT UNDER - BICYCLE,2018-07-11T00:00:00,2018,July,Wednesday,11,192,17,2018-07-24T00:00:00,2018,July,Tuesday,24,205,11,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,OT,HEX CLARIS 8S,OT,8,DBL,1000.0,STOLEN,11459,"{'type': 'Point', 'coordinates': (-79.38820193, 43.66114001)}"
-11472,23127,GO-20189023877,THEFT UNDER - BICYCLE,2018-07-20T00:00:00,2018,July,Friday,20,201,18,2018-07-25T00:00:00,2018,July,Wednesday,25,206,15,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,SU,,RG,15,BLK,100.0,STOLEN,11460,"{'type': 'Point', 'coordinates': (-79.38491403, 43.66584039)}"
-11473,23128,GO-20181363820,THEFT UNDER - BICYCLE,2018-07-25T00:00:00,2018,July,Wednesday,25,206,13,2018-07-26T00:00:00,2018,July,Thursday,26,207,7,D52,Toronto,76,Bay Street Corridor (76),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GENESIS,ROSEPORT,RG,7,LGR,600.0,STOLEN,11461,"{'type': 'Point', 'coordinates': (-79.38634339, 43.66246955)}"
-11474,23129,GO-20189024041,THEFT UNDER - BICYCLE,2018-07-26T00:00:00,2018,July,Thursday,26,207,20,2018-07-26T00:00:00,2018,July,Thursday,26,207,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MIXED TAPE,RG,7,SIL,695.0,STOLEN,11462,"{'type': 'Point', 'coordinates': (-79.38124592, 43.65320661)}"
-11475,23130,GO-20189024061,THEFT UNDER - BICYCLE,2018-07-21T00:00:00,2018,July,Saturday,21,202,12,2018-07-26T00:00:00,2018,July,Thursday,26,207,17,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,GI,,TO,1,WHI,500.0,STOLEN,11463,"{'type': 'Point', 'coordinates': (-79.38482092, 43.65454718)}"
-11476,23131,GO-20181371167,THEFT UNDER - BICYCLE,2018-07-14T00:00:00,2018,July,Saturday,14,195,21,2018-07-19T00:00:00,2018,July,Thursday,19,200,9,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUPERCYCLE,,OT,0,BLKRED,,STOLEN,11464,"{'type': 'Point', 'coordinates': (-79.38737611, 43.66847728)}"
-11477,23132,GO-20189024456,THEFT UNDER - BICYCLE,2018-07-29T00:00:00,2018,July,Sunday,29,210,19,2018-07-29T00:00:00,2018,July,Sunday,29,210,20,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,KINNEY,TO,14,LBL,400.0,STOLEN,11465,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11478,23135,GO-20189025275,THEFT UNDER - BICYCLE,2018-07-23T00:00:00,2018,July,Monday,23,204,14,2018-08-06T00:00:00,2018,August,Monday,6,218,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SPORTIVO,TO,20,BLU,3100.0,STOLEN,11466,"{'type': 'Point', 'coordinates': (-79.38664264, 43.6606615)}"
-11479,23137,GO-20189025798,THEFT UNDER - BICYCLE,2018-08-09T00:00:00,2018,August,Thursday,9,221,17,2018-08-10T00:00:00,2018,August,Friday,10,222,9,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,LIZ,RG,11,BLK,2100.0,STOLEN,11467,"{'type': 'Point', 'coordinates': (-79.38640575, 43.65337704000001)}"
-11480,23138,GO-20181488011,PROPERTY - FOUND,2018-08-13T00:00:00,2018,August,Monday,13,225,3,2018-08-13T00:00:00,2018,August,Monday,13,225,3,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OPUS,BELLADONNA,TO,10,WHI,,UNKNOWN,11468,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-11481,23141,GO-20189027048,THEFT UNDER - BICYCLE,2018-08-19T00:00:00,2018,August,Sunday,19,231,19,2018-08-19T00:00:00,2018,August,Sunday,19,231,22,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UK,HARPER SINGLE S,RG,1,BLK,300.0,STOLEN,11469,"{'type': 'Point', 'coordinates': (-79.38260155, 43.6529703)}"
-11482,23142,GO-20189027118,THEFT UNDER - BICYCLE,2018-08-19T00:00:00,2018,August,Sunday,19,231,11,2018-08-20T00:00:00,2018,August,Monday,20,232,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,B07BNYB3D5,RG,7,GRY,450.0,STOLEN,11470,"{'type': 'Point', 'coordinates': (-79.38379426, 43.64856165)}"
-11483,12010,GO-20169008276,THEFT UNDER,2016-08-05T00:00:00,2016,August,Friday,5,218,9,2016-08-05T00:00:00,2016,August,Friday,5,218,20,D52,Toronto,76,Bay Street Corridor (76),Unknown,Other,OT,DIADORA,RG,8,BLU,500.0,STOLEN,11503,"{'type': 'Point', 'coordinates': (-79.38260155, 43.6529703)}"
-11484,23143,GO-20189028096,THEFT UNDER - BICYCLE,2018-08-24T00:00:00,2018,August,Friday,24,236,13,2018-08-27T00:00:00,2018,August,Monday,27,239,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,TO,5,DBL,200.0,STOLEN,11471,"{'type': 'Point', 'coordinates': (-79.39045505, 43.65985872)}"
-11485,23145,GO-20189029137,THEFT UNDER - BICYCLE,2018-09-05T00:00:00,2018,September,Wednesday,5,248,9,2018-09-05T00:00:00,2018,September,Wednesday,5,248,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,UK,RG,1,RED,,STOLEN,11472,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-11486,23146,GO-20189029740,THEFT UNDER - BICYCLE,2018-09-09T00:00:00,2018,September,Sunday,9,252,12,2018-09-09T00:00:00,2018,September,Sunday,9,252,21,D52,Toronto,76,Bay Street Corridor (76),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,JULIETE,RG,1,BLK,550.0,STOLEN,11473,"{'type': 'Point', 'coordinates': (-79.38260155, 43.6529703)}"
-11487,23148,GO-20189030302,THEFT UNDER - BICYCLE,2018-09-11T00:00:00,2018,September,Tuesday,11,254,17,2018-09-13T00:00:00,2018,September,Thursday,13,256,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CHALLENGER 18 S,MT,18,WHI,50.0,STOLEN,11474,"{'type': 'Point', 'coordinates': (-79.38437564, 43.65730783)}"
-11488,23149,GO-20181702657,THEFT UNDER - BICYCLE,2018-06-05T00:00:00,2018,June,Tuesday,5,156,0,2018-09-14T00:00:00,2018,September,Friday,14,257,10,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CAMION,,MT,12,GRN,,STOLEN,11475,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-11489,23151,GO-20189031260,THEFT UNDER - BICYCLE,2018-09-20T00:00:00,2018,September,Thursday,20,263,13,2018-09-20T00:00:00,2018,September,Thursday,20,263,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,TK3,RC,1,BLK,2400.0,STOLEN,11476,"{'type': 'Point', 'coordinates': (-79.38353872, 43.64792395)}"
-11490,23152,GO-20189031437,THEFT UNDER,2018-09-15T00:00:00,2018,September,Saturday,15,258,0,2018-09-21T00:00:00,2018,September,Friday,21,264,16,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,21,ONG,800.0,STOLEN,11477,"{'type': 'Point', 'coordinates': (-79.38487134, 43.64619564)}"
-11491,23153,GO-20189032037,THEFT UNDER - BICYCLE,2018-09-26T00:00:00,2018,September,Wednesday,26,269,9,2018-09-26T00:00:00,2018,September,Wednesday,26,269,18,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,HUNTER,FO,1,BLK,250.0,STOLEN,11478,"{'type': 'Point', 'coordinates': (-79.38209114, 43.64961443)}"
-11492,23154,GO-20181789503,THEFT UNDER - BICYCLE,2018-09-24T00:00:00,2018,September,Monday,24,267,17,2018-09-27T00:00:00,2018,September,Thursday,27,270,13,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,DUEL SPORT 3,MT,27,BLUWHI,1400.0,STOLEN,11479,"{'type': 'Point', 'coordinates': (-79.38605934000002, 43.6615638)}"
-11493,23156,GO-20189032760,THEFT UNDER - BICYCLE,2018-09-30T00:00:00,2018,September,Sunday,30,273,15,2018-10-03T00:00:00,2018,October,Wednesday,3,276,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,"SC 26""""",MT,30,BLU,180.0,STOLEN,11480,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11494,23157,GO-20181844458,THEFT OF EBIKE UNDER $5000,2018-10-05T00:00:00,2018,October,Friday,5,278,20,2018-10-05T00:00:00,2018,October,Friday,5,278,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,CLASSIC,EL,26,DBL,1200.0,STOLEN,11481,"{'type': 'Point', 'coordinates': (-79.38658151, 43.64863773)}"
-11495,23164,GO-20189034428,THEFT UNDER - BICYCLE,2018-10-16T00:00:00,2018,October,Tuesday,16,289,11,2018-10-17T00:00:00,2018,October,Wednesday,17,290,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,INFINITE STEP-T,EL,25,GRY,3746.0,STOLEN,11482,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-11496,23169,GO-20199001817,THEFT UNDER - BICYCLE,2018-12-31T00:00:00,2018,December,Monday,31,365,21,2019-01-14T00:00:00,2019,January,Monday,14,14,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,SUPERBIKE,MT,6,SIL,0.0,STOLEN,11483,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-11497,23170,GO-20199008293,THEFT UNDER - BICYCLE,2019-03-14T00:00:00,2019,March,Thursday,14,73,8,2019-03-14T00:00:00,2019,March,Thursday,14,73,22,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,F4X,RC,11,GRNPNK,4000.0,STOLEN,11484,"{'type': 'Point', 'coordinates': (-79.38103127, 43.65056603)}"
-11498,23171,GO-2019519383,THEFT UNDER - BICYCLE,2019-03-18T00:00:00,2019,March,Monday,18,77,17,2019-03-22T00:00:00,2019,March,Friday,22,81,13,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,ALIBI,STEP-THROUGH,RG,7,,800.0,STOLEN,11485,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11499,23173,GO-20199014671,THEFT UNDER,2019-05-10T00:00:00,2019,May,Friday,10,130,18,2019-05-11T00:00:00,2019,May,Saturday,11,131,9,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KO,DEW,RG,24,BLK,400.0,STOLEN,11487,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-11500,23174,GO-20199015078,THEFT UNDER,2019-05-14T00:00:00,2019,May,Tuesday,14,134,0,2019-05-15T00:00:00,2019,May,Wednesday,15,135,1,D52,Toronto,76,Bay Street Corridor (76),Convenience Stores,Commercial,SC,,RG,10,RED,350.0,STOLEN,11488,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11501,23175,GO-20199015580,THEFT UNDER,2019-05-18T00:00:00,2019,May,Saturday,18,138,16,2019-05-18T00:00:00,2019,May,Saturday,18,138,22,D52,Toronto,76,Bay Street Corridor (76),Bar / Restaurant,Commercial,SU,SUPERCYCLE 1800,MT,18,RED,109.0,STOLEN,11489,"{'type': 'Point', 'coordinates': (-79.38581514, 43.66081576)}"
-11502,23177,GO-20199015889,THEFT UNDER,2019-05-21T00:00:00,2019,May,Tuesday,21,141,17,2019-05-22T00:00:00,2019,May,Wednesday,22,142,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,DUTCHI 3I,TO,3,RED,600.0,STOLEN,11490,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-11503,23180,GO-20191012451,B&E,2019-06-02T00:00:00,2019,June,Sunday,2,153,13,2019-06-02T00:00:00,2019,June,Sunday,2,153,13,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,DEVINCI,OSLO,RG,12,BLK,800.0,STOLEN,11491,"{'type': 'Point', 'coordinates': (-79.38581514, 43.66081576)}"
-11504,23183,GO-20199019245,THEFT UNDER,2019-06-09T00:00:00,2019,June,Sunday,9,160,14,2019-06-19T00:00:00,2019,June,Wednesday,19,170,13,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,SINGLE SPEED,RC,1,BLK,200.0,STOLEN,11492,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-11505,23189,GO-20199021681,THEFT UNDER,2019-07-06T00:00:00,2019,July,Saturday,6,187,0,2019-07-10T00:00:00,2019,July,Wednesday,10,191,1,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,700C SPINFIT,RG,1,RED,200.0,STOLEN,11493,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-11506,23190,GO-20191301268,THEFT UNDER,2019-04-24T00:00:00,2019,April,Wednesday,24,114,8,2019-07-12T00:00:00,2019,July,Friday,12,193,7,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OTHER,,RG,0,GRN,300.0,STOLEN,11494,"{'type': 'Point', 'coordinates': (-79.38437564, 43.65730783)}"
-11507,23195,GO-20199022599,THEFT UNDER,2019-07-16T00:00:00,2019,July,Tuesday,16,197,19,2019-07-16T00:00:00,2019,July,Tuesday,16,197,22,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MA,SC1,RG,21,BLK,800.0,STOLEN,11495,"{'type': 'Point', 'coordinates': (-79.38103127, 43.65056603)}"
-11508,23196,GO-20199023104,THEFT UNDER,2019-07-21T00:00:00,2019,July,Sunday,21,202,2,2019-07-21T00:00:00,2019,July,Sunday,21,202,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,URBAN UNO,RG,1,GRY,500.0,STOLEN,11496,"{'type': 'Point', 'coordinates': (-79.38847714, 43.66743649)}"
-11509,23379,GO-20149001208,THEFT UNDER,2014-01-01T00:00:00,2014,January,Wednesday,1,1,18,2014-02-11T00:00:00,2014,February,Tuesday,11,42,18,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,UNKNOWN,EL,32,YEL,1750.0,STOLEN,11497,"{'type': 'Point', 'coordinates': (-79.38634339, 43.66246955)}"
-11510,11977,GO-20169008116,THEFT OF EBIKE UNDER $5000,2016-08-02T00:00:00,2016,August,Tuesday,2,215,14,2016-08-02T00:00:00,2016,August,Tuesday,2,215,22,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,EL,32,BLK,500.0,STOLEN,11498,"{'type': 'Point', 'coordinates': (-79.3802391, 43.64865033)}"
-11511,11981,GO-20169008134,THEFT UNDER - BICYCLE,2016-08-02T00:00:00,2016,August,Tuesday,2,215,8,2016-08-03T00:00:00,2016,August,Wednesday,3,216,13,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,ST. TROPEZ,RG,24,BLK,550.0,STOLEN,11499,"{'type': 'Point', 'coordinates': (-79.37878196, 43.64896093)}"
-11512,11986,GO-20169007895,THEFT UNDER,2016-07-28T00:00:00,2016,July,Thursday,28,210,19,2016-07-28T00:00:00,2016,July,Thursday,28,210,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RC,24,BLK,1000.0,STOLEN,11500,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-11513,13375,GO-20169005057,THEFT UNDER,2016-05-27T00:00:00,2016,May,Friday,27,148,11,2016-05-28T00:00:00,2016,May,Saturday,28,149,18,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,KH,URBAN SOUL,RG,1,SIL,520.0,STOLEN,11501,"{'type': 'Point', 'coordinates': (-79.38946225, 43.66523161)}"
-11514,11997,GO-20169008217,THEFT UNDER - BICYCLE,2016-08-03T00:00:00,2016,August,Wednesday,3,216,1,2016-08-04T00:00:00,2016,August,Thursday,4,217,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RE,,RC,1,DGR,500.0,STOLEN,11502,"{'type': 'Point', 'coordinates': (-79.38714344, 43.66436762)}"
-11515,13377,GO-20169005353,THEFT UNDER,2016-06-04T00:00:00,2016,June,Saturday,4,156,19,2016-06-06T00:00:00,2016,June,Monday,6,158,2,D52,Toronto,76,Bay Street Corridor (76),Bar / Restaurant,Commercial,CC,PRESTO 700C,RC,35,BLK,300.0,STOLEN,11504,"{'type': 'Point', 'coordinates': (-79.38673938, 43.66335885)}"
-11516,12019,GO-20169008366,THEFT UNDER - BICYCLE,2016-08-05T00:00:00,2016,August,Friday,5,218,9,2016-08-07T00:00:00,2016,August,Sunday,7,220,23,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,UK,,RG,1,BLK,250.0,STOLEN,11505,"{'type': 'Point', 'coordinates': (-79.37968936, 43.64733439)}"
-11517,13378,GO-20169005367,THEFT UNDER,2016-06-04T00:00:00,2016,June,Saturday,4,156,21,2016-06-06T00:00:00,2016,June,Monday,6,158,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,MEN'S GTX-2,RG,12,RED,550.0,STOLEN,11506,"{'type': 'Point', 'coordinates': (-79.37968936, 43.64733439)}"
-11518,13383,GO-20169006153,THEFT UNDER,2016-06-09T00:00:00,2016,June,Thursday,9,161,19,2016-06-21T00:00:00,2016,June,Tuesday,21,173,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KH,URBAN XPRESS,RG,21,DBL,600.0,STOLEN,11507,"{'type': 'Point', 'coordinates': (-79.38944954, 43.65752945)}"
-11519,16300,GO-20189033838,THEFT UNDER - BICYCLE,2018-10-12T00:00:00,2018,October,Friday,12,285,12,2018-10-12T00:00:00,2018,October,Friday,12,285,14,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UK,2010 XL SIRRUS,TO,24,GRY,650.0,STOLEN,11508,"{'type': 'Point', 'coordinates': (-79.38374902, 43.66302137000001)}"
-11520,12020,GO-20161394653,THEFT OF EBIKE UNDER $5000,2016-07-29T00:00:00,2016,July,Friday,29,211,16,2016-08-08T00:00:00,2016,August,Monday,8,221,9,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MONSTER,,EL,0,,1795.0,STOLEN,11509,"{'type': 'Point', 'coordinates': (-79.38632177, 43.65593978)}"
-11521,13385,GO-20161170269,THEFT UNDER - BICYCLE,2016-07-03T00:00:00,2016,July,Sunday,3,185,18,2016-07-04T00:00:00,2016,July,Monday,4,186,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MARIN OR MARINO,,OT,21,BLK,975.0,STOLEN,11510,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-11522,12034,GO-20161403685,THEFT UNDER - BICYCLE,2016-08-09T00:00:00,2016,August,Tuesday,9,222,8,2016-08-09T00:00:00,2016,August,Tuesday,9,222,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,MARLON5,MT,21,YEL,1500.0,STOLEN,11511,"{'type': 'Point', 'coordinates': (-79.38702746, 43.66853925)}"
-11523,16304,GO-20189038400,THEFT UNDER - BICYCLE,2018-11-15T00:00:00,2018,November,Thursday,15,319,14,2018-11-15T00:00:00,2018,November,Thursday,15,319,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,FX 1,RG,21,BLK,500.0,STOLEN,11512,"{'type': 'Point', 'coordinates': (-79.38492429, 43.65121654)}"
-11524,13387,GO-20169006991,THEFT UNDER - BICYCLE,2016-07-08T00:00:00,2016,July,Friday,8,190,18,2016-07-11T00:00:00,2016,July,Monday,11,193,0,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,CITYGLIDE,RG,10,BLU,860.0,STOLEN,11513,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11525,12038,GO-20169008446,THEFT UNDER,2016-08-08T00:00:00,2016,August,Monday,8,221,22,2016-08-09T00:00:00,2016,August,Tuesday,9,222,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,FURLEY,RC,10,LBL,1100.0,STOLEN,11514,"{'type': 'Point', 'coordinates': (-79.38374902, 43.66302137000001)}"
-11526,16305,GO-20182093409,THEFT UNDER - BICYCLE,2018-11-09T00:00:00,2018,November,Friday,9,313,11,2018-11-13T00:00:00,2018,November,Tuesday,13,317,14,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,SUPERCYCLE,,OT,6,GRN,160.0,STOLEN,11515,"{'type': 'Point', 'coordinates': (-79.38671683, 43.66779)}"
-11527,13390,GO-20169007233,THEFT UNDER - BICYCLE,2016-07-14T00:00:00,2016,July,Thursday,14,196,15,2016-07-14T00:00:00,2016,July,Thursday,14,196,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,7,SIL,0.0,STOLEN,11516,"{'type': 'Point', 'coordinates': (-79.38154682, 43.65790792)}"
-11528,12069,GO-20169008607,THEFT UNDER,2016-08-10T00:00:00,2016,August,Wednesday,10,223,9,2016-08-11T00:00:00,2016,August,Thursday,11,224,21,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,EVERYDAY ANNEX,RG,7,BLK,270.0,STOLEN,11517,"{'type': 'Point', 'coordinates': (-79.38238489, 43.65176074)}"
-11529,16306,GO-20189039904,THEFT UNDER - BICYCLE,2018-11-26T00:00:00,2018,November,Monday,26,330,9,2018-11-27T00:00:00,2018,November,Tuesday,27,331,0,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,SUB 35,OT,7,WHI,1100.0,STOLEN,11518,"{'type': 'Point', 'coordinates': (-79.38353872, 43.64792395)}"
-11530,13602,GO-20149001553,THEFT UNDER,2014-01-18T00:00:00,2014,January,Saturday,18,18,0,2014-02-24T00:00:00,2014,February,Monday,24,55,15,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,GI,ALIAS,MT,21,BLK,1400.0,STOLEN,11551,"{'type': 'Point', 'coordinates': (-79.38847714, 43.66743649)}"
-11531,13391,GO-20161243252,THEFT OVER - BICYCLE,2016-07-14T00:00:00,2016,July,Thursday,14,196,12,2016-07-15T00:00:00,2016,July,Friday,15,197,17,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,BMC,RC,22,BLK,10000.0,STOLEN,11519,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-11532,13393,GO-20161260717,THEFT UNDER - BICYCLE,2016-07-18T00:00:00,2016,July,Monday,18,200,7,2016-07-18T00:00:00,2016,July,Monday,18,200,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MIELE,COMPATTO,FO,0,BLK,,STOLEN,11520,"{'type': 'Point', 'coordinates': (-79.39114165, 43.66483963)}"
-11533,13395,GO-20169007789,THEFT UNDER - BICYCLE,2016-07-26T00:00:00,2016,July,Tuesday,26,208,20,2016-07-26T00:00:00,2016,July,Tuesday,26,208,21,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,SIMCOE CLASSIC,OT,3,BLK,650.0,STOLEN,11521,"{'type': 'Point', 'coordinates': (-79.38437564, 43.65730783)}"
-11534,13398,GO-20169007976,THEFT UNDER,2016-07-29T00:00:00,2016,July,Friday,29,211,23,2016-07-31T00:00:00,2016,July,Sunday,31,213,5,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,TR,2.1 C (2012),RC,10,BLK,1600.0,STOLEN,11522,"{'type': 'Point', 'coordinates': (-79.3863755, 43.65817391)}"
-11535,13400,GO-20169008322,THEFT UNDER - BICYCLE,2016-08-06T00:00:00,2016,August,Saturday,6,219,16,2016-08-06T00:00:00,2016,August,Saturday,6,219,21,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,TR,4500 WSD,MT,21,PLE,400.0,STOLEN,11523,"{'type': 'Point', 'coordinates': (-79.39219449, 43.66603246)}"
-11536,13401,GO-20169008428,THEFT UNDER,2016-07-08T00:00:00,2016,July,Friday,8,190,18,2016-08-09T00:00:00,2016,August,Tuesday,9,222,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,F85,RC,20,RED,700.0,STOLEN,11524,"{'type': 'Point', 'coordinates': (-79.38268555, 43.64598268)}"
-11537,13404,GO-20169008839,THEFT UNDER - BICYCLE,2016-08-15T00:00:00,2016,August,Monday,15,228,17,2016-08-16T00:00:00,2016,August,Tuesday,16,229,7,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SILLOUETTE ALLO,OT,21,WHI,450.0,STOLEN,11525,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-11538,13405,GO-20169008970,THEFT UNDER - BICYCLE,2016-08-17T00:00:00,2016,August,Wednesday,17,230,18,2016-08-17T00:00:00,2016,August,Wednesday,17,230,22,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,SKYWAY,OT,1,BLK,550.0,STOLEN,11526,"{'type': 'Point', 'coordinates': (-79.3879785, 43.66997438)}"
-11539,13406,GO-20169009027,THEFT UNDER,2016-08-17T00:00:00,2016,August,Wednesday,17,230,22,2016-08-18T00:00:00,2016,August,Thursday,18,231,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,VFR3,OT,21,,700.0,STOLEN,11527,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-11540,13407,GO-20169009090,THEFT UNDER,2016-08-19T00:00:00,2016,August,Friday,19,232,12,2016-08-19T00:00:00,2016,August,Friday,19,232,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,1,WHI,500.0,STOLEN,11528,"{'type': 'Point', 'coordinates': (-79.38129397, 43.65116987)}"
-11541,13409,GO-20169009300,THEFT UNDER - BICYCLE,2016-08-21T00:00:00,2016,August,Sunday,21,234,13,2016-08-23T00:00:00,2016,August,Tuesday,23,236,9,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,TR,7.2,MT,21,BLK,200.0,STOLEN,11529,"{'type': 'Point', 'coordinates': (-79.38618236, 43.65775862)}"
-11542,13411,GO-20169009722,THEFT UNDER,2016-08-27T00:00:00,2016,August,Saturday,27,240,18,2016-08-30T00:00:00,2016,August,Tuesday,30,243,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RC,30,,400.0,STOLEN,11530,"{'type': 'Point', 'coordinates': (-79.38437564, 43.65730783)}"
-11543,13416,GO-20169010383,THEFT UNDER,2016-09-13T00:00:00,2016,September,Tuesday,13,257,9,2016-09-13T00:00:00,2016,September,Tuesday,13,257,19,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,SC,,MT,21,,500.0,STOLEN,11531,"{'type': 'Point', 'coordinates': (-79.38260155, 43.6529703)}"
-11544,13417,GO-20169010453,THEFT UNDER,2016-09-13T00:00:00,2016,September,Tuesday,13,257,17,2016-09-14T00:00:00,2016,September,Wednesday,14,258,16,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,PROMENADE,RG,40,WHI,540.0,STOLEN,11532,"{'type': 'Point', 'coordinates': (-79.3879785, 43.66997438)}"
-11545,13419,GO-20169010526,THEFT UNDER - BICYCLE,2016-09-16T00:00:00,2016,September,Friday,16,260,9,2016-09-16T00:00:00,2016,September,Friday,16,260,9,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,WILLOW SINGLE S,RG,1,BLK,1000.0,STOLEN,11533,"{'type': 'Point', 'coordinates': (-79.38671683, 43.66779)}"
-11546,13421,GO-20169010853,THEFT UNDER - BICYCLE,2016-09-20T00:00:00,2016,September,Tuesday,20,264,1,2016-09-21T00:00:00,2016,September,Wednesday,21,265,14,D52,Toronto,76,Bay Street Corridor (76),"Open Areas (Lakes, Parks, Rivers)",Outside,GI,HYBRID,RG,21,BLK,500.0,STOLEN,11534,"{'type': 'Point', 'coordinates': (-79.38768427, 43.66564487000001)}"
-11547,13425,GO-20169011651,THEFT UNDER,2016-09-27T00:00:00,2016,September,Tuesday,27,271,7,2016-10-06T00:00:00,2016,October,Thursday,6,280,19,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,CATALYST 4,MT,7,BLK,700.0,STOLEN,11535,"{'type': 'Point', 'coordinates': (-79.37878196, 43.64896093)}"
-11548,13426,GO-20169011951,THEFT UNDER - BICYCLE,2016-10-12T00:00:00,2016,October,Wednesday,12,286,11,2016-10-12T00:00:00,2016,October,Wednesday,12,286,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,RC,10,WHI,300.0,STOLEN,11536,"{'type': 'Point', 'coordinates': (-79.39054537, 43.66944743)}"
-11549,13428,GO-20169012477,THEFT UNDER,2016-10-23T00:00:00,2016,October,Sunday,23,297,15,2016-10-23T00:00:00,2016,October,Sunday,23,297,15,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,TRIPEL,RG,3,GRN,650.0,STOLEN,11537,"{'type': 'Point', 'coordinates': (-79.38714344, 43.66436762)}"
-11550,13429,GO-20161942269,THEFT UNDER - BICYCLE,2016-10-17T00:00:00,2016,October,Monday,17,291,13,2016-11-01T00:00:00,2016,November,Tuesday,1,306,13,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,OTHER,,MT,0,GRY,400.0,STOLEN,11538,"{'type': 'Point', 'coordinates': (-79.38737611, 43.66847728)}"
-11551,13432,GO-20169013365,THEFT UNDER,2016-11-13T00:00:00,2016,November,Sunday,13,318,13,2016-11-13T00:00:00,2016,November,Sunday,13,318,23,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,DB,,MT,6,GRY,650.0,STOLEN,11539,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-11552,13433,GO-20169013500,THEFT UNDER - BICYCLE,2016-11-16T00:00:00,2016,November,Wednesday,16,321,17,2016-11-16T00:00:00,2016,November,Wednesday,16,321,18,D52,Toronto,76,Bay Street Corridor (76),Unknown,Other,OT,,OT,3,BLK,0.0,STOLEN,11540,"{'type': 'Point', 'coordinates': (-79.38581514, 43.66081576)}"
-11553,13443,GO-20179005069,THEFT UNDER,2017-04-21T00:00:00,2017,April,Friday,21,111,16,2017-04-21T00:00:00,2017,April,Friday,21,111,18,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,RIVER SPORT,RG,21,BLK,450.0,STOLEN,11541,"{'type': 'Point', 'coordinates': (-79.37760867, 43.64852311)}"
-11554,13444,GO-20179005075,THEFT UNDER,2017-04-21T00:00:00,2017,April,Friday,21,111,9,2017-04-21T00:00:00,2017,April,Friday,21,111,20,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,,MT,12,GRY,1650.0,STOLEN,11542,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-11555,13447,GO-2017727188,B&E,2017-04-23T00:00:00,2017,April,Sunday,23,113,20,2017-04-25T00:00:00,2017,April,Tuesday,25,115,17,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,R2,RC,11,GRY,2200.0,STOLEN,11543,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-11556,13450,GO-2017776320,THEFT UNDER - BICYCLE,2017-04-13T00:00:00,2017,April,Thursday,13,103,1,2017-05-03T00:00:00,2017,May,Wednesday,3,123,7,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,RALEIGH,SAFARI,OT,0,,,RECOVERED,11544,"{'type': 'Point', 'coordinates': (-79.38737611, 43.66847728)}"
-11557,13452,GO-2017811102,THEFT UNDER - BICYCLE,2017-05-08T00:00:00,2017,May,Monday,8,128,10,2017-05-08T00:00:00,2017,May,Monday,8,128,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MIELE,DENETO G1,OT,21,RED,900.0,STOLEN,11545,"{'type': 'Point', 'coordinates': (-79.38077050000001, 43.64989242)}"
-11558,13453,GO-20179006237,THEFT UNDER - BICYCLE,2017-05-12T00:00:00,2017,May,Friday,12,132,23,2017-05-13T00:00:00,2017,May,Saturday,13,133,0,D52,Toronto,76,Bay Street Corridor (76),Bar / Restaurant,Commercial,GI,,RC,21,BLK,1000.0,STOLEN,11546,"{'type': 'Point', 'coordinates': (-79.39098691, 43.66935825)}"
-11559,13460,GO-20179007555,THEFT UNDER - BICYCLE,2017-05-15T00:00:00,2017,May,Monday,15,135,13,2017-06-05T00:00:00,2017,June,Monday,5,156,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,STOCKHOLM,RG,27,SIL,650.0,STOLEN,11547,"{'type': 'Point', 'coordinates': (-79.37869993, 43.65105518)}"
-11560,13461,GO-2017997847,THEFT UNDER - BICYCLE,2017-05-13T00:00:00,2017,May,Saturday,13,133,9,2017-06-05T00:00:00,2017,June,Monday,5,156,16,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,TREK,730,RG,21,DGR,600.0,STOLEN,11548,"{'type': 'Point', 'coordinates': (-79.38618236, 43.65775862)}"
-11561,13601,GO-20149000445,THEFT UNDER,2014-01-14T00:00:00,2014,January,Tuesday,14,14,10,2014-01-14T00:00:00,2014,January,Tuesday,14,14,16,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RG,10,ONG,2000.0,STOLEN,11549,"{'type': 'Point', 'coordinates': (-79.38236226, 43.65027737)}"
-11562,19427,GO-20179011171,THEFT UNDER - BICYCLE,2016-02-20T00:00:00,2016,February,Saturday,20,51,16,2017-07-27T00:00:00,2017,July,Thursday,27,208,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,BUSHWHACKER,TO,18,PNK,800.0,STOLEN,11550,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11563,13603,GO-20141878781,THEFT UNDER,2014-04-12T00:00:00,2014,April,Saturday,12,102,10,2014-04-12T00:00:00,2014,April,Saturday,12,102,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,VFR 3,OT,27,GRY,800.0,STOLEN,11552,"{'type': 'Point', 'coordinates': (-79.38437564, 43.65730783)}"
-11564,13604,GO-20149002858,THEFT UNDER,2014-04-13T00:00:00,2014,April,Sunday,13,103,9,2014-04-14T00:00:00,2014,April,Monday,14,104,23,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,,MT,21,SIL,0.0,STOLEN,11553,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-11565,13605,GO-20142034816,THEFT UNDER,2014-05-01T00:00:00,2014,May,Thursday,1,121,19,2014-05-07T00:00:00,2014,May,Wednesday,7,127,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,UNKNOWN,MT,24,BLU,250.0,STOLEN,11554,"{'type': 'Point', 'coordinates': (-79.39114165, 43.66483963)}"
-11566,13607,GO-20149003385,THEFT UNDER,2014-05-15T00:00:00,2014,May,Thursday,15,135,15,2014-05-15T00:00:00,2014,May,Thursday,15,135,22,D52,Toronto,76,Bay Street Corridor (76),Unknown,Other,GI,TRANSEND,RG,18,SIL,677.0,STOLEN,11555,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11567,13608,GO-20149003419,THEFT UNDER,2014-05-16T00:00:00,2014,May,Friday,16,136,13,2014-05-18T00:00:00,2014,May,Sunday,18,138,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,2200 ALPHA SL,RC,18,BLU,800.0,STOLEN,11556,"{'type': 'Point', 'coordinates': (-79.3811853, 43.65703802)}"
-11568,13609,GO-20149003508,THEFT UNDER,2014-05-21T00:00:00,2014,May,Wednesday,21,141,10,2014-05-22T00:00:00,2014,May,Thursday,22,142,1,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,UK,SCOUT,MT,8,BLU,200.0,STOLEN,11557,"{'type': 'Point', 'coordinates': (-79.38548616, 43.65612775)}"
-11569,13610,GO-20149003595,THEFT UNDER,2014-05-26T00:00:00,2014,May,Monday,26,146,7,2014-05-27T00:00:00,2014,May,Tuesday,27,147,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,CITYGLIDE,RG,7,BLK,550.0,STOLEN,11558,"{'type': 'Point', 'coordinates': (-79.38632177, 43.65593978)}"
-11570,13615,GO-20142252652,THEFT UNDER,2014-06-09T00:00:00,2014,June,Monday,9,160,0,2014-06-09T00:00:00,2014,June,Monday,9,160,10,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,K2,TREELINE,OT,24,PLE,500.0,STOLEN,11559,"{'type': 'Point', 'coordinates': (-79.3888294, 43.66819662)}"
-11571,13618,GO-20149004049,THEFT UNDER,2014-06-13T00:00:00,2014,June,Friday,13,164,17,2014-06-13T00:00:00,2014,June,Friday,13,164,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,7.1 FX,RG,21,BLK,500.0,STOLEN,11560,"{'type': 'Point', 'coordinates': (-79.37733067, 43.64784591)}"
-11572,13621,GO-20149004143,THEFT UNDER,2014-06-16T00:00:00,2014,June,Monday,16,167,19,2014-06-16T00:00:00,2014,June,Monday,16,167,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BI,,RG,4,WHI,900.0,STOLEN,11561,"{'type': 'Point', 'coordinates': (-79.38581514, 43.66081576)}"
-11573,13623,GO-20142340362,THEFT UNDER,2014-06-21T00:00:00,2014,June,Saturday,21,172,18,2014-06-21T00:00:00,2014,June,Saturday,21,172,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,H5,EL,1,WHI,,STOLEN,11562,"{'type': 'Point', 'coordinates': (-79.3879785, 43.66997438)}"
-11574,13624,GO-20149004390,THEFT UNDER,2014-06-23T00:00:00,2014,June,Monday,23,174,8,2014-06-24T00:00:00,2014,June,Tuesday,24,175,12,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,RM,RC70,TO,20,WHI,999.0,STOLEN,11563,"{'type': 'Point', 'coordinates': (-79.38618236, 43.65775862)}"
-11575,13625,GO-20142316966,THEFT OVER,2014-06-18T00:00:00,2014,June,Wednesday,18,169,9,2014-06-18T00:00:00,2014,June,Wednesday,18,169,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,NRS COMP,MT,21,,9500.0,STOLEN,11564,"{'type': 'Point', 'coordinates': (-79.38298971, 43.64660463)}"
-11576,13626,GO-20142395522,THEFT UNDER,2014-06-29T00:00:00,2014,June,Sunday,29,180,13,2014-06-29T00:00:00,2014,June,Sunday,29,180,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,X,EL,0,WHI,2300.0,STOLEN,11565,"{'type': 'Point', 'coordinates': (-79.38124592, 43.65320661)}"
-11577,13627,GO-20149004500,THEFT UNDER,2014-06-23T00:00:00,2014,June,Monday,23,174,8,2014-06-27T00:00:00,2014,June,Friday,27,178,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,20,LGR,700.0,STOLEN,11566,"{'type': 'Point', 'coordinates': (-79.38262593, 43.65086783)}"
-11578,13629,GO-20142442011,THEFT UNDER,2014-07-06T00:00:00,2014,July,Sunday,6,187,12,2014-07-06T00:00:00,2014,July,Sunday,6,187,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,ORBEA,,MT,18,BLK,700.0,STOLEN,11567,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11579,13631,GO-20149004636,THEFT UNDER,2014-07-02T00:00:00,2014,July,Wednesday,2,183,8,2014-07-02T00:00:00,2014,July,Wednesday,2,183,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,F400,MT,21,RED,1500.0,STOLEN,11568,"{'type': 'Point', 'coordinates': (-79.38618236, 43.65775862)}"
-11580,13633,GO-20149004703,PROPERTY - LOST,2014-06-30T00:00:00,2014,June,Monday,30,181,16,2014-07-04T00:00:00,2014,July,Friday,4,185,10,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RC,12,,600.0,UNKNOWN,11569,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11581,13637,GO-20149005080,THEFT UNDER,2014-07-16T00:00:00,2014,July,Wednesday,16,197,15,2014-07-17T00:00:00,2014,July,Thursday,17,198,21,D52,Toronto,76,Bay Street Corridor (76),"Open Areas (Lakes, Parks, Rivers)",Outside,GI,DEFY,RG,21,WHI,2500.0,STOLEN,11570,"{'type': 'Point', 'coordinates': (-79.37787874, 43.64914837)}"
-11582,13640,GO-20142582851,THEFT UNDER,2014-07-27T00:00:00,2014,July,Sunday,27,208,11,2014-07-27T00:00:00,2014,July,Sunday,27,208,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,,OT,18,WHI,500.0,STOLEN,11571,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11583,13642,GO-20149005549,THEFT UNDER,2014-07-23T00:00:00,2014,July,Wednesday,23,204,9,2014-08-01T00:00:00,2014,August,Friday,1,213,10,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,BEAST Y,OT,1,BLK,450.0,STOLEN,11572,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-11584,13643,GO-20142654389,THEFT UNDER,2014-07-28T00:00:00,2014,July,Monday,28,209,6,2014-08-07T00:00:00,2014,August,Thursday,7,219,14,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,TREK FX,OT,24,BLK,900.0,STOLEN,11573,"{'type': 'Point', 'coordinates': (-79.38551636, 43.64886856)}"
-11585,13646,GO-20149005940,THEFT UNDER,2014-08-11T00:00:00,2014,August,Monday,11,223,13,2014-08-14T00:00:00,2014,August,Thursday,14,226,18,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,TIMBERLINE,MT,24,SIL,500.0,STOLEN,11574,"{'type': 'Point', 'coordinates': (-79.38262593, 43.65086783)}"
-11586,13650,GO-20149006140,THEFT UNDER,2014-08-07T00:00:00,2014,August,Thursday,7,219,15,2014-08-20T00:00:00,2014,August,Wednesday,20,232,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,VENTURA SPORT,RC,16,BLK,750.0,STOLEN,11575,"{'type': 'Point', 'coordinates': (-79.38739744, 43.65571903)}"
-11587,13652,GO-20149006688,THEFT UNDER,2014-09-06T00:00:00,2014,September,Saturday,6,249,15,2014-09-08T00:00:00,2014,September,Monday,8,251,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,,EL,3,BLK,500.0,STOLEN,11576,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-11588,13655,GO-20149006886,THEFT UNDER,2014-09-14T00:00:00,2014,September,Sunday,14,257,9,2014-09-14T00:00:00,2014,September,Sunday,14,257,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SPEEDSTER 30,RC,18,BLK,1350.0,STOLEN,11577,"{'type': 'Point', 'coordinates': (-79.38738577, 43.66051487)}"
-11589,13656,GO-20142909415,THEFT UNDER,2014-09-12T00:00:00,2014,September,Friday,12,255,18,2014-09-14T00:00:00,2014,September,Sunday,14,257,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,TEMPO,RG,21,BLU,300.0,STOLEN,11578,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11590,13657,GO-20142934105,THEFT UNDER,2014-09-06T00:00:00,2014,September,Saturday,6,249,12,2014-09-18T00:00:00,2014,September,Thursday,18,261,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,AGGRESSOR,MT,21,BLK,500.0,STOLEN,11579,"{'type': 'Point', 'coordinates': (-79.38103127, 43.65056603)}"
-11591,13661,GO-20143004068,THEFT UNDER,2014-09-26T00:00:00,2014,September,Friday,26,269,19,2014-09-28T00:00:00,2014,September,Sunday,28,271,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NAKAMURA,PHENOM 4.0,MT,21,GRY,300.0,STOLEN,11580,"{'type': 'Point', 'coordinates': (-79.38485374000001, 43.65851077)}"
-11592,15650,GO-20199023056,THEFT UNDER,2019-07-20T00:00:00,2019,July,Saturday,20,201,15,2019-07-20T00:00:00,2019,July,Saturday,20,201,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,21,BLK,150.0,STOLEN,11581,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-11593,15652,GO-20199023130,THEFT UNDER,2019-07-14T00:00:00,2019,July,Sunday,14,195,21,2019-07-21T00:00:00,2019,July,Sunday,21,202,17,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,GI,TALON 3,MT,24,,800.0,STOLEN,11582,"{'type': 'Point', 'coordinates': (-79.38740686, 43.66497543)}"
-11594,15657,GO-20199023840,THEFT UNDER,2019-07-26T00:00:00,2019,July,Friday,26,207,8,2019-07-26T00:00:00,2019,July,Friday,26,207,10,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,FEATHER,OT,1,BLK,725.0,STOLEN,11583,"{'type': 'Point', 'coordinates': (-79.38077050000001, 43.64989242)}"
-11595,15661,GO-20199024535,THEFT UNDER,2019-07-31T00:00:00,2019,July,Wednesday,31,212,14,2019-07-31T00:00:00,2019,July,Wednesday,31,212,16,D52,Toronto,76,Bay Street Corridor (76),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,UK,,RG,8,WHI,300.0,STOLEN,11584,"{'type': 'Point', 'coordinates': (-79.38188491, 43.65866815)}"
-11596,15679,GO-20199027579,THEFT UNDER,2019-08-24T00:00:00,2019,August,Saturday,24,236,21,2019-08-25T00:00:00,2019,August,Sunday,25,237,1,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,18,BLU,120.0,STOLEN,11585,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-11597,15683,GO-20199028271,THEFT UNDER,2019-08-29T00:00:00,2019,August,Thursday,29,241,9,2019-08-30T00:00:00,2019,August,Friday,30,242,15,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,UK,,OT,10,,500.0,STOLEN,11586,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-11598,15692,GO-20191706527,THEFT UNDER,2019-09-04T00:00:00,2019,September,Wednesday,4,247,19,2019-09-06T00:00:00,2019,September,Friday,6,249,11,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,FUJI,,RG,21,BLKBLU,500.0,STOLEN,11587,"{'type': 'Point', 'coordinates': (-79.38485374000001, 43.65851077)}"
-11599,15696,GO-20199029684,THEFT UNDER,2019-09-10T00:00:00,2019,September,Tuesday,10,253,9,2019-09-11T00:00:00,2019,September,Wednesday,11,254,22,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,,RG,6,WHI,300.0,STOLEN,11588,"{'type': 'Point', 'coordinates': (-79.37878196, 43.64896093)}"
-11600,15699,GO-20199029799,THEFT UNDER,2019-09-09T00:00:00,2019,September,Monday,9,252,11,2019-09-12T00:00:00,2019,September,Thursday,12,255,17,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,MA,NORTHWOODS,MT,18,BLK,800.0,STOLEN,11589,"{'type': 'Point', 'coordinates': (-79.37968936, 43.64733439)}"
-11601,15701,GO-20199030082,THEFT UNDER,2019-09-15T00:00:00,2019,September,Sunday,15,258,13,2019-09-15T00:00:00,2019,September,Sunday,15,258,13,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,FJ,SARATOGA,TO,18,GRN,0.0,STOLEN,11590,"{'type': 'Point', 'coordinates': (-79.38298971, 43.64660463)}"
-11602,15703,GO-20199030417,THEFT UNDER,2019-09-17T00:00:00,2019,September,Tuesday,17,260,17,2019-09-17T00:00:00,2019,September,Tuesday,17,260,18,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,,OT,21,GRY,650.0,STOLEN,11591,"{'type': 'Point', 'coordinates': (-79.37968936, 43.64733439)}"
-11603,15709,GO-20199031231,THEFT UNDER,2019-09-14T00:00:00,2019,September,Saturday,14,257,0,2019-09-23T00:00:00,2019,September,Monday,23,266,17,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,DIVERGE,RC,18,BLK,1337.0,STOLEN,11592,"{'type': 'Point', 'coordinates': (-79.39038732, 43.66791603)}"
-11604,15710,GO-20199031231,THEFT UNDER,2019-09-14T00:00:00,2019,September,Saturday,14,257,0,2019-09-23T00:00:00,2019,September,Monday,23,266,17,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,CROSSRIP,RC,21,BLK,2365.0,STOLEN,11593,"{'type': 'Point', 'coordinates': (-79.39038732, 43.66791603)}"
-11605,15716,GO-20199033026,THEFT UNDER,2019-10-05T00:00:00,2019,October,Saturday,5,278,21,2019-10-07T00:00:00,2019,October,Monday,7,280,22,D52,Toronto,76,Bay Street Corridor (76),Bar / Restaurant,Commercial,CC,,OT,5,RED,350.0,STOLEN,11594,"{'type': 'Point', 'coordinates': (-79.37968936, 43.64733439)}"
-11606,15722,GO-20199035040,THEFT UNDER,2019-10-24T00:00:00,2019,October,Thursday,24,297,9,2019-10-24T00:00:00,2019,October,Thursday,24,297,12,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,RM,FUSION 29,MT,27,WHI,1200.0,STOLEN,11595,"{'type': 'Point', 'coordinates': (-79.38353872, 43.64792395)}"
-11607,15724,GO-20192068724,ASSAULT PEACE OFFICER,2019-10-26T00:00:00,2019,October,Saturday,26,299,15,2019-10-26T00:00:00,2019,October,Saturday,26,299,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,VFR4,RG,0,BLK,,UNKNOWN,11596,"{'type': 'Point', 'coordinates': (-79.38374902, 43.66302137000001)}"
-11608,15743,GO-20209008630,THEFT UNDER,2020-03-04T00:00:00,2020,March,Wednesday,4,64,20,2020-03-11T00:00:00,2020,March,Wednesday,11,71,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,HELSINKI,RG,14,BLK,700.0,STOLEN,11597,"{'type': 'Point', 'coordinates': (-79.38768427, 43.66564487000001)}"
-11609,15746,GO-20209010325,THEFT UNDER,2020-04-02T00:00:00,2020,April,Thursday,2,93,9,2020-04-02T00:00:00,2020,April,Thursday,2,93,10,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,XC29,MT,21,BLK,480.0,STOLEN,11598,"{'type': 'Point', 'coordinates': (-79.38077050000001, 43.64989242)}"
-11610,15748,GO-2020732774,THEFT UNDER,2020-03-29T00:00:00,2020,March,Sunday,29,89,1,2020-04-17T00:00:00,2020,April,Friday,17,108,16,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPARK,,EL,1,WHI,1900.0,STOLEN,11599,"{'type': 'Point', 'coordinates': (-79.38260155, 43.6529703)}"
-11611,15753,GO-20209012170,THEFT UNDER,2020-04-29T00:00:00,2020,April,Wednesday,29,120,8,2020-04-29T00:00:00,2020,April,Wednesday,29,120,18,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RG,21,,200.0,STOLEN,11600,"{'type': 'Point', 'coordinates': (-79.37968936, 43.64733439)}"
-11612,15758,GO-20209013090,THEFT UNDER,2020-05-13T00:00:00,2020,May,Wednesday,13,134,23,2020-05-13T00:00:00,2020,May,Wednesday,13,134,23,D52,Toronto,76,Bay Street Corridor (76),Convenience Stores,Commercial,SU,,RG,7,BLK,200.0,STOLEN,11601,"{'type': 'Point', 'coordinates': (-79.38768427, 43.66564487000001)}"
-11613,15763,GO-20209013803,THEFT UNDER,2020-05-24T00:00:00,2020,May,Sunday,24,145,10,2020-05-24T00:00:00,2020,May,Sunday,24,145,13,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,ROCKHOPPER,MT,29,GRY,1500.0,STOLEN,11602,"{'type': 'Point', 'coordinates': (-79.37878196, 43.64896093)}"
-11614,15767,GO-2020988849,THEFT OF EBIKE UNDER $5000,2020-04-18T00:00:00,2020,April,Saturday,18,109,14,2020-05-29T00:00:00,2020,May,Friday,29,150,8,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NCM,MOSCO,EL,0,BLKBLU,1700.0,STOLEN,11603,"{'type': 'Point', 'coordinates': (-79.38260155, 43.6529703)}"
-11615,15770,GO-20201023673,THEFT OF EBIKE UNDER $5000,2020-06-03T00:00:00,2020,June,Wednesday,3,155,18,2020-06-03T00:00:00,2020,June,Wednesday,3,155,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,AMEGO,,EL,0,GRY,2500.0,STOLEN,11604,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-11616,15777,GO-20209015390,THEFT UNDER,2020-06-06T00:00:00,2020,June,Saturday,6,158,12,2020-06-15T00:00:00,2020,June,Monday,15,167,12,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,CA,QUICK CX 4,RG,18,GRY,750.0,STOLEN,11605,"{'type': 'Point', 'coordinates': (-79.38236226, 43.65027737)}"
-11617,15784,GO-20209016198,THEFT UNDER,2020-06-25T00:00:00,2020,June,Thursday,25,177,9,2020-06-25T00:00:00,2020,June,Thursday,25,177,23,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,UNKNOWN,BM,3,BLU,0.0,STOLEN,11606,"{'type': 'Point', 'coordinates': (-79.3802391, 43.64865033)}"
-11618,15785,GO-20201164979,THEFT UNDER - BICYCLE,2020-06-24T00:00:00,2020,June,Wednesday,24,176,11,2020-06-24T00:00:00,2020,June,Wednesday,24,176,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,JAMIS,DAKAR XC 650B,MT,9,,1800.0,STOLEN,11607,"{'type': 'Point', 'coordinates': (-79.3802391, 43.64865033)}"
-11619,15788,GO-20201191217,THEFT UNDER,2020-06-28T00:00:00,2020,June,Sunday,28,180,13,2020-06-28T00:00:00,2020,June,Sunday,28,180,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,CCM DIMMER,MT,21,GRY,700.0,STOLEN,11608,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-11620,15791,GO-20209017217,THEFT UNDER,2020-07-09T00:00:00,2020,July,Thursday,9,191,14,2020-07-09T00:00:00,2020,July,Thursday,9,191,22,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,PS2,RC,22,GRY,700.0,STOLEN,11609,"{'type': 'Point', 'coordinates': (-79.38584448, 43.65698887)}"
-11621,15797,GO-20201392396,THEFT UNDER,2020-07-26T00:00:00,2020,July,Sunday,26,208,17,2020-07-26T00:00:00,2020,July,Sunday,26,208,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,EL,1,PNK,,STOLEN,11610,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-11622,15802,GO-20201452923,THEFT UNDER - BICYCLE,2020-08-04T00:00:00,2020,August,Tuesday,4,217,8,2020-08-04T00:00:00,2020,August,Tuesday,4,217,13,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,FELT,FR60,RG,12,DBL,800.0,STOLEN,11611,"{'type': 'Point', 'coordinates': (-79.38437564, 43.65730783)}"
-11623,15803,GO-20209019647,THEFT UNDER,2020-08-07T00:00:00,2020,August,Friday,7,220,12,2020-08-07T00:00:00,2020,August,Friday,7,220,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,VFR-1,RG,24,BLU,700.0,STOLEN,11612,"{'type': 'Point', 'coordinates': (-79.38353872, 43.64792395)}"
-11624,16311,GO-20199002349,THEFT UNDER - BICYCLE,2019-01-17T00:00:00,2019,January,Thursday,17,17,18,2019-01-17T00:00:00,2019,January,Thursday,17,17,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,OT,21,RED,70.0,STOLEN,11613,"{'type': 'Point', 'coordinates': (-79.38467283, 43.65807476)}"
-11625,12089,GO-20169008747,THEFT UNDER - BICYCLE,2016-08-12T00:00:00,2016,August,Friday,12,225,17,2016-08-14T00:00:00,2016,August,Sunday,14,227,17,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RA,RALEIGH REDUX 1,OT,8,BLK,900.0,STOLEN,11614,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-11626,19428,GO-20179011254,THEFT UNDER,2017-07-28T00:00:00,2017,July,Friday,28,209,15,2017-07-28T00:00:00,2017,July,Friday,28,209,17,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,GI,LIV ACTIVE ALIG,RG,21,TRQ,500.0,STOLEN,11615,"{'type': 'Point', 'coordinates': (-79.38771667, 43.66119164)}"
-11627,16313,GO-2019609659,THEFT UNDER - BICYCLE,2019-04-04T00:00:00,2019,April,Thursday,4,94,20,2019-04-06T00:00:00,2019,April,Saturday,6,96,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,F75X,OT,10,WHI,2000.0,STOLEN,11616,"{'type': 'Point', 'coordinates': (-79.38243116, 43.64529171000001)}"
-11628,19429,GO-20179011663,THEFT UNDER - BICYCLE,2017-08-03T00:00:00,2017,August,Thursday,3,215,12,2017-08-03T00:00:00,2017,August,Thursday,3,215,15,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,HYBRID,OT,21,,900.0,STOLEN,11617,"{'type': 'Point', 'coordinates': (-79.39045505, 43.65985872)}"
-11629,19433,GO-20179012798,THEFT UNDER,2017-07-30T00:00:00,2017,July,Sunday,30,211,22,2017-08-19T00:00:00,2017,August,Saturday,19,231,9,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,,MT,21,,600.0,STOLEN,11618,"{'type': 'Point', 'coordinates': (-79.38740686, 43.66497543)}"
-11630,19436,GO-20179013439,THEFT UNDER,2017-08-26T00:00:00,2017,August,Saturday,26,238,18,2017-08-27T00:00:00,2017,August,Sunday,27,239,0,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,700C GTX 2,RG,21,RED,550.0,STOLEN,11619,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11631,19442,GO-20179015776,THEFT UNDER - BICYCLE,2017-09-26T00:00:00,2017,September,Tuesday,26,269,2,2017-09-26T00:00:00,2017,September,Tuesday,26,269,4,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,R300,OT,18,YEL,300.0,STOLEN,11620,"{'type': 'Point', 'coordinates': (-79.38485374000001, 43.65851077)}"
-11632,19446,GO-20179016520,THEFT UNDER - BICYCLE,2017-10-04T00:00:00,2017,October,Wednesday,4,277,9,2017-10-05T00:00:00,2017,October,Thursday,5,278,13,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,MA,MENS HYBRID,MT,18,BLK,1000.0,STOLEN,11621,"{'type': 'Point', 'coordinates': (-79.38209114, 43.64961443)}"
-11633,19450,GO-20179017563,THEFT UNDER - BICYCLE,2017-10-19T00:00:00,2017,October,Thursday,19,292,11,2017-10-19T00:00:00,2017,October,Thursday,19,292,21,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,BRODIE BOLT 56/,RG,7,BLK,600.0,STOLEN,11622,"{'type': 'Point', 'coordinates': (-79.39060913000002, 43.66358401)}"
-11634,19462,GO-20179019842,THEFT UNDER,2017-11-16T00:00:00,2017,November,Thursday,16,320,23,2017-11-16T00:00:00,2017,November,Thursday,16,320,23,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,PE,,RC,12,RED,600.0,STOLEN,11631,"{'type': 'Point', 'coordinates': (-79.38581514, 43.66081576)}"
-11635,19453,GO-20179017956,THEFT UNDER - BICYCLE,2017-10-15T00:00:00,2017,October,Sunday,15,288,14,2017-10-23T00:00:00,2017,October,Monday,23,296,13,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RG,1,BLK,537.0,STOLEN,11623,"{'type': 'Point', 'coordinates': (-79.38407058, 43.649187680000004)}"
-11636,19454,GO-20171914462,THEFT UNDER - BICYCLE,2017-10-22T00:00:00,2017,October,Sunday,22,295,18,2017-10-22T00:00:00,2017,October,Sunday,22,295,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MARIN OR MARINO,,RC,11,BLKWHI,2000.0,STOLEN,11624,"{'type': 'Point', 'coordinates': (-79.38687123, 43.6623556)}"
-11637,19455,GO-20179018301,THEFT UNDER - BICYCLE,2017-10-19T00:00:00,2017,October,Thursday,19,292,9,2017-10-27T00:00:00,2017,October,Friday,27,300,9,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,FX 2,RG,24,BLK,600.0,STOLEN,11625,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-11638,19456,GO-20179018398,THEFT UNDER - BICYCLE,2017-10-22T00:00:00,2017,October,Sunday,22,295,15,2017-10-28T00:00:00,2017,October,Saturday,28,301,13,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,OT,DURANGO 1 FEMME,MT,24,LBL,850.0,STOLEN,11626,"{'type': 'Point', 'coordinates': (-79.38946225, 43.66523161)}"
-11639,19458,GO-20179018704,THEFT UNDER - BICYCLE,2017-10-31T00:00:00,2017,October,Tuesday,31,304,19,2017-11-01T00:00:00,2017,November,Wednesday,1,305,19,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,CR,CROSSFIRE,RG,21,WHI,400.0,STOLEN,11627,"{'type': 'Point', 'coordinates': (-79.38596803, 43.65904449)}"
-11640,19459,GO-20179019149,THEFT UNDER,2017-11-06T00:00:00,2017,November,Monday,6,310,19,2017-11-08T00:00:00,2017,November,Wednesday,8,312,8,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM 1,MT,30,WHI,1000.0,STOLEN,11628,"{'type': 'Point', 'coordinates': (-79.3861386, 43.66649311)}"
-11641,19460,GO-20179019149,THEFT UNDER,2017-11-06T00:00:00,2017,November,Monday,6,310,19,2017-11-08T00:00:00,2017,November,Wednesday,8,312,8,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,18,BRN,100.0,STOLEN,11629,"{'type': 'Point', 'coordinates': (-79.3861386, 43.66649311)}"
-11642,19461,GO-20172055605,B&E,2017-11-08T00:00:00,2017,November,Wednesday,8,312,10,2017-11-14T00:00:00,2017,November,Tuesday,14,318,14,D52,Toronto,76,Bay Street Corridor (76),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,,MT,21,RED,612.0,STOLEN,11630,"{'type': 'Point', 'coordinates': (-79.38581514, 43.66081576)}"
-11643,19463,GO-20179020767,THEFT UNDER - BICYCLE,2017-11-11T00:00:00,2017,November,Saturday,11,315,23,2017-11-28T00:00:00,2017,November,Tuesday,28,332,12,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,RA,,RG,10,WHI,500.0,STOLEN,11632,"{'type': 'Point', 'coordinates': (-79.38596803, 43.65904449)}"
-11644,19464,GO-20179020887,THEFT UNDER - BICYCLE,2017-11-29T00:00:00,2017,November,Wednesday,29,333,13,2017-11-29T00:00:00,2017,November,Wednesday,29,333,23,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RG,24,BLU,1000.0,STOLEN,11633,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-11645,19465,GO-20179021421,THEFT UNDER - BICYCLE,2017-10-22T00:00:00,2017,October,Sunday,22,295,11,2017-12-06T00:00:00,2017,December,Wednesday,6,340,9,D52,Toronto,76,Bay Street Corridor (76),"Police / Courts (Parole Board, Probation Office)",Other,UK,ROCKHOPPER,MT,21,BLU,1000.0,STOLEN,11634,"{'type': 'Point', 'coordinates': (-79.38167842, 43.65189355)}"
-11646,19471,GO-2018423687,THEFT OF EBIKE UNDER $5000,2018-03-07T00:00:00,2018,March,Wednesday,7,66,14,2018-03-07T00:00:00,2018,March,Wednesday,7,66,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,UNK,EL,1,MRN,3000.0,STOLEN,11635,"{'type': 'Point', 'coordinates': (-79.38411783, 43.66390399)}"
-11647,19473,GO-20189009421,THEFT UNDER,2018-03-24T00:00:00,2018,March,Saturday,24,83,14,2018-03-25T00:00:00,2018,March,Sunday,25,84,17,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,KSYRIUM EQUIPE,OT,1,BLK,309.0,STOLEN,11636,"{'type': 'Point', 'coordinates': (-79.38771667, 43.66119164)}"
-11648,19475,GO-2018560255,THEFT UNDER,2018-03-28T00:00:00,2018,March,Wednesday,28,87,14,2018-03-28T00:00:00,2018,March,Wednesday,28,87,16,D52,Toronto,76,Bay Street Corridor (76),"Open Areas (Lakes, Parks, Rivers)",Outside,CINELLI,CARBON FIBRE,MT,1,GRY,2000.0,STOLEN,11637,"{'type': 'Point', 'coordinates': (-79.39098691, 43.66935825)}"
-11649,19476,GO-2018633175,THEFT UNDER - BICYCLE,2018-04-02T00:00:00,2018,April,Monday,2,92,9,2018-04-09T00:00:00,2018,April,Monday,9,99,8,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,UNKNOWN MAKE,,OT,0,,300.0,STOLEN,11638,"{'type': 'Point', 'coordinates': (-79.38737611, 43.66847728)}"
-11650,19516,GO-20189023315,THEFT UNDER - BICYCLE,2018-07-20T00:00:00,2018,July,Friday,20,201,18,2018-07-21T00:00:00,2018,July,Saturday,21,202,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,STERLING,RG,8,SIL,800.0,STOLEN,11654,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-11651,19480,GO-20189012688,THEFT UNDER - BICYCLE,2018-04-23T00:00:00,2018,April,Monday,23,113,9,2018-04-24T00:00:00,2018,April,Tuesday,24,114,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,WOMEN'S UPRIGHT,RG,10,GRY,0.0,STOLEN,11639,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11652,19481,GO-20189013777,THEFT UNDER,2018-05-03T00:00:00,2018,May,Thursday,3,123,23,2018-05-04T00:00:00,2018,May,Friday,4,124,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,YUKON XL,MT,10,SIL,50.0,STOLEN,11640,"{'type': 'Point', 'coordinates': (-79.38737611, 43.66847728)}"
-11653,19482,GO-20189014630,THEFT UNDER - BICYCLE,2018-05-11T00:00:00,2018,May,Friday,11,131,17,2018-05-12T00:00:00,2018,May,Saturday,12,132,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RC,22,SIL,2500.0,STOLEN,11641,"{'type': 'Point', 'coordinates': (-79.38487134, 43.64619564)}"
-11654,19484,GO-2018858360,THEFT UNDER - BICYCLE,2018-05-12T00:00:00,2018,May,Saturday,12,132,15,2018-05-12T00:00:00,2018,May,Saturday,12,132,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,MENS,RG,0,BLU,350.0,STOLEN,11642,"{'type': 'Point', 'coordinates': (-79.38154682, 43.65790792)}"
-11655,19485,GO-20189015721,THEFT UNDER - BICYCLE,2018-05-21T00:00:00,2018,May,Monday,21,141,12,2018-05-22T00:00:00,2018,May,Tuesday,22,142,1,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CC,SAVAGE 27.5 INC,MT,21,GRY,203.0,STOLEN,11643,"{'type': 'Point', 'coordinates': (-79.38124592, 43.65320661)}"
-11656,19488,GO-20189016130,THEFT UNDER - BICYCLE,2018-05-19T00:00:00,2018,May,Saturday,19,139,20,2018-05-24T00:00:00,2018,May,Thursday,24,144,20,D52,Toronto,76,Bay Street Corridor (76),Unknown,Other,TR,,RG,21,,600.0,STOLEN,11644,"{'type': 'Point', 'coordinates': (-79.39098691, 43.66935825)}"
-11657,19490,GO-20189016257,THEFT UNDER - BICYCLE,2018-05-25T00:00:00,2018,May,Friday,25,145,16,2018-05-25T00:00:00,2018,May,Friday,25,145,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,FX3,RG,27,WHI,1000.0,RECOVERED,11645,"{'type': 'Point', 'coordinates': (-79.39219449, 43.66603246)}"
-11658,19492,GO-2018990052,THEFT UNDER,2018-05-29T00:00:00,2018,May,Tuesday,29,149,22,2018-06-01T00:00:00,2018,June,Friday,1,152,11,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,EMMO,,OT,0,REDBLK,2000.0,STOLEN,11646,"{'type': 'Point', 'coordinates': (-79.38702746, 43.66853925)}"
-11659,19496,GO-20189017778,THEFT UNDER,2018-06-01T00:00:00,2018,June,Friday,1,152,11,2018-06-07T00:00:00,2018,June,Thursday,7,158,16,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,CAMPUS 101,OT,3,DBL,500.0,STOLEN,11647,"{'type': 'Point', 'coordinates': (-79.38374902, 43.66302137000001)}"
-11660,19500,GO-20181113597,THEFT UNDER - BICYCLE,2018-06-14T00:00:00,2018,June,Thursday,14,165,8,2018-06-19T00:00:00,2018,June,Tuesday,19,170,11,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,CRD 2,RC,10,BLKGRN,500.0,STOLEN,11648,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11661,19501,GO-20181151766,THEFT UNDER - BICYCLE,2018-06-25T00:00:00,2018,June,Monday,25,176,0,2018-06-25T00:00:00,2018,June,Monday,25,176,0,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,OT,0,,,STOLEN,11649,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-11662,19506,GO-20189020394,THEFT UNDER - BICYCLE,2018-06-15T00:00:00,2018,June,Friday,15,166,6,2018-06-26T00:00:00,2018,June,Tuesday,26,177,21,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,GI,2016 TCX 2,RC,20,WHI,1700.0,STOLEN,11650,"{'type': 'Point', 'coordinates': (-79.38596803, 43.65904449)}"
-11663,19508,GO-20189022123,THEFT UNDER - BICYCLE,2018-07-11T00:00:00,2018,July,Wednesday,11,192,19,2018-07-12T00:00:00,2018,July,Thursday,12,193,1,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,IN,TELLURIDE,MT,21,BLU,80.0,STOLEN,11651,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11664,19509,GO-20189022123,THEFT UNDER - BICYCLE,2018-07-11T00:00:00,2018,July,Wednesday,11,192,19,2018-07-12T00:00:00,2018,July,Thursday,12,193,1,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,WAHOO,MT,18,GRY,250.0,STOLEN,11652,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11665,19515,GO-20189023255,THEFT UNDER,2018-07-20T00:00:00,2018,July,Friday,20,201,8,2018-07-20T00:00:00,2018,July,Friday,20,201,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,MATTE BLACK,RG,1,BLK,500.0,STOLEN,11653,"{'type': 'Point', 'coordinates': (-79.38476701, 43.64766165)}"
-11666,3004,GO-20181385264,THEFT UNDER - BICYCLE,2018-07-29T00:00:00,2018,July,Sunday,29,210,5,2018-07-29T00:00:00,2018,July,Sunday,29,210,5,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,NORCO,,RG,21,BLK,750.0,STOLEN,21712,"{'type': 'Point', 'coordinates': (-79.40600258, 43.67218781)}"
-11667,19519,GO-20189023918,THEFT UNDER - BICYCLE,2018-07-25T00:00:00,2018,July,Wednesday,25,206,8,2018-07-25T00:00:00,2018,July,Wednesday,25,206,19,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,GI,,TO,3,CRM,600.0,STOLEN,11655,"{'type': 'Point', 'coordinates': (-79.38209114, 43.64961443)}"
-11668,19522,GO-20189024573,THEFT UNDER - BICYCLE,2018-07-21T00:00:00,2018,July,Saturday,21,202,22,2018-07-30T00:00:00,2018,July,Monday,30,211,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ROAM 2,OT,27,GRY,756.0,STOLEN,11656,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-11669,19523,GO-20189024849,THEFT UNDER - BICYCLE,2018-08-01T00:00:00,2018,August,Wednesday,1,213,21,2018-08-02T00:00:00,2018,August,Thursday,2,214,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,MARLIN (GARY FI,MT,24,BLK,600.0,STOLEN,11657,"{'type': 'Point', 'coordinates': (-79.39054537, 43.66944743)}"
-11670,19527,GO-20181485710,ROBBERY - OTHER,2018-08-12T00:00:00,2018,August,Sunday,12,224,18,2018-08-12T00:00:00,2018,August,Sunday,12,224,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CERVELO,PRODIGY,TO,15,WHI,2500.0,STOLEN,11658,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11671,19529,GO-20189026599,THEFT UNDER - BICYCLE,2018-08-15T00:00:00,2018,August,Wednesday,15,227,7,2018-08-16T00:00:00,2018,August,Thursday,16,228,9,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,VFR4,RG,24,PLE,400.0,STOLEN,11659,"{'type': 'Point', 'coordinates': (-79.38077050000001, 43.64989242)}"
-11672,19530,GO-20189026730,THEFT UNDER - BICYCLE,2018-08-16T00:00:00,2018,August,Thursday,16,228,16,2018-08-16T00:00:00,2018,August,Thursday,16,228,23,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,,,RG,18,WHI,299.0,STOLEN,11660,"{'type': 'Point', 'coordinates': (-79.38892782, 43.65634783)}"
-11673,19533,GO-20189027190,THEFT UNDER - BICYCLE,2018-08-20T00:00:00,2018,August,Monday,20,232,9,2018-08-20T00:00:00,2018,August,Monday,20,232,18,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,CC,,MT,1,BLK,375.0,STOLEN,11661,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-11674,19548,GO-20189030853,THEFT UNDER - BICYCLE,2018-09-17T00:00:00,2018,September,Monday,17,260,8,2018-09-17T00:00:00,2018,September,Monday,17,260,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,DIADORA MODENA,RG,21,BLK,500.0,STOLEN,11670,"{'type': 'Point', 'coordinates': (-79.3802391, 43.64865033)}"
-11675,19536,GO-20189028510,THEFT UNDER - BICYCLE,2018-08-23T00:00:00,2018,August,Thursday,23,235,8,2018-08-29T00:00:00,2018,August,Wednesday,29,241,22,D52,Toronto,76,Bay Street Corridor (76),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,TR,,RG,12,BLK,500.0,STOLEN,11662,"{'type': 'Point', 'coordinates': (-79.38262593, 43.65086783)}"
-11676,19537,GO-20181610855,THEFT UNDER - BICYCLE,2018-08-22T00:00:00,2018,August,Wednesday,22,234,21,2018-08-31T00:00:00,2018,August,Friday,31,243,9,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,EMMO,ZONE,EL,0,REDBLK,4000.0,STOLEN,11663,"{'type': 'Point', 'coordinates': (-79.38601979, 43.65524051)}"
-11677,19540,GO-20189029345,THEFT UNDER - BICYCLE,2018-09-05T00:00:00,2018,September,Wednesday,5,248,9,2018-09-06T00:00:00,2018,September,Thursday,6,249,15,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,SPACELINER,OT,1,BLU,700.0,STOLEN,11664,"{'type': 'Point', 'coordinates': (-79.38238489, 43.65176074)}"
-11678,19543,GO-20189029627,THEFT UNDER - BICYCLE,2018-09-08T00:00:00,2018,September,Saturday,8,251,11,2018-09-08T00:00:00,2018,September,Saturday,8,251,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,MT,21,BLK,500.0,STOLEN,11665,"{'type': 'Point', 'coordinates': (-79.38124592, 43.65320661)}"
-11679,19544,GO-20189029627,THEFT UNDER - BICYCLE,2018-09-08T00:00:00,2018,September,Saturday,8,251,11,2018-09-08T00:00:00,2018,September,Saturday,8,251,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE,OT,21,BLK,700.0,STOLEN,11666,"{'type': 'Point', 'coordinates': (-79.38124592, 43.65320661)}"
-11680,19545,GO-20189029727,THEFT UNDER - BICYCLE,2018-09-07T00:00:00,2018,September,Friday,7,250,18,2018-09-09T00:00:00,2018,September,Sunday,9,252,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,27,LBL,1328.0,STOLEN,11667,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11681,19546,GO-20189030259,THEFT UNDER - BICYCLE,2018-09-09T00:00:00,2018,September,Sunday,9,252,17,2018-09-13T00:00:00,2018,September,Thursday,13,256,13,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,URBAN TRACK BIK,OT,1,BLK,500.0,STOLEN,11668,"{'type': 'Point', 'coordinates': (-79.38714344, 43.66436762)}"
-11682,19547,GO-20189030338,THEFT UNDER - BICYCLE,2018-09-13T00:00:00,2018,September,Thursday,13,256,18,2018-09-13T00:00:00,2018,September,Thursday,13,256,23,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,10,GRY,0.0,STOLEN,11669,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-11683,19550,GO-20189031003,THEFT UNDER,2018-09-18T00:00:00,2018,September,Tuesday,18,261,13,2018-09-18T00:00:00,2018,September,Tuesday,18,261,17,D52,Toronto,76,Bay Street Corridor (76),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,OT,FLEX,EL,25,BLK,1200.0,STOLEN,11671,"{'type': 'Point', 'coordinates': (-79.38262593, 43.65086783)}"
-11684,19553,GO-20189031614,THEFT UNDER,2018-09-22T00:00:00,2018,September,Saturday,22,265,22,2018-09-23T00:00:00,2018,September,Sunday,23,266,13,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RA,,RG,16,GRY,350.0,STOLEN,11672,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-11685,19554,GO-20189031821,THEFT UNDER - BICYCLE,2018-09-21T00:00:00,2018,September,Friday,21,264,16,2018-09-25T00:00:00,2018,September,Tuesday,25,268,11,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,RA,,MT,8,BLU,0.0,STOLEN,11673,"{'type': 'Point', 'coordinates': (-79.38738577, 43.66051487)}"
-11686,19557,GO-20189032550,THEFT UNDER,2018-10-01T00:00:00,2018,October,Monday,1,274,8,2018-10-01T00:00:00,2018,October,Monday,1,274,15,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,CC,700C VECTOR,MT,21,LBL,310.0,STOLEN,11674,"{'type': 'Point', 'coordinates': (-79.38820648, 43.66681234)}"
-11687,19559,GO-20189034110,THEFT UNDER - BICYCLE,2018-10-12T00:00:00,2018,October,Friday,12,285,10,2018-10-15T00:00:00,2018,October,Monday,15,288,9,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,7.2 FX,RG,21,SIL,450.0,STOLEN,11675,"{'type': 'Point', 'coordinates': (-79.38124592, 43.65320661)}"
-11688,19560,GO-20189034110,THEFT UNDER - BICYCLE,2018-10-12T00:00:00,2018,October,Friday,12,285,10,2018-10-15T00:00:00,2018,October,Monday,15,288,9,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,TO,2,SIL,450.0,STOLEN,11676,"{'type': 'Point', 'coordinates': (-79.38124592, 43.65320661)}"
-11689,19561,GO-20181917996,THEFT OF EBIKE UNDER $5000,2018-10-17T00:00:00,2018,October,Wednesday,17,290,8,2018-10-17T00:00:00,2018,October,Wednesday,17,290,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,VALETTA,EL,0,BLK,1700.0,STOLEN,11677,"{'type': 'Point', 'coordinates': (-79.37878196, 43.64896093)}"
-11690,19579,GO-20199014104,THEFT UNDER,2019-05-06T00:00:00,2019,May,Monday,6,126,16,2019-05-06T00:00:00,2019,May,Monday,6,126,17,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,PITCH,MT,8,OTH,900.0,STOLEN,11685,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-11691,19563,GO-20189034907,THEFT UNDER - BICYCLE,2018-10-19T00:00:00,2018,October,Friday,19,292,21,2018-10-21T00:00:00,2018,October,Sunday,21,294,2,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CRUX E5 SPORT A,RC,20,GRY,2000.0,STOLEN,11678,"{'type': 'Point', 'coordinates': (-79.38268555, 43.64598268)}"
-11692,19564,GO-20189035043,THEFT UNDER - BICYCLE,2018-10-21T00:00:00,2018,October,Sunday,21,294,20,2018-10-22T00:00:00,2018,October,Monday,22,295,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MA,LARKSPUR,RG,18,BLK,490.0,STOLEN,11679,"{'type': 'Point', 'coordinates': (-79.38944954, 43.65752945)}"
-11693,19566,GO-20189035803,THEFT UNDER,2018-10-17T00:00:00,2018,October,Wednesday,17,290,20,2018-10-27T00:00:00,2018,October,Saturday,27,300,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SIRRUS,RG,24,WHI,200.0,STOLEN,11680,"{'type': 'Point', 'coordinates': (-79.38605934000002, 43.6615638)}"
-11694,19567,GO-20189035784,THEFT UNDER - BICYCLE,2018-10-26T00:00:00,2018,October,Friday,26,299,15,2018-10-27T00:00:00,2018,October,Saturday,27,300,0,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,19 LOFT 7D,RG,7,GRN,678.0,STOLEN,11681,"{'type': 'Point', 'coordinates': (-79.38238489, 43.65176074)}"
-11695,19572,GO-20189043877,THEFT UNDER - BICYCLE,2018-12-31T00:00:00,2018,December,Monday,31,365,13,2018-12-31T00:00:00,2018,December,Monday,31,365,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,QUICK 8 7SP,MT,6,BLK,586.0,STOLEN,11682,"{'type': 'Point', 'coordinates': (-79.37787874, 43.64914837)}"
-11696,19575,GO-20199003925,THEFT UNDER - BICYCLE,2019-01-15T00:00:00,2019,January,Tuesday,15,15,17,2019-01-29T00:00:00,2019,January,Tuesday,29,29,16,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,GT- RTS-3,MT,21,GRY,700.0,STOLEN,11683,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-11697,19577,GO-20199012716,THEFT UNDER,2019-04-22T00:00:00,2019,April,Monday,22,112,18,2019-04-22T00:00:00,2019,April,Monday,22,112,22,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,1,BLK,250.0,STOLEN,11684,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11698,19580,GO-20199015624,THEFT UNDER,2019-05-17T00:00:00,2019,May,Friday,17,137,20,2019-05-19T00:00:00,2019,May,Sunday,19,139,17,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,SC,,BM,21,BLK,550.0,STOLEN,11686,"{'type': 'Point', 'coordinates': (-79.38605934000002, 43.6615638)}"
-11699,19581,GO-2019962755,B&E,2019-05-25T00:00:00,2019,May,Saturday,25,145,10,2019-05-26T00:00:00,2019,May,Sunday,26,146,18,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,TR,TREK 18 FX3,RG,9,BLK,1032.0,STOLEN,11687,"{'type': 'Point', 'coordinates': (-79.38581514, 43.66081576)}"
-11700,19586,GO-20199019167,THEFT UNDER,2019-06-18T00:00:00,2019,June,Tuesday,18,169,19,2019-06-18T00:00:00,2019,June,Tuesday,18,169,22,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,ESCAPE,RG,21,BLK,500.0,STOLEN,11688,"{'type': 'Point', 'coordinates': (-79.38411783, 43.66390399)}"
-11701,19588,GO-20191118176,THEFT UNDER - BICYCLE,2019-06-14T00:00:00,2019,June,Friday,14,165,23,2019-06-19T00:00:00,2019,June,Wednesday,19,170,8,D52,Toronto,76,Bay Street Corridor (76),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,TREK,720,OT,21,BLU,300.0,STOLEN,11689,"{'type': 'Point', 'coordinates': (-79.38262593, 43.65086783)}"
-11702,19591,GO-20209024788,THEFT UNDER,2020-09-27T00:00:00,2020,September,Sunday,27,271,20,2020-09-28T00:00:00,2020,September,Monday,28,272,14,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,NO,,MT,10,BLU,700.0,STOLEN,11690,"{'type': 'Point', 'coordinates': (-79.38820648, 43.66681234)}"
-11703,19594,GO-20209025411,THEFT UNDER,2020-10-04T00:00:00,2020,October,Sunday,4,278,13,2020-10-04T00:00:00,2020,October,Sunday,4,278,15,D52,Toronto,76,Bay Street Corridor (76),Bar / Restaurant,Commercial,OT,MAX,SC,30,BLK,1150.0,STOLEN,11691,"{'type': 'Point', 'coordinates': (-79.38671683, 43.66779)}"
-11704,19595,GO-20209025678,THEFT UNDER,2020-10-07T00:00:00,2020,October,Wednesday,7,281,11,2020-10-07T00:00:00,2020,October,Wednesday,7,281,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,ALLEGRO SPORT,TO,18,SIL,500.0,STOLEN,11692,"{'type': 'Point', 'coordinates': (-79.38542161, 43.64752091)}"
-11705,19596,GO-20209025719,THEFT UNDER,2020-10-07T00:00:00,2020,October,Wednesday,7,281,9,2020-10-07T00:00:00,2020,October,Wednesday,7,281,20,D52,Toronto,76,Bay Street Corridor (76),Bar / Restaurant,Commercial,OT,,RG,7,GRY,400.0,STOLEN,11693,"{'type': 'Point', 'coordinates': (-79.38607074, 43.64739453)}"
-11706,19598,GO-20201945087,THEFT UNDER - BICYCLE,2020-10-04T00:00:00,2020,October,Sunday,4,278,13,2020-10-13T00:00:00,2020,October,Tuesday,13,287,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,VINTAGE,RG,1,PNK,2000.0,STOLEN,11694,"{'type': 'Point', 'coordinates': (-79.38605934000002, 43.6615638)}"
-11707,19599,GO-20209026983,THEFT UNDER,2020-10-19T00:00:00,2020,October,Monday,19,293,7,2020-10-19T00:00:00,2020,October,Monday,19,293,17,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,DB,,RG,18,GLD,300.0,STOLEN,11695,"{'type': 'Point', 'coordinates': (-79.37878196, 43.64896093)}"
-11708,19601,GO-20209027135,THEFT UNDER,2020-10-20T00:00:00,2020,October,Tuesday,20,294,0,2020-10-21T00:00:00,2020,October,Wednesday,21,295,0,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,GRADE ALLOY SOR,RC,18,DBL,800.0,STOLEN,11696,"{'type': 'Point', 'coordinates': (-79.38671683, 43.66779)}"
-11709,19780,GO-20149005185,THEFT UNDER,2014-07-20T00:00:00,2014,July,Sunday,20,201,13,2014-07-21T00:00:00,2014,July,Monday,21,202,8,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,REMUS,RG,1,BRN,,STOLEN,11697,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-11710,19781,GO-20149005185,THEFT UNDER,2014-07-20T00:00:00,2014,July,Sunday,20,201,13,2014-07-21T00:00:00,2014,July,Monday,21,202,8,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,5,GRN,,STOLEN,11698,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-11711,19785,GO-20142607499,THEFT UNDER,2014-07-28T00:00:00,2014,July,Monday,28,209,19,2014-07-31T00:00:00,2014,July,Thursday,31,212,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,,RG,21,RED,900.0,STOLEN,11699,"{'type': 'Point', 'coordinates': (-79.3879785, 43.66997438)}"
-11712,19787,GO-20149005834,THEFT UNDER,2014-08-11T00:00:00,2014,August,Monday,11,223,10,2014-08-11T00:00:00,2014,August,Monday,11,223,13,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,RM,RC30L,MT,27,BLK,734.0,STOLEN,11700,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-11713,19789,GO-20149005915,THEFT UNDER,2014-08-10T00:00:00,2014,August,Sunday,10,222,21,2014-08-13T00:00:00,2014,August,Wednesday,13,225,23,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,FJ,2013 ABSOLUTE 1,OT,18,BLK,100.0,STOLEN,11701,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-11714,19791,GO-20149006026,THEFT UNDER,2014-08-16T00:00:00,2014,August,Saturday,16,228,15,2014-08-16T00:00:00,2014,August,Saturday,16,228,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,RG,21,WHI,500.0,STOLEN,11702,"{'type': 'Point', 'coordinates': (-79.38124592, 43.65320661)}"
-11715,19792,GO-20149006026,THEFT UNDER,2014-08-16T00:00:00,2014,August,Saturday,16,228,15,2014-08-16T00:00:00,2014,August,Saturday,16,228,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,IH,,MT,21,DBL,300.0,STOLEN,11703,"{'type': 'Point', 'coordinates': (-79.38124592, 43.65320661)}"
-11716,19796,GO-20149006156,THEFT UNDER,2014-08-20T00:00:00,2014,August,Wednesday,20,232,14,2014-08-20T00:00:00,2014,August,Wednesday,20,232,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,TO,18,PLE,0.0,STOLEN,11704,"{'type': 'Point', 'coordinates': (-79.38482092, 43.65454718)}"
-11717,19800,GO-20149006270,THEFT UNDER,2014-08-23T00:00:00,2014,August,Saturday,23,235,18,2014-08-25T00:00:00,2014,August,Monday,25,237,14,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,,MT,25,BLU,600.0,STOLEN,11705,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-11718,19801,GO-20149006277,THEFT UNDER,2014-08-22T00:00:00,2014,August,Friday,22,234,17,2014-08-25T00:00:00,2014,August,Monday,25,237,10,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,FCR3,RG,21,RED,250.0,STOLEN,11706,"{'type': 'Point', 'coordinates': (-79.38103127, 43.65056603)}"
-11719,19803,GO-20149006459,THEFT UNDER,2014-08-30T00:00:00,2014,August,Saturday,30,242,17,2014-08-31T00:00:00,2014,August,Sunday,31,243,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,2011,OT,20,BLK,750.0,STOLEN,11707,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-11720,19804,GO-20149006470,THEFT UNDER,2014-08-31T00:00:00,2014,August,Sunday,31,243,14,2014-08-31T00:00:00,2014,August,Sunday,31,243,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,SC 26 CRUISER,TO,1,BLK,200.0,STOLEN,11708,"{'type': 'Point', 'coordinates': (-79.38482092, 43.65454718)}"
-11721,19805,GO-20149006575,THEFT UNDER,2014-09-03T00:00:00,2014,September,Wednesday,3,246,21,2014-09-04T00:00:00,2014,September,Thursday,4,247,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,09 GIANT FCR 3,TO,8,BLK,600.0,STOLEN,11709,"{'type': 'Point', 'coordinates': (-79.38485374000001, 43.65851077)}"
-11722,19810,GO-20149006975,THEFT UNDER,2014-06-05T00:00:00,2014,June,Thursday,5,156,9,2014-09-17T00:00:00,2014,September,Wednesday,17,260,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,BAD BOY 9,RG,21,BLK,800.0,STOLEN,11710,"{'type': 'Point', 'coordinates': (-79.38353872, 43.64792395)}"
-11723,19816,GO-20143058219,THEFT UNDER,2014-09-26T00:00:00,2014,September,Friday,26,269,12,2014-10-07T00:00:00,2014,October,Tuesday,7,280,8,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,OTHER,UNKNOWN,OT,1,BLU,200.0,STOLEN,11711,"{'type': 'Point', 'coordinates': (-79.38820648, 43.66681234)}"
-11724,19817,GO-20143072192,THEFT UNDER,2014-10-02T00:00:00,2014,October,Thursday,2,275,16,2014-10-09T00:00:00,2014,October,Thursday,9,282,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,,MT,8,REDWHI,500.0,STOLEN,11712,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11725,19818,GO-20149007657,THEFT UNDER,2014-10-17T00:00:00,2014,October,Friday,17,290,16,2014-10-18T00:00:00,2014,October,Saturday,18,291,1,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,27,BLU,800.0,STOLEN,11713,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-11726,19821,GO-201545643,B&E,2015-01-08T00:00:00,2015,January,Thursday,8,8,11,2015-01-09T00:00:00,2015,January,Friday,9,9,0,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CANNONDALE,QUICK 11,MT,21,,599.0,STOLEN,11714,"{'type': 'Point', 'coordinates': (-79.38820193, 43.66114001)}"
-11727,16314,GO-20199012288,THEFT UNDER,2019-04-17T00:00:00,2019,April,Wednesday,17,107,20,2019-04-18T00:00:00,2019,April,Thursday,18,108,1,D52,Toronto,76,Bay Street Corridor (76),"Religious Facilities (Synagogue, Church, Convent, Mosque)",Other,OT,,RG,10,WHI,0.0,STOLEN,11715,"{'type': 'Point', 'coordinates': (-79.38601979, 43.65524051)}"
-11728,16317,GO-20199014416,THEFT UNDER,2019-05-08T00:00:00,2019,May,Wednesday,8,128,13,2019-05-09T00:00:00,2019,May,Thursday,9,129,9,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,15 YEAR OLD +/-,MT,21,BLK,50.0,STOLEN,11716,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-11729,16322,GO-20199017947,THEFT UNDER,2019-06-07T00:00:00,2019,June,Friday,7,158,19,2019-06-09T00:00:00,2019,June,Sunday,9,160,15,D52,Toronto,76,Bay Street Corridor (76),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,MT,7,ONG,0.0,STOLEN,11717,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-11730,16324,GO-20191065035,THEFT UNDER,2019-05-27T00:00:00,2019,May,Monday,27,147,14,2019-06-09T00:00:00,2019,June,Sunday,9,160,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NEXT,HIGH PEAK,RG,10,WHI,120.0,STOLEN,11718,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-11731,16325,GO-20191126362,THEFT OVER - BICYCLE,2019-06-17T00:00:00,2019,June,Monday,17,168,8,2019-06-19T00:00:00,2019,June,Wednesday,19,170,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CANNONDALE,UNKNOWN,MT,12,BLK,4500.0,STOLEN,11719,"{'type': 'Point', 'coordinates': (-79.38103127, 43.65056603)}"
-11732,16326,GO-20191126362,THEFT OVER - BICYCLE,2019-06-17T00:00:00,2019,June,Monday,17,168,8,2019-06-19T00:00:00,2019,June,Wednesday,19,170,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,UNKNOWN,MT,12,BLK,800.0,STOLEN,11720,"{'type': 'Point', 'coordinates': (-79.38103127, 43.65056603)}"
-11733,16327,GO-20191175469,THEFT UNDER - BICYCLE,2019-06-24T00:00:00,2019,June,Monday,24,175,22,2019-06-24T00:00:00,2019,June,Monday,24,175,23,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NCM,MOSCOW,EL,30,BLKBLU,,STOLEN,11721,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-11734,16329,GO-20199021539,THEFT UNDER,2019-07-08T00:00:00,2019,July,Monday,8,189,16,2019-07-09T00:00:00,2019,July,Tuesday,9,190,0,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,KONA DEW PLUS,RG,24,BLK,550.0,STOLEN,11722,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-11735,16330,GO-20199021539,THEFT UNDER,2019-07-08T00:00:00,2019,July,Monday,8,189,16,2019-07-09T00:00:00,2019,July,Tuesday,9,190,0,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MYKA,MT,21,SIL,400.0,STOLEN,11723,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-11736,16337,GO-20199022821,THEFT UNDER,2019-07-14T00:00:00,2019,July,Sunday,14,195,15,2019-07-18T00:00:00,2019,July,Thursday,18,199,16,D52,Toronto,76,Bay Street Corridor (76),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,RA,CADENT 1,RG,21,DBL,400.0,STOLEN,11724,"{'type': 'Point', 'coordinates': (-79.38262593, 43.65086783)}"
-11737,16338,GO-20199022821,THEFT UNDER,2019-07-14T00:00:00,2019,July,Sunday,14,195,15,2019-07-18T00:00:00,2019,July,Thursday,18,199,16,D52,Toronto,76,Bay Street Corridor (76),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,FJ,CAMBRIDGE,RG,21,BLU,279.0,STOLEN,11725,"{'type': 'Point', 'coordinates': (-79.38262593, 43.65086783)}"
-11738,16438,GO-2020281029,B&E W'INTENT,2020-02-09T00:00:00,2020,February,Sunday,9,40,11,2020-02-09T00:00:00,2020,February,Sunday,9,40,14,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,TREK,7.2 FX,MT,0,BLK,600.0,STOLEN,11750,"{'type': 'Point', 'coordinates': (-79.38714344, 43.66436762)}"
-11739,16343,GO-20199023326,THEFT UNDER,2019-07-22T00:00:00,2019,July,Monday,22,203,22,2019-07-23T00:00:00,2019,July,Tuesday,23,204,0,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,KO,ROVE,RC,10,BLK,999.0,STOLEN,11726,"{'type': 'Point', 'coordinates': (-79.38374902, 43.66302137000001)}"
-11740,16344,GO-20199023449,THEFT UNDER,2019-07-23T00:00:00,2019,July,Tuesday,23,204,9,2019-07-23T00:00:00,2019,July,Tuesday,23,204,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,RG,21,DBL,300.0,STOLEN,11727,"{'type': 'Point', 'coordinates': (-79.38618236, 43.65775862)}"
-11741,16359,GO-20199026547,THEFT UNDER,2019-08-16T00:00:00,2019,August,Friday,16,228,8,2019-08-16T00:00:00,2019,August,Friday,16,228,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,ROAD BIKE,RC,20,BLK,500.0,STOLEN,11728,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-11742,16360,GO-20199026568,THEFT UNDER,2019-08-16T00:00:00,2019,August,Friday,16,228,21,2019-08-17T00:00:00,2019,August,Saturday,17,229,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,2018 DECLARATIO,RC,1,ONG,900.0,STOLEN,11729,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-11743,16362,GO-20199026671,THEFT UNDER,2019-08-17T00:00:00,2019,August,Saturday,17,229,15,2019-08-18T00:00:00,2019,August,Sunday,18,230,0,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,OT,28,BLK,600.0,STOLEN,11730,"{'type': 'Point', 'coordinates': (-79.38737611, 43.66847728)}"
-11744,16367,GO-20199027300,THEFT UNDER,2019-08-22T00:00:00,2019,August,Thursday,22,234,22,2019-08-22T00:00:00,2019,August,Thursday,22,234,23,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,HYBRID,RG,6,,500.0,STOLEN,11731,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-11745,16370,GO-20191687549,THEFT UNDER - BICYCLE,2019-09-03T00:00:00,2019,September,Tuesday,3,246,18,2019-09-05T00:00:00,2019,September,Thursday,5,248,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,P1,MT,7,GRN,700.0,STOLEN,11732,"{'type': 'Point', 'coordinates': (-79.38209114, 43.64961443)}"
-11746,16372,GO-20199029325,THEFT UNDER - BICYCLE,2019-09-10T00:00:00,2019,September,Tuesday,10,253,0,2019-09-10T00:00:00,2019,September,Tuesday,10,253,3,D52,Toronto,76,Bay Street Corridor (76),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,SC,GTX-2,RG,7,BLK,600.0,STOLEN,11733,"{'type': 'Point', 'coordinates': (-79.38188491, 43.65866815)}"
-11747,16374,GO-20199029383,THEFT UNDER,2019-09-09T00:00:00,2019,September,Monday,9,252,22,2019-09-10T00:00:00,2019,September,Tuesday,10,253,0,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,18,BLK,1200.0,STOLEN,11734,"{'type': 'Point', 'coordinates': (-79.38411783, 43.66390399)}"
-11748,16375,GO-20199029770,THEFT UNDER - BICYCLE,2019-09-12T00:00:00,2019,September,Thursday,12,255,15,2019-09-12T00:00:00,2019,September,Thursday,12,255,23,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MASI,OT,1,GRY,700.0,STOLEN,11735,"{'type': 'Point', 'coordinates': (-79.37903365, 43.65028111)}"
-11749,16377,GO-20199029820,THEFT UNDER,2019-09-11T00:00:00,2019,September,Wednesday,11,254,10,2019-09-12T00:00:00,2019,September,Thursday,12,255,19,D52,Toronto,76,Bay Street Corridor (76),Unknown,Other,UK,,RG,15,BLK,1600.0,STOLEN,11736,"{'type': 'Point', 'coordinates': (-79.38316368, 43.65431877)}"
-11750,16384,GO-20199030986,THEFT UNDER,2019-09-21T00:00:00,2019,September,Saturday,21,264,11,2019-09-21T00:00:00,2019,September,Saturday,21,264,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,VERZA 40,OT,24,ONG,650.0,STOLEN,11737,"{'type': 'Point', 'coordinates': (-79.38487134, 43.64619564)}"
-11751,16385,GO-20199031096,THEFT UNDER,2019-09-22T00:00:00,2019,September,Sunday,22,265,17,2019-09-22T00:00:00,2019,September,Sunday,22,265,18,D52,Toronto,76,Bay Street Corridor (76),"Open Areas (Lakes, Parks, Rivers)",Outside,CC,"26"""" STATIC (071",RG,21,WHI,230.0,STOLEN,11738,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11752,16386,GO-20199031417,THEFT UNDER,2019-09-24T00:00:00,2019,September,Tuesday,24,267,22,2019-09-25T00:00:00,2019,September,Wednesday,25,268,1,D52,Toronto,76,Bay Street Corridor (76),Bar / Restaurant,Commercial,UK,BIKE SHERE TORO,RG,3,BLK,1200.0,STOLEN,11739,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-11753,16392,GO-20199032182,THEFT UNDER,2019-09-30T00:00:00,2019,September,Monday,30,273,14,2019-10-01T00:00:00,2019,October,Tuesday,1,274,11,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,,MT,21,BLU,4000.0,STOLEN,11740,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-11754,16401,GO-20199034416,THEFT UNDER,2019-10-10T00:00:00,2019,October,Thursday,10,283,9,2019-10-19T00:00:00,2019,October,Saturday,19,292,9,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,,,RG,3,,450.0,STOLEN,11741,"{'type': 'Point', 'coordinates': (-79.38238489, 43.65176074)}"
-11755,16404,GO-20192046674,THEFT UNDER - BICYCLE,2019-10-23T00:00:00,2019,October,Wednesday,23,296,4,2019-10-23T00:00:00,2019,October,Wednesday,23,296,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,FIXIE,OT,0,BLK,,STOLEN,11742,"{'type': 'Point', 'coordinates': (-79.38374902, 43.66302137000001)}"
-11756,16406,GO-20192077366,THEFT UNDER,2019-10-27T00:00:00,2019,October,Sunday,27,300,21,2019-10-27T00:00:00,2019,October,Sunday,27,300,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,,MT,21,BLK,,STOLEN,11743,"{'type': 'Point', 'coordinates': (-79.38188491, 43.65866815)}"
-11757,16411,GO-20199036947,THEFT UNDER,2019-10-25T00:00:00,2019,October,Friday,25,298,22,2019-11-08T00:00:00,2019,November,Friday,8,312,22,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,EM,,EL,9,BLK,2699.0,STOLEN,11744,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-11758,16413,GO-20199038280,THEFT UNDER,2019-11-19T00:00:00,2019,November,Tuesday,19,323,8,2019-11-21T00:00:00,2019,November,Thursday,21,325,10,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,TR,DOMANE SL5 GRAV,RC,22,LGR,4000.0,STOLEN,11745,"{'type': 'Point', 'coordinates': (-79.37878196, 43.64896093)}"
-11759,16417,GO-20199038809,THEFT UNDER,2019-11-25T00:00:00,2019,November,Monday,25,329,12,2019-11-25T00:00:00,2019,November,Monday,25,329,17,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,OT,,RC,9,RED,400.0,STOLEN,11746,"{'type': 'Point', 'coordinates': (-79.38491403, 43.66584039)}"
-11760,16421,GO-20199040233,THEFT UNDER,2019-11-29T00:00:00,2019,November,Friday,29,333,0,2019-12-09T00:00:00,2019,December,Monday,9,343,8,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KH,,MT,18,ONG,500.0,STOLEN,11747,"{'type': 'Point', 'coordinates': (-79.38260155, 43.6529703)}"
-11761,16429,GO-20209001169,THEFT UNDER,2020-01-09T00:00:00,2020,January,Thursday,9,9,23,2020-01-10T00:00:00,2020,January,Friday,10,10,17,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,SIRRUS,RG,8,BLK,900.0,STOLEN,11748,"{'type': 'Point', 'coordinates': (-79.39038732, 43.66791603)}"
-11762,16437,GO-20209004010,THEFT UNDER,2020-02-02T00:00:00,2020,February,Sunday,2,33,22,2020-02-03T00:00:00,2020,February,Monday,3,34,5,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,DB,,RG,10,BLK,500.0,STOLEN,11749,"{'type': 'Point', 'coordinates': (-79.38596803, 43.65904449)}"
-11763,16443,GO-20209009015,THEFT UNDER,2019-12-01T00:00:00,2019,December,Sunday,1,335,0,2020-03-15T00:00:00,2020,March,Sunday,15,75,16,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,SPARK 760,MT,21,BLK,2900.0,STOLEN,11751,"{'type': 'Point', 'coordinates': (-79.38714344, 43.66436762)}"
-11764,16451,GO-2020807478,THEFT UNDER,2020-04-29T00:00:00,2020,April,Wednesday,29,120,0,2020-04-29T00:00:00,2020,April,Wednesday,29,120,13,D52,Toronto,76,Bay Street Corridor (76),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,UNKNOWN,OT,0,BLK,0.0,STOLEN,11752,"{'type': 'Point', 'coordinates': (-79.38740686, 43.66497543)}"
-11765,16454,GO-20209012528,THEFT UNDER,2020-03-15T00:00:00,2020,March,Sunday,15,75,12,2020-05-05T00:00:00,2020,May,Tuesday,5,126,16,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,,RG,21,GRY,600.0,STOLEN,11753,"{'type': 'Point', 'coordinates': (-79.38492429, 43.65121654)}"
-11766,16458,GO-20209014688,THEFT UNDER,2020-06-05T00:00:00,2020,June,Friday,5,157,7,2020-06-05T00:00:00,2020,June,Friday,5,157,18,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,NO,14.5 BLUE,MT,24,GRY,675.0,STOLEN,11754,"{'type': 'Point', 'coordinates': (-79.38596803, 43.65904449)}"
-11767,16462,GO-20209015414,THEFT OF EBIKE UNDER $5000,2020-06-08T00:00:00,2020,June,Monday,8,160,18,2020-06-09T00:00:00,2020,June,Tuesday,9,161,7,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,2018,EL,9,WHI,1500.0,STOLEN,11755,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11768,16471,GO-20209016695,THEFT UNDER,2020-06-29T00:00:00,2020,June,Monday,29,181,15,2020-07-02T00:00:00,2020,July,Thursday,2,184,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,40,BLK,500.0,STOLEN,11756,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-11769,16474,GO-20209017063,THEFT UNDER,2020-07-06T00:00:00,2020,July,Monday,6,188,9,2020-07-07T00:00:00,2020,July,Tuesday,7,189,23,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,SILVERSTONE 1,RG,8,WHI,800.0,STOLEN,11757,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11770,16479,GO-20209017749,THEFT UNDER,2020-07-16T00:00:00,2020,July,Thursday,16,198,9,2020-07-17T00:00:00,2020,July,Friday,17,199,0,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,1.2 ALPHA,RG,21,WHI,600.0,STOLEN,11758,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-11771,16482,GO-20209018205,THEFT UNDER,2020-07-21T00:00:00,2020,July,Tuesday,21,203,8,2020-07-22T00:00:00,2020,July,Wednesday,22,204,11,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,DUAL SPORT 2,RG,14,BLK,1000.0,STOLEN,11759,"{'type': 'Point', 'coordinates': (-79.38640575, 43.65337704000001)}"
-11772,16484,GO-20209018837,THEFT UNDER,2020-07-28T00:00:00,2020,July,Tuesday,28,210,8,2020-07-28T00:00:00,2020,July,Tuesday,28,210,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,DOMANE AL 3,RC,18,,1200.0,STOLEN,11760,"{'type': 'Point', 'coordinates': (-79.3802391, 43.64865033)}"
-11773,16488,GO-20209019198,THEFT UNDER,2020-08-01T00:00:00,2020,August,Saturday,1,214,19,2020-08-02T00:00:00,2020,August,Sunday,2,215,14,D52,Toronto,76,Bay Street Corridor (76),Bar / Restaurant,Commercial,OT,,RG,15,BLK,350.0,STOLEN,11761,"{'type': 'Point', 'coordinates': (-79.38581514, 43.66081576)}"
-11774,16494,GO-20201462636,THEFT UNDER - BICYCLE,2020-08-05T00:00:00,2020,August,Wednesday,5,218,18,2020-08-05T00:00:00,2020,August,Wednesday,5,218,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DARTMOOR,26 PLAYER,BM,0,,1600.0,STOLEN,11762,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-11775,16497,GO-20201493399,THEFT UNDER - BICYCLE,2020-08-04T00:00:00,2020,August,Tuesday,4,217,16,2020-08-11T00:00:00,2020,August,Tuesday,11,224,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MEC,HOLD AND STEADY,TO,8,BLK,1000.0,STOLEN,11763,"{'type': 'Point', 'coordinates': (-79.38712214, 43.65502365)}"
-11776,16501,GO-20209020263,THEFT UNDER,2020-08-14T00:00:00,2020,August,Friday,14,227,11,2020-08-14T00:00:00,2020,August,Friday,14,227,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,820,MT,1,BLU,250.0,STOLEN,11764,"{'type': 'Point', 'coordinates': (-79.3802391, 43.64865033)}"
-11777,16504,GO-20209020952,THEFT UNDER,2020-08-21T00:00:00,2020,August,Friday,21,234,15,2020-08-21T00:00:00,2020,August,Friday,21,234,23,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,,MT,21,WHI,500.0,STOLEN,11765,"{'type': 'Point', 'coordinates': (-79.38209114, 43.64961443)}"
-11778,16505,GO-20209020977,THEFT UNDER,2020-08-21T00:00:00,2020,August,Friday,21,234,11,2020-08-22T00:00:00,2020,August,Saturday,22,235,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ORPHEO 3,RG,24,GRY,900.0,STOLEN,11766,"{'type': 'Point', 'coordinates': (-79.38754191, 43.65310778)}"
-11779,16509,GO-20209022223,THEFT UNDER,2020-09-03T00:00:00,2020,September,Thursday,3,247,8,2020-09-03T00:00:00,2020,September,Thursday,3,247,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,JS2011,MT,24,,200.0,STOLEN,11767,"{'type': 'Point', 'coordinates': (-79.38552201, 43.64605338)}"
-11780,16512,GO-20209022425,THEFT UNDER,2020-09-05T00:00:00,2020,September,Saturday,5,249,15,2020-09-05T00:00:00,2020,September,Saturday,5,249,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,FO,6,DGR,2500.0,STOLEN,11768,"{'type': 'Point', 'coordinates': (-79.38737611, 43.66847728)}"
-11781,16516,GO-20209022831,THEFT UNDER,2020-09-10T00:00:00,2020,September,Thursday,10,254,10,2020-09-10T00:00:00,2020,September,Thursday,10,254,23,D52,Toronto,76,Bay Street Corridor (76),"Open Areas (Lakes, Parks, Rivers)",Outside,SC,700C GTX2 W,OT,21,PLE,550.0,STOLEN,11769,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-11782,16518,GO-20209023842,THEFT UNDER,2020-09-18T00:00:00,2020,September,Friday,18,262,12,2020-09-19T00:00:00,2020,September,Saturday,19,263,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,IN,INFINITY,MT,21,BLU,500.0,STOLEN,11770,"{'type': 'Point', 'coordinates': (-79.37733067, 43.64784591)}"
-11783,16519,GO-20209024067,THEFT UNDER,2020-09-17T00:00:00,2020,September,Thursday,17,261,23,2020-09-22T00:00:00,2020,September,Tuesday,22,266,12,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,CA,,TO,18,GRY,800.0,STOLEN,11771,"{'type': 'Point', 'coordinates': (-79.39038732, 43.66791603)}"
-11784,16520,GO-20149006013,THEFT UNDER,2014-08-18T00:00:00,2014,August,Monday,18,230,17,2014-08-19T00:00:00,2014,August,Tuesday,19,231,22,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,ROAD BIKE,RC,21,DGR,200.0,STOLEN,11772,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11785,16522,GO-20149006070,THEFT UNDER,2014-08-18T00:00:00,2014,August,Monday,18,230,8,2014-08-18T00:00:00,2014,August,Monday,18,230,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,VITA ELITE,RG,27,GRY,800.0,STOLEN,11773,"{'type': 'Point', 'coordinates': (-79.37760867, 43.64852311)}"
-11786,16526,GO-20149006532,THEFT UNDER,2014-09-02T00:00:00,2014,September,Tuesday,2,245,18,2014-09-03T00:00:00,2014,September,Wednesday,3,246,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CROSS TRAIL,RG,10,GRY,700.0,STOLEN,11774,"{'type': 'Point', 'coordinates': (-79.38737611, 43.66847728)}"
-11787,16528,GO-20149006618,THEFT UNDER,2014-09-04T00:00:00,2014,September,Thursday,4,247,23,2014-09-06T00:00:00,2014,September,Saturday,6,249,16,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,UK,SKYWAY (SMALL),RG,1,BLK,850.0,STOLEN,11775,"{'type': 'Point', 'coordinates': (-79.38768427, 43.66564487000001)}"
-11788,16529,GO-20149006917,THEFT UNDER,2014-09-14T00:00:00,2014,September,Sunday,14,257,20,2014-09-15T00:00:00,2014,September,Monday,15,258,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,,RG,6,RED,0.0,STOLEN,11776,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-11789,16531,GO-20142928254,THEFT UNDER,2014-09-09T00:00:00,2014,September,Tuesday,9,252,10,2014-09-17T00:00:00,2014,September,Wednesday,17,260,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,FLUX MBA,RC,21,BLK,800.0,STOLEN,11777,"{'type': 'Point', 'coordinates': (-79.38618236, 43.65775862)}"
-11790,16536,GO-20143019873,THEFT UNDER,2014-09-30T00:00:00,2014,September,Tuesday,30,273,13,2014-10-01T00:00:00,2014,October,Wednesday,1,274,9,D52,Toronto,76,Bay Street Corridor (76),"Open Areas (Lakes, Parks, Rivers)",Outside,FUJI,CHARLESTON,OT,3,BLU,500.0,STOLEN,11778,"{'type': 'Point', 'coordinates': (-79.39410211, 43.66871992)}"
-11791,16540,GO-20149007592,THEFT UNDER,2014-10-14T00:00:00,2014,October,Tuesday,14,287,10,2014-10-15T00:00:00,2014,October,Wednesday,15,288,0,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,,MT,30,ONG,300.0,STOLEN,11779,"{'type': 'Point', 'coordinates': (-79.38739744, 43.65571903)}"
-11792,16543,GO-20149007677,THEFT UNDER,2014-10-18T00:00:00,2014,October,Saturday,18,291,11,2014-10-18T00:00:00,2014,October,Saturday,18,291,23,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,GI,13 ROVE 2S,RG,27,WHI,629.0,STOLEN,11780,"{'type': 'Point', 'coordinates': (-79.38605934000002, 43.6615638)}"
-11793,16544,GO-20143152112,THEFT UNDER,2014-10-22T00:00:00,2014,October,Wednesday,22,295,10,2014-10-22T00:00:00,2014,October,Wednesday,22,295,10,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUNRISE,,EL,1,RED,100.0,STOLEN,11781,"{'type': 'Point', 'coordinates': (-79.38671683, 43.66779)}"
-11794,16545,GO-20149007749,THEFT UNDER,2014-10-07T00:00:00,2014,October,Tuesday,7,280,20,2014-10-22T00:00:00,2014,October,Wednesday,22,295,10,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,NAVIGATOR 3.0,MT,10,GRY,600.0,STOLEN,11782,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-11795,16550,GO-20149008191,THEFT UNDER,2014-10-22T00:00:00,2014,October,Wednesday,22,295,16,2014-11-14T00:00:00,2014,November,Friday,14,318,0,D52,Toronto,76,Bay Street Corridor (76),"Construction Site (Warehouse, Trailer, Shed)",Commercial,OT,MU (I THINK),FO,7,GRY,600.0,STOLEN,11783,"{'type': 'Point', 'coordinates': (-79.37968936, 43.64733439)}"
-11796,16553,GO-20159001258,THEFT UNDER,2015-03-11T00:00:00,2015,March,Wednesday,11,70,8,2015-03-12T00:00:00,2015,March,Thursday,12,71,15,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,PE,MONACO,OT,1,BLK,200.0,STOLEN,11784,"{'type': 'Point', 'coordinates': (-79.38601979, 43.65524051)}"
-11797,16554,GO-20159001839,THEFT UNDER,2015-04-11T00:00:00,2015,April,Saturday,11,101,1,2015-04-11T00:00:00,2015,April,Saturday,11,101,2,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,UK,,MT,15,,,STOLEN,11785,"{'type': 'Point', 'coordinates': (-79.37760867, 43.64852311)}"
-11798,16556,GO-20159001957,THEFT UNDER,2015-04-15T00:00:00,2015,April,Wednesday,15,105,10,2015-04-15T00:00:00,2015,April,Wednesday,15,105,23,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MA,TRIPLE STEP-THR,RG,24,PLE,650.0,STOLEN,11786,"{'type': 'Point', 'coordinates': (-79.39410211, 43.66871992)}"
-11799,16557,GO-2015626096,THEFT UNDER,2015-04-15T00:00:00,2015,April,Wednesday,15,105,20,2015-04-16T00:00:00,2015,April,Thursday,16,106,7,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,PURE FIX HOTEL,TO,1,BLK,500.0,STOLEN,11787,"{'type': 'Point', 'coordinates': (-79.38353872, 43.64792395)}"
-11800,16559,GO-20159002072,THEFT UNDER,2015-04-18T00:00:00,2015,April,Saturday,18,108,16,2015-04-20T00:00:00,2015,April,Monday,20,110,9,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,CC,,RG,1,BLK,373.0,STOLEN,11788,"{'type': 'Point', 'coordinates': (-79.38581514, 43.66081576)}"
-11801,16560,GO-20159002072,THEFT UNDER,2015-04-18T00:00:00,2015,April,Saturday,18,108,16,2015-04-20T00:00:00,2015,April,Monday,20,110,9,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,NO,,RG,8,GRN,680.0,STOLEN,11789,"{'type': 'Point', 'coordinates': (-79.38581514, 43.66081576)}"
-11802,16561,GO-20159002103,THEFT UNDER,2015-04-20T00:00:00,2015,April,Monday,20,110,17,2015-04-20T00:00:00,2015,April,Monday,20,110,18,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,GI,TRANSCEND,RG,24,DGR,540.0,STOLEN,11790,"{'type': 'Point', 'coordinates': (-79.3888294, 43.66819662)}"
-11803,16567,GO-20159002566,THEFT UNDER,2015-05-08T00:00:00,2015,May,Friday,8,128,18,2015-05-08T00:00:00,2015,May,Friday,8,128,19,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,ROCKHOPPER COMP,MT,24,GRY,1100.0,STOLEN,11791,"{'type': 'Point', 'coordinates': (-79.38687123, 43.6623556)}"
-11804,16570,GO-2015800262,THEFT UNDER,2015-05-13T00:00:00,2015,May,Wednesday,13,133,13,2015-05-13T00:00:00,2015,May,Wednesday,13,133,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,,TO,21,GRN,600.0,STOLEN,11792,"{'type': 'Point', 'coordinates': (-79.38640575, 43.65337704000001)}"
-11805,16572,GO-20159002981,THEFT UNDER,2015-05-20T00:00:00,2015,May,Wednesday,20,140,17,2015-05-21T00:00:00,2015,May,Thursday,21,141,15,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RG,5,BLU,250.0,STOLEN,11793,"{'type': 'Point', 'coordinates': (-79.38407058, 43.649187680000004)}"
-11806,16574,GO-2015900198,THEFT UNDER,2015-05-29T00:00:00,2015,May,Friday,29,149,18,2015-05-29T00:00:00,2015,May,Friday,29,149,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,,OT,21,BLK,800.0,STOLEN,11794,"{'type': 'Point', 'coordinates': (-79.3865128, 43.66731082)}"
-11807,16576,GO-20159003573,THEFT UNDER,2015-06-12T00:00:00,2015,June,Friday,12,163,8,2015-06-13T00:00:00,2015,June,Saturday,13,164,10,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,ELEGANCE 701H,OT,21,BLK,400.0,STOLEN,11795,"{'type': 'Point', 'coordinates': (-79.38820648, 43.66681234)}"
-11808,16578,GO-20159003744,THEFT UNDER,2015-06-14T00:00:00,2015,June,Sunday,14,165,18,2015-06-18T00:00:00,2015,June,Thursday,18,169,21,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,SU,SUPERCYCLE 1800,MT,30,,,STOLEN,11796,"{'type': 'Point', 'coordinates': (-79.37787874, 43.64914837)}"
-11809,16579,GO-20151045607,THEFT UNDER,2015-06-21T00:00:00,2015,June,Sunday,21,172,10,2015-06-21T00:00:00,2015,June,Sunday,21,172,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,MT,10,BLK,200.0,STOLEN,11797,"{'type': 'Point', 'coordinates': (-79.38262593, 43.65086783)}"
-11810,16580,GO-20159003907,THEFT UNDER,2015-06-18T00:00:00,2015,June,Thursday,18,169,8,2015-06-24T00:00:00,2015,June,Wednesday,24,175,11,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KH,ALITE 3000,MT,21,BRN,0.0,STOLEN,11798,"{'type': 'Point', 'coordinates': (-79.38209114, 43.64961443)}"
-11811,12102,GO-20169008791,THEFT UNDER - BICYCLE,2016-08-15T00:00:00,2016,August,Monday,15,228,12,2016-08-15T00:00:00,2016,August,Monday,15,228,14,D52,Toronto,76,Bay Street Corridor (76),Bar / Restaurant,Commercial,GT,TRANSEO 4.0,MT,24,GRY,650.0,STOLEN,11799,"{'type': 'Point', 'coordinates': (-79.38374902, 43.66302137000001)}"
-11812,16583,GO-20159005274,THEFT UNDER,2015-07-28T00:00:00,2015,July,Tuesday,28,209,18,2015-08-03T00:00:00,2015,August,Monday,3,215,12,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,GF,HIF,MT,27,BLK,0.0,STOLEN,11800,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-11813,16586,GO-20159005426,THEFT UNDER,2015-08-06T00:00:00,2015,August,Thursday,6,218,23,2015-08-07T00:00:00,2015,August,Friday,7,219,6,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,MT,18,GRY,300.0,STOLEN,11801,"{'type': 'Point', 'coordinates': (-79.38236226, 43.65027737)}"
-11814,16590,GO-20159005766,THEFT UNDER,2015-08-14T00:00:00,2015,August,Friday,14,226,16,2015-08-15T00:00:00,2015,August,Saturday,15,227,0,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,EL,35,BLK,700.0,STOLEN,11802,"{'type': 'Point', 'coordinates': (-79.38581622, 43.66799576)}"
-11815,16592,GO-20151469995,THEFT UNDER,2015-08-22T00:00:00,2015,August,Saturday,22,234,15,2015-08-26T00:00:00,2015,August,Wednesday,26,238,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,MATTE BLACK 4,OT,1,,,STOLEN,11803,"{'type': 'Point', 'coordinates': (-79.3879785, 43.66997438)}"
-11816,16593,GO-20159006630,THEFT UNDER,2015-08-28T00:00:00,2015,August,Friday,28,240,8,2015-09-01T00:00:00,2015,September,Tuesday,1,244,21,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,UK,MIELE,RC,12,BLK,350.0,STOLEN,11804,"{'type': 'Point', 'coordinates': (-79.38209114, 43.64961443)}"
-11817,16594,GO-20159006812,THEFT UNDER,2015-09-05T00:00:00,2015,September,Saturday,5,248,15,2015-09-06T00:00:00,2015,September,Sunday,6,249,10,D52,Toronto,76,Bay Street Corridor (76),Ttc Subway Station,Transit,SC,,RG,21,GRY,500.0,STOLEN,11805,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-11818,16597,GO-20159007433,THEFT UNDER,2015-09-19T00:00:00,2015,September,Saturday,19,262,12,2015-09-19T00:00:00,2015,September,Saturday,19,262,21,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,SPORT LADIES ST,RG,12,GRY,860.0,STOLEN,11806,"{'type': 'Point', 'coordinates': (-79.38238489, 43.65176074)}"
-11819,16600,GO-20151686225,B&E,2015-09-30T00:00:00,2015,September,Wednesday,30,273,5,2015-09-30T00:00:00,2015,September,Wednesday,30,273,5,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN,UNKNOWN,BM,0,SIL,,STOLEN,11807,"{'type': 'Point', 'coordinates': (-79.38847714, 43.66743649)}"
-11820,16601,GO-20159007927,THEFT UNDER,2015-09-30T00:00:00,2015,September,Wednesday,30,273,5,2015-09-30T00:00:00,2015,September,Wednesday,30,273,15,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,UK,P.20,BM,1,SIL,500.0,STOLEN,11808,"{'type': 'Point', 'coordinates': (-79.38847714, 43.66743649)}"
-11821,16602,GO-20159008177,THEFT UNDER,2015-10-05T00:00:00,2015,October,Monday,5,278,6,2015-10-05T00:00:00,2015,October,Monday,5,278,12,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,THE INDIA,RG,1,BLK,499.0,STOLEN,11809,"{'type': 'Point', 'coordinates': (-79.38994423, 43.6587011)}"
-11822,13152,GO-20189014160,THEFT UNDER - BICYCLE,2018-05-08T00:00:00,2018,May,Tuesday,8,128,9,2018-05-08T00:00:00,2018,May,Tuesday,8,128,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SIRRUS ALTUS,TO,27,GRY,850.0,STOLEN,11810,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-11823,13154,GO-2018836263,THEFT UNDER - BICYCLE,2018-05-08T00:00:00,2018,May,Tuesday,8,128,9,2018-05-09T00:00:00,2018,May,Wednesday,9,129,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KONA,DEW,OT,24,CRM,400.0,STOLEN,11811,"{'type': 'Point', 'coordinates': (-79.38103127, 43.65056603)}"
-11824,13160,GO-20189016154,THEFT UNDER - BICYCLE,2018-05-24T00:00:00,2018,May,Thursday,24,144,8,2018-05-24T00:00:00,2018,May,Thursday,24,144,23,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,CC,"CCM 2.0 SL 26""""",MT,21,BLK,550.0,STOLEN,11812,"{'type': 'Point', 'coordinates': (-79.37878196, 43.64896093)}"
-11825,13162,GO-2018958100,THEFT UNDER - BICYCLE,2018-05-27T00:00:00,2018,May,Sunday,27,147,15,2018-05-27T00:00:00,2018,May,Sunday,27,147,22,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,COLNAGO,PRIMAVERA,OT,8,REDWHI,2000.0,STOLEN,11813,"{'type': 'Point', 'coordinates': (-79.38491403, 43.66584039)}"
-11826,13169,GO-20189019411,THEFT UNDER,2018-06-19T00:00:00,2018,June,Tuesday,19,170,12,2018-06-19T00:00:00,2018,June,Tuesday,19,170,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KH,URBAN SOUL,RG,7,BRZ,540.0,STOLEN,11814,"{'type': 'Point', 'coordinates': (-79.37787874, 43.64914837)}"
-11827,13170,GO-20181126776,THEFT UNDER - BICYCLE,2018-06-10T00:00:00,2018,June,Sunday,10,161,13,2018-06-21T00:00:00,2018,June,Thursday,21,172,8,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,FUJI,,TO,0,BLUWHI,1500.0,STOLEN,11815,"{'type': 'Point', 'coordinates': (-79.39060913000002, 43.66358401)}"
-11828,13172,GO-20189019736,THEFT UNDER - BICYCLE,2018-06-21T00:00:00,2018,June,Thursday,21,172,8,2018-06-21T00:00:00,2018,June,Thursday,21,172,23,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,,OT,21,GRY,550.0,STOLEN,11816,"{'type': 'Point', 'coordinates': (-79.38260155, 43.6529703)}"
-11829,13173,GO-20189019868,THEFT UNDER - BICYCLE,2018-06-22T00:00:00,2018,June,Friday,22,173,8,2018-06-22T00:00:00,2018,June,Friday,22,173,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RM,,OT,27,DBL,400.0,STOLEN,11817,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-11830,13184,GO-20189023015,THEFT UNDER - BICYCLE,2018-07-18T00:00:00,2018,July,Wednesday,18,199,20,2018-07-19T00:00:00,2018,July,Thursday,19,200,8,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,KO,MAHUNA,MT,9,ONG,899.0,STOLEN,11818,"{'type': 'Point', 'coordinates': (-79.38437564, 43.65730783)}"
-11831,13186,GO-20181350023,THEFT UNDER - BICYCLE,2018-07-16T00:00:00,2018,July,Monday,16,197,18,2018-07-17T00:00:00,2018,July,Tuesday,17,198,8,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,,OT,0,BLUYEL,520.0,STOLEN,11819,"{'type': 'Point', 'coordinates': (-79.38737611, 43.66847728)}"
-11832,13187,GO-20189023743,THEFT UNDER - BICYCLE,2018-07-20T00:00:00,2018,July,Friday,20,201,14,2018-07-24T00:00:00,2018,July,Tuesday,24,205,15,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RC,12,GRY,1200.0,STOLEN,11820,"{'type': 'Point', 'coordinates': (-79.37903365, 43.65028111)}"
-11833,13191,GO-20189026025,THEFT UNDER,2018-08-11T00:00:00,2018,August,Saturday,11,223,19,2018-08-11T00:00:00,2018,August,Saturday,11,223,22,D52,Toronto,76,Bay Street Corridor (76),"Open Areas (Lakes, Parks, Rivers)",Outside,KO,SUTRA,TO,21,BRN,1100.0,STOLEN,11821,"{'type': 'Point', 'coordinates': (-79.3879785, 43.66997438)}"
-11834,13192,GO-20189026113,THEFT UNDER - BICYCLE,2018-08-12T00:00:00,2018,August,Sunday,12,224,14,2018-08-12T00:00:00,2018,August,Sunday,12,224,23,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,RG,5,BLK,650.0,STOLEN,11822,"{'type': 'Point', 'coordinates': (-79.3888294, 43.66819662)}"
-11835,13193,GO-20189026459,THEFT UNDER - BICYCLE,2018-08-09T00:00:00,2018,August,Thursday,9,221,14,2018-08-14T00:00:00,2018,August,Tuesday,14,226,23,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,CA,QUICK 4,RG,27,BLU,850.0,STOLEN,11823,"{'type': 'Point', 'coordinates': (-79.38738577, 43.66051487)}"
-11836,13194,GO-20189026600,THEFT UNDER - BICYCLE,2018-08-16T00:00:00,2018,August,Thursday,16,228,1,2018-08-16T00:00:00,2018,August,Thursday,16,228,9,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,MA,FAIRFAX SC2,RG,8,ONG,1000.0,STOLEN,11824,"{'type': 'Point', 'coordinates': (-79.38687123, 43.6623556)}"
-11837,13196,GO-20189026774,THEFT UNDER - BICYCLE,2018-08-16T00:00:00,2018,August,Thursday,16,228,18,2018-08-17T00:00:00,2018,August,Friday,17,229,12,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,HF,,MT,6,BLK,150.0,STOLEN,11825,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-11838,13198,GO-20189027505,THEFT UNDER - BICYCLE,2018-08-22T00:00:00,2018,August,Wednesday,22,234,18,2018-08-22T00:00:00,2018,August,Wednesday,22,234,18,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,CA,QUICK DISC 5,RG,27,BLK,904.0,STOLEN,11826,"{'type': 'Point', 'coordinates': (-79.3861386, 43.66649311)}"
-11839,13199,GO-20189027680,THEFT UNDER - BICYCLE,2018-08-22T00:00:00,2018,August,Wednesday,22,234,18,2018-08-23T00:00:00,2018,August,Thursday,23,235,22,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,VENTURE SPORT,OT,8,BLU,729.0,STOLEN,11827,"{'type': 'Point', 'coordinates': (-79.38625132, 43.6500866)}"
-11840,13200,GO-20189027878,THEFT UNDER - BICYCLE,2018-08-12T00:00:00,2018,August,Sunday,12,224,15,2018-08-25T00:00:00,2018,August,Saturday,25,237,8,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,AGGRESSOR,MT,21,BLU,500.0,STOLEN,11828,"{'type': 'Point', 'coordinates': (-79.38596803, 43.65904449)}"
-11841,13203,GO-20189028106,THEFT UNDER - BICYCLE,2018-08-18T00:00:00,2018,August,Saturday,18,230,16,2018-08-27T00:00:00,2018,August,Monday,27,239,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,21,RED,300.0,STOLEN,11829,"{'type': 'Point', 'coordinates': (-79.38124592, 43.65320661)}"
-11842,13204,GO-20181593684,THEFT UNDER - BICYCLE,2018-08-28T00:00:00,2018,August,Tuesday,28,240,9,2018-08-28T00:00:00,2018,August,Tuesday,28,240,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CONA,DEW PLUS,RC,27,BLK,800.0,STOLEN,11830,"{'type': 'Point', 'coordinates': (-79.38268555, 43.64598268)}"
-11843,13205,GO-20189028705,THEFT UNDER - BICYCLE,2018-08-29T00:00:00,2018,August,Wednesday,29,241,13,2018-08-31T00:00:00,2018,August,Friday,31,243,13,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,7.3 FX WSD,RG,27,BLK,749.0,STOLEN,11831,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-11844,13210,GO-20189029712,THEFT UNDER - BICYCLE,2018-09-09T00:00:00,2018,September,Sunday,9,252,12,2018-09-09T00:00:00,2018,September,Sunday,9,252,16,D52,Toronto,76,Bay Street Corridor (76),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,BLACK JULIETTE,RG,1,BLK,550.0,STOLEN,11832,"{'type': 'Point', 'coordinates': (-79.38260155, 43.6529703)}"
-11845,13212,GO-20189029919,THEFT UNDER - BICYCLE,2018-09-10T00:00:00,2018,September,Monday,10,253,8,2018-09-11T00:00:00,2018,September,Tuesday,11,254,11,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,UK,WOMEN'S LEISURE,RG,3,ONG,800.0,STOLEN,11833,"{'type': 'Point', 'coordinates': (-79.38353872, 43.64792395)}"
-11846,13214,GO-20181685428,THEFT UNDER - BICYCLE,2018-09-11T00:00:00,2018,September,Tuesday,11,254,11,2018-09-11T00:00:00,2018,September,Tuesday,11,254,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,HYPER,BIKE TRAIL,MT,21,BLU,150.0,STOLEN,11834,"{'type': 'Point', 'coordinates': (-79.38167842, 43.65189355)}"
-11847,13216,GO-20189030525,THEFT UNDER - BICYCLE,2018-09-14T00:00:00,2018,September,Friday,14,257,16,2018-09-15T00:00:00,2018,September,Saturday,15,258,0,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,GI,FASTROAD COMAX,RC,11,BLK,28000.0,STOLEN,11835,"{'type': 'Point', 'coordinates': (-79.38581514, 43.66081576)}"
-11848,13217,GO-20189031204,THEFT UNDER - BICYCLE,2018-09-19T00:00:00,2018,September,Wednesday,19,262,9,2018-09-20T00:00:00,2018,September,Thursday,20,263,6,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KO,PADDY WAGON,RG,1,GRY,700.0,STOLEN,11836,"{'type': 'Point', 'coordinates': (-79.38581514, 43.66081576)}"
-11849,13220,GO-20189032705,THEFT UNDER,2018-09-25T00:00:00,2018,September,Tuesday,25,268,18,2018-10-02T00:00:00,2018,October,Tuesday,2,275,20,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,18 DEL SOL PROJ,OT,21,ONG,600.0,STOLEN,11837,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-11850,13224,GO-20189035057,THEFT UNDER - BICYCLE,2018-10-21T00:00:00,2018,October,Sunday,21,294,11,2018-10-22T00:00:00,2018,October,Monday,22,295,12,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,CCM ANNETTE,RG,7,BGE,300.0,STOLEN,11838,"{'type': 'Point', 'coordinates': (-79.38437564, 43.65730783)}"
-11851,13226,GO-20189036128,THEFT UNDER - BICYCLE,2018-10-29T00:00:00,2018,October,Monday,29,302,9,2018-10-29T00:00:00,2018,October,Monday,29,302,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,15,SIL,0.0,STOLEN,11839,"{'type': 'Point', 'coordinates': (-79.38649082, 43.66146692)}"
-11852,13227,GO-20189036658,THEFT UNDER - BICYCLE,2018-11-02T00:00:00,2018,November,Friday,2,306,19,2018-11-02T00:00:00,2018,November,Friday,2,306,23,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,DUAL DRIVE TAND,TA,21,RED,500.0,STOLEN,11840,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-11853,13228,GO-20189036988,THEFT UNDER - BICYCLE,2018-11-01T00:00:00,2018,November,Thursday,1,305,8,2018-11-05T00:00:00,2018,November,Monday,5,309,21,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ST TROPEZ,RG,18,BLK,1000.0,STOLEN,11841,"{'type': 'Point', 'coordinates': (-79.38407058, 43.649187680000004)}"
-11854,13230,GO-20182085270,B&E,2018-09-06T00:00:00,2018,September,Thursday,6,249,12,2018-11-12T00:00:00,2018,November,Monday,12,316,14,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,TREK,MOUNTAIN,OT,21,BLK,900.0,STOLEN,11842,"{'type': 'Point', 'coordinates': (-79.3888294, 43.66819662)}"
-11855,13233,GO-20189042110,THEFT UNDER - BICYCLE,2018-12-14T00:00:00,2018,December,Friday,14,348,19,2018-12-15T00:00:00,2018,December,Saturday,15,349,2,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,,RG,17,BLK,800.0,STOLEN,11843,"{'type': 'Point', 'coordinates': (-79.38658151, 43.64863773)}"
-11856,13237,GO-20182385815,THEFT UNDER - BICYCLE,2018-12-21T00:00:00,2018,December,Friday,21,355,18,2018-12-30T00:00:00,2018,December,Sunday,30,364,16,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,CINELLI VIGOREL,,RC,1,REDYEL,1700.0,STOLEN,11844,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-11857,13239,GO-20199007343,THEFT UNDER,2019-02-22T00:00:00,2019,February,Friday,22,53,17,2019-03-05T00:00:00,2019,March,Tuesday,5,64,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GF,CONNECTION TRAI,MT,7,BLK,100.0,STOLEN,11845,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-11858,13244,GO-20199015190,THEFT UNDER,2019-05-13T00:00:00,2019,May,Monday,13,133,9,2019-05-15T00:00:00,2019,May,Wednesday,15,135,20,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,SU,,MT,18,BLU,150.0,STOLEN,11846,"{'type': 'Point', 'coordinates': (-79.38353872, 43.64792395)}"
-11859,13245,GO-20199015959,THEFT UNDER,2019-05-21T00:00:00,2019,May,Tuesday,21,141,13,2019-05-22T00:00:00,2019,May,Wednesday,22,142,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,DEVINCI HATCHET,OT,11,BLK,2550.0,STOLEN,11847,"{'type': 'Point', 'coordinates': (-79.38467283, 43.65807476)}"
-11860,13246,GO-20199015959,THEFT UNDER,2019-05-21T00:00:00,2019,May,Tuesday,21,141,13,2019-05-22T00:00:00,2019,May,Wednesday,22,142,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,HATCHETSX 2017,OT,11,BLK,2550.0,STOLEN,11848,"{'type': 'Point', 'coordinates': (-79.38467283, 43.65807476)}"
-11861,13248,GO-20199016511,THEFT UNDER,2019-05-27T00:00:00,2019,May,Monday,27,147,13,2019-05-27T00:00:00,2019,May,Monday,27,147,17,D52,Toronto,76,Bay Street Corridor (76),Convenience Stores,Commercial,UK,,MT,40,,150.0,STOLEN,11849,"{'type': 'Point', 'coordinates': (-79.38491403, 43.66584039)}"
-11862,13249,GO-20199017481,THEFT UNDER,2019-06-05T00:00:00,2019,June,Wednesday,5,156,10,2019-06-05T00:00:00,2019,June,Wednesday,5,156,12,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,7100,MT,21,BRZ,600.0,STOLEN,11850,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-11863,13250,GO-20199017736,THEFT UNDER,2019-06-06T00:00:00,2019,June,Thursday,6,157,15,2019-06-07T00:00:00,2019,June,Friday,7,158,13,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,CA,QUICK 5,TO,21,BLK,850.0,STOLEN,11851,"{'type': 'Point', 'coordinates': (-79.38236226, 43.65027737)}"
-11864,13251,GO-20199017781,THEFT UNDER,2019-06-07T00:00:00,2019,June,Friday,7,158,7,2019-06-07T00:00:00,2019,June,Friday,7,158,19,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,TR,,MT,20,WHI,300.0,STOLEN,11852,"{'type': 'Point', 'coordinates': (-79.38209114, 43.64961443)}"
-11865,13252,GO-20199017954,THEFT UNDER - BICYCLE,2019-06-08T00:00:00,2019,June,Saturday,8,159,18,2019-06-09T00:00:00,2019,June,Sunday,9,160,15,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,ARISE GEARED 8,OT,8,OTH,1500.0,STOLEN,11853,"{'type': 'Point', 'coordinates': (-79.38596803, 43.65904449)}"
-11866,13254,GO-20199019172,THEFT UNDER,2019-06-17T00:00:00,2019,June,Monday,17,168,16,2019-06-18T00:00:00,2019,June,Tuesday,18,169,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,1,,0.0,STOLEN,11854,"{'type': 'Point', 'coordinates': (-79.38132952, 43.65741605)}"
-11867,13255,GO-20191138244,THEFT UNDER - BICYCLE,2019-06-18T00:00:00,2019,June,Tuesday,18,169,15,2019-06-19T00:00:00,2019,June,Wednesday,19,170,19,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,VADO 3.0,EL,10,GRY,4509.0,STOLEN,11855,"{'type': 'Point', 'coordinates': (-79.37878196, 43.64896093)}"
-11868,13256,GO-20191138244,THEFT UNDER - BICYCLE,2019-06-18T00:00:00,2019,June,Tuesday,18,169,15,2019-06-19T00:00:00,2019,June,Wednesday,19,170,19,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,SPECIALIZED VAD,EL,10,GRY,4600.0,STOLEN,11856,"{'type': 'Point', 'coordinates': (-79.37878196, 43.64896093)}"
-11869,13259,GO-20199020276,THEFT UNDER,2019-06-26T00:00:00,2019,June,Wednesday,26,177,18,2019-06-27T00:00:00,2019,June,Thursday,27,178,11,D52,Toronto,76,Bay Street Corridor (76),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,,MT,18,BLK,80.0,STOLEN,11857,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-11870,13264,GO-20199020982,THEFT UNDER,2019-07-04T00:00:00,2019,July,Thursday,4,185,12,2019-07-04T00:00:00,2019,July,Thursday,4,185,15,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,,RG,24,,600.0,STOLEN,11858,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-11871,13266,GO-20143103411,THEFT UNDER,2014-10-13T00:00:00,2014,October,Monday,13,286,20,2014-10-14T00:00:00,2014,October,Tuesday,14,287,16,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,CRUISER,OT,0,BLK,150.0,STOLEN,11859,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-11872,13267,GO-20143139887,THEFT UNDER,2014-10-17T00:00:00,2014,October,Friday,17,290,10,2014-10-20T00:00:00,2014,October,Monday,20,293,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,CROSSRIP COMP,OT,24,BLK,1500.0,STOLEN,11860,"{'type': 'Point', 'coordinates': (-79.38209114, 43.64961443)}"
-11873,13269,GO-20143176361,THEFT UNDER,2014-10-25T00:00:00,2014,October,Saturday,25,298,13,2014-10-25T00:00:00,2014,October,Saturday,25,298,23,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,AMEGO,BLAST,EL,32,RED,1900.0,STOLEN,11861,"{'type': 'Point', 'coordinates': (-79.38548616, 43.65612775)}"
-11874,13270,GO-20149007897,THEFT UNDER,2014-10-29T00:00:00,2014,October,Wednesday,29,302,19,2014-10-30T00:00:00,2014,October,Thursday,30,303,0,D52,Toronto,76,Bay Street Corridor (76),"Open Areas (Lakes, Parks, Rivers)",Outside,GF,2007,MT,24,CRM,500.0,STOLEN,11862,"{'type': 'Point', 'coordinates': (-79.3888294, 43.66819662)}"
-11875,13271,GO-20143206795,THEFT UNDER,2014-10-27T00:00:00,2014,October,Monday,27,300,14,2014-10-30T00:00:00,2014,October,Thursday,30,303,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,,TR,1,RED,543.0,STOLEN,11863,"{'type': 'Point', 'coordinates': (-79.38338195, 43.66213624)}"
-11876,13272,GO-20143280401,THEFT UNDER,2014-10-24T00:00:00,2014,October,Friday,24,297,12,2014-11-06T00:00:00,2014,November,Thursday,6,310,19,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,CCM,STATIC,OT,0,BLK,460.0,STOLEN,11864,"{'type': 'Point', 'coordinates': (-79.38820648, 43.66681234)}"
-11877,13273,GO-20143284524,THEFT UNDER,2014-11-11T00:00:00,2014,November,Tuesday,11,315,8,2014-11-11T00:00:00,2014,November,Tuesday,11,315,22,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,EL,1,BLK,1300.0,STOLEN,11865,"{'type': 'Point', 'coordinates': (-79.38353872, 43.64792395)}"
-11878,13275,GO-20143287065,THEFT UNDER,2014-11-07T00:00:00,2014,November,Friday,7,311,14,2014-11-12T00:00:00,2014,November,Wednesday,12,316,11,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KONO,HYBIRD,RG,21,BLK,2000.0,RECOVERED,11866,"{'type': 'Point', 'coordinates': (-79.38581514, 43.66081576)}"
-11879,13276,GO-20149008472,THEFT UNDER,2014-11-28T00:00:00,2014,November,Friday,28,332,7,2014-12-01T00:00:00,2014,December,Monday,1,335,12,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,UK,,MT,21,GRY,200.0,STOLEN,11867,"{'type': 'Point', 'coordinates': (-79.38618236, 43.65775862)}"
-11880,13278,GO-20149008530,THEFT UNDER,2014-12-03T00:00:00,2014,December,Wednesday,3,337,19,2014-12-03T00:00:00,2014,December,Wednesday,3,337,23,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,SPECIALE FIXED,RC,1,BLU,1000.0,STOLEN,11868,"{'type': 'Point', 'coordinates': (-79.37968936, 43.64733439)}"
-11881,13280,GO-20149008681,THEFT UNDER,2014-11-25T00:00:00,2014,November,Tuesday,25,329,19,2014-12-10T00:00:00,2014,December,Wednesday,10,344,19,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM 3,MT,8,BLK,500.0,STOLEN,11869,"{'type': 'Point', 'coordinates': (-79.38596803, 43.65904449)}"
-11882,13283,GO-20159000237,THEFT UNDER,2014-12-17T00:00:00,2014,December,Wednesday,17,351,13,2015-01-13T00:00:00,2015,January,Tuesday,13,13,13,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KO,DR. LEW,OT,10,ONG,1500.0,STOLEN,11870,"{'type': 'Point', 'coordinates': (-79.38461112, 43.65044055)}"
-11883,13285,GO-20159001517,THEFT UNDER,2015-03-20T00:00:00,2015,March,Friday,20,79,2,2015-03-24T00:00:00,2015,March,Tuesday,24,83,17,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,UK,HARDROCK,MT,50,BLU,300.0,STOLEN,11871,"{'type': 'Point', 'coordinates': (-79.38712214, 43.65502365)}"
-11884,13286,GO-20159001832,THEFT UNDER,2015-03-26T00:00:00,2015,March,Thursday,26,85,0,2015-04-10T00:00:00,2015,April,Friday,10,100,19,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,ALLEZ SPORT,RC,27,BLK,5000.0,STOLEN,11872,"{'type': 'Point', 'coordinates': (-79.38437564, 43.65730783)}"
-11885,13287,GO-2015587687,THEFT UNDER,2015-04-08T00:00:00,2015,April,Wednesday,8,98,11,2015-04-09T00:00:00,2015,April,Thursday,9,99,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,,OT,24,BLU,1000.0,STOLEN,11873,"{'type': 'Point', 'coordinates': (-79.38771667, 43.66119164)}"
-11886,13288,GO-20159002292,THEFT UNDER,2015-04-21T00:00:00,2015,April,Tuesday,21,111,9,2015-04-27T00:00:00,2015,April,Monday,27,117,11,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,,RG,27,GRN,600.0,STOLEN,11874,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-11887,13290,GO-20159002431,THEFT UNDER,2015-05-04T00:00:00,2015,May,Monday,4,124,12,2015-05-04T00:00:00,2015,May,Monday,4,124,14,D52,Toronto,76,Bay Street Corridor (76),Unknown,Other,TR,1.2,RC,12,WHI,1179.0,STOLEN,11875,"{'type': 'Point', 'coordinates': (-79.38063454, 43.65577409)}"
-11888,13291,GO-20159002436,THEFT UNDER,2015-05-04T00:00:00,2015,May,Monday,4,124,14,2015-05-04T00:00:00,2015,May,Monday,4,124,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,OT,21,GRY,300.0,STOLEN,11876,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-11889,13292,GO-2015745250,THEFT UNDER,2015-04-25T00:00:00,2015,April,Saturday,25,115,9,2015-05-05T00:00:00,2015,May,Tuesday,5,125,10,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,RG,0,WHI,50.0,STOLEN,11877,"{'type': 'Point', 'coordinates': (-79.39098691, 43.66935825)}"
-11890,13296,GO-2015832893,FTC PROBATION ORDER,2015-05-19T00:00:00,2015,May,Tuesday,19,139,9,2015-05-19T00:00:00,2015,May,Tuesday,19,139,10,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BLACKBALL,RACING,OT,99,BLK,,RECOVERED,11878,"{'type': 'Point', 'coordinates': (-79.38411783, 43.66390399)}"
-11891,13297,GO-2015832893,FTC PROBATION ORDER,2015-05-19T00:00:00,2015,May,Tuesday,19,139,9,2015-05-19T00:00:00,2015,May,Tuesday,19,139,10,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,JA,TRAIL X 650,OT,99,GRY,,RECOVERED,11879,"{'type': 'Point', 'coordinates': (-79.38411783, 43.66390399)}"
-11892,13298,GO-20159002947,THEFT UNDER,2015-05-17T00:00:00,2015,May,Sunday,17,137,21,2015-05-20T00:00:00,2015,May,Wednesday,20,140,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,CINDER CONE,RG,21,WHI,0.0,STOLEN,11880,"{'type': 'Point', 'coordinates': (-79.38768427, 43.66564487000001)}"
-11893,13300,GO-2015855546,THEFT UNDER,2015-05-22T00:00:00,2015,May,Friday,22,142,16,2015-05-22T00:00:00,2015,May,Friday,22,142,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,,MT,18,BLK,300.0,STOLEN,11881,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-11894,13301,GO-20159003105,THEFT UNDER,2015-05-25T00:00:00,2015,May,Monday,25,145,19,2015-05-26T00:00:00,2015,May,Tuesday,26,146,12,D52,Toronto,76,Bay Street Corridor (76),"Open Areas (Lakes, Parks, Rivers)",Outside,CA,SYNAPSE,RC,10,BLK,1800.0,STOLEN,11882,"{'type': 'Point', 'coordinates': (-79.37878196, 43.64896093)}"
-11895,13306,GO-20159003371,THEFT UNDER,2015-06-05T00:00:00,2015,June,Friday,5,156,19,2015-06-05T00:00:00,2015,June,Friday,5,156,20,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,DAKAR XCT COMP,MT,24,WHI,1800.0,STOLEN,11883,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-11896,13312,GO-20159003650,THEFT UNDER,2015-06-06T00:00:00,2015,June,Saturday,6,157,21,2015-06-15T00:00:00,2015,June,Monday,15,166,21,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,,RC,18,BLK,750.0,STOLEN,11884,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-11897,13313,GO-20159003667,THEFT UNDER,2015-06-16T00:00:00,2015,June,Tuesday,16,167,8,2015-06-17T00:00:00,2015,June,Wednesday,17,168,8,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,OT,18,BLK,300.0,STOLEN,11885,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-11898,13314,GO-20159003672,THEFT UNDER,2015-06-16T00:00:00,2015,June,Tuesday,16,167,12,2015-06-16T00:00:00,2015,June,Tuesday,16,167,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ALIEN,EL,32,PLE,1000.0,STOLEN,11886,"{'type': 'Point', 'coordinates': (-79.3811853, 43.65703802)}"
-11899,13319,GO-20151138579,THEFT UNDER,2015-07-06T00:00:00,2015,July,Monday,6,187,7,2015-07-06T00:00:00,2015,July,Monday,6,187,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,2200,RC,14,BLK,2000.0,STOLEN,11887,"{'type': 'Point', 'coordinates': (-79.38077050000001, 43.64989242)}"
-11900,13321,GO-20159004359,THEFT UNDER,2015-07-06T00:00:00,2015,July,Monday,6,187,9,2015-07-09T00:00:00,2015,July,Thursday,9,190,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,MOUNTAINEER SL,MT,18,TRQ,0.0,STOLEN,11888,"{'type': 'Point', 'coordinates': (-79.38581514, 43.66081576)}"
-11901,13323,GO-20151330199,THEFT UNDER,2015-08-03T00:00:00,2015,August,Monday,3,215,10,2015-08-03T00:00:00,2015,August,Monday,3,215,22,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CRITICAL,,RG,1,,,STOLEN,11889,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-11902,13326,GO-20159005415,THEFT UNDER,2015-08-06T00:00:00,2015,August,Thursday,6,218,8,2015-08-06T00:00:00,2015,August,Thursday,6,218,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,,OT,1,BLK,600.0,STOLEN,11890,"{'type': 'Point', 'coordinates': (-79.38771667, 43.66119164)}"
-11903,13329,GO-20159005647,THEFT UNDER,2015-08-01T00:00:00,2015,August,Saturday,1,213,16,2015-08-11T00:00:00,2015,August,Tuesday,11,223,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,THRESHOLD,TO,18,RED,1102.0,STOLEN,11891,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-11904,13330,GO-20151446970,THEFT UNDER,2015-08-18T00:00:00,2015,August,Tuesday,18,230,17,2015-08-22T00:00:00,2015,August,Saturday,22,234,17,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SCHWINN,MENS,MT,21,WHI,,STOLEN,11892,"{'type': 'Point', 'coordinates': (-79.38338679, 43.64508285)}"
-11905,13332,GO-20151463112,B&E,2015-08-22T00:00:00,2015,August,Saturday,22,234,2,2015-08-25T00:00:00,2015,August,Tuesday,25,237,20,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OTHER,,TO,10,,1200.0,STOLEN,11893,"{'type': 'Point', 'coordinates': (-79.38671683, 43.66779)}"
-11906,13334,GO-20159006592,THEFT UNDER,2015-08-31T00:00:00,2015,August,Monday,31,243,9,2015-09-01T00:00:00,2015,September,Tuesday,1,244,11,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,,RG,10,RED,130.0,STOLEN,11894,"{'type': 'Point', 'coordinates': (-79.3802391, 43.64865033)}"
-11907,13335,GO-20159006615,THEFT UNDER,2015-09-01T00:00:00,2015,September,Tuesday,1,244,10,2015-09-01T00:00:00,2015,September,Tuesday,1,244,14,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,RM,VAPOR,MT,27,YEL,700.0,STOLEN,11895,"{'type': 'Point', 'coordinates': (-79.38632177, 43.65593978)}"
-11908,13342,GO-20151644465,THEFT UNDER,2015-09-21T00:00:00,2015,September,Monday,21,264,9,2015-09-23T00:00:00,2015,September,Wednesday,23,266,10,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,OTHER,,OT,0,BLK,150.0,STOLEN,11896,"{'type': 'Point', 'coordinates': (-79.38702746, 43.66853925)}"
-11909,13343,GO-20151650310,THEFT UNDER,2015-09-15T00:00:00,2015,September,Tuesday,15,258,17,2015-09-24T00:00:00,2015,September,Thursday,24,267,9,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,SCHWINN,,OT,0,GRY,100.0,STOLEN,11897,"{'type': 'Point', 'coordinates': (-79.38820648, 43.66681234)}"
-11910,13345,GO-20151824363,THEFT UNDER,2015-10-21T00:00:00,2015,October,Wednesday,21,294,16,2015-10-23T00:00:00,2015,October,Friday,23,296,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KHS,URBAN SOUL,RG,1,BLK,400.0,STOLEN,11898,"{'type': 'Point', 'coordinates': (-79.38640575, 43.65337704000001)}"
-11911,13346,GO-20159009423,THEFT UNDER,2015-10-28T00:00:00,2015,October,Wednesday,28,301,9,2015-11-05T00:00:00,2015,November,Thursday,5,309,22,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,TOWNIE,RG,14,BLK,0.0,STOLEN,11899,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-11912,13348,GO-20151966713,THEFT UNDER,2015-11-13T00:00:00,2015,November,Friday,13,317,19,2015-11-16T00:00:00,2015,November,Monday,16,320,12,D52,Toronto,76,Bay Street Corridor (76),Convenience Stores,Commercial,NEXT,,MT,18,BLK,120.0,STOLEN,11900,"{'type': 'Point', 'coordinates': (-79.38737611, 43.66847728)}"
-11913,13350,GO-20152123044,THEFT UNDER,2015-11-23T00:00:00,2015,November,Monday,23,327,16,2015-12-11T00:00:00,2015,December,Friday,11,345,14,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,OTHER,,MT,0,WHI,700.0,STOLEN,11901,"{'type': 'Point', 'coordinates': (-79.38739744, 43.65571903)}"
-11914,13355,GO-20152212644,THEFT UNDER,2015-12-26T00:00:00,2015,December,Saturday,26,360,19,2015-12-26T00:00:00,2015,December,Saturday,26,360,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,OT,0,,,STOLEN,11902,"{'type': 'Point', 'coordinates': (-79.38664264, 43.6606615)}"
-11915,13358,GO-20169002203,THEFT UNDER,2016-03-10T00:00:00,2016,March,Thursday,10,70,20,2016-03-10T00:00:00,2016,March,Thursday,10,70,22,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,2012 LEXA SLX,OT,10,GRY,1800.0,STOLEN,11903,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11916,13359,GO-20169002917,THEFT UNDER - BICYCLE,2016-03-23T00:00:00,2016,March,Wednesday,23,83,17,2016-03-30T00:00:00,2016,March,Wednesday,30,90,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,BRISTOL 2014,OT,18,BLU,600.0,STOLEN,11904,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-11917,13360,GO-2016544677,THEFT UNDER - BICYCLE,2016-03-23T00:00:00,2016,March,Wednesday,23,83,15,2016-03-31T00:00:00,2016,March,Thursday,31,91,11,D52,Toronto,76,Bay Street Corridor (76),"Police / Courts (Parole Board, Probation Office)",Other,CCM,,OT,1,BLU,80.0,STOLEN,11905,"{'type': 'Point', 'coordinates': (-79.38167842, 43.65189355)}"
-11918,13361,GO-2016578151,THEFT UNDER,2016-03-27T00:00:00,2016,March,Sunday,27,87,16,2016-04-05T00:00:00,2016,April,Tuesday,5,96,15,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,CANNONDALE,,OT,0,BLKWHI,1700.0,STOLEN,11906,"{'type': 'Point', 'coordinates': (-79.38482092, 43.65454718)}"
-11919,13363,GO-2016607896,THEFT UNDER - BICYCLE,2016-04-10T00:00:00,2016,April,Sunday,10,101,7,2016-04-14T00:00:00,2016,April,Thursday,14,105,10,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,,OT,10,,,STOLEN,11907,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-11920,13365,GO-20169003573,THEFT UNDER,2016-04-13T00:00:00,2016,April,Wednesday,13,104,0,2016-04-19T00:00:00,2016,April,Tuesday,19,110,13,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,MAMBA,MT,32,BLK,1200.0,STOLEN,11908,"{'type': 'Point', 'coordinates': (-79.39045505, 43.65985872)}"
-11921,13369,GO-2016730127,THEFT UNDER,2016-04-28T00:00:00,2016,April,Thursday,28,119,13,2016-04-29T00:00:00,2016,April,Friday,29,120,9,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,,RG,21,,1500.0,STOLEN,11909,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-11922,12123,GO-20169008956,THEFT UNDER,2016-08-16T00:00:00,2016,August,Tuesday,16,229,17,2016-08-17T00:00:00,2016,August,Wednesday,17,230,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,RUSH HOUR,RG,1,SIL,600.0,STOLEN,11910,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-11923,12124,GO-20161459288,THEFT UNDER - BICYCLE,2016-08-06T00:00:00,2016,August,Saturday,6,219,7,2016-08-18T00:00:00,2016,August,Thursday,18,231,8,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,TREK,4500,OT,0,PLE,400.0,STOLEN,11911,"{'type': 'Point', 'coordinates': (-79.39219449, 43.66603246)}"
-11924,12137,GO-20169009043,THEFT UNDER,2016-08-12T00:00:00,2016,August,Friday,12,225,9,2016-08-19T00:00:00,2016,August,Friday,19,232,9,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,,RG,15,,60.0,STOLEN,11912,"{'type': 'Point', 'coordinates': (-79.38640575, 43.65337704000001)}"
-11925,12140,GO-20161473016,THEFT UNDER - BICYCLE,2016-08-20T00:00:00,2016,August,Saturday,20,233,1,2016-08-20T00:00:00,2016,August,Saturday,20,233,8,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,RALEIGH,,OT,21,BLUWHI,,STOLEN,11913,"{'type': 'Point', 'coordinates': (-79.3863755, 43.65817391)}"
-11926,12165,GO-20169009154,THEFT UNDER,2016-08-22T00:00:00,2016,August,Monday,22,235,11,2016-08-22T00:00:00,2016,August,Monday,22,235,18,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,16 ALIGHT1,RG,24,BLK,1020.0,STOLEN,11914,"{'type': 'Point', 'coordinates': (-79.38124592, 43.65320661)}"
-11927,12176,GO-20169009278,THEFT UNDER,2016-08-22T00:00:00,2016,August,Monday,22,235,9,2016-08-22T00:00:00,2016,August,Monday,22,235,19,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,HARDROCK,MT,21,BLK,700.0,STOLEN,11915,"{'type': 'Point', 'coordinates': (-79.3802391, 43.64865033)}"
-11928,12197,GO-20169009467,THEFT UNDER - BICYCLE,2016-08-25T00:00:00,2016,August,Thursday,25,238,8,2016-08-26T00:00:00,2016,August,Friday,26,239,8,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,RG,8,BLU,700.0,STOLEN,11916,"{'type': 'Point', 'coordinates': (-79.38103127, 43.65056603)}"
-11929,12204,GO-20169009511,THEFT UNDER,2016-08-26T00:00:00,2016,August,Friday,26,239,17,2016-08-26T00:00:00,2016,August,Friday,26,239,22,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,CUSTOM,RG,1,BLK,700.0,STOLEN,11917,"{'type': 'Point', 'coordinates': (-79.37921925, 43.65243969)}"
-11930,12218,GO-20169009616,THEFT UNDER - BICYCLE,2016-08-28T00:00:00,2016,August,Sunday,28,241,22,2016-08-28T00:00:00,2016,August,Sunday,28,241,23,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,BAD BOY 1 BIKE,RG,30,BLK,1699.0,STOLEN,11918,"{'type': 'Point', 'coordinates': (-79.39410211, 43.66871992)}"
-11931,12230,GO-20169009667,THEFT UNDER,2016-08-26T00:00:00,2016,August,Friday,26,239,22,2016-08-29T00:00:00,2016,August,Monday,29,242,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,REVEL,RG,21,BLK,0.0,STOLEN,11919,"{'type': 'Point', 'coordinates': (-79.38737611, 43.66847728)}"
-11932,12258,GO-20169009780,THEFT UNDER - SHOPLIFTING,2016-08-30T00:00:00,2016,August,Tuesday,30,243,11,2016-08-31T00:00:00,2016,August,Wednesday,31,244,17,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,FENIX,MT,20,YEL,2500.0,STOLEN,11920,"{'type': 'Point', 'coordinates': (-79.39098691, 43.66935825)}"
-11933,12269,GO-20169010013,THEFT UNDER - BICYCLE,2016-09-05T00:00:00,2016,September,Monday,5,249,20,2016-09-06T00:00:00,2016,September,Tuesday,6,250,8,D52,Toronto,76,Bay Street Corridor (76),Schools During Un-Supervised Activity,Educational,SC,SCH 700C VOLARE,RC,14,YEL,448.0,STOLEN,11921,"{'type': 'Point', 'coordinates': (-79.38482092, 43.65454718)}"
-11934,12274,GO-20169010055,THEFT OF EBIKE OVER $5000,2016-09-06T00:00:00,2016,September,Tuesday,6,250,16,2016-09-06T00:00:00,2016,September,Tuesday,6,250,18,D52,Toronto,76,Bay Street Corridor (76),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,EM,MONSTER,EL,3,BLK,1600.0,STOLEN,11922,"{'type': 'Point', 'coordinates': (-79.38262593, 43.65086783)}"
-11935,12275,GO-20169010071,THEFT UNDER - BICYCLE,2016-09-06T00:00:00,2016,September,Tuesday,6,250,9,2016-09-06T00:00:00,2016,September,Tuesday,6,250,21,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UK,BOLD,EL,7,WHI,2400.0,STOLEN,11923,"{'type': 'Point', 'coordinates': (-79.38739744, 43.65571903)}"
-11936,12313,GO-20169010234,THEFT UNDER - BICYCLE,2016-09-09T00:00:00,2016,September,Friday,9,253,17,2016-09-10T00:00:00,2016,September,Saturday,10,254,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,,RC,3,BLK,150.0,STOLEN,11924,"{'type': 'Point', 'coordinates': (-79.37968936, 43.64733439)}"
-11937,12320,GO-20161623917,THEFT UNDER - BICYCLE,2016-09-02T00:00:00,2016,September,Friday,2,246,14,2016-09-12T00:00:00,2016,September,Monday,12,256,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DIAMONDBACK,HYBRID,MT,15,YEL,200.0,STOLEN,11925,"{'type': 'Point', 'coordinates': (-79.38985793, 43.66170517)}"
-11938,12329,GO-20169010373,THEFT UNDER,2016-09-12T00:00:00,2016,September,Monday,12,256,15,2016-09-13T00:00:00,2016,September,Tuesday,13,257,15,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,GI,TRANSEND,TO,8,CPR,600.0,STOLEN,11926,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-11939,12334,GO-20169010396,THEFT UNDER,2016-09-13T00:00:00,2016,September,Tuesday,13,257,6,2016-09-14T00:00:00,2016,September,Wednesday,14,258,7,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,7.6 FX WSD 19 I,RG,21,BLK,1350.0,STOLEN,11927,"{'type': 'Point', 'coordinates': (-79.38124592, 43.65320661)}"
-11940,12340,GO-20161636904,ASSAULT,2016-09-14T00:00:00,2016,September,Wednesday,14,258,18,2016-09-14T00:00:00,2016,September,Wednesday,14,258,18,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,NORCO,VALENCE,RC,12,BLK,,STOLEN,11928,"{'type': 'Point', 'coordinates': (-79.3888294, 43.66819662)}"
-11941,12364,GO-20169010550,THEFT UNDER - BICYCLE,2016-09-16T00:00:00,2016,September,Friday,16,260,8,2016-09-16T00:00:00,2016,September,Friday,16,260,15,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,FAST TRAC,RG,20,BLK,1500.0,STOLEN,11929,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-11942,12369,GO-20169010597,THEFT UNDER - BICYCLE,2016-09-17T00:00:00,2016,September,Saturday,17,261,16,2016-09-17T00:00:00,2016,September,Saturday,17,261,16,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,YEL,300.0,STOLEN,11930,"{'type': 'Point', 'coordinates': (-79.38808613, 43.66653345)}"
-11943,12402,GO-20161667828,THEFT UNDER - BICYCLE,2016-09-15T00:00:00,2016,September,Thursday,15,259,22,2016-09-19T00:00:00,2016,September,Monday,19,263,14,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,UNKNOWN,MT,11,BLK,800.0,STOLEN,11931,"{'type': 'Point', 'coordinates': (-79.38820648, 43.66681234)}"
-11944,12415,GO-20161677921,THEFT UNDER - BICYCLE,2016-09-20T00:00:00,2016,September,Tuesday,20,264,16,2016-09-21T00:00:00,2016,September,Wednesday,21,265,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,,OT,3,LBL,500.0,STOLEN,11932,"{'type': 'Point', 'coordinates': (-79.38551636, 43.64886856)}"
-11945,12417,GO-20169010859,THEFT UNDER - BICYCLE,2016-09-21T00:00:00,2016,September,Wednesday,21,265,8,2016-09-21T00:00:00,2016,September,Wednesday,21,265,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,HARDROCK,MT,21,BLK,580.0,STOLEN,11933,"{'type': 'Point', 'coordinates': (-79.38601979, 43.65524051)}"
-11946,12421,GO-20169010875,THEFT UNDER - BICYCLE,2016-09-21T00:00:00,2016,September,Wednesday,21,265,13,2016-09-22T00:00:00,2016,September,Thursday,22,266,1,D52,Toronto,76,Bay Street Corridor (76),Go Station,Transit,CC,700C,OT,30,BLK,339.0,STOLEN,11934,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-11947,12444,GO-20169011053,THEFT UNDER,2016-09-19T00:00:00,2016,September,Monday,19,263,23,2016-09-24T00:00:00,2016,September,Saturday,24,268,23,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,GT,,RG,18,GRY,1200.0,STOLEN,11935,"{'type': 'Point', 'coordinates': (-79.38673938, 43.66335885)}"
-11948,12470,GO-20169011184,THEFT UNDER - BICYCLE,2016-09-22T00:00:00,2016,September,Thursday,22,266,17,2016-09-27T00:00:00,2016,September,Tuesday,27,271,14,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,CC,,RG,70,LBL,150.0,STOLEN,11936,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11949,12473,GO-20169011197,THEFT UNDER,2016-09-26T00:00:00,2016,September,Monday,26,270,20,2016-09-27T00:00:00,2016,September,Tuesday,27,271,16,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,35,BLU,5000.0,STOLEN,11937,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-11950,12556,GO-20161768311,THEFT UNDER - BICYCLE,2016-10-04T00:00:00,2016,October,Tuesday,4,278,14,2016-10-05T00:00:00,2016,October,Wednesday,5,279,1,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,ATX777,MT,15,BLKBLU,1500.0,STOLEN,11938,"{'type': 'Point', 'coordinates': (-79.38491403, 43.66584039)}"
-11951,12558,GO-20169011612,THEFT UNDER - BICYCLE,2016-10-05T00:00:00,2016,October,Wednesday,5,279,8,2016-10-05T00:00:00,2016,October,Wednesday,5,279,17,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,RA,,MT,18,RED,400.0,STOLEN,11939,"{'type': 'Point', 'coordinates': (-79.38747649, 43.65067257)}"
-11952,12561,GO-20161774817,THEFT UNDER - BICYCLE,2016-10-04T00:00:00,2016,October,Tuesday,4,278,15,2016-10-05T00:00:00,2016,October,Wednesday,5,279,23,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,OT,21,BLUWHI,500.0,STOLEN,11940,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11953,12571,GO-20169011677,THEFT UNDER - BICYCLE,2016-10-06T00:00:00,2016,October,Thursday,6,280,20,2016-10-07T00:00:00,2016,October,Friday,7,281,0,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,GTX-2 7000,OT,21,SIL,399.0,STOLEN,11941,"{'type': 'Point', 'coordinates': (-79.38374902, 43.66302137000001)}"
-11954,12597,GO-20169011926,THEFT UNDER - BICYCLE,2016-10-11T00:00:00,2016,October,Tuesday,11,285,11,2016-10-12T00:00:00,2016,October,Wednesday,12,286,11,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,FX 7.3,OT,12,BLK,850.0,STOLEN,11942,"{'type': 'Point', 'coordinates': (-79.38353872, 43.64792395)}"
-11955,12607,GO-20161821673,THEFT UNDER,2016-10-13T00:00:00,2016,October,Thursday,13,287,11,2016-10-13T00:00:00,2016,October,Thursday,13,287,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MARIN OR MARINO,MILL VALLEY,OT,18,,,STOLEN,11943,"{'type': 'Point', 'coordinates': (-79.38374902, 43.66302137000001)}"
-11956,12616,GO-20169012062,THEFT OF EBIKE UNDER $5000,2016-10-14T00:00:00,2016,October,Friday,14,288,8,2016-10-14T00:00:00,2016,October,Friday,14,288,21,D52,Toronto,76,Bay Street Corridor (76),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,OT,500 W AND 48 V,EL,30,YEL,1400.0,STOLEN,11944,"{'type': 'Point', 'coordinates': (-79.38262593, 43.65086783)}"
-11957,12628,GO-20169012134,THEFT UNDER - BICYCLE,2016-10-14T00:00:00,2016,October,Friday,14,288,14,2016-10-16T00:00:00,2016,October,Sunday,16,290,17,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,16,YEL,500.0,STOLEN,11945,"{'type': 'Point', 'coordinates': (-79.38491403, 43.66584039)}"
-11958,12629,GO-20161844971,THEFT UNDER - BICYCLE,2016-10-17T00:00:00,2016,October,Monday,17,291,6,2016-10-17T00:00:00,2016,October,Monday,17,291,7,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKOWN,,OT,0,BLK,,STOLEN,11946,"{'type': 'Point', 'coordinates': (-79.38714344, 43.66436762)}"
-11959,12639,GO-20169012276,THEFT UNDER,2016-10-18T00:00:00,2016,October,Tuesday,18,292,21,2016-10-19T00:00:00,2016,October,Wednesday,19,293,5,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,THE ROMEO,RG,1,WHI,508.0,STOLEN,11947,"{'type': 'Point', 'coordinates': (-79.38820648, 43.66681234)}"
-11960,12641,GO-20161860567,THEFT UNDER - BICYCLE,2016-10-19T00:00:00,2016,October,Wednesday,19,293,0,2016-10-19T00:00:00,2016,October,Wednesday,19,293,14,D52,Toronto,76,Bay Street Corridor (76),Ttc Subway Station,Transit,IRON HORSE,BMX,MT,21,,300.0,STOLEN,11948,"{'type': 'Point', 'coordinates': (-79.38985793, 43.66170517)}"
-11961,12660,GO-20169012415,THEFT UNDER,2016-10-21T00:00:00,2016,October,Friday,21,295,15,2016-10-21T00:00:00,2016,October,Friday,21,295,19,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,SU,,RG,5,BLK,0.0,STOLEN,11949,"{'type': 'Point', 'coordinates': (-79.37968936, 43.64733439)}"
-11962,12678,GO-20169012614,THEFT UNDER - BICYCLE,2016-10-25T00:00:00,2016,October,Tuesday,25,299,20,2016-10-26T00:00:00,2016,October,Wednesday,26,300,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,1.2 TRIPLE 2009,RC,12,BLU,1000.0,STOLEN,11950,"{'type': 'Point', 'coordinates': (-79.39410211, 43.66871992)}"
-11963,12701,GO-20161933983,THEFT UNDER - BICYCLE,2016-10-15T00:00:00,2016,October,Saturday,15,289,12,2016-10-31T00:00:00,2016,October,Monday,31,305,9,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,SUPERCYCLE,,MT,0,REDBLK,1000.0,STOLEN,11951,"{'type': 'Point', 'coordinates': (-79.39038732, 43.66791603)}"
-11964,12713,GO-20169012913,THEFT UNDER,2016-11-01T00:00:00,2016,November,Tuesday,1,306,14,2016-11-02T00:00:00,2016,November,Wednesday,2,307,21,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,2012 VENTURA SP,RC,20,,800.0,STOLEN,11952,"{'type': 'Point', 'coordinates': (-79.37903365, 43.65028111)}"
-11965,12719,GO-20169012948,THEFT UNDER - BICYCLE,2016-11-02T00:00:00,2016,November,Wednesday,2,307,13,2016-11-03T00:00:00,2016,November,Thursday,3,308,15,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,EM,URBAN 2.0,EL,31,BLK,1500.0,STOLEN,11953,"{'type': 'Point', 'coordinates': (-79.38985793, 43.66170517)}"
-11966,12725,GO-20169012979,THEFT UNDER - BICYCLE,2016-11-04T00:00:00,2016,November,Friday,4,309,9,2016-11-04T00:00:00,2016,November,Friday,4,309,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MANTRA,RG,1,CRM,300.0,STOLEN,11954,"{'type': 'Point', 'coordinates': (-79.38467283, 43.65807476)}"
-11967,12733,GO-20169013097,THEFT UNDER - BICYCLE,2016-11-07T00:00:00,2016,November,Monday,7,312,13,2016-11-07T00:00:00,2016,November,Monday,7,312,18,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,BAD BOY 3,RG,27,BLK,1500.0,STOLEN,11955,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-11968,24884,GO-20159005744,THEFT UNDER,2015-08-15T00:00:00,2015,August,Saturday,15,227,17,2015-08-15T00:00:00,2015,August,Saturday,15,227,23,D52,Toronto,76,Bay Street Corridor (76),"Open Areas (Lakes, Parks, Rivers)",Outside,TR,,RG,21,,800.0,STOLEN,12865,"{'type': 'Point', 'coordinates': (-79.38124592, 43.65320661)}"
-11969,12746,GO-20169013237,THEFT UNDER,2016-11-09T00:00:00,2016,November,Wednesday,9,314,13,2016-11-10T00:00:00,2016,November,Thursday,10,315,18,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,E-BIKE,EL,1,BLK,1200.0,STOLEN,11956,"{'type': 'Point', 'coordinates': (-79.38260155, 43.6529703)}"
-11970,12765,GO-20169013444,THEFT UNDER - BICYCLE,2016-11-08T00:00:00,2016,November,Tuesday,8,313,6,2016-11-15T00:00:00,2016,November,Tuesday,15,320,12,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SC,,MT,24,WHI,700.0,STOLEN,11957,"{'type': 'Point', 'coordinates': (-79.38476701, 43.64766165)}"
-11971,12776,GO-20162044031,THEFT UNDER - BICYCLE,2016-11-04T00:00:00,2016,November,Friday,4,309,11,2016-11-17T00:00:00,2016,November,Thursday,17,322,15,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,REEBOK,,MT,0,,450.0,STOLEN,11958,"{'type': 'Point', 'coordinates': (-79.38482092, 43.65454718)}"
-11972,12811,GO-20169013723,THEFT UNDER,2016-11-21T00:00:00,2016,November,Monday,21,326,7,2016-11-22T00:00:00,2016,November,Tuesday,22,327,9,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,VOLAIRE,RC,14,WHI,500.0,STOLEN,11959,"{'type': 'Point', 'coordinates': (-79.38063454, 43.65577409)}"
-11973,12812,GO-20169013732,THEFT UNDER - BICYCLE,2016-11-22T00:00:00,2016,November,Tuesday,22,327,13,2016-11-22T00:00:00,2016,November,Tuesday,22,327,15,D51,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RM,FUSION,MT,21,GRY,1400.0,STOLEN,11960,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-11974,12831,GO-20169013995,THEFT UNDER - BICYCLE,2016-11-20T00:00:00,2016,November,Sunday,20,325,13,2016-11-29T00:00:00,2016,November,Tuesday,29,334,13,D52,Toronto,76,Bay Street Corridor (76),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,RG,1,YEL,800.0,STOLEN,11961,"{'type': 'Point', 'coordinates': (-79.38634339, 43.66246955)}"
-11975,12850,GO-20169014245,THEFT UNDER,2016-12-02T00:00:00,2016,December,Friday,2,337,21,2016-12-05T00:00:00,2016,December,Monday,5,340,15,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,THRESHOLD,RC,20,BLU,3000.0,STOLEN,11962,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-11976,13099,GO-20179014408,THEFT UNDER,2017-09-09T00:00:00,2017,September,Saturday,9,252,20,2017-09-10T00:00:00,2017,September,Sunday,10,253,16,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,SC,APHRODITE,MT,21,GRY,0.0,STOLEN,11978,"{'type': 'Point', 'coordinates': (-79.39219449, 43.66603246)}"
-11977,13066,GO-20179009551,THEFT UNDER - BICYCLE,2016-06-19T00:00:00,2016,June,Sunday,19,171,10,2017-07-07T00:00:00,2017,July,Friday,7,188,2,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,EM,,SC,32,BLK,2800.0,STOLEN,11963,"{'type': 'Point', 'coordinates': (-79.38581514, 43.66081576)}"
-11978,13069,GO-20179009976,THEFT UNDER - BICYCLE,2017-07-11T00:00:00,2017,July,Tuesday,11,192,10,2017-07-11T00:00:00,2017,July,Tuesday,11,192,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DB,HYBRID,RG,12,,150.0,STOLEN,11964,"{'type': 'Point', 'coordinates': (-79.38714344, 43.66436762)}"
-11979,13073,GO-20179010559,THEFT UNDER,2017-07-18T00:00:00,2017,July,Tuesday,18,199,23,2017-07-19T00:00:00,2017,July,Wednesday,19,200,0,D52,Toronto,76,Bay Street Corridor (76),Unknown,Other,NO,,RG,1,BLK,0.0,STOLEN,11965,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11980,13074,GO-20179010706,THEFT UNDER,2017-07-20T00:00:00,2017,July,Thursday,20,201,11,2017-07-20T00:00:00,2017,July,Thursday,20,201,20,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,GI,2016 ESCAPE 3 L,RG,20,BLK,500.0,STOLEN,11966,"{'type': 'Point', 'coordinates': (-79.38338195, 43.66213624)}"
-11981,13075,GO-20179010765,THEFT UNDER - BICYCLE,2017-07-15T00:00:00,2017,July,Saturday,15,196,2,2017-07-20T00:00:00,2017,July,Thursday,20,201,23,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,MT,21,WHI,1200.0,STOLEN,11967,"{'type': 'Point', 'coordinates': (-79.38596803, 43.65904449)}"
-11982,13076,GO-20179011041,THEFT UNDER - BICYCLE,2017-07-25T00:00:00,2017,July,Tuesday,25,206,20,2017-07-26T00:00:00,2017,July,Wednesday,26,207,12,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,RA,"BACK ALLEY""""",RG,1,BLK,520.0,STOLEN,11968,"{'type': 'Point', 'coordinates': (-79.38714344, 43.66436762)}"
-11983,13078,GO-20179011231,THEFT UNDER,2017-07-27T00:00:00,2017,July,Thursday,27,208,11,2017-07-28T00:00:00,2017,July,Friday,28,209,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,IH,,MT,21,,500.0,STOLEN,11969,"{'type': 'Point', 'coordinates': (-79.38712214, 43.65502365)}"
-11984,13083,GO-20171457939,THEFT UNDER,2017-08-08T00:00:00,2017,August,Tuesday,8,220,14,2017-08-13T00:00:00,2017,August,Sunday,13,225,4,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,SCOOTER,SC,1,LBL,3000.0,STOLEN,11970,"{'type': 'Point', 'coordinates': (-79.38209114, 43.64961443)}"
-11985,13084,GO-20179012408,THEFT UNDER,2017-07-31T00:00:00,2017,July,Monday,31,212,17,2017-08-14T00:00:00,2017,August,Monday,14,226,19,D52,Toronto,76,Bay Street Corridor (76),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,RG,24,GRY,0.0,STOLEN,11971,"{'type': 'Point', 'coordinates': (-79.38714344, 43.66436762)}"
-11986,13085,GO-20179012440,THEFT UNDER - BICYCLE,2017-08-15T00:00:00,2017,August,Tuesday,15,227,2,2017-08-15T00:00:00,2017,August,Tuesday,15,227,10,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BI,BIANCHI,OT,21,DBL,1000.0,STOLEN,11972,"{'type': 'Point', 'coordinates': (-79.37894504, 43.65169174)}"
-11987,13087,GO-20179012471,THEFT UNDER - BICYCLE,2017-08-14T00:00:00,2017,August,Monday,14,226,8,2017-08-15T00:00:00,2017,August,Tuesday,15,227,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,RG,21,WHI,500.0,STOLEN,11973,"{'type': 'Point', 'coordinates': (-79.38103127, 43.65056603)}"
-11988,13089,GO-20179012718,THEFT UNDER - BICYCLE,2017-08-16T00:00:00,2017,August,Wednesday,16,228,19,2017-08-18T00:00:00,2017,August,Friday,18,230,11,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KH,FLITE 100,RC,1,BLK,600.0,STOLEN,11974,"{'type': 'Point', 'coordinates': (-79.38103127, 43.65056603)}"
-11989,13091,GO-20179013439,THEFT UNDER,2017-08-26T00:00:00,2017,August,Saturday,26,238,18,2017-08-27T00:00:00,2017,August,Sunday,27,239,0,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,700C GTX 2,RG,21,RED,550.0,STOLEN,11975,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-11990,13095,GO-20179013582,THEFT UNDER - BICYCLE,2017-08-28T00:00:00,2017,August,Monday,28,240,8,2017-08-29T00:00:00,2017,August,Tuesday,29,241,9,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,RG,8,,600.0,STOLEN,11976,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-11991,13098,GO-20171632507,THEFT OF EBIKE UNDER $5000,2017-09-08T00:00:00,2017,September,Friday,8,251,15,2017-09-09T00:00:00,2017,September,Saturday,9,252,7,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,EBXOB,EL,30,REDBLK,1350.0,STOLEN,11977,"{'type': 'Point', 'coordinates': (-79.38596803, 43.65904449)}"
-11992,12608,GO-20169011903,THEFT UNDER,2016-10-11T00:00:00,2016,October,Tuesday,11,285,13,2016-10-11T00:00:00,2016,October,Tuesday,11,285,18,D52,Toronto,77,Waterfront Communities-The Island (77),Go Station,Transit,SC,,MT,21,,260.0,STOLEN,13802,"{'type': 'Point', 'coordinates': (-79.37646324, 43.64578351)}"
-11993,13107,GO-20179015976,THEFT UNDER - BICYCLE,2017-09-19T00:00:00,2017,September,Tuesday,19,262,16,2017-09-28T00:00:00,2017,September,Thursday,28,271,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,20,LBL,600.0,STOLEN,11979,"{'type': 'Point', 'coordinates': (-79.39054537, 43.66944743)}"
-11994,13108,GO-20179016147,THEFT UNDER - BICYCLE,2017-09-28T00:00:00,2017,September,Thursday,28,271,10,2017-09-30T00:00:00,2017,September,Saturday,30,273,11,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,21,WHI,450.0,STOLEN,11980,"{'type': 'Point', 'coordinates': (-79.38820648, 43.66681234)}"
-11995,13109,GO-20179016147,THEFT UNDER - BICYCLE,2017-09-28T00:00:00,2017,September,Thursday,28,271,10,2017-09-30T00:00:00,2017,September,Saturday,30,273,11,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,21,BLK,1600.0,STOLEN,11981,"{'type': 'Point', 'coordinates': (-79.38820648, 43.66681234)}"
-11996,13111,GO-20179016469,THEFT UNDER - BICYCLE,2017-10-03T00:00:00,2017,October,Tuesday,3,276,19,2017-10-04T00:00:00,2017,October,Wednesday,4,277,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,FIXIE,OT,1,BLK,650.0,STOLEN,11982,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-11997,13112,GO-20179016744,THEFT UNDER - BICYCLE,2017-09-27T00:00:00,2017,September,Wednesday,27,270,9,2017-10-08T00:00:00,2017,October,Sunday,8,281,15,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,RG,1,BLK,750.0,STOLEN,11983,"{'type': 'Point', 'coordinates': (-79.38581514, 43.66081576)}"
-11998,13113,GO-20179016783,THEFT UNDER - BICYCLE,2017-10-08T00:00:00,2017,October,Sunday,8,281,18,2017-10-09T00:00:00,2017,October,Monday,9,282,10,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GT,TACANA 2,MT,27,BLK,2000.0,STOLEN,11984,"{'type': 'Point', 'coordinates': (-79.38820648, 43.66681234)}"
-11999,13125,GO-20179019443,THEFT UNDER - BICYCLE,2017-11-11T00:00:00,2017,November,Saturday,11,315,12,2017-11-12T00:00:00,2017,November,Sunday,12,316,17,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,UK,ROCK HOPPER,MT,24,BLK,719.0,STOLEN,11985,"{'type': 'Point', 'coordinates': (-79.38820648, 43.66681234)}"
-12000,13126,GO-20179019488,THEFT UNDER - BICYCLE,2017-11-10T00:00:00,2017,November,Friday,10,314,7,2017-11-13T00:00:00,2017,November,Monday,13,317,12,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,FLUX 3.0 M,MT,24,,800.0,STOLEN,11986,"{'type': 'Point', 'coordinates': (-79.38827434000001, 43.65479006)}"
-12001,13129,GO-20179020325,THEFT UNDER - BICYCLE,2017-11-22T00:00:00,2017,November,Wednesday,22,326,19,2017-11-22T00:00:00,2017,November,Wednesday,22,326,22,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MONTREAL,RG,7,BLK,600.0,STOLEN,11987,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-12002,13130,GO-20179020890,THEFT UNDER - BICYCLE,2017-11-28T00:00:00,2017,November,Tuesday,28,332,18,2017-11-30T00:00:00,2017,November,Thursday,30,334,0,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,DEWEY,RG,24,BLU,600.0,STOLEN,11988,"{'type': 'Point', 'coordinates': (-79.38411783, 43.66390399)}"
-12003,13132,GO-20173157288,THEFT UNDER - BICYCLE,2017-12-04T00:00:00,2017,December,Monday,4,338,15,2017-12-08T00:00:00,2017,December,Friday,8,342,15,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,,MT,21,RED,,STOLEN,11989,"{'type': 'Point', 'coordinates': (-79.38740686, 43.66497543)}"
-12004,13133,GO-20179021726,THEFT UNDER,2017-12-06T00:00:00,2017,December,Wednesday,6,340,21,2017-12-09T00:00:00,2017,December,Saturday,9,343,6,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,UNKNOWN,BM,30,BLU,500.0,STOLEN,11990,"{'type': 'Point', 'coordinates': (-79.38605934000002, 43.6615638)}"
-12005,13136,GO-201894870,THEFT UNDER - BICYCLE,2017-10-27T00:00:00,2017,October,Friday,27,300,10,2018-01-16T00:00:00,2018,January,Tuesday,16,16,8,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,RALEIGH,MISCEO TRAIL,OT,30,RED,500.0,STOLEN,11991,"{'type': 'Point', 'coordinates': (-79.38737611, 43.66847728)}"
-12006,13137,GO-2018103175,THEFT UNDER,2017-10-25T00:00:00,2017,October,Wednesday,25,298,13,2018-01-17T00:00:00,2018,January,Wednesday,17,17,14,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,URBAN,XCAPE,MT,0,,463.0,STOLEN,11992,"{'type': 'Point', 'coordinates': (-79.39348694, 43.66726478)}"
-12007,13138,GO-20189002021,THEFT UNDER - BICYCLE,2018-01-21T00:00:00,2018,January,Sunday,21,21,16,2018-01-22T00:00:00,2018,January,Monday,22,22,4,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,KO,BANDWAGON,RG,1,LBL,500.0,STOLEN,11993,"{'type': 'Point', 'coordinates': (-79.38601979, 43.65524051)}"
-12008,13143,GO-20189004185,THEFT UNDER,2018-02-09T00:00:00,2018,February,Friday,9,40,14,2018-02-10T00:00:00,2018,February,Saturday,10,41,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,CYPRESS,OT,21,BLU,400.0,STOLEN,11994,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-12009,13148,GO-2018660990,THEFT UNDER - BICYCLE,2018-04-10T00:00:00,2018,April,Tuesday,10,100,10,2018-04-13T00:00:00,2018,April,Friday,13,103,11,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,UNKNOWN MAKE,,OT,0,,,STOLEN,11995,"{'type': 'Point', 'coordinates': (-79.38737611, 43.66847728)}"
-12010,13149,GO-20189013397,THEFT UNDER - BICYCLE,2018-04-30T00:00:00,2018,April,Monday,30,120,18,2018-05-01T00:00:00,2018,May,Tuesday,1,121,0,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,RACER,RC,1,BLK,300.0,STOLEN,11996,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-12011,13150,GO-20189013567,THEFT UNDER,2018-04-27T00:00:00,2018,April,Friday,27,117,1,2018-05-02T00:00:00,2018,May,Wednesday,2,122,11,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,X3 TRAIL,MT,24,BRN,499.0,STOLEN,11997,"{'type': 'Point', 'coordinates': (-79.38687123, 43.6623556)}"
-12012,24971,GO-20169010383,THEFT UNDER,2016-09-13T00:00:00,2016,September,Tuesday,13,257,9,2016-09-13T00:00:00,2016,September,Tuesday,13,257,19,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,SC,,MT,21,BLU,500.0,STOLEN,11998,"{'type': 'Point', 'coordinates': (-79.38260155, 43.6529703)}"
-12013,24976,GO-20169011226,THEFT UNDER - BICYCLE,2016-09-28T00:00:00,2016,September,Wednesday,28,272,7,2016-09-28T00:00:00,2016,September,Wednesday,28,272,10,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,GI,GIANT,RC,40,BLU,1200.0,STOLEN,11999,"{'type': 'Point', 'coordinates': (-79.37968936, 43.64733439)}"
-12014,24978,GO-20169011740,THEFT UNDER,2016-10-06T00:00:00,2016,October,Thursday,6,280,22,2016-10-08T00:00:00,2016,October,Saturday,8,282,14,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,FJ,,TO,24,BLK,900.0,STOLEN,12000,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-12015,24981,GO-20169012562,THEFT UNDER - BICYCLE,2016-10-25T00:00:00,2016,October,Tuesday,25,299,15,2016-10-25T00:00:00,2016,October,Tuesday,25,299,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EM,TITAN,EL,3,GRN,1600.0,STOLEN,12001,"{'type': 'Point', 'coordinates': (-79.38738577, 43.66051487)}"
-12016,24982,GO-20161909635,B&E,2016-10-26T00:00:00,2016,October,Wednesday,26,300,21,2016-10-27T00:00:00,2016,October,Thursday,27,301,10,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OPUS,CAPRICCIO,RG,10,RED,1300.0,STOLEN,12002,"{'type': 'Point', 'coordinates': (-79.38491403, 43.66584039)}"
-12017,24983,GO-20161909635,B&E,2016-10-26T00:00:00,2016,October,Wednesday,26,300,21,2016-10-27T00:00:00,2016,October,Thursday,27,301,10,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,JANGO,FLIK,FO,0,WHI,1500.0,STOLEN,12003,"{'type': 'Point', 'coordinates': (-79.38491403, 43.66584039)}"
-12018,25795,GO-20209028222,THEFT UNDER,2020-10-29T00:00:00,2020,October,Thursday,29,303,17,2020-10-30T00:00:00,2020,October,Friday,30,304,17,D52,Toronto,76,Bay Street Corridor (76),Bar / Restaurant,Commercial,CC,,MT,21,BLU,500.0,STOLEN,12004,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-12019,25803,GO-20209030204,THEFT UNDER,2020-11-20T00:00:00,2020,November,Friday,20,325,23,2020-11-21T00:00:00,2020,November,Saturday,21,326,13,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,CA,QUICK 3,RG,18,DBL,1000.0,STOLEN,12005,"{'type': 'Point', 'coordinates': (-79.38581514, 43.66081576)}"
-12020,25804,GO-20209030289,THEFT UNDER,2020-11-21T00:00:00,2020,November,Saturday,21,326,21,2020-11-22T00:00:00,2020,November,Sunday,22,327,15,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,CA,,RG,21,PLE,750.0,STOLEN,12006,"{'type': 'Point', 'coordinates': (-79.38596803, 43.65904449)}"
-12021,11,GO-20169014593,THEFT UNDER - BICYCLE,2016-12-10T00:00:00,2016,December,Saturday,10,345,18,2016-12-13T00:00:00,2016,December,Tuesday,13,348,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CA,,MT,15,BLU,1300.0,STOLEN,12007,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-12022,1743,GO-20179018196,THEFT UNDER - BICYCLE,2017-10-24T00:00:00,2017,October,Tuesday,24,297,21,2017-10-25T00:00:00,2017,October,Wednesday,25,298,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NO,2017 SIGHT C9.3,MT,11,GRY,4999.0,STOLEN,12008,"{'type': 'Point', 'coordinates': (-79.38065193, 43.64100385)}"
-12023,5051,GO-20199025978,THEFT UNDER - BICYCLE,2019-08-12T00:00:00,2019,August,Monday,12,224,19,2019-08-12T00:00:00,2019,August,Monday,12,224,22,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,FX2,RG,24,GRY,650.0,STOLEN,12009,"{'type': 'Point', 'coordinates': (-79.40266560000002, 43.64392483)}"
-12024,3459,GO-20189030281,THEFT UNDER - BICYCLE,2018-09-08T00:00:00,2018,September,Saturday,8,251,12,2018-09-13T00:00:00,2018,September,Thursday,13,256,14,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GT,TRANSEO SPORT,RG,7,GRN,800.0,STOLEN,12010,"{'type': 'Point', 'coordinates': (-79.39880646, 43.64142779)}"
-12025,27,GO-20169014934,THEFT UNDER - BICYCLE,2016-10-14T00:00:00,2016,October,Friday,14,288,10,2016-12-21T00:00:00,2016,December,Wednesday,21,356,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RG,21,,1000.0,STOLEN,12011,"{'type': 'Point', 'coordinates': (-79.39184935, 43.63765238)}"
-12026,43,GO-20179000435,THEFT UNDER - BICYCLE,2016-12-29T00:00:00,2016,December,Thursday,29,364,22,2017-01-10T00:00:00,2017,January,Tuesday,10,10,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,1,BLK,350.0,STOLEN,12012,"{'type': 'Point', 'coordinates': (-79.39153656, 43.64758619)}"
-12027,52,GO-20179000783,THEFT UNDER - BICYCLE,2017-01-16T00:00:00,2017,January,Monday,16,16,20,2017-01-17T00:00:00,2017,January,Tuesday,17,17,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,FIXIE (MODIFIED,TO,1,BLU,400.0,STOLEN,12013,"{'type': 'Point', 'coordinates': (-79.38914103, 43.64945651)}"
-12028,54,GO-20179000822,THEFT UNDER - BICYCLE,2017-01-18T00:00:00,2017,January,Wednesday,18,18,16,2017-01-18T00:00:00,2017,January,Wednesday,18,18,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,15 ROAM,MT,15,BLU,636.0,STOLEN,12014,"{'type': 'Point', 'coordinates': (-79.38143561, 43.64291214)}"
-12029,77,GO-20179001358,THEFT UNDER,2017-01-20T00:00:00,2017,January,Friday,20,20,21,2017-01-30T00:00:00,2017,January,Monday,30,30,22,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,OT,1,YEL,200.0,STOLEN,12015,"{'type': 'Point', 'coordinates': (-79.3979648, 43.63940267)}"
-12030,80,GO-2017212141,THEFT OF EBIKE UNDER $5000,2016-12-21T00:00:00,2016,December,Wednesday,21,356,21,2017-02-03T00:00:00,2017,February,Friday,3,34,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,DAYTONA,EL,1,BLK,2200.0,STOLEN,12016,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-12031,207,GO-20179004502,THEFT UNDER - BICYCLE,2017-04-10T00:00:00,2017,April,Monday,10,100,9,2017-04-10T00:00:00,2017,April,Monday,10,100,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,HARDROCK SPORT,MT,21,WHI,679.0,STOLEN,12017,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-12032,218,GO-2017653952,THEFT UNDER - BICYCLE,2017-04-13T00:00:00,2017,April,Thursday,13,103,9,2017-04-14T00:00:00,2017,April,Friday,14,104,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,VOLARE,TO,21,GRY,550.0,STOLEN,12018,"{'type': 'Point', 'coordinates': (-79.38552201, 43.64605338)}"
-12033,228,GO-20179004771,B&E,2017-04-08T00:00:00,2017,April,Saturday,8,98,14,2017-04-16T00:00:00,2017,April,Sunday,16,106,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,LYNC 5,RG,9,BLK,1612.0,STOLEN,12019,"{'type': 'Point', 'coordinates': (-79.40059685, 43.64573236)}"
-12034,239,GO-20179004819,THEFT UNDER - BICYCLE,2017-04-17T00:00:00,2017,April,Monday,17,107,12,2017-04-17T00:00:00,2017,April,Monday,17,107,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ATX 2 DISC BLAC,MT,8,BLK,667.0,STOLEN,12020,"{'type': 'Point', 'coordinates': (-79.38542345, 43.63902804)}"
-12035,240,GO-20179004818,THEFT UNDER - BICYCLE,2017-04-15T00:00:00,2017,April,Saturday,15,105,15,2017-04-17T00:00:00,2017,April,Monday,17,107,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,ROCKERHOPPER SP,MT,24,GRY,1000.0,STOLEN,12021,"{'type': 'Point', 'coordinates': (-79.38973372, 43.6466028)}"
-12036,242,GO-2017679786,B&E,2017-04-12T00:00:00,2017,April,Wednesday,12,102,12,2017-04-18T00:00:00,2017,April,Tuesday,18,108,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TREK,2009 FUEL EX8,MT,0,GRY,1000.0,STOLEN,12022,"{'type': 'Point', 'coordinates': (-79.39558819, 43.63994429)}"
-12037,255,GO-2017702556,THEFT UNDER - BICYCLE,2017-04-21T00:00:00,2017,April,Friday,21,111,18,2017-04-21T00:00:00,2017,April,Friday,21,111,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,TREK,2100Z09000,MT,21,GRY,500.0,STOLEN,12023,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-12038,270,GO-20179005146,THEFT UNDER - BICYCLE,2017-04-23T00:00:00,2017,April,Sunday,23,113,13,2017-04-23T00:00:00,2017,April,Sunday,23,113,19,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,DAILY,RG,5,GRY,500.0,STOLEN,12024,"{'type': 'Point', 'coordinates': (-79.35677669, 43.6529262)}"
-12039,274,GO-2017719964,FTC PROBATION ORDER,2017-04-24T00:00:00,2017,April,Monday,24,114,14,2017-04-24T00:00:00,2017,April,Monday,24,114,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CANNONDALE,QUICK 4,OT,27,GRN,800.0,STOLEN,12025,"{'type': 'Point', 'coordinates': (-79.40196209, 43.64761228)}"
-12040,280,GO-20179005259,THEFT UNDER,2016-11-01T00:00:00,2016,November,Tuesday,1,306,16,2017-04-25T00:00:00,2017,April,Tuesday,25,115,16,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,PE,,OT,1,LBL,400.0,STOLEN,12026,"{'type': 'Point', 'coordinates': (-79.39558819, 43.63994429)}"
-12041,284,GO-2017735197,THEFT UNDER - BICYCLE,2017-01-19T00:00:00,2017,January,Thursday,19,19,7,2017-04-26T00:00:00,2017,April,Wednesday,26,116,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,DRAFT LITE,RG,1,SIL,716.0,STOLEN,12027,"{'type': 'Point', 'coordinates': (-79.39186446, 43.64164294)}"
-12042,285,GO-20179005324,THEFT UNDER,2017-04-26T00:00:00,2017,April,Wednesday,26,116,2,2017-04-26T00:00:00,2017,April,Wednesday,26,116,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE,RG,24,WHI,0.0,STOLEN,12028,"{'type': 'Point', 'coordinates': (-79.39186446, 43.64164294)}"
-12043,286,GO-20179005328,THEFT UNDER - BICYCLE,2017-04-27T00:00:00,2017,April,Thursday,27,117,12,2017-04-27T00:00:00,2017,April,Thursday,27,117,23,D52,Toronto,77,Waterfront Communities-The Island (77),Universities / Colleges,Educational,KO,2011 HONKY TONK,TO,9,DBL,1200.0,STOLEN,12029,"{'type': 'Point', 'coordinates': (-79.38914103, 43.64945651)}"
-12044,291,GO-2017739166,THEFT UNDER - BICYCLE,2017-04-27T00:00:00,2017,April,Thursday,27,117,12,2017-04-27T00:00:00,2017,April,Thursday,27,117,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,GHOST,MT,16,BLKBLU,1000.0,STOLEN,12030,"{'type': 'Point', 'coordinates': (-79.40372116, 43.64647061)}"
-12045,294,GO-2017460993,B&E,2017-03-13T00:00:00,2017,March,Monday,13,72,21,2017-03-14T00:00:00,2017,March,Tuesday,14,73,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GIANT,DEFY 2,RC,32,BLKBLU,2000.0,STOLEN,12031,"{'type': 'Point', 'coordinates': (-79.39025369, 43.64785592)}"
-12046,13431,GO-20161998695,THEFT UNDER - BICYCLE,2016-11-03T00:00:00,2016,November,Thursday,3,308,7,2016-11-10T00:00:00,2016,November,Thursday,10,315,9,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,,MT,0,,800.0,STOLEN,15287,"{'type': 'Point', 'coordinates': (-79.39734175, 43.66803279)}"
-12047,295,GO-20179005422,THEFT UNDER - BICYCLE,2017-04-24T00:00:00,2017,April,Monday,24,114,18,2017-04-28T00:00:00,2017,April,Friday,28,118,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,SIRRUS,RG,30,GRY,2376.0,STOLEN,12032,"{'type': 'Point', 'coordinates': (-79.39186446, 43.64164294)}"
-12048,301,GO-20179005471,THEFT UNDER,2017-04-28T00:00:00,2017,April,Friday,28,118,20,2017-04-30T00:00:00,2017,April,Sunday,30,120,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NO,,RG,8,BRZ,150.0,STOLEN,12033,"{'type': 'Point', 'coordinates': (-79.38275181, 43.64263544000001)}"
-12049,322,GO-2017739166,THEFT UNDER - BICYCLE,2017-04-27T00:00:00,2017,April,Thursday,27,117,12,2017-04-27T00:00:00,2017,April,Thursday,27,117,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,18,BLK,800.0,STOLEN,12034,"{'type': 'Point', 'coordinates': (-79.40372116, 43.64647061)}"
-12050,324,GO-20179005649,THEFT UNDER - BICYCLE,2017-04-29T00:00:00,2017,April,Saturday,29,119,23,2017-05-03T00:00:00,2017,May,Wednesday,3,123,17,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,1,,0.0,STOLEN,12035,"{'type': 'Point', 'coordinates': (-79.39737512, 43.64853707)}"
-12051,325,GO-2017785440,THEFT UNDER - BICYCLE,2017-04-28T00:00:00,2017,April,Friday,28,118,20,2017-05-04T00:00:00,2017,May,Thursday,4,124,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,OT,1,RED,500.0,STOLEN,12036,"{'type': 'Point', 'coordinates': (-79.39184935, 43.63765238)}"
-12052,341,GO-20179005890,THEFT UNDER - BICYCLE,2017-05-04T00:00:00,2017,May,Thursday,4,124,12,2017-05-08T00:00:00,2017,May,Monday,8,128,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,RA,CITATION,RG,10,DBL,150.0,STOLEN,12037,"{'type': 'Point', 'coordinates': (-79.38143561, 43.64291214)}"
-12053,372,GO-20179006159,THEFT UNDER,2017-05-10T00:00:00,2017,May,Wednesday,10,130,22,2017-05-11T00:00:00,2017,May,Thursday,11,131,21,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,1500,MT,18,RED,0.0,STOLEN,12038,"{'type': 'Point', 'coordinates': (-79.3979648, 43.63940267)}"
-12054,379,GO-2017835510,THEFT UNDER,2017-05-11T00:00:00,2017,May,Thursday,11,131,12,2017-05-12T00:00:00,2017,May,Friday,12,132,10,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CANNONDALE,,OT,21,BLK,600.0,STOLEN,12039,"{'type': 'Point', 'coordinates': (-79.35677669, 43.6529262)}"
-12055,385,GO-20179006283,THEFT UNDER - BICYCLE,2017-05-13T00:00:00,2017,May,Saturday,13,133,13,2017-05-13T00:00:00,2017,May,Saturday,13,133,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,OT,7,BLK,300.0,STOLEN,12040,"{'type': 'Point', 'coordinates': (-79.38994752, 43.64370303)}"
-12056,386,GO-20179006295,THEFT UNDER - BICYCLE,2017-05-10T00:00:00,2017,May,Wednesday,10,130,23,2017-05-14T00:00:00,2017,May,Sunday,14,134,9,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,MOUNTAIN BIKE,MT,21,BLU,1500.0,STOLEN,12041,"{'type': 'Point', 'coordinates': (-79.39882641, 43.63812175)}"
-12057,387,GO-20179006313,THEFT UNDER - BICYCLE,2017-05-13T00:00:00,2017,May,Saturday,13,133,15,2017-05-14T00:00:00,2017,May,Sunday,14,134,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SC,,RC,24,,500.0,STOLEN,12042,"{'type': 'Point', 'coordinates': (-79.39124574, 43.64342012)}"
-12058,395,GO-20179006356,THEFT UNDER,2017-05-15T00:00:00,2017,May,Monday,15,135,17,2017-05-15T00:00:00,2017,May,Monday,15,135,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,1,WHI,1200.0,STOLEN,12043,"{'type': 'Point', 'coordinates': (-79.3881121, 43.64696458)}"
-12059,400,GO-20179006413,THEFT UNDER - BICYCLE,2017-05-14T00:00:00,2017,May,Sunday,14,134,13,2017-05-15T00:00:00,2017,May,Monday,15,135,23,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,7,BLU,400.0,STOLEN,12044,"{'type': 'Point', 'coordinates': (-79.39389489, 43.64651184)}"
-12060,409,GO-20179006531,THEFT UNDER,2017-05-17T00:00:00,2017,May,Wednesday,17,137,10,2017-05-17T00:00:00,2017,May,Wednesday,17,137,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,SC,VOLTARE 1200,RC,21,BLU,550.0,STOLEN,12045,"{'type': 'Point', 'coordinates': (-79.38082868, 43.64145979)}"
-12061,2225,GO-20189013293,THEFT UNDER - BICYCLE,2018-04-30T00:00:00,2018,April,Monday,30,120,14,2018-04-30T00:00:00,2018,April,Monday,30,120,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SC,,RC,20,,600.0,STOLEN,12154,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-12062,415,GO-20179006548,THEFT UNDER - BICYCLE,2017-05-17T00:00:00,2017,May,Wednesday,17,137,18,2017-05-18T00:00:00,2017,May,Thursday,18,138,8,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,SC1800,MT,8,BLU,0.0,STOLEN,12046,"{'type': 'Point', 'coordinates': (-79.39296466, 43.64056148000001)}"
-12063,424,GO-20179006637,THEFT UNDER,2017-05-19T00:00:00,2017,May,Friday,19,139,12,2017-05-19T00:00:00,2017,May,Friday,19,139,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,BI,,RC,21,PLE,900.0,STOLEN,12047,"{'type': 'Point', 'coordinates': (-79.39186446, 43.64164294)}"
-12064,440,GO-20179006795,THEFT UNDER - BICYCLE,2017-05-17T00:00:00,2017,May,Wednesday,17,137,23,2017-05-22T00:00:00,2017,May,Monday,22,142,18,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,,OT,8,BLK,1000.0,STOLEN,12048,"{'type': 'Point', 'coordinates': (-79.37646324, 43.64578351)}"
-12065,441,GO-2017897214,THEFT UNDER - BICYCLE,2017-05-20T00:00:00,2017,May,Saturday,20,140,16,2017-05-21T00:00:00,2017,May,Sunday,21,141,16,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,KONA,,MT,6,BRNWHI,200.0,STOLEN,12049,"{'type': 'Point', 'coordinates': (-79.39558819, 43.63994429)}"
-12066,444,GO-2017896981,THEFT OF EBIKE UNDER $5000,2017-05-21T00:00:00,2017,May,Sunday,21,141,10,2017-05-21T00:00:00,2017,May,Sunday,21,141,15,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,MONACO,EL,20,PNK,1300.0,STOLEN,12050,"{'type': 'Point', 'coordinates': (-79.35677669, 43.6529262)}"
-12067,459,GO-20179006892,B&E,2017-05-22T00:00:00,2017,May,Monday,22,142,23,2017-05-24T00:00:00,2017,May,Wednesday,24,144,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,ROMULUS,RG,12,BRN,1200.0,STOLEN,12051,"{'type': 'Point', 'coordinates': (-79.3932382, 43.64839265)}"
-12068,462,GO-2017913506,THEFT UNDER - BICYCLE,2017-05-23T00:00:00,2017,May,Tuesday,23,143,22,2017-05-24T00:00:00,2017,May,Wednesday,24,144,8,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUPERCYCLE,1800,MT,18,BLKRED,200.0,STOLEN,12052,"{'type': 'Point', 'coordinates': (-79.35677669, 43.6529262)}"
-12069,536,GO-20179007499,THEFT UNDER - BICYCLE,2017-06-04T00:00:00,2017,June,Sunday,4,155,12,2017-06-05T00:00:00,2017,June,Monday,5,156,8,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,21,,1500.0,STOLEN,12060,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-12070,464,GO-2017914161,B&E,2017-05-18T00:00:00,2017,May,Thursday,18,138,22,2017-05-24T00:00:00,2017,May,Wednesday,24,144,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FUJI,DECLORATION,OT,1,GRY,700.0,STOLEN,12053,"{'type': 'Point', 'coordinates': (-79.39833497, 43.64030158)}"
-12071,466,GO-20179006928,THEFT UNDER - BICYCLE,2017-05-19T00:00:00,2017,May,Friday,19,139,19,2017-05-24T00:00:00,2017,May,Wednesday,24,144,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CC,VECTOR 700 WOME,RG,21,PNK,340.0,STOLEN,12054,"{'type': 'Point', 'coordinates': (-79.39795271, 43.63704773)}"
-12072,467,GO-20179006928,THEFT UNDER - BICYCLE,2017-05-19T00:00:00,2017,May,Friday,19,139,19,2017-05-24T00:00:00,2017,May,Wednesday,24,144,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CC,,MT,21,SIL,200.0,STOLEN,12055,"{'type': 'Point', 'coordinates': (-79.39795271, 43.63704773)}"
-12073,474,GO-2017929021,THEFT UNDER - BICYCLE,2017-05-26T00:00:00,2017,May,Friday,26,146,8,2017-05-26T00:00:00,2017,May,Friday,26,146,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KONA,KIKAPU,MT,1,SIL,2500.0,STOLEN,12056,"{'type': 'Point', 'coordinates': (-79.38946509, 43.64593813)}"
-12074,490,GO-20179007097,THEFT UNDER,2017-05-18T00:00:00,2017,May,Thursday,18,138,15,2017-05-28T00:00:00,2017,May,Sunday,28,148,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,SVELTO,RG,15,WHI,750.0,STOLEN,12057,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-12075,500,GO-20179007148,THEFT UNDER,2017-05-26T00:00:00,2017,May,Friday,26,146,20,2017-05-29T00:00:00,2017,May,Monday,29,149,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,ANDANTE 2.0,RC,10,RED,1400.0,STOLEN,12058,"{'type': 'Point', 'coordinates': (-79.38867784, 43.64396864)}"
-12076,529,GO-20179007442,THEFT UNDER - BICYCLE,2017-06-03T00:00:00,2017,June,Saturday,3,154,22,2017-06-03T00:00:00,2017,June,Saturday,3,154,23,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,MOUNTAIN TRACK,MT,21,PLE,1500.0,STOLEN,12059,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-12077,537,GO-20179007500,THEFT UNDER - BICYCLE,2017-05-14T00:00:00,2017,May,Sunday,14,134,8,2017-06-05T00:00:00,2017,June,Monday,5,156,8,D51,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RA,,TO,10,,350.0,STOLEN,12061,"{'type': 'Point', 'coordinates': (-79.36708855, 43.64866845)}"
-12078,542,GO-2017998266,THEFT UNDER - BICYCLE,2017-06-05T00:00:00,2017,June,Monday,5,156,16,2017-06-05T00:00:00,2017,June,Monday,5,156,17,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,TREK,HYBRID,OT,24,BLK,1025.0,STOLEN,12062,"{'type': 'Point', 'coordinates': (-79.39184935, 43.63765238)}"
-12079,547,GO-20171005665,THEFT UNDER - BICYCLE,2017-06-06T00:00:00,2017,June,Tuesday,6,157,19,2017-06-06T00:00:00,2017,June,Tuesday,6,157,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,RAPID,RG,18,WHI,,STOLEN,12063,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-12080,551,GO-20179007632,THEFT UNDER - BICYCLE,2017-06-03T00:00:00,2017,June,Saturday,3,154,8,2017-06-06T00:00:00,2017,June,Tuesday,6,157,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,DEFY 4,RC,16,BLU,1000.0,STOLEN,12064,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-12081,552,GO-20179007639,THEFT UNDER - BICYCLE,2017-06-06T00:00:00,2017,June,Tuesday,6,157,13,2017-06-07T00:00:00,2017,June,Wednesday,7,158,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,FIXED GEAR,RG,1,BLK,800.0,STOLEN,12065,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-12082,558,GO-20179007694,THEFT UNDER,2017-06-07T00:00:00,2017,June,Wednesday,7,158,19,2017-06-08T00:00:00,2017,June,Thursday,8,159,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RA,,RG,24,GRN,500.0,RECOVERED,12066,"{'type': 'Point', 'coordinates': (-79.395007, 43.64546954)}"
-12083,560,GO-20179007723,THEFT UNDER - BICYCLE,2017-06-07T00:00:00,2017,June,Wednesday,7,158,18,2017-06-08T00:00:00,2017,June,Thursday,8,159,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,,MT,21,GRY,170.0,STOLEN,12067,"{'type': 'Point', 'coordinates': (-79.38396859, 43.64239001)}"
-12084,564,GO-20179007777,THEFT UNDER - BICYCLE,2017-06-08T00:00:00,2017,June,Thursday,8,159,13,2017-06-09T00:00:00,2017,June,Friday,9,160,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,MIDTOWN,RG,21,BLK,800.0,STOLEN,12068,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-12085,565,GO-20179007784,THEFT UNDER - BICYCLE,2017-06-08T00:00:00,2017,June,Thursday,8,159,12,2017-06-09T00:00:00,2017,June,Friday,9,160,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,VERZA 40,RG,24,ONG,750.0,STOLEN,12069,"{'type': 'Point', 'coordinates': (-79.395007, 43.64546954)}"
-12086,574,GO-20179007835,THEFT UNDER,2017-06-09T00:00:00,2017,June,Friday,9,160,17,2017-06-10T00:00:00,2017,June,Saturday,10,161,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,SOLARIS MEN'S 7,RG,18,BLK,275.0,STOLEN,12070,"{'type': 'Point', 'coordinates': (-79.40059685, 43.64573236)}"
-12087,587,GO-20171035175,THEFT UNDER,2017-06-10T00:00:00,2017,June,Saturday,10,161,17,2017-06-11T00:00:00,2017,June,Sunday,11,162,1,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,OT,0,BLU,298.0,STOLEN,12071,"{'type': 'Point', 'coordinates': (-79.38091602, 43.64168463)}"
-12088,590,GO-20179007911,THEFT UNDER - BICYCLE,2017-06-11T00:00:00,2017,June,Sunday,11,162,13,2017-06-11T00:00:00,2017,June,Sunday,11,162,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,TC3,MT,24,BLK,1000.0,STOLEN,12072,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-12089,597,GO-20179007975,THEFT UNDER,2017-06-11T00:00:00,2017,June,Sunday,11,162,0,2017-06-12T00:00:00,2017,June,Monday,12,163,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NO,HEART 2016,RG,80,BLK,650.0,STOLEN,12073,"{'type': 'Point', 'coordinates': (-79.39880646, 43.64142779)}"
-12090,604,GO-20179007996,THEFT UNDER,2017-06-08T00:00:00,2017,June,Thursday,8,159,18,2017-06-12T00:00:00,2017,June,Monday,12,163,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,NANO TUBELESS,MT,24,BLK,350.0,STOLEN,12074,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-12091,608,GO-20171057201,THEFT UNDER,2017-06-10T00:00:00,2017,June,Saturday,10,161,20,2017-06-11T00:00:00,2017,June,Sunday,11,162,13,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,FUZION,CITYGRID,SC,0,REDSIL,114.0,STOLEN,12075,"{'type': 'Point', 'coordinates': (-79.37074933, 43.64783612)}"
-12092,617,GO-20179007911,THEFT UNDER - BICYCLE,2017-06-11T00:00:00,2017,June,Sunday,11,162,13,2017-06-11T00:00:00,2017,June,Sunday,11,162,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,GIANT FCR3,MT,24,BLK,1000.0,STOLEN,12076,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-12093,623,GO-20179008123,THEFT UNDER - BICYCLE,2017-06-12T00:00:00,2017,June,Monday,12,163,19,2017-06-15T00:00:00,2017,June,Thursday,15,166,1,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MODENA,RG,21,BLK,330.0,STOLEN,12077,"{'type': 'Point', 'coordinates': (-79.39204821, 43.64885072)}"
-12094,629,GO-20179008199,THEFT UNDER - BICYCLE,2017-06-16T00:00:00,2017,June,Friday,16,167,13,2017-06-16T00:00:00,2017,June,Friday,16,167,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SINGLE SPD/FIXD,OT,1,WHI,250.0,STOLEN,12078,"{'type': 'Point', 'coordinates': (-79.39861703, 43.64747344)}"
-12095,667,GO-20179008463,THEFT UNDER - BICYCLE,2017-06-15T00:00:00,2017,June,Thursday,15,166,19,2017-06-20T00:00:00,2017,June,Tuesday,20,171,0,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ALIGHT,RG,8,WHI,600.0,STOLEN,12079,"{'type': 'Point', 'coordinates': (-79.38250349, 43.64061295)}"
-12096,675,GO-20179008575,THEFT UNDER - BICYCLE,2017-06-20T00:00:00,2017,June,Tuesday,20,171,19,2017-06-21T00:00:00,2017,June,Wednesday,21,172,0,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,10,LBL,200.0,STOLEN,12080,"{'type': 'Point', 'coordinates': (-79.39924205, 43.63909783)}"
-12097,690,GO-20179008728,THEFT UNDER - BICYCLE,2017-06-22T00:00:00,2017,June,Thursday,22,173,10,2017-06-22T00:00:00,2017,June,Thursday,22,173,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,2009 GIANT FCR,OT,24,BLK,300.0,STOLEN,12081,"{'type': 'Point', 'coordinates': (-79.3932382, 43.64839265)}"
-12098,691,GO-20179008708,THEFT UNDER - BICYCLE,2017-06-20T00:00:00,2017,June,Tuesday,20,171,18,2017-06-22T00:00:00,2017,June,Thursday,22,173,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SU,KROSSROADS DUAL,MT,21,GRY,226.0,STOLEN,12082,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-12099,706,GO-20179008835,THEFT UNDER - BICYCLE,2017-06-24T00:00:00,2017,June,Saturday,24,175,11,2017-06-24T00:00:00,2017,June,Saturday,24,175,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,DEFY COMPOSITE,RC,20,,2000.0,STOLEN,12083,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-12100,711,GO-20179008849,THEFT UNDER - BICYCLE,2017-06-24T00:00:00,2017,June,Saturday,24,175,19,2017-06-25T00:00:00,2017,June,Sunday,25,176,8,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,MT,24,BLK,629.0,STOLEN,12084,"{'type': 'Point', 'coordinates': (-79.39075649, 43.64913078)}"
-12101,714,GO-20179008900,THEFT UNDER - BICYCLE,2017-06-22T00:00:00,2017,June,Thursday,22,173,17,2017-06-26T00:00:00,2017,June,Monday,26,177,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,BIKESHARE,OT,3,BLK,1000.0,STOLEN,12085,"{'type': 'Point', 'coordinates': (-79.40372116, 43.64647061)}"
-12102,715,GO-20179008897,THEFT UNDER - BICYCLE,2017-06-24T00:00:00,2017,June,Saturday,24,175,21,2017-06-26T00:00:00,2017,June,Monday,26,177,10,D52,Toronto,77,Waterfront Communities-The Island (77),Go Station,Transit,GI,IGUANA,MT,18,BLK,750.0,STOLEN,12086,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-12103,719,GO-20179008931,THEFT UNDER - BICYCLE,2017-06-23T00:00:00,2017,June,Friday,23,174,0,2017-06-26T00:00:00,2017,June,Monday,26,177,14,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,MO,,MT,16,,100.0,STOLEN,12087,"{'type': 'Point', 'coordinates': (-79.39924205, 43.63909783)}"
-12104,740,GO-20179009098,THEFT UNDER,2017-06-27T00:00:00,2017,June,Tuesday,27,178,17,2017-06-28T00:00:00,2017,June,Wednesday,28,179,16,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,COMMUTER,RG,9,BLU,795.0,STOLEN,12088,"{'type': 'Point', 'coordinates': (-79.36896015, 43.64393833)}"
-12105,768,GO-20179009369,THEFT UNDER - BICYCLE,2017-04-20T00:00:00,2017,April,Thursday,20,110,20,2017-07-04T00:00:00,2017,July,Tuesday,4,185,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RG,21,GRY,750.0,STOLEN,12089,"{'type': 'Point', 'coordinates': (-79.37581636, 43.64427666)}"
-12106,777,GO-20171188011,THEFT UNDER - BICYCLE,2017-07-03T00:00:00,2017,July,Monday,3,184,11,2017-07-03T00:00:00,2017,July,Monday,3,184,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KHS,WINSLOW,MT,24,LBL,900.0,STOLEN,12090,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-12107,779,GO-20179009439,THEFT UNDER - BICYCLE,2017-07-03T00:00:00,2017,July,Monday,3,184,23,2017-07-04T00:00:00,2017,July,Tuesday,4,185,20,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,MB265,RG,12,TRQ,400.0,STOLEN,12091,"{'type': 'Point', 'coordinates': (-79.39795271, 43.63704773)}"
-12108,785,GO-20179009519,THEFT UNDER - BICYCLE,2017-07-06T00:00:00,2017,July,Thursday,6,187,3,2017-07-06T00:00:00,2017,July,Thursday,6,187,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SU,,RG,15,LBL,180.0,STOLEN,12092,"{'type': 'Point', 'coordinates': (-79.39882641, 43.63812175)}"
-12109,797,GO-20179009677,THEFT UNDER - BICYCLE,2017-07-07T00:00:00,2017,July,Friday,7,188,7,2017-07-07T00:00:00,2017,July,Friday,7,188,20,D52,Toronto,77,Waterfront Communities-The Island (77),Go Bus,Transit,UK,,OT,1,BGE,250.0,STOLEN,12093,"{'type': 'Point', 'coordinates': (-79.37646324, 43.64578351)}"
-12110,812,GO-20171208453,THEFT UNDER - BICYCLE,2017-06-18T00:00:00,2017,June,Sunday,18,169,13,2017-07-06T00:00:00,2017,July,Thursday,6,187,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NIVOLET,RACE 2,RC,10,WHISIL,1500.0,STOLEN,12094,"{'type': 'Point', 'coordinates': (-79.38243116, 43.64529171000001)}"
-12111,813,GO-20179009793,THEFT UNDER - BICYCLE,2017-07-07T00:00:00,2017,July,Friday,7,188,18,2017-07-09T00:00:00,2017,July,Sunday,9,190,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GT,KARAKORAM SPORT,MT,9,BLK,400.0,STOLEN,12095,"{'type': 'Point', 'coordinates': (-79.3979648, 43.63940267)}"
-12112,22295,GO-20189018491,THEFT UNDER - BICYCLE,2018-06-06T00:00:00,2018,June,Wednesday,6,157,21,2018-06-13T00:00:00,2018,June,Wednesday,13,164,11,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,RA,,RG,8,,2000.0,STOLEN,21873,"{'type': 'Point', 'coordinates': (-79.4007248, 43.66981528)}"
-12113,814,GO-20179009778,THEFT UNDER - BICYCLE,2017-07-02T00:00:00,2017,July,Sunday,2,183,10,2017-07-09T00:00:00,2017,July,Sunday,9,190,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,ELITE,TO,12,SIL,1000.0,STOLEN,12096,"{'type': 'Point', 'coordinates': (-79.39228875, 43.64605377)}"
-12114,829,GO-20179009911,THEFT UNDER - BICYCLE,2017-07-10T00:00:00,2017,July,Monday,10,191,14,2017-07-10T00:00:00,2017,July,Monday,10,191,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,HF,,MT,25,SIL,230.0,STOLEN,12097,"{'type': 'Point', 'coordinates': (-79.39960983, 43.63648329)}"
-12115,830,GO-20179009914,THEFT UNDER - BICYCLE,2017-07-09T00:00:00,2017,July,Sunday,9,190,20,2017-07-11T00:00:00,2017,July,Tuesday,11,192,8,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,ST-TROPEZ,RG,24,BLK,630.0,STOLEN,12098,"{'type': 'Point', 'coordinates': (-79.38860347, 43.65042088)}"
-12116,834,GO-20179009064,THEFT OVER - BICYCLE,2017-06-28T00:00:00,2017,June,Wednesday,28,179,7,2017-06-28T00:00:00,2017,June,Wednesday,28,179,8,D52,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,OT,ALLEZ ROUBAIX S,RC,15,BLK,2500.0,STOLEN,12099,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-12117,839,GO-20179010026,THEFT UNDER,2017-07-08T00:00:00,2017,July,Saturday,8,189,0,2017-07-12T00:00:00,2017,July,Wednesday,12,193,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,ROAD,RC,15,,1200.0,STOLEN,12100,"{'type': 'Point', 'coordinates': (-79.38314772, 43.64033919)}"
-12118,7273,GO-20209023554,THEFT UNDER,2020-09-16T00:00:00,2020,September,Wednesday,16,260,1,2020-09-17T00:00:00,2020,September,Thursday,17,261,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CC,,MT,21,,500.0,STOLEN,12101,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-12119,1745,GO-20171937908,THEFT UNDER - BICYCLE,2017-10-26T00:00:00,2017,October,Thursday,26,299,10,2017-10-26T00:00:00,2017,October,Thursday,26,299,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,RAPIDE,RC,21,BLKBLU,3500.0,STOLEN,12102,"{'type': 'Point', 'coordinates': (-79.395007, 43.64546954)}"
-12120,21865,GO-2015836543,B&E,2015-05-19T00:00:00,2015,May,Tuesday,19,139,9,2015-05-19T00:00:00,2015,May,Tuesday,19,139,20,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,KONA,,OT,18,GRY,450.0,STOLEN,15448,"{'type': 'Point', 'coordinates': (-79.40110737, 43.65227394000001)}"
-12121,1754,GO-20179018328,THEFT UNDER - BICYCLE,2017-10-26T00:00:00,2017,October,Thursday,26,299,13,2017-10-27T00:00:00,2017,October,Friday,27,300,14,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,BLU,536.0,STOLEN,12103,"{'type': 'Point', 'coordinates': (-79.36708855, 43.64866845)}"
-12122,1778,GO-20179018668,THEFT UNDER - BICYCLE,2017-10-30T00:00:00,2017,October,Monday,30,303,13,2017-11-01T00:00:00,2017,November,Wednesday,1,305,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,GI,,RG,8,,70.0,STOLEN,12104,"{'type': 'Point', 'coordinates': (-79.38946509, 43.64593813)}"
-12123,1783,GO-20179018696,THEFT UNDER - BICYCLE,2017-11-01T00:00:00,2017,November,Wednesday,1,305,10,2017-11-01T00:00:00,2017,November,Wednesday,1,305,20,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,OT,1,,500.0,STOLEN,12105,"{'type': 'Point', 'coordinates': (-79.395007, 43.64546954)}"
-12124,1786,GO-20179018799,THEFT UNDER - BICYCLE,2017-10-21T00:00:00,2017,October,Saturday,21,294,9,2017-11-03T00:00:00,2017,November,Friday,3,307,9,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,,RG,21,,0.0,STOLEN,12106,"{'type': 'Point', 'coordinates': (-79.37646324, 43.64578351)}"
-12125,1787,GO-20179018799,THEFT UNDER - BICYCLE,2017-10-21T00:00:00,2017,October,Saturday,21,294,9,2017-11-03T00:00:00,2017,November,Friday,3,307,9,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,,RG,21,GRY,0.0,STOLEN,12107,"{'type': 'Point', 'coordinates': (-79.37646324, 43.64578351)}"
-12126,1789,GO-20179018832,THEFT UNDER - BICYCLE,2017-11-03T00:00:00,2017,November,Friday,3,307,6,2017-11-03T00:00:00,2017,November,Friday,3,307,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,MT,21,BLK,1200.0,STOLEN,12108,"{'type': 'Point', 'coordinates': (-79.38091602, 43.64168463)}"
-12127,1804,GO-20179019026,THEFT UNDER - BICYCLE,2017-11-06T00:00:00,2017,November,Monday,6,310,15,2017-11-06T00:00:00,2017,November,Monday,6,310,17,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,FUEL,MT,21,BLK,0.0,STOLEN,12109,"{'type': 'Point', 'coordinates': (-79.39737512, 43.64853707)}"
-12128,1805,GO-20179019064,THEFT UNDER,2017-10-22T00:00:00,2017,October,Sunday,22,295,20,2017-11-06T00:00:00,2017,November,Monday,6,310,22,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,PE,TOUR DE FORCE,MT,21,BRN,115.0,STOLEN,12110,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-12129,1839,GO-20172057571,THEFT OVER,2017-11-02T00:00:00,2017,November,Thursday,2,306,18,2017-11-13T00:00:00,2017,November,Monday,13,317,23,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GIANT,RAPID,OT,27,BLKRED,1500.0,STOLEN,12111,"{'type': 'Point', 'coordinates': (-79.39558819, 43.63994429)}"
-12130,1840,GO-20172057571,THEFT OVER,2017-11-02T00:00:00,2017,November,Thursday,2,306,18,2017-11-13T00:00:00,2017,November,Monday,13,317,23,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GIANT,DEFY,OT,21,BLK,2000.0,STOLEN,12112,"{'type': 'Point', 'coordinates': (-79.39558819, 43.63994429)}"
-12131,1842,GO-20179019590,THEFT UNDER - BICYCLE,2017-11-13T00:00:00,2017,November,Monday,13,317,20,2017-11-14T00:00:00,2017,November,Tuesday,14,318,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CC,,MT,21,BLU,300.0,STOLEN,12113,"{'type': 'Point', 'coordinates': (-79.39124574, 43.64342012)}"
-12132,1849,GO-20179019703,THEFT UNDER - BICYCLE,2017-11-14T00:00:00,2017,November,Tuesday,14,318,21,2017-11-15T00:00:00,2017,November,Wednesday,15,319,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,POSEIDON,RC,1,WHI,700.0,STOLEN,12114,"{'type': 'Point', 'coordinates': (-79.38994752, 43.64370303)}"
-12133,1867,GO-20179020234,THEFT UNDER - BICYCLE,2017-11-20T00:00:00,2017,November,Monday,20,324,18,2017-11-21T00:00:00,2017,November,Tuesday,21,325,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,FJ,ABSOLUTE 2.1,RG,24,BLK,699.0,STOLEN,12115,"{'type': 'Point', 'coordinates': (-79.39833497, 43.64030158)}"
-12134,1887,GO-20173008392,B&E,2017-11-13T00:00:00,2017,November,Monday,13,317,2,2017-11-16T00:00:00,2017,November,Thursday,16,320,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GIANT,SEEK 1,RG,10,WHI,,STOLEN,12116,"{'type': 'Point', 'coordinates': (-79.39389489, 43.64651184)}"
-12135,1891,GO-20179020677,THEFT UNDER - BICYCLE,2017-11-24T00:00:00,2017,November,Friday,24,328,16,2017-11-27T00:00:00,2017,November,Monday,27,331,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,GI,,OT,21,LGR,0.0,STOLEN,12117,"{'type': 'Point', 'coordinates': (-79.38946509, 43.64593813)}"
-12136,1900,GO-20179020936,THEFT UNDER - BICYCLE,2017-11-28T00:00:00,2017,November,Tuesday,28,332,14,2017-11-30T00:00:00,2017,November,Thursday,30,334,17,D52,Toronto,77,Waterfront Communities-The Island (77),Convenience Stores,Commercial,OT,PRO TEAM,MT,1,BLK,1000.0,STOLEN,12118,"{'type': 'Point', 'coordinates': (-79.38091602, 43.64168463)}"
-12137,1904,GO-20179021072,B&E,2017-11-01T00:00:00,2017,November,Wednesday,1,305,0,2017-12-02T00:00:00,2017,December,Saturday,2,336,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,7,RED,1600.0,STOLEN,12119,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-12138,1910,GO-20179021299,THEFT UNDER - BICYCLE,2017-11-20T00:00:00,2017,November,Monday,20,324,20,2017-12-04T00:00:00,2017,December,Monday,4,338,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MIRAGE,RG,21,BLU,500.0,STOLEN,12120,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-12139,1920,GO-20179021488,THEFT UNDER - BICYCLE,2017-12-05T00:00:00,2017,December,Tuesday,5,339,21,2017-12-06T00:00:00,2017,December,Wednesday,6,340,14,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,CDALE 18 QUICK,RG,24,LGR,1200.0,STOLEN,12121,"{'type': 'Point', 'coordinates': (-79.39846982000002, 43.64477819)}"
-12140,1925,GO-20179018576,THEFT UNDER - BICYCLE,2017-10-25T00:00:00,2017,October,Wednesday,25,298,18,2017-10-30T00:00:00,2017,October,Monday,30,303,22,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,FJ,FUJI TRACK,TO,1,BLU,8419.0,STOLEN,12122,"{'type': 'Point', 'coordinates': (-79.39795271, 43.63704773)}"
-12141,1930,GO-20179021798,THEFT UNDER - BICYCLE,2017-12-09T00:00:00,2017,December,Saturday,9,343,15,2017-12-09T00:00:00,2017,December,Saturday,9,343,22,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RC,21,BLK,700.0,STOLEN,12123,"{'type': 'Point', 'coordinates': (-79.40185545, 43.64191381)}"
-12142,1936,GO-20179022066,THEFT UNDER,2017-12-09T00:00:00,2017,December,Saturday,9,343,20,2017-12-13T00:00:00,2017,December,Wednesday,13,347,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,,MONSTER 5 MEN 2,MT,21,BLK,350.0,STOLEN,12124,"{'type': 'Point', 'coordinates': (-79.38442526, 43.6402504)}"
-12143,1938,GO-20173131824,THEFT UNDER - BICYCLE,2017-11-30T00:00:00,2017,November,Thursday,30,334,8,2017-12-04T00:00:00,2017,December,Monday,4,338,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,,OT,0,,,STOLEN,12125,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-12144,3461,GO-20189030291,THEFT UNDER - BICYCLE,2018-09-07T00:00:00,2018,September,Friday,7,250,11,2018-09-13T00:00:00,2018,September,Thursday,13,256,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NO,VFR INTERNAL,OT,8,GRN,0.0,STOLEN,12126,"{'type': 'Point', 'coordinates': (-79.38065193, 43.64100385)}"
-12145,1949,GO-20179022648,THEFT UNDER - BICYCLE,2017-12-19T00:00:00,2017,December,Tuesday,19,353,19,2017-12-20T00:00:00,2017,December,Wednesday,20,354,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,FX 7.2,RG,24,BLK,800.0,STOLEN,12127,"{'type': 'Point', 'coordinates': (-79.38091602, 43.64168463)}"
-12146,1952,GO-20179022648,THEFT UNDER - BICYCLE,2017-12-19T00:00:00,2017,December,Tuesday,19,353,19,2017-12-20T00:00:00,2017,December,Wednesday,20,354,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,FX 7.2,RG,24,BLK,,STOLEN,12128,"{'type': 'Point', 'coordinates': (-79.38091602, 43.64168463)}"
-12147,1953,GO-20173238789,THEFT UNDER - BICYCLE,2017-12-20T00:00:00,2017,December,Wednesday,20,354,23,2017-12-21T00:00:00,2017,December,Thursday,21,355,8,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,KATO4,MT,10,BLK,1400.0,STOLEN,12129,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-12148,1957,GO-20179022785,THEFT UNDER,2017-12-20T00:00:00,2017,December,Wednesday,20,354,17,2017-12-22T00:00:00,2017,December,Friday,22,356,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,TOP FUEL 9,MT,11,LGR,3500.0,STOLEN,12130,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-12149,7297,GO-20209023810,THEFT UNDER,2020-09-16T00:00:00,2020,September,Wednesday,16,260,19,2020-09-19T00:00:00,2020,September,Saturday,19,263,9,D52,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,OT,BEASLEY 27.5,OT,8,BLK,877.0,STOLEN,12131,"{'type': 'Point', 'coordinates': (-79.39211621, 43.64968054)}"
-12150,1958,GO-20179022930,THEFT UNDER,2017-12-22T00:00:00,2017,December,Friday,22,356,17,2017-12-24T00:00:00,2017,December,Sunday,24,358,16,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,1,RED,600.0,STOLEN,12132,"{'type': 'Point', 'coordinates': (-79.39882641, 43.63812175)}"
-12151,1971,GO-20189000533,THEFT UNDER - BICYCLE,2017-12-12T00:00:00,2017,December,Tuesday,12,346,17,2018-01-08T00:00:00,2018,January,Monday,8,8,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,SPECIALE COMMUT,RG,1,BLU,800.0,STOLEN,12133,"{'type': 'Point', 'coordinates': (-79.39737512, 43.64853707)}"
-12152,1972,GO-20189000572,THEFT UNDER - BICYCLE,2017-10-01T00:00:00,2017,October,Sunday,1,274,1,2018-01-08T00:00:00,2018,January,Monday,8,8,16,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,NS SODA SLOPE,MT,1,SIL,2300.0,STOLEN,12134,"{'type': 'Point', 'coordinates': (-79.40306565, 43.64488902)}"
-12153,1982,GO-20172006433,B&E,2017-10-25T00:00:00,2017,October,Wednesday,25,298,0,2017-11-05T00:00:00,2017,November,Sunday,5,309,22,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,FELT,Z85,RC,20,,,STOLEN,12135,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-12154,1993,GO-20189001748,THEFT UNDER - BICYCLE,2018-01-19T00:00:00,2018,January,Friday,19,19,9,2018-01-19T00:00:00,2018,January,Friday,19,19,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,MA,,RG,21,BLU,700.0,STOLEN,12136,"{'type': 'Point', 'coordinates': (-79.39837878, 43.64832482)}"
-12155,1995,GO-20189001945,THEFT UNDER - BICYCLE,2018-01-15T00:00:00,2018,January,Monday,15,15,23,2018-01-21T00:00:00,2018,January,Sunday,21,21,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CA,QUICK,RG,8,BLK,800.0,STOLEN,12137,"{'type': 'Point', 'coordinates': (-79.39124176, 43.640111790000006)}"
-12156,2102,GO-20189009181,THEFT UNDER,2018-03-22T00:00:00,2018,March,Thursday,22,81,20,2018-03-23T00:00:00,2018,March,Friday,23,82,17,D52,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,CA,R600,RG,18,PLE,800.0,STOLEN,12146,"{'type': 'Point', 'coordinates': (-79.3932382, 43.64839265)}"
-12157,2014,GO-2018220889,THEFT UNDER - BICYCLE,2017-12-18T00:00:00,2017,December,Monday,18,352,18,2018-02-04T00:00:00,2018,February,Sunday,4,35,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SUPERCYCLE,,MT,21,RED,200.0,STOLEN,12138,"{'type': 'Point', 'coordinates': (-79.3932382, 43.64839265)}"
-12158,2032,GO-2018305968,THEFT UNDER - BICYCLE,2018-02-17T00:00:00,2018,February,Saturday,17,48,15,2018-02-17T00:00:00,2018,February,Saturday,17,48,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NORCO,SIGHT,RG,1,GRY,2558.0,STOLEN,12139,"{'type': 'Point', 'coordinates': (-79.395007, 43.64546954)}"
-12159,2037,GO-2018240820,B&E,2018-02-05T00:00:00,2018,February,Monday,5,36,7,2018-02-07T00:00:00,2018,February,Wednesday,7,38,16,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,SILVERSTONE 2 O,RC,18,WHI,1350.0,STOLEN,12140,"{'type': 'Point', 'coordinates': (-79.40306565, 43.64488902)}"
-12160,2038,GO-2018240820,B&E,2018-02-05T00:00:00,2018,February,Monday,5,36,7,2018-02-07T00:00:00,2018,February,Wednesday,7,38,16,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,1,SIL,220.0,STOLEN,12141,"{'type': 'Point', 'coordinates': (-79.40306565, 43.64488902)}"
-12161,2089,GO-2018494602,B&E,2018-03-08T00:00:00,2018,March,Thursday,8,67,13,2018-03-20T00:00:00,2018,March,Tuesday,20,79,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,FELT,ZW2,RG,20,BLKBLU,6000.0,STOLEN,12142,"{'type': 'Point', 'coordinates': (-79.39882641, 43.63812175)}"
-12162,2092,GO-20189008684,THEFT UNDER,2018-03-20T00:00:00,2018,March,Tuesday,20,79,1,2018-03-20T00:00:00,2018,March,Tuesday,20,79,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,MOUNTAIN BIKE,MT,21,GRN,630.0,STOLEN,12143,"{'type': 'Point', 'coordinates': (-79.39924205, 43.63909783)}"
-12163,2095,GO-20189008934,THEFT UNDER - BICYCLE,2018-02-05T00:00:00,2018,February,Monday,5,36,21,2018-03-21T00:00:00,2018,March,Wednesday,21,80,21,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,CRAVE COMP,MT,21,BLK,0.0,STOLEN,12144,"{'type': 'Point', 'coordinates': (-79.40306565, 43.64488902)}"
-12164,2101,GO-2018509006,THEFT UNDER - BICYCLE,2018-03-20T00:00:00,2018,March,Tuesday,20,79,19,2018-03-20T00:00:00,2018,March,Tuesday,20,79,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,ESCAPE2,RC,21,BLKRED,1100.0,STOLEN,12145,"{'type': 'Point', 'coordinates': (-79.38065193, 43.64100385)}"
-12165,5052,GO-20199025994,THEFT UNDER - BICYCLE,2019-08-10T00:00:00,2019,August,Saturday,10,222,18,2019-08-13T00:00:00,2019,August,Tuesday,13,225,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,2014 7.3 FX,RG,27,BLK,660.0,STOLEN,12147,"{'type': 'Point', 'coordinates': (-79.39882641, 43.63812175)}"
-12166,2126,GO-20189010021,THEFT UNDER - BICYCLE,2018-01-01T00:00:00,2018,January,Monday,1,1,12,2018-03-30T00:00:00,2018,March,Friday,30,89,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,8,,500.0,STOLEN,12148,"{'type': 'Point', 'coordinates': (-79.38396859, 43.64239001)}"
-12167,2135,GO-20189010539,THEFT UNDER - BICYCLE,2018-04-04T00:00:00,2018,April,Wednesday,4,94,15,2018-04-05T00:00:00,2018,April,Thursday,5,95,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,CADEX,RC,24,TRQ,500.0,STOLEN,12149,"{'type': 'Point', 'coordinates': (-79.3932382, 43.64839265)}"
-12168,2157,GO-20189011629,THEFT UNDER - BICYCLE,2018-04-03T00:00:00,2018,April,Tuesday,3,93,19,2018-04-14T00:00:00,2018,April,Saturday,14,104,14,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,RG,15,BLK,550.0,STOLEN,12150,"{'type': 'Point', 'coordinates': (-79.3979648, 43.63940267)}"
-12169,2159,GO-20189011679,THEFT UNDER - BICYCLE,2018-04-11T00:00:00,2018,April,Wednesday,11,101,20,2018-04-14T00:00:00,2018,April,Saturday,14,104,20,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,SEEK 3,OT,18,GRY,800.0,STOLEN,12151,"{'type': 'Point', 'coordinates': (-79.36388253000001, 43.64495966)}"
-12170,2207,GO-2018746881,THEFT UNDER - BICYCLE,2018-04-25T00:00:00,2018,April,Wednesday,25,115,14,2018-04-26T00:00:00,2018,April,Thursday,26,116,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BERIA,,OT,0,RED,900.0,STOLEN,12152,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-12171,2208,GO-20189012982,THEFT UNDER - BICYCLE,2018-04-24T00:00:00,2018,April,Tuesday,24,114,20,2018-04-26T00:00:00,2018,April,Thursday,26,116,21,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,SECTEUR SPORT C,RG,12,DBL,0.0,STOLEN,12153,"{'type': 'Point', 'coordinates': (-79.39924205, 43.63909783)}"
-12172,2231,GO-20189013406,THEFT UNDER - BICYCLE,2018-04-01T00:00:00,2018,April,Sunday,1,91,14,2018-04-30T00:00:00,2018,April,Monday,30,120,14,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,FX2,MT,10,BLK,600.0,STOLEN,12155,"{'type': 'Point', 'coordinates': (-79.40078712, 43.64430357)}"
-12173,2234,GO-20189013453,THEFT UNDER - BICYCLE,2018-05-01T00:00:00,2018,May,Tuesday,1,121,12,2018-05-01T00:00:00,2018,May,Tuesday,1,121,17,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,SPRINGDALE LADI,OT,18,WHI,470.0,STOLEN,12156,"{'type': 'Point', 'coordinates': (-79.36183585, 43.64956942)}"
-12174,2256,GO-20189013895,THEFT UNDER,2018-05-04T00:00:00,2018,May,Friday,4,124,9,2018-05-05T00:00:00,2018,May,Saturday,5,125,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SU,,MT,16,GRN,0.0,STOLEN,12157,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-12175,2265,GO-20189013997,THEFT UNDER - BICYCLE,2018-05-02T00:00:00,2018,May,Wednesday,2,122,10,2018-05-06T00:00:00,2018,May,Sunday,6,126,16,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,ROAM 2,MT,28,BLU,1000.0,STOLEN,12158,"{'type': 'Point', 'coordinates': (-79.3979648, 43.63940267)}"
-12176,2269,GO-2018805351,THEFT UNDER - BICYCLE,2018-05-04T00:00:00,2018,May,Friday,4,124,21,2018-05-04T00:00:00,2018,May,Friday,4,124,21,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,ELECTRA,RATROD,EL,1,BLK,2000.0,STOLEN,12159,"{'type': 'Point', 'coordinates': (-79.40137395, 43.64770851)}"
-12177,2270,GO-20189014098,THEFT UNDER - BICYCLE,2018-05-07T00:00:00,2018,May,Monday,7,127,7,2018-05-07T00:00:00,2018,May,Monday,7,127,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,,HYBRID,RG,18,WHI,299.0,STOLEN,12160,"{'type': 'Point', 'coordinates': (-79.38091602, 43.64168463)}"
-12178,2271,GO-20189014138,THEFT UNDER - BICYCLE,2018-05-07T00:00:00,2018,May,Monday,7,127,18,2018-05-08T00:00:00,2018,May,Tuesday,8,128,8,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,,TO,21,BLK,0.0,STOLEN,12161,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-12179,2273,GO-20189014170,THEFT UNDER - BICYCLE,2018-05-08T00:00:00,2018,May,Tuesday,8,128,0,2018-05-08T00:00:00,2018,May,Tuesday,8,128,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,CROSSTRAIL,RG,24,SIL,650.0,STOLEN,12162,"{'type': 'Point', 'coordinates': (-79.40306565, 43.64488902)}"
-12180,2296,GO-20189014780,THEFT UNDER - BICYCLE,2018-05-02T00:00:00,2018,May,Wednesday,2,122,18,2018-05-13T00:00:00,2018,May,Sunday,13,133,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,HARPER SINGLE S,RG,1,RED,271.0,STOLEN,12163,"{'type': 'Point', 'coordinates': (-79.39281928, 43.64732006)}"
-12181,2305,GO-20189014818,THEFT UNDER - BICYCLE,2018-05-13T00:00:00,2018,May,Sunday,13,133,9,2018-05-14T00:00:00,2018,May,Monday,14,134,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RG,20,DBL,800.0,STOLEN,12164,"{'type': 'Point', 'coordinates': (-79.38914103, 43.64945651)}"
-12182,2312,GO-20189014988,THEFT UNDER - BICYCLE,2018-05-05T00:00:00,2018,May,Saturday,5,125,7,2018-05-15T00:00:00,2018,May,Tuesday,15,135,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,GT AGRESSOR,MT,21,GRY,500.0,STOLEN,12165,"{'type': 'Point', 'coordinates': (-79.38914103, 43.64945651)}"
-12183,2313,GO-20189014988,THEFT UNDER - BICYCLE,2018-05-05T00:00:00,2018,May,Saturday,5,125,7,2018-05-15T00:00:00,2018,May,Tuesday,15,135,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,,MT,21,BLK,500.0,STOLEN,12166,"{'type': 'Point', 'coordinates': (-79.38914103, 43.64945651)}"
-12184,2317,GO-20189015022,THEFT UNDER - BICYCLE,2018-05-14T00:00:00,2018,May,Monday,14,134,21,2018-05-15T00:00:00,2018,May,Tuesday,15,135,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,RA,REVENIO 2.0,RC,14,GRY,1200.0,STOLEN,12167,"{'type': 'Point', 'coordinates': (-79.38143561, 43.64291214)}"
-12185,2321,GO-20189015118,THEFT UNDER - BICYCLE,2018-05-15T00:00:00,2018,May,Tuesday,15,135,18,2018-05-16T00:00:00,2018,May,Wednesday,16,136,9,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,LANGSTER,RC,1,SIL,800.0,STOLEN,12168,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-12186,2322,GO-20189015125,THEFT UNDER - BICYCLE,2018-05-14T00:00:00,2018,May,Monday,14,134,22,2018-05-16T00:00:00,2018,May,Wednesday,16,136,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,ESPACE,RG,21,,500.0,STOLEN,12169,"{'type': 'Point', 'coordinates': (-79.38091602, 43.64168463)}"
-12187,2332,GO-20189015229,THEFT UNDER - BICYCLE,2018-05-16T00:00:00,2018,May,Wednesday,16,136,21,2018-05-16T00:00:00,2018,May,Wednesday,16,136,21,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE 2,OT,27,OTH,1000.0,STOLEN,12170,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-12188,2334,GO-2018885567,B&E,2018-05-15T00:00:00,2018,May,Tuesday,15,135,8,2018-05-16T00:00:00,2018,May,Wednesday,16,136,20,D14,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,LUNIS,,RG,3,BLK,850.0,STOLEN,12171,"{'type': 'Point', 'coordinates': (-79.39811145, 43.64623146000001)}"
-12189,2335,GO-20189015283,THEFT UNDER - BICYCLE,2018-05-16T00:00:00,2018,May,Wednesday,16,136,21,2018-05-17T00:00:00,2018,May,Thursday,17,137,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ADAGIO,RG,12,GRY,600.0,STOLEN,12172,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-12190,2344,GO-20189015392,THEFT UNDER - BICYCLE,2018-05-15T00:00:00,2018,May,Tuesday,15,135,23,2018-05-18T00:00:00,2018,May,Friday,18,138,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,BAD BOY 4,RG,9,BLK,1200.0,STOLEN,12173,"{'type': 'Point', 'coordinates': (-79.39811145, 43.64623146000001)}"
-12191,2352,GO-2018910597,THEFT UNDER - BICYCLE,2018-05-14T00:00:00,2018,May,Monday,14,134,18,2018-05-20T00:00:00,2018,May,Sunday,20,140,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GENESIS,TRAFIK 6.0SX XL,MT,21,,600.0,STOLEN,12174,"{'type': 'Point', 'coordinates': (-79.39124176, 43.640111790000006)}"
-12192,2358,GO-20189015661,THEFT UNDER,2018-05-17T00:00:00,2018,May,Thursday,17,137,9,2018-05-21T00:00:00,2018,May,Monday,21,141,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,OT,SQURE CROSS2,MT,24,BLK,1139.0,STOLEN,12175,"{'type': 'Point', 'coordinates': (-79.38396859, 43.64239001)}"
-12193,2359,GO-2018895827,THEFT UNDER - BICYCLE,2018-05-13T00:00:00,2018,May,Sunday,13,133,14,2018-05-18T00:00:00,2018,May,Friday,18,138,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CANNONDALE,,OT,0,WHI,900.0,STOLEN,12176,"{'type': 'Point', 'coordinates': (-79.39366252, 43.64935047)}"
-12194,2367,GO-20189015790,THEFT UNDER,2017-11-01T00:00:00,2017,November,Wednesday,1,305,14,2018-05-22T00:00:00,2018,May,Tuesday,22,142,14,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,FJ,,RG,21,BLU,275.0,STOLEN,12177,"{'type': 'Point', 'coordinates': (-79.37302563, 43.64248042)}"
-12195,2376,GO-20189015895,THEFT UNDER - BICYCLE,2018-05-17T00:00:00,2018,May,Thursday,17,137,22,2018-05-23T00:00:00,2018,May,Wednesday,23,143,8,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,CAD 8,RC,21,RED,1200.0,STOLEN,12178,"{'type': 'Point', 'coordinates': (-79.35677669, 43.6529262)}"
-12196,2377,GO-20189015906,THEFT UNDER,2018-05-19T00:00:00,2018,May,Saturday,19,139,1,2018-05-23T00:00:00,2018,May,Wednesday,23,143,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,FX2 2018,RG,24,BLK,600.0,STOLEN,12179,"{'type': 'Point', 'coordinates': (-79.39124574, 43.64342012)}"
-12197,2380,GO-20189015934,THEFT UNDER - BICYCLE,2018-05-22T00:00:00,2018,May,Tuesday,22,142,16,2018-05-23T00:00:00,2018,May,Wednesday,23,143,22,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,X-CALIBER,MT,9,GRY,1200.0,STOLEN,12180,"{'type': 'Point', 'coordinates': (-79.35713011, 43.65083215)}"
-12198,2396,GO-20189016271,THEFT UNDER - SHOPLIFTING,2018-05-25T00:00:00,2018,May,Friday,25,145,8,2018-05-25T00:00:00,2018,May,Friday,25,145,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,21,WHI,600.0,STOLEN,12181,"{'type': 'Point', 'coordinates': (-79.38709792, 43.64990598)}"
-12199,2429,GO-20189016870,THEFT UNDER - BICYCLE,2018-05-30T00:00:00,2018,May,Wednesday,30,150,9,2018-05-30T00:00:00,2018,May,Wednesday,30,150,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,MT,24,BLK,600.0,STOLEN,12182,"{'type': 'Point', 'coordinates': (-79.39281928, 43.64732006)}"
-12200,2434,GO-20189016961,THEFT UNDER - BICYCLE,2018-05-23T00:00:00,2018,May,Wednesday,23,143,9,2018-05-31T00:00:00,2018,May,Thursday,31,151,17,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,VITA COMP CARBO,OT,20,BLK,2500.0,STOLEN,12183,"{'type': 'Point', 'coordinates': (-79.39974525, 43.64372459)}"
-12201,2452,GO-20189017326,THEFT UNDER - BICYCLE,2018-05-27T00:00:00,2018,May,Sunday,27,147,13,2018-06-04T00:00:00,2018,June,Monday,4,155,14,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SC,,RG,7,LBL,0.0,STOLEN,12184,"{'type': 'Point', 'coordinates': (-79.40078712, 43.64430357)}"
-12202,2455,GO-20189017351,THEFT UNDER - BICYCLE,2018-05-30T00:00:00,2018,May,Wednesday,30,150,0,2018-06-04T00:00:00,2018,June,Monday,4,155,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,DEW PLUS 2015,RG,21,BLK,900.0,STOLEN,12185,"{'type': 'Point', 'coordinates': (-79.38658151, 43.64863773)}"
-12203,2464,GO-20189017431,THEFT UNDER - BICYCLE,2018-04-25T00:00:00,2018,April,Wednesday,25,115,9,2018-06-05T00:00:00,2018,June,Tuesday,5,156,9,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,ROAD KING,RG,5,RED,100.0,STOLEN,12186,"{'type': 'Point', 'coordinates': (-79.36616846, 43.64421276)}"
-12204,2467,GO-20189017448,THEFT UNDER - BICYCLE,2018-05-23T00:00:00,2018,May,Wednesday,23,143,9,2018-06-05T00:00:00,2018,June,Tuesday,5,156,9,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,UNKNOW,MT,1,BLK,850.0,STOLEN,12187,"{'type': 'Point', 'coordinates': (-79.37646324, 43.64578351)}"
-12205,2478,GO-20189017590,THEFT UNDER - BICYCLE,2018-06-05T00:00:00,2018,June,Tuesday,5,156,11,2018-06-06T00:00:00,2018,June,Wednesday,6,157,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,TALON,MT,27,BLK,750.0,STOLEN,12188,"{'type': 'Point', 'coordinates': (-79.39281928, 43.64732006)}"
-12206,2481,GO-20181018451,THEFT UNDER - BICYCLE,2018-05-24T00:00:00,2018,May,Thursday,24,144,7,2018-06-05T00:00:00,2018,June,Tuesday,5,156,14,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,KAI TAI,OT,24,GRY,1200.0,STOLEN,12189,"{'type': 'Point', 'coordinates': (-79.35713011, 43.65083215)}"
-12207,2483,GO-20189017682,THEFT UNDER - BICYCLE,2018-06-02T00:00:00,2018,June,Saturday,2,153,5,2018-06-06T00:00:00,2018,June,Wednesday,6,157,22,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SC,,OT,1,RED,508.0,STOLEN,12190,"{'type': 'Point', 'coordinates': (-79.39833497, 43.64030158)}"
-12208,2488,GO-20189017755,THEFT UNDER - BICYCLE,2018-06-07T00:00:00,2018,June,Thursday,7,158,9,2018-06-07T00:00:00,2018,June,Thursday,7,158,12,D14,Toronto,77,Waterfront Communities-The Island (77),Schools During Un-Supervised Activity,Educational,UK,ROADBIKE,RC,3,PLE,600.0,STOLEN,12191,"{'type': 'Point', 'coordinates': (-79.39811145, 43.64623146000001)}"
-12209,2490,GO-20189017829,THEFT UNDER - BICYCLE,2018-05-09T00:00:00,2018,May,Wednesday,9,129,10,2018-06-07T00:00:00,2018,June,Thursday,7,158,23,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,OCR SOR8,RC,27,BLU,1900.0,STOLEN,12192,"{'type': 'Point', 'coordinates': (-79.35677669, 43.6529262)}"
-12210,2498,GO-20181037579,B&E W'INTENT,2018-06-07T00:00:00,2018,June,Thursday,7,158,6,2018-06-08T00:00:00,2018,June,Friday,8,159,10,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GIANT,,OT,24,BLK,800.0,STOLEN,12193,"{'type': 'Point', 'coordinates': (-79.36183585, 43.64956942)}"
-12211,2500,GO-20189017846,THEFT UNDER - BICYCLE,2018-06-07T00:00:00,2018,June,Thursday,7,158,19,2018-06-08T00:00:00,2018,June,Friday,8,159,8,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,FJ,FEATHER,RG,1,,800.0,STOLEN,12194,"{'type': 'Point', 'coordinates': (-79.4023568, 43.64319258)}"
-12212,2511,GO-20189017732,THEFT UNDER - BICYCLE,2018-06-07T00:00:00,2018,June,Thursday,7,158,8,2018-06-07T00:00:00,2018,June,Thursday,7,158,10,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,,RG,21,,850.0,STOLEN,12195,"{'type': 'Point', 'coordinates': (-79.36183585, 43.64956942)}"
-12213,2541,GO-20189018345,THEFT UNDER - BICYCLE,2018-06-11T00:00:00,2018,June,Monday,11,162,17,2018-06-12T00:00:00,2018,June,Tuesday,12,163,10,D51,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,SYNAPSE,RC,18,BLK,1000.0,STOLEN,12196,"{'type': 'Point', 'coordinates': (-79.37215317, 43.64913066)}"
-12214,2578,GO-20189018863,THEFT UNDER - BICYCLE,2018-06-15T00:00:00,2018,June,Friday,15,166,12,2018-06-15T00:00:00,2018,June,Friday,15,166,19,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,GT AGRESSOR,MT,18,BLK,400.0,STOLEN,12197,"{'type': 'Point', 'coordinates': (-79.37327274, 43.64725689)}"
-12215,2585,GO-20189018932,THEFT UNDER - BICYCLE,2018-06-15T00:00:00,2018,June,Friday,15,166,21,2018-06-16T00:00:00,2018,June,Saturday,16,167,12,D51,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,DB,CENTURY DISC,RC,20,BLK,1518.0,STOLEN,12198,"{'type': 'Point', 'coordinates': (-79.37146354, 43.64763677)}"
-12216,2600,GO-20189019049,THEFT UNDER - BICYCLE,2018-06-16T00:00:00,2018,June,Saturday,16,167,14,2018-06-17T00:00:00,2018,June,Sunday,17,168,17,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,07 CYPRESS BLAC,RG,21,BLK,500.0,STOLEN,12199,"{'type': 'Point', 'coordinates': (-79.35840973, 43.65001391)}"
-12217,2603,GO-20189019091,THEFT UNDER,2018-06-06T00:00:00,2018,June,Wednesday,6,157,18,2018-06-18T00:00:00,2018,June,Monday,18,169,9,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,AVAIL COMPOSITE,RC,12,WHI,1864.0,STOLEN,12200,"{'type': 'Point', 'coordinates': (-79.36388253000001, 43.64495966)}"
-12218,2608,GO-20189019219,THEFT UNDER - BICYCLE,2018-06-18T00:00:00,2018,June,Monday,18,169,9,2018-06-18T00:00:00,2018,June,Monday,18,169,23,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,,RG,18,MRN,150.0,STOLEN,12201,"{'type': 'Point', 'coordinates': (-79.3932382, 43.64839265)}"
-12219,2611,GO-20189019223,THEFT UNDER - BICYCLE,2018-06-18T00:00:00,2018,June,Monday,18,169,9,2018-06-19T00:00:00,2018,June,Tuesday,19,170,1,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CA,QUICK SPEED 1,TO,18,BLU,1500.0,STOLEN,12202,"{'type': 'Point', 'coordinates': (-79.37302563, 43.64248042)}"
-12220,2621,GO-20189019377,THEFT UNDER,2018-06-16T00:00:00,2018,June,Saturday,16,167,1,2018-06-19T00:00:00,2018,June,Tuesday,19,170,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE,RG,24,GRY,580.0,STOLEN,12203,"{'type': 'Point', 'coordinates': (-79.40372116, 43.64647061)}"
-12221,849,GO-20179010129,THEFT UNDER - BICYCLE,2017-07-13T00:00:00,2017,July,Thursday,13,194,15,2017-07-13T00:00:00,2017,July,Thursday,13,194,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,BEACH,EL,1,SIL,1000.0,STOLEN,12204,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-12222,6068,GO-20209011305,THEFT UNDER - BICYCLE,2020-04-14T00:00:00,2020,April,Tuesday,14,105,10,2020-04-16T00:00:00,2020,April,Thursday,16,107,17,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,8,RED,0.0,STOLEN,12205,"{'type': 'Point', 'coordinates': (-79.40138212, 43.64074836)}"
-12223,2625,GO-20189019391,THEFT UNDER - BICYCLE,2018-06-19T00:00:00,2018,June,Tuesday,19,170,6,2018-06-19T00:00:00,2018,June,Tuesday,19,170,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,LIV ALIGHT 2 CI,RG,24,SIL,600.0,STOLEN,12206,"{'type': 'Point', 'coordinates': (-79.39880646, 43.64142779)}"
-12224,23382,GO-20142030078,THEFT UNDER,2014-05-06T00:00:00,2014,May,Tuesday,6,126,16,2014-05-07T00:00:00,2014,May,Wednesday,7,127,7,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,JAMIS,VENTURA SPORT,OT,21,BLK,,STOLEN,12207,"{'type': 'Point', 'coordinates': (-79.38551636, 43.64886856)}"
-12225,3465,GO-20189030411,THEFT UNDER - BICYCLE,2018-09-13T00:00:00,2018,September,Thursday,13,256,12,2018-09-14T00:00:00,2018,September,Friday,14,257,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SC,,MT,21,BLU,0.0,STOLEN,12208,"{'type': 'Point', 'coordinates': (-79.39880646, 43.64142779)}"
-12226,3473,GO-20189030520,THEFT UNDER - BICYCLE,2018-09-14T00:00:00,2018,September,Friday,14,257,17,2018-09-14T00:00:00,2018,September,Friday,14,257,21,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ORPHEO 5,RG,16,BLK,620.0,STOLEN,12209,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-12227,3488,GO-20189030726,THEFT UNDER - BICYCLE,2018-09-16T00:00:00,2018,September,Sunday,16,259,14,2018-09-16T00:00:00,2018,September,Sunday,16,259,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CL5 WOMEN'S 700,RG,21,BLU,500.0,STOLEN,12210,"{'type': 'Point', 'coordinates': (-79.38091602, 43.64168463)}"
-12228,3495,GO-20189030819,THEFT UNDER - BICYCLE,2018-09-15T00:00:00,2018,September,Saturday,15,258,15,2018-09-17T00:00:00,2018,September,Monday,17,260,20,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,QUICK 8 BBQ/RED,RG,8,RED,519.0,STOLEN,12211,"{'type': 'Point', 'coordinates': (-79.35482206, 43.65337232)}"
-12229,3500,GO-20189030900,THEFT UNDER,2018-09-17T00:00:00,2018,September,Monday,17,260,17,2018-09-18T00:00:00,2018,September,Tuesday,18,261,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,STUMPJUMPER,MT,9,RED,300.0,STOLEN,12212,"{'type': 'Point', 'coordinates': (-79.39410409, 43.64705106)}"
-12230,3503,GO-20189030965,THEFT UNDER - BICYCLE,2018-09-16T00:00:00,2018,September,Sunday,16,259,21,2018-09-18T00:00:00,2018,September,Tuesday,18,261,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,RED BULL 56,RG,1,RED,500.0,STOLEN,12213,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-12231,3505,GO-20189031020,THEFT UNDER,2018-09-16T00:00:00,2018,September,Sunday,16,259,20,2018-09-18T00:00:00,2018,September,Tuesday,18,261,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BI,PIAGGIO,RG,12,LBL,700.0,STOLEN,12214,"{'type': 'Point', 'coordinates': (-79.3932382, 43.64839265)}"
-12232,3508,GO-20189031014,THEFT UNDER,2018-09-11T00:00:00,2018,September,Tuesday,11,254,12,2018-09-18T00:00:00,2018,September,Tuesday,18,261,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CA,,TO,27,BLK,1400.0,STOLEN,12215,"{'type': 'Point', 'coordinates': (-79.39880646, 43.64142779)}"
-12233,3519,GO-20189031238,THEFT UNDER - BICYCLE,2018-09-11T00:00:00,2018,September,Tuesday,11,254,5,2018-09-20T00:00:00,2018,September,Thursday,20,263,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NO,INDIE 3,RG,50,BLK,900.0,STOLEN,12216,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-12234,3536,GO-20189031547,THEFT UNDER - BICYCLE,2018-09-21T00:00:00,2018,September,Friday,21,264,21,2018-09-22T00:00:00,2018,September,Saturday,22,265,15,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,TO,8,BLU,500.0,STOLEN,12217,"{'type': 'Point', 'coordinates': (-79.35677669, 43.6529262)}"
-12235,3541,GO-20189031654,THEFT UNDER - BICYCLE,2018-09-23T00:00:00,2018,September,Sunday,23,266,11,2018-09-23T00:00:00,2018,September,Sunday,23,266,21,D52,Toronto,77,Waterfront Communities-The Island (77),Go Station,Transit,OT,RIVERSPORT,MT,21,BLK,500.0,STOLEN,12218,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-12236,3550,GO-20189031800,THEFT UNDER - BICYCLE,2018-09-17T00:00:00,2018,September,Monday,17,260,17,2018-09-25T00:00:00,2018,September,Tuesday,25,268,8,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,PE,U08,RC,10,WHI,300.0,STOLEN,12219,"{'type': 'Point', 'coordinates': (-79.38542345, 43.63902804)}"
-12237,3551,GO-20189031776,THEFT UNDER - BICYCLE,2018-09-24T00:00:00,2018,September,Monday,24,267,18,2018-09-24T00:00:00,2018,September,Monday,24,267,22,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RG,21,BLK,900.0,STOLEN,12220,"{'type': 'Point', 'coordinates': (-79.40005716, 43.64445256)}"
-12238,3552,GO-20189029111,THEFT UNDER - BICYCLE,2018-09-04T00:00:00,2018,September,Tuesday,4,247,20,2018-09-04T00:00:00,2018,September,Tuesday,4,247,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,POMPETAMINE,OT,1,BLK,,STOLEN,12221,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-12239,3565,GO-20189032094,THEFT UNDER - BICYCLE,2018-09-24T00:00:00,2018,September,Monday,24,267,9,2018-09-27T00:00:00,2018,September,Thursday,27,270,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,MT,21,,300.0,STOLEN,12222,"{'type': 'Point', 'coordinates': (-79.38860347, 43.65042088)}"
-12240,3573,GO-20189032306,THEFT UNDER,2018-09-28T00:00:00,2018,September,Friday,28,271,15,2018-09-28T00:00:00,2018,September,Friday,28,271,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MA,VERONA,OT,1,BLU,800.0,STOLEN,12223,"{'type': 'Point', 'coordinates': (-79.38684132, 43.64925417)}"
-12241,3575,GO-20181808581,PROPERTY - FOUND,2018-09-30T00:00:00,2018,September,Sunday,30,273,13,2018-09-30T00:00:00,2018,September,Sunday,30,273,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,1.2 SERIES,RC,24,BLU,,UNKNOWN,12224,"{'type': 'Point', 'coordinates': (-79.39225864, 43.63863312)}"
-12242,3579,GO-20189032386,THEFT UNDER,2018-09-27T00:00:00,2018,September,Thursday,27,270,13,2018-09-29T00:00:00,2018,September,Saturday,29,272,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,UK,,RG,10,ONG,140.0,STOLEN,12225,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-12243,7312,GO-20209023958,THEFT UNDER,2020-09-21T00:00:00,2020,September,Monday,21,265,13,2020-09-21T00:00:00,2020,September,Monday,21,265,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,FJ,,RG,3,RED,450.0,STOLEN,12226,"{'type': 'Point', 'coordinates': (-79.40078712, 43.64430357)}"
-12244,5058,GO-20191539625,B&E,2019-08-02T00:00:00,2019,August,Friday,2,214,12,2019-08-14T00:00:00,2019,August,Wednesday,14,226,6,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,MARIN,SAN ANSELMO,MT,21,BGE,799.0,STOLEN,12227,"{'type': 'Point', 'coordinates': (-79.37778379, 43.6430065)}"
-12245,6108,GO-20209012002,THEFT UNDER,2020-04-23T00:00:00,2020,April,Thursday,23,114,9,2020-04-27T00:00:00,2020,April,Monday,27,118,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,RA,GREY 17 WOMEN'S,TO,7,SIL,100.0,STOLEN,12228,"{'type': 'Point', 'coordinates': (-79.39880646, 43.64142779)}"
-12246,2627,GO-20189019451,THEFT UNDER - BICYCLE,2018-06-16T00:00:00,2018,June,Saturday,16,167,22,2018-06-20T00:00:00,2018,June,Wednesday,20,171,11,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,6,BLK,0.0,STOLEN,12229,"{'type': 'Point', 'coordinates': (-79.36388253000001, 43.64495966)}"
-12247,3588,GO-20189032483,THEFT UNDER - BICYCLE,2018-09-06T00:00:00,2018,September,Thursday,6,249,10,2018-10-01T00:00:00,2018,October,Monday,1,274,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,,RG,10,RED,350.0,STOLEN,12230,"{'type': 'Point', 'coordinates': (-79.39553097, 43.64673969)}"
-12248,3592,GO-20189032581,THEFT UNDER - BICYCLE,2018-09-29T00:00:00,2018,September,Saturday,29,272,9,2018-10-01T00:00:00,2018,October,Monday,1,274,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,,RG,10,BLK,650.0,STOLEN,12231,"{'type': 'Point', 'coordinates': (-79.3922993, 43.63874701)}"
-12249,3593,GO-20189032594,THEFT UNDER - BICYCLE,2018-09-13T00:00:00,2018,September,Thursday,13,256,20,2018-10-01T00:00:00,2018,October,Monday,1,274,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,18 ROAM 0 DISC,MT,10,BLK,1299.0,STOLEN,12232,"{'type': 'Point', 'coordinates': (-79.3932382, 43.64839265)}"
-12250,3598,GO-20189032676,THEFT UNDER - BICYCLE,2018-09-30T00:00:00,2018,September,Sunday,30,273,14,2018-10-02T00:00:00,2018,October,Tuesday,2,275,14,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,ALLEZ COMP,RC,24,WHI,1300.0,STOLEN,12233,"{'type': 'Point', 'coordinates': (-79.37646324, 43.64578351)}"
-12251,3599,GO-20189032676,THEFT UNDER - BICYCLE,2018-09-30T00:00:00,2018,September,Sunday,30,273,14,2018-10-02T00:00:00,2018,October,Tuesday,2,275,14,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,ALLEZ COMP,RC,9,WHI,1000.0,STOLEN,12234,"{'type': 'Point', 'coordinates': (-79.37646324, 43.64578351)}"
-12252,3601,GO-20189032684,THEFT UNDER,2018-09-30T00:00:00,2018,September,Sunday,30,273,6,2018-10-02T00:00:00,2018,October,Tuesday,2,275,14,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,12,GRY,600.0,STOLEN,12235,"{'type': 'Point', 'coordinates': (-79.40266560000002, 43.64392483)}"
-12253,3605,GO-20189032743,THEFT UNDER - BICYCLE,2018-10-03T00:00:00,2018,October,Wednesday,3,276,0,2018-10-03T00:00:00,2018,October,Wednesday,3,276,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,7,BLU,600.0,STOLEN,12236,"{'type': 'Point', 'coordinates': (-79.40306565, 43.64488902)}"
-12254,3612,GO-20189032814,THEFT UNDER - BICYCLE,2018-10-03T00:00:00,2018,October,Wednesday,3,276,16,2018-10-03T00:00:00,2018,October,Wednesday,3,276,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,6KU MATTE BLAC,RC,1,BLK,678.0,STOLEN,12237,"{'type': 'Point', 'coordinates': (-79.39124574, 43.64342012)}"
-12255,3619,GO-20189033013,THEFT UNDER - BICYCLE,2018-09-26T00:00:00,2018,September,Wednesday,26,269,12,2018-10-05T00:00:00,2018,October,Friday,5,278,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,DYNAMO,TO,27,GRY,1000.0,STOLEN,12238,"{'type': 'Point', 'coordinates': (-79.39924205, 43.63909783)}"
-12256,3636,GO-20181847962,THEFT UNDER - BICYCLE,2018-10-04T00:00:00,2018,October,Thursday,4,277,16,2018-10-06T00:00:00,2018,October,Saturday,6,279,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,JAMIS,ROAD BIKE,RG,21,BLK,500.0,STOLEN,12239,"{'type': 'Point', 'coordinates': (-79.38552201, 43.64605338)}"
-12257,3643,GO-20189033300,THEFT UNDER - BICYCLE,2018-10-08T00:00:00,2018,October,Monday,8,281,9,2018-10-09T00:00:00,2018,October,Tuesday,9,282,9,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,1,OTH,0.0,STOLEN,12240,"{'type': 'Point', 'coordinates': (-79.39458503, 43.64442176)}"
-12258,3648,GO-20189033411,THEFT UNDER - BICYCLE,2018-10-09T00:00:00,2018,October,Tuesday,9,282,13,2018-10-09T00:00:00,2018,October,Tuesday,9,282,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,CUBE LTD,MT,27,OTH,1500.0,STOLEN,12241,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-12259,3654,GO-20189033411,THEFT UNDER - BICYCLE,2018-10-09T00:00:00,2018,October,Tuesday,9,282,13,2018-10-09T00:00:00,2018,October,Tuesday,9,282,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,LTD,MT,27,OTH,1500.0,STOLEN,12242,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-12260,3658,GO-20189033411,THEFT UNDER - BICYCLE,2018-10-09T00:00:00,2018,October,Tuesday,9,282,13,2018-10-09T00:00:00,2018,October,Tuesday,9,282,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,LTD,MT,27,OTH,1500.0,STOLEN,12243,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-12261,3674,GO-20189033750,THEFT UNDER - BICYCLE,2018-10-11T00:00:00,2018,October,Thursday,11,284,18,2018-10-12T00:00:00,2018,October,Friday,12,285,0,D52,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,NO,,RG,10,WHI,845.0,STOLEN,12244,"{'type': 'Point', 'coordinates': (-79.39202118, 43.64537211)}"
-12262,23383,GO-20149003279,THEFT UNDER,2014-05-11T00:00:00,2014,May,Sunday,11,131,14,2014-05-11T00:00:00,2014,May,Sunday,11,131,18,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,SC,71-1381-6,MT,20,PLE,260.0,STOLEN,12245,"{'type': 'Point', 'coordinates': (-79.38737611, 43.66847728)}"
-12263,855,GO-20179010147,THEFT UNDER - BICYCLE,2017-07-12T00:00:00,2017,July,Wednesday,12,193,4,2017-07-13T00:00:00,2017,July,Thursday,13,194,20,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CC,,MT,20,BLU,400.0,STOLEN,12246,"{'type': 'Point', 'coordinates': (-79.39924205, 43.63909783)}"
-12264,3677,GO-20189033760,THEFT UNDER - BICYCLE,2018-09-03T00:00:00,2018,September,Monday,3,246,9,2018-10-12T00:00:00,2018,October,Friday,12,285,9,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,10,BLU,0.0,STOLEN,12247,"{'type': 'Point', 'coordinates': (-79.39811145, 43.64623146000001)}"
-12265,3680,GO-20181885116,THEFT UNDER - BICYCLE,2018-09-05T00:00:00,2018,September,Wednesday,5,248,15,2018-10-12T00:00:00,2018,October,Friday,12,285,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,RC,14,ONGBLK,1000.0,STOLEN,12248,"{'type': 'Point', 'coordinates': (-79.39820731, 43.64329925)}"
-12266,3682,GO-20181886392,PROPERTY - FOUND,2018-10-12T00:00:00,2018,October,Friday,12,285,15,2018-10-12T00:00:00,2018,October,Friday,12,285,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,XCALIBER 6,MT,24,RED,,RECOVERED,12249,"{'type': 'Point', 'coordinates': (-79.39960983, 43.63648329)}"
-12267,3683,GO-20181886392,PROPERTY - FOUND,2018-10-12T00:00:00,2018,October,Friday,12,285,15,2018-10-12T00:00:00,2018,October,Friday,12,285,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,KRANKED,MT,24,SIL,,RECOVERED,12250,"{'type': 'Point', 'coordinates': (-79.39960983, 43.63648329)}"
-12268,3684,GO-20181886392,PROPERTY - FOUND,2018-10-12T00:00:00,2018,October,Friday,12,285,15,2018-10-12T00:00:00,2018,October,Friday,12,285,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MIELE,TOSCANA 100,MT,24,,,RECOVERED,12251,"{'type': 'Point', 'coordinates': (-79.39960983, 43.63648329)}"
-12269,3685,GO-20181886392,PROPERTY - FOUND,2018-10-12T00:00:00,2018,October,Friday,12,285,15,2018-10-12T00:00:00,2018,October,Friday,12,285,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DEVINCI,,TO,0,,,RECOVERED,12252,"{'type': 'Point', 'coordinates': (-79.39960983, 43.63648329)}"
-12270,3686,GO-20181886392,PROPERTY - FOUND,2018-10-12T00:00:00,2018,October,Friday,12,285,15,2018-10-12T00:00:00,2018,October,Friday,12,285,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KHS,R15U06400,RC,0,BLK,,RECOVERED,12253,"{'type': 'Point', 'coordinates': (-79.39960983, 43.63648329)}"
-12271,3687,GO-20181886392,PROPERTY - FOUND,2018-10-12T00:00:00,2018,October,Friday,12,285,15,2018-10-12T00:00:00,2018,October,Friday,12,285,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FUJI,,RC,1,BLK,,RECOVERED,12254,"{'type': 'Point', 'coordinates': (-79.39960983, 43.63648329)}"
-12272,3692,GO-20181897471,PROPERTY - FOUND,2018-10-14T00:00:00,2018,October,Sunday,14,287,10,2018-10-14T00:00:00,2018,October,Sunday,14,287,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CUBE,,MT,21,BLK,,UNKNOWN,12255,"{'type': 'Point', 'coordinates': (-79.39225864, 43.63863312)}"
-12273,3693,GO-20181897471,PROPERTY - FOUND,2018-10-14T00:00:00,2018,October,Sunday,14,287,10,2018-10-14T00:00:00,2018,October,Sunday,14,287,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,,RC,21,BLKSIL,,UNKNOWN,12256,"{'type': 'Point', 'coordinates': (-79.39225864, 43.63863312)}"
-12274,3694,GO-20181897471,PROPERTY - FOUND,2018-10-14T00:00:00,2018,October,Sunday,14,287,10,2018-10-14T00:00:00,2018,October,Sunday,14,287,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,DAYMAK PARIS,EL,3,,,UNKNOWN,12257,"{'type': 'Point', 'coordinates': (-79.39225864, 43.63863312)}"
-12275,3695,GO-20181897471,PROPERTY - FOUND,2018-10-14T00:00:00,2018,October,Sunday,14,287,10,2018-10-14T00:00:00,2018,October,Sunday,14,287,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,BMX,BM,1,,,UNKNOWN,12258,"{'type': 'Point', 'coordinates': (-79.39225864, 43.63863312)}"
-12276,3696,GO-20181897471,PROPERTY - FOUND,2018-10-14T00:00:00,2018,October,Sunday,14,287,10,2018-10-14T00:00:00,2018,October,Sunday,14,287,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,MT,21,MRN,,UNKNOWN,12259,"{'type': 'Point', 'coordinates': (-79.39225864, 43.63863312)}"
-12277,3697,GO-20181897471,PROPERTY - FOUND,2018-10-14T00:00:00,2018,October,Sunday,14,287,10,2018-10-14T00:00:00,2018,October,Sunday,14,287,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,,MT,21,,,UNKNOWN,12260,"{'type': 'Point', 'coordinates': (-79.39225864, 43.63863312)}"
-12278,3716,GO-20189034478,THEFT UNDER - BICYCLE,2018-10-17T00:00:00,2018,October,Wednesday,17,290,12,2018-10-17T00:00:00,2018,October,Wednesday,17,290,17,D14,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,NO,,RG,21,RED,100.0,STOLEN,12261,"{'type': 'Point', 'coordinates': (-79.39832559, 43.63567355)}"
-12279,3733,GO-20189034855,THEFT UNDER - BICYCLE,2018-10-20T00:00:00,2018,October,Saturday,20,293,8,2018-10-20T00:00:00,2018,October,Saturday,20,293,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,YORKVILLE,RG,21,BLU,300.0,STOLEN,12262,"{'type': 'Point', 'coordinates': (-79.39410409, 43.64705106)}"
-12280,3748,GO-20189035246,THEFT UNDER - BICYCLE,2018-10-23T00:00:00,2018,October,Tuesday,23,296,13,2018-10-23T00:00:00,2018,October,Tuesday,23,296,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,FX 2 22.5 BLACK,RG,30,BLK,620.0,STOLEN,12263,"{'type': 'Point', 'coordinates': (-79.38994752, 43.64370303)}"
-12281,3768,GO-20189035790,THEFT UNDER - BICYCLE,2018-08-01T00:00:00,2018,August,Wednesday,1,213,12,2018-10-27T00:00:00,2018,October,Saturday,27,300,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,,RC,21,,1600.0,STOLEN,12264,"{'type': 'Point', 'coordinates': (-79.38653359, 43.63885304)}"
-12282,3790,GO-20189036291,THEFT UNDER - BICYCLE,2018-10-30T00:00:00,2018,October,Tuesday,30,303,19,2018-10-30T00:00:00,2018,October,Tuesday,30,303,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NO,STORM 9.2,MT,18,GRY,800.0,STOLEN,12265,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-12283,3811,GO-20189036824,THEFT UNDER - BICYCLE,2018-11-03T00:00:00,2018,November,Saturday,3,307,8,2018-11-04T00:00:00,2018,November,Sunday,4,308,16,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,JAMIE,MT,12,BLU,650.0,STOLEN,12266,"{'type': 'Point', 'coordinates': (-79.3621013, 43.65019711)}"
-12284,3833,GO-20189037477,THEFT UNDER - BICYCLE,2018-10-22T00:00:00,2018,October,Monday,22,295,14,2018-11-08T00:00:00,2018,November,Thursday,8,312,21,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,DS 2,RG,24,BLK,600.0,STOLEN,12267,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-12285,3834,GO-20189037592,THEFT UNDER - BICYCLE,2018-11-07T00:00:00,2018,November,Wednesday,7,311,16,2018-11-09T00:00:00,2018,November,Friday,9,313,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,TO,24,BLK,500.0,STOLEN,12268,"{'type': 'Point', 'coordinates': (-79.39184935, 43.63765238)}"
-12286,3847,GO-20189037983,THEFT UNDER - BICYCLE,2018-11-10T00:00:00,2018,November,Saturday,10,314,20,2018-11-12T00:00:00,2018,November,Monday,12,316,20,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,5,WHI,3000.0,STOLEN,12269,"{'type': 'Point', 'coordinates': (-79.4023568, 43.64319258)}"
-12287,3850,GO-20182093133,THEFT UNDER,2018-10-20T00:00:00,2018,October,Saturday,20,293,11,2018-11-13T00:00:00,2018,November,Tuesday,13,317,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,TREK,15 LYNC 3,OT,5,BLU,1242.0,STOLEN,12270,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-12288,3851,GO-20189038110,THEFT UNDER - BICYCLE,2018-10-08T00:00:00,2018,October,Monday,8,281,20,2018-11-13T00:00:00,2018,November,Tuesday,13,317,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,VERZA PATH,RG,18,TAN,570.0,STOLEN,12271,"{'type': 'Point', 'coordinates': (-79.39186446, 43.64164294)}"
-12289,3853,GO-20189038119,THEFT UNDER - BICYCLE,2018-11-14T00:00:00,2018,November,Wednesday,14,318,7,2018-11-14T00:00:00,2018,November,Wednesday,14,318,7,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,SKYWAY,RG,1,BLK,700.0,STOLEN,12272,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-12290,3872,GO-20189038620,THEFT UNDER - BICYCLE,2018-11-18T00:00:00,2018,November,Sunday,18,322,8,2018-11-19T00:00:00,2018,November,Monday,19,323,8,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,,MT,27,BLK,1000.0,STOLEN,12273,"{'type': 'Point', 'coordinates': (-79.38684132, 43.64925417)}"
-12291,3883,GO-20182138264,B&E,2018-11-08T00:00:00,2018,November,Thursday,8,312,20,2018-11-20T00:00:00,2018,November,Tuesday,20,324,20,D51,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,FOCUS,MARES,OT,10,BLUWHI,800.0,STOLEN,12274,"{'type': 'Point', 'coordinates': (-79.35677669, 43.6529262)}"
-12292,3899,GO-20189039843,THEFT UNDER - BICYCLE,2018-11-25T00:00:00,2018,November,Sunday,25,329,22,2018-11-26T00:00:00,2018,November,Monday,26,330,17,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,MILANO,RG,21,DBL,579.0,STOLEN,12275,"{'type': 'Point', 'coordinates': (-79.39795271, 43.63704773)}"
-12293,3900,GO-20189039897,THEFT UNDER - BICYCLE,2018-11-25T00:00:00,2018,November,Sunday,25,329,23,2018-11-27T00:00:00,2018,November,Tuesday,27,331,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,AWOL,TO,27,DGR,1630.0,STOLEN,12276,"{'type': 'Point', 'coordinates': (-79.39882641, 43.63812175)}"
-12294,3901,GO-20189039901,THEFT UNDER - BICYCLE,2018-11-25T00:00:00,2018,November,Sunday,25,329,14,2018-11-26T00:00:00,2018,November,Monday,26,330,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CA,BAD BOY,RC,9,BLK,2000.0,STOLEN,12277,"{'type': 'Point', 'coordinates': (-79.39025369, 43.64785592)}"
-12295,3903,GO-20189039929,THEFT UNDER - BICYCLE,2018-11-26T00:00:00,2018,November,Monday,26,330,0,2018-11-27T00:00:00,2018,November,Tuesday,27,331,11,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,AGGRESSOR,MT,18,SIL,400.0,STOLEN,12278,"{'type': 'Point', 'coordinates': (-79.37524509, 43.64636121)}"
-12296,3922,GO-20189039929,THEFT UNDER - BICYCLE,2018-11-26T00:00:00,2018,November,Monday,26,330,0,2018-11-27T00:00:00,2018,November,Tuesday,27,331,11,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,AGGRESSOR,MT,18,SIL,400.0,STOLEN,12279,"{'type': 'Point', 'coordinates': (-79.37524509, 43.64636121)}"
-12297,3948,GO-20189042616,THEFT UNDER - BICYCLE,2018-12-17T00:00:00,2018,December,Monday,17,351,19,2018-12-18T00:00:00,2018,December,Tuesday,18,352,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,,OT,1,,350.0,STOLEN,12280,"{'type': 'Point', 'coordinates': (-79.38091602, 43.64168463)}"
-12298,3959,GO-20189043318,THEFT UNDER - BICYCLE,2018-12-20T00:00:00,2018,December,Thursday,20,354,9,2018-12-26T00:00:00,2018,December,Wednesday,26,360,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,LEOPARD PRO,TO,18,BLK,3000.0,STOLEN,12281,"{'type': 'Point', 'coordinates': (-79.39124176, 43.640111790000006)}"
-12299,3969,GO-20189040046,THEFT UNDER - BICYCLE,2018-11-27T00:00:00,2018,November,Tuesday,27,331,8,2018-11-27T00:00:00,2018,November,Tuesday,27,331,21,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,,TO,10,,,STOLEN,12282,"{'type': 'Point', 'coordinates': (-79.395007, 43.64546954)}"
-12300,3979,GO-20199000336,THEFT UNDER - BICYCLE,2019-01-03T00:00:00,2019,January,Thursday,3,3,19,2019-01-03T00:00:00,2019,January,Thursday,3,3,22,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CA,,MT,1,WHI,200.0,STOLEN,12283,"{'type': 'Point', 'coordinates': (-79.40306565, 43.64488902)}"
-12301,3988,GO-20199000800,THEFT UNDER - BICYCLE,2019-01-07T00:00:00,2019,January,Monday,7,7,17,2019-01-07T00:00:00,2019,January,Monday,7,7,22,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,CYCLOCROSS,OT,18,BLK,1200.0,STOLEN,12284,"{'type': 'Point', 'coordinates': (-79.37326707, 43.64867717)}"
-12302,3998,GO-201936627,B&E,2019-01-06T00:00:00,2019,January,Sunday,6,6,0,2019-01-07T00:00:00,2019,January,Monday,7,7,7,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,UNK,RC,0,GRY,1999.0,STOLEN,12285,"{'type': 'Point', 'coordinates': (-79.39388892, 43.64273773)}"
-12303,4007,GO-201977433,B&E,2018-12-23T00:00:00,2018,December,Sunday,23,357,11,2019-01-14T00:00:00,2019,January,Monday,14,14,17,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,KONA\,K9000,OT,21,,1500.0,STOLEN,12286,"{'type': 'Point', 'coordinates': (-79.39958821, 43.64593284)}"
-12304,4008,GO-20199002152,THEFT UNDER - BICYCLE,2019-01-15T00:00:00,2019,January,Tuesday,15,15,18,2019-01-16T00:00:00,2019,January,Wednesday,16,16,20,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE,RG,21,BLK,1200.0,STOLEN,12287,"{'type': 'Point', 'coordinates': (-79.37146354, 43.64763677)}"
-12305,4010,GO-201990117,THEFT UNDER - BICYCLE,2018-12-01T00:00:00,2018,December,Saturday,1,335,0,2019-01-15T00:00:00,2019,January,Tuesday,15,15,12,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,FIX,RG,1,BLK,600.0,STOLEN,12288,"{'type': 'Point', 'coordinates': (-79.35713011, 43.65083215)}"
-12306,4014,GO-20199002924,THEFT UNDER - BICYCLE,2019-01-18T00:00:00,2019,January,Friday,18,18,17,2019-01-21T00:00:00,2019,January,Monday,21,21,21,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,AXIS 1,RC,21,BLU,0.0,STOLEN,12289,"{'type': 'Point', 'coordinates': (-79.39668944, 43.63667003)}"
-12307,2822,GO-20181275627,B&E,2018-07-13T00:00:00,2018,July,Friday,13,194,0,2018-07-13T00:00:00,2018,July,Friday,13,194,9,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,ROUBAIX,RG,5,,500.0,STOLEN,14188,"{'type': 'Point', 'coordinates': (-79.40595313, 43.65543579)}"
-12308,4029,GO-2019194610,THEFT UNDER - BICYCLE,2019-01-14T00:00:00,2019,January,Monday,14,14,19,2019-01-31T00:00:00,2019,January,Thursday,31,31,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,,MT,21,BLK,,STOLEN,12290,"{'type': 'Point', 'coordinates': (-79.40078712, 43.64430357)}"
-12309,4030,GO-2019202017,B&E,2019-01-12T00:00:00,2019,January,Saturday,12,12,12,2019-02-01T00:00:00,2019,February,Friday,1,32,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GIANT,RAPID 1,OT,24,BLK,1200.0,STOLEN,12291,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-12310,4034,GO-20199004507,THEFT UNDER - BICYCLE,2018-12-20T00:00:00,2018,December,Thursday,20,354,0,2019-02-05T00:00:00,2019,February,Tuesday,5,36,11,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GT,,MT,36,GRY,1500.0,STOLEN,12292,"{'type': 'Point', 'coordinates': (-79.36607348, 43.64932911)}"
-12311,4035,GO-20199004507,THEFT UNDER - BICYCLE,2018-12-20T00:00:00,2018,December,Thursday,20,354,0,2019-02-05T00:00:00,2019,February,Tuesday,5,36,11,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,,RC,18,BLK,2000.0,STOLEN,12293,"{'type': 'Point', 'coordinates': (-79.36607348, 43.64932911)}"
-12312,4036,GO-20199004538,THEFT UNDER - BICYCLE,2019-02-05T00:00:00,2019,February,Tuesday,5,36,0,2019-02-05T00:00:00,2019,February,Tuesday,5,36,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,"WTB TUBELESS, N",OT,8,GRN,350.0,STOLEN,12294,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-12313,4043,GO-20199004833,THEFT UNDER - BICYCLE,2019-02-07T00:00:00,2019,February,Thursday,7,38,16,2019-02-08T00:00:00,2019,February,Friday,8,39,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,MASH,RC,1,BLK,2000.0,STOLEN,12295,"{'type': 'Point', 'coordinates': (-79.39882641, 43.63812175)}"
-12314,4045,GO-20199005146,THEFT UNDER - BICYCLE,2019-02-03T00:00:00,2019,February,Sunday,3,34,17,2019-02-11T00:00:00,2019,February,Monday,11,42,17,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,STOUT,OT,1,BLK,450.0,STOLEN,12296,"{'type': 'Point', 'coordinates': (-79.39924205, 43.63909783)}"
-12315,10445,GO-20151400119,THEFT UNDER,2015-08-15T00:00:00,2015,August,Saturday,15,227,4,2015-08-15T00:00:00,2015,August,Saturday,15,227,4,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,OTHER,,OT,15,,,STOLEN,22427,"{'type': 'Point', 'coordinates': (-79.37210175, 43.67442353)}"
-12316,4051,GO-20199005662,THEFT UNDER - BICYCLE,2019-02-08T00:00:00,2019,February,Friday,8,39,15,2019-02-16T00:00:00,2019,February,Saturday,16,47,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,8,ONG,565.0,STOLEN,12297,"{'type': 'Point', 'coordinates': (-79.39924205, 43.63909783)}"
-12317,4059,GO-20199006139,THEFT UNDER - BICYCLE,2019-02-14T00:00:00,2019,February,Thursday,14,45,12,2019-02-21T00:00:00,2019,February,Thursday,21,52,12,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CC,,RC,30,DGR,800.0,STOLEN,12298,"{'type': 'Point', 'coordinates': (-79.37646324, 43.64578351)}"
-12318,4067,GO-20199006534,THEFT UNDER - BICYCLE,2019-01-15T00:00:00,2019,January,Tuesday,15,15,6,2019-02-25T00:00:00,2019,February,Monday,25,56,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,CA,,RC,10,WHI,2000.0,STOLEN,12299,"{'type': 'Point', 'coordinates': (-79.38552201, 43.64605338)}"
-12319,4073,GO-20199007050,THEFT UNDER - BICYCLE,2019-01-31T00:00:00,2019,January,Thursday,31,31,12,2019-03-02T00:00:00,2019,March,Saturday,2,61,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,18,,1153.0,STOLEN,12300,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-12320,4075,GO-20199007087,THEFT UNDER - BICYCLE,2019-03-01T00:00:00,2019,March,Friday,1,60,15,2019-03-02T00:00:00,2019,March,Saturday,2,61,18,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,REVEL,MT,27,GRY,700.0,STOLEN,12301,"{'type': 'Point', 'coordinates': (-79.35482206, 43.65337232)}"
-12321,4076,GO-20199007087,THEFT UNDER - BICYCLE,2019-03-01T00:00:00,2019,March,Friday,1,60,15,2019-03-02T00:00:00,2019,March,Saturday,2,61,18,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,BI,,OT,1,LGR,750.0,STOLEN,12302,"{'type': 'Point', 'coordinates': (-79.35482206, 43.65337232)}"
-12322,4077,GO-20199007087,THEFT UNDER - BICYCLE,2019-03-01T00:00:00,2019,March,Friday,1,60,15,2019-03-02T00:00:00,2019,March,Saturday,2,61,18,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,KO,FIRE MOUNTAIN,MT,21,BLU,800.0,STOLEN,12303,"{'type': 'Point', 'coordinates': (-79.35482206, 43.65337232)}"
-12323,3056,GO-20189024876,THEFT UNDER - BICYCLE,2018-08-02T00:00:00,2018,August,Thursday,2,214,10,2018-08-02T00:00:00,2018,August,Thursday,2,214,14,D51,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,SC,GTX-2,OT,21,RED,350.0,STOLEN,12471,"{'type': 'Point', 'coordinates': (-79.37215317, 43.64913066)}"
-12324,4079,GO-2019423759,FTC WITH CONDITIONS,2019-03-07T00:00:00,2019,March,Thursday,7,66,22,2019-03-07T00:00:00,2019,March,Thursday,7,66,22,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CANNONDALE,TRAIL SL,RG,21,WHI,1200.0,RECOVERED,12304,"{'type': 'Point', 'coordinates': (-79.37146354, 43.64763677)}"
-12325,4080,GO-20199007636,THEFT UNDER,2019-03-07T00:00:00,2019,March,Thursday,7,66,18,2019-03-08T00:00:00,2019,March,Friday,8,67,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,MILANO,RG,3,BLK,500.0,STOLEN,12305,"{'type': 'Point', 'coordinates': (-79.37787283, 43.64321708)}"
-12326,4088,GO-20199007973,THEFT UNDER - BICYCLE,2019-02-19T00:00:00,2019,February,Tuesday,19,50,7,2019-03-11T00:00:00,2019,March,Monday,11,70,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RG,1,BLK,150.0,STOLEN,12306,"{'type': 'Point', 'coordinates': (-79.39558819, 43.63994429)}"
-12327,4089,GO-20199007976,THEFT UNDER - BICYCLE,2019-03-06T00:00:00,2019,March,Wednesday,6,65,4,2019-03-11T00:00:00,2019,March,Monday,11,70,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,FJ,,RC,30,BLK,600.0,STOLEN,12307,"{'type': 'Point', 'coordinates': (-79.39880646, 43.64142779)}"
-12328,4091,GO-20199008240,THEFT UNDER - BICYCLE,2019-03-10T00:00:00,2019,March,Sunday,10,69,1,2019-03-14T00:00:00,2019,March,Thursday,14,73,14,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,,TO,21,GRY,2500.0,STOLEN,12308,"{'type': 'Point', 'coordinates': (-79.4010881, 43.64697154)}"
-12329,4098,GO-20199008840,THEFT UNDER,2019-03-07T00:00:00,2019,March,Thursday,7,66,23,2019-03-19T00:00:00,2019,March,Tuesday,19,78,15,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,3,BLK,400.0,STOLEN,12309,"{'type': 'Point', 'coordinates': (-79.37374694, 43.64844177)}"
-12330,4116,GO-2019562192,B&E,2019-03-26T00:00:00,2019,March,Tuesday,26,85,12,2019-03-28T00:00:00,2019,March,Thursday,28,87,21,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,BIOMEGA,AMSTERDAM,OT,1,SIL,1500.0,STOLEN,12310,"{'type': 'Point', 'coordinates': (-79.37074933, 43.64783612)}"
-12331,4138,GO-2019634628,B&E,2019-03-29T00:00:00,2019,March,Friday,29,88,10,2019-04-08T00:00:00,2019,April,Monday,8,98,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TECH TEAM,UNKNOWN,RG,12,BLKSIL,750.0,STOLEN,12311,"{'type': 'Point', 'coordinates': (-79.39895584, 43.646052)}"
-12332,5059,GO-20191539625,B&E,2019-08-02T00:00:00,2019,August,Friday,2,214,12,2019-08-14T00:00:00,2019,August,Wednesday,14,226,6,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,DEVINCI,AMSTERDAM,MT,21,RED,1149.0,STOLEN,12312,"{'type': 'Point', 'coordinates': (-79.37778379, 43.6430065)}"
-12333,5060,GO-20199026104,THEFT UNDER,2019-08-11T00:00:00,2019,August,Sunday,11,223,22,2019-08-13T00:00:00,2019,August,Tuesday,13,225,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,PANAMAO X5,OT,27,BLK,1300.0,STOLEN,12313,"{'type': 'Point', 'coordinates': (-79.37933296, 43.64221959)}"
-12334,5061,GO-20199026133,THEFT UNDER,2019-07-21T00:00:00,2019,July,Sunday,21,202,12,2019-08-14T00:00:00,2019,August,Wednesday,14,226,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,21,BLK,200.0,STOLEN,12314,"{'type': 'Point', 'coordinates': (-79.38330674, 43.64067063)}"
-12335,5067,GO-20199026208,THEFT UNDER,2019-08-14T00:00:00,2019,August,Wednesday,14,226,0,2019-08-14T00:00:00,2019,August,Wednesday,14,226,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CC,APEX,MT,24,PNK,200.0,STOLEN,12315,"{'type': 'Point', 'coordinates': (-79.38994752, 43.64370303)}"
-12336,5088,GO-20199026449,THEFT UNDER - BICYCLE,2019-08-15T00:00:00,2019,August,Thursday,15,227,18,2019-08-16T00:00:00,2019,August,Friday,16,228,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,LANGSTER MONACO,RG,1,WHI,600.0,STOLEN,12316,"{'type': 'Point', 'coordinates': (-79.39124176, 43.640111790000006)}"
-12337,5089,GO-20191558785,THEFT UNDER - BICYCLE,2019-08-07T00:00:00,2019,August,Wednesday,7,219,17,2019-08-16T00:00:00,2019,August,Friday,16,228,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,MT,14,BLUWHI,400.0,STOLEN,12317,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-12338,5230,GO-20199028699,THEFT UNDER,2019-09-04T00:00:00,2019,September,Wednesday,4,247,0,2019-09-04T00:00:00,2019,September,Wednesday,4,247,11,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,CUBE ATTAIN PRO,RC,9,WHI,1360.0,STOLEN,12332,"{'type': 'Point', 'coordinates': (-79.36592705, 43.64892655)}"
-12339,5103,GO-20199026788,THEFT UNDER,2019-07-30T00:00:00,2019,July,Tuesday,30,211,11,2019-08-19T00:00:00,2019,August,Monday,19,231,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,RG,18,RED,490.0,STOLEN,12318,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-12340,5105,GO-20199026614,THEFT UNDER,2019-08-16T00:00:00,2019,August,Friday,16,228,20,2019-08-17T00:00:00,2019,August,Saturday,17,229,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,HARPER SINGLE S,RG,30,GRN,320.0,STOLEN,12319,"{'type': 'Point', 'coordinates': (-79.39592984, 43.64780696)}"
-12341,5108,GO-20199026855,THEFT UNDER,2019-08-17T00:00:00,2019,August,Saturday,17,229,23,2019-08-19T00:00:00,2019,August,Monday,19,231,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,MARLIN 6,MT,8,BLK,800.0,STOLEN,12320,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-12342,5126,GO-20199027184,THEFT UNDER,2019-08-21T00:00:00,2019,August,Wednesday,21,233,18,2019-08-21T00:00:00,2019,August,Wednesday,21,233,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,SYNAPSE,RC,25,RED,3000.0,STOLEN,12321,"{'type': 'Point', 'coordinates': (-79.39184935, 43.63765238)}"
-12343,5129,GO-20199027227,THEFT UNDER,2019-08-07T00:00:00,2019,August,Wednesday,7,219,10,2019-08-22T00:00:00,2019,August,Thursday,22,234,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,MT,18,BLU,100.0,STOLEN,12322,"{'type': 'Point', 'coordinates': (-79.38143561, 43.64291214)}"
-12344,5143,GO-20199027371,THEFT UNDER,2019-08-22T00:00:00,2019,August,Thursday,22,234,18,2019-08-23T00:00:00,2019,August,Friday,23,235,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,MINELLI,SOLOIST,MT,1,BLK,500.0,STOLEN,12323,"{'type': 'Point', 'coordinates': (-79.39124176, 43.640111790000006)}"
-12345,5154,GO-20199027585,THEFT UNDER,2019-08-23T00:00:00,2019,August,Friday,23,235,18,2019-08-25T00:00:00,2019,August,Sunday,25,237,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,RM,FUSION 10,MT,27,YEL,900.0,STOLEN,12324,"{'type': 'Point', 'coordinates': (-79.39124176, 43.640111790000006)}"
-12346,5164,GO-20199027686,THEFT UNDER,2019-08-24T00:00:00,2019,August,Saturday,24,236,15,2019-08-26T00:00:00,2019,August,Monday,26,238,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,LEO,RC,18,WHI,2000.0,STOLEN,12325,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-12347,5166,GO-20199027707,THEFT UNDER,2019-08-25T00:00:00,2019,August,Sunday,25,237,17,2019-08-26T00:00:00,2019,August,Monday,26,238,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,NORTHROCK,MT,21,BLK,565.0,STOLEN,12326,"{'type': 'Point', 'coordinates': (-79.38091602, 43.64168463)}"
-12348,5176,GO-20199027865,THEFT UNDER - BICYCLE,2019-08-13T00:00:00,2019,August,Tuesday,13,225,10,2019-08-27T00:00:00,2019,August,Tuesday,27,239,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,,RG,21,,0.0,STOLEN,12327,"{'type': 'Point', 'coordinates': (-79.39795271, 43.63704773)}"
-12349,5178,GO-20199027926,THEFT UNDER - BICYCLE,2019-08-23T00:00:00,2019,August,Friday,23,235,14,2019-08-27T00:00:00,2019,August,Tuesday,27,239,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,BOOMMAX,MT,21,GLD,250.0,STOLEN,12328,"{'type': 'Point', 'coordinates': (-79.39558819, 43.63994429)}"
-12350,5190,GO-20199028141,THEFT UNDER,2019-08-29T00:00:00,2019,August,Thursday,29,241,12,2019-08-29T00:00:00,2019,August,Thursday,29,241,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,UK,CORSO,MT,10,BLK,350.0,STOLEN,12329,"{'type': 'Point', 'coordinates': (-79.38552201, 43.64605338)}"
-12351,5203,GO-20199028393,THEFT UNDER,2019-08-17T00:00:00,2019,August,Saturday,17,229,20,2019-08-31T00:00:00,2019,August,Saturday,31,243,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,RM,,RG,19,GRY,450.0,STOLEN,12330,"{'type': 'Point', 'coordinates': (-79.38275181, 43.64263544000001)}"
-12352,5218,GO-20199028564,THEFT UNDER,2019-08-16T00:00:00,2019,August,Friday,16,228,16,2019-09-03T00:00:00,2019,September,Tuesday,3,246,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SC,WAYFARER 700C,RG,7,DBL,282.0,STOLEN,12331,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-12353,5236,GO-20191683625,THEFT UNDER,2019-08-28T00:00:00,2019,August,Wednesday,28,240,22,2019-09-03T00:00:00,2019,September,Tuesday,3,246,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,FIX,OT,1,GRN,400.0,STOLEN,12333,"{'type': 'Point', 'coordinates': (-79.38867784, 43.64396864)}"
-12354,5248,GO-20199028927,THEFT UNDER - BICYCLE,2019-08-12T00:00:00,2019,August,Monday,12,224,0,2019-09-06T00:00:00,2019,September,Friday,6,249,2,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NO,HEART,RG,1,BLK,500.0,STOLEN,12334,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-12355,5261,GO-20191715786,THEFT UNDER,2019-09-07T00:00:00,2019,September,Saturday,7,250,15,2019-09-07T00:00:00,2019,September,Saturday,7,250,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,PBSC,,RG,1,GRN,1200.0,STOLEN,12335,"{'type': 'Point', 'coordinates': (-79.39184935, 43.63765238)}"
-12356,5278,GO-20199029299,THEFT UNDER - BICYCLE,2019-08-19T00:00:00,2019,August,Monday,19,231,10,2019-09-09T00:00:00,2019,September,Monday,9,252,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,SASQUATCH,MT,28,ONG,400.0,STOLEN,12336,"{'type': 'Point', 'coordinates': (-79.40372116, 43.64647061)}"
-12357,23384,GO-20142060810,THEFT UNDER,2014-05-11T00:00:00,2014,May,Sunday,11,131,18,2014-05-11T00:00:00,2014,May,Sunday,11,131,23,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,MONGOOSE,,MT,18,BLU,200.0,STOLEN,12337,"{'type': 'Point', 'coordinates': (-79.38374902, 43.66302137000001)}"
-12358,5286,GO-20199029392,THEFT UNDER,2019-08-14T00:00:00,2019,August,Wednesday,14,226,20,2019-09-10T00:00:00,2019,September,Tuesday,10,253,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GT,,MT,24,PLE,400.0,STOLEN,12338,"{'type': 'Point', 'coordinates': (-79.38275181, 43.64263544000001)}"
-12359,5289,GO-20199029484,THEFT UNDER,2019-09-09T00:00:00,2019,September,Monday,9,252,19,2019-09-10T00:00:00,2019,September,Tuesday,10,253,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,,EXCURSION MENS,RG,24,GRY,400.0,STOLEN,12339,"{'type': 'Point', 'coordinates': (-79.38314772, 43.64033919)}"
-12360,5290,GO-20199029501,THEFT UNDER - BICYCLE,2019-09-10T00:00:00,2019,September,Tuesday,10,253,10,2019-09-10T00:00:00,2019,September,Tuesday,10,253,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,,RG,27,BLK,1000.0,STOLEN,12340,"{'type': 'Point', 'coordinates': (-79.39458503, 43.64442176)}"
-12361,5302,GO-20199029660,THEFT UNDER - BICYCLE,2019-09-11T00:00:00,2019,September,Wednesday,11,254,9,2019-09-11T00:00:00,2019,September,Wednesday,11,254,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MA,NICASIO,OT,10,DBL,1200.0,STOLEN,12341,"{'type': 'Point', 'coordinates': (-79.39124574, 43.64342012)}"
-12362,5304,GO-20199029666,THEFT UNDER - BICYCLE,2019-09-11T00:00:00,2019,September,Wednesday,11,254,9,2019-09-11T00:00:00,2019,September,Wednesday,11,254,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,ROAD KING,RC,5,ONG,0.0,STOLEN,12342,"{'type': 'Point', 'coordinates': (-79.39184935, 43.63765238)}"
-12363,5305,GO-20199029693,THEFT UNDER,2019-09-08T00:00:00,2019,September,Sunday,8,251,17,2019-09-11T00:00:00,2019,September,Wednesday,11,254,22,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,30,SIL,1000.0,STOLEN,12343,"{'type': 'Point', 'coordinates': (-79.36388253000001, 43.64495966)}"
-12364,5311,GO-20199029790,THEFT UNDER - BICYCLE,2019-08-27T00:00:00,2019,August,Tuesday,27,239,17,2019-09-12T00:00:00,2019,September,Thursday,12,255,16,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,GMC DENALI,OT,21,GRN,500.0,STOLEN,12344,"{'type': 'Point', 'coordinates': (-79.39558819, 43.63994429)}"
-12365,5318,GO-20199027926,THEFT UNDER - BICYCLE,2019-08-23T00:00:00,2019,August,Friday,23,235,14,2019-08-27T00:00:00,2019,August,Tuesday,27,239,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,BOOMMAXX,MT,27,SIL,1500.0,STOLEN,12345,"{'type': 'Point', 'coordinates': (-79.39558819, 43.63994429)}"
-12366,5328,GO-20199030081,THEFT UNDER,2019-09-02T00:00:00,2019,September,Monday,2,245,12,2019-09-15T00:00:00,2019,September,Sunday,15,258,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RG,30,BLK,1469.0,STOLEN,12346,"{'type': 'Point', 'coordinates': (-79.37933296, 43.64221959)}"
-12367,5366,GO-20199030623,THEFT UNDER,2019-09-17T00:00:00,2019,September,Tuesday,17,260,20,2019-09-19T00:00:00,2019,September,Thursday,19,262,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CA,QUICK 5,MT,18,BLK,1400.0,STOLEN,12347,"{'type': 'Point', 'coordinates': (-79.39124176, 43.640111790000006)}"
-12368,5377,GO-20199031084,THEFT UNDER,2019-09-15T00:00:00,2019,September,Sunday,15,258,21,2019-09-22T00:00:00,2019,September,Sunday,22,265,23,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,FX2 20,MT,50,BLK,881.0,STOLEN,12348,"{'type': 'Point', 'coordinates': (-79.37933296, 43.64221959)}"
-12369,5422,GO-20199031841,THEFT UNDER,2019-09-27T00:00:00,2019,September,Friday,27,270,9,2019-09-27T00:00:00,2019,September,Friday,27,270,23,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,ALUXX 6000,MT,24,WHI,400.0,STOLEN,12349,"{'type': 'Point', 'coordinates': (-79.39578994, 43.64739695)}"
-12370,5424,GO-20199031862,THEFT UNDER - BICYCLE,2019-09-27T00:00:00,2019,September,Friday,27,270,15,2019-09-28T00:00:00,2019,September,Saturday,28,271,10,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NO,STORM 2,MT,27,BLU,750.0,STOLEN,12350,"{'type': 'Point', 'coordinates': (-79.35606395, 43.65373791)}"
-12371,5454,GO-20199032331,THEFT UNDER - BICYCLE,2019-10-02T00:00:00,2019,October,Wednesday,2,275,10,2019-10-02T00:00:00,2019,October,Wednesday,2,275,12,D14,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,NO,,RG,7,BLK,400.0,STOLEN,12351,"{'type': 'Point', 'coordinates': (-79.40078712, 43.64430357)}"
-12372,5475,GO-20199032723,THEFT UNDER - BICYCLE,2019-10-05T00:00:00,2019,October,Saturday,5,278,12,2019-10-05T00:00:00,2019,October,Saturday,5,278,17,D14,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,ROBAIUX,RC,21,RED,3000.0,STOLEN,12352,"{'type': 'Point', 'coordinates': (-79.39668944, 43.63667003)}"
-12373,6110,GO-20209012011,THEFT UNDER - BICYCLE,2020-04-27T00:00:00,2020,April,Monday,27,118,21,2020-04-27T00:00:00,2020,April,Monday,27,118,21,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,,RG,8,,300.0,STOLEN,12353,"{'type': 'Point', 'coordinates': (-79.36388253000001, 43.64495966)}"
-12374,2628,GO-20181107931,THEFT UNDER - BICYCLE,2018-06-16T00:00:00,2018,June,Saturday,16,167,21,2018-06-18T00:00:00,2018,June,Monday,18,169,14,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SUPER,PARTO,OT,7,BLK,395.0,STOLEN,12354,"{'type': 'Point', 'coordinates': (-79.40306565, 43.64488902)}"
-12375,7325,GO-20209024138,THEFT FROM MOTOR VEHICLE UNDER,2020-09-22T00:00:00,2020,September,Tuesday,22,266,20,2020-09-23T00:00:00,2020,September,Wednesday,23,267,0,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,MT,9,GRY,1000.0,STOLEN,12355,"{'type': 'Point', 'coordinates': (-79.39281928, 43.64732006)}"
-12376,5489,GO-20199033159,THEFT UNDER,2019-10-08T00:00:00,2019,October,Tuesday,8,281,16,2019-10-08T00:00:00,2019,October,Tuesday,8,281,17,D52,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,UK,,OT,20,BLK,2400.0,STOLEN,12356,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-12377,5504,GO-20199033434,THEFT UNDER - BICYCLE,2019-10-10T00:00:00,2019,October,Thursday,10,283,18,2019-10-10T00:00:00,2019,October,Thursday,10,283,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,MILANO,RG,21,BLK,400.0,STOLEN,12357,"{'type': 'Point', 'coordinates': (-79.39820731, 43.64329925)}"
-12378,5509,GO-20199033528,THEFT UNDER - BICYCLE,2019-10-07T00:00:00,2019,October,Monday,7,280,13,2019-10-11T00:00:00,2019,October,Friday,11,284,13,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,HEX CLARIS 8S,RG,16,DBL,960.0,STOLEN,12358,"{'type': 'Point', 'coordinates': (-79.37693454, 43.64688442)}"
-12379,5518,GO-20191977940,B&E,2019-10-12T00:00:00,2019,October,Saturday,12,285,14,2019-10-13T00:00:00,2019,October,Sunday,13,286,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CANNONDALE,EVO,OT,12,WHIBLK,3100.0,STOLEN,12359,"{'type': 'Point', 'coordinates': (-79.40306565, 43.64488902)}"
-12380,5522,GO-20199033843,THEFT UNDER,2019-10-04T00:00:00,2019,October,Friday,4,277,21,2019-10-14T00:00:00,2019,October,Monday,14,287,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,BLACK/22.2 TREK,OT,9,BLK,800.0,STOLEN,12360,"{'type': 'Point', 'coordinates': (-79.39124176, 43.640111790000006)}"
-12381,5534,GO-20199034087,THEFT UNDER - BICYCLE,2019-10-15T00:00:00,2019,October,Tuesday,15,288,13,2019-10-16T00:00:00,2019,October,Wednesday,16,289,14,D14,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,UK,SIRRUS,RG,1,BLK,600.0,STOLEN,12361,"{'type': 'Point', 'coordinates': (-79.39820731, 43.64329925)}"
-12382,3081,GO-20189025152,THEFT UNDER - BICYCLE,2018-08-04T00:00:00,2018,August,Saturday,4,216,20,2018-08-04T00:00:00,2018,August,Saturday,4,216,22,D52,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,UK,,OT,10,,0.0,STOLEN,12472,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-12383,5536,GO-20199034132,THEFT UNDER,2019-10-15T00:00:00,2019,October,Tuesday,15,288,18,2019-10-16T00:00:00,2019,October,Wednesday,16,289,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,,MT,27,,300.0,STOLEN,12362,"{'type': 'Point', 'coordinates': (-79.39228875, 43.64605377)}"
-12384,5546,GO-20199034362,THEFT UNDER,2019-10-10T00:00:00,2019,October,Thursday,10,283,16,2019-10-18T00:00:00,2019,October,Friday,18,291,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,KO,JAKE,OT,21,ONG,2000.0,STOLEN,12363,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-12385,5547,GO-20199034421,THEFT UNDER,2019-10-14T00:00:00,2019,October,Monday,14,287,23,2019-10-19T00:00:00,2019,October,Saturday,19,292,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,ALLEGRO,RG,24,BLK,849.0,STOLEN,12364,"{'type': 'Point', 'coordinates': (-79.39820731, 43.64329925)}"
-12386,5553,GO-20199034597,THEFT UNDER,2019-10-20T00:00:00,2019,October,Sunday,20,293,18,2019-10-21T00:00:00,2019,October,Monday,21,294,8,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,,RC,10,BLK,2000.0,STOLEN,12365,"{'type': 'Point', 'coordinates': (-79.38498159, 43.64477493)}"
-12387,5568,GO-20199034875,THEFT UNDER - BICYCLE,2019-10-22T00:00:00,2019,October,Tuesday,22,295,18,2019-10-22T00:00:00,2019,October,Tuesday,22,295,23,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,1,BLK,200.0,STOLEN,12366,"{'type': 'Point', 'coordinates': (-79.39553097, 43.64673969)}"
-12388,5572,GO-20199034873,THEFT UNDER,2019-10-19T00:00:00,2019,October,Saturday,19,292,18,2019-10-22T00:00:00,2019,October,Tuesday,22,295,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE 2 DISC C,OT,24,DBL,750.0,STOLEN,12367,"{'type': 'Point', 'coordinates': (-79.37778379, 43.6430065)}"
-12389,5584,GO-20192051989,B&E,2019-10-22T00:00:00,2019,October,Tuesday,22,295,3,2019-10-24T00:00:00,2019,October,Thursday,24,297,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SCOTT,,OT,0,WHI,2500.0,STOLEN,12368,"{'type': 'Point', 'coordinates': (-79.39811145, 43.64623146000001)}"
-12390,5585,GO-20192051989,B&E,2019-10-22T00:00:00,2019,October,Tuesday,22,295,3,2019-10-24T00:00:00,2019,October,Thursday,24,297,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TREK,,OT,0,ONG,1000.0,STOLEN,12369,"{'type': 'Point', 'coordinates': (-79.39811145, 43.64623146000001)}"
-12391,5588,GO-20199035124,THEFT UNDER,2019-10-05T00:00:00,2019,October,Saturday,5,278,19,2019-10-24T00:00:00,2019,October,Thursday,24,297,20,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MILANO,RG,21,BLK,705.0,STOLEN,12370,"{'type': 'Point', 'coordinates': (-79.35971484, 43.65076046)}"
-12392,5595,GO-20199035226,THEFT UNDER - BICYCLE,2019-10-08T00:00:00,2019,October,Tuesday,8,281,14,2019-10-25T00:00:00,2019,October,Friday,25,298,16,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RM,Z1000,RG,21,RED,104.0,STOLEN,12371,"{'type': 'Point', 'coordinates': (-79.40059685, 43.64573236)}"
-12393,5596,GO-20192067372,B&E,2019-10-23T00:00:00,2019,October,Wednesday,23,296,18,2019-10-26T00:00:00,2019,October,Saturday,26,299,16,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CRITICIAL CYCLE,1884 CLASSIC,OT,1,WHI,500.0,STOLEN,12372,"{'type': 'Point', 'coordinates': (-79.4023568, 43.64319258)}"
-12394,5598,GO-20199035392,THEFT UNDER - BICYCLE,2019-10-26T00:00:00,2019,October,Saturday,26,299,17,2019-10-27T00:00:00,2019,October,Sunday,27,300,0,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TREK,FX2 WSD,OT,24,GRY,,STOLEN,12373,"{'type': 'Point', 'coordinates': (-79.40137395, 43.64770851)}"
-12395,5599,GO-20192076777,THEFT UNDER,2019-10-25T00:00:00,2019,October,Friday,25,298,18,2019-10-27T00:00:00,2019,October,Sunday,27,300,18,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,KNIGHT,EL,0,BLK,2000.0,STOLEN,12374,"{'type': 'Point', 'coordinates': (-79.37646324, 43.64578351)}"
-12396,5600,GO-20192060256,B&E,2019-10-20T00:00:00,2019,October,Sunday,20,293,12,2019-10-25T00:00:00,2019,October,Friday,25,298,11,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OPUS,AMADEUS,RC,24,BLKRED,10000.0,STOLEN,12375,"{'type': 'Point', 'coordinates': (-79.37524509, 43.64636121)}"
-12397,5601,GO-20199035392,THEFT UNDER - BICYCLE,2019-10-26T00:00:00,2019,October,Saturday,26,299,17,2019-10-27T00:00:00,2019,October,Sunday,27,300,0,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,FX 2 WSD,RG,24,GRY,800.0,STOLEN,12376,"{'type': 'Point', 'coordinates': (-79.40137395, 43.64770851)}"
-12398,5617,GO-20199035786,THEFT UNDER - BICYCLE,2019-10-29T00:00:00,2019,October,Tuesday,29,302,20,2019-10-30T00:00:00,2019,October,Wednesday,30,303,0,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,S2,RC,11,BLK,3500.0,STOLEN,12377,"{'type': 'Point', 'coordinates': (-79.35677669, 43.6529262)}"
-12399,5630,GO-20192066465,POSSESSION HOUSE BREAK INSTRUM,2019-10-26T00:00:00,2019,October,Saturday,26,299,7,2019-10-26T00:00:00,2019,October,Saturday,26,299,7,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MARIN OR MARINO,,RG,18,BLU,,UNKNOWN,12378,"{'type': 'Point', 'coordinates': (-79.36826149, 43.64837692)}"
-12400,5643,GO-20192127088,B&E,2019-10-05T00:00:00,2019,October,Saturday,5,278,0,2019-11-03T00:00:00,2019,November,Sunday,3,307,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GIANT,DEFY1,RC,0,BLU,,STOLEN,12379,"{'type': 'Point', 'coordinates': (-79.39558819, 43.63994429)}"
-12401,5644,GO-20199036394,THEFT UNDER - BICYCLE,2019-10-31T00:00:00,2019,October,Thursday,31,304,19,2019-11-04T00:00:00,2019,November,Monday,4,308,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NO,KOKANEE,MT,10,BLU,500.0,STOLEN,12380,"{'type': 'Point', 'coordinates': (-79.40185545, 43.64191381)}"
-12402,5645,GO-20199036394,THEFT UNDER - BICYCLE,2019-10-31T00:00:00,2019,October,Thursday,31,304,19,2019-11-04T00:00:00,2019,November,Monday,4,308,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,RM,OXYGEN 10,RC,12,RED,1000.0,STOLEN,12381,"{'type': 'Point', 'coordinates': (-79.40185545, 43.64191381)}"
-12403,5646,GO-20199036394,THEFT UNDER - BICYCLE,2019-10-31T00:00:00,2019,October,Thursday,31,304,19,2019-11-04T00:00:00,2019,November,Monday,4,308,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,STUMPJUMPER,RC,10,PLE,500.0,STOLEN,12382,"{'type': 'Point', 'coordinates': (-79.40185545, 43.64191381)}"
-12404,5647,GO-20199036444,B&E,2019-11-04T00:00:00,2019,November,Monday,4,308,7,2019-11-04T00:00:00,2019,November,Monday,4,308,21,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CA,16 SUPERSIX EVO,RC,22,GRY,2300.0,STOLEN,12383,"{'type': 'Point', 'coordinates': (-79.39668944, 43.63667003)}"
-12405,5652,GO-20199036444,B&E,2019-11-04T00:00:00,2019,November,Monday,4,308,7,2019-11-04T00:00:00,2019,November,Monday,4,308,21,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CA,,RC,22,BGE,140.0,STOLEN,12384,"{'type': 'Point', 'coordinates': (-79.39668944, 43.63667003)}"
-12406,5670,GO-20199036962,THEFT UNDER - BICYCLE,2019-11-05T00:00:00,2019,November,Tuesday,5,309,10,2019-11-09T00:00:00,2019,November,Saturday,9,313,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,725,RC,1,PLE,1100.0,STOLEN,12385,"{'type': 'Point', 'coordinates': (-79.40138212, 43.64074836)}"
-12407,5676,GO-20199037102,THEFT UNDER,2019-11-10T00:00:00,2019,November,Sunday,10,314,19,2019-11-10T00:00:00,2019,November,Sunday,10,314,22,D51,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,CC,CRUISER,OT,7,CRM,350.0,STOLEN,12386,"{'type': 'Point', 'coordinates': (-79.37027555, 43.64981872)}"
-12408,5683,GO-20199037252,THEFT UNDER,2019-10-25T00:00:00,2019,October,Friday,25,298,14,2019-11-12T00:00:00,2019,November,Tuesday,12,316,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NO,,RG,5,WHI,0.0,STOLEN,12387,"{'type': 'Point', 'coordinates': (-79.38065193, 43.64100385)}"
-12409,5686,GO-20199037391,THEFT UNDER,2019-10-28T00:00:00,2019,October,Monday,28,301,7,2019-11-13T00:00:00,2019,November,Wednesday,13,317,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GT,AVALANCHE,MT,28,GRY,1000.0,STOLEN,12388,"{'type': 'Point', 'coordinates': (-79.38330674, 43.64067063)}"
-12410,5705,GO-20192228533,B&E,2019-11-18T00:00:00,2019,November,Monday,18,322,3,2019-11-18T00:00:00,2019,November,Monday,18,322,15,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OTHER,SURFACE 604,EL,10,BLK,4495.0,STOLEN,12389,"{'type': 'Point', 'coordinates': (-79.36388253000001, 43.64495966)}"
-12411,5706,GO-20192228533,B&E,2019-11-18T00:00:00,2019,November,Monday,18,322,3,2019-11-18T00:00:00,2019,November,Monday,18,322,15,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OTHER,SURFACE 604,EL,10,BLK,5288.0,STOLEN,12390,"{'type': 'Point', 'coordinates': (-79.36388253000001, 43.64495966)}"
-12412,5721,GO-20192266882,THEFT UNDER,2019-11-24T00:00:00,2019,November,Sunday,24,328,2,2019-11-24T00:00:00,2019,November,Sunday,24,328,5,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,,MT,18,BLK,,RECOVERED,12391,"{'type': 'Point', 'coordinates': (-79.40078712, 43.64430357)}"
-12413,5731,GO-20192297332,THEFT UNDER,2019-11-28T00:00:00,2019,November,Thursday,28,332,13,2019-11-29T00:00:00,2019,November,Friday,29,333,7,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,URBAN,OT,0,BLK,2500.0,STOLEN,12392,"{'type': 'Point', 'coordinates': (-79.38946509, 43.64593813)}"
-12414,5741,GO-20192273759,B&E,2019-11-23T00:00:00,2019,November,Saturday,23,327,17,2019-11-25T00:00:00,2019,November,Monday,25,329,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,ROUBAIX,TO,10,DBL,2500.0,STOLEN,12393,"{'type': 'Point', 'coordinates': (-79.38994752, 43.64370303)}"
-12415,5775,GO-20199041579,B&E,2019-12-20T00:00:00,2019,December,Friday,20,354,7,2019-12-20T00:00:00,2019,December,Friday,20,354,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,EM,KNIGHT,EL,34,BLK,3500.0,STOLEN,12394,"{'type': 'Point', 'coordinates': (-79.40306565, 43.64488902)}"
-12416,5781,GO-20192471986,THEFT UNDER - BICYCLE,2019-12-23T00:00:00,2019,December,Monday,23,357,13,2019-12-23T00:00:00,2019,December,Monday,23,357,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,TR,5,RED,1000.0,STOLEN,12395,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-12417,5820,GO-20209001189,THEFT UNDER,2020-01-10T00:00:00,2020,January,Friday,10,10,12,2020-01-10T00:00:00,2020,January,Friday,10,10,19,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,OT,8,BLK,800.0,STOLEN,12396,"{'type': 'Point', 'coordinates': (-79.37215317, 43.64913066)}"
-12418,5822,GO-20209001314,THEFT UNDER,2020-01-09T00:00:00,2020,January,Thursday,9,9,1,2020-01-12T00:00:00,2020,January,Sunday,12,12,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,60,BLU,790.0,STOLEN,12397,"{'type': 'Point', 'coordinates': (-79.39737512, 43.64853707)}"
-12419,7357,GO-20209024490,THEFT UNDER,2020-09-21T00:00:00,2020,September,Monday,21,265,0,2020-09-25T00:00:00,2020,September,Friday,25,269,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SU,,RG,12,BLU,14.0,STOLEN,12434,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-12420,5838,GO-20209001880,THEFT UNDER,2019-12-12T00:00:00,2019,December,Thursday,12,346,20,2020-01-16T00:00:00,2020,January,Thursday,16,16,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,OCLV 5200,RC,20,GRY,1000.0,STOLEN,12398,"{'type': 'Point', 'coordinates': (-79.38143561, 43.64291214)}"
-12421,5856,GO-2020177426,THEFT OF MOTOR VEHICLE,2020-01-25T00:00:00,2020,January,Saturday,25,25,9,2020-01-26T00:00:00,2020,January,Sunday,26,26,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,,EL,0,BLU,2200.0,STOLEN,12399,"{'type': 'Point', 'coordinates': (-79.39924205, 43.63909783)}"
-12422,5877,GO-20209004511,THEFT UNDER,2020-02-06T00:00:00,2020,February,Thursday,6,37,10,2020-02-06T00:00:00,2020,February,Thursday,6,37,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,GHOST,OT,18,BLK,900.0,STOLEN,12400,"{'type': 'Point', 'coordinates': (-79.38091602, 43.64168463)}"
-12423,5925,GO-20209006654,THEFT UNDER,2020-02-22T00:00:00,2020,February,Saturday,22,53,5,2020-02-24T00:00:00,2020,February,Monday,24,55,16,D52,Toronto,77,Waterfront Communities-The Island (77),Go Station,Transit,UK,CONIO LAMBORGHI,RC,21,RED,0.0,STOLEN,12401,"{'type': 'Point', 'coordinates': (-79.38243116, 43.64529171000001)}"
-12424,5928,GO-20209006862,THEFT UNDER,2020-02-24T00:00:00,2020,February,Monday,24,55,17,2020-02-25T00:00:00,2020,February,Tuesday,25,56,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,RG,1,BLU,200.0,STOLEN,12402,"{'type': 'Point', 'coordinates': (-79.38973372, 43.6466028)}"
-12425,5939,GO-20209007557,THEFT UNDER,2020-02-02T00:00:00,2020,February,Sunday,2,33,22,2020-03-02T00:00:00,2020,March,Monday,2,62,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SC,,TO,2,BLU,600.0,STOLEN,12403,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-12426,5940,GO-20209007557,THEFT UNDER,2020-02-02T00:00:00,2020,February,Sunday,2,33,22,2020-03-02T00:00:00,2020,March,Monday,2,62,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NO,29ER,MT,5,BLK,1600.0,STOLEN,12404,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-12427,5942,GO-20209007730,THEFT UNDER,2020-03-04T00:00:00,2020,March,Wednesday,4,64,13,2020-03-04T00:00:00,2020,March,Wednesday,4,64,14,D14,Toronto,77,Waterfront Communities-The Island (77),Schools During Supervised Activity,Educational,TR,7.2,RG,10,BLK,600.0,STOLEN,12405,"{'type': 'Point', 'coordinates': (-79.39832559, 43.63567355)}"
-12428,5951,GO-20209008276,THEFT UNDER,2020-03-09T00:00:00,2020,March,Monday,9,69,11,2020-03-09T00:00:00,2020,March,Monday,9,69,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,ANDANTE,TO,18,WHI,1000.0,STOLEN,12406,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-12429,5952,GO-20209008323,THEFT UNDER,2020-02-17T00:00:00,2020,February,Monday,17,48,16,2020-03-09T00:00:00,2020,March,Monday,9,69,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,SILVERSTONEWF1C,RC,6,PLE,1000.0,STOLEN,12407,"{'type': 'Point', 'coordinates': (-79.38143561, 43.64291214)}"
-12430,5967,GO-20209009028,THEFT UNDER,2020-03-15T00:00:00,2020,March,Sunday,15,75,15,2020-03-15T00:00:00,2020,March,Sunday,15,75,20,D52,Toronto,77,Waterfront Communities-The Island (77),Go Station,Transit,NO,MOUNTAINEER,MT,10,RED,250.0,STOLEN,12408,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-12431,5971,GO-2020572143,PROPERTY - FOUND,2020-03-20T00:00:00,2020,March,Friday,20,80,12,2020-03-20T00:00:00,2020,March,Friday,20,80,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,CROSSTRAIL,RG,18,,,RECOVERED,12409,"{'type': 'Point', 'coordinates': (-79.4010881, 43.64697154)}"
-12432,5991,GO-20209009838,THEFT UNDER,2020-03-17T00:00:00,2020,March,Tuesday,17,77,20,2020-03-25T00:00:00,2020,March,Wednesday,25,85,23,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM1,OT,21,GRY,1200.0,STOLEN,12410,"{'type': 'Point', 'coordinates': (-79.38275181, 43.64263544000001)}"
-12433,6010,GO-2020640291,THEFT OVER - BICYCLE,2019-12-13T00:00:00,2019,December,Friday,13,347,19,2020-04-01T00:00:00,2020,April,Wednesday,1,92,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CANNONDALE,SUPER BIKE,MT,12,BLK,11000.0,STOLEN,12411,"{'type': 'Point', 'coordinates': (-79.39202118, 43.64537211)}"
-12434,6025,GO-20209010558,THEFT UNDER,2020-04-06T00:00:00,2020,April,Monday,6,97,9,2020-04-06T00:00:00,2020,April,Monday,6,97,13,D52,Toronto,77,Waterfront Communities-The Island (77),Go Station,Transit,KO,PADDY WAGON,RG,1,GRY,500.0,STOLEN,12412,"{'type': 'Point', 'coordinates': (-79.38243116, 43.64529171000001)}"
-12435,6139,GO-2020835650,B&E,2020-05-03T00:00:00,2020,May,Sunday,3,124,17,2020-05-04T00:00:00,2020,May,Monday,4,125,9,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TREK,1000,TO,0,BLK,1500.0,STOLEN,12435,"{'type': 'Point', 'coordinates': (-79.4023568, 43.64319258)}"
-12436,7338,GO-20209024298,THEFT UNDER,2020-09-23T00:00:00,2020,September,Wednesday,23,267,20,2020-09-24T00:00:00,2020,September,Thursday,24,268,8,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,CAAD12,RC,11,GRY,4000.0,STOLEN,12413,"{'type': 'Point', 'coordinates': (-79.38338679, 43.64508285)}"
-12437,6124,GO-20209012241,THEFT FROM MOTOR VEHICLE UNDER,2020-04-20T00:00:00,2020,April,Monday,20,111,20,2020-04-30T00:00:00,2020,April,Thursday,30,121,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,ALLEZ SPORT,RC,9,WHI,2000.0,STOLEN,12414,"{'type': 'Point', 'coordinates': (-79.37933296, 43.64221959)}"
-12438,2631,GO-20189019511,THEFT UNDER,2018-06-20T00:00:00,2018,June,Wednesday,20,171,7,2018-06-20T00:00:00,2018,June,Wednesday,20,171,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,UK,,RG,1,BLU,0.0,STOLEN,12415,"{'type': 'Point', 'coordinates': (-79.38275181, 43.64263544000001)}"
-12439,2634,GO-20189019543,THEFT UNDER,2018-06-19T00:00:00,2018,June,Tuesday,19,170,18,2018-06-20T00:00:00,2018,June,Wednesday,20,171,21,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,TCR,RC,21,BLK,2000.0,STOLEN,12416,"{'type': 'Point', 'coordinates': (-79.39737512, 43.64853707)}"
-12440,2635,GO-20189019554,THEFT UNDER,2018-06-18T00:00:00,2018,June,Monday,18,169,10,2018-06-20T00:00:00,2018,June,Wednesday,20,171,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,TUILNOVI,RG,7,DBL,0.0,STOLEN,12417,"{'type': 'Point', 'coordinates': (-79.39389489, 43.64651184)}"
-12441,4159,GO-2019663997,B&E,2019-03-18T00:00:00,2019,March,Monday,18,77,0,2019-04-12T00:00:00,2019,April,Friday,12,102,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GIANT,SLR2 FASTROAD,OT,0,,1100.0,STOLEN,12418,"{'type': 'Point', 'coordinates': (-79.38143561, 43.64291214)}"
-12442,2636,GO-20189019526,THEFT UNDER - BICYCLE,2018-06-20T00:00:00,2018,June,Wednesday,20,171,2,2018-06-20T00:00:00,2018,June,Wednesday,20,171,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CA,CM20832X02,RG,18,BLU,1200.0,STOLEN,12419,"{'type': 'Point', 'coordinates': (-79.39186446, 43.64164294)}"
-12443,7616,GO-20209029207,THEFT UNDER,2020-11-10T00:00:00,2020,November,Tuesday,10,315,12,2020-11-10T00:00:00,2020,November,Tuesday,10,315,12,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,40,GRY,200.0,STOLEN,22848,"{'type': 'Point', 'coordinates': (-79.40557144, 43.69748027)}"
-12444,2646,GO-20181134576,THEFT UNDER - BICYCLE,2018-06-21T00:00:00,2018,June,Thursday,21,172,21,2018-06-22T00:00:00,2018,June,Friday,22,173,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KONA,ROVE DL,OT,18,ONG,1400.0,STOLEN,12420,"{'type': 'Point', 'coordinates': (-79.38709792, 43.64990598)}"
-12445,2649,GO-20189019707,THEFT UNDER,2018-06-19T00:00:00,2018,June,Tuesday,19,170,13,2018-06-21T00:00:00,2018,June,Thursday,21,172,18,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,SIRRUS DISC,RG,21,GRY,1200.0,STOLEN,12421,"{'type': 'Point', 'coordinates': (-79.35677669, 43.6529262)}"
-12446,2650,GO-20189019707,THEFT UNDER,2018-06-19T00:00:00,2018,June,Tuesday,19,170,13,2018-06-21T00:00:00,2018,June,Thursday,21,172,18,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,TCX ADVANCED SX,RC,8,RED,3100.0,STOLEN,12422,"{'type': 'Point', 'coordinates': (-79.35677669, 43.6529262)}"
-12447,2672,GO-20181136973,THEFT FROM MOTOR VEHICLE OVER,2018-06-22T00:00:00,2018,June,Friday,22,173,14,2018-06-22T00:00:00,2018,June,Friday,22,173,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,LITE SPEED,GHISALLO,OT,20,GRY,10000.0,STOLEN,12423,"{'type': 'Point', 'coordinates': (-79.38994752, 43.64370303)}"
-12448,2679,GO-20189020218,THEFT UNDER - BICYCLE,2018-06-24T00:00:00,2018,June,Sunday,24,175,12,2018-06-25T00:00:00,2018,June,Monday,25,176,16,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE RX COMPO,MT,10,,2900.0,STOLEN,12424,"{'type': 'Point', 'coordinates': (-79.4023568, 43.64319258)}"
-12449,2699,GO-20181168419,B&E,2018-06-07T00:00:00,2018,June,Thursday,7,158,0,2018-06-27T00:00:00,2018,June,Wednesday,27,178,14,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,BIANCHI,EV-4,RC,18,GRY,6000.0,STOLEN,12425,"{'type': 'Point', 'coordinates': (-79.39592984, 43.64780696)}"
-12450,2704,GO-20181173194,THEFT OF EBIKE OVER $5000,2018-06-23T00:00:00,2018,June,Saturday,23,174,11,2018-06-28T00:00:00,2018,June,Thursday,28,179,6,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,LBS1,,EL,1,BLK,3187.0,STOLEN,12426,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-12451,2705,GO-20181173194,THEFT OF EBIKE OVER $5000,2018-06-23T00:00:00,2018,June,Saturday,23,174,11,2018-06-28T00:00:00,2018,June,Thursday,28,179,6,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,AMEGO,,EL,1,BLK,1631.0,STOLEN,12427,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-12452,2709,GO-20181177874,B&E W'INTENT,2018-06-27T00:00:00,2018,June,Wednesday,27,178,1,2018-06-28T00:00:00,2018,June,Thursday,28,179,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GIANT,,RC,0,BLK,2250.0,STOLEN,12428,"{'type': 'Point', 'coordinates': (-79.39835558, 43.64685172)}"
-12453,2710,GO-20181177874,B&E W'INTENT,2018-06-27T00:00:00,2018,June,Wednesday,27,178,1,2018-06-28T00:00:00,2018,June,Thursday,28,179,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CINELLI,MYSTIC-RATS,RC,1,BLK,1500.0,STOLEN,12429,"{'type': 'Point', 'coordinates': (-79.39835558, 43.64685172)}"
-12454,2712,GO-20181175025,B&E W'INTENT,2018-06-28T00:00:00,2018,June,Thursday,28,179,0,2018-06-28T00:00:00,2018,June,Thursday,28,179,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GIANT,RAPID 0,TO,24,,1700.0,STOLEN,12430,"{'type': 'Point', 'coordinates': (-79.39025369, 43.64785592)}"
-12455,2725,GO-20181201320,THEFT UNDER - BICYCLE,2017-08-01T00:00:00,2017,August,Tuesday,1,213,0,2018-07-02T00:00:00,2018,July,Monday,2,183,14,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,KONA,DEW,RG,18,BLK,100.0,STOLEN,12431,"{'type': 'Point', 'coordinates': (-79.39737512, 43.64853707)}"
-12456,2738,GO-20189020986,THEFT UNDER - BICYCLE,2018-07-01T00:00:00,2018,July,Sunday,1,182,18,2018-07-03T00:00:00,2018,July,Tuesday,3,184,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,XC27,MT,21,BLK,400.0,STOLEN,12432,"{'type': 'Point', 'coordinates': (-79.39820731, 43.64329925)}"
-12457,2747,GO-20189021086,THEFT UNDER - BICYCLE,2018-06-18T00:00:00,2018,June,Monday,18,169,13,2018-07-03T00:00:00,2018,July,Tuesday,3,184,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Gas Station (Self, Full, Attached Convenience)",Commercial,UK,MTB FRONT SUSPE,MT,21,SIL,250.0,STOLEN,12433,"{'type': 'Point', 'coordinates': (-79.39458503, 43.64442176)}"
-12458,859,GO-20171255826,THEFT UNDER - BICYCLE,2016-11-14T00:00:00,2016,November,Monday,14,319,12,2017-07-16T00:00:00,2017,July,Sunday,16,197,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,DOLCE COMPOSITE,OT,18,WHI,1500.0,STOLEN,12436,"{'type': 'Point', 'coordinates': (-79.38994752, 43.64370303)}"
-12459,2764,GO-20189021347,THEFT UNDER - BICYCLE,2018-07-05T00:00:00,2018,July,Thursday,5,186,9,2018-07-05T00:00:00,2018,July,Thursday,5,186,20,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,BRAVO (BLUE RIM,RG,1,BLK,400.0,STOLEN,12437,"{'type': 'Point', 'coordinates': (-79.37302563, 43.64248042)}"
-12460,2773,GO-20189021499,THEFT UNDER,2018-07-03T00:00:00,2018,July,Tuesday,3,184,21,2018-07-06T00:00:00,2018,July,Friday,6,187,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,KO,ROVE AL,RC,30,ONG,1000.0,STOLEN,12438,"{'type': 'Point', 'coordinates': (-79.39281928, 43.64732006)}"
-12461,2776,GO-20189021520,THEFT UNDER,2018-07-07T00:00:00,2018,July,Saturday,7,188,5,2018-07-07T00:00:00,2018,July,Saturday,7,188,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,FIEND,MT,1,BLK,500.0,STOLEN,12439,"{'type': 'Point', 'coordinates': (-79.39048611, 43.645008190000006)}"
-12462,2783,GO-20189021601,THEFT UNDER - BICYCLE,2018-06-30T00:00:00,2018,June,Saturday,30,181,22,2018-07-08T00:00:00,2018,July,Sunday,8,189,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,,TO,7,GRY,542.0,STOLEN,12440,"{'type': 'Point', 'coordinates': (-79.39811145, 43.64623146000001)}"
-12463,2799,GO-20189021846,THEFT UNDER - BICYCLE,2018-07-10T00:00:00,2018,July,Tuesday,10,191,8,2018-07-10T00:00:00,2018,July,Tuesday,10,191,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,ACCEL X,RC,14,BLK,375.0,STOLEN,12441,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-12464,2800,GO-20189021871,THEFT UNDER - BICYCLE,2018-07-09T00:00:00,2018,July,Monday,9,190,17,2018-07-10T00:00:00,2018,July,Tuesday,10,191,14,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,FX 2,RG,24,BLK,620.0,STOLEN,12442,"{'type': 'Point', 'coordinates': (-79.40008347, 43.64718548)}"
-12465,13055,GO-20201196309,ROBBERY - OTHER,2020-06-29T00:00:00,2020,June,Monday,29,181,11,2020-06-29T00:00:00,2020,June,Monday,29,181,11,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,CCM,,RG,18,BLK,,STOLEN,23718,"{'type': 'Point', 'coordinates': (-79.39409295, 43.70760244)}"
-12466,2808,GO-20189021964,THEFT UNDER - BICYCLE,2018-07-09T00:00:00,2018,July,Monday,9,190,18,2018-07-10T00:00:00,2018,July,Tuesday,10,191,21,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,RG,18,BLK,300.0,STOLEN,12443,"{'type': 'Point', 'coordinates': (-79.36896015, 43.64393833)}"
-12467,2814,GO-20189022026,THEFT UNDER - BICYCLE,2018-07-05T00:00:00,2018,July,Thursday,5,186,15,2018-07-11T00:00:00,2018,July,Wednesday,11,192,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,,TO,18,WHI,500.0,STOLEN,12444,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-12468,2825,GO-20189022186,THEFT UNDER - BICYCLE,2018-05-13T00:00:00,2018,May,Sunday,13,133,15,2018-07-12T00:00:00,2018,July,Thursday,12,193,18,D52,Toronto,77,Waterfront Communities-The Island (77),Unknown,Other,UK,SCOTT SUB EVO 2,RG,20,BLK,1300.0,STOLEN,12445,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-12469,2836,GO-20189022288,THEFT UNDER - BICYCLE,2018-07-09T00:00:00,2018,July,Monday,9,190,18,2018-07-13T00:00:00,2018,July,Friday,13,194,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,21,RED,700.0,STOLEN,12446,"{'type': 'Point', 'coordinates': (-79.40185545, 43.64191381)}"
-12470,2841,GO-20189022380,THEFT UNDER - BICYCLE,2018-07-13T00:00:00,2018,July,Friday,13,194,22,2018-07-14T00:00:00,2018,July,Saturday,14,195,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,,EXCURSION,OT,24,SIL,315.0,STOLEN,12447,"{'type': 'Point', 'coordinates': (-79.38758284, 43.6408552)}"
-12471,2845,GO-20189022431,THEFT UNDER - BICYCLE,2018-07-15T00:00:00,2018,July,Sunday,15,196,13,2018-07-15T00:00:00,2018,July,Sunday,15,196,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,URBANIA,RG,27,BLK,800.0,STOLEN,12448,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-12472,2854,GO-20189022595,THEFT UNDER - BICYCLE,2018-07-14T00:00:00,2018,July,Saturday,14,195,12,2018-07-16T00:00:00,2018,July,Monday,16,197,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NO,6.2,MT,27,BLK,1500.0,STOLEN,12449,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-12473,15540,GO-20169009121,THEFT UNDER,2016-08-21T00:00:00,2016,August,Sunday,21,234,0,2016-08-21T00:00:00,2016,August,Sunday,21,234,15,D13,Toronto,107,Oakwood Village (107),"Apartment (Rooming House, Condo)",Apartment,SC,,RG,20,PLE,0.0,STOLEN,24037,"{'type': 'Point', 'coordinates': (-79.44241401, 43.69650877)}"
-12474,2867,GO-20181307331,THEFT UNDER - BICYCLE,2018-07-17T00:00:00,2018,July,Tuesday,17,198,21,2018-07-17T00:00:00,2018,July,Tuesday,17,198,22,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUPERCYCLE,RMBSOUL700,MT,24,BLKONG,700.0,STOLEN,12450,"{'type': 'Point', 'coordinates': (-79.37302563, 43.64248042)}"
-12475,2875,GO-20189022857,THEFT UNDER - BICYCLE,2018-07-17T00:00:00,2018,July,Tuesday,17,198,22,2018-07-17T00:00:00,2018,July,Tuesday,17,198,22,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,,NAKAMURA,RG,10,SIL,265.0,STOLEN,12451,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-12476,2884,GO-20189022998,THEFT UNDER,2018-07-17T00:00:00,2018,July,Tuesday,17,198,18,2018-07-18T00:00:00,2018,July,Wednesday,18,199,23,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CC,CANADIAN TIRE,MT,21,DBL,399.0,STOLEN,12452,"{'type': 'Point', 'coordinates': (-79.39124574, 43.64342012)}"
-12477,2889,GO-20189023105,THEFT UNDER,2018-07-19T00:00:00,2018,July,Thursday,19,200,9,2018-07-19T00:00:00,2018,July,Thursday,19,200,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,SIRRUS,RG,18,RED,600.0,STOLEN,12453,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-12478,2891,GO-20181313639,THEFT UNDER - BICYCLE,2018-05-10T00:00:00,2018,May,Thursday,10,130,12,2018-07-18T00:00:00,2018,July,Wednesday,18,199,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TREK,FX,OT,21,BLK,,STOLEN,12454,"{'type': 'Point', 'coordinates': (-79.40306565, 43.64488902)}"
-12479,2892,GO-20181313639,THEFT UNDER - BICYCLE,2018-05-10T00:00:00,2018,May,Thursday,10,130,12,2018-07-18T00:00:00,2018,July,Wednesday,18,199,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,,OT,0,RED,,STOLEN,12455,"{'type': 'Point', 'coordinates': (-79.40306565, 43.64488902)}"
-12480,2894,GO-20189023138,THEFT UNDER - BICYCLE,2017-06-14T00:00:00,2017,June,Wednesday,14,165,22,2018-07-19T00:00:00,2018,July,Thursday,19,200,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MA,BOLINAS RIDGE,MT,18,BLU,700.0,STOLEN,12456,"{'type': 'Point', 'coordinates': (-79.38684132, 43.64925417)}"
-12481,2907,GO-20189023309,THEFT UNDER,2018-07-21T00:00:00,2018,July,Saturday,21,202,10,2018-07-21T00:00:00,2018,July,Saturday,21,202,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,DB,CLARITY,TO,24,GLD,400.0,STOLEN,12457,"{'type': 'Point', 'coordinates': (-79.38542345, 43.63902804)}"
-12482,2908,GO-20181335093,THEFT UNDER,2018-07-20T00:00:00,2018,July,Friday,20,201,23,2018-07-21T00:00:00,2018,July,Saturday,21,202,23,D52,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,KHS,FLIGHT,RG,21,BLK,800.0,STOLEN,12458,"{'type': 'Point', 'coordinates': (-79.39578994, 43.64739695)}"
-12483,2952,GO-20189023821,FTC PROBATION ORDER,2018-07-14T00:00:00,2018,July,Saturday,14,195,8,2018-07-25T00:00:00,2018,July,Wednesday,25,206,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,BLK,800.0,STOLEN,12459,"{'type': 'Point', 'coordinates': (-79.39934668, 43.64733861)}"
-12484,23385,GO-20149003362,THEFT UNDER,2014-05-11T00:00:00,2014,May,Sunday,11,131,18,2014-05-14T00:00:00,2014,May,Wednesday,14,134,22,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,TR,7.5 FX,RC,21,BLK,1200.0,STOLEN,12460,"{'type': 'Point', 'coordinates': (-79.3863755, 43.65817391)}"
-12485,2958,GO-20189023847,THEFT UNDER - BICYCLE,2018-07-24T00:00:00,2018,July,Tuesday,24,205,21,2018-07-25T00:00:00,2018,July,Wednesday,25,206,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,CARPE 30 16 GRN,RG,8,DGR,699.0,STOLEN,12461,"{'type': 'Point', 'coordinates': (-79.39124176, 43.640111790000006)}"
-12486,2964,GO-20181356545,THEFT OF EBIKE UNDER $5000,2018-07-20T00:00:00,2018,July,Friday,20,201,20,2018-07-25T00:00:00,2018,July,Wednesday,25,206,6,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CUBE,REACTION HYBRID,EL,11,BLKLGR,4400.0,STOLEN,12462,"{'type': 'Point', 'coordinates': (-79.40137395, 43.64770851)}"
-12487,2966,GO-20181368374,THEFT UNDER - BICYCLE,2018-07-17T00:00:00,2018,July,Tuesday,17,198,8,2018-07-26T00:00:00,2018,July,Thursday,26,207,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GIANT,MOUNTAIN BIKE,MT,21,BLKGRN,1000.0,STOLEN,12463,"{'type': 'Point', 'coordinates': (-79.39558819, 43.63994429)}"
-12488,13558,GO-20209017725,THEFT UNDER,2020-07-16T00:00:00,2020,July,Thursday,16,198,7,2020-07-16T00:00:00,2020,July,Thursday,16,198,16,D41,Toronto,119,Wexford/Maryvale (119),"Apartment (Rooming House, Condo)",Apartment,,MONSTER,MT,21,BLU,400.0,STOLEN,24534,"{'type': 'Point', 'coordinates': (-79.30785805, 43.75955785)}"
-12489,2968,GO-20181369496,B&E,2018-07-02T00:00:00,2018,July,Monday,2,183,0,2018-07-26T00:00:00,2018,July,Thursday,26,207,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OTHER,AVENUE,RG,1,RED,1500.0,STOLEN,12464,"{'type': 'Point', 'coordinates': (-79.39204821, 43.64885072)}"
-12490,2979,GO-20189024077,THEFT UNDER - BICYCLE,2018-07-26T00:00:00,2018,July,Thursday,26,207,19,2018-07-26T00:00:00,2018,July,Thursday,26,207,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,8,PLE,1500.0,STOLEN,12465,"{'type': 'Point', 'coordinates': (-79.39833497, 43.64030158)}"
-12491,2982,GO-20189024092,THEFT UNDER - BICYCLE,2018-07-26T00:00:00,2018,July,Thursday,26,207,22,2018-07-26T00:00:00,2018,July,Thursday,26,207,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,ORBITA,MT,6,,230.0,STOLEN,12466,"{'type': 'Point', 'coordinates': (-79.38143561, 43.64291214)}"
-12492,3010,GO-20181387172,THEFT UNDER - BICYCLE,2018-07-29T00:00:00,2018,July,Sunday,29,210,12,2018-07-29T00:00:00,2018,July,Sunday,29,210,14,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FELT,VERZA,MT,50,BLK,500.0,STOLEN,12467,"{'type': 'Point', 'coordinates': (-79.40372116, 43.64647061)}"
-12493,3012,GO-20181368928,THEFT UNDER - BICYCLE,2018-07-22T00:00:00,2018,July,Sunday,22,203,23,2018-07-26T00:00:00,2018,July,Thursday,26,207,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,DS650,MT,21,BLKWHI,600.0,STOLEN,12468,"{'type': 'Point', 'coordinates': (-79.38946509, 43.64593813)}"
-12494,3014,GO-20189024399,THEFT UNDER - BICYCLE,2018-07-28T00:00:00,2018,July,Saturday,28,209,15,2018-07-29T00:00:00,2018,July,Sunday,29,210,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,OT,1,,0.0,STOLEN,12469,"{'type': 'Point', 'coordinates': (-79.39532578, 43.64621392)}"
-12495,3047,GO-20189024779,THEFT UNDER - BICYCLE,2018-07-25T00:00:00,2018,July,Wednesday,25,206,9,2018-08-01T00:00:00,2018,August,Wednesday,1,213,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,55005,RC,20,BLK,900.0,STOLEN,12470,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-12496,4300,GO-2019906362,B&E W'INTENT,2019-05-18T00:00:00,2019,May,Saturday,18,138,13,2019-05-18T00:00:00,2019,May,Saturday,18,138,13,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,GIANT,,MT,0,BLKONG,,STOLEN,14849,"{'type': 'Point', 'coordinates': (-79.39042227000002, 43.65615784)}"
-12497,3088,GO-20189025228,THEFT UNDER - BICYCLE,2018-06-13T00:00:00,2018,June,Wednesday,13,164,18,2018-08-05T00:00:00,2018,August,Sunday,5,217,22,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,RG,27,WHI,450.0,STOLEN,12473,"{'type': 'Point', 'coordinates': (-79.37146354, 43.64763677)}"
-12498,3097,GO-20189025364,THEFT UNDER - BICYCLE,2018-08-06T00:00:00,2018,August,Monday,6,218,21,2018-08-07T00:00:00,2018,August,Tuesday,7,219,9,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,1,BLK,0.0,STOLEN,12474,"{'type': 'Point', 'coordinates': (-79.3621013, 43.65019711)}"
-12499,3098,GO-20189025369,THEFT UNDER - BICYCLE,2018-08-04T00:00:00,2018,August,Saturday,4,216,16,2018-08-07T00:00:00,2018,August,Tuesday,7,219,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,FJ,,RG,40,BLK,650.0,STOLEN,12475,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-12500,3110,GO-20189025491,THEFT UNDER - BICYCLE,2018-08-07T00:00:00,2018,August,Tuesday,7,219,19,2018-08-08T00:00:00,2018,August,Wednesday,8,220,1,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,RECORD (1970'S),RG,10,BLU,400.0,STOLEN,12476,"{'type': 'Point', 'coordinates': (-79.39963685, 43.64806649)}"
-12501,3114,GO-20181458959,B&E,2018-07-18T00:00:00,2018,July,Wednesday,18,199,3,2018-08-08T00:00:00,2018,August,Wednesday,8,220,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,DEVINCI,ST TROPEZ,RG,24,SIL,700.0,STOLEN,12477,"{'type': 'Point', 'coordinates': (-79.39184935, 43.63765238)}"
-12502,3115,GO-20181458959,B&E,2018-07-18T00:00:00,2018,July,Wednesday,18,199,3,2018-08-08T00:00:00,2018,August,Wednesday,8,220,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,OT,0,,,STOLEN,12478,"{'type': 'Point', 'coordinates': (-79.39184935, 43.63765238)}"
-12503,3121,GO-20181457389,B&E,2018-07-28T00:00:00,2018,July,Saturday,28,209,14,2018-08-08T00:00:00,2018,August,Wednesday,8,220,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OTHER,,MT,27,,,STOLEN,12479,"{'type': 'Point', 'coordinates': (-79.395007, 43.64546954)}"
-12504,4638,GO-20191211680,B&E,2019-06-29T00:00:00,2019,June,Saturday,29,180,5,2019-06-29T00:00:00,2019,June,Saturday,29,180,21,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,KLEIN,STAGE,RG,24,RED,500.0,STOLEN,14858,"{'type': 'Point', 'coordinates': (-79.40229657, 43.65523449)}"
-12505,3134,GO-20181462659,THEFT UNDER - BICYCLE,2018-08-09T00:00:00,2018,August,Thursday,9,221,10,2018-08-10T00:00:00,2018,August,Friday,10,222,6,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,ESCAPE 3,OT,27,ONGBLK,580.0,STOLEN,12480,"{'type': 'Point', 'coordinates': (-79.3621013, 43.65019711)}"
-12506,3149,GO-20181469857,PROPERTY - FOUND,2018-08-09T00:00:00,2018,August,Thursday,9,221,23,2018-08-10T00:00:00,2018,August,Friday,10,222,11,D51,Toronto,77,Waterfront Communities-The Island (77),Universities / Colleges,Educational,TREK,6500,MT,21,RED,,UNKNOWN,12481,"{'type': 'Point', 'coordinates': (-79.36616846, 43.64421276)}"
-12507,3150,GO-20181469857,PROPERTY - FOUND,2018-08-09T00:00:00,2018,August,Thursday,9,221,23,2018-08-10T00:00:00,2018,August,Friday,10,222,11,D51,Toronto,77,Waterfront Communities-The Island (77),Universities / Colleges,Educational,SPECIALIZED,HARDROCK,MT,21,RED,,UNKNOWN,12482,"{'type': 'Point', 'coordinates': (-79.36616846, 43.64421276)}"
-12508,3156,GO-20189025910,THEFT UNDER,2018-08-09T00:00:00,2018,August,Thursday,9,221,20,2018-08-10T00:00:00,2018,August,Friday,10,222,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,GI,ESCAPE 3 - 2015,OT,21,GRY,500.0,STOLEN,12483,"{'type': 'Point', 'coordinates': (-79.39048611, 43.645008190000006)}"
-12509,3157,GO-20189025927,THEFT UNDER - BICYCLE,2018-08-10T00:00:00,2018,August,Friday,10,222,7,2018-08-11T00:00:00,2018,August,Saturday,11,223,1,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,CFR PRO,RC,18,BLU,600.0,STOLEN,12484,"{'type': 'Point', 'coordinates': (-79.37302563, 43.64248042)}"
-12510,3158,GO-20189025939,THEFT UNDER,2018-08-08T00:00:00,2018,August,Wednesday,8,220,23,2018-08-10T00:00:00,2018,August,Friday,10,222,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,RG,21,GRY,1000.0,STOLEN,12485,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-12511,3194,GO-20189026273,THEFT UNDER - BICYCLE,2018-08-13T00:00:00,2018,August,Monday,13,225,19,2018-08-13T00:00:00,2018,August,Monday,13,225,23,D14,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,TR,,MT,21,DGR,1000.0,STOLEN,12486,"{'type': 'Point', 'coordinates': (-79.39668944, 43.63667003)}"
-12512,6169,GO-20209012990,THEFT UNDER,2020-04-13T00:00:00,2020,April,Monday,13,104,6,2020-05-12T00:00:00,2020,May,Tuesday,12,133,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,,OT,30,,250.0,STOLEN,12530,"{'type': 'Point', 'coordinates': (-79.40306565, 43.64488902)}"
-12513,3203,GO-20189026447,THEFT UNDER,2018-08-11T00:00:00,2018,August,Saturday,11,223,1,2018-08-15T00:00:00,2018,August,Wednesday,15,227,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,FJ,ABSOLUTE 2.0 OR,OT,7,BLK,250.0,STOLEN,12487,"{'type': 'Point', 'coordinates': (-79.38994752, 43.64370303)}"
-12514,3207,GO-20189026529,THEFT UNDER,2018-08-03T00:00:00,2018,August,Friday,3,215,16,2018-08-15T00:00:00,2018,August,Wednesday,15,227,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RC,1,BLK,473.0,STOLEN,12488,"{'type': 'Point', 'coordinates': (-79.39204821, 43.64885072)}"
-12515,3228,GO-20189026666,THEFT UNDER - BICYCLE,2018-07-30T00:00:00,2018,July,Monday,30,211,11,2018-08-16T00:00:00,2018,August,Thursday,16,228,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,OSLO,RG,21,ONG,900.0,STOLEN,12489,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-12516,3229,GO-20189026714,THEFT UNDER - BICYCLE,2018-08-16T00:00:00,2018,August,Thursday,16,228,16,2018-08-16T00:00:00,2018,August,Thursday,16,228,19,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,35,BLK,600.0,STOLEN,12490,"{'type': 'Point', 'coordinates': (-79.37146354, 43.64763677)}"
-12517,3232,GO-20189026757,THEFT UNDER - BICYCLE,2018-08-16T00:00:00,2018,August,Thursday,16,228,17,2018-08-17T00:00:00,2018,August,Friday,17,229,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,JACKSON,MT,21,GRY,600.0,STOLEN,12491,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-12518,3239,GO-20181491522,THEFT UNDER - BICYCLE,2018-08-09T00:00:00,2018,August,Thursday,9,221,20,2018-08-13T00:00:00,2018,August,Monday,13,225,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,RG,6,,400.0,STOLEN,12492,"{'type': 'Point', 'coordinates': (-79.38864414, 43.64819947)}"
-12519,3241,GO-20189026876,THEFT UNDER - BICYCLE,2018-06-15T00:00:00,2018,June,Friday,15,166,23,2018-08-18T00:00:00,2018,August,Saturday,18,230,9,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,,MT,18,SIL,100.0,STOLEN,12493,"{'type': 'Point', 'coordinates': (-79.37215317, 43.64913066)}"
-12520,3243,GO-20189026940,THEFT UNDER,2018-08-18T00:00:00,2018,August,Saturday,18,230,16,2018-08-18T00:00:00,2018,August,Saturday,18,230,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,BI,PISTA,RC,1,SIL,1000.0,STOLEN,12494,"{'type': 'Point', 'coordinates': (-79.40372116, 43.64647061)}"
-12521,3247,GO-20189026982,THEFT UNDER - BICYCLE,2018-08-19T00:00:00,2018,August,Sunday,19,231,6,2018-08-19T00:00:00,2018,August,Sunday,19,231,11,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,FX 7.3,TO,27,BLK,600.0,STOLEN,12495,"{'type': 'Point', 'coordinates': (-79.37524509, 43.64636121)}"
-12522,3255,GO-20189027069,THEFT UNDER - BICYCLE,2018-08-11T00:00:00,2018,August,Saturday,11,223,7,2018-08-20T00:00:00,2018,August,Monday,20,232,9,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NO,NORCO VALENCE A,RC,24,BLK,850.0,STOLEN,12496,"{'type': 'Point', 'coordinates': (-79.37524509, 43.64636121)}"
-12523,3257,GO-20181537539,THEFT UNDER - BICYCLE,2018-08-20T00:00:00,2018,August,Monday,20,232,11,2018-08-20T00:00:00,2018,August,Monday,20,232,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DEVINCI,,OT,24,BLKBLU,700.0,STOLEN,12497,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-12524,3266,GO-20189027165,THEFT UNDER - BICYCLE,2018-08-20T00:00:00,2018,August,Monday,20,232,16,2018-08-20T00:00:00,2018,August,Monday,20,232,16,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,CDALE 18 QUICK,RG,18,BLK,1500.0,STOLEN,12498,"{'type': 'Point', 'coordinates': (-79.39760717, 43.64495335000001)}"
-12525,3304,GO-20189027703,B&E,2018-08-23T00:00:00,2018,August,Thursday,23,235,12,2018-08-24T00:00:00,2018,August,Friday,24,236,9,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,21,BLK,800.0,STOLEN,12499,"{'type': 'Point', 'coordinates': (-79.39924205, 43.63909783)}"
-12526,3324,GO-20189027980,THEFT UNDER - BICYCLE,2018-08-25T00:00:00,2018,August,Saturday,25,237,7,2018-08-26T00:00:00,2018,August,Sunday,26,238,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,,RC,6,GRY,2000.0,STOLEN,12500,"{'type': 'Point', 'coordinates': (-79.39124574, 43.64342012)}"
-12527,3327,GO-20181576282,THEFT OF EBIKE UNDER $5000,2018-08-21T00:00:00,2018,August,Tuesday,21,233,11,2018-08-26T00:00:00,2018,August,Sunday,26,238,5,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BARLETTA,VALETTA,EL,3,BLK,900.0,STOLEN,12501,"{'type': 'Point', 'coordinates': (-79.39592984, 43.64780696)}"
-12528,3328,GO-20181562488,THEFT UNDER - BICYCLE,2018-08-19T00:00:00,2018,August,Sunday,19,231,18,2018-08-24T00:00:00,2018,August,Friday,24,236,5,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUPERCYCLE,CROSSFORD,MT,21,BLKONG,250.0,STOLEN,12502,"{'type': 'Point', 'coordinates': (-79.3979648, 43.63940267)}"
-12529,3345,GO-20189028355,THEFT UNDER - BICYCLE,2018-08-28T00:00:00,2018,August,Tuesday,28,240,18,2018-08-29T00:00:00,2018,August,Wednesday,29,241,1,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,INDIE 4,RG,8,BLK,800.0,STOLEN,12503,"{'type': 'Point', 'coordinates': (-79.40137395, 43.64770851)}"
-12530,3346,GO-20189028344,THEFT UNDER,2018-08-28T00:00:00,2018,August,Tuesday,28,240,13,2018-08-28T00:00:00,2018,August,Tuesday,28,240,21,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,TREK,OT,27,LBL,829.0,STOLEN,12504,"{'type': 'Point', 'coordinates': (-79.39924205, 43.63909783)}"
-12531,3349,GO-20189028368,THEFT UNDER - BICYCLE,2018-08-29T00:00:00,2018,August,Wednesday,29,241,8,2018-08-29T00:00:00,2018,August,Wednesday,29,241,9,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,700 F GRATER MI,RG,8,MRN,900.0,STOLEN,12505,"{'type': 'Point', 'coordinates': (-79.3621013, 43.65019711)}"
-12532,3355,GO-20189028535,THEFT UNDER - BICYCLE,2018-08-29T00:00:00,2018,August,Wednesday,29,241,11,2018-08-30T00:00:00,2018,August,Thursday,30,242,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,,TO,25,RED,300.0,STOLEN,12506,"{'type': 'Point', 'coordinates': (-79.40306565, 43.64488902)}"
-12533,3358,GO-20189028539,THEFT UNDER - BICYCLE,2018-08-30T00:00:00,2018,August,Thursday,30,242,0,2018-08-30T00:00:00,2018,August,Thursday,30,242,11,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,ROAD BIKE,TO,10,BLK,0.0,STOLEN,12507,"{'type': 'Point', 'coordinates': (-79.36388253000001, 43.64495966)}"
-12534,3359,GO-20189028539,THEFT UNDER - BICYCLE,2018-08-30T00:00:00,2018,August,Thursday,30,242,0,2018-08-30T00:00:00,2018,August,Thursday,30,242,11,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,,MENS ROAD,TO,10,BLK,100.0,STOLEN,12508,"{'type': 'Point', 'coordinates': (-79.36388253000001, 43.64495966)}"
-12535,3372,GO-20189028698,THEFT UNDER - BICYCLE,2018-08-25T00:00:00,2018,August,Saturday,25,237,22,2018-08-31T00:00:00,2018,August,Friday,31,243,12,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RC,10,DBL,0.0,STOLEN,12509,"{'type': 'Point', 'coordinates': (-79.35677669, 43.6529262)}"
-12536,3380,GO-20189028871,THEFT UNDER - BICYCLE,2018-09-02T00:00:00,2018,September,Sunday,2,245,13,2018-09-02T00:00:00,2018,September,Sunday,2,245,13,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,TCX2,RC,9,BLU,800.0,STOLEN,12510,"{'type': 'Point', 'coordinates': (-79.37646324, 43.64578351)}"
-12537,3405,GO-20189029363,THEFT UNDER - BICYCLE,2018-09-06T00:00:00,2018,September,Thursday,6,249,14,2018-09-06T00:00:00,2018,September,Thursday,6,249,15,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,OT,0,BLK,1200.0,UNKNOWN,12511,"{'type': 'Point', 'coordinates': (-79.37215317, 43.64913066)}"
-12538,3406,GO-20189029363,THEFT UNDER - BICYCLE,2018-09-06T00:00:00,2018,September,Thursday,6,249,14,2018-09-06T00:00:00,2018,September,Thursday,6,249,15,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,BM,3,BLK,0.0,STOLEN,12512,"{'type': 'Point', 'coordinates': (-79.37215317, 43.64913066)}"
-12539,3410,GO-20189029383,THEFT UNDER - BICYCLE,2018-09-03T00:00:00,2018,September,Monday,3,246,21,2018-09-06T00:00:00,2018,September,Thursday,6,249,18,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,BLK,250.0,STOLEN,12513,"{'type': 'Point', 'coordinates': (-79.36388253000001, 43.64495966)}"
-12540,3411,GO-20189029383,THEFT UNDER - BICYCLE,2018-09-03T00:00:00,2018,September,Monday,3,246,21,2018-09-06T00:00:00,2018,September,Thursday,6,249,18,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,PE,,RG,1,RED,900.0,STOLEN,12514,"{'type': 'Point', 'coordinates': (-79.36388253000001, 43.64495966)}"
-12541,11940,GO-20161330724,THEFT UNDER,2016-07-29T00:00:00,2016,July,Friday,29,211,3,2016-07-29T00:00:00,2016,July,Friday,29,211,6,D41,Toronto,126,Dorset Park (126),"Apartment (Rooming House, Condo)",Apartment,TRIUMPH,,RG,23,BLUWHI,,STOLEN,24960,"{'type': 'Point', 'coordinates': (-79.28320883, 43.77173238)}"
-12542,3413,GO-20189029111,THEFT UNDER - BICYCLE,2018-09-04T00:00:00,2018,September,Tuesday,4,247,20,2018-09-04T00:00:00,2018,September,Tuesday,4,247,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,POMPETAMINE,OT,1,BLK,1000.0,STOLEN,12515,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-12543,3418,GO-20189029111,THEFT UNDER - BICYCLE,2018-09-04T00:00:00,2018,September,Tuesday,4,247,20,2018-09-04T00:00:00,2018,September,Tuesday,4,247,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ONE,OT,1,,1000.0,STOLEN,12516,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-12544,4160,GO-2019663997,B&E,2019-03-18T00:00:00,2019,March,Monday,18,77,0,2019-04-12T00:00:00,2019,April,Friday,12,102,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CERVELO,52,OT,0,,6000.0,STOLEN,12517,"{'type': 'Point', 'coordinates': (-79.38143561, 43.64291214)}"
-12545,4163,GO-20199011738,THEFT UNDER - BICYCLE,2019-04-10T00:00:00,2019,April,Wednesday,10,100,1,2019-04-13T00:00:00,2019,April,Saturday,13,103,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,CXGR 2018,OT,24,BLK,1836.0,STOLEN,12518,"{'type': 'Point', 'coordinates': (-79.39153656, 43.64758619)}"
-12546,6146,GO-20209012551,THEFT UNDER,2020-05-01T00:00:00,2020,May,Friday,1,122,20,2020-05-05T00:00:00,2020,May,Tuesday,5,126,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,KO,,RG,18,BLU,1200.0,STOLEN,12519,"{'type': 'Point', 'coordinates': (-79.38065193, 43.64100385)}"
-12547,4165,GO-2019675257,THEFT UNDER,2019-02-09T00:00:00,2019,February,Saturday,9,40,19,2019-04-15T00:00:00,2019,April,Monday,15,105,10,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KONA,CINDER CONE,MT,21,BLU,,STOLEN,12520,"{'type': 'Point', 'coordinates': (-79.35482206, 43.65337232)}"
-12548,862,GO-20179010204,THEFT UNDER - BICYCLE,2017-07-14T00:00:00,2017,July,Friday,14,195,18,2017-07-14T00:00:00,2017,July,Friday,14,195,18,D14,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,OT,,RG,21,BLK,300.0,STOLEN,12521,"{'type': 'Point', 'coordinates': (-79.39553097, 43.64673969)}"
-12549,23386,GO-20142087190,THEFT UNDER,2014-05-15T00:00:00,2014,May,Thursday,15,135,8,2014-05-18T00:00:00,2014,May,Sunday,18,138,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,LI,VALETTA,EL,1,BLK,1600.0,STOLEN,12522,"{'type': 'Point', 'coordinates': (-79.37760867, 43.64852311)}"
-12550,23388,GO-20149003766,THEFT UNDER,2014-05-27T00:00:00,2014,May,Tuesday,27,147,7,2014-06-02T00:00:00,2014,June,Monday,2,153,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,TRAFFIC,MT,18,GRN,600.0,STOLEN,12523,"{'type': 'Point', 'coordinates': (-79.38063454, 43.65577409)}"
-12551,23389,GO-20142202784,THEFT UNDER,2014-05-09T00:00:00,2014,May,Friday,9,129,17,2014-06-02T00:00:00,2014,June,Monday,2,153,9,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,MOUNTAIN,MT,0,BLK,,STOLEN,12524,"{'type': 'Point', 'coordinates': (-79.38548616, 43.65612775)}"
-12552,24784,GO-20149003990,THEFT UNDER,2014-06-10T00:00:00,2014,June,Tuesday,10,161,18,2014-06-11T00:00:00,2014,June,Wednesday,11,162,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,8,BLU,550.0,STOLEN,12525,"{'type': 'Point', 'coordinates': (-79.38808613, 43.66653345)}"
-12553,6155,GO-20209012633,THEFT UNDER,2020-05-03T00:00:00,2020,May,Sunday,3,124,13,2020-05-07T00:00:00,2020,May,Thursday,7,128,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,Z85,RC,10,BLK,2500.0,STOLEN,12526,"{'type': 'Point', 'coordinates': (-79.38314772, 43.64033919)}"
-12554,24786,GO-20142282088,THEFT UNDER,2014-06-09T00:00:00,2014,June,Monday,9,160,12,2014-06-13T00:00:00,2014,June,Friday,13,164,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MOUNTAIN,UNK,MT,18,BLK,300.0,STOLEN,12527,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-12555,4181,GO-2019697574,THEFT UNDER,2019-04-17T00:00:00,2019,April,Wednesday,17,107,22,2019-04-19T00:00:00,2019,April,Friday,19,109,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BRODIE,ROAM,TO,13,BLK,1100.0,STOLEN,12528,"{'type': 'Point', 'coordinates': (-79.39281928, 43.64732006)}"
-12556,24788,GO-20142294533,THEFT UNDER,2014-06-14T00:00:00,2014,June,Saturday,14,165,15,2014-06-15T00:00:00,2014,June,Sunday,15,166,9,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,ARIEL,OT,21,WHI,1000.0,STOLEN,12529,"{'type': 'Point', 'coordinates': (-79.38618236, 43.65775862)}"
-12557,4255,GO-2019833155,PROPERTY - FOUND,2019-05-08T00:00:00,2019,May,Wednesday,8,128,8,2019-05-08T00:00:00,2019,May,Wednesday,8,128,8,D14,Toronto,77,Waterfront Communities-The Island (77),Homeless Shelter / Mission,Other,OTHER,MOVELO,BM,1,RED,,UNKNOWN,12546,"{'type': 'Point', 'coordinates': (-79.39960983, 43.63648329)}"
-12558,866,GO-20179010237,THEFT UNDER,2017-07-14T00:00:00,2017,July,Friday,14,195,16,2017-07-14T00:00:00,2017,July,Friday,14,195,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,BI,,RC,12,GRY,0.0,STOLEN,12531,"{'type': 'Point', 'coordinates': (-79.38091602, 43.64168463)}"
-12559,7359,GO-20209024560,THEFT UNDER,2020-09-25T00:00:00,2020,September,Friday,25,269,17,2020-09-25T00:00:00,2020,September,Friday,25,269,20,D14,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,2015 GARNEAU AX,RG,18,BLK,1500.0,STOLEN,12532,"{'type': 'Point', 'coordinates': (-79.39820731, 43.64329925)}"
-12560,4184,GO-20199012470,THEFT UNDER - BICYCLE,2018-12-01T00:00:00,2018,December,Saturday,1,335,20,2019-04-19T00:00:00,2019,April,Friday,19,109,21,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,MA,,MT,21,BLK,2000.0,STOLEN,12533,"{'type': 'Point', 'coordinates': (-79.36183585, 43.64956942)}"
-12561,7376,GO-20209024767,THEFT UNDER,2020-08-14T00:00:00,2020,August,Friday,14,227,12,2020-09-28T00:00:00,2020,September,Monday,28,272,14,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,SIRRUS MEN SS,TO,1,BLK,599.0,STOLEN,12534,"{'type': 'Point', 'coordinates': (-79.395007, 43.64546954)}"
-12562,880,GO-20179010355,THEFT UNDER,2017-07-16T00:00:00,2017,July,Sunday,16,197,20,2017-07-16T00:00:00,2017,July,Sunday,16,197,22,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,LIV ROV 2,MT,27,BLK,1200.0,STOLEN,12535,"{'type': 'Point', 'coordinates': (-79.37142509, 43.64944981)}"
-12563,6185,GO-20209013104,THEFT UNDER,2020-05-13T00:00:00,2020,May,Wednesday,13,134,14,2020-05-14T00:00:00,2020,May,Thursday,14,135,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,DB,EDGEWOOD,RG,21,LBL,350.0,STOLEN,12536,"{'type': 'Point', 'coordinates': (-79.39388892, 43.64273773)}"
-12564,4207,GO-20199013317,THEFT UNDER,2019-04-25T00:00:00,2019,April,Thursday,25,115,3,2019-04-28T00:00:00,2019,April,Sunday,28,118,7,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,5,BRN,0.0,STOLEN,12537,"{'type': 'Point', 'coordinates': (-79.36278316, 43.64850402)}"
-12565,17835,GO-20189019367,THEFT UNDER,2018-06-19T00:00:00,2018,June,Tuesday,19,170,1,2018-06-19T00:00:00,2018,June,Tuesday,19,170,17,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,CA,ACCESSORIES,RC,21,,300.0,STOLEN,15002,"{'type': 'Point', 'coordinates': (-79.39875925, 43.6493456)}"
-12566,7399,GO-20209025226,THEFT UNDER,2020-10-02T00:00:00,2020,October,Friday,2,276,9,2020-10-02T00:00:00,2020,October,Friday,2,276,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,24,GRN,700.0,STOLEN,12538,"{'type': 'Point', 'coordinates': (-79.39184935, 43.63765238)}"
-12567,4221,GO-20199013580,THEFT UNDER,2019-04-30T00:00:00,2019,April,Tuesday,30,120,21,2019-05-01T00:00:00,2019,May,Wednesday,1,121,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RG,1,WHI,300.0,STOLEN,12539,"{'type': 'Point', 'coordinates': (-79.39281928, 43.64732006)}"
-12568,24789,GO-20149004153,THEFT UNDER,2014-05-30T00:00:00,2014,May,Friday,30,150,8,2014-06-17T00:00:00,2014,June,Tuesday,17,168,8,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,CC,700C,OT,18,BLU,,STOLEN,12540,"{'type': 'Point', 'coordinates': (-79.37878196, 43.64896093)}"
-12569,4234,GO-20199013979,B&E,2019-03-05T00:00:00,2019,March,Tuesday,5,64,12,2019-05-05T00:00:00,2019,May,Sunday,5,125,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,MA,RAVENNA,RC,8,BLK,780.0,STOLEN,12541,"{'type': 'Point', 'coordinates': (-79.40306565, 43.64488902)}"
-12570,4237,GO-20199014030,THEFT UNDER,2019-04-28T00:00:00,2019,April,Sunday,28,118,17,2019-05-06T00:00:00,2019,May,Monday,6,126,8,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,DB,MX27.5R,MT,7,BLU,500.0,STOLEN,12542,"{'type': 'Point', 'coordinates': (-79.39048611, 43.645008190000006)}"
-12571,4247,GO-20199014241,THEFT UNDER - BICYCLE,2019-05-07T00:00:00,2019,May,Tuesday,7,127,17,2019-05-07T00:00:00,2019,May,Tuesday,7,127,17,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RG,1,BLK,0.0,STOLEN,12543,"{'type': 'Point', 'coordinates': (-79.40137395, 43.64770851)}"
-12572,4248,GO-20199014260,THEFT UNDER,2019-05-07T00:00:00,2019,May,Tuesday,7,127,23,2019-05-08T00:00:00,2019,May,Wednesday,8,128,0,D52,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,SC,SCHWINN,BM,3,RED,0.0,STOLEN,12544,"{'type': 'Point', 'coordinates': (-79.3932382, 43.64839265)}"
-12573,4254,GO-2019833155,PROPERTY - FOUND,2019-05-08T00:00:00,2019,May,Wednesday,8,128,8,2019-05-08T00:00:00,2019,May,Wednesday,8,128,8,D14,Toronto,77,Waterfront Communities-The Island (77),Homeless Shelter / Mission,Other,OTHER,AVIGO,BM,1,GRN,,UNKNOWN,12545,"{'type': 'Point', 'coordinates': (-79.39960983, 43.63648329)}"
-12574,4261,GO-2019842069,THEFT UNDER,2019-04-21T00:00:00,2019,April,Sunday,21,111,12,2019-05-09T00:00:00,2019,May,Thursday,9,129,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,MARINONI,PISTA,OT,1,BLKSIL,2000.0,STOLEN,12547,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-12575,4265,GO-20199014694,THEFT UNDER,2019-05-08T00:00:00,2019,May,Wednesday,8,128,18,2019-05-11T00:00:00,2019,May,Saturday,11,131,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,SUPERCYCLE,MT,18,ONG,110.0,STOLEN,12548,"{'type': 'Point', 'coordinates': (-79.388883, 43.64041361)}"
-12576,4283,GO-20199015187,THEFT UNDER,2019-01-01T00:00:00,2019,January,Tuesday,1,1,19,2019-05-15T00:00:00,2019,May,Wednesday,15,135,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,20,GRY,800.0,STOLEN,12549,"{'type': 'Point', 'coordinates': (-79.39388892, 43.64273773)}"
-12577,4286,GO-20199015288,THEFT UNDER,2019-05-16T00:00:00,2019,May,Thursday,16,136,18,2019-05-16T00:00:00,2019,May,Thursday,16,136,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,ROCKHOPPER,MT,18,DGR,500.0,STOLEN,12550,"{'type': 'Point', 'coordinates': (-79.38143561, 43.64291214)}"
-12578,4311,GO-2019914315,THEFT UNDER,2019-05-19T00:00:00,2019,May,Sunday,19,139,15,2019-05-19T00:00:00,2019,May,Sunday,19,139,17,D52,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,TREK,,OT,7,SILLBL,510.0,STOLEN,12551,"{'type': 'Point', 'coordinates': (-79.38914103, 43.64945651)}"
-12579,4345,GO-20199016265,THEFT UNDER - BICYCLE,2019-05-23T00:00:00,2019,May,Thursday,23,143,23,2019-05-25T00:00:00,2019,May,Saturday,25,145,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,21,RED,500.0,STOLEN,12552,"{'type': 'Point', 'coordinates': (-79.388883, 43.64041361)}"
-12580,4347,GO-2019956862,THEFT UNDER - BICYCLE,2019-05-25T00:00:00,2019,May,Saturday,25,145,17,2019-05-26T00:00:00,2019,May,Sunday,26,146,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,RAPID,OT,24,SIL,1200.0,STOLEN,12553,"{'type': 'Point', 'coordinates': (-79.38973372, 43.6466028)}"
-12581,4348,GO-20199016336,THEFT UNDER,2019-05-26T00:00:00,2019,May,Sunday,26,146,1,2019-05-26T00:00:00,2019,May,Sunday,26,146,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,FAIRFAX SC1,RG,18,BLK,785.0,STOLEN,12554,"{'type': 'Point', 'coordinates': (-79.38396859, 43.64239001)}"
-12582,4354,GO-20199016408,THEFT UNDER - BICYCLE,2019-05-18T00:00:00,2019,May,Saturday,18,138,19,2019-05-27T00:00:00,2019,May,Monday,27,147,9,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RC,1,BLK,500.0,STOLEN,12555,"{'type': 'Point', 'coordinates': (-79.39924205, 43.63909783)}"
-12583,4387,GO-2019999079,B&E,2019-05-30T00:00:00,2019,May,Thursday,30,150,6,2019-05-31T00:00:00,2019,May,Friday,31,151,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OTHER,T150,RC,20,WHI,1000.0,STOLEN,12556,"{'type': 'Point', 'coordinates': (-79.39558819, 43.63994429)}"
-12584,6188,GO-20209013166,B&E,2020-05-15T00:00:00,2020,May,Friday,15,136,1,2020-05-15T00:00:00,2020,May,Friday,15,136,16,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,RA,FURLEY,RC,1,BLK,1100.0,STOLEN,12557,"{'type': 'Point', 'coordinates': (-79.39795271, 43.63704773)}"
-12585,884,GO-20179010366,THEFT UNDER - BICYCLE,2017-07-16T00:00:00,2017,July,Sunday,16,197,18,2017-07-17T00:00:00,2017,July,Monday,17,198,10,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,METRIX,TO,27,WHI,1500.0,STOLEN,12558,"{'type': 'Point', 'coordinates': (-79.35606395, 43.65373791)}"
-12586,4390,GO-20199017051,THEFT UNDER,2019-05-25T00:00:00,2019,May,Saturday,25,145,12,2019-05-31T00:00:00,2019,May,Friday,31,151,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE,RG,21,GRY,488.0,STOLEN,12559,"{'type': 'Point', 'coordinates': (-79.39558819, 43.63994429)}"
-12587,4410,GO-20199017437,THEFT UNDER,2019-05-27T00:00:00,2019,May,Monday,27,147,19,2019-06-04T00:00:00,2019,June,Tuesday,4,155,20,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GT,,MT,21,BLK,1000.0,STOLEN,12560,"{'type': 'Point', 'coordinates': (-79.35840973, 43.65001391)}"
-12588,4411,GO-20199017437,THEFT UNDER,2019-05-27T00:00:00,2019,May,Monday,27,147,19,2019-06-04T00:00:00,2019,June,Tuesday,4,155,20,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NO,,MT,21,WHI,300.0,STOLEN,12561,"{'type': 'Point', 'coordinates': (-79.35840973, 43.65001391)}"
-12589,4433,GO-20191057891,B&E,2019-05-20T00:00:00,2019,May,Monday,20,140,16,2019-06-09T00:00:00,2019,June,Sunday,9,160,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OTHER,10 SPEED,RC,10,BLKWHI,700.0,STOLEN,12562,"{'type': 'Point', 'coordinates': (-79.39835558, 43.64685172)}"
-12590,4437,GO-20199017910,THEFT UNDER,2019-06-08T00:00:00,2019,June,Saturday,8,159,12,2019-06-09T00:00:00,2019,June,Sunday,9,160,1,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MA,PALISADES TRAIL,MT,21,BLK,150.0,STOLEN,12563,"{'type': 'Point', 'coordinates': (-79.3883628, 43.64757108)}"
-12591,4446,GO-20199018001,THEFT UNDER,2019-05-29T00:00:00,2019,May,Wednesday,29,149,9,2019-06-10T00:00:00,2019,June,Monday,10,161,10,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,RM,ELEMENT,MT,22,BLU,3600.0,STOLEN,12564,"{'type': 'Point', 'coordinates': (-79.35677669, 43.6529262)}"
-12592,4456,GO-20199018172,THEFT UNDER,2019-06-09T00:00:00,2019,June,Sunday,9,160,11,2019-06-11T00:00:00,2019,June,Tuesday,11,162,11,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,DESIRE,RG,8,RED,0.0,STOLEN,12565,"{'type': 'Point', 'coordinates': (-79.35840973, 43.65001391)}"
-12593,4457,GO-20199018195,THEFT UNDER,2019-05-20T00:00:00,2019,May,Monday,20,140,13,2019-06-11T00:00:00,2019,June,Tuesday,11,162,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,KO,,TO,9,LGR,1000.0,RECOVERED,12566,"{'type': 'Point', 'coordinates': (-79.38946509, 43.64593813)}"
-12594,4466,GO-20199018288,THEFT UNDER,2019-06-02T00:00:00,2019,June,Sunday,2,153,19,2019-06-12T00:00:00,2019,June,Wednesday,12,163,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,8.3 DS,MT,24,BLK,840.0,STOLEN,12567,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-12595,4473,GO-20191075601,THEFT UNDER - BICYCLE,2019-06-11T00:00:00,2019,June,Tuesday,11,162,11,2019-06-13T00:00:00,2019,June,Thursday,13,164,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,,MT,12,MUL,800.0,STOLEN,12568,"{'type': 'Point', 'coordinates': (-79.3881121, 43.64696458)}"
-12596,4486,GO-20199018583,THEFT UNDER,2019-05-29T00:00:00,2019,May,Wednesday,29,149,13,2019-06-14T00:00:00,2019,June,Friday,14,165,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,TRANSFER 10,RG,21,BLK,0.0,STOLEN,12569,"{'type': 'Point', 'coordinates': (-79.38143561, 43.64291214)}"
-12597,13243,GO-20199012725,THEFT UNDER,2019-04-22T00:00:00,2019,April,Monday,22,112,21,2019-04-23T00:00:00,2019,April,Tuesday,23,113,1,D52,Toronto,78,Kensington-Chinatown (78),Bar / Restaurant,Commercial,SC,GTX 700C,TO,21,BLK,550.0,STOLEN,15031,"{'type': 'Point', 'coordinates': (-79.39801041, 43.65294362)}"
-12598,4523,GO-20199019050,THEFT UNDER,2019-06-18T00:00:00,2019,June,Tuesday,18,169,5,2019-06-18T00:00:00,2019,June,Tuesday,18,169,8,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,3,BLK,300.0,STOLEN,12570,"{'type': 'Point', 'coordinates': (-79.38552201, 43.64605338)}"
-12599,4533,GO-20199019144,THEFT UNDER,2019-06-14T00:00:00,2019,June,Friday,14,165,23,2019-06-18T00:00:00,2019,June,Tuesday,18,169,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,PLUG,RG,1,WHI,700.0,STOLEN,12571,"{'type': 'Point', 'coordinates': (-79.40060972, 43.63883803)}"
-12600,4565,GO-20199019476,THEFT UNDER,2019-06-20T00:00:00,2019,June,Thursday,20,171,18,2019-06-21T00:00:00,2019,June,Friday,21,172,1,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,SOLARIS,RG,18,PNK,90.0,STOLEN,12572,"{'type': 'Point', 'coordinates': (-79.3883628, 43.64757108)}"
-12601,4572,GO-20199019514,THEFT UNDER,2019-06-21T00:00:00,2019,June,Friday,21,172,16,2019-06-21T00:00:00,2019,June,Friday,21,172,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,2019 STORM 2,MT,21,BLK,900.0,STOLEN,12573,"{'type': 'Point', 'coordinates': (-79.38338679, 43.64508285)}"
-12602,4576,GO-20199019564,THEFT UNDER,2019-06-21T00:00:00,2019,June,Friday,21,172,12,2019-06-21T00:00:00,2019,June,Friday,21,172,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,TR,,RC,20,BLU,1000.0,STOLEN,12574,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-12603,4578,GO-20199019568,THEFT UNDER,2019-06-22T00:00:00,2019,June,Saturday,22,173,20,2019-06-22T00:00:00,2019,June,Saturday,22,173,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,21,,800.0,STOLEN,12575,"{'type': 'Point', 'coordinates': (-79.38363997, 43.64159187)}"
-12604,4581,GO-20199019646,THEFT UNDER,2019-06-22T00:00:00,2019,June,Saturday,22,173,1,2019-06-22T00:00:00,2019,June,Saturday,22,173,2,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,FX 7.3,RG,9,BLK,750.0,STOLEN,12576,"{'type': 'Point', 'coordinates': (-79.38914103, 43.64945651)}"
-12605,4584,GO-20199019727,THEFT UNDER,2019-06-01T00:00:00,2019,June,Saturday,1,152,19,2019-06-22T00:00:00,2019,June,Saturday,22,173,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NO,RYDE 26,MT,1,BLK,700.0,STOLEN,12577,"{'type': 'Point', 'coordinates': (-79.38363997, 43.64159187)}"
-12606,4585,GO-20199019735,THEFT UNDER,2019-06-22T00:00:00,2019,June,Saturday,22,173,17,2019-06-22T00:00:00,2019,June,Saturday,22,173,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KH,TC-150,RG,15,GRY,459.0,STOLEN,12578,"{'type': 'Point', 'coordinates': (-79.39553097, 43.64673969)}"
-12607,4594,GO-20199019937,THEFT UNDER - BICYCLE,2019-06-21T00:00:00,2019,June,Friday,21,172,20,2019-06-24T00:00:00,2019,June,Monday,24,175,16,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,MOUNTAIN BIKE,MT,25,BLK,235.0,STOLEN,12579,"{'type': 'Point', 'coordinates': (-79.39811145, 43.64623146000001)}"
-12608,4634,GO-20191186580,THEFT UNDER - BICYCLE,2019-06-26T00:00:00,2019,June,Wednesday,26,177,5,2019-06-28T00:00:00,2019,June,Friday,28,179,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BRODIE,,OT,21,BLK,1500.0,STOLEN,12580,"{'type': 'Point', 'coordinates': (-79.38091602, 43.64168463)}"
-12609,4639,GO-20199020510,THEFT UNDER,2019-06-14T00:00:00,2019,June,Friday,14,165,0,2019-06-29T00:00:00,2019,June,Saturday,29,180,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,ROLL -LOW ENTRY,MT,10,LBL,1000.0,STOLEN,12581,"{'type': 'Point', 'coordinates': (-79.39924205, 43.63909783)}"
-12610,4647,GO-20199020612,THEFT UNDER,2019-06-30T00:00:00,2019,June,Sunday,30,181,10,2019-06-30T00:00:00,2019,June,Sunday,30,181,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,TARMAC (ROUTE),OT,16,SIL,3500.0,STOLEN,12582,"{'type': 'Point', 'coordinates': (-79.37933296, 43.64221959)}"
-12611,4671,GO-20199021031,B&E,2019-06-30T00:00:00,2019,June,Sunday,30,181,11,2019-07-04T00:00:00,2019,July,Thursday,4,185,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,,RC,20,RED,1582.0,STOLEN,12583,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-12612,4674,GO-20199021075,ARR/WARR EXECUTED NO ADDED CHG,2019-06-10T00:00:00,2019,June,Monday,10,161,1,2019-07-05T00:00:00,2019,July,Friday,5,186,11,D52,Toronto,77,Waterfront Communities-The Island (77),Go Station,Transit,OT,CROSSTRAIL,OT,24,BLK,1000.0,STOLEN,12584,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-12613,4981,GO-20199025123,B&E,2019-08-04T00:00:00,2019,August,Sunday,4,216,17,2019-08-06T00:00:00,2019,August,Tuesday,6,218,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GT,VANTARA,RG,24,BLK,600.0,STOLEN,12621,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-12614,4693,GO-20191233733,DRUG - POSS METH (SCHD I),2019-06-11T00:00:00,2019,June,Tuesday,11,162,6,2019-07-03T00:00:00,2019,July,Wednesday,3,184,6,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,DIVERGE,RC,16,,,RECOVERED,12585,"{'type': 'Point', 'coordinates': (-79.40008347, 43.64718548)}"
-12615,4694,GO-20199021367,THEFT UNDER,2019-07-07T00:00:00,2019,July,Sunday,7,188,2,2019-07-07T00:00:00,2019,July,Sunday,7,188,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,,OT,24,BLU,800.0,STOLEN,12586,"{'type': 'Point', 'coordinates': (-79.37933296, 43.64221959)}"
-12616,4711,GO-20199021532,THEFT UNDER,2019-07-06T00:00:00,2019,July,Saturday,6,187,17,2019-07-08T00:00:00,2019,July,Monday,8,189,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,STUMPJUMPER,MT,27,WHI,2500.0,STOLEN,12587,"{'type': 'Point', 'coordinates': (-79.37933296, 43.64221959)}"
-12617,4713,GO-20199021586,THEFT UNDER,2019-07-06T00:00:00,2019,July,Saturday,6,187,0,2019-07-09T00:00:00,2019,July,Tuesday,9,190,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,DIADORA ORBITA,MT,25,BLU,224.0,STOLEN,12588,"{'type': 'Point', 'coordinates': (-79.39124574, 43.64342012)}"
-12618,4714,GO-20199020612,THEFT UNDER,2019-06-30T00:00:00,2019,June,Sunday,30,181,10,2019-06-30T00:00:00,2019,June,Sunday,30,181,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,TARMAC,RC,11,GRY,3000.0,STOLEN,12589,"{'type': 'Point', 'coordinates': (-79.37933296, 43.64221959)}"
-12619,4719,GO-20199021625,THEFT UNDER,2019-07-09T00:00:00,2019,July,Tuesday,9,190,14,2019-07-09T00:00:00,2019,July,Tuesday,9,190,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ACE,RC,11,WHI,2500.0,STOLEN,12590,"{'type': 'Point', 'coordinates': (-79.39281928, 43.64732006)}"
-12620,4720,GO-20199021608,THEFT UNDER - BICYCLE,2019-07-09T00:00:00,2019,July,Tuesday,9,190,11,2019-07-09T00:00:00,2019,July,Tuesday,9,190,14,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,UNO RISER,RC,1,BLK,800.0,STOLEN,12591,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-12621,4724,GO-20191287270,B&E,2019-07-06T00:00:00,2019,July,Saturday,6,187,3,2019-07-10T00:00:00,2019,July,Wednesday,10,191,12,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NORCO,,MT,21,BLK,700.0,STOLEN,12592,"{'type': 'Point', 'coordinates': (-79.37302563, 43.64248042)}"
-12622,4728,GO-20191273121,THEFT UNDER - BICYCLE,2019-07-05T00:00:00,2019,July,Friday,5,186,17,2019-07-08T00:00:00,2019,July,Monday,8,189,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN,,EL,1,BLK,1500.0,STOLEN,12593,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-12623,4761,GO-20199022081,THEFT UNDER,2019-07-11T00:00:00,2019,July,Thursday,11,192,11,2019-07-12T00:00:00,2019,July,Friday,12,193,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,OT,,OT,1,BLK,200.0,STOLEN,12594,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-12624,4765,GO-20199022175,THEFT UNDER,2019-07-06T00:00:00,2019,July,Saturday,6,187,18,2019-07-13T00:00:00,2019,July,Saturday,13,194,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,URBAN 5.0,RG,8,BLK,2000.0,STOLEN,12595,"{'type': 'Point', 'coordinates': (-79.37933296, 43.64221959)}"
-12625,4785,GO-20199022526,THEFT UNDER,2019-07-14T00:00:00,2019,July,Sunday,14,195,15,2019-07-16T00:00:00,2019,July,Tuesday,16,197,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,RAVENIO 20.,RC,18,BLK,1300.0,STOLEN,12596,"{'type': 'Point', 'coordinates': (-79.38542345, 43.63902804)}"
-12626,4802,GO-20191353801,B&E W'INTENT,2019-07-05T00:00:00,2019,July,Friday,5,186,18,2019-07-19T00:00:00,2019,July,Friday,19,200,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CANNONDALE,,RC,0,DBL,,STOLEN,12597,"{'type': 'Point', 'coordinates': (-79.40306565, 43.64488902)}"
-12627,4803,GO-20191355268,THEFT OF EBIKE OVER $5000,2019-07-19T00:00:00,2019,July,Friday,19,200,8,2019-07-19T00:00:00,2019,July,Friday,19,200,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,TS1200,EL,3,RED,5500.0,STOLEN,12598,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-12628,4841,GO-20199023289,THEFT UNDER,2019-07-22T00:00:00,2019,July,Monday,22,203,17,2019-07-22T00:00:00,2019,July,Monday,22,203,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,3,BLK,500.0,STOLEN,12599,"{'type': 'Point', 'coordinates': (-79.3979648, 43.63940267)}"
-12629,13371,GO-20169004202,THEFT UNDER,2016-05-03T00:00:00,2016,May,Tuesday,3,124,16,2016-05-05T00:00:00,2016,May,Thursday,5,126,16,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,30,BLU,300.0,STOLEN,15047,"{'type': 'Point', 'coordinates': (-79.3974349, 43.65650586)}"
-12630,4849,GO-20199023408,THEFT UNDER - BICYCLE,2019-07-20T00:00:00,2019,July,Saturday,20,201,20,2019-07-23T00:00:00,2019,July,Tuesday,23,204,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,THE HOPPER,RG,1,TRQ,400.0,STOLEN,12600,"{'type': 'Point', 'coordinates': (-79.3932382, 43.64839265)}"
-12631,4854,GO-20199023475,THEFT UNDER,2019-07-21T00:00:00,2019,July,Sunday,21,202,19,2019-07-24T00:00:00,2019,July,Wednesday,24,205,0,D52,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,GF,TARPON,MT,21,RED,120.0,STOLEN,12601,"{'type': 'Point', 'coordinates': (-79.39025369, 43.64785592)}"
-12632,4860,GO-20191390950,THEFT UNDER - BICYCLE,2019-07-20T00:00:00,2019,July,Saturday,20,201,8,2019-07-24T00:00:00,2019,July,Wednesday,24,205,13,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,ROVE,OT,24,BLKONG,850.0,STOLEN,12602,"{'type': 'Point', 'coordinates': (-79.35677669, 43.6529262)}"
-12633,4864,GO-20199022526,THEFT UNDER,2019-07-14T00:00:00,2019,July,Sunday,14,195,15,2019-07-16T00:00:00,2019,July,Tuesday,16,197,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,,RC,18,BLK,3300.0,STOLEN,12603,"{'type': 'Point', 'coordinates': (-79.38542345, 43.63902804)}"
-12634,4875,GO-20199023641,THEFT UNDER,2019-07-24T00:00:00,2019,July,Wednesday,24,205,17,2019-07-25T00:00:00,2019,July,Thursday,25,206,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,GALLANT NO. 1 M,RG,30,DGR,840.0,STOLEN,12604,"{'type': 'Point', 'coordinates': (-79.39592984, 43.64780696)}"
-12635,4881,GO-20199023734,THEFT UNDER,2019-07-23T00:00:00,2019,July,Tuesday,23,204,17,2019-07-25T00:00:00,2019,July,Thursday,25,206,20,D52,Toronto,77,Waterfront Communities-The Island (77),Go Station,Transit,OT,EAST SIDE,RG,1,GRY,500.0,STOLEN,12605,"{'type': 'Point', 'coordinates': (-79.38243116, 43.64529171000001)}"
-12636,4883,GO-20199023777,THEFT UNDER,2019-07-25T00:00:00,2019,July,Thursday,25,206,7,2019-07-25T00:00:00,2019,July,Thursday,25,206,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,15,BLK,700.0,STOLEN,12606,"{'type': 'Point', 'coordinates': (-79.37933296, 43.64221959)}"
-12637,5021,GO-20199025626,THEFT UNDER,2019-08-09T00:00:00,2019,August,Friday,9,221,5,2019-08-10T00:00:00,2019,August,Saturday,10,222,11,D52,Toronto,77,Waterfront Communities-The Island (77),Go Station,Transit,SU,VICE,MT,18,SIL,120.0,STOLEN,12630,"{'type': 'Point', 'coordinates': (-79.38477277, 43.64427915)}"
-12638,4893,GO-20199023857,THEFT UNDER,2019-07-12T00:00:00,2019,July,Friday,12,193,14,2019-07-26T00:00:00,2019,July,Friday,26,207,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,17 TCR ADVANCED,RC,18,LGR,2699.0,STOLEN,12607,"{'type': 'Point', 'coordinates': (-79.38973372, 43.6466028)}"
-12639,4902,GO-20199024066,THEFT UNDER - BICYCLE,2019-07-27T00:00:00,2019,July,Saturday,27,208,0,2019-07-28T00:00:00,2019,July,Sunday,28,209,0,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,KO,,RG,1,BLK,300.0,STOLEN,12608,"{'type': 'Point', 'coordinates': (-79.35482206, 43.65337232)}"
-12640,4908,GO-20199024098,THEFT UNDER,2019-07-27T00:00:00,2019,July,Saturday,27,208,21,2019-07-28T00:00:00,2019,July,Sunday,28,209,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,3900,MT,24,GRY,200.0,STOLEN,12609,"{'type': 'Point', 'coordinates': (-79.38684132, 43.64925417)}"
-12641,4909,GO-20199024119,THEFT UNDER - BICYCLE,2019-07-28T00:00:00,2019,July,Sunday,28,209,14,2019-07-28T00:00:00,2019,July,Sunday,28,209,14,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,12,WHI,162.0,STOLEN,12610,"{'type': 'Point', 'coordinates': (-79.39833497, 43.64030158)}"
-12642,4910,GO-20199024129,THEFT UNDER - BICYCLE,2019-07-27T00:00:00,2019,July,Saturday,27,208,22,2019-07-28T00:00:00,2019,July,Sunday,28,209,15,D51,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,GI,2019 ALIGHT 2,RG,24,DBL,650.0,STOLEN,12611,"{'type': 'Point', 'coordinates': (-79.36538259, 43.64518196)}"
-12643,4911,GO-20199024135,THEFT UNDER,2019-07-27T00:00:00,2019,July,Saturday,27,208,11,2019-07-28T00:00:00,2019,July,Sunday,28,209,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,ES4 KICKSCOOTER,EL,2,BLK,1100.0,STOLEN,12612,"{'type': 'Point', 'coordinates': (-79.39204821, 43.64885072)}"
-12644,4914,GO-20199024182,THEFT UNDER - BICYCLE,2019-07-27T00:00:00,2019,July,Saturday,27,208,23,2019-07-28T00:00:00,2019,July,Sunday,28,209,22,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,TIPO PISTA,RC,1,BLK,1200.0,STOLEN,12613,"{'type': 'Point', 'coordinates': (-79.3979648, 43.63940267)}"
-12645,12712,GO-20169012900,THEFT UNDER,2016-11-02T00:00:00,2016,November,Wednesday,2,307,15,2016-11-02T00:00:00,2016,November,Wednesday,2,307,16,D14,Toronto,79,University (79),Schools During Supervised Activity,Educational,GT,,BM,15,DGR,500.0,STOLEN,15111,"{'type': 'Point', 'coordinates': (-79.40713565, 43.65840411)}"
-12646,4919,GO-20199024278,THEFT UNDER,2019-07-29T00:00:00,2019,July,Monday,29,210,10,2019-07-29T00:00:00,2019,July,Monday,29,210,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,ST-TROPEZ,RG,21,BLK,600.0,STOLEN,12614,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-12647,4931,GO-20199024359,THEFT UNDER,2019-07-29T00:00:00,2019,July,Monday,29,210,9,2019-07-30T00:00:00,2019,July,Tuesday,30,211,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,"CCM SL 2.0 (19""""",MT,21,BLK,300.0,STOLEN,12615,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-12648,4936,GO-20191423327,THEFT UNDER - BICYCLE,2019-07-28T00:00:00,2019,July,Sunday,28,209,22,2019-07-28T00:00:00,2019,July,Sunday,28,209,23,D52,Toronto,77,Waterfront Communities-The Island (77),Other Passenger Train Station,Transit,OTHER,,TO,21,BLU,500.0,STOLEN,12616,"{'type': 'Point', 'coordinates': (-79.37646324, 43.64578351)}"
-12649,4945,GO-20199024182,THEFT UNDER - BICYCLE,2019-07-27T00:00:00,2019,July,Saturday,27,208,23,2019-07-28T00:00:00,2019,July,Sunday,28,209,22,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,TIP PISTA,RC,1,BLK,1200.0,STOLEN,12617,"{'type': 'Point', 'coordinates': (-79.3979648, 43.63940267)}"
-12650,4954,GO-20199024702,THEFT UNDER,2019-07-29T00:00:00,2019,July,Monday,29,210,18,2019-08-01T00:00:00,2019,August,Thursday,1,213,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,FJ,,RG,1,BLK,500.0,STOLEN,12618,"{'type': 'Point', 'coordinates': (-79.37933296, 43.64221959)}"
-12651,4964,GO-20199024910,THEFT UNDER,2019-08-02T00:00:00,2019,August,Friday,2,214,17,2019-08-05T00:00:00,2019,August,Monday,5,217,11,D51,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,OT,TRAIL X COMP,MT,18,DBL,700.0,STOLEN,12619,"{'type': 'Point', 'coordinates': (-79.36202059, 43.65000495)}"
-12652,4970,GO-20199024978,THEFT UNDER,2019-08-04T00:00:00,2019,August,Sunday,4,216,12,2019-08-05T00:00:00,2019,August,Monday,5,217,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,21,BLU,100.0,STOLEN,12620,"{'type': 'Point', 'coordinates': (-79.38091602, 43.64168463)}"
-12653,2007,GO-2018181008,THEFT UNDER - BICYCLE,2017-11-24T00:00:00,2017,November,Friday,24,328,18,2018-01-29T00:00:00,2018,January,Monday,29,29,13,D52,Toronto,79,University (79),Universities / Colleges,Educational,SCHWINN,,RG,0,BLK,300.0,STOLEN,15112,"{'type': 'Point', 'coordinates': (-79.39676402, 43.66012322)}"
-12654,4987,GO-20199025282,THEFT UNDER,2019-08-07T00:00:00,2019,August,Wednesday,7,219,9,2019-08-07T00:00:00,2019,August,Wednesday,7,219,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,SU,,RG,21,PLE,150.0,STOLEN,12622,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-12655,4990,GO-20199025339,THEFT UNDER,2019-08-07T00:00:00,2019,August,Wednesday,7,219,17,2019-08-08T00:00:00,2019,August,Thursday,8,220,8,D52,Toronto,77,Waterfront Communities-The Island (77),Go Station,Transit,UK,,MT,21,YEL,50.0,STOLEN,12623,"{'type': 'Point', 'coordinates': (-79.38477277, 43.64427915)}"
-12656,4991,GO-20199025342,THEFT UNDER,2019-08-08T00:00:00,2019,August,Thursday,8,220,8,2019-08-08T00:00:00,2019,August,Thursday,8,220,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,18,GRY,0.0,STOLEN,12624,"{'type': 'Point', 'coordinates': (-79.39281928, 43.64732006)}"
-12657,4992,GO-20199025344,THEFT UNDER,2019-08-07T00:00:00,2019,August,Wednesday,7,219,18,2019-08-08T00:00:00,2019,August,Thursday,8,220,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,CROSSTOWN,OT,10,TRQ,150.0,STOLEN,12625,"{'type': 'Point', 'coordinates': (-79.39592984, 43.64780696)}"
-12658,5004,GO-20199025437,THEFT UNDER,2019-08-03T00:00:00,2019,August,Saturday,3,215,23,2019-08-08T00:00:00,2019,August,Thursday,8,220,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,6,BLU,400.0,STOLEN,12626,"{'type': 'Point', 'coordinates': (-79.38143561, 43.64291214)}"
-12659,5006,GO-20199025447,THEFT UNDER - BICYCLE,2019-08-08T00:00:00,2019,August,Thursday,8,220,20,2019-08-08T00:00:00,2019,August,Thursday,8,220,23,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,MT,21,ONG,600.0,STOLEN,12627,"{'type': 'Point', 'coordinates': (-79.395007, 43.64546954)}"
-12660,5007,GO-20199025469,THEFT UNDER - BICYCLE,2019-08-09T00:00:00,2019,August,Friday,9,221,9,2019-08-09T00:00:00,2019,August,Friday,9,221,9,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,,TO,21,YEL,2500.0,STOLEN,12628,"{'type': 'Point', 'coordinates': (-79.3979648, 43.63940267)}"
-12661,5017,GO-20199025603,THEFT UNDER,2019-08-08T00:00:00,2019,August,Thursday,8,220,14,2019-08-10T00:00:00,2019,August,Saturday,10,222,0,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,XC29,MT,18,GRY,399.0,STOLEN,12629,"{'type': 'Point', 'coordinates': (-79.39388892, 43.64273773)}"
-12662,5024,GO-20199025673,THEFT UNDER,2019-07-27T00:00:00,2019,July,Saturday,27,208,15,2019-08-11T00:00:00,2019,August,Sunday,11,223,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,TSX SLR 2,RC,14,,3600.0,STOLEN,12631,"{'type': 'Point', 'coordinates': (-79.37933296, 43.64221959)}"
-12663,5034,GO-20199025744,THEFT UNDER,2019-08-09T00:00:00,2019,August,Friday,9,221,17,2019-08-11T00:00:00,2019,August,Sunday,11,223,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,CATALYST,RG,9,BLK,1500.0,STOLEN,12632,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-12664,5036,GO-20191465566,THEFT UNDER - BICYCLE,2019-07-29T00:00:00,2019,July,Monday,29,210,16,2019-08-03T00:00:00,2019,August,Saturday,3,215,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,SILHOUETTE,RG,9,LBL,1000.0,STOLEN,12633,"{'type': 'Point', 'coordinates': (-79.39558819, 43.63994429)}"
-12665,5043,GO-20199025892,THEFT UNDER,2019-08-10T00:00:00,2019,August,Saturday,10,222,11,2019-08-12T00:00:00,2019,August,Monday,12,224,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,,MT,15,BLK,600.0,STOLEN,12634,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-12666,7410,GO-20209025394,THEFT UNDER,2020-10-03T00:00:00,2020,October,Saturday,3,277,16,2020-10-04T00:00:00,2020,October,Sunday,4,278,10,D51,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,TR,MARLIN 5,MT,21,BLK,1000.0,STOLEN,12635,"{'type': 'Point', 'coordinates': (-79.35688617, 43.65029123)}"
-12667,6191,GO-2020902575,B&E,2020-05-06T00:00:00,2020,May,Wednesday,6,127,20,2020-05-15T00:00:00,2020,May,Friday,15,136,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CANNONDALE,SUPERX ULTEGRA,OT,22,BLK,5500.0,STOLEN,12636,"{'type': 'Point', 'coordinates': (-79.39458503, 43.64442176)}"
-12668,7423,GO-20209025579,THEFT UNDER,2020-09-25T00:00:00,2020,September,Friday,25,269,20,2020-10-06T00:00:00,2020,October,Tuesday,6,280,12,D52,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,UK,,RC,20,GRN,450.0,STOLEN,12637,"{'type': 'Point', 'coordinates': (-79.38143561, 43.64291214)}"
-12669,7746,GO-20149000495,THEFT UNDER,2014-01-12T00:00:00,2014,January,Sunday,12,12,10,2014-01-16T00:00:00,2014,January,Thursday,16,16,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SC,,MT,21,DBL,300.0,STOLEN,12667,"{'type': 'Point', 'coordinates': (-79.39558819, 43.63994429)}"
-12670,6195,GO-2020915124,PROPERTY - FOUND,2020-05-12T00:00:00,2020,May,Tuesday,12,133,19,2020-05-17T00:00:00,2020,May,Sunday,17,138,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NCM,MOSCOW PLUS,EL,1,WHI,,UNKNOWN,12638,"{'type': 'Point', 'coordinates': (-79.39225864, 43.63863312)}"
-12671,7440,GO-20209026073,THEFT UNDER,2020-10-10T00:00:00,2020,October,Saturday,10,284,16,2020-10-10T00:00:00,2020,October,Saturday,10,284,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,NEMESIS 650,MT,24,WHI,1000.0,STOLEN,12639,"{'type': 'Point', 'coordinates': (-79.38143561, 43.64291214)}"
-12672,7441,GO-20209026073,THEFT UNDER,2020-10-10T00:00:00,2020,October,Saturday,10,284,16,2020-10-10T00:00:00,2020,October,Saturday,10,284,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,NEMESIS 650,MT,24,WHI,1000.0,STOLEN,12640,"{'type': 'Point', 'coordinates': (-79.38143561, 43.64291214)}"
-12673,7453,GO-20201942391,B&E,2020-10-13T00:00:00,2020,October,Tuesday,13,287,3,2020-10-13T00:00:00,2020,October,Tuesday,13,287,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OTHER,STROMER,EL,0,,10000.0,STOLEN,12641,"{'type': 'Point', 'coordinates': (-79.40185545, 43.64191381)}"
-12674,7458,GO-20209026316,THEFT UNDER,2020-10-13T00:00:00,2020,October,Tuesday,13,287,16,2020-10-13T00:00:00,2020,October,Tuesday,13,287,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,RM,,MT,24,WHI,1000.0,STOLEN,12642,"{'type': 'Point', 'coordinates': (-79.38275181, 43.64263544000001)}"
-12675,7463,GO-20209026386,THEFT UNDER,2020-10-14T00:00:00,2020,October,Wednesday,14,288,0,2020-10-14T00:00:00,2020,October,Wednesday,14,288,2,D52,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,OT,PACE 350,EL,19,DBL,1700.0,STOLEN,12643,"{'type': 'Point', 'coordinates': (-79.39388892, 43.64273773)}"
-12676,7477,GO-20201942391,B&E,2020-10-13T00:00:00,2020,October,Tuesday,13,287,3,2020-10-13T00:00:00,2020,October,Tuesday,13,287,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GIANT,LIV,RC,21,BLK,3199.0,STOLEN,12644,"{'type': 'Point', 'coordinates': (-79.40185545, 43.64191381)}"
-12677,7490,GO-20209026791,THEFT UNDER,2020-10-16T00:00:00,2020,October,Friday,16,290,18,2020-10-17T00:00:00,2020,October,Saturday,17,291,17,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,21,GRY,450.0,STOLEN,12645,"{'type': 'Point', 'coordinates': (-79.39553097, 43.64673969)}"
-12678,7511,GO-20209026975,THEFT UNDER - BICYCLE,2020-10-17T00:00:00,2020,October,Saturday,17,291,17,2020-10-19T00:00:00,2020,October,Monday,19,293,16,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,TRAIL X3,MT,24,BRN,400.0,STOLEN,12646,"{'type': 'Point', 'coordinates': (-79.37524509, 43.64636121)}"
-12679,7520,GO-20209027132,THEFT UNDER - BICYCLE,2020-10-11T00:00:00,2020,October,Sunday,11,285,3,2020-10-20T00:00:00,2020,October,Tuesday,20,294,23,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SAVONA 650 B,MT,21,GRY,390.0,STOLEN,12647,"{'type': 'Point', 'coordinates': (-79.37146354, 43.64763677)}"
-12680,7531,GO-20202016467,THEFT OF EBIKE UNDER $5000,2020-10-24T00:00:00,2020,October,Saturday,24,298,4,2020-10-24T00:00:00,2020,October,Saturday,24,298,4,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,,EL,1,BLU,3600.0,STOLEN,12648,"{'type': 'Point', 'coordinates': (-79.39175463, 43.64474761000001)}"
-12681,7549,GO-20209027724,THEFT UNDER,2020-10-03T00:00:00,2020,October,Saturday,3,277,16,2020-10-26T00:00:00,2020,October,Monday,26,300,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,CRUX,RG,24,,1800.0,STOLEN,12649,"{'type': 'Point', 'coordinates': (-79.39281928, 43.64732006)}"
-12682,7553,GO-20209027761,ASSAULT WITH WEAPON,2020-10-24T00:00:00,2020,October,Saturday,24,298,12,2020-10-26T00:00:00,2020,October,Monday,26,300,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RC,8,BLK,139.0,STOLEN,12650,"{'type': 'Point', 'coordinates': (-79.39184935, 43.63765238)}"
-12683,7575,GO-20201964330,B&E,2020-10-09T00:00:00,2020,October,Friday,9,283,22,2020-10-16T00:00:00,2020,October,Friday,16,290,14,D51,Toronto,77,Waterfront Communities-The Island (77),Universities / Colleges,Educational,GT,,MT,17,GRN,1050.0,STOLEN,12651,"{'type': 'Point', 'coordinates': (-79.35677669, 43.6529262)}"
-12684,7588,GO-20202092143,B&E,2020-10-01T00:00:00,2020,October,Thursday,1,275,0,2020-11-04T00:00:00,2020,November,Wednesday,4,309,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,HARO,BEASLEY,OT,8,BLK,950.0,STOLEN,12652,"{'type': 'Point', 'coordinates': (-79.39880646, 43.64142779)}"
-12685,7590,GO-20209028568,THEFT UNDER,2020-10-27T00:00:00,2020,October,Tuesday,27,301,8,2020-11-04T00:00:00,2020,November,Wednesday,4,309,11,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,80788,RG,1,WHI,500.0,STOLEN,12653,"{'type': 'Point', 'coordinates': (-79.37646324, 43.64578351)}"
-12686,7612,GO-20209029155,THEFT UNDER,2020-11-09T00:00:00,2020,November,Monday,9,314,20,2020-11-09T00:00:00,2020,November,Monday,9,314,20,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RA,27 1 1/4,RG,10,BLU,75.0,STOLEN,12654,"{'type': 'Point', 'coordinates': (-79.39330422, 43.64134268000001)}"
-12687,7633,GO-20209029557,THEFT UNDER,2020-11-09T00:00:00,2020,November,Monday,9,314,9,2020-11-13T00:00:00,2020,November,Friday,13,318,20,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,FX3,RG,18,,1200.0,STOLEN,12655,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-12688,7634,GO-20209029557,THEFT UNDER,2020-11-09T00:00:00,2020,November,Monday,9,314,9,2020-11-13T00:00:00,2020,November,Friday,13,318,20,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,FATHOM 2,RG,18,GRN,1299.0,STOLEN,12656,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-12689,7636,GO-20209027724,THEFT UNDER,2020-10-03T00:00:00,2020,October,Saturday,3,277,16,2020-10-26T00:00:00,2020,October,Monday,26,300,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RC,10,,,STOLEN,12657,"{'type': 'Point', 'coordinates': (-79.39281928, 43.64732006)}"
-12690,7640,GO-20209029612,THEFT UNDER - BICYCLE,2020-11-14T00:00:00,2020,November,Saturday,14,319,10,2020-11-14T00:00:00,2020,November,Saturday,14,319,16,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,1,WHI,3000.0,STOLEN,12658,"{'type': 'Point', 'coordinates': (-79.39835558, 43.64685172)}"
-12691,7649,GO-20209030196,THEFT UNDER,2020-11-21T00:00:00,2020,November,Saturday,21,326,3,2020-11-21T00:00:00,2020,November,Saturday,21,326,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,520,TO,27,DGR,2000.0,STOLEN,12659,"{'type': 'Point', 'coordinates': (-79.38143561, 43.64291214)}"
-12692,7960,GO-20149003532,THEFT UNDER,2014-05-23T00:00:00,2014,May,Friday,23,143,8,2014-05-23T00:00:00,2014,May,Friday,23,143,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,RM,,MT,27,RED,927.0,STOLEN,12682,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-12693,7672,GO-20209030820,THEFT UNDER,2020-11-17T00:00:00,2020,November,Tuesday,17,322,22,2020-11-28T00:00:00,2020,November,Saturday,28,333,18,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,THE MONO,OT,1,WHI,580.0,STOLEN,12660,"{'type': 'Point', 'coordinates': (-79.35482206, 43.65337232)}"
-12694,7689,GO-20202290727,B&E,2020-12-04T00:00:00,2020,December,Friday,4,339,3,2020-12-04T00:00:00,2020,December,Friday,4,339,16,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,MT,21,BLK,,STOLEN,12661,"{'type': 'Point', 'coordinates': (-79.39880646, 43.64142779)}"
-12695,7704,GO-20202336486,THEFT OF EBIKE UNDER $5000,2020-12-11T00:00:00,2020,December,Friday,11,346,3,2020-12-11T00:00:00,2020,December,Friday,11,346,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,INFINITE,EL,1,BLK,2500.0,STOLEN,12662,"{'type': 'Point', 'coordinates': (-79.39309998, 43.64444244)}"
-12696,7732,GO-20149000090,THEFT UNDER,2014-01-01T00:00:00,2014,January,Wednesday,1,1,12,2014-01-02T00:00:00,2014,January,Thursday,2,2,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,TCX2 (2010),OT,9,BLU,1019.0,STOLEN,12663,"{'type': 'Point', 'coordinates': (-79.39388892, 43.64273773)}"
-12697,7737,GO-20141298201,THEFT UNDER,2013-12-27T00:00:00,2013,December,Friday,27,361,20,2014-01-08T00:00:00,2014,January,Wednesday,8,8,9,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,AMIGO,VESPA,EL,1,RED,3300.0,STOLEN,12664,"{'type': 'Point', 'coordinates': (-79.4010881, 43.64697154)}"
-12698,7741,GO-20141318032,THEFT UNDER,2014-01-10T00:00:00,2014,January,Friday,10,10,6,2014-01-10T00:00:00,2014,January,Friday,10,10,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,,OT,24,GRY,400.0,STOLEN,12665,"{'type': 'Point', 'coordinates': (-79.38082868, 43.64145979)}"
-12699,7744,GO-20149000374,THEFT UNDER,2013-06-06T00:00:00,2013,June,Thursday,6,157,9,2014-01-11T00:00:00,2014,January,Saturday,11,11,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,PARIS,RG,7,BLK,700.0,STOLEN,12666,"{'type': 'Point', 'coordinates': (-79.38552201, 43.64605338)}"
-12700,7753,GO-20141414982,THEFT OVER,2014-01-25T00:00:00,2014,January,Saturday,25,25,18,2014-01-26T00:00:00,2014,January,Sunday,26,26,18,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CERVELO,R2.5,RC,18,BLK,10000.0,STOLEN,12668,"{'type': 'Point', 'coordinates': (-79.3621013, 43.65019711)}"
-12701,893,GO-20171284140,THEFT UNDER - BICYCLE,2017-07-11T00:00:00,2017,July,Tuesday,11,192,8,2017-07-17T00:00:00,2017,July,Monday,17,198,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MASI,CX COMP,RC,10,ONG,1500.0,STOLEN,12669,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-12702,24790,GO-20142344462,THEFT UNDER,2014-06-22T00:00:00,2014,June,Sunday,22,173,11,2014-06-22T00:00:00,2014,June,Sunday,22,173,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MARIN OR MARINO,UNKNOWN,TO,18,GRY,700.0,STOLEN,12670,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-12703,7818,GO-20149002612,THEFT UNDER,2014-04-06T00:00:00,2014,April,Sunday,6,96,18,2014-04-07T00:00:00,2014,April,Monday,7,97,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,DEW,OT,24,BLK,700.0,STOLEN,12671,"{'type': 'Point', 'coordinates': (-79.39075649, 43.64913078)}"
-12704,7828,GO-20141871654,THEFT UNDER,2014-04-10T00:00:00,2014,April,Thursday,10,100,12,2014-04-12T00:00:00,2014,April,Saturday,12,102,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KHS,SOUL,MT,21,BLU,600.0,STOLEN,12672,"{'type': 'Point', 'coordinates': (-79.395007, 43.64546954)}"
-12705,7838,GO-20141894951,THEFT OVER,2014-04-09T00:00:00,2014,April,Wednesday,9,99,18,2014-04-15T00:00:00,2014,April,Tuesday,15,105,10,D51,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,PRO CARBON,RC,20,BLKRED,6789.0,STOLEN,12673,"{'type': 'Point', 'coordinates': (-79.37146354, 43.64763677)}"
-12706,7857,GO-20149002973,THEFT UNDER,2014-04-20T00:00:00,2014,April,Sunday,20,110,12,2014-04-23T00:00:00,2014,April,Wednesday,23,113,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,HF,,MT,21,PLE,300.0,STOLEN,12674,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-12707,7866,GO-20141963730,THEFT UNDER,2014-04-25T00:00:00,2014,April,Friday,25,115,9,2014-04-26T00:00:00,2014,April,Saturday,26,116,16,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KHS,CX-100,OT,18,RED,960.0,STOLEN,12675,"{'type': 'Point', 'coordinates': (-79.37524509, 43.64636121)}"
-12708,7885,GO-20149003161,THEFT UNDER,2014-05-04T00:00:00,2014,May,Sunday,4,124,22,2014-05-05T00:00:00,2014,May,Monday,5,125,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,RA,PORTAGE,RG,18,SIL,0.0,STOLEN,12676,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-12709,7889,GO-20142032198,THEFT UNDER,2014-05-01T00:00:00,2014,May,Thursday,1,121,17,2014-05-07T00:00:00,2014,May,Wednesday,7,127,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NORCO,DESENDER,MT,21,GRY,500.0,STOLEN,12677,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-12710,7921,GO-20142077430,PROPERTY - FOUND,2014-05-14T00:00:00,2014,May,Wednesday,14,134,12,2014-05-14T00:00:00,2014,May,Wednesday,14,134,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KONA,,TO,18,,,STOLEN,12678,"{'type': 'Point', 'coordinates': (-79.38091602, 43.64168463)}"
-12711,7928,GO-20149003341,THEFT UNDER,2014-05-07T00:00:00,2014,May,Wednesday,7,127,13,2014-05-14T00:00:00,2014,May,Wednesday,14,134,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,MINELLI,MT,20,YEL,400.0,STOLEN,12679,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-12712,7951,GO-20142135785,THEFT UNDER,2014-05-18T00:00:00,2014,May,Sunday,18,138,21,2014-05-23T00:00:00,2014,May,Friday,23,143,12,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,CARGO TRI-CYCLE,TR,1,BLK,700.0,STOLEN,12680,"{'type': 'Point', 'coordinates': (-79.36232429, 43.64730539)}"
-12713,7954,GO-20149003515,THEFT UNDER,2014-05-21T00:00:00,2014,May,Wednesday,21,141,16,2014-05-22T00:00:00,2014,May,Thursday,22,142,14,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RA,,MT,12,BGE,500.0,STOLEN,12681,"{'type': 'Point', 'coordinates': (-79.36665279, 43.65068091)}"
-12714,12763,GO-20169013410,THEFT UNDER,2016-11-14T00:00:00,2016,November,Monday,14,319,14,2016-11-14T00:00:00,2016,November,Monday,14,319,19,D52,Toronto,79,University (79),Universities / Colleges,Educational,OT,URBANIA,RG,24,BLK,1000.0,STOLEN,15129,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-12715,7987,GO-20149003622,THEFT UNDER,2014-05-23T00:00:00,2014,May,Friday,23,143,16,2014-05-26T00:00:00,2014,May,Monday,26,146,19,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,SC,045W2611C1071-1,MT,24,GRY,800.0,STOLEN,12683,"{'type': 'Point', 'coordinates': (-79.36460313, 43.64922452)}"
-12716,8018,GO-20149003734,THEFT UNDER,2014-05-31T00:00:00,2014,May,Saturday,31,151,23,2014-06-01T00:00:00,2014,June,Sunday,1,152,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,THE DUKE,RC,1,BLK,424.0,STOLEN,12684,"{'type': 'Point', 'coordinates': (-79.39880646, 43.64142779)}"
-12717,8020,GO-20149003741,THEFT UNDER,2014-06-01T00:00:00,2014,June,Sunday,1,152,15,2014-06-01T00:00:00,2014,June,Sunday,1,152,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SHADOWLANDS,MT,10,WHI,1125.0,STOLEN,12685,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-12718,8038,GO-20149003778,THEFT UNDER,2014-06-01T00:00:00,2014,June,Sunday,1,152,10,2014-06-03T00:00:00,2014,June,Tuesday,3,154,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,10,SIL,300.0,STOLEN,12686,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-12719,8042,GO-20142210351,THEFT UNDER,2014-06-02T00:00:00,2014,June,Monday,2,153,14,2014-06-03T00:00:00,2014,June,Tuesday,3,154,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,EPIC,MT,5,SIL,1200.0,STOLEN,12687,"{'type': 'Point', 'coordinates': (-79.3883628, 43.64757108)}"
-12720,8046,GO-20142222258,THEFT UNDER,2014-06-03T00:00:00,2014,June,Tuesday,3,154,17,2014-06-04T00:00:00,2014,June,Wednesday,4,155,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,JAVA,FIT,FO,16,WHI,400.0,STOLEN,12688,"{'type': 'Point', 'coordinates': (-79.38943687, 43.65023156)}"
-12721,8052,GO-20149003813,THEFT UNDER,2014-06-04T00:00:00,2014,June,Wednesday,4,155,12,2014-06-04T00:00:00,2014,June,Wednesday,4,155,14,D52,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,RM,ROAD,RC,18,RED,0.0,STOLEN,12689,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-12722,8060,GO-20142233973,PROPERTY - RECOVERED,2014-06-06T00:00:00,2014,June,Friday,6,157,14,2014-06-06T00:00:00,2014,June,Friday,6,157,14,D51,Toronto,77,Waterfront Communities-The Island (77),Schools During Supervised Activity,Educational,SUPERCYCLE,,MT,18,GRY,20.0,STOLEN,12690,"{'type': 'Point', 'coordinates': (-79.36616846, 43.64421276)}"
-12723,8072,GO-20142233660,THEFT UNDER,2014-06-06T00:00:00,2014,June,Friday,6,157,9,2014-06-06T00:00:00,2014,June,Friday,6,157,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NAKAMURA,ROYAL 9.4,OT,21,YEL,260.0,STOLEN,12691,"{'type': 'Point', 'coordinates': (-79.37787283, 43.64321708)}"
-12724,8073,GO-20142235373,THEFT UNDER,2014-06-06T00:00:00,2014,June,Friday,6,157,9,2014-06-06T00:00:00,2014,June,Friday,6,157,17,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,MIXTE 8,OT,8,LGR,900.0,STOLEN,12692,"{'type': 'Point', 'coordinates': (-79.39820731, 43.64329925)}"
-12725,8075,GO-20149003885,THEFT UNDER,2014-06-07T00:00:00,2014,June,Saturday,7,158,20,2014-06-08T00:00:00,2014,June,Sunday,8,159,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,LIVESTRONG,OT,27,BLK,400.0,STOLEN,12693,"{'type': 'Point', 'coordinates': (-79.3881121, 43.64696458)}"
-12726,8078,GO-20142225651,THEFT UNDER,2014-06-04T00:00:00,2014,June,Wednesday,4,155,10,2014-06-05T00:00:00,2014,June,Thursday,5,156,10,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,,MT,12,WHI,1000.0,STOLEN,12694,"{'type': 'Point', 'coordinates': (-79.36616846, 43.64421276)}"
-12727,8134,GO-20149003975,THEFT UNDER,2014-06-09T00:00:00,2014,June,Monday,9,160,21,2014-06-11T00:00:00,2014,June,Wednesday,11,162,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,FX 7.2 2014,OT,8,BLK,599.0,STOLEN,12695,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-12728,8140,GO-20149004035,THEFT UNDER,2014-06-12T00:00:00,2014,June,Thursday,12,163,18,2014-06-13T00:00:00,2014,June,Friday,13,164,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,7.2FX,OT,24,BLK,650.0,STOLEN,12696,"{'type': 'Point', 'coordinates': (-79.38607074, 43.64739453)}"
-12729,8143,GO-20149004038,THEFT UNDER,2014-06-12T00:00:00,2014,June,Thursday,12,163,20,2014-06-13T00:00:00,2014,June,Friday,13,164,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KH,FLITE,TO,12,RED,900.0,STOLEN,12697,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-12730,8160,GO-20142295871,THEFT UNDER,2014-06-14T00:00:00,2014,June,Saturday,14,165,16,2014-06-15T00:00:00,2014,June,Sunday,15,166,13,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,HEAD,HEAD,OT,6,RED,300.0,STOLEN,12698,"{'type': 'Point', 'coordinates': (-79.37027555, 43.64981872)}"
-12731,8194,GO-20149004265,THEFT UNDER,2014-06-15T00:00:00,2014,June,Sunday,15,166,4,2014-06-20T00:00:00,2014,June,Friday,20,171,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,EARL,OT,1,BLU,700.0,STOLEN,12699,"{'type': 'Point', 'coordinates': (-79.38973372, 43.6466028)}"
-12732,8196,GO-20142318612,THEFT UNDER,2014-06-13T00:00:00,2014,June,Friday,13,164,17,2014-06-18T00:00:00,2014,June,Wednesday,18,169,18,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,AMMO,30XL,EL,4,GLD,2700.0,STOLEN,12700,"{'type': 'Point', 'coordinates': (-79.37146354, 43.64763677)}"
-12733,8201,GO-20149004289,THEFT UNDER,2014-06-13T00:00:00,2014,June,Friday,13,164,17,2014-06-20T00:00:00,2014,June,Friday,20,171,18,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,GOLD SERIES X 3,SC,30,GLD,,STOLEN,12701,"{'type': 'Point', 'coordinates': (-79.37146354, 43.64763677)}"
-12734,8208,GO-20149004310,THEFT UNDER,2014-06-20T00:00:00,2014,June,Friday,20,171,19,2014-06-21T00:00:00,2014,June,Saturday,21,172,21,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,14,LGR,400.0,STOLEN,12702,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-12735,8222,GO-20142345203,THEFT UNDER,2014-06-22T00:00:00,2014,June,Sunday,22,173,14,2014-06-22T00:00:00,2014,June,Sunday,22,173,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BRODIE,,MT,21,,2000.0,STOLEN,12703,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-12736,8226,GO-20142346050,THEFT UNDER,2014-06-22T00:00:00,2014,June,Sunday,22,173,18,2014-06-22T00:00:00,2014,June,Sunday,22,173,19,D51,Toronto,77,Waterfront Communities-The Island (77),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,TREK,7000,BM,8,BLK,400.0,STOLEN,12704,"{'type': 'Point', 'coordinates': (-79.37519096, 43.64275602)}"
-12737,6339,GO-20209014896,THEFT UNDER,2020-06-06T00:00:00,2020,June,Saturday,6,158,2,2020-06-08T00:00:00,2020,June,Monday,8,160,21,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,20 ALIGHT 2DISC,OT,20,OTH,1800.0,STOLEN,12741,"{'type': 'Point', 'coordinates': (-79.40138212, 43.64074836)}"
-12738,8227,GO-20142349172,THEFT UNDER,2014-06-20T00:00:00,2014,June,Friday,20,171,18,2014-06-23T00:00:00,2014,June,Monday,23,174,9,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CHARGE,GRATER,OT,8,BLK,900.0,STOLEN,12705,"{'type': 'Point', 'coordinates': (-79.39920115, 43.64245772)}"
-12739,8260,GO-20149004483,THEFT UNDER,2014-06-29T00:00:00,2014,June,Sunday,29,180,18,2014-06-29T00:00:00,2014,June,Sunday,29,180,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,KH,TEMPA,MT,27,RED,2000.0,STOLEN,12706,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-12740,8263,GO-20149004493,THEFT UNDER,2014-06-20T00:00:00,2014,June,Friday,20,171,12,2014-06-27T00:00:00,2014,June,Friday,27,178,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,3700,MT,21,BLU,300.0,STOLEN,12707,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-12741,8270,GO-20142412907,THEFT OVER,2014-06-02T00:00:00,2014,June,Monday,2,153,12,2014-07-02T00:00:00,2014,July,Wednesday,2,183,9,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,TR,1,BLUWHI,6000.0,STOLEN,12708,"{'type': 'Point', 'coordinates': (-79.40059685, 43.64573236)}"
-12742,8276,GO-20149004551,THEFT UNDER,2014-06-28T00:00:00,2014,June,Saturday,28,179,19,2014-06-29T00:00:00,2014,June,Sunday,29,180,2,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KH,URBAN SOUL 2012,OT,1,PLE,400.0,STOLEN,12709,"{'type': 'Point', 'coordinates': (-79.39837878, 43.64832482)}"
-12743,8297,GO-20149004574,THEFT UNDER,2014-06-29T00:00:00,2014,June,Sunday,29,180,14,2014-06-30T00:00:00,2014,June,Monday,30,181,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,7.2 FX,RG,8,BLK,750.0,STOLEN,12710,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-12744,8312,GO-20149004634,THEFT UNDER,2014-06-29T00:00:00,2014,June,Sunday,29,180,16,2014-07-02T00:00:00,2014,July,Wednesday,2,183,16,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,RA,REVENIO 3.0,RC,20,BLK,900.0,STOLEN,12711,"{'type': 'Point', 'coordinates': (-79.39974525, 43.64372459)}"
-12745,7013,GO-20209020798,THEFT UNDER,2020-08-20T00:00:00,2020,August,Thursday,20,233,21,2020-08-20T00:00:00,2020,August,Thursday,20,233,22,D52,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,OT,,MT,30,RED,110.0,STOLEN,12795,"{'type': 'Point', 'coordinates': (-79.38867784, 43.64396864)}"
-12746,8315,GO-20149004632,THEFT UNDER,2014-07-02T00:00:00,2014,July,Wednesday,2,183,16,2014-07-02T00:00:00,2014,July,Wednesday,2,183,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,SPORTS BIKE,RC,21,BLU,150.0,STOLEN,12712,"{'type': 'Point', 'coordinates': (-79.39105358, 43.64631528)}"
-12747,8318,GO-20149004622,THEFT UNDER,2014-06-30T00:00:00,2014,June,Monday,30,181,20,2014-07-02T00:00:00,2014,July,Wednesday,2,183,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,SC,HYDRA 700C,OT,24,BLU,400.0,STOLEN,12713,"{'type': 'Point', 'coordinates': (-79.38338679, 43.64508285)}"
-12748,8341,GO-20149004685,THEFT UNDER,2014-07-05T00:00:00,2014,July,Saturday,5,186,16,2014-07-07T00:00:00,2014,July,Monday,7,188,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,TR,MONTARE,OT,27,BLK,1500.0,STOLEN,12714,"{'type': 'Point', 'coordinates': (-79.38542345, 43.63902804)}"
-12749,8362,GO-20149004798,THEFT FROM MOTOR VEHICLE UNDER,2014-07-07T00:00:00,2014,July,Monday,7,188,16,2014-07-07T00:00:00,2014,July,Monday,7,188,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,BI,MEGAPO TITANIUM,RG,18,GRN,2000.0,STOLEN,12715,"{'type': 'Point', 'coordinates': (-79.39553097, 43.64673969)}"
-12750,8404,GO-20149004933,THEFT UNDER,2014-07-10T00:00:00,2014,July,Thursday,10,191,10,2014-07-12T00:00:00,2014,July,Saturday,12,193,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,MT,26,WHI,600.0,STOLEN,12716,"{'type': 'Point', 'coordinates': (-79.38396859, 43.64239001)}"
-12751,8408,GO-20149004944,THEFT UNDER,2014-07-12T00:00:00,2014,July,Saturday,12,193,19,2014-07-12T00:00:00,2014,July,Saturday,12,193,23,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,GI,GIA10 CYPRESS N,OT,21,BLU,451.0,STOLEN,12717,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-12752,8411,GO-20142490706,THEFT UNDER,2014-07-13T00:00:00,2014,July,Sunday,13,194,16,2014-07-13T00:00:00,2014,July,Sunday,13,194,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,IRON HORSE,WARRIOR 2007,MT,24,GRY,500.0,STOLEN,12718,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-12753,8424,GO-20149004993,THEFT UNDER,2014-06-19T00:00:00,2014,June,Thursday,19,170,16,2014-07-14T00:00:00,2014,July,Monday,14,195,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,MILANO,RG,21,BLK,480.0,STOLEN,12719,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-12754,8426,GO-20149004998,THEFT UNDER,2014-07-02T00:00:00,2014,July,Wednesday,2,183,21,2014-07-14T00:00:00,2014,July,Monday,14,195,23,D52,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,VENGE PRO,RC,10,WHI,4600.0,STOLEN,12720,"{'type': 'Point', 'coordinates': (-79.38994752, 43.64370303)}"
-12755,8449,GO-20149005106,THEFT UNDER,2014-07-18T00:00:00,2014,July,Friday,18,199,13,2014-07-18T00:00:00,2014,July,Friday,18,199,18,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,TO,1,,500.0,STOLEN,12721,"{'type': 'Point', 'coordinates': (-79.37302563, 43.64248042)}"
-12756,8453,GO-20149005111,THEFT UNDER,2014-07-17T00:00:00,2014,July,Thursday,17,198,21,2014-07-18T00:00:00,2014,July,Friday,18,199,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ROAD KING,RG,3,DGR,150.0,STOLEN,12722,"{'type': 'Point', 'coordinates': (-79.38658151, 43.64863773)}"
-12757,8455,GO-20149005121,THEFT UNDER,2014-07-18T00:00:00,2014,July,Friday,18,199,0,2014-07-18T00:00:00,2014,July,Friday,18,199,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,BADBOY,TO,27,BLK,2000.0,STOLEN,12723,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-12758,8473,GO-20142537069,THEFT UNDER,2014-06-24T00:00:00,2014,June,Tuesday,24,175,14,2014-07-20T00:00:00,2014,July,Sunday,20,201,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CANNONDALE,,OT,10,GRN,,STOLEN,12724,"{'type': 'Point', 'coordinates': (-79.39184935, 43.63765238)}"
-12759,8477,GO-20149005200,THEFT UNDER,2014-07-19T00:00:00,2014,July,Saturday,19,200,15,2014-07-21T00:00:00,2014,July,Monday,21,202,14,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,MODENA,OT,21,BLK,385.0,STOLEN,12725,"{'type': 'Point', 'coordinates': (-79.35840973, 43.65001391)}"
-12760,8491,GO-20142528385,THEFT UNDER,2014-05-30T00:00:00,2014,May,Friday,30,150,17,2014-07-19T00:00:00,2014,July,Saturday,19,200,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TREK,SUPERFLY 9.8,MT,20,GRY,3000.0,STOLEN,12726,"{'type': 'Point', 'coordinates': (-79.38363997, 43.64159187)}"
-12761,8504,GO-20149005301,THEFT FROM MOTOR VEHICLE UNDER,2014-07-24T00:00:00,2014,July,Thursday,24,205,8,2014-07-25T00:00:00,2014,July,Friday,25,206,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,14 ESCAPE 1 L C,RG,27,GRY,750.0,STOLEN,12727,"{'type': 'Point', 'coordinates': (-79.38250349, 43.64061295)}"
-12762,8509,GO-20149005320,THEFT UNDER,2014-07-19T00:00:00,2014,July,Saturday,19,200,15,2014-07-25T00:00:00,2014,July,Friday,25,206,10,D14,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,FJ,ABSOLUTE 2.1,TO,24,BLK,800.0,STOLEN,12728,"{'type': 'Point', 'coordinates': (-79.40266560000002, 43.64392483)}"
-12763,8513,GO-20142581151,THEFT UNDER,2014-06-30T00:00:00,2014,June,Monday,30,181,17,2014-07-27T00:00:00,2014,July,Sunday,27,208,9,D14,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GT,,MT,21,WHIBLK,500.0,STOLEN,12729,"{'type': 'Point', 'coordinates': (-79.39330422, 43.64134268000001)}"
-12764,6231,GO-2020949106,B&E,2020-01-01T00:00:00,2020,January,Wednesday,1,1,0,2020-05-23T00:00:00,2020,May,Saturday,23,144,7,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TREK,,RG,0,BLUGRY,500.0,STOLEN,12730,"{'type': 'Point', 'coordinates': (-79.39895584, 43.646052)}"
-12765,6252,GO-20209013854,THEFT UNDER,2020-05-06T00:00:00,2020,May,Wednesday,6,127,17,2020-05-25T00:00:00,2020,May,Monday,25,146,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,KO,,RG,18,BLK,450.0,STOLEN,12731,"{'type': 'Point', 'coordinates': (-79.39048611, 43.645008190000006)}"
-12766,6254,GO-20209013954,THEFT UNDER,2019-06-06T00:00:00,2019,June,Thursday,6,157,12,2020-05-26T00:00:00,2020,May,Tuesday,26,147,15,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,EM,EMMO MONSTER,EL,30,BLK,2152.0,STOLEN,12732,"{'type': 'Point', 'coordinates': (-79.35482206, 43.65337232)}"
-12767,45,GO-20179000494,THEFT UNDER,2017-01-11T00:00:00,2017,January,Wednesday,11,11,12,2017-01-11T00:00:00,2017,January,Wednesday,11,11,17,D52,Toronto,79,University (79),Universities / Colleges,Educational,NO,VFR 4,OT,24,GRN,600.0,STOLEN,15146,"{'type': 'Point', 'coordinates': (-79.39311152, 43.66637227)}"
-12768,6256,GO-20209013984,THEFT UNDER,2020-05-26T00:00:00,2020,May,Tuesday,26,147,19,2020-05-26T00:00:00,2020,May,Tuesday,26,147,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RG,21,,500.0,STOLEN,12733,"{'type': 'Point', 'coordinates': (-79.38275181, 43.64263544000001)}"
-12769,6286,GO-20209014434,THEFT UNDER,2020-06-02T00:00:00,2020,June,Tuesday,2,154,10,2020-06-02T00:00:00,2020,June,Tuesday,2,154,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,DXT,MT,21,GRY,800.0,STOLEN,12734,"{'type': 'Point', 'coordinates': (-79.38143561, 43.64291214)}"
-12770,6321,GO-20209014800,THEFT UNDER,2020-06-07T00:00:00,2020,June,Sunday,7,159,14,2020-06-07T00:00:00,2020,June,Sunday,7,159,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM 2,RG,24,GRY,800.0,STOLEN,12735,"{'type': 'Point', 'coordinates': (-79.39880646, 43.64142779)}"
-12771,6322,GO-20201056853,THEFT UNDER - BICYCLE,2020-06-08T00:00:00,2020,June,Monday,8,160,20,2020-06-08T00:00:00,2020,June,Monday,8,160,20,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BIKESHARE,,TO,3,BLK,1200.0,STOLEN,12736,"{'type': 'Point', 'coordinates': (-79.3573519, 43.65132965)}"
-12772,24793,GO-20149004350,THEFT UNDER,2014-06-22T00:00:00,2014,June,Sunday,22,173,13,2014-06-23T00:00:00,2014,June,Monday,23,174,11,D52,Toronto,76,Bay Street Corridor (76),Unknown,Other,OT,VENTURA SPORT,RG,18,OTH,450.0,STOLEN,12737,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-12773,6331,GO-20209014834,THEFT UNDER,2020-06-06T00:00:00,2020,June,Saturday,6,158,21,2020-06-08T00:00:00,2020,June,Monday,8,160,12,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,BL,18 CT HYDRO DIS,RG,10,BLK,800.0,STOLEN,12738,"{'type': 'Point', 'coordinates': (-79.35606395, 43.65373791)}"
-12774,6337,GO-20209014892,THEFT UNDER,2020-06-07T00:00:00,2020,June,Sunday,7,159,23,2020-06-08T00:00:00,2020,June,Monday,8,160,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,MA,FAIRFAX,OT,3,BLK,570.0,STOLEN,12739,"{'type': 'Point', 'coordinates': (-79.38065193, 43.64100385)}"
-12775,6338,GO-20209014893,THEFT UNDER,2020-06-07T00:00:00,2020,June,Sunday,7,159,23,2020-06-08T00:00:00,2020,June,Monday,8,160,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,MA,BOBCAT TRIAL,OT,2,BLK,800.0,STOLEN,12740,"{'type': 'Point', 'coordinates': (-79.38065193, 43.64100385)}"
-12776,6343,GO-20209014916,THEFT UNDER,2020-06-06T00:00:00,2020,June,Saturday,6,158,11,2020-06-09T00:00:00,2020,June,Tuesday,9,161,0,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,X TRAIL C 40,RC,11,BLU,4000.0,STOLEN,12742,"{'type': 'Point', 'coordinates': (-79.34662225, 43.63906207)}"
-12777,6353,GO-20209015065,THEFT UNDER,2020-06-08T00:00:00,2020,June,Monday,8,160,12,2020-06-10T00:00:00,2020,June,Wednesday,10,162,11,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,1,GRY,800.0,STOLEN,12743,"{'type': 'Point', 'coordinates': (-79.37401755, 43.64457237)}"
-12778,6358,GO-20209015100,THEFT UNDER,2020-06-09T00:00:00,2020,June,Tuesday,9,161,13,2020-06-10T00:00:00,2020,June,Wednesday,10,162,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,MA,FAIRFAX 2,RG,21,BLK,642.0,STOLEN,12744,"{'type': 'Point', 'coordinates': (-79.39833497, 43.64030158)}"
-12779,6365,GO-20209015181,THEFT UNDER,2020-05-20T00:00:00,2020,May,Wednesday,20,141,11,2020-06-11T00:00:00,2020,June,Thursday,11,163,21,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,3900,BM,7,GRN,600.0,STOLEN,12745,"{'type': 'Point', 'coordinates': (-79.39558819, 43.63994429)}"
-12780,6369,GO-20209015252,THEFT UNDER,2020-06-12T00:00:00,2020,June,Friday,12,164,17,2020-06-12T00:00:00,2020,June,Friday,12,164,19,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SU,1800 WOMEN HARD,MT,1,GRY,110.0,STOLEN,12746,"{'type': 'Point', 'coordinates': (-79.37646324, 43.64578351)}"
-12781,6371,GO-20209015279,THEFT UNDER,2020-06-03T00:00:00,2020,June,Wednesday,3,155,1,2020-06-13T00:00:00,2020,June,Saturday,13,165,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,,TO,21,,200.0,STOLEN,12747,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-12782,6389,GO-20209015386,THEFT UNDER,2020-06-10T00:00:00,2020,June,Wednesday,10,162,15,2020-06-15T00:00:00,2020,June,Monday,15,167,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SU,,MT,21,GRY,359.0,STOLEN,12748,"{'type': 'Point', 'coordinates': (-79.3922993, 43.63874701)}"
-12783,6401,GO-20201094553,THEFT OVER,2020-06-14T00:00:00,2020,June,Sunday,14,166,5,2020-06-14T00:00:00,2020,June,Sunday,14,166,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,JAMIS,XENITH PRO,RC,18,BLKGRY,10000.0,STOLEN,12749,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-12784,6408,GO-20201099564,B&E,2020-06-15T00:00:00,2020,June,Monday,15,167,4,2020-06-17T00:00:00,2020,June,Wednesday,17,169,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GIANT,ESCAPE,OT,24,BLU,600.0,STOLEN,12750,"{'type': 'Point', 'coordinates': (-79.39880646, 43.64142779)}"
-12785,6428,GO-20209015729,THEFT UNDER - BICYCLE,2020-06-16T00:00:00,2020,June,Tuesday,16,168,22,2020-06-19T00:00:00,2020,June,Friday,19,171,14,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,TALON 3,MT,8,BLK,1000.0,STOLEN,12751,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-12786,6443,GO-20209015917,THEFT UNDER,2020-06-20T00:00:00,2020,June,Saturday,20,172,6,2020-06-22T00:00:00,2020,June,Monday,22,174,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,MARLIN 5,MT,21,TRQ,745.0,STOLEN,12752,"{'type': 'Point', 'coordinates': (-79.38082868, 43.64145979)}"
-12787,6444,GO-20209015929,THEFT UNDER,2020-06-22T00:00:00,2020,June,Monday,22,174,18,2020-06-23T00:00:00,2020,June,Tuesday,23,175,8,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,16,WHI,1000.0,STOLEN,12753,"{'type': 'Point', 'coordinates': (-79.39202118, 43.64537211)}"
-12788,6446,GO-20209015949,THEFT UNDER,2020-06-19T00:00:00,2020,June,Friday,19,171,16,2020-06-23T00:00:00,2020,June,Tuesday,23,175,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,ROVE 3 W,MT,24,,200.0,STOLEN,12754,"{'type': 'Point', 'coordinates': (-79.40185545, 43.64191381)}"
-12789,6463,GO-20209016131,THEFT UNDER,2020-06-12T00:00:00,2020,June,Friday,12,164,21,2020-06-25T00:00:00,2020,June,Thursday,25,177,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,MT,7,BLK,600.0,STOLEN,12755,"{'type': 'Point', 'coordinates': (-79.38914103, 43.64945651)}"
-12790,6467,GO-20209016117,THEFT UNDER,2020-06-18T00:00:00,2020,June,Thursday,18,170,13,2020-06-25T00:00:00,2020,June,Thursday,25,177,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,TR,TREK,RC,15,BLK,3203.0,STOLEN,12756,"{'type': 'Point', 'coordinates': (-79.39281928, 43.64732006)}"
-12791,24809,GO-20149005585,THEFT UNDER,2014-08-02T00:00:00,2014,August,Saturday,2,214,13,2014-08-02T00:00:00,2014,August,Saturday,2,214,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,DEW,OT,24,MRN,500.0,STOLEN,12824,"{'type': 'Point', 'coordinates': (-79.38671683, 43.66779)}"
-12792,6475,GO-20209016248,THEFT UNDER,2020-06-26T00:00:00,2020,June,Friday,26,178,2,2020-06-26T00:00:00,2020,June,Friday,26,178,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,PIRANHA,MT,21,ONG,1000.0,STOLEN,12757,"{'type': 'Point', 'coordinates': (-79.39410409, 43.64705106)}"
-12793,6482,GO-20201162595,THEFT UNDER - BICYCLE,2020-06-21T00:00:00,2020,June,Sunday,21,173,18,2020-06-24T00:00:00,2020,June,Wednesday,24,176,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,ROCK HOPPER,MT,12,ONG,800.0,STOLEN,12758,"{'type': 'Point', 'coordinates': (-79.40185545, 43.64191381)}"
-12794,6500,GO-20209016553,THEFT UNDER,2020-06-30T00:00:00,2020,June,Tuesday,30,182,0,2020-06-30T00:00:00,2020,June,Tuesday,30,182,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RC,21,BLU,1300.0,STOLEN,12759,"{'type': 'Point', 'coordinates': (-79.39963685, 43.64806649)}"
-12795,6513,GO-20209016629,THEFT UNDER,2020-06-29T00:00:00,2020,June,Monday,29,181,17,2020-07-01T00:00:00,2020,July,Wednesday,1,183,17,D51,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,TR,,RC,10,BLU,1000.0,STOLEN,12760,"{'type': 'Point', 'coordinates': (-79.3573519, 43.65132965)}"
-12796,6517,GO-20209016675,THEFT UNDER,2020-07-01T00:00:00,2020,July,Wednesday,1,183,2,2020-07-02T00:00:00,2020,July,Thursday,2,184,17,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,27,BLK,800.0,STOLEN,12761,"{'type': 'Point', 'coordinates': (-79.3573519, 43.65132965)}"
-12797,6518,GO-20209016675,THEFT UNDER,2020-07-01T00:00:00,2020,July,Wednesday,1,183,2,2020-07-02T00:00:00,2020,July,Thursday,2,184,17,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM 3,MT,27,BLK,800.0,STOLEN,12762,"{'type': 'Point', 'coordinates': (-79.3573519, 43.65132965)}"
-12798,6520,GO-20209016712,THEFT UNDER,2020-06-13T00:00:00,2020,June,Saturday,13,165,0,2020-07-03T00:00:00,2020,July,Friday,3,185,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,21,LBL,190.0,STOLEN,12763,"{'type': 'Point', 'coordinates': (-79.39882641, 43.63812175)}"
-12799,898,GO-20179010445,THEFT UNDER,2017-07-17T00:00:00,2017,July,Monday,17,198,14,2017-07-18T00:00:00,2017,July,Tuesday,18,199,1,D14,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,OT,,RG,1,RED,500.0,STOLEN,12764,"{'type': 'Point', 'coordinates': (-79.395007, 43.64546954)}"
-12800,6522,GO-20209016721,THEFT UNDER,2020-06-13T00:00:00,2020,June,Saturday,13,165,0,2020-07-03T00:00:00,2020,July,Friday,3,185,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,RA,,MT,21,BLK,200.0,STOLEN,12765,"{'type': 'Point', 'coordinates': (-79.39882641, 43.63812175)}"
-12801,6525,GO-20209016794,THEFT UNDER,2020-06-28T00:00:00,2020,June,Sunday,28,180,19,2020-07-03T00:00:00,2020,July,Friday,3,185,18,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,F65,RC,18,SIL,500.0,STOLEN,12766,"{'type': 'Point', 'coordinates': (-79.37146354, 43.64763677)}"
-12802,6608,GO-20209016980,THEFT UNDER,2020-07-06T00:00:00,2020,July,Monday,6,188,21,2020-07-06T00:00:00,2020,July,Monday,6,188,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,,RG,27,BLK,1200.0,STOLEN,12767,"{'type': 'Point', 'coordinates': (-79.39281928, 43.64732006)}"
-12803,6615,GO-20201281547,THEFT UNDER - BICYCLE,2020-07-10T00:00:00,2020,July,Friday,10,192,21,2020-07-10T00:00:00,2020,July,Friday,10,192,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,HARO,,MT,8,BLK,215.0,STOLEN,12768,"{'type': 'Point', 'coordinates': (-79.39124574, 43.64342012)}"
-12804,6631,GO-20209017669,THEFT UNDER,2020-07-15T00:00:00,2020,July,Wednesday,15,197,15,2020-07-15T00:00:00,2020,July,Wednesday,15,197,20,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,7,BLK,450.0,STOLEN,12769,"{'type': 'Point', 'coordinates': (-79.37146354, 43.64763677)}"
-12805,6633,GO-20201298060,PROPERTY - RECOVERED,2020-07-12T00:00:00,2020,July,Sunday,12,194,18,2020-07-13T00:00:00,2020,July,Monday,13,195,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,INDIE3,OT,18,LGRYEL,1000.0,RECOVERED,12770,"{'type': 'Point', 'coordinates': (-79.39340883, 43.6494058)}"
-12806,6642,GO-20209017743,THEFT UNDER,2020-07-05T00:00:00,2020,July,Sunday,5,187,11,2020-07-16T00:00:00,2020,July,Thursday,16,198,22,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,RAPID 3,RG,21,LBL,1000.0,STOLEN,12771,"{'type': 'Point', 'coordinates': (-79.37142509, 43.64944981)}"
-12807,6648,GO-20209017818,THEFT UNDER,2020-07-14T00:00:00,2020,July,Tuesday,14,196,18,2020-07-17T00:00:00,2020,July,Friday,17,199,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,RA,PORTAGE,MT,18,MRN,250.0,STOLEN,12772,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-12808,6657,GO-20209017866,THEFT UNDER,2020-07-14T00:00:00,2020,July,Tuesday,14,196,12,2020-07-18T00:00:00,2020,July,Saturday,18,200,11,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MA,,MT,24,SIL,800.0,STOLEN,12773,"{'type': 'Point', 'coordinates': (-79.37146354, 43.64763677)}"
-12809,6676,GO-20209018026,THEFT UNDER,2020-07-20T00:00:00,2020,July,Monday,20,202,2,2020-07-20T00:00:00,2020,July,Monday,20,202,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,AVANT H50 WHITE,RC,9,WHI,1159.0,STOLEN,12774,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-12810,6684,GO-20201357496,THEFT OF EBIKE UNDER $5000,2020-07-20T00:00:00,2020,July,Monday,20,202,22,2020-07-21T00:00:00,2020,July,Tuesday,21,203,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,EL,1,BLKGRY,2500.0,STOLEN,12775,"{'type': 'Point', 'coordinates': (-79.38363997, 43.64159187)}"
-12811,6701,GO-20209018226,THEFT UNDER,2020-07-21T00:00:00,2020,July,Tuesday,21,203,20,2020-07-22T00:00:00,2020,July,Wednesday,22,204,14,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,GTX-2,RG,24,BLK,560.0,STOLEN,12776,"{'type': 'Point', 'coordinates': (-79.36399025000001, 43.65127325)}"
-12812,6706,GO-20201349405,THEFT UNDER,2020-07-20T00:00:00,2020,July,Monday,20,202,6,2020-07-20T00:00:00,2020,July,Monday,20,202,16,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,HYPER,OT,18,,400.0,STOLEN,12777,"{'type': 'Point', 'coordinates': (-79.39820731, 43.64329925)}"
-12813,6743,GO-20209018587,THEFT UNDER,2020-07-23T00:00:00,2020,July,Thursday,23,205,14,2020-07-26T00:00:00,2020,July,Sunday,26,208,12,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,ESCAPE 1,RG,21,GRY,800.0,STOLEN,12778,"{'type': 'Point', 'coordinates': (-79.37646324, 43.64578351)}"
-12814,6744,GO-20209018592,THEFT UNDER,2020-07-23T00:00:00,2020,July,Thursday,23,205,17,2020-07-26T00:00:00,2020,July,Sunday,26,208,13,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,URBANIA SC3,RG,24,GRY,750.0,STOLEN,12779,"{'type': 'Point', 'coordinates': (-79.35971484, 43.65076046)}"
-12815,6757,GO-20209018667,THEFT UNDER,2020-07-25T00:00:00,2020,July,Saturday,25,207,21,2020-07-27T00:00:00,2020,July,Monday,27,209,12,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GT,GT-AGGRESSOR,MT,7,LBL,650.0,STOLEN,12780,"{'type': 'Point', 'coordinates': (-79.36183585, 43.64956942)}"
-12816,6787,GO-20209018792,THEFT UNDER,2020-07-28T00:00:00,2020,July,Tuesday,28,210,7,2020-07-28T00:00:00,2020,July,Tuesday,28,210,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,2008 MYKA,MT,7,BLK,400.0,STOLEN,12781,"{'type': 'Point', 'coordinates': (-79.40005716, 43.64445256)}"
-12817,6796,GO-20209018593,THEFT UNDER,2020-07-20T00:00:00,2020,July,Monday,20,202,0,2020-07-26T00:00:00,2020,July,Sunday,26,208,13,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,GIANT,MT,18,SIL,800.0,STOLEN,12782,"{'type': 'Point', 'coordinates': (-79.35795114, 43.65265813)}"
-12818,6800,GO-20209018855,THEFT UNDER,2020-07-01T00:00:00,2020,July,Wednesday,1,183,23,2020-07-29T00:00:00,2020,July,Wednesday,29,211,0,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,NEKO SIZE 18,RG,27,WHI,770.0,STOLEN,12783,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-12819,6816,GO-20209019004,THEFT UNDER,2020-07-24T00:00:00,2020,July,Friday,24,206,0,2020-07-30T00:00:00,2020,July,Thursday,30,212,16,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,KO,LANA'I,MT,18,BLK,450.0,STOLEN,12784,"{'type': 'Point', 'coordinates': (-79.35482206, 43.65337232)}"
-12820,6823,GO-20209019058,INVALID GO - RMS ONLY,2020-07-31T00:00:00,2020,July,Friday,31,213,8,2020-07-31T00:00:00,2020,July,Friday,31,213,8,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,HARD ROCK SPORT,MT,21,SIL,700.0,STOLEN,12785,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-12821,6853,GO-20209019244,THEFT UNDER,2020-08-03T00:00:00,2020,August,Monday,3,216,2,2020-08-03T00:00:00,2020,August,Monday,3,216,9,D51,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,TR,ALPHA 1.1,RC,16,BLK,600.0,STOLEN,12786,"{'type': 'Point', 'coordinates': (-79.37327274, 43.64725689)}"
-12822,6875,GO-20209019454,THEFT UNDER,2020-08-03T00:00:00,2020,August,Monday,3,216,3,2020-08-05T00:00:00,2020,August,Wednesday,5,218,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,MIYATA,RG,1,,350.0,STOLEN,12787,"{'type': 'Point', 'coordinates': (-79.38330674, 43.64067063)}"
-12823,6896,GO-20209019619,THEFT UNDER,2020-08-06T00:00:00,2020,August,Thursday,6,219,18,2020-08-07T00:00:00,2020,August,Friday,7,220,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CC,CCM HARDLINE,MT,21,BLU,407.0,STOLEN,12788,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-12824,6965,GO-20201533042,THEFT OF EBIKE UNDER $5000,2020-08-11T00:00:00,2020,August,Tuesday,11,224,17,2020-08-15T00:00:00,2020,August,Saturday,15,228,18,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,EMMO,EWILD3,EL,5,BLK,2300.0,STOLEN,12789,"{'type': 'Point', 'coordinates': (-79.36460313, 43.64922452)}"
-12825,6967,GO-20201543193,THEFT UNDER - BICYCLE,2020-07-10T00:00:00,2020,July,Friday,10,192,20,2020-08-17T00:00:00,2020,August,Monday,17,230,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,DA VINCI,MILANO,OT,7,WHIRED,600.0,STOLEN,12790,"{'type': 'Point', 'coordinates': (-79.38143561, 43.64291214)}"
-12826,6971,GO-20209020394,THEFT UNDER,2020-08-16T00:00:00,2020,August,Sunday,16,229,19,2020-08-16T00:00:00,2020,August,Sunday,16,229,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CA,SYNAPSE 105,RC,22,BLK,3500.0,STOLEN,12791,"{'type': 'Point', 'coordinates': (-79.37581636, 43.64427666)}"
-12827,6972,GO-20209020394,THEFT UNDER,2020-08-16T00:00:00,2020,August,Sunday,16,229,19,2020-08-16T00:00:00,2020,August,Sunday,16,229,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,MILANO,RC,22,ONG,1500.0,STOLEN,12792,"{'type': 'Point', 'coordinates': (-79.37581636, 43.64427666)}"
-12828,6994,GO-20201556222,B&E W'INTENT,2020-08-19T00:00:00,2020,August,Wednesday,19,232,5,2020-08-19T00:00:00,2020,August,Wednesday,19,232,8,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GRAVEL,SPECIALIZED DIV,RC,1,,2230.0,RECOVERED,12793,"{'type': 'Point', 'coordinates': (-79.35367026, 43.65363854)}"
-12829,6995,GO-20201556222,B&E W'INTENT,2020-08-19T00:00:00,2020,August,Wednesday,19,232,5,2020-08-19T00:00:00,2020,August,Wednesday,19,232,8,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GRAVEL,2019 ADVENTURE,RC,1,,2600.0,STOLEN,12794,"{'type': 'Point', 'coordinates': (-79.35367026, 43.65363854)}"
-12830,7024,GO-20209020890,THEFT UNDER - BICYCLE,2020-08-21T00:00:00,2020,August,Friday,21,234,12,2020-08-21T00:00:00,2020,August,Friday,21,234,14,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,LITTORAL,RG,21,GRY,600.0,STOLEN,12796,"{'type': 'Point', 'coordinates': (-79.35713011, 43.65083215)}"
-12831,7052,GO-20209021053,THEFT UNDER,2020-08-22T00:00:00,2020,August,Saturday,22,235,21,2020-08-23T00:00:00,2020,August,Sunday,23,236,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,INDIE 3,RG,8,LGR,649.0,STOLEN,12797,"{'type': 'Point', 'coordinates': (-79.39204821, 43.64885072)}"
-12832,7059,GO-20209021148,THEFT UNDER,2020-08-23T00:00:00,2020,August,Sunday,23,236,21,2020-08-24T00:00:00,2020,August,Monday,24,237,12,D52,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,NO,TACTIC,RC,10,GRY,1200.0,STOLEN,12798,"{'type': 'Point', 'coordinates': (-79.38338679, 43.64508285)}"
-12833,7081,GO-20209021371,THEFT UNDER,2020-08-12T00:00:00,2020,August,Wednesday,12,225,11,2020-08-26T00:00:00,2020,August,Wednesday,26,239,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,1,WHI,350.0,STOLEN,12799,"{'type': 'Point', 'coordinates': (-79.38946509, 43.64593813)}"
-12834,7100,GO-20201617943,B&E,2020-08-12T00:00:00,2020,August,Wednesday,12,225,15,2020-08-27T00:00:00,2020,August,Thursday,27,240,23,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,MOTOBECANE,,TO,6,BLK,2200.0,STOLEN,12800,"{'type': 'Point', 'coordinates': (-79.40185545, 43.64191381)}"
-12835,7128,GO-20201623255,THEFT UNDER - BICYCLE,2020-08-26T00:00:00,2020,August,Wednesday,26,239,13,2020-08-28T00:00:00,2020,August,Friday,28,241,14,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,,MT,18,PLEWHI,160.0,STOLEN,12801,"{'type': 'Point', 'coordinates': (-79.395007, 43.64546954)}"
-12836,7142,GO-20209021934,THEFT UNDER,2020-08-31T00:00:00,2020,August,Monday,31,244,15,2020-09-01T00:00:00,2020,September,Tuesday,1,245,9,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,,RG,1,LGR,700.0,STOLEN,12802,"{'type': 'Point', 'coordinates': (-79.37027555, 43.64981872)}"
-12837,7150,GO-20201654713,B&E,2020-01-01T00:00:00,2020,January,Wednesday,1,1,12,2020-09-01T00:00:00,2020,September,Tuesday,1,245,22,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SIRRUSCOMP,14 SERIES COMP,OT,21,BLK,1200.0,STOLEN,12803,"{'type': 'Point', 'coordinates': (-79.39882641, 43.63812175)}"
-12838,7182,GO-20201687172,THEFT OF EBIKE UNDER $5000,2020-09-05T00:00:00,2020,September,Saturday,5,249,20,2020-09-06T00:00:00,2020,September,Sunday,6,250,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,URBAN B,EL,0,GRY,2300.0,STOLEN,12804,"{'type': 'Point', 'coordinates': (-79.38091602, 43.64168463)}"
-12839,7188,GO-20209022454,THEFT UNDER,2020-09-05T00:00:00,2020,September,Saturday,5,249,13,2020-09-06T00:00:00,2020,September,Sunday,6,250,1,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,BLADE,EL,32,BLK,2500.0,STOLEN,12805,"{'type': 'Point', 'coordinates': (-79.39124176, 43.640111790000006)}"
-12840,7189,GO-20209022460,THEFT UNDER,2020-09-04T00:00:00,2020,September,Friday,4,248,15,2020-09-06T00:00:00,2020,September,Sunday,6,250,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE 2,OT,16,BLK,689.0,STOLEN,12806,"{'type': 'Point', 'coordinates': (-79.40185545, 43.64191381)}"
-12841,7191,GO-20209022467,THEFT UNDER,2020-08-30T00:00:00,2020,August,Sunday,30,243,20,2020-09-06T00:00:00,2020,September,Sunday,6,250,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,650B MTB 2019,MT,6,BLU,459.0,STOLEN,12807,"{'type': 'Point', 'coordinates': (-79.3979648, 43.63940267)}"
-12842,7193,GO-20201694260,THEFT UNDER,2020-09-02T00:00:00,2020,September,Wednesday,2,246,21,2020-09-07T00:00:00,2020,September,Monday,7,251,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DELSOL,,EL,1,BLU,2400.0,STOLEN,12808,"{'type': 'Point', 'coordinates': (-79.38091602, 43.64168463)}"
-12843,7212,GO-20209022700,THEFT UNDER,2020-09-07T00:00:00,2020,September,Monday,7,251,13,2020-09-09T00:00:00,2020,September,Wednesday,9,253,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,HOOLIGAN,MT,24,GRN,300.0,STOLEN,12809,"{'type': 'Point', 'coordinates': (-79.38914103, 43.64945651)}"
-12844,7228,GO-20209022908,THEFT UNDER,2020-07-17T00:00:00,2020,July,Friday,17,199,22,2020-09-11T00:00:00,2020,September,Friday,11,255,14,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,RAD,R0VER 5,EL,7,BLK,2700.0,STOLEN,12810,"{'type': 'Point', 'coordinates': (-79.36708855, 43.64866845)}"
-12845,7236,GO-20209023073,THEFT UNDER,2020-09-04T00:00:00,2020,September,Friday,4,248,20,2020-09-12T00:00:00,2020,September,Saturday,12,256,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,OPUS-CLASSICO,RG,7,BLK,600.0,STOLEN,12811,"{'type': 'Point', 'coordinates': (-79.38338679, 43.64508285)}"
-12846,7242,GO-20209023188,THEFT UNDER,2020-08-28T00:00:00,2020,August,Friday,28,241,23,2020-09-14T00:00:00,2020,September,Monday,14,258,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,OT,1,,100.0,STOLEN,12812,"{'type': 'Point', 'coordinates': (-79.39880646, 43.64142779)}"
-12847,7243,GO-20209023188,THEFT UNDER,2020-08-28T00:00:00,2020,August,Friday,28,241,23,2020-09-14T00:00:00,2020,September,Monday,14,258,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,OT,1,,50.0,STOLEN,12813,"{'type': 'Point', 'coordinates': (-79.39880646, 43.64142779)}"
-12848,7244,GO-20209023188,THEFT UNDER,2020-08-28T00:00:00,2020,August,Friday,28,241,23,2020-09-14T00:00:00,2020,September,Monday,14,258,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,OT,1,,50.0,STOLEN,12814,"{'type': 'Point', 'coordinates': (-79.39880646, 43.64142779)}"
-12849,7248,GO-20201747422,THEFT UNDER - BICYCLE,2020-09-06T00:00:00,2020,September,Sunday,6,250,15,2020-09-15T00:00:00,2020,September,Tuesday,15,259,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,SPECIALIZED,ROCK HOPP,MT,21,REDWHI,1200.0,STOLEN,12815,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-12850,7254,GO-20209023333,THEFT UNDER,2020-09-15T00:00:00,2020,September,Tuesday,15,259,12,2020-09-15T00:00:00,2020,September,Tuesday,15,259,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,TRICROSS,RC,21,WHI,1200.0,STOLEN,12816,"{'type': 'Point', 'coordinates': (-79.38973372, 43.6466028)}"
-12851,7260,GO-20209023380,THEFT UNDER,2020-09-15T00:00:00,2020,September,Tuesday,15,259,15,2020-09-16T00:00:00,2020,September,Wednesday,16,260,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,MT,21,DGR,400.0,STOLEN,12817,"{'type': 'Point', 'coordinates': (-79.38914103, 43.64945651)}"
-12852,7261,GO-20209023406,THEFT UNDER,2020-09-15T00:00:00,2020,September,Tuesday,15,259,23,2020-09-16T00:00:00,2020,September,Wednesday,16,260,12,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,TRICYCLE,TR,1,RED,400.0,STOLEN,12818,"{'type': 'Point', 'coordinates': (-79.36851255, 43.64728251)}"
-12853,7264,GO-20209023478,THEFT UNDER,2020-09-13T00:00:00,2020,September,Sunday,13,257,12,2020-09-16T00:00:00,2020,September,Wednesday,16,260,23,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,FJ,,OT,18,MRN,400.0,STOLEN,12819,"{'type': 'Point', 'coordinates': (-79.40137395, 43.64770851)}"
-12854,24798,GO-20149004719,THEFT UNDER,2014-07-04T00:00:00,2014,July,Friday,4,185,23,2014-07-05T00:00:00,2014,July,Saturday,5,186,2,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,21 SPEED SHIMAN,RC,21,WHI,500.0,STOLEN,12820,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-12855,24801,GO-20149005031,THEFT UNDER,2014-07-15T00:00:00,2014,July,Tuesday,15,196,9,2014-07-16T00:00:00,2014,July,Wednesday,16,197,9,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,RG,1,,,STOLEN,12821,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-12856,24802,GO-20142525141,THEFT UNDER,2014-06-30T00:00:00,2014,June,Monday,30,181,12,2014-07-18T00:00:00,2014,July,Friday,18,199,20,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NORCO,ROAD BIKE,OT,18,WHI,1100.0,STOLEN,12822,"{'type': 'Point', 'coordinates': (-79.38485374000001, 43.65851077)}"
-12857,24807,GO-20149005375,THEFT UNDER,2014-07-26T00:00:00,2014,July,Saturday,26,207,16,2014-07-27T00:00:00,2014,July,Sunday,27,208,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,GLOBESPORT,RG,18,BLK,500.0,STOLEN,12823,"{'type': 'Point', 'coordinates': (-79.3879785, 43.66997438)}"
-12858,24810,GO-20149005626,THEFT UNDER,2014-08-04T00:00:00,2014,August,Monday,4,216,14,2014-08-04T00:00:00,2014,August,Monday,4,216,22,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,REVEL 29'ER,MT,30,GRY,700.0,STOLEN,12825,"{'type': 'Point', 'coordinates': (-79.38188491, 43.65866815)}"
-12859,24811,GO-20142667516,THEFT UNDER,2014-06-22T00:00:00,2014,June,Sunday,22,173,15,2014-08-09T00:00:00,2014,August,Saturday,9,221,13,D52,Toronto,76,Bay Street Corridor (76),Bar / Restaurant,Commercial,FELT,Z3,RC,18,BLK,2500.0,STOLEN,12826,"{'type': 'Point', 'coordinates': (-79.38411783, 43.66390399)}"
-12860,24813,GO-20149005852,THEFT UNDER,2014-08-11T00:00:00,2014,August,Monday,11,223,17,2014-08-12T00:00:00,2014,August,Tuesday,12,224,9,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,DEW PLUS,RG,12,BLK,500.0,STOLEN,12827,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-12861,24814,GO-20149005856,THEFT UNDER,2014-08-11T00:00:00,2014,August,Monday,11,223,13,2014-08-12T00:00:00,2014,August,Tuesday,12,224,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,DEFY 1 (2013),RC,10,WHI,1582.0,STOLEN,12828,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-12862,24816,GO-20149005898,THEFT UNDER,2014-08-09T00:00:00,2014,August,Saturday,9,221,0,2014-08-13T00:00:00,2014,August,Wednesday,13,225,11,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,,MT,18,DBL,400.0,STOLEN,12829,"{'type': 'Point', 'coordinates': (-79.38461112, 43.65044055)}"
-12863,24820,GO-20149006069,THEFT UNDER,2014-08-15T00:00:00,2014,August,Friday,15,227,17,2014-08-18T00:00:00,2014,August,Monday,18,230,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,RG,21,MRN,0.0,STOLEN,12830,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-12864,24822,GO-20149006322,THEFT UNDER,2014-06-23T00:00:00,2014,June,Monday,23,174,9,2014-08-26T00:00:00,2014,August,Tuesday,26,238,16,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,21,GRY,200.0,STOLEN,12831,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-12865,24823,GO-20149006351,THEFT UNDER,2014-08-27T00:00:00,2014,August,Wednesday,27,239,0,2014-08-27T00:00:00,2014,August,Wednesday,27,239,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,,,MT,21,,,STOLEN,12832,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-12866,24828,GO-20142896715,THEFT UNDER,2014-09-10T00:00:00,2014,September,Wednesday,10,253,19,2014-09-12T00:00:00,2014,September,Friday,12,255,16,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,JAMIS,VENTURA,RC,10,WHI,360.0,STOLEN,12833,"{'type': 'Point', 'coordinates': (-79.39348694, 43.66726478)}"
-12867,24829,GO-20149007087,THEFT UNDER,2014-09-21T00:00:00,2014,September,Sunday,21,264,10,2014-09-21T00:00:00,2014,September,Sunday,21,264,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MA,"BEAR VALLEY"""" L",MT,8,YEL,645.0,STOLEN,12834,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-12868,24831,GO-20149007339,THEFT UNDER,2014-09-18T00:00:00,2014,September,Thursday,18,261,19,2014-10-01T00:00:00,2014,October,Wednesday,1,274,22,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,UK,XC PRO,MT,21,RED,1799.0,STOLEN,12835,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-12869,24832,GO-20149007339,THEFT UNDER,2014-09-18T00:00:00,2014,September,Thursday,18,261,19,2014-10-01T00:00:00,2014,October,Wednesday,1,274,22,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,UK,FACET 5,RC,14,BLK,1599.0,STOLEN,12836,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-12870,24833,GO-20143037350,THEFT UNDER,2014-10-03T00:00:00,2014,October,Friday,3,276,17,2014-10-03T00:00:00,2014,October,Friday,3,276,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,MT,0,WHI,,STOLEN,12837,"{'type': 'Point', 'coordinates': (-79.38605934000002, 43.6615638)}"
-12871,24839,GO-20143286756,THEFT UNDER,2014-11-11T00:00:00,2014,November,Tuesday,11,315,6,2014-11-12T00:00:00,2014,November,Wednesday,12,316,10,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,MOUNTAIN,MT,18,BLK,900.0,STOLEN,12838,"{'type': 'Point', 'coordinates': (-79.38209114, 43.64961443)}"
-12872,24840,GO-20143300252,THEFT OVER,2014-11-14T00:00:00,2014,November,Friday,14,318,12,2014-11-14T00:00:00,2014,November,Friday,14,318,13,D52,Toronto,76,Bay Street Corridor (76),Bar / Restaurant,Commercial,FORTRESS,DT,SC,1,RED,6000.0,STOLEN,12839,"{'type': 'Point', 'coordinates': (-79.38455605, 43.66493728)}"
-12873,24843,GO-20149008938,THEFT UNDER,2014-12-20T00:00:00,2014,December,Saturday,20,354,2,2014-12-23T00:00:00,2014,December,Tuesday,23,357,11,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GF,WINGRA,MT,24,BLK,1200.0,STOLEN,12840,"{'type': 'Point', 'coordinates': (-79.37968936, 43.64733439)}"
-12874,24846,GO-2015637257,THEFT UNDER,2015-04-17T00:00:00,2015,April,Friday,17,107,17,2015-04-17T00:00:00,2015,April,Friday,17,107,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,TALON,MT,0,RED,700.0,STOLEN,12841,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-12875,24847,GO-2015659670,THEFT UNDER,2015-04-17T00:00:00,2015,April,Friday,17,107,1,2015-04-21T00:00:00,2015,April,Tuesday,21,111,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,TITAN,OT,12,BLKGRY,200.0,STOLEN,12842,"{'type': 'Point', 'coordinates': (-79.38338195, 43.66213624)}"
-12876,24848,GO-20159002221,THEFT UNDER,2015-04-25T00:00:00,2015,April,Saturday,25,115,8,2015-04-25T00:00:00,2015,April,Saturday,25,115,10,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,URBANIA,RG,8,GRY,875.0,STOLEN,12843,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-12877,24854,GO-2015790639,THEFT UNDER,2015-05-08T00:00:00,2015,May,Friday,8,128,22,2015-05-12T00:00:00,2015,May,Tuesday,12,132,10,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,JAMIS,,MT,7,BLU,1100.0,STOLEN,12844,"{'type': 'Point', 'coordinates': (-79.38671683, 43.66779)}"
-12878,24855,GO-20159002706,THEFT UNDER,2015-05-13T00:00:00,2015,May,Wednesday,13,133,14,2015-05-13T00:00:00,2015,May,Wednesday,13,133,16,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,MATTTAWAH,OT,30,BLU,300.0,STOLEN,12845,"{'type': 'Point', 'coordinates': (-79.38738577, 43.66051487)}"
-12879,24857,GO-20159002808,THEFT UNDER,2015-05-16T00:00:00,2015,May,Saturday,16,136,18,2015-05-16T00:00:00,2015,May,Saturday,16,136,23,D52,Toronto,76,Bay Street Corridor (76),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,MA,LARKSPUR,OT,21,SIL,900.0,STOLEN,12846,"{'type': 'Point', 'coordinates': (-79.38262593, 43.65086783)}"
-12880,24858,GO-20159002925,THEFT UNDER,2015-05-18T00:00:00,2015,May,Monday,18,138,18,2015-05-20T00:00:00,2015,May,Wednesday,20,140,10,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,,RG,1,BLK,550.0,STOLEN,12847,"{'type': 'Point', 'coordinates': (-79.3863755, 43.65817391)}"
-12881,24859,GO-2015849105,THEFT UNDER,2015-05-21T00:00:00,2015,May,Thursday,21,141,9,2015-05-21T00:00:00,2015,May,Thursday,21,141,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,MT,8,BLU,,STOLEN,12848,"{'type': 'Point', 'coordinates': (-79.38632177, 43.65593978)}"
-12882,24860,GO-20159003051,THEFT UNDER,2015-05-22T00:00:00,2015,May,Friday,22,142,12,2015-05-22T00:00:00,2015,May,Friday,22,142,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,TO,15,BLK,600.0,STOLEN,12849,"{'type': 'Point', 'coordinates': (-79.38664264, 43.6606615)}"
-12883,24861,GO-20159003145,THEFT UNDER,2015-05-24T00:00:00,2015,May,Sunday,24,144,19,2015-05-27T00:00:00,2015,May,Wednesday,27,147,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,ROADSTER,RG,3,BLU,500.0,STOLEN,12850,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-12884,24864,GO-20159003474,THEFT UNDER,2015-06-09T00:00:00,2015,June,Tuesday,9,160,7,2015-06-09T00:00:00,2015,June,Tuesday,9,160,18,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,TREK,MAMBA,MT,24,BLK,1700.0,STOLEN,12851,"{'type': 'Point', 'coordinates': (-79.38353872, 43.64792395)}"
-12885,24866,GO-2015972579,THEFT UNDER,2015-06-09T00:00:00,2015,June,Tuesday,9,160,8,2015-06-10T00:00:00,2015,June,Wednesday,10,161,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,ESCAPE,MT,0,BLK,829.0,STOLEN,12852,"{'type': 'Point', 'coordinates': (-79.37968936, 43.64733439)}"
-12886,24867,GO-2015972579,THEFT UNDER,2015-06-09T00:00:00,2015,June,Tuesday,9,160,8,2015-06-10T00:00:00,2015,June,Wednesday,10,161,12,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,ESCAPE,MT,0,BLK,829.0,STOLEN,12853,"{'type': 'Point', 'coordinates': (-79.37968936, 43.64733439)}"
-12887,24868,GO-20159003541,THEFT UNDER,2015-06-12T00:00:00,2015,June,Friday,12,163,8,2015-06-12T00:00:00,2015,June,Friday,12,163,18,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,SU,,RG,7,GRY,250.0,STOLEN,12854,"{'type': 'Point', 'coordinates': (-79.38260155, 43.6529703)}"
-12888,24869,GO-20151023232,THEFT OVER,2015-06-15T00:00:00,2015,June,Monday,15,166,0,2015-06-18T00:00:00,2015,June,Thursday,18,169,12,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,,MT,21,,2000.0,STOLEN,12855,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-12889,24870,GO-20151023232,THEFT OVER,2015-06-15T00:00:00,2015,June,Monday,15,166,0,2015-06-18T00:00:00,2015,June,Thursday,18,169,12,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,,MT,21,,2000.0,STOLEN,12856,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-12890,24872,GO-20151108363,THEFT UNDER,2015-07-01T00:00:00,2015,July,Wednesday,1,182,14,2015-07-01T00:00:00,2015,July,Wednesday,1,182,17,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EBIKE,EM0H5,EL,0,WHI,1200.0,STOLEN,12857,"{'type': 'Point', 'coordinates': (-79.3879785, 43.66997438)}"
-12891,24873,GO-20159004121,THEFT UNDER,2015-07-02T00:00:00,2015,July,Thursday,2,183,19,2015-07-02T00:00:00,2015,July,Thursday,2,183,22,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KO,ROUNDABOUT,RG,9,,1000.0,STOLEN,12858,"{'type': 'Point', 'coordinates': (-79.38307051, 43.66137201)}"
-12892,24874,GO-20159004156,THEFT UNDER,2015-06-27T00:00:00,2015,June,Saturday,27,178,8,2015-07-03T00:00:00,2015,July,Friday,3,184,18,D52,Toronto,76,Bay Street Corridor (76),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,SU,,MT,7,BLK,250.0,STOLEN,12859,"{'type': 'Point', 'coordinates': (-79.38596803, 43.65904449)}"
-12893,24875,GO-20159004160,THEFT UNDER,2015-07-03T00:00:00,2015,July,Friday,3,184,9,2015-07-04T00:00:00,2015,July,Saturday,4,185,9,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,21,BLK,600.0,STOLEN,12860,"{'type': 'Point', 'coordinates': (-79.3861386, 43.66649311)}"
-12894,24877,GO-20151185923,THEFT UNDER,2015-07-12T00:00:00,2015,July,Sunday,12,193,21,2015-07-13T00:00:00,2015,July,Monday,13,194,12,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,NORCO,,OT,0,WHI,1500.0,STOLEN,12861,"{'type': 'Point', 'coordinates': (-79.38702746, 43.66853925)}"
-12895,24879,GO-20159004726,THEFT UNDER,2015-07-19T00:00:00,2015,July,Sunday,19,200,12,2015-07-19T00:00:00,2015,July,Sunday,19,200,16,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,SIRRIUS,MT,20,GRY,1500.0,STOLEN,12862,"{'type': 'Point', 'coordinates': (-79.3879785, 43.66997438)}"
-12896,24881,GO-20159004946,THEFT UNDER,2015-07-17T00:00:00,2015,July,Friday,17,198,12,2015-07-24T00:00:00,2015,July,Friday,24,205,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,MT,7,BLK,500.0,STOLEN,12863,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-12897,24883,GO-20159005637,THEFT UNDER,2015-08-08T00:00:00,2015,August,Saturday,8,220,17,2015-08-11T00:00:00,2015,August,Tuesday,11,223,14,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,7.2 FX,RG,24,BLK,802.0,STOLEN,12864,"{'type': 'Point', 'coordinates': (-79.38437564, 43.65730783)}"
-12898,24888,GO-20159006469,THEFT UNDER,2015-08-26T00:00:00,2015,August,Wednesday,26,238,8,2015-08-28T00:00:00,2015,August,Friday,28,240,15,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,TOUGHROAD SLR 1,MT,60,BLK,1500.0,STOLEN,12866,"{'type': 'Point', 'coordinates': (-79.38994423, 43.6587011)}"
-12899,24889,GO-20159006497,THEFT UNDER,2015-08-28T00:00:00,2015,August,Friday,28,240,18,2015-08-29T00:00:00,2015,August,Saturday,29,241,18,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,OT,RED SOLOIST BUL,RG,1,RED,400.0,STOLEN,12867,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-12900,24890,GO-20159006583,THEFT UNDER,2015-08-31T00:00:00,2015,August,Monday,31,243,10,2015-08-31T00:00:00,2015,August,Monday,31,243,11,D52,Toronto,76,Bay Street Corridor (76),Convenience Stores,Commercial,OT,,RG,1,BLK,350.0,STOLEN,12868,"{'type': 'Point', 'coordinates': (-79.38714344, 43.66436762)}"
-12901,24891,GO-20151549586,THEFT UNDER,2015-09-01T00:00:00,2015,September,Tuesday,1,244,17,2015-09-08T00:00:00,2015,September,Tuesday,8,251,11,D52,Toronto,76,Bay Street Corridor (76),Universities / Colleges,Educational,SCHWINN,,OT,0,BLKRED,300.0,STOLEN,12869,"{'type': 'Point', 'coordinates': (-79.38482092, 43.65454718)}"
-12902,24893,GO-20159007035,THEFT UNDER,2015-09-09T00:00:00,2015,September,Wednesday,9,252,8,2015-09-11T00:00:00,2015,September,Friday,11,254,13,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,,RG,24,,550.0,STOLEN,12870,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-12903,24895,GO-20151770591,THEFT UNDER,2015-10-14T00:00:00,2015,October,Wednesday,14,287,10,2015-10-14T00:00:00,2015,October,Wednesday,14,287,11,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,STATE,WUTANG,OT,1,BLKYEL,1000.0,STOLEN,12871,"{'type': 'Point', 'coordinates': (-79.38353872, 43.64792395)}"
-12904,24896,GO-20151833000,THEFT UNDER,2015-10-24T00:00:00,2015,October,Saturday,24,297,19,2015-10-24T00:00:00,2015,October,Saturday,24,297,23,D52,Toronto,76,Bay Street Corridor (76),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,KONA,HANA,MT,10,GRN,400.0,STOLEN,12872,"{'type': 'Point', 'coordinates': (-79.38209114, 43.64961443)}"
-12905,24897,GO-20159010212,THEFT UNDER,2015-11-21T00:00:00,2015,November,Saturday,21,325,23,2015-11-25T00:00:00,2015,November,Wednesday,25,329,22,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EM,EMMO X,EL,32,BLK,1500.0,STOLEN,12873,"{'type': 'Point', 'coordinates': (-79.38847714, 43.66743649)}"
-12906,24899,GO-20152212123,THEFT UNDER,2015-10-09T00:00:00,2015,October,Friday,9,282,16,2015-12-27T00:00:00,2015,December,Sunday,27,361,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DEVINCI,ST TROPEZ,OT,24,BLK,600.0,STOLEN,12874,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-12907,24900,GO-20169000129,THEFT UNDER,2015-12-23T00:00:00,2015,December,Wednesday,23,357,14,2016-01-04T00:00:00,2016,January,Monday,4,4,20,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,TO,24,GRY,600.0,STOLEN,12875,"{'type': 'Point', 'coordinates': (-79.3879785, 43.66997438)}"
-12908,24902,GO-2016190057,B&E,2016-01-30T00:00:00,2016,January,Saturday,30,30,12,2016-02-01T00:00:00,2016,February,Monday,1,32,14,D52,Toronto,76,Bay Street Corridor (76),"Private Property Structure (Pool, Shed, Detached Garage)",Other,JAMIS,BEATNIK,TO,1,GRY,600.0,STOLEN,12876,"{'type': 'Point', 'coordinates': (-79.38714344, 43.66436762)}"
-12909,24906,GO-20169002566,THEFT UNDER - BICYCLE,2016-03-22T00:00:00,2016,March,Tuesday,22,82,10,2016-03-22T00:00:00,2016,March,Tuesday,22,82,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,30,BLK,800.0,STOLEN,12877,"{'type': 'Point', 'coordinates': (-79.38596803, 43.65904449)}"
-12910,24908,GO-2016502907,THEFT UNDER - BICYCLE,2016-03-21T00:00:00,2016,March,Monday,21,81,18,2016-03-24T00:00:00,2016,March,Thursday,24,84,9,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,CCM,700 C,OT,0,BLK,300.0,STOLEN,12878,"{'type': 'Point', 'coordinates': (-79.38437564, 43.65730783)}"
-12911,24909,GO-20169003032,THEFT UNDER,2016-04-03T00:00:00,2016,April,Sunday,3,94,12,2016-04-03T00:00:00,2016,April,Sunday,3,94,17,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ROAM 2,MT,27,LBL,770.0,STOLEN,12879,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-12912,24911,GO-20169003529,THEFT UNDER,2016-03-30T00:00:00,2016,March,Wednesday,30,90,18,2016-04-18T00:00:00,2016,April,Monday,18,109,17,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,CLASSIC STEP-TH,TO,3,BLU,850.0,STOLEN,12880,"{'type': 'Point', 'coordinates': (-79.38632177, 43.65593978)}"
-12913,24912,GO-20169003560,THEFT UNDER - BICYCLE,2016-04-09T00:00:00,2016,April,Saturday,9,100,23,2016-04-19T00:00:00,2016,April,Tuesday,19,110,11,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,BI,VELOCE,RC,27,YEL,1356.0,STOLEN,12881,"{'type': 'Point', 'coordinates': (-79.38808613, 43.66653345)}"
-12914,24918,GO-2016803225,THEFT UNDER - BICYCLE,2016-05-10T00:00:00,2016,May,Tuesday,10,131,8,2016-05-10T00:00:00,2016,May,Tuesday,10,131,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,SIRRUS ELITE,OT,9,RED,1300.0,STOLEN,12882,"{'type': 'Point', 'coordinates': (-79.38103127, 43.65056603)}"
-12915,24920,GO-20169004484,THEFT UNDER,2016-05-12T00:00:00,2016,May,Thursday,12,133,15,2016-05-13T00:00:00,2016,May,Friday,13,134,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,5700,MT,7,WHI,450.0,STOLEN,12883,"{'type': 'Point', 'coordinates': (-79.38738577, 43.66051487)}"
-12916,24921,GO-20169004653,THEFT UNDER,2016-05-16T00:00:00,2016,May,Monday,16,137,16,2016-05-18T00:00:00,2016,May,Wednesday,18,139,0,D52,Toronto,76,Bay Street Corridor (76),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,DUTCH-STEP,RG,3,YEL,700.0,STOLEN,12884,"{'type': 'Point', 'coordinates': (-79.37993395, 43.65406269)}"
-12917,24922,GO-20169004676,THEFT UNDER,2016-05-17T00:00:00,2016,May,Tuesday,17,138,15,2016-05-18T00:00:00,2016,May,Wednesday,18,139,15,D52,Toronto,76,Bay Street Corridor (76),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UK,XPD,EL,3,BLK,2500.0,STOLEN,12885,"{'type': 'Point', 'coordinates': (-79.38374902, 43.66302137000001)}"
-12918,24923,GO-20169005031,THEFT UNDER - BICYCLE,2016-05-27T00:00:00,2016,May,Friday,27,148,12,2016-05-27T00:00:00,2016,May,Friday,27,148,15,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,RG,10,GRY,500.0,STOLEN,12886,"{'type': 'Point', 'coordinates': (-79.38238489, 43.65176074)}"
-12919,24924,GO-20169005034,THEFT UNDER - BICYCLE,2016-05-26T00:00:00,2016,May,Thursday,26,147,15,2016-05-27T00:00:00,2016,May,Friday,27,148,16,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,MILANO,RG,21,BLK,600.0,STOLEN,12887,"{'type': 'Point', 'coordinates': (-79.38820648, 43.66681234)}"
-12920,24926,GO-20169005106,THEFT UNDER,2016-05-26T00:00:00,2016,May,Thursday,26,147,11,2016-05-30T00:00:00,2016,May,Monday,30,151,10,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,ARES,BM,1,GRY,400.0,STOLEN,12888,"{'type': 'Point', 'coordinates': (-79.38673938, 43.66335885)}"
-12921,24927,GO-2016938302,THEFT UNDER - BICYCLE,2016-05-30T00:00:00,2016,May,Monday,30,151,20,2016-05-30T00:00:00,2016,May,Monday,30,151,22,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,RAPID,OT,0,WHIBLK,1200.0,STOLEN,12889,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-12922,24929,GO-20169005505,THEFT UNDER - BICYCLE,2016-06-08T00:00:00,2016,June,Wednesday,8,160,7,2016-06-08T00:00:00,2016,June,Wednesday,8,160,23,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RG,15,GRN,671.0,STOLEN,12890,"{'type': 'Point', 'coordinates': (-79.37968936, 43.64733439)}"
-12923,24930,GO-20169005720,THEFT UNDER - BICYCLE,2016-05-27T00:00:00,2016,May,Friday,27,148,14,2016-06-13T00:00:00,2016,June,Monday,13,165,14,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,VITA ELITE,OT,18,GRY,800.0,STOLEN,12891,"{'type': 'Point', 'coordinates': (-79.38402022, 43.65643576000001)}"
-12924,24933,GO-20169006052,THEFT UNDER,2016-06-18T00:00:00,2016,June,Saturday,18,170,0,2016-06-20T00:00:00,2016,June,Monday,20,172,12,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,PONY EXPRESS 20,RC,1,BLK,1000.0,STOLEN,12892,"{'type': 'Point', 'coordinates': (-79.38714344, 43.66436762)}"
-12925,24934,GO-20169006099,THEFT UNDER - BICYCLE,2016-06-20T00:00:00,2016,June,Monday,20,172,18,2016-06-20T00:00:00,2016,June,Monday,20,172,21,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,4500,MT,24,BLU,500.0,STOLEN,12893,"{'type': 'Point', 'coordinates': (-79.38071934, 43.65212606000001)}"
-12926,24935,GO-20169006110,THEFT UNDER,2016-06-09T00:00:00,2016,June,Thursday,9,161,15,2016-06-21T00:00:00,2016,June,Tuesday,21,173,9,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,UK,WHITE,RG,9,WHI,1000.0,STOLEN,12894,"{'type': 'Point', 'coordinates': (-79.38207764, 43.65909609)}"
-12927,24940,GO-20161131788,THEFT UNDER - BICYCLE,2016-06-28T00:00:00,2016,June,Tuesday,28,180,2,2016-06-28T00:00:00,2016,June,Tuesday,28,180,16,D52,Toronto,76,Bay Street Corridor (76),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,,MT,21,LGR,1000.0,STOLEN,12895,"{'type': 'Point', 'coordinates': (-79.3888294, 43.66819662)}"
-12928,24944,GO-20169006880,THEFT UNDER,2016-07-07T00:00:00,2016,July,Thursday,7,189,1,2016-07-07T00:00:00,2016,July,Thursday,7,189,10,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,32,WHI,2000.0,STOLEN,12896,"{'type': 'Point', 'coordinates': (-79.38437564, 43.65730783)}"
-12929,24946,GO-20169007104,THEFT UNDER - BICYCLE,2016-07-12T00:00:00,2016,July,Tuesday,12,194,8,2016-07-12T00:00:00,2016,July,Tuesday,12,194,19,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,21,SIL,600.0,STOLEN,12897,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-12930,24949,GO-20169007490,THEFT UNDER - BICYCLE,2016-07-20T00:00:00,2016,July,Wednesday,20,202,8,2016-07-20T00:00:00,2016,July,Wednesday,20,202,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,FIRE MOUNTAIN,MT,27,BLK,0.0,STOLEN,12898,"{'type': 'Point', 'coordinates': (-79.38372586, 43.65571598)}"
-12931,24951,GO-20169007949,THEFT UNDER - BICYCLE,2016-07-30T00:00:00,2016,July,Saturday,30,212,9,2016-07-30T00:00:00,2016,July,Saturday,30,212,14,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,UK,,MT,7,RED,100.0,STOLEN,12899,"{'type': 'Point', 'coordinates': (-79.37878196, 43.64896093)}"
-12932,24953,GO-20169008170,THEFT UNDER,2016-08-02T00:00:00,2016,August,Tuesday,2,215,15,2016-08-03T00:00:00,2016,August,Wednesday,3,216,20,D52,Toronto,76,Bay Street Corridor (76),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,RACE MACHINE,RC,11,WHI,5000.0,STOLEN,12900,"{'type': 'Point', 'coordinates': (-79.38260155, 43.6529703)}"
-12933,24956,GO-20169008313,THEFT UNDER - BICYCLE,2016-08-01T00:00:00,2016,August,Monday,1,214,16,2016-08-06T00:00:00,2016,August,Saturday,6,219,11,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,GI,16 ESCAPE 1 L,MT,16,BLK,769.0,STOLEN,12901,"{'type': 'Point', 'coordinates': (-79.38491403, 43.66584039)}"
-12934,24959,GO-20169008744,THEFT UNDER - BICYCLE,2016-08-13T00:00:00,2016,August,Saturday,13,226,13,2016-08-14T00:00:00,2016,August,Sunday,14,227,3,D52,Toronto,76,Bay Street Corridor (76),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CC,,OT,30,,350.0,STOLEN,12902,"{'type': 'Point', 'coordinates': (-79.37968936, 43.64733439)}"
-12935,24960,GO-20169008990,THEFT UNDER - BICYCLE,2016-08-17T00:00:00,2016,August,Wednesday,17,230,22,2016-08-18T00:00:00,2016,August,Thursday,18,231,11,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,VFR3,OT,21,GRY,700.0,STOLEN,12903,"{'type': 'Point', 'coordinates': (-79.38088599, 43.65632883)}"
-12936,24961,GO-20169009171,THEFT UNDER - BICYCLE,2016-08-20T00:00:00,2016,August,Saturday,20,233,17,2016-08-21T00:00:00,2016,August,Sunday,21,234,13,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ROAD BIKE,RC,10,WHI,350.0,STOLEN,12904,"{'type': 'Point', 'coordinates': (-79.38437564, 43.65730783)}"
-12937,1262,GO-20179013568,THEFT UNDER,2017-08-25T00:00:00,2017,August,Friday,25,237,21,2017-08-28T00:00:00,2017,August,Monday,28,240,21,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,RAPID,RC,24,WHI,800.0,STOLEN,12957,"{'type': 'Point', 'coordinates': (-79.39882641, 43.63812175)}"
-12938,24966,GO-20169009817,THEFT UNDER,2016-08-30T00:00:00,2016,August,Tuesday,30,243,20,2016-09-01T00:00:00,2016,September,Thursday,1,245,18,D52,Toronto,76,Bay Street Corridor (76),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BL,,RG,6,LBL,500.0,STOLEN,12905,"{'type': 'Point', 'coordinates': (-79.38768427, 43.66564487000001)}"
-12939,24967,GO-20169009985,THEFT UNDER,2016-08-11T00:00:00,2016,August,Thursday,11,224,12,2016-09-05T00:00:00,2016,September,Monday,5,249,13,D52,Toronto,76,Bay Street Corridor (76),"Apartment (Rooming House, Condo)",Apartment,OT,BEL AIRE,OT,1,,200.0,STOLEN,12906,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-12940,904,GO-20179010457,B&E,2017-07-18T00:00:00,2017,July,Tuesday,18,199,9,2017-07-18T00:00:00,2017,July,Tuesday,18,199,9,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,SYNAPSE,RC,21,WHI,1000.0,STOLEN,12907,"{'type': 'Point', 'coordinates': (-79.37302563, 43.64248042)}"
-12941,905,GO-20179010457,B&E,2017-07-18T00:00:00,2017,July,Tuesday,18,199,9,2017-07-18T00:00:00,2017,July,Tuesday,18,199,9,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KH,URBAN SOUL,RG,1,BLK,525.0,STOLEN,12908,"{'type': 'Point', 'coordinates': (-79.37302563, 43.64248042)}"
-12942,917,GO-20179010553,B&E,2017-07-16T00:00:00,2017,July,Sunday,16,197,17,2017-07-18T00:00:00,2017,July,Tuesday,18,199,23,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,TCX ADVANCED,RC,16,GRY,3152.0,STOLEN,12909,"{'type': 'Point', 'coordinates': (-79.37302563, 43.64248042)}"
-12943,918,GO-20179010584,THEFT UNDER,2017-07-18T00:00:00,2017,July,Tuesday,18,199,22,2017-07-19T00:00:00,2017,July,Wednesday,19,200,13,D52,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,IH,,MT,9,DGR,0.0,STOLEN,12910,"{'type': 'Point', 'coordinates': (-79.39075649, 43.64913078)}"
-12944,933,GO-20179010703,THEFT UNDER,2017-07-15T00:00:00,2017,July,Saturday,15,196,20,2017-07-20T00:00:00,2017,July,Thursday,20,201,21,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM,MT,27,BLK,1000.0,STOLEN,12911,"{'type': 'Point', 'coordinates': (-79.40306565, 43.64488902)}"
-12945,942,GO-20171323790,B&E,2017-07-18T00:00:00,2017,July,Tuesday,18,199,9,2017-07-23T00:00:00,2017,July,Sunday,23,204,18,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,PAVAN,CAMPAGNOLO VELO,RC,10,YELBLK,2000.0,STOLEN,12912,"{'type': 'Point', 'coordinates': (-79.37302563, 43.64248042)}"
-12946,943,GO-20171323790,B&E,2017-07-18T00:00:00,2017,July,Tuesday,18,199,9,2017-07-23T00:00:00,2017,July,Sunday,23,204,18,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,WILLIER,CENTO1 SL,RC,10,BLKWHI,13000.0,STOLEN,12913,"{'type': 'Point', 'coordinates': (-79.37302563, 43.64248042)}"
-12947,961,GO-20171322336,B&E,2017-07-12T00:00:00,2017,July,Wednesday,12,193,0,2017-07-23T00:00:00,2017,July,Sunday,23,204,13,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,GRADE SORA 2015,RC,0,BLU,799.0,STOLEN,12914,"{'type': 'Point', 'coordinates': (-79.37302563, 43.64248042)}"
-12948,966,GO-20179010967,THEFT UNDER - BICYCLE,2017-07-21T00:00:00,2017,July,Friday,21,202,18,2017-07-25T00:00:00,2017,July,Tuesday,25,206,8,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SC,,OT,1,OTH,500.0,STOLEN,12915,"{'type': 'Point', 'coordinates': (-79.3979648, 43.63940267)}"
-12949,967,GO-20179010988,THEFT UNDER - BICYCLE,2017-07-21T00:00:00,2017,July,Friday,21,202,0,2017-07-25T00:00:00,2017,July,Tuesday,25,206,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,MA,,RG,21,BLK,0.0,STOLEN,12916,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-12950,968,GO-20179010968,THEFT UNDER - BICYCLE,2017-07-24T00:00:00,2017,July,Monday,24,205,22,2017-07-25T00:00:00,2017,July,Tuesday,25,206,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,3,,0.0,STOLEN,12917,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-12951,976,GO-20179011028,THEFT UNDER - BICYCLE,2017-07-25T00:00:00,2017,July,Tuesday,25,206,19,2017-07-25T00:00:00,2017,July,Tuesday,25,206,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,12,GRY,500.0,STOLEN,12918,"{'type': 'Point', 'coordinates': (-79.39075649, 43.64913078)}"
-12952,977,GO-20171345328,THEFT UNDER - BICYCLE,2017-07-26T00:00:00,2017,July,Wednesday,26,207,21,2017-07-27T00:00:00,2017,July,Thursday,27,208,7,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,FUJI,HYBRID,OT,21,GRY,400.0,STOLEN,12919,"{'type': 'Point', 'coordinates': (-79.39880646, 43.64142779)}"
-12953,76,GO-2017191032,THEFT UNDER - BICYCLE,2017-01-30T00:00:00,2017,January,Monday,30,30,1,2017-01-31T00:00:00,2017,January,Tuesday,31,31,7,D52,Toronto,79,University (79),Universities / Colleges,Educational,REPUBLICA,,OT,0,,400.0,STOLEN,15155,"{'type': 'Point', 'coordinates': (-79.39488188, 43.66100963)}"
-12954,980,GO-20171140842,THEFT UNDER - BICYCLE,2017-06-24T00:00:00,2017,June,Saturday,24,175,16,2017-06-28T00:00:00,2017,June,Wednesday,28,179,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,,MT,0,,,STOLEN,12920,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-12955,986,GO-20179011029,THEFT UNDER - BICYCLE,2017-07-25T00:00:00,2017,July,Tuesday,25,206,18,2017-07-26T00:00:00,2017,July,Wednesday,26,207,0,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,VALENCE CLARIS,RC,35,BLK,950.0,STOLEN,12921,"{'type': 'Point', 'coordinates': (-79.39532578, 43.64621392)}"
-12956,987,GO-20179011114,THEFT UNDER - BICYCLE,2017-07-15T00:00:00,2017,July,Saturday,15,196,9,2017-07-27T00:00:00,2017,July,Thursday,27,208,3,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,MT,20,BLK,5000.0,STOLEN,12922,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-12957,988,GO-20179011117,THEFT UNDER - BICYCLE,2017-06-05T00:00:00,2017,June,Monday,5,156,5,2017-07-27T00:00:00,2017,July,Thursday,27,208,0,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,ABSOLUTE 1.3,OT,22,BLU,1000.0,STOLEN,12923,"{'type': 'Point', 'coordinates': (-79.39075649, 43.64913078)}"
-12958,1001,GO-20179011251,THEFT UNDER,2017-07-24T00:00:00,2017,July,Monday,24,205,16,2017-07-28T00:00:00,2017,July,Friday,28,209,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,DUTCHI,OT,3,GRN,500.0,STOLEN,12924,"{'type': 'Point', 'coordinates': (-79.37778379, 43.6430065)}"
-12959,1022,GO-20179011424,THEFT UNDER - BICYCLE,2017-07-27T00:00:00,2017,July,Thursday,27,208,1,2017-07-31T00:00:00,2017,July,Monday,31,212,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NO,,BM,25,ONG,300.0,STOLEN,12925,"{'type': 'Point', 'coordinates': (-79.39558819, 43.63994429)}"
-12960,1023,GO-20179011416,THEFT UNDER - BICYCLE,2017-07-27T00:00:00,2017,July,Thursday,27,208,21,2017-07-31T00:00:00,2017,July,Monday,31,212,16,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,RA,NEWSON'S,MT,6,DGR,350.0,STOLEN,12926,"{'type': 'Point', 'coordinates': (-79.37646324, 43.64578351)}"
-12961,1026,GO-20179011430,THEFT UNDER - BICYCLE,2017-07-28T00:00:00,2017,July,Friday,28,209,12,2017-07-31T00:00:00,2017,July,Monday,31,212,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,REMUS,RG,1,GRY,836.0,STOLEN,12927,"{'type': 'Point', 'coordinates': (-79.39184935, 43.63765238)}"
-12962,1028,GO-20179011462,THEFT UNDER - BICYCLE,2017-07-23T00:00:00,2017,July,Sunday,23,204,16,2017-08-01T00:00:00,2017,August,Tuesday,1,213,11,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SC,,MT,10,BLK,350.0,STOLEN,12928,"{'type': 'Point', 'coordinates': (-79.36607348, 43.64932911)}"
-12963,1030,GO-20179011464,THEFT UNDER - BICYCLE,2017-07-27T00:00:00,2017,July,Thursday,27,208,18,2017-08-01T00:00:00,2017,August,Tuesday,1,213,9,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,IN,,RG,6,WHI,400.0,STOLEN,12929,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-12964,1036,GO-20179011515,THEFT UNDER - BICYCLE,2017-07-25T00:00:00,2017,July,Tuesday,25,206,13,2017-08-01T00:00:00,2017,August,Tuesday,1,213,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,CA,SUPERSIX,RC,10,WHI,2400.0,STOLEN,12930,"{'type': 'Point', 'coordinates': (-79.39124574, 43.64342012)}"
-12965,1064,GO-20179011814,THEFT UNDER - BICYCLE,2017-08-06T00:00:00,2017,August,Sunday,6,218,12,2017-08-06T00:00:00,2017,August,Sunday,6,218,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,CCM ORION,RG,21,BLU,339.0,STOLEN,12931,"{'type': 'Point', 'coordinates': (-79.38653359, 43.63885304)}"
-12966,1069,GO-20171417317,THEFT OVER - BICYCLE,2017-07-19T00:00:00,2017,July,Wednesday,19,200,12,2017-08-06T00:00:00,2017,August,Sunday,6,218,20,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,ARGON 18,PRO GALLEUM,RC,18,BLKWHI,6000.0,STOLEN,12932,"{'type': 'Point', 'coordinates': (-79.40306565, 43.64488902)}"
-12967,1072,GO-20179011895,THEFT UNDER - BICYCLE,2017-07-16T00:00:00,2017,July,Sunday,16,197,7,2017-08-08T00:00:00,2017,August,Tuesday,8,220,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,HYBRID/CITY BIL,RG,24,GRY,600.0,STOLEN,12933,"{'type': 'Point', 'coordinates': (-79.40078712, 43.64430357)}"
-12968,1081,GO-20179011904,THEFT UNDER - BICYCLE,2017-07-31T00:00:00,2017,July,Monday,31,212,11,2017-08-08T00:00:00,2017,August,Tuesday,8,220,12,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,ALLIED,MT,3,BLK,900.0,STOLEN,12934,"{'type': 'Point', 'coordinates': (-79.36607348, 43.64932911)}"
-12969,1083,GO-20179011925,THEFT UNDER - BICYCLE,2017-08-07T00:00:00,2017,August,Monday,7,219,15,2017-08-08T00:00:00,2017,August,Tuesday,8,220,14,D14,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,GI,ROAM 2,MT,18,BLU,750.0,STOLEN,12935,"{'type': 'Point', 'coordinates': (-79.40059685, 43.64573236)}"
-12970,1086,GO-20171409921,THEFT UNDER - BICYCLE,2017-08-05T00:00:00,2017,August,Saturday,5,217,10,2017-08-05T00:00:00,2017,August,Saturday,5,217,16,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,SPECIALIZED,ROCK HOPPER,MT,24,LBL,2500.0,STOLEN,12936,"{'type': 'Point', 'coordinates': (-79.40060972, 43.63883803)}"
-12971,1092,GO-20171428773,THEFT UNDER - BICYCLE,2017-08-07T00:00:00,2017,August,Monday,7,219,9,2017-08-08T00:00:00,2017,August,Tuesday,8,220,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CANNONDALE,BAD BOY 3,TO,27,BLK,1300.0,STOLEN,12937,"{'type': 'Point', 'coordinates': (-79.38867784, 43.64396864)}"
-12972,1110,GO-20179012099,THEFT UNDER - BICYCLE,2017-08-03T00:00:00,2017,August,Thursday,3,215,16,2017-08-07T00:00:00,2017,August,Monday,7,219,16,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,TALON 29ER,MT,18,WHI,1380.0,STOLEN,12938,"{'type': 'Point', 'coordinates': (-79.36607348, 43.64932911)}"
-12973,1114,GO-20179012116,THEFT UNDER - BICYCLE,2017-08-07T00:00:00,2017,August,Monday,7,219,18,2017-08-10T00:00:00,2017,August,Thursday,10,222,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,,MT,6,BLK,450.0,STOLEN,12939,"{'type': 'Point', 'coordinates': (-79.37778379, 43.6430065)}"
-12974,1116,GO-20179012111,THEFT UNDER - BICYCLE,2017-08-10T00:00:00,2017,August,Thursday,10,222,17,2017-08-11T00:00:00,2017,August,Friday,11,223,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,FEATHER,RC,1,,1051.0,STOLEN,12940,"{'type': 'Point', 'coordinates': (-79.39958821, 43.64593284)}"
-12975,1118,GO-20171443387,B&E,2017-08-09T00:00:00,2017,August,Wednesday,9,221,22,2017-08-11T00:00:00,2017,August,Friday,11,223,23,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,TARMAC,RC,12,,5000.0,STOLEN,12941,"{'type': 'Point', 'coordinates': (-79.37302563, 43.64248042)}"
-12976,1119,GO-20171443387,B&E,2017-08-09T00:00:00,2017,August,Wednesday,9,221,22,2017-08-11T00:00:00,2017,August,Friday,11,223,23,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,SWORKS TARMAC,RC,12,,10000.0,STOLEN,12942,"{'type': 'Point', 'coordinates': (-79.37302563, 43.64248042)}"
-12977,1179,GO-20171474737,THEFT UNDER - BICYCLE,2017-08-06T00:00:00,2017,August,Sunday,6,218,15,2017-08-15T00:00:00,2017,August,Tuesday,15,227,18,D52,Toronto,77,Waterfront Communities-The Island (77),Go Station,Transit,OTHER,,OT,0,BLK,133.0,STOLEN,12943,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-12978,1184,GO-20179012781,THEFT UNDER - BICYCLE,2017-08-18T00:00:00,2017,August,Friday,18,230,19,2017-08-18T00:00:00,2017,August,Friday,18,230,21,D52,Toronto,77,Waterfront Communities-The Island (77),Convenience Stores,Commercial,OT,,RG,3,BLK,0.0,STOLEN,12944,"{'type': 'Point', 'coordinates': (-79.38314772, 43.64033919)}"
-12979,1191,GO-20179012821,THEFT UNDER,2017-08-19T00:00:00,2017,August,Saturday,19,231,15,2017-08-19T00:00:00,2017,August,Saturday,19,231,15,D51,Toronto,77,Waterfront Communities-The Island (77),Convenience Stores,Commercial,KH,URBAN SOUL,RC,1,BLK,1000.0,STOLEN,12945,"{'type': 'Point', 'coordinates': (-79.36278316, 43.64850402)}"
-12980,1192,GO-20179012840,THEFT UNDER - BICYCLE,2017-08-19T00:00:00,2017,August,Saturday,19,231,9,2017-08-20T00:00:00,2017,August,Sunday,20,232,0,D52,Toronto,77,Waterfront Communities-The Island (77),Unknown,Other,OT,,RG,10,BLU,0.0,STOLEN,12946,"{'type': 'Point', 'coordinates': (-79.38143561, 43.64291214)}"
-12981,1202,GO-20179012953,THEFT UNDER - BICYCLE,2017-08-21T00:00:00,2017,August,Monday,21,233,14,2017-08-21T00:00:00,2017,August,Monday,21,233,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,RAINER,MT,27,GRY,1200.0,STOLEN,12947,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-12982,1213,GO-20179013015,THEFT UNDER - BICYCLE,2017-08-22T00:00:00,2017,August,Tuesday,22,234,19,2017-08-22T00:00:00,2017,August,Tuesday,22,234,19,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,RC,16,PLE,0.0,STOLEN,12948,"{'type': 'Point', 'coordinates': (-79.37327274, 43.64725689)}"
-12983,1217,GO-20179013023,THEFT UNDER - BICYCLE,2017-08-20T00:00:00,2017,August,Sunday,20,232,18,2017-08-22T00:00:00,2017,August,Tuesday,22,234,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,VR40,RC,11,LGR,1670.0,STOLEN,12949,"{'type': 'Point', 'coordinates': (-79.40137395, 43.64770851)}"
-12984,1240,GO-20179013231,THEFT UNDER - BICYCLE,2017-08-18T00:00:00,2017,August,Friday,18,230,20,2017-08-24T00:00:00,2017,August,Thursday,24,236,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,1.5,RC,9,BLK,1250.0,STOLEN,12950,"{'type': 'Point', 'coordinates': (-79.39880646, 43.64142779)}"
-12985,1241,GO-20179013253,THEFT UNDER - BICYCLE,2017-08-24T00:00:00,2017,August,Thursday,24,236,16,2017-08-24T00:00:00,2017,August,Thursday,24,236,18,D14,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,CC,,MT,7,,599.0,STOLEN,12951,"{'type': 'Point', 'coordinates': (-79.39760717, 43.64495335000001)}"
-12986,1247,GO-20179013374,THEFT UNDER,2017-08-25T00:00:00,2017,August,Friday,25,237,16,2017-08-25T00:00:00,2017,August,Friday,25,237,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,KO,2010 JAKE THE S,RC,10,BLU,600.0,STOLEN,12952,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-12987,1248,GO-20179013378,B&E,2017-08-14T00:00:00,2017,August,Monday,14,226,8,2017-08-25T00:00:00,2017,August,Friday,25,237,22,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,GRY,400.0,STOLEN,12953,"{'type': 'Point', 'coordinates': (-79.36607348, 43.64932911)}"
-12988,1250,GO-20179013402,THEFT UNDER - BICYCLE,2017-06-10T00:00:00,2017,June,Saturday,10,161,11,2017-08-26T00:00:00,2017,August,Saturday,26,238,14,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,1,,1000.0,STOLEN,12954,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-12989,1252,GO-20179013410,THEFT UNDER - BICYCLE,2017-08-27T00:00:00,2017,August,Sunday,27,239,14,2017-08-27T00:00:00,2017,August,Sunday,27,239,20,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,20,OTH,2600.0,STOLEN,12955,"{'type': 'Point', 'coordinates': (-79.37142509, 43.64944981)}"
-12990,1253,GO-20179013429,THEFT UNDER,2017-08-26T00:00:00,2017,August,Saturday,26,238,21,2017-08-27T00:00:00,2017,August,Sunday,27,239,0,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ALIGHT,RG,21,GRY,480.0,STOLEN,12956,"{'type': 'Point', 'coordinates': (-79.39075649, 43.64913078)}"
-12991,1275,GO-20179013746,THEFT UNDER,2017-08-30T00:00:00,2017,August,Wednesday,30,242,19,2017-08-31T00:00:00,2017,August,Thursday,31,243,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KO,HAHANNA,MT,21,BRZ,100.0,STOLEN,12958,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-12992,1294,GO-20179013905,THEFT UNDER - BICYCLE,2017-08-22T00:00:00,2017,August,Tuesday,22,234,16,2017-09-02T00:00:00,2017,September,Saturday,2,245,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,KO,JAKE,RG,19,BLK,1000.0,STOLEN,12959,"{'type': 'Point', 'coordinates': (-79.39389489, 43.64651184)}"
-12993,1295,GO-20179013907,THEFT UNDER - BICYCLE,2017-09-02T00:00:00,2017,September,Saturday,2,245,15,2017-09-03T00:00:00,2017,September,Sunday,3,246,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ROAM,MT,16,GRY,1200.0,STOLEN,12960,"{'type': 'Point', 'coordinates': (-79.38542345, 43.63902804)}"
-12994,1296,GO-20179013907,THEFT UNDER - BICYCLE,2017-09-02T00:00:00,2017,September,Saturday,2,245,15,2017-09-03T00:00:00,2017,September,Sunday,3,246,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,DEFY,TO,20,BLK,1800.0,STOLEN,12961,"{'type': 'Point', 'coordinates': (-79.38542345, 43.63902804)}"
-12995,1305,GO-20179013975,B&E,2017-07-31T00:00:00,2017,July,Monday,31,212,11,2017-09-04T00:00:00,2017,September,Monday,4,247,20,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,2015 SPEC. VITA,TO,12,PLE,1965.0,STOLEN,12962,"{'type': 'Point', 'coordinates': (-79.37302563, 43.64248042)}"
-12996,1321,GO-20171602971,THEFT OVER - BICYCLE,2017-08-29T00:00:00,2017,August,Tuesday,29,241,19,2017-09-04T00:00:00,2017,September,Monday,4,247,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,EPIC XTR,MT,22,BLKRED,16000.0,STOLEN,12963,"{'type': 'Point', 'coordinates': (-79.4023568, 43.64319258)}"
-12997,1324,GO-20179014087,THEFT UNDER,2017-09-05T00:00:00,2017,September,Tuesday,5,248,21,2017-09-05T00:00:00,2017,September,Tuesday,5,248,23,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,CACTUS,MT,21,DGR,700.0,STOLEN,12964,"{'type': 'Point', 'coordinates': (-79.38542345, 43.63902804)}"
-12998,1326,GO-20179014110,THEFT UNDER,2017-08-28T00:00:00,2017,August,Monday,28,240,22,2017-09-06T00:00:00,2017,September,Wednesday,6,249,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,OT,1,BLK,500.0,STOLEN,12965,"{'type': 'Point', 'coordinates': (-79.38973372, 43.6466028)}"
-12999,1332,GO-20179014161,THEFT UNDER - BICYCLE,2017-08-04T00:00:00,2017,August,Friday,4,216,21,2017-09-06T00:00:00,2017,September,Wednesday,6,249,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,T1,RC,1,RED,1200.0,STOLEN,12966,"{'type': 'Point', 'coordinates': (-79.39075649, 43.64913078)}"
-13000,1341,GO-20179014261,THEFT UNDER,2017-08-28T00:00:00,2017,August,Monday,28,240,19,2017-09-08T00:00:00,2017,September,Friday,8,251,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,BAD BOY,OT,27,BLK,1500.0,STOLEN,12967,"{'type': 'Point', 'coordinates': (-79.38914103, 43.64945651)}"
-13001,1366,GO-20179014451,THEFT UNDER,2017-09-10T00:00:00,2017,September,Sunday,10,253,12,2017-09-11T00:00:00,2017,September,Monday,11,254,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,SILHOUETTE,RG,21,PLE,479.0,STOLEN,12968,"{'type': 'Point', 'coordinates': (-79.39389489, 43.64651184)}"
-13002,1381,GO-20179014571,THEFT UNDER,2017-08-28T00:00:00,2017,August,Monday,28,240,13,2017-09-12T00:00:00,2017,September,Tuesday,12,255,17,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NO,,MT,27,GRY,949.0,STOLEN,12969,"{'type': 'Point', 'coordinates': (-79.35677669, 43.6529262)}"
-13003,1404,GO-20179014744,B&E,2017-09-09T00:00:00,2017,September,Saturday,9,252,3,2017-09-14T00:00:00,2017,September,Thursday,14,257,12,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,,RC,24,BLK,2500.0,STOLEN,12970,"{'type': 'Point', 'coordinates': (-79.37524509, 43.64636121)}"
-13004,1411,GO-20179014799,THEFT UNDER - BICYCLE,2017-09-15T00:00:00,2017,September,Friday,15,258,12,2017-09-15T00:00:00,2017,September,Friday,15,258,18,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,1,GRY,350.0,STOLEN,12971,"{'type': 'Point', 'coordinates': (-79.37326707, 43.64867717)}"
-13005,1427,GO-20179014936,THEFT UNDER - BICYCLE,2017-09-14T00:00:00,2017,September,Thursday,14,257,9,2017-09-16T00:00:00,2017,September,Saturday,16,259,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,TRANSEO 2.0,RG,7,BLU,500.0,STOLEN,12972,"{'type': 'Point', 'coordinates': (-79.38632963, 43.64800878)}"
-13006,1444,GO-20179015058,THEFT UNDER - BICYCLE,2017-09-17T00:00:00,2017,September,Sunday,17,260,8,2017-09-18T00:00:00,2017,September,Monday,18,261,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,TR,920,TO,30,LGR,3500.0,STOLEN,12973,"{'type': 'Point', 'coordinates': (-79.39458503, 43.64442176)}"
-13007,1455,GO-20179015169,THEFT UNDER - BICYCLE,2017-09-19T00:00:00,2017,September,Tuesday,19,262,9,2017-09-19T00:00:00,2017,September,Tuesday,19,262,18,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,DEVINCI,ST. TROPEZ,RG,24,BLK,650.0,STOLEN,12974,"{'type': 'Point', 'coordinates': (-79.37302563, 43.64248042)}"
-13008,1468,GO-20179015311,THEFT UNDER - BICYCLE,2017-09-20T00:00:00,2017,September,Wednesday,20,263,11,2017-09-20T00:00:00,2017,September,Wednesday,20,263,19,D52,Toronto,77,Waterfront Communities-The Island (77),Schools During Supervised Activity,Educational,OT,C1 SERIES,RG,25,BLK,700.0,STOLEN,12975,"{'type': 'Point', 'coordinates': (-79.39025369, 43.64785592)}"
-13009,1470,GO-20179015300,THEFT UNDER,2017-09-20T00:00:00,2017,September,Wednesday,20,263,1,2017-09-20T00:00:00,2017,September,Wednesday,20,263,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,PUREFIX,RG,1,YEL,0.0,STOLEN,12976,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-13010,1472,GO-20171692775,THEFT UNDER - BICYCLE,2017-09-18T00:00:00,2017,September,Monday,18,261,1,2017-09-18T00:00:00,2017,September,Monday,18,261,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,LANGSTER,OT,1,BLU,800.0,STOLEN,12977,"{'type': 'Point', 'coordinates': (-79.38867784, 43.64396864)}"
-13011,1494,GO-20179015515,THEFT UNDER - BICYCLE,2017-09-22T00:00:00,2017,September,Friday,22,265,16,2017-09-22T00:00:00,2017,September,Friday,22,265,21,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,STOCKHOLM,TO,21,BLK,900.0,STOLEN,12978,"{'type': 'Point', 'coordinates': (-79.39882641, 43.63812175)}"
-13012,1495,GO-20179015515,THEFT UNDER - BICYCLE,2017-09-22T00:00:00,2017,September,Friday,22,265,16,2017-09-22T00:00:00,2017,September,Friday,22,265,21,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,TO,1,GRY,0.0,STOLEN,12979,"{'type': 'Point', 'coordinates': (-79.39882641, 43.63812175)}"
-13013,1501,GO-20171709357,THEFT UNDER - BICYCLE,2017-09-16T00:00:00,2017,September,Saturday,16,259,2,2017-09-20T00:00:00,2017,September,Wednesday,20,263,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KONA,ROVE AL,OT,16,BLK,1110.0,STOLEN,12980,"{'type': 'Point', 'coordinates': (-79.40060972, 43.63883803)}"
-13014,1502,GO-20179015556,THEFT UNDER - BICYCLE,2017-09-22T00:00:00,2017,September,Friday,22,265,18,2017-09-23T00:00:00,2017,September,Saturday,23,266,14,D51,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,OT,STOCKHOLM,RG,27,,200.0,STOLEN,12981,"{'type': 'Point', 'coordinates': (-79.37327274, 43.64725689)}"
-13015,1513,GO-20179015661,THEFT UNDER - BICYCLE,2017-09-24T00:00:00,2017,September,Sunday,24,267,12,2017-09-24T00:00:00,2017,September,Sunday,24,267,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,DENALI,RC,21,BLK,300.0,STOLEN,12982,"{'type': 'Point', 'coordinates': (-79.38994752, 43.64370303)}"
-13016,1515,GO-20179015683,THEFT UNDER - BICYCLE,2017-09-21T00:00:00,2017,September,Thursday,21,264,17,2017-09-25T00:00:00,2017,September,Monday,25,268,11,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,7.1FX,RG,7,BLK,650.0,STOLEN,12983,"{'type': 'Point', 'coordinates': (-79.37146354, 43.64763677)}"
-13017,1527,GO-20179015781,THEFT UNDER - BICYCLE,2017-09-25T00:00:00,2017,September,Monday,25,268,19,2017-09-25T00:00:00,2017,September,Monday,25,268,22,D52,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,NO,VFR 3,OT,24,BLK,350.0,STOLEN,12984,"{'type': 'Point', 'coordinates': (-79.38542345, 43.63902804)}"
-13018,1566,GO-20179016234,THEFT UNDER - BICYCLE,2017-10-01T00:00:00,2017,October,Sunday,1,274,18,2017-10-01T00:00:00,2017,October,Sunday,1,274,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,OT,18,BLU,500.0,STOLEN,12985,"{'type': 'Point', 'coordinates': (-79.38973372, 43.6466028)}"
-13019,1573,GO-20179016295,THEFT UNDER - BICYCLE,2017-10-01T00:00:00,2017,October,Sunday,1,274,0,2017-10-02T00:00:00,2017,October,Monday,2,275,15,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CA,QUICK 5,OT,24,GRY,700.0,STOLEN,12986,"{'type': 'Point', 'coordinates': (-79.35482206, 43.65337232)}"
-13020,1582,GO-20179016403,THEFT UNDER,2017-09-14T00:00:00,2017,September,Thursday,14,257,6,2017-10-03T00:00:00,2017,October,Tuesday,3,276,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SE 5000,MT,30,BLK,1600.0,STOLEN,12987,"{'type': 'Point', 'coordinates': (-79.395007, 43.64546954)}"
-13021,1589,GO-20179016478,THEFT UNDER - BICYCLE,2017-10-03T00:00:00,2017,October,Tuesday,3,276,21,2017-10-04T00:00:00,2017,October,Wednesday,4,277,20,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,PROXIMA ILGRAND,RC,50,RED,1245.0,STOLEN,12988,"{'type': 'Point', 'coordinates': (-79.40005716, 43.64445256)}"
-13022,1593,GO-20171804566,THEFT UNDER - BICYCLE,2017-10-05T00:00:00,2017,October,Thursday,5,278,3,2017-10-05T00:00:00,2017,October,Thursday,5,278,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,OT,0,,,STOLEN,12989,"{'type': 'Point', 'coordinates': (-79.3932382, 43.64839265)}"
-13023,1601,GO-20179016616,THEFT UNDER - BICYCLE,2017-10-06T00:00:00,2017,October,Friday,6,279,11,2017-10-06T00:00:00,2017,October,Friday,6,279,17,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,RG,21,BLU,1600.0,STOLEN,12990,"{'type': 'Point', 'coordinates': (-79.35971484, 43.65076046)}"
-13024,1633,GO-20179016869,THEFT UNDER,2017-09-13T00:00:00,2017,September,Wednesday,13,256,12,2017-10-10T00:00:00,2017,October,Tuesday,10,283,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,TRACE 20,RG,15,BLK,1158.0,STOLEN,12991,"{'type': 'Point', 'coordinates': (-79.38091602, 43.64168463)}"
-13025,1639,GO-20179016893,THEFT UNDER - BICYCLE,2017-10-01T00:00:00,2017,October,Sunday,1,274,21,2017-10-10T00:00:00,2017,October,Tuesday,10,283,20,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,KUOTA,RC,21,,2000.0,STOLEN,12992,"{'type': 'Point', 'coordinates': (-79.35482206, 43.65337232)}"
-13026,1650,GO-20179016998,THEFT UNDER - BICYCLE,2017-10-09T00:00:00,2017,October,Monday,9,282,13,2017-10-12T00:00:00,2017,October,Thursday,12,285,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,7100,RG,7,DBL,500.0,STOLEN,12993,"{'type': 'Point', 'coordinates': (-79.39309998, 43.64444244)}"
-13027,1653,GO-20179017089,THEFT UNDER,2017-10-09T00:00:00,2017,October,Monday,9,282,12,2017-10-13T00:00:00,2017,October,Friday,13,286,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,,RG,24,ONG,800.0,STOLEN,12994,"{'type': 'Point', 'coordinates': (-79.40306565, 43.64488902)}"
-13028,1667,GO-20179017303,THEFT UNDER - BICYCLE,2017-10-10T00:00:00,2017,October,Tuesday,10,283,7,2017-10-16T00:00:00,2017,October,Monday,16,289,9,D51,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,NO,AVANTI,RG,3,MRN,300.0,STOLEN,12995,"{'type': 'Point', 'coordinates': (-79.36616846, 43.64421276)}"
-13029,1694,GO-20179017597,THEFT UNDER - BICYCLE,2017-10-18T00:00:00,2017,October,Wednesday,18,291,15,2017-10-19T00:00:00,2017,October,Thursday,19,292,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,SILHOUETTE SPOR,RG,21,WHI,350.0,STOLEN,12996,"{'type': 'Point', 'coordinates': (-79.38542345, 43.63902804)}"
-13030,1720,GO-20179017906,THEFT UNDER - BICYCLE,2017-10-21T00:00:00,2017,October,Saturday,21,294,19,2017-10-23T00:00:00,2017,October,Monday,23,296,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,IN,,RG,7,WHI,400.0,STOLEN,12997,"{'type': 'Point', 'coordinates': (-79.37778379, 43.6430065)}"
-13031,13102,GO-20179014746,THEFT UNDER - BICYCLE,2017-09-03T00:00:00,2017,September,Sunday,3,246,19,2017-09-14T00:00:00,2017,September,Thursday,14,257,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,,MT,12,PLE,0.0,STOLEN,12998,"{'type': 'Point', 'coordinates': (-79.38973372, 43.6466028)}"
-13032,13106,GO-20179015544,THEFT UNDER,2017-09-23T00:00:00,2017,September,Saturday,23,266,3,2017-09-23T00:00:00,2017,September,Saturday,23,266,13,D52,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,PE,UO14,RC,6,RED,700.0,STOLEN,12999,"{'type': 'Point', 'coordinates': (-79.39578994, 43.64739695)}"
-13033,13116,GO-20179017546,THEFT UNDER,2017-10-10T00:00:00,2017,October,Tuesday,10,283,16,2017-10-19T00:00:00,2017,October,Thursday,19,292,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,BIG HIT 3,MT,9,RED,3136.0,STOLEN,13000,"{'type': 'Point', 'coordinates': (-79.39124176, 43.640111790000006)}"
-13034,13117,GO-20179017546,THEFT UNDER,2017-10-10T00:00:00,2017,October,Tuesday,10,283,16,2017-10-19T00:00:00,2017,October,Thursday,19,292,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,HOLD STEADY,RG,8,BLK,1433.0,STOLEN,13001,"{'type': 'Point', 'coordinates': (-79.39124176, 43.640111790000006)}"
-13035,13118,GO-20179017697,THEFT UNDER - BICYCLE,2017-10-18T00:00:00,2017,October,Wednesday,18,291,17,2017-10-20T00:00:00,2017,October,Friday,20,293,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,10,WHI,0.0,STOLEN,13002,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-13036,13120,GO-20179018114,THEFT UNDER - BICYCLE,2017-10-24T00:00:00,2017,October,Tuesday,24,297,6,2017-10-25T00:00:00,2017,October,Wednesday,25,298,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KH,,RG,1,BLK,800.0,STOLEN,13003,"{'type': 'Point', 'coordinates': (-79.39075649, 43.64913078)}"
-13037,13121,GO-20179018129,THEFT UNDER - BICYCLE,2017-10-09T00:00:00,2017,October,Monday,9,282,11,2017-10-25T00:00:00,2017,October,Wednesday,25,298,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,GENNIX,RC,12,BLK,3000.0,STOLEN,13004,"{'type': 'Point', 'coordinates': (-79.39592984, 43.64780696)}"
-13038,13123,GO-20179018472,THEFT UNDER,2017-10-29T00:00:00,2017,October,Sunday,29,302,5,2017-10-29T00:00:00,2017,October,Sunday,29,302,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,22,BLK,1500.0,STOLEN,13005,"{'type': 'Point', 'coordinates': (-79.39186446, 43.64164294)}"
-13039,13124,GO-20179018472,THEFT UNDER,2017-10-29T00:00:00,2017,October,Sunday,29,302,5,2017-10-29T00:00:00,2017,October,Sunday,29,302,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,21,BLK,5000.0,STOLEN,13006,"{'type': 'Point', 'coordinates': (-79.39186446, 43.64164294)}"
-13040,13449,GO-2017735052,B&E,2017-04-26T00:00:00,2017,April,Wednesday,26,116,7,2017-04-26T00:00:00,2017,April,Wednesday,26,116,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,XFR-3,OT,24,ONG,950.0,STOLEN,13007,"{'type': 'Point', 'coordinates': (-79.38091602, 43.64168463)}"
-13041,13140,GO-2018199574,B&E,2018-02-01T00:00:00,2018,February,Thursday,1,32,10,2018-02-01T00:00:00,2018,February,Thursday,1,32,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,ALLEZ,ROAD,MT,25,WHI,1300.0,STOLEN,13008,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-13042,13142,GO-20189003615,THEFT UNDER,2017-09-20T00:00:00,2017,September,Wednesday,20,263,22,2018-02-06T00:00:00,2018,February,Tuesday,6,37,15,D52,Toronto,77,Waterfront Communities-The Island (77),Convenience Stores,Commercial,OT,EASTSIDE,RC,1,BLK,700.0,STOLEN,13009,"{'type': 'Point', 'coordinates': (-79.39184935, 43.63765238)}"
-13043,13145,GO-2018449259,B&E,2018-02-25T00:00:00,2018,February,Sunday,25,56,8,2018-03-11T00:00:00,2018,March,Sunday,11,70,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OTHER,AIR9,MT,10,SILWHI,1700.0,STOLEN,13010,"{'type': 'Point', 'coordinates': (-79.39025369, 43.64785592)}"
-13044,13155,GO-20189014878,THEFT UNDER - BICYCLE,2018-05-12T00:00:00,2018,May,Saturday,12,132,13,2018-05-14T00:00:00,2018,May,Monday,14,134,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,1,YEL,500.0,STOLEN,13011,"{'type': 'Point', 'coordinates': (-79.39124574, 43.64342012)}"
-13045,13156,GO-20189015022,THEFT UNDER - BICYCLE,2018-05-14T00:00:00,2018,May,Monday,14,134,21,2018-05-15T00:00:00,2018,May,Tuesday,15,135,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,RA,REVENIO 2.0 CAR,RC,14,GRY,2000.0,STOLEN,13012,"{'type': 'Point', 'coordinates': (-79.38143561, 43.64291214)}"
-13046,13161,GO-2018947297,B&E,2018-04-21T00:00:00,2018,April,Saturday,21,111,19,2018-05-26T00:00:00,2018,May,Saturday,26,146,7,D52,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,REGAL,BARRON,RC,1,BLK,550.0,STOLEN,13013,"{'type': 'Point', 'coordinates': (-79.39124176, 43.640111790000006)}"
-13047,3437,GO-20181682220,THEFT UNDER - BICYCLE,2018-09-08T00:00:00,2018,September,Saturday,8,251,8,2018-09-08T00:00:00,2018,September,Saturday,8,251,16,D52,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,OPUS,,OT,0,LBL,800.0,STOLEN,15663,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-13048,13164,GO-20181009019,THEFT UNDER - BICYCLE,2018-06-03T00:00:00,2018,June,Sunday,3,154,20,2018-06-04T00:00:00,2018,June,Monday,4,155,8,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SUPERCYCLE,NITRO XT,OT,21,BLK,170.0,STOLEN,13014,"{'type': 'Point', 'coordinates': (-79.39184935, 43.63765238)}"
-13049,13168,GO-20189019062,THEFT UNDER - BICYCLE,2018-06-17T00:00:00,2018,June,Sunday,17,168,14,2018-06-17T00:00:00,2018,June,Sunday,17,168,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,DOMANE 2.0,TO,22,BLK,1800.0,STOLEN,13015,"{'type': 'Point', 'coordinates': (-79.38542345, 43.63902804)}"
-13050,13171,GO-20189019803,THEFT UNDER - BICYCLE,2018-06-21T00:00:00,2018,June,Thursday,21,172,21,2018-06-22T00:00:00,2018,June,Friday,22,173,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,MT,21,,500.0,STOLEN,13016,"{'type': 'Point', 'coordinates': (-79.39184935, 43.63765238)}"
-13051,13175,GO-20189020555,THEFT UNDER - BICYCLE,2018-06-27T00:00:00,2018,June,Wednesday,27,178,23,2018-06-28T00:00:00,2018,June,Thursday,28,179,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,RAPID 0,RG,21,GRY,1500.0,STOLEN,13017,"{'type': 'Point', 'coordinates': (-79.39025369, 43.64785592)}"
-13052,13176,GO-20189020917,THEFT UNDER - BICYCLE,2018-06-26T00:00:00,2018,June,Tuesday,26,177,17,2018-07-02T00:00:00,2018,July,Monday,2,183,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MA,,RG,28,BLK,700.0,STOLEN,13018,"{'type': 'Point', 'coordinates': (-79.38607074, 43.64739453)}"
-13053,13177,GO-20189021660,THEFT UNDER - BICYCLE,2018-07-08T00:00:00,2018,July,Sunday,8,189,17,2018-07-09T00:00:00,2018,July,Monday,9,190,0,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,GT,GT AGGRESSOR,MT,7,DBL,500.0,STOLEN,13019,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-13054,13178,GO-20189021846,THEFT UNDER - BICYCLE,2018-07-10T00:00:00,2018,July,Tuesday,10,191,8,2018-07-10T00:00:00,2018,July,Tuesday,10,191,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,ACCEL,RC,14,BLK,375.0,STOLEN,13020,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-13055,13179,GO-20189021866,THEFT UNDER - BICYCLE,2018-07-03T00:00:00,2018,July,Tuesday,3,184,21,2018-07-10T00:00:00,2018,July,Tuesday,10,191,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,,RG,21,BLK,450.0,STOLEN,13021,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-13056,13183,GO-20189022366,THEFT UNDER - BICYCLE,2018-07-12T00:00:00,2018,July,Thursday,12,193,17,2018-07-13T00:00:00,2018,July,Friday,13,194,22,D52,Toronto,77,Waterfront Communities-The Island (77),Go Station,Transit,HF,REGION 3.0,MT,21,BRN,200.0,STOLEN,13022,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-13057,13185,GO-20189023231,THEFT UNDER,2018-07-20T00:00:00,2018,July,Friday,20,201,11,2018-07-20T00:00:00,2018,July,Friday,20,201,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,WOMEN'S KROSSPO,RG,21,BLU,499.0,STOLEN,13023,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-13058,13188,GO-20189023949,THEFT UNDER - BICYCLE,2018-07-24T00:00:00,2018,July,Tuesday,24,205,18,2018-07-25T00:00:00,2018,July,Wednesday,25,206,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,SCRAMBLER,MT,21,BLK,500.0,STOLEN,13024,"{'type': 'Point', 'coordinates': (-79.3932382, 43.64839265)}"
-13059,9644,GO-2015867534,B&E W'INTENT,2015-05-24T00:00:00,2015,May,Sunday,24,144,8,2015-05-24T00:00:00,2015,May,Sunday,24,144,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,TREK,MADONE,OT,23,WHIBLK,3500.0,STOLEN,13025,"{'type': 'Point', 'coordinates': (-79.39592984, 43.64780696)}"
-13060,13195,GO-20189026620,THEFT UNDER - BICYCLE,2018-08-15T00:00:00,2018,August,Wednesday,15,227,20,2018-08-16T00:00:00,2018,August,Thursday,16,228,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE 2,RG,21,BLK,700.0,STOLEN,13026,"{'type': 'Point', 'coordinates': (-79.38914103, 43.64945651)}"
-13061,13201,GO-20181579233,THEFT UNDER - BICYCLE,2018-08-20T00:00:00,2018,August,Monday,20,232,9,2018-08-26T00:00:00,2018,August,Sunday,26,238,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,REVOLT,MT,18,,,STOLEN,13027,"{'type': 'Point', 'coordinates': (-79.37778379, 43.6430065)}"
-13062,13202,GO-20189027984,THEFT UNDER - BICYCLE,2018-08-26T00:00:00,2018,August,Sunday,26,238,10,2018-08-26T00:00:00,2018,August,Sunday,26,238,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CRUISER,TO,1,BLK,1000.0,STOLEN,13028,"{'type': 'Point', 'coordinates': (-79.39204821, 43.64885072)}"
-13063,13207,GO-20189028842,THEFT UNDER - BICYCLE,2018-09-01T00:00:00,2018,September,Saturday,1,244,22,2018-09-02T00:00:00,2018,September,Sunday,2,245,8,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NO,,TO,30,,3000.0,STOLEN,13029,"{'type': 'Point', 'coordinates': (-79.38442526, 43.6402504)}"
-13064,13211,GO-20189029736,THEFT UNDER - BICYCLE,2018-09-09T00:00:00,2018,September,Sunday,9,252,9,2018-09-09T00:00:00,2018,September,Sunday,9,252,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,SIRIUS,RG,21,BLK,600.0,STOLEN,13030,"{'type': 'Point', 'coordinates': (-79.37787283, 43.64321708)}"
-13065,13219,GO-20189032207,THEFT UNDER,2018-09-24T00:00:00,2018,September,Monday,24,267,9,2018-09-28T00:00:00,2018,September,Friday,28,271,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,PATH,MT,21,BLK,800.0,STOLEN,13031,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-13066,13221,GO-20189032801,THEFT UNDER - BICYCLE,2018-08-12T00:00:00,2018,August,Sunday,12,224,14,2018-10-03T00:00:00,2018,October,Wednesday,3,276,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,SC,,RG,40,RED,200.0,STOLEN,13032,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-13067,13222,GO-20189033081,THEFT UNDER - BICYCLE,2018-10-06T00:00:00,2018,October,Saturday,6,279,4,2018-10-06T00:00:00,2018,October,Saturday,6,279,5,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,FJ,PALETTE,RG,8,BLK,700.0,STOLEN,13033,"{'type': 'Point', 'coordinates': (-79.38867784, 43.64396864)}"
-13068,13223,GO-20189034962,THEFT UNDER - BICYCLE,2018-10-21T00:00:00,2018,October,Sunday,21,294,12,2018-10-21T00:00:00,2018,October,Sunday,21,294,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,MT,18,GRY,0.0,STOLEN,13034,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-13069,13231,GO-20189039413,THEFT UNDER - BICYCLE,2018-11-22T00:00:00,2018,November,Thursday,22,326,7,2018-11-22T00:00:00,2018,November,Thursday,22,326,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,0851FFT830,RC,50,BLK,689.0,STOLEN,13035,"{'type': 'Point', 'coordinates': (-79.38250349, 43.64061295)}"
-13070,13232,GO-20189039954,THEFT UNDER - BICYCLE,2018-11-27T00:00:00,2018,November,Tuesday,27,331,8,2018-11-27T00:00:00,2018,November,Tuesday,27,331,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,SLR03,RC,11,BLK,3600.0,STOLEN,13036,"{'type': 'Point', 'coordinates': (-79.39186446, 43.64164294)}"
-13071,13234,GO-20189042646,THEFT UNDER - BICYCLE,2018-12-17T00:00:00,2018,December,Monday,17,351,13,2018-12-19T00:00:00,2018,December,Wednesday,19,353,8,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,,RG,5,BGE,400.0,STOLEN,13037,"{'type': 'Point', 'coordinates': (-79.38542345, 43.63902804)}"
-13072,13235,GO-20189043289,THEFT UNDER - BICYCLE,2018-12-22T00:00:00,2018,December,Saturday,22,356,12,2018-12-25T00:00:00,2018,December,Tuesday,25,359,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,SLR03,RC,11,RED,2190.0,STOLEN,13038,"{'type': 'Point', 'coordinates': (-79.39124176, 43.640111790000006)}"
-13073,13236,GO-20189043320,THEFT UNDER - BICYCLE,2018-12-26T00:00:00,2018,December,Wednesday,26,360,14,2018-12-26T00:00:00,2018,December,Wednesday,26,360,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,GRINDER 2,OT,18,GRY,3200.0,STOLEN,13039,"{'type': 'Point', 'coordinates': (-79.39184935, 43.63765238)}"
-13074,13238,GO-20199005222,THEFT UNDER - BICYCLE,2019-02-07T00:00:00,2019,February,Thursday,7,38,11,2019-02-12T00:00:00,2019,February,Tuesday,12,43,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MA,,MT,18,SIL,1000.0,STOLEN,13040,"{'type': 'Point', 'coordinates': (-79.39296466, 43.64056148000001)}"
-13075,11931,GO-20169007826,FTC PROBATION ORDER,2016-06-27T00:00:00,2016,June,Monday,27,179,23,2016-07-27T00:00:00,2016,July,Wednesday,27,209,14,D14,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,OT,S1,RC,20,RED,3000.0,STOLEN,13041,"{'type': 'Point', 'coordinates': (-79.395007, 43.64546954)}"
-13076,16776,GO-20199020539,THEFT UNDER,2019-06-14T00:00:00,2019,June,Friday,14,165,23,2019-06-29T00:00:00,2019,June,Saturday,29,180,15,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,16 SIRRUS SPORT,RG,16,BLK,1224.0,STOLEN,13042,"{'type': 'Point', 'coordinates': (-79.37142509, 43.64944981)}"
-13077,13457,GO-2017917667,THEFT UNDER,2017-05-15T00:00:00,2017,May,Monday,15,135,12,2017-05-24T00:00:00,2017,May,Wednesday,24,144,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,HYBRID,MT,5,BLKBLU,2000.0,STOLEN,13043,"{'type': 'Point', 'coordinates': (-79.38363997, 43.64159187)}"
-13078,14543,GO-20199022347,THEFT UNDER - BICYCLE,2019-07-15T00:00:00,2019,July,Monday,15,196,7,2019-07-15T00:00:00,2019,July,Monday,15,196,14,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,CONTEND,RC,7,BLK,1200.0,STOLEN,13044,"{'type': 'Point', 'coordinates': (-79.40059685, 43.64573236)}"
-13079,13240,GO-20199008035,THEFT UNDER - BICYCLE,2019-03-12T00:00:00,2019,March,Tuesday,12,71,12,2019-03-12T00:00:00,2019,March,Tuesday,12,71,12,D52,Toronto,77,Waterfront Communities-The Island (77),Ttc Subway Station,Transit,OT,,RG,20,RED,150.0,STOLEN,13045,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-13080,13242,GO-20199011697,THEFT UNDER - BICYCLE,2019-04-13T00:00:00,2019,April,Saturday,13,103,11,2019-04-13T00:00:00,2019,April,Saturday,13,103,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,THE ADMIRAL,RG,1,,350.0,STOLEN,13046,"{'type': 'Point', 'coordinates': (-79.38946509, 43.64593813)}"
-13081,13247,GO-2019950303,B&E,2019-05-12T00:00:00,2019,May,Sunday,12,132,21,2019-05-24T00:00:00,2019,May,Friday,24,144,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GT,TRANSIO,RG,21,GRYSIL,600.0,STOLEN,13047,"{'type': 'Point', 'coordinates': (-79.39184935, 43.63765238)}"
-13082,13253,GO-20199019153,THEFT UNDER,2019-06-08T00:00:00,2019,June,Saturday,8,159,20,2019-06-18T00:00:00,2019,June,Tuesday,18,169,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,1,WHI,300.0,STOLEN,13048,"{'type': 'Point', 'coordinates': (-79.39124176, 43.640111790000006)}"
-13083,13311,GO-20159003635,THEFT UNDER,2015-06-14T00:00:00,2015,June,Sunday,14,165,18,2015-06-15T00:00:00,2015,June,Monday,15,166,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,RA,,RG,21,SIL,150.0,STOLEN,13063,"{'type': 'Point', 'coordinates': (-79.39124176, 43.640111790000006)}"
-13084,13257,GO-20199019451,THEFT UNDER,2019-05-08T00:00:00,2019,May,Wednesday,8,128,20,2019-06-20T00:00:00,2019,June,Thursday,20,171,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,ALLEZ SPORT,RC,30,WHI,1525.0,STOLEN,13049,"{'type': 'Point', 'coordinates': (-79.37933296, 43.64221959)}"
-13085,13258,GO-20199019747,THEFT UNDER,2019-06-22T00:00:00,2019,June,Saturday,22,173,5,2019-06-23T00:00:00,2019,June,Sunday,23,174,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,21,,1600.0,STOLEN,13050,"{'type': 'Point', 'coordinates': (-79.38330674, 43.64067063)}"
-13086,13260,GO-20199020607,THEFT UNDER,2018-12-20T00:00:00,2018,December,Thursday,20,354,17,2019-06-30T00:00:00,2019,June,Sunday,30,181,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,SIRRUS,RG,18,BLU,1100.0,STOLEN,13051,"{'type': 'Point', 'coordinates': (-79.39592984, 43.64780696)}"
-13087,13261,GO-20199020701,THEFT UNDER,2019-07-02T00:00:00,2019,July,Tuesday,2,183,10,2019-07-02T00:00:00,2019,July,Tuesday,2,183,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,DUAL SPORT 1,MT,21,GRN,1500.0,STOLEN,13052,"{'type': 'Point', 'coordinates': (-79.38250349, 43.64061295)}"
-13088,13263,GO-20191230456,B&E,2019-07-01T00:00:00,2019,July,Monday,1,182,22,2019-07-03T00:00:00,2019,July,Wednesday,3,184,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NORCO,VFR6,RG,0,BLKGRY,1000.0,STOLEN,13053,"{'type': 'Point', 'coordinates': (-79.39592984, 43.64780696)}"
-13089,13274,GO-20143209003,PROPERTY - FOUND,2014-10-31T00:00:00,2014,October,Friday,31,304,7,2014-11-12T00:00:00,2014,November,Wednesday,12,316,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SUPERCYCLE,BREEZW,MT,10,,0.0,STOLEN,13054,"{'type': 'Point', 'coordinates': (-79.38994752, 43.64370303)}"
-13090,13277,GO-20149008507,THEFT UNDER,2014-11-22T00:00:00,2014,November,Saturday,22,326,11,2014-12-02T00:00:00,2014,December,Tuesday,2,336,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,GIANT RINCON,MT,24,WHI,600.0,STOLEN,13055,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-13091,13279,GO-20149008664,THEFT UNDER,2014-12-04T00:00:00,2014,December,Thursday,4,338,11,2014-12-10T00:00:00,2014,December,Wednesday,10,344,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,,RC,18,LBL,500.0,STOLEN,13056,"{'type': 'Point', 'coordinates': (-79.39175463, 43.64474761000001)}"
-13092,13289,GO-2015717052,THEFT UNDER,2015-04-22T00:00:00,2015,April,Wednesday,22,112,14,2015-04-30T00:00:00,2015,April,Thursday,30,120,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,,MT,21,REDWHI,800.0,STOLEN,13057,"{'type': 'Point', 'coordinates': (-79.38653359, 43.63885304)}"
-13093,13293,GO-2015745888,THEFT UNDER,2015-05-04T00:00:00,2015,May,Monday,4,124,23,2015-05-05T00:00:00,2015,May,Tuesday,5,125,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GIANT,SEEK,TO,20,SIL,1000.0,STOLEN,13058,"{'type': 'Point', 'coordinates': (-79.38994752, 43.64370303)}"
-13094,13304,GO-2015917139,THEFT UNDER,2015-05-23T00:00:00,2015,May,Saturday,23,143,0,2015-06-03T00:00:00,2015,June,Wednesday,3,154,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OTHER,PRO MIYATA,RG,12,RED,300.0,STOLEN,13059,"{'type': 'Point', 'coordinates': (-79.39124574, 43.64342012)}"
-13095,13305,GO-20159003325,THEFT UNDER,2015-06-03T00:00:00,2015,June,Wednesday,3,154,21,2015-06-04T00:00:00,2015,June,Thursday,4,155,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,GHOST,MT,18,BLK,575.0,STOLEN,13060,"{'type': 'Point', 'coordinates': (-79.38607074, 43.64739453)}"
-13096,13309,GO-20159003482,THEFT UNDER,2015-05-29T00:00:00,2015,May,Friday,29,149,9,2015-06-09T00:00:00,2015,June,Tuesday,9,160,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ST. TROPEZ,RG,24,BGE,539.0,STOLEN,13061,"{'type': 'Point', 'coordinates': (-79.38867784, 43.64396864)}"
-13097,13310,GO-20159003635,THEFT UNDER,2015-06-14T00:00:00,2015,June,Sunday,14,165,18,2015-06-15T00:00:00,2015,June,Monday,15,166,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,RA,,RG,21,WHI,150.0,STOLEN,13062,"{'type': 'Point', 'coordinates': (-79.39124176, 43.640111790000006)}"
-13098,13317,GO-20151111120,THEFT UNDER,2015-07-02T00:00:00,2015,July,Thursday,2,183,6,2015-07-02T00:00:00,2015,July,Thursday,2,183,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,ROCKY MOUNTAIN,FSA,RG,5,BLK,,STOLEN,13064,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-13099,13325,GO-20159005390,THEFT UNDER,2015-08-05T00:00:00,2015,August,Wednesday,5,217,14,2015-08-06T00:00:00,2015,August,Thursday,6,218,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,7.3 FX WSD 2013,OT,27,BLK,400.0,STOLEN,13065,"{'type': 'Point', 'coordinates': (-79.39184935, 43.63765238)}"
-13100,13331,GO-20159006067,THEFT UNDER,2015-08-12T00:00:00,2015,August,Wednesday,12,224,22,2015-08-20T00:00:00,2015,August,Thursday,20,232,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,MT,18,BLK,600.0,STOLEN,13066,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-13101,13333,GO-20151488189,THEFT UNDER,2015-08-29T00:00:00,2015,August,Saturday,29,241,12,2015-08-29T00:00:00,2015,August,Saturday,29,241,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,EMMO,,EL,1,BLK,1800.0,STOLEN,13067,"{'type': 'Point', 'coordinates': (-79.37778379, 43.6430065)}"
-13102,13338,GO-20159006809,THEFT UNDER,2015-09-04T00:00:00,2015,September,Friday,4,247,8,2015-09-05T00:00:00,2015,September,Saturday,5,248,1,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,BOSTON,FO,1,BLK,1000.0,STOLEN,13068,"{'type': 'Point', 'coordinates': (-79.38946509, 43.64593813)}"
-13103,13340,GO-20159007259,THEFT UNDER,2015-09-15T00:00:00,2015,September,Tuesday,15,258,7,2015-09-16T00:00:00,2015,September,Wednesday,16,259,7,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RM,WHISTLER 30,OT,27,BRN,1000.0,STOLEN,13069,"{'type': 'Point', 'coordinates': (-79.38914103, 43.64945651)}"
-13104,13344,GO-20159008374,THEFT UNDER,2015-10-07T00:00:00,2015,October,Wednesday,7,280,22,2015-10-09T00:00:00,2015,October,Friday,9,282,8,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,,OT,9,WHI,660.0,STOLEN,13070,"{'type': 'Point', 'coordinates': (-79.38442526, 43.6402504)}"
-13105,13349,GO-20159010103,THEFT UNDER,2015-11-20T00:00:00,2015,November,Friday,20,324,19,2015-11-23T00:00:00,2015,November,Monday,23,327,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NO,PINNACLE,RG,18,GRN,150.0,STOLEN,13071,"{'type': 'Point', 'coordinates': (-79.38498159, 43.64477493)}"
-13106,13353,GO-20159010957,THEFT UNDER,2015-10-20T00:00:00,2015,October,Tuesday,20,293,4,2015-12-15T00:00:00,2015,December,Tuesday,15,349,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,10,BLK,2030.0,STOLEN,13072,"{'type': 'Point', 'coordinates': (-79.38888568, 43.64881159)}"
-13107,13356,GO-20169000559,THEFT UNDER,2016-01-16T00:00:00,2016,January,Saturday,16,16,14,2016-01-16T00:00:00,2016,January,Saturday,16,16,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,KARAKORAM COMP,MT,27,BLK,600.0,STOLEN,13073,"{'type': 'Point', 'coordinates': (-79.38330674, 43.64067063)}"
-13108,13357,GO-20169002109,THEFT UNDER - BICYCLE,2016-02-29T00:00:00,2016,February,Monday,29,60,16,2016-03-07T00:00:00,2016,March,Monday,7,67,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,RA,26517BLK,RG,5,BLK,840.0,STOLEN,13074,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-13109,13366,GO-20169003702,THEFT UNDER - BICYCLE,2016-04-22T00:00:00,2016,April,Friday,22,113,10,2016-04-23T00:00:00,2016,April,Saturday,23,114,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RG,24,BLK,700.0,STOLEN,13075,"{'type': 'Point', 'coordinates': (-79.37778379, 43.6430065)}"
-13110,13367,GO-20169003715,THEFT UNDER,2016-04-22T00:00:00,2016,April,Friday,22,113,21,2016-04-23T00:00:00,2016,April,Saturday,23,114,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,ALLANT,RG,21,GRY,700.0,STOLEN,13076,"{'type': 'Point', 'coordinates': (-79.38363997, 43.64159187)}"
-13111,13368,GO-20169003781,THEFT UNDER,2016-04-19T00:00:00,2016,April,Tuesday,19,110,20,2016-04-25T00:00:00,2016,April,Monday,25,116,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,FCR,TO,21,BLK,550.0,STOLEN,13077,"{'type': 'Point', 'coordinates': (-79.39186446, 43.64164294)}"
-13112,13374,GO-20169004854,THEFT UNDER,2016-05-23T00:00:00,2016,May,Monday,23,144,14,2016-05-23T00:00:00,2016,May,Monday,23,144,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,GT,HYBRID/CITY,MT,18,BLU,500.0,STOLEN,13078,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-13113,13376,GO-20169005332,THEFT UNDER,2016-05-26T00:00:00,2016,May,Thursday,26,147,17,2016-06-03T00:00:00,2016,June,Friday,3,155,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,7.2 FX,RG,24,BLK,725.0,STOLEN,13079,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-13114,13379,GO-20169005531,THEFT UNDER,2016-06-01T00:00:00,2016,June,Wednesday,1,153,19,2016-06-09T00:00:00,2016,June,Thursday,9,161,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CC,700C XSPORT,RG,18,BLU,400.0,STOLEN,13080,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-13115,13381,GO-20169005695,THEFT UNDER,2016-06-03T00:00:00,2016,June,Friday,3,155,22,2016-06-13T00:00:00,2016,June,Monday,13,165,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BI,,OT,1,BLK,600.0,STOLEN,13081,"{'type': 'Point', 'coordinates': (-79.38653359, 43.63885304)}"
-13116,13384,GO-20161113350,THEFT UNDER - BICYCLE,2016-06-24T00:00:00,2016,June,Friday,24,176,21,2016-06-25T00:00:00,2016,June,Saturday,25,177,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,REVOLT 1,RG,10,,800.0,STOLEN,13082,"{'type': 'Point', 'coordinates': (-79.39075649, 43.64913078)}"
-13117,13388,GO-20169007040,THEFT UNDER - BICYCLE,2016-07-10T00:00:00,2016,July,Sunday,10,192,3,2016-07-11T00:00:00,2016,July,Monday,11,193,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,6,BLK,150.0,STOLEN,13083,"{'type': 'Point', 'coordinates': (-79.38946509, 43.64593813)}"
-13118,13389,GO-20169007202,THEFT UNDER,2016-07-12T00:00:00,2016,July,Tuesday,12,194,18,2016-07-14T00:00:00,2016,July,Thursday,14,196,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GF,FAT POSSUM LX,MT,21,,2970.0,STOLEN,13084,"{'type': 'Point', 'coordinates': (-79.38914103, 43.64945651)}"
-13119,13392,GO-20169007375,THEFT UNDER - BICYCLE,2016-07-18T00:00:00,2016,July,Monday,18,200,21,2016-07-18T00:00:00,2016,July,Monday,18,200,22,D52,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,OT,BIKE CRUISER,MT,18,,1200.0,STOLEN,13085,"{'type': 'Point', 'coordinates': (-79.38542345, 43.63902804)}"
-13120,13394,GO-20169007637,THEFT UNDER - BICYCLE,2016-07-23T00:00:00,2016,July,Saturday,23,205,9,2016-07-23T00:00:00,2016,July,Saturday,23,205,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KO,JAKE THE SNAKE,OT,22,LBL,1500.0,STOLEN,13086,"{'type': 'Point', 'coordinates': (-79.38973372, 43.6466028)}"
-13121,13396,GO-20169007793,THEFT UNDER,2016-07-26T00:00:00,2016,July,Tuesday,26,208,11,2016-07-26T00:00:00,2016,July,Tuesday,26,208,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,,RG,8,BLK,550.0,STOLEN,13087,"{'type': 'Point', 'coordinates': (-79.38973372, 43.6466028)}"
-13122,13397,GO-20169007870,THEFT UNDER - BICYCLE,2016-07-27T00:00:00,2016,July,Wednesday,27,209,14,2016-07-28T00:00:00,2016,July,Thursday,28,210,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CC,SUPERCYCLE,MT,8,BLU,150.0,STOLEN,13088,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-13123,13399,GO-20169008033,THEFT UNDER - BICYCLE,2016-07-29T00:00:00,2016,July,Friday,29,211,14,2016-08-01T00:00:00,2016,August,Monday,1,214,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,RM,METROPOLIS,RG,27,BLK,695.0,STOLEN,13089,"{'type': 'Point', 'coordinates': (-79.38143561, 43.64291214)}"
-13124,13402,GO-20169008456,THEFT UNDER - BICYCLE,2016-08-08T00:00:00,2016,August,Monday,8,221,3,2016-08-09T00:00:00,2016,August,Tuesday,9,222,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SUPER SPRINT,RC,12,BLU,600.0,STOLEN,13090,"{'type': 'Point', 'coordinates': (-79.39204821, 43.64885072)}"
-13125,13408,GO-20169009093,THEFT UNDER,2016-08-19T00:00:00,2016,August,Friday,19,232,21,2016-08-19T00:00:00,2016,August,Friday,19,232,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,SIRRUS,RG,24,BLK,600.0,STOLEN,13091,"{'type': 'Point', 'coordinates': (-79.39553097, 43.64673969)}"
-13126,13410,GO-20169009653,THEFT UNDER - BICYCLE,2016-08-28T00:00:00,2016,August,Sunday,28,241,13,2016-08-29T00:00:00,2016,August,Monday,29,242,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,FX 7.0 WOMEN SP,RG,21,GRY,650.0,STOLEN,13092,"{'type': 'Point', 'coordinates': (-79.38994752, 43.64370303)}"
-13127,13413,GO-20169009779,THEFT UNDER,2016-08-31T00:00:00,2016,August,Wednesday,31,244,20,2016-08-31T00:00:00,2016,August,Wednesday,31,244,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,MODENA,RG,21,BLK,500.0,STOLEN,13093,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-13128,13414,GO-20169010054,THEFT UNDER - BICYCLE,2016-09-06T00:00:00,2016,September,Tuesday,6,250,13,2016-09-06T00:00:00,2016,September,Tuesday,6,250,15,D52,Toronto,77,Waterfront Communities-The Island (77),Convenience Stores,Commercial,OT,MODENA,OT,6,BLU,400.0,STOLEN,13094,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-13129,13415,GO-20169010329,THEFT UNDER,2016-08-12T00:00:00,2016,August,Friday,12,225,21,2016-09-12T00:00:00,2016,September,Monday,12,256,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,1,,500.0,STOLEN,13095,"{'type': 'Point', 'coordinates': (-79.39175463, 43.64474761000001)}"
-13130,13418,GO-20161636563,THEFT UNDER - BICYCLE,2016-09-11T00:00:00,2016,September,Sunday,11,255,11,2016-09-15T00:00:00,2016,September,Thursday,15,259,8,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,ESCAPE,OT,1,,633.0,STOLEN,13096,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-13131,13423,GO-20169011208,THEFT UNDER,2016-09-27T00:00:00,2016,September,Tuesday,27,271,9,2016-09-27T00:00:00,2016,September,Tuesday,27,271,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,1965,OT,12,PNK,600.0,STOLEN,13097,"{'type': 'Point', 'coordinates': (-79.3932382, 43.64839265)}"
-13132,13427,GO-20169012317,THEFT UNDER,2016-10-19T00:00:00,2016,October,Wednesday,19,293,13,2016-10-19T00:00:00,2016,October,Wednesday,19,293,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,F800 FURIO,MT,21,BLK,2800.0,STOLEN,13098,"{'type': 'Point', 'coordinates': (-79.3881121, 43.64696458)}"
-13133,13430,GO-20161982857,THEFT UNDER - BICYCLE,2016-10-28T00:00:00,2016,October,Friday,28,302,12,2016-11-07T00:00:00,2016,November,Monday,7,312,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,FRAME,ELITE,RG,24,WHI,500.0,STOLEN,13099,"{'type': 'Point', 'coordinates': (-79.38542345, 43.63902804)}"
-13134,13438,GO-20179000746,THEFT UNDER,2016-12-31T00:00:00,2016,December,Saturday,31,366,13,2017-01-16T00:00:00,2017,January,Monday,16,16,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,1,,250.0,STOLEN,13100,"{'type': 'Point', 'coordinates': (-79.38143561, 43.64291214)}"
-13135,13441,GO-20179004502,THEFT UNDER - BICYCLE,2017-04-10T00:00:00,2017,April,Monday,10,100,9,2017-04-10T00:00:00,2017,April,Monday,10,100,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,HARDROCK,MT,21,WHI,679.0,STOLEN,13101,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-13136,13446,GO-20179005124,THEFT UNDER,2017-04-23T00:00:00,2017,April,Sunday,23,113,14,2017-04-23T00:00:00,2017,April,Sunday,23,113,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,10,BLU,0.0,STOLEN,13102,"{'type': 'Point', 'coordinates': (-79.39048611, 43.645008190000006)}"
-13137,13448,GO-2017735052,B&E,2017-04-26T00:00:00,2017,April,Wednesday,26,116,7,2017-04-26T00:00:00,2017,April,Wednesday,26,116,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NORCO,,MT,10,ONG,750.0,STOLEN,13103,"{'type': 'Point', 'coordinates': (-79.38091602, 43.64168463)}"
-13138,15726,GO-20199036815,THEFT UNDER,2019-11-06T00:00:00,2019,November,Wednesday,6,310,17,2019-11-07T00:00:00,2019,November,Thursday,7,311,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RM,,MT,22,DBL,1500.0,STOLEN,13104,"{'type': 'Point', 'coordinates': (-79.3881121, 43.64696458)}"
-13139,13458,GO-20179007266,THEFT UNDER - BICYCLE,2017-05-19T00:00:00,2017,May,Friday,19,139,17,2017-05-30T00:00:00,2017,May,Tuesday,30,150,21,D52,Toronto,77,Waterfront Communities-The Island (77),Go Station,Transit,BI,,MT,21,BLK,500.0,STOLEN,13105,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-13140,10511,GO-20151637547,THEFT UNDER,2015-09-18T00:00:00,2015,September,Friday,18,261,18,2015-09-22T00:00:00,2015,September,Tuesday,22,265,9,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,,OT,0,BLK,1700.0,STOLEN,15736,"{'type': 'Point', 'coordinates': (-79.39934598, 43.66172465)}"
-13141,16866,GO-20149003340,THEFT UNDER,2014-05-13T00:00:00,2014,May,Tuesday,13,133,8,2014-05-14T00:00:00,2014,May,Wednesday,14,134,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,,,RG,21,LBL,200.0,STOLEN,13106,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-13142,11932,GO-20169007842,THEFT UNDER - BICYCLE,2016-07-27T00:00:00,2016,July,Wednesday,27,209,14,2016-07-27T00:00:00,2016,July,Wednesday,27,209,15,D51,Toronto,77,Waterfront Communities-The Island (77),Convenience Stores,Commercial,TR,2014 HYBRID,MT,3,GRY,1000.0,STOLEN,13107,"{'type': 'Point', 'coordinates': (-79.37524509, 43.64636121)}"
-13143,14557,GO-20191465566,THEFT UNDER - BICYCLE,2019-07-29T00:00:00,2019,July,Monday,29,210,16,2019-08-03T00:00:00,2019,August,Saturday,3,215,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,OT,21,BLUWHI,1000.0,STOLEN,13108,"{'type': 'Point', 'coordinates': (-79.39558819, 43.63994429)}"
-13144,13459,GO-2017984451,THEFT UNDER - BICYCLE,2017-06-02T00:00:00,2017,June,Friday,2,153,11,2017-06-03T00:00:00,2017,June,Saturday,3,154,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,RANGER,MT,21,BLKRED,300.0,STOLEN,13109,"{'type': 'Point', 'coordinates': (-79.38943687, 43.65023156)}"
-13145,13462,GO-20179007817,THEFT UNDER - BICYCLE,2017-06-09T00:00:00,2017,June,Friday,9,160,20,2017-06-10T00:00:00,2017,June,Saturday,10,161,0,D52,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,OT,F85X,RC,10,PLE,1500.0,STOLEN,13110,"{'type': 'Point', 'coordinates': (-79.39124176, 43.640111790000006)}"
-13146,13463,GO-20171039269,THEFT OVER - BICYCLE,2017-06-11T00:00:00,2017,June,Sunday,11,162,16,2017-06-13T00:00:00,2017,June,Tuesday,13,164,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,JAMIS,NEMESIS PRO,MT,11,BLK,5000.0,STOLEN,13111,"{'type': 'Point', 'coordinates': (-79.38542345, 43.63902804)}"
-13147,13464,GO-20171039269,THEFT OVER - BICYCLE,2017-06-11T00:00:00,2017,June,Sunday,11,162,16,2017-06-13T00:00:00,2017,June,Tuesday,13,164,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,,MT,24,GRY,3000.0,STOLEN,13112,"{'type': 'Point', 'coordinates': (-79.38542345, 43.63902804)}"
-13148,13467,GO-20171140842,THEFT UNDER - BICYCLE,2017-06-24T00:00:00,2017,June,Saturday,24,175,16,2017-06-28T00:00:00,2017,June,Wednesday,28,179,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,7.5FX,RG,12,WHI,1300.0,STOLEN,13113,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-13149,13468,GO-20171169850,THEFT OF EBIKE UNDER $5000,2017-06-21T00:00:00,2017,June,Wednesday,21,172,9,2017-06-30T00:00:00,2017,June,Friday,30,181,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,A2B,METRO,EL,1,BLK,4689.0,STOLEN,13114,"{'type': 'Point', 'coordinates': (-79.39553097, 43.64673969)}"
-13150,13501,GO-20199019330,THEFT UNDER,2019-06-20T00:00:00,2019,June,Thursday,20,171,1,2019-06-20T00:00:00,2019,June,Thursday,20,171,3,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,SE,RG,1,PLE,500.0,STOLEN,13115,"{'type': 'Point', 'coordinates': (-79.37374694, 43.64844177)}"
-13151,13504,GO-20199020288,THEFT UNDER,2019-06-26T00:00:00,2019,June,Wednesday,26,177,19,2019-06-27T00:00:00,2019,June,Thursday,27,178,11,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GT,KARAKORAM 4.0,MT,18,BLK,200.0,STOLEN,13116,"{'type': 'Point', 'coordinates': (-79.37646324, 43.64578351)}"
-13152,13606,GO-20142041517,THEFT UNDER,2014-05-08T00:00:00,2014,May,Thursday,8,128,19,2014-05-08T00:00:00,2014,May,Thursday,8,128,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,AGGRESSOR,MT,18,REDWHI,550.0,STOLEN,13117,"{'type': 'Point', 'coordinates': (-79.39075649, 43.64913078)}"
-13153,13611,GO-20149003700,THEFT UNDER,2014-05-25T00:00:00,2014,May,Sunday,25,145,20,2014-05-30T00:00:00,2014,May,Friday,30,150,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,,MT,21,BRN,199.0,STOLEN,13118,"{'type': 'Point', 'coordinates': (-79.37581636, 43.64427666)}"
-13154,13613,GO-20142206072,THEFT UNDER,2014-05-29T00:00:00,2014,May,Thursday,29,149,21,2014-06-02T00:00:00,2014,June,Monday,2,153,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,HYBRID,OT,21,BLKBLU,300.0,STOLEN,13119,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-13155,13617,GO-20149004031,THEFT UNDER,2014-06-12T00:00:00,2014,June,Thursday,12,163,21,2014-06-13T00:00:00,2014,June,Friday,13,164,8,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,7100 MULTITRACK,OT,21,BLK,600.0,STOLEN,13120,"{'type': 'Point', 'coordinates': (-79.38946509, 43.64593813)}"
-13156,13619,GO-20149004059,THEFT UNDER,2014-06-12T00:00:00,2014,June,Thursday,12,163,11,2014-06-14T00:00:00,2014,June,Saturday,14,165,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,NO,XFR3,MT,24,BLK,850.0,STOLEN,13121,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-13157,13630,GO-20149004623,THEFT UNDER,2014-07-02T00:00:00,2014,July,Wednesday,2,183,9,2014-07-02T00:00:00,2014,July,Wednesday,2,183,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,BRUISER1,MT,24,GRY,2500.0,STOLEN,13122,"{'type': 'Point', 'coordinates': (-79.39281928, 43.64732006)}"
-13158,13632,GO-20149004691,THEFT UNDER,2014-07-03T00:00:00,2014,July,Thursday,3,184,9,2014-07-03T00:00:00,2014,July,Thursday,3,184,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,TR,,MT,21,SIL,900.0,STOLEN,13123,"{'type': 'Point', 'coordinates': (-79.38920538, 43.64527505)}"
-13159,13634,GO-20142498271,THEFT UNDER,2014-07-14T00:00:00,2014,July,Monday,14,195,16,2014-07-14T00:00:00,2014,July,Monday,14,195,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SCHWINN,,RG,1,RED,400.0,STOLEN,13124,"{'type': 'Point', 'coordinates': (-79.39184935, 43.63765238)}"
-13160,13638,GO-20142543870,THEFT UNDER,2014-06-24T00:00:00,2014,June,Tuesday,24,175,17,2014-07-21T00:00:00,2014,July,Monday,21,202,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,DOMANE,RC,12,REDBLK,3000.0,STOLEN,13125,"{'type': 'Point', 'coordinates': (-79.39048611, 43.645008190000006)}"
-13161,13639,GO-20149005170,THEFT UNDER,2014-07-20T00:00:00,2014,July,Sunday,20,201,12,2014-07-20T00:00:00,2014,July,Sunday,20,201,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,ENDURO,MT,18,BLK,3500.0,STOLEN,13126,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-13162,13641,GO-20149005493,THEFT UNDER,2014-07-30T00:00:00,2014,July,Wednesday,30,211,19,2014-07-30T00:00:00,2014,July,Wednesday,30,211,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,3,GRY,,STOLEN,13127,"{'type': 'Point', 'coordinates': (-79.388883, 43.64041361)}"
-13163,13644,GO-20142699513,THEFT UNDER,2014-08-09T00:00:00,2014,August,Saturday,9,221,15,2014-08-14T00:00:00,2014,August,Thursday,14,226,8,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,TECHNIC FSX,MT,21,GRY,1800.0,STOLEN,13128,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-13164,13654,GO-20149006861,THEFT UNDER,2014-09-13T00:00:00,2014,September,Saturday,13,256,9,2014-09-13T00:00:00,2014,September,Saturday,13,256,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,INDIE,MT,18,GRY,700.0,STOLEN,13129,"{'type': 'Point', 'coordinates': (-79.38973372, 43.6466028)}"
-13165,13658,GO-20149007071,THEFT UNDER,2014-09-12T00:00:00,2014,September,Friday,12,255,18,2014-09-20T00:00:00,2014,September,Saturday,20,263,23,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,BRISTOL,OT,20,BLK,846.0,STOLEN,13130,"{'type': 'Point', 'coordinates': (-79.38314772, 43.64033919)}"
-13166,13660,GO-20143006920,THEFT UNDER,2014-09-25T00:00:00,2014,September,Thursday,25,268,16,2014-09-29T00:00:00,2014,September,Monday,29,272,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,GIANT,,OT,8,BLK,500.0,STOLEN,13131,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-13167,13662,GO-20149007396,THEFT UNDER,2014-10-01T00:00:00,2014,October,Wednesday,1,274,11,2014-10-04T00:00:00,2014,October,Saturday,4,277,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,TRAIL 5 MED NOI,MT,24,BLK,609.0,STOLEN,13132,"{'type': 'Point', 'coordinates': (-79.38946509, 43.64593813)}"
-13168,13717,GO-20179015671,THEFT UNDER - BICYCLE,2017-09-24T00:00:00,2017,September,Sunday,24,267,6,2017-09-25T00:00:00,2017,September,Monday,25,268,9,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,RG,27,BLU,700.0,STOLEN,13133,"{'type': 'Point', 'coordinates': (-79.37142509, 43.64944981)}"
-13169,13728,GO-20171944493,THEFT UNDER - BICYCLE,2017-10-26T00:00:00,2017,October,Thursday,26,299,23,2017-10-27T00:00:00,2017,October,Friday,27,300,10,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,TRADITIONAL,RG,0,LGR,1400.0,STOLEN,13134,"{'type': 'Point', 'coordinates': (-79.35524819, 43.65182018)}"
-13170,13740,GO-201847831,B&E,2018-01-08T00:00:00,2018,January,Monday,8,8,21,2018-01-08T00:00:00,2018,January,Monday,8,8,21,D51,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CANNONDALE,TRIGGER,MT,10,,5000.0,STOLEN,13135,"{'type': 'Point', 'coordinates': (-79.36480764, 43.64809796)}"
-13171,13746,GO-20189011510,THEFT UNDER - BICYCLE,2018-04-13T00:00:00,2018,April,Friday,13,103,12,2018-04-13T00:00:00,2018,April,Friday,13,103,12,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,,MT,15,LBL,2000.0,STOLEN,13136,"{'type': 'Point', 'coordinates': (-79.35677669, 43.6529262)}"
-13172,13758,GO-20189016136,THEFT UNDER - BICYCLE,2018-05-22T00:00:00,2018,May,Tuesday,22,142,16,2018-05-22T00:00:00,2018,May,Tuesday,22,142,19,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CA,2016 SYNAPSE DI,RC,11,BLU,2000.0,STOLEN,13137,"{'type': 'Point', 'coordinates': (-79.35713011, 43.65083215)}"
-13173,13761,GO-20189017214,THEFT UNDER - BICYCLE,2018-06-02T00:00:00,2018,June,Saturday,2,153,15,2018-06-03T00:00:00,2018,June,Sunday,3,154,15,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,TREK 7.5 FX,OT,18,BLK,500.0,STOLEN,13138,"{'type': 'Point', 'coordinates': (-79.3621013, 43.65019711)}"
-13174,9650,GO-20159003072,THEFT UNDER,2015-05-21T00:00:00,2015,May,Thursday,21,141,20,2015-05-25T00:00:00,2015,May,Monday,25,145,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,CITYZEN SUB-0 B,RG,7,GRY,500.0,STOLEN,13139,"{'type': 'Point', 'coordinates': (-79.39833497, 43.64030158)}"
-13175,13771,GO-20189019106,THEFT UNDER - BICYCLE,2018-06-16T00:00:00,2018,June,Saturday,16,167,22,2018-06-18T00:00:00,2018,June,Monday,18,169,10,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,VENETO GR1,RG,7,RED,750.0,STOLEN,13140,"{'type': 'Point', 'coordinates': (-79.36388253000001, 43.64495966)}"
-13176,13772,GO-20189019294,THEFT UNDER - BICYCLE,2018-06-19T00:00:00,2018,June,Tuesday,19,170,12,2018-06-19T00:00:00,2018,June,Tuesday,19,170,12,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,FIXED GEAR,RG,1,GRY,400.0,STOLEN,13141,"{'type': 'Point', 'coordinates': (-79.36388253000001, 43.64495966)}"
-13177,13787,GO-20189023770,THEFT UNDER - BICYCLE,2018-07-24T00:00:00,2018,July,Tuesday,24,205,17,2018-07-24T00:00:00,2018,July,Tuesday,24,205,18,D51,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,UK,,TO,20,BLK,200.0,STOLEN,13142,"{'type': 'Point', 'coordinates': (-79.35579075, 43.65315123)}"
-13178,13788,GO-20189023831,B&E,2018-07-23T00:00:00,2018,July,Monday,23,204,21,2018-07-25T00:00:00,2018,July,Wednesday,25,206,12,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,KO,CINDER CONE,MT,21,RED,850.0,STOLEN,13143,"{'type': 'Point', 'coordinates': (-79.37524509, 43.64636121)}"
-13179,13796,GO-20189025492,THEFT UNDER - BICYCLE,2018-08-06T00:00:00,2018,August,Monday,6,218,20,2018-08-07T00:00:00,2018,August,Tuesday,7,219,23,D51,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,ULTRA,MT,24,BLK,0.0,STOLEN,13144,"{'type': 'Point', 'coordinates': (-79.37302563, 43.64248042)}"
-13180,13815,GO-20189030752,THEFT UNDER - BICYCLE,2018-09-17T00:00:00,2018,September,Monday,17,260,1,2018-09-17T00:00:00,2018,September,Monday,17,260,9,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GF,PARAGON,MT,5,WHI,700.0,STOLEN,13145,"{'type': 'Point', 'coordinates': (-79.35482206, 43.65337232)}"
-13181,13816,GO-20189030759,POSSESSION HOUSE BREAK INSTRUM,2018-09-16T00:00:00,2018,September,Sunday,16,259,10,2018-09-17T00:00:00,2018,September,Monday,17,260,10,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,ADVENTURE 3,RG,16,BLK,600.0,STOLEN,13146,"{'type': 'Point', 'coordinates': (-79.35482206, 43.65337232)}"
-13182,13824,GO-20189031337,THEFT UNDER - BICYCLE,2018-09-19T00:00:00,2018,September,Wednesday,19,262,14,2018-09-20T00:00:00,2018,September,Thursday,20,263,20,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,QUICKFIRE DISK,OT,24,BLK,1900.0,STOLEN,13147,"{'type': 'Point', 'coordinates': (-79.36896015, 43.64393833)}"
-13183,494,GO-20179007128,THEFT UNDER,2017-05-11T00:00:00,2017,May,Thursday,11,131,20,2017-05-28T00:00:00,2017,May,Sunday,28,148,18,D51,Toronto,NSA,NSA,"Apartment (Rooming House, Condo)",Apartment,MA,,RG,5,DBL,500.0,STOLEN,25041,"{'type': 'Point', 'coordinates': (-79.37933495, 43.66187576)}"
-13184,13832,GO-20189033115,THEFT UNDER - BICYCLE,2018-09-13T00:00:00,2018,September,Thursday,13,256,9,2018-10-06T00:00:00,2018,October,Saturday,6,279,14,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MA,LARKSPUR,RG,21,WHI,300.0,STOLEN,13148,"{'type': 'Point', 'coordinates': (-79.37327274, 43.64725689)}"
-13185,13836,GO-20189033716,THEFT UNDER - BICYCLE,2018-10-10T00:00:00,2018,October,Wednesday,10,283,17,2018-10-11T00:00:00,2018,October,Thursday,11,284,18,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,NOVA,TO,12,BLK,300.0,STOLEN,13149,"{'type': 'Point', 'coordinates': (-79.36607348, 43.64932911)}"
-13186,13851,GO-20189043406,THEFT UNDER - BICYCLE,2018-12-24T00:00:00,2018,December,Monday,24,358,16,2018-12-27T00:00:00,2018,December,Thursday,27,361,15,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,ROAM 2 DISC,RG,27,BLK,799.0,STOLEN,13150,"{'type': 'Point', 'coordinates': (-79.3573519, 43.65132965)}"
-13187,13852,GO-20189043406,THEFT UNDER - BICYCLE,2018-12-24T00:00:00,2018,December,Monday,24,358,16,2018-12-27T00:00:00,2018,December,Thursday,27,361,15,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,ROAM 2 DISC,OT,27,BLK,1070.0,STOLEN,13151,"{'type': 'Point', 'coordinates': (-79.3573519, 43.65132965)}"
-13188,13883,GO-20159004403,THEFT UNDER,2015-07-09T00:00:00,2015,July,Thursday,9,190,22,2015-07-10T00:00:00,2015,July,Friday,10,191,19,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,,TO,21,GRY,500.0,STOLEN,13152,"{'type': 'Point', 'coordinates': (-79.37327274, 43.64725689)}"
-13189,13901,GO-20151414529,THEFT UNDER,2015-08-16T00:00:00,2015,August,Sunday,16,228,14,2015-08-17T00:00:00,2015,August,Monday,17,229,14,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,BRODIE,INFINITI,OT,27,WHI,500.0,STOLEN,13153,"{'type': 'Point', 'coordinates': (-79.37016364, 43.6456614)}"
-13190,13925,GO-20159008537,THEFT UNDER,2015-10-11T00:00:00,2015,October,Sunday,11,284,4,2015-10-14T00:00:00,2015,October,Wednesday,14,287,18,D51,Toronto,77,Waterfront Communities-The Island (77),"Single Home, House (Attach Garage, Cottage, Mobile)",House,EM,STINGER,EL,32,BLK,750.0,STOLEN,13154,"{'type': 'Point', 'coordinates': (-79.36278316, 43.64850402)}"
-13191,13929,GO-20159009488,B&E,2015-10-11T00:00:00,2015,October,Sunday,11,284,12,2015-11-07T00:00:00,2015,November,Saturday,7,311,17,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,Z4 DISC,RC,22,SIL,2750.0,STOLEN,13155,"{'type': 'Point', 'coordinates': (-79.37374694, 43.64844177)}"
-13192,13941,GO-201634016,THEFT UNDER,2016-01-04T00:00:00,2016,January,Monday,4,4,19,2016-01-06T00:00:00,2016,January,Wednesday,6,6,20,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CERVELO,,RC,21,SILBLK,1000.0,STOLEN,13156,"{'type': 'Point', 'coordinates': (-79.37146354, 43.64763677)}"
-13193,13944,GO-2016175683,PROPERTY - FOUND,2016-01-30T00:00:00,2016,January,Saturday,30,30,3,2016-01-30T00:00:00,2016,January,Saturday,30,30,3,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,VULCAN,,RC,10,RED,,UNKNOWN,13157,"{'type': 'Point', 'coordinates': (-79.37142509, 43.64944981)}"
-13194,13949,GO-20169001809,THEFT UNDER,2016-02-27T00:00:00,2016,February,Saturday,27,58,17,2016-02-27T00:00:00,2016,February,Saturday,27,58,23,D51,Toronto,77,Waterfront Communities-The Island (77),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,LAKESHORE,RC,1,DBL,2000.0,STOLEN,13158,"{'type': 'Point', 'coordinates': (-79.36278316, 43.64850402)}"
-13195,13972,GO-20169005122,THEFT UNDER,2016-05-29T00:00:00,2016,May,Sunday,29,150,5,2016-05-30T00:00:00,2016,May,Monday,30,151,2,D51,Toronto,77,Waterfront Communities-The Island (77),Unknown,Other,UK,T01596,OT,3,,1200.0,STOLEN,13159,"{'type': 'Point', 'coordinates': (-79.37016364, 43.6456614)}"
-13196,13988,GO-20161222561,THEFT UNDER - BICYCLE,2016-07-05T00:00:00,2016,July,Tuesday,5,187,15,2016-07-12T00:00:00,2016,July,Tuesday,12,194,16,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,OT,1,BLU,,STOLEN,13160,"{'type': 'Point', 'coordinates': (-79.35606395, 43.65373791)}"
-13197,13991,GO-20161363374,THEFT UNDER - BICYCLE,2016-08-03T00:00:00,2016,August,Wednesday,3,216,11,2016-08-03T00:00:00,2016,August,Wednesday,3,216,12,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,NITRO XT,MT,12,WHI,200.0,STOLEN,13161,"{'type': 'Point', 'coordinates': (-79.36460313, 43.64922452)}"
-13198,14062,GO-20179006399,THEFT UNDER,2017-05-14T00:00:00,2017,May,Sunday,14,134,21,2017-05-15T00:00:00,2017,May,Monday,15,135,11,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,KO,,RG,24,BLK,600.0,STOLEN,13169,"{'type': 'Point', 'coordinates': (-79.35677669, 43.6529262)}"
-13199,14003,GO-20169009587,THEFT UNDER - BICYCLE,2016-08-25T00:00:00,2016,August,Thursday,25,238,21,2016-08-28T00:00:00,2016,August,Sunday,28,241,0,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NO,,RC,27,WHI,1500.0,STOLEN,13162,"{'type': 'Point', 'coordinates': (-79.37374694, 43.64844177)}"
-13200,14018,GO-20161695441,THEFT FROM MOTOR VEHICLE UNDER,2016-09-20T00:00:00,2016,September,Tuesday,20,264,22,2016-09-23T00:00:00,2016,September,Friday,23,267,17,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,TCXSLR2,MT,21,BLKRED,3000.0,STOLEN,13163,"{'type': 'Point', 'coordinates': (-79.36122557, 43.6519136)}"
-13201,14032,GO-20169013436,B&E,2016-11-13T00:00:00,2016,November,Sunday,13,318,21,2016-11-15T00:00:00,2016,November,Tuesday,15,320,10,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NO,STORM 7.3,MT,21,BLK,600.0,STOLEN,13164,"{'type': 'Point', 'coordinates': (-79.35482206, 43.65337232)}"
-13202,14040,GO-20179000490,THEFT UNDER,2017-01-11T00:00:00,2017,January,Wednesday,11,11,6,2017-01-11T00:00:00,2017,January,Wednesday,11,11,15,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,SANTA MONICA,OT,21,GLD,300.0,STOLEN,13165,"{'type': 'Point', 'coordinates': (-79.3621013, 43.65019711)}"
-13203,14041,GO-20179000532,THEFT UNDER - BICYCLE,2017-01-09T00:00:00,2017,January,Monday,9,9,6,2017-01-12T00:00:00,2017,January,Thursday,12,12,13,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GT,,MT,21,WHI,0.0,STOLEN,13166,"{'type': 'Point', 'coordinates': (-79.37524509, 43.64636121)}"
-13204,14051,GO-20179004762,THEFT UNDER - BICYCLE,2017-04-16T00:00:00,2017,April,Sunday,16,106,13,2017-04-16T00:00:00,2017,April,Sunday,16,106,19,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MA,KENTFIELD FS,TO,24,GRY,600.0,STOLEN,13167,"{'type': 'Point', 'coordinates': (-79.37170147, 43.64804122)}"
-13205,14054,GO-20179005146,THEFT UNDER - BICYCLE,2017-04-23T00:00:00,2017,April,Sunday,23,113,13,2017-04-23T00:00:00,2017,April,Sunday,23,113,19,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,5,GRY,600.0,STOLEN,13168,"{'type': 'Point', 'coordinates': (-79.35677669, 43.6529262)}"
-13206,11004,GO-20169001640,THEFT UNDER,2016-02-21T00:00:00,2016,February,Sunday,21,52,20,2016-02-22T00:00:00,2016,February,Monday,22,53,11,D53,Toronto,NSA,NSA,Ttc Subway Station,Transit,OTHER,,RG,21,,240.0,STOLEN,25050,"{'type': 'Point', 'coordinates': (-79.40383181, 43.66665689)}"
-13207,14264,GO-20201040980,THEFT UNDER - BICYCLE,2020-06-06T00:00:00,2020,June,Saturday,6,158,5,2020-06-06T00:00:00,2020,June,Saturday,6,158,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MARIN OR MARINO,,MT,12,BLK,,STOLEN,13170,"{'type': 'Point', 'coordinates': (-79.40185545, 43.64191381)}"
-13208,14265,GO-20201040980,THEFT UNDER - BICYCLE,2020-06-06T00:00:00,2020,June,Saturday,6,158,5,2020-06-06T00:00:00,2020,June,Saturday,6,158,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,,RC,12,WHI,,STOLEN,13171,"{'type': 'Point', 'coordinates': (-79.40185545, 43.64191381)}"
-13209,14280,GO-20209017022,THEFT UNDER,2020-07-05T00:00:00,2020,July,Sunday,5,187,21,2020-07-07T00:00:00,2020,July,Tuesday,7,189,13,D14,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,TR,FX2,OT,20,GRY,1250.0,STOLEN,13172,"{'type': 'Point', 'coordinates': (-79.40005716, 43.64445256)}"
-13210,14281,GO-20209017022,THEFT UNDER,2020-07-05T00:00:00,2020,July,Sunday,5,187,21,2020-07-07T00:00:00,2020,July,Tuesday,7,189,13,D14,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,TR,FX7.3,OT,20,BLK,1250.0,STOLEN,13173,"{'type': 'Point', 'coordinates': (-79.40005716, 43.64445256)}"
-13211,14294,GO-20209019898,THEFT UNDER,2020-07-16T00:00:00,2020,July,Thursday,16,198,9,2020-08-11T00:00:00,2020,August,Tuesday,11,224,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,7D LADIES SMALL,RG,7,RED,689.0,STOLEN,13174,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-13212,14313,GO-20201700024,B&E,2020-08-30T00:00:00,2020,August,Sunday,30,243,0,2020-09-09T00:00:00,2020,September,Wednesday,9,253,16,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CANNONDALE,QUICK 7,OT,24,BLUPNK,600.0,STOLEN,13175,"{'type': 'Point', 'coordinates': (-79.40185545, 43.64191381)}"
-13213,14320,GO-20201768160,THEFT UNDER,2020-09-17T00:00:00,2020,September,Thursday,17,261,23,2020-09-18T00:00:00,2020,September,Friday,18,262,6,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OTHER,,OT,0,GRY,,STOLEN,13176,"{'type': 'Point', 'coordinates': (-79.40059685, 43.64573236)}"
-13214,14390,GO-20142504858,THEFT UNDER,2014-07-10T00:00:00,2014,July,Thursday,10,191,15,2014-07-15T00:00:00,2014,July,Tuesday,15,196,20,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,JAMIS,,MT,1,GRYRED,1300.0,STOLEN,13184,"{'type': 'Point', 'coordinates': (-79.37215317, 43.64913066)}"
-13215,14327,GO-20201947462,THEFT UNDER - BICYCLE,2020-10-02T00:00:00,2020,October,Friday,2,276,18,2020-10-13T00:00:00,2020,October,Tuesday,13,287,22,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,,RC,10,SILWHI,800.0,STOLEN,13177,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-13216,14341,GO-20209030298,THEFT UNDER,2020-11-08T00:00:00,2020,November,Sunday,8,313,16,2020-11-22T00:00:00,2020,November,Sunday,22,327,16,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,FJ,JARI 2.5 LE,RC,21,GRY,1100.0,STOLEN,13178,"{'type': 'Point', 'coordinates': (-79.39835558, 43.64685172)}"
-13217,14345,GO-20202325297,THEFT UNDER - BICYCLE,2020-12-09T00:00:00,2020,December,Wednesday,9,344,9,2020-12-09T00:00:00,2020,December,Wednesday,9,344,21,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,ZZZ,,MT,5,SIL,800.0,STOLEN,13179,"{'type': 'Point', 'coordinates': (-79.39924205, 43.63909783)}"
-13218,14358,GO-20142072781,THEFT UNDER,2014-05-13T00:00:00,2014,May,Tuesday,13,133,8,2014-05-13T00:00:00,2014,May,Tuesday,13,133,18,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FUJI,FEATHER,MT,1,BLK,800.0,STOLEN,13180,"{'type': 'Point', 'coordinates': (-79.35931384000001, 43.6498108)}"
-13219,14369,GO-20149003961,THEFT UNDER,2014-06-10T00:00:00,2014,June,Tuesday,10,161,8,2014-06-10T00:00:00,2014,June,Tuesday,10,161,20,D51,Toronto,77,Waterfront Communities-The Island (77),Schools During Supervised Activity,Educational,SC,,OT,21,WHI,250.0,STOLEN,13181,"{'type': 'Point', 'coordinates': (-79.36616846, 43.64421276)}"
-13220,14374,GO-20142326234,THEFT UNDER,2014-06-19T00:00:00,2014,June,Thursday,19,170,17,2014-06-19T00:00:00,2014,June,Thursday,19,170,20,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KONA,,MT,21,SIL,800.0,STOLEN,13182,"{'type': 'Point', 'coordinates': (-79.37170147, 43.64804122)}"
-13221,14389,GO-20149004778,THEFT UNDER,2014-07-03T00:00:00,2014,July,Thursday,3,184,15,2014-07-07T00:00:00,2014,July,Monday,7,188,15,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CC,ORION MEN'S 700,OT,21,BLK,400.0,STOLEN,13183,"{'type': 'Point', 'coordinates': (-79.37146354, 43.64763677)}"
-13222,88,GO-2017251400,THEFT UNDER - BICYCLE,2017-02-06T00:00:00,2017,February,Monday,6,37,8,2017-02-09T00:00:00,2017,February,Thursday,9,40,16,D52,Toronto,79,University (79),Universities / Colleges,Educational,BRIANT ROAM,,OT,0,BLUBLK,500.0,STOLEN,15156,"{'type': 'Point', 'coordinates': (-79.39734175, 43.66803279)}"
-13223,14394,GO-20149005283,THEFT UNDER,2014-07-24T00:00:00,2014,July,Thursday,24,205,11,2014-07-24T00:00:00,2014,July,Thursday,24,205,12,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,TRANCE,MT,21,GLD,1700.0,STOLEN,13185,"{'type': 'Point', 'coordinates': (-79.37524509, 43.64636121)}"
-13224,14397,GO-20149005395,THEFT UNDER,2014-07-25T00:00:00,2014,July,Friday,25,206,21,2014-07-28T00:00:00,2014,July,Monday,28,209,12,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,HYBRID,MT,10,BLK,600.0,STOLEN,13186,"{'type': 'Point', 'coordinates': (-79.37327274, 43.64725689)}"
-13225,14398,GO-20149005414,THEFT UNDER,2014-07-25T00:00:00,2014,July,Friday,25,206,1,2014-07-28T00:00:00,2014,July,Monday,28,209,20,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,AGGRESOR,MT,21,BLK,300.0,STOLEN,13187,"{'type': 'Point', 'coordinates': (-79.37524509, 43.64636121)}"
-13226,14407,GO-20149006574,THEFT UNDER,2014-09-01T00:00:00,2014,September,Monday,1,244,11,2014-09-04T00:00:00,2014,September,Thursday,4,247,20,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,"URBAN 1.0, MY 2",RG,8,BLK,1827.0,STOLEN,13188,"{'type': 'Point', 'coordinates': (-79.36202059, 43.65000495)}"
-13227,14411,GO-20149006850,THEFT UNDER,2014-09-12T00:00:00,2014,September,Friday,12,255,19,2014-09-13T00:00:00,2014,September,Saturday,13,256,13,D51,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,SOLOIST MEN'S F,RG,1,BLK,399.0,STOLEN,13189,"{'type': 'Point', 'coordinates': (-79.35713011, 43.65083215)}"
-13228,14417,GO-20142958479,THEFT UNDER,2014-09-18T00:00:00,2014,September,Thursday,18,261,13,2014-09-22T00:00:00,2014,September,Monday,22,265,9,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MIELE,BATA,RC,12,GLD,1600.0,STOLEN,13190,"{'type': 'Point', 'coordinates': (-79.35713011, 43.65083215)}"
-13229,14418,GO-20142993698,THEFT UNDER,2014-09-24T00:00:00,2014,September,Wednesday,24,267,16,2014-09-27T00:00:00,2014,September,Saturday,27,270,9,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,CAMBER,MT,18,BLK,2500.0,STOLEN,13191,"{'type': 'Point', 'coordinates': (-79.35713011, 43.65083215)}"
-13230,14436,GO-20159000712,THEFT UNDER,2015-01-31T00:00:00,2015,January,Saturday,31,31,17,2015-02-11T00:00:00,2015,February,Wednesday,11,42,16,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,1,BLK,700.0,STOLEN,13192,"{'type': 'Point', 'coordinates': (-79.37134522, 43.64305948)}"
-13231,14456,GO-20181593414,THEFT UNDER,2018-08-28T00:00:00,2018,August,Tuesday,28,240,9,2018-08-28T00:00:00,2018,August,Tuesday,28,240,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,,TA,18,SIL,400.0,STOLEN,13193,"{'type': 'Point', 'coordinates': (-79.39433233, 43.63732228)}"
-13232,14459,GO-20189031014,THEFT UNDER,2018-09-11T00:00:00,2018,September,Tuesday,11,254,12,2018-09-18T00:00:00,2018,September,Tuesday,18,261,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CA,,TO,27,BLK,1400.0,STOLEN,13194,"{'type': 'Point', 'coordinates': (-79.39880646, 43.64142779)}"
-13233,14460,GO-20189031661,THEFT UNDER - BICYCLE,2018-09-21T00:00:00,2018,September,Friday,21,264,15,2018-09-23T00:00:00,2018,September,Sunday,23,266,23,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,TCR 1 COMPACT,RC,20,BLK,1000.0,STOLEN,13195,"{'type': 'Point', 'coordinates': (-79.39532578, 43.64621392)}"
-13234,14476,GO-20189036777,THEFT UNDER - BICYCLE,2018-11-03T00:00:00,2018,November,Saturday,3,307,18,2018-11-04T00:00:00,2018,November,Sunday,4,308,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,MANTRA,RG,1,TRQ,330.0,STOLEN,13196,"{'type': 'Point', 'coordinates': (-79.39958821, 43.64593284)}"
-13235,14490,GO-20199003288,THEFT UNDER - BICYCLE,2018-12-01T00:00:00,2018,December,Saturday,1,335,18,2019-01-24T00:00:00,2019,January,Thursday,24,24,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,MARY XC,MT,27,ONG,3000.0,STOLEN,13197,"{'type': 'Point', 'coordinates': (-79.39924205, 43.63909783)}"
-13236,14491,GO-2019131328,THEFT UNDER,2018-12-01T00:00:00,2018,December,Saturday,1,335,0,2019-01-21T00:00:00,2019,January,Monday,21,21,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN,UKN,RG,1,BLK,500.0,STOLEN,13198,"{'type': 'Point', 'coordinates': (-79.39924205, 43.63909783)}"
-13237,14493,GO-20199005204,THEFT UNDER,2019-02-11T00:00:00,2019,February,Monday,11,42,18,2019-02-12T00:00:00,2019,February,Tuesday,12,43,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,ANYROAD2 2018,RC,18,BLK,1200.0,STOLEN,13199,"{'type': 'Point', 'coordinates': (-79.39795271, 43.63704773)}"
-13238,14496,GO-2019451850,B&E,2019-01-20T00:00:00,2019,January,Sunday,20,20,19,2019-03-12T00:00:00,2019,March,Tuesday,12,71,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,CANNONDALE,CAAD12,OT,13,BLKDBL,3000.0,STOLEN,13200,"{'type': 'Point', 'coordinates': (-79.3979648, 43.63940267)}"
-13239,14505,GO-20199012052,THEFT UNDER - BICYCLE,2019-04-10T00:00:00,2019,April,Wednesday,10,100,22,2019-04-16T00:00:00,2019,April,Tuesday,16,106,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,RA,ONE-WAY,RG,1,BLK,200.0,STOLEN,13201,"{'type': 'Point', 'coordinates': (-79.39924205, 43.63909783)}"
-13240,14523,GO-20199019364,THEFT UNDER,2019-06-19T00:00:00,2019,June,Wednesday,19,170,4,2019-06-20T00:00:00,2019,June,Thursday,20,171,17,D14,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,TO,15,DBL,650.0,STOLEN,13202,"{'type': 'Point', 'coordinates': (-79.39754675, 43.6417678)}"
-13241,14524,GO-20199019364,THEFT UNDER,2019-06-19T00:00:00,2019,June,Wednesday,19,170,4,2019-06-20T00:00:00,2019,June,Thursday,20,171,17,D14,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,,OT,18,BLU,900.0,STOLEN,13203,"{'type': 'Point', 'coordinates': (-79.39754675, 43.6417678)}"
-13242,14525,GO-20191146671,B&E,2019-06-07T00:00:00,2019,June,Friday,7,158,15,2019-06-20T00:00:00,2019,June,Thursday,20,171,21,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TREK,2.3,RG,0,BLKBLU,2000.0,STOLEN,13204,"{'type': 'Point', 'coordinates': (-79.39924205, 43.63909783)}"
-13243,14528,GO-20191185858,B&E,2019-06-20T00:00:00,2019,June,Thursday,20,171,3,2019-06-26T00:00:00,2019,June,Wednesday,26,177,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,OT,0,,,STOLEN,13205,"{'type': 'Point', 'coordinates': (-79.40372116, 43.64647061)}"
-13244,14529,GO-20191189659,B&E,2019-06-25T00:00:00,2019,June,Tuesday,25,176,15,2019-06-26T00:00:00,2019,June,Wednesday,26,177,21,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NORCO,INDIE 4,RG,24,BLK,766.0,STOLEN,13206,"{'type': 'Point', 'coordinates': (-79.40306565, 43.64488902)}"
-13245,16355,GO-20199025842,B&E,2019-08-03T00:00:00,2019,August,Saturday,3,215,1,2019-08-12T00:00:00,2019,August,Monday,12,224,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,STUMP JUMPER CO,MT,12,BLK,2200.0,STOLEN,13207,"{'type': 'Point', 'coordinates': (-79.37778379, 43.6430065)}"
-13246,8519,GO-20142589345,THEFT UNDER,2014-06-30T00:00:00,2014,June,Monday,30,181,9,2014-07-28T00:00:00,2014,July,Monday,28,209,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,CROSSTRAIL,OT,27,BLK,870.0,STOLEN,13208,"{'type': 'Point', 'coordinates': (-79.38946509, 43.64593813)}"
-13247,11949,GO-20169007953,THEFT UNDER,2016-07-29T00:00:00,2016,July,Friday,29,211,18,2016-07-30T00:00:00,2016,July,Saturday,30,212,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,CROSSTRAIL,MT,24,BLK,670.0,STOLEN,13209,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-13248,11954,GO-20169007953,THEFT UNDER,2016-07-29T00:00:00,2016,July,Friday,29,211,18,2016-07-30T00:00:00,2016,July,Saturday,30,212,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,CROSSTRAIL,MT,24,BLK,670.0,STOLEN,13210,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-13249,11969,GO-20169008035,THEFT FROM MOTOR VEHICLE UNDER,2016-07-31T00:00:00,2016,July,Sunday,31,213,15,2016-07-31T00:00:00,2016,July,Sunday,31,213,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,SILVERSTONE SL3,RC,18,GRY,1500.0,STOLEN,13211,"{'type': 'Point', 'coordinates': (-79.38250349, 43.64061295)}"
-13250,16883,GO-20149003899,THEFT UNDER,2014-06-02T00:00:00,2014,June,Monday,2,153,18,2014-06-08T00:00:00,2014,June,Sunday,8,159,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,,RG,18,BLU,250.0,STOLEN,13212,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-13251,13500,GO-20199019300,THEFT UNDER,2019-06-19T00:00:00,2019,June,Wednesday,19,170,18,2019-06-19T00:00:00,2019,June,Wednesday,19,170,19,D43,Toronto,136,West Hill (136),"Open Areas (Lakes, Parks, Rivers)",Outside,CC,,MT,10,BLK,100.0,STOLEN,25125,"{'type': 'Point', 'coordinates': (-79.17575202, 43.76933178)}"
-13252,11973,GO-20169008055,THEFT UNDER - BICYCLE,2016-07-23T00:00:00,2016,July,Saturday,23,205,9,2016-08-02T00:00:00,2016,August,Tuesday,2,215,11,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,,FO,7,YEL,300.0,STOLEN,13213,"{'type': 'Point', 'coordinates': (-79.35677669, 43.6529262)}"
-13253,11995,GO-20169008210,THEFT UNDER - BICYCLE,2016-07-20T00:00:00,2016,July,Wednesday,20,202,15,2016-08-04T00:00:00,2016,August,Thursday,4,217,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,KAMODO,MT,27,DGR,1500.0,STOLEN,13214,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-13254,16890,GO-20149004087,THEFT UNDER,2014-06-14T00:00:00,2014,June,Saturday,14,165,18,2014-06-15T00:00:00,2014,June,Sunday,15,166,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,REVELSTOKE,MT,24,DGR,650.0,STOLEN,13215,"{'type': 'Point', 'coordinates': (-79.39389489, 43.64651184)}"
-13255,11998,GO-20169008221,THEFT UNDER - BICYCLE,2016-08-04T00:00:00,2016,August,Thursday,4,217,8,2016-08-04T00:00:00,2016,August,Thursday,4,217,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,,RG,7,PLE,0.0,STOLEN,13216,"{'type': 'Point', 'coordinates': (-79.39811145, 43.64623146000001)}"
-13256,8526,GO-20149005377,THEFT UNDER,2014-07-25T00:00:00,2014,July,Friday,25,206,1,2014-07-27T00:00:00,2014,July,Sunday,27,208,13,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,7,WHI,300.0,STOLEN,13217,"{'type': 'Point', 'coordinates': (-79.37215317, 43.64913066)}"
-13257,16891,GO-20149004152,THEFT UNDER,2014-06-16T00:00:00,2014,June,Monday,16,167,19,2014-06-17T00:00:00,2014,June,Tuesday,17,168,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,,RG,7,BLU,600.0,STOLEN,13218,"{'type': 'Point', 'coordinates': (-79.38275181, 43.64263544000001)}"
-13258,14573,GO-20199028497,THEFT UNDER - BICYCLE,2019-08-29T00:00:00,2019,August,Thursday,29,241,13,2019-09-02T00:00:00,2019,September,Monday,2,245,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,FJ,ABSOLUTE 1.9,RG,19,BLK,700.0,STOLEN,13219,"{'type': 'Point', 'coordinates': (-79.39760717, 43.64495335000001)}"
-13259,15728,GO-20199037649,THEFT UNDER,2019-10-24T00:00:00,2019,October,Thursday,24,297,20,2019-11-15T00:00:00,2019,November,Friday,15,319,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,,MT,21,,0.0,STOLEN,13220,"{'type': 'Point', 'coordinates': (-79.37933296, 43.64221959)}"
-13260,9652,GO-2015870307,THEFT UNDER,2015-05-17T00:00:00,2015,May,Sunday,17,137,11,2015-05-25T00:00:00,2015,May,Monday,25,145,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,ALLEZ SPORT,RG,18,WHI,1000.0,STOLEN,13221,"{'type': 'Point', 'coordinates': (-79.39592984, 43.64780696)}"
-13261,16365,GO-20199026890,THEFT UNDER,2019-08-15T00:00:00,2019,August,Thursday,15,227,13,2019-08-20T00:00:00,2019,August,Tuesday,20,232,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,ALPHA DUAL SUSP,MT,21,BLK,325.0,STOLEN,13222,"{'type': 'Point', 'coordinates': (-79.38867784, 43.64396864)}"
-13262,14576,GO-20199028950,THEFT UNDER,2019-09-05T00:00:00,2019,September,Thursday,5,248,12,2019-09-06T00:00:00,2019,September,Friday,6,249,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,8,WHI,1000.0,STOLEN,13223,"{'type': 'Point', 'coordinates': (-79.39924205, 43.63909783)}"
-13263,12013,GO-20161390214,THEFT UNDER - BICYCLE,2016-08-07T00:00:00,2016,August,Sunday,7,220,14,2016-08-07T00:00:00,2016,August,Sunday,7,220,14,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CUSTOM,,MT,1,GRN,400.0,STOLEN,13224,"{'type': 'Point', 'coordinates': (-79.37142509, 43.64944981)}"
-13264,8530,GO-20149005388,THEFT UNDER,2014-07-20T00:00:00,2014,July,Sunday,20,201,21,2014-07-27T00:00:00,2014,July,Sunday,27,208,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,21,BLK,700.0,STOLEN,13225,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-13265,9654,GO-20159003096,THEFT UNDER,2015-05-23T00:00:00,2015,May,Saturday,23,143,22,2015-05-25T00:00:00,2015,May,Monday,25,145,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RM,ETSX-50,MT,9,GRY,4000.0,STOLEN,13226,"{'type': 'Point', 'coordinates': (-79.39075649, 43.64913078)}"
-13266,16368,GO-20199027711,THEFT UNDER,2019-08-23T00:00:00,2019,August,Friday,23,235,11,2019-08-26T00:00:00,2019,August,Monday,26,238,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,1,RG,20,ONG,750.0,STOLEN,13227,"{'type': 'Point', 'coordinates': (-79.38065193, 43.64100385)}"
-13267,14577,GO-20199028999,THEFT UNDER,2019-09-06T00:00:00,2019,September,Friday,6,249,17,2019-09-06T00:00:00,2019,September,Friday,6,249,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,1,,1200.0,STOLEN,13228,"{'type': 'Point', 'coordinates': (-79.39760717, 43.64495335000001)}"
-13268,15734,GO-20199038671,THEFT UNDER,2019-11-07T00:00:00,2019,November,Thursday,7,311,9,2019-11-24T00:00:00,2019,November,Sunday,24,328,21,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,VENT NOIR,RC,27,BLK,1700.0,STOLEN,13229,"{'type': 'Point', 'coordinates': (-79.37027555, 43.64981872)}"
-13269,16895,GO-20142408653,THEFT UNDER,2014-06-06T00:00:00,2014,June,Friday,6,157,14,2014-07-01T00:00:00,2014,July,Tuesday,1,182,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,U/K,MT,15,BLU,450.0,STOLEN,13230,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-13270,12014,GO-20161390214,THEFT UNDER - BICYCLE,2016-08-07T00:00:00,2016,August,Sunday,7,220,14,2016-08-07T00:00:00,2016,August,Sunday,7,220,14,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BLUE GIANT,,MT,18,BLU,,STOLEN,13231,"{'type': 'Point', 'coordinates': (-79.37142509, 43.64944981)}"
-13271,16898,GO-20149004696,THEFT UNDER,2014-07-01T00:00:00,2014,July,Tuesday,1,182,14,2014-07-06T00:00:00,2014,July,Sunday,6,187,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,PURE,RG,7,GRY,640.0,STOLEN,13232,"{'type': 'Point', 'coordinates': (-79.38091602, 43.64168463)}"
-13272,14599,GO-20199036299,THEFT UNDER - BICYCLE,2019-11-03T00:00:00,2019,November,Sunday,3,307,17,2019-11-03T00:00:00,2019,November,Sunday,3,307,23,D14,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,KO,DEW PLUS,RG,27,BLK,1035.0,STOLEN,13233,"{'type': 'Point', 'coordinates': (-79.40372116, 43.64647061)}"
-13273,16400,GO-20199034362,THEFT UNDER,2019-10-10T00:00:00,2019,October,Thursday,10,283,16,2019-10-18T00:00:00,2019,October,Friday,18,291,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,KO,,OT,21,ONG,2000.0,STOLEN,13242,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-13274,9659,GO-20159003079,THEFT UNDER,2015-05-22T00:00:00,2015,May,Friday,22,142,14,2015-05-25T00:00:00,2015,May,Monday,25,145,17,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,EL,1,,,RECOVERED,13234,"{'type': 'Point', 'coordinates': (-79.37327274, 43.64725689)}"
-13275,16396,GO-20199033059,THEFT UNDER,2019-10-06T00:00:00,2019,October,Sunday,6,279,19,2019-10-07T00:00:00,2019,October,Monday,7,280,17,D52,Toronto,77,Waterfront Communities-The Island (77),Convenience Stores,Commercial,OT,BROADVIEW,RG,7,BLK,400.0,STOLEN,13235,"{'type': 'Point', 'coordinates': (-79.38542345, 43.63902804)}"
-13276,8542,GO-20149005436,THEFT UNDER,2014-07-29T00:00:00,2014,July,Tuesday,29,210,7,2014-07-29T00:00:00,2014,July,Tuesday,29,210,11,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,'11 7.2 FX WSD,RG,24,PLE,550.0,STOLEN,13236,"{'type': 'Point', 'coordinates': (-79.36278316, 43.64850402)}"
-13277,15736,GO-20199040692,THEFT UNDER,2019-12-12T00:00:00,2019,December,Thursday,12,346,0,2019-12-12T00:00:00,2019,December,Thursday,12,346,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,DRAFT,OT,1,WHI,1050.0,STOLEN,13237,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-13278,12018,GO-20169008359,THEFT UNDER - BICYCLE,2016-08-06T00:00:00,2016,August,Saturday,6,219,15,2016-08-07T00:00:00,2016,August,Sunday,7,220,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,IN,INFINITY VIENNA,RG,6,WHI,250.0,STOLEN,13238,"{'type': 'Point', 'coordinates': (-79.39281928, 43.64732006)}"
-13279,16900,GO-20149004896,THEFT UNDER,2014-07-10T00:00:00,2014,July,Thursday,10,191,19,2014-07-10T00:00:00,2014,July,Thursday,10,191,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RM,RC-30,RG,21,BLK,1000.0,STOLEN,13239,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-13280,14601,GO-20199036413,THEFT UNDER - BICYCLE,2019-11-04T00:00:00,2019,November,Monday,4,308,10,2019-11-04T00:00:00,2019,November,Monday,4,308,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,ST1T PLATINUM,EL,18,BLK,4000.0,STOLEN,13240,"{'type': 'Point', 'coordinates': (-79.40094162000001, 43.64469631)}"
-13281,9673,GO-2015886899,THEFT UNDER,2015-05-27T00:00:00,2015,May,Wednesday,27,147,20,2015-05-28T00:00:00,2015,May,Thursday,28,148,20,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GIANT,ESCAPE,RC,21,SIL,700.0,STOLEN,13241,"{'type': 'Point', 'coordinates': (-79.35713011, 43.65083215)}"
-13282,8586,GO-20149005612,THEFT UNDER,2014-08-04T00:00:00,2014,August,Monday,4,216,13,2014-08-05T00:00:00,2014,August,Tuesday,5,217,11,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SC,MOUNTAIN BIKE,MT,10,RED,700.0,STOLEN,13243,"{'type': 'Point', 'coordinates': (-79.37146354, 43.64763677)}"
-13283,15739,GO-20199041259,THEFT UNDER,2019-12-16T00:00:00,2019,December,Monday,16,350,23,2019-12-17T00:00:00,2019,December,Tuesday,17,351,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,BLACK ASSASIN,RG,1,BLK,750.0,STOLEN,13244,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-13284,8627,GO-20142679136,THEFT UNDER,2014-08-05T00:00:00,2014,August,Tuesday,5,217,16,2014-08-11T00:00:00,2014,August,Monday,11,223,9,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,3500,MT,18,BLK,400.0,STOLEN,13245,"{'type': 'Point', 'coordinates': (-79.39737512, 43.64853707)}"
-13285,12042,GO-20169008473,THEFT UNDER - BICYCLE,2016-08-09T00:00:00,2016,August,Tuesday,9,222,9,2016-08-09T00:00:00,2016,August,Tuesday,9,222,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,CROSSTRAIL SPOR,OT,27,BLK,400.0,STOLEN,13246,"{'type': 'Point', 'coordinates': (-79.39153656, 43.64758619)}"
-13286,14602,GO-20199037363,THEFT UNDER - BICYCLE,2019-11-07T00:00:00,2019,November,Thursday,7,311,14,2019-11-13T00:00:00,2019,November,Wednesday,13,317,14,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,SIRRUS SL,TO,24,GRY,1000.0,STOLEN,13247,"{'type': 'Point', 'coordinates': (-79.39833497, 43.64030158)}"
-13287,16402,GO-20199034553,THEFT UNDER,2019-10-16T00:00:00,2019,October,Wednesday,16,289,16,2019-10-20T00:00:00,2019,October,Sunday,20,293,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,21,BLK,800.0,STOLEN,13248,"{'type': 'Point', 'coordinates': (-79.38973372, 43.6466028)}"
-13288,9684,GO-2015892605,THEFT UNDER,2015-05-28T00:00:00,2015,May,Thursday,28,148,17,2015-05-28T00:00:00,2015,May,Thursday,28,148,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,ELITE,RC,27,SILWHI,1600.0,STOLEN,13249,"{'type': 'Point', 'coordinates': (-79.395007, 43.64546954)}"
-13289,10523,GO-20151645362,THEFT UNDER,2015-09-21T00:00:00,2015,September,Monday,21,264,17,2015-09-23T00:00:00,2015,September,Wednesday,23,266,13,D52,Toronto,79,University (79),Universities / Colleges,Educational,PEUGEOT,,OT,21,GRN,400.0,STOLEN,15737,"{'type': 'Point', 'coordinates': (-79.39815878000002, 43.65826015)}"
-13290,16901,GO-20142508884,THEFT UNDER,2014-07-10T00:00:00,2014,July,Thursday,10,191,22,2014-07-16T00:00:00,2014,July,Wednesday,16,197,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TREK,1.2,OT,14,BLK,1000.0,STOLEN,13250,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-13291,15747,GO-20209010666,THEFT UNDER,2020-04-06T00:00:00,2020,April,Monday,6,97,22,2020-04-07T00:00:00,2020,April,Tuesday,7,98,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,HARD ROCK,MT,24,,700.0,STOLEN,13251,"{'type': 'Point', 'coordinates': (-79.39124176, 43.640111790000006)}"
-13292,8631,GO-20149005768,THEFT UNDER,2014-08-02T00:00:00,2014,August,Saturday,2,214,19,2014-08-09T00:00:00,2014,August,Saturday,9,221,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE 2,OT,24,WHI,500.0,RECOVERED,13252,"{'type': 'Point', 'coordinates': (-79.38314772, 43.64033919)}"
-13293,12058,GO-20169008552,THEFT UNDER - BICYCLE,2016-08-10T00:00:00,2016,August,Wednesday,10,223,19,2016-08-11T00:00:00,2016,August,Thursday,11,224,10,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,GRAND SPORT,RG,10,LBL,200.0,STOLEN,13253,"{'type': 'Point', 'coordinates': (-79.37327274, 43.64725689)}"
-13294,15750,GO-20209011581,THEFT UNDER - BICYCLE,2020-04-20T00:00:00,2020,April,Monday,20,111,14,2020-04-20T00:00:00,2020,April,Monday,20,111,16,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,,MT,21,GRY,610.0,STOLEN,13254,"{'type': 'Point', 'coordinates': (-79.36388253000001, 43.64495966)}"
-13295,9693,GO-20159003221,THEFT UNDER,2015-05-29T00:00:00,2015,May,Friday,29,149,17,2015-05-31T00:00:00,2015,May,Sunday,31,151,0,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SC,,RG,7,OTH,211.0,STOLEN,13255,"{'type': 'Point', 'coordinates': (-79.38607074, 43.64739453)}"
-13296,16907,GO-20149005689,THEFT UNDER,2014-08-05T00:00:00,2014,August,Tuesday,5,217,19,2014-08-06T00:00:00,2014,August,Wednesday,6,218,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RC,1,BLK,500.0,STOLEN,13256,"{'type': 'Point', 'coordinates': (-79.39124176, 43.640111790000006)}"
-13297,16403,GO-20199035023,THEFT UNDER,2019-10-16T00:00:00,2019,October,Wednesday,16,289,18,2019-10-24T00:00:00,2019,October,Thursday,24,297,9,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,ALLEGRO,RG,21,ONG,700.0,STOLEN,13257,"{'type': 'Point', 'coordinates': (-79.35971484, 43.65076046)}"
-13298,8634,GO-20149005778,THEFT UNDER,2014-08-10T00:00:00,2014,August,Sunday,10,222,16,2014-08-13T00:00:00,2014,August,Wednesday,13,225,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,GI,XTC 2,MT,9,WHI,899.0,STOLEN,13258,"{'type': 'Point', 'coordinates': (-79.38653359, 43.63885304)}"
-13299,14606,GO-20192424134,B&E,2019-12-09T00:00:00,2019,December,Monday,9,343,0,2019-12-17T00:00:00,2019,December,Tuesday,17,351,9,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,FUJI,,MT,21,RED,1500.0,STOLEN,13259,"{'type': 'Point', 'coordinates': (-79.40306565, 43.64488902)}"
-13300,12071,GO-20169008621,THEFT UNDER,2016-08-11T00:00:00,2016,August,Thursday,11,224,15,2016-08-13T00:00:00,2016,August,Saturday,13,226,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SC,GTX2,MT,21,RED,400.0,STOLEN,13260,"{'type': 'Point', 'coordinates': (-79.39811145, 43.64623146000001)}"
-13301,15751,GO-20209011581,THEFT UNDER - BICYCLE,2020-04-20T00:00:00,2020,April,Monday,20,111,14,2020-04-20T00:00:00,2020,April,Monday,20,111,16,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,,MT,21,PLE,600.0,STOLEN,13261,"{'type': 'Point', 'coordinates': (-79.36388253000001, 43.64495966)}"
-13302,9700,GO-20159003229,THEFT UNDER,2015-05-12T00:00:00,2015,May,Tuesday,12,132,8,2015-05-31T00:00:00,2015,May,Sunday,31,151,8,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,ST TOPEX,RG,18,DBL,540.0,STOLEN,13262,"{'type': 'Point', 'coordinates': (-79.38920538, 43.64527505)}"
-13303,16912,GO-20149005939,THEFT UNDER,2014-08-10T00:00:00,2014,August,Sunday,10,222,17,2014-08-14T00:00:00,2014,August,Thursday,14,226,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,,RC,10,,,STOLEN,13263,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-13304,16405,GO-20199035336,THEFT UNDER,2019-10-13T00:00:00,2019,October,Sunday,13,286,11,2019-10-26T00:00:00,2019,October,Saturday,26,299,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,METRIX,RG,20,BLK,1644.0,STOLEN,13264,"{'type': 'Point', 'coordinates': (-79.39175463, 43.64474761000001)}"
-13305,8647,GO-20149005878,THEFT UNDER,2014-08-11T00:00:00,2014,August,Monday,11,223,10,2014-08-12T00:00:00,2014,August,Tuesday,12,224,22,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,MA,PRO FIT SAN MA,RC,21,BLU,2000.0,STOLEN,13265,"{'type': 'Point', 'coordinates': (-79.39835558, 43.64685172)}"
-13306,16423,GO-20199041581,THEFT UNDER,2019-10-13T00:00:00,2019,October,Sunday,13,286,0,2019-12-20T00:00:00,2019,December,Friday,20,354,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,VENTURA SPORT,RG,16,BLK,400.0,STOLEN,13266,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-13307,12080,GO-20169008702,B&E,2016-08-12T00:00:00,2016,August,Friday,12,225,13,2016-08-13T00:00:00,2016,August,Saturday,13,226,20,D14,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,FJ,TRACK,OT,1,BLU,809.0,STOLEN,13267,"{'type': 'Point', 'coordinates': (-79.40059685, 43.64573236)}"
-13308,9701,GO-20159003233,THEFT UNDER,2015-05-31T00:00:00,2015,May,Sunday,31,151,8,2015-06-01T00:00:00,2015,June,Monday,1,152,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,,RC,10,OTH,2500.0,STOLEN,13268,"{'type': 'Point', 'coordinates': (-79.39175463, 43.64474761000001)}"
-13309,15756,GO-20209012600,THEFT UNDER,2020-05-04T00:00:00,2020,May,Monday,4,125,7,2020-05-06T00:00:00,2020,May,Wednesday,6,127,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,TREK,MT,32,OTH,1500.0,STOLEN,13269,"{'type': 'Point', 'coordinates': (-79.39124176, 43.640111790000006)}"
-13310,8649,GO-20142722529,THEFT UNDER,2014-08-15T00:00:00,2014,August,Friday,15,227,0,2014-08-17T00:00:00,2014,August,Sunday,17,229,20,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,IRON HORSE,ZG.OUT,EL,5,RED,500.0,STOLEN,13270,"{'type': 'Point', 'coordinates': (-79.3621013, 43.65019711)}"
-13311,14611,GO-20209001314,THEFT UNDER,2020-01-09T00:00:00,2020,January,Thursday,9,9,1,2020-01-12T00:00:00,2020,January,Sunday,12,12,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,LOUIS GARNEU AX,OT,60,BLU,790.0,STOLEN,13271,"{'type': 'Point', 'coordinates': (-79.39737512, 43.64853707)}"
-13312,16428,GO-20199042049,THEFT UNDER,2019-12-25T00:00:00,2019,December,Wednesday,25,359,14,2019-12-26T00:00:00,2019,December,Thursday,26,360,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,,RG,21,BLK,450.0,STOLEN,13272,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-13313,16913,GO-20149005989,THEFT UNDER,2014-08-10T00:00:00,2014,August,Sunday,10,222,11,2014-08-15T00:00:00,2014,August,Friday,15,227,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SC,,MT,24,BLU,600.0,STOLEN,13273,"{'type': 'Point', 'coordinates': (-79.39388892, 43.64273773)}"
-13314,12082,GO-20169008721,THEFT UNDER,2016-08-12T00:00:00,2016,August,Friday,12,225,19,2016-08-14T00:00:00,2016,August,Sunday,14,227,10,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,BRUTE,SC,45,BLK,2300.0,STOLEN,13274,"{'type': 'Point', 'coordinates': (-79.37146354, 43.64763677)}"
-13315,9704,GO-20159003253,THEFT UNDER,2015-06-01T00:00:00,2015,June,Monday,1,152,7,2015-06-02T00:00:00,2015,June,Tuesday,2,153,9,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,21,RED,0.0,STOLEN,13275,"{'type': 'Point', 'coordinates': (-79.35840973, 43.65001391)}"
-13316,15760,GO-20209013700,THEFT UNDER - BICYCLE,2020-05-17T00:00:00,2020,May,Sunday,17,138,18,2020-05-22T00:00:00,2020,May,Friday,22,143,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DB,,RC,8,GRY,900.0,STOLEN,13276,"{'type': 'Point', 'coordinates': (-79.39184935, 43.63765238)}"
-13317,14612,GO-20209001347,B&E W'INTENT,2020-01-06T00:00:00,2020,January,Monday,6,6,18,2020-01-12T00:00:00,2020,January,Sunday,12,12,22,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,RAPID 3 L GREY,RC,24,GRY,1000.0,STOLEN,13277,"{'type': 'Point', 'coordinates': (-79.40078712, 43.64430357)}"
-13318,8651,GO-20149005903,THEFT UNDER,2014-08-12T00:00:00,2014,August,Tuesday,12,224,21,2014-08-13T00:00:00,2014,August,Wednesday,13,225,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,ADAGIO,RG,24,,700.0,STOLEN,13278,"{'type': 'Point', 'coordinates': (-79.39835558, 43.64685172)}"
-13319,17054,GO-20189019748,THEFT UNDER - BICYCLE,2018-06-01T00:00:00,2018,June,Friday,1,152,9,2018-06-22T00:00:00,2018,June,Friday,22,173,8,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,"GLIDER""""",OT,1,BLU,0.0,STOLEN,13300,"{'type': 'Point', 'coordinates': (-79.35677669, 43.6529262)}"
-13320,16945,GO-20171240395,THEFT UNDER - BICYCLE,2017-07-10T00:00:00,2017,July,Monday,10,191,11,2017-07-11T00:00:00,2017,July,Tuesday,11,192,9,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,,RG,21,BLK,700.0,STOLEN,13279,"{'type': 'Point', 'coordinates': (-79.35971484, 43.65076046)}"
-13321,16430,GO-202078699,B&E,2019-10-12T00:00:00,2019,October,Saturday,12,285,17,2020-01-12T00:00:00,2020,January,Sunday,12,12,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,SIRRUS COMP,OT,12,BLK,1100.0,STOLEN,13280,"{'type': 'Point', 'coordinates': (-79.38994752, 43.64370303)}"
-13322,12085,GO-20169008715,THEFT UNDER,2016-06-01T00:00:00,2016,June,Wednesday,1,153,8,2016-08-14T00:00:00,2016,August,Sunday,14,227,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,VIA I,RG,3,WHI,913.0,STOLEN,13281,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-13323,9706,GO-20159003258,THEFT UNDER,2015-05-28T00:00:00,2015,May,Thursday,28,148,17,2015-06-02T00:00:00,2015,June,Tuesday,2,153,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,R800,RC,12,GLD,800.0,STOLEN,13282,"{'type': 'Point', 'coordinates': (-79.38396859, 43.64239001)}"
-13324,15764,GO-20209013854,THEFT UNDER,2020-05-06T00:00:00,2020,May,Wednesday,6,127,17,2020-05-25T00:00:00,2020,May,Monday,25,146,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,KO,DEW,RG,18,BLK,450.0,STOLEN,13283,"{'type': 'Point', 'coordinates': (-79.39048611, 43.645008190000006)}"
-13325,14630,GO-20209012002,THEFT UNDER,2020-04-23T00:00:00,2020,April,Thursday,23,114,9,2020-04-27T00:00:00,2020,April,Monday,27,118,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,RA,,TO,7,SIL,,STOLEN,13284,"{'type': 'Point', 'coordinates': (-79.39880646, 43.64142779)}"
-13326,8660,GO-20149005930,THEFT UNDER,2014-08-13T00:00:00,2014,August,Wednesday,13,225,20,2014-08-14T00:00:00,2014,August,Thursday,14,226,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,3,BLK,,STOLEN,13285,"{'type': 'Point', 'coordinates': (-79.39124574, 43.64342012)}"
-13327,15536,GO-20169008539,THEFT UNDER - BICYCLE,2016-08-10T00:00:00,2016,August,Wednesday,10,223,10,2016-08-10T00:00:00,2016,August,Wednesday,10,223,17,D14,Toronto,77,Waterfront Communities-The Island (77),Unknown,Other,SU,,MT,21,DBL,150.0,STOLEN,13475,"{'type': 'Point', 'coordinates': (-79.40372116, 43.64647061)}"
-13328,16984,GO-20179015877,THEFT UNDER - BICYCLE,2017-09-26T00:00:00,2017,September,Tuesday,26,269,14,2017-09-26T00:00:00,2017,September,Tuesday,26,269,20,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,TO,12,BLK,1977.0,STOLEN,13286,"{'type': 'Point', 'coordinates': (-79.36845254, 43.64877113)}"
-13329,16431,GO-202078699,B&E,2019-10-12T00:00:00,2019,October,Saturday,12,285,17,2020-01-12T00:00:00,2020,January,Sunday,12,12,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CANNONDALE,SUPER 6 DI2,OT,12,WHI,3520.0,STOLEN,13287,"{'type': 'Point', 'coordinates': (-79.38994752, 43.64370303)}"
-13330,15775,GO-20201080590,THEFT OF EBIKE UNDER $5000,2020-06-06T00:00:00,2020,June,Saturday,6,158,15,2020-06-12T00:00:00,2020,June,Friday,12,164,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,AMEGO,BOLD,EL,7,WHI,3000.0,STOLEN,13288,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-13331,12090,GO-20161437126,THEFT UNDER - BICYCLE,2016-08-14T00:00:00,2016,August,Sunday,14,227,20,2016-08-14T00:00:00,2016,August,Sunday,14,227,20,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,SUPERBIKE,MT,21,GRNBRN,160.0,STOLEN,13289,"{'type': 'Point', 'coordinates': (-79.3979648, 43.63940267)}"
-13332,9714,GO-2015923358,THEFT UNDER,2015-06-02T00:00:00,2015,June,Tuesday,2,153,13,2015-06-02T00:00:00,2015,June,Tuesday,2,153,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,UK,RG,1,BLK,250.0,STOLEN,13290,"{'type': 'Point', 'coordinates': (-79.39388892, 43.64273773)}"
-13333,8665,GO-20142735203,THEFT UNDER,2014-08-19T00:00:00,2014,August,Tuesday,19,231,17,2014-08-19T00:00:00,2014,August,Tuesday,19,231,19,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CANNONDALE,QUICK 5,MT,21,BLK,900.0,STOLEN,13291,"{'type': 'Point', 'coordinates': (-79.35971484, 43.65076046)}"
-13334,15782,GO-20209015952,THEFT UNDER,2020-06-19T00:00:00,2020,June,Friday,19,171,3,2020-06-23T00:00:00,2020,June,Tuesday,23,175,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,PASSADO,RG,7,BLK,400.0,STOLEN,13292,"{'type': 'Point', 'coordinates': (-79.39124574, 43.64342012)}"
-13335,12091,GO-20161437126,THEFT UNDER - BICYCLE,2016-08-14T00:00:00,2016,August,Sunday,14,227,20,2016-08-14T00:00:00,2016,August,Sunday,14,227,20,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,FOLDING,OT,6,RED,120.0,STOLEN,13293,"{'type': 'Point', 'coordinates': (-79.3979648, 43.63940267)}"
-13336,14633,GO-20209012808,THEFT UNDER,2020-05-09T00:00:00,2020,May,Saturday,9,130,11,2020-05-09T00:00:00,2020,May,Saturday,9,130,21,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,FCR3,RG,8,BLK,350.0,STOLEN,13294,"{'type': 'Point', 'coordinates': (-79.39668944, 43.63667003)}"
-13337,16432,GO-20209001572,THEFT UNDER,2020-01-13T00:00:00,2020,January,Monday,13,13,13,2020-01-14T00:00:00,2020,January,Tuesday,14,14,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,RM,INSTINCT 999 MS,MT,21,LGR,2200.0,STOLEN,13295,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-13338,16997,GO-20179017650,THEFT UNDER - BICYCLE,2017-10-19T00:00:00,2017,October,Thursday,19,292,7,2017-10-20T00:00:00,2017,October,Friday,20,293,8,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,2013 TREK NEKO,MT,12,GRN,200.0,STOLEN,13296,"{'type': 'Point', 'coordinates': (-79.36607348, 43.64932911)}"
-13339,17044,GO-20189017586,THEFT UNDER - BICYCLE,2018-05-30T00:00:00,2018,May,Wednesday,30,150,11,2018-06-06T00:00:00,2018,June,Wednesday,6,157,12,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,PLUTONIUM,RC,20,WHI,0.0,STOLEN,13297,"{'type': 'Point', 'coordinates': (-79.37146354, 43.64763677)}"
-13340,14634,GO-20209013232,THEFT UNDER,2020-05-16T00:00:00,2020,May,Saturday,16,137,10,2020-05-16T00:00:00,2020,May,Saturday,16,137,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GT,TRANSEO SPORT 7,RG,6,GRY,500.0,STOLEN,13298,"{'type': 'Point', 'coordinates': (-79.40185545, 43.64191381)}"
-13341,8666,GO-20142735203,THEFT UNDER,2014-08-19T00:00:00,2014,August,Tuesday,19,231,17,2014-08-19T00:00:00,2014,August,Tuesday,19,231,19,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CANNONDALE,QUICK SI,MT,21,WHIPLE,900.0,STOLEN,13299,"{'type': 'Point', 'coordinates': (-79.35971484, 43.65076046)}"
-13342,11298,GO-2016815733,THEFT UNDER,2016-05-10T00:00:00,2016,May,Tuesday,10,131,21,2016-05-13T00:00:00,2016,May,Friday,13,134,7,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,,MT,0,,100.0,STOLEN,15770,"{'type': 'Point', 'coordinates': (-79.39343719, 43.66303628)}"
-13343,16439,GO-20209006106,THEFT UNDER,2019-11-27T00:00:00,2019,November,Wednesday,27,331,8,2020-02-20T00:00:00,2020,February,Thursday,20,51,8,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,,TO,20,WHI,2258.0,STOLEN,13301,"{'type': 'Point', 'coordinates': (-79.39186446, 43.64164294)}"
-13344,12096,GO-20169008765,THEFT UNDER - BICYCLE,2016-08-11T00:00:00,2016,August,Thursday,11,224,20,2016-08-15T00:00:00,2016,August,Monday,15,228,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,SPECIALIZED,MT,5,RED,1500.0,STOLEN,13302,"{'type': 'Point', 'coordinates': (-79.4023568, 43.64319258)}"
-13345,16447,GO-20209010673,THEFT UNDER,2020-04-07T00:00:00,2020,April,Tuesday,7,98,14,2020-04-08T00:00:00,2020,April,Wednesday,8,99,1,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE,RG,14,BLK,450.0,STOLEN,13303,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-13346,14635,GO-20209013326,THEFT UNDER - BICYCLE,2020-05-16T00:00:00,2020,May,Saturday,16,137,11,2020-05-17T00:00:00,2020,May,Sunday,17,138,17,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,TRI CROSS SPORT,OT,18,BLK,2000.0,STOLEN,13304,"{'type': 'Point', 'coordinates': (-79.40372116, 43.64647061)}"
-13347,8675,GO-20149005996,THEFT UNDER,2014-08-19T00:00:00,2014,August,Tuesday,19,231,9,2014-08-19T00:00:00,2014,August,Tuesday,19,231,22,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,JACK RC,MT,9,RED,1000.0,STOLEN,13305,"{'type': 'Point', 'coordinates': (-79.40005716, 43.64445256)}"
-13348,15786,GO-20209016525,THEFT UNDER,2020-06-29T00:00:00,2020,June,Monday,29,181,7,2020-06-30T00:00:00,2020,June,Tuesday,30,182,7,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,,MT,9,,1000.0,STOLEN,13306,"{'type': 'Point', 'coordinates': (-79.39281928, 43.64732006)}"
-13349,17066,GO-20189021347,THEFT UNDER - BICYCLE,2018-07-05T00:00:00,2018,July,Thursday,5,186,9,2018-07-05T00:00:00,2018,July,Thursday,5,186,20,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,BRAVO (BLUE RIM,RG,1,BLK,400.0,STOLEN,13307,"{'type': 'Point', 'coordinates': (-79.37302563, 43.64248042)}"
-13350,9719,GO-20159003307,THEFT UNDER,2015-06-02T00:00:00,2015,June,Tuesday,2,153,13,2015-06-03T00:00:00,2015,June,Wednesday,3,154,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,RG,1,,500.0,STOLEN,13308,"{'type': 'Point', 'coordinates': (-79.39410409, 43.64705106)}"
-13351,17070,GO-20189022832,THEFT UNDER - BICYCLE,2018-07-16T00:00:00,2018,July,Monday,16,197,9,2018-07-17T00:00:00,2018,July,Tuesday,17,198,18,D51,Toronto,77,Waterfront Communities-The Island (77),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,NO,STORM 7.2,MT,24,GRY,700.0,STOLEN,13309,"{'type': 'Point', 'coordinates': (-79.37302563, 43.64248042)}"
-13352,16449,GO-20209011967,THEFT UNDER - BICYCLE,2020-04-26T00:00:00,2020,April,Sunday,26,117,13,2020-04-26T00:00:00,2020,April,Sunday,26,117,15,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,12,BLU,200.0,STOLEN,13310,"{'type': 'Point', 'coordinates': (-79.36388253000001, 43.64495966)}"
-13353,12107,GO-20169008828,THEFT UNDER,2016-08-15T00:00:00,2016,August,Monday,15,228,6,2016-08-15T00:00:00,2016,August,Monday,15,228,16,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,TRAIL X,MT,21,BLK,500.0,STOLEN,13311,"{'type': 'Point', 'coordinates': (-79.3979648, 43.63940267)}"
-13354,8679,GO-20149006012,THEFT UNDER,2014-08-18T00:00:00,2014,August,Monday,18,230,7,2014-08-19T00:00:00,2014,August,Tuesday,19,231,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,TRAIL X2,MT,8,PLE,400.0,STOLEN,13312,"{'type': 'Point', 'coordinates': (-79.38065193, 43.64100385)}"
-13355,14639,GO-20209013454,B&E,2020-05-17T00:00:00,2020,May,Sunday,17,138,5,2020-05-19T00:00:00,2020,May,Tuesday,19,140,17,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,5,BLK,120.0,STOLEN,13313,"{'type': 'Point', 'coordinates': (-79.40306565, 43.64488902)}"
-13356,15794,GO-20209018014,THEFT UNDER,2020-07-20T00:00:00,2020,July,Monday,20,202,20,2020-07-20T00:00:00,2020,July,Monday,20,202,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SC,,MT,24,BLK,500.0,STOLEN,13314,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-13357,9723,GO-20159003327,THEFT UNDER,2015-06-03T00:00:00,2015,June,Wednesday,3,154,11,2015-06-04T00:00:00,2015,June,Thursday,4,155,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,2014 PISTA FIXI,RC,1,WHI,0.0,STOLEN,13315,"{'type': 'Point', 'coordinates': (-79.39075649, 43.64913078)}"
-13358,17087,GO-20181492415,THEFT UNDER - BICYCLE,2018-08-03T00:00:00,2018,August,Friday,3,215,0,2018-08-13T00:00:00,2018,August,Monday,13,225,18,D51,Toronto,77,Waterfront Communities-The Island (77),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,OT,21,BLKRED,600.0,STOLEN,13316,"{'type': 'Point', 'coordinates': (-79.36845254, 43.64877113)}"
-13359,9727,GO-20159003342,THEFT UNDER,2015-06-04T00:00:00,2015,June,Thursday,4,155,15,2015-06-04T00:00:00,2015,June,Thursday,4,155,21,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,ESCAPE 3 M,OT,21,SIL,500.0,STOLEN,13317,"{'type': 'Point', 'coordinates': (-79.39837878, 43.64832482)}"
-13360,12115,GO-20169008877,THEFT UNDER,2016-08-13T00:00:00,2016,August,Saturday,13,226,13,2016-08-16T00:00:00,2016,August,Tuesday,16,229,15,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,FJ,2011,RC,1,SIL,0.0,STOLEN,13318,"{'type': 'Point', 'coordinates': (-79.35713011, 43.65083215)}"
-13361,15795,GO-20209018087,THEFT UNDER,2020-07-08T00:00:00,2020,July,Wednesday,8,190,16,2020-07-21T00:00:00,2020,July,Tuesday,21,203,8,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,OMEGA,RG,14,BLK,800.0,STOLEN,13319,"{'type': 'Point', 'coordinates': (-79.37142509, 43.64944981)}"
-13362,14647,GO-20209014240,THEFT UNDER,2020-05-26T00:00:00,2020,May,Tuesday,26,147,23,2020-05-30T00:00:00,2020,May,Saturday,30,151,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,SUMO 4.0,OT,21,BLK,850.0,STOLEN,13320,"{'type': 'Point', 'coordinates': (-79.39882641, 43.63812175)}"
-13363,8688,GO-20149006074,THEFT UNDER,2014-08-10T00:00:00,2014,August,Sunday,10,222,14,2014-08-18T00:00:00,2014,August,Monday,18,230,21,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,IN,,MT,7,GRY,150.0,STOLEN,13321,"{'type': 'Point', 'coordinates': (-79.39592984, 43.64780696)}"
-13364,17108,GO-20189032523,B&E,2018-09-30T00:00:00,2018,September,Sunday,30,273,17,2018-10-01T00:00:00,2018,October,Monday,1,274,14,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,ALLEZ COMP,RC,9,WHI,1000.0,STOLEN,13322,"{'type': 'Point', 'coordinates': (-79.37646324, 43.64578351)}"
-13365,16450,GO-20209011993,THEFT UNDER - BICYCLE,2020-04-27T00:00:00,2020,April,Monday,27,118,11,2020-04-27T00:00:00,2020,April,Monday,27,118,11,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,BEASLEY - CHAX8,MT,8,BLK,680.0,STOLEN,13323,"{'type': 'Point', 'coordinates': (-79.35971484, 43.65076046)}"
-13366,9730,GO-2015947662,THEFT UNDER,2015-06-06T00:00:00,2015,June,Saturday,6,157,12,2015-06-06T00:00:00,2015,June,Saturday,6,157,12,D51,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,EPIC,MT,21,BLKSIL,,STOLEN,13324,"{'type': 'Point', 'coordinates': (-79.35797286, 43.6506383)}"
-13367,12125,GO-20169008943,THEFT UNDER - BICYCLE,2016-08-17T00:00:00,2016,August,Wednesday,17,230,15,2016-08-17T00:00:00,2016,August,Wednesday,17,230,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,CAAD 8,RG,21,BLK,1000.0,STOLEN,13325,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-13368,15800,GO-20209019060,THEFT UNDER,2020-07-30T00:00:00,2020,July,Thursday,30,212,17,2020-07-31T00:00:00,2020,July,Friday,31,213,8,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GF,,MT,21,,700.0,STOLEN,13326,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-13369,14648,GO-2020992163,THEFT UNDER - BICYCLE,2020-05-24T00:00:00,2020,May,Sunday,24,145,14,2020-05-29T00:00:00,2020,May,Friday,29,150,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CRITICAL CYCLE,,OT,1,GRN,400.0,STOLEN,13327,"{'type': 'Point', 'coordinates': (-79.39835558, 43.64685172)}"
-13370,8694,GO-20149006101,THEFT UNDER,2014-08-16T00:00:00,2014,August,Saturday,16,228,10,2014-08-19T00:00:00,2014,August,Tuesday,19,231,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,X RAY,RG,1,BGE,325.0,STOLEN,13328,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-13371,17112,GO-20189033993,THEFT UNDER - BICYCLE,2018-10-13T00:00:00,2018,October,Saturday,13,286,12,2018-10-13T00:00:00,2018,October,Saturday,13,286,17,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SIRRUS ELITE PR,RG,1,GRY,800.0,STOLEN,13329,"{'type': 'Point', 'coordinates': (-79.37215317, 43.64913066)}"
-13372,8700,GO-20149006131,THEFT UNDER,2014-08-16T00:00:00,2014,August,Saturday,16,228,23,2014-08-21T00:00:00,2014,August,Thursday,21,233,23,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,,OT,1,BLK,1500.0,STOLEN,13330,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-13373,8702,GO-20149006144,THEFT UNDER,2014-08-20T00:00:00,2014,August,Wednesday,20,232,15,2014-08-20T00:00:00,2014,August,Wednesday,20,232,19,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,CONVERSE,MT,21,BLU,418.0,STOLEN,13331,"{'type': 'Point', 'coordinates': (-79.36607348, 43.64932911)}"
-13374,8706,GO-20149006163,THEFT UNDER,2014-07-19T00:00:00,2014,July,Saturday,19,200,1,2014-08-20T00:00:00,2014,August,Wednesday,20,232,23,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SP,,RG,8,RED,850.0,STOLEN,13332,"{'type': 'Point', 'coordinates': (-79.39153656, 43.64758619)}"
-13375,8707,GO-20149006168,THEFT UNDER,2014-08-18T00:00:00,2014,August,Monday,18,230,12,2014-08-21T00:00:00,2014,August,Thursday,21,233,11,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SC,SCHWINN GRANDE,MT,24,RED,600.0,STOLEN,13333,"{'type': 'Point', 'coordinates': (-79.35971484, 43.65076046)}"
-13376,8711,GO-20142768465,MISCHIEF UNDER,2014-08-24T00:00:00,2014,August,Sunday,24,236,15,2014-08-24T00:00:00,2014,August,Sunday,24,236,18,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,,MT,21,BLK,600.0,STOLEN,13334,"{'type': 'Point', 'coordinates': (-79.35971484, 43.65076046)}"
-13377,8712,GO-20142768465,MISCHIEF UNDER,2014-08-24T00:00:00,2014,August,Sunday,24,236,15,2014-08-24T00:00:00,2014,August,Sunday,24,236,18,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,,MT,21,BLU,600.0,STOLEN,13335,"{'type': 'Point', 'coordinates': (-79.35971484, 43.65076046)}"
-13378,8738,GO-20149006318,THEFT UNDER,2014-08-26T00:00:00,2014,August,Tuesday,26,238,18,2014-08-26T00:00:00,2014,August,Tuesday,26,238,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,3,BLK,0.0,STOLEN,13336,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-13379,12214,GO-20169009598,THEFT UNDER - BICYCLE,2016-08-28T00:00:00,2016,August,Sunday,28,241,0,2016-08-28T00:00:00,2016,August,Sunday,28,241,11,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,SU,MEDALIST,TO,10,BLK,250.0,STOLEN,15795,"{'type': 'Point', 'coordinates': (-79.40244418000002, 43.65929925)}"
-13380,8741,GO-20149006324,THEFT UNDER,2014-08-11T00:00:00,2014,August,Monday,11,223,13,2014-08-26T00:00:00,2014,August,Tuesday,26,238,16,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,3700,MT,5,BLU,700.0,STOLEN,13337,"{'type': 'Point', 'coordinates': (-79.35840973, 43.65001391)}"
-13381,8745,GO-20149006263,THEFT UNDER,2014-08-24T00:00:00,2014,August,Sunday,24,236,18,2014-08-24T00:00:00,2014,August,Sunday,24,236,21,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,REVEL,MT,21,BLK,525.0,STOLEN,13338,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-13382,8750,GO-20149006253,THEFT UNDER,2014-08-07T00:00:00,2014,August,Thursday,7,219,20,2014-08-24T00:00:00,2014,August,Sunday,24,236,12,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SC,,RG,3,RED,0.0,STOLEN,13339,"{'type': 'Point', 'coordinates': (-79.36183585, 43.64956942)}"
-13383,8751,GO-20149006205,THEFT UNDER,2014-08-22T00:00:00,2014,August,Friday,22,234,20,2014-08-22T00:00:00,2014,August,Friday,22,234,21,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,STUMPJUMPER COM,MT,27,BLK,650.0,STOLEN,13340,"{'type': 'Point', 'coordinates': (-79.35840973, 43.65001391)}"
-13384,8767,GO-20149006379,THEFT UNDER,2014-08-01T00:00:00,2014,August,Friday,1,213,8,2014-08-28T00:00:00,2014,August,Thursday,28,240,8,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NO,AA00302619,OT,24,BLK,500.0,STOLEN,13341,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-13385,8769,GO-20149006391,THEFT UNDER,2014-08-29T00:00:00,2014,August,Friday,29,241,12,2014-08-29T00:00:00,2014,August,Friday,29,241,20,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,BRAT,MT,24,BLU,1500.0,STOLEN,13342,"{'type': 'Point', 'coordinates': (-79.37302563, 43.64248042)}"
-13386,8777,GO-20142820683,THEFT UNDER,2014-09-01T00:00:00,2014,September,Monday,1,244,14,2014-09-01T00:00:00,2014,September,Monday,1,244,16,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,JAMIS,,TO,1,BLUBLK,450.0,STOLEN,13343,"{'type': 'Point', 'coordinates': (-79.39578994, 43.64739695)}"
-13387,8782,GO-20149006464,THEFT UNDER,2014-09-01T00:00:00,2014,September,Monday,1,244,17,2014-09-01T00:00:00,2014,September,Monday,1,244,21,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,12,ONG,1200.0,STOLEN,13344,"{'type': 'Point', 'coordinates': (-79.35971484, 43.65076046)}"
-13388,8783,GO-20149006467,THEFT UNDER,2014-08-30T00:00:00,2014,August,Saturday,30,242,11,2014-09-01T00:00:00,2014,September,Monday,1,244,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CA,F8,MT,8,GRY,600.0,STOLEN,13345,"{'type': 'Point', 'coordinates': (-79.37778379, 43.6430065)}"
-13389,8784,GO-20149006469,THEFT UNDER,2014-08-11T00:00:00,2014,August,Monday,11,223,17,2014-09-02T00:00:00,2014,September,Tuesday,2,245,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,3900,MT,8,BLK,500.0,STOLEN,13346,"{'type': 'Point', 'coordinates': (-79.39820731, 43.64329925)}"
-13390,8786,GO-20149006473,THEFT UNDER,2014-08-29T00:00:00,2014,August,Friday,29,241,14,2014-08-31T00:00:00,2014,August,Sunday,31,243,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE,RG,24,WHI,600.0,STOLEN,13347,"{'type': 'Point', 'coordinates': (-79.39228875, 43.64605377)}"
-13391,8787,GO-20149006475,THEFT UNDER,2014-08-29T00:00:00,2014,August,Friday,29,241,0,2014-09-01T00:00:00,2014,September,Monday,1,244,14,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,JULIET,RG,1,BLK,500.0,STOLEN,13348,"{'type': 'Point', 'coordinates': (-79.37146354, 43.64763677)}"
-13392,8793,GO-20149006503,THEFT UNDER,2014-09-02T00:00:00,2014,September,Tuesday,2,245,15,2014-09-02T00:00:00,2014,September,Tuesday,2,245,20,D52,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,NO,NORCO VFR3,RG,27,WHI,600.0,STOLEN,13349,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-13393,8830,GO-20149006642,THEFT UNDER,2014-09-07T00:00:00,2014,September,Sunday,7,250,13,2014-09-07T00:00:00,2014,September,Sunday,7,250,19,D52,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,NO,KATMANDU,MT,16,BLK,640.0,STOLEN,13350,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-13394,8847,GO-20149006708,THEFT UNDER,2014-09-08T00:00:00,2014,September,Monday,8,251,20,2014-09-08T00:00:00,2014,September,Monday,8,251,23,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,21 SPEED,RG,21,GRY,400.0,STOLEN,13351,"{'type': 'Point', 'coordinates': (-79.35713011, 43.65083215)}"
-13395,8853,GO-20142868169,THEFT UNDER,2014-08-31T00:00:00,2014,August,Sunday,31,243,12,2014-09-08T00:00:00,2014,September,Monday,8,251,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GIANT,DEFY,RC,15,BLU,1700.0,STOLEN,13352,"{'type': 'Point', 'coordinates': (-79.39880646, 43.64142779)}"
-13396,8854,GO-20142888493,THEFT UNDER,2014-09-05T00:00:00,2014,September,Friday,5,248,18,2014-09-11T00:00:00,2014,September,Thursday,11,254,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,FELT,QX75,MT,21,,569.0,STOLEN,13353,"{'type': 'Point', 'coordinates': (-79.39880646, 43.64142779)}"
-13397,8857,GO-20149006748,B&E W'INTENT,2014-09-03T00:00:00,2014,September,Wednesday,3,246,17,2014-09-10T00:00:00,2014,September,Wednesday,10,253,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,SPORTSTER,OT,21,CPR,1000.0,STOLEN,13354,"{'type': 'Point', 'coordinates': (-79.39880646, 43.64142779)}"
-13398,8858,GO-20149006748,B&E W'INTENT,2014-09-03T00:00:00,2014,September,Wednesday,3,246,17,2014-09-10T00:00:00,2014,September,Wednesday,10,253,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,SPORTSTER,OT,21,PLE,1000.0,STOLEN,13355,"{'type': 'Point', 'coordinates': (-79.39880646, 43.64142779)}"
-13399,8859,GO-20149006750,THEFT UNDER,2014-09-07T00:00:00,2014,September,Sunday,7,250,12,2014-09-10T00:00:00,2014,September,Wednesday,10,253,12,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,30,,800.0,STOLEN,13356,"{'type': 'Point', 'coordinates': (-79.35713011, 43.65083215)}"
-13400,8869,GO-20149006791,THEFT UNDER,2014-09-10T00:00:00,2014,September,Wednesday,10,253,21,2014-09-11T00:00:00,2014,September,Thursday,11,254,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,CITIBIKE,RG,7,CRM,650.0,STOLEN,13357,"{'type': 'Point', 'coordinates': (-79.3979648, 43.63940267)}"
-13401,8877,GO-20149006854,THEFT UNDER,2014-09-13T00:00:00,2014,September,Saturday,13,256,13,2014-09-13T00:00:00,2014,September,Saturday,13,256,14,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,,RG,3,BLU,650.0,STOLEN,13358,"{'type': 'Point', 'coordinates': (-79.39811145, 43.64623146000001)}"
-13402,8901,GO-20149006953,THEFT UNDER,2014-09-11T00:00:00,2014,September,Thursday,11,254,20,2014-09-16T00:00:00,2014,September,Tuesday,16,259,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,LASER DX,RG,7,RED,500.0,STOLEN,13359,"{'type': 'Point', 'coordinates': (-79.40005716, 43.64445256)}"
-13403,8928,GO-20149007046,MISCHIEF - ENDANGER LIFE,2014-09-18T00:00:00,2014,September,Thursday,18,261,0,2014-09-20T00:00:00,2014,September,Saturday,20,263,17,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,STUMP JUMPER FS,MT,11,,4500.0,STOLEN,13360,"{'type': 'Point', 'coordinates': (-79.39458503, 43.64442176)}"
-13404,8930,GO-20149007065,THEFT UNDER,2014-09-21T00:00:00,2014,September,Sunday,21,264,7,2014-09-21T00:00:00,2014,September,Sunday,21,264,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,SPECIALIZED HAR,MT,24,BLK,600.0,STOLEN,13361,"{'type': 'Point', 'coordinates': (-79.39558819, 43.63994429)}"
-13405,8957,GO-20149007149,THEFT UNDER,2014-09-23T00:00:00,2014,September,Tuesday,23,266,13,2014-09-23T00:00:00,2014,September,Tuesday,23,266,21,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,URBANO,RG,21,GRY,700.0,STOLEN,13362,"{'type': 'Point', 'coordinates': (-79.35861275, 43.6504911)}"
-13406,8969,GO-20149007182,THEFT UNDER,2014-09-24T00:00:00,2014,September,Wednesday,24,267,20,2014-09-25T00:00:00,2014,September,Thursday,25,268,1,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CC,CCM SCOUT,MT,21,BLU,203.0,STOLEN,13363,"{'type': 'Point', 'coordinates': (-79.37581636, 43.64427666)}"
-13407,8986,GO-20142994313,THEFT UNDER,2014-08-31T00:00:00,2014,August,Sunday,31,243,18,2014-09-27T00:00:00,2014,September,Saturday,27,270,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,RG,1,BLK,1000.0,STOLEN,13364,"{'type': 'Point', 'coordinates': (-79.4010881, 43.64697154)}"
-13408,8997,GO-20149007312,THEFT UNDER,2014-09-24T00:00:00,2014,September,Wednesday,24,267,9,2014-09-30T00:00:00,2014,September,Tuesday,30,273,11,D52,Toronto,77,Waterfront Communities-The Island (77),Go Station,Transit,RA,TARANTULA,MT,10,BLU,,STOLEN,13365,"{'type': 'Point', 'coordinates': (-79.37787283, 43.64321708)}"
-13409,9072,GO-20149007595,THEFT UNDER,2014-10-14T00:00:00,2014,October,Tuesday,14,287,9,2014-10-15T00:00:00,2014,October,Wednesday,15,288,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,VFR 3,RG,24,GRY,593.0,STOLEN,13366,"{'type': 'Point', 'coordinates': (-79.39389489, 43.64651184)}"
-13410,7852,GO-20141948221,THEFT UNDER,2014-04-21T00:00:00,2014,April,Monday,21,111,20,2014-04-24T00:00:00,2014,April,Thursday,24,114,9,D52,Toronto,79,University (79),Universities / Colleges,Educational,DIAMONDBACK,ROAD,OT,18,GLD,2000.0,STOLEN,15931,"{'type': 'Point', 'coordinates': (-79.40207036, 43.66305191)}"
-13411,9079,GO-20149007669,THEFT UNDER,2014-10-11T00:00:00,2014,October,Saturday,11,284,22,2014-10-18T00:00:00,2014,October,Saturday,18,291,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,8.5 DS,OT,21,BLK,1100.0,STOLEN,13367,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-13412,9095,GO-20143146583,THEFT UNDER,2014-10-21T00:00:00,2014,October,Tuesday,21,294,7,2014-10-21T00:00:00,2014,October,Tuesday,21,294,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,EL,1,GRYBLK,700.0,STOLEN,13368,"{'type': 'Point', 'coordinates': (-79.38632963, 43.64800878)}"
-13413,9123,GO-20149007872,THEFT UNDER,2014-10-22T00:00:00,2014,October,Wednesday,22,295,8,2014-10-28T00:00:00,2014,October,Tuesday,28,301,17,D51,Toronto,77,Waterfront Communities-The Island (77),Universities / Colleges,Educational,RM,ELEVATION,MT,18,BLK,,STOLEN,13369,"{'type': 'Point', 'coordinates': (-79.36616846, 43.64421276)}"
-13414,9124,GO-20149007869,THEFT UNDER,2014-10-25T00:00:00,2014,October,Saturday,25,298,14,2014-10-28T00:00:00,2014,October,Tuesday,28,301,17,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ECLIPSE 3 2015,RG,21,BLU,420.0,STOLEN,13370,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-13415,9133,GO-20143204502,THEFT UNDER,2014-10-21T00:00:00,2014,October,Tuesday,21,294,9,2014-10-30T00:00:00,2014,October,Thursday,30,303,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,EL,50,BLK,934.0,STOLEN,13371,"{'type': 'Point', 'coordinates': (-79.39410409, 43.64705106)}"
-13416,9135,GO-20143217913,THEFT UNDER,2014-10-29T00:00:00,2014,October,Wednesday,29,302,18,2014-11-01T00:00:00,2014,November,Saturday,1,305,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CCM,GTS,MT,24,GRNWHI,175.0,STOLEN,13372,"{'type': 'Point', 'coordinates': (-79.39737512, 43.64853707)}"
-13417,9142,GO-20143229281,THEFT UNDER,2014-11-02T00:00:00,2014,November,Sunday,2,306,16,2014-11-03T00:00:00,2014,November,Monday,3,307,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,,MT,15,YEL,300.0,STOLEN,13373,"{'type': 'Point', 'coordinates': (-79.3922993, 43.63874701)}"
-13418,9154,GO-20143238134,THEFT UNDER,2014-08-24T00:00:00,2014,August,Sunday,24,236,12,2014-11-04T00:00:00,2014,November,Tuesday,4,308,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GIANT,DEFY 2,OT,18,BLUWHI,1300.0,STOLEN,13374,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-13419,9176,GO-20149008143,THEFT UNDER,2014-10-25T00:00:00,2014,October,Saturday,25,298,17,2014-11-11T00:00:00,2014,November,Tuesday,11,315,23,D52,Toronto,77,Waterfront Communities-The Island (77),Convenience Stores,Commercial,UK,,MT,30,WHI,221.0,STOLEN,13375,"{'type': 'Point', 'coordinates': (-79.38684132, 43.64925417)}"
-13420,9193,GO-20149008255,THEFT UNDER,2014-11-13T00:00:00,2014,November,Thursday,13,317,18,2014-11-17T00:00:00,2014,November,Monday,17,321,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,OT,CAVALIER,EL,2,BLK,2000.0,STOLEN,13376,"{'type': 'Point', 'coordinates': (-79.38973372, 43.6466028)}"
-13421,9210,GO-20149008505,B&E,2014-09-11T00:00:00,2014,September,Thursday,11,254,6,2014-12-02T00:00:00,2014,December,Tuesday,2,336,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,S1 SHIMCANO ULT,RC,21,WHI,3275.0,STOLEN,13377,"{'type': 'Point', 'coordinates': (-79.39811145, 43.64623146000001)}"
-13422,9245,GO-20149009058,THEFT UNDER,2014-12-01T00:00:00,2014,December,Monday,1,335,22,2014-12-31T00:00:00,2014,December,Wednesday,31,365,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,20,,650.0,STOLEN,13378,"{'type': 'Point', 'coordinates': (-79.39124574, 43.64342012)}"
-13423,9263,GO-20159000274,THEFT UNDER,2015-01-13T00:00:00,2015,January,Tuesday,13,13,21,2015-01-15T00:00:00,2015,January,Thursday,15,15,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,XPN,SC,1,LGR,2500.0,STOLEN,13379,"{'type': 'Point', 'coordinates': (-79.37778379, 43.6430065)}"
-13424,9265,GO-20159000330,THEFT UNDER,2015-01-09T00:00:00,2015,January,Friday,9,9,16,2015-01-18T00:00:00,2015,January,Sunday,18,18,19,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,OT,10,BLK,500.0,STOLEN,13380,"{'type': 'Point', 'coordinates': (-79.37374694, 43.64844177)}"
-13425,9270,GO-2015123267,THEFT UNDER,2015-01-21T00:00:00,2015,January,Wednesday,21,21,8,2015-01-21T00:00:00,2015,January,Wednesday,21,21,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,ECO RYDER,EL,1,BLK,2500.0,STOLEN,13381,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-13426,9306,GO-20159001084,THEFT UNDER,2015-01-23T00:00:00,2015,January,Friday,23,23,17,2015-03-04T00:00:00,2015,March,Wednesday,4,63,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,HEART,RG,1,BLK,0.0,STOLEN,13382,"{'type': 'Point', 'coordinates': (-79.40137395, 43.64770851)}"
-13427,9314,GO-20159001179,THEFT UNDER,2015-03-09T00:00:00,2015,March,Monday,9,68,12,2015-03-09T00:00:00,2015,March,Monday,9,68,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,TO,24,WHI,,STOLEN,13383,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-13428,9335,GO-20159001439,THEFT UNDER,2015-03-21T00:00:00,2015,March,Saturday,21,80,8,2015-03-21T00:00:00,2015,March,Saturday,21,80,8,D52,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,SIRRUS,TO,21,BLK,550.0,STOLEN,13384,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-13429,9349,GO-20159001523,THEFT UNDER,2015-03-25T00:00:00,2015,March,Wednesday,25,84,8,2015-03-25T00:00:00,2015,March,Wednesday,25,84,8,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,SOHO,RG,1,BLK,1200.0,STOLEN,13385,"{'type': 'Point', 'coordinates': (-79.39175463, 43.64474761000001)}"
-13430,9355,GO-20159001594,THEFT FROM MOTOR VEHICLE UNDER,2015-03-27T00:00:00,2015,March,Friday,27,86,3,2015-03-28T00:00:00,2015,March,Saturday,28,87,14,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KH,ALITE 1000,MT,24,BLK,850.0,STOLEN,13386,"{'type': 'Point', 'coordinates': (-79.36940928, 43.647764120000005)}"
-13431,9372,GO-20159001725,THEFT UNDER,2015-03-29T00:00:00,2015,March,Sunday,29,88,16,2015-04-06T00:00:00,2015,April,Monday,6,96,17,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,1.2,RC,9,BLK,1300.0,STOLEN,13387,"{'type': 'Point', 'coordinates': (-79.39811145, 43.64623146000001)}"
-13432,9394,GO-20159001882,THEFT UNDER,2015-04-10T00:00:00,2015,April,Friday,10,100,18,2015-04-13T00:00:00,2015,April,Monday,13,103,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,HARDROCK COMP,MT,24,RED,700.0,STOLEN,13388,"{'type': 'Point', 'coordinates': (-79.40185545, 43.64191381)}"
-13433,9424,GO-2015643682,THEFT UNDER,2015-04-17T00:00:00,2015,April,Friday,17,107,18,2015-04-18T00:00:00,2015,April,Saturday,18,108,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SIERRA,SPORT 500,OT,0,WHIBLU,400.0,STOLEN,13389,"{'type': 'Point', 'coordinates': (-79.39186446, 43.64164294)}"
-13434,9444,GO-2015651634,B&E,2015-04-19T00:00:00,2015,April,Sunday,19,109,2,2015-04-20T00:00:00,2015,April,Monday,20,110,8,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CERVELO,UNKNOWN,TO,20,YEL,1200.0,STOLEN,13390,"{'type': 'Point', 'coordinates': (-79.39880646, 43.64142779)}"
-13435,9448,GO-20159002099,THEFT UNDER,2015-04-18T00:00:00,2015,April,Saturday,18,108,8,2015-04-20T00:00:00,2015,April,Monday,20,110,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,QX85 (2014),RG,9,BLK,1000.0,STOLEN,13391,"{'type': 'Point', 'coordinates': (-79.39105358, 43.64631528)}"
-13436,9462,GO-20159002178,THEFT UNDER,2014-12-01T00:00:00,2014,December,Monday,1,335,14,2015-04-23T00:00:00,2015,April,Thursday,23,113,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,NEKO SD,TO,10,WHI,1000.0,STOLEN,13392,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-13437,9463,GO-20159002178,THEFT UNDER,2014-12-01T00:00:00,2014,December,Monday,1,335,14,2015-04-23T00:00:00,2015,April,Thursday,23,113,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,8.4 DS 19 MATTE,TO,10,GRY,1000.0,STOLEN,13393,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-13438,9469,GO-2015683901,THEFT UNDER,2015-04-23T00:00:00,2015,April,Thursday,23,113,20,2015-04-25T00:00:00,2015,April,Saturday,25,115,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,OT,1,BLK,300.0,STOLEN,13394,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-13439,9481,GO-2015695461,THEFT UNDER,2015-04-25T00:00:00,2015,April,Saturday,25,115,16,2015-04-27T00:00:00,2015,April,Monday,27,117,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KONA,LISA DS,MT,15,GRNWHI,1600.0,STOLEN,13395,"{'type': 'Point', 'coordinates': (-79.39105358, 43.64631528)}"
-13440,9511,GO-20159002409,THEFT UNDER,2015-05-03T00:00:00,2015,May,Sunday,3,123,13,2015-05-03T00:00:00,2015,May,Sunday,3,123,14,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,ROCKHOPPER,MT,10,BLU,500.0,STOLEN,13396,"{'type': 'Point', 'coordinates': (-79.37524509, 43.64636121)}"
-13441,9512,GO-20159002409,THEFT UNDER,2015-05-03T00:00:00,2015,May,Sunday,3,123,13,2015-05-03T00:00:00,2015,May,Sunday,3,123,14,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,GALAXY,TO,10,RED,500.0,STOLEN,13397,"{'type': 'Point', 'coordinates': (-79.37524509, 43.64636121)}"
-13442,9520,GO-20159002433,THEFT UNDER,2015-05-01T00:00:00,2015,May,Friday,1,121,0,2015-05-04T00:00:00,2015,May,Monday,4,124,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,TCX SLR 2,RC,22,BLK,1525.0,STOLEN,13398,"{'type': 'Point', 'coordinates': (-79.37778379, 43.6430065)}"
-13443,9523,GO-20159002448,THEFT UNDER,2015-05-04T00:00:00,2015,May,Monday,4,124,8,2015-05-04T00:00:00,2015,May,Monday,4,124,21,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM 3,RG,24,BLK,600.0,STOLEN,13399,"{'type': 'Point', 'coordinates': (-79.36592705, 43.64892655)}"
-13444,9525,GO-20159002464,B&E,2015-05-02T00:00:00,2015,May,Saturday,2,122,18,2015-05-05T00:00:00,2015,May,Tuesday,5,125,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,FENIX C40 BICYC,RC,22,BLK,2100.0,STOLEN,13400,"{'type': 'Point', 'coordinates': (-79.37778379, 43.6430065)}"
-13445,9527,GO-20159002470,THEFT UNDER,2015-04-30T00:00:00,2015,April,Thursday,30,120,19,2015-05-05T00:00:00,2015,May,Tuesday,5,125,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,SHADOW 9 MOUNTA,MT,7,BLK,200.0,STOLEN,13401,"{'type': 'Point', 'coordinates': (-79.39124574, 43.64342012)}"
-13446,9530,GO-20159002473,THEFT UNDER,2015-05-02T00:00:00,2015,May,Saturday,2,122,17,2015-05-05T00:00:00,2015,May,Tuesday,5,125,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,FJ,ABSOLUTE 2.1,RG,24,BLK,700.0,STOLEN,13402,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-13447,9531,GO-20159002475,THEFT UNDER,2015-04-30T00:00:00,2015,April,Thursday,30,120,18,2015-05-05T00:00:00,2015,May,Tuesday,5,125,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,14 SEEK 3 M,MT,18,GRY,600.0,STOLEN,13403,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-13448,9562,GO-20159002608,THEFT UNDER,2015-05-10T00:00:00,2015,May,Sunday,10,130,21,2015-05-10T00:00:00,2015,May,Sunday,10,130,22,D52,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,DB,,RG,7,WHI,550.0,STOLEN,13404,"{'type': 'Point', 'coordinates': (-79.38498159, 43.64477493)}"
-13449,9563,GO-20159002615,THEFT UNDER,2015-05-11T00:00:00,2015,May,Monday,11,131,14,2015-05-11T00:00:00,2015,May,Monday,11,131,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,3,BLK,600.0,STOLEN,13405,"{'type': 'Point', 'coordinates': (-79.38860347, 43.65042088)}"
-13450,9565,GO-20159002642,THEFT UNDER,2015-05-09T00:00:00,2015,May,Saturday,9,129,16,2015-05-12T00:00:00,2015,May,Tuesday,12,132,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,3,BLK,400.0,STOLEN,13406,"{'type': 'Point', 'coordinates': (-79.38314772, 43.64033919)}"
-13451,9572,GO-20159002667,THEFT UNDER,2015-05-03T00:00:00,2015,May,Sunday,3,123,18,2015-05-12T00:00:00,2015,May,Tuesday,12,132,11,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,FILIBUS,OT,21,RED,4000.0,STOLEN,13407,"{'type': 'Point', 'coordinates': (-79.37524509, 43.64636121)}"
-13452,9612,GO-20159002921,THEFT UNDER,2015-05-18T00:00:00,2015,May,Monday,18,138,13,2015-05-20T00:00:00,2015,May,Wednesday,20,140,13,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KO,DEW,OT,6,WHI,600.0,STOLEN,13408,"{'type': 'Point', 'coordinates': (-79.36607348, 43.64932911)}"
-13453,9615,GO-20159002932,THEFT UNDER,2015-05-19T00:00:00,2015,May,Tuesday,19,139,22,2015-05-20T00:00:00,2015,May,Wednesday,20,140,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,BOWERY,RG,1,BLK,700.0,STOLEN,13409,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-13454,16618,GO-20169000216,THEFT UNDER,2016-01-05T00:00:00,2016,January,Tuesday,5,5,9,2016-01-07T00:00:00,2016,January,Thursday,7,7,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,21,BLK,850.0,STOLEN,13649,"{'type': 'Point', 'coordinates': (-79.38946509, 43.64593813)}"
-13455,9620,GO-2015846899,B&E,2015-03-24T00:00:00,2015,March,Tuesday,24,83,19,2015-05-21T00:00:00,2015,May,Thursday,21,141,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OTHER,F2,OT,1,BLKRED,400.0,STOLEN,13410,"{'type': 'Point', 'coordinates': (-79.3979648, 43.63940267)}"
-13456,9635,GO-2015858877,THEFT UNDER,2015-05-23T00:00:00,2015,May,Saturday,23,143,10,2015-05-23T00:00:00,2015,May,Saturday,23,143,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,SEEK 1,OT,8,GRY,1150.0,STOLEN,13411,"{'type': 'Point', 'coordinates': (-79.39204821, 43.64885072)}"
-13457,9742,GO-20159003386,THEFT UNDER,2015-06-06T00:00:00,2015,June,Saturday,6,157,13,2015-06-06T00:00:00,2015,June,Saturday,6,157,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,RUBY ELITE,RC,18,GRY,3500.0,STOLEN,13412,"{'type': 'Point', 'coordinates': (-79.39204821, 43.64885072)}"
-13458,16453,GO-20209012330,THEFT UNDER,2020-05-01T00:00:00,2020,May,Friday,1,122,18,2020-05-02T00:00:00,2020,May,Saturday,2,123,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,ESCAPE 3 2020,RG,21,GRY,644.0,STOLEN,13413,"{'type': 'Point', 'coordinates': (-79.39124176, 43.640111790000006)}"
-13459,12126,GO-20169008966,THEFT UNDER - BICYCLE,2016-08-09T00:00:00,2016,August,Tuesday,9,222,16,2016-08-17T00:00:00,2016,August,Wednesday,17,230,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,NO,SPLICE,MT,24,BLU,100.0,STOLEN,13414,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-13460,17125,GO-2015768547,THEFT UNDER,2015-05-08T00:00:00,2015,May,Friday,8,128,17,2015-05-08T00:00:00,2015,May,Friday,8,128,19,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,,MT,12,BLKRED,1600.0,STOLEN,13415,"{'type': 'Point', 'coordinates': (-79.37142509, 43.64944981)}"
-13461,9771,GO-2015981852,THEFT UNDER,2015-06-10T00:00:00,2015,June,Wednesday,10,161,17,2015-06-11T00:00:00,2015,June,Thursday,11,162,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,,OT,0,WHI,150.0,STOLEN,13416,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-13462,15801,GO-20201446751,THEFT UNDER,2020-07-30T00:00:00,2020,July,Thursday,30,212,16,2020-08-03T00:00:00,2020,August,Monday,3,216,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,MT,27,,,STOLEN,13417,"{'type': 'Point', 'coordinates': (-79.38864414, 43.64819947)}"
-13463,12138,GO-20169009044,THEFT UNDER - BICYCLE,2016-08-18T00:00:00,2016,August,Thursday,18,231,13,2016-08-19T00:00:00,2016,August,Friday,19,232,0,D14,Toronto,77,Waterfront Communities-The Island (77),Unknown,Other,TR,TREK 3900,MT,24,BLK,0.0,STOLEN,13418,"{'type': 'Point', 'coordinates': (-79.395007, 43.64546954)}"
-13464,17130,GO-20159002882,THEFT UNDER,2015-05-15T00:00:00,2015,May,Friday,15,135,20,2015-05-19T00:00:00,2015,May,Tuesday,19,139,11,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,SPARK 29,MT,10,BLK,250.0,STOLEN,13419,"{'type': 'Point', 'coordinates': (-79.37146354, 43.64763677)}"
-13465,14650,GO-20209014536,THEFT UNDER - BICYCLE,2020-06-03T00:00:00,2020,June,Wednesday,3,155,8,2020-06-04T00:00:00,2020,June,Thursday,4,156,9,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,6,RED,2500.0,STOLEN,13420,"{'type': 'Point', 'coordinates': (-79.40078712, 43.64430357)}"
-13466,9786,GO-2015988491,THEFT UNDER,2015-06-12T00:00:00,2015,June,Friday,12,163,19,2015-06-12T00:00:00,2015,June,Friday,12,163,20,D51,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPORTEK,6061 T/6,MT,21,REDWHI,50.0,STOLEN,13421,"{'type': 'Point', 'coordinates': (-79.36851255, 43.64728251)}"
-13467,16459,GO-20209014795,THEFT UNDER,2020-06-06T00:00:00,2020,June,Saturday,6,158,23,2020-06-07T00:00:00,2020,June,Sunday,7,159,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,TCR,RC,12,BLK,3000.0,STOLEN,13422,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-13468,15804,GO-20209019665,THEFT UNDER,2020-08-07T00:00:00,2020,August,Friday,7,220,23,2020-08-08T00:00:00,2020,August,Saturday,8,221,2,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SU,,MT,21,ONG,260.0,STOLEN,13423,"{'type': 'Point', 'coordinates': (-79.3621013, 43.65019711)}"
-13469,12153,GO-20169009131,THEFT UNDER,2016-08-21T00:00:00,2016,August,Sunday,21,234,14,2016-08-21T00:00:00,2016,August,Sunday,21,234,14,D51,Toronto,77,Waterfront Communities-The Island (77),Unknown,Other,SC,FOLDAWAY,FO,6,BLK,100.0,STOLEN,13424,"{'type': 'Point', 'coordinates': (-79.36607348, 43.64932911)}"
-13470,17172,GO-20159007190,THEFT UNDER,2015-09-01T00:00:00,2015,September,Tuesday,1,244,17,2015-09-14T00:00:00,2015,September,Monday,14,257,17,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,,MT,12,RED,400.0,STOLEN,13425,"{'type': 'Point', 'coordinates': (-79.37146354, 43.64763677)}"
-13471,14651,GO-20201040980,THEFT UNDER - BICYCLE,2020-06-06T00:00:00,2020,June,Saturday,6,158,5,2020-06-06T00:00:00,2020,June,Saturday,6,158,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,RG,0,,,STOLEN,13426,"{'type': 'Point', 'coordinates': (-79.40185545, 43.64191381)}"
-13472,14669,GO-20179010227,THEFT UNDER,2017-07-14T00:00:00,2017,July,Friday,14,195,14,2017-07-14T00:00:00,2017,July,Friday,14,195,17,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ELECTRIC BICYCL,EL,7,DBL,1000.0,STOLEN,13427,"{'type': 'Point', 'coordinates': (-79.39760717, 43.64495335000001)}"
-13473,14676,GO-20179010954,THEFT UNDER - BICYCLE,2017-06-17T00:00:00,2017,June,Saturday,17,168,10,2017-07-24T00:00:00,2017,July,Monday,24,205,20,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,RA,KODIAK RIMTOUCH,MT,11,BLK,1300.0,STOLEN,13428,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-13474,14703,GO-20171540148,THEFT UNDER - BICYCLE,2017-08-25T00:00:00,2017,August,Friday,25,237,15,2017-08-25T00:00:00,2017,August,Friday,25,237,17,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,21,RED,200.0,STOLEN,13429,"{'type': 'Point', 'coordinates': (-79.395007, 43.64546954)}"
-13475,14707,GO-20171598928,B&E,2017-08-14T00:00:00,2017,August,Monday,14,226,18,2017-08-14T00:00:00,2017,August,Monday,14,226,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,SHIV,OT,10,WHI,,STOLEN,13430,"{'type': 'Point', 'coordinates': (-79.40306565, 43.64488902)}"
-13476,14729,GO-20179016410,THEFT UNDER - BICYCLE,2017-10-03T00:00:00,2017,October,Tuesday,3,276,18,2017-10-03T00:00:00,2017,October,Tuesday,3,276,20,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,21,BLK,600.0,STOLEN,13431,"{'type': 'Point', 'coordinates': (-79.39634181, 43.64876464)}"
-13477,14732,GO-20179017121,THEFT UNDER,2017-10-13T00:00:00,2017,October,Friday,13,286,6,2017-10-13T00:00:00,2017,October,Friday,13,286,16,D14,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,OT,DEL SOL PROJECT,OT,8,BLU,500.0,STOLEN,13432,"{'type': 'Point', 'coordinates': (-79.39820731, 43.64329925)}"
-13478,14735,GO-20179017360,THEFT UNDER,2017-10-16T00:00:00,2017,October,Monday,16,289,12,2017-10-16T00:00:00,2017,October,Monday,16,289,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,HARDROCK,MT,21,BLK,600.0,STOLEN,13433,"{'type': 'Point', 'coordinates': (-79.40094162000001, 43.64469631)}"
-13479,14737,GO-20171926046,THEFT UNDER - BICYCLE,2017-10-06T00:00:00,2017,October,Friday,6,279,0,2017-10-24T00:00:00,2017,October,Tuesday,24,297,14,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,TARMAC,OT,13,GRY,2600.0,STOLEN,13434,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-13480,14741,GO-20179019643,THEFT UNDER - BICYCLE,2017-11-10T00:00:00,2017,November,Friday,10,314,22,2017-11-14T00:00:00,2017,November,Tuesday,14,318,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,21,BLK,400.0,STOLEN,13435,"{'type': 'Point', 'coordinates': (-79.39592984, 43.64780696)}"
-13481,14753,GO-20179022821,THEFT UNDER,2017-12-22T00:00:00,2017,December,Friday,22,356,17,2017-12-22T00:00:00,2017,December,Friday,22,356,17,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KO,BIG HOSS,MT,21,DGR,500.0,STOLEN,13436,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-13482,14758,GO-2018239931,B&E,2018-02-06T00:00:00,2018,February,Tuesday,6,37,8,2018-02-07T00:00:00,2018,February,Wednesday,7,38,14,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,ROUBAIX,RC,12,BLK,6000.0,STOLEN,13437,"{'type': 'Point', 'coordinates': (-79.39880646, 43.64142779)}"
-13483,14760,GO-20189005266,THEFT OVER - BICYCLE,2018-02-17T00:00:00,2018,February,Saturday,17,48,1,2018-02-19T00:00:00,2018,February,Monday,19,50,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,TARMAC SAXO BAN,RC,12,WHI,3000.0,RECOVERED,13438,"{'type': 'Point', 'coordinates': (-79.39895584, 43.646052)}"
-13484,14761,GO-20189005266,THEFT OVER - BICYCLE,2018-02-17T00:00:00,2018,February,Saturday,17,48,1,2018-02-19T00:00:00,2018,February,Monday,19,50,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GT,FORCE,MT,12,BLK,3000.0,STOLEN,13439,"{'type': 'Point', 'coordinates': (-79.39895584, 43.646052)}"
-13485,23742,GO-20169009597,THEFT UNDER,2016-08-24T00:00:00,2016,August,Wednesday,24,237,8,2016-08-28T00:00:00,2016,August,Sunday,28,241,20,D43,Toronto,136,West Hill (136),Go Station,Transit,SU,,OT,18,BLK,200.0,STOLEN,25166,"{'type': 'Point', 'coordinates': (-79.19634035, 43.75407726)}"
-13486,14773,GO-2018667390,THEFT UNDER - BICYCLE,2018-04-12T00:00:00,2018,April,Thursday,12,102,23,2018-04-15T00:00:00,2018,April,Sunday,15,105,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,ROAD- FIXED SPE,RC,1,BLK,300.0,STOLEN,13440,"{'type': 'Point', 'coordinates': (-79.39820731, 43.64329925)}"
-13487,14781,GO-2018861108,THEFT UNDER - BICYCLE,2018-05-12T00:00:00,2018,May,Saturday,12,132,15,2018-05-13T00:00:00,2018,May,Sunday,13,133,6,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,PINARELLO,SP2105,TA,10,WHI,3928.0,STOLEN,13441,"{'type': 'Point', 'coordinates': (-79.39974525, 43.64372459)}"
-13488,14795,GO-20189017687,THEFT UNDER,2018-06-06T00:00:00,2018,June,Wednesday,6,157,23,2018-06-07T00:00:00,2018,June,Thursday,7,158,9,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,LANGSTER,RC,1,SIL,500.0,STOLEN,13442,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-13489,14800,GO-20189018593,THEFT UNDER - BICYCLE,2018-06-11T00:00:00,2018,June,Monday,11,162,19,2018-06-13T00:00:00,2018,June,Wednesday,13,164,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,NORCO INDIE 3 L,OT,3,BLK,670.0,STOLEN,13443,"{'type': 'Point', 'coordinates': (-79.4023568, 43.64319258)}"
-13490,14815,GO-20189021709,THEFT UNDER,2018-07-09T00:00:00,2018,July,Monday,9,190,15,2018-07-09T00:00:00,2018,July,Monday,9,190,16,D14,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,GI,DEFY 2 (2016),RG,18,BLK,1450.0,STOLEN,13444,"{'type': 'Point', 'coordinates': (-79.39832559, 43.63567355)}"
-13491,14825,GO-20189023881,THEFT UNDER - BICYCLE,2018-07-21T00:00:00,2018,July,Saturday,21,202,23,2018-07-25T00:00:00,2018,July,Wednesday,25,206,16,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,CLASSICO 1,RG,7,RED,700.0,STOLEN,13445,"{'type': 'Point', 'coordinates': (-79.40185545, 43.64191381)}"
-13492,14826,GO-20181356545,THEFT OF EBIKE UNDER $5000,2018-07-20T00:00:00,2018,July,Friday,20,201,20,2018-07-25T00:00:00,2018,July,Wednesday,25,206,6,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,REACTION HYBRID,MT,11,BLK,4300.0,STOLEN,13446,"{'type': 'Point', 'coordinates': (-79.40137395, 43.64770851)}"
-13493,14829,GO-20189024278,THEFT UNDER - BICYCLE,2018-07-28T00:00:00,2018,July,Saturday,28,209,0,2018-07-28T00:00:00,2018,July,Saturday,28,209,23,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CR,CROSSFIRE 2,MT,18,BLK,597.0,STOLEN,13447,"{'type': 'Point', 'coordinates': (-79.40137395, 43.64770851)}"
-13494,14849,GO-20189027533,THEFT UNDER - BICYCLE,2018-08-22T00:00:00,2018,August,Wednesday,22,234,18,2018-08-22T00:00:00,2018,August,Wednesday,22,234,23,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,FJ,FEATHER,RG,1,RED,900.0,STOLEN,13448,"{'type': 'Point', 'coordinates': (-79.39820731, 43.64329925)}"
-13495,14851,GO-20189027723,THEFT UNDER - BICYCLE,2018-07-04T00:00:00,2018,July,Wednesday,4,185,6,2018-08-24T00:00:00,2018,August,Friday,24,236,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,COPENHAGEN,RC,1,WHI,520.0,STOLEN,13449,"{'type': 'Point', 'coordinates': (-79.395007, 43.64546954)}"
-13496,15307,GO-20141263544,B&E,2013-12-26T00:00:00,2013,December,Thursday,26,360,19,2014-01-01T00:00:00,2014,January,Wednesday,1,1,17,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,FELT,F59,RC,21,SILRED,1300.0,STOLEN,13450,"{'type': 'Point', 'coordinates': (-79.39558819, 43.63994429)}"
-13497,15315,GO-20149003202,THEFT UNDER,2014-05-06T00:00:00,2014,May,Tuesday,6,126,22,2014-05-07T00:00:00,2014,May,Wednesday,7,127,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,,OT,1,BLK,100.0,STOLEN,13451,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-13498,15321,GO-20149003902,THEFT UNDER,2014-06-07T00:00:00,2014,June,Saturday,7,158,23,2014-06-08T00:00:00,2014,June,Sunday,8,159,22,D14,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RA,,RC,1,BLK,1200.0,STOLEN,13452,"{'type': 'Point', 'coordinates': (-79.34662225, 43.63906207)}"
-13499,15322,GO-20142283165,THEFT UNDER,2014-06-13T00:00:00,2014,June,Friday,13,164,11,2014-06-13T00:00:00,2014,June,Friday,13,164,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,SPECIALE,OT,1,GRY,1000.0,STOLEN,13453,"{'type': 'Point', 'coordinates': (-79.39958821, 43.64593284)}"
-13500,15323,GO-20149004263,THEFT UNDER,2014-06-12T00:00:00,2014,June,Thursday,12,163,6,2014-06-20T00:00:00,2014,June,Friday,20,171,9,D14,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,CYPRESS 2014,OT,7,OTH,582.0,STOLEN,13454,"{'type': 'Point', 'coordinates': (-79.39296466, 43.64056148000001)}"
-13501,15334,GO-20149004909,THEFT UNDER,2014-07-10T00:00:00,2014,July,Thursday,10,191,23,2014-07-11T00:00:00,2014,July,Friday,11,192,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,7.1FX,OT,10,SIL,600.0,STOLEN,13455,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-13502,15344,GO-20149005547,THEFT UNDER,2014-07-22T00:00:00,2014,July,Tuesday,22,203,20,2014-08-01T00:00:00,2014,August,Friday,1,213,9,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CC,NITRO XT,MT,21,BLK,,STOLEN,13456,"{'type': 'Point', 'coordinates': (-79.39330422, 43.64134268000001)}"
-13503,15346,GO-20149005678,THEFT UNDER,2014-07-23T00:00:00,2014,July,Wednesday,23,204,19,2014-08-06T00:00:00,2014,August,Wednesday,6,218,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,RG,8,GRY,,STOLEN,13457,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-13504,15360,GO-20149006602,THEFT UNDER,2014-09-05T00:00:00,2014,September,Friday,5,248,18,2014-09-05T00:00:00,2014,September,Friday,5,248,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,CITY GLIDE,RG,18,WHI,600.0,STOLEN,13458,"{'type': 'Point', 'coordinates': (-79.40137395, 43.64770851)}"
-13505,15368,GO-20149007520,THEFT UNDER,2014-10-10T00:00:00,2014,October,Friday,10,283,9,2014-10-10T00:00:00,2014,October,Friday,10,283,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,GIANT RAPID,RG,21,BLU,1100.0,STOLEN,13459,"{'type': 'Point', 'coordinates': (-79.40372116, 43.64647061)}"
-13506,15379,GO-20149008136,THEFT UNDER,2014-11-10T00:00:00,2014,November,Monday,10,314,21,2014-11-11T00:00:00,2014,November,Tuesday,11,315,17,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EM,URBAN 2.0,EL,32,RED,1000.0,STOLEN,13460,"{'type': 'Point', 'coordinates': (-79.40137395, 43.64770851)}"
-13507,15387,GO-20159000366,THEFT UNDER,2015-01-19T00:00:00,2015,January,Monday,19,19,20,2015-01-20T00:00:00,2015,January,Tuesday,20,20,1,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EM,AVENGER (BLACK,EL,32,BLK,0.0,STOLEN,13461,"{'type': 'Point', 'coordinates': (-79.40137395, 43.64770851)}"
-13508,15420,GO-20159004338,THEFT UNDER,2015-07-08T00:00:00,2015,July,Wednesday,8,189,19,2015-07-09T00:00:00,2015,July,Thursday,9,190,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,DB,SORRENTO,MT,21,WHI,300.0,STOLEN,13462,"{'type': 'Point', 'coordinates': (-79.39924205, 43.63909783)}"
-13509,15432,GO-20159004991,THEFT UNDER,2015-07-23T00:00:00,2015,July,Thursday,23,204,21,2015-07-25T00:00:00,2015,July,Saturday,25,206,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CC,26'' NITRO X,MT,21,BLK,158.0,STOLEN,13463,"{'type': 'Point', 'coordinates': (-79.39558819, 43.63994429)}"
-13510,15434,GO-20151282733,THEFT UNDER,2015-07-24T00:00:00,2015,July,Friday,24,205,14,2015-07-27T00:00:00,2015,July,Monday,27,208,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MARIN OR MARINO,,OT,0,SIL,600.0,STOLEN,13464,"{'type': 'Point', 'coordinates': (-79.39832559, 43.63567355)}"
-13511,15448,GO-20159006866,THEFT UNDER,2015-09-06T00:00:00,2015,September,Sunday,6,249,17,2015-09-08T00:00:00,2015,September,Tuesday,8,251,7,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,21,BLK,2000.0,STOLEN,13465,"{'type': 'Point', 'coordinates': (-79.3979648, 43.63940267)}"
-13512,15449,GO-20159006927,THEFT UNDER,2015-09-08T00:00:00,2015,September,Tuesday,8,251,12,2015-09-09T00:00:00,2015,September,Wednesday,9,252,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,THULE COASTER,OT,15,TRQ,500.0,STOLEN,13466,"{'type': 'Point', 'coordinates': (-79.3979648, 43.63940267)}"
-13513,15498,GO-2016828364,THEFT UNDER,2016-05-13T00:00:00,2016,May,Friday,13,134,19,2016-05-14T00:00:00,2016,May,Saturday,14,135,8,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,H5,SC,1,DBLWHI,,STOLEN,13467,"{'type': 'Point', 'coordinates': (-79.40059685, 43.64573236)}"
-13514,15502,GO-20169005133,THEFT UNDER,2016-05-30T00:00:00,2016,May,Monday,30,151,21,2016-05-31T00:00:00,2016,May,Tuesday,31,152,1,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GF,WAHOO,MT,24,BLK,700.0,STOLEN,13468,"{'type': 'Point', 'coordinates': (-79.40005716, 43.64445256)}"
-13515,15510,GO-20169005489,THEFT UNDER - BICYCLE,2016-06-06T00:00:00,2016,June,Monday,6,158,9,2016-06-08T00:00:00,2016,June,Wednesday,8,160,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,7.3 FX,RG,9,BLK,750.0,STOLEN,13469,"{'type': 'Point', 'coordinates': (-79.39811145, 43.64623146000001)}"
-13516,15514,GO-20169006316,THEFT UNDER,2016-06-24T00:00:00,2016,June,Friday,24,176,7,2016-06-24T00:00:00,2016,June,Friday,24,176,20,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RM,FLARE,MT,21,GRY,750.0,STOLEN,13470,"{'type': 'Point', 'coordinates': (-79.39184935, 43.63765238)}"
-13517,15518,GO-20169006662,THEFT UNDER,2016-07-01T00:00:00,2016,July,Friday,1,183,12,2016-07-03T00:00:00,2016,July,Sunday,3,185,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CC,NEVADA,RG,21,WHI,500.0,STOLEN,13471,"{'type': 'Point', 'coordinates': (-79.39330422, 43.64134268000001)}"
-13518,15520,GO-20169007169,THEFT UNDER - BICYCLE,2016-06-04T00:00:00,2016,June,Saturday,4,156,3,2016-07-14T00:00:00,2016,July,Thursday,14,196,1,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,1,BLU,600.0,STOLEN,13472,"{'type': 'Point', 'coordinates': (-79.39760717, 43.64495335000001)}"
-13519,15527,GO-20169007840,THEFT UNDER,2016-07-24T00:00:00,2016,July,Sunday,24,206,12,2016-07-27T00:00:00,2016,July,Wednesday,27,209,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,2016 GIANT ESCA,RG,21,BGE,600.0,STOLEN,13473,"{'type': 'Point', 'coordinates': (-79.3922993, 43.63874701)}"
-13520,15531,GO-20169008212,THEFT UNDER - BICYCLE,2016-08-03T00:00:00,2016,August,Wednesday,3,216,23,2016-08-04T00:00:00,2016,August,Thursday,4,217,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,DB,DIAMONDBACK,RG,30,RED,750.0,STOLEN,13474,"{'type': 'Point', 'coordinates': (-79.4010881, 43.64697154)}"
-13521,15537,GO-20169008558,THEFT UNDER - BICYCLE,2016-08-11T00:00:00,2016,August,Thursday,11,224,7,2016-08-11T00:00:00,2016,August,Thursday,11,224,17,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,HYBRID MEN,RG,24,BLU,400.0,STOLEN,13476,"{'type': 'Point', 'coordinates': (-79.40059685, 43.64573236)}"
-13522,15538,GO-20169008615,THEFT UNDER,2016-08-11T00:00:00,2016,August,Thursday,11,224,15,2016-08-12T00:00:00,2016,August,Friday,12,225,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SC,GTX2,OT,21,BLK,400.0,STOLEN,13477,"{'type': 'Point', 'coordinates': (-79.39811145, 43.64623146000001)}"
-13523,15539,GO-20161442320,THEFT UNDER - BICYCLE,2016-08-15T00:00:00,2016,August,Monday,15,228,6,2016-08-15T00:00:00,2016,August,Monday,15,228,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,JAMIS,TRAIL X,MT,21,BLK,450.0,STOLEN,13478,"{'type': 'Point', 'coordinates': (-79.39833497, 43.64030158)}"
-13524,15545,GO-20169009399,THEFT UNDER,2016-08-24T00:00:00,2016,August,Wednesday,24,237,8,2016-08-24T00:00:00,2016,August,Wednesday,24,237,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,2013 VITA HYBRI,RG,24,BLK,600.0,STOLEN,13479,"{'type': 'Point', 'coordinates': (-79.40137395, 43.64770851)}"
-13525,15546,GO-20161529761,THEFT UNDER - BICYCLE,2016-08-28T00:00:00,2016,August,Sunday,28,241,10,2016-08-29T00:00:00,2016,August,Monday,29,242,8,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CCM,LUCERNE,OT,7,PNK,380.0,STOLEN,13480,"{'type': 'Point', 'coordinates': (-79.39880646, 43.64142779)}"
-13526,15553,GO-20169010198,THEFT UNDER - BICYCLE,2016-09-09T00:00:00,2016,September,Friday,9,253,19,2016-09-10T00:00:00,2016,September,Saturday,10,254,16,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,CX,TO,9,DGR,1350.0,STOLEN,13481,"{'type': 'Point', 'coordinates': (-79.39833497, 43.64030158)}"
-13527,15556,GO-20169010817,THEFT UNDER - BICYCLE,2016-09-20T00:00:00,2016,September,Tuesday,20,264,18,2016-09-20T00:00:00,2016,September,Tuesday,20,264,21,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,,RG,1,GRY,0.0,STOLEN,13482,"{'type': 'Point', 'coordinates': (-79.395007, 43.64546954)}"
-13528,15564,GO-20169011714,THEFT UNDER,2016-10-06T00:00:00,2016,October,Thursday,6,280,8,2016-10-08T00:00:00,2016,October,Saturday,8,282,7,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,METRO,EL,25,WHI,1900.0,STOLEN,13483,"{'type': 'Point', 'coordinates': (-79.395007, 43.64546954)}"
-13529,15565,GO-20161839558,THEFT UNDER - BICYCLE,2016-10-15T00:00:00,2016,October,Saturday,15,289,12,2016-10-16T00:00:00,2016,October,Sunday,16,290,8,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,,MT,21,BLK,350.0,STOLEN,13484,"{'type': 'Point', 'coordinates': (-79.40137395, 43.64770851)}"
-13530,15568,GO-20169012181,THEFT UNDER - BICYCLE,2016-10-17T00:00:00,2016,October,Monday,17,291,14,2016-10-17T00:00:00,2016,October,Monday,17,291,14,D14,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,GI,TCR2,RC,10,BLK,2000.0,STOLEN,13485,"{'type': 'Point', 'coordinates': (-79.39832559, 43.63567355)}"
-13531,15573,GO-20161944094,THEFT UNDER,2016-11-01T00:00:00,2016,November,Tuesday,1,306,18,2016-11-01T00:00:00,2016,November,Tuesday,1,306,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,TREK,MT,18,GRY,1000.0,STOLEN,13486,"{'type': 'Point', 'coordinates': (-79.40196209, 43.64761228)}"
-13532,15598,GO-20179004830,THEFT UNDER - BICYCLE,2017-04-14T00:00:00,2017,April,Friday,14,104,15,2017-04-17T00:00:00,2017,April,Monday,17,107,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,,RG,7,CPR,600.0,STOLEN,13487,"{'type': 'Point', 'coordinates': (-79.39960983, 43.63648329)}"
-13533,15599,GO-2017679786,B&E,2017-04-12T00:00:00,2017,April,Wednesday,12,102,12,2017-04-18T00:00:00,2017,April,Tuesday,18,108,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TREK,,OT,21,GRY,1000.0,STOLEN,13488,"{'type': 'Point', 'coordinates': (-79.39558819, 43.63994429)}"
-13534,15602,GO-20179005465,THEFT UNDER,2017-04-28T00:00:00,2017,April,Friday,28,118,23,2017-04-29T00:00:00,2017,April,Saturday,29,119,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,RAD WAGON,EL,21,ONG,2000.0,STOLEN,13489,"{'type': 'Point', 'coordinates': (-79.39668944, 43.63667003)}"
-13535,15609,GO-20179006799,THEFT UNDER - BICYCLE,2017-05-14T00:00:00,2017,May,Sunday,14,134,23,2017-05-23T00:00:00,2017,May,Tuesday,23,143,0,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NO,MOUNTAINEER,MT,9,BLU,550.0,STOLEN,13490,"{'type': 'Point', 'coordinates': (-79.39558819, 43.63994429)}"
-13536,15645,GO-20199021648,THEFT UNDER,2019-07-09T00:00:00,2019,July,Tuesday,9,190,16,2019-07-09T00:00:00,2019,July,Tuesday,9,190,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,12,ONG,1000.0,STOLEN,13491,"{'type': 'Point', 'coordinates': (-79.39553097, 43.64673969)}"
-13537,15646,GO-20199021829,THEFT UNDER,2019-07-09T00:00:00,2019,July,Tuesday,9,190,17,2019-07-11T00:00:00,2019,July,Thursday,11,192,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,7,OTH,500.0,STOLEN,13492,"{'type': 'Point', 'coordinates': (-79.38946509, 43.64593813)}"
-13538,15649,GO-20199023058,THEFT UNDER,2019-07-21T00:00:00,2019,July,Sunday,21,202,4,2019-07-21T00:00:00,2019,July,Sunday,21,202,7,D51,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,SU,,MT,18,BLK,200.0,STOLEN,13493,"{'type': 'Point', 'coordinates': (-79.37572376, 43.64746036)}"
-13539,15659,GO-20199024053,THEFT UNDER,2019-07-25T00:00:00,2019,July,Thursday,25,206,18,2019-07-27T00:00:00,2019,July,Saturday,27,208,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,LANGSTER,RG,1,BRN,1000.0,STOLEN,13494,"{'type': 'Point', 'coordinates': (-79.39389489, 43.64651184)}"
-13540,15663,GO-20191486187,B&E,2019-08-02T00:00:00,2019,August,Friday,2,214,10,2019-08-06T00:00:00,2019,August,Tuesday,6,218,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NORCO,,MT,0,RED,,STOLEN,13495,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-13541,15664,GO-20191489000,THEFT UNDER - BICYCLE,2019-08-07T00:00:00,2019,August,Wednesday,7,219,7,2019-08-07T00:00:00,2019,August,Wednesday,7,219,7,D52,Toronto,77,Waterfront Communities-The Island (77),Go Station,Transit,GT,AGGRESSOR,MT,7,BLK,400.0,STOLEN,13496,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-13542,15670,GO-20199026146,THEFT UNDER,2019-08-07T00:00:00,2019,August,Wednesday,7,219,20,2019-08-14T00:00:00,2019,August,Wednesday,14,226,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,TEAM MACHINE SL,RC,11,,1900.0,STOLEN,13497,"{'type': 'Point', 'coordinates': (-79.37933296, 43.64221959)}"
-13543,15672,GO-20199026318,THEFT UNDER,2019-08-02T00:00:00,2019,August,Friday,2,214,12,2019-08-15T00:00:00,2019,August,Thursday,15,227,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,TARMAC SL4 COMP,RC,30,RED,4900.0,STOLEN,13498,"{'type': 'Point', 'coordinates': (-79.38994752, 43.64370303)}"
-13544,15673,GO-20199026367,THEFT UNDER,2019-08-15T00:00:00,2019,August,Thursday,15,227,8,2019-08-15T00:00:00,2019,August,Thursday,15,227,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,MT,24,,400.0,STOLEN,13499,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-13545,15675,GO-20199026876,THEFT UNDER,2019-07-28T00:00:00,2019,July,Sunday,28,209,15,2019-08-20T00:00:00,2019,August,Tuesday,20,232,8,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ALLEZ ELITE - T,RC,30,BLK,1700.0,STOLEN,13500,"{'type': 'Point', 'coordinates': (-79.37933296, 43.64221959)}"
-13546,15677,GO-20199027371,THEFT UNDER,2019-08-22T00:00:00,2019,August,Thursday,22,234,18,2019-08-23T00:00:00,2019,August,Friday,23,235,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,SOLOIST,RG,1,BLK,500.0,STOLEN,13501,"{'type': 'Point', 'coordinates': (-79.39124176, 43.640111790000006)}"
-13547,15678,GO-20199027415,THEFT UNDER,2019-08-22T00:00:00,2019,August,Thursday,22,234,20,2019-08-23T00:00:00,2019,August,Friday,23,235,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RC,14,WHI,2000.0,STOLEN,13502,"{'type': 'Point', 'coordinates': (-79.39124176, 43.640111790000006)}"
-13548,15691,GO-20199028716,THEFT UNDER,2019-08-27T00:00:00,2019,August,Tuesday,27,239,22,2019-09-04T00:00:00,2019,September,Wednesday,4,247,13,D52,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,OT,PURE FIX,RG,1,TRQ,400.0,STOLEN,13503,"{'type': 'Point', 'coordinates': (-79.38867784, 43.64396864)}"
-13549,15693,GO-20199029103,THEFT UNDER,2019-08-31T00:00:00,2019,August,Saturday,31,243,12,2019-09-07T00:00:00,2019,September,Saturday,7,250,16,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,VITA SPORT,TO,27,GRY,924.0,STOLEN,13504,"{'type': 'Point', 'coordinates': (-79.37302563, 43.64248042)}"
-13550,23342,GO-20209018409,THEFT UNDER,2020-07-23T00:00:00,2020,July,Thursday,23,205,11,2020-07-24T00:00:00,2020,July,Friday,24,206,9,D43,Toronto,138,Eglinton East (138),Go Station,Transit,CC,,MT,7,WHI,75.0,STOLEN,25365,"{'type': 'Point', 'coordinates': (-79.23201368, 43.74025954)}"
-13551,15694,GO-20191722571,B&E,2019-09-06T00:00:00,2019,September,Friday,6,249,0,2019-09-08T00:00:00,2019,September,Sunday,8,251,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CERVELO,,RC,0,RED,1800.0,STOLEN,13505,"{'type': 'Point', 'coordinates': (-79.38091602, 43.64168463)}"
-13552,15706,GO-20199031105,THEFT UNDER,2019-09-22T00:00:00,2019,September,Sunday,22,265,19,2019-09-22T00:00:00,2019,September,Sunday,22,265,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,OPUS ANDANTE 4,RG,27,BLU,1153.0,STOLEN,13506,"{'type': 'Point', 'coordinates': (-79.37933296, 43.64221959)}"
-13553,9798,GO-20151001099,THEFT UNDER,2015-06-14T00:00:00,2015,June,Sunday,14,165,16,2015-06-15T00:00:00,2015,June,Monday,15,166,1,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OPUS,CANTANTE,RG,21,WHI,,STOLEN,13507,"{'type': 'Point', 'coordinates': (-79.37142509, 43.64944981)}"
-13554,17178,GO-20151750155,THEFT UNDER,2015-10-10T00:00:00,2015,October,Saturday,10,283,9,2015-10-10T00:00:00,2015,October,Saturday,10,283,16,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TREK,,RC,10,WHI,1400.0,STOLEN,13508,"{'type': 'Point', 'coordinates': (-79.36616846, 43.64421276)}"
-13555,16469,GO-20209016174,THEFT UNDER,2020-06-25T00:00:00,2020,June,Thursday,25,177,16,2020-06-25T00:00:00,2020,June,Thursday,25,177,19,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,CARIBOU,TO,27,DGR,1500.0,STOLEN,13509,"{'type': 'Point', 'coordinates': (-79.36618235, 43.64664333)}"
-13556,16476,GO-20209017126,THEFT UNDER,2020-07-01T00:00:00,2020,July,Wednesday,1,183,18,2020-07-02T00:00:00,2020,July,Thursday,2,184,17,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,WOMEN SPORT,RG,6,GRY,1000.0,STOLEN,13510,"{'type': 'Point', 'coordinates': (-79.36460313, 43.64922452)}"
-13557,15807,GO-20209020394,THEFT UNDER,2020-08-16T00:00:00,2020,August,Sunday,16,229,19,2020-08-16T00:00:00,2020,August,Sunday,16,229,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,SGX 61 STOCKHOL,OT,24,ONG,1500.0,STOLEN,13511,"{'type': 'Point', 'coordinates': (-79.37581636, 43.64427666)}"
-13558,9823,GO-20151025971,THEFT UNDER,2015-06-18T00:00:00,2015,June,Thursday,18,169,15,2015-06-18T00:00:00,2015,June,Thursday,18,169,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,AMEGO,BOLD,EL,1,WHI,2400.0,STOLEN,13512,"{'type': 'Point', 'coordinates': (-79.4010881, 43.64697154)}"
-13559,16477,GO-20209017315,THEFT UNDER,2020-07-09T00:00:00,2020,July,Thursday,9,191,23,2020-07-11T00:00:00,2020,July,Saturday,11,193,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,CODA ELITE,OT,28,GRY,1100.0,STOLEN,13513,"{'type': 'Point', 'coordinates': (-79.38082868, 43.64145979)}"
-13560,17192,GO-20151915286,B&E,2015-10-06T00:00:00,2015,October,Tuesday,6,279,12,2015-11-07T00:00:00,2015,November,Saturday,7,311,15,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,FELT,F65,RC,12,SILRED,1500.0,STOLEN,13514,"{'type': 'Point', 'coordinates': (-79.37374694, 43.64844177)}"
-13561,15808,GO-20209020394,THEFT UNDER,2020-08-16T00:00:00,2020,August,Sunday,16,229,19,2020-08-16T00:00:00,2020,August,Sunday,16,229,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CA,SYNAPSE,RC,20,BLK,3500.0,STOLEN,13515,"{'type': 'Point', 'coordinates': (-79.37581636, 43.64427666)}"
-13562,16480,GO-20209018009,THEFT UNDER,2020-07-18T00:00:00,2020,July,Saturday,18,200,22,2020-07-20T00:00:00,2020,July,Monday,20,202,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,2016 KHS SMOOTH,RG,7,PLE,500.0,STOLEN,13516,"{'type': 'Point', 'coordinates': (-79.39389489, 43.64651184)}"
-13563,9830,GO-20151020368,THEFT UNDER,2015-06-17T00:00:00,2015,June,Wednesday,17,168,10,2015-06-17T00:00:00,2015,June,Wednesday,17,168,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,A2B,VELOCITY,SC,0,TRQ,1700.0,STOLEN,13517,"{'type': 'Point', 'coordinates': (-79.39124176, 43.640111790000006)}"
-13564,17202,GO-20169001509,THEFT UNDER,2016-02-18T00:00:00,2016,February,Thursday,18,49,9,2016-02-18T00:00:00,2016,February,Thursday,18,49,10,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,MT,18,SIL,250.0,STOLEN,13518,"{'type': 'Point', 'coordinates': (-79.35688617, 43.65029123)}"
-13565,15809,GO-20209020456,THEFT FROM MOTOR VEHICLE UNDER,2020-08-16T00:00:00,2020,August,Sunday,16,229,15,2020-08-17T00:00:00,2020,August,Monday,17,230,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,CARBON,RC,20,ONG,1100.0,STOLEN,13519,"{'type': 'Point', 'coordinates': (-79.39389489, 43.64651184)}"
-13566,15810,GO-20201556222,B&E W'INTENT,2020-08-19T00:00:00,2020,August,Wednesday,19,232,5,2020-08-19T00:00:00,2020,August,Wednesday,19,232,8,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,TURBO LEVO,MT,1,,7739.0,STOLEN,13520,"{'type': 'Point', 'coordinates': (-79.35367026, 43.65363854)}"
-13567,15812,GO-20209020693,THEFT UNDER - BICYCLE,2020-08-17T00:00:00,2020,August,Monday,17,230,19,2020-08-19T00:00:00,2020,August,Wednesday,19,232,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,QUICK SL 1,RG,30,SIL,500.0,STOLEN,13521,"{'type': 'Point', 'coordinates': (-79.39184935, 43.63765238)}"
-13568,15822,GO-20201686007,THEFT UNDER,2020-09-05T00:00:00,2020,September,Saturday,5,249,16,2020-09-06T00:00:00,2020,September,Sunday,6,250,11,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,STORM,MT,21,BLK,750.0,STOLEN,13522,"{'type': 'Point', 'coordinates': (-79.36183585, 43.64956942)}"
-13569,15824,GO-20209023203,THEFT UNDER - BICYCLE,2020-09-14T00:00:00,2020,September,Monday,14,258,19,2020-09-14T00:00:00,2020,September,Monday,14,258,21,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE 3,RG,21,BLK,937.0,STOLEN,13523,"{'type': 'Point', 'coordinates': (-79.37646324, 43.64578351)}"
-13570,15825,GO-20209023232,THEFT UNDER,2020-09-05T00:00:00,2020,September,Saturday,5,249,15,2020-09-14T00:00:00,2020,September,Monday,14,258,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CC,KROSSPORT,OT,21,BLK,500.0,STOLEN,13524,"{'type': 'Point', 'coordinates': (-79.39124574, 43.64342012)}"
-13571,15828,GO-20201763675,THEFT UNDER - BICYCLE,2020-09-09T00:00:00,2020,September,Wednesday,9,253,12,2020-09-17T00:00:00,2020,September,Thursday,17,261,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUPERCYCLE,SC700 SOLARIS,OT,21,BLK,300.0,STOLEN,13525,"{'type': 'Point', 'coordinates': (-79.39124574, 43.64342012)}"
-13572,15845,GO-20209030570,THEFT UNDER - BICYCLE,2020-11-20T00:00:00,2020,November,Friday,20,325,15,2020-11-25T00:00:00,2020,November,Wednesday,25,330,17,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,DUAL SPORT 4,MT,20,GRY,1625.0,STOLEN,13526,"{'type': 'Point', 'coordinates': (-79.36183585, 43.64956942)}"
-13573,16108,GO-20209030452,THEFT UNDER,2020-10-31T00:00:00,2020,October,Saturday,31,305,22,2020-11-24T00:00:00,2020,November,Tuesday,24,329,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,LG URBANIA SC1,RG,21,BLU,599.0,STOLEN,13527,"{'type': 'Point', 'coordinates': (-79.38684132, 43.64925417)}"
-13574,16122,GO-20179003862,THEFT UNDER,2017-03-21T00:00:00,2017,March,Tuesday,21,80,8,2017-03-27T00:00:00,2017,March,Monday,27,86,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,,RC,14,BLU,100.0,STOLEN,13528,"{'type': 'Point', 'coordinates': (-79.38946509, 43.64593813)}"
-13575,16123,GO-20179004558,THEFT UNDER - BICYCLE,2017-04-10T00:00:00,2017,April,Monday,10,100,20,2017-04-11T00:00:00,2017,April,Tuesday,11,101,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,DENALI,RC,21,BLK,275.0,STOLEN,13529,"{'type': 'Point', 'coordinates': (-79.38994752, 43.64370303)}"
-13576,16125,GO-20179005304,THEFT UNDER - BICYCLE,2017-04-25T00:00:00,2017,April,Tuesday,25,115,21,2017-04-26T00:00:00,2017,April,Wednesday,26,116,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ROADSTER CLASSI,RG,1,BLK,429.0,STOLEN,13530,"{'type': 'Point', 'coordinates': (-79.39389489, 43.64651184)}"
-13577,16129,GO-2017903425,THEFT OF EBIKE UNDER $5000,2017-05-22T00:00:00,2017,May,Monday,22,142,9,2017-05-22T00:00:00,2017,May,Monday,22,142,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN,,EL,0,BLK,1000.0,STOLEN,13531,"{'type': 'Point', 'coordinates': (-79.38396859, 43.64239001)}"
-13578,16131,GO-2017911072,B&E,2017-05-23T00:00:00,2017,May,Tuesday,23,143,0,2017-05-25T00:00:00,2017,May,Thursday,25,145,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,DEVINCI,,TO,1,BLKRED,860.0,STOLEN,13532,"{'type': 'Point', 'coordinates': (-79.3932382, 43.64839265)}"
-13579,16133,GO-20179007141,THEFT UNDER - BICYCLE,2017-05-28T00:00:00,2017,May,Sunday,28,148,14,2017-05-28T00:00:00,2017,May,Sunday,28,148,23,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,GRANDE 6.1,MT,21,YEL,500.0,STOLEN,13533,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-13580,16138,GO-20179007751,THEFT UNDER - BICYCLE,2017-06-01T00:00:00,2017,June,Thursday,1,152,21,2017-06-08T00:00:00,2017,June,Thursday,8,159,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,27,SIL,2000.0,STOLEN,13534,"{'type': 'Point', 'coordinates': (-79.39281928, 43.64732006)}"
-13581,16139,GO-20179007770,THEFT UNDER,2017-06-07T00:00:00,2017,June,Wednesday,7,158,0,2017-06-09T00:00:00,2017,June,Friday,9,160,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,OT,7,GRY,830.0,STOLEN,13535,"{'type': 'Point', 'coordinates': (-79.38442526, 43.6402504)}"
-13582,16142,GO-20179008198,THEFT UNDER - BICYCLE,2017-06-15T00:00:00,2017,June,Thursday,15,166,14,2017-06-16T00:00:00,2017,June,Friday,16,167,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,KROSSROADS,OT,21,GRY,200.0,STOLEN,13536,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-13583,16144,GO-20179008359,THEFT UNDER,2016-08-18T00:00:00,2016,August,Thursday,18,231,22,2017-06-18T00:00:00,2017,June,Sunday,18,169,22,D52,Toronto,77,Waterfront Communities-The Island (77),Go Station,Transit,GI,16 ESCAPE3L,RG,18,BLK,700.0,STOLEN,13537,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-13584,16145,GO-20179008542,THEFT UNDER - BICYCLE,2017-06-11T00:00:00,2017,June,Sunday,11,162,11,2017-06-20T00:00:00,2017,June,Tuesday,20,171,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,HF,2017,RG,40,SIL,175.0,STOLEN,13538,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-13585,16146,GO-20179008513,THEFT UNDER - BICYCLE,2017-06-20T00:00:00,2017,June,Tuesday,20,171,11,2017-06-20T00:00:00,2017,June,Tuesday,20,171,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,KH,FLITE,RC,27,RED,1.0,STOLEN,13539,"{'type': 'Point', 'coordinates': (-79.39204821, 43.64885072)}"
-13586,16147,GO-20179008555,THEFT UNDER - BICYCLE,2017-06-17T00:00:00,2017,June,Saturday,17,168,18,2017-06-20T00:00:00,2017,June,Tuesday,20,171,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,TO,21,GRY,400.0,STOLEN,13540,"{'type': 'Point', 'coordinates': (-79.39281928, 43.64732006)}"
-13587,7856,GO-20141954419,THEFT UNDER,2014-04-22T00:00:00,2014,April,Tuesday,22,112,18,2014-04-25T00:00:00,2014,April,Friday,25,115,7,D52,Toronto,79,University (79),Universities / Colleges,Educational,CCM,UNKNOWN,RG,1,RED,100.0,STOLEN,15932,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-13588,16148,GO-20179008474,THEFT UNDER - BICYCLE,2017-06-19T00:00:00,2017,June,Monday,19,170,19,2017-06-20T00:00:00,2017,June,Tuesday,20,171,10,D52,Toronto,77,Waterfront Communities-The Island (77),Unknown,Other,OT,SIRRUS DISC,MT,27,BLK,1000.0,STOLEN,13541,"{'type': 'Point', 'coordinates': (-79.38091602, 43.64168463)}"
-13589,16158,GO-20179010219,THEFT UNDER,2017-07-14T00:00:00,2017,July,Friday,14,195,11,2017-07-14T00:00:00,2017,July,Friday,14,195,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,RA,REVENIO 1.0,RC,21,GRY,750.0,STOLEN,13542,"{'type': 'Point', 'coordinates': (-79.38552201, 43.64605338)}"
-13590,16166,GO-20179011552,THEFT UNDER,2017-08-01T00:00:00,2017,August,Tuesday,1,213,9,2017-08-02T00:00:00,2017,August,Wednesday,2,214,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,ROAM,RG,21,ONG,900.0,STOLEN,13543,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-13591,16178,GO-20179014429,THEFT UNDER - BICYCLE,2017-09-10T00:00:00,2017,September,Sunday,10,253,16,2017-09-10T00:00:00,2017,September,Sunday,10,253,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,SIRRUS ELITE,OT,21,SIL,1700.0,STOLEN,13544,"{'type': 'Point', 'coordinates': (-79.38632963, 43.64800878)}"
-13592,16181,GO-20179014977,THEFT UNDER - BICYCLE,2017-09-11T00:00:00,2017,September,Monday,11,254,15,2017-09-17T00:00:00,2017,September,Sunday,17,260,1,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,MO,,MT,21,DGR,0.0,STOLEN,13545,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-13593,16183,GO-20179015226,THEFT UNDER - BICYCLE,2017-09-16T00:00:00,2017,September,Saturday,16,259,3,2017-09-20T00:00:00,2017,September,Wednesday,20,263,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,BACK ALLEY,RG,1,BLK,420.0,STOLEN,13546,"{'type': 'Point', 'coordinates': (-79.39153656, 43.64758619)}"
-13594,16184,GO-20179015291,THEFT UNDER - BICYCLE,2017-09-19T00:00:00,2017,September,Tuesday,19,262,20,2017-09-20T00:00:00,2017,September,Wednesday,20,263,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,5200,RC,14,BLU,3000.0,STOLEN,13547,"{'type': 'Point', 'coordinates': (-79.38143561, 43.64291214)}"
-13595,16185,GO-20179015492,THEFT UNDER,2017-09-22T00:00:00,2017,September,Friday,22,265,9,2017-09-22T00:00:00,2017,September,Friday,22,265,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RC,27,GRY,2000.0,STOLEN,13548,"{'type': 'Point', 'coordinates': (-79.38498159, 43.64477493)}"
-13596,16186,GO-20179015571,THEFT UNDER - BICYCLE,2017-09-22T00:00:00,2017,September,Friday,22,265,14,2017-09-23T00:00:00,2017,September,Saturday,23,266,16,D52,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,TR,VIPER,OT,27,RED,950.0,STOLEN,13549,"{'type': 'Point', 'coordinates': (-79.38542345, 43.63902804)}"
-13597,16187,GO-20179015619,THEFT UNDER - BICYCLE,2017-09-20T00:00:00,2017,September,Wednesday,20,263,8,2017-09-24T00:00:00,2017,September,Sunday,24,267,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RG,1,BLK,290.0,STOLEN,13550,"{'type': 'Point', 'coordinates': (-79.38338679, 43.64508285)}"
-13598,16189,GO-20179015895,THEFT UNDER - BICYCLE,2017-09-26T00:00:00,2017,September,Tuesday,26,269,18,2017-09-27T00:00:00,2017,September,Wednesday,27,270,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,BOULDER SE,MT,21,RED,200.0,STOLEN,13551,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-13599,16192,GO-20171804573,THEFT UNDER - BICYCLE,2017-10-05T00:00:00,2017,October,Thursday,5,278,3,2017-10-05T00:00:00,2017,October,Thursday,5,278,8,D52,Toronto,77,Waterfront Communities-The Island (77),"Group Homes (Non-Profit, Halfway House, Social Agency)",Other,OTHER,,OT,0,YEL,,STOLEN,13552,"{'type': 'Point', 'coordinates': (-79.3932382, 43.64839265)}"
-13600,16203,GO-20179017945,THEFT UNDER,2017-10-20T00:00:00,2017,October,Friday,20,293,21,2017-10-23T00:00:00,2017,October,Monday,23,296,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,MIDTOWN,OT,27,BLK,500.0,STOLEN,13553,"{'type': 'Point', 'coordinates': (-79.39186446, 43.64164294)}"
-13601,16204,GO-20179018456,THEFT UNDER - BICYCLE,2017-10-26T00:00:00,2017,October,Thursday,26,299,9,2017-10-29T00:00:00,2017,October,Sunday,29,302,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,2013 TREK 1.2,RC,18,BLK,1000.0,STOLEN,13554,"{'type': 'Point', 'coordinates': (-79.39186446, 43.64164294)}"
-13602,16207,GO-20179018526,THEFT UNDER,2017-10-02T00:00:00,2017,October,Monday,2,275,13,2017-10-30T00:00:00,2017,October,Monday,30,303,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SC,GTX2,RG,21,RED,0.0,STOLEN,13555,"{'type': 'Point', 'coordinates': (-79.39186446, 43.64164294)}"
-13603,16212,GO-20179020677,THEFT UNDER - BICYCLE,2017-11-24T00:00:00,2017,November,Friday,24,328,16,2017-11-27T00:00:00,2017,November,Monday,27,331,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,GI,,OT,21,LGR,0.0,STOLEN,13556,"{'type': 'Point', 'coordinates': (-79.38946509, 43.64593813)}"
-13604,16214,GO-20179020999,THEFT UNDER,2017-11-29T00:00:00,2017,November,Wednesday,29,333,16,2017-12-01T00:00:00,2017,December,Friday,1,335,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,FEATHER,RC,1,BLK,1300.0,STOLEN,13557,"{'type': 'Point', 'coordinates': (-79.38082868, 43.64145979)}"
-13605,16217,GO-20189001736,THEFT UNDER - BICYCLE,2018-01-18T00:00:00,2018,January,Thursday,18,18,10,2018-01-19T00:00:00,2018,January,Friday,19,19,0,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KH,URBAN XPRESS,RG,21,BLK,700.0,STOLEN,13558,"{'type': 'Point', 'coordinates': (-79.38920538, 43.64527505)}"
-13606,16225,GO-20189011191,THEFT UNDER,2018-04-08T00:00:00,2018,April,Sunday,8,98,12,2018-04-10T00:00:00,2018,April,Tuesday,10,100,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,"KATO 2 27.5""""",MT,11,BLK,1600.0,STOLEN,13559,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-13607,16227,GO-20189012800,THEFT UNDER,2018-04-25T00:00:00,2018,April,Wednesday,25,115,12,2018-04-25T00:00:00,2018,April,Wednesday,25,115,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,7.1,RG,7,GRY,700.0,STOLEN,13560,"{'type': 'Point', 'coordinates': (-79.3932382, 43.64839265)}"
-13608,16228,GO-20189012911,THEFT UNDER - BICYCLE,2018-04-26T00:00:00,2018,April,Thursday,26,116,8,2018-04-26T00:00:00,2018,April,Thursday,26,116,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,INDIE 2,TO,10,BLK,1200.0,STOLEN,13561,"{'type': 'Point', 'coordinates': (-79.39388892, 43.64273773)}"
-13609,16230,GO-20189013497,THEFT UNDER - BICYCLE,2018-05-01T00:00:00,2018,May,Tuesday,1,121,13,2018-05-01T00:00:00,2018,May,Tuesday,1,121,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,VERVE 1,RG,21,BLK,200.0,STOLEN,13562,"{'type': 'Point', 'coordinates': (-79.38973372, 43.6466028)}"
-13610,16232,GO-20189013619,THEFT UNDER - BICYCLE,2018-05-02T00:00:00,2018,May,Wednesday,2,122,13,2018-05-02T00:00:00,2018,May,Wednesday,2,122,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RA,,RG,10,SIL,1500.0,STOLEN,13563,"{'type': 'Point', 'coordinates': (-79.38867784, 43.64396864)}"
-13611,16237,GO-20189016966,THEFT UNDER - BICYCLE,2018-05-31T00:00:00,2018,May,Thursday,31,151,15,2018-05-31T00:00:00,2018,May,Thursday,31,151,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,PANAMAO X6,TO,24,,2000.0,STOLEN,13564,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-13612,16240,GO-20189017949,THEFT UNDER - BICYCLE,2018-06-06T00:00:00,2018,June,Wednesday,6,157,21,2018-06-08T00:00:00,2018,June,Friday,8,159,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,,BM,1,PLE,1000.0,STOLEN,13565,"{'type': 'Point', 'coordinates': (-79.39075649, 43.64913078)}"
-13613,16243,GO-20181123997,THEFT UNDER - BICYCLE,2018-06-20T00:00:00,2018,June,Wednesday,20,171,8,2018-06-20T00:00:00,2018,June,Wednesday,20,171,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,DEVINCI,SILVERSTORE2,RG,18,GRYSIL,1300.0,STOLEN,13566,"{'type': 'Point', 'coordinates': (-79.38552201, 43.64605338)}"
-13614,16244,GO-20189019643,THEFT UNDER - BICYCLE,2018-06-21T00:00:00,2018,June,Thursday,21,172,21,2018-06-21T00:00:00,2018,June,Thursday,21,172,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,YORKVILLE,RG,18,BLU,712.0,STOLEN,13567,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-13615,16246,GO-20189020189,THEFT UNDER - SHOPLIFTING,2018-06-25T00:00:00,2018,June,Monday,25,176,9,2018-06-25T00:00:00,2018,June,Monday,25,176,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,GT,TRANSEO COMP,RG,21,BLK,650.0,STOLEN,13568,"{'type': 'Point', 'coordinates': (-79.38552201, 43.64605338)}"
-13616,16248,GO-20189020913,THEFT UNDER - BICYCLE,2018-06-28T00:00:00,2018,June,Thursday,28,179,8,2018-07-02T00:00:00,2018,July,Monday,2,183,8,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,KROSSPORT,MT,21,BLU,464.0,STOLEN,13569,"{'type': 'Point', 'coordinates': (-79.38684132, 43.64925417)}"
-13617,16258,GO-20189022600,THEFT UNDER - BICYCLE,2018-07-16T00:00:00,2018,July,Monday,16,197,9,2018-07-16T00:00:00,2018,July,Monday,16,197,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,24 SPEED,MT,24,LGR,600.0,STOLEN,13570,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-13618,16263,GO-20189023765,THEFT UNDER - BICYCLE,2018-07-23T00:00:00,2018,July,Monday,23,204,0,2018-07-24T00:00:00,2018,July,Tuesday,24,205,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,200 18-SPEED BI,OT,18,BLK,200.0,STOLEN,13571,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-13619,16269,GO-20189024526,THEFT UNDER - BICYCLE,2018-07-29T00:00:00,2018,July,Sunday,29,210,16,2018-07-30T00:00:00,2018,July,Monday,30,211,21,D52,Toronto,77,Waterfront Communities-The Island (77),Go Station,Transit,KO,ROVE 2017,TO,16,BLK,2000.0,STOLEN,13572,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-13620,16274,GO-20189024969,THEFT UNDER - BICYCLE,2018-03-31T00:00:00,2018,March,Saturday,31,90,9,2018-08-03T00:00:00,2018,August,Friday,3,215,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,TRITON,RC,20,RED,3000.0,STOLEN,13573,"{'type': 'Point', 'coordinates': (-79.39124574, 43.64342012)}"
-13621,16277,GO-20189026870,THEFT UNDER - BICYCLE,2018-08-17T00:00:00,2018,August,Friday,17,229,20,2018-08-18T00:00:00,2018,August,Saturday,18,230,7,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,EMBRYO A+,BM,20,BLK,839.0,STOLEN,13574,"{'type': 'Point', 'coordinates': (-79.38143561, 43.64291214)}"
-13622,16281,GO-20189027981,THEFT UNDER - BICYCLE,2018-08-25T00:00:00,2018,August,Saturday,25,237,23,2018-08-26T00:00:00,2018,August,Sunday,26,238,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MA,LARKSPUR CS3,RG,24,BLK,500.0,STOLEN,13575,"{'type': 'Point', 'coordinates': (-79.39202118, 43.64537211)}"
-13623,16282,GO-20189028059,THEFT UNDER - BICYCLE,2018-08-26T00:00:00,2018,August,Sunday,26,238,21,2018-08-27T00:00:00,2018,August,Monday,27,239,2,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,SPINFIT 700,RG,21,RED,230.0,STOLEN,13576,"{'type': 'Point', 'coordinates': (-79.388883, 43.64041361)}"
-13624,16285,GO-20189029097,THEFT UNDER - BICYCLE,2018-09-04T00:00:00,2018,September,Tuesday,4,247,9,2018-09-04T00:00:00,2018,September,Tuesday,4,247,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,ESCAPE 2 CITY,OT,24,DGR,800.0,STOLEN,13577,"{'type': 'Point', 'coordinates': (-79.38477277, 43.64427915)}"
-13625,16292,GO-20189031294,THEFT UNDER - BICYCLE,2018-09-11T00:00:00,2018,September,Tuesday,11,254,17,2018-09-20T00:00:00,2018,September,Thursday,20,263,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GT,,MT,7,BLK,500.0,STOLEN,13578,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-13626,16295,GO-20189031881,THEFT UNDER - BICYCLE,2018-09-17T00:00:00,2018,September,Monday,17,260,13,2018-09-25T00:00:00,2018,September,Tuesday,25,268,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,HYBRID 2,RG,18,WHI,900.0,STOLEN,13579,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-13627,16298,GO-20189033727,THEFT UNDER - BICYCLE,2018-10-11T00:00:00,2018,October,Thursday,11,284,7,2018-10-11T00:00:00,2018,October,Thursday,11,284,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,6,,1000.0,STOLEN,13580,"{'type': 'Point', 'coordinates': (-79.39025369, 43.64785592)}"
-13628,16299,GO-20181887901,PROPERTY - FOUND,2018-10-12T00:00:00,2018,October,Friday,12,285,18,2018-10-12T00:00:00,2018,October,Friday,12,285,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,FELT,VERZA SPEED 50,OT,21,SIL,,UNKNOWN,13581,"{'type': 'Point', 'coordinates': (-79.39296466, 43.64056148000001)}"
-13629,16303,GO-20189035475,THEFT UNDER - BICYCLE,2018-10-24T00:00:00,2018,October,Wednesday,24,297,9,2018-10-24T00:00:00,2018,October,Wednesday,24,297,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,ESCAPE,OT,21,BLU,500.0,STOLEN,13582,"{'type': 'Point', 'coordinates': (-79.38920538, 43.64527505)}"
-13630,16307,GO-20189039962,THEFT UNDER,2018-11-08T00:00:00,2018,November,Thursday,8,312,5,2018-11-27T00:00:00,2018,November,Tuesday,27,331,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,"STELVIO, FRAME",RC,21,WHI,600.0,STOLEN,13583,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-13631,16309,GO-201915416,B&E,2018-12-19T00:00:00,2018,December,Wednesday,19,353,9,2019-01-03T00:00:00,2019,January,Thursday,3,3,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CONA,SHRED,MT,10,BLKWHI,200.0,STOLEN,13584,"{'type': 'Point', 'coordinates': (-79.39025369, 43.64785592)}"
-13632,16310,GO-20199001452,THEFT UNDER - BICYCLE,2019-01-09T00:00:00,2019,January,Wednesday,9,9,4,2019-01-12T00:00:00,2019,January,Saturday,12,12,1,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,ROSCOE 6,MT,10,BLK,1200.0,STOLEN,13585,"{'type': 'Point', 'coordinates': (-79.39075649, 43.64913078)}"
-13633,16315,GO-20199012950,THEFT UNDER,2019-04-23T00:00:00,2019,April,Tuesday,23,113,19,2019-04-24T00:00:00,2019,April,Wednesday,24,114,20,D52,Toronto,77,Waterfront Communities-The Island (77),Convenience Stores,Commercial,OT,SPEEDSTER CONTE,RC,16,PLE,1922.0,STOLEN,13586,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-13634,16321,GO-20199017221,THEFT UNDER,2019-05-03T00:00:00,2019,May,Friday,3,123,10,2019-06-03T00:00:00,2019,June,Monday,3,154,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CA,,MT,18,BLK,1100.0,STOLEN,13587,"{'type': 'Point', 'coordinates': (-79.38275181, 43.64263544000001)}"
-13635,16328,GO-20191270592,THEFT UNDER - BICYCLE,2019-07-05T00:00:00,2019,July,Friday,5,186,14,2019-07-08T00:00:00,2019,July,Monday,8,189,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CANYON,ENDURACE AL 8.0,RC,21,BLK,2400.0,STOLEN,13588,"{'type': 'Point', 'coordinates': (-79.37933296, 43.64221959)}"
-13636,16335,GO-20199022345,THEFT UNDER,2019-07-15T00:00:00,2019,July,Monday,15,196,14,2019-07-15T00:00:00,2019,July,Monday,15,196,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NO,C3 VALENCE,TO,21,BLK,1700.0,STOLEN,13589,"{'type': 'Point', 'coordinates': (-79.38994752, 43.64370303)}"
-13637,331,GO-2017798245,THEFT UNDER - BICYCLE,2017-05-06T00:00:00,2017,May,Saturday,6,126,14,2017-05-06T00:00:00,2017,May,Saturday,6,126,14,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,,RC,18,BLK,,STOLEN,15168,"{'type': 'Point', 'coordinates': (-79.40266823, 43.66690503)}"
-13638,16340,GO-20191345013,THEFT UNDER - BICYCLE,2019-07-10T00:00:00,2019,July,Wednesday,10,191,8,2019-07-18T00:00:00,2019,July,Thursday,18,199,7,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GIANT,DEFY 1,RG,10,BLUWHI,1000.0,STOLEN,13590,"{'type': 'Point', 'coordinates': (-79.38275181, 43.64263544000001)}"
-13639,16341,GO-20191345013,THEFT UNDER - BICYCLE,2019-07-10T00:00:00,2019,July,Wednesday,10,191,8,2019-07-18T00:00:00,2019,July,Thursday,18,199,7,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TREK,DOMANE 5.2,RG,10,GRYGRN,3200.0,STOLEN,13591,"{'type': 'Point', 'coordinates': (-79.38275181, 43.64263544000001)}"
-13640,16342,GO-20199023173,THEFT UNDER,2019-06-29T00:00:00,2019,June,Saturday,29,180,11,2019-07-22T00:00:00,2019,July,Monday,22,203,0,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,KATO FS 5 2017,MT,12,BLK,2500.0,STOLEN,13592,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-13641,16346,GO-20199024133,THEFT UNDER - BICYCLE,2019-07-28T00:00:00,2019,July,Sunday,28,209,12,2019-07-28T00:00:00,2019,July,Sunday,28,209,16,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NO,,MT,18,BLU,3000.0,STOLEN,13593,"{'type': 'Point', 'coordinates': (-79.36429867, 43.645574610000004)}"
-13642,16349,GO-20199024572,THEFT UNDER,2019-07-27T00:00:00,2019,July,Saturday,27,208,11,2019-07-31T00:00:00,2019,July,Wednesday,31,212,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,HYBRID,RG,21,BLU,1800.0,STOLEN,13594,"{'type': 'Point', 'coordinates': (-79.38363997, 43.64159187)}"
-13643,16350,GO-20199024561,THEFT UNDER,2019-06-30T00:00:00,2019,June,Sunday,30,181,20,2019-07-31T00:00:00,2019,July,Wednesday,31,212,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,RM,METRO,OT,21,GRN,200.0,STOLEN,13595,"{'type': 'Point', 'coordinates': (-79.38363997, 43.64159187)}"
-13644,16352,GO-20199025296,THEFT UNDER,2019-08-07T00:00:00,2019,August,Wednesday,7,219,15,2019-08-07T00:00:00,2019,August,Wednesday,7,219,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,RA,,OT,21,BLK,500.0,STOLEN,13596,"{'type': 'Point', 'coordinates': (-79.37933296, 43.64221959)}"
-13645,16353,GO-20199025739,B&E,2019-08-10T00:00:00,2019,August,Saturday,10,222,13,2019-08-11T00:00:00,2019,August,Sunday,11,223,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM 2 DISC LAR,RG,30,GRY,900.0,STOLEN,13597,"{'type': 'Point', 'coordinates': (-79.39153656, 43.64758619)}"
-13646,12154,GO-20169009132,THEFT UNDER,2016-08-21T00:00:00,2016,August,Sunday,21,234,13,2016-08-21T00:00:00,2016,August,Sunday,21,234,14,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,PELOTON,RC,8,OTH,800.0,STOLEN,13598,"{'type': 'Point', 'coordinates': (-79.37016364, 43.6456614)}"
-13647,9834,GO-20159003747,THEFT UNDER,2015-06-18T00:00:00,2015,June,Thursday,18,169,15,2015-06-19T00:00:00,2015,June,Friday,19,170,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,,MT,1,RED,75.0,STOLEN,13599,"{'type': 'Point', 'coordinates': (-79.34662225, 43.63906207)}"
-13648,16483,GO-20209018538,THEFT UNDER,2020-07-25T00:00:00,2020,July,Saturday,25,207,16,2020-07-25T00:00:00,2020,July,Saturday,25,207,17,D51,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,PATHWAY ROADMAS,RG,21,SIL,450.0,STOLEN,13600,"{'type': 'Point', 'coordinates': (-79.36607348, 43.64932911)}"
-13649,9844,GO-20159003811,THEFT UNDER,2015-06-19T00:00:00,2015,June,Friday,19,170,17,2015-06-21T00:00:00,2015,June,Sunday,21,172,23,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,ZASKAR,MT,21,RED,700.0,STOLEN,13601,"{'type': 'Point', 'coordinates': (-79.3621013, 43.65019711)}"
-13650,9863,GO-20159003891,THEFT UNDER,2015-06-23T00:00:00,2015,June,Tuesday,23,174,17,2015-06-23T00:00:00,2015,June,Tuesday,23,174,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,GMC,RG,21,BLK,2000.0,STOLEN,13602,"{'type': 'Point', 'coordinates': (-79.39145541, 43.64074488)}"
-13651,17205,GO-20169001655,THEFT UNDER,2016-02-08T00:00:00,2016,February,Monday,8,39,18,2016-02-22T00:00:00,2016,February,Monday,22,53,18,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,2009 TREK XO 1,OT,10,GRY,2500.0,STOLEN,13603,"{'type': 'Point', 'coordinates': (-79.36607348, 43.64932911)}"
-13652,16490,GO-20209019352,THEFT UNDER,2020-08-04T00:00:00,2020,August,Tuesday,4,217,13,2020-08-04T00:00:00,2020,August,Tuesday,4,217,15,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,S7,MT,21,OTH,499.0,STOLEN,13604,"{'type': 'Point', 'coordinates': (-79.35713011, 43.65083215)}"
-13653,337,GO-2017807963,THEFT UNDER - BICYCLE,2017-04-24T00:00:00,2017,April,Monday,24,114,13,2017-05-08T00:00:00,2017,May,Monday,8,128,9,D52,Toronto,79,University (79),Unknown,Other,MARIN OR MARINO,,OT,0,,,STOLEN,15169,"{'type': 'Point', 'coordinates': (-79.39343719, 43.66303628)}"
-13654,9865,GO-20159003900,THEFT UNDER,2015-06-21T00:00:00,2015,June,Sunday,21,172,9,2015-06-24T00:00:00,2015,June,Wednesday,24,175,8,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RA,RALEIGH,RG,5,BLU,50.0,STOLEN,13605,"{'type': 'Point', 'coordinates': (-79.38867784, 43.64396864)}"
-13655,12173,GO-20169009236,THEFT UNDER,2016-08-21T00:00:00,2016,August,Sunday,21,234,20,2016-08-22T00:00:00,2016,August,Monday,22,235,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CYCLEMANIA DANF,MT,21,BLK,580.0,STOLEN,13606,"{'type': 'Point', 'coordinates': (-79.38143561, 43.64291214)}"
-13656,17216,GO-20169004306,THEFT UNDER,2016-05-01T00:00:00,2016,May,Sunday,1,122,11,2016-05-09T00:00:00,2016,May,Monday,9,130,11,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NO,VFR 2,RG,6,SIL,900.0,STOLEN,13607,"{'type': 'Point', 'coordinates': (-79.35840973, 43.65001391)}"
-13657,16491,GO-20209019470,THEFT UNDER,2020-08-05T00:00:00,2020,August,Wednesday,5,218,12,2020-08-05T00:00:00,2020,August,Wednesday,5,218,17,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,10,BLK,1200.0,STOLEN,13608,"{'type': 'Point', 'coordinates': (-79.37646324, 43.64578351)}"
-13658,9880,GO-20149006503,THEFT UNDER,2014-09-02T00:00:00,2014,September,Tuesday,2,245,15,2014-09-02T00:00:00,2014,September,Tuesday,2,245,20,D52,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,NORCO,VFRR3,RG,27,,,RECOVERED,13609,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-13659,12178,GO-20169009285,THEFT UNDER,2016-08-22T00:00:00,2016,August,Monday,22,235,18,2016-08-23T00:00:00,2016,August,Tuesday,23,236,0,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,AXIA,MT,21,WHI,200.0,STOLEN,13610,"{'type': 'Point', 'coordinates': (-79.39389489, 43.64651184)}"
-13660,17219,GO-2016810031,THEFT UNDER,2016-05-11T00:00:00,2016,May,Wednesday,11,132,14,2016-05-11T00:00:00,2016,May,Wednesday,11,132,14,D51,Toronto,77,Waterfront Communities-The Island (77),Schools During Supervised Activity,Educational,CCM,29ER,RG,29,,700.0,STOLEN,13611,"{'type': 'Point', 'coordinates': (-79.37089231, 43.64822515)}"
-13661,10786,GO-20159009888,THEFT UNDER,2015-11-18T00:00:00,2015,November,Wednesday,18,322,19,2015-11-18T00:00:00,2015,November,Wednesday,18,322,23,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,,TO,21,RED,1300.0,STOLEN,13765,"{'type': 'Point', 'coordinates': (-79.395007, 43.64546954)}"
-13662,16493,GO-20209019702,THEFT UNDER,2020-08-08T00:00:00,2020,August,Saturday,8,221,15,2020-08-08T00:00:00,2020,August,Saturday,8,221,16,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SU,SURGE,MT,21,GRY,180.0,STOLEN,13612,"{'type': 'Point', 'coordinates': (-79.36896015, 43.64393833)}"
-13663,16495,GO-20209019752,THEFT UNDER,2020-08-08T00:00:00,2020,August,Saturday,8,221,21,2020-08-09T00:00:00,2020,August,Sunday,9,222,14,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,SIL,250.0,STOLEN,13613,"{'type': 'Point', 'coordinates': (-79.35840973, 43.65001391)}"
-13664,16496,GO-20209019752,THEFT UNDER,2020-08-08T00:00:00,2020,August,Saturday,8,221,21,2020-08-09T00:00:00,2020,August,Sunday,9,222,14,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SU,,RG,1,LBL,200.0,STOLEN,13614,"{'type': 'Point', 'coordinates': (-79.35840973, 43.65001391)}"
-13665,16502,GO-20209020459,THEFT UNDER,2020-08-15T00:00:00,2020,August,Saturday,15,228,17,2020-08-17T00:00:00,2020,August,Monday,17,230,16,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,SU,,RC,14,DBL,300.0,STOLEN,13615,"{'type': 'Point', 'coordinates': (-79.36460313, 43.64922452)}"
-13666,16503,GO-20209020893,THEFT UNDER,2020-08-20T00:00:00,2020,August,Thursday,20,233,13,2020-08-21T00:00:00,2020,August,Friday,21,234,14,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,AVAIL,RC,18,BLK,1000.0,STOLEN,13616,"{'type': 'Point', 'coordinates': (-79.35840973, 43.65001391)}"
-13667,16511,GO-20209022408,THEFT UNDER,2020-09-03T00:00:00,2020,September,Thursday,3,247,17,2020-09-05T00:00:00,2020,September,Saturday,5,249,15,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,CA,,MT,27,GRY,1000.0,STOLEN,13617,"{'type': 'Point', 'coordinates': (-79.36460313, 43.64922452)}"
-13668,16514,GO-20209022487,THEFT UNDER,2020-09-01T00:00:00,2020,September,Tuesday,1,245,17,2020-09-06T00:00:00,2020,September,Sunday,6,250,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,LEO 105,RC,11,YEL,2000.0,STOLEN,13618,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-13669,16515,GO-20209022730,THEFT UNDER,2020-09-07T00:00:00,2020,September,Monday,7,251,22,2020-09-09T00:00:00,2020,September,Wednesday,9,253,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Group Homes (Non-Profit, Halfway House, Social Agency)",Other,FJ,BALLAD,RG,40,OTH,960.0,STOLEN,13619,"{'type': 'Point', 'coordinates': (-79.39458503, 43.64442176)}"
-13670,16521,GO-20149006043,THEFT UNDER,2014-08-17T00:00:00,2014,August,Sunday,17,229,0,2014-08-18T00:00:00,2014,August,Monday,18,230,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,FJ,,RG,1,BLK,540.0,STOLEN,13620,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-13671,16523,GO-20142756558,THEFT UNDER,2014-08-15T00:00:00,2014,August,Friday,15,227,19,2014-08-22T00:00:00,2014,August,Friday,22,234,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GIANT,ALIGHT 3,MT,7,WHI,589.0,STOLEN,13621,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-13672,16524,GO-20149006364,THEFT UNDER,2014-08-26T00:00:00,2014,August,Tuesday,26,238,20,2014-08-27T00:00:00,2014,August,Wednesday,27,239,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NO,,MT,21,BLK,200.0,STOLEN,13622,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-13673,16525,GO-20149006463,THEFT UNDER,2014-08-29T00:00:00,2014,August,Friday,29,241,21,2014-09-02T00:00:00,2014,September,Tuesday,2,245,0,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,,RG,18,BLU,350.0,STOLEN,13623,"{'type': 'Point', 'coordinates': (-79.38971556, 43.65019548)}"
-13674,16527,GO-20142845536,ROBBERY - MUGGING,2014-09-05T00:00:00,2014,September,Friday,5,248,1,2014-09-05T00:00:00,2014,September,Friday,5,248,1,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,OTHER,,MT,18,RED,100.0,STOLEN,13624,"{'type': 'Point', 'coordinates': (-79.39948839, 43.63339968)}"
-13675,16532,GO-20142924340,THEFT UNDER,2014-09-16T00:00:00,2014,September,Tuesday,16,259,21,2014-09-16T00:00:00,2014,September,Tuesday,16,259,23,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,MT,21,,500.0,STOLEN,13625,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-13676,16535,GO-20149007293,THEFT UNDER,2014-09-27T00:00:00,2014,September,Saturday,27,270,15,2014-09-29T00:00:00,2014,September,Monday,29,272,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,5,BLU,,STOLEN,13626,"{'type': 'Point', 'coordinates': (-79.38363997, 43.64159187)}"
-13677,16541,GO-20149007627,THEFT UNDER,2014-10-16T00:00:00,2014,October,Thursday,16,289,14,2014-10-16T00:00:00,2014,October,Thursday,16,289,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,ROAM,OT,9,BLK,800.0,STOLEN,13627,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-13678,16542,GO-20149007633,THEFT UNDER,2014-10-11T00:00:00,2014,October,Saturday,11,284,17,2014-10-15T00:00:00,2014,October,Wednesday,15,288,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,,MT,21,BLK,1100.0,STOLEN,13628,"{'type': 'Point', 'coordinates': (-79.38888568, 43.64881159)}"
-13679,16548,GO-20143242346,THEFT UNDER,2014-11-04T00:00:00,2014,November,Tuesday,4,308,21,2014-11-05T00:00:00,2014,November,Wednesday,5,309,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNK,UNK,MT,21,,200.0,STOLEN,13629,"{'type': 'Point', 'coordinates': (-79.38994752, 43.64370303)}"
-13680,16549,GO-20149008060,THEFT UNDER,2014-11-05T00:00:00,2014,November,Wednesday,5,309,17,2014-11-07T00:00:00,2014,November,Friday,7,311,0,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CC,MARAUDER,MT,15,RED,0.0,STOLEN,13630,"{'type': 'Point', 'coordinates': (-79.38867784, 43.64396864)}"
-13681,16551,GO-20149008445,THEFT UNDER,2014-11-27T00:00:00,2014,November,Thursday,27,331,16,2014-11-27T00:00:00,2014,November,Thursday,27,331,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,21,BLK,0.0,STOLEN,13631,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-13682,16552,GO-20159001142,THEFT UNDER,2015-03-01T00:00:00,2015,March,Sunday,1,60,18,2015-03-07T00:00:00,2015,March,Saturday,7,66,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,ALLEZ COMP,RC,10,WHI,3000.0,STOLEN,13632,"{'type': 'Point', 'coordinates': (-79.39592984, 43.64780696)}"
-13683,16558,GO-20159002031,THEFT UNDER,2015-04-18T00:00:00,2015,April,Saturday,18,108,16,2015-04-18T00:00:00,2015,April,Saturday,18,108,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,QUICK 4,RG,21,BLU,869.0,STOLEN,13633,"{'type': 'Point', 'coordinates': (-79.395007, 43.64546954)}"
-13684,16564,GO-20159002469,THEFT UNDER,2014-12-01T00:00:00,2014,December,Monday,1,335,13,2015-05-05T00:00:00,2015,May,Tuesday,5,125,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,FJ,,RG,1,BLK,800.0,STOLEN,13634,"{'type': 'Point', 'coordinates': (-79.39153656, 43.64758619)}"
-13685,16565,GO-20159002469,THEFT UNDER,2014-12-01T00:00:00,2014,December,Monday,1,335,13,2015-05-05T00:00:00,2015,May,Tuesday,5,125,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,BLK,500.0,STOLEN,13635,"{'type': 'Point', 'coordinates': (-79.39153656, 43.64758619)}"
-13686,16566,GO-2015755850,THEFT UNDER,2015-05-06T00:00:00,2015,May,Wednesday,6,126,15,2015-05-06T00:00:00,2015,May,Wednesday,6,126,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FUJI,SEATHER,RG,1,GRN,735.0,STOLEN,13636,"{'type': 'Point', 'coordinates': (-79.39592984, 43.64780696)}"
-13687,16568,GO-2015785417,THEFT UNDER,2015-05-09T00:00:00,2015,May,Saturday,9,129,15,2015-05-11T00:00:00,2015,May,Monday,11,131,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OTHER,,OT,0,GRN,800.0,STOLEN,13637,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-13688,16569,GO-2015785417,THEFT UNDER,2015-05-09T00:00:00,2015,May,Saturday,9,129,15,2015-05-11T00:00:00,2015,May,Monday,11,131,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OTHER,,OT,0,BLK,1000.0,STOLEN,13638,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-13689,16573,GO-20159003087,THEFT UNDER,2015-05-19T00:00:00,2015,May,Tuesday,19,139,0,2015-05-25T00:00:00,2015,May,Monday,25,145,19,D52,Toronto,77,Waterfront Communities-The Island (77),Unknown,Other,OT,,OT,1,ONG,200.0,STOLEN,13639,"{'type': 'Point', 'coordinates': (-79.38973372, 43.6466028)}"
-13690,16575,GO-20159003529,THEFT UNDER,2015-06-11T00:00:00,2015,June,Thursday,11,162,15,2015-06-11T00:00:00,2015,June,Thursday,11,162,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,VFR3,OT,24,BLK,0.0,STOLEN,13640,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-13691,16584,GO-20151323306,THEFT UNDER,2015-08-02T00:00:00,2015,August,Sunday,2,214,13,2015-08-02T00:00:00,2015,August,Sunday,2,214,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TREK,3500 D13,MT,7,BLKONG,552.0,STOLEN,13641,"{'type': 'Point', 'coordinates': (-79.38994752, 43.64370303)}"
-13692,16585,GO-20159005337,THEFT UNDER,2015-08-04T00:00:00,2015,August,Tuesday,4,216,9,2015-08-04T00:00:00,2015,August,Tuesday,4,216,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,FIXED UNO DROP,OT,1,BLK,600.0,STOLEN,13642,"{'type': 'Point', 'coordinates': (-79.38973372, 43.6466028)}"
-13693,16588,GO-20159005590,THEFT UNDER,2015-08-01T00:00:00,2015,August,Saturday,1,213,15,2015-08-10T00:00:00,2015,August,Monday,10,222,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,TREK MARLIN 5,MT,7,RED,620.0,STOLEN,13643,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-13694,16589,GO-20159005720,THEFT UNDER,2015-08-12T00:00:00,2015,August,Wednesday,12,224,19,2015-08-13T00:00:00,2015,August,Thursday,13,225,0,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,TR,LEXA,RC,21,PLE,850.0,STOLEN,13644,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-13695,16603,GO-20159008292,THEFT UNDER,2015-10-06T00:00:00,2015,October,Tuesday,6,279,18,2015-10-07T00:00:00,2015,October,Wednesday,7,280,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,SEEK 1,RG,28,BLK,999.0,STOLEN,13645,"{'type': 'Point', 'coordinates': (-79.38920538, 43.64527505)}"
-13696,16605,GO-20159008334,THEFT UNDER,2015-10-05T00:00:00,2015,October,Monday,5,278,10,2015-10-08T00:00:00,2015,October,Thursday,8,281,10,D52,Toronto,77,Waterfront Communities-The Island (77),Unknown,Other,CC,,MT,18,BLK,200.0,STOLEN,13646,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-13697,16608,GO-20151750202,THEFT UNDER,2015-10-09T00:00:00,2015,October,Friday,9,282,23,2015-10-10T00:00:00,2015,October,Saturday,10,283,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,TRICROSS,RG,12,WHI,2000.0,STOLEN,13647,"{'type': 'Point', 'coordinates': (-79.39281928, 43.64732006)}"
-13698,16611,GO-20151901275,THEFT UNDER,2015-11-02T00:00:00,2015,November,Monday,2,306,22,2015-11-05T00:00:00,2015,November,Thursday,5,309,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,RAMPAGE,EL,20,YEL,2000.0,STOLEN,13648,"{'type': 'Point', 'coordinates': (-79.38920538, 43.64527505)}"
-13699,16619,GO-20169000243,THEFT UNDER,2016-01-06T00:00:00,2016,January,Wednesday,6,6,9,2016-01-07T00:00:00,2016,January,Thursday,7,7,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RA,CADENT 1,RG,7,SIL,650.0,STOLEN,13650,"{'type': 'Point', 'coordinates': (-79.39124176, 43.640111790000006)}"
-13700,16625,GO-2016451593,THEFT UNDER,2016-03-15T00:00:00,2016,March,Tuesday,15,75,21,2016-03-15T00:00:00,2016,March,Tuesday,15,75,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,,MT,21,GRY,400.0,STOLEN,13651,"{'type': 'Point', 'coordinates': (-79.38477277, 43.64427915)}"
-13701,16628,GO-20169002904,THEFT UNDER - BICYCLE,2016-03-01T00:00:00,2016,March,Tuesday,1,61,1,2016-03-30T00:00:00,2016,March,Wednesday,30,90,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,HF,ARLINGTON,RG,7,DBL,300.0,STOLEN,13652,"{'type': 'Point', 'coordinates': (-79.38973372, 43.6466028)}"
-13702,16630,GO-20169003703,THEFT UNDER - BICYCLE,2016-04-23T00:00:00,2016,April,Saturday,23,114,12,2016-04-23T00:00:00,2016,April,Saturday,23,114,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CARIBOU,OT,30,BLK,1000.0,STOLEN,13653,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-13703,16632,GO-20169004065,THEFT UNDER - BICYCLE,2016-04-30T00:00:00,2016,April,Saturday,30,121,8,2016-05-02T00:00:00,2016,May,Monday,2,123,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,ELEGANCE 701,OT,21,GRY,550.0,STOLEN,13654,"{'type': 'Point', 'coordinates': (-79.38920538, 43.64527505)}"
-13704,16633,GO-20169004166,THEFT UNDER - BICYCLE,2016-05-04T00:00:00,2016,May,Wednesday,4,125,19,2016-05-05T00:00:00,2016,May,Thursday,5,126,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,DEW DELUXE,TO,24,GLD,300.0,STOLEN,13655,"{'type': 'Point', 'coordinates': (-79.38994752, 43.64370303)}"
-13705,16638,GO-20169004451,THEFT UNDER,2016-05-12T00:00:00,2016,May,Thursday,12,133,20,2016-05-12T00:00:00,2016,May,Thursday,12,133,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,,MT,10,WHI,500.0,STOLEN,13656,"{'type': 'Point', 'coordinates': (-79.38653359, 43.63885304)}"
-13706,16642,GO-20169004863,THEFT UNDER,2016-05-23T00:00:00,2016,May,Monday,23,144,19,2016-05-24T00:00:00,2016,May,Tuesday,24,145,0,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,HYBRID,TO,21,BLU,2500.0,STOLEN,13657,"{'type': 'Point', 'coordinates': (-79.38143561, 43.64291214)}"
-13707,16646,GO-2016916770,THEFT UNDER - BICYCLE,2016-05-27T00:00:00,2016,May,Friday,27,148,15,2016-05-27T00:00:00,2016,May,Friday,27,148,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,ESCAPADE,RG,7,GRY,339.0,STOLEN,13658,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-13708,16649,GO-20169005896,THEFT UNDER - BICYCLE,2016-06-16T00:00:00,2016,June,Thursday,16,168,17,2016-06-16T00:00:00,2016,June,Thursday,16,168,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,NORCO YORKVILLE,OT,21,WHI,500.0,STOLEN,13659,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-13709,16650,GO-20169005914,THEFT UNDER - BICYCLE,2016-06-15T00:00:00,2016,June,Wednesday,15,167,3,2016-06-17T00:00:00,2016,June,Friday,17,169,3,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,7,BLK,300.0,STOLEN,13660,"{'type': 'Point', 'coordinates': (-79.39389489, 43.64651184)}"
-13710,16660,GO-20169006802,THEFT UNDER - BICYCLE,2016-07-01T00:00:00,2016,July,Friday,1,183,6,2016-07-06T00:00:00,2016,July,Wednesday,6,188,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,MT,21,RED,200.0,STOLEN,13661,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-13711,16662,GO-20169006988,THEFT OVER - BICYCLE,2016-07-10T00:00:00,2016,July,Sunday,10,192,19,2016-07-10T00:00:00,2016,July,Sunday,10,192,23,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,CARBON ROAD BIK,RC,20,BLK,5000.0,STOLEN,13662,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-13712,16664,GO-20169007379,THEFT UNDER - BICYCLE,2016-07-16T00:00:00,2016,July,Saturday,16,198,17,2016-07-19T00:00:00,2016,July,Tuesday,19,201,2,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,THRESHOLD CARBO,RC,10,BLK,1800.0,STOLEN,13663,"{'type': 'Point', 'coordinates': (-79.38867784, 43.64396864)}"
-13713,16668,GO-20169007792,THEFT UNDER,2016-07-26T00:00:00,2016,July,Tuesday,26,208,19,2016-07-26T00:00:00,2016,July,Tuesday,26,208,23,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,&BACK SADDLEBAG,OT,15,BLK,950.0,STOLEN,13664,"{'type': 'Point', 'coordinates': (-79.38477277, 43.64427915)}"
-13714,16669,GO-20169007792,THEFT UNDER,2016-07-26T00:00:00,2016,July,Tuesday,26,208,19,2016-07-26T00:00:00,2016,July,Tuesday,26,208,23,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,KICKSTAND&REAR,OT,15,BLK,1000.0,STOLEN,13665,"{'type': 'Point', 'coordinates': (-79.38477277, 43.64427915)}"
-13715,16670,GO-20169007828,THEFT UNDER,2016-07-21T00:00:00,2016,July,Thursday,21,203,20,2016-07-27T00:00:00,2016,July,Wednesday,27,209,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,PE,U014 54CM 1988,RC,30,RED,379.0,STOLEN,13666,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-13716,16678,GO-20169009505,THEFT UNDER,2016-08-27T00:00:00,2016,August,Saturday,27,240,0,2016-08-27T00:00:00,2016,August,Saturday,27,240,1,D52,Toronto,77,Waterfront Communities-The Island (77),Unknown,Other,OT,FIXED GEAR,RG,1,BLK,600.0,STOLEN,13667,"{'type': 'Point', 'coordinates': (-79.39075649, 43.64913078)}"
-13717,16679,GO-20169009608,THEFT UNDER - BICYCLE,2016-08-22T00:00:00,2016,August,Monday,22,235,11,2016-08-28T00:00:00,2016,August,Sunday,28,241,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,UK,SPUTNIK,RG,1,BLK,650.0,STOLEN,13668,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-13718,16680,GO-20169010072,THEFT UNDER - BICYCLE,2016-09-06T00:00:00,2016,September,Tuesday,6,250,19,2016-09-06T00:00:00,2016,September,Tuesday,6,250,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,HYDRA 700C HYBR,OT,24,PLE,400.0,STOLEN,13669,"{'type': 'Point', 'coordinates': (-79.38091602, 43.64168463)}"
-13719,16682,GO-20169010293,THEFT UNDER,2016-09-12T00:00:00,2016,September,Monday,12,256,13,2016-09-12T00:00:00,2016,September,Monday,12,256,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,NO,HEART,RG,1,BLK,635.0,STOLEN,13670,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-13720,686,GO-20171120322,THEFT UNDER - BICYCLE,2017-06-16T00:00:00,2017,June,Friday,16,167,21,2017-06-23T00:00:00,2017,June,Friday,23,174,9,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,,MT,0,,,STOLEN,15178,"{'type': 'Point', 'coordinates': (-79.40207036, 43.66305191)}"
-13721,16685,GO-20161627633,THEFT UNDER - BICYCLE,2016-09-10T00:00:00,2016,September,Saturday,10,254,22,2016-09-13T00:00:00,2016,September,Tuesday,13,257,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,RG,0,BLU,500.0,STOLEN,13671,"{'type': 'Point', 'coordinates': (-79.38973372, 43.6466028)}"
-13722,16687,GO-20169010669,THEFT UNDER,2016-09-16T00:00:00,2016,September,Friday,16,260,7,2016-09-18T00:00:00,2016,September,Sunday,18,262,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,RG,18,BLU,500.0,STOLEN,13672,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-13723,16688,GO-20169010684,THEFT UNDER - BICYCLE,2016-09-13T00:00:00,2016,September,Tuesday,13,257,16,2016-09-19T00:00:00,2016,September,Monday,19,263,8,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,MT,21,WHI,1200.0,STOLEN,13673,"{'type': 'Point', 'coordinates': (-79.38914103, 43.64945651)}"
-13724,16694,GO-20169011445,THEFT UNDER,2016-10-02T00:00:00,2016,October,Sunday,2,276,0,2016-10-02T00:00:00,2016,October,Sunday,2,276,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RC,14,SIL,900.0,STOLEN,13674,"{'type': 'Point', 'coordinates': (-79.39184935, 43.63765238)}"
-13725,16696,GO-20161766299,THEFT UNDER - BICYCLE,2016-09-23T00:00:00,2016,September,Friday,23,267,12,2016-10-04T00:00:00,2016,October,Tuesday,4,278,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OTHER,,OT,18,BLKLGR,,STOLEN,13675,"{'type': 'Point', 'coordinates': (-79.37778379, 43.6430065)}"
-13726,16701,GO-20169012876,THEFT UNDER,2016-10-29T00:00:00,2016,October,Saturday,29,303,22,2016-11-01T00:00:00,2016,November,Tuesday,1,306,23,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GT,AGGRESSOR COMP,MT,21,BLK,500.0,STOLEN,13676,"{'type': 'Point', 'coordinates': (-79.38888568, 43.64881159)}"
-13727,16704,GO-20169013093,THEFT UNDER - BICYCLE,2016-11-07T00:00:00,2016,November,Monday,7,312,8,2016-11-07T00:00:00,2016,November,Monday,7,312,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,MT,21,SIL,0.0,STOLEN,13677,"{'type': 'Point', 'coordinates': (-79.38920538, 43.64527505)}"
-13728,16706,GO-20162009552,THEFT OF EBIKE UNDER $5000,2016-11-12T00:00:00,2016,November,Saturday,12,317,0,2016-11-12T00:00:00,2016,November,Saturday,12,317,0,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MOTORINO,XPN,EL,1,BLK,4000.0,STOLEN,13678,"{'type': 'Point', 'coordinates': (-79.38396859, 43.64239001)}"
-13729,16713,GO-20162280113,B&E,2016-12-25T00:00:00,2016,December,Sunday,25,360,4,2016-12-25T00:00:00,2016,December,Sunday,25,360,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,BMC,TIMEMACHINE TMR,OT,0,BLK,5199.0,STOLEN,13679,"{'type': 'Point', 'coordinates': (-79.39184935, 43.63765238)}"
-13730,16714,GO-20162280113,B&E,2016-12-25T00:00:00,2016,December,Sunday,25,360,4,2016-12-25T00:00:00,2016,December,Sunday,25,360,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,DEVINCI,MINUS RS,OT,0,WHI,1600.0,STOLEN,13680,"{'type': 'Point', 'coordinates': (-79.39184935, 43.63765238)}"
-13731,16715,GO-20162280113,B&E,2016-12-25T00:00:00,2016,December,Sunday,25,360,4,2016-12-25T00:00:00,2016,December,Sunday,25,360,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,APOLLO,SILHOUETTE,OT,0,WHI,1699.0,STOLEN,13681,"{'type': 'Point', 'coordinates': (-79.39184935, 43.63765238)}"
-13732,16717,GO-2017190849,THEFT UNDER - BICYCLE,2017-01-31T00:00:00,2017,January,Tuesday,31,31,5,2017-01-31T00:00:00,2017,January,Tuesday,31,31,6,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,GRANFONDO DISC,RC,21,WHIBLU,3000.0,STOLEN,13682,"{'type': 'Point', 'coordinates': (-79.39204821, 43.64885072)}"
-13733,16750,GO-20199014938,THEFT UNDER,2019-05-10T00:00:00,2019,May,Friday,10,130,0,2019-05-14T00:00:00,2019,May,Tuesday,14,134,8,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GT,,RC,21,BLK,3000.0,STOLEN,13683,"{'type': 'Point', 'coordinates': (-79.35482206, 43.65337232)}"
-13734,16765,GO-20199018156,THEFT UNDER,2019-06-10T00:00:00,2019,June,Monday,10,161,0,2019-06-11T00:00:00,2019,June,Tuesday,11,162,10,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,HARDROCK DISC,MT,7,RED,550.0,STOLEN,13684,"{'type': 'Point', 'coordinates': (-79.3621013, 43.65019711)}"
-13735,16768,GO-20199018400,THEFT UNDER,2019-06-11T00:00:00,2019,June,Tuesday,11,162,23,2019-06-12T00:00:00,2019,June,Wednesday,12,163,21,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,21,BLK,900.0,STOLEN,13685,"{'type': 'Point', 'coordinates': (-79.37142509, 43.64944981)}"
-13736,9882,GO-20149006503,THEFT UNDER,2014-09-02T00:00:00,2014,September,Tuesday,2,245,15,2014-09-02T00:00:00,2014,September,Tuesday,2,245,20,D52,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,NORCO,VFR3,RG,27,WHT,,RECOVERED,13686,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-13737,17223,GO-20169005041,THEFT UNDER - BICYCLE,2016-05-27T00:00:00,2016,May,Friday,27,148,16,2016-05-27T00:00:00,2016,May,Friday,27,148,19,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,3700,MT,21,BLU,200.0,STOLEN,13687,"{'type': 'Point', 'coordinates': (-79.37302563, 43.64248042)}"
-13738,12182,GO-20169009326,THEFT UNDER,2016-08-22T00:00:00,2016,August,Monday,22,235,15,2016-08-23T00:00:00,2016,August,Tuesday,23,236,12,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NO,VFR,RG,20,BLK,850.0,STOLEN,13688,"{'type': 'Point', 'coordinates': (-79.35677669, 43.6529262)}"
-13739,17229,GO-20169005785,THEFT UNDER - BICYCLE,2016-06-14T00:00:00,2016,June,Tuesday,14,166,12,2016-06-14T00:00:00,2016,June,Tuesday,14,166,15,D51,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,TR,7.6 FX,OT,20,BLK,1600.0,STOLEN,13689,"{'type': 'Point', 'coordinates': (-79.37170147, 43.64804122)}"
-13740,12195,GO-20169009444,THEFT UNDER - BICYCLE,2016-08-23T00:00:00,2016,August,Tuesday,23,236,22,2016-08-25T00:00:00,2016,August,Thursday,25,238,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,VIA 1 W,RG,3,WHI,500.0,STOLEN,13690,"{'type': 'Point', 'coordinates': (-79.4010881, 43.64697154)}"
-13741,9887,GO-20151077849,THEFT UNDER,2015-06-26T00:00:00,2015,June,Friday,26,177,14,2015-06-26T00:00:00,2015,June,Friday,26,177,17,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FUJI,,OT,8,BLU,700.0,STOLEN,13691,"{'type': 'Point', 'coordinates': (-79.35971484, 43.65076046)}"
-13742,17242,GO-20169006683,THEFT UNDER,2016-07-04T00:00:00,2016,July,Monday,4,186,8,2016-07-04T00:00:00,2016,July,Monday,4,186,20,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,HEARTLAND EXPRE,RG,18,BLU,500.0,STOLEN,13692,"{'type': 'Point', 'coordinates': (-79.37401755, 43.64457237)}"
-13743,12209,GO-20161499048,THEFT UNDER - BICYCLE,2016-08-24T00:00:00,2016,August,Wednesday,24,237,9,2016-08-24T00:00:00,2016,August,Wednesday,24,237,11,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CANNONDALE,S13 TRAIL,MT,27,BLUWHI,500.0,STOLEN,13693,"{'type': 'Point', 'coordinates': (-79.37646324, 43.64578351)}"
-13744,9888,GO-20151077849,THEFT UNDER,2015-06-26T00:00:00,2015,June,Friday,26,177,14,2015-06-26T00:00:00,2015,June,Friday,26,177,17,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FUJI,,OT,8,BLKSIL,700.0,STOLEN,13694,"{'type': 'Point', 'coordinates': (-79.35971484, 43.65076046)}"
-13745,17258,GO-20169009163,B&E,2016-08-11T00:00:00,2016,August,Thursday,11,224,17,2016-08-21T00:00:00,2016,August,Sunday,21,234,12,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,DB,TRACE SPORT,OT,21,WHI,650.0,STOLEN,13695,"{'type': 'Point', 'coordinates': (-79.37646324, 43.64578351)}"
-13746,12210,GO-20169009566,THEFT UNDER,2016-08-26T00:00:00,2016,August,Friday,26,239,16,2016-08-27T00:00:00,2016,August,Saturday,27,240,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,SINGLE SPEED,RC,1,BLK,700.0,STOLEN,13696,"{'type': 'Point', 'coordinates': (-79.39948839, 43.63339968)}"
-13747,9898,GO-20159004008,THEFT UNDER,2015-06-28T00:00:00,2015,June,Sunday,28,179,13,2015-06-28T00:00:00,2015,June,Sunday,28,179,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,AGRESSOR,MT,27,WHI,250.0,STOLEN,13697,"{'type': 'Point', 'coordinates': (-79.38994752, 43.64370303)}"
-13748,17275,GO-20161744368,THEFT UNDER - BICYCLE,2016-10-01T00:00:00,2016,October,Saturday,1,275,10,2016-10-01T00:00:00,2016,October,Saturday,1,275,10,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,OT,0,,,STOLEN,13698,"{'type': 'Point', 'coordinates': (-79.35713011, 43.65083215)}"
-13749,12215,GO-20169009604,THEFT UNDER - BICYCLE,2016-08-27T00:00:00,2016,August,Saturday,27,240,21,2016-08-28T00:00:00,2016,August,Sunday,28,241,11,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NO,CITY GLIDE,RG,7,DBL,575.0,STOLEN,13699,"{'type': 'Point', 'coordinates': (-79.35482206, 43.65337232)}"
-13750,9906,GO-20151093514,THEFT UNDER,2015-06-25T00:00:00,2015,June,Thursday,25,176,16,2015-06-29T00:00:00,2015,June,Monday,29,180,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SCOTT,UNKNOWN,MT,24,WHI,800.0,STOLEN,13700,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-13751,17329,GO-20209014268,THEFT UNDER,2020-05-28T00:00:00,2020,May,Thursday,28,149,21,2020-05-31T00:00:00,2020,May,Sunday,31,152,2,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,"TRAIL X 17""""",MT,25,BLK,600.0,STOLEN,13701,"{'type': 'Point', 'coordinates': (-79.40138212, 43.64074836)}"
-13752,12229,GO-20169009658,THEFT UNDER - BICYCLE,2016-08-21T00:00:00,2016,August,Sunday,21,234,20,2016-08-29T00:00:00,2016,August,Monday,29,242,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,KO,FIRE MOUNTAIN,MT,21,BLK,791.0,STOLEN,13702,"{'type': 'Point', 'coordinates': (-79.39175463, 43.64474761000001)}"
-13753,9925,GO-20159004112,B&E,2015-07-01T00:00:00,2015,July,Wednesday,1,182,13,2015-07-02T00:00:00,2015,July,Thursday,2,183,16,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,ALLEZ,RG,8,BLK,800.0,STOLEN,13703,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-13754,9959,GO-20159004249,THEFT UNDER,2015-06-07T00:00:00,2015,June,Sunday,7,158,0,2015-07-07T00:00:00,2015,July,Tuesday,7,188,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,700C 1-SP FIX P,MT,20,BLK,362.0,STOLEN,13704,"{'type': 'Point', 'coordinates': (-79.3979648, 43.63940267)}"
-13755,9976,GO-20159004355,THEFT UNDER,2015-07-07T00:00:00,2015,July,Tuesday,7,188,12,2015-07-09T00:00:00,2015,July,Thursday,9,190,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,INDIE,RG,24,BLK,597.0,STOLEN,13705,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-13756,9978,GO-20159004358,THEFT UNDER,2015-07-07T00:00:00,2015,July,Tuesday,7,188,20,2015-07-09T00:00:00,2015,July,Thursday,9,190,20,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CA,QUICK 4,RG,9,BLU,820.0,STOLEN,13706,"{'type': 'Point', 'coordinates': (-79.37302563, 43.64248042)}"
-13757,7924,GO-20142084500,THEFT UNDER,2014-05-13T00:00:00,2014,May,Tuesday,13,133,17,2014-05-15T00:00:00,2014,May,Thursday,15,135,13,D52,Toronto,79,University (79),Universities / Colleges,Educational,CCM,ORION,OT,21,BLKBLU,305.0,STOLEN,15933,"{'type': 'Point', 'coordinates': (-79.39979751, 43.66751644)}"
-13758,9981,GO-20159004381,THEFT UNDER,2015-07-05T00:00:00,2015,July,Sunday,5,186,18,2015-07-10T00:00:00,2015,July,Friday,10,191,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,A4 FORMA,OT,21,WHI,800.0,STOLEN,13707,"{'type': 'Point', 'coordinates': (-79.40215599, 43.64265388)}"
-13759,9984,GO-20159004395,THEFT UNDER,2015-07-09T00:00:00,2015,July,Thursday,9,190,14,2015-07-10T00:00:00,2015,July,Friday,10,191,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,LARGO,TO,21,DGR,1100.0,STOLEN,13708,"{'type': 'Point', 'coordinates': (-79.395007, 43.64546954)}"
-13760,10049,GO-20151230263,THEFT UNDER,2015-07-19T00:00:00,2015,July,Sunday,19,200,15,2015-07-19T00:00:00,2015,July,Sunday,19,200,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,DEVINCI,HELSINKI,OT,12,BLU,2400.0,STOLEN,13709,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-13761,10103,GO-20159005020,THEFT UNDER,2015-07-26T00:00:00,2015,July,Sunday,26,207,20,2015-07-26T00:00:00,2015,July,Sunday,26,207,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,SUPER FLY,MT,30,BLK,4299.0,STOLEN,13710,"{'type': 'Point', 'coordinates': (-79.38330674, 43.64067063)}"
-13762,10106,GO-20159005035,THEFT UNDER,2015-07-26T00:00:00,2015,July,Sunday,26,207,15,2015-07-27T00:00:00,2015,July,Monday,27,208,9,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,ESCAPE RX,RG,10,BLK,500.0,STOLEN,13711,"{'type': 'Point', 'coordinates': (-79.39958821, 43.64593284)}"
-13763,10111,GO-20159005056,THEFT UNDER,2015-07-26T00:00:00,2015,July,Sunday,26,207,16,2015-07-27T00:00:00,2015,July,Monday,27,208,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,OCR 2,RC,27,SIL,600.0,STOLEN,13712,"{'type': 'Point', 'coordinates': (-79.39153656, 43.64758619)}"
-13764,10143,GO-20159005152,THEFT UNDER,2015-07-29T00:00:00,2015,July,Wednesday,29,210,22,2015-07-30T00:00:00,2015,July,Thursday,30,211,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,RECORD,RG,10,LBL,0.0,STOLEN,13713,"{'type': 'Point', 'coordinates': (-79.3883628, 43.64757108)}"
-13765,10179,GO-20159005359,THEFT UNDER,2015-07-19T00:00:00,2015,July,Sunday,19,200,17,2015-08-05T00:00:00,2015,August,Wednesday,5,217,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,HEART,RC,1,BLK,550.0,STOLEN,13714,"{'type': 'Point', 'coordinates': (-79.39153656, 43.64758619)}"
-13766,10183,GO-20159005375,THEFT UNDER,2015-08-05T00:00:00,2015,August,Wednesday,5,217,9,2015-08-05T00:00:00,2015,August,Wednesday,5,217,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,"S3/GREY/26""""",RG,8,GRY,2100.0,STOLEN,13715,"{'type': 'Point', 'coordinates': (-79.38864414, 43.64819947)}"
-13767,10198,GO-20159005445,THEFT UNDER,2015-08-06T00:00:00,2015,August,Thursday,6,218,21,2015-08-07T00:00:00,2015,August,Friday,7,219,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,,MT,6,,200.0,STOLEN,13716,"{'type': 'Point', 'coordinates': (-79.395007, 43.64546954)}"
-13768,10216,GO-20159005522,THEFT UNDER,2015-08-04T00:00:00,2015,August,Tuesday,4,216,9,2015-08-08T00:00:00,2015,August,Saturday,8,220,23,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,HF,,MT,18,WHI,100.0,STOLEN,13717,"{'type': 'Point', 'coordinates': (-79.37778379, 43.6430065)}"
-13769,10217,GO-20159005522,THEFT UNDER,2015-08-04T00:00:00,2015,August,Tuesday,4,216,9,2015-08-08T00:00:00,2015,August,Saturday,8,220,23,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NO,CHARGER,MT,27,ONG,1000.0,STOLEN,13718,"{'type': 'Point', 'coordinates': (-79.37778379, 43.6430065)}"
-13770,10219,GO-20151366154,THEFT UNDER,2015-08-05T00:00:00,2015,August,Wednesday,5,217,18,2015-08-09T00:00:00,2015,August,Sunday,9,221,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,ROAD,OT,1,BLK,3000.0,STOLEN,13719,"{'type': 'Point', 'coordinates': (-79.38973372, 43.6466028)}"
-13771,10256,GO-20159005712,THEFT UNDER,2015-08-11T00:00:00,2015,August,Tuesday,11,223,21,2015-08-12T00:00:00,2015,August,Wednesday,12,224,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,SL2,RC,27,WHI,1400.0,STOLEN,13720,"{'type': 'Point', 'coordinates': (-79.39153656, 43.64758619)}"
-13772,10263,GO-20159005771,THEFT UNDER,2015-08-15T00:00:00,2015,August,Saturday,15,227,19,2015-08-16T00:00:00,2015,August,Sunday,16,228,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,PE,,RG,1,GRY,500.0,STOLEN,13721,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-13773,10273,GO-20159005862,THEFT UNDER,2015-08-16T00:00:00,2015,August,Sunday,16,228,13,2015-08-16T00:00:00,2015,August,Sunday,16,228,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,IMPERALE,RC,18,BLK,3614.0,STOLEN,13722,"{'type': 'Point', 'coordinates': (-79.39124176, 43.640111790000006)}"
-13774,10292,GO-20159005956,THEFT UNDER,2015-08-14T00:00:00,2015,August,Friday,14,226,22,2015-08-17T00:00:00,2015,August,Monday,17,229,22,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,SPECIALIZED,OT,9,,1000.0,STOLEN,13723,"{'type': 'Point', 'coordinates': (-79.39811145, 43.64623146000001)}"
-13775,10330,GO-20159006225,THEFT UNDER,2015-08-18T00:00:00,2015,August,Tuesday,18,230,18,2015-08-19T00:00:00,2015,August,Wednesday,19,231,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SC,FRONTIER,MT,7,WHI,300.0,STOLEN,13724,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-13776,10336,GO-20159006300,THEFT UNDER,2015-08-22T00:00:00,2015,August,Saturday,22,234,22,2015-08-23T00:00:00,2015,August,Sunday,23,235,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,MA,,MT,21,BLK,600.0,STOLEN,13725,"{'type': 'Point', 'coordinates': (-79.39124574, 43.64342012)}"
-13777,10338,GO-20159006312,B&E,2015-08-01T00:00:00,2015,August,Saturday,1,213,10,2015-08-23T00:00:00,2015,August,Sunday,23,235,20,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,VELOCITA,RC,10,RED,1900.0,STOLEN,13726,"{'type': 'Point', 'coordinates': (-79.37374694, 43.64844177)}"
-13778,10339,GO-20159006313,THEFT UNDER,2015-08-10T00:00:00,2015,August,Monday,10,222,20,2015-08-23T00:00:00,2015,August,Sunday,23,235,20,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,,MT,8,BLK,1500.0,STOLEN,13727,"{'type': 'Point', 'coordinates': (-79.39558819, 43.63994429)}"
-13779,10406,GO-20159006764,THEFT UNDER,2015-09-04T00:00:00,2015,September,Friday,4,247,15,2015-09-04T00:00:00,2015,September,Friday,4,247,16,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,RACEING BIKE,RC,27,BLU,1200.0,STOLEN,13728,"{'type': 'Point', 'coordinates': (-79.36278316, 43.64850402)}"
-13780,10411,GO-20159006787,THEFT UNDER,2015-09-05T00:00:00,2015,September,Saturday,5,248,11,2015-09-05T00:00:00,2015,September,Saturday,5,248,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,ALLEZ SPORT 201,RC,18,GRY,1100.0,STOLEN,13729,"{'type': 'Point', 'coordinates': (-79.38994752, 43.64370303)}"
-13781,10426,GO-20159006861,THEFT UNDER,2015-09-07T00:00:00,2015,September,Monday,7,250,10,2015-09-07T00:00:00,2015,September,Monday,7,250,21,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,SIZE XL,MT,12,RED,500.0,STOLEN,13730,"{'type': 'Point', 'coordinates': (-79.3979648, 43.63940267)}"
-13782,10453,GO-20159007079,THEFT UNDER,2015-09-10T00:00:00,2015,September,Thursday,10,253,20,2015-09-12T00:00:00,2015,September,Saturday,12,255,11,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,PRESTO,RC,21,WHI,0.0,STOLEN,13731,"{'type': 'Point', 'coordinates': (-79.36845254, 43.64877113)}"
-13783,10463,GO-20159007150,THEFT UNDER,2015-09-10T00:00:00,2015,September,Thursday,10,253,6,2015-09-14T00:00:00,2015,September,Monday,14,257,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KH,CUSTOM 520,RG,1,BLU,750.0,STOLEN,13732,"{'type': 'Point', 'coordinates': (-79.39184935, 43.63765238)}"
-13784,10473,GO-20159007217,THEFT UNDER,2015-09-11T00:00:00,2015,September,Friday,11,254,13,2015-09-15T00:00:00,2015,September,Tuesday,15,258,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,,RG,8,MRN,750.0,STOLEN,13733,"{'type': 'Point', 'coordinates': (-79.39330422, 43.64134268000001)}"
-13785,10474,GO-20159007236,THEFT UNDER,2015-09-15T00:00:00,2015,September,Tuesday,15,258,9,2015-09-15T00:00:00,2015,September,Tuesday,15,258,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,JULIETTE,RC,1,BLK,425.0,STOLEN,13734,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-13786,10483,GO-20159007322,THEFT UNDER,2015-09-17T00:00:00,2015,September,Thursday,17,260,14,2015-09-17T00:00:00,2015,September,Thursday,17,260,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,11,BLU,1500.0,STOLEN,13735,"{'type': 'Point', 'coordinates': (-79.39895584, 43.646052)}"
-13787,10491,GO-20159007375,THEFT UNDER,2015-09-18T00:00:00,2015,September,Friday,18,261,8,2015-09-18T00:00:00,2015,September,Friday,18,261,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,,MT,21,BLK,0.0,STOLEN,13736,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-13788,10505,GO-20159007466,THEFT UNDER,2015-09-19T00:00:00,2015,September,Saturday,19,262,15,2015-09-20T00:00:00,2015,September,Sunday,20,263,20,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GF,KAITAI,MT,24,,800.0,STOLEN,13737,"{'type': 'Point', 'coordinates': (-79.37302563, 43.64248042)}"
-13789,10509,GO-20159007490,THEFT UNDER,2015-09-20T00:00:00,2015,September,Sunday,20,263,20,2015-09-21T00:00:00,2015,September,Monday,21,264,8,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,,RG,1,BLU,200.0,STOLEN,13738,"{'type': 'Point', 'coordinates': (-79.40306565, 43.64488902)}"
-13790,10510,GO-20159007490,THEFT UNDER,2015-09-20T00:00:00,2015,September,Sunday,20,263,20,2015-09-21T00:00:00,2015,September,Monday,21,264,8,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,LAGER,OT,1,BLU,500.0,STOLEN,13739,"{'type': 'Point', 'coordinates': (-79.40306565, 43.64488902)}"
-13791,10524,GO-20151631825,THEFT FROM MOTOR VEHICLE UNDER,2015-09-19T00:00:00,2015,September,Saturday,19,262,16,2015-09-23T00:00:00,2015,September,Wednesday,23,266,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KONA,,RC,21,,1000.0,STOLEN,13740,"{'type': 'Point', 'coordinates': (-79.39124574, 43.64342012)}"
-13792,10551,GO-20159007779,THEFT UNDER,2015-09-23T00:00:00,2015,September,Wednesday,23,266,13,2015-09-26T00:00:00,2015,September,Saturday,26,269,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,NO,YORKVILLE,RG,21,BLK,550.0,STOLEN,13741,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-13793,10591,GO-20159008165,THEFT UNDER,2015-10-05T00:00:00,2015,October,Monday,5,278,8,2015-10-05T00:00:00,2015,October,Monday,5,278,9,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,10,BLU,,STOLEN,13742,"{'type': 'Point', 'coordinates': (-79.39811145, 43.64623146000001)}"
-13794,10598,GO-20159008242,THEFT UNDER,2015-10-05T00:00:00,2015,October,Monday,5,278,18,2015-10-06T00:00:00,2015,October,Tuesday,6,279,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,TACANA 4,MT,28,BLU,1000.0,STOLEN,13743,"{'type': 'Point', 'coordinates': (-79.38542345, 43.63902804)}"
-13795,10600,GO-20159008220,THEFT UNDER,2015-10-02T00:00:00,2015,October,Friday,2,275,17,2015-10-05T00:00:00,2015,October,Monday,5,278,23,D52,Toronto,77,Waterfront Communities-The Island (77),Go Station,Transit,OT,,MT,21,BLK,350.0,STOLEN,13744,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-13796,10603,GO-20151732701,THEFT UNDER,2015-10-07T00:00:00,2015,October,Wednesday,7,280,7,2015-10-07T00:00:00,2015,October,Wednesday,7,280,17,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,MARIN OR MARINO,,TO,0,WHI,700.0,STOLEN,13745,"{'type': 'Point', 'coordinates': (-79.3979648, 43.63940267)}"
-13797,10634,GO-20159008562,THEFT UNDER,2015-10-01T00:00:00,2015,October,Thursday,1,274,18,2015-10-15T00:00:00,2015,October,Thursday,15,288,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,BKC,RG,8,BLU,1000.0,STOLEN,13746,"{'type': 'Point', 'coordinates': (-79.39833497, 43.64030158)}"
-13798,10638,GO-20159008601,THEFT UNDER,2015-10-15T00:00:00,2015,October,Thursday,15,288,10,2015-10-16T00:00:00,2015,October,Friday,16,289,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,,TO,20,WHI,2000.0,STOLEN,13747,"{'type': 'Point', 'coordinates': (-79.38275181, 43.64263544000001)}"
-13799,10643,GO-20151794988,PROPERTY - LOST,2015-10-14T00:00:00,2015,October,Wednesday,14,287,22,2015-10-18T00:00:00,2015,October,Sunday,18,291,16,D52,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,ECORECO,,SC,1,BLK,1200.0,UNKNOWN,13748,"{'type': 'Point', 'coordinates': (-79.38091602, 43.64168463)}"
-13800,10644,GO-20151794988,PROPERTY - LOST,2015-10-14T00:00:00,2015,October,Wednesday,14,287,22,2015-10-18T00:00:00,2015,October,Sunday,18,291,16,D52,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,ECORECO,,SC,1,BLK,1200.0,UNKNOWN,13749,"{'type': 'Point', 'coordinates': (-79.38091602, 43.64168463)}"
-13801,692,GO-20179008740,THEFT UNDER - BICYCLE,2017-06-22T00:00:00,2017,June,Thursday,22,173,10,2017-06-23T00:00:00,2017,June,Friday,23,174,1,D52,Toronto,79,University (79),Universities / Colleges,Educational,NO,VFR-4,RG,21,BLK,650.0,STOLEN,15179,"{'type': 'Point', 'coordinates': (-79.3934451, 43.65919971)}"
-13802,10645,GO-20159008649,THEFT UNDER,2015-10-16T00:00:00,2015,October,Friday,16,289,0,2015-10-16T00:00:00,2015,October,Friday,16,289,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,BEATER BIKE,TO,1,DGR,400.0,STOLEN,13750,"{'type': 'Point', 'coordinates': (-79.39811145, 43.64623146000001)}"
-13803,10646,GO-20159008645,THEFT UNDER,2015-10-15T00:00:00,2015,October,Thursday,15,288,9,2015-10-17T00:00:00,2015,October,Saturday,17,290,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,,MT,24,SIL,700.0,STOLEN,13751,"{'type': 'Point', 'coordinates': (-79.38275181, 43.64263544000001)}"
-13804,10652,GO-20159008709,THEFT UNDER,2015-10-16T00:00:00,2015,October,Friday,16,289,19,2015-10-18T00:00:00,2015,October,Sunday,18,291,16,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,CROSSTRAIL COMP,MT,32,WHI,600.0,STOLEN,13752,"{'type': 'Point', 'coordinates': (-79.37146354, 43.64763677)}"
-13805,10655,GO-20151806497,THEFT UNDER,2015-10-19T00:00:00,2015,October,Monday,19,292,9,2015-10-20T00:00:00,2015,October,Tuesday,20,293,14,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,NEKO,OT,10,WHI,800.0,STOLEN,13753,"{'type': 'Point', 'coordinates': (-79.37302563, 43.64248042)}"
-13806,10657,GO-20159008783,THEFT UNDER,2015-10-18T00:00:00,2015,October,Sunday,18,291,9,2015-10-20T00:00:00,2015,October,Tuesday,20,293,8,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,,RC,18,BLU,2500.0,STOLEN,13754,"{'type': 'Point', 'coordinates': (-79.38888568, 43.64881159)}"
-13807,10664,GO-20159008750,THEFT UNDER,2015-10-19T00:00:00,2015,October,Monday,19,292,15,2015-10-19T00:00:00,2015,October,Monday,19,292,18,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,EM,EMMO S6,SC,31,YEL,2400.0,STOLEN,13755,"{'type': 'Point', 'coordinates': (-79.36278316, 43.64850402)}"
-13808,10691,GO-20151845983,THEFT UNDER,2015-10-27T00:00:00,2015,October,Tuesday,27,300,0,2015-10-27T00:00:00,2015,October,Tuesday,27,300,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,,EL,1,BLKGRY,1300.0,STOLEN,13756,"{'type': 'Point', 'coordinates': (-79.39281928, 43.64732006)}"
-13809,10785,GO-20159009888,THEFT UNDER,2015-11-18T00:00:00,2015,November,Wednesday,18,322,19,2015-11-18T00:00:00,2015,November,Wednesday,18,322,23,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,S-WORKS,MT,21,MRN,1000.0,STOLEN,13764,"{'type': 'Point', 'coordinates': (-79.395007, 43.64546954)}"
-13810,10700,GO-20159009121,B&E,2015-10-01T00:00:00,2015,October,Thursday,1,274,15,2015-10-28T00:00:00,2015,October,Wednesday,28,301,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,WOMEN'S SL4 (LA,RC,8,RED,875.0,STOLEN,13757,"{'type': 'Point', 'coordinates': (-79.39558819, 43.63994429)}"
-13811,10703,GO-20159009142,B&E,2015-10-27T00:00:00,2015,October,Tuesday,27,300,18,2015-10-29T00:00:00,2015,October,Thursday,29,302,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,ESCAPE 2,RG,28,BLK,650.0,STOLEN,13758,"{'type': 'Point', 'coordinates': (-79.39558819, 43.63994429)}"
-13812,10727,GO-20151898630,B&E,2015-11-04T00:00:00,2015,November,Wednesday,4,308,12,2015-11-04T00:00:00,2015,November,Wednesday,4,308,19,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GIANT,FASTROAD KOMAX,OT,22,BLKRED,,STOLEN,13759,"{'type': 'Point', 'coordinates': (-79.37374694, 43.64844177)}"
-13813,10728,GO-20151898630,B&E,2015-11-04T00:00:00,2015,November,Wednesday,4,308,12,2015-11-04T00:00:00,2015,November,Wednesday,4,308,19,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GIANT,THRIVE KOMAX,OT,22,BLKPLE,,STOLEN,13760,"{'type': 'Point', 'coordinates': (-79.37374694, 43.64844177)}"
-13814,10732,GO-20159009439,THEFT UNDER,2015-10-30T00:00:00,2015,October,Friday,30,303,0,2015-11-06T00:00:00,2015,November,Friday,6,310,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,10 VITA,RC,35,SIL,759.0,STOLEN,13761,"{'type': 'Point', 'coordinates': (-79.39124176, 43.640111790000006)}"
-13815,10768,GO-20151943616,THEFT UNDER,2015-11-06T00:00:00,2015,November,Friday,6,310,0,2015-11-12T00:00:00,2015,November,Thursday,12,316,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,ALLEZ C2,OT,0,BLK,1000.0,STOLEN,13762,"{'type': 'Point', 'coordinates': (-79.395007, 43.64546954)}"
-13816,10782,GO-20151968210,THEFT UNDER,2015-11-16T00:00:00,2015,November,Monday,16,320,15,2015-11-18T00:00:00,2015,November,Wednesday,18,322,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,ROCKY MOUNTAIN,HYBRID,OT,21,PLESIL,800.0,STOLEN,13763,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-13817,10809,GO-20159010152,THEFT UNDER - SHOPLIFTING,2015-11-19T00:00:00,2015,November,Thursday,19,323,20,2015-11-24T00:00:00,2015,November,Tuesday,24,328,16,D51,Toronto,77,Waterfront Communities-The Island (77),Convenience Stores,Commercial,OT,"2,0",SC,1,BLK,500.0,STOLEN,13766,"{'type': 'Point', 'coordinates': (-79.37572376, 43.64746036)}"
-13818,10811,GO-20159010170,THEFT UNDER,2015-11-11T00:00:00,2015,November,Wednesday,11,315,22,2015-11-25T00:00:00,2015,November,Wednesday,25,329,0,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,21,SIL,350.0,STOLEN,13767,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-13819,10833,GO-20152077952,THEFT OVER,2015-09-01T00:00:00,2015,September,Tuesday,1,244,0,2015-12-04T00:00:00,2015,December,Friday,4,338,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OTHER,CREATE (MAKE),OT,1,BLK,,STOLEN,13768,"{'type': 'Point', 'coordinates': (-79.395007, 43.64546954)}"
-13820,10835,GO-20159010490,THEFT UNDER,2015-11-15T00:00:00,2015,November,Sunday,15,319,20,2015-12-04T00:00:00,2015,December,Friday,4,338,15,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,GARY FISHER,MT,24,SIL,800.0,STOLEN,13769,"{'type': 'Point', 'coordinates': (-79.36592705, 43.64892655)}"
-13821,17334,GO-20209014949,THEFT UNDER,2020-06-09T00:00:00,2020,June,Tuesday,9,161,10,2020-06-09T00:00:00,2020,June,Tuesday,9,161,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GT,AVALANCHE COMP,MT,27,BLK,750.0,STOLEN,13770,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-13822,12234,GO-20169009712,THEFT UNDER - BICYCLE,2016-08-30T00:00:00,2016,August,Tuesday,30,243,16,2016-08-30T00:00:00,2016,August,Tuesday,30,243,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,INDIE 2,RG,27,GRY,1000.0,STOLEN,13771,"{'type': 'Point', 'coordinates': (-79.38946509, 43.64593813)}"
-13823,17335,GO-20209015247,THEFT UNDER,2020-06-09T00:00:00,2020,June,Tuesday,9,161,21,2020-06-12T00:00:00,2020,June,Friday,12,164,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,24,,700.0,STOLEN,13772,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-13824,12388,GO-20169010636,THEFT UNDER,2016-08-29T00:00:00,2016,August,Monday,29,242,12,2016-09-18T00:00:00,2016,September,Sunday,18,262,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,PAVE LITE,RG,24,BLK,1000.0,STOLEN,13787,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-13825,12239,GO-20161549221,THEFT UNDER - BICYCLE,2016-08-22T00:00:00,2016,August,Monday,22,235,16,2016-09-01T00:00:00,2016,September,Thursday,1,245,8,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CANNONDALE,BAD BOY 4,OT,0,,999.0,STOLEN,13773,"{'type': 'Point', 'coordinates': (-79.38994752, 43.64370303)}"
-13826,17343,GO-20201172330,B&E,2020-06-06T00:00:00,2020,June,Saturday,6,158,12,2020-06-25T00:00:00,2020,June,Thursday,25,177,20,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,LOUIS GARNEAU,AXELLE,RC,18,WHI,1100.0,STOLEN,13774,"{'type': 'Point', 'coordinates': (-79.40138212, 43.64074836)}"
-13827,12266,GO-20169009991,THEFT UNDER,2016-09-02T00:00:00,2016,September,Friday,2,246,18,2016-09-05T00:00:00,2016,September,Monday,5,249,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,,RG,24,BLK,600.0,STOLEN,13775,"{'type': 'Point', 'coordinates': (-79.38684132, 43.64925417)}"
-13828,17346,GO-20209016509,THEFT UNDER,2020-06-26T00:00:00,2020,June,Friday,26,178,22,2020-06-29T00:00:00,2020,June,Monday,29,181,22,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,21,WHI,0.0,STOLEN,13776,"{'type': 'Point', 'coordinates': (-79.39924205, 43.63909783)}"
-13829,12273,GO-20169010054,THEFT UNDER - BICYCLE,2016-09-06T00:00:00,2016,September,Tuesday,6,250,13,2016-09-06T00:00:00,2016,September,Tuesday,6,250,15,D52,Toronto,77,Waterfront Communities-The Island (77),Convenience Stores,Commercial,OT,MODENA,RG,6,BLU,400.0,STOLEN,13777,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-13830,17362,GO-20209018671,THEFT UNDER,2020-07-26T00:00:00,2020,July,Sunday,26,208,19,2020-07-27T00:00:00,2020,July,Monday,27,209,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,700C KROSSROADS,MT,21,BLU,280.0,STOLEN,13778,"{'type': 'Point', 'coordinates': (-79.39296466, 43.64056148000001)}"
-13831,12315,GO-20169010244,THEFT OF EBIKE UNDER $5000,2016-09-09T00:00:00,2016,September,Friday,9,253,20,2016-09-10T00:00:00,2016,September,Saturday,10,254,16,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ST1,EL,30,WHI,3000.0,STOLEN,13779,"{'type': 'Point', 'coordinates': (-79.39578994, 43.64739695)}"
-13832,12317,GO-20169010275,THEFT UNDER - BICYCLE,2016-09-10T00:00:00,2016,September,Saturday,10,254,18,2016-09-11T00:00:00,2016,September,Sunday,11,255,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RE,CONQUESTPRO CYC,OT,21,RED,1000.0,STOLEN,13780,"{'type': 'Point', 'coordinates': (-79.38973372, 43.6466028)}"
-13833,12328,GO-20161627489,THEFT UNDER - BICYCLE,2016-09-12T00:00:00,2016,September,Monday,12,256,21,2016-09-13T00:00:00,2016,September,Tuesday,13,257,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNIVUGA,MONTEGA,RG,18,PLE,500.0,STOLEN,13781,"{'type': 'Point', 'coordinates': (-79.39184935, 43.63765238)}"
-13834,12332,GO-20169010395,THEFT UNDER,2016-09-13T00:00:00,2016,September,Tuesday,13,257,19,2016-09-13T00:00:00,2016,September,Tuesday,13,257,19,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,NOT KNOWN,RG,8,BGE,0.0,STOLEN,13782,"{'type': 'Point', 'coordinates': (-79.37134522, 43.64305948)}"
-13835,12358,GO-20169010532,THEFT UNDER - BICYCLE,2016-09-14T00:00:00,2016,September,Wednesday,14,258,15,2016-09-16T00:00:00,2016,September,Friday,16,260,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SC,,MT,20,RED,432.0,STOLEN,13783,"{'type': 'Point', 'coordinates': (-79.40005716, 43.64445256)}"
-13836,12370,GO-20169010602,THEFT UNDER - BICYCLE,2016-08-27T00:00:00,2016,August,Saturday,27,240,14,2016-09-17T00:00:00,2016,September,Saturday,17,261,17,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,MARLIN 5,MT,21,BLK,450.0,STOLEN,13784,"{'type': 'Point', 'coordinates': (-79.40372116, 43.64647061)}"
-13837,12374,GO-20169010619,THEFT UNDER,2016-09-17T00:00:00,2016,September,Saturday,17,261,12,2016-09-18T00:00:00,2016,September,Sunday,18,262,1,D52,Toronto,77,Waterfront Communities-The Island (77),Unknown,Other,UK,,RG,30,RED,0.0,STOLEN,13785,"{'type': 'Point', 'coordinates': (-79.38091602, 43.64168463)}"
-13838,12377,GO-20161654951,THEFT UNDER - BICYCLE,2016-09-15T00:00:00,2016,September,Thursday,15,259,22,2016-09-17T00:00:00,2016,September,Saturday,17,261,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,OT,0,ONG,,STOLEN,13786,"{'type': 'Point', 'coordinates': (-79.39184935, 43.63765238)}"
-13839,12389,GO-20169010666,THEFT UNDER,2016-09-18T00:00:00,2016,September,Sunday,18,262,13,2016-09-18T00:00:00,2016,September,Sunday,18,262,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,KO,HOSS,MT,9,BLU,900.0,STOLEN,13788,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-13840,12392,GO-20169010702,THEFT UNDER - BICYCLE,2016-09-15T00:00:00,2016,September,Thursday,15,259,21,2016-09-19T00:00:00,2016,September,Monday,19,263,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,NITRO XT,MT,21,BLK,180.0,STOLEN,13789,"{'type': 'Point', 'coordinates': (-79.39558819, 43.63994429)}"
-13841,12412,GO-20161677087,THEFT UNDER - BICYCLE,2016-09-20T00:00:00,2016,September,Tuesday,20,264,18,2016-09-20T00:00:00,2016,September,Tuesday,20,264,21,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,,MT,6,GRY,560.0,STOLEN,13790,"{'type': 'Point', 'coordinates': (-79.395007, 43.64546954)}"
-13842,12420,GO-20169010874,THEFT UNDER,2016-09-18T00:00:00,2016,September,Sunday,18,262,10,2016-09-21T00:00:00,2016,September,Wednesday,21,265,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,RADICAL,RC,22,RED,2850.0,STOLEN,13791,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-13843,12428,GO-20169010926,THEFT UNDER,2016-09-22T00:00:00,2016,September,Thursday,22,266,14,2016-09-22T00:00:00,2016,September,Thursday,22,266,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,DIVERGE ELITE D,RC,22,BLK,2260.0,STOLEN,13792,"{'type': 'Point', 'coordinates': (-79.37778379, 43.6430065)}"
-13844,12459,GO-20161712876,THEFT UNDER,2016-09-24T00:00:00,2016,September,Saturday,24,268,16,2016-09-26T00:00:00,2016,September,Monday,26,270,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,JAMIS,,MT,21,BLKRED,550.0,STOLEN,13793,"{'type': 'Point', 'coordinates': (-79.39388892, 43.64273773)}"
-13845,12468,GO-20169011172,B&E,2016-09-26T00:00:00,2016,September,Monday,26,270,23,2016-09-27T00:00:00,2016,September,Tuesday,27,271,10,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,BLK,1300.0,STOLEN,13794,"{'type': 'Point', 'coordinates': (-79.35677669, 43.6529262)}"
-13846,12519,GO-20161744112,THEFT UNDER - BICYCLE,2016-10-01T00:00:00,2016,October,Saturday,1,275,8,2016-10-01T00:00:00,2016,October,Saturday,1,275,8,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CERVELO,TIME TRIAL,RC,22,WHI,4000.0,STOLEN,13795,"{'type': 'Point', 'coordinates': (-79.3922993, 43.63874701)}"
-13847,12521,GO-20169011391,THEFT UNDER - BICYCLE,2016-09-30T00:00:00,2016,September,Friday,30,274,7,2016-10-01T00:00:00,2016,October,Saturday,1,275,10,D52,Toronto,77,Waterfront Communities-The Island (77),Go Station,Transit,CC,,RG,4,BLU,200.0,STOLEN,13796,"{'type': 'Point', 'coordinates': (-79.37646324, 43.64578351)}"
-13848,12523,GO-20169011409,THEFT UNDER - BICYCLE,2016-09-30T00:00:00,2016,September,Friday,30,274,12,2016-10-01T00:00:00,2016,October,Saturday,1,275,14,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,CROSSRIP COMP,OT,24,BLK,1100.0,STOLEN,13797,"{'type': 'Point', 'coordinates': (-79.35795114, 43.65265813)}"
-13849,12537,GO-20169011470,THEFT UNDER - BICYCLE,2016-09-12T00:00:00,2016,September,Monday,12,256,7,2016-10-03T00:00:00,2016,October,Monday,3,277,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,RENEGADE EXPAT,TO,18,BLK,2050.0,STOLEN,13798,"{'type': 'Point', 'coordinates': (-79.38888568, 43.64881159)}"
-13850,12538,GO-20169011470,THEFT UNDER - BICYCLE,2016-09-12T00:00:00,2016,September,Monday,12,256,7,2016-10-03T00:00:00,2016,October,Monday,3,277,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,STUMPJUMPER,MT,27,SIL,2500.0,STOLEN,13799,"{'type': 'Point', 'coordinates': (-79.38888568, 43.64881159)}"
-13851,12584,GO-20161802203,THEFT UNDER - BICYCLE,2016-10-10T00:00:00,2016,October,Monday,10,284,12,2016-10-10T00:00:00,2016,October,Monday,10,284,13,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,PHANTOM,MT,18,ONG,260.0,STOLEN,13800,"{'type': 'Point', 'coordinates': (-79.36122557, 43.6519136)}"
-13852,12593,GO-20169011902,THEFT UNDER,2016-10-07T00:00:00,2016,October,Friday,7,281,18,2016-10-11T00:00:00,2016,October,Tuesday,11,285,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,FO,6,RED,0.0,STOLEN,13801,"{'type': 'Point', 'coordinates': (-79.39668944, 43.63667003)}"
-13853,12614,GO-20161829333,B&E,2016-10-14T00:00:00,2016,October,Friday,14,288,10,2016-10-14T00:00:00,2016,October,Friday,14,288,16,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TREK,,MT,6,RED,5000.0,STOLEN,13803,"{'type': 'Point', 'coordinates': (-79.37302563, 43.64248042)}"
-13854,12617,GO-20161834280,THEFT UNDER - SHOPLIFTING,2016-10-15T00:00:00,2016,October,Saturday,15,289,10,2016-10-15T00:00:00,2016,October,Saturday,15,289,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,GARNEAU,MT,7,BLKGRY,650.0,UNKNOWN,13804,"{'type': 'Point', 'coordinates': (-79.40196209, 43.64761228)}"
-13855,12618,GO-20161833949,THEFT UNDER - BICYCLE,2016-10-15T00:00:00,2016,October,Saturday,15,289,9,2016-10-15T00:00:00,2016,October,Saturday,15,289,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,PCR,RG,21,BLK,2000.0,STOLEN,13805,"{'type': 'Point', 'coordinates': (-79.39832559, 43.63567355)}"
-13856,12620,GO-20161835690,THEFT UNDER - BICYCLE,2016-10-15T00:00:00,2016,October,Saturday,15,289,14,2016-10-15T00:00:00,2016,October,Saturday,15,289,16,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,,RG,3,GRN,750.0,STOLEN,13806,"{'type': 'Point', 'coordinates': (-79.37016364, 43.6456614)}"
-13857,12625,GO-20169012098,THEFT UNDER - BICYCLE,2016-10-13T00:00:00,2016,October,Thursday,13,287,23,2016-10-15T00:00:00,2016,October,Saturday,15,289,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,,OT,3,,500.0,STOLEN,13807,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-13858,12633,GO-20169012224,THEFT UNDER - BICYCLE,2016-09-06T00:00:00,2016,September,Tuesday,6,250,8,2016-10-18T00:00:00,2016,October,Tuesday,18,292,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MA,,OT,21,SIL,1000.0,STOLEN,13808,"{'type': 'Point', 'coordinates': (-79.3922993, 43.63874701)}"
-13859,12634,GO-20169012224,THEFT UNDER - BICYCLE,2016-09-06T00:00:00,2016,September,Tuesday,6,250,8,2016-10-18T00:00:00,2016,October,Tuesday,18,292,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MA,,OT,21,SIL,1000.0,STOLEN,13809,"{'type': 'Point', 'coordinates': (-79.3922993, 43.63874701)}"
-13860,12638,GO-20169012261,THEFT UNDER,2016-10-18T00:00:00,2016,October,Tuesday,18,292,8,2016-10-18T00:00:00,2016,October,Tuesday,18,292,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,GAZETTA,RG,16,BLU,1525.0,STOLEN,13810,"{'type': 'Point', 'coordinates': (-79.39578994, 43.64739695)}"
-13861,12643,GO-20169012326,THEFT UNDER - BICYCLE,2016-10-19T00:00:00,2016,October,Wednesday,19,293,19,2016-10-19T00:00:00,2016,October,Wednesday,19,293,21,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,16 INDIE 4 BLAC,RG,9,BLK,747.0,STOLEN,13811,"{'type': 'Point', 'coordinates': (-79.35713011, 43.65083215)}"
-13862,12650,GO-20169012335,THEFT UNDER,2016-10-12T00:00:00,2016,October,Wednesday,12,286,9,2016-10-20T00:00:00,2016,October,Thursday,20,294,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,,RC,18,BLK,2500.0,STOLEN,13812,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-13863,12659,GO-20169012404,THEFT UNDER,2016-09-01T00:00:00,2016,September,Thursday,1,245,12,2016-10-21T00:00:00,2016,October,Friday,21,295,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,6000 DISK19.5 B,MT,10,BLK,949.0,STOLEN,13813,"{'type': 'Point', 'coordinates': (-79.39309998, 43.64444244)}"
-13864,12669,GO-20169012486,THEFT UNDER - BICYCLE,2016-10-19T00:00:00,2016,October,Wednesday,19,293,18,2016-10-23T00:00:00,2016,October,Sunday,23,297,22,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,SEDONA DX,MT,24,GRY,619.0,STOLEN,13814,"{'type': 'Point', 'coordinates': (-79.395007, 43.64546954)}"
-13865,12690,GO-20161911613,THEFT OVER,2016-09-01T00:00:00,2016,September,Thursday,1,245,0,2016-10-27T00:00:00,2016,October,Thursday,27,301,16,D51,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,DEVINCI,XTR,MT,1,RED,5000.0,STOLEN,13815,"{'type': 'Point', 'coordinates': (-79.37302563, 43.64248042)}"
-13866,12691,GO-20161911613,THEFT OVER,2016-09-01T00:00:00,2016,September,Thursday,1,245,0,2016-10-27T00:00:00,2016,October,Thursday,27,301,16,D51,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,BIANCHI,XTR,MT,1,BLKWHI,4500.0,STOLEN,13816,"{'type': 'Point', 'coordinates': (-79.37302563, 43.64248042)}"
-13867,12693,GO-20169012719,THEFT UNDER - BICYCLE,2016-10-28T00:00:00,2016,October,Friday,28,302,16,2016-10-28T00:00:00,2016,October,Friday,28,302,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,KH,,RG,1,SIL,520.0,STOLEN,13817,"{'type': 'Point', 'coordinates': (-79.39388892, 43.64273773)}"
-13868,12695,GO-20169012727,THEFT UNDER,2016-10-28T00:00:00,2016,October,Friday,28,302,18,2016-10-28T00:00:00,2016,October,Friday,28,302,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,2970,MT,30,SIL,1200.0,STOLEN,13818,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-13869,12727,GO-20161808416,B&E,2016-11-06T00:00:00,2016,November,Sunday,6,311,7,2016-11-06T00:00:00,2016,November,Sunday,6,311,7,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,ALLEGRO 1.0,OT,16,GRY,535.0,STOLEN,13819,"{'type': 'Point', 'coordinates': (-79.35713011, 43.65083215)}"
-13870,12741,GO-20169013144,THEFT UNDER - BICYCLE,2016-11-08T00:00:00,2016,November,Tuesday,8,313,15,2016-11-08T00:00:00,2016,November,Tuesday,8,313,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,JAKE,RC,11,ONG,0.0,STOLEN,13820,"{'type': 'Point', 'coordinates': (-79.3881121, 43.64696458)}"
-13871,12777,GO-20169013531,THEFT UNDER - BICYCLE,2016-11-10T00:00:00,2016,November,Thursday,10,315,16,2016-11-17T00:00:00,2016,November,Thursday,17,322,17,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,,MT,18,BLU,500.0,STOLEN,13821,"{'type': 'Point', 'coordinates': (-79.37170147, 43.64804122)}"
-13872,12778,GO-20169013543,THEFT UNDER - BICYCLE,2016-11-17T00:00:00,2016,November,Thursday,17,322,10,2016-11-17T00:00:00,2016,November,Thursday,17,322,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,WOMENS MEDIAN 2,RG,7,LBL,300.0,STOLEN,13822,"{'type': 'Point', 'coordinates': (-79.38091602, 43.64168463)}"
-13873,12819,GO-20162088519,B&E,2016-11-24T00:00:00,2016,November,Thursday,24,329,17,2016-11-24T00:00:00,2016,November,Thursday,24,329,18,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GIANT,DEVY ADVANCE 1,RC,24,BLK,4000.0,STOLEN,13823,"{'type': 'Point', 'coordinates': (-79.35849305, 43.6539059)}"
-13874,17572,GO-2019961628,B&E,2019-05-26T00:00:00,2019,May,Sunday,26,146,12,2019-05-26T00:00:00,2019,May,Sunday,26,146,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,MT,10,,2500.0,STOLEN,13866,"{'type': 'Point', 'coordinates': (-79.39934668, 43.64733861)}"
-13875,12825,GO-20169013875,THEFT UNDER - BICYCLE,2016-11-06T00:00:00,2016,November,Sunday,6,311,22,2016-11-26T00:00:00,2016,November,Saturday,26,331,11,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DB,,RG,21,,60.0,STOLEN,13824,"{'type': 'Point', 'coordinates': (-79.35677669, 43.6529262)}"
-13876,12826,GO-20162099845,THEFT UNDER - BICYCLE,2016-11-26T00:00:00,2016,November,Saturday,26,331,8,2016-11-26T00:00:00,2016,November,Saturday,26,331,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,EPIC,RC,18,OTH,1000.0,STOLEN,13825,"{'type': 'Point', 'coordinates': (-79.39025369, 43.64785592)}"
-13877,12895,GO-20189032034,THEFT UNDER,2018-09-23T00:00:00,2018,September,Sunday,23,266,18,2018-09-26T00:00:00,2018,September,Wednesday,26,269,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,COMFORT,OT,10,,800.0,STOLEN,13826,"{'type': 'Point', 'coordinates': (-79.34662225, 43.63906207)}"
-13878,13067,GO-20179009582,THEFT UNDER - BICYCLE,2017-07-05T00:00:00,2017,July,Wednesday,5,186,9,2017-07-06T00:00:00,2017,July,Thursday,6,187,11,D52,Toronto,77,Waterfront Communities-The Island (77),Unknown,Other,GT,AVALANCHE,MT,27,WHI,500.0,STOLEN,13827,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-13879,13068,GO-20179009638,THEFT UNDER,2017-07-04T00:00:00,2017,July,Tuesday,4,185,22,2017-07-07T00:00:00,2017,July,Friday,7,188,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,LANDAU,TO,12,BLK,0.0,STOLEN,13828,"{'type': 'Point', 'coordinates': (-79.3881121, 43.64696458)}"
-13880,13070,GO-20179010294,THEFT UNDER - BICYCLE,2017-07-11T00:00:00,2017,July,Tuesday,11,192,22,2017-07-15T00:00:00,2017,July,Saturday,15,196,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,TERN JOE P24,FO,27,BLK,4500.0,STOLEN,13829,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-13881,13071,GO-20179010403,THEFT UNDER,2017-07-14T00:00:00,2017,July,Friday,14,195,19,2017-07-17T00:00:00,2017,July,Monday,17,198,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,KH,FLITE 100,RC,1,BLK,700.0,STOLEN,13830,"{'type': 'Point', 'coordinates': (-79.38065193, 43.64100385)}"
-13882,13079,GO-20179011446,THEFT UNDER - BICYCLE,2017-07-29T00:00:00,2017,July,Saturday,29,210,20,2017-08-01T00:00:00,2017,August,Tuesday,1,213,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,TRANSEO,RG,21,GRY,500.0,STOLEN,13831,"{'type': 'Point', 'coordinates': (-79.395007, 43.64546954)}"
-13883,13080,GO-20179011960,THEFT UNDER - BICYCLE,2017-08-05T00:00:00,2017,August,Saturday,5,217,13,2017-08-08T00:00:00,2017,August,Tuesday,8,220,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,VFR5,RG,24,BLK,729.0,STOLEN,13832,"{'type': 'Point', 'coordinates': (-79.38243116, 43.64529171000001)}"
-13884,13081,GO-20179012140,THEFT UNDER - BICYCLE,2017-08-10T00:00:00,2017,August,Thursday,10,222,19,2017-08-10T00:00:00,2017,August,Thursday,10,222,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,8,BGE,3500.0,STOLEN,13833,"{'type': 'Point', 'coordinates': (-79.39388892, 43.64273773)}"
-13885,13088,GO-20179012591,THEFT UNDER - BICYCLE,2017-08-16T00:00:00,2017,August,Wednesday,16,228,19,2017-08-16T00:00:00,2017,August,Wednesday,16,228,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,MT,20,BLK,600.0,STOLEN,13834,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-13886,13092,GO-20179013442,THEFT UNDER,2017-08-25T00:00:00,2017,August,Friday,25,237,21,2017-08-27T00:00:00,2017,August,Sunday,27,239,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SU,REPUBLIC,MT,21,BLK,0.0,STOLEN,13835,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-13887,13093,GO-20179013442,THEFT UNDER,2017-08-25T00:00:00,2017,August,Friday,25,237,21,2017-08-27T00:00:00,2017,August,Sunday,27,239,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,MA,PASS,MT,24,SIL,0.0,STOLEN,13836,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-13888,13094,GO-20179013509,THEFT UNDER,2017-08-27T00:00:00,2017,August,Sunday,27,239,13,2017-08-28T00:00:00,2017,August,Monday,28,240,15,D52,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,TR,TREK 3500,MT,21,RED,400.0,STOLEN,13837,"{'type': 'Point', 'coordinates': (-79.38396859, 43.64239001)}"
-13889,24892,GO-20159006825,THEFT UNDER,2015-09-06T00:00:00,2015,September,Sunday,6,249,13,2015-09-06T00:00:00,2015,September,Sunday,6,249,15,D52,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,CA,TRAIL 7,MT,24,BLK,678.0,STOLEN,14038,"{'type': 'Point', 'coordinates': (-79.38542345, 43.63902804)}"
-13890,13100,GO-20179014464,THEFT UNDER,2017-09-10T00:00:00,2017,September,Sunday,10,253,14,2017-09-11T00:00:00,2017,September,Monday,11,254,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,DR FINE,RG,8,BRN,500.0,STOLEN,13838,"{'type': 'Point', 'coordinates': (-79.38314772, 43.64033919)}"
-13891,13101,GO-20179014557,THEFT UNDER,2017-08-30T00:00:00,2017,August,Wednesday,30,242,8,2017-09-12T00:00:00,2017,September,Tuesday,12,255,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,DUTCHI,RG,3,LBL,1203.0,STOLEN,13839,"{'type': 'Point', 'coordinates': (-79.38338679, 43.64508285)}"
-13892,17364,GO-20209018935,THEFT UNDER,2020-07-26T00:00:00,2020,July,Sunday,26,208,17,2020-07-28T00:00:00,2020,July,Tuesday,28,210,22,D14,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,CC,,MT,7,GRY,399.0,STOLEN,13840,"{'type': 'Point', 'coordinates': (-79.40319383, 43.64519064)}"
-13893,17372,GO-20201468309,THEFT UNDER,2020-08-05T00:00:00,2020,August,Wednesday,5,218,16,2020-08-06T00:00:00,2020,August,Thursday,6,219,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KONA,DEW,OT,24,BLK,1000.0,STOLEN,13841,"{'type': 'Point', 'coordinates': (-79.39837878, 43.64832482)}"
-13894,17378,GO-20209021374,THEFT UNDER,2020-08-25T00:00:00,2020,August,Tuesday,25,238,13,2020-08-26T00:00:00,2020,August,Wednesday,26,239,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,MOSCOW,EL,32,OTH,1810.0,STOLEN,13842,"{'type': 'Point', 'coordinates': (-79.39820731, 43.64329925)}"
-13895,17389,GO-20201720244,THEFT UNDER,2020-09-06T00:00:00,2020,September,Sunday,6,250,17,2020-09-11T00:00:00,2020,September,Friday,11,255,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,KHS,URBAN EXPRESS,RG,12,BLK,643.0,STOLEN,13843,"{'type': 'Point', 'coordinates': (-79.39880646, 43.64142779)}"
-13896,17390,GO-20209022905,THEFT UNDER,2020-09-10T00:00:00,2020,September,Thursday,10,254,18,2020-09-10T00:00:00,2020,September,Thursday,10,254,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CC,,MT,21,,370.0,STOLEN,13844,"{'type': 'Point', 'coordinates': (-79.3922993, 43.63874701)}"
-13897,17393,GO-20201825175,B&E,2020-09-24T00:00:00,2020,September,Thursday,24,268,21,2020-09-25T00:00:00,2020,September,Friday,25,269,22,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,STROMER,ST1,EL,1,WHI,2913.0,STOLEN,13845,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-13898,17394,GO-20209024560,THEFT UNDER,2020-09-25T00:00:00,2020,September,Friday,25,269,17,2020-09-25T00:00:00,2020,September,Friday,25,269,20,D14,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,2015 AXIS SL3,RG,18,BLK,1000.0,STOLEN,13846,"{'type': 'Point', 'coordinates': (-79.39820731, 43.64329925)}"
-13899,17400,GO-20201942391,B&E,2020-10-13T00:00:00,2020,October,Tuesday,13,287,3,2020-10-13T00:00:00,2020,October,Tuesday,13,287,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GIANT,RAPID,TO,21,GRY,2499.0,STOLEN,13847,"{'type': 'Point', 'coordinates': (-79.40185545, 43.64191381)}"
-13900,17410,GO-20202207469,THEFT UNDER,2020-11-21T00:00:00,2020,November,Saturday,21,326,13,2020-11-21T00:00:00,2020,November,Saturday,21,326,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,ROSCOE 6,MT,6,BLK,1500.0,STOLEN,13848,"{'type': 'Point', 'coordinates': (-79.40372116, 43.64647061)}"
-13901,17412,GO-20209030746,THEFT UNDER,2020-11-21T00:00:00,2020,November,Saturday,21,326,17,2020-11-27T00:00:00,2020,November,Friday,27,332,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,SKYWAY,RG,1,BLK,550.0,STOLEN,13849,"{'type': 'Point', 'coordinates': (-79.39737512, 43.64853707)}"
-13902,17414,GO-20209031195,THEFT UNDER,2020-11-25T00:00:00,2020,November,Wednesday,25,330,15,2020-12-03T00:00:00,2020,December,Thursday,3,338,20,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,CHARGER 2017,MT,20,OTH,1200.0,STOLEN,13850,"{'type': 'Point', 'coordinates': (-79.40196209, 43.64761228)}"
-13903,17441,GO-20149004287,THEFT UNDER,2014-06-20T00:00:00,2014,June,Friday,20,171,13,2014-06-21T00:00:00,2014,June,Saturday,21,172,8,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,TO,15,GRY,2200.0,STOLEN,13851,"{'type': 'Point', 'coordinates': (-79.36616846, 43.64421276)}"
-13904,5545,GO-20199034352,THEFT UNDER,2019-10-12T00:00:00,2019,October,Saturday,12,285,13,2019-10-18T00:00:00,2019,October,Friday,18,291,13,D43,Toronto,135,Morningside (135),Bar / Restaurant,Commercial,UK,,MT,24,BLK,0.0,STOLEN,25462,"{'type': 'Point', 'coordinates': (-79.2049343, 43.78259962)}"
-13905,17442,GO-20149004426,THEFT UNDER,2014-06-24T00:00:00,2014,June,Tuesday,24,175,13,2014-06-25T00:00:00,2014,June,Wednesday,25,176,10,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,MERANO,MT,24,SIL,200.0,STOLEN,13852,"{'type': 'Point', 'coordinates': (-79.37302563, 43.64248042)}"
-13906,17449,GO-20149004971,THEFT UNDER,2014-07-11T00:00:00,2014,July,Friday,11,192,18,2014-07-14T00:00:00,2014,July,Monday,14,195,11,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,1,,2461.0,STOLEN,13853,"{'type': 'Point', 'coordinates': (-79.37146354, 43.64763677)}"
-13907,17461,GO-20149005457,THEFT UNDER,2014-07-25T00:00:00,2014,July,Friday,25,206,15,2014-07-29T00:00:00,2014,July,Tuesday,29,210,19,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,ATX,MT,8,WHI,300.0,STOLEN,13854,"{'type': 'Point', 'coordinates': (-79.37302563, 43.64248042)}"
-13908,17463,GO-20149005548,THEFT UNDER,2014-07-31T00:00:00,2014,July,Thursday,31,212,20,2014-08-01T00:00:00,2014,August,Friday,1,213,9,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,RG,3,BLK,500.0,STOLEN,13855,"{'type': 'Point', 'coordinates': (-79.37693454, 43.64688442)}"
-13909,17469,GO-20149005855,THEFT UNDER,2014-08-04T00:00:00,2014,August,Monday,4,216,17,2014-08-14T00:00:00,2014,August,Thursday,14,226,9,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,,RC,1,GRN,,STOLEN,13856,"{'type': 'Point', 'coordinates': (-79.35971484, 43.65076046)}"
-13910,17472,GO-20149006311,THEFT UNDER,2014-08-22T00:00:00,2014,August,Friday,22,234,13,2014-08-26T00:00:00,2014,August,Tuesday,26,238,14,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KH,FLITE 350,RC,27,WHI,900.0,STOLEN,13857,"{'type': 'Point', 'coordinates': (-79.35971484, 43.65076046)}"
-13911,17474,GO-20149006243,THEFT UNDER,2014-08-23T00:00:00,2014,August,Saturday,23,235,12,2014-08-23T00:00:00,2014,August,Saturday,23,235,19,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,FX 7.2 WSD,OT,24,,700.0,STOLEN,13858,"{'type': 'Point', 'coordinates': (-79.35931384000001, 43.6498108)}"
-13912,17486,GO-20149007398,THEFT UNDER,2014-10-04T00:00:00,2014,October,Saturday,4,277,13,2014-10-04T00:00:00,2014,October,Saturday,4,277,17,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ROUBAIX,RC,16,WHI,2500.0,STOLEN,13859,"{'type': 'Point', 'coordinates': (-79.35971484, 43.65076046)}"
-13913,17490,GO-20149007876,B&E,2014-10-28T00:00:00,2014,October,Tuesday,28,301,18,2014-10-28T00:00:00,2014,October,Tuesday,28,301,22,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,29 LG BLK/CHR,TO,10,BLK,2850.0,STOLEN,13860,"{'type': 'Point', 'coordinates': (-79.35713011, 43.65083215)}"
-13914,17500,GO-20159000116,THEFT UNDER,2015-01-01T00:00:00,2015,January,Thursday,1,1,21,2015-01-07T00:00:00,2015,January,Wednesday,7,7,12,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,LETUM FIXED,RG,1,BLK,1300.0,STOLEN,13861,"{'type': 'Point', 'coordinates': (-79.35971484, 43.65076046)}"
-13915,17507,GO-20159001514,THEFT UNDER,2015-03-23T00:00:00,2015,March,Monday,23,82,14,2015-03-24T00:00:00,2015,March,Tuesday,24,83,16,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,CITY ESCAPE,RG,24,BLK,540.0,STOLEN,13862,"{'type': 'Point', 'coordinates': (-79.36350393, 43.65011016)}"
-13916,17530,GO-20189039741,THEFT UNDER - BICYCLE,2018-11-15T00:00:00,2018,November,Thursday,15,319,20,2018-11-26T00:00:00,2018,November,Monday,26,330,1,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,,OT,24,BLU,120.0,STOLEN,13863,"{'type': 'Point', 'coordinates': (-79.39330422, 43.64134268000001)}"
-13917,17538,GO-2019194610,THEFT UNDER - BICYCLE,2019-01-14T00:00:00,2019,January,Monday,14,14,19,2019-01-31T00:00:00,2019,January,Thursday,31,31,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,FASTROAD COMAX,RG,11,BLK,2300.0,STOLEN,13864,"{'type': 'Point', 'coordinates': (-79.40078712, 43.64430357)}"
-13918,17571,GO-2019961628,B&E,2019-05-26T00:00:00,2019,May,Sunday,26,146,12,2019-05-26T00:00:00,2019,May,Sunday,26,146,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TECH TEAM,9.8,MT,16,,6800.0,STOLEN,13865,"{'type': 'Point', 'coordinates': (-79.39934668, 43.64733861)}"
-13919,17575,GO-20199017318,THEFT UNDER - BICYCLE,2019-05-31T00:00:00,2019,May,Friday,31,151,9,2019-06-03T00:00:00,2019,June,Monday,3,154,21,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,EVO HYBRID BLAC,OT,21,BLK,600.0,STOLEN,13867,"{'type': 'Point', 'coordinates': (-79.39578994, 43.64739695)}"
-13920,17584,GO-20199019316,THEFT UNDER - BICYCLE,2019-06-19T00:00:00,2019,June,Wednesday,19,170,19,2019-06-19T00:00:00,2019,June,Wednesday,19,170,23,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,CROSSROADS,RG,21,BLK,620.0,STOLEN,13868,"{'type': 'Point', 'coordinates': (-79.395007, 43.64546954)}"
-13921,17592,GO-20191239063,PROPERTY - FOUND,2019-07-03T00:00:00,2019,July,Wednesday,3,184,19,2019-07-03T00:00:00,2019,July,Wednesday,3,184,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,,MT,18,GRYONG,1200.0,RECOVERED,13869,"{'type': 'Point', 'coordinates': (-79.40060972, 43.63883803)}"
-13922,17603,GO-20199022994,THEFT UNDER,2019-07-20T00:00:00,2019,July,Saturday,20,201,8,2019-07-20T00:00:00,2019,July,Saturday,20,201,9,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,21,,400.0,STOLEN,13870,"{'type': 'Point', 'coordinates': (-79.39668944, 43.63667003)}"
-13923,17606,GO-20199023162,THEFT UNDER,2019-07-21T00:00:00,2019,July,Sunday,21,202,14,2019-07-21T00:00:00,2019,July,Sunday,21,202,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,VERVE 2 WSD,RG,24,TRQ,500.0,STOLEN,13871,"{'type': 'Point', 'coordinates': (-79.39760717, 43.64495335000001)}"
-13924,17614,GO-20199024454,THEFT UNDER,2019-04-03T00:00:00,2019,April,Wednesday,3,93,20,2019-07-30T00:00:00,2019,July,Tuesday,30,211,22,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,INDIE 3,RG,21,BLU,400.0,STOLEN,13872,"{'type': 'Point', 'coordinates': (-79.39924205, 43.63909783)}"
-13925,17620,GO-20199025875,THEFT UNDER - BICYCLE,2019-08-12T00:00:00,2019,August,Monday,12,224,19,2019-08-12T00:00:00,2019,August,Monday,12,224,23,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,FRONT WHEEL,RG,24,BLK,200.0,STOLEN,13873,"{'type': 'Point', 'coordinates': (-79.40306565, 43.64488902)}"
-13926,342,GO-20179005685,THEFT UNDER,2017-05-03T00:00:00,2017,May,Wednesday,3,123,9,2017-05-03T00:00:00,2017,May,Wednesday,3,123,19,D43,Toronto,131,Rouge (131),Go Station,Transit,GI,CYPRESS LX,MT,21,GRY,800.0,STOLEN,25471,"{'type': 'Point', 'coordinates': (-79.13007497, 43.78103162)}"
-13927,17627,GO-20191599020,THEFT UNDER - BICYCLE,2019-08-06T00:00:00,2019,August,Tuesday,6,218,23,2019-08-22T00:00:00,2019,August,Thursday,22,234,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,EMMO,,EL,1,WHI,500.0,STOLEN,13874,"{'type': 'Point', 'coordinates': (-79.39558819, 43.63994429)}"
-13928,17630,GO-20199027794,THEFT UNDER - BICYCLE,2019-08-21T00:00:00,2019,August,Wednesday,21,233,22,2019-08-26T00:00:00,2019,August,Monday,26,238,20,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,BBHAE19 000013,RG,21,YEL,550.0,STOLEN,13875,"{'type': 'Point', 'coordinates': (-79.39880646, 43.64142779)}"
-13929,17654,GO-20199033836,THEFT UNDER - BICYCLE,2019-10-12T00:00:00,2019,October,Saturday,12,285,14,2019-10-14T00:00:00,2019,October,Monday,14,287,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,8,WHI,1200.0,STOLEN,13876,"{'type': 'Point', 'coordinates': (-79.3979648, 43.63940267)}"
-13930,17659,GO-20199034507,THEFT UNDER - BICYCLE,2019-10-18T00:00:00,2019,October,Friday,18,291,18,2019-10-19T00:00:00,2019,October,Saturday,19,292,21,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,8,,450.0,STOLEN,13877,"{'type': 'Point', 'coordinates': (-79.3922993, 43.63874701)}"
-13931,17708,GO-20209011768,THEFT UNDER,2020-04-18T00:00:00,2020,April,Saturday,18,109,12,2020-04-23T00:00:00,2020,April,Thursday,23,114,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,INDIE M,OT,8,BLK,450.0,STOLEN,13878,"{'type': 'Point', 'coordinates': (-79.39924205, 43.63909783)}"
-13932,17719,GO-20171542955,THEFT UNDER - BICYCLE,2017-08-25T00:00:00,2017,August,Friday,25,237,15,2017-08-26T00:00:00,2017,August,Saturday,26,238,3,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GIANT,TALON 29,MT,21,BLURED,900.0,STOLEN,13879,"{'type': 'Point', 'coordinates': (-79.39924205, 43.63909783)}"
-13933,17725,GO-20179014332,THEFT UNDER - BICYCLE,2017-09-01T00:00:00,2017,September,Friday,1,244,12,2017-09-09T00:00:00,2017,September,Saturday,9,252,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RM,2010 ELEMENT SP,MT,21,WHI,600.0,STOLEN,13880,"{'type': 'Point', 'coordinates': (-79.39833497, 43.64030158)}"
-13934,17734,GO-20179015106,THEFT UNDER - BICYCLE,2017-09-17T00:00:00,2017,September,Sunday,17,260,18,2017-09-18T00:00:00,2017,September,Monday,18,261,17,D14,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,CC,SLOPE,MT,21,BLU,750.0,STOLEN,13881,"{'type': 'Point', 'coordinates': (-79.39760717, 43.64495335000001)}"
-13935,17735,GO-20171693705,THEFT OF EBIKE UNDER $5000,2017-09-20T00:00:00,2017,September,Wednesday,20,263,6,2017-09-20T00:00:00,2017,September,Wednesday,20,263,6,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,FREEDOM,EL,7,PNK,1600.0,STOLEN,13882,"{'type': 'Point', 'coordinates': (-79.4010881, 43.64697154)}"
-13936,17749,GO-20179017572,THEFT UNDER - BICYCLE,2017-10-19T00:00:00,2017,October,Thursday,19,292,8,2017-10-19T00:00:00,2017,October,Thursday,19,292,20,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,ZEKTOR,OT,1,BLK,1200.0,STOLEN,13883,"{'type': 'Point', 'coordinates': (-79.395007, 43.64546954)}"
-13937,17753,GO-20179018576,THEFT UNDER - BICYCLE,2017-10-25T00:00:00,2017,October,Wednesday,25,298,18,2017-10-30T00:00:00,2017,October,Monday,30,303,22,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,FJ,SINGLE SPEED,OT,1,BLU,339.0,STOLEN,13884,"{'type': 'Point', 'coordinates': (-79.39795271, 43.63704773)}"
-13938,17756,GO-20171979553,THEFT UNDER - BICYCLE,2017-10-25T00:00:00,2017,October,Wednesday,25,298,12,2017-11-01T00:00:00,2017,November,Wednesday,1,305,16,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,FUJI,NEVADA 1.7,MT,10,BLK,600.0,STOLEN,13885,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-13939,17768,GO-20179020234,THEFT UNDER - BICYCLE,2017-11-20T00:00:00,2017,November,Monday,20,324,18,2017-11-21T00:00:00,2017,November,Tuesday,21,325,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,FJ,ABSOLUTE 2.1,RG,24,BLK,699.0,STOLEN,13886,"{'type': 'Point', 'coordinates': (-79.39833497, 43.64030158)}"
-13940,17786,GO-20189002271,THEFT UNDER - BICYCLE,2018-01-19T00:00:00,2018,January,Friday,19,19,19,2018-01-23T00:00:00,2018,January,Tuesday,23,23,20,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,XC RACE,MT,12,ONG,2056.0,STOLEN,13887,"{'type': 'Point', 'coordinates': (-79.40078712, 43.64430357)}"
-13941,17788,GO-20189003659,THEFT UNDER - BICYCLE,2018-02-06T00:00:00,2018,February,Tuesday,6,37,16,2018-02-06T00:00:00,2018,February,Tuesday,6,37,16,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,CONTESSA SPEEDS,RC,22,PNK,850.0,STOLEN,13888,"{'type': 'Point', 'coordinates': (-79.40306565, 43.64488902)}"
-13942,17789,GO-20189003659,THEFT UNDER - BICYCLE,2018-02-06T00:00:00,2018,February,Tuesday,6,37,16,2018-02-06T00:00:00,2018,February,Tuesday,6,37,16,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE RX SMALL,RC,20,OTH,1250.0,STOLEN,13889,"{'type': 'Point', 'coordinates': (-79.40306565, 43.64488902)}"
-13943,17791,GO-2018239851,B&E,2018-01-02T00:00:00,2018,January,Tuesday,2,2,12,2018-02-07T00:00:00,2018,February,Wednesday,7,38,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OTHER,,MT,0,BLKBLU,4000.0,STOLEN,13890,"{'type': 'Point', 'coordinates': (-79.40078712, 43.64430357)}"
-13944,17794,GO-20189007610,B&E,2018-03-02T00:00:00,2018,March,Friday,2,61,15,2018-03-11T00:00:00,2018,March,Sunday,11,70,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CA,,RC,9,,2200.0,STOLEN,13891,"{'type': 'Point', 'coordinates': (-79.3922993, 43.63874701)}"
-13945,17815,GO-20189016381,THEFT UNDER,2018-05-26T00:00:00,2018,May,Saturday,26,146,20,2018-05-27T00:00:00,2018,May,Sunday,27,147,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,,RG,1,,300.0,STOLEN,13892,"{'type': 'Point', 'coordinates': (-79.39592984, 43.64780696)}"
-13946,17817,GO-20189016636,THEFT UNDER - BICYCLE,2018-05-21T00:00:00,2018,May,Monday,21,141,11,2018-05-29T00:00:00,2018,May,Tuesday,29,149,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,HARD ROCK,MT,18,BLK,600.0,STOLEN,13893,"{'type': 'Point', 'coordinates': (-79.3922993, 43.63874701)}"
-13947,17832,GO-20189018970,THEFT UNDER,2018-06-16T00:00:00,2018,June,Saturday,16,167,15,2018-06-16T00:00:00,2018,June,Saturday,16,167,17,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,,MT,18,GRN,550.0,STOLEN,13894,"{'type': 'Point', 'coordinates': (-79.40372116, 43.64647061)}"
-13948,17841,GO-20189020087,THEFT UNDER - BICYCLE,2018-06-24T00:00:00,2018,June,Sunday,24,175,11,2018-06-24T00:00:00,2018,June,Sunday,24,175,20,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NO,,RG,6,GRN,600.0,STOLEN,13895,"{'type': 'Point', 'coordinates': (-79.39880646, 43.64142779)}"
-13949,17842,GO-20189020113,THEFT UNDER - BICYCLE,2018-06-23T00:00:00,2018,June,Saturday,23,174,10,2018-06-25T00:00:00,2018,June,Monday,25,176,9,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,OT,1,RED,400.0,STOLEN,13896,"{'type': 'Point', 'coordinates': (-79.39958821, 43.64593284)}"
-13950,17844,GO-20189020350,B&E,2018-06-10T00:00:00,2018,June,Sunday,10,161,0,2018-06-26T00:00:00,2018,June,Tuesday,26,177,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,SECTEUR ELITE D,RC,20,BLK,3000.0,STOLEN,13897,"{'type': 'Point', 'coordinates': (-79.4023568, 43.64319258)}"
-13951,10836,GO-20159010492,THEFT UNDER,2015-11-19T00:00:00,2015,November,Thursday,19,323,16,2015-12-04T00:00:00,2015,December,Friday,4,338,13,D52,Toronto,77,Waterfront Communities-The Island (77),Convenience Stores,Commercial,UK,,EL,12,,1200.0,STOLEN,13898,"{'type': 'Point', 'coordinates': (-79.39458503, 43.64442176)}"
-13952,10866,GO-20159010888,THEFT UNDER,2015-12-13T00:00:00,2015,December,Sunday,13,347,19,2015-12-13T00:00:00,2015,December,Sunday,13,347,20,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,DEFY 2,RC,10,BLK,1700.0,STOLEN,13899,"{'type': 'Point', 'coordinates': (-79.37524509, 43.64636121)}"
-13953,10875,GO-20152150802,THEFT UNDER,2015-12-15T00:00:00,2015,December,Tuesday,15,349,19,2015-12-15T00:00:00,2015,December,Tuesday,15,349,20,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,OT,21,BLKYEL,1000.0,STOLEN,13900,"{'type': 'Point', 'coordinates': (-79.37134522, 43.64305948)}"
-13954,10884,GO-20159011159,B&E,2015-12-15T00:00:00,2015,December,Tuesday,15,349,11,2015-12-20T00:00:00,2015,December,Sunday,20,354,20,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,FELT SRD 72,RC,21,DBL,1000.0,STOLEN,13901,"{'type': 'Point', 'coordinates': (-79.37524509, 43.64636121)}"
-13955,10926,GO-20169000444,THEFT UNDER - SHOPLIFTING,2016-01-01T00:00:00,2016,January,Friday,1,1,17,2016-01-13T00:00:00,2016,January,Wednesday,13,13,11,D51,Toronto,77,Waterfront Communities-The Island (77),Convenience Stores,Commercial,UK,,EL,1,BLK,888.0,STOLEN,13902,"{'type': 'Point', 'coordinates': (-79.37572376, 43.64746036)}"
-13956,10932,GO-20169000615,THEFT UNDER,2016-01-16T00:00:00,2016,January,Saturday,16,16,22,2016-01-18T00:00:00,2016,January,Monday,18,18,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,24,BLK,300.0,STOLEN,13903,"{'type': 'Point', 'coordinates': (-79.39124574, 43.64342012)}"
-13957,10937,GO-2016124179,THEFT UNDER,2015-11-15T00:00:00,2015,November,Sunday,15,319,18,2016-01-21T00:00:00,2016,January,Thursday,21,21,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SCOTT,SCALE 20,MT,30,BLK,2500.0,STOLEN,13904,"{'type': 'Point', 'coordinates': (-79.38091602, 43.64168463)}"
-13958,10951,GO-20169000813,THEFT UNDER,2016-01-25T00:00:00,2016,January,Monday,25,25,17,2016-01-25T00:00:00,2016,January,Monday,25,25,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,WOMEN'S CITY BI,RG,12,TRQ,1000.0,STOLEN,13905,"{'type': 'Point', 'coordinates': (-79.39175463, 43.64474761000001)}"
-13959,10966,GO-2016203949,THEFT UNDER,2016-02-02T00:00:00,2016,February,Tuesday,2,33,9,2016-02-03T00:00:00,2016,February,Wednesday,3,34,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,GT,,MT,21,BLK,200.0,STOLEN,13906,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-13960,10995,GO-20169001463,B&E,2016-02-15T00:00:00,2016,February,Monday,15,46,15,2016-02-16T00:00:00,2016,February,Tuesday,16,47,23,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,DOLCE C2,RC,10,BLK,850.0,STOLEN,13907,"{'type': 'Point', 'coordinates': (-79.37524509, 43.64636121)}"
-13961,11015,GO-20169001794,THEFT UNDER,2016-02-25T00:00:00,2016,February,Thursday,25,56,20,2016-02-26T00:00:00,2016,February,Friday,26,57,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,,RC,10,WHI,1800.0,STOLEN,13908,"{'type': 'Point', 'coordinates': (-79.38946509, 43.64593813)}"
-13962,11068,GO-20169002591,THEFT UNDER,2016-02-15T00:00:00,2016,February,Monday,15,46,9,2016-03-20T00:00:00,2016,March,Sunday,20,80,21,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,S3,RC,21,BLK,3000.0,STOLEN,13909,"{'type': 'Point', 'coordinates': (-79.37374694, 43.64844177)}"
-13963,11085,GO-20169002916,THEFT UNDER - BICYCLE,2016-03-30T00:00:00,2016,March,Wednesday,30,90,9,2016-03-30T00:00:00,2016,March,Wednesday,30,90,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,RZR 500+ LITHIU,EL,1,BLK,1500.0,STOLEN,13910,"{'type': 'Point', 'coordinates': (-79.38243116, 43.64529171000001)}"
-13964,7992,GO-20149003644,THEFT UNDER,2014-05-26T00:00:00,2014,May,Monday,26,146,22,2014-05-27T00:00:00,2014,May,Tuesday,27,147,19,D52,Toronto,79,University (79),Universities / Colleges,Educational,OT,ABOUT TOWN,OT,24,LBL,500.0,STOLEN,15934,"{'type': 'Point', 'coordinates': (-79.39894426, 43.66543776)}"
-13965,11095,GO-20169003036,THEFT UNDER,2016-01-09T00:00:00,2016,January,Saturday,9,9,20,2016-04-03T00:00:00,2016,April,Sunday,3,94,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MASI FIXED RISE,OT,1,BLU,680.0,STOLEN,13911,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-13966,11129,GO-2016617604,THEFT UNDER - BICYCLE,2016-04-10T00:00:00,2016,April,Sunday,10,101,12,2016-04-11T00:00:00,2016,April,Monday,11,102,20,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GIANT,,MT,18,,800.0,STOLEN,13912,"{'type': 'Point', 'coordinates': (-79.39882641, 43.63812175)}"
-13967,11133,GO-20169003368,THEFT UNDER - BICYCLE,2016-04-12T00:00:00,2016,April,Tuesday,12,103,18,2016-04-13T00:00:00,2016,April,Wednesday,13,104,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,ELECTRIC SCOOTE,EL,32,WHI,3000.0,STOLEN,13913,"{'type': 'Point', 'coordinates': (-79.40332976, 43.64551526)}"
-13968,11134,GO-2016628739,THEFT UNDER,2016-04-12T00:00:00,2016,April,Tuesday,12,103,18,2016-04-13T00:00:00,2016,April,Wednesday,13,104,14,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,SC,1,WHI,3500.0,STOLEN,13914,"{'type': 'Point', 'coordinates': (-79.40332976, 43.64551526)}"
-13969,11136,GO-20169003393,THEFT UNDER - BICYCLE,2016-04-13T00:00:00,2016,April,Wednesday,13,104,23,2016-04-14T00:00:00,2016,April,Thursday,14,105,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,INDIE 4,RG,24,BLK,680.0,STOLEN,13915,"{'type': 'Point', 'coordinates': (-79.38065193, 43.64100385)}"
-13970,11164,GO-20169003625,THEFT UNDER - BICYCLE,2016-04-20T00:00:00,2016,April,Wednesday,20,111,13,2016-04-20T00:00:00,2016,April,Wednesday,20,111,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,,MT,21,SIL,1000.0,STOLEN,13916,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-13971,11178,GO-20169003686,THEFT UNDER - BICYCLE,2016-04-21T00:00:00,2016,April,Thursday,21,112,20,2016-04-22T00:00:00,2016,April,Friday,22,113,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,820,MT,21,BLK,441.0,STOLEN,13917,"{'type': 'Point', 'coordinates': (-79.39388892, 43.64273773)}"
-13972,11188,GO-2016701851,B&E,2016-04-24T00:00:00,2016,April,Sunday,24,115,13,2016-04-25T00:00:00,2016,April,Monday,25,116,2,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,UNKNOWN,RG,21,BLK,900.0,STOLEN,13918,"{'type': 'Point', 'coordinates': (-79.39974525, 43.64372459)}"
-13973,11198,GO-20169003815,THEFT UNDER,2016-04-24T00:00:00,2016,April,Sunday,24,115,11,2016-04-25T00:00:00,2016,April,Monday,25,116,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,GRATER 1,RG,8,BLK,700.0,STOLEN,13919,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-13974,11203,GO-20169003835,THEFT UNDER - BICYCLE,2016-04-25T00:00:00,2016,April,Monday,25,116,8,2016-04-26T00:00:00,2016,April,Tuesday,26,117,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,3 SPEED,RG,3,BLK,800.0,STOLEN,13920,"{'type': 'Point', 'coordinates': (-79.3883628, 43.64757108)}"
-13975,11214,GO-20169003889,THEFT UNDER,2016-04-27T00:00:00,2016,April,Wednesday,27,118,8,2016-04-27T00:00:00,2016,April,Wednesday,27,118,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,GTX-2 700C DS,OT,21,RED,500.0,STOLEN,13921,"{'type': 'Point', 'coordinates': (-79.39204821, 43.64885072)}"
-13976,11220,GO-20169003904,THEFT UNDER,2016-04-27T00:00:00,2016,April,Wednesday,27,118,13,2016-04-28T00:00:00,2016,April,Thursday,28,119,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,GI,REVEL 2,MT,24,BLU,550.0,STOLEN,13922,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-13977,11227,GO-20169003971,THEFT UNDER - BICYCLE,2016-04-28T00:00:00,2016,April,Thursday,28,119,19,2016-04-30T00:00:00,2016,April,Saturday,30,121,1,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SU,8208-34,RG,7,BLU,300.0,STOLEN,13923,"{'type': 'Point', 'coordinates': (-79.39795271, 43.63704773)}"
-13978,11232,GO-20169004002,THEFT UNDER,2016-05-01T00:00:00,2016,May,Sunday,1,122,0,2016-05-01T00:00:00,2016,May,Sunday,1,122,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,SOLARIS,MT,18,GRY,207.0,STOLEN,13924,"{'type': 'Point', 'coordinates': (-79.38946509, 43.64593813)}"
-13979,11283,GO-2016804033,THEFT UNDER,2016-05-09T00:00:00,2016,May,Monday,9,130,23,2016-05-10T00:00:00,2016,May,Tuesday,10,131,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,METROPOLIS,MT,1,BLK,1100.0,UNKNOWN,13925,"{'type': 'Point', 'coordinates': (-79.39184935, 43.63765238)}"
-13980,11290,GO-2016808963,THEFT UNDER,2016-04-22T00:00:00,2016,April,Friday,22,113,9,2016-05-11T00:00:00,2016,May,Wednesday,11,132,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,LOUIS GARNEAU,DEVILLE VALENCI,OT,21,REDWHI,600.0,STOLEN,13926,"{'type': 'Point', 'coordinates': (-79.39832559, 43.63567355)}"
-13981,11291,GO-20169004389,THEFT UNDER,2016-05-10T00:00:00,2016,May,Tuesday,10,131,12,2016-05-11T00:00:00,2016,May,Wednesday,11,132,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,TALON,MT,18,BLK,1700.0,STOLEN,13927,"{'type': 'Point', 'coordinates': (-79.38867784, 43.64396864)}"
-13982,11292,GO-2016809139,THEFT UNDER - BICYCLE,2016-05-09T00:00:00,2016,May,Monday,9,130,19,2016-05-11T00:00:00,2016,May,Wednesday,11,132,16,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,CIRRUS,RC,24,SIL,500.0,STOLEN,13928,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-13983,11293,GO-2016811793,THEFT UNDER - BICYCLE,2016-05-10T00:00:00,2016,May,Tuesday,10,131,19,2016-05-11T00:00:00,2016,May,Wednesday,11,132,20,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GT,AVALANCHE,MT,24,WHI,600.0,STOLEN,13929,"{'type': 'Point', 'coordinates': (-79.35677669, 43.6529262)}"
-13984,11294,GO-2016811793,THEFT UNDER - BICYCLE,2016-05-10T00:00:00,2016,May,Tuesday,10,131,19,2016-05-11T00:00:00,2016,May,Wednesday,11,132,20,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CARRERA,,OT,21,BLKYEL,1200.0,STOLEN,13930,"{'type': 'Point', 'coordinates': (-79.35677669, 43.6529262)}"
-13985,11295,GO-2016811793,THEFT UNDER - BICYCLE,2016-05-10T00:00:00,2016,May,Tuesday,10,131,19,2016-05-11T00:00:00,2016,May,Wednesday,11,132,20,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,ROCK HOPPER,MT,24,BLKSIL,,STOLEN,13931,"{'type': 'Point', 'coordinates': (-79.35677669, 43.6529262)}"
-13986,11299,GO-2016817655,THEFT UNDER - BICYCLE,2016-05-12T00:00:00,2016,May,Thursday,12,133,12,2016-05-12T00:00:00,2016,May,Thursday,12,133,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NEXT,CLIFFHANGER,RG,12,BLK,410.0,STOLEN,13932,"{'type': 'Point', 'coordinates': (-79.38914103, 43.64945651)}"
-13987,11332,GO-20169004690,THEFT UNDER,2016-05-17T00:00:00,2016,May,Tuesday,17,138,16,2016-05-18T00:00:00,2016,May,Wednesday,18,139,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RG,21,DGR,300.0,STOLEN,13933,"{'type': 'Point', 'coordinates': (-79.39410409, 43.64705106)}"
-13988,11341,GO-20169004745,THEFT UNDER,2016-05-19T00:00:00,2016,May,Thursday,19,140,8,2016-05-20T00:00:00,2016,May,Friday,20,141,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,SKU 85114-204,TO,21,GRY,800.0,STOLEN,13934,"{'type': 'Point', 'coordinates': (-79.3883628, 43.64757108)}"
-13989,11346,GO-2016867075,THEFT OF EBIKE UNDER $5000,2016-03-01T00:00:00,2016,March,Tuesday,1,61,9,2016-05-20T00:00:00,2016,May,Friday,20,141,8,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,EMMO,,EL,3,ONG,,STOLEN,13935,"{'type': 'Point', 'coordinates': (-79.39558819, 43.63994429)}"
-13990,11348,GO-20169004765,THEFT UNDER,2016-05-21T00:00:00,2016,May,Saturday,21,142,15,2016-05-21T00:00:00,2016,May,Saturday,21,142,18,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,ROAD BIKE,RG,10,BLU,150.0,STOLEN,13936,"{'type': 'Point', 'coordinates': (-79.35677669, 43.6529262)}"
-13991,11354,GO-20169004814,THEFT UNDER,2016-05-12T00:00:00,2016,May,Thursday,12,133,20,2016-05-22T00:00:00,2016,May,Sunday,22,143,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,FCR2W ROAD,RC,9,WHI,750.0,STOLEN,13937,"{'type': 'Point', 'coordinates': (-79.38396859, 43.64239001)}"
-13992,11359,GO-20169004854,THEFT UNDER,2016-05-23T00:00:00,2016,May,Monday,23,144,14,2016-05-23T00:00:00,2016,May,Monday,23,144,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,GT,,MT,18,BLU,500.0,STOLEN,13938,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-13993,17003,GO-20179019056,THEFT UNDER,2017-10-16T00:00:00,2017,October,Monday,16,289,21,2017-11-06T00:00:00,2017,November,Monday,6,310,21,D43,Toronto,131,Rouge (131),Go Station,Transit,CC,,RG,7,BLK,300.0,STOLEN,25515,"{'type': 'Point', 'coordinates': (-79.13007497, 43.78103162)}"
-13994,11371,GO-20169004923,THEFT UNDER,2016-05-23T00:00:00,2016,May,Monday,23,144,23,2016-05-24T00:00:00,2016,May,Tuesday,24,145,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,RC,8,BLK,1000.0,STOLEN,13939,"{'type': 'Point', 'coordinates': (-79.38973372, 43.6466028)}"
-13995,11394,GO-20169005040,THEFT UNDER - BICYCLE,2016-05-27T00:00:00,2016,May,Friday,27,148,19,2016-05-28T00:00:00,2016,May,Saturday,28,149,0,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,TALON,MT,21,LBL,860.0,STOLEN,13940,"{'type': 'Point', 'coordinates': (-79.3979648, 43.63940267)}"
-13996,11401,GO-20169005089,THEFT UNDER - BICYCLE,2016-05-22T00:00:00,2016,May,Sunday,22,143,12,2016-05-29T00:00:00,2016,May,Sunday,29,150,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CC,SHIMADO,MT,30,RED,650.0,STOLEN,13941,"{'type': 'Point', 'coordinates': (-79.388883, 43.64041361)}"
-13997,11411,GO-20169005148,THEFT UNDER - BICYCLE,2016-05-30T00:00:00,2016,May,Monday,30,151,17,2016-05-30T00:00:00,2016,May,Monday,30,151,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ST TROPEZ,OT,24,GRY,650.0,STOLEN,13942,"{'type': 'Point', 'coordinates': (-79.38914103, 43.64945651)}"
-13998,11420,GO-20169005184,THEFT UNDER,2016-05-31T00:00:00,2016,May,Tuesday,31,152,18,2016-06-01T00:00:00,2016,June,Wednesday,1,153,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,DEFY,RC,21,YEL,750.0,STOLEN,13943,"{'type': 'Point', 'coordinates': (-79.38946509, 43.64593813)}"
-13999,11421,GO-2016951177,THEFT UNDER - BICYCLE,2016-05-31T00:00:00,2016,May,Tuesday,31,152,13,2016-06-01T00:00:00,2016,June,Wednesday,1,153,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,JAMIS,VENTURA SPORT,OT,18,BLK,550.0,STOLEN,13944,"{'type': 'Point', 'coordinates': (-79.39124574, 43.64342012)}"
-14000,11425,GO-20169005225,THEFT UNDER,2016-05-23T00:00:00,2016,May,Monday,23,144,2,2016-06-01T00:00:00,2016,June,Wednesday,1,153,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,AQUILA,TO,18,BLK,0.0,STOLEN,13945,"{'type': 'Point', 'coordinates': (-79.39951371, 43.64318312)}"
-14001,23613,GO-2015992764,THEFT UNDER,2015-06-11T00:00:00,2015,June,Thursday,11,162,7,2015-06-13T00:00:00,2015,June,Saturday,13,164,15,D43,Toronto,131,Rouge (131),Go Station,Transit,GIANT,,OT,10,,600.0,STOLEN,25542,"{'type': 'Point', 'coordinates': (-79.13007497, 43.78103162)}"
-14002,11426,GO-20169005225,THEFT UNDER,2016-05-23T00:00:00,2016,May,Monday,23,144,2,2016-06-01T00:00:00,2016,June,Wednesday,1,153,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RC,21,BLK,700.0,STOLEN,13946,"{'type': 'Point', 'coordinates': (-79.39951371, 43.64318312)}"
-14003,11437,GO-2016951177,THEFT UNDER - BICYCLE,2016-05-31T00:00:00,2016,May,Tuesday,31,152,13,2016-06-01T00:00:00,2016,June,Wednesday,1,153,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,VENTURA SPORT,RC,18,BLK,508.0,STOLEN,13947,"{'type': 'Point', 'coordinates': (-79.39124574, 43.64342012)}"
-14004,11440,GO-2016969592,POSSESSION PROPERTY OBC UNDER,2016-06-04T00:00:00,2016,June,Saturday,4,156,12,2016-06-04T00:00:00,2016,June,Saturday,4,156,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,MASI,,RC,1,BLU,700.0,RECOVERED,13948,"{'type': 'Point', 'coordinates': (-79.4023568, 43.64319258)}"
-14005,11447,GO-2016970613,THEFT UNDER - BICYCLE,2016-06-04T00:00:00,2016,June,Saturday,4,156,14,2016-06-04T00:00:00,2016,June,Saturday,4,156,15,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,,OT,0,GRYBLK,800.0,STOLEN,13949,"{'type': 'Point', 'coordinates': (-79.37016364, 43.6456614)}"
-14006,11450,GO-20169005380,THEFT UNDER - BICYCLE,2016-06-04T00:00:00,2016,June,Saturday,4,156,8,2016-06-06T00:00:00,2016,June,Monday,6,158,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CRESCENDO,RC,18,WHI,4700.0,STOLEN,13950,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-14007,11451,GO-20169005374,THEFT UNDER - BICYCLE,2016-06-03T00:00:00,2016,June,Friday,3,155,15,2016-06-06T00:00:00,2016,June,Monday,6,158,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,MT,18,WHI,400.0,STOLEN,13951,"{'type': 'Point', 'coordinates': (-79.39389489, 43.64651184)}"
-14008,11452,GO-20169005378,THEFT UNDER - BICYCLE,2016-06-02T00:00:00,2016,June,Thursday,2,154,15,2016-06-06T00:00:00,2016,June,Monday,6,158,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,OT,7,SIL,369.0,STOLEN,13952,"{'type': 'Point', 'coordinates': (-79.39389489, 43.64651184)}"
-14009,11467,GO-2016985053,THEFT UNDER - BICYCLE,2016-06-06T00:00:00,2016,June,Monday,6,158,17,2016-06-06T00:00:00,2016,June,Monday,6,158,19,D51,Toronto,77,Waterfront Communities-The Island (77),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,LECERNE,RG,0,BLKSIL,400.0,STOLEN,13953,"{'type': 'Point', 'coordinates': (-79.37524509, 43.64636121)}"
-14010,11471,GO-20169005480,THEFT UNDER - BICYCLE,2016-06-08T00:00:00,2016,June,Wednesday,8,160,6,2016-06-08T00:00:00,2016,June,Wednesday,8,160,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,1971,TO,18,WHI,1000.0,STOLEN,13954,"{'type': 'Point', 'coordinates': (-79.3881121, 43.64696458)}"
-14011,11509,GO-20169005671,THEFT FROM MOTOR VEHICLE UNDER,2016-06-10T00:00:00,2016,June,Friday,10,162,12,2016-06-12T00:00:00,2016,June,Sunday,12,164,23,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,S5,RC,22,BLK,4000.0,STOLEN,13955,"{'type': 'Point', 'coordinates': (-79.38250349, 43.64061295)}"
-14012,11516,GO-20169005696,THEFT UNDER - BICYCLE,2016-06-12T00:00:00,2016,June,Sunday,12,164,20,2016-06-13T00:00:00,2016,June,Monday,13,165,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,ROMEO,RG,1,WHI,689.0,STOLEN,13956,"{'type': 'Point', 'coordinates': (-79.40185545, 43.64191381)}"
-14013,11545,GO-20169005849,THEFT UNDER - BICYCLE,2016-06-12T00:00:00,2016,June,Sunday,12,164,2,2016-06-15T00:00:00,2016,June,Wednesday,15,167,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,MARLIN 7,MT,32,BLK,1100.0,STOLEN,13957,"{'type': 'Point', 'coordinates': (-79.39153656, 43.64758619)}"
-14014,11547,GO-20169005855,THEFT UNDER - BICYCLE,2016-06-15T00:00:00,2016,June,Wednesday,15,167,17,2016-06-15T00:00:00,2016,June,Wednesday,15,167,20,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,RG,21,LBL,300.0,STOLEN,13958,"{'type': 'Point', 'coordinates': (-79.40137395, 43.64770851)}"
-14015,11558,GO-20169005889,THEFT UNDER - BICYCLE,2016-06-14T00:00:00,2016,June,Tuesday,14,166,20,2016-06-16T00:00:00,2016,June,Thursday,16,168,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RG,3,BLK,556.0,STOLEN,13959,"{'type': 'Point', 'coordinates': (-79.40137395, 43.64770851)}"
-14016,11568,GO-20169005940,THEFT UNDER - BICYCLE,2016-06-15T00:00:00,2016,June,Wednesday,15,167,8,2016-06-17T00:00:00,2016,June,Friday,17,169,20,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,12,BLK,800.0,STOLEN,13960,"{'type': 'Point', 'coordinates': (-79.35677669, 43.6529262)}"
-14017,11575,GO-20161057353,THEFT UNDER - BICYCLE,2016-06-16T00:00:00,2016,June,Thursday,16,168,20,2016-06-17T00:00:00,2016,June,Friday,17,169,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OPUS,ADAGIO,OT,8,GRY,650.0,STOLEN,13961,"{'type': 'Point', 'coordinates': (-79.39592984, 43.64780696)}"
-14018,11579,GO-20161062377,THEFT UNDER - BICYCLE,2016-06-17T00:00:00,2016,June,Friday,17,169,22,2016-06-19T00:00:00,2016,June,Sunday,19,171,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,HYBRID,OT,18,SILGRN,348.0,STOLEN,13962,"{'type': 'Point', 'coordinates': (-79.39124574, 43.64342012)}"
-14019,11580,GO-20161062377,THEFT UNDER - BICYCLE,2016-06-17T00:00:00,2016,June,Friday,17,169,22,2016-06-19T00:00:00,2016,June,Sunday,19,171,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,SOLORIS,OT,18,REDPNK,230.0,STOLEN,13963,"{'type': 'Point', 'coordinates': (-79.39124574, 43.64342012)}"
-14020,11589,GO-20169006080,THEFT UNDER,2016-06-16T00:00:00,2016,June,Thursday,16,168,18,2016-06-20T00:00:00,2016,June,Monday,20,172,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,GLOBE SPORT,TO,24,BLK,640.0,STOLEN,13964,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-14021,11606,GO-20161082141,THEFT UNDER - BICYCLE,2016-06-20T00:00:00,2016,June,Monday,20,172,16,2016-06-21T00:00:00,2016,June,Tuesday,21,173,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MERCIER,GALAXI,RG,21,WHI,700.0,STOLEN,13965,"{'type': 'Point', 'coordinates': (-79.37778379, 43.6430065)}"
-14022,11612,GO-20169006201,THEFT UNDER,2016-06-17T00:00:00,2016,June,Friday,17,169,8,2016-06-22T00:00:00,2016,June,Wednesday,22,174,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,MA,,MT,21,,0.0,STOLEN,13966,"{'type': 'Point', 'coordinates': (-79.38946509, 43.64593813)}"
-14023,11617,GO-20161093233,THEFT UNDER - BICYCLE,2016-06-22T00:00:00,2016,June,Wednesday,22,174,19,2016-06-22T00:00:00,2016,June,Wednesday,22,174,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,MALAHAT,OT,21,BLU,,STOLEN,13967,"{'type': 'Point', 'coordinates': (-79.39410409, 43.64705106)}"
-14024,11632,GO-20169006331,THEFT UNDER,2016-06-23T00:00:00,2016,June,Thursday,23,175,21,2016-06-25T00:00:00,2016,June,Saturday,25,177,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,GI,2016 ROVE 3 STE,RG,8,,650.0,STOLEN,13968,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-14025,11640,GO-20169006375,THEFT UNDER,2016-06-26T00:00:00,2016,June,Sunday,26,178,11,2016-06-26T00:00:00,2016,June,Sunday,26,178,12,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,GIANT,MT,7,SIL,250.0,STOLEN,13969,"{'type': 'Point', 'coordinates': (-79.3621013, 43.65019711)}"
-14026,11641,GO-20169006377,THEFT UNDER,2016-06-25T00:00:00,2016,June,Saturday,25,177,12,2016-06-26T00:00:00,2016,June,Sunday,26,178,12,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,BREVKELEN,RG,7,BLK,1100.0,STOLEN,13970,"{'type': 'Point', 'coordinates': (-79.37134522, 43.64305948)}"
-14027,11648,GO-20169006421,THEFT UNDER,2016-06-24T00:00:00,2016,June,Friday,24,176,8,2016-06-27T00:00:00,2016,June,Monday,27,179,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,ALPHA SL 2100,RC,14,BLU,1500.0,STOLEN,13971,"{'type': 'Point', 'coordinates': (-79.38914103, 43.64945651)}"
-14028,11656,GO-20169006479,THEFT UNDER,2016-06-26T00:00:00,2016,June,Sunday,26,178,15,2016-06-28T00:00:00,2016,June,Tuesday,28,180,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,RM,,OT,21,GRY,500.0,STOLEN,13972,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-14029,11663,GO-20169006512,THEFT UNDER,2016-06-23T00:00:00,2016,June,Thursday,23,175,20,2016-06-29T00:00:00,2016,June,Wednesday,29,181,9,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,ESCAPE 3,OT,21,GRY,420.0,STOLEN,13973,"{'type': 'Point', 'coordinates': (-79.37142509, 43.64944981)}"
-14030,11667,GO-20169006541,THEFT UNDER - BICYCLE,2016-06-26T00:00:00,2016,June,Sunday,26,178,11,2016-06-29T00:00:00,2016,June,Wednesday,29,181,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KH,ALITE 1000,MT,27,,600.0,STOLEN,13974,"{'type': 'Point', 'coordinates': (-79.38542345, 43.63902804)}"
-14031,11676,GO-20169006599,THEFT UNDER - BICYCLE,2016-06-30T00:00:00,2016,June,Thursday,30,182,11,2016-07-01T00:00:00,2016,July,Friday,1,183,0,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,TEMPO 700C,RC,10,BLU,400.0,STOLEN,13975,"{'type': 'Point', 'coordinates': (-79.38552201, 43.64605338)}"
-14032,11697,GO-20169006685,THEFT UNDER,2016-06-30T00:00:00,2016,June,Thursday,30,182,18,2016-07-04T00:00:00,2016,July,Monday,4,186,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SC,MOUNTAI BIKE W,MT,21,RED,300.0,STOLEN,13976,"{'type': 'Point', 'coordinates': (-79.39025369, 43.64785592)}"
-14033,11721,GO-20169006780,THEFT UNDER,2016-07-05T00:00:00,2016,July,Tuesday,5,187,8,2016-07-05T00:00:00,2016,July,Tuesday,5,187,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,THRIVE 1,RG,10,BLK,900.0,STOLEN,13977,"{'type': 'Point', 'coordinates': (-79.38498159, 43.64477493)}"
-14034,11759,GO-20169006984,THEFT UNDER,2016-07-10T00:00:00,2016,July,Sunday,10,192,18,2016-07-10T00:00:00,2016,July,Sunday,10,192,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,RIVER SPORT,RG,21,BLK,500.0,STOLEN,13978,"{'type': 'Point', 'coordinates': (-79.39532578, 43.64621392)}"
-14035,11779,GO-20169007102,THEFT UNDER - BICYCLE,2016-07-12T00:00:00,2016,July,Tuesday,12,194,10,2016-07-12T00:00:00,2016,July,Tuesday,12,194,19,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,REVEL 2,MT,24,LGR,500.0,STOLEN,13979,"{'type': 'Point', 'coordinates': (-79.37524509, 43.64636121)}"
-14036,11787,GO-20161206852,THEFT UNDER - BICYCLE,2016-07-09T00:00:00,2016,July,Saturday,9,191,18,2016-07-10T00:00:00,2016,July,Sunday,10,192,8,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPER CYCLE,,MT,6,BLKRED,100.0,STOLEN,13980,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-14037,11810,GO-20169007224,THEFT UNDER,2016-06-29T00:00:00,2016,June,Wednesday,29,181,16,2016-07-15T00:00:00,2016,July,Friday,15,197,17,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,CLASSICO,RG,7,BLK,649.0,STOLEN,13981,"{'type': 'Point', 'coordinates': (-79.37027555, 43.64981872)}"
-14038,11817,GO-20161256772,PROPERTY - FOUND,2016-07-17T00:00:00,2016,July,Sunday,17,199,22,2016-07-17T00:00:00,2016,July,Sunday,17,199,22,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MONGOOSE,IMPASSE 65,MT,18,GRY,,UNKNOWN,13982,"{'type': 'Point', 'coordinates': (-79.39951371, 43.64318312)}"
-14039,11826,GO-20169007302,THEFT UNDER,2016-07-16T00:00:00,2016,July,Saturday,16,198,13,2016-07-17T00:00:00,2016,July,Sunday,17,199,15,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,RA,RUSH HOUR,RG,1,SIL,590.0,STOLEN,13983,"{'type': 'Point', 'coordinates': (-79.37027555, 43.64981872)}"
-14040,11835,GO-20169007359,THEFT UNDER - BICYCLE,2016-07-12T00:00:00,2016,July,Tuesday,12,194,19,2016-07-18T00:00:00,2016,July,Monday,18,200,17,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,SC1800,MT,18,RED,50.0,STOLEN,13984,"{'type': 'Point', 'coordinates': (-79.37524509, 43.64636121)}"
-14041,11838,GO-20169007376,THEFT UNDER,2016-07-18T00:00:00,2016,July,Monday,18,200,17,2016-07-18T00:00:00,2016,July,Monday,18,200,23,D52,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,OT,,RG,1,,550.0,STOLEN,13985,"{'type': 'Point', 'coordinates': (-79.38607074, 43.64739453)}"
-14042,11845,GO-20169007397,THEFT UNDER - BICYCLE,2016-07-18T00:00:00,2016,July,Monday,18,200,10,2016-07-19T00:00:00,2016,July,Tuesday,19,201,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE 2 GREY,MT,24,GRY,650.0,STOLEN,13986,"{'type': 'Point', 'coordinates': (-79.39846982000002, 43.64477819)}"
-14043,11873,GO-20169007594,THEFT UNDER - BICYCLE,2016-07-21T00:00:00,2016,July,Thursday,21,203,12,2016-07-21T00:00:00,2016,July,Thursday,21,203,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,SPORT SERIES,MT,21,BLK,800.0,STOLEN,13987,"{'type': 'Point', 'coordinates': (-79.39204821, 43.64885072)}"
-14044,24783,GO-20169002596,THEFT UNDER - BICYCLE,2016-03-18T00:00:00,2016,March,Friday,18,78,14,2016-03-20T00:00:00,2016,March,Sunday,20,80,22,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,18,SIL,750.0,STOLEN,14002,"{'type': 'Point', 'coordinates': (-79.3979648, 43.63940267)}"
-14045,11880,GO-20169007637,THEFT UNDER - BICYCLE,2016-07-23T00:00:00,2016,July,Saturday,23,205,9,2016-07-23T00:00:00,2016,July,Saturday,23,205,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KO,JAKE THE SNAKE,RC,22,LBL,1500.0,STOLEN,13988,"{'type': 'Point', 'coordinates': (-79.38973372, 43.6466028)}"
-14046,11889,GO-20169007682,THEFT UNDER - BICYCLE,2016-07-23T00:00:00,2016,July,Saturday,23,205,21,2016-07-24T00:00:00,2016,July,Sunday,24,206,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,TIKA,MT,27,TRQ,750.0,STOLEN,13989,"{'type': 'Point', 'coordinates': (-79.39048951, 43.64848965)}"
-14047,11891,GO-20169007693,THEFT UNDER - BICYCLE,2016-07-19T00:00:00,2016,July,Tuesday,19,201,2,2016-07-24T00:00:00,2016,July,Sunday,24,206,20,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,,MT,18,PLE,113.0,STOLEN,13990,"{'type': 'Point', 'coordinates': (-79.36480764, 43.64809796)}"
-14048,11892,GO-20161300683,THEFT UNDER - BICYCLE,2016-07-19T00:00:00,2016,July,Tuesday,19,201,10,2016-07-24T00:00:00,2016,July,Sunday,24,206,16,D14,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CANNONDALE,CAAD8,RC,24,RED,3000.0,STOLEN,13991,"{'type': 'Point', 'coordinates': (-79.40059685, 43.64573236)}"
-14049,11893,GO-20161301733,THEFT UNDER - BICYCLE,2016-07-19T00:00:00,2016,July,Tuesday,19,201,21,2016-07-24T00:00:00,2016,July,Sunday,24,206,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,TUFFBOARD SLR2,MT,21,BLUYEL,1200.0,STOLEN,13992,"{'type': 'Point', 'coordinates': (-79.39833497, 43.64030158)}"
-14050,11901,GO-20169007714,THEFT UNDER - BICYCLE,2016-07-22T00:00:00,2016,July,Friday,22,204,0,2016-07-25T00:00:00,2016,July,Monday,25,207,21,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GT,PERFORMER,BM,1,SIL,0.0,STOLEN,13993,"{'type': 'Point', 'coordinates': (-79.35713011, 43.65083215)}"
-14051,11906,GO-20169007737,THEFT UNDER - BICYCLE,2016-07-25T00:00:00,2016,July,Monday,25,207,10,2016-07-25T00:00:00,2016,July,Monday,25,207,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,XTRAIL A30,OT,22,BLK,2000.0,STOLEN,13994,"{'type': 'Point', 'coordinates': (-79.38653359, 43.63885304)}"
-14052,11917,GO-20169007775,THEFT UNDER - BICYCLE,2016-07-25T00:00:00,2016,July,Monday,25,207,23,2016-07-26T00:00:00,2016,July,Tuesday,26,208,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,TOSCA,RG,21,BLK,0.0,STOLEN,13995,"{'type': 'Point', 'coordinates': (-79.3932382, 43.64839265)}"
-14053,11926,GO-20169007793,THEFT UNDER,2016-07-26T00:00:00,2016,July,Tuesday,26,208,11,2016-07-26T00:00:00,2016,July,Tuesday,26,208,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,TREK 7.2,RG,8,BLK,500.0,STOLEN,13996,"{'type': 'Point', 'coordinates': (-79.38973372, 43.6466028)}"
-14054,11930,GO-20169007812,THEFT UNDER - BICYCLE,2016-07-26T00:00:00,2016,July,Tuesday,26,208,9,2016-07-27T00:00:00,2016,July,Wednesday,27,209,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,BONTRAGER AT-85,MT,21,BLK,300.0,STOLEN,13997,"{'type': 'Point', 'coordinates': (-79.38973372, 43.6466028)}"
-14055,24770,GO-20159009443,THEFT UNDER,2015-10-30T00:00:00,2015,October,Friday,30,303,14,2015-11-06T00:00:00,2015,November,Friday,6,310,14,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,ESCAPE RX 2014,OT,10,GRY,1175.0,STOLEN,13998,"{'type': 'Point', 'coordinates': (-79.39760717, 43.64495335000001)}"
-14056,24772,GO-20152071421,THEFT UNDER,2015-11-16T00:00:00,2015,November,Monday,16,320,3,2015-12-03T00:00:00,2015,December,Thursday,3,337,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OTHER,ORION,OT,0,YEL,,STOLEN,13999,"{'type': 'Point', 'coordinates': (-79.3979648, 43.63940267)}"
-14057,24773,GO-20152095908,THEFT UNDER,2015-12-07T00:00:00,2015,December,Monday,7,341,12,2015-12-07T00:00:00,2015,December,Monday,7,341,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,AMEGO CYCLONE,EL,3,BLKSIL,1200.0,STOLEN,14000,"{'type': 'Point', 'coordinates': (-79.4010881, 43.64697154)}"
-14058,24774,GO-20152102578,THEFT UNDER,2015-12-07T00:00:00,2015,December,Monday,7,341,22,2015-12-08T00:00:00,2015,December,Tuesday,8,342,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,KNIGHT,EL,3,BLKONG,3800.0,STOLEN,14001,"{'type': 'Point', 'coordinates': (-79.39811145, 43.64623146000001)}"
-14059,24787,GO-20149004109,THEFT UNDER,2014-06-15T00:00:00,2014,June,Sunday,15,166,20,2014-06-16T00:00:00,2014,June,Monday,16,167,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,OT,16,GRY,600.0,STOLEN,14003,"{'type': 'Point', 'coordinates': (-79.38542345, 43.63902804)}"
-14060,24791,GO-20149004334,THEFT UNDER,2014-06-18T00:00:00,2014,June,Wednesday,18,169,18,2014-06-23T00:00:00,2014,June,Monday,23,174,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,BOWERY MASHUP,RG,1,GRY,400.0,STOLEN,14004,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-14061,24794,GO-20149004428,THEFT UNDER,2014-06-24T00:00:00,2014,June,Tuesday,24,175,12,2014-06-25T00:00:00,2014,June,Wednesday,25,176,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,,RG,18,DBL,300.0,STOLEN,14005,"{'type': 'Point', 'coordinates': (-79.39075649, 43.64913078)}"
-14062,24795,GO-20149004473,THEFT UNDER,2014-06-26T00:00:00,2014,June,Thursday,26,177,8,2014-06-26T00:00:00,2014,June,Thursday,26,177,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,ROSEPORT 5.0,TO,21,WHI,450.0,STOLEN,14006,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-14063,24799,GO-20149004793,THEFT UNDER,2014-07-07T00:00:00,2014,July,Monday,7,188,18,2014-07-07T00:00:00,2014,July,Monday,7,188,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,BUSHPILOT,MT,18,RED,900.0,STOLEN,14007,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-14064,24800,GO-20149004860,THEFT UNDER,2014-07-03T00:00:00,2014,July,Thursday,3,184,21,2014-07-04T00:00:00,2014,July,Friday,4,185,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,SIRRUS A1,RC,21,SIL,400.0,STOLEN,14008,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-14065,24803,GO-20149005218,THEFT UNDER,2014-07-21T00:00:00,2014,July,Monday,21,202,8,2014-07-21T00:00:00,2014,July,Monday,21,202,23,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,ALLANT,RG,21,GRY,700.0,STOLEN,14009,"{'type': 'Point', 'coordinates': (-79.38338679, 43.64508285)}"
-14066,24806,GO-20149005337,THEFT UNDER,2014-07-25T00:00:00,2014,July,Friday,25,206,0,2014-07-25T00:00:00,2014,July,Friday,25,206,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,MA,,RG,1,BLK,800.0,STOLEN,14010,"{'type': 'Point', 'coordinates': (-79.39075649, 43.64913078)}"
-14067,24808,GO-20142607062,THEFT UNDER,2014-07-24T00:00:00,2014,July,Thursday,24,205,12,2014-07-31T00:00:00,2014,July,Thursday,31,212,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,MOUNTAIN EQUIPM,RC,21,RED,900.0,STOLEN,14011,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-14068,24812,GO-20149005741,THEFT UNDER,2014-08-07T00:00:00,2014,August,Thursday,7,219,23,2014-08-08T00:00:00,2014,August,Friday,8,220,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SU,,RG,1,LGR,300.0,STOLEN,14012,"{'type': 'Point', 'coordinates': (-79.38684132, 43.64925417)}"
-14069,24817,GO-20149005911,THEFT UNDER,2014-08-13T00:00:00,2014,August,Wednesday,13,225,13,2014-08-13T00:00:00,2014,August,Wednesday,13,225,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,MA,TERRA LINDA,OT,27,WHI,809.0,STOLEN,14013,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-14070,24818,GO-20149006003,THEFT UNDER,2014-08-15T00:00:00,2014,August,Friday,15,227,18,2014-08-15T00:00:00,2014,August,Friday,15,227,23,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MA,HAWK HILL,MT,17,BLU,989.0,STOLEN,14014,"{'type': 'Point', 'coordinates': (-79.38864414, 43.64819947)}"
-14071,24821,GO-20149006077,THEFT UNDER,2014-08-17T00:00:00,2014,August,Sunday,17,229,14,2014-08-18T00:00:00,2014,August,Monday,18,230,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,3500,MT,21,BLK,800.0,STOLEN,14015,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-14072,24824,GO-20142812080,THEFT UNDER,2014-08-08T00:00:00,2014,August,Friday,8,220,14,2014-08-31T00:00:00,2014,August,Sunday,31,243,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,VITA,OT,18,BLU,1000.0,STOLEN,14016,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-14073,24825,GO-20142812080,THEFT UNDER,2014-08-08T00:00:00,2014,August,Friday,8,220,14,2014-08-31T00:00:00,2014,August,Sunday,31,243,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GIANT,SEEK2,OT,18,BLK,630.0,STOLEN,14017,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-14074,24826,GO-20149006584,THEFT UNDER,2014-08-30T00:00:00,2014,August,Saturday,30,242,22,2014-09-05T00:00:00,2014,September,Friday,5,248,9,D52,Toronto,77,Waterfront Communities-The Island (77),Go Station,Transit,NO,CITYGLIDE (2 SP,RG,2,GRY,600.0,STOLEN,14018,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-14075,24827,GO-20142865162,THEFT UNDER,2014-09-07T00:00:00,2014,September,Sunday,7,250,19,2014-09-07T00:00:00,2014,September,Sunday,7,250,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,OT,0,,,STOLEN,14019,"{'type': 'Point', 'coordinates': (-79.38542345, 43.63902804)}"
-14076,24830,GO-20149007199,THEFT UNDER,2014-09-25T00:00:00,2014,September,Thursday,25,268,20,2014-09-25T00:00:00,2014,September,Thursday,25,268,23,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,DOLCE RV,RC,27,WHI,1800.0,STOLEN,14020,"{'type': 'Point', 'coordinates': (-79.38973372, 43.6466028)}"
-14077,24834,GO-20149007420,THEFT UNDER,2014-10-05T00:00:00,2014,October,Sunday,5,278,19,2014-10-05T00:00:00,2014,October,Sunday,5,278,23,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,COCOA,RG,3,BLK,1000.0,STOLEN,14021,"{'type': 'Point', 'coordinates': (-79.38994752, 43.64370303)}"
-14078,24837,GO-20143116593,THEFT UNDER,2014-10-16T00:00:00,2014,October,Thursday,16,289,14,2014-10-16T00:00:00,2014,October,Thursday,16,289,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,TASHLEY SOUVERN,RG,8,BLK,1800.0,STOLEN,14022,"{'type': 'Point', 'coordinates': (-79.39592984, 43.64780696)}"
-14079,24838,GO-20149007848,THEFT UNDER,2014-10-27T00:00:00,2014,October,Monday,27,300,19,2014-10-27T00:00:00,2014,October,Monday,27,300,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,12 SPEED,MT,12,RED,500.0,STOLEN,14023,"{'type': 'Point', 'coordinates': (-79.39204821, 43.64885072)}"
-14080,1988,GO-201892523,THEFT UNDER,2018-01-12T00:00:00,2018,January,Friday,12,12,5,2018-01-15T00:00:00,2018,January,Monday,15,15,12,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,OT,0,,,STOLEN,14155,"{'type': 'Point', 'coordinates': (-79.39875925, 43.6493456)}"
-14081,24841,GO-20149008499,THEFT UNDER,2014-12-01T00:00:00,2014,December,Monday,1,335,18,2014-12-02T00:00:00,2014,December,Tuesday,2,336,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,CX6,TO,21,BLK,800.0,STOLEN,14024,"{'type': 'Point', 'coordinates': (-79.39124574, 43.64342012)}"
-14082,24842,GO-20149008814,THEFT UNDER,2014-11-24T00:00:00,2014,November,Monday,24,328,14,2014-12-17T00:00:00,2014,December,Wednesday,17,351,14,D52,Toronto,77,Waterfront Communities-The Island (77),Go Station,Transit,CA,F400,MT,21,GRN,210.0,STOLEN,14025,"{'type': 'Point', 'coordinates': (-79.37646324, 43.64578351)}"
-14083,24845,GO-20159001857,THEFT UNDER,2015-04-11T00:00:00,2015,April,Saturday,11,101,18,2015-04-12T00:00:00,2015,April,Sunday,12,102,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,VENTURA COMP 20,RG,18,WHI,1000.0,STOLEN,14026,"{'type': 'Point', 'coordinates': (-79.39388892, 43.64273773)}"
-14084,24850,GO-2015733856,MISCHIEF UNDER,2015-05-02T00:00:00,2015,May,Saturday,2,122,5,2015-05-03T00:00:00,2015,May,Sunday,3,123,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,ALLEZ,OT,11,GRYRED,2500.0,STOLEN,14027,"{'type': 'Point', 'coordinates': (-79.37778379, 43.6430065)}"
-14085,24851,GO-20159002418,THEFT UNDER,2014-04-18T00:00:00,2014,April,Friday,18,108,18,2015-05-03T00:00:00,2015,May,Sunday,3,123,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,EM,GX500,EL,2,WHI,1195.0,STOLEN,14028,"{'type': 'Point', 'coordinates': (-79.38363997, 43.64159187)}"
-14086,24852,GO-20159002541,THEFT UNDER,2015-05-07T00:00:00,2015,May,Thursday,7,127,19,2015-05-08T00:00:00,2015,May,Friday,8,128,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,HEART,OT,1,BLK,0.0,STOLEN,14029,"{'type': 'Point', 'coordinates': (-79.39204821, 43.64885072)}"
-14087,24853,GO-20159002560,THEFT UNDER,2015-05-07T00:00:00,2015,May,Thursday,7,127,20,2015-05-08T00:00:00,2015,May,Friday,8,128,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MATRIX FOLDING,FO,8,BLK,700.0,STOLEN,14030,"{'type': 'Point', 'coordinates': (-79.39075649, 43.64913078)}"
-14088,24856,GO-20159002779,THEFT UNDER,2015-05-15T00:00:00,2015,May,Friday,15,135,9,2015-05-15T00:00:00,2015,May,Friday,15,135,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,INDIE 4,RG,24,BLK,500.0,STOLEN,14031,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-14089,24862,GO-2015904227,THEFT FROM MOTOR VEHICLE UNDER,2015-05-29T00:00:00,2015,May,Friday,29,149,21,2015-05-30T00:00:00,2015,May,Saturday,30,150,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUPERCYCLE,HOOLIGAN,MT,21,YELBLU,200.0,STOLEN,14032,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-14090,24878,GO-20159004529,THEFT UNDER,2015-07-04T00:00:00,2015,July,Saturday,4,185,23,2015-07-13T00:00:00,2015,July,Monday,13,194,23,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,MT,21,BLK,400.0,STOLEN,14033,"{'type': 'Point', 'coordinates': (-79.38143561, 43.64291214)}"
-14091,24882,GO-20159005154,THEFT UNDER,2015-07-29T00:00:00,2015,July,Wednesday,29,210,23,2015-07-30T00:00:00,2015,July,Thursday,30,211,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,12,YEL,200.0,STOLEN,14034,"{'type': 'Point', 'coordinates': (-79.395007, 43.64546954)}"
-14092,24885,GO-20151419430,THEFT UNDER,2015-08-13T00:00:00,2015,August,Thursday,13,225,19,2015-08-19T00:00:00,2015,August,Wednesday,19,231,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,AVALANCHE,COMP,RG,21,BLK,850.0,STOLEN,14035,"{'type': 'Point', 'coordinates': (-79.39592984, 43.64780696)}"
-14093,24886,GO-20159005926,THEFT UNDER,2015-08-16T00:00:00,2015,August,Sunday,16,228,18,2015-08-17T00:00:00,2015,August,Monday,17,229,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,RG,18,SIL,830.0,STOLEN,14036,"{'type': 'Point', 'coordinates': (-79.38888568, 43.64881159)}"
-14094,24887,GO-20159006009,THEFT UNDER,2015-08-16T00:00:00,2015,August,Sunday,16,228,0,2015-08-19T00:00:00,2015,August,Wednesday,19,231,1,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,H700,OT,7,PLE,250.0,STOLEN,14037,"{'type': 'Point', 'coordinates': (-79.39458503, 43.64442176)}"
-14095,24901,GO-20169000264,THEFT UNDER,2014-12-24T00:00:00,2014,December,Wednesday,24,358,12,2016-01-08T00:00:00,2016,January,Friday,8,8,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,UK,MONTREAL,RG,7,BLK,700.0,STOLEN,14039,"{'type': 'Point', 'coordinates': (-79.38552201, 43.64605338)}"
-14096,24904,GO-20169001127,THEFT UNDER,2016-02-04T00:00:00,2016,February,Thursday,4,35,20,2016-02-04T00:00:00,2016,February,Thursday,4,35,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,SKYWAY,RG,1,BLK,575.0,STOLEN,14040,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-14097,24914,GO-20169003860,THEFT UNDER - BICYCLE,2016-04-25T00:00:00,2016,April,Monday,25,116,18,2016-04-26T00:00:00,2016,April,Tuesday,26,117,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,FX 7.3,TO,21,BLK,800.0,STOLEN,14041,"{'type': 'Point', 'coordinates': (-79.39175463, 43.64474761000001)}"
-14098,24915,GO-20169003877,THEFT UNDER - BICYCLE,2016-04-25T00:00:00,2016,April,Monday,25,116,14,2016-04-27T00:00:00,2016,April,Wednesday,27,118,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,24,BLK,500.0,STOLEN,14042,"{'type': 'Point', 'coordinates': (-79.38314772, 43.64033919)}"
-14099,24916,GO-20169004190,THEFT UNDER,2016-05-05T00:00:00,2016,May,Thursday,5,126,9,2016-05-05T00:00:00,2016,May,Thursday,5,126,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,H12-FIREN,RC,27,BLK,1200.0,STOLEN,14043,"{'type': 'Point', 'coordinates': (-79.38143561, 43.64291214)}"
-14100,24925,GO-20169005084,THEFT UNDER - BICYCLE,2016-05-25T00:00:00,2016,May,Wednesday,25,146,1,2016-05-29T00:00:00,2016,May,Sunday,29,150,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE CITY,OT,24,GRY,800.0,STOLEN,14044,"{'type': 'Point', 'coordinates': (-79.39184935, 43.63765238)}"
-14101,24936,GO-20169006131,THEFT UNDER - BICYCLE,2016-06-19T00:00:00,2016,June,Sunday,19,171,18,2016-06-21T00:00:00,2016,June,Tuesday,21,173,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,,RC,10,SIL,400.0,STOLEN,14045,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-14102,24937,GO-20169006131,THEFT UNDER - BICYCLE,2016-06-19T00:00:00,2016,June,Sunday,19,171,18,2016-06-21T00:00:00,2016,June,Tuesday,21,173,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,BM,5,BLK,200.0,STOLEN,14046,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-14103,24938,GO-20169006131,THEFT UNDER - BICYCLE,2016-06-19T00:00:00,2016,June,Sunday,19,171,18,2016-06-21T00:00:00,2016,June,Tuesday,21,173,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,TO,21,BLU,1800.0,STOLEN,14047,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-14104,24939,GO-20169006262,THEFT UNDER,2016-06-23T00:00:00,2016,June,Thursday,23,175,19,2016-06-23T00:00:00,2016,June,Thursday,23,175,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,GT,KARAKOURAM,MT,27,BLK,450.0,STOLEN,14048,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-14105,24941,GO-20169006618,THEFT OF EBIKE UNDER $5000,2016-07-01T00:00:00,2016,July,Friday,1,183,21,2016-07-02T00:00:00,2016,July,Saturday,2,184,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,MUNICH,EL,1,BLU,1000.0,STOLEN,14049,"{'type': 'Point', 'coordinates': (-79.38542345, 43.63902804)}"
-14106,24942,GO-20169006625,THEFT UNDER,2016-07-02T00:00:00,2016,July,Saturday,2,184,14,2016-07-02T00:00:00,2016,July,Saturday,2,184,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE RX,MT,10,BLK,1200.0,STOLEN,14050,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-14107,24943,GO-20169006669,THEFT UNDER - BICYCLE,2016-07-01T00:00:00,2016,July,Friday,1,183,23,2016-07-03T00:00:00,2016,July,Sunday,3,185,23,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,MILANO,OT,6,SIL,370.0,STOLEN,14051,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-14108,24945,GO-20169006965,THEFT UNDER,2016-07-09T00:00:00,2016,July,Saturday,9,191,13,2016-07-10T00:00:00,2016,July,Sunday,10,192,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,THE CAPTAIN,OT,1,WHI,400.0,STOLEN,14052,"{'type': 'Point', 'coordinates': (-79.39025369, 43.64785592)}"
-14109,24947,GO-20161209985,THEFT UNDER,2016-07-10T00:00:00,2016,July,Sunday,10,192,19,2016-07-10T00:00:00,2016,July,Sunday,10,192,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FLY-Z,SETEDATO,RG,20,BLKRED,4800.0,STOLEN,14053,"{'type': 'Point', 'coordinates': (-79.38653359, 43.63885304)}"
-14110,24948,GO-20169007312,THEFT UNDER,2016-06-13T00:00:00,2016,June,Monday,13,165,9,2016-07-18T00:00:00,2016,July,Monday,18,200,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NO,,MT,21,RED,400.0,STOLEN,14054,"{'type': 'Point', 'coordinates': (-79.37778379, 43.6430065)}"
-14111,24950,GO-20169007637,THEFT UNDER - BICYCLE,2016-07-23T00:00:00,2016,July,Saturday,23,205,9,2016-07-23T00:00:00,2016,July,Saturday,23,205,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KO,JAKE THE SNAKE,RC,22,LBL,1500.0,STOLEN,14055,"{'type': 'Point', 'coordinates': (-79.38973372, 43.6466028)}"
-14112,24952,GO-20169008168,THEFT UNDER - BICYCLE,2016-08-03T00:00:00,2016,August,Wednesday,3,216,10,2016-08-03T00:00:00,2016,August,Wednesday,3,216,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SOLOIST,RG,1,BLK,425.0,STOLEN,14056,"{'type': 'Point', 'coordinates': (-79.39048951, 43.64848965)}"
-14113,24954,GO-20169008255,THEFT UNDER - BICYCLE,2016-07-27T00:00:00,2016,July,Wednesday,27,209,23,2016-08-05T00:00:00,2016,August,Friday,5,218,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,Z95,RC,18,BLK,850.0,STOLEN,14057,"{'type': 'Point', 'coordinates': (-79.38275181, 43.64263544000001)}"
-14114,24957,GO-20161421502,THEFT UNDER - BICYCLE,2016-08-12T00:00:00,2016,August,Friday,12,225,11,2016-08-12T00:00:00,2016,August,Friday,12,225,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,1,MT,7,BLACK,1200.0,STOLEN,14058,"{'type': 'Point', 'coordinates': (-79.39366252, 43.64935047)}"
-14115,24958,GO-20169008657,THEFT UNDER,2016-08-11T00:00:00,2016,August,Thursday,11,224,4,2016-08-12T00:00:00,2016,August,Friday,12,225,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,MT,18,BGE,550.0,STOLEN,14059,"{'type': 'Point', 'coordinates': (-79.38867784, 43.64396864)}"
-14116,24962,GO-20161532877,B&E,2016-08-29T00:00:00,2016,August,Monday,29,242,17,2016-08-29T00:00:00,2016,August,Monday,29,242,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,ALLEZ,RC,21,BLU,1500.0,STOLEN,14060,"{'type': 'Point', 'coordinates': (-79.38973372, 43.6466028)}"
-14117,24963,GO-20161533294,B&E,2016-08-29T00:00:00,2016,August,Monday,29,242,17,2016-08-29T00:00:00,2016,August,Monday,29,242,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OTHER,ALLEZ,RC,21,BLU,1500.0,STOLEN,14061,"{'type': 'Point', 'coordinates': (-79.38973372, 43.6466028)}"
-14118,24968,GO-20169010037,THEFT UNDER,2016-09-06T00:00:00,2016,September,Tuesday,6,250,10,2016-09-06T00:00:00,2016,September,Tuesday,6,250,13,D52,Toronto,77,Waterfront Communities-The Island (77),Unknown,Other,OT,PACE FIXIE 700C,OT,1,BLK,300.0,STOLEN,14062,"{'type': 'Point', 'coordinates': (-79.39204821, 43.64885072)}"
-14119,24975,GO-20169010501,THEFT FROM MOTOR VEHICLE UNDER,2016-09-15T00:00:00,2016,September,Thursday,15,259,7,2016-09-15T00:00:00,2016,September,Thursday,15,259,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,,RC,21,BLK,1600.0,STOLEN,14063,"{'type': 'Point', 'coordinates': (-79.38250349, 43.64061295)}"
-14120,24977,GO-20169011695,THEFT UNDER,2016-10-06T00:00:00,2016,October,Thursday,6,280,4,2016-10-07T00:00:00,2016,October,Friday,7,281,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,BI,,RG,1,GRY,500.0,STOLEN,14064,"{'type': 'Point', 'coordinates': (-79.38914103, 43.64945651)}"
-14121,24980,GO-20169012016,THEFT UNDER - BICYCLE,2016-10-13T00:00:00,2016,October,Thursday,13,287,9,2016-10-13T00:00:00,2016,October,Thursday,13,287,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,DEW,RG,24,BLK,500.0,STOLEN,14065,"{'type': 'Point', 'coordinates': (-79.39389489, 43.64651184)}"
-14122,25180,GO-20169002628,THEFT UNDER,2016-03-22T00:00:00,2016,March,Tuesday,22,82,22,2016-03-23T00:00:00,2016,March,Wednesday,23,83,9,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,7.3 FX 20,RG,27,BLK,1000.0,STOLEN,14066,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-14123,8470,GO-20142550517,THEFT UNDER,2014-07-21T00:00:00,2014,July,Monday,21,202,11,2014-07-22T00:00:00,2014,July,Tuesday,22,203,17,D52,Toronto,79,University (79),Universities / Colleges,Educational,CCM,UNKNOWN,OT,1,WHI,300.0,STOLEN,15959,"{'type': 'Point', 'coordinates': (-79.39488188, 43.66100963)}"
-14124,25181,GO-20169002749,THEFT UNDER - BICYCLE,2016-03-22T00:00:00,2016,March,Tuesday,22,82,18,2016-03-25T00:00:00,2016,March,Friday,25,85,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,TEMPO,RC,21,YEL,200.0,STOLEN,14067,"{'type': 'Point', 'coordinates': (-79.39837878, 43.64832482)}"
-14125,25185,GO-20169004215,THEFT UNDER,2016-05-01T00:00:00,2016,May,Sunday,1,122,20,2016-05-06T00:00:00,2016,May,Friday,6,127,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,SIRRUS,RG,27,WHI,800.0,STOLEN,14068,"{'type': 'Point', 'coordinates': (-79.39737512, 43.64853707)}"
-14126,25189,GO-2016823530,THEFT UNDER,2016-05-12T00:00:00,2016,May,Thursday,12,133,10,2016-05-13T00:00:00,2016,May,Friday,13,134,14,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,DEVINCI,CHAMELEON,MT,24,SIL,1200.0,STOLEN,14069,"{'type': 'Point', 'coordinates': (-79.40196209, 43.64761228)}"
-14127,25197,GO-20169005126,THEFT UNDER - BICYCLE,2016-05-27T00:00:00,2016,May,Friday,27,148,23,2016-05-30T00:00:00,2016,May,Monday,30,151,0,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,F1,RC,60,SIL,1500.0,STOLEN,14070,"{'type': 'Point', 'coordinates': (-79.39558819, 43.63994429)}"
-14128,25202,GO-2016986327,THEFT UNDER - BICYCLE,2016-05-30T00:00:00,2016,May,Monday,30,151,22,2016-06-07T00:00:00,2016,June,Tuesday,7,159,1,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NAKAMURA,,RC,0,BLK,600.0,STOLEN,14071,"{'type': 'Point', 'coordinates': (-79.39924205, 43.63909783)}"
-14129,25219,GO-20169006473,THEFT UNDER,2016-06-27T00:00:00,2016,June,Monday,27,179,12,2016-06-28T00:00:00,2016,June,Tuesday,28,180,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,MEN'S 700C HYBR,RG,18,BLU,279.0,STOLEN,14072,"{'type': 'Point', 'coordinates': (-79.40005716, 43.64445256)}"
-14130,25231,GO-20169007923,THEFT UNDER,2016-07-28T00:00:00,2016,July,Thursday,28,210,19,2016-07-29T00:00:00,2016,July,Friday,29,211,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,INDIE 4,RG,24,GRY,500.0,STOLEN,14073,"{'type': 'Point', 'coordinates': (-79.39296466, 43.64056148000001)}"
-14131,25241,GO-20169008668,THEFT UNDER,2016-08-11T00:00:00,2016,August,Thursday,11,224,15,2016-08-12T00:00:00,2016,August,Friday,12,225,14,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SC,GTX2,OT,21,BLK,400.0,STOLEN,14074,"{'type': 'Point', 'coordinates': (-79.39811145, 43.64623146000001)}"
-14132,25247,GO-20161464449,THEFT UNDER - BICYCLE,2016-08-17T00:00:00,2016,August,Wednesday,17,230,18,2016-08-18T00:00:00,2016,August,Thursday,18,231,22,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCOTT,,OT,21,BLKWHI,1600.0,STOLEN,14075,"{'type': 'Point', 'coordinates': (-79.395007, 43.64546954)}"
-14133,25261,GO-20161668867,THEFT UNDER - BICYCLE,2016-09-19T00:00:00,2016,September,Monday,19,263,16,2016-09-19T00:00:00,2016,September,Monday,19,263,17,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CANNONDALE,BAD BOY 1,OT,0,BLK,,STOLEN,14076,"{'type': 'Point', 'coordinates': (-79.40005716, 43.64445256)}"
-14134,25263,GO-20161680969,THEFT UNDER - BICYCLE,2016-09-19T00:00:00,2016,September,Monday,19,263,21,2016-09-21T00:00:00,2016,September,Wednesday,21,265,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,WU TANG,MT,21,BLKYEL,700.0,STOLEN,14077,"{'type': 'Point', 'coordinates': (-79.40008347, 43.64718548)}"
-14135,25288,GO-20179000278,THEFT UNDER - BICYCLE,2017-01-06T00:00:00,2017,January,Friday,6,6,19,2017-01-07T00:00:00,2017,January,Saturday,7,7,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,MT,21,BLU,0.0,STOLEN,14078,"{'type': 'Point', 'coordinates': (-79.40137395, 43.64770851)}"
-14136,25797,GO-20209029269,THEFT UNDER,2020-11-10T00:00:00,2020,November,Tuesday,10,315,10,2020-11-11T00:00:00,2020,November,Wednesday,11,316,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,FX SPORT 5 CARB,OT,20,GRY,2686.0,STOLEN,14079,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-14137,25800,GO-20202194037,THEFT OF MOTOR VEHICLE,2020-11-14T00:00:00,2020,November,Saturday,14,319,20,2020-11-19T00:00:00,2020,November,Thursday,19,324,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RADPOWERBIKES,RAD RUNNER ONE,EL,5,BLK,1900.0,STOLEN,14080,"{'type': 'Point', 'coordinates': (-79.38860347, 43.65042088)}"
-14138,25801,GO-20209030196,THEFT UNDER,2020-11-21T00:00:00,2020,November,Saturday,21,326,3,2020-11-21T00:00:00,2020,November,Saturday,21,326,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,520,TO,27,DGR,,STOLEN,14081,"{'type': 'Point', 'coordinates': (-79.38143561, 43.64291214)}"
-14139,25805,GO-20209031865,THEFT UNDER,2020-12-07T00:00:00,2020,December,Monday,7,342,22,2020-12-12T00:00:00,2020,December,Saturday,12,347,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,XC27,MT,21,BLK,450.0,STOLEN,14082,"{'type': 'Point', 'coordinates': (-79.3932382, 43.64839265)}"
-14140,17,GO-20169014643,THEFT UNDER - BICYCLE,2016-12-13T00:00:00,2016,December,Tuesday,13,348,21,2016-12-14T00:00:00,2016,December,Wednesday,14,349,12,D52,Toronto,78,Kensington-Chinatown (78),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,MA,HYBRID,RG,21,GRY,1000.0,STOLEN,14083,"{'type': 'Point', 'coordinates': (-79.3971995, 43.65090154)}"
-14141,51,GO-20179000686,THEFT UNDER - BICYCLE,2017-01-14T00:00:00,2017,January,Saturday,14,14,7,2017-01-16T00:00:00,2017,January,Monday,16,16,1,D14,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,UK,,BM,3,WHI,300.0,STOLEN,14084,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-14142,64,GO-20179001188,THEFT OF EBIKE UNDER $5000,2017-01-25T00:00:00,2017,January,Wednesday,25,25,17,2017-01-25T00:00:00,2017,January,Wednesday,25,25,22,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,MONSTER,EL,50,BLK,2000.0,STOLEN,14085,"{'type': 'Point', 'coordinates': (-79.38747649, 43.65067257)}"
-14143,135,GO-20179002802,THEFT UNDER - BICYCLE,2017-02-28T00:00:00,2017,February,Tuesday,28,59,18,2017-03-05T00:00:00,2017,March,Sunday,5,64,14,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RG,1,RED,700.0,STOLEN,14086,"{'type': 'Point', 'coordinates': (-79.3971995, 43.65090154)}"
-14144,196,GO-20179004173,THEFT UNDER - BICYCLE,2017-04-03T00:00:00,2017,April,Monday,3,93,15,2017-04-03T00:00:00,2017,April,Monday,3,93,15,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,TO,1,BLK,800.0,STOLEN,14087,"{'type': 'Point', 'coordinates': (-79.3968449, 43.65006869)}"
-14145,197,GO-2017593577,THEFT UNDER - BICYCLE,2017-03-28T00:00:00,2017,March,Tuesday,28,87,16,2017-04-04T00:00:00,2017,April,Tuesday,4,94,15,D52,Toronto,78,Kensington-Chinatown (78),Universities / Colleges,Educational,MINELLI,,OT,0,,200.0,STOLEN,14088,"{'type': 'Point', 'coordinates': (-79.39404835, 43.65906999)}"
-14146,220,GO-20179004696,THEFT UNDER,2017-04-13T00:00:00,2017,April,Thursday,13,103,1,2017-04-14T00:00:00,2017,April,Friday,14,104,17,D52,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,HEART,RG,1,BLK,600.0,STOLEN,14089,"{'type': 'Point', 'coordinates': (-79.39225095, 43.656266970000004)}"
-14147,238,GO-20179004806,THEFT UNDER,2017-04-08T00:00:00,2017,April,Saturday,8,98,14,2017-04-17T00:00:00,2017,April,Monday,17,107,14,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,21,BLK,450.0,STOLEN,14090,"{'type': 'Point', 'coordinates': (-79.3974349, 43.65650586)}"
-14148,259,GO-2017711197,ROBBERY - MUGGING,2017-04-23T00:00:00,2017,April,Sunday,23,113,6,2017-04-23T00:00:00,2017,April,Sunday,23,113,7,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,AGRESSOR,,MT,10,,,STOLEN,14091,"{'type': 'Point', 'coordinates': (-79.4046631, 43.64896803)}"
-14149,281,GO-2017732106,THEFT UNDER - BICYCLE,2017-04-24T00:00:00,2017,April,Monday,24,114,12,2017-04-26T00:00:00,2017,April,Wednesday,26,116,12,D14,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,FIORI,,TO,10,PLE,,STOLEN,14092,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-14150,306,GO-2017764122,PROPERTY - FOUND,2017-05-01T00:00:00,2017,May,Monday,1,121,7,2017-05-01T00:00:00,2017,May,Monday,1,121,10,D52,Toronto,78,Kensington-Chinatown (78),"Police / Courts (Parole Board, Probation Office)",Other,NORCO,PINNACLO,RG,21,GRN,,UNKNOWN,14093,"{'type': 'Point', 'coordinates': (-79.39033931, 43.65450322)}"
-14151,317,GO-2017771680,THEFT UNDER - BICYCLE,2017-05-02T00:00:00,2017,May,Tuesday,2,122,13,2017-05-02T00:00:00,2017,May,Tuesday,2,122,13,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,MENS MOUNTAIN,MT,6,GRY,50.0,STOLEN,14094,"{'type': 'Point', 'coordinates': (-79.40316102, 43.65738236)}"
-14152,328,GO-2017790594,THEFT UNDER - BICYCLE,2017-05-03T00:00:00,2017,May,Wednesday,3,123,19,2017-05-05T00:00:00,2017,May,Friday,5,125,10,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,OPUS,,OT,21,WHI,900.0,STOLEN,14095,"{'type': 'Point', 'coordinates': (-79.39042227000002, 43.65615784)}"
-14153,351,GO-20179006034,THEFT UNDER - BICYCLE,2017-05-09T00:00:00,2017,May,Tuesday,9,129,21,2017-05-10T00:00:00,2017,May,Wednesday,10,130,9,D14,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,HF,HUFFY ARLINGTON,RG,20,BLU,250.0,STOLEN,14096,"{'type': 'Point', 'coordinates': (-79.40595313, 43.65543579)}"
-14154,368,GO-20179006146,THEFT UNDER - BICYCLE,2017-05-11T00:00:00,2017,May,Thursday,11,131,6,2017-05-11T00:00:00,2017,May,Thursday,11,131,11,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DB,AIREN 1,RC,24,PNK,900.0,STOLEN,14097,"{'type': 'Point', 'coordinates': (-79.39366252, 43.64935047)}"
-14155,371,GO-20179006153,THEFT UNDER,2017-05-11T00:00:00,2017,May,Thursday,11,131,8,2017-05-11T00:00:00,2017,May,Thursday,11,131,22,D14,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,TR,2.1 ALPHA ALUMI,RC,10,BLK,1500.0,RECOVERED,14098,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-14156,377,GO-20179006210,THEFT UNDER - BICYCLE,2017-05-10T00:00:00,2017,May,Wednesday,10,130,15,2017-05-12T00:00:00,2017,May,Friday,12,132,16,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,OTTO,RG,8,BLK,1000.0,STOLEN,14099,"{'type': 'Point', 'coordinates': (-79.39983126, 43.65255065)}"
-14157,392,GO-20179006357,THEFT UNDER,2017-05-12T00:00:00,2017,May,Friday,12,132,19,2017-05-15T00:00:00,2017,May,Monday,15,135,20,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,,RC,10,LGR,200.0,STOLEN,14100,"{'type': 'Point', 'coordinates': (-79.39387167, 43.65067314)}"
-14158,402,GO-20179006400,THEFT UNDER,2017-05-11T00:00:00,2017,May,Thursday,11,131,14,2017-05-14T00:00:00,2017,May,Sunday,14,134,23,D14,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,NO,VFR 4,RG,7,WHI,600.0,STOLEN,14101,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-14159,418,GO-20179006569,THEFT UNDER,2017-05-18T00:00:00,2017,May,Thursday,18,138,0,2017-05-18T00:00:00,2017,May,Thursday,18,138,14,D14,Toronto,78,Kensington-Chinatown (78),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,MONTE 1000,EL,9,BLK,0.0,STOLEN,14102,"{'type': 'Point', 'coordinates': (-79.40595313, 43.65543579)}"
-14160,419,GO-20179006577,THEFT UNDER,2017-05-17T00:00:00,2017,May,Wednesday,17,137,18,2017-05-18T00:00:00,2017,May,Thursday,18,138,16,D52,Toronto,78,Kensington-Chinatown (78),Bar / Restaurant,Commercial,TR,11,TO,12,BLK,1100.0,STOLEN,14103,"{'type': 'Point', 'coordinates': (-79.39955207, 43.65674851)}"
-14161,436,GO-20179006761,THEFT UNDER - BICYCLE,2017-05-19T00:00:00,2017,May,Friday,19,139,19,2017-05-22T00:00:00,2017,May,Monday,22,142,2,D52,Toronto,78,Kensington-Chinatown (78),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,2015 AXIS LS3,RC,9,RED,1100.0,STOLEN,14104,"{'type': 'Point', 'coordinates': (-79.39339759, 43.65276389)}"
-14162,483,GO-20179007075,THEFT UNDER,2017-05-03T00:00:00,2017,May,Wednesday,3,123,9,2017-05-27T00:00:00,2017,May,Saturday,27,147,19,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,RA,SPORT,RG,3,GRN,150.0,STOLEN,14105,"{'type': 'Point', 'coordinates': (-79.39699693, 43.65848407)}"
-14163,496,GO-20179007139,THEFT UNDER,2017-05-28T00:00:00,2017,May,Sunday,28,148,1,2017-05-29T00:00:00,2017,May,Monday,29,149,0,D52,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,SUNSPORT,RG,3,BRZ,0.0,STOLEN,14106,"{'type': 'Point', 'coordinates': (-79.39495714, 43.65047451)}"
-14164,508,GO-2017958218,THEFT UNDER - BICYCLE,2017-05-29T00:00:00,2017,May,Monday,29,149,23,2017-05-30T00:00:00,2017,May,Tuesday,30,150,21,D52,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,,OT,12,BLUPNK,400.0,STOLEN,14107,"{'type': 'Point', 'coordinates': (-79.3974349, 43.65650586)}"
-14165,559,GO-20179007709,THEFT UNDER - BICYCLE,2017-06-05T00:00:00,2017,June,Monday,5,156,18,2017-06-08T00:00:00,2017,June,Thursday,8,159,12,D14,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,MA,HAMILTON 29ER,RG,1,BLK,600.0,STOLEN,14108,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-14166,580,GO-20179007888,THEFT UNDER - BICYCLE,2017-06-09T00:00:00,2017,June,Friday,9,160,23,2017-06-11T00:00:00,2017,June,Sunday,11,162,13,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,OT,ARGON PLUTONIUM,RC,21,WHI,1000.0,STOLEN,14109,"{'type': 'Point', 'coordinates': (-79.39227275, 43.65005482)}"
-14167,595,GO-20179007969,THEFT UNDER - BICYCLE,2017-06-12T00:00:00,2017,June,Monday,12,163,21,2017-06-12T00:00:00,2017,June,Monday,12,163,22,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RC,1,,200.0,STOLEN,14110,"{'type': 'Point', 'coordinates': (-79.40196209, 43.64761228)}"
-14168,599,GO-20171038770,THEFT UNDER - BICYCLE,2017-06-05T00:00:00,2017,June,Monday,5,156,17,2017-06-11T00:00:00,2017,June,Sunday,11,162,16,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,,MT,27,WHIBLU,400.0,STOLEN,14111,"{'type': 'Point', 'coordinates': (-79.39203753, 43.65580953)}"
-14169,621,GO-20179008112,THEFT UNDER - BICYCLE,2017-06-14T00:00:00,2017,June,Wednesday,14,165,20,2017-06-14T00:00:00,2017,June,Wednesday,14,165,23,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ADAGIO,RG,24,GRY,500.0,STOLEN,14112,"{'type': 'Point', 'coordinates': (-79.3934451, 43.65919971)}"
-14170,632,GO-20171038437,THEFT UNDER - BICYCLE,2017-06-11T00:00:00,2017,June,Sunday,11,162,10,2017-06-11T00:00:00,2017,June,Sunday,11,162,15,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,F2000,MT,18,BLK,600.0,STOLEN,14113,"{'type': 'Point', 'coordinates': (-79.40397083000002, 43.64718733)}"
-14171,671,GO-20179008564,THEFT UNDER - BICYCLE,2017-06-20T00:00:00,2017,June,Tuesday,20,171,13,2017-06-21T00:00:00,2017,June,Wednesday,21,172,0,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,5,RED,70.0,STOLEN,14114,"{'type': 'Point', 'coordinates': (-79.39888675, 43.65513745)}"
-14172,677,GO-20179008612,THEFT UNDER - BICYCLE,2017-06-21T00:00:00,2017,June,Wednesday,21,172,12,2017-06-21T00:00:00,2017,June,Wednesday,21,172,14,D14,Toronto,78,Kensington-Chinatown (78),Bar / Restaurant,Commercial,UK,PACER,TO,14,RED,1800.0,STOLEN,14115,"{'type': 'Point', 'coordinates': (-79.40173755, 43.65388171)}"
-14173,743,GO-20171143245,THEFT OF EBIKE UNDER $5000,2017-06-25T00:00:00,2017,June,Sunday,25,176,21,2017-06-26T00:00:00,2017,June,Monday,26,177,17,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DAYMAK,UNKNOWN,EL,1,BLKTAN,1800.0,STOLEN,14116,"{'type': 'Point', 'coordinates': (-79.40180671, 43.65765229)}"
-14174,844,GO-20179010084,THEFT UNDER - BICYCLE,2017-07-12T00:00:00,2017,July,Wednesday,12,193,18,2017-07-13T00:00:00,2017,July,Thursday,13,194,10,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,UMBRIA II,RG,21,WHI,400.0,STOLEN,14117,"{'type': 'Point', 'coordinates': (-79.40229657, 43.65523449)}"
-14175,858,GO-20171269301,PROPERTY - FOUND,2017-07-08T00:00:00,2017,July,Saturday,8,189,0,2017-07-15T00:00:00,2017,July,Saturday,15,196,14,D14,Toronto,78,Kensington-Chinatown (78),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,CCM,ECHO,MT,21,,,UNKNOWN,14118,"{'type': 'Point', 'coordinates': (-79.40480719, 43.65215739)}"
-14176,870,GO-20179010283,THEFT UNDER - BICYCLE,2017-07-15T00:00:00,2017,July,Saturday,15,196,7,2017-07-15T00:00:00,2017,July,Saturday,15,196,19,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DB,,MT,21,BLK,200.0,STOLEN,14119,"{'type': 'Point', 'coordinates': (-79.3952972, 43.65130143)}"
-14177,873,GO-20179010317,THEFT UNDER - BICYCLE,2017-07-15T00:00:00,2017,July,Saturday,15,196,23,2017-07-16T00:00:00,2017,July,Sunday,16,197,12,D52,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,VICE,MT,18,BLK,100.0,STOLEN,14120,"{'type': 'Point', 'coordinates': (-79.39692918, 43.65528489)}"
-14178,879,GO-20179010354,THEFT UNDER,2017-07-16T00:00:00,2017,July,Sunday,16,197,16,2017-07-16T00:00:00,2017,July,Sunday,16,197,21,D52,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,GI,,RG,8,GRY,800.0,STOLEN,14121,"{'type': 'Point', 'coordinates': (-79.39136265, 43.65838682)}"
-14179,996,GO-20179011179,THEFT UNDER - BICYCLE,2017-07-20T00:00:00,2017,July,Thursday,20,201,19,2017-07-27T00:00:00,2017,July,Thursday,27,208,19,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,2014 UNO,OT,1,GRY,750.0,STOLEN,14122,"{'type': 'Point', 'coordinates': (-79.40066945, 43.65476855)}"
-14180,1003,GO-20179011294,THEFT UNDER - BICYCLE,2017-07-26T00:00:00,2017,July,Wednesday,26,207,10,2017-07-29T00:00:00,2017,July,Saturday,29,210,16,D52,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,1.5 H2,RC,10,BLK,1000.0,STOLEN,14123,"{'type': 'Point', 'coordinates': (-79.39692918, 43.65528489)}"
-14181,1027,GO-20179011435,THEFT UNDER - BICYCLE,2017-07-28T00:00:00,2017,July,Friday,28,209,12,2017-08-01T00:00:00,2017,August,Tuesday,1,213,0,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,VINTAGE,RG,5,BLK,1000.0,STOLEN,14124,"{'type': 'Point', 'coordinates': (-79.39812372, 43.65026118)}"
-14182,1061,GO-20171411882,THEFT UNDER - BICYCLE,2017-08-05T00:00:00,2017,August,Saturday,5,217,21,2017-08-05T00:00:00,2017,August,Saturday,5,217,21,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NORCO,,OT,21,WHI,600.0,STOLEN,14125,"{'type': 'Point', 'coordinates': (-79.39339759, 43.65276389)}"
-14183,1125,GO-20171388487,B&E,2017-08-02T00:00:00,2017,August,Wednesday,2,214,1,2017-08-02T00:00:00,2017,August,Wednesday,2,214,14,D52,Toronto,78,Kensington-Chinatown (78),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,,OT,1,,,STOLEN,14126,"{'type': 'Point', 'coordinates': (-79.39095898, 43.65603534)}"
-14184,2432,GO-2018985308,INCIDENT,2018-05-31T00:00:00,2018,May,Thursday,31,151,17,2018-05-31T00:00:00,2018,May,Thursday,31,151,17,D14,Toronto,78,Kensington-Chinatown (78),"Open Areas (Lakes, Parks, Rivers)",Outside,ROCKY MOUNTAIN,CST PATROL,MT,21,DBLRED,,UNKNOWN,14172,"{'type': 'Point', 'coordinates': (-79.39875925, 43.6493456)}"
-14185,1166,GO-20171462494,THEFT UNDER - BICYCLE,2017-08-13T00:00:00,2017,August,Sunday,13,225,2,2017-08-13T00:00:00,2017,August,Sunday,13,225,22,D52,Toronto,78,Kensington-Chinatown (78),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,HUFFY,BRAZEN,BM,1,GRN,150.0,STOLEN,14127,"{'type': 'Point', 'coordinates': (-79.39024772, 43.65149749)}"
-14186,1167,GO-20171462494,THEFT UNDER - BICYCLE,2017-08-13T00:00:00,2017,August,Sunday,13,225,2,2017-08-13T00:00:00,2017,August,Sunday,13,225,22,D52,Toronto,78,Kensington-Chinatown (78),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUPERCYCLE,,MT,10,BLKRED,109.0,STOLEN,14128,"{'type': 'Point', 'coordinates': (-79.39024772, 43.65149749)}"
-14187,1257,GO-20171547000,THEFT OF EBIKE UNDER $5000,2017-08-22T00:00:00,2017,August,Tuesday,22,234,22,2017-08-26T00:00:00,2017,August,Saturday,26,238,19,D14,Toronto,78,Kensington-Chinatown (78),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,,EL,2,,,RECOVERED,14129,"{'type': 'Point', 'coordinates': (-79.40397597, 43.65583003)}"
-14188,1277,GO-20171582940,B&E,2017-08-31T00:00:00,2017,August,Thursday,31,243,19,2017-09-01T00:00:00,2017,September,Friday,1,244,11,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,OT,0,,,STOLEN,14130,"{'type': 'Point', 'coordinates': (-79.4046631, 43.64896803)}"
-14189,1286,GO-20179013832,THEFT UNDER - BICYCLE,2017-08-31T00:00:00,2017,August,Thursday,31,243,17,2017-09-01T00:00:00,2017,September,Friday,1,244,14,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,RG,1,BLU,150.0,RECOVERED,14131,"{'type': 'Point', 'coordinates': (-79.40055725, 43.64788683)}"
-14190,1323,GO-20179014085,THEFT UNDER,2017-09-05T00:00:00,2017,September,Tuesday,5,248,12,2017-09-06T00:00:00,2017,September,Wednesday,6,249,0,D14,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,STOCKHOLM,TO,27,BLK,800.0,STOLEN,14132,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-14191,1360,GO-20179014430,THEFT UNDER,2017-09-10T00:00:00,2017,September,Sunday,10,253,17,2017-09-10T00:00:00,2017,September,Sunday,10,253,22,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,ADVENTURE,MT,7,BLK,450.0,STOLEN,14133,"{'type': 'Point', 'coordinates': (-79.39404835, 43.65906999)}"
-14192,698,GO-20179008781,B&E,2017-06-10T00:00:00,2017,June,Saturday,10,161,14,2017-06-23T00:00:00,2017,June,Friday,23,174,15,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,TO,24,BLK,2200.0,STOLEN,15180,"{'type': 'Point', 'coordinates': (-79.40583441, 43.65867014)}"
-14193,1363,GO-20179014427,THEFT UNDER - BICYCLE,2017-09-10T00:00:00,2017,September,Sunday,10,253,18,2017-09-10T00:00:00,2017,September,Sunday,10,253,21,D52,Toronto,78,Kensington-Chinatown (78),Universities / Colleges,Educational,OT,"M-BAR, L-TYPE",FO,3,YEL,1820.0,STOLEN,14134,"{'type': 'Point', 'coordinates': (-79.3906274, 43.65241188)}"
-14194,1389,GO-20179014638,THEFT UNDER - BICYCLE,2017-09-12T00:00:00,2017,September,Tuesday,12,255,21,2017-09-13T00:00:00,2017,September,Wednesday,13,256,12,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,,MT,18,BLK,200.0,STOLEN,14135,"{'type': 'Point', 'coordinates': (-79.38943687, 43.65023156)}"
-14195,1414,GO-20179014817,THEFT UNDER - BICYCLE,2017-09-09T00:00:00,2017,September,Saturday,9,252,20,2017-09-15T00:00:00,2017,September,Friday,15,258,9,D14,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,MT,7,BLU,500.0,STOLEN,14136,"{'type': 'Point', 'coordinates': (-79.40180671, 43.65765229)}"
-14196,1443,GO-20179015056,THEFT UNDER - BICYCLE,2017-09-16T00:00:00,2017,September,Saturday,16,259,9,2017-09-18T00:00:00,2017,September,Monday,18,261,10,D52,Toronto,78,Kensington-Chinatown (78),Universities / Colleges,Educational,RA,,RG,12,BLU,600.0,STOLEN,14137,"{'type': 'Point', 'coordinates': (-79.3906274, 43.65241188)}"
-14197,1548,GO-20179016062,THEFT UNDER - BICYCLE,2017-09-28T00:00:00,2017,September,Thursday,28,271,17,2017-09-29T00:00:00,2017,September,Friday,29,272,14,D14,Toronto,78,Kensington-Chinatown (78),Bar / Restaurant,Commercial,OT,SPARK 2.0,RC,27,WHI,1000.0,STOLEN,14138,"{'type': 'Point', 'coordinates': (-79.40229657, 43.65523449)}"
-14198,1557,GO-20179016121,THEFT UNDER - BICYCLE,2017-09-20T00:00:00,2017,September,Wednesday,20,263,15,2017-09-29T00:00:00,2017,September,Friday,29,272,15,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,UK,,FO,15,,1000.0,STOLEN,14139,"{'type': 'Point', 'coordinates': (-79.39109731, 43.64989719)}"
-14199,1561,GO-20171781489,THEFT UNDER - BICYCLE,2017-09-30T00:00:00,2017,September,Saturday,30,273,10,2017-10-01T00:00:00,2017,October,Sunday,1,274,17,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,VOLARE,TO,9,WHIRED,400.0,RECOVERED,14140,"{'type': 'Point', 'coordinates': (-79.3946423, 43.65895383)}"
-14200,2439,GO-20189017071,THEFT UNDER - BICYCLE,2018-06-01T00:00:00,2018,June,Friday,1,152,9,2018-06-01T00:00:00,2018,June,Friday,1,152,17,D52,Toronto,78,Kensington-Chinatown (78),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,NEWBURY,TO,3,BLU,550.0,STOLEN,14173,"{'type': 'Point', 'coordinates': (-79.39161243, 43.65119665)}"
-14201,1584,GO-20179016417,THEFT UNDER - BICYCLE,2017-10-01T00:00:00,2017,October,Sunday,1,274,1,2017-10-02T00:00:00,2017,October,Monday,2,275,21,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,,RG,6,RED,0.0,STOLEN,14141,"{'type': 'Point', 'coordinates': (-79.38934401, 43.652151370000006)}"
-14202,1587,GO-20179016459,THEFT UNDER - BICYCLE,2017-10-03T00:00:00,2017,October,Tuesday,3,276,22,2017-10-04T00:00:00,2017,October,Wednesday,4,277,16,D14,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,NO,VFR 3 16,RG,21,BLK,600.0,STOLEN,14142,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-14203,1602,GO-20179016617,THEFT UNDER - BICYCLE,2017-10-03T00:00:00,2017,October,Tuesday,3,276,17,2017-10-06T00:00:00,2017,October,Friday,6,279,17,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,KETTLER SPORTRA,OT,7,SIL,0.0,STOLEN,14143,"{'type': 'Point', 'coordinates': (-79.3906274, 43.65241188)}"
-14204,1617,GO-20179016617,THEFT UNDER - BICYCLE,2017-10-03T00:00:00,2017,October,Tuesday,3,276,17,2017-10-06T00:00:00,2017,October,Friday,6,279,17,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,OT,10,,,STOLEN,14144,"{'type': 'Point', 'coordinates': (-79.3906274, 43.65241188)}"
-14205,1679,GO-20179017451,THEFT UNDER - BICYCLE,2017-09-17T00:00:00,2017,September,Sunday,17,260,17,2017-10-17T00:00:00,2017,October,Tuesday,17,290,18,D14,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,ARIEL,OT,8,WHI,600.0,STOLEN,14145,"{'type': 'Point', 'coordinates': (-79.4000091, 43.65794797)}"
-14206,1712,GO-20171898735,THEFT UNDER - BICYCLE,2017-10-19T00:00:00,2017,October,Thursday,19,292,18,2017-10-22T00:00:00,2017,October,Sunday,22,295,16,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CRITICAL,URBAN,OT,1,BLKONG,300.0,STOLEN,14146,"{'type': 'Point', 'coordinates': (-79.39883998, 43.64954482)}"
-14207,1736,GO-20179018113,THEFT UNDER - BICYCLE,2017-10-23T00:00:00,2017,October,Monday,23,296,22,2017-10-24T00:00:00,2017,October,Tuesday,24,297,17,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,RG,7,WHI,200.0,STOLEN,14147,"{'type': 'Point', 'coordinates': (-79.3934735, 43.65601123)}"
-14208,1739,GO-20179018185,THEFT UNDER - BICYCLE,2017-10-24T00:00:00,2017,October,Tuesday,24,297,17,2017-10-25T00:00:00,2017,October,Wednesday,25,298,20,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,VILLAGER,RG,10,DGR,200.0,STOLEN,14148,"{'type': 'Point', 'coordinates': (-79.38994423, 43.6587011)}"
-14209,1750,GO-20179018292,THEFT UNDER,2017-10-01T00:00:00,2017,October,Sunday,1,274,12,2017-10-26T00:00:00,2017,October,Thursday,26,299,23,D14,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,GI,,TO,1,,800.0,STOLEN,14149,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-14210,1809,GO-20179019107,THEFT UNDER - BICYCLE,2017-11-07T00:00:00,2017,November,Tuesday,7,311,0,2017-11-07T00:00:00,2017,November,Tuesday,7,311,15,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,OT,SIRRUS LG,RG,24,BLK,806.0,STOLEN,14150,"{'type': 'Point', 'coordinates': (-79.40403711, 43.6572083)}"
-14211,1922,GO-20173149583,THEFT UNDER - BICYCLE,2017-10-09T00:00:00,2017,October,Monday,9,282,21,2017-12-07T00:00:00,2017,December,Thursday,7,341,11,D52,Toronto,78,Kensington-Chinatown (78),Universities / Colleges,Educational,SUPERCYCLE,NITRO XD,MT,0,WHI,190.0,STOLEN,14151,"{'type': 'Point', 'coordinates': (-79.3934451, 43.65919971)}"
-14212,1932,GO-20179021843,THEFT UNDER - BICYCLE,2017-12-04T00:00:00,2017,December,Monday,4,338,22,2017-12-11T00:00:00,2017,December,Monday,11,345,11,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,18,GRN,300.0,STOLEN,14152,"{'type': 'Point', 'coordinates': (-79.40039038, 43.65405001)}"
-14213,1967,GO-20189000439,THEFT UNDER - BICYCLE,2017-12-17T00:00:00,2017,December,Sunday,17,351,13,2018-01-06T00:00:00,2018,January,Saturday,6,6,17,D52,Toronto,78,Kensington-Chinatown (78),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,SC,TANGO,FO,6,RED,339.0,STOLEN,14153,"{'type': 'Point', 'coordinates': (-79.39339759, 43.65276389)}"
-14214,1981,GO-20189000957,THEFT UNDER - BICYCLE,2017-12-16T00:00:00,2017,December,Saturday,16,350,19,2018-01-12T00:00:00,2018,January,Friday,12,12,0,D14,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,CITY GLIDE 7SP,RG,7,BGE,575.0,STOLEN,14154,"{'type': 'Point', 'coordinates': (-79.40222699, 43.65202883)}"
-14215,1994,GO-20189001905,THEFT UNDER - BICYCLE,2017-10-24T00:00:00,2017,October,Tuesday,24,297,0,2018-01-20T00:00:00,2018,January,Saturday,20,20,19,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,10,WHI,200.0,STOLEN,14156,"{'type': 'Point', 'coordinates': (-79.39095898, 43.65603534)}"
-14216,2051,GO-20189006150,THEFT UNDER - BICYCLE,2018-02-23T00:00:00,2018,February,Friday,23,54,13,2018-02-26T00:00:00,2018,February,Monday,26,57,17,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,STP,MT,27,RED,1500.0,STOLEN,14157,"{'type': 'Point', 'coordinates': (-79.40494299, 43.6546843)}"
-14217,2076,GO-20189008015,THEFT UNDER - BICYCLE,2018-03-14T00:00:00,2018,March,Wednesday,14,73,19,2018-03-15T00:00:00,2018,March,Thursday,15,74,0,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,FX 2,RG,8,LBL,600.0,STOLEN,14158,"{'type': 'Point', 'coordinates': (-79.39955207, 43.65674851)}"
-14218,2178,GO-2018692916,THEFT UNDER - BICYCLE,2018-04-18T00:00:00,2018,April,Wednesday,18,108,12,2018-04-18T00:00:00,2018,April,Wednesday,18,108,13,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,PEUGEOT,,RG,1,BLK,400.0,STOLEN,14159,"{'type': 'Point', 'coordinates': (-79.39888675, 43.65513745)}"
-14219,2179,GO-2018699429,THEFT UNDER - BICYCLE,2018-04-18T00:00:00,2018,April,Wednesday,18,108,18,2018-04-19T00:00:00,2018,April,Thursday,19,109,12,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MARIN OR MARINO,LARKSPUR,MT,24,BLUWHI,650.0,STOLEN,14160,"{'type': 'Point', 'coordinates': (-79.40264521, 43.65609187)}"
-14220,2221,GO-20189013267,THEFT UNDER,2018-04-29T00:00:00,2018,April,Sunday,29,119,21,2018-04-29T00:00:00,2018,April,Sunday,29,119,22,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,KH,4 SEASON,OT,9,BLK,2000.0,STOLEN,14161,"{'type': 'Point', 'coordinates': (-79.40066945, 43.65476855)}"
-14221,2243,GO-20189013631,THEFT UNDER - BICYCLE,2018-05-02T00:00:00,2018,May,Wednesday,2,122,11,2018-05-02T00:00:00,2018,May,Wednesday,2,122,18,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,E BIKE,EL,6,GRY,1500.0,STOLEN,14162,"{'type': 'Point', 'coordinates': (-79.38855904, 43.6554654)}"
-14222,2263,GO-20189013965,THEFT UNDER,2018-05-05T00:00:00,2018,May,Saturday,5,125,20,2018-05-06T00:00:00,2018,May,Sunday,6,126,13,D52,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,TR,5,BLU,600.0,STOLEN,14163,"{'type': 'Point', 'coordinates': (-79.39955207, 43.65674851)}"
-14223,2267,GO-20189014077,THEFT UNDER,2018-05-07T00:00:00,2018,May,Monday,7,127,12,2018-05-07T00:00:00,2018,May,Monday,7,127,14,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,,MT,1,BLU,550.0,STOLEN,14164,"{'type': 'Point', 'coordinates': (-79.3938201, 43.65382278)}"
-14224,2286,GO-20189014420,THEFT UNDER - BICYCLE,2018-05-09T00:00:00,2018,May,Wednesday,9,129,21,2018-05-10T00:00:00,2018,May,Thursday,10,130,13,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,2000 LEMOND CHA,RC,12,BLU,4000.0,STOLEN,14165,"{'type': 'Point', 'coordinates': (-79.40316102, 43.65738236)}"
-14225,2297,GO-20189014776,THEFT UNDER,2018-05-13T00:00:00,2018,May,Sunday,13,133,14,2018-05-13T00:00:00,2018,May,Sunday,13,133,17,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,QUICK,RG,8,WHI,700.0,STOLEN,14166,"{'type': 'Point', 'coordinates': (-79.39211621, 43.64968054)}"
-14226,2308,GO-20189014867,THEFT UNDER - BICYCLE,2018-05-11T00:00:00,2018,May,Friday,11,131,20,2018-05-14T00:00:00,2018,May,Monday,14,134,13,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,GI,,TO,9,WHI,1100.0,STOLEN,14167,"{'type': 'Point', 'coordinates': (-79.3906274, 43.65241188)}"
-14227,2324,GO-20189015085,THEFT UNDER - BICYCLE,2018-05-14T00:00:00,2018,May,Monday,14,134,22,2018-05-15T00:00:00,2018,May,Tuesday,15,135,20,D14,Toronto,78,Kensington-Chinatown (78),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ROVER,RG,18,BLK,690.0,STOLEN,14168,"{'type': 'Point', 'coordinates': (-79.39919196, 43.65585086000001)}"
-14228,2364,GO-2018920476,THEFT UNDER,2018-05-04T00:00:00,2018,May,Friday,4,124,5,2018-05-22T00:00:00,2018,May,Tuesday,22,142,11,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,PROTOUR,,RG,10,,120.0,STOLEN,14169,"{'type': 'Point', 'coordinates': (-79.39875925, 43.6493456)}"
-14229,2392,GO-20189016210,THEFT UNDER,2018-04-25T00:00:00,2018,April,Wednesday,25,115,23,2018-05-25T00:00:00,2018,May,Friday,25,145,12,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,SC,700C VOLARE,RC,30,BLU,550.0,STOLEN,14170,"{'type': 'Point', 'coordinates': (-79.39692918, 43.65528489)}"
-14230,2416,GO-20189016699,THEFT UNDER - BICYCLE,2018-05-29T00:00:00,2018,May,Tuesday,29,149,12,2018-05-29T00:00:00,2018,May,Tuesday,29,149,17,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,3,BLU,500.0,STOLEN,14171,"{'type': 'Point', 'coordinates': (-79.40215141, 43.64801099)}"
-14231,2458,GO-20189017360,THEFT UNDER,2018-06-03T00:00:00,2018,June,Sunday,3,154,4,2018-06-04T00:00:00,2018,June,Monday,4,155,18,D52,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,KRANKED JS2011,MT,24,,450.0,STOLEN,14174,"{'type': 'Point', 'coordinates': (-79.3934735, 43.65601123)}"
-14232,2474,GO-20189017553,THEFT UNDER - BICYCLE,2018-05-31T00:00:00,2018,May,Thursday,31,151,23,2018-06-06T00:00:00,2018,June,Wednesday,6,157,0,D52,Toronto,78,Kensington-Chinatown (78),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,,TANGO,RG,6,GRY,1000.0,STOLEN,14175,"{'type': 'Point', 'coordinates': (-79.39360486, 43.65068718)}"
-14233,2486,GO-20189017705,THEFT UNDER - BICYCLE,2018-05-08T00:00:00,2018,May,Tuesday,8,128,0,2018-06-07T00:00:00,2018,June,Thursday,7,158,0,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,FJ,FUJI PALETTE,RG,21,BLK,655.0,STOLEN,14176,"{'type': 'Point', 'coordinates': (-79.39955207, 43.65674851)}"
-14234,2515,GO-20189017997,THEFT UNDER - BICYCLE,2018-06-08T00:00:00,2018,June,Friday,8,159,18,2018-06-09T00:00:00,2018,June,Saturday,9,160,11,D14,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,PITCH,MT,24,BLK,600.0,STOLEN,14177,"{'type': 'Point', 'coordinates': (-79.40229657, 43.65523449)}"
-14235,2519,GO-20189018045,THEFT UNDER - BICYCLE,2018-06-07T00:00:00,2018,June,Thursday,7,158,9,2018-06-09T00:00:00,2018,June,Saturday,9,160,17,D14,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,XC27,MT,21,BLK,700.0,STOLEN,14178,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-14236,2548,GO-20189018492,THEFT UNDER - BICYCLE,2018-06-09T00:00:00,2018,June,Saturday,9,160,16,2018-06-13T00:00:00,2018,June,Wednesday,13,164,10,D14,Toronto,78,Kensington-Chinatown (78),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,RG,1,BLU,900.0,STOLEN,14179,"{'type': 'Point', 'coordinates': (-79.40270032, 43.64940096)}"
-14237,2573,GO-20181065341,THEFT OF EBIKE OVER $5000,2018-06-12T00:00:00,2018,June,Tuesday,12,163,4,2018-06-12T00:00:00,2018,June,Tuesday,12,163,14,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,ZONE,EL,1,BLK,6500.0,STOLEN,14180,"{'type': 'Point', 'coordinates': (-79.40229657, 43.65523449)}"
-14238,6646,GO-20201329997,THEFT UNDER - BICYCLE,2020-07-17T00:00:00,2020,July,Friday,17,199,20,2020-07-17T00:00:00,2020,July,Friday,17,199,21,D42,Toronto,132,Malvern (132),Convenience Stores,Commercial,CAPIX,BMX,BM,1,BLK,250.0,STOLEN,25559,"{'type': 'Point', 'coordinates': (-79.23871117, 43.79386827)}"
-14239,2607,GO-20189019257,THEFT UNDER - BICYCLE,2018-06-16T00:00:00,2018,June,Saturday,16,167,17,2018-06-19T00:00:00,2018,June,Tuesday,19,170,10,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ORIGINAL PLUS,RG,1,BLK,500.0,STOLEN,14181,"{'type': 'Point', 'coordinates': (-79.40278753, 43.65745805)}"
-14240,2654,GO-20189019732,THEFT UNDER - BICYCLE,2018-06-21T00:00:00,2018,June,Thursday,21,172,17,2018-06-21T00:00:00,2018,June,Thursday,21,172,19,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ROAM 2 DISC,RG,27,BLK,880.0,STOLEN,14182,"{'type': 'Point', 'coordinates': (-79.39136265, 43.65838682)}"
-14241,2656,GO-20189019852,THEFT UNDER,2018-06-19T00:00:00,2018,June,Tuesday,19,170,6,2018-06-22T00:00:00,2018,June,Friday,22,173,17,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,1.5 SERIES,RC,20,WHI,1200.0,STOLEN,14183,"{'type': 'Point', 'coordinates': (-79.40180671, 43.65765229)}"
-14242,2657,GO-20189019588,THEFT UNDER - BICYCLE,2018-06-19T00:00:00,2018,June,Tuesday,19,170,9,2018-06-21T00:00:00,2018,June,Thursday,21,172,9,D52,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,BEASLEY,OT,8,BLK,650.0,STOLEN,14184,"{'type': 'Point', 'coordinates': (-79.39136265, 43.65838682)}"
-14243,2752,GO-20189021207,THEFT UNDER - BICYCLE,2018-07-03T00:00:00,2018,July,Tuesday,3,184,22,2018-07-04T00:00:00,2018,July,Wednesday,4,185,21,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,18,BLU,35.0,STOLEN,14185,"{'type': 'Point', 'coordinates': (-79.40316102, 43.65738236)}"
-14244,2815,GO-20181266067,THEFT OF EBIKE UNDER $5000,2018-07-11T00:00:00,2018,July,Wednesday,11,192,18,2018-07-11T00:00:00,2018,July,Wednesday,11,192,20,D14,Toronto,78,Kensington-Chinatown (78),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,ZONE-S,EL,1,WHI,3200.0,STOLEN,14186,"{'type': 'Point', 'coordinates': (-79.39927621, 43.65610155)}"
-14245,2817,GO-20189022090,THEFT UNDER,2018-07-10T00:00:00,2018,July,Tuesday,10,191,7,2018-07-11T00:00:00,2018,July,Wednesday,11,192,18,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SIRRUS,OT,21,WHI,720.0,STOLEN,14187,"{'type': 'Point', 'coordinates': (-79.39045505, 43.65985872)}"
-14246,2826,GO-20189022207,THEFT UNDER - BICYCLE,2018-07-13T00:00:00,2018,July,Friday,13,194,11,2018-07-13T00:00:00,2018,July,Friday,13,194,12,D14,Toronto,78,Kensington-Chinatown (78),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,PROJEKT8,RG,8,BLK,500.0,STOLEN,14189,"{'type': 'Point', 'coordinates': (-79.40039038, 43.65405001)}"
-14247,2860,GO-20189022718,THEFT UNDER - BICYCLE,2018-07-16T00:00:00,2018,July,Monday,16,197,23,2018-07-17T00:00:00,2018,July,Tuesday,17,198,7,D52,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,21,,0.0,STOLEN,14190,"{'type': 'Point', 'coordinates': (-79.3952972, 43.65130143)}"
-14248,2895,GO-20189023180,THEFT UNDER - BICYCLE,2018-06-19T00:00:00,2018,June,Tuesday,19,170,4,2018-07-20T00:00:00,2018,July,Friday,20,201,12,D14,Toronto,78,Kensington-Chinatown (78),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,SEEK,MT,24,GRY,600.0,STOLEN,14191,"{'type': 'Point', 'coordinates': (-79.40270032, 43.64940096)}"
-14249,2946,GO-20189023807,THEFT UNDER - BICYCLE,2018-07-23T00:00:00,2018,July,Monday,23,204,9,2018-07-24T00:00:00,2018,July,Tuesday,24,205,22,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KO,PADDYWAGON,RG,1,BLK,1000.0,STOLEN,14192,"{'type': 'Point', 'coordinates': (-79.38918474, 43.65468421)}"
-14250,2953,GO-20189023827,THEFT UNDER - BICYCLE,2018-07-25T00:00:00,2018,July,Wednesday,25,206,0,2018-07-25T00:00:00,2018,July,Wednesday,25,206,11,D52,Toronto,78,Kensington-Chinatown (78),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,NO,RAMPAGE,RG,15,DBL,500.0,STOLEN,14193,"{'type': 'Point', 'coordinates': (-79.3968449, 43.65006869)}"
-14251,3002,GO-20189024260,THEFT UNDER - BICYCLE,2018-07-27T00:00:00,2018,July,Friday,27,208,11,2018-07-27T00:00:00,2018,July,Friday,27,208,21,D52,Toronto,78,Kensington-Chinatown (78),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,CA,ADVENTURER,RG,18,CRM,300.0,STOLEN,14194,"{'type': 'Point', 'coordinates': (-79.39339759, 43.65276389)}"
-14252,3008,GO-20189024315,THEFT UNDER - BICYCLE,2018-07-27T00:00:00,2018,July,Friday,27,208,22,2018-07-28T00:00:00,2018,July,Saturday,28,209,12,D52,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,21,SIL,0.0,STOLEN,14195,"{'type': 'Point', 'coordinates': (-79.39692918, 43.65528489)}"
-14253,3013,GO-20189024260,THEFT UNDER - BICYCLE,2018-07-27T00:00:00,2018,July,Friday,27,208,11,2018-07-27T00:00:00,2018,July,Friday,27,208,21,D52,Toronto,78,Kensington-Chinatown (78),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,CA,ADVENTURER,RG,18,CRM,300.0,STOLEN,14196,"{'type': 'Point', 'coordinates': (-79.39339759, 43.65276389)}"
-14254,3092,GO-20189025322,THEFT UNDER - BICYCLE,2018-08-06T00:00:00,2018,August,Monday,6,218,16,2018-08-06T00:00:00,2018,August,Monday,6,218,17,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CODA SPORT,TO,21,SIL,450.0,STOLEN,14197,"{'type': 'Point', 'coordinates': (-79.39955207, 43.65674851)}"
-14255,17868,GO-20189024527,THEFT UNDER - BICYCLE,2018-07-28T00:00:00,2018,July,Saturday,28,209,8,2018-07-30T00:00:00,2018,July,Monday,30,211,21,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,1,BLK,450.0,STOLEN,14198,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-14256,17870,GO-20189024757,THEFT UNDER - BICYCLE,2018-07-19T00:00:00,2018,July,Thursday,19,200,12,2018-08-01T00:00:00,2018,August,Wednesday,1,213,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,820,MT,21,BLU,400.0,STOLEN,14199,"{'type': 'Point', 'coordinates': (-79.40185545, 43.64191381)}"
-14257,22740,GO-20209016789,THEFT UNDER,2020-06-29T00:00:00,2020,June,Monday,29,181,17,2020-07-03T00:00:00,2020,July,Friday,3,185,17,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,HARDROCK,MT,21,BLU,0.0,STOLEN,14200,"{'type': 'Point', 'coordinates': (-79.37302563, 43.64248042)}"
-14258,17905,GO-20189030723,THEFT UNDER - BICYCLE,2018-09-15T00:00:00,2018,September,Saturday,15,258,2,2018-09-16T00:00:00,2018,September,Sunday,16,259,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,OT,3,BLK,650.0,STOLEN,14201,"{'type': 'Point', 'coordinates': (-79.39754675, 43.6417678)}"
-14259,18094,GO-20179010318,THEFT UNDER - BICYCLE,2017-07-15T00:00:00,2017,July,Saturday,15,196,11,2017-07-16T00:00:00,2017,July,Sunday,16,197,9,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,DEVINCI MILANO,RG,10,BLK,700.0,STOLEN,14202,"{'type': 'Point', 'coordinates': (-79.39833497, 43.64030158)}"
-14260,18098,GO-20179011021,THEFT UNDER - BICYCLE,2017-07-25T00:00:00,2017,July,Tuesday,25,206,18,2017-07-25T00:00:00,2017,July,Tuesday,25,206,21,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,7.2 FX,RG,27,BLK,600.0,STOLEN,14203,"{'type': 'Point', 'coordinates': (-79.40008347, 43.64718548)}"
-14261,18101,GO-20179011434,THEFT UNDER - BICYCLE,2017-07-28T00:00:00,2017,July,Friday,28,209,19,2017-07-31T00:00:00,2017,July,Monday,31,212,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KH,URBAN SOUL,RG,1,,500.0,STOLEN,14204,"{'type': 'Point', 'coordinates': (-79.39668944, 43.63667003)}"
-14262,18110,GO-20179012643,THEFT UNDER - BICYCLE,2017-08-16T00:00:00,2017,August,Wednesday,16,228,19,2017-08-17T00:00:00,2017,August,Thursday,17,229,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,P2,MT,10,WHI,500.0,STOLEN,14205,"{'type': 'Point', 'coordinates': (-79.39330422, 43.64134268000001)}"
-14263,18113,GO-20179012817,THEFT UNDER - BICYCLE,2017-08-19T00:00:00,2017,August,Saturday,19,231,12,2017-08-19T00:00:00,2017,August,Saturday,19,231,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,RG,5,DBL,581.0,STOLEN,14206,"{'type': 'Point', 'coordinates': (-79.4010881, 43.64697154)}"
-14264,18118,GO-20161123628,THEFT UNDER,2016-06-27T00:00:00,2016,June,Monday,27,179,12,2016-06-27T00:00:00,2016,June,Monday,27,179,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CANNONDALE,QUICK 5,OT,0,SIL,500.0,STOLEN,14207,"{'type': 'Point', 'coordinates': (-79.39592984, 43.64780696)}"
-14265,18123,GO-20169006931,THEFT UNDER,2016-06-24T00:00:00,2016,June,Friday,24,176,23,2016-07-09T00:00:00,2016,July,Saturday,9,191,17,D14,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SC,HYDRA M,RG,24,BLK,396.0,STOLEN,14208,"{'type': 'Point', 'coordinates': (-79.39558819, 43.63994429)}"
-14266,18128,GO-20169007427,THEFT UNDER - BICYCLE,2016-07-17T00:00:00,2016,July,Sunday,17,199,3,2016-07-19T00:00:00,2016,July,Tuesday,19,201,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,?,RG,2,RED,500.0,STOLEN,14209,"{'type': 'Point', 'coordinates': (-79.40005716, 43.64445256)}"
-14267,18129,GO-20169007505,THEFT UNDER,2016-07-15T00:00:00,2016,July,Friday,15,197,11,2016-07-21T00:00:00,2016,July,Thursday,21,203,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,E-BREEZE,EL,1,BLK,1000.0,STOLEN,14210,"{'type': 'Point', 'coordinates': (-79.39330422, 43.64134268000001)}"
-14268,18141,GO-20161494278,THEFT OF EBIKE UNDER $5000,2016-08-22T00:00:00,2016,August,Monday,22,235,14,2016-08-23T00:00:00,2016,August,Tuesday,23,236,16,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,EMMO,,EL,1,WHI,,STOLEN,14211,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-14269,18142,GO-20169009588,THEFT UNDER - BICYCLE,2016-08-27T00:00:00,2016,August,Saturday,27,240,14,2016-08-28T00:00:00,2016,August,Sunday,28,241,8,D14,Toronto,77,Waterfront Communities-The Island (77),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,,MT,10,GRY,1000.0,STOLEN,14212,"{'type': 'Point', 'coordinates': (-79.40060972, 43.63883803)}"
-14270,18152,GO-20169010836,THEFT UNDER - BICYCLE,2016-09-20T00:00:00,2016,September,Tuesday,20,264,20,2016-09-21T00:00:00,2016,September,Wednesday,21,265,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,PE,,TO,12,RED,250.0,STOLEN,14213,"{'type': 'Point', 'coordinates': (-79.39951371, 43.64318312)}"
-14271,18159,GO-20169011002,THEFT UNDER,2016-09-23T00:00:00,2016,September,Friday,23,267,16,2016-09-23T00:00:00,2016,September,Friday,23,267,21,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,820,MT,7,,450.0,STOLEN,14214,"{'type': 'Point', 'coordinates': (-79.40372116, 43.64647061)}"
-14272,18161,GO-20169011177,THEFT UNDER - BICYCLE,2016-09-26T00:00:00,2016,September,Monday,26,270,0,2016-09-27T00:00:00,2016,September,Tuesday,27,271,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,VANTAGE 7.0,RG,14,BLK,500.0,STOLEN,14215,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-14273,20426,GO-20159005609,THEFT UNDER,2015-07-19T00:00:00,2015,July,Sunday,19,200,16,2015-08-10T00:00:00,2015,August,Monday,10,222,17,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,CAAD09 SPRINT,RC,20,BLU,3000.0,STOLEN,14216,"{'type': 'Point', 'coordinates': (-79.37524509, 43.64636121)}"
-14274,18162,GO-20169011283,THEFT UNDER,2016-09-15T00:00:00,2016,September,Thursday,15,259,9,2016-09-29T00:00:00,2016,September,Thursday,29,273,9,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SIRRUS,MT,18,ONG,870.0,STOLEN,14217,"{'type': 'Point', 'coordinates': (-79.39553097, 43.64673969)}"
-14275,18165,GO-20169011548,THEFT UNDER - BICYCLE,2016-09-29T00:00:00,2016,September,Thursday,29,273,7,2016-10-04T00:00:00,2016,October,Tuesday,4,278,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,5.1,RC,21,SIL,2200.0,STOLEN,14218,"{'type': 'Point', 'coordinates': (-79.39558819, 43.63994429)}"
-14276,18167,GO-20161787033,THEFT UNDER,2016-10-07T00:00:00,2016,October,Friday,7,281,17,2016-10-07T00:00:00,2016,October,Friday,7,281,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CERVELO,S2,OT,14,BLKBLU,3000.0,STOLEN,14219,"{'type': 'Point', 'coordinates': (-79.40005716, 43.64445256)}"
-14277,18168,GO-20161787033,THEFT UNDER,2016-10-07T00:00:00,2016,October,Friday,7,281,17,2016-10-07T00:00:00,2016,October,Friday,7,281,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,AVAIL 3,OT,20,BLKPLE,1400.0,STOLEN,14220,"{'type': 'Point', 'coordinates': (-79.40005716, 43.64445256)}"
-14278,18172,GO-20169012315,THEFT UNDER - BICYCLE,2016-10-12T00:00:00,2016,October,Wednesday,12,286,14,2016-10-19T00:00:00,2016,October,Wednesday,19,293,16,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RG,1,WHI,200.0,STOLEN,14221,"{'type': 'Point', 'coordinates': (-79.39558819, 43.63994429)}"
-14279,18177,GO-20162018722,B&E,2016-11-13T00:00:00,2016,November,Sunday,13,318,12,2016-11-13T00:00:00,2016,November,Sunday,13,318,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GIANT,ROAM 0,MT,21,BLK,950.0,STOLEN,14222,"{'type': 'Point', 'coordinates': (-79.3979648, 43.63940267)}"
-14280,18197,GO-20179004533,THEFT UNDER,2017-04-10T00:00:00,2017,April,Monday,10,100,9,2017-04-10T00:00:00,2017,April,Monday,10,100,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,RIVERSPORT,OT,21,BLK,450.0,STOLEN,14223,"{'type': 'Point', 'coordinates': (-79.395007, 43.64546954)}"
-14281,18203,GO-20179006289,THEFT UNDER - BICYCLE,2017-05-13T00:00:00,2017,May,Saturday,13,133,21,2017-05-14T00:00:00,2017,May,Sunday,14,134,2,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SC,SEARCHER GS,RG,21,BLK,452.0,STOLEN,14224,"{'type': 'Point', 'coordinates': (-79.40306565, 43.64488902)}"
-14282,18212,GO-20171005130,THEFT OVER - BICYCLE,2017-04-30T00:00:00,2017,April,Sunday,30,120,0,2017-06-06T00:00:00,2017,June,Tuesday,6,157,17,D14,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,UNKNOWN MAKE,,OT,10,SIL,,STOLEN,14225,"{'type': 'Point', 'coordinates': (-79.39811145, 43.64623146000001)}"
-14283,18219,GO-20179008348,THEFT UNDER - BICYCLE,2017-06-18T00:00:00,2017,June,Sunday,18,169,13,2017-06-18T00:00:00,2017,June,Sunday,18,169,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,21,DBL,450.0,STOLEN,14226,"{'type': 'Point', 'coordinates': (-79.40005716, 43.64445256)}"
-14284,18318,GO-20141769705,THEFT UNDER,2014-01-11T00:00:00,2014,January,Saturday,11,11,0,2014-03-26T00:00:00,2014,March,Wednesday,26,85,9,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,AMEGO,EL,0,GRN,2500.0,STOLEN,14227,"{'type': 'Point', 'coordinates': (-79.4010881, 43.64697154)}"
-14285,18334,GO-20142148718,THEFT UNDER,2014-04-25T00:00:00,2014,April,Friday,25,115,0,2014-05-25T00:00:00,2014,May,Sunday,25,145,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NORCO,BUSH PILOT,MT,21,GRYSIL,600.0,STOLEN,14228,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-14286,18341,GO-20149004234,THEFT UNDER,2014-06-16T00:00:00,2014,June,Monday,16,167,7,2014-06-19T00:00:00,2014,June,Thursday,19,170,9,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,SPORTSTER X 10,TO,30,SIL,1500.0,STOLEN,14229,"{'type': 'Point', 'coordinates': (-79.395007, 43.64546954)}"
-14287,18354,GO-20149005238,THEFT UNDER,2014-07-21T00:00:00,2014,July,Monday,21,202,6,2014-07-22T00:00:00,2014,July,Tuesday,22,203,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,TWO TEN,TO,15,RED,0.0,STOLEN,14230,"{'type': 'Point', 'coordinates': (-79.39920115, 43.64245772)}"
-14288,6906,GO-20209019714,THEFT UNDER,2020-08-08T00:00:00,2020,August,Saturday,8,221,0,2020-08-08T00:00:00,2020,August,Saturday,8,221,20,D52,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SP,,RG,18,BLU,200.0,STOLEN,14231,"{'type': 'Point', 'coordinates': (-79.39300540000002, 43.6580369)}"
-14289,18357,GO-20149005488,THEFT UNDER,2014-07-27T00:00:00,2014,July,Sunday,27,208,21,2014-07-30T00:00:00,2014,July,Wednesday,30,211,21,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KH,FLITE 223,RG,8,BLK,700.0,STOLEN,14232,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-14290,18366,GO-20149006652,THEFT UNDER,2014-09-05T00:00:00,2014,September,Friday,5,248,18,2014-09-07T00:00:00,2014,September,Sunday,7,250,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,18,BLK,800.0,STOLEN,14233,"{'type': 'Point', 'coordinates': (-79.39835558, 43.64685172)}"
-14291,18385,GO-20159000917,B&E,2015-02-06T00:00:00,2015,February,Friday,6,37,20,2015-02-21T00:00:00,2015,February,Saturday,21,52,20,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KO,FIRE MOUNTAIN,MT,24,OTH,1700.0,STOLEN,14234,"{'type': 'Point', 'coordinates': (-79.39833497, 43.64030158)}"
-14292,18409,GO-20159003131,THEFT UNDER,2015-05-21T00:00:00,2015,May,Thursday,21,141,0,2015-05-27T00:00:00,2015,May,Wednesday,27,147,9,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RC,14,LBL,500.0,STOLEN,14235,"{'type': 'Point', 'coordinates': (-79.4010881, 43.64697154)}"
-14293,18419,GO-20159003899,THEFT UNDER,2015-04-09T00:00:00,2015,April,Thursday,9,99,0,2015-06-24T00:00:00,2015,June,Wednesday,24,175,1,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,FIXIE 700C HYBR,RG,1,BLK,316.0,STOLEN,14236,"{'type': 'Point', 'coordinates': (-79.39558819, 43.63994429)}"
-14294,18432,GO-20159004836,THEFT UNDER,2015-07-14T00:00:00,2015,July,Tuesday,14,195,18,2015-07-21T00:00:00,2015,July,Tuesday,21,202,21,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,18,BLU,600.0,STOLEN,14237,"{'type': 'Point', 'coordinates': (-79.3979648, 43.63940267)}"
-14295,9063,GO-20143108641,THEFT UNDER,2014-10-10T00:00:00,2014,October,Friday,10,283,23,2014-10-15T00:00:00,2014,October,Wednesday,15,288,13,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,UNKNOWN,OT,6,BLK,300.0,STOLEN,15976,"{'type': 'Point', 'coordinates': (-79.39894426, 43.66543776)}"
-14296,18433,GO-20151268162,THEFT UNDER,2015-07-24T00:00:00,2015,July,Friday,24,205,16,2015-07-25T00:00:00,2015,July,Saturday,25,206,9,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,CYPRESS,OT,0,BLK,550.0,STOLEN,14238,"{'type': 'Point', 'coordinates': (-79.40059685, 43.64573236)}"
-14297,18448,GO-20159006172,THEFT UNDER,2015-08-25T00:00:00,2015,August,Tuesday,25,237,23,2015-08-26T00:00:00,2015,August,Wednesday,26,238,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RC,12,WHI,1500.0,STOLEN,14239,"{'type': 'Point', 'coordinates': (-79.39974525, 43.64372459)}"
-14298,18465,GO-20159008432,THEFT UNDER,2015-10-09T00:00:00,2015,October,Friday,9,282,15,2015-10-11T00:00:00,2015,October,Sunday,11,284,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,X-CALIBER 6,MT,24,RED,750.0,STOLEN,14240,"{'type': 'Point', 'coordinates': (-79.3979648, 43.63940267)}"
-14299,18466,GO-20151778191,THEFT UNDER,2015-09-20T00:00:00,2015,September,Sunday,20,263,10,2015-10-15T00:00:00,2015,October,Thursday,15,288,16,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GIANT,TALON,MT,24,BLKRED,800.0,STOLEN,14241,"{'type': 'Point', 'coordinates': (-79.39924205, 43.63909783)}"
-14300,18489,GO-20169004860,THEFT UNDER,2016-05-21T00:00:00,2016,May,Saturday,21,142,17,2016-05-23T00:00:00,2016,May,Monday,23,144,22,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,DX 2000,TO,12,BLK,300.0,STOLEN,14242,"{'type': 'Point', 'coordinates': (-79.39760717, 43.64495335000001)}"
-14301,18490,GO-20169004969,THEFT UNDER - BICYCLE,2016-05-25T00:00:00,2016,May,Wednesday,25,146,1,2016-05-26T00:00:00,2016,May,Thursday,26,147,9,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,,RG,6,WHI,550.0,STOLEN,14243,"{'type': 'Point', 'coordinates': (-79.39846982000002, 43.64477819)}"
-14302,18806,GO-20209025321,THEFT UNDER,2020-10-02T00:00:00,2020,October,Friday,2,276,12,2020-10-03T00:00:00,2020,October,Saturday,3,277,9,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,DB,,RG,21,BLK,0.0,STOLEN,14244,"{'type': 'Point', 'coordinates': (-79.35677669, 43.6529262)}"
-14303,18807,GO-20201898969,THEFT OVER - BICYCLE,2020-09-28T00:00:00,2020,September,Monday,28,272,18,2020-10-06T00:00:00,2020,October,Tuesday,6,280,15,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,IBIS,RIPMO,MT,11,BLKGRY,9000.0,STOLEN,14245,"{'type': 'Point', 'coordinates': (-79.36896015, 43.64393833)}"
-14304,18810,GO-20209026145,THEFT UNDER,2020-10-10T00:00:00,2020,October,Saturday,10,284,14,2020-10-11T00:00:00,2020,October,Sunday,11,285,15,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,700C MENS HYBRI,OT,8,GRY,450.0,STOLEN,14246,"{'type': 'Point', 'coordinates': (-79.36896015, 43.64393833)}"
-14305,21202,GO-20179013384,THEFT UNDER - BICYCLE,2017-08-25T00:00:00,2017,August,Friday,25,237,18,2017-08-25T00:00:00,2017,August,Friday,25,237,23,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,FX1,RG,15,BLK,520.0,STOLEN,14247,"{'type': 'Point', 'coordinates': (-79.39760717, 43.64495335000001)}"
-14306,18813,GO-20201964330,B&E,2020-10-09T00:00:00,2020,October,Friday,9,283,22,2020-10-16T00:00:00,2020,October,Friday,16,290,14,D51,Toronto,77,Waterfront Communities-The Island (77),Universities / Colleges,Educational,UNKNOWN MAKE,,OT,0,LGR,,STOLEN,14248,"{'type': 'Point', 'coordinates': (-79.35677669, 43.6529262)}"
-14307,18814,GO-20201964330,B&E,2020-10-09T00:00:00,2020,October,Friday,9,283,22,2020-10-16T00:00:00,2020,October,Friday,16,290,14,D51,Toronto,77,Waterfront Communities-The Island (77),Universities / Colleges,Educational,UNKNOWN MAKE,,OT,0,WHI,,STOLEN,14249,"{'type': 'Point', 'coordinates': (-79.35677669, 43.6529262)}"
-14308,19054,GO-20169012578,THEFT UNDER,2016-10-25T00:00:00,2016,October,Tuesday,25,299,21,2016-10-25T00:00:00,2016,October,Tuesday,25,299,21,D52,Toronto,77,Waterfront Communities-The Island (77),Unknown,Other,OT,BLACK,RG,1,BLK,0.0,STOLEN,14250,"{'type': 'Point', 'coordinates': (-79.34662225, 43.63906207)}"
-14309,19265,GO-20199026144,THEFT UNDER,2019-08-04T00:00:00,2019,August,Sunday,4,216,17,2019-08-14T00:00:00,2019,August,Wednesday,14,226,7,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,,OT,1,BLK,0.0,STOLEN,14251,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-14310,19493,GO-20189017020,THEFT UNDER - BICYCLE,2018-05-28T00:00:00,2018,May,Monday,28,148,12,2018-06-01T00:00:00,2018,June,Friday,1,152,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,SILHOUETTE2017U,RG,27,BLU,1125.0,STOLEN,14280,"{'type': 'Point', 'coordinates': (-79.3881121, 43.64696458)}"
-14311,19395,GO-2017851546,B&E,2017-05-12T00:00:00,2017,May,Friday,12,132,8,2017-05-14T00:00:00,2017,May,Sunday,14,134,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SIRIUS,LG ROAD HYBRID,OT,15,BLKONG,1734.0,STOLEN,14252,"{'type': 'Point', 'coordinates': (-79.37581636, 43.64427666)}"
-14312,19399,GO-20179006496,THEFT UNDER,2017-03-16T00:00:00,2017,March,Thursday,16,75,9,2017-05-17T00:00:00,2017,May,Wednesday,17,137,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,21,WHI,436.0,STOLEN,14253,"{'type': 'Point', 'coordinates': (-79.38275181, 43.64263544000001)}"
-14313,19401,GO-2017892747,THEFT OF EBIKE UNDER $5000,2017-05-20T00:00:00,2017,May,Saturday,20,140,16,2017-05-22T00:00:00,2017,May,Monday,22,142,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,PEDEGO,INTERCEPTOR,EL,1,SIL,4000.0,STOLEN,14254,"{'type': 'Point', 'coordinates': (-79.38542345, 43.63902804)}"
-14314,19413,GO-20179008887,THEFT UNDER - BICYCLE,2017-06-24T00:00:00,2017,June,Saturday,24,175,23,2017-06-25T00:00:00,2017,June,Sunday,25,176,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,HARPER SINGLE S,RG,1,LGR,300.0,STOLEN,14255,"{'type': 'Point', 'coordinates': (-79.39281928, 43.64732006)}"
-14315,19414,GO-20179008948,THEFT UNDER - BICYCLE,2017-06-26T00:00:00,2017,June,Monday,26,177,0,2017-06-26T00:00:00,2017,June,Monday,26,177,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,RC,9,WHI,1000.0,STOLEN,14256,"{'type': 'Point', 'coordinates': (-79.39388892, 43.64273773)}"
-14316,19416,GO-20171183193,THEFT UNDER - BICYCLE,2017-07-02T00:00:00,2017,July,Sunday,2,183,12,2017-07-02T00:00:00,2017,July,Sunday,2,183,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,,OT,16,GRY,700.0,STOLEN,14257,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-14317,19417,GO-20171183193,THEFT UNDER - BICYCLE,2017-07-02T00:00:00,2017,July,Sunday,2,183,12,2017-07-02T00:00:00,2017,July,Sunday,2,183,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,,MT,16,BLK,1200.0,STOLEN,14258,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-14318,19420,GO-20179009488,THEFT UNDER - BICYCLE,2017-07-02T00:00:00,2017,July,Sunday,2,183,11,2017-07-05T00:00:00,2017,July,Wednesday,5,186,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,ENDURANCE,RC,14,ONG,350.0,STOLEN,14259,"{'type': 'Point', 'coordinates': (-79.39153656, 43.64758619)}"
-14319,19421,GO-20179009572,THEFT UNDER,2017-06-29T00:00:00,2017,June,Thursday,29,180,10,2017-07-06T00:00:00,2017,July,Thursday,6,187,23,D52,Toronto,77,Waterfront Communities-The Island (77),Go Station,Transit,OT,,RC,1,BLK,0.0,STOLEN,14260,"{'type': 'Point', 'coordinates': (-79.37646324, 43.64578351)}"
-14320,19422,GO-20179009915,THEFT UNDER,2017-07-10T00:00:00,2017,July,Monday,10,191,8,2017-07-11T00:00:00,2017,July,Tuesday,11,192,8,D52,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,OT,,MT,8,RED,100.0,STOLEN,14261,"{'type': 'Point', 'coordinates': (-79.38946509, 43.64593813)}"
-14321,19431,GO-20179012147,THEFT UNDER - BICYCLE,2017-08-10T00:00:00,2017,August,Thursday,10,222,19,2017-08-10T00:00:00,2017,August,Thursday,10,222,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,,RG,21,DBL,550.0,STOLEN,14262,"{'type': 'Point', 'coordinates': (-79.39075649, 43.64913078)}"
-14322,19438,GO-20179014436,THEFT UNDER,2017-09-03T00:00:00,2017,September,Sunday,3,246,5,2017-09-11T00:00:00,2017,September,Monday,11,254,8,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,TREK DS 4 BIKE,MT,10,BLK,1300.0,STOLEN,14263,"{'type': 'Point', 'coordinates': (-79.38653359, 43.63885304)}"
-14323,19439,GO-20179015521,THEFT UNDER - BICYCLE,2017-09-22T00:00:00,2017,September,Friday,22,265,19,2017-09-22T00:00:00,2017,September,Friday,22,265,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,JAMIS,RC,21,PNK,500.0,STOLEN,14264,"{'type': 'Point', 'coordinates': (-79.39124574, 43.64342012)}"
-14324,19440,GO-20179015607,THEFT UNDER - BICYCLE,2017-09-24T00:00:00,2017,September,Sunday,24,267,1,2017-09-24T00:00:00,2017,September,Sunday,24,267,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,BLACK HOLE 55,RG,1,BLK,350.0,STOLEN,14265,"{'type': 'Point', 'coordinates': (-79.38867784, 43.64396864)}"
-14325,6647,GO-20201330312,ROBBERY - OTHER,2020-07-17T00:00:00,2020,July,Friday,17,199,21,2020-07-17T00:00:00,2020,July,Friday,17,199,21,D42,Toronto,132,Malvern (132),"Open Areas (Lakes, Parks, Rivers)",Outside,GT,,BM,1,WHI,500.0,STOLEN,25560,"{'type': 'Point', 'coordinates': (-79.2340401, 43.79228606)}"
-14326,19441,GO-20179015651,THEFT UNDER - BICYCLE,2017-09-14T00:00:00,2017,September,Thursday,14,257,8,2017-09-24T00:00:00,2017,September,Sunday,24,267,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,TRANSEO 3.0,TO,21,SIL,850.0,STOLEN,14266,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-14327,19443,GO-20179016234,THEFT UNDER - BICYCLE,2017-10-01T00:00:00,2017,October,Sunday,1,274,18,2017-10-01T00:00:00,2017,October,Sunday,1,274,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,OT,15,BLU,500.0,STOLEN,14267,"{'type': 'Point', 'coordinates': (-79.38973372, 43.6466028)}"
-14328,19445,GO-20179016511,THEFT UNDER,2017-09-28T00:00:00,2017,September,Thursday,28,271,10,2017-10-05T00:00:00,2017,October,Thursday,5,278,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,,RC,40,BRN,300.0,STOLEN,14268,"{'type': 'Point', 'coordinates': (-79.38946509, 43.64593813)}"
-14329,19447,GO-20171796365,THEFT UNDER - BICYCLE,2017-10-03T00:00:00,2017,October,Tuesday,3,276,19,2017-10-03T00:00:00,2017,October,Tuesday,3,276,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CRITICAL,,OT,21,GRYONG,400.0,STOLEN,14269,"{'type': 'Point', 'coordinates': (-79.39075649, 43.64913078)}"
-14330,19448,GO-20179017402,THEFT UNDER - BICYCLE,2017-10-13T00:00:00,2017,October,Friday,13,286,6,2017-10-17T00:00:00,2017,October,Tuesday,17,290,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,,RG,15,BLK,800.0,STOLEN,14270,"{'type': 'Point', 'coordinates': (-79.38914103, 43.64945651)}"
-14331,19449,GO-20179017546,THEFT UNDER,2017-10-10T00:00:00,2017,October,Tuesday,10,283,16,2017-10-19T00:00:00,2017,October,Thursday,19,292,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,BIG HIT 3,MT,9,RED,3136.0,STOLEN,14271,"{'type': 'Point', 'coordinates': (-79.39124176, 43.640111790000006)}"
-14332,19451,GO-20179017785,THEFT UNDER,2017-10-20T00:00:00,2017,October,Friday,20,293,19,2017-10-20T00:00:00,2017,October,Friday,20,293,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,SPECIALLE OTTO,RC,8,BLK,400.0,STOLEN,14272,"{'type': 'Point', 'coordinates': (-79.38065193, 43.64100385)}"
-14333,19468,GO-20189002385,THEFT UNDER - BICYCLE,2018-01-23T00:00:00,2018,January,Tuesday,23,23,20,2018-01-24T00:00:00,2018,January,Wednesday,24,24,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SA,BLUR XC,MT,27,BLU,750.0,STOLEN,14273,"{'type': 'Point', 'coordinates': (-79.39124176, 43.640111790000006)}"
-14334,19472,GO-20189008734,THEFT UNDER - BICYCLE,2018-03-19T00:00:00,2018,March,Monday,19,78,9,2018-03-20T00:00:00,2018,March,Tuesday,20,79,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,LIV ALIGHT 1,RG,15,BLK,1000.0,STOLEN,14274,"{'type': 'Point', 'coordinates': (-79.38338679, 43.64508285)}"
-14335,19474,GO-20189009733,THEFT UNDER,2018-02-21T00:00:00,2018,February,Wednesday,21,52,14,2018-03-27T00:00:00,2018,March,Tuesday,27,86,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GF,SIMPLE CITY 8,OT,8,CRM,1000.0,STOLEN,14275,"{'type': 'Point', 'coordinates': (-79.38091602, 43.64168463)}"
-14336,19477,GO-20189011257,THEFT UNDER - BICYCLE,2018-04-03T00:00:00,2018,April,Tuesday,3,93,12,2018-04-11T00:00:00,2018,April,Wednesday,11,101,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,TARMAC,RC,21,BLK,2000.0,STOLEN,14276,"{'type': 'Point', 'coordinates': (-79.39389489, 43.64651184)}"
-14337,19479,GO-20189012430,B&E,2018-04-22T00:00:00,2018,April,Sunday,22,112,10,2018-04-22T00:00:00,2018,April,Sunday,22,112,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CA,CAAD 8 105,RC,22,BLK,1800.0,STOLEN,14277,"{'type': 'Point', 'coordinates': (-79.39124176, 43.640111790000006)}"
-14338,19486,GO-20189015925,THEFT UNDER,2018-05-19T00:00:00,2018,May,Saturday,19,139,17,2018-05-23T00:00:00,2018,May,Wednesday,23,143,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GT,AVALANCHE,MT,20,GRY,1000.0,STOLEN,14278,"{'type': 'Point', 'coordinates': (-79.38946509, 43.64593813)}"
-14339,19489,GO-20189016208,THEFT UNDER,2018-05-25T00:00:00,2018,May,Friday,25,145,12,2018-05-25T00:00:00,2018,May,Friday,25,145,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,21,BLK,700.0,STOLEN,14279,"{'type': 'Point', 'coordinates': (-79.3932382, 43.64839265)}"
-14340,19494,GO-20189017020,THEFT UNDER - BICYCLE,2018-05-28T00:00:00,2018,May,Monday,28,148,12,2018-06-01T00:00:00,2018,June,Friday,1,152,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,MIXED TAPE 2016,RG,7,GRY,695.0,STOLEN,14281,"{'type': 'Point', 'coordinates': (-79.3881121, 43.64696458)}"
-14341,19495,GO-20189017639,THEFT UNDER - BICYCLE,2018-05-27T00:00:00,2018,May,Sunday,27,147,17,2018-06-06T00:00:00,2018,June,Wednesday,6,157,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,REFER TO ATTACH,OT,1,BLK,1000.0,STOLEN,14282,"{'type': 'Point', 'coordinates': (-79.38888568, 43.64881159)}"
-14342,19497,GO-20189018393,THEFT UNDER - BICYCLE,2018-06-12T00:00:00,2018,June,Tuesday,12,163,9,2018-06-12T00:00:00,2018,June,Tuesday,12,163,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,,OT,30,BGE,2500.0,STOLEN,14283,"{'type': 'Point', 'coordinates': (-79.38946509, 43.64593813)}"
-14343,19499,GO-20189019133,THEFT UNDER,2018-06-14T00:00:00,2018,June,Thursday,14,165,12,2018-06-18T00:00:00,2018,June,Monday,18,169,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE 2,OT,24,BLK,620.0,STOLEN,14284,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-14344,19504,GO-20189020362,THEFT UNDER - BICYCLE,2018-06-24T00:00:00,2018,June,Sunday,24,175,23,2018-06-26T00:00:00,2018,June,Tuesday,26,177,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,MT,21,,530.0,STOLEN,14285,"{'type': 'Point', 'coordinates': (-79.39296466, 43.64056148000001)}"
-14345,19507,GO-20189021375,THEFT UNDER - BICYCLE,2018-06-14T00:00:00,2018,June,Thursday,14,165,22,2018-07-05T00:00:00,2018,July,Thursday,5,186,23,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,SPECIALIZED,RC,21,PLE,2000.0,STOLEN,14286,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-14346,19510,GO-20189022431,THEFT UNDER - BICYCLE,2018-07-15T00:00:00,2018,July,Sunday,15,196,13,2018-07-15T00:00:00,2018,July,Sunday,15,196,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,URBANIA,RG,27,BLK,700.0,STOLEN,14287,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-14347,19513,GO-20189022990,THEFT UNDER - BICYCLE,2018-07-18T00:00:00,2018,July,Wednesday,18,199,22,2018-07-18T00:00:00,2018,July,Wednesday,18,199,23,D52,Toronto,77,Waterfront Communities-The Island (77),Other Regional Transit System Vehicle,Transit,OT,FELT Z100,RC,16,BLK,1000.0,STOLEN,14288,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-14348,19514,GO-20189023118,THEFT UNDER - BICYCLE,2018-07-19T00:00:00,2018,July,Thursday,19,200,13,2018-07-19T00:00:00,2018,July,Thursday,19,200,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,SC 700C CIRCUIT,TO,14,BLU,339.0,STOLEN,14289,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-14349,19518,GO-20189023800,THEFT UNDER - BICYCLE,2018-07-15T00:00:00,2018,July,Sunday,15,196,15,2018-07-24T00:00:00,2018,July,Tuesday,24,205,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,HYBRID,OT,18,PLE,800.0,STOLEN,14290,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-14350,19520,GO-20189023928,THEFT UNDER - BICYCLE,2018-07-24T00:00:00,2018,July,Tuesday,24,205,20,2018-07-25T00:00:00,2018,July,Wednesday,25,206,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,RONAN,TO,18,BRN,600.0,STOLEN,14291,"{'type': 'Point', 'coordinates': (-79.39124176, 43.640111790000006)}"
-14351,19521,GO-20189024031,THEFT UNDER - BICYCLE,2018-06-26T00:00:00,2018,June,Tuesday,26,177,15,2018-07-26T00:00:00,2018,July,Thursday,26,207,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,MOUNTAIN,MT,21,GRY,500.0,STOLEN,14292,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-14352,19528,GO-20189026244,THEFT UNDER - BICYCLE,2018-08-13T00:00:00,2018,August,Monday,13,225,9,2018-08-13T00:00:00,2018,August,Monday,13,225,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,VITA SPORT,OT,12,OTH,759.0,STOLEN,14293,"{'type': 'Point', 'coordinates': (-79.38888568, 43.64881159)}"
-14353,19532,GO-20189027149,THEFT UNDER - BICYCLE,2018-08-18T00:00:00,2018,August,Saturday,18,230,15,2018-08-20T00:00:00,2018,August,Monday,20,232,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CA,CANNONDALE BADB,MT,24,BLK,1899.0,STOLEN,14294,"{'type': 'Point', 'coordinates': (-79.39389489, 43.64651184)}"
-14354,19535,GO-20189027667,THEFT UNDER - BICYCLE,2018-08-23T00:00:00,2018,August,Thursday,23,235,9,2018-08-23T00:00:00,2018,August,Thursday,23,235,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,ANDANTE 3,RC,18,ONG,2000.0,STOLEN,14295,"{'type': 'Point', 'coordinates': (-79.38091602, 43.64168463)}"
-14355,19539,GO-20189029111,THEFT UNDER - BICYCLE,2018-09-04T00:00:00,2018,September,Tuesday,4,247,20,2018-09-04T00:00:00,2018,September,Tuesday,4,247,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,POMPETAMINE,OT,1,BLK,1000.0,STOLEN,14296,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-14356,19541,GO-20189029464,THEFT UNDER,2018-09-07T00:00:00,2018,September,Friday,7,250,16,2018-09-07T00:00:00,2018,September,Friday,7,250,17,D52,Toronto,77,Waterfront Communities-The Island (77),Unknown,Other,UK,VIA MONTEGA,RC,10,OTH,500.0,STOLEN,14297,"{'type': 'Point', 'coordinates': (-79.39075649, 43.64913078)}"
-14357,19542,GO-20189029586,THEFT UNDER - BICYCLE,2018-09-07T00:00:00,2018,September,Friday,7,250,23,2018-09-08T00:00:00,2018,September,Saturday,8,251,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,PROJEKD,RG,1,BLK,450.0,STOLEN,14298,"{'type': 'Point', 'coordinates': (-79.39124574, 43.64342012)}"
-14358,19549,GO-20189030868,THEFT UNDER,2018-09-14T00:00:00,2018,September,Friday,14,257,21,2018-09-17T00:00:00,2018,September,Monday,17,260,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,PROJEKT 8,RG,8,BLU,520.0,STOLEN,14299,"{'type': 'Point', 'coordinates': (-79.39153656, 43.64758619)}"
-14359,19551,GO-20189031068,THEFT UNDER - BICYCLE,2018-09-18T00:00:00,2018,September,Tuesday,18,261,9,2018-09-19T00:00:00,2018,September,Wednesday,19,262,10,D52,Toronto,77,Waterfront Communities-The Island (77),Unknown,Other,OT,SUB 30,TO,24,OTH,400.0,STOLEN,14300,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-14360,19552,GO-20189031347,THEFT UNDER - BICYCLE,2018-09-20T00:00:00,2018,September,Thursday,20,263,21,2018-09-21T00:00:00,2018,September,Friday,21,264,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,SCRAP,MT,16,BLK,100.0,STOLEN,14301,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-14361,22741,GO-20209016980,THEFT UNDER,2020-07-06T00:00:00,2020,July,Monday,6,188,21,2020-07-06T00:00:00,2020,July,Monday,6,188,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,FX3 DISC,RG,27,BLK,949.0,STOLEN,14302,"{'type': 'Point', 'coordinates': (-79.39281928, 43.64732006)}"
-14362,22742,GO-20209017128,THEFT UNDER,2020-07-04T00:00:00,2020,July,Saturday,4,186,0,2020-07-08T00:00:00,2020,July,Wednesday,8,190,14,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SU,700C,OT,14,BLU,300.0,STOLEN,14303,"{'type': 'Point', 'coordinates': (-79.35677669, 43.6529262)}"
-14363,22745,GO-20209017517,THEFT UNDER,2020-07-08T00:00:00,2020,July,Wednesday,8,190,9,2020-07-14T00:00:00,2020,July,Tuesday,14,196,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,KH,VITAMIN A,RG,7,BLK,735.0,STOLEN,14304,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-14364,22747,GO-20209017867,THEFT UNDER,2020-07-18T00:00:00,2020,July,Saturday,18,200,11,2020-07-18T00:00:00,2020,July,Saturday,18,200,12,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,,RG,7,PNK,400.0,STOLEN,14305,"{'type': 'Point', 'coordinates': (-79.37146354, 43.64763677)}"
-14365,22751,GO-20209018593,THEFT UNDER,2020-07-20T00:00:00,2020,July,Monday,20,202,0,2020-07-26T00:00:00,2020,July,Sunday,26,208,13,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,18,SIL,700.0,STOLEN,14306,"{'type': 'Point', 'coordinates': (-79.35795114, 43.65265813)}"
-14366,22754,GO-20201442609,THEFT UNDER - BICYCLE,2020-08-02T00:00:00,2020,August,Sunday,2,215,19,2020-08-02T00:00:00,2020,August,Sunday,2,215,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,MT,1,BLURED,500.0,STOLEN,14307,"{'type': 'Point', 'coordinates': (-79.39124574, 43.64342012)}"
-14367,22758,GO-20201475302,THEFT UNDER,2020-08-07T00:00:00,2020,August,Friday,7,220,13,2020-08-07T00:00:00,2020,August,Friday,7,220,15,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,INDE4 FORNA,RG,3,BLK,700.0,STOLEN,14308,"{'type': 'Point', 'coordinates': (-79.37089231, 43.64822515)}"
-14368,699,GO-20179008781,B&E,2017-06-10T00:00:00,2017,June,Saturday,10,161,14,2017-06-23T00:00:00,2017,June,Friday,23,174,15,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,,TO,24,BLK,1500.0,STOLEN,15181,"{'type': 'Point', 'coordinates': (-79.40583441, 43.65867014)}"
-14369,22759,GO-20209020171,THEFT FROM MOTOR VEHICLE UNDER,2020-08-13T00:00:00,2020,August,Thursday,13,226,23,2020-08-14T00:00:00,2020,August,Friday,14,227,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,EM,F6,EL,30,GLD,1600.0,STOLEN,14309,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-14370,22772,GO-20209022330,THEFT UNDER,2020-08-08T00:00:00,2020,August,Saturday,8,221,1,2020-09-04T00:00:00,2020,September,Friday,4,248,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,1,BLK,500.0,STOLEN,14310,"{'type': 'Point', 'coordinates': (-79.38860347, 43.65042088)}"
-14371,22773,GO-20209022700,THEFT UNDER,2020-09-07T00:00:00,2020,September,Monday,7,251,13,2020-09-09T00:00:00,2020,September,Wednesday,9,253,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,HOOLIGAN,MT,24,GRN,300.0,STOLEN,14311,"{'type': 'Point', 'coordinates': (-79.38914103, 43.64945651)}"
-14372,22776,GO-20209023023,THEFT UNDER,2020-09-11T00:00:00,2020,September,Friday,11,255,17,2020-09-11T00:00:00,2020,September,Friday,11,255,21,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,ALLEGRO,OT,21,RED,850.0,STOLEN,14312,"{'type': 'Point', 'coordinates': (-79.35795114, 43.65265813)}"
-14373,22777,GO-20209023282,THEFT UNDER,2020-07-01T00:00:00,2020,July,Wednesday,1,183,10,2020-09-15T00:00:00,2020,September,Tuesday,15,259,10,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CC,,MT,21,,0.0,STOLEN,14313,"{'type': 'Point', 'coordinates': (-79.36278316, 43.64850402)}"
-14374,22785,GO-20201898969,THEFT OVER - BICYCLE,2020-09-28T00:00:00,2020,September,Monday,28,272,18,2020-10-06T00:00:00,2020,October,Tuesday,6,280,15,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,RIPMO AF,MT,11,GRY,9000.0,STOLEN,14314,"{'type': 'Point', 'coordinates': (-79.36896015, 43.64393833)}"
-14375,22787,GO-20209025925,THEFT UNDER,2020-08-17T00:00:00,2020,August,Monday,17,230,14,2020-10-09T00:00:00,2020,October,Friday,9,283,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,TREK SINGLETRAC,MT,1,BLU,700.0,STOLEN,14315,"{'type': 'Point', 'coordinates': (-79.38143561, 43.64291214)}"
-14376,22799,GO-20209028248,THEFT UNDER,2020-10-30T00:00:00,2020,October,Friday,30,304,11,2020-10-31T00:00:00,2020,October,Saturday,31,305,15,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,2019 DIVERGE E5,RC,11,TAN,2500.0,STOLEN,14316,"{'type': 'Point', 'coordinates': (-79.37027555, 43.64981872)}"
-14377,22910,GO-20159004324,THEFT UNDER,2015-07-06T00:00:00,2015,July,Monday,6,187,15,2015-07-09T00:00:00,2015,July,Thursday,9,190,0,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,THE DUKE,RG,1,BLK,500.0,STOLEN,14317,"{'type': 'Point', 'coordinates': (-79.39948839, 43.63339968)}"
-14378,22925,GO-20154,THEFT UNDER,2015-08-28T00:00:00,2015,August,Friday,28,240,23,2015-08-29T00:00:00,2015,August,Saturday,29,241,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,GI,N3,FO,3,PLE,600.0,STOLEN,14318,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-14379,22999,GO-20169013125,THEFT UNDER,2016-11-07T00:00:00,2016,November,Monday,7,312,19,2016-11-08T00:00:00,2016,November,Tuesday,8,313,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MILANO,RG,21,BLK,540.0,STOLEN,14319,"{'type': 'Point', 'coordinates': (-79.39048611, 43.645008190000006)}"
-14380,23011,GO-20179005928,THEFT UNDER - BICYCLE,2017-05-08T00:00:00,2017,May,Monday,8,128,16,2017-05-08T00:00:00,2017,May,Monday,8,128,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,CAMPUS 202,RG,24,BLK,600.0,STOLEN,14320,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-14381,23025,GO-20179007908,THEFT UNDER - BICYCLE,2017-06-11T00:00:00,2017,June,Sunday,11,162,8,2017-06-11T00:00:00,2017,June,Sunday,11,162,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,CC,"ALPHA 29""""",MT,21,GRN,639.0,STOLEN,14321,"{'type': 'Point', 'coordinates': (-79.38143561, 43.64291214)}"
-14382,23026,GO-20179007927,THEFT UNDER,2017-06-07T00:00:00,2017,June,Wednesday,7,158,18,2017-06-12T00:00:00,2017,June,Monday,12,163,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,,MT,18,BLK,150.0,STOLEN,14322,"{'type': 'Point', 'coordinates': (-79.38607074, 43.64739453)}"
-14383,23027,GO-20179008240,THEFT UNDER - BICYCLE,2017-06-14T00:00:00,2017,June,Wednesday,14,165,18,2017-06-16T00:00:00,2017,June,Friday,16,167,13,D52,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,FJ,HYBRID,TO,21,BLU,500.0,STOLEN,14323,"{'type': 'Point', 'coordinates': (-79.38542345, 43.63902804)}"
-14384,23032,GO-20179008656,THEFT UNDER,2017-06-21T00:00:00,2017,June,Wednesday,21,172,16,2017-06-22T00:00:00,2017,June,Thursday,22,173,2,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,PRESTO ROAD BIK,OT,21,OTH,390.0,STOLEN,14324,"{'type': 'Point', 'coordinates': (-79.39340883, 43.6494058)}"
-14385,23036,GO-20171129254,THEFT UNDER - BICYCLE,2017-06-24T00:00:00,2017,June,Saturday,24,175,14,2017-06-24T00:00:00,2017,June,Saturday,24,175,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,GHOST KATO1,MT,24,BLKRED,750.0,STOLEN,14325,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-14386,23040,GO-20179009955,THEFT UNDER - BICYCLE,2017-07-07T00:00:00,2017,July,Friday,7,188,15,2017-07-11T00:00:00,2017,July,Tuesday,11,192,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,RA,,MT,12,TRQ,350.0,STOLEN,14326,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-14387,23044,GO-20179011714,THEFT UNDER - BICYCLE,2017-07-29T00:00:00,2017,July,Saturday,29,210,18,2017-08-04T00:00:00,2017,August,Friday,4,216,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SC,,MT,21,ONG,700.0,STOLEN,14327,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-14388,23047,GO-20179012143,THEFT UNDER,2017-08-10T00:00:00,2017,August,Thursday,10,222,21,2017-08-10T00:00:00,2017,August,Thursday,10,222,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SC,GTX2 HYBRID BIK,OT,21,RED,450.0,STOLEN,14328,"{'type': 'Point', 'coordinates': (-79.37778379, 43.6430065)}"
-14389,23049,GO-20179012382,THEFT UNDER - BICYCLE,2017-08-13T00:00:00,2017,August,Sunday,13,225,14,2017-08-14T00:00:00,2017,August,Monday,14,226,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,EN 14781,RC,21,WHI,1000.0,STOLEN,14329,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-14390,23051,GO-20171477785,THEFT UNDER - BICYCLE,2017-08-08T00:00:00,2017,August,Tuesday,8,220,8,2017-08-16T00:00:00,2017,August,Wednesday,16,228,8,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,,OT,21,WHI,600.0,STOLEN,14330,"{'type': 'Point', 'coordinates': (-79.3881121, 43.64696458)}"
-14391,23059,GO-20179015189,THEFT FROM MOTOR VEHICLE UNDER,2017-09-17T00:00:00,2017,September,Sunday,17,260,13,2017-09-19T00:00:00,2017,September,Tuesday,19,262,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,SILQUE,RC,21,BLU,4500.0,STOLEN,14331,"{'type': 'Point', 'coordinates': (-79.38542345, 43.63902804)}"
-14392,23062,GO-20179016223,THEFT UNDER - BICYCLE,2017-10-01T00:00:00,2017,October,Sunday,1,274,13,2017-10-01T00:00:00,2017,October,Sunday,1,274,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KHS,TR101,TO,21,BLU,1065.0,STOLEN,14332,"{'type': 'Point', 'coordinates': (-79.38542345, 43.63902804)}"
-14393,23071,GO-20179017546,THEFT UNDER,2017-10-10T00:00:00,2017,October,Tuesday,10,283,16,2017-10-19T00:00:00,2017,October,Thursday,19,292,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,HOLD STEADY,RG,8,BLK,1433.0,RECOVERED,14333,"{'type': 'Point', 'coordinates': (-79.39124176, 43.640111790000006)}"
-14394,23072,GO-20179017546,THEFT UNDER,2017-10-10T00:00:00,2017,October,Tuesday,10,283,16,2017-10-19T00:00:00,2017,October,Thursday,19,292,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,BIG HIT 3,MT,9,RED,3136.0,STOLEN,14334,"{'type': 'Point', 'coordinates': (-79.39124176, 43.640111790000006)}"
-14395,23073,GO-20179018183,THEFT UNDER - BICYCLE,2017-10-24T00:00:00,2017,October,Tuesday,24,297,16,2017-10-25T00:00:00,2017,October,Wednesday,25,298,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,SEVILLE STEEL B,RG,1,BLU,770.0,STOLEN,14335,"{'type': 'Point', 'coordinates': (-79.39281928, 43.64732006)}"
-14396,23075,GO-20179018559,THEFT UNDER,2017-10-28T00:00:00,2017,October,Saturday,28,301,13,2017-10-30T00:00:00,2017,October,Monday,30,303,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,GI,,MT,9,WHI,300.0,STOLEN,14336,"{'type': 'Point', 'coordinates': (-79.38867784, 43.64396864)}"
-14397,20452,GO-20159009164,THEFT UNDER,2015-10-29T00:00:00,2015,October,Thursday,29,302,8,2015-10-30T00:00:00,2015,October,Friday,30,303,8,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CA,,RC,22,BLK,1600.0,STOLEN,14337,"{'type': 'Point', 'coordinates': (-79.36607348, 43.64932911)}"
-14398,23076,GO-20171969830,B&E,2017-10-29T00:00:00,2017,October,Sunday,29,302,5,2017-10-31T00:00:00,2017,October,Tuesday,31,304,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,OT,0,,3250.0,STOLEN,14338,"{'type': 'Point', 'coordinates': (-79.39186446, 43.64164294)}"
-14399,23077,GO-20171969830,B&E,2017-10-29T00:00:00,2017,October,Sunday,29,302,5,2017-10-31T00:00:00,2017,October,Tuesday,31,304,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,OT,0,,3250.0,STOLEN,14339,"{'type': 'Point', 'coordinates': (-79.39186446, 43.64164294)}"
-14400,3093,GO-20189025323,THEFT UNDER - BICYCLE,2018-08-03T00:00:00,2018,August,Friday,3,215,18,2018-08-06T00:00:00,2018,August,Monday,6,218,18,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,OT,24,BLK,600.0,STOLEN,14340,"{'type': 'Point', 'coordinates': (-79.38918474, 43.65468421)}"
-14401,23078,GO-20179018777,THEFT UNDER - BICYCLE,2017-10-30T00:00:00,2017,October,Monday,30,303,21,2017-11-02T00:00:00,2017,November,Thursday,2,306,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,DISTRICT TRACK,RC,1,BLK,700.0,STOLEN,14341,"{'type': 'Point', 'coordinates': (-79.38065193, 43.64100385)}"
-14402,23080,GO-20172003512,THEFT UNDER - BICYCLE,2017-11-06T00:00:00,2017,November,Monday,6,310,8,2017-11-06T00:00:00,2017,November,Monday,6,310,8,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,TARMAC M2,RC,18,RED,1865.0,STOLEN,14342,"{'type': 'Point', 'coordinates': (-79.39592984, 43.64780696)}"
-14403,23081,GO-20172003512,THEFT UNDER - BICYCLE,2017-11-06T00:00:00,2017,November,Monday,6,310,8,2017-11-06T00:00:00,2017,November,Monday,6,310,8,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ALLEZ SPORT,RC,18,WHI,1500.0,STOLEN,14343,"{'type': 'Point', 'coordinates': (-79.39592984, 43.64780696)}"
-14404,702,GO-20179008820,THEFT UNDER - BICYCLE,2017-06-24T00:00:00,2017,June,Saturday,24,175,9,2017-06-24T00:00:00,2017,June,Saturday,24,175,13,D14,Toronto,79,University (79),Schools During Supervised Activity,Educational,OT,,MT,24,BLK,550.0,STOLEN,15182,"{'type': 'Point', 'coordinates': (-79.41021074, 43.66266863)}"
-14405,23089,GO-20189005666,THEFT UNDER - BICYCLE,2018-02-22T00:00:00,2018,February,Thursday,22,53,14,2018-02-22T00:00:00,2018,February,Thursday,22,53,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,VENTURA SPORT,RC,8,BLK,1000.0,STOLEN,14344,"{'type': 'Point', 'coordinates': (-79.38091602, 43.64168463)}"
-14406,23094,GO-20189009482,THEFT UNDER - BICYCLE,2018-03-26T00:00:00,2018,March,Monday,26,85,1,2018-03-26T00:00:00,2018,March,Monday,26,85,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,SINGLE SPEED,OT,1,WHI,300.0,STOLEN,14345,"{'type': 'Point', 'coordinates': (-79.38684132, 43.64925417)}"
-14407,23096,GO-20189010021,THEFT UNDER - BICYCLE,2018-01-01T00:00:00,2018,January,Monday,1,1,12,2018-03-30T00:00:00,2018,March,Friday,30,89,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,8,GRY,500.0,STOLEN,14346,"{'type': 'Point', 'coordinates': (-79.38396859, 43.64239001)}"
-14408,23106,GO-20189014876,THEFT UNDER - BICYCLE,2018-05-10T00:00:00,2018,May,Thursday,10,130,19,2018-05-14T00:00:00,2018,May,Monday,14,134,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SU,,MT,21,BLK,260.0,STOLEN,14347,"{'type': 'Point', 'coordinates': (-79.3881121, 43.64696458)}"
-14409,23107,GO-20189016087,THEFT UNDER - BICYCLE,2018-05-23T00:00:00,2018,May,Wednesday,23,143,18,2018-05-24T00:00:00,2018,May,Thursday,24,144,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SC,GTX-2 WOMEN'S H,RG,6,GRY,50.0,STOLEN,14348,"{'type': 'Point', 'coordinates': (-79.37778379, 43.6430065)}"
-14410,23116,GO-20189018692,THEFT UNDER - BICYCLE,2018-06-12T00:00:00,2018,June,Tuesday,12,163,8,2018-06-14T00:00:00,2018,June,Thursday,14,165,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,SUPERCYCLE PATH,RG,7,TRQ,300.0,STOLEN,14349,"{'type': 'Point', 'coordinates': (-79.38143561, 43.64291214)}"
-14411,23120,GO-20189019776,THEFT UNDER - BICYCLE,2018-06-22T00:00:00,2018,June,Friday,22,173,9,2018-06-22T00:00:00,2018,June,Friday,22,173,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,ROADSTER SPORT,RG,3,WHI,875.0,STOLEN,14350,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-14412,23121,GO-20189020431,THEFT UNDER - BICYCLE,2018-06-12T00:00:00,2018,June,Tuesday,12,163,11,2018-06-27T00:00:00,2018,June,Wednesday,27,178,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,MT,15,GLD,800.0,STOLEN,14351,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-14413,23124,GO-20189022990,THEFT UNDER - BICYCLE,2018-07-18T00:00:00,2018,July,Wednesday,18,199,22,2018-07-18T00:00:00,2018,July,Wednesday,18,199,23,D52,Toronto,77,Waterfront Communities-The Island (77),Other Regional Transit System Vehicle,Transit,CC,CCM,MT,4,BLK,0.0,STOLEN,14352,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-14414,23125,GO-20189023632,THEFT UNDER,2018-07-18T00:00:00,2018,July,Wednesday,18,199,21,2018-07-23T00:00:00,2018,July,Monday,23,204,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SC,,MT,24,OTH,400.0,STOLEN,14353,"{'type': 'Point', 'coordinates': (-79.39153656, 43.64758619)}"
-14415,21212,GO-20179014415,THEFT UNDER - BICYCLE,2017-09-10T00:00:00,2017,September,Sunday,10,253,17,2017-09-10T00:00:00,2017,September,Sunday,10,253,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,AQUILA,PLUG 0,RG,1,BGE,680.0,STOLEN,14354,"{'type': 'Point', 'coordinates': (-79.39924205, 43.63909783)}"
-14416,23698,GO-2016919507,THEFT UNDER - BICYCLE,2016-05-28T00:00:00,2016,May,Saturday,28,149,5,2016-05-28T00:00:00,2016,May,Saturday,28,149,5,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,ESCAPE,MT,21,BLK,500.0,STOLEN,14355,"{'type': 'Point', 'coordinates': (-79.37146354, 43.64763677)}"
-14417,23136,GO-20189025569,THEFT UNDER - BICYCLE,2018-07-29T00:00:00,2018,July,Sunday,29,210,15,2018-08-08T00:00:00,2018,August,Wednesday,8,220,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,TO,20,BLK,1500.0,STOLEN,14356,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-14418,23139,GO-20189026160,THEFT UNDER,2018-07-28T00:00:00,2018,July,Saturday,28,209,13,2018-08-13T00:00:00,2018,August,Monday,13,225,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CR,CARRERA SUBWAY,RG,12,BLK,300.0,STOLEN,14357,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-14419,23144,GO-20189029121,B&E,2018-08-17T00:00:00,2018,August,Friday,17,229,19,2018-09-04T00:00:00,2018,September,Tuesday,4,247,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,RM,,RG,24,RED,1199.0,STOLEN,14358,"{'type': 'Point', 'coordinates': (-79.38275181, 43.64263544000001)}"
-14420,23150,GO-20189030524,THEFT UNDER - BICYCLE,2018-09-09T00:00:00,2018,September,Sunday,9,252,22,2018-09-15T00:00:00,2018,September,Saturday,15,258,0,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,21,PLE,500.0,STOLEN,14359,"{'type': 'Point', 'coordinates': (-79.39109731, 43.64989719)}"
-14421,23162,GO-20189033742,B&E,2018-09-14T00:00:00,2018,September,Friday,14,257,21,2018-10-11T00:00:00,2018,October,Thursday,11,284,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CA,,OT,9,,0.0,STOLEN,14360,"{'type': 'Point', 'coordinates': (-79.39388892, 43.64273773)}"
-14422,23165,GO-20189034868,THEFT UNDER - BICYCLE,2018-10-19T00:00:00,2018,October,Friday,19,292,21,2018-10-20T00:00:00,2018,October,Saturday,20,293,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ROAD BIKE,RC,1,WHI,1500.0,STOLEN,14361,"{'type': 'Point', 'coordinates': (-79.38091602, 43.64168463)}"
-14423,23166,GO-20189035123,THEFT UNDER - BICYCLE,2018-10-19T00:00:00,2018,October,Friday,19,292,11,2018-10-23T00:00:00,2018,October,Tuesday,23,296,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,,RC,12,BLK,1000.0,STOLEN,14362,"{'type': 'Point', 'coordinates': (-79.38867784, 43.64396864)}"
-14424,23168,GO-20189039019,THEFT UNDER - BICYCLE,2018-11-18T00:00:00,2018,November,Sunday,18,322,14,2018-11-20T00:00:00,2018,November,Tuesday,20,324,14,D52,Toronto,77,Waterfront Communities-The Island (77),Go Station,Transit,OT,,RG,1,,60.0,STOLEN,14363,"{'type': 'Point', 'coordinates': (-79.37646324, 43.64578351)}"
-14425,23178,GO-20199016063,THEFT UNDER,2019-05-21T00:00:00,2019,May,Tuesday,21,141,22,2019-05-23T00:00:00,2019,May,Thursday,23,143,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,21,BLK,500.0,STOLEN,14364,"{'type': 'Point', 'coordinates': (-79.39184935, 43.63765238)}"
-14426,1518,GO-20171745312,THEFT UNDER - BICYCLE,2017-08-15T00:00:00,2017,August,Tuesday,15,227,17,2017-09-26T00:00:00,2017,September,Tuesday,26,269,7,D52,Toronto,79,University (79),Universities / Colleges,Educational,NAKAMURA,700C,RG,0,,189.0,STOLEN,15207,"{'type': 'Point', 'coordinates': (-79.39316984, 43.66306859)}"
-14427,23179,GO-20199016949,THEFT UNDER,2019-05-30T00:00:00,2019,May,Thursday,30,150,18,2019-05-31T00:00:00,2019,May,Friday,31,151,2,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,CODA SPORT,OT,24,SIL,600.0,STOLEN,14365,"{'type': 'Point', 'coordinates': (-79.37581636, 43.64427666)}"
-14428,23182,GO-20199018975,THEFT UNDER,2019-06-17T00:00:00,2019,June,Monday,17,168,15,2019-06-17T00:00:00,2019,June,Monday,17,168,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,12,BLK,1275.0,STOLEN,14366,"{'type': 'Point', 'coordinates': (-79.39124176, 43.640111790000006)}"
-14429,23184,GO-20199019514,THEFT UNDER,2019-06-21T00:00:00,2019,June,Friday,21,172,16,2019-06-21T00:00:00,2019,June,Friday,21,172,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,STORM 2,MT,20,BLK,900.0,STOLEN,14367,"{'type': 'Point', 'coordinates': (-79.38338679, 43.64508285)}"
-14430,23185,GO-20199019741,THEFT UNDER,2019-06-22T00:00:00,2019,June,Saturday,22,173,5,2019-06-23T00:00:00,2019,June,Sunday,23,174,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,NIVOLET,RC,21,GRY,1654.0,STOLEN,14368,"{'type': 'Point', 'coordinates': (-79.38330674, 43.64067063)}"
-14431,23186,GO-20199020892,THEFT UNDER,2019-06-27T00:00:00,2019,June,Thursday,27,178,17,2019-07-03T00:00:00,2019,July,Wednesday,3,184,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,DIVERGE E5,RC,8,BLK,1400.0,STOLEN,14369,"{'type': 'Point', 'coordinates': (-79.39592984, 43.64780696)}"
-14432,23188,GO-20199021327,THEFT UNDER,2019-07-06T00:00:00,2019,July,Saturday,6,187,19,2019-07-07T00:00:00,2019,July,Sunday,7,188,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,BEASLEY,MT,7,BLK,904.0,STOLEN,14370,"{'type': 'Point', 'coordinates': (-79.38914103, 43.64945651)}"
-14433,23191,GO-20199022194,THEFT UNDER,2019-06-27T00:00:00,2019,June,Thursday,27,178,4,2019-07-13T00:00:00,2019,July,Saturday,13,194,18,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,10,GRY,3500.0,STOLEN,14371,"{'type': 'Point', 'coordinates': (-79.37142509, 43.64944981)}"
-14434,6933,GO-20209019875,THEFT UNDER,2020-08-11T00:00:00,2020,August,Tuesday,11,224,8,2020-08-11T00:00:00,2020,August,Tuesday,11,224,10,D14,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,BI,PISTA,RC,1,SIL,1000.0,STOLEN,14372,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-14435,23192,GO-20199022311,THEFT UNDER,2019-07-12T00:00:00,2019,July,Friday,12,193,17,2019-07-15T00:00:00,2019,July,Monday,15,196,11,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GF,,MT,6,RED,600.0,STOLEN,14373,"{'type': 'Point', 'coordinates': (-79.35677669, 43.6529262)}"
-14436,23204,GO-20189030740,B&E,2018-09-14T00:00:00,2018,September,Friday,14,257,15,2018-09-16T00:00:00,2018,September,Sunday,16,259,23,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,5,BLU,0.0,STOLEN,14374,"{'type': 'Point', 'coordinates': (-79.37646324, 43.64578351)}"
-14437,19555,GO-20189031997,THEFT UNDER - BICYCLE,2018-08-23T00:00:00,2018,August,Thursday,23,235,18,2018-09-26T00:00:00,2018,September,Wednesday,26,269,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,PARATROOPER,MT,21,BLK,1080.0,STOLEN,14375,"{'type': 'Point', 'coordinates': (-79.38442526, 43.6402504)}"
-14438,23217,GO-20189034075,THEFT UNDER - BICYCLE,2018-10-14T00:00:00,2018,October,Sunday,14,287,19,2018-10-14T00:00:00,2018,October,Sunday,14,287,20,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,,RG,24,WHI,500.0,STOLEN,14376,"{'type': 'Point', 'coordinates': (-79.37215317, 43.64913066)}"
-14439,23239,GO-2019313753,THEFT UNDER - BICYCLE,2018-12-01T00:00:00,2018,December,Saturday,1,335,0,2019-02-21T00:00:00,2019,February,Thursday,21,52,11,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GT PANTERA,SPORT,MT,27,BLKBLU,900.0,STOLEN,14377,"{'type': 'Point', 'coordinates': (-79.37327274, 43.64725689)}"
-14440,23240,GO-2019313753,THEFT UNDER - BICYCLE,2018-12-01T00:00:00,2018,December,Saturday,1,335,0,2019-02-21T00:00:00,2019,February,Thursday,21,52,11,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GT AVALANCHE,,MT,27,WHI,700.0,STOLEN,14378,"{'type': 'Point', 'coordinates': (-79.37327274, 43.64725689)}"
-14441,23259,GO-20199017422,THEFT UNDER,2019-06-02T00:00:00,2019,June,Sunday,2,153,16,2019-06-04T00:00:00,2019,June,Tuesday,4,155,20,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,BI,1980S ONE SPEED,RC,1,RED,500.0,STOLEN,14379,"{'type': 'Point', 'coordinates': (-79.35677669, 43.6529262)}"
-14442,23274,GO-20199020079,THEFT UNDER,2019-06-23T00:00:00,2019,June,Sunday,23,174,21,2019-06-25T00:00:00,2019,June,Tuesday,25,176,15,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,30,GRY,1349.0,STOLEN,14380,"{'type': 'Point', 'coordinates': (-79.36388253000001, 43.64495966)}"
-14443,23284,GO-20191272507,B&E,2019-07-07T00:00:00,2019,July,Sunday,7,188,20,2019-07-08T00:00:00,2019,July,Monday,8,189,22,D51,Toronto,77,Waterfront Communities-The Island (77),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,UNKNOWN,OT,0,BLKRED,500.0,STOLEN,14381,"{'type': 'Point', 'coordinates': (-79.36412801, 43.648234280000004)}"
-14444,23381,GO-20141926669,THEFT UNDER,2014-04-20T00:00:00,2014,April,Sunday,20,110,13,2014-04-20T00:00:00,2014,April,Sunday,20,110,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KHS,SOUL,OT,1,BLK,630.0,STOLEN,14382,"{'type': 'Point', 'coordinates': (-79.38973372, 43.6466028)}"
-14445,23387,GO-20142161178,THEFT UNDER,2014-05-27T00:00:00,2014,May,Tuesday,27,147,8,2014-05-27T00:00:00,2014,May,Tuesday,27,147,8,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,HARO,,MT,18,GRY,,STOLEN,14383,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-14446,23390,GO-20149003835,THEFT UNDER,2014-06-03T00:00:00,2014,June,Tuesday,3,154,20,2014-06-05T00:00:00,2014,June,Thursday,5,156,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NO,YORKVILLE,TO,21,BLK,480.0,STOLEN,14384,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-14447,23395,GO-20179004536,THEFT UNDER - BICYCLE,2017-04-10T00:00:00,2017,April,Monday,10,100,15,2017-04-10T00:00:00,2017,April,Monday,10,100,16,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,SEEK 3,MT,21,GRY,699.0,STOLEN,14385,"{'type': 'Point', 'coordinates': (-79.36607348, 43.64932911)}"
-14448,23411,GO-20179006687,THEFT UNDER - BICYCLE,2017-05-19T00:00:00,2017,May,Friday,19,139,22,2017-05-20T00:00:00,2017,May,Saturday,20,140,14,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CC,,RG,7,YEL,350.0,STOLEN,14386,"{'type': 'Point', 'coordinates': (-79.35840973, 43.65001391)}"
-14449,23580,GO-20189026969,THEFT UNDER - BICYCLE,2018-08-18T00:00:00,2018,August,Saturday,18,230,4,2018-08-19T00:00:00,2018,August,Sunday,19,231,9,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,GRANFONDO GF02,RC,21,LGR,2500.0,STOLEN,14401,"{'type': 'Point', 'coordinates': (-79.37524509, 43.64636121)}"
-14450,23439,GO-20179010010,THEFT UNDER - BICYCLE,2017-06-22T00:00:00,2017,June,Thursday,22,173,2,2017-07-12T00:00:00,2017,July,Wednesday,12,193,10,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,QUICK 4,OT,12,BLK,900.0,STOLEN,14387,"{'type': 'Point', 'coordinates': (-79.37302563, 43.64248042)}"
-14451,23454,GO-20179011499,THEFT UNDER - BICYCLE,2017-08-01T00:00:00,2017,August,Tuesday,1,213,9,2017-08-01T00:00:00,2017,August,Tuesday,1,213,21,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,NITRO XT,MT,21,BLK,150.0,STOLEN,14388,"{'type': 'Point', 'coordinates': (-79.37146354, 43.64763677)}"
-14452,23456,GO-20179011639,THEFT UNDER - BICYCLE,2017-07-25T00:00:00,2017,July,Tuesday,25,206,7,2017-08-03T00:00:00,2017,August,Thursday,3,215,16,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,,MT,27,GRY,450.0,STOLEN,14389,"{'type': 'Point', 'coordinates': (-79.36896015, 43.64393833)}"
-14453,23465,GO-20179013809,THEFT UNDER - BICYCLE,2017-06-19T00:00:00,2017,June,Monday,19,170,10,2017-09-01T00:00:00,2017,September,Friday,1,244,9,D51,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,NO,,MT,16,BLU,2300.0,STOLEN,14390,"{'type': 'Point', 'coordinates': (-79.3573519, 43.65132965)}"
-14454,23485,GO-20179017156,THEFT UNDER - BICYCLE,2017-10-13T00:00:00,2017,October,Friday,13,286,11,2017-10-13T00:00:00,2017,October,Friday,13,286,21,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,AMBUSH,RG,21,BLU,200.0,STOLEN,14391,"{'type': 'Point', 'coordinates': (-79.37302563, 43.64248042)}"
-14455,23490,GO-20179018197,THEFT UNDER - BICYCLE,2017-10-25T00:00:00,2017,October,Wednesday,25,298,8,2017-10-25T00:00:00,2017,October,Wednesday,25,298,17,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,GI,,RC,24,WHI,900.0,STOLEN,14392,"{'type': 'Point', 'coordinates': (-79.37302563, 43.64248042)}"
-14456,23492,GO-20179018306,THEFT UNDER - BICYCLE,2017-10-20T00:00:00,2017,October,Friday,20,293,9,2017-10-27T00:00:00,2017,October,Friday,27,300,9,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,MIAMI SUN,TR,1,BLU,500.0,STOLEN,14393,"{'type': 'Point', 'coordinates': (-79.35482206, 43.65337232)}"
-14457,23517,GO-2018752659,THEFT OF EBIKE UNDER $5000,2018-04-02T00:00:00,2018,April,Monday,2,92,14,2018-04-27T00:00:00,2018,April,Friday,27,117,11,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,EL,1,BLK,2102.0,STOLEN,14394,"{'type': 'Point', 'coordinates': (-79.35482206, 43.65337232)}"
-14458,23542,GO-20189019451,THEFT UNDER - BICYCLE,2018-06-16T00:00:00,2018,June,Saturday,16,167,22,2018-06-20T00:00:00,2018,June,Wednesday,20,171,11,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,6,BLK,0.0,STOLEN,14395,"{'type': 'Point', 'coordinates': (-79.36388253000001, 43.64495966)}"
-14459,23543,GO-20189019546,THEFT UNDER - BICYCLE,2018-06-12T00:00:00,2018,June,Tuesday,12,163,17,2018-06-21T00:00:00,2018,June,Thursday,21,172,7,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,,OT,1,,0.0,STOLEN,14396,"{'type': 'Point', 'coordinates': (-79.35677669, 43.6529262)}"
-14460,23548,GO-20189021580,THEFT UNDER - BICYCLE,2018-07-04T00:00:00,2018,July,Wednesday,4,185,8,2018-07-08T00:00:00,2018,July,Sunday,8,189,12,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,VERZA SPEED 50,RC,8,BLK,900.0,STOLEN,14397,"{'type': 'Point', 'coordinates': (-79.37524509, 43.64636121)}"
-14461,23553,GO-20189022100,THEFT FROM MOTOR VEHICLE UNDER,2018-07-11T00:00:00,2018,July,Wednesday,11,192,19,2018-07-11T00:00:00,2018,July,Wednesday,11,192,19,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,OT,1,BLU,300.0,STOLEN,14398,"{'type': 'Point', 'coordinates': (-79.36278316, 43.64850402)}"
-14462,23562,GO-20189023220,THEFT UNDER - BICYCLE,2018-07-19T00:00:00,2018,July,Thursday,19,200,23,2018-07-20T00:00:00,2018,July,Friday,20,201,15,D51,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,BUSHWICK,RG,1,BLU,499.0,STOLEN,14399,"{'type': 'Point', 'coordinates': (-79.35351296, 43.65500405)}"
-14463,23568,GO-20181371113,THEFT UNDER - BICYCLE,2018-07-22T00:00:00,2018,July,Sunday,22,203,19,2018-07-27T00:00:00,2018,July,Friday,27,208,7,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DELSOL,,RC,18,BLK,700.0,STOLEN,14400,"{'type': 'Point', 'coordinates': (-79.37215317, 43.64913066)}"
-14464,23586,GO-20189027708,THEFT UNDER - BICYCLE,2018-08-24T00:00:00,2018,August,Friday,24,236,0,2018-08-24T00:00:00,2018,August,Friday,24,236,10,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,ZEKTOR 3,RG,9,BLK,1049.0,STOLEN,14402,"{'type': 'Point', 'coordinates': (-79.36607348, 43.64932911)}"
-14465,23599,GO-20159002959,THEFT UNDER,2015-05-20T00:00:00,2015,May,Wednesday,20,140,13,2015-05-20T00:00:00,2015,May,Wednesday,20,140,20,D51,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,TR,,OT,18,BLU,1000.0,STOLEN,14403,"{'type': 'Point', 'coordinates': (-79.35931384000001, 43.6498108)}"
-14466,23602,GO-2015886639,THEFT UNDER,2015-05-26T00:00:00,2015,May,Tuesday,26,146,18,2015-05-27T00:00:00,2015,May,Wednesday,27,147,19,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,,MT,21,BLKWHI,800.0,STOLEN,14404,"{'type': 'Point', 'coordinates': (-79.35713011, 43.65083215)}"
-14467,23619,GO-20159003833,THEFT UNDER,2015-06-20T00:00:00,2015,June,Saturday,20,171,8,2015-06-22T00:00:00,2015,June,Monday,22,173,11,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RG,10,RED,800.0,STOLEN,14405,"{'type': 'Point', 'coordinates': (-79.3621013, 43.65019711)}"
-14468,23661,GO-20159008750,THEFT UNDER,2015-10-19T00:00:00,2015,October,Monday,19,292,15,2015-10-19T00:00:00,2015,October,Monday,19,292,18,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,EM,EMMO S6,EL,31,YEL,1700.0,STOLEN,14406,"{'type': 'Point', 'coordinates': (-79.36278316, 43.64850402)}"
-14469,20456,GO-20159009394,B&E,2015-11-04T00:00:00,2015,November,Wednesday,4,308,12,2015-11-05T00:00:00,2015,November,Thursday,5,309,12,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,,MT,21,BLK,1300.0,STOLEN,14407,"{'type': 'Point', 'coordinates': (-79.37374694, 43.64844177)}"
-14470,20471,GO-20169001214,THEFT UNDER,2016-02-01T00:00:00,2016,February,Monday,1,32,0,2016-02-07T00:00:00,2016,February,Sunday,7,38,14,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,ALLEZ,RC,16,BLK,1200.0,STOLEN,14408,"{'type': 'Point', 'coordinates': (-79.37142509, 43.64944981)}"
-14471,20601,GO-20191422353,B&E,2019-07-13T00:00:00,2019,July,Saturday,13,194,7,2019-07-28T00:00:00,2019,July,Sunday,28,209,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GHOST,PANAMAO X2,MT,24,BLKBLU,900.0,STOLEN,14423,"{'type': 'Point', 'coordinates': (-79.38973372, 43.6466028)}"
-14472,20473,GO-20169001472,B&E,2016-02-16T00:00:00,2016,February,Tuesday,16,47,17,2016-02-16T00:00:00,2016,February,Tuesday,16,47,21,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,,TO,10,WHI,1400.0,STOLEN,14409,"{'type': 'Point', 'coordinates': (-79.37524509, 43.64636121)}"
-14473,20476,GO-20169001809,THEFT UNDER,2016-02-27T00:00:00,2016,February,Saturday,27,58,17,2016-02-27T00:00:00,2016,February,Saturday,27,58,23,D51,Toronto,77,Waterfront Communities-The Island (77),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,LAKESHORE,RC,1,DBL,1500.0,STOLEN,14410,"{'type': 'Point', 'coordinates': (-79.36278316, 43.64850402)}"
-14474,20493,GO-20169005160,THEFT UNDER,2016-05-29T00:00:00,2016,May,Sunday,29,150,11,2016-05-31T00:00:00,2016,May,Tuesday,31,152,15,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,ROCKHOPPER SPOR,MT,27,BLK,1015.0,STOLEN,14411,"{'type': 'Point', 'coordinates': (-79.35713011, 43.65083215)}"
-14475,20497,GO-20169005857,THEFT UNDER,2016-06-02T00:00:00,2016,June,Thursday,2,154,11,2016-06-15T00:00:00,2016,June,Wednesday,15,167,21,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RC,1,BLK,950.0,STOLEN,14412,"{'type': 'Point', 'coordinates': (-79.3621013, 43.65019711)}"
-14476,20538,GO-20169010941,THEFT UNDER,2016-09-21T00:00:00,2016,September,Wednesday,21,265,15,2016-09-23T00:00:00,2016,September,Friday,23,267,1,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,1,WHI,200.0,STOLEN,14413,"{'type': 'Point', 'coordinates': (-79.35840973, 43.65001391)}"
-14477,20543,GO-20169011819,THEFT UNDER - BICYCLE,2016-10-03T00:00:00,2016,October,Monday,3,277,8,2016-10-11T00:00:00,2016,October,Tuesday,11,285,9,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,RG,1,BLK,500.0,STOLEN,14414,"{'type': 'Point', 'coordinates': (-79.35840973, 43.65001391)}"
-14478,20557,GO-20169013950,THEFT UNDER - BICYCLE,2016-11-26T00:00:00,2016,November,Saturday,26,331,12,2016-11-28T00:00:00,2016,November,Monday,28,333,19,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,21,GRY,500.0,STOLEN,14415,"{'type': 'Point', 'coordinates': (-79.35482206, 43.65337232)}"
-14479,1757,GO-20179018348,THEFT UNDER - BICYCLE,2017-10-27T00:00:00,2017,October,Friday,27,300,12,2017-10-27T00:00:00,2017,October,Friday,27,300,17,D52,Toronto,79,University (79),Universities / Colleges,Educational,OT,,RG,7,SIL,595.0,STOLEN,15216,"{'type': 'Point', 'coordinates': (-79.39699693, 43.65848407)}"
-14480,20566,GO-20179004026,THEFT UNDER - BICYCLE,2017-03-16T00:00:00,2017,March,Thursday,16,75,9,2017-03-31T00:00:00,2017,March,Friday,31,90,9,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,NAVIGATOR 3.0,MT,10,GRN,650.0,STOLEN,14416,"{'type': 'Point', 'coordinates': (-79.37302563, 43.64248042)}"
-14481,20577,GO-20179006671,THEFT UNDER - BICYCLE,2017-05-18T00:00:00,2017,May,Thursday,18,138,22,2017-05-19T00:00:00,2017,May,Friday,19,139,19,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,16,,1467.0,STOLEN,14417,"{'type': 'Point', 'coordinates': (-79.37646324, 43.64578351)}"
-14482,20585,GO-20199020818,THEFT UNDER,2019-07-02T00:00:00,2019,July,Tuesday,2,183,10,2019-07-03T00:00:00,2019,July,Wednesday,3,184,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,SC,"GTX-2 ,700C",RC,21,BLK,550.0,STOLEN,14418,"{'type': 'Point', 'coordinates': (-79.38396859, 43.64239001)}"
-14483,20588,GO-20199021797,THEFT UNDER,2019-07-10T00:00:00,2019,July,Wednesday,10,191,18,2019-07-10T00:00:00,2019,July,Wednesday,10,191,23,D52,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,FUEL EX 8,MT,30,BLK,4700.0,STOLEN,14419,"{'type': 'Point', 'coordinates': (-79.37933296, 43.64221959)}"
-14484,20591,GO-20199022350,THEFT UNDER,2019-07-14T00:00:00,2019,July,Sunday,14,195,22,2019-07-15T00:00:00,2019,July,Monday,15,196,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SIRRUS,RG,12,GRY,1049.0,STOLEN,14420,"{'type': 'Point', 'coordinates': (-79.39075649, 43.64913078)}"
-14485,20596,GO-20199022838,THEFT UNDER,2019-07-18T00:00:00,2019,July,Thursday,18,199,0,2019-07-18T00:00:00,2019,July,Thursday,18,199,19,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,PROJEKT 8,RG,8,LBL,400.0,STOLEN,14421,"{'type': 'Point', 'coordinates': (-79.37374694, 43.64844177)}"
-14486,20600,GO-20199023818,THEFT UNDER,2019-07-18T00:00:00,2019,July,Thursday,18,199,22,2019-07-25T00:00:00,2019,July,Thursday,25,206,23,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,ODYSSEY SPORT,RG,21,BLK,600.0,STOLEN,14422,"{'type': 'Point', 'coordinates': (-79.39124176, 43.640111790000006)}"
-14487,20609,GO-20191477674,B&E,2019-08-03T00:00:00,2019,August,Saturday,3,215,12,2019-08-05T00:00:00,2019,August,Monday,5,217,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,CUSTOMIZE,TO,10,GRY,2000.0,STOLEN,14424,"{'type': 'Point', 'coordinates': (-79.37778379, 43.6430065)}"
-14488,20614,GO-20199025673,THEFT UNDER,2019-07-27T00:00:00,2019,July,Saturday,27,208,15,2019-08-11T00:00:00,2019,August,Sunday,11,223,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,CYCLOCROSS,RC,14,RED,2500.0,STOLEN,14425,"{'type': 'Point', 'coordinates': (-79.37933296, 43.64221959)}"
-14489,20620,GO-20199026614,THEFT UNDER,2019-08-16T00:00:00,2019,August,Friday,16,228,20,2019-08-17T00:00:00,2019,August,Saturday,17,229,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,HARPER SINGLE S,RG,30,GRN,320.0,STOLEN,14426,"{'type': 'Point', 'coordinates': (-79.39592984, 43.64780696)}"
-14490,20624,GO-20199026901,THEFT UNDER,2019-08-18T00:00:00,2019,August,Sunday,18,230,15,2019-08-20T00:00:00,2019,August,Tuesday,20,232,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,DEFY,OT,11,,999.0,STOLEN,14427,"{'type': 'Point', 'coordinates': (-79.3883628, 43.64757108)}"
-14491,20625,GO-20191585329,PROPERTY - FOUND,2019-08-20T00:00:00,2019,August,Tuesday,20,232,13,2019-08-20T00:00:00,2019,August,Tuesday,20,232,13,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RALEIGH,SUPER RECORD,RC,21,SIL,,UNKNOWN,14428,"{'type': 'Point', 'coordinates': (-79.36183585, 43.64956942)}"
-14492,20628,GO-20199027383,THEFT UNDER,2019-07-08T00:00:00,2019,July,Monday,8,189,17,2019-08-23T00:00:00,2019,August,Friday,23,235,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,SC1,RG,21,BLK,500.0,STOLEN,14429,"{'type': 'Point', 'coordinates': (-79.39124176, 43.640111790000006)}"
-14493,20629,GO-20191596006,THEFT UNDER - BICYCLE,2019-08-21T00:00:00,2019,August,Wednesday,21,233,8,2019-08-21T00:00:00,2019,August,Wednesday,21,233,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,,OT,18,BLK,1600.0,STOLEN,14430,"{'type': 'Point', 'coordinates': (-79.39124176, 43.640111790000006)}"
-14494,20632,GO-20199027811,THEFT UNDER,2019-08-06T00:00:00,2019,August,Tuesday,6,218,7,2019-08-27T00:00:00,2019,August,Tuesday,27,239,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,RG,20,DBL,1354.0,STOLEN,14431,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-14495,20641,GO-20199029989,THEFT UNDER,2019-09-13T00:00:00,2019,September,Friday,13,256,7,2019-09-14T00:00:00,2019,September,Saturday,14,257,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,BI,SPORT SX,RC,12,SIL,500.0,STOLEN,14432,"{'type': 'Point', 'coordinates': (-79.3881121, 43.64696458)}"
-14496,20645,GO-20199030366,THEFT UNDER,2019-09-17T00:00:00,2019,September,Tuesday,17,260,12,2019-09-17T00:00:00,2019,September,Tuesday,17,260,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RG,1,BLK,400.0,STOLEN,14433,"{'type': 'Point', 'coordinates': (-79.39204821, 43.64885072)}"
-14497,20656,GO-20199032553,THEFT UNDER,2019-10-04T00:00:00,2019,October,Friday,4,277,6,2019-10-04T00:00:00,2019,October,Friday,4,277,8,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,,RG,15,RED,350.0,STOLEN,14434,"{'type': 'Point', 'coordinates': (-79.39204821, 43.64885072)}"
-14498,20657,GO-20199033178,THEFT UNDER,2019-10-08T00:00:00,2019,October,Tuesday,8,281,18,2019-10-08T00:00:00,2019,October,Tuesday,8,281,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CA,,RG,50,,450.0,STOLEN,14435,"{'type': 'Point', 'coordinates': (-79.39075649, 43.64913078)}"
-14499,20659,GO-20199034036,THEFT UNDER,2019-09-01T00:00:00,2019,September,Sunday,1,244,22,2019-10-15T00:00:00,2019,October,Tuesday,15,288,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,,ROYAL,RG,18,BLK,200.0,STOLEN,14436,"{'type': 'Point', 'coordinates': (-79.38275181, 43.64263544000001)}"
-14500,20662,GO-20199034544,THEFT UNDER,2019-10-10T00:00:00,2019,October,Thursday,10,283,17,2019-10-20T00:00:00,2019,October,Sunday,20,293,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,2019 CHARCOAL S,RG,1,GRY,848.0,STOLEN,14437,"{'type': 'Point', 'coordinates': (-79.37933296, 43.64221959)}"
-14501,20664,GO-20199035006,THEFT UNDER,2019-10-23T00:00:00,2019,October,Wednesday,23,296,17,2019-10-23T00:00:00,2019,October,Wednesday,23,296,23,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,5,SIL,800.0,STOLEN,14438,"{'type': 'Point', 'coordinates': (-79.39592984, 43.64780696)}"
-14502,20667,GO-20199035472,THEFT UNDER,2019-10-18T00:00:00,2019,October,Friday,18,291,12,2019-10-27T00:00:00,2019,October,Sunday,27,300,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,ORIGAMI,FO,7,GRY,1650.0,STOLEN,14439,"{'type': 'Point', 'coordinates': (-79.38973372, 43.6466028)}"
-14503,20670,GO-20199035867,THEFT UNDER - SHOPLIFTING,2019-10-28T00:00:00,2019,October,Monday,28,301,19,2019-10-30T00:00:00,2019,October,Wednesday,30,303,21,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,PORTOBELLO,RG,18,BLK,1190.0,STOLEN,14440,"{'type': 'Point', 'coordinates': (-79.35677669, 43.6529262)}"
-14504,20674,GO-20199036556,THEFT UNDER,2019-10-29T00:00:00,2019,October,Tuesday,29,302,1,2019-11-05T00:00:00,2019,November,Tuesday,5,309,17,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,BROUGHAM,RG,1,BLK,800.0,STOLEN,14441,"{'type': 'Point', 'coordinates': (-79.37326707, 43.64867717)}"
-14505,20675,GO-20199036556,THEFT UNDER,2019-10-29T00:00:00,2019,October,Tuesday,29,302,1,2019-11-05T00:00:00,2019,November,Tuesday,5,309,17,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CA,CATALYST 4,MT,21,BLK,800.0,STOLEN,14442,"{'type': 'Point', 'coordinates': (-79.37326707, 43.64867717)}"
-14506,20676,GO-20192145549,B&E,2019-10-27T00:00:00,2019,October,Sunday,27,300,14,2019-11-06T00:00:00,2019,November,Wednesday,6,310,13,D51,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,FX2,OT,21,GRN,1000.0,STOLEN,14443,"{'type': 'Point', 'coordinates': (-79.37524509, 43.64636121)}"
-14507,20678,GO-20199037649,THEFT UNDER,2019-10-24T00:00:00,2019,October,Thursday,24,297,20,2019-11-15T00:00:00,2019,November,Friday,15,319,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,SUPER V 1000,MT,21,PLE,0.0,STOLEN,14444,"{'type': 'Point', 'coordinates': (-79.37933296, 43.64221959)}"
-14508,20679,GO-20192229032,B&E,2019-10-01T00:00:00,2019,October,Tuesday,1,274,9,2019-11-18T00:00:00,2019,November,Monday,18,322,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,LOUIS GARNEAU,EVOSTEEPLE X,OT,22,BLKGRY,2000.0,RECOVERED,14445,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-14509,20681,GO-20199038377,THEFT UNDER,2019-11-21T00:00:00,2019,November,Thursday,21,325,21,2019-11-21T00:00:00,2019,November,Thursday,21,325,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,OT,9,GRY,1700.0,STOLEN,14446,"{'type': 'Point', 'coordinates': (-79.38065193, 43.64100385)}"
-14510,20702,GO-20209012160,THEFT UNDER - BICYCLE,2020-04-27T00:00:00,2020,April,Monday,27,118,19,2020-04-29T00:00:00,2020,April,Wednesday,29,120,16,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,BAD BOY 3,RG,20,BLK,1400.0,STOLEN,14447,"{'type': 'Point', 'coordinates': (-79.37074933, 43.64783612)}"
-14511,20703,GO-2020853218,PROPERTY - FOUND,2020-05-07T00:00:00,2020,May,Thursday,7,128,7,2020-05-07T00:00:00,2020,May,Thursday,7,128,7,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,ALLEZ,TO,1,,,RECOVERED,14448,"{'type': 'Point', 'coordinates': (-79.39225864, 43.63863312)}"
-14512,20704,GO-2020853218,PROPERTY - FOUND,2020-05-07T00:00:00,2020,May,Thursday,7,128,7,2020-05-07T00:00:00,2020,May,Thursday,7,128,7,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,,MT,21,TRQ,,RECOVERED,14449,"{'type': 'Point', 'coordinates': (-79.39225864, 43.63863312)}"
-14513,20714,GO-20209014761,THEFT UNDER,2020-06-06T00:00:00,2020,June,Saturday,6,158,11,2020-06-06T00:00:00,2020,June,Saturday,6,158,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,,MT,12,BLK,900.0,STOLEN,14450,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-14514,20715,GO-20201080590,THEFT OF EBIKE UNDER $5000,2020-06-06T00:00:00,2020,June,Saturday,6,158,15,2020-06-12T00:00:00,2020,June,Friday,12,164,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,BOLD,EL,7,WHI,3000.0,STOLEN,14451,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-14515,20717,GO-20201108671,THEFT UNDER - BICYCLE,2020-06-07T00:00:00,2020,June,Sunday,7,159,16,2020-06-16T00:00:00,2020,June,Tuesday,16,168,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OPUS,INTERSECT 3,MT,24,GRY,1000.0,STOLEN,14452,"{'type': 'Point', 'coordinates': (-79.37778379, 43.6430065)}"
-14516,20718,GO-20209015743,THEFT UNDER,2020-06-19T00:00:00,2020,June,Friday,19,171,16,2020-06-19T00:00:00,2020,June,Friday,19,171,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SC,,RG,21,,630.0,STOLEN,14453,"{'type': 'Point', 'coordinates': (-79.38994752, 43.64370303)}"
-14517,20728,GO-20201238916,THEFT UNDER,2020-07-05T00:00:00,2020,July,Sunday,5,187,2,2020-07-05T00:00:00,2020,July,Sunday,5,187,8,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OTHER,,RG,0,WHI,2000.0,STOLEN,14454,"{'type': 'Point', 'coordinates': (-79.37074933, 43.64783612)}"
-14518,20733,GO-20209017804,THEFT UNDER,2020-07-17T00:00:00,2020,July,Friday,17,199,13,2020-07-17T00:00:00,2020,July,Friday,17,199,15,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,ESCAPE 3 HYBRID,RG,6,BLK,640.0,STOLEN,14455,"{'type': 'Point', 'coordinates': (-79.35482206, 43.65337232)}"
-14519,20747,GO-20209020457,THEFT UNDER,2020-08-16T00:00:00,2020,August,Sunday,16,229,14,2020-08-17T00:00:00,2020,August,Monday,17,230,14,D51,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,SU,,MT,21,GRY,360.0,STOLEN,14456,"{'type': 'Point', 'coordinates': (-79.35351296, 43.65500405)}"
-14520,20763,GO-20209020823,THEFT UNDER - BICYCLE,2020-08-18T00:00:00,2020,August,Tuesday,18,231,18,2020-08-20T00:00:00,2020,August,Thursday,20,233,22,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,SOLOIST,RG,1,BLK,450.0,STOLEN,14457,"{'type': 'Point', 'coordinates': (-79.37302563, 43.64248042)}"
-14521,20771,GO-20209022353,THEFT UNDER,2020-09-04T00:00:00,2020,September,Friday,4,248,15,2020-09-04T00:00:00,2020,September,Friday,4,248,16,D51,Toronto,77,Waterfront Communities-The Island (77),Unknown,Other,BI,SUPER PISTA,RC,1,BLK,4500.0,STOLEN,14458,"{'type': 'Point', 'coordinates': (-79.3573519, 43.65132965)}"
-14522,20773,GO-20209022544,THEFT UNDER,2020-09-07T00:00:00,2020,September,Monday,7,251,11,2020-09-07T00:00:00,2020,September,Monday,7,251,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,ROAM 3,RG,24,BLK,699.0,STOLEN,14459,"{'type': 'Point', 'coordinates': (-79.39202118, 43.64537211)}"
-14523,20791,GO-20209019623,THEFT UNDER,2020-08-02T00:00:00,2020,August,Sunday,2,215,0,2020-08-07T00:00:00,2020,August,Friday,7,220,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,,TO,21,SIL,250.0,STOLEN,14460,"{'type': 'Point', 'coordinates': (-79.39951371, 43.64318312)}"
-14524,20800,GO-20209021089,THEFT UNDER,2020-08-23T00:00:00,2020,August,Sunday,23,236,2,2020-08-23T00:00:00,2020,August,Sunday,23,236,22,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM 3,RG,24,BLK,699.0,STOLEN,14461,"{'type': 'Point', 'coordinates': (-79.40138212, 43.64074836)}"
-14525,20802,GO-20209022321,THEFT UNDER,2020-08-26T00:00:00,2020,August,Wednesday,26,239,9,2020-09-04T00:00:00,2020,September,Friday,4,248,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GF,WAHOO,MT,21,RED,750.0,STOLEN,14462,"{'type': 'Point', 'coordinates': (-79.39882641, 43.63812175)}"
-14526,20812,GO-20209022874,THEFT UNDER,2020-09-10T00:00:00,2020,September,Thursday,10,254,11,2020-09-10T00:00:00,2020,September,Thursday,10,254,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,9,SIL,850.0,STOLEN,14463,"{'type': 'Point', 'coordinates': (-79.40059685, 43.64573236)}"
-14527,20813,GO-20209023079,THEFT UNDER,2020-09-09T00:00:00,2020,September,Wednesday,9,253,14,2020-09-12T00:00:00,2020,September,Saturday,12,256,17,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,3,BLK,1017.0,STOLEN,14464,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-14528,20828,GO-20209028195,THEFT UNDER,2020-10-27T00:00:00,2020,October,Tuesday,27,301,22,2020-10-30T00:00:00,2020,October,Friday,30,304,14,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,BARRANQUILA,RG,1,GRY,450.0,STOLEN,14465,"{'type': 'Point', 'coordinates': (-79.40306565, 43.64488902)}"
-14529,20834,GO-20209029898,THEFT UNDER - BICYCLE,2020-11-17T00:00:00,2020,November,Tuesday,17,322,13,2020-11-17T00:00:00,2020,November,Tuesday,17,322,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CA,SYNAPSE,RC,8,RED,700.0,STOLEN,14466,"{'type': 'Point', 'coordinates': (-79.39835558, 43.64685172)}"
-14530,6939,GO-20209019944,THEFT UNDER,2020-08-11T00:00:00,2020,August,Tuesday,11,224,10,2020-08-11T00:00:00,2020,August,Tuesday,11,224,18,D52,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,CA,,RG,8,BLK,2450.0,STOLEN,14558,"{'type': 'Point', 'coordinates': (-79.39300540000002, 43.6580369)}"
-14531,20868,GO-20142290170,THEFT UNDER,2014-06-14T00:00:00,2014,June,Saturday,14,165,10,2014-06-14T00:00:00,2014,June,Saturday,14,165,15,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GARRY FISHER,,MT,21,BLK,1300.0,STOLEN,14467,"{'type': 'Point', 'coordinates': (-79.37142509, 43.64944981)}"
-14532,20886,GO-20149004814,THEFT UNDER,2014-07-07T00:00:00,2014,July,Monday,7,188,9,2014-07-08T00:00:00,2014,July,Tuesday,8,189,15,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,ESCAPE,OT,7,WHI,600.0,STOLEN,14468,"{'type': 'Point', 'coordinates': (-79.37302563, 43.64248042)}"
-14533,20895,GO-20149005290,THEFT UNDER,2014-07-22T00:00:00,2014,July,Tuesday,22,203,14,2014-07-24T00:00:00,2014,July,Thursday,24,205,13,D51,Toronto,77,Waterfront Communities-The Island (77),Unknown,Other,KO,CALDERA,MT,21,RED,2500.0,STOLEN,14469,"{'type': 'Point', 'coordinates': (-79.37027555, 43.64981872)}"
-14534,20906,GO-20149005750,THEFT UNDER,2014-08-08T00:00:00,2014,August,Friday,8,220,11,2014-08-08T00:00:00,2014,August,Friday,8,220,17,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,MT,16,BLU,700.0,STOLEN,14470,"{'type': 'Point', 'coordinates': (-79.35861275, 43.6504911)}"
-14535,20917,GO-20142780516,MISCHIEF UNDER,2014-08-26T00:00:00,2014,August,Tuesday,26,238,13,2014-08-26T00:00:00,2014,August,Tuesday,26,238,15,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,,RC,21,BLUWHI,1000.0,STOLEN,14471,"{'type': 'Point', 'coordinates': (-79.35861275, 43.6504911)}"
-14536,20930,GO-20149007292,THEFT UNDER,2014-09-24T00:00:00,2014,September,Wednesday,24,267,23,2014-09-29T00:00:00,2014,September,Monday,29,272,13,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,RM,WHISTLER 30,TO,18,BLK,750.0,STOLEN,14472,"{'type': 'Point', 'coordinates': (-79.35840973, 43.65001391)}"
-14537,20933,GO-20143068489,THEFT UNDER,2014-10-07T00:00:00,2014,October,Tuesday,7,280,15,2014-10-08T00:00:00,2014,October,Wednesday,8,281,18,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CANNONDALE,SL3TRAIL,MT,21,WHIBLU,1000.0,STOLEN,14473,"{'type': 'Point', 'coordinates': (-79.35971484, 43.65076046)}"
-14538,10156,GO-20159005212,THEFT UNDER,2015-07-31T00:00:00,2015,July,Friday,31,212,3,2015-07-31T00:00:00,2015,July,Friday,31,212,15,D14,Toronto,78,Kensington-Chinatown (78),Bar / Restaurant,Commercial,OT,CASATI MONZA,RC,10,TRQ,1500.0,STOLEN,15225,"{'type': 'Point', 'coordinates': (-79.39863995, 43.65205921)}"
-14539,20937,GO-20143115621,THEFT UNDER,2014-09-15T00:00:00,2014,September,Monday,15,258,8,2014-10-16T00:00:00,2014,October,Thursday,16,289,15,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,,OT,21,BLKWHI,1000.0,STOLEN,14474,"{'type': 'Point', 'coordinates': (-79.39558819, 43.63994429)}"
-14540,20954,GO-20143567636,THEFT UNDER,2014-12-29T00:00:00,2014,December,Monday,29,363,8,2014-12-29T00:00:00,2014,December,Monday,29,363,14,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN,UNKNOWN,EL,20,,1300.0,STOLEN,14475,"{'type': 'Point', 'coordinates': (-79.3621013, 43.65019711)}"
-14541,20955,GO-20143567636,THEFT UNDER,2014-12-29T00:00:00,2014,December,Monday,29,363,8,2014-12-29T00:00:00,2014,December,Monday,29,363,14,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN,UNKNOWN,EL,20,,1200.0,RECOVERED,14476,"{'type': 'Point', 'coordinates': (-79.3621013, 43.65019711)}"
-14542,20958,GO-20159000325,THEFT UNDER,2015-01-12T00:00:00,2015,January,Monday,12,12,13,2015-01-18T00:00:00,2015,January,Sunday,18,18,14,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,OT,10,WHI,1300.0,STOLEN,14477,"{'type': 'Point', 'coordinates': (-79.37374694, 43.64844177)}"
-14543,20959,GO-20159000421,THEFT UNDER,2015-01-12T00:00:00,2015,January,Monday,12,12,21,2015-01-24T00:00:00,2015,January,Saturday,24,24,11,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,KO,PADDY WAGON,RG,1,BLK,800.0,STOLEN,14478,"{'type': 'Point', 'coordinates': (-79.37374694, 43.64844177)}"
-14544,20966,GO-20182095300,B&E,2018-10-25T00:00:00,2018,October,Thursday,25,298,19,2018-11-13T00:00:00,2018,November,Tuesday,13,317,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,,MT,20,WHI,3500.0,STOLEN,14479,"{'type': 'Point', 'coordinates': (-79.4023568, 43.64319258)}"
-14545,20972,GO-20189040046,THEFT UNDER - BICYCLE,2018-11-27T00:00:00,2018,November,Tuesday,27,331,8,2018-11-27T00:00:00,2018,November,Tuesday,27,331,21,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,DEFY ADVANCED P,TO,10,BLK,4000.0,STOLEN,14480,"{'type': 'Point', 'coordinates': (-79.395007, 43.64546954)}"
-14546,12820,GO-20162091796,THEFT UNDER - BICYCLE,2016-11-18T00:00:00,2016,November,Friday,18,323,14,2016-11-25T00:00:00,2016,November,Friday,25,330,9,D52,Toronto,79,University (79),Universities / Colleges,Educational,SWIFT,,EL,0,,1700.0,STOLEN,15234,"{'type': 'Point', 'coordinates': (-79.39343719, 43.66303628)}"
-14547,20974,GO-20182214161,B&E W'INTENT,2018-08-01T00:00:00,2018,August,Wednesday,1,213,0,2018-12-02T00:00:00,2018,December,Sunday,2,336,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,FUJI,ENDURANCE,RC,21,WHI,1899.0,STOLEN,14481,"{'type': 'Point', 'coordinates': (-79.39811145, 43.64623146000001)}"
-14548,20984,GO-2019245708,B&E,2019-01-07T00:00:00,2019,January,Monday,7,7,0,2019-02-08T00:00:00,2019,February,Friday,8,39,8,D14,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,FIXED BLK&GLD,RC,1,BLKGLD,450.0,STOLEN,14482,"{'type': 'Point', 'coordinates': (-79.39558819, 43.63994429)}"
-14549,20994,GO-20199014941,THEFT UNDER - BICYCLE,2019-05-12T00:00:00,2019,May,Sunday,12,132,12,2019-05-14T00:00:00,2019,May,Tuesday,14,134,9,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,F600,TO,24,DBL,2500.0,STOLEN,14483,"{'type': 'Point', 'coordinates': (-79.39960983, 43.63648329)}"
-14550,20999,GO-2019962344,B&E,2019-03-26T00:00:00,2019,March,Tuesday,26,85,0,2019-05-26T00:00:00,2019,May,Sunday,26,146,14,D14,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CANNONDALE,QUICK 4,RG,9,,,STOLEN,14484,"{'type': 'Point', 'coordinates': (-79.39795271, 43.63704773)}"
-14551,21007,GO-20199018374,THEFT UNDER - BICYCLE,2019-06-12T00:00:00,2019,June,Wednesday,12,163,18,2019-06-12T00:00:00,2019,June,Wednesday,12,163,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,10,BLU,800.0,STOLEN,14485,"{'type': 'Point', 'coordinates': (-79.39846982000002, 43.64477819)}"
-14552,21008,GO-20199018536,THEFT UNDER - BICYCLE,2019-06-13T00:00:00,2019,June,Thursday,13,164,9,2019-06-14T00:00:00,2019,June,Friday,14,165,1,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RM,,RG,24,BLU,600.0,STOLEN,14486,"{'type': 'Point', 'coordinates': (-79.39934668, 43.64733861)}"
-14553,21009,GO-20191113419,THEFT OF EBIKE UNDER $5000,2019-06-16T00:00:00,2019,June,Sunday,16,167,0,2019-06-16T00:00:00,2019,June,Sunday,16,167,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DAYMAK,EM1,EL,0,BLK,2500.0,STOLEN,14487,"{'type': 'Point', 'coordinates': (-79.40137395, 43.64770851)}"
-14554,21031,GO-20199024317,THEFT UNDER - BICYCLE,2019-07-29T00:00:00,2019,July,Monday,29,210,9,2019-07-29T00:00:00,2019,July,Monday,29,210,22,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,TO,11,BLK,1300.0,STOLEN,14488,"{'type': 'Point', 'coordinates': (-79.395007, 43.64546954)}"
-14555,21032,GO-20199024338,THEFT UNDER - BICYCLE,2019-07-30T00:00:00,2019,July,Tuesday,30,211,0,2019-07-30T00:00:00,2019,July,Tuesday,30,211,1,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,5,WHI,400.0,STOLEN,14489,"{'type': 'Point', 'coordinates': (-79.40059685, 43.64573236)}"
-14556,21049,GO-20191583971,THEFT UNDER - BICYCLE,2019-08-13T00:00:00,2019,August,Tuesday,13,225,9,2019-08-20T00:00:00,2019,August,Tuesday,20,232,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,DIADORA,NOVARA,MT,21,BLKGRN,400.0,STOLEN,14490,"{'type': 'Point', 'coordinates': (-79.39330422, 43.64134268000001)}"
-14557,21079,GO-20199033383,THEFT UNDER - BICYCLE,2019-10-09T00:00:00,2019,October,Wednesday,9,282,20,2019-10-10T00:00:00,2019,October,Thursday,10,283,14,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NO,WOMEN'S STEPTHR,OT,3,BLK,235.0,STOLEN,14491,"{'type': 'Point', 'coordinates': (-79.40215599, 43.64265388)}"
-14558,21086,GO-20199034875,THEFT UNDER - BICYCLE,2019-10-22T00:00:00,2019,October,Tuesday,22,295,18,2019-10-22T00:00:00,2019,October,Tuesday,22,295,23,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,1,BLK,200.0,STOLEN,14492,"{'type': 'Point', 'coordinates': (-79.39553097, 43.64673969)}"
-14559,21091,GO-20199036532,THEFT UNDER - BICYCLE,2019-11-05T00:00:00,2019,November,Tuesday,5,309,13,2019-11-05T00:00:00,2019,November,Tuesday,5,309,22,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,MA,IGNACIO 2,OT,2,BLK,1000.0,STOLEN,14493,"{'type': 'Point', 'coordinates': (-79.39924205, 43.63909783)}"
-14560,21113,GO-20209007574,THEFT UNDER - BICYCLE,2020-02-17T00:00:00,2020,February,Monday,17,48,15,2020-03-03T00:00:00,2020,March,Tuesday,3,63,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,HYBRID,RG,18,BLK,1000.0,STOLEN,14494,"{'type': 'Point', 'coordinates': (-79.39433233, 43.63732228)}"
-14561,21126,GO-20209011509,THEFT UNDER,2014-05-01T00:00:00,2014,May,Thursday,1,121,15,2020-04-19T00:00:00,2020,April,Sunday,19,110,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,,RG,0,GRY,,STOLEN,14495,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-14562,21127,GO-20209011509,THEFT UNDER,2014-05-01T00:00:00,2014,May,Thursday,1,121,15,2020-04-19T00:00:00,2020,April,Sunday,19,110,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,HYBRID,RG,1,BLK,600.0,STOLEN,14496,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-14563,21131,GO-20209012545,THEFT UNDER,2020-04-25T00:00:00,2020,April,Saturday,25,116,0,2020-05-05T00:00:00,2020,May,Tuesday,5,126,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NO,BIG FOOT,MT,12,BLK,0.0,STOLEN,14497,"{'type': 'Point', 'coordinates': (-79.39924205, 43.63909783)}"
-14564,21132,GO-20209012554,THEFT UNDER,2020-02-05T00:00:00,2020,February,Wednesday,5,36,10,2020-05-05T00:00:00,2020,May,Tuesday,5,126,22,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,MODENA,RG,21,WHI,100.0,STOLEN,14498,"{'type': 'Point', 'coordinates': (-79.39833497, 43.64030158)}"
-14565,21138,GO-20209014240,THEFT UNDER,2020-05-26T00:00:00,2020,May,Tuesday,26,147,23,2020-05-30T00:00:00,2020,May,Saturday,30,151,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,SUMO 4.0,OT,21,BLK,850.0,STOLEN,14499,"{'type': 'Point', 'coordinates': (-79.39882641, 43.63812175)}"
-14566,21140,GO-20201010766,THEFT UNDER - BICYCLE,2020-05-19T00:00:00,2020,May,Tuesday,19,140,3,2020-06-01T00:00:00,2020,June,Monday,1,153,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,RG,1,WHI,600.0,STOLEN,14500,"{'type': 'Point', 'coordinates': (-79.39880646, 43.64142779)}"
-14567,21145,GO-20209015355,THEFT UNDER,2020-06-14T00:00:00,2020,June,Sunday,14,166,11,2020-06-14T00:00:00,2020,June,Sunday,14,166,14,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,RG,8,,200.0,STOLEN,14501,"{'type': 'Point', 'coordinates': (-79.40306565, 43.64488902)}"
-14568,21178,GO-20179009843,THEFT UNDER - BICYCLE,2017-06-30T00:00:00,2017,June,Friday,30,181,10,2017-07-10T00:00:00,2017,July,Monday,10,191,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,URBANIA,OT,8,WHI,400.0,STOLEN,14502,"{'type': 'Point', 'coordinates': (-79.39795271, 43.63704773)}"
-14569,21184,GO-20179010318,THEFT UNDER - BICYCLE,2017-07-15T00:00:00,2017,July,Saturday,15,196,11,2017-07-16T00:00:00,2017,July,Sunday,16,197,9,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,DEVINCI HYBRID,RG,15,BLK,799.0,STOLEN,14503,"{'type': 'Point', 'coordinates': (-79.39833497, 43.64030158)}"
-14570,21193,GO-20179011183,THEFT UNDER - BICYCLE,2017-07-24T00:00:00,2017,July,Monday,24,205,15,2017-07-27T00:00:00,2017,July,Thursday,27,208,21,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,DEW CHARCOAL 59,RG,27,BLK,830.0,STOLEN,14504,"{'type': 'Point', 'coordinates': (-79.39795271, 43.63704773)}"
-14571,3119,GO-20189025594,THEFT UNDER - BICYCLE,2018-08-08T00:00:00,2018,August,Wednesday,8,220,3,2018-08-09T00:00:00,2018,August,Thursday,9,221,1,D14,Toronto,78,Kensington-Chinatown (78),Bar / Restaurant,Commercial,DB,,MT,3,BRN,0.0,STOLEN,14505,"{'type': 'Point', 'coordinates': (-79.39634181, 43.64876464)}"
-14572,6934,GO-20209019879,THEFT UNDER,2020-08-10T00:00:00,2020,August,Monday,10,223,20,2020-08-11T00:00:00,2020,August,Tuesday,11,224,11,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,TREK,MT,27,BLU,500.0,STOLEN,14506,"{'type': 'Point', 'coordinates': (-79.4046631, 43.64896803)}"
-14573,19565,GO-20189035226,THEFT UNDER - BICYCLE,2018-10-20T00:00:00,2018,October,Saturday,20,293,13,2018-10-23T00:00:00,2018,October,Tuesday,23,296,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,Z95,RC,18,BLK,1388.0,STOLEN,14507,"{'type': 'Point', 'coordinates': (-79.38091602, 43.64168463)}"
-14574,21214,GO-20179014897,THEFT UNDER - BICYCLE,2017-09-14T00:00:00,2017,September,Thursday,14,257,20,2017-09-16T00:00:00,2017,September,Saturday,16,259,0,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,SPECIALIZED CRO,OT,28,,500.0,STOLEN,14508,"{'type': 'Point', 'coordinates': (-79.39296466, 43.64056148000001)}"
-14575,3122,GO-20181463089,THEFT UNDER - BICYCLE,2018-08-09T00:00:00,2018,August,Thursday,9,221,11,2018-08-09T00:00:00,2018,August,Thursday,9,221,12,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,I-DRIVE 4 3.0,MT,24,BLU,1200.0,STOLEN,14509,"{'type': 'Point', 'coordinates': (-79.38918474, 43.65468421)}"
-14576,21221,GO-20179016598,THEFT UNDER - BICYCLE,2017-09-19T00:00:00,2017,September,Tuesday,19,262,0,2017-10-06T00:00:00,2017,October,Friday,6,279,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,2015 VITA ELITE,TO,27,OTH,1000.0,STOLEN,14510,"{'type': 'Point', 'coordinates': (-79.39820731, 43.64329925)}"
-14577,3139,GO-20189025775,THEFT UNDER - BICYCLE,2018-07-28T00:00:00,2018,July,Saturday,28,209,2,2018-08-09T00:00:00,2018,August,Thursday,9,221,21,D14,Toronto,78,Kensington-Chinatown (78),"Open Areas (Lakes, Parks, Rivers)",Outside,EM,,SC,35,,1000.0,STOLEN,14511,"{'type': 'Point', 'coordinates': (-79.40183415000001, 43.65102071)}"
-14578,21231,GO-20171986009,PROPERTY - FOUND,2017-10-29T00:00:00,2017,October,Sunday,29,302,12,2017-11-02T00:00:00,2017,November,Thursday,2,306,16,D14,Toronto,77,Waterfront Communities-The Island (77),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FUJI,,RC,10,GRY,350.0,UNKNOWN,14512,"{'type': 'Point', 'coordinates': (-79.40332976, 43.64551526)}"
-14579,21232,GO-20171986009,PROPERTY - FOUND,2017-10-29T00:00:00,2017,October,Sunday,29,302,12,2017-11-02T00:00:00,2017,November,Thursday,2,306,16,D14,Toronto,77,Waterfront Communities-The Island (77),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,TRIUMPH,RC,10,,,UNKNOWN,14513,"{'type': 'Point', 'coordinates': (-79.40332976, 43.64551526)}"
-14580,21234,GO-20179019724,THEFT UNDER - BICYCLE,2017-10-29T00:00:00,2017,October,Sunday,29,302,15,2017-11-15T00:00:00,2017,November,Wednesday,15,319,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,CXGR,OT,11,BLK,1600.0,STOLEN,14514,"{'type': 'Point', 'coordinates': (-79.40306565, 43.64488902)}"
-14581,21238,GO-20179020156,THEFT UNDER - BICYCLE,2017-11-21T00:00:00,2017,November,Tuesday,21,325,3,2017-11-21T00:00:00,2017,November,Tuesday,21,325,8,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,2018 ARIEL,MT,21,OTH,2000.0,STOLEN,14515,"{'type': 'Point', 'coordinates': (-79.39880646, 43.64142779)}"
-14582,21250,GO-20189005669,THEFT UNDER - BICYCLE,2018-02-19T00:00:00,2018,February,Monday,19,50,15,2018-02-22T00:00:00,2018,February,Thursday,22,53,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,6500,MT,15,DBL,1000.0,STOLEN,14516,"{'type': 'Point', 'coordinates': (-79.40185545, 43.64191381)}"
-14583,21257,GO-2018506002,THEFT UNDER - BICYCLE,2018-03-19T00:00:00,2018,March,Monday,19,78,2,2018-03-20T00:00:00,2018,March,Tuesday,20,79,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,MOUNTAIN,MT,21,GRN,600.0,STOLEN,14517,"{'type': 'Point', 'coordinates': (-79.39924205, 43.63909783)}"
-14584,21258,GO-20189009678,THEFT UNDER - BICYCLE,2018-03-18T00:00:00,2018,March,Sunday,18,77,19,2018-03-27T00:00:00,2018,March,Tuesday,27,86,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,TO,14,WHI,1500.0,STOLEN,14518,"{'type': 'Point', 'coordinates': (-79.39924205, 43.63909783)}"
-14585,21275,GO-20189016117,THEFT UNDER,2018-05-20T00:00:00,2018,May,Sunday,20,140,18,2018-05-24T00:00:00,2018,May,Thursday,24,144,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SKYWAY BICYCLE,RG,1,BLK,550.0,STOLEN,14519,"{'type': 'Point', 'coordinates': (-79.39737512, 43.64853707)}"
-14586,21282,GO-20181017112,THEFT UNDER - BICYCLE,2018-06-05T00:00:00,2018,June,Tuesday,5,156,11,2018-06-05T00:00:00,2018,June,Tuesday,5,156,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MASI,,RG,0,BLKGLD,900.0,STOLEN,14520,"{'type': 'Point', 'coordinates': (-79.3979648, 43.63940267)}"
-14587,21283,GO-20189017445,THEFT UNDER - BICYCLE,2018-06-03T00:00:00,2018,June,Sunday,3,154,13,2018-06-05T00:00:00,2018,June,Tuesday,5,156,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,ROAD BIKE,RC,7,CRM,100.0,STOLEN,14521,"{'type': 'Point', 'coordinates': (-79.39833497, 43.64030158)}"
-14588,21284,GO-20189017687,THEFT UNDER,2018-06-06T00:00:00,2018,June,Wednesday,6,157,23,2018-06-07T00:00:00,2018,June,Thursday,7,158,9,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,LANGSTER,RC,1,SIL,500.0,STOLEN,14522,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-14589,21286,GO-20189017850,THEFT UNDER - BICYCLE,2018-06-07T00:00:00,2018,June,Thursday,7,158,9,2018-06-08T00:00:00,2018,June,Friday,8,159,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,RG,3,BLK,0.0,STOLEN,14523,"{'type': 'Point', 'coordinates': (-79.40005716, 43.64445256)}"
-14590,21290,GO-20189018210,THEFT UNDER - BICYCLE,2018-06-11T00:00:00,2018,June,Monday,11,162,14,2018-06-11T00:00:00,2018,June,Monday,11,162,14,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,,OT,18,YEL,300.0,STOLEN,14524,"{'type': 'Point', 'coordinates': (-79.39296466, 43.64056148000001)}"
-14591,21313,GO-20189022020,THEFT UNDER - BICYCLE,2018-07-11T00:00:00,2018,July,Wednesday,11,192,7,2018-07-11T00:00:00,2018,July,Wednesday,11,192,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ROAM,TO,8,ONG,1000.0,STOLEN,14525,"{'type': 'Point', 'coordinates': (-79.39532578, 43.64621392)}"
-14592,21322,GO-20189023535,THEFT UNDER - BICYCLE,2018-07-21T00:00:00,2018,July,Saturday,21,202,19,2018-07-23T00:00:00,2018,July,Monday,23,204,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,FIXIE URBAN TRA,RG,1,BLK,482.0,STOLEN,14526,"{'type': 'Point', 'coordinates': (-79.39846982000002, 43.64477819)}"
-14593,21332,GO-20189025993,THEFT UNDER - BICYCLE,2018-06-13T00:00:00,2018,June,Wednesday,13,164,6,2018-08-11T00:00:00,2018,August,Saturday,11,223,16,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,AC02,MT,27,GRY,1154.0,STOLEN,14527,"{'type': 'Point', 'coordinates': (-79.3979648, 43.63940267)}"
-14594,21335,GO-20189027388,THEFT UNDER - BICYCLE,2018-08-22T00:00:00,2018,August,Wednesday,22,234,8,2018-08-22T00:00:00,2018,August,Wednesday,22,234,8,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,3700,MT,2,BLU,500.0,STOLEN,14528,"{'type': 'Point', 'coordinates': (-79.39924205, 43.63909783)}"
-14595,21336,GO-20189028137,THEFT UNDER - BICYCLE,2018-08-27T00:00:00,2018,August,Monday,27,239,12,2018-08-27T00:00:00,2018,August,Monday,27,239,14,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,MIDTOWN,MT,12,WHI,900.0,STOLEN,14529,"{'type': 'Point', 'coordinates': (-79.39924205, 43.63909783)}"
-14596,8643,GO-20149005843,THEFT UNDER,2014-08-08T00:00:00,2014,August,Friday,8,220,17,2014-08-11T00:00:00,2014,August,Monday,11,223,20,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,KO,DEW,OT,24,ONG,667.0,STOLEN,14785,"{'type': 'Point', 'coordinates': (-79.3952972, 43.65130143)}"
-14597,21337,GO-20189028137,THEFT UNDER - BICYCLE,2018-08-27T00:00:00,2018,August,Monday,27,239,12,2018-08-27T00:00:00,2018,August,Monday,27,239,14,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,DOUBLE CHILD TR,OT,1,ONG,400.0,STOLEN,14530,"{'type': 'Point', 'coordinates': (-79.39924205, 43.63909783)}"
-14598,21350,GO-20189032388,THEFT UNDER,2018-09-29T00:00:00,2018,September,Saturday,29,272,18,2018-09-29T00:00:00,2018,September,Saturday,29,272,21,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,16 PLUG,RG,1,GRY,500.0,STOLEN,14531,"{'type': 'Point', 'coordinates': (-79.40059685, 43.64573236)}"
-14599,21367,GO-20189037058,THEFT UNDER,2018-10-24T00:00:00,2018,October,Wednesday,24,297,21,2018-11-06T00:00:00,2018,November,Tuesday,6,310,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,,TO,10,BLU,1100.0,STOLEN,14532,"{'type': 'Point', 'coordinates': (-79.39433233, 43.63732228)}"
-14600,21370,GO-2016908218,THEFT UNDER - BICYCLE,2016-05-20T00:00:00,2016,May,Friday,20,141,13,2016-05-26T00:00:00,2016,May,Thursday,26,147,14,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,29ALPHA,MT,21,BLK,500.0,STOLEN,14533,"{'type': 'Point', 'coordinates': (-79.39924205, 43.63909783)}"
-14601,21373,GO-2016923652,THEFT UNDER - BICYCLE,2016-05-26T00:00:00,2016,May,Thursday,26,147,8,2016-05-28T00:00:00,2016,May,Saturday,28,149,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,FELT,F1,OT,18,SIL,1500.0,STOLEN,14534,"{'type': 'Point', 'coordinates': (-79.39558819, 43.63994429)}"
-14602,21378,GO-20169005696,THEFT UNDER - BICYCLE,2016-06-12T00:00:00,2016,June,Sunday,12,164,20,2016-06-13T00:00:00,2016,June,Monday,13,165,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,ROMEO,RG,1,WHI,689.0,STOLEN,14535,"{'type': 'Point', 'coordinates': (-79.40185545, 43.64191381)}"
-14603,21388,GO-20169006437,THEFT UNDER - BICYCLE,2016-06-25T00:00:00,2016,June,Saturday,25,177,18,2016-06-27T00:00:00,2016,June,Monday,27,179,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,7,BLK,400.0,STOLEN,14536,"{'type': 'Point', 'coordinates': (-79.3979648, 43.63940267)}"
-14604,21399,GO-20169007680,THEFT UNDER - BICYCLE,2016-07-23T00:00:00,2016,July,Saturday,23,205,15,2016-07-24T00:00:00,2016,July,Sunday,24,206,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,,MT,21,BLK,899.0,STOLEN,14537,"{'type': 'Point', 'coordinates': (-79.39895584, 43.646052)}"
-14605,21403,GO-20169008488,THEFT UNDER - BICYCLE,2016-08-09T00:00:00,2016,August,Tuesday,9,222,12,2016-08-10T00:00:00,2016,August,Wednesday,10,223,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,RA,CADENT,RG,8,BLK,610.0,STOLEN,14538,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-14606,21406,GO-20169008784,THEFT UNDER - BICYCLE,2016-08-11T00:00:00,2016,August,Thursday,11,224,20,2016-08-15T00:00:00,2016,August,Monday,15,228,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RA,,MT,12,,500.0,STOLEN,14539,"{'type': 'Point', 'coordinates': (-79.395007, 43.64546954)}"
-14607,21411,GO-20169009078,THEFT UNDER,2016-08-19T00:00:00,2016,August,Friday,19,232,9,2016-08-19T00:00:00,2016,August,Friday,19,232,17,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,REACTION,MT,21,CPR,150.0,STOLEN,14540,"{'type': 'Point', 'coordinates': (-79.39835558, 43.64685172)}"
-14608,21417,GO-20169009843,THEFT UNDER,2016-09-02T00:00:00,2016,September,Friday,2,246,6,2016-09-02T00:00:00,2016,September,Friday,2,246,9,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RA,BACK ALLEY,RC,1,BLK,550.0,STOLEN,14541,"{'type': 'Point', 'coordinates': (-79.40372116, 43.64647061)}"
-14609,21426,GO-20169010406,THEFT UNDER,2016-09-13T00:00:00,2016,September,Tuesday,13,257,10,2016-09-14T00:00:00,2016,September,Wednesday,14,258,8,D14,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,GI,CITY ESCAPE,RG,8,GRY,0.0,STOLEN,14542,"{'type': 'Point', 'coordinates': (-79.395007, 43.64546954)}"
-14610,21427,GO-20169010600,THEFT UNDER - BICYCLE,2016-09-09T00:00:00,2016,September,Friday,9,253,10,2016-09-17T00:00:00,2016,September,Saturday,17,261,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,ROVE AL,RG,8,BLU,1200.0,STOLEN,14543,"{'type': 'Point', 'coordinates': (-79.395007, 43.64546954)}"
-14611,21429,GO-20161679198,THEFT UNDER - BICYCLE,2016-09-20T00:00:00,2016,September,Tuesday,20,264,20,2016-09-21T00:00:00,2016,September,Wednesday,21,265,8,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,3700,OT,0,BLU,1500.0,STOLEN,14544,"{'type': 'Point', 'coordinates': (-79.40005716, 43.64445256)}"
-14612,21430,GO-20161679287,FTC PROBATION ORDER,2016-09-20T00:00:00,2016,September,Tuesday,20,264,18,2016-09-21T00:00:00,2016,September,Wednesday,21,265,8,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,ESCAPE CITY,OT,0,GRY,600.0,STOLEN,14545,"{'type': 'Point', 'coordinates': (-79.39846982000002, 43.64477819)}"
-14613,21432,GO-20169011028,THEFT UNDER - BICYCLE,2016-09-23T00:00:00,2016,September,Friday,23,267,0,2016-09-24T00:00:00,2016,September,Saturday,24,268,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,KH,URBAN XCAPE,RG,24,BLK,500.0,STOLEN,14546,"{'type': 'Point', 'coordinates': (-79.39811145, 43.64623146000001)}"
-14614,21436,GO-20161816956,THEFT UNDER - BICYCLE,2016-09-15T00:00:00,2016,September,Thursday,15,259,19,2016-10-12T00:00:00,2016,October,Wednesday,12,286,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,UK,RG,3,,,STOLEN,14547,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-14615,21465,GO-2017351206,THEFT UNDER - BICYCLE,2017-02-22T00:00:00,2017,February,Wednesday,22,53,12,2017-02-25T00:00:00,2017,February,Saturday,25,56,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,ROCKHOPPER,MT,7,BLK,,STOLEN,14548,"{'type': 'Point', 'coordinates': (-79.39558819, 43.63994429)}"
-14616,21477,GO-20179005863,THEFT UNDER - BICYCLE,2017-05-03T00:00:00,2017,May,Wednesday,3,123,17,2017-05-07T00:00:00,2017,May,Sunday,7,127,22,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,SPECIALE FIXED,RC,1,BGE,600.0,STOLEN,14549,"{'type': 'Point', 'coordinates': (-79.39558819, 43.63994429)}"
-14617,21480,GO-20179006282,THEFT UNDER - BICYCLE,2017-05-12T00:00:00,2017,May,Friday,12,132,12,2017-05-13T00:00:00,2017,May,Saturday,13,133,17,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,ESCAPE,RG,21,DGR,649.0,STOLEN,14550,"{'type': 'Point', 'coordinates': (-79.395007, 43.64546954)}"
-14618,21483,GO-20179006469,THEFT UNDER,2016-12-01T00:00:00,2016,December,Thursday,1,336,13,2017-05-16T00:00:00,2017,May,Tuesday,16,136,16,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,LOFT 7D WOMEN'S,RG,7,CRM,700.0,STOLEN,14551,"{'type': 'Point', 'coordinates': (-79.40306565, 43.64488902)}"
-14619,21491,GO-2017978420,THEFT UNDER - BICYCLE,2017-06-01T00:00:00,2017,June,Thursday,1,152,17,2017-06-02T00:00:00,2017,June,Friday,2,153,17,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,,RG,24,BLK,1000.0,STOLEN,14552,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-14620,21497,GO-20179007943,THEFT UNDER,2017-05-27T00:00:00,2017,May,Saturday,27,147,15,2017-06-12T00:00:00,2017,June,Monday,12,163,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MANTRA V2,RG,1,GRY,450.0,STOLEN,14553,"{'type': 'Point', 'coordinates': (-79.40137395, 43.64770851)}"
-14621,21498,GO-20171045686,THEFT UNDER - BICYCLE,2017-06-09T00:00:00,2017,June,Friday,9,160,19,2017-06-12T00:00:00,2017,June,Monday,12,163,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,7.3FX,OT,21,BLK,1200.0,STOLEN,14554,"{'type': 'Point', 'coordinates': (-79.40078712, 43.64430357)}"
-14622,21795,GO-20149003201,THEFT UNDER,2014-05-04T00:00:00,2014,May,Sunday,4,124,23,2014-05-07T00:00:00,2014,May,Wednesday,7,127,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,,OT,1,BLK,100.0,STOLEN,14555,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-14623,21800,GO-20149004403,THEFT UNDER,2014-06-21T00:00:00,2014,June,Saturday,21,172,22,2014-06-24T00:00:00,2014,June,Tuesday,24,175,14,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SC,KICKER PRO,RG,21,BLK,325.0,STOLEN,14556,"{'type': 'Point', 'coordinates': (-79.39668944, 43.63667003)}"
-14624,23699,GO-2016940776,THEFT UNDER - BICYCLE,2016-05-28T00:00:00,2016,May,Saturday,28,149,15,2016-05-31T00:00:00,2016,May,Tuesday,31,152,10,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,EL,12,,800.0,STOLEN,14557,"{'type': 'Point', 'coordinates': (-79.35713011, 43.65083215)}"
-14625,19568,GO-20181999837,THEFT UNDER - BICYCLE,2018-10-30T00:00:00,2018,October,Tuesday,30,303,4,2018-10-30T00:00:00,2018,October,Tuesday,30,303,6,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,RG,0,,,STOLEN,14559,"{'type': 'Point', 'coordinates': (-79.38973372, 43.6466028)}"
-14626,21809,GO-20149005062,THEFT UNDER,2014-07-16T00:00:00,2014,July,Wednesday,16,197,20,2014-07-16T00:00:00,2014,July,Wednesday,16,197,20,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,2013 ESCAPE CIT,RG,21,GRY,600.0,STOLEN,14560,"{'type': 'Point', 'coordinates': (-79.39330422, 43.64134268000001)}"
-14627,21825,GO-20149006381,THEFT UNDER,2014-08-27T00:00:00,2014,August,Wednesday,27,239,15,2014-08-28T00:00:00,2014,August,Thursday,28,240,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE,RG,7,LGR,400.0,STOLEN,14561,"{'type': 'Point', 'coordinates': (-79.3922993, 43.63874701)}"
-14628,21826,GO-20149006484,THEFT UNDER,2014-08-25T00:00:00,2014,August,Monday,25,237,11,2014-09-02T00:00:00,2014,September,Tuesday,2,245,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,VENTURA SPORT,RC,10,BLK,600.0,STOLEN,14562,"{'type': 'Point', 'coordinates': (-79.3922993, 43.63874701)}"
-14629,21832,GO-20149006815,THEFT UNDER,2014-09-05T00:00:00,2014,September,Friday,5,248,19,2014-09-11T00:00:00,2014,September,Thursday,11,254,23,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,BAD BOY,RC,27,BLK,1500.0,STOLEN,14563,"{'type': 'Point', 'coordinates': (-79.39880646, 43.64142779)}"
-14630,21834,GO-20149006902,THEFT UNDER,2014-09-14T00:00:00,2014,September,Sunday,14,257,19,2014-09-15T00:00:00,2014,September,Monday,15,258,10,D14,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,UK,ALLEZ,RC,16,BLK,1000.0,STOLEN,14564,"{'type': 'Point', 'coordinates': (-79.40266560000002, 43.64392483)}"
-14631,21835,GO-20149007154,THEFT UNDER,2014-09-23T00:00:00,2014,September,Tuesday,23,266,19,2014-09-24T00:00:00,2014,September,Wednesday,24,267,7,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,Q520,MT,8,BLK,700.0,STOLEN,14565,"{'type': 'Point', 'coordinates': (-79.40372116, 43.64647061)}"
-14632,21838,GO-20149007373,THEFT UNDER,2014-10-02T00:00:00,2014,October,Thursday,2,275,21,2014-10-03T00:00:00,2014,October,Friday,3,276,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,RG,3,BLU,650.0,STOLEN,14566,"{'type': 'Point', 'coordinates': (-79.40059685, 43.64573236)}"
-14633,21847,GO-20159000444,THEFT UNDER,2015-01-24T00:00:00,2015,January,Saturday,24,24,9,2015-01-24T00:00:00,2015,January,Saturday,24,24,17,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CARIBOU 1,TO,27,BLU,1300.0,STOLEN,14567,"{'type': 'Point', 'coordinates': (-79.39532578, 43.64621392)}"
-14634,21849,GO-2015288399,THEFT UNDER,2014-10-15T00:00:00,2014,October,Wednesday,15,288,12,2015-02-18T00:00:00,2015,February,Wednesday,18,49,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNK,UNK,OT,0,,300.0,STOLEN,14568,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-14635,21856,GO-20159002285,THEFT UNDER,2015-04-23T00:00:00,2015,April,Thursday,23,113,8,2015-04-27T00:00:00,2015,April,Monday,27,117,9,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,SEEK 1,MT,32,BLK,1500.0,STOLEN,14569,"{'type': 'Point', 'coordinates': (-79.3979648, 43.63940267)}"
-14636,21857,GO-2015745445,THEFT UNDER,2015-04-29T00:00:00,2015,April,Wednesday,29,119,16,2015-05-05T00:00:00,2015,May,Tuesday,5,125,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,FUJI,TRAK,MT,21,BLKWHI,650.0,STOLEN,14570,"{'type': 'Point', 'coordinates': (-79.39833497, 43.64030158)}"
-14637,21887,GO-20159004166,THEFT UNDER,2015-07-04T00:00:00,2015,July,Saturday,4,185,14,2015-07-04T00:00:00,2015,July,Saturday,4,185,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,,OT,3,BLK,500.0,STOLEN,14571,"{'type': 'Point', 'coordinates': (-79.39668944, 43.63667003)}"
-14638,21888,GO-20159004198,THEFT UNDER,2015-07-04T00:00:00,2015,July,Saturday,4,185,23,2015-07-06T00:00:00,2015,July,Monday,6,187,9,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SP,,RG,15,BLU,100.0,STOLEN,14572,"{'type': 'Point', 'coordinates': (-79.39924205, 43.63909783)}"
-14639,21904,GO-20151322280,THEFT UNDER,2015-08-01T00:00:00,2015,August,Saturday,1,213,22,2015-08-02T00:00:00,2015,August,Sunday,2,214,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FUJI,FUJI TRACK,RG,1,BLU,,STOLEN,14573,"{'type': 'Point', 'coordinates': (-79.40005716, 43.64445256)}"
-14640,21911,GO-20151431634,THEFT UNDER,2015-08-15T00:00:00,2015,August,Saturday,15,227,14,2015-08-20T00:00:00,2015,August,Thursday,20,232,8,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,AMIGO FOLD,EL,1,BLKSIL,1500.0,STOLEN,14574,"{'type': 'Point', 'coordinates': (-79.4010881, 43.64697154)}"
-14641,21914,GO-20159006030,THEFT UNDER,2015-08-19T00:00:00,2015,August,Wednesday,19,231,8,2015-08-19T00:00:00,2015,August,Wednesday,19,231,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,,RG,18,BLK,0.0,STOLEN,14575,"{'type': 'Point', 'coordinates': (-79.39960983, 43.63648329)}"
-14642,21926,GO-20159007903,THEFT UNDER,2015-09-24T00:00:00,2015,September,Thursday,24,267,22,2015-09-29T00:00:00,2015,September,Tuesday,29,272,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,SIMS SEA BREEZE,OT,7,BLK,500.0,STOLEN,14576,"{'type': 'Point', 'coordinates': (-79.39924205, 43.63909783)}"
-14643,21930,GO-20159008267,THEFT UNDER,2015-10-06T00:00:00,2015,October,Tuesday,6,279,19,2015-10-06T00:00:00,2015,October,Tuesday,6,279,20,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RG,1,BLU,280.0,STOLEN,14577,"{'type': 'Point', 'coordinates': (-79.39924205, 43.63909783)}"
-14644,21949,GO-20169002608,THEFT UNDER - BICYCLE,2016-03-19T00:00:00,2016,March,Saturday,19,79,17,2016-03-21T00:00:00,2016,March,Monday,21,81,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,FJ,DECLARATION,RG,1,GRY,580.0,STOLEN,14578,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-14645,21961,GO-20169004441,THEFT UNDER,2016-05-10T00:00:00,2016,May,Tuesday,10,131,23,2016-05-12T00:00:00,2016,May,Thursday,12,133,17,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,F 75,RC,11,BLK,1400.0,STOLEN,14579,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-14646,21966,GO-20169004857,THEFT UNDER,2016-05-23T00:00:00,2016,May,Monday,23,144,13,2016-05-23T00:00:00,2016,May,Monday,23,144,20,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ASPECT,MT,21,BLKWHI,1000.0,STOLEN,14580,"{'type': 'Point', 'coordinates': (-79.40215599, 43.64265388)}"
-14647,22599,GO-20209031882,THEFT UNDER,2020-12-07T00:00:00,2020,December,Monday,7,342,0,2020-12-12T00:00:00,2020,December,Saturday,12,347,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,BI,1991 BIANCHI FO,RC,24,TRQ,500.0,STOLEN,14581,"{'type': 'Point', 'coordinates': (-79.39228875, 43.64605377)}"
-14648,22604,GO-20209032926,THEFT UNDER,2020-12-18T00:00:00,2020,December,Friday,18,353,18,2020-12-28T00:00:00,2020,December,Monday,28,363,0,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,RA,,RG,30,BLU,0.0,STOLEN,14582,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-14649,22605,GO-20209032926,THEFT UNDER,2020-12-18T00:00:00,2020,December,Friday,18,353,18,2020-12-28T00:00:00,2020,December,Monday,28,363,0,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,30,BLU,0.0,STOLEN,14583,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-14650,22609,GO-20199023848,THEFT UNDER - BICYCLE,2019-07-14T00:00:00,2019,July,Sunday,14,195,11,2019-07-26T00:00:00,2019,July,Friday,26,207,11,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CC,29ER,MT,21,BLU,300.0,STOLEN,14584,"{'type': 'Point', 'coordinates': (-79.37302563, 43.64248042)}"
-14651,22614,GO-20199024784,THEFT UNDER,2019-08-02T00:00:00,2019,August,Friday,2,214,8,2019-08-02T00:00:00,2019,August,Friday,2,214,16,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RG,18,SIL,1000.0,STOLEN,14585,"{'type': 'Point', 'coordinates': (-79.37302563, 43.64248042)}"
-14652,22622,GO-20199026529,THEFT UNDER,2019-08-16T00:00:00,2019,August,Friday,16,228,7,2019-08-16T00:00:00,2019,August,Friday,16,228,17,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,TOUGHROAD SLR 2,MT,27,BLK,1149.0,STOLEN,14586,"{'type': 'Point', 'coordinates': (-79.37134522, 43.64305948)}"
-14653,12822,GO-20162092196,THEFT UNDER - BICYCLE,2016-11-18T00:00:00,2016,November,Friday,18,323,16,2016-11-25T00:00:00,2016,November,Friday,25,330,10,D52,Toronto,79,University (79),Universities / Colleges,Educational,NAKAMURA,,OT,18,BLK,300.0,STOLEN,15235,"{'type': 'Point', 'coordinates': (-79.40207036, 43.66305191)}"
-14654,22625,GO-20199026883,THEFT UNDER - BICYCLE,2019-08-19T00:00:00,2019,August,Monday,19,231,19,2019-08-20T00:00:00,2019,August,Tuesday,20,232,7,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,,RG,21,SIL,300.0,STOLEN,14587,"{'type': 'Point', 'coordinates': (-79.3610029, 43.64773904)}"
-14655,22630,GO-20199027342,THEFT UNDER,2019-08-22T00:00:00,2019,August,Thursday,22,234,19,2019-08-23T00:00:00,2019,August,Friday,23,235,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,7,PLE,0.0,STOLEN,14588,"{'type': 'Point', 'coordinates': (-79.39204821, 43.64885072)}"
-14656,22631,GO-20199027415,THEFT UNDER,2019-08-22T00:00:00,2019,August,Thursday,22,234,20,2019-08-23T00:00:00,2019,August,Friday,23,235,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RC,14,WHI,2000.0,STOLEN,14589,"{'type': 'Point', 'coordinates': (-79.39124176, 43.640111790000006)}"
-14657,22632,GO-20199027463,THEFT UNDER,2019-08-23T00:00:00,2019,August,Friday,23,235,18,2019-08-23T00:00:00,2019,August,Friday,23,235,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,10,BLU,1000.0,STOLEN,14590,"{'type': 'Point', 'coordinates': (-79.39175463, 43.64474761000001)}"
-14658,22634,GO-20199027472,THEFT UNDER,2019-08-23T00:00:00,2019,August,Friday,23,235,6,2019-08-23T00:00:00,2019,August,Friday,23,235,22,D52,Toronto,77,Waterfront Communities-The Island (77),Go Station,Transit,SC,GTX-2,RG,21,BLK,400.0,STOLEN,14591,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-14659,22636,GO-20199028063,THEFT UNDER,2019-08-16T00:00:00,2019,August,Friday,16,228,14,2019-08-28T00:00:00,2019,August,Wednesday,28,240,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,PANAMAO X3,MT,21,BLK,700.0,STOLEN,14592,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-14660,22637,GO-20199028148,THEFT UNDER,2019-08-29T00:00:00,2019,August,Thursday,29,241,11,2019-08-29T00:00:00,2019,August,Thursday,29,241,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,FEATHER,RG,1,BLK,850.0,STOLEN,14593,"{'type': 'Point', 'coordinates': (-79.38946509, 43.64593813)}"
-14661,19853,GO-20159004458,THEFT UNDER,2015-07-11T00:00:00,2015,July,Saturday,11,192,23,2015-07-12T00:00:00,2015,July,Sunday,12,193,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,FJ,,RC,1,,700.0,STOLEN,14928,"{'type': 'Point', 'coordinates': (-79.39281928, 43.64732006)}"
-14662,22650,GO-20199030941,THEFT UNDER - BICYCLE,2019-09-21T00:00:00,2019,September,Saturday,21,264,16,2019-09-21T00:00:00,2019,September,Saturday,21,264,20,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,TALON 2,MT,18,ONG,1000.0,STOLEN,14594,"{'type': 'Point', 'coordinates': (-79.35713011, 43.65083215)}"
-14663,22656,GO-20199032506,THEFT FROM MOTOR VEHICLE UNDER,2019-10-03T00:00:00,2019,October,Thursday,3,276,3,2019-10-03T00:00:00,2019,October,Thursday,3,276,15,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NO,,RG,18,GRY,600.0,STOLEN,14595,"{'type': 'Point', 'coordinates': (-79.37146354, 43.64763677)}"
-14664,22662,GO-20191977648,THEFT OF EBIKE UNDER $5000,2019-10-13T00:00:00,2019,October,Sunday,13,286,11,2019-10-13T00:00:00,2019,October,Sunday,13,286,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OPUS,SONAR,EL,1,GRY,1900.0,STOLEN,14596,"{'type': 'Point', 'coordinates': (-79.39075649, 43.64913078)}"
-14665,22665,GO-20199033985,THEFT UNDER - BICYCLE,2019-10-10T00:00:00,2019,October,Thursday,10,283,7,2019-10-15T00:00:00,2019,October,Tuesday,15,288,18,D51,Toronto,77,Waterfront Communities-The Island (77),Schools During Supervised Activity,Educational,GI,2016 ALIGHT 3,RG,12,LBL,500.0,STOLEN,14597,"{'type': 'Point', 'coordinates': (-79.36616846, 43.64421276)}"
-14666,22670,GO-20199034926,THEFT UNDER,2019-10-22T00:00:00,2019,October,Tuesday,22,295,12,2019-10-23T00:00:00,2019,October,Wednesday,23,296,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CA,SYNAPS,RC,10,BLK,1000.0,STOLEN,14598,"{'type': 'Point', 'coordinates': (-79.39296466, 43.64056148000001)}"
-14667,22675,GO-20199035867,THEFT UNDER - SHOPLIFTING,2019-10-28T00:00:00,2019,October,Monday,28,301,19,2019-10-30T00:00:00,2019,October,Wednesday,30,303,21,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,PORTOBELLO,RG,18,BLK,1190.0,STOLEN,14599,"{'type': 'Point', 'coordinates': (-79.35677669, 43.6529262)}"
-14668,22679,GO-20199036983,THEFT UNDER,2019-11-03T00:00:00,2019,November,Sunday,3,307,16,2019-11-09T00:00:00,2019,November,Saturday,9,313,13,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,MT,8,GRY,500.0,STOLEN,14600,"{'type': 'Point', 'coordinates': (-79.36232429, 43.64730539)}"
-14669,22686,GO-20199039648,THEFT UNDER,2019-12-03T00:00:00,2019,December,Tuesday,3,337,13,2019-12-03T00:00:00,2019,December,Tuesday,3,337,14,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,OT,3,BLK,1200.0,STOLEN,14601,"{'type': 'Point', 'coordinates': (-79.39048951, 43.64848965)}"
-14670,22702,GO-20209010186,THEFT UNDER,2020-03-28T00:00:00,2020,March,Saturday,28,88,8,2020-03-31T00:00:00,2020,March,Tuesday,31,91,8,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,20,ONG,903.0,STOLEN,14602,"{'type': 'Point', 'coordinates': (-79.37146354, 43.64763677)}"
-14671,22709,GO-2020738269,THEFT UNDER,2020-04-02T00:00:00,2020,April,Thursday,2,93,21,2020-04-17T00:00:00,2020,April,Friday,17,108,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RG,10,BLK,0.0,STOLEN,14603,"{'type': 'Point', 'coordinates': (-79.38994752, 43.64370303)}"
-14672,22710,GO-2020738269,THEFT UNDER,2020-04-02T00:00:00,2020,April,Thursday,2,93,21,2020-04-17T00:00:00,2020,April,Friday,17,108,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RG,10,WHI,0.0,STOLEN,14604,"{'type': 'Point', 'coordinates': (-79.38994752, 43.64370303)}"
-14673,22711,GO-2020738269,THEFT UNDER,2020-04-02T00:00:00,2020,April,Thursday,2,93,21,2020-04-17T00:00:00,2020,April,Friday,17,108,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RG,10,WHI,0.0,STOLEN,14605,"{'type': 'Point', 'coordinates': (-79.38994752, 43.64370303)}"
-14674,22724,GO-20201021577,PROPERTY - FOUND,2020-06-02T00:00:00,2020,June,Tuesday,2,154,16,2020-06-03T00:00:00,2020,June,Wednesday,3,155,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,DEFY 2,RC,18,BLKWHI,,RECOVERED,14606,"{'type': 'Point', 'coordinates': (-79.38330674, 43.64067063)}"
-14675,22725,GO-20201021577,PROPERTY - FOUND,2020-06-02T00:00:00,2020,June,Tuesday,2,154,16,2020-06-03T00:00:00,2020,June,Wednesday,3,155,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,CONTEND SL,RC,18,GRYLBL,,RECOVERED,14607,"{'type': 'Point', 'coordinates': (-79.38330674, 43.64067063)}"
-14676,22726,GO-20201029167,THEFT UNDER - BICYCLE,2020-06-04T00:00:00,2020,June,Thursday,4,156,13,2020-06-08T00:00:00,2020,June,Monday,8,160,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,AMEGO,INFINITE,EL,1,BLK,2500.0,STOLEN,14608,"{'type': 'Point', 'coordinates': (-79.39281928, 43.64732006)}"
-14677,22733,GO-20201169315,THEFT UNDER - BICYCLE,2020-06-11T00:00:00,2020,June,Thursday,11,163,17,2020-06-25T00:00:00,2020,June,Thursday,25,177,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OTHER,,EL,1,BLK,,STOLEN,14609,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-14678,22738,GO-20201224553,B&E,2020-07-02T00:00:00,2020,July,Thursday,2,184,2,2020-07-03T00:00:00,2020,July,Friday,3,185,8,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,ORBEA,MK50,MT,21,BLKGRY,700.0,STOLEN,14610,"{'type': 'Point', 'coordinates': (-79.35971484, 43.65076046)}"
-14679,3231,GO-20189026700,THEFT UNDER - BICYCLE,2018-08-16T00:00:00,2018,August,Thursday,16,228,8,2018-08-16T00:00:00,2018,August,Thursday,16,228,16,D52,Toronto,78,Kensington-Chinatown (78),Universities / Colleges,Educational,SC,,RG,18,PLE,400.0,STOLEN,14611,"{'type': 'Point', 'coordinates': (-79.39095898, 43.65603534)}"
-14680,3249,GO-20189026993,THEFT UNDER,2018-08-18T00:00:00,2018,August,Saturday,18,230,14,2018-08-19T00:00:00,2018,August,Sunday,19,231,12,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CROSSTRAIL,RG,20,BLK,1500.0,STOLEN,14612,"{'type': 'Point', 'coordinates': (-79.3971995, 43.65090154)}"
-14681,3250,GO-20189026993,THEFT UNDER,2018-08-18T00:00:00,2018,August,Saturday,18,230,14,2018-08-19T00:00:00,2018,August,Sunday,19,231,12,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,VITA COMP,RG,20,YEL,1000.0,STOLEN,14613,"{'type': 'Point', 'coordinates': (-79.3971995, 43.65090154)}"
-14682,23706,GO-20169005613,THEFT UNDER,2016-06-11T00:00:00,2016,June,Saturday,11,163,11,2016-06-11T00:00:00,2016,June,Saturday,11,163,11,D51,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,KH,URBAN SOUL,OT,1,BLK,800.0,STOLEN,14614,"{'type': 'Point', 'coordinates': (-79.36460313, 43.64922452)}"
-14683,3275,GO-20189027251,THEFT FROM MOTOR VEHICLE UNDER,2018-08-19T00:00:00,2018,August,Sunday,19,231,2,2018-08-21T00:00:00,2018,August,Tuesday,21,233,10,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,CONTEND SL 2 DI,RC,30,GRY,1900.0,STOLEN,14615,"{'type': 'Point', 'coordinates': (-79.39628172000002, 43.65672386)}"
-14684,23714,GO-20169006323,THEFT UNDER,2016-06-24T00:00:00,2016,June,Friday,24,176,15,2016-06-24T00:00:00,2016,June,Friday,24,176,23,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MA,STINSON,MT,21,SIL,450.0,STOLEN,14616,"{'type': 'Point', 'coordinates': (-79.37693454, 43.64688442)}"
-14685,19569,GO-20189037592,THEFT UNDER - BICYCLE,2018-11-07T00:00:00,2018,November,Wednesday,7,311,16,2018-11-09T00:00:00,2018,November,Friday,9,313,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,TO,24,BLK,500.0,STOLEN,14617,"{'type': 'Point', 'coordinates': (-79.39184935, 43.63765238)}"
-14686,3407,GO-20189029379,THEFT UNDER - BICYCLE,2018-09-06T00:00:00,2018,September,Thursday,6,249,12,2018-09-06T00:00:00,2018,September,Thursday,6,249,18,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,OT,21,BLK,520.0,STOLEN,14618,"{'type': 'Point', 'coordinates': (-79.39136265, 43.65838682)}"
-14687,23725,GO-20169008435,THEFT UNDER,2016-07-29T00:00:00,2016,July,Friday,29,211,18,2016-08-09T00:00:00,2016,August,Tuesday,9,222,11,D51,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,RA,,TA,1,RED,400.0,STOLEN,14619,"{'type': 'Point', 'coordinates': (-79.36592705, 43.64892655)}"
-14688,19570,GO-20189038435,FTC PROBATION ORDER,2018-11-15T00:00:00,2018,November,Thursday,15,319,17,2018-11-15T00:00:00,2018,November,Thursday,15,319,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RG,6,GRY,600.0,STOLEN,14620,"{'type': 'Point', 'coordinates': (-79.3881121, 43.64696458)}"
-14689,3414,GO-20181659819,THEFT OF EBIKE UNDER $5000,2018-09-07T00:00:00,2018,September,Friday,7,250,13,2018-09-07T00:00:00,2018,September,Friday,7,250,18,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CUBE,ACID,EL,1,BLK,3880.0,STOLEN,14621,"{'type': 'Point', 'coordinates': (-79.39045505, 43.65985872)}"
-14690,6974,GO-20209020409,THEFT UNDER,2020-08-16T00:00:00,2020,August,Sunday,16,229,21,2020-08-17T00:00:00,2020,August,Monday,17,230,6,D14,Toronto,78,Kensington-Chinatown (78),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,RG,1,LBL,200.0,STOLEN,14622,"{'type': 'Point', 'coordinates': (-79.40397597, 43.65583003)}"
-14691,23738,GO-20169009408,THEFT UNDER - BICYCLE,2016-08-24T00:00:00,2016,August,Wednesday,24,237,12,2016-08-24T00:00:00,2016,August,Wednesday,24,237,12,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,DISCOVERY CHANN,RC,27,BLU,1300.0,STOLEN,14623,"{'type': 'Point', 'coordinates': (-79.37374694, 43.64844177)}"
-14692,23746,GO-20169009921,THEFT UNDER - BICYCLE,2016-09-03T00:00:00,2016,September,Saturday,3,247,16,2016-09-03T00:00:00,2016,September,Saturday,3,247,18,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RC,16,RED,350.0,STOLEN,14624,"{'type': 'Point', 'coordinates': (-79.37215317, 43.64913066)}"
-14693,23747,GO-20169009921,THEFT UNDER - BICYCLE,2016-09-03T00:00:00,2016,September,Saturday,3,247,16,2016-09-03T00:00:00,2016,September,Saturday,3,247,18,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,10,WHI,600.0,STOLEN,14625,"{'type': 'Point', 'coordinates': (-79.37215317, 43.64913066)}"
-14694,23752,GO-20161712785,THEFT OF EBIKE UNDER $5000,2016-09-25T00:00:00,2016,September,Sunday,25,269,23,2016-09-26T00:00:00,2016,September,Monday,26,270,14,D51,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,UNKNOWN MAKE,UNKNOWN,EL,1,PLE,1100.0,STOLEN,14626,"{'type': 'Point', 'coordinates': (-79.36607348, 43.64932911)}"
-14695,23753,GO-20169011345,B&E,2016-09-28T00:00:00,2016,September,Wednesday,28,272,17,2016-09-30T00:00:00,2016,September,Friday,30,274,10,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,ONG,250.0,STOLEN,14627,"{'type': 'Point', 'coordinates': (-79.35677669, 43.6529262)}"
-14696,23754,GO-20169011380,THEFT UNDER - BICYCLE,2016-09-29T00:00:00,2016,September,Thursday,29,273,17,2016-09-30T00:00:00,2016,September,Friday,30,274,18,D51,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,50,GRY,900.0,STOLEN,14628,"{'type': 'Point', 'coordinates': (-79.35677669, 43.6529262)}"
-14697,23758,GO-20169011920,THEFT UNDER,2016-10-06T00:00:00,2016,October,Thursday,6,280,20,2016-10-12T00:00:00,2016,October,Wednesday,12,286,10,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,CADENCE,MT,21,BLK,150.0,STOLEN,14629,"{'type': 'Point', 'coordinates': (-79.35482206, 43.65337232)}"
-14698,23765,GO-20169012751,THEFT UNDER,2016-10-28T00:00:00,2016,October,Friday,28,302,20,2016-10-29T00:00:00,2016,October,Saturday,29,303,15,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SC,SCHWINN 27.5 ON,MT,21,BLK,300.0,STOLEN,14630,"{'type': 'Point', 'coordinates': (-79.37302563, 43.64248042)}"
-14699,23772,GO-20169013950,THEFT UNDER - BICYCLE,2016-11-26T00:00:00,2016,November,Saturday,26,331,12,2016-11-28T00:00:00,2016,November,Monday,28,333,19,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,21,GRY,500.0,STOLEN,14631,"{'type': 'Point', 'coordinates': (-79.35482206, 43.65337232)}"
-14700,23783,GO-2017443315,THEFT UNDER - BICYCLE,2017-03-01T00:00:00,2017,March,Wednesday,1,60,12,2017-03-13T00:00:00,2017,March,Monday,13,72,9,D51,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,AVENTON,CORDOBA,TO,1,GRY,1000.0,STOLEN,14632,"{'type': 'Point', 'coordinates': (-79.36412801, 43.648234280000004)}"
-14701,23785,GO-2017613441,THEFT UNDER - BICYCLE,2017-04-02T00:00:00,2017,April,Sunday,2,92,10,2017-04-07T00:00:00,2017,April,Friday,7,97,14,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,TR,7,BLKSIL,800.0,STOLEN,14633,"{'type': 'Point', 'coordinates': (-79.36953834, 43.64809054)}"
-14702,23801,GO-20201206341,POSSESSION PROPERTY OBC UNDER,2020-06-30T00:00:00,2020,June,Tuesday,30,182,17,2020-07-01T00:00:00,2020,July,Wednesday,1,183,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,,RG,18,,,RECOVERED,14634,"{'type': 'Point', 'coordinates': (-79.39832559, 43.63567355)}"
-14703,23809,GO-20209017841,THEFT UNDER,2020-07-17T00:00:00,2020,July,Friday,17,199,21,2020-07-18T00:00:00,2020,July,Saturday,18,200,1,D14,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,OT,DEL SOL PROJEKT,RG,8,RED,600.0,STOLEN,14635,"{'type': 'Point', 'coordinates': (-79.40059685, 43.64573236)}"
-14704,23829,GO-20209022230,THEFT UNDER,2020-09-01T00:00:00,2020,September,Tuesday,1,245,12,2020-09-03T00:00:00,2020,September,Thursday,3,247,17,D14,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,RG,24,BLK,0.0,STOLEN,14636,"{'type': 'Point', 'coordinates': (-79.3979648, 43.63940267)}"
-14705,23832,GO-20209022634,THEFT UNDER,2020-09-08T00:00:00,2020,September,Tuesday,8,252,15,2020-09-08T00:00:00,2020,September,Tuesday,8,252,16,D14,Toronto,77,Waterfront Communities-The Island (77),Schools During Supervised Activity,Educational,OT,CARTIER ALTUS,RG,8,BLK,1500.0,STOLEN,14637,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-14706,23841,GO-20209024663,THEFT UNDER,2020-09-26T00:00:00,2020,September,Saturday,26,270,0,2020-09-27T00:00:00,2020,September,Sunday,27,271,3,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,MANTRA V2,OT,1,OTH,500.0,STOLEN,14638,"{'type': 'Point', 'coordinates': (-79.39895584, 43.646052)}"
-14707,23847,GO-20209025635,THEFT UNDER,2020-10-06T00:00:00,2020,October,Tuesday,6,280,15,2020-10-07T00:00:00,2020,October,Wednesday,7,281,8,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CA,QUICK,RG,27,GRY,1200.0,STOLEN,14639,"{'type': 'Point', 'coordinates': (-79.40078712, 43.64430357)}"
-14708,23848,GO-20209025674,THEFT UNDER,2020-10-06T00:00:00,2020,October,Tuesday,6,280,19,2020-10-07T00:00:00,2020,October,Wednesday,7,281,12,D14,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,OT,CROSSTRAIL HYDR,OT,8,BLK,993.0,STOLEN,14640,"{'type': 'Point', 'coordinates': (-79.39184935, 43.63765238)}"
-14709,23856,GO-20201996128,B&E,2020-10-17T00:00:00,2020,October,Saturday,17,291,17,2020-10-21T00:00:00,2020,October,Wednesday,21,295,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,ARGON 18,KRYPTON,MT,18,BLKRED,,STOLEN,14641,"{'type': 'Point', 'coordinates': (-79.39999105, 43.63737009)}"
-14710,23864,GO-20209030815,THEFT UNDER,2020-11-27T00:00:00,2020,November,Friday,27,332,16,2020-11-28T00:00:00,2020,November,Saturday,28,333,17,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,1,BLK,50.0,STOLEN,14642,"{'type': 'Point', 'coordinates': (-79.39951371, 43.64318312)}"
-14711,23899,GO-20142330498,THEFT UNDER,2014-06-17T00:00:00,2014,June,Tuesday,17,168,14,2014-06-20T00:00:00,2014,June,Friday,20,171,14,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,GARDEAU,TO,12,GRY,900.0,STOLEN,14643,"{'type': 'Point', 'coordinates': (-79.37302563, 43.64248042)}"
-14712,13281,GO-20143489334,THEFT UNDER,2014-12-07T00:00:00,2014,December,Sunday,7,341,3,2014-12-08T00:00:00,2014,December,Monday,8,342,8,D52,Toronto,79,University (79),Universities / Colleges,Educational,CCM,FALCON,OT,21,YEL,110.0,STOLEN,15268,"{'type': 'Point', 'coordinates': (-79.39734175, 43.66803279)}"
-14713,23900,GO-20149004237,THEFT UNDER,2014-06-09T00:00:00,2014,June,Monday,9,160,10,2014-06-19T00:00:00,2014,June,Thursday,19,170,10,D51,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,,MT,24,BLK,500.0,STOLEN,14644,"{'type': 'Point', 'coordinates': (-79.36616846, 43.64421276)}"
-14714,23903,GO-20149004360,THEFT UNDER,2014-06-22T00:00:00,2014,June,Sunday,22,173,13,2014-06-23T00:00:00,2014,June,Monday,23,174,17,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,RG,18,GRY,1034.0,STOLEN,14645,"{'type': 'Point', 'coordinates': (-79.37302563, 43.64248042)}"
-14715,23921,GO-20149004956,THEFT UNDER,2014-07-12T00:00:00,2014,July,Saturday,12,193,2,2014-07-13T00:00:00,2014,July,Sunday,13,194,19,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,RALEIGH SPORT F,RG,21,PLE,0.0,STOLEN,14646,"{'type': 'Point', 'coordinates': (-79.36972623, 43.64848901)}"
-14716,23927,GO-20149005357,THEFT FROM MOTOR VEHICLE UNDER,2014-07-26T00:00:00,2014,July,Saturday,26,207,12,2014-07-26T00:00:00,2014,July,Saturday,26,207,15,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,INDIE 4,OT,27,GRY,549.0,STOLEN,14647,"{'type': 'Point', 'coordinates': (-79.37374694, 43.64844177)}"
-14717,23943,GO-20149006169,THEFT UNDER,2014-08-21T00:00:00,2014,August,Thursday,21,233,12,2014-08-21T00:00:00,2014,August,Thursday,21,233,18,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,3900,MT,21,BLU,489.0,STOLEN,14648,"{'type': 'Point', 'coordinates': (-79.35713011, 43.65083215)}"
-14718,23948,GO-20149006659,THEFT UNDER,2014-09-07T00:00:00,2014,September,Sunday,7,250,13,2014-09-07T00:00:00,2014,September,Sunday,7,250,23,D51,Toronto,77,Waterfront Communities-The Island (77),Unknown,Other,GI,"REVEL 3, SIZE",MT,18,BLK,450.0,STOLEN,14649,"{'type': 'Point', 'coordinates': (-79.35713011, 43.65083215)}"
-14719,23970,GO-20159000315,THEFT UNDER,2015-01-12T00:00:00,2015,January,Monday,12,12,21,2015-01-17T00:00:00,2015,January,Saturday,17,17,19,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,QUICK CX 1,MT,27,SIL,1500.0,STOLEN,14650,"{'type': 'Point', 'coordinates': (-79.37374694, 43.64844177)}"
-14720,23981,GO-20159002356,THEFT UNDER,2015-04-24T00:00:00,2015,April,Friday,24,114,19,2015-04-30T00:00:00,2015,April,Thursday,30,120,11,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NO,VFR 4,RG,21,BLK,400.0,STOLEN,14651,"{'type': 'Point', 'coordinates': (-79.37327274, 43.64725689)}"
-14721,23987,GO-20181833641,THEFT UNDER - BICYCLE,2018-10-03T00:00:00,2018,October,Wednesday,3,276,23,2018-10-04T00:00:00,2018,October,Thursday,4,277,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,NORCO BFR4,,TO,21,BLK,519.0,STOLEN,14652,"{'type': 'Point', 'coordinates': (-79.39880646, 43.64142779)}"
-14722,24007,GO-20199000411,THEFT UNDER - BICYCLE,2018-12-27T00:00:00,2018,December,Thursday,27,361,1,2019-01-04T00:00:00,2019,January,Friday,4,4,14,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,,TO,24,GRY,1392.0,STOLEN,14653,"{'type': 'Point', 'coordinates': (-79.39924205, 43.63909783)}"
-14723,24008,GO-20199000620,THEFT UNDER - BICYCLE,2019-01-06T00:00:00,2019,January,Sunday,6,6,12,2019-01-06T00:00:00,2019,January,Sunday,6,6,14,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,NORCO INDIE 3,RG,21,BLU,700.0,STOLEN,14654,"{'type': 'Point', 'coordinates': (-79.395007, 43.64546954)}"
-14724,24011,GO-20199002804,THEFT UNDER - BICYCLE,2019-01-11T00:00:00,2019,January,Friday,11,11,16,2019-01-21T00:00:00,2019,January,Monday,21,21,9,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,FX2,TO,21,BLK,700.0,STOLEN,14655,"{'type': 'Point', 'coordinates': (-79.40306565, 43.64488902)}"
-14725,24028,GO-20199012855,THEFT UNDER - BICYCLE,2019-04-19T00:00:00,2019,April,Friday,19,109,9,2019-04-24T00:00:00,2019,April,Wednesday,24,114,9,D14,Toronto,77,Waterfront Communities-The Island (77),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BI,,RG,8,TRQ,2000.0,STOLEN,14656,"{'type': 'Point', 'coordinates': (-79.39754675, 43.6417678)}"
-14726,24033,GO-20199014836,THEFT UNDER - BICYCLE,2019-01-01T00:00:00,2019,January,Tuesday,1,1,10,2019-05-13T00:00:00,2019,May,Monday,13,133,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,RM,FUSION 910,MT,27,BLU,600.0,STOLEN,14657,"{'type': 'Point', 'coordinates': (-79.40306565, 43.64488902)}"
-14727,24054,GO-20199020286,THEFT UNDER - BICYCLE,2019-06-25T00:00:00,2019,June,Tuesday,25,176,22,2019-06-27T00:00:00,2019,June,Thursday,27,178,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,AMS,RG,8,SIL,1500.0,STOLEN,14658,"{'type': 'Point', 'coordinates': (-79.3979648, 43.63940267)}"
-14728,24071,GO-20191353801,B&E W'INTENT,2019-07-05T00:00:00,2019,July,Friday,5,186,18,2019-07-19T00:00:00,2019,July,Friday,19,200,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CA,R800,RC,10,BLU,500.0,STOLEN,14659,"{'type': 'Point', 'coordinates': (-79.40306565, 43.64488902)}"
-14729,24075,GO-20199023820,THEFT UNDER - BICYCLE,2019-07-21T00:00:00,2019,July,Sunday,21,202,16,2019-07-25T00:00:00,2019,July,Thursday,25,206,23,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,DOLCE,RC,8,,1000.0,STOLEN,14660,"{'type': 'Point', 'coordinates': (-79.39558819, 43.63994429)}"
-14730,24103,GO-20199030578,THEFT UNDER - BICYCLE,2019-09-05T00:00:00,2019,September,Thursday,5,248,18,2019-09-18T00:00:00,2019,September,Wednesday,18,261,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,INDIE 3,RG,6,BLK,670.0,STOLEN,14661,"{'type': 'Point', 'coordinates': (-79.39833497, 43.64030158)}"
-14731,24114,GO-20192051989,B&E,2019-10-22T00:00:00,2019,October,Tuesday,22,295,3,2019-10-24T00:00:00,2019,October,Thursday,24,297,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,,RC,18,ONG,2204.0,STOLEN,14662,"{'type': 'Point', 'coordinates': (-79.39811145, 43.64623146000001)}"
-14732,24115,GO-20192051989,B&E,2019-10-22T00:00:00,2019,October,Tuesday,22,295,3,2019-10-24T00:00:00,2019,October,Thursday,24,297,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,CONTESSA SOLACE,RC,18,WHI,3276.0,STOLEN,14663,"{'type': 'Point', 'coordinates': (-79.39811145, 43.64623146000001)}"
-14733,24120,GO-20199036394,THEFT UNDER - BICYCLE,2019-10-31T00:00:00,2019,October,Thursday,31,304,19,2019-11-04T00:00:00,2019,November,Monday,4,308,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NO,,MT,10,BLU,500.0,STOLEN,14664,"{'type': 'Point', 'coordinates': (-79.40185545, 43.64191381)}"
-14734,13284,GO-2015469975,THEFT UNDER,2015-03-17T00:00:00,2015,March,Tuesday,17,76,15,2015-03-20T00:00:00,2015,March,Friday,20,79,14,D52,Toronto,79,University (79),Universities / Colleges,Educational,RALEIGH,LEGEND,OT,1,RED,600.0,STOLEN,15269,"{'type': 'Point', 'coordinates': (-79.39901086, 43.66089417)}"
-14735,24121,GO-20199036394,THEFT UNDER - BICYCLE,2019-10-31T00:00:00,2019,October,Thursday,31,304,19,2019-11-04T00:00:00,2019,November,Monday,4,308,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,RM,,RC,10,RED,1000.0,STOLEN,14665,"{'type': 'Point', 'coordinates': (-79.40185545, 43.64191381)}"
-14736,24122,GO-20199036394,THEFT UNDER - BICYCLE,2019-10-31T00:00:00,2019,October,Thursday,31,304,19,2019-11-04T00:00:00,2019,November,Monday,4,308,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,10,PLE,500.0,STOLEN,14666,"{'type': 'Point', 'coordinates': (-79.40185545, 43.64191381)}"
-14737,24128,GO-20199038129,THEFT UNDER,2019-11-18T00:00:00,2019,November,Monday,18,322,17,2019-11-19T00:00:00,2019,November,Tuesday,19,323,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,BROAM 60,TO,18,BLK,1219.0,STOLEN,14667,"{'type': 'Point', 'coordinates': (-79.40008347, 43.64718548)}"
-14738,24137,GO-20199039578,THEFT UNDER,2019-12-01T00:00:00,2019,December,Sunday,1,335,18,2019-12-03T00:00:00,2019,December,Tuesday,3,337,22,D14,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,10,WHI,300.0,STOLEN,14668,"{'type': 'Point', 'coordinates': (-79.39832559, 43.63567355)}"
-14739,24152,GO-20209007730,THEFT UNDER,2020-03-04T00:00:00,2020,March,Wednesday,4,64,13,2020-03-04T00:00:00,2020,March,Wednesday,4,64,14,D14,Toronto,77,Waterfront Communities-The Island (77),Schools During Supervised Activity,Educational,TR,7.3,RG,9,BLK,700.0,STOLEN,14669,"{'type': 'Point', 'coordinates': (-79.39832559, 43.63567355)}"
-14740,24179,GO-20209014265,B&E,2020-05-29T00:00:00,2020,May,Friday,29,150,3,2020-05-30T00:00:00,2020,May,Saturday,30,151,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,DISCOVERY,OT,15,BLU,0.0,STOLEN,14670,"{'type': 'Point', 'coordinates': (-79.39880646, 43.64142779)}"
-14741,24207,GO-20179012209,THEFT UNDER - BICYCLE,2017-08-11T00:00:00,2017,August,Friday,11,223,17,2017-08-11T00:00:00,2017,August,Friday,11,223,21,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,PAVE LIGHT,RG,9,BLK,1200.0,STOLEN,14671,"{'type': 'Point', 'coordinates': (-79.40005716, 43.64445256)}"
-14742,24377,GO-20181603658,B&E,2018-08-18T00:00:00,2018,August,Saturday,18,230,16,2018-08-30T00:00:00,2018,August,Thursday,30,242,8,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,BASSO,ROAD BIKE,RG,16,BLK,3000.0,STOLEN,14693,"{'type': 'Point', 'coordinates': (-79.39924205, 43.63909783)}"
-14743,24217,GO-20179013004,THEFT UNDER - BICYCLE,2017-08-19T00:00:00,2017,August,Saturday,19,231,10,2017-08-22T00:00:00,2017,August,Tuesday,22,234,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,BOULDER 2009,MT,3,WHI,500.0,STOLEN,14672,"{'type': 'Point', 'coordinates': (-79.39795271, 43.63704773)}"
-14744,24218,GO-20171540148,THEFT UNDER - BICYCLE,2017-08-25T00:00:00,2017,August,Friday,25,237,15,2017-08-25T00:00:00,2017,August,Friday,25,237,17,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,RG,18,,,STOLEN,14673,"{'type': 'Point', 'coordinates': (-79.395007, 43.64546954)}"
-14745,24220,GO-20171565263,THEFT UNDER - BICYCLE,2017-08-25T00:00:00,2017,August,Friday,25,237,13,2017-08-29T00:00:00,2017,August,Tuesday,29,241,17,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EVO,VANTAGE 7.0,RC,14,BLK,740.0,STOLEN,14674,"{'type': 'Point', 'coordinates': (-79.39532578, 43.64621392)}"
-14746,24246,GO-20179017360,THEFT UNDER,2017-10-16T00:00:00,2017,October,Monday,16,289,12,2017-10-16T00:00:00,2017,October,Monday,16,289,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,HARDROCK,MT,21,BLK,500.0,STOLEN,14675,"{'type': 'Point', 'coordinates': (-79.40094162000001, 43.64469631)}"
-14747,24248,GO-20179017675,THEFT UNDER - BICYCLE,2017-10-19T00:00:00,2017,October,Thursday,19,292,20,2017-10-20T00:00:00,2017,October,Friday,20,293,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,PLUG 2,RC,16,BLU,900.0,STOLEN,14676,"{'type': 'Point', 'coordinates': (-79.40306565, 43.64488902)}"
-14748,24249,GO-20171906644,B&E,2017-09-30T00:00:00,2017,September,Saturday,30,273,19,2017-10-21T00:00:00,2017,October,Saturday,21,294,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,ALLEZ SPORT,RC,12,BLU,1500.0,STOLEN,14677,"{'type': 'Point', 'coordinates': (-79.39974525, 43.64372459)}"
-14749,24253,GO-20171937821,THEFT UNDER - BICYCLE,2017-10-25T00:00:00,2017,October,Wednesday,25,298,17,2017-10-26T00:00:00,2017,October,Thursday,26,299,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,PATHFINDER,,MT,12,PLEBLU,200.0,STOLEN,14678,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-14750,24257,GO-20179018696,THEFT UNDER - BICYCLE,2017-11-01T00:00:00,2017,November,Wednesday,1,305,10,2017-11-01T00:00:00,2017,November,Wednesday,1,305,20,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,CROSSRIP,TO,9,SIL,1500.0,STOLEN,14679,"{'type': 'Point', 'coordinates': (-79.395007, 43.64546954)}"
-14751,24258,GO-20179018823,THEFT UNDER - BICYCLE,2017-10-20T00:00:00,2017,October,Friday,20,293,17,2017-11-03T00:00:00,2017,November,Friday,3,307,21,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,,NAKAMURA ROYAL,RG,21,DGR,150.0,STOLEN,14680,"{'type': 'Point', 'coordinates': (-79.39532578, 43.64621392)}"
-14752,24270,GO-20179022445,THEFT UNDER - BICYCLE,2017-12-16T00:00:00,2017,December,Saturday,16,350,22,2017-12-17T00:00:00,2017,December,Sunday,17,351,23,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NO,MONTEREY,RG,21,RED,250.0,STOLEN,14681,"{'type': 'Point', 'coordinates': (-79.39880646, 43.64142779)}"
-14753,24284,GO-20189008259,THEFT UNDER - BICYCLE,2018-01-01T00:00:00,2018,January,Monday,1,1,18,2018-03-16T00:00:00,2018,March,Friday,16,75,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,LANGSTER,RC,1,BLU,1050.0,STOLEN,14682,"{'type': 'Point', 'coordinates': (-79.39882641, 43.63812175)}"
-14754,24291,GO-20189010054,THEFT UNDER - BICYCLE,2018-03-30T00:00:00,2018,March,Friday,30,89,18,2018-03-30T00:00:00,2018,March,Friday,30,89,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,RM,ELEMENT SPORT,MT,18,WHI,2000.0,STOLEN,14683,"{'type': 'Point', 'coordinates': (-79.39924205, 43.63909783)}"
-14755,24299,GO-20189013527,THEFT UNDER - BICYCLE,2018-05-01T00:00:00,2018,May,Tuesday,1,121,22,2018-05-02T00:00:00,2018,May,Wednesday,2,122,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,MARLIN 5,MT,21,RED,670.0,STOLEN,14684,"{'type': 'Point', 'coordinates': (-79.40306565, 43.64488902)}"
-14756,24301,GO-20189013954,THEFT UNDER,2018-05-04T00:00:00,2018,May,Friday,4,124,19,2018-05-06T00:00:00,2018,May,Sunday,6,126,12,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,,RC,18,DBL,1800.0,STOLEN,14685,"{'type': 'Point', 'coordinates': (-79.39558819, 43.63994429)}"
-14757,24302,GO-20189014135,THEFT UNDER - BICYCLE,2018-05-03T00:00:00,2018,May,Thursday,3,123,20,2018-05-07T00:00:00,2018,May,Monday,7,127,22,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GT,KARAKORAM SPORT,MT,8,BLK,500.0,STOLEN,14686,"{'type': 'Point', 'coordinates': (-79.39895584, 43.646052)}"
-14758,24305,GO-20189014657,THEFT UNDER - BICYCLE,2018-04-12T00:00:00,2018,April,Thursday,12,102,14,2018-05-12T00:00:00,2018,May,Saturday,12,132,14,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,TREK 15 7.3 FX,RG,9,BLK,867.0,STOLEN,14687,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-14759,24313,GO-20189019154,THEFT UNDER - BICYCLE,2018-06-15T00:00:00,2018,June,Friday,15,166,16,2018-06-18T00:00:00,2018,June,Monday,18,169,14,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RG,1,RED,125.0,STOLEN,14688,"{'type': 'Point', 'coordinates': (-79.39958821, 43.64593284)}"
-14760,24336,GO-20189022065,THEFT UNDER - BICYCLE,2018-07-11T00:00:00,2018,July,Wednesday,11,192,2,2018-07-11T00:00:00,2018,July,Wednesday,11,192,16,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,M1,RG,10,SIL,1000.0,STOLEN,14689,"{'type': 'Point', 'coordinates': (-79.39924205, 43.63909783)}"
-14761,24345,GO-20189023143,THEFT UNDER - BICYCLE,2018-07-19T00:00:00,2018,July,Thursday,19,200,22,2018-07-20T00:00:00,2018,July,Friday,20,201,6,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DB,,MT,20,DBL,1000.0,STOLEN,14690,"{'type': 'Point', 'coordinates': (-79.39737512, 43.64853707)}"
-14762,24357,GO-20181413269,B&E,2018-08-01T00:00:00,2018,August,Wednesday,1,213,1,2018-08-02T00:00:00,2018,August,Thursday,2,214,9,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,RALEIGH,RUSH HOUR,TO,1,GRY,1200.0,STOLEN,14691,"{'type': 'Point', 'coordinates': (-79.4010881, 43.64697154)}"
-14763,24376,GO-20189027646,THEFT UNDER - BICYCLE,2018-08-17T00:00:00,2018,August,Friday,17,229,16,2018-08-23T00:00:00,2018,August,Thursday,23,235,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,18 VERZA SPEED,RG,50,BLK,600.0,STOLEN,14692,"{'type': 'Point', 'coordinates': (-79.39924205, 43.63909783)}"
-14764,24386,GO-20189030388,THEFT UNDER - BICYCLE,2018-08-28T00:00:00,2018,August,Tuesday,28,240,10,2018-09-14T00:00:00,2018,September,Friday,14,257,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KH,,RG,1,SIL,500.0,STOLEN,14694,"{'type': 'Point', 'coordinates': (-79.39820731, 43.64329925)}"
-14765,24389,GO-20189032565,THEFT UNDER - BICYCLE,2018-09-29T00:00:00,2018,September,Saturday,29,272,9,2018-10-01T00:00:00,2018,October,Monday,1,274,17,D14,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,RG,10,SIL,750.0,STOLEN,14695,"{'type': 'Point', 'coordinates': (-79.3922993, 43.63874701)}"
-14766,24583,GO-20179010125,THEFT UNDER - BICYCLE,2017-07-12T00:00:00,2017,July,Wednesday,12,193,17,2017-07-13T00:00:00,2017,July,Thursday,13,194,16,D14,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,VIA,RG,3,BLK,600.0,STOLEN,14696,"{'type': 'Point', 'coordinates': (-79.39811145, 43.64623146000001)}"
-14767,24593,GO-20141863966,THEFT UNDER,2014-04-09T00:00:00,2014,April,Wednesday,9,99,21,2014-04-10T00:00:00,2014,April,Thursday,10,100,13,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NORCO,MALAHAT,OT,24,BLK,600.0,STOLEN,14697,"{'type': 'Point', 'coordinates': (-79.39558819, 43.63994429)}"
-14768,24601,GO-20142169040,THEFT UNDER,2014-05-28T00:00:00,2014,May,Wednesday,28,148,9,2014-05-28T00:00:00,2014,May,Wednesday,28,148,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,,TO,6,TRQ,500.0,STOLEN,14698,"{'type': 'Point', 'coordinates': (-79.40137395, 43.64770851)}"
-14769,24602,GO-20149003818,THEFT UNDER,2014-05-09T00:00:00,2014,May,Friday,9,129,12,2014-06-04T00:00:00,2014,June,Wednesday,4,155,22,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NO,,RG,21,RED,,STOLEN,14699,"{'type': 'Point', 'coordinates': (-79.40372116, 43.64647061)}"
-14770,24619,GO-20149004784,THEFT UNDER,2014-07-09T00:00:00,2014,July,Wednesday,9,190,0,2014-07-09T00:00:00,2014,July,Wednesday,9,190,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,RG,24,BLK,,STOLEN,14700,"{'type': 'Point', 'coordinates': (-79.39439108, 43.6402044)}"
-14771,24623,GO-20149004900,THEFT UNDER,2014-07-10T00:00:00,2014,July,Thursday,10,191,20,2014-07-10T00:00:00,2014,July,Thursday,10,191,23,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GF,COBIA,MT,27,SIL,1200.0,STOLEN,14701,"{'type': 'Point', 'coordinates': (-79.40078712, 43.64430357)}"
-14772,24649,GO-20142840488,B&E,2014-09-04T00:00:00,2014,September,Thursday,4,247,4,2014-09-04T00:00:00,2014,September,Thursday,4,247,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,MT,12,,,STOLEN,14702,"{'type': 'Point', 'coordinates': (-79.39880646, 43.64142779)}"
-14773,24650,GO-20142840488,B&E,2014-09-04T00:00:00,2014,September,Thursday,4,247,4,2014-09-04T00:00:00,2014,September,Thursday,4,247,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SCOTT,SPORTSTER,OT,12,,,UNKNOWN,14703,"{'type': 'Point', 'coordinates': (-79.39880646, 43.64142779)}"
-14774,24653,GO-20149006744,THEFT UNDER,2014-09-09T00:00:00,2014,September,Tuesday,9,252,12,2014-09-10T00:00:00,2014,September,Wednesday,10,253,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,TREK FX,MT,27,BLK,800.0,STOLEN,14704,"{'type': 'Point', 'coordinates': (-79.40005716, 43.64445256)}"
-14775,24689,GO-2015649533,THEFT UNDER,2015-04-19T00:00:00,2015,April,Sunday,19,109,2,2015-04-19T00:00:00,2015,April,Sunday,19,109,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CERVELO,BUAL,RC,21,YEL,1200.0,STOLEN,14705,"{'type': 'Point', 'coordinates': (-79.39920115, 43.64245772)}"
-14776,24690,GO-2015649533,THEFT UNDER,2015-04-19T00:00:00,2015,April,Sunday,19,109,2,2015-04-19T00:00:00,2015,April,Sunday,19,109,19,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CANNONDALE,BAD BOY 5,OT,21,BLK,1400.0,STOLEN,14706,"{'type': 'Point', 'coordinates': (-79.39920115, 43.64245772)}"
-14777,24695,GO-20159002412,THEFT UNDER,2015-05-03T00:00:00,2015,May,Sunday,3,123,14,2015-05-03T00:00:00,2015,May,Sunday,3,123,14,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,,RG,10,GRY,550.0,STOLEN,14707,"{'type': 'Point', 'coordinates': (-79.39330422, 43.64134268000001)}"
-14778,24721,GO-20159004281,THEFT UNDER,2015-07-07T00:00:00,2015,July,Tuesday,7,188,7,2015-07-07T00:00:00,2015,July,Tuesday,7,188,17,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,15 ESCAPE,RG,21,GRY,553.0,STOLEN,14708,"{'type': 'Point', 'coordinates': (-79.40005716, 43.64445256)}"
-14779,24722,GO-20151158422,THEFT UNDER,2015-07-08T00:00:00,2015,July,Wednesday,8,189,19,2015-07-09T00:00:00,2015,July,Thursday,9,190,9,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DIAMONDBACK,SORRENTO,MT,0,RED,350.0,STOLEN,14709,"{'type': 'Point', 'coordinates': (-79.39924205, 43.63909783)}"
-14780,24725,GO-20159004615,THEFT UNDER,2015-07-15T00:00:00,2015,July,Wednesday,15,196,18,2015-07-16T00:00:00,2015,July,Thursday,16,197,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,SINGLE SPEED,RG,1,BLK,500.0,STOLEN,14710,"{'type': 'Point', 'coordinates': (-79.39558819, 43.63994429)}"
-14781,24740,GO-20151455673,THEFT UNDER,2015-08-21T00:00:00,2015,August,Friday,21,233,10,2015-08-24T00:00:00,2015,August,Monday,24,236,8,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,RG,1,BLK,,STOLEN,14711,"{'type': 'Point', 'coordinates': (-79.39960983, 43.63648329)}"
-14782,24741,GO-20159006149,THEFT UNDER,2015-08-21T00:00:00,2015,August,Friday,21,233,10,2015-08-22T00:00:00,2015,August,Saturday,22,234,11,D14,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,7.3,OT,21,BLK,770.0,STOLEN,14712,"{'type': 'Point', 'coordinates': (-79.40372116, 43.64647061)}"
-14783,24746,GO-20151505454,THEFT UNDER,2015-08-27T00:00:00,2015,August,Thursday,27,239,14,2015-09-01T00:00:00,2015,September,Tuesday,1,244,8,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT ESCAPE,2015 GIANT ESC,RG,24,BLU,700.0,STOLEN,14713,"{'type': 'Point', 'coordinates': (-79.40059685, 43.64573236)}"
-14784,24747,GO-20159006566,THEFT UNDER,2015-08-28T00:00:00,2015,August,Friday,28,240,11,2015-08-31T00:00:00,2015,August,Monday,31,243,15,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SC,,MT,21,BLU,,STOLEN,14714,"{'type': 'Point', 'coordinates': (-79.39811145, 43.64623146000001)}"
-14785,24750,GO-20159006837,THEFT UNDER,2015-09-06T00:00:00,2015,September,Sunday,6,249,14,2015-09-07T00:00:00,2015,September,Monday,7,250,10,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,MT,21,BLK,750.0,STOLEN,14715,"{'type': 'Point', 'coordinates': (-79.40005716, 43.64445256)}"
-14786,24751,GO-20159006861,THEFT UNDER,2015-09-07T00:00:00,2015,September,Monday,7,250,10,2015-09-07T00:00:00,2015,September,Monday,7,250,21,D14,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GIANT,,MT,12,REDBLK,700.0,STOLEN,14716,"{'type': 'Point', 'coordinates': (-79.3979648, 43.63940267)}"
-14787,24765,GO-20151790719,THEFT UNDER,2015-10-14T00:00:00,2015,October,Wednesday,14,287,0,2015-10-17T00:00:00,2015,October,Saturday,17,290,18,D14,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,TEQUESTA,RG,20,RED,,STOLEN,14717,"{'type': 'Point', 'coordinates': (-79.4023568, 43.64319258)}"
-14788,3542,GO-20189031660,THEFT UNDER,2018-09-22T00:00:00,2018,September,Saturday,22,265,16,2018-09-23T00:00:00,2018,September,Sunday,23,266,21,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,DIVERGE ELITE,RC,1,BLK,3000.0,STOLEN,14718,"{'type': 'Point', 'coordinates': (-79.39737512, 43.64853707)}"
-14789,6988,GO-20209020540,THEFT UNDER,2020-08-18T00:00:00,2020,August,Tuesday,18,231,2,2020-08-18T00:00:00,2020,August,Tuesday,18,231,14,D14,Toronto,78,Kensington-Chinatown (78),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MO,,MT,21,BLK,300.0,STOLEN,14719,"{'type': 'Point', 'coordinates': (-79.40595313, 43.65543579)}"
-14790,19571,GO-20189039278,THEFT UNDER - BICYCLE,2018-11-21T00:00:00,2018,November,Wednesday,21,325,8,2018-11-22T00:00:00,2018,November,Thursday,22,326,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,FJ,FEATHER CX+,RG,18,BLK,1150.0,STOLEN,14720,"{'type': 'Point', 'coordinates': (-79.38888568, 43.64881159)}"
-14791,3563,GO-20189032019,THEFT UNDER - BICYCLE,2018-09-20T00:00:00,2018,September,Thursday,20,263,19,2018-09-26T00:00:00,2018,September,Wednesday,26,269,17,D52,Toronto,78,Kensington-Chinatown (78),"Religious Facilities (Synagogue, Church, Convent, Mosque)",Other,GI,,RG,27,BLK,500.0,STOLEN,14721,"{'type': 'Point', 'coordinates': (-79.39299164, 43.65179129)}"
-14792,19573,GO-201936627,B&E,2019-01-06T00:00:00,2019,January,Sunday,6,6,0,2019-01-07T00:00:00,2019,January,Monday,7,7,7,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,DIVERGEV,SPECIALIZED,OT,14,BLK,1700.0,STOLEN,14722,"{'type': 'Point', 'coordinates': (-79.39388892, 43.64273773)}"
-14793,3644,GO-20189033340,POSSESSION PROPERTY OBC UNDER,2018-10-04T00:00:00,2018,October,Thursday,4,277,13,2018-10-09T00:00:00,2018,October,Tuesday,9,282,13,D52,Toronto,78,Kensington-Chinatown (78),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,TR,,MT,27,BLU,1000.0,RECOVERED,14723,"{'type': 'Point', 'coordinates': (-79.39339759, 43.65276389)}"
-14794,19574,GO-20199000928,THEFT UNDER - BICYCLE,2019-01-08T00:00:00,2019,January,Tuesday,8,8,10,2019-01-08T00:00:00,2019,January,Tuesday,8,8,17,D52,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,OT,SPEEDSTER 30 DI,RC,20,BLK,1180.0,STOLEN,14724,"{'type': 'Point', 'coordinates': (-79.37778379, 43.6430065)}"
-14795,19576,GO-2019328309,B&E,2019-02-21T00:00:00,2019,February,Thursday,21,52,0,2019-02-21T00:00:00,2019,February,Thursday,21,52,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,JAMIS,JAMIS 216 VENTU,RC,20,GRYBLK,1600.0,STOLEN,14725,"{'type': 'Point', 'coordinates': (-79.38888568, 43.64881159)}"
-14796,3645,GO-20189033340,POSSESSION PROPERTY OBC UNDER,2018-10-04T00:00:00,2018,October,Thursday,4,277,13,2018-10-09T00:00:00,2018,October,Tuesday,9,282,13,D52,Toronto,78,Kensington-Chinatown (78),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,CA,TRAIL SL4,MT,27,GRY,800.0,STOLEN,14726,"{'type': 'Point', 'coordinates': (-79.39339759, 43.65276389)}"
-14797,19578,GO-20199013255,THEFT UNDER,2019-04-27T00:00:00,2019,April,Saturday,27,117,8,2019-04-27T00:00:00,2019,April,Saturday,27,117,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,"29"""" GHOST",MT,20,GRN,1321.0,STOLEN,14727,"{'type': 'Point', 'coordinates': (-79.39124176, 43.640111790000006)}"
-14798,3650,GO-20189033448,THEFT UNDER,2018-10-10T00:00:00,2018,October,Wednesday,10,283,0,2018-10-10T00:00:00,2018,October,Wednesday,10,283,9,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,2015 SEARCH S2,TO,22,GRY,1500.0,STOLEN,14728,"{'type': 'Point', 'coordinates': (-79.38984563, 43.65622357)}"
-14799,19584,GO-20199018075,THEFT UNDER,2019-06-03T00:00:00,2019,June,Monday,3,154,0,2019-06-10T00:00:00,2019,June,Monday,10,161,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,15,BLU,450.0,STOLEN,14729,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-14800,6992,GO-20209020552,THEFT UNDER,2020-08-18T00:00:00,2020,August,Tuesday,18,231,18,2020-08-18T00:00:00,2020,August,Tuesday,18,231,21,D14,Toronto,78,Kensington-Chinatown (78),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,HARDROCK,MT,14,RED,300.0,STOLEN,14730,"{'type': 'Point', 'coordinates': (-79.40232443, 43.64841054)}"
-14801,3742,GO-20181955448,THEFT UNDER - BICYCLE,2018-10-19T00:00:00,2018,October,Friday,19,292,18,2018-10-23T00:00:00,2018,October,Tuesday,23,296,11,D52,Toronto,78,Kensington-Chinatown (78),Universities / Colleges,Educational,TREK,1980,MT,18,WHI,2000.0,STOLEN,14731,"{'type': 'Point', 'coordinates': (-79.3934451, 43.65919971)}"
-14802,19593,GO-20209024967,THEFT UNDER - BICYCLE,2020-09-23T00:00:00,2020,September,Wednesday,23,267,1,2020-09-29T00:00:00,2020,September,Tuesday,29,273,17,D51,Toronto,77,Waterfront Communities-The Island (77),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,EXCURSION 700,MT,21,GRN,500.0,STOLEN,14732,"{'type': 'Point', 'coordinates': (-79.36278316, 43.64850402)}"
-14803,3746,GO-20181963531,THEFT UNDER - BICYCLE,2018-10-24T00:00:00,2018,October,Wednesday,24,297,8,2018-10-24T00:00:00,2018,October,Wednesday,24,297,14,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,ESCAPE,OT,21,BRN,800.0,STOLEN,14733,"{'type': 'Point', 'coordinates': (-79.38994423, 43.6587011)}"
-14804,19597,GO-20209026210,THEFT UNDER - BICYCLE,2020-10-09T00:00:00,2020,October,Friday,9,283,17,2020-10-12T00:00:00,2020,October,Monday,12,286,18,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,BM,7,BLU,350.0,STOLEN,14734,"{'type': 'Point', 'coordinates': (-79.35606395, 43.65373791)}"
-14805,6999,GO-20209020654,THEFT UNDER,2020-08-18T00:00:00,2020,August,Tuesday,18,231,17,2020-08-19T00:00:00,2020,August,Wednesday,19,232,12,D14,Toronto,78,Kensington-Chinatown (78),"Dealership (Car, Motorcycle, Marine, Trailer, Etc.)",Commercial,GF,NOT SURE,MT,24,GRY,1200.0,STOLEN,14735,"{'type': 'Point', 'coordinates': (-79.39863995, 43.65205921)}"
-14806,3756,GO-20181971191,THEFT UNDER - BICYCLE,2018-10-25T00:00:00,2018,October,Thursday,25,298,16,2018-10-25T00:00:00,2018,October,Thursday,25,298,16,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,FX2,TO,24,BLK,630.0,STOLEN,14736,"{'type': 'Point', 'coordinates': (-79.38984563, 43.65622357)}"
-14807,19783,GO-20142586662,THEFT UNDER,2014-06-19T00:00:00,2014,June,Thursday,19,170,20,2014-07-28T00:00:00,2014,July,Monday,28,209,7,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,A-Z SOURCES,FREEDOM,SC,1,BLU,1500.0,STOLEN,14737,"{'type': 'Point', 'coordinates': (-79.39124176, 43.640111790000006)}"
-14808,7025,GO-20209020892,THEFT UNDER,2020-07-19T00:00:00,2020,July,Sunday,19,201,23,2020-08-21T00:00:00,2020,August,Friday,21,234,14,D14,Toronto,78,Kensington-Chinatown (78),Bar / Restaurant,Commercial,UK,,MT,30,BLK,500.0,STOLEN,14738,"{'type': 'Point', 'coordinates': (-79.4015293, 43.65334617)}"
-14809,7129,GO-20209021806,THEFT UNDER,2020-08-30T00:00:00,2020,August,Sunday,30,243,14,2020-08-30T00:00:00,2020,August,Sunday,30,243,22,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,1,ONG,300.0,STOLEN,14739,"{'type': 'Point', 'coordinates': (-79.4046631, 43.64896803)}"
-14810,7194,GO-20209022504,THEFT UNDER,2020-09-06T00:00:00,2020,September,Sunday,6,250,17,2020-09-06T00:00:00,2020,September,Sunday,6,250,22,D52,Toronto,78,Kensington-Chinatown (78),Bar / Restaurant,Commercial,FJ,TRACK CLASSIC 2,RC,1,BLK,600.0,STOLEN,14740,"{'type': 'Point', 'coordinates': (-79.39955207, 43.65674851)}"
-14811,7214,GO-20209022729,THEFT UNDER,2020-09-09T00:00:00,2020,September,Wednesday,9,253,1,2020-09-09T00:00:00,2020,September,Wednesday,9,253,23,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,DEL SOL PROJEKT,RG,8,,530.0,STOLEN,14741,"{'type': 'Point', 'coordinates': (-79.40397597, 43.65583003)}"
-14812,7241,GO-20201742411,THEFT UNDER - BICYCLE,2020-09-14T00:00:00,2020,September,Monday,14,258,12,2020-09-14T00:00:00,2020,September,Monday,14,258,16,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,SC,1,SIL,1700.0,STOLEN,14742,"{'type': 'Point', 'coordinates': (-79.39095898, 43.65603534)}"
-14813,7258,GO-20201755208,THEFT UNDER - BICYCLE,2020-09-04T00:00:00,2020,September,Friday,4,248,16,2020-09-16T00:00:00,2020,September,Wednesday,16,260,11,D52,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DEVINCI,JACK,MT,21,BLKRED,800.0,STOLEN,14743,"{'type': 'Point', 'coordinates': (-79.39227275, 43.65005482)}"
-14814,7274,GO-20201764599,PROPERTY - FOUND,2020-09-17T00:00:00,2020,September,Thursday,17,261,23,2020-09-17T00:00:00,2020,September,Thursday,17,261,23,D52,Toronto,78,Kensington-Chinatown (78),Convenience Stores,Commercial,OTHER,,OT,6,BLKGRY,,UNKNOWN,14744,"{'type': 'Point', 'coordinates': (-79.39042227000002, 43.65615784)}"
-14815,7296,GO-20209023829,THEFT UNDER,2020-09-18T00:00:00,2020,September,Friday,18,262,23,2020-09-19T00:00:00,2020,September,Saturday,19,263,13,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,CC,SAVAGE,MT,21,GRY,360.0,STOLEN,14745,"{'type': 'Point', 'coordinates': (-79.39024772, 43.65149749)}"
-14816,7308,GO-20201789993,THEFT UNDER,2020-09-21T00:00:00,2020,September,Monday,21,265,6,2020-09-21T00:00:00,2020,September,Monday,21,265,15,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,MONSTER,EL,1,BLK,2000.0,STOLEN,14746,"{'type': 'Point', 'coordinates': (-79.40270032, 43.64940096)}"
-14817,7326,GO-20209024143,THEFT UNDER,2020-09-22T00:00:00,2020,September,Tuesday,22,266,21,2020-09-23T00:00:00,2020,September,Wednesday,23,267,2,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,INNOVA,RG,18,BLK,500.0,STOLEN,14747,"{'type': 'Point', 'coordinates': (-79.39652559, 43.65207852)}"
-14818,7339,GO-20209024312,THEFT UNDER,2020-09-17T00:00:00,2020,September,Thursday,17,261,22,2020-09-24T00:00:00,2020,September,Thursday,24,268,10,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,KH,FLITE TEAM 3000,OT,10,GRY,1000.0,STOLEN,14748,"{'type': 'Point', 'coordinates': (-79.39109731, 43.64989719)}"
-14819,7360,GO-20209024564,THEFT UNDER,2020-09-21T00:00:00,2020,September,Monday,21,265,0,2020-09-25T00:00:00,2020,September,Friday,25,269,20,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,GI,PEGASUS,TO,21,GRY,1126.0,STOLEN,14749,"{'type': 'Point', 'coordinates': (-79.3952972, 43.65130143)}"
-14820,7371,GO-20209024745,THEFT UNDER,2020-09-26T00:00:00,2020,September,Saturday,26,270,23,2020-09-28T00:00:00,2020,September,Monday,28,272,9,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,OT,VITA,RG,8,BLK,500.0,STOLEN,14750,"{'type': 'Point', 'coordinates': (-79.38934401, 43.652151370000006)}"
-14821,7417,GO-20209025496,THEFT UNDER,2020-10-04T00:00:00,2020,October,Sunday,4,278,21,2020-10-05T00:00:00,2020,October,Monday,5,279,17,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,GI,IGUANA,MT,21,BLK,200.0,STOLEN,14751,"{'type': 'Point', 'coordinates': (-79.40396219, 43.65177254)}"
-14822,7422,GO-20209025565,THEFT UNDER,2020-10-04T00:00:00,2020,October,Sunday,4,278,18,2020-10-06T00:00:00,2020,October,Tuesday,6,280,10,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,TR,FX2 DISC,RG,21,BLK,750.0,STOLEN,14752,"{'type': 'Point', 'coordinates': (-79.39830363, 43.65630596)}"
-14823,7456,GO-20209026280,THEFT UNDER,2020-10-12T00:00:00,2020,October,Monday,12,286,23,2020-10-13T00:00:00,2020,October,Tuesday,13,287,14,D52,Toronto,78,Kensington-Chinatown (78),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UK,,MT,12,GRN,0.0,STOLEN,14753,"{'type': 'Point', 'coordinates': (-79.39339759, 43.65276389)}"
-14824,7533,GO-20209027491,THEFT UNDER,2020-10-23T00:00:00,2020,October,Friday,23,297,19,2020-10-23T00:00:00,2020,October,Friday,23,297,21,D52,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,TRICROSS SPORT,OT,9,BRN,1000.0,STOLEN,14754,"{'type': 'Point', 'coordinates': (-79.39512704, 43.65697223000001)}"
-14825,7546,GO-20209027708,THEFT UNDER,2020-10-26T00:00:00,2020,October,Monday,26,300,10,2020-10-26T00:00:00,2020,October,Monday,26,300,10,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,,,RG,2,BLU,300.0,STOLEN,14755,"{'type': 'Point', 'coordinates': (-79.4046631, 43.64896803)}"
-14826,7561,GO-20209027884,THEFT UNDER,2020-10-27T00:00:00,2020,October,Tuesday,27,301,10,2020-10-28T00:00:00,2020,October,Wednesday,28,302,12,D52,Toronto,78,Kensington-Chinatown (78),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,,MT,18,SIL,1850.0,STOLEN,14756,"{'type': 'Point', 'coordinates': (-79.39136265, 43.65838682)}"
-14827,7562,GO-20209027917,THEFT UNDER,2020-10-07T00:00:00,2020,October,Wednesday,7,281,17,2020-10-27T00:00:00,2020,October,Tuesday,27,301,22,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,,ROYAL,RG,18,BLU,203.0,STOLEN,14757,"{'type': 'Point', 'coordinates': (-79.38860347, 43.65042088)}"
-14828,7688,GO-20209031209,THEFT UNDER,2020-11-30T00:00:00,2020,November,Monday,30,335,3,2020-12-04T00:00:00,2020,December,Friday,4,339,12,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,SU,NITRO,MT,21,TRQ,100.0,STOLEN,14758,"{'type': 'Point', 'coordinates': (-79.39225095, 43.656266970000004)}"
-14829,7748,GO-20141383464,MISCHIEF UNDER,2014-01-17T00:00:00,2014,January,Friday,17,17,20,2014-01-21T00:00:00,2014,January,Tuesday,21,21,10,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,RG,5,BRNWHI,100.0,STOLEN,14759,"{'type': 'Point', 'coordinates': (-79.39203753, 43.65580953)}"
-14830,7777,GO-20141675909,THEFT UNDER,2013-02-09T00:00:00,2013,February,Saturday,9,40,20,2014-03-10T00:00:00,2014,March,Monday,10,69,15,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,FOCUS,IZALCO,OT,20,BLKRED,2200.0,STOLEN,14760,"{'type': 'Point', 'coordinates': (-79.40229657, 43.65523449)}"
-14831,7778,GO-20179003602,THEFT UNDER - BICYCLE,2017-03-21T00:00:00,2017,March,Tuesday,21,80,18,2017-03-22T00:00:00,2017,March,Wednesday,22,81,13,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,KO,PADDYWAGON,OT,1,GRY,150.0,STOLEN,14761,"{'type': 'Point', 'coordinates': (-79.39462359, 43.65576755)}"
-14832,7835,GO-20141889615,THEFT UNDER,2014-04-12T00:00:00,2014,April,Saturday,12,102,14,2014-04-14T00:00:00,2014,April,Monday,14,104,13,D52,Toronto,78,Kensington-Chinatown (78),Universities / Colleges,Educational,SPECIALIZED,ROAD,OT,18,BLKRED,719.0,STOLEN,14762,"{'type': 'Point', 'coordinates': (-79.3934451, 43.65919971)}"
-14833,7841,GO-20141904302,THEFT UNDER,2014-04-16T00:00:00,2014,April,Wednesday,16,106,11,2014-04-16T00:00:00,2014,April,Wednesday,16,106,18,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,RG,4,PLE,40.0,STOLEN,14763,"{'type': 'Point', 'coordinates': (-79.39997085, 43.648892530000005)}"
-14834,7846,GO-20141988153,FTC PROBATION ORDER,2014-04-30T00:00:00,2014,April,Wednesday,30,120,14,2014-04-30T00:00:00,2014,April,Wednesday,30,120,14,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,"57"""" BLACK CHROM",RC,1,BLK,700.0,RECOVERED,14764,"{'type': 'Point', 'coordinates': (-79.40173755, 43.65388171)}"
-14835,7958,GO-20149003530,THEFT UNDER,2014-05-22T00:00:00,2014,May,Thursday,22,142,9,2014-05-23T00:00:00,2014,May,Friday,23,143,9,D14,Toronto,78,Kensington-Chinatown (78),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,1200,RC,21,WHI,1400.0,STOLEN,14765,"{'type': 'Point', 'coordinates': (-79.4046631, 43.64896803)}"
-14836,7964,GO-20149003542,THEFT UNDER,2014-05-22T00:00:00,2014,May,Thursday,22,142,11,2014-05-23T00:00:00,2014,May,Friday,23,143,13,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,CROSSTOWN,OT,7,DGR,600.0,STOLEN,14766,"{'type': 'Point', 'coordinates': (-79.38822804, 43.65240803)}"
-14837,7967,GO-20149003543,THEFT UNDER,2014-05-18T00:00:00,2014,May,Sunday,18,138,6,2014-05-23T00:00:00,2014,May,Friday,23,143,13,D52,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,MA,LARKSPUR CS2,OT,21,BLK,750.0,STOLEN,14767,"{'type': 'Point', 'coordinates': (-79.38994423, 43.6587011)}"
-14838,8032,GO-20142206134,THEFT UNDER,2014-06-02T00:00:00,2014,June,Monday,2,153,9,2014-06-02T00:00:00,2014,June,Monday,2,153,17,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,JAMIS,,MT,21,,700.0,STOLEN,14768,"{'type': 'Point', 'coordinates': (-79.38994423, 43.6587011)}"
-14839,8161,GO-20142301384,B&E,2014-06-13T00:00:00,2014,June,Friday,13,164,9,2014-06-16T00:00:00,2014,June,Monday,16,167,11,D52,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BIANCHI,SPORT SX,RC,12,LBL,250.0,STOLEN,14769,"{'type': 'Point', 'coordinates': (-79.39395903, 43.65721288)}"
-14840,8165,GO-20149004154,THEFT UNDER,2014-06-14T00:00:00,2014,June,Saturday,14,165,2,2014-06-17T00:00:00,2014,June,Tuesday,17,168,15,D52,Toronto,78,Kensington-Chinatown (78),Convenience Stores,Commercial,RA,,OT,1,GLD,0.0,STOLEN,14770,"{'type': 'Point', 'coordinates': (-79.3934735, 43.65601123)}"
-14841,8184,GO-20149004215,THEFT UNDER,2014-06-17T00:00:00,2014,June,Tuesday,17,168,23,2014-06-18T00:00:00,2014,June,Wednesday,18,169,18,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,GI,CYPRESS,OT,7,BLU,550.0,STOLEN,14771,"{'type': 'Point', 'coordinates': (-79.39339759, 43.65276389)}"
-14842,8213,GO-20149004330,THEFT UNDER,2014-06-22T00:00:00,2014,June,Sunday,22,173,2,2014-06-22T00:00:00,2014,June,Sunday,22,173,17,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,VFR 4,RG,24,BLK,500.0,STOLEN,14772,"{'type': 'Point', 'coordinates': (-79.39339759, 43.65276389)}"
-14843,8259,GO-20142366723,THEFT UNDER,2014-06-25T00:00:00,2014,June,Wednesday,25,176,16,2014-06-25T00:00:00,2014,June,Wednesday,25,176,18,D14,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,MT,10,PLE,50.0,STOLEN,14773,"{'type': 'Point', 'coordinates': (-79.39987628, 43.65143665)}"
-14844,8353,GO-20149004735,THEFT UNDER,2014-06-24T00:00:00,2014,June,Tuesday,24,175,21,2014-07-07T00:00:00,2014,July,Monday,7,188,14,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,9,,,STOLEN,14774,"{'type': 'Point', 'coordinates': (-79.39211621, 43.64968054)}"
-14845,8356,GO-20149004746,THEFT UNDER,2014-07-04T00:00:00,2014,July,Friday,4,185,12,2014-07-06T00:00:00,2014,July,Sunday,6,187,12,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,KO,,MT,12,BLU,,STOLEN,14775,"{'type': 'Point', 'coordinates': (-79.39652609, 43.65431521)}"
-14846,8386,GO-20149004872,THEFT UNDER,2014-07-09T00:00:00,2014,July,Wednesday,9,190,18,2014-07-10T00:00:00,2014,July,Thursday,10,191,12,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,SIRRUS,OT,24,BLK,700.0,STOLEN,14776,"{'type': 'Point', 'coordinates': (-79.38943687, 43.65023156)}"
-14847,8394,GO-20149004906,THEFT UNDER,2014-07-11T00:00:00,2014,July,Friday,11,192,0,2014-07-11T00:00:00,2014,July,Friday,11,192,14,D14,Toronto,78,Kensington-Chinatown (78),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,10,BLU,600.0,STOLEN,14777,"{'type': 'Point', 'coordinates': (-79.4015293, 43.65334617)}"
-14848,8517,GO-20149005351,THEFT UNDER,2014-07-25T00:00:00,2014,July,Friday,25,206,20,2014-07-26T00:00:00,2014,July,Saturday,26,207,8,D14,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,,OT,20,GRY,1500.0,STOLEN,14778,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-14849,8544,GO-20149005443,THEFT UNDER,2014-07-29T00:00:00,2014,July,Tuesday,29,210,9,2014-07-29T00:00:00,2014,July,Tuesday,29,210,16,D52,Toronto,78,Kensington-Chinatown (78),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,ESCAPE 3,RG,21,BLK,500.0,STOLEN,14779,"{'type': 'Point', 'coordinates': (-79.38822804, 43.65240803)}"
-14850,8547,GO-20149005463,THEFT UNDER,2014-07-29T00:00:00,2014,July,Tuesday,29,210,21,2014-07-29T00:00:00,2014,July,Tuesday,29,210,22,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,TRICROSS SPORT,RC,16,SIL,1329.0,STOLEN,14780,"{'type': 'Point', 'coordinates': (-79.39860531, 43.65440288)}"
-14851,8567,GO-20142648616,THEFT UNDER,2014-08-05T00:00:00,2014,August,Tuesday,5,217,21,2014-08-06T00:00:00,2014,August,Wednesday,6,218,17,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,OT,10,BLU,1200.0,STOLEN,14781,"{'type': 'Point', 'coordinates': (-79.39024772, 43.65149749)}"
-14852,8626,GO-20142693174,THEFT UNDER,2014-08-11T00:00:00,2014,August,Monday,11,223,9,2014-08-13T00:00:00,2014,August,Wednesday,13,225,9,D52,Toronto,78,Kensington-Chinatown (78),Universities / Colleges,Educational,SUPERCYCLE,XTI,OT,18,REDSIL,65.0,STOLEN,14782,"{'type': 'Point', 'coordinates': (-79.39699693, 43.65848407)}"
-14853,8629,GO-20142678903,THEFT UNDER,2014-08-06T00:00:00,2014,August,Wednesday,6,218,9,2014-08-11T00:00:00,2014,August,Monday,11,223,8,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,RINCON DISC,MT,18,,,STOLEN,14783,"{'type': 'Point', 'coordinates': (-79.39136265, 43.65838682)}"
-14854,8633,GO-20149005775,THEFT UNDER,2014-08-11T00:00:00,2014,August,Monday,11,223,14,2014-08-13T00:00:00,2014,August,Wednesday,13,225,15,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MODENA,OT,12,BLU,0.0,STOLEN,14784,"{'type': 'Point', 'coordinates': (-79.39095898, 43.65603534)}"
-14855,8655,GO-20142692616,THEFT UNDER,2014-08-08T00:00:00,2014,August,Friday,8,220,11,2014-08-13T00:00:00,2014,August,Wednesday,13,225,7,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MONGOOSE,,RG,8,BLU,200.0,STOLEN,14786,"{'type': 'Point', 'coordinates': (-79.39634181, 43.64876464)}"
-14856,8667,GO-20149005963,THEFT UNDER,2014-08-17T00:00:00,2014,August,Sunday,17,229,2,2014-08-17T00:00:00,2014,August,Sunday,17,229,15,D14,Toronto,78,Kensington-Chinatown (78),Bar / Restaurant,Commercial,OT,,RC,1,GRN,1000.0,STOLEN,14787,"{'type': 'Point', 'coordinates': (-79.40039038, 43.65405001)}"
-14857,8736,GO-20149006299,THEFT UNDER,2014-08-26T00:00:00,2014,August,Tuesday,26,238,10,2014-08-26T00:00:00,2014,August,Tuesday,26,238,10,D14,Toronto,78,Kensington-Chinatown (78),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,VERSA PATH EARL,MT,21,GRY,600.0,STOLEN,14788,"{'type': 'Point', 'coordinates': (-79.39737512, 43.64853707)}"
-14858,8785,GO-20149006468,THEFT UNDER,2014-08-28T00:00:00,2014,August,Thursday,28,240,16,2014-09-01T00:00:00,2014,September,Monday,1,244,13,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,ALPHA 3700,MT,21,BLU,600.0,STOLEN,14789,"{'type': 'Point', 'coordinates': (-79.40066945, 43.65476855)}"
-14859,8792,GO-20149006501,THEFT UNDER,2014-08-27T00:00:00,2014,August,Wednesday,27,239,7,2014-09-02T00:00:00,2014,September,Tuesday,2,245,15,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,TR,ALLANT,RG,7,BLK,550.0,STOLEN,14790,"{'type': 'Point', 'coordinates': (-79.4046631, 43.64896803)}"
-14860,8891,GO-20149006898,THEFT UNDER,2014-09-14T00:00:00,2014,September,Sunday,14,257,18,2014-09-15T00:00:00,2014,September,Monday,15,258,9,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,SUPERCYCLE,RG,10,SIL,400.0,STOLEN,14791,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-14861,8933,GO-20149007082,THEFT UNDER,2014-09-21T00:00:00,2014,September,Sunday,21,264,13,2014-09-21T00:00:00,2014,September,Sunday,21,264,18,D52,Toronto,78,Kensington-Chinatown (78),Bar / Restaurant,Commercial,GT,AGRESSOR,MT,7,BLK,400.0,STOLEN,14792,"{'type': 'Point', 'coordinates': (-79.39879112, 43.65491345)}"
-14862,8947,GO-20149007117,THEFT UNDER,2014-08-01T00:00:00,2014,August,Friday,1,213,16,2014-09-22T00:00:00,2014,September,Monday,22,265,16,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,1,BLU,0.0,STOLEN,14793,"{'type': 'Point', 'coordinates': (-79.3952972, 43.65130143)}"
-14863,8961,GO-20142974232,THEFT UNDER,2014-09-03T00:00:00,2014,September,Wednesday,3,246,14,2014-09-24T00:00:00,2014,September,Wednesday,24,267,14,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,UNKNOWN,MT,21,BLUWHI,200.0,STOLEN,14794,"{'type': 'Point', 'coordinates': (-79.40264521, 43.65609187)}"
-14864,8973,GO-20142981944,THEFT UNDER,2014-09-25T00:00:00,2014,September,Thursday,25,268,7,2014-09-25T00:00:00,2014,September,Thursday,25,268,16,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,RACER,OT,21,PLEYEL,500.0,STOLEN,14795,"{'type': 'Point', 'coordinates': (-79.40431518000001, 43.65316198)}"
-14865,8998,GO-20149007321,THEFT UNDER,2014-09-30T00:00:00,2014,September,Tuesday,30,273,18,2014-09-30T00:00:00,2014,September,Tuesday,30,273,19,D52,Toronto,78,Kensington-Chinatown (78),Unknown,Other,UK,,RG,15,,0.0,STOLEN,14796,"{'type': 'Point', 'coordinates': (-79.39109731, 43.64989719)}"
-14866,9015,GO-20149007369,THEFT UNDER,2014-09-23T00:00:00,2014,September,Tuesday,23,266,9,2014-10-03T00:00:00,2014,October,Friday,3,276,10,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,VICE,MT,18,SIL,200.0,STOLEN,14797,"{'type': 'Point', 'coordinates': (-79.38822804, 43.65240803)}"
-14867,9017,GO-20143041911,THEFT UNDER,2014-09-28T00:00:00,2014,September,Sunday,28,271,15,2014-10-04T00:00:00,2014,October,Saturday,4,277,15,D14,Toronto,78,Kensington-Chinatown (78),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,LOUIS GARNEAU,REVOLUTION 4.5,OT,0,BLK,3400.0,STOLEN,14798,"{'type': 'Point', 'coordinates': (-79.4046631, 43.64896803)}"
-14868,9023,GO-20149007408,THEFT UNDER,2014-10-05T00:00:00,2014,October,Sunday,5,278,0,2014-10-05T00:00:00,2014,October,Sunday,5,278,15,D14,Toronto,78,Kensington-Chinatown (78),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SU,,RG,1,BLU,150.0,STOLEN,14799,"{'type': 'Point', 'coordinates': (-79.40264829, 43.65311083)}"
-14869,9053,GO-20143103061,B&E,2014-10-01T00:00:00,2014,October,Wednesday,1,274,0,2014-10-14T00:00:00,2014,October,Tuesday,14,287,17,D52,Toronto,78,Kensington-Chinatown (78),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,TEV,DOMNATOR,EL,1,BLU,1100.0,STOLEN,14800,"{'type': 'Point', 'coordinates': (-79.39512704, 43.65697223000001)}"
-14870,9629,GO-2015849108,THEFT UNDER,2015-05-21T00:00:00,2015,May,Thursday,21,141,14,2015-05-21T00:00:00,2015,May,Thursday,21,141,19,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RALEIGH,CLUBMAN,RC,10,CRM,1100.0,STOLEN,14816,"{'type': 'Point', 'coordinates': (-79.39300540000002, 43.6580369)}"
-14871,9054,GO-20143103061,B&E,2014-10-01T00:00:00,2014,October,Wednesday,1,274,0,2014-10-14T00:00:00,2014,October,Tuesday,14,287,17,D52,Toronto,78,Kensington-Chinatown (78),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OTHER,,RG,4,BLU,250.0,STOLEN,14801,"{'type': 'Point', 'coordinates': (-79.39512704, 43.65697223000001)}"
-14872,9143,GO-20149007973,THEFT UNDER,2014-10-12T00:00:00,2014,October,Sunday,12,285,0,2014-11-03T00:00:00,2014,November,Monday,3,307,11,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,TOURING 800,TO,28,GRY,1400.0,STOLEN,14802,"{'type': 'Point', 'coordinates': (-79.39227275, 43.65005482)}"
-14873,9159,GO-20143253210,THEFT UNDER,2014-11-05T00:00:00,2014,November,Wednesday,5,309,17,2014-11-06T00:00:00,2014,November,Thursday,6,310,21,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,2.01E+14,SC,4,,1250.0,STOLEN,14803,"{'type': 'Point', 'coordinates': (-79.38918474, 43.65468421)}"
-14874,9162,GO-20143263384,THEFT UNDER,2014-11-08T00:00:00,2014,November,Saturday,8,312,13,2014-11-08T00:00:00,2014,November,Saturday,8,312,13,D14,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,EMMO,SABRE,EL,1,GRYONG,1000.0,STOLEN,14804,"{'type': 'Point', 'coordinates': (-79.39955207, 43.65674851)}"
-14875,9178,GO-20149007996,THEFT UNDER,2014-11-03T00:00:00,2014,November,Monday,3,307,13,2014-11-04T00:00:00,2014,November,Tuesday,4,308,7,D52,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,EM,ALIEN,EL,35,BLK,956.0,STOLEN,14805,"{'type': 'Point', 'coordinates': (-79.39095898, 43.65603534)}"
-14876,9222,GO-20149008624,THEFT UNDER,2014-11-15T00:00:00,2014,November,Saturday,15,319,6,2014-12-08T00:00:00,2014,December,Monday,8,342,17,D52,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,6,SIL,0.0,STOLEN,14806,"{'type': 'Point', 'coordinates': (-79.39339759, 43.65276389)}"
-14877,9256,GO-20159000167,THEFT UNDER,2015-01-09T00:00:00,2015,January,Friday,9,9,12,2015-01-10T00:00:00,2015,January,Saturday,10,10,13,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,RALEIGH I8,FO,8,BLK,500.0,STOLEN,14807,"{'type': 'Point', 'coordinates': (-79.39919196, 43.65585086000001)}"
-14878,9331,GO-2015451845,THEFT UNDER,2015-03-14T00:00:00,2015,March,Saturday,14,73,12,2015-03-17T00:00:00,2015,March,Tuesday,17,76,15,D14,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,PEUGEOT,,RG,1,RED,250.0,STOLEN,14808,"{'type': 'Point', 'coordinates': (-79.40480719, 43.65215739)}"
-14879,9341,GO-20159001456,THEFT UNDER,2015-03-21T00:00:00,2015,March,Saturday,21,80,7,2015-03-21T00:00:00,2015,March,Saturday,21,80,22,D52,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,KH,,RC,21,RED,600.0,STOLEN,14809,"{'type': 'Point', 'coordinates': (-79.38944954, 43.65752945)}"
-14880,9449,GO-20159002105,THEFT UNDER,2015-04-20T00:00:00,2015,April,Monday,20,110,12,2015-04-20T00:00:00,2015,April,Monday,20,110,17,D52,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,DB,,RG,21,BLU,500.0,STOLEN,14810,"{'type': 'Point', 'coordinates': (-79.39136265, 43.65838682)}"
-14881,9473,GO-20159002253,THEFT UNDER,2015-04-25T00:00:00,2015,April,Saturday,25,115,13,2015-04-25T00:00:00,2015,April,Saturday,25,115,21,D52,Toronto,78,Kensington-Chinatown (78),Universities / Colleges,Educational,OT,STOCKHOLM,RG,10,BLK,,STOLEN,14811,"{'type': 'Point', 'coordinates': (-79.3906274, 43.65241188)}"
-14882,9524,GO-20159002456,THEFT UNDER,2015-05-04T00:00:00,2015,May,Monday,4,124,23,2015-05-05T00:00:00,2015,May,Tuesday,5,125,9,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MA,DOMINICAN,TO,1,WHI,900.0,STOLEN,14812,"{'type': 'Point', 'coordinates': (-79.39203753, 43.65580953)}"
-14883,9579,GO-2015796974,THEFT UNDER,2015-05-12T00:00:00,2015,May,Tuesday,12,132,22,2015-05-13T00:00:00,2015,May,Wednesday,13,133,10,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,ELDORADO,RC,1,WHIGLD,600.0,STOLEN,14813,"{'type': 'Point', 'coordinates': (-79.39963685, 43.64806649)}"
-14884,9590,GO-2015805938,THEFT UNDER,2015-05-14T00:00:00,2015,May,Thursday,14,134,17,2015-05-14T00:00:00,2015,May,Thursday,14,134,18,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,MCKINLEY,MT,18,PLE,200.0,STOLEN,14814,"{'type': 'Point', 'coordinates': (-79.39634181, 43.64876464)}"
-14885,9594,GO-20159002787,THEFT UNDER,2015-05-15T00:00:00,2015,May,Friday,15,135,20,2015-05-16T00:00:00,2015,May,Saturday,16,136,12,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,SU,,RC,12,BLU,200.0,STOLEN,14815,"{'type': 'Point', 'coordinates': (-79.396125, 43.65334628)}"
-14886,9634,GO-2015854741,THEFT UNDER,2015-05-19T00:00:00,2015,May,Tuesday,19,139,11,2015-05-22T00:00:00,2015,May,Friday,22,142,17,D14,Toronto,78,Kensington-Chinatown (78),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,,OT,21,BLU,435.0,STOLEN,14817,"{'type': 'Point', 'coordinates': (-79.40595313, 43.65543579)}"
-14887,9647,GO-20159003045,THEFT UNDER,2015-05-24T00:00:00,2015,May,Sunday,24,144,1,2015-05-24T00:00:00,2015,May,Sunday,24,144,2,D52,Toronto,78,Kensington-Chinatown (78),Bar / Restaurant,Commercial,UK,KING MIDAS,RG,1,BLK,450.0,STOLEN,14818,"{'type': 'Point', 'coordinates': (-79.38971556, 43.65019548)}"
-14888,9703,GO-20159003252,THEFT UNDER,2015-05-30T00:00:00,2015,May,Saturday,30,150,19,2015-06-02T00:00:00,2015,June,Tuesday,2,153,9,D14,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,THRESHOLD 105,OT,55,BLK,2675.0,STOLEN,14819,"{'type': 'Point', 'coordinates': (-79.40066945, 43.65476855)}"
-14889,9705,GO-20159003255,THEFT UNDER,2015-05-28T00:00:00,2015,May,Thursday,28,148,17,2015-06-01T00:00:00,2015,June,Monday,1,152,15,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,V110F,RG,24,WHI,750.0,STOLEN,14820,"{'type': 'Point', 'coordinates': (-79.39840623, 43.65389536)}"
-14890,9746,GO-2015949383,THEFT UNDER,2015-05-09T00:00:00,2015,May,Saturday,9,129,16,2015-06-06T00:00:00,2015,June,Saturday,6,157,17,D14,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,EMMO,S6,EL,1,BLK,1700.0,STOLEN,14821,"{'type': 'Point', 'coordinates': (-79.39955207, 43.65674851)}"
-14891,9749,GO-2015953568,THEFT UNDER,2015-05-21T00:00:00,2015,May,Thursday,21,141,19,2015-06-07T00:00:00,2015,June,Sunday,7,158,12,D14,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,TRIPLE CROSS,MT,21,BLU,100.0,STOLEN,14822,"{'type': 'Point', 'coordinates': (-79.40417555, 43.65283327)}"
-14892,9758,GO-2015962378,THEFT UNDER,2015-06-08T00:00:00,2015,June,Monday,8,159,18,2015-06-08T00:00:00,2015,June,Monday,8,159,21,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,XTC,RG,0,GRY,1500.0,STOLEN,14823,"{'type': 'Point', 'coordinates': (-79.3971995, 43.65090154)}"
-14893,9788,GO-2015992488,THEFT UNDER,2015-06-13T00:00:00,2015,June,Saturday,13,164,13,2015-06-13T00:00:00,2015,June,Saturday,13,164,14,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BRODIE,HYBRID,OT,24,BLK,250.0,STOLEN,14824,"{'type': 'Point', 'coordinates': (-79.40264521, 43.65609187)}"
-14894,9824,GO-20159003712,THEFT UNDER,2015-06-17T00:00:00,2015,June,Wednesday,17,168,18,2015-06-17T00:00:00,2015,June,Wednesday,17,168,23,D14,Toronto,78,Kensington-Chinatown (78),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RG,1,BLK,400.0,STOLEN,14825,"{'type': 'Point', 'coordinates': (-79.40768329, 43.65648148)}"
-14895,9881,GO-20151074169,POSSESSION PROPERTY OBC UNDER,2015-06-26T00:00:00,2015,June,Friday,26,177,3,2015-06-26T00:00:00,2015,June,Friday,26,177,5,D14,Toronto,78,Kensington-Chinatown (78),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,VFR3,RG,27,WHT,,RECOVERED,14826,"{'type': 'Point', 'coordinates': (-79.39919196, 43.65585086000001)}"
-14896,9908,GO-20151099871,THEFT UNDER,2015-06-29T00:00:00,2015,June,Monday,29,180,19,2015-06-30T00:00:00,2015,June,Tuesday,30,181,11,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,,MT,24,REDWHI,600.0,STOLEN,14827,"{'type': 'Point', 'coordinates': (-79.40403711, 43.6572083)}"
-14897,9913,GO-20159004052,THEFT UNDER,2015-06-18T00:00:00,2015,June,Thursday,18,169,3,2015-06-30T00:00:00,2015,June,Tuesday,30,181,8,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,IN,2015 INFINITY X,MT,21,BLK,600.0,STOLEN,14828,"{'type': 'Point', 'coordinates': (-79.39387167, 43.65067314)}"
-14898,9935,GO-20151120969,THEFT UNDER,2015-07-03T00:00:00,2015,July,Friday,3,184,15,2015-07-03T00:00:00,2015,July,Friday,3,184,15,D14,Toronto,78,Kensington-Chinatown (78),Bar / Restaurant,Commercial,KHS,300,OT,8,GRYBLK,1000.0,STOLEN,14829,"{'type': 'Point', 'coordinates': (-79.40173755, 43.65388171)}"
-14899,3795,GO-20189036365,THEFT UNDER - BICYCLE,2018-10-29T00:00:00,2018,October,Monday,29,302,17,2018-10-31T00:00:00,2018,October,Wednesday,31,304,14,D14,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,OT,1,BLK,150.0,STOLEN,14830,"{'type': 'Point', 'coordinates': (-79.39883998, 43.64954482)}"
-14900,3819,GO-20189037059,THEFT UNDER,2018-11-02T00:00:00,2018,November,Friday,2,306,8,2018-11-06T00:00:00,2018,November,Tuesday,6,310,12,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,21,BLU,300.0,STOLEN,14831,"{'type': 'Point', 'coordinates': (-79.39136265, 43.65838682)}"
-14901,3874,GO-20189038646,THEFT UNDER - BICYCLE,2018-10-16T00:00:00,2018,October,Tuesday,16,289,19,2018-11-17T00:00:00,2018,November,Saturday,17,321,17,D14,Toronto,78,Kensington-Chinatown (78),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MO,,MT,1,,120.0,STOLEN,14832,"{'type': 'Point', 'coordinates': (-79.40066945, 43.65476855)}"
-14902,3931,GO-20182258250,THEFT UNDER - BICYCLE,2018-11-25T00:00:00,2018,November,Sunday,25,329,12,2018-12-09T00:00:00,2018,December,Sunday,9,343,5,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,ZZZ,,MT,8,BLK,100.0,STOLEN,14833,"{'type': 'Point', 'coordinates': (-79.39875925, 43.6493456)}"
-14903,4033,GO-20199004474,THEFT UNDER,2019-02-04T00:00:00,2019,February,Monday,4,35,21,2019-02-04T00:00:00,2019,February,Monday,4,35,21,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,RG,21,BLK,50.0,STOLEN,14834,"{'type': 'Point', 'coordinates': (-79.3971995, 43.65090154)}"
-14904,19788,GO-20149005887,THEFT UNDER,2014-08-13T00:00:00,2014,August,Wednesday,13,225,21,2014-08-14T00:00:00,2014,August,Thursday,14,226,0,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,GIANT DASH 3 WO,OT,24,YEL,600.0,STOLEN,14835,"{'type': 'Point', 'coordinates': (-79.39228875, 43.64605377)}"
-14905,4049,GO-20199005410,THEFT UNDER - BICYCLE,2019-02-14T00:00:00,2019,February,Thursday,14,45,11,2019-02-14T00:00:00,2019,February,Thursday,14,45,12,D52,Toronto,78,Kensington-Chinatown (78),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,,RG,3,BLK,375.0,STOLEN,14836,"{'type': 'Point', 'coordinates': (-79.39161243, 43.65119665)}"
-14906,4061,GO-2019342258,THEFT UNDER - BICYCLE,2019-02-23T00:00:00,2019,February,Saturday,23,54,9,2019-02-23T00:00:00,2019,February,Saturday,23,54,11,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,NO NAME,NON,RG,1,BLK,500.0,STOLEN,14837,"{'type': 'Point', 'coordinates': (-79.3974349, 43.65650586)}"
-14907,4102,GO-20199009210,THEFT UNDER - BICYCLE,2019-03-04T00:00:00,2019,March,Monday,4,63,19,2019-03-22T00:00:00,2019,March,Friday,22,81,12,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,11,,3000.0,STOLEN,14838,"{'type': 'Point', 'coordinates': (-79.39227275, 43.65005482)}"
-14908,4114,GO-20199009835,THEFT UNDER,2019-03-26T00:00:00,2019,March,Tuesday,26,85,23,2019-03-27T00:00:00,2019,March,Wednesday,27,86,14,D14,Toronto,78,Kensington-Chinatown (78),Bar / Restaurant,Commercial,MA,FAIRFAX SC1 700,RG,24,BLK,350.0,STOLEN,14839,"{'type': 'Point', 'coordinates': (-79.39634181, 43.64876464)}"
-14909,4142,GO-20199011121,THEFT UNDER - BICYCLE,2019-04-08T00:00:00,2019,April,Monday,8,98,20,2019-04-08T00:00:00,2019,April,Monday,8,98,23,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,15,WHI,225.0,STOLEN,14840,"{'type': 'Point', 'coordinates': (-79.396125, 43.65334628)}"
-14910,4143,GO-20199011142,THEFT UNDER - BICYCLE,2019-04-08T00:00:00,2019,April,Monday,8,98,18,2019-04-08T00:00:00,2019,April,Monday,8,98,21,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,GRAND RAPIDS HY,OT,7,BLK,400.0,STOLEN,14841,"{'type': 'Point', 'coordinates': (-79.39634181, 43.64876464)}"
-14911,4158,GO-20199011677,THEFT UNDER - BICYCLE,2019-04-11T00:00:00,2019,April,Thursday,11,101,23,2019-04-12T00:00:00,2019,April,Friday,12,102,22,D14,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,,,MT,8,ONG,0.0,STOLEN,14842,"{'type': 'Point', 'coordinates': (-79.40364248, 43.65495832)}"
-14912,4179,GO-20199012298,THEFT UNDER,2019-04-17T00:00:00,2019,April,Wednesday,17,107,8,2019-04-18T00:00:00,2019,April,Thursday,18,108,2,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,OT,FHAST 2.0,MT,11,BLK,2200.0,STOLEN,14843,"{'type': 'Point', 'coordinates': (-79.39339759, 43.65276389)}"
-14913,4180,GO-20199012298,THEFT UNDER,2019-04-17T00:00:00,2019,April,Wednesday,17,107,8,2019-04-18T00:00:00,2019,April,Thursday,18,108,2,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,OT,FHAST,MT,11,,2200.0,STOLEN,14844,"{'type': 'Point', 'coordinates': (-79.39339759, 43.65276389)}"
-14914,4224,GO-20199013664,THEFT UNDER,2019-04-01T00:00:00,2019,April,Monday,1,91,12,2019-05-11T00:00:00,2019,May,Saturday,11,131,21,D14,Toronto,78,Kensington-Chinatown (78),Homeless Shelter / Mission,Other,EM,S,EL,35,BLU,2500.0,STOLEN,14845,"{'type': 'Point', 'coordinates': (-79.39837878, 43.64832482)}"
-14915,4225,GO-20199013667,THEFT UNDER,2019-04-30T00:00:00,2019,April,Tuesday,30,120,23,2019-05-01T00:00:00,2019,May,Wednesday,1,121,22,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,RED,800.0,STOLEN,14846,"{'type': 'Point', 'coordinates': (-79.39225095, 43.656266970000004)}"
-14916,4231,GO-20199013874,THEFT UNDER,2019-05-03T00:00:00,2019,May,Friday,3,123,20,2019-05-04T00:00:00,2019,May,Saturday,4,124,4,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MA,FAIRFAX,RG,21,BLK,500.0,STOLEN,14847,"{'type': 'Point', 'coordinates': (-79.39801041, 43.65294362)}"
-14917,4277,GO-20199015046,THEFT UNDER,2019-05-11T00:00:00,2019,May,Saturday,11,131,2,2019-05-14T00:00:00,2019,May,Tuesday,14,134,19,D52,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,IN,,MT,21,BLU,0.0,STOLEN,14848,"{'type': 'Point', 'coordinates': (-79.39424091, 43.65480274)}"
-14918,4316,GO-20199015822,THEFT UNDER,2019-05-21T00:00:00,2019,May,Tuesday,21,141,11,2019-05-21T00:00:00,2019,May,Tuesday,21,141,21,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,6,YEL,130.0,STOLEN,14850,"{'type': 'Point', 'coordinates': (-79.39024772, 43.65149749)}"
-14919,4381,GO-20199016914,THEFT UNDER,2019-05-27T00:00:00,2019,May,Monday,27,147,18,2019-05-30T00:00:00,2019,May,Thursday,30,150,16,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,BI,PIAGIO,RC,10,DBL,400.0,STOLEN,14851,"{'type': 'Point', 'coordinates': (-79.39424091, 43.65480274)}"
-14920,4448,GO-20199018088,THEFT UNDER,2019-06-09T00:00:00,2019,June,Sunday,9,160,8,2019-06-10T00:00:00,2019,June,Monday,10,161,17,D52,Toronto,78,Kensington-Chinatown (78),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RG,1,BLK,525.0,STOLEN,14852,"{'type': 'Point', 'coordinates': (-79.38984563, 43.65622357)}"
-14921,4484,GO-20199018556,THEFT UNDER,2019-06-14T00:00:00,2019,June,Friday,14,165,10,2019-06-14T00:00:00,2019,June,Friday,14,165,10,D52,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,TR,5,RED,850.0,STOLEN,14853,"{'type': 'Point', 'coordinates': (-79.39955207, 43.65674851)}"
-14922,4510,GO-20199018851,THEFT UNDER,2019-06-15T00:00:00,2019,June,Saturday,15,166,20,2019-06-16T00:00:00,2019,June,Sunday,16,167,17,D52,Toronto,78,Kensington-Chinatown (78),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,HARDROCK SPORT,MT,24,BLK,200.0,STOLEN,14854,"{'type': 'Point', 'coordinates': (-79.39339759, 43.65276389)}"
-14923,4597,GO-20199019949,THEFT UNDER - BICYCLE,2019-06-24T00:00:00,2019,June,Monday,24,175,12,2019-06-24T00:00:00,2019,June,Monday,24,175,18,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EM,MONSTER,SC,32,BLK,2000.0,STOLEN,14855,"{'type': 'Point', 'coordinates': (-79.40595313, 43.65543579)}"
-14924,4601,GO-20199020036,THEFT UNDER,2019-06-08T00:00:00,2019,June,Saturday,8,159,1,2019-06-25T00:00:00,2019,June,Tuesday,25,176,12,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,OT,ALPE D'HUEZ 200,RC,9,ONG,800.0,STOLEN,14856,"{'type': 'Point', 'coordinates': (-79.39692918, 43.65528489)}"
-14925,4626,GO-20199020298,THEFT UNDER - BICYCLE,2019-06-24T00:00:00,2019,June,Monday,24,175,2,2019-06-27T00:00:00,2019,June,Thursday,27,178,11,D14,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,REACTION,RG,21,WHI,300.0,STOLEN,14857,"{'type': 'Point', 'coordinates': (-79.40374226, 43.64813008)}"
-14926,4708,GO-20199021521,THEFT UNDER,2019-07-08T00:00:00,2019,July,Monday,8,189,17,2019-07-08T00:00:00,2019,July,Monday,8,189,20,D52,Toronto,78,Kensington-Chinatown (78),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,VITA,RG,9,WHI,500.0,STOLEN,14859,"{'type': 'Point', 'coordinates': (-79.3906274, 43.65241188)}"
-14927,4739,GO-20191196063,THEFT UNDER - BICYCLE,2019-06-27T00:00:00,2019,June,Thursday,27,178,3,2019-06-30T00:00:00,2019,June,Sunday,30,181,20,D14,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,,OT,30,,1000.0,STOLEN,14860,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-14928,4747,GO-20199021884,THEFT UNDER,2019-07-06T00:00:00,2019,July,Saturday,6,187,12,2019-07-11T00:00:00,2019,July,Thursday,11,192,13,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,FREE SPIRIT,RG,10,BLU,150.0,STOLEN,14861,"{'type': 'Point', 'coordinates': (-79.39815878000002, 43.65826015)}"
-14929,4766,GO-20191291037,THEFT UNDER - BICYCLE,2019-07-10T00:00:00,2019,July,Wednesday,10,191,20,2019-07-10T00:00:00,2019,July,Wednesday,10,191,21,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,OT,0,REDBLK,220.0,STOLEN,14862,"{'type': 'Point', 'coordinates': (-79.39801041, 43.65294362)}"
-14930,4780,GO-20191307010,THEFT UNDER - BICYCLE,2019-07-12T00:00:00,2019,July,Friday,12,193,19,2019-07-12T00:00:00,2019,July,Friday,12,193,21,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,RG,1,BLK,500.0,STOLEN,14863,"{'type': 'Point', 'coordinates': (-79.39109731, 43.64989719)}"
-14931,4790,GO-20199022684,THEFT UNDER,2019-07-16T00:00:00,2019,July,Tuesday,16,197,15,2019-07-17T00:00:00,2019,July,Wednesday,17,198,16,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,,MT,3,LBL,200.0,STOLEN,14864,"{'type': 'Point', 'coordinates': (-79.40595313, 43.65543579)}"
-14932,4795,GO-20191324400,THEFT UNDER - BICYCLE,2019-07-14T00:00:00,2019,July,Sunday,14,195,18,2019-07-18T00:00:00,2019,July,Thursday,18,199,17,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,ECLIPSE,TO,3,SIL,1000.0,STOLEN,14865,"{'type': 'Point', 'coordinates': (-79.39142092, 43.65433318)}"
-14933,4808,GO-20199022927,THEFT UNDER,2019-07-18T00:00:00,2019,July,Thursday,18,199,21,2019-07-19T00:00:00,2019,July,Friday,19,200,14,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,SU,SUPERCYCLE,RG,40,RED,600.0,STOLEN,14866,"{'type': 'Point', 'coordinates': (-79.40232443, 43.64841054)}"
-14934,4907,GO-20199024092,THEFT UNDER,2019-07-26T00:00:00,2019,July,Friday,26,207,3,2019-07-28T00:00:00,2019,July,Sunday,28,209,11,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,SLA MR 2.9,MT,12,ONG,2900.0,STOLEN,14867,"{'type': 'Point', 'coordinates': (-79.39366252, 43.64935047)}"
-14935,5048,GO-20199025940,THEFT UNDER - BICYCLE,2019-08-05T00:00:00,2019,August,Monday,5,217,19,2019-08-12T00:00:00,2019,August,Monday,12,224,18,D14,Toronto,78,Kensington-Chinatown (78),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,OT,C:1 CITY,RG,10,BLK,799.0,STOLEN,14868,"{'type': 'Point', 'coordinates': (-79.40403711, 43.6572083)}"
-14936,5094,GO-20199026672,THEFT UNDER,2019-08-17T00:00:00,2019,August,Saturday,17,229,21,2019-08-18T00:00:00,2019,August,Sunday,18,230,0,D52,Toronto,78,Kensington-Chinatown (78),Bar / Restaurant,Commercial,OT,INFITINITE,EL,40,BLU,2000.0,STOLEN,14869,"{'type': 'Point', 'coordinates': (-79.396125, 43.65334628)}"
-14937,5174,GO-20191627815,B&E,2019-08-24T00:00:00,2019,August,Saturday,24,236,4,2019-08-27T00:00:00,2019,August,Tuesday,27,239,9,D14,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KINDHUMAN,KOURSA,MT,14,BLKWHI,4000.0,STOLEN,14870,"{'type': 'Point', 'coordinates': (-79.40397597, 43.65583003)}"
-14938,5185,GO-20199028057,THEFT UNDER,2019-08-23T00:00:00,2019,August,Friday,23,235,10,2019-08-28T00:00:00,2019,August,Wednesday,28,240,15,D14,Toronto,78,Kensington-Chinatown (78),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SA,BRONSON C,MT,10,BLK,4000.0,STOLEN,14871,"{'type': 'Point', 'coordinates': (-79.39863995, 43.65205921)}"
-14939,5187,GO-20199028105,THEFT UNDER,2019-08-29T00:00:00,2019,August,Thursday,29,241,1,2019-08-29T00:00:00,2019,August,Thursday,29,241,9,D52,Toronto,78,Kensington-Chinatown (78),Bar / Restaurant,Commercial,OT,TORONTO BIKE SH,RG,3,BLK,1200.0,STOLEN,14872,"{'type': 'Point', 'coordinates': (-79.4000091, 43.65794797)}"
-14940,5188,GO-20191633564,THEFT UNDER,2019-08-20T00:00:00,2019,August,Tuesday,20,232,21,2019-08-27T00:00:00,2019,August,Tuesday,27,239,8,D52,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,,RG,18,DGRGRY,300.0,STOLEN,14873,"{'type': 'Point', 'coordinates': (-79.39692918, 43.65528489)}"
-14941,5198,GO-20191663684,B&E,2019-08-25T00:00:00,2019,August,Sunday,25,237,11,2019-08-31T00:00:00,2019,August,Saturday,31,243,12,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,EL,1,BLK,2000.0,STOLEN,14874,"{'type': 'Point', 'coordinates': (-79.3934735, 43.65601123)}"
-14942,5223,GO-20191673190,THEFT UNDER,2009-09-01T00:00:00,2009,September,Tuesday,1,244,12,2019-09-01T00:00:00,2019,September,Sunday,1,244,17,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,RG,1,GRNGRY,550.0,STOLEN,14875,"{'type': 'Point', 'coordinates': (-79.39840686, 43.65172265)}"
-14943,5244,GO-20191711060,THEFT OF EBIKE UNDER $5000,2019-09-06T00:00:00,2019,September,Friday,6,249,22,2019-09-06T00:00:00,2019,September,Friday,6,249,22,D14,Toronto,78,Kensington-Chinatown (78),"Open Areas (Lakes, Parks, Rivers)",Outside,AMIGO,INFINITY,EL,1,BLK,2600.0,STOLEN,14876,"{'type': 'Point', 'coordinates': (-79.39860531, 43.65440288)}"
-14944,5284,GO-20199029402,THEFT UNDER,2019-09-10T00:00:00,2019,September,Tuesday,10,253,1,2019-09-10T00:00:00,2019,September,Tuesday,10,253,11,D14,Toronto,78,Kensington-Chinatown (78),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,RG,12,DBL,355.0,STOLEN,14877,"{'type': 'Point', 'coordinates': (-79.40172204, 43.65628785)}"
-14945,5334,GO-20191778214,PROPERTY - FOUND,2019-09-16T00:00:00,2019,September,Monday,16,259,10,2019-09-16T00:00:00,2019,September,Monday,16,259,11,D52,Toronto,78,Kensington-Chinatown (78),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SUPERCYCLE,SC1600,RG,18,BLK,,UNKNOWN,14878,"{'type': 'Point', 'coordinates': (-79.39033931, 43.65450322)}"
-14946,5335,GO-20191778181,PROPERTY - FOUND,2019-09-16T00:00:00,2019,September,Monday,16,259,10,2019-09-16T00:00:00,2019,September,Monday,16,259,11,D52,Toronto,78,Kensington-Chinatown (78),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,,RG,18,BLK,,UNKNOWN,14879,"{'type': 'Point', 'coordinates': (-79.39033931, 43.65450322)}"
-14947,5336,GO-20191778192,PROPERTY - FOUND,2019-09-16T00:00:00,2019,September,Monday,16,259,10,2019-09-16T00:00:00,2019,September,Monday,16,259,11,D52,Toronto,78,Kensington-Chinatown (78),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,ALGONQUIN,RG,18,PLE,,UNKNOWN,14880,"{'type': 'Point', 'coordinates': (-79.39033931, 43.65450322)}"
-14948,5395,GO-20199031419,THEFT UNDER,2019-09-24T00:00:00,2019,September,Tuesday,24,267,8,2019-09-25T00:00:00,2019,September,Wednesday,25,268,1,D52,Toronto,78,Kensington-Chinatown (78),Universities / Colleges,Educational,OT,,OT,1,RED,400.0,STOLEN,14881,"{'type': 'Point', 'coordinates': (-79.3906274, 43.65241188)}"
-14949,5413,GO-20199031624,THEFT UNDER,2019-09-25T00:00:00,2019,September,Wednesday,25,268,19,2019-09-26T00:00:00,2019,September,Thursday,26,269,14,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,NEVADA,MT,10,RED,350.0,STOLEN,14882,"{'type': 'Point', 'coordinates': (-79.39815878000002, 43.65826015)}"
-14950,5430,GO-20199031915,THEFT UNDER - BICYCLE,2019-09-29T00:00:00,2019,September,Sunday,29,272,1,2019-09-29T00:00:00,2019,September,Sunday,29,272,9,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,UK,MENS PITCH SPOR,MT,21,LGR,800.0,STOLEN,14883,"{'type': 'Point', 'coordinates': (-79.40264521, 43.65609187)}"
-14951,5445,GO-20199032136,THEFT UNDER,2019-09-29T00:00:00,2019,September,Sunday,29,272,8,2019-09-30T00:00:00,2019,September,Monday,30,273,19,D52,Toronto,78,Kensington-Chinatown (78),"Open Areas (Lakes, Parks, Rivers)",Outside,CC,STATIC DS.XC,MT,21,GRY,250.0,STOLEN,14884,"{'type': 'Point', 'coordinates': (-79.39161243, 43.65119665)}"
-14952,5505,GO-20199033455,THEFT UNDER - BICYCLE,2019-09-26T00:00:00,2019,September,Thursday,26,269,17,2019-10-10T00:00:00,2019,October,Thursday,10,283,22,D14,Toronto,78,Kensington-Chinatown (78),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UK,,MT,4,BLK,300.0,STOLEN,14885,"{'type': 'Point', 'coordinates': (-79.40480719, 43.65215739)}"
-14953,5565,GO-20199034753,THEFT UNDER,2019-10-21T00:00:00,2019,October,Monday,21,294,23,2019-10-22T00:00:00,2019,October,Tuesday,22,295,7,D52,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SINGLE SPEED,RG,1,BLK,500.0,STOLEN,14886,"{'type': 'Point', 'coordinates': (-79.39692918, 43.65528489)}"
-14954,5618,GO-20199035797,THEFT FROM MOTOR VEHICLE UNDER,2019-10-30T00:00:00,2019,October,Wednesday,30,303,5,2019-10-30T00:00:00,2019,October,Wednesday,30,303,9,D14,Toronto,78,Kensington-Chinatown (78),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,VERVE 2,TO,24,BLU,800.0,STOLEN,14887,"{'type': 'Point', 'coordinates': (-79.40403711, 43.6572083)}"
-14955,5662,GO-20199036827,THEFT UNDER,2019-11-07T00:00:00,2019,November,Thursday,7,311,17,2019-11-07T00:00:00,2019,November,Thursday,7,311,23,D52,Toronto,78,Kensington-Chinatown (78),Universities / Colleges,Educational,GI,ESCAPE,RG,9,BLK,550.0,STOLEN,14888,"{'type': 'Point', 'coordinates': (-79.3906274, 43.65241188)}"
-14956,5733,GO-20199039198,THEFT UNDER,2019-11-26T00:00:00,2019,November,Tuesday,26,330,19,2019-11-28T00:00:00,2019,November,Thursday,28,332,19,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,9,,500.0,STOLEN,14889,"{'type': 'Point', 'coordinates': (-79.39424091, 43.65480274)}"
-14957,5941,GO-20209007618,THEFT UNDER,2020-03-03T00:00:00,2020,March,Tuesday,3,63,12,2020-03-03T00:00:00,2020,March,Tuesday,3,63,15,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SPACE HORSE,TO,20,RED,2000.0,STOLEN,14897,"{'type': 'Point', 'coordinates': (-79.3971995, 43.65090154)}"
-14958,5756,GO-20192310165,UNLAWFULLY IN DWELLING-HOUSE,2019-11-29T00:00:00,2019,November,Friday,29,333,21,2019-11-30T00:00:00,2019,November,Saturday,30,334,16,D14,Toronto,78,Kensington-Chinatown (78),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,SCHWINN,700,OT,0,BLK,,UNKNOWN,14890,"{'type': 'Point', 'coordinates': (-79.39812372, 43.65026118)}"
-14959,5757,GO-20192310165,UNLAWFULLY IN DWELLING-HOUSE,2019-11-29T00:00:00,2019,November,Friday,29,333,21,2019-11-30T00:00:00,2019,November,Saturday,30,334,16,D14,Toronto,78,Kensington-Chinatown (78),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OTHER,HYPER,MT,0,BLKBLU,,UNKNOWN,14891,"{'type': 'Point', 'coordinates': (-79.39812372, 43.65026118)}"
-14960,5785,GO-20199041989,THEFT FROM MOTOR VEHICLE UNDER,2019-12-25T00:00:00,2019,December,Wednesday,25,359,13,2019-12-25T00:00:00,2019,December,Wednesday,25,359,19,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,1,,0.0,STOLEN,14892,"{'type': 'Point', 'coordinates': (-79.39227275, 43.65005482)}"
-14961,5793,GO-20209000015,THEFT UNDER,2020-01-01T00:00:00,2020,January,Wednesday,1,1,0,2020-01-01T00:00:00,2020,January,Wednesday,1,1,1,D14,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,40,GRN,100.0,STOLEN,14893,"{'type': 'Point', 'coordinates': (-79.40280566, 43.65192652)}"
-14962,5801,GO-20209000244,THEFT UNDER,2019-12-31T00:00:00,2019,December,Tuesday,31,365,16,2020-01-03T00:00:00,2020,January,Friday,3,3,13,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,EL,5,WHI,4000.0,STOLEN,14894,"{'type': 'Point', 'coordinates': (-79.40110737, 43.65227394000001)}"
-14963,5921,GO-2020386444,THEFT OF EBIKE UNDER $5000,2020-02-23T00:00:00,2020,February,Sunday,23,54,20,2020-02-23T00:00:00,2020,February,Sunday,23,54,20,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,POPULO,,EL,0,SIL,1900.0,STOLEN,14895,"{'type': 'Point', 'coordinates': (-79.39801041, 43.65294362)}"
-14964,5923,GO-2020382444,THEFT UNDER,2020-02-22T00:00:00,2020,February,Saturday,22,53,23,2020-02-23T00:00:00,2020,February,Sunday,23,54,8,D14,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,AGGRESSOR,MT,24,RED,550.0,STOLEN,14896,"{'type': 'Point', 'coordinates': (-79.39958097, 43.6499727)}"
-14965,5973,GO-2020537314,THEFT UNDER,2020-03-13T00:00:00,2020,March,Friday,13,73,17,2020-03-15T00:00:00,2020,March,Sunday,15,75,0,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,PURE FIX,RG,1,WHI,400.0,STOLEN,14898,"{'type': 'Point', 'coordinates': (-79.39634181, 43.64876464)}"
-14966,5993,GO-2020608192,POSSESSION PROPERTY OBC UNDER,2020-03-26T00:00:00,2020,March,Thursday,26,86,18,2020-03-26T00:00:00,2020,March,Thursday,26,86,18,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CANNONDALE,QUICK LTD,MT,21,BLK,900.0,RECOVERED,14899,"{'type': 'Point', 'coordinates': (-79.40264521, 43.65609187)}"
-14967,6135,GO-2020830432,THEFT UNDER - BICYCLE,2020-05-03T00:00:00,2020,May,Sunday,3,124,6,2020-05-03T00:00:00,2020,May,Sunday,3,124,12,D14,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,VANMOOF,URBAN BIKE B3,OT,1,WHI,1200.0,STOLEN,14900,"{'type': 'Point', 'coordinates': (-79.40364248, 43.65495832)}"
-14968,6147,GO-2020830432,THEFT UNDER - BICYCLE,2020-05-03T00:00:00,2020,May,Sunday,3,124,6,2020-05-03T00:00:00,2020,May,Sunday,3,124,12,D14,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,B3 URBAN BIKE,RG,1,WHI,1200.0,STOLEN,14901,"{'type': 'Point', 'coordinates': (-79.40364248, 43.65495832)}"
-14969,6160,GO-20209012869,B&E,2020-05-10T00:00:00,2020,May,Sunday,10,131,10,2020-05-11T00:00:00,2020,May,Monday,11,132,10,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,OT,,TO,21,YEL,950.0,STOLEN,14902,"{'type': 'Point', 'coordinates': (-79.4046631, 43.64896803)}"
-14970,6377,GO-20201093955,THEFT UNDER - BICYCLE,2020-06-14T00:00:00,2020,June,Sunday,14,166,1,2020-06-14T00:00:00,2020,June,Sunday,14,166,13,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,,MT,21,,230.0,STOLEN,14903,"{'type': 'Point', 'coordinates': (-79.38971556, 43.65019548)}"
-14971,6381,GO-20209015320,THEFT UNDER,2020-06-09T00:00:00,2020,June,Tuesday,9,161,4,2020-06-13T00:00:00,2020,June,Saturday,13,165,19,D14,Toronto,78,Kensington-Chinatown (78),Homeless Shelter / Mission,Other,NO,RIVERSPORT,TO,21,BLK,450.0,STOLEN,14904,"{'type': 'Point', 'coordinates': (-79.39837878, 43.64832482)}"
-14972,6432,GO-20209015831,THEFT UNDER,2020-06-18T00:00:00,2020,June,Thursday,18,170,13,2020-06-21T00:00:00,2020,June,Sunday,21,173,0,D14,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,EM,,EL,40,BLK,2000.0,RECOVERED,14905,"{'type': 'Point', 'coordinates': (-79.40222699, 43.65202883)}"
-14973,6455,GO-20201139011,THEFT UNDER - BICYCLE,2020-06-20T00:00:00,2020,June,Saturday,20,172,22,2020-06-20T00:00:00,2020,June,Saturday,20,172,23,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,ZZZ,MOUNTAIN BIKE,MT,20,BLK,240.0,STOLEN,14906,"{'type': 'Point', 'coordinates': (-79.39737512, 43.64853707)}"
-14974,6470,GO-20209016150,THEFT UNDER,2020-06-22T00:00:00,2020,June,Monday,22,174,10,2020-06-25T00:00:00,2020,June,Thursday,25,177,15,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,1,LGR,440.0,STOLEN,14907,"{'type': 'Point', 'coordinates': (-79.38944954, 43.65752945)}"
-14975,6472,GO-20209016200,THEFT UNDER,2020-06-24T00:00:00,2020,June,Wednesday,24,176,23,2020-06-25T00:00:00,2020,June,Thursday,25,177,23,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,OT,SOLARIS 700C,OT,18,SIL,310.0,STOLEN,14908,"{'type': 'Point', 'coordinates': (-79.39812372, 43.65026118)}"
-14976,6490,GO-20209016412,THEFT UNDER,2020-06-28T00:00:00,2020,June,Sunday,28,180,18,2020-06-28T00:00:00,2020,June,Sunday,28,180,22,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,OT,BLACK SKIES,OT,40,,300.0,STOLEN,14909,"{'type': 'Point', 'coordinates': (-79.39033931, 43.65450322)}"
-14977,6532,GO-20209016846,THEFT UNDER,2020-07-04T00:00:00,2020,July,Saturday,4,186,14,2020-07-04T00:00:00,2020,July,Saturday,4,186,15,D52,Toronto,78,Kensington-Chinatown (78),Convenience Stores,Commercial,OT,,RG,3,WHI,1000.0,STOLEN,14910,"{'type': 'Point', 'coordinates': (-79.39879112, 43.65491345)}"
-14978,6881,GO-20209019515,THEFT UNDER,2020-08-04T00:00:00,2020,August,Tuesday,4,217,23,2020-08-06T00:00:00,2020,August,Thursday,6,219,14,D52,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,6,ONG,0.0,STOLEN,14911,"{'type': 'Point', 'coordinates': (-79.39395903, 43.65721288)}"
-14979,6886,GO-20209019552,THEFT UNDER,2020-08-06T00:00:00,2020,August,Thursday,6,219,12,2020-08-06T00:00:00,2020,August,Thursday,6,219,14,D52,Toronto,78,Kensington-Chinatown (78),Bar / Restaurant,Commercial,OT,27.5,EL,30,,2034.0,STOLEN,14912,"{'type': 'Point', 'coordinates': (-79.39801041, 43.65294362)}"
-14980,19793,GO-20149006073,THEFT UNDER,2014-08-02T00:00:00,2014,August,Saturday,2,214,6,2014-08-18T00:00:00,2014,August,Monday,18,230,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,CX2,RC,16,WHI,2422.0,STOLEN,14913,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-14981,19794,GO-20149006097,THEFT UNDER,2014-08-18T00:00:00,2014,August,Monday,18,230,17,2014-08-19T00:00:00,2014,August,Tuesday,19,231,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,,MT,18,SIL,0.0,STOLEN,14914,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-14982,19797,GO-20149006212,THEFT UNDER,2014-08-17T00:00:00,2014,August,Sunday,17,229,13,2014-08-22T00:00:00,2014,August,Friday,22,234,17,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,700C TEMPO,RG,21,BLK,255.0,STOLEN,14915,"{'type': 'Point', 'coordinates': (-79.39360024, 43.64576209)}"
-14983,19802,GO-20142766048,THEFT UNDER,2014-08-22T00:00:00,2014,August,Friday,22,234,21,2014-08-24T00:00:00,2014,August,Sunday,24,236,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,EPIC,RG,11,PLE,1000.0,STOLEN,14916,"{'type': 'Point', 'coordinates': (-79.38973372, 43.6466028)}"
-14984,19806,GO-20149006604,THEFT UNDER,2014-09-05T00:00:00,2014,September,Friday,5,248,7,2014-09-05T00:00:00,2014,September,Friday,5,248,20,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,IH,SONIC,MT,18,BLU,250.0,STOLEN,14917,"{'type': 'Point', 'coordinates': (-79.39204821, 43.64885072)}"
-14985,19811,GO-20149007131,THEFT UNDER,2014-09-14T00:00:00,2014,September,Sunday,14,257,17,2014-09-22T00:00:00,2014,September,Monday,22,265,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NO,YORKVILLE,RG,21,GRY,400.0,STOLEN,14918,"{'type': 'Point', 'coordinates': (-79.37778379, 43.6430065)}"
-14986,19813,GO-20149007182,THEFT UNDER,2014-09-24T00:00:00,2014,September,Wednesday,24,267,20,2014-09-25T00:00:00,2014,September,Thursday,25,268,1,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OTHER,,OT,1,,,STOLEN,14919,"{'type': 'Point', 'coordinates': (-79.37581636, 43.64427666)}"
-14987,19815,GO-20143053076,THEFT UNDER,2014-10-02T00:00:00,2014,October,Thursday,2,275,9,2014-10-06T00:00:00,2014,October,Monday,6,279,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,,OT,24,PLE,400.0,STOLEN,14920,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-14988,19819,GO-20149008794,THEFT UNDER,2014-12-06T00:00:00,2014,December,Saturday,6,340,7,2014-12-16T00:00:00,2014,December,Tuesday,16,350,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,F800,MT,27,BLK,2000.0,STOLEN,14921,"{'type': 'Point', 'coordinates': (-79.39175463, 43.64474761000001)}"
-14989,19820,GO-20156863,THEFT UNDER,2015-01-01T00:00:00,2015,January,Thursday,1,1,22,2015-01-02T00:00:00,2015,January,Friday,2,2,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CANNONDALE,BADBOY,RG,18,BLK,1000.0,STOLEN,14922,"{'type': 'Point', 'coordinates': (-79.39075649, 43.64913078)}"
-14990,19825,GO-20159000740,THEFT UNDER,2015-02-11T00:00:00,2015,February,Wednesday,11,42,20,2015-02-12T00:00:00,2015,February,Thursday,12,43,23,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,15 QUICK WOMEN',RG,24,PLE,734.0,STOLEN,14923,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-14991,19829,GO-20159001822,THEFT UNDER,2015-04-09T00:00:00,2015,April,Thursday,9,99,20,2015-04-10T00:00:00,2015,April,Friday,10,100,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,XPERT29T,MT,19,GRN,620.0,STOLEN,14924,"{'type': 'Point', 'coordinates': (-79.39388892, 43.64273773)}"
-14992,19838,GO-2015740139,B&E,2015-05-01T00:00:00,2015,May,Friday,1,121,16,2015-05-04T00:00:00,2015,May,Monday,4,124,15,D52,Toronto,77,Waterfront Communities-The Island (77),Go Station,Transit,SPECIALIZED,CROSSTRAIL ELIT,MT,99,GRY,1225.0,STOLEN,14925,"{'type': 'Point', 'coordinates': (-79.37909512, 43.64598662)}"
-14993,19842,GO-20159003324,THEFT UNDER,2015-05-31T00:00:00,2015,May,Sunday,31,151,17,2015-06-04T00:00:00,2015,June,Thursday,4,155,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,ALLEZ COMP,RC,21,,2100.0,STOLEN,14926,"{'type': 'Point', 'coordinates': (-79.37581636, 43.64427666)}"
-14994,19845,GO-20151015130,THEFT UNDER,2015-06-17T00:00:00,2015,June,Wednesday,17,168,6,2015-06-17T00:00:00,2015,June,Wednesday,17,168,8,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,HINDLEY,,MT,21,DGR,400.0,STOLEN,14927,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-14995,19863,GO-20159005658,THEFT UNDER,2015-08-07T00:00:00,2015,August,Friday,7,219,19,2015-08-11T00:00:00,2015,August,Tuesday,11,223,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CC,,RG,5,PNK,330.0,STOLEN,14929,"{'type': 'Point', 'coordinates': (-79.39124574, 43.64342012)}"
-14996,19867,GO-20159006301,THEFT UNDER,2015-08-21T00:00:00,2015,August,Friday,21,233,18,2015-08-23T00:00:00,2015,August,Sunday,23,235,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SU,,OT,7,YEL,400.0,STOLEN,14930,"{'type': 'Point', 'coordinates': (-79.38442526, 43.6402504)}"
-14997,19874,GO-20159007607,THEFT UNDER,2015-09-20T00:00:00,2015,September,Sunday,20,263,21,2015-09-22T00:00:00,2015,September,Tuesday,22,265,22,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,CA,CARBONDALE XLG,RG,14,BLK,900.0,STOLEN,14931,"{'type': 'Point', 'coordinates': (-79.38314772, 43.64033919)}"
-14998,19875,GO-20159008069,THEFT UNDER,2015-09-03T00:00:00,2015,September,Thursday,3,246,10,2015-10-03T00:00:00,2015,October,Saturday,3,276,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,HARDROCK,MT,21,BLK,300.0,STOLEN,14932,"{'type': 'Point', 'coordinates': (-79.37592426, 43.64265734000001)}"
-14999,19885,GO-20159010823,THEFT UNDER,2015-12-11T00:00:00,2015,December,Friday,11,345,16,2015-12-11T00:00:00,2015,December,Friday,11,345,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,INDIE 4,RG,24,BLK,300.0,STOLEN,14933,"{'type': 'Point', 'coordinates': (-79.39410409, 43.64705106)}"
-15000,19891,GO-2016430509,THEFT OVER,2016-02-29T00:00:00,2016,February,Monday,29,60,8,2016-03-12T00:00:00,2016,March,Saturday,12,72,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SCOTT,SPARK,MT,10,BLK,5500.0,STOLEN,14934,"{'type': 'Point', 'coordinates': (-79.39388892, 43.64273773)}"
-15001,19892,GO-2016430509,THEFT OVER,2016-02-29T00:00:00,2016,February,Monday,29,60,8,2016-03-12T00:00:00,2016,March,Saturday,12,72,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SCOTT,ADDITT,OT,22,BLK,4000.0,STOLEN,14935,"{'type': 'Point', 'coordinates': (-79.39388892, 43.64273773)}"
-15002,19893,GO-2016430509,THEFT OVER,2016-02-29T00:00:00,2016,February,Monday,29,60,8,2016-03-12T00:00:00,2016,March,Saturday,12,72,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN,UNKNOWN,OT,1,BLK,400.0,STOLEN,14936,"{'type': 'Point', 'coordinates': (-79.39388892, 43.64273773)}"
-15003,19894,GO-2016442636,THEFT UNDER,2016-02-26T00:00:00,2016,February,Friday,26,57,18,2016-03-14T00:00:00,2016,March,Monday,14,74,12,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,,MT,21,GRY,150.0,STOLEN,14937,"{'type': 'Point', 'coordinates': (-79.39153656, 43.64758619)}"
-15004,19895,GO-2016487572,THEFT UNDER - BICYCLE,2016-02-01T00:00:00,2016,February,Monday,1,32,18,2016-03-21T00:00:00,2016,March,Monday,21,81,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GARY FISHER,WHAHOO,MT,12,BLKWHI,300.0,STOLEN,14938,"{'type': 'Point', 'coordinates': (-79.39124574, 43.64342012)}"
-15005,19898,GO-20169003463,THEFT UNDER - BICYCLE,2016-04-16T00:00:00,2016,April,Saturday,16,107,9,2016-04-16T00:00:00,2016,April,Saturday,16,107,16,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,SLC SL,RC,20,BLK,2500.0,STOLEN,14939,"{'type': 'Point', 'coordinates': (-79.38275181, 43.64263544000001)}"
-15006,19901,GO-2016753883,THEFT UNDER - BICYCLE,2016-05-02T00:00:00,2016,May,Monday,2,123,18,2016-05-02T00:00:00,2016,May,Monday,2,123,23,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DEVINCI,,MT,10,SIL,600.0,STOLEN,14940,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-15007,19906,GO-20169004685,THEFT UNDER,2016-05-18T00:00:00,2016,May,Wednesday,18,139,8,2016-05-19T00:00:00,2016,May,Thursday,19,140,10,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,,MT,21,BLK,420.0,STOLEN,14941,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-15008,19910,GO-20169004987,THEFT UNDER,2016-05-24T00:00:00,2016,May,Tuesday,24,145,20,2016-05-26T00:00:00,2016,May,Thursday,26,147,13,D52,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,OT,SIRRUS XL FRAME,RG,24,BLK,650.0,STOLEN,14942,"{'type': 'Point', 'coordinates': (-79.38015971, 43.63996312)}"
-15009,19915,GO-20169005701,THEFT UNDER - BICYCLE,2016-06-12T00:00:00,2016,June,Sunday,12,164,18,2016-06-13T00:00:00,2016,June,Monday,13,165,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,2013,MT,24,SIL,1000.0,STOLEN,14943,"{'type': 'Point', 'coordinates': (-79.38542345, 43.63902804)}"
-15010,19916,GO-20169005858,THEFT UNDER,2016-06-15T00:00:00,2016,June,Wednesday,15,167,16,2016-06-16T00:00:00,2016,June,Thursday,16,168,2,D52,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,KO,,RC,1,BLK,900.0,STOLEN,14944,"{'type': 'Point', 'coordinates': (-79.39105358, 43.64631528)}"
-15011,19918,GO-20169006107,THEFT UNDER,2016-06-20T00:00:00,2016,June,Monday,20,172,17,2016-06-21T00:00:00,2016,June,Tuesday,21,173,10,D52,Toronto,77,Waterfront Communities-The Island (77),Unknown,Other,UK,RAPTOR,EL,32,BLK,1000.0,STOLEN,14945,"{'type': 'Point', 'coordinates': (-79.38867784, 43.64396864)}"
-15012,19920,GO-20161081609,THEFT UNDER - BICYCLE,2016-06-16T00:00:00,2016,June,Thursday,16,168,9,2016-06-21T00:00:00,2016,June,Tuesday,21,173,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,ESCAPE RX,TO,12,BLKLBL,1197.0,STOLEN,14946,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-15013,19924,GO-20169007244,THEFT UNDER,2016-07-14T00:00:00,2016,July,Thursday,14,196,12,2016-07-15T00:00:00,2016,July,Friday,15,197,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,,OT,18,BLK,800.0,STOLEN,14947,"{'type': 'Point', 'coordinates': (-79.38552201, 43.64605338)}"
-15014,19925,GO-20169007360,THEFT UNDER,2016-07-16T00:00:00,2016,July,Saturday,16,198,12,2016-07-18T00:00:00,2016,July,Monday,18,200,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,MICRO SUSPENSIO,SC,1,GLD,330.0,STOLEN,14948,"{'type': 'Point', 'coordinates': (-79.38994752, 43.64370303)}"
-15015,19940,GO-20161568803,THEFT UNDER - BICYCLE,2016-09-04T00:00:00,2016,September,Sunday,4,248,9,2016-09-04T00:00:00,2016,September,Sunday,4,248,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,RALEIGH,,MT,20,BLK,500.0,STOLEN,14949,"{'type': 'Point', 'coordinates': (-79.39153656, 43.64758619)}"
-15016,20015,GO-20199007919,B&E,2019-03-11T00:00:00,2019,March,Monday,11,70,15,2019-03-11T00:00:00,2019,March,Monday,11,70,17,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,NO,,RG,20,BLK,0.0,STOLEN,14965,"{'type': 'Point', 'coordinates': (-79.37524509, 43.64636121)}"
-15017,19941,GO-20161568803,THEFT UNDER - BICYCLE,2016-09-04T00:00:00,2016,September,Sunday,4,248,9,2016-09-04T00:00:00,2016,September,Sunday,4,248,9,D52,Toronto,77,Waterfront Communities-The Island (77),"Open Areas (Lakes, Parks, Rivers)",Outside,DIAMONDBACK,,MT,20,,500.0,STOLEN,14950,"{'type': 'Point', 'coordinates': (-79.39153656, 43.64758619)}"
-15018,19948,GO-20169011903,THEFT UNDER,2016-10-11T00:00:00,2016,October,Tuesday,11,285,13,2016-10-11T00:00:00,2016,October,Tuesday,11,285,18,D52,Toronto,77,Waterfront Communities-The Island (77),Go Station,Transit,SC,"26""""",MT,21,WHI,260.0,STOLEN,14951,"{'type': 'Point', 'coordinates': (-79.37646324, 43.64578351)}"
-15019,19954,GO-20169013363,THEFT UNDER,2016-11-13T00:00:00,2016,November,Sunday,13,318,17,2016-11-13T00:00:00,2016,November,Sunday,13,318,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SU,,OT,5,LGR,350.0,STOLEN,14952,"{'type': 'Point', 'coordinates': (-79.38091602, 43.64168463)}"
-15020,19955,GO-20162063717,B&E,2016-11-14T00:00:00,2016,November,Monday,14,319,12,2016-11-20T00:00:00,2016,November,Sunday,20,325,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TREK,,MT,12,LGR,1100.0,STOLEN,14953,"{'type': 'Point', 'coordinates': (-79.38314772, 43.64033919)}"
-15021,19958,GO-20169014590,THEFT UNDER - BICYCLE,2016-12-05T00:00:00,2016,December,Monday,5,340,7,2016-12-12T00:00:00,2016,December,Monday,12,347,12,D52,Toronto,77,Waterfront Communities-The Island (77),Go Station,Transit,OT,CRUISER,RG,60,LBL,500.0,STOLEN,14954,"{'type': 'Point', 'coordinates': (-79.37646324, 43.64578351)}"
-15022,19959,GO-20169014787,THEFT UNDER - BICYCLE,2016-12-08T00:00:00,2016,December,Thursday,8,343,18,2016-12-17T00:00:00,2016,December,Saturday,17,352,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,NORCO,RG,21,GRY,400.0,STOLEN,14955,"{'type': 'Point', 'coordinates': (-79.38275181, 43.64263544000001)}"
-15023,19963,GO-20179000860,THEFT UNDER - BICYCLE,2017-01-18T00:00:00,2017,January,Wednesday,18,18,5,2017-01-19T00:00:00,2017,January,Thursday,19,19,21,D52,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,FJ,ABSOLUTE,RG,18,GRY,761.0,STOLEN,14956,"{'type': 'Point', 'coordinates': (-79.39592984, 43.64780696)}"
-15024,19967,GO-2017337695,THEFT UNDER - BICYCLE,2017-02-04T00:00:00,2017,February,Saturday,4,35,0,2017-02-23T00:00:00,2017,February,Thursday,23,54,11,D52,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,STORM,MT,24,GRY,600.0,STOLEN,14957,"{'type': 'Point', 'coordinates': (-79.38363997, 43.64159187)}"
-15025,19969,GO-20161970257,THEFT UNDER,2016-11-05T00:00:00,2016,November,Saturday,5,310,18,2016-11-05T00:00:00,2016,November,Saturday,5,310,19,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,XCALIBER,MT,27,ONG,1000.0,STOLEN,14958,"{'type': 'Point', 'coordinates': (-79.37787283, 43.64321708)}"
-15026,19974,GO-2017664702,THEFT UNDER - BICYCLE,2017-04-15T00:00:00,2017,April,Saturday,15,105,16,2017-04-15T00:00:00,2017,April,Saturday,15,105,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,FUEL,MT,18,BLU,2000.0,STOLEN,14959,"{'type': 'Point', 'coordinates': (-79.38542345, 43.63902804)}"
-15027,19975,GO-20179004924,THEFT UNDER - BICYCLE,2017-04-18T00:00:00,2017,April,Tuesday,18,108,23,2017-04-19T00:00:00,2017,April,Wednesday,19,109,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,RG,21,GRY,500.0,STOLEN,14960,"{'type': 'Point', 'coordinates': (-79.3881121, 43.64696458)}"
-15028,19991,GO-20189034788,THEFT OVER - BICYCLE,2018-10-18T00:00:00,2018,October,Thursday,18,291,1,2018-10-19T00:00:00,2018,October,Friday,19,292,19,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,12,BLK,5000.0,STOLEN,14961,"{'type': 'Point', 'coordinates': (-79.37146354, 43.64763677)}"
-15029,19992,GO-20189034788,THEFT OVER - BICYCLE,2018-10-18T00:00:00,2018,October,Thursday,18,291,1,2018-10-19T00:00:00,2018,October,Friday,19,292,19,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,TREK,MT,12,,2500.0,STOLEN,14962,"{'type': 'Point', 'coordinates': (-79.37146354, 43.64763677)}"
-15030,19998,GO-20189037842,THEFT UNDER - BICYCLE,2018-11-04T00:00:00,2018,November,Sunday,4,308,6,2018-11-12T00:00:00,2018,November,Monday,12,316,10,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,TR,7.3 FX,OT,18,RED,1000.0,STOLEN,14963,"{'type': 'Point', 'coordinates': (-79.3621013, 43.65019711)}"
-15031,20013,GO-20199004992,THEFT UNDER - BICYCLE,2018-11-01T00:00:00,2018,November,Thursday,1,305,0,2019-02-09T00:00:00,2019,February,Saturday,9,40,22,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,4,DGR,1000.0,STOLEN,14964,"{'type': 'Point', 'coordinates': (-79.36388253000001, 43.64495966)}"
-15032,20034,GO-20199018033,THEFT UNDER,2019-06-08T00:00:00,2019,June,Saturday,8,159,17,2019-06-10T00:00:00,2019,June,Monday,10,161,11,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,,MT,12,WHI,2000.0,STOLEN,14966,"{'type': 'Point', 'coordinates': (-79.3621013, 43.65019711)}"
-15033,20035,GO-20191098876,THEFT OF EBIKE UNDER $5000,2019-06-14T00:00:00,2019,June,Friday,14,165,13,2019-06-14T00:00:00,2019,June,Friday,14,165,13,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MERCEDES,,EL,1,WHI,2000.0,STOLEN,14967,"{'type': 'Point', 'coordinates': (-79.37401755, 43.64457237)}"
-15034,20054,GO-20199021723,THEFT UNDER,2019-06-21T00:00:00,2019,June,Friday,21,172,4,2019-07-10T00:00:00,2019,July,Wednesday,10,191,14,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,,OT,1,,0.0,STOLEN,14968,"{'type': 'Point', 'coordinates': (-79.35677669, 43.6529262)}"
-15035,20138,GO-20149002654,THEFT UNDER,2014-04-08T00:00:00,2014,April,Tuesday,8,98,10,2014-04-09T00:00:00,2014,April,Wednesday,9,99,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,BLADE 3.0,TO,24,WHI,850.0,STOLEN,14969,"{'type': 'Point', 'coordinates': (-79.38268501, 43.63950457)}"
-15036,20142,GO-20149002867,THEFT UNDER,2014-04-09T00:00:00,2014,April,Wednesday,9,99,8,2014-04-15T00:00:00,2014,April,Tuesday,15,105,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,29956,RC,27,BLK,,STOLEN,14970,"{'type': 'Point', 'coordinates': (-79.38994752, 43.64370303)}"
-15037,20150,GO-20142170864,THEFT UNDER,2014-05-25T00:00:00,2014,May,Sunday,25,145,15,2014-05-28T00:00:00,2014,May,Wednesday,28,148,15,D52,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT 11,SEDONA,TO,11,SIL,625.0,STOLEN,14971,"{'type': 'Point', 'coordinates': (-79.37680124, 43.64115206)}"
-15038,20160,GO-20149004179,THEFT UNDER,2014-06-17T00:00:00,2014,June,Tuesday,17,168,15,2014-06-17T00:00:00,2014,June,Tuesday,17,168,18,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KO,CINDERCONE,MT,12,GRY,1500.0,STOLEN,14972,"{'type': 'Point', 'coordinates': (-79.38864414, 43.64819947)}"
-15039,20164,GO-20149004392,THEFT UNDER,2014-06-21T00:00:00,2014,June,Saturday,21,172,11,2014-06-23T00:00:00,2014,June,Monday,23,174,13,D52,Toronto,77,Waterfront Communities-The Island (77),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,GF,MARLIN,MT,24,YEL,300.0,STOLEN,14973,"{'type': 'Point', 'coordinates': (-79.38867784, 43.64396864)}"
-15040,20177,GO-20179007080,THEFT UNDER,2017-05-27T00:00:00,2017,May,Saturday,27,147,10,2017-05-27T00:00:00,2017,May,Saturday,27,147,13,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,RC,25,RED,1000.0,STOLEN,14974,"{'type': 'Point', 'coordinates': (-79.35677669, 43.6529262)}"
-15041,20178,GO-20179007433,THEFT UNDER - BICYCLE,2017-06-03T00:00:00,2017,June,Saturday,3,154,10,2017-06-03T00:00:00,2017,June,Saturday,3,154,12,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,25,,2000.0,STOLEN,14975,"{'type': 'Point', 'coordinates': (-79.35677669, 43.6529262)}"
-15042,20191,GO-20171079810,THEFT UNDER - BICYCLE,2017-06-16T00:00:00,2017,June,Friday,16,167,15,2017-06-17T00:00:00,2017,June,Saturday,17,168,11,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,FALLOUT/WICKED,OT,24,BLK,300.0,STOLEN,14976,"{'type': 'Point', 'coordinates': (-79.37327274, 43.64725689)}"
-15043,20207,GO-20179010464,THEFT UNDER,2017-07-18T00:00:00,2017,July,Tuesday,18,199,1,2017-07-18T00:00:00,2017,July,Tuesday,18,199,12,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,KH,900 FLITE,RC,20,BLK,3000.0,STOLEN,14977,"{'type': 'Point', 'coordinates': (-79.37146354, 43.64763677)}"
-15044,20216,GO-20179011904,THEFT UNDER - BICYCLE,2017-07-31T00:00:00,2017,July,Monday,31,212,11,2017-08-08T00:00:00,2017,August,Tuesday,8,220,12,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,2016 HYBRID,OT,3,BLK,1017.0,STOLEN,14978,"{'type': 'Point', 'coordinates': (-79.36607348, 43.64932911)}"
-15045,20224,GO-20171483474,THEFT OF MOTOR VEHICLE,2017-08-16T00:00:00,2017,August,Wednesday,16,228,23,2017-08-17T00:00:00,2017,August,Thursday,17,229,2,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CANNONDALE,,RC,0,BLK,,STOLEN,14979,"{'type': 'Point', 'coordinates': (-79.37230961, 43.64497944)}"
-15046,20229,GO-20179013178,THEFT UNDER - BICYCLE,2017-08-22T00:00:00,2017,August,Tuesday,22,234,11,2017-08-23T00:00:00,2017,August,Wednesday,23,235,21,D51,Toronto,77,Waterfront Communities-The Island (77),Bar / Restaurant,Commercial,RA,,RG,1,RED,0.0,STOLEN,14980,"{'type': 'Point', 'coordinates': (-79.35931384000001, 43.6498108)}"
-15047,20243,GO-20179015564,THEFT UNDER - BICYCLE,2017-09-22T00:00:00,2017,September,Friday,22,265,0,2017-09-23T00:00:00,2017,September,Saturday,23,266,15,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,18,WHI,1500.0,STOLEN,14981,"{'type': 'Point', 'coordinates': (-79.37146354, 43.64763677)}"
-15048,20254,GO-20179016829,THEFT UNDER - BICYCLE,2017-10-07T00:00:00,2017,October,Saturday,7,280,8,2017-10-10T00:00:00,2017,October,Tuesday,10,283,8,D51,Toronto,77,Waterfront Communities-The Island (77),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SECTEUR,RC,12,SIL,1000.0,STOLEN,14982,"{'type': 'Point', 'coordinates': (-79.36480764, 43.64809796)}"
-15049,20255,GO-20179016829,THEFT UNDER - BICYCLE,2017-10-07T00:00:00,2017,October,Saturday,7,280,8,2017-10-10T00:00:00,2017,October,Tuesday,10,283,8,D51,Toronto,77,Waterfront Communities-The Island (77),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,,RG,12,PLE,500.0,STOLEN,14983,"{'type': 'Point', 'coordinates': (-79.36480764, 43.64809796)}"
-15050,20267,GO-20179018357,THEFT UNDER - BICYCLE,2017-10-22T00:00:00,2017,October,Sunday,22,295,14,2017-10-27T00:00:00,2017,October,Friday,27,300,18,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,1,BLU,300.0,STOLEN,14984,"{'type': 'Point', 'coordinates': (-79.37027555, 43.64981872)}"
-15051,20270,GO-20171997977,B&E,2017-10-23T00:00:00,2017,October,Monday,23,296,0,2017-11-04T00:00:00,2017,November,Saturday,4,308,13,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GIANT,,RG,14,WHIRED,4000.0,STOLEN,14985,"{'type': 'Point', 'coordinates': (-79.37646324, 43.64578351)}"
-15052,20277,GO-20179021054,THEFT UNDER - BICYCLE,2017-12-01T00:00:00,2017,December,Friday,1,335,20,2017-12-01T00:00:00,2017,December,Friday,1,335,21,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,MT,15,GRY,1500.0,STOLEN,14986,"{'type': 'Point', 'coordinates': (-79.35677669, 43.6529262)}"
-15053,20281,GO-20179021396,THEFT UNDER - BICYCLE,2017-12-05T00:00:00,2017,December,Tuesday,5,339,9,2017-12-05T00:00:00,2017,December,Tuesday,5,339,19,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KO,EXPLOSIF,MT,1,BLU,750.0,STOLEN,14987,"{'type': 'Point', 'coordinates': (-79.37401755, 43.64457237)}"
-15054,20310,GO-20189017732,THEFT UNDER - BICYCLE,2018-06-07T00:00:00,2018,June,Thursday,7,158,8,2018-06-07T00:00:00,2018,June,Thursday,7,158,10,D51,Toronto,77,Waterfront Communities-The Island (77),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,ESCAPE,RG,21,BLK,850.0,STOLEN,14988,"{'type': 'Point', 'coordinates': (-79.36183585, 43.64956942)}"
-15055,20311,GO-20181037579,B&E W'INTENT,2018-06-07T00:00:00,2018,June,Thursday,7,158,6,2018-06-08T00:00:00,2018,June,Friday,8,159,10,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,21,BLK,850.0,STOLEN,14989,"{'type': 'Point', 'coordinates': (-79.36183585, 43.64956942)}"
-15056,20314,GO-20189018168,THEFT UNDER - BICYCLE,2018-06-08T00:00:00,2018,June,Friday,8,159,17,2018-06-11T00:00:00,2018,June,Monday,11,162,8,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,GI,BOULDER SE,MT,21,RED,200.0,STOLEN,14990,"{'type': 'Point', 'coordinates': (-79.35677669, 43.6529262)}"
-15057,20320,GO-20189019748,THEFT UNDER - BICYCLE,2018-06-01T00:00:00,2018,June,Friday,1,152,9,2018-06-22T00:00:00,2018,June,Friday,22,173,8,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,1,BLK,300.0,STOLEN,14991,"{'type': 'Point', 'coordinates': (-79.35677669, 43.6529262)}"
-15058,20329,GO-20181275429,THEFT UNDER - BICYCLE,2018-06-30T00:00:00,2018,June,Saturday,30,181,19,2018-07-13T00:00:00,2018,July,Friday,13,194,8,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,RG,1,GRYBLK,,STOLEN,14992,"{'type': 'Point', 'coordinates': (-79.37524509, 43.64636121)}"
-15059,20360,GO-20189028228,THEFT UNDER - BICYCLE,2018-08-25T00:00:00,2018,August,Saturday,25,237,17,2018-08-28T00:00:00,2018,August,Tuesday,28,240,10,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,SU,,MT,21,OTH,200.0,STOLEN,14993,"{'type': 'Point', 'coordinates': (-79.35677669, 43.6529262)}"
-15060,13082,GO-20179012153,THEFT UNDER - BICYCLE,2017-08-11T00:00:00,2017,August,Friday,11,223,1,2017-08-11T00:00:00,2017,August,Friday,11,223,2,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,CC,,RC,10,,250.0,STOLEN,15001,"{'type': 'Point', 'coordinates': (-79.39225095, 43.656266970000004)}"
-15061,20385,GO-20159003079,THEFT UNDER,2015-05-22T00:00:00,2015,May,Friday,22,142,14,2015-05-25T00:00:00,2015,May,Monday,25,145,17,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,HSM 312,EL,32,BLK,900.0,RECOVERED,14994,"{'type': 'Point', 'coordinates': (-79.37327274, 43.64725689)}"
-15062,20417,GO-20151261771,THEFT UNDER,2015-03-01T00:00:00,2015,March,Sunday,1,60,0,2015-07-24T00:00:00,2015,July,Friday,24,205,11,D51,Toronto,77,Waterfront Communities-The Island (77),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,EL,0,BLUWHI,1200.0,STOLEN,14995,"{'type': 'Point', 'coordinates': (-79.37146354, 43.64763677)}"
-15063,20420,GO-20159004993,THEFT UNDER,2015-07-21T00:00:00,2015,July,Tuesday,21,202,9,2015-07-26T00:00:00,2015,July,Sunday,26,207,0,D51,Toronto,77,Waterfront Communities-The Island (77),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,GIANT VIA 2,RG,5,CPR,600.0,STOLEN,14996,"{'type': 'Point', 'coordinates': (-79.35931384000001, 43.6498108)}"
-15064,20425,GO-20159005598,THEFT UNDER,2015-06-26T00:00:00,2015,June,Friday,26,177,17,2015-08-10T00:00:00,2015,August,Monday,10,222,18,D51,Toronto,77,Waterfront Communities-The Island (77),"Apartment (Rooming House, Condo)",Apartment,OT,SIBELIUS,RC,10,MRN,1500.0,STOLEN,14997,"{'type': 'Point', 'coordinates': (-79.37524509, 43.64636121)}"
-15065,12856,GO-20162181976,THEFT UNDER - BICYCLE,2016-12-05T00:00:00,2016,December,Monday,5,340,14,2016-12-09T00:00:00,2016,December,Friday,9,344,10,D14,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,TREK,ALLANT,OT,21,BLKSIL,800.0,STOLEN,14998,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-15066,13072,GO-20179010441,THEFT UNDER,2017-07-16T00:00:00,2017,July,Sunday,16,197,17,2017-07-17T00:00:00,2017,July,Monday,17,198,22,D52,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,TR,TREK MULTITRACK,MT,1,YEL,0.0,STOLEN,14999,"{'type': 'Point', 'coordinates': (-79.39095898, 43.65603534)}"
-15067,13077,GO-20179011067,THEFT UNDER - BICYCLE,2017-07-25T00:00:00,2017,July,Tuesday,25,206,15,2017-07-26T00:00:00,2017,July,Wednesday,26,207,14,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,ESCAPE 2 CITY,RG,24,GRY,600.0,STOLEN,15000,"{'type': 'Point', 'coordinates': (-79.38918474, 43.65468421)}"
-15068,13097,GO-20171622326,THEFT UNDER - BICYCLE,2017-09-03T00:00:00,2017,September,Sunday,3,246,14,2017-09-07T00:00:00,2017,September,Thursday,7,250,18,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,,OT,0,ONG,300.0,STOLEN,15003,"{'type': 'Point', 'coordinates': (-79.39634181, 43.64876464)}"
-15069,13104,GO-20179015429,THEFT UNDER - BICYCLE,2017-09-21T00:00:00,2017,September,Thursday,21,264,18,2017-09-22T00:00:00,2017,September,Friday,22,265,1,D52,Toronto,78,Kensington-Chinatown (78),Bar / Restaurant,Commercial,CA,2016 QUICK CX 5,MT,8,GRY,750.0,STOLEN,15004,"{'type': 'Point', 'coordinates': (-79.39760519, 43.65187627)}"
-15070,24849,GO-2015714987,THEFT UNDER,2015-04-30T00:00:00,2015,April,Thursday,30,120,5,2015-04-30T00:00:00,2015,April,Thursday,30,120,12,D52,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,REGAL,KING MIDAS,OT,1,BLKGLD,400.0,STOLEN,15005,"{'type': 'Point', 'coordinates': (-79.39692918, 43.65528489)}"
-15071,13105,GO-20179015436,THEFT UNDER - BICYCLE,2017-09-19T00:00:00,2017,September,Tuesday,19,262,21,2017-09-22T00:00:00,2017,September,Friday,22,265,9,D52,Toronto,78,Kensington-Chinatown (78),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,CA,R600,RC,21,RED,400.0,STOLEN,15006,"{'type': 'Point', 'coordinates': (-79.39339759, 43.65276389)}"
-15072,13110,GO-20179016157,THEFT UNDER - BICYCLE,2017-09-30T00:00:00,2017,September,Saturday,30,273,1,2017-09-30T00:00:00,2017,September,Saturday,30,273,12,D52,Toronto,78,Kensington-Chinatown (78),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KH,URBAN SOUL,RG,1,BLK,450.0,STOLEN,15007,"{'type': 'Point', 'coordinates': (-79.39360486, 43.65068718)}"
-15073,13114,GO-20179016819,THEFT UNDER,2017-10-04T00:00:00,2017,October,Wednesday,4,277,23,2017-10-10T00:00:00,2017,October,Tuesday,10,283,0,D52,Toronto,78,Kensington-Chinatown (78),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,,,MT,21,,300.0,STOLEN,15008,"{'type': 'Point', 'coordinates': (-79.39095898, 43.65603534)}"
-15074,13131,GO-20179021510,THEFT UNDER - BICYCLE,2017-11-29T00:00:00,2017,November,Wednesday,29,333,2,2017-12-06T00:00:00,2017,December,Wednesday,6,340,17,D52,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,GI,ESCAPE 3,RG,21,GRY,587.0,STOLEN,15009,"{'type': 'Point', 'coordinates': (-79.38944954, 43.65752945)}"
-15075,13135,GO-20173197617,THEFT UNDER - BICYCLE,2017-12-09T00:00:00,2017,December,Saturday,9,343,8,2017-12-14T00:00:00,2017,December,Thursday,14,348,21,D52,Toronto,78,Kensington-Chinatown (78),"Private Property Structure (Pool, Shed, Detached Garage)",Other,STUMY ARCHER,GLIDERS,RG,3,GRN,300.0,STOLEN,15010,"{'type': 'Point', 'coordinates': (-79.3938201, 43.65382278)}"
-15076,13151,GO-2018791577,THEFT OF EBIKE UNDER $5000,2018-05-02T00:00:00,2018,May,Wednesday,2,122,11,2018-05-03T00:00:00,2018,May,Thursday,3,123,8,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,EBIKE,EL,6,GRY,1500.0,STOLEN,15011,"{'type': 'Point', 'coordinates': (-79.38855904, 43.6554654)}"
-15077,13158,GO-2018914856,B&E,2018-05-21T00:00:00,2018,May,Monday,21,141,13,2018-05-21T00:00:00,2018,May,Monday,21,141,13,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNK,UNK,RG,0,,,STOLEN,15012,"{'type': 'Point', 'coordinates': (-79.39659876, 43.64943643)}"
-15078,12710,GO-20161950978,THEFT UNDER - BICYCLE,2016-10-22T00:00:00,2016,October,Saturday,22,296,15,2016-11-02T00:00:00,2016,November,Wednesday,2,307,18,D52,Toronto,79,University (79),Universities / Colleges,Educational,SUPERCYCLE,,OT,0,GRN,140.0,STOLEN,15013,"{'type': 'Point', 'coordinates': (-79.39815878000002, 43.65826015)}"
-15079,13159,GO-2018914856,B&E,2018-05-21T00:00:00,2018,May,Monday,21,141,13,2018-05-21T00:00:00,2018,May,Monday,21,141,13,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN,UNK,RG,0,,,STOLEN,15014,"{'type': 'Point', 'coordinates': (-79.39659876, 43.64943643)}"
-15080,13163,GO-20189016895,THEFT UNDER,2018-05-24T00:00:00,2018,May,Thursday,24,144,20,2018-05-31T00:00:00,2018,May,Thursday,31,151,10,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,GTX-2 MEN'S HYB,RG,21,BLK,200.0,STOLEN,15015,"{'type': 'Point', 'coordinates': (-79.39387167, 43.65067314)}"
-15081,13166,GO-20189018381,THEFT UNDER,2018-06-11T00:00:00,2018,June,Monday,11,162,23,2018-06-12T00:00:00,2018,June,Tuesday,12,163,12,D52,Toronto,78,Kensington-Chinatown (78),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,RG,15,BRN,0.0,STOLEN,15016,"{'type': 'Point', 'coordinates': (-79.39628172000002, 43.65672386)}"
-15082,90,GO-20179001855,THEFT UNDER - BICYCLE,2017-02-05T00:00:00,2017,February,Sunday,5,36,12,2017-02-12T00:00:00,2017,February,Sunday,12,43,13,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,18,GRY,600.0,STOLEN,15157,"{'type': 'Point', 'coordinates': (-79.39488188, 43.66100963)}"
-15083,13167,GO-20189019001,THEFT UNDER - BICYCLE,2018-06-15T00:00:00,2018,June,Friday,15,166,12,2018-06-16T00:00:00,2018,June,Saturday,16,167,22,D52,Toronto,78,Kensington-Chinatown (78),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,RA,DETOUR 4.5,RG,24,DBL,200.0,STOLEN,15017,"{'type': 'Point', 'coordinates': (-79.39161243, 43.65119665)}"
-15084,13174,GO-20189020391,THEFT UNDER - BICYCLE,2018-06-10T00:00:00,2018,June,Sunday,10,161,10,2018-06-26T00:00:00,2018,June,Tuesday,26,177,21,D52,Toronto,78,Kensington-Chinatown (78),Convenience Stores,Commercial,UK,SPECIALIZED,MT,8,BLK,0.0,STOLEN,15018,"{'type': 'Point', 'coordinates': (-79.3938201, 43.65382278)}"
-15085,13180,GO-20189021987,THEFT UNDER - BICYCLE,2018-07-09T00:00:00,2018,July,Monday,9,190,9,2018-07-11T00:00:00,2018,July,Wednesday,11,192,13,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,SCORCHER,MT,18,BLU,0.0,STOLEN,15019,"{'type': 'Point', 'coordinates': (-79.38918474, 43.65468421)}"
-15086,13181,GO-20189022090,THEFT UNDER,2018-07-10T00:00:00,2018,July,Tuesday,10,191,7,2018-07-11T00:00:00,2018,July,Wednesday,11,192,18,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SIRRUS,OT,21,WHI,720.0,STOLEN,15020,"{'type': 'Point', 'coordinates': (-79.39045505, 43.65985872)}"
-15087,13182,GO-20189022209,THEFT UNDER,2018-07-12T00:00:00,2018,July,Thursday,12,193,14,2018-07-12T00:00:00,2018,July,Thursday,12,193,19,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,2018 ALIGHT 3,RC,21,BLK,588.0,STOLEN,15021,"{'type': 'Point', 'coordinates': (-79.38918474, 43.65468421)}"
-15088,17864,GO-20181338474,THEFT UNDER - BICYCLE,2018-07-21T00:00:00,2018,July,Saturday,21,202,14,2018-07-22T00:00:00,2018,July,Sunday,22,203,12,D14,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OTHER,MOUNTAIN,MT,0,GRYSIL,75.0,STOLEN,15022,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-15089,13189,GO-20189024997,THEFT UNDER - BICYCLE,2018-07-26T00:00:00,2018,July,Thursday,26,207,20,2018-08-03T00:00:00,2018,August,Friday,3,215,12,D52,Toronto,78,Kensington-Chinatown (78),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,NO,,MT,18,SIL,0.0,STOLEN,15023,"{'type': 'Point', 'coordinates': (-79.3968449, 43.65006869)}"
-15090,13197,GO-20189027079,THEFT UNDER - BICYCLE,2018-08-19T00:00:00,2018,August,Sunday,19,231,12,2018-08-20T00:00:00,2018,August,Monday,20,232,10,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,UK,PROJEKT 8,RG,8,BLK,420.0,STOLEN,15024,"{'type': 'Point', 'coordinates': (-79.39699693, 43.65848407)}"
-15091,13206,GO-20189028734,THEFT UNDER - BICYCLE,2018-08-30T00:00:00,2018,August,Thursday,30,242,8,2018-08-31T00:00:00,2018,August,Friday,31,243,16,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KH,FLITE 100,RG,1,RED,700.0,STOLEN,15025,"{'type': 'Point', 'coordinates': (-79.39109731, 43.64989719)}"
-15092,13208,GO-20181631705,THEFT UNDER - BICYCLE,2018-08-29T00:00:00,2018,August,Wednesday,29,241,19,2018-09-03T00:00:00,2018,September,Monday,3,246,16,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,RG,1,BLK,1000.0,STOLEN,15026,"{'type': 'Point', 'coordinates': (-79.39136265, 43.65838682)}"
-15093,13209,GO-20181650502,B&E W'INTENT,2018-06-22T00:00:00,2018,June,Friday,22,173,18,2018-09-06T00:00:00,2018,September,Thursday,6,249,12,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,OTHER,NXR INSTINCT,RG,11,WHIRED,5500.0,STOLEN,15027,"{'type': 'Point', 'coordinates': (-79.3906274, 43.65241188)}"
-15094,13215,GO-20189030492,THEFT UNDER - BICYCLE,2018-09-14T00:00:00,2018,September,Friday,14,257,10,2018-09-14T00:00:00,2018,September,Friday,14,257,22,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE 2 MEDIUM,RG,16,BLK,400.0,STOLEN,15028,"{'type': 'Point', 'coordinates': (-79.38918474, 43.65468421)}"
-15095,13218,GO-20189031885,THEFT UNDER - BICYCLE,2018-09-20T00:00:00,2018,September,Thursday,20,263,21,2018-09-25T00:00:00,2018,September,Tuesday,25,268,17,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,INFINITE,EL,10,SIL,2300.0,STOLEN,15029,"{'type': 'Point', 'coordinates': (-79.4000091, 43.65794797)}"
-15096,13241,GO-20199011005,THEFT UNDER - BICYCLE,2019-04-07T00:00:00,2019,April,Sunday,7,97,20,2019-04-07T00:00:00,2019,April,Sunday,7,97,20,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,P04986,OT,3,GRN,1000.0,STOLEN,15030,"{'type': 'Point', 'coordinates': (-79.3938201, 43.65382278)}"
-15097,13262,GO-20199020810,THEFT UNDER,2019-06-30T00:00:00,2019,June,Sunday,30,181,0,2019-07-03T00:00:00,2019,July,Wednesday,3,184,9,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SU,EXCALIBUR,RC,7,BLU,150.0,STOLEN,15032,"{'type': 'Point', 'coordinates': (-79.39634181, 43.64876464)}"
-15098,13282,GO-201526537,THEFT UNDER,2015-01-05T00:00:00,2015,January,Monday,5,5,20,2015-01-05T00:00:00,2015,January,Monday,5,5,21,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,MOUNTAIN BIKE,MT,0,BLUYEL,300.0,STOLEN,15033,"{'type': 'Point', 'coordinates': (-79.38944954, 43.65752945)}"
-15099,13295,GO-20159002738,THEFT UNDER,2015-05-14T00:00:00,2015,May,Thursday,14,134,7,2015-05-14T00:00:00,2015,May,Thursday,14,134,18,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,7.3 FX,RG,27,BLK,700.0,STOLEN,15034,"{'type': 'Point', 'coordinates': (-79.38994423, 43.6587011)}"
-15100,13299,GO-20159002968,THEFT UNDER,2015-05-20T00:00:00,2015,May,Wednesday,20,140,18,2015-05-20T00:00:00,2015,May,Wednesday,20,140,23,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,F/N CC1AC428,TO,8,PNK,1000.0,STOLEN,15035,"{'type': 'Point', 'coordinates': (-79.3938201, 43.65382278)}"
-15101,13302,GO-2015906721,THEFT UNDER,2015-05-30T00:00:00,2015,May,Saturday,30,150,19,2015-05-30T00:00:00,2015,May,Saturday,30,150,21,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,NIJI ENDURANCE,MT,15,GRN,100.0,STOLEN,15036,"{'type': 'Point', 'coordinates': (-79.396125, 43.65334628)}"
-15102,13303,GO-2015914478,THEFT UNDER,2015-05-28T00:00:00,2015,May,Thursday,28,148,19,2015-06-01T00:00:00,2015,June,Monday,1,152,9,D52,Toronto,78,Kensington-Chinatown (78),Universities / Colleges,Educational,OTHER,EDGE,OT,1,BLK,870.0,STOLEN,15037,"{'type': 'Point', 'coordinates': (-79.3934451, 43.65919971)}"
-15103,13318,GO-20159004102,THEFT UNDER,2015-06-27T00:00:00,2015,June,Saturday,27,178,0,2015-07-02T00:00:00,2015,July,Thursday,2,183,13,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,IH,21 SPEED BIKE,MT,15,BLU,150.0,STOLEN,15038,"{'type': 'Point', 'coordinates': (-79.39692918, 43.65528489)}"
-15104,102,GO-2017338940,THEFT UNDER - BICYCLE,2017-02-15T00:00:00,2017,February,Wednesday,15,46,9,2017-02-23T00:00:00,2017,February,Thursday,23,54,14,D52,Toronto,79,University (79),Universities / Colleges,Educational,GT,,MT,0,,150.0,STOLEN,15158,"{'type': 'Point', 'coordinates': (-79.39894426, 43.66543776)}"
-15105,13320,GO-20159004231,THEFT UNDER,2015-07-06T00:00:00,2015,July,Monday,6,187,19,2015-07-06T00:00:00,2015,July,Monday,6,187,21,D52,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,TR,8.3 DS,OT,8,BLK,750.0,STOLEN,15039,"{'type': 'Point', 'coordinates': (-79.38994423, 43.6587011)}"
-15106,13322,GO-20159005071,THEFT UNDER,2015-07-27T00:00:00,2015,July,Monday,27,208,13,2015-07-27T00:00:00,2015,July,Monday,27,208,22,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,VFR 3 2015,RG,1,GRY,650.0,STOLEN,15040,"{'type': 'Point', 'coordinates': (-79.39512704, 43.65697223000001)}"
-15107,13324,GO-20159005385,THEFT UNDER,2015-08-05T00:00:00,2015,August,Wednesday,5,217,7,2015-08-06T00:00:00,2015,August,Thursday,6,218,9,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,18,BRN,0.0,STOLEN,15041,"{'type': 'Point', 'coordinates': (-79.39136265, 43.65838682)}"
-15108,13327,GO-20159005469,THEFT UNDER,2015-08-07T00:00:00,2015,August,Friday,7,219,16,2015-08-07T00:00:00,2015,August,Friday,7,219,18,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,OT,RAPTOR 500W+,EL,32,BLK,1000.0,STOLEN,15042,"{'type': 'Point', 'coordinates': (-79.39955207, 43.65674851)}"
-15109,13339,GO-20159007080,MISCHIEF UNDER,2015-09-11T00:00:00,2015,September,Friday,11,254,19,2015-09-12T00:00:00,2015,September,Saturday,12,255,11,D52,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,RG,1,,,STOLEN,15043,"{'type': 'Point', 'coordinates': (-79.39628172000002, 43.65672386)}"
-15110,13347,GO-20151942977,THEFT UNDER,2015-11-09T00:00:00,2015,November,Monday,9,313,20,2015-11-12T00:00:00,2015,November,Thursday,12,316,9,D52,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,SC,0,,2700.0,STOLEN,15044,"{'type': 'Point', 'coordinates': (-79.39512704, 43.65697223000001)}"
-15111,13364,GO-20169003407,THEFT UNDER,2016-04-13T00:00:00,2016,April,Wednesday,13,104,17,2016-04-14T00:00:00,2016,April,Thursday,14,105,20,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,CROSSTOWN,RG,21,DBL,0.0,STOLEN,15045,"{'type': 'Point', 'coordinates': (-79.38984563, 43.65622357)}"
-15112,13370,GO-20169003955,THEFT UNDER - BICYCLE,2016-04-28T00:00:00,2016,April,Thursday,28,119,23,2016-04-29T00:00:00,2016,April,Friday,29,120,16,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,18,BLK,200.0,STOLEN,15046,"{'type': 'Point', 'coordinates': (-79.39692918, 43.65528489)}"
-15113,13380,GO-20161023435,THEFT OF EBIKE UNDER $5000,2016-06-12T00:00:00,2016,June,Sunday,12,164,16,2016-06-12T00:00:00,2016,June,Sunday,12,164,17,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,TEV E-BIKE,EL,0,,1100.0,STOLEN,15048,"{'type': 'Point', 'coordinates': (-79.39495714, 43.65047451)}"
-15114,13382,GO-20169005856,THEFT UNDER,2016-05-27T00:00:00,2016,May,Friday,27,148,0,2016-06-15T00:00:00,2016,June,Wednesday,15,167,20,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,SU,,TO,18,LBL,300.0,STOLEN,15049,"{'type': 'Point', 'coordinates': (-79.3974349, 43.65650586)}"
-15115,13386,GO-20169006743,THEFT UNDER,2016-07-05T00:00:00,2016,July,Tuesday,5,187,9,2016-07-05T00:00:00,2016,July,Tuesday,5,187,11,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,RG,21,WHI,380.0,STOLEN,15050,"{'type': 'Point', 'coordinates': (-79.39300540000002, 43.6580369)}"
-15116,13422,GO-20169010962,THEFT UNDER,2016-09-21T00:00:00,2016,September,Wednesday,21,265,13,2016-09-23T00:00:00,2016,September,Friday,23,267,11,D52,Toronto,78,Kensington-Chinatown (78),Schools During Supervised Activity,Educational,EM,GT80,EL,32,BLK,2000.0,STOLEN,15051,"{'type': 'Point', 'coordinates': (-79.39495714, 43.65047451)}"
-15117,13440,GO-20179002076,THEFT UNDER - BICYCLE,2017-02-12T00:00:00,2017,February,Sunday,12,43,6,2017-02-16T00:00:00,2017,February,Thursday,16,47,22,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,T01194,OT,3,BLK,1200.0,STOLEN,15052,"{'type': 'Point', 'coordinates': (-79.39267446, 43.6510011)}"
-15118,13456,GO-20179006917,THEFT UNDER - BICYCLE,2017-05-24T00:00:00,2017,May,Wednesday,24,144,17,2017-05-24T00:00:00,2017,May,Wednesday,24,144,17,D52,Toronto,78,Kensington-Chinatown (78),Universities / Colleges,Educational,TR,,TO,18,SIL,500.0,STOLEN,15053,"{'type': 'Point', 'coordinates': (-79.3934451, 43.65919971)}"
-15119,13622,GO-20142351871,THEFT UNDER,2014-06-23T00:00:00,2014,June,Monday,23,174,8,2014-06-23T00:00:00,2014,June,Monday,23,174,18,D52,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,TREK,,MT,21,GRY,300.0,STOLEN,15054,"{'type': 'Point', 'coordinates': (-79.38984563, 43.65622357)}"
-15120,13635,GO-20149004968,THEFT UNDER,2014-07-12T00:00:00,2014,July,Saturday,12,193,9,2014-07-14T00:00:00,2014,July,Monday,14,195,9,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,,,RG,18,GLD,,STOLEN,15055,"{'type': 'Point', 'coordinates': (-79.3938201, 43.65382278)}"
-15121,13636,GO-20149005003,THEFT UNDER,2014-07-14T00:00:00,2014,July,Monday,14,195,19,2014-07-15T00:00:00,2014,July,Tuesday,15,196,12,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,J13 TRAIL X3,MT,21,SIL,600.0,STOLEN,15056,"{'type': 'Point', 'coordinates': (-79.39109731, 43.64989719)}"
-15122,13647,GO-20149005995,THEFT UNDER,2014-08-18T00:00:00,2014,August,Monday,18,230,20,2014-08-19T00:00:00,2014,August,Tuesday,19,231,8,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,,RG,15,PLE,0.0,STOLEN,15057,"{'type': 'Point', 'coordinates': (-79.39840623, 43.65389536)}"
-15123,13651,GO-20149006170,THEFT UNDER,2014-08-09T00:00:00,2014,August,Saturday,9,221,15,2014-08-21T00:00:00,2014,August,Thursday,21,233,11,D52,Toronto,78,Kensington-Chinatown (78),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RA,,RG,12,OTH,200.0,STOLEN,15058,"{'type': 'Point', 'coordinates': (-79.38855904, 43.6554654)}"
-15124,14266,GO-20201043992,THEFT UNDER,2020-06-06T00:00:00,2020,June,Saturday,6,158,21,2020-06-06T00:00:00,2020,June,Saturday,6,158,21,D14,Toronto,78,Kensington-Chinatown (78),Bar / Restaurant,Commercial,UNKNOWN,X10157/FW-H858,SC,15,BLK,500.0,STOLEN,15059,"{'type': 'Point', 'coordinates': (-79.40066945, 43.65476855)}"
-15125,14274,GO-20209016005,THEFT FROM MOTOR VEHICLE UNDER,2020-06-23T00:00:00,2020,June,Tuesday,23,175,20,2020-06-23T00:00:00,2020,June,Tuesday,23,175,22,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,1,BLU,500.0,STOLEN,15060,"{'type': 'Point', 'coordinates': (-79.40222699, 43.65202883)}"
-15126,14304,GO-20201624134,THEFT OF EBIKE UNDER $5000,2020-08-28T00:00:00,2020,August,Friday,28,241,16,2020-08-28T00:00:00,2020,August,Friday,28,241,16,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MCN,MOSCOW,EL,1,BLKBLU,2400.0,STOLEN,15061,"{'type': 'Point', 'coordinates': (-79.39775289, 43.65225944)}"
-15127,14318,GO-20201747753,B&E,2020-09-15T00:00:00,2020,September,Tuesday,15,259,0,2020-09-15T00:00:00,2020,September,Tuesday,15,259,11,D14,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,SERENGETTI,MT,21,BLK,50.0,STOLEN,15062,"{'type': 'Point', 'coordinates': (-79.40163448, 43.64916975)}"
-15128,14340,GO-20209029853,THEFT UNDER,2020-11-17T00:00:00,2020,November,Tuesday,17,322,0,2020-11-17T00:00:00,2020,November,Tuesday,17,322,15,D14,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,TRAIL-X,MT,21,WHI,400.0,STOLEN,15063,"{'type': 'Point', 'coordinates': (-79.40264521, 43.65609187)}"
-15129,14452,GO-20189028122,THEFT UNDER - BICYCLE,2018-08-26T00:00:00,2018,August,Sunday,26,238,0,2018-08-27T00:00:00,2018,August,Monday,27,239,13,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,NO,,RG,3,PLE,300.0,STOLEN,15064,"{'type': 'Point', 'coordinates': (-79.4028699, 43.65308806)}"
-15130,14465,GO-20189034025,THEFT UNDER - BICYCLE,2018-10-14T00:00:00,2018,October,Sunday,14,287,23,2018-10-15T00:00:00,2018,October,Monday,15,288,1,D14,Toronto,78,Kensington-Chinatown (78),Bar / Restaurant,Commercial,GI,ROAM 0,RG,10,BLK,1240.0,STOLEN,15065,"{'type': 'Point', 'coordinates': (-79.39737512, 43.64853707)}"
-15131,14478,GO-20189038552,THEFT UNDER - BICYCLE,2018-11-16T00:00:00,2018,November,Friday,16,320,14,2018-11-16T00:00:00,2018,November,Friday,16,320,17,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,QUICK 1 DISC,RG,11,DBL,1500.0,STOLEN,15066,"{'type': 'Point', 'coordinates': (-79.39837878, 43.64832482)}"
-15132,14522,GO-20191126737,THEFT UNDER - BICYCLE,2019-06-16T00:00:00,2019,June,Sunday,16,167,14,2019-06-18T00:00:00,2019,June,Tuesday,18,169,11,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,,OT,3,BRN,250.0,RECOVERED,15067,"{'type': 'Point', 'coordinates': (-79.39983126, 43.65255065)}"
-15133,14562,GO-20199026465,THEFT UNDER - BICYCLE,2019-06-14T00:00:00,2019,June,Friday,14,165,12,2019-08-16T00:00:00,2019,August,Friday,16,228,12,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,CC,,MT,21,BLU,400.0,STOLEN,15068,"{'type': 'Point', 'coordinates': (-79.40232443, 43.64841054)}"
-15134,14614,GO-20209002466,THEFT UNDER,2020-01-20T00:00:00,2020,January,Monday,20,20,20,2020-01-21T00:00:00,2020,January,Tuesday,21,21,15,D14,Toronto,78,Kensington-Chinatown (78),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,CARTIER,OT,20,GRY,1000.0,STOLEN,15069,"{'type': 'Point', 'coordinates': (-79.39919196, 43.65585086000001)}"
-15135,14615,GO-20209003558,B&E,2020-01-24T00:00:00,2020,January,Friday,24,24,1,2020-01-29T00:00:00,2020,January,Wednesday,29,29,19,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE 2 MEDIUM,RG,24,BLU,600.0,STOLEN,15070,"{'type': 'Point', 'coordinates': (-79.39883998, 43.64954482)}"
-15136,14617,GO-20209006475,THEFT UNDER,2020-01-31T00:00:00,2020,January,Friday,31,31,13,2020-02-23T00:00:00,2020,February,Sunday,23,54,8,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,,RC,12,YEL,0.0,STOLEN,15071,"{'type': 'Point', 'coordinates': (-79.40215141, 43.64801099)}"
-15137,14678,GO-20179011106,THEFT UNDER - BICYCLE,2017-07-24T00:00:00,2017,July,Monday,24,205,6,2017-07-26T00:00:00,2017,July,Wednesday,26,207,20,D14,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,BI,ROSSI,RG,21,TRQ,0.0,STOLEN,15072,"{'type': 'Point', 'coordinates': (-79.40494299, 43.6546843)}"
-15138,14680,GO-20179011130,THEFT UNDER - BICYCLE,2017-07-24T00:00:00,2017,July,Monday,24,205,21,2017-07-27T00:00:00,2017,July,Thursday,27,208,9,D14,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,VITA,RG,18,PNK,700.0,STOLEN,15073,"{'type': 'Point', 'coordinates': (-79.4046631, 43.64896803)}"
-15139,14682,GO-20179011166,THEFT UNDER - BICYCLE,2017-07-27T00:00:00,2017,July,Thursday,27,208,15,2017-07-27T00:00:00,2017,July,Thursday,27,208,16,D14,Toronto,78,Kensington-Chinatown (78),Homeless Shelter / Mission,Other,GI,,MT,27,BLK,800.0,STOLEN,15074,"{'type': 'Point', 'coordinates': (-79.39997085, 43.648892530000005)}"
-15140,14709,GO-20179014065,THEFT UNDER - BICYCLE,2017-09-05T00:00:00,2017,September,Tuesday,5,248,16,2017-09-05T00:00:00,2017,September,Tuesday,5,248,22,D14,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,GI,TCX,TO,11,BLK,1500.0,STOLEN,15075,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-15141,14734,GO-20179017304,THEFT UNDER - BICYCLE,2017-10-16T00:00:00,2017,October,Monday,16,289,3,2017-10-16T00:00:00,2017,October,Monday,16,289,3,D14,Toronto,78,Kensington-Chinatown (78),Bar / Restaurant,Commercial,OT,"KATO 29"""" GRN N",MT,12,BLK,900.0,STOLEN,15076,"{'type': 'Point', 'coordinates': (-79.39184668, 43.6553132)}"
-15142,14765,GO-20189008357,THEFT UNDER,2018-03-17T00:00:00,2018,March,Saturday,17,76,9,2018-03-17T00:00:00,2018,March,Saturday,17,76,22,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,13 QUICK,OT,13,WHI,500.0,STOLEN,15077,"{'type': 'Point', 'coordinates': (-79.39837878, 43.64832482)}"
-15143,14767,GO-2018497816,THEFT UNDER - BICYCLE,2018-03-14T00:00:00,2018,March,Wednesday,14,73,1,2018-03-19T00:00:00,2018,March,Monday,19,78,10,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,GIANT,,OT,0,GRY,350.0,STOLEN,15078,"{'type': 'Point', 'coordinates': (-79.39875925, 43.6493456)}"
-15144,14772,GO-2018664018,THEFT UNDER - BICYCLE,2018-03-24T00:00:00,2018,March,Saturday,24,83,1,2018-04-13T00:00:00,2018,April,Friday,13,103,20,D14,Toronto,78,Kensington-Chinatown (78),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,OT,10,RED,250.0,STOLEN,15079,"{'type': 'Point', 'coordinates': (-79.39875925, 43.6493456)}"
-15145,14785,GO-2018913648,THEFT OF EBIKE OVER $5000,2018-05-21T00:00:00,2018,May,Monday,21,141,7,2018-05-21T00:00:00,2018,May,Monday,21,141,7,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,KNIGHTS GT,EL,0,BLK,5000.0,STOLEN,15080,"{'type': 'Point', 'coordinates': (-79.40264521, 43.65609187)}"
-15146,14803,GO-20189019102,THEFT UNDER - BICYCLE,2018-06-18T00:00:00,2018,June,Monday,18,169,0,2018-06-18T00:00:00,2018,June,Monday,18,169,11,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,RG,27,BLK,600.0,STOLEN,15081,"{'type': 'Point', 'coordinates': (-79.40066945, 43.65476855)}"
-15147,14824,GO-20181340459,PROPERTY - FOUND,2018-07-22T00:00:00,2018,July,Sunday,22,203,19,2018-07-22T00:00:00,2018,July,Sunday,22,203,19,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CANNONDALE,TRAIL,MT,8,ONG,,UNKNOWN,15082,"{'type': 'Point', 'coordinates': (-79.39634181, 43.64876464)}"
-15148,15329,GO-20149004604,THEFT UNDER,2014-06-28T00:00:00,2014,June,Saturday,28,179,14,2014-07-01T00:00:00,2014,July,Tuesday,1,182,17,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,MT,21,BLU,350.0,STOLEN,15083,"{'type': 'Point', 'coordinates': (-79.40397083000002, 43.64718733)}"
-15149,15339,GO-20142613531,THEFT UNDER,2014-07-03T00:00:00,2014,July,Thursday,3,184,18,2014-08-01T00:00:00,2014,August,Friday,1,213,8,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DEVINCI,WILSON SL,MT,27,BLKWHI,5500.0,STOLEN,15084,"{'type': 'Point', 'coordinates': (-79.40397083000002, 43.64718733)}"
-15150,15353,GO-20149006363,THEFT UNDER,2014-08-16T00:00:00,2014,August,Saturday,16,228,2,2014-08-27T00:00:00,2014,August,Wednesday,27,239,14,D14,Toronto,78,Kensington-Chinatown (78),Bar / Restaurant,Commercial,UK,,OT,1,WHI,1200.0,STOLEN,15085,"{'type': 'Point', 'coordinates': (-79.39840686, 43.65172265)}"
-15151,15354,GO-20142823095,B&E W'INTENT,2014-09-02T00:00:00,2014,September,Tuesday,2,245,0,2014-09-02T00:00:00,2014,September,Tuesday,2,245,0,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,ALLEZ,RC,10,REDWHI,1000.0,STOLEN,15086,"{'type': 'Point', 'coordinates': (-79.40270032, 43.64940096)}"
-15152,15361,GO-20149006735,THEFT UNDER,2014-09-09T00:00:00,2014,September,Tuesday,9,252,20,2014-09-09T00:00:00,2014,September,Tuesday,9,252,22,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,FIRE MOUNTAIN,MT,24,RED,0.0,STOLEN,15087,"{'type': 'Point', 'coordinates': (-79.40316102, 43.65738236)}"
-15153,15365,GO-20142995268,THEFT UNDER,2014-09-20T00:00:00,2014,September,Saturday,20,263,9,2014-09-27T00:00:00,2014,September,Saturday,27,270,14,D14,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,TEV INTERCEPTOR,EL,1,RED,2000.0,STOLEN,15088,"{'type': 'Point', 'coordinates': (-79.40172204, 43.65628785)}"
-15154,15386,GO-20143502172,THEFT UNDER,2014-12-16T00:00:00,2014,December,Tuesday,16,350,19,2014-12-17T00:00:00,2014,December,Wednesday,17,351,11,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,VFR4,OT,1,BLK,800.0,STOLEN,15089,"{'type': 'Point', 'coordinates': (-79.40055725, 43.64788683)}"
-15155,15388,GO-2015253741,THEFT UNDER,2014-12-23T00:00:00,2014,December,Tuesday,23,357,21,2015-02-12T00:00:00,2015,February,Thursday,12,43,12,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KONA,SMOKE,OT,10,BLK,600.0,STOLEN,15090,"{'type': 'Point', 'coordinates': (-79.40397083000002, 43.64718733)}"
-15156,15411,GO-20151056737,THEFT UNDER,2015-06-23T00:00:00,2015,June,Tuesday,23,174,8,2015-06-23T00:00:00,2015,June,Tuesday,23,174,13,D14,Toronto,78,Kensington-Chinatown (78),Homeless Shelter / Mission,Other,SUPERCYCLE,,RG,18,,150.0,STOLEN,15091,"{'type': 'Point', 'coordinates': (-79.39837878, 43.64832482)}"
-15157,15462,GO-20151890262,THEFT UNDER,2015-10-11T00:00:00,2015,October,Sunday,11,284,9,2015-11-03T00:00:00,2015,November,Tuesday,3,307,13,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,,OT,0,GRY,450.0,STOLEN,15092,"{'type': 'Point', 'coordinates': (-79.40417555, 43.65283327)}"
-15158,15480,GO-20169001048,THEFT UNDER,2016-01-27T00:00:00,2016,January,Wednesday,27,27,20,2016-02-02T00:00:00,2016,February,Tuesday,2,33,21,D14,Toronto,78,Kensington-Chinatown (78),Bar / Restaurant,Commercial,SA,CALIFORNIA CRUI,TO,7,SIL,1000.0,STOLEN,15093,"{'type': 'Point', 'coordinates': (-79.40364248, 43.65495832)}"
-15159,15483,GO-20169001882,THEFT UNDER,2016-02-28T00:00:00,2016,February,Sunday,28,59,18,2016-02-29T00:00:00,2016,February,Monday,29,60,18,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,50,BLK,750.0,STOLEN,15094,"{'type': 'Point', 'coordinates': (-79.39983126, 43.65255065)}"
-15160,15522,GO-20169007431,THEFT UNDER - BICYCLE,2016-07-19T00:00:00,2016,July,Tuesday,19,201,21,2016-07-19T00:00:00,2016,July,Tuesday,19,201,23,D14,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,SP,,MT,10,,200.0,STOLEN,15095,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-15161,15529,GO-20169008164,THEFT UNDER - BICYCLE,2016-07-30T00:00:00,2016,July,Saturday,30,212,20,2016-08-04T00:00:00,2016,August,Thursday,4,217,1,D14,Toronto,78,Kensington-Chinatown (78),Bar / Restaurant,Commercial,OT,MILANO,RG,21,BLK,600.0,STOLEN,15096,"{'type': 'Point', 'coordinates': (-79.40264521, 43.65609187)}"
-15162,15543,GO-20169009379,THEFT UNDER - BICYCLE,2016-08-23T00:00:00,2016,August,Tuesday,23,236,18,2016-08-23T00:00:00,2016,August,Tuesday,23,236,21,D14,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,OT,12,BLK,300.0,STOLEN,15097,"{'type': 'Point', 'coordinates': (-79.40316102, 43.65738236)}"
-15163,15561,GO-20169011242,THEFT OF EBIKE UNDER $5000,2016-09-27T00:00:00,2016,September,Tuesday,27,271,23,2016-09-28T00:00:00,2016,September,Wednesday,28,272,12,D14,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,TEV BIKE,EL,30,SIL,600.0,STOLEN,15098,"{'type': 'Point', 'coordinates': (-79.40278753, 43.65745805)}"
-15164,9949,GO-20151139257,THEFT UNDER,2015-07-06T00:00:00,2015,July,Monday,6,187,0,2015-07-06T00:00:00,2015,July,Monday,6,187,13,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MARIN OR MARINO,,OT,12,GRYBLK,1500.0,STOLEN,15099,"{'type': 'Point', 'coordinates': (-79.40039038, 43.65405001)}"
-15165,15562,GO-20169011344,THEFT UNDER - BICYCLE,2016-09-29T00:00:00,2016,September,Thursday,29,273,21,2016-09-30T00:00:00,2016,September,Friday,30,274,10,D14,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,MT,21,BLK,450.0,STOLEN,15100,"{'type': 'Point', 'coordinates': (-79.40595313, 43.65543579)}"
-15166,15570,GO-20169012698,THEFT UNDER,2016-10-28T00:00:00,2016,October,Friday,28,302,0,2016-10-28T00:00:00,2016,October,Friday,28,302,10,D14,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,RA,,RG,18,SIL,300.0,STOLEN,15101,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-15167,15583,GO-2017362566,THEFT UNDER - BICYCLE,2017-02-27T00:00:00,2017,February,Monday,27,58,8,2017-02-27T00:00:00,2017,February,Monday,27,58,11,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,E-BIKE,EL,1,BLK,400.0,STOLEN,15102,"{'type': 'Point', 'coordinates': (-79.40180671, 43.65765229)}"
-15168,316,GO-2017771132,THEFT UNDER - BICYCLE,2017-04-13T00:00:00,2017,April,Thursday,13,103,16,2017-05-02T00:00:00,2017,May,Tuesday,2,122,11,D52,Toronto,79,University (79),Universities / Colleges,Educational,RALEIGH,ALLISA,OT,0,,650.0,STOLEN,15167,"{'type': 'Point', 'coordinates': (-79.39894426, 43.66543776)}"
-15169,2002,GO-2018165137,THEFT OF EBIKE UNDER $5000,2018-01-26T00:00:00,2018,January,Friday,26,26,19,2018-01-26T00:00:00,2018,January,Friday,26,26,21,D14,Toronto,79,University (79),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,AMEGO,FOLD,EL,0,RED,1600.0,STOLEN,15103,"{'type': 'Point', 'coordinates': (-79.40447971, 43.66652336)}"
-15170,24865,GO-2015974325,THEFT UNDER,2015-06-10T00:00:00,2015,June,Wednesday,10,161,8,2015-06-10T00:00:00,2015,June,Wednesday,10,161,17,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,PEUGEOT,,RC,10,BLUYEL,150.0,STOLEN,15104,"{'type': 'Point', 'coordinates': (-79.3934735, 43.65601123)}"
-15171,24880,GO-20159004778,THEFT UNDER,2015-07-20T00:00:00,2015,July,Monday,20,201,13,2015-07-20T00:00:00,2015,July,Monday,20,201,20,D52,Toronto,78,Kensington-Chinatown (78),Universities / Colleges,Educational,GI,ALIGHT1,RG,9,BLK,650.0,STOLEN,15105,"{'type': 'Point', 'coordinates': (-79.3934451, 43.65919971)}"
-15172,24907,GO-20169002669,THEFT UNDER,2016-02-01T00:00:00,2016,February,Monday,1,32,17,2016-03-22T00:00:00,2016,March,Tuesday,22,82,17,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,SERUM,MT,27,BLK,2500.0,STOLEN,15106,"{'type': 'Point', 'coordinates': (-79.38918474, 43.65468421)}"
-15173,24913,GO-2016713440,THEFT UNDER - BICYCLE,2016-04-24T00:00:00,2016,April,Sunday,24,115,9,2016-04-26T00:00:00,2016,April,Tuesday,26,117,18,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,VOLAIRE,OT,7,WHIGRN,600.0,STOLEN,15107,"{'type': 'Point', 'coordinates': (-79.39586324, 43.65870005)}"
-15174,24917,GO-2016802101,THEFT UNDER - BICYCLE,2016-05-09T00:00:00,2016,May,Monday,9,130,13,2016-05-10T00:00:00,2016,May,Tuesday,10,131,12,D52,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,NISHIKI,OT,10,DBL,,STOLEN,15108,"{'type': 'Point', 'coordinates': (-79.3974349, 43.65650586)}"
-15175,24919,GO-20169004430,THEFT UNDER,2016-05-11T00:00:00,2016,May,Wednesday,11,132,9,2016-05-12T00:00:00,2016,May,Thursday,12,133,11,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE 2,RG,21,WHI,550.0,STOLEN,15109,"{'type': 'Point', 'coordinates': (-79.38994423, 43.6587011)}"
-15176,24928,GO-20169005350,THEFT UNDER,2016-06-02T00:00:00,2016,June,Thursday,2,154,14,2016-06-05T00:00:00,2016,June,Sunday,5,157,15,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,MT,80,GRY,350.0,STOLEN,15110,"{'type': 'Point', 'coordinates': (-79.39136265, 43.65838682)}"
-15177,17869,GO-20189024710,THEFT UNDER - BICYCLE,2018-07-31T00:00:00,2018,July,Tuesday,31,212,19,2018-07-31T00:00:00,2018,July,Tuesday,31,212,19,D14,Toronto,78,Kensington-Chinatown (78),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,FELT,,RG,1,SIL,650.0,STOLEN,15113,"{'type': 'Point', 'coordinates': (-79.39919196, 43.65585086000001)}"
-15178,12726,GO-20169013001,THEFT UNDER - BICYCLE,2016-10-29T00:00:00,2016,October,Saturday,29,303,19,2016-11-05T00:00:00,2016,November,Saturday,5,310,11,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,SUPERCYCLE SOLA,RG,18,PNK,275.0,STOLEN,15114,"{'type': 'Point', 'coordinates': (-79.40583441, 43.65867014)}"
-15179,2070,GO-2018436119,THEFT UNDER - BICYCLE,2018-03-08T00:00:00,2018,March,Thursday,8,67,16,2018-03-09T00:00:00,2018,March,Friday,9,68,12,D52,Toronto,79,University (79),Universities / Colleges,Educational,GIANT,TREK,OT,21,BLKBLU,1250.0,STOLEN,15115,"{'type': 'Point', 'coordinates': (-79.39689839, 43.6604462)}"
-15180,24955,GO-20169008283,THEFT UNDER,2016-08-03T00:00:00,2016,August,Wednesday,3,216,19,2016-08-06T00:00:00,2016,August,Saturday,6,219,15,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,2015VITA STEPTH,RG,8,PLE,600.0,STOLEN,15116,"{'type': 'Point', 'coordinates': (-79.396125, 43.65334628)}"
-15181,15606,GO-20179006400,THEFT UNDER,2017-05-11T00:00:00,2017,May,Thursday,11,131,14,2017-05-14T00:00:00,2017,May,Sunday,14,134,23,D14,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,NO,,RG,7,,,STOLEN,15117,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-15182,10040,GO-20151209846,THEFT UNDER,2015-07-16T00:00:00,2015,July,Thursday,16,197,12,2015-07-16T00:00:00,2015,July,Thursday,16,197,19,D52,Toronto,78,Kensington-Chinatown (78),"Open Areas (Lakes, Parks, Rivers)",Outside,NORCO,,MT,24,BLK,850.0,STOLEN,15118,"{'type': 'Point', 'coordinates': (-79.39227275, 43.65005482)}"
-15183,10068,GO-20151255077,THEFT UNDER,2015-07-20T00:00:00,2015,July,Monday,20,201,16,2015-07-23T00:00:00,2015,July,Thursday,23,204,11,D52,Toronto,78,Kensington-Chinatown (78),Universities / Colleges,Educational,GIANT,,OT,0,BLK,650.0,STOLEN,15119,"{'type': 'Point', 'coordinates': (-79.3934451, 43.65919971)}"
-15184,24964,GO-20169009664,THEFT UNDER - BICYCLE,2016-08-29T00:00:00,2016,August,Monday,29,242,16,2016-08-29T00:00:00,2016,August,Monday,29,242,21,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,,PHENOM 4.0,MT,21,GRY,0.0,STOLEN,15120,"{'type': 'Point', 'coordinates': (-79.38918474, 43.65468421)}"
-15185,10093,GO-20151259857,THEFT UNDER,2015-07-23T00:00:00,2015,July,Thursday,23,204,17,2015-07-24T00:00:00,2015,July,Friday,24,205,1,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,ROVE 2,TO,27,BLKPLE,1500.0,RECOVERED,15121,"{'type': 'Point', 'coordinates': (-79.38747649, 43.65067257)}"
-15186,17909,GO-20181737084,THEFT UNDER - BICYCLE,2018-09-19T00:00:00,2018,September,Wednesday,19,262,10,2018-09-19T00:00:00,2018,September,Wednesday,19,262,13,D14,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,SPECIALIZED,MENS,RG,0,BLU,1500.0,STOLEN,15122,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-15187,12738,GO-20161984937,THEFT UNDER - BICYCLE,2016-10-26T00:00:00,2016,October,Wednesday,26,300,16,2016-11-08T00:00:00,2016,November,Tuesday,8,313,7,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,,OT,0,,400.0,STOLEN,15123,"{'type': 'Point', 'coordinates': (-79.39901086, 43.66089417)}"
-15188,10102,GO-20159005018,THEFT UNDER,2015-07-26T00:00:00,2015,July,Sunday,26,207,15,2015-07-26T00:00:00,2015,July,Sunday,26,207,19,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,7000 MULTITRACK,RG,21,WHI,400.0,STOLEN,15124,"{'type': 'Point', 'coordinates': (-79.40046169, 43.65014859)}"
-15189,24973,GO-20161634363,THEFT OVER - BICYCLE,2016-09-14T00:00:00,2016,September,Wednesday,14,258,9,2016-09-14T00:00:00,2016,September,Wednesday,14,258,12,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,TREK,9,MT,14,BLK,8000.0,STOLEN,15125,"{'type': 'Point', 'coordinates': (-79.3906274, 43.65241188)}"
-15190,2086,GO-20189008390,THEFT UNDER,2018-03-17T00:00:00,2018,March,Saturday,17,76,14,2018-03-18T00:00:00,2018,March,Sunday,18,77,14,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,UK,ELEVATION HR1,MT,24,GRY,1149.0,STOLEN,15126,"{'type': 'Point', 'coordinates': (-79.40237577, 43.66385178)}"
-15191,18096,GO-20179010442,THEFT UNDER,2017-07-17T00:00:00,2017,July,Monday,17,198,15,2017-07-17T00:00:00,2017,July,Monday,17,198,21,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,RG,21,WHI,885.0,STOLEN,15127,"{'type': 'Point', 'coordinates': (-79.40039038, 43.65405001)}"
-15192,15607,GO-20179006400,THEFT UNDER,2017-05-11T00:00:00,2017,May,Thursday,11,131,14,2017-05-14T00:00:00,2017,May,Sunday,14,134,23,D14,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,NO,VFR 4,OT,7,WHI,500.0,STOLEN,15128,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-15193,24974,GO-20169010477,THEFT UNDER,2016-09-12T00:00:00,2016,September,Monday,12,256,8,2016-09-15T00:00:00,2016,September,Thursday,15,259,10,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,DAILY 1,RG,1,BLK,600.0,STOLEN,15130,"{'type': 'Point', 'coordinates': (-79.3968449, 43.65006869)}"
-15194,12773,GO-20162043578,THEFT UNDER - BICYCLE,2016-11-08T00:00:00,2016,November,Tuesday,8,313,15,2016-11-17T00:00:00,2016,November,Thursday,17,322,13,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,,RG,0,,900.0,STOLEN,15131,"{'type': 'Point', 'coordinates': (-79.39570335, 43.66468636)}"
-15195,25203,GO-20169005475,THEFT UNDER,2016-06-07T00:00:00,2016,June,Tuesday,7,159,20,2016-06-08T00:00:00,2016,June,Wednesday,8,160,14,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,OSLO,RC,24,BLK,1000.0,STOLEN,15132,"{'type': 'Point', 'coordinates': (-79.40055725, 43.64788683)}"
-15196,25216,GO-20169006312,THEFT UNDER,2016-06-24T00:00:00,2016,June,Friday,24,176,15,2016-06-24T00:00:00,2016,June,Friday,24,176,19,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,BLAST,MT,21,BLK,1200.0,STOLEN,15133,"{'type': 'Point', 'coordinates': (-79.40278753, 43.65745805)}"
-15197,25217,GO-20169006380,THEFT UNDER,2016-06-25T00:00:00,2016,June,Saturday,25,177,1,2016-06-26T00:00:00,2016,June,Sunday,26,178,13,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,ONUS 27.5 HARDT,MT,21,GRY,600.0,STOLEN,15134,"{'type': 'Point', 'coordinates': (-79.39737512, 43.64853707)}"
-15198,25222,GO-20169006776,THEFT UNDER,2016-07-05T00:00:00,2016,July,Tuesday,5,187,23,2016-07-06T00:00:00,2016,July,Wednesday,6,188,9,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,KO,DR DEW,RG,9,BLK,1200.0,STOLEN,15135,"{'type': 'Point', 'coordinates': (-79.39955207, 43.65674851)}"
-15199,25227,GO-20169007388,THEFT UNDER - BICYCLE,2016-07-18T00:00:00,2016,July,Monday,18,200,17,2016-07-19T00:00:00,2016,July,Tuesday,19,201,9,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,10,RED,3500.0,STOLEN,15136,"{'type': 'Point', 'coordinates': (-79.40110737, 43.65227394000001)}"
-15200,25260,GO-20169010755,THEFT UNDER - BICYCLE,2016-09-16T00:00:00,2016,September,Friday,16,260,22,2016-09-19T00:00:00,2016,September,Monday,19,263,23,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,21,,550.0,STOLEN,15137,"{'type': 'Point', 'coordinates': (-79.40173755, 43.65388171)}"
-15201,25265,GO-20161685254,ROBBERY - OTHER,2016-09-22T00:00:00,2016,September,Thursday,22,266,6,2016-09-22T00:00:00,2016,September,Thursday,22,266,9,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,MT,1,RED,,STOLEN,15138,"{'type': 'Point', 'coordinates': (-79.39634181, 43.64876464)}"
-15202,25266,GO-20161685254,ROBBERY - OTHER,2016-09-22T00:00:00,2016,September,Thursday,22,266,6,2016-09-22T00:00:00,2016,September,Thursday,22,266,9,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,MT,1,WHI,,STOLEN,15139,"{'type': 'Point', 'coordinates': (-79.39634181, 43.64876464)}"
-15203,25274,GO-20169011550,THEFT UNDER - BICYCLE,2016-10-04T00:00:00,2016,October,Tuesday,4,278,11,2016-10-04T00:00:00,2016,October,Tuesday,4,278,15,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,21,DGR,600.0,STOLEN,15140,"{'type': 'Point', 'coordinates': (-79.39888675, 43.65513745)}"
-15204,25305,GO-20179007212,THEFT UNDER,2017-05-29T00:00:00,2017,May,Monday,29,149,8,2017-05-30T00:00:00,2017,May,Tuesday,30,150,9,D14,Toronto,78,Kensington-Chinatown (78),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,CYPRESS ST,OT,18,SIL,400.0,STOLEN,15141,"{'type': 'Point', 'coordinates': (-79.4015293, 43.65334617)}"
-15205,25307,GO-20179007793,THEFT UNDER - BICYCLE,2017-06-08T00:00:00,2017,June,Thursday,8,159,2,2017-06-09T00:00:00,2017,June,Friday,9,160,16,D14,Toronto,78,Kensington-Chinatown (78),Bar / Restaurant,Commercial,OT,ARGON 18 KR 36,RC,21,RED,2850.0,STOLEN,15142,"{'type': 'Point', 'coordinates': (-79.39863995, 43.65205921)}"
-15206,25308,GO-20179007970,THEFT UNDER,2017-06-12T00:00:00,2017,June,Monday,12,163,21,2017-06-13T00:00:00,2017,June,Tuesday,13,164,9,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,OT,WORLD TOURIST,FO,30,YEL,3000.0,STOLEN,15143,"{'type': 'Point', 'coordinates': (-79.39919196, 43.65585086000001)}"
-15207,25798,GO-20209029287,THEFT UNDER,2020-11-10T00:00:00,2020,November,Tuesday,10,315,20,2020-11-11T00:00:00,2020,November,Wednesday,11,316,14,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,FJ,FEATHER CX+,OT,12,BLK,1500.0,STOLEN,15144,"{'type': 'Point', 'coordinates': (-79.38822804, 43.65240803)}"
-15208,18,GO-20162225941,THEFT UNDER - BICYCLE,2016-12-10T00:00:00,2016,December,Saturday,10,345,17,2016-12-16T00:00:00,2016,December,Friday,16,351,9,D52,Toronto,79,University (79),Universities / Colleges,Educational,TREK,,MT,0,,540.0,STOLEN,15145,"{'type': 'Point', 'coordinates': (-79.39343719, 43.66303628)}"
-15209,49,GO-20179000560,THEFT UNDER - BICYCLE,2017-01-12T00:00:00,2017,January,Thursday,12,12,11,2017-01-12T00:00:00,2017,January,Thursday,12,12,23,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,FUJI DECLARATIO,RG,16,GRY,0.0,STOLEN,15147,"{'type': 'Point', 'coordinates': (-79.40137171, 43.66130203)}"
-15210,2093,GO-20189008695,THEFT UNDER,2018-03-19T00:00:00,2018,March,Monday,19,78,13,2018-03-20T00:00:00,2018,March,Tuesday,20,79,13,D52,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,GI,ALUXX 6000,MT,25,YEL,600.0,STOLEN,15148,"{'type': 'Point', 'coordinates': (-79.39894426, 43.66543776)}"
-15211,10110,GO-20159005052,THEFT UNDER,2015-07-27T00:00:00,2015,July,Monday,27,208,10,2015-07-27T00:00:00,2015,July,Monday,27,208,14,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,YORKVILLE,RG,3,BLK,400.0,STOLEN,15149,"{'type': 'Point', 'coordinates': (-79.39142092, 43.65433318)}"
-15212,15647,GO-20199022601,THEFT UNDER,2019-07-16T00:00:00,2019,July,Tuesday,16,197,8,2019-07-16T00:00:00,2019,July,Tuesday,16,197,21,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GF,,MT,21,LBL,650.0,STOLEN,15150,"{'type': 'Point', 'coordinates': (-79.39136265, 43.65838682)}"
-15213,18137,GO-20169009308,THEFT UNDER,2016-08-22T00:00:00,2016,August,Monday,22,235,22,2016-08-23T00:00:00,2016,August,Tuesday,23,236,10,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,GI,REVOLT 3,TO,9,GRY,999.0,STOLEN,15151,"{'type': 'Point', 'coordinates': (-79.40494299, 43.6546843)}"
-15214,53,GO-2017106750,THEFT UNDER - BICYCLE,2017-01-13T00:00:00,2017,January,Friday,13,13,15,2017-01-18T00:00:00,2017,January,Wednesday,18,18,8,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,,MT,0,,,STOLEN,15152,"{'type': 'Point', 'coordinates': (-79.39488188, 43.66100963)}"
-15215,58,GO-20179000961,THEFT UNDER - BICYCLE,2017-01-20T00:00:00,2017,January,Friday,20,20,22,2017-01-21T00:00:00,2017,January,Saturday,21,21,15,D52,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,CA,CAAD4 R500,RC,24,YEL,500.0,STOLEN,15153,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-15216,66,GO-20179001207,THEFT UNDER - BICYCLE,2017-01-25T00:00:00,2017,January,Wednesday,25,25,11,2017-01-26T00:00:00,2017,January,Thursday,26,26,16,D52,Toronto,79,University (79),Universities / Colleges,Educational,KH,URBAN SOUL,RG,1,SIL,400.0,STOLEN,15154,"{'type': 'Point', 'coordinates': (-79.39815878000002, 43.65826015)}"
-15217,124,GO-2017381681,THEFT UNDER - BICYCLE,2017-02-27T00:00:00,2017,February,Monday,27,58,18,2017-03-02T00:00:00,2017,March,Thursday,2,61,7,D52,Toronto,79,University (79),Universities / Colleges,Educational,SPECIALIZED,ARIEL,OT,20,TRQBLK,1500.0,STOLEN,15159,"{'type': 'Point', 'coordinates': (-79.39968364, 43.66258094)}"
-15218,146,GO-2017426330,THEFT OF EBIKE UNDER $5000,2017-03-08T00:00:00,2017,March,Wednesday,8,67,17,2017-03-09T00:00:00,2017,March,Thursday,9,68,6,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,EMMO,EL,1,BLK,900.0,STOLEN,15160,"{'type': 'Point', 'coordinates': (-79.40599871, 43.66226023)}"
-15219,163,GO-2017496977,THEFT UNDER - BICYCLE,2017-03-14T00:00:00,2017,March,Tuesday,14,73,16,2017-03-20T00:00:00,2017,March,Monday,20,79,15,D52,Toronto,79,University (79),Universities / Colleges,Educational,BIANCHI,,RG,0,,860.0,STOLEN,15161,"{'type': 'Point', 'coordinates': (-79.39934598, 43.66172465)}"
-15220,199,GO-2017601512,THEFT UNDER - BICYCLE,2017-03-28T00:00:00,2017,March,Tuesday,28,87,19,2017-04-05T00:00:00,2017,April,Wednesday,5,95,17,D52,Toronto,79,University (79),Universities / Colleges,Educational,REGULAR,,RG,0,,500.0,STOLEN,15162,"{'type': 'Point', 'coordinates': (-79.40137171, 43.66130203)}"
-15221,205,GO-2017629907,THEFT UNDER - BICYCLE,2017-04-01T00:00:00,2017,April,Saturday,1,91,15,2017-04-10T00:00:00,2017,April,Monday,10,100,7,D52,Toronto,79,University (79),Universities / Colleges,Educational,SCOTT,,OT,0,GRY,500.0,STOLEN,15163,"{'type': 'Point', 'coordinates': (-79.39894426, 43.66543776)}"
-15222,245,GO-20179004875,THEFT UNDER,2017-04-18T00:00:00,2017,April,Tuesday,18,108,13,2017-04-18T00:00:00,2017,April,Tuesday,18,108,17,D52,Toronto,79,University (79),Universities / Colleges,Educational,GI,,RG,10,BLK,600.0,STOLEN,15164,"{'type': 'Point', 'coordinates': (-79.39676402, 43.66012322)}"
-15223,287,GO-20179005345,THEFT UNDER - BICYCLE,2017-04-21T00:00:00,2017,April,Friday,21,111,21,2017-04-27T00:00:00,2017,April,Thursday,27,117,18,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,OT,SINGLE FIXED GE,OT,1,BLK,600.0,STOLEN,15165,"{'type': 'Point', 'coordinates': (-79.4078215, 43.66005724)}"
-15224,299,GO-2017750729,CARRYING CONCEALED WEAPON,2017-04-29T00:00:00,2017,April,Saturday,29,119,4,2017-04-29T00:00:00,2017,April,Saturday,29,119,5,D14,Toronto,79,University (79),Ttc Subway Station,Transit,MIELE,,TO,18,WHI,800.0,STOLEN,15166,"{'type': 'Point', 'coordinates': (-79.40383181, 43.66665689)}"
-15225,443,GO-2017895942,THEFT OF EBIKE UNDER $5000,2017-05-20T00:00:00,2017,May,Saturday,20,140,6,2017-05-21T00:00:00,2017,May,Sunday,21,141,7,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,E BIKE,EL,1,MUL,2200.0,STOLEN,15170,"{'type': 'Point', 'coordinates': (-79.39815878000002, 43.65826015)}"
-15226,453,GO-20179006845,THEFT UNDER - BICYCLE,2017-05-22T00:00:00,2017,May,Monday,22,142,15,2017-05-23T00:00:00,2017,May,Tuesday,23,143,14,D52,Toronto,79,University (79),Universities / Colleges,Educational,SC,,RC,21,RED,500.0,STOLEN,15171,"{'type': 'Point', 'coordinates': (-79.39734175, 43.66803279)}"
-15227,465,GO-20179006927,THEFT UNDER - BICYCLE,2017-05-23T00:00:00,2017,May,Tuesday,23,143,14,2017-05-24T00:00:00,2017,May,Wednesday,24,144,19,D52,Toronto,79,University (79),Universities / Colleges,Educational,OT,,RG,1,BLK,1000.0,STOLEN,15172,"{'type': 'Point', 'coordinates': (-79.39699693, 43.65848407)}"
-15228,517,GO-20179007362,THEFT UNDER - BICYCLE,2017-05-30T00:00:00,2017,May,Tuesday,30,150,16,2017-06-01T00:00:00,2017,June,Thursday,1,152,18,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,TR,5,SIL,0.0,STOLEN,15173,"{'type': 'Point', 'coordinates': (-79.40599871, 43.66226023)}"
-15229,550,GO-20171007961,THEFT UNDER - BICYCLE,2017-05-31T00:00:00,2017,May,Wednesday,31,151,15,2017-06-07T00:00:00,2017,June,Wednesday,7,158,7,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,MT,0,,300.0,STOLEN,15174,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-15230,575,GO-20179007843,THEFT UNDER - BICYCLE,2017-06-08T00:00:00,2017,June,Thursday,8,159,22,2017-06-10T00:00:00,2017,June,Saturday,10,161,11,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DB,OUTLOOK 2013,MT,7,BLK,300.0,STOLEN,15175,"{'type': 'Point', 'coordinates': (-79.40382824, 43.66269877)}"
-15231,592,GO-20179007942,THEFT UNDER - BICYCLE,2017-06-09T00:00:00,2017,June,Friday,9,160,14,2017-06-12T00:00:00,2017,June,Monday,12,163,9,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,20,,250.0,STOLEN,15176,"{'type': 'Point', 'coordinates': (-79.40137171, 43.66130203)}"
-15232,626,GO-20171071694,THEFT UNDER - BICYCLE,2017-06-10T00:00:00,2017,June,Saturday,10,161,11,2017-06-16T00:00:00,2017,June,Friday,16,167,9,D52,Toronto,79,University (79),Universities / Colleges,Educational,OZARK,TRAIL EVOLUTION,MT,0,,100.0,STOLEN,15177,"{'type': 'Point', 'coordinates': (-79.39691929, 43.66443463)}"
-15233,835,GO-20171247660,THEFT UNDER - BICYCLE,2017-06-24T00:00:00,2017,June,Saturday,24,175,17,2017-07-12T00:00:00,2017,July,Wednesday,12,193,10,D52,Toronto,79,University (79),Universities / Colleges,Educational,GIANT,YUKON,MT,0,BLK,1000.0,STOLEN,15183,"{'type': 'Point', 'coordinates': (-79.39832557, 43.66783119)}"
-15234,845,GO-20171224251,THEFT UNDER - BICYCLE,2017-07-06T00:00:00,2017,July,Thursday,6,187,18,2017-07-08T00:00:00,2017,July,Saturday,8,189,18,D14,Toronto,79,University (79),Schools During Un-Supervised Activity,Educational,MIKADO,YORKDALE 2004,OT,24,BLUGRY,700.0,STOLEN,15184,"{'type': 'Point', 'coordinates': (-79.40307045, 43.6655101)}"
-15235,861,GO-20171279929,THEFT UNDER - BICYCLE,2017-07-05T00:00:00,2017,July,Wednesday,5,186,19,2017-07-17T00:00:00,2017,July,Monday,17,198,7,D52,Toronto,79,University (79),Universities / Colleges,Educational,CUBE AIM,SL29,MT,0,BLK,890.0,STOLEN,15185,"{'type': 'Point', 'coordinates': (-79.3934451, 43.65919971)}"
-15236,882,GO-20171294617,THEFT UNDER - BICYCLE,2017-07-14T00:00:00,2017,July,Friday,14,195,4,2017-07-19T00:00:00,2017,July,Wednesday,19,200,10,D52,Toronto,79,University (79),Universities / Colleges,Educational,DIAMONDBACK,,MT,0,,1000.0,STOLEN,15186,"{'type': 'Point', 'coordinates': (-79.3946423, 43.65895383)}"
-15237,891,GO-20171296762,THEFT UNDER - BICYCLE,2017-07-17T00:00:00,2017,July,Monday,17,198,9,2017-07-19T00:00:00,2017,July,Wednesday,19,200,15,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,SEEK 3,OT,27,BLK,950.0,STOLEN,15187,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-15238,901,GO-20171300549,THEFT UNDER - BICYCLE,2017-07-16T00:00:00,2017,July,Sunday,16,197,20,2017-07-20T00:00:00,2017,July,Thursday,20,201,7,D52,Toronto,79,University (79),Universities / Colleges,Educational,TREK,,OT,0,BLK,950.0,STOLEN,15188,"{'type': 'Point', 'coordinates': (-79.39734175, 43.66803279)}"
-15239,948,GO-20171326846,THEFT UNDER - BICYCLE,2017-07-17T00:00:00,2017,July,Monday,17,198,17,2017-07-24T00:00:00,2017,July,Monday,24,205,9,D52,Toronto,79,University (79),Universities / Colleges,Educational,GIANT,SEEK 3,MT,0,,900.0,STOLEN,15189,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-15240,1082,GO-20171431996,THEFT UNDER - BICYCLE,2017-07-14T00:00:00,2017,July,Friday,14,195,13,2017-08-09T00:00:00,2017,August,Wednesday,9,221,8,D52,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,OTHER,,MT,21,GRYGRN,200.0,STOLEN,15190,"{'type': 'Point', 'coordinates': (-79.40149998, 43.66716143)}"
-15241,1093,GO-20179011977,THEFT UNDER - BICYCLE,2017-08-04T00:00:00,2017,August,Friday,4,216,11,2017-08-09T00:00:00,2017,August,Wednesday,9,221,18,D52,Toronto,79,University (79),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,CLASSICO,RG,7,BLK,400.0,STOLEN,15191,"{'type': 'Point', 'coordinates': (-79.39988102, 43.65980157)}"
-15242,1141,GO-20171466392,THEFT UNDER - BICYCLE,2017-07-24T00:00:00,2017,July,Monday,24,205,10,2017-08-14T00:00:00,2017,August,Monday,14,226,14,D52,Toronto,79,University (79),Universities / Colleges,Educational,SUPERCYCLE,,RG,6,WHIPLE,100.0,STOLEN,15192,"{'type': 'Point', 'coordinates': (-79.39734175, 43.66803279)}"
-15243,1147,GO-20179012425,THEFT UNDER,2017-08-13T00:00:00,2017,August,Sunday,13,225,10,2017-08-14T00:00:00,2017,August,Monday,14,226,20,D52,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,AGRESSOR,MT,12,BLU,250.0,STOLEN,15193,"{'type': 'Point', 'coordinates': (-79.40067317, 43.66506891)}"
-15244,1149,GO-20171471446,THEFT UNDER - BICYCLE,2017-07-30T00:00:00,2017,July,Sunday,30,211,12,2017-08-15T00:00:00,2017,August,Tuesday,15,227,9,D52,Toronto,79,University (79),Universities / Colleges,Educational,RVNATE,,FO,0,SILBLK,400.0,STOLEN,15194,"{'type': 'Point', 'coordinates': (-79.39894426, 43.66543776)}"
-15245,1157,GO-20171478172,THEFT UNDER - BICYCLE,2017-08-01T00:00:00,2017,August,Tuesday,1,213,14,2017-08-16T00:00:00,2017,August,Wednesday,16,228,10,D52,Toronto,79,University (79),Universities / Colleges,Educational,CCM,,OT,0,BLKBLU,400.0,STOLEN,15195,"{'type': 'Point', 'coordinates': (-79.39676402, 43.66012322)}"
-15246,1165,GO-20171484453,THEFT UNDER - BICYCLE,2017-08-02T00:00:00,2017,August,Wednesday,2,214,21,2017-08-17T00:00:00,2017,August,Thursday,17,229,8,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,CITY ESCAPE,TO,0,,558.0,STOLEN,15196,"{'type': 'Point', 'coordinates': (-79.39699693, 43.65848407)}"
-15247,1219,GO-20171530135,B&E,2017-08-03T00:00:00,2017,August,Thursday,3,215,4,2017-08-24T00:00:00,2017,August,Thursday,24,236,7,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,,OT,0,BLURED,,STOLEN,15197,"{'type': 'Point', 'coordinates': (-79.39894426, 43.66543776)}"
-15248,1220,GO-20171530135,B&E,2017-08-03T00:00:00,2017,August,Thursday,3,215,4,2017-08-24T00:00:00,2017,August,Thursday,24,236,7,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,,OT,0,WHIGRY,,STOLEN,15198,"{'type': 'Point', 'coordinates': (-79.39894426, 43.66543776)}"
-15249,1315,GO-20179014022,THEFT UNDER,2017-08-24T00:00:00,2017,August,Thursday,24,236,19,2017-09-05T00:00:00,2017,September,Tuesday,5,248,13,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,V-900,MT,12,YEL,3000.0,STOLEN,15199,"{'type': 'Point', 'coordinates': (-79.40530179, 43.660552)}"
-15250,1342,GO-20179014258,THEFT UNDER,2017-09-07T00:00:00,2017,September,Thursday,7,250,2,2017-09-08T00:00:00,2017,September,Friday,8,251,13,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,UK,NEEDLE,RC,1,BLK,1500.0,STOLEN,15200,"{'type': 'Point', 'coordinates': (-79.40449088, 43.65711748)}"
-15251,1355,GO-20171645614,THEFT UNDER - BICYCLE,2017-08-08T00:00:00,2017,August,Tuesday,8,220,12,2017-09-11T00:00:00,2017,September,Monday,11,254,11,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,,OT,0,,,STOLEN,15201,"{'type': 'Point', 'coordinates': (-79.39832557, 43.66783119)}"
-15252,1386,GO-20171665434,THEFT UNDER - BICYCLE,2017-08-10T00:00:00,2017,August,Thursday,10,222,13,2017-09-14T00:00:00,2017,September,Thursday,14,257,10,D52,Toronto,79,University (79),Universities / Colleges,Educational,PEUGEOT,,RG,0,BLUONG,450.0,STOLEN,15202,"{'type': 'Point', 'coordinates': (-79.39979751, 43.66751644)}"
-15253,1406,GO-20171673705,THEFT UNDER - BICYCLE,2017-09-09T00:00:00,2017,September,Saturday,9,252,20,2017-09-15T00:00:00,2017,September,Friday,15,258,13,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,TRICROSS,OT,20,BLU,300.0,STOLEN,15203,"{'type': 'Point', 'coordinates': (-79.40311297, 43.66093051)}"
-15254,1422,GO-20179014903,THEFT UNDER - BICYCLE,2017-09-16T00:00:00,2017,September,Saturday,16,259,4,2017-09-16T00:00:00,2017,September,Saturday,16,259,8,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,KH,FLITE 500,RC,10,BLK,1000.0,STOLEN,15204,"{'type': 'Point', 'coordinates': (-79.40478414, 43.66249403)}"
-15255,1434,GO-20179014973,THEFT UNDER - BICYCLE,2017-09-16T00:00:00,2017,September,Saturday,16,259,14,2017-09-16T00:00:00,2017,September,Saturday,16,259,17,D52,Toronto,79,University (79),Universities / Colleges,Educational,OT,ALLEZ,RC,30,BLK,700.0,STOLEN,15205,"{'type': 'Point', 'coordinates': (-79.39466302000001, 43.6623757)}"
-15256,1487,GO-20179015453,THEFT UNDER - BICYCLE,2017-09-21T00:00:00,2017,September,Thursday,21,264,23,2017-09-22T00:00:00,2017,September,Friday,22,265,11,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,24,GRY,1600.0,STOLEN,15206,"{'type': 'Point', 'coordinates': (-79.40307045, 43.6655101)}"
-15257,1531,GO-20179015847,THEFT UNDER - BICYCLE,2017-09-24T00:00:00,2017,September,Sunday,24,267,0,2017-09-26T00:00:00,2017,September,Tuesday,26,269,17,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,21,ONG,500.0,STOLEN,15208,"{'type': 'Point', 'coordinates': (-79.40904976, 43.65980581)}"
-15258,1567,GO-20179016244,THEFT UNDER - BICYCLE,2017-10-01T00:00:00,2017,October,Sunday,1,274,18,2017-10-01T00:00:00,2017,October,Sunday,1,274,21,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,X-RAY,RG,1,YEL,350.0,STOLEN,15209,"{'type': 'Point', 'coordinates': (-79.40648042, 43.65672138)}"
-15259,1575,GO-20171791072,THEFT UNDER - BICYCLE,2017-08-23T00:00:00,2017,August,Wednesday,23,235,10,2017-10-03T00:00:00,2017,October,Tuesday,3,276,8,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,,OT,0,BLU,1800.0,STOLEN,15210,"{'type': 'Point', 'coordinates': (-79.40137171, 43.66130203)}"
-15260,1577,GO-20171792583,THEFT UNDER - BICYCLE,2017-08-23T00:00:00,2017,August,Wednesday,23,235,17,2017-10-03T00:00:00,2017,October,Tuesday,3,276,12,D52,Toronto,79,University (79),Universities / Colleges,Educational,MARIN OR MARINO,,MT,0,BLK,600.0,STOLEN,15211,"{'type': 'Point', 'coordinates': (-79.39968364, 43.66258094)}"
-15261,1583,GO-20171798444,THEFT UNDER - BICYCLE,2017-08-24T00:00:00,2017,August,Thursday,24,236,11,2017-10-04T00:00:00,2017,October,Wednesday,4,277,9,D52,Toronto,79,University (79),Universities / Colleges,Educational,TREK,,RG,0,REDBLK,200.0,STOLEN,15212,"{'type': 'Point', 'coordinates': (-79.39734175, 43.66803279)}"
-15262,1663,GO-20179017248,THEFT UNDER,2017-10-13T00:00:00,2017,October,Friday,13,286,19,2017-10-15T00:00:00,2017,October,Sunday,15,288,13,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,AERAS,RG,18,GRY,700.0,STOLEN,15213,"{'type': 'Point', 'coordinates': (-79.40531586, 43.66635847)}"
-15263,1686,GO-20179017554,B&E,2017-10-13T00:00:00,2017,October,Friday,13,286,0,2017-10-15T00:00:00,2017,October,Sunday,15,288,22,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,21,GRY,150.0,STOLEN,15214,"{'type': 'Point', 'coordinates': (-79.40307045, 43.6655101)}"
-15264,1705,GO-20179017748,THEFT UNDER - BICYCLE,2017-10-17T00:00:00,2017,October,Tuesday,17,290,8,2017-10-20T00:00:00,2017,October,Friday,20,293,19,D14,Toronto,79,University (79),Schools During Supervised Activity,Educational,SU,,RG,21,BLU,0.0,STOLEN,15215,"{'type': 'Point', 'coordinates': (-79.40713565, 43.65840411)}"
-15265,1774,GO-20171977446,THEFT UNDER - BICYCLE,2017-09-25T00:00:00,2017,September,Monday,25,268,19,2017-11-01T00:00:00,2017,November,Wednesday,1,305,11,D52,Toronto,79,University (79),Universities / Colleges,Educational,UNKNOWN MAKE,,MT,0,,700.0,STOLEN,15217,"{'type': 'Point', 'coordinates': (-79.40067317, 43.66506891)}"
-15266,1779,GO-20179018705,THEFT UNDER - BICYCLE,2017-10-21T00:00:00,2017,October,Saturday,21,294,2,2017-11-01T00:00:00,2017,November,Wednesday,1,305,19,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,RG,24,BLU,500.0,STOLEN,15218,"{'type': 'Point', 'coordinates': (-79.40316102, 43.65738236)}"
-15267,1832,GO-20179019496,THEFT UNDER,2017-11-12T00:00:00,2017,November,Sunday,12,316,0,2017-11-13T00:00:00,2017,November,Monday,13,317,13,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,RA,REDUX 1,RG,9,GRY,500.0,STOLEN,15219,"{'type': 'Point', 'coordinates': (-79.40307045, 43.6655101)}"
-15268,1911,GO-20173135384,THEFT UNDER - BICYCLE,2017-09-26T00:00:00,2017,September,Tuesday,26,269,18,2017-12-05T00:00:00,2017,December,Tuesday,5,339,10,D52,Toronto,79,University (79),Universities / Colleges,Educational,GIANT,DCB2,RC,0,,3000.0,STOLEN,15220,"{'type': 'Point', 'coordinates': (-79.39343719, 43.66303628)}"
-15269,1942,GO-20173225744,THEFT UNDER - BICYCLE,2017-10-17T00:00:00,2017,October,Tuesday,17,290,4,2017-12-19T00:00:00,2017,December,Tuesday,19,353,9,D52,Toronto,79,University (79),Universities / Colleges,Educational,SUPERCYCLE,,OT,0,GRYBLU,300.0,STOLEN,15221,"{'type': 'Point', 'coordinates': (-79.39570335, 43.66468636)}"
-15270,1947,GO-20173233412,THEFT UNDER - BICYCLE,2017-10-19T00:00:00,2017,October,Thursday,19,292,12,2017-12-20T00:00:00,2017,December,Wednesday,20,354,11,D52,Toronto,79,University (79),Universities / Colleges,Educational,DEVINCI,MILANO,OT,0,,672.0,STOLEN,15222,"{'type': 'Point', 'coordinates': (-79.39832557, 43.66783119)}"
-15271,1962,GO-201814562,THEFT UNDER - BICYCLE,2017-10-22T00:00:00,2017,October,Sunday,22,295,19,2018-01-03T00:00:00,2018,January,Wednesday,3,3,13,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,,RG,0,,800.0,STOLEN,15223,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-15272,15651,GO-20199023112,THEFT UNDER,2019-07-21T00:00:00,2019,July,Sunday,21,202,14,2019-07-21T00:00:00,2019,July,Sunday,21,202,14,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,UK,,OT,1,PNK,100.0,STOLEN,15224,"{'type': 'Point', 'coordinates': (-79.39225095, 43.656266970000004)}"
-15273,2109,GO-20189009554,THEFT UNDER - BICYCLE,2018-03-26T00:00:00,2018,March,Monday,26,85,14,2018-03-26T00:00:00,2018,March,Monday,26,85,16,D14,Toronto,79,University (79),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,,FO,6,SIL,400.0,STOLEN,15226,"{'type': 'Point', 'coordinates': (-79.40403711, 43.6572083)}"
-15274,18205,GO-20179006461,THEFT UNDER,2017-05-13T00:00:00,2017,May,Saturday,13,133,3,2017-05-16T00:00:00,2017,May,Tuesday,16,136,17,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,KO,,MT,10,RED,0.0,STOLEN,15227,"{'type': 'Point', 'coordinates': (-79.40180671, 43.65765229)}"
-15275,21315,GO-20189022238,THEFT UNDER,2018-07-10T00:00:00,2018,July,Tuesday,10,191,23,2018-07-12T00:00:00,2018,July,Thursday,12,193,22,D14,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KH,,OT,27,BLU,500.0,STOLEN,15228,"{'type': 'Point', 'coordinates': (-79.40480719, 43.65215739)}"
-15276,12803,GO-20162066110,THEFT UNDER - BICYCLE,2016-11-10T00:00:00,2016,November,Thursday,10,315,22,2016-11-21T00:00:00,2016,November,Monday,21,326,8,D52,Toronto,79,University (79),Universities / Colleges,Educational,YT,,OT,0,BLK,2000.0,STOLEN,15229,"{'type': 'Point', 'coordinates': (-79.39894426, 43.66543776)}"
-15277,12807,GO-20162072543,THEFT UNDER - BICYCLE,2016-11-11T00:00:00,2016,November,Friday,11,316,8,2016-11-22T00:00:00,2016,November,Tuesday,22,327,8,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,,MT,0,,120.0,STOLEN,15230,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-15278,12810,GO-20169013713,THEFT UNDER - BICYCLE,2016-11-18T00:00:00,2016,November,Friday,18,323,13,2016-11-22T00:00:00,2016,November,Tuesday,22,327,16,D52,Toronto,79,University (79),Universities / Colleges,Educational,GI,ESCAPE 2 W,RG,21,WHI,650.0,STOLEN,15231,"{'type': 'Point', 'coordinates': (-79.39699693, 43.65848407)}"
-15279,12814,GO-20162078505,THEFT UNDER - BICYCLE,2016-11-17T00:00:00,2016,November,Thursday,17,322,0,2016-11-23T00:00:00,2016,November,Wednesday,23,328,7,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,,MT,0,,186.0,STOLEN,15232,"{'type': 'Point', 'coordinates': (-79.39676402, 43.66012322)}"
-15280,12817,GO-20162086141,THEFT UNDER - BICYCLE,2016-11-18T00:00:00,2016,November,Friday,18,323,16,2016-11-24T00:00:00,2016,November,Thursday,24,329,11,D52,Toronto,79,University (79),Universities / Colleges,Educational,DEVINCI,,RG,0,GRYWHI,700.0,STOLEN,15233,"{'type': 'Point', 'coordinates': (-79.39832557, 43.66783119)}"
-15281,12841,GO-20169014145,THEFT UNDER,2016-12-02T00:00:00,2016,December,Friday,2,337,11,2016-12-02T00:00:00,2016,December,Friday,2,337,16,D52,Toronto,79,University (79),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,GI,RAPID,RC,10,WHI,600.0,STOLEN,15236,"{'type': 'Point', 'coordinates': (-79.39815878000002, 43.65826015)}"
-15282,12847,GO-20169014198,THEFT UNDER,2016-12-01T00:00:00,2016,December,Thursday,1,336,17,2016-12-04T00:00:00,2016,December,Sunday,4,339,11,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,TO,7,SIL,200.0,STOLEN,15237,"{'type': 'Point', 'coordinates': (-79.40447971, 43.66652336)}"
-15283,13086,GO-20171473003,THEFT UNDER - BICYCLE,2017-07-26T00:00:00,2017,July,Wednesday,26,207,8,2017-08-15T00:00:00,2017,August,Tuesday,15,227,13,D52,Toronto,79,University (79),Universities / Colleges,Educational,TESSA,,MT,0,BLUWHI,200.0,STOLEN,15238,"{'type': 'Point', 'coordinates': (-79.40137171, 43.66130203)}"
-15284,13096,GO-20179013739,THEFT UNDER - BICYCLE,2017-08-28T00:00:00,2017,August,Monday,28,240,13,2017-08-31T00:00:00,2017,August,Thursday,31,243,9,D52,Toronto,79,University (79),Universities / Colleges,Educational,CC,HTTP://WWW.CANA,RG,21,BLU,300.0,STOLEN,15239,"{'type': 'Point', 'coordinates': (-79.3934451, 43.65919971)}"
-15285,13103,GO-20171705738,THEFT UNDER - BICYCLE,2017-08-16T00:00:00,2017,August,Wednesday,16,228,15,2017-09-20T00:00:00,2017,September,Wednesday,20,263,8,D52,Toronto,79,University (79),Universities / Colleges,Educational,GIANT,,MT,0,BLUYEL,800.0,STOLEN,15240,"{'type': 'Point', 'coordinates': (-79.39901086, 43.66089417)}"
-15286,6130,GO-20209012392,THEFT UNDER,2020-05-01T00:00:00,2020,May,Friday,1,122,19,2020-05-03T00:00:00,2020,May,Sunday,3,124,15,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,FX3,RG,18,BLK,900.0,STOLEN,15241,"{'type': 'Point', 'coordinates': (-79.40583441, 43.65867014)}"
-15287,13115,GO-20171891457,THEFT UNDER - BICYCLE,2017-09-14T00:00:00,2017,September,Thursday,14,257,21,2017-10-19T00:00:00,2017,October,Thursday,19,292,7,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,,MT,0,,600.0,STOLEN,15242,"{'type': 'Point', 'coordinates': (-79.40237577, 43.66385178)}"
-15288,9752,GO-20159003439,THEFT UNDER,2015-06-08T00:00:00,2015,June,Monday,8,159,10,2015-06-08T00:00:00,2015,June,Monday,8,159,15,D52,Toronto,79,University (79),Universities / Colleges,Educational,KH,,OT,28,GRY,750.0,STOLEN,15243,"{'type': 'Point', 'coordinates': (-79.39112492, 43.66060888)}"
-15289,13119,GO-20171930669,THEFT UNDER - BICYCLE,2017-09-21T00:00:00,2017,September,Thursday,21,264,6,2017-10-25T00:00:00,2017,October,Wednesday,25,298,9,D52,Toronto,79,University (79),Universities / Colleges,Educational,CCM,,MT,0,,150.0,STOLEN,15244,"{'type': 'Point', 'coordinates': (-79.40137171, 43.66130203)}"
-15290,13122,GO-20179018355,THEFT UNDER - BICYCLE,2017-10-27T00:00:00,2017,October,Friday,27,300,5,2017-10-27T00:00:00,2017,October,Friday,27,300,18,D52,Toronto,79,University (79),Universities / Colleges,Educational,TR,6500,MT,9,RED,0.0,STOLEN,15245,"{'type': 'Point', 'coordinates': (-79.39734175, 43.66803279)}"
-15291,13127,GO-20172058712,THEFT UNDER - BICYCLE,2017-09-28T00:00:00,2017,September,Thursday,28,271,16,2017-11-14T00:00:00,2017,November,Tuesday,14,318,7,D52,Toronto,79,University (79),Universities / Colleges,Educational,SOLO ROCK,,FO,0,BLK,2000.0,STOLEN,15246,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-15292,13128,GO-20173000047,THEFT UNDER - BICYCLE,2017-11-13T00:00:00,2017,November,Monday,13,317,18,2017-11-15T00:00:00,2017,November,Wednesday,15,319,1,D52,Toronto,79,University (79),Schools During Un-Supervised Activity,Educational,DIAMONDBACK,,MT,27,GLD,500.0,STOLEN,15247,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-15293,13134,GO-20173175010,THEFT UNDER - BICYCLE,2017-10-06T00:00:00,2017,October,Friday,6,279,16,2017-12-11T00:00:00,2017,December,Monday,11,345,13,D52,Toronto,79,University (79),Universities / Colleges,Educational,CANNONDALE,,OT,0,,165.0,STOLEN,15248,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-15294,13139,GO-2018160903,THEFT UNDER - BICYCLE,2017-11-20T00:00:00,2017,November,Monday,20,324,17,2018-01-26T00:00:00,2018,January,Friday,26,26,9,D52,Toronto,79,University (79),Universities / Colleges,Educational,INFINITY\,COSTCO,RG,0,GRYRED,300.0,STOLEN,15249,"{'type': 'Point', 'coordinates': (-79.39832557, 43.66783119)}"
-15295,13141,GO-2018233043,THEFT UNDER - BICYCLE,2018-01-25T00:00:00,2018,January,Thursday,25,25,20,2018-02-06T00:00:00,2018,February,Tuesday,6,37,13,D52,Toronto,79,University (79),Universities / Colleges,Educational,TREK,,MT,18,,700.0,STOLEN,15250,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-15296,13144,GO-2018395130,THEFT UNDER - BICYCLE,2018-02-17T00:00:00,2018,February,Saturday,17,48,0,2018-03-03T00:00:00,2018,March,Saturday,3,62,7,D52,Toronto,79,University (79),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,SUPER CYCLE,OT,0,GRN,50.0,STOLEN,15251,"{'type': 'Point', 'coordinates': (-79.40149998, 43.66716143)}"
-15297,13146,GO-2018519401,THEFT UNDER - BICYCLE,2018-03-13T00:00:00,2018,March,Tuesday,13,72,14,2018-03-22T00:00:00,2018,March,Thursday,22,81,12,D52,Toronto,79,University (79),Universities / Colleges,Educational,UNKNOWN MAKE,,MT,0,BLUWHI,500.0,STOLEN,15252,"{'type': 'Point', 'coordinates': (-79.40170888, 43.66215594)}"
-15298,13147,GO-20189009641,THEFT UNDER - BICYCLE,2018-03-26T00:00:00,2018,March,Monday,26,85,16,2018-03-26T00:00:00,2018,March,Monday,26,85,18,D52,Toronto,79,University (79),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,TR,,MT,21,GRY,800.0,STOLEN,15253,"{'type': 'Point', 'coordinates': (-79.39348694, 43.66726478)}"
-15299,13153,GO-20189014317,THEFT UNDER - BICYCLE,2018-05-08T00:00:00,2018,May,Tuesday,8,128,22,2018-05-09T00:00:00,2018,May,Wednesday,9,129,16,D52,Toronto,79,University (79),Universities / Colleges,Educational,GI,,OT,24,LBL,640.0,STOLEN,15254,"{'type': 'Point', 'coordinates': (-79.40137171, 43.66130203)}"
-15300,13157,GO-2018895826,THEFT UNDER - BICYCLE,2018-05-10T00:00:00,2018,May,Thursday,10,130,21,2018-05-18T00:00:00,2018,May,Friday,18,138,11,D52,Toronto,79,University (79),Universities / Colleges,Educational,CCM,SAVAGE,OT,0,GRYRED,,STOLEN,15255,"{'type': 'Point', 'coordinates': (-79.39676402, 43.66012322)}"
-15301,13165,GO-20189017554,THEFT UNDER - BICYCLE,2018-06-05T00:00:00,2018,June,Tuesday,5,156,22,2018-06-06T00:00:00,2018,June,Wednesday,6,157,0,D52,Toronto,79,University (79),Schools During Un-Supervised Activity,Educational,UK,,RC,1,WHI,0.0,STOLEN,15256,"{'type': 'Point', 'coordinates': (-79.39867107, 43.66007559)}"
-15302,13190,GO-20181463904,THEFT UNDER - BICYCLE,2018-08-01T00:00:00,2018,August,Wednesday,1,213,8,2018-08-09T00:00:00,2018,August,Thursday,9,221,14,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,ATX2,MT,0,BLK,599.0,STOLEN,15257,"{'type': 'Point', 'coordinates': (-79.40137171, 43.66130203)}"
-15303,13213,GO-20189030152,THEFT UNDER - BICYCLE,2018-09-12T00:00:00,2018,September,Wednesday,12,255,15,2018-09-12T00:00:00,2018,September,Wednesday,12,255,19,D52,Toronto,79,University (79),Universities / Colleges,Educational,OT,SIRRUS EXPERT,RG,8,GRY,1500.0,STOLEN,15258,"{'type': 'Point', 'coordinates': (-79.39734175, 43.66803279)}"
-15304,13225,GO-20181955486,THEFT UNDER - BICYCLE,2018-10-20T00:00:00,2018,October,Saturday,20,293,18,2018-10-23T00:00:00,2018,October,Tuesday,23,296,13,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,FIXIE,MT,1,BLK,,STOLEN,15259,"{'type': 'Point', 'coordinates': (-79.39734175, 43.66803279)}"
-15305,13229,GO-20182085449,THEFT UNDER - BICYCLE,2018-11-06T00:00:00,2018,November,Tuesday,6,310,9,2018-11-12T00:00:00,2018,November,Monday,12,316,11,D52,Toronto,79,University (79),Universities / Colleges,Educational,CANNONDALE,S5,MT,0,BLKBLU,600.0,STOLEN,15260,"{'type': 'Point', 'coordinates': (-79.39894426, 43.66543776)}"
-15306,10176,GO-20159005339,THEFT UNDER,2015-07-25T00:00:00,2015,July,Saturday,25,206,22,2015-08-04T00:00:00,2015,August,Tuesday,4,216,21,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,DEW,RG,13,BLK,250.0,STOLEN,15261,"{'type': 'Point', 'coordinates': (-79.40039038, 43.65405001)}"
-15307,15684,GO-20199028344,THEFT UNDER,2019-08-31T00:00:00,2019,August,Saturday,31,243,7,2019-08-31T00:00:00,2019,August,Saturday,31,243,13,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,OT,CUSTOM,RC,20,,300.0,STOLEN,15262,"{'type': 'Point', 'coordinates': (-79.3974349, 43.65650586)}"
-15308,21327,GO-20189025231,THEFT UNDER - BICYCLE,2018-08-03T00:00:00,2018,August,Friday,3,215,2,2018-08-05T00:00:00,2018,August,Sunday,5,217,23,D14,Toronto,78,Kensington-Chinatown (78),Bar / Restaurant,Commercial,TR,,MT,35,MRN,1000.0,STOLEN,15263,"{'type': 'Point', 'coordinates': (-79.39634181, 43.64876464)}"
-15309,2113,GO-2018557303,THEFT UNDER - BICYCLE,2018-01-08T00:00:00,2018,January,Monday,8,8,9,2018-03-28T00:00:00,2018,March,Wednesday,28,87,8,D52,Toronto,79,University (79),Universities / Colleges,Educational,RHINO,,MT,0,GRNGRY,150.0,STOLEN,15264,"{'type': 'Point', 'coordinates': (-79.39988102, 43.65980157)}"
-15310,18216,GO-20171038437,THEFT UNDER - BICYCLE,2017-06-11T00:00:00,2017,June,Sunday,11,162,10,2017-06-11T00:00:00,2017,June,Sunday,11,162,15,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CANNONDALE,F2000,MT,18,BLK,600.0,STOLEN,15265,"{'type': 'Point', 'coordinates': (-79.40397083000002, 43.64718733)}"
-15311,13265,GO-20199021241,THEFT UNDER,2019-07-05T00:00:00,2019,July,Friday,5,186,16,2019-07-06T00:00:00,2019,July,Saturday,6,187,16,D52,Toronto,79,University (79),Universities / Colleges,Educational,BI,BIANCHI,RC,10,RED,400.0,STOLEN,15266,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-15312,13268,GO-20143147722,THEFT UNDER,2014-10-21T00:00:00,2014,October,Tuesday,21,294,11,2014-10-21T00:00:00,2014,October,Tuesday,21,294,15,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,,MT,21,BLURED,150.0,STOLEN,15267,"{'type': 'Point', 'coordinates': (-79.39348694, 43.66726478)}"
-15313,13294,GO-20159002621,THEFT UNDER,2015-05-11T00:00:00,2015,May,Monday,11,131,8,2015-05-11T00:00:00,2015,May,Monday,11,131,22,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SM,TO,21,PLE,900.0,STOLEN,15270,"{'type': 'Point', 'coordinates': (-79.40266823, 43.66690503)}"
-15314,13307,GO-2015962016,THEFT UNDER,2015-06-05T00:00:00,2015,June,Friday,5,156,17,2015-06-08T00:00:00,2015,June,Monday,8,159,19,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,,OT,0,,60.0,STOLEN,15271,"{'type': 'Point', 'coordinates': (-79.40207036, 43.66305191)}"
-15315,13308,GO-2015973090,THEFT UNDER,2015-06-08T00:00:00,2015,June,Monday,8,159,22,2015-06-10T00:00:00,2015,June,Wednesday,10,161,14,D52,Toronto,79,University (79),Universities / Colleges,Educational,GIANT,,OT,0,BLUWHI,100.0,STOLEN,15272,"{'type': 'Point', 'coordinates': (-79.39934598, 43.66172465)}"
-15316,13316,GO-20151071534,THEFT UNDER,2015-06-19T00:00:00,2015,June,Friday,19,170,22,2015-06-25T00:00:00,2015,June,Thursday,25,176,16,D52,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,CROSSROADS,OT,18,BLU,800.0,STOLEN,15273,"{'type': 'Point', 'coordinates': (-79.40067317, 43.66506891)}"
-15317,13328,GO-20151388185,THEFT UNDER,2015-08-10T00:00:00,2015,August,Monday,10,222,17,2015-08-13T00:00:00,2015,August,Thursday,13,225,9,D52,Toronto,79,University (79),Universities / Colleges,Educational,HUFFY,,OT,0,GRY,90.0,STOLEN,15274,"{'type': 'Point', 'coordinates': (-79.40137171, 43.66130203)}"
-15318,13336,GO-20159006767,THEFT UNDER,2015-09-04T00:00:00,2015,September,Friday,4,247,14,2015-09-04T00:00:00,2015,September,Friday,4,247,17,D52,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,OT,TS1100,RG,18,RED,0.0,STOLEN,15275,"{'type': 'Point', 'coordinates': (-79.40307045, 43.6655101)}"
-15319,13337,GO-20159006767,THEFT UNDER,2015-09-04T00:00:00,2015,September,Friday,4,247,14,2015-09-04T00:00:00,2015,September,Friday,4,247,17,D52,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,DB,,MT,18,PLE,0.0,STOLEN,15276,"{'type': 'Point', 'coordinates': (-79.40307045, 43.6655101)}"
-15320,13341,GO-20151616637,THEFT UNDER,2015-09-16T00:00:00,2015,September,Wednesday,16,259,17,2015-09-21T00:00:00,2015,September,Monday,21,264,8,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,,MT,0,BLKGRN,600.0,STOLEN,15277,"{'type': 'Point', 'coordinates': (-79.39570335, 43.66468636)}"
-15321,13351,GO-20152146254,THEFT UNDER,2015-11-23T00:00:00,2015,November,Monday,23,327,21,2015-12-15T00:00:00,2015,December,Tuesday,15,349,8,D52,Toronto,79,University (79),Universities / Colleges,Educational,GIANT,,MT,0,REDBLK,600.0,STOLEN,15278,"{'type': 'Point', 'coordinates': (-79.39676402, 43.66012322)}"
-15322,13352,GO-20152146721,THEFT UNDER,2015-11-25T00:00:00,2015,November,Wednesday,25,329,0,2015-12-15T00:00:00,2015,December,Tuesday,15,349,9,D52,Toronto,79,University (79),Universities / Colleges,Educational,SCHWINN,SOTO,OT,0,SIL,385.0,STOLEN,15279,"{'type': 'Point', 'coordinates': (-79.39404835, 43.65906999)}"
-15323,13354,GO-20152159854,THEFT UNDER,2015-11-30T00:00:00,2015,November,Monday,30,334,18,2015-12-17T00:00:00,2015,December,Thursday,17,351,9,D52,Toronto,79,University (79),Universities / Colleges,Educational,SPECIALIZED,,RG,0,BLU,80.0,STOLEN,15280,"{'type': 'Point', 'coordinates': (-79.40067317, 43.66506891)}"
-15324,13362,GO-2016613784,THEFT UNDER - BICYCLE,2016-03-30T00:00:00,2016,March,Wednesday,30,90,2,2016-04-11T00:00:00,2016,April,Monday,11,102,9,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,HOOLIGANS,OT,21,GRNDGR,200.0,STOLEN,15281,"{'type': 'Point', 'coordinates': (-79.39676402, 43.66012322)}"
-15325,13372,GO-20169004439,THEFT UNDER,2016-05-12T00:00:00,2016,May,Thursday,12,133,12,2016-05-12T00:00:00,2016,May,Thursday,12,133,19,D52,Toronto,79,University (79),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,TRESHOLD A1 FOR,TO,11,TRQ,1600.0,STOLEN,15282,"{'type': 'Point', 'coordinates': (-79.39988102, 43.65980157)}"
-15326,13373,GO-2016872115,THEFT UNDER,2016-05-20T00:00:00,2016,May,Friday,20,141,19,2016-05-20T00:00:00,2016,May,Friday,20,141,23,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,OT,18,RED,,STOLEN,15283,"{'type': 'Point', 'coordinates': (-79.39348694, 43.66726478)}"
-15327,13403,GO-20161424315,THEFT UNDER - BICYCLE,2016-07-22T00:00:00,2016,July,Friday,22,204,17,2016-08-12T00:00:00,2016,August,Friday,12,225,18,D52,Toronto,79,University (79),Universities / Colleges,Educational,TREK,,MT,21,BLU,200.0,STOLEN,15284,"{'type': 'Point', 'coordinates': (-79.3934451, 43.65919971)}"
-15328,13412,GO-20161542969,THEFT UNDER - BICYCLE,2016-08-27T00:00:00,2016,August,Saturday,27,240,7,2016-08-31T00:00:00,2016,August,Wednesday,31,244,9,D52,Toronto,79,University (79),Universities / Colleges,Educational,FELT,,OT,16,WHI,500.0,STOLEN,15285,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-15329,13424,GO-20161724323,THEFT UNDER - BICYCLE,2016-09-25T00:00:00,2016,September,Sunday,25,269,20,2016-09-28T00:00:00,2016,September,Wednesday,28,272,10,D52,Toronto,79,University (79),Universities / Colleges,Educational,GIANT,TCR COMPOSITE,RG,10,BLKYEL,800.0,STOLEN,15286,"{'type': 'Point', 'coordinates': (-79.39112492, 43.66060888)}"
-15330,13434,GO-20162050684,THEFT UNDER - BICYCLE,2016-11-10T00:00:00,2016,November,Thursday,10,315,11,2016-11-18T00:00:00,2016,November,Friday,18,323,15,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,TRILON,MT,0,,700.0,STOLEN,15288,"{'type': 'Point', 'coordinates': (-79.40207036, 43.66305191)}"
-15331,13435,GO-20169014024,THEFT UNDER,2016-11-28T00:00:00,2016,November,Monday,28,333,12,2016-11-30T00:00:00,2016,November,Wednesday,30,335,8,D52,Toronto,79,University (79),Universities / Colleges,Educational,OT,,RG,21,GRY,1000.0,STOLEN,15289,"{'type': 'Point', 'coordinates': (-79.39699693, 43.65848407)}"
-15332,13436,GO-20179000132,THEFT UNDER - BICYCLE,2017-01-03T00:00:00,2017,January,Tuesday,3,3,16,2017-01-04T00:00:00,2017,January,Wednesday,4,4,10,D52,Toronto,79,University (79),Universities / Colleges,Educational,KO,DOOR RPIZE 5,RG,12,,899.0,STOLEN,15290,"{'type': 'Point', 'coordinates': (-79.39867107, 43.66007559)}"
-15333,13437,GO-20179000727,THEFT UNDER - BICYCLE,2017-01-16T00:00:00,2017,January,Monday,16,16,13,2017-01-16T00:00:00,2017,January,Monday,16,16,20,D52,Toronto,79,University (79),Universities / Colleges,Educational,FJ,CROSSTOWN 4.0,TO,7,PLE,395.0,STOLEN,15291,"{'type': 'Point', 'coordinates': (-79.39112492, 43.66060888)}"
-15334,13439,GO-2017140505,THEFT UNDER,2017-01-18T00:00:00,2017,January,Wednesday,18,18,16,2017-01-23T00:00:00,2017,January,Monday,23,23,13,D52,Toronto,79,University (79),Universities / Colleges,Educational,EMMO,,SC,0,,2500.0,STOLEN,15292,"{'type': 'Point', 'coordinates': (-79.39901086, 43.66089417)}"
-15335,13442,GO-2017686041,THEFT UNDER - BICYCLE,2017-04-06T00:00:00,2017,April,Thursday,6,96,13,2017-04-19T00:00:00,2017,April,Wednesday,19,109,11,D52,Toronto,79,University (79),Universities / Colleges,Educational,DEVINCI,,OT,0,ONGBLK,800.0,STOLEN,15293,"{'type': 'Point', 'coordinates': (-79.39934598, 43.66172465)}"
-15336,13445,GO-20179005092,THEFT UNDER,2017-04-20T00:00:00,2017,April,Thursday,20,110,21,2017-04-22T00:00:00,2017,April,Saturday,22,112,15,D52,Toronto,79,University (79),Universities / Colleges,Educational,UK,,EL,50,GRN,1300.0,STOLEN,15294,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-15337,13451,GO-2017808756,THEFT UNDER - BICYCLE,2017-04-21T00:00:00,2017,April,Friday,21,111,16,2017-05-08T00:00:00,2017,May,Monday,8,128,10,D52,Toronto,79,University (79),Universities / Colleges,Educational,SUPERCYCLE,,OT,0,,112.0,STOLEN,15295,"{'type': 'Point', 'coordinates': (-79.39734175, 43.66803279)}"
-15338,13454,GO-2017883990,PROPERTY - FOUND,2017-05-19T00:00:00,2017,May,Friday,19,139,14,2017-05-19T00:00:00,2017,May,Friday,19,139,14,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CANNONDALE,QUICK CX,MT,1,SIL,,RECOVERED,15296,"{'type': 'Point', 'coordinates': (-79.4000091, 43.65794797)}"
-15339,13455,GO-20179006740,THEFT UNDER - BICYCLE,2017-05-08T00:00:00,2017,May,Monday,8,128,0,2017-05-21T00:00:00,2017,May,Sunday,21,141,17,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,HARDROCK,MT,21,DGR,350.0,STOLEN,15297,"{'type': 'Point', 'coordinates': (-79.40101624, 43.66593602)}"
-15340,13465,GO-20171121117,THEFT UNDER - BICYCLE,2017-06-19T00:00:00,2017,June,Monday,19,170,17,2017-06-23T00:00:00,2017,June,Friday,23,174,11,D52,Toronto,79,University (79),Universities / Colleges,Educational,SUPERCYCLE,,MT,0,,100.0,STOLEN,15298,"{'type': 'Point', 'coordinates': (-79.39112492, 43.66060888)}"
-15341,13612,GO-20142209678,THEFT UNDER,2014-05-13T00:00:00,2014,May,Tuesday,13,133,17,2014-06-03T00:00:00,2014,June,Tuesday,3,154,7,D52,Toronto,79,University (79),Universities / Colleges,Educational,CCM,ORION,OT,21,BLKBLU,305.0,STOLEN,15299,"{'type': 'Point', 'coordinates': (-79.39979751, 43.66751644)}"
-15342,13614,GO-20142248697,THEFT UNDER,2014-06-08T00:00:00,2014,June,Sunday,8,159,15,2014-06-08T00:00:00,2014,June,Sunday,8,159,18,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,PRESTO,RC,21,,370.0,STOLEN,15300,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-15343,13616,GO-20142299996,THEFT UNDER,2014-06-10T00:00:00,2014,June,Tuesday,10,161,17,2014-06-16T00:00:00,2014,June,Monday,16,167,7,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,UNKNOWN,MT,18,BLK,88.0,STOLEN,15301,"{'type': 'Point', 'coordinates': (-79.39979751, 43.66751644)}"
-15344,13648,GO-20142746954,THEFT UNDER,2014-08-20T00:00:00,2014,August,Wednesday,20,232,8,2014-08-21T00:00:00,2014,August,Thursday,21,233,14,D52,Toronto,79,University (79),Universities / Colleges,Educational,CANNONDALE,CAAD4 R400,OT,1,DBL,640.0,STOLEN,15302,"{'type': 'Point', 'coordinates': (-79.39979751, 43.66751644)}"
-15345,13649,GO-20149006129,THEFT UNDER,2014-08-07T00:00:00,2014,August,Thursday,7,219,17,2014-08-20T00:00:00,2014,August,Wednesday,20,232,12,D52,Toronto,79,University (79),Universities / Colleges,Educational,UK,CX,RG,21,BLK,1300.0,STOLEN,15303,"{'type': 'Point', 'coordinates': (-79.39894426, 43.66543776)}"
-15346,13653,GO-20142887126,THEFT UNDER,2014-09-09T00:00:00,2014,September,Tuesday,9,252,9,2014-09-11T00:00:00,2014,September,Thursday,11,254,8,D52,Toronto,79,University (79),Universities / Colleges,Educational,CANNONDALE,UNKNOWN,MT,24,ONG,600.0,STOLEN,15304,"{'type': 'Point', 'coordinates': (-79.39676402, 43.66012322)}"
-15347,13659,GO-20142972253,THEFT UNDER,2014-09-19T00:00:00,2014,September,Friday,19,262,9,2014-09-24T00:00:00,2014,September,Wednesday,24,267,9,D52,Toronto,79,University (79),Universities / Colleges,Educational,RALEIGH,UNKNOWN,MT,21,BLU,150.0,STOLEN,15305,"{'type': 'Point', 'coordinates': (-79.39676402, 43.66012322)}"
-15348,14288,GO-20209018723,THEFT UNDER,2020-07-26T00:00:00,2020,July,Sunday,26,208,18,2020-07-27T00:00:00,2020,July,Monday,27,209,21,D14,Toronto,79,University (79),Retirement Home,Other,UK,,RG,1,LBL,350.0,STOLEN,15306,"{'type': 'Point', 'coordinates': (-79.40599871, 43.66226023)}"
-15349,14292,GO-20201448886,THEFT UNDER - BICYCLE,2020-08-02T00:00:00,2020,August,Sunday,2,215,23,2020-08-03T00:00:00,2020,August,Monday,3,216,20,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,U/K,,OT,0,TRQ,,STOLEN,15307,"{'type': 'Point', 'coordinates': (-79.40244418000002, 43.65929925)}"
-15350,14317,GO-20209023243,THEFT UNDER,2020-09-13T00:00:00,2020,September,Sunday,13,257,17,2020-09-14T00:00:00,2020,September,Monday,14,258,15,D14,Toronto,79,University (79),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,CATALYST 4,MT,21,BLK,500.0,STOLEN,15308,"{'type': 'Point', 'coordinates': (-79.40540813, 43.6641145)}"
-15351,14323,GO-20201884020,THEFT OF EBIKE UNDER $5000,2020-10-01T00:00:00,2020,October,Thursday,1,275,14,2020-10-04T00:00:00,2020,October,Sunday,4,278,10,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CUBE,ACID 1,EL,0,BLK,3500.0,STOLEN,15309,"{'type': 'Point', 'coordinates': (-79.40904976, 43.65980581)}"
-15352,14328,GO-20209026409,THEFT UNDER,2020-10-14T00:00:00,2020,October,Wednesday,14,288,0,2020-10-14T00:00:00,2020,October,Wednesday,14,288,12,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,NEXUS 8,RG,8,BLK,1250.0,STOLEN,15310,"{'type': 'Point', 'coordinates': (-79.40743417, 43.66591416)}"
-15353,14464,GO-20189033281,THEFT UNDER - BICYCLE,2018-10-08T00:00:00,2018,October,Monday,8,281,0,2018-10-08T00:00:00,2018,October,Monday,8,281,20,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,SU,HOOLIGAN,MT,21,BLU,0.0,STOLEN,15311,"{'type': 'Point', 'coordinates': (-79.40478414, 43.66249403)}"
-15354,14477,GO-20182057603,B&E W'INTENT,2018-11-07T00:00:00,2018,November,Wednesday,7,311,20,2018-11-08T00:00:00,2018,November,Thursday,8,312,10,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KONA\,,MT,18,BRZGRY,1500.0,STOLEN,15312,"{'type': 'Point', 'coordinates': (-79.40445971, 43.66428104)}"
-15355,14551,GO-20199024276,THEFT UNDER - BICYCLE,2019-07-29T00:00:00,2019,July,Monday,29,210,13,2019-07-29T00:00:00,2019,July,Monday,29,210,18,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,OSLO,OT,21,BLU,1000.0,STOLEN,15313,"{'type': 'Point', 'coordinates': (-79.40316102, 43.65738236)}"
-15356,14567,GO-20199027499,THEFT UNDER - BICYCLE,2019-08-21T00:00:00,2019,August,Wednesday,21,233,10,2019-08-24T00:00:00,2019,August,Saturday,24,236,12,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,21,BLK,240.0,STOLEN,15314,"{'type': 'Point', 'coordinates': (-79.40180671, 43.65765229)}"
-15357,14610,GO-20199042234,THEFT UNDER,2019-11-23T00:00:00,2019,November,Saturday,23,327,1,2019-12-28T00:00:00,2019,December,Saturday,28,362,16,D14,Toronto,79,University (79),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,CANNONDALE QUIC,RG,16,BLK,1900.0,STOLEN,15315,"{'type': 'Point', 'coordinates': (-79.4078215, 43.66005724)}"
-15358,14625,GO-20209010911,THEFT UNDER,2020-04-10T00:00:00,2020,April,Friday,10,101,21,2020-04-11T00:00:00,2020,April,Saturday,11,102,14,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,JULIET,RG,1,BLK,500.0,STOLEN,15316,"{'type': 'Point', 'coordinates': (-79.40599871, 43.66226023)}"
-15359,14673,GO-20179010885,THEFT UNDER,2017-07-23T00:00:00,2017,July,Sunday,23,204,19,2017-07-24T00:00:00,2017,July,Monday,24,205,1,D14,Toronto,79,University (79),Schools During Supervised Activity,Educational,OT,SILVERSTONE Q,RC,16,RED,500.0,STOLEN,15317,"{'type': 'Point', 'coordinates': (-79.41021074, 43.66266863)}"
-15360,14699,GO-20179013174,THEFT UNDER - BICYCLE,2017-08-22T00:00:00,2017,August,Tuesday,22,234,23,2017-08-23T00:00:00,2017,August,Wednesday,23,235,19,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,VOLTAGE,RG,21,DGR,700.0,STOLEN,15318,"{'type': 'Point', 'coordinates': (-79.40244418000002, 43.65929925)}"
-15361,14727,GO-20179015771,THEFT UNDER - BICYCLE,2017-09-23T00:00:00,2017,September,Saturday,23,266,22,2017-09-25T00:00:00,2017,September,Monday,25,268,20,D14,Toronto,79,University (79),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KH,,RG,1,BLK,520.0,STOLEN,15319,"{'type': 'Point', 'coordinates': (-79.40713565, 43.65840411)}"
-15362,14762,GO-20189006517,THEFT UNDER,2018-02-28T00:00:00,2018,February,Wednesday,28,59,0,2018-03-01T00:00:00,2018,March,Thursday,1,60,17,D14,Toronto,79,University (79),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RA,SC200,RG,21,BLK,350.0,STOLEN,15320,"{'type': 'Point', 'coordinates': (-79.40531586, 43.66635847)}"
-15363,14774,GO-20189012670,THEFT UNDER - BICYCLE,2018-04-23T00:00:00,2018,April,Monday,23,113,19,2018-04-24T00:00:00,2018,April,Tuesday,24,114,13,D14,Toronto,79,University (79),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CANNONDALE,QUICK 13,RG,10,ONG,1150.0,STOLEN,15321,"{'type': 'Point', 'coordinates': (-79.40583441, 43.65867014)}"
-15364,14779,GO-20189014815,THEFT UNDER - BICYCLE,2018-05-09T00:00:00,2018,May,Wednesday,9,129,22,2018-05-14T00:00:00,2018,May,Monday,14,134,8,D14,Toronto,79,University (79),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,EM,,EL,20,RED,950.0,STOLEN,15322,"{'type': 'Point', 'coordinates': (-79.41117403, 43.66511537)}"
-15365,14780,GO-20189014815,THEFT UNDER - BICYCLE,2018-05-09T00:00:00,2018,May,Wednesday,9,129,22,2018-05-14T00:00:00,2018,May,Monday,14,134,8,D14,Toronto,79,University (79),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,EL,20,WHI,1200.0,STOLEN,15323,"{'type': 'Point', 'coordinates': (-79.41117403, 43.66511537)}"
-15366,14789,GO-20189016456,THEFT UNDER - BICYCLE,2018-05-25T00:00:00,2018,May,Friday,25,145,20,2018-05-28T00:00:00,2018,May,Monday,28,148,0,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,HAHANNA,MT,8,RED,500.0,STOLEN,15324,"{'type': 'Point', 'coordinates': (-79.40531586, 43.66635847)}"
-15367,14816,GO-20189021765,THEFT UNDER - BICYCLE,2018-07-09T00:00:00,2018,July,Monday,9,190,12,2018-07-09T00:00:00,2018,July,Monday,9,190,18,D14,Toronto,79,University (79),Schools During Supervised Activity,Educational,GT,AGGRESSOR COMP,MT,10,BLK,600.0,STOLEN,15325,"{'type': 'Point', 'coordinates': (-79.41021074, 43.66266863)}"
-15368,14817,GO-20189021781,THEFT UNDER - BICYCLE,2018-07-09T00:00:00,2018,July,Monday,9,190,17,2018-07-09T00:00:00,2018,July,Monday,9,190,19,D14,Toronto,79,University (79),Convenience Stores,Commercial,GI,ESCAPE 3,OT,24,BLK,520.0,STOLEN,15326,"{'type': 'Point', 'coordinates': (-79.40531586, 43.66635847)}"
-15369,15330,GO-20142424744,THEFT UNDER,2014-06-30T00:00:00,2014,June,Monday,30,181,6,2014-07-03T00:00:00,2014,July,Thursday,3,184,20,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,UNKNOWN,EL,0,WHI,1200.0,STOLEN,15327,"{'type': 'Point', 'coordinates': (-79.40278753, 43.65745805)}"
-15370,15338,GO-20149005046,THEFT UNDER,2014-07-16T00:00:00,2014,July,Wednesday,16,197,13,2014-07-16T00:00:00,2014,July,Wednesday,16,197,17,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EM,EB-70,EL,32,RED,800.0,STOLEN,15328,"{'type': 'Point', 'coordinates': (-79.40583441, 43.65867014)}"
-15371,15362,GO-20149006853,THEFT UNDER,2014-09-12T00:00:00,2014,September,Friday,12,255,20,2014-09-13T00:00:00,2014,September,Saturday,13,256,12,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RM,VAPOR,MT,21,,,STOLEN,15329,"{'type': 'Point', 'coordinates': (-79.41067759, 43.66382976)}"
-15372,15697,GO-20199029782,THEFT UNDER - BICYCLE,2019-09-01T00:00:00,2019,September,Sunday,1,244,13,2019-09-12T00:00:00,2019,September,Thursday,12,255,15,D52,Toronto,78,Kensington-Chinatown (78),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UK,BLACK DUTCHI 7I,RG,6,BLK,900.0,STOLEN,15330,"{'type': 'Point', 'coordinates': (-79.39628172000002, 43.65672386)}"
-15373,15702,GO-20191778208,PROPERTY - FOUND,2019-09-16T00:00:00,2019,September,Monday,16,259,10,2019-09-16T00:00:00,2019,September,Monday,16,259,10,D52,Toronto,78,Kensington-Chinatown (78),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CCM,,RG,18,18,,UNKNOWN,15331,"{'type': 'Point', 'coordinates': (-79.39033931, 43.65450322)}"
-15374,15715,GO-20199033033,THEFT UNDER,2019-10-07T00:00:00,2019,October,Monday,7,280,17,2019-10-07T00:00:00,2019,October,Monday,7,280,23,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,FUEL EX-7,MT,12,SIL,4000.0,STOLEN,15332,"{'type': 'Point', 'coordinates': (-79.39366252, 43.64935047)}"
-15375,15720,GO-20199034051,THEFT UNDER,2019-10-15T00:00:00,2019,October,Tuesday,15,288,8,2019-10-16T00:00:00,2019,October,Wednesday,16,289,8,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,20,SIL,500.0,STOLEN,15333,"{'type': 'Point', 'coordinates': (-79.38984563, 43.65622357)}"
-15376,15735,GO-20199039229,THEFT UNDER,2019-11-28T00:00:00,2019,November,Thursday,28,332,18,2019-11-29T00:00:00,2019,November,Friday,29,333,1,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RC,1,WHI,500.0,STOLEN,15334,"{'type': 'Point', 'coordinates': (-79.38747649, 43.65067257)}"
-15377,16188,GO-20179015751,THEFT UNDER - BICYCLE,2017-09-18T00:00:00,2017,September,Monday,18,261,22,2017-09-25T00:00:00,2017,September,Monday,25,268,17,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,OT,RETROSPEC BICYC,RG,1,BLK,400.0,STOLEN,15343,"{'type': 'Point', 'coordinates': (-79.38827434000001, 43.65479006)}"
-15378,15740,GO-20199042041,THEFT UNDER,2019-12-25T00:00:00,2019,December,Wednesday,25,359,16,2019-12-26T00:00:00,2019,December,Thursday,26,360,13,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ALLEZ VITA,RG,21,RED,400.0,STOLEN,15335,"{'type': 'Point', 'coordinates': (-79.39699693, 43.65848407)}"
-15379,15755,GO-20209012467,THEFT UNDER,2020-04-23T00:00:00,2020,April,Thursday,23,114,8,2020-05-04T00:00:00,2020,May,Monday,4,125,15,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,CATALYST 4,MT,21,BLK,800.0,STOLEN,15336,"{'type': 'Point', 'coordinates': (-79.38918474, 43.65468421)}"
-15380,15790,GO-20209017193,THEFT UNDER,2020-07-09T00:00:00,2020,July,Thursday,9,191,12,2020-07-09T00:00:00,2020,July,Thursday,9,191,15,D52,Toronto,78,Kensington-Chinatown (78),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RA,24 INCH,MT,7,ONG,330.0,STOLEN,15337,"{'type': 'Point', 'coordinates': (-79.39775289, 43.65225944)}"
-15381,15842,GO-20209027458,THEFT UNDER,2020-10-23T00:00:00,2020,October,Friday,23,297,10,2020-10-24T00:00:00,2020,October,Saturday,24,298,0,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,TR,8.4 DS,MT,9,BLK,550.0,STOLEN,15338,"{'type': 'Point', 'coordinates': (-79.39628172000002, 43.65672386)}"
-15382,15843,GO-20209027555,THEFT UNDER,2020-10-24T00:00:00,2020,October,Saturday,24,298,13,2020-10-24T00:00:00,2020,October,Saturday,24,298,16,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ALLEGRO,RG,24,BLU,600.0,STOLEN,15339,"{'type': 'Point', 'coordinates': (-79.39340883, 43.6494058)}"
-15383,16107,GO-20209030275,THEFT UNDER,2020-11-21T00:00:00,2020,November,Saturday,21,326,12,2020-11-22T00:00:00,2020,November,Sunday,22,327,11,D52,Toronto,78,Kensington-Chinatown (78),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CUBE,ATTAIN SL,RC,60,BLK,2000.0,STOLEN,15340,"{'type': 'Point', 'coordinates': (-79.39339759, 43.65276389)}"
-15384,16134,GO-20179007192,THEFT UNDER,2017-05-28T00:00:00,2017,May,Sunday,28,148,17,2017-05-29T00:00:00,2017,May,Monday,29,149,17,D52,Toronto,78,Kensington-Chinatown (78),Bar / Restaurant,Commercial,GI,,RG,21,BLK,800.0,STOLEN,15341,"{'type': 'Point', 'coordinates': (-79.39634181, 43.64876464)}"
-15385,16152,GO-20179008984,THEFT UNDER - BICYCLE,2017-05-31T00:00:00,2017,May,Wednesday,31,151,19,2017-06-27T00:00:00,2017,June,Tuesday,27,178,1,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,21,,1200.0,STOLEN,15342,"{'type': 'Point', 'coordinates': (-79.39095898, 43.65603534)}"
-15386,16193,GO-20179016621,THEFT UNDER - BICYCLE,2017-10-05T00:00:00,2017,October,Thursday,5,278,8,2017-10-06T00:00:00,2017,October,Friday,6,279,20,D52,Toronto,78,Kensington-Chinatown (78),Universities / Colleges,Educational,TR,7.3 FX,RG,40,BLK,690.0,STOLEN,15344,"{'type': 'Point', 'coordinates': (-79.39300540000002, 43.6580369)}"
-15387,16195,GO-20179016870,THEFT UNDER,2017-10-09T00:00:00,2017,October,Monday,9,282,19,2017-10-10T00:00:00,2017,October,Tuesday,10,283,14,D52,Toronto,78,Kensington-Chinatown (78),Universities / Colleges,Educational,OT,,TO,1,BLK,500.0,STOLEN,15345,"{'type': 'Point', 'coordinates': (-79.39815878000002, 43.65826015)}"
-15388,16197,GO-20179017245,THEFT UNDER,2017-10-15T00:00:00,2017,October,Sunday,15,288,6,2017-10-15T00:00:00,2017,October,Sunday,15,288,11,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,OT,CROSS TRAIL,MT,8,BLK,700.0,STOLEN,15346,"{'type': 'Point', 'coordinates': (-79.39042227000002, 43.65615784)}"
-15389,16200,GO-20179017524,THEFT UNDER - BICYCLE,2017-10-18T00:00:00,2017,October,Wednesday,18,291,13,2017-10-18T00:00:00,2017,October,Wednesday,18,291,15,D52,Toronto,78,Kensington-Chinatown (78),Bar / Restaurant,Commercial,OT,ELEVATE,EL,40,GRY,2300.0,STOLEN,15347,"{'type': 'Point', 'coordinates': (-79.39955207, 43.65674851)}"
-15390,16206,GO-20179018467,THEFT UNDER,2017-10-28T00:00:00,2017,October,Saturday,28,301,20,2017-10-29T00:00:00,2017,October,Sunday,29,302,17,D52,Toronto,78,Kensington-Chinatown (78),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,,OT,3,CRM,1200.0,STOLEN,15348,"{'type': 'Point', 'coordinates': (-79.39267446, 43.6510011)}"
-15391,21347,GO-20189031777,THEFT UNDER,2018-09-24T00:00:00,2018,September,Monday,24,267,10,2018-09-24T00:00:00,2018,September,Monday,24,267,20,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,RA,RALEIGH-TARANTU,RG,24,SIL,450.0,STOLEN,15349,"{'type': 'Point', 'coordinates': (-79.40006773, 43.64914048000001)}"
-15392,2130,GO-20189010245,THEFT UNDER - BICYCLE,2018-04-01T00:00:00,2018,April,Sunday,1,91,23,2018-04-02T00:00:00,2018,April,Monday,2,92,17,D52,Toronto,79,University (79),Universities / Colleges,Educational,NO,VALENCE A1,RG,22,BLU,1500.0,STOLEN,15350,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-15393,10194,GO-20159005427,THEFT UNDER,2015-08-04T00:00:00,2015,August,Tuesday,4,216,13,2015-08-07T00:00:00,2015,August,Friday,7,219,8,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,MA,PIONEERTRAIL 22,MT,21,DBL,1999.0,STOLEN,15351,"{'type': 'Point', 'coordinates': (-79.39366153, 43.6500431)}"
-15394,18317,GO-20141537073,THEFT UNDER,2014-02-15T00:00:00,2014,February,Saturday,15,46,18,2014-02-15T00:00:00,2014,February,Saturday,15,46,19,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KHS,URBAN EXPRESS,OT,21,BLKGRY,200.0,STOLEN,15352,"{'type': 'Point', 'coordinates': (-79.40397083000002, 43.64718733)}"
-15395,16210,GO-20179020051,THEFT UNDER - BICYCLE,2017-11-20T00:00:00,2017,November,Monday,20,324,14,2017-11-21T00:00:00,2017,November,Tuesday,21,325,18,D52,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,1,BLK,350.0,STOLEN,15353,"{'type': 'Point', 'coordinates': (-79.39692918, 43.65528489)}"
-15396,16213,GO-20179020909,THEFT UNDER,2017-11-28T00:00:00,2017,November,Tuesday,28,332,17,2017-11-30T00:00:00,2017,November,Thursday,30,334,10,D52,Toronto,78,Kensington-Chinatown (78),Universities / Colleges,Educational,KH,,OT,1,DGR,400.0,STOLEN,15354,"{'type': 'Point', 'coordinates': (-79.3906274, 43.65241188)}"
-15397,16233,GO-20189013920,THEFT UNDER,2018-05-05T00:00:00,2018,May,Saturday,5,125,17,2018-05-05T00:00:00,2018,May,Saturday,5,125,19,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,UK,,OT,3,BLU,1000.0,STOLEN,15355,"{'type': 'Point', 'coordinates': (-79.39462359, 43.65576755)}"
-15398,16262,GO-20189023751,THEFT UNDER - BICYCLE,2018-07-24T00:00:00,2018,July,Tuesday,24,205,4,2018-07-24T00:00:00,2018,July,Tuesday,24,205,16,D52,Toronto,78,Kensington-Chinatown (78),Bar / Restaurant,Commercial,GI,,MT,10,,200.0,STOLEN,15356,"{'type': 'Point', 'coordinates': (-79.3934735, 43.65601123)}"
-15399,16266,GO-20189024179,THEFT UNDER - BICYCLE,2018-07-27T00:00:00,2018,July,Friday,27,208,12,2018-07-27T00:00:00,2018,July,Friday,27,208,21,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,1,BLK,140.0,STOLEN,15357,"{'type': 'Point', 'coordinates': (-79.39211621, 43.64968054)}"
-15400,16291,GO-20189031188,THEFT UNDER - BICYCLE,2018-09-19T00:00:00,2018,September,Wednesday,19,262,14,2018-09-19T00:00:00,2018,September,Wednesday,19,262,18,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,KARATE MONKEY,MT,30,ONG,1000.0,STOLEN,15358,"{'type': 'Point', 'coordinates': (-79.38860347, 43.65042088)}"
-15401,16308,GO-20189041411,THEFT UNDER - BICYCLE,2018-12-09T00:00:00,2018,December,Sunday,9,343,18,2018-12-09T00:00:00,2018,December,Sunday,9,343,20,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,15,BLK,1000.0,STOLEN,15359,"{'type': 'Point', 'coordinates': (-79.3938201, 43.65382278)}"
-15402,16312,GO-20199002904,THEFT UNDER - BICYCLE,2019-01-19T00:00:00,2019,January,Saturday,19,19,13,2019-01-21T00:00:00,2019,January,Monday,21,21,18,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,R2,OT,11,GRY,2800.0,STOLEN,15360,"{'type': 'Point', 'coordinates': (-79.39225095, 43.656266970000004)}"
-15403,16316,GO-20199013176,THEFT UNDER,2019-04-27T00:00:00,2019,April,Saturday,27,117,12,2019-04-27T00:00:00,2019,April,Saturday,27,117,13,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,OT,1,,0.0,STOLEN,15361,"{'type': 'Point', 'coordinates': (-79.39955207, 43.65674851)}"
-15404,16318,GO-20199015108,THEFT UNDER,2019-05-15T00:00:00,2019,May,Wednesday,15,135,1,2019-05-15T00:00:00,2019,May,Wednesday,15,135,12,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,OT,FHAST 2.0,MT,10,,2200.0,STOLEN,15362,"{'type': 'Point', 'coordinates': (-79.39339759, 43.65276389)}"
-15405,16319,GO-20199015597,THEFT UNDER,2019-05-16T00:00:00,2019,May,Thursday,16,136,15,2019-05-19T00:00:00,2019,May,Sunday,19,139,11,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ALLEZ ELITE,RC,8,RED,1500.0,STOLEN,15363,"{'type': 'Point', 'coordinates': (-79.3974349, 43.65650586)}"
-15406,16323,GO-20191069408,THEFT UNDER,2019-06-10T00:00:00,2019,June,Monday,10,161,12,2019-06-10T00:00:00,2019,June,Monday,10,161,19,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KHS,ELITE 300,MT,7,BLKRED,600.0,STOLEN,15364,"{'type': 'Point', 'coordinates': (-79.39109731, 43.64989719)}"
-15407,16331,GO-20199021588,THEFT UNDER,2019-06-27T00:00:00,2019,June,Thursday,27,178,0,2019-07-09T00:00:00,2019,July,Tuesday,9,190,11,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE,OT,8,GRY,250.0,STOLEN,15365,"{'type': 'Point', 'coordinates': (-79.39628172000002, 43.65672386)}"
-15408,16332,GO-20199021588,THEFT UNDER,2019-06-27T00:00:00,2019,June,Thursday,27,178,0,2019-07-09T00:00:00,2019,July,Tuesday,9,190,11,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,GI,RAPID 3,MT,12,BLK,300.0,STOLEN,15366,"{'type': 'Point', 'coordinates': (-79.39628172000002, 43.65672386)}"
-15409,16333,GO-20199021701,THEFT UNDER,2019-07-09T00:00:00,2019,July,Tuesday,9,190,23,2019-07-10T00:00:00,2019,July,Wednesday,10,191,11,D52,Toronto,78,Kensington-Chinatown (78),Bar / Restaurant,Commercial,DB,WILDWOOD,MT,21,MRN,250.0,STOLEN,15367,"{'type': 'Point', 'coordinates': (-79.396125, 43.65334628)}"
-15410,16371,GO-20199029259,THEFT UNDER,2019-09-04T00:00:00,2019,September,Wednesday,4,247,14,2019-09-09T00:00:00,2019,September,Monday,9,252,11,D52,Toronto,78,Kensington-Chinatown (78),Universities / Colleges,Educational,OT,,OT,24,RED,1097.0,STOLEN,15368,"{'type': 'Point', 'coordinates': (-79.39815878000002, 43.65826015)}"
-15411,9765,GO-2015965066,THEFT UNDER,2015-06-08T00:00:00,2015,June,Monday,8,159,14,2015-06-10T00:00:00,2015,June,Wednesday,10,161,13,D52,Toronto,79,University (79),Universities / Colleges,Educational,KHS,,BM,28,GRY,750.0,STOLEN,15369,"{'type': 'Point', 'coordinates': (-79.39112492, 43.66060888)}"
-15412,16379,GO-20191778203,PROPERTY - FOUND,2019-09-16T00:00:00,2019,September,Monday,16,259,10,2019-09-16T00:00:00,2019,September,Monday,16,259,11,D52,Toronto,78,Kensington-Chinatown (78),"Private Property Structure (Pool, Shed, Detached Garage)",Other,PALOMAR,UNKNOWN,RG,18,YEL,,UNKNOWN,15370,"{'type': 'Point', 'coordinates': (-79.39033931, 43.65450322)}"
-15413,16380,GO-20191778203,PROPERTY - FOUND,2019-09-16T00:00:00,2019,September,Monday,16,259,10,2019-09-16T00:00:00,2019,September,Monday,16,259,11,D52,Toronto,78,Kensington-Chinatown (78),"Private Property Structure (Pool, Shed, Detached Garage)",Other,PALOMAR,,RG,18,YEL,,UNKNOWN,15371,"{'type': 'Point', 'coordinates': (-79.39033931, 43.65450322)}"
-15414,16394,GO-20199032309,THEFT UNDER,2019-10-01T00:00:00,2019,October,Tuesday,1,274,17,2019-10-02T00:00:00,2019,October,Wednesday,2,275,8,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,RA,,RG,3,RED,750.0,STOLEN,15372,"{'type': 'Point', 'coordinates': (-79.39142092, 43.65433318)}"
-15415,16408,GO-20199035846,THEFT UNDER,2019-10-29T00:00:00,2019,October,Tuesday,29,302,0,2019-10-30T00:00:00,2019,October,Wednesday,30,303,13,D52,Toronto,78,Kensington-Chinatown (78),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GF,MARLIN,MT,24,YEL,500.0,STOLEN,15373,"{'type': 'Point', 'coordinates': (-79.39652609, 43.65431521)}"
-15416,16409,GO-20199035846,THEFT UNDER,2019-10-29T00:00:00,2019,October,Tuesday,29,302,0,2019-10-30T00:00:00,2019,October,Wednesday,30,303,13,D52,Toronto,78,Kensington-Chinatown (78),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GF,MARLIN,MT,24,YEL,,STOLEN,15374,"{'type': 'Point', 'coordinates': (-79.39652609, 43.65431521)}"
-15417,16434,GO-20209002363,THEFT UNDER,2020-01-03T00:00:00,2020,January,Friday,3,3,21,2020-01-20T00:00:00,2020,January,Monday,20,20,21,D52,Toronto,78,Kensington-Chinatown (78),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,FX 3 DISC,RG,27,BLK,950.0,STOLEN,15375,"{'type': 'Point', 'coordinates': (-79.39227275, 43.65005482)}"
-15418,16436,GO-2020227735,B&E,2020-02-02T00:00:00,2020,February,Sunday,2,33,4,2020-02-02T00:00:00,2020,February,Sunday,2,33,13,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,DOMANE,TO,28,DBL,4600.0,STOLEN,15376,"{'type': 'Point', 'coordinates': (-79.39161243, 43.65119665)}"
-15419,16440,GO-2020483295,THEFT OF EBIKE UNDER $5000,2020-03-02T00:00:00,2020,March,Monday,2,62,19,2020-03-07T00:00:00,2020,March,Saturday,7,67,17,D52,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,AMEGO,INFINITE,EL,7,BLK,2000.0,STOLEN,15377,"{'type': 'Point', 'coordinates': (-79.39692918, 43.65528489)}"
-15420,16444,GO-2020537314,THEFT UNDER,2020-03-13T00:00:00,2020,March,Friday,13,73,17,2020-03-15T00:00:00,2020,March,Sunday,15,75,0,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,PRE FIX,RG,1,WHI,400.0,STOLEN,15378,"{'type': 'Point', 'coordinates': (-79.39634181, 43.64876464)}"
-15421,16463,GO-20209015586,THEFT UNDER,2020-06-17T00:00:00,2020,June,Wednesday,17,169,5,2020-06-17T00:00:00,2020,June,Wednesday,17,169,18,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,STP2,MT,18,GRY,0.0,STOLEN,15379,"{'type': 'Point', 'coordinates': (-79.38994423, 43.6587011)}"
-15422,16473,GO-20209016928,THEFT UNDER,2020-07-05T00:00:00,2020,July,Sunday,5,187,17,2020-07-06T00:00:00,2020,July,Monday,6,188,11,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,1,BLK,600.0,STOLEN,15380,"{'type': 'Point', 'coordinates': (-79.39227275, 43.65005482)}"
-15423,16489,GO-20209019202,THEFT UNDER,2020-08-01T00:00:00,2020,August,Saturday,1,214,1,2020-08-02T00:00:00,2020,August,Sunday,2,215,13,D52,Toronto,78,Kensington-Chinatown (78),Bar / Restaurant,Commercial,UK,,TO,3,BLK,1200.0,STOLEN,15381,"{'type': 'Point', 'coordinates': (-79.38971556, 43.65019548)}"
-15424,16546,GO-20149007926,THEFT UNDER,2014-10-27T00:00:00,2014,October,Monday,27,300,10,2014-10-31T00:00:00,2014,October,Friday,31,304,16,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,CC,,RG,1,BLK,750.0,STOLEN,15382,"{'type': 'Point', 'coordinates': (-79.39227275, 43.65005482)}"
-15425,16547,GO-20149007926,THEFT UNDER,2014-10-27T00:00:00,2014,October,Monday,27,300,10,2014-10-31T00:00:00,2014,October,Friday,31,304,16,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,10,,30.0,STOLEN,15383,"{'type': 'Point', 'coordinates': (-79.39227275, 43.65005482)}"
-15426,16555,GO-2015626054,THEFT UNDER,2015-04-14T00:00:00,2015,April,Tuesday,14,104,10,2015-04-15T00:00:00,2015,April,Wednesday,15,105,23,D52,Toronto,78,Kensington-Chinatown (78),"Police / Courts (Parole Board, Probation Office)",Other,TREK,FX,MT,12,BLK,,STOLEN,15384,"{'type': 'Point', 'coordinates': (-79.39033931, 43.65450322)}"
-15427,16563,GO-20159002429,THEFT UNDER,2015-05-03T00:00:00,2015,May,Sunday,3,123,18,2015-05-04T00:00:00,2015,May,Monday,4,124,12,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,OT,1,BLK,400.0,STOLEN,15385,"{'type': 'Point', 'coordinates': (-79.39225095, 43.656266970000004)}"
-15428,6151,GO-2020849824,THEFT UNDER - BICYCLE,2020-04-15T00:00:00,2020,April,Wednesday,15,106,12,2020-05-07T00:00:00,2020,May,Thursday,7,128,21,D52,Toronto,79,University (79),Schools During Un-Supervised Activity,Educational,CANNONDALE,CAAD8,OT,21,WHI,500.0,STOLEN,15386,"{'type': 'Point', 'coordinates': (-79.39988102, 43.65980157)}"
-15429,16582,GO-20159004603,THEFT UNDER,2015-07-14T00:00:00,2015,July,Tuesday,14,195,23,2015-07-16T00:00:00,2015,July,Thursday,16,197,0,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,1,SIL,350.0,STOLEN,15387,"{'type': 'Point', 'coordinates': (-79.3974349, 43.65650586)}"
-15430,16587,GO-20159005589,THEFT UNDER,2015-08-10T00:00:00,2015,August,Monday,10,222,3,2015-08-10T00:00:00,2015,August,Monday,10,222,13,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,GT,,RC,14,BLK,1000.0,STOLEN,15388,"{'type': 'Point', 'coordinates': (-79.39888675, 43.65513745)}"
-15431,16591,GO-20159005942,THEFT UNDER,2015-08-17T00:00:00,2015,August,Monday,17,229,9,2015-08-17T00:00:00,2015,August,Monday,17,229,18,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SIRRUS,RG,24,BLK,900.0,STOLEN,15389,"{'type': 'Point', 'coordinates': (-79.39136265, 43.65838682)}"
-15432,16596,GO-20159007186,THEFT UNDER,2015-09-15T00:00:00,2015,September,Tuesday,15,258,7,2015-09-15T00:00:00,2015,September,Tuesday,15,258,9,D52,Toronto,78,Kensington-Chinatown (78),Universities / Colleges,Educational,OT,THREE SPEED,RG,3,BLK,1000.0,STOLEN,15390,"{'type': 'Point', 'coordinates': (-79.3934451, 43.65919971)}"
-15433,16598,GO-20159007552,THEFT UNDER,2015-09-22T00:00:00,2015,September,Tuesday,22,265,1,2015-09-22T00:00:00,2015,September,Tuesday,22,265,7,D52,Toronto,78,Kensington-Chinatown (78),Bar / Restaurant,Commercial,UK,,TO,5,BRN,700.0,STOLEN,15391,"{'type': 'Point', 'coordinates': (-79.39634181, 43.64876464)}"
-15434,16609,GO-20159008603,THEFT UNDER,2015-10-15T00:00:00,2015,October,Thursday,15,288,9,2015-10-15T00:00:00,2015,October,Thursday,15,288,15,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,WILLOW3,RG,3,LBL,0.0,STOLEN,15392,"{'type': 'Point', 'coordinates': (-79.39211621, 43.64968054)}"
-15435,16614,GO-20151979487,THEFT UNDER,2015-11-18T00:00:00,2015,November,Wednesday,18,322,9,2015-11-18T00:00:00,2015,November,Wednesday,18,322,13,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,TITAN,EL,0,BLK,1850.0,STOLEN,15393,"{'type': 'Point', 'coordinates': (-79.39586324, 43.65870005)}"
-15436,16616,GO-20159010309,THEFT UNDER,2015-11-18T00:00:00,2015,November,Wednesday,18,322,11,2015-11-29T00:00:00,2015,November,Sunday,29,333,15,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,ROAD BIKE,OT,1,GRY,300.0,STOLEN,15394,"{'type': 'Point', 'coordinates': (-79.39339759, 43.65276389)}"
-15437,16636,GO-2016778927,B&E,2016-05-01T00:00:00,2016,May,Sunday,1,122,15,2016-05-07T00:00:00,2016,May,Saturday,7,128,16,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,STUMPERJUMPER E,MT,29,WHI,4000.0,STOLEN,15395,"{'type': 'Point', 'coordinates': (-79.39227275, 43.65005482)}"
-15438,16637,GO-2016801826,THEFT UNDER,2016-05-10T00:00:00,2016,May,Tuesday,10,131,11,2016-05-10T00:00:00,2016,May,Tuesday,10,131,11,D52,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,ROAM 3,OT,23,RED,575.0,STOLEN,15396,"{'type': 'Point', 'coordinates': (-79.39699693, 43.65848407)}"
-15439,16640,GO-20169004698,THEFT UNDER,2016-05-18T00:00:00,2016,May,Wednesday,18,139,9,2016-05-18T00:00:00,2016,May,Wednesday,18,139,22,D52,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,SU,700 C REACTION,OT,18,OTH,275.0,STOLEN,15397,"{'type': 'Point', 'coordinates': (-79.39136265, 43.65838682)}"
-15440,16643,GO-2016894864,THEFT UNDER,2016-05-24T00:00:00,2016,May,Tuesday,24,145,14,2016-05-24T00:00:00,2016,May,Tuesday,24,145,16,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RAPTOR,,SC,0,RED,1000.0,STOLEN,15398,"{'type': 'Point', 'coordinates': (-79.39136265, 43.65838682)}"
-15441,16860,GO-20149002392,THEFT UNDER,2014-03-27T00:00:00,2014,March,Thursday,27,86,20,2014-03-27T00:00:00,2014,March,Thursday,27,86,20,D52,Toronto,78,Kensington-Chinatown (78),Convenience Stores,Commercial,UK,,OT,3,BLK,0.0,STOLEN,15407,"{'type': 'Point', 'coordinates': (-79.39879112, 43.65491345)}"
-15442,16663,GO-20161207019,THEFT UNDER - BICYCLE,2016-07-10T00:00:00,2016,July,Sunday,10,192,10,2016-07-13T00:00:00,2016,July,Wednesday,13,195,14,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,VFR3,OT,21,BLK,1000.0,STOLEN,15399,"{'type': 'Point', 'coordinates': (-79.3938201, 43.65382278)}"
-15443,16689,GO-20161677047,THEFT UNDER - BICYCLE,2016-09-20T00:00:00,2016,September,Tuesday,20,264,21,2016-09-20T00:00:00,2016,September,Tuesday,20,264,21,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RALEIGH,,RC,1,BLK,600.0,STOLEN,15400,"{'type': 'Point', 'coordinates': (-79.396125, 43.65334628)}"
-15444,16697,GO-20169011640,THEFT UNDER,2016-10-05T00:00:00,2016,October,Wednesday,5,279,23,2016-10-06T00:00:00,2016,October,Thursday,6,280,11,D52,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DB,,MT,8,YEL,0.0,STOLEN,15401,"{'type': 'Point', 'coordinates': (-79.3974349, 43.65650586)}"
-15445,16710,GO-20169014179,THEFT UNDER,2016-11-28T00:00:00,2016,November,Monday,28,333,19,2016-12-03T00:00:00,2016,December,Saturday,3,338,14,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,UK,CAFE 7,TO,7,BLK,886.0,STOLEN,15402,"{'type': 'Point', 'coordinates': (-79.39366153, 43.6500431)}"
-15446,16711,GO-20162159709,THEFT UNDER,2016-12-05T00:00:00,2016,December,Monday,5,340,23,2016-12-05T00:00:00,2016,December,Monday,5,340,23,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,NITRO XT,MT,21,TAN,150.0,STOLEN,15403,"{'type': 'Point', 'coordinates': (-79.38860347, 43.65042088)}"
-15447,16712,GO-20169014643,THEFT UNDER - BICYCLE,2016-12-13T00:00:00,2016,December,Tuesday,13,348,21,2016-12-14T00:00:00,2016,December,Wednesday,14,349,12,D52,Toronto,78,Kensington-Chinatown (78),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,MA,,RG,21,MRN,1000.0,STOLEN,15404,"{'type': 'Point', 'coordinates': (-79.3971995, 43.65090154)}"
-15448,16716,GO-20179000566,THEFT UNDER - BICYCLE,2016-12-29T00:00:00,2016,December,Thursday,29,364,18,2017-01-12T00:00:00,2017,January,Thursday,12,12,21,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,7,GRY,500.0,STOLEN,15405,"{'type': 'Point', 'coordinates': (-79.39366153, 43.6500431)}"
-15449,16718,GO-20179001997,THEFT UNDER,2017-01-30T00:00:00,2017,January,Monday,30,30,0,2017-02-15T00:00:00,2017,February,Wednesday,15,46,16,D52,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,SCHWINN,OT,21,WHI,0.0,STOLEN,15406,"{'type': 'Point', 'coordinates': (-79.39652609, 43.65431521)}"
-15450,16861,GO-20141889465,THEFT UNDER,2014-04-12T00:00:00,2014,April,Saturday,12,102,14,2014-04-14T00:00:00,2014,April,Monday,14,104,13,D52,Toronto,78,Kensington-Chinatown (78),Universities / Colleges,Educational,RALEIGH,RECORD,OT,12,WHI,600.0,STOLEN,15408,"{'type': 'Point', 'coordinates': (-79.3934451, 43.65919971)}"
-15451,16862,GO-20149002917,THEFT UNDER,2014-04-18T00:00:00,2014,April,Friday,18,108,11,2014-04-18T00:00:00,2014,April,Friday,18,108,17,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,IN,368614,MT,24,BLK,400.0,STOLEN,15409,"{'type': 'Point', 'coordinates': (-79.396125, 43.65334628)}"
-15452,16886,GO-20149003923,THEFT UNDER,2014-06-09T00:00:00,2014,June,Monday,9,160,9,2014-06-09T00:00:00,2014,June,Monday,9,160,15,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RC,9,RED,1000.0,STOLEN,15410,"{'type': 'Point', 'coordinates': (-79.38994423, 43.6587011)}"
-15453,16887,GO-20142258077,THEFT UNDER,2014-06-09T00:00:00,2014,June,Monday,9,160,20,2014-06-10T00:00:00,2014,June,Tuesday,10,161,2,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,PUREFIX,RG,1,BLU,600.0,STOLEN,15411,"{'type': 'Point', 'coordinates': (-79.39879112, 43.65491345)}"
-15454,16897,GO-20142458636,THEFT UNDER,2014-07-07T00:00:00,2014,July,Monday,7,188,18,2014-07-08T00:00:00,2014,July,Tuesday,8,189,21,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,RG,18,BRN,700.0,STOLEN,15412,"{'type': 'Point', 'coordinates': (-79.39095898, 43.65603534)}"
-15455,16911,GO-20142726386,THEFT UNDER,2014-08-14T00:00:00,2014,August,Thursday,14,226,9,2014-08-18T00:00:00,2014,August,Monday,18,230,13,D52,Toronto,78,Kensington-Chinatown (78),Universities / Colleges,Educational,ROCKY MOUNTAIN,UNKNOWN,MT,1,BGE,850.0,STOLEN,15413,"{'type': 'Point', 'coordinates': (-79.39300540000002, 43.6580369)}"
-15456,17326,GO-20209013386,THEFT UNDER - BICYCLE,2020-05-17T00:00:00,2020,May,Sunday,17,138,23,2020-05-18T00:00:00,2020,May,Monday,18,139,23,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,OT,URBANIA 5,RG,21,BLK,500.0,STOLEN,15414,"{'type': 'Point', 'coordinates': (-79.39883998, 43.64954482)}"
-15457,17327,GO-2020933980,THEFT UNDER,2020-05-19T00:00:00,2020,May,Tuesday,19,140,10,2020-05-20T00:00:00,2020,May,Wednesday,20,141,21,D14,Toronto,78,Kensington-Chinatown (78),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RAZOR,,SC,0,SILWHI,50.0,STOLEN,15415,"{'type': 'Point', 'coordinates': (-79.40232443, 43.64841054)}"
-15458,17376,GO-20209020725,THEFT UNDER,2020-08-18T00:00:00,2020,August,Tuesday,18,231,17,2020-08-19T00:00:00,2020,August,Wednesday,19,232,23,D14,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,TR,NAVIGATOR 50,MT,18,BLK,0.0,STOLEN,15416,"{'type': 'Point', 'coordinates': (-79.40494299, 43.6546843)}"
-15459,17399,GO-20209025734,THEFT UNDER,2020-10-07T00:00:00,2020,October,Wednesday,7,281,14,2020-10-07T00:00:00,2020,October,Wednesday,7,281,17,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,BOILERMAKER,RG,6,GRN,500.0,STOLEN,15417,"{'type': 'Point', 'coordinates': (-79.40417555, 43.65283327)}"
-15460,17409,GO-20209030004,THEFT UNDER,2020-11-18T00:00:00,2020,November,Wednesday,18,323,21,2020-11-19T00:00:00,2020,November,Thursday,19,324,0,D14,Toronto,78,Kensington-Chinatown (78),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RG,1,BLU,150.0,STOLEN,15418,"{'type': 'Point', 'coordinates': (-79.39927621, 43.65610155)}"
-15461,17539,GO-2019196260,THEFT OF EBIKE UNDER $5000,2018-04-18T00:00:00,2018,April,Wednesday,18,108,21,2019-01-31T00:00:00,2019,January,Thursday,31,31,16,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EVO,HB1,EL,2,BLK,1999.0,STOLEN,15419,"{'type': 'Point', 'coordinates': (-79.40364248, 43.65495832)}"
-15462,17605,GO-20199023167,THEFT UNDER,2019-07-21T00:00:00,2019,July,Sunday,21,202,22,2019-07-21T00:00:00,2019,July,Sunday,21,202,22,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,BM,1,,250.0,STOLEN,15420,"{'type': 'Point', 'coordinates': (-79.40397083000002, 43.64718733)}"
-15463,17607,GO-20199023213,THEFT UNDER,2019-07-21T00:00:00,2019,July,Sunday,21,202,13,2019-07-22T00:00:00,2019,July,Monday,22,203,10,D14,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,TR,FX3,OT,27,BLK,820.0,STOLEN,15421,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-15464,17621,GO-20191536386,B&E,2019-08-13T00:00:00,2019,August,Tuesday,13,225,10,2019-08-13T00:00:00,2019,August,Tuesday,13,225,17,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,BRODIE,DYNAMO,OT,27,WHIBLK,1500.0,STOLEN,15422,"{'type': 'Point', 'coordinates': (-79.40006773, 43.64914048000001)}"
-15465,21466,GO-2017377277,POSSESSION PROPERTY OBC UNDER,2017-03-01T00:00:00,2017,March,Wednesday,1,60,14,2017-03-01T00:00:00,2017,March,Wednesday,1,60,14,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,BIANCHI,CORTINA,TO,8,WHI,1000.0,RECOVERED,15439,"{'type': 'Point', 'coordinates': (-79.39997085, 43.648892530000005)}"
-15466,17626,GO-20199026581,THEFT UNDER - BICYCLE,2019-08-17T00:00:00,2019,August,Saturday,17,229,0,2019-08-17T00:00:00,2019,August,Saturday,17,229,13,D14,Toronto,78,Kensington-Chinatown (78),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,DISPATCH 7,MT,21,LBL,669.0,STOLEN,15423,"{'type': 'Point', 'coordinates': (-79.40403711, 43.6572083)}"
-15467,17628,GO-20199027541,THEFT UNDER - BICYCLE,2019-08-24T00:00:00,2019,August,Saturday,24,236,15,2019-08-24T00:00:00,2019,August,Saturday,24,236,16,D14,Toronto,78,Kensington-Chinatown (78),Bar / Restaurant,Commercial,IH,P26267,RG,1,BLK,555.0,STOLEN,15424,"{'type': 'Point', 'coordinates': (-79.39840686, 43.65172265)}"
-15468,17644,GO-20191847154,THEFT UNDER - BICYCLE,2019-09-24T00:00:00,2019,September,Tuesday,24,267,17,2019-09-25T00:00:00,2019,September,Wednesday,25,268,19,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN,UNKNOWN,RG,3,SIL,50.0,STOLEN,15425,"{'type': 'Point', 'coordinates': (-79.40066945, 43.65476855)}"
-15469,17653,GO-20199033670,THEFT UNDER - BICYCLE,2019-10-10T00:00:00,2019,October,Thursday,10,283,14,2019-10-12T00:00:00,2019,October,Saturday,12,285,14,D14,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,,RG,10,BLU,300.0,STOLEN,15426,"{'type': 'Point', 'coordinates': (-79.40397597, 43.65583003)}"
-15470,17701,GO-2020543007,THEFT UNDER - BICYCLE,2020-03-15T00:00:00,2020,March,Sunday,15,75,22,2020-03-15T00:00:00,2020,March,Sunday,15,75,22,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,9.3,MT,18,GRY,600.0,STOLEN,15427,"{'type': 'Point', 'coordinates': (-79.39775289, 43.65225944)}"
-15471,17823,GO-20189017589,THEFT UNDER - BICYCLE,2018-06-05T00:00:00,2018,June,Tuesday,5,156,13,2018-06-06T00:00:00,2018,June,Wednesday,6,157,14,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RC,12,WHI,450.0,STOLEN,15428,"{'type': 'Point', 'coordinates': (-79.4000091, 43.65794797)}"
-15472,17829,GO-20181081400,THEFT UNDER - BICYCLE,2018-06-14T00:00:00,2018,June,Thursday,14,165,13,2018-06-14T00:00:00,2018,June,Thursday,14,165,20,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,,MT,10,BLK,80.0,STOLEN,15429,"{'type': 'Point', 'coordinates': (-79.40066945, 43.65476855)}"
-15473,17834,GO-20189019073,THEFT UNDER - BICYCLE,2018-06-17T00:00:00,2018,June,Sunday,17,168,20,2018-06-17T00:00:00,2018,June,Sunday,17,168,21,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,3,BLK,1200.0,STOLEN,15430,"{'type': 'Point', 'coordinates': (-79.39737512, 43.64853707)}"
-15474,21374,GO-20169005264,THEFT UNDER - BICYCLE,2016-05-31T00:00:00,2016,May,Tuesday,31,152,22,2016-06-02T00:00:00,2016,June,Thursday,2,154,16,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,ROAD BIKE,RC,14,DGR,500.0,STOLEN,15431,"{'type': 'Point', 'coordinates': (-79.39634181, 43.64876464)}"
-15475,21385,GO-20169006189,THEFT UNDER,2016-06-01T00:00:00,2016,June,Wednesday,1,153,7,2016-06-22T00:00:00,2016,June,Wednesday,22,174,14,D14,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,FJ,TRACK CLASSIC,OT,1,BLK,700.0,STOLEN,15432,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-15476,21394,GO-20169006719,THEFT UNDER - BICYCLE,2016-07-03T00:00:00,2016,July,Sunday,3,185,23,2016-07-04T00:00:00,2016,July,Monday,4,186,21,D14,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,,RG,21,,0.0,STOLEN,15433,"{'type': 'Point', 'coordinates': (-79.40364248, 43.65495832)}"
-15477,21398,GO-20169007315,THEFT UNDER,2016-07-17T00:00:00,2016,July,Sunday,17,199,22,2016-07-18T00:00:00,2016,July,Monday,18,200,3,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,1,RED,600.0,STOLEN,15434,"{'type': 'Point', 'coordinates': (-79.4028699, 43.65308806)}"
-15478,21421,GO-20161615056,THEFT UNDER - BICYCLE,2016-09-09T00:00:00,2016,September,Friday,9,253,11,2016-09-11T00:00:00,2016,September,Sunday,11,255,13,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BIANCHI,,OT,18,BLU,,STOLEN,15435,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-15479,21445,GO-20169013051,THEFT UNDER - BICYCLE,2016-11-06T00:00:00,2016,November,Sunday,6,311,15,2016-11-06T00:00:00,2016,November,Sunday,6,311,18,D14,Toronto,78,Kensington-Chinatown (78),Bar / Restaurant,Commercial,GI,,RG,24,BLK,600.0,STOLEN,15436,"{'type': 'Point', 'coordinates': (-79.39737512, 43.64853707)}"
-15480,21460,GO-20179001931,THEFT UNDER - BICYCLE,2017-02-13T00:00:00,2017,February,Monday,13,44,11,2017-02-14T00:00:00,2017,February,Tuesday,14,45,6,D14,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,INDIE 4,RG,24,BLK,1000.0,STOLEN,15437,"{'type': 'Point', 'coordinates': (-79.40364248, 43.65495832)}"
-15481,21462,GO-20179002145,THEFT OVER - BICYCLE,2017-02-18T00:00:00,2017,February,Saturday,18,49,9,2017-02-18T00:00:00,2017,February,Saturday,18,49,17,D14,Toronto,78,Kensington-Chinatown (78),"Religious Facilities (Synagogue, Church, Convent, Mosque)",Other,OT,,RG,11,BLU,7500.0,STOLEN,15438,"{'type': 'Point', 'coordinates': (-79.40306849, 43.65360544)}"
-15482,21479,GO-2017837568,THEFT UNDER - BICYCLE,2017-05-11T00:00:00,2017,May,Thursday,11,131,18,2017-05-12T00:00:00,2017,May,Friday,12,132,15,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN,UNKNOWN,OT,0,WHI,100.0,UNKNOWN,15440,"{'type': 'Point', 'coordinates': (-79.40180671, 43.65765229)}"
-15483,21485,GO-2017910701,THEFT UNDER - BICYCLE,2017-05-23T00:00:00,2017,May,Tuesday,23,143,18,2017-05-23T00:00:00,2017,May,Tuesday,23,143,19,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,SEEK2,MT,24,DGRSIL,700.0,STOLEN,15441,"{'type': 'Point', 'coordinates': (-79.39863995, 43.65205921)}"
-15484,21495,GO-20179007725,THEFT UNDER - BICYCLE,2017-06-08T00:00:00,2017,June,Thursday,8,159,14,2017-06-08T00:00:00,2017,June,Thursday,8,159,16,D14,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,TR,WHITE/PINK+BABY,OT,25,WHI,500.0,STOLEN,15442,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-15485,21501,GO-20179008375,THEFT UNDER,2017-06-17T00:00:00,2017,June,Saturday,17,168,10,2017-06-19T00:00:00,2017,June,Monday,19,170,10,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,1,BLK,300.0,STOLEN,15443,"{'type': 'Point', 'coordinates': (-79.40110737, 43.65227394000001)}"
-15486,21788,GO-20141267465,THEFT UNDER,2013-09-30T00:00:00,2013,September,Monday,30,273,0,2014-01-02T00:00:00,2014,January,Thursday,2,2,12,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,NORCO,CHARGER 9.2,MT,21,BLK,750.0,STOLEN,15444,"{'type': 'Point', 'coordinates': (-79.4046631, 43.64896803)}"
-15487,21859,GO-20159002623,THEFT UNDER,2015-05-11T00:00:00,2015,May,Monday,11,131,1,2015-05-11T00:00:00,2015,May,Monday,11,131,12,D14,Toronto,78,Kensington-Chinatown (78),Bar / Restaurant,Commercial,OT,HORNET LEO,RG,1,LGR,400.0,STOLEN,15445,"{'type': 'Point', 'coordinates': (-79.40397083000002, 43.64718733)}"
-15488,21864,GO-2015836543,B&E,2015-05-19T00:00:00,2015,May,Tuesday,19,139,9,2015-05-19T00:00:00,2015,May,Tuesday,19,139,20,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,PEUGEOT,,RC,10,MRNGLD,1000.0,STOLEN,15446,"{'type': 'Point', 'coordinates': (-79.40110737, 43.65227394000001)}"
-15489,10195,GO-20159005427,THEFT UNDER,2015-08-04T00:00:00,2015,August,Tuesday,4,216,13,2015-08-07T00:00:00,2015,August,Friday,7,219,8,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,CYPRESS,TO,21,SIL,640.0,STOLEN,15447,"{'type': 'Point', 'coordinates': (-79.39366153, 43.6500431)}"
-15490,21875,GO-20159003618,THEFT UNDER,2015-06-14T00:00:00,2015,June,Sunday,14,165,19,2015-06-14T00:00:00,2015,June,Sunday,14,165,22,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,NO,RIDEAU,MT,10,GRY,450.0,STOLEN,15449,"{'type': 'Point', 'coordinates': (-79.40270032, 43.64940096)}"
-15491,21895,GO-20159004717,THEFT UNDER,2015-07-18T00:00:00,2015,July,Saturday,18,199,7,2015-07-18T00:00:00,2015,July,Saturday,18,199,21,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,FJ,2014 FEATHER,RC,1,BLK,700.0,STOLEN,15450,"{'type': 'Point', 'coordinates': (-79.39963685, 43.64806649)}"
-15492,21908,GO-20159005615,THEFT UNDER,2015-08-11T00:00:00,2015,August,Tuesday,11,223,19,2015-08-12T00:00:00,2015,August,Wednesday,12,224,17,D14,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,SC,SUSPEND 21GEAR,MT,21,BLU,278.0,STOLEN,15451,"{'type': 'Point', 'coordinates': (-79.40494299, 43.6546843)}"
-15493,9857,GO-20159003861,THEFT UNDER,2015-06-22T00:00:00,2015,June,Monday,22,173,13,2015-06-23T00:00:00,2015,June,Tuesday,23,174,9,D52,Toronto,79,University (79),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,KH,FLITE 100,RC,1,GRN,2000.0,STOLEN,15452,"{'type': 'Point', 'coordinates': (-79.39815878000002, 43.65826015)}"
-15494,21915,GO-20151457301,THEFT UNDER,2015-08-24T00:00:00,2015,August,Monday,24,236,9,2015-08-27T00:00:00,2015,August,Thursday,27,239,16,D14,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,EMMO,E-BIKE,EL,1,BLK,,STOLEN,15453,"{'type': 'Point', 'coordinates': (-79.40199569, 43.6545078)}"
-15495,21936,GO-20159009979,THEFT UNDER,2015-11-16T00:00:00,2015,November,Monday,16,320,9,2015-11-20T00:00:00,2015,November,Friday,20,324,22,D14,Toronto,78,Kensington-Chinatown (78),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,MA,DOMINICAN,RG,1,WHI,600.0,STOLEN,15454,"{'type': 'Point', 'coordinates': (-79.39840686, 43.65172265)}"
-15496,21939,GO-20152156876,B&E,2015-12-15T00:00:00,2015,December,Tuesday,15,349,23,2015-12-16T00:00:00,2015,December,Wednesday,16,350,18,D14,Toronto,78,Kensington-Chinatown (78),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,RG,1,BLKWHI,,STOLEN,15455,"{'type': 'Point', 'coordinates': (-79.40229657, 43.65523449)}"
-15497,18336,GO-20142180120,THEFT UNDER,2014-05-28T00:00:00,2014,May,Wednesday,28,148,18,2014-05-29T00:00:00,2014,May,Thursday,29,149,22,D14,Toronto,78,Kensington-Chinatown (78),Bar / Restaurant,Commercial,KONA,MUHA,MT,21,BLU,,STOLEN,15456,"{'type': 'Point', 'coordinates': (-79.39963685, 43.64806649)}"
-15498,21952,GO-20169002878,THEFT UNDER,2016-03-29T00:00:00,2016,March,Tuesday,29,89,20,2016-03-30T00:00:00,2016,March,Wednesday,30,90,0,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,TR,850,OT,18,BLU,750.0,STOLEN,15457,"{'type': 'Point', 'coordinates': (-79.39737512, 43.64853707)}"
-15499,21958,GO-2016759238,THEFT UNDER - BICYCLE,2016-05-03T00:00:00,2016,May,Tuesday,3,124,16,2016-05-03T00:00:00,2016,May,Tuesday,3,124,19,D14,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TMC,CHAMPION,EL,1,BLUWHI,2300.0,STOLEN,15458,"{'type': 'Point', 'coordinates': (-79.40180671, 43.65765229)}"
-15500,21959,GO-2016805239,THEFT UNDER - BICYCLE,2016-05-10T00:00:00,2016,May,Tuesday,10,131,19,2016-05-10T00:00:00,2016,May,Tuesday,10,131,20,D14,Toronto,78,Kensington-Chinatown (78),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OTHER,VIVO FOLDING,FO,6,BLKSIL,600.0,STOLEN,15459,"{'type': 'Point', 'coordinates': (-79.40480719, 43.65215739)}"
-15501,22157,GO-20179008789,THEFT OF EBIKE UNDER $5000,2017-06-22T00:00:00,2017,June,Thursday,22,173,8,2017-06-23T00:00:00,2017,June,Friday,23,174,16,D14,Toronto,78,Kensington-Chinatown (78),Homeless Shelter / Mission,Other,EM,URBAN,EL,32,BLK,1100.0,STOLEN,15460,"{'type': 'Point', 'coordinates': (-79.39837878, 43.64832482)}"
-15502,22613,GO-20199024608,THEFT UNDER,2019-08-01T00:00:00,2019,August,Thursday,1,213,1,2019-08-01T00:00:00,2019,August,Thursday,1,213,9,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,1,BLK,100.0,STOLEN,15461,"{'type': 'Point', 'coordinates': (-79.3934735, 43.65601123)}"
-15503,22615,GO-20199025122,THEFT UNDER,2019-08-06T00:00:00,2019,August,Tuesday,6,218,0,2019-08-06T00:00:00,2019,August,Tuesday,6,218,17,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,TRICROSS COMP,RG,27,BLK,2499.0,STOLEN,15462,"{'type': 'Point', 'coordinates': (-79.39136265, 43.65838682)}"
-15504,22624,GO-20199026695,THEFT UNDER - BICYCLE,2019-08-17T00:00:00,2019,August,Saturday,17,229,20,2019-08-18T00:00:00,2019,August,Sunday,18,230,14,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,VERZA SPEED,RG,7,WHI,549.0,STOLEN,15463,"{'type': 'Point', 'coordinates': (-79.4000091, 43.65794797)}"
-15505,22627,GO-20199027209,THEFT UNDER,2019-08-21T00:00:00,2019,August,Wednesday,21,233,14,2019-08-22T00:00:00,2019,August,Thursday,22,234,9,D52,Toronto,78,Kensington-Chinatown (78),Bar / Restaurant,Commercial,SC,VARSITY 1250,MT,21,BLK,500.0,STOLEN,15464,"{'type': 'Point', 'coordinates': (-79.39634181, 43.64876464)}"
-15506,22638,GO-20199028203,THEFT UNDER,2019-08-29T00:00:00,2019,August,Thursday,29,241,15,2019-08-29T00:00:00,2019,August,Thursday,29,241,21,D52,Toronto,78,Kensington-Chinatown (78),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,SIRRUS,RG,16,BLK,800.0,STOLEN,15465,"{'type': 'Point', 'coordinates': (-79.38971556, 43.65019548)}"
-15507,22647,GO-20191778223,PROPERTY - FOUND,2019-09-16T00:00:00,2019,September,Monday,16,259,10,2019-09-16T00:00:00,2019,September,Monday,16,259,10,D52,Toronto,78,Kensington-Chinatown (78),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPORTEK,,RG,18,PLE,,UNKNOWN,15466,"{'type': 'Point', 'coordinates': (-79.39033931, 43.65450322)}"
-15508,22695,GO-20209007819,THEFT UNDER,2020-03-05T00:00:00,2020,March,Thursday,5,65,8,2020-03-05T00:00:00,2020,March,Thursday,5,65,10,D52,Toronto,78,Kensington-Chinatown (78),Convenience Stores,Commercial,OT,,RG,3,BLK,1000.0,STOLEN,15467,"{'type': 'Point', 'coordinates': (-79.39211621, 43.64968054)}"
-15509,22752,GO-20209018609,THEFT UNDER,2020-07-26T00:00:00,2020,July,Sunday,26,208,17,2020-07-26T00:00:00,2020,July,Sunday,26,208,18,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE,RG,24,BLK,650.0,STOLEN,15468,"{'type': 'Point', 'coordinates': (-79.38944954, 43.65752945)}"
-15510,22780,GO-20209024306,THEFT UNDER,2020-09-15T00:00:00,2020,September,Tuesday,15,259,18,2020-09-15T00:00:00,2020,September,Tuesday,15,259,20,D52,Toronto,78,Kensington-Chinatown (78),Bar / Restaurant,Commercial,OT,,EL,32,BLK,2500.0,STOLEN,15469,"{'type': 'Point', 'coordinates': (-79.38943687, 43.65023156)}"
-15511,2168,GO-2018692806,THEFT UNDER - BICYCLE,2018-04-12T00:00:00,2018,April,Thursday,12,102,18,2018-04-18T00:00:00,2018,April,Wednesday,18,108,12,D52,Toronto,79,University (79),Universities / Colleges,Educational,VILANO,,RC,0,,400.0,STOLEN,15470,"{'type': 'Point', 'coordinates': (-79.39832557, 43.66783119)}"
-15512,22790,GO-20209026773,THEFT UNDER,2020-10-15T00:00:00,2020,October,Thursday,15,289,1,2020-10-17T00:00:00,2020,October,Saturday,17,291,13,D52,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,LONDON (2017),RG,27,GRY,800.0,STOLEN,15471,"{'type': 'Point', 'coordinates': (-79.3974349, 43.65650586)}"
-15513,23019,GO-20179007288,THEFT UNDER - BICYCLE,2017-05-25T00:00:00,2017,May,Thursday,25,145,15,2017-05-31T00:00:00,2017,May,Wednesday,31,151,13,D52,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,UK,STOCKHOLM,RG,28,BLK,839.0,STOLEN,15472,"{'type': 'Point', 'coordinates': (-79.38944954, 43.65752945)}"
-15514,23030,GO-20179008556,THEFT UNDER - BICYCLE,2017-06-20T00:00:00,2017,June,Tuesday,20,171,9,2017-06-20T00:00:00,2017,June,Tuesday,20,171,21,D52,Toronto,78,Kensington-Chinatown (78),Universities / Colleges,Educational,CA,QUICK 4,RG,3,OTH,900.0,STOLEN,15473,"{'type': 'Point', 'coordinates': (-79.3906274, 43.65241188)}"
-15515,23033,GO-20171144943,THEFT UNDER - BICYCLE,2017-06-26T00:00:00,2017,June,Monday,26,177,12,2017-06-26T00:00:00,2017,June,Monday,26,177,23,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,OTHER,UNKNOWN,MT,21,BLK,1200.0,STOLEN,15474,"{'type': 'Point', 'coordinates': (-79.39095898, 43.65603534)}"
-15516,23053,GO-20179013195,THEFT UNDER - BICYCLE,2017-08-24T00:00:00,2017,August,Thursday,24,236,0,2017-08-24T00:00:00,2017,August,Thursday,24,236,6,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,TALON 2,MT,16,RED,800.0,STOLEN,15475,"{'type': 'Point', 'coordinates': (-79.3974349, 43.65650586)}"
-15517,23054,GO-20179013195,THEFT UNDER - BICYCLE,2017-08-24T00:00:00,2017,August,Thursday,24,236,0,2017-08-24T00:00:00,2017,August,Thursday,24,236,6,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KO,,MT,21,YEL,600.0,STOLEN,15476,"{'type': 'Point', 'coordinates': (-79.3974349, 43.65650586)}"
-15518,23056,GO-20179014820,THEFT UNDER - BICYCLE,2017-09-14T00:00:00,2017,September,Thursday,14,257,10,2017-09-15T00:00:00,2017,September,Friday,15,258,10,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,SANCTUARY 7 CRU,OT,7,PLE,315.0,STOLEN,15477,"{'type': 'Point', 'coordinates': (-79.39225095, 43.656266970000004)}"
-15519,23068,GO-20171855366,THEFT UNDER - BICYCLE,2017-09-12T00:00:00,2017,September,Tuesday,12,255,19,2017-10-13T00:00:00,2017,October,Friday,13,286,12,D52,Toronto,78,Kensington-Chinatown (78),Universities / Colleges,Educational,MOTIVICANE,,RC,0,BLKRED,500.0,STOLEN,15478,"{'type': 'Point', 'coordinates': (-79.3934451, 43.65919971)}"
-15520,23074,GO-20179018379,B&E,2017-10-27T00:00:00,2017,October,Friday,27,300,12,2017-10-28T00:00:00,2017,October,Saturday,28,301,9,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,FELT VR60,RC,16,ONG,1170.0,STOLEN,15479,"{'type': 'Point', 'coordinates': (-79.39227275, 43.65005482)}"
-15521,9702,GO-2015921898,THEFT UNDER,2015-05-31T00:00:00,2015,May,Sunday,31,151,21,2015-06-02T00:00:00,2015,June,Tuesday,2,153,13,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,,OT,0,,200.0,STOLEN,15994,"{'type': 'Point', 'coordinates': (-79.39699693, 43.65848407)}"
-15522,23082,GO-20179019441,THEFT UNDER - BICYCLE,2017-11-07T00:00:00,2017,November,Tuesday,7,311,15,2017-11-12T00:00:00,2017,November,Sunday,12,316,15,D52,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,TRUST 264 BIKE,MT,7,BLK,500.0,STOLEN,15480,"{'type': 'Point', 'coordinates': (-79.39225095, 43.656266970000004)}"
-15523,23084,GO-20179020108,THEFT UNDER - BICYCLE,2017-11-20T00:00:00,2017,November,Monday,20,324,16,2017-11-20T00:00:00,2017,November,Monday,20,324,17,D52,Toronto,78,Kensington-Chinatown (78),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,CYPRESS,RG,7,SIL,500.0,STOLEN,15481,"{'type': 'Point', 'coordinates': (-79.39300540000002, 43.6580369)}"
-15524,23103,GO-20189013966,THEFT UNDER,2018-05-05T00:00:00,2018,May,Saturday,5,125,22,2018-05-06T00:00:00,2018,May,Sunday,6,126,17,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,DB,,RG,7,RED,500.0,STOLEN,15482,"{'type': 'Point', 'coordinates': (-79.39692918, 43.65528489)}"
-15525,23110,GO-20189017711,THEFT UNDER - BICYCLE,2018-05-02T00:00:00,2018,May,Wednesday,2,122,18,2018-06-07T00:00:00,2018,June,Thursday,7,158,10,D52,Toronto,78,Kensington-Chinatown (78),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,,MT,18,BLU,1200.0,STOLEN,15483,"{'type': 'Point', 'coordinates': (-79.39267446, 43.6510011)}"
-15526,23111,GO-20189017711,THEFT UNDER - BICYCLE,2018-05-02T00:00:00,2018,May,Wednesday,2,122,18,2018-06-07T00:00:00,2018,June,Thursday,7,158,10,D52,Toronto,78,Kensington-Chinatown (78),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,BM,1,RED,800.0,STOLEN,15484,"{'type': 'Point', 'coordinates': (-79.39267446, 43.6510011)}"
-15527,23112,GO-20189017711,THEFT UNDER - BICYCLE,2018-05-02T00:00:00,2018,May,Wednesday,2,122,18,2018-06-07T00:00:00,2018,June,Thursday,7,158,10,D52,Toronto,78,Kensington-Chinatown (78),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,1,,400.0,STOLEN,15485,"{'type': 'Point', 'coordinates': (-79.39267446, 43.6510011)}"
-15528,23113,GO-20189017711,THEFT UNDER - BICYCLE,2018-05-02T00:00:00,2018,May,Wednesday,2,122,18,2018-06-07T00:00:00,2018,June,Thursday,7,158,10,D52,Toronto,78,Kensington-Chinatown (78),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KO,,MT,18,BLU,1500.0,STOLEN,15486,"{'type': 'Point', 'coordinates': (-79.39267446, 43.6510011)}"
-15529,15497,GO-20169004482,THEFT UNDER,2016-05-12T00:00:00,2016,May,Thursday,12,133,22,2016-05-13T00:00:00,2016,May,Friday,13,134,13,D14,Toronto,79,University (79),Bar / Restaurant,Commercial,TR,1.1,RC,8,BLU,0.0,STOLEN,16011,"{'type': 'Point', 'coordinates': (-79.40518896, 43.65697872)}"
-15530,23115,GO-20189018529,THEFT UNDER - BICYCLE,2018-06-11T00:00:00,2018,June,Monday,11,162,12,2018-06-13T00:00:00,2018,June,Wednesday,13,164,12,D52,Toronto,78,Kensington-Chinatown (78),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,ZEKTOR 3,MT,9,BLK,1030.0,STOLEN,15487,"{'type': 'Point', 'coordinates': (-79.39495714, 43.65047451)}"
-15531,23118,GO-20189019512,THEFT UNDER - BICYCLE,2018-06-20T00:00:00,2018,June,Wednesday,20,171,13,2018-06-20T00:00:00,2018,June,Wednesday,20,171,17,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,TK-3,RC,1,BLK,1343.0,STOLEN,15488,"{'type': 'Point', 'coordinates': (-79.38918474, 43.65468421)}"
-15532,23119,GO-20189019588,THEFT UNDER - BICYCLE,2018-06-19T00:00:00,2018,June,Tuesday,19,170,9,2018-06-21T00:00:00,2018,June,Thursday,21,172,9,D52,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,UNKNOWN MAKE,,RG,8,,,STOLEN,15489,"{'type': 'Point', 'coordinates': (-79.39136265, 43.65838682)}"
-15533,23133,GO-20181392553,B&E,2018-07-27T00:00:00,2018,July,Friday,27,208,18,2018-07-30T00:00:00,2018,July,Monday,30,211,10,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,ADAGIO,RC,24,GRY,700.0,STOLEN,15490,"{'type': 'Point', 'coordinates': (-79.3971995, 43.65090154)}"
-15534,23158,GO-20189033340,POSSESSION PROPERTY OBC UNDER,2018-10-04T00:00:00,2018,October,Thursday,4,277,13,2018-10-09T00:00:00,2018,October,Tuesday,9,282,13,D52,Toronto,78,Kensington-Chinatown (78),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OTHER,CIV,RC,24,WHI,,RECOVERED,15491,"{'type': 'Point', 'coordinates': (-79.39339759, 43.65276389)}"
-15535,23159,GO-20189033340,POSSESSION PROPERTY OBC UNDER,2018-10-04T00:00:00,2018,October,Thursday,4,277,13,2018-10-09T00:00:00,2018,October,Tuesday,9,282,13,D52,Toronto,78,Kensington-Chinatown (78),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,TREK,4500,MT,24,BLKRED,,RECOVERED,15492,"{'type': 'Point', 'coordinates': (-79.39339759, 43.65276389)}"
-15536,23160,GO-20189033340,POSSESSION PROPERTY OBC UNDER,2018-10-04T00:00:00,2018,October,Thursday,4,277,13,2018-10-09T00:00:00,2018,October,Tuesday,9,282,13,D52,Toronto,78,Kensington-Chinatown (78),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,GIANT,,MT,24,SILBLK,,RECOVERED,15493,"{'type': 'Point', 'coordinates': (-79.39339759, 43.65276389)}"
-15537,23163,GO-20181885059,THEFT OF EBIKE UNDER $5000,2018-10-10T00:00:00,2018,October,Wednesday,10,283,13,2018-10-12T00:00:00,2018,October,Friday,12,285,11,D52,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OTHER,V1 ELITE,EL,5,YELRED,3000.0,STOLEN,15494,"{'type': 'Point', 'coordinates': (-79.38984563, 43.65622357)}"
-15538,23176,GO-2019914985,THEFT OF EBIKE UNDER $5000,2019-05-19T00:00:00,2019,May,Sunday,19,139,18,2019-05-21T00:00:00,2019,May,Tuesday,21,141,17,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GHOST,SQUARE,EL,0,BLU,2900.0,STOLEN,15495,"{'type': 'Point', 'coordinates': (-79.39366252, 43.64935047)}"
-15539,23181,GO-20199017919,THEFT UNDER,2019-06-08T00:00:00,2019,June,Saturday,8,159,16,2019-06-09T00:00:00,2019,June,Sunday,9,160,10,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,HARDROCK,MT,3,BLK,500.0,STOLEN,15496,"{'type': 'Point', 'coordinates': (-79.39366252, 43.64935047)}"
-15540,23194,GO-20199022411,THEFT UNDER,2019-07-15T00:00:00,2019,July,Monday,15,196,16,2019-07-15T00:00:00,2019,July,Monday,15,196,18,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,INDIE 3,RG,24,BLU,723.0,STOLEN,15497,"{'type': 'Point', 'coordinates': (-79.39161243, 43.65119665)}"
-15541,23380,GO-20149002826,THEFT UNDER,2014-04-12T00:00:00,2014,April,Saturday,12,102,13,2014-04-13T00:00:00,2014,April,Sunday,13,103,9,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,RECORD,RC,9,WHI,550.0,STOLEN,15498,"{'type': 'Point', 'coordinates': (-79.3934451, 43.65919971)}"
-15542,23797,GO-20201163426,THEFT UNDER,2020-06-24T00:00:00,2020,June,Wednesday,24,176,3,2020-06-24T00:00:00,2020,June,Wednesday,24,176,15,D14,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,1,,,STOLEN,15499,"{'type': 'Point', 'coordinates': (-79.40595313, 43.65543579)}"
-15543,23800,GO-20209016545,THEFT UNDER,2020-06-29T00:00:00,2020,June,Monday,29,181,20,2020-06-30T00:00:00,2020,June,Tuesday,30,182,11,D14,Toronto,78,Kensington-Chinatown (78),Convenience Stores,Commercial,OT,SIRRUS X 2.0,RG,8,WHI,1000.0,STOLEN,15500,"{'type': 'Point', 'coordinates': (-79.39888675, 43.65513745)}"
-15544,6184,GO-20209013103,THEFT UNDER,2020-04-25T00:00:00,2020,April,Saturday,25,116,0,2020-05-14T00:00:00,2020,May,Thursday,14,135,12,D52,Toronto,79,University (79),Universities / Colleges,Educational,UK,ALIEN,SC,32,ONG,500.0,STOLEN,15532,"{'type': 'Point', 'coordinates': (-79.40137171, 43.66130203)}"
-15545,23827,GO-20209021675,THEFT UNDER,2020-08-28T00:00:00,2020,August,Friday,28,241,3,2020-08-28T00:00:00,2020,August,Friday,28,241,22,D14,Toronto,78,Kensington-Chinatown (78),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,BAYSTCRUISER FO,EL,7,WHI,1130.0,STOLEN,15501,"{'type': 'Point', 'coordinates': (-79.39927621, 43.65610155)}"
-15546,23862,GO-20209029863,THEFT UNDER,2020-11-16T00:00:00,2020,November,Monday,16,321,21,2020-11-17T00:00:00,2020,November,Tuesday,17,322,14,D14,Toronto,78,Kensington-Chinatown (78),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,2018 FEMALE QUI,OT,24,BLU,600.0,STOLEN,15502,"{'type': 'Point', 'coordinates': (-79.40648042, 43.65672138)}"
-15547,23865,GO-20209030830,THEFT UNDER,2020-11-27T00:00:00,2020,November,Friday,27,332,2,2020-11-28T00:00:00,2020,November,Saturday,28,333,20,D14,Toronto,78,Kensington-Chinatown (78),Bar / Restaurant,Commercial,RA,GREY VINTAGE TA,TA,3,GRY,1500.0,STOLEN,15503,"{'type': 'Point', 'coordinates': (-79.40055725, 43.64788683)}"
-15548,24001,GO-20189039662,THEFT UNDER - BICYCLE,2018-11-20T00:00:00,2018,November,Tuesday,20,324,23,2018-11-25T00:00:00,2018,November,Sunday,25,329,2,D14,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,,MT,10,BLK,0.0,STOLEN,15504,"{'type': 'Point', 'coordinates': (-79.39737512, 43.64853707)}"
-15549,24016,GO-2019191137,B&E,2018-11-01T00:00:00,2018,November,Thursday,1,305,12,2019-01-31T00:00:00,2019,January,Thursday,31,31,8,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,GIANT,CONNECT,MT,27,BLK,970.0,STOLEN,15505,"{'type': 'Point', 'coordinates': (-79.40180671, 43.65765229)}"
-15550,24035,GO-2019890140,THEFT UNDER - BICYCLE,2019-05-09T00:00:00,2019,May,Thursday,9,129,21,2019-05-16T00:00:00,2019,May,Thursday,16,136,8,D14,Toronto,78,Kensington-Chinatown (78),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NARCO,,OT,0,BLKRED,700.0,STOLEN,15506,"{'type': 'Point', 'coordinates': (-79.39875925, 43.6493456)}"
-15551,24040,GO-20199015723,THEFT UNDER,2019-05-04T00:00:00,2019,May,Saturday,4,124,9,2019-05-21T00:00:00,2019,May,Tuesday,21,141,9,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,CA,,TO,21,BLK,300.0,STOLEN,15507,"{'type': 'Point', 'coordinates': (-79.40066945, 43.65476855)}"
-15552,24041,GO-20199015723,THEFT UNDER,2019-05-04T00:00:00,2019,May,Saturday,4,124,9,2019-05-21T00:00:00,2019,May,Tuesday,21,141,9,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,TR,,TO,21,BLK,300.0,STOLEN,15508,"{'type': 'Point', 'coordinates': (-79.40066945, 43.65476855)}"
-15553,24056,GO-20191196063,THEFT UNDER - BICYCLE,2019-06-27T00:00:00,2019,June,Thursday,27,178,3,2019-06-30T00:00:00,2019,June,Sunday,30,181,20,D14,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,UNKNOWN,UNKNOWN,MT,15,BLK,300.0,STOLEN,15509,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-15554,24060,GO-20199020886,THEFT UNDER - BICYCLE,2019-07-03T00:00:00,2019,July,Wednesday,3,184,12,2019-07-03T00:00:00,2019,July,Wednesday,3,184,18,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,WILLARD,RC,12,RED,2000.0,STOLEN,15510,"{'type': 'Point', 'coordinates': (-79.40110737, 43.65227394000001)}"
-15555,24072,GO-20199022856,THEFT UNDER,2019-05-29T00:00:00,2019,May,Wednesday,29,149,17,2019-07-18T00:00:00,2019,July,Thursday,18,199,22,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,25,BLK,1300.0,STOLEN,15511,"{'type': 'Point', 'coordinates': (-79.39836354, 43.65082678)}"
-15556,24113,GO-20199034744,THEFT UNDER - BICYCLE,2019-10-21T00:00:00,2019,October,Monday,21,294,18,2019-10-21T00:00:00,2019,October,Monday,21,294,23,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RM,FUSION 930,MT,27,PLE,1200.0,STOLEN,15512,"{'type': 'Point', 'coordinates': (-79.40180671, 43.65765229)}"
-15557,24124,GO-20199037447,THEFT UNDER,2019-11-11T00:00:00,2019,November,Monday,11,315,3,2019-11-14T00:00:00,2019,November,Thursday,14,318,11,D14,Toronto,78,Kensington-Chinatown (78),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,DEFY,RC,24,RED,2500.0,STOLEN,15513,"{'type': 'Point', 'coordinates': (-79.4046631, 43.64896803)}"
-15558,24221,GO-20179013687,THEFT UNDER,2017-08-29T00:00:00,2017,August,Tuesday,29,241,20,2017-08-30T00:00:00,2017,August,Wednesday,30,242,13,D14,Toronto,78,Kensington-Chinatown (78),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,,RG,10,BLK,3500.0,STOLEN,15514,"{'type': 'Point', 'coordinates': (-79.4046631, 43.64896803)}"
-15559,24267,GO-20179021391,THEFT UNDER,2017-12-05T00:00:00,2017,December,Tuesday,5,339,20,2017-12-05T00:00:00,2017,December,Tuesday,5,339,20,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,OT,CAMPUS 202,MT,21,BLK,680.0,STOLEN,15515,"{'type': 'Point', 'coordinates': (-79.40066945, 43.65476855)}"
-15560,24273,GO-201892527,THEFT UNDER - BICYCLE,2018-01-11T00:00:00,2018,January,Thursday,11,11,22,2018-01-15T00:00:00,2018,January,Monday,15,15,12,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,OTHER,MIXED TAPE,RG,7,GLD,120.0,STOLEN,15516,"{'type': 'Point', 'coordinates': (-79.39875925, 43.6493456)}"
-15561,24300,GO-20189013729,THEFT UNDER - BICYCLE,2018-04-28T00:00:00,2018,April,Saturday,28,118,2,2018-05-03T00:00:00,2018,May,Thursday,3,123,18,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,FJ,FEATHER,RC,1,BLK,700.0,STOLEN,15517,"{'type': 'Point', 'coordinates': (-79.40066945, 43.65476855)}"
-15562,24351,GO-20189024875,THEFT UNDER - BICYCLE,2018-07-19T00:00:00,2018,July,Thursday,19,200,14,2018-08-02T00:00:00,2018,August,Thursday,2,214,15,D14,Toronto,78,Kensington-Chinatown (78),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,QUICK SL3 2014,RG,10,WHI,800.0,STOLEN,15518,"{'type': 'Point', 'coordinates': (-79.40066945, 43.65476855)}"
-15563,24361,GO-20181495937,THEFT UNDER - BICYCLE,2018-07-06T00:00:00,2018,July,Friday,6,187,2,2018-07-06T00:00:00,2018,July,Friday,6,187,9,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,OT,10,,500.0,STOLEN,15519,"{'type': 'Point', 'coordinates': (-79.39875925, 43.6493456)}"
-15564,24373,GO-20189027157,THEFT UNDER - BICYCLE,2018-08-20T00:00:00,2018,August,Monday,20,232,8,2018-08-20T00:00:00,2018,August,Monday,20,232,16,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,MT,21,SIL,200.0,STOLEN,15520,"{'type': 'Point', 'coordinates': (-79.4046631, 43.64896803)}"
-15565,24378,GO-20189028913,THEFT UNDER - BICYCLE,2018-09-02T00:00:00,2018,September,Sunday,2,245,18,2018-09-03T00:00:00,2018,September,Monday,3,246,4,D14,Toronto,78,Kensington-Chinatown (78),"Group Homes (Non-Profit, Halfway House, Social Agency)",Other,OT,GENNIX R1 2017,RC,22,BLK,3500.0,STOLEN,15521,"{'type': 'Point', 'coordinates': (-79.40364248, 43.65495832)}"
-15566,24379,GO-20189029009,THEFT UNDER - BICYCLE,2018-09-02T00:00:00,2018,September,Sunday,2,245,19,2018-09-04T00:00:00,2018,September,Tuesday,4,247,11,D14,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,GI,ESCAPE,TO,10,BLK,1000.0,STOLEN,15522,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-15567,24585,GO-20179010410,THEFT UNDER,2017-07-15T00:00:00,2017,July,Saturday,15,196,23,2017-07-17T00:00:00,2017,July,Monday,17,198,15,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,BLAST,MT,8,GRN,0.0,STOLEN,15523,"{'type': 'Point', 'coordinates': (-79.40039038, 43.65405001)}"
-15568,24588,GO-20141318595,THEFT UNDER,2014-01-10T00:00:00,2014,January,Friday,10,10,9,2014-01-10T00:00:00,2014,January,Friday,10,10,17,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,URBAN EN122687,SC,0,BLK,800.0,STOLEN,15524,"{'type': 'Point', 'coordinates': (-79.39659876, 43.64943643)}"
-15569,24592,GO-20141609988,B&E,2013-11-27T00:00:00,2013,November,Wednesday,27,331,12,2014-02-27T00:00:00,2014,February,Thursday,27,58,18,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,GARDIN,,TO,7,RED,250.0,STOLEN,15525,"{'type': 'Point', 'coordinates': (-79.4046631, 43.64896803)}"
-15570,24621,GO-20149004868,THEFT UNDER,2014-06-21T00:00:00,2014,June,Saturday,21,172,0,2014-07-10T00:00:00,2014,July,Thursday,10,191,11,D14,Toronto,78,Kensington-Chinatown (78),Bar / Restaurant,Commercial,RM,RC50,OT,27,SIL,700.0,STOLEN,15526,"{'type': 'Point', 'coordinates': (-79.40648042, 43.65672138)}"
-15571,24633,GO-20149005294,THEFT UNDER,2014-07-23T00:00:00,2014,July,Wednesday,23,204,19,2014-07-24T00:00:00,2014,July,Thursday,24,205,15,D14,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,15,PLE,400.0,STOLEN,15527,"{'type': 'Point', 'coordinates': (-79.40039038, 43.65405001)}"
-15572,24737,GO-20159005822,THEFT UNDER,2015-06-06T00:00:00,2015,June,Saturday,6,157,19,2015-08-14T00:00:00,2015,August,Friday,14,226,19,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,10,GRN,400.0,STOLEN,15528,"{'type': 'Point', 'coordinates': (-79.3968449, 43.65006869)}"
-15573,24780,GO-2016320616,THEFT UNDER - BICYCLE,2016-02-22T00:00:00,2016,February,Monday,22,53,18,2016-02-23T00:00:00,2016,February,Tuesday,23,54,10,D14,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,PEDICAB,,OT,1,BLK,200.0,STOLEN,15529,"{'type': 'Point', 'coordinates': (-79.39836354, 43.65082678)}"
-15574,24796,GO-20142423346,THEFT UNDER,2014-07-03T00:00:00,2014,July,Thursday,3,184,12,2014-07-03T00:00:00,2014,July,Thursday,3,184,16,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,MOUNTAIN,MT,24,BLK,200.0,STOLEN,15530,"{'type': 'Point', 'coordinates': (-79.39045505, 43.65985872)}"
-15575,24805,GO-20149005331,THEFT UNDER,2014-07-25T00:00:00,2014,July,Friday,25,206,10,2014-07-25T00:00:00,2014,July,Friday,25,206,19,D52,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,TR,7.2 FX DISC BRA,OT,24,BLK,670.0,STOLEN,15531,"{'type': 'Point', 'coordinates': (-79.39300540000002, 43.6580369)}"
-15576,10197,GO-20159005431,THEFT UNDER,2015-08-06T00:00:00,2015,August,Thursday,6,218,19,2015-08-07T00:00:00,2015,August,Friday,7,219,9,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,CARGOBIKE SHORT,OT,6,RED,2500.0,STOLEN,15533,"{'type': 'Point', 'coordinates': (-79.3971995, 43.65090154)}"
-15577,18348,GO-20149004729,THEFT FROM MOTOR VEHICLE UNDER,2014-07-06T00:00:00,2014,July,Sunday,6,187,3,2014-07-06T00:00:00,2014,July,Sunday,6,187,16,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,TARMAC,RC,21,RED,2943.0,RECOVERED,15534,"{'type': 'Point', 'coordinates': (-79.39737512, 43.64853707)}"
-15578,10251,GO-20151403682,THEFT UNDER,2015-08-12T00:00:00,2015,August,Wednesday,12,224,18,2015-08-15T00:00:00,2015,August,Saturday,15,227,18,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,OT,10,RED,3050.0,STOLEN,15535,"{'type': 'Point', 'coordinates': (-79.40087953, 43.65121778)}"
-15579,10266,GO-20159005814,THEFT UNDER,2015-08-14T00:00:00,2015,August,Friday,14,226,18,2015-08-16T00:00:00,2015,August,Sunday,16,228,19,D14,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,HF,BAY POINTE,OT,3,MRN,150.0,STOLEN,15536,"{'type': 'Point', 'coordinates': (-79.39955207, 43.65674851)}"
-15580,10268,GO-20159005834,THEFT UNDER,2015-08-14T00:00:00,2015,August,Friday,14,226,0,2015-08-15T00:00:00,2015,August,Saturday,15,227,11,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RC,10,BLU,0.0,STOLEN,15537,"{'type': 'Point', 'coordinates': (-79.39634181, 43.64876464)}"
-15581,10348,GO-20159006390,THEFT UNDER,2015-08-19T00:00:00,2015,August,Wednesday,19,231,9,2015-08-25T00:00:00,2015,August,Tuesday,25,237,13,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,ORION WOMEN'S 7,OT,21,,300.0,STOLEN,15538,"{'type': 'Point', 'coordinates': (-79.38918474, 43.65468421)}"
-15582,10358,GO-20159006450,THEFT UNDER,2015-08-19T00:00:00,2015,August,Wednesday,19,231,14,2015-08-28T00:00:00,2015,August,Friday,28,240,10,D52,Toronto,78,Kensington-Chinatown (78),Universities / Colleges,Educational,OT,COMMUTER 3.0,RG,8,GRY,546.0,STOLEN,15539,"{'type': 'Point', 'coordinates': (-79.3934451, 43.65919971)}"
-15583,2302,GO-2018867855,THEFT UNDER - BICYCLE,2018-05-09T00:00:00,2018,May,Wednesday,9,129,11,2018-05-14T00:00:00,2018,May,Monday,14,134,10,D52,Toronto,79,University (79),Universities / Colleges,Educational,GIANT,17ROV3,RG,0,LBL,640.0,STOLEN,15628,"{'type': 'Point', 'coordinates': (-79.40137171, 43.66130203)}"
-15584,10371,GO-20159006541,THEFT UNDER,2015-08-30T00:00:00,2015,August,Sunday,30,242,16,2015-08-31T00:00:00,2015,August,Monday,31,243,0,D14,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,CR,,MT,21,TRQ,500.0,STOLEN,15540,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-15585,10451,GO-20151587477,THEFT UNDER,2015-09-13T00:00:00,2015,September,Sunday,13,256,20,2015-09-14T00:00:00,2015,September,Monday,14,257,11,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,MT,7,BLK,250.0,STOLEN,15541,"{'type': 'Point', 'coordinates': (-79.40403711, 43.6572083)}"
-15586,10521,GO-20159007549,THEFT UNDER,2015-09-19T00:00:00,2015,September,Saturday,19,262,23,2015-09-21T00:00:00,2015,September,Monday,21,264,23,D14,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SE-DRAFT-LITE,OT,1,WHI,500.0,STOLEN,15542,"{'type': 'Point', 'coordinates': (-79.40264829, 43.65311083)}"
-15587,10564,GO-20159007918,THEFT UNDER,2015-09-17T00:00:00,2015,September,Thursday,17,260,13,2015-09-29T00:00:00,2015,September,Tuesday,29,272,14,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,PISTOL 2,MT,21,GRY,500.0,STOLEN,15543,"{'type': 'Point', 'coordinates': (-79.38994423, 43.6587011)}"
-15588,9884,GO-20151065995,THEFT UNDER,2015-06-21T00:00:00,2015,June,Sunday,21,172,17,2015-06-26T00:00:00,2015,June,Friday,26,177,14,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,,SC,0,RED,400.0,STOLEN,15544,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-15589,10575,GO-20159007993,THEFT UNDER,2015-09-29T00:00:00,2015,September,Tuesday,29,272,9,2015-10-01T00:00:00,2015,October,Thursday,1,274,12,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,B17 STANDARD,OT,1,BLK,150.0,STOLEN,15545,"{'type': 'Point', 'coordinates': (-79.3934451, 43.65919971)}"
-15590,10576,GO-20159007993,THEFT UNDER,2015-09-29T00:00:00,2015,September,Tuesday,29,272,9,2015-10-01T00:00:00,2015,October,Thursday,1,274,12,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,OT,1,SIL,20.0,STOLEN,15546,"{'type': 'Point', 'coordinates': (-79.3934451, 43.65919971)}"
-15591,16255,GO-20189022112,THEFT UNDER - BICYCLE,2018-07-11T00:00:00,2018,July,Wednesday,11,192,16,2018-07-11T00:00:00,2018,July,Wednesday,11,192,20,D52,Toronto,79,University (79),Universities / Colleges,Educational,OT,512,RC,10,YEL,450.0,STOLEN,16036,"{'type': 'Point', 'coordinates': (-79.39832557, 43.66783119)}"
-15592,10607,GO-20159008361,THEFT UNDER,2015-10-08T00:00:00,2015,October,Thursday,8,281,8,2015-10-08T00:00:00,2015,October,Thursday,8,281,18,D52,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,CA,SYNAPSE,RC,21,BLK,800.0,STOLEN,15547,"{'type': 'Point', 'coordinates': (-79.38944954, 43.65752945)}"
-15593,10616,GO-20151758467,THEFT UNDER,2015-10-11T00:00:00,2015,October,Sunday,11,284,23,2015-10-12T00:00:00,2015,October,Monday,12,285,8,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,TEMPO,MT,21,LBL,400.0,STOLEN,15548,"{'type': 'Point', 'coordinates': (-79.40270032, 43.64940096)}"
-15594,10631,GO-20159008577,THEFT UNDER,2015-10-14T00:00:00,2015,October,Wednesday,14,287,20,2015-10-15T00:00:00,2015,October,Thursday,15,288,14,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,20,ONG,0.0,STOLEN,15549,"{'type': 'Point', 'coordinates': (-79.39095898, 43.65603534)}"
-15595,10641,GO-20159008613,THEFT UNDER,2015-10-15T00:00:00,2015,October,Thursday,15,288,23,2015-10-16T00:00:00,2015,October,Friday,16,289,19,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,MIDAS,OT,1,BLK,600.0,STOLEN,15550,"{'type': 'Point', 'coordinates': (-79.39495714, 43.65047451)}"
-15596,2194,GO-20189012662,THEFT UNDER - BICYCLE,2018-04-24T00:00:00,2018,April,Tuesday,24,114,9,2018-04-24T00:00:00,2018,April,Tuesday,24,114,12,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,BOLT,RG,16,BLK,600.0,STOLEN,15551,"{'type': 'Point', 'coordinates': (-79.40447971, 43.66652336)}"
-15597,10677,GO-20151826084,THEFT UNDER,2015-10-11T00:00:00,2015,October,Sunday,11,284,9,2015-10-23T00:00:00,2015,October,Friday,23,296,19,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,700C,RG,10,CPRSIL,399.0,STOLEN,15552,"{'type': 'Point', 'coordinates': (-79.40396219, 43.65177254)}"
-15598,10692,GO-20151847596,PROPERTY - RECOVERED,2015-10-24T00:00:00,2015,October,Saturday,24,297,20,2015-10-27T00:00:00,2015,October,Tuesday,27,300,14,D52,Toronto,78,Kensington-Chinatown (78),"Police / Courts (Parole Board, Probation Office)",Other,MIELE,CICLI,TO,10,BLK,,RECOVERED,15553,"{'type': 'Point', 'coordinates': (-79.39033931, 43.65450322)}"
-15599,2924,GO-20189023485,THEFT UNDER - BICYCLE,2018-07-22T00:00:00,2018,July,Sunday,22,203,20,2018-07-23T00:00:00,2018,July,Monday,23,204,8,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,RC,24,WHI,2600.0,STOLEN,15645,"{'type': 'Point', 'coordinates': (-79.4085036, 43.66176174)}"
-15600,10731,GO-20159009411,THEFT UNDER,2015-10-12T00:00:00,2015,October,Monday,12,285,11,2015-11-05T00:00:00,2015,November,Thursday,5,309,15,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SU,SUPERCYCLE 1800,MT,18,PLE,100.0,STOLEN,15554,"{'type': 'Point', 'coordinates': (-79.3906274, 43.65241188)}"
-15601,10736,GO-20159009525,THEFT UNDER,2015-10-18T00:00:00,2015,October,Sunday,18,291,17,2015-11-08T00:00:00,2015,November,Sunday,8,312,18,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,28,GRY,3000.0,STOLEN,15555,"{'type': 'Point', 'coordinates': (-79.40066945, 43.65476855)}"
-15602,10829,GO-20152067459,THEFT UNDER,2015-11-27T00:00:00,2015,November,Friday,27,331,21,2015-12-02T00:00:00,2015,December,Wednesday,2,336,20,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,ROCKY MOUNTAIN,,MT,12,BLK,,STOLEN,15556,"{'type': 'Point', 'coordinates': (-79.39424091, 43.65480274)}"
-15603,10839,GO-20159010567,THEFT UNDER,2015-12-05T00:00:00,2015,December,Saturday,5,339,18,2015-12-07T00:00:00,2015,December,Monday,7,341,10,D52,Toronto,78,Kensington-Chinatown (78),Bar / Restaurant,Commercial,UK,LONG HAUL TRUCK,TO,30,BLK,1500.0,STOLEN,15557,"{'type': 'Point', 'coordinates': (-79.39109731, 43.64989719)}"
-15604,10851,GO-20159010705,THEFT UNDER,2015-09-04T00:00:00,2015,September,Friday,4,247,9,2015-09-26T00:00:00,2015,September,Saturday,26,269,15,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,4300,MT,8,BLU,500.0,STOLEN,15558,"{'type': 'Point', 'coordinates': (-79.38918474, 43.65468421)}"
-15605,10862,GO-20159010821,THEFT UNDER,2015-12-10T00:00:00,2015,December,Thursday,10,344,22,2015-12-11T00:00:00,2015,December,Friday,11,345,19,D14,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,TOURIST,RG,1,BRZ,200.0,STOLEN,15559,"{'type': 'Point', 'coordinates': (-79.4015293, 43.65334617)}"
-15606,10968,GO-2016203110,B&E W'INTENT,2016-02-01T00:00:00,2016,February,Monday,1,32,0,2016-02-04T00:00:00,2016,February,Thursday,4,35,17,D52,Toronto,78,Kensington-Chinatown (78),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,TO,27,,5000.0,STOLEN,15560,"{'type': 'Point', 'coordinates': (-79.3974349, 43.65650586)}"
-15607,11014,GO-2016346670,THEFT UNDER,2016-02-27T00:00:00,2016,February,Saturday,27,58,17,2016-02-27T00:00:00,2016,February,Saturday,27,58,17,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,GX500,EL,1,WHI,1000.0,STOLEN,15561,"{'type': 'Point', 'coordinates': (-79.39801041, 43.65294362)}"
-15608,11017,GO-20169001800,THEFT UNDER,2016-02-25T00:00:00,2016,February,Thursday,25,56,21,2016-02-27T00:00:00,2016,February,Saturday,27,58,17,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SU,,RG,18,DBL,0.0,STOLEN,15562,"{'type': 'Point', 'coordinates': (-79.3938201, 43.65382278)}"
-15609,11030,GO-20169002162,THEFT UNDER,2016-03-08T00:00:00,2016,March,Tuesday,8,68,23,2016-03-09T00:00:00,2016,March,Wednesday,9,69,21,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,UK,,EL,60,YEL,1600.0,STOLEN,15563,"{'type': 'Point', 'coordinates': (-79.3974349, 43.65650586)}"
-15610,11035,GO-20169002193,THEFT UNDER,2016-03-08T00:00:00,2016,March,Tuesday,8,68,10,2016-03-10T00:00:00,2016,March,Thursday,10,70,16,D14,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,GI,ATX840,MT,24,PLE,0.0,STOLEN,15564,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-15611,11038,GO-20169002215,THEFT UNDER,2016-03-08T00:00:00,2016,March,Tuesday,8,68,19,2016-03-11T00:00:00,2016,March,Friday,11,71,10,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,KAYO,MT,28,WHI,1100.0,STOLEN,15565,"{'type': 'Point', 'coordinates': (-79.3938201, 43.65382278)}"
-15612,11044,GO-20169002323,THEFT UNDER,2016-03-11T00:00:00,2016,March,Friday,11,71,18,2016-03-14T00:00:00,2016,March,Monday,14,74,12,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ALLEZ,RC,24,BLK,300.0,STOLEN,15566,"{'type': 'Point', 'coordinates': (-79.39801041, 43.65294362)}"
-15613,11065,GO-20169002553,THEFT UNDER,2016-03-19T00:00:00,2016,March,Saturday,19,79,15,2016-03-20T00:00:00,2016,March,Sunday,20,80,15,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,TR,SKYE,MT,10,LBL,700.0,STOLEN,15567,"{'type': 'Point', 'coordinates': (-79.39227275, 43.65005482)}"
-15614,11070,GO-20169002644,THEFT UNDER,2016-03-15T00:00:00,2016,March,Tuesday,15,75,17,2016-03-21T00:00:00,2016,March,Monday,21,81,18,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,SC,"29"""" DELMAR",OT,1,WHI,300.0,STOLEN,15568,"{'type': 'Point', 'coordinates': (-79.39267446, 43.6510011)}"
-15615,11075,GO-2016511407,THEFT UNDER - BICYCLE,2016-03-21T00:00:00,2016,March,Monday,21,81,9,2016-03-25T00:00:00,2016,March,Friday,25,85,19,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,2002,OT,8,BLKRED,500.0,STOLEN,15569,"{'type': 'Point', 'coordinates': (-79.39033931, 43.65450322)}"
-15616,11079,GO-20169002815,THEFT UNDER - BICYCLE,2016-03-27T00:00:00,2016,March,Sunday,27,87,22,2016-03-28T00:00:00,2016,March,Monday,28,88,14,D14,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,ROAM2,MT,27,BLU,1130.0,STOLEN,15570,"{'type': 'Point', 'coordinates': (-79.40595313, 43.65543579)}"
-15617,11088,GO-2016477701,THEFT UNDER - BICYCLE,2016-03-20T00:00:00,2016,March,Sunday,20,80,1,2016-03-20T00:00:00,2016,March,Sunday,20,80,2,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,URBANITE,MT,21,WHI,,STOLEN,15571,"{'type': 'Point', 'coordinates': (-79.39775289, 43.65225944)}"
-15618,11106,GO-20169003099,THEFT UNDER,2016-04-04T00:00:00,2016,April,Monday,4,95,15,2016-04-05T00:00:00,2016,April,Tuesday,5,96,23,D14,Toronto,78,Kensington-Chinatown (78),Unknown,Other,OT,CORSO 2.0,MT,12,BLK,599.0,STOLEN,15572,"{'type': 'Point', 'coordinates': (-79.4015293, 43.65334617)}"
-15619,11121,GO-20169003221,THEFT UNDER,2016-04-09T00:00:00,2016,April,Saturday,9,100,21,2016-04-09T00:00:00,2016,April,Saturday,9,100,21,D14,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,HOLD STEADY,RG,8,BLK,1200.0,STOLEN,15573,"{'type': 'Point', 'coordinates': (-79.40364248, 43.65495832)}"
-15620,11144,GO-2016655675,THEFT UNDER,2016-04-17T00:00:00,2016,April,Sunday,17,108,12,2016-04-17T00:00:00,2016,April,Sunday,17,108,17,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,FX 7.5,OT,20,WHI,1350.0,STOLEN,15574,"{'type': 'Point', 'coordinates': (-79.38855904, 43.6554654)}"
-15621,11152,GO-20142449355,PROPERTY - FOUND,2014-07-07T00:00:00,2014,July,Monday,7,188,13,2014-07-07T00:00:00,2014,July,Monday,7,188,15,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,HF,FEMALE STANDARD,RG,99,YEL,,UNKNOWN,15575,"{'type': 'Point', 'coordinates': (-79.39899672, 43.65160891)}"
-15622,11187,GO-20169003738,THEFT UNDER - BICYCLE,2016-04-23T00:00:00,2016,April,Saturday,23,114,14,2016-04-23T00:00:00,2016,April,Saturday,23,114,17,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RM,,RG,8,RED,800.0,STOLEN,15576,"{'type': 'Point', 'coordinates': (-79.39227275, 43.65005482)}"
-15623,11242,GO-20169004055,THEFT UNDER,2016-05-01T00:00:00,2016,May,Sunday,1,122,17,2016-05-02T00:00:00,2016,May,Monday,2,123,11,D52,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,TR,7.2 FX WSD STEP,RG,24,GRY,675.0,STOLEN,15577,"{'type': 'Point', 'coordinates': (-79.39300540000002, 43.6580369)}"
-15624,11252,GO-20169004117,THEFT UNDER,2016-05-03T00:00:00,2016,May,Tuesday,3,124,21,2016-05-03T00:00:00,2016,May,Tuesday,3,124,23,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,7,,800.0,STOLEN,15578,"{'type': 'Point', 'coordinates': (-79.396125, 43.65334628)}"
-15625,11268,GO-20169004232,THEFT UNDER,2016-04-29T00:00:00,2016,April,Friday,29,120,12,2016-05-06T00:00:00,2016,May,Friday,6,127,20,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,GI,LIV THRIVE 0,OT,11,SIL,1229.0,STOLEN,15579,"{'type': 'Point', 'coordinates': (-79.39339759, 43.65276389)}"
-15626,11269,GO-20169004232,THEFT UNDER,2016-04-29T00:00:00,2016,April,Friday,29,120,12,2016-05-06T00:00:00,2016,May,Friday,6,127,20,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,GI,OCR 1,RC,10,SIL,1400.0,STOLEN,15580,"{'type': 'Point', 'coordinates': (-79.39339759, 43.65276389)}"
-15627,11333,GO-2016854015,THEFT UNDER - BICYCLE,2016-05-17T00:00:00,2016,May,Tuesday,17,138,17,2016-05-18T00:00:00,2016,May,Wednesday,18,139,10,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,MONSTER,EL,1,GRNGLD,2500.0,STOLEN,15581,"{'type': 'Point', 'coordinates': (-79.39955207, 43.65674851)}"
-15628,11335,GO-2016864370,PROPERTY - FOUND,2016-05-19T00:00:00,2016,May,Thursday,19,140,6,2016-05-19T00:00:00,2016,May,Thursday,19,140,20,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIO,,EL,1,BLK,,UNKNOWN,15582,"{'type': 'Point', 'coordinates': (-79.40595313, 43.65543579)}"
-15629,11430,GO-20169005249,THEFT UNDER - BICYCLE,2016-05-31T00:00:00,2016,May,Tuesday,31,152,21,2016-06-02T00:00:00,2016,June,Thursday,2,154,13,D14,Toronto,78,Kensington-Chinatown (78),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,ASPECT,MT,30,BLK,1200.0,STOLEN,15583,"{'type': 'Point', 'coordinates': (-79.4015293, 43.65334617)}"
-15630,11513,GO-20161029727,THEFT UNDER,2016-06-09T00:00:00,2016,June,Thursday,9,161,9,2016-06-13T00:00:00,2016,June,Monday,13,165,15,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,OT,1,YEL,180.0,STOLEN,15584,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-15631,11537,GO-20161038019,THEFT UNDER - BICYCLE,2016-06-14T00:00:00,2016,June,Tuesday,14,166,19,2016-06-15T00:00:00,2016,June,Wednesday,15,167,18,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,TOUGHROAD SLR2,MT,21,DBLDGR,1540.0,STOLEN,15585,"{'type': 'Point', 'coordinates': (-79.39801041, 43.65294362)}"
-15632,11548,GO-20169005864,THEFT UNDER,2016-02-20T00:00:00,2016,February,Saturday,20,51,19,2016-06-15T00:00:00,2016,June,Wednesday,15,167,23,D52,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,MO,COAST TO COAST,TO,24,BLK,800.0,STOLEN,15586,"{'type': 'Point', 'coordinates': (-79.38984563, 43.65622357)}"
-15633,11553,GO-20161050897,THEFT UNDER - BICYCLE,2016-06-16T00:00:00,2016,June,Thursday,16,168,15,2016-06-16T00:00:00,2016,June,Thursday,16,168,17,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,WICKED,FALL OUT,MT,21,GRYBLK,200.0,STOLEN,15587,"{'type': 'Point', 'coordinates': (-79.38918474, 43.65468421)}"
-15634,11571,GO-20169005977,THEFT UNDER - BICYCLE,2016-06-17T00:00:00,2016,June,Friday,17,169,11,2016-06-17T00:00:00,2016,June,Friday,17,169,21,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KH,,RC,20,,1300.0,STOLEN,15588,"{'type': 'Point', 'coordinates': (-79.38994423, 43.6587011)}"
-15635,11582,GO-20169006024,THEFT UNDER - BICYCLE,2016-06-19T00:00:00,2016,June,Sunday,19,171,18,2016-06-19T00:00:00,2016,June,Sunday,19,171,21,D14,Toronto,78,Kensington-Chinatown (78),Bar / Restaurant,Commercial,OT,,MT,27,BLK,1300.0,STOLEN,15589,"{'type': 'Point', 'coordinates': (-79.39963685, 43.64806649)}"
-15636,11587,GO-20169006058,THEFT UNDER,2016-06-20T00:00:00,2016,June,Monday,20,172,0,2016-06-20T00:00:00,2016,June,Monday,20,172,14,D52,Toronto,78,Kensington-Chinatown (78),Bar / Restaurant,Commercial,OT,METRIX,RG,18,BGE,730.0,STOLEN,15590,"{'type': 'Point', 'coordinates': (-79.39340883, 43.6494058)}"
-15637,11611,GO-20169006199,THEFT UNDER,2016-06-22T00:00:00,2016,June,Wednesday,22,174,0,2016-06-22T00:00:00,2016,June,Wednesday,22,174,9,D14,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,MASI FIXED RISE,OT,1,TRQ,300.0,STOLEN,15591,"{'type': 'Point', 'coordinates': (-79.40397597, 43.65583003)}"
-15638,11686,GO-20169006655,THEFT UNDER,2016-07-01T00:00:00,2016,July,Friday,1,183,22,2016-07-03T00:00:00,2016,July,Sunday,3,185,15,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ROAD RACER,TO,14,BLK,250.0,STOLEN,15592,"{'type': 'Point', 'coordinates': (-79.3968449, 43.65006869)}"
-15639,11714,GO-20169006750,THEFT UNDER,2016-07-04T00:00:00,2016,July,Monday,4,186,2,2016-07-05T00:00:00,2016,July,Tuesday,5,187,12,D14,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RC,1,BLK,500.0,STOLEN,15593,"{'type': 'Point', 'coordinates': (-79.40264829, 43.65311083)}"
-15640,11720,GO-20161185026,THEFT UNDER,2016-07-06T00:00:00,2016,July,Wednesday,6,188,19,2016-07-06T00:00:00,2016,July,Wednesday,6,188,22,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DEVINCI,HYBRID,OT,0,GRY,1200.0,STOLEN,15594,"{'type': 'Point', 'coordinates': (-79.39033931, 43.65450322)}"
-15641,11764,GO-20169006987,THEFT UNDER - BICYCLE,2016-07-10T00:00:00,2016,July,Sunday,10,192,2,2016-07-10T00:00:00,2016,July,Sunday,10,192,22,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,OF STERLING,RG,8,SIL,749.0,STOLEN,15595,"{'type': 'Point', 'coordinates': (-79.39927621, 43.65610155)}"
-15642,11766,GO-20169006995,THEFT UNDER - BICYCLE,2016-07-10T00:00:00,2016,July,Sunday,10,192,19,2016-07-11T00:00:00,2016,July,Monday,11,193,0,D52,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,KOURSA-IDEA COU,RC,12,WHI,3000.0,STOLEN,15596,"{'type': 'Point', 'coordinates': (-79.39567892000001, 43.65226405)}"
-15643,11773,GO-20161196117,THEFT UNDER - BICYCLE,2016-06-28T00:00:00,2016,June,Tuesday,28,180,11,2016-07-08T00:00:00,2016,July,Friday,8,190,15,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,YUKON,OT,20,SIL,1000.0,STOLEN,15597,"{'type': 'Point', 'coordinates': (-79.39801041, 43.65294362)}"
-15644,11786,GO-20161206638,THEFT OF EBIKE UNDER $5000,2016-07-10T00:00:00,2016,July,Sunday,10,192,0,2016-07-10T00:00:00,2016,July,Sunday,10,192,7,D52,Toronto,78,Kensington-Chinatown (78),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUN,XINRI,EL,0,BLKRED,1800.0,STOLEN,15598,"{'type': 'Point', 'coordinates': (-79.39366252, 43.64935047)}"
-15645,11792,GO-20161209954,THEFT UNDER - BICYCLE,2016-07-10T00:00:00,2016,July,Sunday,10,192,18,2016-07-10T00:00:00,2016,July,Sunday,10,192,19,D14,Toronto,78,Kensington-Chinatown (78),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,KONA,JAKE,OT,18,,1500.0,STOLEN,15599,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-15646,3431,GO-20189029730,THEFT UNDER - BICYCLE,2018-09-09T00:00:00,2018,September,Sunday,9,252,9,2018-09-09T00:00:00,2018,September,Sunday,9,252,20,D14,Toronto,79,University (79),Ttc Subway Station,Transit,CA,2018 700 M QUIC,MT,7,GRY,600.0,STOLEN,15662,"{'type': 'Point', 'coordinates': (-79.40383181, 43.66665689)}"
-15647,11857,GO-20169007495,THEFT UNDER - BICYCLE,2016-07-05T00:00:00,2016,July,Tuesday,5,187,9,2016-07-20T00:00:00,2016,July,Wednesday,20,202,16,D52,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,NO,YORKVILLE,RG,21,GRY,600.0,STOLEN,15600,"{'type': 'Point', 'coordinates': (-79.38994423, 43.6587011)}"
-15648,11864,GO-20169007545,THEFT UNDER,2016-07-20T00:00:00,2016,July,Wednesday,20,202,20,2016-07-21T00:00:00,2016,July,Thursday,21,203,20,D52,Toronto,78,Kensington-Chinatown (78),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,ROAM,RG,8,MRN,600.0,STOLEN,15601,"{'type': 'Point', 'coordinates': (-79.38918474, 43.65468421)}"
-15649,11905,GO-20169007731,THEFT UNDER - BICYCLE,2016-07-25T00:00:00,2016,July,Monday,25,207,8,2016-07-25T00:00:00,2016,July,Monday,25,207,21,D14,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,VICTORIA,RG,24,BLU,600.0,STOLEN,15602,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-15650,11937,GO-20169007731,THEFT UNDER - BICYCLE,2016-07-25T00:00:00,2016,July,Monday,25,207,8,2016-07-25T00:00:00,2016,July,Monday,25,207,21,D14,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,VICTORIA2,RG,24,BLU,650.0,STOLEN,15603,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-15651,12040,GO-20169008451,THEFT UNDER - BICYCLE,2016-08-09T00:00:00,2016,August,Tuesday,9,222,1,2016-08-09T00:00:00,2016,August,Tuesday,9,222,14,D14,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,16 VERZA SPEED,RG,21,TRQ,600.0,STOLEN,15604,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-15652,12061,GO-20161411760,THEFT UNDER - BICYCLE,2016-08-06T00:00:00,2016,August,Saturday,6,219,20,2016-08-10T00:00:00,2016,August,Wednesday,10,223,20,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CANNONDALE,BADBOY 3,RC,27,BLK,1500.0,STOLEN,15605,"{'type': 'Point', 'coordinates': (-79.39801041, 43.65294362)}"
-15653,12151,GO-20169009123,THEFT UNDER,2016-08-19T00:00:00,2016,August,Friday,19,232,21,2016-08-20T00:00:00,2016,August,Saturday,20,233,13,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,FENIX AR2,OT,20,WHI,1300.0,STOLEN,15606,"{'type': 'Point', 'coordinates': (-79.39840686, 43.65172265)}"
-15654,12238,GO-20169009764,THEFT UNDER - BICYCLE,2016-08-31T00:00:00,2016,August,Wednesday,31,244,18,2016-09-01T00:00:00,2016,September,Thursday,1,245,0,D52,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,KO,,RG,1,TRQ,800.0,STOLEN,15607,"{'type': 'Point', 'coordinates': (-79.39225095, 43.656266970000004)}"
-15655,12272,GO-20161576615,B&E,2016-09-05T00:00:00,2016,September,Monday,5,249,11,2016-09-05T00:00:00,2016,September,Monday,5,249,17,D14,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,RG,10,,,STOLEN,15608,"{'type': 'Point', 'coordinates': (-79.39997085, 43.648892530000005)}"
-15656,12301,GO-20169010158,THEFT UNDER,2016-09-07T00:00:00,2016,September,Wednesday,7,251,4,2016-09-08T00:00:00,2016,September,Thursday,8,252,20,D14,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,GI,QUICK RELEASE W,RC,10,BLK,890.0,STOLEN,15609,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-15657,12305,GO-20161603706,THEFT UNDER - BICYCLE,2016-09-09T00:00:00,2016,September,Friday,9,253,11,2016-09-09T00:00:00,2016,September,Friday,9,253,17,D14,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,UNKNOWN,UNKNOWN,RG,10,BLU,450.0,STOLEN,15610,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-15658,12326,GO-20169010342,THEFT UNDER,2016-08-23T00:00:00,2016,August,Tuesday,23,236,4,2016-09-13T00:00:00,2016,September,Tuesday,13,257,9,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,GI,,TO,21,GRY,400.0,STOLEN,15611,"{'type': 'Point', 'coordinates': (-79.39227275, 43.65005482)}"
-15659,12381,GO-20169010625,THEFT UNDER - BICYCLE,2016-09-15T00:00:00,2016,September,Thursday,15,259,9,2016-09-18T00:00:00,2016,September,Sunday,18,262,8,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,YORKVILLE,RG,21,LBL,500.0,STOLEN,15612,"{'type': 'Point', 'coordinates': (-79.38994423, 43.6587011)}"
-15660,12461,GO-20161700231,THEFT UNDER - BICYCLE,2016-06-04T00:00:00,2016,June,Saturday,4,156,21,2016-09-24T00:00:00,2016,September,Saturday,24,268,12,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SEKINE,,TO,12,BLU,350.0,STOLEN,15613,"{'type': 'Point', 'coordinates': (-79.40397083000002, 43.64718733)}"
-15661,12513,GO-20161737444,THEFT UNDER - BICYCLE,2016-09-29T00:00:00,2016,September,Thursday,29,273,22,2016-09-30T00:00:00,2016,September,Friday,30,274,9,D14,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DIODARA,CORSO,MT,21,BLK,450.0,STOLEN,15614,"{'type': 'Point', 'coordinates': (-79.40595313, 43.65543579)}"
-15662,12514,GO-20161737866,THEFT OF EBIKE UNDER $5000,2016-09-30T00:00:00,2016,September,Friday,30,274,10,2016-09-30T00:00:00,2016,September,Friday,30,274,11,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,,EL,12,,1600.0,STOLEN,15615,"{'type': 'Point', 'coordinates': (-79.39227275, 43.65005482)}"
-15663,12530,GO-20161752099,THEFT UNDER - BICYCLE,2016-10-01T00:00:00,2016,October,Saturday,1,275,12,2016-10-02T00:00:00,2016,October,Sunday,2,276,15,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,,RG,1,BLKBLU,200.0,STOLEN,15616,"{'type': 'Point', 'coordinates': (-79.40196209, 43.64761228)}"
-15664,12559,GO-20161776244,PROPERTY - LOST,2016-02-03T00:00:00,2016,February,Wednesday,3,34,12,2016-10-06T00:00:00,2016,October,Thursday,6,280,7,D52,Toronto,78,Kensington-Chinatown (78),"Police / Courts (Parole Board, Probation Office)",Other,UNKNOWN MAKE,,MT,21,WHI,,UNKNOWN,15617,"{'type': 'Point', 'coordinates': (-79.39033931, 43.65450322)}"
-15665,12583,GO-20169011795,THEFT UNDER - BICYCLE,2016-09-20T00:00:00,2016,September,Tuesday,20,264,0,2016-10-10T00:00:00,2016,October,Monday,10,284,10,D14,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,LONG HAUL TRUCK,TO,27,DGR,1500.0,STOLEN,15618,"{'type': 'Point', 'coordinates': (-79.40397597, 43.65583003)}"
-15666,12621,GO-20169012071,THEFT UNDER - BICYCLE,2016-10-14T00:00:00,2016,October,Friday,14,288,8,2016-10-14T00:00:00,2016,October,Friday,14,288,23,D52,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,OSLO,RC,9,GRY,1000.0,STOLEN,15619,"{'type': 'Point', 'coordinates': (-79.39136265, 43.65838682)}"
-15667,12769,GO-20169013482,THEFT UNDER - BICYCLE,2016-11-15T00:00:00,2016,November,Tuesday,15,320,21,2016-11-16T00:00:00,2016,November,Wednesday,16,321,12,D52,Toronto,78,Kensington-Chinatown (78),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,CAAD12 DISK 105,RC,11,BLK,2477.0,STOLEN,15620,"{'type': 'Point', 'coordinates': (-79.39095898, 43.65603534)}"
-15668,12770,GO-20162038123,OBSTRUCT PEACE OFFICER,2016-11-16T00:00:00,2016,November,Wednesday,16,321,15,2016-11-16T00:00:00,2016,November,Wednesday,16,321,16,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,DUAL SPORT GTX2,MT,21,REDGRY,,UNKNOWN,15621,"{'type': 'Point', 'coordinates': (-79.396125, 43.65334628)}"
-15669,12781,GO-20169013559,THEFT UNDER - BICYCLE,2016-11-16T00:00:00,2016,November,Wednesday,16,321,22,2016-11-17T00:00:00,2016,November,Thursday,17,322,23,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,S2 2014,RC,18,RED,2000.0,STOLEN,15622,"{'type': 'Point', 'coordinates': (-79.39225095, 43.656266970000004)}"
-15670,12796,GO-20162055788,THEFT UNDER - BICYCLE,2016-11-18T00:00:00,2016,November,Friday,18,323,13,2016-11-18T00:00:00,2016,November,Friday,18,323,14,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,EVO VANTAGE 5.0,TO,14,BLKGRN,500.0,STOLEN,15623,"{'type': 'Point', 'coordinates': (-79.39837878, 43.64832482)}"
-15671,12808,GO-20169013705,THEFT UNDER - BICYCLE,2016-11-21T00:00:00,2016,November,Monday,21,326,23,2016-11-22T00:00:00,2016,November,Tuesday,22,327,6,D14,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,SC,,TO,10,ONG,300.0,STOLEN,15624,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-15672,12837,GO-20169014091,THEFT UNDER - BICYCLE,2016-12-01T00:00:00,2016,December,Thursday,1,336,8,2016-12-01T00:00:00,2016,December,Thursday,1,336,13,D14,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,TUXEDO,RG,27,BLK,550.0,STOLEN,15625,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-15673,2199,GO-20189012756,THEFT UNDER - BICYCLE,2018-04-24T00:00:00,2018,April,Tuesday,24,114,19,2018-04-24T00:00:00,2018,April,Tuesday,24,114,22,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,1,WHI,300.0,STOLEN,15626,"{'type': 'Point', 'coordinates': (-79.40478414, 43.66249403)}"
-15674,2276,GO-20189014267,THEFT UNDER - BICYCLE,2018-05-08T00:00:00,2018,May,Tuesday,8,128,17,2018-05-09T00:00:00,2018,May,Wednesday,9,129,10,D52,Toronto,79,University (79),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,KO,JAKE THE SNAKE,RC,21,SIL,1500.0,STOLEN,15627,"{'type': 'Point', 'coordinates': (-79.39348694, 43.66726478)}"
-15675,9894,GO-20159003956,THEFT UNDER,2015-06-19T00:00:00,2015,June,Friday,19,170,15,2015-06-25T00:00:00,2015,June,Thursday,25,176,23,D14,Toronto,79,University (79),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,KH,URBAN SOUL,RG,1,BLK,600.0,STOLEN,15629,"{'type': 'Point', 'coordinates': (-79.40447971, 43.66652336)}"
-15676,2315,GO-20189015010,THEFT UNDER - BICYCLE,2018-05-13T00:00:00,2018,May,Sunday,13,133,6,2018-05-15T00:00:00,2018,May,Tuesday,15,135,12,D14,Toronto,79,University (79),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,FJ,,OT,1,RED,500.0,STOLEN,15630,"{'type': 'Point', 'coordinates': (-79.40864191, 43.66567614)}"
-15677,2343,GO-2018895004,THEFT UNDER - BICYCLE,2018-05-10T00:00:00,2018,May,Thursday,10,130,13,2018-05-18T00:00:00,2018,May,Friday,18,138,9,D52,Toronto,79,University (79),Universities / Colleges,Educational,GIANT,YUKON,OT,15,WHI,450.0,STOLEN,15631,"{'type': 'Point', 'coordinates': (-79.39311152, 43.66637227)}"
-15678,2374,GO-20189015880,THEFT UNDER,2018-05-22T00:00:00,2018,May,Tuesday,22,142,18,2018-05-22T00:00:00,2018,May,Tuesday,22,142,23,D52,Toronto,79,University (79),Universities / Colleges,Educational,EM,URBAN,EL,32,RED,1230.0,STOLEN,15632,"{'type': 'Point', 'coordinates': (-79.39488188, 43.66100963)}"
-15679,2407,GO-2018959781,THEFT UNDER - BICYCLE,2018-05-22T00:00:00,2018,May,Tuesday,22,142,21,2018-05-28T00:00:00,2018,May,Monday,28,148,8,D52,Toronto,79,University (79),Universities / Colleges,Educational,EMMO,EMMO,OT,0,REDBLK,1400.0,STOLEN,15633,"{'type': 'Point', 'coordinates': (-79.39488188, 43.66100963)}"
-15680,2415,GO-2018966828,THEFT UNDER - BICYCLE,2018-05-21T00:00:00,2018,May,Monday,21,141,23,2018-05-29T00:00:00,2018,May,Tuesday,29,149,8,D52,Toronto,79,University (79),Universities / Colleges,Educational,UNKNOWN MAKE,,MT,0,YEL,90.0,STOLEN,15634,"{'type': 'Point', 'coordinates': (-79.39968364, 43.66258094)}"
-15681,2482,GO-20181029965,THEFT UNDER - BICYCLE,2018-06-05T00:00:00,2018,June,Tuesday,5,156,17,2018-06-07T00:00:00,2018,June,Thursday,7,158,9,D52,Toronto,79,University (79),Universities / Colleges,Educational,UNKNOWN MAKE,,OT,0,,,STOLEN,15635,"{'type': 'Point', 'coordinates': (-79.39466302000001, 43.6623757)}"
-15682,2606,GO-20181113777,THEFT UNDER - BICYCLE,2018-06-09T00:00:00,2018,June,Saturday,9,160,16,2018-06-19T00:00:00,2018,June,Tuesday,19,170,12,D52,Toronto,79,University (79),Universities / Colleges,Educational,SPECIALIZED,ROCK CRAWLER,MT,0,,2000.0,STOLEN,15636,"{'type': 'Point', 'coordinates': (-79.40207036, 43.66305191)}"
-15683,2697,GO-20181168087,THEFT UNDER - BICYCLE,2018-06-18T00:00:00,2018,June,Monday,18,169,17,2018-06-27T00:00:00,2018,June,Wednesday,27,178,11,D52,Toronto,79,University (79),Universities / Colleges,Educational,SPECIALIZED,PRO CARBON SIRR,RG,0,GRN,2000.0,STOLEN,15637,"{'type': 'Point', 'coordinates': (-79.39894426, 43.66543776)}"
-15684,2739,GO-20189021004,THEFT UNDER - BICYCLE,2018-06-01T00:00:00,2018,June,Friday,1,152,11,2018-07-03T00:00:00,2018,July,Tuesday,3,184,12,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,ROUBAIX 2.0,RC,21,SIL,1000.0,STOLEN,15638,"{'type': 'Point', 'coordinates': (-79.40411393, 43.66079116)}"
-15685,2780,GO-20189021573,THEFT UNDER - BICYCLE,2018-07-06T00:00:00,2018,July,Friday,6,187,20,2018-07-07T00:00:00,2018,July,Saturday,7,188,19,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,VITA ELITE,OT,21,WHI,800.0,STOLEN,15639,"{'type': 'Point', 'coordinates': (-79.40383181, 43.66665689)}"
-15686,18375,GO-20149007464,THEFT UNDER,2014-10-07T00:00:00,2014,October,Tuesday,7,280,1,2014-10-07T00:00:00,2014,October,Tuesday,7,280,16,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,PACINO,EL,1,RED,2500.0,STOLEN,15640,"{'type': 'Point', 'coordinates': (-79.39997085, 43.648892530000005)}"
-15687,2791,GO-20189021764,THEFT UNDER - BICYCLE,2018-07-09T00:00:00,2018,July,Monday,9,190,18,2018-07-09T00:00:00,2018,July,Monday,9,190,19,D52,Toronto,79,University (79),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,TACANA 3,MT,9,BLK,1000.0,STOLEN,15641,"{'type': 'Point', 'coordinates': (-79.39348694, 43.66726478)}"
-15688,2819,GO-20181275568,THEFT UNDER - BICYCLE,2018-07-11T00:00:00,2018,July,Wednesday,11,192,6,2018-07-11T00:00:00,2018,July,Wednesday,11,192,14,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,OT,0,SIL,1000.0,STOLEN,15642,"{'type': 'Point', 'coordinates': (-79.39968364, 43.66258094)}"
-15689,2823,GO-20189022124,THEFT UNDER - BICYCLE,2018-07-12T00:00:00,2018,July,Thursday,12,193,10,2018-07-12T00:00:00,2018,July,Thursday,12,193,21,D52,Toronto,79,University (79),Universities / Colleges,Educational,TR,ZEKTOR 2,RG,16,SIL,830.0,STOLEN,15643,"{'type': 'Point', 'coordinates': (-79.39311152, 43.66637227)}"
-15690,2843,GO-20189022422,THEFT UNDER - BICYCLE,2018-07-12T00:00:00,2018,July,Thursday,12,193,1,2018-07-14T00:00:00,2018,July,Saturday,14,195,16,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,UK,NEW TAKARA KABU,RC,1,BLU,260.0,STOLEN,15644,"{'type': 'Point', 'coordinates': (-79.40237577, 43.66385178)}"
-15691,2931,GO-20181349994,THEFT UNDER - BICYCLE,2018-07-14T00:00:00,2018,July,Saturday,14,195,18,2018-07-16T00:00:00,2018,July,Monday,16,197,16,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,OT,0,YEL,1025.0,UNKNOWN,15646,"{'type': 'Point', 'coordinates': (-79.40170888, 43.66215594)}"
-15692,2980,GO-20189024080,THEFT UNDER - BICYCLE,2018-07-26T00:00:00,2018,July,Thursday,26,207,19,2018-07-26T00:00:00,2018,July,Thursday,26,207,19,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,NOAH,RG,22,BLK,3100.0,STOLEN,15647,"{'type': 'Point', 'coordinates': (-79.40198436, 43.65811126)}"
-15693,2986,GO-20181371705,THEFT UNDER - BICYCLE,2018-07-20T00:00:00,2018,July,Friday,20,201,9,2018-07-27T00:00:00,2018,July,Friday,27,208,9,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,,MT,0,WHIBLU,200.0,STOLEN,15648,"{'type': 'Point', 'coordinates': (-79.40207036, 43.66305191)}"
-15694,3017,GO-20181364315,THEFT UNDER - BICYCLE,2018-07-25T00:00:00,2018,July,Wednesday,25,206,19,2018-07-26T00:00:00,2018,July,Thursday,26,207,8,D14,Toronto,79,University (79),"Private Property Structure (Pool, Shed, Detached Garage)",Other,URBANIT,LAKESHORE,RG,1,ONG,700.0,STOLEN,15649,"{'type': 'Point', 'coordinates': (-79.40411393, 43.66079116)}"
-15695,3021,GO-20189024480,THEFT UNDER - BICYCLE,2018-07-29T00:00:00,2018,July,Sunday,29,210,8,2018-07-30T00:00:00,2018,July,Monday,30,211,10,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,21,MRN,200.0,STOLEN,15650,"{'type': 'Point', 'coordinates': (-79.40382824, 43.66269877)}"
-15696,3022,GO-20189024480,THEFT UNDER - BICYCLE,2018-07-29T00:00:00,2018,July,Sunday,29,210,8,2018-07-30T00:00:00,2018,July,Monday,30,211,10,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,21,YEL,200.0,STOLEN,15651,"{'type': 'Point', 'coordinates': (-79.40382824, 43.66269877)}"
-15697,3034,GO-20181399325,THEFT OF EBIKE UNDER $5000,2018-07-29T00:00:00,2018,July,Sunday,29,210,9,2018-07-31T00:00:00,2018,July,Tuesday,31,212,10,D52,Toronto,79,University (79),"Open Areas (Lakes, Parks, Rivers)",Outside,OTHER,26 OUTBACK,EL,12,,2000.0,STOLEN,15652,"{'type': 'Point', 'coordinates': (-79.39676402, 43.66012322)}"
-15698,3043,GO-20189024724,THEFT UNDER - BICYCLE,2018-07-30T00:00:00,2018,July,Monday,30,211,21,2018-08-01T00:00:00,2018,August,Wednesday,1,213,9,D52,Toronto,79,University (79),Universities / Colleges,Educational,GI,ATX2,MT,21,BLK,600.0,STOLEN,15653,"{'type': 'Point', 'coordinates': (-79.40137171, 43.66130203)}"
-15699,3141,GO-20189025789,THEFT UNDER - BICYCLE,2018-08-10T00:00:00,2018,August,Friday,10,222,8,2018-08-10T00:00:00,2018,August,Friday,10,222,8,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,ZEKTOR 3,RG,18,BLK,1000.0,STOLEN,15654,"{'type': 'Point', 'coordinates': (-79.4078215, 43.66005724)}"
-15700,3142,GO-20189025789,THEFT UNDER - BICYCLE,2018-08-10T00:00:00,2018,August,Friday,10,222,8,2018-08-10T00:00:00,2018,August,Friday,10,222,8,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,ZEKTOR 3,RG,18,BLK,1000.0,STOLEN,15655,"{'type': 'Point', 'coordinates': (-79.4078215, 43.66005724)}"
-15701,3148,GO-20189025845,THEFT UNDER,2018-08-10T00:00:00,2018,August,Friday,10,222,2,2018-08-10T00:00:00,2018,August,Friday,10,222,14,D14,Toronto,79,University (79),Unknown,Other,UK,2017 SPEC SIRRU,RG,8,DGR,850.0,STOLEN,15656,"{'type': 'Point', 'coordinates': (-79.40717904, 43.66201639)}"
-15702,3222,GO-20189026595,THEFT UNDER - BICYCLE,2018-08-15T00:00:00,2018,August,Wednesday,15,227,15,2018-08-16T00:00:00,2018,August,Thursday,16,228,9,D52,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,OT,PROSPECT,TO,18,,1512.0,STOLEN,15657,"{'type': 'Point', 'coordinates': (-79.40307045, 43.6655101)}"
-15703,3252,GO-20189027056,THEFT UNDER - BICYCLE,2018-08-18T00:00:00,2018,August,Saturday,18,230,15,2018-08-20T00:00:00,2018,August,Monday,20,232,1,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,,RG,7,BLK,0.0,STOLEN,15658,"{'type': 'Point', 'coordinates': (-79.39348694, 43.66726478)}"
-15704,3256,GO-20181535910,THEFT UNDER - BICYCLE,2018-07-31T00:00:00,2018,July,Tuesday,31,212,10,2018-08-15T00:00:00,2018,August,Wednesday,15,227,19,D52,Toronto,79,University (79),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SURLY,,OT,21,BLK,2500.0,STOLEN,15659,"{'type': 'Point', 'coordinates': (-79.39988102, 43.65980157)}"
-15705,3352,GO-20189028503,THEFT UNDER - BICYCLE,2018-08-29T00:00:00,2018,August,Wednesday,29,241,16,2018-08-29T00:00:00,2018,August,Wednesday,29,241,21,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,,RG,8,GRY,1000.0,STOLEN,15660,"{'type': 'Point', 'coordinates': (-79.40411393, 43.66079116)}"
-15706,3377,GO-20181609465,THEFT UNDER - BICYCLE,2018-08-31T00:00:00,2018,August,Friday,31,243,0,2018-08-31T00:00:00,2018,August,Friday,31,243,1,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GAMMA VISION,,OT,18,RED,100.0,STOLEN,15661,"{'type': 'Point', 'coordinates': (-79.4000091, 43.65794797)}"
-15707,3439,GO-20181682211,THEFT UNDER - BICYCLE,2018-09-04T00:00:00,2018,September,Tuesday,4,247,22,2018-09-07T00:00:00,2018,September,Friday,7,250,8,D52,Toronto,79,University (79),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,OT,0,,600.0,STOLEN,15664,"{'type': 'Point', 'coordinates': (-79.39968364, 43.66258094)}"
-15708,3485,GO-20189030639,THEFT UNDER - BICYCLE,2018-09-15T00:00:00,2018,September,Saturday,15,258,20,2018-09-16T00:00:00,2018,September,Sunday,16,259,0,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,VECTOR 700C,RG,21,BLU,300.0,STOLEN,15665,"{'type': 'Point', 'coordinates': (-79.39979751, 43.66751644)}"
-15709,3496,GO-20189030848,THEFT UNDER,2018-09-17T00:00:00,2018,September,Monday,17,260,16,2018-09-17T00:00:00,2018,September,Monday,17,260,18,D52,Toronto,79,University (79),Bar / Restaurant,Commercial,NO,VFR FORMA HYBRI,TO,21,BLU,300.0,STOLEN,15666,"{'type': 'Point', 'coordinates': (-79.39979751, 43.66751644)}"
-15710,3514,GO-20181717207,THEFT FROM MOTOR VEHICLE OVER,2018-09-14T00:00:00,2018,September,Friday,14,257,21,2018-09-16T00:00:00,2018,September,Sunday,16,259,13,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,ROUBAIX,RC,22,BLK,7000.0,STOLEN,15667,"{'type': 'Point', 'coordinates': (-79.40583441, 43.65867014)}"
-15711,3515,GO-20181717207,THEFT FROM MOTOR VEHICLE OVER,2018-09-14T00:00:00,2018,September,Friday,14,257,21,2018-09-16T00:00:00,2018,September,Sunday,16,259,13,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,PINARELLO,ST6,RC,20,BLKRED,9000.0,STOLEN,15668,"{'type': 'Point', 'coordinates': (-79.40583441, 43.65867014)}"
-15712,3525,GO-20181748050,THEFT UNDER - BICYCLE,2018-09-16T00:00:00,2018,September,Sunday,16,259,19,2018-09-17T00:00:00,2018,September,Monday,17,260,13,D52,Toronto,79,University (79),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GIANT,,OT,24,BLKWHI,600.0,STOLEN,15669,"{'type': 'Point', 'coordinates': (-79.39343719, 43.66303628)}"
-15713,3576,GO-20189032351,THEFT UNDER,2018-09-23T00:00:00,2018,September,Sunday,23,266,12,2018-09-29T00:00:00,2018,September,Saturday,29,272,12,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,1970'S LADIES,TO,3,BLU,200.0,STOLEN,15670,"{'type': 'Point', 'coordinates': (-79.40180671, 43.65765229)}"
-15714,3662,GO-20181873074,B&E,2018-10-09T00:00:00,2018,October,Tuesday,9,282,19,2018-10-10T00:00:00,2018,October,Wednesday,10,283,15,D14,Toronto,79,University (79),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,THRESHOLD TOAGR,OT,22,BLK,1945.0,STOLEN,15671,"{'type': 'Point', 'coordinates': (-79.40743417, 43.66591416)}"
-15715,3663,GO-20181873074,B&E,2018-10-09T00:00:00,2018,October,Tuesday,9,282,19,2018-10-10T00:00:00,2018,October,Wednesday,10,283,15,D14,Toronto,79,University (79),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CERVELO,R2,RC,22,GRY,4962.0,STOLEN,15672,"{'type': 'Point', 'coordinates': (-79.40743417, 43.66591416)}"
-15716,3679,GO-20189033784,THEFT UNDER,2018-10-12T00:00:00,2018,October,Friday,12,285,7,2018-10-12T00:00:00,2018,October,Friday,12,285,10,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,NO,,RG,20,BRZ,700.0,STOLEN,15673,"{'type': 'Point', 'coordinates': (-79.40530179, 43.660552)}"
-15717,3702,GO-20189034130,THEFT UNDER - BICYCLE,2018-10-14T00:00:00,2018,October,Sunday,14,287,3,2018-10-15T00:00:00,2018,October,Monday,15,288,11,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,UK,LAKE SHORE,RG,1,RED,1000.0,STOLEN,15674,"{'type': 'Point', 'coordinates': (-79.40278753, 43.65745805)}"
-15718,3710,GO-20181916358,THEFT UNDER - BICYCLE,2018-10-09T00:00:00,2018,October,Tuesday,9,282,13,2018-10-12T00:00:00,2018,October,Friday,12,285,11,D52,Toronto,79,University (79),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CCM,VECTOR,OT,0,,260.0,STOLEN,15675,"{'type': 'Point', 'coordinates': (-79.39734175, 43.66803279)}"
-15719,3730,GO-20189034778,THEFT UNDER,2018-10-19T00:00:00,2018,October,Friday,19,292,15,2018-10-19T00:00:00,2018,October,Friday,19,292,18,D52,Toronto,79,University (79),Universities / Colleges,Educational,NO,,RG,21,RED,500.0,STOLEN,15676,"{'type': 'Point', 'coordinates': (-79.39676402, 43.66012322)}"
-15720,3731,GO-20189034776,THEFT UNDER,2018-10-19T00:00:00,2018,October,Friday,19,292,14,2018-10-19T00:00:00,2018,October,Friday,19,292,17,D14,Toronto,79,University (79),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RG,30,LBL,800.0,STOLEN,15677,"{'type': 'Point', 'coordinates': (-79.40447971, 43.66652336)}"
-15721,3761,GO-20189035569,THEFT UNDER - BICYCLE,2018-10-24T00:00:00,2018,October,Wednesday,24,297,23,2018-10-25T00:00:00,2018,October,Thursday,25,298,15,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,TO,60,,500.0,STOLEN,15678,"{'type': 'Point', 'coordinates': (-79.40099018, 43.66036731)}"
-15722,3773,GO-20181983533,B&E,2018-10-26T00:00:00,2018,October,Friday,26,299,21,2018-10-28T00:00:00,2018,October,Sunday,28,301,17,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OPUS,,OT,1,WHI,1500.0,STOLEN,15679,"{'type': 'Point', 'coordinates': (-79.40599871, 43.66226023)}"
-15723,3792,GO-20189036359,THEFT UNDER - BICYCLE,2018-10-28T00:00:00,2018,October,Sunday,28,301,23,2018-10-31T00:00:00,2018,October,Wednesday,31,304,12,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,,RG,1,BLK,0.0,STOLEN,15680,"{'type': 'Point', 'coordinates': (-79.40599871, 43.66226023)}"
-15724,3814,GO-20182050130,THEFT UNDER,2018-10-29T00:00:00,2018,October,Monday,29,302,19,2018-11-06T00:00:00,2018,November,Tuesday,6,310,18,D52,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,EL,1,RED,300.0,STOLEN,15681,"{'type': 'Point', 'coordinates': (-79.39815878000002, 43.65826015)}"
-15725,3907,GO-20189040250,THEFT UNDER - SHOPLIFTING,2018-11-28T00:00:00,2018,November,Wednesday,28,332,23,2018-11-29T00:00:00,2018,November,Thursday,29,333,15,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,OT,SPARK 920 (TW),MT,8,DBL,4500.0,STOLEN,15682,"{'type': 'Point', 'coordinates': (-79.4085036, 43.66176174)}"
-15726,4118,GO-20199010060,THEFT UNDER - BICYCLE,2019-03-28T00:00:00,2019,March,Thursday,28,87,21,2019-03-29T00:00:00,2019,March,Friday,29,88,18,D52,Toronto,79,University (79),Universities / Colleges,Educational,OT,LIFESPORT,RG,9,SIL,900.0,STOLEN,15683,"{'type': 'Point', 'coordinates': (-79.39832557, 43.66783119)}"
-15727,4119,GO-20199010060,THEFT UNDER - BICYCLE,2019-03-28T00:00:00,2019,March,Thursday,28,87,21,2019-03-29T00:00:00,2019,March,Friday,29,88,18,D52,Toronto,79,University (79),Universities / Colleges,Educational,OT,,RG,9,SIL,777.0,STOLEN,15684,"{'type': 'Point', 'coordinates': (-79.39832557, 43.66783119)}"
-15728,4153,GO-2019612620,THEFT UNDER - BICYCLE,2019-03-28T00:00:00,2019,March,Thursday,28,87,21,2019-04-11T00:00:00,2019,April,Thursday,11,101,11,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,RUBBERSIDE DOWN,MT,9,,900.0,STOLEN,15685,"{'type': 'Point', 'coordinates': (-79.39832557, 43.66783119)}"
-15729,4154,GO-2019652530,ASSAULT - FORCE/THRT/IMPEDE,2019-04-05T00:00:00,2019,April,Friday,5,95,19,2019-04-11T00:00:00,2019,April,Thursday,11,101,10,D52,Toronto,79,University (79),Universities / Colleges,Educational,DEVINCI,CAMELEAN,MT,10,BLU,500.0,STOLEN,15686,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-15730,4189,GO-2019721855,B&E,2019-04-21T00:00:00,2019,April,Sunday,21,111,18,2019-04-22T00:00:00,2019,April,Monday,22,112,12,D52,Toronto,79,University (79),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,RG,16,GRY,100.0,STOLEN,15687,"{'type': 'Point', 'coordinates': (-79.4000091, 43.65794797)}"
-15731,4260,GO-2019841434,THEFT UNDER - BICYCLE,2019-05-03T00:00:00,2019,May,Friday,3,123,8,2019-05-09T00:00:00,2019,May,Thursday,9,129,11,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,LYNSKEY COOPER,RC,1,SIL,4000.0,STOLEN,15688,"{'type': 'Point', 'coordinates': (-79.3934451, 43.65919971)}"
-15732,4499,GO-20199018729,THEFT UNDER - BICYCLE,2019-06-14T00:00:00,2019,June,Friday,14,165,22,2019-06-15T00:00:00,2019,June,Saturday,15,166,14,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,1,GRY,500.0,STOLEN,15689,"{'type': 'Point', 'coordinates': (-79.40768329, 43.65648148)}"
-15733,4518,GO-20199018994,THEFT UNDER - BICYCLE,2019-06-17T00:00:00,2019,June,Monday,17,168,17,2019-06-17T00:00:00,2019,June,Monday,17,168,18,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,RG,24,LBL,750.0,STOLEN,15690,"{'type': 'Point', 'coordinates': (-79.40180671, 43.65765229)}"
-15734,4525,GO-20199019034,THEFT UNDER,2019-06-12T00:00:00,2019,June,Wednesday,12,163,0,2019-06-18T00:00:00,2019,June,Tuesday,18,169,1,D52,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,MARLIN 5 2016,MT,21,BLK,650.0,STOLEN,15691,"{'type': 'Point', 'coordinates': (-79.39979751, 43.66751644)}"
-15735,4677,GO-20199021170,B&E,2019-07-05T00:00:00,2019,July,Friday,5,186,2,2019-07-05T00:00:00,2019,July,Friday,5,186,22,D52,Toronto,79,University (79),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,,RG,6,YEL,600.0,STOLEN,15692,"{'type': 'Point', 'coordinates': (-79.40149998, 43.66716143)}"
-15736,4779,GO-20199022410,THEFT UNDER,2019-07-15T00:00:00,2019,July,Monday,15,196,8,2019-07-15T00:00:00,2019,July,Monday,15,196,18,D52,Toronto,79,University (79),Schools During Un-Supervised Activity,Educational,UK,,RG,20,PLE,750.0,STOLEN,15693,"{'type': 'Point', 'coordinates': (-79.39734175, 43.66803279)}"
-15737,4793,GO-20191347110,THEFT UNDER,2019-06-27T00:00:00,2019,June,Thursday,27,178,2,2019-07-18T00:00:00,2019,July,Thursday,18,199,13,D52,Toronto,79,University (79),Universities / Colleges,Educational,VENTURA,,RG,5,CPR,200.0,STOLEN,15694,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-15738,4820,GO-20191368209,B&E,2019-07-20T00:00:00,2019,July,Saturday,20,201,16,2019-07-21T00:00:00,2019,July,Sunday,21,202,10,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,TIMBERLAND,OT,0,,3000.0,STOLEN,15695,"{'type': 'Point', 'coordinates': (-79.40663406, 43.66607805)}"
-15739,4836,GO-20191381637,THEFT UNDER,2019-07-15T00:00:00,2019,July,Monday,15,196,16,2019-07-23T00:00:00,2019,July,Tuesday,23,204,0,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,JAMIS,VENTURA,RG,18,BLKRED,150.0,STOLEN,15696,"{'type': 'Point', 'coordinates': (-79.39691929, 43.66443463)}"
-15740,4969,GO-20191482208,THEFT UNDER,2019-07-20T00:00:00,2019,July,Saturday,20,201,12,2019-08-06T00:00:00,2019,August,Tuesday,6,218,9,D52,Toronto,79,University (79),Universities / Colleges,Educational,MCKINLEY,,RG,0,BLUGRN,250.0,STOLEN,15697,"{'type': 'Point', 'coordinates': (-79.40207036, 43.66305191)}"
-15741,5030,GO-20199025745,THEFT UNDER,2019-08-10T00:00:00,2019,August,Saturday,10,222,19,2019-08-11T00:00:00,2019,August,Sunday,11,223,15,D52,Toronto,79,University (79),Universities / Colleges,Educational,UK,SKETCH,MT,24,CPR,500.0,STOLEN,15698,"{'type': 'Point', 'coordinates': (-79.39934598, 43.66172465)}"
-15742,5214,GO-20199028501,THEFT UNDER,2019-09-02T00:00:00,2019,September,Monday,2,245,14,2019-09-02T00:00:00,2019,September,Monday,2,245,16,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,COBALT,OT,10,WHI,2110.0,STOLEN,15699,"{'type': 'Point', 'coordinates': (-79.40316102, 43.65738236)}"
-15743,5288,GO-20199029387,THEFT UNDER - BICYCLE,2019-09-07T00:00:00,2019,September,Saturday,7,250,12,2019-09-10T00:00:00,2019,September,Tuesday,10,253,1,D52,Toronto,79,University (79),Universities / Colleges,Educational,OT,CXGR,TO,21,BLK,1500.0,STOLEN,15700,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-15744,5294,GO-20199029555,THEFT UNDER - BICYCLE,2019-09-09T00:00:00,2019,September,Monday,9,252,17,2019-09-11T00:00:00,2019,September,Wednesday,11,254,11,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,REMEDY 7 29,MT,27,BLK,2800.0,STOLEN,15701,"{'type': 'Point', 'coordinates': (-79.40244418000002, 43.65929925)}"
-15745,5295,GO-20199029555,THEFT UNDER - BICYCLE,2019-09-09T00:00:00,2019,September,Monday,9,252,17,2019-09-11T00:00:00,2019,September,Wednesday,11,254,11,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,19 TEMPT 1 S,MT,21,BLK,1200.0,STOLEN,15702,"{'type': 'Point', 'coordinates': (-79.40244418000002, 43.65929925)}"
-15746,5339,GO-20191779454,THEFT UNDER - BICYCLE,2019-09-13T00:00:00,2019,September,Friday,13,256,13,2019-09-16T00:00:00,2019,September,Monday,16,259,13,D14,Toronto,79,University (79),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,ATX,MT,21,WHI,1500.0,STOLEN,15703,"{'type': 'Point', 'coordinates': (-79.40411393, 43.66079116)}"
-15747,5340,GO-20191758452,B&E,2019-09-13T00:00:00,2019,September,Friday,13,256,12,2019-09-13T00:00:00,2019,September,Friday,13,256,15,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,EMMA,RG,3,,700.0,STOLEN,15704,"{'type': 'Point', 'coordinates': (-79.40311297, 43.66093051)}"
-15748,5341,GO-20199030197,THEFT UNDER - BICYCLE,2019-09-15T00:00:00,2019,September,Sunday,15,258,22,2019-09-16T00:00:00,2019,September,Monday,16,259,12,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,,RG,10,BLK,400.0,STOLEN,15705,"{'type': 'Point', 'coordinates': (-79.40904976, 43.65980581)}"
-15749,5359,GO-20191795458,THEFT UNDER,2019-09-04T00:00:00,2019,September,Wednesday,4,247,9,2019-09-18T00:00:00,2019,September,Wednesday,18,261,14,D52,Toronto,79,University (79),Universities / Colleges,Educational,NORCO,,OT,0,BLK,750.0,STOLEN,15706,"{'type': 'Point', 'coordinates': (-79.39968364, 43.66258094)}"
-15750,5388,GO-20191837875,THEFT UNDER,2019-09-10T00:00:00,2019,September,Tuesday,10,253,17,2019-09-24T00:00:00,2019,September,Tuesday,24,267,8,D52,Toronto,79,University (79),Universities / Colleges,Educational,IRON HORSE,PHOENIX,MT,0,BLKSIL,350.0,STOLEN,15707,"{'type': 'Point', 'coordinates': (-79.39979751, 43.66751644)}"
-15751,5407,GO-20191853824,THEFT UNDER,2019-09-17T00:00:00,2019,September,Tuesday,17,260,10,2019-09-26T00:00:00,2019,September,Thursday,26,269,9,D52,Toronto,79,University (79),Universities / Colleges,Educational,CCM,SUPERCYCLE,MT,6,BLKGRN,120.0,STOLEN,15708,"{'type': 'Point', 'coordinates': (-79.39979751, 43.66751644)}"
-15752,5408,GO-20191854517,THEFT UNDER,2019-09-17T00:00:00,2019,September,Tuesday,17,260,15,2019-09-26T00:00:00,2019,September,Thursday,26,269,11,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,,RG,0,WHI,250.0,STOLEN,15709,"{'type': 'Point', 'coordinates': (-79.40137171, 43.66130203)}"
-15753,5497,GO-20199033349,THEFT UNDER - BICYCLE,2019-10-10T00:00:00,2019,October,Thursday,10,283,9,2019-10-10T00:00:00,2019,October,Thursday,10,283,10,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,10,PLE,700.0,STOLEN,15710,"{'type': 'Point', 'coordinates': (-79.40237577, 43.66385178)}"
-15754,5549,GO-20199034461,THEFT UNDER,2019-10-18T00:00:00,2019,October,Friday,18,291,18,2019-10-19T00:00:00,2019,October,Saturday,19,292,15,D52,Toronto,79,University (79),Universities / Colleges,Educational,SC,GTX-2 MEN'S HYB,OT,21,BLK,550.0,STOLEN,15711,"{'type': 'Point', 'coordinates': (-79.39676402, 43.66012322)}"
-15755,5688,GO-20199037427,THEFT UNDER,2019-11-14T00:00:00,2019,November,Thursday,14,318,6,2019-11-14T00:00:00,2019,November,Thursday,14,318,8,D14,Toronto,79,University (79),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,725,RC,1,PLE,1000.0,STOLEN,15712,"{'type': 'Point', 'coordinates': (-79.40447971, 43.66652336)}"
-15756,5861,GO-20209003572,THEFT UNDER,2020-01-29T00:00:00,2020,January,Wednesday,29,29,16,2020-01-29T00:00:00,2020,January,Wednesday,29,29,20,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,HYBRID,RG,18,BLU,2000.0,STOLEN,15713,"{'type': 'Point', 'coordinates': (-79.40180671, 43.65765229)}"
-15757,5919,GO-20209006499,THEFT UNDER,2020-02-22T00:00:00,2020,February,Saturday,22,53,16,2020-02-23T00:00:00,2020,February,Sunday,23,54,12,D14,Toronto,79,University (79),Convenience Stores,Commercial,UK,,RG,3,BLK,1200.0,STOLEN,15714,"{'type': 'Point', 'coordinates': (-79.40864191, 43.66567614)}"
-15758,5924,GO-20209006499,THEFT UNDER,2020-02-22T00:00:00,2020,February,Saturday,22,53,16,2020-02-23T00:00:00,2020,February,Sunday,23,54,12,D14,Toronto,79,University (79),Convenience Stores,Commercial,UK,,RG,3,,1200.0,STOLEN,15715,"{'type': 'Point', 'coordinates': (-79.40864191, 43.66567614)}"
-15759,5958,GO-20209008760,THEFT UNDER,2020-03-12T00:00:00,2020,March,Thursday,12,72,14,2020-03-12T00:00:00,2020,March,Thursday,12,72,22,D52,Toronto,79,University (79),Universities / Colleges,Educational,OT,CTM CROSSOVER B,RG,21,GRY,400.0,STOLEN,15716,"{'type': 'Point', 'coordinates': (-79.39691929, 43.66443463)}"
-15760,5979,GO-2020579019,B&E,2020-03-15T00:00:00,2020,March,Sunday,15,75,19,2020-03-21T00:00:00,2020,March,Saturday,21,81,17,D14,Toronto,79,University (79),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,VFR 5,RG,24,YEL,800.0,STOLEN,15717,"{'type': 'Point', 'coordinates': (-79.4078215, 43.66005724)}"
-15761,6243,GO-20209013867,THEFT UNDER - BICYCLE,2020-05-24T00:00:00,2020,May,Sunday,24,145,17,2020-05-25T00:00:00,2020,May,Monday,25,146,14,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,OT,SINGLE SPEED,RG,1,GRY,500.0,STOLEN,15718,"{'type': 'Point', 'coordinates': (-79.40307045, 43.6655101)}"
-15762,9931,GO-20159004155,THEFT UNDER,2015-07-03T00:00:00,2015,July,Friday,3,184,17,2015-07-03T00:00:00,2015,July,Friday,3,184,23,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,EL,32,YEL,1100.0,STOLEN,15719,"{'type': 'Point', 'coordinates': (-79.40447971, 43.66652336)}"
-15763,9989,GO-20159004430,THEFT UNDER,2015-05-04T00:00:00,2015,May,Monday,4,124,15,2015-07-11T00:00:00,2015,July,Saturday,11,192,15,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,,RG,12,BLK,200.0,STOLEN,15720,"{'type': 'Point', 'coordinates': (-79.40180671, 43.65765229)}"
-15764,9990,GO-20159004441,THEFT UNDER,2015-07-11T00:00:00,2015,July,Saturday,11,192,17,2015-07-11T00:00:00,2015,July,Saturday,11,192,21,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,CRUISER,TO,1,RED,500.0,STOLEN,15721,"{'type': 'Point', 'coordinates': (-79.40713565, 43.65840411)}"
-15765,10060,GO-20159004779,THEFT UNDER,2015-07-20T00:00:00,2015,July,Monday,20,201,18,2015-07-20T00:00:00,2015,July,Monday,20,201,21,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,REVENIO,RC,20,WHI,1500.0,STOLEN,15722,"{'type': 'Point', 'coordinates': (-79.3946423, 43.65895383)}"
-15766,10094,GO-20159004971,THEFT UNDER,2015-07-24T00:00:00,2015,July,Friday,24,205,3,2015-07-25T00:00:00,2015,July,Saturday,25,206,11,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,,,RC,16,BLK,500.0,STOLEN,15723,"{'type': 'Point', 'coordinates': (-79.40207036, 43.66305191)}"
-15767,10109,GO-20159005050,THEFT UNDER,2015-07-27T00:00:00,2015,July,Monday,27,208,0,2015-07-27T00:00:00,2015,July,Monday,27,208,14,D52,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,,RG,21,WHI,450.0,STOLEN,15724,"{'type': 'Point', 'coordinates': (-79.40101624, 43.66593602)}"
-15768,10243,GO-20151394104,THEFT UNDER,2015-08-12T00:00:00,2015,August,Wednesday,12,224,18,2015-08-14T00:00:00,2015,August,Friday,14,226,8,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,,MT,21,BLKRED,200.0,STOLEN,15725,"{'type': 'Point', 'coordinates': (-79.39676402, 43.66012322)}"
-15769,10278,GO-20159005891,THEFT UNDER,2015-08-15T00:00:00,2015,August,Saturday,15,227,18,2015-08-17T00:00:00,2015,August,Monday,17,229,10,D14,Toronto,79,University (79),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,2014 VFR 4 FORM,OT,24,LGR,759.0,STOLEN,15726,"{'type': 'Point', 'coordinates': (-79.40663406, 43.66607805)}"
-15770,10300,GO-20151438539,THEFT UNDER,2015-08-21T00:00:00,2015,August,Friday,21,233,10,2015-08-21T00:00:00,2015,August,Friday,21,233,10,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,SC1800,MT,18,,150.0,STOLEN,15727,"{'type': 'Point', 'coordinates': (-79.40198436, 43.65811126)}"
-15771,10302,GO-20151420199,THEFT UNDER,2015-08-18T00:00:00,2015,August,Tuesday,18,230,10,2015-08-22T00:00:00,2015,August,Saturday,22,234,11,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RUSH HOUR,,EL,1,GRNBLK,1000.0,STOLEN,15728,"{'type': 'Point', 'coordinates': (-79.40180671, 43.65765229)}"
-15772,10340,GO-20159006326,THEFT UNDER,2015-08-21T00:00:00,2015,August,Friday,21,233,18,2015-08-24T00:00:00,2015,August,Monday,24,236,10,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,21,BLU,300.0,STOLEN,15729,"{'type': 'Point', 'coordinates': (-79.40382824, 43.66269877)}"
-15773,10388,GO-20159006653,THEFT UNDER,2015-09-01T00:00:00,2015,September,Tuesday,1,244,19,2015-09-02T00:00:00,2015,September,Wednesday,2,245,11,D14,Toronto,79,University (79),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,KIWI / URBAN,EL,32,ONG,700.0,STOLEN,15730,"{'type': 'Point', 'coordinates': (-79.40663406, 43.66607805)}"
-15774,10399,GO-20151544699,THEFT UNDER,2015-09-07T00:00:00,2015,September,Monday,7,250,8,2015-09-07T00:00:00,2015,September,Monday,7,250,13,D14,Toronto,79,University (79),Homeless Shelter / Mission,Other,OTHER,PACE,OT,1,BLKRED,320.0,STOLEN,15731,"{'type': 'Point', 'coordinates': (-79.40713565, 43.65840411)}"
-15775,10424,GO-20151562347,THEFT UNDER,2015-09-04T00:00:00,2015,September,Friday,4,247,12,2015-09-10T00:00:00,2015,September,Thursday,10,253,9,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,AGGRESSOR,MT,0,BLK,500.0,STOLEN,15732,"{'type': 'Point', 'coordinates': (-79.40099018, 43.66036731)}"
-15776,10460,GO-20151593383,THEFT UNDER,2015-09-11T00:00:00,2015,September,Friday,11,254,10,2015-09-15T00:00:00,2015,September,Tuesday,15,258,9,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,ZYCLE,OT,0,BLK,490.0,STOLEN,15733,"{'type': 'Point', 'coordinates': (-79.40137171, 43.66130203)}"
-15777,10501,GO-20151631866,THEFT UNDER,2015-09-15T00:00:00,2015,September,Tuesday,15,258,18,2015-09-21T00:00:00,2015,September,Monday,21,264,11,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,,OT,0,BLKGRN,300.0,STOLEN,15734,"{'type': 'Point', 'coordinates': (-79.39488188, 43.66100963)}"
-15778,10507,GO-20159007483,THEFT UNDER,2015-09-20T00:00:00,2015,September,Sunday,20,263,19,2015-09-21T00:00:00,2015,September,Monday,21,264,1,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,STORM,MT,24,BLU,400.0,STOLEN,15735,"{'type': 'Point', 'coordinates': (-79.40307045, 43.6655101)}"
-15779,10556,GO-20151682620,THEFT UNDER,2015-09-25T00:00:00,2015,September,Friday,25,268,9,2015-09-29T00:00:00,2015,September,Tuesday,29,272,14,D52,Toronto,79,University (79),Universities / Colleges,Educational,SUPERCYCLE,SC1500,OT,0,BLKRED,60.0,STOLEN,15738,"{'type': 'Point', 'coordinates': (-79.40207036, 43.66305191)}"
-15780,10610,GO-20159008375,THEFT UNDER,2015-10-07T00:00:00,2015,October,Wednesday,7,280,16,2015-10-09T00:00:00,2015,October,Friday,9,282,10,D14,Toronto,79,University (79),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RC,10,RED,180.0,STOLEN,15739,"{'type': 'Point', 'coordinates': (-79.4078215, 43.66005724)}"
-15781,10620,GO-20159008466,THEFT UNDER,2015-10-10T00:00:00,2015,October,Saturday,10,283,19,2015-10-12T00:00:00,2015,October,Monday,12,285,21,D52,Toronto,79,University (79),Universities / Colleges,Educational,OT,ADAGIO,RG,24,GRY,530.0,STOLEN,15740,"{'type': 'Point', 'coordinates': (-79.39676402, 43.66012322)}"
-15782,10632,GO-20151778093,THEFT UNDER,2015-10-09T00:00:00,2015,October,Friday,9,282,9,2015-10-15T00:00:00,2015,October,Thursday,15,288,20,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,,OT,12,BLU,260.0,STOLEN,15741,"{'type': 'Point', 'coordinates': (-79.39979751, 43.66751644)}"
-15783,10658,GO-20151810587,THEFT UNDER,2015-10-14T00:00:00,2015,October,Wednesday,14,287,2,2015-10-21T00:00:00,2015,October,Wednesday,21,294,8,D52,Toronto,79,University (79),Universities / Colleges,Educational,JANGO,,OT,0,WHIYEL,500.0,STOLEN,15742,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-15784,10659,GO-20151805256,THEFT UNDER,2015-10-18T00:00:00,2015,October,Sunday,18,291,20,2015-10-20T00:00:00,2015,October,Tuesday,20,293,10,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,LADIES,OT,5,REDWHI,400.0,STOLEN,15743,"{'type': 'Point', 'coordinates': (-79.40244418000002, 43.65929925)}"
-15785,10667,GO-20151816899,THEFT UNDER,2015-10-16T00:00:00,2015,October,Friday,16,289,23,2015-10-23T00:00:00,2015,October,Friday,23,296,8,D52,Toronto,79,University (79),Universities / Colleges,Educational,SPECIALIZED,HARDROCK,OT,24,SIL,1000.0,STOLEN,15744,"{'type': 'Point', 'coordinates': (-79.39734175, 43.66803279)}"
-15786,10702,GO-20151857224,THEFT UNDER,2015-10-25T00:00:00,2015,October,Sunday,25,298,18,2015-10-29T00:00:00,2015,October,Thursday,29,302,6,D52,Toronto,79,University (79),Universities / Colleges,Educational,GIANT,,OT,0,SIL,550.0,STOLEN,15745,"{'type': 'Point', 'coordinates': (-79.39832557, 43.66783119)}"
-15787,10783,GO-20151977496,THEFT UNDER,2015-10-30T00:00:00,2015,October,Friday,30,303,5,2015-11-19T00:00:00,2015,November,Thursday,19,323,7,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,,MT,0,SIL,500.0,STOLEN,15746,"{'type': 'Point', 'coordinates': (-79.39570335, 43.66468636)}"
-15788,10787,GO-20151983802,THEFT UNDER,2015-11-06T00:00:00,2015,November,Friday,6,310,11,2015-11-19T00:00:00,2015,November,Thursday,19,323,8,D52,Toronto,79,University (79),Universities / Colleges,Educational,NORCO,,MT,0,BLK,600.0,STOLEN,15747,"{'type': 'Point', 'coordinates': (-79.39832557, 43.66783119)}"
-15789,10799,GO-20159010022,THEFT UNDER,2015-11-21T00:00:00,2015,November,Saturday,21,325,23,2015-11-22T00:00:00,2015,November,Sunday,22,326,11,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SOLOIST ALLO,RC,1,BLK,450.0,STOLEN,15748,"{'type': 'Point', 'coordinates': (-79.40540813, 43.6641145)}"
-15790,10845,GO-20159010620,THEFT UNDER,2015-11-01T00:00:00,2015,November,Sunday,1,305,1,2015-11-02T00:00:00,2015,November,Monday,2,306,15,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,OT,BURBOUN,RG,3,BLK,650.0,STOLEN,15749,"{'type': 'Point', 'coordinates': (-79.40237577, 43.66385178)}"
-15791,10852,GO-20152116254,THEFT UNDER,2015-11-20T00:00:00,2015,November,Friday,20,324,16,2015-12-10T00:00:00,2015,December,Thursday,10,344,14,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,,MT,0,GRNWHI,400.0,STOLEN,15750,"{'type': 'Point', 'coordinates': (-79.39934598, 43.66172465)}"
-15792,10857,GO-20159010773,THEFT UNDER,2015-12-09T00:00:00,2015,December,Wednesday,9,343,12,2015-12-10T00:00:00,2015,December,Thursday,10,344,16,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,,RG,24,,700.0,STOLEN,15751,"{'type': 'Point', 'coordinates': (-79.39815878000002, 43.65826015)}"
-15793,10869,GO-20152124501,THEFT UNDER,2015-11-23T00:00:00,2015,November,Monday,23,327,13,2015-12-14T00:00:00,2015,December,Monday,14,348,12,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,,MT,27,GRYWHI,500.0,RECOVERED,15752,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-15794,10871,GO-20152141940,THEFT UNDER,2015-11-16T00:00:00,2015,November,Monday,16,320,9,2015-12-14T00:00:00,2015,December,Monday,14,348,14,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,,FO,0,BGE,200.0,STOLEN,15753,"{'type': 'Point', 'coordinates': (-79.39934598, 43.66172465)}"
-15795,10882,GO-20152144215,THEFT UNDER,2015-11-26T00:00:00,2015,November,Thursday,26,330,12,2015-12-14T00:00:00,2015,December,Monday,14,348,20,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,MOUNTAIN,OT,21,BLKBLU,300.0,STOLEN,15754,"{'type': 'Point', 'coordinates': (-79.40137171, 43.66130203)}"
-15796,10947,GO-2016145197,THEFT UNDER,2016-01-22T00:00:00,2016,January,Friday,22,22,15,2016-01-25T00:00:00,2016,January,Monday,25,25,8,D52,Toronto,79,University (79),Universities / Colleges,Educational,RALEIGH,TORA 6061,RG,21,BLK,400.0,STOLEN,15755,"{'type': 'Point', 'coordinates': (-79.3934451, 43.65919971)}"
-15797,10987,GO-2016255106,THEFT UNDER,2016-02-07T00:00:00,2016,February,Sunday,7,38,15,2016-02-12T00:00:00,2016,February,Friday,12,43,8,D52,Toronto,79,University (79),Universities / Colleges,Educational,STATE BICYCLE,,OT,0,BLK,500.0,STOLEN,15756,"{'type': 'Point', 'coordinates': (-79.39570335, 43.66468636)}"
-15798,11028,GO-2016410979,THEFT UNDER,2016-03-07T00:00:00,2016,March,Monday,7,67,10,2016-03-09T00:00:00,2016,March,Wednesday,9,69,9,D52,Toronto,79,University (79),Universities / Colleges,Educational,MARIN OR MARINO,LARKSPUR CS3,OT,0,SIL,450.0,STOLEN,15757,"{'type': 'Point', 'coordinates': (-79.39570335, 43.66468636)}"
-15799,6244,GO-20209013862,THEFT UNDER - BICYCLE,2020-05-24T00:00:00,2020,May,Sunday,24,145,23,2020-05-25T00:00:00,2020,May,Monday,25,146,12,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,2019 GIANT ESCA,OT,6,GRY,700.0,STOLEN,15758,"{'type': 'Point', 'coordinates': (-79.40382824, 43.66269877)}"
-15800,11067,GO-2016492828,THEFT UNDER - BICYCLE,2016-03-10T00:00:00,2016,March,Thursday,10,70,16,2016-03-22T00:00:00,2016,March,Tuesday,22,82,16,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GREENMOTO,,EL,0,BLK,900.0,STOLEN,15759,"{'type': 'Point', 'coordinates': (-79.39867107, 43.66007559)}"
-15801,11071,GO-20161188318,THEFT UNDER - BICYCLE,2016-06-24T00:00:00,2016,June,Friday,24,176,9,2016-07-07T00:00:00,2016,July,Thursday,7,189,12,D52,Toronto,79,University (79),Universities / Colleges,Educational,TREK,,OT,0,BLKSIL,700.0,STOLEN,15760,"{'type': 'Point', 'coordinates': (-79.40207036, 43.66305191)}"
-15802,11078,GO-2016522251,THEFT UNDER - BICYCLE,2016-03-27T00:00:00,2016,March,Sunday,27,87,17,2016-03-27T00:00:00,2016,March,Sunday,27,87,19,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPER 6,RACE BIKE,RC,58,,3000.0,STOLEN,15761,"{'type': 'Point', 'coordinates': (-79.40382824, 43.66269877)}"
-15803,11124,GO-20169003258,THEFT UNDER - BICYCLE,2016-04-08T00:00:00,2016,April,Friday,8,99,8,2016-04-11T00:00:00,2016,April,Monday,11,102,9,D52,Toronto,79,University (79),Universities / Colleges,Educational,OT,SASAMAT,RG,27,BLU,1300.0,STOLEN,15762,"{'type': 'Point', 'coordinates': (-79.39968364, 43.66258094)}"
-15804,11161,GO-2017515016,B&E,2017-03-19T00:00:00,2017,March,Sunday,19,78,3,2017-03-23T00:00:00,2017,March,Thursday,23,82,10,D14,Toronto,79,University (79),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,OT,0,,,STOLEN,15763,"{'type': 'Point', 'coordinates': (-79.40170888, 43.66215594)}"
-15805,11162,GO-20143280424,THEFT UNDER,2014-11-04T00:00:00,2014,November,Tuesday,4,308,7,2014-11-11T00:00:00,2014,November,Tuesday,11,315,11,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OP,LARGO,TO,21,BLU,,STOLEN,15764,"{'type': 'Point', 'coordinates': (-79.40137171, 43.66130203)}"
-15806,11185,GO-20169003724,THEFT UNDER,2016-04-19T00:00:00,2016,April,Tuesday,19,110,9,2016-04-23T00:00:00,2016,April,Saturday,23,114,7,D52,Toronto,79,University (79),Universities / Colleges,Educational,OT,13 SPORTSTER X,RG,21,WHI,900.0,STOLEN,15765,"{'type': 'Point', 'coordinates': (-79.39734175, 43.66803279)}"
-15807,11190,GO-20169003765,THEFT UNDER,2016-04-23T00:00:00,2016,April,Saturday,23,114,15,2016-04-24T00:00:00,2016,April,Sunday,24,115,10,D52,Toronto,79,University (79),Universities / Colleges,Educational,GI,TALON 2,MT,21,GRY,1100.0,STOLEN,15766,"{'type': 'Point', 'coordinates': (-79.39676402, 43.66012322)}"
-15808,11270,GO-2016783502,THEFT UNDER - BICYCLE,2016-05-06T00:00:00,2016,May,Friday,6,127,21,2016-05-07T00:00:00,2016,May,Saturday,7,128,10,D52,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,OT,6,,50.0,STOLEN,15767,"{'type': 'Point', 'coordinates': (-79.40067317, 43.66506891)}"
-15809,11288,GO-2016807506,THEFT UNDER - BICYCLE,2016-05-09T00:00:00,2016,May,Monday,9,130,14,2016-05-11T00:00:00,2016,May,Wednesday,11,132,8,D52,Toronto,79,University (79),Universities / Colleges,Educational,SPECIALIZED,,OT,21,BLK,1000.0,STOLEN,15768,"{'type': 'Point', 'coordinates': (-79.39968364, 43.66258094)}"
-15810,11296,GO-2016815136,THEFT UNDER - BICYCLE,2016-05-10T00:00:00,2016,May,Tuesday,10,131,18,2016-05-12T00:00:00,2016,May,Thursday,12,133,10,D52,Toronto,79,University (79),Universities / Colleges,Educational,CCM,APEX,MT,26,WHI,350.0,STOLEN,15769,"{'type': 'Point', 'coordinates': (-79.39901086, 43.66089417)}"
-15811,11313,GO-20169004550,THEFT UNDER - BICYCLE,2016-05-14T00:00:00,2016,May,Saturday,14,135,13,2016-05-15T00:00:00,2016,May,Sunday,15,136,13,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,TR,MADONE,RC,18,BLK,2000.0,STOLEN,15771,"{'type': 'Point', 'coordinates': (-79.4085036, 43.66176174)}"
-15812,11343,GO-20169004760,THEFT UNDER - BICYCLE,2016-05-18T00:00:00,2016,May,Wednesday,18,139,14,2016-05-20T00:00:00,2016,May,Friday,20,141,14,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DB,HILANDER,RG,21,DGR,0.0,STOLEN,15772,"{'type': 'Point', 'coordinates': (-79.40717904, 43.66201639)}"
-15813,11347,GO-2016778135,THEFT UNDER - BICYCLE,2016-05-06T00:00:00,2016,May,Friday,6,127,13,2016-05-07T00:00:00,2016,May,Saturday,7,128,14,D14,Toronto,79,University (79),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,SALSA SPEARHEAD,MT,27,ONG,3500.0,STOLEN,15773,"{'type': 'Point', 'coordinates': (-79.40180671, 43.65765229)}"
-15814,11407,GO-2016939829,THEFT UNDER - BICYCLE,2016-05-27T00:00:00,2016,May,Friday,27,148,19,2016-05-31T00:00:00,2016,May,Tuesday,31,152,7,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,CITY GLIDE,RG,12,DBL,500.0,STOLEN,15774,"{'type': 'Point', 'coordinates': (-79.40530179, 43.660552)}"
-15815,11473,GO-20169005487,THEFT UNDER - BICYCLE,2016-06-08T00:00:00,2016,June,Wednesday,8,160,11,2016-06-08T00:00:00,2016,June,Wednesday,8,160,17,D52,Toronto,79,University (79),Universities / Colleges,Educational,UK,PALERMO FEMME,OT,24,LBL,500.0,STOLEN,15775,"{'type': 'Point', 'coordinates': (-79.39934598, 43.66172465)}"
-15816,11523,GO-20161025466,THEFT UNDER - BICYCLE,2016-06-12T00:00:00,2016,June,Sunday,12,164,19,2016-06-12T00:00:00,2016,June,Sunday,12,164,23,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,1,,,STOLEN,15776,"{'type': 'Point', 'coordinates': (-79.39979751, 43.66751644)}"
-15817,11554,GO-20161051126,THEFT UNDER - BICYCLE,2016-06-16T00:00:00,2016,June,Thursday,16,168,15,2016-06-16T00:00:00,2016,June,Thursday,16,168,18,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,MT,8,WHIBLU,240.0,STOLEN,15777,"{'type': 'Point', 'coordinates': (-79.4000091, 43.65794797)}"
-15818,11600,GO-20169006137,THEFT UNDER - BICYCLE,2016-06-21T00:00:00,2016,June,Tuesday,21,173,11,2016-06-21T00:00:00,2016,June,Tuesday,21,173,15,D52,Toronto,79,University (79),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,MA,,MT,12,GRY,1500.0,STOLEN,15778,"{'type': 'Point', 'coordinates': (-79.39348694, 43.66726478)}"
-15819,11614,GO-20169006220,THEFT UNDER - BICYCLE,2016-06-22T00:00:00,2016,June,Wednesday,22,174,23,2016-06-22T00:00:00,2016,June,Wednesday,22,174,23,D52,Toronto,79,University (79),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,,MT,20,,100.0,STOLEN,15779,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-15820,11627,GO-20169006289,THEFT UNDER,2016-06-20T00:00:00,2016,June,Monday,20,172,14,2016-06-24T00:00:00,2016,June,Friday,24,176,10,D14,Toronto,79,University (79),"Open Areas (Lakes, Parks, Rivers)",Outside,SC,,RC,12,LBL,489.0,STOLEN,15780,"{'type': 'Point', 'coordinates': (-79.40599871, 43.66226023)}"
-15821,11770,GO-20161219239,THEFT UNDER - BICYCLE,2016-06-30T00:00:00,2016,June,Thursday,30,182,20,2016-07-12T00:00:00,2016,July,Tuesday,12,194,8,D52,Toronto,79,University (79),Universities / Colleges,Educational,CCM,ENDURANCE 700C,RG,14,BLKBLU,600.0,STOLEN,15781,"{'type': 'Point', 'coordinates': (-79.39676402, 43.66012322)}"
-15822,11843,GO-20169007393,THEFT UNDER,2016-07-17T00:00:00,2016,July,Sunday,17,199,22,2016-07-19T00:00:00,2016,July,Tuesday,19,201,10,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,PLATEAU,MT,21,BLU,359.0,STOLEN,15782,"{'type': 'Point', 'coordinates': (-79.40540813, 43.6641145)}"
-15823,11885,GO-20161294747,THEFT UNDER - BICYCLE,2016-07-15T00:00:00,2016,July,Friday,15,197,22,2016-07-23T00:00:00,2016,July,Saturday,23,205,16,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,MOUNTAIN,MT,1,BLUBLK,600.0,STOLEN,15783,"{'type': 'Point', 'coordinates': (-79.40648042, 43.65672138)}"
-15824,18422,GO-20151120817,THEFT UNDER,2015-07-02T00:00:00,2015,July,Thursday,2,183,22,2015-07-03T00:00:00,2015,July,Friday,3,184,15,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,CRUISER,OT,1,BLUGRN,830.0,STOLEN,15784,"{'type': 'Point', 'coordinates': (-79.39963685, 43.64806649)}"
-15825,11944,GO-20169007901,THEFT UNDER - BICYCLE,2016-07-29T00:00:00,2016,July,Friday,29,211,10,2016-07-29T00:00:00,2016,July,Friday,29,211,19,D53,Toronto,79,University (79),Ttc Subway Train,Transit,GI,CENTURION,MT,9,BLK,800.0,RECOVERED,15785,"{'type': 'Point', 'coordinates': (-79.40383181, 43.66665689)}"
-15826,11983,GO-20169008141,THEFT UNDER - BICYCLE,2016-08-02T00:00:00,2016,August,Tuesday,2,215,23,2016-08-03T00:00:00,2016,August,Wednesday,3,216,17,D14,Toronto,79,University (79),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,CLASSICO,TO,7,BLK,600.0,STOLEN,15786,"{'type': 'Point', 'coordinates': (-79.40661068, 43.66388855)}"
-15827,12029,GO-20169008407,THEFT UNDER,2016-08-08T00:00:00,2016,August,Monday,8,221,13,2016-08-09T00:00:00,2016,August,Tuesday,9,222,0,D52,Toronto,79,University (79),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RG,7,,500.0,STOLEN,15787,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-15828,12065,GO-20161416329,TRAFFICKING PROPERTY OBC UNDER,2016-08-09T00:00:00,2016,August,Tuesday,9,222,15,2016-08-11T00:00:00,2016,August,Thursday,11,224,15,D14,Toronto,79,University (79),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,SIRRUS,OT,24,WHI,2000.0,STOLEN,15788,"{'type': 'Point', 'coordinates': (-79.40810809, 43.66434335)}"
-15829,12109,GO-20161423746,THEFT UNDER,2016-08-12T00:00:00,2016,August,Friday,12,225,15,2016-08-12T00:00:00,2016,August,Friday,12,225,17,D52,Toronto,79,University (79),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,ESCAPE,TO,27,GRY,1000.0,STOLEN,15789,"{'type': 'Point', 'coordinates': (-79.39348694, 43.66726478)}"
-15830,12114,GO-20161454117,THEFT UNDER - BICYCLE,2016-08-03T00:00:00,2016,August,Wednesday,3,216,16,2016-08-17T00:00:00,2016,August,Wednesday,17,230,12,D52,Toronto,79,University (79),Universities / Colleges,Educational,SPECIALIZED,,MT,0,GRN,500.0,STOLEN,15790,"{'type': 'Point', 'coordinates': (-79.39734175, 43.66803279)}"
-15831,12118,GO-20161453733,THEFT UNDER - BICYCLE,2016-08-03T00:00:00,2016,August,Wednesday,3,216,17,2016-08-17T00:00:00,2016,August,Wednesday,17,230,11,D52,Toronto,79,University (79),Universities / Colleges,Educational,TREK,FX 7.3,OT,0,BLK,900.0,STOLEN,15791,"{'type': 'Point', 'coordinates': (-79.3934451, 43.65919971)}"
-15832,12131,GO-20161463457,B&E W'INTENT,2016-08-18T00:00:00,2016,August,Thursday,18,231,9,2016-08-18T00:00:00,2016,August,Thursday,18,231,19,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,MT,18,RED,100.0,STOLEN,15792,"{'type': 'Point', 'coordinates': (-79.40540813, 43.6641145)}"
-15833,12171,GO-20161492092,THEFT UNDER - BICYCLE,2016-08-18T00:00:00,2016,August,Thursday,18,231,18,2016-08-23T00:00:00,2016,August,Tuesday,23,236,10,D52,Toronto,79,University (79),Universities / Colleges,Educational,GIANT,,MT,0,BLK,1200.0,STOLEN,15793,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-15834,12192,GO-20169009398,THEFT UNDER - BICYCLE,2016-08-20T00:00:00,2016,August,Saturday,20,233,0,2016-08-24T00:00:00,2016,August,Wednesday,24,237,11,D52,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RC,1,BLK,500.0,STOLEN,15794,"{'type': 'Point', 'coordinates': (-79.40237577, 43.66385178)}"
-15835,12245,GO-20161552627,PROPERTY - FOUND,2016-08-06T00:00:00,2016,August,Saturday,6,219,21,2016-09-01T00:00:00,2016,September,Thursday,1,245,18,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,INFINITY,BACKROADS,MT,15,LBL,,RECOVERED,15796,"{'type': 'Point', 'coordinates': (-79.39348694, 43.66726478)}"
-15836,12298,GO-20161597767,THEFT UNDER - BICYCLE,2016-09-03T00:00:00,2016,September,Saturday,3,247,15,2016-09-08T00:00:00,2016,September,Thursday,8,252,19,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,MT,0,GRYWHI,300.0,STOLEN,15797,"{'type': 'Point', 'coordinates': (-79.39343719, 43.66303628)}"
-15837,12321,GO-20169010315,THEFT UNDER,2016-09-11T00:00:00,2016,September,Sunday,11,255,23,2016-09-12T00:00:00,2016,September,Monday,12,256,15,D14,Toronto,79,University (79),"Private Property Structure (Pool, Shed, Detached Garage)",Other,EM,,EL,10,YEL,1299.0,STOLEN,15798,"{'type': 'Point', 'coordinates': (-79.40810809, 43.66434335)}"
-15838,12338,GO-20161633273,THEFT OVER - BICYCLE,2016-09-10T00:00:00,2016,September,Saturday,10,254,11,2016-09-14T00:00:00,2016,September,Wednesday,14,258,9,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,,OT,0,SIL,6000.0,STOLEN,15799,"{'type': 'Point', 'coordinates': (-79.40207036, 43.66305191)}"
-15839,12345,GO-20169010471,THEFT UNDER,2016-09-13T00:00:00,2016,September,Tuesday,13,257,16,2016-09-14T00:00:00,2016,September,Wednesday,14,258,20,D52,Toronto,79,University (79),Universities / Colleges,Educational,CA,F400 CAD2,MT,9,ONG,1800.0,STOLEN,15800,"{'type': 'Point', 'coordinates': (-79.39570335, 43.66468636)}"
-15840,12378,GO-20169010626,THEFT OF EBIKE UNDER $5000,2016-09-18T00:00:00,2016,September,Sunday,18,262,5,2016-09-18T00:00:00,2016,September,Sunday,18,262,7,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EM,,EL,72,WHI,750.0,STOLEN,15801,"{'type': 'Point', 'coordinates': (-79.4085036, 43.66176174)}"
-15841,12393,GO-20161665977,THEFT UNDER - BICYCLE,2016-09-11T00:00:00,2016,September,Sunday,11,255,15,2016-09-19T00:00:00,2016,September,Monday,19,263,10,D52,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,RALEIGH,,RG,21,SIL,70.0,STOLEN,15802,"{'type': 'Point', 'coordinates': (-79.40149998, 43.66716143)}"
-15842,12410,GO-20161676643,THEFT UNDER - BICYCLE,2016-09-19T00:00:00,2016,September,Monday,19,263,17,2016-09-20T00:00:00,2016,September,Tuesday,20,264,19,D52,Toronto,79,University (79),Universities / Colleges,Educational,SUPERCYCLE,SC1500,RG,0,BLKGRY,100.0,STOLEN,15803,"{'type': 'Point', 'coordinates': (-79.39699693, 43.65848407)}"
-15843,12416,GO-20169010847,THEFT UNDER - BICYCLE,2016-09-20T00:00:00,2016,September,Tuesday,20,264,10,2016-09-21T00:00:00,2016,September,Wednesday,21,265,13,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,NO,PINNACLE,MT,21,LBL,0.0,STOLEN,15804,"{'type': 'Point', 'coordinates': (-79.40973033, 43.66151426)}"
-15844,12476,GO-20161723092,THEFT UNDER - BICYCLE,2016-09-21T00:00:00,2016,September,Wednesday,21,265,18,2016-09-28T00:00:00,2016,September,Wednesday,28,272,6,D52,Toronto,79,University (79),Universities / Colleges,Educational,CHALLENGER,,MT,24,RED,100.0,STOLEN,15805,"{'type': 'Point', 'coordinates': (-79.39676402, 43.66012322)}"
-15845,12479,GO-20161724777,THEFT UNDER - BICYCLE,2016-09-25T00:00:00,2016,September,Sunday,25,269,11,2016-09-28T00:00:00,2016,September,Wednesday,28,272,11,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,,RC,1,BLK,400.0,STOLEN,15806,"{'type': 'Point', 'coordinates': (-79.40137171, 43.66130203)}"
-15846,12540,GO-20169011486,THEFT UNDER - BICYCLE,2016-10-02T00:00:00,2016,October,Sunday,2,276,14,2016-10-03T00:00:00,2016,October,Monday,3,277,14,D52,Toronto,79,University (79),Universities / Colleges,Educational,CC,PRESTO,RC,21,WHI,380.0,STOLEN,15807,"{'type': 'Point', 'coordinates': (-79.40137171, 43.66130203)}"
-15847,12553,GO-20169011571,THEFT UNDER - BICYCLE,2016-10-04T00:00:00,2016,October,Tuesday,4,278,19,2016-10-04T00:00:00,2016,October,Tuesday,4,278,19,D14,Toronto,79,University (79),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,SCIROCCO VINTAG,RG,10,RED,150.0,STOLEN,15808,"{'type': 'Point', 'coordinates': (-79.40237577, 43.66385178)}"
-15848,12564,GO-20161780374,THEFT UNDER - BICYCLE,2016-10-04T00:00:00,2016,October,Tuesday,4,278,17,2016-10-06T00:00:00,2016,October,Thursday,6,280,19,D52,Toronto,79,University (79),Universities / Colleges,Educational,TREK,,OT,0,BLKSIL,920.0,STOLEN,15809,"{'type': 'Point', 'coordinates': (-79.39112492, 43.66060888)}"
-15849,12573,GO-20161784306,THEFT UNDER - BICYCLE,2016-10-06T00:00:00,2016,October,Thursday,6,280,18,2016-10-07T00:00:00,2016,October,Friday,7,281,11,D52,Toronto,79,University (79),Universities / Colleges,Educational,CCM,,MT,21,REDBLK,80.0,STOLEN,15810,"{'type': 'Point', 'coordinates': (-79.40004877, 43.66349771)}"
-15850,12605,GO-20169011958,THEFT OF EBIKE UNDER $5000,2016-10-09T00:00:00,2016,October,Sunday,9,283,16,2016-10-13T00:00:00,2016,October,Thursday,13,287,0,D14,Toronto,79,University (79),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,EM,EMMO E BIKE,EL,32,BLK,1783.0,STOLEN,15811,"{'type': 'Point', 'coordinates': (-79.40403711, 43.6572083)}"
-15851,12644,GO-20169012323,THEFT UNDER - BICYCLE,2016-10-19T00:00:00,2016,October,Wednesday,19,293,18,2016-10-19T00:00:00,2016,October,Wednesday,19,293,21,D52,Toronto,79,University (79),Universities / Colleges,Educational,FJ,ORIGAMI 1.1,FO,8,BLU,900.0,STOLEN,15812,"{'type': 'Point', 'coordinates': (-79.39488188, 43.66100963)}"
-15852,12675,GO-20169012559,THEFT UNDER - BICYCLE,2016-10-24T00:00:00,2016,October,Monday,24,298,17,2016-10-25T00:00:00,2016,October,Tuesday,25,299,11,D52,Toronto,79,University (79),Unknown,Other,UK,STEVIE CHURCHIL,BM,1,BLK,1600.0,STOLEN,15813,"{'type': 'Point', 'coordinates': (-79.39988102, 43.65980157)}"
-15853,12684,GO-20161910314,THEFT UNDER - BICYCLE,2016-10-14T00:00:00,2016,October,Friday,14,288,17,2016-10-27T00:00:00,2016,October,Thursday,27,301,12,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,,OT,0,BLKONG,500.0,STOLEN,15814,"{'type': 'Point', 'coordinates': (-79.39488188, 43.66100963)}"
-15854,12709,GO-20169012864,THEFT UNDER,2016-11-01T00:00:00,2016,November,Tuesday,1,306,13,2016-11-01T00:00:00,2016,November,Tuesday,1,306,14,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,OT,EPIC,RC,21,PLE,1000.0,STOLEN,15815,"{'type': 'Point', 'coordinates': (-79.40810809, 43.66434335)}"
-15855,18450,GO-20159006414,THEFT UNDER,2015-08-24T00:00:00,2015,August,Monday,24,236,23,2015-08-25T00:00:00,2015,August,Tuesday,25,237,20,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,PRO NOVARA,MT,21,BLK,460.0,STOLEN,15816,"{'type': 'Point', 'coordinates': (-79.39836354, 43.65082678)}"
-15856,18462,GO-20159007763,THEFT UNDER,2015-09-25T00:00:00,2015,September,Friday,25,268,9,2015-09-25T00:00:00,2015,September,Friday,25,268,20,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,7.1,RG,21,BLK,500.0,STOLEN,15817,"{'type': 'Point', 'coordinates': (-79.39659876, 43.64943643)}"
-15857,18476,GO-20169002408,THEFT UNDER,2016-03-15T00:00:00,2016,March,Tuesday,15,75,18,2016-03-16T00:00:00,2016,March,Wednesday,16,76,12,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,HEARTLAND,RG,21,LBL,500.0,STOLEN,15818,"{'type': 'Point', 'coordinates': (-79.40403711, 43.6572083)}"
-15858,18499,GO-20169005936,THEFT UNDER - BICYCLE,2016-06-17T00:00:00,2016,June,Friday,17,169,1,2016-06-17T00:00:00,2016,June,Friday,17,169,14,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,OT,PROJEKT 8,RG,8,BLU,500.0,STOLEN,15819,"{'type': 'Point', 'coordinates': (-79.40364248, 43.65495832)}"
-15859,18779,GO-20209028560,THEFT UNDER,2020-11-03T00:00:00,2020,November,Tuesday,3,308,15,2020-11-04T00:00:00,2020,November,Wednesday,4,309,10,D52,Toronto,78,Kensington-Chinatown (78),Convenience Stores,Commercial,TR,,RG,7,BLK,550.0,STOLEN,15820,"{'type': 'Point', 'coordinates': (-79.39366252, 43.64935047)}"
-15860,18781,GO-20202154619,B&E,2020-11-12T00:00:00,2020,November,Thursday,12,317,17,2020-11-13T00:00:00,2020,November,Friday,13,318,13,D52,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BRODIE,VOLTAGE,OT,0,GRYBLU,1000.0,STOLEN,15821,"{'type': 'Point', 'coordinates': (-79.3952972, 43.65130143)}"
-15861,18801,GO-20201849266,THEFT UNDER - BICYCLE,2020-09-10T00:00:00,2020,September,Thursday,10,254,12,2020-09-29T00:00:00,2020,September,Tuesday,29,273,9,D52,Toronto,78,Kensington-Chinatown (78),Universities / Colleges,Educational,OTHER,,EL,0,DBL,800.0,STOLEN,15822,"{'type': 'Point', 'coordinates': (-79.3934735, 43.65601123)}"
-15862,18815,GO-20201972453,PROPERTY - FOUND,2020-10-17T00:00:00,2020,October,Saturday,17,291,13,2020-10-17T00:00:00,2020,October,Saturday,17,291,13,D52,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,BIXBY,TO,6,RED,,UNKNOWN,15823,"{'type': 'Point', 'coordinates': (-79.39300540000002, 43.6580369)}"
-15863,18816,GO-20209026968,THEFT UNDER,2020-10-17T00:00:00,2020,October,Saturday,17,291,23,2020-10-19T00:00:00,2020,October,Monday,19,293,15,D52,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,CHAPEL,RG,24,BLK,680.0,STOLEN,15824,"{'type': 'Point', 'coordinates': (-79.39395903, 43.65721288)}"
-15864,19391,GO-2017712504,THEFT UNDER,2017-04-23T00:00:00,2017,April,Sunday,23,113,12,2017-04-23T00:00:00,2017,April,Sunday,23,113,14,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,URBANITE,MOUNTAIN BIKE,MT,24,WHI,1500.0,STOLEN,15825,"{'type': 'Point', 'coordinates': (-79.39634181, 43.64876464)}"
-15865,19400,GO-20179006658,THEFT UNDER - BICYCLE,2017-05-19T00:00:00,2017,May,Friday,19,139,12,2017-05-19T00:00:00,2017,May,Friday,19,139,20,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MANTRA,RG,1,BLK,389.0,STOLEN,15826,"{'type': 'Point', 'coordinates': (-79.39109731, 43.64989719)}"
-15866,19409,GO-20179008093,THEFT UNDER - BICYCLE,2017-06-14T00:00:00,2017,June,Wednesday,14,165,17,2017-06-14T00:00:00,2017,June,Wednesday,14,165,18,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,RINCON,MT,27,OTH,420.0,STOLEN,15827,"{'type': 'Point', 'coordinates': (-79.3938201, 43.65382278)}"
-15867,19415,GO-20179008984,THEFT UNDER - BICYCLE,2017-05-31T00:00:00,2017,May,Wednesday,31,151,19,2017-06-27T00:00:00,2017,June,Tuesday,27,178,1,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,UNISEX,MT,21,,1200.0,STOLEN,15828,"{'type': 'Point', 'coordinates': (-79.39095898, 43.65603534)}"
-15868,19423,GO-20179010528,THEFT UNDER,2017-07-18T00:00:00,2017,July,Tuesday,18,199,10,2017-07-18T00:00:00,2017,July,Tuesday,18,199,19,D52,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,MANTRA,RC,30,SIL,400.0,STOLEN,15829,"{'type': 'Point', 'coordinates': (-79.39652559, 43.65207852)}"
-15869,19425,GO-20179010647,THEFT UNDER,2017-07-18T00:00:00,2017,July,Tuesday,18,199,19,2017-07-20T00:00:00,2017,July,Thursday,20,201,0,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,HF,,MT,18,GRN,160.0,STOLEN,15830,"{'type': 'Point', 'coordinates': (-79.3938201, 43.65382278)}"
-15870,19426,GO-20179011140,THEFT UNDER - BICYCLE,2017-07-26T00:00:00,2017,July,Wednesday,26,207,9,2017-07-27T00:00:00,2017,July,Thursday,27,208,11,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,SC700C SOLARIS,RG,21,BLK,235.0,STOLEN,15831,"{'type': 'Point', 'coordinates': (-79.38994423, 43.6587011)}"
-15871,19434,GO-20179012983,THEFT UNDER - BICYCLE,2017-08-21T00:00:00,2017,August,Monday,21,233,20,2017-08-21T00:00:00,2017,August,Monday,21,233,21,D52,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DB,OLD FROM 1986,MT,21,RED,1000.0,STOLEN,15832,"{'type': 'Point', 'coordinates': (-79.3946423, 43.65895383)}"
-15872,19435,GO-20179013277,THEFT UNDER - BICYCLE,2017-08-24T00:00:00,2017,August,Thursday,24,236,18,2017-08-24T00:00:00,2017,August,Thursday,24,236,22,D52,Toronto,78,Kensington-Chinatown (78),Bar / Restaurant,Commercial,TR,1200,RC,15,GRN,500.0,STOLEN,15833,"{'type': 'Point', 'coordinates': (-79.38860347, 43.65042088)}"
-15873,19437,GO-20179014430,THEFT UNDER,2017-09-10T00:00:00,2017,September,Sunday,10,253,17,2017-09-10T00:00:00,2017,September,Sunday,10,253,22,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,7,BLK,450.0,STOLEN,15834,"{'type': 'Point', 'coordinates': (-79.39404835, 43.65906999)}"
-15874,19444,GO-20179016399,THEFT UNDER - BICYCLE,2017-10-01T00:00:00,2017,October,Sunday,1,274,20,2017-10-03T00:00:00,2017,October,Tuesday,3,276,17,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ROAM2,MT,40,BLK,1200.0,STOLEN,15835,"{'type': 'Point', 'coordinates': (-79.39042227000002, 43.65615784)}"
-15875,19452,GO-20179017834,THEFT UNDER - BICYCLE,2017-10-08T00:00:00,2017,October,Sunday,8,281,23,2017-10-22T00:00:00,2017,October,Sunday,22,295,21,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,NO,INDIE 4 2015,OT,24,BLK,597.0,STOLEN,15836,"{'type': 'Point', 'coordinates': (-79.39227275, 43.65005482)}"
-15876,19470,GO-20189006738,THEFT UNDER - BICYCLE,2018-03-02T00:00:00,2018,March,Friday,2,61,10,2018-03-04T00:00:00,2018,March,Sunday,4,63,9,D52,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,MA,,MT,21,RED,500.0,STOLEN,15837,"{'type': 'Point', 'coordinates': (-79.38944954, 43.65752945)}"
-15877,19478,GO-20189011421,THEFT UNDER - BICYCLE,2018-04-12T00:00:00,2018,April,Thursday,12,102,5,2018-04-12T00:00:00,2018,April,Thursday,12,102,17,D52,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,,RG,7,SIL,250.0,STOLEN,15838,"{'type': 'Point', 'coordinates': (-79.39692918, 43.65528489)}"
-15878,19487,GO-20189016054,THEFT UNDER,2018-05-23T00:00:00,2018,May,Wednesday,23,143,9,2018-05-24T00:00:00,2018,May,Thursday,24,144,12,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RG,3,BLK,800.0,STOLEN,15839,"{'type': 'Point', 'coordinates': (-79.3971995, 43.65090154)}"
-15879,19491,GO-20189016912,THEFT UNDER,2018-05-30T00:00:00,2018,May,Wednesday,30,150,19,2018-05-31T00:00:00,2018,May,Thursday,31,151,11,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,X4 STEM(90MM),RC,1,BLK,400.0,STOLEN,15840,"{'type': 'Point', 'coordinates': (-79.4000091, 43.65794797)}"
-15880,19498,GO-20189019018,THEFT UNDER - BICYCLE,2018-06-15T00:00:00,2018,June,Friday,15,166,14,2018-06-17T00:00:00,2018,June,Sunday,17,168,11,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,OT,KTM BARK 40,MT,15,BLK,3500.0,STOLEN,15841,"{'type': 'Point', 'coordinates': (-79.4000091, 43.65794797)}"
-15881,19511,GO-20189022640,THEFT UNDER - BICYCLE,2018-07-16T00:00:00,2018,July,Monday,16,197,9,2018-07-16T00:00:00,2018,July,Monday,16,197,17,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,OT,9,GRY,700.0,STOLEN,15842,"{'type': 'Point', 'coordinates': (-79.39045505, 43.65985872)}"
-15882,6977,GO-20209020441,THEFT UNDER,2020-08-09T00:00:00,2020,August,Sunday,9,222,12,2020-08-17T00:00:00,2020,August,Monday,17,230,12,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,THRIVE 0,RG,24,LBL,1250.0,STOLEN,15914,"{'type': 'Point', 'coordinates': (-79.40540813, 43.6641145)}"
-15883,19512,GO-20189022902,THEFT UNDER - BICYCLE,2018-07-18T00:00:00,2018,July,Wednesday,18,199,9,2018-07-18T00:00:00,2018,July,Wednesday,18,199,12,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,DELSON,RG,8,BLK,400.0,STOLEN,15843,"{'type': 'Point', 'coordinates': (-79.38918474, 43.65468421)}"
-15884,19526,GO-20189025675,THEFT UNDER,2018-08-09T00:00:00,2018,August,Thursday,9,221,20,2018-08-09T00:00:00,2018,August,Thursday,9,221,21,D52,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,18,YEL,350.0,STOLEN,15844,"{'type': 'Point', 'coordinates': (-79.39424091, 43.65480274)}"
-15885,19534,GO-20189027195,THEFT UNDER - BICYCLE,2018-08-15T00:00:00,2018,August,Wednesday,15,227,10,2018-08-20T00:00:00,2018,August,Monday,20,232,18,D52,Toronto,78,Kensington-Chinatown (78),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,RG,15,GRY,700.0,STOLEN,15845,"{'type': 'Point', 'coordinates': (-79.39227275, 43.65005482)}"
-15886,19538,GO-20189028815,THEFT UNDER - BICYCLE,2018-09-01T00:00:00,2018,September,Saturday,1,244,11,2018-09-01T00:00:00,2018,September,Saturday,1,244,15,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,FX3,RG,21,RED,200.0,STOLEN,15846,"{'type': 'Point', 'coordinates': (-79.39161243, 43.65119665)}"
-15887,19562,GO-20189034854,THEFT UNDER - BICYCLE,2018-10-17T00:00:00,2018,October,Wednesday,17,290,17,2018-10-20T00:00:00,2018,October,Saturday,20,293,15,D52,Toronto,78,Kensington-Chinatown (78),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,610,TO,12,MRN,500.0,STOLEN,15847,"{'type': 'Point', 'coordinates': (-79.39339759, 43.65276389)}"
-15888,19585,GO-20199018846,THEFT UNDER,2019-06-15T00:00:00,2019,June,Saturday,15,166,20,2019-06-16T00:00:00,2019,June,Sunday,16,167,16,D52,Toronto,78,Kensington-Chinatown (78),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,HARDROCK SPORT,MT,24,BLK,200.0,STOLEN,15848,"{'type': 'Point', 'coordinates': (-79.39339759, 43.65276389)}"
-15889,19778,GO-20149005038,THEFT UNDER,2014-07-15T00:00:00,2014,July,Tuesday,15,196,12,2014-07-16T00:00:00,2014,July,Wednesday,16,197,12,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,RG,21,GRN,600.0,STOLEN,15849,"{'type': 'Point', 'coordinates': (-79.39045505, 43.65985872)}"
-15890,19784,GO-20149005371,THEFT UNDER,2014-07-21T00:00:00,2014,July,Monday,21,202,7,2014-07-27T00:00:00,2014,July,Sunday,27,208,10,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,7.2 FX,RG,20,BLK,800.0,STOLEN,15850,"{'type': 'Point', 'coordinates': (-79.38944954, 43.65752945)}"
-15891,19795,GO-20149006142,THEFT UNDER,2014-08-20T00:00:00,2014,August,Wednesday,20,232,12,2014-08-20T00:00:00,2014,August,Wednesday,20,232,18,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,AGGRESSOR 3.0,MT,21,BLK,360.0,STOLEN,15851,"{'type': 'Point', 'coordinates': (-79.39339759, 43.65276389)}"
-15892,19798,GO-20142772907,THEFT UNDER - SHOPLIFTING,2014-08-25T00:00:00,2014,August,Monday,25,237,12,2014-08-25T00:00:00,2014,August,Monday,25,237,13,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,RG,1,WHI,300.0,STOLEN,15852,"{'type': 'Point', 'coordinates': (-79.39888675, 43.65513745)}"
-15893,19799,GO-20142772907,THEFT UNDER - SHOPLIFTING,2014-08-25T00:00:00,2014,August,Monday,25,237,12,2014-08-25T00:00:00,2014,August,Monday,25,237,13,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,RG,1,GRN,300.0,STOLEN,15853,"{'type': 'Point', 'coordinates': (-79.39888675, 43.65513745)}"
-15894,19835,GO-2015686896,THEFT UNDER,2015-04-25T00:00:00,2015,April,Saturday,25,115,19,2015-04-25T00:00:00,2015,April,Saturday,25,115,23,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DEVINCI,CRUISER HYBRID,OT,18,BLK,700.0,STOLEN,15854,"{'type': 'Point', 'coordinates': (-79.3906274, 43.65241188)}"
-15895,19857,GO-20159004856,THEFT UNDER,2015-07-22T00:00:00,2015,July,Wednesday,22,203,14,2015-07-22T00:00:00,2015,July,Wednesday,22,203,16,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,VISCOUNT,OT,1,CRM,375.0,STOLEN,15855,"{'type': 'Point', 'coordinates': (-79.39586324, 43.65870005)}"
-15896,19862,GO-20159005648,THEFT UNDER,2015-08-11T00:00:00,2015,August,Tuesday,11,223,14,2015-08-11T00:00:00,2015,August,Tuesday,11,223,17,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,2015,MT,27,BLU,700.0,STOLEN,15856,"{'type': 'Point', 'coordinates': (-79.39136265, 43.65838682)}"
-15897,19864,GO-20159005906,THEFT UNDER,2015-08-16T00:00:00,2015,August,Sunday,16,228,6,2015-08-17T00:00:00,2015,August,Monday,17,229,12,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,TR,HYBRID,RG,18,BLU,700.0,STOLEN,15857,"{'type': 'Point', 'coordinates': (-79.39830363, 43.65630596)}"
-15898,19876,GO-20151729160,THEFT UNDER,2015-10-06T00:00:00,2015,October,Tuesday,6,279,23,2015-10-07T00:00:00,2015,October,Wednesday,7,280,7,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,CITY 2.0,OT,7,SILBLU,400.0,STOLEN,15858,"{'type': 'Point', 'coordinates': (-79.39161243, 43.65119665)}"
-15899,19881,GO-20159009425,THEFT UNDER,2015-11-04T00:00:00,2015,November,Wednesday,4,308,21,2015-11-06T00:00:00,2015,November,Friday,6,310,1,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,THRIVE,RG,8,LBL,1600.0,STOLEN,15859,"{'type': 'Point', 'coordinates': (-79.39109731, 43.64989719)}"
-15900,19884,GO-20159010785,THEFT UNDER,2015-12-10T00:00:00,2015,December,Thursday,10,344,18,2015-12-11T00:00:00,2015,December,Friday,11,345,7,D52,Toronto,78,Kensington-Chinatown (78),Bar / Restaurant,Commercial,UK,SIRIUS,TO,1,BLK,1000.0,STOLEN,15860,"{'type': 'Point', 'coordinates': (-79.38747649, 43.65067257)}"
-15901,19902,GO-2016766234,THEFT UNDER - BICYCLE,2016-05-04T00:00:00,2016,May,Wednesday,4,125,7,2016-05-04T00:00:00,2016,May,Wednesday,4,125,19,D52,Toronto,78,Kensington-Chinatown (78),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GREEN,,RG,1,,1000.0,STOLEN,15861,"{'type': 'Point', 'coordinates': (-79.38984563, 43.65622357)}"
-15902,19903,GO-2016778927,B&E,2016-05-01T00:00:00,2016,May,Sunday,1,122,15,2016-05-07T00:00:00,2016,May,Saturday,7,128,16,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,,MT,0,WHI,4500.0,STOLEN,15862,"{'type': 'Point', 'coordinates': (-79.39227275, 43.65005482)}"
-15903,19908,GO-2016896023,THEFT UNDER,2016-05-24T00:00:00,2016,May,Tuesday,24,145,15,2016-05-24T00:00:00,2016,May,Tuesday,24,145,18,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,SC,7,RED,1200.0,STOLEN,15863,"{'type': 'Point', 'coordinates': (-79.39404835, 43.65906999)}"
-15904,19913,GO-20169005330,THEFT UNDER - BICYCLE,2016-05-25T00:00:00,2016,May,Wednesday,25,146,21,2016-06-03T00:00:00,2016,June,Friday,3,155,17,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EM,,EL,30,RED,800.0,STOLEN,15864,"{'type': 'Point', 'coordinates': (-79.39801041, 43.65294362)}"
-15905,19927,GO-20169007524,THEFT UNDER - BICYCLE,2016-07-20T00:00:00,2016,July,Wednesday,20,202,18,2016-07-20T00:00:00,2016,July,Wednesday,20,202,22,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,700 HYBRID,RG,7,SIL,430.0,STOLEN,15865,"{'type': 'Point', 'coordinates': (-79.39634181, 43.64876464)}"
-15906,19957,GO-20169014031,THEFT UNDER,2016-11-30T00:00:00,2016,November,Wednesday,30,335,10,2016-11-30T00:00:00,2016,November,Wednesday,30,335,12,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,PARATROOPER PRO,FO,27,BLK,1500.0,STOLEN,15866,"{'type': 'Point', 'coordinates': (-79.39136265, 43.65838682)}"
-15907,19960,GO-20179000425,THEFT UNDER - BICYCLE,2016-12-28T00:00:00,2016,December,Wednesday,28,363,9,2017-01-10T00:00:00,2017,January,Tuesday,10,10,9,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,ALLEZ,RC,14,BLK,0.0,STOLEN,15867,"{'type': 'Point', 'coordinates': (-79.3968449, 43.65006869)}"
-15908,19970,GO-20179003634,THEFT UNDER,2017-03-21T00:00:00,2017,March,Tuesday,21,80,21,2017-03-23T00:00:00,2017,March,Thursday,23,82,0,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BI,BICI III,OT,1,RED,1000.0,STOLEN,15868,"{'type': 'Point', 'coordinates': (-79.39462359, 43.65576755)}"
-15909,19971,GO-20179003827,THEFT UNDER - BICYCLE,2017-03-26T00:00:00,2017,March,Sunday,26,85,14,2017-03-26T00:00:00,2017,March,Sunday,26,85,23,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,EM,GT5,EL,32,BLK,1000.0,STOLEN,15869,"{'type': 'Point', 'coordinates': (-79.39095898, 43.65603534)}"
-15910,20139,GO-20141866845,THEFT UNDER,2014-04-10T00:00:00,2014,April,Thursday,10,100,21,2014-04-10T00:00:00,2014,April,Thursday,10,100,21,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,ORIONS,RC,1,SIL,700.0,STOLEN,15870,"{'type': 'Point', 'coordinates': (-79.39955207, 43.65674851)}"
-15911,20143,GO-20149002898,THEFT UNDER,2014-04-17T00:00:00,2014,April,Thursday,17,107,13,2014-04-17T00:00:00,2014,April,Thursday,17,107,19,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RM,,OT,8,BLK,1000.0,STOLEN,15871,"{'type': 'Point', 'coordinates': (-79.38994423, 43.6587011)}"
-15912,20148,GO-20149003453,THEFT UNDER,2014-05-11T00:00:00,2014,May,Sunday,11,131,8,2014-05-20T00:00:00,2014,May,Tuesday,20,140,14,D52,Toronto,78,Kensington-Chinatown (78),Universities / Colleges,Educational,RA,,RG,3,WHI,350.0,STOLEN,15872,"{'type': 'Point', 'coordinates': (-79.3906274, 43.65241188)}"
-15913,20151,GO-20142217825,THEFT UNDER,2014-06-02T00:00:00,2014,June,Monday,2,153,7,2014-06-05T00:00:00,2014,June,Thursday,5,156,12,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,INFINITY,,MT,24,BLKRED,350.0,STOLEN,15873,"{'type': 'Point', 'coordinates': (-79.39136265, 43.65838682)}"
-15914,20152,GO-20142255941,THEFT UNDER,2014-06-09T00:00:00,2014,June,Monday,9,160,12,2014-06-09T00:00:00,2014,June,Monday,9,160,18,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,RAPID 2,TO,21,BLUWHI,900.0,STOLEN,15874,"{'type': 'Point', 'coordinates': (-79.38944954, 43.65752945)}"
-15915,20157,GO-20149004034,THEFT UNDER,2014-06-12T00:00:00,2014,June,Thursday,12,163,19,2014-06-13T00:00:00,2014,June,Friday,13,164,10,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KH,KHS URBAN XCAPE,RG,10,BLK,450.0,STOLEN,15875,"{'type': 'Point', 'coordinates': (-79.3934451, 43.65919971)}"
-15916,20159,GO-20149004176,THEFT UNDER,2014-05-20T00:00:00,2014,May,Tuesday,20,140,9,2014-06-17T00:00:00,2014,June,Tuesday,17,168,11,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,UMBRIA 200,RG,21,LBL,369.0,STOLEN,15876,"{'type': 'Point', 'coordinates': (-79.38984563, 43.65622357)}"
-15917,20167,GO-20149004502,THEFT UNDER,2014-06-27T00:00:00,2014,June,Friday,27,178,9,2014-06-27T00:00:00,2014,June,Friday,27,178,16,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,BAD BOY,OT,27,BLK,1000.0,STOLEN,15877,"{'type': 'Point', 'coordinates': (-79.39136265, 43.65838682)}"
-15918,20586,GO-20199021383,THEFT UNDER,2019-07-08T00:00:00,2019,July,Monday,8,189,4,2019-07-08T00:00:00,2019,July,Monday,8,189,6,D52,Toronto,78,Kensington-Chinatown (78),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MA,NICASIO,RC,8,DBL,800.0,STOLEN,15878,"{'type': 'Point', 'coordinates': (-79.38747649, 43.65067257)}"
-15919,20639,GO-20199029811,THEFT UNDER,2019-09-12T00:00:00,2019,September,Thursday,12,255,10,2019-09-12T00:00:00,2019,September,Thursday,12,255,19,D52,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,ST. TROPEZ,RG,24,BLK,1000.0,STOLEN,15879,"{'type': 'Point', 'coordinates': (-79.39024772, 43.65149749)}"
-15920,20642,GO-20191778220,PROPERTY - FOUND,2019-09-16T00:00:00,2019,September,Monday,16,259,10,2019-09-16T00:00:00,2019,September,Monday,16,259,11,D52,Toronto,78,Kensington-Chinatown (78),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,,MT,18,GRYYEL,,UNKNOWN,15880,"{'type': 'Point', 'coordinates': (-79.39033931, 43.65450322)}"
-15921,6313,GO-20201053950,THEFT UNDER - BICYCLE,2020-05-27T00:00:00,2020,May,Wednesday,27,148,12,2020-06-08T00:00:00,2020,June,Monday,8,160,13,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GEMILLI,VOYAGER,EL,1,BLK,2000.0,STOLEN,15904,"{'type': 'Point', 'coordinates': (-79.40137171, 43.66130203)}"
-15922,20682,GO-20199038692,THEFT UNDER,2019-11-21T00:00:00,2019,November,Thursday,21,325,18,2019-11-24T00:00:00,2019,November,Sunday,24,328,12,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,ZONE-S,EL,32,RED,3000.0,STOLEN,15881,"{'type': 'Point', 'coordinates': (-79.39830363, 43.65630596)}"
-15923,20696,GO-2020537314,THEFT UNDER,2020-03-13T00:00:00,2020,March,Friday,13,73,17,2020-03-15T00:00:00,2020,March,Sunday,15,75,0,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,PURE FIX,,RC,1,WHI,400.0,STOLEN,15882,"{'type': 'Point', 'coordinates': (-79.39634181, 43.64876464)}"
-15924,20697,GO-20209010007,THEFT UNDER,2020-03-26T00:00:00,2020,March,Thursday,26,86,18,2020-03-28T00:00:00,2020,March,Saturday,28,88,2,D52,Toronto,78,Kensington-Chinatown (78),Bar / Restaurant,Commercial,SC,GTX2,OT,21,OTH,400.0,STOLEN,15883,"{'type': 'Point', 'coordinates': (-79.39927621, 43.65610155)}"
-15925,20711,GO-20201014381,THEFT UNDER - BICYCLE,2020-06-02T00:00:00,2020,June,Tuesday,2,154,10,2020-06-02T00:00:00,2020,June,Tuesday,2,154,12,D52,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,MCM MOSCOW,MT,0,BLKBLU,1500.0,UNKNOWN,15884,"{'type': 'Point', 'coordinates': (-79.39136265, 43.65838682)}"
-15926,20725,GO-20209016700,THEFT UNDER,2020-07-01T00:00:00,2020,July,Wednesday,1,183,6,2020-07-03T00:00:00,2020,July,Friday,3,185,8,D52,Toronto,78,Kensington-Chinatown (78),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RG,1,BLK,550.0,STOLEN,15885,"{'type': 'Point', 'coordinates': (-79.39225095, 43.656266970000004)}"
-15927,20738,GO-20209018732,THEFT UNDER,2020-07-25T00:00:00,2020,July,Saturday,25,207,23,2020-07-27T00:00:00,2020,July,Monday,27,209,22,D52,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,OT,URBANIA 5,RG,21,WHI,530.0,STOLEN,15886,"{'type': 'Point', 'coordinates': (-79.39395903, 43.65721288)}"
-15928,20740,GO-20209019180,THEFT UNDER,2020-08-01T00:00:00,2020,August,Saturday,1,214,23,2020-08-02T00:00:00,2020,August,Sunday,2,215,5,D52,Toronto,78,Kensington-Chinatown (78),Bar / Restaurant,Commercial,UK,,RG,20,,1200.0,STOLEN,15887,"{'type': 'Point', 'coordinates': (-79.39634181, 43.64876464)}"
-15929,20746,GO-20209020241,THEFT UNDER,2020-07-20T00:00:00,2020,July,Monday,20,202,20,2020-08-14T00:00:00,2020,August,Friday,14,227,16,D52,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,GI,FASTROAD SLR 1T,OT,10,BLK,1700.0,STOLEN,15888,"{'type': 'Point', 'coordinates': (-79.38984563, 43.65622357)}"
-15930,20778,GO-20209023774,THEFT UNDER,2020-09-06T00:00:00,2020,September,Sunday,6,250,10,2020-09-18T00:00:00,2020,September,Friday,18,262,15,D52,Toronto,78,Kensington-Chinatown (78),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,TCR A1,RG,20,LBL,1400.0,STOLEN,15889,"{'type': 'Point', 'coordinates': (-79.39366252, 43.64935047)}"
-15931,20795,GO-20209020205,THEFT UNDER,2020-08-14T00:00:00,2020,August,Friday,14,227,3,2020-08-14T00:00:00,2020,August,Friday,14,227,12,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,MA,MUIRWOODS RC,RG,8,SIL,1200.0,STOLEN,15890,"{'type': 'Point', 'coordinates': (-79.40270032, 43.64940096)}"
-15932,20829,GO-20209028639,THEFT UNDER,2020-10-19T00:00:00,2020,October,Monday,19,293,7,2020-11-04T00:00:00,2020,November,Wednesday,4,309,17,D14,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,SPECIALIZED,SIRRUS 1.0,RG,24,BLK,900.0,STOLEN,15891,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-15933,21027,GO-20199023213,THEFT UNDER,2019-07-21T00:00:00,2019,July,Sunday,21,202,13,2019-07-22T00:00:00,2019,July,Monday,22,203,10,D14,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,TR,FX3,RG,27,BLK,820.0,STOLEN,15892,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-15934,21035,GO-20199024895,THEFT UNDER,2019-08-04T00:00:00,2019,August,Sunday,4,216,0,2019-08-04T00:00:00,2019,August,Sunday,4,216,10,D14,Toronto,78,Kensington-Chinatown (78),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,GF,MARLIN,MT,21,BLK,0.0,STOLEN,15893,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-15935,21096,GO-20199038119,THEFT UNDER,2019-11-19T00:00:00,2019,November,Tuesday,19,323,15,2019-11-19T00:00:00,2019,November,Tuesday,19,323,17,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,2100 ROAD BIKE,RC,14,,800.0,STOLEN,15894,"{'type': 'Point', 'coordinates': (-79.39983126, 43.65255065)}"
-15936,21162,GO-20209017508,THEFT UNDER,2020-07-07T00:00:00,2020,July,Tuesday,7,189,9,2020-07-14T00:00:00,2020,July,Tuesday,14,196,9,D14,Toronto,78,Kensington-Chinatown (78),"Apartment (Rooming House, Condo)",Apartment,OT,S-PRESSO,RC,24,WHI,400.0,STOLEN,15895,"{'type': 'Point', 'coordinates': (-79.40180671, 43.65765229)}"
-15937,6781,GO-20209018801,THEFT UNDER,2020-07-28T00:00:00,2020,July,Tuesday,28,210,3,2020-07-28T00:00:00,2020,July,Tuesday,28,210,15,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,21,BLU,400.0,STOLEN,15913,"{'type': 'Point', 'coordinates': (-79.40411393, 43.66079116)}"
-15938,21182,GO-20171269102,THEFT UNDER - BICYCLE,2017-07-15T00:00:00,2017,July,Saturday,15,196,13,2017-07-15T00:00:00,2017,July,Saturday,15,196,13,D14,Toronto,78,Kensington-Chinatown (78),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,DUTCHIE,TO,3,YEL,875.0,STOLEN,15896,"{'type': 'Point', 'coordinates': (-79.40264521, 43.65609187)}"
-15939,21191,GO-20171330489,THEFT UNDER - BICYCLE,2017-07-24T00:00:00,2017,July,Monday,24,205,16,2017-07-24T00:00:00,2017,July,Monday,24,205,18,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,MT,21,BLKGRN,600.0,STOLEN,15897,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-15940,21223,GO-20171844636,THEFT OF EBIKE UNDER $5000,2017-10-10T00:00:00,2017,October,Tuesday,10,283,23,2017-10-14T00:00:00,2017,October,Saturday,14,287,20,D14,Toronto,78,Kensington-Chinatown (78),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,JITTER BUG,EL,0,BLU,,STOLEN,15898,"{'type': 'Point', 'coordinates': (-79.40364248, 43.65495832)}"
-15941,21268,GO-20189014652,THEFT UNDER,2018-05-10T00:00:00,2018,May,Thursday,10,130,20,2018-05-12T00:00:00,2018,May,Saturday,12,132,14,D14,Toronto,78,Kensington-Chinatown (78),Bar / Restaurant,Commercial,UK,ADDICT SL,RC,22,BLK,5000.0,RECOVERED,15899,"{'type': 'Point', 'coordinates': (-79.40199569, 43.6545078)}"
-15942,21270,GO-20189015530,THEFT UNDER - BICYCLE,2018-05-11T00:00:00,2018,May,Friday,11,131,23,2018-05-19T00:00:00,2018,May,Saturday,19,139,13,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,FX 3,RG,4,,1012.0,STOLEN,15900,"{'type': 'Point', 'coordinates': (-79.39963685, 43.64806649)}"
-15943,21280,GO-20189017216,THEFT UNDER - BICYCLE,2018-06-02T00:00:00,2018,June,Saturday,2,153,18,2018-06-03T00:00:00,2018,June,Sunday,3,154,15,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,1,BLK,400.0,STOLEN,15901,"{'type': 'Point', 'coordinates': (-79.39634181, 43.64876464)}"
-15944,21311,GO-20189021865,THEFT UNDER - BICYCLE,2018-07-07T00:00:00,2018,July,Saturday,7,188,19,2018-07-10T00:00:00,2018,July,Tuesday,10,191,13,D14,Toronto,78,Kensington-Chinatown (78),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,2012 ROAM,MT,27,GRY,800.0,STOLEN,15902,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-15945,6248,GO-20209013895,THEFT UNDER,2020-05-24T00:00:00,2020,May,Sunday,24,145,22,2020-05-25T00:00:00,2020,May,Monday,25,146,19,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,,2020,OT,18,BLU,300.0,STOLEN,15903,"{'type': 'Point', 'coordinates': (-79.40099018, 43.66036731)}"
-15946,6314,GO-20201053950,THEFT UNDER - BICYCLE,2020-05-27T00:00:00,2020,May,Wednesday,27,148,12,2020-06-08T00:00:00,2020,June,Monday,8,160,13,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,URBAN S,EL,1,BLK,2000.0,STOLEN,15905,"{'type': 'Point', 'coordinates': (-79.40137171, 43.66130203)}"
-15947,6347,GO-20209014998,THEFT UNDER,2020-06-06T00:00:00,2020,June,Saturday,6,158,23,2020-06-09T00:00:00,2020,June,Tuesday,9,161,17,D14,Toronto,79,University (79),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KO,DEW,RG,8,BLK,800.0,STOLEN,15906,"{'type': 'Point', 'coordinates': (-79.40717904, 43.66201639)}"
-15948,6429,GO-20209015733,THEFT UNDER,2020-06-16T00:00:00,2020,June,Tuesday,16,168,10,2020-06-19T00:00:00,2020,June,Friday,19,171,15,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,27.5 HARDLINE,MT,21,BLK,360.0,STOLEN,15907,"{'type': 'Point', 'coordinates': (-79.4000091, 43.65794797)}"
-15949,6488,GO-20201185447,B&E,2020-06-27T00:00:00,2020,June,Saturday,27,179,18,2020-06-28T00:00:00,2020,June,Sunday,28,180,9,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUN,SUNDAY,BM,1,LBL,800.0,STOLEN,15908,"{'type': 'Point', 'coordinates': (-79.40137171, 43.66130203)}"
-15950,6516,GO-20209016668,THEFT UNDER,2020-02-21T00:00:00,2020,February,Friday,21,52,16,2020-07-02T00:00:00,2020,July,Thursday,2,184,16,D52,Toronto,79,University (79),Universities / Colleges,Educational,NO,,RG,8,BLK,1000.0,STOLEN,15909,"{'type': 'Point', 'coordinates': (-79.40207036, 43.66305191)}"
-15951,6544,GO-20201255056,THEFT UNDER - BICYCLE,2020-07-03T00:00:00,2020,July,Friday,3,185,20,2020-07-07T00:00:00,2020,July,Tuesday,7,189,13,D52,Toronto,79,University (79),Universities / Colleges,Educational,HYPER,,MT,6,BLKBLU,155.0,STOLEN,15910,"{'type': 'Point', 'coordinates': (-79.3946423, 43.65895383)}"
-15952,6571,GO-20209017207,THEFT UNDER,2020-07-09T00:00:00,2020,July,Thursday,9,191,18,2020-07-09T00:00:00,2020,July,Thursday,9,191,19,D52,Toronto,79,University (79),Bar / Restaurant,Commercial,UK,VIKING PRO 27.5,MT,9,RED,450.0,RECOVERED,15911,"{'type': 'Point', 'coordinates': (-79.4000091, 43.65794797)}"
-15953,6580,GO-20209017207,THEFT UNDER,2020-07-09T00:00:00,2020,July,Thursday,9,191,18,2020-07-09T00:00:00,2020,July,Thursday,9,191,19,D52,Toronto,79,University (79),Bar / Restaurant,Commercial,UK,,RG,9,,450.0,STOLEN,15912,"{'type': 'Point', 'coordinates': (-79.4000091, 43.65794797)}"
-15954,7135,GO-20209021838,THEFT UNDER,2020-08-28T00:00:00,2020,August,Friday,28,241,16,2020-08-31T00:00:00,2020,August,Monday,31,244,10,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,RG,8,BLK,100.0,STOLEN,15915,"{'type': 'Point', 'coordinates': (-79.40237577, 43.66385178)}"
-15955,7157,GO-20209022101,THEFT UNDER,2020-08-30T00:00:00,2020,August,Sunday,30,243,18,2020-09-02T00:00:00,2020,September,Wednesday,2,246,12,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,MADONE 5.2 BLAC,RG,27,BLK,700.0,STOLEN,15916,"{'type': 'Point', 'coordinates': (-79.40382824, 43.66269877)}"
-15956,7237,GO-20201739559,THEFT UNDER - BICYCLE,2020-09-03T00:00:00,2020,September,Thursday,3,247,10,2020-09-14T00:00:00,2020,September,Monday,14,258,8,D52,Toronto,79,University (79),Universities / Colleges,Educational,SUPERCYCLE,NITRO,MT,21,TRQ,160.0,STOLEN,15917,"{'type': 'Point', 'coordinates': (-79.3946423, 43.65895383)}"
-15957,7246,GO-20209023257,THEFT UNDER,2020-09-13T00:00:00,2020,September,Sunday,13,257,17,2020-09-14T00:00:00,2020,September,Monday,14,258,16,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,24,BLU,700.0,STOLEN,15918,"{'type': 'Point', 'coordinates': (-79.40530179, 43.660552)}"
-15958,7275,GO-20209023595,THEFT UNDER,2020-09-17T00:00:00,2020,September,Thursday,17,261,12,2020-09-17T00:00:00,2020,September,Thursday,17,261,17,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BI,STREET BIKE,RG,10,BLK,400.0,STOLEN,15919,"{'type': 'Point', 'coordinates': (-79.39979751, 43.66751644)}"
-15959,7299,GO-20209023839,THEFT UNDER,2020-09-18T00:00:00,2020,September,Friday,18,262,23,2020-09-19T00:00:00,2020,September,Saturday,19,263,15,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,UK,NORTHROCK XC27,MT,7,DBL,300.0,STOLEN,15920,"{'type': 'Point', 'coordinates': (-79.40382824, 43.66269877)}"
-15960,7329,GO-20201805716,THEFT UNDER - BICYCLE,2020-09-07T00:00:00,2020,September,Monday,7,251,21,2020-09-23T00:00:00,2020,September,Wednesday,23,267,11,D52,Toronto,79,University (79),Universities / Colleges,Educational,RALEIGH,,MT,0,DBL,100.0,STOLEN,15921,"{'type': 'Point', 'coordinates': (-79.40170888, 43.66215594)}"
-15961,7333,GO-20209023776,THEFT UNDER,2020-09-18T00:00:00,2020,September,Friday,18,262,10,2020-09-18T00:00:00,2020,September,Friday,18,262,15,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,PASEO,RG,21,MRN,0.0,STOLEN,15922,"{'type': 'Point', 'coordinates': (-79.39348694, 43.66726478)}"
-15962,7363,GO-20201840942,THEFT UNDER - BICYCLE,2020-09-18T00:00:00,2020,September,Friday,18,262,18,2020-09-28T00:00:00,2020,September,Monday,28,272,8,D52,Toronto,79,University (79),Universities / Colleges,Educational,FUJI,,OT,0,BLK,700.0,STOLEN,15923,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-15963,7377,GO-20209024775,THEFT UNDER,2020-09-27T00:00:00,2020,September,Sunday,27,271,13,2020-09-28T00:00:00,2020,September,Monday,28,272,12,D14,Toronto,79,University (79),Schools During Un-Supervised Activity,Educational,GI,ESCAPE 2,RG,24,BLK,599.0,STOLEN,15924,"{'type': 'Point', 'coordinates': (-79.41021074, 43.66266863)}"
-15964,7388,GO-20209024973,THEFT UNDER,2020-09-29T00:00:00,2020,September,Tuesday,29,273,6,2020-09-29T00:00:00,2020,September,Tuesday,29,273,17,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,1,WHI,1000.0,STOLEN,15925,"{'type': 'Point', 'coordinates': (-79.40518896, 43.65697872)}"
-15965,7403,GO-20209025272,THEFT UNDER - BICYCLE,2020-10-02T00:00:00,2020,October,Friday,2,276,12,2020-10-02T00:00:00,2020,October,Friday,2,276,18,D14,Toronto,79,University (79),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SU,,RG,20,GRN,0.0,STOLEN,15926,"{'type': 'Point', 'coordinates': (-79.40713565, 43.65840411)}"
-15966,7428,GO-20201884807,THEFT UNDER - BICYCLE,2020-10-01T00:00:00,2020,October,Thursday,1,275,9,2020-10-04T00:00:00,2020,October,Sunday,4,278,13,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,SUPERCYCLE,TEMPO,MT,21,BLU,300.0,STOLEN,15927,"{'type': 'Point', 'coordinates': (-79.40307045, 43.6655101)}"
-15967,7580,GO-20202077295,THEFT UNDER,2020-10-28T00:00:00,2020,October,Wednesday,28,302,10,2020-11-02T00:00:00,2020,November,Monday,2,307,8,D52,Toronto,79,University (79),Universities / Colleges,Educational,SCOTT,SUB-CROSS,OT,0,BLKBLU,1500.0,STOLEN,15928,"{'type': 'Point', 'coordinates': (-79.40067317, 43.66506891)}"
-15968,7764,GO-20149001341,THEFT UNDER,2014-02-14T00:00:00,2014,February,Friday,14,45,12,2014-02-17T00:00:00,2014,February,Monday,17,48,12,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,INTERNATIONAL,MT,18,BLK,100.0,STOLEN,15929,"{'type': 'Point', 'coordinates': (-79.40995373, 43.66538876)}"
-15969,7842,GO-20141908212,THEFT UNDER,2014-04-16T00:00:00,2014,April,Wednesday,16,106,13,2014-04-17T00:00:00,2014,April,Thursday,17,107,11,D52,Toronto,79,University (79),Universities / Colleges,Educational,SPECIALIZED,ALLEZ,OT,18,BLK,750.0,STOLEN,15930,"{'type': 'Point', 'coordinates': (-79.40207036, 43.66305191)}"
-15970,8003,GO-20149003676,THEFT UNDER,2014-05-27T00:00:00,2014,May,Tuesday,27,147,23,2014-05-29T00:00:00,2014,May,Thursday,29,149,22,D52,Toronto,79,University (79),Universities / Colleges,Educational,NO,"PINNACLE 32""""",MT,21,BLK,355.0,STOLEN,15935,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-15971,8079,GO-20142263772,THEFT UNDER,2014-06-05T00:00:00,2014,June,Thursday,5,156,11,2014-06-10T00:00:00,2014,June,Tuesday,10,161,20,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,UNKNOWN,RC,28,GRYONG,1000.0,STOLEN,15936,"{'type': 'Point', 'coordinates': (-79.39488188, 43.66100963)}"
-15972,8080,GO-20142263647,THEFT UNDER,2014-06-05T00:00:00,2014,June,Thursday,5,156,13,2014-06-10T00:00:00,2014,June,Tuesday,10,161,19,D52,Toronto,79,University (79),Universities / Colleges,Educational,TREK,UNKNOWN,MT,18,BLU,300.0,STOLEN,15937,"{'type': 'Point', 'coordinates': (-79.39968364, 43.66258094)}"
-15973,8086,GO-20142268156,THEFT UNDER,2014-06-09T00:00:00,2014,June,Monday,9,160,16,2014-06-11T00:00:00,2014,June,Wednesday,11,162,13,D52,Toronto,79,University (79),Universities / Colleges,Educational,SUPERCYCLE,UNKNOWN,MT,18,BLKGRN,160.0,STOLEN,15938,"{'type': 'Point', 'coordinates': (-79.39894426, 43.66543776)}"
-15974,8089,GO-20142268663,THEFT UNDER,2014-06-02T00:00:00,2014,June,Monday,2,153,16,2014-06-11T00:00:00,2014,June,Wednesday,11,162,14,D52,Toronto,79,University (79),Universities / Colleges,Educational,NORCO,UNKNOWN,MT,21,REDWHI,500.0,STOLEN,15939,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-15975,8099,GO-20142279124,B&E W'INTENT,2014-06-12T00:00:00,2014,June,Thursday,12,163,7,2014-06-13T00:00:00,2014,June,Friday,13,164,12,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,SIRRUS COMP,RC,18,GRYRED,1800.0,STOLEN,15940,"{'type': 'Point', 'coordinates': (-79.40137171, 43.66130203)}"
-15976,8132,GO-20149004102,THEFT UNDER,2014-06-14T00:00:00,2014,June,Saturday,14,165,3,2014-06-15T00:00:00,2014,June,Sunday,15,166,22,D52,Toronto,79,University (79),Universities / Colleges,Educational,NO,WOLVERINE,MT,24,SIL,1650.0,STOLEN,15941,"{'type': 'Point', 'coordinates': (-79.39894426, 43.66543776)}"
-15977,8148,GO-20149004112,THEFT UNDER,2014-06-12T00:00:00,2014,June,Thursday,12,163,15,2014-06-16T00:00:00,2014,June,Monday,16,167,10,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,LRT EXPRESS,MT,21,BLK,0.0,STOLEN,15942,"{'type': 'Point', 'coordinates': (-79.40530179, 43.660552)}"
-15978,8186,GO-20149004224,THEFT UNDER,2014-06-18T00:00:00,2014,June,Wednesday,18,169,18,2014-06-18T00:00:00,2014,June,Wednesday,18,169,22,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,,RG,18,GRY,650.0,STOLEN,15943,"{'type': 'Point', 'coordinates': (-79.40207036, 43.66305191)}"
-15979,8192,GO-20149004244,THEFT UNDER,2014-06-11T00:00:00,2014,June,Wednesday,11,162,14,2014-06-19T00:00:00,2014,June,Thursday,19,170,14,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,EXCELSIOR 700C,RG,21,RED,315.0,STOLEN,15944,"{'type': 'Point', 'coordinates': (-79.39586324, 43.65870005)}"
-15980,8206,GO-20149004302,THEFT UNDER,2014-06-20T00:00:00,2014,June,Friday,20,171,10,2014-06-21T00:00:00,2014,June,Saturday,21,172,11,D52,Toronto,79,University (79),Universities / Colleges,Educational,TR,7.1 FX,RG,21,BLK,500.0,STOLEN,15945,"{'type': 'Point', 'coordinates': (-79.39676402, 43.66012322)}"
-15981,8221,GO-20142364644,THEFT UNDER,2014-06-17T00:00:00,2014,June,Tuesday,17,168,10,2014-06-25T00:00:00,2014,June,Wednesday,25,176,13,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,UNKNOWN,OT,21,RED,200.0,STOLEN,15946,"{'type': 'Point', 'coordinates': (-79.39867107, 43.66007559)}"
-15982,8283,GO-20149004563,THEFT UNDER,2014-06-28T00:00:00,2014,June,Saturday,28,179,22,2014-06-29T00:00:00,2014,June,Sunday,29,180,20,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,RG,24,WHI,600.0,STOLEN,15947,"{'type': 'Point', 'coordinates': (-79.39979751, 43.66751644)}"
-15983,8284,GO-20149004563,THEFT UNDER,2014-06-28T00:00:00,2014,June,Saturday,28,179,22,2014-06-29T00:00:00,2014,June,Sunday,29,180,20,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GF,,MT,21,RED,600.0,STOLEN,15948,"{'type': 'Point', 'coordinates': (-79.39979751, 43.66751644)}"
-15984,8298,GO-20142449069,THEFT UNDER,2014-07-04T00:00:00,2014,July,Friday,4,185,18,2014-07-07T00:00:00,2014,July,Monday,7,188,14,D52,Toronto,79,University (79),Universities / Colleges,Educational,GIANT,FCRI,RG,18,SILBLU,1000.0,STOLEN,15949,"{'type': 'Point', 'coordinates': (-79.40207036, 43.66305191)}"
-15985,8324,GO-20142463036,THEFT UNDER,2014-07-08T00:00:00,2014,July,Tuesday,8,189,12,2014-07-09T00:00:00,2014,July,Wednesday,9,190,14,D52,Toronto,79,University (79),Universities / Colleges,Educational,BRODIE,REMUS,RG,1,WHI,750.0,STOLEN,15950,"{'type': 'Point', 'coordinates': (-79.39901086, 43.66089417)}"
-15986,8332,GO-20142476050,THEFT UNDER,2014-07-09T00:00:00,2014,July,Wednesday,9,190,0,2014-07-11T00:00:00,2014,July,Friday,11,192,13,D52,Toronto,79,University (79),Universities / Colleges,Educational,SUPERCYCLE,UNKNOWN,MT,7,REDBLK,100.0,STOLEN,15951,"{'type': 'Point', 'coordinates': (-79.39979751, 43.66751644)}"
-15987,8338,GO-20149004678,THEFT UNDER,2014-07-04T00:00:00,2014,July,Friday,4,185,1,2014-07-07T00:00:00,2014,July,Monday,7,188,13,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,FASTLANE,OT,21,BLK,400.0,STOLEN,15952,"{'type': 'Point', 'coordinates': (-79.40244418000002, 43.65929925)}"
-15988,8345,GO-20149004698,THEFT UNDER,2014-07-06T00:00:00,2014,July,Sunday,6,187,12,2014-07-06T00:00:00,2014,July,Sunday,6,187,13,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,ESCAPE ZERO,RG,30,BLK,800.0,STOLEN,15953,"{'type': 'Point', 'coordinates': (-79.40198436, 43.65811126)}"
-15989,8372,GO-20142507384,THEFT UNDER,2014-07-10T00:00:00,2014,July,Thursday,10,191,14,2014-07-16T00:00:00,2014,July,Wednesday,16,197,9,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,UNKNOWN,FO,1,LGR,150.0,STOLEN,15954,"{'type': 'Point', 'coordinates': (-79.39901086, 43.66089417)}"
-15990,8387,GO-20149004876,THEFT UNDER,2014-07-08T00:00:00,2014,July,Tuesday,8,189,12,2014-07-10T00:00:00,2014,July,Thursday,10,191,12,D52,Toronto,79,University (79),Universities / Colleges,Educational,OT,REMUS,OT,1,GRY,700.0,STOLEN,15955,"{'type': 'Point', 'coordinates': (-79.39901086, 43.66089417)}"
-15991,8414,GO-20142521309,THEFT UNDER,2014-07-16T00:00:00,2014,July,Wednesday,16,197,16,2014-07-18T00:00:00,2014,July,Friday,18,199,10,D52,Toronto,79,University (79),Universities / Colleges,Educational,RALEIGH,UNKNOWN,OT,1,BLKGLD,300.0,STOLEN,15956,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-15992,8437,GO-20149005036,THEFT UNDER,2014-07-11T00:00:00,2014,July,Friday,11,192,2,2014-07-16T00:00:00,2014,July,Wednesday,16,197,12,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,3 SPEED MEDIUM,TO,3,BLU,400.0,STOLEN,15957,"{'type': 'Point', 'coordinates': (-79.40411393, 43.66079116)}"
-15993,8469,GO-20142550228,THEFT UNDER,2014-07-21T00:00:00,2014,July,Monday,21,202,15,2014-07-22T00:00:00,2014,July,Tuesday,22,203,17,D52,Toronto,79,University (79),Universities / Colleges,Educational,NEXT,HIGH PEAK,OT,1,WHIBLK,78.0,STOLEN,15958,"{'type': 'Point', 'coordinates': (-79.39968364, 43.66258094)}"
-15994,8480,GO-20149005220,THEFT UNDER,2014-07-21T00:00:00,2014,July,Monday,21,202,21,2014-07-22T00:00:00,2014,July,Tuesday,22,203,9,D52,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,INDIE SS,RG,1,BLK,650.0,STOLEN,15960,"{'type': 'Point', 'coordinates': (-79.40067317, 43.66506891)}"
-15995,8483,GO-20142562693,THEFT UNDER,2014-07-15T00:00:00,2014,July,Tuesday,15,196,19,2014-07-24T00:00:00,2014,July,Thursday,24,205,13,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,UNKNOWN,MT,1,BLKGRN,150.0,STOLEN,15961,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-15996,8503,GO-20149005279,THEFT UNDER,2014-07-22T00:00:00,2014,July,Tuesday,22,203,21,2014-07-23T00:00:00,2014,July,Wednesday,23,204,19,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,BOULDER 2006?,MT,21,SIL,0.0,STOLEN,15962,"{'type': 'Point', 'coordinates': (-79.40599871, 43.66226023)}"
-15997,8534,GO-20142607883,THEFT UNDER,2014-07-30T00:00:00,2014,July,Wednesday,30,211,8,2014-07-31T00:00:00,2014,July,Thursday,31,212,12,D52,Toronto,79,University (79),Universities / Colleges,Educational,SPECIALIZED,SIRRUS,OT,24,WHIBLK,1500.0,STOLEN,15963,"{'type': 'Point', 'coordinates': (-79.39343719, 43.66303628)}"
-15998,8560,GO-20142640512,THEFT UNDER,2014-07-30T00:00:00,2014,July,Wednesday,30,211,7,2014-08-05T00:00:00,2014,August,Tuesday,5,217,13,D52,Toronto,79,University (79),Universities / Colleges,Educational,SCHWINN,GRANDE 6.1,MT,21,ONG,600.0,STOLEN,15964,"{'type': 'Point', 'coordinates': (-79.40137171, 43.66130203)}"
-15999,8642,GO-20149005838,THEFT UNDER,2014-07-17T00:00:00,2014,July,Thursday,17,198,20,2014-08-11T00:00:00,2014,August,Monday,11,223,16,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,JAMIS X1 TRAIL,MT,21,GRY,500.0,STOLEN,15965,"{'type': 'Point', 'coordinates': (-79.40768329, 43.65648148)}"
-16000,8683,GO-20142746435,THEFT UNDER,2014-08-20T00:00:00,2014,August,Wednesday,20,232,16,2014-08-21T00:00:00,2014,August,Thursday,21,233,13,D52,Toronto,79,University (79),Universities / Colleges,Educational,RALEIGH,UNKNOWN,OT,1,BLU,500.0,STOLEN,15966,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-16001,8744,GO-20149006213,THEFT UNDER,2014-08-14T00:00:00,2014,August,Thursday,14,226,8,2014-08-22T00:00:00,2014,August,Friday,22,234,17,D14,Toronto,79,University (79),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,GI,ESCAPE CITY,OT,10,BLK,580.0,STOLEN,15967,"{'type': 'Point', 'coordinates': (-79.40316102, 43.65738236)}"
-16002,8788,GO-20149006492,THEFT UNDER,2014-08-26T00:00:00,2014,August,Tuesday,26,238,17,2014-09-02T00:00:00,2014,September,Tuesday,2,245,12,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,MODENA 2014,MT,21,BLK,370.0,STOLEN,15968,"{'type': 'Point', 'coordinates': (-79.40447971, 43.66652336)}"
-16003,8815,GO-20149006571,THEFT UNDER,2014-09-02T00:00:00,2014,September,Tuesday,2,245,9,2014-09-04T00:00:00,2014,September,Thursday,4,247,19,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,,RG,15,GRY,100.0,STOLEN,15969,"{'type': 'Point', 'coordinates': (-79.40583441, 43.65867014)}"
-16004,8846,GO-20142887284,THEFT UNDER,2014-09-09T00:00:00,2014,September,Tuesday,9,252,10,2014-09-11T00:00:00,2014,September,Thursday,11,254,8,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,UNKNOWN,OT,6,BLKYEL,250.0,STOLEN,15970,"{'type': 'Point', 'coordinates': (-79.39488188, 43.66100963)}"
-16005,8896,GO-20142921276,THEFT UNDER,2014-09-14T00:00:00,2014,September,Sunday,14,257,9,2014-09-16T00:00:00,2014,September,Tuesday,16,259,13,D52,Toronto,79,University (79),Universities / Colleges,Educational,KONA,KAHUNA,OT,1,GRN,850.0,STOLEN,15971,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-16006,8929,GO-20142937419,THEFT UNDER,2014-09-18T00:00:00,2014,September,Thursday,18,261,18,2014-09-18T00:00:00,2014,September,Thursday,18,261,20,D14,Toronto,79,University (79),Schools During Supervised Activity,Educational,JAMIS,NEMESIS,MT,24,WHI,900.0,STOLEN,15972,"{'type': 'Point', 'coordinates': (-79.41021074, 43.66266863)}"
-16007,8963,GO-20149007171,THEFT UNDER,2014-09-24T00:00:00,2014,September,Wednesday,24,267,9,2014-09-24T00:00:00,2014,September,Wednesday,24,267,16,D14,Toronto,79,University (79),Schools During Supervised Activity,Educational,TR,"24"""" GIRLS BIKE",TO,3,TAN,399.0,STOLEN,15973,"{'type': 'Point', 'coordinates': (-79.40713565, 43.65840411)}"
-16008,8976,GO-20142972035,THEFT UNDER,2014-09-08T00:00:00,2014,September,Monday,8,251,17,2014-09-24T00:00:00,2014,September,Wednesday,24,267,8,D14,Toronto,79,University (79),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,OT,10,BLU,,STOLEN,15974,"{'type': 'Point', 'coordinates': (-79.40599871, 43.66226023)}"
-16009,9029,GO-20143065058,THEFT UNDER,2014-10-01T00:00:00,2014,October,Wednesday,1,274,9,2014-10-08T00:00:00,2014,October,Wednesday,8,281,9,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,UNKNOWN,OT,1,BLKRED,120.0,STOLEN,15975,"{'type': 'Point', 'coordinates': (-79.39968364, 43.66258094)}"
-16010,9064,GO-20143108902,THEFT UNDER,2014-10-11T00:00:00,2014,October,Saturday,11,284,0,2014-10-15T00:00:00,2014,October,Wednesday,15,288,14,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,AGGRESSOR 3.0,MT,1,BLK,360.0,STOLEN,15977,"{'type': 'Point', 'coordinates': (-79.39488188, 43.66100963)}"
-16011,9074,GO-20143116096,THEFT UNDER,2014-10-16T00:00:00,2014,October,Thursday,16,289,9,2014-10-16T00:00:00,2014,October,Thursday,16,289,16,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,,MT,27,REDBLK,1000.0,STOLEN,15978,"{'type': 'Point', 'coordinates': (-79.39676402, 43.66012322)}"
-16012,9076,GO-20149007622,THEFT UNDER,2014-10-15T00:00:00,2014,October,Wednesday,15,288,20,2014-10-16T00:00:00,2014,October,Thursday,16,289,10,D52,Toronto,79,University (79),Universities / Colleges,Educational,OT,CROSSTRAIL SPOR,MT,21,BLK,800.0,STOLEN,15979,"{'type': 'Point', 'coordinates': (-79.40207036, 43.66305191)}"
-16013,9087,GO-20149007720,THEFT UNDER,2014-10-19T00:00:00,2014,October,Sunday,19,292,13,2014-10-21T00:00:00,2014,October,Tuesday,21,294,12,D52,Toronto,79,University (79),Universities / Colleges,Educational,OT,FIDELIO,RC,28,RED,1000.0,STOLEN,15980,"{'type': 'Point', 'coordinates': (-79.39689839, 43.6604462)}"
-16014,9088,GO-20143142120,THEFT UNDER,2014-10-20T00:00:00,2014,October,Monday,20,293,14,2014-10-21T00:00:00,2014,October,Tuesday,21,294,15,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SE DRAFT,SINGLE SPEED,OT,1,PLE,350.0,STOLEN,15981,"{'type': 'Point', 'coordinates': (-79.40768329, 43.65648148)}"
-16015,9127,GO-20143197862,THEFT UNDER,2014-10-19T00:00:00,2014,October,Sunday,19,292,18,2014-10-20T00:00:00,2014,October,Monday,20,293,9,D52,Toronto,79,University (79),Universities / Colleges,Educational,TREK,3700,MT,21,BLKBLU,,STOLEN,15982,"{'type': 'Point', 'coordinates': (-79.40170888, 43.66215594)}"
-16016,9345,GO-2015491194,THEFT UNDER,2015-03-21T00:00:00,2015,March,Saturday,21,80,16,2015-03-24T00:00:00,2015,March,Tuesday,24,83,7,D52,Toronto,79,University (79),Universities / Colleges,Educational,TREK,,MT,1,BLK,400.0,STOLEN,15983,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-16017,9364,GO-2015554250,THEFT UNDER,2015-04-03T00:00:00,2015,April,Friday,3,93,15,2015-04-03T00:00:00,2015,April,Friday,3,93,18,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,OTHER,"ATALA""""",RC,6,ONG,,STOLEN,15984,"{'type': 'Point', 'coordinates': (-79.40137171, 43.66130203)}"
-16018,9387,GO-2015591983,THEFT UNDER,2015-04-10T00:00:00,2015,April,Friday,10,100,3,2015-04-10T00:00:00,2015,April,Friday,10,100,12,D14,Toronto,79,University (79),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EVERYDAY,TRINITY,RG,7,BLU,340.0,STOLEN,15985,"{'type': 'Point', 'coordinates': (-79.40237577, 43.66385178)}"
-16019,9431,GO-20159002047,THEFT UNDER,2014-10-01T00:00:00,2014,October,Wednesday,1,274,12,2015-04-19T00:00:00,2015,April,Sunday,19,109,10,D52,Toronto,79,University (79),Universities / Colleges,Educational,GI,BOULDER SE,MT,18,BLU,500.0,STOLEN,15986,"{'type': 'Point', 'coordinates': (-79.39979751, 43.66751644)}"
-16020,9439,GO-2015651387,THEFT UNDER,2015-04-14T00:00:00,2015,April,Tuesday,14,104,9,2015-04-20T00:00:00,2015,April,Monday,20,110,7,D52,Toronto,79,University (79),Universities / Colleges,Educational,TREK,,OT,21,BLK,200.0,STOLEN,15987,"{'type': 'Point', 'coordinates': (-79.40207036, 43.66305191)}"
-16021,9459,GO-20159002160,THEFT UNDER,2015-04-22T00:00:00,2015,April,Wednesday,22,112,10,2015-04-22T00:00:00,2015,April,Wednesday,22,112,13,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,FX 7.2,RG,24,BLK,850.0,STOLEN,15988,"{'type': 'Point', 'coordinates': (-79.39410211, 43.66871992)}"
-16022,9532,GO-20159002487,THEFT UNDER,2015-05-06T00:00:00,2015,May,Wednesday,6,126,7,2015-05-06T00:00:00,2015,May,Wednesday,6,126,9,D52,Toronto,79,University (79),Universities / Colleges,Educational,OT,VENTURA FEMME,RC,16,PLE,600.0,STOLEN,15989,"{'type': 'Point', 'coordinates': (-79.40207036, 43.66305191)}"
-16023,9587,GO-20159002748,THEFT UNDER,2015-05-13T00:00:00,2015,May,Wednesday,13,133,18,2015-05-15T00:00:00,2015,May,Friday,15,135,16,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,,RG,18,GRY,,STOLEN,15990,"{'type': 'Point', 'coordinates': (-79.40244418000002, 43.65929925)}"
-16024,9630,GO-20159002999,THEFT UNDER,2015-05-21T00:00:00,2015,May,Thursday,21,141,18,2015-05-21T00:00:00,2015,May,Thursday,21,141,19,D52,Toronto,79,University (79),Universities / Colleges,Educational,CC,700C XSPORT,RG,21,WHI,500.0,STOLEN,15991,"{'type': 'Point', 'coordinates': (-79.3934451, 43.65919971)}"
-16025,9676,GO-20159003162,THEFT UNDER,2015-05-26T00:00:00,2015,May,Tuesday,26,146,16,2015-05-28T00:00:00,2015,May,Thursday,28,148,16,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,RG,1,WHI,270.0,STOLEN,15992,"{'type': 'Point', 'coordinates': (-79.40244418000002, 43.65929925)}"
-16026,9697,GO-2015918357,B&E W'INTENT,2015-06-01T00:00:00,2015,June,Monday,1,152,8,2015-06-01T00:00:00,2015,June,Monday,1,152,21,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,1,,,STOLEN,15993,"{'type': 'Point', 'coordinates': (-79.40445971, 43.66428104)}"
-16027,9718,GO-20159003306,THEFT UNDER,2015-06-02T00:00:00,2015,June,Tuesday,2,153,16,2015-06-03T00:00:00,2015,June,Wednesday,3,154,15,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,SC,NETWORK 2.0,OT,7,DBL,399.0,STOLEN,15995,"{'type': 'Point', 'coordinates': (-79.40382824, 43.66269877)}"
-16028,9747,GO-20159003410,THEFT UNDER,2015-06-05T00:00:00,2015,June,Friday,5,156,14,2015-06-07T00:00:00,2015,June,Sunday,7,158,20,D14,Toronto,79,University (79),"Open Areas (Lakes, Parks, Rivers)",Outside,NO,INDIE 2,OT,27,,900.0,STOLEN,15996,"{'type': 'Point', 'coordinates': (-79.40743417, 43.66591416)}"
-16029,9750,GO-2015960053,THEFT UNDER,2015-06-05T00:00:00,2015,June,Friday,5,156,15,2015-06-08T00:00:00,2015,June,Monday,8,159,14,D52,Toronto,79,University (79),Universities / Colleges,Educational,GIANT,ALIGHT,OT,0,BLKBLU,630.0,STOLEN,15997,"{'type': 'Point', 'coordinates': (-79.39901086, 43.66089417)}"
-16030,15363,GO-20149007048,THEFT UNDER,2014-09-19T00:00:00,2014,September,Friday,19,262,11,2014-09-20T00:00:00,2014,September,Saturday,20,263,14,D14,Toronto,79,University (79),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,JC06,TO,7,,400.0,STOLEN,15998,"{'type': 'Point', 'coordinates': (-79.40768329, 43.65648148)}"
-16031,15375,GO-20149007692,THEFT UNDER,2014-10-18T00:00:00,2014,October,Saturday,18,291,5,2014-10-20T00:00:00,2014,October,Monday,20,293,3,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,ORION 700C. 606,OT,21,WHI,300.0,STOLEN,15999,"{'type': 'Point', 'coordinates': (-79.40382824, 43.66269877)}"
-16032,15391,GO-20159001467,THEFT UNDER,2015-03-20T00:00:00,2015,March,Friday,20,79,22,2015-03-22T00:00:00,2015,March,Sunday,22,81,17,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,NO,,OT,21,PLE,450.0,STOLEN,16000,"{'type': 'Point', 'coordinates': (-79.40713565, 43.65840411)}"
-16033,15398,GO-20159003161,THEFT UNDER,2015-05-27T00:00:00,2015,May,Wednesday,27,147,12,2015-05-28T00:00:00,2015,May,Thursday,28,148,13,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,FJ,WBD237L160TK,RG,1,GRY,550.0,STOLEN,16001,"{'type': 'Point', 'coordinates': (-79.40307045, 43.6655101)}"
-16034,15412,GO-20151070345,THEFT UNDER,2015-06-25T00:00:00,2015,June,Thursday,25,176,13,2015-06-25T00:00:00,2015,June,Thursday,25,176,13,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,MT,99,,,STOLEN,16002,"{'type': 'Point', 'coordinates': (-79.40599871, 43.66226023)}"
-16035,15425,GO-20159004664,THEFT UNDER,2015-07-05T00:00:00,2015,July,Sunday,5,186,2,2015-07-17T00:00:00,2015,July,Friday,17,198,12,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,TRACK CLASSIC,RC,1,BLK,600.0,STOLEN,16003,"{'type': 'Point', 'coordinates': (-79.40648042, 43.65672138)}"
-16036,15438,GO-20159005347,THEFT UNDER,2015-08-03T00:00:00,2015,August,Monday,3,215,0,2015-08-04T00:00:00,2015,August,Tuesday,4,216,9,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BI,,RC,18,,2500.0,STOLEN,16004,"{'type': 'Point', 'coordinates': (-79.40583441, 43.65867014)}"
-16037,15439,GO-20159005347,THEFT UNDER,2015-08-03T00:00:00,2015,August,Monday,3,215,0,2015-08-04T00:00:00,2015,August,Tuesday,4,216,9,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,12,,1000.0,STOLEN,16005,"{'type': 'Point', 'coordinates': (-79.40583441, 43.65867014)}"
-16038,15440,GO-20159005347,THEFT UNDER,2015-08-03T00:00:00,2015,August,Monday,3,215,0,2015-08-04T00:00:00,2015,August,Tuesday,4,216,9,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BI,,RG,12,,700.0,RECOVERED,16006,"{'type': 'Point', 'coordinates': (-79.40583441, 43.65867014)}"
-16039,15450,GO-20159007166,THEFT UNDER,2015-09-11T00:00:00,2015,September,Friday,11,254,23,2015-09-14T00:00:00,2015,September,Monday,14,257,16,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE 2,RG,12,BLK,500.0,STOLEN,16007,"{'type': 'Point', 'coordinates': (-79.40237577, 43.66385178)}"
-16040,15463,GO-20151903804,THEFT UNDER - BICYCLE,2015-11-06T00:00:00,2015,November,Friday,6,310,22,2015-11-06T00:00:00,2015,November,Friday,6,310,22,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,MTX 225,MT,21,DBL,300.0,STOLEN,16008,"{'type': 'Point', 'coordinates': (-79.40478414, 43.66249403)}"
-16041,15477,GO-20152135166,PROPERTY - FOUND,2015-12-13T00:00:00,2015,December,Sunday,13,347,11,2015-12-13T00:00:00,2015,December,Sunday,13,347,12,D14,Toronto,79,University (79),Bar / Restaurant,Commercial,OTHER,,EL,0,BLK,1000.0,UNKNOWN,16009,"{'type': 'Point', 'coordinates': (-79.40198436, 43.65811126)}"
-16042,15478,GO-20169000116,THEFT UNDER,2016-01-02T00:00:00,2016,January,Saturday,2,2,19,2016-01-04T00:00:00,2016,January,Monday,4,4,14,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,DISTRICT,RG,1,BLK,790.0,STOLEN,16010,"{'type': 'Point', 'coordinates': (-79.40307045, 43.6655101)}"
-16043,15509,GO-2016977151,THEFT OF EBIKE UNDER $5000,2016-06-05T00:00:00,2016,June,Sunday,5,157,14,2016-06-05T00:00:00,2016,June,Sunday,5,157,16,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,VOLT,EL,0,BLKSIL,,STOLEN,16012,"{'type': 'Point', 'coordinates': (-79.4000091, 43.65794797)}"
-16044,15581,GO-20179001477,THEFT UNDER - BICYCLE,2017-02-01T00:00:00,2017,February,Wednesday,1,32,14,2017-02-02T00:00:00,2017,February,Thursday,2,33,18,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,PRIORITY ONE,RG,3,DBL,500.0,STOLEN,16013,"{'type': 'Point', 'coordinates': (-79.40447971, 43.66652336)}"
-16045,21217,GO-20179015814,THEFT UNDER - BICYCLE,2017-09-26T00:00:00,2017,September,Tuesday,26,269,11,2017-09-26T00:00:00,2017,September,Tuesday,26,269,12,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,OT,SPECIALE CX 65,TO,18,,600.0,STOLEN,16014,"{'type': 'Point', 'coordinates': (-79.41093754, 43.66126456)}"
-16046,15612,GO-2017996129,POSSESSION PROPERTY OBC UNDER,2017-06-05T00:00:00,2017,June,Monday,5,156,9,2017-06-05T00:00:00,2017,June,Monday,5,156,12,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,VIDA DISC,RG,24,BLKGRN,,RECOVERED,16015,"{'type': 'Point', 'coordinates': (-79.40447971, 43.66652336)}"
-16047,15682,GO-20191635077,THEFT UNDER,2019-08-14T00:00:00,2019,August,Wednesday,14,226,18,2019-08-27T00:00:00,2019,August,Tuesday,27,239,12,D52,Toronto,79,University (79),Universities / Colleges,Educational,TREK,,RG,0,SILWHI,600.0,STOLEN,16016,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-16048,15698,GO-20191756648,THEFT UNDER,2019-08-28T00:00:00,2019,August,Wednesday,28,240,19,2019-09-13T00:00:00,2019,September,Friday,13,256,9,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,,MT,24,BLKWHI,350.0,STOLEN,16017,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-16049,15744,GO-20209008953,THEFT UNDER,2020-03-14T00:00:00,2020,March,Saturday,14,74,13,2020-03-14T00:00:00,2020,March,Saturday,14,74,18,D52,Toronto,79,University (79),Universities / Colleges,Educational,OT,,OT,10,BLU,1500.0,STOLEN,16018,"{'type': 'Point', 'coordinates': (-79.40207036, 43.66305191)}"
-16050,15773,GO-20201067623,THEFT UNDER - BICYCLE,2020-06-05T00:00:00,2020,June,Friday,5,157,20,2020-06-10T00:00:00,2020,June,Wednesday,10,162,12,D52,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,GEAX,BARRO,MT,12,,3000.0,STOLEN,16019,"{'type': 'Point', 'coordinates': (-79.40149998, 43.66716143)}"
-16051,15830,GO-20209023776,THEFT UNDER,2020-09-18T00:00:00,2020,September,Friday,18,262,10,2020-09-18T00:00:00,2020,September,Friday,18,262,15,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,PASEO,RG,21,MRN,0.0,STOLEN,16020,"{'type': 'Point', 'coordinates': (-79.39348694, 43.66726478)}"
-16052,16126,GO-2017764397,THEFT UNDER - BICYCLE,2017-04-11T00:00:00,2017,April,Tuesday,11,101,17,2017-05-01T00:00:00,2017,May,Monday,1,121,11,D52,Toronto,79,University (79),Universities / Colleges,Educational,GIANT,,MT,0,BLKWHI,2200.0,STOLEN,16021,"{'type': 'Point', 'coordinates': (-79.40207036, 43.66305191)}"
-16053,16132,GO-2017946899,THEFT UNDER - BICYCLE,2017-05-13T00:00:00,2017,May,Saturday,13,133,7,2017-05-29T00:00:00,2017,May,Monday,29,149,9,D52,Toronto,79,University (79),Universities / Colleges,Educational,FUJI,LEAGUE,OT,0,BLKSIL,300.0,STOLEN,16022,"{'type': 'Point', 'coordinates': (-79.39832557, 43.66783119)}"
-16054,16141,GO-20171065123,THEFT UNDER - BICYCLE,2017-06-06T00:00:00,2017,June,Tuesday,6,157,18,2017-06-15T00:00:00,2017,June,Thursday,15,166,10,D52,Toronto,79,University (79),Universities / Colleges,Educational,GIANT,,OT,0,GRY,820.0,STOLEN,16023,"{'type': 'Point', 'coordinates': (-79.39676402, 43.66012322)}"
-16055,16160,GO-20179010531,THEFT UNDER - BICYCLE,2017-07-18T00:00:00,2017,July,Tuesday,18,199,10,2017-07-18T00:00:00,2017,July,Tuesday,18,199,19,D52,Toronto,79,University (79),Universities / Colleges,Educational,CA,CANNONDALE,TO,18,WHI,1000.0,STOLEN,16024,"{'type': 'Point', 'coordinates': (-79.40266823, 43.66690503)}"
-16056,16171,GO-20171485680,THEFT UNDER - BICYCLE,2017-08-05T00:00:00,2017,August,Saturday,5,217,12,2017-08-17T00:00:00,2017,August,Thursday,17,229,11,D52,Toronto,79,University (79),Universities / Colleges,Educational,ROCKY MOUNTAIN,,MT,0,BLU,570.0,STOLEN,16025,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-16057,16179,GO-20179014530,THEFT UNDER,2017-09-11T00:00:00,2017,September,Monday,11,254,21,2017-09-12T00:00:00,2017,September,Tuesday,12,255,9,D52,Toronto,79,University (79),Universities / Colleges,Educational,TR,3500,MT,7,BLK,500.0,STOLEN,16026,"{'type': 'Point', 'coordinates': (-79.40137171, 43.66130203)}"
-16058,16194,GO-20179016828,THEFT UNDER - BICYCLE,2017-10-09T00:00:00,2017,October,Monday,9,282,10,2017-10-10T00:00:00,2017,October,Tuesday,10,283,8,D52,Toronto,79,University (79),Universities / Colleges,Educational,TR,FX1,RG,21,BLK,800.0,STOLEN,16027,"{'type': 'Point', 'coordinates': (-79.39901086, 43.66089417)}"
-16059,16196,GO-20171854724,THEFT UNDER - BICYCLE,2017-09-12T00:00:00,2017,September,Tuesday,12,255,13,2017-10-13T00:00:00,2017,October,Friday,13,286,10,D52,Toronto,79,University (79),Universities / Colleges,Educational,RALEIGH,PORT TOWNSEND,RC,0,BLK,800.0,STOLEN,16028,"{'type': 'Point', 'coordinates': (-79.40170888, 43.66215594)}"
-16060,16205,GO-20171963554,THEFT UNDER - BICYCLE,2017-09-20T00:00:00,2017,September,Wednesday,20,263,18,2017-10-30T00:00:00,2017,October,Monday,30,303,10,D52,Toronto,79,University (79),Universities / Colleges,Educational,NORCO,,RG,0,SIL,600.0,STOLEN,16029,"{'type': 'Point', 'coordinates': (-79.39894426, 43.66543776)}"
-16061,16208,GO-20171982985,THEFT UNDER - BICYCLE,2017-09-22T00:00:00,2017,September,Friday,22,265,16,2017-11-02T00:00:00,2017,November,Thursday,2,306,8,D52,Toronto,79,University (79),Universities / Colleges,Educational,ACID CUBE,,MT,0,,3500.0,STOLEN,16030,"{'type': 'Point', 'coordinates': (-79.39112492, 43.66060888)}"
-16062,16218,GO-2018147598,THEFT UNDER - BICYCLE,2018-01-14T00:00:00,2018,January,Sunday,14,14,14,2018-01-24T00:00:00,2018,January,Wednesday,24,24,8,D52,Toronto,79,University (79),Universities / Colleges,Educational,GIANT,ESCAPE,OT,0,,520.0,STOLEN,16031,"{'type': 'Point', 'coordinates': (-79.39934598, 43.66172465)}"
-16063,16222,GO-2018328336,B&E,2018-02-18T00:00:00,2018,February,Sunday,18,49,2,2018-02-21T00:00:00,2018,February,Wednesday,21,52,9,D52,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,OT,0,BLK,300.0,STOLEN,16032,"{'type': 'Point', 'coordinates': (-79.40149998, 43.66716143)}"
-16064,7834,GO-20141888591,THEFT UNDER,2014-04-13T00:00:00,2014,April,Sunday,13,103,17,2014-04-14T00:00:00,2014,April,Monday,14,104,11,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FUJI,CLASSIC,RG,1,BLKYEL,600.0,STOLEN,16033,"{'type': 'Point', 'coordinates': (-79.41979948, 43.64692616)}"
-16065,16223,GO-2018328336,B&E,2018-02-18T00:00:00,2018,February,Sunday,18,49,2,2018-02-21T00:00:00,2018,February,Wednesday,21,52,9,D52,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,OT,0,GRN,1000.0,STOLEN,16034,"{'type': 'Point', 'coordinates': (-79.40149998, 43.66716143)}"
-16066,16242,GO-20181112456,THEFT UNDER - BICYCLE,2018-06-10T00:00:00,2018,June,Sunday,10,161,17,2018-06-19T00:00:00,2018,June,Tuesday,19,170,8,D52,Toronto,79,University (79),Universities / Colleges,Educational,TREK,,RG,0,BLK,830.0,STOLEN,16035,"{'type': 'Point', 'coordinates': (-79.40207036, 43.66305191)}"
-16067,16275,GO-20181455821,THEFT UNDER,2018-07-30T00:00:00,2018,July,Monday,30,211,16,2018-08-08T00:00:00,2018,August,Wednesday,8,220,11,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,,MT,24,WHI,0.0,STOLEN,16037,"{'type': 'Point', 'coordinates': (-79.40207036, 43.66305191)}"
-16068,16278,GO-20189026963,THEFT UNDER - BICYCLE,2018-06-09T00:00:00,2018,June,Saturday,9,160,12,2018-08-19T00:00:00,2018,August,Sunday,19,231,1,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,SPECIALIZED HAR,MT,24,BLK,300.0,STOLEN,16038,"{'type': 'Point', 'coordinates': (-79.39815878000002, 43.65826015)}"
-16069,16288,GO-20181682205,THEFT UNDER - BICYCLE,2018-09-07T00:00:00,2018,September,Friday,7,250,18,2018-09-07T00:00:00,2018,September,Friday,7,250,19,D52,Toronto,79,University (79),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SUPERCYCLE,,OT,7,BLKONG,200.0,STOLEN,16039,"{'type': 'Point', 'coordinates': (-79.40207036, 43.66305191)}"
-16070,16290,GO-20181735997,THEFT UNDER - BICYCLE,2018-09-14T00:00:00,2018,September,Friday,14,257,16,2018-09-14T00:00:00,2018,September,Friday,14,257,18,D52,Toronto,79,University (79),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SUPERCYCLE,,OT,0,GRYONG,75.0,STOLEN,16040,"{'type': 'Point', 'coordinates': (-79.40207036, 43.66305191)}"
-16071,16296,GO-20181781592,THEFT UNDER - BICYCLE,2018-09-24T00:00:00,2018,September,Monday,24,267,10,2018-09-24T00:00:00,2018,September,Monday,24,267,15,D52,Toronto,79,University (79),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,OT,0,,250.0,STOLEN,16041,"{'type': 'Point', 'coordinates': (-79.39676402, 43.66012322)}"
-16072,16301,GO-20181929260,THEFT UNDER - BICYCLE,2018-10-17T00:00:00,2018,October,Wednesday,17,290,17,2018-10-17T00:00:00,2018,October,Wednesday,17,290,18,D52,Toronto,79,University (79),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GIANT,,MT,0,,600.0,STOLEN,16042,"{'type': 'Point', 'coordinates': (-79.39901086, 43.66089417)}"
-16073,16302,GO-20189035254,THEFT UNDER - BICYCLE,2018-10-22T00:00:00,2018,October,Monday,22,295,18,2018-10-23T00:00:00,2018,October,Tuesday,23,296,16,D52,Toronto,79,University (79),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,TR,FX 2 WOMEN'S -,RG,24,BLK,700.0,STOLEN,16043,"{'type': 'Point', 'coordinates': (-79.39676402, 43.66012322)}"
-16074,16320,GO-2019975910,THEFT UNDER,2019-05-23T00:00:00,2019,May,Thursday,23,143,13,2019-05-28T00:00:00,2019,May,Tuesday,28,148,12,D52,Toronto,79,University (79),Universities / Colleges,Educational,NAKAMURA,ROYAL 300C,MT,0,BLK,,STOLEN,16044,"{'type': 'Point', 'coordinates': (-79.39894426, 43.66543776)}"
-16075,16336,GO-20191345115,THEFT UNDER,2019-06-17T00:00:00,2019,June,Monday,17,168,11,2019-07-18T00:00:00,2019,July,Thursday,18,199,8,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GHOST,,MT,0,BLKGRN,1338.0,STOLEN,16045,"{'type': 'Point', 'coordinates': (-79.39676402, 43.66012322)}"
-16076,16348,GO-20199024330,THEFT UNDER,2019-07-29T00:00:00,2019,July,Monday,29,210,17,2019-07-30T00:00:00,2019,July,Tuesday,30,211,0,D52,Toronto,79,University (79),Universities / Colleges,Educational,OT,2013,RC,9,BLU,1100.0,STOLEN,16046,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-16077,16389,GO-20199031901,THEFT UNDER,2019-09-24T00:00:00,2019,September,Tuesday,24,267,7,2019-09-28T00:00:00,2019,September,Saturday,28,271,14,D52,Toronto,79,University (79),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,RM,FLARE 29,MT,24,GRY,700.0,STOLEN,16047,"{'type': 'Point', 'coordinates': (-79.39815878000002, 43.65826015)}"
-16078,16395,GO-20191903314,THEFT UNDER,2019-09-21T00:00:00,2019,September,Saturday,21,264,22,2019-10-03T00:00:00,2019,October,Thursday,3,276,7,D52,Toronto,79,University (79),Universities / Colleges,Educational,EURO MINI–ZIZO,,OT,0,BLU,500.0,STOLEN,16048,"{'type': 'Point', 'coordinates': (-79.39894426, 43.66543776)}"
-16079,16399,GO-20192002066,THEFT UNDER,2019-10-03T00:00:00,2019,October,Thursday,3,276,17,2019-10-17T00:00:00,2019,October,Thursday,17,290,7,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,,MT,0,BLKSIL,100.0,STOLEN,16049,"{'type': 'Point', 'coordinates': (-79.39901086, 43.66089417)}"
-16080,14738,GO-20179018346,THEFT UNDER - BICYCLE,2017-10-20T00:00:00,2017,October,Friday,20,293,23,2017-10-27T00:00:00,2017,October,Friday,27,300,17,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,STEP THROUGH WO,OT,3,CRM,400.0,STOLEN,16050,"{'type': 'Point', 'coordinates': (-79.42502961000001, 43.65023965)}"
-16081,16410,GO-20192159327,THEFT UNDER,2019-11-03T00:00:00,2019,November,Sunday,3,307,18,2019-11-08T00:00:00,2019,November,Friday,8,312,11,D52,Toronto,79,University (79),Universities / Colleges,Educational,SUPERCYCLE,,RG,0,REDBLK,150.0,STOLEN,16051,"{'type': 'Point', 'coordinates': (-79.39676402, 43.66012322)}"
-16082,16416,GO-20199038553,THEFT UNDER,2019-11-23T00:00:00,2019,November,Saturday,23,327,8,2019-11-24T00:00:00,2019,November,Sunday,24,328,0,D52,Toronto,79,University (79),Universities / Colleges,Educational,UK,E FLASH SCOOTER,SC,25,BLK,800.0,STOLEN,16052,"{'type': 'Point', 'coordinates': (-79.40207036, 43.66305191)}"
-16083,16419,GO-20199039604,THEFT UNDER,2019-11-21T00:00:00,2019,November,Thursday,21,325,19,2019-12-03T00:00:00,2019,December,Tuesday,3,337,0,D52,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,GI,2019 ROAM 2 DIS,OT,9,GRY,904.0,STOLEN,16053,"{'type': 'Point', 'coordinates': (-79.39934598, 43.66172465)}"
-16084,16442,GO-2020524684,B&E,2020-02-22T00:00:00,2020,February,Saturday,22,53,1,2020-03-13T00:00:00,2020,March,Friday,13,73,9,D52,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,VITANO,,RC,14,BLK,500.0,STOLEN,16054,"{'type': 'Point', 'coordinates': (-79.40149998, 43.66716143)}"
-16085,16506,GO-20209021260,THEFT UNDER,2020-08-24T00:00:00,2020,August,Monday,24,237,15,2020-08-25T00:00:00,2020,August,Tuesday,25,238,12,D52,Toronto,79,University (79),Schools During Un-Supervised Activity,Educational,OT,CITATO,RG,10,YEL,1200.0,STOLEN,16055,"{'type': 'Point', 'coordinates': (-79.39832557, 43.66783119)}"
-16086,16530,GO-20149006930,THEFT UNDER,2014-09-15T00:00:00,2014,September,Monday,15,258,13,2014-09-15T00:00:00,2014,September,Monday,15,258,19,D52,Toronto,79,University (79),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,UK,,MT,12,GRN,1000.0,STOLEN,16056,"{'type': 'Point', 'coordinates': (-79.39466302000001, 43.6623757)}"
-16087,16533,GO-20142971674,THEFT UNDER,2014-09-17T00:00:00,2014,September,Wednesday,17,260,17,2014-09-24T00:00:00,2014,September,Wednesday,24,267,7,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,TRIUMPH,MT,1,GRN,30.0,STOLEN,16057,"{'type': 'Point', 'coordinates': (-79.40207036, 43.66305191)}"
-16088,16537,GO-20143034746,THEFT UNDER,2014-09-29T00:00:00,2014,September,Monday,29,272,11,2014-10-03T00:00:00,2014,October,Friday,3,276,13,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,UNKNOWN,BM,1,BLU,250.0,STOLEN,16058,"{'type': 'Point', 'coordinates': (-79.39901086, 43.66089417)}"
-16089,16538,GO-20143057816,THEFT UNDER,2014-10-04T00:00:00,2014,October,Saturday,4,277,15,2014-10-07T00:00:00,2014,October,Tuesday,7,280,7,D52,Toronto,79,University (79),Universities / Colleges,Educational,KONA,CINDERCONE,OT,1,DBLWHI,1200.0,STOLEN,16059,"{'type': 'Point', 'coordinates': (-79.39343719, 43.66303628)}"
-16090,16539,GO-20143065247,THEFT UNDER,2014-10-05T00:00:00,2014,October,Sunday,5,278,21,2014-10-08T00:00:00,2014,October,Wednesday,8,281,10,D52,Toronto,79,University (79),Universities / Colleges,Educational,SPECIALIZED,SECTEUR,OT,1,GRYBLK,700.0,STOLEN,16060,"{'type': 'Point', 'coordinates': (-79.39466302000001, 43.6623757)}"
-16091,16562,GO-2015715930,THEFT UNDER,2015-04-28T00:00:00,2015,April,Tuesday,28,118,8,2015-04-30T00:00:00,2015,April,Thursday,30,120,15,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,,MT,1,BLKRED,300.0,STOLEN,16061,"{'type': 'Point', 'coordinates': (-79.39676402, 43.66012322)}"
-16092,16571,GO-2015844912,AGGRAVATED ASLT PEACE OFFICER,2015-05-19T00:00:00,2015,May,Tuesday,19,139,13,2015-05-22T00:00:00,2015,May,Friday,22,142,13,D52,Toronto,79,University (79),Universities / Colleges,Educational,SPECIALIZED,SECTEUR,OT,0,WHIBLK,1600.0,STOLEN,16062,"{'type': 'Point', 'coordinates': (-79.39832557, 43.66783119)}"
-16093,16577,GO-20159003729,THEFT UNDER,2015-06-18T00:00:00,2015,June,Thursday,18,169,10,2015-06-18T00:00:00,2015,June,Thursday,18,169,14,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,KATO5(2015)LGE,MT,27,BLK,1243.0,STOLEN,16063,"{'type': 'Point', 'coordinates': (-79.39586324, 43.65870005)}"
-16094,16581,GO-20151167664,THEFT UNDER,2015-07-08T00:00:00,2015,July,Wednesday,8,189,16,2015-07-10T00:00:00,2015,July,Friday,10,191,16,D52,Toronto,79,University (79),Universities / Colleges,Educational,SPECIALIZED,,OT,0,BLKRED,700.0,STOLEN,16064,"{'type': 'Point', 'coordinates': (-79.39586324, 43.65870005)}"
-16095,16599,GO-20151683067,THEFT UNDER,2015-09-25T00:00:00,2015,September,Friday,25,268,17,2015-09-29T00:00:00,2015,September,Tuesday,29,272,15,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,,MT,0,BLK,400.0,STOLEN,16065,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-16096,16606,GO-20151741394,THEFT UNDER,2015-10-06T00:00:00,2015,October,Tuesday,6,279,16,2015-10-09T00:00:00,2015,October,Friday,9,282,7,D52,Toronto,79,University (79),Universities / Colleges,Educational,SPECIALIZED,,MT,0,BLK,575.0,STOLEN,16066,"{'type': 'Point', 'coordinates': (-79.39699693, 43.65848407)}"
-16097,16610,GO-20151810997,THEFT UNDER,2015-10-16T00:00:00,2015,October,Friday,16,289,21,2015-10-21T00:00:00,2015,October,Wednesday,21,294,9,D52,Toronto,79,University (79),Universities / Colleges,Educational,CANNONDALE,,OT,12,BLK,2500.0,STOLEN,16067,"{'type': 'Point', 'coordinates': (-79.39968364, 43.66258094)}"
-16098,16620,GO-201678965,THEFT UNDER,2016-01-11T00:00:00,2016,January,Monday,11,11,11,2016-01-14T00:00:00,2016,January,Thursday,14,14,7,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,,RC,0,,200.0,STOLEN,16068,"{'type': 'Point', 'coordinates': (-79.39570335, 43.66468636)}"
-16099,16629,GO-2016545174,THEFT UNDER,2016-03-22T00:00:00,2016,March,Tuesday,22,82,17,2016-03-31T00:00:00,2016,March,Thursday,31,91,12,D52,Toronto,79,University (79),Universities / Colleges,Educational,NOVARA,,OT,0,DGR,1200.0,STOLEN,16069,"{'type': 'Point', 'coordinates': (-79.39343719, 43.66303628)}"
-16100,16648,GO-20161049401,THEFT UNDER - BICYCLE,2016-06-13T00:00:00,2016,June,Monday,13,165,21,2016-06-16T00:00:00,2016,June,Thursday,16,168,13,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,,OT,0,BLK,50.0,STOLEN,16070,"{'type': 'Point', 'coordinates': (-79.40170888, 43.66215594)}"
-16101,16652,GO-20161074463,THEFT UNDER - BICYCLE,2016-06-16T00:00:00,2016,June,Thursday,16,168,12,2016-06-20T00:00:00,2016,June,Monday,20,172,8,D52,Toronto,79,University (79),Universities / Colleges,Educational,TREK,,OT,24,BLURED,550.0,STOLEN,16071,"{'type': 'Point', 'coordinates': (-79.39968364, 43.66258094)}"
-16102,16659,GO-20161166822,THEFT UNDER - BICYCLE,2016-06-20T00:00:00,2016,June,Monday,20,172,14,2016-07-04T00:00:00,2016,July,Monday,4,186,9,D52,Toronto,79,University (79),Universities / Colleges,Educational,TREK,,OT,0,BLUWHI,1100.0,STOLEN,16072,"{'type': 'Point', 'coordinates': (-79.39466302000001, 43.6623757)}"
-16103,16665,GO-20169007405,THEFT UNDER,2016-07-19T00:00:00,2016,July,Tuesday,19,201,11,2016-07-19T00:00:00,2016,July,Tuesday,19,201,11,D52,Toronto,79,University (79),Universities / Colleges,Educational,TR,1.2,RC,20,WHI,1000.0,STOLEN,16073,"{'type': 'Point', 'coordinates': (-79.39832557, 43.66783119)}"
-16104,16674,GO-20161443369,THEFT UNDER - BICYCLE,2016-07-21T00:00:00,2016,July,Thursday,21,203,8,2016-08-15T00:00:00,2016,August,Monday,15,228,18,D52,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,SUPERCYCLE,,MT,0,BLUWHI,120.0,STOLEN,16074,"{'type': 'Point', 'coordinates': (-79.40149998, 43.66716143)}"
-16105,16681,GO-20161603509,THEFT UNDER - BICYCLE,2016-09-06T00:00:00,2016,September,Tuesday,6,250,10,2016-09-09T00:00:00,2016,September,Friday,9,253,16,D52,Toronto,79,University (79),Universities / Colleges,Educational,SPECIALIZED,ROCK HOPPER,OT,24,BLU,250.0,STOLEN,16075,"{'type': 'Point', 'coordinates': (-79.39901086, 43.66089417)}"
-16106,16684,GO-20161626016,THEFT UNDER - BICYCLE,2016-09-06T00:00:00,2016,September,Tuesday,6,250,17,2016-09-13T00:00:00,2016,September,Tuesday,13,257,7,D52,Toronto,79,University (79),Universities / Colleges,Educational,TREK,VERVE,OT,21,BLK,400.0,STOLEN,16076,"{'type': 'Point', 'coordinates': (-79.39699693, 43.65848407)}"
-16107,16693,GO-20161742456,THEFT OF EBIKE UNDER $5000,2016-09-30T00:00:00,2016,September,Friday,30,274,17,2016-10-01T00:00:00,2016,October,Saturday,1,275,0,D52,Toronto,79,University (79),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,EL,1,BLK,2100.0,STOLEN,16077,"{'type': 'Point', 'coordinates': (-79.40137171, 43.66130203)}"
-16108,16698,GO-20161780010,THEFT UNDER - BICYCLE,2016-10-03T00:00:00,2016,October,Monday,3,277,14,2016-10-06T00:00:00,2016,October,Thursday,6,280,18,D52,Toronto,79,University (79),Universities / Colleges,Educational,VICE,,OT,0,BLKGRN,170.0,STOLEN,16078,"{'type': 'Point', 'coordinates': (-79.39112492, 43.66060888)}"
-16109,16703,GO-20161980437,THEFT UNDER - BICYCLE,2016-10-26T00:00:00,2016,October,Wednesday,26,300,16,2016-11-07T00:00:00,2016,November,Monday,7,312,13,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,,OT,0,,,STOLEN,16079,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-16110,16705,GO-20161998265,THEFT UNDER - BICYCLE,2016-11-03T00:00:00,2016,November,Thursday,3,308,8,2016-11-10T00:00:00,2016,November,Thursday,10,315,8,D52,Toronto,79,University (79),Universities / Colleges,Educational,SUPERCYCLE,CLUTCH,OT,0,,190.0,STOLEN,16080,"{'type': 'Point', 'coordinates': (-79.40067317, 43.66506891)}"
-16111,16707,GO-20162112469,THEFT UNDER - BICYCLE,2016-11-22T00:00:00,2016,November,Tuesday,22,327,20,2016-11-28T00:00:00,2016,November,Monday,28,333,15,D52,Toronto,79,University (79),Universities / Colleges,Educational,SUPERCYCLE,,BM,0,GRY,220.0,STOLEN,16081,"{'type': 'Point', 'coordinates': (-79.39901086, 43.66089417)}"
-16112,16709,GO-20169014145,THEFT UNDER,2016-12-02T00:00:00,2016,December,Friday,2,337,11,2016-12-02T00:00:00,2016,December,Friday,2,337,16,D52,Toronto,79,University (79),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,GI,RAPID 1 2010,RG,11,WHI,600.0,STOLEN,16082,"{'type': 'Point', 'coordinates': (-79.39815878000002, 43.65826015)}"
-16113,16878,GO-20149003637,THEFT UNDER,2014-05-29T00:00:00,2014,May,Thursday,29,149,13,2014-05-29T00:00:00,2014,May,Thursday,29,149,16,D52,Toronto,79,University (79),Universities / Colleges,Educational,NO,NORCO VALENCE A,RC,10,BLU,800.0,STOLEN,16083,"{'type': 'Point', 'coordinates': (-79.39968364, 43.66258094)}"
-16114,16879,GO-20142206212,THEFT UNDER,2014-06-02T00:00:00,2014,June,Monday,2,153,9,2014-06-02T00:00:00,2014,June,Monday,2,153,17,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DEVINCI,FV3961411,MT,7,BLK,900.0,STOLEN,16084,"{'type': 'Point', 'coordinates': (-79.39348694, 43.66726478)}"
-16115,16882,GO-20149003897,THEFT UNDER,2014-06-08T00:00:00,2014,June,Sunday,8,159,15,2014-06-08T00:00:00,2014,June,Sunday,8,159,18,D52,Toronto,79,University (79),Universities / Colleges,Educational,CC,PRESTO,RC,21,TRQ,370.0,STOLEN,16085,"{'type': 'Point', 'coordinates': (-79.39894426, 43.66543776)}"
-16116,16884,GO-20142261263,THEFT UNDER,2014-05-26T00:00:00,2014,May,Monday,26,146,14,2014-06-10T00:00:00,2014,June,Tuesday,10,161,13,D52,Toronto,79,University (79),Universities / Colleges,Educational,RALEIGH,UNKNOWN,MT,10,BLK,300.0,STOLEN,16086,"{'type': 'Point', 'coordinates': (-79.39979751, 43.66751644)}"
-16117,16906,GO-20142608233,THEFT UNDER,2014-07-30T00:00:00,2014,July,Wednesday,30,211,13,2014-07-31T00:00:00,2014,July,Thursday,31,212,13,D52,Toronto,79,University (79),Universities / Colleges,Educational,SPECIALIZED,HARDROCK DISC,OT,1,BLKGRY,680.0,STOLEN,16087,"{'type': 'Point', 'coordinates': (-79.40207036, 43.66305191)}"
-16118,17339,GO-20201100614,THEFT UNDER - BICYCLE,2020-06-13T00:00:00,2020,June,Saturday,13,165,17,2020-06-17T00:00:00,2020,June,Wednesday,17,169,11,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,SUPERCYCLE,,MT,7,BLKBLU,1000.0,STOLEN,16088,"{'type': 'Point', 'coordinates': (-79.40307045, 43.6655101)}"
-16119,17379,GO-20209021478,THEFT UNDER,2020-08-26T00:00:00,2020,August,Wednesday,26,239,20,2020-08-27T00:00:00,2020,August,Thursday,27,240,8,D14,Toronto,79,University (79),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CC,,RG,7,WHI,700.0,STOLEN,16089,"{'type': 'Point', 'coordinates': (-79.40244418000002, 43.65929925)}"
-16120,17515,GO-20189032958,THEFT UNDER - BICYCLE,2018-10-04T00:00:00,2018,October,Thursday,4,277,6,2018-10-04T00:00:00,2018,October,Thursday,4,277,21,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,OT,CRUISER,OT,3,DGR,200.0,STOLEN,16090,"{'type': 'Point', 'coordinates': (-79.40307045, 43.6655101)}"
-16121,17518,GO-20189034007,THEFT UNDER - BICYCLE,2018-10-12T00:00:00,2018,October,Friday,12,285,15,2018-10-13T00:00:00,2018,October,Saturday,13,286,19,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,OT,FAMILY,TR,8,RED,4000.0,STOLEN,16091,"{'type': 'Point', 'coordinates': (-79.40237577, 43.66385178)}"
-16122,17520,GO-20189034319,THEFT UNDER - BICYCLE,2018-10-15T00:00:00,2018,October,Monday,15,288,18,2018-10-16T00:00:00,2018,October,Tuesday,16,289,17,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SA,SE TRIPEL WOMEN,RG,3,WHI,269.0,STOLEN,16092,"{'type': 'Point', 'coordinates': (-79.40278753, 43.65745805)}"
-16123,17525,GO-20189037616,THEFT UNDER - BICYCLE,2018-11-09T00:00:00,2018,November,Friday,9,313,18,2018-11-09T00:00:00,2018,November,Friday,9,313,20,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MA,,RG,21,GRY,800.0,STOLEN,16093,"{'type': 'Point', 'coordinates': (-79.40583441, 43.65867014)}"
-16124,17526,GO-20189037616,THEFT UNDER - BICYCLE,2018-11-09T00:00:00,2018,November,Friday,9,313,18,2018-11-09T00:00:00,2018,November,Friday,9,313,20,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,21,,800.0,STOLEN,16094,"{'type': 'Point', 'coordinates': (-79.40583441, 43.65867014)}"
-16125,17527,GO-20189037616,THEFT UNDER - BICYCLE,2018-11-09T00:00:00,2018,November,Friday,9,313,18,2018-11-09T00:00:00,2018,November,Friday,9,313,20,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,10,,500.0,STOLEN,16095,"{'type': 'Point', 'coordinates': (-79.40583441, 43.65867014)}"
-16126,17545,GO-20199008576,THEFT UNDER - BICYCLE,2019-03-17T00:00:00,2019,March,Sunday,17,76,11,2019-03-17T00:00:00,2019,March,Sunday,17,76,15,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,DECLARATION,RG,1,BLK,250.0,STOLEN,16096,"{'type': 'Point', 'coordinates': (-79.40768329, 43.65648148)}"
-16127,17637,GO-20191769918,THEFT OF EBIKE UNDER $5000,2019-09-14T00:00:00,2019,September,Saturday,14,257,22,2019-09-15T00:00:00,2019,September,Sunday,15,258,0,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,VOLT,YUKON 750,EL,7,BLK,2250.0,STOLEN,16097,"{'type': 'Point', 'coordinates': (-79.40244418000002, 43.65929925)}"
-16128,17669,GO-20199037427,THEFT UNDER,2019-11-14T00:00:00,2019,November,Thursday,14,318,6,2019-11-14T00:00:00,2019,November,Thursday,14,318,8,D14,Toronto,79,University (79),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RC,1,PLE,1000.0,STOLEN,16098,"{'type': 'Point', 'coordinates': (-79.40447971, 43.66652336)}"
-16129,17742,GO-20179016153,THEFT UNDER - BICYCLE,2017-09-30T00:00:00,2017,September,Saturday,30,273,10,2017-09-30T00:00:00,2017,September,Saturday,30,273,13,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SPORTSTER 30 S,OT,27,OTH,1000.0,STOLEN,16099,"{'type': 'Point', 'coordinates': (-79.40403711, 43.6572083)}"
-16130,17790,GO-20189003826,THEFT UNDER - BICYCLE,2018-02-03T00:00:00,2018,February,Saturday,3,34,14,2018-02-07T00:00:00,2018,February,Wednesday,7,38,15,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,KO,,RG,24,LBL,800.0,STOLEN,16100,"{'type': 'Point', 'coordinates': (-79.40411393, 43.66079116)}"
-16131,15319,GO-20142185570,THEFT UNDER,2014-05-30T00:00:00,2014,May,Friday,30,150,13,2014-05-30T00:00:00,2014,May,Friday,30,150,17,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SEEYES,TDR355Z,EL,0,GRN,750.0,STOLEN,16101,"{'type': 'Point', 'coordinates': (-79.42852157, 43.65896544000001)}"
-16132,1420,GO-20171682799,B&E,2017-09-16T00:00:00,2017,September,Saturday,16,259,14,2017-09-16T00:00:00,2017,September,Saturday,16,259,20,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,OTHER,,OT,18,BLK,700.0,STOLEN,16102,"{'type': 'Point', 'coordinates': (-79.41013414, 43.64759136)}"
-16133,1439,GO-20179015034,THEFT UNDER - BICYCLE,2017-09-16T00:00:00,2017,September,Saturday,16,259,17,2017-09-18T00:00:00,2017,September,Monday,18,261,9,D14,Toronto,81,Trinity-Bellwoods (81),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,FOLDABLE,FO,5,MRN,200.0,STOLEN,16103,"{'type': 'Point', 'coordinates': (-79.41142197, 43.65082905)}"
-16134,21219,GO-20179016501,THEFT UNDER,2017-10-04T00:00:00,2017,October,Wednesday,4,277,0,2017-10-05T00:00:00,2017,October,Thursday,5,278,11,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RE,,OT,1,GRY,400.0,STOLEN,16104,"{'type': 'Point', 'coordinates': (-79.41481904, 43.66434022)}"
-16135,1496,GO-20179015531,THEFT UNDER - BICYCLE,2017-09-23T00:00:00,2017,September,Saturday,23,266,7,2017-09-24T00:00:00,2017,September,Sunday,24,267,1,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,18,,2500.0,STOLEN,16105,"{'type': 'Point', 'coordinates': (-79.41728265, 43.64743681)}"
-16136,21230,GO-20179018714,THEFT UNDER - BICYCLE,2017-10-31T00:00:00,2017,October,Tuesday,31,304,10,2017-11-01T00:00:00,2017,November,Wednesday,1,305,20,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,CITY GLIDE,OT,8,MRN,700.0,STOLEN,16106,"{'type': 'Point', 'coordinates': (-79.41012202000002, 43.65597091)}"
-16137,1497,GO-20179015531,THEFT UNDER - BICYCLE,2017-09-23T00:00:00,2017,September,Saturday,23,266,7,2017-09-24T00:00:00,2017,September,Sunday,24,267,1,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,18,BLK,1200.0,STOLEN,16107,"{'type': 'Point', 'coordinates': (-79.41728265, 43.64743681)}"
-16138,21245,GO-20189002780,THEFT UNDER - BICYCLE,2018-01-27T00:00:00,2018,January,Saturday,27,27,17,2018-01-28T00:00:00,2018,January,Sunday,28,28,13,D14,Toronto,80,Palmerston-Little Italy (80),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RC,1,BGE,200.0,STOLEN,16108,"{'type': 'Point', 'coordinates': (-79.41524431, 43.65881487)}"
-16139,1538,GO-20171754657,B&E,2017-09-16T00:00:00,2017,September,Saturday,16,259,12,2017-09-27T00:00:00,2017,September,Wednesday,27,270,13,D14,Toronto,81,Trinity-Bellwoods (81),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CERVELO,S2,RC,22,REDBLK,2486.0,STOLEN,16109,"{'type': 'Point', 'coordinates': (-79.42231358, 43.65350355)}"
-16140,21246,GO-20189002980,THEFT UNDER - BICYCLE,2018-01-29T00:00:00,2018,January,Monday,29,29,22,2018-01-30T00:00:00,2018,January,Tuesday,30,30,0,D14,Toronto,80,Palmerston-Little Italy (80),Bar / Restaurant,Commercial,OT,DIVERGE ELITE,RC,25,BLK,1600.0,STOLEN,16110,"{'type': 'Point', 'coordinates': (-79.42562006, 43.66198485)}"
-16141,1539,GO-20171754657,B&E,2017-09-16T00:00:00,2017,September,Saturday,16,259,12,2017-09-27T00:00:00,2017,September,Wednesday,27,270,13,D14,Toronto,81,Trinity-Bellwoods (81),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CERVELO,S2,RC,22,REDBLK,2486.0,STOLEN,16111,"{'type': 'Point', 'coordinates': (-79.42231358, 43.65350355)}"
-16142,21260,GO-20189012423,THEFT UNDER,2018-04-20T00:00:00,2018,April,Friday,20,110,0,2018-04-22T00:00:00,2018,April,Sunday,22,112,10,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RM,ROCKY MOUNTAIN,MT,3,BLK,1200.0,STOLEN,16112,"{'type': 'Point', 'coordinates': (-79.41837695, 43.66358488)}"
-16143,15320,GO-20149003752,THEFT UNDER,2014-06-01T00:00:00,2014,June,Sunday,1,152,12,2014-06-02T00:00:00,2014,June,Monday,2,153,9,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SIRRUS COMP,RG,18,BLK,950.0,STOLEN,16113,"{'type': 'Point', 'coordinates': (-79.42439359, 43.66225003)}"
-16144,14768,GO-2018563701,THEFT UNDER - BICYCLE,2018-03-29T00:00:00,2018,March,Thursday,29,88,6,2018-03-29T00:00:00,2018,March,Thursday,29,88,6,D14,Toronto,81,Trinity-Bellwoods (81),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,7.5 FX,MT,24,GRY,250.0,RECOVERED,16114,"{'type': 'Point', 'coordinates': (-79.41012202000002, 43.65597091)}"
-16145,1554,GO-20171759754,THEFT UNDER - BICYCLE,2017-09-25T00:00:00,2017,September,Monday,25,268,6,2017-09-28T00:00:00,2017,September,Thursday,28,271,9,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,MT,1,GRN,500.0,STOLEN,16115,"{'type': 'Point', 'coordinates': (-79.406958, 43.65137878)}"
-16146,17345,GO-20209016470,THEFT UNDER,2020-06-29T00:00:00,2020,June,Monday,29,181,21,2020-06-29T00:00:00,2020,June,Monday,29,181,22,D14,Toronto,81,Trinity-Bellwoods (81),Bar / Restaurant,Commercial,DB,DIAMOND BACK MT,MT,8,SIL,3400.0,STOLEN,16312,"{'type': 'Point', 'coordinates': (-79.406958, 43.65137878)}"
-16147,21291,GO-20189018241,THEFT UNDER - BICYCLE,2018-05-31T00:00:00,2018,May,Thursday,31,151,23,2018-06-11T00:00:00,2018,June,Monday,11,162,14,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,SEDONA,MT,27,SIL,700.0,STOLEN,16116,"{'type': 'Point', 'coordinates': (-79.41672657, 43.66262133)}"
-16148,15325,GO-20149004463,THEFT UNDER,2014-06-25T00:00:00,2014,June,Wednesday,25,176,23,2014-06-26T00:00:00,2014,June,Thursday,26,177,10,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,12,WHI,0.0,STOLEN,16117,"{'type': 'Point', 'coordinates': (-79.42852157, 43.65896544000001)}"
-16149,7843,GO-20149002899,THEFT UNDER,2014-04-17T00:00:00,2014,April,Thursday,17,107,16,2014-04-17T00:00:00,2014,April,Thursday,17,107,19,D14,Toronto,81,Trinity-Bellwoods (81),Universities / Colleges,Educational,UK,,OT,1,BLK,600.0,STOLEN,16118,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-16150,7963,GO-20142127554,THEFT UNDER,2014-05-21T00:00:00,2014,May,Wednesday,21,141,8,2014-05-22T00:00:00,2014,May,Thursday,22,142,8,D14,Toronto,81,Trinity-Bellwoods (81),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,KONA,14 DEW PLUS 56C,OT,24,BRN,1000.0,STOLEN,16119,"{'type': 'Point', 'coordinates': (-79.40768329, 43.65648148)}"
-16151,1585,GO-20179016423,THEFT UNDER - BICYCLE,2017-10-03T00:00:00,2017,October,Tuesday,3,276,19,2017-10-04T00:00:00,2017,October,Wednesday,4,277,9,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RC,1,RED,1000.0,STOLEN,16120,"{'type': 'Point', 'coordinates': (-79.42366231, 43.65181447)}"
-16152,17796,GO-20189012029,THEFT UNDER,2018-04-17T00:00:00,2018,April,Tuesday,17,107,20,2018-04-18T00:00:00,2018,April,Wednesday,18,108,14,D14,Toronto,79,University (79),Bar / Restaurant,Commercial,RA,CADENT I8 2016,RG,8,BLK,1800.0,STOLEN,16121,"{'type': 'Point', 'coordinates': (-79.40599871, 43.66226023)}"
-16153,8152,GO-20149004136,THEFT UNDER,2014-06-16T00:00:00,2014,June,Monday,16,167,10,2014-06-17T00:00:00,2014,June,Tuesday,17,168,18,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,KARAKORAM,MT,25,BLU,820.0,STOLEN,16122,"{'type': 'Point', 'coordinates': (-79.42266495, 43.65440014)}"
-16154,15328,GO-20142409955,THEFT UNDER,2014-07-01T00:00:00,2014,July,Tuesday,1,182,19,2014-07-06T00:00:00,2014,July,Sunday,6,187,20,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CANNONDALE,QUICK 5,OT,24,PLE,629.0,STOLEN,16123,"{'type': 'Point', 'coordinates': (-79.41607423, 43.66406885)}"
-16155,1599,GO-20179016607,THEFT UNDER - BICYCLE,2017-10-05T00:00:00,2017,October,Thursday,5,278,22,2017-10-06T00:00:00,2017,October,Friday,6,279,15,D14,Toronto,81,Trinity-Bellwoods (81),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,CROSS CHECK,RC,22,BLU,2500.0,STOLEN,16124,"{'type': 'Point', 'coordinates': (-79.41013414, 43.64759136)}"
-16156,21296,GO-20189019551,THEFT UNDER - BICYCLE,2018-06-20T00:00:00,2018,June,Wednesday,20,171,8,2018-06-20T00:00:00,2018,June,Wednesday,20,171,22,D14,Toronto,80,Palmerston-Little Italy (80),Ttc Subway Station,Transit,GT,,MT,21,WHI,450.0,STOLEN,16125,"{'type': 'Point', 'coordinates': (-79.42816584, 43.6614364)}"
-16157,14771,GO-20189011482,THEFT UNDER - BICYCLE,2018-04-12T00:00:00,2018,April,Thursday,12,102,0,2018-04-13T00:00:00,2018,April,Friday,13,103,10,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,STEP THRU,RG,21,BLK,900.0,STOLEN,16126,"{'type': 'Point', 'coordinates': (-79.40678242, 43.64746148)}"
-16158,21393,GO-20161140344,THEFT UNDER - BICYCLE,2016-06-28T00:00:00,2016,June,Tuesday,28,180,22,2016-06-29T00:00:00,2016,June,Wednesday,29,181,22,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,,TO,21,BLKWHI,300.0,STOLEN,16127,"{'type': 'Point', 'coordinates': (-79.41894614, 43.65800323)}"
-16159,17843,GO-20189020331,THEFT UNDER - BICYCLE,2018-06-25T00:00:00,2018,June,Monday,25,176,14,2018-06-26T00:00:00,2018,June,Tuesday,26,177,18,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MEC,HOLD STEADY,RG,18,RED,1350.0,STOLEN,16128,"{'type': 'Point', 'coordinates': (-79.40447971, 43.66652336)}"
-16160,14792,GO-20189017175,THEFT UNDER - BICYCLE,2018-06-02T00:00:00,2018,June,Saturday,2,153,1,2018-06-03T00:00:00,2018,June,Sunday,3,154,12,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,LINUS DUTCHI 3S,RG,3,YEL,1028.0,STOLEN,16129,"{'type': 'Point', 'coordinates': (-79.41103992, 43.64660552)}"
-16161,15336,GO-20149004997,THEFT UNDER,2014-07-12T00:00:00,2014,July,Saturday,12,193,21,2014-07-15T00:00:00,2014,July,Tuesday,15,196,0,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,BETA SERIES 101,OT,1,GRY,325.0,STOLEN,16130,"{'type': 'Point', 'coordinates': (-79.41556857, 43.65495192)}"
-16162,22653,GO-20191889306,THEFT UNDER,2019-09-20T00:00:00,2019,September,Friday,20,263,16,2019-10-01T00:00:00,2019,October,Tuesday,1,274,10,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,,RG,0,BLK,500.0,STOLEN,16409,"{'type': 'Point', 'coordinates': (-79.39676402, 43.66012322)}"
-16163,8395,GO-20149004910,THEFT UNDER,2014-06-26T00:00:00,2014,June,Thursday,26,177,19,2014-07-11T00:00:00,2014,July,Friday,11,192,15,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KH,URBAN EXPRESS,RG,21,BLK,800.0,STOLEN,16131,"{'type': 'Point', 'coordinates': (-79.40767084, 43.64646816)}"
-16164,1608,GO-20179016683,THEFT UNDER - BICYCLE,2017-10-05T00:00:00,2017,October,Thursday,5,278,22,2017-10-07T00:00:00,2017,October,Saturday,7,280,14,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,5,GRN,600.0,STOLEN,16132,"{'type': 'Point', 'coordinates': (-79.41254752, 43.65367200000001)}"
-16165,6368,GO-20201067092,THEFT UNDER - BICYCLE,2020-06-09T00:00:00,2020,June,Tuesday,9,161,20,2020-06-10T00:00:00,2020,June,Wednesday,10,162,11,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,RC,1,BLKGRY,,STOLEN,16133,"{'type': 'Point', 'coordinates': (-79.42305206, 43.65879732)}"
-16166,21402,GO-20169008371,THEFT UNDER - BICYCLE,2016-08-05T00:00:00,2016,August,Friday,5,218,23,2016-08-08T00:00:00,2016,August,Monday,8,221,8,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,1,BLK,800.0,STOLEN,16134,"{'type': 'Point', 'coordinates': (-79.41257586, 43.6554626)}"
-16167,17850,GO-20189021758,THEFT UNDER - BICYCLE,2018-07-09T00:00:00,2018,July,Monday,9,190,8,2018-07-09T00:00:00,2018,July,Monday,9,190,20,D14,Toronto,79,University (79),Schools During Supervised Activity,Educational,UK,FS 18,MT,7,WHI,130.0,STOLEN,16135,"{'type': 'Point', 'coordinates': (-79.41021074, 43.66266863)}"
-16168,14801,GO-20189018640,THEFT UNDER - BICYCLE,2018-06-13T00:00:00,2018,June,Wednesday,13,164,12,2018-06-14T00:00:00,2018,June,Thursday,14,165,8,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,RG,21,BLK,450.0,STOLEN,16136,"{'type': 'Point', 'coordinates': (-79.41142197, 43.65082905)}"
-16169,17878,GO-20189025789,THEFT UNDER - BICYCLE,2018-08-10T00:00:00,2018,August,Friday,10,222,8,2018-08-10T00:00:00,2018,August,Friday,10,222,8,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,ZEKTOR 3 2017,RG,18,BLK,1000.0,STOLEN,16137,"{'type': 'Point', 'coordinates': (-79.4078215, 43.66005724)}"
-16170,14805,GO-20189019422,THEFT UNDER - BICYCLE,2018-06-13T00:00:00,2018,June,Wednesday,13,164,12,2018-06-19T00:00:00,2018,June,Tuesday,19,170,13,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,BI,PIAGGIO,RC,10,DBL,240.0,STOLEN,16138,"{'type': 'Point', 'coordinates': (-79.42407483, 43.64782021)}"
-16171,1655,GO-20171858826,POSSESSION PROPERTY OBC UNDER,2017-10-13T00:00:00,2017,October,Friday,13,286,23,2017-10-13T00:00:00,2017,October,Friday,13,286,23,D14,Toronto,81,Trinity-Bellwoods (81),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,FUJI,CLASSIC,TO,1,BLK,,STOLEN,16139,"{'type': 'Point', 'coordinates': (-79.42013894, 43.64783378)}"
-16172,6453,GO-20209016025,THEFT UNDER,2020-06-10T00:00:00,2020,June,Wednesday,10,162,0,2020-06-24T00:00:00,2020,June,Wednesday,24,176,9,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,BLACK RISER 52,RG,13,BLK,500.0,STOLEN,16140,"{'type': 'Point', 'coordinates': (-79.419284, 43.65752154)}"
-16173,17893,GO-20189028503,THEFT UNDER - BICYCLE,2018-08-29T00:00:00,2018,August,Wednesday,29,241,16,2018-08-29T00:00:00,2018,August,Wednesday,29,241,21,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,CITY GLIDE,TO,8,GRY,900.0,STOLEN,16141,"{'type': 'Point', 'coordinates': (-79.40411393, 43.66079116)}"
-16174,14812,GO-20189020434,THEFT UNDER - BICYCLE,2018-06-27T00:00:00,2018,June,Wednesday,27,178,4,2018-06-27T00:00:00,2018,June,Wednesday,27,178,11,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,DEWEY,RG,8,GRN,866.0,STOLEN,16142,"{'type': 'Point', 'coordinates': (-79.41134558, 43.64735559)}"
-16175,21433,GO-20169011266,THEFT UNDER,2016-09-27T00:00:00,2016,September,Tuesday,27,271,15,2016-09-28T00:00:00,2016,September,Wednesday,28,272,20,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,7.3 FX,MT,27,BLK,850.0,STOLEN,16143,"{'type': 'Point', 'coordinates': (-79.41899177000002, 43.65515706)}"
-16176,8440,GO-20142507653,THEFT UNDER,2014-07-15T00:00:00,2014,July,Tuesday,15,196,17,2014-07-16T00:00:00,2014,July,Wednesday,16,197,9,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,RG,0,BLU,50.0,STOLEN,16144,"{'type': 'Point', 'coordinates': (-79.42407483, 43.64782021)}"
-16177,15337,GO-20149005025,THEFT UNDER,2014-07-14T00:00:00,2014,July,Monday,14,195,22,2014-07-15T00:00:00,2014,July,Tuesday,15,196,22,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,OT,7,DBL,900.0,STOLEN,16145,"{'type': 'Point', 'coordinates': (-79.41262508, 43.66216917)}"
-16178,6468,GO-20209016104,THEFT UNDER,2020-06-24T00:00:00,2020,June,Wednesday,24,176,22,2020-06-24T00:00:00,2020,June,Wednesday,24,176,23,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,,MT,24,BLU,400.0,STOLEN,16146,"{'type': 'Point', 'coordinates': (-79.40973033, 43.66151426)}"
-16179,21372,GO-20169005104,THEFT UNDER,2016-05-29T00:00:00,2016,May,Sunday,29,150,3,2016-05-30T00:00:00,2016,May,Monday,30,151,12,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,,RG,18,MRN,250.0,STOLEN,16147,"{'type': 'Point', 'coordinates': (-79.40583441, 43.65867014)}"
-16180,1749,GO-20179018263,THEFT UNDER - BICYCLE,2017-10-25T00:00:00,2017,October,Wednesday,25,298,11,2017-10-26T00:00:00,2017,October,Thursday,26,299,17,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,SOLOIST,RG,1,BLK,500.0,STOLEN,16148,"{'type': 'Point', 'coordinates': (-79.41375955, 43.65342174)}"
-16181,17895,GO-20189028642,THEFT UNDER - BICYCLE,2018-08-29T00:00:00,2018,August,Wednesday,29,241,15,2018-08-31T00:00:00,2018,August,Friday,31,243,1,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CALICO 2015,BM,1,BLK,1000.0,STOLEN,16149,"{'type': 'Point', 'coordinates': (-79.40382824, 43.66269877)}"
-16182,15310,GO-20141894745,THEFT UNDER,2014-04-10T00:00:00,2014,April,Thursday,10,100,11,2014-04-15T00:00:00,2014,April,Tuesday,15,105,10,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,MT,7,WHIRED,175.0,STOLEN,16150,"{'type': 'Point', 'coordinates': (-79.42074205, 43.64933336)}"
-16183,21376,GO-20169005520,THEFT UNDER,2016-06-06T00:00:00,2016,June,Monday,6,158,15,2016-06-09T00:00:00,2016,June,Thursday,9,161,13,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,1974 GRAND PRIX,TO,12,MRN,300.0,STOLEN,16151,"{'type': 'Point', 'coordinates': (-79.40540813, 43.6641145)}"
-16184,1810,GO-20179019110,THEFT UNDER - BICYCLE,2017-11-07T00:00:00,2017,November,Tuesday,7,311,17,2017-11-07T00:00:00,2017,November,Tuesday,7,311,19,D14,Toronto,81,Trinity-Bellwoods (81),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,ROAM 0 DISC XL,MT,30,BLK,1500.0,STOLEN,16152,"{'type': 'Point', 'coordinates': (-79.41142197, 43.65082905)}"
-16185,15348,GO-20142683801,THEFT UNDER,2014-08-05T00:00:00,2014,August,Tuesday,5,217,5,2014-08-11T00:00:00,2014,August,Monday,11,223,21,D14,Toronto,80,Palmerston-Little Italy (80),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMO,,EL,0,BLKGRN,800.0,STOLEN,16153,"{'type': 'Point', 'coordinates': (-79.4220205, 43.6627783)}"
-16186,8532,GO-20142604373,THEFT UNDER,2014-07-25T00:00:00,2014,July,Friday,25,206,1,2014-07-30T00:00:00,2014,July,Wednesday,30,211,21,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,EL,0,BLK,,STOLEN,16154,"{'type': 'Point', 'coordinates': (-79.42023359, 43.65491084)}"
-16187,6499,GO-20209016510,THEFT UNDER,2020-06-27T00:00:00,2020,June,Saturday,27,179,23,2020-06-29T00:00:00,2020,June,Monday,29,181,22,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,TREK FX2 DISC H,RG,24,BLK,750.0,STOLEN,16155,"{'type': 'Point', 'coordinates': (-79.42305206, 43.65879732)}"
-16188,21451,GO-20169014307,THEFT UNDER,2016-12-06T00:00:00,2016,December,Tuesday,6,341,9,2016-12-06T00:00:00,2016,December,Tuesday,6,341,17,D14,Toronto,80,Palmerston-Little Italy (80),Schools During Supervised Activity,Educational,NO,VFR 5,RG,24,ONG,740.0,STOLEN,16156,"{'type': 'Point', 'coordinates': (-79.42248729, 43.65732889000001)}"
-16189,6898,GO-20209019661,THEFT UNDER,2020-08-07T00:00:00,2020,August,Friday,7,220,11,2020-08-07T00:00:00,2020,August,Friday,7,220,21,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,UK,FIXIE ROAD BIKE,RG,1,GRY,288.0,STOLEN,16157,"{'type': 'Point', 'coordinates': (-79.41975508, 43.65683202)}"
-16190,18194,GO-20179004024,THEFT UNDER - BICYCLE,2017-03-31T00:00:00,2017,March,Friday,31,90,6,2017-03-31T00:00:00,2017,March,Friday,31,90,8,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,CA,F700,MT,24,PLE,2000.0,STOLEN,16158,"{'type': 'Point', 'coordinates': (-79.40307045, 43.6655101)}"
-16191,15311,GO-20141936048,THEFT UNDER,2014-04-21T00:00:00,2014,April,Monday,21,111,10,2014-04-22T00:00:00,2014,April,Tuesday,22,112,10,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DAHON,,FO,1,SIL,1200.0,STOLEN,16159,"{'type': 'Point', 'coordinates': (-79.41626354, 43.64472458)}"
-16192,1817,GO-20172023736,B&E,2017-11-07T00:00:00,2017,November,Tuesday,7,311,0,2017-11-08T00:00:00,2017,November,Wednesday,8,312,14,D14,Toronto,81,Trinity-Bellwoods (81),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CCM,,RG,18,REDWHI,300.0,STOLEN,16160,"{'type': 'Point', 'coordinates': (-79.40828337, 43.64808588)}"
-16193,25298,GO-2017732960,FRAUD OVER,2017-04-26T00:00:00,2017,April,Wednesday,26,116,14,2017-04-26T00:00:00,2017,April,Wednesday,26,116,14,D14,Toronto,79,University (79),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,ANTARES,OT,10,,225.0,STOLEN,16161,"{'type': 'Point', 'coordinates': (-79.40180671, 43.65765229)}"
-16194,21487,GO-20179007076,THEFT UNDER,2017-05-26T00:00:00,2017,May,Friday,26,146,21,2017-05-27T00:00:00,2017,May,Saturday,27,147,17,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,OT,SIRRUS DISC,RG,8,ONG,595.0,STOLEN,16162,"{'type': 'Point', 'coordinates': (-79.41747327, 43.65993472000001)}"
-16195,21395,GO-20169006857,THEFT UNDER,2016-07-05T00:00:00,2016,July,Tuesday,5,187,19,2016-07-07T00:00:00,2016,July,Thursday,7,189,13,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SIGNATURE TORON,RG,3,RED,1000.0,STOLEN,16163,"{'type': 'Point', 'coordinates': (-79.40973033, 43.66151426)}"
-16196,6927,GO-20209019811,THEFT UNDER,2020-08-08T00:00:00,2020,August,Saturday,8,221,22,2020-08-10T00:00:00,2020,August,Monday,10,223,12,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,UK,GT AGGRESSOR CO,MT,7,OTH,500.0,STOLEN,16164,"{'type': 'Point', 'coordinates': (-79.41899177000002, 43.65515706)}"
-16197,18410,GO-20159003134,PROPERTY - FOUND,2015-05-26T00:00:00,2015,May,Tuesday,26,146,13,2015-05-27T00:00:00,2015,May,Wednesday,27,147,19,D14,Toronto,79,University (79),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,T300,EL,10,BLU,1200.0,STOLEN,16165,"{'type': 'Point', 'coordinates': (-79.40316102, 43.65738236)}"
-16198,15327,GO-20142409251,B&E,2014-07-01T00:00:00,2014,July,Tuesday,1,182,18,2014-07-02T00:00:00,2014,July,Wednesday,2,183,1,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,HYBRID,MT,10,BLK,2000.0,STOLEN,16166,"{'type': 'Point', 'coordinates': (-79.42243149, 43.64735043)}"
-16199,8620,GO-20142688075,THEFT UNDER,2014-07-12T00:00:00,2014,July,Saturday,12,193,0,2014-08-12T00:00:00,2014,August,Tuesday,12,224,14,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,NEKO S,RG,21,,1200.0,STOLEN,16167,"{'type': 'Point', 'coordinates': (-79.41485345, 43.65320024)}"
-16200,15374,GO-20143133833,THEFT UNDER,2014-10-18T00:00:00,2014,October,Saturday,18,291,19,2014-10-19T00:00:00,2014,October,Sunday,19,292,10,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,ROUBAIX SL2,OT,10,BLK,2000.0,STOLEN,16168,"{'type': 'Point', 'coordinates': (-79.41894614, 43.65800323)}"
-16201,1941,GO-20179022276,THEFT UNDER,2017-07-26T00:00:00,2017,July,Wednesday,26,207,18,2017-12-15T00:00:00,2017,December,Friday,15,349,12,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,27,GRY,600.0,STOLEN,16169,"{'type': 'Point', 'coordinates': (-79.42023359, 43.65491084)}"
-16202,25300,GO-20179006016,THEFT UNDER - BICYCLE,2017-05-09T00:00:00,2017,May,Tuesday,9,129,10,2017-05-09T00:00:00,2017,May,Tuesday,9,129,20,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,DRAFT,RG,1,BLK,475.0,STOLEN,16170,"{'type': 'Point', 'coordinates': (-79.40531586, 43.66635847)}"
-16203,21488,GO-20179007124,THEFT UNDER,2017-05-27T00:00:00,2017,May,Saturday,27,147,21,2017-05-28T00:00:00,2017,May,Sunday,28,148,17,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,NO,,RG,21,DBL,600.0,STOLEN,16171,"{'type': 'Point', 'coordinates': (-79.41462705, 43.6605259)}"
-16204,21490,GO-20179007361,THEFT UNDER - BICYCLE,2017-06-01T00:00:00,2017,June,Thursday,1,152,17,2017-06-01T00:00:00,2017,June,Thursday,1,152,18,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,RUSH HOUR,RC,1,,600.0,STOLEN,16172,"{'type': 'Point', 'coordinates': (-79.41067759, 43.66382976)}"
-16205,21817,GO-20149005792,THEFT UNDER,2014-08-10T00:00:00,2014,August,Sunday,10,222,12,2014-08-10T00:00:00,2014,August,Sunday,10,222,21,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,OT,10,BLK,250.0,STOLEN,16173,"{'type': 'Point', 'coordinates': (-79.41067759, 43.66382976)}"
-16206,21823,GO-20149006211,THEFT UNDER,2014-08-15T00:00:00,2014,August,Friday,15,227,16,2014-08-22T00:00:00,2014,August,Friday,22,234,16,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,RC,16,RED,600.0,STOLEN,16174,"{'type': 'Point', 'coordinates': (-79.41136773000001, 43.65571437)}"
-16207,21824,GO-20149006344,THEFT UNDER,2014-08-26T00:00:00,2014,August,Tuesday,26,238,9,2014-08-27T00:00:00,2014,August,Wednesday,27,239,14,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FJ,CLASSIC TRACK,OT,1,BLK,500.0,STOLEN,16175,"{'type': 'Point', 'coordinates': (-79.41141853, 43.66242893)}"
-16208,21837,GO-20142971906,THEFT UNDER,2014-09-23T00:00:00,2014,September,Tuesday,23,266,12,2014-09-25T00:00:00,2014,September,Thursday,25,268,18,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,VECTOR,RG,3,BLKBLU,300.0,STOLEN,16176,"{'type': 'Point', 'coordinates': (-79.41385535, 43.66193043)}"
-16209,21844,GO-20149008330,THEFT UNDER,2014-11-21T00:00:00,2014,November,Friday,21,325,14,2014-11-21T00:00:00,2014,November,Friday,21,325,18,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,OT,1,,150.0,STOLEN,16177,"{'type': 'Point', 'coordinates': (-79.41021074, 43.66266863)}"
-16210,21850,GO-20159001564,THEFT UNDER,2015-03-25T00:00:00,2015,March,Wednesday,25,84,9,2015-03-26T00:00:00,2015,March,Thursday,26,85,16,D14,Toronto,80,Palmerston-Little Italy (80),Schools During Un-Supervised Activity,Educational,GI,LIV 15 ALIGHT 2,RG,24,PLE,499.0,STOLEN,16178,"{'type': 'Point', 'coordinates': (-79.41392904, 43.65882137)}"
-16211,21884,GO-20151113317,THEFT UNDER,2015-07-02T00:00:00,2015,July,Thursday,2,183,13,2015-07-02T00:00:00,2015,July,Thursday,2,183,13,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,UNKNOWN,SC,1,WHI,100.0,STOLEN,16179,"{'type': 'Point', 'coordinates': (-79.42023359, 43.65491084)}"
-16212,21891,GO-20151192846,THEFT UNDER,2015-07-13T00:00:00,2015,July,Monday,13,194,22,2015-07-14T00:00:00,2015,July,Tuesday,14,195,11,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,IRON HORSE,,MT,10,SIL,200.0,STOLEN,16180,"{'type': 'Point', 'coordinates': (-79.42439359, 43.66225003)}"
-16213,21909,GO-20159005664,THEFT UNDER,2015-08-07T00:00:00,2015,August,Friday,7,219,1,2015-08-11T00:00:00,2015,August,Tuesday,11,223,21,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,OT,ARIEL,OT,21,CRM,400.0,STOLEN,16181,"{'type': 'Point', 'coordinates': (-79.41556857, 43.65495192)}"
-16214,21925,GO-20159007610,THEFT UNDER,2015-09-21T00:00:00,2015,September,Monday,21,264,23,2015-09-22T00:00:00,2015,September,Tuesday,22,265,23,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,TR,,RC,21,BLU,2500.0,STOLEN,16182,"{'type': 'Point', 'coordinates': (-79.41481904, 43.66434022)}"
-16215,21934,GO-20151823839,THEFT UNDER,2015-10-22T00:00:00,2015,October,Thursday,22,295,20,2015-10-23T00:00:00,2015,October,Friday,23,296,11,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GT,AGGRESSOR,MT,15,BLK,200.0,STOLEN,16183,"{'type': 'Point', 'coordinates': (-79.42391973, 43.65412228000001)}"
-16216,21946,GO-20169002302,THEFT UNDER - BICYCLE,2016-03-13T00:00:00,2016,March,Sunday,13,73,15,2016-03-13T00:00:00,2016,March,Sunday,13,73,21,D14,Toronto,80,Palmerston-Little Italy (80),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,LIV- ALIGHT,OT,27,BLK,769.0,STOLEN,16184,"{'type': 'Point', 'coordinates': (-79.42939853, 43.66115068)}"
-16217,21955,GO-20169003753,THEFT UNDER,2016-04-22T00:00:00,2016,April,Friday,22,113,23,2016-04-23T00:00:00,2016,April,Saturday,23,114,19,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,KO,,MT,8,MRN,500.0,STOLEN,16185,"{'type': 'Point', 'coordinates': (-79.41975508, 43.65683202)}"
-16218,23807,GO-20209017487,THEFT UNDER,2020-03-23T00:00:00,2020,March,Monday,23,83,18,2020-07-13T00:00:00,2020,July,Monday,13,195,19,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,OT,MODENA,RG,12,BLU,250.0,STOLEN,16186,"{'type': 'Point', 'coordinates': (-79.42063919, 43.65928043)}"
-16219,23834,GO-20209023048,THEFT UNDER,2020-09-11T00:00:00,2020,September,Friday,11,255,17,2020-09-12T00:00:00,2020,September,Saturday,12,256,13,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,FJ,ABSOLUTE,RG,24,BLK,800.0,STOLEN,16187,"{'type': 'Point', 'coordinates': (-79.42087545, 43.66302552)}"
-16220,23838,GO-20201769299,THEFT UNDER - BICYCLE,2020-09-16T00:00:00,2020,September,Wednesday,16,260,22,2020-09-18T00:00:00,2020,September,Friday,18,262,10,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KHS,URBAN EXTREME,RG,15,GRY,1000.0,STOLEN,16188,"{'type': 'Point', 'coordinates': (-79.41025366, 43.65955808)}"
-16221,23839,GO-20201769299,THEFT UNDER - BICYCLE,2020-09-16T00:00:00,2020,September,Wednesday,16,260,22,2020-09-18T00:00:00,2020,September,Friday,18,262,10,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,FUJI,BOULEVARD,MT,18,MRN,800.0,STOLEN,16189,"{'type': 'Point', 'coordinates': (-79.41025366, 43.65955808)}"
-16222,23842,GO-20209024733,THEFT UNDER,2020-09-27T00:00:00,2020,September,Sunday,27,271,17,2020-09-27T00:00:00,2020,September,Sunday,27,271,22,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,PE,IZOARD,RC,14,PLE,500.0,STOLEN,16190,"{'type': 'Point', 'coordinates': (-79.41703962, 43.65517087)}"
-16223,24005,GO-20189042046,THEFT UNDER - BICYCLE,2018-11-13T00:00:00,2018,November,Tuesday,13,317,13,2018-12-14T00:00:00,2018,December,Friday,14,348,14,D14,Toronto,80,Palmerston-Little Italy (80),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,DURAMGO,MT,21,BLK,500.0,STOLEN,16191,"{'type': 'Point', 'coordinates': (-79.40768329, 43.65648148)}"
-16224,24027,GO-20199010354,THEFT UNDER - BICYCLE,2019-04-01T00:00:00,2019,April,Monday,1,91,15,2019-04-01T00:00:00,2019,April,Monday,1,91,15,D14,Toronto,80,Palmerston-Little Italy (80),Schools During Supervised Activity,Educational,OT,,MT,12,DBL,150.0,STOLEN,16192,"{'type': 'Point', 'coordinates': (-79.42087545, 43.66302552)}"
-16225,24030,GO-2019805488,B&E OUT,2019-04-29T00:00:00,2019,April,Monday,29,119,0,2019-05-04T00:00:00,2019,May,Saturday,4,124,23,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,ALLEZ,RG,12,RED,2000.0,STOLEN,16193,"{'type': 'Point', 'coordinates': (-79.41385535, 43.66193043)}"
-16226,24039,GO-20199015708,THEFT UNDER,2019-05-19T00:00:00,2019,May,Sunday,19,139,20,2019-05-20T00:00:00,2019,May,Monday,20,140,20,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,BI,,MT,7,BLU,100.0,STOLEN,16194,"{'type': 'Point', 'coordinates': (-79.41786636, 43.655245660000006)}"
-16227,24045,GO-20199017348,THEFT UNDER - BICYCLE,2019-06-01T00:00:00,2019,June,Saturday,1,152,1,2019-06-04T00:00:00,2019,June,Tuesday,4,155,10,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,MALAHUT,RG,21,BLU,0.0,STOLEN,16195,"{'type': 'Point', 'coordinates': (-79.42475081, 43.65976849)}"
-16228,24055,GO-20199020521,THEFT UNDER - BICYCLE,2019-06-29T00:00:00,2019,June,Saturday,29,180,19,2019-06-29T00:00:00,2019,June,Saturday,29,180,20,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,THRIVE 2,RG,21,BLU,960.0,STOLEN,16196,"{'type': 'Point', 'coordinates': (-79.42617452000002, 43.65644357)}"
-16229,24095,GO-20199027981,THEFT UNDER - BICYCLE,2019-08-28T00:00:00,2019,August,Wednesday,28,240,1,2019-08-28T00:00:00,2019,August,Wednesday,28,240,8,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,SIRUSS DISC,RG,24,DGR,800.0,STOLEN,16197,"{'type': 'Point', 'coordinates': (-79.41269952000002, 43.65906954)}"
-16230,24181,GO-20209014374,THEFT UNDER,2020-05-30T00:00:00,2020,May,Saturday,30,151,12,2020-06-01T00:00:00,2020,June,Monday,1,153,22,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,KO,,TO,21,BLU,0.0,STOLEN,16198,"{'type': 'Point', 'coordinates': (-79.42939853, 43.66115068)}"
-16231,24185,GO-20209014854,THEFT UNDER,2020-06-05T00:00:00,2020,June,Friday,5,157,18,2020-06-08T00:00:00,2020,June,Monday,8,160,14,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,6,BLK,650.0,STOLEN,16199,"{'type': 'Point', 'coordinates': (-79.42681894, 43.66173648)}"
-16232,24259,GO-20179019144,THEFT UNDER - BICYCLE,2017-11-07T00:00:00,2017,November,Tuesday,7,311,23,2017-11-08T00:00:00,2017,November,Wednesday,8,312,0,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,21,BLK,400.0,STOLEN,16200,"{'type': 'Point', 'coordinates': (-79.41837695, 43.66358488)}"
-16233,24268,GO-20179021598,THEFT UNDER - BICYCLE,2017-12-07T00:00:00,2017,December,Thursday,7,341,7,2017-12-07T00:00:00,2017,December,Thursday,7,341,22,D14,Toronto,80,Palmerston-Little Italy (80),Schools During Supervised Activity,Educational,GI,2017 FATHOM 2,MT,18,GRN,1500.0,STOLEN,16201,"{'type': 'Point', 'coordinates': (-79.41385535, 43.66193043)}"
-16234,24278,GO-20189005485,THEFT UNDER,2018-02-18T00:00:00,2018,February,Sunday,18,49,3,2018-02-21T00:00:00,2018,February,Wednesday,21,52,11,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,1,RED,250.0,STOLEN,16202,"{'type': 'Point', 'coordinates': (-79.41269952000002, 43.65906954)}"
-16235,24279,GO-20189005485,THEFT UNDER,2018-02-18T00:00:00,2018,February,Sunday,18,49,3,2018-02-21T00:00:00,2018,February,Wednesday,21,52,11,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,1,BRN,150.0,STOLEN,16203,"{'type': 'Point', 'coordinates': (-79.41269952000002, 43.65906954)}"
-16236,24280,GO-20189006285,THEFT UNDER - BICYCLE,2018-02-27T00:00:00,2018,February,Tuesday,27,58,16,2018-02-27T00:00:00,2018,February,Tuesday,27,58,20,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,BLACK PEARL,OT,1,BLK,780.0,STOLEN,16204,"{'type': 'Point', 'coordinates': (-79.41025366, 43.65955808)}"
-16237,24290,GO-20189009941,THEFT UNDER,2018-03-29T00:00:00,2018,March,Thursday,29,88,6,2018-03-29T00:00:00,2018,March,Thursday,29,88,11,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,FX 7.5,RG,21,BRZ,400.0,STOLEN,16205,"{'type': 'Point', 'coordinates': (-79.419284, 43.65752154)}"
-16238,24309,GO-20189016771,THEFT UNDER - BICYCLE,2018-05-30T00:00:00,2018,May,Wednesday,30,150,8,2018-05-30T00:00:00,2018,May,Wednesday,30,150,10,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SLIDER,MT,7,,0.0,STOLEN,16206,"{'type': 'Point', 'coordinates': (-79.42184411, 43.65903647)}"
-16239,24381,GO-20189029120,THEFT UNDER - BICYCLE,2018-09-04T00:00:00,2018,September,Tuesday,4,247,17,2018-09-04T00:00:00,2018,September,Tuesday,4,247,22,D14,Toronto,80,Palmerston-Little Italy (80),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,INDIE 4,OT,24,BLK,650.0,STOLEN,16207,"{'type': 'Point', 'coordinates': (-79.41556857, 43.65495192)}"
-16240,24388,GO-20189031995,THEFT UNDER - BICYCLE,2018-09-26T00:00:00,2018,September,Wednesday,26,269,0,2018-09-26T00:00:00,2018,September,Wednesday,26,269,15,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,IN,,RG,24,BLK,0.0,STOLEN,16208,"{'type': 'Point', 'coordinates': (-79.42739759, 43.65617153)}"
-16241,24595,GO-20149003272,THEFT UNDER,2014-05-10T00:00:00,2014,May,Saturday,10,130,14,2014-05-10T00:00:00,2014,May,Saturday,10,130,17,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,FIDELIO (2007),RC,8,RED,1000.0,STOLEN,16209,"{'type': 'Point', 'coordinates': (-79.41385535, 43.66193043)}"
-16242,24600,GO-20149003687,THEFT UNDER,2014-05-28T00:00:00,2014,May,Wednesday,28,148,17,2014-05-30T00:00:00,2014,May,Friday,30,150,13,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,GEORGIAN LE,OT,18,WHI,500.0,STOLEN,16210,"{'type': 'Point', 'coordinates': (-79.40973033, 43.66151426)}"
-16243,24609,GO-20149004349,THEFT UNDER,2014-06-21T00:00:00,2014,June,Saturday,21,172,23,2014-06-23T00:00:00,2014,June,Monday,23,174,11,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,3,BLU,0.0,STOLEN,16211,"{'type': 'Point', 'coordinates': (-79.41672657, 43.66262133)}"
-16244,24611,GO-20142389756,THEFT UNDER,2014-06-27T00:00:00,2014,June,Friday,27,178,17,2014-06-28T00:00:00,2014,June,Saturday,28,179,22,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,HSM,312,EL,1,BLKMRN,902.0,STOLEN,16212,"{'type': 'Point', 'coordinates': (-79.41462705, 43.6605259)}"
-16245,24628,GO-20149005093,THEFT UNDER,2014-07-17T00:00:00,2014,July,Thursday,17,198,5,2014-07-18T00:00:00,2014,July,Friday,18,199,9,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,SINGLE SPEED RO,OT,1,SIL,200.0,STOLEN,16213,"{'type': 'Point', 'coordinates': (-79.41136773000001, 43.65571437)}"
-16246,24629,GO-20149005116,THEFT UNDER,2014-07-19T00:00:00,2014,July,Saturday,19,200,11,2014-07-20T00:00:00,2014,July,Sunday,20,201,8,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ALLEZ,RC,16,BLK,1500.0,STOLEN,16214,"{'type': 'Point', 'coordinates': (-79.42562006, 43.66198485)}"
-16247,24636,GO-20149005943,THEFT UNDER,2014-08-01T00:00:00,2014,August,Friday,1,213,17,2014-08-17T00:00:00,2014,August,Sunday,17,229,16,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,CALDERA,MT,24,RED,250.0,STOLEN,16215,"{'type': 'Point', 'coordinates': (-79.42087545, 43.66302552)}"
-16248,24643,GO-20142799404,THEFT UNDER,2014-08-23T00:00:00,2014,August,Saturday,23,235,18,2014-08-29T00:00:00,2014,August,Friday,29,241,12,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,INFINITY,SUPERIOR BRAVO,MT,21,,250.0,STOLEN,16216,"{'type': 'Point', 'coordinates': (-79.42023359, 43.65491084)}"
-16249,24638,GO-20149006224,THEFT UNDER,2014-08-23T00:00:00,2014,August,Saturday,23,235,2,2014-08-23T00:00:00,2014,August,Saturday,23,235,10,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,MT,8,,600.0,STOLEN,16450,"{'type': 'Point', 'coordinates': (-79.40478414, 43.66249403)}"
-16250,24644,GO-20149006497,THEFT UNDER,2014-08-28T00:00:00,2014,August,Thursday,28,240,16,2014-09-02T00:00:00,2014,September,Tuesday,2,245,13,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,S02,RG,21,BLU,700.0,STOLEN,16217,"{'type': 'Point', 'coordinates': (-79.4209148, 43.65662988)}"
-16251,24645,GO-20149006497,THEFT UNDER,2014-08-28T00:00:00,2014,August,Thursday,28,240,16,2014-09-02T00:00:00,2014,September,Tuesday,2,245,13,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,3,OTH,1000.0,STOLEN,16218,"{'type': 'Point', 'coordinates': (-79.4209148, 43.65662988)}"
-16252,24659,GO-20149007366,THEFT UNDER,2014-09-28T00:00:00,2014,September,Sunday,28,271,9,2014-10-02T00:00:00,2014,October,Thursday,2,275,22,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,"CONTESSA 20, 20",MT,27,WHI,500.0,STOLEN,16219,"{'type': 'Point', 'coordinates': (-79.42562006, 43.66198485)}"
-16253,24663,GO-20143053072,PROPERTY - FOUND,2014-10-08T00:00:00,2014,October,Wednesday,8,281,9,2014-10-08T00:00:00,2014,October,Wednesday,8,281,11,D14,Toronto,80,Palmerston-Little Italy (80),Schools During Supervised Activity,Educational,NONE,,SC,1,BLUSIL,,STOLEN,16220,"{'type': 'Point', 'coordinates': (-79.41385535, 43.66193043)}"
-16254,24675,GO-20149008046,THEFT UNDER,2014-10-27T00:00:00,2014,October,Monday,27,300,14,2014-11-06T00:00:00,2014,November,Thursday,6,310,18,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,VILLAGER,RG,10,DGR,250.0,STOLEN,16221,"{'type': 'Point', 'coordinates': (-79.42562006, 43.66198485)}"
-16255,24682,GO-2015546848,THEFT UNDER,2015-04-02T00:00:00,2015,April,Thursday,2,92,10,2015-04-02T00:00:00,2015,April,Thursday,2,92,12,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,ALPINE,MT,7,WHI,230.0,STOLEN,16222,"{'type': 'Point', 'coordinates': (-79.42023359, 43.65491084)}"
-16256,24700,GO-20159003070,THEFT UNDER,2015-05-24T00:00:00,2015,May,Sunday,24,144,0,2015-05-25T00:00:00,2015,May,Monday,25,145,9,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,,OT,16,WHI,300.0,STOLEN,16223,"{'type': 'Point', 'coordinates': (-79.41257586, 43.6554626)}"
-16257,24979,GO-20169011909,THEFT UNDER,2016-10-11T00:00:00,2016,October,Tuesday,11,285,18,2016-10-11T00:00:00,2016,October,Tuesday,11,285,21,D52,Toronto,79,University (79),Universities / Colleges,Educational,OT,ST. TROPEZ,OT,24,BLK,0.0,STOLEN,16483,"{'type': 'Point', 'coordinates': (-79.40207036, 43.66305191)}"
-16258,24713,GO-20159003847,THEFT UNDER,2015-06-21T00:00:00,2015,June,Sunday,21,172,23,2015-06-22T00:00:00,2015,June,Monday,22,173,18,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,,TO,10,BLK,0.0,STOLEN,16224,"{'type': 'Point', 'coordinates': (-79.4237171, 43.65710472)}"
-16259,24729,GO-20159005038,THEFT UNDER,2015-07-21T00:00:00,2015,July,Tuesday,21,202,18,2015-07-27T00:00:00,2015,July,Monday,27,208,10,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CROSSTRAIL,MT,7,BLK,600.0,STOLEN,16225,"{'type': 'Point', 'coordinates': (-79.42023359, 43.65491084)}"
-16260,24730,GO-20151325373,THEFT UNDER,2015-08-02T00:00:00,2015,August,Sunday,2,214,23,2015-08-03T00:00:00,2015,August,Monday,3,215,0,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,MT,7,BLK,,STOLEN,16226,"{'type': 'Point', 'coordinates': (-79.41012202000002, 43.65597091)}"
-16261,24754,GO-20159007194,THEFT UNDER,2015-09-14T00:00:00,2015,September,Monday,14,257,12,2015-09-14T00:00:00,2015,September,Monday,14,257,19,D14,Toronto,80,Palmerston-Little Italy (80),Schools During Supervised Activity,Educational,OT,,OT,1,BLK,550.0,STOLEN,16227,"{'type': 'Point', 'coordinates': (-79.41385535, 43.66193043)}"
-16262,24757,GO-20159008122,THEFT UNDER,2015-09-30T00:00:00,2015,September,Wednesday,30,273,23,2015-10-04T00:00:00,2015,October,Sunday,4,277,15,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,CAAD 9,RC,10,BLU,2000.0,STOLEN,16228,"{'type': 'Point', 'coordinates': (-79.42475081, 43.65976849)}"
-16263,24766,GO-20159008620,THEFT UNDER,2015-10-16T00:00:00,2015,October,Friday,16,289,21,2015-10-17T00:00:00,2015,October,Saturday,17,290,9,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,,MT,24,BRZ,500.0,STOLEN,16229,"{'type': 'Point', 'coordinates': (-79.4237171, 43.65710472)}"
-16264,24767,GO-20159008829,THEFT UNDER,2015-10-20T00:00:00,2015,October,Tuesday,20,293,13,2015-10-21T00:00:00,2015,October,Wednesday,21,294,9,D14,Toronto,80,Palmerston-Little Italy (80),Bar / Restaurant,Commercial,FJ,TRACK CLASSIC,RC,1,BLK,600.0,STOLEN,16230,"{'type': 'Point', 'coordinates': (-79.42562006, 43.66198485)}"
-16265,25183,GO-20169003095,THEFT UNDER,2016-04-05T00:00:00,2016,April,Tuesday,5,96,20,2016-04-05T00:00:00,2016,April,Tuesday,5,96,20,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,LBL,900.0,STOLEN,16231,"{'type': 'Point', 'coordinates': (-79.42596852, 43.65951273)}"
-16266,25196,GO-20169005074,THEFT UNDER,2016-05-24T00:00:00,2016,May,Tuesday,24,145,9,2016-05-29T00:00:00,2016,May,Sunday,29,150,17,D14,Toronto,80,Palmerston-Little Italy (80),Schools During Un-Supervised Activity,Educational,RM,METROPOLITAN,RG,27,DBL,850.0,STOLEN,16232,"{'type': 'Point', 'coordinates': (-79.41385535, 43.66193043)}"
-16267,25211,GO-20169006061,THEFT UNDER - BICYCLE,2016-06-20T00:00:00,2016,June,Monday,20,172,12,2016-06-20T00:00:00,2016,June,Monday,20,172,12,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,UK,UMBRIA,RG,7,DBL,500.0,STOLEN,16233,"{'type': 'Point', 'coordinates': (-79.41093754, 43.66126456)}"
-16268,25215,GO-20169006186,THEFT UNDER,2016-06-21T00:00:00,2016,June,Tuesday,21,173,23,2016-06-22T00:00:00,2016,June,Wednesday,22,174,20,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,OT,OSLO,OT,21,RED,1000.0,STOLEN,16234,"{'type': 'Point', 'coordinates': (-79.40973033, 43.66151426)}"
-16269,25223,GO-20169006786,THEFT UNDER,2016-06-24T00:00:00,2016,June,Friday,24,176,21,2016-07-05T00:00:00,2016,July,Tuesday,5,187,20,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,6,DBL,160.0,STOLEN,16235,"{'type': 'Point', 'coordinates': (-79.41392904, 43.65882137)}"
-16270,25243,GO-20169008787,THEFT UNDER - BICYCLE,2016-08-09T00:00:00,2016,August,Tuesday,9,222,12,2016-08-15T00:00:00,2016,August,Monday,15,228,12,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,RG,7,CRM,150.0,STOLEN,16236,"{'type': 'Point', 'coordinates': (-79.42023359, 43.65491084)}"
-16271,25257,GO-20169010178,THEFT UNDER - BICYCLE,2016-09-02T00:00:00,2016,September,Friday,2,246,11,2016-09-09T00:00:00,2016,September,Friday,9,253,11,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,5,TRQ,100.0,STOLEN,16237,"{'type': 'Point', 'coordinates': (-79.4209148, 43.65662988)}"
-16272,25272,GO-20161744612,B&E,2016-09-28T00:00:00,2016,September,Wednesday,28,272,22,2016-10-01T00:00:00,2016,October,Saturday,1,275,10,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,ROCKY MOUNTAIN,FLARE,MT,24,RED,400.0,STOLEN,16238,"{'type': 'Point', 'coordinates': (-79.40904976, 43.65980581)}"
-16273,25278,GO-20169012139,THEFT UNDER - BICYCLE,2016-10-16T00:00:00,2016,October,Sunday,16,290,16,2016-10-16T00:00:00,2016,October,Sunday,16,290,18,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,,RG,21,DBL,0.0,STOLEN,16239,"{'type': 'Point', 'coordinates': (-79.4165443, 43.66214487)}"
-16274,25287,GO-20169015078,THEFT UNDER - BICYCLE,2016-12-25T00:00:00,2016,December,Sunday,25,360,13,2016-12-26T00:00:00,2016,December,Monday,26,361,16,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,OT,RENEGADE,OT,16,SIL,600.0,STOLEN,16240,"{'type': 'Point', 'coordinates': (-79.41837695, 43.66358488)}"
-16275,25291,GO-2017403944,B&E,2017-03-02T00:00:00,2017,March,Thursday,2,61,23,2017-03-05T00:00:00,2017,March,Sunday,5,64,17,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KHS,URBAN XPRESS,RG,15,BLKWHI,600.0,STOLEN,16241,"{'type': 'Point', 'coordinates': (-79.42728654, 43.65922882)}"
-16276,25303,GO-20179006543,B&E,2017-05-17T00:00:00,2017,May,Wednesday,17,137,18,2017-05-18T00:00:00,2017,May,Thursday,18,138,7,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,,RC,21,RED,400.0,STOLEN,16242,"{'type': 'Point', 'coordinates': (-79.41339692, 43.66076103)}"
-16277,48,GO-20161180827,B&E,2016-07-04T00:00:00,2016,July,Monday,4,186,23,2016-07-06T00:00:00,2016,July,Wednesday,6,188,10,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,RIDLEY,ROAD BIKE,RC,1,,,STOLEN,16243,"{'type': 'Point', 'coordinates': (-79.42343283, 43.64619112)}"
-16278,99,GO-2017330581,THEFT UNDER - BICYCLE,2017-02-22T00:00:00,2017,February,Wednesday,22,53,4,2017-02-22T00:00:00,2017,February,Wednesday,22,53,10,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MARIN OR MARINO,,OT,2,BLKWHI,550.0,STOLEN,16244,"{'type': 'Point', 'coordinates': (-79.42366231, 43.65181447)}"
-16279,159,GO-20179003409,THEFT UNDER,2017-03-15T00:00:00,2017,March,Wednesday,15,74,18,2017-03-17T00:00:00,2017,March,Friday,17,76,18,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,TR,4TH DISTRICT,TO,1,MRN,400.0,STOLEN,16245,"{'type': 'Point', 'coordinates': (-79.42343283, 43.64619112)}"
-16280,178,GO-20179003961,THEFT UNDER - BICYCLE,2017-03-28T00:00:00,2017,March,Tuesday,28,87,19,2017-03-29T00:00:00,2017,March,Wednesday,29,88,10,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,TRANSPORT DX (L,OT,24,GRN,860.0,STOLEN,16246,"{'type': 'Point', 'coordinates': (-79.41732195, 43.65381073)}"
-16281,236,GO-2017672624,B&E,2017-04-15T00:00:00,2017,April,Saturday,15,105,17,2017-04-17T00:00:00,2017,April,Monday,17,107,15,D14,Toronto,81,Trinity-Bellwoods (81),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,ESCAPE 1M,OT,14,GRY,862.0,STOLEN,16247,"{'type': 'Point', 'coordinates': (-79.41910912, 43.6450235)}"
-16282,352,GO-20179006039,THEFT UNDER - BICYCLE,2017-05-08T00:00:00,2017,May,Monday,8,128,15,2017-05-10T00:00:00,2017,May,Wednesday,10,130,10,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,MT,21,BLU,200.0,STOLEN,16248,"{'type': 'Point', 'coordinates': (-79.42636436, 43.65360014)}"
-16283,482,GO-20179007064,THEFT UNDER,2017-05-26T00:00:00,2017,May,Friday,26,146,17,2017-05-27T00:00:00,2017,May,Saturday,27,147,11,D14,Toronto,81,Trinity-Bellwoods (81),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,BLACK,OT,1,BLK,1000.0,STOLEN,16249,"{'type': 'Point', 'coordinates': (-79.41087977, 43.65130826)}"
-16284,752,GO-20179009192,THEFT UNDER,2017-06-28T00:00:00,2017,June,Wednesday,28,179,1,2017-06-29T00:00:00,2017,June,Thursday,29,180,17,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,OT,3,BLK,500.0,STOLEN,16250,"{'type': 'Point', 'coordinates': (-79.41767813, 43.65169734)}"
-16285,803,GO-20171223872,THEFT OF EBIKE UNDER $5000,2017-07-07T00:00:00,2017,July,Friday,7,188,20,2017-07-08T00:00:00,2017,July,Saturday,8,189,17,D14,Toronto,81,Trinity-Bellwoods (81),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,DAYMAK,,EL,1,RED,2000.0,STOLEN,16251,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-16286,925,GO-20171298615,THEFT UNDER,2017-07-19T00:00:00,2017,July,Wednesday,19,200,6,2017-07-19T00:00:00,2017,July,Wednesday,19,200,21,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,THULE,,OT,0,RED,1000.0,STOLEN,16252,"{'type': 'Point', 'coordinates': (-79.41703002, 43.65006784)}"
-16287,937,GO-20179010723,THEFT OVER - BICYCLE,2017-07-22T00:00:00,2017,July,Saturday,22,203,14,2017-07-23T00:00:00,2017,July,Sunday,23,204,14,D14,Toronto,81,Trinity-Bellwoods (81),Bar / Restaurant,Commercial,TR,EMONDA SL6,RC,11,RED,5560.0,STOLEN,16253,"{'type': 'Point', 'coordinates': (-79.41979948, 43.64692616)}"
-16288,1186,GO-20179012797,THEFT UNDER - BICYCLE,2017-08-17T00:00:00,2017,August,Thursday,17,229,23,2017-08-19T00:00:00,2017,August,Saturday,19,231,2,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FJ,CLASSIC (TRACK),OT,1,BLK,850.0,STOLEN,16254,"{'type': 'Point', 'coordinates': (-79.41217785, 43.6527161)}"
-16289,1203,GO-20179012958,THEFT UNDER - BICYCLE,2017-08-21T00:00:00,2017,August,Monday,21,233,0,2017-08-21T00:00:00,2017,August,Monday,21,233,16,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,MT,1,GRY,1000.0,STOLEN,16255,"{'type': 'Point', 'coordinates': (-79.41134558, 43.64735559)}"
-16290,1205,GO-20179012797,THEFT UNDER - BICYCLE,2017-08-17T00:00:00,2017,August,Thursday,17,229,23,2017-08-19T00:00:00,2017,August,Saturday,19,231,2,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FJ,TRACK CLASSIC,RC,1,BLK,850.0,STOLEN,16256,"{'type': 'Point', 'coordinates': (-79.41217785, 43.6527161)}"
-16291,1270,GO-20179013642,THEFT UNDER - BICYCLE,2017-08-29T00:00:00,2017,August,Tuesday,29,241,10,2017-08-29T00:00:00,2017,August,Tuesday,29,241,21,D14,Toronto,81,Trinity-Bellwoods (81),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,S2,RC,22,BLK,2286.0,STOLEN,16257,"{'type': 'Point', 'coordinates': (-79.41890145, 43.65145047)}"
-16292,7229,GO-20209022928,THEFT UNDER,2020-09-10T00:00:00,2020,September,Thursday,10,254,21,2020-09-11T00:00:00,2020,September,Friday,11,255,10,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,21,BLK,350.0,STOLEN,16258,"{'type': 'Point', 'coordinates': (-79.41257586, 43.6554626)}"
-16293,25302,GO-20179006546,THEFT UNDER,2017-05-17T00:00:00,2017,May,Wednesday,17,137,2,2017-05-17T00:00:00,2017,May,Wednesday,17,137,22,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CURRENT,EL,1,BLK,4300.0,STOLEN,16259,"{'type': 'Point', 'coordinates': (-79.4000091, 43.65794797)}"
-16294,1978,GO-201865266,B&E,2017-12-24T00:00:00,2017,December,Sunday,24,358,12,2018-01-11T00:00:00,2018,January,Thursday,11,11,13,D14,Toronto,81,Trinity-Bellwoods (81),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,,MT,0,BLK,1000.0,STOLEN,16260,"{'type': 'Point', 'coordinates': (-79.40844929, 43.6517934)}"
-16295,21409,GO-20169009039,THEFT UNDER,2016-08-16T00:00:00,2016,August,Tuesday,16,229,21,2016-08-18T00:00:00,2016,August,Thursday,18,231,21,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,,MT,18,BLU,200.0,STOLEN,16261,"{'type': 'Point', 'coordinates': (-79.40540813, 43.6641145)}"
-16296,18495,GO-20169005200,THEFT UNDER,2016-05-30T00:00:00,2016,May,Monday,30,151,21,2016-06-01T00:00:00,2016,June,Wednesday,1,153,8,D14,Toronto,79,University (79),Bar / Restaurant,Commercial,UK,,OT,1,PNK,1000.0,STOLEN,16262,"{'type': 'Point', 'coordinates': (-79.40995373, 43.66538876)}"
-16297,21422,GO-20161621018,THEFT UNDER - BICYCLE,2016-09-11T00:00:00,2016,September,Sunday,11,255,22,2016-09-12T00:00:00,2016,September,Monday,12,256,12,D14,Toronto,79,University (79),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN,UNKNOWN,OT,9,,350.0,STOLEN,16263,"{'type': 'Point', 'coordinates': (-79.40237577, 43.66385178)}"
-16298,21435,GO-20169011958,THEFT OF EBIKE UNDER $5000,2016-10-09T00:00:00,2016,October,Sunday,9,283,16,2016-10-13T00:00:00,2016,October,Thursday,13,287,0,D14,Toronto,79,University (79),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,EM,,EL,35,BLK,1783.0,STOLEN,16264,"{'type': 'Point', 'coordinates': (-79.40403711, 43.6572083)}"
-16299,15359,GO-20142839803,THEFT UNDER,2014-09-04T00:00:00,2014,September,Thursday,4,247,9,2014-09-04T00:00:00,2014,September,Thursday,4,247,9,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,,MT,0,YEL,,STOLEN,16265,"{'type': 'Point', 'coordinates': (-79.40844929, 43.6517934)}"
-16300,7272,GO-20209023551,THEFT UNDER,2020-09-17T00:00:00,2020,September,Thursday,17,261,15,2020-09-18T00:00:00,2020,September,Friday,18,262,8,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RC,1,RED,500.0,STOLEN,16266,"{'type': 'Point', 'coordinates': (-79.41383777, 43.65521319)}"
-16301,18773,GO-20209027942,THEFT UNDER,2020-10-28T00:00:00,2020,October,Wednesday,28,302,10,2020-10-28T00:00:00,2020,October,Wednesday,28,302,10,D52,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,OT,SUBCROSS 40,TO,27,BLK,1000.0,STOLEN,16267,"{'type': 'Point', 'coordinates': (-79.40067317, 43.66506891)}"
-16302,1979,GO-201865266,B&E,2017-12-24T00:00:00,2017,December,Sunday,24,358,12,2018-01-11T00:00:00,2018,January,Thursday,11,11,13,D14,Toronto,81,Trinity-Bellwoods (81),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RALEIGH,,MT,0,,500.0,STOLEN,16268,"{'type': 'Point', 'coordinates': (-79.40844929, 43.6517934)}"
-16303,25304,GO-2017947902,THEFT UNDER,2017-05-26T00:00:00,2017,May,Friday,26,146,18,2017-05-29T00:00:00,2017,May,Monday,29,149,13,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MARIN OR MARINO,TERRA LINDA,OT,27,BLU,500.0,STOLEN,16269,"{'type': 'Point', 'coordinates': (-79.40237577, 43.66385178)}"
-16304,15396,GO-2015774311,THEFT UNDER,2015-05-09T00:00:00,2015,May,Saturday,9,129,17,2015-05-09T00:00:00,2015,May,Saturday,9,129,17,D14,Toronto,80,Palmerston-Little Italy (80),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPOT,DUOLIE,BM,2,BLU,1400.0,STOLEN,16270,"{'type': 'Point', 'coordinates': (-79.4251468, 43.65386853)}"
-16305,8636,GO-20149005793,THEFT UNDER,2014-08-10T00:00:00,2014,August,Sunday,10,222,2,2014-08-10T00:00:00,2014,August,Sunday,10,222,21,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,VELOCITY DEEP V,RG,1,RED,175.0,STOLEN,16271,"{'type': 'Point', 'coordinates': (-79.40844929, 43.6517934)}"
-16306,21441,GO-20161892341,THEFT OF EBIKE UNDER $5000,2016-10-24T00:00:00,2016,October,Monday,24,298,14,2016-10-24T00:00:00,2016,October,Monday,24,298,16,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,XPR,EL,0,RED,1500.0,STOLEN,16272,"{'type': 'Point', 'coordinates': (-79.40278753, 43.65745805)}"
-16307,15372,GO-20143120263,B&E,2014-10-14T00:00:00,2014,October,Tuesday,14,287,14,2014-10-17T00:00:00,2014,October,Friday,17,290,8,D14,Toronto,81,Trinity-Bellwoods (81),"Private Property Structure (Pool, Shed, Detached Garage)",Other,BRIDGESTONE,XO-1,RG,12,ONG,1500.0,STOLEN,16273,"{'type': 'Point', 'coordinates': (-79.41840704, 43.65358398)}"
-16308,7418,GO-20201895950,THEFT UNDER,2020-10-05T00:00:00,2020,October,Monday,5,279,15,2020-10-06T00:00:00,2020,October,Tuesday,6,280,7,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FUJI,,OT,1,BLK,390.0,STOLEN,16274,"{'type': 'Point', 'coordinates': (-79.41262508, 43.66216917)}"
-16309,18792,GO-20209032336,THEFT UNDER,2020-10-17T00:00:00,2020,October,Saturday,17,291,19,2020-12-18T00:00:00,2020,December,Friday,18,353,11,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MOSCOW,EL,21,WHI,1839.0,STOLEN,16275,"{'type': 'Point', 'coordinates': (-79.4000091, 43.65794797)}"
-16310,2005,GO-20189002745,THEFT UNDER,2018-01-27T00:00:00,2018,January,Saturday,27,27,14,2018-01-27T00:00:00,2018,January,Saturday,27,27,20,D14,Toronto,81,Trinity-Bellwoods (81),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UK,,OT,1,RED,26.0,STOLEN,16276,"{'type': 'Point', 'coordinates': (-79.41589897, 43.64718351)}"
-16311,25802,GO-20202208352,THEFT UNDER - BICYCLE,2020-11-04T00:00:00,2020,November,Wednesday,4,309,16,2020-11-21T00:00:00,2020,November,Saturday,21,326,19,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,AMIGO,INFINITE PLUS,EL,3,SIL,2500.0,STOLEN,16277,"{'type': 'Point', 'coordinates': (-79.39348694, 43.66726478)}"
-16312,85,GO-20179001712,THEFT UNDER - BICYCLE,2017-02-07T00:00:00,2017,February,Tuesday,7,38,22,2017-02-08T00:00:00,2017,February,Wednesday,8,39,16,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,,RG,1,BLK,300.0,STOLEN,16278,"{'type': 'Point', 'coordinates': (-79.41481904, 43.66434022)}"
-16313,17340,GO-20209015582,THEFT UNDER,2020-06-14T00:00:00,2020,June,Sunday,14,166,23,2020-06-17T00:00:00,2020,June,Wednesday,17,169,17,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,TR,FX1,OT,21,LGR,629.0,STOLEN,16311,"{'type': 'Point', 'coordinates': (-79.40679618, 43.65428654)}"
-16314,8684,GO-20149006042,THEFT UNDER,2014-08-15T00:00:00,2014,August,Friday,15,227,21,2014-08-18T00:00:00,2014,August,Monday,18,230,9,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,EXPRESSWAY,FO,7,WHI,600.0,STOLEN,16279,"{'type': 'Point', 'coordinates': (-79.40854285, 43.64628799)}"
-16315,15402,GO-20159003313,THEFT UNDER,2015-06-03T00:00:00,2015,June,Wednesday,3,154,7,2015-06-03T00:00:00,2015,June,Wednesday,3,154,17,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,12,RED,0.0,STOLEN,16280,"{'type': 'Point', 'coordinates': (-79.41481904, 43.66434022)}"
-16316,93,GO-20179002111,THEFT UNDER - BICYCLE,2017-02-17T00:00:00,2017,February,Friday,17,48,18,2017-02-17T00:00:00,2017,February,Friday,17,48,21,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,TO,18,GRY,800.0,STOLEN,16281,"{'type': 'Point', 'coordinates': (-79.41607423, 43.66406885)}"
-16317,2045,GO-20189005787,THEFT UNDER - BICYCLE,2017-12-25T00:00:00,2017,December,Monday,25,359,12,2018-02-23T00:00:00,2018,February,Friday,23,54,12,D14,Toronto,81,Trinity-Bellwoods (81),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,,RG,1,BLK,350.0,STOLEN,16282,"{'type': 'Point', 'coordinates': (-79.42274326, 43.64938527)}"
-16318,7427,GO-20209025767,THEFT UNDER,2020-10-07T00:00:00,2020,October,Wednesday,7,281,8,2020-10-07T00:00:00,2020,October,Wednesday,7,281,19,D14,Toronto,80,Palmerston-Little Italy (80),Schools During Supervised Activity,Educational,TR,DOMANE AL 2,RC,10,BLU,1000.0,STOLEN,16283,"{'type': 'Point', 'coordinates': (-79.41385535, 43.66193043)}"
-16319,8686,GO-20149006064,THEFT UNDER,2014-07-22T00:00:00,2014,July,Tuesday,22,203,15,2014-08-18T00:00:00,2014,August,Monday,18,230,16,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MARES,OT,20,BLU,2000.0,STOLEN,16284,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-16320,15384,GO-20149008621,THEFT UNDER,2014-12-06T00:00:00,2014,December,Saturday,6,340,12,2014-12-08T00:00:00,2014,December,Monday,8,342,12,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,RIDE 3,OT,18,OTH,700.0,STOLEN,16285,"{'type': 'Point', 'coordinates': (-79.42243149, 43.64735043)}"
-16321,19405,GO-20179007154,THEFT UNDER,2017-05-28T00:00:00,2017,May,Sunday,28,148,23,2017-05-29T00:00:00,2017,May,Monday,29,149,8,D52,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,CR,,MT,18,GRY,300.0,STOLEN,16286,"{'type': 'Point', 'coordinates': (-79.40307045, 43.6655101)}"
-16322,21448,GO-20162039061,THEFT UNDER - BICYCLE,2016-11-16T00:00:00,2016,November,Wednesday,16,321,18,2016-11-16T00:00:00,2016,November,Wednesday,16,321,19,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,'TERN',FO,0,BLK,2800.0,STOLEN,16287,"{'type': 'Point', 'coordinates': (-79.40180671, 43.65765229)}"
-16323,19418,GO-20171201232,THEFT UNDER - BICYCLE,2017-06-22T00:00:00,2017,June,Thursday,22,173,19,2017-07-05T00:00:00,2017,July,Wednesday,5,186,12,D52,Toronto,79,University (79),Universities / Colleges,Educational,NORCO,VR-4,OT,0,BLK,600.0,STOLEN,16288,"{'type': 'Point', 'coordinates': (-79.3934451, 43.65919971)}"
-16324,2125,GO-20189010158,THEFT UNDER - BICYCLE,2017-11-21T00:00:00,2017,November,Tuesday,21,325,20,2018-04-01T00:00:00,2018,April,Sunday,1,91,20,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,CITY GLIDE,RG,21,GRN,800.0,STOLEN,16289,"{'type': 'Point', 'coordinates': (-79.41767813, 43.65169734)}"
-16325,134,GO-20179002783,THEFT UNDER - BICYCLE,2017-03-03T00:00:00,2017,March,Friday,3,62,23,2017-03-05T00:00:00,2017,March,Sunday,5,64,15,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,RAPTOR,RG,1,RED,500.0,STOLEN,16290,"{'type': 'Point', 'coordinates': (-79.41021074, 43.66266863)}"
-16326,7447,GO-20209026151,THEFT UNDER,2020-10-08T00:00:00,2020,October,Thursday,8,282,1,2020-10-11T00:00:00,2020,October,Sunday,11,285,16,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,TR,1000SL,RG,8,ONG,500.0,STOLEN,16291,"{'type': 'Point', 'coordinates': (-79.42617452000002, 43.65644357)}"
-16327,21452,GO-20162198347,B&E,2016-12-12T00:00:00,2016,December,Monday,12,347,4,2016-12-12T00:00:00,2016,December,Monday,12,347,5,D14,Toronto,79,University (79),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,BRODIE,ROMAX,OT,1,LGR,2600.0,STOLEN,16292,"{'type': 'Point', 'coordinates': (-79.40180671, 43.65765229)}"
-16328,8816,GO-20142854232,B&E,2014-09-05T00:00:00,2014,September,Friday,5,248,20,2014-09-06T00:00:00,2014,September,Saturday,6,249,8,D14,Toronto,81,Trinity-Bellwoods (81),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CANNONDALE,SCAPEL,MT,0,GRYWHI,6000.0,STOLEN,16293,"{'type': 'Point', 'coordinates': (-79.40679618, 43.65428654)}"
-16329,15413,GO-20159003946,THEFT UNDER,2015-06-26T00:00:00,2015,June,Friday,26,177,7,2015-06-26T00:00:00,2015,June,Friday,26,177,20,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,TR,,OT,18,GRY,250.0,STOLEN,16294,"{'type': 'Point', 'coordinates': (-79.41257586, 43.6554626)}"
-16330,15416,GO-20151102021,THEFT UNDER,2015-06-29T00:00:00,2015,June,Monday,29,180,22,2015-06-30T00:00:00,2015,June,Tuesday,30,181,16,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,GRAND TOURING,RC,27,MRN,300.0,STOLEN,16295,"{'type': 'Point', 'coordinates': (-79.41874469, 43.65445612)}"
-16331,19430,GO-20179011741,THEFT UNDER - BICYCLE,2017-08-05T00:00:00,2017,August,Saturday,5,217,7,2017-08-05T00:00:00,2017,August,Saturday,5,217,13,D52,Toronto,79,University (79),Schools During Un-Supervised Activity,Educational,RM,,MT,21,BLU,600.0,STOLEN,16296,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-16332,2167,GO-2018681502,THEFT UNDER - BICYCLE,2018-04-13T00:00:00,2018,April,Friday,13,103,20,2018-04-16T00:00:00,2018,April,Monday,16,106,19,D14,Toronto,81,Trinity-Bellwoods (81),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,LANGSTER,RC,1,WHIYEL,1600.0,STOLEN,16297,"{'type': 'Point', 'coordinates': (-79.42266495, 43.65440014)}"
-16333,174,GO-20179003855,THEFT UNDER - BICYCLE,2017-03-20T00:00:00,2017,March,Monday,20,79,15,2017-03-27T00:00:00,2017,March,Monday,27,86,13,D14,Toronto,80,Palmerston-Little Italy (80),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,EDGE,RG,1,BLK,400.0,STOLEN,16298,"{'type': 'Point', 'coordinates': (-79.42939853, 43.66115068)}"
-16334,7455,GO-20209026251,THEFT UNDER,2020-10-11T00:00:00,2020,October,Sunday,11,285,23,2020-10-13T00:00:00,2020,October,Tuesday,13,287,11,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,GI,20 ESCAPE 2 DIS,OT,16,OTH,850.0,STOLEN,16299,"{'type': 'Point', 'coordinates': (-79.41965465, 43.65700653)}"
-16335,21453,GO-20162198347,B&E,2016-12-12T00:00:00,2016,December,Monday,12,347,4,2016-12-12T00:00:00,2016,December,Monday,12,347,5,D14,Toronto,79,University (79),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SALSA CYCLE,MARAKESH,OT,1,BLK,2100.0,STOLEN,16300,"{'type': 'Point', 'coordinates': (-79.40180671, 43.65765229)}"
-16336,15441,GO-20159005635,THEFT UNDER,2015-08-08T00:00:00,2015,August,Saturday,8,220,8,2015-08-11T00:00:00,2015,August,Tuesday,11,223,11,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,7.2,RG,24,WHI,621.0,STOLEN,16301,"{'type': 'Point', 'coordinates': (-79.4190502, 43.64858181)}"
-16337,15475,GO-20159010550,THEFT UNDER,2015-12-03T00:00:00,2015,December,Thursday,3,337,0,2015-12-06T00:00:00,2015,December,Sunday,6,340,20,D14,Toronto,81,Trinity-Bellwoods (81),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RA,,MT,15,PNK,150.0,STOLEN,16302,"{'type': 'Point', 'coordinates': (-79.41216034, 43.65444514)}"
-16338,15500,GO-20169004747,THEFT UNDER,2016-05-19T00:00:00,2016,May,Thursday,19,140,18,2016-05-20T00:00:00,2016,May,Friday,20,141,18,D14,Toronto,81,Trinity-Bellwoods (81),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KO,JAKE,OT,9,RED,1000.0,STOLEN,16303,"{'type': 'Point', 'coordinates': (-79.42636436, 43.65360014)}"
-16339,15504,GO-2016968737,THEFT UNDER - BICYCLE,2016-06-03T00:00:00,2016,June,Friday,3,155,23,2016-06-04T00:00:00,2016,June,Saturday,4,156,9,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,UNKN,OT,0,BLU,150.0,STOLEN,16304,"{'type': 'Point', 'coordinates': (-79.40678242, 43.64746148)}"
-16340,15505,GO-2016968737,THEFT UNDER - BICYCLE,2016-06-03T00:00:00,2016,June,Friday,3,155,23,2016-06-04T00:00:00,2016,June,Saturday,4,156,9,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,SPARKS DELUX,OT,0,BLU,200.0,STOLEN,16305,"{'type': 'Point', 'coordinates': (-79.40678242, 43.64746148)}"
-16341,15506,GO-2016968737,THEFT UNDER - BICYCLE,2016-06-03T00:00:00,2016,June,Friday,3,155,23,2016-06-04T00:00:00,2016,June,Saturday,4,156,9,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,BOYZ ROSSER,OT,0,BRZ,0.0,STOLEN,16306,"{'type': 'Point', 'coordinates': (-79.40678242, 43.64746148)}"
-16342,15515,GO-20161123180,THEFT UNDER - BICYCLE,2016-06-25T00:00:00,2016,June,Saturday,25,177,18,2016-06-27T00:00:00,2016,June,Monday,27,179,12,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RALEIGH,,RC,6,BLK,700.0,STOLEN,16307,"{'type': 'Point', 'coordinates': (-79.41882219, 43.64420339)}"
-16343,15550,GO-20169010147,THEFT UNDER,2016-09-04T00:00:00,2016,September,Sunday,4,248,13,2016-09-08T00:00:00,2016,September,Thursday,8,252,13,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,1,,0.0,STOLEN,16308,"{'type': 'Point', 'coordinates': (-79.41782286, 43.64883079)}"
-16344,15566,GO-20169012110,THEFT UNDER - BICYCLE,2016-10-15T00:00:00,2016,October,Saturday,15,289,11,2016-10-15T00:00:00,2016,October,Saturday,15,289,20,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,OT,CLASSICO,RG,7,BLK,600.0,STOLEN,16309,"{'type': 'Point', 'coordinates': (-79.41512289, 43.6538567)}"
-16345,15576,GO-20169013569,THEFT UNDER - BICYCLE,2016-11-15T00:00:00,2016,November,Tuesday,15,320,1,2016-11-18T00:00:00,2016,November,Friday,18,323,12,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,FARGO,MT,24,LGR,1250.0,STOLEN,16310,"{'type': 'Point', 'coordinates': (-79.41136773000001, 43.65571437)}"
-16346,17351,GO-20209016935,THEFT UNDER,2020-07-04T00:00:00,2020,July,Saturday,4,186,23,2020-07-06T00:00:00,2020,July,Monday,6,188,12,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,DISTRICT S 2014,OT,1,BLK,700.0,STOLEN,16313,"{'type': 'Point', 'coordinates': (-79.41012202000002, 43.65597091)}"
-16347,17353,GO-20209017298,THEFT UNDER,2020-07-10T00:00:00,2020,July,Friday,10,192,20,2020-07-11T00:00:00,2020,July,Saturday,11,193,10,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,RALEIGH,RG,7,ONG,500.0,STOLEN,16314,"{'type': 'Point', 'coordinates': (-79.41191235, 43.65380423)}"
-16348,17354,GO-20209017571,THEFT UNDER,2020-07-12T00:00:00,2020,July,Sunday,12,194,10,2020-07-14T00:00:00,2020,July,Tuesday,14,196,17,D14,Toronto,81,Trinity-Bellwoods (81),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,NUTRA,RG,24,WHI,500.0,STOLEN,16315,"{'type': 'Point', 'coordinates': (-79.41142197, 43.65082905)}"
-16349,17357,GO-20201368992,B&E,2020-07-22T00:00:00,2020,July,Wednesday,22,204,20,2020-07-23T00:00:00,2020,July,Thursday,23,205,11,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,LOUIS GARNEAU,SONIX SPORT,OT,16,BLKRED,1000.0,STOLEN,16316,"{'type': 'Point', 'coordinates': (-79.41142197, 43.65082905)}"
-16350,17358,GO-20201368992,B&E,2020-07-22T00:00:00,2020,July,Wednesday,22,204,20,2020-07-23T00:00:00,2020,July,Thursday,23,205,11,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,PURE CYCLE,ORIGINAL,RG,1,YELOTH,500.0,STOLEN,16317,"{'type': 'Point', 'coordinates': (-79.41142197, 43.65082905)}"
-16351,17384,GO-20209022034,THEFT UNDER,2020-09-01T00:00:00,2020,September,Tuesday,1,245,3,2020-09-01T00:00:00,2020,September,Tuesday,1,245,23,D14,Toronto,81,Trinity-Bellwoods (81),Bar / Restaurant,Commercial,UK,,RG,1,BLK,300.0,STOLEN,16318,"{'type': 'Point', 'coordinates': (-79.40968237000001, 43.65155403)}"
-16352,17392,GO-20209023957,THEFT UNDER,2020-09-20T00:00:00,2020,September,Sunday,20,264,21,2020-09-21T00:00:00,2020,September,Monday,21,265,12,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,DB,PODIUM 24,RC,21,BLK,1200.0,STOLEN,16319,"{'type': 'Point', 'coordinates': (-79.40723527, 43.65205839)}"
-16353,17401,GO-20209026766,THEFT UNDER,2020-09-11T00:00:00,2020,September,Friday,11,255,12,2020-10-17T00:00:00,2020,October,Saturday,17,291,12,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,OT,ACE,MT,8,BLK,395.0,STOLEN,16320,"{'type': 'Point', 'coordinates': (-79.42013894, 43.64783378)}"
-16354,17405,GO-20202058880,MISCHIEF UNDER,2020-10-26T00:00:00,2020,October,Monday,26,300,17,2020-10-30T00:00:00,2020,October,Friday,30,304,16,D14,Toronto,81,Trinity-Bellwoods (81),"Private Property Structure (Pool, Shed, Detached Garage)",Other,FUJI,FEATHER,RG,1,BLK,900.0,STOLEN,16321,"{'type': 'Point', 'coordinates': (-79.406958, 43.65137878)}"
-16355,17411,GO-20202228751,THEFT UNDER - BICYCLE,2020-11-19T00:00:00,2020,November,Thursday,19,324,19,2020-11-26T00:00:00,2020,November,Thursday,26,331,19,D14,Toronto,81,Trinity-Bellwoods (81),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CANNONDALE,QUICK,OT,24,BLK,650.0,STOLEN,16322,"{'type': 'Point', 'coordinates': (-79.40705633, 43.64835501)}"
-16356,17413,GO-20209030843,THEFT UNDER,2020-11-26T00:00:00,2020,November,Thursday,26,331,17,2020-11-29T00:00:00,2020,November,Sunday,29,334,11,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,,HYBRID,RG,6,BLU,320.0,STOLEN,16323,"{'type': 'Point', 'coordinates': (-79.40552931, 43.64782493)}"
-16357,17556,GO-20199012427,THEFT UNDER,2019-04-19T00:00:00,2019,April,Friday,19,109,2,2019-04-19T00:00:00,2019,April,Friday,19,109,12,D14,Toronto,81,Trinity-Bellwoods (81),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,RG,15,BLU,700.0,STOLEN,16324,"{'type': 'Point', 'coordinates': (-79.41661387, 43.6490227)}"
-16358,17557,GO-2019706250,THEFT UNDER,2019-04-19T00:00:00,2019,April,Friday,19,109,7,2019-04-19T00:00:00,2019,April,Friday,19,109,10,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RAZOR,E200,SC,1,WHI,429.0,STOLEN,16325,"{'type': 'Point', 'coordinates': (-79.41782286, 43.64883079)}"
-16359,17583,GO-20199019254,THEFT UNDER - BICYCLE,2019-06-16T00:00:00,2019,June,Sunday,16,167,1,2019-06-19T00:00:00,2019,June,Wednesday,19,170,14,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,TK3,RC,1,BLK,1500.0,STOLEN,16326,"{'type': 'Point', 'coordinates': (-79.4205639, 43.64888501)}"
-16360,17590,GO-20199020822,THEFT UNDER,2019-06-24T00:00:00,2019,June,Monday,24,175,0,2019-07-03T00:00:00,2019,July,Wednesday,3,184,11,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,1,BLK,500.0,STOLEN,16327,"{'type': 'Point', 'coordinates': (-79.42343283, 43.64619112)}"
-16361,17591,GO-20199020907,THEFT UNDER - BICYCLE,2019-06-27T00:00:00,2019,June,Thursday,27,178,7,2019-07-03T00:00:00,2019,July,Wednesday,3,184,20,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,1,BLK,150.0,STOLEN,16328,"{'type': 'Point', 'coordinates': (-79.42343283, 43.64619112)}"
-16362,17594,GO-20199022240,THEFT UNDER - BICYCLE,2019-07-13T00:00:00,2019,July,Saturday,13,194,1,2019-07-14T00:00:00,2019,July,Sunday,14,195,13,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,1,BLK,400.0,STOLEN,16329,"{'type': 'Point', 'coordinates': (-79.41512289, 43.6538567)}"
-16363,17597,GO-20191318278,THEFT UNDER - BICYCLE,2019-07-14T00:00:00,2019,July,Sunday,14,195,11,2019-07-14T00:00:00,2019,July,Sunday,14,195,15,D14,Toronto,81,Trinity-Bellwoods (81),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,APPOLO,RC,1,GRNSIL,700.0,STOLEN,16330,"{'type': 'Point', 'coordinates': (-79.42013894, 43.64783378)}"
-16364,17599,GO-20199022748,THEFT UNDER,2019-07-18T00:00:00,2019,July,Thursday,18,199,7,2019-07-18T00:00:00,2019,July,Thursday,18,199,8,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,RA,CADEN I8,RG,8,BLK,1000.0,STOLEN,16331,"{'type': 'Point', 'coordinates': (-79.42013894, 43.64783378)}"
-16365,17612,GO-20199024397,THEFT UNDER,2019-07-20T00:00:00,2019,July,Saturday,20,201,14,2019-07-30T00:00:00,2019,July,Tuesday,30,211,14,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ESPRIT STEP THR,RG,7,GLD,450.0,STOLEN,16332,"{'type': 'Point', 'coordinates': (-79.40844929, 43.6517934)}"
-16366,17613,GO-20199024397,THEFT UNDER,2019-07-20T00:00:00,2019,July,Saturday,20,201,14,2019-07-30T00:00:00,2019,July,Tuesday,30,211,14,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KH,URBAN SOUL 2019,RG,7,BLK,500.0,STOLEN,16333,"{'type': 'Point', 'coordinates': (-79.40844929, 43.6517934)}"
-16367,17635,GO-20199029244,THEFT UNDER,2019-09-09T00:00:00,2019,September,Monday,9,252,2,2019-09-09T00:00:00,2019,September,Monday,9,252,8,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,XC27,MT,15,BLU,900.0,STOLEN,16334,"{'type': 'Point', 'coordinates': (-79.41890145, 43.65145047)}"
-16368,17638,GO-20199030084,THEFT UNDER - BICYCLE,2019-09-08T00:00:00,2019,September,Sunday,8,251,19,2019-09-15T00:00:00,2019,September,Sunday,15,258,13,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,OT,VITA DISC,RG,27,BLK,900.0,STOLEN,16335,"{'type': 'Point', 'coordinates': (-79.41142197, 43.65082905)}"
-16369,17703,GO-2020623781,THEFT UNDER,2020-03-25T00:00:00,2020,March,Wednesday,25,85,14,2020-03-29T00:00:00,2020,March,Sunday,29,89,15,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,,MT,18,WHI,500.0,STOLEN,16336,"{'type': 'Point', 'coordinates': (-79.4046631, 43.64896803)}"
-16370,17709,GO-20209011772,THEFT UNDER,2020-04-22T00:00:00,2020,April,Wednesday,22,113,18,2020-04-23T00:00:00,2020,April,Thursday,23,114,11,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,OT,TRACE,MT,21,GRY,409.0,STOLEN,16337,"{'type': 'Point', 'coordinates': (-79.4190502, 43.64858181)}"
-16371,17711,GO-20209012004,THEFT UNDER,2020-04-21T00:00:00,2020,April,Tuesday,21,112,14,2020-04-27T00:00:00,2020,April,Monday,27,118,14,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE,OT,12,RED,586.0,STOLEN,16338,"{'type': 'Point', 'coordinates': (-79.42144875, 43.65465622)}"
-16372,17720,GO-20171568912,THEFT OF EBIKE UNDER $5000,2017-08-29T00:00:00,2017,August,Tuesday,29,241,22,2017-08-30T00:00:00,2017,August,Wednesday,30,242,9,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DAMAKI,100RG1005005,EL,1,BLU,3000.0,STOLEN,16339,"{'type': 'Point', 'coordinates': (-79.40828337, 43.64808588)}"
-16373,17748,GO-20171851614,B&E,2017-06-28T00:00:00,2017,June,Wednesday,28,179,8,2017-10-12T00:00:00,2017,October,Thursday,12,285,17,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,TREK,,MT,15,BLU,600.0,STOLEN,16340,"{'type': 'Point', 'coordinates': (-79.42144875, 43.65465622)}"
-16374,17752,GO-20179018528,THEFT UNDER - BICYCLE,2017-10-29T00:00:00,2017,October,Sunday,29,302,2,2017-10-30T00:00:00,2017,October,Monday,30,303,13,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,MIXTE 3,RG,3,LBL,500.0,STOLEN,16341,"{'type': 'Point', 'coordinates': (-79.42343283, 43.64619112)}"
-16375,17771,GO-20179020969,THEFT UNDER,2017-11-20T00:00:00,2017,November,Monday,20,324,7,2017-12-01T00:00:00,2017,December,Friday,1,335,7,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,FJ,STROLL,RG,1,WHI,800.0,STOLEN,16342,"{'type': 'Point', 'coordinates': (-79.40767084, 43.64646816)}"
-16376,17802,GO-2018769996,THEFT FROM MOTOR VEHICLE UNDER,2018-04-29T00:00:00,2018,April,Sunday,29,119,19,2018-04-30T00:00:00,2018,April,Monday,30,120,7,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,INDIE 3 FORMA,MT,12,GRNYEL,825.0,STOLEN,16343,"{'type': 'Point', 'coordinates': (-79.41732195, 43.65381073)}"
-16377,17806,GO-20189013768,THEFT UNDER - BICYCLE,2018-05-04T00:00:00,2018,May,Friday,4,124,10,2018-05-04T00:00:00,2018,May,Friday,4,124,10,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SAVONA 650MTB,MT,7,BLU,380.0,STOLEN,16344,"{'type': 'Point', 'coordinates': (-79.42115741, 43.64372573)}"
-16378,17807,GO-20189013891,THEFT UNDER,2018-05-04T00:00:00,2018,May,Friday,4,124,23,2018-05-05T00:00:00,2018,May,Saturday,5,125,14,D14,Toronto,81,Trinity-Bellwoods (81),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KO,,OT,9,BLU,700.0,STOLEN,16345,"{'type': 'Point', 'coordinates': (-79.41134558, 43.64735559)}"
-16379,17827,GO-20189018623,THEFT UNDER - BICYCLE,2018-06-12T00:00:00,2018,June,Tuesday,12,163,23,2018-06-13T00:00:00,2018,June,Wednesday,13,164,22,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RC,1,BLU,500.0,STOLEN,16346,"{'type': 'Point', 'coordinates': (-79.42074205, 43.64933336)}"
-16380,17828,GO-20189018623,THEFT UNDER - BICYCLE,2018-06-12T00:00:00,2018,June,Tuesday,12,163,23,2018-06-13T00:00:00,2018,June,Wednesday,13,164,22,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RC,1,,500.0,STOLEN,16347,"{'type': 'Point', 'coordinates': (-79.42074205, 43.64933336)}"
-16381,17845,GO-20189020443,THEFT UNDER - BICYCLE,2018-06-26T00:00:00,2018,June,Tuesday,26,177,19,2018-06-27T00:00:00,2018,June,Wednesday,27,178,12,D14,Toronto,81,Trinity-Bellwoods (81),"Open Areas (Lakes, Parks, Rivers)",Outside,MA,BLACK MENS,RG,24,BLK,700.0,STOLEN,16348,"{'type': 'Point', 'coordinates': (-79.41393685, 43.64520426)}"
-16382,17848,GO-20189020859,THEFT UNDER - BICYCLE,2018-06-30T00:00:00,2018,June,Saturday,30,181,11,2018-07-01T00:00:00,2018,July,Sunday,1,182,10,D14,Toronto,81,Trinity-Bellwoods (81),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,KROSSROADS HYBR,RG,21,BLK,400.0,STOLEN,16349,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-16383,17854,GO-20181269534,B&E,2018-07-12T00:00:00,2018,July,Thursday,12,193,5,2018-07-12T00:00:00,2018,July,Thursday,12,193,11,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,SURLY,TRAVELLERS CHEC,OT,10,BRN,5000.0,STOLEN,16350,"{'type': 'Point', 'coordinates': (-79.42343283, 43.64619112)}"
-16384,17857,GO-20189022262,THEFT UNDER - BICYCLE,2018-07-12T00:00:00,2018,July,Thursday,12,193,10,2018-07-13T00:00:00,2018,July,Friday,13,194,10,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SOLOIST,RG,1,BLK,375.0,STOLEN,16351,"{'type': 'Point', 'coordinates': (-79.42034149, 43.64832811)}"
-16385,18175,GO-20169012726,THEFT UNDER,2016-10-23T00:00:00,2016,October,Sunday,23,297,11,2016-10-28T00:00:00,2016,October,Friday,28,302,17,D14,Toronto,81,Trinity-Bellwoods (81),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,RG,15,BLU,500.0,STOLEN,16367,"{'type': 'Point', 'coordinates': (-79.41910912, 43.6450235)}"
-16386,17862,GO-20189023685,THEFT UNDER - BICYCLE,2018-07-24T00:00:00,2018,July,Tuesday,24,205,3,2018-07-24T00:00:00,2018,July,Tuesday,24,205,10,D14,Toronto,81,Trinity-Bellwoods (81),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,18 FX 3 DISC BL,RG,27,BLK,949.0,STOLEN,16352,"{'type': 'Point', 'coordinates': (-79.42343283, 43.64619112)}"
-16387,17865,GO-20189024180,THEFT UNDER - BICYCLE,2018-07-19T00:00:00,2018,July,Thursday,19,200,23,2018-07-27T00:00:00,2018,July,Friday,27,208,13,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,TREK 18 FX 2 BL,RG,18,,800.0,STOLEN,16353,"{'type': 'Point', 'coordinates': (-79.41217785, 43.6527161)}"
-16388,17877,GO-20189025661,THEFT UNDER - BICYCLE,2018-08-09T00:00:00,2018,August,Thursday,9,221,15,2018-08-09T00:00:00,2018,August,Thursday,9,221,17,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,DEW,RG,24,WHI,0.0,STOLEN,16354,"{'type': 'Point', 'coordinates': (-79.41136773000001, 43.65571437)}"
-16389,17881,GO-20189026449,THEFT UNDER - BICYCLE,2018-08-14T00:00:00,2018,August,Tuesday,14,226,21,2018-08-15T00:00:00,2018,August,Wednesday,15,227,8,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,OT,HARPER,RG,1,BLK,300.0,STOLEN,16355,"{'type': 'Point', 'coordinates': (-79.42174172, 43.65197666)}"
-16390,17886,GO-20189027070,THEFT UNDER - BICYCLE,2018-08-19T00:00:00,2018,August,Sunday,19,231,20,2018-08-20T00:00:00,2018,August,Monday,20,232,8,D14,Toronto,81,Trinity-Bellwoods (81),Schools During Un-Supervised Activity,Educational,CA,,RG,27,GRY,798.0,STOLEN,16356,"{'type': 'Point', 'coordinates': (-79.40914548, 43.64788984)}"
-16391,17903,GO-20181676617,THEFT UNDER - BICYCLE,2018-09-09T00:00:00,2018,September,Sunday,9,252,23,2018-09-10T00:00:00,2018,September,Monday,10,253,12,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MACNIEL,265C,TO,18,BLU,600.0,STOLEN,16357,"{'type': 'Point', 'coordinates': (-79.40828337, 43.64808588)}"
-16392,18102,GO-20179011454,THEFT UNDER - BICYCLE,2017-07-31T00:00:00,2017,July,Monday,31,212,23,2017-08-01T00:00:00,2017,August,Tuesday,1,213,11,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,FCR2,TO,27,BLU,400.0,STOLEN,16358,"{'type': 'Point', 'coordinates': (-79.4206804, 43.64584287)}"
-16393,19457,GO-20179018405,THEFT UNDER,2017-10-27T00:00:00,2017,October,Friday,27,300,5,2017-10-28T00:00:00,2017,October,Saturday,28,301,15,D52,Toronto,79,University (79),Universities / Colleges,Educational,OT,,RG,14,,200.0,STOLEN,16392,"{'type': 'Point', 'coordinates': (-79.39988102, 43.65980157)}"
-16394,18103,GO-20179011454,THEFT UNDER - BICYCLE,2017-07-31T00:00:00,2017,July,Monday,31,212,23,2017-08-01T00:00:00,2017,August,Tuesday,1,213,11,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,FASTROAD SLR1,TO,20,BLU,850.0,STOLEN,16359,"{'type': 'Point', 'coordinates': (-79.4206804, 43.64584287)}"
-16395,18112,GO-20179012802,THEFT UNDER - BICYCLE,2017-08-18T00:00:00,2017,August,Friday,18,230,22,2017-08-19T00:00:00,2017,August,Saturday,19,231,10,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,ALLEZ,TO,14,BLK,950.0,STOLEN,16360,"{'type': 'Point', 'coordinates': (-79.41257586, 43.6554626)}"
-16396,18124,GO-20161213237,THEFT UNDER - BICYCLE,2016-07-10T00:00:00,2016,July,Sunday,10,192,18,2016-07-11T00:00:00,2016,July,Monday,11,193,10,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,,MT,21,BLUBLK,350.0,STOLEN,16361,"{'type': 'Point', 'coordinates': (-79.40844929, 43.6517934)}"
-16397,18125,GO-20169007165,THEFT UNDER,2016-07-13T00:00:00,2016,July,Wednesday,13,195,11,2016-07-13T00:00:00,2016,July,Wednesday,13,195,21,D14,Toronto,81,Trinity-Bellwoods (81),Bar / Restaurant,Commercial,OT,LAGER,RG,1,SIL,600.0,STOLEN,16362,"{'type': 'Point', 'coordinates': (-79.42074205, 43.64933336)}"
-16398,18135,GO-20161447725,THEFT UNDER - BICYCLE,2016-08-12T00:00:00,2016,August,Friday,12,225,16,2016-08-16T00:00:00,2016,August,Tuesday,16,229,12,D14,Toronto,81,Trinity-Bellwoods (81),"Open Areas (Lakes, Parks, Rivers)",Outside,UNKNOWN MAKE,UNKNOWN,MT,12,BLK,364.0,STOLEN,16363,"{'type': 'Point', 'coordinates': (-79.41824821, 43.64982451)}"
-16399,18144,GO-20169009783,THEFT UNDER - BICYCLE,2016-08-13T00:00:00,2016,August,Saturday,13,226,9,2016-09-01T00:00:00,2016,September,Thursday,1,245,9,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,PE,,RG,12,BLU,1000.0,STOLEN,16364,"{'type': 'Point', 'coordinates': (-79.41728265, 43.64743681)}"
-16400,18151,GO-20169010831,THEFT UNDER - BICYCLE,2016-09-20T00:00:00,2016,September,Tuesday,20,264,22,2016-09-21T00:00:00,2016,September,Wednesday,21,265,9,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,,OT,21,RED,120.0,STOLEN,16365,"{'type': 'Point', 'coordinates': (-79.41775154, 43.64528750000001)}"
-16401,18163,GO-20169011288,THEFT UNDER - BICYCLE,2016-09-29T00:00:00,2016,September,Thursday,29,273,10,2016-09-29T00:00:00,2016,September,Thursday,29,273,10,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,NERO,RG,16,BLK,790.0,STOLEN,16366,"{'type': 'Point', 'coordinates': (-79.41782286, 43.64883079)}"
-16402,18182,GO-201798746,B&E,2017-01-17T00:00:00,2017,January,Tuesday,17,17,3,2017-01-17T00:00:00,2017,January,Tuesday,17,17,3,D14,Toronto,81,Trinity-Bellwoods (81),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,AVOW ADVANCED (,RC,11,WHI,2599.0,STOLEN,16368,"{'type': 'Point', 'coordinates': (-79.40653598, 43.64668181)}"
-16403,18209,GO-2017879132,B&E,2017-05-17T00:00:00,2017,May,Wednesday,17,137,6,2017-05-19T00:00:00,2017,May,Friday,19,139,18,D14,Toronto,81,Trinity-Bellwoods (81),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CLAUDE BUTLER,HYBRID,OT,21,GRY,500.0,STOLEN,16369,"{'type': 'Point', 'coordinates': (-79.41012202000002, 43.65597091)}"
-16404,18350,GO-20149004923,THEFT UNDER,2014-07-12T00:00:00,2014,July,Saturday,12,193,12,2014-07-12T00:00:00,2014,July,Saturday,12,193,16,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,3,CRM,,STOLEN,16370,"{'type': 'Point', 'coordinates': (-79.40968237000001, 43.65155403)}"
-16405,18384,GO-20149008755,THEFT UNDER,2014-12-12T00:00:00,2014,December,Friday,12,346,18,2014-12-15T00:00:00,2014,December,Monday,15,349,12,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,GI,DEFY COMPOSITE,RC,10,WHI,3000.0,STOLEN,16371,"{'type': 'Point', 'coordinates': (-79.40892011, 43.65622962)}"
-16406,18392,GO-20159001921,THEFT UNDER,2015-04-14T00:00:00,2015,April,Tuesday,14,104,1,2015-04-14T00:00:00,2015,April,Tuesday,14,104,16,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,RIDEAU,RG,28,BGE,850.0,STOLEN,16372,"{'type': 'Point', 'coordinates': (-79.42318712, 43.65060576)}"
-16407,18408,GO-20159003111,THEFT UNDER,2015-05-24T00:00:00,2015,May,Sunday,24,144,2,2015-05-26T00:00:00,2015,May,Tuesday,26,146,15,D14,Toronto,81,Trinity-Bellwoods (81),"Private Property Structure (Pool, Shed, Detached Garage)",Other,FJ,FEAHTER,RC,1,BLK,769.0,STOLEN,16373,"{'type': 'Point', 'coordinates': (-79.41979948, 43.64692616)}"
-16408,18421,GO-20159004151,THEFT UNDER,2015-07-02T00:00:00,2015,July,Thursday,2,183,3,2015-07-03T00:00:00,2015,July,Friday,3,184,15,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ELEGANCE 701,RG,14,PLE,428.0,STOLEN,16374,"{'type': 'Point', 'coordinates': (-79.4251468, 43.65386853)}"
-16409,18426,GO-20151178546,THEFT UNDER,2015-07-10T00:00:00,2015,July,Friday,10,191,19,2015-07-13T00:00:00,2015,July,Monday,13,194,14,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,SEEK 0,MT,8,GRY,1500.0,STOLEN,16375,"{'type': 'Point', 'coordinates': (-79.41012202000002, 43.65597091)}"
-16410,18478,GO-2016678594,THEFT UNDER - BICYCLE,2016-04-21T00:00:00,2016,April,Thursday,21,112,1,2016-04-21T00:00:00,2016,April,Thursday,21,112,8,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MASI,SPECIALE COMMUT,RC,1,BLU,700.0,RECOVERED,16376,"{'type': 'Point', 'coordinates': (-79.41728265, 43.64743681)}"
-16411,18482,GO-2016745876,THEFT UNDER - BICYCLE,2016-05-01T00:00:00,2016,May,Sunday,1,122,17,2016-05-01T00:00:00,2016,May,Sunday,1,122,17,D14,Toronto,81,Trinity-Bellwoods (81),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,,OT,12,LGR,700.0,STOLEN,16377,"{'type': 'Point', 'coordinates': (-79.42318712, 43.65060576)}"
-16412,20784,GO-20201409602,B&E,2020-07-29T00:00:00,2020,July,Wednesday,29,211,5,2020-07-29T00:00:00,2020,July,Wednesday,29,211,6,D14,Toronto,81,Trinity-Bellwoods (81),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GIANT,ESCAPE 3,RG,18,GRY,,STOLEN,16378,"{'type': 'Point', 'coordinates': (-79.40653598, 43.64668181)}"
-16413,20785,GO-20201409602,B&E,2020-07-29T00:00:00,2020,July,Wednesday,29,211,5,2020-07-29T00:00:00,2020,July,Wednesday,29,211,6,D14,Toronto,81,Trinity-Bellwoods (81),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GIANT,TALON 3,MT,18,GRN,,STOLEN,16379,"{'type': 'Point', 'coordinates': (-79.40653598, 43.64668181)}"
-16414,20786,GO-20201409602,B&E,2020-07-29T00:00:00,2020,July,Wednesday,29,211,5,2020-07-29T00:00:00,2020,July,Wednesday,29,211,6,D14,Toronto,81,Trinity-Bellwoods (81),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GIANT,TCX SLR,RC,18,YEL,,STOLEN,16380,"{'type': 'Point', 'coordinates': (-79.40653598, 43.64668181)}"
-16415,20787,GO-20201409602,B&E,2020-07-29T00:00:00,2020,July,Wednesday,29,211,5,2020-07-29T00:00:00,2020,July,Wednesday,29,211,6,D14,Toronto,81,Trinity-Bellwoods (81),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GIANT,FASTROAD E PLUS,EL,1,BLK,,STOLEN,16381,"{'type': 'Point', 'coordinates': (-79.40653598, 43.64668181)}"
-16416,20793,GO-20209020001,THEFT UNDER,2020-08-11T00:00:00,2020,August,Tuesday,11,224,22,2020-08-12T00:00:00,2020,August,Wednesday,12,225,13,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,NO,,RG,21,RED,500.0,STOLEN,16382,"{'type': 'Point', 'coordinates': (-79.41782286, 43.64883079)}"
-16417,20799,GO-20201580249,B&E,2020-08-20T00:00:00,2020,August,Thursday,20,233,22,2020-08-22T00:00:00,2020,August,Saturday,22,235,14,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NISHIKI,ALIEN,MT,18,WHI,1000.0,STOLEN,16383,"{'type': 'Point', 'coordinates': (-79.41490809000001, 43.65049859)}"
-16418,20803,GO-20209022380,THEFT UNDER,2020-09-03T00:00:00,2020,September,Thursday,3,247,18,2020-09-04T00:00:00,2020,September,Friday,4,248,22,D14,Toronto,81,Trinity-Bellwoods (81),"Private Property Structure (Pool, Shed, Detached Garage)",Other,IN,,MT,21,GLD,0.0,STOLEN,16384,"{'type': 'Point', 'coordinates': (-79.41728265, 43.64743681)}"
-16419,20810,GO-20209022644,THEFT UNDER,2020-09-07T00:00:00,2020,September,Monday,7,251,0,2020-09-08T00:00:00,2020,September,Tuesday,8,252,15,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,LEXA C54 SEEGLA,RC,17,SIL,1141.0,STOLEN,16385,"{'type': 'Point', 'coordinates': (-79.41732195, 43.65381073)}"
-16420,20817,GO-20209024825,THEFT UNDER,2020-09-26T00:00:00,2020,September,Saturday,26,270,10,2020-09-28T00:00:00,2020,September,Monday,28,272,21,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,1,CRM,150.0,STOLEN,16386,"{'type': 'Point', 'coordinates': (-79.41142197, 43.65082905)}"
-16421,21454,GO-20162198347,B&E,2016-12-12T00:00:00,2016,December,Monday,12,347,4,2016-12-12T00:00:00,2016,December,Monday,12,347,5,D14,Toronto,79,University (79),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,BRODIE,ROMAX SS,OT,1,BLK,2300.0,STOLEN,16387,"{'type': 'Point', 'coordinates': (-79.40180671, 43.65765229)}"
-16422,19432,GO-20171463939,THEFT UNDER - BICYCLE,2017-07-24T00:00:00,2017,July,Monday,24,205,12,2017-08-14T00:00:00,2017,August,Monday,14,226,7,D52,Toronto,79,University (79),Universities / Colleges,Educational,TREK,,OT,0,SIL,600.0,STOLEN,16388,"{'type': 'Point', 'coordinates': (-79.40099018, 43.66036731)}"
-16423,2169,GO-20189011482,THEFT UNDER - BICYCLE,2018-04-12T00:00:00,2018,April,Thursday,12,102,0,2018-04-13T00:00:00,2018,April,Friday,13,103,10,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,,OT,21,BLK,900.0,STOLEN,16389,"{'type': 'Point', 'coordinates': (-79.40678242, 43.64746148)}"
-16424,320,GO-20179005603,THEFT UNDER - BICYCLE,2017-05-02T00:00:00,2017,May,Tuesday,2,122,0,2017-05-02T00:00:00,2017,May,Tuesday,2,122,16,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,OT,MIXTE,OT,3,LBL,850.0,STOLEN,16390,"{'type': 'Point', 'coordinates': (-79.42366276, 43.65697891)}"
-16425,21455,GO-20162198347,B&E,2016-12-12T00:00:00,2016,December,Monday,12,347,4,2016-12-12T00:00:00,2016,December,Monday,12,347,5,D14,Toronto,79,University (79),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,ALL-CITY,BIG BLOCK,OT,1,LGR,1500.0,STOLEN,16391,"{'type': 'Point', 'coordinates': (-79.40180671, 43.65765229)}"
-16426,2251,GO-20189013768,THEFT UNDER - BICYCLE,2018-05-04T00:00:00,2018,May,Friday,4,124,10,2018-05-04T00:00:00,2018,May,Friday,4,124,10,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SAVONA 650 MTB,MT,21,BLU,380.0,STOLEN,16393,"{'type': 'Point', 'coordinates': (-79.42115741, 43.64372573)}"
-16427,2293,GO-20189014645,THEFT UNDER,2018-05-12T00:00:00,2018,May,Saturday,12,132,12,2018-05-12T00:00:00,2018,May,Saturday,12,132,12,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,3,BLK,800.0,STOLEN,16394,"{'type': 'Point', 'coordinates': (-79.41485345, 43.65320024)}"
-16428,7541,GO-20209027601,THEFT UNDER,2020-10-10T00:00:00,2020,October,Saturday,10,284,17,2020-10-25T00:00:00,2020,October,Sunday,25,299,10,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CC,TOULOUSE 700C,RG,7,YEL,350.0,STOLEN,16395,"{'type': 'Point', 'coordinates': (-79.42063919, 43.65928043)}"
-16429,21496,GO-20179007808,THEFT UNDER,2017-06-09T00:00:00,2017,June,Friday,9,160,15,2017-06-09T00:00:00,2017,June,Friday,9,160,20,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,20,,200.0,STOLEN,16396,"{'type': 'Point', 'coordinates': (-79.40137171, 43.66130203)}"
-16430,19466,GO-20173200832,THEFT UNDER - BICYCLE,2017-10-04T00:00:00,2017,October,Wednesday,4,277,16,2017-12-15T00:00:00,2017,December,Friday,15,349,12,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,,OT,0,WHI,250.0,STOLEN,16397,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-16431,2298,GO-20189014790,THEFT UNDER - BICYCLE,2018-05-11T00:00:00,2018,May,Friday,11,131,21,2018-05-13T00:00:00,2018,May,Sunday,13,133,19,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,ROYALE II,TO,12,GRY,500.0,STOLEN,16398,"{'type': 'Point', 'coordinates': (-79.41642785, 43.64515479)}"
-16432,414,GO-20179006563,THEFT UNDER - BICYCLE,2017-05-06T00:00:00,2017,May,Saturday,6,126,1,2017-05-18T00:00:00,2017,May,Thursday,18,138,13,D14,Toronto,80,Palmerston-Little Italy (80),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,FX2,MT,8,BLK,750.0,STOLEN,16399,"{'type': 'Point', 'coordinates': (-79.41025366, 43.65955808)}"
-16433,7585,GO-20209028394,THEFT UNDER,2020-10-28T00:00:00,2020,October,Wednesday,28,302,12,2020-11-02T00:00:00,2020,November,Monday,2,307,13,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SC,HYBRID BIKE 700,OT,21,BLK,650.0,STOLEN,16400,"{'type': 'Point', 'coordinates': (-79.42087545, 43.66302552)}"
-16434,21804,GO-20149004755,THEFT UNDER,2014-06-23T00:00:00,2014,June,Monday,23,174,20,2014-07-07T00:00:00,2014,July,Monday,7,188,9,D14,Toronto,79,University (79),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RM,,MT,14,RED,700.0,STOLEN,16401,"{'type': 'Point', 'coordinates': (-79.40382824, 43.66269877)}"
-16435,21806,GO-20149004931,THEFT UNDER,2014-07-11T00:00:00,2014,July,Friday,11,192,15,2014-07-12T00:00:00,2014,July,Saturday,12,193,21,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,YORKVILLE,RG,21,SIL,400.0,STOLEN,16402,"{'type': 'Point', 'coordinates': (-79.40170888, 43.66215594)}"
-16436,21881,GO-20159003894,THEFT UNDER,2015-06-23T00:00:00,2015,June,Tuesday,23,174,14,2015-06-23T00:00:00,2015,June,Tuesday,23,174,22,D14,Toronto,79,University (79),Retirement Home,Other,GI,,RG,8,YEL,200.0,STOLEN,16403,"{'type': 'Point', 'coordinates': (-79.40403711, 43.6572083)}"
-16437,21883,GO-20159003945,THEFT UNDER,2015-06-24T00:00:00,2015,June,Wednesday,24,175,16,2015-06-25T00:00:00,2015,June,Thursday,25,176,16,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,SYNAPSE,RC,21,BLK,1500.0,STOLEN,16404,"{'type': 'Point', 'coordinates': (-79.40743417, 43.66591416)}"
-16438,21913,GO-20151438539,THEFT UNDER,2015-08-21T00:00:00,2015,August,Friday,21,233,10,2015-08-21T00:00:00,2015,August,Friday,21,233,10,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,MT,18,BLKRED,180.0,STOLEN,16405,"{'type': 'Point', 'coordinates': (-79.40198436, 43.65811126)}"
-16439,21948,GO-20169002468,THEFT UNDER,2016-03-10T00:00:00,2016,March,Thursday,10,70,19,2016-03-18T00:00:00,2016,March,Friday,18,78,14,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,KO,DR. DEW,RG,27,GRN,1500.0,STOLEN,16406,"{'type': 'Point', 'coordinates': (-79.40307045, 43.6655101)}"
-16440,22158,GO-20179008817,THEFT UNDER - BICYCLE,2017-06-23T00:00:00,2017,June,Friday,23,174,6,2017-06-24T00:00:00,2017,June,Saturday,24,175,12,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,OT,18,BLK,600.0,STOLEN,16407,"{'type': 'Point', 'coordinates': (-79.40383181, 43.66665689)}"
-16441,22606,GO-20191390368,THEFT UNDER,2019-07-16T00:00:00,2019,July,Tuesday,16,197,0,2019-07-24T00:00:00,2019,July,Wednesday,24,205,12,D52,Toronto,79,University (79),"Open Areas (Lakes, Parks, Rivers)",Outside,UNKNOWN MAKE,TMC JITTERBUG,EL,0,PNK,1300.0,STOLEN,16408,"{'type': 'Point', 'coordinates': (-79.40149998, 43.66716143)}"
-16442,22655,GO-20191897138,THEFT UNDER - BICYCLE,2019-09-24T00:00:00,2019,September,Tuesday,24,267,10,2019-10-02T00:00:00,2019,October,Wednesday,2,275,10,D52,Toronto,79,University (79),Schools During Un-Supervised Activity,Educational,DEVINCI,HARD TIP,MT,21,SIL,600.0,STOLEN,16410,"{'type': 'Point', 'coordinates': (-79.39488188, 43.66100963)}"
-16443,22696,GO-20209008713,THEFT UNDER,2020-03-12T00:00:00,2020,March,Thursday,12,72,22,2020-03-12T00:00:00,2020,March,Thursday,12,72,22,D52,Toronto,79,University (79),Universities / Colleges,Educational,OT,UMBRIA 2,RG,21,RED,600.0,STOLEN,16411,"{'type': 'Point', 'coordinates': (-79.39316984, 43.66306859)}"
-16444,23008,GO-20179003987,THEFT UNDER - BICYCLE,2017-03-25T00:00:00,2017,March,Saturday,25,84,22,2017-03-29T00:00:00,2017,March,Wednesday,29,88,23,D52,Toronto,79,University (79),Universities / Colleges,Educational,OT,,RG,1,YEL,450.0,STOLEN,16412,"{'type': 'Point', 'coordinates': (-79.3934451, 43.65919971)}"
-16445,23014,GO-2017871963,PROPERTY - FOUND,2017-05-17T00:00:00,2017,May,Wednesday,17,137,20,2017-05-17T00:00:00,2017,May,Wednesday,17,137,20,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,ROCKY MOUNTAIN,,MT,21,RED,,RECOVERED,16413,"{'type': 'Point', 'coordinates': (-79.39815878000002, 43.65826015)}"
-16446,23021,GO-20171017174,THEFT UNDER - BICYCLE,2017-06-01T00:00:00,2017,June,Thursday,1,152,1,2017-06-08T00:00:00,2017,June,Thursday,8,159,12,D52,Toronto,79,University (79),Unknown,Other,OZARK TRAIL,,OT,0,GRY,110.0,STOLEN,16414,"{'type': 'Point', 'coordinates': (-79.39676402, 43.66012322)}"
-16447,23022,GO-20179007776,THEFT UNDER - BICYCLE,2017-06-08T00:00:00,2017,June,Thursday,8,159,13,2017-06-09T00:00:00,2017,June,Friday,9,160,13,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,FO,5,GRY,300.0,STOLEN,16415,"{'type': 'Point', 'coordinates': (-79.39699693, 43.65848407)}"
-16448,23034,GO-20179008937,THEFT UNDER - BICYCLE,2017-06-25T00:00:00,2017,June,Sunday,25,176,20,2017-06-26T00:00:00,2017,June,Monday,26,177,14,D52,Toronto,79,University (79),Universities / Colleges,Educational,CA,CANNONDALE CAAD,RC,27,WHI,600.0,STOLEN,16416,"{'type': 'Point', 'coordinates': (-79.39488188, 43.66100963)}"
-16449,23035,GO-20179008968,THEFT UNDER - BICYCLE,2017-06-22T00:00:00,2017,June,Thursday,22,173,18,2017-06-26T00:00:00,2017,June,Monday,26,177,20,D52,Toronto,79,University (79),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,ESCAPE 2,RG,24,BLK,650.0,STOLEN,16417,"{'type': 'Point', 'coordinates': (-79.39348694, 43.66726478)}"
-16450,23045,GO-20171425185,THEFT UNDER - BICYCLE,2017-07-15T00:00:00,2017,July,Saturday,15,196,12,2017-08-08T00:00:00,2017,August,Tuesday,8,220,9,D52,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,OTHER,,MT,21,LBL,120.0,STOLEN,16418,"{'type': 'Point', 'coordinates': (-79.40149998, 43.66716143)}"
-16451,23050,GO-20179012492,THEFT UNDER - BICYCLE,2017-08-15T00:00:00,2017,August,Tuesday,15,227,14,2017-08-15T00:00:00,2017,August,Tuesday,15,227,18,D52,Toronto,79,University (79),Universities / Colleges,Educational,,,OT,18,SIL,300.0,STOLEN,16419,"{'type': 'Point', 'coordinates': (-79.39316984, 43.66306859)}"
-16452,23052,GO-20171531398,THEFT UNDER - BICYCLE,2017-08-05T00:00:00,2017,August,Saturday,5,217,15,2017-08-24T00:00:00,2017,August,Thursday,24,236,11,D52,Toronto,79,University (79),Universities / Colleges,Educational,SEDONA,,OT,0,,400.0,STOLEN,16420,"{'type': 'Point', 'coordinates': (-79.39734175, 43.66803279)}"
-16453,23064,GO-20179016463,THEFT UNDER - BICYCLE,2017-10-03T00:00:00,2017,October,Tuesday,3,276,21,2017-10-04T00:00:00,2017,October,Wednesday,4,277,18,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,16 XTC ADVANCED,MT,10,BLK,2089.0,STOLEN,16421,"{'type': 'Point', 'coordinates': (-79.39894426, 43.66543776)}"
-16454,23134,GO-20181399309,THEFT UNDER - BICYCLE,2018-07-30T00:00:00,2018,July,Monday,30,211,16,2018-07-30T00:00:00,2018,July,Monday,30,211,16,D52,Toronto,79,University (79),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,MT,0,,,STOLEN,16422,"{'type': 'Point', 'coordinates': (-79.40207036, 43.66305191)}"
-16455,23140,GO-20189026768,THEFT UNDER - BICYCLE,2018-08-01T00:00:00,2018,August,Wednesday,1,213,12,2018-08-17T00:00:00,2018,August,Friday,17,229,11,D52,Toronto,79,University (79),Universities / Colleges,Educational,OT,STRAGGLER,TO,20,BLK,3500.0,STOLEN,16423,"{'type': 'Point', 'coordinates': (-79.39988102, 43.65980157)}"
-16456,23147,GO-20181674942,THEFT UNDER - BICYCLE,2018-09-06T00:00:00,2018,September,Thursday,6,249,13,2018-09-06T00:00:00,2018,September,Thursday,6,249,15,D52,Toronto,79,University (79),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SUPERCYCLE,,OT,21,ONGGRY,170.0,STOLEN,16424,"{'type': 'Point', 'coordinates': (-79.39901086, 43.66089417)}"
-16457,23155,GO-20189032568,THEFT UNDER - BICYCLE,2018-10-01T00:00:00,2018,October,Monday,1,274,15,2018-10-01T00:00:00,2018,October,Monday,1,274,17,D52,Toronto,79,University (79),Convenience Stores,Commercial,UK,ARCADE,BM,9,BLK,550.0,STOLEN,16425,"{'type': 'Point', 'coordinates': (-79.4000091, 43.65794797)}"
-16458,23161,GO-20181878914,THEFT UNDER - BICYCLE,2018-10-09T00:00:00,2018,October,Tuesday,9,282,13,2018-10-11T00:00:00,2018,October,Thursday,11,284,12,D52,Toronto,79,University (79),Universities / Colleges,Educational,SCHWINN,DOLARE 1200,RG,24,DBL,300.0,STOLEN,16426,"{'type': 'Point', 'coordinates': (-79.39689839, 43.6604462)}"
-16459,23167,GO-20189036167,THEFT UNDER - BICYCLE,2018-10-18T00:00:00,2018,October,Thursday,18,291,9,2018-10-30T00:00:00,2018,October,Tuesday,30,303,10,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ALGONQUIN,MT,25,RED,150.0,STOLEN,16427,"{'type': 'Point', 'coordinates': (-79.39488188, 43.66100963)}"
-16460,23187,GO-20199021150,THEFT UNDER,2019-07-05T00:00:00,2019,July,Friday,5,186,9,2019-07-05T00:00:00,2019,July,Friday,5,186,18,D52,Toronto,79,University (79),Universities / Colleges,Educational,OT,SQUARE TREKKING,RG,27,BLK,1400.0,STOLEN,16428,"{'type': 'Point', 'coordinates': (-79.39934598, 43.66172465)}"
-16461,23858,GO-20209027882,THEFT UNDER,2020-10-26T00:00:00,2020,October,Monday,26,300,22,2020-10-28T00:00:00,2020,October,Wednesday,28,302,17,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BI,38CM TORINO DAM,OT,8,CRM,900.0,STOLEN,16429,"{'type': 'Point', 'coordinates': (-79.40382824, 43.66269877)}"
-16462,23863,GO-20209029892,THEFT UNDER,2020-11-16T00:00:00,2020,November,Monday,16,321,13,2020-11-17T00:00:00,2020,November,Tuesday,17,322,21,D14,Toronto,79,University (79),Schools During Supervised Activity,Educational,OT,B'TWIN,MT,27,GRY,1450.0,STOLEN,16430,"{'type': 'Point', 'coordinates': (-79.40447971, 43.66652336)}"
-16463,23989,GO-20189034076,THEFT UNDER - BICYCLE,2018-10-14T00:00:00,2018,October,Sunday,14,287,21,2018-10-14T00:00:00,2018,October,Sunday,14,287,22,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,,MT,21,GRY,0.0,STOLEN,16431,"{'type': 'Point', 'coordinates': (-79.40904976, 43.65980581)}"
-16464,24034,GO-20199015106,THEFT UNDER - BICYCLE,2019-05-15T00:00:00,2019,May,Wednesday,15,135,9,2019-05-15T00:00:00,2019,May,Wednesday,15,135,12,D14,Toronto,79,University (79),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,PROJEKT 8,RG,8,BLK,644.0,STOLEN,16432,"{'type': 'Point', 'coordinates': (-79.40198436, 43.65811126)}"
-16465,24077,GO-20199024276,THEFT UNDER - BICYCLE,2019-07-29T00:00:00,2019,July,Monday,29,210,13,2019-07-29T00:00:00,2019,July,Monday,29,210,18,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,OSLO,OT,21,BLU,1000.0,STOLEN,16433,"{'type': 'Point', 'coordinates': (-79.40316102, 43.65738236)}"
-16466,24102,GO-20191779454,THEFT UNDER - BICYCLE,2019-09-13T00:00:00,2019,September,Friday,13,256,13,2019-09-16T00:00:00,2019,September,Monday,16,259,13,D14,Toronto,79,University (79),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,MT,15,WHI,600.0,STOLEN,16434,"{'type': 'Point', 'coordinates': (-79.40411393, 43.66079116)}"
-16467,24125,GO-20199037474,THEFT UNDER,2019-11-14T00:00:00,2019,November,Thursday,14,318,13,2019-11-14T00:00:00,2019,November,Thursday,14,318,14,D14,Toronto,79,University (79),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,VFR 4,RG,10,BLK,979.0,STOLEN,16435,"{'type': 'Point', 'coordinates': (-79.40311297, 43.66093051)}"
-16468,24130,GO-20199039421,THEFT UNDER,2019-11-30T00:00:00,2019,November,Saturday,30,334,16,2019-11-30T00:00:00,2019,November,Saturday,30,334,23,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MEC HOLD STEADY,RG,8,SIL,1350.0,STOLEN,16436,"{'type': 'Point', 'coordinates': (-79.40531586, 43.66635847)}"
-16469,24131,GO-20199039421,THEFT UNDER,2019-11-30T00:00:00,2019,November,Saturday,30,334,16,2019-11-30T00:00:00,2019,November,Saturday,30,334,23,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,INDIE 3 2018,RG,24,BLK,650.0,STOLEN,16437,"{'type': 'Point', 'coordinates': (-79.40531586, 43.66635847)}"
-16470,24170,GO-20209012821,THEFT UNDER,2020-05-02T00:00:00,2020,May,Saturday,2,123,15,2020-05-10T00:00:00,2020,May,Sunday,10,131,16,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,MA,,RG,21,,696.0,STOLEN,16438,"{'type': 'Point', 'coordinates': (-79.40411393, 43.66079116)}"
-16471,24190,GO-20209015640,THEFT UNDER,2020-06-18T00:00:00,2020,June,Thursday,18,170,0,2020-06-18T00:00:00,2020,June,Thursday,18,170,11,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,1,GRY,300.0,STOLEN,16439,"{'type': 'Point', 'coordinates': (-79.40518896, 43.65697872)}"
-16472,24343,GO-20189022838,THEFT UNDER - BICYCLE,2018-07-15T00:00:00,2018,July,Sunday,15,196,18,2018-07-17T00:00:00,2018,July,Tuesday,17,198,19,D14,Toronto,79,University (79),Bar / Restaurant,Commercial,RM,ROADBIKE&METRO5,RC,27,RED,2600.0,STOLEN,16440,"{'type': 'Point', 'coordinates': (-79.40864191, 43.66567614)}"
-16473,24353,GO-20189024950,THEFT UNDER - BICYCLE,2018-08-02T00:00:00,2018,August,Thursday,2,214,13,2018-08-03T00:00:00,2018,August,Friday,3,215,0,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CERVELO,SOLOIST,RC,11,RED,1500.0,STOLEN,16441,"{'type': 'Point', 'coordinates': (-79.40864191, 43.66567614)}"
-16474,24354,GO-20189024950,THEFT UNDER - BICYCLE,2018-08-02T00:00:00,2018,August,Thursday,2,214,13,2018-08-03T00:00:00,2018,August,Friday,3,215,0,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CERVELO,S5,RC,11,GRY,3500.0,STOLEN,16442,"{'type': 'Point', 'coordinates': (-79.40864191, 43.66567614)}"
-16475,24364,GO-20189026485,THEFT UNDER - BICYCLE,2018-08-15T00:00:00,2018,August,Wednesday,15,227,0,2018-08-15T00:00:00,2018,August,Wednesday,15,227,12,D14,Toronto,79,University (79),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,BEDFORD 7,RG,7,BLK,650.0,STOLEN,16443,"{'type': 'Point', 'coordinates': (-79.40781164, 43.6636351)}"
-16476,24608,GO-20142337758,THEFT UNDER,2014-06-19T00:00:00,2014,June,Thursday,19,170,21,2014-06-21T00:00:00,2014,June,Saturday,21,172,14,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,UNKNOWN,OT,0,BLK,,STOLEN,16444,"{'type': 'Point', 'coordinates': (-79.40599871, 43.66226023)}"
-16477,24612,GO-20149004498,THEFT UNDER,2014-06-26T00:00:00,2014,June,Thursday,26,177,17,2014-06-27T00:00:00,2014,June,Friday,27,178,15,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KH,FLITE 100 (2013,RC,1,GRY,750.0,STOLEN,16445,"{'type': 'Point', 'coordinates': (-79.40311297, 43.66093051)}"
-16478,8817,GO-20142854232,B&E,2014-09-05T00:00:00,2014,September,Friday,5,248,20,2014-09-06T00:00:00,2014,September,Saturday,6,249,8,D14,Toronto,81,Trinity-Bellwoods (81),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CANNONDALE,,RG,0,BLK,1000.0,STOLEN,16446,"{'type': 'Point', 'coordinates': (-79.40679618, 43.65428654)}"
-16479,24614,GO-20149004599,THEFT UNDER,2014-06-30T00:00:00,2014,June,Monday,30,181,18,2014-07-01T00:00:00,2014,July,Tuesday,1,182,15,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,,ECKO 2.2,MT,18,WHI,240.0,STOLEN,16447,"{'type': 'Point', 'coordinates': (-79.40904976, 43.65980581)}"
-16480,24616,GO-20142431728,THEFT FROM MOTOR VEHICLE OVER,2014-07-04T00:00:00,2014,July,Friday,4,185,16,2014-07-04T00:00:00,2014,July,Friday,4,185,20,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,FS 9.9XX1,MT,11,BLK,11000.0,STOLEN,16448,"{'type': 'Point', 'coordinates': (-79.40661068, 43.66388855)}"
-16481,24634,GO-20149005365,THEFT UNDER,2013-11-14T00:00:00,2013,November,Thursday,14,318,16,2014-07-26T00:00:00,2014,July,Saturday,26,207,14,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,1,YEL,500.0,STOLEN,16449,"{'type': 'Point', 'coordinates': (-79.40810809, 43.66434335)}"
-16482,15414,GO-20159003946,THEFT UNDER,2015-06-26T00:00:00,2015,June,Friday,26,177,7,2015-06-26T00:00:00,2015,June,Friday,26,177,20,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,TR,7.2 FX WSD 13,OT,18,PLE,250.0,STOLEN,16451,"{'type': 'Point', 'coordinates': (-79.41257586, 43.6554626)}"
-16483,24639,GO-20149006224,THEFT UNDER,2014-08-23T00:00:00,2014,August,Saturday,23,235,2,2014-08-23T00:00:00,2014,August,Saturday,23,235,10,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,,RG,21,,,STOLEN,16452,"{'type': 'Point', 'coordinates': (-79.40478414, 43.66249403)}"
-16484,24640,GO-20149006224,THEFT UNDER,2014-08-23T00:00:00,2014,August,Saturday,23,235,2,2014-08-23T00:00:00,2014,August,Saturday,23,235,10,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,BUB,RG,3,GRY,1000.0,STOLEN,16453,"{'type': 'Point', 'coordinates': (-79.40478414, 43.66249403)}"
-16485,24709,GO-20159003753,THEFT UNDER,2015-06-19T00:00:00,2015,June,Friday,19,170,8,2015-06-19T00:00:00,2015,June,Friday,19,170,12,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ROADERSTER,TO,1,MRN,800.0,STOLEN,16454,"{'type': 'Point', 'coordinates': (-79.40447971, 43.66652336)}"
-16486,24734,GO-20151397913,THEFT UNDER,2015-08-09T00:00:00,2015,August,Sunday,9,221,18,2015-08-14T00:00:00,2015,August,Friday,14,226,19,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,OTHER,,RG,1,BLKGRN,600.0,STOLEN,16455,"{'type': 'Point', 'coordinates': (-79.40307045, 43.6655101)}"
-16487,24745,GO-20151513247,B&E,2015-09-02T00:00:00,2015,September,Wednesday,2,245,11,2015-09-02T00:00:00,2015,September,Wednesday,2,245,11,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,HUFFY,RIVAL,MT,21,LBL,130.0,RECOVERED,16456,"{'type': 'Point', 'coordinates': (-79.40244418000002, 43.65929925)}"
-16488,24759,GO-20151760034,B&E,2015-10-11T00:00:00,2015,October,Sunday,11,284,20,2015-10-12T00:00:00,2015,October,Monday,12,285,15,D14,Toronto,79,University (79),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,AVANTI SPORT,RG,10,,180.0,STOLEN,16457,"{'type': 'Point', 'coordinates': (-79.4078215, 43.66005724)}"
-16489,24760,GO-20151760034,B&E,2015-10-11T00:00:00,2015,October,Sunday,11,284,20,2015-10-12T00:00:00,2015,October,Monday,12,285,15,D14,Toronto,79,University (79),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,,RG,10,REDBRN,250.0,STOLEN,16458,"{'type': 'Point', 'coordinates': (-79.4078215, 43.66005724)}"
-16490,24761,GO-20151760034,B&E,2015-10-11T00:00:00,2015,October,Sunday,11,284,20,2015-10-12T00:00:00,2015,October,Monday,12,285,15,D14,Toronto,79,University (79),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,RG,14,WHIYEL,300.0,STOLEN,16459,"{'type': 'Point', 'coordinates': (-79.4078215, 43.66005724)}"
-16491,24762,GO-20151760034,B&E,2015-10-11T00:00:00,2015,October,Sunday,11,284,20,2015-10-12T00:00:00,2015,October,Monday,12,285,15,D14,Toronto,79,University (79),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,RG,10,BLURED,220.0,STOLEN,16460,"{'type': 'Point', 'coordinates': (-79.4078215, 43.66005724)}"
-16492,24763,GO-20151760034,B&E,2015-10-11T00:00:00,2015,October,Sunday,11,284,20,2015-10-12T00:00:00,2015,October,Monday,12,285,15,D14,Toronto,79,University (79),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,RG,10,YELGRY,300.0,STOLEN,16461,"{'type': 'Point', 'coordinates': (-79.4078215, 43.66005724)}"
-16493,24764,GO-20151760034,B&E,2015-10-11T00:00:00,2015,October,Sunday,11,284,20,2015-10-12T00:00:00,2015,October,Monday,12,285,15,D14,Toronto,79,University (79),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,RG,10,SIL,130.0,STOLEN,16462,"{'type': 'Point', 'coordinates': (-79.4078215, 43.66005724)}"
-16494,24785,GO-20149004016,THEFT UNDER,2014-06-11T00:00:00,2014,June,Wednesday,11,162,13,2014-06-12T00:00:00,2014,June,Thursday,12,163,12,D52,Toronto,79,University (79),Universities / Colleges,Educational,SU,,MT,18,BLU,120.0,STOLEN,16463,"{'type': 'Point', 'coordinates': (-79.39699693, 43.65848407)}"
-16495,24797,GO-20142463182,THEFT UNDER,2014-07-07T00:00:00,2014,July,Monday,7,188,19,2014-07-09T00:00:00,2014,July,Wednesday,9,190,15,D52,Toronto,79,University (79),Universities / Colleges,Educational,TREK,UNKNOWN,MT,18,WHI,600.0,STOLEN,16464,"{'type': 'Point', 'coordinates': (-79.39676402, 43.66012322)}"
-16496,24804,GO-20142562513,THEFT UNDER,2014-07-23T00:00:00,2014,July,Wednesday,23,204,19,2014-07-24T00:00:00,2014,July,Thursday,24,205,13,D52,Toronto,79,University (79),Universities / Colleges,Educational,TREK,ROAD,OT,1,BLU,600.0,STOLEN,16465,"{'type': 'Point', 'coordinates': (-79.40207036, 43.66305191)}"
-16497,24819,GO-20142753726,THEFT UNDER,2014-08-21T00:00:00,2014,August,Thursday,21,233,10,2014-08-22T00:00:00,2014,August,Friday,22,234,13,D52,Toronto,79,University (79),Universities / Colleges,Educational,CARRERA,UNKNOWN,OT,1,BLUGRY,500.0,STOLEN,16466,"{'type': 'Point', 'coordinates': (-79.39112492, 43.66060888)}"
-16498,24835,GO-20143108519,THEFT UNDER,2014-10-14T00:00:00,2014,October,Tuesday,14,287,16,2014-10-15T00:00:00,2014,October,Wednesday,15,288,13,D52,Toronto,79,University (79),Universities / Colleges,Educational,TREK,UNKNOWN,OT,27,WHIBLK,600.0,STOLEN,16467,"{'type': 'Point', 'coordinates': (-79.39968364, 43.66258094)}"
-16499,24836,GO-20149007596,THEFT UNDER,2014-10-14T00:00:00,2014,October,Tuesday,14,287,18,2014-10-15T00:00:00,2014,October,Wednesday,15,288,11,D52,Toronto,79,University (79),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,DB,TWO,RG,8,BLU,449.0,STOLEN,16468,"{'type': 'Point', 'coordinates': (-79.39466302000001, 43.6623757)}"
-16500,24844,GO-2015469580,THEFT UNDER,2015-03-19T00:00:00,2015,March,Thursday,19,78,17,2015-03-20T00:00:00,2015,March,Friday,20,79,13,D52,Toronto,79,University (79),Universities / Colleges,Educational,DIADORA,,OT,21,BLKBLU,450.0,STOLEN,16469,"{'type': 'Point', 'coordinates': (-79.39676402, 43.66012322)}"
-16501,24863,GO-2015929770,THEFT UNDER,2015-06-02T00:00:00,2015,June,Tuesday,2,153,8,2015-06-03T00:00:00,2015,June,Wednesday,3,154,15,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,,TO,0,BLK,100.0,STOLEN,16470,"{'type': 'Point', 'coordinates': (-79.40067317, 43.66506891)}"
-16502,24871,GO-20151054102,THEFT UNDER,2015-06-16T00:00:00,2015,June,Tuesday,16,167,13,2015-06-23T00:00:00,2015,June,Tuesday,23,174,5,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,,MT,21,GRY,475.0,STOLEN,16471,"{'type': 'Point', 'coordinates': (-79.40137171, 43.66130203)}"
-16503,24876,GO-20151168905,THEFT UNDER,2015-07-08T00:00:00,2015,July,Wednesday,8,189,16,2015-07-10T00:00:00,2015,July,Friday,10,191,20,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,,OT,10,BLKBLU,300.0,STOLEN,16472,"{'type': 'Point', 'coordinates': (-79.39968364, 43.66258094)}"
-16504,24894,GO-20159007713,THEFT UNDER,2015-09-24T00:00:00,2015,September,Thursday,24,267,15,2015-09-24T00:00:00,2015,September,Thursday,24,267,19,D52,Toronto,79,University (79),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,ALLEGRO,RC,20,BLU,500.0,STOLEN,16473,"{'type': 'Point', 'coordinates': (-79.39901086, 43.66089417)}"
-16505,24898,GO-20159010830,THEFT UNDER,2015-12-10T00:00:00,2015,December,Thursday,10,344,22,2015-12-12T00:00:00,2015,December,Saturday,12,346,1,D52,Toronto,79,University (79),Universities / Colleges,Educational,SU,"ASCENT 19"""" FRAM",MT,21,ONG,215.0,STOLEN,16474,"{'type': 'Point', 'coordinates': (-79.39488188, 43.66100963)}"
-16506,24903,GO-2016203451,THEFT UNDER,2016-02-01T00:00:00,2016,February,Monday,1,32,12,2016-02-03T00:00:00,2016,February,Wednesday,3,34,16,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,,OT,6,RED,300.0,STOLEN,16475,"{'type': 'Point', 'coordinates': (-79.39676402, 43.66012322)}"
-16507,24905,GO-20169002233,THEFT UNDER,2016-03-11T00:00:00,2016,March,Friday,11,71,12,2016-03-11T00:00:00,2016,March,Friday,11,71,14,D52,Toronto,79,University (79),Universities / Colleges,Educational,NO,STORM 9.3,MT,24,LGR,600.0,STOLEN,16476,"{'type': 'Point', 'coordinates': (-79.39488188, 43.66100963)}"
-16508,24910,GO-2016642713,FTC PROBATION ORDER,2016-03-30T00:00:00,2016,March,Wednesday,30,90,13,2016-04-15T00:00:00,2016,April,Friday,15,106,17,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,PURE FIX,,OT,1,WHI,450.0,STOLEN,16477,"{'type': 'Point', 'coordinates': (-79.39815878000002, 43.65826015)}"
-16509,24932,GO-20161074920,THEFT UNDER - BICYCLE,2016-06-17T00:00:00,2016,June,Friday,17,169,9,2016-06-20T00:00:00,2016,June,Monday,20,172,10,D52,Toronto,79,University (79),Universities / Colleges,Educational,REEBOK,,OT,0,RED,200.0,STOLEN,16478,"{'type': 'Point', 'coordinates': (-79.39894426, 43.66543776)}"
-16510,24965,GO-20161537027,THEFT UNDER - BICYCLE,2016-08-26T00:00:00,2016,August,Friday,26,239,16,2016-08-30T00:00:00,2016,August,Tuesday,30,243,13,D52,Toronto,79,University (79),Universities / Colleges,Educational,SET ME FREE,,OT,18,BLU,300.0,STOLEN,16479,"{'type': 'Point', 'coordinates': (-79.39934598, 43.66172465)}"
-16511,24969,GO-20161615525,THEFT UNDER - BICYCLE,2016-09-08T00:00:00,2016,September,Thursday,8,252,21,2016-09-11T00:00:00,2016,September,Sunday,11,255,14,D52,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,OTHER,,MT,21,SIL,100.0,STOLEN,16480,"{'type': 'Point', 'coordinates': (-79.40149998, 43.66716143)}"
-16512,24970,GO-20161615525,THEFT UNDER - BICYCLE,2016-09-08T00:00:00,2016,September,Thursday,8,252,21,2016-09-11T00:00:00,2016,September,Sunday,11,255,14,D52,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,RALEIGH,,OT,21,SIL,200.0,STOLEN,16481,"{'type': 'Point', 'coordinates': (-79.40149998, 43.66716143)}"
-16513,24972,GO-20161633679,THEFT UNDER - BICYCLE,2016-09-10T00:00:00,2016,September,Saturday,10,254,12,2016-09-14T00:00:00,2016,September,Wednesday,14,258,10,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,,BM,0,GRY,400.0,STOLEN,16482,"{'type': 'Point', 'coordinates': (-79.40137171, 43.66130203)}"
-16514,25228,GO-20169007437,THEFT UNDER - BICYCLE,2016-07-19T00:00:00,2016,July,Tuesday,19,201,21,2016-07-19T00:00:00,2016,July,Tuesday,19,201,23,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,FO,6,GLD,200.0,STOLEN,16484,"{'type': 'Point', 'coordinates': (-79.40973033, 43.66151426)}"
-16515,25244,GO-20169008908,THEFT UNDER,2016-08-16T00:00:00,2016,August,Tuesday,16,229,9,2016-08-17T00:00:00,2016,August,Wednesday,17,230,9,D14,Toronto,79,University (79),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MA,INVERNESS,OT,1,BLK,400.0,STOLEN,16485,"{'type': 'Point', 'coordinates': (-79.40713565, 43.65840411)}"
-16516,25267,GO-20169011005,THEFT UNDER - BICYCLE,2016-09-22T00:00:00,2016,September,Thursday,22,266,20,2016-09-23T00:00:00,2016,September,Friday,23,267,22,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,7,BLK,800.0,STOLEN,16486,"{'type': 'Point', 'coordinates': (-79.40307045, 43.6655101)}"
-16517,25282,GO-20169012914,THEFT UNDER,2016-10-30T00:00:00,2016,October,Sunday,30,304,21,2016-11-02T00:00:00,2016,November,Wednesday,2,307,22,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,SU,REACTION,RG,18,LGR,279.0,STOLEN,16487,"{'type': 'Point', 'coordinates': (-79.40717904, 43.66201639)}"
-16518,25285,GO-20169013473,THEFT UNDER,2016-11-12T00:00:00,2016,November,Saturday,12,317,21,2016-11-15T00:00:00,2016,November,Tuesday,15,320,22,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,HALFWAY,FO,7,SIL,600.0,STOLEN,16488,"{'type': 'Point', 'coordinates': (-79.40743417, 43.66591416)}"
-16519,25290,GO-20179002663,THEFT UNDER - BICYCLE,2016-12-01T00:00:00,2016,December,Thursday,1,336,0,2017-03-01T00:00:00,2017,March,Wednesday,1,60,19,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,OT,CROSS,RG,24,PNK,600.0,STOLEN,16489,"{'type': 'Point', 'coordinates': (-79.40307045, 43.6655101)}"
-16520,19467,GO-20173220610,THEFT UNDER - BICYCLE,2017-10-13T00:00:00,2017,October,Friday,13,286,10,2017-12-18T00:00:00,2017,December,Monday,18,352,13,D52,Toronto,79,University (79),Universities / Colleges,Educational,NORTHROCK,,OT,0,,300.0,STOLEN,16490,"{'type': 'Point', 'coordinates': (-79.39901086, 43.66089417)}"
-16521,7618,GO-20209029297,THEFT UNDER,2020-10-10T00:00:00,2020,October,Saturday,10,284,3,2020-11-11T00:00:00,2020,November,Wednesday,11,316,15,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FJ,TREAD 1.3 15 CN,TO,18,GRY,919.0,STOLEN,16491,"{'type': 'Point', 'coordinates': (-79.42087545, 43.66302552)}"
-16522,477,GO-20179007019,THEFT UNDER,2017-05-25T00:00:00,2017,May,Thursday,25,145,22,2017-05-26T00:00:00,2017,May,Friday,26,146,15,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,OT,CRUISER,RG,1,WHI,0.0,STOLEN,16492,"{'type': 'Point', 'coordinates': (-79.41672657, 43.66262133)}"
-16523,2330,GO-20189015222,THEFT UNDER - BICYCLE,2018-05-13T00:00:00,2018,May,Sunday,13,133,23,2018-05-16T00:00:00,2018,May,Wednesday,16,136,20,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,BEDFORD,RG,7,BLK,600.0,STOLEN,16493,"{'type': 'Point', 'coordinates': (-79.40892011, 43.65622962)}"
-16524,2424,GO-20189016758,THEFT UNDER - BICYCLE,2018-05-29T00:00:00,2018,May,Tuesday,29,149,23,2018-05-30T00:00:00,2018,May,Wednesday,30,150,8,D14,Toronto,81,Trinity-Bellwoods (81),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,ESCAPE 2,RG,24,BLK,800.0,STOLEN,16494,"{'type': 'Point', 'coordinates': (-79.41013414, 43.64759136)}"
-16525,2577,GO-20189018640,THEFT UNDER - BICYCLE,2018-06-13T00:00:00,2018,June,Wednesday,13,164,12,2018-06-14T00:00:00,2018,June,Thursday,14,165,8,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,2016 GIANT ESCA,RG,21,BLK,450.0,STOLEN,16495,"{'type': 'Point', 'coordinates': (-79.41142197, 43.65082905)}"
-16526,2589,GO-20189018950,THEFT UNDER,2018-06-13T00:00:00,2018,June,Wednesday,13,164,0,2018-06-16T00:00:00,2018,June,Saturday,16,167,14,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,CLASSIC ROADSTE,RG,1,BRN,900.0,STOLEN,16496,"{'type': 'Point', 'coordinates': (-79.41013414, 43.64759136)}"
-16527,2629,GO-20189019489,THEFT UNDER - BICYCLE,2018-06-19T00:00:00,2018,June,Tuesday,19,170,23,2018-06-20T00:00:00,2018,June,Wednesday,20,171,13,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,NO,INDIE,RG,8,BLK,600.0,STOLEN,16497,"{'type': 'Point', 'coordinates': (-79.42282867000002, 43.64841385)}"
-16528,2733,GO-20189020859,THEFT UNDER - BICYCLE,2018-06-30T00:00:00,2018,June,Saturday,30,181,11,2018-07-01T00:00:00,2018,July,Sunday,1,182,10,D14,Toronto,81,Trinity-Bellwoods (81),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,KROSSROADS HYBR,RG,21,BLK,400.0,STOLEN,16498,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-16529,19587,GO-20191133447,THEFT UNDER,2019-06-17T00:00:00,2019,June,Monday,17,168,11,2019-06-19T00:00:00,2019,June,Wednesday,19,170,8,D52,Toronto,79,University (79),Universities / Colleges,Educational,JHOHT,,TO,12,BLKGRN,,STOLEN,16613,"{'type': 'Point', 'coordinates': (-79.39699693, 43.65848407)}"
-16530,2750,GO-20189021122,THEFT UNDER - BICYCLE,2018-06-01T00:00:00,2018,June,Friday,1,152,11,2018-07-04T00:00:00,2018,July,Wednesday,4,185,11,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ARIEL SPORT,MT,9,YEL,1200.0,STOLEN,16499,"{'type': 'Point', 'coordinates': (-79.41134558, 43.64735559)}"
-16531,2767,GO-20189021392,THEFT UNDER - BICYCLE,2018-07-05T00:00:00,2018,July,Thursday,5,186,9,2018-07-06T00:00:00,2018,July,Friday,6,187,0,D14,Toronto,81,Trinity-Bellwoods (81),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ST1,EL,20,GRN,0.0,STOLEN,16500,"{'type': 'Point', 'coordinates': (-79.41709658, 43.64694238)}"
-16532,2821,GO-20189022135,THEFT UNDER - BICYCLE,2018-07-12T00:00:00,2018,July,Thursday,12,193,7,2018-07-12T00:00:00,2018,July,Thursday,12,193,8,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,OT,UNKNOWN,OT,1,BLK,0.0,STOLEN,16501,"{'type': 'Point', 'coordinates': (-79.42343283, 43.64619112)}"
-16533,2917,GO-20189023440,THEFT UNDER - BICYCLE,2018-07-21T00:00:00,2018,July,Saturday,21,202,0,2018-07-22T00:00:00,2018,July,Sunday,22,203,16,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,MT,21,ONG,100.0,STOLEN,16502,"{'type': 'Point', 'coordinates': (-79.41840704, 43.65358398)}"
-16534,7801,GO-20141802880,THEFT UNDER,2014-03-31T00:00:00,2014,March,Monday,31,90,16,2014-03-31T00:00:00,2014,March,Monday,31,90,17,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,OT,6,RED,200.0,STOLEN,16503,"{'type': 'Point', 'coordinates': (-79.41607423, 43.66406885)}"
-16535,2970,GO-20189023968,THEFT UNDER - BICYCLE,2018-07-25T00:00:00,2018,July,Wednesday,25,206,18,2018-07-26T00:00:00,2018,July,Thursday,26,207,10,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,NO,HEART,RG,10,BLK,1000.0,STOLEN,16504,"{'type': 'Point', 'coordinates': (-79.41087977, 43.65130826)}"
-16536,19469,GO-2018185673,THEFT UNDER - BICYCLE,2017-11-25T00:00:00,2017,November,Saturday,25,329,17,2018-01-30T00:00:00,2018,January,Tuesday,30,30,7,D52,Toronto,79,University (79),Universities / Colleges,Educational,CAPIX,,BM,0,,150.0,STOLEN,16505,"{'type': 'Point', 'coordinates': (-79.40207036, 43.66305191)}"
-16537,480,GO-20179007055,THEFT UNDER,2017-05-26T00:00:00,2017,May,Friday,26,146,23,2017-05-27T00:00:00,2017,May,Saturday,27,147,9,D14,Toronto,80,Palmerston-Little Italy (80),Bar / Restaurant,Commercial,OT,RIVER SPORT,OT,21,RED,660.0,RECOVERED,16506,"{'type': 'Point', 'coordinates': (-79.42460593, 43.66219851)}"
-16538,7824,GO-20141859602,THEFT UNDER,2014-04-09T00:00:00,2014,April,Wednesday,9,99,17,2014-04-09T00:00:00,2014,April,Wednesday,9,99,19,D14,Toronto,80,Palmerston-Little Italy (80),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,500-XY481206202,EL,40,BLUWHI,1000.0,STOLEN,16507,"{'type': 'Point', 'coordinates': (-79.42939853, 43.66115068)}"
-16539,2971,GO-20189023968,THEFT UNDER - BICYCLE,2018-07-25T00:00:00,2018,July,Wednesday,25,206,18,2018-07-26T00:00:00,2018,July,Thursday,26,207,10,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,NO,HEART,RG,10,BLK,1000.0,STOLEN,16508,"{'type': 'Point', 'coordinates': (-79.41087977, 43.65130826)}"
-16540,19502,GO-20181161842,THEFT UNDER - BICYCLE,2018-06-15T00:00:00,2018,June,Friday,15,166,19,2018-06-26T00:00:00,2018,June,Tuesday,26,177,13,D52,Toronto,79,University (79),Universities / Colleges,Educational,CCM,,RG,0,BLU,380.0,STOLEN,16509,"{'type': 'Point', 'coordinates': (-79.40137171, 43.66130203)}"
-16541,485,GO-20179007085,THEFT UNDER,2017-05-27T00:00:00,2017,May,Saturday,27,147,20,2017-05-28T00:00:00,2017,May,Sunday,28,148,1,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FJ,TRACK,RG,1,BLK,600.0,STOLEN,16510,"{'type': 'Point', 'coordinates': (-79.41462705, 43.6605259)}"
-16542,8882,GO-20149006862,THEFT UNDER,2014-09-13T00:00:00,2014,September,Saturday,13,256,13,2014-09-13T00:00:00,2014,September,Saturday,13,256,14,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RC,10,BGE,0.0,STOLEN,16511,"{'type': 'Point', 'coordinates': (-79.42318712, 43.65060576)}"
-16543,15428,GO-20159004708,THEFT UNDER,2015-07-19T00:00:00,2015,July,Sunday,19,200,23,2015-07-20T00:00:00,2015,July,Monday,20,201,11,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,7.3 FX,RG,27,BLK,700.0,STOLEN,16512,"{'type': 'Point', 'coordinates': (-79.41385535, 43.66193043)}"
-16544,19503,GO-20189020366,THEFT UNDER - BICYCLE,2018-06-26T00:00:00,2018,June,Tuesday,26,177,19,2018-06-26T00:00:00,2018,June,Tuesday,26,177,23,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,21,DBL,0.0,STOLEN,16513,"{'type': 'Point', 'coordinates': (-79.39934598, 43.66172465)}"
-16545,15429,GO-20159004708,THEFT UNDER,2015-07-19T00:00:00,2015,July,Sunday,19,200,23,2015-07-20T00:00:00,2015,July,Monday,20,201,11,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,DB,,MT,21,RED,250.0,STOLEN,16514,"{'type': 'Point', 'coordinates': (-79.41385535, 43.66193043)}"
-16546,19505,GO-20181166930,THEFT UNDER - BICYCLE,2018-06-16T00:00:00,2018,June,Saturday,16,167,23,2018-06-27T00:00:00,2018,June,Wednesday,27,178,7,D52,Toronto,79,University (79),Universities / Colleges,Educational,UNKNOWN MAKE,,OT,0,BLKSIL,,STOLEN,16515,"{'type': 'Point', 'coordinates': (-79.40207036, 43.66305191)}"
-16547,15486,GO-20169002914,THEFT UNDER - BICYCLE,2016-03-27T00:00:00,2016,March,Sunday,27,87,1,2016-03-30T00:00:00,2016,March,Wednesday,30,90,16,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,TR,,TO,21,BLK,1000.0,STOLEN,16516,"{'type': 'Point', 'coordinates': (-79.41025366, 43.65955808)}"
-16548,15487,GO-20169003010,THEFT UNDER - BICYCLE,2016-04-02T00:00:00,2016,April,Saturday,2,93,14,2016-04-03T00:00:00,2016,April,Sunday,3,94,10,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,F7,MT,9,WHI,500.0,STOLEN,16517,"{'type': 'Point', 'coordinates': (-79.41269952000002, 43.65906954)}"
-16549,15525,GO-20169007641,THEFT UNDER - BICYCLE,2016-07-23T00:00:00,2016,July,Saturday,23,205,2,2016-07-23T00:00:00,2016,July,Saturday,23,205,14,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,SC,,RG,7,PLE,350.0,STOLEN,16518,"{'type': 'Point', 'coordinates': (-79.42490374, 43.65671556)}"
-16550,15547,GO-2016373904,PROPERTY - FOUND,2016-08-04T00:00:00,2016,August,Thursday,4,217,23,2016-09-01T00:00:00,2016,September,Thursday,1,245,10,D14,Toronto,80,Palmerston-Little Italy (80),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RALEIGH,,OT,24,BLK,,UNKNOWN,16519,"{'type': 'Point', 'coordinates': (-79.42023359, 43.65491084)}"
-16551,15585,GO-20179003049,THEFT UNDER,2017-03-09T00:00:00,2017,March,Thursday,9,68,23,2017-03-10T00:00:00,2017,March,Friday,10,69,0,D14,Toronto,80,Palmerston-Little Italy (80),Bar / Restaurant,Commercial,FJ,STROLL,RG,1,BLK,800.0,STOLEN,16520,"{'type': 'Point', 'coordinates': (-79.42681894, 43.66173648)}"
-16552,15601,GO-20179005016,THEFT UNDER - BICYCLE,2017-04-20T00:00:00,2017,April,Thursday,20,110,23,2017-04-21T00:00:00,2017,April,Friday,21,111,9,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,DEWEY 2016,RG,24,MRN,600.0,STOLEN,16521,"{'type': 'Point', 'coordinates': (-79.4127959, 43.66088637)}"
-16553,15603,GO-20179005540,THEFT UNDER - BICYCLE,2017-04-30T00:00:00,2017,April,Sunday,30,120,5,2017-05-01T00:00:00,2017,May,Monday,1,121,22,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,MIXTE 3,RG,3,BLU,700.0,STOLEN,16522,"{'type': 'Point', 'coordinates': (-79.42184411, 43.65903647)}"
-16554,15613,GO-20179008037,THEFT UNDER,2017-06-12T00:00:00,2017,June,Monday,12,163,9,2017-06-13T00:00:00,2017,June,Tuesday,13,164,16,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,,RG,15,BLU,250.0,STOLEN,16523,"{'type': 'Point', 'coordinates': (-79.41385535, 43.66193043)}"
-16555,15616,GO-20179008435,THEFT UNDER - BICYCLE,2017-06-17T00:00:00,2017,June,Saturday,17,168,23,2017-06-19T00:00:00,2017,June,Monday,19,170,18,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,Z95 DISC,RC,9,BLK,1600.0,STOLEN,16524,"{'type': 'Point', 'coordinates': (-79.41786636, 43.655245660000006)}"
-16556,17325,GO-20209013151,THEFT UNDER,2020-05-14T00:00:00,2020,May,Thursday,14,135,0,2020-05-14T00:00:00,2020,May,Thursday,14,135,21,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,MA,,MT,24,BLU,900.0,STOLEN,16525,"{'type': 'Point', 'coordinates': (-79.41146941000001, 43.65932021)}"
-16557,17338,GO-20209015425,THEFT UNDER,2020-06-10T00:00:00,2020,June,Wednesday,10,162,9,2020-06-15T00:00:00,2020,June,Monday,15,167,18,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,FX 3 WSD,RG,24,BLK,1300.0,STOLEN,16526,"{'type': 'Point', 'coordinates': (-79.41269952000002, 43.65906954)}"
-16558,17352,GO-20209017006,THEFT UNDER,2020-07-06T00:00:00,2020,July,Monday,6,188,23,2020-07-07T00:00:00,2020,July,Tuesday,7,189,9,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CC,FORMULA II,OT,10,SIL,200.0,STOLEN,16527,"{'type': 'Point', 'coordinates': (-79.41581649, 43.66028429)}"
-16559,17368,GO-20209019511,THEFT UNDER,2020-08-05T00:00:00,2020,August,Wednesday,5,218,17,2020-08-06T00:00:00,2020,August,Thursday,6,219,11,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,TREADWELL 2 LAR,OT,8,ONG,1300.0,STOLEN,16528,"{'type': 'Point', 'coordinates': (-79.40892011, 43.65622962)}"
-16560,17375,GO-20209020707,THEFT UNDER,2020-08-19T00:00:00,2020,August,Wednesday,19,232,14,2020-08-19T00:00:00,2020,August,Wednesday,19,232,18,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,21,WHI,339.0,RECOVERED,16529,"{'type': 'Point', 'coordinates': (-79.4143444, 43.6630942)}"
-16561,17381,GO-20209021738,THEFT UNDER,2020-08-29T00:00:00,2020,August,Saturday,29,242,6,2020-08-29T00:00:00,2020,August,Saturday,29,242,13,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,NO,ELIMINATOR MARK,RG,5,ONG,200.0,STOLEN,16530,"{'type': 'Point', 'coordinates': (-79.42184411, 43.65903647)}"
-16562,17569,GO-20199016059,THEFT UNDER - BICYCLE,2019-05-14T00:00:00,2019,May,Tuesday,14,134,17,2019-05-23T00:00:00,2019,May,Thursday,23,143,16,D14,Toronto,80,Palmerston-Little Italy (80),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,SOLOROCK,EL,7,BLK,400.0,STOLEN,16531,"{'type': 'Point', 'coordinates': (-79.41067759, 43.66382976)}"
-16563,8907,GO-20142930911,THEFT UNDER,2014-09-16T00:00:00,2014,September,Tuesday,16,259,21,2014-09-17T00:00:00,2014,September,Wednesday,17,260,21,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,1,RED,500.0,STOLEN,16532,"{'type': 'Point', 'coordinates': (-79.42274326, 43.64938527)}"
-16564,486,GO-20179007085,THEFT UNDER,2017-05-27T00:00:00,2017,May,Saturday,27,147,20,2017-05-28T00:00:00,2017,May,Sunday,28,148,1,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,HEART,RG,1,BLK,800.0,STOLEN,16533,"{'type': 'Point', 'coordinates': (-79.41462705, 43.6605259)}"
-16565,3103,GO-20181450963,THEFT UNDER,2018-08-06T00:00:00,2018,August,Monday,6,218,6,2018-08-07T00:00:00,2018,August,Tuesday,7,219,19,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,EL,1,BLKGRY,500.0,STOLEN,16534,"{'type': 'Point', 'coordinates': (-79.42274326, 43.64938527)}"
-16566,7894,GO-20142038838,THEFT UNDER,2014-04-30T00:00:00,2014,April,Wednesday,30,120,18,2014-05-08T00:00:00,2014,May,Thursday,8,128,14,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,ZHEJIANG QIANXI,SC,0,BLU,400.0,STOLEN,16535,"{'type': 'Point', 'coordinates': (-79.42391973, 43.65412228000001)}"
-16567,17570,GO-20199016203,THEFT UNDER - BICYCLE,2019-05-20T00:00:00,2019,May,Monday,20,140,12,2019-05-24T00:00:00,2019,May,Friday,24,144,17,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,FJ,FEATHER,RG,1,BLK,,STOLEN,16536,"{'type': 'Point', 'coordinates': (-79.4131003, 43.6633432)}"
-16568,17578,GO-20191105157,THEFT UNDER,2019-06-14T00:00:00,2019,June,Friday,14,165,20,2019-06-15T00:00:00,2019,June,Saturday,15,166,10,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,ZONE S,EL,1,RED,2500.0,STOLEN,16537,"{'type': 'Point', 'coordinates': (-79.41462705, 43.6605259)}"
-16569,17596,GO-20199022283,THEFT UNDER - BICYCLE,2019-07-15T00:00:00,2019,July,Monday,15,196,1,2019-07-15T00:00:00,2019,July,Monday,15,196,9,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,8,OT,8,BLK,530.0,STOLEN,16538,"{'type': 'Point', 'coordinates': (-79.4165443, 43.66214487)}"
-16570,17598,GO-20199022706,THEFT UNDER,2019-07-17T00:00:00,2019,July,Wednesday,17,198,8,2019-07-17T00:00:00,2019,July,Wednesday,17,198,19,D14,Toronto,80,Palmerston-Little Italy (80),Ttc Subway Station,Transit,OT,,RC,12,BLK,1000.0,STOLEN,16539,"{'type': 'Point', 'coordinates': (-79.41021074, 43.66266863)}"
-16571,17610,GO-20199023590,THEFT UNDER,2019-07-24T00:00:00,2019,July,Wednesday,24,205,2,2019-07-24T00:00:00,2019,July,Wednesday,24,205,18,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,NO,"VALENCE, A3 W14",TO,18,BLK,1066.0,STOLEN,16540,"{'type': 'Point', 'coordinates': (-79.42087545, 43.66302552)}"
-16572,17642,GO-20199030996,THEFT UNDER,2019-09-21T00:00:00,2019,September,Saturday,21,264,14,2019-09-21T00:00:00,2019,September,Saturday,21,264,16,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,X-ROAD A60,OT,20,SIL,1400.0,STOLEN,16541,"{'type': 'Point', 'coordinates': (-79.41717845, 43.66383426)}"
-16573,17649,GO-20199032721,THEFT UNDER - BICYCLE,2019-10-03T00:00:00,2019,October,Thursday,3,276,0,2019-10-05T00:00:00,2019,October,Saturday,5,278,16,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,CADENT I8,OT,8,BLK,800.0,STOLEN,16542,"{'type': 'Point', 'coordinates': (-79.42816584, 43.6614364)}"
-16574,17664,GO-20192165751,THEFT UNDER - BICYCLE,2019-11-09T00:00:00,2019,November,Saturday,9,313,0,2019-11-09T00:00:00,2019,November,Saturday,9,313,10,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KONA,HYBRID,OT,0,LBL,1500.0,STOLEN,16543,"{'type': 'Point', 'coordinates': (-79.42490374, 43.65671556)}"
-16575,17665,GO-20192165751,THEFT UNDER - BICYCLE,2019-11-09T00:00:00,2019,November,Saturday,9,313,0,2019-11-09T00:00:00,2019,November,Saturday,9,313,10,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ALIGHT,,OT,0,SIL,,STOLEN,16544,"{'type': 'Point', 'coordinates': (-79.42490374, 43.65671556)}"
-16576,17666,GO-20192165751,THEFT UNDER - BICYCLE,2019-11-09T00:00:00,2019,November,Saturday,9,313,0,2019-11-09T00:00:00,2019,November,Saturday,9,313,10,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,STUMPJUMPER,OT,0,SIL,1500.0,STOLEN,16545,"{'type': 'Point', 'coordinates': (-79.42490374, 43.65671556)}"
-16577,17686,GO-20209004213,THEFT UNDER,2020-02-04T00:00:00,2020,February,Tuesday,4,35,8,2020-02-04T00:00:00,2020,February,Tuesday,4,35,16,D14,Toronto,80,Palmerston-Little Italy (80),Schools During Un-Supervised Activity,Educational,UK,VENTURA SPORT,RC,8,LBL,849.0,STOLEN,16546,"{'type': 'Point', 'coordinates': (-79.41385535, 43.66193043)}"
-16578,17689,GO-20209006993,THEFT UNDER,2020-02-26T00:00:00,2020,February,Wednesday,26,57,8,2020-02-26T00:00:00,2020,February,Wednesday,26,57,16,D14,Toronto,80,Palmerston-Little Italy (80),Schools During Supervised Activity,Educational,NO,INDIE DROP,RC,8,BLK,1405.0,STOLEN,16547,"{'type': 'Point', 'coordinates': (-79.41385535, 43.66193043)}"
-16579,17698,GO-20209007403,THEFT UNDER - BICYCLE,2020-03-01T00:00:00,2020,March,Sunday,1,61,11,2020-03-01T00:00:00,2020,March,Sunday,1,61,13,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,ZEKTOR 2,RG,21,GRY,800.0,STOLEN,16548,"{'type': 'Point', 'coordinates': (-79.41953602, 43.65952318)}"
-16580,17704,GO-20209010597,THEFT UNDER - BICYCLE,2020-04-05T00:00:00,2020,April,Sunday,5,96,12,2020-04-06T00:00:00,2020,April,Monday,6,97,19,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,,MT,10,DGR,200.0,STOLEN,16549,"{'type': 'Point', 'coordinates': (-79.41392904, 43.65882137)}"
-16581,17713,GO-20209012163,THEFT UNDER,2020-04-28T00:00:00,2020,April,Tuesday,28,119,21,2020-04-29T00:00:00,2020,April,Wednesday,29,120,17,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,MT,21,BLK,983.0,STOLEN,16550,"{'type': 'Point', 'coordinates': (-79.42596852, 43.65951273)}"
-16582,17718,GO-20179013498,THEFT UNDER - BICYCLE,2017-08-25T00:00:00,2017,August,Friday,25,237,23,2017-08-27T00:00:00,2017,August,Sunday,27,239,10,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,EL,8,WHI,2299.0,STOLEN,16551,"{'type': 'Point', 'coordinates': (-79.41786636, 43.655245660000006)}"
-16583,17721,GO-20179013775,THEFT UNDER - BICYCLE,2017-08-30T00:00:00,2017,August,Wednesday,30,242,18,2017-08-31T00:00:00,2017,August,Thursday,31,243,20,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,SUPERCYCLE,MT,21,TRQ,180.0,STOLEN,16552,"{'type': 'Point', 'coordinates': (-79.41239827, 43.66488473)}"
-16584,19812,GO-20142971597,THEFT UNDER,2014-09-22T00:00:00,2014,September,Monday,22,265,13,2014-09-24T00:00:00,2014,September,Wednesday,24,267,7,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,ROAD CROSS COUN,OT,1,LGRPLE,1000.0,STOLEN,16622,"{'type': 'Point', 'coordinates': (-79.39488188, 43.66100963)}"
-16585,17764,GO-20179019571,THEFT UNDER - BICYCLE,2017-11-13T00:00:00,2017,November,Monday,13,317,20,2017-11-14T00:00:00,2017,November,Tuesday,14,318,9,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,BIGGETY FAT BIK,OT,7,SIL,300.0,STOLEN,16553,"{'type': 'Point', 'coordinates': (-79.41786636, 43.655245660000006)}"
-16586,17792,GO-20189006001,THEFT UNDER - BICYCLE,2018-02-25T00:00:00,2018,February,Sunday,25,56,15,2018-02-25T00:00:00,2018,February,Sunday,25,56,18,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,"3 SPEED, ROADST",RG,3,BLK,550.0,STOLEN,16554,"{'type': 'Point', 'coordinates': (-79.41025366, 43.65955808)}"
-16587,17810,GO-20189015058,THEFT UNDER - BICYCLE,2018-05-14T00:00:00,2018,May,Monday,14,134,21,2018-05-15T00:00:00,2018,May,Tuesday,15,135,16,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,OT,ROCKHOPPER,MT,24,DBL,1500.0,STOLEN,16555,"{'type': 'Point', 'coordinates': (-79.41894614, 43.65800323)}"
-16588,17813,GO-20189015521,THEFT UNDER - BICYCLE,2018-05-18T00:00:00,2018,May,Friday,18,138,19,2018-05-19T00:00:00,2018,May,Saturday,19,139,13,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,FIXIE,OT,1,SIL,800.0,STOLEN,16556,"{'type': 'Point', 'coordinates': (-79.41894614, 43.65800323)}"
-16589,17852,GO-20189021855,THEFT UNDER - BICYCLE,2018-07-08T00:00:00,2018,July,Sunday,8,189,1,2018-07-10T00:00:00,2018,July,Tuesday,10,191,13,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ROCKHOPPER,RG,18,PLE,300.0,STOLEN,16557,"{'type': 'Point', 'coordinates': (-79.42322914, 43.6625099)}"
-16590,17855,GO-20189022156,THEFT UNDER - BICYCLE,2018-07-12T00:00:00,2018,July,Thursday,12,193,2,2018-07-12T00:00:00,2018,July,Thursday,12,193,14,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,10,BRN,200.0,STOLEN,16558,"{'type': 'Point', 'coordinates': (-79.42728654, 43.65922882)}"
-16591,17872,GO-20189025048,THEFT UNDER - BICYCLE,2018-08-02T00:00:00,2018,August,Thursday,2,214,21,2018-08-03T00:00:00,2018,August,Friday,3,215,18,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,ESCAPE 1,RG,27,BLU,750.0,STOLEN,16559,"{'type': 'Point', 'coordinates': (-79.41217664, 43.6610155)}"
-16592,19964,GO-2017121119,THEFT UNDER - BICYCLE,2017-01-19T00:00:00,2017,January,Thursday,19,19,14,2017-01-20T00:00:00,2017,January,Friday,20,20,11,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,,OT,0,BLK,100.0,STOLEN,16647,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-16593,17902,GO-20189030011,THEFT UNDER - BICYCLE,2018-09-10T00:00:00,2018,September,Monday,10,253,23,2018-09-11T00:00:00,2018,September,Tuesday,11,254,20,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,DESIRE,TO,7,BLK,500.0,STOLEN,16560,"{'type': 'Point', 'coordinates': (-79.42475081, 43.65976849)}"
-16594,18088,GO-20179009930,THEFT UNDER - BICYCLE,2017-07-11T00:00:00,2017,July,Tuesday,11,192,2,2017-07-11T00:00:00,2017,July,Tuesday,11,192,12,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,UK,,OT,1,BLK,550.0,STOLEN,16561,"{'type': 'Point', 'coordinates': (-79.40892011, 43.65622962)}"
-16595,18095,GO-20179010474,THEFT UNDER,2017-07-15T00:00:00,2017,July,Saturday,15,196,8,2017-07-18T00:00:00,2017,July,Tuesday,18,199,12,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,NO,PINNACLE,MT,12,GRY,300.0,STOLEN,16562,"{'type': 'Point', 'coordinates': (-79.4131003, 43.6633432)}"
-16596,18121,GO-20169006650,THEFT UNDER - BICYCLE,2016-07-03T00:00:00,2016,July,Sunday,3,185,0,2016-07-03T00:00:00,2016,July,Sunday,3,185,21,D14,Toronto,80,Palmerston-Little Italy (80),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,LANGSTER,TO,1,SIL,350.0,STOLEN,16563,"{'type': 'Point', 'coordinates': (-79.40904976, 43.65980581)}"
-16597,18122,GO-20169006688,THEFT UNDER,2016-07-04T00:00:00,2016,July,Monday,4,186,11,2016-07-04T00:00:00,2016,July,Monday,4,186,11,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,RA,CADENT,RG,7,BLU,100.0,STOLEN,16564,"{'type': 'Point', 'coordinates': (-79.41021074, 43.66266863)}"
-16598,18158,GO-20161688382,THEFT UNDER - BICYCLE,2016-09-20T00:00:00,2016,September,Tuesday,20,264,14,2016-09-22T00:00:00,2016,September,Thursday,22,266,15,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,OT,6,PNK,,STOLEN,16565,"{'type': 'Point', 'coordinates': (-79.41828872, 43.65524586000001)}"
-16599,18164,GO-20169011416,THEFT UNDER - BICYCLE,2016-09-01T00:00:00,2016,September,Thursday,1,245,16,2016-10-01T00:00:00,2016,October,Saturday,1,275,16,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,SOLARIS,RG,18,,250.0,STOLEN,16566,"{'type': 'Point', 'coordinates': (-79.42439359, 43.66225003)}"
-16600,18171,GO-20161854738,THEFT UNDER - SHOPLIFTING,2016-10-18T00:00:00,2016,October,Tuesday,18,292,16,2016-10-18T00:00:00,2016,October,Tuesday,18,292,16,D14,Toronto,80,Palmerston-Little Italy (80),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,5 POINTS,OT,3,SIL,1800.0,STOLEN,16567,"{'type': 'Point', 'coordinates': (-79.4251468, 43.65386853)}"
-16601,18178,GO-20169013643,THEFT UNDER - BICYCLE,2016-11-20T00:00:00,2016,November,Sunday,20,325,8,2016-11-20T00:00:00,2016,November,Sunday,20,325,9,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CROSSROADS SPOR,RG,8,LBL,599.0,STOLEN,16568,"{'type': 'Point', 'coordinates': (-79.42681894, 43.66173648)}"
-16602,18179,GO-20162152991,THEFT UNDER - BICYCLE,2016-12-01T00:00:00,2016,December,Thursday,1,336,0,2016-12-05T00:00:00,2016,December,Monday,5,340,0,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,MT,5,BLKGRN,200.0,STOLEN,16569,"{'type': 'Point', 'coordinates': (-79.42144875, 43.65465622)}"
-16603,18181,GO-20169015117,THEFT UNDER - BICYCLE,2016-12-26T00:00:00,2016,December,Monday,26,361,15,2016-12-27T00:00:00,2016,December,Tuesday,27,362,18,D14,Toronto,80,Palmerston-Little Italy (80),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,ROAD BIKE,RC,40,DBL,700.0,STOLEN,16570,"{'type': 'Point', 'coordinates': (-79.42391973, 43.65412228000001)}"
-16604,18193,GO-20179004008,THEFT UNDER - BICYCLE,2017-03-29T00:00:00,2017,March,Wednesday,29,88,19,2017-03-30T00:00:00,2017,March,Thursday,30,89,14,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,CA,CAAD8,RC,20,SIL,1000.0,STOLEN,16571,"{'type': 'Point', 'coordinates': (-79.4127959, 43.66088637)}"
-16605,18198,GO-20179004928,THEFT UNDER,2017-04-19T00:00:00,2017,April,Wednesday,19,109,1,2017-04-19T00:00:00,2017,April,Wednesday,19,109,13,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,30,BLK,150.0,STOLEN,16572,"{'type': 'Point', 'coordinates': (-79.40713565, 43.65840411)}"
-16606,18200,GO-20179005736,THEFT UNDER - BICYCLE,2017-05-02T00:00:00,2017,May,Tuesday,2,122,17,2017-05-04T00:00:00,2017,May,Thursday,4,124,18,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,VALENCE 60.5 BL,RC,10,BLU,876.0,STOLEN,16573,"{'type': 'Point', 'coordinates': (-79.41146941000001, 43.65932021)}"
-16607,18207,GO-20179006599,THEFT UNDER,2017-05-17T00:00:00,2017,May,Wednesday,17,137,15,2017-05-18T00:00:00,2017,May,Thursday,18,138,20,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,18,LGR,600.0,STOLEN,16574,"{'type': 'Point', 'coordinates': (-79.42211456000001, 43.65638946)}"
-16608,20650,GO-20191840341,THEFT UNDER,2019-09-13T00:00:00,2019,September,Friday,13,256,9,2019-09-24T00:00:00,2019,September,Tuesday,24,267,13,D52,Toronto,79,University (79),Universities / Colleges,Educational,URBANITE,,RG,0,GRY,500.0,STOLEN,16656,"{'type': 'Point', 'coordinates': (-79.40067317, 43.66506891)}"
-16609,18208,GO-20179006599,THEFT UNDER,2017-05-17T00:00:00,2017,May,Wednesday,17,137,15,2017-05-18T00:00:00,2017,May,Thursday,18,138,20,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RA,,RG,21,BRN,900.0,STOLEN,16575,"{'type': 'Point', 'coordinates': (-79.42211456000001, 43.65638946)}"
-16610,18220,GO-20179008682,THEFT UNDER - BICYCLE,2017-06-22T00:00:00,2017,June,Thursday,22,173,21,2017-06-23T00:00:00,2017,June,Friday,23,174,11,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,1,BLK,400.0,STOLEN,16576,"{'type': 'Point', 'coordinates': (-79.4220205, 43.6627783)}"
-16611,18377,GO-20143200633,THEFT UNDER,2014-10-27T00:00:00,2014,October,Monday,27,300,19,2014-10-29T00:00:00,2014,October,Wednesday,29,302,21,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,ESCAPE 2 LG,OT,18,BLK,450.0,STOLEN,16577,"{'type': 'Point', 'coordinates': (-79.42427516, 43.65854697)}"
-16612,18389,GO-2015545190,THEFT UNDER,2015-04-02T00:00:00,2015,April,Thursday,2,92,0,2015-04-02T00:00:00,2015,April,Thursday,2,92,7,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MIELE,UNKN,OT,14,GLDOTH,800.0,STOLEN,16578,"{'type': 'Point', 'coordinates': (-79.41025366, 43.65955808)}"
-16613,18397,GO-20159002215,THEFT UNDER,2015-04-24T00:00:00,2015,April,Friday,24,114,7,2015-04-24T00:00:00,2015,April,Friday,24,114,17,D14,Toronto,80,Palmerston-Little Italy (80),Schools During Un-Supervised Activity,Educational,OT,HARD ROCK,MT,14,BLK,500.0,STOLEN,16579,"{'type': 'Point', 'coordinates': (-79.41385535, 43.66193043)}"
-16614,18406,GO-20159003076,THEFT UNDER,2015-05-25T00:00:00,2015,May,Monday,25,145,0,2015-05-25T00:00:00,2015,May,Monday,25,145,15,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,EM,,EL,1,,,STOLEN,16580,"{'type': 'Point', 'coordinates': (-79.41672657, 43.66262133)}"
-16615,18407,GO-2015880108,PROPERTY - FOUND,2015-05-26T00:00:00,2015,May,Tuesday,26,146,18,2015-05-26T00:00:00,2015,May,Tuesday,26,146,19,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,EMMO,T300,EL,10,BLU,1200.0,STOLEN,16581,"{'type': 'Point', 'coordinates': (-79.41269952000002, 43.65906954)}"
-16616,18452,GO-20151519019,THEFT UNDER,2015-09-02T00:00:00,2015,September,Wednesday,2,245,22,2015-09-03T00:00:00,2015,September,Thursday,3,246,8,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,FUJI,DELRAY,RC,12,GRY,375.0,STOLEN,16582,"{'type': 'Point', 'coordinates': (-79.42596852, 43.65951273)}"
-16617,18461,GO-20159007756,THEFT UNDER,2015-09-23T00:00:00,2015,September,Wednesday,23,266,15,2015-09-25T00:00:00,2015,September,Friday,25,268,16,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,TRANSEO 4.0,OT,8,SIL,900.0,STOLEN,16583,"{'type': 'Point', 'coordinates': (-79.41669285, 43.65511528)}"
-16618,18471,GO-20159011284,THEFT UNDER,2015-12-24T00:00:00,2015,December,Thursday,24,358,13,2015-12-24T00:00:00,2015,December,Thursday,24,358,16,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,3500,MT,21,BLU,600.0,STOLEN,16584,"{'type': 'Point', 'coordinates': (-79.41786636, 43.655245660000006)}"
-16619,18474,GO-20169001307,THEFT UNDER,2016-02-09T00:00:00,2016,February,Tuesday,9,40,14,2016-02-09T00:00:00,2016,February,Tuesday,9,40,18,D14,Toronto,80,Palmerston-Little Italy (80),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,,MT,21,WHI,699.0,STOLEN,16585,"{'type': 'Point', 'coordinates': (-79.41524431, 43.65881487)}"
-16620,18477,GO-2016564841,THEFT UNDER,2016-03-29T00:00:00,2016,March,Tuesday,29,89,12,2016-04-03T00:00:00,2016,April,Sunday,3,94,13,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,NORCO,HEART,OT,1,BLK,400.0,STOLEN,16586,"{'type': 'Point', 'coordinates': (-79.41025366, 43.65955808)}"
-16621,18488,GO-2016883596,B&E,2016-05-21T00:00:00,2016,May,Saturday,21,142,22,2016-05-22T00:00:00,2016,May,Sunday,22,143,20,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,21,GRY,1000.0,STOLEN,16587,"{'type': 'Point', 'coordinates': (-79.40892011, 43.65622962)}"
-16622,20789,GO-20209018972,THEFT UNDER,2020-07-27T00:00:00,2020,July,Monday,27,209,5,2020-07-30T00:00:00,2020,July,Thursday,30,212,11,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,OT,790,MT,21,BLK,1000.0,STOLEN,16588,"{'type': 'Point', 'coordinates': (-79.40768329, 43.65648148)}"
-16623,20801,GO-20209021834,THEFT UNDER,2020-08-29T00:00:00,2020,August,Saturday,29,242,20,2020-08-31T00:00:00,2020,August,Monday,31,244,9,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,BOULDER,RG,18,RED,0.0,STOLEN,16589,"{'type': 'Point', 'coordinates': (-79.41686171, 43.66005921)}"
-16624,20825,GO-20209027384,THEFT UNDER,2020-10-21T00:00:00,2020,October,Wednesday,21,295,19,2020-10-22T00:00:00,2020,October,Thursday,22,296,22,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,,OT,3,BLU,350.0,STOLEN,16590,"{'type': 'Point', 'coordinates': (-79.42184411, 43.65903647)}"
-16625,20830,GO-20209028670,THEFT UNDER,2020-10-28T00:00:00,2020,October,Wednesday,28,302,12,2020-11-05T00:00:00,2020,November,Thursday,5,310,12,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,TR,7.3 FX 17.5 IN,RG,16,,750.0,STOLEN,16591,"{'type': 'Point', 'coordinates': (-79.41555756, 43.66283055)}"
-16626,20839,GO-20209030855,THEFT UNDER,2020-11-25T00:00:00,2020,November,Wednesday,25,330,1,2020-11-29T00:00:00,2020,November,Sunday,29,334,15,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KH,GRIT 55,RG,8,BLU,1049.0,STOLEN,16592,"{'type': 'Point', 'coordinates': (-79.41462705, 43.6605259)}"
-16627,20968,GO-20189039238,THEFT UNDER - BICYCLE,2018-11-14T00:00:00,2018,November,Wednesday,14,318,21,2018-11-21T00:00:00,2018,November,Wednesday,21,325,21,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,OT,MILANO,RG,21,BLU,500.0,STOLEN,16593,"{'type': 'Point', 'coordinates': (-79.4127959, 43.66088637)}"
-16628,21018,GO-20199021219,THEFT UNDER - BICYCLE,2019-07-02T00:00:00,2019,July,Tuesday,2,183,1,2019-07-06T00:00:00,2019,July,Saturday,6,187,13,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SINGLE GEAR,OT,1,SIL,600.0,STOLEN,16594,"{'type': 'Point', 'coordinates': (-79.41837695, 43.66358488)}"
-16629,21020,GO-20199021505,THEFT UNDER,2019-06-27T00:00:00,2019,June,Thursday,27,178,18,2019-07-08T00:00:00,2019,July,Monday,8,189,18,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,GI,GIANT 2,MT,10,SIL,1000.0,STOLEN,16595,"{'type': 'Point', 'coordinates': (-79.42211456000001, 43.65638946)}"
-16630,21056,GO-20199028736,THEFT UNDER - BICYCLE,2019-08-31T00:00:00,2019,August,Saturday,31,243,22,2019-09-04T00:00:00,2019,September,Wednesday,4,247,17,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,HEART,RG,1,BLK,450.0,STOLEN,16596,"{'type': 'Point', 'coordinates': (-79.40892011, 43.65622962)}"
-16631,21062,GO-20199029818,THEFT UNDER - BICYCLE,2019-09-09T00:00:00,2019,September,Monday,9,252,2,2019-09-12T00:00:00,2019,September,Thursday,12,255,19,D14,Toronto,80,Palmerston-Little Italy (80),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,GREY 17.5 24 SP,MT,24,GRY,549.0,STOLEN,16597,"{'type': 'Point', 'coordinates': (-79.42816584, 43.6614364)}"
-16632,20827,GO-20209028150,THEFT UNDER,2020-10-30T00:00:00,2020,October,Friday,30,304,19,2020-10-30T00:00:00,2020,October,Friday,30,304,20,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,3,,0.0,STOLEN,16665,"{'type': 'Point', 'coordinates': (-79.40307045, 43.6655101)}"
-16633,21064,GO-20191775818,THEFT UNDER - BICYCLE,2019-09-12T00:00:00,2019,September,Thursday,12,255,13,2019-09-15T00:00:00,2019,September,Sunday,15,258,22,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,TALIK 4.2,MT,24,BLUSIL,150.0,STOLEN,16598,"{'type': 'Point', 'coordinates': (-79.4251468, 43.65386853)}"
-16634,21068,GO-20199031341,THEFT UNDER - BICYCLE,2019-09-19T00:00:00,2019,September,Thursday,19,262,21,2019-09-24T00:00:00,2019,September,Tuesday,24,267,13,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GF,NIRVANA,RG,27,SIL,500.0,STOLEN,16599,"{'type': 'Point', 'coordinates': (-79.41462705, 43.6605259)}"
-16635,21088,GO-20199034877,THEFT UNDER - BICYCLE,2019-10-22T00:00:00,2019,October,Tuesday,22,295,19,2019-10-23T00:00:00,2019,October,Wednesday,23,296,2,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,NATIONAL,RG,27,BLK,1800.0,STOLEN,16600,"{'type': 'Point', 'coordinates': (-79.41717845, 43.66383426)}"
-16636,21116,GO-2020513405,THEFT UNDER,2020-03-10T00:00:00,2020,March,Tuesday,10,70,8,2020-03-12T00:00:00,2020,March,Thursday,12,72,7,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,LANGSTER,TO,1,WHI,1500.0,STOLEN,16601,"{'type': 'Point', 'coordinates': (-79.42617452000002, 43.65644357)}"
-16637,21129,GO-2020791945,THEFT UNDER - BICYCLE,2020-04-26T00:00:00,2020,April,Sunday,26,117,11,2020-04-26T00:00:00,2020,April,Sunday,26,117,22,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,YAMAHA,PAS,EL,3,LBL,3000.0,STOLEN,16602,"{'type': 'Point', 'coordinates': (-79.42739759, 43.65617153)}"
-16638,21133,GO-2020848204,THEFT UNDER - BICYCLE,2020-05-06T00:00:00,2020,May,Wednesday,6,127,2,2020-05-06T00:00:00,2020,May,Wednesday,6,127,11,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,ESCAPE 3,OT,0,BLK,,STOLEN,16603,"{'type': 'Point', 'coordinates': (-79.41786636, 43.655245660000006)}"
-16639,21144,GO-20209014989,THEFT UNDER,2020-06-02T00:00:00,2020,June,Tuesday,2,154,20,2020-06-09T00:00:00,2020,June,Tuesday,9,161,15,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SPECIALE OTTO,RG,8,GRY,750.0,STOLEN,16604,"{'type': 'Point', 'coordinates': (-79.411894, 43.66358017)}"
-16640,21152,GO-20209016135,THEFT UNDER,2020-06-24T00:00:00,2020,June,Wednesday,24,176,13,2020-06-25T00:00:00,2020,June,Thursday,25,177,12,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,,MT,10,BLU,300.0,STOLEN,16605,"{'type': 'Point', 'coordinates': (-79.42305206, 43.65879732)}"
-16641,19517,GO-20181349963,THEFT UNDER - BICYCLE,2018-07-15T00:00:00,2018,July,Sunday,15,196,21,2018-07-16T00:00:00,2018,July,Monday,16,197,18,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,OT,0,BLK,790.0,STOLEN,16606,"{'type': 'Point', 'coordinates': (-79.39901086, 43.66089417)}"
-16642,19524,GO-20181420346,THEFT UNDER - BICYCLE,2018-07-30T00:00:00,2018,July,Monday,30,211,21,2018-08-01T00:00:00,2018,August,Wednesday,1,213,8,D52,Toronto,79,University (79),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,MT,0,,599.0,STOLEN,16607,"{'type': 'Point', 'coordinates': (-79.40137171, 43.66130203)}"
-16643,19525,GO-20189025578,THEFT UNDER - BICYCLE,2018-08-08T00:00:00,2018,August,Wednesday,8,220,13,2018-08-08T00:00:00,2018,August,Wednesday,8,220,17,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ROLL,RG,24,TRQ,950.0,STOLEN,16608,"{'type': 'Point', 'coordinates': (-79.39968364, 43.66258094)}"
-16644,19556,GO-20181794187,THEFT UNDER - BICYCLE,2018-09-26T00:00:00,2018,September,Wednesday,26,269,14,2018-09-26T00:00:00,2018,September,Wednesday,26,269,16,D52,Toronto,79,University (79),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CCM,,OT,0,BLU,250.0,STOLEN,16609,"{'type': 'Point', 'coordinates': (-79.39699693, 43.65848407)}"
-16645,19558,GO-20189033154,THEFT UNDER - BICYCLE,2018-10-06T00:00:00,2018,October,Saturday,6,279,21,2018-10-07T00:00:00,2018,October,Sunday,7,280,2,D52,Toronto,79,University (79),Universities / Colleges,Educational,OT,WONDER MODEL,FO,7,BLK,240.0,STOLEN,16610,"{'type': 'Point', 'coordinates': (-79.40137171, 43.66130203)}"
-16646,19582,GO-20199017384,THEFT UNDER,2019-06-03T00:00:00,2019,June,Monday,3,154,17,2019-06-04T00:00:00,2019,June,Tuesday,4,155,14,D52,Toronto,79,University (79),Unknown,Other,MO,,OT,20,OTH,0.0,STOLEN,16611,"{'type': 'Point', 'coordinates': (-79.39404835, 43.65906999)}"
-16647,19583,GO-20191033890,THEFT UNDER,2019-05-31T00:00:00,2019,May,Friday,31,151,4,2019-06-05T00:00:00,2019,June,Wednesday,5,156,12,D52,Toronto,79,University (79),Universities / Colleges,Educational,ZZZ,EBIKE,EL,1,WHI,1500.0,STOLEN,16612,"{'type': 'Point', 'coordinates': (-79.40207036, 43.66305191)}"
-16648,19592,GO-20201857305,THEFT OF EBIKE UNDER $5000,2020-09-25T00:00:00,2020,September,Friday,25,269,13,2020-09-30T00:00:00,2020,September,Wednesday,30,274,11,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,HORNET,EL,5,BLU,1467.0,STOLEN,16614,"{'type': 'Point', 'coordinates': (-79.39968364, 43.66258094)}"
-16649,19779,GO-20142550392,THEFT UNDER,2014-07-21T00:00:00,2014,July,Monday,21,202,14,2014-07-22T00:00:00,2014,July,Tuesday,22,203,17,D52,Toronto,79,University (79),Universities / Colleges,Educational,GARY FISHER,PIRANHA,OT,1,BLUBLK,1000.0,STOLEN,16615,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-16650,19782,GO-20149005235,THEFT UNDER,2014-07-07T00:00:00,2014,July,Monday,7,188,17,2014-07-22T00:00:00,2014,July,Tuesday,22,203,15,D52,Toronto,79,University (79),Universities / Colleges,Educational,SC,,MT,21,ONG,600.0,STOLEN,16616,"{'type': 'Point', 'coordinates': (-79.39488188, 43.66100963)}"
-16651,19786,GO-20149005816,THEFT UNDER,2014-08-11T00:00:00,2014,August,Monday,11,223,9,2014-08-11T00:00:00,2014,August,Monday,11,223,9,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,5,GRY,,STOLEN,16617,"{'type': 'Point', 'coordinates': (-79.39968364, 43.66258094)}"
-16652,19790,GO-20142746627,THEFT UNDER,2014-08-07T00:00:00,2014,August,Thursday,7,219,11,2014-08-21T00:00:00,2014,August,Thursday,21,233,13,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,MASI CX,TO,1,BLK,1300.0,STOLEN,16618,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-16653,19807,GO-20142886624,THEFT UNDER,2014-09-09T00:00:00,2014,September,Tuesday,9,252,11,2014-09-11T00:00:00,2014,September,Thursday,11,254,7,D52,Toronto,79,University (79),Universities / Colleges,Educational,SPECIALIZED,SIRRUS,OT,21,BLKBLU,560.0,STOLEN,16619,"{'type': 'Point', 'coordinates': (-79.39570335, 43.66468636)}"
-16654,19808,GO-20142914564,THEFT UNDER,2014-09-10T00:00:00,2014,September,Wednesday,10,253,21,2014-09-15T00:00:00,2014,September,Monday,15,258,13,D52,Toronto,79,University (79),Universities / Colleges,Educational,TREK,3500,MT,21,GRN,500.0,STOLEN,16620,"{'type': 'Point', 'coordinates': (-79.40067317, 43.66506891)}"
-16655,19809,GO-20142914708,THEFT UNDER,2014-09-09T00:00:00,2014,September,Tuesday,9,252,19,2014-09-15T00:00:00,2014,September,Monday,15,258,13,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,6TH HYBRID,OT,6,WHI,100.0,STOLEN,16621,"{'type': 'Point', 'coordinates': (-79.39734175, 43.66803279)}"
-16656,7909,GO-20149003291,THEFT UNDER,2014-05-10T00:00:00,2014,May,Saturday,10,130,2,2014-05-12T00:00:00,2014,May,Monday,12,132,16,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,1,RED,500.0,STOLEN,16623,"{'type': 'Point', 'coordinates': (-79.42427516, 43.65854697)}"
-16657,19814,GO-20143009518,THEFT UNDER,2014-09-23T00:00:00,2014,September,Tuesday,23,266,8,2014-09-29T00:00:00,2014,September,Monday,29,272,17,D52,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,TREK,LEXA,RG,1,WHISIL,700.0,STOLEN,16624,"{'type': 'Point', 'coordinates': (-79.39968364, 43.66258094)}"
-16658,19827,GO-2015491501,THEFT UNDER,2015-03-21T00:00:00,2015,March,Saturday,21,80,17,2015-03-24T00:00:00,2015,March,Tuesday,24,83,8,D52,Toronto,79,University (79),Universities / Colleges,Educational,KONA,SUTRA,TO,24,BLUWHI,1500.0,STOLEN,16625,"{'type': 'Point', 'coordinates': (-79.40207036, 43.66305191)}"
-16659,19828,GO-20159001717,THEFT UNDER,2015-04-03T00:00:00,2015,April,Friday,3,93,15,2015-04-04T00:00:00,2015,April,Saturday,4,94,16,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,7.1 FX (2009),RG,7,BLK,550.0,STOLEN,16626,"{'type': 'Point', 'coordinates': (-79.4000091, 43.65794797)}"
-16660,19832,GO-2015658836,THEFT UNDER,2015-04-15T00:00:00,2015,April,Wednesday,15,105,10,2015-04-21T00:00:00,2015,April,Tuesday,21,111,11,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,,MT,9,SIL,800.0,STOLEN,16627,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-16661,19851,GO-20151141724,THEFT UNDER,2015-07-05T00:00:00,2015,July,Sunday,5,186,11,2015-07-06T00:00:00,2015,July,Monday,6,187,19,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,,MT,0,GRN,500.0,STOLEN,16628,"{'type': 'Point', 'coordinates': (-79.39968364, 43.66258094)}"
-16662,19868,GO-20159006510,THEFT UNDER,2015-08-21T00:00:00,2015,August,Friday,21,233,10,2015-08-29T00:00:00,2015,August,Saturday,29,241,23,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,AGGRESSOR 3.0,MT,21,DGR,300.0,STOLEN,16629,"{'type': 'Point', 'coordinates': (-79.39901086, 43.66089417)}"
-16663,19872,GO-20151602832,THEFT UNDER,2015-09-16T00:00:00,2015,September,Wednesday,16,259,14,2015-09-16T00:00:00,2015,September,Wednesday,16,259,16,D52,Toronto,79,University (79),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,GX500,EL,0,BLU,1254.0,STOLEN,16630,"{'type': 'Point', 'coordinates': (-79.39348694, 43.66726478)}"
-16664,8949,GO-20149007124,THEFT UNDER,2014-09-18T00:00:00,2014,September,Thursday,18,261,4,2014-09-22T00:00:00,2014,September,Monday,22,265,16,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,BLACK LABEL 606,RC,1,BLK,1000.0,STOLEN,16631,"{'type': 'Point', 'coordinates': (-79.4134607, 43.65078109)}"
-16665,3162,GO-20189025951,THEFT UNDER - BICYCLE,2018-08-11T00:00:00,2018,August,Saturday,11,223,9,2018-08-11T00:00:00,2018,August,Saturday,11,223,12,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,FO,6,BLK,350.0,STOLEN,16632,"{'type': 'Point', 'coordinates': (-79.41012202000002, 43.65597091)}"
-16666,523,GO-20179007432,THEFT UNDER - BICYCLE,2017-06-02T00:00:00,2017,June,Friday,2,153,11,2017-06-03T00:00:00,2017,June,Saturday,3,154,11,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,SU,,OT,1,BLK,500.0,STOLEN,16633,"{'type': 'Point', 'coordinates': (-79.41462705, 43.6605259)}"
-16667,19873,GO-20159007456,THEFT UNDER,2015-09-16T00:00:00,2015,September,Wednesday,16,259,9,2015-09-20T00:00:00,2015,September,Sunday,20,263,11,D52,Toronto,79,University (79),Universities / Colleges,Educational,OT,2013,OT,10,BLK,1190.0,STOLEN,16634,"{'type': 'Point', 'coordinates': (-79.39343719, 43.66303628)}"
-16668,19880,GO-20151900838,THEFT UNDER,2015-11-01T00:00:00,2015,November,Sunday,1,305,12,2015-11-05T00:00:00,2015,November,Thursday,5,309,8,D52,Toronto,79,University (79),Universities / Colleges,Educational,SCHWINN,,MT,0,BRZWHI,200.0,STOLEN,16635,"{'type': 'Point', 'coordinates': (-79.39112492, 43.66060888)}"
-16669,19887,GO-20152225434,THEFT UNDER,2015-12-04T00:00:00,2015,December,Friday,4,338,14,2015-12-29T00:00:00,2015,December,Tuesday,29,363,8,D52,Toronto,79,University (79),Universities / Colleges,Educational,ROCKHOPPER,SPORT,MT,27,BLK,1200.0,STOLEN,16636,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-16670,19888,GO-201627372,THEFT UNDER,2015-12-18T00:00:00,2015,December,Friday,18,352,14,2016-01-05T00:00:00,2016,January,Tuesday,5,5,19,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,,OT,0,BLKYEL,200.0,STOLEN,16637,"{'type': 'Point', 'coordinates': (-79.40207036, 43.66305191)}"
-16671,19914,GO-20169005680,THEFT UNDER,2016-06-10T00:00:00,2016,June,Friday,10,162,13,2016-06-13T00:00:00,2016,June,Monday,13,165,5,D52,Toronto,79,University (79),Universities / Colleges,Educational,GI,LIV ALRIGHT 3,RG,7,LBL,0.0,STOLEN,16638,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-16672,19921,GO-20161174021,THEFT UNDER - BICYCLE,2016-06-23T00:00:00,2016,June,Thursday,23,175,12,2016-07-05T00:00:00,2016,July,Tuesday,5,187,10,D52,Toronto,79,University (79),Universities / Colleges,Educational,CCM,,MT,0,REDWHI,300.0,STOLEN,16639,"{'type': 'Point', 'coordinates': (-79.39901086, 43.66089417)}"
-16673,19923,GO-20161226057,THEFT UNDER - BICYCLE,2016-07-04T00:00:00,2016,July,Monday,4,186,8,2016-07-13T00:00:00,2016,July,Wednesday,13,195,8,D52,Toronto,79,University (79),Universities / Colleges,Educational,DIAMONDBACK,,MT,21,REDWHI,1200.0,STOLEN,16640,"{'type': 'Point', 'coordinates': (-79.40137171, 43.66130203)}"
-16674,19944,GO-20161759929,THEFT UNDER - BICYCLE,2016-09-30T00:00:00,2016,September,Friday,30,274,21,2016-10-03T00:00:00,2016,October,Monday,3,277,19,D52,Toronto,79,University (79),Universities / Colleges,Educational,DAYMAK,,EL,0,BLK,2100.0,STOLEN,16641,"{'type': 'Point', 'coordinates': (-79.40137171, 43.66130203)}"
-16675,19945,GO-20161765001,THEFT UNDER - BICYCLE,2016-09-22T00:00:00,2016,September,Thursday,22,266,14,2016-10-04T00:00:00,2016,October,Tuesday,4,278,14,D52,Toronto,79,University (79),Universities / Colleges,Educational,WICKED,,MT,18,BLU,250.0,STOLEN,16642,"{'type': 'Point', 'coordinates': (-79.39979751, 43.66751644)}"
-16676,19952,GO-20161909156,THEFT UNDER - BICYCLE,2016-10-13T00:00:00,2016,October,Thursday,13,287,22,2016-10-27T00:00:00,2016,October,Thursday,27,301,9,D52,Toronto,79,University (79),Universities / Colleges,Educational,RALEIGH,,OT,24,LGR,600.0,STOLEN,16643,"{'type': 'Point', 'coordinates': (-79.39840577, 43.66410903)}"
-16677,19953,GO-20161942720,THEFT UNDER - BICYCLE,2016-10-20T00:00:00,2016,October,Thursday,20,294,8,2016-11-01T00:00:00,2016,November,Tuesday,1,306,14,D52,Toronto,79,University (79),Universities / Colleges,Educational,SCHWINN,NETWORK 2.0,OT,7,BLU,350.0,STOLEN,16644,"{'type': 'Point', 'coordinates': (-79.39894426, 43.66543776)}"
-16678,19956,GO-20162072943,THEFT UNDER - BICYCLE,2016-11-17T00:00:00,2016,November,Thursday,17,322,14,2016-11-22T00:00:00,2016,November,Tuesday,22,327,9,D52,Toronto,79,University (79),Universities / Colleges,Educational,GT,AGRESSOR XL,RG,0,,700.0,STOLEN,16645,"{'type': 'Point', 'coordinates': (-79.39488188, 43.66100963)}"
-16679,19962,GO-2017113234,THEFT UNDER - BICYCLE,2017-01-16T00:00:00,2017,January,Monday,16,16,16,2017-01-19T00:00:00,2017,January,Thursday,19,19,7,D52,Toronto,79,University (79),Universities / Colleges,Educational,SCHWINN,SOTOCOMFORT,RG,0,SILPNK,330.0,STOLEN,16646,"{'type': 'Point', 'coordinates': (-79.39968364, 43.66258094)}"
-16680,20144,GO-20141948084,THEFT UNDER,2014-04-22T00:00:00,2014,April,Tuesday,22,112,20,2014-04-24T00:00:00,2014,April,Thursday,24,114,8,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,1950 VINTAGE,RG,1,DGR,150.0,STOLEN,16648,"{'type': 'Point', 'coordinates': (-79.39894426, 43.66543776)}"
-16681,20146,GO-20142022009,THEFT UNDER,2014-05-05T00:00:00,2014,May,Monday,5,125,9,2014-05-05T00:00:00,2014,May,Monday,5,125,20,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GARY FISHER,MOUNTAIN,MT,24,RED,2000.0,STOLEN,16649,"{'type': 'Point', 'coordinates': (-79.4000091, 43.65794797)}"
-16682,20147,GO-20142066066,THEFT UNDER,2014-05-05T00:00:00,2014,May,Monday,5,125,15,2014-05-12T00:00:00,2014,May,Monday,12,132,17,D52,Toronto,79,University (79),Universities / Colleges,Educational,NORCO,INDIE 1,OT,27,GRY,1200.0,STOLEN,16650,"{'type': 'Point', 'coordinates': (-79.39832557, 43.66783119)}"
-16683,20154,GO-20142263133,THEFT UNDER,2014-06-07T00:00:00,2014,June,Saturday,7,158,23,2014-06-10T00:00:00,2014,June,Tuesday,10,161,18,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,UNKNOWN,OT,27,SIL,630.0,STOLEN,16651,"{'type': 'Point', 'coordinates': (-79.39691929, 43.66443463)}"
-16684,20165,GO-20149004448,THEFT UNDER,2014-06-25T00:00:00,2014,June,Wednesday,25,176,9,2014-06-25T00:00:00,2014,June,Wednesday,25,176,19,D52,Toronto,79,University (79),Universities / Colleges,Educational,TR,VERVE II,OT,21,GRY,700.0,STOLEN,16652,"{'type': 'Point', 'coordinates': (-79.39343719, 43.66303628)}"
-16685,20595,GO-20191345549,THEFT UNDER,2019-07-05T00:00:00,2019,July,Friday,5,186,22,2019-07-18T00:00:00,2019,July,Thursday,18,199,9,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,VECTOR,BM,21,BLU,300.0,STOLEN,16653,"{'type': 'Point', 'coordinates': (-79.3934451, 43.65919971)}"
-16686,20621,GO-20191576798,THEFT UNDER,2019-08-12T00:00:00,2019,August,Monday,12,224,8,2019-08-19T00:00:00,2019,August,Monday,19,231,10,D52,Toronto,79,University (79),Universities / Colleges,Educational,DEVINCI,WELLINGTON,RG,0,RED,250.0,STOLEN,16654,"{'type': 'Point', 'coordinates': (-79.40207036, 43.66305191)}"
-16687,20649,GO-20191830199,THEFT UNDER,2019-09-09T00:00:00,2019,September,Monday,9,252,10,2019-09-23T00:00:00,2019,September,Monday,23,266,7,D52,Toronto,79,University (79),Universities / Colleges,Educational,SCHWINN,GTX-2,OT,0,BLUYEL,375.0,STOLEN,16655,"{'type': 'Point', 'coordinates': (-79.39488188, 43.66100963)}"
-16688,20652,GO-20191854225,THEFT UNDER,2019-09-17T00:00:00,2019,September,Tuesday,17,260,21,2019-09-26T00:00:00,2019,September,Thursday,26,269,10,D52,Toronto,79,University (79),Universities / Colleges,Educational,TRIBE,,RG,0,YEL,400.0,STOLEN,16657,"{'type': 'Point', 'coordinates': (-79.39988102, 43.65980157)}"
-16689,20655,GO-20191898632,THEFT UNDER,2019-09-22T00:00:00,2019,September,Sunday,22,265,16,2019-10-02T00:00:00,2019,October,Wednesday,2,275,14,D52,Toronto,79,University (79),Universities / Colleges,Educational,OTHER,,OT,0,,,STOLEN,16658,"{'type': 'Point', 'coordinates': (-79.39901086, 43.66089417)}"
-16690,20693,GO-2020206264,THEFT UNDER,2020-01-08T00:00:00,2020,January,Wednesday,8,8,13,2020-01-08T00:00:00,2020,January,Wednesday,8,8,20,D52,Toronto,79,University (79),Universities / Colleges,Educational,UNKNOWN,,MT,18,WHIYEL,1000.0,STOLEN,16659,"{'type': 'Point', 'coordinates': (-79.39676402, 43.66012322)}"
-16691,20695,GO-20209008445,THEFT UNDER,2020-03-09T00:00:00,2020,March,Monday,9,69,14,2020-03-10T00:00:00,2020,March,Tuesday,10,70,14,D52,Toronto,79,University (79),Universities / Colleges,Educational,OT,TARGA 10,RG,18,BLK,350.0,STOLEN,16660,"{'type': 'Point', 'coordinates': (-79.39934598, 43.66172465)}"
-16692,20712,GO-20201016579,THEFT UNDER - BICYCLE,2020-05-31T00:00:00,2020,May,Sunday,31,152,23,2020-06-02T00:00:00,2020,June,Tuesday,2,154,16,D52,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,PHANTOM,MT,21,BLK,300.0,STOLEN,16661,"{'type': 'Point', 'coordinates': (-79.40270156, 43.66465652)}"
-16693,20741,GO-20209019295,THEFT UNDER,2020-08-03T00:00:00,2020,August,Monday,3,216,13,2020-08-04T00:00:00,2020,August,Tuesday,4,217,7,D52,Toronto,79,University (79),Universities / Colleges,Educational,KH,,RG,8,DBL,499.0,STOLEN,16662,"{'type': 'Point', 'coordinates': (-79.39316984, 43.66306859)}"
-16694,20783,GO-20209018755,THEFT UNDER,2020-07-27T00:00:00,2020,July,Monday,27,209,13,2020-07-28T00:00:00,2020,July,Tuesday,28,210,9,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,3,DGR,1500.0,STOLEN,16663,"{'type': 'Point', 'coordinates': (-79.40278753, 43.65745805)}"
-16695,20820,GO-20209025818,THEFT UNDER,2020-10-07T00:00:00,2020,October,Wednesday,7,281,19,2020-10-08T00:00:00,2020,October,Thursday,8,282,22,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,RA,VELO SPORT,RG,7,RED,0.0,STOLEN,16664,"{'type': 'Point', 'coordinates': (-79.40382824, 43.66269877)}"
-16696,20980,GO-20199000937,THEFT UNDER - BICYCLE,2019-01-06T00:00:00,2019,January,Sunday,6,6,19,2019-01-08T00:00:00,2019,January,Tuesday,8,8,18,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,TO,18,,1000.0,STOLEN,16666,"{'type': 'Point', 'coordinates': (-79.40478414, 43.66249403)}"
-16697,20981,GO-20199001175,THEFT UNDER - BICYCLE,2019-01-09T00:00:00,2019,January,Wednesday,9,9,22,2019-01-10T00:00:00,2019,January,Thursday,10,10,11,D14,Toronto,79,University (79),"Religious Facilities (Synagogue, Church, Convent, Mosque)",Other,UK,,RG,6,BLK,200.0,STOLEN,16667,"{'type': 'Point', 'coordinates': (-79.40207036, 43.66305191)}"
-16698,21012,GO-20199019324,THEFT UNDER,2019-06-19T00:00:00,2019,June,Wednesday,19,170,22,2019-06-20T00:00:00,2019,June,Thursday,20,171,0,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,METRIX 50,OT,1,,800.0,STOLEN,16668,"{'type': 'Point', 'coordinates': (-79.40663406, 43.66607805)}"
-16699,21016,GO-20199020403,THEFT UNDER - BICYCLE,2019-06-27T00:00:00,2019,June,Thursday,27,178,21,2019-06-28T00:00:00,2019,June,Friday,28,179,9,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,TR,WAHOO 26,RG,7,SIL,600.0,STOLEN,16669,"{'type': 'Point', 'coordinates': (-79.40944921, 43.66408484)}"
-16700,21043,GO-20199026664,THEFT UNDER - BICYCLE,2019-08-17T00:00:00,2019,August,Saturday,17,229,0,2019-08-17T00:00:00,2019,August,Saturday,17,229,21,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,TR,DS 1 (DUAL SPOR,OT,7,,660.0,STOLEN,16670,"{'type': 'Point', 'coordinates': (-79.40237577, 43.66385178)}"
-16701,21048,GO-20199027317,THEFT UNDER - BICYCLE,2019-08-22T00:00:00,2019,August,Thursday,22,234,15,2019-08-22T00:00:00,2019,August,Thursday,22,234,17,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,18 LIV ALIGHT 3,RG,7,PLE,500.0,STOLEN,16671,"{'type': 'Point', 'coordinates': (-79.40663406, 43.66607805)}"
-16702,21077,GO-20199033233,THEFT UNDER - BICYCLE,2019-10-09T00:00:00,2019,October,Wednesday,9,282,10,2019-10-09T00:00:00,2019,October,Wednesday,9,282,12,D14,Toronto,79,University (79),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,OT,1,YEL,600.0,STOLEN,16672,"{'type': 'Point', 'coordinates': (-79.40445971, 43.66428104)}"
-16703,21114,GO-20209007687,THEFT UNDER,2020-02-15T00:00:00,2020,February,Saturday,15,46,4,2020-03-04T00:00:00,2020,March,Wednesday,4,64,10,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SOLOIST ALLOY,RG,1,BLK,500.0,STOLEN,16673,"{'type': 'Point', 'coordinates': (-79.40649032, 43.66032305)}"
-16704,21163,GO-20209017684,THEFT UNDER,2020-07-14T00:00:00,2020,July,Tuesday,14,196,23,2020-07-16T00:00:00,2020,July,Thursday,16,198,10,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,MT,15,GRY,500.0,STOLEN,16674,"{'type': 'Point', 'coordinates': (-79.40649032, 43.66032305)}"
-16705,21164,GO-20209017684,THEFT UNDER,2020-07-14T00:00:00,2020,July,Tuesday,14,196,23,2020-07-16T00:00:00,2020,July,Thursday,16,198,10,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MA,,OT,18,BLK,600.0,STOLEN,16675,"{'type': 'Point', 'coordinates': (-79.40649032, 43.66032305)}"
-16706,21197,GO-20179012240,THEFT UNDER - BICYCLE,2017-08-10T00:00:00,2017,August,Thursday,10,222,19,2017-08-12T00:00:00,2017,August,Saturday,12,224,11,D14,Toronto,79,University (79),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,DECLARATION,RG,1,BLK,768.0,STOLEN,16676,"{'type': 'Point', 'coordinates': (-79.40207036, 43.66305191)}"
-16707,21205,GO-20179013969,THEFT UNDER,2017-09-03T00:00:00,2017,September,Sunday,3,246,17,2017-09-04T00:00:00,2017,September,Monday,4,247,17,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,5,TRQ,300.0,STOLEN,16677,"{'type': 'Point', 'coordinates': (-79.40478414, 43.66249403)}"
-16708,21228,GO-20179018171,THEFT UNDER - BICYCLE,2017-10-25T00:00:00,2017,October,Wednesday,25,298,16,2017-10-25T00:00:00,2017,October,Wednesday,25,298,22,D14,Toronto,79,University (79),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,,OT,7,LGR,400.0,STOLEN,16678,"{'type': 'Point', 'coordinates': (-79.40307045, 43.6655101)}"
-16709,21229,GO-20171951453,B&E,2017-10-27T00:00:00,2017,October,Friday,27,300,9,2017-10-28T00:00:00,2017,October,Saturday,28,301,10,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,MARIN OR MARINO,,OT,12,GRY,500.0,STOLEN,16679,"{'type': 'Point', 'coordinates': (-79.40158672, 43.65949543)}"
-16710,21240,GO-20179021657,THEFT UNDER,2017-11-29T00:00:00,2017,November,Wednesday,29,333,23,2017-12-09T00:00:00,2017,December,Saturday,9,343,19,D14,Toronto,79,University (79),"Apartment (Rooming House, Condo)",Apartment,KH,KHS CX-100,TO,14,RED,1399.0,STOLEN,16680,"{'type': 'Point', 'coordinates': (-79.40648042, 43.65672138)}"
-16711,21273,GO-20189015696,THEFT UNDER - BICYCLE,2018-05-09T00:00:00,2018,May,Wednesday,9,129,23,2018-05-21T00:00:00,2018,May,Monday,21,141,17,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,1,BLK,300.0,STOLEN,16681,"{'type': 'Point', 'coordinates': (-79.40904976, 43.65980581)}"
-16712,21305,GO-20189021395,THEFT UNDER - BICYCLE,2018-07-06T00:00:00,2018,July,Friday,6,187,3,2018-07-06T00:00:00,2018,July,Friday,6,187,12,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,CX,TO,16,WHI,1250.0,STOLEN,16682,"{'type': 'Point', 'coordinates': (-79.40648042, 43.65672138)}"
-16713,21329,GO-20189025767,THEFT UNDER,2018-08-09T00:00:00,2018,August,Thursday,9,221,17,2018-08-09T00:00:00,2018,August,Thursday,9,221,20,D14,Toronto,79,University (79),Bar / Restaurant,Commercial,OT,OSLO,RG,20,BLK,900.0,STOLEN,16683,"{'type': 'Point', 'coordinates': (-79.40599871, 43.66226023)}"
-16714,21342,GO-20189030313,THEFT UNDER,2018-09-13T00:00:00,2018,September,Thursday,13,256,8,2018-09-13T00:00:00,2018,September,Thursday,13,256,22,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MA,MUIRWOODS,RG,27,BLK,969.0,STOLEN,16684,"{'type': 'Point', 'coordinates': (-79.40583441, 43.65867014)}"
-16715,21355,GO-20189033161,THEFT UNDER - BICYCLE,2018-10-07T00:00:00,2018,October,Sunday,7,280,0,2018-10-07T00:00:00,2018,October,Sunday,7,280,11,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ST. TROPEZ,RG,24,RED,300.0,STOLEN,16685,"{'type': 'Point', 'coordinates': (-79.40713565, 43.65840411)}"
-16716,21361,GO-20181873074,B&E,2018-10-09T00:00:00,2018,October,Tuesday,9,282,19,2018-10-10T00:00:00,2018,October,Wednesday,10,283,15,D14,Toronto,79,University (79),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,,OT,0,GRN,,UNKNOWN,16686,"{'type': 'Point', 'coordinates': (-79.40743417, 43.66591416)}"
-16717,21371,GO-20169005104,THEFT UNDER,2016-05-29T00:00:00,2016,May,Sunday,29,150,3,2016-05-30T00:00:00,2016,May,Monday,30,151,12,D14,Toronto,79,University (79),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RC,1,ONG,800.0,STOLEN,16687,"{'type': 'Point', 'coordinates': (-79.40583441, 43.65867014)}"
-16718,8316,GO-20149004629,THEFT UNDER,2014-07-01T00:00:00,2014,July,Tuesday,1,182,16,2014-07-02T00:00:00,2014,July,Wednesday,2,183,11,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ROCKHOPPER,MT,27,BLK,1000.0,STOLEN,16688,"{'type': 'Point', 'coordinates': (-79.42939853, 43.66115068)}"
-16719,3303,GO-20189027704,THEFT UNDER - BICYCLE,2018-08-23T00:00:00,2018,August,Thursday,23,235,23,2018-08-24T00:00:00,2018,August,Friday,24,236,9,D14,Toronto,81,Trinity-Bellwoods (81),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,PROJEKT-8,RG,8,BLK,500.0,STOLEN,16689,"{'type': 'Point', 'coordinates': (-79.40854285, 43.64628799)}"
-16720,8317,GO-20149004629,THEFT UNDER,2014-07-01T00:00:00,2014,July,Tuesday,1,182,16,2014-07-02T00:00:00,2014,July,Wednesday,2,183,11,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,TO,10,,300.0,STOLEN,16690,"{'type': 'Point', 'coordinates': (-79.42939853, 43.66115068)}"
-16721,3311,GO-20189023440,THEFT UNDER - BICYCLE,2018-07-21T00:00:00,2018,July,Saturday,21,202,0,2018-07-22T00:00:00,2018,July,Sunday,22,203,16,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,RAIDER,MT,21,ONG,100.0,STOLEN,16691,"{'type': 'Point', 'coordinates': (-79.41840704, 43.65358398)}"
-16722,8708,GO-20149006171,THEFT UNDER,2014-08-21T00:00:00,2014,August,Thursday,21,233,19,2014-08-21T00:00:00,2014,August,Thursday,21,233,19,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,04SW2611D 07110,MT,6,RED,400.0,STOLEN,16692,"{'type': 'Point', 'coordinates': (-79.41021074, 43.66266863)}"
-16723,707,GO-20171113775,THEFT UNDER - BICYCLE,2017-06-22T00:00:00,2017,June,Thursday,22,173,8,2017-06-22T00:00:00,2017,June,Thursday,22,173,10,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BRODIE,REMUS,OT,1,LBL,600.0,STOLEN,16693,"{'type': 'Point', 'coordinates': (-79.42144875, 43.65465622)}"
-16724,3318,GO-20189027882,THEFT UNDER,2018-08-24T00:00:00,2018,August,Friday,24,236,19,2018-08-25T00:00:00,2018,August,Saturday,25,237,10,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE 2,RG,24,GRY,750.0,STOLEN,16694,"{'type': 'Point', 'coordinates': (-79.41782286, 43.64883079)}"
-16725,8728,GO-20149006285,THEFT UNDER,2014-08-01T00:00:00,2014,August,Friday,1,213,21,2014-08-25T00:00:00,2014,August,Monday,25,237,16,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,EARL,OT,1,BLK,550.0,STOLEN,16695,"{'type': 'Point', 'coordinates': (-79.41239827, 43.66488473)}"
-16726,708,GO-20171113775,THEFT UNDER - BICYCLE,2017-06-22T00:00:00,2017,June,Thursday,22,173,8,2017-06-22T00:00:00,2017,June,Thursday,22,173,10,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,,OT,3,GRN,100.0,STOLEN,16696,"{'type': 'Point', 'coordinates': (-79.42144875, 43.65465622)}"
-16727,3511,GO-20189031062,THEFT UNDER,2018-09-19T00:00:00,2018,September,Wednesday,19,262,7,2018-09-19T00:00:00,2018,September,Wednesday,19,262,9,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,MARLIN 4,MT,21,SIL,800.0,STOLEN,16697,"{'type': 'Point', 'coordinates': (-79.41732195, 43.65381073)}"
-16728,8757,GO-20149006341,THEFT UNDER,2014-08-24T00:00:00,2014,August,Sunday,24,236,11,2014-08-27T00:00:00,2014,August,Wednesday,27,239,13,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,SC,,RC,1,BLK,400.0,STOLEN,16698,"{'type': 'Point', 'coordinates': (-79.40892011, 43.65622962)}"
-16729,727,GO-20179008978,THEFT UNDER - BICYCLE,2017-06-24T00:00:00,2017,June,Saturday,24,175,22,2017-06-26T00:00:00,2017,June,Monday,26,177,22,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MIXTE 3-SPEED,RG,3,MRN,850.0,STOLEN,16699,"{'type': 'Point', 'coordinates': (-79.41556857, 43.65495192)}"
-16730,3512,GO-20189031062,THEFT UNDER,2018-09-19T00:00:00,2018,September,Wednesday,19,262,7,2018-09-19T00:00:00,2018,September,Wednesday,19,262,9,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,,RC,32,PLE,0.0,STOLEN,16700,"{'type': 'Point', 'coordinates': (-79.41732195, 43.65381073)}"
-16731,8775,GO-20149006428,THEFT UNDER,2014-08-29T00:00:00,2014,August,Friday,29,241,10,2014-08-30T00:00:00,2014,August,Saturday,30,242,15,D14,Toronto,80,Palmerston-Little Italy (80),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,OT,24,GRY,1500.0,STOLEN,16701,"{'type': 'Point', 'coordinates': (-79.41669285, 43.65511528)}"
-16732,913,GO-20179010558,THEFT UNDER - BICYCLE,2017-07-15T00:00:00,2017,July,Saturday,15,196,22,2017-07-19T00:00:00,2017,July,Wednesday,19,200,9,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,2014 ESCAPE,TO,12,LBL,459.0,STOLEN,16702,"{'type': 'Point', 'coordinates': (-79.42617452000002, 43.65644357)}"
-16733,3714,GO-20189034419,THEFT UNDER - BICYCLE,2018-10-16T00:00:00,2018,October,Tuesday,16,289,19,2018-10-17T00:00:00,2018,October,Wednesday,17,290,12,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,MT,6,BLU,1500.0,STOLEN,16703,"{'type': 'Point', 'coordinates': (-79.41556857, 43.65495192)}"
-16734,3803,GO-20189036540,THEFT UNDER - BICYCLE,2018-10-29T00:00:00,2018,October,Monday,29,302,22,2018-11-02T00:00:00,2018,November,Friday,2,306,9,D14,Toronto,81,Trinity-Bellwoods (81),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,,RC,21,GRY,500.0,STOLEN,16704,"{'type': 'Point', 'coordinates': (-79.41087977, 43.65130826)}"
-16735,5850,GO-2020179519,THEFT UNDER,2020-01-26T00:00:00,2020,January,Sunday,26,26,6,2020-01-26T00:00:00,2020,January,Sunday,26,26,16,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,OTHER,,EL,1,PNK,350.0,STOLEN,16836,"{'type': 'Point', 'coordinates': (-79.4251468, 43.65386853)}"
-16736,3809,GO-20182037601,B&E,2018-11-04T00:00:00,2018,November,Sunday,4,308,15,2018-11-04T00:00:00,2018,November,Sunday,4,308,21,D14,Toronto,81,Trinity-Bellwoods (81),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,TALON,MT,22,BLKRED,1300.0,STOLEN,16705,"{'type': 'Point', 'coordinates': (-79.41728265, 43.64743681)}"
-16737,4183,GO-20199012427,THEFT UNDER,2019-04-19T00:00:00,2019,April,Friday,19,109,2,2019-04-19T00:00:00,2019,April,Friday,19,109,12,D14,Toronto,81,Trinity-Bellwoods (81),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,RG,15,BLU,700.0,STOLEN,16706,"{'type': 'Point', 'coordinates': (-79.41661387, 43.6490227)}"
-16738,4186,GO-20199012562,THEFT UNDER - BICYCLE,2019-04-18T00:00:00,2019,April,Thursday,18,108,16,2019-04-20T00:00:00,2019,April,Saturday,20,110,22,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RC,21,RED,800.0,STOLEN,16707,"{'type': 'Point', 'coordinates': (-79.41626354, 43.64472458)}"
-16739,4187,GO-20199012571,THEFT UNDER,2019-04-21T00:00:00,2019,April,Sunday,21,111,10,2019-04-21T00:00:00,2019,April,Sunday,21,111,11,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,MARLIN 4,MT,21,SIL,800.0,RECOVERED,16708,"{'type': 'Point', 'coordinates': (-79.41732195, 43.65381073)}"
-16740,4193,GO-20199012813,THEFT UNDER - BICYCLE,2019-04-23T00:00:00,2019,April,Tuesday,23,113,10,2019-04-23T00:00:00,2019,April,Tuesday,23,113,17,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,1,BLK,450.0,STOLEN,16709,"{'type': 'Point', 'coordinates': (-79.41948662, 43.64608916)}"
-16741,4346,GO-2019961155,THEFT UNDER - BICYCLE,2019-05-24T00:00:00,2019,May,Friday,24,144,14,2019-05-26T00:00:00,2019,May,Sunday,26,146,10,D14,Toronto,81,Trinity-Bellwoods (81),"Private Property Structure (Pool, Shed, Detached Garage)",Other,LOUIS GARNEAU,SL3 AXIS,RC,0,BLKWHI,1300.0,STOLEN,16710,"{'type': 'Point', 'coordinates': (-79.42115741, 43.64372573)}"
-16742,4357,GO-2019973380,THEFT UNDER,2019-03-27T00:00:00,2019,March,Wednesday,27,86,17,2019-05-28T00:00:00,2019,May,Tuesday,28,148,1,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,ESCAPE RX1,OT,20,GRYSIL,1000.0,STOLEN,16711,"{'type': 'Point', 'coordinates': (-79.42471154, 43.64943732)}"
-16743,4361,GO-20199016521,THEFT UNDER - BICYCLE,2019-05-24T00:00:00,2019,May,Friday,24,144,9,2019-05-27T00:00:00,2019,May,Monday,27,147,19,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,,RG,7,BLK,500.0,STOLEN,16712,"{'type': 'Point', 'coordinates': (-79.42471154, 43.64943732)}"
-16744,4764,GO-20199020822,THEFT UNDER,2019-06-24T00:00:00,2019,June,Monday,24,175,0,2019-07-03T00:00:00,2019,July,Wednesday,3,184,11,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,CA,QUICK 5,RG,18,GRY,1200.0,STOLEN,16713,"{'type': 'Point', 'coordinates': (-79.42343283, 43.64619112)}"
-16745,4770,GO-20199022279,THEFT UNDER - BICYCLE,2019-07-14T00:00:00,2019,July,Sunday,14,195,12,2019-07-15T00:00:00,2019,July,Monday,15,196,7,D14,Toronto,81,Trinity-Bellwoods (81),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,OT,1,,1000.0,STOLEN,16714,"{'type': 'Point', 'coordinates': (-79.42013894, 43.64783378)}"
-16746,4826,GO-20199023093,THEFT UNDER,2019-07-20T00:00:00,2019,July,Saturday,20,201,22,2019-07-21T00:00:00,2019,July,Sunday,21,202,11,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,DEW DROP,TO,12,BLK,800.0,STOLEN,16715,"{'type': 'Point', 'coordinates': (-79.41775154, 43.64528750000001)}"
-16747,5070,GO-20199026258,THEFT UNDER - BICYCLE,2019-08-13T00:00:00,2019,August,Tuesday,13,225,19,2019-08-14T00:00:00,2019,August,Wednesday,14,226,19,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,DEW PLUS,OT,9,GRY,800.0,STOLEN,16716,"{'type': 'Point', 'coordinates': (-79.41156475, 43.65117687)}"
-16748,5106,GO-20199026833,THEFT UNDER - BICYCLE,2019-07-02T00:00:00,2019,July,Tuesday,2,183,2,2019-08-19T00:00:00,2019,August,Monday,19,231,23,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,FX2,RG,18,BLK,950.0,STOLEN,16717,"{'type': 'Point', 'coordinates': (-79.41217785, 43.6527161)}"
-16749,5111,GO-20199026930,THEFT UNDER - BICYCLE,2019-08-11T00:00:00,2019,August,Sunday,11,223,0,2019-08-20T00:00:00,2019,August,Tuesday,20,232,16,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,GI,RAPID 1,OT,10,BLK,1169.0,STOLEN,16718,"{'type': 'Point', 'coordinates': (-79.41134558, 43.64735559)}"
-16750,8953,GO-20142968023,THEFT UNDER,2014-06-27T00:00:00,2014,June,Friday,27,178,18,2014-09-23T00:00:00,2014,September,Tuesday,23,266,15,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,DEFY,RC,14,WHI,800.0,STOLEN,16719,"{'type': 'Point', 'coordinates': (-79.41257586, 43.6554626)}"
-16751,5127,GO-20199027200,THEFT UNDER - BICYCLE,2019-08-21T00:00:00,2019,August,Wednesday,21,233,20,2019-08-21T00:00:00,2019,August,Wednesday,21,233,21,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,14,GRY,1100.0,STOLEN,16720,"{'type': 'Point', 'coordinates': (-79.40892011, 43.65622962)}"
-16752,5220,GO-20199028559,THEFT UNDER,2019-09-03T00:00:00,2019,September,Tuesday,3,246,5,2019-09-03T00:00:00,2019,September,Tuesday,3,246,9,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,RG,17,BLK,800.0,STOLEN,16721,"{'type': 'Point', 'coordinates': (-79.41277419, 43.65092838)}"
-16753,5333,GO-20199030157,THEFT FROM MOTOR VEHICLE UNDER,2019-09-13T00:00:00,2019,September,Friday,13,256,22,2019-09-16T00:00:00,2019,September,Monday,16,259,8,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,1,GRN,400.0,STOLEN,16722,"{'type': 'Point', 'coordinates': (-79.40946539, 43.64774544000001)}"
-16754,5444,GO-20199032132,THEFT UNDER,2019-09-30T00:00:00,2019,September,Monday,30,273,18,2019-09-30T00:00:00,2019,September,Monday,30,273,20,D14,Toronto,81,Trinity-Bellwoods (81),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,,RG,10,BLU,0.0,STOLEN,16723,"{'type': 'Point', 'coordinates': (-79.42636436, 43.65360014)}"
-16755,5661,GO-20199036810,THEFT UNDER,2019-10-29T00:00:00,2019,October,Tuesday,29,302,19,2019-11-07T00:00:00,2019,November,Thursday,7,311,19,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,CHARCOAL,RG,1,BLK,565.0,STOLEN,16724,"{'type': 'Point', 'coordinates': (-79.41134558, 43.64735559)}"
-16756,5743,GO-20199039689,THEFT UNDER,2019-12-03T00:00:00,2019,December,Tuesday,3,337,16,2019-12-03T00:00:00,2019,December,Tuesday,3,337,19,D14,Toronto,81,Trinity-Bellwoods (81),"Private Property Structure (Pool, Shed, Detached Garage)",Other,EM,E-WILD,EL,30,WHI,2250.0,STOLEN,16725,"{'type': 'Point', 'coordinates': (-79.41762122, 43.65457659)}"
-16757,5998,GO-20209010088,THEFT UNDER - BICYCLE,2020-03-29T00:00:00,2020,March,Sunday,29,89,14,2020-03-29T00:00:00,2020,March,Sunday,29,89,14,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,10,ONG,1000.0,STOLEN,16726,"{'type': 'Point', 'coordinates': (-79.41087977, 43.65130826)}"
-16758,6109,GO-20209012004,THEFT UNDER,2020-04-21T00:00:00,2020,April,Tuesday,21,112,14,2020-04-27T00:00:00,2020,April,Monday,27,118,14,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE,OT,12,RED,586.0,STOLEN,16727,"{'type': 'Point', 'coordinates': (-79.42144875, 43.65465622)}"
-16759,6136,GO-20209012451,THEFT UNDER,2020-05-01T00:00:00,2020,May,Friday,1,122,3,2020-05-04T00:00:00,2020,May,Monday,4,125,14,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,NO,VFR,RG,18,BLK,600.0,STOLEN,16728,"{'type': 'Point', 'coordinates': (-79.42343283, 43.64619112)}"
-16760,6156,GO-20209012673,THEFT UNDER,2020-05-06T00:00:00,2020,May,Wednesday,6,127,21,2020-05-07T00:00:00,2020,May,Thursday,7,128,22,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,MT,21,BLU,800.0,STOLEN,16729,"{'type': 'Point', 'coordinates': (-79.41142197, 43.65082905)}"
-16761,6194,GO-20209013279,THEFT UNDER,2020-05-14T00:00:00,2020,May,Thursday,14,135,12,2020-05-17T00:00:00,2020,May,Sunday,17,138,12,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,5,RED,1000.0,STOLEN,16730,"{'type': 'Point', 'coordinates': (-79.41589897, 43.64718351)}"
-16762,6196,GO-2020901448,B&E,2020-05-15T00:00:00,2020,May,Friday,15,136,4,2020-05-15T00:00:00,2020,May,Friday,15,136,20,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,OT,SVELTO DR,RG,20,WHI,1500.0,STOLEN,16731,"{'type': 'Point', 'coordinates': (-79.41979948, 43.64692616)}"
-16763,6316,GO-20209014762,THEFT UNDER,2020-06-06T00:00:00,2020,June,Saturday,6,158,5,2020-06-06T00:00:00,2020,June,Saturday,6,158,17,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,10,BLU,200.0,STOLEN,16732,"{'type': 'Point', 'coordinates': (-79.40983106000002, 43.64683952)}"
-16764,6332,GO-20209014709,THEFT UNDER,2020-06-07T00:00:00,2020,June,Sunday,7,159,3,2020-06-07T00:00:00,2020,June,Sunday,7,159,12,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,QUANTUM,RC,16,BLU,2000.0,STOLEN,16733,"{'type': 'Point', 'coordinates': (-79.41134558, 43.64735559)}"
-16765,6364,GO-20209015123,THEFT UNDER,2020-06-09T00:00:00,2020,June,Tuesday,9,161,10,2020-06-11T00:00:00,2020,June,Thursday,11,163,10,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,TREK,VERVE,EL,8,GRY,3390.0,STOLEN,16734,"{'type': 'Point', 'coordinates': (-79.42322142, 43.6494005)}"
-16766,6567,GO-20201254425,THEFT UNDER - BICYCLE,2020-07-02T00:00:00,2020,July,Thursday,2,184,20,2020-07-07T00:00:00,2020,July,Tuesday,7,189,12,D14,Toronto,81,Trinity-Bellwoods (81),"Private Property Structure (Pool, Shed, Detached Garage)",Other,DEVINCI,MELANI,MT,7,BLKBLU,700.0,STOLEN,16735,"{'type': 'Point', 'coordinates': (-79.42407483, 43.64782021)}"
-16767,6592,GO-20209017342,THEFT UNDER,2020-07-11T00:00:00,2020,July,Saturday,11,193,20,2020-07-12T00:00:00,2020,July,Sunday,12,194,5,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RC,1,BLK,650.0,STOLEN,16736,"{'type': 'Point', 'coordinates': (-79.41979948, 43.64692616)}"
-16768,6740,GO-20201371189,THEFT UNDER,2020-07-23T00:00:00,2020,July,Thursday,23,205,14,2020-07-23T00:00:00,2020,July,Thursday,23,205,16,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,,OT,24,BLUTRQ,180.0,STOLEN,16737,"{'type': 'Point', 'coordinates': (-79.40535132, 43.64743517)}"
-16769,6761,GO-20209018702,THEFT UNDER,2020-07-27T00:00:00,2020,July,Monday,27,209,15,2020-07-27T00:00:00,2020,July,Monday,27,209,17,D14,Toronto,81,Trinity-Bellwoods (81),Convenience Stores,Commercial,UK,,OT,3,BLU,1000.0,STOLEN,16738,"{'type': 'Point', 'coordinates': (-79.42471154, 43.64943732)}"
-16770,6850,GO-20209019241,THEFT UNDER,2020-07-26T00:00:00,2020,July,Sunday,26,208,8,2020-08-03T00:00:00,2020,August,Monday,3,216,2,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RC,10,RED,150.0,STOLEN,16739,"{'type': 'Point', 'coordinates': (-79.42144875, 43.65465622)}"
-16771,6859,GO-20201450815,THEFT FROM MOTOR VEHICLE UNDER,2020-07-30T00:00:00,2020,July,Thursday,30,212,20,2020-08-04T00:00:00,2020,August,Tuesday,4,217,9,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,FX1,OT,21,BLK,520.0,STOLEN,16740,"{'type': 'Point', 'coordinates': (-79.41144857, 43.6456996)}"
-16772,6877,GO-20209019473,THEFT UNDER,2020-08-05T00:00:00,2020,August,Wednesday,5,218,10,2020-08-05T00:00:00,2020,August,Wednesday,5,218,17,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,ELEGANCE 702,RG,24,BLU,600.0,STOLEN,16741,"{'type': 'Point', 'coordinates': (-79.41142197, 43.65082905)}"
-16773,6884,GO-20209019499,THEFT UNDER,2020-07-26T00:00:00,2020,July,Sunday,26,208,0,2020-08-06T00:00:00,2020,August,Thursday,6,219,11,D14,Toronto,81,Trinity-Bellwoods (81),"Private Property Structure (Pool, Shed, Detached Garage)",Other,BI,VIA NIRONE 7 CL,TO,16,BLK,1600.0,STOLEN,16742,"{'type': 'Point', 'coordinates': (-79.4046631, 43.64896803)}"
-16774,6887,GO-20209019554,THEFT UNDER,2020-08-06T00:00:00,2020,August,Thursday,6,219,14,2020-08-06T00:00:00,2020,August,Thursday,6,219,15,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,BLK,450.0,STOLEN,16743,"{'type': 'Point', 'coordinates': (-79.40844929, 43.6517934)}"
-16775,7032,GO-20201580249,B&E,2020-08-20T00:00:00,2020,August,Thursday,20,233,22,2020-08-22T00:00:00,2020,August,Saturday,22,235,14,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ALIEN,MT,18,WHI,1000.0,STOLEN,16744,"{'type': 'Point', 'coordinates': (-79.41490809000001, 43.65049859)}"
-16776,7074,GO-20209021319,THEFT UNDER,2020-08-22T00:00:00,2020,August,Saturday,22,235,8,2020-08-25T00:00:00,2020,August,Tuesday,25,238,16,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,,RG,20,RED,200.0,STOLEN,16745,"{'type': 'Point', 'coordinates': (-79.406958, 43.65137878)}"
-16777,7172,GO-20209022266,THEFT UNDER,2020-09-03T00:00:00,2020,September,Thursday,3,247,18,2020-09-04T00:00:00,2020,September,Friday,4,248,0,D14,Toronto,81,Trinity-Bellwoods (81),Bar / Restaurant,Commercial,OT,D STREET PROJEK,RG,8,BLU,400.0,STOLEN,16746,"{'type': 'Point', 'coordinates': (-79.40844929, 43.6517934)}"
-16778,7200,GO-20201699043,THEFT UNDER - BICYCLE,2020-09-07T00:00:00,2020,September,Monday,7,251,19,2020-09-08T00:00:00,2020,September,Tuesday,8,252,12,D14,Toronto,81,Trinity-Bellwoods (81),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIO,,EL,0,ONG,,STOLEN,16747,"{'type': 'Point', 'coordinates': (-79.41874469, 43.65445612)}"
-16779,7239,GO-20209023151,THEFT UNDER,2020-09-03T00:00:00,2020,September,Thursday,3,247,20,2020-09-13T00:00:00,2020,September,Sunday,13,257,20,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,8,BLU,700.0,STOLEN,16748,"{'type': 'Point', 'coordinates': (-79.41134558, 43.64735559)}"
-16780,7324,GO-20209024139,THEFT UNDER,2020-09-23T00:00:00,2020,September,Wednesday,23,267,5,2020-09-23T00:00:00,2020,September,Wednesday,23,267,7,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,21,BLK,900.0,STOLEN,16749,"{'type': 'Point', 'coordinates': (-79.41767813, 43.65169734)}"
-16781,7406,GO-20209025328,THEFT UNDER,2020-10-02T00:00:00,2020,October,Friday,2,276,15,2020-10-03T00:00:00,2020,October,Saturday,3,277,10,D14,Toronto,81,Trinity-Bellwoods (81),Bar / Restaurant,Commercial,OT,,RG,27,WHI,150.0,STOLEN,16750,"{'type': 'Point', 'coordinates': (-79.40723527, 43.65205839)}"
-16782,7424,GO-20209025596,THEFT UNDER,2020-10-06T00:00:00,2020,October,Tuesday,6,280,9,2020-10-06T00:00:00,2020,October,Tuesday,6,280,15,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,TERRA,MT,9,BLK,773.0,STOLEN,16751,"{'type': 'Point', 'coordinates': (-79.406958, 43.65137878)}"
-16783,7466,GO-20209026358,THEFT UNDER,2020-10-12T00:00:00,2020,October,Monday,12,286,11,2020-10-13T00:00:00,2020,October,Tuesday,13,287,18,D14,Toronto,81,Trinity-Bellwoods (81),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,MEN'S HYBRID,RG,21,BLK,0.0,STOLEN,16752,"{'type': 'Point', 'coordinates': (-79.41485345, 43.65320024)}"
-16784,7537,GO-20209027533,THEFT UNDER,2020-10-03T00:00:00,2020,October,Saturday,3,277,14,2020-10-24T00:00:00,2020,October,Saturday,24,298,14,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,BOLT,TO,15,BLK,1000.0,STOLEN,16753,"{'type': 'Point', 'coordinates': (-79.41134558, 43.64735559)}"
-16785,7572,GO-20209028143,THEFT UNDER,2020-10-29T00:00:00,2020,October,Thursday,29,303,14,2020-10-29T00:00:00,2020,October,Thursday,29,303,15,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ROLL,RG,1,WHI,600.0,STOLEN,16754,"{'type': 'Point', 'coordinates': (-79.41217785, 43.6527161)}"
-16786,7594,GO-20209028666,THEFT UNDER,2020-11-02T00:00:00,2020,November,Monday,2,307,17,2020-11-04T00:00:00,2020,November,Wednesday,4,309,20,D14,Toronto,81,Trinity-Bellwoods (81),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,MILANO,RG,21,BLK,400.0,STOLEN,16755,"{'type': 'Point', 'coordinates': (-79.41775154, 43.64528750000001)}"
-16787,7613,GO-20209029170,THEFT UNDER,2020-11-10T00:00:00,2020,November,Tuesday,10,315,13,2020-11-10T00:00:00,2020,November,Tuesday,10,315,18,D14,Toronto,81,Trinity-Bellwoods (81),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,TCR COMPOSITE,RC,27,WHI,1500.0,STOLEN,16756,"{'type': 'Point', 'coordinates': (-79.41490809000001, 43.65049859)}"
-16788,7663,GO-20209030588,THEFT UNDER,2020-11-24T00:00:00,2020,November,Tuesday,24,329,18,2020-11-25T00:00:00,2020,November,Wednesday,25,330,18,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,OT,8,BLU,2400.0,STOLEN,16757,"{'type': 'Point', 'coordinates': (-79.40582991, 43.64859048)}"
-16789,7684,GO-20209031155,THEFT UNDER,2020-12-03T00:00:00,2020,December,Thursday,3,338,13,2020-12-03T00:00:00,2020,December,Thursday,3,338,14,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,EM1 SE,SC,32,RED,2999.0,STOLEN,16758,"{'type': 'Point', 'coordinates': (-79.41363235, 43.65470528)}"
-16790,7749,GO-20141383941,THEFT UNDER,2014-01-09T00:00:00,2014,January,Thursday,9,9,13,2014-01-21T00:00:00,2014,January,Tuesday,21,21,11,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KONA,,RG,21,GRN,2000.0,STOLEN,16759,"{'type': 'Point', 'coordinates': (-79.406958, 43.65137878)}"
-16791,8980,GO-20149007216,THEFT UNDER,2014-09-24T00:00:00,2014,September,Wednesday,24,267,18,2014-09-26T00:00:00,2014,September,Friday,26,269,10,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,KARATE MONKEY,MT,27,BLK,3274.0,STOLEN,16760,"{'type': 'Point', 'coordinates': (-79.42174172, 43.65197666)}"
-16792,9007,GO-20143026974,THEFT UNDER,2014-10-02T00:00:00,2014,October,Thursday,2,275,11,2014-10-02T00:00:00,2014,October,Thursday,2,275,11,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,VITA ELITE,MT,21,BLK,1200.0,STOLEN,16761,"{'type': 'Point', 'coordinates': (-79.41589897, 43.64718351)}"
-16793,9138,GO-20143223273,THEFT FROM MOTOR VEHICLE UNDER,2014-10-31T00:00:00,2014,October,Friday,31,304,15,2014-11-02T00:00:00,2014,November,Sunday,2,306,8,D14,Toronto,81,Trinity-Bellwoods (81),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GIANT,LADIES,MT,20,BLK,650.0,STOLEN,16762,"{'type': 'Point', 'coordinates': (-79.42013894, 43.64783378)}"
-16794,9140,GO-20143225771,THEFT UNDER,2014-10-31T00:00:00,2014,October,Friday,31,304,17,2014-11-02T00:00:00,2014,November,Sunday,2,306,17,D14,Toronto,81,Trinity-Bellwoods (81),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GIANT,ANTHEM ADVANCED,MT,21,WHI,1500.0,STOLEN,16763,"{'type': 'Point', 'coordinates': (-79.42013894, 43.64783378)}"
-16795,9195,GO-20143313638,THEFT UNDER,2014-11-15T00:00:00,2014,November,Saturday,15,319,20,2014-11-16T00:00:00,2014,November,Sunday,16,320,19,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,NORCO,BMX,BM,1,GRY,,STOLEN,16764,"{'type': 'Point', 'coordinates': (-79.42023359, 43.65491084)}"
-16796,9200,GO-20149008366,THEFT UNDER,2014-11-23T00:00:00,2014,November,Sunday,23,327,14,2014-11-24T00:00:00,2014,November,Monday,24,328,10,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,FIXED-GEAR SING,RG,30,TAN,220.0,STOLEN,16765,"{'type': 'Point', 'coordinates': (-79.41744186, 43.64447905)}"
-16797,1020,GO-20179011405,THEFT UNDER - BICYCLE,2017-07-20T00:00:00,2017,July,Thursday,20,201,0,2017-07-31T00:00:00,2017,July,Monday,31,212,15,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,IH,LEGIT,MT,21,BLK,399.0,STOLEN,16766,"{'type': 'Point', 'coordinates': (-79.41975508, 43.65683202)}"
-16798,9400,GO-20159001890,THEFT UNDER,2015-04-10T00:00:00,2015,April,Friday,10,100,0,2015-04-13T00:00:00,2015,April,Monday,13,103,17,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,FASTROAD SLR 2,RG,9,WHI,1400.0,STOLEN,16767,"{'type': 'Point', 'coordinates': (-79.40828337, 43.64808588)}"
-16799,8871,GO-20149006797,THEFT UNDER,2014-09-10T00:00:00,2014,September,Wednesday,10,253,19,2014-09-11T00:00:00,2014,September,Thursday,11,254,14,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,RG,6,,50.0,STOLEN,16768,"{'type': 'Point', 'coordinates': (-79.41067759, 43.66382976)}"
-16800,1301,GO-20179013948,THEFT UNDER,2017-09-04T00:00:00,2017,September,Monday,4,247,10,2017-09-04T00:00:00,2017,September,Monday,4,247,11,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CITIZEN,TO,21,BLK,300.0,STOLEN,16769,"{'type': 'Point', 'coordinates': (-79.42562006, 43.66198485)}"
-16801,1398,GO-20179014709,THEFT UNDER,2017-09-13T00:00:00,2017,September,Wednesday,13,256,20,2017-09-13T00:00:00,2017,September,Wednesday,13,256,22,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,SPECIAL OTTO,RG,8,BLK,1000.0,STOLEN,16770,"{'type': 'Point', 'coordinates': (-79.41953602, 43.65952318)}"
-16802,1461,GO-20179015255,THEFT UNDER - BICYCLE,2017-09-17T00:00:00,2017,September,Sunday,17,260,1,2017-09-20T00:00:00,2017,September,Wednesday,20,263,12,D14,Toronto,80,Palmerston-Little Italy (80),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,,MT,18,BLK,500.0,STOLEN,16771,"{'type': 'Point', 'coordinates': (-79.41383777, 43.65521319)}"
-16803,1499,GO-20179015549,THEFT UNDER,2017-09-23T00:00:00,2017,September,Saturday,23,266,8,2017-09-23T00:00:00,2017,September,Saturday,23,266,14,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,2.1 (2008),TO,9,CRM,1200.0,STOLEN,16772,"{'type': 'Point', 'coordinates': (-79.41481904, 43.66434022)}"
-16804,1588,GO-20179016460,THEFT UNDER - BICYCLE,2017-09-19T00:00:00,2017,September,Tuesday,19,262,7,2017-10-04T00:00:00,2017,October,Wednesday,4,277,17,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RC,12,PLE,750.0,STOLEN,16773,"{'type': 'Point', 'coordinates': (-79.41607423, 43.66406885)}"
-16805,1613,GO-20179016720,THEFT UNDER - BICYCLE,2017-10-08T00:00:00,2017,October,Sunday,8,281,0,2017-10-08T00:00:00,2017,October,Sunday,8,281,10,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FJ,,RG,1,BLK,900.0,STOLEN,16774,"{'type': 'Point', 'coordinates': (-79.42490374, 43.65671556)}"
-16806,1703,GO-20179017685,THEFT UNDER - BICYCLE,2017-10-16T00:00:00,2017,October,Monday,16,289,11,2017-10-20T00:00:00,2017,October,Friday,20,293,11,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,2013 LEADER 721,RG,1,BLK,1000.0,STOLEN,16775,"{'type': 'Point', 'coordinates': (-79.41383777, 43.65521319)}"
-16807,1798,GO-20179018937,THEFT UNDER - BICYCLE,2017-11-04T00:00:00,2017,November,Saturday,4,308,9,2017-11-05T00:00:00,2017,November,Sunday,5,309,12,D52,Toronto,80,Palmerston-Little Italy (80),Universities / Colleges,Educational,UK,,OT,1,GRY,300.0,STOLEN,16776,"{'type': 'Point', 'coordinates': (-79.41828872, 43.65524586000001)}"
-16808,1963,GO-20189000284,THEFT UNDER,2018-01-04T00:00:00,2018,January,Thursday,4,4,0,2018-01-04T00:00:00,2018,January,Thursday,4,4,15,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FJ,FEATHER,TO,1,BLK,900.0,STOLEN,16777,"{'type': 'Point', 'coordinates': (-79.41136773000001, 43.65571437)}"
-16809,1964,GO-20189000284,THEFT UNDER,2018-01-04T00:00:00,2018,January,Thursday,4,4,0,2018-01-04T00:00:00,2018,January,Thursday,4,4,15,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FJ,CLASSIC,TO,1,BLK,800.0,STOLEN,16778,"{'type': 'Point', 'coordinates': (-79.41136773000001, 43.65571437)}"
-16810,1973,GO-20189000642,THEFT UNDER - BICYCLE,2018-01-09T00:00:00,2018,January,Tuesday,9,9,6,2018-01-09T00:00:00,2018,January,Tuesday,9,9,11,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,3,GRN,989.0,STOLEN,16779,"{'type': 'Point', 'coordinates': (-79.41672657, 43.66262133)}"
-16811,1997,GO-20189001988,THEFT UNDER - BICYCLE,2018-01-20T00:00:00,2018,January,Saturday,20,20,19,2018-01-21T00:00:00,2018,January,Sunday,21,21,16,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,9,GRY,800.0,STOLEN,16780,"{'type': 'Point', 'coordinates': (-79.42322914, 43.6625099)}"
-16812,2055,GO-20189006285,THEFT UNDER - BICYCLE,2018-02-27T00:00:00,2018,February,Tuesday,27,58,16,2018-02-27T00:00:00,2018,February,Tuesday,27,58,20,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,BLACK PEARL,OT,1,BLK,780.0,STOLEN,16781,"{'type': 'Point', 'coordinates': (-79.41025366, 43.65955808)}"
-16813,2120,GO-2018571782,B&E,2018-03-29T00:00:00,2018,March,Thursday,29,88,18,2018-03-30T00:00:00,2018,March,Friday,30,89,11,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,ROAM,MT,21,BLK,1200.0,STOLEN,16782,"{'type': 'Point', 'coordinates': (-79.42739759, 43.65617153)}"
-16814,2181,GO-20189012273,THEFT UNDER,2018-04-19T00:00:00,2018,April,Thursday,19,109,23,2018-04-20T00:00:00,2018,April,Friday,20,110,15,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,1,RED,1500.0,STOLEN,16783,"{'type': 'Point', 'coordinates': (-79.4237171, 43.65710472)}"
-16815,2248,GO-20189013695,THEFT UNDER - BICYCLE,2018-05-02T00:00:00,2018,May,Wednesday,2,122,12,2018-05-03T00:00:00,2018,May,Thursday,3,123,14,D14,Toronto,80,Palmerston-Little Italy (80),Schools During Supervised Activity,Educational,OT,THE ROMEO,RC,1,WHI,581.0,STOLEN,16784,"{'type': 'Point', 'coordinates': (-79.41385535, 43.66193043)}"
-16816,2252,GO-20189013887,THEFT UNDER,2018-05-04T00:00:00,2018,May,Friday,4,124,1,2018-05-05T00:00:00,2018,May,Saturday,5,125,14,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,3,LBL,900.0,STOLEN,16785,"{'type': 'Point', 'coordinates': (-79.41581649, 43.66028429)}"
-16817,2253,GO-20189013887,THEFT UNDER,2018-05-04T00:00:00,2018,May,Friday,4,124,1,2018-05-05T00:00:00,2018,May,Saturday,5,125,14,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,,MT,18,ONG,350.0,STOLEN,16786,"{'type': 'Point', 'coordinates': (-79.41581649, 43.66028429)}"
-16818,2254,GO-20189013887,THEFT UNDER,2018-05-04T00:00:00,2018,May,Friday,4,124,1,2018-05-05T00:00:00,2018,May,Saturday,5,125,14,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,,BM,1,ONG,100.0,STOLEN,16787,"{'type': 'Point', 'coordinates': (-79.41581649, 43.66028429)}"
-16819,2255,GO-20189013887,THEFT UNDER,2018-05-04T00:00:00,2018,May,Friday,4,124,1,2018-05-05T00:00:00,2018,May,Saturday,5,125,14,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,,RG,5,BLU,150.0,STOLEN,16788,"{'type': 'Point', 'coordinates': (-79.41581649, 43.66028429)}"
-16820,2266,GO-20189014058,THEFT UNDER - BICYCLE,2018-05-06T00:00:00,2018,May,Sunday,6,126,15,2018-05-07T00:00:00,2018,May,Monday,7,127,12,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,DB,TRACE COMP,OT,9,BLK,725.0,STOLEN,16789,"{'type': 'Point', 'coordinates': (-79.41524431, 43.65881487)}"
-16821,2363,GO-2018914418,THEFT UNDER - BICYCLE,2018-05-20T00:00:00,2018,May,Sunday,20,140,23,2018-05-21T00:00:00,2018,May,Monday,21,141,11,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,PERFORMER TRIKE,TR,27,PLE,1900.0,STOLEN,16790,"{'type': 'Point', 'coordinates': (-79.42801462, 43.661480430000005)}"
-16822,2381,GO-20189015950,THEFT UNDER - BICYCLE,2018-05-11T00:00:00,2018,May,Friday,11,131,1,2018-05-23T00:00:00,2018,May,Wednesday,23,143,15,D14,Toronto,80,Palmerston-Little Italy (80),Bar / Restaurant,Commercial,OT,GHOUL CORE LINE,RG,1,WHI,600.0,STOLEN,16791,"{'type': 'Point', 'coordinates': (-79.42266495, 43.65440014)}"
-16823,2391,GO-20189016186,THEFT UNDER - BICYCLE,2018-05-23T00:00:00,2018,May,Wednesday,23,143,23,2018-05-25T00:00:00,2018,May,Friday,25,145,11,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,PE,SPORT,RC,10,BLU,400.0,STOLEN,16792,"{'type': 'Point', 'coordinates': (-79.40904976, 43.65980581)}"
-16824,2406,GO-20189016429,THEFT UNDER - BICYCLE,2018-05-17T00:00:00,2018,May,Thursday,17,137,16,2018-05-27T00:00:00,2018,May,Sunday,27,147,17,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SIRRUS SPORT,RG,8,,650.0,STOLEN,16793,"{'type': 'Point', 'coordinates': (-79.41392904, 43.65882137)}"
-16825,2420,GO-20189016186,THEFT UNDER - BICYCLE,2018-05-23T00:00:00,2018,May,Wednesday,23,143,23,2018-05-25T00:00:00,2018,May,Friday,25,145,11,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,PE,SPORT,RC,10,BLU,400.0,STOLEN,16794,"{'type': 'Point', 'coordinates': (-79.40904976, 43.65980581)}"
-16826,2425,GO-2018978538,THEFT UNDER,2018-05-23T00:00:00,2018,May,Wednesday,23,143,12,2018-05-30T00:00:00,2018,May,Wednesday,30,150,14,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,HEART,RC,1,BLK,600.0,STOLEN,16795,"{'type': 'Point', 'coordinates': (-79.42063919, 43.65928043)}"
-16827,2462,GO-20189017420,THEFT UNDER - BICYCLE,2018-06-04T00:00:00,2018,June,Monday,4,155,0,2018-06-05T00:00:00,2018,June,Tuesday,5,156,9,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DB,,MT,21,GLD,100.0,STOLEN,16796,"{'type': 'Point', 'coordinates': (-79.42322914, 43.6625099)}"
-16828,2470,GO-20189017509,THEFT UNDER,2018-06-04T00:00:00,2018,June,Monday,4,155,17,2018-06-05T00:00:00,2018,June,Tuesday,5,156,17,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,21,BLK,330.0,STOLEN,16797,"{'type': 'Point', 'coordinates': (-79.42939853, 43.66115068)}"
-16829,2502,GO-20189017866,THEFT UNDER - BICYCLE,2018-06-02T00:00:00,2018,June,Saturday,2,153,13,2018-06-08T00:00:00,2018,June,Friday,8,159,11,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,VAYA,TO,20,LBL,3021.0,STOLEN,16798,"{'type': 'Point', 'coordinates': (-79.4209148, 43.65662988)}"
-16830,2525,GO-20189018103,THEFT UNDER - BICYCLE,2018-06-09T00:00:00,2018,June,Saturday,9,160,23,2018-06-10T00:00:00,2018,June,Sunday,10,161,13,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,OT,6KU SINGLE SPEE,RG,1,BLK,615.0,STOLEN,16799,"{'type': 'Point', 'coordinates': (-79.40713565, 43.65840411)}"
-16831,2741,GO-20189021035,THEFT UNDER - BICYCLE,2018-07-02T00:00:00,2018,July,Monday,2,183,21,2018-07-03T00:00:00,2018,July,Tuesday,3,184,16,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,OT,TRAVELLER,OT,21,LBL,150.0,STOLEN,16800,"{'type': 'Point', 'coordinates': (-79.41953602, 43.65952318)}"
-16832,2771,GO-20181196246,B&E,2018-06-16T00:00:00,2018,June,Saturday,16,167,23,2018-07-02T00:00:00,2018,July,Monday,2,183,11,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,JAKE,TO,21,BLK,1499.0,STOLEN,16801,"{'type': 'Point', 'coordinates': (-79.40973033, 43.66151426)}"
-16833,2830,GO-20189022156,THEFT UNDER - BICYCLE,2018-07-12T00:00:00,2018,July,Thursday,12,193,2,2018-07-12T00:00:00,2018,July,Thursday,12,193,14,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,10,BRN,200.0,STOLEN,16802,"{'type': 'Point', 'coordinates': (-79.42728654, 43.65922882)}"
-16834,2896,GO-20189023164,THEFT UNDER - BICYCLE,2018-07-19T00:00:00,2018,July,Thursday,19,200,23,2018-07-20T00:00:00,2018,July,Friday,20,201,10,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MA,2017 NICASIO SS,OT,1,BLK,900.0,STOLEN,16803,"{'type': 'Point', 'coordinates': (-79.42816584, 43.6614364)}"
-16835,3073,GO-20189025107,THEFT UNDER - BICYCLE,2018-08-02T00:00:00,2018,August,Thursday,2,214,23,2018-08-04T00:00:00,2018,August,Saturday,4,216,13,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ALLEZ COMP,RC,18,RED,2300.0,STOLEN,16804,"{'type': 'Point', 'coordinates': (-79.41217664, 43.6610155)}"
-16836,3136,GO-20189025698,THEFT UNDER - BICYCLE,2018-08-08T00:00:00,2018,August,Wednesday,8,220,0,2018-08-09T00:00:00,2018,August,Thursday,9,221,12,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,PANAMAO,MT,16,GRY,576.0,STOLEN,16805,"{'type': 'Point', 'coordinates': (-79.42596852, 43.65951273)}"
-16837,10010,GO-20159004461,THEFT UNDER,2015-07-11T00:00:00,2015,July,Saturday,11,192,0,2015-07-12T00:00:00,2015,July,Sunday,12,193,17,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,OT,15V110F,RG,24,WHI,700.0,STOLEN,16928,"{'type': 'Point', 'coordinates': (-79.40968237000001, 43.65155403)}"
-16838,3137,GO-20189025698,THEFT UNDER - BICYCLE,2018-08-08T00:00:00,2018,August,Wednesday,8,220,0,2018-08-09T00:00:00,2018,August,Thursday,9,221,12,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,EX-712,RG,16,BLK,549.0,STOLEN,16806,"{'type': 'Point', 'coordinates': (-79.42596852, 43.65951273)}"
-16839,3492,GO-20189030757,THEFT UNDER - BICYCLE,2018-09-17T00:00:00,2018,September,Monday,17,260,0,2018-09-17T00:00:00,2018,September,Monday,17,260,10,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,10,OTH,900.0,STOLEN,16807,"{'type': 'Point', 'coordinates': (-79.42266495, 43.65440014)}"
-16840,3520,GO-20189031267,THEFT UNDER,2018-09-20T00:00:00,2018,September,Thursday,20,263,2,2018-09-20T00:00:00,2018,September,Thursday,20,263,13,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,MT,21,WHI,300.0,STOLEN,16808,"{'type': 'Point', 'coordinates': (-79.4220205, 43.6627783)}"
-16841,3596,GO-20189032627,THEFT UNDER,2018-09-28T00:00:00,2018,September,Friday,28,271,22,2018-10-02T00:00:00,2018,October,Tuesday,2,275,11,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,WHI,650.0,STOLEN,16809,"{'type': 'Point', 'coordinates': (-79.42439359, 43.66225003)}"
-16842,3741,GO-20189035068,THEFT UNDER - BICYCLE,2018-10-16T00:00:00,2018,October,Tuesday,16,289,12,2018-10-22T00:00:00,2018,October,Monday,22,295,13,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FJ,CLASSIC,TO,1,BLK,1000.0,STOLEN,16810,"{'type': 'Point', 'coordinates': (-79.41481904, 43.66434022)}"
-16843,3744,GO-20189035120,THEFT UNDER - BICYCLE,2017-08-20T00:00:00,2017,August,Sunday,20,232,14,2018-10-22T00:00:00,2018,October,Monday,22,295,15,D14,Toronto,80,Palmerston-Little Italy (80),Universities / Colleges,Educational,,INSPIRE 2,MT,18,SIL,175.0,STOLEN,16811,"{'type': 'Point', 'coordinates': (-79.42460593, 43.66219851)}"
-16844,3762,GO-20189035586,THEFT UNDER - BICYCLE,2018-07-10T00:00:00,2018,July,Tuesday,10,191,21,2018-10-25T00:00:00,2018,October,Thursday,25,298,17,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,CADENT 3,RG,27,BLK,750.0,STOLEN,16812,"{'type': 'Point', 'coordinates': (-79.42087545, 43.66302552)}"
-16845,10086,GO-20151269672,THEFT UNDER,2015-07-25T00:00:00,2015,July,Saturday,25,206,14,2015-07-25T00:00:00,2015,July,Saturday,25,206,14,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,INDY3,TO,24,TRQ,900.0,STOLEN,16929,"{'type': 'Point', 'coordinates': (-79.41485345, 43.65320024)}"
-16846,3831,GO-20182045601,THEFT UNDER - BICYCLE,2018-10-01T00:00:00,2018,October,Monday,1,274,23,2018-11-06T00:00:00,2018,November,Tuesday,6,310,5,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MARIN,DOMINICAN,OT,1,WHI,700.0,STOLEN,16813,"{'type': 'Point', 'coordinates': (-79.4131003, 43.6633432)}"
-16847,3835,GO-20189037601,THEFT UNDER - BICYCLE,2018-11-08T00:00:00,2018,November,Thursday,8,312,2,2018-11-09T00:00:00,2018,November,Friday,9,313,17,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,ESCAPE 3,OT,7,BLK,519.0,STOLEN,16814,"{'type': 'Point', 'coordinates': (-79.42439359, 43.66225003)}"
-16848,3977,GO-20199000135,THEFT UNDER - BICYCLE,2018-12-24T00:00:00,2018,December,Monday,24,358,12,2019-01-02T00:00:00,2019,January,Wednesday,2,2,12,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,VALENCE,OT,18,GRN,1000.0,STOLEN,16815,"{'type': 'Point', 'coordinates': (-79.40904976, 43.65980581)}"
-16849,4340,GO-20199016203,THEFT UNDER - BICYCLE,2019-05-20T00:00:00,2019,May,Monday,20,140,12,2019-05-24T00:00:00,2019,May,Friday,24,144,17,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,FJ,FEATHER,RG,1,BLK,950.0,STOLEN,16816,"{'type': 'Point', 'coordinates': (-79.4131003, 43.6633432)}"
-16850,4405,GO-20199017301,THEFT UNDER,2019-05-12T00:00:00,2019,May,Sunday,12,132,3,2019-06-03T00:00:00,2019,June,Monday,3,154,17,D14,Toronto,80,Palmerston-Little Italy (80),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,KH,ULTRA,MT,18,BLK,1200.0,STOLEN,16817,"{'type': 'Point', 'coordinates': (-79.41217664, 43.6610155)}"
-16851,4407,GO-20199017348,THEFT UNDER - BICYCLE,2019-06-01T00:00:00,2019,June,Saturday,1,152,1,2019-06-04T00:00:00,2019,June,Tuesday,4,155,10,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,"MALAHAT 16"", 20",RG,21,,0.0,STOLEN,16818,"{'type': 'Point', 'coordinates': (-79.42475081, 43.65976849)}"
-16852,4427,GO-20199017797,THEFT UNDER - BICYCLE,2019-06-03T00:00:00,2019,June,Monday,3,154,20,2019-06-07T00:00:00,2019,June,Friday,7,158,22,D14,Toronto,80,Palmerston-Little Italy (80),Schools During Un-Supervised Activity,Educational,CA,,MT,24,BLK,2000.0,STOLEN,16819,"{'type': 'Point', 'coordinates': (-79.42023359, 43.65491084)}"
-16853,4507,GO-20199018825,THEFT UNDER - BICYCLE,2019-06-16T00:00:00,2019,June,Sunday,16,167,3,2019-06-16T00:00:00,2019,June,Sunday,16,167,14,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,FX-3,RG,27,BLK,1000.0,STOLEN,16820,"{'type': 'Point', 'coordinates': (-79.41392904, 43.65882137)}"
-16854,4559,GO-20191126244,THEFT UNDER - BICYCLE,2019-06-18T00:00:00,2019,June,Tuesday,18,169,9,2019-06-18T00:00:00,2019,June,Tuesday,18,169,9,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,,RG,12,BLK,,STOLEN,16821,"{'type': 'Point', 'coordinates': (-79.41136773000001, 43.65571437)}"
-16855,4640,GO-20199020521,THEFT UNDER - BICYCLE,2019-06-29T00:00:00,2019,June,Saturday,29,180,19,2019-06-29T00:00:00,2019,June,Saturday,29,180,20,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,RG,21,BLU,960.0,STOLEN,16822,"{'type': 'Point', 'coordinates': (-79.42617452000002, 43.65644357)}"
-16856,4641,GO-20199020521,THEFT UNDER - BICYCLE,2019-06-29T00:00:00,2019,June,Saturday,29,180,19,2019-06-29T00:00:00,2019,June,Saturday,29,180,20,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,RG,21,,960.0,STOLEN,16823,"{'type': 'Point', 'coordinates': (-79.42617452000002, 43.65644357)}"
-16857,4922,GO-20199024320,THEFT UNDER - BICYCLE,2019-07-29T00:00:00,2019,July,Monday,29,210,2,2019-07-30T00:00:00,2019,July,Tuesday,30,211,9,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,,RG,30,SIL,1000.0,STOLEN,16824,"{'type': 'Point', 'coordinates': (-79.42248729, 43.65732889000001)}"
-16858,5120,GO-20199027131,THEFT UNDER - BICYCLE,2019-08-18T00:00:00,2019,August,Sunday,18,230,23,2019-08-21T00:00:00,2019,August,Wednesday,21,233,15,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SPECIALIZED ALL,RC,22,BLK,1400.0,STOLEN,16825,"{'type': 'Point', 'coordinates': (-79.40892011, 43.65622962)}"
-16859,5128,GO-20199027204,THEFT UNDER - BICYCLE,2019-08-02T00:00:00,2019,August,Friday,2,214,0,2019-08-22T00:00:00,2019,August,Thursday,22,234,8,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,1,WHI,500.0,STOLEN,16826,"{'type': 'Point', 'coordinates': (-79.42391973, 43.65412228000001)}"
-16860,5192,GO-20199028216,THEFT UNDER - BICYCLE,2019-08-29T00:00:00,2019,August,Thursday,29,241,23,2019-08-30T00:00:00,2019,August,Friday,30,242,9,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,KO,DEW,RG,18,YEL,700.0,STOLEN,16827,"{'type': 'Point', 'coordinates': (-79.41136773000001, 43.65571437)}"
-16861,5474,GO-20199032721,THEFT UNDER - BICYCLE,2019-10-03T00:00:00,2019,October,Thursday,3,276,0,2019-10-05T00:00:00,2019,October,Saturday,5,278,16,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,CADENT I8,RG,8,BLK,800.0,STOLEN,16828,"{'type': 'Point', 'coordinates': (-79.42816584, 43.6614364)}"
-16862,5515,GO-20199033650,THEFT UNDER - BICYCLE,2019-10-12T00:00:00,2019,October,Saturday,12,285,9,2019-10-12T00:00:00,2019,October,Saturday,12,285,11,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,CX,MT,11,GRY,1300.0,STOLEN,16829,"{'type': 'Point', 'coordinates': (-79.42681894, 43.66173648)}"
-16863,5550,GO-20199034530,THEFT UNDER,2019-10-17T00:00:00,2019,October,Thursday,17,290,9,2019-10-20T00:00:00,2019,October,Sunday,20,293,10,D14,Toronto,80,Palmerston-Little Italy (80),Schools During Un-Supervised Activity,Educational,TR,2015 TREK,MT,21,BLK,1000.0,STOLEN,16830,"{'type': 'Point', 'coordinates': (-79.41067759, 43.66382976)}"
-16864,5669,GO-20199036940,THEFT UNDER - BICYCLE,2019-11-02T00:00:00,2019,November,Saturday,2,306,19,2019-11-08T00:00:00,2019,November,Friday,8,312,20,D14,Toronto,80,Palmerston-Little Italy (80),Ttc Subway Station,Transit,OT,10 SPEED,RC,10,GRN,250.0,STOLEN,16831,"{'type': 'Point', 'coordinates': (-79.42816584, 43.6614364)}"
-16865,5678,GO-20192175755,THEFT UNDER,2019-11-02T00:00:00,2019,November,Saturday,2,306,0,2019-11-11T00:00:00,2019,November,Monday,11,315,12,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,PEUGOT,,RC,10,RED,600.0,STOLEN,16832,"{'type': 'Point', 'coordinates': (-79.41136773000001, 43.65571437)}"
-16866,5722,GO-20199038568,THEFT UNDER,2019-11-23T00:00:00,2019,November,Saturday,23,327,0,2019-11-23T00:00:00,2019,November,Saturday,23,327,13,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,OT,8,TRQ,740.0,STOLEN,16833,"{'type': 'Point', 'coordinates': (-79.4237171, 43.65710472)}"
-16867,5738,GO-20199039473,THEFT UNDER,2019-11-29T00:00:00,2019,November,Friday,29,333,19,2019-12-01T00:00:00,2019,December,Sunday,1,335,21,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,UK,DOLCE,OT,8,GRY,1100.0,STOLEN,16834,"{'type': 'Point', 'coordinates': (-79.41217664, 43.6610155)}"
-16868,5819,GO-20209001178,THEFT UNDER,2020-01-10T00:00:00,2020,January,Friday,10,10,14,2020-01-10T00:00:00,2020,January,Friday,10,10,18,D14,Toronto,80,Palmerston-Little Italy (80),Schools During Supervised Activity,Educational,UK,,RG,14,RED,520.0,STOLEN,16835,"{'type': 'Point', 'coordinates': (-79.42248729, 43.65732889000001)}"
-16869,5931,GO-2020412433,B&E,2020-02-27T00:00:00,2020,February,Thursday,27,58,5,2020-02-27T00:00:00,2020,February,Thursday,27,58,11,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,,MT,0,BLK,800.0,STOLEN,16837,"{'type': 'Point', 'coordinates': (-79.42475081, 43.65976849)}"
-16870,5934,GO-20209006993,THEFT UNDER,2020-02-26T00:00:00,2020,February,Wednesday,26,57,8,2020-02-26T00:00:00,2020,February,Wednesday,26,57,16,D14,Toronto,80,Palmerston-Little Italy (80),Schools During Supervised Activity,Educational,NO,INDIE W DROP HA,RC,10,BLK,1100.0,STOLEN,16838,"{'type': 'Point', 'coordinates': (-79.41385535, 43.66193043)}"
-16871,6021,GO-20209010517,THEFT UNDER,2020-04-02T00:00:00,2020,April,Thursday,2,93,13,2020-04-05T00:00:00,2020,April,Sunday,5,96,15,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,ARIEL SPORT DIS,MT,24,BLK,500.0,STOLEN,16839,"{'type': 'Point', 'coordinates': (-79.42728654, 43.65922882)}"
-16872,6119,GO-2020763142,B&E,2020-04-21T00:00:00,2020,April,Tuesday,21,112,0,2020-04-21T00:00:00,2020,April,Tuesday,21,112,23,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,FUJI,FEATHER,RG,1,BLK,1000.0,RECOVERED,16840,"{'type': 'Point', 'coordinates': (-79.40904976, 43.65980581)}"
-16873,6122,GO-20209012163,THEFT UNDER,2020-04-28T00:00:00,2020,April,Tuesday,28,119,21,2020-04-29T00:00:00,2020,April,Wednesday,29,120,17,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,MT,21,,983.0,STOLEN,16841,"{'type': 'Point', 'coordinates': (-79.42596852, 43.65951273)}"
-16874,6222,GO-20209013649,THEFT UNDER,2020-05-21T00:00:00,2020,May,Thursday,21,142,3,2020-05-21T00:00:00,2020,May,Thursday,21,142,20,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KO,,RG,24,BLK,1000.0,STOLEN,16842,"{'type': 'Point', 'coordinates': (-79.41385535, 43.66193043)}"
-16875,6223,GO-20209013651,THEFT UNDER,2020-05-21T00:00:00,2020,May,Thursday,21,142,3,2020-05-21T00:00:00,2020,May,Thursday,21,142,20,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KO,,RG,24,BLK,1000.0,STOLEN,16843,"{'type': 'Point', 'coordinates': (-79.41385535, 43.66193043)}"
-16876,6224,GO-20209013651,THEFT UNDER,2020-05-21T00:00:00,2020,May,Thursday,21,142,3,2020-05-21T00:00:00,2020,May,Thursday,21,142,20,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,RG,21,,800.0,STOLEN,16844,"{'type': 'Point', 'coordinates': (-79.41385535, 43.66193043)}"
-16877,6225,GO-20209013651,THEFT UNDER,2020-05-21T00:00:00,2020,May,Thursday,21,142,3,2020-05-21T00:00:00,2020,May,Thursday,21,142,20,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,RG,24,BLU,900.0,STOLEN,16845,"{'type': 'Point', 'coordinates': (-79.41385535, 43.66193043)}"
-16878,6247,GO-20209013887,THEFT UNDER - BICYCLE,2020-05-22T00:00:00,2020,May,Friday,22,143,17,2020-05-25T00:00:00,2020,May,Monday,25,146,16,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,EASTSIDE CHAMPI,RG,1,SIL,650.0,STOLEN,16846,"{'type': 'Point', 'coordinates': (-79.42617452000002, 43.65644357)}"
-16879,6317,GO-20209014769,THEFT UNDER,2020-06-07T00:00:00,2020,June,Sunday,7,159,4,2020-06-07T00:00:00,2020,June,Sunday,7,159,8,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,LANDAU TRI A,RC,21,BLK,1000.0,STOLEN,16847,"{'type': 'Point', 'coordinates': (-79.42427516, 43.65854697)}"
-16880,8879,GO-20149006837,THEFT UNDER,2014-09-12T00:00:00,2014,September,Friday,12,255,12,2014-09-12T00:00:00,2014,September,Friday,12,255,16,D14,Toronto,80,Palmerston-Little Italy (80),Schools During Un-Supervised Activity,Educational,TR,TREK 14 7.1 FX,RG,24,BLK,490.0,STOLEN,16848,"{'type': 'Point', 'coordinates': (-79.41385535, 43.66193043)}"
-16881,8925,GO-20149007033,THEFT UNDER,2014-09-19T00:00:00,2014,September,Friday,19,262,8,2014-09-19T00:00:00,2014,September,Friday,19,262,10,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,GI,SIMPLE 3,RG,3,DBL,600.0,STOLEN,16849,"{'type': 'Point', 'coordinates': (-79.41383777, 43.65521319)}"
-16882,8926,GO-20149007036,THEFT UNDER,2014-09-19T00:00:00,2014,September,Friday,19,262,3,2014-09-19T00:00:00,2014,September,Friday,19,262,14,D14,Toronto,80,Palmerston-Little Italy (80),Bar / Restaurant,Commercial,GI,,RC,1,WHI,2000.0,STOLEN,16850,"{'type': 'Point', 'coordinates': (-79.41383777, 43.65521319)}"
-16883,9020,GO-20149007400,THEFT UNDER,2014-10-03T00:00:00,2014,October,Friday,3,276,12,2014-10-04T00:00:00,2014,October,Saturday,4,277,19,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,ALYSA,RC,20,GRY,500.0,STOLEN,16851,"{'type': 'Point', 'coordinates': (-79.40904976, 43.65980581)}"
-16884,9113,GO-20143173534,THEFT UNDER,2014-10-25T00:00:00,2014,October,Saturday,25,298,14,2014-10-25T00:00:00,2014,October,Saturday,25,298,14,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KHS,EXPRESS,OT,0,BLKBLU,500.0,STOLEN,16852,"{'type': 'Point', 'coordinates': (-79.41021074, 43.66266863)}"
-16885,9161,GO-20149008074,B&E,2014-11-05T00:00:00,2014,November,Wednesday,5,309,21,2014-11-07T00:00:00,2014,November,Friday,7,311,15,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,,MT,21,BLU,300.0,STOLEN,16853,"{'type': 'Point', 'coordinates': (-79.41524431, 43.65881487)}"
-16886,9592,GO-2015817122,THEFT UNDER,2015-05-16T00:00:00,2015,May,Saturday,16,136,14,2015-05-16T00:00:00,2015,May,Saturday,16,136,15,D14,Toronto,80,Palmerston-Little Italy (80),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,GALLANT CUSTOM,OT,2,TRQ,967.0,STOLEN,16854,"{'type': 'Point', 'coordinates': (-79.41383777, 43.65521319)}"
-16887,9621,GO-2015842516,THEFT UNDER,2015-05-20T00:00:00,2015,May,Wednesday,20,140,17,2015-05-20T00:00:00,2015,May,Wednesday,20,140,19,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,,EL,1,BLKRED,1800.0,STOLEN,16855,"{'type': 'Point', 'coordinates': (-79.4251468, 43.65386853)}"
-16888,9732,GO-20159003355,THEFT UNDER,2015-06-04T00:00:00,2015,June,Thursday,4,155,23,2015-06-05T00:00:00,2015,June,Friday,5,156,12,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ST TROPEZ - WF,OT,18,SIL,600.0,STOLEN,16856,"{'type': 'Point', 'coordinates': (-79.41025366, 43.65955808)}"
-16889,9799,GO-20159003585,THEFT UNDER,2015-06-13T00:00:00,2015,June,Saturday,13,164,14,2015-06-13T00:00:00,2015,June,Saturday,13,164,16,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,1,GRN,200.0,STOLEN,16857,"{'type': 'Point', 'coordinates': (-79.41524431, 43.65881487)}"
-16890,9847,GO-20151048816,THEFT UNDER,2015-06-19T00:00:00,2015,June,Friday,19,170,16,2015-06-22T00:00:00,2015,June,Monday,22,173,10,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,PEUGEOT,,RC,21,SIL,2000.0,STOLEN,16858,"{'type': 'Point', 'coordinates': (-79.41146941000001, 43.65932021)}"
-16891,9983,GO-20151165925,THEFT UNDER,2015-07-08T00:00:00,2015,July,Wednesday,8,189,21,2015-07-10T00:00:00,2015,July,Friday,10,191,11,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FUJI,CLASSIC,OT,0,,400.0,STOLEN,16859,"{'type': 'Point', 'coordinates': (-79.4127959, 43.66088637)}"
-16892,10013,GO-20159004572,THEFT UNDER,2015-07-14T00:00:00,2015,July,Tuesday,14,195,22,2015-07-15T00:00:00,2015,July,Wednesday,15,196,9,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MA,INVERNESS,RG,1,BLK,650.0,STOLEN,16860,"{'type': 'Point', 'coordinates': (-79.42475081, 43.65976849)}"
-16893,10046,GO-20159004671,THEFT UNDER,2015-06-07T00:00:00,2015,June,Sunday,7,158,16,2015-07-17T00:00:00,2015,July,Friday,17,198,17,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,2008,MT,7,RED,0.0,STOLEN,16861,"{'type': 'Point', 'coordinates': (-79.40973033, 43.66151426)}"
-16894,10078,GO-20151244550,THEFT UNDER,2015-07-21T00:00:00,2015,July,Tuesday,21,202,14,2015-07-21T00:00:00,2015,July,Tuesday,21,202,18,D14,Toronto,80,Palmerston-Little Italy (80),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,FUJI,TRACK CLASSIC,OT,1,BLK,600.0,STOLEN,16862,"{'type': 'Point', 'coordinates': (-79.41392904, 43.65882137)}"
-16895,10084,GO-20151251113,THEFT UNDER,2015-07-22T00:00:00,2015,July,Wednesday,22,203,12,2015-07-22T00:00:00,2015,July,Wednesday,22,203,18,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,MOTORINO,EL,3,BLK,1200.0,STOLEN,16863,"{'type': 'Point', 'coordinates': (-79.41257586, 43.6554626)}"
-16896,10173,GO-20151350112,ROBBERY - MUGGING,2015-08-07T00:00:00,2015,August,Friday,7,219,5,2015-08-07T00:00:00,2015,August,Friday,7,219,5,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,UNKNOWN,RG,10,SIL,50.0,STOLEN,16864,"{'type': 'Point', 'coordinates': (-79.40904976, 43.65980581)}"
-16897,10264,GO-20159005804,THEFT UNDER,2015-08-05T00:00:00,2015,August,Wednesday,5,217,5,2015-08-14T00:00:00,2015,August,Friday,14,226,13,D14,Toronto,80,Palmerston-Little Italy (80),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,MA,VENEZIA,RC,21,BLU,1200.0,STOLEN,16865,"{'type': 'Point', 'coordinates': (-79.42939853, 43.66115068)}"
-16898,10377,GO-20159006582,THEFT UNDER,2015-08-22T00:00:00,2015,August,Saturday,22,234,0,2015-08-31T00:00:00,2015,August,Monday,31,243,21,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,UK,EXIT-UPTOWN,RG,18,BLU,600.0,STOLEN,16866,"{'type': 'Point', 'coordinates': (-79.40892011, 43.65622962)}"
-16899,10378,GO-20159006588,THEFT UNDER,2015-08-30T00:00:00,2015,August,Sunday,30,242,22,2015-08-31T00:00:00,2015,August,Monday,31,243,22,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,BACK ALLEY,RG,1,BLK,502.0,RECOVERED,16867,"{'type': 'Point', 'coordinates': (-79.41025366, 43.65955808)}"
-16900,11642,GO-20169006384,THEFT UNDER,2016-06-26T00:00:00,2016,June,Sunday,26,178,2,2016-06-26T00:00:00,2016,June,Sunday,26,178,15,D14,Toronto,81,Trinity-Bellwoods (81),Bar / Restaurant,Commercial,OT,MKI 2 ROAD,RC,14,BLK,4300.0,STOLEN,16955,"{'type': 'Point', 'coordinates': (-79.41626354, 43.64472458)}"
-16901,10530,GO-20159007616,THEFT UNDER,2015-09-18T00:00:00,2015,September,Friday,18,261,21,2015-09-23T00:00:00,2015,September,Wednesday,23,266,12,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,BASIC STEP THRO,RG,7,CRM,750.0,STOLEN,16868,"{'type': 'Point', 'coordinates': (-79.42939853, 43.66115068)}"
-16902,10543,GO-20151595200,THEFT UNDER,2015-09-07T00:00:00,2015,September,Monday,7,250,9,2015-09-15T00:00:00,2015,September,Tuesday,15,258,14,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KENSINGTON,H10,OT,3,BGEMRN,,UNKNOWN,16869,"{'type': 'Point', 'coordinates': (-79.42023359, 43.65491084)}"
-16903,10557,GO-20159007872,THEFT UNDER,2015-09-28T00:00:00,2015,September,Monday,28,271,8,2015-09-28T00:00:00,2015,September,Monday,28,271,17,D14,Toronto,80,Palmerston-Little Italy (80),Schools During Supervised Activity,Educational,UK,,RG,18,BLK,350.0,STOLEN,16870,"{'type': 'Point', 'coordinates': (-79.41385535, 43.66193043)}"
-16904,10612,GO-20151743243,THEFT UNDER,2015-09-28T00:00:00,2015,September,Monday,28,271,3,2015-10-09T00:00:00,2015,October,Friday,9,282,13,D14,Toronto,80,Palmerston-Little Italy (80),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,,MT,6,REDBLK,800.0,STOLEN,16871,"{'type': 'Point', 'coordinates': (-79.42939853, 43.66115068)}"
-16905,10681,GO-20159008926,THEFT UNDER,2015-10-09T00:00:00,2015,October,Friday,9,282,13,2015-10-23T00:00:00,2015,October,Friday,23,296,13,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CC,,RG,15,BLU,200.0,STOLEN,16872,"{'type': 'Point', 'coordinates': (-79.42439359, 43.66225003)}"
-16906,10698,GO-20151854240,THEFT UNDER,2015-10-28T00:00:00,2015,October,Wednesday,28,301,8,2015-10-28T00:00:00,2015,October,Wednesday,28,301,18,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,MOUNTIAN BIKE,MT,21,GRNBLK,500.0,STOLEN,16873,"{'type': 'Point', 'coordinates': (-79.41462705, 43.6605259)}"
-16907,10795,GO-20159009960,THEFT UNDER,2015-11-20T00:00:00,2015,November,Friday,20,324,1,2015-11-20T00:00:00,2015,November,Friday,20,324,13,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RC,1,,150.0,STOLEN,16874,"{'type': 'Point', 'coordinates': (-79.42144875, 43.65465622)}"
-16908,23810,GO-20209018324,THEFT UNDER,2020-07-18T00:00:00,2020,July,Saturday,18,200,22,2020-07-23T00:00:00,2020,July,Thursday,23,205,11,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,INDIA,RG,1,GLD,700.0,STOLEN,17044,"{'type': 'Point', 'coordinates': (-79.40264178, 43.63743971)}"
-16909,10817,GO-20159010234,THEFT UNDER,2015-11-26T00:00:00,2015,November,Thursday,26,330,2,2015-11-26T00:00:00,2015,November,Thursday,26,330,13,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,24,RED,800.0,STOLEN,16875,"{'type': 'Point', 'coordinates': (-79.41837695, 43.66358488)}"
-16910,10828,GO-20151048816,THEFT UNDER,2015-06-19T00:00:00,2015,June,Friday,19,170,16,2015-06-22T00:00:00,2015,June,Monday,22,173,10,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,RG,1,BLK,,UNKNOWN,16876,"{'type': 'Point', 'coordinates': (-79.41146941000001, 43.65932021)}"
-16911,11042,GO-2016431029,THEFT UNDER,2016-03-11T00:00:00,2016,March,Friday,11,71,23,2016-03-12T00:00:00,2016,March,Saturday,12,72,11,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,GALLANT #2,RG,3,TRQ,1200.0,STOLEN,16877,"{'type': 'Point', 'coordinates': (-79.40768329, 43.65648148)}"
-16912,11120,GO-2016598227,B&E,2016-04-07T00:00:00,2016,April,Thursday,7,98,19,2016-04-08T00:00:00,2016,April,Friday,8,99,17,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,SERIES 3,OT,24,BLK,850.0,STOLEN,16878,"{'type': 'Point', 'coordinates': (-79.41669285, 43.65511528)}"
-16913,11360,GO-2016892535,THEFT UNDER,2016-05-24T00:00:00,2016,May,Tuesday,24,145,9,2016-05-24T00:00:00,2016,May,Tuesday,24,145,10,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,GT5,EL,1,BLK,1000.0,STOLEN,16879,"{'type': 'Point', 'coordinates': (-79.41975508, 43.65683202)}"
-16914,11389,GO-2016920544,THEFT UNDER - BICYCLE,2016-05-28T00:00:00,2016,May,Saturday,28,149,8,2016-05-28T00:00:00,2016,May,Saturday,28,149,10,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,SEDONA,MT,8,GRN,500.0,STOLEN,16880,"{'type': 'Point', 'coordinates': (-79.42562006, 43.66198485)}"
-16915,11398,GO-20169005073,THEFT UNDER,2016-04-22T00:00:00,2016,April,Friday,22,113,9,2016-05-29T00:00:00,2016,May,Sunday,29,150,17,D14,Toronto,80,Palmerston-Little Italy (80),Schools During Un-Supervised Activity,Educational,RM,METROPOLITAN,RG,27,DBL,850.0,STOLEN,16881,"{'type': 'Point', 'coordinates': (-79.41385535, 43.66193043)}"
-16916,11433,GO-20169005273,THEFT UNDER - BICYCLE,2016-06-02T00:00:00,2016,June,Thursday,2,154,2,2016-06-02T00:00:00,2016,June,Thursday,2,154,19,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,DEW PLUS,RG,21,BLK,1000.0,STOLEN,16882,"{'type': 'Point', 'coordinates': (-79.41786636, 43.655245660000006)}"
-16917,11476,GO-20169005501,THEFT UNDER - BICYCLE,2016-06-09T00:00:00,2016,June,Thursday,9,161,8,2016-06-09T00:00:00,2016,June,Thursday,9,161,10,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,FIXIE,RC,1,BLK,500.0,STOLEN,16883,"{'type': 'Point', 'coordinates': (-79.41894614, 43.65800323)}"
-16918,11533,GO-20169005821,THEFT UNDER,2016-06-14T00:00:00,2016,June,Tuesday,14,166,22,2016-06-15T00:00:00,2016,June,Wednesday,15,167,11,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,1,BLK,300.0,STOLEN,16884,"{'type': 'Point', 'coordinates': (-79.41828872, 43.65524586000001)}"
-16919,11549,GO-20169005872,THEFT UNDER - BICYCLE,2016-06-15T00:00:00,2016,June,Wednesday,15,167,9,2016-06-16T00:00:00,2016,June,Thursday,16,168,8,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,3,BLU,0.0,STOLEN,16885,"{'type': 'Point', 'coordinates': (-79.42087545, 43.66302552)}"
-16920,11551,GO-20161043785,THEFT OF EBIKE UNDER $5000,2016-06-15T00:00:00,2016,June,Wednesday,15,167,10,2016-06-15T00:00:00,2016,June,Wednesday,15,167,16,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,EL,3,BLKGLD,2500.0,STOLEN,16886,"{'type': 'Point', 'coordinates': (-79.411894, 43.66358017)}"
-16921,11682,GO-20169006639,THEFT UNDER - BICYCLE,2016-07-02T00:00:00,2016,July,Saturday,2,184,14,2016-07-02T00:00:00,2016,July,Saturday,2,184,18,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,MA,,OT,24,BLK,500.0,STOLEN,16887,"{'type': 'Point', 'coordinates': (-79.42266495, 43.65440014)}"
-16922,11778,GO-20169007097,THEFT UNDER - BICYCLE,2016-07-12T00:00:00,2016,July,Tuesday,12,194,18,2016-07-12T00:00:00,2016,July,Tuesday,12,194,19,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,SU,700C,RG,7,BLU,300.0,STOLEN,16888,"{'type': 'Point', 'coordinates': (-79.42087545, 43.66302552)}"
-16923,11821,GO-20161259819,THEFT UNDER - BICYCLE,2016-07-17T00:00:00,2016,July,Sunday,17,199,11,2016-07-18T00:00:00,2016,July,Monday,18,200,12,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,PEUGEOT,,RG,6,LGRBLU,200.0,STOLEN,16889,"{'type': 'Point', 'coordinates': (-79.40768329, 43.65648148)}"
-16924,12095,GO-20169008775,THEFT UNDER - BICYCLE,2016-08-15T00:00:00,2016,August,Monday,15,228,1,2016-08-15T00:00:00,2016,August,Monday,15,228,10,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,,MT,21,GRY,200.0,STOLEN,16890,"{'type': 'Point', 'coordinates': (-79.41093754, 43.66126456)}"
-16925,12119,GO-20169008912,THEFT UNDER,2016-08-16T00:00:00,2016,August,Tuesday,16,229,22,2016-08-17T00:00:00,2016,August,Wednesday,17,230,10,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,1,,500.0,STOLEN,16891,"{'type': 'Point', 'coordinates': (-79.41462705, 43.6605259)}"
-16926,12331,GO-20169010387,THEFT UNDER,2016-08-08T00:00:00,2016,August,Monday,8,221,10,2016-09-13T00:00:00,2016,September,Tuesday,13,257,20,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,27,BLK,1500.0,STOLEN,16892,"{'type': 'Point', 'coordinates': (-79.42184411, 43.65903647)}"
-16927,12346,GO-20169010469,THEFT UNDER,2016-09-14T00:00:00,2016,September,Wednesday,14,258,9,2016-09-14T00:00:00,2016,September,Wednesday,14,258,23,D14,Toronto,80,Palmerston-Little Italy (80),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,,RG,1,SIL,475.0,STOLEN,16893,"{'type': 'Point', 'coordinates': (-79.41257586, 43.6554626)}"
-16928,12348,GO-20161639294,THEFT UNDER - BICYCLE,2016-09-14T00:00:00,2016,September,Wednesday,14,258,22,2016-09-15T00:00:00,2016,September,Thursday,15,259,8,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,1.0 SERIES,RG,21,WHIBLK,900.0,STOLEN,16894,"{'type': 'Point', 'coordinates': (-79.42475081, 43.65976849)}"
-16929,12359,GO-20169010538,THEFT UNDER,2016-09-12T00:00:00,2016,September,Monday,12,256,9,2016-09-16T00:00:00,2016,September,Friday,16,260,12,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,BEINN,TO,7,PNK,650.0,STOLEN,16895,"{'type': 'Point', 'coordinates': (-79.42391973, 43.65412228000001)}"
-16930,12386,GO-20169010634,THEFT UNDER,2016-09-04T00:00:00,2016,September,Sunday,4,248,12,2016-09-18T00:00:00,2016,September,Sunday,18,262,12,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KO,PADDY WAGON,TO,1,BLK,700.0,STOLEN,16896,"{'type': 'Point', 'coordinates': (-79.42852157, 43.65896544000001)}"
-16931,12401,GO-20169010742,THEFT UNDER - BICYCLE,2016-07-15T00:00:00,2016,July,Friday,15,197,17,2016-09-19T00:00:00,2016,September,Monday,19,263,19,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,PE,10 SPEED,RC,10,BLK,0.0,STOLEN,16897,"{'type': 'Point', 'coordinates': (-79.41361049000001, 43.66461685)}"
-16932,12786,GO-20169013573,THEFT UNDER - BICYCLE,2016-11-16T00:00:00,2016,November,Wednesday,16,321,3,2016-11-18T00:00:00,2016,November,Friday,18,323,12,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,OT,WYTHE,RG,1,BLK,600.0,STOLEN,16898,"{'type': 'Point', 'coordinates': (-79.41392904, 43.65882137)}"
-16933,14272,GO-20209015661,THEFT UNDER,2020-06-17T00:00:00,2020,June,Wednesday,17,169,23,2020-06-18T00:00:00,2020,June,Thursday,18,170,16,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,BI,PISTA,RG,1,SIL,1132.0,STOLEN,16899,"{'type': 'Point', 'coordinates': (-79.41269952000002, 43.65906954)}"
-16934,14290,GO-20209018891,THEFT UNDER,2020-07-27T00:00:00,2020,July,Monday,27,209,16,2020-07-29T00:00:00,2020,July,Wednesday,29,211,15,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,DUTCHI 3I,RG,3,LGR,900.0,STOLEN,16900,"{'type': 'Point', 'coordinates': (-79.41025366, 43.65955808)}"
-16935,14298,GO-20201554180,THEFT UNDER - BICYCLE,2020-08-13T00:00:00,2020,August,Thursday,13,226,22,2020-08-20T00:00:00,2020,August,Thursday,20,233,10,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KHS,ROUTE 200,OT,24,GRY,1100.0,STOLEN,16901,"{'type': 'Point', 'coordinates': (-79.41894614, 43.65800323)}"
-16936,14300,GO-20209021202,THEFT UNDER,2020-08-24T00:00:00,2020,August,Monday,24,237,14,2020-08-24T00:00:00,2020,August,Monday,24,237,21,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,21,BLK,760.0,STOLEN,16902,"{'type': 'Point', 'coordinates': (-79.42852157, 43.65896544000001)}"
-16937,14305,GO-20201637631,THEFT UNDER,2020-08-30T00:00:00,2020,August,Sunday,30,243,1,2020-08-30T00:00:00,2020,August,Sunday,30,243,15,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,INFINITY,CHAMONIX,RG,18,GRY,1000.0,STOLEN,16903,"{'type': 'Point', 'coordinates': (-79.41524431, 43.65881487)}"
-16938,14332,GO-20209027080,THEFT UNDER,2020-10-08T00:00:00,2020,October,Thursday,8,282,21,2020-10-20T00:00:00,2020,October,Tuesday,20,294,15,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,STORM 3??,RG,18,BLK,700.0,STOLEN,16904,"{'type': 'Point', 'coordinates': (-79.4143444, 43.6630942)}"
-16939,11615,GO-20161085118,THEFT UNDER,2016-06-18T00:00:00,2016,June,Saturday,18,170,12,2016-06-21T00:00:00,2016,June,Tuesday,21,173,17,D14,Toronto,81,Trinity-Bellwoods (81),Bar / Restaurant,Commercial,GIANT,SEEK2,MT,21,LBL,450.0,STOLEN,16954,"{'type': 'Point', 'coordinates': (-79.40854285, 43.64628799)}"
-16940,14457,GO-20189029123,THEFT UNDER - BICYCLE,2018-09-03T00:00:00,2018,September,Monday,3,246,23,2018-09-04T00:00:00,2018,September,Tuesday,4,247,22,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,24,BLK,540.0,STOLEN,16905,"{'type': 'Point', 'coordinates': (-79.41669285, 43.65511528)}"
-16941,14502,GO-20199010373,THEFT UNDER - BICYCLE,2019-04-02T00:00:00,2019,April,Tuesday,2,92,11,2019-04-02T00:00:00,2019,April,Tuesday,2,92,11,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,RG,1,BRN,1000.0,STOLEN,16906,"{'type': 'Point', 'coordinates': (-79.42184411, 43.65903647)}"
-16942,14510,GO-2019730713,THEFT UNDER,2019-04-14T00:00:00,2019,April,Sunday,14,104,14,2019-04-23T00:00:00,2019,April,Tuesday,23,113,18,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,FX3,RG,7,BLK,920.0,STOLEN,16907,"{'type': 'Point', 'coordinates': (-79.41269952000002, 43.65906954)}"
-16943,14565,GO-20199027408,THEFT UNDER - BICYCLE,2019-08-22T00:00:00,2019,August,Thursday,22,234,23,2019-08-23T00:00:00,2019,August,Friday,23,235,14,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,OT,VERSA SPEED 50,OT,21,,549.0,STOLEN,16908,"{'type': 'Point', 'coordinates': (-79.41257586, 43.6554626)}"
-16944,14583,GO-20199030996,THEFT UNDER,2019-09-21T00:00:00,2019,September,Saturday,21,264,14,2019-09-21T00:00:00,2019,September,Saturday,21,264,16,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,X-ROAD A60,RC,20,SIL,1400.0,STOLEN,16909,"{'type': 'Point', 'coordinates': (-79.41717845, 43.66383426)}"
-16945,14592,GO-20192031947,THEFT FROM MOTOR VEHICLE UNDER,2019-10-20T00:00:00,2019,October,Sunday,20,293,23,2019-10-21T00:00:00,2019,October,Monday,21,294,12,D14,Toronto,80,Palmerston-Little Italy (80),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,MT,15,TRQ,700.0,STOLEN,16910,"{'type': 'Point', 'coordinates': (-79.41953602, 43.65952318)}"
-16946,14636,GO-20209013346,THEFT UNDER,2020-05-17T00:00:00,2020,May,Sunday,17,138,12,2020-05-18T00:00:00,2020,May,Monday,18,139,1,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,16 DOLCE SPORT,RG,18,PLE,971.0,STOLEN,16911,"{'type': 'Point', 'coordinates': (-79.41383777, 43.65521319)}"
-16947,14695,GO-20179012883,THEFT UNDER,2017-08-18T00:00:00,2017,August,Friday,18,230,13,2017-08-21T00:00:00,2017,August,Monday,21,233,1,D14,Toronto,80,Palmerston-Little Italy (80),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RG,1,GRN,500.0,STOLEN,16912,"{'type': 'Point', 'coordinates': (-79.42617452000002, 43.65644357)}"
-16948,14804,GO-20189019194,THEFT UNDER - BICYCLE,2018-06-18T00:00:00,2018,June,Monday,18,169,16,2018-06-18T00:00:00,2018,June,Monday,18,169,17,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,TRAVELER 700,RG,21,LBL,100.0,STOLEN,16913,"{'type': 'Point', 'coordinates': (-79.41136773000001, 43.65571437)}"
-16949,14808,GO-20189019815,THEFT UNDER - BICYCLE,2018-06-21T00:00:00,2018,June,Thursday,21,172,19,2018-06-22T00:00:00,2018,June,Friday,22,173,14,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,3,YEL,350.0,STOLEN,16914,"{'type': 'Point', 'coordinates': (-79.41717845, 43.66383426)}"
-16950,14813,GO-20181196246,B&E,2018-06-16T00:00:00,2018,June,Saturday,16,167,23,2018-07-02T00:00:00,2018,July,Monday,2,183,11,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KONA,JAKE,RG,18,BLK,2500.0,STOLEN,16915,"{'type': 'Point', 'coordinates': (-79.40973033, 43.66151426)}"
-16951,14833,GO-20189025454,THEFT UNDER - BICYCLE,2018-08-03T00:00:00,2018,August,Friday,3,215,1,2018-08-07T00:00:00,2018,August,Tuesday,7,219,18,D14,Toronto,80,Palmerston-Little Italy (80),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SIRRUS SPORT,OT,9,BLK,400.0,STOLEN,16916,"{'type': 'Point', 'coordinates': (-79.41093754, 43.66126456)}"
-16952,14843,GO-20189026937,THEFT UNDER - BICYCLE,2018-08-17T00:00:00,2018,August,Friday,17,229,12,2018-08-18T00:00:00,2018,August,Saturday,18,230,18,D14,Toronto,80,Palmerston-Little Italy (80),"Apartment (Rooming House, Condo)",Apartment,UK,DUSENJAGER,RG,1,,0.0,STOLEN,16917,"{'type': 'Point', 'coordinates': (-79.42144875, 43.65465622)}"
-16953,14847,GO-20189027465,THEFT UNDER - BICYCLE,2018-08-22T00:00:00,2018,August,Wednesday,22,234,13,2018-08-22T00:00:00,2018,August,Wednesday,22,234,15,D14,Toronto,80,Palmerston-Little Italy (80),Bar / Restaurant,Commercial,BI,VIA NIRONE,RC,9,RED,1500.0,STOLEN,16918,"{'type': 'Point', 'coordinates': (-79.42460593, 43.66219851)}"
-16954,14848,GO-20189027465,THEFT UNDER - BICYCLE,2018-08-22T00:00:00,2018,August,Wednesday,22,234,13,2018-08-22T00:00:00,2018,August,Wednesday,22,234,15,D14,Toronto,80,Palmerston-Little Italy (80),Bar / Restaurant,Commercial,OT,X-TRAIL A60,RC,10,BLU,1390.0,STOLEN,16919,"{'type': 'Point', 'coordinates': (-79.42460593, 43.66219851)}"
-16955,15306,GO-20141263784,PROPERTY - FOUND,2014-01-01T00:00:00,2014,January,Wednesday,1,1,18,2014-01-01T00:00:00,2014,January,Wednesday,1,1,18,D14,Toronto,80,Palmerston-Little Italy (80),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,SOHO S,RG,1,BLK,,RECOVERED,16920,"{'type': 'Point', 'coordinates': (-79.41462705, 43.6605259)}"
-16956,15312,GO-20149003097,THEFT UNDER,2014-05-01T00:00:00,2014,May,Thursday,1,121,9,2014-05-01T00:00:00,2014,May,Thursday,1,121,17,D14,Toronto,80,Palmerston-Little Italy (80),Schools During Un-Supervised Activity,Educational,GI,ATX LE,MT,24,BLK,800.0,STOLEN,16921,"{'type': 'Point', 'coordinates': (-79.41385535, 43.66193043)}"
-16957,9561,GO-20159002603,THEFT UNDER,2015-05-10T00:00:00,2015,May,Sunday,10,130,15,2015-05-10T00:00:00,2015,May,Sunday,10,130,21,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,COACH,TO,21,WHI,500.0,STOLEN,16922,"{'type': 'Point', 'coordinates': (-79.41257586, 43.6554626)}"
-16958,9678,GO-20159003166,THEFT UNDER,2015-05-29T00:00:00,2015,May,Friday,29,149,1,2015-05-29T00:00:00,2015,May,Friday,29,149,1,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,BLK,375.0,STOLEN,16923,"{'type': 'Point', 'coordinates': (-79.40844929, 43.6517934)}"
-16959,9859,GO-20159003879,THEFT UNDER,2015-06-20T00:00:00,2015,June,Saturday,20,171,0,2015-06-23T00:00:00,2015,June,Tuesday,23,174,12,D14,Toronto,81,Trinity-Bellwoods (81),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,07 7200 WSD,RG,7,LBL,600.0,STOLEN,16924,"{'type': 'Point', 'coordinates': (-79.41134558, 43.64735559)}"
-16960,9864,GO-20159003897,THEFT UNDER,2015-06-22T00:00:00,2015,June,Monday,22,173,7,2015-06-24T00:00:00,2015,June,Wednesday,24,175,0,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CROSSTRAIL,RG,24,BLK,700.0,STOLEN,16925,"{'type': 'Point', 'coordinates': (-79.42636436, 43.65360014)}"
-16961,9878,GO-20151072416,THEFT UNDER,2015-06-25T00:00:00,2015,June,Thursday,25,176,19,2015-06-25T00:00:00,2015,June,Thursday,25,176,19,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,,RC,10,TRQ,2000.0,STOLEN,16926,"{'type': 'Point', 'coordinates': (-79.41363235, 43.65470528)}"
-16962,9992,GO-20159004461,THEFT UNDER,2015-07-11T00:00:00,2015,July,Saturday,11,192,0,2015-07-12T00:00:00,2015,July,Sunday,12,193,17,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,FELT,15V110F,RG,24,WHI,700.0,STOLEN,16927,"{'type': 'Point', 'coordinates': (-79.40968237000001, 43.65155403)}"
-16963,10137,GO-20151306559,THEFT UNDER,2015-07-29T00:00:00,2015,July,Wednesday,29,210,23,2015-07-30T00:00:00,2015,July,Thursday,30,211,3,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BIANCHI,,RC,12,RED,500.0,STOLEN,16930,"{'type': 'Point', 'coordinates': (-79.42471154, 43.64943732)}"
-16964,10163,GO-20151302484,THEFT UNDER,2015-07-30T00:00:00,2015,July,Thursday,30,211,0,2015-07-30T00:00:00,2015,July,Thursday,30,211,11,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,GENESIS MORACCI,SANLUCA,RG,1,YEL,1500.0,STOLEN,16931,"{'type': 'Point', 'coordinates': (-79.41949908, 43.64957268)}"
-16965,10236,GO-20151391265,THEFT UNDER,2015-08-13T00:00:00,2015,August,Thursday,13,225,18,2015-08-13T00:00:00,2015,August,Thursday,13,225,18,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,HUFFY,GRANITE,MT,18,BLU,500.0,RECOVERED,16932,"{'type': 'Point', 'coordinates': (-79.41383777, 43.65521319)}"
-16966,10249,GO-20151401260,THEFT UNDER,2015-08-15T00:00:00,2015,August,Saturday,15,227,9,2015-08-15T00:00:00,2015,August,Saturday,15,227,10,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BLUE GIANT,,MT,21,,700.0,STOLEN,16933,"{'type': 'Point', 'coordinates': (-79.4206804, 43.64584287)}"
-16967,10277,GO-20159005883,THEFT UNDER,2015-08-16T00:00:00,2015,August,Sunday,16,228,3,2015-08-17T00:00:00,2015,August,Monday,17,229,0,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,6,TRQ,150.0,STOLEN,16934,"{'type': 'Point', 'coordinates': (-79.41191235, 43.65380423)}"
-16968,10325,GO-20159006180,THEFT UNDER,2015-08-20T00:00:00,2015,August,Thursday,20,232,0,2015-08-26T00:00:00,2015,August,Wednesday,26,238,14,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,OT,OLDIE,RC,1,GRY,400.0,STOLEN,16935,"{'type': 'Point', 'coordinates': (-79.42266495, 43.65440014)}"
-16969,10326,GO-20159006180,THEFT UNDER,2015-08-20T00:00:00,2015,August,Thursday,20,232,0,2015-08-26T00:00:00,2015,August,Wednesday,26,238,14,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,NO,INDIE 4,MT,24,BLK,600.0,STOLEN,16936,"{'type': 'Point', 'coordinates': (-79.42266495, 43.65440014)}"
-16970,10581,GO-20159008041,THEFT UNDER,2015-10-02T00:00:00,2015,October,Friday,2,275,0,2015-10-02T00:00:00,2015,October,Friday,2,275,13,D14,Toronto,81,Trinity-Bellwoods (81),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,FO,1,LGR,250.0,STOLEN,16937,"{'type': 'Point', 'coordinates': (-79.40828337, 43.64808588)}"
-16971,10614,GO-20151744326,THEFT UNDER,2015-10-03T00:00:00,2015,October,Saturday,3,276,13,2015-10-09T00:00:00,2015,October,Friday,9,282,16,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KONA,13 JAKE,OT,15,GRY,1745.0,STOLEN,16938,"{'type': 'Point', 'coordinates': (-79.40723527, 43.65205839)}"
-16972,10629,GO-20151776888,THEFT UNDER,2015-10-14T00:00:00,2015,October,Wednesday,14,287,20,2015-10-15T00:00:00,2015,October,Thursday,15,288,13,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,UNO,RC,1,BGE,600.0,STOLEN,16939,"{'type': 'Point', 'coordinates': (-79.41948662, 43.64608916)}"
-16973,10920,GO-20169000324,FTC PROBATION ORDER,2016-01-10T00:00:00,2016,January,Sunday,10,10,7,2016-01-10T00:00:00,2016,January,Sunday,10,10,16,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,RM,HYBRID,OT,18,RED,0.0,STOLEN,16940,"{'type': 'Point', 'coordinates': (-79.41012202000002, 43.65597091)}"
-16974,10923,GO-20169000415,THEFT UNDER,2016-01-12T00:00:00,2016,January,Tuesday,12,12,12,2016-01-12T00:00:00,2016,January,Tuesday,12,12,15,D14,Toronto,81,Trinity-Bellwoods (81),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,CROSSTRAIL 2014,MT,21,GRY,500.0,STOLEN,16941,"{'type': 'Point', 'coordinates': (-79.41012202000002, 43.65597091)}"
-16975,10928,GO-20169000563,THEFT UNDER,2016-01-12T00:00:00,2016,January,Tuesday,12,12,3,2016-01-16T00:00:00,2016,January,Saturday,16,16,14,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,OT,,TO,1,SIL,600.0,STOLEN,16942,"{'type': 'Point', 'coordinates': (-79.41012202000002, 43.65597091)}"
-16976,10969,GO-2016209692,THEFT UNDER,2016-02-02T00:00:00,2016,February,Tuesday,2,33,8,2016-02-04T00:00:00,2016,February,Thursday,4,35,16,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KOTTER,,OT,1,WHI,200.0,STOLEN,16943,"{'type': 'Point', 'coordinates': (-79.42134356, 43.65095771)}"
-16977,10989,GO-20169001371,B&E,2016-01-02T00:00:00,2016,January,Saturday,2,2,13,2016-02-12T00:00:00,2016,February,Friday,12,43,14,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,NO,FBR 54 CM SILV,RC,10,SIL,600.0,STOLEN,16944,"{'type': 'Point', 'coordinates': (-79.40892011, 43.65622962)}"
-16978,10992,GO-2016278419,THEFT UNDER,2016-02-13T00:00:00,2016,February,Saturday,13,44,16,2016-02-16T00:00:00,2016,February,Tuesday,16,47,10,D14,Toronto,81,Trinity-Bellwoods (81),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,BRODIE,ROMULUS,RC,23,BRN,750.0,STOLEN,16945,"{'type': 'Point', 'coordinates': (-79.41012202000002, 43.65597091)}"
-16979,11090,GO-2016557527,B&E,2016-01-20T00:00:00,2016,January,Wednesday,20,20,12,2016-04-02T00:00:00,2016,April,Saturday,2,93,9,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,CERVELO,S5 ULTEGRA,OT,20,BLK,,STOLEN,16946,"{'type': 'Point', 'coordinates': (-79.40892011, 43.65622962)}"
-16980,11204,GO-2016713092,THEFT UNDER - BICYCLE,2016-04-26T00:00:00,2016,April,Tuesday,26,117,17,2016-04-26T00:00:00,2016,April,Tuesday,26,117,17,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,MENS,OT,10,WHI,2000.0,STOLEN,16947,"{'type': 'Point', 'coordinates': (-79.41996894, 43.64398022)}"
-16981,11259,GO-20169004160,THEFT UNDER,2016-04-21T00:00:00,2016,April,Thursday,21,112,22,2016-05-04T00:00:00,2016,May,Wednesday,4,125,22,D14,Toronto,81,Trinity-Bellwoods (81),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,TRICROSS 2008,RG,1,DGR,900.0,STOLEN,16948,"{'type': 'Point', 'coordinates': (-79.42407483, 43.64782021)}"
-16982,11439,GO-2016678594,THEFT UNDER - BICYCLE,2016-04-21T00:00:00,2016,April,Thursday,21,112,1,2016-04-21T00:00:00,2016,April,Thursday,21,112,8,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MASI,,RC,1,BLU,700.0,RECOVERED,16949,"{'type': 'Point', 'coordinates': (-79.41728265, 43.64743681)}"
-16983,11498,GO-20169005599,THEFT UNDER,2016-06-10T00:00:00,2016,June,Friday,10,162,10,2016-06-11T00:00:00,2016,June,Saturday,11,163,1,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,RA,P117-5,MT,21,,575.0,STOLEN,16950,"{'type': 'Point', 'coordinates': (-79.41012202000002, 43.65597091)}"
-16984,11538,GO-20161038444,THEFT UNDER - BICYCLE,2016-06-14T00:00:00,2016,June,Tuesday,14,166,21,2016-06-14T00:00:00,2016,June,Tuesday,14,166,21,D14,Toronto,81,Trinity-Bellwoods (81),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TREK,MULTITREK,RG,1,RED,300.0,STOLEN,16951,"{'type': 'Point', 'coordinates': (-79.40547129, 43.64769552)}"
-16985,11550,GO-20169005873,THEFT UNDER - BICYCLE,2016-05-27T00:00:00,2016,May,Friday,27,148,8,2016-06-16T00:00:00,2016,June,Thursday,16,168,8,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FJ,TRACK,OT,1,GRY,735.0,STOLEN,16952,"{'type': 'Point', 'coordinates': (-79.41762122, 43.65457659)}"
-16986,11592,GO-20169006098,THEFT UNDER,2016-06-20T00:00:00,2016,June,Monday,20,172,11,2016-06-21T00:00:00,2016,June,Tuesday,21,173,10,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RC,1,WHI,200.0,STOLEN,16953,"{'type': 'Point', 'coordinates': (-79.41156475, 43.65117687)}"
-16987,11699,GO-20161173138,B&E,2016-07-04T00:00:00,2016,July,Monday,4,186,5,2016-07-05T00:00:00,2016,July,Tuesday,5,187,8,D14,Toronto,81,Trinity-Bellwoods (81),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KONA,PROCESS,MT,12,BLK,5000.0,STOLEN,16956,"{'type': 'Point', 'coordinates': (-79.40705633, 43.64835501)}"
-16988,11700,GO-20161173138,B&E,2016-07-04T00:00:00,2016,July,Monday,4,186,5,2016-07-05T00:00:00,2016,July,Tuesday,5,187,8,D14,Toronto,81,Trinity-Bellwoods (81),"Private Property Structure (Pool, Shed, Detached Garage)",Other,DIAMONDBACK,ASSAULT,MT,12,BLKBLU,1500.0,STOLEN,16957,"{'type': 'Point', 'coordinates': (-79.40705633, 43.64835501)}"
-16989,11725,GO-20161187282,INCIDENT,2016-07-07T00:00:00,2016,July,Thursday,7,189,10,2016-07-07T00:00:00,2016,July,Thursday,7,189,10,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,DEVINCI,,MT,1,ONG,,STOLEN,16958,"{'type': 'Point', 'coordinates': (-79.40892011, 43.65622962)}"
-16990,11755,GO-20161187214,THEFT UNDER - BICYCLE,2016-07-07T00:00:00,2016,July,Thursday,7,189,0,2016-07-07T00:00:00,2016,July,Thursday,7,189,9,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,OT,0,,700.0,STOLEN,16959,"{'type': 'Point', 'coordinates': (-79.41732195, 43.65381073)}"
-16991,11850,GO-20161249504,THEFT UNDER - BICYCLE,2016-07-06T00:00:00,2016,July,Wednesday,6,188,12,2016-07-16T00:00:00,2016,July,Saturday,16,198,17,D14,Toronto,81,Trinity-Bellwoods (81),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,OT,1,ONG,,STOLEN,16960,"{'type': 'Point', 'coordinates': (-79.40892011, 43.65622962)}"
-16992,12023,GO-20161373808,THEFT UNDER - BICYCLE,2016-08-03T00:00:00,2016,August,Wednesday,3,216,21,2016-08-07T00:00:00,2016,August,Sunday,7,220,22,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,DEVINCI,HYBRID,OT,8,BLK,1000.0,STOLEN,16961,"{'type': 'Point', 'coordinates': (-79.41156475, 43.65117687)}"
-16993,12024,GO-20161373808,THEFT UNDER - BICYCLE,2016-08-03T00:00:00,2016,August,Wednesday,3,216,21,2016-08-07T00:00:00,2016,August,Sunday,7,220,22,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,ELECTRA,DAISY,OT,3,ONG,100.0,STOLEN,16962,"{'type': 'Point', 'coordinates': (-79.41156475, 43.65117687)}"
-16994,12028,GO-20169008404,THEFT UNDER - BICYCLE,2016-07-19T00:00:00,2016,July,Tuesday,19,201,15,2016-08-08T00:00:00,2016,August,Monday,8,221,21,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,,RC,1,BLK,600.0,STOLEN,16963,"{'type': 'Point', 'coordinates': (-79.42013894, 43.64783378)}"
-16995,12103,GO-20169008806,THEFT UNDER - BICYCLE,2016-08-14T00:00:00,2016,August,Sunday,14,227,12,2016-08-15T00:00:00,2016,August,Monday,15,228,17,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,,,MT,21,RED,300.0,STOLEN,16964,"{'type': 'Point', 'coordinates': (-79.41363235, 43.65470528)}"
-16996,12207,GO-20169009531,THEFT UNDER,2016-08-26T00:00:00,2016,August,Friday,26,239,7,2016-08-26T00:00:00,2016,August,Friday,26,239,15,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,ONE S2,EL,1,WHI,1065.0,STOLEN,16965,"{'type': 'Point', 'coordinates': (-79.41732195, 43.65381073)}"
-16997,12226,GO-20169009630,THEFT UNDER - BICYCLE,2016-08-29T00:00:00,2016,August,Monday,29,242,10,2016-08-29T00:00:00,2016,August,Monday,29,242,22,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,LIV ALIGHT 3,RG,15,PLE,499.0,STOLEN,16966,"{'type': 'Point', 'coordinates': (-79.40892011, 43.65622962)}"
-16998,12319,GO-20169010288,THEFT UNDER - BICYCLE,2016-09-11T00:00:00,2016,September,Sunday,11,255,19,2016-09-11T00:00:00,2016,September,Sunday,11,255,21,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,HARPER,RG,1,BLK,300.0,STOLEN,16967,"{'type': 'Point', 'coordinates': (-79.40653598, 43.64668181)}"
-16999,12379,GO-20161659918,B&E,2016-09-17T00:00:00,2016,September,Saturday,17,261,23,2016-09-18T00:00:00,2016,September,Sunday,18,262,9,D14,Toronto,81,Trinity-Bellwoods (81),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,MT,8,BLU,1000.0,STOLEN,16968,"{'type': 'Point', 'coordinates': (-79.41782286, 43.64883079)}"
-17000,12536,GO-20169011465,THEFT UNDER - BICYCLE,2016-10-02T00:00:00,2016,October,Sunday,2,276,0,2016-10-03T00:00:00,2016,October,Monday,3,277,9,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,OT,GHOST KATO 3,MT,27,RED,800.0,STOLEN,16969,"{'type': 'Point', 'coordinates': (-79.41191235, 43.65380423)}"
-17001,12645,GO-20169012318,THEFT UNDER - BICYCLE,2016-10-19T00:00:00,2016,October,Wednesday,19,293,16,2016-10-19T00:00:00,2016,October,Wednesday,19,293,19,D14,Toronto,81,Trinity-Bellwoods (81),Convenience Stores,Commercial,NO,INDIE,RG,18,BLK,550.0,STOLEN,16970,"{'type': 'Point', 'coordinates': (-79.41075021, 43.64584583)}"
-17002,12667,GO-20169012459,THEFT UNDER,2016-07-08T00:00:00,2016,July,Friday,8,190,15,2016-10-22T00:00:00,2016,October,Saturday,22,296,12,D14,Toronto,81,Trinity-Bellwoods (81),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,TURBO S,EL,10,GRY,4500.0,STOLEN,16971,"{'type': 'Point', 'coordinates': (-79.41136773000001, 43.65571437)}"
-17003,12732,GO-20161981569,THEFT UNDER - BICYCLE,2016-08-03T00:00:00,2016,August,Wednesday,3,216,20,2016-11-07T00:00:00,2016,November,Monday,7,312,15,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,UNKNOWN,MT,12,BLK,300.0,STOLEN,16972,"{'type': 'Point', 'coordinates': (-79.41728265, 43.64743681)}"
-17004,12772,GO-20169013509,THEFT UNDER - BICYCLE,2016-11-16T00:00:00,2016,November,Wednesday,16,321,14,2016-11-16T00:00:00,2016,November,Wednesday,16,321,16,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,VFR 4,RG,27,BLK,1500.0,STOLEN,16973,"{'type': 'Point', 'coordinates': (-79.40892011, 43.65622962)}"
-17005,14278,GO-20201233461,THEFT UNDER - BICYCLE,2020-06-29T00:00:00,2020,June,Monday,29,181,20,2020-07-06T00:00:00,2020,July,Monday,6,188,10,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GENESIS,FIXIE,RG,1,BLK,500.0,STOLEN,16974,"{'type': 'Point', 'coordinates': (-79.40844929, 43.6517934)}"
-17006,14283,GO-20209017611,THEFT UNDER,2020-07-15T00:00:00,2020,July,Wednesday,15,197,1,2020-07-15T00:00:00,2020,July,Wednesday,15,197,12,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ST1,EL,9,GRN,2500.0,STOLEN,16975,"{'type': 'Point', 'coordinates': (-79.40723527, 43.65205839)}"
-17007,14325,GO-20209026183,THEFT UNDER,2020-10-12T00:00:00,2020,October,Monday,12,286,0,2020-10-12T00:00:00,2020,October,Monday,12,286,14,D14,Toronto,81,Trinity-Bellwoods (81),"Private Property Structure (Pool, Shed, Detached Garage)",Other,BI,MOUNTAIN CROSSO,MT,10,BLK,500.0,STOLEN,16976,"{'type': 'Point', 'coordinates': (-79.42243149, 43.64735043)}"
-17008,14337,GO-20209029209,THEFT UNDER,2020-11-10T00:00:00,2020,November,Tuesday,10,315,10,2020-11-10T00:00:00,2020,November,Tuesday,10,315,21,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,SUPERCYCLE,MT,18,DBL,0.0,STOLEN,16977,"{'type': 'Point', 'coordinates': (-79.40968237000001, 43.65155403)}"
-17009,14338,GO-20209029327,THEFT UNDER,2020-10-24T00:00:00,2020,October,Saturday,24,298,0,2020-11-11T00:00:00,2020,November,Wednesday,11,316,20,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,DASH,RG,8,YEL,1800.0,STOLEN,16978,"{'type': 'Point', 'coordinates': (-79.42282867000002, 43.64841385)}"
-17010,21414,GO-20161492042,THEFT UNDER - BICYCLE,2016-08-23T00:00:00,2016,August,Tuesday,23,236,6,2016-08-23T00:00:00,2016,August,Tuesday,23,236,10,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,,MT,21,RED,1500.0,STOLEN,17003,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-17011,14479,GO-20189039913,THEFT UNDER - BICYCLE,2018-11-23T00:00:00,2018,November,Friday,23,327,20,2018-11-27T00:00:00,2018,November,Tuesday,27,331,9,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,DETOUR 3.5,MT,7,RED,0.0,STOLEN,16979,"{'type': 'Point', 'coordinates': (-79.41744186, 43.64447905)}"
-17012,14499,GO-2019514732,B&E,2019-03-21T00:00:00,2019,March,Thursday,21,80,4,2019-03-21T00:00:00,2019,March,Thursday,21,80,19,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,CROSSTRAIL,OT,1,BLK,2264.0,STOLEN,16980,"{'type': 'Point', 'coordinates': (-79.41012202000002, 43.65597091)}"
-17013,14500,GO-2019514732,B&E,2019-03-21T00:00:00,2019,March,Thursday,21,80,4,2019-03-21T00:00:00,2019,March,Thursday,21,80,19,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,ROCKHOPPER 29,OT,1,BLKWHI,840.0,STOLEN,16981,"{'type': 'Point', 'coordinates': (-79.41012202000002, 43.65597091)}"
-17014,14521,GO-20199018802,THEFT UNDER - BICYCLE,2019-06-13T00:00:00,2019,June,Thursday,13,164,7,2019-06-16T00:00:00,2019,June,Sunday,16,167,8,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,7D02142-1AL-S,RG,7,WHI,400.0,STOLEN,16982,"{'type': 'Point', 'coordinates': (-79.40914548, 43.64788984)}"
-17015,14533,GO-20199020863,THEFT UNDER - BICYCLE,2019-06-22T00:00:00,2019,June,Saturday,22,173,10,2019-07-03T00:00:00,2019,July,Wednesday,3,184,14,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,TR,13 CROSSRIP 54,OT,18,BLK,1081.0,STOLEN,16983,"{'type': 'Point', 'coordinates': (-79.41142197, 43.65082905)}"
-17016,14544,GO-20199022353,THEFT UNDER - BICYCLE,2019-07-12T00:00:00,2019,July,Friday,12,193,23,2019-07-15T00:00:00,2019,July,Monday,15,196,15,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE 2 CITY,RG,21,DGR,1000.0,STOLEN,16984,"{'type': 'Point', 'coordinates': (-79.406958, 43.65137878)}"
-17017,14561,GO-20191561966,THEFT UNDER,2019-08-11T00:00:00,2019,August,Sunday,11,223,0,2019-08-17T00:00:00,2019,August,Saturday,17,229,3,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,RG,18,BLK,,STOLEN,16985,"{'type': 'Point', 'coordinates': (-79.42231358, 43.65350355)}"
-17018,14580,GO-20199029913,THEFT UNDER - BICYCLE,2019-08-23T00:00:00,2019,August,Friday,23,235,1,2019-09-13T00:00:00,2019,September,Friday,13,256,17,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,TREK,MT,21,GLD,500.0,STOLEN,16986,"{'type': 'Point', 'coordinates': (-79.41142197, 43.65082905)}"
-17019,14582,GO-20191808358,THEFT UNDER,2019-09-20T00:00:00,2019,September,Friday,20,263,0,2019-09-20T00:00:00,2019,September,Friday,20,263,7,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,STROMER,ST1,EL,1,LGR,1500.0,STOLEN,16987,"{'type': 'Point', 'coordinates': (-79.40723527, 43.65205839)}"
-17020,14587,GO-20199033311,THEFT UNDER - BICYCLE,2019-10-08T00:00:00,2019,October,Tuesday,8,281,23,2019-10-09T00:00:00,2019,October,Wednesday,9,282,20,D14,Toronto,81,Trinity-Bellwoods (81),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,TO,24,GRY,200.0,STOLEN,16988,"{'type': 'Point', 'coordinates': (-79.41216034, 43.65444514)}"
-17021,14603,GO-20199039324,THEFT UNDER,2019-11-29T00:00:00,2019,November,Friday,29,333,0,2019-11-29T00:00:00,2019,November,Friday,29,333,19,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,KH,GRIT 110,RC,10,BLK,1100.0,STOLEN,16989,"{'type': 'Point', 'coordinates': (-79.406958, 43.65137878)}"
-17022,14624,GO-20209010128,THEFT UNDER - BICYCLE,2020-03-29T00:00:00,2020,March,Sunday,29,89,8,2020-03-29T00:00:00,2020,March,Sunday,29,89,23,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,ROAM,MT,24,GRY,750.0,STOLEN,16990,"{'type': 'Point', 'coordinates': (-79.40582991, 43.64859048)}"
-17023,14694,GO-20179012873,THEFT UNDER,2017-08-20T00:00:00,2017,August,Sunday,20,232,1,2017-08-20T00:00:00,2017,August,Sunday,20,232,18,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,TR,ANTELOPE,MT,7,BLK,390.0,STOLEN,16991,"{'type': 'Point', 'coordinates': (-79.41703962, 43.65517087)}"
-17024,14704,GO-20179013790,THEFT UNDER - BICYCLE,2017-09-01T00:00:00,2017,September,Friday,1,244,2,2017-09-01T00:00:00,2017,September,Friday,1,244,17,D14,Toronto,81,Trinity-Bellwoods (81),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,MASH BOLT,RC,1,SIL,1100.0,STOLEN,16992,"{'type': 'Point', 'coordinates': (-79.41703962, 43.65517087)}"
-17025,14714,GO-20179014668,THEFT UNDER - BICYCLE,2017-09-12T00:00:00,2017,September,Tuesday,12,255,18,2017-09-13T00:00:00,2017,September,Wednesday,13,256,16,D14,Toronto,81,Trinity-Bellwoods (81),Bar / Restaurant,Commercial,GI,TALON,MT,14,BLK,1800.0,STOLEN,16993,"{'type': 'Point', 'coordinates': (-79.4059829, 43.65231108)}"
-17026,14722,GO-20179015531,THEFT UNDER - BICYCLE,2017-09-23T00:00:00,2017,September,Saturday,23,266,7,2017-09-24T00:00:00,2017,September,Sunday,24,267,1,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SVELTO RV,RG,18,BLK,1200.0,STOLEN,16994,"{'type': 'Point', 'coordinates': (-79.41728265, 43.64743681)}"
-17027,14723,GO-20179015531,THEFT UNDER - BICYCLE,2017-09-23T00:00:00,2017,September,Saturday,23,266,7,2017-09-24T00:00:00,2017,September,Sunday,24,267,1,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,,RC,18,WHI,2500.0,STOLEN,16995,"{'type': 'Point', 'coordinates': (-79.41728265, 43.64743681)}"
-17028,14728,GO-20171761979,THEFT UNDER - BICYCLE,2017-09-26T00:00:00,2017,September,Tuesday,26,269,15,2017-09-28T00:00:00,2017,September,Thursday,28,271,15,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,TO,5,MRNGLD,500.0,STOLEN,16996,"{'type': 'Point', 'coordinates': (-79.41363235, 43.65470528)}"
-17029,14733,GO-20179017159,THEFT UNDER,2017-10-13T00:00:00,2017,October,Friday,13,286,17,2017-10-13T00:00:00,2017,October,Friday,13,286,21,D14,Toronto,81,Trinity-Bellwoods (81),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,FJ,CLASSIC,RG,1,BLK,700.0,STOLEN,16997,"{'type': 'Point', 'coordinates': (-79.41709658, 43.64694238)}"
-17030,21396,GO-20169006868,THEFT UNDER,2016-07-02T00:00:00,2016,July,Saturday,2,184,23,2016-07-07T00:00:00,2016,July,Thursday,7,189,17,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,,TO,12,,0.0,STOLEN,16998,"{'type': 'Point', 'coordinates': (-79.40172265, 43.63837662)}"
-17031,21404,GO-20169008543,THEFT UNDER - BICYCLE,2016-08-04T00:00:00,2016,August,Thursday,4,217,3,2016-08-10T00:00:00,2016,August,Wednesday,10,223,17,D14,Toronto,82,Niagara (82),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,CHIC,RC,12,RED,4000.0,STOLEN,16999,"{'type': 'Point', 'coordinates': (-79.41523931, 43.64211694)}"
-17032,21405,GO-20169008720,THEFT UNDER,2016-08-08T00:00:00,2016,August,Monday,8,221,19,2016-08-14T00:00:00,2016,August,Sunday,14,227,11,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,QUICK CX 2012,OT,8,BLK,1000.0,STOLEN,17000,"{'type': 'Point', 'coordinates': (-79.39948839, 43.63339968)}"
-17033,21408,GO-20169008901,THEFT UNDER,2016-08-11T00:00:00,2016,August,Thursday,11,224,19,2016-08-16T00:00:00,2016,August,Tuesday,16,229,21,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GI,GIANT HYBRID CR,TO,24,BLK,2000.0,STOLEN,17001,"{'type': 'Point', 'coordinates': (-79.4023568, 43.64319258)}"
-17034,21410,GO-20161472956,B&E,2016-08-13T00:00:00,2016,August,Saturday,13,226,2,2016-08-20T00:00:00,2016,August,Saturday,20,233,7,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GI,TCR,RC,21,SIL,2000.0,STOLEN,17002,"{'type': 'Point', 'coordinates': (-79.40128939, 43.63517525)}"
-17035,14329,GO-20201953767,B&E,2020-10-14T00:00:00,2020,October,Wednesday,14,288,22,2020-10-15T00:00:00,2020,October,Thursday,15,289,12,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,OT,0,GRN,600.0,STOLEN,17004,"{'type': 'Point', 'coordinates': (-79.41138445, 43.63917336)}"
-17036,21431,GO-20169010912,THEFT UNDER,2016-09-21T00:00:00,2016,September,Wednesday,21,265,18,2016-09-22T00:00:00,2016,September,Thursday,22,266,17,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,THE ECHO,RG,1,BLK,550.0,STOLEN,17005,"{'type': 'Point', 'coordinates': (-79.41170542, 43.64145102)}"
-17037,21434,GO-20169011413,THEFT UNDER - BICYCLE,2016-10-01T00:00:00,2016,October,Saturday,1,275,12,2016-10-01T00:00:00,2016,October,Saturday,1,275,15,D14,Toronto,82,Niagara (82),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,LADIES XS/S STE,RG,3,WHI,525.0,STOLEN,17006,"{'type': 'Point', 'coordinates': (-79.40372116, 43.64647061)}"
-17038,21439,GO-20169012348,THEFT UNDER,2016-10-15T00:00:00,2016,October,Saturday,15,289,8,2016-10-20T00:00:00,2016,October,Thursday,20,294,14,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,SU,TEMPO,MT,21,SIL,0.0,STOLEN,17007,"{'type': 'Point', 'coordinates': (-79.40138212, 43.64074836)}"
-17039,21442,GO-20161893811,THEFT UNDER - BICYCLE,2016-10-22T00:00:00,2016,October,Saturday,22,296,23,2016-10-24T00:00:00,2016,October,Monday,24,298,20,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FELT,,RG,1,,350.0,STOLEN,17008,"{'type': 'Point', 'coordinates': (-79.39999105, 43.63737009)}"
-17040,21443,GO-20161955359,THEFT FROM MOTOR VEHICLE OVER,2016-11-02T00:00:00,2016,November,Wednesday,2,307,22,2016-11-03T00:00:00,2016,November,Thursday,3,308,12,D14,Toronto,82,Niagara (82),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OPUS,,TO,0,BLK,,STOLEN,17009,"{'type': 'Point', 'coordinates': (-79.41503588, 43.6449722)}"
-17041,21447,GO-20162030737,THEFT UNDER - BICYCLE,2016-11-14T00:00:00,2016,November,Monday,14,319,23,2016-11-15T00:00:00,2016,November,Tuesday,15,320,14,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,TREKKER,RG,18,PLE,,STOLEN,17010,"{'type': 'Point', 'coordinates': (-79.41315726, 43.64536504)}"
-17042,21470,GO-2017491031,B&E,2017-03-15T00:00:00,2017,March,Wednesday,15,74,18,2017-03-19T00:00:00,2017,March,Sunday,19,78,16,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,YETI,SB5,MT,12,BLK,6000.0,STOLEN,17011,"{'type': 'Point', 'coordinates': (-79.4149791, 43.64143597)}"
-17043,21475,GO-2017739641,THEFT UNDER - BICYCLE,2017-04-27T00:00:00,2017,April,Thursday,27,117,12,2017-04-27T00:00:00,2017,April,Thursday,27,117,14,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,FELT,F4X,RG,12,YEL,3400.0,STOLEN,17012,"{'type': 'Point', 'coordinates': (-79.40372116, 43.64647061)}"
-17044,21489,GO-20179007223,THEFT UNDER - BICYCLE,2017-04-03T00:00:00,2017,April,Monday,3,93,10,2017-05-30T00:00:00,2017,May,Tuesday,30,150,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,SINGLE SPEED BI,RG,1,ONG,500.0,STOLEN,17013,"{'type': 'Point', 'coordinates': (-79.40235491, 43.63675803)}"
-17045,21494,GO-20179007710,THEFT UNDER - BICYCLE,2017-06-05T00:00:00,2017,June,Monday,5,156,16,2017-06-08T00:00:00,2017,June,Thursday,8,159,14,D14,Toronto,82,Niagara (82),Bar / Restaurant,Commercial,CC,,MT,6,RED,400.0,STOLEN,17014,"{'type': 'Point', 'coordinates': (-79.40524581, 43.64340152)}"
-17046,21796,GO-20149003410,THEFT UNDER,2014-03-01T00:00:00,2014,March,Saturday,1,60,0,2014-05-17T00:00:00,2014,May,Saturday,17,137,18,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,GLOBE ROLL 1,RG,1,BLK,1200.0,STOLEN,17015,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-17047,21802,GO-20149004633,THEFT UNDER,2014-06-29T00:00:00,2014,June,Sunday,29,180,20,2014-07-02T00:00:00,2014,July,Wednesday,2,183,17,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,,TO,3,SIL,570.0,STOLEN,17016,"{'type': 'Point', 'coordinates': (-79.4082535, 43.64348309)}"
-17048,21805,GO-20149004883,THEFT UNDER,2011-06-04T00:00:00,2011,June,Saturday,4,155,21,2014-07-10T00:00:00,2014,July,Thursday,10,191,16,D14,Toronto,82,Niagara (82),Convenience Stores,Commercial,CA,,RG,9,BLK,500.0,STOLEN,17017,"{'type': 'Point', 'coordinates': (-79.40524581, 43.64340152)}"
-17049,21810,GO-20149005157,THEFT UNDER,2014-07-20T00:00:00,2014,July,Sunday,20,201,1,2014-07-20T00:00:00,2014,July,Sunday,20,201,15,D14,Toronto,82,Niagara (82),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,TCX22012,RC,18,BLK,800.0,STOLEN,17018,"{'type': 'Point', 'coordinates': (-79.40524581, 43.64340152)}"
-17050,21815,GO-20149005644,THEFT UNDER,2014-08-02T00:00:00,2014,August,Saturday,2,214,14,2014-08-05T00:00:00,2014,August,Tuesday,5,217,14,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GI,CYPRESS,RG,21,GRY,600.0,STOLEN,17019,"{'type': 'Point', 'coordinates': (-79.41045766, 43.64169495)}"
-17051,21818,GO-20149005786,THEFT UNDER,2014-08-09T00:00:00,2014,August,Saturday,9,221,20,2014-08-10T00:00:00,2014,August,Sunday,10,222,16,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OTHER,CROSS 1300,MT,24,BLK,700.0,STOLEN,17020,"{'type': 'Point', 'coordinates': (-79.4146674, 43.64064217)}"
-17052,21819,GO-20142725547,THEFT UNDER,2014-08-08T00:00:00,2014,August,Friday,8,220,18,2014-08-18T00:00:00,2014,August,Monday,18,230,10,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,JAMIS,TRIAL X3,MT,21,WHI,600.0,STOLEN,17021,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17053,21820,GO-20149006009,THEFT UNDER,2014-08-15T00:00:00,2014,August,Friday,15,227,0,2014-08-16T00:00:00,2014,August,Saturday,16,228,11,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,TR,,RG,15,,300.0,STOLEN,17022,"{'type': 'Point', 'coordinates': (-79.39968108, 43.63663014)}"
-17054,21829,GO-20149006635,THEFT UNDER,2014-09-05T00:00:00,2014,September,Friday,5,248,19,2014-09-07T00:00:00,2014,September,Sunday,7,250,7,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,,RC,14,WHI,1500.0,STOLEN,17023,"{'type': 'Point', 'coordinates': (-79.40430715, 43.64464636)}"
-17055,21861,GO-20159002812,B&E,2015-05-15T00:00:00,2015,May,Friday,15,135,18,2015-05-17T00:00:00,2015,May,Sunday,17,137,0,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,SIRRUS COMP,RG,21,BRZ,950.0,STOLEN,17024,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17056,21862,GO-20159002812,B&E,2015-05-15T00:00:00,2015,May,Friday,15,135,18,2015-05-17T00:00:00,2015,May,Sunday,17,137,0,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,HONEY BEE WHEEL,OT,1,YEL,200.0,STOLEN,17025,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17057,21863,GO-20159002812,B&E,2015-05-15T00:00:00,2015,May,Friday,15,135,18,2015-05-17T00:00:00,2015,May,Sunday,17,137,0,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,1,,75.0,STOLEN,17026,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17058,21870,GO-20159003359,THEFT UNDER,2015-05-31T00:00:00,2015,May,Sunday,31,151,13,2015-06-05T00:00:00,2015,June,Friday,5,156,14,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,ALLEZ,RC,27,RED,1600.0,STOLEN,17027,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17059,21890,GO-20159004350,THEFT UNDER,2015-06-26T00:00:00,2015,June,Friday,26,177,8,2015-07-09T00:00:00,2015,July,Thursday,9,190,14,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GT,TRANSEO 3.0,OT,21,SIL,718.0,STOLEN,17028,"{'type': 'Point', 'coordinates': (-79.40524581, 43.64340152)}"
-17060,21892,GO-20151210940,THEFT UNDER,2015-07-16T00:00:00,2015,July,Thursday,16,197,22,2015-07-16T00:00:00,2015,July,Thursday,16,197,22,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CANNONDALE,,MT,21,BLU,200.0,STOLEN,17029,"{'type': 'Point', 'coordinates': (-79.41142967, 43.640757)}"
-17061,21896,GO-20159005032,THEFT UNDER,2015-07-26T00:00:00,2015,July,Sunday,26,207,13,2015-07-27T00:00:00,2015,July,Monday,27,208,10,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RM,,OT,40,GRY,500.0,STOLEN,17030,"{'type': 'Point', 'coordinates': (-79.40056579, 43.63446271)}"
-17062,21903,GO-20159005233,THEFT UNDER,2015-07-24T00:00:00,2015,July,Friday,24,205,1,2015-07-31T00:00:00,2015,July,Friday,31,212,21,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,3,LGR,1000.0,STOLEN,17031,"{'type': 'Point', 'coordinates': (-79.40172265, 43.63837662)}"
-17063,21910,GO-20151423377,INCIDENT,2015-08-18T00:00:00,2015,August,Tuesday,18,230,21,2015-08-18T00:00:00,2015,August,Tuesday,18,230,21,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,ME,,RC,99,REDWHI,,UNKNOWN,17032,"{'type': 'Point', 'coordinates': (-79.41241449, 43.64334015)}"
-17064,21912,GO-20159005944,THEFT UNDER,2015-08-17T00:00:00,2015,August,Monday,17,229,9,2015-08-17T00:00:00,2015,August,Monday,17,229,20,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE 3S,RG,21,BLK,399.0,STOLEN,17033,"{'type': 'Point', 'coordinates': (-79.40215599, 43.64265388)}"
-17065,21921,GO-20159007182,THEFT UNDER,2015-09-10T00:00:00,2015,September,Thursday,10,253,14,2015-09-15T00:00:00,2015,September,Tuesday,15,258,10,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,AVALANCHE,MT,21,BLK,1000.0,STOLEN,17034,"{'type': 'Point', 'coordinates': (-79.41045766, 43.64169495)}"
-17066,21922,GO-20159007182,THEFT UNDER,2015-09-10T00:00:00,2015,September,Thursday,10,253,14,2015-09-15T00:00:00,2015,September,Tuesday,15,258,10,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,96062,OT,1,RED,200.0,STOLEN,17035,"{'type': 'Point', 'coordinates': (-79.41045766, 43.64169495)}"
-17067,21932,GO-20159008459,THEFT UNDER,2015-10-04T00:00:00,2015,October,Sunday,4,277,12,2015-10-12T00:00:00,2015,October,Monday,12,285,16,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,DEVINCI MILANO,RG,21,WHI,650.0,STOLEN,17036,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17068,21941,GO-20169001248,THEFT UNDER,2016-02-06T00:00:00,2016,February,Saturday,6,37,14,2016-02-08T00:00:00,2016,February,Monday,8,39,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,TRICROSS SPORT,RC,21,BLK,1200.0,STOLEN,17037,"{'type': 'Point', 'coordinates': (-79.41144857, 43.6456996)}"
-17069,21943,GO-20169001480,THEFT UNDER,2016-02-15T00:00:00,2016,February,Monday,15,46,18,2016-02-16T00:00:00,2016,February,Tuesday,16,47,22,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,TR,DUAL SPORT,MT,6,BLK,1000.0,STOLEN,17038,"{'type': 'Point', 'coordinates': (-79.41953608, 43.63849391)}"
-17070,21950,GO-20169002651,THEFT UNDER,2016-03-18T00:00:00,2016,March,Friday,18,78,9,2016-03-21T00:00:00,2016,March,Monday,21,81,16,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,RG,21,BLU,500.0,STOLEN,17039,"{'type': 'Point', 'coordinates': (-79.40524581, 43.64340152)}"
-17071,21956,GO-20169003985,THEFT UNDER - BICYCLE,2016-04-29T00:00:00,2016,April,Friday,29,120,9,2016-04-30T00:00:00,2016,April,Saturday,30,121,16,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,HF,,MT,7,GRY,150.0,STOLEN,17040,"{'type': 'Point', 'coordinates': (-79.40430715, 43.64464636)}"
-17072,21957,GO-20169004038,THEFT UNDER - BICYCLE,2016-05-01T00:00:00,2016,May,Sunday,1,122,0,2016-05-02T00:00:00,2016,May,Monday,2,123,9,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,DEW,OT,24,BLK,500.0,STOLEN,17041,"{'type': 'Point', 'coordinates': (-79.40524581, 43.64340152)}"
-17073,23796,GO-20201167987,THEFT OF EBIKE UNDER $5000,2020-06-23T00:00:00,2020,June,Tuesday,23,175,16,2020-06-25T00:00:00,2020,June,Thursday,25,177,14,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,VGO,EL,1,WHI,2100.0,STOLEN,17042,"{'type': 'Point', 'coordinates': (-79.40372116, 43.64647061)}"
-17074,23804,GO-20209017064,THEFT UNDER,2020-06-26T00:00:00,2020,June,Friday,26,178,0,2020-07-07T00:00:00,2020,July,Tuesday,7,189,20,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,DB,RESPONSE,MT,24,WHI,700.0,STOLEN,17043,"{'type': 'Point', 'coordinates': (-79.40517849, 43.63747213)}"
-17075,23815,GO-20209018785,THEFT UNDER,2020-07-18T00:00:00,2020,July,Saturday,18,200,0,2020-07-28T00:00:00,2020,July,Tuesday,28,210,13,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,7,WHI,530.0,STOLEN,17045,"{'type': 'Point', 'coordinates': (-79.4146674, 43.64064217)}"
-17076,23819,GO-20209019520,THEFT UNDER,2020-08-05T00:00:00,2020,August,Wednesday,5,218,20,2020-08-06T00:00:00,2020,August,Thursday,6,219,10,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,RG,21,BLK,1100.0,STOLEN,17046,"{'type': 'Point', 'coordinates': (-79.40767877, 43.64290821)}"
-17077,23820,GO-20209020311,THEFT UNDER,2020-08-15T00:00:00,2020,August,Saturday,15,228,15,2020-08-15T00:00:00,2020,August,Saturday,15,228,16,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,MT,7,MRN,0.0,STOLEN,17047,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-17078,23822,GO-20209020278,THEFT UNDER,2020-08-14T00:00:00,2020,August,Friday,14,227,21,2020-08-15T00:00:00,2020,August,Saturday,15,228,11,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,7,BLK,540.0,STOLEN,17048,"{'type': 'Point', 'coordinates': (-79.41953608, 43.63849391)}"
-17079,23828,GO-20201621794,THEFT UNDER - BICYCLE,2020-08-23T00:00:00,2020,August,Sunday,23,236,13,2020-09-01T00:00:00,2020,September,Tuesday,1,245,12,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CANNONDALE,,OT,18,BLK,1000.0,STOLEN,17049,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-17080,23830,GO-20209022400,THEFT UNDER,2020-09-03T00:00:00,2020,September,Thursday,3,247,20,2020-09-05T00:00:00,2020,September,Saturday,5,249,12,D14,Toronto,82,Niagara (82),Bar / Restaurant,Commercial,MA,FAIRFAX,OT,21,BLK,600.0,STOLEN,17050,"{'type': 'Point', 'coordinates': (-79.40138212, 43.64074836)}"
-17081,23835,GO-20201743886,B&E,2020-08-21T00:00:00,2020,August,Friday,21,234,13,2020-09-14T00:00:00,2020,September,Monday,14,258,19,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,NORCO,STORM 3,MT,27,BLK,800.0,STOLEN,17051,"{'type': 'Point', 'coordinates': (-79.41083033, 43.63928355)}"
-17082,23836,GO-20201743886,B&E,2020-08-21T00:00:00,2020,August,Friday,21,234,13,2020-09-14T00:00:00,2020,September,Monday,14,258,19,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,NORCO,,MT,27,BLKGRN,800.0,STOLEN,17052,"{'type': 'Point', 'coordinates': (-79.41083033, 43.63928355)}"
-17083,23843,GO-20209024840,THEFT UNDER,2020-09-25T00:00:00,2020,September,Friday,25,269,10,2020-09-29T00:00:00,2020,September,Tuesday,29,273,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,VITA SPORT BIKE,OT,18,TRQ,1284.0,STOLEN,17053,"{'type': 'Point', 'coordinates': (-79.41523931, 43.64211694)}"
-17084,23844,GO-20209025128,THEFT UNDER,2020-09-29T00:00:00,2020,September,Tuesday,29,273,21,2020-10-01T00:00:00,2020,October,Thursday,1,275,12,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,SIRRUS SPORT SM,MT,9,WHI,500.0,STOLEN,17054,"{'type': 'Point', 'coordinates': (-79.40730785, 43.6415952)}"
-17085,23853,GO-20201945094,THEFT UNDER - BICYCLE,2020-09-30T00:00:00,2020,September,Wednesday,30,274,18,2020-10-05T00:00:00,2020,October,Monday,5,279,12,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,DUAL SPORT 4,RG,18,GRY,1775.0,STOLEN,17055,"{'type': 'Point', 'coordinates': (-79.40128939, 43.63517525)}"
-17086,2700,GO-20189019595,THEFT UNDER - BICYCLE,2018-06-11T00:00:00,2018,June,Monday,11,162,9,2018-06-21T00:00:00,2018,June,Thursday,21,172,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,SU,,RG,18,WHI,225.0,STOLEN,17056,"{'type': 'Point', 'coordinates': (-79.40264178, 43.63743971)}"
-17087,23855,GO-20209026861,THEFT UNDER,2020-09-29T00:00:00,2020,September,Tuesday,29,273,15,2020-10-18T00:00:00,2020,October,Sunday,18,292,14,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,ROYAL,MT,15,DGR,300.0,STOLEN,17057,"{'type': 'Point', 'coordinates': (-79.40680169, 43.63639142)}"
-17088,23861,GO-20202173124,B&E,2020-11-08T00:00:00,2020,November,Sunday,8,313,13,2020-11-16T00:00:00,2020,November,Monday,16,321,17,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,,MT,27,WHI,4500.0,STOLEN,17058,"{'type': 'Point', 'coordinates': (-79.41410327, 43.63916384)}"
-17089,23986,GO-20189032712,THEFT UNDER - BICYCLE,2018-09-22T00:00:00,2018,September,Saturday,22,265,6,2018-10-02T00:00:00,2018,October,Tuesday,2,275,19,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,UNKNOWN,OT,18,SIL,1100.0,STOLEN,17059,"{'type': 'Point', 'coordinates': (-79.41953608, 43.63849391)}"
-17090,23996,GO-20189036197,THEFT UNDER - BICYCLE,2018-10-29T00:00:00,2018,October,Monday,29,302,19,2018-10-30T00:00:00,2018,October,Tuesday,30,303,14,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,KO,PADDY WAGON,OT,1,BLK,1000.0,STOLEN,17060,"{'type': 'Point', 'coordinates': (-79.40767084, 43.64646816)}"
-17091,24000,GO-20189039547,THEFT UNDER - BICYCLE,2018-11-18T00:00:00,2018,November,Sunday,18,322,7,2018-11-23T00:00:00,2018,November,Friday,23,327,19,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,820,MT,21,BLU,530.0,RECOVERED,17061,"{'type': 'Point', 'coordinates': (-79.40517849, 43.63747213)}"
-17092,189,GO-2017581231,THEFT UNDER,2017-03-16T00:00:00,2017,March,Thursday,16,75,0,2017-04-02T00:00:00,2017,April,Sunday,2,92,19,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,CRR3,RC,1,BLK,2000.0,STOLEN,17062,"{'type': 'Point', 'coordinates': (-79.40235491, 43.63675803)}"
-17093,24002,GO-20189039850,THEFT UNDER - BICYCLE,2018-11-20T00:00:00,2018,November,Tuesday,20,324,17,2018-11-26T00:00:00,2018,November,Monday,26,330,17,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,FROM MEC,MT,21,BLK,1000.0,STOLEN,17063,"{'type': 'Point', 'coordinates': (-79.40235491, 43.63675803)}"
-17094,24006,GO-201919236,THEFT UNDER - BICYCLE,2018-12-29T00:00:00,2018,December,Saturday,29,363,13,2019-01-04T00:00:00,2019,January,Friday,4,4,8,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SURLY,ECR,TO,16,LGR,2200.0,STOLEN,17064,"{'type': 'Point', 'coordinates': (-79.4166006, 43.6411109)}"
-17095,24009,GO-201926858,THEFT OF EBIKE UNDER $5000,2019-01-04T00:00:00,2019,January,Friday,4,4,11,2019-01-05T00:00:00,2019,January,Saturday,5,5,12,D14,Toronto,82,Niagara (82),Go Station,Transit,BEECH CRUISER,,EL,1,BLKWHI,2500.0,STOLEN,17065,"{'type': 'Point', 'coordinates': (-79.41861725, 43.63533762)}"
-17096,24010,GO-20199002213,THEFT UNDER - BICYCLE,2018-09-17T00:00:00,2018,September,Monday,17,260,11,2019-01-17T00:00:00,2019,January,Thursday,17,17,12,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,SPORTIVO,TO,11,WHI,2275.0,STOLEN,17066,"{'type': 'Point', 'coordinates': (-79.40517849, 43.63747213)}"
-17097,24014,GO-20199003723,THEFT UNDER - BICYCLE,2019-01-27T00:00:00,2019,January,Sunday,27,27,19,2019-01-27T00:00:00,2019,January,Sunday,27,27,23,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GI,THRIVE,OT,18,OTH,1100.0,STOLEN,17067,"{'type': 'Point', 'coordinates': (-79.4144255, 43.6400082)}"
-17098,24015,GO-20199003960,THEFT UNDER - BICYCLE,2019-01-25T00:00:00,2019,January,Friday,25,25,9,2019-01-30T00:00:00,2019,January,Wednesday,30,30,9,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,HOLD STEADY,RG,8,,1500.0,STOLEN,17068,"{'type': 'Point', 'coordinates': (-79.39968296, 43.63495137)}"
-17099,24017,GO-20199004069,THEFT UNDER - BICYCLE,2019-01-28T00:00:00,2019,January,Monday,28,28,13,2019-01-31T00:00:00,2019,January,Thursday,31,31,13,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,DB,,MT,9,BLK,700.0,STOLEN,17069,"{'type': 'Point', 'coordinates': (-79.41332573, 43.64059562)}"
-17100,24020,GO-2019349657,THEFT UNDER - BICYCLE,2019-01-14T00:00:00,2019,January,Monday,14,14,18,2019-02-24T00:00:00,2019,February,Sunday,24,55,15,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,GARNEAU,OT,0,SIL,700.0,STOLEN,17070,"{'type': 'Point', 'coordinates': (-79.41170542, 43.64145102)}"
-17101,24021,GO-20199007435,THEFT UNDER - BICYCLE,2019-02-18T00:00:00,2019,February,Monday,18,49,18,2019-03-06T00:00:00,2019,March,Wednesday,6,65,13,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,ESCAPE,RG,9,BLK,550.0,STOLEN,17071,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17102,24022,GO-20199007514,THEFT UNDER - BICYCLE,2019-03-01T00:00:00,2019,March,Friday,1,60,22,2019-03-07T00:00:00,2019,March,Thursday,7,66,9,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,KH,,RC,18,BLK,600.0,STOLEN,17072,"{'type': 'Point', 'coordinates': (-79.40235491, 43.63675803)}"
-17103,24023,GO-20199008182,THEFT UNDER - BICYCLE,2019-03-12T00:00:00,2019,March,Tuesday,12,71,21,2019-03-13T00:00:00,2019,March,Wednesday,13,72,19,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,Z95,RC,9,GRY,1200.0,STOLEN,17073,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17104,24024,GO-20199009535,THEFT UNDER - BICYCLE,2019-03-16T00:00:00,2019,March,Saturday,16,75,14,2019-03-25T00:00:00,2019,March,Monday,25,84,12,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,MT,21,WHI,0.0,STOLEN,17074,"{'type': 'Point', 'coordinates': (-79.40767877, 43.64290821)}"
-17105,24025,GO-20199009535,THEFT UNDER - BICYCLE,2019-03-16T00:00:00,2019,March,Saturday,16,75,14,2019-03-25T00:00:00,2019,March,Monday,25,84,12,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,SEVILLE,RG,1,BLU,800.0,STOLEN,17075,"{'type': 'Point', 'coordinates': (-79.40767877, 43.64290821)}"
-17106,24029,GO-20199013540,THEFT UNDER,2019-04-29T00:00:00,2019,April,Monday,29,119,0,2019-04-30T00:00:00,2019,April,Tuesday,30,120,18,D14,Toronto,82,Niagara (82),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,ALIGHT,RG,16,WHI,950.0,STOLEN,17076,"{'type': 'Point', 'coordinates': (-79.40767877, 43.64290821)}"
-17107,24036,GO-20199015354,THEFT UNDER,2019-05-16T00:00:00,2019,May,Thursday,16,136,18,2019-05-17T00:00:00,2019,May,Friday,17,137,8,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,SUB 10,OT,8,GRN,1700.0,STOLEN,17077,"{'type': 'Point', 'coordinates': (-79.40524581, 43.64340152)}"
-17108,24042,GO-20199016426,THEFT UNDER - BICYCLE,2019-04-01T00:00:00,2019,April,Monday,1,91,11,2019-05-27T00:00:00,2019,May,Monday,27,147,11,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,FJ,DECLARATION,RG,1,BLK,600.0,STOLEN,17078,"{'type': 'Point', 'coordinates': (-79.40956504000002, 43.64529628)}"
-17109,24048,GO-20191113005,B&E,2019-06-15T00:00:00,2019,June,Saturday,15,166,22,2019-06-16T00:00:00,2019,June,Sunday,16,167,18,D14,Toronto,82,Niagara (82),Bar / Restaurant,Commercial,CCM,,MT,21,BLKRED,400.0,STOLEN,17079,"{'type': 'Point', 'coordinates': (-79.41118564, 43.64358482)}"
-17110,24049,GO-20199019162,THEFT UNDER - BICYCLE,2019-06-17T00:00:00,2019,June,Monday,17,168,20,2019-06-18T00:00:00,2019,June,Tuesday,18,169,20,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,CA,,RG,24,BLK,1500.0,STOLEN,17080,"{'type': 'Point', 'coordinates': (-79.41393685, 43.64520426)}"
-17111,24066,GO-20199022469,THEFT UNDER,2019-07-05T00:00:00,2019,July,Friday,5,186,11,2019-07-16T00:00:00,2019,July,Tuesday,16,197,9,D14,Toronto,82,Niagara (82),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,RG,3,BLK,0.0,STOLEN,17081,"{'type': 'Point', 'coordinates': (-79.39968108, 43.63663014)}"
-17112,24068,GO-20199022802,THEFT UNDER,2019-07-14T00:00:00,2019,July,Sunday,14,195,20,2019-07-18T00:00:00,2019,July,Thursday,18,199,15,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,MA,TERRA LINDA,RG,6,TRQ,0.0,STOLEN,17082,"{'type': 'Point', 'coordinates': (-79.42161579, 43.64147337)}"
-17113,24074,GO-20199023796,THEFT UNDER - BICYCLE,2019-07-24T00:00:00,2019,July,Wednesday,24,205,20,2019-07-25T00:00:00,2019,July,Thursday,25,206,21,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,2017 MASI CX CO,RG,10,RED,1500.0,STOLEN,17083,"{'type': 'Point', 'coordinates': (-79.39968108, 43.63663014)}"
-17114,24078,GO-20199024403,THEFT UNDER - BICYCLE,2019-07-12T00:00:00,2019,July,Friday,12,193,0,2019-07-30T00:00:00,2019,July,Tuesday,30,211,14,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,BLK,1200.0,STOLEN,17084,"{'type': 'Point', 'coordinates': (-79.40537327000001, 43.63616773)}"
-17115,24081,GO-20191489863,B&E,2019-08-06T00:00:00,2019,August,Tuesday,6,218,8,2019-08-07T00:00:00,2019,August,Wednesday,7,219,11,D14,Toronto,82,Niagara (82),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,,MT,17,,6000.0,STOLEN,17085,"{'type': 'Point', 'coordinates': (-79.41144857, 43.6456996)}"
-17116,24082,GO-20191489863,B&E,2019-08-06T00:00:00,2019,August,Tuesday,6,218,8,2019-08-07T00:00:00,2019,August,Wednesday,7,219,11,D14,Toronto,82,Niagara (82),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CYCLING,URBAN,OT,12,,2000.0,STOLEN,17086,"{'type': 'Point', 'coordinates': (-79.41144857, 43.6456996)}"
-17117,24085,GO-20199025929,THEFT UNDER - BICYCLE,2019-08-12T00:00:00,2019,August,Monday,12,224,11,2019-08-12T00:00:00,2019,August,Monday,12,224,17,D14,Toronto,82,Niagara (82),Go Station,Transit,BL,,MT,10,RED,400.0,STOLEN,17087,"{'type': 'Point', 'coordinates': (-79.41861725, 43.63533762)}"
-17118,24087,GO-20191558176,THEFT UNDER - BICYCLE,2019-08-07T00:00:00,2019,August,Wednesday,7,219,12,2019-08-16T00:00:00,2019,August,Friday,16,228,16,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,SOHO,RG,0,BLK,400.0,STOLEN,17088,"{'type': 'Point', 'coordinates': (-79.40871966, 43.64270265)}"
-17119,24094,GO-20199027716,THEFT UNDER - BICYCLE,2019-08-26T00:00:00,2019,August,Monday,26,238,3,2019-08-26T00:00:00,2019,August,Monday,26,238,12,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,4,TRQ,500.0,STOLEN,17089,"{'type': 'Point', 'coordinates': (-79.40990666, 43.64599574)}"
-17120,24107,GO-20191850293,THEFT UNDER,2019-09-21T00:00:00,2019,September,Saturday,21,264,23,2019-09-25T00:00:00,2019,September,Wednesday,25,268,19,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GT,ALALANCHE,MT,21,BLK,800.0,STOLEN,17090,"{'type': 'Point', 'coordinates': (-79.40111777, 43.63691899)}"
-17121,24108,GO-20191850293,THEFT UNDER,2019-09-21T00:00:00,2019,September,Saturday,21,264,23,2019-09-25T00:00:00,2019,September,Wednesday,25,268,19,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GT,KARAKORAM,MT,21,BLK,800.0,STOLEN,17091,"{'type': 'Point', 'coordinates': (-79.40111777, 43.63691899)}"
-17122,24109,GO-20199032702,THEFT FROM MOTOR VEHICLE UNDER,2019-10-04T00:00:00,2019,October,Friday,4,277,2,2019-10-05T00:00:00,2019,October,Saturday,5,278,14,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,,SC,1,,120.0,STOLEN,17092,"{'type': 'Point', 'coordinates': (-79.39916285, 43.63523601)}"
-17123,24112,GO-20199034727,THEFT UNDER - BICYCLE,2019-10-17T00:00:00,2019,October,Thursday,17,290,9,2019-10-21T00:00:00,2019,October,Monday,21,294,22,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,KH,ULTRASPORT 2.0,MT,8,BLK,800.0,STOLEN,17093,"{'type': 'Point', 'coordinates': (-79.39948839, 43.63339968)}"
-17124,24116,GO-20199035504,THEFT UNDER - BICYCLE,2019-10-27T00:00:00,2019,October,Sunday,27,300,11,2019-10-28T00:00:00,2019,October,Monday,28,301,11,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,NO,CITYGLIDE,RG,7,TRQ,600.0,STOLEN,17094,"{'type': 'Point', 'coordinates': (-79.41393685, 43.64520426)}"
-17125,24117,GO-20199035557,THEFT UNDER - BICYCLE,2019-10-27T00:00:00,2019,October,Sunday,27,300,13,2019-10-28T00:00:00,2019,October,Monday,28,301,13,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,NO,CITY GLIDE?,TO,6,BLU,1000.0,STOLEN,17095,"{'type': 'Point', 'coordinates': (-79.4146674, 43.64064217)}"
-17126,24118,GO-20199035643,THEFT UNDER - BICYCLE,2019-10-29T00:00:00,2019,October,Tuesday,29,302,6,2019-10-29T00:00:00,2019,October,Tuesday,29,302,9,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,VICTOR,RG,1,BLK,600.0,STOLEN,17096,"{'type': 'Point', 'coordinates': (-79.4038263, 43.63755765)}"
-17127,24126,GO-20199037634,THEFT UNDER,2019-11-15T00:00:00,2019,November,Friday,15,319,10,2019-11-15T00:00:00,2019,November,Friday,15,319,18,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,,TO,24,WHI,1500.0,STOLEN,17097,"{'type': 'Point', 'coordinates': (-79.40680169, 43.63639142)}"
-17128,24139,GO-20199040853,B&E,2019-12-03T00:00:00,2019,December,Tuesday,3,337,0,2019-12-14T00:00:00,2019,December,Saturday,14,348,12,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,,OT,1,BLK,750.0,STOLEN,17098,"{'type': 'Point', 'coordinates': (-79.40767877, 43.64290821)}"
-17129,24149,GO-20209005743,THEFT UNDER,2020-02-13T00:00:00,2020,February,Thursday,13,44,9,2020-02-17T00:00:00,2020,February,Monday,17,48,9,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,BI,SIKA,MT,24,PLE,100.0,STOLEN,17099,"{'type': 'Point', 'coordinates': (-79.41144857, 43.6456996)}"
-17130,24151,GO-20209007666,THEFT UNDER,2020-03-01T00:00:00,2020,March,Sunday,1,61,23,2020-03-03T00:00:00,2020,March,Tuesday,3,63,23,D14,Toronto,82,Niagara (82),"Open Areas (Lakes, Parks, Rivers)",Outside,GI,CYPRESS,OT,21,RED,0.0,STOLEN,17100,"{'type': 'Point', 'coordinates': (-79.41138445, 43.63917336)}"
-17131,2857,GO-20189022698,THEFT UNDER - BICYCLE,2018-07-15T00:00:00,2018,July,Sunday,15,196,20,2018-07-16T00:00:00,2018,July,Monday,16,197,21,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,21,ONG,100.0,STOLEN,17117,"{'type': 'Point', 'coordinates': (-79.41546856, 43.64271687)}"
-17132,15595,GO-20179004579,THEFT UNDER,2017-04-11T00:00:00,2017,April,Tuesday,11,101,8,2017-04-11T00:00:00,2017,April,Tuesday,11,101,20,D14,Toronto,82,Niagara (82),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,GI,SEEK 1,RG,27,BLK,800.0,STOLEN,17101,"{'type': 'Point', 'coordinates': (-79.41882219, 43.64420339)}"
-17133,14344,GO-20209031684,THEFT UNDER,2020-12-06T00:00:00,2020,December,Sunday,6,341,15,2020-12-10T00:00:00,2020,December,Thursday,10,345,14,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,ROAD BIKE,TO,11,,2250.0,STOLEN,17102,"{'type': 'Point', 'coordinates': (-79.40215599, 43.64265388)}"
-17134,14454,GO-20189028365,THEFT UNDER - BICYCLE,2018-08-18T00:00:00,2018,August,Saturday,18,230,23,2018-08-29T00:00:00,2018,August,Wednesday,29,241,8,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,SPECIALIZED,RG,8,BRN,1200.0,STOLEN,17103,"{'type': 'Point', 'coordinates': (-79.40442195, 43.64140672)}"
-17135,14458,GO-20189030831,THEFT UNDER - BICYCLE,2018-09-14T00:00:00,2018,September,Friday,14,257,7,2018-09-17T00:00:00,2018,September,Monday,17,260,16,D14,Toronto,82,Niagara (82),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KH,2018 URBAN SOUL,RG,7,GRY,480.0,STOLEN,17104,"{'type': 'Point', 'coordinates': (-79.40442195, 43.64140672)}"
-17136,14463,GO-20189033153,THEFT UNDER - BICYCLE,2018-10-06T00:00:00,2018,October,Saturday,6,279,9,2018-10-07T00:00:00,2018,October,Sunday,7,280,10,D14,Toronto,82,Niagara (82),Go Station,Transit,OT,SCHERZO,RC,21,SIL,500.0,STOLEN,17105,"{'type': 'Point', 'coordinates': (-79.42053557, 43.63830759)}"
-17137,2701,GO-20189020476,FTC PROBATION ORDER,2018-06-22T00:00:00,2018,June,Friday,22,173,18,2018-06-27T00:00:00,2018,June,Wednesday,27,178,18,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,SPORT,RC,49,BLK,1000.0,STOLEN,17106,"{'type': 'Point', 'coordinates': (-79.40372116, 43.64647061)}"
-17138,14480,GO-20182220218,B&E W'INTENT,2018-12-02T00:00:00,2018,December,Sunday,2,336,14,2018-12-04T00:00:00,2018,December,Tuesday,4,338,8,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,JAMIS,SPORT VENTURE,RC,10,BLK,,UNKNOWN,17107,"{'type': 'Point', 'coordinates': (-79.41626354, 43.64472458)}"
-17139,2723,GO-20189020789,THEFT UNDER - BICYCLE,2018-06-30T00:00:00,2018,June,Saturday,30,181,4,2018-06-30T00:00:00,2018,June,Saturday,30,181,5,D14,Toronto,82,Niagara (82),Bar / Restaurant,Commercial,GI,GIANT CONTEND 3,RC,8,BLK,1000.0,STOLEN,17108,"{'type': 'Point', 'coordinates': (-79.40524581, 43.64340152)}"
-17140,14487,GO-20199001337,THEFT UNDER - BICYCLE,2019-01-05T00:00:00,2019,January,Saturday,5,5,10,2019-01-11T00:00:00,2019,January,Friday,11,11,12,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,CHINOOK,MT,18,BLK,1000.0,STOLEN,17109,"{'type': 'Point', 'coordinates': (-79.40517849, 43.63747213)}"
-17141,190,GO-2017579842,B&E,2017-03-28T00:00:00,2017,March,Tuesday,28,87,0,2017-04-02T00:00:00,2017,April,Sunday,2,92,14,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,NORCO,,MT,10,BLK,,STOLEN,17110,"{'type': 'Point', 'coordinates': (-79.39968108, 43.63663014)}"
-17142,2740,GO-20189021031,THEFT UNDER - BICYCLE,2018-07-02T00:00:00,2018,July,Monday,2,183,22,2018-07-03T00:00:00,2018,July,Tuesday,3,184,15,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,REACTION 700C H,RG,18,BLU,299.0,STOLEN,17111,"{'type': 'Point', 'coordinates': (-79.40172265, 43.63837662)}"
-17143,2755,GO-20189021188,THEFT UNDER - BICYCLE,2018-06-23T00:00:00,2018,June,Saturday,23,174,18,2018-07-04T00:00:00,2018,July,Wednesday,4,185,19,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,INDIE 3,OT,21,BLK,790.0,STOLEN,17112,"{'type': 'Point', 'coordinates': (-79.40235491, 43.63675803)}"
-17144,2768,GO-20189021396,THEFT UNDER - BICYCLE,2018-07-01T00:00:00,2018,July,Sunday,1,182,1,2018-07-06T00:00:00,2018,July,Friday,6,187,8,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,,OT,18,BLU,0.0,STOLEN,17113,"{'type': 'Point', 'coordinates': (-79.39999105, 43.63737009)}"
-17145,2769,GO-20189021396,THEFT UNDER - BICYCLE,2018-07-01T00:00:00,2018,July,Sunday,1,182,1,2018-07-06T00:00:00,2018,July,Friday,6,187,8,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,21,,0.0,STOLEN,17114,"{'type': 'Point', 'coordinates': (-79.39999105, 43.63737009)}"
-17146,2802,GO-20189021878,THEFT UNDER - BICYCLE,2018-07-08T00:00:00,2018,July,Sunday,8,189,20,2018-07-10T00:00:00,2018,July,Tuesday,10,191,15,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GI,REVOLT 3,OT,16,BLU,1800.0,STOLEN,17115,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-17147,2848,GO-20189022506,THEFT UNDER - BICYCLE,2018-07-14T00:00:00,2018,July,Saturday,14,195,17,2018-07-15T00:00:00,2018,July,Sunday,15,196,16,D14,Toronto,82,Niagara (82),"Open Areas (Lakes, Parks, Rivers)",Outside,TR,"FUEL EX 8 E"""" 09",MT,20,WHI,2500.0,STOLEN,17116,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17148,2861,GO-20189022682,THEFT UNDER - BICYCLE,2018-07-15T00:00:00,2018,July,Sunday,15,196,21,2018-07-16T00:00:00,2018,July,Monday,16,197,21,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,BELLADONNA 2W,RG,21,WHI,549.0,STOLEN,17118,"{'type': 'Point', 'coordinates': (-79.40524581, 43.64340152)}"
-17149,2881,GO-20189023024,THEFT UNDER - BICYCLE,2018-07-18T00:00:00,2018,July,Wednesday,18,199,21,2018-07-19T00:00:00,2018,July,Thursday,19,200,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,ALLEZ,RC,11,BLK,1325.0,STOLEN,17119,"{'type': 'Point', 'coordinates': (-79.39948839, 43.63339968)}"
-17150,2909,GO-20189023361,THEFT UNDER - BICYCLE,2018-07-20T00:00:00,2018,July,Friday,20,201,19,2018-07-21T00:00:00,2018,July,Saturday,21,202,19,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,CHINOOK,RG,12,BLK,625.0,STOLEN,17120,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-17151,2910,GO-20189023361,THEFT UNDER - BICYCLE,2018-07-20T00:00:00,2018,July,Friday,20,201,19,2018-07-21T00:00:00,2018,July,Saturday,21,202,19,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,MAXI,OT,12,ONG,294.0,STOLEN,17121,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-17152,2914,GO-20181338964,INCIDENT,2018-07-20T00:00:00,2018,July,Friday,20,201,4,2018-07-22T00:00:00,2018,July,Sunday,22,203,14,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OPUS,CLASSICO,MT,12,REDWHI,600.0,STOLEN,17122,"{'type': 'Point', 'coordinates': (-79.40215599, 43.64265388)}"
-17153,2937,GO-20189023024,THEFT UNDER - BICYCLE,2018-07-18T00:00:00,2018,July,Wednesday,18,199,21,2018-07-19T00:00:00,2018,July,Thursday,19,200,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,ALLEZ SPORT 201,RC,11,BLK,1325.0,STOLEN,17123,"{'type': 'Point', 'coordinates': (-79.39948839, 43.63339968)}"
-17154,2996,GO-20189024207,THEFT UNDER - BICYCLE,2018-07-25T00:00:00,2018,July,Wednesday,25,206,17,2018-07-27T00:00:00,2018,July,Friday,27,208,14,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,1,BLK,300.0,STOLEN,17124,"{'type': 'Point', 'coordinates': (-79.41393685, 43.64520426)}"
-17155,2997,GO-20189024207,THEFT UNDER - BICYCLE,2018-07-25T00:00:00,2018,July,Wednesday,25,206,17,2018-07-27T00:00:00,2018,July,Friday,27,208,14,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,FJ,,RG,7,BLK,399.0,STOLEN,17125,"{'type': 'Point', 'coordinates': (-79.41393685, 43.64520426)}"
-17156,3031,GO-20189024611,THEFT UNDER - BICYCLE,2018-07-28T00:00:00,2018,July,Saturday,28,209,23,2018-07-30T00:00:00,2018,July,Monday,30,211,16,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,,OT,15,GLD,900.0,STOLEN,17126,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17157,3035,GO-20189024624,THEFT UNDER - BICYCLE,2018-07-30T00:00:00,2018,July,Monday,30,211,18,2018-07-31T00:00:00,2018,July,Tuesday,31,212,10,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,SDIRO,EL,32,GRY,2800.0,STOLEN,17127,"{'type': 'Point', 'coordinates': (-79.39916285, 43.63523601)}"
-17158,15596,GO-20179004794,THEFT UNDER - BICYCLE,2017-04-14T00:00:00,2017,April,Friday,14,104,10,2017-04-17T00:00:00,2017,April,Monday,17,107,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GI,TALON,MT,24,BLK,1000.0,STOLEN,17128,"{'type': 'Point', 'coordinates': (-79.40264178, 43.63743971)}"
-17159,3037,GO-20189024690,THEFT UNDER - BICYCLE,2018-07-29T00:00:00,2018,July,Sunday,29,210,0,2018-07-31T00:00:00,2018,July,Tuesday,31,212,16,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,22,,1200.0,STOLEN,17129,"{'type': 'Point', 'coordinates': (-79.41138445, 43.63917336)}"
-17160,3077,GO-20189025142,THEFT UNDER - BICYCLE,2018-08-02T00:00:00,2018,August,Thursday,2,214,1,2018-08-04T00:00:00,2018,August,Saturday,4,216,18,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,REMUS,RC,1,GRY,500.0,STOLEN,17130,"{'type': 'Point', 'coordinates': (-79.42133098, 43.63231435)}"
-17161,3227,GO-20189026636,THEFT UNDER - BICYCLE,2018-08-15T00:00:00,2018,August,Wednesday,15,227,12,2018-08-16T00:00:00,2018,August,Thursday,16,228,12,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,TO,9,SIL,1950.0,STOLEN,17131,"{'type': 'Point', 'coordinates': (-79.41170542, 43.64145102)}"
-17162,3267,GO-20189027176,THEFT UNDER - BICYCLE,2018-08-18T00:00:00,2018,August,Saturday,18,230,22,2018-08-20T00:00:00,2018,August,Monday,20,232,17,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,RM,ELEMENT 950,MT,14,BLK,3100.0,STOLEN,17132,"{'type': 'Point', 'coordinates': (-79.41144857, 43.6456996)}"
-17163,3273,GO-20189027176,THEFT UNDER - BICYCLE,2018-08-18T00:00:00,2018,August,Saturday,18,230,22,2018-08-20T00:00:00,2018,August,Monday,20,232,17,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,RM,ELEMENT 950,MT,30,BLK,3100.0,STOLEN,17133,"{'type': 'Point', 'coordinates': (-79.41144857, 43.6456996)}"
-17164,3277,GO-20189027268,THEFT UNDER - BICYCLE,2018-08-09T00:00:00,2018,August,Thursday,9,221,20,2018-08-21T00:00:00,2018,August,Tuesday,21,233,11,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,VITA,OT,11,BLK,120.0,STOLEN,17134,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17165,3283,GO-20189027376,THEFT UNDER - BICYCLE,2018-08-21T00:00:00,2018,August,Tuesday,21,233,16,2018-08-21T00:00:00,2018,August,Tuesday,21,233,21,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,OT,3,BLK,1200.0,STOLEN,17135,"{'type': 'Point', 'coordinates': (-79.40172265, 43.63837662)}"
-17166,3310,GO-20189027176,THEFT UNDER - BICYCLE,2018-08-18T00:00:00,2018,August,Saturday,18,230,22,2018-08-20T00:00:00,2018,August,Monday,20,232,17,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,RM,ELEMENT 950,MT,30,BLK,3100.0,STOLEN,17136,"{'type': 'Point', 'coordinates': (-79.41144857, 43.6456996)}"
-17167,3357,GO-20189028523,THEFT UNDER - BICYCLE,2018-08-27T00:00:00,2018,August,Monday,27,239,17,2018-08-30T00:00:00,2018,August,Thursday,30,242,2,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,ROAD BIKE,RC,21,WHI,820.0,STOLEN,17137,"{'type': 'Point', 'coordinates': (-79.40537327000001, 43.63616773)}"
-17168,3363,GO-20189028519,THEFT UNDER - BICYCLE,2018-08-20T00:00:00,2018,August,Monday,20,232,23,2018-08-29T00:00:00,2018,August,Wednesday,29,241,23,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE 2 CITY,RG,18,GRN,850.0,STOLEN,17138,"{'type': 'Point', 'coordinates': (-79.41375783, 43.641679)}"
-17169,3384,GO-20189028970,THEFT UNDER - BICYCLE,2018-08-08T00:00:00,2018,August,Wednesday,8,220,21,2018-09-03T00:00:00,2018,September,Monday,3,246,21,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GI,18 ESCAPE 2 CIT,RG,27,,780.0,STOLEN,17139,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-17170,3395,GO-20189029183,THEFT UNDER,2018-09-05T00:00:00,2018,September,Wednesday,5,248,10,2018-09-05T00:00:00,2018,September,Wednesday,5,248,13,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,,TO,24,SIL,1230.0,STOLEN,17140,"{'type': 'Point', 'coordinates': (-79.42097315, 43.63947205000001)}"
-17171,3446,GO-20189029974,THEFT UNDER - BICYCLE,2018-08-24T00:00:00,2018,August,Friday,24,236,16,2018-09-11T00:00:00,2018,September,Tuesday,11,254,14,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,MA,ALUMINUM FRAME,MT,21,SIL,0.0,STOLEN,17141,"{'type': 'Point', 'coordinates': (-79.40215599, 43.64265388)}"
-17172,3447,GO-20189030040,THEFT UNDER - BICYCLE,2018-09-05T00:00:00,2018,September,Wednesday,5,248,10,2018-09-12T00:00:00,2018,September,Wednesday,12,255,8,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,WHI,280.0,STOLEN,17142,"{'type': 'Point', 'coordinates': (-79.40266560000002, 43.64392483)}"
-17173,3451,GO-20189030127,THEFT UNDER - BICYCLE,2018-09-12T00:00:00,2018,September,Wednesday,12,255,9,2018-09-12T00:00:00,2018,September,Wednesday,12,255,14,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,21,WHI,1000.0,STOLEN,17143,"{'type': 'Point', 'coordinates': (-79.41045766, 43.64169495)}"
-17174,3452,GO-20189030127,THEFT UNDER - BICYCLE,2018-09-12T00:00:00,2018,September,Wednesday,12,255,9,2018-09-12T00:00:00,2018,September,Wednesday,12,255,14,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,21,GRY,1200.0,STOLEN,17144,"{'type': 'Point', 'coordinates': (-79.41045766, 43.64169495)}"
-17175,3460,GO-20189030284,THEFT UNDER - BICYCLE,2018-09-12T00:00:00,2018,September,Wednesday,12,255,22,2018-09-13T00:00:00,2018,September,Thursday,13,256,16,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,CA,QUICK CX 1,MT,21,SIL,1700.0,STOLEN,17145,"{'type': 'Point', 'coordinates': (-79.41045766, 43.64169495)}"
-17176,3464,GO-20189030377,THEFT UNDER - BICYCLE,2018-09-12T00:00:00,2018,September,Wednesday,12,255,16,2018-09-14T00:00:00,2018,September,Friday,14,257,16,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,RA,,RG,18,WHI,500.0,STOLEN,17146,"{'type': 'Point', 'coordinates': (-79.41058904, 43.64371038)}"
-17177,3526,GO-20189031368,THEFT FROM MOTOR VEHICLE UNDER,2018-09-18T00:00:00,2018,September,Tuesday,18,261,22,2018-09-21T00:00:00,2018,September,Friday,21,264,10,D14,Toronto,82,Niagara (82),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,FO,5,YEL,100.0,STOLEN,17147,"{'type': 'Point', 'coordinates': (-79.41882219, 43.64420339)}"
-17178,3540,GO-20189031633,THEFT UNDER - BICYCLE,2018-09-22T00:00:00,2018,September,Saturday,22,265,18,2018-09-23T00:00:00,2018,September,Sunday,23,266,14,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,TR,,RC,3,BLK,300.0,STOLEN,17148,"{'type': 'Point', 'coordinates': (-79.40537327000001, 43.63616773)}"
-17179,3558,GO-20189031911,THEFT UNDER - BICYCLE,2018-09-19T00:00:00,2018,September,Wednesday,19,262,20,2018-09-25T00:00:00,2018,September,Tuesday,25,268,20,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,TR,8.3 DS 22.5,OT,8,BLK,700.0,STOLEN,17149,"{'type': 'Point', 'coordinates': (-79.40264178, 43.63743971)}"
-17180,3587,GO-20189032476,THEFT UNDER,2018-09-28T00:00:00,2018,September,Friday,28,271,19,2018-10-01T00:00:00,2018,October,Monday,1,274,10,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,VISCOUNT,RG,1,YEL,500.0,STOLEN,17150,"{'type': 'Point', 'coordinates': (-79.41720467, 43.64099056)}"
-17181,3602,GO-20181821299,THEFT UNDER - BICYCLE,2018-09-30T00:00:00,2018,September,Sunday,30,273,9,2018-10-02T00:00:00,2018,October,Tuesday,2,275,13,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,BRODIE,4130,OT,12,CPR,866.0,STOLEN,17151,"{'type': 'Point', 'coordinates': (-79.40235491, 43.63675803)}"
-17182,3701,GO-20189034133,THEFT UNDER - BICYCLE,2018-10-12T00:00:00,2018,October,Friday,12,285,18,2018-10-15T00:00:00,2018,October,Monday,15,288,11,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,TR,8.4 DS,RG,9,BLK,500.0,STOLEN,17152,"{'type': 'Point', 'coordinates': (-79.40767877, 43.64290821)}"
-17183,3726,GO-20189034543,THEFT UNDER,2018-10-07T00:00:00,2018,October,Sunday,7,280,14,2018-10-18T00:00:00,2018,October,Thursday,18,291,11,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,,RE,21,BLK,200.0,STOLEN,17153,"{'type': 'Point', 'coordinates': (-79.41038853, 43.64475975)}"
-17184,3743,GO-20181958798,THEFT UNDER - BICYCLE,2018-10-02T00:00:00,2018,October,Tuesday,2,275,17,2018-10-23T00:00:00,2018,October,Tuesday,23,296,20,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,DUAL SPORT 2,RG,21,BLKGRN,900.0,STOLEN,17154,"{'type': 'Point', 'coordinates': (-79.4149791, 43.64143597)}"
-17185,3759,GO-20189035450,THEFT UNDER - BICYCLE,2018-10-17T00:00:00,2018,October,Wednesday,17,290,12,2018-10-24T00:00:00,2018,October,Wednesday,24,297,20,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,S8 ELITE,MT,30,BLK,2500.0,STOLEN,17155,"{'type': 'Point', 'coordinates': (-79.40128939, 43.63517525)}"
-17186,3802,GO-20182020024,THEFT UNDER - BICYCLE,2018-10-24T00:00:00,2018,October,Wednesday,24,297,10,2018-11-02T00:00:00,2018,November,Friday,2,306,13,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,CANNONDALR,CUJO 2,MT,18,GRN,1200.0,STOLEN,17156,"{'type': 'Point', 'coordinates': (-79.40128939, 43.63517525)}"
-17187,3844,GO-20189037902,THEFT UNDER - BICYCLE,2018-10-09T00:00:00,2018,October,Tuesday,9,282,14,2018-11-12T00:00:00,2018,November,Monday,12,316,14,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,URBANIA,RG,18,GRY,500.0,STOLEN,17157,"{'type': 'Point', 'coordinates': (-79.39948839, 43.63339968)}"
-17188,3871,GO-20189038582,THEFT UNDER - BICYCLE,2018-10-27T00:00:00,2018,October,Saturday,27,300,8,2018-11-17T00:00:00,2018,November,Saturday,17,321,8,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,,ROYAL HYBRID,MT,12,BLK,250.0,STOLEN,17158,"{'type': 'Point', 'coordinates': (-79.4038263, 43.63755765)}"
-17189,3891,GO-20182153503,B&E,2018-11-21T00:00:00,2018,November,Wednesday,21,325,18,2018-11-24T00:00:00,2018,November,Saturday,24,328,7,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,RG,1,BLK,160.0,STOLEN,17159,"{'type': 'Point', 'coordinates': (-79.4144255, 43.6400082)}"
-17190,3897,GO-20189039721,THEFT UNDER - BICYCLE,2018-11-21T00:00:00,2018,November,Wednesday,21,325,17,2018-11-25T00:00:00,2018,November,Sunday,25,329,17,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,EXPERT 10,MT,21,SIL,1200.0,STOLEN,17160,"{'type': 'Point', 'coordinates': (-79.39968296, 43.63495137)}"
-17191,3902,GO-20189039919,THEFT UNDER - BICYCLE,2018-11-20T00:00:00,2018,November,Tuesday,20,324,9,2018-11-27T00:00:00,2018,November,Tuesday,27,331,9,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,CRUISE,MT,24,ONG,1500.0,STOLEN,17161,"{'type': 'Point', 'coordinates': (-79.40235491, 43.63675803)}"
-17192,3909,GO-20189040316,THEFT UNDER - BICYCLE,2018-09-28T00:00:00,2018,September,Friday,28,271,8,2018-11-30T00:00:00,2018,November,Friday,30,334,11,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,RC,12,WHI,500.0,STOLEN,17162,"{'type': 'Point', 'coordinates': (-79.40266560000002, 43.64392483)}"
-17193,3910,GO-20189040381,THEFT UNDER - BICYCLE,2018-11-30T00:00:00,2018,November,Friday,30,334,2,2018-11-30T00:00:00,2018,November,Friday,30,334,21,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,2018 FAIRDALE E,RG,1,BLU,500.0,STOLEN,17163,"{'type': 'Point', 'coordinates': (-79.41393685, 43.64520426)}"
-17194,3911,GO-20189040412,THEFT UNDER - BICYCLE,2018-11-23T00:00:00,2018,November,Friday,23,327,11,2018-12-01T00:00:00,2018,December,Saturday,1,335,12,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,TR,7D EQ,RG,3,BLU,230.0,STOLEN,17164,"{'type': 'Point', 'coordinates': (-79.40128939, 43.63517525)}"
-17195,3912,GO-20182207296,THEFT UNDER - BICYCLE,2018-11-26T00:00:00,2018,November,Monday,26,330,17,2018-12-01T00:00:00,2018,December,Saturday,1,335,8,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OTHER,,TO,12,RED,250.0,STOLEN,17165,"{'type': 'Point', 'coordinates': (-79.41038853, 43.64475975)}"
-17196,3920,GO-20182220218,B&E W'INTENT,2018-12-02T00:00:00,2018,December,Sunday,2,336,14,2018-12-04T00:00:00,2018,December,Tuesday,4,338,8,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,ROCKY MOUNTAIN,ELEMENT 950,MT,18,BLKLGR,4500.0,STOLEN,17166,"{'type': 'Point', 'coordinates': (-79.41626354, 43.64472458)}"
-17197,3926,GO-20182233752,PROPERTY - FOUND,2018-12-05T00:00:00,2018,December,Wednesday,5,339,11,2018-12-06T00:00:00,2018,December,Thursday,6,340,5,D14,Toronto,82,Niagara (82),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,4300,MT,27,SIL,,UNKNOWN,17167,"{'type': 'Point', 'coordinates': (-79.4094396, 43.645012)}"
-17198,3933,GO-20189041678,THEFT UNDER - BICYCLE,2018-12-11T00:00:00,2018,December,Tuesday,11,345,6,2018-12-11T00:00:00,2018,December,Tuesday,11,345,17,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,FJ,TRACK CLASSIC,OT,1,WHI,1000.0,STOLEN,17168,"{'type': 'Point', 'coordinates': (-79.40680169, 43.63639142)}"
-17199,3956,GO-20189043013,THEFT UNDER - BICYCLE,2018-12-17T00:00:00,2018,December,Monday,17,351,17,2018-12-22T00:00:00,2018,December,Saturday,22,356,13,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,FJ,DECLARATION,RG,1,GRY,500.0,STOLEN,17169,"{'type': 'Point', 'coordinates': (-79.41293739000001, 43.64259154)}"
-17200,3961,GO-20189043368,THEFT UNDER - BICYCLE,2018-12-15T00:00:00,2018,December,Saturday,15,349,6,2018-12-27T00:00:00,2018,December,Thursday,27,361,9,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,FARLEY 5 17.5,OT,20,BLK,2100.0,STOLEN,17170,"{'type': 'Point', 'coordinates': (-79.4144255, 43.6400082)}"
-17201,3964,GO-20182361876,THEFT UNDER - BICYCLE,2018-12-25T00:00:00,2018,December,Tuesday,25,359,2,2018-12-26T00:00:00,2018,December,Wednesday,26,360,11,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SCOTT,SUB40,OT,0,GRY,1000.0,STOLEN,17171,"{'type': 'Point', 'coordinates': (-79.39968108, 43.63663014)}"
-17202,3970,GO-20189043786,THEFT UNDER - BICYCLE,2018-12-30T00:00:00,2018,December,Sunday,30,364,13,2018-12-30T00:00:00,2018,December,Sunday,30,364,17,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ECR,TO,16,DGR,2215.0,STOLEN,17172,"{'type': 'Point', 'coordinates': (-79.4166006, 43.6411109)}"
-17203,3974,GO-20189043786,THEFT UNDER - BICYCLE,2018-12-30T00:00:00,2018,December,Sunday,30,364,13,2018-12-30T00:00:00,2018,December,Sunday,30,364,17,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,TO,16,DGR,2200.0,STOLEN,17173,"{'type': 'Point', 'coordinates': (-79.4166006, 43.6411109)}"
-17204,4000,GO-201972016,B&E,2019-01-10T00:00:00,2019,January,Thursday,10,10,17,2019-01-12T00:00:00,2019,January,Saturday,12,12,14,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,RALEIGH,MERIT 3,TO,20,BLU,2000.0,STOLEN,17174,"{'type': 'Point', 'coordinates': (-79.4149791, 43.64143597)}"
-17205,4001,GO-201972016,B&E,2019-01-10T00:00:00,2019,January,Thursday,10,10,17,2019-01-12T00:00:00,2019,January,Saturday,12,12,14,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,LOUIS GARNEAU,SONIX,TO,20,BLU,2000.0,STOLEN,17175,"{'type': 'Point', 'coordinates': (-79.4149791, 43.64143597)}"
-17206,4019,GO-2019150841,B&E,2019-01-14T00:00:00,2019,January,Monday,14,14,9,2019-01-24T00:00:00,2019,January,Thursday,24,24,18,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,SANTA CRUZ,5010,MT,11,ONG,6264.0,STOLEN,17176,"{'type': 'Point', 'coordinates': (-79.41144857, 43.6456996)}"
-17207,4022,GO-20199003461,THEFT UNDER - BICYCLE,2019-01-18T00:00:00,2019,January,Friday,18,18,0,2019-01-25T00:00:00,2019,January,Friday,25,25,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,18,WHI,500.0,STOLEN,17177,"{'type': 'Point', 'coordinates': (-79.4038263, 43.63755765)}"
-17208,4023,GO-20199003461,THEFT UNDER - BICYCLE,2019-01-18T00:00:00,2019,January,Friday,18,18,0,2019-01-25T00:00:00,2019,January,Friday,25,25,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,18,CRM,0.0,STOLEN,17178,"{'type': 'Point', 'coordinates': (-79.4038263, 43.63755765)}"
-17209,4031,GO-20199004200,THEFT UNDER - BICYCLE,2019-02-01T00:00:00,2019,February,Friday,1,32,16,2019-02-01T00:00:00,2019,February,Friday,1,32,16,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,XFR,RG,24,BLK,1200.0,STOLEN,17179,"{'type': 'Point', 'coordinates': (-79.4144255, 43.6400082)}"
-17210,4038,GO-20199004711,THEFT UNDER - BICYCLE,2019-02-05T00:00:00,2019,February,Tuesday,5,36,13,2019-02-07T00:00:00,2019,February,Thursday,7,38,11,D14,Toronto,82,Niagara (82),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,CACTUS,MT,8,GRN,845.0,STOLEN,17180,"{'type': 'Point', 'coordinates': (-79.41170542, 43.64145102)}"
-17211,4039,GO-2019240037,THEFT UNDER - BICYCLE,2019-01-31T00:00:00,2019,January,Thursday,31,31,10,2019-02-07T00:00:00,2019,February,Thursday,7,38,21,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,FELT,NINE80,MT,21,BLKRED,750.0,STOLEN,17181,"{'type': 'Point', 'coordinates': (-79.4144255, 43.6400082)}"
-17212,4041,GO-20199004805,THEFT UNDER - SHOPLIFTING,2019-02-07T00:00:00,2019,February,Thursday,7,38,20,2019-02-08T00:00:00,2019,February,Friday,8,39,9,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,RG,24,BLK,1000.0,STOLEN,17182,"{'type': 'Point', 'coordinates': (-79.4023568, 43.64319258)}"
-17213,4050,GO-20199005486,THEFT UNDER - BICYCLE,2019-02-07T00:00:00,2019,February,Thursday,7,38,1,2019-02-14T00:00:00,2019,February,Thursday,14,45,20,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,CROSS,MT,21,BLK,1400.0,STOLEN,17183,"{'type': 'Point', 'coordinates': (-79.41045766, 43.64169495)}"
-17214,4055,GO-2019307195,THEFT UNDER - BICYCLE,2019-02-16T00:00:00,2019,February,Saturday,16,47,23,2019-02-18T00:00:00,2019,February,Monday,18,49,0,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OPUS,PFAST 4.0,MT,0,BLKWHI,3500.0,STOLEN,17184,"{'type': 'Point', 'coordinates': (-79.40680169, 43.63639142)}"
-17215,4060,GO-20199006307,THEFT UNDER - BICYCLE,2019-02-13T00:00:00,2019,February,Wednesday,13,44,15,2019-02-22T00:00:00,2019,February,Friday,22,53,15,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GI,TALON 2,MT,18,YEL,899.0,STOLEN,17185,"{'type': 'Point', 'coordinates': (-79.41332573, 43.64059562)}"
-17216,4066,GO-20199006515,THEFT UNDER - BICYCLE,2018-10-20T00:00:00,2018,October,Saturday,20,293,22,2019-02-24T00:00:00,2019,February,Sunday,24,55,22,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,NOT SURE,MT,18,SIL,200.0,STOLEN,17186,"{'type': 'Point', 'coordinates': (-79.39999105, 43.63737009)}"
-17217,4084,GO-20199007779,THEFT UNDER - BICYCLE,2019-03-08T00:00:00,2019,March,Friday,8,67,17,2019-03-09T00:00:00,2019,March,Saturday,9,68,17,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GF,NIRVANA,MT,21,SIL,500.0,STOLEN,17187,"{'type': 'Point', 'coordinates': (-79.4144255, 43.6400082)}"
-17218,4087,GO-20199007928,THEFT UNDER - BICYCLE,2019-03-01T00:00:00,2019,March,Friday,1,60,0,2019-03-11T00:00:00,2019,March,Monday,11,70,13,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,CA,16 QUICK 5,RG,16,BLK,770.0,STOLEN,17188,"{'type': 'Point', 'coordinates': (-79.41267012, 43.64191049)}"
-17219,4100,GO-20199008976,THEFT UNDER - BICYCLE,2019-03-01T00:00:00,2019,March,Friday,1,60,15,2019-03-20T00:00:00,2019,March,Wednesday,20,79,15,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,RG,1,BLK,200.0,STOLEN,17189,"{'type': 'Point', 'coordinates': (-79.4166006, 43.6411109)}"
-17220,4103,GO-20199009315,THEFT UNDER - BICYCLE,2018-12-14T00:00:00,2018,December,Friday,14,348,9,2019-03-23T00:00:00,2019,March,Saturday,23,82,9,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,,RG,18,ONG,1500.0,STOLEN,17190,"{'type': 'Point', 'coordinates': (-79.41170542, 43.64145102)}"
-17221,4106,GO-20199009567,THEFT UNDER - BICYCLE,2019-03-23T00:00:00,2019,March,Saturday,23,82,7,2019-03-25T00:00:00,2019,March,Monday,25,84,14,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,FJ,FEATHER,RG,1,RED,700.0,STOLEN,17191,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17222,4120,GO-2019586697,B&E,2019-03-27T00:00:00,2019,March,Wednesday,27,86,16,2019-04-01T00:00:00,2019,April,Monday,1,91,17,D14,Toronto,82,Niagara (82),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,OT,1,WHI,1400.0,STOLEN,17192,"{'type': 'Point', 'coordinates': (-79.4149791, 43.64143597)}"
-17223,4121,GO-2019538672,B&E W'INTENT,2019-03-23T00:00:00,2019,March,Saturday,23,82,0,2019-03-25T00:00:00,2019,March,Monday,25,84,13,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,MT,10,,,STOLEN,17193,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17224,4122,GO-2019538672,B&E W'INTENT,2019-03-23T00:00:00,2019,March,Saturday,23,82,0,2019-03-25T00:00:00,2019,March,Monday,25,84,13,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,,,RG,0,WHI,,STOLEN,17194,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17225,4123,GO-2019538672,B&E W'INTENT,2019-03-23T00:00:00,2019,March,Saturday,23,82,0,2019-03-25T00:00:00,2019,March,Monday,25,84,13,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,,,OT,0,RED,,STOLEN,17195,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17226,4137,GO-2019608240,THEFT UNDER - BICYCLE,2019-04-04T00:00:00,2019,April,Thursday,4,94,18,2019-04-04T00:00:00,2019,April,Thursday,4,94,19,D14,Toronto,82,Niagara (82),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MIELE,UMBRIA 2,OT,24,RED,600.0,STOLEN,17196,"{'type': 'Point', 'coordinates': (-79.40730785, 43.6415952)}"
-17227,4139,GO-20199011032,THEFT UNDER - BICYCLE,2019-04-07T00:00:00,2019,April,Sunday,7,97,20,2019-04-08T00:00:00,2019,April,Monday,8,98,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,KO,ROVE AL,RG,16,BLK,1000.0,STOLEN,17197,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-17228,4151,GO-2019646689,B&E,2019-03-30T00:00:00,2019,March,Saturday,30,89,14,2019-04-10T00:00:00,2019,April,Wednesday,10,100,12,D14,Toronto,82,Niagara (82),"Private Property Structure (Pool, Shed, Detached Garage)",Other,DIAMONDBACK,,MT,15,SIL,1100.0,STOLEN,17198,"{'type': 'Point', 'coordinates': (-79.41332573, 43.64059562)}"
-17229,4166,GO-20199011824,THEFT UNDER,2019-04-13T00:00:00,2019,April,Saturday,13,103,23,2019-04-14T00:00:00,2019,April,Sunday,14,104,14,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,LEAGUE,RG,3,BLU,500.0,STOLEN,17199,"{'type': 'Point', 'coordinates': (-79.39968108, 43.63663014)}"
-17230,4168,GO-20199011976,THEFT UNDER - BICYCLE,2019-04-14T00:00:00,2019,April,Sunday,14,104,4,2019-04-15T00:00:00,2019,April,Monday,15,105,16,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GF,ADVANCE,MT,24,WHI,300.0,STOLEN,17200,"{'type': 'Point', 'coordinates': (-79.40990666, 43.64599574)}"
-17231,4173,GO-20199011976,THEFT UNDER - BICYCLE,2019-04-14T00:00:00,2019,April,Sunday,14,104,4,2019-04-15T00:00:00,2019,April,Monday,15,105,16,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GF,ADVANCE,MT,24,WHI,300.0,STOLEN,17201,"{'type': 'Point', 'coordinates': (-79.40990666, 43.64599574)}"
-17232,4199,GO-20199012974,THEFT UNDER - BICYCLE,2019-04-24T00:00:00,2019,April,Wednesday,24,114,6,2019-04-25T00:00:00,2019,April,Thursday,25,115,9,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,ALLEZ,RC,12,BLK,1300.0,STOLEN,17202,"{'type': 'Point', 'coordinates': (-79.4082535, 43.64348309)}"
-17233,4206,GO-2019694050,B&E,2019-04-14T00:00:00,2019,April,Sunday,14,104,19,2019-04-17T00:00:00,2019,April,Wednesday,17,107,16,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,NO,VALENCE ALUMINU,RC,15,BLK,1800.0,STOLEN,17203,"{'type': 'Point', 'coordinates': (-79.4144255, 43.6400082)}"
-17234,4214,GO-20199013377,THEFT UNDER - BICYCLE,2019-04-28T00:00:00,2019,April,Sunday,28,118,21,2019-04-28T00:00:00,2019,April,Sunday,28,118,21,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,QX75,RG,24,GRY,400.0,STOLEN,17204,"{'type': 'Point', 'coordinates': (-79.4144255, 43.6400082)}"
-17235,4215,GO-20199013394,THEFT UNDER - BICYCLE,2019-03-26T00:00:00,2019,March,Tuesday,26,85,16,2019-04-29T00:00:00,2019,April,Monday,29,119,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,NO,STORM,MT,21,WHI,1000.0,STOLEN,17205,"{'type': 'Point', 'coordinates': (-79.40264178, 43.63743971)}"
-17236,4216,GO-20199013422,THEFT UNDER,2019-04-01T00:00:00,2019,April,Monday,1,91,12,2019-04-29T00:00:00,2019,April,Monday,29,119,12,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,DYNAMO,MT,18,GRN,400.0,STOLEN,17206,"{'type': 'Point', 'coordinates': (-79.40871966, 43.64270265)}"
-17237,4271,GO-20199014877,THEFT UNDER - BICYCLE,2019-05-11T00:00:00,2019,May,Saturday,11,131,9,2019-05-13T00:00:00,2019,May,Monday,13,133,15,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,DB,,BM,1,RED,0.0,STOLEN,17207,"{'type': 'Point', 'coordinates': (-79.41045766, 43.64169495)}"
-17238,4272,GO-20199014877,THEFT UNDER - BICYCLE,2019-05-11T00:00:00,2019,May,Saturday,11,131,9,2019-05-13T00:00:00,2019,May,Monday,13,133,15,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,1,BLK,0.0,STOLEN,17208,"{'type': 'Point', 'coordinates': (-79.41045766, 43.64169495)}"
-17239,15597,GO-20179004794,THEFT UNDER - BICYCLE,2017-04-14T00:00:00,2017,April,Friday,14,104,10,2017-04-17T00:00:00,2017,April,Monday,17,107,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,KO,DEW DELUXE,RG,24,SIL,1000.0,STOLEN,17209,"{'type': 'Point', 'coordinates': (-79.40264178, 43.63743971)}"
-17240,14492,GO-20199003741,THEFT UNDER - BICYCLE,2019-01-04T00:00:00,2019,January,Friday,4,4,9,2019-01-28T00:00:00,2019,January,Monday,28,28,9,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,TRUST,MT,18,BLK,200.0,STOLEN,17210,"{'type': 'Point', 'coordinates': (-79.4144255, 43.6400082)}"
-17241,14495,GO-20199007366,THEFT UNDER - BICYCLE,2019-03-05T00:00:00,2019,March,Tuesday,5,64,17,2019-03-05T00:00:00,2019,March,Tuesday,5,64,20,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,RA,HARLAN,TO,3,BLK,630.0,STOLEN,17211,"{'type': 'Point', 'coordinates': (-79.41045766, 43.64169495)}"
-17242,194,GO-20179004162,B&E,2017-04-02T00:00:00,2017,April,Sunday,2,92,20,2017-04-03T00:00:00,2017,April,Monday,3,93,14,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,TR,STACHE 5,MT,10,TRQ,3000.0,STOLEN,17212,"{'type': 'Point', 'coordinates': (-79.41953608, 43.63849391)}"
-17243,14497,GO-20199008405,THEFT UNDER - BICYCLE,2019-02-27T00:00:00,2019,February,Wednesday,27,58,0,2019-03-15T00:00:00,2019,March,Friday,15,74,21,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KO,,RG,21,DGR,0.0,STOLEN,17213,"{'type': 'Point', 'coordinates': (-79.40235491, 43.63675803)}"
-17244,14498,GO-2019484415,THEFT UNDER - BICYCLE,2019-02-01T00:00:00,2019,February,Friday,1,32,12,2019-03-17T00:00:00,2019,March,Sunday,17,76,10,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,DAWES HAYMAKER,MT,24,,500.0,STOLEN,17214,"{'type': 'Point', 'coordinates': (-79.40537327000001, 43.63616773)}"
-17245,14507,GO-20199012460,THEFT UNDER - BICYCLE,2019-04-05T00:00:00,2019,April,Friday,5,95,17,2019-04-19T00:00:00,2019,April,Friday,19,109,18,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE 2 CITY M,RG,17,OTH,733.0,STOLEN,17215,"{'type': 'Point', 'coordinates': (-79.40767877, 43.64290821)}"
-17246,14511,GO-2019744799,B&E,2019-03-29T00:00:00,2019,March,Friday,29,88,19,2019-04-25T00:00:00,2019,April,Thursday,25,115,14,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GIANT,ROM,MT,24,WHI,800.0,STOLEN,17216,"{'type': 'Point', 'coordinates': (-79.39999105, 43.63737009)}"
-17247,14512,GO-20199013890,B&E,2019-04-22T00:00:00,2019,April,Monday,22,112,11,2019-05-04T00:00:00,2019,May,Saturday,4,124,12,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,AUDACIO 400,RC,18,WHI,2500.0,STOLEN,17217,"{'type': 'Point', 'coordinates': (-79.4166006, 43.6411109)}"
-17248,14517,GO-20199017646,THEFT UNDER - BICYCLE,2019-06-05T00:00:00,2019,June,Wednesday,5,156,17,2019-06-06T00:00:00,2019,June,Thursday,6,157,16,D14,Toronto,82,Niagara (82),Go Station,Transit,MA,DOMINION,RG,1,WHI,500.0,STOLEN,17218,"{'type': 'Point', 'coordinates': (-79.41861725, 43.63533762)}"
-17249,14518,GO-20191043870,B&E,2019-04-29T00:00:00,2019,April,Monday,29,119,12,2019-06-06T00:00:00,2019,June,Thursday,6,157,19,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,VOLT BIKE,,EL,18,BLK,4000.0,STOLEN,17219,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17250,14526,GO-20199020096,B&E,2019-06-25T00:00:00,2019,June,Tuesday,25,176,16,2019-06-25T00:00:00,2019,June,Tuesday,25,176,17,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,KO,,RG,24,GRN,700.0,STOLEN,17220,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17251,14527,GO-20199020096,B&E,2019-06-25T00:00:00,2019,June,Tuesday,25,176,16,2019-06-25T00:00:00,2019,June,Tuesday,25,176,17,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,NO,,RG,24,WHI,700.0,STOLEN,17221,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17252,14546,GO-20199022900,THEFT UNDER,2019-07-19T00:00:00,2019,July,Friday,19,200,4,2019-07-19T00:00:00,2019,July,Friday,19,200,11,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,SC,,RG,32,,549.0,STOLEN,17222,"{'type': 'Point', 'coordinates': (-79.40264178, 43.63743971)}"
-17253,14553,GO-20191442532,B&E,2019-07-20T00:00:00,2019,July,Saturday,20,201,9,2019-08-01T00:00:00,2019,August,Thursday,1,213,20,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,NORCO,MALAHAT,OT,18,GRY,800.0,STOLEN,17223,"{'type': 'Point', 'coordinates': (-79.39968108, 43.63663014)}"
-17254,14563,GO-20199026798,THEFT UNDER - BICYCLE,2019-08-17T00:00:00,2019,August,Saturday,17,229,0,2019-08-19T00:00:00,2019,August,Monday,19,231,11,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RC,10,RED,200.0,STOLEN,17224,"{'type': 'Point', 'coordinates': (-79.40767877, 43.64290821)}"
-17255,14569,GO-20199027810,THEFT UNDER - BICYCLE,2019-08-26T00:00:00,2019,August,Monday,26,238,1,2019-08-27T00:00:00,2019,August,Tuesday,27,239,9,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,40,GRN,800.0,STOLEN,17225,"{'type': 'Point', 'coordinates': (-79.41045766, 43.64169495)}"
-17256,14572,GO-20191676984,B&E,2019-08-24T00:00:00,2019,August,Saturday,24,236,18,2019-09-02T00:00:00,2019,September,Monday,2,245,10,D14,Toronto,82,Niagara (82),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RC,20,RED,3300.0,STOLEN,17226,"{'type': 'Point', 'coordinates': (-79.40524581, 43.64340152)}"
-17257,14574,GO-20191679469,THEFT UNDER - BICYCLE,2019-09-02T00:00:00,2019,September,Monday,2,245,14,2019-09-02T00:00:00,2019,September,Monday,2,245,17,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,MT,18,RED,100.0,STOLEN,17227,"{'type': 'Point', 'coordinates': (-79.41182474, 43.63407409)}"
-17258,14578,GO-20199029525,THEFT UNDER - BICYCLE,2019-09-04T00:00:00,2019,September,Wednesday,4,247,16,2019-09-10T00:00:00,2019,September,Tuesday,10,253,22,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,30,BLK,2700.0,STOLEN,17228,"{'type': 'Point', 'coordinates': (-79.40537327000001, 43.63616773)}"
-17259,14579,GO-20199029525,THEFT UNDER - BICYCLE,2019-09-04T00:00:00,2019,September,Wednesday,4,247,16,2019-09-10T00:00:00,2019,September,Tuesday,10,253,22,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,,TO,30,BLK,1200.0,STOLEN,17229,"{'type': 'Point', 'coordinates': (-79.40537327000001, 43.63616773)}"
-17260,14589,GO-20199033545,THEFT UNDER - BICYCLE,2019-10-04T00:00:00,2019,October,Friday,4,277,22,2019-10-11T00:00:00,2019,October,Friday,11,284,14,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ALIGHT DD CITY,RG,24,GRN,903.0,STOLEN,17230,"{'type': 'Point', 'coordinates': (-79.4166006, 43.6411109)}"
-17261,14593,GO-20199034727,THEFT UNDER - BICYCLE,2019-10-17T00:00:00,2019,October,Thursday,17,290,9,2019-10-21T00:00:00,2019,October,Monday,21,294,22,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,KH,ULTRA SPORT 2.0,RG,8,OTH,800.0,STOLEN,17231,"{'type': 'Point', 'coordinates': (-79.39948839, 43.63339968)}"
-17262,15600,GO-2017685388,THEFT UNDER - BICYCLE,2017-04-14T00:00:00,2017,April,Friday,14,104,9,2017-04-19T00:00:00,2017,April,Wednesday,19,109,9,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GIANT,,RG,18,GRY,1000.0,STOLEN,17232,"{'type': 'Point', 'coordinates': (-79.40128939, 43.63517525)}"
-17263,14595,GO-20199035418,THEFT UNDER - BICYCLE,2019-10-27T00:00:00,2019,October,Sunday,27,300,23,2019-10-27T00:00:00,2019,October,Sunday,27,300,23,D14,Toronto,82,Niagara (82),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,FJ,HELION,RG,3,RED,800.0,STOLEN,17233,"{'type': 'Point', 'coordinates': (-79.41068427, 43.642291)}"
-17264,14596,GO-20199035504,THEFT UNDER - BICYCLE,2019-10-27T00:00:00,2019,October,Sunday,27,300,11,2019-10-28T00:00:00,2019,October,Monday,28,301,11,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,NO,CITY GLIDE,RG,7,TRQ,600.0,STOLEN,17234,"{'type': 'Point', 'coordinates': (-79.41393685, 43.64520426)}"
-17265,14600,GO-20199036365,THEFT UNDER - BICYCLE,2019-10-29T00:00:00,2019,October,Tuesday,29,302,20,2019-11-04T00:00:00,2019,November,Monday,4,308,10,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,TOPSTONE SORA,RG,9,GRN,0.0,STOLEN,17235,"{'type': 'Point', 'coordinates': (-79.39968108, 43.63663014)}"
-17266,14604,GO-20192329916,THEFT UNDER - BICYCLE,2019-11-23T00:00:00,2019,November,Saturday,23,327,9,2019-12-03T00:00:00,2019,December,Tuesday,3,337,9,D14,Toronto,82,Niagara (82),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,CRITICAL CYCLE,OT,1,BLU,300.0,STOLEN,17236,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-17267,14613,GO-2020122925,B&E W'INTENT,2019-12-22T00:00:00,2019,December,Sunday,22,356,0,2020-01-18T00:00:00,2020,January,Saturday,18,18,23,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GIANT,HYBRID CARBON F,OT,21,,3000.0,STOLEN,17237,"{'type': 'Point', 'coordinates': (-79.41045766, 43.64169495)}"
-17268,14618,GO-2020428102,B&E W'INTENT,2020-02-27T00:00:00,2020,February,Thursday,27,58,0,2020-02-29T00:00:00,2020,February,Saturday,29,60,13,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GIANT,FAST ROAD ADVAN,MT,24,BLKRED,3000.0,STOLEN,17238,"{'type': 'Point', 'coordinates': (-79.39948839, 43.63339968)}"
-17269,14619,GO-2020437191,THEFT UNDER - BICYCLE,2020-02-01T00:00:00,2020,February,Saturday,1,32,10,2020-03-01T00:00:00,2020,March,Sunday,1,61,20,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,DOULCE,TO,21,BLUWHI,1500.0,STOLEN,17239,"{'type': 'Point', 'coordinates': (-79.39948839, 43.63339968)}"
-17270,14631,GO-20209012194,THEFT UNDER,2020-04-29T00:00:00,2020,April,Wednesday,29,120,19,2020-04-30T00:00:00,2020,April,Thursday,30,121,8,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,CAMBER 29,MT,27,BLK,3000.0,STOLEN,17240,"{'type': 'Point', 'coordinates': (-79.39948839, 43.63339968)}"
-17271,14640,GO-20209013614,THEFT UNDER,2020-05-15T00:00:00,2020,May,Friday,15,136,15,2020-05-21T00:00:00,2020,May,Thursday,21,142,15,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,GRATER 4,RG,11,BLK,1200.0,STOLEN,17241,"{'type': 'Point', 'coordinates': (-79.40524581, 43.64340152)}"
-17272,14646,GO-20209014219,THEFT UNDER - BICYCLE,2020-05-27T00:00:00,2020,May,Wednesday,27,148,3,2020-05-30T00:00:00,2020,May,Saturday,30,151,5,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,OLD FASHIONED C,RG,3,,500.0,STOLEN,17242,"{'type': 'Point', 'coordinates': (-79.41953608, 43.63849391)}"
-17273,14668,GO-20179010004,THEFT UNDER - BICYCLE,2017-07-11T00:00:00,2017,July,Tuesday,11,192,21,2017-07-12T00:00:00,2017,July,Wednesday,12,193,9,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ALIGHT1,OT,9,PLE,600.0,STOLEN,17243,"{'type': 'Point', 'coordinates': (-79.40537327000001, 43.63616773)}"
-17274,14677,GO-20179011030,THEFT UNDER - BICYCLE,2017-07-24T00:00:00,2017,July,Monday,24,205,21,2017-07-25T00:00:00,2017,July,Tuesday,25,206,21,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,HARPER FIXIE,RG,1,WHI,260.0,STOLEN,17244,"{'type': 'Point', 'coordinates': (-79.41882219, 43.64420339)}"
-17275,14689,GO-20179012513,THEFT UNDER - BICYCLE,2017-08-15T00:00:00,2017,August,Tuesday,15,227,22,2017-08-16T00:00:00,2017,August,Wednesday,16,228,9,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,,,MT,7,,450.0,STOLEN,17245,"{'type': 'Point', 'coordinates': (-79.41332573, 43.64059562)}"
-17276,14690,GO-20179012517,THEFT UNDER - BICYCLE,2017-08-16T00:00:00,2017,August,Wednesday,16,228,8,2017-08-16T00:00:00,2017,August,Wednesday,16,228,9,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,,RG,10,,0.0,STOLEN,17246,"{'type': 'Point', 'coordinates': (-79.40517849, 43.63747213)}"
-17277,14691,GO-20179012589,THEFT UNDER,2017-08-15T00:00:00,2017,August,Tuesday,15,227,22,2017-08-16T00:00:00,2017,August,Wednesday,16,228,22,D14,Toronto,82,Niagara (82),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,OT,1,GRN,160.0,STOLEN,17247,"{'type': 'Point', 'coordinates': (-79.40550604, 43.64405171)}"
-17278,14702,GO-20179013372,THEFT UNDER,2017-08-25T00:00:00,2017,August,Friday,25,237,15,2017-08-25T00:00:00,2017,August,Friday,25,237,19,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,KARAKORAM SPORT,MT,21,BLK,600.0,STOLEN,17248,"{'type': 'Point', 'coordinates': (-79.40083942, 43.63625332)}"
-17279,14713,GO-20171646714,THEFT FROM MOTOR VEHICLE UNDER,2017-09-03T00:00:00,2017,September,Sunday,3,246,19,2017-09-11T00:00:00,2017,September,Monday,11,254,13,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SCHWINN,,MT,0,PLE,500.0,STOLEN,17249,"{'type': 'Point', 'coordinates': (-79.4149791, 43.64143597)}"
-17280,14716,GO-20179014982,THEFT UNDER - BICYCLE,2017-09-16T00:00:00,2017,September,Saturday,16,259,22,2017-09-17T00:00:00,2017,September,Sunday,17,260,9,D14,Toronto,82,Niagara (82),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,,RG,15,,1200.0,STOLEN,17250,"{'type': 'Point', 'coordinates': (-79.40056579, 43.63446271)}"
-17281,14719,GO-20179015198,THEFT UNDER,2017-09-18T00:00:00,2017,September,Monday,18,261,19,2017-09-19T00:00:00,2017,September,Tuesday,19,262,17,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,DEWEY,OT,8,BLK,800.0,STOLEN,17251,"{'type': 'Point', 'coordinates': (-79.4149791, 43.64143597)}"
-17282,14721,GO-20171722673,THEFT UNDER,2017-09-22T00:00:00,2017,September,Friday,22,265,9,2017-09-22T00:00:00,2017,September,Friday,22,265,17,D14,Toronto,82,Niagara (82),"Single Home, House (Attach Garage, Cottage, Mobile)",House,JAMIS,,MT,21,BLK,1000.0,STOLEN,17252,"{'type': 'Point', 'coordinates': (-79.41720467, 43.64099056)}"
-17283,14748,GO-20179021985,FTC PROBATION ORDER,2017-11-21T00:00:00,2017,November,Tuesday,21,325,8,2017-12-12T00:00:00,2017,December,Tuesday,12,346,17,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,21,BLK,600.0,STOLEN,17253,"{'type': 'Point', 'coordinates': (-79.41953608, 43.63849391)}"
-17284,14755,GO-20189001768,THEFT UNDER - BICYCLE,2018-01-18T00:00:00,2018,January,Thursday,18,18,1,2018-01-19T00:00:00,2018,January,Friday,19,19,12,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GI,LIV ROVE-0,RG,21,BLK,800.0,STOLEN,17254,"{'type': 'Point', 'coordinates': (-79.41375783, 43.641679)}"
-17285,14759,GO-20189004304,THEFT UNDER,2018-02-06T00:00:00,2018,February,Tuesday,6,37,19,2018-02-11T00:00:00,2018,February,Sunday,11,42,19,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,ALIGHT 3 (2016),RG,7,TRQ,499.0,STOLEN,17255,"{'type': 'Point', 'coordinates': (-79.41375783, 43.641679)}"
-17286,14777,GO-20189014535,THEFT UNDER - BICYCLE,2018-05-09T00:00:00,2018,May,Wednesday,9,129,17,2018-05-11T00:00:00,2018,May,Friday,11,131,11,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,MADONE 6 SERIES,RC,18,WHI,5000.0,STOLEN,17256,"{'type': 'Point', 'coordinates': (-79.40128939, 43.63517525)}"
-17287,14782,GO-20189015210,THEFT UNDER - BICYCLE,2018-05-16T00:00:00,2018,May,Wednesday,16,136,18,2018-05-16T00:00:00,2018,May,Wednesday,16,136,19,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GI,TALON,MT,21,BLK,1300.0,STOLEN,17257,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17288,14811,GO-20189020438,THEFT UNDER - BICYCLE,2018-06-20T00:00:00,2018,June,Wednesday,20,171,23,2018-06-27T00:00:00,2018,June,Wednesday,27,178,12,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE 3,OT,7,,540.0,STOLEN,17258,"{'type': 'Point', 'coordinates': (-79.4166006, 43.6411109)}"
-17289,14818,GO-20189022047,THEFT UNDER - BICYCLE,2018-07-11T00:00:00,2018,July,Wednesday,11,192,15,2018-07-11T00:00:00,2018,July,Wednesday,11,192,15,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,MILANO,RG,7,BLK,700.0,STOLEN,17259,"{'type': 'Point', 'coordinates': (-79.40128939, 43.63517525)}"
-17290,14832,GO-20189025368,THEFT UNDER - BICYCLE,2018-08-06T00:00:00,2018,August,Monday,6,218,22,2018-08-07T00:00:00,2018,August,Tuesday,7,219,9,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE,OT,30,GRY,1500.0,STOLEN,17260,"{'type': 'Point', 'coordinates': (-79.40767877, 43.64290821)}"
-17291,14836,GO-20189026705,THEFT UNDER,2018-08-02T00:00:00,2018,August,Thursday,2,214,0,2018-08-16T00:00:00,2018,August,Thursday,16,228,19,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,SU,KRSSRDS M,MT,21,GRY,240.0,STOLEN,17261,"{'type': 'Point', 'coordinates': (-79.40111777, 43.63691899)}"
-17292,14841,GO-20181498470,THEFT UNDER - BICYCLE,2018-08-09T00:00:00,2018,August,Thursday,9,221,21,2018-08-18T00:00:00,2018,August,Saturday,18,230,18,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GENESIS,HYBRID,OT,21,PNK,650.0,STOLEN,17262,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-17293,14842,GO-20181498470,THEFT UNDER - BICYCLE,2018-08-09T00:00:00,2018,August,Thursday,9,221,21,2018-08-18T00:00:00,2018,August,Saturday,18,230,18,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CUSTOM,ROAD BIKE,OT,24,GRY,1200.0,STOLEN,17263,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-17294,15309,GO-20149002814,THEFT UNDER,2014-04-13T00:00:00,2014,April,Sunday,13,103,12,2014-04-13T00:00:00,2014,April,Sunday,13,103,18,D14,Toronto,82,Niagara (82),"Open Areas (Lakes, Parks, Rivers)",Outside,RM,RC50,RG,9,GRN,700.0,STOLEN,17264,"{'type': 'Point', 'coordinates': (-79.41315726, 43.64536504)}"
-17295,15318,GO-20149003719,THEFT UNDER,2014-05-27T00:00:00,2014,May,Tuesday,27,147,20,2014-05-31T00:00:00,2014,May,Saturday,31,151,12,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,SLX01 RACEMASTE,RC,10,BLK,3500.0,STOLEN,17265,"{'type': 'Point', 'coordinates': (-79.40767877, 43.64290821)}"
-17296,15326,GO-20149004466,THEFT UNDER,2014-06-20T00:00:00,2014,June,Friday,20,171,20,2014-06-26T00:00:00,2014,June,Thursday,26,177,10,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KH,,MT,18,DGR,800.0,STOLEN,17266,"{'type': 'Point', 'coordinates': (-79.40767877, 43.64290821)}"
-17297,15333,GO-20149004734,THEFT UNDER,2014-07-05T00:00:00,2014,July,Saturday,5,186,19,2014-07-05T00:00:00,2014,July,Saturday,5,186,19,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,KH,KHS ZDCA,MT,21,OTH,579.0,STOLEN,17267,"{'type': 'Point', 'coordinates': (-79.42161579, 43.64147337)}"
-17298,15340,GO-20142588064,THEFT UNDER,2014-07-24T00:00:00,2014,July,Thursday,24,205,2,2014-07-28T00:00:00,2014,July,Monday,28,209,12,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SURLY,STEAM ROLLER,OT,1,BGE,1800.0,STOLEN,17268,"{'type': 'Point', 'coordinates': (-79.40517849, 43.63747213)}"
-17299,15349,GO-20142728130,B&E,2014-07-30T00:00:00,2014,July,Wednesday,30,211,0,2014-08-18T00:00:00,2014,August,Monday,18,230,18,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,TARMAC,RC,0,LBL,3000.0,STOLEN,17269,"{'type': 'Point', 'coordinates': (-79.41267012, 43.64191049)}"
-17300,15358,GO-20142812236,THEFT UNDER,2014-08-31T00:00:00,2014,August,Sunday,31,243,5,2014-08-31T00:00:00,2014,August,Sunday,31,243,10,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,EMMO,,EL,3,WHI,1121.0,STOLEN,17270,"{'type': 'Point', 'coordinates': (-79.40680169, 43.63639142)}"
-17301,15399,GO-20159003265,THEFT UNDER,2014-05-24T00:00:00,2014,May,Saturday,24,144,15,2015-06-01T00:00:00,2015,June,Monday,1,152,19,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,ST. TROPEZ,RC,24,BLK,580.0,STOLEN,17271,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17302,15408,GO-20159003823,THEFT UNDER,2015-06-22T00:00:00,2015,June,Monday,22,173,10,2015-06-22T00:00:00,2015,June,Monday,22,173,10,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,MONTREAL,OT,7,BLK,700.0,STOLEN,17272,"{'type': 'Point', 'coordinates': (-79.40537327000001, 43.63616773)}"
-17303,15419,GO-20159004207,THEFT UNDER,2015-07-04T00:00:00,2015,July,Saturday,4,185,22,2015-07-06T00:00:00,2015,July,Monday,6,187,12,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,,EL,30,BLK,450.0,STOLEN,17273,"{'type': 'Point', 'coordinates': (-79.40767877, 43.64290821)}"
-17304,15421,GO-20159004409,B&E,2015-06-14T00:00:00,2015,June,Sunday,14,165,16,2015-07-10T00:00:00,2015,July,Friday,10,191,21,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,,TO,18,GRY,1200.0,STOLEN,17274,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-17305,15422,GO-20159004409,B&E,2015-06-14T00:00:00,2015,June,Sunday,14,165,16,2015-07-10T00:00:00,2015,July,Friday,10,191,21,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,12,WHI,500.0,STOLEN,17275,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-17306,15430,GO-20159004729,THEFT UNDER,2015-07-15T00:00:00,2015,July,Wednesday,15,196,7,2015-07-20T00:00:00,2015,July,Monday,20,201,7,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,RM,,MT,21,BLU,600.0,STOLEN,17276,"{'type': 'Point', 'coordinates': (-79.40517849, 43.63747213)}"
-17307,15431,GO-20151241756,THEFT UNDER,2015-07-17T00:00:00,2015,July,Friday,17,198,5,2015-07-21T00:00:00,2015,July,Tuesday,21,202,12,D14,Toronto,82,Niagara (82),"Open Areas (Lakes, Parks, Rivers)",Outside,SPECIALIZED,HARD ROCK,MT,21,SIL,700.0,STOLEN,17277,"{'type': 'Point', 'coordinates': (-79.40970023, 43.63468553)}"
-17308,15435,GO-20159005227,THEFT UNDER,2015-07-30T00:00:00,2015,July,Thursday,30,211,11,2015-07-31T00:00:00,2015,July,Friday,31,212,19,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,LONDON,RG,12,SIL,700.0,STOLEN,17278,"{'type': 'Point', 'coordinates': (-79.4166006, 43.6411109)}"
-17309,15442,GO-20159005847,THEFT UNDER,2015-08-14T00:00:00,2015,August,Friday,14,226,22,2015-08-15T00:00:00,2015,August,Saturday,15,227,16,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GI,SEEK 3,RG,21,BLK,600.0,STOLEN,17279,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-17310,15443,GO-20159005867,THEFT UNDER,2015-08-15T00:00:00,2015,August,Saturday,15,227,23,2015-08-16T00:00:00,2015,August,Sunday,16,228,15,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SC,,RG,20,BLU,0.0,STOLEN,17280,"{'type': 'Point', 'coordinates': (-79.40517849, 43.63747213)}"
-17311,15445,GO-20151521660,THEFT UNDER,2015-08-15T00:00:00,2015,August,Saturday,15,227,13,2015-09-03T00:00:00,2015,September,Thursday,3,246,16,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,TREK,TRACK,OT,18,WHI,1000.0,STOLEN,17281,"{'type': 'Point', 'coordinates': (-79.40172265, 43.63837662)}"
-17312,15456,GO-20159007392,THEFT UNDER,2015-09-17T00:00:00,2015,September,Thursday,17,260,6,2015-09-19T00:00:00,2015,September,Saturday,19,262,10,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,15 SEEK 3L BLAC,OT,15,BLK,678.0,STOLEN,17282,"{'type': 'Point', 'coordinates': (-79.42097315, 43.63947205000001)}"
-17313,15460,GO-20151784187,THEFT UNDER,2015-10-10T00:00:00,2015,October,Saturday,10,283,22,2015-10-16T00:00:00,2015,October,Friday,16,289,16,D14,Toronto,82,Niagara (82),"Single Home, House (Attach Garage, Cottage, Mobile)",House,STATE,BIKE,OT,0,BRN,600.0,STOLEN,17283,"{'type': 'Point', 'coordinates': (-79.40953643, 43.64607952)}"
-17314,15464,GO-20159009543,THEFT UNDER,2015-10-31T00:00:00,2015,October,Saturday,31,304,21,2015-11-09T00:00:00,2015,November,Monday,9,313,11,D14,Toronto,82,Niagara (82),"Private Property Structure (Pool, Shed, Detached Garage)",Other,DB,,MT,5,,100.0,STOLEN,17284,"{'type': 'Point', 'coordinates': (-79.40524581, 43.64340152)}"
-17315,15465,GO-20159009604,THEFT UNDER,2015-11-10T00:00:00,2015,November,Tuesday,10,314,15,2015-11-10T00:00:00,2015,November,Tuesday,10,314,18,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,,MT,21,BLU,800.0,STOLEN,17285,"{'type': 'Point', 'coordinates': (-79.41882219, 43.64420339)}"
-17316,15468,GO-20151987093,THEFT UNDER,2015-11-19T00:00:00,2015,November,Thursday,19,323,10,2015-11-19T00:00:00,2015,November,Thursday,19,323,17,D14,Toronto,82,Niagara (82),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,UNKN,OT,0,BLK,800.0,STOLEN,17286,"{'type': 'Point', 'coordinates': (-79.41426424, 43.6429729)}"
-17317,15481,GO-20169001249,THEFT UNDER,2016-01-31T00:00:00,2016,January,Sunday,31,31,16,2016-02-08T00:00:00,2016,February,Monday,8,39,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,DIVERGE A1,RC,8,BLK,1140.0,STOLEN,17287,"{'type': 'Point', 'coordinates': (-79.41144857, 43.6456996)}"
-17318,15484,GO-2016437151,THEFT UNDER,2016-03-13T00:00:00,2016,March,Sunday,13,73,13,2016-03-13T00:00:00,2016,March,Sunday,13,73,13,D14,Toronto,82,Niagara (82),Bar / Restaurant,Commercial,OTHER,M6,FO,6,WHI,2260.0,STOLEN,17288,"{'type': 'Point', 'coordinates': (-79.4060834, 43.64184243)}"
-17319,15488,GO-20169003101,THEFT UNDER,2016-04-01T00:00:00,2016,April,Friday,1,92,16,2016-04-05T00:00:00,2016,April,Tuesday,5,96,16,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,CAFE DELUXE,RG,24,CRM,800.0,STOLEN,17289,"{'type': 'Point', 'coordinates': (-79.41080007, 43.64471563)}"
-17320,15492,GO-20169003636,THEFT UNDER - BICYCLE,2016-04-18T00:00:00,2016,April,Monday,18,109,4,2016-04-20T00:00:00,2016,April,Wednesday,20,111,20,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,1,BLK,800.0,STOLEN,17290,"{'type': 'Point', 'coordinates': (-79.40956504000002, 43.64529628)}"
-17321,15496,GO-2016806943,THEFT UNDER - BICYCLE,2016-05-11T00:00:00,2016,May,Wednesday,11,132,4,2016-05-11T00:00:00,2016,May,Wednesday,11,132,5,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,RG,1,,100.0,STOLEN,17291,"{'type': 'Point', 'coordinates': (-79.40430715, 43.64464636)}"
-17322,15501,GO-20169005085,THEFT UNDER - BICYCLE,2016-05-29T00:00:00,2016,May,Sunday,29,150,2,2016-05-29T00:00:00,2016,May,Sunday,29,150,14,D14,Toronto,82,Niagara (82),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,ESCAPE 2,RG,24,WHI,593.0,STOLEN,17292,"{'type': 'Point', 'coordinates': (-79.40442195, 43.64140672)}"
-17323,15512,GO-20169006050,THEFT UNDER - BICYCLE,2016-06-17T00:00:00,2016,June,Friday,17,169,16,2016-06-20T00:00:00,2016,June,Monday,20,172,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,TR,LEXI SLX,RC,12,OTH,1400.0,STOLEN,17293,"{'type': 'Point', 'coordinates': (-79.4144255, 43.6400082)}"
-17324,15541,GO-20169009153,THEFT UNDER,2016-08-19T00:00:00,2016,August,Friday,19,232,21,2016-08-22T00:00:00,2016,August,Monday,22,235,18,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,21,SIL,2000.0,STOLEN,17294,"{'type': 'Point', 'coordinates': (-79.40128939, 43.63517525)}"
-17325,15542,GO-20169009235,THEFT UNDER,2016-08-19T00:00:00,2016,August,Friday,19,232,22,2016-08-22T00:00:00,2016,August,Monday,22,235,11,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,URBANIA SP3,OT,27,SIL,1100.0,STOLEN,17295,"{'type': 'Point', 'coordinates': (-79.40128939, 43.63517525)}"
-17326,15551,GO-20161604040,THEFT UNDER - BICYCLE,2016-09-09T00:00:00,2016,September,Friday,9,253,12,2016-09-09T00:00:00,2016,September,Friday,9,253,18,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,YORKVILLE,OT,21,GRY,750.0,STOLEN,17296,"{'type': 'Point', 'coordinates': (-79.41393685, 43.64520426)}"
-17327,15554,GO-20169010451,THEFT UNDER,2016-09-12T00:00:00,2016,September,Monday,12,256,20,2016-09-14T00:00:00,2016,September,Wednesday,14,258,14,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,STRIKER TECH TE,MT,21,RED,75.0,STOLEN,17297,"{'type': 'Point', 'coordinates': (-79.40111777, 43.63691899)}"
-17328,15569,GO-20169012376,B&E,2016-10-19T00:00:00,2016,October,Wednesday,19,293,13,2016-10-20T00:00:00,2016,October,Thursday,20,294,22,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,TR,FUEL EX8,MT,10,GRN,3000.0,STOLEN,17298,"{'type': 'Point', 'coordinates': (-79.41626354, 43.64472458)}"
-17329,15574,GO-20161998580,THEFT UNDER - BICYCLE,2016-08-06T00:00:00,2016,August,Saturday,6,219,20,2016-11-10T00:00:00,2016,November,Thursday,10,315,9,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KONA,ROVE A L,OT,10,BLU,1000.0,STOLEN,17299,"{'type': 'Point', 'coordinates': (-79.39999105, 43.63737009)}"
-17330,15582,GO-20179001652,THEFT UNDER - BICYCLE,2017-02-02T00:00:00,2017,February,Thursday,2,33,9,2017-02-07T00:00:00,2017,February,Tuesday,7,38,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,TR,LEXA SLX C,RC,12,BLK,2800.0,STOLEN,17300,"{'type': 'Point', 'coordinates': (-79.41144857, 43.6456996)}"
-17331,15586,GO-20179003323,B&E,2017-03-02T00:00:00,2017,March,Thursday,2,61,5,2017-03-16T00:00:00,2017,March,Thursday,16,75,14,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,STUMPJUMPERFSR,MT,50,WHI,3728.0,STOLEN,17301,"{'type': 'Point', 'coordinates': (-79.40215599, 43.64265388)}"
-17332,15587,GO-20179003504,THEFT UNDER - BICYCLE,2017-03-20T00:00:00,2017,March,Monday,20,79,16,2017-03-20T00:00:00,2017,March,Monday,20,79,17,D14,Toronto,82,Niagara (82),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,RC,11,BLK,2000.0,STOLEN,17302,"{'type': 'Point', 'coordinates': (-79.4082535, 43.64348309)}"
-17333,15591,GO-20179003946,THEFT UNDER - BICYCLE,2017-03-26T00:00:00,2017,March,Sunday,26,85,7,2017-03-28T00:00:00,2017,March,Tuesday,28,87,21,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,FLIGHT LINE SPO,MT,18,GRY,600.0,STOLEN,17303,"{'type': 'Point', 'coordinates': (-79.40264178, 43.63743971)}"
-17334,15593,GO-20179004204,THEFT FROM MOTOR VEHICLE UNDER,2017-04-04T00:00:00,2017,April,Tuesday,4,94,5,2017-04-04T00:00:00,2017,April,Tuesday,4,94,8,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,SYNAPSE,RC,20,PLE,1500.0,STOLEN,17304,"{'type': 'Point', 'coordinates': (-79.40524581, 43.64340152)}"
-17335,15604,GO-20179005854,THEFT UNDER - BICYCLE,2017-05-04T00:00:00,2017,May,Thursday,4,124,1,2017-05-07T00:00:00,2017,May,Sunday,7,127,14,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE CITY,RG,21,BLK,650.0,STOLEN,17305,"{'type': 'Point', 'coordinates': (-79.40680169, 43.63639142)}"
-17336,15615,GO-20179008294,THEFT UNDER - BICYCLE,2017-06-13T00:00:00,2017,June,Tuesday,13,164,18,2017-06-17T00:00:00,2017,June,Saturday,17,168,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE,RG,27,BLK,870.0,STOLEN,17306,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17337,17333,GO-20209014650,THEFT UNDER,2020-06-04T00:00:00,2020,June,Thursday,4,156,22,2020-06-05T00:00:00,2020,June,Friday,5,157,12,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,SIRRUS V,OT,18,BLK,600.0,STOLEN,17307,"{'type': 'Point', 'coordinates': (-79.40138212, 43.64074836)}"
-17338,17347,GO-20209016520,THEFT UNDER,2020-06-20T00:00:00,2020,June,Saturday,20,172,4,2020-06-30T00:00:00,2020,June,Tuesday,30,182,4,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,MA,PALISADE TRAIL,MT,21,GRY,800.0,STOLEN,17308,"{'type': 'Point', 'coordinates': (-79.40517849, 43.63747213)}"
-17339,17360,GO-20209018491,THEFT UNDER,2020-07-18T00:00:00,2020,July,Saturday,18,200,0,2020-07-25T00:00:00,2020,July,Saturday,25,207,0,D14,Toronto,82,Niagara (82),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,ESCAPE 2 DISC L,RG,6,,778.0,STOLEN,17309,"{'type': 'Point', 'coordinates': (-79.40471258, 43.64210995)}"
-17340,17361,GO-20209018616,THEFT UNDER,2020-07-26T00:00:00,2020,July,Sunday,26,208,3,2020-07-26T00:00:00,2020,July,Sunday,26,208,20,D14,Toronto,82,Niagara (82),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CC,PRAGUE WOMENS H,RG,7,PNK,500.0,STOLEN,17310,"{'type': 'Point', 'coordinates': (-79.41277265, 43.64431894)}"
-17341,17365,GO-20209019171,THEFT UNDER,2020-08-01T00:00:00,2020,August,Saturday,1,214,18,2020-08-01T00:00:00,2020,August,Saturday,1,214,21,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ROAM DISC 3,RG,16,BLK,700.0,STOLEN,17311,"{'type': 'Point', 'coordinates': (-79.42097315, 43.63947205000001)}"
-17342,17369,GO-20209019519,THEFT UNDER,2020-08-05T00:00:00,2020,August,Wednesday,5,218,20,2020-08-06T00:00:00,2020,August,Thursday,6,219,9,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,RG,21,BLK,1100.0,STOLEN,17312,"{'type': 'Point', 'coordinates': (-79.40767877, 43.64290821)}"
-17343,17371,GO-20209019681,THEFT UNDER,2020-08-08T00:00:00,2020,August,Saturday,8,221,11,2020-08-08T00:00:00,2020,August,Saturday,8,221,11,D14,Toronto,82,Niagara (82),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,BAD BOY FATTY,MT,24,,1000.0,STOLEN,17313,"{'type': 'Point', 'coordinates': (-79.40918547, 43.644676)}"
-17344,17380,GO-20209021705,THEFT UNDER,2020-08-23T00:00:00,2020,August,Sunday,23,236,15,2020-08-29T00:00:00,2020,August,Saturday,29,242,12,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,IN,MONOCO,RG,7,CRM,400.0,STOLEN,17314,"{'type': 'Point', 'coordinates': (-79.40680169, 43.63639142)}"
-17345,17387,GO-20201666974,B&E,2020-08-20T00:00:00,2020,August,Thursday,20,233,0,2020-09-03T00:00:00,2020,September,Thursday,3,247,17,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,BIANCHI,CL3,OT,0,GRN,1000.0,STOLEN,17315,"{'type': 'Point', 'coordinates': (-79.41045766, 43.64169495)}"
-17346,17388,GO-20209022400,THEFT UNDER,2020-09-03T00:00:00,2020,September,Thursday,3,247,20,2020-09-05T00:00:00,2020,September,Saturday,5,249,12,D14,Toronto,82,Niagara (82),Bar / Restaurant,Commercial,MA,,OT,21,BLK,600.0,STOLEN,17316,"{'type': 'Point', 'coordinates': (-79.40138212, 43.64074836)}"
-17347,17408,GO-20202122139,B&E,2020-11-07T00:00:00,2020,November,Saturday,7,312,13,2020-11-09T00:00:00,2020,November,Monday,9,314,17,D14,Toronto,82,Niagara (82),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,FX3,OT,18,BLK,979.0,STOLEN,17317,"{'type': 'Point', 'coordinates': (-79.41241449, 43.64334015)}"
-17348,17415,GO-20209031477,THEFT UNDER,2020-12-06T00:00:00,2020,December,Sunday,6,341,23,2020-12-08T00:00:00,2020,December,Tuesday,8,343,23,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,TR,MARLIN 5 PURPLE,MT,21,PLE,1000.0,STOLEN,17318,"{'type': 'Point', 'coordinates': (-79.40215599, 43.64265388)}"
-17349,17516,GO-20189032974,THEFT UNDER - BICYCLE,2018-10-04T00:00:00,2018,October,Thursday,4,277,8,2018-10-05T00:00:00,2018,October,Friday,5,278,7,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,RAPID 2,MT,10,GRY,1000.0,STOLEN,17319,"{'type': 'Point', 'coordinates': (-79.41182474, 43.63407409)}"
-17350,17521,GO-20189034739,THEFT UNDER - BICYCLE,2018-10-19T00:00:00,2018,October,Friday,19,292,3,2018-10-19T00:00:00,2018,October,Friday,19,292,14,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,TUONO,RC,21,WHI,500.0,STOLEN,17320,"{'type': 'Point', 'coordinates': (-79.40185545, 43.64191381)}"
-17351,17522,GO-20189034804,THEFT UNDER - BICYCLE,2018-10-17T00:00:00,2018,October,Wednesday,17,290,23,2018-10-19T00:00:00,2018,October,Friday,19,292,23,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,2014 TRAIL 6,OT,24,SIL,300.0,STOLEN,17321,"{'type': 'Point', 'coordinates': (-79.40524581, 43.64340152)}"
-17352,17524,GO-20189037137,THEFT UNDER - BICYCLE,2018-10-28T00:00:00,2018,October,Sunday,28,301,19,2018-11-06T00:00:00,2018,November,Tuesday,6,310,21,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,,RC,21,BLK,1751.0,STOLEN,17322,"{'type': 'Point', 'coordinates': (-79.40680169, 43.63639142)}"
-17353,17529,GO-20189038439,THEFT UNDER - BICYCLE,2018-11-09T00:00:00,2018,November,Friday,9,313,7,2018-11-15T00:00:00,2018,November,Thursday,15,319,21,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,PRIMA,RG,10,BLK,1356.0,STOLEN,17323,"{'type': 'Point', 'coordinates': (-79.40767877, 43.64290821)}"
-17354,17531,GO-20189040248,THEFT UNDER - SHOPLIFTING,2018-11-27T00:00:00,2018,November,Tuesday,27,331,18,2018-11-29T00:00:00,2018,November,Thursday,29,333,15,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,RG,7,PNK,300.0,STOLEN,17324,"{'type': 'Point', 'coordinates': (-79.40204987, 43.63603315)}"
-17355,17532,GO-20189040361,THEFT UNDER - BICYCLE,2018-11-30T00:00:00,2018,November,Friday,30,334,6,2018-11-30T00:00:00,2018,November,Friday,30,334,18,D14,Toronto,82,Niagara (82),Go Station,Transit,RA,4.5,RG,15,BLK,400.0,STOLEN,17325,"{'type': 'Point', 'coordinates': (-79.40978644, 43.63623537)}"
-17356,17533,GO-20189040486,THEFT UNDER,2018-12-01T00:00:00,2018,December,Saturday,1,335,21,2018-12-01T00:00:00,2018,December,Saturday,1,335,21,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,1,,50.0,STOLEN,17326,"{'type': 'Point', 'coordinates': (-79.40264178, 43.63743971)}"
-17357,17543,GO-20199007595,THEFT UNDER - BICYCLE,2019-02-28T00:00:00,2019,February,Thursday,28,59,19,2019-03-07T00:00:00,2019,March,Thursday,7,66,19,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,30,BLK,700.0,STOLEN,17327,"{'type': 'Point', 'coordinates': (-79.40524581, 43.64340152)}"
-17358,17544,GO-20199007618,THEFT UNDER - BICYCLE,2019-02-24T00:00:00,2019,February,Sunday,24,55,12,2019-03-07T00:00:00,2019,March,Thursday,7,66,20,D14,Toronto,82,Niagara (82),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RC,10,,2500.0,STOLEN,17328,"{'type': 'Point', 'coordinates': (-79.41157935, 43.6445462)}"
-17359,17548,GO-20199010236,THEFT UNDER - BICYCLE,2019-03-31T00:00:00,2019,March,Sunday,31,90,18,2019-03-31T00:00:00,2019,March,Sunday,31,90,19,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,SE RACING 17,RG,1,WHI,850.0,STOLEN,17329,"{'type': 'Point', 'coordinates': (-79.41045766, 43.64169495)}"
-17360,17550,GO-2019604195,PROPERTY - FOUND,2019-04-04T00:00:00,2019,April,Thursday,4,94,8,2019-04-04T00:00:00,2019,April,Thursday,4,94,8,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,TREK,3500,MT,21,SIL,,UNKNOWN,17330,"{'type': 'Point', 'coordinates': (-79.39916285, 43.63523601)}"
-17361,17551,GO-20199011207,THEFT UNDER - BICYCLE,2019-01-25T00:00:00,2019,January,Friday,25,25,17,2019-04-09T00:00:00,2019,April,Tuesday,9,99,12,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,KO,DEW,OT,24,BLK,790.0,STOLEN,17331,"{'type': 'Point', 'coordinates': (-79.40517849, 43.63747213)}"
-17362,17552,GO-20199011524,THEFT UNDER - BICYCLE,2019-04-10T00:00:00,2019,April,Wednesday,10,100,0,2019-04-11T00:00:00,2019,April,Thursday,11,101,18,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,GRANDFODO GF01,MT,20,WHI,2500.0,STOLEN,17332,"{'type': 'Point', 'coordinates': (-79.40517849, 43.63747213)}"
-17363,17553,GO-20199011824,THEFT UNDER,2019-04-13T00:00:00,2019,April,Saturday,13,103,23,2019-04-14T00:00:00,2019,April,Sunday,14,104,14,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,LEAGUE,RG,3,BLU,500.0,STOLEN,17333,"{'type': 'Point', 'coordinates': (-79.39968108, 43.63663014)}"
-17364,17554,GO-20199011993,THEFT UNDER - BICYCLE,2019-03-18T00:00:00,2019,March,Monday,18,77,21,2019-04-16T00:00:00,2019,April,Tuesday,16,106,7,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,CC,"WOMENS 26"""" HAR",MT,21,PNK,600.0,STOLEN,17334,"{'type': 'Point', 'coordinates': (-79.40517849, 43.63747213)}"
-17365,17555,GO-20199012021,THEFT UNDER,2019-04-15T00:00:00,2019,April,Monday,15,105,18,2019-04-16T00:00:00,2019,April,Tuesday,16,106,11,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,1,BLK,300.0,STOLEN,17335,"{'type': 'Point', 'coordinates': (-79.4149791, 43.64143597)}"
-17366,17558,GO-20199013424,THEFT UNDER,2019-04-15T00:00:00,2019,April,Monday,15,105,12,2019-04-29T00:00:00,2019,April,Monday,29,119,13,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,CC,,MT,21,BLU,200.0,STOLEN,17336,"{'type': 'Point', 'coordinates': (-79.40871966, 43.64270265)}"
-17367,17563,GO-20199015053,THEFT UNDER - BICYCLE,2019-05-14T00:00:00,2019,May,Tuesday,14,134,15,2019-05-14T00:00:00,2019,May,Tuesday,14,134,19,D14,Toronto,82,Niagara (82),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,,MT,21,BLK,400.0,STOLEN,17337,"{'type': 'Point', 'coordinates': (-79.40372116, 43.64647061)}"
-17368,17568,GO-20199015969,THEFT UNDER,2019-04-23T00:00:00,2019,April,Tuesday,23,113,18,2019-05-22T00:00:00,2019,May,Wednesday,22,142,22,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,LOOKFAR,RG,7,BLU,650.0,STOLEN,17338,"{'type': 'Point', 'coordinates': (-79.42161579, 43.64147337)}"
-17369,17580,GO-20199018920,THEFT UNDER - BICYCLE,2019-06-13T00:00:00,2019,June,Thursday,13,164,11,2019-06-17T00:00:00,2019,June,Monday,17,168,12,D14,Toronto,82,Niagara (82),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CC,,RG,21,BLK,300.0,STOLEN,17339,"{'type': 'Point', 'coordinates': (-79.4082535, 43.64348309)}"
-17370,17585,GO-20199019985,THEFT UNDER - BICYCLE,2019-06-21T00:00:00,2019,June,Friday,21,172,20,2019-06-24T00:00:00,2019,June,Monday,24,175,20,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,KO,,RG,11,BLK,1800.0,STOLEN,17340,"{'type': 'Point', 'coordinates': (-79.39968296, 43.63495137)}"
-17371,17586,GO-20199020017,THEFT UNDER - BICYCLE,2019-06-25T00:00:00,2019,June,Tuesday,25,176,1,2019-06-25T00:00:00,2019,June,Tuesday,25,176,1,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,URBAN 4.0,RG,3,GRY,1350.0,STOLEN,17341,"{'type': 'Point', 'coordinates': (-79.4149791, 43.64143597)}"
-17372,17589,GO-20191221044,B&E,2019-06-28T00:00:00,2019,June,Friday,28,179,18,2019-07-01T00:00:00,2019,July,Monday,1,182,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GIANT,ROAD BIKE,RC,8,BLK,1439.0,STOLEN,17342,"{'type': 'Point', 'coordinates': (-79.39948839, 43.63339968)}"
-17373,17617,GO-20199024890,THEFT UNDER,2019-08-02T00:00:00,2019,August,Friday,2,214,23,2019-08-04T00:00:00,2019,August,Sunday,4,216,9,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,1,BLK,600.0,STOLEN,17343,"{'type': 'Point', 'coordinates': (-79.39968108, 43.63663014)}"
-17374,17629,GO-20199027789,THEFT UNDER - BICYCLE,2019-08-23T00:00:00,2019,August,Friday,23,235,12,2019-08-26T00:00:00,2019,August,Monday,26,238,19,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,2012 UNO RISER,RG,1,BLK,400.0,STOLEN,17344,"{'type': 'Point', 'coordinates': (-79.41045766, 43.64169495)}"
-17375,17631,GO-20199028094,THEFT UNDER,2019-08-19T00:00:00,2019,August,Monday,19,231,7,2019-08-29T00:00:00,2019,August,Thursday,29,241,7,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,,OT,19,,600.0,STOLEN,17345,"{'type': 'Point', 'coordinates': (-79.4023568, 43.64319258)}"
-17376,17632,GO-20199028490,THEFT UNDER,2019-08-22T00:00:00,2019,August,Thursday,22,234,23,2019-09-02T00:00:00,2019,September,Monday,2,245,11,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,6,BLK,250.0,STOLEN,17346,"{'type': 'Point', 'coordinates': (-79.40537327000001, 43.63616773)}"
-17377,17633,GO-20199028658,THEFT UNDER - BICYCLE,2019-08-30T00:00:00,2019,August,Friday,30,242,17,2019-09-03T00:00:00,2019,September,Tuesday,3,246,21,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,SC,GTX-2 700C,OT,21,BLK,560.0,STOLEN,17347,"{'type': 'Point', 'coordinates': (-79.40517849, 43.63747213)}"
-17378,17646,GO-20199032032,THEFT UNDER - BICYCLE,2019-09-25T00:00:00,2019,September,Wednesday,25,268,7,2019-09-30T00:00:00,2019,September,Monday,30,273,7,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,BAD BOY,RG,27,BLK,1350.0,STOLEN,17348,"{'type': 'Point', 'coordinates': (-79.41170542, 43.64145102)}"
-17379,17650,GO-20191956073,B&E,2019-10-10T00:00:00,2019,October,Thursday,10,283,5,2019-10-10T00:00:00,2019,October,Thursday,10,283,11,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,30,BLK,1200.0,STOLEN,17349,"{'type': 'Point', 'coordinates': (-79.41953608, 43.63849391)}"
-17380,17672,GO-20199039106,THEFT UNDER,2019-11-27T00:00:00,2019,November,Wednesday,27,331,23,2019-11-27T00:00:00,2019,November,Wednesday,27,331,23,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,1,GRY,4800.0,STOLEN,17350,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17381,17674,GO-20199039569,THEFT UNDER,2019-12-01T00:00:00,2019,December,Sunday,1,335,20,2019-12-02T00:00:00,2019,December,Monday,2,336,21,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RM,THIN AIR,MT,21,RED,0.0,STOLEN,17351,"{'type': 'Point', 'coordinates': (-79.41523931, 43.64211694)}"
-17382,17678,GO-20192520014,B&E,2019-12-24T00:00:00,2019,December,Tuesday,24,358,15,2019-12-31T00:00:00,2019,December,Tuesday,31,365,17,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OPUS,ALLEGRO 4.0,RC,20,BLKGLD,2050.0,STOLEN,17352,"{'type': 'Point', 'coordinates': (-79.41402706, 43.64236689)}"
-17383,17679,GO-20192520014,B&E,2019-12-24T00:00:00,2019,December,Tuesday,24,358,15,2019-12-31T00:00:00,2019,December,Tuesday,31,365,17,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,MIELE,SVELTO RDD,RC,0,WHI,1679.0,STOLEN,17353,"{'type': 'Point', 'coordinates': (-79.41402706, 43.64236689)}"
-17384,17684,GO-20209001860,B&E,2020-01-11T00:00:00,2020,January,Saturday,11,11,6,2020-01-16T00:00:00,2020,January,Thursday,16,16,15,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,TR,TREK 4900,MT,24,BLU,0.0,STOLEN,17354,"{'type': 'Point', 'coordinates': (-79.39968296, 43.63495137)}"
-17385,17699,GO-20209007558,THEFT UNDER - BICYCLE,2020-03-02T00:00:00,2020,March,Monday,2,62,9,2020-03-03T00:00:00,2020,March,Tuesday,3,63,1,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,MILANO,RG,21,BLK,500.0,STOLEN,17355,"{'type': 'Point', 'coordinates': (-79.41953608, 43.63849391)}"
-17386,17706,GO-20209011436,THEFT UNDER - BICYCLE,2020-04-11T00:00:00,2020,April,Saturday,11,102,15,2020-04-18T00:00:00,2020,April,Saturday,18,109,17,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,CROSSROAD S/T,RG,21,DBL,750.0,STOLEN,17356,"{'type': 'Point', 'coordinates': (-79.40537327000001, 43.63616773)}"
-17387,17714,GO-20171524065,THEFT UNDER - BICYCLE,2017-08-18T00:00:00,2017,August,Friday,18,230,23,2017-08-23T00:00:00,2017,August,Wednesday,23,235,10,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MIELE,,OT,21,BLU,500.0,STOLEN,17357,"{'type': 'Point', 'coordinates': (-79.40767877, 43.64290821)}"
-17388,17750,GO-20179018133,THEFT UNDER - BICYCLE,2017-10-24T00:00:00,2017,October,Tuesday,24,297,18,2017-10-25T00:00:00,2017,October,Wednesday,25,298,11,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,17 RAPID 3 ML B,RG,21,BLK,1400.0,STOLEN,17358,"{'type': 'Point', 'coordinates': (-79.40517849, 43.63747213)}"
-17389,17797,GO-20189012224,THEFT UNDER,2018-04-20T00:00:00,2018,April,Friday,20,110,8,2018-04-20T00:00:00,2018,April,Friday,20,110,9,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,SOLOIST ALLOY,RG,1,,500.0,STOLEN,17359,"{'type': 'Point', 'coordinates': (-79.40524581, 43.64340152)}"
-17390,17800,GO-20189012594,THEFT UNDER,2018-04-21T00:00:00,2018,April,Saturday,21,111,14,2018-04-23T00:00:00,2018,April,Monday,23,113,20,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,FUJI,ALOHA,RC,18,WHI,1000.0,RECOVERED,17360,"{'type': 'Point', 'coordinates': (-79.40128939, 43.63517525)}"
-17391,17801,GO-20189013197,THEFT UNDER - BICYCLE,2018-04-09T00:00:00,2018,April,Monday,9,99,23,2018-04-28T00:00:00,2018,April,Saturday,28,118,23,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RG,18,BLK,1000.0,STOLEN,17361,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-17392,17805,GO-20189013507,THEFT UNDER - BICYCLE,2018-05-01T00:00:00,2018,May,Tuesday,1,121,16,2018-05-02T00:00:00,2018,May,Wednesday,2,122,0,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,LEXA S C,RG,9,BLK,1000.0,STOLEN,17362,"{'type': 'Point', 'coordinates': (-79.42161579, 43.64147337)}"
-17393,17816,GO-20189016499,THEFT UNDER - BICYCLE,2018-05-26T00:00:00,2018,May,Saturday,26,146,12,2018-05-28T00:00:00,2018,May,Monday,28,148,12,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RA,,MT,14,GRY,300.0,STOLEN,17363,"{'type': 'Point', 'coordinates': (-79.40215599, 43.64265388)}"
-17394,17821,GO-20189017188,THEFT UNDER - BICYCLE,2018-06-03T00:00:00,2018,June,Sunday,3,154,11,2018-06-03T00:00:00,2018,June,Sunday,3,154,18,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,TR,30,RED,500.0,STOLEN,17364,"{'type': 'Point', 'coordinates': (-79.39968108, 43.63663014)}"
-17395,17830,GO-20189018714,THEFT UNDER,2018-06-13T00:00:00,2018,June,Wednesday,13,164,11,2018-06-14T00:00:00,2018,June,Thursday,14,165,15,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,PHOENIX,UN,1,RED,545.0,STOLEN,17365,"{'type': 'Point', 'coordinates': (-79.40128939, 43.63517525)}"
-17396,17836,GO-20189019713,THEFT UNDER - BICYCLE,2018-06-20T00:00:00,2018,June,Wednesday,20,171,17,2018-06-21T00:00:00,2018,June,Thursday,21,172,19,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,FJ,ROUBAIX,RC,14,RED,1000.0,STOLEN,17366,"{'type': 'Point', 'coordinates': (-79.40767877, 43.64290821)}"
-17397,17837,GO-20189019577,THEFT UNDER - SHOPLIFTING,2018-06-18T00:00:00,2018,June,Monday,18,169,0,2018-06-21T00:00:00,2018,June,Thursday,21,172,8,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,WIND,EL,32,WHI,2000.0,STOLEN,17367,"{'type': 'Point', 'coordinates': (-79.40442195, 43.64140672)}"
-17398,17866,GO-20189024451,THEFT UNDER - BICYCLE,2018-07-28T00:00:00,2018,July,Saturday,28,209,16,2018-07-29T00:00:00,2018,July,Sunday,29,210,18,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM 3 (2017),RG,24,BLK,800.0,STOLEN,17368,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-17399,17867,GO-20189024451,THEFT UNDER - BICYCLE,2018-07-28T00:00:00,2018,July,Saturday,28,209,16,2018-07-29T00:00:00,2018,July,Sunday,29,210,18,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GI,ROVE3 2017,RG,24,BLU,800.0,STOLEN,17369,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-17400,17880,GO-20189026102,THEFT UNDER - BICYCLE,2018-08-10T00:00:00,2018,August,Friday,10,222,20,2018-08-12T00:00:00,2018,August,Sunday,12,224,21,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,CA,17 QUICK 7 BBQ,RG,21,BLK,700.0,STOLEN,17370,"{'type': 'Point', 'coordinates': (-79.41426424, 43.6429729)}"
-17401,17883,GO-20189026495,THEFT UNDER - BICYCLE,2018-08-03T00:00:00,2018,August,Friday,3,215,14,2018-08-15T00:00:00,2018,August,Wednesday,15,227,14,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,UNSURE,RC,9,SIL,1000.0,STOLEN,17371,"{'type': 'Point', 'coordinates': (-79.40517849, 43.63747213)}"
-17402,17884,GO-20181514165,B&E,2018-07-17T00:00:00,2018,July,Tuesday,17,198,9,2018-08-17T00:00:00,2018,August,Friday,17,229,6,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,CANNONDALE,SYNAPSE CRB,RG,15,BLK,5479.0,STOLEN,17372,"{'type': 'Point', 'coordinates': (-79.40537327000001, 43.63616773)}"
-17403,17885,GO-20189026765,THEFT UNDER - BICYCLE,2018-08-16T00:00:00,2018,August,Thursday,16,228,15,2018-08-17T00:00:00,2018,August,Friday,17,229,11,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GI,ANYROAD,RC,18,DBL,1600.0,STOLEN,17373,"{'type': 'Point', 'coordinates': (-79.39832559, 43.63567355)}"
-17404,17897,GO-20189029015,THEFT UNDER - BICYCLE,2018-08-30T00:00:00,2018,August,Thursday,30,242,23,2018-09-04T00:00:00,2018,September,Tuesday,4,247,11,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,,650.0,STOLEN,17374,"{'type': 'Point', 'coordinates': (-79.40128939, 43.63517525)}"
-17405,17901,GO-20189029523,THEFT UNDER - BICYCLE,2018-09-07T00:00:00,2018,September,Friday,7,250,16,2018-09-07T00:00:00,2018,September,Friday,7,250,20,D14,Toronto,82,Niagara (82),Convenience Stores,Commercial,OT,,MT,24,GRY,500.0,STOLEN,17375,"{'type': 'Point', 'coordinates': (-79.39832559, 43.63567355)}"
-17406,17913,GO-20189032038,THEFT UNDER - BICYCLE,2018-09-24T00:00:00,2018,September,Monday,24,267,17,2018-09-26T00:00:00,2018,September,Wednesday,26,269,18,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,VISCOUNT,RG,1,CRM,500.0,STOLEN,17376,"{'type': 'Point', 'coordinates': (-79.4149791, 43.64143597)}"
-17407,18080,GO-20179009001,THEFT UNDER - BICYCLE,2017-06-25T00:00:00,2017,June,Sunday,25,176,23,2017-06-27T00:00:00,2017,June,Tuesday,27,178,11,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,,TO,3,PNK,279.0,STOLEN,17377,"{'type': 'Point', 'coordinates': (-79.4149791, 43.64143597)}"
-17408,18081,GO-20179009097,THEFT UNDER - BICYCLE,2017-06-27T00:00:00,2017,June,Tuesday,27,178,17,2017-06-28T00:00:00,2017,June,Wednesday,28,179,14,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,LANGSTER NY,RC,1,YEL,900.0,STOLEN,17378,"{'type': 'Point', 'coordinates': (-79.4166006, 43.6411109)}"
-17409,18085,GO-20179009628,THEFT UNDER - BICYCLE,2017-07-05T00:00:00,2017,July,Wednesday,5,186,22,2017-07-07T00:00:00,2017,July,Friday,7,188,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,NO,CHARGER 9.3 (20,MT,21,BLU,1200.0,STOLEN,17379,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17410,18089,GO-20179010022,THEFT UNDER - BICYCLE,2017-06-18T00:00:00,2017,June,Sunday,18,169,11,2017-07-12T00:00:00,2017,July,Wednesday,12,193,12,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GI,IGUANA,MT,21,BRN,900.0,STOLEN,17380,"{'type': 'Point', 'coordinates': (-79.39968108, 43.63663014)}"
-17411,18109,GO-20179012584,THEFT UNDER - BICYCLE,2017-08-16T00:00:00,2017,August,Wednesday,16,228,9,2017-08-16T00:00:00,2017,August,Wednesday,16,228,21,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,ALLEGRO2,RG,21,BLK,600.0,STOLEN,17381,"{'type': 'Point', 'coordinates': (-79.40372116, 43.64647061)}"
-17412,18115,GO-20179012964,THEFT UNDER - BICYCLE,2017-08-21T00:00:00,2017,August,Monday,21,233,7,2017-08-21T00:00:00,2017,August,Monday,21,233,18,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,CTM HYBRID,MT,21,BLK,500.0,STOLEN,17382,"{'type': 'Point', 'coordinates': (-79.4144255, 43.6400082)}"
-17413,18117,GO-20161109671,B&E W'INTENT,2016-06-19T00:00:00,2016,June,Sunday,19,171,16,2016-06-25T00:00:00,2016,June,Saturday,25,177,8,D14,Toronto,82,Niagara (82),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,,RG,21,SIL,500.0,STOLEN,17383,"{'type': 'Point', 'coordinates': (-79.41720467, 43.64099056)}"
-17414,18127,GO-20169007396,THEFT UNDER - BICYCLE,2016-07-14T00:00:00,2016,July,Thursday,14,196,10,2016-07-19T00:00:00,2016,July,Tuesday,19,201,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,TRICROSS 2014,RC,18,BLK,1300.0,STOLEN,17384,"{'type': 'Point', 'coordinates': (-79.41138445, 43.63917336)}"
-17415,18139,GO-20161487092,THEFT UNDER - BICYCLE,2016-08-19T00:00:00,2016,August,Friday,19,232,22,2016-08-22T00:00:00,2016,August,Monday,22,235,14,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,,MT,22,SIL,2000.0,STOLEN,17385,"{'type': 'Point', 'coordinates': (-79.40128939, 43.63517525)}"
-17416,18143,GO-20169009609,THEFT UNDER - BICYCLE,2016-08-24T00:00:00,2016,August,Wednesday,24,237,13,2016-08-28T00:00:00,2016,August,Sunday,28,241,13,D14,Toronto,82,Niagara (82),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,CRUISE BIKE,TO,25,WHI,1700.0,STOLEN,17386,"{'type': 'Point', 'coordinates': (-79.39948839, 43.63339968)}"
-17417,18145,GO-20169009891,THEFT UNDER - BICYCLE,2016-09-02T00:00:00,2016,September,Friday,2,246,19,2016-09-02T00:00:00,2016,September,Friday,2,246,20,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,,OT,3,,600.0,STOLEN,17387,"{'type': 'Point', 'coordinates': (-79.42161579, 43.64147337)}"
-17418,18146,GO-20169009937,B&E,2016-08-31T00:00:00,2016,August,Wednesday,31,244,19,2016-09-04T00:00:00,2016,September,Sunday,4,248,11,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,21,WHI,320.0,STOLEN,17388,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17419,18147,GO-20169009937,B&E,2016-08-31T00:00:00,2016,August,Wednesday,31,244,19,2016-09-04T00:00:00,2016,September,Sunday,4,248,11,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,21,BLK,430.0,STOLEN,17389,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17420,18150,GO-20169010344,FTC PROBATION ORDER,2016-09-12T00:00:00,2016,September,Monday,12,256,9,2016-09-13T00:00:00,2016,September,Tuesday,13,257,9,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,CA,CAAD 10,RC,20,WHI,1500.0,STOLEN,17390,"{'type': 'Point', 'coordinates': (-79.39999105, 43.63737009)}"
-17421,18169,GO-20169011888,THEFT UNDER,2016-10-02T00:00:00,2016,October,Sunday,2,276,0,2016-10-11T00:00:00,2016,October,Tuesday,11,285,17,D14,Toronto,82,Niagara (82),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,S,TO,7,GRY,600.0,STOLEN,17391,"{'type': 'Point', 'coordinates': (-79.40680169, 43.63639142)}"
-17422,18170,GO-20169012174,THEFT UNDER,2016-10-14T00:00:00,2016,October,Friday,14,288,20,2016-10-17T00:00:00,2016,October,Monday,17,291,13,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GT,,TO,24,BLU,1200.0,STOLEN,17392,"{'type': 'Point', 'coordinates': (-79.41393685, 43.64520426)}"
-17423,18174,GO-20169012722,THEFT UNDER - BICYCLE,2016-10-28T00:00:00,2016,October,Friday,28,302,8,2016-10-28T00:00:00,2016,October,Friday,28,302,17,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,WOMEN BLACK PEA,RG,16,BLK,600.0,STOLEN,17393,"{'type': 'Point', 'coordinates': (-79.40372116, 43.64647061)}"
-17424,18176,GO-20161943422,THEFT UNDER - BICYCLE,2016-08-28T00:00:00,2016,August,Sunday,28,241,15,2016-11-01T00:00:00,2016,November,Tuesday,1,306,16,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,LEADER,,OT,0,SIL,2000.0,STOLEN,17394,"{'type': 'Point', 'coordinates': (-79.4149791, 43.64143597)}"
-17425,18183,GO-20179001378,THEFT UNDER - BICYCLE,2017-01-27T00:00:00,2017,January,Friday,27,27,18,2017-01-31T00:00:00,2017,January,Tuesday,31,31,13,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,NO,REVOLVER 7.3HT,MT,11,BLK,4000.0,STOLEN,17395,"{'type': 'Point', 'coordinates': (-79.41523931, 43.64211694)}"
-17426,18184,GO-20179001538,THEFT UNDER - BICYCLE,2017-01-01T00:00:00,2017,January,Sunday,1,1,9,2017-02-04T00:00:00,2017,February,Saturday,4,35,9,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,TARMAC,RC,20,BLK,4500.0,STOLEN,17396,"{'type': 'Point', 'coordinates': (-79.40128939, 43.63517525)}"
-17427,18185,GO-20179001652,THEFT UNDER - BICYCLE,2017-02-02T00:00:00,2017,February,Thursday,2,33,9,2017-02-07T00:00:00,2017,February,Tuesday,7,38,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,TR,LAXA SLX,RC,12,BLK,2800.0,STOLEN,17397,"{'type': 'Point', 'coordinates': (-79.41144857, 43.6456996)}"
-17428,18190,GO-20179003333,THEFT UNDER,2017-03-11T00:00:00,2017,March,Saturday,11,70,17,2017-03-16T00:00:00,2017,March,Thursday,16,75,21,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,1,WHI,400.0,STOLEN,17398,"{'type': 'Point', 'coordinates': (-79.4038263, 43.63755765)}"
-17429,18201,GO-20179005740,THEFT UNDER - BICYCLE,2017-05-03T00:00:00,2017,May,Wednesday,3,123,15,2017-05-04T00:00:00,2017,May,Thursday,4,124,19,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,RM,,TO,24,BLK,679.0,STOLEN,17399,"{'type': 'Point', 'coordinates': (-79.40517849, 43.63747213)}"
-17430,18215,GO-20171016284,THEFT OF EBIKE UNDER $5000,2017-06-07T00:00:00,2017,June,Wednesday,7,158,19,2017-06-08T00:00:00,2017,June,Thursday,8,159,10,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,MOTORINO,EL,1,BLK,2300.0,STOLEN,17400,"{'type': 'Point', 'coordinates': (-79.40730785, 43.6415952)}"
-17431,9874,GO-20151062996,THEFT UNDER,2015-06-01T00:00:00,2015,June,Monday,1,152,10,2015-06-24T00:00:00,2015,June,Wednesday,24,175,11,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,OT,0,,,STOLEN,17401,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-17432,206,GO-2017628485,THEFT UNDER - BICYCLE,2017-04-09T00:00:00,2017,April,Sunday,9,99,21,2017-04-09T00:00:00,2017,April,Sunday,9,99,22,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,TO,1,BLK,500.0,STOLEN,17402,"{'type': 'Point', 'coordinates': (-79.41075021, 43.64584583)}"
-17433,20826,GO-20209027808,THEFT UNDER,2020-10-17T00:00:00,2020,October,Saturday,17,291,0,2020-10-26T00:00:00,2020,October,Monday,26,300,21,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,GI,RAPID,TO,21,SIL,1200.0,STOLEN,17403,"{'type': 'Point', 'coordinates': (-79.42013894, 43.64783378)}"
-17434,18319,GO-20149002607,THEFT UNDER,2013-03-18T00:00:00,2013,March,Monday,18,77,14,2014-04-07T00:00:00,2014,April,Monday,7,97,12,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,SPEEDSTER,RC,18,RED,860.0,RECOVERED,17404,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-17435,6874,GO-20209019446,THEFT UNDER,2020-08-04T00:00:00,2020,August,Tuesday,4,217,12,2020-08-05T00:00:00,2020,August,Wednesday,5,218,14,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,NO,,RG,7,GRY,0.0,STOLEN,17405,"{'type': 'Point', 'coordinates': (-79.4149791, 43.64143597)}"
-17436,9911,GO-20151100165,THEFT UNDER,2015-06-29T00:00:00,2015,June,Monday,29,180,18,2015-06-30T00:00:00,2015,June,Tuesday,30,181,12,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,TREK,7.1FX,OT,21,GRY,500.0,STOLEN,17406,"{'type': 'Point', 'coordinates': (-79.40537327000001, 43.63616773)}"
-17437,9932,GO-20151118869,THEFT UNDER,2015-07-02T00:00:00,2015,July,Thursday,2,183,22,2015-07-03T00:00:00,2015,July,Friday,3,184,10,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,CHANCE,OT,11,REDSIL,1300.0,STOLEN,17407,"{'type': 'Point', 'coordinates': (-79.40524581, 43.64340152)}"
-17438,9979,GO-20159004363,THEFT UNDER,2015-07-06T00:00:00,2015,July,Monday,6,187,18,2015-07-09T00:00:00,2015,July,Thursday,9,190,22,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,SU,,MT,21,ONG,250.0,STOLEN,17408,"{'type': 'Point', 'coordinates': (-79.40266560000002, 43.64392483)}"
-17439,9997,GO-20151186163,THEFT OVER,2015-07-10T00:00:00,2015,July,Friday,10,191,12,2015-07-13T00:00:00,2015,July,Monday,13,194,13,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,ARGON 18,NITROGEN KIT 2,RC,18,BLKRED,5500.0,STOLEN,17409,"{'type': 'Point', 'coordinates': (-79.40372116, 43.64647061)}"
-17440,10003,GO-20159004522,THEFT UNDER,2015-07-09T00:00:00,2015,July,Thursday,9,190,20,2015-07-13T00:00:00,2015,July,Monday,13,194,20,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,SC,HYBRID,RG,21,PLE,300.0,STOLEN,17410,"{'type': 'Point', 'coordinates': (-79.40172265, 43.63837662)}"
-17441,10023,GO-20159004593,THEFT UNDER,2015-07-11T00:00:00,2015,July,Saturday,11,192,15,2015-07-15T00:00:00,2015,July,Wednesday,15,196,17,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,QUICK 6,OT,18,GRY,500.0,STOLEN,17411,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17442,10031,GO-20151199726,THEFT UNDER,2015-07-14T00:00:00,2015,July,Tuesday,14,195,22,2015-07-15T00:00:00,2015,July,Wednesday,15,196,11,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,BMX,BM,1,RED,200.0,STOLEN,17412,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17443,10119,GO-20159005072,THEFT UNDER,2015-07-24T00:00:00,2015,July,Friday,24,205,2,2015-07-28T00:00:00,2015,July,Tuesday,28,209,10,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,MENSA,MT,24,CRM,400.0,STOLEN,17413,"{'type': 'Point', 'coordinates': (-79.40767084, 43.64646816)}"
-17444,10287,GO-20159005933,THEFT UNDER,2015-08-16T00:00:00,2015,August,Sunday,16,228,15,2015-08-17T00:00:00,2015,August,Monday,17,229,17,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,15,BLK,599.0,STOLEN,17414,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17445,10295,GO-20159005966,THEFT UNDER,2015-08-15T00:00:00,2015,August,Saturday,15,227,12,2015-08-18T00:00:00,2015,August,Tuesday,18,230,13,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,REVOLT O,MT,11,,2500.0,STOLEN,17415,"{'type': 'Point', 'coordinates': (-79.40517849, 43.63747213)}"
-17446,10307,GO-20159006010,THEFT UNDER,2015-08-18T00:00:00,2015,August,Tuesday,18,230,17,2015-08-19T00:00:00,2015,August,Wednesday,19,231,16,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,QUICK CX 4,MT,16,BLK,800.0,STOLEN,17416,"{'type': 'Point', 'coordinates': (-79.40128939, 43.63517525)}"
-17447,10322,GO-20159006177,THEFT UNDER,2015-08-25T00:00:00,2015,August,Tuesday,25,237,18,2015-08-26T00:00:00,2015,August,Wednesday,26,238,14,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,TOSCA,RC,10,BLU,2500.0,STOLEN,17417,"{'type': 'Point', 'coordinates': (-79.41095078, 43.64468599)}"
-17448,10332,GO-20159006265,THEFT UNDER,2015-08-21T00:00:00,2015,August,Friday,21,233,1,2015-08-21T00:00:00,2015,August,Friday,21,233,1,D14,Toronto,82,Niagara (82),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,ALLANT,RG,7,BLK,700.0,STOLEN,17418,"{'type': 'Point', 'coordinates': (-79.40185545, 43.64191381)}"
-17449,10345,GO-20151499060,THEFT UNDER,2015-08-19T00:00:00,2015,August,Wednesday,19,231,20,2015-08-31T00:00:00,2015,August,Monday,31,243,10,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,,OT,0,WHIBLU,1000.0,STOLEN,17419,"{'type': 'Point', 'coordinates': (-79.40172265, 43.63837662)}"
-17450,10402,GO-20159006758,THEFT UNDER,2015-08-01T00:00:00,2015,August,Saturday,1,213,11,2015-09-04T00:00:00,2015,September,Friday,4,247,13,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,NO,STORM 9.2,MT,24,GRY,600.0,STOLEN,17420,"{'type': 'Point', 'coordinates': (-79.4144255, 43.6400082)}"
-17451,10404,GO-20159006760,THEFT UNDER,2015-09-02T00:00:00,2015,September,Wednesday,2,245,2,2015-09-04T00:00:00,2015,September,Friday,4,247,15,D14,Toronto,82,Niagara (82),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,,RG,18,BLU,0.0,RECOVERED,17421,"{'type': 'Point', 'coordinates': (-79.40372116, 43.64647061)}"
-17452,10409,GO-20151545603,THEFT UNDER,2015-09-04T00:00:00,2015,September,Friday,4,247,18,2015-09-07T00:00:00,2015,September,Monday,7,250,16,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,TREK,,RC,14,GRY,1200.0,STOLEN,17422,"{'type': 'Point', 'coordinates': (-79.40128939, 43.63517525)}"
-17453,10415,GO-20159006833,THEFT UNDER,2015-08-13T00:00:00,2015,August,Thursday,13,225,18,2015-09-06T00:00:00,2015,September,Sunday,6,249,18,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,SC,SHWINN,MT,20,WHI,500.0,STOLEN,17423,"{'type': 'Point', 'coordinates': (-79.39916285, 43.63523601)}"
-17454,10461,GO-20151569110,THEFT UNDER,2015-09-11T00:00:00,2015,September,Friday,11,254,3,2015-09-11T00:00:00,2015,September,Friday,11,254,9,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,96062,OT,1,BLKRED,200.0,STOLEN,17424,"{'type': 'Point', 'coordinates': (-79.41045766, 43.64169495)}"
-17455,10462,GO-20151569110,THEFT UNDER,2015-09-11T00:00:00,2015,September,Friday,11,254,3,2015-09-11T00:00:00,2015,September,Friday,11,254,9,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GT,AVALANCHE,MT,21,BLKGRN,1000.0,STOLEN,17425,"{'type': 'Point', 'coordinates': (-79.41045766, 43.64169495)}"
-17456,10488,GO-20159007354,THEFT UNDER,2015-09-10T00:00:00,2015,September,Thursday,10,253,12,2015-09-18T00:00:00,2015,September,Friday,18,261,11,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,SPORTSTER,MT,21,BLK,540.0,STOLEN,17426,"{'type': 'Point', 'coordinates': (-79.40524581, 43.64340152)}"
-17457,10513,GO-20151623466,THEFT UNDER,2015-09-19T00:00:00,2015,September,Saturday,19,262,14,2015-09-19T00:00:00,2015,September,Saturday,19,262,21,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NISHIKI,OLYMPIC TRI A,OT,12,BLUPNK,300.0,STOLEN,17427,"{'type': 'Point', 'coordinates': (-79.40537327000001, 43.63616773)}"
-17458,10539,GO-20159007700,THEFT UNDER,2015-09-23T00:00:00,2015,September,Wednesday,23,266,9,2015-09-24T00:00:00,2015,September,Thursday,24,267,14,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,NO,XFR2 FORMA,OT,20,WHI,1250.0,STOLEN,17428,"{'type': 'Point', 'coordinates': (-79.41045766, 43.64169495)}"
-17459,10548,GO-20159007761,THEFT UNDER,2015-09-25T00:00:00,2015,September,Friday,25,268,14,2015-09-25T00:00:00,2015,September,Friday,25,268,19,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,1,OTH,2000.0,STOLEN,17429,"{'type': 'Point', 'coordinates': (-79.41241449, 43.64334015)}"
-17460,10567,GO-20159007951,THEFT UNDER,2015-09-29T00:00:00,2015,September,Tuesday,29,272,9,2015-09-30T00:00:00,2015,September,Wednesday,30,273,10,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,,RG,1,WHI,300.0,STOLEN,17430,"{'type': 'Point', 'coordinates': (-79.4166006, 43.6411109)}"
-17461,10585,GO-20151708801,THEFT UNDER,2015-09-28T00:00:00,2015,September,Monday,28,271,22,2015-10-03T00:00:00,2015,October,Saturday,3,276,18,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,OT,1,BLU,1200.0,STOLEN,17431,"{'type': 'Point', 'coordinates': (-79.39968108, 43.63663014)}"
-17462,10606,GO-20159008355,THEFT UNDER,2015-10-07T00:00:00,2015,October,Wednesday,7,280,17,2015-10-08T00:00:00,2015,October,Thursday,8,281,21,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,NO,CHARGER 9.3,MT,27,RED,767.0,STOLEN,17432,"{'type': 'Point', 'coordinates': (-79.41045766, 43.64169495)}"
-17463,10624,GO-20151763791,THEFT UNDER,2015-09-26T00:00:00,2015,September,Saturday,26,269,0,2015-10-13T00:00:00,2015,October,Tuesday,13,286,10,D14,Toronto,82,Niagara (82),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,BM,0,REDSIL,1000.0,STOLEN,17433,"{'type': 'Point', 'coordinates': (-79.39916285, 43.63523601)}"
-17464,10626,GO-20151769826,THEFT UNDER,2015-10-09T00:00:00,2015,October,Friday,9,282,18,2015-10-14T00:00:00,2015,October,Wednesday,14,287,9,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NORCO,,OT,21,LBL,,STOLEN,17434,"{'type': 'Point', 'coordinates': (-79.40680169, 43.63639142)}"
-17465,10663,GO-20151807313,THEFT UNDER,2015-10-18T00:00:00,2015,October,Sunday,18,291,12,2015-10-20T00:00:00,2015,October,Tuesday,20,293,16,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TRICROSS,SPECIALIZED,OT,21,REDBLK,3000.0,STOLEN,17435,"{'type': 'Point', 'coordinates': (-79.40517849, 43.63747213)}"
-17466,10739,GO-20159009553,THEFT UNDER,2015-11-09T00:00:00,2015,November,Monday,9,313,14,2015-11-09T00:00:00,2015,November,Monday,9,313,15,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SU,CLASSIC,RG,25,RED,0.0,STOLEN,17436,"{'type': 'Point', 'coordinates': (-79.4144255, 43.6400082)}"
-17467,10743,GO-20159009604,THEFT UNDER,2015-11-10T00:00:00,2015,November,Tuesday,10,314,15,2015-11-10T00:00:00,2015,November,Tuesday,10,314,18,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,PALOMAR,MT,21,BLU,800.0,STOLEN,17437,"{'type': 'Point', 'coordinates': (-79.41882219, 43.64420339)}"
-17468,10753,GO-20151937282,B&E,2015-11-11T00:00:00,2015,November,Wednesday,11,315,3,2015-11-11T00:00:00,2015,November,Wednesday,11,315,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,JAMIS,,MT,21,WHI,1000.0,STOLEN,17438,"{'type': 'Point', 'coordinates': (-79.4144255, 43.6400082)}"
-17469,10790,GO-20159009916,THEFT UNDER,2015-11-13T00:00:00,2015,November,Friday,13,317,19,2015-11-19T00:00:00,2015,November,Thursday,19,323,19,D14,Toronto,82,Niagara (82),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,CROMLOY/FRONTIE,MT,21,DGR,150.0,STOLEN,17439,"{'type': 'Point', 'coordinates': (-79.40550604, 43.64405171)}"
-17470,10808,GO-20159010144,THEFT UNDER,2015-11-24T00:00:00,2015,November,Tuesday,24,328,15,2015-11-24T00:00:00,2015,November,Tuesday,24,328,20,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,ROAM 3,MT,24,GRY,750.0,STOLEN,17440,"{'type': 'Point', 'coordinates': (-79.42053557, 43.63830759)}"
-17471,10846,GO-20152109977,B&E,2015-11-25T00:00:00,2015,November,Wednesday,25,329,0,2015-12-09T00:00:00,2015,December,Wednesday,9,343,14,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OTHER,,TO,6,WHI,1200.0,STOLEN,17441,"{'type': 'Point', 'coordinates': (-79.41045766, 43.64169495)}"
-17472,10924,GO-201670780,B&E,2015-09-27T00:00:00,2015,September,Sunday,27,270,16,2016-01-12T00:00:00,2016,January,Tuesday,12,12,20,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,TREK,LEXA,RG,12,PLE,800.0,STOLEN,17442,"{'type': 'Point', 'coordinates': (-79.41953608, 43.63849391)}"
-17473,11001,GO-20169001591,THEFT UNDER,2016-01-30T00:00:00,2016,January,Saturday,30,30,18,2016-02-20T00:00:00,2016,February,Saturday,20,51,18,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,MT,3,BLK,400.0,STOLEN,17443,"{'type': 'Point', 'coordinates': (-79.40172265, 43.63837662)}"
-17474,11018,GO-20169001819,THEFT UNDER,2015-12-17T00:00:00,2015,December,Thursday,17,351,14,2016-02-26T00:00:00,2016,February,Friday,26,57,14,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,1000 WSD,RC,24,BLU,400.0,STOLEN,17444,"{'type': 'Point', 'coordinates': (-79.40537327000001, 43.63616773)}"
-17475,11019,GO-2016371413,THEFT UNDER,2016-03-02T00:00:00,2016,March,Wednesday,2,62,7,2016-03-02T00:00:00,2016,March,Wednesday,2,62,19,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,ENDURO,MT,18,RED,3000.0,STOLEN,17445,"{'type': 'Point', 'coordinates': (-79.41045766, 43.64169495)}"
-17476,11083,GO-2016539415,THEFT UNDER,2016-01-01T00:00:00,2016,January,Friday,1,1,12,2016-03-30T00:00:00,2016,March,Wednesday,30,90,14,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,DEVINCI,SILVERSTONE,RG,21,WHI,1000.0,STOLEN,17446,"{'type': 'Point', 'coordinates': (-79.40517849, 43.63747213)}"
-17477,11105,GO-20169003094,THEFT UNDER,2015-07-31T00:00:00,2015,July,Friday,31,212,9,2016-04-05T00:00:00,2016,April,Tuesday,5,96,21,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,LUCERNE WOMEN'S,RG,7,ONG,380.0,STOLEN,17447,"{'type': 'Point', 'coordinates': (-79.40172265, 43.63837662)}"
-17478,11160,GO-20142802641,THEFT UNDER,2014-08-28T00:00:00,2014,August,Thursday,28,240,21,2014-08-30T00:00:00,2014,August,Saturday,30,242,8,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,MT,18,GRY,,STOLEN,17448,"{'type': 'Point', 'coordinates': (-79.40524581, 43.64340152)}"
-17479,11165,GO-20169003641,B&E,2016-04-20T00:00:00,2016,April,Wednesday,20,111,21,2016-04-20T00:00:00,2016,April,Wednesday,20,111,22,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,NO,CCX3,RC,27,BLK,1000.0,STOLEN,17449,"{'type': 'Point', 'coordinates': (-79.40524581, 43.64340152)}"
-17480,11176,GO-2016684282,B&E,2016-04-21T00:00:00,2016,April,Thursday,21,112,18,2016-04-22T00:00:00,2016,April,Friday,22,113,3,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,LENGSTER,TO,1,SIL,,STOLEN,17450,"{'type': 'Point', 'coordinates': (-79.40517849, 43.63747213)}"
-17481,11179,GO-2016684282,B&E,2016-04-21T00:00:00,2016,April,Thursday,21,112,18,2016-04-22T00:00:00,2016,April,Friday,22,113,3,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,NORCO,,TO,18,WHI,,RECOVERED,17451,"{'type': 'Point', 'coordinates': (-79.40517849, 43.63747213)}"
-17482,11284,GO-2016805119,THEFT UNDER,2016-05-06T00:00:00,2016,May,Friday,6,127,19,2016-05-10T00:00:00,2016,May,Tuesday,10,131,19,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,MOUNTAIN CO-OP,CHANCE,OT,11,GRY,1675.0,STOLEN,17452,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-17483,11329,GO-2016861004,THEFT UNDER - BICYCLE,2016-05-19T00:00:00,2016,May,Thursday,19,140,9,2016-05-19T00:00:00,2016,May,Thursday,19,140,10,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,DAMCO,OT,1,BLK,450.0,STOLEN,17453,"{'type': 'Point', 'coordinates': (-79.4094396, 43.645012)}"
-17484,11368,GO-20169004918,THEFT UNDER - BICYCLE,2016-05-24T00:00:00,2016,May,Tuesday,24,145,22,2016-05-25T00:00:00,2016,May,Wednesday,25,146,0,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,ST TROPEZ,RG,24,BLK,600.0,STOLEN,17454,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17485,11409,GO-20169005140,THEFT UNDER - BICYCLE,2016-05-05T00:00:00,2016,May,Thursday,5,126,11,2016-05-31T00:00:00,2016,May,Tuesday,31,152,11,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,SUPER CROSS,OT,12,OTH,2500.0,STOLEN,17455,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17486,12454,GO-20161710296,THEFT UNDER - BICYCLE,2016-09-26T00:00:00,2016,September,Monday,26,270,6,2016-09-26T00:00:00,2016,September,Monday,26,270,7,D14,Toronto,82,Niagara (82),Go Train,Transit,SCHWINN,TANGO,FO,6,BLU,200.0,STOLEN,17488,"{'type': 'Point', 'coordinates': (-79.41861725, 43.63533762)}"
-17487,11454,GO-2016976185,THEFT UNDER - BICYCLE,2016-06-05T00:00:00,2016,June,Sunday,5,157,0,2016-06-05T00:00:00,2016,June,Sunday,5,157,13,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KONA,LAVA DOME,OT,21,GRN,,STOLEN,17456,"{'type': 'Point', 'coordinates': (-79.40537327000001, 43.63616773)}"
-17488,11456,GO-20169005404,THEFT UNDER,2016-06-04T00:00:00,2016,June,Saturday,4,156,14,2016-06-06T00:00:00,2016,June,Monday,6,158,21,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,E-BREEZE,EL,35,BLU,1200.0,STOLEN,17457,"{'type': 'Point', 'coordinates': (-79.41375783, 43.641679)}"
-17489,11458,GO-20169005418,THEFT UNDER,2016-06-06T00:00:00,2016,June,Monday,6,158,14,2016-06-07T00:00:00,2016,June,Tuesday,7,159,10,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,7,BLK,300.0,STOLEN,17458,"{'type': 'Point', 'coordinates': (-79.40524581, 43.64340152)}"
-17490,11519,GO-20161028108,B&E,2016-06-13T00:00:00,2016,June,Monday,13,165,11,2016-06-13T00:00:00,2016,June,Monday,13,165,11,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,TREK,,RC,10,BLUWHI,,STOLEN,17459,"{'type': 'Point', 'coordinates': (-79.40680169, 43.63639142)}"
-17491,11524,GO-20169005764,THEFT UNDER,2016-06-13T00:00:00,2016,June,Monday,13,165,8,2016-06-14T00:00:00,2016,June,Tuesday,14,166,16,D14,Toronto,82,Niagara (82),"Religious Facilities (Synagogue, Church, Convent, Mosque)",Other,UK,,EL,32,RED,1100.0,STOLEN,17460,"{'type': 'Point', 'coordinates': (-79.40306565, 43.64488902)}"
-17492,11598,GO-20169006126,THEFT UNDER - BICYCLE,2016-06-21T00:00:00,2016,June,Tuesday,21,173,2,2016-06-21T00:00:00,2016,June,Tuesday,21,173,12,D14,Toronto,82,Niagara (82),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,FAMILY,OT,8,BLK,4500.0,STOLEN,17461,"{'type': 'Point', 'coordinates': (-79.40575416, 43.6446926)}"
-17493,11703,GO-20161175331,THEFT UNDER - BICYCLE,2016-07-03T00:00:00,2016,July,Sunday,3,185,19,2016-07-05T00:00:00,2016,July,Tuesday,5,187,14,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,ROAM,MT,24,BLK,500.0,STOLEN,17462,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-17494,11744,GO-20169006893,THEFT UNDER,2016-07-08T00:00:00,2016,July,Friday,8,190,0,2016-07-08T00:00:00,2016,July,Friday,8,190,11,D14,Toronto,82,Niagara (82),Unknown,Other,UK,"NO. 1, LARGE",RG,3,SIL,1009.0,STOLEN,17463,"{'type': 'Point', 'coordinates': (-79.40953643, 43.64607952)}"
-17495,11758,GO-20161188756,THEFT UNDER - BICYCLE,2016-07-02T00:00:00,2016,July,Saturday,2,184,21,2016-07-07T00:00:00,2016,July,Thursday,7,189,13,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,OT,9,BLUBLK,400.0,STOLEN,17464,"{'type': 'Point', 'coordinates': (-79.4082535, 43.64348309)}"
-17496,11767,GO-20169007011,THEFT UNDER - BICYCLE,2016-07-09T00:00:00,2016,July,Saturday,9,191,12,2016-07-11T00:00:00,2016,July,Monday,11,193,11,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,MA,LOMBARD,OT,27,BLK,2200.0,STOLEN,17465,"{'type': 'Point', 'coordinates': (-79.40767877, 43.64290821)}"
-17497,11788,GO-20169007125,THEFT UNDER,2016-07-13T00:00:00,2016,July,Wednesday,13,195,8,2016-07-13T00:00:00,2016,July,Wednesday,13,195,9,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,SCHERZO,RC,9,GRN,2100.0,STOLEN,17466,"{'type': 'Point', 'coordinates': (-79.40517849, 43.63747213)}"
-17498,11804,GO-20169007194,THEFT UNDER,2016-07-14T00:00:00,2016,July,Thursday,14,196,1,2016-07-14T00:00:00,2016,July,Thursday,14,196,13,D14,Toronto,82,Niagara (82),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,MOMENTUM 16,RG,7,BLU,600.0,STOLEN,17467,"{'type': 'Point', 'coordinates': (-79.40730785, 43.6415952)}"
-17499,11823,GO-20161263344,THEFT UNDER - BICYCLE,2016-07-18T00:00:00,2016,July,Monday,18,200,22,2016-07-18T00:00:00,2016,July,Monday,18,200,22,D14,Toronto,82,Niagara (82),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CDN TIRE,,RG,0,,,STOLEN,17468,"{'type': 'Point', 'coordinates': (-79.41142967, 43.640757)}"
-17500,11896,GO-20169007698,THEFT UNDER - BICYCLE,2016-07-05T00:00:00,2016,July,Tuesday,5,187,21,2016-07-25T00:00:00,2016,July,Monday,25,207,8,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,FLUID LT,MT,32,ONG,1400.0,STOLEN,17469,"{'type': 'Point', 'coordinates': (-79.40767877, 43.64290821)}"
-17501,12001,GO-20169008237,THEFT UNDER - BICYCLE,2016-07-29T00:00:00,2016,July,Friday,29,211,1,2016-08-04T00:00:00,2016,August,Thursday,4,217,22,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,ESCAPE 3 MEDUIM,RG,21,BLK,603.0,STOLEN,17470,"{'type': 'Point', 'coordinates': (-79.40680169, 43.63639142)}"
-17502,12035,GO-20169008436,THEFT UNDER - BICYCLE,2016-08-08T00:00:00,2016,August,Monday,8,221,10,2016-08-09T00:00:00,2016,August,Tuesday,9,222,11,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,CC,VANDAL,MT,21,,380.0,STOLEN,17471,"{'type': 'Point', 'coordinates': (-79.41045766, 43.64169495)}"
-17503,12036,GO-20169008436,THEFT UNDER - BICYCLE,2016-08-08T00:00:00,2016,August,Monday,8,221,10,2016-08-09T00:00:00,2016,August,Tuesday,9,222,11,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,SC,S2278C,OT,1,DBL,169.0,STOLEN,17472,"{'type': 'Point', 'coordinates': (-79.41045766, 43.64169495)}"
-17504,12046,GO-20169008497,THEFT UNDER - BICYCLE,2016-08-04T00:00:00,2016,August,Thursday,4,217,2,2016-08-10T00:00:00,2016,August,Wednesday,10,223,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,10,BLK,0.0,STOLEN,17473,"{'type': 'Point', 'coordinates': (-79.41426424, 43.6429729)}"
-17505,12081,GO-20169008718,THEFT UNDER - BICYCLE,2016-08-13T00:00:00,2016,August,Saturday,13,226,9,2016-08-14T00:00:00,2016,August,Sunday,14,227,10,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,TALON 29,MT,60,BLK,1800.0,STOLEN,17474,"{'type': 'Point', 'coordinates': (-79.40128939, 43.63517525)}"
-17506,12108,GO-20169008824,THEFT UNDER,2016-08-11T00:00:00,2016,August,Thursday,11,224,21,2016-08-15T00:00:00,2016,August,Monday,15,228,20,D14,Toronto,82,Niagara (82),"Open Areas (Lakes, Parks, Rivers)",Outside,TR,7.3,OT,21,BLK,1000.0,STOLEN,17475,"{'type': 'Point', 'coordinates': (-79.39832559, 43.63567355)}"
-17507,12162,GO-20169009166,THEFT UNDER - BICYCLE,2016-08-21T00:00:00,2016,August,Sunday,21,234,6,2016-08-22T00:00:00,2016,August,Monday,22,235,13,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,3,BLU,150.0,STOLEN,17476,"{'type': 'Point', 'coordinates': (-79.40332976, 43.64551526)}"
-17508,12186,GO-20161491880,THEFT UNDER - BICYCLE,2016-08-22T00:00:00,2016,August,Monday,22,235,19,2016-08-25T00:00:00,2016,August,Thursday,25,238,18,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RALEIGH,ONE SPEED,OT,1,BLKRED,450.0,STOLEN,17477,"{'type': 'Point', 'coordinates': (-79.4060834, 43.64184243)}"
-17509,12236,GO-20169009737,THEFT UNDER - BICYCLE,2016-08-28T00:00:00,2016,August,Sunday,28,241,12,2016-08-31T00:00:00,2016,August,Wednesday,31,244,10,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,OT,3,BLK,0.0,STOLEN,17478,"{'type': 'Point', 'coordinates': (-79.41121981, 43.6457475)}"
-17510,12268,GO-20161579626,THEFT UNDER - BICYCLE,2016-08-31T00:00:00,2016,August,Wednesday,31,244,16,2016-09-06T00:00:00,2016,September,Tuesday,6,250,8,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,HUFFY,,OT,12,RED,200.0,STOLEN,17479,"{'type': 'Point', 'coordinates': (-79.40680169, 43.63639142)}"
-17511,12276,GO-20169010077,THEFT UNDER,2016-09-04T00:00:00,2016,September,Sunday,4,248,16,2016-09-07T00:00:00,2016,September,Wednesday,7,251,0,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,EL,62,BLK,200.0,STOLEN,17480,"{'type': 'Point', 'coordinates': (-79.42213177, 43.63268075)}"
-17512,12289,GO-20161583213,THEFT UNDER - BICYCLE,2016-09-06T00:00:00,2016,September,Tuesday,6,250,9,2016-09-07T00:00:00,2016,September,Wednesday,7,251,13,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DECORATION,,MT,1,BLK,600.0,STOLEN,17481,"{'type': 'Point', 'coordinates': (-79.40918547, 43.644676)}"
-17513,12391,GO-20161662211,THEFT UNDER - BICYCLE,2016-09-18T00:00:00,2016,September,Sunday,18,262,8,2016-09-18T00:00:00,2016,September,Sunday,18,262,17,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,TRACK55,OT,1,BLK,,RECOVERED,17482,"{'type': 'Point', 'coordinates': (-79.40680169, 43.63639142)}"
-17514,12414,GO-20161676482,THEFT UNDER - BICYCLE,2016-09-20T00:00:00,2016,September,Tuesday,20,264,9,2016-09-20T00:00:00,2016,September,Tuesday,20,264,19,D14,Toronto,82,Niagara (82),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,,OT,21,REDBLK,800.0,STOLEN,17483,"{'type': 'Point', 'coordinates': (-79.41170542, 43.64145102)}"
-17515,12430,GO-20169010934,THEFT UNDER,2016-09-21T00:00:00,2016,September,Wednesday,21,265,18,2016-09-22T00:00:00,2016,September,Thursday,22,266,19,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,MANTRA FIXIE,RG,1,CRM,300.0,STOLEN,17484,"{'type': 'Point', 'coordinates': (-79.40516588, 43.64696705000001)}"
-17516,12432,GO-20161667262,B&E,2016-08-01T00:00:00,2016,August,Monday,1,214,12,2016-09-19T00:00:00,2016,September,Monday,19,263,13,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,ROYBAIX,RG,21,BLKSIL,1200.0,STOLEN,17485,"{'type': 'Point', 'coordinates': (-79.4149791, 43.64143597)}"
-17517,12437,GO-20169011022,THEFT UNDER - BICYCLE,2016-09-23T00:00:00,2016,September,Friday,23,267,20,2016-09-24T00:00:00,2016,September,Saturday,24,268,12,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,DENALI,RG,21,RED,330.0,STOLEN,17486,"{'type': 'Point', 'coordinates': (-79.39999105, 43.63737009)}"
-17518,12438,GO-20169011022,THEFT UNDER - BICYCLE,2016-09-23T00:00:00,2016,September,Friday,23,267,20,2016-09-24T00:00:00,2016,September,Saturday,24,268,12,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,POMONA,RG,7,LGR,288.0,STOLEN,17487,"{'type': 'Point', 'coordinates': (-79.39999105, 43.63737009)}"
-17519,12500,GO-20161730567,B&E,2016-07-27T00:00:00,2016,July,Wednesday,27,209,21,2016-09-29T00:00:00,2016,September,Thursday,29,273,9,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OTHER,TREK,OT,21,BLKWHI,1186.0,STOLEN,17489,"{'type': 'Point', 'coordinates': (-79.39999105, 43.63737009)}"
-17520,12526,GO-20161750861,B&E,2016-09-25T00:00:00,2016,September,Sunday,25,269,0,2016-10-02T00:00:00,2016,October,Sunday,2,276,11,D14,Toronto,82,Niagara (82),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CANNONDALE,SUPERSIX,OT,24,WHI,4000.0,STOLEN,17490,"{'type': 'Point', 'coordinates': (-79.40215599, 43.64265388)}"
-17521,12592,GO-20169011869,THEFT UNDER,2016-10-11T00:00:00,2016,October,Tuesday,11,285,4,2016-10-11T00:00:00,2016,October,Tuesday,11,285,21,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,TR,7.2FX,RG,21,BLK,513.0,STOLEN,17491,"{'type': 'Point', 'coordinates': (-79.40235491, 43.63675803)}"
-17522,12651,GO-20169012348,THEFT UNDER,2016-10-15T00:00:00,2016,October,Saturday,15,289,8,2016-10-20T00:00:00,2016,October,Thursday,20,294,14,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,CUSTOM,RC,8,RED,1800.0,STOLEN,17492,"{'type': 'Point', 'coordinates': (-79.40138212, 43.64074836)}"
-17523,12676,GO-20169012602,THEFT UNDER - BICYCLE,2016-10-25T00:00:00,2016,October,Tuesday,25,299,18,2016-10-26T00:00:00,2016,October,Wednesday,26,300,10,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MOVE HAPPY,OT,7,RED,500.0,STOLEN,17493,"{'type': 'Point', 'coordinates': (-79.40128939, 43.63517525)}"
-17524,12703,GO-20169012803,THEFT UNDER,2016-10-25T00:00:00,2016,October,Tuesday,25,299,21,2016-10-31T00:00:00,2016,October,Monday,31,305,18,D14,Toronto,82,Niagara (82),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,MEC,RG,6,BLK,1700.0,STOLEN,17494,"{'type': 'Point', 'coordinates': (-79.40235491, 43.63675803)}"
-17525,12750,GO-20169013254,THEFT UNDER,2016-10-24T00:00:00,2016,October,Monday,24,298,19,2016-11-11T00:00:00,2016,November,Friday,11,316,11,D14,Toronto,82,Niagara (82),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,TO CHALLENGE 40,TO,5,BLK,600.0,STOLEN,17495,"{'type': 'Point', 'coordinates': (-79.41544967, 43.63111258)}"
-17526,12756,GO-20169013254,THEFT UNDER,2016-10-24T00:00:00,2016,October,Monday,24,298,19,2016-11-11T00:00:00,2016,November,Friday,11,316,11,D14,Toronto,82,Niagara (82),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,400,TO,5,BLK,400.0,STOLEN,17496,"{'type': 'Point', 'coordinates': (-79.41544967, 43.63111258)}"
-17527,14267,GO-20209014730,THEFT UNDER,2020-05-29T00:00:00,2020,May,Friday,29,150,13,2020-06-06T00:00:00,2020,June,Saturday,6,158,13,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,KO,HOSS DELUXE,MT,9,BLK,200.0,STOLEN,17497,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-17528,14271,GO-20209015382,THEFT UNDER,2020-06-14T00:00:00,2020,June,Sunday,14,166,4,2020-06-15T00:00:00,2020,June,Monday,15,167,11,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,CX,TO,21,DGR,1500.0,STOLEN,17498,"{'type': 'Point', 'coordinates': (-79.4149791, 43.64143597)}"
-17529,14286,GO-20209018365,B&E,2020-07-23T00:00:00,2020,July,Thursday,23,205,19,2020-07-24T00:00:00,2020,July,Friday,24,206,8,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,NO,,OT,25,SIL,819.0,STOLEN,17499,"{'type': 'Point', 'coordinates': (-79.40767877, 43.64290821)}"
-17530,14289,GO-20209018784,THEFT UNDER,2020-06-27T00:00:00,2020,June,Saturday,27,179,8,2020-07-28T00:00:00,2020,July,Tuesday,28,210,13,D14,Toronto,82,Niagara (82),Go Station,Transit,OT,SUBCROSS 40 201,TO,28,BLK,700.0,STOLEN,17500,"{'type': 'Point', 'coordinates': (-79.41861725, 43.63533762)}"
-17531,14303,GO-20209021578,THEFT UNDER,2020-08-24T00:00:00,2020,August,Monday,24,237,19,2020-08-27T00:00:00,2020,August,Thursday,27,240,20,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,ROLL LOW ENTRY,RG,7,BLK,850.0,STOLEN,17501,"{'type': 'Point', 'coordinates': (-79.40680169, 43.63639142)}"
-17532,14311,GO-20209022400,THEFT UNDER,2020-09-03T00:00:00,2020,September,Thursday,3,247,20,2020-09-05T00:00:00,2020,September,Saturday,5,249,12,D14,Toronto,82,Niagara (82),Bar / Restaurant,Commercial,MA,MARIN FAIRFAX 1,OT,21,BLK,600.0,STOLEN,17502,"{'type': 'Point', 'coordinates': (-79.40138212, 43.64074836)}"
-17533,14319,GO-20209023392,THEFT UNDER,2020-09-08T00:00:00,2020,September,Tuesday,8,252,10,2020-09-16T00:00:00,2020,September,Wednesday,16,260,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,KO,DEW,RG,21,SIL,0.0,STOLEN,17503,"{'type': 'Point', 'coordinates': (-79.41138445, 43.63917336)}"
-17534,14321,GO-20209023906,THEFT UNDER,2020-09-18T00:00:00,2020,September,Friday,18,262,16,2020-09-21T00:00:00,2020,September,Monday,21,265,17,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,EUROPA,RC,12,WHI,350.0,STOLEN,17504,"{'type': 'Point', 'coordinates': (-79.4149791, 43.64143597)}"
-17535,6876,GO-20209019459,THEFT UNDER,2020-08-04T00:00:00,2020,August,Tuesday,4,217,0,2020-08-05T00:00:00,2020,August,Wednesday,5,218,16,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,MO,IMPASSE 650B,MT,21,BLK,275.0,STOLEN,17505,"{'type': 'Point', 'coordinates': (-79.40524581, 43.64340152)}"
-17536,20831,GO-20209028850,THEFT UNDER,2020-11-06T00:00:00,2020,November,Friday,6,311,12,2020-11-06T00:00:00,2020,November,Friday,6,311,14,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,CRAVE EXPERT 29,MT,10,BLK,1200.0,STOLEN,17506,"{'type': 'Point', 'coordinates': (-79.41013414, 43.64759136)}"
-17537,20832,GO-20209029128,THEFT UNDER,2020-11-01T00:00:00,2020,November,Sunday,1,306,5,2020-11-09T00:00:00,2020,November,Monday,9,314,17,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,OT,ZEPHYR,OT,1,BLK,200.0,STOLEN,17507,"{'type': 'Point', 'coordinates': (-79.41490809000001, 43.65049859)}"
-17538,18326,GO-20142069863,B&E W'INTENT,2014-05-12T00:00:00,2014,May,Monday,12,132,23,2014-05-13T00:00:00,2014,May,Tuesday,13,133,10,D14,Toronto,82,Niagara (82),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MONGOOSE,UNKNOWN,MT,12,BLU,80.0,STOLEN,17508,"{'type': 'Point', 'coordinates': (-79.41332573, 43.64059562)}"
-17539,223,GO-20179004716,THEFT UNDER,2016-11-20T00:00:00,2016,November,Sunday,20,325,18,2017-04-15T00:00:00,2017,April,Saturday,15,105,12,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE 2,RG,24,GRY,701.0,RECOVERED,17509,"{'type': 'Point', 'coordinates': (-79.40266560000002, 43.64392483)}"
-17540,20989,GO-20199011201,THEFT UNDER - BICYCLE,2019-03-30T00:00:00,2019,March,Saturday,30,89,1,2019-04-09T00:00:00,2019,April,Tuesday,9,99,12,D14,Toronto,81,Trinity-Bellwoods (81),Schools During Un-Supervised Activity,Educational,UK,BOLT,RG,10,BLK,600.0,STOLEN,17510,"{'type': 'Point', 'coordinates': (-79.4206804, 43.64584287)}"
-17541,21010,GO-20199019154,THEFT UNDER - BICYCLE,2019-06-18T00:00:00,2019,June,Tuesday,18,169,8,2019-06-18T00:00:00,2019,June,Tuesday,18,169,20,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,RG,21,PLE,500.0,STOLEN,17511,"{'type': 'Point', 'coordinates': (-79.41363235, 43.65470528)}"
-17542,21011,GO-20199019154,THEFT UNDER - BICYCLE,2019-06-18T00:00:00,2019,June,Tuesday,18,169,8,2019-06-18T00:00:00,2019,June,Tuesday,18,169,20,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,6,,400.0,STOLEN,17512,"{'type': 'Point', 'coordinates': (-79.41363235, 43.65470528)}"
-17543,21028,GO-20199023634,THEFT UNDER,2019-07-22T00:00:00,2019,July,Monday,22,203,10,2019-07-25T00:00:00,2019,July,Thursday,25,206,8,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,UK,CRUISE,RG,6,BLU,400.0,STOLEN,17513,"{'type': 'Point', 'coordinates': (-79.41485345, 43.65320024)}"
-17544,21071,GO-20199032019,THEFT UNDER - BICYCLE,2019-09-29T00:00:00,2019,September,Sunday,29,272,22,2019-09-29T00:00:00,2019,September,Sunday,29,272,23,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,10,BLK,100.0,STOLEN,17514,"{'type': 'Point', 'coordinates': (-79.40679618, 43.65428654)}"
-17545,21072,GO-20199032063,THEFT UNDER,2019-07-12T00:00:00,2019,July,Friday,12,193,21,2019-09-30T00:00:00,2019,September,Monday,30,273,12,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FJ,FEATHER,RG,1,PNK,400.0,STOLEN,17515,"{'type': 'Point', 'coordinates': (-79.41363235, 43.65470528)}"
-17546,21085,GO-20199034823,THEFT UNDER - BICYCLE,2019-10-21T00:00:00,2019,October,Monday,21,294,23,2019-10-22T00:00:00,2019,October,Tuesday,22,295,16,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,8,BLU,700.0,STOLEN,17516,"{'type': 'Point', 'coordinates': (-79.41134558, 43.64735559)}"
-17547,21087,GO-20199034915,THEFT UNDER - BICYCLE,2019-10-20T00:00:00,2019,October,Sunday,20,293,17,2019-10-23T00:00:00,2019,October,Wednesday,23,296,10,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,NO,VFR3,RG,24,GRY,700.0,STOLEN,17517,"{'type': 'Point', 'coordinates': (-79.42343283, 43.64619112)}"
-17548,21089,GO-20199035065,THEFT UNDER - BICYCLE,2019-10-18T00:00:00,2019,October,Friday,18,291,10,2019-10-24T00:00:00,2019,October,Thursday,24,297,13,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,UK,STEAMROLLER,RG,1,BRN,500.0,STOLEN,17518,"{'type': 'Point', 'coordinates': (-79.40844929, 43.6517934)}"
-17549,21107,GO-20209004000,THEFT UNDER,2020-01-31T00:00:00,2020,January,Friday,31,31,21,2020-02-02T00:00:00,2020,February,Sunday,2,33,21,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,UK,MUNI,UN,1,BLK,100.0,STOLEN,17519,"{'type': 'Point', 'coordinates': (-79.41732195, 43.65381073)}"
-17550,21125,GO-20209011427,THEFT UNDER,2020-04-18T00:00:00,2020,April,Saturday,18,109,3,2020-04-18T00:00:00,2020,April,Saturday,18,109,14,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,STOCKHOLM,OT,27,BLK,190.0,STOLEN,17520,"{'type': 'Point', 'coordinates': (-79.40582991, 43.64859048)}"
-17551,21136,GO-20209013312,THEFT UNDER,2020-05-10T00:00:00,2020,May,Sunday,10,131,13,2020-05-17T00:00:00,2020,May,Sunday,17,138,14,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,OT,SIRRUS V BRAKE,RG,7,BLK,733.0,STOLEN,17521,"{'type': 'Point', 'coordinates': (-79.41012202000002, 43.65597091)}"
-17552,21143,GO-20209014709,THEFT UNDER,2020-06-07T00:00:00,2020,June,Sunday,7,159,3,2020-06-07T00:00:00,2020,June,Sunday,7,159,12,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,QUANTUM,RC,16,BLU,2000.0,STOLEN,17522,"{'type': 'Point', 'coordinates': (-79.41134558, 43.64735559)}"
-17553,21170,GO-20179009107,THEFT UNDER - BICYCLE,2017-06-27T00:00:00,2017,June,Tuesday,27,178,10,2017-06-28T00:00:00,2017,June,Wednesday,28,179,16,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,HF,,RG,8,,350.0,STOLEN,17523,"{'type': 'Point', 'coordinates': (-79.41594592, 43.65029676)}"
-17554,21189,GO-20179010780,THEFT UNDER - BICYCLE,2017-07-22T00:00:00,2017,July,Saturday,22,203,1,2017-07-22T00:00:00,2017,July,Saturday,22,203,6,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,SUPERCYCLE,MT,7,ONG,250.0,STOLEN,17524,"{'type': 'Point', 'coordinates': (-79.40653598, 43.64668181)}"
-17555,21198,GO-20179012915,THEFT UNDER - BICYCLE,2017-08-20T00:00:00,2017,August,Sunday,20,232,22,2017-08-21T00:00:00,2017,August,Monday,21,233,12,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,1,DGR,300.0,STOLEN,17525,"{'type': 'Point', 'coordinates': (-79.41217785, 43.6527161)}"
-17556,4273,GO-20199014877,THEFT UNDER - BICYCLE,2019-05-11T00:00:00,2019,May,Saturday,11,131,9,2019-05-13T00:00:00,2019,May,Monday,13,133,15,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,DB,,BM,1,BLK,0.0,STOLEN,17526,"{'type': 'Point', 'coordinates': (-79.41045766, 43.64169495)}"
-17557,6882,GO-20209019520,THEFT UNDER,2020-08-05T00:00:00,2020,August,Wednesday,5,218,20,2020-08-06T00:00:00,2020,August,Thursday,6,219,10,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,RG,21,BLK,1100.0,STOLEN,17527,"{'type': 'Point', 'coordinates': (-79.40767877, 43.64290821)}"
-17558,21271,GO-20189015573,THEFT UNDER - BICYCLE,2018-05-19T00:00:00,2018,May,Saturday,19,139,9,2018-05-19T00:00:00,2018,May,Saturday,19,139,20,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SCOUT 7,RG,7,GRN,600.0,STOLEN,17528,"{'type': 'Point', 'coordinates': (-79.41277419, 43.65092838)}"
-17559,21274,GO-20189015851,THEFT UNDER - BICYCLE,2018-05-22T00:00:00,2018,May,Tuesday,22,142,9,2018-05-22T00:00:00,2018,May,Tuesday,22,142,18,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,SCORCHER,MT,21,DBL,150.0,STOLEN,17529,"{'type': 'Point', 'coordinates': (-79.4046631, 43.64896803)}"
-17560,21279,GO-20189016997,THEFT UNDER - BICYCLE,2018-05-31T00:00:00,2018,May,Thursday,31,151,23,2018-06-01T00:00:00,2018,June,Friday,1,152,0,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,11,BLK,2000.0,STOLEN,17530,"{'type': 'Point', 'coordinates': (-79.42343283, 43.64619112)}"
-17561,21359,GO-20181869880,B&E,2018-10-10T00:00:00,2018,October,Wednesday,10,283,6,2018-10-10T00:00:00,2018,October,Wednesday,10,283,6,D14,Toronto,81,Trinity-Bellwoods (81),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,DAMCO,SINGLE SPEED,OT,1,BLK,500.0,STOLEN,17531,"{'type': 'Point', 'coordinates': (-79.41979948, 43.64692616)}"
-17562,21360,GO-20181869880,B&E,2018-10-10T00:00:00,2018,October,Wednesday,10,283,6,2018-10-10T00:00:00,2018,October,Wednesday,10,283,6,D14,Toronto,81,Trinity-Bellwoods (81),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,DAMCO,SINGLE SPEED,OT,1,,500.0,STOLEN,17532,"{'type': 'Point', 'coordinates': (-79.41979948, 43.64692616)}"
-17563,21386,GO-20169006226,THEFT UNDER,2016-06-22T00:00:00,2016,June,Wednesday,22,174,8,2016-06-23T00:00:00,2016,June,Thursday,23,175,9,D14,Toronto,81,Trinity-Bellwoods (81),Schools During Un-Supervised Activity,Educational,NO,CITADEL,RG,21,BLU,1000.0,STOLEN,17533,"{'type': 'Point', 'coordinates': (-79.40914548, 43.64788984)}"
-17564,21415,GO-20169009465,THEFT UNDER - BICYCLE,2016-08-26T00:00:00,2016,August,Friday,26,239,9,2016-08-26T00:00:00,2016,August,Friday,26,239,9,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,RA,,RG,8,YEL,500.0,STOLEN,17534,"{'type': 'Point', 'coordinates': (-79.41134558, 43.64735559)}"
-17565,21418,GO-20161587992,THEFT OF EBIKE UNDER $5000,2016-09-07T00:00:00,2016,September,Wednesday,7,251,2,2016-09-07T00:00:00,2016,September,Wednesday,7,251,11,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,EL,1,BLK,2000.0,STOLEN,17535,"{'type': 'Point', 'coordinates': (-79.40582991, 43.64859048)}"
-17566,21424,GO-20161622118,THEFT UNDER - BICYCLE,2016-08-16T00:00:00,2016,August,Tuesday,16,229,19,2016-09-12T00:00:00,2016,September,Monday,12,256,15,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CANNONDALE,CADX,OT,18,SIL,600.0,STOLEN,17536,"{'type': 'Point', 'coordinates': (-79.41134558, 43.64735559)}"
-17567,21440,GO-20169012557,THEFT UNDER - BICYCLE,2016-10-17T00:00:00,2016,October,Monday,17,291,11,2016-10-25T00:00:00,2016,October,Tuesday,25,299,11,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,TRACK CLASSIC,RG,1,,700.0,STOLEN,17537,"{'type': 'Point', 'coordinates': (-79.40653598, 43.64668181)}"
-17568,21449,GO-20169013648,THEFT UNDER - BICYCLE,2016-11-11T00:00:00,2016,November,Friday,11,316,21,2016-11-20T00:00:00,2016,November,Sunday,20,325,19,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SWEET CITY LTD,RC,2,WHI,1000.0,STOLEN,17538,"{'type': 'Point', 'coordinates': (-79.41217785, 43.6527161)}"
-17569,21458,GO-20179000507,THEFT UNDER,2017-01-11T00:00:00,2017,January,Wednesday,11,11,12,2017-01-11T00:00:00,2017,January,Wednesday,11,11,23,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,DEFY ADVANCE 1S,RC,11,WHI,2400.0,STOLEN,17539,"{'type': 'Point', 'coordinates': (-79.40914548, 43.64788984)}"
-17570,21463,GO-20179002229,THEFT UNDER,2017-02-20T00:00:00,2017,February,Monday,20,51,12,2017-02-20T00:00:00,2017,February,Monday,20,51,18,D14,Toronto,81,Trinity-Bellwoods (81),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,TROOPER 3.0,RG,1,WHI,750.0,STOLEN,17540,"{'type': 'Point', 'coordinates': (-79.41012202000002, 43.65597091)}"
-17571,21791,GO-20149001446,THEFT UNDER,2014-02-19T00:00:00,2014,February,Wednesday,19,50,23,2014-02-20T00:00:00,2014,February,Thursday,20,51,21,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,DARK BLUE CHALL,RG,2,BLU,0.0,STOLEN,17541,"{'type': 'Point', 'coordinates': (-79.406958, 43.65137878)}"
-17572,21836,GO-20149007183,THEFT UNDER,2014-09-25T00:00:00,2014,September,Thursday,25,268,8,2014-09-25T00:00:00,2014,September,Thursday,25,268,8,D14,Toronto,81,Trinity-Bellwoods (81),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KH,AERO SPORT,RC,10,RED,800.0,STOLEN,17542,"{'type': 'Point', 'coordinates': (-79.41556857, 43.65495192)}"
-17573,21842,GO-20143150517,THEFT UNDER,2014-10-22T00:00:00,2014,October,Wednesday,22,295,3,2014-10-22T00:00:00,2014,October,Wednesday,22,295,5,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,MONZA,RG,21,GRYWHI,,STOLEN,17543,"{'type': 'Point', 'coordinates': (-79.42551956, 43.65145583)}"
-17574,21848,GO-2015214268,B&E,2015-02-05T00:00:00,2015,February,Thursday,5,36,1,2015-02-05T00:00:00,2015,February,Thursday,5,36,22,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,OT,1,,,STOLEN,17544,"{'type': 'Point', 'coordinates': (-79.40415004000002, 43.6476754)}"
-17575,21878,GO-20151031585,THEFT UNDER,2015-06-19T00:00:00,2015,June,Friday,19,170,0,2015-06-19T00:00:00,2015,June,Friday,19,170,15,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,GHOST SE 1800,MT,8,WHIBLU,650.0,STOLEN,17545,"{'type': 'Point', 'coordinates': (-79.40705633, 43.64835501)}"
-17576,21885,GO-20159004101,THEFT UNDER,2015-07-01T00:00:00,2015,July,Wednesday,1,182,15,2015-07-02T00:00:00,2015,July,Thursday,2,183,12,D14,Toronto,81,Trinity-Bellwoods (81),Bar / Restaurant,Commercial,OT,NINE TWELVE,TO,12,BLK,600.0,STOLEN,17546,"{'type': 'Point', 'coordinates': (-79.40723527, 43.65205839)}"
-17577,21886,GO-20151123524,THEFT UNDER,2015-07-03T00:00:00,2015,July,Friday,3,184,23,2015-07-04T00:00:00,2015,July,Saturday,4,185,23,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,BMX-VOLT X-10,BM,1,BLU,800.0,STOLEN,17547,"{'type': 'Point', 'coordinates': (-79.41767813, 43.65169734)}"
-17578,21897,GO-20159005045,THEFT UNDER,2015-07-22T00:00:00,2015,July,Wednesday,22,203,1,2015-07-24T00:00:00,2015,July,Friday,24,205,13,D14,Toronto,81,Trinity-Bellwoods (81),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GF,,MT,18,WHI,3000.0,STOLEN,17548,"{'type': 'Point', 'coordinates': (-79.42343283, 43.64619112)}"
-17579,21899,GO-20151291510,THEFT UNDER,2015-07-20T00:00:00,2015,July,Monday,20,201,22,2015-07-28T00:00:00,2015,July,Tuesday,28,209,19,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,BM,0,,1500.0,STOLEN,17549,"{'type': 'Point', 'coordinates': (-79.4134607, 43.65078109)}"
-17580,21901,GO-20159005194,THEFT UNDER,2015-07-29T00:00:00,2015,July,Wednesday,29,210,15,2015-07-31T00:00:00,2015,July,Friday,31,212,10,D14,Toronto,81,Trinity-Bellwoods (81),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,J105600021,RG,7,GRY,998.0,STOLEN,17550,"{'type': 'Point', 'coordinates': (-79.406958, 43.65137878)}"
-17581,21917,GO-20151488020,B&E,2015-08-27T00:00:00,2015,August,Thursday,27,239,15,2015-08-29T00:00:00,2015,August,Saturday,29,241,15,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,BRODIE,QUANTUM,MT,16,BLU,,STOLEN,17551,"{'type': 'Point', 'coordinates': (-79.42322142, 43.6494005)}"
-17582,21918,GO-20159006410,THEFT UNDER,2015-08-24T00:00:00,2015,August,Monday,24,236,1,2015-08-25T00:00:00,2015,August,Tuesday,25,237,19,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,OT,MODIFIED 5 SPEE,RC,5,BLU,400.0,STOLEN,17552,"{'type': 'Point', 'coordinates': (-79.40767084, 43.64646816)}"
-17583,21938,GO-20159010658,THEFT UNDER,2015-12-08T00:00:00,2015,December,Tuesday,8,342,22,2015-12-09T00:00:00,2015,December,Wednesday,9,343,10,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BI,CAMPIONE DEL MO,RG,12,SIL,0.0,STOLEN,17553,"{'type': 'Point', 'coordinates': (-79.42274326, 43.64938527)}"
-17584,21953,GO-20169003639,THEFT UNDER - BICYCLE,2016-04-20T00:00:00,2016,April,Wednesday,20,111,20,2016-04-20T00:00:00,2016,April,Wednesday,20,111,20,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,TREK,MT,12,LBL,800.0,STOLEN,17554,"{'type': 'Point', 'coordinates': (-79.40968237000001, 43.65155403)}"
-17585,21954,GO-20169003729,THEFT UNDER,2016-04-21T00:00:00,2016,April,Thursday,21,112,22,2016-04-23T00:00:00,2016,April,Saturday,23,114,22,D14,Toronto,81,Trinity-Bellwoods (81),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,TRICROSS 2008,RC,1,DGR,900.0,STOLEN,17555,"{'type': 'Point', 'coordinates': (-79.42407483, 43.64782021)}"
-17586,21963,GO-20169004504,THEFT UNDER - BICYCLE,2016-05-13T00:00:00,2016,May,Friday,13,134,2,2016-05-14T00:00:00,2016,May,Saturday,14,135,11,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,SC,,MT,27,RED,699.0,STOLEN,17556,"{'type': 'Point', 'coordinates': (-79.41012202000002, 43.65597091)}"
-17587,23802,GO-20201246805,B&E,2020-05-15T00:00:00,2020,May,Friday,15,136,12,2020-07-06T00:00:00,2020,July,Monday,6,188,13,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN,,OT,0,,,STOLEN,17557,"{'type': 'Point', 'coordinates': (-79.41087977, 43.65130826)}"
-17588,23806,GO-20209017342,THEFT UNDER,2020-07-11T00:00:00,2020,July,Saturday,11,193,20,2020-07-12T00:00:00,2020,July,Sunday,12,194,5,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,DAMCO,RC,1,BLK,650.0,STOLEN,17558,"{'type': 'Point', 'coordinates': (-79.41979948, 43.64692616)}"
-17589,23823,GO-20209020435,THEFT UNDER,2020-08-16T00:00:00,2020,August,Sunday,16,229,23,2020-08-17T00:00:00,2020,August,Monday,17,230,20,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,IH,,MT,18,BLK,200.0,STOLEN,17559,"{'type': 'Point', 'coordinates': (-79.41490809000001, 43.65049859)}"
-17590,23824,GO-20209020544,THEFT UNDER,2020-08-12T00:00:00,2020,August,Wednesday,12,225,0,2020-08-18T00:00:00,2020,August,Tuesday,18,231,14,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,1,TRQ,400.0,STOLEN,17560,"{'type': 'Point', 'coordinates': (-79.4131944, 43.65354792)}"
-17591,23833,GO-20209022676,THEFT UNDER,2020-09-07T00:00:00,2020,September,Monday,7,251,16,2020-09-08T00:00:00,2020,September,Tuesday,8,252,22,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,FJ,,OT,1,,250.0,STOLEN,17561,"{'type': 'Point', 'coordinates': (-79.42322142, 43.6494005)}"
-17592,23840,GO-20201797360,B&E,2020-09-20T00:00:00,2020,September,Sunday,20,264,1,2020-09-22T00:00:00,2020,September,Tuesday,22,266,8,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,ROUBAIX,OT,0,WHI,3000.0,STOLEN,17562,"{'type': 'Point', 'coordinates': (-79.41087977, 43.65130826)}"
-17593,23845,GO-20201885029,THEFT UNDER - BICYCLE,2020-10-01T00:00:00,2020,October,Thursday,1,275,17,2020-10-04T00:00:00,2020,October,Sunday,4,278,13,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,0,BLK,500.0,STOLEN,17563,"{'type': 'Point', 'coordinates': (-79.41589897, 43.64718351)}"
-17594,23857,GO-20209027826,THEFT UNDER,2020-10-27T00:00:00,2020,October,Tuesday,27,301,7,2020-10-27T00:00:00,2020,October,Tuesday,27,301,11,D14,Toronto,81,Trinity-Bellwoods (81),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KO,,MT,8,BLU,250.0,STOLEN,17564,"{'type': 'Point', 'coordinates': (-79.40516588, 43.64696705000001)}"
-17595,24038,GO-20199015600,THEFT UNDER,2019-05-19T00:00:00,2019,May,Sunday,19,139,1,2019-05-19T00:00:00,2019,May,Sunday,19,139,12,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,AVAIL 3,OT,21,OTH,993.0,STOLEN,17565,"{'type': 'Point', 'coordinates': (-79.40844929, 43.6517934)}"
-17596,24051,GO-20199019887,THEFT UNDER - BICYCLE,2019-06-23T00:00:00,2019,June,Sunday,23,174,21,2019-06-24T00:00:00,2019,June,Monday,24,175,12,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,21,BLK,750.0,RECOVERED,17566,"{'type': 'Point', 'coordinates': (-79.40582991, 43.64859048)}"
-17597,24052,GO-20199019887,THEFT UNDER - BICYCLE,2019-06-23T00:00:00,2019,June,Sunday,23,174,21,2019-06-24T00:00:00,2019,June,Monday,24,175,12,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,MT,21,LGR,725.0,STOLEN,17567,"{'type': 'Point', 'coordinates': (-79.40582991, 43.64859048)}"
-17598,24053,GO-20191179365,B&E,2019-06-25T00:00:00,2019,June,Tuesday,25,176,13,2019-06-25T00:00:00,2019,June,Tuesday,25,176,13,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,ROADSTER,TO,3,TRQ,1200.0,STOLEN,17568,"{'type': 'Point', 'coordinates': (-79.41142197, 43.65082905)}"
-17599,24061,GO-20199021714,THEFT UNDER - BICYCLE,2019-07-07T00:00:00,2019,July,Sunday,7,188,23,2019-07-10T00:00:00,2019,July,Wednesday,10,191,12,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,UK,,TO,1,PNK,600.0,STOLEN,17569,"{'type': 'Point', 'coordinates': (-79.41217785, 43.6527161)}"
-17600,24073,GO-20199023478,THEFT UNDER,2019-07-07T00:00:00,2019,July,Sunday,7,188,14,2019-07-24T00:00:00,2019,July,Wednesday,24,205,0,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RC,21,,278.0,STOLEN,17570,"{'type': 'Point', 'coordinates': (-79.41142197, 43.65082905)}"
-17601,24083,GO-20199025173,THEFT UNDER - BICYCLE,2019-08-06T00:00:00,2019,August,Tuesday,6,218,17,2019-08-06T00:00:00,2019,August,Tuesday,6,218,22,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,,RG,12,,120.0,STOLEN,17571,"{'type': 'Point', 'coordinates': (-79.40892011, 43.65622962)}"
-17602,24129,GO-20192260888,PROPERTY - FOUND,2019-11-25T00:00:00,2019,November,Monday,25,329,10,2019-11-25T00:00:00,2019,November,Monday,25,329,11,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FUJI,,RC,1,LBL,1000.0,UNKNOWN,17572,"{'type': 'Point', 'coordinates': (-79.42602616, 43.65272693)}"
-17603,24188,GO-20209015351,THEFT UNDER,2020-06-10T00:00:00,2020,June,Wednesday,10,162,0,2020-06-14T00:00:00,2020,June,Sunday,14,166,15,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,8.3 DUAL SPORT,RG,24,BLK,1000.0,STOLEN,17573,"{'type': 'Point', 'coordinates': (-79.41156475, 43.65117687)}"
-17604,24199,GO-20179011593,THEFT UNDER,2017-07-28T00:00:00,2017,July,Friday,28,209,17,2017-08-03T00:00:00,2017,August,Thursday,3,215,9,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SPARK 3.0,RC,18,BLK,1200.0,STOLEN,17574,"{'type': 'Point', 'coordinates': (-79.40844929, 43.6517934)}"
-17605,24229,GO-20179014602,THEFT UNDER,2017-09-12T00:00:00,2017,September,Tuesday,12,255,9,2017-09-12T00:00:00,2017,September,Tuesday,12,255,22,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,17 ALIGHT 1 DD,RG,27,DBL,830.0,STOLEN,17575,"{'type': 'Point', 'coordinates': (-79.40892011, 43.65622962)}"
-17606,24233,GO-20179015717,THEFT UNDER - BICYCLE,2017-09-23T00:00:00,2017,September,Saturday,23,266,21,2017-09-25T00:00:00,2017,September,Monday,25,268,13,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,TCR,RC,12,RED,2500.0,STOLEN,17576,"{'type': 'Point', 'coordinates': (-79.41775154, 43.64528750000001)}"
-17607,24241,GO-20179016865,THEFT UNDER,2017-10-08T00:00:00,2017,October,Sunday,8,281,22,2017-10-10T00:00:00,2017,October,Tuesday,10,283,14,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CHINOOK,RG,24,BRN,625.0,STOLEN,17577,"{'type': 'Point', 'coordinates': (-79.41949908, 43.64957268)}"
-17608,24251,GO-20179018022,THEFT UNDER,2017-10-24T00:00:00,2017,October,Tuesday,24,297,3,2017-10-24T00:00:00,2017,October,Tuesday,24,297,11,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,BAD BOY 9,RG,24,BLK,800.0,STOLEN,17578,"{'type': 'Point', 'coordinates': (-79.42322142, 43.6494005)}"
-17609,24260,GO-20179019166,THEFT UNDER,2017-11-07T00:00:00,2017,November,Tuesday,7,311,22,2017-11-08T00:00:00,2017,November,Wednesday,8,312,13,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,DUTCHI 3,RG,3,RED,800.0,STOLEN,17579,"{'type': 'Point', 'coordinates': (-79.42282867000002, 43.64841385)}"
-17610,24264,GO-20173039323,FRAUD - IDENTITY/PERS W-INT,2017-11-20T00:00:00,2017,November,Monday,20,324,17,2017-11-21T00:00:00,2017,November,Tuesday,21,325,11,D14,Toronto,81,Trinity-Bellwoods (81),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,SIRRUS DISC,OT,24,DBL,1000.0,STOLEN,17580,"{'type': 'Point', 'coordinates': (-79.41136773000001, 43.65571437)}"
-17611,24287,GO-20189009076,THEFT UNDER - BICYCLE,2018-03-20T00:00:00,2018,March,Tuesday,20,79,22,2018-03-22T00:00:00,2018,March,Thursday,22,81,22,D14,Toronto,81,Trinity-Bellwoods (81),"Group Homes (Non-Profit, Halfway House, Social Agency)",Other,GI,3 (ESCAPE),OT,18,,800.0,STOLEN,17581,"{'type': 'Point', 'coordinates': (-79.41277419, 43.65092838)}"
-17612,24289,GO-20189009815,THEFT UNDER,2018-03-27T00:00:00,2018,March,Tuesday,27,86,1,2018-03-28T00:00:00,2018,March,Wednesday,28,87,12,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,OT,1,BLK,400.0,STOLEN,17582,"{'type': 'Point', 'coordinates': (-79.40914548, 43.64788984)}"
-17613,24293,GO-20189011482,THEFT UNDER - BICYCLE,2018-04-12T00:00:00,2018,April,Thursday,12,102,0,2018-04-13T00:00:00,2018,April,Friday,13,103,10,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,,OT,21,BLK,900.0,STOLEN,17583,"{'type': 'Point', 'coordinates': (-79.40678242, 43.64746148)}"
-17614,24304,GO-20189014645,THEFT UNDER,2018-05-12T00:00:00,2018,May,Saturday,12,132,12,2018-05-12T00:00:00,2018,May,Saturday,12,132,12,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,OT,ROADSTER,RG,3,,,STOLEN,17584,"{'type': 'Point', 'coordinates': (-79.41485345, 43.65320024)}"
-17615,24382,GO-20189029232,THEFT UNDER - BICYCLE,2018-09-01T00:00:00,2018,September,Saturday,1,244,9,2018-09-05T00:00:00,2018,September,Wednesday,5,248,16,D14,Toronto,81,Trinity-Bellwoods (81),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,2007 SIRRUS,RG,9,BLK,1415.0,STOLEN,17585,"{'type': 'Point', 'coordinates': (-79.41012202000002, 43.65597091)}"
-17616,24578,GO-20171145997,THEFT UNDER - BICYCLE,2017-06-26T00:00:00,2017,June,Monday,26,177,22,2017-06-27T00:00:00,2017,June,Tuesday,27,178,6,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,MT,9,GRY,850.0,STOLEN,17586,"{'type': 'Point', 'coordinates': (-79.41012202000002, 43.65597091)}"
-17617,24598,GO-20149003632,THEFT UNDER,2014-05-25T00:00:00,2014,May,Sunday,25,145,2,2014-05-27T00:00:00,2014,May,Tuesday,27,147,9,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,PE,HYBRID,OT,12,TRQ,250.0,STOLEN,17587,"{'type': 'Point', 'coordinates': (-79.42074205, 43.64933336)}"
-17618,24604,GO-20142276093,THEFT UNDER,2014-06-07T00:00:00,2014,June,Saturday,7,158,13,2014-06-17T00:00:00,2014,June,Tuesday,17,168,11,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,VIA MONTEGA,OT,21,SIL,100.0,STOLEN,17588,"{'type': 'Point', 'coordinates': (-79.4206804, 43.64584287)}"
-17619,24635,GO-20149005784,THEFT UNDER,2014-08-09T00:00:00,2014,August,Saturday,9,221,12,2014-08-10T00:00:00,2014,August,Sunday,10,222,17,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,PE,VINTAGE.TOPTUBE,RC,10,RED,,STOLEN,17589,"{'type': 'Point', 'coordinates': (-79.406958, 43.65137878)}"
-17620,24642,GO-20149006395,THEFT UNDER,2014-08-29T00:00:00,2014,August,Friday,29,241,0,2014-08-29T00:00:00,2014,August,Friday,29,241,11,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,ROAD BIKE,RC,1,ONG,400.0,STOLEN,17590,"{'type': 'Point', 'coordinates': (-79.41782286, 43.64883079)}"
-17621,24698,GO-20159002863,THEFT UNDER,2015-05-18T00:00:00,2015,May,Monday,18,138,17,2015-05-18T00:00:00,2015,May,Monday,18,138,20,D14,Toronto,81,Trinity-Bellwoods (81),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RG,1,BLK,400.0,STOLEN,17591,"{'type': 'Point', 'coordinates': (-79.41156475, 43.65117687)}"
-17622,24715,GO-20159003949,THEFT UNDER,2015-06-25T00:00:00,2015,June,Thursday,25,176,19,2015-06-25T00:00:00,2015,June,Thursday,25,176,19,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,MA,DS 2,OT,21,BLK,450.0,STOLEN,17592,"{'type': 'Point', 'coordinates': (-79.406958, 43.65137878)}"
-17623,24775,GO-20159011068,THEFT UNDER,2015-12-16T00:00:00,2015,December,Wednesday,16,350,1,2015-12-17T00:00:00,2015,December,Thursday,17,351,14,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,THE MARQUIS,OT,1,LBL,500.0,STOLEN,17593,"{'type': 'Point', 'coordinates': (-79.41703002, 43.65006784)}"
-17624,25200,GO-20169005352,TRAFFICKING PROPERTY OBC UNDER,2016-06-03T00:00:00,2016,June,Friday,3,155,20,2016-06-05T00:00:00,2016,June,Sunday,5,157,20,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,21,GRN,2000.0,STOLEN,17594,"{'type': 'Point', 'coordinates': (-79.40653598, 43.64668181)}"
-17625,25206,GO-2016996973,THEFT UNDER - BICYCLE,2016-06-08T00:00:00,2016,June,Wednesday,8,160,15,2016-06-08T00:00:00,2016,June,Wednesday,8,160,15,D14,Toronto,81,Trinity-Bellwoods (81),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KHS,URBAN SOUL,OT,1,BLK,500.0,STOLEN,17595,"{'type': 'Point', 'coordinates': (-79.42274326, 43.64938527)}"
-17626,25213,GO-20169006149,THEFT UNDER - BICYCLE,2016-06-21T00:00:00,2016,June,Tuesday,21,173,17,2016-06-21T00:00:00,2016,June,Tuesday,21,173,19,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,,MT,16,RED,0.0,STOLEN,17596,"{'type': 'Point', 'coordinates': (-79.42074205, 43.64933336)}"
-17627,25232,GO-20161347661,B&E,2016-07-30T00:00:00,2016,July,Saturday,30,212,0,2016-07-31T00:00:00,2016,July,Sunday,31,213,22,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MAINSTREET PEDI,PEDICAB,TR,1,YELBLK,2500.0,STOLEN,17597,"{'type': 'Point', 'coordinates': (-79.40946539, 43.64774544000001)}"
-17628,25240,GO-20161411604,THEFT UNDER - BICYCLE,2016-08-06T00:00:00,2016,August,Saturday,6,219,10,2016-08-10T00:00:00,2016,August,Wednesday,10,223,20,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,OT,21,,500.0,STOLEN,17598,"{'type': 'Point', 'coordinates': (-79.41134558, 43.64735559)}"
-17629,25251,GO-20161505085,THEFT UNDER - BICYCLE,2016-08-25T00:00:00,2016,August,Thursday,25,238,0,2016-08-25T00:00:00,2016,August,Thursday,25,238,9,D14,Toronto,81,Trinity-Bellwoods (81),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SIMCOE,,RG,1,GRN,750.0,STOLEN,17599,"{'type': 'Point', 'coordinates': (-79.42104914, 43.65018001)}"
-17630,185,GO-20179004043,B&E,2017-03-30T00:00:00,2017,March,Thursday,30,89,21,2017-03-31T00:00:00,2017,March,Friday,31,90,20,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,10,BLU,1500.0,STOLEN,17608,"{'type': 'Point', 'coordinates': (-79.39999105, 43.63737009)}"
-17631,25259,GO-20161624612,THEFT UNDER - BICYCLE,2016-09-03T00:00:00,2016,September,Saturday,3,247,16,2016-09-12T00:00:00,2016,September,Monday,12,256,22,D14,Toronto,81,Trinity-Bellwoods (81),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,3500,MT,21,GRY,400.0,STOLEN,17600,"{'type': 'Point', 'coordinates': (-79.41156475, 43.65117687)}"
-17632,25292,GO-2017520854,B&E,2017-03-17T00:00:00,2017,March,Friday,17,76,19,2017-03-24T00:00:00,2017,March,Friday,24,83,8,D14,Toronto,81,Trinity-Bellwoods (81),"Apartment (Rooming House, Condo)",Apartment,OTHER,COLNOGOL,OT,0,BLU,5500.0,STOLEN,17601,"{'type': 'Point', 'coordinates': (-79.41087977, 43.65130826)}"
-17633,21,GO-20169014786,THEFT UNDER - BICYCLE,2016-12-15T00:00:00,2016,December,Thursday,15,350,17,2016-12-17T00:00:00,2016,December,Saturday,17,352,17,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,TR,EX 6,MT,27,WHI,3299.0,STOLEN,17602,"{'type': 'Point', 'coordinates': (-79.4146674, 43.64064217)}"
-17634,44,GO-20179000489,THEFT UNDER,2017-01-08T00:00:00,2017,January,Sunday,8,8,20,2017-01-11T00:00:00,2017,January,Wednesday,11,11,16,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SC,,OT,1,WHI,120.0,STOLEN,17603,"{'type': 'Point', 'coordinates': (-79.4166006, 43.6411109)}"
-17635,46,GO-201764413,THEFT UNDER - BICYCLE,2017-01-10T00:00:00,2017,January,Tuesday,10,10,21,2017-01-11T00:00:00,2017,January,Wednesday,11,11,16,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,,RG,12,WHI,1000.0,STOLEN,17604,"{'type': 'Point', 'coordinates': (-79.40266560000002, 43.64392483)}"
-17636,83,GO-2017237216,THEFT UNDER - BICYCLE,2017-02-05T00:00:00,2017,February,Sunday,5,36,23,2017-02-07T00:00:00,2017,February,Tuesday,7,38,13,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MIELE,,RC,14,BLU,1000.0,STOLEN,17605,"{'type': 'Point', 'coordinates': (-79.41121981, 43.6457475)}"
-17637,120,GO-20179002592,THEFT UNDER - BICYCLE,2016-11-22T00:00:00,2016,November,Tuesday,22,327,2,2017-02-28T00:00:00,2017,February,Tuesday,28,59,14,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,OT,1,BLU,500.0,STOLEN,17606,"{'type': 'Point', 'coordinates': (-79.42053557, 43.63830759)}"
-17638,168,GO-20179003710,THEFT UNDER - BICYCLE,2017-03-17T00:00:00,2017,March,Friday,17,76,1,2017-03-24T00:00:00,2017,March,Friday,24,83,8,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,,TO,21,,1200.0,STOLEN,17607,"{'type': 'Point', 'coordinates': (-79.40854285, 43.64628799)}"
-17639,18329,GO-20142128141,THEFT UNDER,2014-05-21T00:00:00,2014,May,Wednesday,21,141,18,2014-05-22T00:00:00,2014,May,Thursday,22,142,10,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,REEBOK,MOVE PREMIERE,OT,7,WHI,250.0,STOLEN,17609,"{'type': 'Point', 'coordinates': (-79.41170542, 43.64145102)}"
-17640,4275,GO-2019876719,B&E,2019-05-10T00:00:00,2019,May,Friday,10,130,18,2019-05-14T00:00:00,2019,May,Tuesday,14,134,12,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,BIANCHI,PRIMO,RC,12,BLU,350.0,STOLEN,17610,"{'type': 'Point', 'coordinates': (-79.40517849, 43.63747213)}"
-17641,18340,GO-20142296884,THEFT OVER,2014-05-10T00:00:00,2014,May,Saturday,10,130,19,2014-06-15T00:00:00,2014,June,Sunday,15,166,17,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CANNONDALE,JEKYLL,MT,24,REDWHI,3000.0,STOLEN,17611,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-17642,4281,GO-2019887325,B&E,2019-05-05T00:00:00,2019,May,Sunday,5,125,19,2019-05-15T00:00:00,2019,May,Wednesday,15,135,19,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,DAVINCI,HATCHET RIVAL,RC,21,BLKRED,2000.0,STOLEN,17612,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17643,18343,GO-20142400943,THEFT UNDER,2014-06-28T00:00:00,2014,June,Saturday,28,179,19,2014-06-30T00:00:00,2014,June,Monday,30,181,13,D14,Toronto,82,Niagara (82),"Open Areas (Lakes, Parks, Rivers)",Outside,OTHER,EMO,EL,0,BLK,600.0,STOLEN,17613,"{'type': 'Point', 'coordinates': (-79.4144255, 43.6400082)}"
-17644,4294,GO-20199015410,B&E,2019-05-06T00:00:00,2019,May,Monday,6,126,19,2019-05-17T00:00:00,2019,May,Friday,17,137,13,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,KONA,LANAI,MT,18,BLK,800.0,STOLEN,17614,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17645,18345,GO-20149004631,THEFT UNDER,2014-06-28T00:00:00,2014,June,Saturday,28,179,12,2014-07-02T00:00:00,2014,July,Wednesday,2,183,17,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,RM,RC30,RG,15,WHI,420.0,STOLEN,17615,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17646,4326,GO-20199015964,THEFT UNDER - BICYCLE,2019-05-22T00:00:00,2019,May,Wednesday,22,142,9,2019-05-22T00:00:00,2019,May,Wednesday,22,142,23,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GI,TEMPT,MT,10,BLK,700.0,STOLEN,17616,"{'type': 'Point', 'coordinates': (-79.4144255, 43.6400082)}"
-17647,18351,GO-20149005028,THEFT UNDER,2014-07-15T00:00:00,2014,July,Tuesday,15,196,20,2014-07-16T00:00:00,2014,July,Wednesday,16,197,6,D14,Toronto,82,Niagara (82),Schools During Un-Supervised Activity,Educational,FJ,DECALARATION,RG,1,BLK,600.0,STOLEN,17617,"{'type': 'Point', 'coordinates': (-79.40235491, 43.63675803)}"
-17648,4332,GO-2019883433,B&E,2019-05-07T00:00:00,2019,May,Tuesday,7,127,19,2019-05-15T00:00:00,2019,May,Wednesday,15,135,13,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,UNKNOWN,RG,1,BLU,0.0,STOLEN,17618,"{'type': 'Point', 'coordinates': (-79.40397083000002, 43.64718733)}"
-17649,18352,GO-20149005114,THEFT UNDER,2014-07-18T00:00:00,2014,July,Friday,18,199,12,2014-07-18T00:00:00,2014,July,Friday,18,199,13,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,,,OT,21,BLK,400.0,STOLEN,17619,"{'type': 'Point', 'coordinates': (-79.40185545, 43.64191381)}"
-17650,4356,GO-20199016466,THEFT UNDER - BICYCLE,2019-05-27T00:00:00,2019,May,Monday,27,147,0,2019-05-27T00:00:00,2019,May,Monday,27,147,14,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MOUNTAIN BIKE,MT,16,BLK,400.0,STOLEN,17620,"{'type': 'Point', 'coordinates': (-79.40767877, 43.64290821)}"
-17651,18361,GO-20149006047,THEFT UNDER,2014-08-17T00:00:00,2014,August,Sunday,17,229,16,2014-08-18T00:00:00,2014,August,Monday,18,230,12,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,SIRRUS,OT,18,WHI,800.0,STOLEN,17621,"{'type': 'Point', 'coordinates': (-79.40056579, 43.63446271)}"
-17652,4388,GO-20199017030,THEFT UNDER,2019-05-17T00:00:00,2019,May,Friday,17,137,14,2019-05-31T00:00:00,2019,May,Friday,31,151,14,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,A796201609127,RG,1,DGR,650.0,STOLEN,17622,"{'type': 'Point', 'coordinates': (-79.41953608, 43.63849391)}"
-17653,305,GO-2017759528,THEFT UNDER - BICYCLE,2017-04-29T00:00:00,2017,April,Saturday,29,119,17,2017-04-30T00:00:00,2017,April,Sunday,30,120,15,D14,Toronto,82,Niagara (82),Pharmacy,Other,SCOTT,RANSOM 30,MT,0,WHI,4000.0,STOLEN,17623,"{'type': 'Point', 'coordinates': (-79.39968108, 43.63663014)}"
-17654,6964,GO-20209019681,THEFT UNDER,2020-08-08T00:00:00,2020,August,Saturday,8,221,11,2020-08-08T00:00:00,2020,August,Saturday,8,221,11,D14,Toronto,82,Niagara (82),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,BAD BOY FATTY,OT,18,BLK,1000.0,STOLEN,17624,"{'type': 'Point', 'coordinates': (-79.40918547, 43.644676)}"
-17655,311,GO-20179005517,THEFT UNDER - BICYCLE,2017-04-01T00:00:00,2017,April,Saturday,1,91,0,2017-05-01T00:00:00,2017,May,Monday,1,121,11,D14,Toronto,82,Niagara (82),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,5,BLU,500.0,STOLEN,17625,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-17656,319,GO-20179005597,THEFT UNDER - BICYCLE,2017-05-02T00:00:00,2017,May,Tuesday,2,122,15,2017-05-02T00:00:00,2017,May,Tuesday,2,122,15,D14,Toronto,82,Niagara (82),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KH,FLITE ONE HUNDR,RC,1,BLK,900.0,STOLEN,17626,"{'type': 'Point', 'coordinates': (-79.41277265, 43.64431894)}"
-17657,6976,GO-20209020451,THEFT UNDER,2020-08-15T00:00:00,2020,August,Saturday,15,228,15,2020-08-17T00:00:00,2020,August,Monday,17,230,15,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GI,BOULDER SE,MT,3,BLU,300.0,STOLEN,17627,"{'type': 'Point', 'coordinates': (-79.39999105, 43.63737009)}"
-17658,326,GO-20179005699,THEFT UNDER - BICYCLE,2017-02-01T00:00:00,2017,February,Wednesday,1,32,0,2017-05-04T00:00:00,2017,May,Thursday,4,124,1,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,TR,2500,RC,21,RED,1800.0,STOLEN,17628,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17659,18364,GO-20149006317,THEFT UNDER,2014-08-26T00:00:00,2014,August,Tuesday,26,238,7,2014-08-26T00:00:00,2014,August,Tuesday,26,238,18,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,FJ,CLASSIC,RC,1,BLK,600.0,STOLEN,17629,"{'type': 'Point', 'coordinates': (-79.40264178, 43.63743971)}"
-17660,4404,GO-20199017215,THEFT UNDER - BICYCLE,2019-02-03T00:00:00,2019,February,Sunday,3,34,10,2019-06-03T00:00:00,2019,June,Monday,3,154,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM 2,MT,18,SIL,800.0,STOLEN,17630,"{'type': 'Point', 'coordinates': (-79.41138445, 43.63917336)}"
-17661,6996,GO-20201539437,THEFT UNDER - BICYCLE,2020-08-10T00:00:00,2020,August,Monday,10,223,18,2020-08-16T00:00:00,2020,August,Sunday,16,229,17,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GT,PANTERA ELITE,MT,11,BLU,1800.0,STOLEN,17631,"{'type': 'Point', 'coordinates': (-79.4166006, 43.6411109)}"
-17662,18365,GO-20149006393,THEFT UNDER,2014-08-24T00:00:00,2014,August,Sunday,24,236,17,2014-08-30T00:00:00,2014,August,Saturday,30,242,8,D14,Toronto,82,Niagara (82),Go Station,Transit,KO,DEW,RG,24,BLK,600.0,STOLEN,17632,"{'type': 'Point', 'coordinates': (-79.41861725, 43.63533762)}"
-17663,4435,GO-20199017902,THEFT UNDER - BICYCLE,2019-06-08T00:00:00,2019,June,Saturday,8,159,19,2019-06-09T00:00:00,2019,June,Sunday,9,160,0,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,GTX - 2 700C,OT,21,BLK,500.0,STOLEN,17633,"{'type': 'Point', 'coordinates': (-79.41182474, 43.63407409)}"
-17664,7058,GO-20209021146,THEFT UNDER,2020-08-22T00:00:00,2020,August,Saturday,22,235,0,2020-08-24T00:00:00,2020,August,Monday,24,237,12,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,SPORTCLUB,RG,1,BLU,200.0,STOLEN,17634,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17665,18390,GO-20159001805,THEFT UNDER,2015-04-07T00:00:00,2015,April,Tuesday,7,97,11,2015-04-09T00:00:00,2015,April,Thursday,9,99,16,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,DB,INSIGHT,MT,21,BGE,0.0,STOLEN,17635,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17666,4442,GO-20199018000,THEFT UNDER - BICYCLE,2019-06-10T00:00:00,2019,June,Monday,10,161,0,2019-06-10T00:00:00,2019,June,Monday,10,161,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,RA,2015 RUSH HOUR,RG,1,BLK,700.0,STOLEN,17636,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17667,7105,GO-20201623422,B&E,2020-08-28T00:00:00,2020,August,Friday,28,241,9,2020-08-28T00:00:00,2020,August,Friday,28,241,16,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,NORCO,VALLANCE,OT,8,GRYWHI,1000.0,STOLEN,17637,"{'type': 'Point', 'coordinates': (-79.41138445, 43.63917336)}"
-17668,18391,GO-20159001829,THEFT UNDER,2015-04-08T00:00:00,2015,April,Wednesday,8,98,20,2015-04-10T00:00:00,2015,April,Friday,10,100,17,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE,RG,24,BLK,499.0,STOLEN,17638,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17669,4453,GO-20199018150,THEFT UNDER - BICYCLE,2019-06-08T00:00:00,2019,June,Saturday,8,159,9,2019-06-11T00:00:00,2019,June,Tuesday,11,162,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,1,BLK,500.0,STOLEN,17639,"{'type': 'Point', 'coordinates': (-79.40111777, 43.63691899)}"
-17670,7106,GO-20201623422,B&E,2020-08-28T00:00:00,2020,August,Friday,28,241,9,2020-08-28T00:00:00,2020,August,Friday,28,241,16,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,DAMCO,FIXIE,OT,1,BLKWHI,1000.0,STOLEN,17640,"{'type': 'Point', 'coordinates': (-79.41138445, 43.63917336)}"
-17671,18393,GO-20159001936,THEFT UNDER,2015-04-10T00:00:00,2015,April,Friday,10,100,21,2015-04-14T00:00:00,2015,April,Tuesday,14,104,21,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,VITA SPORT 2014,RG,27,BLK,768.0,STOLEN,17641,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17672,4472,GO-20199018403,THEFT UNDER,2019-06-11T00:00:00,2019,June,Tuesday,11,162,22,2019-06-12T00:00:00,2019,June,Wednesday,12,163,22,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,GRY,325.0,STOLEN,17642,"{'type': 'Point', 'coordinates': (-79.4023568, 43.64319258)}"
-17673,7111,GO-20209021642,B&E,2020-08-27T00:00:00,2020,August,Thursday,27,240,4,2020-08-28T00:00:00,2020,August,Friday,28,241,14,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,HUCKET,MT,24,BLU,1499.0,STOLEN,17643,"{'type': 'Point', 'coordinates': (-79.41144857, 43.6456996)}"
-17674,18394,GO-2015629883,THEFT UNDER,2015-03-07T00:00:00,2015,March,Saturday,7,66,0,2015-04-16T00:00:00,2015,April,Thursday,16,106,15,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,DAHON,,FO,7,WHI,500.0,STOLEN,17644,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-17675,18395,GO-20159002021,THEFT UNDER,2015-04-17T00:00:00,2015,April,Friday,17,107,22,2015-04-18T00:00:00,2015,April,Saturday,18,108,12,D14,Toronto,82,Niagara (82),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,7.2,RG,18,BLK,600.0,STOLEN,17645,"{'type': 'Point', 'coordinates': (-79.40575416, 43.6446926)}"
-17676,18423,GO-20151132704,B&E,2015-05-22T00:00:00,2015,May,Friday,22,142,8,2015-07-06T00:00:00,2015,July,Monday,6,187,12,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GIANT,SEEK 2013,OT,27,RED,1100.0,STOLEN,17646,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-17677,18441,GO-20159005377,THEFT UNDER,2015-08-05T00:00:00,2015,August,Wednesday,5,217,20,2015-08-05T00:00:00,2015,August,Wednesday,5,217,23,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,3 SPEED ROADSTE,RG,3,BLK,900.0,STOLEN,17647,"{'type': 'Point', 'coordinates': (-79.40128939, 43.63517525)}"
-17678,18446,GO-20151437606,THEFT UNDER,2015-08-19T00:00:00,2015,August,Wednesday,19,231,13,2015-08-21T00:00:00,2015,August,Friday,21,233,7,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GIANT,TALON,MT,21,BLKRED,,STOLEN,17648,"{'type': 'Point', 'coordinates': (-79.40537327000001, 43.63616773)}"
-17679,18447,GO-20159006034,THEFT UNDER,2015-08-18T00:00:00,2015,August,Tuesday,18,230,21,2015-08-19T00:00:00,2015,August,Wednesday,19,231,14,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,PURPLE MOUNTAIN,MT,27,PLE,400.0,STOLEN,17649,"{'type': 'Point', 'coordinates': (-79.41045766, 43.64169495)}"
-17680,18467,GO-20159008872,THEFT UNDER,2015-10-21T00:00:00,2015,October,Wednesday,21,294,23,2015-10-22T00:00:00,2015,October,Thursday,22,295,11,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,NO,THRESHOLD C3,RC,18,GRY,2500.0,STOLEN,17650,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-17681,18468,GO-20159009237,THEFT UNDER,2015-11-01T00:00:00,2015,November,Sunday,1,305,13,2015-11-01T00:00:00,2015,November,Sunday,1,305,15,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,2015 DEW PLUS,RG,18,BLK,750.0,STOLEN,17651,"{'type': 'Point', 'coordinates': (-79.40653598, 43.64668181)}"
-17682,18472,GO-20169000422,THEFT UNDER,2016-01-11T00:00:00,2016,January,Monday,11,11,7,2016-01-12T00:00:00,2016,January,Tuesday,12,12,22,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,NO,XFR,OT,21,DBL,0.0,STOLEN,17652,"{'type': 'Point', 'coordinates': (-79.40680169, 43.63639142)}"
-17683,18473,GO-20169000864,THEFT UNDER,2016-01-26T00:00:00,2016,January,Tuesday,26,26,21,2016-01-27T00:00:00,2016,January,Wednesday,27,27,8,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,BI,FALCON,RC,1,BLK,750.0,STOLEN,17653,"{'type': 'Point', 'coordinates': (-79.40767084, 43.64646816)}"
-17684,18475,GO-20169001570,THEFT UNDER,2016-02-20T00:00:00,2016,February,Saturday,20,51,1,2016-02-20T00:00:00,2016,February,Saturday,20,51,2,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RA,BACK ALLEY,OT,1,BLK,400.0,UNKNOWN,17654,"{'type': 'Point', 'coordinates': (-79.42237064, 43.64349082)}"
-17685,18483,GO-2016766006,THEFT UNDER,2016-04-30T00:00:00,2016,April,Saturday,30,121,18,2016-05-04T00:00:00,2016,May,Wednesday,4,125,19,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,,OT,15,GRY,300.0,STOLEN,17655,"{'type': 'Point', 'coordinates': (-79.40680169, 43.63639142)}"
-17686,18486,GO-20169004495,THEFT UNDER - BICYCLE,2016-05-13T00:00:00,2016,May,Friday,13,134,20,2016-05-14T00:00:00,2016,May,Saturday,14,135,13,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,,MT,18,BLU,100.0,STOLEN,17656,"{'type': 'Point', 'coordinates': (-79.40138212, 43.64074836)}"
-17687,18487,GO-2016870683,THEFT UNDER - BICYCLE,2016-05-20T00:00:00,2016,May,Friday,20,141,14,2016-05-20T00:00:00,2016,May,Friday,20,141,18,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,ELECTRA,,OT,21,WHISIL,600.0,STOLEN,17657,"{'type': 'Point', 'coordinates': (-79.39948839, 43.63339968)}"
-17688,18498,GO-20169005757,THEFT UNDER,2016-06-12T00:00:00,2016,June,Sunday,12,164,3,2016-06-14T00:00:00,2016,June,Tuesday,14,166,9,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,SC,VOLARE 1300,RG,21,WHI,400.0,STOLEN,17658,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17689,18500,GO-20161055600,THEFT UNDER - BICYCLE,2016-06-12T00:00:00,2016,June,Sunday,12,164,18,2016-06-17T00:00:00,2016,June,Friday,17,169,11,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,AWLEZ,RC,12,BLU,2500.0,STOLEN,17659,"{'type': 'Point', 'coordinates': (-79.39968108, 43.63663014)}"
-17690,18504,GO-20161105830,THEFT UNDER - BICYCLE,2016-06-25T00:00:00,2016,June,Saturday,25,177,18,2016-06-25T00:00:00,2016,June,Saturday,25,177,18,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RG,6,WHI,650.0,STOLEN,17660,"{'type': 'Point', 'coordinates': (-79.41144857, 43.6456996)}"
-17691,332,GO-20179005771,THEFT UNDER,2017-04-29T00:00:00,2017,April,Saturday,29,119,17,2017-05-05T00:00:00,2017,May,Friday,5,125,12,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,CA,,RG,24,BLK,1800.0,STOLEN,17661,"{'type': 'Point', 'coordinates': (-79.40537327000001, 43.63616773)}"
-17692,18505,GO-20161109671,B&E W'INTENT,2016-06-19T00:00:00,2016,June,Sunday,19,171,16,2016-06-25T00:00:00,2016,June,Saturday,25,177,8,D14,Toronto,82,Niagara (82),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,,RG,15,TRQ,850.0,STOLEN,17662,"{'type': 'Point', 'coordinates': (-79.41720467, 43.64099056)}"
-17693,20781,GO-20209018678,THEFT UNDER,2020-07-24T00:00:00,2020,July,Friday,24,206,12,2020-07-27T00:00:00,2020,July,Monday,27,209,14,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,SC,MERIDIAN TRICYC,TR,1,RED,500.0,STOLEN,17663,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17694,20794,GO-20209020076,THEFT UNDER,2020-08-07T00:00:00,2020,August,Friday,7,220,12,2020-08-13T00:00:00,2020,August,Thursday,13,226,13,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,TOURING HYBRID,EL,30,DBL,4500.0,STOLEN,17664,"{'type': 'Point', 'coordinates': (-79.40537327000001, 43.63616773)}"
-17695,20804,GO-20209022468,THEFT UNDER,2020-09-05T00:00:00,2020,September,Saturday,5,249,6,2020-09-06T00:00:00,2020,September,Sunday,6,250,13,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,LOOKFAR,RG,20,BLK,983.0,STOLEN,17665,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17696,20811,GO-20209022853,THEFT UNDER,2020-09-10T00:00:00,2020,September,Thursday,10,254,4,2020-09-10T00:00:00,2020,September,Thursday,10,254,13,D14,Toronto,82,Niagara (82),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,2017 FX S4,RG,22,SIL,1100.0,STOLEN,17666,"{'type': 'Point', 'coordinates': (-79.41317391, 43.64319421)}"
-17697,20821,GO-20209026207,THEFT UNDER,2020-10-03T00:00:00,2020,October,Saturday,3,277,8,2020-10-13T00:00:00,2020,October,Tuesday,13,287,8,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,,MT,24,RED,600.0,STOLEN,17667,"{'type': 'Point', 'coordinates': (-79.4082535, 43.64348309)}"
-17698,20824,GO-20209027175,THEFT UNDER,2020-10-19T00:00:00,2020,October,Monday,19,293,0,2020-10-21T00:00:00,2020,October,Wednesday,21,295,12,D14,Toronto,82,Niagara (82),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,URBANIA 5,RG,18,BLK,500.0,STOLEN,17668,"{'type': 'Point', 'coordinates': (-79.40056579, 43.63446271)}"
-17699,20833,GO-20209029604,THEFT UNDER,2020-11-14T00:00:00,2020,November,Saturday,14,319,14,2020-11-14T00:00:00,2020,November,Saturday,14,319,14,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,BAD BOY 5,RG,21,BLK,1200.0,STOLEN,17669,"{'type': 'Point', 'coordinates': (-79.4166006, 43.6411109)}"
-17700,20838,GO-20209030819,THEFT UNDER,2020-11-26T00:00:00,2020,November,Thursday,26,331,15,2020-11-28T00:00:00,2020,November,Saturday,28,333,17,D14,Toronto,82,Niagara (82),Bar / Restaurant,Commercial,RA,,RG,6,BLU,130.0,STOLEN,17670,"{'type': 'Point', 'coordinates': (-79.41241449, 43.64334015)}"
-17701,20841,GO-20209032453,THEFT UNDER,2020-12-19T00:00:00,2020,December,Saturday,19,354,0,2020-12-19T00:00:00,2020,December,Saturday,19,354,21,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,21,GLD,0.0,STOLEN,17671,"{'type': 'Point', 'coordinates': (-79.40767877, 43.64290821)}"
-17702,20971,GO-20189040011,THEFT UNDER - BICYCLE,2018-11-27T00:00:00,2018,November,Tuesday,27,331,7,2018-11-27T00:00:00,2018,November,Tuesday,27,331,16,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,KO,COWAN,MT,1,CPR,500.0,STOLEN,17672,"{'type': 'Point', 'coordinates': (-79.40517849, 43.63747213)}"
-17703,20973,GO-20189040042,THEFT UNDER - BICYCLE,2018-11-27T00:00:00,2018,November,Tuesday,27,331,7,2018-11-27T00:00:00,2018,November,Tuesday,27,331,20,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,MA,LARKSPUR,RG,10,GRY,550.0,STOLEN,17673,"{'type': 'Point', 'coordinates': (-79.40517849, 43.63747213)}"
-17704,20978,GO-20189043730,THEFT UNDER - BICYCLE,2018-12-30T00:00:00,2018,December,Sunday,30,364,11,2018-12-30T00:00:00,2018,December,Sunday,30,364,12,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,MT,11,SIL,0.0,STOLEN,17674,"{'type': 'Point', 'coordinates': (-79.4166006, 43.6411109)}"
-17705,20983,GO-20199004043,THEFT UNDER - BICYCLE,2019-01-25T00:00:00,2019,January,Friday,25,25,20,2019-01-31T00:00:00,2019,January,Thursday,31,31,9,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,HARDROCK SPORT,MT,24,BLK,0.0,STOLEN,17675,"{'type': 'Point', 'coordinates': (-79.4144255, 43.6400082)}"
-17706,20986,GO-20199005693,THEFT UNDER - BICYCLE,2018-10-16T00:00:00,2018,October,Tuesday,16,289,15,2019-02-16T00:00:00,2019,February,Saturday,16,47,15,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,TR,"7.2 FX BLK, 22.",RG,24,BLK,600.0,STOLEN,17676,"{'type': 'Point', 'coordinates': (-79.4144255, 43.6400082)}"
-17707,20987,GO-20199006584,THEFT UNDER - BICYCLE,2019-02-22T00:00:00,2019,February,Friday,22,53,15,2019-02-25T00:00:00,2019,February,Monday,25,56,15,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GI,LIV ALIGHT,RG,27,BLK,850.0,STOLEN,17677,"{'type': 'Point', 'coordinates': (-79.41045766, 43.64169495)}"
-17708,20991,GO-2019744842,THEFT UNDER - BICYCLE,2019-04-17T00:00:00,2019,April,Wednesday,17,107,15,2019-04-25T00:00:00,2019,April,Thursday,25,115,14,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MARIN,,OT,21,BLK,1200.0,STOLEN,17678,"{'type': 'Point', 'coordinates': (-79.4144255, 43.6400082)}"
-17709,20995,GO-20199015377,THEFT UNDER,2019-05-17T00:00:00,2019,May,Friday,17,137,3,2019-05-17T00:00:00,2019,May,Friday,17,137,10,D14,Toronto,82,Niagara (82),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,GRATER,RG,8,MRN,500.0,STOLEN,17679,"{'type': 'Point', 'coordinates': (-79.40471258, 43.64210995)}"
-17710,21000,GO-20199016689,THEFT UNDER - BICYCLE,2019-05-24T00:00:00,2019,May,Friday,24,144,22,2019-05-28T00:00:00,2019,May,Tuesday,28,148,18,D14,Toronto,82,Niagara (82),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,OT,1,RED,300.0,STOLEN,17680,"{'type': 'Point', 'coordinates': (-79.40264178, 43.63743971)}"
-17711,21017,GO-20199021145,THEFT UNDER - BICYCLE,2019-07-05T00:00:00,2019,July,Friday,5,186,14,2019-07-05T00:00:00,2019,July,Friday,5,186,16,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,7005,RC,21,BLU,129.0,STOLEN,17681,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-17712,21022,GO-20199022071,THEFT UNDER - BICYCLE,2019-07-12T00:00:00,2019,July,Friday,12,193,15,2019-07-12T00:00:00,2019,July,Friday,12,193,15,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,RA,,MT,12,BLK,800.0,STOLEN,17682,"{'type': 'Point', 'coordinates': (-79.40235491, 43.63675803)}"
-17713,21026,GO-20199023203,THEFT UNDER,2019-07-21T00:00:00,2019,July,Sunday,21,202,22,2019-07-22T00:00:00,2019,July,Monday,22,203,8,D14,Toronto,82,Niagara (82),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,YORKVILLE XL,RG,1,BLK,530.0,STOLEN,17683,"{'type': 'Point', 'coordinates': (-79.4082535, 43.64348309)}"
-17714,21037,GO-20199025080,THEFT UNDER - BICYCLE,2019-07-28T00:00:00,2019,July,Sunday,28,209,3,2019-08-05T00:00:00,2019,August,Monday,5,217,23,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,CARTIER,RG,9,BLK,950.0,STOLEN,17684,"{'type': 'Point', 'coordinates': (-79.39968296, 43.63495137)}"
-17715,21038,GO-20191487530,B&E,2018-07-07T00:00:00,2018,July,Saturday,7,188,12,2019-08-06T00:00:00,2019,August,Tuesday,6,218,23,D14,Toronto,82,Niagara (82),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,ROCK HOPPER,MT,18,BLK,,STOLEN,17685,"{'type': 'Point', 'coordinates': (-79.40235491, 43.63675803)}"
-17716,21044,GO-20199026893,THEFT UNDER - BICYCLE,2019-08-19T00:00:00,2019,August,Monday,19,231,21,2019-08-20T00:00:00,2019,August,Tuesday,20,232,9,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GI,SEEK,RG,20,BLU,800.0,STOLEN,17686,"{'type': 'Point', 'coordinates': (-79.40235491, 43.63675803)}"
-17717,21045,GO-20199026944,THEFT UNDER,2019-07-26T00:00:00,2019,July,Friday,26,207,23,2019-08-20T00:00:00,2019,August,Tuesday,20,232,12,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,NO,SEARCH CLARIS 2,RC,14,BLK,1014.0,STOLEN,17687,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-17718,21046,GO-20199027325,THEFT UNDER - BICYCLE,2019-07-21T00:00:00,2019,July,Sunday,21,202,17,2019-08-22T00:00:00,2019,August,Thursday,22,234,20,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,"26"""" FRONT SUSPE",MT,30,BLK,138.0,STOLEN,17688,"{'type': 'Point', 'coordinates': (-79.40172265, 43.63837662)}"
-17719,21047,GO-20199027325,THEFT UNDER - BICYCLE,2019-07-21T00:00:00,2019,July,Sunday,21,202,17,2019-08-22T00:00:00,2019,August,Thursday,22,234,20,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,"26"""" FRONT SUSPE",MT,30,BLK,138.0,STOLEN,17689,"{'type': 'Point', 'coordinates': (-79.40172265, 43.63837662)}"
-17720,21051,GO-20199027803,THEFT UNDER,2019-07-21T00:00:00,2019,July,Sunday,21,202,21,2019-08-27T00:00:00,2019,August,Tuesday,27,239,6,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,21,GRY,650.0,STOLEN,17690,"{'type': 'Point', 'coordinates': (-79.39968108, 43.63663014)}"
-17721,21053,GO-20199028307,THEFT UNDER,2019-08-29T00:00:00,2019,August,Thursday,29,241,6,2019-08-30T00:00:00,2019,August,Friday,30,242,19,D14,Toronto,82,Niagara (82),Go Station,Transit,MA,LARKSPUR CS3,RG,27,GRY,700.0,STOLEN,17691,"{'type': 'Point', 'coordinates': (-79.41861725, 43.63533762)}"
-17722,21054,GO-20191590229,PROPERTY - LOST,2019-08-21T00:00:00,2019,August,Wednesday,21,233,7,2019-08-31T00:00:00,2019,August,Saturday,31,243,20,D14,Toronto,82,Niagara (82),"Gas Station (Self, Full, Attached Convenience)",Commercial,GIANT,A710,MT,24,GRY,40.0,UNKNOWN,17692,"{'type': 'Point', 'coordinates': (-79.41121981, 43.6457475)}"
-17723,21055,GO-20191676984,B&E,2019-08-24T00:00:00,2019,August,Saturday,24,236,18,2019-09-02T00:00:00,2019,September,Monday,2,245,10,D14,Toronto,82,Niagara (82),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,,RC,21,REDBLK,2000.0,STOLEN,17693,"{'type': 'Point', 'coordinates': (-79.40524581, 43.64340152)}"
-17724,21058,GO-20199029372,THEFT FROM MOTOR VEHICLE UNDER,2019-09-06T00:00:00,2019,September,Friday,6,249,7,2019-09-09T00:00:00,2019,September,Monday,9,252,21,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,2012 QUICK3HYBR,TO,11,WHI,1500.0,STOLEN,17694,"{'type': 'Point', 'coordinates': (-79.40442195, 43.64140672)}"
-17725,21067,GO-20199031257,THEFT UNDER - BICYCLE,2019-09-10T00:00:00,2019,September,Tuesday,10,253,21,2019-09-23T00:00:00,2019,September,Monday,23,266,21,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,URBANITE JUNCTI,RG,21,TRQ,800.0,STOLEN,17695,"{'type': 'Point', 'coordinates': (-79.40172265, 43.63837662)}"
-17726,21084,GO-20199034467,THEFT UNDER - BICYCLE,2019-10-19T00:00:00,2019,October,Saturday,19,292,14,2019-10-19T00:00:00,2019,October,Saturday,19,292,15,D14,Toronto,82,Niagara (82),Unknown,Other,UK,,RG,15,WHI,400.0,STOLEN,17696,"{'type': 'Point', 'coordinates': (-79.41182474, 43.63407409)}"
-17727,21090,GO-20199035504,THEFT UNDER - BICYCLE,2019-10-27T00:00:00,2019,October,Sunday,27,300,11,2019-10-28T00:00:00,2019,October,Monday,28,301,11,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,NO,CITYGLIDE,RG,7,TRQ,600.0,STOLEN,17697,"{'type': 'Point', 'coordinates': (-79.41393685, 43.64520426)}"
-17728,21092,GO-20199036669,THEFT UNDER - BICYCLE,2019-11-05T00:00:00,2019,November,Tuesday,5,309,10,2019-11-06T00:00:00,2019,November,Wednesday,6,310,20,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KH,URBAN SOUL,RG,1,BLK,550.0,STOLEN,17698,"{'type': 'Point', 'coordinates': (-79.40266560000002, 43.64392483)}"
-17729,21094,GO-20199037585,THEFT UNDER,2019-11-13T00:00:00,2019,November,Wednesday,13,317,2,2019-11-15T00:00:00,2019,November,Friday,15,319,14,D14,Toronto,82,Niagara (82),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,ROMULUS,TO,21,GRY,1500.0,STOLEN,17699,"{'type': 'Point', 'coordinates': (-79.40680169, 43.63639142)}"
-17730,21095,GO-20192214469,B&E,2019-11-07T00:00:00,2019,November,Thursday,7,311,18,2019-11-16T00:00:00,2019,November,Saturday,16,320,12,D14,Toronto,82,Niagara (82),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,SPO/25 7.3 FX,MT,15,BLK,1164.0,STOLEN,17700,"{'type': 'Point', 'coordinates': (-79.41157935, 43.6445462)}"
-17731,21104,GO-202071342,THEFT OF EBIKE UNDER $5000,2019-12-01T00:00:00,2019,December,Sunday,1,335,10,2020-01-11T00:00:00,2020,January,Saturday,11,11,11,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,MONSTER,SC,0,,2200.0,STOLEN,17701,"{'type': 'Point', 'coordinates': (-79.40128939, 43.63517525)}"
-17732,21112,GO-20209007558,THEFT UNDER - BICYCLE,2020-03-02T00:00:00,2020,March,Monday,2,62,9,2020-03-03T00:00:00,2020,March,Tuesday,3,63,1,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,MILANO,RG,21,BLK,500.0,STOLEN,17702,"{'type': 'Point', 'coordinates': (-79.41953608, 43.63849391)}"
-17733,21117,GO-20209009147,THEFT UNDER,2020-03-16T00:00:00,2020,March,Monday,16,76,9,2020-03-17T00:00:00,2020,March,Tuesday,17,77,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,DISC TRUCKER,TO,30,MRN,1000.0,STOLEN,17703,"{'type': 'Point', 'coordinates': (-79.41267012, 43.64191049)}"
-17734,21120,GO-20209010025,THEFT UNDER - BICYCLE,2020-03-28T00:00:00,2020,March,Saturday,28,88,12,2020-03-28T00:00:00,2020,March,Saturday,28,88,12,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GI,LIV INTRIGUE 2,MT,10,PLE,2800.0,STOLEN,17704,"{'type': 'Point', 'coordinates': (-79.40235491, 43.63675803)}"
-17735,21141,GO-20209014503,THEFT UNDER,2020-06-03T00:00:00,2020,June,Wednesday,3,155,20,2020-06-03T00:00:00,2020,June,Wednesday,3,155,21,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,KH,URBAN SOUL,RG,1,SIL,607.0,STOLEN,17707,"{'type': 'Point', 'coordinates': (-79.40524581, 43.64340152)}"
-17736,21142,GO-20209014700,THEFT UNDER,2020-06-03T00:00:00,2020,June,Wednesday,3,155,13,2020-06-05T00:00:00,2020,June,Friday,5,157,22,D14,Toronto,82,Niagara (82),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,1,BLK,500.0,STOLEN,17708,"{'type': 'Point', 'coordinates': (-79.41720467, 43.64099056)}"
-17737,21165,GO-20209017856,THEFT UNDER,2020-07-15T00:00:00,2020,July,Wednesday,15,197,21,2020-07-18T00:00:00,2020,July,Saturday,18,200,10,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,FX3,OT,30,BLK,1100.0,STOLEN,17709,"{'type': 'Point', 'coordinates': (-79.417071, 43.63864906)}"
-17738,21176,GO-20179009412,THEFT UNDER - BICYCLE,2017-07-02T00:00:00,2017,July,Sunday,2,183,16,2017-07-04T00:00:00,2017,July,Tuesday,4,185,16,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,BEAUMONT-7 SPEE,RG,7,GRN,220.0,STOLEN,17710,"{'type': 'Point', 'coordinates': (-79.40111777, 43.63691899)}"
-17739,21180,GO-20179010075,THEFT UNDER - BICYCLE,2017-07-12T00:00:00,2017,July,Wednesday,12,193,18,2017-07-13T00:00:00,2017,July,Thursday,13,194,9,D14,Toronto,82,Niagara (82),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,APEX,MT,24,BLK,725.0,STOLEN,17711,"{'type': 'Point', 'coordinates': (-79.41317391, 43.64319421)}"
-17740,21181,GO-20179010075,THEFT UNDER - BICYCLE,2017-07-12T00:00:00,2017,July,Wednesday,12,193,18,2017-07-13T00:00:00,2017,July,Thursday,13,194,9,D14,Toronto,82,Niagara (82),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,KROSSPORT,RG,21,WHI,565.0,STOLEN,17712,"{'type': 'Point', 'coordinates': (-79.41317391, 43.64319421)}"
-17741,21183,GO-20179010305,THEFT UNDER - BICYCLE,2017-07-15T00:00:00,2017,July,Saturday,15,196,9,2017-07-15T00:00:00,2017,July,Saturday,15,196,22,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,OT,24,BLU,300.0,STOLEN,17713,"{'type': 'Point', 'coordinates': (-79.42172781, 43.63363795)}"
-17742,21186,GO-20171308490,THEFT OF EBIKE OVER $5000,2017-07-20T00:00:00,2017,July,Thursday,20,201,1,2017-07-21T00:00:00,2017,July,Friday,21,202,10,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,STROMER,,EL,0,BLU,5999.0,STOLEN,17714,"{'type': 'Point', 'coordinates': (-79.40397083000002, 43.64718733)}"
-17743,21200,GO-20179013038,THEFT UNDER - BICYCLE,2017-08-21T00:00:00,2017,August,Monday,21,233,19,2017-08-22T00:00:00,2017,August,Tuesday,22,234,14,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,TR,CROSS RIP 2,TO,10,SIL,2200.0,STOLEN,17715,"{'type': 'Point', 'coordinates': (-79.39999105, 43.63737009)}"
-17744,21203,GO-20179013538,THEFT UNDER,2017-08-27T00:00:00,2017,August,Sunday,27,239,10,2017-08-28T00:00:00,2017,August,Monday,28,240,14,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,MT,18,BLK,500.0,STOLEN,17716,"{'type': 'Point', 'coordinates': (-79.4144255, 43.6400082)}"
-17745,21204,GO-20179013636,THEFT UNDER - BICYCLE,2017-08-29T00:00:00,2017,August,Tuesday,29,241,8,2017-08-29T00:00:00,2017,August,Tuesday,29,241,19,D14,Toronto,82,Niagara (82),Unknown,Other,NORTH ROCK,CTM,MT,21,BLK,440.0,STOLEN,17717,"{'type': 'Point', 'coordinates': (-79.4144255, 43.6400082)}"
-17746,21213,GO-20179014529,THEFT UNDER,2017-09-11T00:00:00,2017,September,Monday,11,254,22,2017-09-12T00:00:00,2017,September,Tuesday,12,255,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,TR,,RG,18,GRN,800.0,STOLEN,17718,"{'type': 'Point', 'coordinates': (-79.41720467, 43.64099056)}"
-17747,21222,GO-20179016883,THEFT UNDER,2017-10-07T00:00:00,2017,October,Saturday,7,280,20,2017-10-10T00:00:00,2017,October,Tuesday,10,283,16,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,S2,RC,10,BLK,2500.0,STOLEN,17719,"{'type': 'Point', 'coordinates': (-79.39968108, 43.63663014)}"
-17748,21226,GO-20171923508,B&E W'INTENT,2017-10-20T00:00:00,2017,October,Friday,20,293,15,2017-10-24T00:00:00,2017,October,Tuesday,24,297,7,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,,RC,12,BLKYEL,500.0,STOLEN,17720,"{'type': 'Point', 'coordinates': (-79.39999105, 43.63737009)}"
-17749,21227,GO-20171923508,B&E W'INTENT,2017-10-20T00:00:00,2017,October,Friday,20,293,15,2017-10-24T00:00:00,2017,October,Tuesday,24,297,7,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,TREK,,RC,12,RED,300.0,STOLEN,17721,"{'type': 'Point', 'coordinates': (-79.39999105, 43.63737009)}"
-17750,21256,GO-20189009008,THEFT UNDER - BICYCLE,2018-03-16T00:00:00,2018,March,Friday,16,75,14,2018-03-22T00:00:00,2018,March,Thursday,22,81,13,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ROADSTER,OT,1,BRN,650.0,STOLEN,17722,"{'type': 'Point', 'coordinates': (-79.41045766, 43.64169495)}"
-17751,21264,GO-20189013974,THEFT UNDER - BICYCLE,2018-05-05T00:00:00,2018,May,Saturday,5,125,19,2018-05-06T00:00:00,2018,May,Sunday,6,126,19,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,,TO,6,BLU,150.0,STOLEN,17723,"{'type': 'Point', 'coordinates': (-79.40537327000001, 43.63616773)}"
-17752,21276,GO-20189016423,THEFT UNDER - BICYCLE,2018-05-26T00:00:00,2018,May,Saturday,26,146,20,2018-05-27T00:00:00,2018,May,Sunday,27,147,16,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,TRAIL X SPORT,MT,24,ONG,469.0,STOLEN,17724,"{'type': 'Point', 'coordinates': (-79.39999105, 43.63737009)}"
-17753,21295,GO-20189019447,THEFT UNDER - BICYCLE,2018-06-19T00:00:00,2018,June,Tuesday,19,170,3,2018-06-20T00:00:00,2018,June,Wednesday,20,171,11,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,KO,COCO,RG,9,GRN,930.0,STOLEN,17725,"{'type': 'Point', 'coordinates': (-79.41882219, 43.64420339)}"
-17754,21328,GO-20189025334,THEFT UNDER - BICYCLE,2018-08-06T00:00:00,2018,August,Monday,6,218,10,2018-08-06T00:00:00,2018,August,Monday,6,218,18,D14,Toronto,82,Niagara (82),Go Station,Transit,OT,MARK III,RG,3,BLU,600.0,STOLEN,17726,"{'type': 'Point', 'coordinates': (-79.41861725, 43.63533762)}"
-17755,21356,GO-20189033205,THEFT UNDER - BICYCLE,2018-10-06T00:00:00,2018,October,Saturday,6,279,22,2018-10-07T00:00:00,2018,October,Sunday,7,280,17,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,SIRRIUS,RG,7,TRQ,700.0,STOLEN,17727,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-17756,21357,GO-20189033205,THEFT UNDER - BICYCLE,2018-10-06T00:00:00,2018,October,Saturday,6,279,22,2018-10-07T00:00:00,2018,October,Sunday,7,280,17,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,SIRRUS,RG,7,BLK,700.0,STOLEN,17728,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-17757,21358,GO-20189033335,THEFT UNDER - BICYCLE,2018-10-09T00:00:00,2018,October,Tuesday,9,282,2,2018-10-09T00:00:00,2018,October,Tuesday,9,282,13,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,URBANIA 1,MT,27,DBL,1100.0,STOLEN,17729,"{'type': 'Point', 'coordinates': (-79.40517849, 43.63747213)}"
-17758,21364,GO-20189034531,THEFT UNDER - BICYCLE,2018-10-18T00:00:00,2018,October,Thursday,18,291,9,2018-10-18T00:00:00,2018,October,Thursday,18,291,10,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RC,3,BLK,500.0,STOLEN,17730,"{'type': 'Point', 'coordinates': (-79.39968108, 43.63663014)}"
-17759,4482,GO-20199018548,THEFT UNDER - BICYCLE,2019-06-13T00:00:00,2019,June,Thursday,13,164,9,2019-06-14T00:00:00,2019,June,Friday,14,165,9,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GT,19 VERZA PLATIN,MT,40,SIL,700.0,STOLEN,17731,"{'type': 'Point', 'coordinates': (-79.40680169, 43.63639142)}"
-17760,7132,GO-20209021705,THEFT UNDER,2020-08-23T00:00:00,2020,August,Sunday,23,236,15,2020-08-29T00:00:00,2020,August,Saturday,29,242,12,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,IN,MONACO,RG,7,CRM,400.0,STOLEN,17732,"{'type': 'Point', 'coordinates': (-79.40680169, 43.63639142)}"
-17761,7176,GO-20209022277,THEFT UNDER,2020-09-03T00:00:00,2020,September,Thursday,3,247,12,2020-09-04T00:00:00,2020,September,Friday,4,248,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,810,OT,16,BLK,899.0,STOLEN,17733,"{'type': 'Point', 'coordinates': (-79.4166006, 43.6411109)}"
-17762,7179,GO-20201674240,THEFT UNDER,2020-08-26T00:00:00,2020,August,Wednesday,26,239,16,2020-09-04T00:00:00,2020,September,Friday,4,248,16,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,FUJI,,RG,1,BLK,800.0,STOLEN,17734,"{'type': 'Point', 'coordinates': (-79.41626354, 43.64472458)}"
-17763,7181,GO-20209022405,THEFT UNDER,2020-08-19T00:00:00,2020,August,Wednesday,19,232,12,2020-09-05T00:00:00,2020,September,Saturday,5,249,14,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,CA,2019 F,RC,11,BLU,4300.0,STOLEN,17735,"{'type': 'Point', 'coordinates': (-79.41045766, 43.64169495)}"
-17764,7192,GO-20209022486,THEFT UNDER,2020-09-04T00:00:00,2020,September,Friday,4,248,13,2020-09-06T00:00:00,2020,September,Sunday,6,250,19,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,ROAD BIKE 700C,RG,14,BLU,450.0,STOLEN,17736,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17765,4483,GO-20199018548,THEFT UNDER - BICYCLE,2019-06-13T00:00:00,2019,June,Thursday,13,164,9,2019-06-14T00:00:00,2019,June,Friday,14,165,9,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GT,VERZA CHARTREUS,MT,40,LGR,700.0,STOLEN,17737,"{'type': 'Point', 'coordinates': (-79.40680169, 43.63639142)}"
-17766,7221,GO-20209022805,THEFT UNDER - BICYCLE,2020-09-09T00:00:00,2020,September,Wednesday,9,253,17,2020-09-09T00:00:00,2020,September,Wednesday,9,253,20,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,CAAD12,RC,22,BLK,3000.0,STOLEN,17738,"{'type': 'Point', 'coordinates': (-79.41720467, 43.64099056)}"
-17767,4552,GO-20191043870,B&E,2019-04-29T00:00:00,2019,April,Monday,29,119,12,2019-06-06T00:00:00,2019,June,Thursday,6,157,19,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,MARINER,EL,6,BLK,2000.0,STOLEN,17739,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17768,7230,GO-20201728019,THEFT OVER - BICYCLE,2020-08-29T00:00:00,2020,August,Saturday,29,242,12,2020-09-12T00:00:00,2020,September,Saturday,12,256,14,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,BIANCHI,,TO,1,SIL,5000.0,STOLEN,17740,"{'type': 'Point', 'coordinates': (-79.41083033, 43.63928355)}"
-17769,4561,GO-20199019436,THEFT UNDER - BICYCLE,2019-06-19T00:00:00,2019,June,Wednesday,19,170,12,2019-06-20T00:00:00,2019,June,Thursday,20,171,19,D14,Toronto,82,Niagara (82),Unknown,Other,OT,,OT,7,PLE,300.0,STOLEN,17741,"{'type': 'Point', 'coordinates': (-79.40185545, 43.64191381)}"
-17770,7321,GO-20209024096,THEFT UNDER,2020-09-21T00:00:00,2020,September,Monday,21,265,23,2020-09-22T00:00:00,2020,September,Tuesday,22,266,15,D14,Toronto,82,Niagara (82),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,STERLING 24,RG,1,BLU,0.0,STOLEN,17742,"{'type': 'Point', 'coordinates': (-79.41744186, 43.64447905)}"
-17771,7389,GO-20209025025,THEFT UNDER,2020-09-26T00:00:00,2020,September,Saturday,26,270,15,2020-09-29T00:00:00,2020,September,Tuesday,29,273,15,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GI,RAINIER,MT,21,BLU,1200.0,STOLEN,17743,"{'type': 'Point', 'coordinates': (-79.40266560000002, 43.64392483)}"
-17772,4566,GO-20199019492,THEFT UNDER,2019-06-07T00:00:00,2019,June,Friday,7,158,13,2019-06-21T00:00:00,2019,June,Friday,21,172,7,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,TITANIUM,TO,21,SIL,1000.0,STOLEN,17744,"{'type': 'Point', 'coordinates': (-79.4023568, 43.64319258)}"
-17773,7472,GO-20201945094,THEFT UNDER - BICYCLE,2020-09-30T00:00:00,2020,September,Wednesday,30,274,18,2020-10-05T00:00:00,2020,October,Monday,5,279,12,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,DUAL SPORT 4,MT,27,GRY,1500.0,STOLEN,17745,"{'type': 'Point', 'coordinates': (-79.40128939, 43.63517525)}"
-17774,4632,GO-20199020364,THEFT UNDER,2019-06-19T00:00:00,2019,June,Wednesday,19,170,21,2019-06-27T00:00:00,2019,June,Thursday,27,178,21,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,15,GRN,800.0,STOLEN,17746,"{'type': 'Point', 'coordinates': (-79.40680169, 43.63639142)}"
-17775,4778,GO-20199022399,THEFT UNDER,2019-05-25T00:00:00,2019,May,Saturday,25,145,20,2019-07-15T00:00:00,2019,July,Monday,15,196,17,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,TR,FX 2,RG,24,BLK,800.0,STOLEN,17748,"{'type': 'Point', 'coordinates': (-79.41720467, 43.64099056)}"
-17776,4797,GO-20199022815,THEFT UNDER,2019-07-17T00:00:00,2019,July,Wednesday,17,198,23,2019-07-18T00:00:00,2019,July,Thursday,18,199,15,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,BAD BOY 1,RG,6,BLK,1500.0,STOLEN,17749,"{'type': 'Point', 'coordinates': (-79.41144857, 43.6456996)}"
-17777,4816,GO-20199023022,THEFT UNDER,2019-07-17T00:00:00,2019,July,Wednesday,17,198,18,2019-07-20T00:00:00,2019,July,Saturday,20,201,14,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,TR,FARLEY 5 FAT BI,OT,20,BLU,2100.0,STOLEN,17750,"{'type': 'Point', 'coordinates': (-79.4144255, 43.6400082)}"
-17778,4835,GO-20199023208,THEFT UNDER,2019-07-16T00:00:00,2019,July,Tuesday,16,197,17,2019-07-22T00:00:00,2019,July,Monday,22,203,20,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,KO,KULA,MT,10,BLU,800.0,STOLEN,17751,"{'type': 'Point', 'coordinates': (-79.4144255, 43.6400082)}"
-17779,4842,GO-20199023313,THEFT UNDER,2019-07-19T00:00:00,2019,July,Friday,19,200,23,2019-07-22T00:00:00,2019,July,Monday,22,203,21,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,RC,21,RED,0.0,STOLEN,17752,"{'type': 'Point', 'coordinates': (-79.41045766, 43.64169495)}"
-17780,4861,GO-20191392962,THEFT OF EBIKE UNDER $5000,2019-07-23T00:00:00,2019,July,Tuesday,23,204,18,2019-07-24T00:00:00,2019,July,Wednesday,24,205,19,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,DUCCA,EL,2,BLK,3000.0,STOLEN,17753,"{'type': 'Point', 'coordinates': (-79.42097315, 43.63947205000001)}"
-17781,4888,GO-20191408780,THEFT UNDER - BICYCLE,2019-07-13T00:00:00,2019,July,Saturday,13,194,12,2019-07-26T00:00:00,2019,July,Friday,26,207,20,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RALEIGH,BUCK ALLEY,MT,8,,,STOLEN,17754,"{'type': 'Point', 'coordinates': (-79.4166006, 43.6411109)}"
-17782,4920,GO-20199024293,THEFT UNDER - BICYCLE,2019-07-22T00:00:00,2019,July,Monday,22,203,23,2019-07-29T00:00:00,2019,July,Monday,29,210,19,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,PE,ATTITUDE,MT,21,SIL,100.0,STOLEN,17755,"{'type': 'Point', 'coordinates': (-79.41953608, 43.63849391)}"
-17783,4947,GO-20199024548,THEFT UNDER,2019-07-29T00:00:00,2019,July,Monday,29,210,12,2019-07-31T00:00:00,2019,July,Wednesday,31,212,17,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,PE,"VINTAGE, UNKNOW",RC,3,SIL,200.0,STOLEN,17756,"{'type': 'Point', 'coordinates': (-79.41953608, 43.63849391)}"
-17784,4960,GO-20191470271,B&E,2019-07-16T00:00:00,2019,July,Tuesday,16,197,21,2019-08-04T00:00:00,2019,August,Sunday,4,216,13,D14,Toronto,82,Niagara (82),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,TCR 3,RC,10,BLKBLU,2200.0,STOLEN,17757,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-17785,5003,GO-20199025408,THEFT UNDER - BICYCLE,2019-08-07T00:00:00,2019,August,Wednesday,7,219,19,2019-08-08T00:00:00,2019,August,Thursday,8,220,14,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,6,BLU,0.0,STOLEN,17758,"{'type': 'Point', 'coordinates': (-79.40537327000001, 43.63616773)}"
-17786,5020,GO-20199025593,THEFT UNDER - BICYCLE,2019-08-04T00:00:00,2019,August,Sunday,4,216,17,2019-08-09T00:00:00,2019,August,Friday,9,221,19,D14,Toronto,82,Niagara (82),Go Station,Transit,OT,1970'S,RG,1,BLU,350.0,STOLEN,17759,"{'type': 'Point', 'coordinates': (-79.41861725, 43.63533762)}"
-17787,5037,GO-20199025763,THEFT UNDER - BICYCLE,2019-08-10T00:00:00,2019,August,Saturday,10,222,12,2019-08-11T00:00:00,2019,August,Sunday,11,223,18,D14,Toronto,82,Niagara (82),Go Station,Transit,KO,PADDY WAGON,RG,1,BLK,0.0,STOLEN,17760,"{'type': 'Point', 'coordinates': (-79.41861725, 43.63533762)}"
-17788,5099,GO-20199026767,THEFT UNDER - BICYCLE,2019-08-16T00:00:00,2019,August,Friday,16,228,23,2019-08-19T00:00:00,2019,August,Monday,19,231,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,TK3,RC,1,BLK,1000.0,STOLEN,17761,"{'type': 'Point', 'coordinates': (-79.4149791, 43.64143597)}"
-17789,5113,GO-20199026957,THEFT UNDER - BICYCLE,2019-08-18T00:00:00,2019,August,Sunday,18,230,8,2019-08-20T00:00:00,2019,August,Tuesday,20,232,13,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,TR,DS8.2,MT,8,BLK,800.0,STOLEN,17762,"{'type': 'Point', 'coordinates': (-79.40264178, 43.63743971)}"
-17790,5114,GO-20199026961,THEFT UNDER - BICYCLE,2019-08-07T00:00:00,2019,August,Wednesday,7,219,0,2019-08-20T00:00:00,2019,August,Tuesday,20,232,13,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,DB,CLARITY2,MT,24,BLK,400.0,STOLEN,17763,"{'type': 'Point', 'coordinates': (-79.40517849, 43.63747213)}"
-17791,5121,GO-20199027113,THEFT UNDER - BICYCLE,2019-08-20T00:00:00,2019,August,Tuesday,20,232,4,2019-08-21T00:00:00,2019,August,Wednesday,21,233,14,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,ACME,TO,11,SIL,800.0,STOLEN,17764,"{'type': 'Point', 'coordinates': (-79.4166006, 43.6411109)}"
-17792,5165,GO-20199027692,THEFT UNDER - BICYCLE,2019-08-26T00:00:00,2019,August,Monday,26,238,11,2019-08-26T00:00:00,2019,August,Monday,26,238,11,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,CRUISER,RG,6,,300.0,STOLEN,17765,"{'type': 'Point', 'coordinates': (-79.40266560000002, 43.64392483)}"
-17793,5235,GO-20191679515,THEFT UNDER - BICYCLE,2019-09-01T00:00:00,2019,September,Sunday,1,244,21,2019-09-02T00:00:00,2019,September,Monday,2,245,18,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,ZZZ,,RC,3,BLUWHI,4000.0,STOLEN,17766,"{'type': 'Point', 'coordinates': (-79.41544967, 43.63111258)}"
-17794,5247,GO-20199028872,THEFT UNDER - BICYCLE,2019-09-04T00:00:00,2019,September,Wednesday,4,247,6,2019-09-05T00:00:00,2019,September,Thursday,5,248,15,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,21,BLK,120.0,STOLEN,17767,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17795,5251,GO-20199028908,THEFT UNDER,2019-09-04T00:00:00,2019,September,Wednesday,4,247,20,2019-09-05T00:00:00,2019,September,Thursday,5,248,22,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GT,AGGRESSOR COMP,MT,21,BLK,599.0,STOLEN,17768,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-17796,5266,GO-20199029126,THEFT UNDER,2019-09-07T00:00:00,2019,September,Saturday,7,250,1,2019-09-07T00:00:00,2019,September,Saturday,7,250,22,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,21,BLK,700.0,STOLEN,17769,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-17797,5275,GO-20191727079,THEFT OF EBIKE UNDER $5000,2019-09-06T00:00:00,2019,September,Friday,6,249,17,2019-09-09T00:00:00,2019,September,Monday,9,252,9,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,E-MOTION,NEO CROSS,EL,0,BLKWHI,4800.0,STOLEN,17770,"{'type': 'Point', 'coordinates': (-79.40680169, 43.63639142)}"
-17798,5316,GO-20191763944,B&E,2019-09-13T00:00:00,2019,September,Friday,13,256,6,2019-09-14T00:00:00,2019,September,Saturday,14,257,7,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,CERVELO,R3,RC,21,GRY,2000.0,STOLEN,17771,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17799,5348,GO-20199030329,THEFT UNDER - BICYCLE,2019-09-15T00:00:00,2019,September,Sunday,15,258,10,2019-09-17T00:00:00,2019,September,Tuesday,17,260,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,NO,,RC,10,BLU,150.0,STOLEN,17772,"{'type': 'Point', 'coordinates': (-79.41882219, 43.64420339)}"
-17800,5494,GO-20199033295,THEFT UNDER - BICYCLE,2019-10-09T00:00:00,2019,October,Wednesday,9,282,8,2019-10-09T00:00:00,2019,October,Wednesday,9,282,19,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,SC,LOCURA FS,RG,24,RED,200.0,STOLEN,17773,"{'type': 'Point', 'coordinates': (-79.41882219, 43.64420339)}"
-17801,5506,GO-20191951383,THEFT UNDER - BICYCLE,2019-09-24T00:00:00,2019,September,Tuesday,24,267,8,2019-10-09T00:00:00,2019,October,Wednesday,9,282,18,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,,RG,14,WHIYEL,500.0,STOLEN,17774,"{'type': 'Point', 'coordinates': (-79.40680169, 43.63639142)}"
-17802,5510,GO-20199033545,THEFT UNDER - BICYCLE,2019-10-04T00:00:00,2019,October,Friday,4,277,22,2019-10-11T00:00:00,2019,October,Friday,11,284,14,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ALIGHT DD CITY,RG,24,GRN,903.0,STOLEN,17775,"{'type': 'Point', 'coordinates': (-79.4166006, 43.6411109)}"
-17803,5527,GO-20199034019,THEFT UNDER - BICYCLE,2019-10-12T00:00:00,2019,October,Saturday,12,285,11,2019-10-15T00:00:00,2019,October,Tuesday,15,288,20,D14,Toronto,82,Niagara (82),Go Train,Transit,NO,2017 THRESHOLD,RC,22,ONG,3000.0,STOLEN,17776,"{'type': 'Point', 'coordinates': (-79.41861725, 43.63533762)}"
-17804,5551,GO-20199034536,THEFT UNDER - BICYCLE,2019-10-20T00:00:00,2019,October,Sunday,20,293,2,2019-10-20T00:00:00,2019,October,Sunday,20,293,13,D14,Toronto,82,Niagara (82),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,MASI CX,TO,24,TAN,1000.0,STOLEN,17777,"{'type': 'Point', 'coordinates': (-79.40471258, 43.64210995)}"
-17805,5604,GO-20199035418,THEFT UNDER - BICYCLE,2019-10-27T00:00:00,2019,October,Sunday,27,300,23,2019-10-27T00:00:00,2019,October,Sunday,27,300,23,D14,Toronto,82,Niagara (82),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,FJ,HELION,OT,3,RED,800.0,STOLEN,17778,"{'type': 'Point', 'coordinates': (-79.41068427, 43.642291)}"
-17806,5663,GO-20192158070,B&E,2019-11-07T00:00:00,2019,November,Thursday,7,311,3,2019-11-08T00:00:00,2019,November,Friday,8,312,12,D14,Toronto,82,Niagara (82),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,,RC,24,BLUWHI,,STOLEN,17779,"{'type': 'Point', 'coordinates': (-79.41138445, 43.63917336)}"
-17807,5690,GO-20192200900,B&E,2019-11-13T00:00:00,2019,November,Wednesday,13,317,22,2019-11-14T00:00:00,2019,November,Thursday,14,318,14,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,FUJI,ABSOLUTE 1.9,RG,24,YEL,580.0,STOLEN,17780,"{'type': 'Point', 'coordinates': (-79.41293739000001, 43.64259154)}"
-17808,5695,GO-20199037696,THEFT UNDER,2019-11-11T00:00:00,2019,November,Monday,11,315,20,2019-11-16T00:00:00,2019,November,Saturday,16,320,17,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,CA,CAAD8,RC,14,WHI,500.0,STOLEN,17781,"{'type': 'Point', 'coordinates': (-79.4144255, 43.6400082)}"
-17809,391,GO-2017848778,THEFT UNDER - BICYCLE,2017-05-12T00:00:00,2017,May,Friday,12,132,23,2017-05-14T00:00:00,2017,May,Sunday,14,134,10,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TREK,6KU,OT,24,BLK,799.0,STOLEN,17782,"{'type': 'Point', 'coordinates': (-79.40517849, 43.63747213)}"
-17810,5742,GO-20199039569,THEFT UNDER,2019-12-01T00:00:00,2019,December,Sunday,1,335,20,2019-12-02T00:00:00,2019,December,Monday,2,336,21,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RM,THIN AIR,MT,21,RED,1000.0,STOLEN,17783,"{'type': 'Point', 'coordinates': (-79.41523931, 43.64211694)}"
-17811,5746,GO-20199039809,THEFT UNDER - BICYCLE,2019-11-20T00:00:00,2019,November,Wednesday,20,324,18,2019-12-04T00:00:00,2019,December,Wednesday,4,338,17,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,RA,RUSH HOUR,RC,1,SIL,600.0,STOLEN,17784,"{'type': 'Point', 'coordinates': (-79.40537327000001, 43.63616773)}"
-17812,5783,GO-20199041902,THEFT UNDER,2019-12-23T00:00:00,2019,December,Monday,23,357,17,2019-12-24T00:00:00,2019,December,Tuesday,24,358,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,SC,,MT,21,,0.0,STOLEN,17785,"{'type': 'Point', 'coordinates': (-79.39948839, 43.63339968)}"
-17813,5784,GO-20199041902,THEFT UNDER,2019-12-23T00:00:00,2019,December,Monday,23,357,17,2019-12-24T00:00:00,2019,December,Tuesday,24,358,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,24,,75.0,STOLEN,17786,"{'type': 'Point', 'coordinates': (-79.39948839, 43.63339968)}"
-17814,5800,GO-20209000241,THEFT UNDER,2019-12-22T00:00:00,2019,December,Sunday,22,356,12,2020-01-03T00:00:00,2020,January,Friday,3,3,13,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,DGR,300.0,STOLEN,17787,"{'type': 'Point', 'coordinates': (-79.41045766, 43.64169495)}"
-17815,5805,GO-20209000385,THEFT UNDER,2019-12-27T00:00:00,2019,December,Friday,27,361,17,2020-01-04T00:00:00,2020,January,Saturday,4,4,22,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,BRIDGEPORT,RG,24,BLK,734.0,STOLEN,17788,"{'type': 'Point', 'coordinates': (-79.40680169, 43.63639142)}"
-17816,5810,GO-202043164,B&E W'INTENT,2019-12-27T00:00:00,2019,December,Friday,27,361,12,2020-01-07T00:00:00,2020,January,Tuesday,7,7,12,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,DOOLCE,RC,18,BLKPNK,1600.0,STOLEN,17789,"{'type': 'Point', 'coordinates': (-79.4144255, 43.6400082)}"
-17817,5811,GO-202043164,B&E W'INTENT,2019-12-27T00:00:00,2019,December,Friday,27,361,12,2020-01-07T00:00:00,2020,January,Tuesday,7,7,12,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN,,OT,0,,100.0,STOLEN,17790,"{'type': 'Point', 'coordinates': (-79.4144255, 43.6400082)}"
-17818,5828,GO-202093142,THEFT UNDER,2020-01-07T00:00:00,2020,January,Tuesday,7,7,5,2020-01-14T00:00:00,2020,January,Tuesday,14,14,13,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,SCOTT,,MT,0,BLK,1000.0,STOLEN,17791,"{'type': 'Point', 'coordinates': (-79.40430715, 43.64464636)}"
-17819,5829,GO-202093142,THEFT UNDER,2020-01-07T00:00:00,2020,January,Tuesday,7,7,5,2020-01-14T00:00:00,2020,January,Tuesday,14,14,13,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OTHER,,RC,0,GLD,200.0,STOLEN,17792,"{'type': 'Point', 'coordinates': (-79.40430715, 43.64464636)}"
-17820,5834,GO-2020108283,THEFT UNDER,2020-01-16T00:00:00,2020,January,Thursday,16,16,13,2020-01-16T00:00:00,2020,January,Thursday,16,16,14,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,EWILD,EL,1,WHI,2200.0,STOLEN,17793,"{'type': 'Point', 'coordinates': (-79.41720467, 43.64099056)}"
-17821,5900,GO-20209005762,THEFT UNDER,2020-01-24T00:00:00,2020,January,Friday,24,24,15,2020-02-17T00:00:00,2020,February,Monday,17,48,13,D14,Toronto,82,Niagara (82),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,KO,,MT,24,BLK,225.0,STOLEN,17794,"{'type': 'Point', 'coordinates': (-79.41958545, 43.64298791)}"
-17822,5946,GO-20209007558,THEFT UNDER - BICYCLE,2020-03-02T00:00:00,2020,March,Monday,2,62,9,2020-03-03T00:00:00,2020,March,Tuesday,3,63,1,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,MILANO,RG,21,BLK,500.0,STOLEN,17795,"{'type': 'Point', 'coordinates': (-79.41953608, 43.63849391)}"
-17823,5988,GO-20209009733,THEFT UNDER,2020-03-24T00:00:00,2020,March,Tuesday,24,84,6,2020-03-24T00:00:00,2020,March,Tuesday,24,84,16,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,NO,CHARGER 7.3,MT,20,BLK,950.0,STOLEN,17796,"{'type': 'Point', 'coordinates': (-79.40111777, 43.63691899)}"
-17824,5994,GO-20209009919,THEFT UNDER,2020-03-21T00:00:00,2020,March,Saturday,21,81,17,2020-03-26T00:00:00,2020,March,Thursday,26,86,17,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,,RG,18,BLK,0.0,STOLEN,17797,"{'type': 'Point', 'coordinates': (-79.39968108, 43.63663014)}"
-17825,5999,GO-20209009852,THEFT FROM MOTOR VEHICLE UNDER,2020-03-24T00:00:00,2020,March,Tuesday,24,84,16,2020-03-26T00:00:00,2020,March,Thursday,26,86,9,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,DOLCE ELITE,RC,21,WHI,700.0,STOLEN,17798,"{'type': 'Point', 'coordinates': (-79.40056579, 43.63446271)}"
-17826,6011,GO-2020437191,THEFT UNDER - BICYCLE,2020-02-01T00:00:00,2020,February,Saturday,1,32,10,2020-03-01T00:00:00,2020,March,Sunday,1,61,20,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,DOLCE ELITE,RC,21,WHI,,STOLEN,17799,"{'type': 'Point', 'coordinates': (-79.39948839, 43.63339968)}"
-17827,6056,GO-20209010993,THEFT UNDER,2020-04-03T00:00:00,2020,April,Friday,3,94,6,2020-04-12T00:00:00,2020,April,Sunday,12,103,19,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,FJ,FEATHER,RG,1,BLK,800.0,STOLEN,17800,"{'type': 'Point', 'coordinates': (-79.4166006, 43.6411109)}"
-17828,6058,GO-20209011025,THEFT UNDER,2020-04-05T00:00:00,2020,April,Sunday,5,96,17,2020-04-13T00:00:00,2020,April,Monday,13,104,13,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GT,TRANSEO,OT,7,GRY,500.0,STOLEN,17801,"{'type': 'Point', 'coordinates': (-79.40517849, 43.63747213)}"
-17829,6071,GO-20209011314,THEFT UNDER,2020-04-13T00:00:00,2020,April,Monday,13,104,17,2020-04-16T00:00:00,2020,April,Thursday,16,107,17,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,NATURE PRO,MT,21,BLK,1200.0,STOLEN,17802,"{'type': 'Point', 'coordinates': (-79.4146674, 43.64064217)}"
-17830,6074,GO-20209011382,THEFT UNDER,2020-04-11T00:00:00,2020,April,Saturday,11,102,14,2020-04-17T00:00:00,2020,April,Friday,17,108,17,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,LOUIS GARNEAU,URBANIA 4,RG,24,,600.0,STOLEN,17803,"{'type': 'Point', 'coordinates': (-79.41045766, 43.64169495)}"
-17831,6078,GO-2020743011,THEFT UNDER,2020-04-13T00:00:00,2020,April,Monday,13,104,14,2020-04-19T00:00:00,2020,April,Sunday,19,110,15,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MARIN OR MARINO,FAIRFAX,OT,1,BLK,1000.0,RECOVERED,17804,"{'type': 'Point', 'coordinates': (-79.40516588, 43.64696705000001)}"
-17832,6083,GO-20209011538,THEFT UNDER,2020-04-17T00:00:00,2020,April,Friday,17,108,11,2020-04-20T00:00:00,2020,April,Monday,20,111,11,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,WELLINGTON,RG,27,LBL,300.0,STOLEN,17805,"{'type': 'Point', 'coordinates': (-79.41045766, 43.64169495)}"
-17833,6096,GO-2020778804,B&E,2020-04-24T00:00:00,2020,April,Friday,24,115,10,2020-04-24T00:00:00,2020,April,Friday,24,115,17,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,OT,0,,2500.0,STOLEN,17806,"{'type': 'Point', 'coordinates': (-79.39948839, 43.63339968)}"
-17834,6111,GO-20209012024,THEFT UNDER,2020-04-27T00:00:00,2020,April,Monday,27,118,23,2020-04-27T00:00:00,2020,April,Monday,27,118,23,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,RM,,MT,18,GRY,500.0,STOLEN,17807,"{'type': 'Point', 'coordinates': (-79.41045766, 43.64169495)}"
-17835,6134,GO-2020743011,THEFT UNDER,2020-04-13T00:00:00,2020,April,Monday,13,104,14,2020-04-19T00:00:00,2020,April,Sunday,19,110,15,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MARIN OR MARINO,FAIRFAX,OT,1,BLK,1000.0,RECOVERED,17808,"{'type': 'Point', 'coordinates': (-79.40516588, 43.64696705000001)}"
-17836,6150,GO-20209012595,THEFT UNDER,2020-05-06T00:00:00,2020,May,Wednesday,6,127,18,2020-05-06T00:00:00,2020,May,Wednesday,6,127,18,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GI,19 ALIGHT 2 CIT,RG,24,BLU,749.0,STOLEN,17809,"{'type': 'Point', 'coordinates': (-79.4166006, 43.6411109)}"
-17837,6171,GO-20209012998,THEFT UNDER,2020-05-06T00:00:00,2020,May,Wednesday,6,127,19,2020-05-12T00:00:00,2020,May,Tuesday,12,133,19,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GT,,RG,24,BLK,600.0,STOLEN,17810,"{'type': 'Point', 'coordinates': (-79.40111777, 43.63691899)}"
-17838,6193,GO-20209013276,THEFT UNDER - BICYCLE,2020-05-16T00:00:00,2020,May,Saturday,16,137,11,2020-05-16T00:00:00,2020,May,Saturday,16,137,21,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,RG,30,BLK,400.0,STOLEN,17811,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17839,6215,GO-20209013592,THEFT UNDER,2020-05-16T00:00:00,2020,May,Saturday,16,137,21,2020-05-21T00:00:00,2020,May,Thursday,21,142,11,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,CX 2017,RG,24,WHI,1500.0,STOLEN,17812,"{'type': 'Point', 'coordinates': (-79.40215599, 43.64265388)}"
-17840,6264,GO-20209014103,THEFT UNDER,2020-05-27T00:00:00,2020,May,Wednesday,27,148,10,2020-05-28T00:00:00,2020,May,Thursday,28,149,12,D14,Toronto,82,Niagara (82),"Open Areas (Lakes, Parks, Rivers)",Outside,RA,RALEIGH DETOUR,RG,7,BLK,0.0,STOLEN,17813,"{'type': 'Point', 'coordinates': (-79.4166006, 43.6411109)}"
-17841,6266,GO-20209014111,THEFT UNDER - BICYCLE,2020-05-27T00:00:00,2020,May,Wednesday,27,148,21,2020-05-28T00:00:00,2020,May,Thursday,28,149,13,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,FJ,FEATHER,RC,1,BLK,1000.0,STOLEN,17814,"{'type': 'Point', 'coordinates': (-79.4166006, 43.6411109)}"
-17842,6361,GO-20209015122,THEFT UNDER,2020-06-10T00:00:00,2020,June,Wednesday,10,162,7,2020-06-11T00:00:00,2020,June,Thursday,11,163,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,SU,,RG,1,TRQ,50.0,STOLEN,17815,"{'type': 'Point', 'coordinates': (-79.4166006, 43.6411109)}"
-17843,6412,GO-20209015553,THEFT UNDER,2020-05-17T00:00:00,2020,May,Sunday,17,138,11,2020-06-17T00:00:00,2020,June,Wednesday,17,169,11,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,NO,VALANCE,TO,20,WHI,0.0,STOLEN,17816,"{'type': 'Point', 'coordinates': (-79.41426424, 43.6429729)}"
-17844,6420,GO-20201115808,THEFT UNDER - BICYCLE,2020-06-16T00:00:00,2020,June,Tuesday,16,168,21,2020-06-17T00:00:00,2020,June,Wednesday,17,169,17,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,SPORT VELO,,MT,21,PLE,100.0,STOLEN,17817,"{'type': 'Point', 'coordinates': (-79.4060834, 43.64184243)}"
-17845,6435,GO-20201148535,THEFT UNDER - BICYCLE,2020-06-21T00:00:00,2020,June,Sunday,21,173,15,2020-06-22T00:00:00,2020,June,Monday,22,174,13,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN,,OT,0,,,STOLEN,17818,"{'type': 'Point', 'coordinates': (-79.41003936, 43.637418950000004)}"
-17846,6461,GO-20209016084,THEFT UNDER,2020-06-23T00:00:00,2020,June,Tuesday,23,175,0,2020-06-24T00:00:00,2020,June,Wednesday,24,176,19,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,R2,RC,21,GRY,2450.0,STOLEN,17819,"{'type': 'Point', 'coordinates': (-79.40767877, 43.64290821)}"
-17847,6497,GO-20209016484,THEFT UNDER,2020-06-26T00:00:00,2020,June,Friday,26,178,18,2020-06-29T00:00:00,2020,June,Monday,29,181,16,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,OT,4,LBL,150.0,STOLEN,17820,"{'type': 'Point', 'coordinates': (-79.41138445, 43.63917336)}"
-17848,6521,GO-20209016719,THEFT UNDER,2020-07-03T00:00:00,2020,July,Friday,3,185,2,2020-07-03T00:00:00,2020,July,Friday,3,185,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,725 FIXIE,RC,1,WHI,1000.0,STOLEN,17821,"{'type': 'Point', 'coordinates': (-79.40128939, 43.63517525)}"
-17849,6537,GO-20209016927,THEFT UNDER,2020-07-03T00:00:00,2020,July,Friday,3,185,20,2020-07-06T00:00:00,2020,July,Monday,6,188,10,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,29 ER,MT,21,BLK,700.0,STOLEN,17822,"{'type': 'Point', 'coordinates': (-79.40537327000001, 43.63616773)}"
-17850,6538,GO-20209016719,THEFT UNDER,2020-07-03T00:00:00,2020,July,Friday,3,185,2,2020-07-03T00:00:00,2020,July,Friday,3,185,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,725,RC,1,WHI,1000.0,STOLEN,17823,"{'type': 'Point', 'coordinates': (-79.40128939, 43.63517525)}"
-17851,6643,GO-20209017763,THEFT UNDER,2020-07-17T00:00:00,2020,July,Friday,17,199,11,2020-07-17T00:00:00,2020,July,Friday,17,199,11,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,SU,"SUPERCYCLE 24""""",MT,18,GRN,170.0,STOLEN,17824,"{'type': 'Point', 'coordinates': (-79.40956504000002, 43.64529628)}"
-17852,6717,GO-20209018365,B&E,2020-07-23T00:00:00,2020,July,Thursday,23,205,19,2020-07-24T00:00:00,2020,July,Friday,24,206,8,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,NO,,OT,25,SIL,819.0,STOLEN,17825,"{'type': 'Point', 'coordinates': (-79.40767877, 43.64290821)}"
-17853,6745,GO-20209018612,THEFT UNDER,2020-07-22T00:00:00,2020,July,Wednesday,22,204,9,2020-07-26T00:00:00,2020,July,Sunday,26,208,19,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,DUSTER,MT,21,BLU,0.0,STOLEN,17826,"{'type': 'Point', 'coordinates': (-79.41861725, 43.63533762)}"
-17854,6763,GO-20201376057,THEFT UNDER - BICYCLE,2020-07-23T00:00:00,2020,July,Thursday,23,205,22,2020-07-24T00:00:00,2020,July,Friday,24,206,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,METRO 10,ROCKY MOUNTAIN,RG,24,BLUYEL,1000.0,STOLEN,17827,"{'type': 'Point', 'coordinates': (-79.4149791, 43.64143597)}"
-17855,6766,GO-20209018721,THEFT UNDER,2020-07-20T00:00:00,2020,July,Monday,20,202,21,2020-07-27T00:00:00,2020,July,Monday,27,209,21,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,MA,,RG,21,SIL,700.0,STOLEN,17828,"{'type': 'Point', 'coordinates': (-79.4146674, 43.64064217)}"
-17856,6801,GO-20209018858,THEFT UNDER,2020-07-27T00:00:00,2020,July,Monday,27,209,18,2020-07-29T00:00:00,2020,July,Wednesday,29,211,3,D14,Toronto,82,Niagara (82),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,ALIGHT,MT,12,BLU,588.0,STOLEN,17829,"{'type': 'Point', 'coordinates': (-79.41003936, 43.637418950000004)}"
-17857,7522,GO-20209026948,THEFT UNDER,2020-10-16T00:00:00,2020,October,Friday,16,290,20,2020-10-19T00:00:00,2020,October,Monday,19,293,21,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GT,AGGRESSOR COMP,MT,21,DBL,650.0,STOLEN,17830,"{'type': 'Point', 'coordinates': (-79.4149791, 43.64143597)}"
-17858,7591,GO-20209028587,THEFT UNDER,2020-11-01T00:00:00,2020,November,Sunday,1,306,0,2020-11-04T00:00:00,2020,November,Wednesday,4,309,12,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GT,TRANSEO 3.0 WOM,RG,8,TRQ,500.0,STOLEN,17831,"{'type': 'Point', 'coordinates': (-79.41375783, 43.641679)}"
-17859,7622,GO-20202145530,THEFT OVER - BICYCLE,2020-11-02T00:00:00,2020,November,Monday,2,307,16,2020-11-12T00:00:00,2020,November,Thursday,12,317,6,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CERVELO,R5CA,OT,10,BLK,18800.0,STOLEN,17832,"{'type': 'Point', 'coordinates': (-79.41375783, 43.641679)}"
-17860,7623,GO-20202145530,THEFT OVER - BICYCLE,2020-11-02T00:00:00,2020,November,Monday,2,307,16,2020-11-12T00:00:00,2020,November,Thursday,12,317,6,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,2010 MADONE 5.2,OT,10,BLKRED,8400.0,STOLEN,17833,"{'type': 'Point', 'coordinates': (-79.41375783, 43.641679)}"
-17861,7627,GO-20202139809,B&E,2020-11-11T00:00:00,2020,November,Wednesday,11,316,4,2020-11-11T00:00:00,2020,November,Wednesday,11,316,9,D14,Toronto,82,Niagara (82),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,FX3 XXL,RG,0,BLK,1000.0,STOLEN,17834,"{'type': 'Point', 'coordinates': (-79.41157935, 43.6445462)}"
-17862,7641,GO-20209029666,THEFT UNDER,2020-11-07T00:00:00,2020,November,Saturday,7,312,21,2020-11-15T00:00:00,2020,November,Sunday,15,320,15,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,,RG,21,GRY,200.0,STOLEN,17835,"{'type': 'Point', 'coordinates': (-79.41523931, 43.64211694)}"
-17863,7685,GO-20209030819,THEFT UNDER,2020-11-26T00:00:00,2020,November,Thursday,26,331,15,2020-11-28T00:00:00,2020,November,Saturday,28,333,17,D14,Toronto,82,Niagara (82),Bar / Restaurant,Commercial,RA,,RG,6,,130.0,STOLEN,17836,"{'type': 'Point', 'coordinates': (-79.41241449, 43.64334015)}"
-17864,7708,GO-20209032291,THEFT UNDER,2020-10-01T00:00:00,2020,October,Thursday,1,275,20,2020-12-17T00:00:00,2020,December,Thursday,17,352,20,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GI,RINCON DISC,MT,18,BLK,400.0,STOLEN,17837,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-17865,7845,GO-20149002950,THEFT UNDER,2014-04-20T00:00:00,2014,April,Sunday,20,110,11,2014-04-21T00:00:00,2014,April,Monday,21,111,19,D14,Toronto,82,Niagara (82),Go Station,Transit,OT,"57"""" BLACK CHROM",RC,1,BLK,700.0,RECOVERED,17838,"{'type': 'Point', 'coordinates': (-79.41861725, 43.63533762)}"
-17866,7862,GO-20149003009,THEFT UNDER,2014-04-25T00:00:00,2014,April,Friday,25,115,14,2014-04-26T00:00:00,2014,April,Saturday,26,116,15,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,CITY GLIDER BIR,RG,3,SIL,790.0,STOLEN,17839,"{'type': 'Point', 'coordinates': (-79.41523931, 43.64211694)}"
-17867,7872,GO-20141980914,THEFT UNDER,2014-04-22T00:00:00,2014,April,Tuesday,22,112,17,2014-04-29T00:00:00,2014,April,Tuesday,29,119,11,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,CIPHER,TRIBAL,MT,18,RED,200.0,STOLEN,17840,"{'type': 'Point', 'coordinates': (-79.40524581, 43.64340152)}"
-17868,7897,GO-20149003248,THEFT UNDER,2014-05-08T00:00:00,2014,May,Thursday,8,128,9,2014-05-09T00:00:00,2014,May,Friday,9,129,13,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,DB,ASCENT EX,MT,21,DGR,250.0,STOLEN,17841,"{'type': 'Point', 'coordinates': (-79.42053557, 43.63830759)}"
-17869,7908,GO-20149003285,THEFT UNDER,2014-05-09T00:00:00,2014,May,Friday,9,129,17,2014-05-11T00:00:00,2014,May,Sunday,11,131,18,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,1,BLK,600.0,STOLEN,17842,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17870,7938,GO-20149003402,THEFT UNDER,2014-05-12T00:00:00,2014,May,Monday,12,132,21,2014-05-15T00:00:00,2014,May,Thursday,15,135,20,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,RM,FLARE29,MT,18,WHI,1200.0,STOLEN,17843,"{'type': 'Point', 'coordinates': (-79.4144255, 43.6400082)}"
-17871,7984,GO-20142150849,THEFT UNDER,2014-05-25T00:00:00,2014,May,Sunday,25,145,13,2014-05-25T00:00:00,2014,May,Sunday,25,145,17,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,DIAMONDBACK,HYBRID,OT,21,MRN,538.0,STOLEN,17844,"{'type': 'Point', 'coordinates': (-79.41410327, 43.63916384)}"
-17872,7993,GO-20149003636,THEFT UNDER,2014-05-27T00:00:00,2014,May,Tuesday,27,147,12,2014-05-27T00:00:00,2014,May,Tuesday,27,147,12,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GI,RACER TCR,RC,18,WHI,1400.0,STOLEN,17845,"{'type': 'Point', 'coordinates': (-79.40235491, 43.63675803)}"
-17873,7999,GO-20149003670,THEFT UNDER,2014-05-26T00:00:00,2014,May,Monday,26,146,23,2014-05-29T00:00:00,2014,May,Thursday,29,149,16,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,CYPRESS,OT,21,LBL,350.0,STOLEN,17846,"{'type': 'Point', 'coordinates': (-79.40056579, 43.63446271)}"
-17874,8027,GO-20142206712,THEFT UNDER,2014-06-01T00:00:00,2014,June,Sunday,1,152,17,2014-06-03T00:00:00,2014,June,Tuesday,3,154,13,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MIELE,,OT,21,PLE,400.0,STOLEN,17847,"{'type': 'Point', 'coordinates': (-79.4060834, 43.64184243)}"
-17875,8118,GO-20149004033,THEFT UNDER,2014-06-13T00:00:00,2014,June,Friday,13,164,10,2014-06-13T00:00:00,2014,June,Friday,13,164,10,D14,Toronto,82,Niagara (82),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,SIMPLE,OT,1,PNK,850.0,STOLEN,17848,"{'type': 'Point', 'coordinates': (-79.41720467, 43.64099056)}"
-17876,8119,GO-20149004033,THEFT UNDER,2014-06-13T00:00:00,2014,June,Friday,13,164,10,2014-06-13T00:00:00,2014,June,Friday,13,164,10,D14,Toronto,82,Niagara (82),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,OT,1,YEL,200.0,STOLEN,17849,"{'type': 'Point', 'coordinates': (-79.41720467, 43.64099056)}"
-17877,8130,GO-20149003962,THEFT UNDER,2014-06-10T00:00:00,2014,June,Tuesday,10,161,0,2014-06-10T00:00:00,2014,June,Tuesday,10,161,19,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,ESCAPE 2,RG,24,WHI,700.0,STOLEN,17850,"{'type': 'Point', 'coordinates': (-79.4166006, 43.6411109)}"
-17878,8137,GO-20149004068,B&E W'INTENT,2014-06-13T00:00:00,2014,June,Friday,13,164,23,2014-06-14T00:00:00,2014,June,Saturday,14,165,15,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,OT,1,YEL,429.0,STOLEN,17851,"{'type': 'Point', 'coordinates': (-79.40266560000002, 43.64392483)}"
-17879,8145,GO-20149004111,THEFT UNDER,2014-06-15T00:00:00,2014,June,Sunday,15,166,18,2014-06-16T00:00:00,2014,June,Monday,16,167,10,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,,RC,12,TRQ,400.0,STOLEN,17852,"{'type': 'Point', 'coordinates': (-79.40524581, 43.64340152)}"
-17880,8153,GO-20149004137,THEFT UNDER,2014-06-15T00:00:00,2014,June,Sunday,15,166,16,2014-06-16T00:00:00,2014,June,Monday,16,167,18,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,MT,21,BLK,299.0,STOLEN,17853,"{'type': 'Point', 'coordinates': (-79.42053557, 43.63830759)}"
-17881,8187,GO-20149004233,THEFT UNDER,2014-06-13T00:00:00,2014,June,Friday,13,164,23,2014-06-19T00:00:00,2014,June,Thursday,19,170,9,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,RM,2012 ELEMENT 70,MT,21,GRY,3000.0,STOLEN,17854,"{'type': 'Point', 'coordinates': (-79.40266560000002, 43.64392483)}"
-17882,8236,GO-20149004398,PROPERTY - LOST,2014-06-19T00:00:00,2014,June,Thursday,19,170,22,2014-06-24T00:00:00,2014,June,Tuesday,24,175,14,D14,Toronto,82,Niagara (82),Bar / Restaurant,Commercial,PE,,RG,18,BLU,,UNKNOWN,17855,"{'type': 'Point', 'coordinates': (-79.41075021, 43.64584583)}"
-17883,8354,GO-20142462491,THEFT OVER,2014-07-02T00:00:00,2014,July,Wednesday,2,183,0,2014-07-09T00:00:00,2014,July,Wednesday,9,190,13,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,SPECIALISED,TARMAC PRO,RC,36,WHI,5000.0,STOLEN,17856,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17884,8432,GO-20149005023,THEFT UNDER,2014-07-12T00:00:00,2014,July,Saturday,12,193,6,2014-07-15T00:00:00,2014,July,Tuesday,15,196,21,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,,ROYAL NINE FOUR,RG,5,WHI,309.0,STOLEN,17857,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-17885,8456,GO-20149005124,SUSPICIOUS INCIDENT,2014-07-15T00:00:00,2014,July,Tuesday,15,196,15,2014-07-18T00:00:00,2014,July,Friday,18,199,14,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KHS,WESTWOOD,RG,7,BLK,0.0,STOLEN,17858,"{'type': 'Point', 'coordinates': (-79.40235491, 43.63675803)}"
-17886,8461,GO-20149005161,THEFT UNDER,2014-07-20T00:00:00,2014,July,Sunday,20,201,14,2014-07-20T00:00:00,2014,July,Sunday,20,201,15,D14,Toronto,82,Niagara (82),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,,RG,6,WHI,,STOLEN,17859,"{'type': 'Point', 'coordinates': (-79.41410327, 43.63916384)}"
-17887,8481,GO-20149005230,THEFT UNDER,2014-07-10T00:00:00,2014,July,Thursday,10,191,19,2014-07-22T00:00:00,2014,July,Tuesday,22,203,13,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,NO,PINNACLE,MT,21,BRZ,500.0,STOLEN,17860,"{'type': 'Point', 'coordinates': (-79.40235491, 43.63675803)}"
-17888,8508,GO-20149005326,THEFT UNDER,2014-07-25T00:00:00,2014,July,Friday,25,206,12,2014-07-25T00:00:00,2014,July,Friday,25,206,14,D14,Toronto,82,Niagara (82),Bar / Restaurant,Commercial,UK,,RC,5,SIL,1000.0,STOLEN,17861,"{'type': 'Point', 'coordinates': (-79.417071, 43.63864906)}"
-17889,8596,GO-20149005670,THEFT UNDER,2014-08-03T00:00:00,2014,August,Sunday,3,215,19,2014-08-06T00:00:00,2014,August,Wednesday,6,218,11,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,ADVENTURE,OT,24,GRY,0.0,STOLEN,17862,"{'type': 'Point', 'coordinates': (-79.40266560000002, 43.64392483)}"
-17890,8606,GO-20142653621,THEFT UNDER,2014-07-30T00:00:00,2014,July,Wednesday,30,211,16,2014-08-07T00:00:00,2014,August,Thursday,7,219,12,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KONA,ONE 10,MT,21,WHI,2000.0,STOLEN,17863,"{'type': 'Point', 'coordinates': (-79.41626354, 43.64472458)}"
-17891,8622,GO-20149005738,THEFT UNDER,2014-08-05T00:00:00,2014,August,Tuesday,5,217,22,2014-08-08T00:00:00,2014,August,Friday,8,220,13,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ALL-CITY NATURE,OT,1,PLE,1231.0,STOLEN,17864,"{'type': 'Point', 'coordinates': (-79.41315726, 43.64536504)}"
-17892,8628,GO-20142678925,THEFT UNDER,2014-08-05T00:00:00,2014,August,Tuesday,5,217,19,2014-08-11T00:00:00,2014,August,Monday,11,223,8,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,BOWERY,RG,1,GRY,600.0,STOLEN,17865,"{'type': 'Point', 'coordinates': (-79.39968108, 43.63663014)}"
-17893,8630,GO-20142694576,THEFT UNDER,2014-07-27T00:00:00,2014,July,Sunday,27,208,18,2014-08-13T00:00:00,2014,August,Wednesday,13,225,13,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GT,KARAKORAM 4.0,MT,24,BLK,700.0,STOLEN,17866,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-17894,8732,GO-20142552818,B&E W'INTENT,2014-07-23T00:00:00,2014,July,Wednesday,23,204,0,2014-07-23T00:00:00,2014,July,Wednesday,23,204,1,D14,Toronto,82,Niagara (82),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN,UNKNOWN,MT,18,,0.0,STOLEN,17867,"{'type': 'Point', 'coordinates': (-79.40332976, 43.64551526)}"
-17895,8746,GO-20149006238,THEFT UNDER,2014-08-22T00:00:00,2014,August,Friday,22,234,20,2014-08-24T00:00:00,2014,August,Sunday,24,236,13,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,1,WHI,1000.0,STOLEN,17868,"{'type': 'Point', 'coordinates': (-79.41953608, 43.63849391)}"
-17896,8749,GO-20149006331,THEFT UNDER,2014-08-26T00:00:00,2014,August,Tuesday,26,238,18,2014-08-27T00:00:00,2014,August,Wednesday,27,239,9,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RG,30,BLK,500.0,STOLEN,17869,"{'type': 'Point', 'coordinates': (-79.40524581, 43.64340152)}"
-17897,8771,GO-20149006408,THEFT UNDER,2014-06-22T00:00:00,2014,June,Sunday,22,173,21,2014-08-28T00:00:00,2014,August,Thursday,28,240,16,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GI,,RC,20,BLK,1200.0,RECOVERED,17871,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-17898,8799,GO-20142840572,FRAUD OVER,2014-09-04T00:00:00,2014,September,Thursday,4,247,11,2014-09-04T00:00:00,2014,September,Thursday,4,247,11,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,ARGON 18,E-80,OT,5,BLK,1582.0,STOLEN,17872,"{'type': 'Point', 'coordinates': (-79.40372116, 43.64647061)}"
-17899,8800,GO-20142840572,FRAUD OVER,2014-09-04T00:00:00,2014,September,Thursday,4,247,11,2014-09-04T00:00:00,2014,September,Thursday,4,247,11,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SCOTT,SPARK,OT,5,,3000.0,STOLEN,17873,"{'type': 'Point', 'coordinates': (-79.40372116, 43.64647061)}"
-17900,8801,GO-20142840572,FRAUD OVER,2014-09-04T00:00:00,2014,September,Thursday,4,247,11,2014-09-04T00:00:00,2014,September,Thursday,4,247,11,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,FELT,F-75,OT,5,BLK,1450.0,STOLEN,17874,"{'type': 'Point', 'coordinates': (-79.40372116, 43.64647061)}"
-17901,8802,GO-20142840572,FRAUD OVER,2014-09-04T00:00:00,2014,September,Thursday,4,247,11,2014-09-04T00:00:00,2014,September,Thursday,4,247,11,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,STATE-ELDORAD0,OT,5,WHIGLD,600.0,STOLEN,17875,"{'type': 'Point', 'coordinates': (-79.40372116, 43.64647061)}"
-17902,8803,GO-20142840572,FRAUD OVER,2014-09-04T00:00:00,2014,September,Thursday,4,247,11,2014-09-04T00:00:00,2014,September,Thursday,4,247,11,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GIANT,TALON 27.5 5,OT,5,BLKGRN,579.0,STOLEN,17876,"{'type': 'Point', 'coordinates': (-79.40372116, 43.64647061)}"
-17903,8805,GO-20149006552,THEFT UNDER,2014-08-24T00:00:00,2014,August,Sunday,24,236,0,2014-09-04T00:00:00,2014,September,Thursday,4,247,9,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,CA,SYNAPSE 5,RC,20,OTH,1800.0,STOLEN,17877,"{'type': 'Point', 'coordinates': (-79.40517849, 43.63747213)}"
-17904,8809,GO-20149006563,THEFT UNDER,2014-08-30T00:00:00,2014,August,Saturday,30,242,21,2014-09-04T00:00:00,2014,September,Thursday,4,247,16,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,DEFY,RC,15,RED,2000.0,STOLEN,17878,"{'type': 'Point', 'coordinates': (-79.40471258, 43.64210995)}"
-17905,8863,GO-20149006766,THEFT UNDER,2014-09-01T00:00:00,2014,September,Monday,1,244,19,2014-09-10T00:00:00,2014,September,Wednesday,10,253,15,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,BAD BOY 5,TO,9,BLK,275.0,STOLEN,17879,"{'type': 'Point', 'coordinates': (-79.41626354, 43.64472458)}"
-17906,8958,GO-20142972420,THEFT UNDER,2014-09-24T00:00:00,2014,September,Wednesday,24,267,0,2014-09-24T00:00:00,2014,September,Wednesday,24,267,9,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SEKINE,MR.100,OT,10,PNKRED,,STOLEN,17880,"{'type': 'Point', 'coordinates': (-79.40653598, 43.64668181)}"
-17907,9018,GO-20143042417,THEFT UNDER,2014-10-04T00:00:00,2014,October,Saturday,4,277,15,2014-10-04T00:00:00,2014,October,Saturday,4,277,17,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,SX,OT,0,BLK,900.0,STOLEN,17881,"{'type': 'Point', 'coordinates': (-79.4094396, 43.645012)}"
-17908,9093,GO-20143149549,THEFT UNDER,2014-10-21T00:00:00,2014,October,Tuesday,21,294,19,2014-10-21T00:00:00,2014,October,Tuesday,21,294,22,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,TREK,3700,MT,21,BLKBLU,250.0,STOLEN,17882,"{'type': 'Point', 'coordinates': (-79.40524581, 43.64340152)}"
-17909,9122,GO-20149007867,THEFT UNDER,2014-10-27T00:00:00,2014,October,Monday,27,300,17,2014-10-28T00:00:00,2014,October,Tuesday,28,301,17,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,KO,DEW PLUS,RG,27,BLK,350.0,STOLEN,17883,"{'type': 'Point', 'coordinates': (-79.40266560000002, 43.64392483)}"
-17910,9220,GO-20143442996,THEFT UNDER,2014-09-28T00:00:00,2014,September,Sunday,28,271,9,2014-12-08T00:00:00,2014,December,Monday,8,342,13,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GIANT,,OT,21,RED,1800.0,STOLEN,17884,"{'type': 'Point', 'coordinates': (-79.41953608, 43.63849391)}"
-17911,9221,GO-20143442996,THEFT UNDER,2014-09-28T00:00:00,2014,September,Sunday,28,271,9,2014-12-08T00:00:00,2014,December,Monday,8,342,13,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,TREK,,OT,21,LBL,1000.0,STOLEN,17885,"{'type': 'Point', 'coordinates': (-79.41953608, 43.63849391)}"
-17912,9254,GO-20159000154,THEFT UNDER,2015-01-08T00:00:00,2015,January,Thursday,8,8,1,2015-01-09T00:00:00,2015,January,Friday,9,9,16,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RA,,MT,18,,,STOLEN,17886,"{'type': 'Point', 'coordinates': (-79.40524581, 43.64340152)}"
-17913,9264,GO-20159000276,THEFT UNDER,2015-01-12T00:00:00,2015,January,Monday,12,12,13,2015-01-15T00:00:00,2015,January,Thursday,15,15,16,D14,Toronto,82,Niagara (82),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,KO,KONA,OT,9,BLK,900.0,STOLEN,17887,"{'type': 'Point', 'coordinates': (-79.41958545, 43.64298791)}"
-17914,9282,GO-20159000518,THEFT UNDER,2015-01-24T00:00:00,2015,January,Saturday,24,24,17,2015-01-28T00:00:00,2015,January,Wednesday,28,28,11,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,IH,BOUNDRY,MT,24,WHI,250.0,STOLEN,17888,"{'type': 'Point', 'coordinates': (-79.40235491, 43.63675803)}"
-17915,9295,GO-20159000872,THEFT UNDER,2015-02-14T00:00:00,2015,February,Saturday,14,45,21,2015-02-18T00:00:00,2015,February,Wednesday,18,49,21,D14,Toronto,82,Niagara (82),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,DAKAR SPORT (20,MT,18,BLU,1800.0,STOLEN,17889,"{'type': 'Point', 'coordinates': (-79.42161579, 43.64147337)}"
-17916,9296,GO-20159000872,THEFT UNDER,2015-02-14T00:00:00,2015,February,Saturday,14,45,21,2015-02-18T00:00:00,2015,February,Wednesday,18,49,21,D14,Toronto,82,Niagara (82),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,PEARL WHITE CRU,OT,3,WHI,700.0,STOLEN,17890,"{'type': 'Point', 'coordinates': (-79.42161579, 43.64147337)}"
-17917,9337,GO-20159001448,THEFT UNDER,2015-03-21T00:00:00,2015,March,Saturday,21,80,9,2015-03-21T00:00:00,2015,March,Saturday,21,80,16,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,MT,18,BLK,1500.0,STOLEN,17891,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-17918,9368,GO-20159001705,THEFT UNDER,2015-04-04T00:00:00,2015,April,Saturday,4,94,11,2015-04-05T00:00:00,2015,April,Sunday,5,95,11,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,21,BLK,600.0,STOLEN,17892,"{'type': 'Point', 'coordinates': (-79.40111777, 43.63691899)}"
-17919,9384,GO-20159001803,THEFT UNDER,2014-12-16T00:00:00,2014,December,Tuesday,16,350,14,2015-04-09T00:00:00,2015,April,Thursday,9,99,18,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,TR,TREK MADONE 3.1,RC,10,BLK,2500.0,STOLEN,17893,"{'type': 'Point', 'coordinates': (-79.40524581, 43.64340152)}"
-17920,9507,GO-2015732555,THEFT UNDER,2015-05-02T00:00:00,2015,May,Saturday,2,122,20,2015-05-03T00:00:00,2015,May,Sunday,3,123,7,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,MIELE,,RG,1,REDYEL,400.0,STOLEN,17894,"{'type': 'Point', 'coordinates': (-79.41045766, 43.64169495)}"
-17921,9509,GO-20159002397,B&E,2015-05-01T00:00:00,2015,May,Friday,1,121,9,2015-05-03T00:00:00,2015,May,Sunday,3,123,10,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KO,SPLICE,MT,24,BLK,735.0,STOLEN,17895,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17922,9510,GO-20159002397,B&E,2015-05-01T00:00:00,2015,May,Friday,1,121,9,2015-05-03T00:00:00,2015,May,Sunday,3,123,10,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,MARLIN,MT,24,BLK,825.0,STOLEN,17896,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17923,9553,GO-2015766163,THEFT UNDER,2015-05-08T00:00:00,2015,May,Friday,8,128,12,2015-05-08T00:00:00,2015,May,Friday,8,128,12,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EBIKE,UNK,EL,1,SIL,650.0,STOLEN,17897,"{'type': 'Point', 'coordinates': (-79.4060834, 43.64184243)}"
-17924,9586,GO-20159002745,THEFT UNDER,2015-05-14T00:00:00,2015,May,Thursday,14,134,19,2015-05-15T00:00:00,2015,May,Friday,15,135,19,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,SU,,MT,18,BLK,100.0,STOLEN,17898,"{'type': 'Point', 'coordinates': (-79.40235491, 43.63675803)}"
-17925,9589,GO-20159002760,B&E,2015-05-13T00:00:00,2015,May,Wednesday,13,133,19,2015-05-15T00:00:00,2015,May,Friday,15,135,15,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,INDIE 4 XL,MT,18,BLK,500.0,STOLEN,17899,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17926,9631,GO-20159002998,THEFT UNDER,2015-05-20T00:00:00,2015,May,Wednesday,20,140,18,2015-05-21T00:00:00,2015,May,Thursday,21,141,11,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,2007 SILVERSTON,RC,27,WHI,800.0,STOLEN,17900,"{'type': 'Point', 'coordinates': (-79.4144255, 43.6400082)}"
-17927,9651,GO-20159003077,THEFT UNDER,2015-05-20T00:00:00,2015,May,Wednesday,20,140,14,2015-05-25T00:00:00,2015,May,Monday,25,145,14,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,21,GRY,300.0,STOLEN,17901,"{'type': 'Point', 'coordinates': (-79.39948839, 43.63339968)}"
-17928,9655,GO-20159003101,THEFT UNDER,2015-05-24T00:00:00,2015,May,Sunday,24,144,18,2015-05-26T00:00:00,2015,May,Tuesday,26,146,9,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,AURORA,TO,27,LGR,1000.0,STOLEN,17902,"{'type': 'Point', 'coordinates': (-79.40767877, 43.64290821)}"
-17929,9657,GO-20159003110,THEFT UNDER,2015-05-23T00:00:00,2015,May,Saturday,23,143,1,2015-05-26T00:00:00,2015,May,Tuesday,26,146,14,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,18,BLK,2200.0,STOLEN,17903,"{'type': 'Point', 'coordinates': (-79.39968108, 43.63663014)}"
-17930,9658,GO-20159003113,THEFT UNDER,2015-05-26T00:00:00,2015,May,Tuesday,26,146,17,2015-05-26T00:00:00,2015,May,Tuesday,26,146,17,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,MA,,TO,30,BLU,600.0,STOLEN,17904,"{'type': 'Point', 'coordinates': (-79.40680169, 43.63639142)}"
-17931,9660,GO-20159003121,THEFT UNDER,2015-05-26T00:00:00,2015,May,Tuesday,26,146,17,2015-05-26T00:00:00,2015,May,Tuesday,26,146,22,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,KH,URBAN SOUL,RG,1,BLK,513.0,STOLEN,17905,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17932,9667,GO-20159003140,THEFT UNDER,2015-04-10T00:00:00,2015,April,Friday,10,100,13,2015-05-27T00:00:00,2015,May,Wednesday,27,147,15,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,VITA,OT,24,BLK,1100.0,STOLEN,17906,"{'type': 'Point', 'coordinates': (-79.41410327, 43.63916384)}"
-17933,9828,GO-20159003719,THEFT UNDER,2015-06-16T00:00:00,2015,June,Tuesday,16,167,9,2015-06-18T00:00:00,2015,June,Thursday,18,169,10,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,RG,1,TRQ,500.0,STOLEN,17907,"{'type': 'Point', 'coordinates': (-79.41315726, 43.64536504)}"
-17934,9873,GO-20151062996,THEFT UNDER,2015-06-01T00:00:00,2015,June,Monday,1,152,10,2015-06-24T00:00:00,2015,June,Wednesday,24,175,11,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KONA,DEW 56,TO,5,BLK,1400.0,STOLEN,17908,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-17935,439,GO-20179006792,THEFT UNDER - BICYCLE,2017-05-22T00:00:00,2017,May,Monday,22,142,18,2017-05-22T00:00:00,2017,May,Monday,22,142,18,D14,Toronto,82,Niagara (82),Bar / Restaurant,Commercial,OT,60061800 BLACK,RG,1,BLK,1000.0,STOLEN,17909,"{'type': 'Point', 'coordinates': (-79.40524581, 43.64340152)}"
-17936,502,GO-20179007197,THEFT UNDER,2017-05-11T00:00:00,2017,May,Thursday,11,131,17,2017-05-29T00:00:00,2017,May,Monday,29,149,22,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,ALLEZ,RC,9,GRY,900.0,STOLEN,17910,"{'type': 'Point', 'coordinates': (-79.4144255, 43.6400082)}"
-17937,1255,GO-20179013460,THEFT UNDER,2017-08-21T00:00:00,2017,August,Monday,21,233,13,2017-08-27T00:00:00,2017,August,Sunday,27,239,13,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,SC,MERANO,OT,8,TRQ,399.0,STOLEN,17935,"{'type': 'Point', 'coordinates': (-79.41332573, 43.64059562)}"
-17938,510,GO-20179007310,THEFT UNDER,2017-05-27T00:00:00,2017,May,Saturday,27,147,17,2017-05-31T00:00:00,2017,May,Wednesday,31,151,17,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,7100,RG,15,,528.0,STOLEN,17911,"{'type': 'Point', 'coordinates': (-79.41267012, 43.64191049)}"
-17939,585,GO-20171043474,B&E,2017-06-06T00:00:00,2017,June,Tuesday,6,157,17,2017-06-12T00:00:00,2017,June,Monday,12,163,10,D14,Toronto,82,Niagara (82),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,FAST,OT,18,BLKRED,1500.0,UNKNOWN,17912,"{'type': 'Point', 'coordinates': (-79.41720467, 43.64099056)}"
-17940,586,GO-20171043474,B&E,2017-06-06T00:00:00,2017,June,Tuesday,6,157,17,2017-06-12T00:00:00,2017,June,Monday,12,163,10,D14,Toronto,82,Niagara (82),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,7.9 FX,RC,18,BLK,1500.0,UNKNOWN,17913,"{'type': 'Point', 'coordinates': (-79.41720467, 43.64099056)}"
-17941,641,GO-20179008283,THEFT UNDER,2017-06-17T00:00:00,2017,June,Saturday,17,168,8,2017-06-18T00:00:00,2017,June,Sunday,18,169,16,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,KO,DEW PLUS,RG,24,LGR,250.0,STOLEN,17914,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17942,655,GO-20171103091,B&E,2017-06-14T00:00:00,2017,June,Wednesday,14,165,21,2017-06-20T00:00:00,2017,June,Tuesday,20,171,19,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,RALEIGH,,MT,6,PLE,500.0,STOLEN,17915,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17943,684,GO-20179008653,THEFT UNDER - BICYCLE,2017-06-20T00:00:00,2017,June,Tuesday,20,171,21,2017-06-21T00:00:00,2017,June,Wednesday,21,172,21,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,TALON 2,MT,9,,850.0,STOLEN,17916,"{'type': 'Point', 'coordinates': (-79.40537327000001, 43.63616773)}"
-17944,697,GO-20179008774,THEFT UNDER - BICYCLE,2017-06-17T00:00:00,2017,June,Saturday,17,168,1,2017-06-23T00:00:00,2017,June,Friday,23,174,14,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,C1CL0010,TO,21,BLK,667.0,STOLEN,17917,"{'type': 'Point', 'coordinates': (-79.40517849, 43.63747213)}"
-17945,753,GO-20179009198,THEFT UNDER - BICYCLE,2017-03-01T00:00:00,2017,March,Wednesday,1,60,21,2017-06-30T00:00:00,2017,June,Friday,30,181,0,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,ROCK HOPPER,MT,8,SIL,100.0,STOLEN,17918,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17946,769,GO-20179009371,THEFT UNDER - BICYCLE,2017-06-27T00:00:00,2017,June,Tuesday,27,178,3,2017-07-04T00:00:00,2017,July,Tuesday,4,185,9,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GI,16 FASTROAD SLR,RC,16,BLK,1300.0,STOLEN,17919,"{'type': 'Point', 'coordinates': (-79.4166006, 43.6411109)}"
-17947,793,GO-20171196692,THEFT UNDER - BICYCLE,2017-06-30T00:00:00,2017,June,Friday,30,181,12,2017-07-07T00:00:00,2017,July,Friday,7,188,14,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,LANGSTER,RG,1,BLUWHI,660.0,STOLEN,17920,"{'type': 'Point', 'coordinates': (-79.40537327000001, 43.63616773)}"
-17948,930,GO-20171315865,FTC PROBATION ORDER,2017-07-22T00:00:00,2017,July,Saturday,22,203,12,2017-07-22T00:00:00,2017,July,Saturday,22,203,12,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CANNONDALE,,RG,10,,,RECOVERED,17921,"{'type': 'Point', 'coordinates': (-79.40442195, 43.64140672)}"
-17949,969,GO-20179010982,THEFT UNDER - BICYCLE,2017-07-22T00:00:00,2017,July,Saturday,22,203,13,2017-07-25T00:00:00,2017,July,Tuesday,25,206,14,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,DB,2015 AXIS 27.5,MT,8,GRY,540.0,STOLEN,17922,"{'type': 'Point', 'coordinates': (-79.40537327000001, 43.63616773)}"
-17950,970,GO-20179010987,THEFT UNDER,2017-07-21T00:00:00,2017,July,Friday,21,202,8,2017-07-25T00:00:00,2017,July,Tuesday,25,206,14,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,TR,2016,RG,10,BLK,600.0,STOLEN,17923,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-17951,1008,GO-20179011334,THEFT UNDER,2017-07-29T00:00:00,2017,July,Saturday,29,210,20,2017-07-30T00:00:00,2017,July,Sunday,30,211,21,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GI,TALON 3,MT,27,BLK,659.0,STOLEN,17924,"{'type': 'Point', 'coordinates': (-79.40680169, 43.63639142)}"
-17952,1018,GO-20179011403,THEFT UNDER - BICYCLE,2017-07-30T00:00:00,2017,July,Sunday,30,211,7,2017-07-31T00:00:00,2017,July,Monday,31,212,14,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,DB,INSIGHT,RG,24,,400.0,STOLEN,17925,"{'type': 'Point', 'coordinates': (-79.40517849, 43.63747213)}"
-17953,1063,GO-20179011811,THEFT UNDER - BICYCLE,2017-07-21T00:00:00,2017,July,Friday,21,202,18,2017-08-06T00:00:00,2017,August,Sunday,6,218,18,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RG,1,DGR,400.0,STOLEN,17926,"{'type': 'Point', 'coordinates': (-79.4060834, 43.64184243)}"
-17954,1088,GO-20179011972,THEFT UNDER - BICYCLE,2017-08-06T00:00:00,2017,August,Sunday,6,218,7,2017-08-09T00:00:00,2017,August,Wednesday,9,221,7,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,OT,18,RED,500.0,STOLEN,17927,"{'type': 'Point', 'coordinates': (-79.41144857, 43.6456996)}"
-17955,1145,GO-20179012350,THEFT UNDER,2017-08-06T00:00:00,2017,August,Sunday,6,218,15,2017-08-14T00:00:00,2017,August,Monday,14,226,11,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,VITA,OT,21,PLE,850.0,STOLEN,17928,"{'type': 'Point', 'coordinates': (-79.41144857, 43.6456996)}"
-17956,1146,GO-20171468484,THEFT OF EBIKE UNDER $5000,2017-08-10T00:00:00,2017,August,Thursday,10,222,16,2017-08-14T00:00:00,2017,August,Monday,14,226,19,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,JIN YUE BULLET,EL,0,BLK,2600.0,STOLEN,17929,"{'type': 'Point', 'coordinates': (-79.40430715, 43.64464636)}"
-17957,1171,GO-20179012614,THEFT UNDER - BICYCLE,2017-08-12T00:00:00,2017,August,Saturday,12,224,5,2017-08-17T00:00:00,2017,August,Thursday,17,229,11,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,KH,FLAGSTAFF 29ER,MT,24,,2500.0,STOLEN,17930,"{'type': 'Point', 'coordinates': (-79.41267012, 43.64191049)}"
-17958,1200,GO-20179012926,THEFT UNDER - BICYCLE,2017-08-14T00:00:00,2017,August,Monday,14,226,13,2017-08-21T00:00:00,2017,August,Monday,21,233,13,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,SU,,RG,7,,200.0,STOLEN,17931,"{'type': 'Point', 'coordinates': (-79.40128939, 43.63517525)}"
-17959,1201,GO-20179012942,THEFT UNDER - BICYCLE,2017-08-16T00:00:00,2017,August,Wednesday,16,228,3,2017-08-21T00:00:00,2017,August,Monday,21,233,15,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RG,5,BLK,500.0,STOLEN,17932,"{'type': 'Point', 'coordinates': (-79.40215599, 43.64265388)}"
-17960,1204,GO-20179012964,THEFT UNDER - BICYCLE,2017-08-21T00:00:00,2017,August,Monday,21,233,7,2017-08-21T00:00:00,2017,August,Monday,21,233,18,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,CTM,MT,21,,500.0,STOLEN,17933,"{'type': 'Point', 'coordinates': (-79.4144255, 43.6400082)}"
-17961,1208,GO-20179012986,THEFT UNDER,2017-08-16T00:00:00,2017,August,Wednesday,16,228,22,2017-08-21T00:00:00,2017,August,Monday,21,233,23,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GI,?,MT,18,SIL,500.0,STOLEN,17934,"{'type': 'Point', 'coordinates': (-79.40332976, 43.64551526)}"
-17962,1283,GO-20179013807,THEFT UNDER - BICYCLE,2017-08-30T00:00:00,2017,August,Wednesday,30,242,22,2017-09-01T00:00:00,2017,September,Friday,1,244,7,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,DS321,MT,21,BLK,1000.0,STOLEN,17936,"{'type': 'Point', 'coordinates': (-79.42213177, 43.63268075)}"
-17963,1299,GO-20171591322,THEFT UNDER - BICYCLE,2017-08-29T00:00:00,2017,August,Tuesday,29,241,14,2017-09-02T00:00:00,2017,September,Saturday,2,245,18,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KONA,STINKY,MT,15,REDWHI,1800.0,STOLEN,17937,"{'type': 'Point', 'coordinates': (-79.40524581, 43.64340152)}"
-17964,1325,GO-20179014089,THEFT UNDER,2017-09-06T00:00:00,2017,September,Wednesday,6,249,8,2017-09-06T00:00:00,2017,September,Wednesday,6,249,8,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,FEATHER 2013,OT,1,ONG,750.0,STOLEN,17938,"{'type': 'Point', 'coordinates': (-79.41144857, 43.6456996)}"
-17965,1343,GO-20179014269,THEFT UNDER,2017-09-02T00:00:00,2017,September,Saturday,2,245,22,2017-09-08T00:00:00,2017,September,Friday,8,251,14,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,VECTOR,RG,21,BLU,300.0,STOLEN,17939,"{'type': 'Point', 'coordinates': (-79.4146674, 43.64064217)}"
-17966,1376,GO-20177021717,THEFT OVER - BICYCLE,2017-09-13T00:00:00,2017,September,Wednesday,13,256,7,2017-09-13T00:00:00,2017,September,Wednesday,13,256,7,D14,Toronto,82,Niagara (82),Unknown,Other,GF,,OT,18,BLK,600.0,STOLEN,17940,"{'type': 'Point', 'coordinates': (-79.41503588, 43.6449722)}"
-17967,1378,GO-20179014529,THEFT UNDER,2017-09-11T00:00:00,2017,September,Monday,11,254,22,2017-09-12T00:00:00,2017,September,Tuesday,12,255,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,TR,FX2 WSD,RG,8,GRN,800.0,STOLEN,17941,"{'type': 'Point', 'coordinates': (-79.41720467, 43.64099056)}"
-17968,1498,GO-20179015545,THEFT UNDER,2017-09-20T00:00:00,2017,September,Wednesday,20,263,10,2017-09-23T00:00:00,2017,September,Saturday,23,266,13,D14,Toronto,82,Niagara (82),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,GI,ESCAPE 0,MT,21,GRY,900.0,STOLEN,17942,"{'type': 'Point', 'coordinates': (-79.41882219, 43.64420339)}"
-17969,1520,GO-20179015724,THEFT UNDER - BICYCLE,2017-09-22T00:00:00,2017,September,Friday,22,265,23,2017-09-25T00:00:00,2017,September,Monday,25,268,13,D14,Toronto,82,Niagara (82),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,TALON,MT,12,RED,1000.0,STOLEN,17943,"{'type': 'Point', 'coordinates': (-79.40918547, 43.644676)}"
-17970,1555,GO-20179016117,THEFT UNDER - BICYCLE,2017-09-30T00:00:00,2017,September,Saturday,30,273,18,2017-09-30T00:00:00,2017,September,Saturday,30,273,18,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,12,BLU,2400.0,STOLEN,17944,"{'type': 'Point', 'coordinates': (-79.40128939, 43.63517525)}"
-17971,1630,GO-20179016883,THEFT UNDER,2017-10-07T00:00:00,2017,October,Saturday,7,280,20,2017-10-10T00:00:00,2017,October,Tuesday,10,283,16,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,S2 2012,RC,9,BLK,2500.0,STOLEN,17945,"{'type': 'Point', 'coordinates': (-79.39968108, 43.63663014)}"
-17972,1646,GO-20179016952,THEFT UNDER - BICYCLE,2017-09-27T00:00:00,2017,September,Wednesday,27,270,22,2017-10-11T00:00:00,2017,October,Wednesday,11,284,13,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,1,OTH,379.0,STOLEN,17946,"{'type': 'Point', 'coordinates': (-79.4166006, 43.6411109)}"
-17973,1649,GO-20171834003,THEFT UNDER - BICYCLE,2017-10-07T00:00:00,2017,October,Saturday,7,280,7,2017-10-10T00:00:00,2017,October,Tuesday,10,283,7,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,CERVELO,FULCRUM,RG,10,BLKRED,1500.0,STOLEN,17947,"{'type': 'Point', 'coordinates': (-79.39968108, 43.63663014)}"
-17974,1656,GO-20179017141,THEFT UNDER - BICYCLE,2017-10-13T00:00:00,2017,October,Friday,13,286,6,2017-10-13T00:00:00,2017,October,Friday,13,286,18,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,GENIUS 10 CARBO,MT,9,BLK,1500.0,STOLEN,17948,"{'type': 'Point', 'coordinates': (-79.41953608, 43.63849391)}"
-17975,1661,GO-20179017240,THEFT UNDER,2017-10-13T00:00:00,2017,October,Friday,13,286,10,2017-10-15T00:00:00,2017,October,Sunday,15,288,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,URBANIA 5,RG,18,GRY,150.0,STOLEN,17949,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17976,1666,GO-20179017295,THEFT UNDER,2017-10-10T00:00:00,2017,October,Tuesday,10,283,20,2017-10-15T00:00:00,2017,October,Sunday,15,288,22,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,OCR,TO,27,BLU,0.0,STOLEN,17950,"{'type': 'Point', 'coordinates': (-79.40537327000001, 43.63616773)}"
-17977,1678,GO-20179017460,THEFT UNDER,2017-10-12T00:00:00,2017,October,Thursday,12,285,17,2017-10-18T00:00:00,2017,October,Wednesday,18,291,13,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,,TO,21,BLK,750.0,STOLEN,17951,"{'type': 'Point', 'coordinates': (-79.4166006, 43.6411109)}"
-17978,1730,GO-20179018029,THEFT UNDER - BICYCLE,2017-10-23T00:00:00,2017,October,Monday,23,296,18,2017-10-24T00:00:00,2017,October,Tuesday,24,297,11,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,PIEROT ONE SPEE,RG,1,WHI,400.0,STOLEN,17952,"{'type': 'Point', 'coordinates': (-79.4146674, 43.64064217)}"
-17979,1733,GO-20179018041,THEFT UNDER - BICYCLE,2017-10-18T00:00:00,2017,October,Wednesday,18,291,12,2017-10-24T00:00:00,2017,October,Tuesday,24,297,14,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,MARLIN,MT,21,BLK,600.0,STOLEN,17953,"{'type': 'Point', 'coordinates': (-79.40680169, 43.63639142)}"
-17980,1747,GO-20179018226,THEFT UNDER - BICYCLE,2017-08-15T00:00:00,2017,August,Tuesday,15,227,17,2017-10-26T00:00:00,2017,October,Thursday,26,299,11,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,1959,RG,1,RED,350.0,STOLEN,17954,"{'type': 'Point', 'coordinates': (-79.41953608, 43.63849391)}"
-17981,1748,GO-20179018247,THEFT UNDER - BICYCLE,2017-10-16T00:00:00,2017,October,Monday,16,289,0,2017-10-26T00:00:00,2017,October,Thursday,26,299,15,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,3 GEAR CRUISER,RG,3,CRM,400.0,STOLEN,17955,"{'type': 'Point', 'coordinates': (-79.41882219, 43.64420339)}"
-17982,1769,GO-20171967007,B&E,2017-10-29T00:00:00,2017,October,Sunday,29,302,14,2017-10-31T00:00:00,2017,October,Tuesday,31,304,1,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,CANNONDALE,TRAIL 4,MT,21,BLK,1000.0,UNKNOWN,17956,"{'type': 'Point', 'coordinates': (-79.40537327000001, 43.63616773)}"
-17983,1770,GO-20171967007,B&E,2017-10-29T00:00:00,2017,October,Sunday,29,302,14,2017-10-31T00:00:00,2017,October,Tuesday,31,304,1,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,NORCO,VALINCE CARBON,OT,21,GRY,2200.0,UNKNOWN,17957,"{'type': 'Point', 'coordinates': (-79.40537327000001, 43.63616773)}"
-17984,1812,GO-20172011419,THEFT UNDER - BICYCLE,2017-11-02T00:00:00,2017,November,Thursday,2,306,23,2017-11-06T00:00:00,2017,November,Monday,6,310,17,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,6KU,DALLAS,RG,1,BRZ,666.0,STOLEN,17958,"{'type': 'Point', 'coordinates': (-79.40517849, 43.63747213)}"
-17985,1841,GO-20179019638,THEFT UNDER - BICYCLE,2017-11-11T00:00:00,2017,November,Saturday,11,315,5,2017-11-14T00:00:00,2017,November,Tuesday,14,318,9,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,5,,500.0,STOLEN,17959,"{'type': 'Point', 'coordinates': (-79.40680169, 43.63639142)}"
-17986,1853,GO-20173018259,THEFT UNDER - BICYCLE,2017-11-16T00:00:00,2017,November,Thursday,16,320,2,2017-11-17T00:00:00,2017,November,Friday,17,321,20,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SCOTT,ASPECT 760L,MT,0,BLKGRN,800.0,STOLEN,17960,"{'type': 'Point', 'coordinates': (-79.4149791, 43.64143597)}"
-17987,1897,GO-20173096074,B&E,2017-09-16T00:00:00,2017,September,Saturday,16,259,17,2017-11-29T00:00:00,2017,November,Wednesday,29,333,16,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,KUOTO,KORSA,RC,11,BLKWHI,2003.0,STOLEN,17961,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-17988,1906,GO-20179021164,THEFT UNDER - BICYCLE,2017-11-24T00:00:00,2017,November,Friday,24,328,9,2017-12-03T00:00:00,2017,December,Sunday,3,337,16,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,SA,BLUR 4X,MT,18,BLK,1700.0,STOLEN,17962,"{'type': 'Point', 'coordinates': (-79.4149791, 43.64143597)}"
-17989,1933,GO-20179021926,THEFT UNDER - BICYCLE,2017-12-11T00:00:00,2017,December,Monday,11,345,19,2017-12-12T00:00:00,2017,December,Tuesday,12,346,14,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,MT,27,BLK,800.0,STOLEN,17963,"{'type': 'Point', 'coordinates': (-79.41375783, 43.641679)}"
-17990,1940,GO-20179022257,THEFT UNDER,2017-12-08T00:00:00,2017,December,Friday,8,342,8,2017-12-15T00:00:00,2017,December,Friday,15,349,9,D14,Toronto,82,Niagara (82),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,KATMANDU,MT,8,SIL,200.0,STOLEN,17964,"{'type': 'Point', 'coordinates': (-79.40524581, 43.64340152)}"
-17991,1950,GO-20179022643,THEFT UNDER - BICYCLE,2017-11-09T00:00:00,2017,November,Thursday,9,313,15,2017-12-20T00:00:00,2017,December,Wednesday,20,354,8,D14,Toronto,82,Niagara (82),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,FOCUS ARRIBA TI,TO,24,WHI,1500.0,STOLEN,17965,"{'type': 'Point', 'coordinates': (-79.41720467, 43.64099056)}"
-17992,1959,GO-20179023056,THEFT UNDER,2017-12-13T00:00:00,2017,December,Wednesday,13,347,21,2017-12-27T00:00:00,2017,December,Wednesday,27,361,16,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,7,BLK,4500.0,STOLEN,17966,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-17993,1986,GO-20189001111,THEFT UNDER - BICYCLE,2018-01-13T00:00:00,2018,January,Saturday,13,13,16,2018-01-13T00:00:00,2018,January,Saturday,13,13,17,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,F,MT,8,WHI,600.0,STOLEN,17967,"{'type': 'Point', 'coordinates': (-79.39948839, 43.63339968)}"
-17994,1991,GO-20189001631,THEFT UNDER - BICYCLE,2018-01-09T00:00:00,2018,January,Tuesday,9,9,10,2018-01-18T00:00:00,2018,January,Thursday,18,18,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,21,BLK,400.0,STOLEN,17968,"{'type': 'Point', 'coordinates': (-79.40680169, 43.63639142)}"
-17995,1992,GO-20189001631,THEFT UNDER - BICYCLE,2018-01-09T00:00:00,2018,January,Tuesday,9,9,10,2018-01-18T00:00:00,2018,January,Thursday,18,18,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,21,BLK,400.0,STOLEN,17969,"{'type': 'Point', 'coordinates': (-79.40680169, 43.63639142)}"
-17996,2000,GO-20189002355,THEFT UNDER,2018-01-18T00:00:00,2018,January,Thursday,18,18,16,2018-01-24T00:00:00,2018,January,Wednesday,24,24,16,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,WELLINGTON 2.0,RC,24,WHI,200.0,STOLEN,17970,"{'type': 'Point', 'coordinates': (-79.40680169, 43.63639142)}"
-17997,2027,GO-20189004398,THEFT UNDER,2018-02-11T00:00:00,2018,February,Sunday,11,42,0,2018-02-12T00:00:00,2018,February,Monday,12,43,16,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,ALFA,RC,12,YEL,1219.0,STOLEN,17971,"{'type': 'Point', 'coordinates': (-79.40128939, 43.63517525)}"
-17998,2047,GO-20189006014,THEFT UNDER - BICYCLE,2018-02-25T00:00:00,2018,February,Sunday,25,56,18,2018-02-25T00:00:00,2018,February,Sunday,25,56,21,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,KH,FLITE 100,RG,1,PLE,800.0,STOLEN,17972,"{'type': 'Point', 'coordinates': (-79.40537327000001, 43.63616773)}"
-17999,2052,GO-20189006196,THEFT UNDER - BICYCLE,2018-02-25T00:00:00,2018,February,Sunday,25,56,10,2018-02-27T00:00:00,2018,February,Tuesday,27,58,9,D14,Toronto,82,Niagara (82),Go Station,Transit,OT,CITY,OT,7,BRN,2700.0,STOLEN,17973,"{'type': 'Point', 'coordinates': (-79.41182474, 43.63407409)}"
-18000,2149,GO-20189011230,THEFT UNDER,2018-04-11T00:00:00,2018,April,Wednesday,11,101,7,2018-04-11T00:00:00,2018,April,Wednesday,11,101,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,TR,1000,RC,10,BLU,0.0,STOLEN,17974,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-18001,2172,GO-20189012063,THEFT UNDER,2018-04-18T00:00:00,2018,April,Wednesday,18,108,19,2018-04-19T00:00:00,2018,April,Thursday,19,109,9,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,PLUG,RG,1,BGE,1000.0,STOLEN,17975,"{'type': 'Point', 'coordinates': (-79.4146674, 43.64064217)}"
-18002,2173,GO-20189012095,THEFT UNDER,2018-04-13T00:00:00,2018,April,Friday,13,103,22,2018-04-18T00:00:00,2018,April,Wednesday,18,108,19,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,NO,MONTEREY,OT,24,YEL,500.0,STOLEN,17976,"{'type': 'Point', 'coordinates': (-79.4038263, 43.63755765)}"
-18003,2177,GO-20189012165,THEFT UNDER - BICYCLE,2018-04-17T00:00:00,2018,April,Tuesday,17,107,12,2018-04-19T00:00:00,2018,April,Thursday,19,109,16,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,,MT,16,BLK,520.0,STOLEN,17977,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-18004,2182,GO-2018708388,B&E,2018-04-13T00:00:00,2018,April,Friday,13,103,0,2018-04-20T00:00:00,2018,April,Friday,20,110,18,D14,Toronto,82,Niagara (82),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,ROAM 3,MT,0,BLK,800.0,STOLEN,17978,"{'type': 'Point', 'coordinates': (-79.41332573, 43.64059562)}"
-18005,2183,GO-2018708388,B&E,2018-04-13T00:00:00,2018,April,Friday,13,103,0,2018-04-20T00:00:00,2018,April,Friday,20,110,18,D14,Toronto,82,Niagara (82),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,MARLIN WSD,MT,0,TRQWHI,600.0,STOLEN,17979,"{'type': 'Point', 'coordinates': (-79.41332573, 43.64059562)}"
-18006,2185,GO-2018719819,B&E,2018-04-15T00:00:00,2018,April,Sunday,15,105,0,2018-04-22T00:00:00,2018,April,Sunday,22,112,15,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TREK,,OT,11,BLKBLU,4000.0,STOLEN,17980,"{'type': 'Point', 'coordinates': (-79.41157935, 43.6445462)}"
-18007,2186,GO-2018719819,B&E,2018-04-15T00:00:00,2018,April,Sunday,15,105,0,2018-04-22T00:00:00,2018,April,Sunday,22,112,15,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,,OT,11,,,STOLEN,17981,"{'type': 'Point', 'coordinates': (-79.41157935, 43.6445462)}"
-18008,2188,GO-20189012485,THEFT UNDER - BICYCLE,2018-04-22T00:00:00,2018,April,Sunday,22,112,18,2018-04-23T00:00:00,2018,April,Monday,23,113,7,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GI,OCR3,TO,1,SIL,500.0,STOLEN,17982,"{'type': 'Point', 'coordinates': (-79.40680169, 43.63639142)}"
-18009,2197,GO-20189012727,THEFT UNDER - BICYCLE,2018-04-22T00:00:00,2018,April,Sunday,22,112,22,2018-04-24T00:00:00,2018,April,Tuesday,24,114,18,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,TRI CROSS SPORT,TO,18,BLK,1500.0,RECOVERED,17983,"{'type': 'Point', 'coordinates': (-79.40128939, 43.63517525)}"
-18010,2205,GO-2018752080,THEFT UNDER - BICYCLE,2018-04-27T00:00:00,2018,April,Friday,27,117,0,2018-04-27T00:00:00,2018,April,Friday,27,117,9,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CERVELO,S3,RC,11,RED,4000.0,STOLEN,17984,"{'type': 'Point', 'coordinates': (-79.40128939, 43.63517525)}"
-18011,2214,GO-20189013176,THEFT UNDER - BICYCLE,2018-04-07T00:00:00,2018,April,Saturday,7,97,21,2018-04-28T00:00:00,2018,April,Saturday,28,118,15,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SCHWINN,ONUS,MT,21,FRY,400.0,STOLEN,17985,"{'type': 'Point', 'coordinates': (-79.40235491, 43.63675803)}"
-18012,2215,GO-20189013176,THEFT UNDER - BICYCLE,2018-04-07T00:00:00,2018,April,Saturday,7,97,21,2018-04-28T00:00:00,2018,April,Saturday,28,118,15,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SCHWINN,NETWORK 2.0,RG,7,BLU,400.0,STOLEN,17986,"{'type': 'Point', 'coordinates': (-79.40235491, 43.63675803)}"
-18013,2216,GO-20189013176,THEFT UNDER - BICYCLE,2018-04-07T00:00:00,2018,April,Saturday,7,97,21,2018-04-28T00:00:00,2018,April,Saturday,28,118,15,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,CITY NETWORK 2.,RG,7,BLU,400.0,STOLEN,17987,"{'type': 'Point', 'coordinates': (-79.40235491, 43.63675803)}"
-18014,2217,GO-20189013176,THEFT UNDER - BICYCLE,2018-04-07T00:00:00,2018,April,Saturday,7,97,21,2018-04-28T00:00:00,2018,April,Saturday,28,118,15,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,ONUS,MT,21,GRY,400.0,STOLEN,17988,"{'type': 'Point', 'coordinates': (-79.40235491, 43.63675803)}"
-18015,2219,GO-20189013213,THEFT UNDER - BICYCLE,2018-04-29T00:00:00,2018,April,Sunday,29,119,11,2018-04-29T00:00:00,2018,April,Sunday,29,119,11,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,3,DGR,500.0,STOLEN,17989,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-18016,2250,GO-20189013756,THEFT UNDER - BICYCLE,2018-04-28T00:00:00,2018,April,Saturday,28,118,9,2018-05-04T00:00:00,2018,May,Friday,4,124,9,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,,RC,12,,2000.0,STOLEN,17990,"{'type': 'Point', 'coordinates': (-79.4166006, 43.6411109)}"
-18017,2262,GO-20189013974,THEFT UNDER - BICYCLE,2018-05-05T00:00:00,2018,May,Saturday,5,125,19,2018-05-06T00:00:00,2018,May,Sunday,6,126,19,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,,TO,6,BLU,150.0,STOLEN,17991,"{'type': 'Point', 'coordinates': (-79.40537327000001, 43.63616773)}"
-18018,2328,GO-20189015210,THEFT UNDER - BICYCLE,2018-05-16T00:00:00,2018,May,Wednesday,16,136,18,2018-05-16T00:00:00,2018,May,Wednesday,16,136,19,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GI,TALON 2014,MT,21,BLK,1300.0,STOLEN,17992,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-18019,2362,GO-20189015210,THEFT UNDER - BICYCLE,2018-05-16T00:00:00,2018,May,Wednesday,16,136,18,2018-05-16T00:00:00,2018,May,Wednesday,16,136,19,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GI,TALON,MT,21,BLK,1300.0,STOLEN,17993,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-18020,2443,GO-20189017185,THEFT UNDER - SHOPLIFTING,2018-06-02T00:00:00,2018,June,Saturday,2,153,23,2018-06-03T00:00:00,2018,June,Sunday,3,154,2,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,CAMELEON 3,MT,21,GRY,0.0,STOLEN,17994,"{'type': 'Point', 'coordinates': (-79.40524581, 43.64340152)}"
-18021,2554,GO-20181052234,THEFT UNDER - BICYCLE,2018-06-05T00:00:00,2018,June,Tuesday,5,156,21,2018-06-10T00:00:00,2018,June,Sunday,10,161,16,D14,Toronto,82,Niagara (82),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,CAADX,OT,18,SIL,1000.0,STOLEN,17995,"{'type': 'Point', 'coordinates': (-79.41720467, 43.64099056)}"
-18022,2615,GO-20181118196,THEFT UNDER - BICYCLE,2018-06-19T00:00:00,2018,June,Tuesday,19,170,3,2018-06-20T00:00:00,2018,June,Wednesday,20,171,0,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,KONA,,RG,18,,900.0,STOLEN,17996,"{'type': 'Point', 'coordinates': (-79.41882219, 43.64420339)}"
-18023,2639,GO-20189019595,THEFT UNDER - BICYCLE,2018-06-11T00:00:00,2018,June,Monday,11,162,9,2018-06-21T00:00:00,2018,June,Thursday,21,172,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,SU,SC 700C REACTIO,RG,18,WHI,225.0,STOLEN,17997,"{'type': 'Point', 'coordinates': (-79.40264178, 43.63743971)}"
-18024,4697,GO-20199021369,THEFT UNDER - BICYCLE,2019-07-07T00:00:00,2019,July,Sunday,7,188,9,2019-07-07T00:00:00,2019,July,Sunday,7,188,23,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,RUBY,OT,18,GRY,1500.0,STOLEN,17998,"{'type': 'Point', 'coordinates': (-79.42601113, 43.63922831)}"
-18025,4706,GO-20191275521,B&E,2019-06-30T00:00:00,2019,June,Sunday,30,181,10,2019-07-08T00:00:00,2019,July,Monday,8,189,19,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,PRIDE,,SC,0,RED,3000.0,STOLEN,17999,"{'type': 'Point', 'coordinates': (-79.43413785, 43.64109159)}"
-18026,4806,GO-20199022902,THEFT UNDER,2019-07-15T00:00:00,2019,July,Monday,15,196,1,2019-07-19T00:00:00,2019,July,Friday,19,200,11,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,,MT,12,BLU,0.0,STOLEN,18000,"{'type': 'Point', 'coordinates': (-79.43328064, 43.63375092)}"
-18027,4942,GO-20199024523,THEFT UNDER,2019-07-11T00:00:00,2019,July,Thursday,11,192,12,2019-07-31T00:00:00,2019,July,Wednesday,31,212,14,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,SPADE,OT,1,WHI,700.0,STOLEN,18001,"{'type': 'Point', 'coordinates': (-79.42601113, 43.63922831)}"
-18028,4989,GO-20191497534,THEFT UNDER - BICYCLE,2019-07-24T00:00:00,2019,July,Wednesday,24,205,12,2019-08-08T00:00:00,2019,August,Thursday,8,220,10,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN,UNKNOWN,MT,0,,,STOLEN,18002,"{'type': 'Point', 'coordinates': (-79.42524484, 43.64083535000001)}"
-18029,15207,GO-20189006366,THEFT UNDER - BICYCLE,2018-02-21T00:00:00,2018,February,Wednesday,21,52,20,2018-02-28T00:00:00,2018,February,Wednesday,28,59,14,D11,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,GI,SEDONA DX,OT,24,BLK,0.0,STOLEN,18003,"{'type': 'Point', 'coordinates': (-79.46524679, 43.63635487)}"
-18030,5124,GO-20199027182,THEFT UNDER - BICYCLE,2019-08-15T00:00:00,2019,August,Thursday,15,227,6,2019-08-21T00:00:00,2019,August,Wednesday,21,233,18,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,20,BLU,300.0,STOLEN,18004,"{'type': 'Point', 'coordinates': (-79.42881933, 43.63865271)}"
-18031,5231,GO-20199028720,THEFT UNDER - BICYCLE,2019-09-01T00:00:00,2019,September,Sunday,1,244,13,2019-09-04T00:00:00,2019,September,Wednesday,4,247,13,D14,Toronto,85,South Parkdale (85),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,ALR,TO,20,GRN,1500.0,STOLEN,18005,"{'type': 'Point', 'coordinates': (-79.43034246, 43.63397191)}"
-18032,5374,GO-20199031015,THEFT UNDER,2019-09-12T00:00:00,2019,September,Thursday,12,255,7,2019-09-22T00:00:00,2019,September,Sunday,22,265,0,D14,Toronto,85,South Parkdale (85),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,CROSS-CHECK,TO,20,BLK,2000.0,STOLEN,18006,"{'type': 'Point', 'coordinates': (-79.42944605, 43.64028883)}"
-18033,5378,GO-20199031102,THEFT UNDER,2019-09-20T00:00:00,2019,September,Friday,20,263,7,2019-09-22T00:00:00,2019,September,Sunday,22,265,21,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ZED 2.0,MT,21,WHI,400.0,STOLEN,18007,"{'type': 'Point', 'coordinates': (-79.42524484, 43.64083535000001)}"
-18034,5409,GO-20199031571,THEFT UNDER - BICYCLE,2019-09-25T00:00:00,2019,September,Wednesday,25,268,17,2019-09-26T00:00:00,2019,September,Thursday,26,269,9,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,HATCHET,RC,11,BLK,250.0,STOLEN,18008,"{'type': 'Point', 'coordinates': (-79.42409977, 43.63759298)}"
-18035,5461,GO-20191906055,THEFT UNDER - BICYCLE,2019-10-02T00:00:00,2019,October,Wednesday,2,275,23,2019-10-03T00:00:00,2019,October,Thursday,3,276,14,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,CIRCUIT,OT,21,BLU,299.0,STOLEN,18009,"{'type': 'Point', 'coordinates': (-79.43474242, 43.63395219)}"
-18036,5481,GO-20199032854,THEFT UNDER - BICYCLE,2019-10-07T00:00:00,2019,October,Monday,7,280,9,2019-10-07T00:00:00,2019,October,Monday,7,280,9,D14,Toronto,85,South Parkdale (85),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,19 VERZA SPEED,RG,50,GRY,549.0,STOLEN,18010,"{'type': 'Point', 'coordinates': (-79.43057287, 43.63462208)}"
-18037,5540,GO-20191736438,PROPERTY - FOUND,2019-09-10T00:00:00,2019,September,Tuesday,10,253,14,2019-09-10T00:00:00,2019,September,Tuesday,10,253,19,D14,Toronto,85,South Parkdale (85),"Open Areas (Lakes, Parks, Rivers)",Outside,OTHER,700C,MT,0,BLKGRN,,UNKNOWN,18011,"{'type': 'Point', 'coordinates': (-79.42409977, 43.63759298)}"
-18038,5543,GO-20192011007,THEFT UNDER - BICYCLE,2019-10-17T00:00:00,2019,October,Thursday,17,290,11,2019-10-18T00:00:00,2019,October,Friday,18,291,12,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,ESCAPE,RC,24,BLKBLU,600.0,STOLEN,18012,"{'type': 'Point', 'coordinates': (-79.42409977, 43.63759298)}"
-18039,5556,GO-20199034613,THEFT UNDER - BICYCLE,2019-10-13T00:00:00,2019,October,Sunday,13,286,5,2019-10-21T00:00:00,2019,October,Monday,21,294,10,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,GI,2018 BELIV 2 CI,TO,8,BLK,1049.0,STOLEN,18013,"{'type': 'Point', 'coordinates': (-79.42601113, 43.63922831)}"
-18040,5719,GO-20199038462,THEFT UNDER,2019-11-22T00:00:00,2019,November,Friday,22,326,13,2019-11-22T00:00:00,2019,November,Friday,22,326,15,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,17,MRN,0.0,STOLEN,18014,"{'type': 'Point', 'coordinates': (-79.42351373, 43.63972239)}"
-18041,5857,GO-20209003440,THEFT UNDER,2020-01-28T00:00:00,2020,January,Tuesday,28,28,8,2020-01-29T00:00:00,2020,January,Wednesday,29,29,9,D14,Toronto,85,South Parkdale (85),"Private Property Structure (Pool, Shed, Detached Garage)",Other,FJ,STROLL,RG,1,BLK,800.0,STOLEN,18015,"{'type': 'Point', 'coordinates': (-79.42632816, 43.63633154)}"
-18042,5937,GO-2020434974,THEFT UNDER,2020-03-01T00:00:00,2020,March,Sunday,1,61,0,2020-03-01T00:00:00,2020,March,Sunday,1,61,14,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,GIANT,,RC,21,BLUWHI,600.0,STOLEN,18016,"{'type': 'Point', 'coordinates': (-79.4359982, 43.63717625000001)}"
-18043,6246,GO-20209013886,THEFT UNDER - BICYCLE,2020-05-23T00:00:00,2020,May,Saturday,23,144,7,2020-05-25T00:00:00,2020,May,Monday,25,146,19,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,3,BLK,1000.0,STOLEN,18017,"{'type': 'Point', 'coordinates': (-79.43982394, 43.63995115)}"
-18044,6255,GO-20209013960,THEFT UNDER - BICYCLE,2020-05-25T00:00:00,2020,May,Monday,25,146,7,2020-05-26T00:00:00,2020,May,Tuesday,26,147,16,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,SC,,RG,99,,400.0,STOLEN,18018,"{'type': 'Point', 'coordinates': (-79.43657354, 43.63873271)}"
-18045,6735,GO-20209018536,THEFT UNDER,2020-07-24T00:00:00,2020,July,Friday,24,206,23,2020-07-25T00:00:00,2020,July,Saturday,25,207,17,D14,Toronto,85,South Parkdale (85),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,CUJO 3,MT,18,BLK,1468.0,STOLEN,18019,"{'type': 'Point', 'coordinates': (-79.42991435, 43.64149213)}"
-18046,6795,GO-20209018834,THEFT UNDER,2020-07-24T00:00:00,2020,July,Friday,24,206,23,2020-07-29T00:00:00,2020,July,Wednesday,29,211,8,D14,Toronto,85,South Parkdale (85),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,URBANIA 3,TO,24,BLK,700.0,STOLEN,18020,"{'type': 'Point', 'coordinates': (-79.42991435, 43.64149213)}"
-18047,1225,GO-20171528099,THEFT UNDER - BICYCLE,2017-08-19T00:00:00,2017,August,Saturday,19,231,11,2017-08-23T00:00:00,2017,August,Wednesday,23,235,20,D11,Toronto,83,Dufferin Grove (83),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,MT,0,GRN,300.0,STOLEN,18021,"{'type': 'Point', 'coordinates': (-79.43699471, 43.65521452000001)}"
-18048,6861,GO-20209019321,THEFT UNDER,2020-08-02T00:00:00,2020,August,Sunday,2,215,7,2020-08-04T00:00:00,2020,August,Tuesday,4,217,17,D14,Toronto,85,South Parkdale (85),"Open Areas (Lakes, Parks, Rivers)",Outside,CA,TRAIL 5,MT,10,BLK,1000.0,STOLEN,18022,"{'type': 'Point', 'coordinates': (-79.43738685, 43.63371977)}"
-18049,6955,GO-20201524969,THEFT OF EBIKE UNDER $5000,2020-08-13T00:00:00,2020,August,Thursday,13,226,20,2020-08-14T00:00:00,2020,August,Friday,14,227,16,D14,Toronto,85,South Parkdale (85),"Single Home, House (Attach Garage, Cottage, Mobile)",House,EMMO,AVADOR,EL,1,WHIBLK,1600.0,STOLEN,18023,"{'type': 'Point', 'coordinates': (-79.42935842, 43.63416521)}"
-18050,6968,GO-20209020297,THEFT UNDER,2020-08-15T00:00:00,2020,August,Saturday,15,228,14,2020-08-15T00:00:00,2020,August,Saturday,15,228,15,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,OT,YUBA MONDO,OT,1,ONG,2300.0,STOLEN,18024,"{'type': 'Point', 'coordinates': (-79.43240631, 43.63969174)}"
-18051,6975,GO-20209020420,THEFT UNDER,2020-08-11T00:00:00,2020,August,Tuesday,11,224,14,2020-08-17T00:00:00,2020,August,Monday,17,230,10,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,16,BLK,1000.0,STOLEN,18025,"{'type': 'Point', 'coordinates': (-79.42351373, 43.63972239)}"
-18052,7028,GO-20209020927,THEFT UNDER,2020-08-21T00:00:00,2020,August,Friday,21,234,17,2020-08-21T00:00:00,2020,August,Friday,21,234,18,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,OT,VENETO 3,RG,21,RED,800.0,STOLEN,18026,"{'type': 'Point', 'coordinates': (-79.42154165, 43.63810954)}"
-18053,7163,GO-20201668040,THEFT OF EBIKE UNDER $5000,2020-08-31T00:00:00,2020,August,Monday,31,244,4,2020-09-03T00:00:00,2020,September,Thursday,3,247,19,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,EMMO,HORNET,EL,3,BLKBLU,1806.0,STOLEN,18027,"{'type': 'Point', 'coordinates': (-79.42351373, 43.63972239)}"
-18054,7195,GO-20209022520,THEFT UNDER,2020-09-07T00:00:00,2020,September,Monday,7,251,0,2020-09-07T00:00:00,2020,September,Monday,7,251,11,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,27,GRY,700.0,STOLEN,18028,"{'type': 'Point', 'coordinates': (-79.42688518, 43.63463811)}"
-18055,7319,GO-20209024073,THEFT UNDER,2020-09-21T00:00:00,2020,September,Monday,21,265,0,2020-09-22T00:00:00,2020,September,Tuesday,22,266,12,D14,Toronto,85,South Parkdale (85),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KH,,RG,8,BLK,600.0,STOLEN,18029,"{'type': 'Point', 'coordinates': (-79.42097315, 43.63947205000001)}"
-18056,7320,GO-20209024073,THEFT UNDER,2020-09-21T00:00:00,2020,September,Monday,21,265,0,2020-09-22T00:00:00,2020,September,Tuesday,22,266,12,D14,Toronto,85,South Parkdale (85),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,,RG,3,MRN,0.0,STOLEN,18030,"{'type': 'Point', 'coordinates': (-79.42097315, 43.63947205000001)}"
-18057,7382,GO-20209024819,THEFT FROM MOTOR VEHICLE UNDER,2020-09-27T00:00:00,2020,September,Sunday,27,271,18,2020-09-28T00:00:00,2020,September,Monday,28,272,21,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,GI,DEFY ADVANCED,RC,24,GRN,2000.0,STOLEN,18031,"{'type': 'Point', 'coordinates': (-79.42524484, 43.64083535000001)}"
-18058,7525,GO-20209027328,THEFT UNDER,2020-10-21T00:00:00,2020,October,Wednesday,21,295,12,2020-10-22T00:00:00,2020,October,Thursday,22,296,13,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,UK,DAYTRIPPER,RG,3,BRN,1100.0,STOLEN,18032,"{'type': 'Point', 'coordinates': (-79.42663898, 43.64122736)}"
-18059,7542,GO-20209027635,THEFT UNDER,2020-10-22T00:00:00,2020,October,Thursday,22,296,0,2020-10-25T00:00:00,2020,October,Sunday,25,299,15,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,CC,PRESTO,TO,21,BLK,300.0,STOLEN,18033,"{'type': 'Point', 'coordinates': (-79.42351373, 43.63972239)}"
-18060,7598,GO-20209028880,THEFT UNDER,2020-11-04T00:00:00,2020,November,Wednesday,4,309,10,2020-11-06T00:00:00,2020,November,Friday,6,311,16,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,OT,TRAFIK,RG,24,BLK,100.0,STOLEN,18034,"{'type': 'Point', 'coordinates': (-79.42688518, 43.63463811)}"
-18061,7625,GO-20209029369,THEFT UNDER,2020-11-10T00:00:00,2020,November,Tuesday,10,315,18,2020-11-12T00:00:00,2020,November,Thursday,12,317,12,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,TR,,RG,18,GRY,0.0,STOLEN,18035,"{'type': 'Point', 'coordinates': (-79.42601113, 43.63922831)}"
-18062,7707,GO-20209032270,THEFT UNDER,2020-12-16T00:00:00,2020,December,Wednesday,16,351,22,2020-12-17T00:00:00,2020,December,Thursday,17,352,17,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,UK,,TA,12,LGR,400.0,STOLEN,18036,"{'type': 'Point', 'coordinates': (-79.43474242, 43.63395219)}"
-18063,7826,GO-20141858506,THEFT UNDER,2014-04-03T00:00:00,2014,April,Thursday,3,93,12,2014-04-09T00:00:00,2014,April,Wednesday,9,99,16,D14,Toronto,85,South Parkdale (85),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FORTRESS,1700TA,SC,1,RED,4000.0,STOLEN,18037,"{'type': 'Point', 'coordinates': (-79.43827743, 43.63589862)}"
-18064,24187,GO-20209014985,THEFT UNDER,2020-06-06T00:00:00,2020,June,Saturday,6,158,19,2020-06-09T00:00:00,2020,June,Tuesday,9,161,14,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,RM,,RG,21,RED,600.0,STOLEN,18038,"{'type': 'Point', 'coordinates': (-79.42712016, 43.64250955)}"
-18065,7965,GO-20142142275,THEFT UNDER,2014-05-21T00:00:00,2014,May,Wednesday,21,141,11,2014-05-24T00:00:00,2014,May,Saturday,24,144,12,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,HUMSANHSM 223,EL,1,BLK,800.0,STOLEN,18039,"{'type': 'Point', 'coordinates': (-79.43413785, 43.64109159)}"
-18066,8017,GO-20149003730,THEFT UNDER,2014-05-24T00:00:00,2014,May,Saturday,24,144,19,2014-06-01T00:00:00,2014,June,Sunday,1,152,12,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,OT,SIRRUS,RC,18,,959.0,STOLEN,18040,"{'type': 'Point', 'coordinates': (-79.42154165, 43.63810954)}"
-18067,8162,GO-20142317581,THEFT UNDER,2014-06-17T00:00:00,2014,June,Tuesday,17,168,17,2014-06-18T00:00:00,2014,June,Wednesday,18,169,18,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN,UNKNOWN,EL,2,ONG,1200.0,STOLEN,18041,"{'type': 'Point', 'coordinates': (-79.42921876, 43.63418515)}"
-18068,8243,GO-20149004421,THEFT UNDER,2014-06-17T00:00:00,2014,June,Tuesday,17,168,22,2014-06-25T00:00:00,2014,June,Wednesday,25,176,8,D14,Toronto,85,South Parkdale (85),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,CROSSTRAIL DISC,RG,24,RED,600.0,STOLEN,18042,"{'type': 'Point', 'coordinates': (-79.43657354, 43.63873271)}"
-18069,8564,GO-20149005553,THEFT UNDER,2014-07-30T00:00:00,2014,July,Wednesday,30,211,18,2014-08-01T00:00:00,2014,August,Friday,1,213,10,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,OT,ROAD BIKE,OT,1,BLK,600.0,STOLEN,18043,"{'type': 'Point', 'coordinates': (-79.42351373, 43.63972239)}"
-18070,8690,GO-20149006066,THEFT UNDER,2014-08-09T00:00:00,2014,August,Saturday,9,221,12,2014-08-18T00:00:00,2014,August,Monday,18,230,12,D11,Toronto,85,South Parkdale (85),"Open Areas (Lakes, Parks, Rivers)",Outside,GT,4.40E+11,MT,27,DBL,500.0,STOLEN,18044,"{'type': 'Point', 'coordinates': (-79.45886359, 43.63771054)}"
-18071,9186,GO-20143296324,THEFT UNDER,2014-11-13T00:00:00,2014,November,Thursday,13,317,20,2014-11-13T00:00:00,2014,November,Thursday,13,317,20,D14,Toronto,85,South Parkdale (85),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OPUS,UNISEX,OT,0,WHI,800.0,STOLEN,18045,"{'type': 'Point', 'coordinates': (-79.43087678, 43.63821035)}"
-18072,9223,GO-20143447263,THEFT UNDER,2014-12-04T00:00:00,2014,December,Thursday,4,338,15,2014-12-09T00:00:00,2014,December,Tuesday,9,343,12,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RALEIGH,,MT,3,BLU,,STOLEN,18046,"{'type': 'Point', 'coordinates': (-79.43087678, 43.63821035)}"
-18073,9237,GO-20143533658,THEFT UNDER,2014-12-18T00:00:00,2014,December,Thursday,18,352,17,2014-12-22T00:00:00,2014,December,Monday,22,356,18,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,GIANT,BOWERY,RG,1,BLK,,STOLEN,18047,"{'type': 'Point', 'coordinates': (-79.42808998, 43.63598082)}"
-18074,9273,GO-2015136116,THEFT UNDER,2015-01-23T00:00:00,2015,January,Friday,23,23,13,2015-01-23T00:00:00,2015,January,Friday,23,23,20,D14,Toronto,85,South Parkdale (85),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,BANANA,,MT,1,YELONG,350.0,STOLEN,18048,"{'type': 'Point', 'coordinates': (-79.42881933, 43.63865271)}"
-18075,10100,GO-20151263516,THEFT UNDER,2015-07-21T00:00:00,2015,July,Tuesday,21,202,17,2015-07-24T00:00:00,2015,July,Friday,24,205,16,D14,Toronto,85,South Parkdale (85),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OPUS,THE URBANISTA,RG,7,BLK,750.0,STOLEN,18049,"{'type': 'Point', 'coordinates': (-79.43183256, 43.63802419)}"
-18076,10189,GO-20159005416,THEFT UNDER,2015-08-05T00:00:00,2015,August,Wednesday,5,217,19,2015-08-06T00:00:00,2015,August,Thursday,6,218,19,D14,Toronto,85,South Parkdale (85),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,TRANS CANADA TR,OT,1,PLE,1100.0,STOLEN,18050,"{'type': 'Point', 'coordinates': (-79.42796684, 43.64059924)}"
-18077,10407,GO-20159006791,THEFT UNDER,2015-08-31T00:00:00,2015,August,Monday,31,243,19,2015-09-05T00:00:00,2015,September,Saturday,5,248,19,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,GI,SEEK 0,RG,8,DGR,1500.0,STOLEN,18051,"{'type': 'Point', 'coordinates': (-79.42524484, 43.64083535000001)}"
-18078,10476,GO-20159007245,THEFT UNDER,2015-09-14T00:00:00,2015,September,Monday,14,257,20,2015-09-15T00:00:00,2015,September,Tuesday,15,258,20,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,,MT,18,BLK,500.0,STOLEN,18052,"{'type': 'Point', 'coordinates': (-79.42881933, 43.63865271)}"
-18079,10520,GO-20159007545,THEFT UNDER,2015-09-21T00:00:00,2015,September,Monday,21,264,15,2015-09-21T00:00:00,2015,September,Monday,21,264,22,D14,Toronto,85,South Parkdale (85),Schools During Un-Supervised Activity,Educational,BI,OLD MODEL EARLY,OT,5,LBL,800.0,STOLEN,18053,"{'type': 'Point', 'coordinates': (-79.43468620000002, 43.63746024)}"
-18080,10522,GO-20159007550,THEFT UNDER,2015-09-03T00:00:00,2015,September,Thursday,3,246,23,2015-09-22T00:00:00,2015,September,Tuesday,22,265,0,D14,Toronto,85,South Parkdale (85),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,QUICK CX,MT,9,WHI,750.0,STOLEN,18054,"{'type': 'Point', 'coordinates': (-79.43057287, 43.63462208)}"
-18081,10550,GO-20159007770,THEFT UNDER,2015-09-25T00:00:00,2015,September,Friday,25,268,12,2015-09-26T00:00:00,2015,September,Saturday,26,269,0,D14,Toronto,85,South Parkdale (85),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,6,BLKGRY,0.0,STOLEN,18055,"{'type': 'Point', 'coordinates': (-79.42843902, 43.64178861)}"
-18082,10623,GO-20159003649,THEFT UNDER,2015-06-08T00:00:00,2015,June,Monday,8,159,20,2015-06-15T00:00:00,2015,June,Monday,15,166,21,D14,Toronto,85,South Parkdale (85),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,AMSTERDAM,OT,8,SIL,750.0,STOLEN,18056,"{'type': 'Point', 'coordinates': (-79.43735757, 43.63689178)}"
-18083,10668,GO-20151817208,THEFT UNDER,2015-10-21T00:00:00,2015,October,Wednesday,21,294,8,2015-10-22T00:00:00,2015,October,Thursday,22,295,9,D14,Toronto,85,South Parkdale (85),Schools During Supervised Activity,Educational,UNKNOWN MAKE,,RG,1,GRY,200.0,STOLEN,18057,"{'type': 'Point', 'coordinates': (-79.43657354, 43.63873271)}"
-18084,10669,GO-20151817208,THEFT UNDER,2015-10-21T00:00:00,2015,October,Wednesday,21,294,8,2015-10-22T00:00:00,2015,October,Thursday,22,295,9,D14,Toronto,85,South Parkdale (85),Schools During Supervised Activity,Educational,UNKNOWN MAKE,,RG,1,GRN,200.0,STOLEN,18058,"{'type': 'Point', 'coordinates': (-79.43657354, 43.63873271)}"
-18085,10860,GO-20152124405,B&E W'INTENT,2015-11-21T00:00:00,2015,November,Saturday,21,325,0,2015-12-12T00:00:00,2015,December,Saturday,12,346,14,D14,Toronto,85,South Parkdale (85),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTH,,OT,18,,,STOLEN,18059,"{'type': 'Point', 'coordinates': (-79.42944605, 43.64028883)}"
-18086,10861,GO-20152124405,B&E W'INTENT,2015-11-21T00:00:00,2015,November,Saturday,21,325,0,2015-12-12T00:00:00,2015,December,Saturday,12,346,14,D14,Toronto,85,South Parkdale (85),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,21,,,STOLEN,18060,"{'type': 'Point', 'coordinates': (-79.42944605, 43.64028883)}"
-18087,10911,GO-201636299,B&E W'INTENT,2015-12-19T00:00:00,2015,December,Saturday,19,353,0,2016-01-07T00:00:00,2016,January,Thursday,7,7,12,D14,Toronto,85,South Parkdale (85),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,MT,0,,,STOLEN,18061,"{'type': 'Point', 'coordinates': (-79.42409977, 43.63759298)}"
-18088,11009,GO-2016326082,THEFT UNDER - BICYCLE,2016-02-23T00:00:00,2016,February,Tuesday,23,54,8,2016-02-24T00:00:00,2016,February,Wednesday,24,55,8,D14,Toronto,85,South Parkdale (85),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,CRUISER,RG,5,RED,150.0,STOLEN,18062,"{'type': 'Point', 'coordinates': (-79.42480064, 43.63946551)}"
-18089,11034,GO-20169002178,THEFT UNDER,2016-03-10T00:00:00,2016,March,Thursday,10,70,10,2016-03-10T00:00:00,2016,March,Thursday,10,70,10,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,NO,VFR,RG,24,BLK,1961.0,STOLEN,18063,"{'type': 'Point', 'coordinates': (-79.42663898, 43.64122736)}"
-18090,11279,GO-2016797099,THEFT UNDER - BICYCLE,2016-05-06T00:00:00,2016,May,Friday,6,127,16,2016-05-09T00:00:00,2016,May,Monday,9,130,15,D14,Toronto,85,South Parkdale (85),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,8.2 DS,OT,21,GRYGRN,700.0,STOLEN,18064,"{'type': 'Point', 'coordinates': (-79.43468620000002, 43.63746024)}"
-18091,11619,GO-20169006240,THEFT UNDER,2016-06-22T00:00:00,2016,June,Wednesday,22,174,12,2016-06-23T00:00:00,2016,June,Thursday,23,175,11,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,CC,AVENUE,RG,18,BLU,250.0,STOLEN,18065,"{'type': 'Point', 'coordinates': (-79.43031712, 43.63834508)}"
-18092,11780,GO-20169007106,THEFT UNDER,2016-07-12T00:00:00,2016,July,Tuesday,12,194,7,2016-07-12T00:00:00,2016,July,Tuesday,12,194,20,D11,Toronto,85,South Parkdale (85),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,OT,21,BLU,250.0,STOLEN,18066,"{'type': 'Point', 'coordinates': (-79.4536313, 43.63891668000001)}"
-18093,11782,GO-20161203287,THEFT OF EBIKE UNDER $5000,2016-06-12T00:00:00,2016,June,Sunday,12,164,16,2016-07-09T00:00:00,2016,July,Saturday,9,191,17,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,WIND,EL,1,BLK,,STOLEN,18067,"{'type': 'Point', 'coordinates': (-79.43783051, 43.63847104)}"
-18094,12073,GO-20161408255,THEFT UNDER - BICYCLE,2016-07-26T00:00:00,2016,July,Tuesday,26,208,17,2016-08-10T00:00:00,2016,August,Wednesday,10,223,10,D14,Toronto,85,South Parkdale (85),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KHS,URBAN SOUL,RC,1,DBL,650.0,STOLEN,18068,"{'type': 'Point', 'coordinates': (-79.4399295, 43.63641927)}"
-18095,12715,GO-20169012930,THEFT UNDER - BICYCLE,2016-09-19T00:00:00,2016,September,Monday,19,263,10,2016-11-03T00:00:00,2016,November,Thursday,3,308,10,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,,,RG,6,,200.0,STOLEN,18069,"{'type': 'Point', 'coordinates': (-79.43657354, 43.63873271)}"
-18096,12862,GO-20162188411,PROPERTY - FOUND,2016-12-10T00:00:00,2016,December,Saturday,10,345,10,2016-12-10T00:00:00,2016,December,Saturday,10,345,15,D11,Toronto,85,South Parkdale (85),"Open Areas (Lakes, Parks, Rivers)",Outside,CCM,ELITE,TO,5,BRN,,UNKNOWN,18070,"{'type': 'Point', 'coordinates': (-79.4679213, 43.63495851)}"
-18097,14268,GO-20209014957,THEFT UNDER,2020-06-06T00:00:00,2020,June,Saturday,6,158,12,2020-06-09T00:00:00,2020,June,Tuesday,9,161,12,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,NO,MONTEREY,RC,10,BLU,1000.0,STOLEN,18071,"{'type': 'Point', 'coordinates': (-79.42524484, 43.64083535000001)}"
-18098,14299,GO-20209020850,THEFT UNDER,2020-08-20T00:00:00,2020,August,Thursday,20,233,22,2020-08-21T00:00:00,2020,August,Friday,21,234,11,D14,Toronto,85,South Parkdale (85),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,1,BLU,0.0,STOLEN,18072,"{'type': 'Point', 'coordinates': (-79.4399295, 43.63641927)}"
-18099,14470,GO-20189035138,THEFT UNDER - BICYCLE,2018-10-09T00:00:00,2018,October,Tuesday,9,282,22,2018-10-22T00:00:00,2018,October,Monday,22,295,17,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,SU,RWMPO,RG,21,BLK,0.0,STOLEN,18073,"{'type': 'Point', 'coordinates': (-79.42921876, 43.63418515)}"
-18100,14485,GO-201920076,B&E,2018-01-02T00:00:00,2018,January,Tuesday,2,2,17,2019-01-04T00:00:00,2019,January,Friday,4,4,11,D14,Toronto,85,South Parkdale (85),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,SKYWAY,RG,1,BLK,550.0,STOLEN,18074,"{'type': 'Point', 'coordinates': (-79.42529763, 43.63734542)}"
-18101,14494,GO-20199006205,THEFT UNDER - BICYCLE,2019-02-04T00:00:00,2019,February,Monday,4,35,10,2019-02-21T00:00:00,2019,February,Thursday,21,52,18,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GF,TARPON,MT,21,BLU,300.0,STOLEN,18075,"{'type': 'Point', 'coordinates': (-79.42601113, 43.63922831)}"
-18102,14504,GO-20199011682,THEFT UNDER - BICYCLE,2019-04-12T00:00:00,2019,April,Friday,12,102,15,2019-04-13T00:00:00,2019,April,Saturday,13,103,9,D14,Toronto,85,South Parkdale (85),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,,TO,1,BLK,700.0,STOLEN,18076,"{'type': 'Point', 'coordinates': (-79.42480064, 43.63946551)}"
-18103,14520,GO-20199018148,THEFT UNDER - BICYCLE,2019-06-11T00:00:00,2019,June,Tuesday,11,162,4,2019-06-11T00:00:00,2019,June,Tuesday,11,162,6,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,UK,SIRRUS,OT,24,WHI,723.0,STOLEN,18077,"{'type': 'Point', 'coordinates': (-79.42808998, 43.63598082)}"
-18104,14530,GO-20191199402,B&E W'INTENT,2019-06-06T00:00:00,2019,June,Thursday,6,157,20,2019-06-28T00:00:00,2019,June,Friday,28,179,7,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,GIANT,TCR,MT,21,REDWHI,1000.0,UNKNOWN,18078,"{'type': 'Point', 'coordinates': (-79.42601113, 43.63922831)}"
-18105,14534,GO-20199020916,THEFT UNDER - BICYCLE,2018-12-01T00:00:00,2018,December,Saturday,1,335,22,2019-07-03T00:00:00,2019,July,Wednesday,3,184,23,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,OT,4.9LC,MT,50,BLU,3450.0,STOLEN,18079,"{'type': 'Point', 'coordinates': (-79.42661556, 43.63707373)}"
-18106,14535,GO-20199020916,THEFT UNDER - BICYCLE,2018-12-01T00:00:00,2018,December,Saturday,1,335,22,2019-07-03T00:00:00,2019,July,Wednesday,3,184,23,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,SC,,MT,50,RED,860.0,STOLEN,18080,"{'type': 'Point', 'coordinates': (-79.42661556, 43.63707373)}"
-18107,14536,GO-20199020916,THEFT UNDER - BICYCLE,2018-12-01T00:00:00,2018,December,Saturday,1,335,22,2019-07-03T00:00:00,2019,July,Wednesday,3,184,23,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,50,WHI,400.0,STOLEN,18081,"{'type': 'Point', 'coordinates': (-79.42661556, 43.63707373)}"
-18108,14558,GO-20199025174,THEFT UNDER - BICYCLE,2019-08-06T00:00:00,2019,August,Tuesday,6,218,10,2019-08-06T00:00:00,2019,August,Tuesday,6,218,22,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,OT,COMPANY NAME: H,RG,18,,138.0,STOLEN,18082,"{'type': 'Point', 'coordinates': (-79.42808998, 43.63598082)}"
-18109,14560,GO-20199025611,THEFT UNDER,2019-08-05T00:00:00,2019,August,Monday,5,217,14,2019-08-10T00:00:00,2019,August,Saturday,10,222,9,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,,MT,21,BLK,350.0,STOLEN,18083,"{'type': 'Point', 'coordinates': (-79.42881933, 43.63865271)}"
-18110,14584,GO-20199031015,THEFT UNDER,2019-09-12T00:00:00,2019,September,Thursday,12,255,7,2019-09-22T00:00:00,2019,September,Sunday,22,265,0,D14,Toronto,85,South Parkdale (85),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,CROSS-CHECK,TO,20,BLK,2781.0,STOLEN,18084,"{'type': 'Point', 'coordinates': (-79.42944605, 43.64028883)}"
-18111,14609,GO-20192493793,THEFT UNDER - BICYCLE,2019-12-24T00:00:00,2019,December,Tuesday,24,358,13,2019-12-27T00:00:00,2019,December,Friday,27,361,16,D14,Toronto,85,South Parkdale (85),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,MONSTER,EL,3,BLK,2095.0,STOLEN,18085,"{'type': 'Point', 'coordinates': (-79.42480064, 43.63946551)}"
-18112,14621,GO-2020606396,B&E,2020-03-26T00:00:00,2020,March,Thursday,26,86,0,2020-03-26T00:00:00,2020,March,Thursday,26,86,15,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN,,OT,0,,150.0,STOLEN,18086,"{'type': 'Point', 'coordinates': (-79.43057287, 43.63462208)}"
-18113,14628,GO-20209011649,THEFT UNDER,2020-04-18T00:00:00,2020,April,Saturday,18,109,14,2020-04-21T00:00:00,2020,April,Tuesday,21,112,15,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,,MT,18,BLK,2000.0,STOLEN,18087,"{'type': 'Point', 'coordinates': (-79.42524484, 43.64083535000001)}"
-18114,14638,GO-20209013423,THEFT UNDER,2020-05-17T00:00:00,2020,May,Sunday,17,138,1,2020-05-19T00:00:00,2020,May,Tuesday,19,140,13,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,TR,,OT,21,SIL,700.0,STOLEN,18088,"{'type': 'Point', 'coordinates': (-79.42524484, 43.64083535000001)}"
-18115,14665,GO-20179009379,THEFT UNDER,2017-07-03T00:00:00,2017,July,Monday,3,184,18,2017-07-04T00:00:00,2017,July,Tuesday,4,185,10,D14,Toronto,85,South Parkdale (85),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,,MT,21,DBL,600.0,STOLEN,18089,"{'type': 'Point', 'coordinates': (-79.4399295, 43.63641927)}"
-18116,14671,GO-20179010288,THEFT UNDER - BICYCLE,2017-07-15T00:00:00,2017,July,Saturday,15,196,9,2017-07-15T00:00:00,2017,July,Saturday,15,196,21,D14,Toronto,85,South Parkdale (85),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,7,CRM,200.0,STOLEN,18090,"{'type': 'Point', 'coordinates': (-79.42576564, 43.63489225)}"
-18117,14701,GO-20179013272,THEFT UNDER - BICYCLE,2016-11-27T00:00:00,2016,November,Sunday,27,332,20,2017-08-24T00:00:00,2017,August,Thursday,24,236,21,D14,Toronto,85,South Parkdale (85),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,12 AVAIL 3 S LI,TO,14,OTH,770.0,STOLEN,18091,"{'type': 'Point', 'coordinates': (-79.43240631, 43.63969174)}"
-18118,14706,GO-20179013922,THEFT UNDER,2017-09-02T00:00:00,2017,September,Saturday,2,245,18,2017-09-03T00:00:00,2017,September,Sunday,3,246,14,D14,Toronto,85,South Parkdale (85),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,TRANCE X1,MT,30,BLK,2000.0,STOLEN,18092,"{'type': 'Point', 'coordinates': (-79.43413785, 43.64109159)}"
-18119,14712,GO-20179014314,THEFT UNDER,2017-08-18T00:00:00,2017,August,Friday,18,230,16,2017-09-09T00:00:00,2017,September,Saturday,9,252,8,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,SC,GRAFT,MT,24,BLK,900.0,STOLEN,18093,"{'type': 'Point', 'coordinates': (-79.43474242, 43.63395219)}"
-18120,14720,GO-20179015445,THEFT UNDER - BICYCLE,2017-09-21T00:00:00,2017,September,Thursday,21,264,16,2017-09-22T00:00:00,2017,September,Friday,22,265,10,D14,Toronto,85,South Parkdale (85),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,GT,TRANSEO 2.0,OT,24,BLU,500.0,STOLEN,18094,"{'type': 'Point', 'coordinates': (-79.42968514, 43.64199902)}"
-18121,14725,GO-20171712868,THEFT UNDER - BICYCLE,2017-09-20T00:00:00,2017,September,Wednesday,20,263,19,2017-09-21T00:00:00,2017,September,Thursday,21,264,9,D14,Toronto,85,South Parkdale (85),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,1.1,OT,21,RED,,STOLEN,18095,"{'type': 'Point', 'coordinates': (-79.43034246, 43.63397191)}"
-18122,14796,GO-20189017689,THEFT UNDER - BICYCLE,2018-06-03T00:00:00,2018,June,Sunday,3,154,0,2018-06-06T00:00:00,2018,June,Wednesday,6,157,22,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,KH,FLITE 100,RG,1,BLK,700.0,STOLEN,18096,"{'type': 'Point', 'coordinates': (-79.43232991, 43.64147429)}"
-18123,14834,GO-20189026121,THEFT UNDER - BICYCLE,2018-07-31T00:00:00,2018,July,Tuesday,31,212,17,2018-08-13T00:00:00,2018,August,Monday,13,225,8,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,UNKNOWN,MT,28,,2000.0,STOLEN,18097,"{'type': 'Point', 'coordinates': (-79.43103092000001, 43.63252039)}"
-18124,15060,GO-20149004796,THEFT UNDER,2014-07-09T00:00:00,2014,July,Wednesday,9,190,9,2014-07-09T00:00:00,2014,July,Wednesday,9,190,11,D11,Toronto,85,South Parkdale (85),"Open Areas (Lakes, Parks, Rivers)",Outside,RA,,MT,30,BLU,500.0,STOLEN,18098,"{'type': 'Point', 'coordinates': (-79.45886359, 43.63771054)}"
-18125,15069,GO-20149006334,THEFT UNDER,2014-08-17T00:00:00,2014,August,Sunday,17,229,13,2014-08-27T00:00:00,2014,August,Wednesday,27,239,9,D11,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,12,BLK,700.0,STOLEN,18099,"{'type': 'Point', 'coordinates': (-79.46524679, 43.63635487)}"
-18126,15101,GO-20151460070,THEFT UNDER,2015-08-21T00:00:00,2015,August,Friday,21,233,16,2015-08-27T00:00:00,2015,August,Thursday,27,239,18,D11,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,APEX,MT,19,WHIBLU,339.0,STOLEN,18100,"{'type': 'Point', 'coordinates': (-79.46524679, 43.63635487)}"
-18127,21362,GO-20189034164,THEFT UNDER,2018-10-13T00:00:00,2018,October,Saturday,13,286,21,2018-10-15T00:00:00,2018,October,Monday,15,288,14,D14,Toronto,83,Dufferin Grove (83),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SC,700C VOLARE,RG,21,DBL,600.0,STOLEN,18101,"{'type': 'Point', 'coordinates': (-79.43109264, 43.66079084)}"
-18128,7990,GO-20142156194,THEFT UNDER,2014-05-24T00:00:00,2014,May,Saturday,24,144,17,2014-05-26T00:00:00,2014,May,Monday,26,146,13,D14,Toronto,84,Little Portugal (84),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MARIN OR MARINO,VALENCIA,RC,18,REDSIL,1500.0,STOLEN,18102,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18129,1302,GO-20179013958,THEFT UNDER,2017-09-02T00:00:00,2017,September,Saturday,2,245,14,2017-09-04T00:00:00,2017,September,Monday,4,247,14,D14,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,KO,,MT,10,DBL,0.0,STOLEN,18103,"{'type': 'Point', 'coordinates': (-79.43104094, 43.65284847)}"
-18130,21384,GO-20169006177,THEFT UNDER,2016-06-19T00:00:00,2016,June,Sunday,19,171,23,2016-06-22T00:00:00,2016,June,Wednesday,22,174,13,D14,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,GF,,MT,7,SIL,900.0,STOLEN,18104,"{'type': 'Point', 'coordinates': (-79.42739759, 43.65617153)}"
-18131,24164,GO-2020719682,THEFT UNDER - BICYCLE,2020-04-11T00:00:00,2020,April,Saturday,11,102,10,2020-04-14T00:00:00,2020,April,Tuesday,14,105,15,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,FELT,,MT,21,GRY,700.0,STOLEN,18105,"{'type': 'Point', 'coordinates': (-79.39968108, 43.63663014)}"
-18132,24194,GO-20179010901,THEFT UNDER - BICYCLE,2017-07-22T00:00:00,2017,July,Saturday,22,203,14,2017-07-24T00:00:00,2017,July,Monday,24,205,10,D14,Toronto,84,Little Portugal (84),"Private Property Structure (Pool, Shed, Detached Garage)",Other,FJ,TRACK CLASSIC,RG,1,WHI,500.0,STOLEN,18106,"{'type': 'Point', 'coordinates': (-79.42916414, 43.6438195)}"
-18133,15350,GO-20149006284,THEFT UNDER,2014-08-22T00:00:00,2014,August,Friday,22,234,18,2014-08-25T00:00:00,2014,August,Monday,25,237,17,D14,Toronto,85,South Parkdale (85),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,GOLDEN SPORTS,RC,18,ONG,0.0,STOLEN,18107,"{'type': 'Point', 'coordinates': (-79.42663898, 43.64122736)}"
-18134,8043,GO-20142218680,B&E W'INTENT,2014-01-03T00:00:00,2014,January,Friday,3,3,19,2014-06-04T00:00:00,2014,June,Wednesday,4,155,11,D14,Toronto,84,Little Portugal (84),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RALEIGH,LEGENDS,MT,21,RED,170.0,STOLEN,18108,"{'type': 'Point', 'coordinates': (-79.43221823, 43.65172517)}"
-18135,8431,GO-20149005021,THEFT UNDER,2014-07-13T00:00:00,2014,July,Sunday,13,194,15,2014-07-15T00:00:00,2014,July,Tuesday,15,196,20,D14,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,TEAM RECORD,RC,5,RED,200.0,STOLEN,18109,"{'type': 'Point', 'coordinates': (-79.43190816, 43.65091866)}"
-18136,8464,GO-20149005165,THEFT UNDER,2014-07-19T00:00:00,2014,July,Saturday,19,200,23,2014-07-20T00:00:00,2014,July,Sunday,20,201,20,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,3,BGE,880.0,STOLEN,18110,"{'type': 'Point', 'coordinates': (-79.42368786, 43.64113148)}"
-18137,8591,GO-20149005641,THEFT UNDER,2014-08-04T00:00:00,2014,August,Monday,4,216,13,2014-08-04T00:00:00,2014,August,Monday,4,216,14,D11,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MA,,RC,9,BLK,500.0,STOLEN,18111,"{'type': 'Point', 'coordinates': (-79.43790302000001, 43.64912973)}"
-18138,8811,GO-20149006568,THEFT UNDER,2014-09-03T00:00:00,2014,September,Wednesday,3,246,21,2014-09-04T00:00:00,2014,September,Thursday,4,247,17,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,,RC,18,GRY,900.0,STOLEN,18112,"{'type': 'Point', 'coordinates': (-79.42368786, 43.64113148)}"
-18139,8989,GO-20143001036,THEFT UNDER,2014-09-27T00:00:00,2014,September,Saturday,27,270,21,2014-09-28T00:00:00,2014,September,Sunday,28,271,11,D14,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TAO TAO,,EL,1,SIL,1200.0,STOLEN,18113,"{'type': 'Point', 'coordinates': (-79.42978953, 43.64958423)}"
-18140,8991,GO-20143003658,THEFT UNDER,2014-09-28T00:00:00,2014,September,Sunday,28,271,13,2014-09-28T00:00:00,2014,September,Sunday,28,271,20,D14,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,,MT,24,BLK,250.0,STOLEN,18114,"{'type': 'Point', 'coordinates': (-79.42407483, 43.64782021)}"
-18141,9211,GO-20143417934,THEFT UNDER,2014-12-03T00:00:00,2014,December,Wednesday,3,337,0,2014-12-03T00:00:00,2014,December,Wednesday,3,337,21,D11,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,PK RIPPER,BM,24,BLK,500.0,STOLEN,18115,"{'type': 'Point', 'coordinates': (-79.43790302000001, 43.64912973)}"
-18142,9212,GO-20143417934,THEFT UNDER,2014-12-03T00:00:00,2014,December,Wednesday,3,337,0,2014-12-03T00:00:00,2014,December,Wednesday,3,337,21,D11,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,CUSTOM,TO,10,SIL,,STOLEN,18116,"{'type': 'Point', 'coordinates': (-79.43790302000001, 43.64912973)}"
-18143,9389,GO-20159001834,THEFT UNDER,2015-04-09T00:00:00,2015,April,Thursday,9,99,9,2015-04-10T00:00:00,2015,April,Friday,10,100,20,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,BI,SPORT,RG,1,BLU,500.0,STOLEN,18117,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18144,9393,GO-20159001877,THEFT UNDER,2015-04-12T00:00:00,2015,April,Sunday,12,102,11,2015-04-13T00:00:00,2015,April,Monday,13,103,11,D14,Toronto,84,Little Portugal (84),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,THE PANTHER,RG,1,BLK,600.0,STOLEN,18118,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18145,9406,GO-20159001943,THEFT UNDER,2015-04-14T00:00:00,2015,April,Tuesday,14,104,9,2015-04-15T00:00:00,2015,April,Wednesday,15,105,9,D14,Toronto,84,Little Portugal (84),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,FJ,FEATHER,RG,1,,500.0,STOLEN,18119,"{'type': 'Point', 'coordinates': (-79.42161579, 43.64147337)}"
-18146,9409,GO-20159001948,THEFT UNDER,2015-04-15T00:00:00,2015,April,Wednesday,15,105,2,2015-04-15T00:00:00,2015,April,Wednesday,15,105,13,D14,Toronto,84,Little Portugal (84),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,ARISTOTLE,RG,1,RED,500.0,STOLEN,18120,"{'type': 'Point', 'coordinates': (-79.42161579, 43.64147337)}"
-18147,9411,GO-20159001956,THEFT UNDER,2015-04-14T00:00:00,2015,April,Tuesday,14,104,21,2015-04-15T00:00:00,2015,April,Wednesday,15,105,21,D14,Toronto,84,Little Portugal (84),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,1,RG,7,DBL,1284.0,STOLEN,18121,"{'type': 'Point', 'coordinates': (-79.42161579, 43.64147337)}"
-18148,9412,GO-20159001948,THEFT UNDER,2015-04-15T00:00:00,2015,April,Wednesday,15,105,2,2015-04-15T00:00:00,2015,April,Wednesday,15,105,13,D14,Toronto,84,Little Portugal (84),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,REPUBLIC,ARISTOTLE,OT,1,,500.0,STOLEN,18122,"{'type': 'Point', 'coordinates': (-79.42161579, 43.64147337)}"
-18149,9426,GO-20159002032,THEFT UNDER,2015-04-16T00:00:00,2015,April,Thursday,16,106,18,2015-04-18T00:00:00,2015,April,Saturday,18,108,17,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,GI,15 THRIVE 1 DIS,RG,20,BLK,904.0,STOLEN,18123,"{'type': 'Point', 'coordinates': (-79.42475884, 43.64301634)}"
-18150,9457,GO-20159002150,THEFT UNDER,2015-04-16T00:00:00,2015,April,Thursday,16,106,19,2015-04-22T00:00:00,2015,April,Wednesday,22,112,10,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,GT,TRANSCOE,OT,8,BLK,600.0,STOLEN,18124,"{'type': 'Point', 'coordinates': (-79.42368786, 43.64113148)}"
-18151,9470,GO-2015684893,THEFT UNDER,2015-03-22T00:00:00,2015,March,Sunday,22,81,16,2015-04-25T00:00:00,2015,April,Saturday,25,115,14,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,ALLEZ C2,BM,1,,1200.0,STOLEN,18125,"{'type': 'Point', 'coordinates': (-79.42595861, 43.64276527)}"
-18152,9544,GO-2015758766,THEFT UNDER,2015-04-28T00:00:00,2015,April,Tuesday,28,118,13,2015-05-07T00:00:00,2015,May,Thursday,7,127,11,D14,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OPUS,CLASSICO,MT,0,BLK,500.0,STOLEN,18126,"{'type': 'Point', 'coordinates': (-79.42627832, 43.648525)}"
-18153,9600,GO-20159002847,THEFT UNDER,2015-05-18T00:00:00,2015,May,Monday,18,138,13,2015-05-18T00:00:00,2015,May,Monday,18,138,13,D11,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,VITA COMP,RG,27,BLK,1000.0,STOLEN,18127,"{'type': 'Point', 'coordinates': (-79.43141432, 43.64965071)}"
-18154,9670,GO-20159002847,THEFT UNDER,2015-05-18T00:00:00,2015,May,Monday,18,138,13,2015-05-18T00:00:00,2015,May,Monday,18,138,13,D11,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,VITA COMP,OT,27,BLK,1433.0,STOLEN,18128,"{'type': 'Point', 'coordinates': (-79.43141432, 43.64965071)}"
-18155,9920,GO-20159004087,THEFT UNDER,2015-07-01T00:00:00,2015,July,Wednesday,1,182,3,2015-07-01T00:00:00,2015,July,Wednesday,1,182,13,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE RX,OT,10,WHI,1500.0,STOLEN,18129,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18156,10008,GO-20159004469,THEFT UNDER,2015-07-10T00:00:00,2015,July,Friday,10,191,22,2015-07-12T00:00:00,2015,July,Sunday,12,193,21,D11,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ANNEX,RG,7,BLK,300.0,STOLEN,18130,"{'type': 'Point', 'coordinates': (-79.4360548, 43.65112513)}"
-18157,10244,GO-20159005652,THEFT UNDER,2015-08-11T00:00:00,2015,August,Tuesday,11,223,7,2015-08-11T00:00:00,2015,August,Tuesday,11,223,19,D14,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,,RC,12,WHI,2200.0,STOLEN,18131,"{'type': 'Point', 'coordinates': (-79.42700307, 43.6454438)}"
-18158,10542,GO-20159007715,THEFT UNDER,2015-09-03T00:00:00,2015,September,Thursday,3,246,8,2015-09-24T00:00:00,2015,September,Thursday,24,267,20,D14,Toronto,84,Little Portugal (84),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KH,FLITE 100,RG,1,BLK,1100.0,STOLEN,18132,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18159,10608,GO-20151738263,THEFT UNDER,2015-10-06T00:00:00,2015,October,Tuesday,6,279,20,2015-10-09T00:00:00,2015,October,Friday,9,282,7,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,ELECTRA,AMSTERDAS,OT,3,LBL,900.0,STOLEN,18133,"{'type': 'Point', 'coordinates': (-79.42602616, 43.65272693)}"
-18160,10674,GO-20159008874,THEFT UNDER,2015-10-17T00:00:00,2015,October,Saturday,17,290,16,2015-10-22T00:00:00,2015,October,Thursday,22,295,11,D14,Toronto,84,Little Portugal (84),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,VANTAGE 5.0,RC,14,BLK,470.0,STOLEN,18134,"{'type': 'Point', 'coordinates': (-79.42595861, 43.64276527)}"
-18161,10758,GO-20159009663,THEFT UNDER,2015-10-02T00:00:00,2015,October,Friday,2,275,1,2015-11-12T00:00:00,2015,November,Thursday,12,316,11,D11,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FJ,FEATHER,RC,1,BLK,850.0,STOLEN,18135,"{'type': 'Point', 'coordinates': (-79.43790302000001, 43.64912973)}"
-18162,10859,GO-20159010780,THEFT UNDER,2015-12-10T00:00:00,2015,December,Thursday,10,344,14,2015-12-10T00:00:00,2015,December,Thursday,10,344,23,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,TARMAC,RC,18,BLK,2000.0,STOLEN,18136,"{'type': 'Point', 'coordinates': (-79.42636436, 43.65360014)}"
-18163,10867,GO-20152140260,THEFT UNDER,2015-11-29T00:00:00,2015,November,Sunday,29,333,8,2015-12-02T00:00:00,2015,December,Wednesday,2,336,23,D11,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,WEST COAST,,RG,1,BLU,200.0,STOLEN,18137,"{'type': 'Point', 'coordinates': (-79.43317649, 43.64858633)}"
-18164,11193,GO-2016700526,THEFT UNDER,2016-04-24T00:00:00,2016,April,Sunday,24,115,17,2016-04-24T00:00:00,2016,April,Sunday,24,115,17,D11,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,SIMPLE 7 CRUZER,RG,21,SILBLU,440.0,STOLEN,18138,"{'type': 'Point', 'coordinates': (-79.43292024, 43.65071113)}"
-18165,11231,GO-2016736823,THEFT UNDER - BICYCLE,2016-04-29T00:00:00,2016,April,Friday,29,120,16,2016-04-30T00:00:00,2016,April,Saturday,30,121,8,D14,Toronto,84,Little Portugal (84),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,7.1FX,OT,21,GRY,574.0,STOLEN,18139,"{'type': 'Point', 'coordinates': (-79.42368786, 43.64113148)}"
-18166,11474,GO-2016989427,THEFT UNDER - BICYCLE,2016-06-04T00:00:00,2016,June,Saturday,4,156,17,2016-06-07T00:00:00,2016,June,Tuesday,7,159,13,D14,Toronto,84,Little Portugal (84),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,TARMAT ELITE,RC,11,WHIBLK,2500.0,STOLEN,18140,"{'type': 'Point', 'coordinates': (-79.42727375, 43.64293316)}"
-18167,11594,GO-20169006102,THEFT UNDER - BICYCLE,2016-06-19T00:00:00,2016,June,Sunday,19,171,22,2016-06-20T00:00:00,2016,June,Monday,20,172,23,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,OT,SIRRUS SPORT,TO,24,GRY,800.0,STOLEN,18141,"{'type': 'Point', 'coordinates': (-79.42700307, 43.6454438)}"
-18168,11731,GO-20161177818,B&E,2016-06-29T00:00:00,2016,June,Wednesday,29,181,9,2016-07-05T00:00:00,2016,July,Tuesday,5,187,21,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,GIANT,DIFY,RC,11,WHI,1500.0,STOLEN,18142,"{'type': 'Point', 'coordinates': (-79.42368786, 43.64113148)}"
-18169,11742,GO-20169006873,THEFT UNDER,2016-04-28T00:00:00,2016,April,Thursday,28,119,20,2016-07-07T00:00:00,2016,July,Thursday,7,189,20,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,24,BLK,1100.0,STOLEN,18143,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18170,11757,GO-20161206347,LIQUOR - INTOXICATED,2016-07-10T00:00:00,2016,July,Sunday,10,192,5,2016-07-10T00:00:00,2016,July,Sunday,10,192,5,D14,Toronto,84,Little Portugal (84),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,FUJI,SAGRES,RC,12,MRN,300.0,STOLEN,18144,"{'type': 'Point', 'coordinates': (-79.42551956, 43.65145583)}"
-18171,12037,GO-20169008438,THEFT UNDER - BICYCLE,2016-08-08T00:00:00,2016,August,Monday,8,221,20,2016-08-09T00:00:00,2016,August,Tuesday,9,222,11,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,RG,21,,480.0,STOLEN,18145,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18172,12196,GO-20169009451,THEFT UNDER - BICYCLE,2016-08-21T00:00:00,2016,August,Sunday,21,234,15,2016-08-25T00:00:00,2016,August,Thursday,25,238,10,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,1,TRQ,1200.0,STOLEN,18146,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18173,12231,GO-20169009676,THEFT UNDER - BICYCLE,2016-08-29T00:00:00,2016,August,Monday,29,242,21,2016-08-30T00:00:00,2016,August,Tuesday,30,243,9,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,OT,COMMUTER,RG,1,BLK,500.0,STOLEN,18147,"{'type': 'Point', 'coordinates': (-79.42727375, 43.64293316)}"
-18174,12327,GO-20169010345,THEFT UNDER,2016-09-12T00:00:00,2016,September,Monday,12,256,16,2016-09-13T00:00:00,2016,September,Tuesday,13,257,10,D14,Toronto,84,Little Portugal (84),Bar / Restaurant,Commercial,TR,7.2 WSD,OT,24,RED,700.0,STOLEN,18148,"{'type': 'Point', 'coordinates': (-79.42814667, 43.65322723)}"
-18175,12363,GO-20161647903,THEFT UNDER - BICYCLE,2016-09-12T00:00:00,2016,September,Monday,12,256,17,2016-09-16T00:00:00,2016,September,Friday,16,260,12,D14,Toronto,84,Little Portugal (84),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,FELT,V100,RC,8,GRYRED,1400.0,STOLEN,18149,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18176,12452,GO-20169011091,THEFT UNDER,2016-09-25T00:00:00,2016,September,Sunday,25,269,17,2016-09-25T00:00:00,2016,September,Sunday,25,269,17,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,TR,MARLIN 5,MT,18,BLK,800.0,STOLEN,18150,"{'type': 'Point', 'coordinates': (-79.42727375, 43.64293316)}"
-18177,12458,GO-20169011118,B&E,2016-09-25T00:00:00,2016,September,Sunday,25,269,9,2016-09-26T00:00:00,2016,September,Monday,26,270,11,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,21,,750.0,STOLEN,18151,"{'type': 'Point', 'coordinates': (-79.42727375, 43.64293316)}"
-18178,12493,GO-20169011281,THEFT UNDER,2016-09-26T00:00:00,2016,September,Monday,26,270,15,2016-09-29T00:00:00,2016,September,Thursday,29,273,8,D14,Toronto,84,Little Portugal (84),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,TIEMPO,RC,16,BLU,500.0,STOLEN,18152,"{'type': 'Point', 'coordinates': (-79.42357472, 43.64324598)}"
-18179,12609,GO-20169011997,THEFT UNDER - BICYCLE,2016-10-01T00:00:00,2016,October,Saturday,1,275,18,2016-10-13T00:00:00,2016,October,Thursday,13,287,14,D14,Toronto,84,Little Portugal (84),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,SYNAPSE,RC,10,RED,2500.0,STOLEN,18154,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18180,12640,GO-20161858661,THEFT UNDER,2016-10-18T00:00:00,2016,October,Tuesday,18,292,23,2016-10-19T00:00:00,2016,October,Wednesday,19,293,9,D11,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,SEEK HYBRID,RG,1,SIL,1000.0,STOLEN,18155,"{'type': 'Point', 'coordinates': (-79.43232692, 43.64643208)}"
-18181,12647,GO-20161864520,THEFT UNDER - BICYCLE,2016-10-19T00:00:00,2016,October,Wednesday,19,293,21,2016-10-20T00:00:00,2016,October,Thursday,20,294,7,D14,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,RC,1,BLU,350.0,STOLEN,18156,"{'type': 'Point', 'coordinates': (-79.42947954, 43.644636080000005)}"
-18182,12804,GO-20162068804,B&E,2016-10-01T00:00:00,2016,October,Saturday,1,275,0,2016-11-21T00:00:00,2016,November,Monday,21,326,15,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,SIRRUS COMP X,RC,21,BLK,1100.0,STOLEN,18157,"{'type': 'Point', 'coordinates': (-79.42727375, 43.64293316)}"
-18183,14301,GO-20209021359,THEFT UNDER,2020-08-25T00:00:00,2020,August,Tuesday,25,238,20,2020-08-26T00:00:00,2020,August,Wednesday,26,239,0,D14,Toronto,84,Little Portugal (84),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,BMC,OT,18,BLK,1300.0,STOLEN,18158,"{'type': 'Point', 'coordinates': (-79.42357472, 43.64324598)}"
-18184,14310,GO-20201679740,B&E,2020-09-01T00:00:00,2020,September,Tuesday,1,245,16,2020-09-05T00:00:00,2020,September,Saturday,5,249,13,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,DELSOL,PROJEKT 8,RG,8,BLU,600.0,STOLEN,18159,"{'type': 'Point', 'coordinates': (-79.42368786, 43.64113148)}"
-18185,14322,GO-20209024341,THEFT UNDER,2020-09-24T00:00:00,2020,September,Thursday,24,268,10,2020-09-24T00:00:00,2020,September,Thursday,24,268,12,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,CA,QUICK 5 DISC AC,RG,27,GRY,1122.0,STOLEN,18160,"{'type': 'Point', 'coordinates': (-79.42237064, 43.64349082)}"
-18186,14324,GO-20209025723,THEFT UNDER,2020-10-02T00:00:00,2020,October,Friday,2,276,17,2020-10-07T00:00:00,2020,October,Wednesday,7,281,13,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,PE,CHALLENGE,TO,1,GRY,600.0,STOLEN,18161,"{'type': 'Point', 'coordinates': (-79.42368786, 43.64113148)}"
-18187,14333,GO-20209028152,THEFT UNDER,2020-10-29T00:00:00,2020,October,Thursday,29,303,15,2020-10-29T00:00:00,2020,October,Thursday,29,303,20,D14,Toronto,84,Little Portugal (84),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KO,,RG,24,BLK,800.0,STOLEN,18162,"{'type': 'Point', 'coordinates': (-79.42464271, 43.64593045)}"
-18188,14336,GO-20209028949,THEFT UNDER,2020-11-07T00:00:00,2020,November,Saturday,7,312,0,2020-11-07T00:00:00,2020,November,Saturday,7,312,15,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,UK,SIRRUS SPORT,RG,9,,700.0,STOLEN,18163,"{'type': 'Point', 'coordinates': (-79.42851622, 43.65188448)}"
-18189,14481,GO-20182267468,B&E,2018-11-14T00:00:00,2018,November,Wednesday,14,318,18,2018-12-10T00:00:00,2018,December,Monday,10,344,18,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,VENGE,RC,21,BLK,8000.0,STOLEN,18164,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18190,14482,GO-20189042620,THEFT UNDER - BICYCLE,2018-12-10T00:00:00,2018,December,Monday,10,344,12,2018-12-18T00:00:00,2018,December,Tuesday,18,352,22,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,NO,HEART,RG,1,BLK,450.0,STOLEN,18165,"{'type': 'Point', 'coordinates': (-79.42161579, 43.64147337)}"
-18191,14489,GO-2019124027,THEFT UNDER - BICYCLE,2019-01-02T00:00:00,2019,January,Wednesday,2,2,12,2019-01-20T00:00:00,2019,January,Sunday,20,20,17,D14,Toronto,84,Little Portugal (84),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,SIRRUS,RC,24,WHI,1000.0,STOLEN,18166,"{'type': 'Point', 'coordinates': (-79.42475884, 43.64301634)}"
-18192,14506,GO-20199012185,THEFT UNDER - BICYCLE,2019-04-15T00:00:00,2019,April,Monday,15,105,0,2019-04-17T00:00:00,2019,April,Wednesday,17,107,10,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,UK,HARDROCK SPORT,RG,8,GRY,0.0,STOLEN,18167,"{'type': 'Point', 'coordinates': (-79.42595861, 43.64276527)}"
-18193,14539,GO-20199022108,THEFT UNDER - BICYCLE,2019-02-16T00:00:00,2019,February,Saturday,16,47,10,2019-07-12T00:00:00,2019,July,Friday,12,193,19,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,CA,SL2,MT,18,BLK,2000.0,STOLEN,18168,"{'type': 'Point', 'coordinates': (-79.42357472, 43.64324598)}"
-18194,14616,GO-20209003550,THEFT UNDER,2020-01-29T00:00:00,2020,January,Wednesday,29,29,0,2020-01-29T00:00:00,2020,January,Wednesday,29,29,18,D14,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,ZEKTOR,RG,18,BLK,1000.0,STOLEN,18169,"{'type': 'Point', 'coordinates': (-79.42851622, 43.65188448)}"
-18195,14629,GO-20209011930,THEFT UNDER,2020-04-23T00:00:00,2020,April,Thursday,23,114,15,2020-04-25T00:00:00,2020,April,Saturday,25,116,15,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM,MT,16,GRY,1100.0,STOLEN,18170,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18196,14675,GO-20171333779,THEFT UNDER - BICYCLE,2017-07-25T00:00:00,2017,July,Tuesday,25,206,4,2017-07-25T00:00:00,2017,July,Tuesday,25,206,9,D14,Toronto,84,Little Portugal (84),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MONGOOSE,STOUT,RC,1,BLK,500.0,STOLEN,18171,"{'type': 'Point', 'coordinates': (-79.42161579, 43.64147337)}"
-18197,14679,GO-20179011131,THEFT UNDER - BICYCLE,2017-07-27T00:00:00,2017,July,Thursday,27,208,10,2017-07-27T00:00:00,2017,July,Thursday,27,208,10,D14,Toronto,84,Little Portugal (84),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RG,1,GRY,1000.0,STOLEN,18172,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18198,14736,GO-20179017952,THEFT UNDER - BICYCLE,2017-10-22T00:00:00,2017,October,Sunday,22,295,20,2017-10-23T00:00:00,2017,October,Monday,23,296,15,D14,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,TREK,RG,1,,509.0,STOLEN,18173,"{'type': 'Point', 'coordinates': (-79.42627832, 43.648525)}"
-18199,14740,GO-20179019239,THEFT UNDER,2017-11-08T00:00:00,2017,November,Wednesday,8,312,18,2017-11-09T00:00:00,2017,November,Thursday,9,313,13,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,GI,,OT,10,,800.0,STOLEN,18174,"{'type': 'Point', 'coordinates': (-79.42475884, 43.64301634)}"
-18200,14746,GO-20179020671,THEFT UNDER - BICYCLE,2017-11-27T00:00:00,2017,November,Monday,27,331,2,2017-11-27T00:00:00,2017,November,Monday,27,331,12,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,21,BLK,0.0,STOLEN,18175,"{'type': 'Point', 'coordinates': (-79.42769148000001, 43.64408519)}"
-18201,14798,GO-20189017982,THEFT UNDER - BICYCLE,2018-06-08T00:00:00,2018,June,Friday,8,159,18,2018-06-09T00:00:00,2018,June,Saturday,9,160,10,D14,Toronto,84,Little Portugal (84),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RA,PORT TOWNSEND,TO,18,BLK,600.0,STOLEN,18176,"{'type': 'Point', 'coordinates': (-79.42727375, 43.64293316)}"
-18202,15050,GO-20142114389,B&E,2014-05-17T00:00:00,2014,May,Saturday,17,137,12,2014-05-20T00:00:00,2014,May,Tuesday,20,140,10,D11,Toronto,84,Little Portugal (84),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,CITYGLAD,RG,7,DGR,632.0,STOLEN,18177,"{'type': 'Point', 'coordinates': (-79.43221823, 43.65172517)}"
-18203,15067,GO-20142753015,B&E,2014-08-22T00:00:00,2014,August,Friday,22,234,0,2014-08-22T00:00:00,2014,August,Friday,22,234,15,D11,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,FIXED GEAR,OT,1,WHI,,STOLEN,18178,"{'type': 'Point', 'coordinates': (-79.43317649, 43.64858633)}"
-18204,15074,GO-20149006867,THEFT UNDER,2014-09-14T00:00:00,2014,September,Sunday,14,257,4,2014-09-14T00:00:00,2014,September,Sunday,14,257,5,D11,Toronto,84,Little Portugal (84),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RM,LBH26B51,MT,15,GRN,0.0,STOLEN,18179,"{'type': 'Point', 'coordinates': (-79.43141432, 43.64965071)}"
-18205,15119,GO-20169004966,THEFT UNDER - BICYCLE,2016-05-23T00:00:00,2016,May,Monday,23,144,21,2016-05-26T00:00:00,2016,May,Thursday,26,147,2,D11,Toronto,84,Little Portugal (84),"Group Homes (Non-Profit, Halfway House, Social Agency)",Other,CC,ALPINE,MT,30,WHI,108.0,STOLEN,18180,"{'type': 'Point', 'coordinates': (-79.43828125, 43.65008769)}"
-18206,15131,GO-20161429271,THEFT UNDER - BICYCLE,2016-08-13T00:00:00,2016,August,Saturday,13,226,4,2016-08-13T00:00:00,2016,August,Saturday,13,226,13,D11,Toronto,84,Little Portugal (84),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CANADIAN TIRE,,RG,6,BLK,350.0,STOLEN,18181,"{'type': 'Point', 'coordinates': (-79.43818548, 43.6480036)}"
-18207,15167,GO-20179004641,THEFT UNDER,2017-04-12T00:00:00,2017,April,Wednesday,12,102,21,2017-04-13T00:00:00,2017,April,Thursday,13,103,12,D11,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,DESIRE,MT,7,ONG,800.0,STOLEN,18182,"{'type': 'Point', 'coordinates': (-79.4360548, 43.65112513)}"
-18208,15192,GO-20179013795,THEFT UNDER - BICYCLE,2017-08-31T00:00:00,2017,August,Thursday,31,243,16,2017-09-01T00:00:00,2017,September,Friday,1,244,13,D11,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE 1,RG,24,SIL,500.0,STOLEN,18183,"{'type': 'Point', 'coordinates': (-79.43697295, 43.6499839)}"
-18209,15230,GO-20189024361,THEFT UNDER - BICYCLE,2018-07-23T00:00:00,2018,July,Monday,23,204,21,2018-07-28T00:00:00,2018,July,Saturday,28,209,19,D11,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,CC,CCM 29ER,MT,21,BLU,300.0,STOLEN,18184,"{'type': 'Point', 'coordinates': (-79.43724029, 43.64734749)}"
-18210,15231,GO-20189024361,THEFT UNDER - BICYCLE,2018-07-23T00:00:00,2018,July,Monday,23,204,21,2018-07-28T00:00:00,2018,July,Saturday,28,209,19,D11,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,SC,NETWORK 700,RG,6,BLU,270.0,STOLEN,18185,"{'type': 'Point', 'coordinates': (-79.43724029, 43.64734749)}"
-18211,15256,GO-20199003764,THEFT UNDER - BICYCLE,2019-01-28T00:00:00,2019,January,Monday,28,28,10,2019-01-28T00:00:00,2019,January,Monday,28,28,12,D11,Toronto,84,Little Portugal (84),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RG,3,CRM,0.0,STOLEN,18186,"{'type': 'Point', 'coordinates': (-79.44098097, 43.65028127)}"
-18212,15281,GO-20199027203,THEFT UNDER,2019-08-21T00:00:00,2019,August,Wednesday,21,233,19,2019-08-22T00:00:00,2019,August,Thursday,22,234,0,D11,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KH,URBAN XCAPE DIS,RG,21,GRY,800.0,STOLEN,18187,"{'type': 'Point', 'coordinates': (-79.43697295, 43.6499839)}"
-18213,15289,GO-20199036746,THEFT UNDER,2019-10-03T00:00:00,2019,October,Thursday,3,276,22,2019-11-07T00:00:00,2019,November,Thursday,7,311,12,D11,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,RA,RUSH HOUR,OT,1,BLK,675.0,STOLEN,18188,"{'type': 'Point', 'coordinates': (-79.43365028, 43.649772590000005)}"
-18214,15297,GO-20209010140,THEFT UNDER,2020-03-16T00:00:00,2020,March,Monday,16,76,15,2020-03-30T00:00:00,2020,March,Monday,30,90,11,D11,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,NO,,RG,21,BLK,576.0,STOLEN,18189,"{'type': 'Point', 'coordinates': (-79.43493913, 43.64824468)}"
-18215,15383,GO-20143403101,B&E,2014-11-30T00:00:00,2014,November,Sunday,30,334,20,2014-12-01T00:00:00,2014,December,Monday,1,335,10,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,GIANT,,RC,21,BLKRED,2500.0,STOLEN,18190,"{'type': 'Point', 'coordinates': (-79.42595861, 43.64276527)}"
-18216,15385,GO-20149008700,THEFT UNDER,2014-12-04T00:00:00,2014,December,Thursday,4,338,9,2014-12-12T00:00:00,2014,December,Friday,12,346,11,D14,Toronto,84,Little Portugal (84),Schools During Un-Supervised Activity,Educational,MA,KENTFIELD,RG,10,GRY,900.0,STOLEN,18191,"{'type': 'Point', 'coordinates': (-79.42833701, 43.64575475)}"
-18217,15392,GO-2015625005,THEFT UNDER,2015-04-15T00:00:00,2015,April,Wednesday,15,105,2,2015-04-15T00:00:00,2015,April,Wednesday,15,105,21,D14,Toronto,84,Little Portugal (84),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TREK,7.1 FX,MT,18,BLK,520.0,STOLEN,18192,"{'type': 'Point', 'coordinates': (-79.42161579, 43.64147337)}"
-18218,15451,GO-20159007168,THEFT UNDER,2015-09-14T00:00:00,2015,September,Monday,14,257,8,2015-09-14T00:00:00,2015,September,Monday,14,257,16,D14,Toronto,84,Little Portugal (84),Schools During Supervised Activity,Educational,KO,,RG,24,ONG,600.0,STOLEN,18193,"{'type': 'Point', 'coordinates': (-79.42833701, 43.64575475)}"
-18219,15503,GO-20169005299,THEFT UNDER,2016-06-02T00:00:00,2016,June,Thursday,2,154,22,2016-06-03T00:00:00,2016,June,Friday,3,155,9,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,TR,,RG,27,BLK,1000.0,STOLEN,18194,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18220,15511,GO-20169005679,THEFT UNDER,2016-06-12T00:00:00,2016,June,Sunday,12,164,15,2016-06-13T00:00:00,2016,June,Monday,13,165,2,D14,Toronto,84,Little Portugal (84),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,SE HIGH FLANGE/,OT,1,BLK,450.0,STOLEN,18195,"{'type': 'Point', 'coordinates': (-79.42727375, 43.64293316)}"
-18221,15534,GO-20169008325,THEFT UNDER - BICYCLE,2016-08-07T00:00:00,2016,August,Sunday,7,220,0,2016-08-07T00:00:00,2016,August,Sunday,7,220,1,D14,Toronto,84,Little Portugal (84),"Open Areas (Lakes, Parks, Rivers)",Outside,RA,ROUTE 3.0,OT,21,DGR,400.0,STOLEN,18196,"{'type': 'Point', 'coordinates': (-79.43141432, 43.64965071)}"
-18222,15563,GO-20161738600,THEFT OF EBIKE UNDER $5000,2016-09-28T00:00:00,2016,September,Wednesday,28,272,23,2016-09-30T00:00:00,2016,September,Friday,30,274,13,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TEV,GETTE,EL,1,BLK,2000.0,STOLEN,18197,"{'type': 'Point', 'coordinates': (-79.42595861, 43.64276527)}"
-18223,15590,GO-20179003912,THEFT UNDER - BICYCLE,2017-03-27T00:00:00,2017,March,Monday,27,86,1,2017-03-28T00:00:00,2017,March,Tuesday,28,87,10,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CIRCA 1950'S,TO,10,ONG,500.0,STOLEN,18198,"{'type': 'Point', 'coordinates': (-79.42595861, 43.64276527)}"
-18224,15594,GO-20179004278,THEFT UNDER - BICYCLE,2017-03-29T00:00:00,2017,March,Wednesday,29,88,19,2017-04-05T00:00:00,2017,April,Wednesday,5,95,16,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,TR,MADONE 3.5,RC,40,WHI,3000.0,STOLEN,18199,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18225,15614,GO-20179008080,THEFT UNDER - BICYCLE,2017-06-02T00:00:00,2017,June,Friday,2,153,20,2017-06-14T00:00:00,2017,June,Wednesday,14,165,12,D14,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,CITY GLIDE,RG,7,BGE,300.0,STOLEN,18200,"{'type': 'Point', 'coordinates': (-79.42633324, 43.64699447)}"
-18226,17322,GO-20209012749,THEFT UNDER - BICYCLE,2020-05-05T00:00:00,2020,May,Tuesday,5,126,17,2020-05-08T00:00:00,2020,May,Friday,8,129,20,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,TR,,RG,7,BLK,400.0,STOLEN,18201,"{'type': 'Point', 'coordinates': (-79.42475884, 43.64301634)}"
-18227,17541,GO-2019349834,B&E,2019-02-15T00:00:00,2019,February,Friday,15,46,12,2019-02-24T00:00:00,2019,February,Sunday,24,55,17,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,FELT,B16,RC,20,WHI,2000.0,STOLEN,18202,"{'type': 'Point', 'coordinates': (-79.42595861, 43.64276527)}"
-18228,17587,GO-20199020444,THEFT UNDER - BICYCLE,2019-06-27T00:00:00,2019,June,Thursday,27,178,19,2019-06-28T00:00:00,2019,June,Friday,28,179,14,D14,Toronto,84,Little Portugal (84),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,CONTEND 3,RC,8,BLK,900.0,STOLEN,18203,"{'type': 'Point', 'coordinates': (-79.42727375, 43.64293316)}"
-18229,17609,GO-20199023489,THEFT UNDER,2019-07-24T00:00:00,2019,July,Wednesday,24,205,1,2019-07-24T00:00:00,2019,July,Wednesday,24,205,10,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,CA,,MT,21,,300.0,STOLEN,18204,"{'type': 'Point', 'coordinates': (-79.42580771, 43.64569411)}"
-18230,17652,GO-20199033525,THEFT UNDER - BICYCLE,2019-09-24T00:00:00,2019,September,Tuesday,24,267,13,2019-10-11T00:00:00,2019,October,Friday,11,284,13,D14,Toronto,84,Little Portugal (84),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GT,AGGRESSOR,MT,7,RED,621.0,STOLEN,18205,"{'type': 'Point', 'coordinates': (-79.42595861, 43.64276527)}"
-18231,17655,GO-20191977169,THEFT UNDER - BICYCLE,2019-10-13T00:00:00,2019,October,Sunday,13,286,4,2019-10-13T00:00:00,2019,October,Sunday,13,286,11,D14,Toronto,84,Little Portugal (84),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,REVEL 29ER,MT,24,REDSIL,950.0,STOLEN,18206,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18232,24234,GO-20179015785,THEFT UNDER,2017-09-21T00:00:00,2017,September,Thursday,21,264,22,2017-09-25T00:00:00,2017,September,Monday,25,268,22,D14,Toronto,84,Little Portugal (84),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RA,TOMAHAWK,MT,21,GRY,0.0,STOLEN,18207,"{'type': 'Point', 'coordinates': (-79.43034133, 43.64684372)}"
-18233,1446,GO-20179015081,THEFT UNDER - BICYCLE,2017-09-15T00:00:00,2017,September,Friday,15,258,19,2017-09-18T00:00:00,2017,September,Monday,18,261,16,D11,Toronto,83,Dufferin Grove (83),Ttc Subway Station,Transit,RA,,MT,21,YEL,250.0,STOLEN,18208,"{'type': 'Point', 'coordinates': (-79.44269466, 43.65833851)}"
-18234,1522,GO-20179011287,THEFT UNDER,2017-07-29T00:00:00,2017,July,Saturday,29,210,1,2017-07-29T00:00:00,2017,July,Saturday,29,210,12,D11,Toronto,83,Dufferin Grove (83),Bar / Restaurant,Commercial,OT,,TO,18,,,STOLEN,18209,"{'type': 'Point', 'coordinates': (-79.43756839, 43.65942639)}"
-18235,21593,GO-20149006161,THEFT UNDER,2014-08-20T00:00:00,2014,August,Wednesday,20,232,15,2014-08-20T00:00:00,2014,August,Wednesday,20,232,22,D11,Toronto,83,Dufferin Grove (83),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,2011,TO,27,WHI,1000.0,STOLEN,18210,"{'type': 'Point', 'coordinates': (-79.43699471, 43.65521452000001)}"
-18236,1735,GO-20179018091,THEFT UNDER,2017-10-22T00:00:00,2017,October,Sunday,22,295,23,2017-10-24T00:00:00,2017,October,Tuesday,24,297,18,D11,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,OT,MIXTE,OT,3,BLU,665.0,STOLEN,18211,"{'type': 'Point', 'coordinates': (-79.44689484, 43.65747686)}"
-18237,24244,GO-20179017080,THEFT UNDER - BICYCLE,2017-09-01T00:00:00,2017,September,Friday,1,244,11,2017-10-13T00:00:00,2017,October,Friday,13,286,11,D14,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BI,MILANO DAMA,RG,8,LBL,1100.0,STOLEN,18212,"{'type': 'Point', 'coordinates': (-79.42790563, 43.65252212)}"
-18238,15393,GO-20159001967,THEFT UNDER,2015-04-15T00:00:00,2015,April,Wednesday,15,105,10,2015-04-16T00:00:00,2015,April,Thursday,16,106,13,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,OT,AQUILA,TO,1,RED,600.0,STOLEN,18213,"{'type': 'Point', 'coordinates': (-79.42524484, 43.64083535000001)}"
-18239,24166,GO-2020761373,THEFT UNDER - BICYCLE,2020-03-21T00:00:00,2020,March,Saturday,21,81,14,2020-04-21T00:00:00,2020,April,Tuesday,21,112,16,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,CANNONDALE,BAD BOY,OT,12,BLK,950.0,STOLEN,18214,"{'type': 'Point', 'coordinates': (-79.40442195, 43.64140672)}"
-18240,24167,GO-2020761373,THEFT UNDER - BICYCLE,2020-03-21T00:00:00,2020,March,Saturday,21,81,14,2020-04-21T00:00:00,2020,April,Tuesday,21,112,16,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,DA VINCI,HEX,RG,12,GRN,1600.0,STOLEN,18215,"{'type': 'Point', 'coordinates': (-79.40442195, 43.64140672)}"
-18241,24173,GO-20209013182,THEFT UNDER,2020-05-15T00:00:00,2020,May,Friday,15,136,9,2020-05-15T00:00:00,2020,May,Friday,15,136,14,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,ROUBAIX SPORT,RC,11,BLK,2500.0,STOLEN,18216,"{'type': 'Point', 'coordinates': (-79.41045766, 43.64169495)}"
-18242,24174,GO-20209013246,THEFT UNDER,2020-05-02T00:00:00,2020,May,Saturday,2,123,12,2020-05-16T00:00:00,2020,May,Saturday,16,137,12,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,7.1FX,RG,21,RED,300.0,STOLEN,18217,"{'type': 'Point', 'coordinates': (-79.41045766, 43.64169495)}"
-18243,24176,GO-20209013322,THEFT UNDER - BICYCLE,2020-05-16T00:00:00,2020,May,Saturday,16,137,15,2020-05-17T00:00:00,2020,May,Sunday,17,138,15,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,GRANCRITERIUMMO,RC,11,BLK,3950.0,STOLEN,18218,"{'type': 'Point', 'coordinates': (-79.41045766, 43.64169495)}"
-18244,24180,GO-20209014352,THEFT UNDER,2020-05-24T00:00:00,2020,May,Sunday,24,145,0,2020-06-01T00:00:00,2020,June,Monday,1,153,15,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,CA,BAD BOY,OT,12,BLK,2800.0,STOLEN,18219,"{'type': 'Point', 'coordinates': (-79.4146674, 43.64064217)}"
-18245,24184,GO-20209014659,THEFT UNDER,2020-06-01T00:00:00,2020,June,Monday,1,153,14,2020-06-05T00:00:00,2020,June,Friday,5,157,14,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,MA,TERRA LINDA,RG,6,TRQ,500.0,STOLEN,18220,"{'type': 'Point', 'coordinates': (-79.42161579, 43.64147337)}"
-18246,24198,GO-20179011590,THEFT UNDER - BICYCLE,2017-08-02T00:00:00,2017,August,Wednesday,2,214,16,2017-08-03T00:00:00,2017,August,Thursday,3,215,9,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,7.2 FX,RG,24,RED,600.0,STOLEN,18221,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-18247,24203,GO-20179011802,THEFT UNDER - BICYCLE,2017-08-05T00:00:00,2017,August,Saturday,5,217,15,2017-08-06T00:00:00,2017,August,Sunday,6,218,14,D14,Toronto,82,Niagara (82),"Open Areas (Lakes, Parks, Rivers)",Outside,SC,PROTOCOL 1.0,MT,24,RED,514.0,STOLEN,18222,"{'type': 'Point', 'coordinates': (-79.40194592, 43.63589534)}"
-18248,24210,GO-20179012584,THEFT UNDER - BICYCLE,2017-08-16T00:00:00,2017,August,Wednesday,16,228,9,2017-08-16T00:00:00,2017,August,Wednesday,16,228,21,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,ALLEGRO2,RG,21,BLK,600.0,STOLEN,18223,"{'type': 'Point', 'coordinates': (-79.40372116, 43.64647061)}"
-18249,24226,GO-20171648789,B&E,2017-08-26T00:00:00,2017,August,Saturday,26,238,18,2017-09-11T00:00:00,2017,September,Monday,11,254,19,D14,Toronto,82,Niagara (82),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,PARADOX,MT,12,BLK,1500.0,STOLEN,18224,"{'type': 'Point', 'coordinates': (-79.41138445, 43.63917336)}"
-18250,24227,GO-20171648789,B&E,2017-08-26T00:00:00,2017,August,Saturday,26,238,18,2017-09-11T00:00:00,2017,September,Monday,11,254,19,D14,Toronto,82,Niagara (82),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,XTC,MT,12,BLK,1500.0,STOLEN,18225,"{'type': 'Point', 'coordinates': (-79.41138445, 43.63917336)}"
-18251,24235,GO-20179015891,THEFT UNDER - BICYCLE,2017-09-24T00:00:00,2017,September,Sunday,24,267,1,2017-09-26T00:00:00,2017,September,Tuesday,26,269,23,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ST-TROPEZ,RG,24,SIL,535.0,STOLEN,18226,"{'type': 'Point', 'coordinates': (-79.41544967, 43.63111258)}"
-18252,24238,GO-20179016288,THEFT UNDER - BICYCLE,2017-09-27T00:00:00,2017,September,Wednesday,27,270,20,2017-10-02T00:00:00,2017,October,Monday,2,275,13,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,TRICROSS,OT,8,BLK,2000.0,STOLEN,18227,"{'type': 'Point', 'coordinates': (-79.4144255, 43.6400082)}"
-18253,24240,GO-20179016813,THEFT UNDER,2017-10-04T00:00:00,2017,October,Wednesday,4,277,0,2017-10-09T00:00:00,2017,October,Monday,9,282,21,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,THE VICTOR,RG,1,LGR,300.0,STOLEN,18228,"{'type': 'Point', 'coordinates': (-79.40517849, 43.63747213)}"
-18254,24254,GO-20171938873,THEFT UNDER - BICYCLE,2017-10-23T00:00:00,2017,October,Monday,23,296,19,2017-10-26T00:00:00,2017,October,Thursday,26,299,12,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,LINUS,ROADSTER SPORT,OT,3,GRN,700.0,STOLEN,18229,"{'type': 'Point', 'coordinates': (-79.41626354, 43.64472458)}"
-18255,24255,GO-20171938873,THEFT UNDER - BICYCLE,2017-10-23T00:00:00,2017,October,Monday,23,296,19,2017-10-26T00:00:00,2017,October,Thursday,26,299,12,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,LINUS,DUTCHI,OT,3,GRN,740.0,STOLEN,18230,"{'type': 'Point', 'coordinates': (-79.41626354, 43.64472458)}"
-18256,24262,GO-20179019752,THEFT UNDER - BICYCLE,2017-11-15T00:00:00,2017,November,Wednesday,15,319,8,2017-11-15T00:00:00,2017,November,Wednesday,15,319,20,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,FJ,2016 FUJI FEATH,RC,1,BLK,800.0,STOLEN,18231,"{'type': 'Point', 'coordinates': (-79.41277265, 43.64431894)}"
-18257,24274,GO-20189002531,THEFT UNDER,2018-01-20T00:00:00,2018,January,Saturday,20,20,10,2018-01-26T00:00:00,2018,January,Friday,26,26,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,KO,,MT,10,,500.0,STOLEN,18232,"{'type': 'Point', 'coordinates': (-79.41375783, 43.641679)}"
-18258,24277,GO-20189005056,THEFT UNDER,2018-01-28T00:00:00,2018,January,Sunday,28,28,21,2018-02-17T00:00:00,2018,February,Saturday,17,48,12,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,SONIK CUSTOM,RC,1,LBL,5000.0,STOLEN,18233,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-18259,24286,GO-20189009008,THEFT UNDER - BICYCLE,2018-03-16T00:00:00,2018,March,Friday,16,75,14,2018-03-22T00:00:00,2018,March,Thursday,22,81,13,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ROADSTER,OT,1,BRN,650.0,STOLEN,18234,"{'type': 'Point', 'coordinates': (-79.41045766, 43.64169495)}"
-18260,24288,GO-20189009200,B&E,2018-03-21T00:00:00,2018,March,Wednesday,21,80,17,2018-03-23T00:00:00,2018,March,Friday,23,82,18,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,CA,BAD BOY 0,RG,11,BLK,2900.0,STOLEN,18235,"{'type': 'Point', 'coordinates': (-79.40128939, 43.63517525)}"
-18261,24307,GO-20189015210,THEFT UNDER - BICYCLE,2018-05-16T00:00:00,2018,May,Wednesday,16,136,18,2018-05-16T00:00:00,2018,May,Wednesday,16,136,19,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GI,TALON 2014,MT,21,BLK,1300.0,STOLEN,18236,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-18262,24314,GO-20181114054,POSSESSION PROPERTY OBC UNDER,2018-06-19T00:00:00,2018,June,Tuesday,19,170,12,2018-06-19T00:00:00,2018,June,Tuesday,19,170,12,D14,Toronto,82,Niagara (82),"Open Areas (Lakes, Parks, Rivers)",Outside,SPECIALIZED,AMIRA COMP FORC,OT,21,GRY,3700.0,STOLEN,18237,"{'type': 'Point', 'coordinates': (-79.40730785, 43.6415952)}"
-18263,24322,GO-20189020486,THEFT UNDER - BICYCLE,2018-06-27T00:00:00,2018,June,Wednesday,27,178,2,2018-06-27T00:00:00,2018,June,Wednesday,27,178,14,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,8,BLK,625.0,STOLEN,18238,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-18264,24323,GO-20189020486,THEFT UNDER - BICYCLE,2018-06-27T00:00:00,2018,June,Wednesday,27,178,2,2018-06-27T00:00:00,2018,June,Wednesday,27,178,14,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,MAXI,OT,8,ONG,323.0,STOLEN,18239,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-18265,24324,GO-20189020558,THEFT UNDER - BICYCLE,2018-06-27T00:00:00,2018,June,Wednesday,27,178,16,2018-06-28T00:00:00,2018,June,Thursday,28,179,9,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,KATO 5 M,MT,10,BLK,1200.0,STOLEN,18240,"{'type': 'Point', 'coordinates': (-79.40128939, 43.63517525)}"
-18266,24325,GO-20189020686,THEFT UNDER - BICYCLE,2018-06-28T00:00:00,2018,June,Thursday,28,179,18,2018-06-29T00:00:00,2018,June,Friday,29,180,9,D14,Toronto,82,Niagara (82),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,OT,1,,400.0,STOLEN,18241,"{'type': 'Point', 'coordinates': (-79.40976252, 43.64387708)}"
-18267,1861,GO-20179020010,THEFT UNDER - BICYCLE,2017-11-19T00:00:00,2017,November,Sunday,19,323,15,2017-11-19T00:00:00,2017,November,Sunday,19,323,17,D11,Toronto,83,Dufferin Grove (83),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,IN,INFINITY,MT,6,SIL,300.0,STOLEN,18242,"{'type': 'Point', 'coordinates': (-79.43699471, 43.65521452000001)}"
-18268,21605,GO-20149008929,THEFT UNDER,2014-12-23T00:00:00,2014,December,Tuesday,23,357,19,2014-12-23T00:00:00,2014,December,Tuesday,23,357,22,D11,Toronto,83,Dufferin Grove (83),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SUPER LIGHT FAM,RC,10,CRM,1000.0,STOLEN,18243,"{'type': 'Point', 'coordinates': (-79.43699471, 43.65521452000001)}"
-18269,24245,GO-20171862227,THEFT UNDER - BICYCLE,2017-10-13T00:00:00,2017,October,Friday,13,286,19,2017-10-14T00:00:00,2017,October,Saturday,14,287,14,D14,Toronto,84,Little Portugal (84),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KHS,FLIGHT 100,MT,1,BLK,,STOLEN,18244,"{'type': 'Point', 'coordinates': (-79.42808463, 43.64955835)}"
-18270,15455,GO-20151619775,THEFT UNDER,2015-09-16T00:00:00,2015,September,Wednesday,16,259,14,2015-09-17T00:00:00,2015,September,Thursday,17,260,16,D14,Toronto,85,South Parkdale (85),Schools During Supervised Activity,Educational,UNKNOWN MAKE,,OT,0,,900.0,STOLEN,18245,"{'type': 'Point', 'coordinates': (-79.43689219, 43.63960265000001)}"
-18271,24333,GO-20189021483,THEFT UNDER - BICYCLE,2018-06-30T00:00:00,2018,June,Saturday,30,181,17,2018-07-06T00:00:00,2018,July,Friday,6,187,17,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RA,LENTON,RG,3,WHI,475.0,STOLEN,18246,"{'type': 'Point', 'coordinates': (-79.40524581, 43.64340152)}"
-18272,24358,GO-20181440591,THEFT UNDER - BICYCLE,2018-08-01T00:00:00,2018,August,Wednesday,1,213,2,2018-08-06T00:00:00,2018,August,Monday,6,218,9,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,MT,6,GRN,250.0,STOLEN,18247,"{'type': 'Point', 'coordinates': (-79.40524581, 43.64340152)}"
-18273,24365,GO-20189026564,THEFT UNDER - BICYCLE,2018-08-15T00:00:00,2018,August,Wednesday,15,227,21,2018-08-15T00:00:00,2018,August,Wednesday,15,227,21,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,RUBY,OT,27,BLK,2000.0,STOLEN,18248,"{'type': 'Point', 'coordinates': (-79.40517849, 43.63747213)}"
-18274,24385,GO-20189030377,THEFT UNDER - BICYCLE,2018-09-12T00:00:00,2018,September,Wednesday,12,255,16,2018-09-14T00:00:00,2018,September,Friday,14,257,16,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,RA,,RG,18,WHI,500.0,STOLEN,18249,"{'type': 'Point', 'coordinates': (-79.41058904, 43.64371038)}"
-18275,24387,GO-20189030820,THEFT UNDER - BICYCLE,2018-08-29T00:00:00,2018,August,Wednesday,29,241,12,2018-09-17T00:00:00,2018,September,Monday,17,260,19,D14,Toronto,82,Niagara (82),Go Station,Transit,RA,BLUE,RG,35,BLU,100.0,STOLEN,18250,"{'type': 'Point', 'coordinates': (-79.40970023, 43.63468553)}"
-18276,24390,GO-20189032712,THEFT UNDER - BICYCLE,2018-09-22T00:00:00,2018,September,Saturday,22,265,6,2018-10-02T00:00:00,2018,October,Tuesday,2,275,19,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,KO,DEW,OT,15,RED,900.0,STOLEN,18251,"{'type': 'Point', 'coordinates': (-79.41953608, 43.63849391)}"
-18277,24594,GO-20142033991,THEFT UNDER,2014-04-19T00:00:00,2014,April,Saturday,19,109,18,2014-05-07T00:00:00,2014,May,Wednesday,7,127,18,D14,Toronto,82,Niagara (82),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,DEVINCI,CAMELEON SX,MT,0,BLK,1300.0,STOLEN,18252,"{'type': 'Point', 'coordinates': (-79.41391587, 43.63867005)}"
-18278,24599,GO-20149003656,THEFT UNDER,2014-04-15T00:00:00,2014,April,Tuesday,15,105,13,2014-05-28T00:00:00,2014,May,Wednesday,28,148,13,D14,Toronto,82,Niagara (82),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,SEEK 2 (2012),OT,21,WHI,800.0,STOLEN,18253,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-18279,24607,GO-20149004220,THEFT UNDER,2014-06-18T00:00:00,2014,June,Wednesday,18,169,19,2014-06-18T00:00:00,2014,June,Wednesday,18,169,20,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,CONTENDER,RC,1,SIL,1500.0,STOLEN,18254,"{'type': 'Point', 'coordinates': (-79.40266560000002, 43.64392483)}"
-18280,24610,GO-20149004375,THEFT UNDER,2014-06-22T00:00:00,2014,June,Sunday,22,173,23,2014-06-23T00:00:00,2014,June,Monday,23,174,23,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,HYBRID,MT,21,DGR,180.0,STOLEN,18255,"{'type': 'Point', 'coordinates': (-79.39948839, 43.63339968)}"
-18281,24615,GO-20142422430,THEFT UNDER,2014-07-03T00:00:00,2014,July,Thursday,3,184,10,2014-07-03T00:00:00,2014,July,Thursday,3,184,14,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,BM,8,GRN,300.0,STOLEN,18256,"{'type': 'Point', 'coordinates': (-79.40767877, 43.64290821)}"
-18282,24617,GO-20142483816,THEFT UNDER,2014-07-11T00:00:00,2014,July,Friday,11,192,17,2014-07-12T00:00:00,2014,July,Saturday,12,193,16,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,MT,12,REDYEL,300.0,STOLEN,18257,"{'type': 'Point', 'coordinates': (-79.40266560000002, 43.64392483)}"
-18283,24624,GO-20149004994,THEFT UNDER,2014-07-14T00:00:00,2014,July,Monday,14,195,21,2014-07-14T00:00:00,2014,July,Monday,14,195,21,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,MA,MOUNT VISION 5.,MT,27,BLK,3000.0,STOLEN,18258,"{'type': 'Point', 'coordinates': (-79.40537327000001, 43.63616773)}"
-18284,24631,GO-20149005212,THEFT UNDER,2014-07-21T00:00:00,2014,July,Monday,21,202,15,2014-07-21T00:00:00,2014,July,Monday,21,202,20,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,CC,700C PRESTO,RG,11,GRY,262.0,STOLEN,18259,"{'type': 'Point', 'coordinates': (-79.41332573, 43.64059562)}"
-18285,24637,GO-20142748192,B&E,2014-08-20T00:00:00,2014,August,Wednesday,20,232,18,2014-08-22T00:00:00,2014,August,Friday,22,234,1,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,SIRRUS,RG,21,,1000.0,STOLEN,18260,"{'type': 'Point', 'coordinates': (-79.40767877, 43.64290821)}"
-18286,24641,GO-20149006361,THEFT UNDER,2014-08-27T00:00:00,2014,August,Wednesday,27,239,10,2014-08-27T00:00:00,2014,August,Wednesday,27,239,17,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM,MT,18,WHI,830.0,STOLEN,18261,"{'type': 'Point', 'coordinates': (-79.40680169, 43.63639142)}"
-18287,24656,GO-20149007224,THEFT UNDER,2014-09-19T00:00:00,2014,September,Friday,19,262,10,2014-09-26T00:00:00,2014,September,Friday,26,269,10,D14,Toronto,82,Niagara (82),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,LRT,OT,24,BLK,250.0,STOLEN,18262,"{'type': 'Point', 'coordinates': (-79.40471258, 43.64210995)}"
-18288,17656,GO-20199034082,THEFT UNDER - BICYCLE,2019-10-15T00:00:00,2019,October,Tuesday,15,288,13,2019-10-16T00:00:00,2019,October,Wednesday,16,289,13,D14,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,UNO RISER,RG,1,SIL,700.0,STOLEN,18263,"{'type': 'Point', 'coordinates': (-79.42768737, 43.64847939)}"
-18289,11659,GO-20169006500,THEFT UNDER - BICYCLE,2016-06-09T00:00:00,2016,June,Thursday,9,161,19,2016-06-28T00:00:00,2016,June,Tuesday,28,180,22,D14,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,OT,STEALTH,RG,1,BLK,450.0,STOLEN,18264,"{'type': 'Point', 'coordinates': (-79.4294114, 43.65296386)}"
-18290,24669,GO-20149007653,THEFT UNDER,2014-10-17T00:00:00,2014,October,Friday,17,290,17,2014-10-17T00:00:00,2014,October,Friday,17,290,19,D14,Toronto,82,Niagara (82),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,3SPD-BUILT IN L,OT,3,BLK,700.0,STOLEN,18265,"{'type': 'Point', 'coordinates': (-79.41996894, 43.64398022)}"
-18291,24680,GO-20159000112,THEFT UNDER,2015-01-06T00:00:00,2015,January,Tuesday,6,6,18,2015-01-07T00:00:00,2015,January,Wednesday,7,7,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,TR,DRISTRICT S,RG,1,BLK,700.0,STOLEN,18266,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-18292,24681,GO-20159000485,THEFT UNDER,2015-01-25T00:00:00,2015,January,Sunday,25,25,16,2015-01-26T00:00:00,2015,January,Monday,26,26,16,D14,Toronto,82,Niagara (82),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,RACE LITE PRO X,BM,1,BLK,650.0,STOLEN,18267,"{'type': 'Point', 'coordinates': (-79.40264178, 43.63743971)}"
-18293,24688,GO-20159001966,THEFT UNDER,2015-04-15T00:00:00,2015,April,Wednesday,15,105,18,2015-04-16T00:00:00,2015,April,Thursday,16,106,12,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,PROD #B/AA207RE,OT,8,RED,1700.0,RECOVERED,18268,"{'type': 'Point', 'coordinates': (-79.40372116, 43.64647061)}"
-18294,24691,GO-20159002111,THEFT UNDER,2015-04-11T00:00:00,2015,April,Saturday,11,101,14,2015-04-20T00:00:00,2015,April,Monday,20,110,15,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,IH,IRON MOUNTAIN,MT,18,,350.0,STOLEN,18269,"{'type': 'Point', 'coordinates': (-79.4144255, 43.6400082)}"
-18295,24693,GO-20159002270,THEFT UNDER,2015-04-25T00:00:00,2015,April,Saturday,25,115,14,2015-04-26T00:00:00,2015,April,Sunday,26,116,16,D14,Toronto,82,Niagara (82),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RC,12,ONG,300.0,STOLEN,18270,"{'type': 'Point', 'coordinates': (-79.40550604, 43.64405171)}"
-18296,24697,GO-20159002736,THEFT UNDER,2015-02-27T00:00:00,2015,February,Friday,27,58,18,2015-05-14T00:00:00,2015,May,Thursday,14,134,19,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,MA,BOLINAS RIDGE,MT,6,PLE,150.0,STOLEN,18271,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-18297,24701,GO-2015874429,THEFT UNDER,2015-05-24T00:00:00,2015,May,Sunday,24,144,20,2015-05-25T00:00:00,2015,May,Monday,25,145,22,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,VINTAGE CRUISER,OT,1,GRNRED,150.0,STOLEN,18272,"{'type': 'Point', 'coordinates': (-79.40680169, 43.63639142)}"
-18298,24704,GO-20159003426,THEFT UNDER,2015-06-06T00:00:00,2015,June,Saturday,6,157,23,2015-06-08T00:00:00,2015,June,Monday,8,159,13,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,3-SPEED STEP TH,OT,3,CRM,800.0,STOLEN,18273,"{'type': 'Point', 'coordinates': (-79.40767877, 43.64290821)}"
-18299,24716,GO-20151092094,THEFT UNDER,2015-06-26T00:00:00,2015,June,Friday,26,177,8,2015-06-29T00:00:00,2015,June,Monday,29,180,8,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MONGOOSE,IBIS,MT,8,,4000.0,STOLEN,18274,"{'type': 'Point', 'coordinates': (-79.40235491, 43.63675803)}"
-18300,24718,GO-20159004221,THEFT UNDER,2015-05-26T00:00:00,2015,May,Tuesday,26,146,21,2015-07-06T00:00:00,2015,July,Monday,6,187,16,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,CROSS TRAIL SPO,BM,18,BLK,800.0,STOLEN,18275,"{'type': 'Point', 'coordinates': (-79.40517849, 43.63747213)}"
-18301,24727,GO-20159004865,THEFT UNDER,2015-07-21T00:00:00,2015,July,Tuesday,21,202,8,2015-07-22T00:00:00,2015,July,Wednesday,22,203,14,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,CITY LIMIT,MT,15,RED,0.0,STOLEN,18276,"{'type': 'Point', 'coordinates': (-79.41544967, 43.63111258)}"
-18302,24731,GO-20159005354,THEFT UNDER,2015-07-19T00:00:00,2015,July,Sunday,19,200,10,2015-08-05T00:00:00,2015,August,Wednesday,5,217,10,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,AVALANCHE 0.0,MT,24,RED,0.0,STOLEN,18277,"{'type': 'Point', 'coordinates': (-79.41587762, 43.63902109)}"
-18303,24733,GO-20159005627,THEFT UNDER,2015-08-11T00:00:00,2015,August,Tuesday,11,223,9,2015-08-11T00:00:00,2015,August,Tuesday,11,223,9,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,TR,ROADRUNNER,OT,24,BLK,659.0,STOLEN,18278,"{'type': 'Point', 'coordinates': (-79.40537327000001, 43.63616773)}"
-18304,24755,GO-20159007452,THEFT UNDER,2015-08-28T00:00:00,2015,August,Friday,28,240,12,2015-09-20T00:00:00,2015,September,Sunday,20,263,13,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,,RG,12,GRY,600.0,STOLEN,18279,"{'type': 'Point', 'coordinates': (-79.39999105, 43.63737009)}"
-18305,24758,GO-20159008425,THEFT UNDER,2015-09-14T00:00:00,2015,September,Monday,14,257,11,2015-10-11T00:00:00,2015,October,Sunday,11,284,12,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,CHILLI PEPPER,MT,14,BLU,3000.0,STOLEN,18280,"{'type': 'Point', 'coordinates': (-79.41193075000001, 43.64204126)}"
-18306,24768,GO-20159008996,THEFT OVER,2015-10-24T00:00:00,2015,October,Saturday,24,297,17,2015-10-25T00:00:00,2015,October,Sunday,25,298,12,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,CAAD 10 -1,RC,20,BLK,5000.0,STOLEN,18281,"{'type': 'Point', 'coordinates': (-79.40680169, 43.63639142)}"
-18307,24777,GO-201687783,THEFT UNDER,2015-12-21T00:00:00,2015,December,Monday,21,355,9,2016-01-15T00:00:00,2016,January,Friday,15,15,14,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,CRUISER,TO,1,LGR,,STOLEN,18282,"{'type': 'Point', 'coordinates': (-79.40235491, 43.63675803)}"
-18308,25187,GO-20169004414,THEFT UNDER - BICYCLE,2016-05-08T00:00:00,2016,May,Sunday,8,129,1,2016-05-11T00:00:00,2016,May,Wednesday,11,132,23,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,SU,MEDALIST,RG,12,BLU,200.0,STOLEN,18283,"{'type': 'Point', 'coordinates': (-79.39999105, 43.63737009)}"
-18309,25188,GO-2016818862,THEFT UNDER,2016-05-12T00:00:00,2016,May,Thursday,12,133,1,2016-05-12T00:00:00,2016,May,Thursday,12,133,19,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OTHER,MASI UNO DROP,OT,1,RED,,STOLEN,18284,"{'type': 'Point', 'coordinates': (-79.40524581, 43.64340152)}"
-18310,25198,GO-2016955473,THEFT UNDER - BICYCLE,2016-05-28T00:00:00,2016,May,Saturday,28,149,19,2016-06-02T00:00:00,2016,June,Thursday,2,154,11,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RALEIGH,,OT,18,SILGRY,800.0,STOLEN,18285,"{'type': 'Point', 'coordinates': (-79.4023568, 43.64319258)}"
-18311,25199,GO-20169005317,THEFT UNDER - BICYCLE,2016-06-03T00:00:00,2016,June,Friday,3,155,2,2016-06-03T00:00:00,2016,June,Friday,3,155,14,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,1,BLK,350.0,STOLEN,18286,"{'type': 'Point', 'coordinates': (-79.41138445, 43.63917336)}"
-18312,25201,GO-20169005368,THEFT UNDER,2016-06-03T00:00:00,2016,June,Friday,3,155,0,2016-06-06T00:00:00,2016,June,Monday,6,158,11,D14,Toronto,82,Niagara (82),"Open Areas (Lakes, Parks, Rivers)",Outside,DB,,OT,7,RED,350.0,STOLEN,18287,"{'type': 'Point', 'coordinates': (-79.40537327000001, 43.63616773)}"
-18313,25210,GO-20169006043,THEFT UNDER,2016-06-18T00:00:00,2016,June,Saturday,18,170,18,2016-06-20T00:00:00,2016,June,Monday,20,172,9,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,DEFY 3,RC,18,BLK,1118.0,STOLEN,18288,"{'type': 'Point', 'coordinates': (-79.40430715, 43.64464636)}"
-18314,25212,GO-20169006118,THEFT UNDER - BICYCLE,2016-06-18T00:00:00,2016,June,Saturday,18,170,10,2016-06-21T00:00:00,2016,June,Tuesday,21,173,12,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,MA,,RG,1,WHI,600.0,STOLEN,18289,"{'type': 'Point', 'coordinates': (-79.41095078, 43.64468599)}"
-18315,25218,GO-20169006465,THEFT UNDER,2016-06-23T00:00:00,2016,June,Thursday,23,175,18,2016-06-28T00:00:00,2016,June,Tuesday,28,180,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,12,GRY,800.0,STOLEN,18290,"{'type': 'Point', 'coordinates': (-79.39968108, 43.63663014)}"
-18316,25226,GO-20161240308,B&E,2016-07-10T00:00:00,2016,July,Sunday,10,192,4,2016-07-15T00:00:00,2016,July,Friday,15,197,9,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RAHN,,MT,0,,,STOLEN,18291,"{'type': 'Point', 'coordinates': (-79.40524581, 43.64340152)}"
-18317,25229,GO-20169007540,THEFT UNDER - BICYCLE,2016-07-20T00:00:00,2016,July,Wednesday,20,202,19,2016-07-21T00:00:00,2016,July,Thursday,21,203,12,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,SU,,RG,18,BLK,250.0,STOLEN,18292,"{'type': 'Point', 'coordinates': (-79.40111777, 43.63691899)}"
-18318,25230,GO-20169007671,THEFT UNDER - BICYCLE,2016-07-02T00:00:00,2016,July,Saturday,2,184,10,2016-07-24T00:00:00,2016,July,Sunday,24,206,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,7,,599.0,STOLEN,18293,"{'type': 'Point', 'coordinates': (-79.41138445, 43.63917336)}"
-18319,25242,GO-20169008707,THEFT UNDER,2016-08-11T00:00:00,2016,August,Thursday,11,224,4,2016-08-14T00:00:00,2016,August,Sunday,14,227,0,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ALIGHT 2,RG,24,BLU,599.0,STOLEN,18294,"{'type': 'Point', 'coordinates': (-79.40442195, 43.64140672)}"
-18320,25250,GO-20169009438,THEFT UNDER - BICYCLE,2016-08-22T00:00:00,2016,August,Monday,22,235,8,2016-08-24T00:00:00,2016,August,Wednesday,24,237,19,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,ABSOLUTE 2.3,OT,21,GRY,450.0,STOLEN,18295,"{'type': 'Point', 'coordinates': (-79.4060834, 43.64184243)}"
-18321,25258,GO-20169010238,THEFT UNDER - BICYCLE,2016-09-09T00:00:00,2016,September,Friday,9,253,19,2016-09-10T00:00:00,2016,September,Saturday,10,254,15,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,YORKVILLE,RG,3,BLU,500.0,STOLEN,18296,"{'type': 'Point', 'coordinates': (-79.417071, 43.63864906)}"
-18322,25270,GO-20169011123,THEFT UNDER,2016-09-23T00:00:00,2016,September,Friday,23,267,20,2016-09-26T00:00:00,2016,September,Monday,26,270,12,D14,Toronto,82,Niagara (82),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,REVOLT 3,RC,21,GRY,1310.0,STOLEN,18297,"{'type': 'Point', 'coordinates': (-79.39999105, 43.63737009)}"
-18323,25281,GO-20169012549,B&E,2016-10-19T00:00:00,2016,October,Wednesday,19,293,3,2016-10-25T00:00:00,2016,October,Tuesday,25,299,9,D14,Toronto,82,Niagara (82),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RC,18,,2000.0,STOLEN,18298,"{'type': 'Point', 'coordinates': (-79.41626354, 43.64472458)}"
-18324,25286,GO-20169014124,THEFT UNDER - BICYCLE,2016-12-01T00:00:00,2016,December,Thursday,1,336,17,2016-12-02T00:00:00,2016,December,Friday,2,337,10,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,CROSS CHECK,TO,27,BRN,2200.0,STOLEN,18299,"{'type': 'Point', 'coordinates': (-79.4149791, 43.64143597)}"
-18325,25289,GO-2017191426,THEFT UNDER - BICYCLE,2017-01-27T00:00:00,2017,January,Friday,27,27,17,2017-01-31T00:00:00,2017,January,Tuesday,31,31,8,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,REVOLVER 7.3 HT,MT,11,BLK,4000.0,STOLEN,18300,"{'type': 'Point', 'coordinates': (-79.41523931, 43.64211694)}"
-18326,25294,GO-20179004068,THEFT UNDER,2017-04-01T00:00:00,2017,April,Saturday,1,91,12,2017-04-01T00:00:00,2017,April,Saturday,1,91,13,D14,Toronto,82,Niagara (82),"Apartment (Rooming House, Condo)",Apartment,OT,700C,RG,1,BLK,289.0,STOLEN,18301,"{'type': 'Point', 'coordinates': (-79.39832559, 43.63567355)}"
-18327,25295,GO-2017588835,FRAUD OVER,2017-03-05T00:00:00,2017,March,Sunday,5,64,18,2017-04-03T00:00:00,2017,April,Monday,3,93,22,D14,Toronto,82,Niagara (82),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,SPECIALIZED,EPIC MARATHON,MT,20,BLK,9400.0,UNKNOWN,18302,"{'type': 'Point', 'coordinates': (-79.41182474, 43.63407409)}"
-18328,25296,GO-2017631386,THEFT UNDER - BICYCLE,2017-04-10T00:00:00,2017,April,Monday,10,100,6,2017-04-10T00:00:00,2017,April,Monday,10,100,11,D14,Toronto,82,Niagara (82),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN,UNKNOWN,RG,1,BLK,400.0,UNKNOWN,18303,"{'type': 'Point', 'coordinates': (-79.40235491, 43.63675803)}"
-18329,143,GO-2017420146,THEFT OF EBIKE UNDER $5000,2017-03-07T00:00:00,2017,March,Tuesday,7,66,5,2017-03-08T00:00:00,2017,March,Wednesday,8,67,7,D14,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DAYMAK,,EL,1,BLK,2500.0,STOLEN,18304,"{'type': 'Point', 'coordinates': (-79.43109264, 43.66079084)}"
-18330,277,GO-20179005225,THEFT UNDER - BICYCLE,2017-04-23T00:00:00,2017,April,Sunday,23,113,15,2017-04-25T00:00:00,2017,April,Tuesday,25,115,0,D11,Toronto,83,Dufferin Grove (83),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,ROAM 2,MT,27,GRN,870.0,STOLEN,18305,"{'type': 'Point', 'coordinates': (-79.43699471, 43.65521452000001)}"
-18331,304,GO-2017759223,THEFT UNDER - BICYCLE,2017-04-26T00:00:00,2017,April,Wednesday,26,116,3,2017-04-30T00:00:00,2017,April,Sunday,30,120,14,D11,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,FUJI,TO,1,SIL,666.0,STOLEN,18306,"{'type': 'Point', 'coordinates': (-79.43726099, 43.65427761)}"
-18332,381,GO-2017841893,THEFT UNDER - BICYCLE,2017-05-13T00:00:00,2017,May,Saturday,13,133,8,2017-05-14T00:00:00,2017,May,Sunday,14,134,8,D11,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,TREK,MARLIN 7,MT,27,ONG,900.0,STOLEN,18307,"{'type': 'Point', 'coordinates': (-79.44630541000001, 43.65520331)}"
-18333,407,GO-20179006491,THEFT UNDER,2017-05-17T00:00:00,2017,May,Wednesday,17,137,0,2017-05-17T00:00:00,2017,May,Wednesday,17,137,10,D11,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,ALYSA,RG,21,TRQ,650.0,STOLEN,18308,"{'type': 'Point', 'coordinates': (-79.44110312, 43.65385066)}"
-18334,468,GO-2017921386,THEFT UNDER,2017-05-24T00:00:00,2017,May,Wednesday,24,144,20,2017-05-25T00:00:00,2017,May,Thursday,25,145,11,D11,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,WAKIE,,OT,0,,300.0,STOLEN,18309,"{'type': 'Point', 'coordinates': (-79.4375771, 43.65508991)}"
-18335,469,GO-2017921386,THEFT UNDER,2017-05-24T00:00:00,2017,May,Wednesday,24,144,20,2017-05-25T00:00:00,2017,May,Thursday,25,145,11,D11,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,PEGASUS,MT,0,WHI,150.0,STOLEN,18310,"{'type': 'Point', 'coordinates': (-79.4375771, 43.65508991)}"
-18336,476,GO-2017930988,THEFT UNDER - BICYCLE,2017-05-26T00:00:00,2017,May,Friday,26,146,11,2017-05-26T00:00:00,2017,May,Friday,26,146,19,D14,Toronto,83,Dufferin Grove (83),Schools During Supervised Activity,Educational,RALEIGH,,RC,24,BLK,800.0,STOLEN,18311,"{'type': 'Point', 'coordinates': (-79.43131207, 43.65773638)}"
-18337,653,GO-20179008442,THEFT UNDER - BICYCLE,2017-06-19T00:00:00,2017,June,Monday,19,170,19,2017-06-20T00:00:00,2017,June,Tuesday,20,171,8,D11,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,TOULOUSE 700C,OT,7,YEL,349.0,STOLEN,18312,"{'type': 'Point', 'coordinates': (-79.4375771, 43.65508991)}"
-18338,656,GO-20179008456,THEFT UNDER - BICYCLE,2017-06-19T00:00:00,2017,June,Monday,19,170,22,2017-06-20T00:00:00,2017,June,Tuesday,20,171,11,D11,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,,MT,20,SIL,1500.0,STOLEN,18313,"{'type': 'Point', 'coordinates': (-79.44110312, 43.65385066)}"
-18339,659,GO-20179008503,THEFT UNDER - BICYCLE,2017-06-20T00:00:00,2017,June,Tuesday,20,171,2,2017-06-20T00:00:00,2017,June,Tuesday,20,171,19,D14,Toronto,83,Dufferin Grove (83),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RG,21,BLU,75.0,STOLEN,18314,"{'type': 'Point', 'coordinates': (-79.42814667, 43.65322723)}"
-18340,923,GO-20171296001,THEFT OF EBIKE UNDER $5000,2017-07-11T00:00:00,2017,July,Tuesday,11,192,12,2017-07-19T00:00:00,2017,July,Wednesday,19,200,13,D11,Toronto,83,Dufferin Grove (83),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,,EL,1,BLKRED,2015.0,STOLEN,18315,"{'type': 'Point', 'coordinates': (-79.43699471, 43.65521452000001)}"
-18341,932,GO-20179010701,THEFT UNDER,2017-07-19T00:00:00,2017,July,Wednesday,19,200,17,2017-07-20T00:00:00,2017,July,Thursday,20,201,19,D11,Toronto,83,Dufferin Grove (83),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,COTE,OT,10,ONG,1550.0,STOLEN,18316,"{'type': 'Point', 'coordinates': (-79.43699471, 43.65521452000001)}"
-18342,1070,GO-20179011882,B&E,2017-06-25T00:00:00,2017,June,Sunday,25,176,4,2017-08-07T00:00:00,2017,August,Monday,7,219,22,D14,Toronto,83,Dufferin Grove (83),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,BUSHP,RG,7,SIL,1000.0,STOLEN,18317,"{'type': 'Point', 'coordinates': (-79.42912178, 43.65581318)}"
-18343,1155,GO-20179012502,THEFT UNDER - BICYCLE,2017-08-14T00:00:00,2017,August,Monday,14,226,1,2017-08-15T00:00:00,2017,August,Tuesday,15,227,23,D11,Toronto,83,Dufferin Grove (83),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,FJ,,RG,1,WHI,690.0,STOLEN,18318,"{'type': 'Point', 'coordinates': (-79.44395755, 43.65808981)}"
-18344,2064,GO-20189006854,THEFT UNDER,2018-03-04T00:00:00,2018,March,Sunday,4,63,20,2018-03-05T00:00:00,2018,March,Monday,5,64,13,D14,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,OT,MIXTE (BLACK),RG,3,BLK,1100.0,STOLEN,18319,"{'type': 'Point', 'coordinates': (-79.42814667, 43.65322723)}"
-18345,2239,GO-20189013578,THEFT UNDER,2018-04-30T00:00:00,2018,April,Monday,30,120,13,2018-05-02T00:00:00,2018,May,Wednesday,2,122,13,D11,Toronto,83,Dufferin Grove (83),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,STS 1 SPORT,EL,9,LGR,3500.0,STOLEN,18320,"{'type': 'Point', 'coordinates': (-79.43699471, 43.65521452000001)}"
-18346,2441,GO-20189017119,THEFT UNDER,2018-06-02T00:00:00,2018,June,Saturday,2,153,9,2018-06-02T00:00:00,2018,June,Saturday,2,153,10,D11,Toronto,83,Dufferin Grove (83),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,FJ,DECLARATION,RG,1,BLK,814.0,STOLEN,18321,"{'type': 'Point', 'coordinates': (-79.44630541000001, 43.65520331)}"
-18347,2721,GO-20189020767,THEFT UNDER - BICYCLE,2018-06-29T00:00:00,2018,June,Friday,29,180,1,2018-06-29T00:00:00,2018,June,Friday,29,180,17,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ROCKHOPPER COMP,MT,24,BLK,999.0,STOLEN,18322,"{'type': 'Point', 'coordinates': (-79.42161579, 43.64147337)}"
-18348,17707,GO-20209011756,THEFT UNDER,2020-04-22T00:00:00,2020,April,Wednesday,22,113,0,2020-04-22T00:00:00,2020,April,Wednesday,22,113,19,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,30,BLK,540.0,STOLEN,18323,"{'type': 'Point', 'coordinates': (-79.42407483, 43.64782021)}"
-18349,17757,GO-20179018951,THEFT UNDER - BICYCLE,2017-06-08T00:00:00,2017,June,Thursday,8,159,18,2017-11-05T00:00:00,2017,November,Sunday,5,309,18,D14,Toronto,84,Little Portugal (84),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,,RG,10,WHI,300.0,STOLEN,18324,"{'type': 'Point', 'coordinates': (-79.42357472, 43.64324598)}"
-18350,17762,GO-20179019463,THEFT UNDER - BICYCLE,2017-11-11T00:00:00,2017,November,Saturday,11,315,20,2017-11-12T00:00:00,2017,November,Sunday,12,316,21,D14,Toronto,84,Little Portugal (84),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,FIXED RISER,RC,1,BLK,1500.0,STOLEN,18325,"{'type': 'Point', 'coordinates': (-79.42712016, 43.64250955)}"
-18351,17774,GO-20173179706,PROPERTY - FOUND,2017-12-12T00:00:00,2017,December,Tuesday,12,346,7,2017-12-12T00:00:00,2017,December,Tuesday,12,346,10,D14,Toronto,84,Little Portugal (84),"Police / Courts (Parole Board, Probation Office)",Other,CANNONDALE,F5,MT,21,BLK,,UNKNOWN,18326,"{'type': 'Point', 'coordinates': (-79.42551956, 43.65145583)}"
-18352,17775,GO-20173179706,PROPERTY - FOUND,2017-12-12T00:00:00,2017,December,Tuesday,12,346,7,2017-12-12T00:00:00,2017,December,Tuesday,12,346,10,D14,Toronto,84,Little Portugal (84),"Police / Courts (Parole Board, Probation Office)",Other,UNKNOWN MAKE,UNKNOWN,MT,21,WHI,,UNKNOWN,18327,"{'type': 'Point', 'coordinates': (-79.42551956, 43.65145583)}"
-18353,17776,GO-20173179706,PROPERTY - FOUND,2017-12-12T00:00:00,2017,December,Tuesday,12,346,7,2017-12-12T00:00:00,2017,December,Tuesday,12,346,10,D14,Toronto,84,Little Portugal (84),"Police / Courts (Parole Board, Probation Office)",Other,KHS,FLITEONEHUNDRED,RG,1,BLK,,UNKNOWN,18328,"{'type': 'Point', 'coordinates': (-79.42551956, 43.65145583)}"
-18354,17777,GO-20173179706,PROPERTY - FOUND,2017-12-12T00:00:00,2017,December,Tuesday,12,346,7,2017-12-12T00:00:00,2017,December,Tuesday,12,346,10,D14,Toronto,84,Little Portugal (84),"Police / Courts (Parole Board, Probation Office)",Other,GIANT,840RS,MT,21,GRN,,UNKNOWN,18329,"{'type': 'Point', 'coordinates': (-79.42551956, 43.65145583)}"
-18355,17799,GO-2018714655,THEFT UNDER - BICYCLE,2018-04-21T00:00:00,2018,April,Saturday,21,111,14,2018-04-21T00:00:00,2018,April,Saturday,21,111,17,D14,Toronto,84,Little Portugal (84),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,S2 105,OT,50,BLK,3000.0,STOLEN,18330,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18356,17803,GO-20189013301,THEFT UNDER - BICYCLE,2018-04-27T00:00:00,2018,April,Friday,27,117,20,2018-04-30T00:00:00,2018,April,Monday,30,120,0,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,TO,27,GRY,1500.0,STOLEN,18331,"{'type': 'Point', 'coordinates': (-79.43164127, 43.65274306)}"
-18357,17819,GO-20189016913,THEFT UNDER - BICYCLE,2018-05-29T00:00:00,2018,May,Tuesday,29,149,20,2018-05-31T00:00:00,2018,May,Thursday,31,151,11,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,1,OTH,400.0,STOLEN,18332,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18358,17820,GO-20189017138,THEFT UNDER - BICYCLE,2018-05-30T00:00:00,2018,May,Wednesday,30,150,15,2018-06-02T00:00:00,2018,June,Saturday,2,153,15,D14,Toronto,84,Little Portugal (84),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,VFR,RG,21,BLK,650.0,STOLEN,18333,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18359,17851,GO-20189021763,THEFT UNDER - BICYCLE,2018-07-01T00:00:00,2018,July,Sunday,1,182,9,2018-07-10T00:00:00,2018,July,Tuesday,10,191,10,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,OT,SOLOIST NOIR AL,RG,1,BLK,500.0,STOLEN,18334,"{'type': 'Point', 'coordinates': (-79.42712016, 43.64250955)}"
-18360,18082,GO-20171168618,THEFT UNDER - BICYCLE,2017-06-29T00:00:00,2017,June,Thursday,29,180,20,2017-06-30T00:00:00,2017,June,Friday,30,181,9,D14,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FUJI,MEN'S,TO,1,DGR,250.0,STOLEN,18335,"{'type': 'Point', 'coordinates': (-79.42947477, 43.64875483)}"
-18361,18100,GO-20179011277,THEFT UNDER,2017-07-28T00:00:00,2017,July,Friday,28,209,3,2017-07-29T00:00:00,2017,July,Saturday,29,210,9,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,21,WHI,600.0,STOLEN,18336,"{'type': 'Point', 'coordinates': (-79.4266154, 43.64870573)}"
-18362,18106,GO-20179011678,THEFT UNDER - BICYCLE,2017-08-03T00:00:00,2017,August,Thursday,3,215,23,2017-08-04T00:00:00,2017,August,Friday,4,216,11,D14,Toronto,84,Little Portugal (84),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,LADIES 8200,MT,21,BLU,460.0,STOLEN,18337,"{'type': 'Point', 'coordinates': (-79.4266154, 43.64870573)}"
-18363,18116,GO-20179012973,THEFT UNDER - BICYCLE,2017-08-21T00:00:00,2017,August,Monday,21,233,9,2017-08-21T00:00:00,2017,August,Monday,21,233,9,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,KO,DEWEY,RG,17,DBL,749.0,STOLEN,18338,"{'type': 'Point', 'coordinates': (-79.42602616, 43.65272693)}"
-18364,18148,GO-20169010039,THEFT UNDER,2016-09-06T00:00:00,2016,September,Tuesday,6,250,14,2016-09-06T00:00:00,2016,September,Tuesday,6,250,15,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,DON'T KNOW,RG,7,BLK,800.0,STOLEN,18339,"{'type': 'Point', 'coordinates': (-79.43087347, 43.64962418)}"
-18365,18160,GO-20169011118,B&E,2016-09-25T00:00:00,2016,September,Sunday,25,269,9,2016-09-26T00:00:00,2016,September,Monday,26,270,11,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,OT,TIBURON,RG,21,SIL,750.0,STOLEN,18340,"{'type': 'Point', 'coordinates': (-79.42727375, 43.64293316)}"
-18366,18189,GO-20179003147,THEFT UNDER - BICYCLE,2017-03-12T00:00:00,2017,March,Sunday,12,71,10,2017-03-12T00:00:00,2017,March,Sunday,12,71,12,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,MT,24,BLU,3000.0,STOLEN,18341,"{'type': 'Point', 'coordinates': (-79.42727375, 43.64293316)}"
-18367,18195,GO-20179004109,THEFT UNDER - BICYCLE,2017-03-29T00:00:00,2017,March,Wednesday,29,88,13,2017-04-02T00:00:00,2017,April,Sunday,2,92,13,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CLASSICO,TO,7,RED,925.0,STOLEN,18342,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18368,18308,GO-20201978150,THEFT OF EBIKE UNDER $5000,2020-10-15T00:00:00,2020,October,Thursday,15,289,12,2020-10-18T00:00:00,2020,October,Sunday,18,292,15,D11,Toronto,84,Little Portugal (84),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,STEEL,EL,0,WHI,1600.0,STOLEN,18343,"{'type': 'Point', 'coordinates': (-79.43464706, 43.64746492)}"
-18369,18330,GO-20142157133,THEFT UNDER,2014-05-25T00:00:00,2014,May,Sunday,25,145,21,2014-05-26T00:00:00,2014,May,Monday,26,146,16,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,JAMIS,COMMUTER 2,MT,8,GRY,600.0,STOLEN,18344,"{'type': 'Point', 'coordinates': (-79.43164127, 43.65274306)}"
-18370,18337,GO-20149003729,THEFT UNDER,2014-05-31T00:00:00,2014,May,Saturday,31,151,17,2014-06-01T00:00:00,2014,June,Sunday,1,152,11,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SGL SPEED MATT,RG,1,BLK,450.0,STOLEN,18345,"{'type': 'Point', 'coordinates': (-79.42978953, 43.64958423)}"
-18371,18338,GO-20142209693,B&E W'INTENT,2014-06-02T00:00:00,2014,June,Monday,2,153,22,2014-06-03T00:00:00,2014,June,Tuesday,3,154,7,D14,Toronto,84,Little Portugal (84),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RALEIGH,TORA,MT,21,BLK,100.0,STOLEN,18346,"{'type': 'Point', 'coordinates': (-79.43221823, 43.65172517)}"
-18372,18346,GO-20149004668,THEFT UNDER,2014-06-20T00:00:00,2014,June,Friday,20,171,14,2014-07-03T00:00:00,2014,July,Thursday,3,184,14,D14,Toronto,84,Little Portugal (84),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SC,,RG,21,,500.0,STOLEN,18347,"{'type': 'Point', 'coordinates': (-79.42727375, 43.64293316)}"
-18373,18363,GO-20149006302,THEFT UNDER,2014-08-25T00:00:00,2014,August,Monday,25,237,9,2014-08-26T00:00:00,2014,August,Tuesday,26,238,9,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,NO,YORKVILLE HYBRI,RG,7,SIL,500.0,STOLEN,18348,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18374,15457,GO-20159007481,THEFT UNDER,2015-09-20T00:00:00,2015,September,Sunday,20,263,20,2015-09-20T00:00:00,2015,September,Sunday,20,263,20,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,CA,BAD BOY 5,RG,27,BLK,1500.0,STOLEN,18349,"{'type': 'Point', 'coordinates': (-79.42843902, 43.64178861)}"
-18375,21608,GO-2015751544,THEFT UNDER,2015-05-05T00:00:00,2015,May,Tuesday,5,125,18,2015-05-06T00:00:00,2015,May,Wednesday,6,126,9,D11,Toronto,83,Dufferin Grove (83),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,CITY GLIDE,OT,3,BLK,800.0,STOLEN,18350,"{'type': 'Point', 'coordinates': (-79.43854185, 43.65758566)}"
-18376,24256,GO-20179018666,THEFT UNDER - BICYCLE,2017-10-26T00:00:00,2017,October,Thursday,26,299,12,2017-11-01T00:00:00,2017,November,Wednesday,1,305,13,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,OT,THE SPECTRE,RG,1,BLK,616.0,STOLEN,18351,"{'type': 'Point', 'coordinates': (-79.42475884, 43.64301634)}"
-18377,11749,GO-20169006930,THEFT UNDER,2016-07-08T00:00:00,2016,July,Friday,8,190,8,2016-07-09T00:00:00,2016,July,Saturday,9,191,15,D14,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,CITATO,RG,27,WHI,900.0,STOLEN,18352,"{'type': 'Point', 'coordinates': (-79.42963756, 43.65291556)}"
-18378,2757,GO-20189021236,THEFT UNDER - BICYCLE,2018-07-03T00:00:00,2018,July,Tuesday,3,184,18,2018-07-05T00:00:00,2018,July,Thursday,5,186,9,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,MT,21,BLU,500.0,STOLEN,18353,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18379,3218,GO-20189026573,THEFT UNDER - BICYCLE,2018-08-13T00:00:00,2018,August,Monday,13,225,10,2018-08-16T00:00:00,2018,August,Thursday,16,228,10,D11,Toronto,83,Dufferin Grove (83),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GF,UTOPIA,MT,21,BLU,720.0,STOLEN,18354,"{'type': 'Point', 'coordinates': (-79.44689484, 43.65747686)}"
-18380,18379,GO-20143230026,THEFT UNDER,2014-09-15T00:00:00,2014,September,Monday,15,258,9,2014-11-03T00:00:00,2014,November,Monday,3,307,12,D14,Toronto,84,Little Portugal (84),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GIANT,DEFY1,OT,10,WHI,1500.0,STOLEN,18355,"{'type': 'Point', 'coordinates': (-79.42368786, 43.64113148)}"
-18381,18380,GO-20143230026,THEFT UNDER,2014-09-15T00:00:00,2014,September,Monday,15,258,9,2014-11-03T00:00:00,2014,November,Monday,3,307,12,D14,Toronto,84,Little Portugal (84),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GIANT,DEFY1,OT,10,WHI,1500.0,STOLEN,18356,"{'type': 'Point', 'coordinates': (-79.42368786, 43.64113148)}"
-18382,18434,GO-20159005030,THEFT UNDER,2015-07-22T00:00:00,2015,July,Wednesday,22,203,5,2015-07-27T00:00:00,2015,July,Monday,27,208,9,D14,Toronto,84,Little Portugal (84),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CR,,OT,21,BLK,500.0,STOLEN,18357,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18383,18479,GO-20169003670,THEFT UNDER,2016-04-16T00:00:00,2016,April,Saturday,16,107,19,2016-04-21T00:00:00,2016,April,Thursday,21,112,19,D14,Toronto,84,Little Portugal (84),Bar / Restaurant,Commercial,RA,1972 SUPERBE,RG,3,DGR,450.0,STOLEN,18358,"{'type': 'Point', 'coordinates': (-79.43164127, 43.65274306)}"
-18384,18497,GO-20161024910,THEFT OF EBIKE UNDER $5000,2016-06-11T00:00:00,2016,June,Saturday,11,163,0,2016-06-12T00:00:00,2016,June,Sunday,12,164,21,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,,EL,1,RED,,STOLEN,18359,"{'type': 'Point', 'coordinates': (-79.43087347, 43.64962418)}"
-18385,18514,GO-20149004456,THEFT UNDER,2014-06-26T00:00:00,2014,June,Thursday,26,177,7,2014-06-26T00:00:00,2014,June,Thursday,26,177,9,D11,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FJ,,RC,18,LGR,250.0,STOLEN,18360,"{'type': 'Point', 'coordinates': (-79.43608847, 43.649357480000006)}"
-18386,18539,GO-20159004469,THEFT UNDER,2015-07-10T00:00:00,2015,July,Friday,10,191,22,2015-07-12T00:00:00,2015,July,Sunday,12,193,21,D11,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ANNEX,RG,7,BLK,300.0,STOLEN,18361,"{'type': 'Point', 'coordinates': (-79.4360548, 43.65112513)}"
-18387,18549,GO-20159005872,THEFT UNDER,2015-08-04T00:00:00,2015,August,Tuesday,4,216,16,2015-08-16T00:00:00,2015,August,Sunday,16,228,17,D11,Toronto,84,Little Portugal (84),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,CLASSICO,RG,7,BGE,550.0,STOLEN,18362,"{'type': 'Point', 'coordinates': (-79.43419446, 43.64630575)}"
-18388,18550,GO-20159005872,THEFT UNDER,2015-08-04T00:00:00,2015,August,Tuesday,4,216,16,2015-08-16T00:00:00,2015,August,Sunday,16,228,17,D11,Toronto,84,Little Portugal (84),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,REMUS,RG,1,BRN,500.0,STOLEN,18363,"{'type': 'Point', 'coordinates': (-79.43419446, 43.64630575)}"
-18389,18615,GO-20171748117,THEFT UNDER,2017-09-23T00:00:00,2017,September,Saturday,23,266,23,2017-09-26T00:00:00,2017,September,Tuesday,26,269,14,D11,Toronto,84,Little Portugal (84),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CANNONDALE,,OT,20,REDWHI,4000.0,STOLEN,18364,"{'type': 'Point', 'coordinates': (-79.43521699, 43.64644765)}"
-18390,18625,GO-20179018307,THEFT UNDER - BICYCLE,2017-10-26T00:00:00,2017,October,Thursday,26,299,21,2017-10-27T00:00:00,2017,October,Friday,27,300,9,D11,Toronto,84,Little Portugal (84),Convenience Stores,Commercial,SU,700CC CIRCUIT,OT,13,BLU,350.0,STOLEN,18365,"{'type': 'Point', 'coordinates': (-79.43365028, 43.649772590000005)}"
-18391,18645,GO-20189024373,THEFT UNDER - BICYCLE,2018-07-23T00:00:00,2018,July,Monday,23,204,21,2018-07-28T00:00:00,2018,July,Saturday,28,209,21,D11,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,CC,CCM 29ER,MT,21,,300.0,STOLEN,18366,"{'type': 'Point', 'coordinates': (-79.43724029, 43.64734749)}"
-18392,18672,GO-20199016796,THEFT UNDER,2019-05-27T00:00:00,2019,May,Monday,27,147,8,2019-05-29T00:00:00,2019,May,Wednesday,29,149,13,D11,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,OT,SCRIPT,OT,1,GRY,1299.0,STOLEN,18367,"{'type': 'Point', 'coordinates': (-79.43365028, 43.649772590000005)}"
-18393,18691,GO-20199031246,THEFT UNDER,2019-09-09T00:00:00,2019,September,Monday,9,252,0,2019-09-23T00:00:00,2019,September,Monday,23,266,19,D11,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ESPIRIT,OT,7,GLD,500.0,RECOVERED,18368,"{'type': 'Point', 'coordinates': (-79.43365028, 43.649772590000005)}"
-18394,20792,GO-20209019713,THEFT UNDER,2020-08-04T00:00:00,2020,August,Tuesday,4,217,17,2020-08-08T00:00:00,2020,August,Saturday,8,221,19,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,TR,3500,MT,21,SIL,500.0,STOLEN,18369,"{'type': 'Point', 'coordinates': (-79.42602616, 43.65272693)}"
-18395,20797,GO-20209020265,THEFT UNDER,2020-08-14T00:00:00,2020,August,Friday,14,227,16,2020-08-14T00:00:00,2020,August,Friday,14,227,21,D14,Toronto,84,Little Portugal (84),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,ROCKHOPPER,MT,21,BLK,600.0,STOLEN,18370,"{'type': 'Point', 'coordinates': (-79.42703066, 43.64686138)}"
-18396,20798,GO-20209020735,THEFT UNDER,2020-08-20T00:00:00,2020,August,Thursday,20,233,8,2020-08-20T00:00:00,2020,August,Thursday,20,233,10,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,NO,INDIE 4 - BLACK,RG,8,BLK,831.0,STOLEN,18371,"{'type': 'Point', 'coordinates': (-79.42703066, 43.64686138)}"
-18397,20818,GO-20209025142,THEFT UNDER,2020-09-30T00:00:00,2020,September,Wednesday,30,274,10,2020-10-01T00:00:00,2020,October,Thursday,1,275,14,D14,Toronto,84,Little Portugal (84),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,CITY GLIDE,OT,7,TAN,500.0,STOLEN,18372,"{'type': 'Point', 'coordinates': (-79.42407483, 43.64782021)}"
-18398,20970,GO-20189039918,THEFT UNDER - BICYCLE,2018-11-27T00:00:00,2018,November,Tuesday,27,331,8,2018-11-27T00:00:00,2018,November,Tuesday,27,331,9,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,RALEIGH DETOUR,OT,7,RED,0.0,STOLEN,18373,"{'type': 'Point', 'coordinates': (-79.42357472, 43.64324598)}"
-18399,21002,GO-2019983756,THEFT UNDER - BICYCLE,2019-05-28T00:00:00,2019,May,Tuesday,28,148,21,2019-05-29T00:00:00,2019,May,Wednesday,29,149,12,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,MASI,,RG,7,BLK,500.0,STOLEN,18374,"{'type': 'Point', 'coordinates': (-79.42368786, 43.64113148)}"
-18400,21066,GO-20199030736,THEFT UNDER - BICYCLE,2019-09-19T00:00:00,2019,September,Thursday,19,262,13,2019-09-19T00:00:00,2019,September,Thursday,19,262,19,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MA,PALISADER,MT,18,BLK,0.0,STOLEN,18375,"{'type': 'Point', 'coordinates': (-79.42895317, 43.65095273)}"
-18401,21076,GO-20199033027,THEFT UNDER - BICYCLE,2019-10-06T00:00:00,2019,October,Sunday,6,279,9,2019-10-07T00:00:00,2019,October,Monday,7,280,22,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,BLK,180.0,STOLEN,18376,"{'type': 'Point', 'coordinates': (-79.42475884, 43.64301634)}"
-18402,21078,GO-20199033364,THEFT UNDER,2019-10-03T00:00:00,2019,October,Thursday,3,276,11,2019-10-10T00:00:00,2019,October,Thursday,10,283,12,D14,Toronto,84,Little Portugal (84),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GT,KARAKORAM 29,MT,27,BLK,800.0,STOLEN,18377,"{'type': 'Point', 'coordinates': (-79.42727375, 43.64293316)}"
-18403,21109,GO-20209004798,THEFT UNDER,2020-02-07T00:00:00,2020,February,Friday,7,38,16,2020-02-09T00:00:00,2020,February,Sunday,9,40,19,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,KH,URBAN SOUL 7,OT,7,BLK,500.0,STOLEN,18378,"{'type': 'Point', 'coordinates': (-79.42237064, 43.64349082)}"
-18404,21134,GO-20209012744,THEFT UNDER,2020-04-30T00:00:00,2020,April,Thursday,30,121,23,2020-05-08T00:00:00,2020,May,Friday,8,129,19,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,21,BRZ,150.0,STOLEN,18379,"{'type': 'Point', 'coordinates': (-79.42475884, 43.64301634)}"
-18405,21148,GO-20201126715,THEFT UNDER - BICYCLE,2020-06-19T00:00:00,2020,June,Friday,19,171,5,2020-06-19T00:00:00,2020,June,Friday,19,171,9,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,RG,1,RED,,STOLEN,18380,"{'type': 'Point', 'coordinates': (-79.42475884, 43.64301634)}"
-18406,21155,GO-20209016982,THEFT UNDER,2020-06-24T00:00:00,2020,June,Wednesday,24,176,17,2020-07-07T00:00:00,2020,July,Tuesday,7,189,13,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,NO,,OT,25,GRY,600.0,STOLEN,18381,"{'type': 'Point', 'coordinates': (-79.42475884, 43.64301634)}"
-18407,21156,GO-20201249582,THEFT UNDER - BICYCLE,2020-07-01T00:00:00,2020,July,Wednesday,1,183,12,2020-07-09T00:00:00,2020,July,Thursday,9,191,14,D14,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FOCUS,,MT,0,GRY,2000.0,STOLEN,18382,"{'type': 'Point', 'coordinates': (-79.42744531, 43.65131756)}"
-18408,21161,GO-20209017414,THEFT UNDER,2020-07-12T00:00:00,2020,July,Sunday,12,194,20,2020-07-13T00:00:00,2020,July,Monday,13,195,7,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,IN,INFINITY HURON,RG,21,SIL,500.0,STOLEN,18383,"{'type': 'Point', 'coordinates': (-79.42368786, 43.64113148)}"
-18409,21208,GO-20179014112,THEFT UNDER,2017-09-02T00:00:00,2017,September,Saturday,2,245,22,2017-09-06T00:00:00,2017,September,Wednesday,6,249,13,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,CA,,RC,18,,1500.0,STOLEN,18384,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18410,21218,GO-20179016250,THEFT UNDER - BICYCLE,2017-09-20T00:00:00,2017,September,Wednesday,20,263,23,2017-10-02T00:00:00,2017,October,Monday,2,275,11,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,CC,,MT,24,BLK,750.0,STOLEN,18385,"{'type': 'Point', 'coordinates': (-79.42580771, 43.64569411)}"
-18411,21236,GO-20173035533,B&E,2017-10-17T00:00:00,2017,October,Tuesday,17,290,0,2017-11-20T00:00:00,2017,November,Monday,20,324,19,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,MASI,RISER,RG,10,BLK,970.0,STOLEN,18386,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18412,21237,GO-20179020002,THEFT UNDER,2017-11-16T00:00:00,2017,November,Thursday,16,320,14,2017-11-19T00:00:00,2017,November,Sunday,19,323,14,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,18,GRY,250.0,STOLEN,18387,"{'type': 'Point', 'coordinates': (-79.42524484, 43.64083535000001)}"
-18413,21253,GO-20189006155,THEFT UNDER - BICYCLE,2018-02-26T00:00:00,2018,February,Monday,26,57,17,2018-02-26T00:00:00,2018,February,Monday,26,57,18,D14,Toronto,84,Little Portugal (84),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,1,CRM,400.0,STOLEN,18388,"{'type': 'Point', 'coordinates': (-79.42433577, 43.64309601)}"
-18414,21259,GO-20189010375,THEFT UNDER - BICYCLE,2018-02-01T00:00:00,2018,February,Thursday,1,32,17,2018-04-03T00:00:00,2018,April,Tuesday,3,93,17,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,UK,SIRRUS SPORT,RG,9,GRY,1000.0,STOLEN,18389,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18415,21261,GO-20189013178,THEFT UNDER - BICYCLE,2017-09-20T00:00:00,2017,September,Wednesday,20,263,15,2018-04-28T00:00:00,2018,April,Saturday,28,118,16,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,OT,2016 VERZA SPEE,OT,50,BLK,600.0,STOLEN,18390,"{'type': 'Point', 'coordinates': (-79.42727375, 43.64293316)}"
-18416,21266,GO-20189014523,THEFT UNDER - BICYCLE,2018-05-10T00:00:00,2018,May,Thursday,10,130,0,2018-05-11T00:00:00,2018,May,Friday,11,131,8,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,UK,SOLOIST,RG,1,BLK,450.0,STOLEN,18391,"{'type': 'Point', 'coordinates': (-79.42703066, 43.64686138)}"
-18417,21302,GO-20189020696,THEFT UNDER - BICYCLE,2018-06-27T00:00:00,2018,June,Wednesday,27,178,17,2018-06-28T00:00:00,2018,June,Thursday,28,179,17,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM XR 1,MT,21,WHI,1200.0,STOLEN,18392,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18418,21304,GO-20189021046,THEFT UNDER - BICYCLE,2018-07-02T00:00:00,2018,July,Monday,2,183,2,2018-07-03T00:00:00,2018,July,Tuesday,3,184,16,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,PE,60'S,RG,10,BLK,600.0,STOLEN,18393,"{'type': 'Point', 'coordinates': (-79.42947477, 43.64875483)}"
-18419,21366,GO-20189036285,THEFT UNDER - BICYCLE,2018-10-21T00:00:00,2018,October,Sunday,21,294,14,2018-10-30T00:00:00,2018,October,Tuesday,30,303,19,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,SIERRA,MT,1,BRN,0.0,STOLEN,18394,"{'type': 'Point', 'coordinates': (-79.42475884, 43.64301634)}"
-18420,21380,GO-20169005933,THEFT UNDER,2016-06-16T00:00:00,2016,June,Thursday,16,168,17,2016-06-17T00:00:00,2016,June,Friday,17,169,9,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,NO,BIGFOOT,MT,18,,950.0,STOLEN,18395,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18421,21392,GO-20169006578,THEFT UNDER,2016-06-28T00:00:00,2016,June,Tuesday,28,180,17,2016-06-30T00:00:00,2016,June,Thursday,30,182,17,D14,Toronto,84,Little Portugal (84),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RM,SOUL,MT,24,BLU,1100.0,STOLEN,18396,"{'type': 'Point', 'coordinates': (-79.42727375, 43.64293316)}"
-18422,21400,GO-20169007729,THEFT UNDER - BICYCLE,2016-07-22T00:00:00,2016,July,Friday,22,204,14,2016-07-25T00:00:00,2016,July,Monday,25,207,14,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,UK,700C,RC,1,BLK,450.0,STOLEN,18397,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18423,21438,GO-20161853567,THEFT UNDER - BICYCLE,2016-10-18T00:00:00,2016,October,Tuesday,18,292,10,2016-10-18T00:00:00,2016,October,Tuesday,18,292,13,D14,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,S AND M,TALL BOY,BM,0,SIL,1000.0,STOLEN,18398,"{'type': 'Point', 'coordinates': (-79.4266154, 43.64870573)}"
-18424,21473,GO-20179004500,THEFT UNDER,2017-03-26T00:00:00,2017,March,Sunday,26,85,20,2017-04-10T00:00:00,2017,April,Monday,10,100,14,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,UK,S-WORKS M2,RC,18,LBL,2000.0,STOLEN,18399,"{'type': 'Point', 'coordinates': (-79.42368786, 43.64113148)}"
-18425,21573,GO-20149000553,THEFT UNDER,2014-01-18T00:00:00,2014,January,Saturday,18,18,4,2014-01-18T00:00:00,2014,January,Saturday,18,18,16,D11,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,,RG,16,BLU,120.0,STOLEN,18400,"{'type': 'Point', 'coordinates': (-79.43419446, 43.64630575)}"
-18426,21585,GO-20142211590,THEFT UNDER,2014-06-03T00:00:00,2014,June,Tuesday,3,154,9,2014-06-03T00:00:00,2014,June,Tuesday,3,154,12,D11,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FUJI,DECLARATION,RC,1,BLK,500.0,STOLEN,18401,"{'type': 'Point', 'coordinates': (-79.4375218, 43.64813772)}"
-18427,21614,GO-20151060021,THEFT UNDER,2015-06-23T00:00:00,2015,June,Tuesday,23,174,21,2015-06-23T00:00:00,2015,June,Tuesday,23,174,22,D11,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,21,BLU,,STOLEN,18402,"{'type': 'Point', 'coordinates': (-79.43951498, 43.649509)}"
-18428,21672,GO-20179006684,THEFT UNDER - BICYCLE,2017-05-20T00:00:00,2017,May,Saturday,20,140,12,2017-05-20T00:00:00,2017,May,Saturday,20,140,12,D11,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,5,RED,250.0,STOLEN,18403,"{'type': 'Point', 'coordinates': (-79.43565359, 43.64766193)}"
-18429,21681,GO-20179012622,THEFT UNDER - BICYCLE,2017-08-16T00:00:00,2017,August,Wednesday,16,228,22,2017-08-17T00:00:00,2017,August,Thursday,17,229,14,D11,Toronto,84,Little Portugal (84),Unknown,Other,UK,,MT,3,TRQ,1200.0,STOLEN,18404,"{'type': 'Point', 'coordinates': (-79.43141432, 43.64965071)}"
-18430,21741,GO-20199020948,THEFT UNDER,2019-07-04T00:00:00,2019,July,Thursday,4,185,8,2019-07-04T00:00:00,2019,July,Thursday,4,185,11,D11,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,6,,300.0,STOLEN,18405,"{'type': 'Point', 'coordinates': (-79.43818548, 43.6480036)}"
-18431,21755,GO-20199027203,THEFT UNDER,2019-08-21T00:00:00,2019,August,Wednesday,21,233,19,2019-08-22T00:00:00,2019,August,Thursday,22,234,0,D11,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KHS,URBAN XPRESS DI,MT,21,GRY,800.0,STOLEN,18406,"{'type': 'Point', 'coordinates': (-79.43697295, 43.6499839)}"
-18432,21760,GO-20199032999,THEFT UNDER,2019-10-07T00:00:00,2019,October,Monday,7,280,13,2019-10-07T00:00:00,2019,October,Monday,7,280,20,D11,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,SEEK,RG,27,,600.0,STOLEN,18407,"{'type': 'Point', 'coordinates': (-79.43581226, 43.65050317000001)}"
-18433,21843,GO-20149007786,THEFT UNDER,2014-10-23T00:00:00,2014,October,Thursday,23,296,18,2014-10-24T00:00:00,2014,October,Friday,24,297,1,D14,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GF,SIMPLE CITY 8,RG,8,CRM,1000.0,STOLEN,18408,"{'type': 'Point', 'coordinates': (-79.42464271, 43.64593045)}"
-18434,21855,GO-2015684546,THEFT UNDER,2015-03-25T00:00:00,2015,March,Wednesday,25,84,17,2015-04-25T00:00:00,2015,April,Saturday,25,115,13,D14,Toronto,84,Little Portugal (84),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,SEEK,MT,21,BLK,700.0,STOLEN,18409,"{'type': 'Point', 'coordinates': (-79.42161579, 43.64147337)}"
-18435,21873,GO-2015984598,THEFT UNDER,2015-06-01T00:00:00,2015,June,Monday,1,152,12,2015-06-12T00:00:00,2015,June,Friday,12,163,9,D14,Toronto,84,Little Portugal (84),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,DULCE COMP2,MT,21,BLK,1800.0,STOLEN,18410,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18436,21874,GO-2015984598,THEFT UNDER,2015-06-01T00:00:00,2015,June,Monday,1,152,12,2015-06-12T00:00:00,2015,June,Friday,12,163,9,D14,Toronto,84,Little Portugal (84),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GIANT,FCR1,MT,21,RED,1800.0,STOLEN,18411,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18437,21902,GO-20159005228,THEFT UNDER,2015-07-29T00:00:00,2015,July,Wednesday,29,210,22,2015-07-31T00:00:00,2015,July,Friday,31,212,19,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,OT,MILAN-2,RG,1,LGR,100.0,STOLEN,18412,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18438,21964,GO-2016857389,PROPERTY - FOUND,2016-05-18T00:00:00,2016,May,Wednesday,18,139,19,2016-05-18T00:00:00,2016,May,Wednesday,18,139,19,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,NEXT,RG,20,,,UNKNOWN,18413,"{'type': 'Point', 'coordinates': (-79.43141432, 43.64965071)}"
-18439,21965,GO-20169004790,THEFT UNDER,2016-04-06T00:00:00,2016,April,Wednesday,6,97,12,2016-05-21T00:00:00,2016,May,Saturday,21,142,12,D14,Toronto,84,Little Portugal (84),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,HICKORY,MT,27,GRY,650.0,STOLEN,18414,"{'type': 'Point', 'coordinates': (-79.42727375, 43.64293316)}"
-18440,21968,GO-20201468498,THEFT OF EBIKE UNDER $5000,2020-08-05T00:00:00,2020,August,Wednesday,5,218,21,2020-08-07T00:00:00,2020,August,Friday,7,220,13,D11,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NCM,MOSCOW,EL,1,BLKBLU,1600.0,STOLEN,18415,"{'type': 'Point', 'coordinates': (-79.43818548, 43.6480036)}"
-18441,24026,GO-20199010252,THEFT UNDER - BICYCLE,2019-03-28T00:00:00,2019,March,Thursday,28,87,0,2019-04-01T00:00:00,2019,April,Monday,1,91,9,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,1,BLK,200.0,STOLEN,18416,"{'type': 'Point', 'coordinates': (-79.42703066, 43.64686138)}"
-18442,24031,GO-20199013994,THEFT UNDER - BICYCLE,2019-02-25T00:00:00,2019,February,Monday,25,56,8,2019-05-05T00:00:00,2019,May,Sunday,5,125,15,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,GI,LIV 2,RG,21,GRY,864.0,STOLEN,18417,"{'type': 'Point', 'coordinates': (-79.42595861, 43.64276527)}"
-18443,24044,GO-20199016724,THEFT UNDER - BICYCLE,2019-05-27T00:00:00,2019,May,Monday,27,147,18,2019-05-29T00:00:00,2019,May,Wednesday,29,149,7,D14,Toronto,84,Little Portugal (84),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,TRAFIK BLUE 700,RG,24,BLU,600.0,STOLEN,18418,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18444,24058,GO-20199020806,THEFT UNDER - BICYCLE,2019-07-03T00:00:00,2019,July,Wednesday,3,184,1,2019-07-03T00:00:00,2019,July,Wednesday,3,184,9,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,NO,,MT,10,WHI,2000.0,STOLEN,18419,"{'type': 'Point', 'coordinates': (-79.42595861, 43.64276527)}"
-18445,24093,GO-20191628276,THEFT OF EBIKE UNDER $5000,2019-08-25T00:00:00,2019,August,Sunday,25,237,12,2019-08-26T00:00:00,2019,August,Monday,26,238,13,D14,Toronto,84,Little Portugal (84),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SOHO,EMMO,EL,12,BLK,2800.0,STOLEN,18420,"{'type': 'Point', 'coordinates': (-79.42475884, 43.64301634)}"
-18446,24099,GO-20199029887,THEFT UNDER - BICYCLE,2019-09-13T00:00:00,2019,September,Friday,13,256,4,2019-09-13T00:00:00,2019,September,Friday,13,256,13,D14,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,SIRRUS MEN SS (,RG,1,BLK,600.0,STOLEN,18421,"{'type': 'Point', 'coordinates': (-79.42627832, 43.648525)}"
-18447,24100,GO-20199029901,THEFT UNDER - BICYCLE,2019-09-13T00:00:00,2019,September,Friday,13,256,14,2019-09-13T00:00:00,2019,September,Friday,13,256,15,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,21,ONG,700.0,STOLEN,18422,"{'type': 'Point', 'coordinates': (-79.42475884, 43.64301634)}"
-18448,24146,GO-20209003203,THEFT UNDER,2020-01-24T00:00:00,2020,January,Friday,24,24,3,2020-01-27T00:00:00,2020,January,Monday,27,27,14,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,1,,40.0,STOLEN,18423,"{'type': 'Point', 'coordinates': (-79.42161579, 43.64147337)}"
-18449,24147,GO-20209003203,THEFT UNDER,2020-01-24T00:00:00,2020,January,Friday,24,24,3,2020-01-27T00:00:00,2020,January,Monday,27,27,14,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,1,,20.0,STOLEN,18424,"{'type': 'Point', 'coordinates': (-79.42161579, 43.64147337)}"
-18450,24148,GO-20209004967,THEFT UNDER,2020-02-08T00:00:00,2020,February,Saturday,8,39,11,2020-02-10T00:00:00,2020,February,Monday,10,41,21,D14,Toronto,84,Little Portugal (84),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,TRICROSS SPORT,TO,27,GRY,1800.0,STOLEN,18425,"{'type': 'Point', 'coordinates': (-79.42744531, 43.65131756)}"
-18451,24153,GO-20209009107,THEFT UNDER,2020-03-13T00:00:00,2020,March,Friday,13,73,23,2020-03-16T00:00:00,2020,March,Monday,16,76,17,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,GI,SEEK 3,OT,8,GRY,700.0,STOLEN,18426,"{'type': 'Point', 'coordinates': (-79.42947477, 43.64875483)}"
-18452,24172,GO-20209013139,THEFT UNDER,2020-05-12T00:00:00,2020,May,Tuesday,12,133,14,2020-05-14T00:00:00,2020,May,Thursday,14,135,16,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,NO,VFR 3,RG,21,RED,650.0,STOLEN,18427,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18453,24316,GO-20189019584,THEFT UNDER - BICYCLE,2018-06-20T00:00:00,2018,June,Wednesday,20,171,20,2018-06-21T00:00:00,2018,June,Thursday,21,172,9,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,GI,2015 LUV ROVE 2,RG,10,BLK,700.0,STOLEN,18428,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18454,24366,GO-20189026696,THEFT UNDER,2018-08-13T00:00:00,2018,August,Monday,13,225,20,2018-08-16T00:00:00,2018,August,Thursday,16,228,17,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,6,BLU,220.0,STOLEN,18429,"{'type': 'Point', 'coordinates': (-79.42475884, 43.64301634)}"
-18455,24380,GO-20189029088,THEFT UNDER - BICYCLE,2018-08-31T00:00:00,2018,August,Friday,31,243,14,2018-09-04T00:00:00,2018,September,Tuesday,4,247,18,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,RM,OXYGEN 30,RC,7,RED,1299.0,STOLEN,18430,"{'type': 'Point', 'coordinates': (-79.42727375, 43.64293316)}"
-18456,24596,GO-20149003306,THEFT UNDER,2014-05-11T00:00:00,2014,May,Sunday,11,131,23,2014-05-12T00:00:00,2014,May,Monday,12,132,16,D14,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FJ,,RC,12,DBL,,STOLEN,18431,"{'type': 'Point', 'coordinates': (-79.42627832, 43.648525)}"
-18457,24632,GO-20142553465,B&E,2014-07-18T00:00:00,2014,July,Friday,18,199,14,2014-07-23T00:00:00,2014,July,Wednesday,23,204,6,D14,Toronto,84,Little Portugal (84),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,AVAIL,RG,21,BLU,2000.0,STOLEN,18432,"{'type': 'Point', 'coordinates': (-79.42310623, 43.64536221)}"
-18458,24655,GO-20149006963,THEFT UNDER,2014-09-13T00:00:00,2014,September,Saturday,13,256,18,2014-09-17T00:00:00,2014,September,Wednesday,17,260,7,D14,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,18,BLU,150.0,STOLEN,18433,"{'type': 'Point', 'coordinates': (-79.4282468, 43.64398334)}"
-18459,15485,GO-2016475027,B&E,2016-02-27T00:00:00,2016,February,Saturday,27,58,0,2016-03-19T00:00:00,2016,March,Saturday,19,79,16,D14,Toronto,85,South Parkdale (85),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,GIANT,2014 ESCAPE 2,OT,24,SIL,600.0,STOLEN,18434,"{'type': 'Point', 'coordinates': (-79.42663898, 43.64122736)}"
-18460,24660,GO-20143041815,THEFT UNDER - SHOPLIFTING,2014-10-04T00:00:00,2014,October,Saturday,4,277,14,2014-10-04T00:00:00,2014,October,Saturday,4,277,15,D14,Toronto,84,Little Portugal (84),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,MT,21,BLKBLU,200.0,STOLEN,18435,"{'type': 'Point', 'coordinates': (-79.42712016, 43.64250955)}"
-18461,24671,GO-20149007687,THEFT UNDER,2014-10-19T00:00:00,2014,October,Sunday,19,292,16,2014-10-19T00:00:00,2014,October,Sunday,19,292,19,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ANDIAMO,RC,24,BRN,899.0,STOLEN,18436,"{'type': 'Point', 'coordinates': (-79.42464271, 43.64593045)}"
-18462,15523,GO-20169007463,THEFT UNDER - BICYCLE,2016-07-18T00:00:00,2016,July,Monday,18,200,12,2016-07-20T00:00:00,2016,July,Wednesday,20,202,11,D14,Toronto,85,South Parkdale (85),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RA,,MT,18,BRN,350.0,STOLEN,18437,"{'type': 'Point', 'coordinates': (-79.42097315, 43.63947205000001)}"
-18463,15524,GO-20169007554,THEFT UNDER - BICYCLE,2016-07-20T00:00:00,2016,July,Wednesday,20,202,19,2016-07-21T00:00:00,2016,July,Thursday,21,203,13,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,ROCKHOPPER,MT,27,RED,800.0,STOLEN,18438,"{'type': 'Point', 'coordinates': (-79.42351373, 43.63972239)}"
-18464,12075,GO-20169008661,THEFT UNDER,2016-08-12T00:00:00,2016,August,Friday,12,225,17,2016-08-13T00:00:00,2016,August,Saturday,13,226,1,D11,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,OT,,SC,30,RED,1500.0,STOLEN,18439,"{'type': 'Point', 'coordinates': (-79.43969187, 43.65016839)}"
-18465,15532,GO-20169008271,B&E,2016-08-05T00:00:00,2016,August,Friday,5,218,16,2016-08-05T00:00:00,2016,August,Friday,5,218,16,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,FJ,ROUBAIX 3.0,RC,18,BLU,1400.0,STOLEN,18440,"{'type': 'Point', 'coordinates': (-79.42663898, 43.64122736)}"
-18466,15544,GO-20169009390,THEFT UNDER - BICYCLE,2016-07-28T00:00:00,2016,July,Thursday,28,210,18,2016-08-23T00:00:00,2016,August,Tuesday,23,236,23,D14,Toronto,85,South Parkdale (85),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,3500,MT,21,GRN,0.0,STOLEN,18441,"{'type': 'Point', 'coordinates': (-79.42529763, 43.63734542)}"
-18467,12177,GO-20169009263,THEFT UNDER - BICYCLE,2016-08-20T00:00:00,2016,August,Saturday,20,233,19,2016-08-20T00:00:00,2016,August,Saturday,20,233,21,D11,Toronto,83,Dufferin Grove (83),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SIRRUS ELITE DI,RG,18,RED,1298.0,STOLEN,18442,"{'type': 'Point', 'coordinates': (-79.43699471, 43.65521452000001)}"
-18468,24672,GO-20149007776,THEFT UNDER,2014-10-22T00:00:00,2014,October,Wednesday,22,295,12,2014-10-23T00:00:00,2014,October,Thursday,23,296,12,D14,Toronto,84,Little Portugal (84),"Private Property Structure (Pool, Shed, Detached Garage)",Other,FJ,FEATHER,RC,1,RED,1030.0,STOLEN,18443,"{'type': 'Point', 'coordinates': (-79.42812551000002, 43.64522772)}"
-18469,21640,GO-2016663082,THEFT UNDER,2016-04-18T00:00:00,2016,April,Monday,18,109,17,2016-04-18T00:00:00,2016,April,Monday,18,109,19,D11,Toronto,83,Dufferin Grove (83),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,TACHYON 3.0,OT,24,DBLYEL,650.0,STOLEN,18444,"{'type': 'Point', 'coordinates': (-79.43699471, 43.65521452000001)}"
-18470,15584,GO-20169011225,THEFT UNDER,2016-09-26T00:00:00,2016,September,Monday,26,270,9,2016-09-28T00:00:00,2016,September,Wednesday,28,272,10,D14,Toronto,85,South Parkdale (85),Schools During Un-Supervised Activity,Educational,OT,,RG,7,BLK,475.0,STOLEN,18445,"{'type': 'Point', 'coordinates': (-79.43689219, 43.63960265000001)}"
-18471,12202,GO-20169009504,THEFT UNDER - BICYCLE,2016-08-22T00:00:00,2016,August,Monday,22,235,20,2016-08-27T00:00:00,2016,August,Saturday,27,240,1,D11,Toronto,83,Dufferin Grove (83),Unknown,Other,UK,,MT,1,GRN,140.0,STOLEN,18446,"{'type': 'Point', 'coordinates': (-79.43699471, 43.65521452000001)}"
-18472,24673,GO-20149007975,THEFT UNDER,2014-10-30T00:00:00,2014,October,Thursday,30,303,20,2014-11-03T00:00:00,2014,November,Monday,3,307,11,D14,Toronto,84,Little Portugal (84),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,OMNIUM,RC,1,WHI,600.0,STOLEN,18447,"{'type': 'Point', 'coordinates': (-79.42727375, 43.64293316)}"
-18473,3024,GO-20189024487,THEFT UNDER,2018-07-30T00:00:00,2018,July,Monday,30,211,8,2018-07-30T00:00:00,2018,July,Monday,30,211,11,D14,Toronto,84,Little Portugal (84),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RG,1,WHI,550.0,STOLEN,18448,"{'type': 'Point', 'coordinates': (-79.42475884, 43.64301634)}"
-18474,3251,GO-20189026996,THEFT UNDER - BICYCLE,2018-08-18T00:00:00,2018,August,Saturday,18,230,15,2018-08-19T00:00:00,2018,August,Sunday,19,231,12,D14,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,SANTA MONICA,OT,21,,0.0,STOLEN,18449,"{'type': 'Point', 'coordinates': (-79.43474092, 43.65834618000001)}"
-18475,21644,GO-20169006204,THEFT UNDER - BICYCLE,2016-06-20T00:00:00,2016,June,Monday,20,172,8,2016-06-22T00:00:00,2016,June,Wednesday,22,174,11,D11,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,VALENCIA / DEVI,OT,8,RED,530.0,STOLEN,18450,"{'type': 'Point', 'coordinates': (-79.43631792, 43.65181328)}"
-18476,15611,GO-2017973226,THEFT UNDER - BICYCLE,2017-06-01T00:00:00,2017,June,Thursday,1,152,23,2017-06-01T00:00:00,2017,June,Thursday,1,152,23,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,GIANT,BOWERY,MT,1,WHIBLK,1200.0,STOLEN,18451,"{'type': 'Point', 'coordinates': (-79.43474242, 43.63395219)}"
-18477,12431,GO-20161692541,THEFT UNDER - BICYCLE,2016-09-23T00:00:00,2016,September,Friday,23,267,3,2016-09-23T00:00:00,2016,September,Friday,23,267,8,D14,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,PIERFIX,RG,10,REDWHI,700.0,STOLEN,18452,"{'type': 'Point', 'coordinates': (-79.42912178, 43.65581318)}"
-18478,24677,GO-20149008563,THEFT UNDER,2014-11-28T00:00:00,2014,November,Friday,28,332,18,2014-12-05T00:00:00,2014,December,Friday,5,339,17,D14,Toronto,84,Little Portugal (84),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SC,CRUISER,RG,6,BLK,700.0,STOLEN,18453,"{'type': 'Point', 'coordinates': (-79.42703066, 43.64686138)}"
-18479,3038,GO-20189024703,THEFT UNDER - BICYCLE,2018-07-29T00:00:00,2018,July,Sunday,29,210,1,2018-07-31T00:00:00,2018,July,Tuesday,31,212,17,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,PRONTO,OT,7,BLU,1000.0,STOLEN,18454,"{'type': 'Point', 'coordinates': (-79.42978953, 43.64958423)}"
-18480,3433,GO-20189029816,THEFT UNDER - BICYCLE,2018-09-09T00:00:00,2018,September,Sunday,9,252,4,2018-09-10T00:00:00,2018,September,Monday,10,253,13,D11,Toronto,83,Dufferin Grove (83),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SU,,RG,5,GRY,0.0,STOLEN,18455,"{'type': 'Point', 'coordinates': (-79.44110312, 43.65385066)}"
-18481,3434,GO-20189029816,THEFT UNDER - BICYCLE,2018-09-09T00:00:00,2018,September,Sunday,9,252,4,2018-09-10T00:00:00,2018,September,Monday,10,253,13,D11,Toronto,83,Dufferin Grove (83),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CC,,OT,1,GRN,0.0,STOLEN,18456,"{'type': 'Point', 'coordinates': (-79.44110312, 43.65385066)}"
-18482,3787,GO-20189036157,THEFT UNDER - BICYCLE,2018-10-24T00:00:00,2018,October,Wednesday,24,297,21,2018-10-29T00:00:00,2018,October,Monday,29,302,21,D11,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SOLOIST,RG,1,BLK,1000.0,STOLEN,18457,"{'type': 'Point', 'coordinates': (-79.44110312, 43.65385066)}"
-18483,3848,GO-20189038045,THEFT UNDER - BICYCLE,2018-11-13T00:00:00,2018,November,Tuesday,13,317,4,2018-11-13T00:00:00,2018,November,Tuesday,13,317,14,D14,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,VFR 3,RG,7,BLU,600.0,STOLEN,18458,"{'type': 'Point', 'coordinates': (-79.42739759, 43.65617153)}"
-18484,3876,GO-20189038789,THEFT UNDER,2018-11-14T00:00:00,2018,November,Wednesday,14,318,21,2018-11-19T00:00:00,2018,November,Monday,19,323,12,D11,Toronto,83,Dufferin Grove (83),Schools During Un-Supervised Activity,Educational,OT,AURORA 2014,TO,27,BLK,1500.0,STOLEN,18459,"{'type': 'Point', 'coordinates': (-79.43640202, 43.65965002)}"
-18485,3913,GO-20189040492,THEFT UNDER,2018-12-01T00:00:00,2018,December,Saturday,1,335,10,2018-12-01T00:00:00,2018,December,Saturday,1,335,11,D14,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,UK,FELT,RG,8,BLK,600.0,STOLEN,18460,"{'type': 'Point', 'coordinates': (-79.43153203000001, 43.65834169)}"
-18486,4082,GO-20199007727,THEFT UNDER - BICYCLE,2019-03-08T00:00:00,2019,March,Friday,8,67,20,2019-03-09T00:00:00,2019,March,Saturday,9,68,12,D11,Toronto,83,Dufferin Grove (83),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,MARLIN 7,MT,27,BLK,1000.0,STOLEN,18461,"{'type': 'Point', 'coordinates': (-79.44630541000001, 43.65520331)}"
-18487,4126,GO-20199010511,THEFT UNDER - BICYCLE,2019-03-27T00:00:00,2019,March,Wednesday,27,86,9,2019-04-03T00:00:00,2019,April,Wednesday,3,93,14,D14,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,MA,,OT,21,BLK,0.0,STOLEN,18462,"{'type': 'Point', 'coordinates': (-79.42814667, 43.65322723)}"
-18488,4349,GO-20199016346,THEFT UNDER - BICYCLE,2019-05-25T00:00:00,2019,May,Saturday,25,145,23,2019-05-26T00:00:00,2019,May,Sunday,26,146,14,D14,Toronto,83,Dufferin Grove (83),"Open Areas (Lakes, Parks, Rivers)",Outside,NO,VICTORY TRI-A,RC,12,GRY,800.0,STOLEN,18463,"{'type': 'Point', 'coordinates': (-79.43131207, 43.65773638)}"
-18489,4467,GO-20199018360,THEFT UNDER - BICYCLE,2019-06-09T00:00:00,2019,June,Sunday,9,160,0,2019-06-12T00:00:00,2019,June,Wednesday,12,163,18,D14,Toronto,83,Dufferin Grove (83),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,VINTAGE ROAD BI,RC,21,LBL,400.0,STOLEN,18464,"{'type': 'Point', 'coordinates': (-79.43153203000001, 43.65834169)}"
-18490,4557,GO-20199019388,THEFT UNDER,2019-06-16T00:00:00,2019,June,Sunday,16,167,5,2019-06-20T00:00:00,2019,June,Thursday,20,171,13,D11,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,2017 VFR 5,RG,24,BLK,600.0,STOLEN,18465,"{'type': 'Point', 'coordinates': (-79.4375771, 43.65508991)}"
-18491,4837,GO-20191382309,B&E W'INTENT,2019-07-17T00:00:00,2019,July,Wednesday,17,198,8,2019-07-23T00:00:00,2019,July,Tuesday,23,204,10,D14,Toronto,83,Dufferin Grove (83),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,,RC,1,BLK,,STOLEN,18467,"{'type': 'Point', 'coordinates': (-79.42814667, 43.65322723)}"
-18492,4858,GO-20191390323,B&E W'INTENT,2019-07-23T00:00:00,2019,July,Tuesday,23,204,22,2019-07-24T00:00:00,2019,July,Wednesday,24,205,12,D11,Toronto,83,Dufferin Grove (83),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,ROCK HOPPER,MT,21,MRN,1000.0,STOLEN,18468,"{'type': 'Point', 'coordinates': (-79.43695396, 43.65347847)}"
-18493,4887,GO-20191381614,THEFT FROM MOTOR VEHICLE UNDER,2019-07-22T00:00:00,2019,July,Monday,22,203,21,2019-07-23T00:00:00,2019,July,Tuesday,23,204,8,D14,Toronto,83,Dufferin Grove (83),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RALEIGH,ROPER,MT,8,,1100.0,STOLEN,18469,"{'type': 'Point', 'coordinates': (-79.42814667, 43.65322723)}"
-18494,4930,GO-20199024375,THEFT UNDER,2019-07-29T00:00:00,2019,July,Monday,29,210,8,2019-07-30T00:00:00,2019,July,Tuesday,30,211,11,D11,Toronto,83,Dufferin Grove (83),Schools During Un-Supervised Activity,Educational,GI,"XTC 24""""",MT,21,BLU,300.0,STOLEN,18470,"{'type': 'Point', 'coordinates': (-79.43695396, 43.65347847)}"
-18495,5133,GO-20191600386,B&E,2019-05-05T00:00:00,2019,May,Sunday,5,125,8,2019-08-22T00:00:00,2019,August,Thursday,22,234,14,D14,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,,OT,15,BLU,1500.0,STOLEN,18471,"{'type': 'Point', 'coordinates': (-79.43131207, 43.65773638)}"
-18496,5134,GO-20191600386,B&E,2019-05-05T00:00:00,2019,May,Sunday,5,125,8,2019-08-22T00:00:00,2019,August,Thursday,22,234,14,D14,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FELT,F95 TEAM,RC,18,GRY,1500.0,STOLEN,18472,"{'type': 'Point', 'coordinates': (-79.43131207, 43.65773638)}"
-18497,5150,GO-20199027523,THEFT UNDER,2019-08-23T00:00:00,2019,August,Friday,23,235,20,2019-08-24T00:00:00,2019,August,Saturday,24,236,14,D14,Toronto,83,Dufferin Grove (83),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,,RC,27,RED,2000.0,STOLEN,18473,"{'type': 'Point', 'coordinates': (-79.42814667, 43.65322723)}"
-18498,5455,GO-20191899549,ROBBERY - OTHER,2019-10-02T00:00:00,2019,October,Wednesday,2,275,17,2019-10-02T00:00:00,2019,October,Wednesday,2,275,17,D14,Toronto,83,Dufferin Grove (83),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,ESCAPE 2,RG,24,BLUONG,600.0,STOLEN,18474,"{'type': 'Point', 'coordinates': (-79.42739759, 43.65617153)}"
-18499,5628,GO-20199036000,THEFT UNDER - BICYCLE,2019-10-31T00:00:00,2019,October,Thursday,31,304,6,2019-10-31T00:00:00,2019,October,Thursday,31,304,18,D14,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,SCENE,RG,9,BLK,800.0,STOLEN,18475,"{'type': 'Point', 'coordinates': (-79.43379598, 43.66018604)}"
-18500,5632,GO-20192119516,THEFT UNDER - BICYCLE,2019-10-31T00:00:00,2019,October,Thursday,31,304,15,2019-11-02T00:00:00,2019,November,Saturday,2,306,16,D14,Toronto,83,Dufferin Grove (83),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,,MT,21,PLEBLU,600.0,STOLEN,18476,"{'type': 'Point', 'coordinates': (-79.43024148, 43.65862882)}"
-18501,5673,GO-20192175455,B&E W'INTENT,2019-11-09T00:00:00,2019,November,Saturday,9,313,20,2019-11-10T00:00:00,2019,November,Sunday,10,314,20,D11,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,VITUS,979,RC,14,SIL,700.0,STOLEN,18477,"{'type': 'Point', 'coordinates': (-79.44271, 43.65488005)}"
-18502,5707,GO-20199037981,THEFT UNDER,2019-11-14T00:00:00,2019,November,Thursday,14,318,19,2019-11-18T00:00:00,2019,November,Monday,18,322,19,D14,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,OT,HARD ROCK,MT,21,BLK,600.0,STOLEN,18478,"{'type': 'Point', 'coordinates': (-79.43427392, 43.65712246)}"
-18503,5768,GO-20199041145,THEFT UNDER,2019-12-13T00:00:00,2019,December,Friday,13,347,2,2019-12-16T00:00:00,2019,December,Monday,16,350,16,D11,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,,OT,12,RED,300.0,STOLEN,18479,"{'type': 'Point', 'coordinates': (-79.44034951, 43.65885852)}"
-18504,5773,GO-20199041530,THEFT UNDER,2019-12-19T00:00:00,2019,December,Thursday,19,353,23,2019-12-20T00:00:00,2019,December,Friday,20,354,10,D11,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,OT,SINGLE SPEED,RG,1,WHI,500.0,STOLEN,18480,"{'type': 'Point', 'coordinates': (-79.4401546, 43.65143188)}"
-18505,5831,GO-2020101157,THEFT UNDER - BICYCLE,2020-01-15T00:00:00,2020,January,Wednesday,15,15,13,2020-01-15T00:00:00,2020,January,Wednesday,15,15,15,D11,Toronto,83,Dufferin Grove (83),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,EMMO,,EL,1,BLK,1920.0,STOLEN,18481,"{'type': 'Point', 'coordinates': (-79.43699471, 43.65521452000001)}"
-18506,5926,GO-2020393042,THEFT OF EBIKE UNDER $5000,2020-02-24T00:00:00,2020,February,Monday,24,55,14,2020-02-24T00:00:00,2020,February,Monday,24,55,17,D11,Toronto,83,Dufferin Grove (83),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,AMEGO,NCM MOSCOW,EL,1,BLUWHI,1700.0,STOLEN,18482,"{'type': 'Point', 'coordinates': (-79.43699471, 43.65521452000001)}"
-18507,5996,GO-20209010027,THEFT UNDER,2020-03-27T00:00:00,2020,March,Friday,27,87,21,2020-03-28T00:00:00,2020,March,Saturday,28,88,12,D11,Toronto,83,Dufferin Grove (83),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,1,PLE,500.0,STOLEN,18483,"{'type': 'Point', 'coordinates': (-79.44271, 43.65488005)}"
-18508,6040,GO-20209010751,THEFT UNDER,2020-04-01T00:00:00,2020,April,Wednesday,1,92,8,2020-04-08T00:00:00,2020,April,Wednesday,8,99,21,D11,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,10,,1000.0,STOLEN,18484,"{'type': 'Point', 'coordinates': (-79.44689484, 43.65747686)}"
-18509,6079,GO-20209011497,THEFT UNDER,2020-04-19T00:00:00,2020,April,Sunday,19,110,13,2020-04-19T00:00:00,2020,April,Sunday,19,110,14,D14,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,URBANA S2C HYBR,RG,21,GRY,750.0,STOLEN,18485,"{'type': 'Point', 'coordinates': (-79.42989538, 43.654218310000005)}"
-18510,6658,GO-20201340145,THEFT UNDER,2020-07-18T00:00:00,2020,July,Saturday,18,200,22,2020-07-19T00:00:00,2020,July,Sunday,19,201,9,D14,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,AQUILA,,RG,18,,930.0,STOLEN,18486,"{'type': 'Point', 'coordinates': (-79.43379598, 43.66018604)}"
-18511,6659,GO-20201340145,THEFT UNDER,2020-07-18T00:00:00,2020,July,Saturday,18,200,22,2020-07-19T00:00:00,2020,July,Sunday,19,201,9,D14,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,MULTI TRACK,RG,10,PLERED,500.0,STOLEN,18487,"{'type': 'Point', 'coordinates': (-79.43379598, 43.66018604)}"
-18512,6802,GO-20209018877,THEFT UNDER,2020-07-28T00:00:00,2020,July,Tuesday,28,210,20,2020-07-29T00:00:00,2020,July,Wednesday,29,211,12,D11,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,URBANISTA,RG,21,CRM,500.0,STOLEN,18488,"{'type': 'Point', 'coordinates': (-79.44630541000001, 43.65520331)}"
-18513,6804,GO-20209018895,THEFT UNDER,2020-07-29T00:00:00,2020,July,Wednesday,29,211,12,2020-07-29T00:00:00,2020,July,Wednesday,29,211,15,D14,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,TR,MARLIN,MT,21,BLK,768.0,STOLEN,18489,"{'type': 'Point', 'coordinates': (-79.42852157, 43.65896544000001)}"
-18514,6809,GO-20209018929,THEFT UNDER,2020-07-29T00:00:00,2020,July,Wednesday,29,211,7,2020-07-29T00:00:00,2020,July,Wednesday,29,211,19,D11,Toronto,83,Dufferin Grove (83),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,,ECLIPSE,RG,21,WHI,600.0,STOLEN,18490,"{'type': 'Point', 'coordinates': (-79.44395755, 43.65808981)}"
-18515,6895,GO-20209019609,THEFT UNDER,2020-08-07T00:00:00,2020,August,Friday,7,220,2,2020-08-07T00:00:00,2020,August,Friday,7,220,10,D11,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,KONA DEW,RG,8,GLD,400.0,STOLEN,18491,"{'type': 'Point', 'coordinates': (-79.44169537000002, 43.65856157)}"
-18516,6954,GO-20201522565,B&E,2020-08-13T00:00:00,2020,August,Thursday,13,226,22,2020-08-14T00:00:00,2020,August,Friday,14,227,10,D11,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,,RC,21,WHITRQ,800.0,STOLEN,18492,"{'type': 'Point', 'coordinates': (-79.44110312, 43.65385066)}"
-18517,7000,GO-20209020599,THEFT UNDER,2020-08-18T00:00:00,2020,August,Tuesday,18,231,15,2020-08-18T00:00:00,2020,August,Tuesday,18,231,17,D11,Toronto,83,Dufferin Grove (83),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,FELT FR40,RC,14,BLK,1356.0,STOLEN,18493,"{'type': 'Point', 'coordinates': (-79.44395755, 43.65808981)}"
-18518,7292,GO-20209023799,THEFT UNDER,2020-09-18T00:00:00,2020,September,Friday,18,262,15,2020-09-18T00:00:00,2020,September,Friday,18,262,18,D11,Toronto,83,Dufferin Grove (83),Schools During Supervised Activity,Educational,UK,,OT,1,LGR,225.0,STOLEN,18494,"{'type': 'Point', 'coordinates': (-79.43631792, 43.65181328)}"
-18519,7498,GO-20201979581,B&E,2020-10-18T00:00:00,2020,October,Sunday,18,292,20,2020-10-18T00:00:00,2020,October,Sunday,18,292,20,D11,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,TO,8,BLUWHI,1200.0,STOLEN,18495,"{'type': 'Point', 'coordinates': (-79.44034951, 43.65885852)}"
-18520,7505,GO-20201959752,THEFT OF EBIKE UNDER $5000,2020-10-11T00:00:00,2020,October,Sunday,11,285,21,2020-10-15T00:00:00,2020,October,Thursday,15,289,17,D11,Toronto,83,Dufferin Grove (83),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,URBAN T,EL,0,BLK,3000.0,STOLEN,18496,"{'type': 'Point', 'coordinates': (-79.43699471, 43.65521452000001)}"
-18521,7709,GO-20209032419,THEFT UNDER,2020-12-19T00:00:00,2020,December,Saturday,19,354,0,2020-12-19T00:00:00,2020,December,Saturday,19,354,14,D14,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,TR,,RG,9,BLK,950.0,STOLEN,18497,"{'type': 'Point', 'coordinates': (-79.42739759, 43.65617153)}"
-18522,7825,GO-20149002656,THEFT UNDER,2014-04-09T00:00:00,2014,April,Wednesday,9,99,13,2014-04-09T00:00:00,2014,April,Wednesday,9,99,16,D11,Toronto,83,Dufferin Grove (83),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,DUTCH LOTTERY,OT,1,WHI,350.0,STOLEN,18498,"{'type': 'Point', 'coordinates': (-79.43854185, 43.65758566)}"
-18523,7836,GO-20149002830,THEFT UNDER,2014-04-13T00:00:00,2014,April,Sunday,13,103,22,2014-04-14T00:00:00,2014,April,Monday,14,104,10,D14,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MA,BEAR VALLEY,MT,21,BLK,500.0,STOLEN,18499,"{'type': 'Point', 'coordinates': (-79.43024148, 43.65862882)}"
-18524,7869,GO-20141963213,THEFT UNDER,2014-04-26T00:00:00,2014,April,Saturday,26,116,10,2014-04-28T00:00:00,2014,April,Monday,28,118,13,D11,Toronto,83,Dufferin Grove (83),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,FUJI,,OT,1,BLK,800.0,STOLEN,18500,"{'type': 'Point', 'coordinates': (-79.43699471, 43.65521452000001)}"
-18525,7903,GO-20142051227,THEFT UNDER,2014-02-19T00:00:00,2014,February,Wednesday,19,50,19,2014-05-10T00:00:00,2014,May,Saturday,10,130,12,D14,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,,MT,18,GRN,700.0,STOLEN,18501,"{'type': 'Point', 'coordinates': (-79.42989538, 43.654218310000005)}"
-18526,7904,GO-20142051227,THEFT UNDER,2014-02-19T00:00:00,2014,February,Wednesday,19,50,19,2014-05-10T00:00:00,2014,May,Saturday,10,130,12,D14,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MARIN OR MARINO,PORTOFINO,RC,18,GRY,700.0,STOLEN,18502,"{'type': 'Point', 'coordinates': (-79.42989538, 43.654218310000005)}"
-18527,8094,GO-20142257115,THEFT UNDER,2014-06-09T00:00:00,2014,June,Monday,9,160,18,2014-06-09T00:00:00,2014,June,Monday,9,160,21,D11,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,21,BRNGLD,400.0,STOLEN,18503,"{'type': 'Point', 'coordinates': (-79.4360548, 43.65112513)}"
-18528,8238,GO-20149004402,THEFT UNDER,2014-06-24T00:00:00,2014,June,Tuesday,24,175,16,2014-06-25T00:00:00,2014,June,Wednesday,25,176,8,D11,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MA,,RC,1,BLK,600.0,STOLEN,18504,"{'type': 'Point', 'coordinates': (-79.44875694, 43.65707932)}"
-18529,8396,GO-20149004913,THEFT UNDER,2014-07-10T00:00:00,2014,July,Thursday,10,191,18,2014-07-11T00:00:00,2014,July,Friday,11,192,15,D14,Toronto,83,Dufferin Grove (83),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,3,RED,,STOLEN,18505,"{'type': 'Point', 'coordinates': (-79.42636436, 43.65360014)}"
-18530,8468,GO-20142544504,B&E,2014-07-18T00:00:00,2014,July,Friday,18,199,23,2014-07-22T00:00:00,2014,July,Tuesday,22,203,14,D14,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ROSSIN,ZENITH,RG,9,SILRED,700.0,STOLEN,18506,"{'type': 'Point', 'coordinates': (-79.43142602, 43.65390623)}"
-18531,8592,GO-20149005649,THEFT UNDER,2014-08-05T00:00:00,2014,August,Tuesday,5,217,12,2014-08-05T00:00:00,2014,August,Tuesday,5,217,16,D14,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,FIXED UNO RISE,RC,20,BLK,690.0,STOLEN,18507,"{'type': 'Point', 'coordinates': (-79.42912178, 43.65581318)}"
-18532,8674,GO-20142731194,THEFT UNDER,2014-08-14T00:00:00,2014,August,Thursday,14,226,16,2014-08-19T00:00:00,2014,August,Tuesday,19,231,8,D11,Toronto,83,Dufferin Grove (83),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,GEO,EL,1,BLK,650.0,STOLEN,18508,"{'type': 'Point', 'coordinates': (-79.44070806, 43.65878182)}"
-18533,8678,GO-20149006011,THEFT UNDER,2014-07-29T00:00:00,2014,July,Tuesday,29,210,0,2014-08-16T00:00:00,2014,August,Saturday,16,228,11,D11,Toronto,83,Dufferin Grove (83),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EM,THE ALIEN,EL,32,PLE,500.0,STOLEN,18509,"{'type': 'Point', 'coordinates': (-79.44395755, 43.65808981)}"
-18534,8870,GO-20149006794,THEFT UNDER,2014-09-09T00:00:00,2014,September,Tuesday,9,252,12,2014-09-11T00:00:00,2014,September,Thursday,11,254,12,D11,Toronto,83,Dufferin Grove (83),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,AMSTERDAM SPORT,OT,3,BRN,600.0,STOLEN,18510,"{'type': 'Point', 'coordinates': (-79.44298987, 43.65560387)}"
-18535,8935,GO-20142948323,THEFT UNDER,2014-09-14T00:00:00,2014,September,Sunday,14,257,19,2014-09-20T00:00:00,2014,September,Saturday,20,263,15,D14,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,GROUND CONTROL,MT,24,WHI,1500.0,STOLEN,18511,"{'type': 'Point', 'coordinates': (-79.42912178, 43.65581318)}"
-18536,9383,GO-2015591732,THEFT UNDER,2015-04-06T00:00:00,2015,April,Monday,6,96,20,2015-04-10T00:00:00,2015,April,Friday,10,100,12,D11,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,EMMO,TORINO,EL,0,RED,1000.0,STOLEN,18512,"{'type': 'Point', 'coordinates': (-79.43863138, 43.6592125)}"
-18537,9497,GO-20159002365,THEFT UNDER,2015-04-30T00:00:00,2015,April,Thursday,30,120,20,2015-05-01T00:00:00,2015,May,Friday,1,121,0,D11,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,GRAND PRIX (197,RC,11,BLK,500.0,STOLEN,18513,"{'type': 'Point', 'coordinates': (-79.4401546, 43.65143188)}"
-18538,9584,GO-20159002739,THEFT UNDER,2015-05-13T00:00:00,2015,May,Wednesday,13,133,23,2015-05-14T00:00:00,2015,May,Thursday,14,134,18,D11,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KLEIN,Q CARBON,RC,18,BLU,2000.0,STOLEN,18514,"{'type': 'Point', 'coordinates': (-79.43755083, 43.65157476)}"
-18539,9585,GO-20159002739,THEFT UNDER,2015-05-13T00:00:00,2015,May,Wednesday,13,133,23,2015-05-14T00:00:00,2015,May,Thursday,14,134,18,D11,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,HYBRED,RG,10,,,STOLEN,18515,"{'type': 'Point', 'coordinates': (-79.43755083, 43.65157476)}"
-18540,9805,GO-20159003619,THEFT UNDER,2015-06-13T00:00:00,2015,June,Saturday,13,164,14,2015-06-14T00:00:00,2015,June,Sunday,14,165,14,D14,Toronto,83,Dufferin Grove (83),Bar / Restaurant,Commercial,NO,HEART,OT,1,BLK,565.0,STOLEN,18516,"{'type': 'Point', 'coordinates': (-79.42814667, 43.65322723)}"
-18541,9927,GO-20151115071,THEFT UNDER,2015-07-02T00:00:00,2015,July,Thursday,2,183,8,2015-07-02T00:00:00,2015,July,Thursday,2,183,18,D11,Toronto,83,Dufferin Grove (83),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,210-FS,RG,21,RED,300.0,STOLEN,18517,"{'type': 'Point', 'coordinates': (-79.43863138, 43.6592125)}"
-18542,9945,GO-20151129033,THEFT UNDER,2015-03-01T00:00:00,2015,March,Sunday,1,60,0,2015-07-04T00:00:00,2015,July,Saturday,4,185,20,D11,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,PRO,TECH,RG,12,BLKPLE,800.0,STOLEN,18518,"{'type': 'Point', 'coordinates': (-79.43755083, 43.65157476)}"
-18543,10065,GO-20151234970,THEFT UNDER,2015-07-20T00:00:00,2015,July,Monday,20,201,12,2015-07-20T00:00:00,2015,July,Monday,20,201,12,D11,Toronto,83,Dufferin Grove (83),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,HYBRID,OT,21,BLKGRY,850.0,STOLEN,18519,"{'type': 'Point', 'coordinates': (-79.44269466, 43.65833851)}"
-18544,10083,GO-20159004893,THEFT UNDER,2015-07-23T00:00:00,2015,July,Thursday,23,204,3,2015-07-23T00:00:00,2015,July,Thursday,23,204,12,D11,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,DEW,RG,18,PLE,800.0,STOLEN,18520,"{'type': 'Point', 'coordinates': (-79.43631792, 43.65181328)}"
-18545,10092,GO-20159004953,THEFT UNDER,2015-07-24T00:00:00,2015,July,Friday,24,205,17,2015-07-24T00:00:00,2015,July,Friday,24,205,17,D11,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,DEW PLUS,RG,18,GRN,666.0,STOLEN,18521,"{'type': 'Point', 'coordinates': (-79.44298987, 43.65560387)}"
-18546,10099,GO-20159004974,THEFT UNDER,2015-07-25T00:00:00,2015,July,Saturday,25,206,16,2015-07-25T00:00:00,2015,July,Saturday,25,206,21,D11,Toronto,83,Dufferin Grove (83),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,WOMEN URBANIA S,RG,7,WHI,470.0,STOLEN,18522,"{'type': 'Point', 'coordinates': (-79.44689484, 43.65747686)}"
-18547,10155,GO-20159005204,THEFT UNDER,2015-07-30T00:00:00,2015,July,Thursday,30,211,20,2015-07-31T00:00:00,2015,July,Friday,31,212,13,D11,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,ESCAPE 2 XL FRA,RG,8,BLK,499.0,STOLEN,18523,"{'type': 'Point', 'coordinates': (-79.43755083, 43.65157476)}"
-18548,10317,GO-20159006116,THEFT UNDER,2015-08-15T00:00:00,2015,August,Saturday,15,227,12,2015-08-21T00:00:00,2015,August,Friday,21,233,12,D14,Toronto,83,Dufferin Grove (83),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KO,DEW,OT,12,BLK,550.0,STOLEN,18524,"{'type': 'Point', 'coordinates': (-79.43292959, 43.65360256)}"
-18549,10392,GO-20159006680,THEFT UNDER,2015-09-02T00:00:00,2015,September,Wednesday,2,245,21,2015-09-03T00:00:00,2015,September,Thursday,3,246,11,D11,Toronto,83,Dufferin Grove (83),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,7,BLK,400.0,STOLEN,18525,"{'type': 'Point', 'coordinates': (-79.44269466, 43.65833851)}"
-18550,10394,GO-20151545606,THEFT UNDER,2015-09-03T00:00:00,2015,September,Thursday,3,246,10,2015-09-07T00:00:00,2015,September,Monday,7,250,16,D11,Toronto,83,Dufferin Grove (83),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN,UNKNOWN,EL,1,BLKRED,1600.0,STOLEN,18526,"{'type': 'Point', 'coordinates': (-79.43699471, 43.65521452000001)}"
-18551,10439,GO-20151575768,THEFT UNDER,2015-09-04T00:00:00,2015,September,Friday,4,247,17,2015-09-12T00:00:00,2015,September,Saturday,12,255,9,D11,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,BIANCHI,,MT,21,BLK,752.0,STOLEN,18527,"{'type': 'Point', 'coordinates': (-79.43854185, 43.65758566)}"
-18552,10546,GO-20151669926,B&E,2015-09-07T00:00:00,2015,September,Monday,7,250,12,2015-09-27T00:00:00,2015,September,Sunday,27,270,11,D14,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KHS,,RG,12,DGRLBL,,STOLEN,18528,"{'type': 'Point', 'coordinates': (-79.42989538, 43.654218310000005)}"
-18553,10604,GO-20151733781,THEFT UNDER,2015-10-07T00:00:00,2015,October,Wednesday,7,280,21,2015-10-07T00:00:00,2015,October,Wednesday,7,280,21,D11,Toronto,83,Dufferin Grove (83),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SELT,,OT,1,BLUOTH,,STOLEN,18529,"{'type': 'Point', 'coordinates': (-79.43252260000001, 43.65256886)}"
-18554,10605,GO-20151733781,THEFT UNDER,2015-10-07T00:00:00,2015,October,Wednesday,7,280,21,2015-10-07T00:00:00,2015,October,Wednesday,7,280,21,D11,Toronto,83,Dufferin Grove (83),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNK,,RC,0,ONG,,STOLEN,18530,"{'type': 'Point', 'coordinates': (-79.43252260000001, 43.65256886)}"
-18555,10615,GO-20159008422,THEFT UNDER,2015-10-08T00:00:00,2015,October,Thursday,8,281,14,2015-10-11T00:00:00,2015,October,Sunday,11,284,14,D14,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,703 ELEGENCE,RG,24,SIL,500.0,STOLEN,18531,"{'type': 'Point', 'coordinates': (-79.43474092, 43.65834618000001)}"
-18556,10651,GO-20159008697,THEFT UNDER,2015-10-18T00:00:00,2015,October,Sunday,18,291,2,2015-10-18T00:00:00,2015,October,Sunday,18,291,2,D11,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,10,YEL,0.0,STOLEN,18532,"{'type': 'Point', 'coordinates': (-79.4351794, 43.65383192)}"
-18557,10670,GO-20159008861,THEFT UNDER,2015-10-21T00:00:00,2015,October,Wednesday,21,294,22,2015-10-21T00:00:00,2015,October,Wednesday,21,294,22,D14,Toronto,83,Dufferin Grove (83),Schools During Supervised Activity,Educational,UK,WHITE,EL,60,WHI,1599.0,STOLEN,18533,"{'type': 'Point', 'coordinates': (-79.43427392, 43.65712246)}"
-18558,10850,GO-20159010683,THEFT UNDER,2015-09-14T00:00:00,2015,September,Monday,14,257,16,2015-09-15T00:00:00,2015,September,Tuesday,15,258,20,D11,Toronto,83,Dufferin Grove (83),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,DEVINCI,STEP THROUGH,RG,21,RED,400.0,STOLEN,18534,"{'type': 'Point', 'coordinates': (-79.43454496, 43.65214721)}"
-18559,10917,GO-20169000270,THEFT UNDER,2016-01-08T00:00:00,2016,January,Friday,8,8,8,2016-01-09T00:00:00,2016,January,Saturday,9,9,16,D11,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,PINSCHER,MT,1,DGR,1000.0,STOLEN,18535,"{'type': 'Point', 'coordinates': (-79.43854185, 43.65758566)}"
-18560,10962,GO-20152078978,THEFT UNDER,2015-11-24T00:00:00,2015,November,Tuesday,24,328,10,2015-12-04T00:00:00,2015,December,Friday,4,338,15,D14,Toronto,83,Dufferin Grove (83),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,12 CYPRUS,MT,0,GRY,659.0,RECOVERED,18536,"{'type': 'Point', 'coordinates': (-79.43379598, 43.66018604)}"
-18561,11029,GO-20169002152,THEFT UNDER - BICYCLE,2016-03-09T00:00:00,2016,March,Wednesday,9,69,10,2016-03-09T00:00:00,2016,March,Wednesday,9,69,15,D14,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,,MT,21,BLU,800.0,STOLEN,18537,"{'type': 'Point', 'coordinates': (-79.43474092, 43.65834618000001)}"
-18562,11342,GO-20169004750,THEFT UNDER - BICYCLE,2016-05-15T00:00:00,2016,May,Sunday,15,136,12,2016-05-20T00:00:00,2016,May,Friday,20,141,12,D11,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,LAGER,RG,1,BLK,800.0,STOLEN,18538,"{'type': 'Point', 'coordinates': (-79.4375771, 43.65508991)}"
-18563,11352,GO-20169004810,THEFT UNDER,2016-05-21T00:00:00,2016,May,Saturday,21,142,0,2016-05-22T00:00:00,2016,May,Sunday,22,143,12,D14,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,ROAD BIKE,RG,1,PNK,600.0,STOLEN,18539,"{'type': 'Point', 'coordinates': (-79.43474092, 43.65834618000001)}"
-18564,11482,GO-20161002216,THEFT UNDER - BICYCLE,2015-12-19T00:00:00,2015,December,Saturday,19,353,5,2016-06-10T00:00:00,2016,June,Friday,10,162,7,D14,Toronto,83,Dufferin Grove (83),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RALEIGH,,OT,3,BRN,300.0,STOLEN,18540,"{'type': 'Point', 'coordinates': (-79.43427392, 43.65712246)}"
-18565,11561,GO-20169005915,THEFT UNDER,2016-06-16T00:00:00,2016,June,Thursday,16,168,20,2016-06-17T00:00:00,2016,June,Friday,17,169,0,D14,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,OT,,SC,32,LBL,1700.0,STOLEN,18541,"{'type': 'Point', 'coordinates': (-79.43252260000001, 43.65256886)}"
-18566,11581,GO-20169006021,THEFT UNDER,2016-06-19T00:00:00,2016,June,Sunday,19,171,14,2016-06-19T00:00:00,2016,June,Sunday,19,171,17,D11,Toronto,83,Dufferin Grove (83),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KO,DEWPOINT,RG,18,BLK,800.0,STOLEN,18542,"{'type': 'Point', 'coordinates': (-79.43699471, 43.65521452000001)}"
-18567,11609,GO-20169006177,THEFT UNDER,2016-06-19T00:00:00,2016,June,Sunday,19,171,23,2016-06-22T00:00:00,2016,June,Wednesday,22,174,13,D14,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,GF,TIBERON,OT,7,SIL,1000.0,STOLEN,18543,"{'type': 'Point', 'coordinates': (-79.42739759, 43.65617153)}"
-18568,24679,GO-20143528218,B&E,2014-11-20T00:00:00,2014,November,Thursday,20,324,17,2014-12-22T00:00:00,2014,December,Monday,22,356,11,D14,Toronto,84,Little Portugal (84),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CCM,,OT,0,SIL,250.0,STOLEN,18544,"{'type': 'Point', 'coordinates': (-79.42595861, 43.64276527)}"
-18569,3082,GO-20189025162,THEFT UNDER - BICYCLE,2018-07-30T00:00:00,2018,July,Monday,30,211,0,2018-08-05T00:00:00,2018,August,Sunday,5,217,10,D14,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FJ,DECLARATION,RG,1,ONG,650.0,STOLEN,18545,"{'type': 'Point', 'coordinates': (-79.42580771, 43.64569411)}"
-18570,24683,GO-2015551753,B&E,2015-04-02T00:00:00,2015,April,Thursday,2,92,20,2015-04-03T00:00:00,2015,April,Friday,3,93,9,D14,Toronto,84,Little Portugal (84),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CANNONDALE,SUPER 6,OT,21,WHI,6500.0,STOLEN,18546,"{'type': 'Point', 'coordinates': (-79.42161579, 43.64147337)}"
-18571,12465,GO-20169011169,THEFT UNDER,2016-09-26T00:00:00,2016,September,Monday,26,270,21,2016-09-27T00:00:00,2016,September,Tuesday,27,271,0,D11,Toronto,83,Dufferin Grove (83),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,,MT,21,WHI,300.0,STOLEN,18547,"{'type': 'Point', 'coordinates': (-79.43699471, 43.65521452000001)}"
-18572,15617,GO-20179008603,THEFT UNDER - BICYCLE,2017-06-20T00:00:00,2017,June,Tuesday,20,171,8,2017-06-21T00:00:00,2017,June,Wednesday,21,172,13,D14,Toronto,85,South Parkdale (85),Schools During Supervised Activity,Educational,SC,SCHWINN,RC,12,RED,0.0,STOLEN,18548,"{'type': 'Point', 'coordinates': (-79.43468620000002, 43.63746024)}"
-18573,17318,GO-2020819988,B&E,2020-02-01T00:00:00,2020,February,Saturday,1,32,0,2020-05-01T00:00:00,2020,May,Friday,1,122,17,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,DOLCEVITA,,OT,21,WHI,1000.0,STOLEN,18549,"{'type': 'Point', 'coordinates': (-79.42921876, 43.63418515)}"
-18574,17319,GO-20209012316,THEFT UNDER,2020-04-28T00:00:00,2020,April,Tuesday,28,119,18,2020-05-01T00:00:00,2020,May,Friday,1,122,21,D14,Toronto,85,South Parkdale (85),"Private Property Structure (Pool, Shed, Detached Garage)",Other,,ROYAL 700CC,RG,18,GRY,300.0,STOLEN,18550,"{'type': 'Point', 'coordinates': (-79.42351373, 43.63972239)}"
-18575,17320,GO-20209012316,THEFT UNDER,2020-04-28T00:00:00,2020,April,Tuesday,28,119,18,2020-05-01T00:00:00,2020,May,Friday,1,122,21,D14,Toronto,85,South Parkdale (85),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,PUREFIX ORIGINA,OT,1,,550.0,STOLEN,18551,"{'type': 'Point', 'coordinates': (-79.42351373, 43.63972239)}"
-18576,17355,GO-20209017593,THEFT UNDER,2020-07-13T00:00:00,2020,July,Monday,13,195,3,2020-07-15T00:00:00,2020,July,Wednesday,15,197,0,D14,Toronto,85,South Parkdale (85),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ROAD BIKE,RC,20,WHI,2000.0,STOLEN,18552,"{'type': 'Point', 'coordinates': (-79.42351373, 43.63972239)}"
-18577,17374,GO-20209020297,THEFT UNDER,2020-08-15T00:00:00,2020,August,Saturday,15,228,14,2020-08-15T00:00:00,2020,August,Saturday,15,228,15,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,OT,MONDO,OT,1,ONG,1500.0,STOLEN,18553,"{'type': 'Point', 'coordinates': (-79.43240631, 43.63969174)}"
-18578,17407,GO-20209028724,B&E,2020-10-14T00:00:00,2020,October,Wednesday,14,288,23,2020-11-05T00:00:00,2020,November,Thursday,5,310,14,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RG,3,GRN,200.0,STOLEN,18554,"{'type': 'Point', 'coordinates': (-79.42351373, 43.63972239)}"
-18579,17528,GO-20189037738,THEFT UNDER - BICYCLE,2018-11-11T00:00:00,2018,November,Sunday,11,315,13,2018-11-11T00:00:00,2018,November,Sunday,11,315,14,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,RA,,RG,18,BLK,300.0,STOLEN,18555,"{'type': 'Point', 'coordinates': (-79.42351373, 43.63972239)}"
-18580,17559,GO-2019788347,THEFT UNDER,2019-05-01T00:00:00,2019,May,Wednesday,1,121,20,2019-05-01T00:00:00,2019,May,Wednesday,1,121,22,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,VANDAL,MT,18,RED,,STOLEN,18556,"{'type': 'Point', 'coordinates': (-79.43474242, 43.63395219)}"
-18581,17573,GO-20199016552,THEFT UNDER - BICYCLE,2019-05-24T00:00:00,2019,May,Friday,24,144,18,2019-05-27T00:00:00,2019,May,Monday,27,147,23,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,NO,HEART,RG,1,BLK,600.0,STOLEN,18557,"{'type': 'Point', 'coordinates': (-79.43087678, 43.63821035)}"
-18582,17577,GO-20199017495,THEFT UNDER - BICYCLE,2019-05-31T00:00:00,2019,May,Friday,31,151,22,2019-06-05T00:00:00,2019,June,Wednesday,5,156,13,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,21,GLD,0.0,STOLEN,18558,"{'type': 'Point', 'coordinates': (-79.42524484, 43.64083535000001)}"
-18583,17611,GO-20199023897,THEFT UNDER - BICYCLE,2019-07-24T00:00:00,2019,July,Wednesday,24,205,18,2019-07-26T00:00:00,2019,July,Friday,26,207,14,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,OT,20,TRQ,800.0,STOLEN,18559,"{'type': 'Point', 'coordinates': (-79.43031712, 43.63834508)}"
-18584,17618,GO-20199024906,THEFT UNDER,2019-07-07T00:00:00,2019,July,Sunday,7,188,5,2019-08-04T00:00:00,2019,August,Sunday,4,216,11,D14,Toronto,85,South Parkdale (85),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,OT,1,YEL,500.0,STOLEN,18560,"{'type': 'Point', 'coordinates': (-79.4399295, 43.63641927)}"
-18585,17636,GO-20191755197,PROPERTY - FOUND,2019-09-11T00:00:00,2019,September,Wednesday,11,254,22,2019-09-13T00:00:00,2019,September,Friday,13,256,5,D14,Toronto,85,South Parkdale (85),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,UNKNOWN,RG,10,LGR,,UNKNOWN,18561,"{'type': 'Point', 'coordinates': (-79.42480064, 43.63946551)}"
-18586,17640,GO-20199030483,THEFT UNDER - BICYCLE,2019-09-15T00:00:00,2019,September,Sunday,15,258,1,2019-09-18T00:00:00,2019,September,Wednesday,18,261,11,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,OT,CLASSICO,RG,7,BLK,550.0,STOLEN,18562,"{'type': 'Point', 'coordinates': (-79.42808998, 43.63598082)}"
-18587,17651,GO-20199033403,THEFT UNDER - BICYCLE,2019-09-10T00:00:00,2019,September,Tuesday,10,253,21,2019-10-10T00:00:00,2019,October,Thursday,10,283,16,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,OT,SKETCH,MT,18,ONG,900.0,STOLEN,18563,"{'type': 'Point', 'coordinates': (-79.42351373, 43.63972239)}"
-18588,17671,GO-20192287970,THEFT UNDER,2019-11-24T00:00:00,2019,November,Sunday,24,328,12,2019-11-27T00:00:00,2019,November,Wednesday,27,331,9,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,RALEIGH,LADIES,MT,20,,80.0,STOLEN,18564,"{'type': 'Point', 'coordinates': (-79.42808998, 43.63598082)}"
-18589,17722,GO-20179013843,THEFT UNDER - BICYCLE,2017-08-31T00:00:00,2017,August,Thursday,31,243,13,2017-09-01T00:00:00,2017,September,Friday,1,244,16,D14,Toronto,85,South Parkdale (85),Schools During Un-Supervised Activity,Educational,OT,KATO,MT,24,BLK,800.0,STOLEN,18565,"{'type': 'Point', 'coordinates': (-79.43689219, 43.63960265000001)}"
-18590,17733,GO-20179015066,THEFT UNDER - BICYCLE,2017-09-02T00:00:00,2017,September,Saturday,2,245,11,2017-09-18T00:00:00,2017,September,Monday,18,261,11,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,TR,FX1,TO,21,BLU,700.0,STOLEN,18566,"{'type': 'Point', 'coordinates': (-79.43474242, 43.63395219)}"
-18591,17737,GO-20179015445,THEFT UNDER - BICYCLE,2017-09-21T00:00:00,2017,September,Thursday,21,264,16,2017-09-22T00:00:00,2017,September,Friday,22,265,10,D14,Toronto,85,South Parkdale (85),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,GT,TRANSEO 2.0 201,TO,27,BLU,560.0,STOLEN,18567,"{'type': 'Point', 'coordinates': (-79.42968514, 43.64199902)}"
-18592,17782,GO-201884767,B&E W'INTENT,2018-01-13T00:00:00,2018,January,Saturday,13,13,15,2018-01-14T00:00:00,2018,January,Sunday,14,14,15,D14,Toronto,85,South Parkdale (85),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,CAAD8,RC,24,LBL,900.0,STOLEN,18568,"{'type': 'Point', 'coordinates': (-79.4399295, 43.63641927)}"
-18593,17809,GO-20189015034,THEFT UNDER - BICYCLE,2018-05-15T00:00:00,2018,May,Tuesday,15,135,13,2018-05-15T00:00:00,2018,May,Tuesday,15,135,14,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SC,TRICYCLE,EL,30,RED,1200.0,STOLEN,18569,"{'type': 'Point', 'coordinates': (-79.43413785, 43.64109159)}"
-18594,12541,GO-20169011495,THEFT UNDER - BICYCLE,2016-10-02T00:00:00,2016,October,Sunday,2,276,17,2016-10-03T00:00:00,2016,October,Monday,3,277,16,D14,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,KO,DEW,MT,8,BLK,500.0,STOLEN,18570,"{'type': 'Point', 'coordinates': (-79.43038141, 43.66094505)}"
-18595,24684,GO-2015551753,B&E,2015-04-02T00:00:00,2015,April,Thursday,2,92,20,2015-04-03T00:00:00,2015,April,Friday,3,93,9,D14,Toronto,84,Little Portugal (84),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,SEEK,OT,8,BLU,1200.0,STOLEN,18571,"{'type': 'Point', 'coordinates': (-79.42161579, 43.64147337)}"
-18596,21658,GO-20161873885,THEFT UNDER - BICYCLE,2016-10-21T00:00:00,2016,October,Friday,21,295,14,2016-10-21T00:00:00,2016,October,Friday,21,295,15,D11,Toronto,83,Dufferin Grove (83),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MEC,SHADOW LAND,OT,18,GRN,1300.0,STOLEN,18572,"{'type': 'Point', 'coordinates': (-79.43699471, 43.65521452000001)}"
-18597,3116,GO-20189025555,THEFT UNDER - BICYCLE,2018-08-04T00:00:00,2018,August,Saturday,4,216,22,2018-08-08T00:00:00,2018,August,Wednesday,8,220,15,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KH,ULTRASPORT 3.0,OT,21,BLK,1500.0,STOLEN,18573,"{'type': 'Point', 'coordinates': (-79.42475884, 43.64301634)}"
-18598,17887,GO-20189027109,THEFT UNDER - BICYCLE,2018-08-19T00:00:00,2018,August,Sunday,19,231,14,2018-08-20T00:00:00,2018,August,Monday,20,232,12,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,OT,OCHO,RG,8,GRY,1300.0,STOLEN,18574,"{'type': 'Point', 'coordinates': (-79.42808998, 43.63598082)}"
-18599,17888,GO-20189027256,THEFT UNDER - BICYCLE,2018-08-19T00:00:00,2018,August,Sunday,19,231,0,2018-08-21T00:00:00,2018,August,Tuesday,21,233,10,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,RA,,RG,1,BLU,350.0,STOLEN,18575,"{'type': 'Point', 'coordinates': (-79.43031712, 43.63834508)}"
-18600,17894,GO-20189028615,THEFT UNDER,2018-08-30T00:00:00,2018,August,Thursday,30,242,18,2018-08-30T00:00:00,2018,August,Thursday,30,242,19,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,CA,QUICK 4 BIKE,RG,27,GRY,800.0,STOLEN,18576,"{'type': 'Point', 'coordinates': (-79.42663898, 43.64122736)}"
-18601,18083,GO-20171206340,THEFT OF EBIKE UNDER $5000,2017-07-05T00:00:00,2017,July,Wednesday,5,186,18,2017-07-06T00:00:00,2017,July,Thursday,6,187,5,D14,Toronto,85,South Parkdale (85),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,(UNK),,EL,1,RED,,STOLEN,18577,"{'type': 'Point', 'coordinates': (-79.43087678, 43.63821035)}"
-18602,18092,GO-20171285618,THEFT UNDER - BICYCLE,2017-07-18T00:00:00,2017,July,Tuesday,18,199,0,2017-07-18T00:00:00,2017,July,Tuesday,18,199,0,D14,Toronto,85,South Parkdale (85),Ttc Bus,Transit,SPECIALIZED,SIRRUS,MT,21,BLK,,STOLEN,18578,"{'type': 'Point', 'coordinates': (-79.43723784, 43.64045086)}"
-18603,18108,GO-20179011973,THEFT UNDER - BICYCLE,2017-08-08T00:00:00,2017,August,Tuesday,8,220,20,2017-08-09T00:00:00,2017,August,Wednesday,9,221,8,D14,Toronto,85,South Parkdale (85),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,FJ,ABSOLUTE 2.1,OT,21,SIL,625.0,STOLEN,18579,"{'type': 'Point', 'coordinates': (-79.4399295, 43.63641927)}"
-18604,18119,GO-20169006527,THEFT UNDER - BICYCLE,2016-06-23T00:00:00,2016,June,Thursday,23,175,13,2016-06-29T00:00:00,2016,June,Wednesday,29,181,13,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,GI,SEEK,RG,24,GRY,690.0,STOLEN,18580,"{'type': 'Point', 'coordinates': (-79.42524484, 43.64083535000001)}"
-18605,18130,GO-20161356183,THEFT OF EBIKE UNDER $5000,2016-07-28T00:00:00,2016,July,Thursday,28,210,21,2016-08-03T00:00:00,2016,August,Wednesday,3,216,21,D14,Toronto,85,South Parkdale (85),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,XPD,EL,1,BLK,3200.0,STOLEN,18581,"{'type': 'Point', 'coordinates': (-79.44361865000002, 43.63766386)}"
-18606,18138,GO-20169009334,THEFT UNDER - BICYCLE,2016-08-20T00:00:00,2016,August,Saturday,20,233,19,2016-08-23T00:00:00,2016,August,Tuesday,23,236,13,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,TR,7.3 FX WOMEN'S,OT,9,BLK,820.0,STOLEN,18582,"{'type': 'Point', 'coordinates': (-79.44361865000002, 43.63766386)}"
-18607,18140,GO-20169009439,THEFT UNDER - BICYCLE,2016-08-24T00:00:00,2016,August,Wednesday,24,237,19,2016-08-24T00:00:00,2016,August,Wednesday,24,237,20,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,21,,430.0,STOLEN,18583,"{'type': 'Point', 'coordinates': (-79.42524484, 43.64083535000001)}"
-18608,18173,GO-20169012537,THEFT UNDER - BICYCLE,2016-10-24T00:00:00,2016,October,Monday,24,298,1,2016-10-24T00:00:00,2016,October,Monday,24,298,20,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RM,ETSX30,MT,24,BLU,1000.0,STOLEN,18584,"{'type': 'Point', 'coordinates': (-79.42909632, 43.63858236)}"
-18609,18206,GO-2017867564,B&E,2017-05-14T00:00:00,2017,May,Sunday,14,134,0,2017-05-17T00:00:00,2017,May,Wednesday,17,137,8,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,OTHER,,RG,21,BLK,20.0,STOLEN,18585,"{'type': 'Point', 'coordinates': (-79.42796684, 43.64059924)}"
-18610,18333,GO-20142151396,THEFT UNDER,2014-05-25T00:00:00,2014,May,Sunday,25,145,2,2014-05-25T00:00:00,2014,May,Sunday,25,145,19,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,EMMO,5,EL,1,ONGBLK,380.0,STOLEN,18586,"{'type': 'Point', 'coordinates': (-79.44245674, 43.63943724)}"
-18611,18349,GO-20142502136,THEFT UNDER,2014-07-09T00:00:00,2014,July,Wednesday,9,190,12,2014-07-15T00:00:00,2014,July,Tuesday,15,196,13,D14,Toronto,85,South Parkdale (85),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,,MT,10,PLE,200.0,STOLEN,18587,"{'type': 'Point', 'coordinates': (-79.42632816, 43.63633154)}"
-18612,18381,GO-20149007997,THEFT UNDER,2014-10-11T00:00:00,2014,October,Saturday,11,284,12,2014-11-04T00:00:00,2014,November,Tuesday,4,308,9,D14,Toronto,85,South Parkdale (85),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,F7,MT,21,WHI,900.0,STOLEN,18588,"{'type': 'Point', 'coordinates': (-79.42601113, 43.63922831)}"
-18613,18436,GO-20151304370,THEFT UNDER,2015-07-27T00:00:00,2015,July,Monday,27,208,18,2015-07-30T00:00:00,2015,July,Thursday,30,211,16,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,OTHER,,FO,0,BLU,100.0,STOLEN,18589,"{'type': 'Point', 'coordinates': (-79.44361865000002, 43.63766386)}"
-18614,18439,GO-20151302941,THEFT UNDER,2015-07-30T00:00:00,2015,July,Thursday,30,211,8,2015-07-30T00:00:00,2015,July,Thursday,30,211,12,D14,Toronto,85,South Parkdale (85),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KONA,PADDY WAGON,RG,1,BLK,799.0,STOLEN,18590,"{'type': 'Point', 'coordinates': (-79.42604547, 43.63559667)}"
-18615,18524,GO-20143532995,THEFT UNDER,2014-12-20T00:00:00,2014,December,Saturday,20,354,10,2014-12-22T00:00:00,2014,December,Monday,22,356,16,D11,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,TREK,,MT,1,MRN,600.0,STOLEN,18591,"{'type': 'Point', 'coordinates': (-79.46524679, 43.63635487)}"
-18616,18525,GO-20143532995,THEFT UNDER,2014-12-20T00:00:00,2014,December,Saturday,20,354,10,2014-12-22T00:00:00,2014,December,Monday,22,356,16,D11,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,GIANT,,MT,1,SIL,600.0,STOLEN,18592,"{'type': 'Point', 'coordinates': (-79.46524679, 43.63635487)}"
-18617,18674,GO-20199020739,THEFT UNDER,2019-06-30T00:00:00,2019,June,Sunday,30,181,17,2019-07-02T00:00:00,2019,July,Tuesday,2,183,15,D11,Toronto,85,South Parkdale (85),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,CITY BIKE,RG,3,BLK,1200.0,STOLEN,18593,"{'type': 'Point', 'coordinates': (-79.45886359, 43.63771054)}"
-18618,18675,GO-20199020739,THEFT UNDER,2019-06-30T00:00:00,2019,June,Sunday,30,181,17,2019-07-02T00:00:00,2019,July,Tuesday,2,183,15,D11,Toronto,85,South Parkdale (85),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,CITY BIKE,RG,3,BLK,1200.0,STOLEN,18594,"{'type': 'Point', 'coordinates': (-79.45886359, 43.63771054)}"
-18619,20814,GO-20209023436,THEFT UNDER,2020-09-08T00:00:00,2020,September,Tuesday,8,252,15,2020-09-16T00:00:00,2020,September,Wednesday,16,260,15,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,OT,LE TOUR,RC,32,DBL,900.0,STOLEN,18595,"{'type': 'Point', 'coordinates': (-79.42524484, 43.64083535000001)}"
-18620,20815,GO-20209024213,THEFT UNDER,2020-09-02T00:00:00,2020,September,Wednesday,2,246,19,2020-09-23T00:00:00,2020,September,Wednesday,23,267,19,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,GI,XR1,MT,21,,1200.0,STOLEN,18596,"{'type': 'Point', 'coordinates': (-79.43087678, 43.63821035)}"
-18621,20823,GO-20209026848,THEFT UNDER,2020-10-07T00:00:00,2020,October,Wednesday,7,281,10,2020-10-18T00:00:00,2020,October,Sunday,18,292,11,D14,Toronto,85,South Parkdale (85),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RA,,RG,1,BLK,600.0,STOLEN,18597,"{'type': 'Point', 'coordinates': (-79.43474242, 43.63395219)}"
-18622,20835,GO-20209030131,THEFT UNDER,2020-11-19T00:00:00,2020,November,Thursday,19,324,23,2020-11-20T00:00:00,2020,November,Friday,20,325,11,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,OT,CROSSTRAIL 2014,RG,8,BLK,0.0,STOLEN,18598,"{'type': 'Point', 'coordinates': (-79.42935842, 43.63416521)}"
-18623,20982,GO-20199001379,THEFT UNDER - BICYCLE,2019-01-01T00:00:00,2019,January,Tuesday,1,1,11,2019-01-11T00:00:00,2019,January,Friday,11,11,11,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,BI,FORTE 18-SPEED,RG,18,YEL,227.0,STOLEN,18599,"{'type': 'Point', 'coordinates': (-79.42529763, 43.63734542)}"
-18624,20996,GO-2019932006,PROPERTY - FOUND,2019-05-22T00:00:00,2019,May,Wednesday,22,142,9,2019-05-22T00:00:00,2019,May,Wednesday,22,142,9,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,MARIN OR MARINO,,MT,6,GRY,,UNKNOWN,18600,"{'type': 'Point', 'coordinates': (-79.43946344000001, 43.63910769)}"
-18625,20997,GO-2019932006,PROPERTY - FOUND,2019-05-22T00:00:00,2019,May,Wednesday,22,142,9,2019-05-22T00:00:00,2019,May,Wednesday,22,142,9,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,RALEIGH,PARTAGE,MT,6,RED,,UNKNOWN,18601,"{'type': 'Point', 'coordinates': (-79.43946344000001, 43.63910769)}"
-18626,21024,GO-20199022865,THEFT UNDER,2019-07-19T00:00:00,2019,July,Friday,19,200,0,2019-07-19T00:00:00,2019,July,Friday,19,200,0,D14,Toronto,85,South Parkdale (85),Go Station,Transit,UK,SUB CROSS 40XL,MT,24,GRY,900.0,STOLEN,18602,"{'type': 'Point', 'coordinates': (-79.41861725, 43.63533762)}"
-18627,21025,GO-20199023005,THEFT UNDER,2019-07-19T00:00:00,2019,July,Friday,19,200,19,2019-07-20T00:00:00,2019,July,Saturday,20,201,11,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,GT,,RG,7,BLK,800.0,STOLEN,18603,"{'type': 'Point', 'coordinates': (-79.43057287, 43.63462208)}"
-18628,21060,GO-20191745102,THEFT UNDER - BICYCLE,2019-06-05T00:00:00,2019,June,Wednesday,5,156,12,2019-09-11T00:00:00,2019,September,Wednesday,11,254,16,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,HARDROCK,MT,18,TRQ,200.0,STOLEN,18604,"{'type': 'Point', 'coordinates': (-79.43474242, 43.63395219)}"
-18629,21074,GO-20199032850,THEFT UNDER - BICYCLE,2019-10-05T00:00:00,2019,October,Saturday,5,278,11,2019-10-07T00:00:00,2019,October,Monday,7,280,8,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,3700,RG,10,BLU,800.0,STOLEN,18605,"{'type': 'Point', 'coordinates': (-79.42524484, 43.64083535000001)}"
-18630,21075,GO-20191932763,PROPERTY - FOUND,2019-10-07T00:00:00,2019,October,Monday,7,280,10,2019-10-08T00:00:00,2019,October,Tuesday,8,281,0,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,TREK,,MT,0,BLK,,UNKNOWN,18606,"{'type': 'Point', 'coordinates': (-79.43946344000001, 43.63910769)}"
-18631,21103,GO-20209000886,THEFT UNDER,2020-01-07T00:00:00,2020,January,Tuesday,7,7,12,2020-01-08T00:00:00,2020,January,Wednesday,8,8,20,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SC,MESA,MT,24,YEL,0.0,STOLEN,18607,"{'type': 'Point', 'coordinates': (-79.42154165, 43.63810954)}"
-18632,21151,GO-20209015939,THEFT UNDER,2020-06-20T00:00:00,2020,June,Saturday,20,172,22,2020-06-23T00:00:00,2020,June,Tuesday,23,175,9,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,1,BLK,200.0,STOLEN,18608,"{'type': 'Point', 'coordinates': (-79.42796684, 43.64059924)}"
-18633,21159,GO-20201284774,B&E,2020-06-27T00:00:00,2020,June,Saturday,27,179,12,2020-07-11T00:00:00,2020,July,Saturday,11,193,15,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,SIRRUS,RG,0,GRY,,STOLEN,18609,"{'type': 'Point', 'coordinates': (-79.43689219, 43.63960265000001)}"
-18634,21160,GO-20209017397,THEFT UNDER,2020-07-12T00:00:00,2020,July,Sunday,12,194,13,2020-07-12T00:00:00,2020,July,Sunday,12,194,21,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,CC,SL 2.0,MT,21,BLU,550.0,STOLEN,18610,"{'type': 'Point', 'coordinates': (-79.42663898, 43.64122736)}"
-18635,21175,GO-20179009401,THEFT UNDER,2017-06-30T00:00:00,2017,June,Friday,30,181,21,2017-07-04T00:00:00,2017,July,Tuesday,4,185,15,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,MA,NAIL TRAIL 7.7,MT,20,WHI,2050.0,STOLEN,18611,"{'type': 'Point', 'coordinates': (-79.42909632, 43.63858236)}"
-18636,21233,GO-20172029056,THEFT UNDER - BICYCLE,2017-11-06T00:00:00,2017,November,Monday,6,310,18,2017-11-09T00:00:00,2017,November,Thursday,9,313,11,D14,Toronto,85,South Parkdale (85),"Religious Facilities (Synagogue, Church, Convent, Mosque)",Other,NORCO,RIDE,MT,0,BLK,,STOLEN,18612,"{'type': 'Point', 'coordinates': (-79.44218264, 43.63949071)}"
-18637,21255,GO-2018462851,THEFT UNDER - BICYCLE,2018-03-10T00:00:00,2018,March,Saturday,10,69,4,2018-03-13T00:00:00,2018,March,Tuesday,13,72,20,D14,Toronto,85,South Parkdale (85),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,HARO,PROJEKT,TO,0,PNK,450.0,STOLEN,18613,"{'type': 'Point', 'coordinates': (-79.43982394, 43.63995115)}"
-18638,21306,GO-20189021526,THEFT UNDER - BICYCLE,2018-07-01T00:00:00,2018,July,Sunday,1,182,12,2018-07-08T00:00:00,2018,July,Sunday,8,189,12,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,RA,FUJI STROLL,RG,1,SIL,900.0,STOLEN,18614,"{'type': 'Point', 'coordinates': (-79.42351373, 43.63972239)}"
-18639,21307,GO-20189021526,THEFT UNDER - BICYCLE,2018-07-01T00:00:00,2018,July,Sunday,1,182,12,2018-07-08T00:00:00,2018,July,Sunday,8,189,12,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,UK,SINGLE SPEED,RG,1,BLK,800.0,STOLEN,18615,"{'type': 'Point', 'coordinates': (-79.42351373, 43.63972239)}"
-18640,21338,GO-20189028316,THEFT UNDER - BICYCLE,2018-08-21T00:00:00,2018,August,Tuesday,21,233,12,2018-08-28T00:00:00,2018,August,Tuesday,28,240,17,D14,Toronto,85,South Parkdale (85),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,SPADE,OT,1,WHI,900.0,STOLEN,18616,"{'type': 'Point', 'coordinates': (-79.42601113, 43.63922831)}"
-18641,21351,GO-20181801568,THEFT UNDER,2018-09-28T00:00:00,2018,September,Friday,28,271,16,2018-09-29T00:00:00,2018,September,Saturday,29,272,9,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,DK,DIRT BIKE,BM,1,GRNBLK,250.0,STOLEN,18617,"{'type': 'Point', 'coordinates': (-79.43474242, 43.63395219)}"
-18642,21375,GO-2016990056,THEFT OF EBIKE UNDER $5000,2016-06-06T00:00:00,2016,June,Monday,6,158,3,2016-06-07T00:00:00,2016,June,Tuesday,7,159,16,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,EMMO,,EL,7,BLK,700.0,STOLEN,18618,"{'type': 'Point', 'coordinates': (-79.4359982, 43.63717625000001)}"
-18643,21382,GO-20169006010,THEFT UNDER,2016-06-15T00:00:00,2016,June,Wednesday,15,167,18,2016-06-19T00:00:00,2016,June,Sunday,19,171,10,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,POPRAD,OT,10,RED,1000.0,STOLEN,18619,"{'type': 'Point', 'coordinates': (-79.42601113, 43.63922831)}"
-18644,21389,GO-20169006527,THEFT UNDER - BICYCLE,2016-06-23T00:00:00,2016,June,Thursday,23,175,13,2016-06-29T00:00:00,2016,June,Wednesday,29,181,13,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,GI,SEEK,RG,24,GRY,690.0,STOLEN,18620,"{'type': 'Point', 'coordinates': (-79.42524484, 43.64083535000001)}"
-18645,21397,GO-20161234869,THEFT UNDER,2016-07-14T00:00:00,2016,July,Thursday,14,196,2,2016-07-14T00:00:00,2016,July,Thursday,14,196,12,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,SC,1,RED,3200.0,STOLEN,18621,"{'type': 'Point', 'coordinates': (-79.43474242, 43.63395219)}"
-18646,21469,GO-2017477684,THEFT UNDER,2017-03-06T00:00:00,2017,March,Monday,6,65,20,2017-03-17T00:00:00,2017,March,Friday,17,76,12,D14,Toronto,85,South Parkdale (85),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,WIKE,,OT,0,,,STOLEN,18622,"{'type': 'Point', 'coordinates': (-79.42968514, 43.64199902)}"
-18647,21589,GO-20149004005,THEFT UNDER,2014-06-11T00:00:00,2014,June,Wednesday,11,162,15,2014-06-12T00:00:00,2014,June,Thursday,12,163,7,D11,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,UK,VINTAGE/OLDER L,RG,1,YEL,300.0,STOLEN,18623,"{'type': 'Point', 'coordinates': (-79.4536313, 43.63891668000001)}"
-18648,21624,GO-20159008408,THEFT UNDER,2015-09-26T00:00:00,2015,September,Saturday,26,269,0,2015-10-10T00:00:00,2015,October,Saturday,10,283,14,D11,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,GT,ZASKAR LE,MT,18,SIL,4000.0,STOLEN,18624,"{'type': 'Point', 'coordinates': (-79.46524679, 43.63635487)}"
-18649,21675,GO-20179009278,THEFT UNDER - BICYCLE,2015-06-20T00:00:00,2015,June,Saturday,20,171,21,2017-07-02T00:00:00,2017,July,Sunday,2,183,14,D11,Toronto,85,South Parkdale (85),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,QUEEN ST. 700C,TO,7,LGR,400.0,STOLEN,18625,"{'type': 'Point', 'coordinates': (-79.46524679, 43.63635487)}"
-18650,21790,GO-20141472644,THEFT UNDER,2014-02-04T00:00:00,2014,February,Tuesday,4,35,17,2014-02-05T00:00:00,2014,February,Wednesday,5,36,9,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,OTHER,2000FS,SC,1,BLU,2000.0,STOLEN,18626,"{'type': 'Point', 'coordinates': (-79.43657354, 43.63873271)}"
-18651,21828,GO-20142849101,ROBBERY - MUGGING,2014-09-05T00:00:00,2014,September,Friday,5,248,12,2014-09-05T00:00:00,2014,September,Friday,5,248,14,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,,OT,1,WHI,400.0,STOLEN,18628,"{'type': 'Point', 'coordinates': (-79.43723784, 43.64045086)}"
-18652,21833,GO-20149006903,THEFT UNDER,2014-09-13T00:00:00,2014,September,Saturday,13,256,13,2014-09-15T00:00:00,2014,September,Monday,15,258,12,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,NO,HEART,RG,1,BLK,400.0,STOLEN,18629,"{'type': 'Point', 'coordinates': (-79.42843902, 43.64178861)}"
-18653,21866,GO-2015860639,THEFT UNDER,2015-05-21T00:00:00,2015,May,Thursday,21,141,23,2015-05-23T00:00:00,2015,May,Saturday,23,143,16,D14,Toronto,85,South Parkdale (85),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,MT,0,BLU,150.0,STOLEN,18630,"{'type': 'Point', 'coordinates': (-79.4399295, 43.63641927)}"
-18654,21876,GO-20159003649,THEFT UNDER,2015-06-08T00:00:00,2015,June,Monday,8,159,20,2015-06-15T00:00:00,2015,June,Monday,15,166,21,D14,Toronto,85,South Parkdale (85),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,AMSTERDAM,OT,8,SIL,750.0,STOLEN,18631,"{'type': 'Point', 'coordinates': (-79.43735757, 43.63689178)}"
-18655,21937,GO-20159010375,THEFT UNDER,2015-11-30T00:00:00,2015,November,Monday,30,334,20,2015-12-01T00:00:00,2015,December,Tuesday,1,335,16,D14,Toronto,85,South Parkdale (85),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,EL,32,,1000.0,STOLEN,18632,"{'type': 'Point', 'coordinates': (-79.42808998, 43.63598082)}"
-18656,21944,GO-20169002177,THEFT UNDER - BICYCLE,2015-12-09T00:00:00,2015,December,Wednesday,9,343,6,2016-03-10T00:00:00,2016,March,Thursday,10,70,6,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,OT,PANAMAO X2,RG,24,WHI,625.0,STOLEN,18633,"{'type': 'Point', 'coordinates': (-79.42663898, 43.64122736)}"
-18657,21978,GO-20201819598,FTC WITH CONDITIONS,2020-09-25T00:00:00,2020,September,Friday,25,269,9,2020-09-25T00:00:00,2020,September,Friday,25,269,9,D11,Toronto,85,South Parkdale (85),"Open Areas (Lakes, Parks, Rivers)",Outside,GARY FISHER,MOUNTAIN BIKE,MT,21,BLK,,UNKNOWN,18634,"{'type': 'Point', 'coordinates': (-79.45886359, 43.63771054)}"
-18658,23808,GO-20201283552,PROPERTY - FOUND,2020-07-12T00:00:00,2020,July,Sunday,12,194,9,2020-07-12T00:00:00,2020,July,Sunday,12,194,9,D14,Toronto,85,South Parkdale (85),"Open Areas (Lakes, Parks, Rivers)",Outside,GIANT,FASTROAD,TO,18,BLK,,STOLEN,18635,"{'type': 'Point', 'coordinates': (-79.42351373, 43.63972239)}"
-18659,23846,GO-20201884443,THEFT UNDER - BICYCLE,2020-09-22T00:00:00,2020,September,Tuesday,22,266,12,2020-10-06T00:00:00,2020,October,Tuesday,6,280,16,D14,Toronto,85,South Parkdale (85),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,TALON 1,MT,1,BLK,1000.0,STOLEN,18636,"{'type': 'Point', 'coordinates': (-79.43183256, 43.63802419)}"
-18660,23852,GO-20209026075,THEFT UNDER,2020-10-10T00:00:00,2020,October,Saturday,10,284,13,2020-10-10T00:00:00,2020,October,Saturday,10,284,17,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,60,OTH,800.0,STOLEN,18637,"{'type': 'Point', 'coordinates': (-79.42601113, 43.63922831)}"
-18661,24003,GO-20189040278,THEFT UNDER - BICYCLE,2018-11-29T00:00:00,2018,November,Thursday,29,333,12,2018-11-29T00:00:00,2018,November,Thursday,29,333,20,D14,Toronto,85,South Parkdale (85),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UK,,TO,8,BLK,500.0,STOLEN,18638,"{'type': 'Point', 'coordinates': (-79.43232991, 43.64147429)}"
-18662,24047,GO-20199018228,THEFT UNDER - BICYCLE,2019-06-10T00:00:00,2019,June,Monday,10,161,17,2019-06-11T00:00:00,2019,June,Tuesday,11,162,17,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,NO,KATMANDO,MT,18,GRY,600.0,STOLEN,18639,"{'type': 'Point', 'coordinates': (-79.42921876, 43.63418515)}"
-18663,21665,GO-2017725922,THEFT UNDER - BICYCLE,2017-04-25T00:00:00,2017,April,Tuesday,25,115,13,2017-04-25T00:00:00,2017,April,Tuesday,25,115,13,D11,Toronto,83,Dufferin Grove (83),Schools During Supervised Activity,Educational,DEVINCI,STOCKHOLM,MT,0,GRY,600.0,STOLEN,18640,"{'type': 'Point', 'coordinates': (-79.4401546, 43.65143188)}"
-18664,3253,GO-20181516262,THEFT UNDER - BICYCLE,2018-08-12T00:00:00,2018,August,Sunday,12,224,3,2018-08-17T00:00:00,2018,August,Friday,17,229,6,D14,Toronto,84,Little Portugal (84),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,MT,1,GRYONG,1100.0,STOLEN,18641,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18665,21676,GO-20179009657,THEFT UNDER - BICYCLE,2017-07-07T00:00:00,2017,July,Friday,7,188,14,2017-07-07T00:00:00,2017,July,Friday,7,188,17,D11,Toronto,83,Dufferin Grove (83),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,RG,40,WHI,0.0,STOLEN,18642,"{'type': 'Point', 'coordinates': (-79.43699471, 43.65521452000001)}"
-18666,3285,GO-20189027394,THEFT UNDER - BICYCLE,2018-08-15T00:00:00,2018,August,Wednesday,15,227,0,2018-08-22T00:00:00,2018,August,Wednesday,22,234,9,D14,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,OT,24,BRN,129.0,STOLEN,18643,"{'type': 'Point', 'coordinates': (-79.4279219, 43.64906469)}"
-18667,21678,GO-20179010172,THEFT UNDER - BICYCLE,2017-07-13T00:00:00,2017,July,Thursday,13,194,16,2017-07-14T00:00:00,2017,July,Friday,14,195,10,D11,Toronto,83,Dufferin Grove (83),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RA,RALEIGH REDUX 0,OT,8,BLK,620.0,STOLEN,18644,"{'type': 'Point', 'coordinates': (-79.43699471, 43.65521452000001)}"
-18668,3306,GO-20189027715,THEFT UNDER,2018-08-22T00:00:00,2018,August,Wednesday,22,234,12,2018-08-24T00:00:00,2018,August,Friday,24,236,11,D11,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,FO,7,BLU,825.0,STOLEN,18645,"{'type': 'Point', 'coordinates': (-79.43541175, 43.64945672)}"
-18669,21680,GO-20171429231,THEFT UNDER - BICYCLE,2017-08-04T00:00:00,2017,August,Friday,4,216,14,2017-08-08T00:00:00,2017,August,Tuesday,8,220,19,D11,Toronto,83,Dufferin Grove (83),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,DASH,OT,21,SILWHI,400.0,STOLEN,18646,"{'type': 'Point', 'coordinates': (-79.43699471, 43.65521452000001)}"
-18670,3338,GO-20189028183,THEFT UNDER - BICYCLE,2018-08-23T00:00:00,2018,August,Thursday,23,235,12,2018-08-27T00:00:00,2018,August,Monday,27,239,18,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,UK,BLACK,RG,21,BLK,600.0,STOLEN,18647,"{'type': 'Point', 'coordinates': (-79.42368786, 43.64113148)}"
-18671,21687,GO-20179015818,THEFT UNDER,2017-09-26T00:00:00,2017,September,Tuesday,26,269,12,2017-09-26T00:00:00,2017,September,Tuesday,26,269,13,D11,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,OT,CRUISER,RG,3,CRM,1000.0,STOLEN,18648,"{'type': 'Point', 'coordinates': (-79.43726099, 43.65427761)}"
-18672,3403,GO-20189029283,THEFT UNDER - BICYCLE,2018-09-06T00:00:00,2018,September,Thursday,6,249,2,2018-09-06T00:00:00,2018,September,Thursday,6,249,9,D14,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,MT,18,,800.0,STOLEN,18649,"{'type': 'Point', 'coordinates': (-79.42580771, 43.64569411)}"
-18673,3443,GO-20189029986,THEFT UNDER - BICYCLE,2017-05-13T00:00:00,2017,May,Saturday,13,133,15,2018-09-11T00:00:00,2018,September,Tuesday,11,254,16,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,CA,CAN QUICK 4 WMN,RG,22,GRY,779.0,STOLEN,18650,"{'type': 'Point', 'coordinates': (-79.42161579, 43.64147337)}"
-18674,21688,GO-20179015818,THEFT UNDER,2017-09-26T00:00:00,2017,September,Tuesday,26,269,12,2017-09-26T00:00:00,2017,September,Tuesday,26,269,13,D11,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,FJ,STROLL,RG,1,BLK,878.0,STOLEN,18651,"{'type': 'Point', 'coordinates': (-79.43726099, 43.65427761)}"
-18675,24685,GO-2015551753,B&E,2015-04-02T00:00:00,2015,April,Thursday,2,92,20,2015-04-03T00:00:00,2015,April,Friday,3,93,9,D14,Toronto,84,Little Portugal (84),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RALEIGH,ROADSTER,OT,7,GRY,1000.0,STOLEN,18652,"{'type': 'Point', 'coordinates': (-79.42161579, 43.64147337)}"
-18676,3509,GO-20189031051,THEFT UNDER - BICYCLE,2018-09-17T00:00:00,2018,September,Monday,17,260,2,2018-09-18T00:00:00,2018,September,Tuesday,18,261,21,D11,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,12,BLU,500.0,STOLEN,18653,"{'type': 'Point', 'coordinates': (-79.43724029, 43.64734749)}"
-18677,21695,GO-20189009448,THEFT UNDER,2018-03-25T00:00:00,2018,March,Sunday,25,84,18,2018-03-25T00:00:00,2018,March,Sunday,25,84,23,D11,Toronto,83,Dufferin Grove (83),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,SCALE,MT,27,BLK,3000.0,STOLEN,18654,"{'type': 'Point', 'coordinates': (-79.43699471, 43.65521452000001)}"
-18678,3633,GO-20189033170,THEFT UNDER - BICYCLE,2018-09-27T00:00:00,2018,September,Thursday,27,270,14,2018-10-07T00:00:00,2018,October,Sunday,7,280,15,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,KO,DEW PLUS,RG,21,BLK,500.0,STOLEN,18655,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18679,12594,GO-20161813071,THEFT UNDER - BICYCLE,2016-10-03T00:00:00,2016,October,Monday,3,277,14,2016-10-12T00:00:00,2016,October,Wednesday,12,286,9,D14,Toronto,83,Dufferin Grove (83),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MASI,,OT,1,YEL,,STOLEN,18656,"{'type': 'Point', 'coordinates': (-79.43379598, 43.66018604)}"
-18680,24706,GO-2015993145,THEFT UNDER,2015-06-07T00:00:00,2015,June,Sunday,7,158,19,2015-06-13T00:00:00,2015,June,Saturday,13,164,16,D14,Toronto,84,Little Portugal (84),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,ALLEZ,MT,27,BLK,1500.0,STOLEN,18657,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18681,21701,GO-20181044759,THEFT UNDER - BICYCLE,2018-06-07T00:00:00,2018,June,Thursday,7,158,19,2018-06-12T00:00:00,2018,June,Tuesday,12,163,11,D11,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,GIANT,REVEL 2,MT,21,BLKYEL,,STOLEN,18658,"{'type': 'Point', 'coordinates': (-79.44298987, 43.65560387)}"
-18682,3660,GO-20189033567,THEFT UNDER - BICYCLE,2018-10-10T00:00:00,2018,October,Wednesday,10,283,15,2018-10-10T00:00:00,2018,October,Wednesday,10,283,15,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,21,LBL,200.0,STOLEN,18659,"{'type': 'Point', 'coordinates': (-79.42578457, 43.64948236)}"
-18683,12699,GO-20169012752,THEFT UNDER,2016-10-29T00:00:00,2016,October,Saturday,29,303,16,2016-10-29T00:00:00,2016,October,Saturday,29,303,20,D11,Toronto,83,Dufferin Grove (83),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,BIGFOOT,MT,18,WHI,680.0,STOLEN,18660,"{'type': 'Point', 'coordinates': (-79.43474092, 43.65834618000001)}"
-18684,24714,GO-20151035082,THEFT UNDER,2015-06-19T00:00:00,2015,June,Friday,19,170,23,2015-06-20T00:00:00,2015,June,Saturday,20,171,2,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,TALON,MT,27,BLKRED,800.0,STOLEN,18661,"{'type': 'Point', 'coordinates': (-79.42357472, 43.64324598)}"
-18685,21714,GO-20189027574,THEFT UNDER - BICYCLE,2018-08-22T00:00:00,2018,August,Wednesday,22,234,20,2018-08-23T00:00:00,2018,August,Thursday,23,235,11,D11,Toronto,83,Dufferin Grove (83),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,DIVERGE E5 WOME,RC,8,BLK,1800.0,STOLEN,18662,"{'type': 'Point', 'coordinates': (-79.43699471, 43.65521452000001)}"
-18686,3849,GO-20189038046,THEFT UNDER - BICYCLE,2018-10-14T00:00:00,2018,October,Sunday,14,287,11,2018-11-13T00:00:00,2018,November,Tuesday,13,317,14,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,TR,3500 D,MT,7,GRY,500.0,STOLEN,18663,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18687,24739,GO-20159005986,THEFT UNDER,2015-08-17T00:00:00,2015,August,Monday,17,229,12,2015-08-18T00:00:00,2015,August,Tuesday,18,230,23,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,1,BLK,550.0,STOLEN,18664,"{'type': 'Point', 'coordinates': (-79.42595861, 43.64276527)}"
-18688,12783,GO-20162048496,B&E,2016-11-16T00:00:00,2016,November,Wednesday,16,321,23,2016-11-18T00:00:00,2016,November,Friday,18,323,9,D14,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,SIMCOE,CLASSIC,RG,3,,1330.0,STOLEN,18665,"{'type': 'Point', 'coordinates': (-79.4340737, 43.6601452)}"
-18689,21726,GO-20199011546,THEFT UNDER,2019-04-11T00:00:00,2019,April,Thursday,11,101,19,2019-04-11T00:00:00,2019,April,Thursday,11,101,22,D11,Toronto,83,Dufferin Grove (83),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RG,1,GRY,450.0,STOLEN,18666,"{'type': 'Point', 'coordinates': (-79.43699471, 43.65521452000001)}"
-18690,3879,GO-20182135967,THEFT UNDER - BICYCLE,2018-10-28T00:00:00,2018,October,Sunday,28,301,11,2018-11-20T00:00:00,2018,November,Tuesday,20,324,9,D11,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,SCHWINN,,MT,18,REDSIL,300.0,STOLEN,18667,"{'type': 'Point', 'coordinates': (-79.43317649, 43.64858633)}"
-18691,24748,GO-20159006635,THEFT UNDER,2015-09-01T00:00:00,2015,September,Tuesday,1,244,22,2015-09-01T00:00:00,2015,September,Tuesday,1,244,22,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,FJ,DECLARATION,OT,1,GRY,550.0,STOLEN,18668,"{'type': 'Point', 'coordinates': (-79.42595861, 43.64276527)}"
-18692,12784,GO-20162048496,B&E,2016-11-16T00:00:00,2016,November,Wednesday,16,321,23,2016-11-18T00:00:00,2016,November,Friday,18,323,9,D14,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,TREK,,MT,10,SIL,250.0,STOLEN,18669,"{'type': 'Point', 'coordinates': (-79.4340737, 43.6601452)}"
-18693,4005,GO-20199001635,THEFT UNDER - BICYCLE,2019-01-13T00:00:00,2019,January,Sunday,13,13,18,2019-01-13T00:00:00,2019,January,Sunday,13,13,18,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,TR,MARLIN,MT,12,RED,600.0,STOLEN,18670,"{'type': 'Point', 'coordinates': (-79.42727375, 43.64293316)}"
-18694,21756,GO-20199028817,THEFT UNDER,2019-09-03T00:00:00,2019,September,Tuesday,3,246,14,2019-09-05T00:00:00,2019,September,Thursday,5,248,0,D11,Toronto,83,Dufferin Grove (83),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,,MT,21,BLK,300.0,STOLEN,18671,"{'type': 'Point', 'coordinates': (-79.43699471, 43.65521452000001)}"
-18695,12790,GO-20162042670,B&E,2016-11-17T00:00:00,2016,November,Thursday,17,322,17,2016-11-18T00:00:00,2016,November,Friday,18,323,9,D14,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,OTHER,LINUS,MT,3,BLK,800.0,STOLEN,18672,"{'type': 'Point', 'coordinates': (-79.4340737, 43.6601452)}"
-18696,25006,GO-20149008281,THEFT UNDER,2014-11-19T00:00:00,2014,November,Wednesday,19,323,7,2014-11-19T00:00:00,2014,November,Wednesday,19,323,10,D11,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,BIXBY,RG,3,TAN,1950.0,STOLEN,18673,"{'type': 'Point', 'coordinates': (-79.43432619, 43.64662939)}"
-18697,4020,GO-20199003405,THEFT UNDER - BICYCLE,2019-01-24T00:00:00,2019,January,Thursday,24,24,16,2019-01-24T00:00:00,2019,January,Thursday,24,24,16,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,OT,X2 28,RG,24,BLU,650.0,STOLEN,18674,"{'type': 'Point', 'coordinates': (-79.42475884, 43.64301634)}"
-18698,21785,GO-20209014597,THEFT UNDER,2020-05-22T00:00:00,2020,May,Friday,22,143,8,2020-06-04T00:00:00,2020,June,Thursday,4,156,13,D11,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,1,PNK,400.0,STOLEN,18675,"{'type': 'Point', 'coordinates': (-79.44271, 43.65488005)}"
-18699,12791,GO-20162042670,B&E,2016-11-17T00:00:00,2016,November,Thursday,17,322,17,2016-11-18T00:00:00,2016,November,Friday,18,323,9,D14,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,DEVINCI,BRISTOL,RG,27,BLK,300.0,STOLEN,18676,"{'type': 'Point', 'coordinates': (-79.4340737, 43.6601452)}"
-18700,25125,GO-20189027715,THEFT UNDER,2018-08-22T00:00:00,2018,August,Wednesday,22,234,12,2018-08-24T00:00:00,2018,August,Friday,24,236,11,D11,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,FO,7,,825.0,STOLEN,18677,"{'type': 'Point', 'coordinates': (-79.43541175, 43.64945672)}"
-18701,4068,GO-20199006680,THEFT UNDER - BICYCLE,2019-02-01T00:00:00,2019,February,Friday,1,32,11,2019-02-26T00:00:00,2019,February,Tuesday,26,57,12,D14,Toronto,84,Little Portugal (84),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,INDIE 4,MT,24,SIL,800.0,STOLEN,18678,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18702,25141,GO-20191276823,THEFT OVER,2019-07-05T00:00:00,2019,July,Friday,5,186,23,2019-07-08T00:00:00,2019,July,Monday,8,189,23,D11,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,CAMAGNOLO,OT,21,BLKWHI,6000.0,STOLEN,18679,"{'type': 'Point', 'coordinates': (-79.43464706, 43.64746492)}"
-18703,4125,GO-20199010453,THEFT UNDER - BICYCLE,2019-04-02T00:00:00,2019,April,Tuesday,2,92,19,2019-04-03T00:00:00,2019,April,Wednesday,3,93,9,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,OT,SIRRUS,RG,24,GRN,1100.0,STOLEN,18680,"{'type': 'Point', 'coordinates': (-79.42161579, 43.64147337)}"
-18704,25142,GO-20191276823,THEFT OVER,2019-07-05T00:00:00,2019,July,Friday,5,186,23,2019-07-08T00:00:00,2019,July,Monday,8,189,23,D11,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,AQUILA,,OT,21,WHI,4000.0,STOLEN,18681,"{'type': 'Point', 'coordinates': (-79.43464706, 43.64746492)}"
-18705,21900,GO-20159005081,THEFT UNDER,2015-06-23T00:00:00,2015,June,Tuesday,23,174,18,2015-07-28T00:00:00,2015,July,Tuesday,28,209,12,D14,Toronto,83,Dufferin Grove (83),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,DESIRE,RG,8,BLK,750.0,STOLEN,18682,"{'type': 'Point', 'coordinates': (-79.42912178, 43.65581318)}"
-18706,4197,GO-20199012905,THEFT UNDER,2019-04-22T00:00:00,2019,April,Monday,22,112,15,2019-04-24T00:00:00,2019,April,Wednesday,24,114,15,D11,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,BEDFORD 3 SPEED,RG,3,GRN,650.0,STOLEN,18683,"{'type': 'Point', 'coordinates': (-79.43556322, 43.64988978)}"
-18707,21935,GO-20159009042,THEFT UNDER,2015-10-26T00:00:00,2015,October,Monday,26,299,9,2015-10-26T00:00:00,2015,October,Monday,26,299,16,D14,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,TR,EARL,RG,1,BLK,100.0,STOLEN,18684,"{'type': 'Point', 'coordinates': (-79.42739759, 43.65617153)}"
-18708,25195,GO-2016914545,THEFT UNDER - BICYCLE,2016-04-25T00:00:00,2016,April,Monday,25,116,8,2016-05-27T00:00:00,2016,May,Friday,27,148,13,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KONA,DEW DELUX,MT,21,GRNWHI,1000.0,STOLEN,18685,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18709,23851,GO-20201926773,THEFT FROM MOTOR VEHICLE UNDER,2020-10-10T00:00:00,2020,October,Saturday,10,284,17,2020-10-10T00:00:00,2020,October,Saturday,10,284,17,D14,Toronto,83,Dufferin Grove (83),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,CROSSROADS,MT,18,BLUSIL,767.0,STOLEN,18686,"{'type': 'Point', 'coordinates': (-79.43316835, 43.65423839)}"
-18710,12792,GO-20162042670,B&E,2016-11-17T00:00:00,2016,November,Thursday,17,322,17,2016-11-18T00:00:00,2016,November,Friday,18,323,9,D14,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,OTHER,T700,MT,21,BLK,2000.0,STOLEN,18687,"{'type': 'Point', 'coordinates': (-79.4340737, 43.6601452)}"
-18711,23998,GO-20189036805,THEFT UNDER - BICYCLE,2018-10-23T00:00:00,2018,October,Tuesday,23,296,18,2018-11-04T00:00:00,2018,November,Sunday,4,308,15,D14,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,EPIC MARATHON,MT,9,SIL,2500.0,STOLEN,18688,"{'type': 'Point', 'coordinates': (-79.42912178, 43.65581318)}"
-18712,12793,GO-20162048496,B&E,2016-11-16T00:00:00,2016,November,Wednesday,16,321,23,2016-11-18T00:00:00,2016,November,Friday,18,323,9,D14,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,OTHER,SIMCOE,OT,3,DBL,1330.0,STOLEN,18689,"{'type': 'Point', 'coordinates': (-79.4340737, 43.6601452)}"
-18713,24032,GO-20199014214,THEFT UNDER,2019-05-07T00:00:00,2019,May,Tuesday,7,127,0,2019-05-07T00:00:00,2019,May,Tuesday,7,127,15,D14,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,1,BLK,550.0,STOLEN,18690,"{'type': 'Point', 'coordinates': (-79.42963756, 43.65291556)}"
-18714,24097,GO-20199028675,THEFT UNDER - BICYCLE,2019-09-03T00:00:00,2019,September,Tuesday,3,246,22,2019-09-04T00:00:00,2019,September,Wednesday,4,247,7,D14,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,ESCAPE 1,RG,27,BLK,800.0,STOLEN,18691,"{'type': 'Point', 'coordinates': (-79.4340737, 43.6601452)}"
-18715,12794,GO-20162048496,B&E,2016-11-16T00:00:00,2016,November,Wednesday,16,321,23,2016-11-18T00:00:00,2016,November,Friday,18,323,9,D14,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,TREK,,MT,18,SIL,,STOLEN,18692,"{'type': 'Point', 'coordinates': (-79.4340737, 43.6601452)}"
-18716,25235,GO-20169008466,THEFT UNDER - BICYCLE,2016-08-06T00:00:00,2016,August,Saturday,6,219,21,2016-08-09T00:00:00,2016,August,Tuesday,9,222,19,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,OT,ORIGINAL,RG,1,WHI,400.0,STOLEN,18693,"{'type': 'Point', 'coordinates': (-79.42161579, 43.64147337)}"
-18717,14291,GO-20201433630,THEFT OF EBIKE UNDER $5000,2020-08-01T00:00:00,2020,August,Saturday,1,214,13,2020-08-01T00:00:00,2020,August,Saturday,1,214,13,D14,Toronto,83,Dufferin Grove (83),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,,EL,1,BLUBLK,2000.0,STOLEN,18694,"{'type': 'Point', 'coordinates': (-79.43024148, 43.65862882)}"
-18718,24261,GO-20179019701,THEFT UNDER - BICYCLE,2017-11-15T00:00:00,2017,November,Wednesday,15,319,1,2017-11-15T00:00:00,2017,November,Wednesday,15,319,11,D14,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,LYNC 5,RG,8,BLK,2000.0,STOLEN,18695,"{'type': 'Point', 'coordinates': (-79.43427392, 43.65712246)}"
-18719,4200,GO-2019673055,THEFT OF EBIKE UNDER $5000,2019-04-14T00:00:00,2019,April,Sunday,14,104,11,2019-04-14T00:00:00,2019,April,Sunday,14,104,11,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,EMMO,,EL,1,BLK,,RECOVERED,18696,"{'type': 'Point', 'coordinates': (-79.42978953, 43.64958423)}"
-18720,24403,GO-20201688689,THEFT UNDER - BICYCLE,2020-09-02T00:00:00,2020,September,Wednesday,2,246,17,2020-09-06T00:00:00,2020,September,Sunday,6,250,19,D11,Toronto,83,Dufferin Grove (83),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,,OT,12,BLK,2000.0,STOLEN,18697,"{'type': 'Point', 'coordinates': (-79.43699471, 43.65521452000001)}"
-18721,14307,GO-20201656635,B&E,2020-07-29T00:00:00,2020,July,Wednesday,29,211,20,2020-09-02T00:00:00,2020,September,Wednesday,2,246,14,D14,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FUJI,STROLL,OT,21,WHI,900.0,STOLEN,18698,"{'type': 'Point', 'coordinates': (-79.43379598, 43.66018604)}"
-18722,25252,GO-20169009691,THEFT UNDER - BICYCLE,2016-08-01T00:00:00,2016,August,Monday,1,214,11,2016-08-30T00:00:00,2016,August,Tuesday,30,243,11,D14,Toronto,84,Little Portugal (84),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CR,,RG,18,YEL,600.0,STOLEN,18699,"{'type': 'Point', 'coordinates': (-79.42727375, 43.64293316)}"
-18723,4268,GO-2019868952,THEFT UNDER - BICYCLE,2019-05-10T00:00:00,2019,May,Friday,10,130,18,2019-05-13T00:00:00,2019,May,Monday,13,133,11,D14,Toronto,84,Little Portugal (84),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,HUNTER CORELINE,TO,1,GRN,800.0,STOLEN,18700,"{'type': 'Point', 'coordinates': (-79.42475884, 43.64301634)}"
-18724,24630,GO-20149005152,THEFT UNDER,2014-07-11T00:00:00,2014,July,Friday,11,192,1,2014-07-20T00:00:00,2014,July,Sunday,20,201,21,D14,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,UK,JETTA,SC,2,RED,1250.0,STOLEN,18701,"{'type': 'Point', 'coordinates': (-79.42814667, 43.65322723)}"
-18725,14308,GO-20201656635,B&E,2020-07-29T00:00:00,2020,July,Wednesday,29,211,20,2020-09-02T00:00:00,2020,September,Wednesday,2,246,14,D14,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SIRRUS,RG,21,BLK,700.0,STOLEN,18702,"{'type': 'Point', 'coordinates': (-79.43379598, 43.66018604)}"
-18726,25280,GO-20161864520,THEFT UNDER - BICYCLE,2016-10-19T00:00:00,2016,October,Wednesday,19,293,21,2016-10-20T00:00:00,2016,October,Thursday,20,294,7,D14,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RC,80,BLU,350.0,STOLEN,18703,"{'type': 'Point', 'coordinates': (-79.42947954, 43.644636080000005)}"
-18727,4378,GO-2019983756,THEFT UNDER - BICYCLE,2019-05-28T00:00:00,2019,May,Tuesday,28,148,21,2019-05-29T00:00:00,2019,May,Wednesday,29,149,12,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,7,BLK,1000.0,STOLEN,18704,"{'type': 'Point', 'coordinates': (-79.42368786, 43.64113148)}"
-18728,24676,GO-20149008306,THEFT UNDER,2014-11-19T00:00:00,2014,November,Wednesday,19,323,17,2014-11-20T00:00:00,2014,November,Thursday,20,324,13,D14,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RC,1,BLU,,STOLEN,18705,"{'type': 'Point', 'coordinates': (-79.43142602, 43.65390623)}"
-18729,14309,GO-20201656635,B&E,2020-07-29T00:00:00,2020,July,Wednesday,29,211,20,2020-09-02T00:00:00,2020,September,Wednesday,2,246,14,D14,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,TRIATHALON,RC,21,BLKBLU,1400.0,STOLEN,18706,"{'type': 'Point', 'coordinates': (-79.43379598, 43.66018604)}"
-18730,25284,GO-20169013386,B&E,2016-11-02T00:00:00,2016,November,Wednesday,2,307,12,2016-11-14T00:00:00,2016,November,Monday,14,319,12,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,1,RED,500.0,STOLEN,18707,"{'type': 'Point', 'coordinates': (-79.42727375, 43.64293316)}"
-18731,4400,GO-20199017185,THEFT UNDER,2019-05-13T00:00:00,2019,May,Monday,13,133,23,2019-06-02T00:00:00,2019,June,Sunday,2,153,17,D11,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,GASTON,RG,3,BGE,450.0,STOLEN,18708,"{'type': 'Point', 'coordinates': (-79.43576986, 43.64848971)}"
-18732,4401,GO-20199017186,THEFT UNDER,2019-06-01T00:00:00,2019,June,Saturday,1,152,7,2019-06-02T00:00:00,2019,June,Sunday,2,153,18,D11,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,LAKESHORE,RG,1,RED,595.0,STOLEN,18709,"{'type': 'Point', 'coordinates': (-79.43576986, 43.64848971)}"
-18733,4600,GO-20199020037,THEFT UNDER,2019-06-24T00:00:00,2019,June,Monday,24,175,0,2019-06-25T00:00:00,2019,June,Tuesday,25,176,12,D11,Toronto,84,Little Portugal (84),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,,MT,21,BLK,0.0,STOLEN,18710,"{'type': 'Point', 'coordinates': (-79.4340382, 43.65080701)}"
-18734,4635,GO-20199020394,THEFT UNDER,2019-06-28T00:00:00,2019,June,Friday,28,179,8,2019-06-28T00:00:00,2019,June,Friday,28,179,8,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,UK,WINDSOR,RG,24,TRQ,500.0,STOLEN,18711,"{'type': 'Point', 'coordinates': (-79.42161579, 43.64147337)}"
-18735,4772,GO-20199022271,THEFT UNDER,2019-07-13T00:00:00,2019,July,Saturday,13,194,18,2019-07-15T00:00:00,2019,July,Monday,15,196,6,D14,Toronto,84,Little Portugal (84),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,ESCAPE CITY 2,RG,17,GRY,600.0,STOLEN,18712,"{'type': 'Point', 'coordinates': (-79.42357472, 43.64324598)}"
-18736,4787,GO-20199022587,THEFT UNDER,2019-07-16T00:00:00,2019,July,Tuesday,16,197,3,2019-07-16T00:00:00,2019,July,Tuesday,16,197,19,D14,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,MEN'S HUNTINGTO,OT,1,BLK,600.0,STOLEN,18713,"{'type': 'Point', 'coordinates': (-79.4294114, 43.65296386)}"
-18737,4863,GO-20191365073,THEFT UNDER,2019-07-17T00:00:00,2019,July,Wednesday,17,198,23,2019-07-20T00:00:00,2019,July,Saturday,20,201,20,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,OTHER,,OT,21,DGR,,STOLEN,18714,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18738,4892,GO-20199023849,THEFT UNDER,2019-07-25T00:00:00,2019,July,Thursday,25,206,21,2019-07-26T00:00:00,2019,July,Friday,26,207,11,D11,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,3,BLK,1900.0,STOLEN,18715,"{'type': 'Point', 'coordinates': (-79.43521699, 43.64644765)}"
-18739,4938,GO-20199024492,THEFT UNDER,2019-07-26T00:00:00,2019,July,Friday,26,207,14,2019-07-31T00:00:00,2019,July,Wednesday,31,212,12,D11,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,INDIE 4,RG,24,RED,500.0,STOLEN,18716,"{'type': 'Point', 'coordinates': (-79.43521699, 43.64644765)}"
-18740,4939,GO-20199024506,THEFT UNDER,2019-07-26T00:00:00,2019,July,Friday,26,207,14,2019-07-31T00:00:00,2019,July,Wednesday,31,212,12,D11,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,REVOLT 3,OT,8,BLU,600.0,STOLEN,18717,"{'type': 'Point', 'coordinates': (-79.43521699, 43.64644765)}"
-18741,5040,GO-20199022587,THEFT UNDER,2019-07-16T00:00:00,2019,July,Tuesday,16,197,3,2019-07-16T00:00:00,2019,July,Tuesday,16,197,19,D14,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,MEN'S HUNTINGTO,OT,1,BLK,500.0,STOLEN,18718,"{'type': 'Point', 'coordinates': (-79.4294114, 43.65296386)}"
-18742,5056,GO-20199026099,THEFT UNDER - BICYCLE,2019-08-02T00:00:00,2019,August,Friday,2,214,0,2019-08-13T00:00:00,2019,August,Tuesday,13,225,19,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,32,WHI,600.0,STOLEN,18719,"{'type': 'Point', 'coordinates': (-79.42475884, 43.64301634)}"
-18743,5125,GO-20199027186,THEFT UNDER - BICYCLE,2019-08-18T00:00:00,2019,August,Sunday,18,230,18,2019-08-21T00:00:00,2019,August,Wednesday,21,233,18,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,CC,AVENUE,OT,18,PLE,200.0,STOLEN,18720,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18744,5367,GO-20199030627,THEFT UNDER - BICYCLE,2019-09-16T00:00:00,2019,September,Monday,16,259,19,2019-09-19T00:00:00,2019,September,Thursday,19,262,9,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,GI,ALIGHT,RG,24,BLK,600.0,STOLEN,18721,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18745,5427,GO-20199031896,THEFT UNDER,2019-09-23T00:00:00,2019,September,Monday,23,266,23,2019-09-28T00:00:00,2019,September,Saturday,28,271,15,D11,Toronto,84,Little Portugal (84),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KO,,OT,8,CPR,1000.0,STOLEN,18722,"{'type': 'Point', 'coordinates': (-79.43034133, 43.64684372)}"
-18746,5561,GO-20199034688,THEFT UNDER - BICYCLE,2019-10-19T00:00:00,2019,October,Saturday,19,292,19,2019-10-21T00:00:00,2019,October,Monday,21,294,17,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,OT,LAKESHORE,RG,1,RED,868.0,STOLEN,18723,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18747,5573,GO-20192056126,PROPERTY - FOUND,2019-10-24T00:00:00,2019,October,Thursday,24,297,19,2019-10-24T00:00:00,2019,October,Thursday,24,297,19,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,K2,,MT,21,WHT,,UNKNOWN,18724,"{'type': 'Point', 'coordinates': (-79.42551956, 43.65145583)}"
-18748,5574,GO-20192056126,PROPERTY - FOUND,2019-10-24T00:00:00,2019,October,Thursday,24,297,19,2019-10-24T00:00:00,2019,October,Thursday,24,297,19,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,,MT,21,BLK,,UNKNOWN,18725,"{'type': 'Point', 'coordinates': (-79.42551956, 43.65145583)}"
-18749,5575,GO-20192056126,PROPERTY - FOUND,2019-10-24T00:00:00,2019,October,Thursday,24,297,19,2019-10-24T00:00:00,2019,October,Thursday,24,297,19,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,,MT,21,GREY,,UNKNOWN,18726,"{'type': 'Point', 'coordinates': (-79.42551956, 43.65145583)}"
-18750,5576,GO-20192056126,PROPERTY - FOUND,2019-10-24T00:00:00,2019,October,Thursday,24,297,19,2019-10-24T00:00:00,2019,October,Thursday,24,297,19,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,,MT,21,BLK,,UNKNOWN,18727,"{'type': 'Point', 'coordinates': (-79.42551956, 43.65145583)}"
-18751,5577,GO-20192056126,PROPERTY - FOUND,2019-10-24T00:00:00,2019,October,Thursday,24,297,19,2019-10-24T00:00:00,2019,October,Thursday,24,297,19,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,,MT,21,,,UNKNOWN,18728,"{'type': 'Point', 'coordinates': (-79.42551956, 43.65145583)}"
-18752,5578,GO-20192056126,PROPERTY - FOUND,2019-10-24T00:00:00,2019,October,Thursday,24,297,19,2019-10-24T00:00:00,2019,October,Thursday,24,297,19,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,,MT,21,RED,,UNKNOWN,18729,"{'type': 'Point', 'coordinates': (-79.42551956, 43.65145583)}"
-18753,5579,GO-20192056126,PROPERTY - FOUND,2019-10-24T00:00:00,2019,October,Thursday,24,297,19,2019-10-24T00:00:00,2019,October,Thursday,24,297,19,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,,MT,21,BLK,,UNKNOWN,18730,"{'type': 'Point', 'coordinates': (-79.42551956, 43.65145583)}"
-18754,5580,GO-20192056126,PROPERTY - FOUND,2019-10-24T00:00:00,2019,October,Thursday,24,297,19,2019-10-24T00:00:00,2019,October,Thursday,24,297,19,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,,MT,21,GREY,,UNKNOWN,18731,"{'type': 'Point', 'coordinates': (-79.42551956, 43.65145583)}"
-18755,5581,GO-20192056126,PROPERTY - FOUND,2019-10-24T00:00:00,2019,October,Thursday,24,297,19,2019-10-24T00:00:00,2019,October,Thursday,24,297,19,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,,MT,21,BLK,,UNKNOWN,18732,"{'type': 'Point', 'coordinates': (-79.42551956, 43.65145583)}"
-18756,5582,GO-20192056126,PROPERTY - FOUND,2019-10-24T00:00:00,2019,October,Thursday,24,297,19,2019-10-24T00:00:00,2019,October,Thursday,24,297,19,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BRODIE,,MT,21,WHT,,UNKNOWN,18733,"{'type': 'Point', 'coordinates': (-79.42551956, 43.65145583)}"
-18757,5590,GO-20199035131,THEFT UNDER - BICYCLE,2019-10-24T00:00:00,2019,October,Thursday,24,297,18,2019-10-24T00:00:00,2019,October,Thursday,24,297,18,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE 1,RG,9,GRY,800.0,STOLEN,18734,"{'type': 'Point', 'coordinates': (-79.42161579, 43.64147337)}"
-18758,5815,GO-202055457,B&E,2020-01-04T00:00:00,2020,January,Saturday,4,4,10,2020-01-04T00:00:00,2020,January,Saturday,4,4,10,D14,Toronto,84,Little Portugal (84),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,MASI,GRAND,RG,20,BLU,1500.0,STOLEN,18735,"{'type': 'Point', 'coordinates': (-79.42237064, 43.64349082)}"
-18759,5832,GO-20209001681,THEFT UNDER,2020-01-14T00:00:00,2020,January,Tuesday,14,14,10,2020-01-15T00:00:00,2020,January,Wednesday,15,15,12,D14,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,ROAM,RG,6,BLK,800.0,STOLEN,18736,"{'type': 'Point', 'coordinates': (-79.42851622, 43.65188448)}"
-18760,5887,GO-20209004967,THEFT UNDER,2020-02-08T00:00:00,2020,February,Saturday,8,39,11,2020-02-10T00:00:00,2020,February,Monday,10,41,21,D14,Toronto,84,Little Portugal (84),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,TRICROSS SPORT,TO,27,GRY,2000.0,STOLEN,18737,"{'type': 'Point', 'coordinates': (-79.42744531, 43.65131756)}"
-18761,5990,GO-20209009788,THEFT UNDER,2020-03-24T00:00:00,2020,March,Tuesday,24,84,17,2020-03-25T00:00:00,2020,March,Wednesday,25,85,11,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,TR,720,TO,21,BLK,500.0,STOLEN,18738,"{'type': 'Point', 'coordinates': (-79.42578457, 43.64948236)}"
-18762,6044,GO-20209010848,THEFT UNDER,2020-04-06T00:00:00,2020,April,Monday,6,97,15,2020-04-10T00:00:00,2020,April,Friday,10,101,13,D14,Toronto,84,Little Portugal (84),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SU,NITROUS,MT,21,BLK,200.0,STOLEN,18739,"{'type': 'Point', 'coordinates': (-79.42727375, 43.64293316)}"
-18763,6067,GO-20209011215,THEFT UNDER - BICYCLE,2020-04-12T00:00:00,2020,April,Sunday,12,103,14,2020-04-15T00:00:00,2020,April,Wednesday,15,106,16,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,6,YEL,0.0,STOLEN,18740,"{'type': 'Point', 'coordinates': (-79.42368786, 43.64113148)}"
-18764,6125,GO-20209012242,THEFT UNDER,2020-04-30T00:00:00,2020,April,Thursday,30,121,0,2020-04-30T00:00:00,2020,April,Thursday,30,121,18,D14,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,CHELSEA 9 CITY,RG,10,CRM,1000.0,STOLEN,18741,"{'type': 'Point', 'coordinates': (-79.42502961000001, 43.65023965)}"
-18765,6175,GO-2020890602,THEFT OVER - BICYCLE,2020-04-15T00:00:00,2020,April,Wednesday,15,106,17,2020-05-13T00:00:00,2020,May,Wednesday,13,134,16,D11,Toronto,84,Little Portugal (84),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,EL,40,,500.0,STOLEN,18742,"{'type': 'Point', 'coordinates': (-79.43198118, 43.6455628)}"
-18766,6234,GO-20209013761,THEFT UNDER,2020-05-23T00:00:00,2020,May,Saturday,23,144,23,2020-05-23T00:00:00,2020,May,Saturday,23,144,23,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,10,BLK,0.0,STOLEN,18743,"{'type': 'Point', 'coordinates': (-79.42808463, 43.64955835)}"
-18767,6295,GO-20209014466,THEFT UNDER,2020-05-31T00:00:00,2020,May,Sunday,31,152,13,2020-06-03T00:00:00,2020,June,Wednesday,3,155,13,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,OT,HARRIER,RG,3,GRY,350.0,RECOVERED,18744,"{'type': 'Point', 'coordinates': (-79.42808463, 43.64955835)}"
-18768,6345,GO-20209014925,THEFT UNDER,2020-06-08T00:00:00,2020,June,Monday,8,160,21,2020-06-09T00:00:00,2020,June,Tuesday,9,161,8,D11,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,CROSS CHECK,OT,9,DBL,1000.0,STOLEN,18745,"{'type': 'Point', 'coordinates': (-79.43818548, 43.6480036)}"
-18769,6366,GO-20201064040,THEFT UNDER - BICYCLE,2020-06-07T00:00:00,2020,June,Sunday,7,159,8,2020-06-09T00:00:00,2020,June,Tuesday,9,161,21,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,GIANT,ESCAPE 2,OT,0,BLK,900.0,STOLEN,18746,"{'type': 'Point', 'coordinates': (-79.42475884, 43.64301634)}"
-18770,6425,GO-20209015701,THEFT UNDER,2020-06-18T00:00:00,2020,June,Thursday,18,170,17,2020-06-19T00:00:00,2020,June,Friday,19,171,10,D14,Toronto,84,Little Portugal (84),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,SIRRUS 2.0,RG,8,BLK,800.0,STOLEN,18747,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18771,6449,GO-20209015984,THEFT UNDER,2020-06-22T00:00:00,2020,June,Monday,22,174,22,2020-06-23T00:00:00,2020,June,Tuesday,23,175,16,D14,Toronto,84,Little Portugal (84),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,WEB,BM,1,BLU,250.0,STOLEN,18749,"{'type': 'Point', 'coordinates': (-79.42891262, 43.64723175)}"
-18772,6504,GO-20209016575,THEFT UNDER,2020-06-29T00:00:00,2020,June,Monday,29,181,17,2020-06-30T00:00:00,2020,June,Tuesday,30,182,16,D14,Toronto,84,Little Portugal (84),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,R10000,RC,10,GRN,1700.0,STOLEN,18750,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18773,6515,GO-20209016657,THEFT UNDER,2020-06-28T00:00:00,2020,June,Sunday,28,180,0,2020-07-02T00:00:00,2020,July,Thursday,2,184,12,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,8,BLK,180.0,STOLEN,18751,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18774,6543,GO-20209016974,THEFT UNDER,2020-07-06T00:00:00,2020,July,Monday,6,188,18,2020-07-06T00:00:00,2020,July,Monday,6,188,19,D11,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,BLK,200.0,STOLEN,18752,"{'type': 'Point', 'coordinates': (-79.43198118, 43.6455628)}"
-18775,6554,GO-20209017055,THEFT UNDER,2020-07-06T00:00:00,2020,July,Monday,6,188,9,2020-07-07T00:00:00,2020,July,Tuesday,7,189,15,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,6,GRY,370.0,STOLEN,18753,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18776,6600,GO-20209017398,THEFT UNDER,2020-06-01T00:00:00,2020,June,Monday,1,153,19,2020-07-12T00:00:00,2020,July,Sunday,12,194,19,D14,Toronto,84,Little Portugal (84),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RG,1,BLK,600.0,STOLEN,18754,"{'type': 'Point', 'coordinates': (-79.42368786, 43.64113148)}"
-18777,6628,GO-20209017615,THEFT UNDER,2020-06-28T00:00:00,2020,June,Sunday,28,180,18,2020-07-15T00:00:00,2020,July,Wednesday,15,197,12,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,OT,XC COMP,MT,20,SIL,2000.0,STOLEN,18755,"{'type': 'Point', 'coordinates': (-79.42368786, 43.64113148)}"
-18778,6629,GO-20209017615,THEFT UNDER,2020-06-28T00:00:00,2020,June,Sunday,28,180,18,2020-07-15T00:00:00,2020,July,Wednesday,15,197,12,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,GI,TRANCE X 29ER,MT,20,BLK,1925.0,STOLEN,18756,"{'type': 'Point', 'coordinates': (-79.42368786, 43.64113148)}"
-18779,6673,GO-20201347280,B&E,2020-06-29T00:00:00,2020,June,Monday,29,181,14,2020-07-20T00:00:00,2020,July,Monday,20,202,12,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,CERVELO,TRIAPHOLON,MT,0,,5500.0,STOLEN,18757,"{'type': 'Point', 'coordinates': (-79.42237064, 43.64349082)}"
-18780,6674,GO-20201347280,B&E,2020-06-29T00:00:00,2020,June,Monday,29,181,14,2020-07-20T00:00:00,2020,July,Monday,20,202,12,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,FELT,F4,OT,0,,2500.0,STOLEN,18758,"{'type': 'Point', 'coordinates': (-79.42237064, 43.64349082)}"
-18781,6695,GO-20201362694,B&E,2020-07-05T00:00:00,2020,July,Sunday,5,187,10,2020-07-22T00:00:00,2020,July,Wednesday,22,204,14,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,CANNONDALE,SUPERSIX EVO,RC,11,,2200.0,STOLEN,18759,"{'type': 'Point', 'coordinates': (-79.42237064, 43.64349082)}"
-18782,6696,GO-20201362694,B&E,2020-07-05T00:00:00,2020,July,Sunday,5,187,10,2020-07-22T00:00:00,2020,July,Wednesday,22,204,14,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,TREK,,RC,11,,600.0,STOLEN,18760,"{'type': 'Point', 'coordinates': (-79.42237064, 43.64349082)}"
-18783,6760,GO-20209018708,THEFT UNDER,2020-07-12T00:00:00,2020,July,Sunday,12,194,20,2020-07-27T00:00:00,2020,July,Monday,27,209,16,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,10,BLK,460.0,STOLEN,18761,"{'type': 'Point', 'coordinates': (-79.42368786, 43.64113148)}"
-18784,6797,GO-20209018841,THEFT UNDER,2020-07-27T00:00:00,2020,July,Monday,27,209,23,2020-07-28T00:00:00,2020,July,Tuesday,28,210,19,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,OT,V4,OT,7,BLK,1800.0,STOLEN,18762,"{'type': 'Point', 'coordinates': (-79.42595861, 43.64276527)}"
-18785,6812,GO-20209018954,THEFT UNDER,2020-07-19T00:00:00,2020,July,Sunday,19,201,8,2020-07-30T00:00:00,2020,July,Thursday,30,212,8,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,SU,SUPERCYCLE CIRC,RG,14,BLU,300.0,STOLEN,18763,"{'type': 'Point', 'coordinates': (-79.42368786, 43.64113148)}"
-18786,6856,GO-20209019269,THEFT UNDER,2020-07-30T00:00:00,2020,July,Thursday,30,212,18,2020-08-03T00:00:00,2020,August,Monday,3,216,20,D11,Toronto,84,Little Portugal (84),"Private Property Structure (Pool, Shed, Detached Garage)",Other,,,MT,18,BLK,250.0,STOLEN,18764,"{'type': 'Point', 'coordinates': (-79.43454496, 43.65214721)}"
-18787,6905,GO-20209019713,THEFT UNDER,2020-08-04T00:00:00,2020,August,Tuesday,4,217,17,2020-08-08T00:00:00,2020,August,Saturday,8,221,19,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,TR,3500,MT,7,SIL,500.0,STOLEN,18765,"{'type': 'Point', 'coordinates': (-79.42602616, 43.65272693)}"
-18788,6910,GO-20209019721,THEFT UNDER,2020-08-09T00:00:00,2020,August,Sunday,9,222,0,2020-08-09T00:00:00,2020,August,Sunday,9,222,8,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,BLU,500.0,STOLEN,18766,"{'type': 'Point', 'coordinates': (-79.42978953, 43.64958423)}"
-18789,6912,GO-20209019737,THEFT UNDER,2020-08-03T00:00:00,2020,August,Monday,3,216,11,2020-08-09T00:00:00,2020,August,Sunday,9,222,12,D11,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,3,WHI,700.0,STOLEN,18767,"{'type': 'Point', 'coordinates': (-79.43198118, 43.6455628)}"
-18790,7003,GO-20209020706,THEFT FROM MOTOR VEHICLE UNDER,2020-08-14T00:00:00,2020,August,Friday,14,227,1,2020-08-19T00:00:00,2020,August,Wednesday,19,232,16,D11,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,PANAMAO,MT,12,BLK,1050.0,STOLEN,18768,"{'type': 'Point', 'coordinates': (-79.43432619, 43.64662939)}"
-18791,7010,GO-20201567569,THEFT UNDER,2020-08-01T00:00:00,2020,August,Saturday,1,214,15,2020-08-20T00:00:00,2020,August,Thursday,20,233,17,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CANADIAN TIRE,,MT,18,BLK,,STOLEN,18769,"{'type': 'Point', 'coordinates': (-79.42161579, 43.64147337)}"
-18792,7085,GO-20209021433,THEFT UNDER,2020-08-26T00:00:00,2020,August,Wednesday,26,239,12,2020-08-26T00:00:00,2020,August,Wednesday,26,239,15,D14,Toronto,84,Little Portugal (84),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,20 OPUS ORPHEO,RG,5,WHI,751.0,STOLEN,18770,"{'type': 'Point', 'coordinates': (-79.42575624, 43.64711978)}"
-18793,7171,GO-20209022254,THEFT UNDER,2020-09-03T00:00:00,2020,September,Thursday,3,247,16,2020-09-03T00:00:00,2020,September,Thursday,3,247,20,D11,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,TALON,MT,9,ONG,900.0,STOLEN,18771,"{'type': 'Point', 'coordinates': (-79.43454496, 43.65214721)}"
-18794,7358,GO-20209024556,THEFT UNDER,2020-09-23T00:00:00,2020,September,Wednesday,23,267,14,2020-09-25T00:00:00,2020,September,Friday,25,269,19,D14,Toronto,84,Little Portugal (84),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GT,GT TRANSEO SPOR,RG,24,BLK,400.0,STOLEN,18772,"{'type': 'Point', 'coordinates': (-79.42727375, 43.64293316)}"
-18795,7536,GO-20209027525,THEFT UNDER,2020-10-23T00:00:00,2020,October,Friday,23,297,12,2020-10-24T00:00:00,2020,October,Saturday,24,298,12,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,CA,CANONDALE,RG,3,BLK,700.0,STOLEN,18773,"{'type': 'Point', 'coordinates': (-79.42475884, 43.64301634)}"
-18796,7539,GO-20209027554,THEFT UNDER,2020-10-23T00:00:00,2020,October,Friday,23,297,23,2020-10-24T00:00:00,2020,October,Saturday,24,298,16,D14,Toronto,84,Little Portugal (84),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,MILANO,OT,21,BLK,565.0,STOLEN,18774,"{'type': 'Point', 'coordinates': (-79.42407483, 43.64782021)}"
-18797,7584,GO-20202072445,THEFT UNDER - BICYCLE,2020-10-31T00:00:00,2020,October,Saturday,31,305,20,2020-11-02T00:00:00,2020,November,Monday,2,307,17,D14,Toronto,84,Little Portugal (84),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SIMCOE,,TO,21,MRN,1500.0,STOLEN,18775,"{'type': 'Point', 'coordinates': (-79.42769148000001, 43.64408519)}"
-18798,7646,GO-20209030034,THEFT UNDER,2020-10-19T00:00:00,2020,October,Monday,19,293,9,2020-11-19T00:00:00,2020,November,Thursday,19,324,10,D14,Toronto,84,Little Portugal (84),"Open Areas (Lakes, Parks, Rivers)",Outside,FJ,ABSOLUTE 2.3 (2,RG,24,GRY,450.0,STOLEN,18776,"{'type': 'Point', 'coordinates': (-79.42368786, 43.64113148)}"
-18799,7716,GO-20209032859,THEFT UNDER,2020-07-03T00:00:00,2020,July,Friday,3,185,19,2020-12-26T00:00:00,2020,December,Saturday,26,361,14,D14,Toronto,84,Little Portugal (84),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,MT,24,ONG,450.0,STOLEN,18777,"{'type': 'Point', 'coordinates': (-79.42833701, 43.64575475)}"
-18800,7717,GO-20209032860,THEFT UNDER,2020-07-03T00:00:00,2020,July,Friday,3,185,15,2020-12-26T00:00:00,2020,December,Saturday,26,361,16,D14,Toronto,84,Little Portugal (84),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,,RG,1,ONG,400.0,STOLEN,18778,"{'type': 'Point', 'coordinates': (-79.42833701, 43.64575475)}"
-18801,7726,GO-2017510128,THEFT UNDER - BICYCLE,2017-03-12T00:00:00,2017,March,Sunday,12,71,10,2017-03-22T00:00:00,2017,March,Wednesday,22,81,14,D11,Toronto,84,Little Portugal (84),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,GIANT,ESCAPE,OT,1,GRY,700.0,STOLEN,18779,"{'type': 'Point', 'coordinates': (-79.43365028, 43.649772590000005)}"
-18802,7745,GO-20141333599,THEFT UNDER,2014-01-13T00:00:00,2014,January,Monday,13,13,6,2014-01-13T00:00:00,2014,January,Monday,13,13,6,D11,Toronto,84,Little Portugal (84),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KHS,FLITE 300,RC,10,,1100.0,STOLEN,18780,"{'type': 'Point', 'coordinates': (-79.43419446, 43.64630575)}"
-18803,7817,GO-20149002580,THEFT UNDER,2014-04-04T00:00:00,2014,April,Friday,4,94,22,2014-04-05T00:00:00,2014,April,Saturday,5,95,13,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,RA,,RG,7,MRN,500.0,STOLEN,18781,"{'type': 'Point', 'coordinates': (-79.42578457, 43.64948236)}"
-18804,7861,GO-20141952954,THEFT UNDER,2014-04-24T00:00:00,2014,April,Thursday,24,114,11,2014-04-26T00:00:00,2014,April,Saturday,26,116,13,D14,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,CRUSOR,TO,1,GLD,10.0,STOLEN,18782,"{'type': 'Point', 'coordinates': (-79.42790563, 43.65252212)}"
-18805,25297,GO-2017663171,B&E,2017-04-15T00:00:00,2017,April,Saturday,15,105,5,2017-04-15T00:00:00,2017,April,Saturday,15,105,12,D14,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,RAPID,OT,20,BLUBLK,1500.0,STOLEN,18783,"{'type': 'Point', 'coordinates': (-79.42368786, 43.64113148)}"
-18806,24703,GO-20159003208,THEFT UNDER,2015-05-29T00:00:00,2015,May,Friday,29,149,20,2015-05-30T00:00:00,2015,May,Saturday,30,150,16,D14,Toronto,83,Dufferin Grove (83),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,QX60,RG,21,BLK,495.0,STOLEN,18784,"{'type': 'Point', 'coordinates': (-79.42814667, 43.65322723)}"
-18807,25309,GO-20179008290,THEFT UNDER - BICYCLE,2017-06-15T00:00:00,2017,June,Thursday,15,166,23,2017-06-18T00:00:00,2017,June,Sunday,18,169,15,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,OT,ABACABB 2.0,RG,1,GRY,500.0,STOLEN,18785,"{'type': 'Point', 'coordinates': (-79.42368786, 43.64113148)}"
-18808,25375,GO-20209017384,THEFT UNDER,2020-07-11T00:00:00,2020,July,Saturday,11,193,15,2020-07-12T00:00:00,2020,July,Sunday,12,194,15,D11,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,21,GRN,250.0,STOLEN,18786,"{'type': 'Point', 'coordinates': (-79.43287384000001, 43.64781668)}"
-18809,24736,GO-20151420456,THEFT UNDER,2015-08-08T00:00:00,2015,August,Saturday,8,220,22,2015-08-18T00:00:00,2015,August,Tuesday,18,230,12,D14,Toronto,83,Dufferin Grove (83),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KHS,FLIGHT 220,RC,18,WHI,300.0,STOLEN,18787,"{'type': 'Point', 'coordinates': (-79.43252260000001, 43.65256886)}"
-18810,127,GO-20179002686,THEFT OF EBIKE UNDER $5000,2017-02-19T00:00:00,2017,February,Sunday,19,50,2,2017-03-02T00:00:00,2017,March,Thursday,2,61,15,D14,Toronto,85,South Parkdale (85),"Open Areas (Lakes, Parks, Rivers)",Outside,EM,GIO EMO,EL,5,GRY,850.0,STOLEN,18788,"{'type': 'Point', 'coordinates': (-79.4359982, 43.63717625000001)}"
-18811,14343,GO-20209031113,THEFT UNDER,2020-11-30T00:00:00,2020,November,Monday,30,335,1,2020-12-02T00:00:00,2020,December,Wednesday,2,337,18,D14,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,OT,1,BLK,400.0,STOLEN,18789,"{'type': 'Point', 'coordinates': (-79.42739759, 43.65617153)}"
-18812,25010,GO-20159002457,THEFT UNDER,2015-05-04T00:00:00,2015,May,Monday,4,124,14,2015-05-05T00:00:00,2015,May,Tuesday,5,125,9,D11,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,TR,7.3 FX,RG,9,BLK,700.0,STOLEN,18790,"{'type': 'Point', 'coordinates': (-79.44689484, 43.65747686)}"
-18813,14462,GO-20189032418,THEFT UNDER,2018-09-29T00:00:00,2018,September,Saturday,29,272,22,2018-09-30T00:00:00,2018,September,Sunday,30,273,12,D14,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,8,BLK,200.0,STOLEN,18791,"{'type': 'Point', 'coordinates': (-79.43427392, 43.65712246)}"
-18814,14483,GO-20182344536,THEFT OF EBIKE UNDER $5000,2018-12-18T00:00:00,2018,December,Tuesday,18,352,19,2018-12-22T00:00:00,2018,December,Saturday,22,356,19,D14,Toronto,83,Dufferin Grove (83),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,ELECTRA,UNKNOWN,EL,1,BLU,1000.0,STOLEN,18792,"{'type': 'Point', 'coordinates': (-79.4340737, 43.6601452)}"
-18815,25051,GO-20169007069,THEFT UNDER - BICYCLE,2016-07-08T00:00:00,2016,July,Friday,8,190,9,2016-07-12T00:00:00,2016,July,Tuesday,12,194,9,D11,Toronto,83,Dufferin Grove (83),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,TREK FX,RG,24,BLK,750.0,STOLEN,18793,"{'type': 'Point', 'coordinates': (-79.44689484, 43.65747686)}"
-18816,14548,GO-20191428342,THEFT UNDER - BICYCLE,2019-07-29T00:00:00,2019,July,Monday,29,210,12,2019-07-29T00:00:00,2019,July,Monday,29,210,17,D14,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,MT,24,REDSIL,1500.0,STOLEN,18794,"{'type': 'Point', 'coordinates': (-79.4340737, 43.6601452)}"
-18817,251,GO-20179004985,THEFT UNDER - BICYCLE,2017-04-14T00:00:00,2017,April,Friday,14,104,3,2017-04-20T00:00:00,2017,April,Thursday,20,110,12,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,FLYING D,RG,7,LBL,1400.0,STOLEN,18795,"{'type': 'Point', 'coordinates': (-79.42601113, 43.63922831)}"
-18818,25058,GO-20169010389,THEFT UNDER,2016-09-13T00:00:00,2016,September,Tuesday,13,257,9,2016-09-13T00:00:00,2016,September,Tuesday,13,257,20,D11,Toronto,83,Dufferin Grove (83),Schools During Supervised Activity,Educational,UK,,RG,21,BLK,400.0,STOLEN,18796,"{'type': 'Point', 'coordinates': (-79.43640202, 43.65965002)}"
-18819,290,GO-20179005389,THEFT UNDER - BICYCLE,2017-04-20T00:00:00,2017,April,Thursday,20,110,4,2017-04-27T00:00:00,2017,April,Thursday,27,117,22,D14,Toronto,85,South Parkdale (85),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,T1,OT,1,BLK,800.0,STOLEN,18797,"{'type': 'Point', 'coordinates': (-79.42524484, 43.64083535000001)}"
-18820,321,GO-2017554599,B&E,2017-03-24T00:00:00,2017,March,Friday,24,83,0,2017-03-29T00:00:00,2017,March,Wednesday,29,88,14,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,UK,SJ FSR EXPERT,MT,28,RED,4000.0,STOLEN,18798,"{'type': 'Point', 'coordinates': (-79.42351373, 43.63972239)}"
-18821,25063,GO-20161880973,THEFT OVER - BICYCLE,2016-10-22T00:00:00,2016,October,Saturday,22,296,18,2016-10-22T00:00:00,2016,October,Saturday,22,296,18,D11,Toronto,83,Dufferin Grove (83),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,ATALAYA,MT,14,SIL,7000.0,RECOVERED,18799,"{'type': 'Point', 'coordinates': (-79.43699471, 43.65521452000001)}"
-18822,323,GO-2017779258,THEFT UNDER - BICYCLE,2017-05-02T00:00:00,2017,May,Tuesday,2,122,8,2017-05-03T00:00:00,2017,May,Wednesday,3,123,15,D14,Toronto,85,South Parkdale (85),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,ROUBAIX COMP,MT,24,BLKWHI,3200.0,STOLEN,18800,"{'type': 'Point', 'coordinates': (-79.42796684, 43.64059924)}"
-18823,14549,GO-20191428342,THEFT UNDER - BICYCLE,2019-07-29T00:00:00,2019,July,Monday,29,210,12,2019-07-29T00:00:00,2019,July,Monday,29,210,17,D14,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,RG,1,RED,500.0,STOLEN,18801,"{'type': 'Point', 'coordinates': (-79.4340737, 43.6601452)}"
-18824,25075,GO-20179004900,THEFT UNDER - BICYCLE,2017-04-18T00:00:00,2017,April,Tuesday,18,108,8,2017-04-18T00:00:00,2017,April,Tuesday,18,108,23,D11,Toronto,83,Dufferin Grove (83),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,URBANIA SC1,OT,27,WHI,1200.0,STOLEN,18802,"{'type': 'Point', 'coordinates': (-79.44070806, 43.65878182)}"
-18825,335,GO-20179005848,THEFT UNDER - BICYCLE,2011-04-02T00:00:00,2011,April,Saturday,2,92,10,2017-05-07T00:00:00,2017,May,Sunday,7,127,10,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,OT,SJ FSR EXPERT,MT,24,RED,4000.0,STOLEN,18803,"{'type': 'Point', 'coordinates': (-79.42351373, 43.63972239)}"
-18826,14588,GO-20199033497,THEFT UNDER - BICYCLE,2019-10-11T00:00:00,2019,October,Friday,11,284,0,2019-10-11T00:00:00,2019,October,Friday,11,284,10,D14,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,NO,HEART,RG,1,BLK,950.0,STOLEN,18804,"{'type': 'Point', 'coordinates': (-79.42814667, 43.65322723)}"
-18827,25085,GO-20179008625,THEFT UNDER - BICYCLE,2017-06-20T00:00:00,2017,June,Tuesday,20,171,17,2017-06-21T00:00:00,2017,June,Wednesday,21,172,17,D11,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,HF,,RG,1,,250.0,STOLEN,18805,"{'type': 'Point', 'coordinates': (-79.44689484, 43.65747686)}"
-18828,343,GO-20179005807,THEFT UNDER,2017-05-02T00:00:00,2017,May,Tuesday,2,122,0,2017-05-06T00:00:00,2017,May,Saturday,6,126,0,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RC,12,BLK,3500.0,STOLEN,18806,"{'type': 'Point', 'coordinates': (-79.42601113, 43.63922831)}"
-18829,14591,GO-20199034565,THEFT UNDER - BICYCLE,2019-10-12T00:00:00,2019,October,Saturday,12,285,12,2019-10-20T00:00:00,2019,October,Sunday,20,293,19,D14,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,KO,DOOR PRIZE,RC,16,GRY,600.0,STOLEN,18807,"{'type': 'Point', 'coordinates': (-79.43109264, 43.66079084)}"
-18830,25092,GO-20179011854,THEFT UNDER - BICYCLE,2017-08-07T00:00:00,2017,August,Monday,7,219,15,2017-08-07T00:00:00,2017,August,Monday,7,219,17,D11,Toronto,83,Dufferin Grove (83),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,ROAM,MT,16,BLK,550.0,STOLEN,18808,"{'type': 'Point', 'coordinates': (-79.43699471, 43.65521452000001)}"
-18831,25114,GO-20189018978,THEFT UNDER - BICYCLE,2018-06-16T00:00:00,2018,June,Saturday,16,167,17,2018-06-16T00:00:00,2018,June,Saturday,16,167,19,D11,Toronto,83,Dufferin Grove (83),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,SLOPE,MT,21,BLU,500.0,STOLEN,18809,"{'type': 'Point', 'coordinates': (-79.43699471, 43.65521452000001)}"
-18832,25138,GO-2019929174,THEFT UNDER - BICYCLE,2019-05-21T00:00:00,2019,May,Tuesday,21,141,17,2019-05-23T00:00:00,2019,May,Thursday,23,143,13,D11,Toronto,83,Dufferin Grove (83),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,MT,10,BLU,200.0,STOLEN,18810,"{'type': 'Point', 'coordinates': (-79.43699471, 43.65521452000001)}"
-18833,25283,GO-20161974886,THEFT UNDER - BICYCLE,2016-09-12T00:00:00,2016,September,Monday,12,256,21,2016-11-06T00:00:00,2016,November,Sunday,6,311,14,D14,Toronto,83,Dufferin Grove (83),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN,UNKNOWN,MT,12,WHI,,STOLEN,18811,"{'type': 'Point', 'coordinates': (-79.43109264, 43.66079084)}"
-18834,121,GO-20179002630,THEFT UNDER,2017-02-06T00:00:00,2017,February,Monday,6,37,1,2017-03-01T00:00:00,2017,March,Wednesday,1,60,10,D14,Toronto,84,Little Portugal (84),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GT,AGGRESSOR,MT,21,GRN,440.0,STOLEN,18812,"{'type': 'Point', 'coordinates': (-79.42727375, 43.64293316)}"
-18835,183,GO-2017562015,THEFT UNDER - BICYCLE,2017-03-30T00:00:00,2017,March,Thursday,30,89,8,2017-03-30T00:00:00,2017,March,Thursday,30,89,16,D14,Toronto,84,Little Portugal (84),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,PEUGEOT,SPIRIT/SPORT,OT,1,WHIGRN,500.0,STOLEN,18813,"{'type': 'Point', 'coordinates': (-79.42368786, 43.64113148)}"
-18836,394,GO-20179006351,THEFT UNDER,2017-05-12T00:00:00,2017,May,Friday,12,132,17,2017-05-15T00:00:00,2017,May,Monday,15,135,20,D14,Toronto,84,Little Portugal (84),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RG,10,PNK,600.0,STOLEN,18814,"{'type': 'Point', 'coordinates': (-79.42727375, 43.64293316)}"
-18837,484,GO-2017936299,THEFT UNDER - BICYCLE,2017-05-27T00:00:00,2017,May,Saturday,27,147,13,2017-05-27T00:00:00,2017,May,Saturday,27,147,15,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,HYBRID,MT,27,BLU,600.0,STOLEN,18815,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18838,524,GO-2017986088,THEFT UNDER - BICYCLE,2017-06-03T00:00:00,2017,June,Saturday,3,154,20,2017-06-03T00:00:00,2017,June,Saturday,3,154,20,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,STROMER V1 SPOR,EL,8,BLK,3028.0,STOLEN,18816,"{'type': 'Point', 'coordinates': (-79.42357472, 43.64324598)}"
-18839,541,GO-20179007542,B&E,2017-05-31T00:00:00,2017,May,Wednesday,31,151,22,2017-06-05T00:00:00,2017,June,Monday,5,156,23,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,OT,HARDROCK,MT,21,BLK,699.0,STOLEN,18817,"{'type': 'Point', 'coordinates': (-79.42368786, 43.64113148)}"
-18840,700,GO-20171132501,PROPERTY - FOUND,2017-06-24T00:00:00,2017,June,Saturday,24,175,23,2017-06-25T00:00:00,2017,June,Sunday,25,176,1,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,MOTOBECANE,RC,2,SIL,,UNKNOWN,18818,"{'type': 'Point', 'coordinates': (-79.42551956, 43.65145583)}"
-18841,723,GO-20179008963,THEFT UNDER - BICYCLE,2017-06-26T00:00:00,2017,June,Monday,26,177,20,2017-06-26T00:00:00,2017,June,Monday,26,177,20,D11,Toronto,84,Little Portugal (84),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RG,1,,1000.0,STOLEN,18819,"{'type': 'Point', 'coordinates': (-79.43365028, 43.649772590000005)}"
-18842,725,GO-20179008941,THEFT OF EBIKE UNDER $5000,2017-06-22T00:00:00,2017,June,Thursday,22,173,11,2017-06-26T00:00:00,2017,June,Monday,26,177,15,D14,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,EM,HORNET 48V BLAC,EL,35,OTH,1600.0,STOLEN,18820,"{'type': 'Point', 'coordinates': (-79.4306793, 43.64771159)}"
-18843,755,GO-20179009234,THEFT UNDER - BICYCLE,2017-06-29T00:00:00,2017,June,Thursday,29,180,8,2017-06-30T00:00:00,2017,June,Friday,30,181,16,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,BANDWAGON,OT,1,BLK,700.0,STOLEN,18821,"{'type': 'Point', 'coordinates': (-79.42700307, 43.6454438)}"
-18844,756,GO-20179009234,THEFT UNDER - BICYCLE,2017-06-29T00:00:00,2017,June,Thursday,29,180,8,2017-06-30T00:00:00,2017,June,Friday,30,181,16,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,BANDWAGON,OT,1,WHI,700.0,STOLEN,18822,"{'type': 'Point', 'coordinates': (-79.42700307, 43.6454438)}"
-18845,757,GO-20179009238,THEFT UNDER - BICYCLE,2017-06-30T00:00:00,2017,June,Friday,30,181,8,2017-06-30T00:00:00,2017,June,Friday,30,181,18,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,OT,URBANITE,RG,8,BLU,350.0,STOLEN,18823,"{'type': 'Point', 'coordinates': (-79.42675573, 43.6495011)}"
-18846,836,GO-20171248567,PROPERTY - FOUND,2017-07-11T00:00:00,2017,July,Tuesday,11,192,23,2017-07-12T00:00:00,2017,July,Wednesday,12,193,12,D14,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MARIN OR MARINO,LARKSPUR,TO,21,RED,,UNKNOWN,18824,"{'type': 'Point', 'coordinates': (-79.4279219, 43.64906469)}"
-18847,850,GO-20179010128,THEFT UNDER - BICYCLE,2017-07-13T00:00:00,2017,July,Thursday,13,194,16,2017-07-13T00:00:00,2017,July,Thursday,13,194,17,D14,Toronto,84,Little Portugal (84),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,RC,21,BLK,1000.0,STOLEN,18825,"{'type': 'Point', 'coordinates': (-79.42727375, 43.64293316)}"
-18848,958,GO-20179010896,B&E,2017-07-23T00:00:00,2017,July,Sunday,23,204,15,2017-07-24T00:00:00,2017,July,Monday,24,205,9,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,OT,CLD 105,RC,18,BLK,3100.0,STOLEN,18826,"{'type': 'Point', 'coordinates': (-79.42727375, 43.64293316)}"
-18849,1066,GO-20179011841,THEFT UNDER - BICYCLE,2017-08-07T00:00:00,2017,August,Monday,7,219,0,2017-08-07T00:00:00,2017,August,Monday,7,219,14,D11,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,KH,FLITE 100,RG,1,BLK,0.0,STOLEN,18827,"{'type': 'Point', 'coordinates': (-79.43365028, 43.649772590000005)}"
-18850,1130,GO-20179012246,THEFT UNDER - BICYCLE,2017-08-11T00:00:00,2017,August,Friday,11,223,17,2017-08-12T00:00:00,2017,August,Saturday,12,224,13,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,OT,BRODIE VOLTAGE,RG,6,DBL,1000.0,STOLEN,18828,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18851,1139,GO-20179012303,THEFT UNDER - BICYCLE,2017-08-13T00:00:00,2017,August,Sunday,13,225,0,2017-08-13T00:00:00,2017,August,Sunday,13,225,12,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,VALOUR,OT,1,WHI,2300.0,STOLEN,18829,"{'type': 'Point', 'coordinates': (-79.42368786, 43.64113148)}"
-18852,1163,GO-20179012561,THEFT UNDER - BICYCLE,2017-08-13T00:00:00,2017,August,Sunday,13,225,17,2017-08-16T00:00:00,2017,August,Wednesday,16,228,17,D14,Toronto,84,Little Portugal (84),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RM,FUSION 930,MT,24,BLK,870.0,STOLEN,18830,"{'type': 'Point', 'coordinates': (-79.42475884, 43.64301634)}"
-18853,1193,GO-20179012868,THEFT UNDER - BICYCLE,2017-08-19T00:00:00,2017,August,Saturday,19,231,13,2017-08-20T00:00:00,2017,August,Sunday,20,232,18,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SIRRUS SPORT ME,OT,9,LGR,1000.0,STOLEN,18831,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18854,1337,GO-20179014219,THEFT UNDER,2017-09-03T00:00:00,2017,September,Sunday,3,246,19,2017-09-07T00:00:00,2017,September,Thursday,7,250,19,D14,Toronto,84,Little Portugal (84),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RG,1,BLK,300.0,STOLEN,18832,"{'type': 'Point', 'coordinates': (-79.42368786, 43.64113148)}"
-18855,1382,GO-20179014592,THEFT UNDER,2017-09-12T00:00:00,2017,September,Tuesday,12,255,16,2017-09-12T00:00:00,2017,September,Tuesday,12,255,20,D14,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RC,10,BGE,200.0,STOLEN,18833,"{'type': 'Point', 'coordinates': (-79.42464271, 43.64593045)}"
-18856,1437,GO-20179015007,THEFT UNDER - BICYCLE,2017-09-17T00:00:00,2017,September,Sunday,17,260,19,2017-09-17T00:00:00,2017,September,Sunday,17,260,19,D11,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MA,,MT,21,BLK,700.0,STOLEN,18834,"{'type': 'Point', 'coordinates': (-79.43241719, 43.64666027)}"
-18857,1535,GO-20171736885,THEFT UNDER - BICYCLE,2017-09-22T00:00:00,2017,September,Friday,22,265,18,2017-09-24T00:00:00,2017,September,Sunday,24,267,22,D11,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,UNO,OT,1,GRN,650.0,STOLEN,18835,"{'type': 'Point', 'coordinates': (-79.43510556, 43.64864552)}"
-18858,1536,GO-20171736885,THEFT UNDER - BICYCLE,2017-09-22T00:00:00,2017,September,Friday,22,265,18,2017-09-24T00:00:00,2017,September,Sunday,24,267,22,D11,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,16,BLKYEL,800.0,STOLEN,18836,"{'type': 'Point', 'coordinates': (-79.43510556, 43.64864552)}"
-18859,1541,GO-20179015968,THEFT UNDER - BICYCLE,2017-08-01T00:00:00,2017,August,Tuesday,1,213,14,2017-09-28T00:00:00,2017,September,Thursday,28,271,12,D11,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,SCOUT,MT,27,RED,1100.0,STOLEN,18837,"{'type': 'Point', 'coordinates': (-79.4375218, 43.64813772)}"
-18860,1543,GO-20179015986,THEFT UNDER - BICYCLE,2017-09-27T00:00:00,2017,September,Wednesday,27,270,18,2017-09-28T00:00:00,2017,September,Thursday,28,271,8,D11,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ROADSTER SPORT,RG,3,BLK,599.0,STOLEN,18838,"{'type': 'Point', 'coordinates': (-79.43697295, 43.6499839)}"
-18861,1603,GO-20179016623,THEFT UNDER - BICYCLE,2017-10-05T00:00:00,2017,October,Thursday,5,278,23,2017-10-06T00:00:00,2017,October,Friday,6,279,19,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,PK RIPPER,RG,1,PLE,600.0,STOLEN,18839,"{'type': 'Point', 'coordinates': (-79.42769148000001, 43.64408519)}"
-18862,1610,GO-20179016691,THEFT UNDER - BICYCLE,2017-10-06T00:00:00,2017,October,Friday,6,279,18,2017-10-07T00:00:00,2017,October,Saturday,7,280,15,D14,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,1,BLK,0.0,STOLEN,18840,"{'type': 'Point', 'coordinates': (-79.43087347, 43.64962418)}"
-18863,1637,GO-20179016882,THEFT UNDER,2017-10-08T00:00:00,2017,October,Sunday,8,281,22,2017-10-10T00:00:00,2017,October,Tuesday,10,283,15,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,LANGSTER,RC,1,,400.0,STOLEN,18841,"{'type': 'Point', 'coordinates': (-79.42475884, 43.64301634)}"
-18864,1662,GO-20179017243,THEFT UNDER,2017-10-09T00:00:00,2017,October,Monday,9,282,19,2017-10-15T00:00:00,2017,October,Sunday,15,288,12,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,DB,DC1WPHB,RG,36,GLD,250.0,STOLEN,18842,"{'type': 'Point', 'coordinates': (-79.42357472, 43.64324598)}"
-18865,1675,GO-20179017416,THEFT UNDER,2017-10-16T00:00:00,2017,October,Monday,16,289,19,2017-10-17T00:00:00,2017,October,Tuesday,17,290,13,D14,Toronto,84,Little Portugal (84),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,OT,1,BLK,489.0,STOLEN,18843,"{'type': 'Point', 'coordinates': (-79.42161579, 43.64147337)}"
-18866,1727,GO-20171911966,THEFT UNDER - BICYCLE,2017-10-20T00:00:00,2017,October,Friday,20,293,23,2017-10-22T00:00:00,2017,October,Sunday,22,295,11,D14,Toronto,84,Little Portugal (84),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,DOWNHILL,MT,20,BLKWHI,1000.0,STOLEN,18844,"{'type': 'Point', 'coordinates': (-79.42475884, 43.64301634)}"
-18867,1742,GO-20179018206,B&E,2017-10-24T00:00:00,2017,October,Tuesday,24,297,4,2017-10-25T00:00:00,2017,October,Wednesday,25,298,19,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,CA,CAAD10,RC,10,GRY,1500.0,STOLEN,18845,"{'type': 'Point', 'coordinates': (-79.42368786, 43.64113148)}"
-18868,1763,GO-20179018485,THEFT UNDER - BICYCLE,2017-10-20T00:00:00,2017,October,Friday,20,293,19,2017-10-29T00:00:00,2017,October,Sunday,29,302,19,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,GI,TOUGH ROAD,MT,21,BLK,1200.0,STOLEN,18846,"{'type': 'Point', 'coordinates': (-79.42475884, 43.64301634)}"
-18869,1771,GO-20179018485,THEFT UNDER - BICYCLE,2017-10-20T00:00:00,2017,October,Friday,20,293,19,2017-10-29T00:00:00,2017,October,Sunday,29,302,19,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,GI,TOUGHROAD SLR L,MT,21,BLK,1149.0,STOLEN,18847,"{'type': 'Point', 'coordinates': (-79.42475884, 43.64301634)}"
-18870,1797,GO-20179018928,THEFT UNDER,2017-11-05T00:00:00,2017,November,Sunday,5,309,1,2017-11-05T00:00:00,2017,November,Sunday,5,309,13,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,TR,7.2 FX,RG,8,BLK,500.0,STOLEN,18848,"{'type': 'Point', 'coordinates': (-79.42357472, 43.64324598)}"
-18871,1858,GO-20173009475,B&E,2017-11-12T00:00:00,2017,November,Sunday,12,316,0,2017-11-16T00:00:00,2017,November,Thursday,16,320,13,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,CA,TRAIL SL2,MT,21,BLK,1000.0,STOLEN,18849,"{'type': 'Point', 'coordinates': (-79.42524484, 43.64083535000001)}"
-18872,1868,GO-20179020333,B&E,2017-11-12T00:00:00,2017,November,Sunday,12,316,12,2017-11-17T00:00:00,2017,November,Friday,17,321,16,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,OT,FIXIE,RC,1,BLK,500.0,STOLEN,18850,"{'type': 'Point', 'coordinates': (-79.42524484, 43.64083535000001)}"
-18873,1917,GO-20179021415,THEFT UNDER - BICYCLE,2017-12-05T00:00:00,2017,December,Tuesday,5,339,21,2017-12-06T00:00:00,2017,December,Wednesday,6,340,8,D11,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,NO,CITYGLIDE,OT,7,BLK,700.0,STOLEN,18851,"{'type': 'Point', 'coordinates': (-79.43317649, 43.64858633)}"
-18874,1921,GO-20179021498,THEFT UNDER - BICYCLE,2017-11-20T00:00:00,2017,November,Monday,20,324,16,2017-12-06T00:00:00,2017,December,Wednesday,6,340,17,D14,Toronto,84,Little Portugal (84),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,BOLT,RG,21,BLK,600.0,STOLEN,18852,"{'type': 'Point', 'coordinates': (-79.42357472, 43.64324598)}"
-18875,1945,GO-20179022614,THEFT UNDER,2017-11-24T00:00:00,2017,November,Friday,24,328,18,2017-12-19T00:00:00,2017,December,Tuesday,19,353,18,D14,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,3,LBL,600.0,STOLEN,18853,"{'type': 'Point', 'coordinates': (-79.42895317, 43.65095273)}"
-18876,2020,GO-20189003735,THEFT UNDER - BICYCLE,2018-02-07T00:00:00,2018,February,Wednesday,7,38,13,2018-02-07T00:00:00,2018,February,Wednesday,7,38,16,D14,Toronto,84,Little Portugal (84),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,STROLL,OT,2,WHI,700.0,STOLEN,18854,"{'type': 'Point', 'coordinates': (-79.42769148000001, 43.64408519)}"
-18877,2049,GO-20189006129,THEFT UNDER - BICYCLE,2018-02-21T00:00:00,2018,February,Wednesday,21,52,15,2018-02-26T00:00:00,2018,February,Monday,26,57,15,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,OT,ROSE GOLD,RG,1,GLD,500.0,STOLEN,18855,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18878,2061,GO-20189006616,THEFT UNDER,2018-02-23T00:00:00,2018,February,Friday,23,54,16,2018-03-02T00:00:00,2018,March,Friday,2,61,16,D14,Toronto,84,Little Portugal (84),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,SILVER ROADBIKE,RC,10,,450.0,STOLEN,18856,"{'type': 'Point', 'coordinates': (-79.42727375, 43.64293316)}"
-18879,2087,GO-20189008405,THEFT UNDER - BICYCLE,2018-03-17T00:00:00,2018,March,Saturday,17,76,21,2018-03-18T00:00:00,2018,March,Sunday,18,77,16,D14,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,MIXTE,RG,3,LBL,600.0,STOLEN,18857,"{'type': 'Point', 'coordinates': (-79.42700307, 43.6454438)}"
-18880,2094,GO-20185134040,THEFT UNDER - BICYCLE,2018-03-18T00:00:00,2018,March,Sunday,18,77,12,2018-03-21T00:00:00,2018,March,Wednesday,21,80,14,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,UNKNOWN,MT,0,BLK,300.0,STOLEN,18858,"{'type': 'Point', 'coordinates': (-79.42551956, 43.65145583)}"
-18881,2105,GO-20189009479,THEFT UNDER,2018-03-09T00:00:00,2018,March,Friday,9,68,8,2018-03-26T00:00:00,2018,March,Monday,26,85,11,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,11,RED,2500.0,STOLEN,18859,"{'type': 'Point', 'coordinates': (-79.42368786, 43.64113148)}"
-18882,2165,GO-20189011836,THEFT UNDER - BICYCLE,2018-04-15T00:00:00,2018,April,Sunday,15,105,17,2018-04-16T00:00:00,2018,April,Monday,16,106,18,D14,Toronto,84,Little Portugal (84),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RA,CROSS COUNTRY T,RG,21,BLK,900.0,STOLEN,18860,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18883,2189,GO-2018714655,THEFT UNDER - BICYCLE,2018-04-21T00:00:00,2018,April,Saturday,21,111,14,2018-04-21T00:00:00,2018,April,Saturday,21,111,17,D14,Toronto,84,Little Portugal (84),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CERVELO,S2105,OT,0,BLK,2712.0,STOLEN,18861,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18884,2203,GO-20189012932,THEFT UNDER - BICYCLE,2018-04-25T00:00:00,2018,April,Wednesday,25,115,18,2018-04-26T00:00:00,2018,April,Thursday,26,116,12,D14,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,CHANCE,OT,11,GRY,2000.0,STOLEN,18862,"{'type': 'Point', 'coordinates': (-79.42700307, 43.6454438)}"
-18885,2204,GO-20189012932,THEFT UNDER - BICYCLE,2018-04-25T00:00:00,2018,April,Wednesday,25,115,18,2018-04-26T00:00:00,2018,April,Thursday,26,116,12,D14,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,CHANCE,OT,11,GRY,2000.0,STOLEN,18863,"{'type': 'Point', 'coordinates': (-79.42700307, 43.6454438)}"
-18886,2345,GO-20189015443,THEFT UNDER,2018-05-14T00:00:00,2018,May,Monday,14,134,17,2018-05-18T00:00:00,2018,May,Friday,18,138,18,D14,Toronto,84,Little Portugal (84),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,BLK,400.0,STOLEN,18864,"{'type': 'Point', 'coordinates': (-79.42281418, 43.64123734)}"
-18887,2436,GO-20189016976,THEFT UNDER,2018-05-31T00:00:00,2018,May,Thursday,31,151,10,2018-05-31T00:00:00,2018,May,Thursday,31,151,19,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,QUICK 3,OT,18,,1000.0,STOLEN,18865,"{'type': 'Point', 'coordinates': (-79.42712016, 43.64250955)}"
-18888,2604,GO-20189019125,THEFT UNDER - BICYCLE,2018-06-18T00:00:00,2018,June,Monday,18,169,10,2018-06-18T00:00:00,2018,June,Monday,18,169,12,D14,Toronto,84,Little Portugal (84),Bar / Restaurant,Commercial,NO,,MT,18,BLK,200.0,STOLEN,18866,"{'type': 'Point', 'coordinates': (-79.43164127, 43.65274306)}"
-18889,2638,GO-20189019591,THEFT UNDER - BICYCLE,2018-06-20T00:00:00,2018,June,Wednesday,20,171,21,2018-06-21T00:00:00,2018,June,Thursday,21,172,9,D14,Toronto,84,Little Portugal (84),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,,MT,7,BLK,560.0,STOLEN,18867,"{'type': 'Point', 'coordinates': (-79.4265503, 43.65151392)}"
-18890,2707,GO-20189020542,THEFT UNDER - BICYCLE,2018-06-26T00:00:00,2018,June,Tuesday,26,177,18,2018-06-28T00:00:00,2018,June,Thursday,28,179,8,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,QUICK 6 BBQ LAR,RG,18,BLK,700.0,STOLEN,18868,"{'type': 'Point', 'coordinates': (-79.42161579, 43.64147337)}"
-18891,2708,GO-20189020536,THEFT UNDER - BICYCLE,2018-06-18T00:00:00,2018,June,Monday,18,169,20,2018-06-28T00:00:00,2018,June,Thursday,28,179,0,D14,Toronto,84,Little Portugal (84),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,YORKVILLE,RG,5,BLK,587.0,STOLEN,18869,"{'type': 'Point', 'coordinates': (-79.42237064, 43.64349082)}"
-18892,14821,GO-20189022389,THEFT UNDER - BICYCLE,2018-07-12T00:00:00,2018,July,Thursday,12,193,0,2018-07-14T00:00:00,2018,July,Saturday,14,195,12,D14,Toronto,83,Dufferin Grove (83),"Open Areas (Lakes, Parks, Rivers)",Outside,GI,ESCAPE 2,RG,40,BLK,620.0,STOLEN,18870,"{'type': 'Point', 'coordinates': (-79.43109264, 43.66079084)}"
-18893,14903,GO-20201870349,B&E,2020-10-02T00:00:00,2020,October,Friday,2,276,1,2020-10-02T00:00:00,2020,October,Friday,2,276,10,D11,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,YUBA ELECTRIC,EL,1,GLDBGE,5900.0,STOLEN,18871,"{'type': 'Point', 'coordinates': (-79.43726099, 43.65427761)}"
-18894,14906,GO-20201988297,THEFT UNDER - BICYCLE,2020-10-20T00:00:00,2020,October,Tuesday,20,294,7,2020-10-20T00:00:00,2020,October,Tuesday,20,294,13,D11,Toronto,83,Dufferin Grove (83),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,RG,10,GRY,800.0,STOLEN,18872,"{'type': 'Point', 'coordinates': (-79.43875394, 43.65133216)}"
-18895,15059,GO-20149004651,THEFT FROM MOTOR VEHICLE UNDER,2014-07-03T00:00:00,2014,July,Thursday,3,184,1,2014-07-03T00:00:00,2014,July,Thursday,3,184,9,D11,Toronto,83,Dufferin Grove (83),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,,RG,1,BLK,250.0,STOLEN,18873,"{'type': 'Point', 'coordinates': (-79.4375771, 43.65508991)}"
-18896,15065,GO-20149005318,THEFT UNDER,2014-07-23T00:00:00,2014,July,Wednesday,23,204,19,2014-07-25T00:00:00,2014,July,Friday,25,206,0,D11,Toronto,83,Dufferin Grove (83),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,SPECIALIZED,MT,6,BLK,489.0,STOLEN,18874,"{'type': 'Point', 'coordinates': (-79.44528372, 43.65120195)}"
-18897,15080,GO-20159001872,THEFT UNDER,2015-04-12T00:00:00,2015,April,Sunday,12,102,9,2015-04-13T00:00:00,2015,April,Monday,13,103,10,D11,Toronto,83,Dufferin Grove (83),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,RINCON,MT,18,RED,1000.0,STOLEN,18875,"{'type': 'Point', 'coordinates': (-79.43875394, 43.65133216)}"
-18898,15081,GO-2015640328,THEFT UNDER,2015-04-17T00:00:00,2015,April,Friday,17,107,19,2015-04-18T00:00:00,2015,April,Saturday,18,108,8,D11,Toronto,83,Dufferin Grove (83),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SCOTT,SCALE 29 PRO,BM,21,BLK,3500.0,STOLEN,18876,"{'type': 'Point', 'coordinates': (-79.43699471, 43.65521452000001)}"
-18899,15089,GO-20151058077,THEFT OVER,2015-06-20T00:00:00,2015,June,Saturday,20,171,14,2015-06-23T00:00:00,2015,June,Tuesday,23,174,16,D11,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,EMMO,SABRE,EL,35,BLK,2000.0,STOLEN,18877,"{'type': 'Point', 'coordinates': (-79.44773276, 43.65730226)}"
-18900,15090,GO-20151058077,THEFT OVER,2015-06-20T00:00:00,2015,June,Saturday,20,171,14,2015-06-23T00:00:00,2015,June,Tuesday,23,174,16,D11,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,,MT,30,,4000.0,STOLEN,18878,"{'type': 'Point', 'coordinates': (-79.44773276, 43.65730226)}"
-18901,15091,GO-20151119830,THEFT OVER,2015-03-05T00:00:00,2015,March,Thursday,5,64,8,2015-07-05T00:00:00,2015,July,Sunday,5,186,17,D11,Toronto,83,Dufferin Grove (83),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,DAHLON,FOLDING,OT,1,WHI,700.0,STOLEN,18879,"{'type': 'Point', 'coordinates': (-79.4375771, 43.65508991)}"
-18902,15104,GO-20151615628,THEFT UNDER,2015-09-18T00:00:00,2015,September,Friday,18,261,13,2015-09-18T00:00:00,2015,September,Friday,18,261,15,D11,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BIANCHI,,OT,5,,,STOLEN,18880,"{'type': 'Point', 'coordinates': (-79.43726099, 43.65427761)}"
-18903,15126,GO-20169008142,THEFT UNDER - BICYCLE,2016-08-03T00:00:00,2016,August,Wednesday,3,216,14,2016-08-03T00:00:00,2016,August,Wednesday,3,216,16,D11,Toronto,83,Dufferin Grove (83),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,MODENA,TO,21,BLK,500.0,STOLEN,18881,"{'type': 'Point', 'coordinates': (-79.43699471, 43.65521452000001)}"
-18904,15145,GO-20169010937,THEFT UNDER,2016-09-22T00:00:00,2016,September,Thursday,22,266,9,2016-09-22T00:00:00,2016,September,Thursday,22,266,20,D11,Toronto,83,Dufferin Grove (83),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SC,IZIP,EL,30,SIL,700.0,STOLEN,18882,"{'type': 'Point', 'coordinates': (-79.43699471, 43.65521452000001)}"
-18905,15154,GO-20162060603,THEFT UNDER - BICYCLE,2016-11-21T00:00:00,2016,November,Monday,21,326,12,2016-11-21T00:00:00,2016,November,Monday,21,326,12,D11,Toronto,83,Dufferin Grove (83),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,,RG,7,WHI,600.0,STOLEN,18883,"{'type': 'Point', 'coordinates': (-79.43854185, 43.65758566)}"
-18906,15155,GO-20162060603,THEFT UNDER - BICYCLE,2016-11-21T00:00:00,2016,November,Monday,21,326,12,2016-11-21T00:00:00,2016,November,Monday,21,326,12,D11,Toronto,83,Dufferin Grove (83),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OPUS,,RG,7,BGESIL,600.0,STOLEN,18884,"{'type': 'Point', 'coordinates': (-79.43854185, 43.65758566)}"
-18907,15175,GO-20179006940,THEFT UNDER - BICYCLE,2017-05-23T00:00:00,2017,May,Tuesday,23,143,17,2017-05-24T00:00:00,2017,May,Wednesday,24,144,23,D11,Toronto,83,Dufferin Grove (83),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CULT BUTTER V1,BM,1,BLK,2000.0,STOLEN,18885,"{'type': 'Point', 'coordinates': (-79.44395755, 43.65808981)}"
-18908,15178,GO-20179008724,THEFT UNDER - BICYCLE,2017-06-22T00:00:00,2017,June,Thursday,22,173,17,2017-06-22T00:00:00,2017,June,Thursday,22,173,18,D11,Toronto,83,Dufferin Grove (83),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SC,,RG,20,DBL,395.0,STOLEN,18886,"{'type': 'Point', 'coordinates': (-79.43699471, 43.65521452000001)}"
-18909,15190,GO-20179012566,THEFT UNDER - BICYCLE,2017-08-16T00:00:00,2017,August,Wednesday,16,228,17,2017-08-16T00:00:00,2017,August,Wednesday,16,228,17,D11,Toronto,83,Dufferin Grove (83),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,RG,18,MRN,500.0,STOLEN,18887,"{'type': 'Point', 'coordinates': (-79.43699471, 43.65521452000001)}"
-18910,15200,GO-20179019407,THEFT UNDER - BICYCLE,2017-11-11T00:00:00,2017,November,Saturday,11,315,12,2017-11-12T00:00:00,2017,November,Sunday,12,316,2,D11,Toronto,83,Dufferin Grove (83),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,STOCKHOLM,OT,8,BLK,0.0,STOLEN,18888,"{'type': 'Point', 'coordinates': (-79.43699471, 43.65521452000001)}"
-18911,15229,GO-20181313453,THEFT UNDER - BICYCLE,2018-07-13T00:00:00,2018,July,Friday,13,194,9,2018-07-18T00:00:00,2018,July,Wednesday,18,199,19,D11,Toronto,83,Dufferin Grove (83),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SUPERCYCLE,,OT,18,RED,108.0,STOLEN,18889,"{'type': 'Point', 'coordinates': (-79.43699471, 43.65521452000001)}"
-18912,15232,GO-20181410474,THEFT UNDER - BICYCLE,2018-07-22T00:00:00,2018,July,Sunday,22,203,23,2018-08-01T00:00:00,2018,August,Wednesday,1,213,20,D11,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,OTHER,,OT,21,BLK,700.0,STOLEN,18890,"{'type': 'Point', 'coordinates': (-79.44689484, 43.65747686)}"
-18913,15247,GO-20189036165,THEFT UNDER - BICYCLE,2018-10-29T00:00:00,2018,October,Monday,29,302,22,2018-10-30T00:00:00,2018,October,Tuesday,30,303,6,D11,Toronto,83,Dufferin Grove (83),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RA,MATTERHORN,MT,21,OTH,0.0,STOLEN,18891,"{'type': 'Point', 'coordinates': (-79.43699471, 43.65521452000001)}"
-18914,15248,GO-20189036509,THEFT UNDER - BICYCLE,2018-10-20T00:00:00,2018,October,Saturday,20,293,15,2018-11-01T00:00:00,2018,November,Thursday,1,305,18,D11,Toronto,83,Dufferin Grove (83),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,PE,,TO,21,PLE,400.0,STOLEN,18892,"{'type': 'Point', 'coordinates': (-79.43699471, 43.65521452000001)}"
-18915,15260,GO-20199013295,THEFT UNDER,2019-04-20T00:00:00,2019,April,Saturday,20,110,17,2019-04-27T00:00:00,2019,April,Saturday,27,117,18,D11,Toronto,83,Dufferin Grove (83),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,TK2,RC,1,BLK,1000.0,STOLEN,18893,"{'type': 'Point', 'coordinates': (-79.44689484, 43.65747686)}"
-18916,15267,GO-20199018104,THEFT UNDER,2019-06-10T00:00:00,2019,June,Monday,10,161,18,2019-06-10T00:00:00,2019,June,Monday,10,161,19,D11,Toronto,83,Dufferin Grove (83),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,CX,TO,10,WHI,1160.0,STOLEN,18894,"{'type': 'Point', 'coordinates': (-79.43890158, 43.65849785)}"
-18917,15276,GO-20199022607,THEFT UNDER,2019-07-16T00:00:00,2019,July,Tuesday,16,197,13,2019-07-16T00:00:00,2019,July,Tuesday,16,197,23,D11,Toronto,83,Dufferin Grove (83),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,21 SPEED ALUMIN,RC,21,WHI,600.0,STOLEN,18895,"{'type': 'Point', 'coordinates': (-79.44269466, 43.65833851)}"
-18918,15278,GO-20199022903,THEFT UNDER,2019-07-19T00:00:00,2019,July,Friday,19,200,1,2019-07-19T00:00:00,2019,July,Friday,19,200,11,D11,Toronto,83,Dufferin Grove (83),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KO,DEW PLUS,RG,72,BLK,1000.0,STOLEN,18896,"{'type': 'Point', 'coordinates': (-79.44298987, 43.65560387)}"
-18919,15283,GO-20199029508,THEFT UNDER,2019-09-10T00:00:00,2019,September,Tuesday,10,253,19,2019-09-10T00:00:00,2019,September,Tuesday,10,253,20,D11,Toronto,83,Dufferin Grove (83),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,DEVINCI CYCLOCR,TO,6,,1000.0,STOLEN,18897,"{'type': 'Point', 'coordinates': (-79.43699471, 43.65521452000001)}"
-18920,15287,GO-20199033318,THEFT UNDER,2019-10-07T00:00:00,2019,October,Monday,7,280,14,2019-10-09T00:00:00,2019,October,Wednesday,9,282,22,D11,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,GHOST,MT,8,BLK,600.0,STOLEN,18898,"{'type': 'Point', 'coordinates': (-79.4375771, 43.65508991)}"
-18921,15295,GO-20209008859,THEFT UNDER,2020-03-12T00:00:00,2020,March,Thursday,12,72,20,2020-03-13T00:00:00,2020,March,Friday,13,73,18,D11,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,"FX 2 17.5"""" BLK",OT,24,BLK,580.0,STOLEN,18899,"{'type': 'Point', 'coordinates': (-79.43875394, 43.65133216)}"
-18922,15296,GO-20209009848,THEFT UNDER,2020-03-26T00:00:00,2020,March,Thursday,26,86,8,2020-03-26T00:00:00,2020,March,Thursday,26,86,9,D11,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,ROAD BIKE,RG,18,WHI,750.0,STOLEN,18900,"{'type': 'Point', 'coordinates': (-79.43697295, 43.6499839)}"
-18923,15351,GO-20149006336,THEFT UNDER,2014-08-23T00:00:00,2014,August,Saturday,23,235,13,2014-08-27T00:00:00,2014,August,Wednesday,27,239,11,D14,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,OT,UNIBOMBER,MT,1,GRN,2000.0,STOLEN,18901,"{'type': 'Point', 'coordinates': (-79.42852157, 43.65896544000001)}"
-18924,15557,GO-20161690428,THEFT OF EBIKE UNDER $5000,2016-09-22T00:00:00,2016,September,Thursday,22,266,14,2016-09-22T00:00:00,2016,September,Thursday,22,266,22,D14,Toronto,83,Dufferin Grove (83),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,,EL,0,YEL,1100.0,STOLEN,18902,"{'type': 'Point', 'coordinates': (-79.4340737, 43.6601452)}"
-18925,17419,GO-20209032824,THEFT UNDER,2020-12-24T00:00:00,2020,December,Thursday,24,359,22,2020-12-25T00:00:00,2020,December,Friday,25,360,13,D14,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,8,,600.0,STOLEN,18903,"{'type': 'Point', 'coordinates': (-79.43032124000001, 43.65529448)}"
-18926,17560,GO-20199013931,THEFT UNDER - BICYCLE,2019-05-03T00:00:00,2019,May,Friday,3,123,18,2019-05-04T00:00:00,2019,May,Saturday,4,124,18,D14,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,UK,PROJEKT,RG,1,BLU,500.0,STOLEN,18904,"{'type': 'Point', 'coordinates': (-79.42963756, 43.65291556)}"
-18927,17579,GO-20199018659,THEFT UNDER,2019-06-09T00:00:00,2019,June,Sunday,9,160,20,2019-06-14T00:00:00,2019,June,Friday,14,165,21,D14,Toronto,83,Dufferin Grove (83),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,MONDANO 2,RG,21,SIL,550.0,STOLEN,18905,"{'type': 'Point', 'coordinates': (-79.43024148, 43.65862882)}"
-18928,17625,GO-20199026323,THEFT UNDER - BICYCLE,2019-08-10T00:00:00,2019,August,Saturday,10,222,16,2019-08-15T00:00:00,2019,August,Thursday,15,227,13,D14,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,RA,RUSH HOUR,RG,1,ONG,500.0,STOLEN,18906,"{'type': 'Point', 'coordinates': (-79.43474092, 43.65834618000001)}"
-18929,17743,GO-20179016231,THEFT UNDER,2017-10-02T00:00:00,2017,October,Monday,2,275,8,2017-10-02T00:00:00,2017,October,Monday,2,275,10,D14,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,TR,16 7.2 FX WSD 1,RG,8,WHI,400.0,STOLEN,18907,"{'type': 'Point', 'coordinates': (-79.4294114, 43.65296386)}"
-18930,17858,GO-20189022265,THEFT UNDER,2018-07-12T00:00:00,2018,July,Thursday,12,193,19,2018-07-13T00:00:00,2018,July,Friday,13,194,11,D14,Toronto,83,Dufferin Grove (83),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,2016 VICTOR,RG,1,GRN,740.0,STOLEN,18908,"{'type': 'Point', 'coordinates': (-79.43142602, 43.65390623)}"
-18931,17882,GO-20189026464,THEFT UNDER - BICYCLE,2018-08-14T00:00:00,2018,August,Tuesday,14,226,1,2018-08-15T00:00:00,2018,August,Wednesday,15,227,7,D14,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,TR,18 NEKO 3 WSD,MT,5,GRY,1500.0,STOLEN,18909,"{'type': 'Point', 'coordinates': (-79.42814667, 43.65322723)}"
-18932,18120,GO-20169006612,THEFT UNDER,2016-07-01T00:00:00,2016,July,Friday,1,183,15,2016-07-01T00:00:00,2016,July,Friday,1,183,20,D14,Toronto,83,Dufferin Grove (83),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,BELLADONNA,OT,21,WHI,650.0,STOLEN,18910,"{'type': 'Point', 'coordinates': (-79.42852157, 43.65896544000001)}"
-18933,18210,GO-20179007565,THEFT UNDER - BICYCLE,2017-06-03T00:00:00,2017,June,Saturday,3,154,12,2017-06-05T00:00:00,2017,June,Monday,5,156,14,D14,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,NO,,TO,7,BLK,0.0,STOLEN,18911,"{'type': 'Point', 'coordinates': (-79.4294114, 43.65296386)}"
-18934,18211,GO-20179007565,THEFT UNDER - BICYCLE,2017-06-03T00:00:00,2017,June,Saturday,3,154,12,2017-06-05T00:00:00,2017,June,Monday,5,156,14,D14,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,OT,,TO,1,TRQ,0.0,STOLEN,18912,"{'type': 'Point', 'coordinates': (-79.4294114, 43.65296386)}"
-18935,18282,GO-20209020599,THEFT UNDER,2020-08-18T00:00:00,2020,August,Tuesday,18,231,15,2020-08-18T00:00:00,2020,August,Tuesday,18,231,17,D11,Toronto,83,Dufferin Grove (83),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RC,14,BLK,1300.0,STOLEN,18913,"{'type': 'Point', 'coordinates': (-79.44395755, 43.65808981)}"
-18936,18307,GO-20201985934,THEFT OF EBIKE UNDER $5000,2020-10-11T00:00:00,2020,October,Sunday,11,285,17,2020-10-21T00:00:00,2020,October,Wednesday,21,295,15,D11,Toronto,83,Dufferin Grove (83),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,MONTA,EL,1,BLK,1500.0,STOLEN,18914,"{'type': 'Point', 'coordinates': (-79.43699471, 43.65521452000001)}"
-18937,18321,GO-20149002853,THEFT UNDER,2013-11-15T00:00:00,2013,November,Friday,15,319,23,2014-04-14T00:00:00,2014,April,Monday,14,104,21,D14,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,RAPID,OT,24,WHI,600.0,STOLEN,18915,"{'type': 'Point', 'coordinates': (-79.43024148, 43.65862882)}"
-18938,18322,GO-20149002853,THEFT UNDER,2013-11-15T00:00:00,2013,November,Friday,15,319,23,2014-04-14T00:00:00,2014,April,Monday,14,104,21,D14,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,15,,50.0,STOLEN,18916,"{'type': 'Point', 'coordinates': (-79.43024148, 43.65862882)}"
-18939,18339,GO-20142265323,THEFT UNDER,2014-06-11T00:00:00,2014,June,Wednesday,11,162,0,2014-06-11T00:00:00,2014,June,Wednesday,11,162,1,D14,Toronto,83,Dufferin Grove (83),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,,MT,10,BLK,500.0,STOLEN,18917,"{'type': 'Point', 'coordinates': (-79.42939853, 43.66115068)}"
-18940,18456,GO-20159006827,THEFT UNDER,2015-08-31T00:00:00,2015,August,Monday,31,243,0,2015-09-06T00:00:00,2015,September,Sunday,6,249,16,D14,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,18,BLK,150.0,STOLEN,18918,"{'type': 'Point', 'coordinates': (-79.42814667, 43.65322723)}"
-18941,18480,GO-20169003734,THEFT UNDER - BICYCLE,2016-04-22T00:00:00,2016,April,Friday,22,113,22,2016-04-23T00:00:00,2016,April,Saturday,23,114,15,D14,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,7,LBL,409.0,STOLEN,18919,"{'type': 'Point', 'coordinates': (-79.42852157, 43.65896544000001)}"
-18942,18496,GO-20169005405,THEFT UNDER - BICYCLE,2016-06-06T00:00:00,2016,June,Monday,6,158,21,2016-06-06T00:00:00,2016,June,Monday,6,158,23,D14,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ESPACE RS3,RG,21,BLK,598.0,STOLEN,18920,"{'type': 'Point', 'coordinates': (-79.43104094, 43.65284847)}"
-18943,18545,GO-20151282012,THEFT UNDER,2015-07-27T00:00:00,2015,July,Monday,27,208,2,2015-07-27T00:00:00,2015,July,Monday,27,208,11,D11,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,GIANT,TALON,MT,27,BLK,772.0,STOLEN,18921,"{'type': 'Point', 'coordinates': (-79.43695396, 43.65347847)}"
-18944,18557,GO-20152060170,THEFT UNDER,2015-11-23T00:00:00,2015,November,Monday,23,327,0,2015-12-01T00:00:00,2015,December,Tuesday,1,335,16,D11,Toronto,83,Dufferin Grove (83),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GIANT,,RG,18,BLK,,STOLEN,18922,"{'type': 'Point', 'coordinates': (-79.43581226, 43.65050317000001)}"
-18945,18558,GO-20152065135,THEFT UNDER,2015-12-02T00:00:00,2015,December,Wednesday,2,336,11,2015-12-02T00:00:00,2015,December,Wednesday,2,336,12,D11,Toronto,83,Dufferin Grove (83),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RALEIGH,,OT,10,BLK,200.0,STOLEN,18923,"{'type': 'Point', 'coordinates': (-79.43699471, 43.65521452000001)}"
-18946,18563,GO-20169003513,THEFT UNDER - BICYCLE,2015-06-01T00:00:00,2015,June,Monday,1,152,11,2016-04-18T00:00:00,2016,April,Monday,18,109,11,D11,Toronto,83,Dufferin Grove (83),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,ELITE CR1,RC,40,BLU,3500.0,STOLEN,18924,"{'type': 'Point', 'coordinates': (-79.44110312, 43.65385066)}"
-18947,18569,GO-20169006204,THEFT UNDER - BICYCLE,2016-06-20T00:00:00,2016,June,Monday,20,172,8,2016-06-22T00:00:00,2016,June,Wednesday,22,174,11,D11,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,VALENCIA,OT,8,RED,530.0,STOLEN,18925,"{'type': 'Point', 'coordinates': (-79.43631792, 43.65181328)}"
-18948,18594,GO-20179005275,THEFT UNDER,2017-04-25T00:00:00,2017,April,Tuesday,25,115,12,2017-04-25T00:00:00,2017,April,Tuesday,25,115,17,D11,Toronto,83,Dufferin Grove (83),Schools During Un-Supervised Activity,Educational,OT,MILANO,RG,21,WHI,400.0,STOLEN,18926,"{'type': 'Point', 'coordinates': (-79.4401546, 43.65143188)}"
-18949,18599,GO-2017910655,THEFT UNDER - BICYCLE,2017-05-23T00:00:00,2017,May,Tuesday,23,143,17,2017-05-23T00:00:00,2017,May,Tuesday,23,143,19,D11,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,SIRRUS,RG,24,BLK,900.0,STOLEN,18927,"{'type': 'Point', 'coordinates': (-79.43292959, 43.65360256)}"
-18950,18610,GO-20179011287,THEFT UNDER,2017-07-29T00:00:00,2017,July,Saturday,29,210,1,2017-07-29T00:00:00,2017,July,Saturday,29,210,12,D11,Toronto,83,Dufferin Grove (83),Bar / Restaurant,Commercial,OT,ROMAX,RG,20,BRN,2350.0,STOLEN,18928,"{'type': 'Point', 'coordinates': (-79.43756839, 43.65942639)}"
-18951,18621,GO-20179017064,THEFT UNDER,2017-10-12T00:00:00,2017,October,Thursday,12,285,17,2017-10-12T00:00:00,2017,October,Thursday,12,285,22,D11,Toronto,83,Dufferin Grove (83),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,FIXED GEAR,RC,40,BLK,600.0,STOLEN,18929,"{'type': 'Point', 'coordinates': (-79.43699471, 43.65521452000001)}"
-18952,18642,GO-20189021928,THEFT UNDER - BICYCLE,2018-07-11T00:00:00,2018,July,Wednesday,11,192,14,2018-07-11T00:00:00,2018,July,Wednesday,11,192,15,D11,Toronto,83,Dufferin Grove (83),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,24,GRY,1000.0,STOLEN,18930,"{'type': 'Point', 'coordinates': (-79.44271, 43.65488005)}"
-18953,18657,GO-20189031754,THEFT UNDER - BICYCLE,2018-09-24T00:00:00,2018,September,Monday,24,267,9,2018-09-24T00:00:00,2018,September,Monday,24,267,16,D11,Toronto,83,Dufferin Grove (83),Schools During Supervised Activity,Educational,OT,UMBRIA,RG,21,GRY,500.0,STOLEN,18931,"{'type': 'Point', 'coordinates': (-79.43640202, 43.65965002)}"
-18954,18669,GO-2019696204,THEFT UNDER,2019-04-17T00:00:00,2019,April,Wednesday,17,107,17,2019-04-17T00:00:00,2019,April,Wednesday,17,107,19,D11,Toronto,83,Dufferin Grove (83),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN,UNKNOWN,RG,18,GRN,200.0,STOLEN,18932,"{'type': 'Point', 'coordinates': (-79.43699471, 43.65521452000001)}"
-18955,18676,GO-20199023824,THEFT UNDER,2019-07-26T00:00:00,2019,July,Friday,26,207,5,2019-07-26T00:00:00,2019,July,Friday,26,207,7,D11,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SIRRUS,RG,24,BLK,800.0,STOLEN,18933,"{'type': 'Point', 'coordinates': (-79.43292959, 43.65360256)}"
-18956,18686,GO-20199030312,THEFT UNDER,2019-09-15T00:00:00,2019,September,Sunday,15,258,12,2019-09-17T00:00:00,2019,September,Tuesday,17,260,8,D11,Toronto,83,Dufferin Grove (83),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SC,DO NOT RECALL,RG,21,PLE,200.0,STOLEN,18934,"{'type': 'Point', 'coordinates': (-79.43913557, 43.65909813)}"
-18957,18694,GO-20199032211,THEFT UNDER,2019-10-01T00:00:00,2019,October,Tuesday,1,274,9,2019-10-01T00:00:00,2019,October,Tuesday,1,274,13,D11,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,FJ,STROLL,RC,1,BLK,790.0,STOLEN,18935,"{'type': 'Point', 'coordinates': (-79.4401546, 43.65143188)}"
-18958,18702,GO-20209010208,THEFT UNDER,2020-03-31T00:00:00,2020,March,Tuesday,31,91,6,2020-03-31T00:00:00,2020,March,Tuesday,31,91,12,D11,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,OT,JOURNEYMAN,TO,16,DGR,1600.0,STOLEN,18936,"{'type': 'Point', 'coordinates': (-79.43668248, 43.65274318)}"
-18959,20790,GO-20209019567,THEFT UNDER,2020-08-05T00:00:00,2020,August,Wednesday,5,218,20,2020-08-06T00:00:00,2020,August,Thursday,6,219,21,D14,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,YUKON - 2172,MT,21,PLE,1000.0,STOLEN,18937,"{'type': 'Point', 'coordinates': (-79.43042858, 43.65554806000001)}"
-18960,21029,GO-20199024006,THEFT UNDER,2019-07-21T00:00:00,2019,July,Sunday,21,202,11,2019-07-28T00:00:00,2019,July,Sunday,28,209,22,D14,Toronto,83,Dufferin Grove (83),"Apartment (Rooming House, Condo)",Apartment,OT,SNLG314J03048,RG,21,DBL,600.0,STOLEN,18938,"{'type': 'Point', 'coordinates': (-79.42814667, 43.65322723)}"
-18961,21083,GO-20192014122,ROBBERY WITH WEAPON,2019-10-18T00:00:00,2019,October,Friday,18,291,20,2019-10-18T00:00:00,2019,October,Friday,18,291,20,D14,Toronto,83,Dufferin Grove (83),"Open Areas (Lakes, Parks, Rivers)",Outside,OTHER,PURE FIX,RG,0,BLK,,STOLEN,18939,"{'type': 'Point', 'coordinates': (-79.43427392, 43.65712246)}"
-18962,21157,GO-20201280127,PROPERTY - FOUND,2020-07-10T00:00:00,2020,July,Friday,10,192,17,2020-07-11T00:00:00,2020,July,Saturday,11,193,12,D14,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,INFINITY,INCLINE,MT,12,,,UNKNOWN,18940,"{'type': 'Point', 'coordinates': (-79.43109264, 43.66079084)}"
-18963,21158,GO-20201280127,PROPERTY - FOUND,2020-07-10T00:00:00,2020,July,Friday,10,192,17,2020-07-11T00:00:00,2020,July,Saturday,11,193,12,D14,Toronto,83,Dufferin Grove (83),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,SURGE,MT,12,GRYPNK,,UNKNOWN,18941,"{'type': 'Point', 'coordinates': (-79.43109264, 43.66079084)}"
-18964,450,GO-2017902930,THEFT UNDER - BICYCLE,2017-05-22T00:00:00,2017,May,Monday,22,142,16,2017-05-22T00:00:00,2017,May,Monday,22,142,18,D14,Toronto,85,South Parkdale (85),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,JAMIS,SPUTNIK,RC,1,GRY,1500.0,STOLEN,18942,"{'type': 'Point', 'coordinates': (-79.43008246, 43.641924960000004)}"
-18965,572,GO-20179007810,THEFT UNDER - BICYCLE,2017-06-08T00:00:00,2017,June,Thursday,8,159,8,2017-06-09T00:00:00,2017,June,Friday,9,160,21,D14,Toronto,85,South Parkdale (85),Schools During Supervised Activity,Educational,OT,,MT,24,BLK,250.0,STOLEN,18943,"{'type': 'Point', 'coordinates': (-79.43689219, 43.63960265000001)}"
-18966,594,GO-20179007945,THEFT UNDER - BICYCLE,2017-06-11T00:00:00,2017,June,Sunday,11,162,3,2017-06-12T00:00:00,2017,June,Monday,12,163,10,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,1,GRY,900.0,STOLEN,18944,"{'type': 'Point', 'coordinates': (-79.42524484, 43.64083535000001)}"
-18967,881,GO-20179010288,THEFT UNDER - BICYCLE,2017-07-15T00:00:00,2017,July,Saturday,15,196,9,2017-07-15T00:00:00,2017,July,Saturday,15,196,21,D14,Toronto,85,South Parkdale (85),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,OT,7,,200.0,STOLEN,18945,"{'type': 'Point', 'coordinates': (-79.42576564, 43.63489225)}"
-18968,936,GO-20171305050,THEFT UNDER - BICYCLE,2017-07-19T00:00:00,2017,July,Wednesday,19,200,20,2017-07-20T00:00:00,2017,July,Thursday,20,201,20,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,OTHER,,OT,21,PLEGRY,,STOLEN,18946,"{'type': 'Point', 'coordinates': (-79.42881933, 43.63865271)}"
-18969,1039,GO-20179011548,THEFT UNDER - BICYCLE,2017-08-01T00:00:00,2017,August,Tuesday,1,213,23,2017-08-02T00:00:00,2017,August,Wednesday,2,214,15,D14,Toronto,85,South Parkdale (85),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,GIANT ESCAPE 2,RG,24,LGR,600.0,STOLEN,18947,"{'type': 'Point', 'coordinates': (-79.43324413, 43.637743060000005)}"
-18970,1055,GO-20179011724,THEFT UNDER - BICYCLE,2016-08-05T00:00:00,2016,August,Friday,5,218,2,2017-08-04T00:00:00,2017,August,Friday,4,216,22,D14,Toronto,85,South Parkdale (85),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CC,CCM KROSSPORT M,MT,21,WHI,499.0,STOLEN,18948,"{'type': 'Point', 'coordinates': (-79.42796684, 43.64059924)}"
-18971,1127,GO-20171427216,THEFT UNDER - BICYCLE,2017-08-06T00:00:00,2017,August,Sunday,6,218,20,2017-08-12T00:00:00,2017,August,Saturday,12,224,19,D14,Toronto,85,South Parkdale (85),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,MOUNTAIN,MT,7,ONG,200.0,STOLEN,18949,"{'type': 'Point', 'coordinates': (-79.43057287, 43.63462208)}"
-18972,1364,GO-20179014314,THEFT UNDER,2017-08-18T00:00:00,2017,August,Friday,18,230,16,2017-09-09T00:00:00,2017,September,Saturday,9,252,8,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,SC,,MT,24,BLK,900.0,STOLEN,18950,"{'type': 'Point', 'coordinates': (-79.43474242, 43.63395219)}"
-18973,1368,GO-20179014476,THEFT UNDER,2017-09-09T00:00:00,2017,September,Saturday,9,252,0,2017-09-11T00:00:00,2017,September,Monday,11,254,16,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,TR,CITY BIKE,RG,1,GRN,0.0,STOLEN,18951,"{'type': 'Point', 'coordinates': (-79.43468620000002, 43.63746024)}"
-18974,1464,GO-20171709310,THEFT UNDER - BICYCLE,2017-09-20T00:00:00,2017,September,Wednesday,20,263,18,2017-09-20T00:00:00,2017,September,Wednesday,20,263,18,D11,Toronto,85,South Parkdale (85),"Open Areas (Lakes, Parks, Rivers)",Outside,OTHER,WE THE PEOPLE,BM,0,BLK,500.0,STOLEN,18952,"{'type': 'Point', 'coordinates': (-79.46565102, 43.63691818)}"
-18975,1504,GO-20179015577,THEFT UNDER - BICYCLE,2017-09-20T00:00:00,2017,September,Wednesday,20,263,2,2017-09-23T00:00:00,2017,September,Saturday,23,266,20,D14,Toronto,85,South Parkdale (85),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,10,SIL,50.0,STOLEN,18953,"{'type': 'Point', 'coordinates': (-79.43057287, 43.63462208)}"
-18976,1530,GO-20179015816,THEFT UNDER - BICYCLE,2017-09-25T00:00:00,2017,September,Monday,25,268,10,2017-09-26T00:00:00,2017,September,Tuesday,26,269,12,D14,Toronto,85,South Parkdale (85),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,INFINITY,,OT,24,SIL,160.0,STOLEN,18954,"{'type': 'Point', 'coordinates': (-79.42529763, 43.63734542)}"
-18977,1856,GO-20179019849,THEFT UNDER - BICYCLE,2017-11-15T00:00:00,2017,November,Wednesday,15,319,10,2017-11-17T00:00:00,2017,November,Friday,17,321,10,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,NO,,MT,21,MRN,1600.0,STOLEN,18955,"{'type': 'Point', 'coordinates': (-79.43240631, 43.63969174)}"
-18978,1902,GO-20173114903,B&E,2017-06-23T00:00:00,2017,June,Friday,23,174,0,2017-12-02T00:00:00,2017,December,Saturday,2,336,9,D14,Toronto,85,South Parkdale (85),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,BIRA,,RG,5,,750.0,STOLEN,18956,"{'type': 'Point', 'coordinates': (-79.42279841, 43.63786098)}"
-18979,1903,GO-20173114903,B&E,2017-06-23T00:00:00,2017,June,Friday,23,174,0,2017-12-02T00:00:00,2017,December,Saturday,2,336,9,D14,Toronto,85,South Parkdale (85),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,MENS,OT,1,,,STOLEN,18957,"{'type': 'Point', 'coordinates': (-79.42279841, 43.63786098)}"
-18980,1996,GO-20189001995,B&E,2018-01-19T00:00:00,2018,January,Friday,19,19,1,2018-01-21T00:00:00,2018,January,Sunday,21,21,16,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,OT,GREY ROAD BIKE,RG,1,GRY,900.0,STOLEN,18958,"{'type': 'Point', 'coordinates': (-79.42843902, 43.64178861)}"
-18981,2030,GO-20189004458,FTC PROBATION ORDER,2018-02-12T00:00:00,2018,February,Monday,12,43,3,2018-02-13T00:00:00,2018,February,Tuesday,13,44,7,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,OT,GROVEL,TO,22,BLK,2500.0,STOLEN,18959,"{'type': 'Point', 'coordinates': (-79.42843902, 43.64178861)}"
-18982,2043,GO-20189005726,THEFT UNDER - BICYCLE,2018-02-16T00:00:00,2018,February,Friday,16,47,8,2018-02-22T00:00:00,2018,February,Thursday,22,53,20,D14,Toronto,85,South Parkdale (85),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,LANGSTER,TO,1,SIL,900.0,STOLEN,18960,"{'type': 'Point', 'coordinates': (-79.42409977, 43.63759298)}"
-18983,2097,GO-20189009033,THEFT UNDER - BICYCLE,2018-03-21T00:00:00,2018,March,Wednesday,21,80,11,2018-03-22T00:00:00,2018,March,Thursday,22,81,17,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,NO,DEVIANT,BM,1,WHI,0.0,STOLEN,18961,"{'type': 'Point', 'coordinates': (-79.42524484, 43.64083535000001)}"
-18984,2098,GO-20189009033,THEFT UNDER - BICYCLE,2018-03-21T00:00:00,2018,March,Wednesday,21,80,11,2018-03-22T00:00:00,2018,March,Thursday,22,81,17,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,UK,,BM,1,BLK,0.0,STOLEN,18962,"{'type': 'Point', 'coordinates': (-79.42524484, 43.64083535000001)}"
-18985,2318,GO-20189015034,THEFT UNDER - BICYCLE,2018-05-15T00:00:00,2018,May,Tuesday,15,135,13,2018-05-15T00:00:00,2018,May,Tuesday,15,135,14,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,IH,TRICYCLE,EL,30,OTH,1200.0,STOLEN,18963,"{'type': 'Point', 'coordinates': (-79.43413785, 43.64109159)}"
-18986,2801,GO-20189021863,THEFT UNDER - BICYCLE,2018-07-10T00:00:00,2018,July,Tuesday,10,191,11,2018-07-10T00:00:00,2018,July,Tuesday,10,191,14,D11,Toronto,85,South Parkdale (85),"Open Areas (Lakes, Parks, Rivers)",Outside,GT,AVALANCHE 29',MT,1,WHI,800.0,STOLEN,18964,"{'type': 'Point', 'coordinates': (-79.45886359, 43.63771054)}"
-18987,2901,GO-20181323182,THEFT UNDER - BICYCLE,2018-07-13T00:00:00,2018,July,Friday,13,194,12,2018-07-20T00:00:00,2018,July,Friday,20,201,7,D14,Toronto,85,South Parkdale (85),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,CROSSROAS,OT,23,BLU,1500.0,STOLEN,18965,"{'type': 'Point', 'coordinates': (-79.43723784, 43.64045086)}"
-18988,2938,GO-20189023680,THEFT UNDER - BICYCLE,2018-07-24T00:00:00,2018,July,Tuesday,24,205,11,2018-07-24T00:00:00,2018,July,Tuesday,24,205,12,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RA,,TO,8,DBL,1500.0,STOLEN,18966,"{'type': 'Point', 'coordinates': (-79.4331133, 43.64129997)}"
-18989,2987,GO-20189024108,THEFT UNDER - BICYCLE,2018-07-26T00:00:00,2018,July,Thursday,26,207,20,2018-07-27T00:00:00,2018,July,Friday,27,208,10,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE,RG,21,BLK,700.0,STOLEN,18967,"{'type': 'Point', 'coordinates': (-79.42524484, 43.64083535000001)}"
-18990,2995,GO-20189024206,THEFT UNDER - BICYCLE,2018-07-26T00:00:00,2018,July,Thursday,26,207,22,2018-07-27T00:00:00,2018,July,Friday,27,208,14,D14,Toronto,85,South Parkdale (85),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,RG,21,,500.0,STOLEN,18968,"{'type': 'Point', 'coordinates': (-79.42796684, 43.64059924)}"
-18991,3026,GO-20181395578,THEFT UNDER - BICYCLE,2018-07-30T00:00:00,2018,July,Monday,30,211,15,2018-07-30T00:00:00,2018,July,Monday,30,211,18,D11,Toronto,85,South Parkdale (85),"Open Areas (Lakes, Parks, Rivers)",Outside,OTHER,,BM,1,BLKSIL,800.0,STOLEN,18969,"{'type': 'Point', 'coordinates': (-79.4536313, 43.63891668000001)}"
-18992,3169,GO-20189025995,THEFT UNDER - BICYCLE,2018-08-07T00:00:00,2018,August,Tuesday,7,219,13,2018-08-11T00:00:00,2018,August,Saturday,11,223,17,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,CC,APEX,MT,24,WHI,1100.0,STOLEN,18970,"{'type': 'Point', 'coordinates': (-79.43855691, 43.6366625)}"
-18993,3186,GO-20189026196,THEFT UNDER,2018-08-13T00:00:00,2018,August,Monday,13,225,9,2018-08-13T00:00:00,2018,August,Monday,13,225,14,D11,Toronto,85,South Parkdale (85),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,CROSSTRAIL ELIT,RC,27,BLK,1000.0,STOLEN,18971,"{'type': 'Point', 'coordinates': (-79.45886359, 43.63771054)}"
-18994,3210,GO-20189026546,THEFT UNDER - BICYCLE,2018-08-14T00:00:00,2018,August,Tuesday,14,226,0,2018-08-15T00:00:00,2018,August,Wednesday,15,227,19,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,21,GRN,1600.0,STOLEN,18972,"{'type': 'Point', 'coordinates': (-79.42663898, 43.64122736)}"
-18995,3215,GO-20189026513,THEFT UNDER - BICYCLE,2018-08-14T00:00:00,2018,August,Tuesday,14,226,9,2018-08-15T00:00:00,2018,August,Wednesday,15,227,15,D14,Toronto,85,South Parkdale (85),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,MILANO,RG,18,BLK,579.0,STOLEN,18973,"{'type': 'Point', 'coordinates': (-79.42632816, 43.63633154)}"
-18996,3225,GO-20189026546,THEFT UNDER - BICYCLE,2018-08-14T00:00:00,2018,August,Tuesday,14,226,0,2018-08-15T00:00:00,2018,August,Wednesday,15,227,19,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,21,GRN,2500.0,STOLEN,18974,"{'type': 'Point', 'coordinates': (-79.42663898, 43.64122736)}"
-18997,3618,GO-20181838391,THEFT UNDER - BICYCLE,2018-07-01T00:00:00,2018,July,Sunday,1,182,0,2018-10-04T00:00:00,2018,October,Thursday,4,277,23,D14,Toronto,85,South Parkdale (85),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,DAHON PICCOLO,FO,0,SIL,,STOLEN,18975,"{'type': 'Point', 'coordinates': (-79.43413785, 43.64109159)}"
-18998,3635,GO-20181858015,THEFT UNDER,2018-10-08T00:00:00,2018,October,Monday,8,281,5,2018-10-08T00:00:00,2018,October,Monday,8,281,9,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,OTHER,,OT,0,,,STOLEN,18976,"{'type': 'Point', 'coordinates': (-79.42808998, 43.63598082)}"
-18999,3652,GO-20181871720,THEFT UNDER - BICYCLE,2018-10-03T00:00:00,2018,October,Wednesday,3,276,6,2018-10-10T00:00:00,2018,October,Wednesday,10,283,11,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,OTHER,,OT,0,,800.0,STOLEN,18977,"{'type': 'Point', 'coordinates': (-79.435934, 43.64071989)}"
-19000,3667,GO-20181877966,THEFT UNDER - BICYCLE,2018-10-02T00:00:00,2018,October,Tuesday,2,275,15,2018-10-10T00:00:00,2018,October,Wednesday,10,283,15,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,TRICROSS,TO,15,WHI,1200.0,RECOVERED,18978,"{'type': 'Point', 'coordinates': (-79.43723509, 43.63692597)}"
-19001,3878,GO-20189038843,THEFT UNDER,2018-11-19T00:00:00,2018,November,Monday,19,323,13,2018-11-19T00:00:00,2018,November,Monday,19,323,17,D14,Toronto,85,South Parkdale (85),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,BI,STRADA,RG,16,LGR,1150.0,STOLEN,18979,"{'type': 'Point', 'coordinates': (-79.42409977, 43.63759298)}"
-19002,3908,GO-20182182759,THEFT UNDER - BICYCLE,2018-11-26T00:00:00,2018,November,Monday,26,330,21,2018-11-27T00:00:00,2018,November,Tuesday,27,331,14,D14,Toronto,85,South Parkdale (85),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,EL,1,GRY,600.0,STOLEN,18980,"{'type': 'Point', 'coordinates': (-79.42921876, 43.63418515)}"
-19003,3941,GO-20189042006,THEFT UNDER - BICYCLE,2018-12-11T00:00:00,2018,December,Tuesday,11,345,10,2018-12-14T00:00:00,2018,December,Friday,14,348,11,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,HOLD STEADY,MT,50,BLK,1500.0,STOLEN,18981,"{'type': 'Point', 'coordinates': (-79.42796684, 43.64059924)}"
-19004,3960,GO-20182362087,THEFT UNDER - BICYCLE,2018-12-22T00:00:00,2018,December,Saturday,22,356,13,2018-12-26T00:00:00,2018,December,Wednesday,26,360,12,D14,Toronto,85,South Parkdale (85),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,,MT,24,BLK,684.0,STOLEN,18982,"{'type': 'Point', 'coordinates': (-79.43232991, 43.64147429)}"
-19005,3987,GO-20199000798,THEFT UNDER - BICYCLE,2019-01-06T00:00:00,2019,January,Sunday,6,6,18,2019-01-08T00:00:00,2019,January,Tuesday,8,8,2,D14,Toronto,85,South Parkdale (85),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,TR,22,RED,542.0,STOLEN,18983,"{'type': 'Point', 'coordinates': (-79.42909632, 43.63858236)}"
-19006,3997,GO-20199001141,THEFT UNDER - BICYCLE,2019-01-07T00:00:00,2019,January,Monday,7,7,20,2019-01-10T00:00:00,2019,January,Thursday,10,10,9,D14,Toronto,85,South Parkdale (85),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,,ROYAL 9.3 2013,OT,21,BLK,0.0,STOLEN,18984,"{'type': 'Point', 'coordinates': (-79.43232991, 43.64147429)}"
-19007,4086,GO-20199007872,THEFT UNDER - BICYCLE,2019-03-03T00:00:00,2019,March,Sunday,3,62,19,2019-03-10T00:00:00,2019,March,Sunday,10,69,19,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,MARLIN,MT,6,GRY,800.0,STOLEN,18985,"{'type': 'Point', 'coordinates': (-79.42351373, 43.63972239)}"
-19008,4146,GO-20199011151,THEFT UNDER - BICYCLE,2019-04-06T00:00:00,2019,April,Saturday,6,96,16,2019-04-08T00:00:00,2019,April,Monday,8,98,23,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,OT,18 ALIGHT 1 DD,RG,9,DBL,799.0,STOLEN,18986,"{'type': 'Point', 'coordinates': (-79.42661556, 43.63707373)}"
-19009,4149,GO-20199011235,THEFT UNDER - BICYCLE,2019-03-28T00:00:00,2019,March,Thursday,28,87,12,2019-04-09T00:00:00,2019,April,Tuesday,9,99,15,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,UK,C3,RC,12,BLU,3000.0,STOLEN,18987,"{'type': 'Point', 'coordinates': (-79.44361865000002, 43.63766386)}"
-19010,4176,GO-20199012190,THEFT UNDER - BICYCLE,2019-04-12T00:00:00,2019,April,Friday,12,102,10,2019-04-17T00:00:00,2019,April,Wednesday,17,107,11,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,TR,FX,RG,24,TRQ,900.0,STOLEN,18988,"{'type': 'Point', 'coordinates': (-79.42351373, 43.63972239)}"
-19011,4219,GO-20199013538,THEFT UNDER - BICYCLE,2019-04-21T00:00:00,2019,April,Sunday,21,111,11,2019-04-30T00:00:00,2019,April,Tuesday,30,120,17,D14,Toronto,85,South Parkdale (85),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,POGLIAGHI,RC,10,GRN,5000.0,STOLEN,18989,"{'type': 'Point', 'coordinates': (-79.43154968, 43.64162515)}"
-19012,4289,GO-20199015334,THEFT UNDER,2019-05-14T00:00:00,2019,May,Tuesday,14,134,20,2019-05-16T00:00:00,2019,May,Thursday,16,136,20,D14,Toronto,85,South Parkdale (85),Go Station,Transit,SU,,MT,16,LGR,200.0,STOLEN,18990,"{'type': 'Point', 'coordinates': (-79.42125039, 43.64017825)}"
-19013,4295,GO-20199015443,THEFT UNDER - BICYCLE,2019-05-16T00:00:00,2019,May,Thursday,16,136,19,2019-05-17T00:00:00,2019,May,Friday,17,137,16,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,SU,SC 700C SOLARIS,RG,18,BLK,185.0,STOLEN,18991,"{'type': 'Point', 'coordinates': (-79.43324413, 43.637743060000005)}"
-19014,4310,GO-20199015743,THEFT UNDER,2019-05-20T00:00:00,2019,May,Monday,20,140,23,2019-05-21T00:00:00,2019,May,Tuesday,21,141,16,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,KH,URBAN SOUL,RG,1,BLU,350.0,STOLEN,18992,"{'type': 'Point', 'coordinates': (-79.42524484, 43.64083535000001)}"
-19015,4318,GO-2019923859,THEFT UNDER - BICYCLE,2019-05-20T00:00:00,2019,May,Monday,20,140,12,2019-05-21T00:00:00,2019,May,Tuesday,21,141,7,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,BARE,,MT,21,BLK,,STOLEN,18993,"{'type': 'Point', 'coordinates': (-79.42881933, 43.63865271)}"
-19016,4368,GO-20199016706,THEFT UNDER - BICYCLE,2019-05-27T00:00:00,2019,May,Monday,27,147,10,2019-05-28T00:00:00,2019,May,Tuesday,28,148,21,D14,Toronto,85,South Parkdale (85),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,FJ,STROLL,RG,1,BLK,700.0,STOLEN,18994,"{'type': 'Point', 'coordinates': (-79.42529763, 43.63734542)}"
-19017,4556,GO-20199019390,THEFT UNDER,2019-06-17T00:00:00,2019,June,Monday,17,168,17,2019-06-20T00:00:00,2019,June,Thursday,20,171,13,D11,Toronto,85,South Parkdale (85),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,LIBERO,RC,21,RED,500.0,STOLEN,18995,"{'type': 'Point', 'coordinates': (-79.45886359, 43.63771054)}"
-19018,4608,GO-20199020132,THEFT UNDER - BICYCLE,2019-06-25T00:00:00,2019,June,Tuesday,25,176,17,2019-06-25T00:00:00,2019,June,Tuesday,25,176,20,D14,Toronto,85,South Parkdale (85),Bar / Restaurant,Commercial,CA,T2000,TO,21,GRY,1000.0,STOLEN,18996,"{'type': 'Point', 'coordinates': (-79.42733544000001, 43.63896)}"
-19019,4614,GO-20199020205,THEFT UNDER - BICYCLE,2019-06-18T00:00:00,2019,June,Tuesday,18,169,21,2019-06-26T00:00:00,2019,June,Wednesday,26,177,15,D14,Toronto,85,South Parkdale (85),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,QUICK 3 DISK,RG,3,GRY,1000.0,STOLEN,18997,"{'type': 'Point', 'coordinates': (-79.42154165, 43.63810954)}"
-19020,15237,GO-20189027359,THEFT UNDER - BICYCLE,2018-08-16T00:00:00,2018,August,Thursday,16,228,18,2018-08-21T00:00:00,2018,August,Tuesday,21,233,19,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DB,INSIGHT,TO,24,DBL,250.0,STOLEN,18998,"{'type': 'Point', 'coordinates': (-79.46818422, 43.65633298)}"
-19021,15249,GO-20189039509,THEFT UNDER - BICYCLE,2018-11-21T00:00:00,2018,November,Wednesday,21,325,8,2018-11-24T00:00:00,2018,November,Saturday,24,328,8,D11,Toronto,88,High Park North (88),Schools During Supervised Activity,Educational,RA,,TO,8,BLK,500.0,STOLEN,18999,"{'type': 'Point', 'coordinates': (-79.47137179, 43.66030453)}"
-19022,15258,GO-20199011027,THEFT UNDER,2019-04-03T00:00:00,2019,April,Wednesday,3,93,18,2019-04-08T00:00:00,2019,April,Monday,8,98,9,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,30,BLK,600.0,STOLEN,19000,"{'type': 'Point', 'coordinates': (-79.46520964, 43.65754485)}"
-19023,15259,GO-2019697947,B&E W'INTENT,2019-04-18T00:00:00,2019,April,Thursday,18,108,4,2019-04-18T00:00:00,2019,April,Thursday,18,108,4,D11,Toronto,88,High Park North (88),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,OT,1,BLK,,STOLEN,19001,"{'type': 'Point', 'coordinates': (-79.4550173, 43.65771863)}"
-19024,15269,GO-20191143225,THEFT UNDER - BICYCLE,2019-06-20T00:00:00,2019,June,Thursday,20,171,11,2019-06-20T00:00:00,2019,June,Thursday,20,171,12,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,8,BLK,200.0,STOLEN,19002,"{'type': 'Point', 'coordinates': (-79.45999731, 43.66106331)}"
-19025,15270,GO-20199019875,THEFT UNDER,2019-06-21T00:00:00,2019,June,Friday,21,172,15,2019-06-24T00:00:00,2019,June,Monday,24,175,10,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,20,WHI,1470.0,STOLEN,19003,"{'type': 'Point', 'coordinates': (-79.45419292, 43.66073739)}"
-19026,15274,GO-20191314105,THEFT UNDER,2019-07-13T00:00:00,2019,July,Saturday,13,194,10,2019-07-13T00:00:00,2019,July,Saturday,13,194,22,D11,Toronto,88,High Park North (88),Ttc Subway Station,Transit,OTHER,UNKNOWN,RC,1,BLK,300.0,STOLEN,19004,"{'type': 'Point', 'coordinates': (-79.45267413, 43.65728748)}"
-19027,15275,GO-20199022355,THEFT UNDER,2019-07-06T00:00:00,2019,July,Saturday,6,187,14,2019-07-15T00:00:00,2019,July,Monday,15,196,15,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,OT,PERFORMANCE HYB,OT,24,SIL,800.0,STOLEN,19005,"{'type': 'Point', 'coordinates': (-79.4672054, 43.65398145)}"
-19028,15286,GO-20191927568,THEFT FROM MOTOR VEHICLE UNDER,2019-09-15T00:00:00,2019,September,Sunday,15,258,12,2019-10-08T00:00:00,2019,October,Tuesday,8,281,14,D11,Toronto,88,High Park North (88),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,SL4,MT,12,,3000.0,STOLEN,19006,"{'type': 'Point', 'coordinates': (-79.46520964, 43.65754485)}"
-19029,15290,GO-20192487646,B&E W'INTENT,2019-12-24T00:00:00,2019,December,Tuesday,24,358,18,2019-12-26T00:00:00,2019,December,Thursday,26,360,14,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,JAMIS,EXILE,MT,21,BLKWHI,550.0,UNKNOWN,19007,"{'type': 'Point', 'coordinates': (-79.46520964, 43.65754485)}"
-19030,15292,GO-20209002124,THEFT UNDER,2019-10-15T00:00:00,2019,October,Tuesday,15,288,7,2020-01-19T00:00:00,2020,January,Sunday,19,19,19,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,NO,,MT,21,GRY,500.0,STOLEN,19008,"{'type': 'Point', 'coordinates': (-79.46520964, 43.65754485)}"
-19031,15293,GO-20209004694,THEFT UNDER,2020-02-07T00:00:00,2020,February,Friday,7,38,22,2020-02-08T00:00:00,2020,February,Saturday,8,39,14,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,CONTEND(?),RC,20,ONG,1110.0,STOLEN,19009,"{'type': 'Point', 'coordinates': (-79.46341369, 43.66006726)}"
-19032,15300,GO-20209013220,THEFT UNDER,2020-05-05T00:00:00,2020,May,Tuesday,5,126,20,2020-05-15T00:00:00,2020,May,Friday,15,136,23,D11,Toronto,88,High Park North (88),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KO,SUTRA,TO,27,DGR,1200.0,STOLEN,19010,"{'type': 'Point', 'coordinates': (-79.46520964, 43.65754485)}"
-19033,15301,GO-20209013220,THEFT UNDER,2020-05-05T00:00:00,2020,May,Tuesday,5,126,20,2020-05-15T00:00:00,2020,May,Friday,15,136,23,D11,Toronto,88,High Park North (88),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KO,,TO,27,DGR,1200.0,STOLEN,19011,"{'type': 'Point', 'coordinates': (-79.46520964, 43.65754485)}"
-19034,15302,GO-20201083567,FTC WITH CONDITIONS,2020-06-12T00:00:00,2020,June,Friday,12,164,12,2020-06-12T00:00:00,2020,June,Friday,12,164,21,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,DIADORA,700C HYBRID,OT,7,BRN,470.0,STOLEN,19012,"{'type': 'Point', 'coordinates': (-79.46000875, 43.65470772)}"
-19035,15303,GO-20209015371,THEFT UNDER,2020-06-14T00:00:00,2020,June,Sunday,14,166,13,2020-06-14T00:00:00,2020,June,Sunday,14,166,22,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,GLOW,MT,7,YEL,150.0,STOLEN,19013,"{'type': 'Point', 'coordinates': (-79.45470926, 43.659712)}"
-19036,15305,GO-20209015736,THEFT UNDER,2020-06-15T00:00:00,2020,June,Monday,15,167,21,2020-06-19T00:00:00,2020,June,Friday,19,171,15,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,GT,KARAKORAM/ AVAL,MT,10,BLK,1500.0,STOLEN,19014,"{'type': 'Point', 'coordinates': (-79.46520964, 43.65754485)}"
-19037,18279,GO-20209019486,THEFT UNDER,2020-08-05T00:00:00,2020,August,Wednesday,5,218,9,2020-08-05T00:00:00,2020,August,Wednesday,5,218,20,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,XFR 4,MT,21,BLU,712.0,STOLEN,19015,"{'type': 'Point', 'coordinates': (-79.4595345, 43.65992373)}"
-19038,18284,GO-20209020765,THEFT UNDER,2020-08-13T00:00:00,2020,August,Thursday,13,226,12,2020-08-20T00:00:00,2020,August,Thursday,20,233,14,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,11,BLK,0.0,STOLEN,19016,"{'type': 'Point', 'coordinates': (-79.4636661, 43.65389971)}"
-19039,18304,GO-20209025603,THEFT UNDER,2020-10-05T00:00:00,2020,October,Monday,5,279,19,2020-10-06T00:00:00,2020,October,Tuesday,6,280,17,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,NO,CITY GLIDE,RG,8,DBL,775.0,STOLEN,19017,"{'type': 'Point', 'coordinates': (-79.46818422, 43.65633298)}"
-19040,18314,GO-2020848634,THEFT UNDER - BICYCLE,2020-04-05T00:00:00,2020,April,Sunday,5,96,12,2020-05-06T00:00:00,2020,May,Wednesday,6,127,12,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,08 GLOBE CITY 4,OT,27,GRY,600.0,STOLEN,19018,"{'type': 'Point', 'coordinates': (-79.46818422, 43.65633298)}"
-19041,18508,GO-20149003228,THEFT UNDER,2014-05-08T00:00:00,2014,May,Thursday,8,128,14,2014-05-08T00:00:00,2014,May,Thursday,8,128,16,D11,Toronto,88,High Park North (88),Schools During Supervised Activity,Educational,BI,,RC,10,LBL,300.0,STOLEN,19019,"{'type': 'Point', 'coordinates': (-79.47137179, 43.66030453)}"
-19042,18522,GO-20143350237,THEFT UNDER,2014-11-22T00:00:00,2014,November,Saturday,22,326,15,2014-11-22T00:00:00,2014,November,Saturday,22,326,20,D11,Toronto,88,High Park North (88),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,,RG,10,PNK,350.0,STOLEN,19020,"{'type': 'Point', 'coordinates': (-79.47548206, 43.65128643)}"
-19043,18530,GO-20159002428,THEFT UNDER,2015-04-17T00:00:00,2015,April,Friday,17,107,10,2015-05-04T00:00:00,2015,May,Monday,4,124,10,D11,Toronto,88,High Park North (88),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,PE,,RC,1,BLK,450.0,STOLEN,19021,"{'type': 'Point', 'coordinates': (-79.46390142, 43.65783049)}"
-19044,18534,GO-2015892118,THEFT UNDER,2015-05-28T00:00:00,2015,May,Thursday,28,148,8,2015-05-28T00:00:00,2015,May,Thursday,28,148,15,D11,Toronto,88,High Park North (88),Schools During Supervised Activity,Educational,SCHWINN,,MT,21,BLKSIL,300.0,STOLEN,19022,"{'type': 'Point', 'coordinates': (-79.47137179, 43.66030453)}"
-19045,18546,GO-20159005121,THEFT UNDER,2015-07-28T00:00:00,2015,July,Tuesday,28,209,18,2015-07-29T00:00:00,2015,July,Wednesday,29,210,21,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,1,BLK,400.0,STOLEN,19023,"{'type': 'Point', 'coordinates': (-79.46818422, 43.65633298)}"
-19046,18561,GO-20159011351,THEFT UNDER,2015-12-21T00:00:00,2015,December,Monday,21,355,19,2015-12-28T00:00:00,2015,December,Monday,28,362,19,D11,Toronto,88,High Park North (88),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ARIEL,RG,24,TRQ,700.0,STOLEN,19024,"{'type': 'Point', 'coordinates': (-79.46520964, 43.65754485)}"
-19047,18565,GO-2016930592,THEFT UNDER - BICYCLE,2016-05-29T00:00:00,2016,May,Sunday,29,150,15,2016-05-29T00:00:00,2016,May,Sunday,29,150,20,D11,Toronto,88,High Park North (88),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,2011CYCLE CROS,RC,0,WHI,500.0,STOLEN,19025,"{'type': 'Point', 'coordinates': (-79.45685392, 43.65539614)}"
-19048,18575,GO-20161917243,THEFT UNDER - BICYCLE,2016-10-25T00:00:00,2016,October,Tuesday,25,299,0,2016-10-28T00:00:00,2016,October,Friday,28,302,14,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,RALEIGH,SHIMANO,MT,21,SIL,800.0,STOLEN,19026,"{'type': 'Point', 'coordinates': (-79.46525867, 43.65353843)}"
-19049,18578,GO-20162295341,THEFT UNDER - BICYCLE,2016-12-28T00:00:00,2016,December,Wednesday,28,363,10,2016-12-28T00:00:00,2016,December,Wednesday,28,363,13,D11,Toronto,88,High Park North (88),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FUJI,MENS,OT,0,BLU,200.0,STOLEN,19027,"{'type': 'Point', 'coordinates': (-79.4672054, 43.65398145)}"
-19050,18580,GO-2017252006,THEFT UNDER - BICYCLE,2017-02-09T00:00:00,2017,February,Thursday,9,40,17,2017-02-09T00:00:00,2017,February,Thursday,9,40,17,D11,Toronto,88,High Park North (88),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CERVELO,S3,RG,21,RED,,STOLEN,19028,"{'type': 'Point', 'coordinates': (-79.45419292, 43.66073739)}"
-19051,18581,GO-2017319967,B&E,2017-02-18T00:00:00,2017,February,Saturday,18,49,5,2017-02-20T00:00:00,2017,February,Monday,20,51,17,D11,Toronto,88,High Park North (88),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,MT,21,GRY,200.0,STOLEN,19029,"{'type': 'Point', 'coordinates': (-79.45735727000002, 43.66038554)}"
-19052,18582,GO-2017319967,B&E,2017-02-18T00:00:00,2017,February,Saturday,18,49,5,2017-02-20T00:00:00,2017,February,Monday,20,51,17,D11,Toronto,88,High Park North (88),"Private Property Structure (Pool, Shed, Detached Garage)",Other,LEMOND,,RC,21,LBL,1200.0,STOLEN,19030,"{'type': 'Point', 'coordinates': (-79.45735727000002, 43.66038554)}"
-19053,18583,GO-2017319967,B&E,2017-02-18T00:00:00,2017,February,Saturday,18,49,5,2017-02-20T00:00:00,2017,February,Monday,20,51,17,D11,Toronto,88,High Park North (88),"Private Property Structure (Pool, Shed, Detached Garage)",Other,BI,FORMULA ONE,RC,18,LGR,1100.0,STOLEN,19031,"{'type': 'Point', 'coordinates': (-79.45735727000002, 43.66038554)}"
-19054,18584,GO-2017319967,B&E,2017-02-18T00:00:00,2017,February,Saturday,18,49,5,2017-02-20T00:00:00,2017,February,Monday,20,51,17,D11,Toronto,88,High Park North (88),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,SCRAMBLER,MT,27,RED,500.0,STOLEN,19032,"{'type': 'Point', 'coordinates': (-79.45735727000002, 43.66038554)}"
-19055,18585,GO-2017319967,B&E,2017-02-18T00:00:00,2017,February,Saturday,18,49,5,2017-02-20T00:00:00,2017,February,Monday,20,51,17,D11,Toronto,88,High Park North (88),"Private Property Structure (Pool, Shed, Detached Garage)",Other,LOUIS GARNEAU,,RC,20,LBL,2500.0,STOLEN,19033,"{'type': 'Point', 'coordinates': (-79.45735727000002, 43.66038554)}"
-19056,18586,GO-2017319967,B&E,2017-02-18T00:00:00,2017,February,Saturday,18,49,5,2017-02-20T00:00:00,2017,February,Monday,20,51,17,D11,Toronto,88,High Park North (88),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,MT,21,RED,500.0,STOLEN,19034,"{'type': 'Point', 'coordinates': (-79.45735727000002, 43.66038554)}"
-19057,18589,GO-20179003619,THEFT UNDER - BICYCLE,2017-03-22T00:00:00,2017,March,Wednesday,22,81,9,2017-03-22T00:00:00,2017,March,Wednesday,22,81,15,D11,Toronto,88,High Park North (88),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,GI,ROVE 0,OT,24,BLK,850.0,RECOVERED,19035,"{'type': 'Point', 'coordinates': (-79.45241445000002, 43.65632155)}"
-19058,18600,GO-20179007067,THEFT UNDER,2017-05-23T00:00:00,2017,May,Tuesday,23,143,17,2017-05-27T00:00:00,2017,May,Saturday,27,147,11,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,6,BLK,450.0,STOLEN,19036,"{'type': 'Point', 'coordinates': (-79.4636661, 43.65389971)}"
-19059,18616,GO-20179016054,THEFT UNDER - BICYCLE,2017-09-28T00:00:00,2017,September,Thursday,28,271,9,2017-09-28T00:00:00,2017,September,Thursday,28,271,20,D11,Toronto,88,High Park North (88),Schools During Supervised Activity,Educational,GI,REVOLT 3,RC,18,GRY,1000.0,STOLEN,19037,"{'type': 'Point', 'coordinates': (-79.47137179, 43.66030453)}"
-19060,18617,GO-20171808715,PROPERTY - FOUND,2017-10-03T00:00:00,2017,October,Tuesday,3,276,7,2017-10-05T00:00:00,2017,October,Thursday,5,278,23,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MONGOOSE,EXCURSION,MT,21,BLK,,UNKNOWN,19038,"{'type': 'Point', 'coordinates': (-79.46520964, 43.65754485)}"
-19061,18622,GO-20179017415,THEFT UNDER,2017-10-13T00:00:00,2017,October,Friday,13,286,22,2017-10-17T00:00:00,2017,October,Tuesday,17,290,12,D11,Toronto,88,High Park North (88),Ttc Subway Station,Transit,OT,SPORTSTER X50,MT,24,BLK,680.0,STOLEN,19039,"{'type': 'Point', 'coordinates': (-79.46525867, 43.65353843)}"
-19062,18628,GO-20189000475,THEFT UNDER - BICYCLE,2018-01-05T00:00:00,2018,January,Friday,5,5,12,2018-01-07T00:00:00,2018,January,Sunday,7,7,13,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,NO,XFR 3 FORMA,MT,24,BLK,750.0,STOLEN,19040,"{'type': 'Point', 'coordinates': (-79.46818422, 43.65633298)}"
-19063,18651,GO-20189026865,THEFT UNDER - BICYCLE,2018-08-15T00:00:00,2018,August,Wednesday,15,227,21,2018-08-18T00:00:00,2018,August,Saturday,18,230,0,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,OT,SPYDER,MT,21,OTH,300.0,STOLEN,19041,"{'type': 'Point', 'coordinates': (-79.46390142, 43.65783049)}"
-19064,18654,GO-20189028209,THEFT UNDER,2018-08-25T00:00:00,2018,August,Saturday,25,237,13,2018-08-27T00:00:00,2018,August,Monday,27,239,22,D11,Toronto,88,High Park North (88),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,SL3,RC,27,WHI,1300.0,STOLEN,19042,"{'type': 'Point', 'coordinates': (-79.45585147, 43.65946376)}"
-19065,18656,GO-20181751620,B&E,2018-09-17T00:00:00,2018,September,Monday,17,260,22,2018-09-21T00:00:00,2018,September,Friday,21,264,16,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,,MT,10,GRN,1200.0,STOLEN,19043,"{'type': 'Point', 'coordinates': (-79.45830641, 43.6614004)}"
-19066,18662,GO-20189043155,THEFT UNDER - BICYCLE,2018-12-20T00:00:00,2018,December,Thursday,20,354,19,2018-12-23T00:00:00,2018,December,Sunday,23,357,20,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,UK,SQUARE CROSS,MT,21,BLK,1500.0,STOLEN,19044,"{'type': 'Point', 'coordinates': (-79.4672054, 43.65398145)}"
-19067,18665,GO-20199004423,THEFT UNDER - BICYCLE,2019-01-04T00:00:00,2019,January,Friday,4,4,13,2019-02-04T00:00:00,2019,February,Monday,4,35,13,D11,Toronto,88,High Park North (88),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,SHIMANO,MT,21,BLK,345.0,STOLEN,19045,"{'type': 'Point', 'coordinates': (-79.4672054, 43.65398145)}"
-19068,18666,GO-20199008388,THEFT UNDER - BICYCLE,2019-03-15T00:00:00,2019,March,Friday,15,74,12,2019-03-15T00:00:00,2019,March,Friday,15,74,18,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,,,MT,12,BLK,400.0,STOLEN,19046,"{'type': 'Point', 'coordinates': (-79.45585147, 43.65946376)}"
-19069,18668,GO-20199011737,THEFT UNDER,2019-04-08T00:00:00,2019,April,Monday,8,98,14,2019-04-13T00:00:00,2019,April,Saturday,13,103,14,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,TR,MOUNTAIN BIKE,MT,7,SIL,700.0,STOLEN,19047,"{'type': 'Point', 'coordinates': (-79.46520964, 43.65754485)}"
-19070,18671,GO-2019845227,B&E,2019-05-08T00:00:00,2019,May,Wednesday,8,128,16,2019-05-10T00:00:00,2019,May,Friday,10,130,21,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CERVELO,R3,OT,12,WHI,7916.0,STOLEN,19048,"{'type': 'Point', 'coordinates': (-79.47208854, 43.65431424)}"
-19071,18681,GO-20191600359,THEFT UNDER - BICYCLE,2019-08-15T00:00:00,2019,August,Thursday,15,227,20,2019-08-22T00:00:00,2019,August,Thursday,22,234,14,D11,Toronto,88,High Park North (88),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SURLY,STEAM ROLLER,TO,8,BRN,1600.0,STOLEN,19049,"{'type': 'Point', 'coordinates': (-79.46341369, 43.66006726)}"
-19072,18688,GO-20199030640,THEFT UNDER,2019-09-18T00:00:00,2019,September,Wednesday,18,261,22,2019-09-19T00:00:00,2019,September,Thursday,19,262,10,D11,Toronto,88,High Park North (88),Ttc Subway Station,Transit,OT,HYBRID,OT,3,BLK,300.0,STOLEN,19050,"{'type': 'Point', 'coordinates': (-79.4762656, 43.65113608)}"
-19073,18695,GO-20199033653,THEFT UNDER,2019-10-04T00:00:00,2019,October,Friday,4,277,14,2019-10-12T00:00:00,2019,October,Saturday,12,285,11,D11,Toronto,88,High Park North (88),Schools During Un-Supervised Activity,Educational,GT,,MT,21,BLK,500.0,STOLEN,19051,"{'type': 'Point', 'coordinates': (-79.47137179, 43.66030453)}"
-19074,18696,GO-20199040794,THEFT UNDER,2019-12-12T00:00:00,2019,December,Thursday,12,346,17,2019-12-13T00:00:00,2019,December,Friday,13,347,13,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,NO,3 L,RG,8,BLK,640.0,STOLEN,19052,"{'type': 'Point', 'coordinates': (-79.45267413, 43.65728748)}"
-19075,18701,GO-20209006916,THEFT UNDER,2019-12-29T00:00:00,2019,December,Sunday,29,363,1,2020-02-25T00:00:00,2020,February,Tuesday,25,56,21,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,BI,STRADA,TO,16,LGR,1200.0,STOLEN,19053,"{'type': 'Point', 'coordinates': (-79.46818422, 43.65633298)}"
-19076,18703,GO-20209011450,THEFT UNDER,2020-04-18T00:00:00,2020,April,Saturday,18,109,18,2020-04-18T00:00:00,2020,April,Saturday,18,109,19,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,TREK 750,OT,3,BLK,229.0,STOLEN,19054,"{'type': 'Point', 'coordinates': (-79.45494727, 43.6615023)}"
-19077,21570,GO-20201422439,THEFT UNDER - BICYCLE,2020-07-25T00:00:00,2020,July,Saturday,25,207,18,2020-07-31T00:00:00,2020,July,Friday,31,213,9,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,REID,,RG,21,BLKGRY,750.0,STOLEN,19055,"{'type': 'Point', 'coordinates': (-79.46919208, 43.65868281)}"
-19078,21577,GO-20142063112,THEFT UNDER,2014-05-09T00:00:00,2014,May,Friday,9,129,8,2014-05-12T00:00:00,2014,May,Monday,12,132,10,D11,Toronto,88,High Park North (88),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,MT,0,GRY,300.0,STOLEN,19056,"{'type': 'Point', 'coordinates': (-79.46525867, 43.65353843)}"
-19079,21597,GO-20149006887,THEFT UNDER,2014-08-21T00:00:00,2014,August,Thursday,21,233,17,2014-09-14T00:00:00,2014,September,Sunday,14,257,17,D11,Toronto,88,High Park North (88),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,B. SERIES,RG,1,WHI,300.0,STOLEN,19057,"{'type': 'Point', 'coordinates': (-79.45685392, 43.65539614)}"
-19080,21598,GO-20149006895,THEFT UNDER,2014-09-12T00:00:00,2014,September,Friday,12,255,18,2014-09-14T00:00:00,2014,September,Sunday,14,257,19,D11,Toronto,88,High Park North (88),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GF,21 SPD,MT,30,BLK,300.0,STOLEN,19058,"{'type': 'Point', 'coordinates': (-79.46390142, 43.65783049)}"
-19081,21606,GO-2015520199,ROBBERY - OTHER,2015-03-28T00:00:00,2015,March,Saturday,28,87,0,2015-03-28T00:00:00,2015,March,Saturday,28,87,23,D11,Toronto,88,High Park North (88),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,UNK,MT,20,RED,500.0,STOLEN,19059,"{'type': 'Point', 'coordinates': (-79.47548206, 43.65128643)}"
-19082,21616,GO-20159004148,THEFT UNDER,2015-07-02T00:00:00,2015,July,Thursday,2,183,2,2015-07-03T00:00:00,2015,July,Friday,3,184,15,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,RG,15,BLK,700.0,STOLEN,19060,"{'type': 'Point', 'coordinates': (-79.45999731, 43.66106331)}"
-19083,21622,GO-20159007139,THEFT UNDER,2015-09-10T00:00:00,2015,September,Thursday,10,253,9,2015-09-13T00:00:00,2015,September,Sunday,13,256,23,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,RM,RMC RC 10,RG,24,RED,620.0,STOLEN,19061,"{'type': 'Point', 'coordinates': (-79.46681135, 43.65722821000001)}"
-19084,21629,GO-20152098074,THEFT UNDER,2015-12-07T00:00:00,2015,December,Monday,7,341,17,2015-12-09T00:00:00,2015,December,Wednesday,9,343,12,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FUJI,ABSOLUTE 2.1,TO,21,BLK,600.0,STOLEN,19062,"{'type': 'Point', 'coordinates': (-79.46520964, 43.65754485)}"
-19085,21633,GO-20169001446,THEFT UNDER,2016-02-09T00:00:00,2016,February,Tuesday,9,40,18,2016-02-16T00:00:00,2016,February,Tuesday,16,47,10,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,DB,,RG,18,BLU,700.0,STOLEN,19063,"{'type': 'Point', 'coordinates': (-79.46681135, 43.65722821000001)}"
-19086,21638,GO-20169002869,THEFT UNDER - BICYCLE,2016-03-29T00:00:00,2016,March,Tuesday,29,89,8,2016-03-29T00:00:00,2016,March,Tuesday,29,89,20,D11,Toronto,88,High Park North (88),Schools During Un-Supervised Activity,Educational,FJ,DECLARATION,RG,1,BLK,600.0,STOLEN,19064,"{'type': 'Point', 'coordinates': (-79.47137179, 43.66030453)}"
-19087,21645,GO-20161084996,THEFT UNDER - BICYCLE,2016-06-17T00:00:00,2016,June,Friday,17,169,21,2016-06-21T00:00:00,2016,June,Tuesday,21,173,17,D11,Toronto,88,High Park North (88),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,LINUS,AMSTERDAM DUTCH,OT,3,OTH,850.0,STOLEN,19065,"{'type': 'Point', 'coordinates': (-79.4636661, 43.65389971)}"
-19088,21649,GO-20169007203,THEFT UNDER,2016-07-12T00:00:00,2016,July,Tuesday,12,194,18,2016-07-14T00:00:00,2016,July,Thursday,14,196,18,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM 2,MT,27,BLK,800.0,STOLEN,19066,"{'type': 'Point', 'coordinates': (-79.4636661, 43.65389971)}"
-19089,21651,GO-20161357288,THEFT UNDER - BICYCLE,2016-08-01T00:00:00,2016,August,Monday,1,214,20,2016-08-02T00:00:00,2016,August,Tuesday,2,215,14,D11,Toronto,88,High Park North (88),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DCO,ELEGANCE 703,RG,21,BLK,700.0,STOLEN,19067,"{'type': 'Point', 'coordinates': (-79.46520964, 43.65754485)}"
-19090,21663,GO-20179004311,THEFT UNDER - BICYCLE,2017-04-05T00:00:00,2017,April,Wednesday,5,95,17,2017-04-06T00:00:00,2017,April,Thursday,6,96,9,D11,Toronto,88,High Park North (88),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SC,,RG,21,PLE,400.0,STOLEN,19068,"{'type': 'Point', 'coordinates': (-79.46520964, 43.65754485)}"
-19091,21667,GO-20179005714,THEFT UNDER - BICYCLE,2017-04-17T00:00:00,2017,April,Monday,17,107,15,2017-05-04T00:00:00,2017,May,Thursday,4,124,19,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,OT,JACKSON,MT,21,BLK,700.0,STOLEN,19069,"{'type': 'Point', 'coordinates': (-79.4636661, 43.65389971)}"
-19092,21668,GO-20179005714,THEFT UNDER - BICYCLE,2017-04-17T00:00:00,2017,April,Monday,17,107,15,2017-05-04T00:00:00,2017,May,Thursday,4,124,19,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,OT,ELEVATION,MT,18,BLU,490.0,STOLEN,19070,"{'type': 'Point', 'coordinates': (-79.4636661, 43.65389971)}"
-19093,21673,GO-20171026896,B&E,2017-06-09T00:00:00,2017,June,Friday,9,160,9,2017-06-09T00:00:00,2017,June,Friday,9,160,19,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,,MT,21,BLKPLE,400.0,STOLEN,19071,"{'type': 'Point', 'coordinates': (-79.47668335, 43.65836721)}"
-19094,21677,GO-20179009760,THEFT UNDER - BICYCLE,2017-07-08T00:00:00,2017,July,Saturday,8,189,17,2017-07-09T00:00:00,2017,July,Sunday,9,190,12,D11,Toronto,88,High Park North (88),Ttc Subway Station,Transit,OT,,RG,1,BLK,0.0,STOLEN,19072,"{'type': 'Point', 'coordinates': (-79.4672054, 43.65398145)}"
-19095,21692,GO-20179021986,THEFT UNDER - BICYCLE,2017-12-07T00:00:00,2017,December,Thursday,7,341,8,2017-12-12T00:00:00,2017,December,Tuesday,12,346,15,D11,Toronto,88,High Park North (88),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ARGON 18 GALLIU,RC,18,RED,1600.0,STOLEN,19073,"{'type': 'Point', 'coordinates': (-79.4672054, 43.65398145)}"
-19096,21703,GO-20181092388,THEFT UNDER,2018-06-08T00:00:00,2018,June,Friday,8,159,6,2018-06-16T00:00:00,2018,June,Saturday,16,167,7,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,FUEL X,MT,27,RED,3200.0,STOLEN,19074,"{'type': 'Point', 'coordinates': (-79.45735727000002, 43.66038554)}"
-19097,21707,GO-20189023624,THEFT UNDER,2018-07-23T00:00:00,2018,July,Monday,23,204,6,2018-07-23T00:00:00,2018,July,Monday,23,204,19,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,21,BLK,684.0,STOLEN,19075,"{'type': 'Point', 'coordinates': (-79.46681135, 43.65722821000001)}"
-19098,21744,GO-20199022173,THEFT UNDER,2019-07-12T00:00:00,2019,July,Friday,12,193,9,2019-07-13T00:00:00,2019,July,Saturday,13,194,15,D11,Toronto,88,High Park North (88),Ttc Subway Station,Transit,OT,,RG,21,BLU,450.0,STOLEN,19076,"{'type': 'Point', 'coordinates': (-79.46000875, 43.65470772)}"
-19099,21748,GO-20199024613,THEFT UNDER,2019-07-27T00:00:00,2019,July,Saturday,27,208,15,2019-08-01T00:00:00,2019,August,Thursday,1,213,9,D11,Toronto,88,High Park North (88),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,,MT,15,BLK,169.0,STOLEN,19077,"{'type': 'Point', 'coordinates': (-79.4636661, 43.65389971)}"
-19100,21751,GO-20199025736,THEFT UNDER,2019-08-11T00:00:00,2019,August,Sunday,11,223,12,2019-08-11T00:00:00,2019,August,Sunday,11,223,13,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,18,GRY,200.0,STOLEN,19078,"{'type': 'Point', 'coordinates': (-79.46525867, 43.65353843)}"
-19101,21758,GO-20191824572,B&E,2019-09-18T00:00:00,2019,September,Wednesday,18,261,16,2019-09-22T00:00:00,2019,September,Sunday,22,265,10,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,VIENNA,EL,3,GRYWHI,1000.0,STOLEN,19079,"{'type': 'Point', 'coordinates': (-79.455454, 43.65854213)}"
-19102,21761,GO-20199034306,THEFT UNDER,2019-10-17T00:00:00,2019,October,Thursday,17,290,10,2019-10-18T00:00:00,2019,October,Friday,18,291,10,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,OT,2007 P3,OT,9,GRY,3000.0,STOLEN,19080,"{'type': 'Point', 'coordinates': (-79.46390142, 43.65783049)}"
-19103,21763,GO-20192153261,THEFT OF MOTOR VEHICLE,2019-11-06T00:00:00,2019,November,Wednesday,6,310,7,2019-11-07T00:00:00,2019,November,Thursday,7,311,13,D11,Toronto,88,High Park North (88),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SWIFT,,EL,0,BLU,2300.0,STOLEN,19081,"{'type': 'Point', 'coordinates': (-79.4636661, 43.65389971)}"
-19104,21770,GO-20209004694,THEFT UNDER,2020-02-07T00:00:00,2020,February,Friday,7,38,22,2020-02-08T00:00:00,2020,February,Saturday,8,39,14,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,CONTEND 3,RC,20,,1110.0,STOLEN,19082,"{'type': 'Point', 'coordinates': (-79.46341369, 43.66006726)}"
-19105,21772,GO-2020747760,THEFT UNDER,2020-04-16T00:00:00,2020,April,Thursday,16,107,12,2020-04-19T00:00:00,2020,April,Sunday,19,110,9,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FELT,VERZA 30,OT,18,GRY,1500.0,STOLEN,19083,"{'type': 'Point', 'coordinates': (-79.46596023, 43.65934643)}"
-19106,21773,GO-2020747760,THEFT UNDER,2020-04-16T00:00:00,2020,April,Thursday,16,107,12,2020-04-19T00:00:00,2020,April,Sunday,19,110,9,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FELT,55X,OT,9,GRY,2500.0,STOLEN,19084,"{'type': 'Point', 'coordinates': (-79.46596023, 43.65934643)}"
-19107,21782,GO-2020961943,THEFT UNDER - BICYCLE,2020-05-22T00:00:00,2020,May,Friday,22,143,19,2020-05-25T00:00:00,2020,May,Monday,25,146,9,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,GIANT,,RG,1,WHIPNK,650.0,STOLEN,19085,"{'type': 'Point', 'coordinates': (-79.4636661, 43.65389971)}"
-19108,21784,GO-20209014539,THEFT UNDER,2020-05-03T00:00:00,2020,May,Sunday,3,124,0,2020-06-04T00:00:00,2020,June,Thursday,4,156,19,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,TR,7.1 FX STAGGER,RG,7,BLU,0.0,STOLEN,19086,"{'type': 'Point', 'coordinates': (-79.4672054, 43.65398145)}"
-19109,21983,GO-20209025195,THEFT UNDER,2020-10-01T00:00:00,2020,October,Thursday,1,275,2,2020-10-01T00:00:00,2020,October,Thursday,1,275,21,D11,Toronto,88,High Park North (88),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,VERZA SPEED 40,OT,24,GRY,700.0,STOLEN,19087,"{'type': 'Point', 'coordinates': (-79.45934281000001, 43.65631607)}"
-19110,21985,GO-20201939258,THEFT OF EBIKE UNDER $5000,2020-10-09T00:00:00,2020,October,Friday,9,283,10,2020-10-12T00:00:00,2020,October,Monday,12,286,18,D11,Toronto,88,High Park North (88),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,GTS,EL,1,REDBLK,4500.0,STOLEN,19088,"{'type': 'Point', 'coordinates': (-79.45267413, 43.65728748)}"
-19111,24394,GO-20201446663,THEFT UNDER - BICYCLE,2020-07-30T00:00:00,2020,July,Thursday,30,212,13,2020-08-03T00:00:00,2020,August,Monday,3,216,13,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,TITCH,MT,8,GRN,,STOLEN,19089,"{'type': 'Point', 'coordinates': (-79.46520964, 43.65754485)}"
-19112,24395,GO-20209019490,THEFT UNDER,2020-07-30T00:00:00,2020,July,Thursday,30,212,21,2020-08-05T00:00:00,2020,August,Wednesday,5,218,21,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,XC27,MT,21,BLK,450.0,STOLEN,19090,"{'type': 'Point', 'coordinates': (-79.45750541, 43.6609544)}"
-19113,24411,GO-20202129561,THEFT OVER,2020-04-06T00:00:00,2020,April,Monday,6,97,12,2020-11-09T00:00:00,2020,November,Monday,9,314,20,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,CCM,,RG,1,BLU,450.0,STOLEN,19091,"{'type': 'Point', 'coordinates': (-79.46867482, 43.65282034)}"
-19114,24985,GO-20141919782,THEFT UNDER,2014-04-18T00:00:00,2014,April,Friday,18,108,19,2014-04-19T00:00:00,2014,April,Saturday,19,109,11,D11,Toronto,88,High Park North (88),Ttc Subway Station,Transit,OTHER,,OT,3,BGE,600.0,STOLEN,19092,"{'type': 'Point', 'coordinates': (-79.4672054, 43.65398145)}"
-19115,24988,GO-20149003684,THEFT UNDER,2014-05-28T00:00:00,2014,May,Wednesday,28,148,22,2014-05-30T00:00:00,2014,May,Friday,30,150,10,D11,Toronto,88,High Park North (88),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,ESCAPE CITY,RG,12,GLD,600.0,STOLEN,19093,"{'type': 'Point', 'coordinates': (-79.46525867, 43.65353843)}"
-19116,24991,GO-20149004431,THEFT UNDER,2014-06-24T00:00:00,2014,June,Tuesday,24,175,16,2014-06-25T00:00:00,2014,June,Wednesday,25,176,13,D11,Toronto,88,High Park North (88),Ttc Subway Station,Transit,SC,HYDRA,RG,24,BLK,275.0,STOLEN,19094,"{'type': 'Point', 'coordinates': (-79.47548206, 43.65128643)}"
-19117,24998,GO-20142673990,THEFT UNDER,2014-08-02T00:00:00,2014,August,Saturday,2,214,21,2014-08-10T00:00:00,2014,August,Sunday,10,222,13,D11,Toronto,88,High Park North (88),Ttc Subway Station,Transit,MIELE,,TO,20,GRN,,STOLEN,19095,"{'type': 'Point', 'coordinates': (-79.458615, 43.65501975)}"
-19118,25002,GO-20149006394,THEFT UNDER,2014-08-29T00:00:00,2014,August,Friday,29,241,17,2014-08-29T00:00:00,2014,August,Friday,29,241,20,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,NO,TORRENT,MT,18,YEL,900.0,STOLEN,19096,"{'type': 'Point', 'coordinates': (-79.46686398, 43.653199410000006)}"
-19119,25003,GO-20142961377,THEFT UNDER,2014-09-21T00:00:00,2014,September,Sunday,21,264,2,2014-09-22T00:00:00,2014,September,Monday,22,265,16,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,OTHER,,RC,1,BLK,,STOLEN,19097,"{'type': 'Point', 'coordinates': (-79.46919208, 43.65868281)}"
-19120,24050,GO-20199019593,THEFT UNDER,2019-06-11T00:00:00,2019,June,Tuesday,11,162,17,2019-06-21T00:00:00,2019,June,Friday,21,172,17,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,FJ,REGIS,RG,7,BLK,550.0,STOLEN,19098,"{'type': 'Point', 'coordinates': (-79.42524484, 43.64083535000001)}"
-19121,15139,GO-20169009999,THEFT UNDER,2016-09-04T00:00:00,2016,September,Sunday,4,248,22,2016-09-05T00:00:00,2016,September,Monday,5,249,21,D11,Toronto,87,High Park-Swansea (87),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KO,,MT,21,RED,400.0,STOLEN,19099,"{'type': 'Point', 'coordinates': (-79.45811739, 43.65382553)}"
-19122,24076,GO-20199023897,THEFT UNDER - BICYCLE,2019-07-24T00:00:00,2019,July,Wednesday,24,205,18,2019-07-26T00:00:00,2019,July,Friday,26,207,14,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,OT,40,TRQ,800.0,STOLEN,19100,"{'type': 'Point', 'coordinates': (-79.43031712, 43.63834508)}"
-19123,24084,GO-20191472269,THEFT UNDER - BICYCLE,2019-08-04T00:00:00,2019,August,Sunday,4,216,14,2019-08-04T00:00:00,2019,August,Sunday,4,216,19,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CANNONDALE,,RC,0,BLU,1500.0,STOLEN,19101,"{'type': 'Point', 'coordinates': (-79.42909632, 43.63858236)}"
-19124,24091,GO-20199027364,THEFT UNDER - BICYCLE,2019-08-22T00:00:00,2019,August,Thursday,22,234,19,2019-08-23T00:00:00,2019,August,Friday,23,235,11,D14,Toronto,85,South Parkdale (85),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,FO,5,PLE,350.0,STOLEN,19102,"{'type': 'Point', 'coordinates': (-79.43537437, 43.64084189)}"
-19125,24092,GO-20199027432,THEFT UNDER - BICYCLE,2019-08-19T00:00:00,2019,August,Monday,19,231,17,2019-08-23T00:00:00,2019,August,Friday,23,235,15,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,KO,11 PADDY WAGON,OT,1,BLK,699.0,STOLEN,19103,"{'type': 'Point', 'coordinates': (-79.43827743, 43.63589862)}"
-19126,24101,GO-20191777138,WEAPON - POSS DANGEROUS PURP,2019-09-16T00:00:00,2019,September,Monday,16,259,6,2019-09-16T00:00:00,2019,September,Monday,16,259,6,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,FUJI,HELION,RG,7,RED,800.0,RECOVERED,19104,"{'type': 'Point', 'coordinates': (-79.42351373, 43.63972239)}"
-19127,7768,GO-20149001570,THEFT UNDER,2014-02-24T00:00:00,2014,February,Monday,24,55,20,2014-02-24T00:00:00,2014,February,Monday,24,55,22,D11,Toronto,88,High Park North (88),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,,RG,1,,0.0,STOLEN,19105,"{'type': 'Point', 'coordinates': (-79.47518086, 43.66111836)}"
-19128,24104,GO-20199031102,THEFT UNDER,2019-09-20T00:00:00,2019,September,Friday,20,263,7,2019-09-22T00:00:00,2019,September,Sunday,22,265,21,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ZED 2.0,MT,21,WHI,400.0,STOLEN,19106,"{'type': 'Point', 'coordinates': (-79.42524484, 43.64083535000001)}"
-19129,24110,GO-20199032952,THEFT UNDER - BICYCLE,2019-10-07T00:00:00,2019,October,Monday,7,280,12,2019-10-07T00:00:00,2019,October,Monday,7,280,15,D14,Toronto,85,South Parkdale (85),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RG,1,BLU,200.0,STOLEN,19107,"{'type': 'Point', 'coordinates': (-79.42409977, 43.63759298)}"
-19130,24119,GO-20199035877,THEFT UNDER - BICYCLE,2019-10-26T00:00:00,2019,October,Saturday,26,299,12,2019-10-30T00:00:00,2019,October,Wednesday,30,303,15,D14,Toronto,85,South Parkdale (85),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,FJ,FUJI JARI,RC,16,,800.0,STOLEN,19108,"{'type': 'Point', 'coordinates': (-79.42529763, 43.63734542)}"
-19131,24132,GO-20192324198,PROPERTY - FOUND,2019-12-02T00:00:00,2019,December,Monday,2,336,13,2019-12-02T00:00:00,2019,December,Monday,2,336,13,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RALEIGH,PRIM,RG,0,RED,,UNKNOWN,19109,"{'type': 'Point', 'coordinates': (-79.42529763, 43.63734542)}"
-19132,24133,GO-20192324198,PROPERTY - FOUND,2019-12-02T00:00:00,2019,December,Monday,2,336,13,2019-12-02T00:00:00,2019,December,Monday,2,336,13,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,ROAM,RG,0,BLK,,UNKNOWN,19110,"{'type': 'Point', 'coordinates': (-79.42529763, 43.63734542)}"
-19133,24134,GO-20192324198,PROPERTY - FOUND,2019-12-02T00:00:00,2019,December,Monday,2,336,13,2019-12-02T00:00:00,2019,December,Monday,2,336,13,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,MT,0,BLKBLU,,UNKNOWN,19111,"{'type': 'Point', 'coordinates': (-79.42529763, 43.63734542)}"
-19134,24135,GO-20192324198,PROPERTY - FOUND,2019-12-02T00:00:00,2019,December,Monday,2,336,13,2019-12-02T00:00:00,2019,December,Monday,2,336,13,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,MT,0,BLK,,UNKNOWN,19112,"{'type': 'Point', 'coordinates': (-79.42529763, 43.63734542)}"
-19135,24136,GO-20192324198,PROPERTY - FOUND,2019-12-02T00:00:00,2019,December,Monday,2,336,13,2019-12-02T00:00:00,2019,December,Monday,2,336,13,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,RG,0,GRNWHI,,UNKNOWN,19113,"{'type': 'Point', 'coordinates': (-79.42529763, 43.63734542)}"
-19136,24155,GO-20209010577,THEFT UNDER,2020-04-06T00:00:00,2020,April,Monday,6,97,0,2020-04-06T00:00:00,2020,April,Monday,6,97,15,D14,Toronto,85,South Parkdale (85),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,MEC NATIONAL BI,TO,27,DGR,1650.0,STOLEN,19114,"{'type': 'Point', 'coordinates': (-79.43468620000002, 43.63746024)}"
-19137,24163,GO-2020718932,THEFT UNDER,2020-04-13T00:00:00,2020,April,Monday,13,104,22,2020-04-15T00:00:00,2020,April,Wednesday,15,106,15,D14,Toronto,85,South Parkdale (85),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,HARD CORE,MT,12,,600.0,STOLEN,19115,"{'type': 'Point', 'coordinates': (-79.43087678, 43.63821035)}"
-19138,24169,GO-2020825140,THEFT UNDER - BICYCLE,2020-05-01T00:00:00,2020,May,Friday,1,122,22,2020-05-02T00:00:00,2020,May,Saturday,2,123,13,D14,Toronto,85,South Parkdale (85),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,,OT,21,BLK,,STOLEN,19116,"{'type': 'Point', 'coordinates': (-79.43031712, 43.63834508)}"
-19139,24175,GO-20209013255,THEFT UNDER,2020-05-13T00:00:00,2020,May,Wednesday,13,134,14,2020-05-16T00:00:00,2020,May,Saturday,16,137,15,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,3,BLK,500.0,STOLEN,19117,"{'type': 'Point', 'coordinates': (-79.42524484, 43.64083535000001)}"
-19140,24236,GO-20171727971,THEFT UNDER - BICYCLE,2017-09-23T00:00:00,2017,September,Saturday,23,266,12,2017-09-23T00:00:00,2017,September,Saturday,23,266,13,D14,Toronto,85,South Parkdale (85),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,BCM AC02,OT,0,GRYONG,2000.0,STOLEN,19118,"{'type': 'Point', 'coordinates': (-79.43537437, 43.64084189)}"
-19141,24295,GO-20189013275,THEFT UNDER - BICYCLE,2017-11-19T00:00:00,2017,November,Sunday,19,323,9,2018-04-30T00:00:00,2018,April,Monday,30,120,10,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,VITA,OT,9,WHI,916.0,STOLEN,19119,"{'type': 'Point', 'coordinates': (-79.42661556, 43.63707373)}"
-19142,24306,GO-20189014825,THEFT UNDER - BICYCLE,2018-05-10T00:00:00,2018,May,Thursday,10,130,18,2018-05-14T00:00:00,2018,May,Monday,14,134,10,D14,Toronto,85,South Parkdale (85),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RG,30,RED,600.0,STOLEN,19120,"{'type': 'Point', 'coordinates': (-79.42808998, 43.63598082)}"
-19143,24352,GO-20189024903,THEFT UNDER - BICYCLE,2018-08-02T00:00:00,2018,August,Thursday,2,214,12,2018-08-02T00:00:00,2018,August,Thursday,2,214,16,D14,Toronto,85,South Parkdale (85),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UK,,RC,1,RED,600.0,STOLEN,19121,"{'type': 'Point', 'coordinates': (-79.4331133, 43.64129997)}"
-19144,24587,GO-20141261431,THEFT UNDER,2014-01-01T00:00:00,2014,January,Wednesday,1,1,7,2014-01-01T00:00:00,2014,January,Wednesday,1,1,7,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,SUPERCYCLE,,MT,10,,,STOLEN,19122,"{'type': 'Point', 'coordinates': (-79.44361865000002, 43.63766386)}"
-19145,24603,GO-20142299657,THEFT UNDER,2014-06-16T00:00:00,2014,June,Monday,16,167,0,2014-06-16T00:00:00,2014,June,Monday,16,167,7,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,EMMO,EMMO,EL,1,BLK,560.0,STOLEN,19123,"{'type': 'Point', 'coordinates': (-79.43723509, 43.63692597)}"
-19146,24606,GO-20142319125,THEFT UNDER,2014-06-17T00:00:00,2014,June,Tuesday,17,168,21,2014-06-18T00:00:00,2014,June,Wednesday,18,169,19,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,CROSS TRAIL,MT,24,REDBLK,600.0,STOLEN,19124,"{'type': 'Point', 'coordinates': (-79.43657354, 43.63873271)}"
-19147,24670,GO-20143134370,THEFT UNDER,2014-10-09T00:00:00,2014,October,Thursday,9,282,0,2014-10-19T00:00:00,2014,October,Sunday,19,292,12,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,RALEIGT,,RG,16,GRN,500.0,STOLEN,19125,"{'type': 'Point', 'coordinates': (-79.43827743, 43.63589862)}"
-19148,24738,GO-20151434403,THEFT UNDER,2015-08-18T00:00:00,2015,August,Tuesday,18,230,18,2015-08-20T00:00:00,2015,August,Thursday,20,232,16,D14,Toronto,85,South Parkdale (85),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GIANT,,TO,6,BLU,750.0,STOLEN,19126,"{'type': 'Point', 'coordinates': (-79.42351373, 43.63972239)}"
-19149,25193,GO-2016900415,THEFT UNDER - BICYCLE,2016-05-24T00:00:00,2016,May,Tuesday,24,145,11,2016-05-25T00:00:00,2016,May,Wednesday,25,146,11,D14,Toronto,85,South Parkdale (85),"Apartment (Rooming House, Condo)",Apartment,OTHER,DAYMAX,EL,1,BLUWHI,1000.0,STOLEN,19127,"{'type': 'Point', 'coordinates': (-79.4415258, 43.63663875)}"
-19150,25194,GO-2016898875,THEFT UNDER - BICYCLE,2016-05-24T00:00:00,2016,May,Tuesday,24,145,20,2016-05-25T00:00:00,2016,May,Wednesday,25,146,7,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,GT80,EL,0,,,STOLEN,19128,"{'type': 'Point', 'coordinates': (-79.43827743, 43.63589862)}"
-19151,25204,GO-2016979468,THEFT UNDER,2016-06-03T00:00:00,2016,June,Friday,3,155,18,2016-06-06T00:00:00,2016,June,Monday,6,158,1,D14,Toronto,85,South Parkdale (85),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,ZH08,SC,1,YEL,2100.0,STOLEN,19129,"{'type': 'Point', 'coordinates': (-79.43031712, 43.63834508)}"
-19152,25205,GO-2016979468,THEFT UNDER,2016-06-03T00:00:00,2016,June,Friday,3,155,18,2016-06-06T00:00:00,2016,June,Monday,6,158,1,D14,Toronto,85,South Parkdale (85),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,ZH08,SC,1,MRN,2100.0,STOLEN,19130,"{'type': 'Point', 'coordinates': (-79.43031712, 43.63834508)}"
-19153,25299,GO-20179005807,THEFT UNDER,2017-05-02T00:00:00,2017,May,Tuesday,2,122,0,2017-05-06T00:00:00,2017,May,Saturday,6,126,0,D14,Toronto,85,South Parkdale (85),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RC,12,BLK,3500.0,STOLEN,19131,"{'type': 'Point', 'coordinates': (-79.42601113, 43.63922831)}"
-19154,20,GO-20162214796,THEFT UNDER - BICYCLE,2016-12-12T00:00:00,2016,December,Monday,12,347,16,2016-12-14T00:00:00,2016,December,Wednesday,14,349,15,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,CITY GLIDE,OT,1,BLU,600.0,STOLEN,19132,"{'type': 'Point', 'coordinates': (-79.44215237, 43.64297284)}"
-19155,70,GO-2017167669,THEFT OVER,2017-01-27T00:00:00,2017,January,Friday,27,27,4,2017-01-27T00:00:00,2017,January,Friday,27,27,20,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,TRANCE 2,MT,24,GRYRED,2500.0,STOLEN,19133,"{'type': 'Point', 'coordinates': (-79.44135463, 43.64091415)}"
-19156,126,GO-2017382429,THEFT OF EBIKE UNDER $5000,2017-03-01T00:00:00,2017,March,Wednesday,1,60,13,2017-03-02T00:00:00,2017,March,Thursday,2,61,9,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,OTHER,JINGGE,EL,1,GRYWHI,500.0,STOLEN,19134,"{'type': 'Point', 'coordinates': (-79.43532226, 43.64420447)}"
-19157,145,GO-2017408406,B&E,2017-03-02T00:00:00,2017,March,Thursday,2,61,0,2017-03-06T00:00:00,2017,March,Monday,6,65,12,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,GIANT,DEFY,RG,18,BLK,,STOLEN,19135,"{'type': 'Point', 'coordinates': (-79.45140453, 43.65253397)}"
-19158,162,GO-2017496629,THEFT UNDER - BICYCLE,2017-01-01T00:00:00,2017,January,Sunday,1,1,0,2017-03-20T00:00:00,2017,March,Monday,20,79,14,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,ARIEL DISC,MT,24,BLK,1200.0,STOLEN,19136,"{'type': 'Point', 'coordinates': (-79.44916936, 43.65263227)}"
-19159,171,GO-2017534721,THEFT UNDER,2017-03-25T00:00:00,2017,March,Saturday,25,84,21,2017-03-26T00:00:00,2017,March,Sunday,26,85,13,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TECH TEAM,STRATUS,MT,6,YEL,100.0,STOLEN,19137,"{'type': 'Point', 'coordinates': (-79.44215237, 43.64297284)}"
-19160,193,GO-2017588524,UNLAWFULLY IN DWELLING-HOUSE,2017-04-03T00:00:00,2017,April,Monday,3,93,19,2017-04-03T00:00:00,2017,April,Monday,3,93,19,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,COLNAGO,,RC,20,RED,4000.0,UNKNOWN,19138,"{'type': 'Point', 'coordinates': (-79.44487118, 43.64997504)}"
-19161,339,GO-20179005880,THEFT UNDER,2017-05-06T00:00:00,2017,May,Saturday,6,126,16,2017-05-08T00:00:00,2017,May,Monday,8,128,9,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,CA,SYNAPSE SM ULTE,RC,50,WHI,4000.0,STOLEN,19139,"{'type': 'Point', 'coordinates': (-79.44916936, 43.65263227)}"
-19162,389,GO-2017843689,B&E W'INTENT,2017-05-12T00:00:00,2017,May,Friday,12,132,22,2017-05-15T00:00:00,2017,May,Monday,15,135,7,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,GARY FISHER,HIFI PRO,MT,27,WHI,3460.0,STOLEN,19140,"{'type': 'Point', 'coordinates': (-79.45140453, 43.65253397)}"
-19163,417,GO-20179006572,THEFT UNDER - BICYCLE,2017-05-12T00:00:00,2017,May,Friday,12,132,23,2017-05-18T00:00:00,2017,May,Thursday,18,138,14,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,5,BLU,500.0,STOLEN,19141,"{'type': 'Point', 'coordinates': (-79.4401392, 43.64619027)}"
-19164,445,GO-20179006808,THEFT UNDER - BICYCLE,2017-05-20T00:00:00,2017,May,Saturday,20,140,9,2017-05-23T00:00:00,2017,May,Tuesday,23,143,9,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,OT,CROSSROAD,OT,15,,200.0,STOLEN,19142,"{'type': 'Point', 'coordinates': (-79.45061979, 43.65045101)}"
-19165,581,GO-20179007884,THEFT UNDER - BICYCLE,2017-06-07T00:00:00,2017,June,Wednesday,7,158,17,2017-06-11T00:00:00,2017,June,Sunday,11,162,13,D11,Toronto,86,Roncesvalles (86),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SIRRUS SPORT HY,RG,27,BLK,790.0,STOLEN,19143,"{'type': 'Point', 'coordinates': (-79.44935432, 43.64720514)}"
-19166,593,GO-20179007941,THEFT UNDER,2017-06-09T00:00:00,2017,June,Friday,9,160,18,2017-06-12T00:00:00,2017,June,Monday,12,163,9,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,PE,,RC,10,GRN,500.0,STOLEN,19144,"{'type': 'Point', 'coordinates': (-79.43101803, 43.64269938)}"
-19167,776,GO-20179009411,THEFT UNDER,2017-06-30T00:00:00,2017,June,Friday,30,181,10,2017-07-04T00:00:00,2017,July,Tuesday,4,185,16,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,RG,18,BLK,1360.0,STOLEN,19145,"{'type': 'Point', 'coordinates': (-79.44283602, 43.64471829)}"
-19168,817,GO-20179009799,THEFT FROM MOTOR VEHICLE UNDER,2017-07-08T00:00:00,2017,July,Saturday,8,189,22,2017-07-09T00:00:00,2017,July,Sunday,9,190,16,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,XTC 20,RG,7,YEL,350.0,STOLEN,19146,"{'type': 'Point', 'coordinates': (-79.44935432, 43.64720514)}"
-19169,909,GO-20171301082,B&E,2017-07-20T00:00:00,2017,July,Thursday,20,201,0,2017-07-20T00:00:00,2017,July,Thursday,20,201,9,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KHS,URBAN SOUL,TO,1,BLK,650.0,STOLEN,19147,"{'type': 'Point', 'coordinates': (-79.44902054, 43.64633797)}"
-19170,910,GO-20171301082,B&E,2017-07-20T00:00:00,2017,July,Thursday,20,201,0,2017-07-20T00:00:00,2017,July,Thursday,20,201,9,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,HYBRID,TO,7,BRN,1577.0,STOLEN,19148,"{'type': 'Point', 'coordinates': (-79.44902054, 43.64633797)}"
-19171,927,GO-20179010656,THEFT UNDER,2017-07-18T00:00:00,2017,July,Tuesday,18,199,20,2017-07-21T00:00:00,2017,July,Friday,21,202,10,D14,Toronto,86,Roncesvalles (86),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,TO,3,CRM,0.0,STOLEN,19149,"{'type': 'Point', 'coordinates': (-79.42860473, 43.64220797)}"
-19172,940,GO-20171322666,B&E,2017-07-23T00:00:00,2017,July,Sunday,23,204,14,2017-07-23T00:00:00,2017,July,Sunday,23,204,14,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,SCHWINN,HYBRID,TO,18,BLUBLK,500.0,STOLEN,19150,"{'type': 'Point', 'coordinates': (-79.43788356, 43.64033271)}"
-19173,1271,GO-20179013667,THEFT UNDER - BICYCLE,2017-08-29T00:00:00,2017,August,Tuesday,29,241,4,2017-08-30T00:00:00,2017,August,Wednesday,30,242,18,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,5,MRN,250.0,STOLEN,19151,"{'type': 'Point', 'coordinates': (-79.43913494, 43.64358286)}"
-19174,1297,GO-20171599747,THEFT UNDER,2017-09-03T00:00:00,2017,September,Sunday,3,246,23,2017-09-04T00:00:00,2017,September,Monday,4,247,7,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KHS,,RG,21,BLK,700.0,STOLEN,19152,"{'type': 'Point', 'coordinates': (-79.44250218, 43.64384496)}"
-19175,1359,GO-20179014422,THEFT UNDER - BICYCLE,2017-09-09T00:00:00,2017,September,Saturday,9,252,19,2017-09-10T00:00:00,2017,September,Sunday,10,253,20,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,520,TO,18,GRN,1400.0,STOLEN,19153,"{'type': 'Point', 'coordinates': (-79.435934, 43.64071989)}"
-19176,1391,GO-20179014654,THEFT UNDER - BICYCLE,2017-09-12T00:00:00,2017,September,Tuesday,12,255,22,2017-09-13T00:00:00,2017,September,Wednesday,13,256,15,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,METROPOLITAN,MT,15,DBL,500.0,STOLEN,19154,"{'type': 'Point', 'coordinates': (-79.44349367, 43.64646844)}"
-19177,1432,GO-20179014969,THEFT UNDER - BICYCLE,2017-09-14T00:00:00,2017,September,Thursday,14,257,21,2017-09-16T00:00:00,2017,September,Saturday,16,259,17,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,FJ,FUJI STROLL,RG,1,BLK,1065.0,STOLEN,19155,"{'type': 'Point', 'coordinates': (-79.43284269, 43.64281133)}"
-19178,1491,GO-20171702845,THEFT UNDER - BICYCLE,2017-09-18T00:00:00,2017,September,Monday,18,261,22,2017-09-23T00:00:00,2017,September,Saturday,23,266,15,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,MT,1,BLU,250.0,STOLEN,19156,"{'type': 'Point', 'coordinates': (-79.44833215, 43.64455285)}"
-19179,1492,GO-20171702845,THEFT UNDER - BICYCLE,2017-09-18T00:00:00,2017,September,Monday,18,261,22,2017-09-23T00:00:00,2017,September,Saturday,23,266,15,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,MT,1,PLE,250.0,STOLEN,19157,"{'type': 'Point', 'coordinates': (-79.44833215, 43.64455285)}"
-19180,1507,GO-20171713465,THEFT OVER,2017-09-20T00:00:00,2017,September,Wednesday,20,263,2,2017-09-21T00:00:00,2017,September,Thursday,21,264,11,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MARIN OR MARINO,CRUISER,RG,3,GRN,900.0,STOLEN,19158,"{'type': 'Point', 'coordinates': (-79.44215237, 43.64297284)}"
-19181,1508,GO-20171713465,THEFT OVER,2017-09-20T00:00:00,2017,September,Wednesday,20,263,2,2017-09-21T00:00:00,2017,September,Thursday,21,264,11,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,JAMIS,,MT,10,BLK,1100.0,STOLEN,19159,"{'type': 'Point', 'coordinates': (-79.44215237, 43.64297284)}"
-19182,1592,GO-20179016492,THEFT UNDER,2017-10-03T00:00:00,2017,October,Tuesday,3,276,12,2017-10-05T00:00:00,2017,October,Thursday,5,278,2,D11,Toronto,86,Roncesvalles (86),Unknown,Other,NO,,RG,3,BLU,150.0,STOLEN,19160,"{'type': 'Point', 'coordinates': (-79.44800231, 43.64370727)}"
-19183,1657,GO-20171866482,THEFT OVER,2017-10-14T00:00:00,2017,October,Saturday,14,287,16,2017-10-15T00:00:00,2017,October,Sunday,15,288,9,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KONA,,RC,21,ONG,3000.0,STOLEN,19161,"{'type': 'Point', 'coordinates': (-79.44438004, 43.64064719)}"
-19184,1658,GO-20171866482,THEFT OVER,2017-10-14T00:00:00,2017,October,Saturday,14,287,16,2017-10-15T00:00:00,2017,October,Sunday,15,288,9,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,,TO,21,GRY,700.0,STOLEN,19162,"{'type': 'Point', 'coordinates': (-79.44438004, 43.64064719)}"
-19185,1659,GO-20171866482,THEFT OVER,2017-10-14T00:00:00,2017,October,Saturday,14,287,16,2017-10-15T00:00:00,2017,October,Sunday,15,288,9,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MEC,,MT,21,ONG,400.0,STOLEN,19163,"{'type': 'Point', 'coordinates': (-79.44438004, 43.64064719)}"
-19186,1864,GO-20179020124,THEFT UNDER - BICYCLE,2017-11-17T00:00:00,2017,November,Friday,17,321,6,2017-11-20T00:00:00,2017,November,Monday,20,324,18,D11,Toronto,86,Roncesvalles (86),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,TRIPPER,RG,1,LGR,1076.0,STOLEN,19164,"{'type': 'Point', 'coordinates': (-79.45140453, 43.65253397)}"
-19187,1865,GO-20179020218,THEFT UNDER - BICYCLE,2017-11-19T00:00:00,2017,November,Sunday,19,323,17,2017-11-21T00:00:00,2017,November,Tuesday,21,325,17,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,IN,,RG,10,SIL,50.0,STOLEN,19165,"{'type': 'Point', 'coordinates': (-79.44413873, 43.63997097)}"
-19188,2013,GO-2018219718,THEFT UNDER - BICYCLE,2018-02-04T00:00:00,2018,February,Sunday,4,35,13,2018-02-04T00:00:00,2018,February,Sunday,4,35,14,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SCHWINN,MOUNTAIN,RG,6,,200.0,STOLEN,19166,"{'type': 'Point', 'coordinates': (-79.44250218, 43.64384496)}"
-19189,2144,GO-2018640266,THEFT UNDER - BICYCLE,2018-04-07T00:00:00,2018,April,Saturday,7,97,20,2018-04-10T00:00:00,2018,April,Tuesday,10,100,9,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,MIELE,UMBRIO,RG,12,GRY,700.0,STOLEN,19167,"{'type': 'Point', 'coordinates': (-79.45007649, 43.65305166)}"
-19190,2148,GO-20189011200,THEFT UNDER,2018-04-08T00:00:00,2018,April,Sunday,8,98,12,2018-04-10T00:00:00,2018,April,Tuesday,10,100,19,D11,Toronto,86,Roncesvalles (86),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,STORM,SC,1,SIL,220.0,STOLEN,19168,"{'type': 'Point', 'coordinates': (-79.44833215, 43.64455285)}"
-19191,2200,GO-20189012625,THEFT UNDER - BICYCLE,2018-04-23T00:00:00,2018,April,Monday,23,113,2,2018-04-24T00:00:00,2018,April,Tuesday,24,114,9,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,PE,,RG,12,YEL,100.0,STOLEN,19169,"{'type': 'Point', 'coordinates': (-79.43622501, 43.6429624)}"
-19192,2361,GO-20189015722,THEFT UNDER - BICYCLE,2018-05-18T00:00:00,2018,May,Friday,18,138,0,2018-05-22T00:00:00,2018,May,Tuesday,22,142,0,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,AURORA TOURING,TO,24,SIL,1200.0,STOLEN,19170,"{'type': 'Point', 'coordinates': (-79.44182746, 43.64210107)}"
-19193,2403,GO-2018958694,B&E,2018-05-28T00:00:00,2018,May,Monday,28,148,1,2018-05-28T00:00:00,2018,May,Monday,28,148,1,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,FELT,,MT,21,BLK,750.0,STOLEN,19171,"{'type': 'Point', 'coordinates': (-79.43662958000002, 43.64058331)}"
-19194,2453,GO-20189017337,THEFT UNDER - BICYCLE,2018-06-02T00:00:00,2018,June,Saturday,2,153,23,2018-06-04T00:00:00,2018,June,Monday,4,155,13,D11,Toronto,86,Roncesvalles (86),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ANNEX MEN'S HYB,RG,7,GRY,300.0,STOLEN,19172,"{'type': 'Point', 'coordinates': (-79.43532226, 43.64420447)}"
-19195,2459,GO-20181015422,B&E,2018-06-04T00:00:00,2018,June,Monday,4,155,18,2018-06-05T00:00:00,2018,June,Tuesday,5,156,7,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KONA\,,MT,21,GRY,1000.0,STOLEN,19173,"{'type': 'Point', 'coordinates': (-79.44250218, 43.64384496)}"
-19196,2545,GO-20189018459,THEFT UNDER - BICYCLE,2018-06-11T00:00:00,2018,June,Monday,11,162,18,2018-06-12T00:00:00,2018,June,Tuesday,12,163,21,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,OT,7,DBL,800.0,STOLEN,19174,"{'type': 'Point', 'coordinates': (-79.44438004, 43.64064719)}"
-19197,2558,GO-20189018459,THEFT UNDER - BICYCLE,2018-06-11T00:00:00,2018,June,Monday,11,162,18,2018-06-12T00:00:00,2018,June,Tuesday,12,163,21,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,OT,7,DBL,800.0,STOLEN,19175,"{'type': 'Point', 'coordinates': (-79.44438004, 43.64064719)}"
-19198,2560,GO-20181063110,THEFT UNDER - BICYCLE,2018-05-10T00:00:00,2018,May,Thursday,10,130,12,2018-06-12T00:00:00,2018,June,Tuesday,12,163,9,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,,MT,18,BLK,700.0,STOLEN,19176,"{'type': 'Point', 'coordinates': (-79.44283602, 43.64471829)}"
-19199,2571,GO-20189018727,THEFT UNDER,2018-06-11T00:00:00,2018,June,Monday,11,162,0,2018-06-14T00:00:00,2018,June,Thursday,14,165,19,D11,Toronto,86,Roncesvalles (86),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,DOOR PRIZE 3,RG,1,DBL,1300.0,STOLEN,19177,"{'type': 'Point', 'coordinates': (-79.44731397, 43.6419326)}"
-19200,2579,GO-20189018886,THEFT UNDER,2018-06-13T00:00:00,2018,June,Wednesday,13,164,23,2018-06-15T00:00:00,2018,June,Friday,15,166,21,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,NO,,MT,21,SIL,0.0,STOLEN,19178,"{'type': 'Point', 'coordinates': (-79.45103028, 43.65151643)}"
-19201,2613,GO-20181114860,THEFT UNDER,2018-06-17T00:00:00,2018,June,Sunday,17,168,20,2018-06-19T00:00:00,2018,June,Tuesday,19,170,17,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,HEART,RG,1,BLK,550.0,STOLEN,19179,"{'type': 'Point', 'coordinates': (-79.44283602, 43.64471829)}"
-19202,2624,GO-20189019386,THEFT UNDER,2018-06-19T00:00:00,2018,June,Tuesday,19,170,17,2018-06-19T00:00:00,2018,June,Tuesday,19,170,18,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,YORKVILLE,RG,18,DBL,1000.0,STOLEN,19180,"{'type': 'Point', 'coordinates': (-79.4419773, 43.64806091)}"
-19203,2651,GO-20189019685,THEFT UNDER,2018-06-17T00:00:00,2018,June,Sunday,17,168,5,2018-06-21T00:00:00,2018,June,Thursday,21,172,17,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,DRAFT,OT,1,BLK,1000.0,STOLEN,19181,"{'type': 'Point', 'coordinates': (-79.44800231, 43.64370727)}"
-19204,2652,GO-20189019685,THEFT UNDER,2018-06-17T00:00:00,2018,June,Sunday,17,168,5,2018-06-21T00:00:00,2018,June,Thursday,21,172,17,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,SARTHE,RC,20,BLK,2600.0,STOLEN,19182,"{'type': 'Point', 'coordinates': (-79.44800231, 43.64370727)}"
-19205,2719,GO-20189020720,THEFT UNDER - BICYCLE,2018-06-28T00:00:00,2018,June,Thursday,28,179,13,2018-06-29T00:00:00,2018,June,Friday,29,180,11,D11,Toronto,86,Roncesvalles (86),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,,RG,18,BLK,299.0,STOLEN,19183,"{'type': 'Point', 'coordinates': (-79.44946863, 43.6537446)}"
-19206,2720,GO-20189020731,THEFT UNDER,2018-06-28T00:00:00,2018,June,Thursday,28,179,22,2018-06-29T00:00:00,2018,June,Friday,29,180,12,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,LUCERNE COMFORT,RG,7,PNK,350.0,STOLEN,19184,"{'type': 'Point', 'coordinates': (-79.44697699, 43.64107658)}"
-19207,2724,GO-20181195044,B&E,2018-07-01T00:00:00,2018,July,Sunday,1,182,0,2018-07-01T00:00:00,2018,July,Sunday,1,182,12,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KONA,MOUNTAIN DEW,MT,12,GRN,1000.0,STOLEN,19185,"{'type': 'Point', 'coordinates': (-79.4394762, 43.64443895)}"
-19208,2789,GO-20189021751,THEFT UNDER,2018-07-09T00:00:00,2018,July,Monday,9,190,19,2018-07-10T00:00:00,2018,July,Tuesday,10,191,9,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,NO,20 VFR-6,OT,21,BLK,619.0,STOLEN,19186,"{'type': 'Point', 'coordinates': (-79.44487118, 43.64997504)}"
-19209,2847,GO-20189022471,THEFT UNDER,2018-07-06T00:00:00,2018,July,Friday,6,187,23,2018-07-15T00:00:00,2018,July,Sunday,15,196,9,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,,RG,7,WHI,500.0,STOLEN,19187,"{'type': 'Point', 'coordinates': (-79.43911385, 43.64697024)}"
-19210,2871,GO-20181313181,B&E,2018-07-14T00:00:00,2018,July,Saturday,14,195,5,2018-07-18T00:00:00,2018,July,Wednesday,18,199,20,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,MARIN OR MARINO,MUIRWOODS,MT,21,BLK,630.0,STOLEN,19188,"{'type': 'Point', 'coordinates': (-79.45140453, 43.65253397)}"
-19211,2905,GO-20189023264,THEFT UNDER,2018-07-20T00:00:00,2018,July,Friday,20,201,11,2018-07-20T00:00:00,2018,July,Friday,20,201,20,D11,Toronto,86,Roncesvalles (86),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,MOUNTAIN,MT,21,BLU,75.0,STOLEN,19189,"{'type': 'Point', 'coordinates': (-79.43745749, 43.64271555)}"
-19212,2983,GO-20189024095,THEFT UNDER - BICYCLE,2018-07-26T00:00:00,2018,July,Thursday,26,207,21,2018-07-26T00:00:00,2018,July,Thursday,26,207,22,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,8,BLU,500.0,STOLEN,19190,"{'type': 'Point', 'coordinates': (-79.43463614, 43.64244878)}"
-19213,2984,GO-20189024095,THEFT UNDER - BICYCLE,2018-07-26T00:00:00,2018,July,Thursday,26,207,21,2018-07-26T00:00:00,2018,July,Thursday,26,207,22,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,IN,,MT,8,WHI,250.0,STOLEN,19191,"{'type': 'Point', 'coordinates': (-79.43463614, 43.64244878)}"
-19214,3138,GO-20189025701,THEFT UNDER - BICYCLE,2018-08-08T00:00:00,2018,August,Wednesday,8,220,21,2018-08-09T00:00:00,2018,August,Thursday,9,221,13,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RC,10,,350.0,STOLEN,19192,"{'type': 'Point', 'coordinates': (-79.44413873, 43.63997097)}"
-19215,3402,GO-20181357428,B&E,2018-07-25T00:00:00,2018,July,Wednesday,25,206,1,2018-07-25T00:00:00,2018,July,Wednesday,25,206,11,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,GARNEAU,RG,10,SIL,500.0,STOLEN,19193,"{'type': 'Point', 'coordinates': (-79.43997463, 43.64248673)}"
-19216,3597,GO-20189032648,THEFT UNDER,2018-10-01T00:00:00,2018,October,Monday,1,274,21,2018-10-02T00:00:00,2018,October,Tuesday,2,275,11,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,HYBRID,TO,24,BLK,2000.0,STOLEN,19194,"{'type': 'Point', 'coordinates': (-79.44946863, 43.6537446)}"
-19217,3620,GO-20189033015,THEFT UNDER,2018-09-24T00:00:00,2018,September,Monday,24,267,15,2018-10-05T00:00:00,2018,October,Friday,5,278,12,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,24,GRN,50.0,STOLEN,19195,"{'type': 'Point', 'coordinates': (-79.45117206, 43.65188117)}"
-19218,3665,GO-20181878133,B&E,2018-10-11T00:00:00,2018,October,Thursday,11,284,3,2018-10-11T00:00:00,2018,October,Thursday,11,284,10,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RALEIGH,,MT,10,SILGRN,500.0,STOLEN,19196,"{'type': 'Point', 'coordinates': (-79.44274812, 43.64099383)}"
-19219,3889,GO-20182155639,B&E,2018-11-22T00:00:00,2018,November,Thursday,22,326,23,2018-11-23T00:00:00,2018,November,Friday,23,327,9,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,,MT,1,,75.0,STOLEN,19197,"{'type': 'Point', 'coordinates': (-79.44274812, 43.64099383)}"
-19220,3890,GO-20182155639,B&E,2018-11-22T00:00:00,2018,November,Thursday,22,326,23,2018-11-23T00:00:00,2018,November,Friday,23,327,9,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DIAMONDBACK,,MT,1,,75.0,STOLEN,19198,"{'type': 'Point', 'coordinates': (-79.44274812, 43.64099383)}"
-19221,3942,GO-20189042159,THEFT UNDER,2018-12-14T00:00:00,2018,December,Friday,14,348,14,2018-12-15T00:00:00,2018,December,Saturday,15,349,13,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,CROSS ROADS S,MT,18,SIL,625.0,STOLEN,19199,"{'type': 'Point', 'coordinates': (-79.44800231, 43.64370727)}"
-19222,133,GO-2017396327,B&E,2017-03-03T00:00:00,2017,March,Friday,3,62,0,2017-03-04T00:00:00,2017,March,Saturday,4,63,11,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,TARMAS COMP,RC,20,,1000.0,STOLEN,19200,"{'type': 'Point', 'coordinates': (-79.45419292, 43.66073739)}"
-19223,25023,GO-20159003593,PROPERTY - RECOVERED,2015-06-12T00:00:00,2015,June,Friday,12,163,11,2015-06-13T00:00:00,2015,June,Saturday,13,164,19,D11,Toronto,88,High Park North (88),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,CASINO,BM,1,BLU,400.0,RECOVERED,19201,"{'type': 'Point', 'coordinates': (-79.45511783, 43.65776281)}"
-19224,3946,GO-20182304851,B&E,2018-12-16T00:00:00,2018,December,Sunday,16,350,4,2018-12-16T00:00:00,2018,December,Sunday,16,350,14,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,1,BLK,650.0,STOLEN,19202,"{'type': 'Point', 'coordinates': (-79.44487118, 43.64997504)}"
-19225,269,GO-2017708462,THEFT UNDER - BICYCLE,2017-04-21T00:00:00,2017,April,Friday,21,111,18,2017-04-22T00:00:00,2017,April,Saturday,22,112,18,D11,Toronto,88,High Park North (88),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,5000,RC,21,GRYSIL,1000.0,STOLEN,19203,"{'type': 'Point', 'coordinates': (-79.45685392, 43.65539614)}"
-19226,3161,GO-20181446368,THEFT OF MOTOR VEHICLE,2018-08-06T00:00:00,2018,August,Monday,6,218,19,2018-08-07T00:00:00,2018,August,Tuesday,7,219,8,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,TR,1,RED,117.0,STOLEN,19204,"{'type': 'Point', 'coordinates': (-79.48015528, 43.64942831)}"
-19227,7808,GO-20141822406,THEFT UNDER,2014-04-03T00:00:00,2014,April,Thursday,3,93,10,2014-04-03T00:00:00,2014,April,Thursday,3,93,18,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KONA,FIRE,MT,21,RED,1300.0,STOLEN,19205,"{'type': 'Point', 'coordinates': (-79.47279604, 43.65775308)}"
-19228,329,GO-20179005761,THEFT UNDER,2017-05-04T00:00:00,2017,May,Thursday,4,124,1,2017-05-05T00:00:00,2017,May,Friday,5,125,11,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,,MT,21,GRY,0.0,STOLEN,19206,"{'type': 'Point', 'coordinates': (-79.455454, 43.65854213)}"
-19229,8041,GO-20142209479,THEFT UNDER,2014-06-02T00:00:00,2014,June,Monday,2,153,22,2014-06-03T00:00:00,2014,June,Tuesday,3,154,6,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MIELE,BIELLA,RG,7,,400.0,STOLEN,19207,"{'type': 'Point', 'coordinates': (-79.4773643, 43.6598984)}"
-19230,330,GO-20179005761,THEFT UNDER,2017-05-04T00:00:00,2017,May,Thursday,4,124,1,2017-05-05T00:00:00,2017,May,Friday,5,125,11,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,OC2,RG,18,BLU,0.0,STOLEN,19208,"{'type': 'Point', 'coordinates': (-79.455454, 43.65854213)}"
-19231,8267,GO-20142315539,POSSESSION PROPERTY OBC UNDER,2014-06-14T00:00:00,2014,June,Saturday,14,165,11,2014-06-14T00:00:00,2014,June,Saturday,14,165,11,D11,Toronto,88,High Park North (88),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,MT,18,,600.0,RECOVERED,19209,"{'type': 'Point', 'coordinates': (-79.45241445000002, 43.65632155)}"
-19232,362,GO-2017814836,THEFT UNDER - BICYCLE,2017-05-09T00:00:00,2017,May,Tuesday,9,129,0,2017-05-09T00:00:00,2017,May,Tuesday,9,129,23,D11,Toronto,88,High Park North (88),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,ESCAPE 0,RG,24,DBL,800.0,STOLEN,19210,"{'type': 'Point', 'coordinates': (-79.45736924, 43.660099)}"
-19233,8412,GO-20149004952,THEFT UNDER,2014-07-13T00:00:00,2014,July,Sunday,13,194,12,2014-07-14T00:00:00,2014,July,Monday,14,195,9,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,SU,,MT,21,BLK,150.0,STOLEN,19211,"{'type': 'Point', 'coordinates': (-79.46525867, 43.65353843)}"
-19234,452,GO-20179006837,THEFT UNDER - BICYCLE,2017-05-23T00:00:00,2017,May,Tuesday,23,143,10,2017-05-23T00:00:00,2017,May,Tuesday,23,143,16,D11,Toronto,88,High Park North (88),Ttc Subway Station,Transit,OT,SIRRUS ELITE,OT,27,GRY,1000.0,STOLEN,19212,"{'type': 'Point', 'coordinates': (-79.46000875, 43.65470772)}"
-19235,15151,GO-20169012306,THEFT UNDER - BICYCLE,2016-10-18T00:00:00,2016,October,Tuesday,18,292,16,2016-10-19T00:00:00,2016,October,Wednesday,19,293,18,D11,Toronto,87,High Park-Swansea (87),"Open Areas (Lakes, Parks, Rivers)",Outside,MA,,MT,27,BLK,650.0,STOLEN,19213,"{'type': 'Point', 'coordinates': (-79.45846965, 43.65113764)}"
-19236,8417,GO-20149004965,THEFT UNDER,2014-07-14T00:00:00,2014,July,Monday,14,195,1,2014-07-14T00:00:00,2014,July,Monday,14,195,2,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,OPTIMUM 2,TO,21,WHI,,STOLEN,19214,"{'type': 'Point', 'coordinates': (-79.45702274, 43.65834426)}"
-19237,454,GO-20179006852,THEFT UNDER - BICYCLE,2017-05-23T00:00:00,2017,May,Tuesday,23,143,12,2017-05-23T00:00:00,2017,May,Tuesday,23,143,18,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,FJ,ABSOLUTE 2.1,RG,21,GRN,800.0,STOLEN,19215,"{'type': 'Point', 'coordinates': (-79.4636661, 43.65389971)}"
-19238,25035,GO-20159011127,THEFT UNDER,2015-12-14T00:00:00,2015,December,Monday,14,348,0,2015-12-19T00:00:00,2015,December,Saturday,19,353,12,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,RA,,RC,12,RED,0.0,STOLEN,19216,"{'type': 'Point', 'coordinates': (-79.46818422, 43.65633298)}"
-19239,15156,GO-20162082557,B&E,2016-11-23T00:00:00,2016,November,Wednesday,23,328,12,2016-11-23T00:00:00,2016,November,Wednesday,23,328,18,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,,RC,10,YEL,2500.0,STOLEN,19217,"{'type': 'Point', 'coordinates': (-79.45336084, 43.64091906)}"
-19240,8499,GO-20142572533,B&E,2014-07-25T00:00:00,2014,July,Friday,25,206,20,2014-07-26T00:00:00,2014,July,Saturday,26,207,2,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,GIANT,,MT,21,BLK,,STOLEN,19218,"{'type': 'Point', 'coordinates': (-79.46818422, 43.65633298)}"
-19241,458,GO-20179006866,THEFT UNDER - BICYCLE,2017-05-20T00:00:00,2017,May,Saturday,20,140,22,2017-05-23T00:00:00,2017,May,Tuesday,23,143,21,D11,Toronto,88,High Park North (88),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,CHINOOK,RG,8,BRZ,625.0,STOLEN,19219,"{'type': 'Point', 'coordinates': (-79.46520964, 43.65754485)}"
-19242,25038,GO-20169001423,THEFT UNDER,2016-02-14T00:00:00,2016,February,Sunday,14,45,19,2016-02-15T00:00:00,2016,February,Monday,15,46,0,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,OT,HUDSON SPORT,RG,7,BLK,400.0,STOLEN,19220,"{'type': 'Point', 'coordinates': (-79.46520964, 43.65754485)}"
-19243,15163,GO-2017634757,THEFT UNDER,2017-03-31T00:00:00,2017,March,Friday,31,90,0,2017-04-10T00:00:00,2017,April,Monday,10,100,20,D11,Toronto,87,High Park-Swansea (87),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MARIN OR MARINO,,MT,16,GRY,1099.0,STOLEN,19221,"{'type': 'Point', 'coordinates': (-79.46894095, 43.63732513000001)}"
-19244,15164,GO-2017634757,THEFT UNDER,2017-03-31T00:00:00,2017,March,Friday,31,90,0,2017-04-10T00:00:00,2017,April,Monday,10,100,20,D11,Toronto,87,High Park-Swansea (87),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,MT,0,,1000.0,STOLEN,19222,"{'type': 'Point', 'coordinates': (-79.46894095, 43.63732513000001)}"
-19245,15196,GO-20179017462,THEFT UNDER - BICYCLE,2017-10-17T00:00:00,2017,October,Tuesday,17,290,16,2017-10-18T00:00:00,2017,October,Wednesday,18,291,12,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,RM,,MT,18,BLK,800.0,STOLEN,19223,"{'type': 'Point', 'coordinates': (-79.47540421, 43.63962303)}"
-19246,15203,GO-20179021445,POSSESSION PROPERTY OBC UNDER,2017-12-13T00:00:00,2017,December,Wednesday,13,347,0,2017-12-13T00:00:00,2017,December,Wednesday,13,347,13,D11,Toronto,87,High Park-Swansea (87),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,RC,11,GLD,800.0,STOLEN,19224,"{'type': 'Point', 'coordinates': (-79.45076857, 43.64167423)}"
-19247,15204,GO-20179021445,POSSESSION PROPERTY OBC UNDER,2017-12-13T00:00:00,2017,December,Wednesday,13,347,0,2017-12-13T00:00:00,2017,December,Wednesday,13,347,13,D11,Toronto,87,High Park-Swansea (87),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RA,,RG,10,BRZ,150.0,STOLEN,19225,"{'type': 'Point', 'coordinates': (-79.45076857, 43.64167423)}"
-19248,15214,GO-20189011382,THEFT UNDER - BICYCLE,2018-04-11T00:00:00,2018,April,Wednesday,11,101,9,2018-04-12T00:00:00,2018,April,Thursday,12,102,13,D11,Toronto,87,High Park-Swansea (87),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,MIELE SVELTO RR,OT,22,RED,1450.0,STOLEN,19226,"{'type': 'Point', 'coordinates': (-79.47100511, 43.63695828)}"
-19249,15222,GO-20181111926,B&E,2018-06-19T00:00:00,2018,June,Tuesday,19,170,3,2018-06-19T00:00:00,2018,June,Tuesday,19,170,5,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,ARGON 18,RADON,RC,0,BLKWHI,1200.0,STOLEN,19227,"{'type': 'Point', 'coordinates': (-79.46894095, 43.63732513000001)}"
-19250,15223,GO-20189021073,THEFT UNDER - BICYCLE,2018-07-02T00:00:00,2018,July,Monday,2,183,23,2018-07-03T00:00:00,2018,July,Tuesday,3,184,20,D11,Toronto,87,High Park-Swansea (87),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MONT ROYAL,RC,9,RED,240.0,STOLEN,19228,"{'type': 'Point', 'coordinates': (-79.45127101, 43.63933996)}"
-19251,15224,GO-20189021165,THEFT UNDER - BICYCLE,2018-07-04T00:00:00,2018,July,Wednesday,4,185,6,2018-07-04T00:00:00,2018,July,Wednesday,4,185,16,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,HARPER,RG,1,BLK,289.0,STOLEN,19229,"{'type': 'Point', 'coordinates': (-79.48132617, 43.64589002)}"
-19252,15225,GO-20181250603,THEFT UNDER - BICYCLE,2018-07-09T00:00:00,2018,July,Monday,9,190,14,2018-07-09T00:00:00,2018,July,Monday,9,190,17,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,UNKNOWN,MT,0,SIL,,STOLEN,19230,"{'type': 'Point', 'coordinates': (-79.45439792, 43.64806009000001)}"
-19253,15226,GO-20189022101,THEFT UNDER,2018-07-10T00:00:00,2018,July,Tuesday,10,191,22,2018-07-11T00:00:00,2018,July,Wednesday,11,192,22,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,OT,URBANIA 3,OT,24,GRY,750.0,STOLEN,19231,"{'type': 'Point', 'coordinates': (-79.48659988, 43.64793625)}"
-19254,15238,GO-20189028237,THEFT UNDER - BICYCLE,2018-08-27T00:00:00,2018,August,Monday,27,239,11,2018-08-28T00:00:00,2018,August,Tuesday,28,240,11,D11,Toronto,87,High Park-Swansea (87),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,TIMBERLINE,MT,21,BLU,700.0,STOLEN,19232,"{'type': 'Point', 'coordinates': (-79.47540421, 43.63962303)}"
-19255,15245,GO-20181981655,B&E,2018-10-27T00:00:00,2018,October,Saturday,27,300,6,2018-10-27T00:00:00,2018,October,Saturday,27,300,7,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,SPECIALIZED,MT,21,BLK,1000.0,STOLEN,19233,"{'type': 'Point', 'coordinates': (-79.45766446, 43.65271824)}"
-19256,15246,GO-20181981655,B&E,2018-10-27T00:00:00,2018,October,Saturday,27,300,6,2018-10-27T00:00:00,2018,October,Saturday,27,300,7,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,COSTCO,RG,21,WHI,300.0,STOLEN,19234,"{'type': 'Point', 'coordinates': (-79.45766446, 43.65271824)}"
-19257,15262,GO-2019858748,THEFT UNDER,2019-05-08T00:00:00,2019,May,Wednesday,8,128,20,2019-05-11T00:00:00,2019,May,Saturday,11,131,18,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,TREK,8.2 VS,TO,21,GRYGRN,1000.0,STOLEN,19235,"{'type': 'Point', 'coordinates': (-79.47540421, 43.63962303)}"
-19258,15268,GO-20191104089,THEFT FROM MOTOR VEHICLE OVER,2019-06-15T00:00:00,2019,June,Saturday,15,166,6,2019-06-15T00:00:00,2019,June,Saturday,15,166,7,D11,Toronto,87,High Park-Swansea (87),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CERVELO,S5,RC,22,BLKWHI,12000.0,STOLEN,19236,"{'type': 'Point', 'coordinates': (-79.45266904, 43.64929332)}"
-19259,3268,GO-20189027180,THEFT UNDER - BICYCLE,2018-08-19T00:00:00,2018,August,Sunday,19,231,5,2018-08-20T00:00:00,2018,August,Monday,20,232,17,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,VERSAPATH,TO,21,DBL,800.0,STOLEN,19237,"{'type': 'Point', 'coordinates': (-79.45277241, 43.6533321)}"
-19260,4009,GO-2019103354,B&E,2019-01-17T00:00:00,2019,January,Thursday,17,17,2,2019-01-17T00:00:00,2019,January,Thursday,17,17,12,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,EARL,RG,10,PNK,850.0,STOLEN,19238,"{'type': 'Point', 'coordinates': (-79.4390756, 43.64010324)}"
-19261,15284,GO-20191845764,B&E,2019-09-24T00:00:00,2019,September,Tuesday,24,267,22,2019-09-25T00:00:00,2019,September,Wednesday,25,268,9,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,AGGRESSOR,MT,18,BLKONG,500.0,STOLEN,19239,"{'type': 'Point', 'coordinates': (-79.45112058, 43.64257821)}"
-19262,15285,GO-20191845764,B&E,2019-09-24T00:00:00,2019,September,Tuesday,24,267,22,2019-09-25T00:00:00,2019,September,Wednesday,25,268,9,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FUJI,,MT,18,BLK,750.0,STOLEN,19240,"{'type': 'Point', 'coordinates': (-79.45112058, 43.64257821)}"
-19263,15304,GO-20209015372,THEFT UNDER,2020-06-14T00:00:00,2020,June,Sunday,14,166,21,2020-06-14T00:00:00,2020,June,Sunday,14,166,23,D11,Toronto,87,High Park-Swansea (87),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,3,,1200.0,STOLEN,19241,"{'type': 'Point', 'coordinates': (-79.4636661, 43.65389971)}"
-19264,18512,GO-20142386655,B&E,2014-06-24T00:00:00,2014,June,Tuesday,24,175,8,2014-06-28T00:00:00,2014,June,Saturday,28,179,14,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,IRON HORSE,,MT,18,DGR,700.0,STOLEN,19242,"{'type': 'Point', 'coordinates': (-79.44766531, 43.64283038)}"
-19265,18513,GO-20142386655,B&E,2014-06-24T00:00:00,2014,June,Tuesday,24,175,8,2014-06-28T00:00:00,2014,June,Saturday,28,179,14,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,IRON HORSE,,MT,18,DGR,700.0,STOLEN,19243,"{'type': 'Point', 'coordinates': (-79.44766531, 43.64283038)}"
-19266,18527,GO-2015612480,THEFT UNDER - SHOPLIFTING,2015-04-13T00:00:00,2015,April,Monday,13,103,19,2015-04-13T00:00:00,2015,April,Monday,13,103,19,D11,Toronto,87,High Park-Swansea (87),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,MINELLI,SOLIST,OT,1,RED,350.0,STOLEN,19244,"{'type': 'Point', 'coordinates': (-79.48444470000001, 43.64933139)}"
-19267,18529,GO-2015717371,THEFT UNDER,2015-04-23T00:00:00,2015,April,Thursday,23,113,9,2015-04-30T00:00:00,2015,April,Thursday,30,120,19,D11,Toronto,87,High Park-Swansea (87),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TRIUMPH,,OT,1,YEL,,STOLEN,19245,"{'type': 'Point', 'coordinates': (-79.45225119, 43.63964924)}"
-19268,18533,GO-20159003060,THEFT UNDER,2015-05-23T00:00:00,2015,May,Saturday,23,143,20,2015-05-24T00:00:00,2015,May,Sunday,24,144,17,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,TR,3500,MT,21,GRY,,STOLEN,19246,"{'type': 'Point', 'coordinates': (-79.47100511, 43.63695828)}"
-19269,18543,GO-20151243653,THEFT UNDER,2015-07-21T00:00:00,2015,July,Tuesday,21,202,13,2015-07-21T00:00:00,2015,July,Tuesday,21,202,16,D11,Toronto,87,High Park-Swansea (87),"Open Areas (Lakes, Parks, Rivers)",Outside,OTHER,MOUNTAIN,MT,10,BLU,,STOLEN,19247,"{'type': 'Point', 'coordinates': (-79.47068281, 43.65000771)}"
-19270,18551,GO-20151512286,THEFT UNDER,2015-09-02T00:00:00,2015,September,Wednesday,2,245,3,2015-09-03T00:00:00,2015,September,Thursday,3,246,6,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,GI,SEEK 1,OT,8,BLU,880.0,STOLEN,19248,"{'type': 'Point', 'coordinates': (-79.45212969, 43.64047464)}"
-19271,18554,GO-20159007946,THEFT UNDER,2015-09-29T00:00:00,2015,September,Tuesday,29,272,18,2015-09-30T00:00:00,2015,September,Wednesday,30,273,8,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,OT,ASPECT 740,MT,38,GRY,900.0,STOLEN,19249,"{'type': 'Point', 'coordinates': (-79.47100511, 43.63695828)}"
-19272,18564,GO-2016803356,THEFT UNDER - BICYCLE,2016-05-10T00:00:00,2016,May,Tuesday,10,131,14,2016-05-10T00:00:00,2016,May,Tuesday,10,131,15,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,MOUNTAIN,MT,21,SILRED,500.0,STOLEN,19250,"{'type': 'Point', 'coordinates': (-79.45262601, 43.64917849)}"
-19273,18566,GO-2016975535,B&E,2016-05-28T00:00:00,2016,May,Saturday,28,149,0,2016-06-05T00:00:00,2016,June,Sunday,5,157,12,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,LOUIS GARNEAU,,OT,18,RED,2000.0,STOLEN,19251,"{'type': 'Point', 'coordinates': (-79.45427145, 43.64717827)}"
-19274,18567,GO-20161054329,B&E,2016-06-13T00:00:00,2016,June,Monday,13,165,15,2016-06-17T00:00:00,2016,June,Friday,17,169,8,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,MT,10,WHI,350.0,STOLEN,19252,"{'type': 'Point', 'coordinates': (-79.455389, 43.65164915)}"
-19275,18568,GO-20161054329,B&E,2016-06-13T00:00:00,2016,June,Monday,13,165,15,2016-06-17T00:00:00,2016,June,Friday,17,169,8,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DECATHALON,,MT,24,GRY,600.0,STOLEN,19253,"{'type': 'Point', 'coordinates': (-79.455389, 43.65164915)}"
-19276,18579,GO-20179001023,THEFT UNDER - BICYCLE,2017-01-23T00:00:00,2017,January,Monday,23,23,9,2017-01-23T00:00:00,2017,January,Monday,23,23,9,D11,Toronto,87,High Park-Swansea (87),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,15 ALIGHT 1L CH,RG,24,GRY,700.0,STOLEN,19254,"{'type': 'Point', 'coordinates': (-79.44800231, 43.64370727)}"
-19277,18592,GO-2017705188,B&E,2017-04-18T00:00:00,2017,April,Tuesday,18,108,12,2017-04-22T00:00:00,2017,April,Saturday,22,112,8,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,PLANET X,SMALL,RC,21,BLK,5000.0,STOLEN,19255,"{'type': 'Point', 'coordinates': (-79.48659988, 43.64793625)}"
-19278,18605,GO-20171274654,THEFT UNDER,2017-07-15T00:00:00,2017,July,Saturday,15,196,9,2017-07-16T00:00:00,2017,July,Sunday,16,197,10,D11,Toronto,87,High Park-Swansea (87),"Private Property Structure (Pool, Shed, Detached Garage)",Other,JAMIS,AURORA ELITE,TO,10,CRM,1521.0,STOLEN,19256,"{'type': 'Point', 'coordinates': (-79.48879886, 43.64776286)}"
-19279,18623,GO-20179017462,THEFT UNDER - BICYCLE,2017-10-17T00:00:00,2017,October,Tuesday,17,290,16,2017-10-18T00:00:00,2017,October,Wednesday,18,291,12,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,RM,,MT,18,,800.0,STOLEN,19257,"{'type': 'Point', 'coordinates': (-79.47540421, 43.63962303)}"
-19280,18630,GO-20189007971,THEFT UNDER - BICYCLE,2018-03-02T00:00:00,2018,March,Friday,2,61,1,2018-03-14T00:00:00,2018,March,Wednesday,14,73,17,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,RG,10,BLK,1000.0,STOLEN,19258,"{'type': 'Point', 'coordinates': (-79.4512409, 43.64066087)}"
-19281,18631,GO-20189007971,THEFT UNDER - BICYCLE,2018-03-02T00:00:00,2018,March,Friday,2,61,1,2018-03-14T00:00:00,2018,March,Wednesday,14,73,17,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,RG,9,BLU,1500.0,STOLEN,19259,"{'type': 'Point', 'coordinates': (-79.4512409, 43.64066087)}"
-19282,18635,GO-20189015055,THEFT UNDER - BICYCLE,2018-05-15T00:00:00,2018,May,Tuesday,15,135,15,2018-05-15T00:00:00,2018,May,Tuesday,15,135,16,D11,Toronto,87,High Park-Swansea (87),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,UK,,OT,18,BLK,1000.0,STOLEN,19260,"{'type': 'Point', 'coordinates': (-79.45127101, 43.63933996)}"
-19283,18661,GO-20182308932,B&E W'INTENT,2018-12-16T00:00:00,2018,December,Sunday,16,350,22,2018-12-17T00:00:00,2018,December,Monday,17,351,8,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DCO,DOWNTOWN,TO,21,BLK,1000.0,STOLEN,19261,"{'type': 'Point', 'coordinates': (-79.45202628, 43.64476108)}"
-19284,18670,GO-20199014028,THEFT UNDER,2019-02-06T00:00:00,2019,February,Wednesday,6,37,3,2019-05-06T00:00:00,2019,May,Monday,6,126,4,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,OT,COACH,RG,24,WHI,450.0,STOLEN,19262,"{'type': 'Point', 'coordinates': (-79.47100511, 43.63695828)}"
-19285,18677,GO-20199024016,THEFT UNDER,2019-07-27T00:00:00,2019,July,Saturday,27,208,10,2019-07-27T00:00:00,2019,July,Saturday,27,208,14,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,OT,TRAFIK 1.0 SE,RG,21,BLK,700.0,STOLEN,19263,"{'type': 'Point', 'coordinates': (-79.46894095, 43.63732513000001)}"
-19286,18678,GO-20199024364,THEFT UNDER,2019-07-28T00:00:00,2019,July,Sunday,28,209,23,2019-07-30T00:00:00,2019,July,Tuesday,30,211,11,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,HEX CLARIS 8,RG,8,BLU,900.0,STOLEN,19264,"{'type': 'Point', 'coordinates': (-79.45393288, 43.6463599)}"
-19287,18692,GO-20199031761,THEFT UNDER,2019-09-26T00:00:00,2019,September,Thursday,26,269,13,2019-09-27T00:00:00,2019,September,Friday,27,270,13,D11,Toronto,87,High Park-Swansea (87),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,SUB 40,MT,21,WHI,500.0,STOLEN,19265,"{'type': 'Point', 'coordinates': (-79.47175121, 43.65212911)}"
-19288,21600,GO-20143039567,THEFT UNDER,2014-10-04T00:00:00,2014,October,Saturday,4,277,8,2014-10-04T00:00:00,2014,October,Saturday,4,277,8,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,PROFLEX,MT,6,REDGRY,300.0,STOLEN,19266,"{'type': 'Point', 'coordinates': (-79.45325913, 43.64453434)}"
-19289,21607,GO-20159002252,THEFT UNDER,2015-04-25T00:00:00,2015,April,Saturday,25,115,15,2015-04-25T00:00:00,2015,April,Saturday,25,115,21,D11,Toronto,87,High Park-Swansea (87),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,FIXED RISER,RC,1,ONG,900.0,STOLEN,19267,"{'type': 'Point', 'coordinates': (-79.45340348, 43.65503076)}"
-19290,21619,GO-20159004639,THEFT UNDER,2015-07-16T00:00:00,2015,July,Thursday,16,197,3,2015-07-16T00:00:00,2015,July,Thursday,16,197,23,D11,Toronto,87,High Park-Swansea (87),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,CC,,MT,24,RED,0.0,STOLEN,19268,"{'type': 'Point', 'coordinates': (-79.45127101, 43.63933996)}"
-19291,21620,GO-20159004783,THEFT UNDER,2015-07-20T00:00:00,2015,July,Monday,20,201,1,2015-07-20T00:00:00,2015,July,Monday,20,201,21,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,MT,21,,500.0,STOLEN,19269,"{'type': 'Point', 'coordinates': (-79.45375997, 43.64151652)}"
-19292,21623,GO-20159007946,THEFT UNDER,2015-09-29T00:00:00,2015,September,Tuesday,29,272,18,2015-09-30T00:00:00,2015,September,Wednesday,30,273,8,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,OT,ACCENT (I THINK,MT,38,WHI,900.0,STOLEN,19270,"{'type': 'Point', 'coordinates': (-79.47100511, 43.63695828)}"
-19293,21634,GO-2016295969,THEFT UNDER,2016-02-04T00:00:00,2016,February,Thursday,4,35,19,2016-02-19T00:00:00,2016,February,Friday,19,50,8,D11,Toronto,87,High Park-Swansea (87),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,RG,10,,,STOLEN,19271,"{'type': 'Point', 'coordinates': (-79.48659988, 43.64793625)}"
-19294,21635,GO-2016295969,THEFT UNDER,2016-02-04T00:00:00,2016,February,Thursday,4,35,19,2016-02-19T00:00:00,2016,February,Friday,19,50,8,D11,Toronto,87,High Park-Swansea (87),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SCHWINN,,MT,21,,500.0,RECOVERED,19272,"{'type': 'Point', 'coordinates': (-79.48659988, 43.64793625)}"
-19295,21637,GO-20169002579,THEFT UNDER,2015-09-01T00:00:00,2015,September,Tuesday,1,244,14,2016-03-22T00:00:00,2016,March,Tuesday,22,82,14,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,OT,SPORT,RC,25,TRQ,1130.0,STOLEN,19273,"{'type': 'Point', 'coordinates': (-79.48659988, 43.64793625)}"
-19296,21653,GO-20161594168,THEFT UNDER - BICYCLE,2016-09-03T00:00:00,2016,September,Saturday,3,247,21,2016-09-08T00:00:00,2016,September,Thursday,8,252,10,D11,Toronto,87,High Park-Swansea (87),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,,OT,0,SIL,300.0,STOLEN,19274,"{'type': 'Point', 'coordinates': (-79.45140453, 43.65253397)}"
-19297,21654,GO-20161594168,THEFT UNDER - BICYCLE,2016-09-03T00:00:00,2016,September,Saturday,3,247,21,2016-09-08T00:00:00,2016,September,Thursday,8,252,10,D11,Toronto,87,High Park-Swansea (87),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,RG,0,GRN,700.0,STOLEN,19275,"{'type': 'Point', 'coordinates': (-79.45140453, 43.65253397)}"
-19298,21656,GO-20169011797,THEFT UNDER - BICYCLE,2016-10-09T00:00:00,2016,October,Sunday,9,283,16,2016-10-10T00:00:00,2016,October,Monday,10,284,9,D11,Toronto,87,High Park-Swansea (87),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,POWERKID 12,OT,1,GRN,225.0,STOLEN,19276,"{'type': 'Point', 'coordinates': (-79.45934878, 43.63953523)}"
-19299,21661,GO-2017598374,THEFT UNDER,2017-04-04T00:00:00,2017,April,Tuesday,4,94,22,2017-04-05T00:00:00,2017,April,Wednesday,5,95,9,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,FELT,Z5,MT,11,,2000.0,STOLEN,19277,"{'type': 'Point', 'coordinates': (-79.46894095, 43.63732513000001)}"
-19300,21662,GO-20179004303,THEFT UNDER,2017-04-05T00:00:00,2017,April,Wednesday,5,95,19,2017-04-05T00:00:00,2017,April,Wednesday,5,95,19,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,CA,EVO 6,RC,18,OTH,4000.0,STOLEN,19278,"{'type': 'Point', 'coordinates': (-79.46894095, 43.63732513000001)}"
-19301,21666,GO-2017779655,THEFT UNDER - BICYCLE,2017-05-02T00:00:00,2017,May,Tuesday,2,122,7,2017-05-03T00:00:00,2017,May,Wednesday,3,123,16,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,DIAMONDBACK,ONE,RG,21,BLK,500.0,STOLEN,19279,"{'type': 'Point', 'coordinates': (-79.47450449, 43.64154871)}"
-19302,21683,GO-20179014313,THEFT UNDER,2017-09-09T00:00:00,2017,September,Saturday,9,252,3,2017-09-09T00:00:00,2017,September,Saturday,9,252,8,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,RAPID 2 (2012),RC,27,WHI,850.0,STOLEN,19280,"{'type': 'Point', 'coordinates': (-79.44947137, 43.64148427)}"
-19303,21691,GO-20179020751,THEFT UNDER,2017-10-01T00:00:00,2017,October,Sunday,1,274,11,2017-11-28T00:00:00,2017,November,Tuesday,28,332,11,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,SU,,RG,1,RED,0.0,STOLEN,19281,"{'type': 'Point', 'coordinates': (-79.46894095, 43.63732513000001)}"
-19304,21697,GO-20189015855,THEFT UNDER - BICYCLE,2018-05-20T00:00:00,2018,May,Sunday,20,140,1,2018-05-22T00:00:00,2018,May,Tuesday,22,142,17,D11,Toronto,87,High Park-Swansea (87),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,,RC,1,BLK,730.0,STOLEN,19282,"{'type': 'Point', 'coordinates': (-79.44618023, 43.63871539)}"
-19305,21710,GO-20189024914,THEFT UNDER,2017-07-28T00:00:00,2017,July,Friday,28,209,8,2018-08-02T00:00:00,2018,August,Thursday,2,214,17,D11,Toronto,87,High Park-Swansea (87),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,GI,,RG,21,,350.0,STOLEN,19283,"{'type': 'Point', 'coordinates': (-79.45127101, 43.63933996)}"
-19306,21715,GO-20181744091,FTC PROBATION ORDER,2018-09-20T00:00:00,2018,September,Thursday,20,263,5,2018-09-20T00:00:00,2018,September,Thursday,20,263,14,D11,Toronto,87,High Park-Swansea (87),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN,,OT,10,BLK,,STOLEN,19284,"{'type': 'Point', 'coordinates': (-79.4880368, 43.64773395)}"
-19307,21716,GO-20181744091,FTC PROBATION ORDER,2018-09-20T00:00:00,2018,September,Thursday,20,263,5,2018-09-20T00:00:00,2018,September,Thursday,20,263,14,D11,Toronto,87,High Park-Swansea (87),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,SIRRUS ELITE,RG,10,ONG,2000.0,STOLEN,19285,"{'type': 'Point', 'coordinates': (-79.4880368, 43.64773395)}"
-19308,21717,GO-20189032036,THEFT UNDER - BICYCLE,2018-09-26T00:00:00,2018,September,Wednesday,26,269,9,2018-09-26T00:00:00,2018,September,Wednesday,26,269,18,D11,Toronto,87,High Park-Swansea (87),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,FIXIE,RG,1,WHI,600.0,STOLEN,19286,"{'type': 'Point', 'coordinates': (-79.45549089, 43.64312073)}"
-19309,21740,GO-20199020874,FTC PROBATION ORDER,2019-07-03T00:00:00,2019,July,Wednesday,3,184,11,2019-07-03T00:00:00,2019,July,Wednesday,3,184,15,D11,Toronto,87,High Park-Swansea (87),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,EXPLORER 3.0,MT,21,BLK,500.0,STOLEN,19287,"{'type': 'Point', 'coordinates': (-79.45322442, 43.64361623)}"
-19310,21743,GO-20199021777,THEFT UNDER,2019-07-09T00:00:00,2019,July,Tuesday,9,190,22,2019-07-10T00:00:00,2019,July,Wednesday,10,191,20,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GF,HYBRID,MT,21,BLK,800.0,STOLEN,19288,"{'type': 'Point', 'coordinates': (-79.46836423, 43.63741035)}"
-19311,21746,GO-20191396546,THEFT UNDER,2019-07-24T00:00:00,2019,July,Wednesday,24,205,20,2019-07-25T00:00:00,2019,July,Thursday,25,206,8,D11,Toronto,87,High Park-Swansea (87),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN,,RG,8,BLK,800.0,STOLEN,19289,"{'type': 'Point', 'coordinates': (-79.45309063, 43.65418382)}"
-19312,21747,GO-20199024634,THEFT UNDER,2019-07-29T00:00:00,2019,July,Monday,29,210,15,2019-08-01T00:00:00,2019,August,Thursday,1,213,15,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,CC,CAMELEON,RG,5,LBL,500.0,STOLEN,19290,"{'type': 'Point', 'coordinates': (-79.47100511, 43.63695828)}"
-19313,21766,GO-20192262567,THEFT UNDER,2019-11-22T00:00:00,2019,November,Friday,22,326,14,2019-11-23T00:00:00,2019,November,Saturday,23,327,14,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MIELE,,MT,24,PLE,150.0,STOLEN,19291,"{'type': 'Point', 'coordinates': (-79.45694719, 43.64664913)}"
-19314,25009,GO-20159001314,THEFT UNDER,2015-03-15T00:00:00,2015,March,Sunday,15,74,12,2015-03-15T00:00:00,2015,March,Sunday,15,74,12,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,CC,CCM 29ER 29-IN,MT,21,BLK,0.0,STOLEN,19300,"{'type': 'Point', 'coordinates': (-79.47183044, 43.63786184)}"
-19315,21767,GO-20199038835,THEFT UNDER,2019-10-17T00:00:00,2019,October,Thursday,17,290,9,2019-11-25T00:00:00,2019,November,Monday,25,329,20,D11,Toronto,87,High Park-Swansea (87),Schools During Un-Supervised Activity,Educational,OT,REAPER,SC,1,RED,275.0,STOLEN,19292,"{'type': 'Point', 'coordinates': (-79.45295596, 43.6500084)}"
-19316,21787,GO-20209015655,THEFT UNDER,2020-05-21T00:00:00,2020,May,Thursday,21,142,17,2020-06-18T00:00:00,2020,June,Thursday,18,170,14,D11,Toronto,87,High Park-Swansea (87),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,MILANO,RG,40,BLK,600.0,STOLEN,19293,"{'type': 'Point', 'coordinates': (-79.47183044, 43.63786184)}"
-19317,24401,GO-20209021339,THEFT UNDER,2020-08-25T00:00:00,2020,August,Tuesday,25,238,9,2020-08-25T00:00:00,2020,August,Tuesday,25,238,20,D11,Toronto,87,High Park-Swansea (87),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CC,,MT,18,BLU,300.0,STOLEN,19294,"{'type': 'Point', 'coordinates': (-79.44947137, 43.64148427)}"
-19318,24989,GO-20142212924,THEFT UNDER,2014-05-25T00:00:00,2014,May,Sunday,25,145,17,2014-06-03T00:00:00,2014,June,Tuesday,3,154,15,D11,Toronto,87,High Park-Swansea (87),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SUPERCYCLE,,MT,0,BLUBLK,150.0,STOLEN,19295,"{'type': 'Point', 'coordinates': (-79.44985028, 43.64240343)}"
-19319,24990,GO-20142212924,THEFT UNDER,2014-05-25T00:00:00,2014,May,Sunday,25,145,17,2014-06-03T00:00:00,2014,June,Tuesday,3,154,15,D11,Toronto,87,High Park-Swansea (87),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SUPERCYCLE,,RG,0,BLKWHI,150.0,STOLEN,19296,"{'type': 'Point', 'coordinates': (-79.44985028, 43.64240343)}"
-19320,24997,GO-20149005522,THEFT UNDER,2014-07-29T00:00:00,2014,July,Tuesday,29,210,18,2014-07-31T00:00:00,2014,July,Thursday,31,212,18,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,RA,,MT,21,BLU,700.0,STOLEN,19297,"{'type': 'Point', 'coordinates': (-79.49080646, 43.64810265)}"
-19321,24999,GO-20149005928,THEFT UNDER,2014-08-04T00:00:00,2014,August,Monday,4,216,12,2014-08-14T00:00:00,2014,August,Thursday,14,226,13,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,TR,4100,MT,21,SIL,500.0,STOLEN,19298,"{'type': 'Point', 'coordinates': (-79.47100511, 43.63695828)}"
-19322,25001,GO-20142771467,THEFT UNDER,2014-08-23T00:00:00,2014,August,Saturday,23,235,15,2014-08-25T00:00:00,2014,August,Monday,25,237,8,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,,OT,3,BLU,,STOLEN,19299,"{'type': 'Point', 'coordinates': (-79.45112058, 43.64257821)}"
-19323,25039,GO-20169001444,THEFT UNDER,2016-02-04T00:00:00,2016,February,Thursday,4,35,9,2016-02-16T00:00:00,2016,February,Tuesday,16,47,10,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,UK,SIRRUS ELITE,RG,21,SIL,1000.0,STOLEN,19301,"{'type': 'Point', 'coordinates': (-79.48659988, 43.64793625)}"
-19324,25046,GO-2016700530,THEFT UNDER,2016-04-24T00:00:00,2016,April,Sunday,24,115,17,2016-04-24T00:00:00,2016,April,Sunday,24,115,17,D11,Toronto,87,High Park-Swansea (87),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,ROCK HOPPER,RG,12,,1600.0,STOLEN,19302,"{'type': 'Point', 'coordinates': (-79.47100511, 43.63695828)}"
-19325,25052,GO-20161382951,THEFT UNDER - BICYCLE,2016-08-05T00:00:00,2016,August,Friday,5,218,20,2016-08-06T00:00:00,2016,August,Saturday,6,219,11,D11,Toronto,87,High Park-Swansea (87),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,ROCKY MOUNTAIN,750 THUNDERBOLT,MT,14,BLU,3500.0,STOLEN,19303,"{'type': 'Point', 'coordinates': (-79.47183044, 43.63786184)}"
-19326,25053,GO-20161382951,THEFT UNDER - BICYCLE,2016-08-05T00:00:00,2016,August,Friday,5,218,20,2016-08-06T00:00:00,2016,August,Saturday,6,219,11,D11,Toronto,87,High Park-Swansea (87),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,ROCKY MOUNTAIN,750 THUNDERBOLT,MT,14,BLU,3500.0,STOLEN,19304,"{'type': 'Point', 'coordinates': (-79.47183044, 43.63786184)}"
-19327,25060,GO-20169011148,THEFT UNDER,2016-09-24T00:00:00,2016,September,Saturday,24,268,18,2016-09-26T00:00:00,2016,September,Monday,26,270,20,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,RA,TRANSIT,RG,1,BLU,0.0,STOLEN,19305,"{'type': 'Point', 'coordinates': (-79.47100511, 43.63695828)}"
-19328,25064,GO-20169012489,THEFT UNDER - BICYCLE,2016-10-23T00:00:00,2016,October,Sunday,23,297,21,2016-10-24T00:00:00,2016,October,Monday,24,298,7,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,OT,COTE XS,OT,60,ONG,1550.0,STOLEN,19306,"{'type': 'Point', 'coordinates': (-79.47100511, 43.63695828)}"
-19329,25072,GO-20179003706,THEFT UNDER - BICYCLE,2017-03-21T00:00:00,2017,March,Tuesday,21,80,8,2017-03-23T00:00:00,2017,March,Thursday,23,82,22,D11,Toronto,87,High Park-Swansea (87),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,"RECON""""",MT,21,BLU,200.0,STOLEN,19307,"{'type': 'Point', 'coordinates': (-79.44731397, 43.6419326)}"
-19330,4721,GO-20199021616,THEFT UNDER,2019-07-08T00:00:00,2019,July,Monday,8,189,18,2019-07-09T00:00:00,2019,July,Tuesday,9,190,15,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,10,WHI,600.0,STOLEN,19340,"{'type': 'Point', 'coordinates': (-79.45007649, 43.65305166)}"
-19331,25077,GO-2017707049,THEFT UNDER - BICYCLE,2017-04-19T00:00:00,2017,April,Wednesday,19,109,19,2017-04-22T00:00:00,2017,April,Saturday,22,112,14,D11,Toronto,87,High Park-Swansea (87),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,VALANCE 105,MT,22,BLK,1500.0,STOLEN,19308,"{'type': 'Point', 'coordinates': (-79.47083591, 43.65193909)}"
-19332,25079,GO-2017785183,THEFT UNDER - BICYCLE,2017-05-03T00:00:00,2017,May,Wednesday,3,123,20,2017-05-04T00:00:00,2017,May,Thursday,4,124,13,D11,Toronto,87,High Park-Swansea (87),"Open Areas (Lakes, Parks, Rivers)",Outside,UNKNOWN MAKE,TORONTO BIKE,OT,3,BLK,1200.0,STOLEN,19309,"{'type': 'Point', 'coordinates': (-79.4636661, 43.65389971)}"
-19333,25098,GO-20179015733,THEFT UNDER - BICYCLE,2017-09-21T00:00:00,2017,September,Thursday,21,264,2,2017-09-25T00:00:00,2017,September,Monday,25,268,14,D11,Toronto,87,High Park-Swansea (87),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,CUSTOM,OT,18,BLK,1100.0,STOLEN,19310,"{'type': 'Point', 'coordinates': (-79.45439792, 43.64806009000001)}"
-19334,25106,GO-20179018312,THEFT UNDER - BICYCLE,2017-10-27T00:00:00,2017,October,Friday,27,300,8,2017-10-27T00:00:00,2017,October,Friday,27,300,10,D11,Toronto,87,High Park-Swansea (87),Bar / Restaurant,Commercial,CA,CAN 17 S6 EVO U,RC,22,RED,3399.0,STOLEN,19311,"{'type': 'Point', 'coordinates': (-79.45621543, 43.64488493)}"
-19335,25116,GO-20189021602,THEFT UNDER - BICYCLE,2018-07-07T00:00:00,2018,July,Saturday,7,188,23,2018-07-08T00:00:00,2018,July,Sunday,8,189,15,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,OT,ST TROPEZ,RG,21,SIL,1000.0,STOLEN,19312,"{'type': 'Point', 'coordinates': (-79.46894095, 43.63732513000001)}"
-19336,25132,GO-20199000355,THEFT UNDER - BICYCLE,2019-01-03T00:00:00,2019,January,Thursday,3,3,18,2019-01-04T00:00:00,2019,January,Friday,4,4,8,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,OT,PARATROOPER,FO,21,GRN,1500.0,STOLEN,19313,"{'type': 'Point', 'coordinates': (-79.47100511, 43.63695828)}"
-19337,25161,GO-20191998646,THEFT UNDER - BICYCLE,2019-10-16T00:00:00,2019,October,Wednesday,16,289,16,2019-10-16T00:00:00,2019,October,Wednesday,16,289,16,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,AQUILA,CORSA,RC,10,WHI,1400.0,STOLEN,19314,"{'type': 'Point', 'coordinates': (-79.47100511, 43.63695828)}"
-19338,25170,GO-20192282096,B&E,2019-11-26T00:00:00,2019,November,Tuesday,26,330,12,2019-11-26T00:00:00,2019,November,Tuesday,26,330,14,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CERVELO,R5,RC,21,BLK,8500.0,STOLEN,19315,"{'type': 'Point', 'coordinates': (-79.47083591, 43.65193909)}"
-19339,25179,GO-20209015372,THEFT UNDER,2020-06-14T00:00:00,2020,June,Sunday,14,166,21,2020-06-14T00:00:00,2020,June,Sunday,14,166,23,D11,Toronto,87,High Park-Swansea (87),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,ICONIC,RG,3,BLK,1200.0,STOLEN,19316,"{'type': 'Point', 'coordinates': (-79.4636661, 43.65389971)}"
-19340,24,GO-20162151593,THEFT OVER,2016-12-03T00:00:00,2016,December,Saturday,3,338,21,2016-12-04T00:00:00,2016,December,Sunday,4,339,16,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,FOSSIC,FO,10,YEL,450.0,STOLEN,19317,"{'type': 'Point', 'coordinates': (-79.46961057, 43.65654123)}"
-19341,25,GO-20162151593,THEFT OVER,2016-12-03T00:00:00,2016,December,Saturday,3,338,21,2016-12-04T00:00:00,2016,December,Sunday,4,339,16,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,ORBEA ORCA,RC,10,RED,7000.0,STOLEN,19318,"{'type': 'Point', 'coordinates': (-79.46961057, 43.65654123)}"
-19342,101,GO-2017319967,B&E,2017-02-18T00:00:00,2017,February,Saturday,18,49,5,2017-02-20T00:00:00,2017,February,Monday,20,51,17,D11,Toronto,88,High Park North (88),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,CHILD,RG,1,BLUGRN,180.0,STOLEN,19319,"{'type': 'Point', 'coordinates': (-79.45735727000002, 43.66038554)}"
-19343,25041,GO-20169002690,THEFT UNDER,2016-03-21T00:00:00,2016,March,Monday,21,81,17,2016-03-23T00:00:00,2016,March,Wednesday,23,83,12,D11,Toronto,88,High Park North (88),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,MEDIUM,OT,12,BLK,750.0,STOLEN,19320,"{'type': 'Point', 'coordinates': (-79.45241445000002, 43.65632155)}"
-19344,471,GO-20179006852,THEFT UNDER - BICYCLE,2017-05-23T00:00:00,2017,May,Tuesday,23,143,12,2017-05-23T00:00:00,2017,May,Tuesday,23,143,18,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,FJ,ABSOLUTE 2.1,RG,21,DGR,1500.0,STOLEN,19321,"{'type': 'Point', 'coordinates': (-79.4636661, 43.65389971)}"
-19345,4241,GO-2019819853,THEFT UNDER,2019-05-03T00:00:00,2019,May,Friday,3,123,17,2019-05-07T00:00:00,2019,May,Tuesday,7,127,12,D11,Toronto,86,Roncesvalles (86),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,HORNET,EL,30,BLU,1400.0,STOLEN,19322,"{'type': 'Point', 'coordinates': (-79.43532226, 43.64420447)}"
-19346,8527,GO-20149005373,THEFT UNDER,2014-07-14T00:00:00,2014,July,Monday,14,195,22,2014-07-27T00:00:00,2014,July,Sunday,27,208,12,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,2010 SEEK 1,RG,27,BLK,625.0,STOLEN,19323,"{'type': 'Point', 'coordinates': (-79.45877493, 43.65499191)}"
-19347,25044,GO-2016687838,THEFT UNDER - BICYCLE,2016-04-22T00:00:00,2016,April,Friday,22,113,11,2016-04-22T00:00:00,2016,April,Friday,22,113,15,D11,Toronto,88,High Park North (88),"Open Areas (Lakes, Parks, Rivers)",Outside,GT,,MT,24,BLUBLK,600.0,STOLEN,19324,"{'type': 'Point', 'coordinates': (-79.46520964, 43.65754485)}"
-19348,535,GO-20179007492,THEFT UNDER - BICYCLE,2017-04-13T00:00:00,2017,April,Thursday,13,103,20,2017-06-04T00:00:00,2017,June,Sunday,4,155,20,D11,Toronto,88,High Park North (88),Schools During Un-Supervised Activity,Educational,OT,GARNEAU LGHRZ,MT,18,WHI,775.0,STOLEN,19325,"{'type': 'Point', 'coordinates': (-79.47514354, 43.6576332)}"
-19349,4244,GO-2019819853,THEFT UNDER,2019-05-03T00:00:00,2019,May,Friday,3,123,17,2019-05-07T00:00:00,2019,May,Tuesday,7,127,12,D11,Toronto,86,Roncesvalles (86),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EM,HORNET,EL,30,BLU,1400.0,STOLEN,19326,"{'type': 'Point', 'coordinates': (-79.43532226, 43.64420447)}"
-19350,3269,GO-20189027180,THEFT UNDER - BICYCLE,2018-08-19T00:00:00,2018,August,Sunday,19,231,5,2018-08-20T00:00:00,2018,August,Monday,20,232,17,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,18,YEL,300.0,STOLEN,19327,"{'type': 'Point', 'coordinates': (-79.45277241, 43.6533321)}"
-19351,25054,GO-20161473407,THEFT UNDER - BICYCLE,2016-08-05T00:00:00,2016,August,Friday,5,218,19,2016-08-23T00:00:00,2016,August,Tuesday,23,236,11,D11,Toronto,88,High Park North (88),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,MT,21,GRY,400.0,STOLEN,19328,"{'type': 'Point', 'coordinates': (-79.46525867, 43.65353843)}"
-19352,3280,GO-20189027333,THEFT UNDER - BICYCLE,2018-08-20T00:00:00,2018,August,Monday,20,232,11,2018-08-21T00:00:00,2018,August,Tuesday,21,233,15,D11,Toronto,87,High Park-Swansea (87),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RC,12,WHI,2000.0,STOLEN,19329,"{'type': 'Point', 'coordinates': (-79.47100511, 43.63695828)}"
-19353,8555,GO-20142607570,THEFT UNDER,2014-07-22T00:00:00,2014,July,Tuesday,22,203,16,2014-07-31T00:00:00,2014,July,Thursday,31,212,12,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KONA,DEO,OT,24,BLK,500.0,STOLEN,19330,"{'type': 'Point', 'coordinates': (-79.45750541, 43.6609544)}"
-19354,25055,GO-20169009485,THEFT UNDER,2016-07-30T00:00:00,2016,July,Saturday,30,212,16,2016-08-25T00:00:00,2016,August,Thursday,25,238,16,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,RA,AVALANCHE,MT,21,BLU,500.0,STOLEN,19331,"{'type': 'Point', 'coordinates': (-79.4636661, 43.65389971)}"
-19355,3302,GO-20189027705,THEFT UNDER - BICYCLE,2018-08-22T00:00:00,2018,August,Wednesday,22,234,0,2018-08-24T00:00:00,2018,August,Friday,24,236,10,D11,Toronto,87,High Park-Swansea (87),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,MERCURY,RC,12,WHI,350.0,STOLEN,19332,"{'type': 'Point', 'coordinates': (-79.47314966, 43.64608334)}"
-19356,557,GO-20171016006,THEFT UNDER - BICYCLE,2017-05-25T00:00:00,2017,May,Thursday,25,145,7,2017-06-08T00:00:00,2017,June,Thursday,8,159,9,D11,Toronto,88,High Park North (88),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN,,RG,18,BLU,1000.0,STOLEN,19333,"{'type': 'Point', 'coordinates': (-79.46525867, 43.65353843)}"
-19357,4291,GO-20199015383,THEFT UNDER,2019-05-16T00:00:00,2019,May,Thursday,16,136,14,2019-05-17T00:00:00,2019,May,Friday,17,137,11,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,7,BLK,600.0,STOLEN,19334,"{'type': 'Point', 'coordinates': (-79.44935432, 43.64720514)}"
-19358,8594,GO-20142673804,THEFT UNDER,2014-08-02T00:00:00,2014,August,Saturday,2,214,20,2014-08-10T00:00:00,2014,August,Sunday,10,222,12,D11,Toronto,88,High Park North (88),Ttc Subway Station,Transit,TREK,7.6 FX,TO,16,RED,,STOLEN,19335,"{'type': 'Point', 'coordinates': (-79.4762656, 43.65113608)}"
-19359,25078,GO-20179005313,THEFT UNDER - BICYCLE,2017-04-17T00:00:00,2017,April,Monday,17,107,18,2017-04-26T00:00:00,2017,April,Wednesday,26,116,13,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,OT,HR1,MT,27,GRY,900.0,STOLEN,19336,"{'type': 'Point', 'coordinates': (-79.46520964, 43.65754485)}"
-19360,3307,GO-20181560758,THEFT UNDER - BICYCLE,2018-08-22T00:00:00,2018,August,Wednesday,22,234,18,2018-08-24T00:00:00,2018,August,Friday,24,236,16,D11,Toronto,87,High Park-Swansea (87),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CANNONDALE,,RC,1,WHI,1800.0,STOLEN,19337,"{'type': 'Point', 'coordinates': (-79.45199482, 43.64759175)}"
-19361,561,GO-20179007747,THEFT UNDER - BICYCLE,2017-06-08T00:00:00,2017,June,Thursday,8,159,20,2017-06-09T00:00:00,2017,June,Friday,9,160,0,D11,Toronto,88,High Park North (88),Ttc Subway Station,Transit,CC,700C XSPORT,OT,21,WHI,500.0,STOLEN,19338,"{'type': 'Point', 'coordinates': (-79.4672054, 43.65398145)}"
-19362,4702,GO-20199021409,THEFT UNDER,2019-07-06T00:00:00,2019,July,Saturday,6,187,18,2019-07-08T00:00:00,2019,July,Monday,8,189,9,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,TORINO,MT,21,RED,150.0,STOLEN,19339,"{'type': 'Point', 'coordinates': (-79.44274812, 43.64099383)}"
-19363,4906,GO-20191427313,B&E W'INTENT,2019-07-22T00:00:00,2019,July,Monday,22,203,22,2019-07-29T00:00:00,2019,July,Monday,29,210,14,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OPUS,URBANO,RG,21,GRN,800.0,STOLEN,19341,"{'type': 'Point', 'coordinates': (-79.44383957, 43.64733906)}"
-19364,4971,GO-20191469569,THEFT UNDER - BICYCLE,2019-07-22T00:00:00,2019,July,Monday,22,203,21,2019-08-04T00:00:00,2019,August,Sunday,4,216,10,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,AMIRIN,INVERNESS,RG,1,BLK,750.0,STOLEN,19342,"{'type': 'Point', 'coordinates': (-79.44998867, 43.64883293)}"
-19365,4972,GO-20191469569,THEFT UNDER - BICYCLE,2019-07-22T00:00:00,2019,July,Monday,22,203,21,2019-08-04T00:00:00,2019,August,Sunday,4,216,10,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,BURRINGER,OT,21,GRYSIL,1200.0,STOLEN,19343,"{'type': 'Point', 'coordinates': (-79.44998867, 43.64883293)}"
-19366,4974,GO-20199025024,THEFT UNDER,2019-08-04T00:00:00,2019,August,Sunday,4,216,20,2019-08-05T00:00:00,2019,August,Monday,5,217,16,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ENTRADA SPIRIT,OT,7,,1366.0,STOLEN,19344,"{'type': 'Point', 'coordinates': (-79.44438004, 43.64064719)}"
-19367,4982,GO-20191469569,THEFT UNDER - BICYCLE,2019-07-22T00:00:00,2019,July,Monday,22,203,21,2019-08-04T00:00:00,2019,August,Sunday,4,216,10,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,BONTRAGER,OT,21,BLK,900.0,STOLEN,19345,"{'type': 'Point', 'coordinates': (-79.44998867, 43.64883293)}"
-19368,4983,GO-20191469569,THEFT UNDER - BICYCLE,2019-07-22T00:00:00,2019,July,Monday,22,203,21,2019-08-04T00:00:00,2019,August,Sunday,4,216,10,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MA,INVERNESS,OT,1,BLK,600.0,STOLEN,19346,"{'type': 'Point', 'coordinates': (-79.44998867, 43.64883293)}"
-19369,5044,GO-20199025896,THEFT UNDER,2019-08-10T00:00:00,2019,August,Saturday,10,222,13,2019-08-12T00:00:00,2019,August,Monday,12,224,15,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,725,RG,1,BLK,900.0,STOLEN,19347,"{'type': 'Point', 'coordinates': (-79.44383957, 43.64733906)}"
-19370,5045,GO-20191531926,B&E,2019-08-10T00:00:00,2019,August,Saturday,10,222,11,2019-08-13T00:00:00,2019,August,Tuesday,13,225,8,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,,RC,18,SILGRN,1849.0,STOLEN,19348,"{'type': 'Point', 'coordinates': (-79.44916936, 43.65263227)}"
-19371,5171,GO-20199027762,THEFT UNDER,2019-08-25T00:00:00,2019,August,Sunday,25,237,6,2019-08-26T00:00:00,2019,August,Monday,26,238,15,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,UK,,BM,50,,300.0,STOLEN,19349,"{'type': 'Point', 'coordinates': (-79.45103028, 43.65151643)}"
-19372,5180,GO-20191628578,THEFT UNDER - BICYCLE,2019-08-25T00:00:00,2019,August,Sunday,25,237,6,2019-08-28T00:00:00,2019,August,Wednesday,28,240,18,D11,Toronto,86,Roncesvalles (86),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,BMX,,BM,0,GRN,350.0,STOLEN,19350,"{'type': 'Point', 'coordinates': (-79.45103028, 43.65151643)}"
-19373,5201,GO-20199028365,THEFT UNDER,2019-08-30T00:00:00,2019,August,Friday,30,242,17,2019-08-31T00:00:00,2019,August,Saturday,31,243,15,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,UK,SVELTO RR,RC,21,WHI,1600.0,STOLEN,19351,"{'type': 'Point', 'coordinates': (-79.45117206, 43.65188117)}"
-19374,5252,GO-20199028970,THEFT UNDER,2019-09-05T00:00:00,2019,September,Thursday,5,248,3,2019-09-06T00:00:00,2019,September,Friday,6,249,12,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,5,GRY,500.0,STOLEN,19352,"{'type': 'Point', 'coordinates': (-79.44487118, 43.64997504)}"
-19375,5287,GO-20191736515,B&E,2019-08-25T00:00:00,2019,August,Sunday,25,237,15,2019-09-10T00:00:00,2019,September,Tuesday,10,253,15,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,TREK,18 FX3,OT,18,BLK,1400.0,STOLEN,19353,"{'type': 'Point', 'coordinates': (-79.44916936, 43.65263227)}"
-19376,5303,GO-20199029679,THEFT UNDER,2019-09-11T00:00:00,2019,September,Wednesday,11,254,16,2019-09-11T00:00:00,2019,September,Wednesday,11,254,20,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,TO,14,BLK,900.0,STOLEN,19354,"{'type': 'Point', 'coordinates': (-79.44766531, 43.64283038)}"
-19377,5389,GO-20199031272,THEFT UNDER,2019-09-21T00:00:00,2019,September,Saturday,21,264,0,2019-09-23T00:00:00,2019,September,Monday,23,266,22,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MONGOOSE,,RG,10,ONG,300.0,STOLEN,19355,"{'type': 'Point', 'coordinates': (-79.43101803, 43.64269938)}"
-19378,5451,GO-20199032266,THEFT UNDER,2019-10-01T00:00:00,2019,October,Tuesday,1,274,13,2019-10-01T00:00:00,2019,October,Tuesday,1,274,15,D11,Toronto,86,Roncesvalles (86),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,2015 WILLARD 1,OT,18,DGR,1000.0,STOLEN,19356,"{'type': 'Point', 'coordinates': (-79.44664002, 43.64019969)}"
-19379,5452,GO-20199032266,THEFT UNDER,2019-10-01T00:00:00,2019,October,Tuesday,1,274,13,2019-10-01T00:00:00,2019,October,Tuesday,1,274,15,D11,Toronto,86,Roncesvalles (86),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,,OT,18,DGR,1000.0,STOLEN,19357,"{'type': 'Point', 'coordinates': (-79.44664002, 43.64019969)}"
-19380,5517,GO-20199033685,THEFT UNDER - BICYCLE,2019-10-09T00:00:00,2019,October,Wednesday,9,282,15,2019-10-12T00:00:00,2019,October,Saturday,12,285,15,D14,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,OTHER,FAIRDALE EXPRES,RC,1,BLU,,STOLEN,19358,"{'type': 'Point', 'coordinates': (-79.42860473, 43.64220797)}"
-19381,5708,GO-20199038030,THEFT UNDER,2019-11-17T00:00:00,2019,November,Sunday,17,321,17,2019-11-19T00:00:00,2019,November,Tuesday,19,323,11,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,FJ,FEATHER,RG,1,LGR,900.0,STOLEN,19359,"{'type': 'Point', 'coordinates': (-79.43101803, 43.64269938)}"
-19382,5727,GO-20192288819,B&E,2019-10-29T00:00:00,2019,October,Tuesday,29,302,0,2019-11-27T00:00:00,2019,November,Wednesday,27,331,13,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,FUJI,FEATHER,MT,18,BLK,800.0,STOLEN,19360,"{'type': 'Point', 'coordinates': (-79.44453147, 43.64909585)}"
-19383,5732,GO-20199039187,THEFT UNDER,2019-10-26T00:00:00,2019,October,Saturday,26,299,17,2019-11-28T00:00:00,2019,November,Thursday,28,332,18,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,OT,QUEEN STREET,RG,7,PLE,370.0,STOLEN,19361,"{'type': 'Point', 'coordinates': (-79.43532226, 43.64420447)}"
-19384,5762,GO-20192408302,B&E,2019-12-13T00:00:00,2019,December,Friday,13,347,20,2019-12-14T00:00:00,2019,December,Saturday,14,348,10,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MIELE,UNK,MT,21,BLU,500.0,STOLEN,19362,"{'type': 'Point', 'coordinates': (-79.44833215, 43.64455285)}"
-19385,5879,GO-20209004705,THEFT UNDER,2020-02-08T00:00:00,2020,February,Saturday,8,39,14,2020-02-08T00:00:00,2020,February,Saturday,8,39,15,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,CA,QUICK CX1,OT,27,SIL,700.0,STOLEN,19363,"{'type': 'Point', 'coordinates': (-79.44487118, 43.64997504)}"
-19386,5880,GO-20209004744,THEFT UNDER,2020-02-08T00:00:00,2020,February,Saturday,8,39,10,2020-02-09T00:00:00,2020,February,Sunday,9,40,10,D11,Toronto,86,Roncesvalles (86),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,2019,RC,12,BLK,1100.0,STOLEN,19364,"{'type': 'Point', 'coordinates': (-79.45117206, 43.65188117)}"
-19387,5888,GO-2020287226,THEFT UNDER,2020-02-08T00:00:00,2020,February,Saturday,8,39,4,2020-02-10T00:00:00,2020,February,Monday,10,41,10,D11,Toronto,86,Roncesvalles (86),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,MARLIN 7,MT,21,BLK,1000.0,STOLEN,19365,"{'type': 'Point', 'coordinates': (-79.44487118, 43.64997504)}"
-19388,6145,GO-20209012537,THEFT UNDER,2020-04-27T00:00:00,2020,April,Monday,27,118,2,2020-05-05T00:00:00,2020,May,Tuesday,5,126,19,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,SC,ROCKET,MT,24,BLK,1200.0,STOLEN,19366,"{'type': 'Point', 'coordinates': (-79.44487118, 43.64997504)}"
-19389,6509,GO-20201210716,B&E,2020-06-20T00:00:00,2020,June,Saturday,20,172,9,2020-07-01T00:00:00,2020,July,Wednesday,1,183,11,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,,MT,6,BLK,4000.0,STOLEN,19367,"{'type': 'Point', 'coordinates': (-79.4419773, 43.64806091)}"
-19390,6510,GO-20201210716,B&E,2020-06-20T00:00:00,2020,June,Saturday,20,172,9,2020-07-01T00:00:00,2020,July,Wednesday,1,183,11,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,,MT,6,WHI,2500.0,STOLEN,19368,"{'type': 'Point', 'coordinates': (-79.4419773, 43.64806091)}"
-19391,6528,GO-20201241179,THEFT UNDER - BICYCLE,2020-07-01T00:00:00,2020,July,Wednesday,1,183,0,2020-07-05T00:00:00,2020,July,Sunday,5,187,16,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,RG,12,CRM,500.0,STOLEN,19369,"{'type': 'Point', 'coordinates': (-79.43913494, 43.64358286)}"
-19392,6529,GO-20201241179,THEFT UNDER - BICYCLE,2020-07-01T00:00:00,2020,July,Wednesday,1,183,0,2020-07-05T00:00:00,2020,July,Sunday,5,187,16,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,CROSSROADS,TO,12,GRY,600.0,STOLEN,19370,"{'type': 'Point', 'coordinates': (-79.43913494, 43.64358286)}"
-19393,6762,GO-20209018410,THEFT UNDER,2020-07-24T00:00:00,2020,July,Friday,24,206,9,2020-07-24T00:00:00,2020,July,Friday,24,206,9,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,OT,1,OTH,1400.0,STOLEN,19371,"{'type': 'Point', 'coordinates': (-79.44182746, 43.64210107)}"
-19394,6811,GO-20209018950,THEFT UNDER,2020-07-27T00:00:00,2020,July,Monday,27,209,21,2020-07-30T00:00:00,2020,July,Thursday,30,212,3,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,MX29,MT,21,ONG,800.0,STOLEN,19372,"{'type': 'Point', 'coordinates': (-79.4394762, 43.64443895)}"
-19395,6858,GO-20201447054,THEFT UNDER - BICYCLE,2020-08-03T00:00:00,2020,August,Monday,3,216,8,2020-08-04T00:00:00,2020,August,Tuesday,4,217,8,D11,Toronto,86,Roncesvalles (86),Ttc Bus Stop / Shelter / Loop,Outside,OTHER,HYPER,RG,12,BLUWHI,200.0,STOLEN,19373,"{'type': 'Point', 'coordinates': (-79.44618023, 43.63871539)}"
-19396,6885,GO-20209019057,THEFT UNDER,2020-07-30T00:00:00,2020,July,Thursday,30,212,16,2020-07-31T00:00:00,2020,July,Friday,31,213,8,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,GT,AGGRESSOR COMP,MT,7,GRY,400.0,STOLEN,19374,"{'type': 'Point', 'coordinates': (-79.45007649, 43.65305166)}"
-19397,6991,GO-20209020566,THEFT UNDER,2020-08-03T00:00:00,2020,August,Monday,3,216,20,2020-08-18T00:00:00,2020,August,Tuesday,18,231,20,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,RA,KILIMANJARO,MT,18,ONG,200.0,STOLEN,19375,"{'type': 'Point', 'coordinates': (-79.44487118, 43.64997504)}"
-19398,7053,GO-20209021065,THEFT UNDER,2020-08-19T00:00:00,2020,August,Wednesday,19,232,14,2020-08-23T00:00:00,2020,August,Sunday,23,236,15,D14,Toronto,86,Roncesvalles (86),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,VALENCE,RC,10,BLU,750.0,STOLEN,19376,"{'type': 'Point', 'coordinates': (-79.42860473, 43.64220797)}"
-19399,7092,GO-20209021493,THEFT UNDER,2020-08-26T00:00:00,2020,August,Wednesday,26,239,22,2020-08-27T00:00:00,2020,August,Thursday,27,240,10,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,OT,1,BRN,1000.0,STOLEN,19377,"{'type': 'Point', 'coordinates': (-79.4419773, 43.64806091)}"
-19400,7093,GO-20209021493,THEFT UNDER,2020-08-26T00:00:00,2020,August,Wednesday,26,239,22,2020-08-27T00:00:00,2020,August,Thursday,27,240,10,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,RG,7,OTH,637.0,STOLEN,19378,"{'type': 'Point', 'coordinates': (-79.4419773, 43.64806091)}"
-19401,7233,GO-20209023020,THEFT UNDER,2020-09-10T00:00:00,2020,September,Thursday,10,254,2,2020-09-11T00:00:00,2020,September,Friday,11,255,20,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,UK,,OT,1,BLU,150.0,STOLEN,19379,"{'type': 'Point', 'coordinates': (-79.45007649, 43.65305166)}"
-19402,7289,GO-20209023782,THEFT UNDER,2020-09-11T00:00:00,2020,September,Friday,11,255,0,2020-09-18T00:00:00,2020,September,Friday,18,262,16,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,OT,URBAN X1 WSD,RG,7,BLK,600.0,STOLEN,19380,"{'type': 'Point', 'coordinates': (-79.45007649, 43.65305166)}"
-19403,7310,GO-20201789535,THEFT OF EBIKE UNDER $5000,2020-09-13T00:00:00,2020,September,Sunday,13,257,0,2020-09-21T00:00:00,2020,September,Monday,21,265,6,D11,Toronto,86,Roncesvalles (86),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,PRAGUE,NMC PRAGUE,EL,0,BLKBLU,1500.0,STOLEN,19381,"{'type': 'Point', 'coordinates': (-79.4344776, 43.64102571)}"
-19404,7411,GO-20209025391,THEFT UNDER,2020-10-01T00:00:00,2020,October,Thursday,1,275,17,2020-10-03T00:00:00,2020,October,Saturday,3,277,21,D11,Toronto,86,Roncesvalles (86),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RM,FLARE,OT,32,RED,1000.0,STOLEN,19382,"{'type': 'Point', 'coordinates': (-79.44664002, 43.64019969)}"
-19405,7474,GO-20201958922,THEFT UNDER - BICYCLE,2020-10-15T00:00:00,2020,October,Thursday,15,289,15,2020-10-15T00:00:00,2020,October,Thursday,15,289,15,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,BROOKLYN BEDFOR,TO,2,GRY,600.0,STOLEN,19383,"{'type': 'Point', 'coordinates': (-79.44215237, 43.64297284)}"
-19406,7513,GO-20201990200,THEFT UNDER - BICYCLE,2020-10-11T00:00:00,2020,October,Sunday,11,285,10,2020-10-20T00:00:00,2020,October,Tuesday,20,294,12,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNK,UNK,MT,10,BLK,,STOLEN,19384,"{'type': 'Point', 'coordinates': (-79.45007649, 43.65305166)}"
-19407,7547,GO-20209027709,THEFT UNDER,2020-10-22T00:00:00,2020,October,Thursday,22,296,17,2020-10-26T00:00:00,2020,October,Monday,26,300,11,D11,Toronto,86,Roncesvalles (86),Schools During Un-Supervised Activity,Educational,MA,BOLINAS RIDGE,MT,21,BLK,700.0,STOLEN,19385,"{'type': 'Point', 'coordinates': (-79.44902054, 43.64633797)}"
-19408,7566,GO-20202052074,THEFT UNDER - BICYCLE,2020-05-01T00:00:00,2020,May,Friday,1,122,12,2020-10-29T00:00:00,2020,October,Thursday,29,303,12,D11,Toronto,86,Roncesvalles (86),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,ALUMINUM BIKE,EL,1,BLK,2100.0,STOLEN,19386,"{'type': 'Point', 'coordinates': (-79.43317784, 43.64370353)}"
-19409,7583,GO-20202058919,THEFT FROM MOTOR VEHICLE OVER,2020-10-13T00:00:00,2020,October,Tuesday,13,287,2,2020-11-02T00:00:00,2020,November,Monday,2,307,17,D11,Toronto,86,Roncesvalles (86),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,ADVANCED PRO,RC,11,PLEBLK,10000.0,STOLEN,19387,"{'type': 'Point', 'coordinates': (-79.43463614, 43.64244878)}"
-19410,9461,GO-2015672980,THEFT UNDER,2015-04-21T00:00:00,2015,April,Tuesday,21,111,22,2015-04-23T00:00:00,2015,April,Thursday,23,113,15,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,,RG,10,RED,150.0,STOLEN,19404,"{'type': 'Point', 'coordinates': (-79.43913494, 43.64358286)}"
-19411,7670,GO-20202252488,THEFT UNDER - BICYCLE,2020-11-27T00:00:00,2020,November,Friday,27,332,22,2020-11-28T00:00:00,2020,November,Saturday,28,333,14,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,ROCKY MOUNTAIN,,MT,21,SIL,100.0,STOLEN,19388,"{'type': 'Point', 'coordinates': (-79.44274812, 43.64099383)}"
-19412,7671,GO-20202252488,THEFT UNDER - BICYCLE,2020-11-27T00:00:00,2020,November,Friday,27,332,22,2020-11-28T00:00:00,2020,November,Saturday,28,333,14,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,RG,21,WHI,400.0,STOLEN,19389,"{'type': 'Point', 'coordinates': (-79.44274812, 43.64099383)}"
-19413,7697,GO-20209031647,THEFT UNDER,2020-12-08T00:00:00,2020,December,Tuesday,8,343,23,2020-12-09T00:00:00,2020,December,Wednesday,9,344,22,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RA,,RG,1,BLK,500.0,STOLEN,19390,"{'type': 'Point', 'coordinates': (-79.43997463, 43.64248673)}"
-19414,7901,GO-20142053081,B&E,2014-05-09T00:00:00,2014,May,Friday,9,129,18,2014-05-10T00:00:00,2014,May,Saturday,10,130,17,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,,OT,0,GRNBLK,200.0,STOLEN,19391,"{'type': 'Point', 'coordinates': (-79.43871159, 43.64246141)}"
-19415,7927,GO-20142076977,THEFT UNDER,2014-05-13T00:00:00,2014,May,Tuesday,13,133,15,2014-05-14T00:00:00,2014,May,Wednesday,14,134,11,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,,MT,21,BLUGRN,200.0,STOLEN,19392,"{'type': 'Point', 'coordinates': (-79.44283602, 43.64471829)}"
-19416,8024,GO-20149003748,THEFT UNDER,2014-05-31T00:00:00,2014,May,Saturday,31,151,19,2014-06-02T00:00:00,2014,June,Monday,2,153,11,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,GI,13 GIANT CITY E,MT,15,GRY,650.0,STOLEN,19393,"{'type': 'Point', 'coordinates': (-79.44968747, 43.64805522)}"
-19417,8232,GO-20142349938,B&E,2014-06-17T00:00:00,2014,June,Tuesday,17,168,1,2014-06-23T00:00:00,2014,June,Monday,23,174,11,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,U/K,TO,1,YELWHI,,STOLEN,19394,"{'type': 'Point', 'coordinates': (-79.44250218, 43.64384496)}"
-19418,8233,GO-20142349938,B&E,2014-06-17T00:00:00,2014,June,Tuesday,17,168,1,2014-06-23T00:00:00,2014,June,Monday,23,174,11,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,MT,18,BLKGRY,,STOLEN,19395,"{'type': 'Point', 'coordinates': (-79.44250218, 43.64384496)}"
-19419,8452,GO-20149005117,THEFT UNDER,2014-07-13T00:00:00,2014,July,Sunday,13,194,4,2014-07-19T00:00:00,2014,July,Saturday,19,200,19,D11,Toronto,86,Roncesvalles (86),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,3700,MT,21,LGR,700.0,STOLEN,19396,"{'type': 'Point', 'coordinates': (-79.43788356, 43.64033271)}"
-19420,8541,GO-20149005430,THEFT UNDER,2014-07-29T00:00:00,2014,July,Tuesday,29,210,8,2014-07-29T00:00:00,2014,July,Tuesday,29,210,10,D11,Toronto,86,Roncesvalles (86),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,FO,6,BLU,200.0,STOLEN,19397,"{'type': 'Point', 'coordinates': (-79.45031139, 43.64966285)}"
-19421,8878,GO-20149006857,THEFT UNDER,2014-09-12T00:00:00,2014,September,Friday,12,255,18,2014-09-13T00:00:00,2014,September,Saturday,13,256,16,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,SU,SC1800,RG,18,RED,0.0,STOLEN,19398,"{'type': 'Point', 'coordinates': (-79.43317784, 43.64370353)}"
-19422,9056,GO-20149007577,THEFT UNDER,2014-10-12T00:00:00,2014,October,Sunday,12,285,13,2014-10-14T00:00:00,2014,October,Tuesday,14,287,13,D11,Toronto,86,Roncesvalles (86),Bar / Restaurant,Commercial,SC,HYDRA,OT,24,BLK,350.0,STOLEN,19399,"{'type': 'Point', 'coordinates': (-79.44114200000001, 43.63968843)}"
-19423,9130,GO-20143197628,THEFT UNDER,2014-10-26T00:00:00,2014,October,Sunday,26,299,7,2014-10-29T00:00:00,2014,October,Wednesday,29,302,10,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,ROCKY MOUNTAIN,VERTEX,RC,20,BLK,3995.0,STOLEN,19400,"{'type': 'Point', 'coordinates': (-79.44902054, 43.64633797)}"
-19424,9172,GO-20143284135,THEFT UNDER,2014-11-11T00:00:00,2014,November,Tuesday,11,315,17,2014-11-11T00:00:00,2014,November,Tuesday,11,315,21,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,AGRESSOR,OT,21,BLKLGR,250.0,STOLEN,19401,"{'type': 'Point', 'coordinates': (-79.44316873, 43.64559668)}"
-19425,9433,GO-20159002052,THEFT UNDER,2015-04-15T00:00:00,2015,April,Wednesday,15,105,1,2015-04-19T00:00:00,2015,April,Sunday,19,109,16,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,,MT,18,RED,300.0,STOLEN,19402,"{'type': 'Point', 'coordinates': (-79.44031796, 43.64333995)}"
-19426,9446,GO-2015655103,THEFT UNDER,2015-04-20T00:00:00,2015,April,Monday,20,110,20,2015-04-20T00:00:00,2015,April,Monday,20,110,22,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,PEUGEOT,,RG,10,BLK,2000.0,STOLEN,19403,"{'type': 'Point', 'coordinates': (-79.43981037, 43.64531701)}"
-19427,9502,GO-20159002372,THEFT UNDER,2015-05-01T00:00:00,2015,May,Friday,1,121,13,2015-05-01T00:00:00,2015,May,Friday,1,121,15,D11,Toronto,86,Roncesvalles (86),"Group Homes (Non-Profit, Halfway House, Social Agency)",Other,UK,TESLA,RG,24,BLK,825.0,STOLEN,19405,"{'type': 'Point', 'coordinates': (-79.44418441, 43.64823028000001)}"
-19428,9583,GO-2015803110,THEFT UNDER,2015-05-13T00:00:00,2015,May,Wednesday,13,133,17,2015-05-15T00:00:00,2015,May,Friday,15,135,15,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MARC GARNEAU,LADIES,MT,12,LBL,1000.0,STOLEN,19406,"{'type': 'Point', 'coordinates': (-79.44274812, 43.64099383)}"
-19429,9617,GO-20159002942,THEFT UNDER,2014-09-07T00:00:00,2014,September,Sunday,7,250,23,2015-05-20T00:00:00,2015,May,Wednesday,20,140,15,D11,Toronto,86,Roncesvalles (86),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,MA,TIBURON,RC,27,WHI,1100.0,STOLEN,19407,"{'type': 'Point', 'coordinates': (-79.44349367, 43.64646844)}"
-19430,10001,GO-20151182697,THEFT UNDER,2015-07-11T00:00:00,2015,July,Saturday,11,192,22,2015-07-12T00:00:00,2015,July,Sunday,12,193,23,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,INFINITY,,MT,21,PNKGRY,250.0,STOLEN,19408,"{'type': 'Point', 'coordinates': (-79.44283602, 43.64471829)}"
-19431,10033,GO-20159004624,THEFT UNDER,2015-07-11T00:00:00,2015,July,Saturday,11,192,12,2015-07-16T00:00:00,2015,July,Thursday,16,197,12,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,CA,SYNAPSE,RC,10,BLK,1600.0,STOLEN,19409,"{'type': 'Point', 'coordinates': (-79.45140453, 43.65253397)}"
-19432,10089,GO-20159004922,THEFT UNDER,2015-07-23T00:00:00,2015,July,Thursday,23,204,18,2015-07-23T00:00:00,2015,July,Thursday,23,204,22,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,MT,15,BLU,0.0,STOLEN,19410,"{'type': 'Point', 'coordinates': (-79.44833215, 43.64455285)}"
-19433,10130,GO-20159005103,THEFT UNDER,2015-07-27T00:00:00,2015,July,Monday,27,208,21,2015-07-29T00:00:00,2015,July,Wednesday,29,210,8,D11,Toronto,86,Roncesvalles (86),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,ROAD BIKE,UN,6,RED,400.0,STOLEN,19411,"{'type': 'Point', 'coordinates': (-79.43788356, 43.64033271)}"
-19434,10223,GO-20159005551,THEFT UNDER,2015-08-08T00:00:00,2015,August,Saturday,8,220,16,2015-08-09T00:00:00,2015,August,Sunday,9,221,20,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,12,BLU,500.0,STOLEN,19412,"{'type': 'Point', 'coordinates': (-79.44218264, 43.63949071)}"
-19435,10224,GO-20159005551,THEFT UNDER,2015-08-08T00:00:00,2015,August,Saturday,8,220,16,2015-08-09T00:00:00,2015,August,Sunday,9,221,20,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,UK,,OT,1,YEL,500.0,STOLEN,19413,"{'type': 'Point', 'coordinates': (-79.44218264, 43.63949071)}"
-19436,10225,GO-20159005551,THEFT UNDER,2015-08-08T00:00:00,2015,August,Saturday,8,220,16,2015-08-09T00:00:00,2015,August,Sunday,9,221,20,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,RA,,RG,10,BLK,300.0,STOLEN,19414,"{'type': 'Point', 'coordinates': (-79.44218264, 43.63949071)}"
-19437,10228,GO-20159005563,THEFT UNDER,2015-08-08T00:00:00,2015,August,Saturday,8,220,3,2015-08-08T00:00:00,2015,August,Saturday,8,220,19,D11,Toronto,86,Roncesvalles (86),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,10 ONE WAY,RG,1,WHI,800.0,STOLEN,19415,"{'type': 'Point', 'coordinates': (-79.44316873, 43.64559668)}"
-19438,10242,GO-20159005649,THEFT UNDER,2015-08-09T00:00:00,2015,August,Sunday,9,221,23,2015-08-11T00:00:00,2015,August,Tuesday,11,223,17,D11,Toronto,86,Roncesvalles (86),Bar / Restaurant,Commercial,RM,OXYGEN 10,RC,27,RED,900.0,STOLEN,19416,"{'type': 'Point', 'coordinates': (-79.44092476, 43.63973986)}"
-19439,10373,GO-20159006551,THEFT UNDER,2015-08-31T00:00:00,2015,August,Monday,31,243,1,2015-08-31T00:00:00,2015,August,Monday,31,243,10,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,SEEK 0 M ANO SI,MT,8,SIL,1700.0,STOLEN,19417,"{'type': 'Point', 'coordinates': (-79.44031796, 43.64333995)}"
-19440,10425,GO-20151562105,POSSESSION PROPERTY OBC UNDER,2015-09-09T00:00:00,2015,September,Wednesday,9,252,20,2015-09-10T00:00:00,2015,September,Thursday,10,253,8,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,STRYDER,,RG,1,,100.0,STOLEN,19418,"{'type': 'Point', 'coordinates': (-79.43997463, 43.64248673)}"
-19441,10492,GO-20159007376,THEFT UNDER,2015-09-17T00:00:00,2015,September,Thursday,17,260,23,2015-09-18T00:00:00,2015,September,Friday,18,261,15,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,6,GRY,200.0,STOLEN,19419,"{'type': 'Point', 'coordinates': (-79.43981037, 43.64531701)}"
-19442,10577,GO-20159007991,THEFT UNDER,2015-09-30T00:00:00,2015,September,Wednesday,30,273,18,2015-10-01T00:00:00,2015,October,Thursday,1,274,11,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,7.3FX,RG,21,BLU,900.0,STOLEN,19420,"{'type': 'Point', 'coordinates': (-79.4394762, 43.64443895)}"
-19443,10582,GO-20159008045,THEFT UNDER,2015-09-30T00:00:00,2015,September,Wednesday,30,273,1,2015-10-02T00:00:00,2015,October,Friday,2,275,14,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,MT,21,PLE,399.0,STOLEN,19421,"{'type': 'Point', 'coordinates': (-79.43997463, 43.64248673)}"
-19444,10583,GO-20159008045,THEFT UNDER,2015-09-30T00:00:00,2015,September,Wednesday,30,273,1,2015-10-02T00:00:00,2015,October,Friday,2,275,14,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MA,,MT,21,BLK,590.0,STOLEN,19422,"{'type': 'Point', 'coordinates': (-79.43997463, 43.64248673)}"
-19445,10915,GO-201649151,B&E,2015-01-09T00:00:00,2015,January,Friday,9,9,6,2016-01-09T00:00:00,2016,January,Saturday,9,9,7,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,,RC,10,BLKMUL,2400.0,STOLEN,19423,"{'type': 'Point', 'coordinates': (-79.43981037, 43.64531701)}"
-19446,11052,GO-2016453861,THEFT UNDER,2016-03-15T00:00:00,2016,March,Tuesday,15,75,16,2016-03-16T00:00:00,2016,March,Wednesday,16,76,9,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,,OT,15,BLK,1300.0,STOLEN,19424,"{'type': 'Point', 'coordinates': (-79.44766531, 43.64283038)}"
-19447,11118,GO-2016597081,PROPERTY - FOUND,2016-04-08T00:00:00,2016,April,Friday,8,99,18,2016-04-08T00:00:00,2016,April,Friday,8,99,18,D11,Toronto,86,Roncesvalles (86),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KONA,AFRICABIKE 3.0,RG,21,BLK,400.0,UNKNOWN,19425,"{'type': 'Point', 'coordinates': (-79.44867331, 43.64544709)}"
-19448,11159,GO-20142119431,PROPERTY - FOUND,2014-06-01T00:00:00,2014,June,Sunday,1,152,20,2014-08-08T00:00:00,2014,August,Friday,8,220,21,D11,Toronto,86,Roncesvalles (86),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,HARO,VGF V-3,TO,99,BLKGRY,,UNKNOWN,19426,"{'type': 'Point', 'coordinates': (-79.44916936, 43.65263227)}"
-19449,11200,GO-2016706880,THEFT UNDER - BICYCLE,2016-04-21T00:00:00,2016,April,Thursday,21,112,9,2016-04-25T00:00:00,2016,April,Monday,25,116,18,D11,Toronto,86,Roncesvalles (86),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NEO,RADIUS,OT,1,PNKWHI,300.0,STOLEN,19427,"{'type': 'Point', 'coordinates': (-79.44697699, 43.64107658)}"
-19450,11208,GO-20151625636,PROPERTY - FOUND,2015-09-20T00:00:00,2015,September,Sunday,20,263,8,2015-09-21T00:00:00,2015,September,Monday,21,264,7,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SEKINE,,RG,99,WHI,,UNKNOWN,19428,"{'type': 'Point', 'coordinates': (-79.44453147, 43.64909585)}"
-19451,11416,GO-20169005169,THEFT UNDER,2016-05-30T00:00:00,2016,May,Monday,30,151,17,2016-05-30T00:00:00,2016,May,Monday,30,151,20,D11,Toronto,86,Roncesvalles (86),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,MT,18,WHI,0.0,STOLEN,19429,"{'type': 'Point', 'coordinates': (-79.44664002, 43.64019969)}"
-19452,11464,GO-2016995420,POSSESSION PROPERTY OBC UNDER,2016-06-08T00:00:00,2016,June,Wednesday,8,160,11,2016-06-08T00:00:00,2016,June,Wednesday,8,160,11,D11,Toronto,86,Roncesvalles (86),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,LOUIS GARNEAU,URBANIA 2.0,MT,18,BLK,,RECOVERED,19430,"{'type': 'Point', 'coordinates': (-79.43788356, 43.64033271)}"
-19453,11511,GO-20169005678,THEFT UNDER,2016-06-11T00:00:00,2016,June,Saturday,11,163,12,2016-06-12T00:00:00,2016,June,Sunday,12,164,23,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,18,SIL,1000.0,STOLEN,19431,"{'type': 'Point', 'coordinates': (-79.43317784, 43.64370353)}"
-19454,11597,GO-20161023981,PROPERTY - FOUND,2016-06-12T00:00:00,2016,June,Sunday,12,164,19,2016-06-22T00:00:00,2016,June,Wednesday,22,174,0,D11,Toronto,86,Roncesvalles (86),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,MODENA,MT,17,,,RECOVERED,19432,"{'type': 'Point', 'coordinates': (-79.44946863, 43.6537446)}"
-19455,11812,GO-20169007239,THEFT UNDER,2016-07-15T00:00:00,2016,July,Friday,15,197,1,2016-07-15T00:00:00,2016,July,Friday,15,197,7,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,,RG,3,WHI,500.0,STOLEN,19433,"{'type': 'Point', 'coordinates': (-79.44274812, 43.64099383)}"
-19456,11814,GO-20169007257,THEFT UNDER,2016-07-15T00:00:00,2016,July,Friday,15,197,0,2016-07-15T00:00:00,2016,July,Friday,15,197,13,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,MARLIN 29-19 PA,MT,21,GRY,1000.0,STOLEN,19434,"{'type': 'Point', 'coordinates': (-79.44487118, 43.64997504)}"
-19457,563,GO-20179007761,THEFT UNDER,2017-06-08T00:00:00,2017,June,Thursday,8,159,20,2017-06-09T00:00:00,2017,June,Friday,9,160,10,D11,Toronto,88,High Park North (88),Ttc Subway Station,Transit,OT,MIXTE,RG,3,BLK,600.0,STOLEN,19435,"{'type': 'Point', 'coordinates': (-79.4672054, 43.65398145)}"
-19458,3340,GO-20181590250,THEFT UNDER - BICYCLE,2018-08-27T00:00:00,2018,August,Monday,27,239,22,2018-08-28T00:00:00,2018,August,Tuesday,28,240,12,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,OT,1,BLK,,STOLEN,19436,"{'type': 'Point', 'coordinates': (-79.46874337, 43.63833986)}"
-19459,8669,GO-20142737441,THEFT UNDER,2014-08-13T00:00:00,2014,August,Wednesday,13,225,11,2014-08-20T00:00:00,2014,August,Wednesday,20,232,7,D11,Toronto,88,High Park North (88),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RALEIGH,SUPERBE,OT,1,BRZGRN,400.0,STOLEN,19437,"{'type': 'Point', 'coordinates': (-79.45241445000002, 43.65632155)}"
-19460,21632,GO-2016125303,THEFT UNDER,2016-01-20T00:00:00,2016,January,Wednesday,20,20,12,2016-01-21T00:00:00,2016,January,Thursday,21,21,17,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,EL,1,BLK,1000.0,STOLEN,19438,"{'type': 'Point', 'coordinates': (-79.43317784, 43.64370353)}"
-19461,25081,GO-2017814836,THEFT UNDER - BICYCLE,2017-05-09T00:00:00,2017,May,Tuesday,9,129,0,2017-05-09T00:00:00,2017,May,Tuesday,9,129,23,D11,Toronto,88,High Park North (88),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KONA,PADDY WAGON,RG,1,BLK,1500.0,RECOVERED,19439,"{'type': 'Point', 'coordinates': (-79.45736924, 43.660099)}"
-19462,11849,GO-20169007441,THEFT UNDER - BICYCLE,2016-05-24T00:00:00,2016,May,Tuesday,24,145,23,2016-07-20T00:00:00,2016,July,Wednesday,20,202,0,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,PE,SUPERSPORT 103,RC,10,BLK,185.0,STOLEN,19440,"{'type': 'Point', 'coordinates': (-79.44438004, 43.64064719)}"
-19463,8776,GO-20142820045,THEFT UNDER,2014-08-20T00:00:00,2014,August,Wednesday,20,232,14,2014-09-01T00:00:00,2014,September,Monday,1,244,14,D11,Toronto,88,High Park North (88),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KONA,DOOR PRIDE,OT,1,BLU,850.0,STOLEN,19441,"{'type': 'Point', 'coordinates': (-79.46681135, 43.65722821000001)}"
-19464,568,GO-20179007799,THEFT UNDER - BICYCLE,2017-06-08T00:00:00,2017,June,Thursday,8,159,21,2017-06-09T00:00:00,2017,June,Friday,9,160,18,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,VOYAGER,TO,21,LBL,600.0,STOLEN,19442,"{'type': 'Point', 'coordinates': (-79.46291973000001, 43.66166047000001)}"
-19465,21639,GO-20169003018,THEFT UNDER,2016-04-02T00:00:00,2016,April,Saturday,2,93,12,2016-04-03T00:00:00,2016,April,Sunday,3,94,12,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,UK,FIXIE,RG,30,BLK,450.0,STOLEN,19443,"{'type': 'Point', 'coordinates': (-79.44487118, 43.64997504)}"
-19466,25082,GO-2017814836,THEFT UNDER - BICYCLE,2017-05-09T00:00:00,2017,May,Tuesday,9,129,0,2017-05-09T00:00:00,2017,May,Tuesday,9,129,23,D11,Toronto,88,High Park North (88),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,,OT,1,,600.0,STOLEN,19444,"{'type': 'Point', 'coordinates': (-79.45736924, 43.660099)}"
-19467,25084,GO-20179006307,THEFT UNDER - BICYCLE,2017-05-12T00:00:00,2017,May,Friday,12,132,20,2017-05-13T00:00:00,2017,May,Saturday,13,133,1,D11,Toronto,88,High Park North (88),Ttc Subway Station,Transit,CC,CCM TRAILHEAD D,MT,21,BLU,350.0,STOLEN,19445,"{'type': 'Point', 'coordinates': (-79.4672054, 43.65398145)}"
-19468,25086,GO-20179009291,THEFT UNDER - BICYCLE,2017-06-30T00:00:00,2017,June,Friday,30,181,20,2017-07-02T00:00:00,2017,July,Sunday,2,183,17,D11,Toronto,88,High Park North (88),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,HF,,BM,1,BLU,138.0,STOLEN,19446,"{'type': 'Point', 'coordinates': (-79.4636661, 43.65389971)}"
-19469,25094,GO-20179015597,THEFT UNDER - BICYCLE,2017-09-23T00:00:00,2017,September,Saturday,23,266,22,2017-09-24T00:00:00,2017,September,Sunday,24,267,9,D11,Toronto,88,High Park North (88),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,TO,10,BLU,900.0,STOLEN,19447,"{'type': 'Point', 'coordinates': (-79.46497013, 43.65974857)}"
-19470,25095,GO-20179015597,THEFT UNDER - BICYCLE,2017-09-23T00:00:00,2017,September,Saturday,23,266,22,2017-09-24T00:00:00,2017,September,Sunday,24,267,9,D11,Toronto,88,High Park North (88),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,RG,11,,900.0,STOLEN,19448,"{'type': 'Point', 'coordinates': (-79.46497013, 43.65974857)}"
-19471,25096,GO-20179015597,THEFT UNDER - BICYCLE,2017-09-23T00:00:00,2017,September,Saturday,23,266,22,2017-09-24T00:00:00,2017,September,Sunday,24,267,9,D11,Toronto,88,High Park North (88),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,TO,10,OTH,1400.0,STOLEN,19449,"{'type': 'Point', 'coordinates': (-79.46497013, 43.65974857)}"
-19472,25097,GO-20179015597,THEFT UNDER - BICYCLE,2017-09-23T00:00:00,2017,September,Saturday,23,266,22,2017-09-24T00:00:00,2017,September,Sunday,24,267,9,D11,Toronto,88,High Park North (88),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,TO,11,,1000.0,STOLEN,19450,"{'type': 'Point', 'coordinates': (-79.46497013, 43.65974857)}"
-19473,25105,GO-20179017691,THEFT UNDER,2017-10-15T00:00:00,2017,October,Sunday,15,288,2,2017-10-20T00:00:00,2017,October,Friday,20,293,12,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,TR,EMONDA,TO,21,BLK,1500.0,STOLEN,19451,"{'type': 'Point', 'coordinates': (-79.45364461, 43.65994085)}"
-19474,25109,GO-2018621766,THEFT UNDER,2018-04-05T00:00:00,2018,April,Thursday,5,95,8,2018-04-07T00:00:00,2018,April,Saturday,7,97,9,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,,,SC,0,BLK,700.0,STOLEN,19452,"{'type': 'Point', 'coordinates': (-79.47078458, 43.6625433)}"
-19475,25112,GO-20189013512,THEFT UNDER - BICYCLE,2018-04-24T00:00:00,2018,April,Tuesday,24,114,9,2018-05-02T00:00:00,2018,May,Wednesday,2,122,1,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,21,ONG,250.0,STOLEN,19453,"{'type': 'Point', 'coordinates': (-79.46818422, 43.65633298)}"
-19476,25113,GO-20189015915,THEFT UNDER,2018-05-14T00:00:00,2018,May,Monday,14,134,23,2018-05-23T00:00:00,2018,May,Wednesday,23,143,12,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,NO,MODENA,RC,10,PNK,300.0,STOLEN,19454,"{'type': 'Point', 'coordinates': (-79.4672054, 43.65398145)}"
-19477,25115,GO-20189021565,THEFT UNDER - BICYCLE,2018-07-04T00:00:00,2018,July,Wednesday,4,185,18,2018-07-07T00:00:00,2018,July,Saturday,7,188,19,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,OT,5-SPEED CRUISER,RG,5,BLU,300.0,STOLEN,19455,"{'type': 'Point', 'coordinates': (-79.46390142, 43.65783049)}"
-19478,25126,GO-20189028862,THEFT UNDER - BICYCLE,2018-09-02T00:00:00,2018,September,Sunday,2,245,11,2018-09-02T00:00:00,2018,September,Sunday,2,245,11,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,COMMUTER 2,RG,8,GRY,560.0,STOLEN,19456,"{'type': 'Point', 'coordinates': (-79.45750541, 43.6609544)}"
-19479,25129,GO-20189035037,THEFT UNDER,2018-10-19T00:00:00,2018,October,Friday,19,292,18,2018-10-22T00:00:00,2018,October,Monday,22,295,11,D11,Toronto,88,High Park North (88),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,INDIE 3,RG,21,RED,600.0,STOLEN,19457,"{'type': 'Point', 'coordinates': (-79.4636661, 43.65389971)}"
-19480,25130,GO-20189035337,THEFT UNDER - BICYCLE,2018-10-20T00:00:00,2018,October,Saturday,20,293,11,2018-10-24T00:00:00,2018,October,Wednesday,24,297,11,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,15,BLK,900.0,STOLEN,19458,"{'type': 'Point', 'coordinates': (-79.46525867, 43.65353843)}"
-19481,25131,GO-20189043055,THEFT UNDER - BICYCLE,2018-12-14T00:00:00,2018,December,Friday,14,348,20,2018-12-22T00:00:00,2018,December,Saturday,22,356,21,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,OT,SIRRUS-HYBRID,OT,20,BLK,1000.0,STOLEN,19459,"{'type': 'Point', 'coordinates': (-79.46681135, 43.65722821000001)}"
-19482,3971,GO-20182372463,THEFT UNDER - BICYCLE,2018-09-15T00:00:00,2018,September,Saturday,15,258,12,2018-12-28T00:00:00,2018,December,Friday,28,362,10,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,,MT,21,TRQ,,STOLEN,19460,"{'type': 'Point', 'coordinates': (-79.45584508000002, 43.65264944)}"
-19483,25133,GO-20199001123,THEFT UNDER - BICYCLE,2019-01-08T00:00:00,2019,January,Tuesday,8,8,20,2019-01-09T00:00:00,2019,January,Wednesday,9,9,22,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,KO,PADDY WAGON,RG,1,BLK,800.0,STOLEN,19461,"{'type': 'Point', 'coordinates': (-79.45685392, 43.65539614)}"
-19484,25144,GO-20191274790,THEFT UNDER - BICYCLE,2019-07-08T00:00:00,2019,July,Monday,8,189,8,2019-07-08T00:00:00,2019,July,Monday,8,189,18,D11,Toronto,88,High Park North (88),"Private Property Structure (Pool, Shed, Detached Garage)",Other,FELT,VERZA 10,OT,10,BLKBLU,1250.0,STOLEN,19462,"{'type': 'Point', 'coordinates': (-79.46820621, 43.66049477)}"
-19485,25145,GO-20191274790,THEFT UNDER - BICYCLE,2019-07-08T00:00:00,2019,July,Monday,8,189,8,2019-07-08T00:00:00,2019,July,Monday,8,189,18,D11,Toronto,88,High Park North (88),"Private Property Structure (Pool, Shed, Detached Garage)",Other,LOUIS GARNEAU,,OT,12,SIL,600.0,STOLEN,19463,"{'type': 'Point', 'coordinates': (-79.46820621, 43.66049477)}"
-19486,25148,GO-20199025562,THEFT UNDER,2019-06-01T00:00:00,2019,June,Saturday,1,152,0,2019-08-09T00:00:00,2019,August,Friday,9,221,17,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,OT,SIRRUS SPORT XL,OT,27,GRY,800.0,STOLEN,19464,"{'type': 'Point', 'coordinates': (-79.46681135, 43.65722821000001)}"
-19487,25151,GO-20199026103,THEFT UNDER,2019-08-13T00:00:00,2019,August,Tuesday,13,225,17,2019-08-13T00:00:00,2019,August,Tuesday,13,225,20,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,18,OTH,250.0,STOLEN,19465,"{'type': 'Point', 'coordinates': (-79.45907862, 43.65878854)}"
-19488,25152,GO-20199026103,THEFT UNDER,2019-08-13T00:00:00,2019,August,Tuesday,13,225,17,2019-08-13T00:00:00,2019,August,Tuesday,13,225,20,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,NEON ATB,MT,6,BLK,360.0,STOLEN,19466,"{'type': 'Point', 'coordinates': (-79.45907862, 43.65878854)}"
-19489,25153,GO-20199026103,THEFT UNDER,2019-08-13T00:00:00,2019,August,Tuesday,13,225,17,2019-08-13T00:00:00,2019,August,Tuesday,13,225,20,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,PRECALIBER 24 2,MT,21,LGR,440.0,STOLEN,19467,"{'type': 'Point', 'coordinates': (-79.45907862, 43.65878854)}"
-19490,25158,GO-20199032124,THEFT UNDER,2019-09-30T00:00:00,2019,September,Monday,30,273,14,2019-09-30T00:00:00,2019,September,Monday,30,273,20,D11,Toronto,88,High Park North (88),Schools During Un-Supervised Activity,Educational,OT,,MT,10,RED,200.0,STOLEN,19468,"{'type': 'Point', 'coordinates': (-79.47137179, 43.66030453)}"
-19491,25159,GO-20191893235,THEFT UNDER,2019-08-04T00:00:00,2019,August,Sunday,4,216,12,2019-10-01T00:00:00,2019,October,Tuesday,1,274,19,D11,Toronto,88,High Park North (88),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,DS-8.4,MT,21,BLK,2000.0,STOLEN,19469,"{'type': 'Point', 'coordinates': (-79.46525867, 43.65353843)}"
-19492,25172,GO-2020747760,THEFT UNDER,2020-04-16T00:00:00,2020,April,Thursday,16,107,12,2020-04-19T00:00:00,2020,April,Sunday,19,110,9,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FELT,VERZA 30,OT,18,GRY,1500.0,STOLEN,19470,"{'type': 'Point', 'coordinates': (-79.46596023, 43.65934643)}"
-19493,25173,GO-2020747760,THEFT UNDER,2020-04-16T00:00:00,2020,April,Thursday,16,107,12,2020-04-19T00:00:00,2020,April,Sunday,19,110,9,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FELT,55X,OT,9,GRY,2500.0,STOLEN,19471,"{'type': 'Point', 'coordinates': (-79.46596023, 43.65934643)}"
-19494,25381,GO-20209019018,THEFT UNDER,2020-07-30T00:00:00,2020,July,Thursday,30,212,14,2020-07-30T00:00:00,2020,July,Thursday,30,212,18,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ALLEZ,RC,20,,1500.0,STOLEN,19472,"{'type': 'Point', 'coordinates': (-79.45750541, 43.6609544)}"
-19495,268,GO-20179005141,THEFT UNDER - BICYCLE,2017-04-13T00:00:00,2017,April,Thursday,13,103,17,2017-04-23T00:00:00,2017,April,Sunday,23,113,18,D11,Toronto,89,Runnymede-Bloor West Village (89),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,SR 500,RC,21,BLU,550.0,STOLEN,19473,"{'type': 'Point', 'coordinates': (-79.48850198, 43.66564235)}"
-19496,404,GO-2017868554,THEFT UNDER - BICYCLE,2017-05-16T00:00:00,2017,May,Tuesday,16,136,18,2017-05-17T00:00:00,2017,May,Wednesday,17,137,13,D11,Toronto,89,Runnymede-Bloor West Village (89),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BREEZER,DOWNTOWN,OT,1,GRN,621.0,STOLEN,19474,"{'type': 'Point', 'coordinates': (-79.48845937, 43.65913914)}"
-19497,405,GO-2017868554,THEFT UNDER - BICYCLE,2017-05-16T00:00:00,2017,May,Tuesday,16,136,18,2017-05-17T00:00:00,2017,May,Wednesday,17,137,13,D11,Toronto,89,Runnymede-Bloor West Village (89),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BREEZER,DOWNTOWN,OT,1,OTH,722.0,STOLEN,19475,"{'type': 'Point', 'coordinates': (-79.48845937, 43.65913914)}"
-19498,14886,GO-20209018410,THEFT UNDER,2020-07-24T00:00:00,2020,July,Friday,24,206,9,2020-07-24T00:00:00,2020,July,Friday,24,206,9,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,MT,18,BLK,900.0,STOLEN,19550,"{'type': 'Point', 'coordinates': (-79.44182746, 43.64210107)}"
-19499,438,GO-2017901805,THEFT UNDER,2017-05-20T00:00:00,2017,May,Saturday,20,140,12,2017-05-22T00:00:00,2017,May,Monday,22,142,18,D11,Toronto,89,Runnymede-Bloor West Village (89),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,STEALTH GENESIS,MT,0,BLK,500.0,STOLEN,19476,"{'type': 'Point', 'coordinates': (-79.49049047, 43.66411915)}"
-19500,487,GO-20179007101,THEFT UNDER,2017-05-27T00:00:00,2017,May,Saturday,27,147,9,2017-05-28T00:00:00,2017,May,Sunday,28,148,10,D11,Toronto,89,Runnymede-Bloor West Village (89),Ttc Subway Station,Transit,OT,,RG,7,DGR,1050.0,STOLEN,19477,"{'type': 'Point', 'coordinates': (-79.48444470000001, 43.64933139)}"
-19501,1303,GO-20179013961,THEFT UNDER,2017-08-30T00:00:00,2017,August,Wednesday,30,242,17,2017-09-04T00:00:00,2017,September,Monday,4,247,17,D11,Toronto,89,Runnymede-Bloor West Village (89),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,HYDRA 700C,RG,24,BLK,500.0,STOLEN,19478,"{'type': 'Point', 'coordinates': (-79.48205065, 43.6576136)}"
-19502,1304,GO-20179013961,THEFT UNDER,2017-08-30T00:00:00,2017,August,Wednesday,30,242,17,2017-09-04T00:00:00,2017,September,Monday,4,247,17,D11,Toronto,89,Runnymede-Bloor West Village (89),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,X1,EL,2,BLK,400.0,STOLEN,19479,"{'type': 'Point', 'coordinates': (-79.48205065, 43.6576136)}"
-19503,1344,GO-20171634821,THEFT UNDER - BICYCLE,2017-09-09T00:00:00,2017,September,Saturday,9,252,12,2017-09-09T00:00:00,2017,September,Saturday,9,252,15,D11,Toronto,89,Runnymede-Bloor West Village (89),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RALEIGH,TECHNIUM,MT,30,SIL,500.0,STOLEN,19480,"{'type': 'Point', 'coordinates': (-79.48253637, 43.65949496)}"
-19504,1390,GO-20179014640,THEFT UNDER - BICYCLE,2017-09-12T00:00:00,2017,September,Tuesday,12,255,14,2017-09-13T00:00:00,2017,September,Wednesday,13,256,12,D11,Toronto,89,Runnymede-Bloor West Village (89),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RA,SPORT,RG,10,BLU,450.0,STOLEN,19481,"{'type': 'Point', 'coordinates': (-79.49515181, 43.66572764)}"
-19505,1412,GO-20179014816,THEFT UNDER - BICYCLE,2017-09-15T00:00:00,2017,September,Friday,15,258,8,2017-09-15T00:00:00,2017,September,Friday,15,258,9,D11,Toronto,89,Runnymede-Bloor West Village (89),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,MT,18,SIL,2000.0,STOLEN,19482,"{'type': 'Point', 'coordinates': (-79.48134552, 43.65975811)}"
-19506,1413,GO-20179014816,THEFT UNDER - BICYCLE,2017-09-15T00:00:00,2017,September,Friday,15,258,8,2017-09-15T00:00:00,2017,September,Friday,15,258,9,D11,Toronto,89,Runnymede-Bloor West Village (89),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,,MT,18,RED,1000.0,STOLEN,19483,"{'type': 'Point', 'coordinates': (-79.48134552, 43.65975811)}"
-19507,1509,GO-20179015633,THEFT UNDER - BICYCLE,2017-09-24T00:00:00,2017,September,Sunday,24,267,8,2017-09-24T00:00:00,2017,September,Sunday,24,267,22,D11,Toronto,89,Runnymede-Bloor West Village (89),Bar / Restaurant,Commercial,MA,,TO,24,BLU,500.0,STOLEN,19484,"{'type': 'Point', 'coordinates': (-79.48292971, 43.64968878)}"
-19508,1793,GO-20171992584,THEFT UNDER - BICYCLE,2017-10-31T00:00:00,2017,October,Tuesday,31,304,9,2017-11-03T00:00:00,2017,November,Friday,3,307,16,D11,Toronto,89,Runnymede-Bloor West Village (89),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,OT,3,BLK,,STOLEN,19485,"{'type': 'Point', 'coordinates': (-79.48707309, 43.65574015)}"
-19509,2316,GO-20189015015,THEFT UNDER - BICYCLE,2018-05-15T00:00:00,2018,May,Tuesday,15,135,8,2018-05-15T00:00:00,2018,May,Tuesday,15,135,11,D11,Toronto,89,Runnymede-Bloor West Village (89),Convenience Stores,Commercial,OT,DUTCHI,TO,3,TRQ,1000.0,STOLEN,19486,"{'type': 'Point', 'coordinates': (-79.47904501, 43.65050275)}"
-19510,3574,GO-20181807430,THEFT UNDER - BICYCLE,2018-09-28T00:00:00,2018,September,Friday,28,271,22,2018-09-30T00:00:00,2018,September,Sunday,30,273,9,D11,Toronto,89,Runnymede-Bloor West Village (89),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DIAMOND BACK,OVER DRIVE,MT,28,BLU,700.0,STOLEN,19487,"{'type': 'Point', 'coordinates': (-79.4881975, 43.6623063)}"
-19511,3708,GO-20189034352,THEFT UNDER - BICYCLE,2018-10-16T00:00:00,2018,October,Tuesday,16,289,10,2018-10-16T00:00:00,2018,October,Tuesday,16,289,20,D11,Toronto,89,Runnymede-Bloor West Village (89),"Apartment (Rooming House, Condo)",Apartment,RA,KODIAC 2 2016,MT,20,LBL,2500.0,STOLEN,19488,"{'type': 'Point', 'coordinates': (-79.48134552, 43.65975811)}"
-19512,4101,GO-2019508333,THEFT FROM MOTOR VEHICLE UNDER,2019-03-18T00:00:00,2019,March,Monday,18,77,17,2019-03-20T00:00:00,2019,March,Wednesday,20,79,21,D11,Toronto,89,Runnymede-Bloor West Village (89),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KONA,,MT,86,,800.0,STOLEN,19489,"{'type': 'Point', 'coordinates': (-79.48637758, 43.66171658)}"
-19513,4208,GO-2019755015,THEFT UNDER,2019-04-26T00:00:00,2019,April,Friday,26,116,19,2019-04-26T00:00:00,2019,April,Friday,26,116,23,D11,Toronto,89,Runnymede-Bloor West Village (89),"Apartment (Rooming House, Condo)",Apartment,OTHER,,MT,7,BLK,200.0,STOLEN,19490,"{'type': 'Point', 'coordinates': (-79.47997699, 43.66006104)}"
-19514,5050,GO-20191529369,THEFT UNDER,2019-08-08T00:00:00,2019,August,Thursday,8,220,18,2019-08-12T00:00:00,2019,August,Monday,12,224,18,D11,Toronto,89,Runnymede-Bloor West Village (89),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KHS,,MT,7,GRNBLU,130.0,STOLEN,19491,"{'type': 'Point', 'coordinates': (-79.48956104, 43.66565894)}"
-19515,5238,GO-20191691740,PROPERTY - FOUND,2019-09-04T00:00:00,2019,September,Wednesday,4,247,15,2019-09-05T00:00:00,2019,September,Thursday,5,248,20,D11,Toronto,89,Runnymede-Bloor West Village (89),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,ALLANT,,RG,5,BLACK&,,RECOVERED,19492,"{'type': 'Point', 'coordinates': (-79.48206778, 43.66558006)}"
-19516,5456,GO-20199032379,THEFT UNDER,2019-10-02T00:00:00,2019,October,Wednesday,2,275,13,2019-10-02T00:00:00,2019,October,Wednesday,2,275,15,D11,Toronto,89,Runnymede-Bloor West Village (89),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RA,VINTAGE,RG,10,OTH,500.0,STOLEN,19493,"{'type': 'Point', 'coordinates': (-79.49515181, 43.66572764)}"
-19517,6089,GO-2020765669,B&E,2020-04-10T00:00:00,2020,April,Friday,10,101,22,2020-04-22T00:00:00,2020,April,Wednesday,22,113,10,D11,Toronto,89,Runnymede-Bloor West Village (89),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,RG,3,,800.0,STOLEN,19494,"{'type': 'Point', 'coordinates': (-79.49158252, 43.6630085)}"
-19518,6852,GO-20209019247,THEFT UNDER,2020-08-02T00:00:00,2020,August,Sunday,2,215,21,2020-08-03T00:00:00,2020,August,Monday,3,216,9,D11,Toronto,89,Runnymede-Bloor West Village (89),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,URBANIA,OT,27,BLK,565.0,STOLEN,19495,"{'type': 'Point', 'coordinates': (-79.47812369, 43.65070914)}"
-19519,6862,GO-20201448024,THEFT UNDER,2020-08-03T00:00:00,2020,August,Monday,3,216,15,2020-08-03T00:00:00,2020,August,Monday,3,216,17,D11,Toronto,89,Runnymede-Bloor West Village (89),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MARK GARNEAU,,RG,18,BLK,450.0,STOLEN,19496,"{'type': 'Point', 'coordinates': (-79.48478393, 43.65015823)}"
-19520,6966,GO-20201517225,THEFT UNDER - BICYCLE,2020-08-10T00:00:00,2020,August,Monday,10,223,15,2020-08-13T00:00:00,2020,August,Thursday,13,226,14,D11,Toronto,89,Runnymede-Bloor West Village (89),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,MT,21,BLK,450.0,STOLEN,19497,"{'type': 'Point', 'coordinates': (-79.48206778, 43.66558006)}"
-19521,7112,GO-20209021639,THEFT UNDER,2020-08-20T00:00:00,2020,August,Thursday,20,233,0,2020-08-28T00:00:00,2020,August,Friday,28,241,16,D11,Toronto,89,Runnymede-Bloor West Village (89),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,INDIE4,RG,14,BLK,800.0,STOLEN,19498,"{'type': 'Point', 'coordinates': (-79.48601157, 43.65869369)}"
-19522,7925,GO-20142084804,B&E,2014-05-15T00:00:00,2014,May,Thursday,15,135,14,2014-05-15T00:00:00,2014,May,Thursday,15,135,14,D11,Toronto,89,Runnymede-Bloor West Village (89),"Single Home, House (Attach Garage, Cottage, Mobile)",House,JAMIS,HYBRID,MT,30,GRY,1000.0,STOLEN,19499,"{'type': 'Point', 'coordinates': (-79.49328031000002, 43.66118667)}"
-19523,8028,GO-20142210215,THEFT UNDER,2014-06-02T00:00:00,2014,June,Monday,2,153,23,2014-06-03T00:00:00,2014,June,Tuesday,3,154,8,D11,Toronto,89,Runnymede-Bloor West Village (89),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RALEIGH,,OT,5,GRNBLK,275.0,UNKNOWN,19500,"{'type': 'Point', 'coordinates': (-79.48134552, 43.65975811)}"
-19524,8029,GO-20142210215,THEFT UNDER,2014-06-02T00:00:00,2014,June,Monday,2,153,23,2014-06-03T00:00:00,2014,June,Tuesday,3,154,8,D11,Toronto,89,Runnymede-Bloor West Village (89),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,HYBRID,MT,3,BLKONG,100.0,STOLEN,19501,"{'type': 'Point', 'coordinates': (-79.48134552, 43.65975811)}"
-19525,8030,GO-20142210215,THEFT UNDER,2014-06-02T00:00:00,2014,June,Monday,2,153,23,2014-06-03T00:00:00,2014,June,Tuesday,3,154,8,D11,Toronto,89,Runnymede-Bloor West Village (89),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,,MT,5,BLKBLU,100.0,STOLEN,19502,"{'type': 'Point', 'coordinates': (-79.48134552, 43.65975811)}"
-19526,8522,GO-20149005359,THEFT UNDER,2014-07-25T00:00:00,2014,July,Friday,25,206,19,2014-07-26T00:00:00,2014,July,Saturday,26,207,20,D11,Toronto,89,Runnymede-Bloor West Village (89),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,OT,1,BLK,500.0,STOLEN,19503,"{'type': 'Point', 'coordinates': (-79.47776155, 43.65476433)}"
-19527,8952,GO-20142949283,B&E,2014-09-20T00:00:00,2014,September,Saturday,20,263,13,2014-09-20T00:00:00,2014,September,Saturday,20,263,18,D11,Toronto,89,Runnymede-Bloor West Village (89),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BIANCHI,,MT,15,BLU,600.0,STOLEN,19504,"{'type': 'Point', 'coordinates': (-79.47997699, 43.66006104)}"
-19528,4292,GO-2019897742,THEFT UNDER,2019-05-16T00:00:00,2019,May,Thursday,16,136,22,2019-05-17T00:00:00,2019,May,Friday,17,137,9,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,GIANT,,MT,27,BLK,764.0,STOLEN,19559,"{'type': 'Point', 'coordinates': (-79.47183044, 43.63786184)}"
-19529,9104,GO-20149007780,THEFT UNDER,2014-10-23T00:00:00,2014,October,Thursday,23,296,12,2014-10-23T00:00:00,2014,October,Thursday,23,296,19,D11,Toronto,89,Runnymede-Bloor West Village (89),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,40TH ANNIVERSAR,OT,5,RED,600.0,STOLEN,19505,"{'type': 'Point', 'coordinates': (-79.48043106, 43.65020664)}"
-19530,9357,GO-20159001631,THEFT UNDER,2015-03-26T00:00:00,2015,March,Thursday,26,85,17,2015-03-30T00:00:00,2015,March,Monday,30,89,14,D11,Toronto,89,Runnymede-Bloor West Village (89),Bar / Restaurant,Commercial,UK,TOURING,TO,27,GRN,1500.0,STOLEN,19506,"{'type': 'Point', 'coordinates': (-79.48477942, 43.66561293000001)}"
-19531,9370,GO-20159001715,THEFT UNDER,2015-04-02T00:00:00,2015,April,Thursday,2,92,3,2015-04-02T00:00:00,2015,April,Thursday,2,92,11,D11,Toronto,89,Runnymede-Bloor West Village (89),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,PELLOTON 8000,RC,10,YEL,1000.0,STOLEN,19507,"{'type': 'Point', 'coordinates': (-79.48206778, 43.66558006)}"
-19532,9405,GO-20159001929,THEFT UNDER,2015-04-14T00:00:00,2015,April,Tuesday,14,104,21,2015-04-14T00:00:00,2015,April,Tuesday,14,104,23,D11,Toronto,89,Runnymede-Bloor West Village (89),Convenience Stores,Commercial,UK,CRUISER,OT,1,LGR,450.0,UNKNOWN,19508,"{'type': 'Point', 'coordinates': (-79.49515181, 43.66572764)}"
-19533,9722,GO-2015930778,THEFT UNDER,2015-06-02T00:00:00,2015,June,Tuesday,2,153,23,2015-06-03T00:00:00,2015,June,Wednesday,3,154,18,D11,Toronto,89,Runnymede-Bloor West Village (89),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,ROAD BIKE,OT,0,BLK,750.0,STOLEN,19509,"{'type': 'Point', 'coordinates': (-79.48054015, 43.6590395)}"
-19534,9944,GO-20159004177,THEFT UNDER,2015-07-05T00:00:00,2015,July,Sunday,5,186,19,2015-07-05T00:00:00,2015,July,Sunday,5,186,20,D11,Toronto,89,Runnymede-Bloor West Village (89),Convenience Stores,Commercial,RA,TECHNIUM,MT,21,WHI,1200.0,STOLEN,19510,"{'type': 'Point', 'coordinates': (-79.48588632, 43.66562960000001)}"
-19535,10359,GO-20159006471,THEFT UNDER,2015-08-28T00:00:00,2015,August,Friday,28,240,17,2015-08-28T00:00:00,2015,August,Friday,28,240,19,D11,Toronto,89,Runnymede-Bloor West Village (89),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,CLASSICO,RG,7,BLK,400.0,STOLEN,19511,"{'type': 'Point', 'coordinates': (-79.49259486, 43.65964387)}"
-19536,11460,GO-2016829777,B&E,2016-05-13T00:00:00,2016,May,Friday,13,134,23,2016-05-14T00:00:00,2016,May,Saturday,14,135,14,D11,Toronto,89,Runnymede-Bloor West Village (89),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,K2,MT,24,BLKONG,1000.0,STOLEN,19512,"{'type': 'Point', 'coordinates': (-79.49328031000002, 43.66118667)}"
-19537,11461,GO-2016829777,B&E,2016-05-13T00:00:00,2016,May,Friday,13,134,23,2016-05-14T00:00:00,2016,May,Saturday,14,135,14,D11,Toronto,89,Runnymede-Bloor West Village (89),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,PINOLO,MT,24,BLUYEL,,STOLEN,19513,"{'type': 'Point', 'coordinates': (-79.49328031000002, 43.66118667)}"
-19538,12448,GO-20161706865,THEFT UNDER - BICYCLE,2016-09-22T00:00:00,2016,September,Thursday,22,266,16,2016-09-25T00:00:00,2016,September,Sunday,25,269,15,D11,Toronto,89,Runnymede-Bloor West Village (89),"Single Home, House (Attach Garage, Cottage, Mobile)",House,JAMIS,TRAIL X-650,OT,24,SIL,400.0,STOLEN,19514,"{'type': 'Point', 'coordinates': (-79.48601096, 43.66077493)}"
-19539,12472,GO-20169011193,THEFT UNDER - BICYCLE,2016-09-12T00:00:00,2016,September,Monday,12,256,20,2016-09-27T00:00:00,2016,September,Tuesday,27,271,16,D11,Toronto,89,Runnymede-Bloor West Village (89),"Apartment (Rooming House, Condo)",Apartment,OT,GRAND RAPID,BM,21,GRY,450.0,STOLEN,19515,"{'type': 'Point', 'coordinates': (-79.48707627, 43.65847912)}"
-19540,12711,GO-20169012885,THEFT UNDER,2016-11-01T00:00:00,2016,November,Tuesday,1,306,22,2016-11-02T00:00:00,2016,November,Wednesday,2,307,10,D11,Toronto,89,Runnymede-Bloor West Village (89),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,,MT,10,GLD,200.0,STOLEN,19516,"{'type': 'Point', 'coordinates': (-79.48707627, 43.65847912)}"
-19541,15052,GO-20142192816,THEFT UNDER,2014-05-30T00:00:00,2014,May,Friday,30,150,18,2014-05-31T00:00:00,2014,May,Saturday,31,151,18,D11,Toronto,89,Runnymede-Bloor West Village (89),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MIELE,TUSCAN,OT,10,LBL,350.0,STOLEN,19517,"{'type': 'Point', 'coordinates': (-79.48067923, 43.66222548)}"
-19542,15053,GO-20142197214,THEFT UNDER,2014-05-29T00:00:00,2014,May,Thursday,29,149,22,2014-06-01T00:00:00,2014,June,Sunday,1,152,11,D11,Toronto,89,Runnymede-Bloor West Village (89),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECILIZED,,MT,4,BLU,800.0,STOLEN,19518,"{'type': 'Point', 'coordinates': (-79.48389906, 43.66325847)}"
-19543,15066,GO-20149005372,THEFT UNDER,2014-07-13T00:00:00,2014,July,Sunday,13,194,21,2014-07-27T00:00:00,2014,July,Sunday,27,208,11,D11,Toronto,89,Runnymede-Bloor West Village (89),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,CROSSROADS,TO,24,MRN,1000.0,STOLEN,19519,"{'type': 'Point', 'coordinates': (-79.47719449, 43.65091247)}"
-19544,15076,GO-20143187741,B&E W'INTENT,2014-10-26T00:00:00,2014,October,Sunday,26,299,20,2014-10-27T00:00:00,2014,October,Monday,27,300,19,D11,Toronto,89,Runnymede-Bloor West Village (89),"Private Property Structure (Pool, Shed, Detached Garage)",Other,FREE SPIRIT,,OT,5,WHI,125.0,STOLEN,19520,"{'type': 'Point', 'coordinates': (-79.48104101, 43.65783388)}"
-19545,15094,GO-20151240296,THEFT UNDER,2015-06-30T00:00:00,2015,June,Tuesday,30,181,1,2015-07-21T00:00:00,2015,July,Tuesday,21,202,7,D11,Toronto,89,Runnymede-Bloor West Village (89),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,RG,1,BLK,300.0,STOLEN,19521,"{'type': 'Point', 'coordinates': (-79.48707309, 43.65574015)}"
-19546,15095,GO-20151240296,THEFT UNDER,2015-06-30T00:00:00,2015,June,Tuesday,30,181,1,2015-07-21T00:00:00,2015,July,Tuesday,21,202,7,D11,Toronto,89,Runnymede-Bloor West Village (89),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,RC,21,YEL,250.0,STOLEN,19522,"{'type': 'Point', 'coordinates': (-79.48707309, 43.65574015)}"
-19547,15096,GO-20151240296,THEFT UNDER,2015-06-30T00:00:00,2015,June,Tuesday,30,181,1,2015-07-21T00:00:00,2015,July,Tuesday,21,202,7,D11,Toronto,89,Runnymede-Bloor West Village (89),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MONGOOSE,,RG,21,MRN,100.0,STOLEN,19523,"{'type': 'Point', 'coordinates': (-79.48707309, 43.65574015)}"
-19548,15103,GO-20151619854,THEFT UNDER,2015-09-19T00:00:00,2015,September,Saturday,19,262,20,2015-09-19T00:00:00,2015,September,Saturday,19,262,20,D11,Toronto,89,Runnymede-Bloor West Village (89),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,URBANITE,,MT,24,,,STOLEN,19524,"{'type': 'Point', 'coordinates': (-79.48043106, 43.65020664)}"
-19549,15130,GO-20169008333,THEFT UNDER,2016-08-03T00:00:00,2016,August,Wednesday,3,216,19,2016-08-07T00:00:00,2016,August,Sunday,7,220,11,D11,Toronto,89,Runnymede-Bloor West Village (89),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,PAVE LITE AQUIL,RG,18,GRY,900.0,STOLEN,19525,"{'type': 'Point', 'coordinates': (-79.48665675, 43.65470067)}"
-19550,15141,GO-20161641995,THEFT UNDER - BICYCLE,2016-09-15T00:00:00,2016,September,Thursday,15,259,13,2016-09-15T00:00:00,2016,September,Thursday,15,259,14,D11,Toronto,89,Runnymede-Bloor West Village (89),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,FIX GEAR,OT,1,BLK,450.0,STOLEN,19526,"{'type': 'Point', 'coordinates': (-79.48477942, 43.66561293000001)}"
-19551,15147,GO-20161790689,THEFT UNDER - BICYCLE,2016-10-07T00:00:00,2016,October,Friday,7,281,18,2016-10-08T00:00:00,2016,October,Saturday,8,282,14,D11,Toronto,89,Runnymede-Bloor West Village (89),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,,RG,1,WHI,500.0,STOLEN,19527,"{'type': 'Point', 'coordinates': (-79.47776155, 43.65476433)}"
-19552,15157,GO-20169014364,THEFT UNDER,2016-12-07T00:00:00,2016,December,Wednesday,7,342,15,2016-12-07T00:00:00,2016,December,Wednesday,7,342,22,D11,Toronto,89,Runnymede-Bloor West Village (89),Ttc Subway Station,Transit,OT,SILHOUETTE 2015,RG,21,,1000.0,STOLEN,19528,"{'type': 'Point', 'coordinates': (-79.48478393, 43.65015823)}"
-19553,15158,GO-20179001333,THEFT UNDER,2016-12-13T00:00:00,2016,December,Tuesday,13,348,21,2017-01-30T00:00:00,2017,January,Monday,30,30,13,D11,Toronto,89,Runnymede-Bloor West Village (89),Schools During Un-Supervised Activity,Educational,OT,COLUMBUS SL,RC,11,LBL,6000.0,STOLEN,19529,"{'type': 'Point', 'coordinates': (-79.48753772, 43.66327315)}"
-19554,15180,GO-20179009765,THEFT UNDER - BICYCLE,2017-07-09T00:00:00,2017,July,Sunday,9,190,0,2017-07-09T00:00:00,2017,July,Sunday,9,190,13,D11,Toronto,89,Runnymede-Bloor West Village (89),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,RG,15,BLU,800.0,STOLEN,19530,"{'type': 'Point', 'coordinates': (-79.48602525, 43.65599048)}"
-19555,15183,GO-20171321592,THEFT UNDER,2017-07-22T00:00:00,2017,July,Saturday,22,203,2,2017-07-23T00:00:00,2017,July,Sunday,23,204,11,D11,Toronto,89,Runnymede-Bloor West Village (89),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SCHWINN,LEISURE BIKE,OT,10,,200.0,STOLEN,19531,"{'type': 'Point', 'coordinates': (-79.48707627, 43.65847912)}"
-19556,15184,GO-20171321592,THEFT UNDER,2017-07-22T00:00:00,2017,July,Saturday,22,203,2,2017-07-23T00:00:00,2017,July,Sunday,23,204,11,D11,Toronto,89,Runnymede-Bloor West Village (89),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MARIN OR MARINO,,OT,10,,500.0,STOLEN,19532,"{'type': 'Point', 'coordinates': (-79.48707627, 43.65847912)}"
-19557,15185,GO-20171321592,THEFT UNDER,2017-07-22T00:00:00,2017,July,Saturday,22,203,2,2017-07-23T00:00:00,2017,July,Sunday,23,204,11,D11,Toronto,89,Runnymede-Bloor West Village (89),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MARIN OR MARINO,,OT,10,,500.0,STOLEN,19533,"{'type': 'Point', 'coordinates': (-79.48707627, 43.65847912)}"
-19558,15216,GO-20189012305,THEFT UNDER - BICYCLE,2018-04-09T00:00:00,2018,April,Monday,9,99,17,2018-04-20T00:00:00,2018,April,Friday,20,110,20,D11,Toronto,89,Runnymede-Bloor West Village (89),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,CROSS TRAILE EL,RG,21,BLK,850.0,STOLEN,19534,"{'type': 'Point', 'coordinates': (-79.48545485, 43.66453125)}"
-19559,15243,GO-20189034352,THEFT UNDER - BICYCLE,2018-10-16T00:00:00,2018,October,Tuesday,16,289,10,2018-10-16T00:00:00,2018,October,Tuesday,16,289,20,D11,Toronto,89,Runnymede-Bloor West Village (89),"Apartment (Rooming House, Condo)",Apartment,RA,KODIAK 2 2016,MT,20,LBL,4500.0,STOLEN,19535,"{'type': 'Point', 'coordinates': (-79.48134552, 43.65975811)}"
-19560,600,GO-20171050351,THEFT UNDER - BICYCLE,2017-06-12T00:00:00,2017,June,Monday,12,163,13,2017-06-13T00:00:00,2017,June,Tuesday,13,164,14,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,LOUIS GARNEAU,AXIS SL4,RC,10,BLKRED,800.0,STOLEN,19536,"{'type': 'Point', 'coordinates': (-79.45470926, 43.659712)}"
-19561,8791,GO-20142833171,THEFT UNDER,2014-08-31T00:00:00,2014,August,Sunday,31,243,14,2014-09-03T00:00:00,2014,September,Wednesday,3,246,11,D11,Toronto,88,High Park North (88),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NEXT,BREAK POINT,MT,21,RED,0.0,STOLEN,19537,"{'type': 'Point', 'coordinates': (-79.45419292, 43.66073739)}"
-19562,12606,GO-20161820540,THEFT UNDER - BICYCLE,2016-10-12T00:00:00,2016,October,Wednesday,12,286,11,2016-10-13T00:00:00,2016,October,Thursday,13,287,11,D11,Toronto,86,Roncesvalles (86),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,MT,18,YELBLU,500.0,STOLEN,19538,"{'type': 'Point', 'coordinates': (-79.43622501, 43.6429624)}"
-19563,21650,GO-20161268043,SUSPICIOUS INCIDENT,2016-07-19T00:00:00,2016,July,Tuesday,19,201,16,2016-07-19T00:00:00,2016,July,Tuesday,19,201,18,D11,Toronto,86,Roncesvalles (86),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MACNEIL,,BM,1,LBL,500.0,UNKNOWN,19539,"{'type': 'Point', 'coordinates': (-79.4404727, 43.64707447)}"
-19564,12663,GO-20161878862,THEFT UNDER - BICYCLE,2016-10-21T00:00:00,2016,October,Friday,21,295,22,2016-10-22T00:00:00,2016,October,Saturday,22,296,12,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,RG,3,RED,250.0,STOLEN,19540,"{'type': 'Point', 'coordinates': (-79.44316873, 43.64559668)}"
-19565,8911,GO-20142922595,THEFT UNDER,2014-09-16T00:00:00,2014,September,Tuesday,16,259,1,2014-09-16T00:00:00,2014,September,Tuesday,16,259,17,D11,Toronto,88,High Park North (88),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,GLOBE - DAILY 1,MT,3,BLK,,STOLEN,19549,"{'type': 'Point', 'coordinates': (-79.45685392, 43.65539614)}"
-19566,3972,GO-20182372463,THEFT UNDER - BICYCLE,2018-09-15T00:00:00,2018,September,Saturday,15,258,12,2018-12-28T00:00:00,2018,December,Friday,28,362,10,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,,OT,21,PLE,,STOLEN,19541,"{'type': 'Point', 'coordinates': (-79.45584508000002, 43.65264944)}"
-19567,767,GO-20179009367,THEFT UNDER,2017-07-03T00:00:00,2017,July,Monday,3,184,22,2017-07-04T00:00:00,2017,July,Tuesday,4,185,9,D11,Toronto,88,High Park North (88),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,,TO,21,LGR,700.0,STOLEN,19542,"{'type': 'Point', 'coordinates': (-79.4672054, 43.65398145)}"
-19568,8898,GO-20149006931,THEFT UNDER,2014-09-04T00:00:00,2014,September,Thursday,4,247,17,2014-09-15T00:00:00,2014,September,Monday,15,258,23,D11,Toronto,88,High Park North (88),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,,MT,21,GRY,2400.0,STOLEN,19543,"{'type': 'Point', 'coordinates': (-79.45685392, 43.65539614)}"
-19569,14885,GO-20209018410,THEFT UNDER,2020-07-24T00:00:00,2020,July,Friday,24,206,9,2020-07-24T00:00:00,2020,July,Friday,24,206,9,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,PAVE LITE,TO,18,BLK,1976.0,STOLEN,19544,"{'type': 'Point', 'coordinates': (-79.44182746, 43.64210107)}"
-19570,3973,GO-20182372463,THEFT UNDER - BICYCLE,2018-09-15T00:00:00,2018,September,Saturday,15,258,12,2018-12-28T00:00:00,2018,December,Friday,28,362,10,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,,MT,21,ONG,,STOLEN,19545,"{'type': 'Point', 'coordinates': (-79.45584508000002, 43.65264944)}"
-19571,775,GO-20179009410,THEFT UNDER,2017-06-25T00:00:00,2017,June,Sunday,25,176,16,2017-07-04T00:00:00,2017,July,Tuesday,4,185,16,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,16,BLK,0.0,STOLEN,19546,"{'type': 'Point', 'coordinates': (-79.45585147, 43.65946376)}"
-19572,21679,GO-20179010313,THEFT UNDER - BICYCLE,2017-07-12T00:00:00,2017,July,Wednesday,12,193,1,2017-07-16T00:00:00,2017,July,Sunday,16,197,2,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,CITY GLIDE,RG,3,WHI,575.0,STOLEN,19547,"{'type': 'Point', 'coordinates': (-79.44637474, 43.6395159)}"
-19573,799,GO-20179009675,THEFT UNDER - BICYCLE,2017-07-06T00:00:00,2017,July,Thursday,6,187,20,2017-07-07T00:00:00,2017,July,Friday,7,188,22,D11,Toronto,88,High Park North (88),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,,OT,15,SIL,600.0,STOLEN,19548,"{'type': 'Point', 'coordinates': (-79.47311333, 43.65576241)}"
-19574,4037,GO-20199004640,THEFT UNDER - BICYCLE,2018-11-01T00:00:00,2018,November,Thursday,1,305,14,2019-02-06T00:00:00,2019,February,Wednesday,6,37,15,D11,Toronto,87,High Park-Swansea (87),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,2017,RG,20,BLK,1400.0,STOLEN,19551,"{'type': 'Point', 'coordinates': (-79.47100511, 43.63695828)}"
-19575,21682,GO-20171607757,THEFT UNDER - BICYCLE,2017-09-01T00:00:00,2017,September,Friday,1,244,16,2017-09-05T00:00:00,2017,September,Tuesday,5,248,14,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,VFR3,OT,9,WHI,540.0,STOLEN,19552,"{'type': 'Point', 'coordinates': (-79.44031796, 43.64333995)}"
-19576,840,GO-2017714863,THEFT UNDER - BICYCLE,2017-07-13T00:00:00,2017,July,Thursday,13,194,6,2017-07-13T00:00:00,2017,July,Thursday,13,194,6,D11,Toronto,88,High Park North (88),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,GALLIUM PRO,RC,11,WHI,2500.0,STOLEN,19553,"{'type': 'Point', 'coordinates': (-79.45685392, 43.65539614)}"
-19577,9048,GO-20143095925,THEFT UNDER,2014-10-05T00:00:00,2014,October,Sunday,5,278,17,2014-10-13T00:00:00,2014,October,Monday,13,286,12,D11,Toronto,88,High Park North (88),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NIRVE,BEACH CRUISER,OT,1,GRY,300.0,STOLEN,19554,"{'type': 'Point', 'coordinates': (-79.45934281000001, 43.65631607)}"
-19578,14888,GO-20209020284,THEFT UNDER,2020-08-14T00:00:00,2020,August,Friday,14,227,12,2020-08-15T00:00:00,2020,August,Saturday,15,228,12,D11,Toronto,86,Roncesvalles (86),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,REMUS DROP L,RG,1,BLK,700.0,STOLEN,19555,"{'type': 'Point', 'coordinates': (-79.45103028, 43.65151643)}"
-19579,4141,GO-20199011093,THEFT UNDER,2019-04-08T00:00:00,2019,April,Monday,8,98,14,2019-04-08T00:00:00,2019,April,Monday,8,98,16,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,22,WHI,2000.0,STOLEN,19556,"{'type': 'Point', 'coordinates': (-79.47100511, 43.63695828)}"
-19580,4228,GO-20199013823,THEFT UNDER,2019-04-28T00:00:00,2019,April,Sunday,28,118,20,2019-05-03T00:00:00,2019,May,Friday,3,123,13,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,21,BLK,400.0,STOLEN,19557,"{'type': 'Point', 'coordinates': (-79.47183044, 43.63786184)}"
-19581,4229,GO-20199013820,THEFT UNDER,2019-04-28T00:00:00,2019,April,Sunday,28,118,20,2019-05-03T00:00:00,2019,May,Friday,3,123,12,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,24,SIL,500.0,STOLEN,19558,"{'type': 'Point', 'coordinates': (-79.47183044, 43.63786184)}"
-19582,4293,GO-2019897742,THEFT UNDER,2019-05-16T00:00:00,2019,May,Thursday,16,136,22,2019-05-17T00:00:00,2019,May,Friday,17,137,9,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,CANNONDALE,,MT,27,LBL,2000.0,STOLEN,19560,"{'type': 'Point', 'coordinates': (-79.47183044, 43.63786184)}"
-19583,4331,GO-20199016089,THEFT UNDER,2019-05-13T00:00:00,2019,May,Monday,13,133,18,2019-05-23T00:00:00,2019,May,Thursday,23,143,13,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,OT,DIVERGE E5 SERI,RG,8,RED,1400.0,STOLEN,19561,"{'type': 'Point', 'coordinates': (-79.46894095, 43.63732513000001)}"
-19584,4463,GO-20199018267,THEFT UNDER,2019-05-28T00:00:00,2019,May,Tuesday,28,148,19,2019-06-12T00:00:00,2019,June,Wednesday,12,163,12,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,OT,AXIS SL4,RC,18,GRY,1000.0,STOLEN,19562,"{'type': 'Point', 'coordinates': (-79.46894095, 43.63732513000001)}"
-19585,4696,GO-20199021372,THEFT UNDER,2019-07-07T00:00:00,2019,July,Sunday,7,188,12,2019-07-07T00:00:00,2019,July,Sunday,7,188,18,D11,Toronto,87,High Park-Swansea (87),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,HEX,OT,50,BLU,1000.0,STOLEN,19563,"{'type': 'Point', 'coordinates': (-79.48444470000001, 43.64933139)}"
-19586,4809,GO-20191361610,B&E,2019-07-19T00:00:00,2019,July,Friday,19,200,22,2019-07-20T00:00:00,2019,July,Saturday,20,201,11,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,,OT,0,,1500.0,STOLEN,19564,"{'type': 'Point', 'coordinates': (-79.45657675, 43.6543709)}"
-19587,5038,GO-20191529506,B&E W'INTENT,2019-08-04T00:00:00,2019,August,Sunday,4,216,12,2019-08-12T00:00:00,2019,August,Monday,12,224,18,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,MIELE,,RG,12,RED,450.0,STOLEN,19565,"{'type': 'Point', 'coordinates': (-79.47100511, 43.63695828)}"
-19588,5039,GO-20191529506,B&E W'INTENT,2019-08-04T00:00:00,2019,August,Sunday,4,216,12,2019-08-12T00:00:00,2019,August,Monday,12,224,18,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,SCOTT,CLIMBER,MT,18,BLK,2000.0,STOLEN,19566,"{'type': 'Point', 'coordinates': (-79.47100511, 43.63695828)}"
-19589,5053,GO-20199026028,THEFT UNDER,2019-08-08T00:00:00,2019,August,Thursday,8,220,18,2019-08-13T00:00:00,2019,August,Tuesday,13,225,13,D11,Toronto,87,High Park-Swansea (87),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,,TO,10,BRN,500.0,STOLEN,19567,"{'type': 'Point', 'coordinates': (-79.46000875, 43.65470772)}"
-19590,5139,GO-20199027338,THEFT UNDER,2019-08-22T00:00:00,2019,August,Thursday,22,234,9,2019-08-22T00:00:00,2019,August,Thursday,22,234,20,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,OT,HELIX,MT,7,PLE,350.0,STOLEN,19568,"{'type': 'Point', 'coordinates': (-79.47100511, 43.63695828)}"
-19591,5229,GO-20191693491,THEFT UNDER,2019-04-30T00:00:00,2019,April,Tuesday,30,120,12,2019-09-04T00:00:00,2019,September,Wednesday,4,247,16,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,MERIDA,MATTS WHITE WAT,MT,11,LGR,500.0,STOLEN,19569,"{'type': 'Point', 'coordinates': (-79.47540421, 43.63962303)}"
-19592,5466,GO-20191913185,B&E,2019-10-01T00:00:00,2019,October,Tuesday,1,274,22,2019-10-04T00:00:00,2019,October,Friday,4,277,14,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,OPUS,ROAD,TO,32,BLU,500.0,STOLEN,19570,"{'type': 'Point', 'coordinates': (-79.46894095, 43.63732513000001)}"
-19593,6164,GO-20209012898,THEFT UNDER,2020-05-08T00:00:00,2020,May,Friday,8,129,15,2020-05-11T00:00:00,2020,May,Monday,11,132,15,D11,Toronto,87,High Park-Swansea (87),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SC,GTX-2,RG,1,BLK,300.0,STOLEN,19571,"{'type': 'Point', 'coordinates': (-79.47100511, 43.63695828)}"
-19594,6336,GO-20209014889,THEFT UNDER,2020-06-07T00:00:00,2020,June,Sunday,7,159,20,2020-06-08T00:00:00,2020,June,Monday,8,160,20,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,OT,DOWNTOWN EX STE,RG,7,GRY,740.0,STOLEN,19572,"{'type': 'Point', 'coordinates': (-79.47334347000002, 43.64042595)}"
-19595,6367,GO-20209015223,THEFT UNDER,2020-06-09T00:00:00,2020,June,Tuesday,9,161,23,2020-06-12T00:00:00,2020,June,Friday,12,164,15,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,OT,NOVARA,MT,6,BLK,260.0,STOLEN,19573,"{'type': 'Point', 'coordinates': (-79.47334347000002, 43.64042595)}"
-19596,6385,GO-20209015330,THEFT UNDER,2020-06-13T00:00:00,2020,June,Saturday,13,165,21,2020-06-13T00:00:00,2020,June,Saturday,13,165,22,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,UK,EASY RIDER,RG,1,BLK,180.0,STOLEN,19574,"{'type': 'Point', 'coordinates': (-79.47183044, 43.63786184)}"
-19597,6568,GO-20209017205,THEFT UNDER,2020-07-08T00:00:00,2020,July,Wednesday,8,190,9,2020-07-09T00:00:00,2020,July,Thursday,9,191,18,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,,,OT,6,DBL,299.0,STOLEN,19575,"{'type': 'Point', 'coordinates': (-79.46894095, 43.63732513000001)}"
-19598,6700,GO-20209018220,THEFT UNDER,2020-07-22T00:00:00,2020,July,Wednesday,22,204,3,2020-07-22T00:00:00,2020,July,Wednesday,22,204,13,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,MT,21,GRY,700.0,STOLEN,19576,"{'type': 'Point', 'coordinates': (-79.45657675, 43.6543709)}"
-19599,6749,GO-20209018619,THEFT UNDER,2020-07-24T00:00:00,2020,July,Friday,24,206,10,2020-07-26T00:00:00,2020,July,Sunday,26,208,20,D11,Toronto,87,High Park-Swansea (87),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,BM,20,WHI,400.0,STOLEN,19577,"{'type': 'Point', 'coordinates': (-79.47436461, 43.64897018)}"
-19600,6750,GO-20209018619,THEFT UNDER,2020-07-24T00:00:00,2020,July,Friday,24,206,10,2020-07-26T00:00:00,2020,July,Sunday,26,208,20,D11,Toronto,87,High Park-Swansea (87),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,,RG,20,WHI,300.0,STOLEN,19578,"{'type': 'Point', 'coordinates': (-79.47436461, 43.64897018)}"
-19601,6869,GO-20209019411,THEFT UNDER,2020-08-03T00:00:00,2020,August,Monday,3,216,13,2020-08-05T00:00:00,2020,August,Wednesday,5,218,16,D11,Toronto,87,High Park-Swansea (87),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,UK,,RG,60,,500.0,STOLEN,19579,"{'type': 'Point', 'coordinates': (-79.45127101, 43.63933996)}"
-19602,6998,GO-20201558669,THEFT UNDER - BICYCLE,2020-08-15T00:00:00,2020,August,Saturday,15,228,17,2020-08-19T00:00:00,2020,August,Wednesday,19,232,18,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,TR,21,MRN,800.0,STOLEN,19580,"{'type': 'Point', 'coordinates': (-79.45336475, 43.6402378)}"
-19603,7002,GO-20201559499,B&E,2020-08-01T00:00:00,2020,August,Saturday,1,214,18,2020-08-20T00:00:00,2020,August,Thursday,20,233,7,D11,Toronto,87,High Park-Swansea (87),"Private Property Structure (Pool, Shed, Detached Garage)",Other,BTWIN,,MT,21,BLUGRY,350.0,STOLEN,19581,"{'type': 'Point', 'coordinates': (-79.45140453, 43.65253397)}"
-19604,7251,GO-20209023306,THEFT UNDER,2020-09-14T00:00:00,2020,September,Monday,14,258,14,2020-09-15T00:00:00,2020,September,Tuesday,15,259,21,D11,Toronto,87,High Park-Swansea (87),Schools During Un-Supervised Activity,Educational,NO,STORM 7.2,MT,24,GRY,779.0,STOLEN,19582,"{'type': 'Point', 'coordinates': (-79.48659988, 43.64793625)}"
-19605,7334,GO-20209024265,THEFT UNDER,2020-09-14T00:00:00,2020,September,Monday,14,258,14,2020-09-23T00:00:00,2020,September,Wednesday,23,267,18,D11,Toronto,87,High Park-Swansea (87),Schools During Supervised Activity,Educational,UK,,MT,7,BLK,450.0,STOLEN,19583,"{'type': 'Point', 'coordinates': (-79.48659988, 43.64793625)}"
-19606,7443,GO-20209026104,THEFT UNDER,2020-10-10T00:00:00,2020,October,Saturday,10,284,19,2020-10-12T00:00:00,2020,October,Monday,12,286,14,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,,"MENS, CHILD, CH",BM,18,,1200.0,STOLEN,19584,"{'type': 'Point', 'coordinates': (-79.47101519, 43.63826102)}"
-19607,7681,GO-20202266329,THEFT UNDER - BICYCLE,2020-11-29T00:00:00,2020,November,Sunday,29,334,17,2020-12-02T00:00:00,2020,December,Wednesday,2,337,15,D11,Toronto,87,High Park-Swansea (87),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,,OT,21,BLU,300.0,STOLEN,19585,"{'type': 'Point', 'coordinates': (-79.45165599, 43.64675175)}"
-19608,7686,GO-20202289146,PROPERTY - FOUND,2020-12-04T00:00:00,2020,December,Friday,4,339,10,2020-12-04T00:00:00,2020,December,Friday,4,339,10,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MONGOOSE,ENVOY,OT,24,GRYBLK,,UNKNOWN,19586,"{'type': 'Point', 'coordinates': (-79.45212969, 43.64047464)}"
-19609,8037,GO-20149003779,THEFT UNDER,2014-06-01T00:00:00,2014,June,Sunday,1,152,3,2014-06-03T00:00:00,2014,June,Tuesday,3,154,18,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RM,,TO,24,BLK,1200.0,STOLEN,19587,"{'type': 'Point', 'coordinates': (-79.44985028, 43.64240343)}"
-19610,8096,GO-20142262335,THEFT UNDER,2014-06-09T00:00:00,2014,June,Monday,9,160,15,2014-06-10T00:00:00,2014,June,Tuesday,10,161,16,D11,Toronto,87,High Park-Swansea (87),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,STINGER,EL,1,RED,1000.0,STOLEN,19588,"{'type': 'Point', 'coordinates': (-79.45127101, 43.63933996)}"
-19611,8101,GO-20142267755,THEFT UNDER,2014-06-02T00:00:00,2014,June,Monday,2,153,9,2014-06-11T00:00:00,2014,June,Wednesday,11,162,12,D11,Toronto,87,High Park-Swansea (87),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,LEGACY,OT,10,,,STOLEN,19589,"{'type': 'Point', 'coordinates': (-79.44664002, 43.64019969)}"
-19612,8418,GO-20142465687,THEFT UNDER,2014-07-09T00:00:00,2014,July,Wednesday,9,190,8,2014-07-09T00:00:00,2014,July,Wednesday,9,190,22,D11,Toronto,87,High Park-Swansea (87),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,OT,0,BLK,2000.0,STOLEN,19590,"{'type': 'Point', 'coordinates': (-79.47485011, 43.64169459)}"
-19613,8546,GO-20149005459,THEFT UNDER,2014-07-25T00:00:00,2014,July,Friday,25,206,14,2014-07-29T00:00:00,2014,July,Tuesday,29,210,20,D11,Toronto,87,High Park-Swansea (87),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RG,10,PNK,150.0,STOLEN,19591,"{'type': 'Point', 'coordinates': (-79.49080646, 43.64810265)}"
-19614,8681,GO-201427333503,THEFT UNDER,2014-08-13T00:00:00,2014,August,Wednesday,13,225,23,2014-08-18T00:00:00,2014,August,Monday,18,230,23,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,NRS,MT,9,RED,1200.0,STOLEN,19592,"{'type': 'Point', 'coordinates': (-79.45312906, 43.6454992)}"
-19615,8740,GO-20149006320,THEFT UNDER,2014-08-25T00:00:00,2014,August,Monday,25,237,9,2014-08-26T00:00:00,2014,August,Tuesday,26,238,22,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,SC,MENSA,MT,24,DBL,600.0,STOLEN,19593,"{'type': 'Point', 'coordinates': (-79.45325913, 43.64453434)}"
-19616,9096,GO-20149007750,THEFT UNDER,2014-10-05T00:00:00,2014,October,Sunday,5,278,10,2014-10-22T00:00:00,2014,October,Wednesday,22,295,10,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,BI,,MT,21,PLE,0.0,STOLEN,19594,"{'type': 'Point', 'coordinates': (-79.47100511, 43.63695828)}"
-19617,9548,GO-2015761030,THEFT UNDER,2015-05-03T00:00:00,2015,May,Sunday,3,123,12,2015-05-07T00:00:00,2015,May,Thursday,7,127,17,D11,Toronto,87,High Park-Swansea (87),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,AUTO BIKE,,RG,1,GLD,100.0,RECOVERED,19595,"{'type': 'Point', 'coordinates': (-79.47334347000002, 43.64042595)}"
-19618,9767,GO-2015967453,THEFT FROM MOTOR VEHICLE OVER,2015-06-07T00:00:00,2015,June,Sunday,7,158,17,2015-06-09T00:00:00,2015,June,Tuesday,9,160,16,D11,Toronto,87,High Park-Swansea (87),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KONA,,MT,0,,1500.0,STOLEN,19596,"{'type': 'Point', 'coordinates': (-79.45112058, 43.64257821)}"
-19619,9915,GO-20151072578,THEFT UNDER,2015-06-25T00:00:00,2015,June,Thursday,25,176,15,2015-06-25T00:00:00,2015,June,Thursday,25,176,19,D11,Toronto,87,High Park-Swansea (87),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,KRANKED AL26,MT,24,BLKONG,200.0,RECOVERED,19597,"{'type': 'Point', 'coordinates': (-79.45811739, 43.65382553)}"
-19620,10024,GO-20159004601,THEFT UNDER,2015-07-12T00:00:00,2015,July,Sunday,12,193,16,2015-07-15T00:00:00,2015,July,Wednesday,15,196,20,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,UK,1971,RC,27,OTH,1025.0,STOLEN,19598,"{'type': 'Point', 'coordinates': (-79.47436461, 43.64897018)}"
-19621,10363,GO-20151512286,THEFT UNDER,2015-09-02T00:00:00,2015,September,Wednesday,2,245,3,2015-09-03T00:00:00,2015,September,Thursday,3,246,6,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,GIANT,SEEK 1,MT,28,BLU,900.0,STOLEN,19599,"{'type': 'Point', 'coordinates': (-79.45212969, 43.64047464)}"
-19622,10481,GO-20151610585,THEFT UNDER,2015-09-17T00:00:00,2015,September,Thursday,17,260,17,2015-09-18T00:00:00,2015,September,Friday,18,261,9,D11,Toronto,87,High Park-Swansea (87),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OPUS,ELALLOGRO 4.0,RG,20,BLKGLD,1970.0,STOLEN,19600,"{'type': 'Point', 'coordinates': (-79.47083591, 43.65193909)}"
-19623,10750,GO-20151930704,THEFT UNDER,2015-10-11T00:00:00,2015,October,Sunday,11,284,23,2015-11-10T00:00:00,2015,November,Tuesday,10,314,9,D11,Toronto,87,High Park-Swansea (87),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,ARGON 18,,RC,10,BLUWHI,2500.0,STOLEN,19601,"{'type': 'Point', 'coordinates': (-79.48659988, 43.64793625)}"
-19624,10751,GO-20151930704,THEFT UNDER,2015-10-11T00:00:00,2015,October,Sunday,11,284,23,2015-11-10T00:00:00,2015,November,Tuesday,10,314,9,D11,Toronto,87,High Park-Swansea (87),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CERVELO,S2,RC,10,REDWHI,2500.0,STOLEN,19602,"{'type': 'Point', 'coordinates': (-79.48659988, 43.64793625)}"
-19625,10916,GO-201650332,THEFT UNDER,2016-01-08T00:00:00,2016,January,Friday,8,8,21,2016-01-09T00:00:00,2016,January,Saturday,9,9,12,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CULT,AK SIGNATURE,BM,1,PLE,,STOLEN,19603,"{'type': 'Point', 'coordinates': (-79.48132617, 43.64589002)}"
-19626,10918,GO-201651698,THEFT UNDER,2016-01-08T00:00:00,2016,January,Friday,8,8,22,2016-01-09T00:00:00,2016,January,Saturday,9,9,16,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNK,UNK,OT,12,RED,150.0,STOLEN,19604,"{'type': 'Point', 'coordinates': (-79.45202628, 43.64476108)}"
-19627,10925,GO-201674544,THEFT UNDER,2015-12-14T00:00:00,2015,December,Monday,14,348,0,2016-01-13T00:00:00,2016,January,Wednesday,13,13,12,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,DEVINCI,MELBOURNE,RG,24,BLK,2000.0,STOLEN,19605,"{'type': 'Point', 'coordinates': (-79.48659988, 43.64793625)}"
-19628,10977,GO-2016232983,THEFT UNDER - BICYCLE,2016-02-05T00:00:00,2016,February,Friday,5,36,19,2016-02-08T00:00:00,2016,February,Monday,8,39,15,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN,,MT,8,BLU,,STOLEN,19606,"{'type': 'Point', 'coordinates': (-79.48659988, 43.64793625)}"
-19629,11045,GO-20169002338,THEFT UNDER - BICYCLE,2016-03-13T00:00:00,2016,March,Sunday,13,73,23,2016-03-14T00:00:00,2016,March,Monday,14,74,13,D11,Toronto,87,High Park-Swansea (87),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RM,VAPOR,MT,18,BLK,800.0,STOLEN,19607,"{'type': 'Point', 'coordinates': (-79.45187336, 43.64198907000001)}"
-19630,11138,GO-20169003440,THEFT UNDER,2016-04-15T00:00:00,2016,April,Friday,15,106,17,2016-04-15T00:00:00,2016,April,Friday,15,106,17,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,FJ,TRACK CLASSIC,RC,1,BLK,700.0,STOLEN,19608,"{'type': 'Point', 'coordinates': (-79.47100511, 43.63695828)}"
-19631,11201,GO-20169003819,THEFT UNDER - BICYCLE,2016-04-24T00:00:00,2016,April,Sunday,24,115,20,2016-04-25T00:00:00,2016,April,Monday,25,116,21,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,KO,STINKY,MT,21,BLK,800.0,STOLEN,19609,"{'type': 'Point', 'coordinates': (-79.47100511, 43.63695828)}"
-19632,11266,GO-2016782643,THEFT UNDER - BICYCLE,2016-05-06T00:00:00,2016,May,Friday,6,127,21,2016-05-07T00:00:00,2016,May,Saturday,7,128,7,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GARY FISHER,,RG,30,BLK,500.0,STOLEN,19610,"{'type': 'Point', 'coordinates': (-79.45811739, 43.65382553)}"
-19633,11267,GO-2016782643,THEFT UNDER - BICYCLE,2016-05-06T00:00:00,2016,May,Friday,6,127,21,2016-05-07T00:00:00,2016,May,Saturday,7,128,7,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GARY FISHER,,RG,30,,500.0,STOLEN,19611,"{'type': 'Point', 'coordinates': (-79.45811739, 43.65382553)}"
-19634,11281,GO-2016784356,THEFT UNDER,2016-05-06T00:00:00,2016,May,Friday,6,127,23,2016-05-07T00:00:00,2016,May,Saturday,7,128,13,D11,Toronto,87,High Park-Swansea (87),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SCHWINN,,RG,12,GRN,200.0,STOLEN,19612,"{'type': 'Point', 'coordinates': (-79.47254318, 43.64621451)}"
-19635,11282,GO-2016784356,THEFT UNDER,2016-05-06T00:00:00,2016,May,Friday,6,127,23,2016-05-07T00:00:00,2016,May,Saturday,7,128,13,D11,Toronto,87,High Park-Swansea (87),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,,RG,1,BLKPNK,400.0,STOLEN,19613,"{'type': 'Point', 'coordinates': (-79.47254318, 43.64621451)}"
-19636,11337,GO-2016868547,PROPERTY - FOUND,2016-05-12T00:00:00,2016,May,Thursday,12,133,6,2016-05-20T00:00:00,2016,May,Friday,20,141,14,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,,MT,21,BLKPNK,,UNKNOWN,19614,"{'type': 'Point', 'coordinates': (-79.48851185, 43.64706878)}"
-19637,11785,GO-20169007113,THEFT UNDER,2016-07-12T00:00:00,2016,July,Tuesday,12,194,9,2016-07-12T00:00:00,2016,July,Tuesday,12,194,22,D11,Toronto,87,High Park-Swansea (87),"Open Areas (Lakes, Parks, Rivers)",Outside,RM,METRO 20,RG,21,WHI,700.0,STOLEN,19615,"{'type': 'Point', 'coordinates': (-79.46477249, 43.6438513)}"
-19638,11863,GO-20169007541,THEFT UNDER - BICYCLE,2016-07-20T00:00:00,2016,July,Wednesday,20,202,7,2016-07-21T00:00:00,2016,July,Thursday,21,203,10,D11,Toronto,87,High Park-Swansea (87),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,TR,TREK 1.2,RC,40,BLK,1000.0,STOLEN,19616,"{'type': 'Point', 'coordinates': (-79.45076857, 43.64167423)}"
-19639,11877,GO-20161292042,THEFT UNDER - BICYCLE,2016-07-18T00:00:00,2016,July,Monday,18,200,16,2016-07-23T00:00:00,2016,July,Saturday,23,205,6,D11,Toronto,87,High Park-Swansea (87),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RALEIGH,,MT,24,BLK,700.0,STOLEN,19617,"{'type': 'Point', 'coordinates': (-79.47060624, 43.63787851)}"
-19640,12032,GO-20161382951,THEFT UNDER - BICYCLE,2016-08-05T00:00:00,2016,August,Friday,5,218,20,2016-08-06T00:00:00,2016,August,Saturday,6,219,11,D11,Toronto,87,High Park-Swansea (87),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,ROCKY MOUNTAIN,MT,24,BLK,3500.0,STOLEN,19618,"{'type': 'Point', 'coordinates': (-79.47183044, 43.63786184)}"
-19641,12033,GO-20161382951,THEFT UNDER - BICYCLE,2016-08-05T00:00:00,2016,August,Friday,5,218,20,2016-08-06T00:00:00,2016,August,Saturday,6,219,11,D11,Toronto,87,High Park-Swansea (87),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,ROCKY MOUNTAIN,MT,24,BLU,3500.0,STOLEN,19619,"{'type': 'Point', 'coordinates': (-79.47183044, 43.63786184)}"
-19642,12330,GO-20169010382,FTC PROBATION ORDER,2016-09-12T00:00:00,2016,September,Monday,12,256,15,2016-09-13T00:00:00,2016,September,Tuesday,13,257,17,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RM,WHISTLER,RG,27,GRY,500.0,STOLEN,19620,"{'type': 'Point', 'coordinates': (-79.45325913, 43.64453434)}"
-19643,12460,GO-20169011136,THEFT UNDER - BICYCLE,2016-09-25T00:00:00,2016,September,Sunday,25,269,17,2016-09-26T00:00:00,2016,September,Monday,26,270,16,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,04SW2611T,MT,24,BLK,800.0,STOLEN,19621,"{'type': 'Point', 'coordinates': (-79.45729156, 43.64748947)}"
-19644,12480,GO-2016807846,B&E,2016-05-11T00:00:00,2016,May,Wednesday,11,132,7,2016-05-11T00:00:00,2016,May,Wednesday,11,132,12,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNK,,MT,18,RED,1000.0,STOLEN,19622,"{'type': 'Point', 'coordinates': (-79.48803136, 43.64467446)}"
-19645,12481,GO-2016807846,B&E,2016-05-11T00:00:00,2016,May,Wednesday,11,132,7,2016-05-11T00:00:00,2016,May,Wednesday,11,132,12,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,,MT,12,BLU,500.0,STOLEN,19623,"{'type': 'Point', 'coordinates': (-79.48803136, 43.64467446)}"
-19646,12482,GO-2016807846,B&E,2016-05-11T00:00:00,2016,May,Wednesday,11,132,7,2016-05-11T00:00:00,2016,May,Wednesday,11,132,12,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNK,,MT,0,YEL,200.0,STOLEN,19624,"{'type': 'Point', 'coordinates': (-79.48803136, 43.64467446)}"
-19647,12598,GO-20161810791,THEFT UNDER - BICYCLE,2016-10-11T00:00:00,2016,October,Tuesday,11,285,19,2016-10-11T00:00:00,2016,October,Tuesday,11,285,21,D11,Toronto,87,High Park-Swansea (87),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,MT,20,BLUBLK,,STOLEN,19625,"{'type': 'Point', 'coordinates': (-79.45656115, 43.6499304)}"
-19648,12637,GO-20161855450,B&E,2016-10-14T00:00:00,2016,October,Friday,14,288,15,2016-10-18T00:00:00,2016,October,Tuesday,18,292,21,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DEVINCI,AMSTERDAM,MT,18,CRM,1500.0,STOLEN,19626,"{'type': 'Point', 'coordinates': (-79.45336084, 43.64091906)}"
-19649,12702,GO-20169012804,THEFT UNDER,2016-09-30T00:00:00,2016,September,Friday,30,274,18,2016-10-31T00:00:00,2016,October,Monday,31,305,18,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,CA,R1000,RC,10,BLK,2350.0,STOLEN,19627,"{'type': 'Point', 'coordinates': (-79.48659988, 43.64793625)}"
-19650,12706,GO-20169012842,THEFT UNDER,2016-10-02T00:00:00,2016,October,Sunday,2,276,15,2016-11-01T00:00:00,2016,November,Tuesday,1,306,15,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,ELKHORN,MT,21,BLK,0.0,STOLEN,19628,"{'type': 'Point', 'coordinates': (-79.45375997, 43.64151652)}"
-19651,12707,GO-20169012842,THEFT UNDER,2016-10-02T00:00:00,2016,October,Sunday,2,276,15,2016-11-01T00:00:00,2016,November,Tuesday,1,306,15,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,,MT,21,RED,0.0,STOLEN,19629,"{'type': 'Point', 'coordinates': (-79.45375997, 43.64151652)}"
-19652,12720,GO-20169012933,THEFT UNDER - BICYCLE,2016-10-31T00:00:00,2016,October,Monday,31,305,18,2016-11-03T00:00:00,2016,November,Thursday,3,308,11,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,SC,,RG,14,WHI,500.0,STOLEN,19630,"{'type': 'Point', 'coordinates': (-79.46894095, 43.63732513000001)}"
-19653,12728,GO-20169013037,THEFT UNDER,2016-10-23T00:00:00,2016,October,Sunday,23,297,12,2016-11-06T00:00:00,2016,November,Sunday,6,311,13,D11,Toronto,87,High Park-Swansea (87),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BI,PISTA,RC,1,SIL,1000.0,STOLEN,19631,"{'type': 'Point', 'coordinates': (-79.45140453, 43.65253397)}"
-19654,12745,GO-20169013223,THEFT UNDER,2016-04-22T00:00:00,2016,April,Friday,22,113,16,2016-11-10T00:00:00,2016,November,Thursday,10,315,16,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,RA,PORTAGE,MT,10,YEL,350.0,STOLEN,19632,"{'type': 'Point', 'coordinates': (-79.46894095, 43.63732513000001)}"
-19655,12766,GO-20169013450,THEFT UNDER,2016-11-07T00:00:00,2016,November,Monday,7,312,0,2016-11-15T00:00:00,2016,November,Tuesday,15,320,15,D11,Toronto,87,High Park-Swansea (87),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ALLEZ COMP 105,TO,11,BLK,1700.0,STOLEN,19633,"{'type': 'Point', 'coordinates': (-79.48659988, 43.64793625)}"
-19656,12815,GO-20162082557,B&E,2016-11-23T00:00:00,2016,November,Wednesday,23,328,12,2016-11-23T00:00:00,2016,November,Wednesday,23,328,18,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,SYNAPSE,RG,5,PLEWHI,3000.0,STOLEN,19634,"{'type': 'Point', 'coordinates': (-79.45336084, 43.64091906)}"
-19657,15055,GO-20142435280,B&E,2014-07-04T00:00:00,2014,July,Friday,4,185,21,2014-07-05T00:00:00,2014,July,Saturday,5,186,11,D11,Toronto,87,High Park-Swansea (87),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,MT,18,SIL,150.0,STOLEN,19635,"{'type': 'Point', 'coordinates': (-79.45031139, 43.64966285)}"
-19658,15056,GO-20142435280,B&E,2014-07-04T00:00:00,2014,July,Friday,4,185,21,2014-07-05T00:00:00,2014,July,Saturday,5,186,11,D11,Toronto,87,High Park-Swansea (87),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,TO,6,BLK,450.0,STOLEN,19636,"{'type': 'Point', 'coordinates': (-79.45031139, 43.64966285)}"
-19659,15068,GO-20149006327,THEFT UNDER,2014-08-20T00:00:00,2014,August,Wednesday,20,232,8,2014-08-26T00:00:00,2014,August,Tuesday,26,238,19,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,21,BLK,2000.0,STOLEN,19637,"{'type': 'Point', 'coordinates': (-79.4720376, 43.64626019)}"
-19660,15102,GO-20151596613,ROBBERY - SWARMING,2015-09-15T00:00:00,2015,September,Tuesday,15,258,17,2015-09-15T00:00:00,2015,September,Tuesday,15,258,17,D11,Toronto,87,High Park-Swansea (87),"Open Areas (Lakes, Parks, Rivers)",Outside,OTHER,REGAL,RC,21,BLK,500.0,STOLEN,19638,"{'type': 'Point', 'coordinates': (-79.47068281, 43.65000771)}"
-19661,15114,GO-20169002583,THEFT UNDER,2015-12-15T00:00:00,2015,December,Tuesday,15,349,12,2016-03-21T00:00:00,2016,March,Monday,21,81,13,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,NO,X FR 2,MT,12,GRY,1100.0,STOLEN,19639,"{'type': 'Point', 'coordinates': (-79.48659988, 43.64793625)}"
-19662,15115,GO-2016807052,B&E,2016-05-11T00:00:00,2016,May,Wednesday,11,132,6,2016-05-11T00:00:00,2016,May,Wednesday,11,132,6,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,,MT,15,BRN,3000.0,STOLEN,19640,"{'type': 'Point', 'coordinates': (-79.48803136, 43.64467446)}"
-19663,15128,GO-20161375655,THEFT UNDER - BICYCLE,2016-08-05T00:00:00,2016,August,Friday,5,218,8,2016-08-05T00:00:00,2016,August,Friday,5,218,8,D11,Toronto,87,High Park-Swansea (87),"Open Areas (Lakes, Parks, Rivers)",Outside,LOUIS GARNEAU,,TO,24,GRY,700.0,STOLEN,19641,"{'type': 'Point', 'coordinates': (-79.46512681, 43.64522625)}"
-19664,15136,GO-20169009999,THEFT UNDER,2016-09-04T00:00:00,2016,September,Sunday,4,248,22,2016-09-05T00:00:00,2016,September,Monday,5,249,21,D11,Toronto,87,High Park-Swansea (87),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RA,,RG,21,CRM,750.0,STOLEN,19642,"{'type': 'Point', 'coordinates': (-79.45811739, 43.65382553)}"
-19665,15137,GO-20169009999,THEFT UNDER,2016-09-04T00:00:00,2016,September,Sunday,4,248,22,2016-09-05T00:00:00,2016,September,Monday,5,249,21,D11,Toronto,87,High Park-Swansea (87),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KO,,MT,15,GLD,200.0,STOLEN,19643,"{'type': 'Point', 'coordinates': (-79.45811739, 43.65382553)}"
-19666,15138,GO-20169009999,THEFT UNDER,2016-09-04T00:00:00,2016,September,Sunday,4,248,22,2016-09-05T00:00:00,2016,September,Monday,5,249,21,D11,Toronto,87,High Park-Swansea (87),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KH,,RG,24,BLK,800.0,STOLEN,19644,"{'type': 'Point', 'coordinates': (-79.45811739, 43.65382553)}"
-19667,21684,GO-20171643886,THEFT UNDER - BICYCLE,2017-09-10T00:00:00,2017,September,Sunday,10,253,22,2017-09-11T00:00:00,2017,September,Monday,11,254,6,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,PROFLEX 853,MT,30,REDYEL,500.0,STOLEN,19645,"{'type': 'Point', 'coordinates': (-79.4401392, 43.64619027)}"
-19668,841,GO-2017714863,THEFT UNDER - BICYCLE,2017-07-13T00:00:00,2017,July,Thursday,13,194,6,2017-07-13T00:00:00,2017,July,Thursday,13,194,6,D11,Toronto,88,High Park North (88),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,KRYPTON,RC,11,BLK,2000.0,STOLEN,19646,"{'type': 'Point', 'coordinates': (-79.45685392, 43.65539614)}"
-19669,9109,GO-20143166942,THEFT UNDER,2014-10-18T00:00:00,2014,October,Saturday,18,291,17,2014-10-24T00:00:00,2014,October,Friday,24,297,15,D11,Toronto,88,High Park North (88),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SEARS,FREE SPIRIT,TO,3,BLU,120.0,STOLEN,19647,"{'type': 'Point', 'coordinates': (-79.46681135, 43.65722821000001)}"
-19670,14890,GO-20209021937,THEFT UNDER,2020-09-01T00:00:00,2020,September,Tuesday,1,245,1,2020-09-01T00:00:00,2020,September,Tuesday,1,245,10,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,VELO,RC,10,BLU,650.0,STOLEN,19648,"{'type': 'Point', 'coordinates': (-79.44413873, 43.63997097)}"
-19671,9175,GO-20149008072,THEFT UNDER,2014-10-21T00:00:00,2014,October,Tuesday,21,294,12,2014-11-07T00:00:00,2014,November,Friday,7,311,13,D11,Toronto,88,High Park North (88),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,R550,TO,21,BLU,473.0,STOLEN,19649,"{'type': 'Point', 'coordinates': (-79.46681135, 43.65722821000001)}"
-19672,21685,GO-20179015426,THEFT UNDER - BICYCLE,2017-09-20T00:00:00,2017,September,Wednesday,20,263,22,2017-09-22T00:00:00,2017,September,Friday,22,265,11,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,CHINOOK,RG,21,CPR,625.0,STOLEN,19650,"{'type': 'Point', 'coordinates': (-79.44766531, 43.64283038)}"
-19673,868,GO-20179010267,THEFT UNDER,2017-07-01T00:00:00,2017,July,Saturday,1,182,12,2017-07-15T00:00:00,2017,July,Saturday,15,196,13,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,GI,TRANSEND,RG,24,SIL,900.0,STOLEN,19651,"{'type': 'Point', 'coordinates': (-79.46525867, 43.65353843)}"
-19674,14891,GO-20209021937,THEFT UNDER,2020-09-01T00:00:00,2020,September,Tuesday,1,245,1,2020-09-01T00:00:00,2020,September,Tuesday,1,245,10,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,BATTAGLIN,RC,10,RED,650.0,STOLEN,19652,"{'type': 'Point', 'coordinates': (-79.44413873, 43.63997097)}"
-19675,9177,GO-20149008056,THEFT UNDER,2014-09-04T00:00:00,2014,September,Thursday,4,247,23,2014-11-06T00:00:00,2014,November,Thursday,6,310,23,D11,Toronto,88,High Park North (88),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RC,24,BLK,0.0,STOLEN,19653,"{'type': 'Point', 'coordinates': (-79.4636661, 43.65389971)}"
-19676,21686,GO-20171712619,THEFT UNDER - BICYCLE,2017-09-21T00:00:00,2017,September,Thursday,21,264,8,2017-09-21T00:00:00,2017,September,Thursday,21,264,9,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KHS,URBAN SOUL,TO,1,BLK,500.0,STOLEN,19654,"{'type': 'Point', 'coordinates': (-79.44274812, 43.64099383)}"
-19677,883,GO-20171280361,THEFT UNDER - BICYCLE,2017-07-16T00:00:00,2017,July,Sunday,16,197,11,2017-07-17T00:00:00,2017,July,Monday,17,198,9,D11,Toronto,88,High Park North (88),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORTHWOODS,SPRINGDALE,OT,21,BLKGLD,100.0,STOLEN,19655,"{'type': 'Point', 'coordinates': (-79.46245698, 43.65815258)}"
-19678,15082,GO-2015748743,B&E,2015-05-05T00:00:00,2015,May,Tuesday,5,125,8,2015-05-05T00:00:00,2015,May,Tuesday,5,125,20,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,GIANT,ESCAPE2,MT,24,BLK,500.0,STOLEN,19656,"{'type': 'Point', 'coordinates': (-79.435934, 43.64071989)}"
-19679,15093,GO-20151233276,THEFT UNDER,2015-07-19T00:00:00,2015,July,Sunday,19,200,21,2015-07-20T00:00:00,2015,July,Monday,20,201,8,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,TEFLON,MT,20,BLK,1400.0,STOLEN,19657,"{'type': 'Point', 'coordinates': (-79.43788356, 43.64033271)}"
-19680,15105,GO-20151750451,THEFT UNDER,2015-10-10T00:00:00,2015,October,Saturday,10,283,16,2015-10-10T00:00:00,2015,October,Saturday,10,283,17,D11,Toronto,86,Roncesvalles (86),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,TIMBERLINE,MT,24,BLU,600.0,STOLEN,19658,"{'type': 'Point', 'coordinates': (-79.45340348, 43.65503076)}"
-19681,15112,GO-2016329371,THEFT UNDER - BICYCLE,2016-02-20T00:00:00,2016,February,Saturday,20,51,9,2016-02-24T00:00:00,2016,February,Wednesday,24,55,18,D11,Toronto,86,Roncesvalles (86),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,UNKNOWN,MT,21,GRNBLK,3000.0,STOLEN,19659,"{'type': 'Point', 'coordinates': (-79.44487118, 43.64997504)}"
-19682,15113,GO-2016329371,THEFT UNDER - BICYCLE,2016-02-20T00:00:00,2016,February,Saturday,20,51,9,2016-02-24T00:00:00,2016,February,Wednesday,24,55,18,D11,Toronto,86,Roncesvalles (86),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,ROUBAIX,OT,21,BLUWHI,3700.0,STOLEN,19660,"{'type': 'Point', 'coordinates': (-79.44487118, 43.64997504)}"
-19683,15116,GO-2016816852,THEFT UNDER,2016-05-11T00:00:00,2016,May,Wednesday,11,132,20,2016-05-12T00:00:00,2016,May,Thursday,12,133,14,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,RALEIGH,,MT,21,MRN,,STOLEN,19661,"{'type': 'Point', 'coordinates': (-79.44867331, 43.64544709)}"
-19684,15125,GO-20161215666,THEFT UNDER,2016-07-09T00:00:00,2016,July,Saturday,9,191,18,2016-07-11T00:00:00,2016,July,Monday,11,193,16,D11,Toronto,86,Roncesvalles (86),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,VICTORY,SERIES PRIDE,SC,1,BLU,3600.0,STOLEN,19662,"{'type': 'Point', 'coordinates': (-79.43662958000002, 43.64058331)}"
-19685,15149,GO-20161834162,THEFT UNDER - BICYCLE,2016-10-15T00:00:00,2016,October,Saturday,15,289,10,2016-10-15T00:00:00,2016,October,Saturday,15,289,11,D11,Toronto,86,Roncesvalles (86),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KONA,JAKE,OT,10,BLKYEL,1700.0,STOLEN,19663,"{'type': 'Point', 'coordinates': (-79.43101803, 43.64269938)}"
-19686,15159,GO-20174867750,B&E,2017-03-20T00:00:00,2017,March,Monday,20,79,6,2017-03-20T00:00:00,2017,March,Monday,20,79,6,D11,Toronto,86,Roncesvalles (86),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UK,,RC,1,RED,0.0,STOLEN,19664,"{'type': 'Point', 'coordinates': (-79.44487118, 43.64997504)}"
-19687,15160,GO-2017549073,THEFT UNDER,2017-03-28T00:00:00,2017,March,Tuesday,28,87,17,2017-03-28T00:00:00,2017,March,Tuesday,28,87,17,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KONA,DOORPRIZE,MT,20,GRY,,STOLEN,19665,"{'type': 'Point', 'coordinates': (-79.43871159, 43.64246141)}"
-19688,15161,GO-2017549073,THEFT UNDER,2017-03-28T00:00:00,2017,March,Tuesday,28,87,17,2017-03-28T00:00:00,2017,March,Tuesday,28,87,17,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,RTC,MT,21,GRY,2500.0,STOLEN,19666,"{'type': 'Point', 'coordinates': (-79.43871159, 43.64246141)}"
-19689,15165,GO-2017639883,THEFT UNDER - BICYCLE,2017-04-10T00:00:00,2017,April,Monday,10,100,10,2017-04-11T00:00:00,2017,April,Tuesday,11,101,15,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,THRESHOLD A3,RC,20,BLK,3500.0,STOLEN,19667,"{'type': 'Point', 'coordinates': (-79.44215237, 43.64297284)}"
-19690,15166,GO-2017639883,THEFT UNDER - BICYCLE,2017-04-10T00:00:00,2017,April,Monday,10,100,10,2017-04-11T00:00:00,2017,April,Tuesday,11,101,15,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,CAMBIO RINO,MT,1,ONG,1000.0,STOLEN,19668,"{'type': 'Point', 'coordinates': (-79.44215237, 43.64297284)}"
-19691,15179,GO-20171103727,THEFT UNDER,2017-06-18T00:00:00,2017,June,Sunday,18,169,20,2017-06-20T00:00:00,2017,June,Tuesday,20,171,21,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KONA,DEW,MT,8,BLKWHI,500.0,STOLEN,19669,"{'type': 'Point', 'coordinates': (-79.44935432, 43.64720514)}"
-19692,15187,GO-20171433348,THEFT UNDER - BICYCLE,2017-08-01T00:00:00,2017,August,Tuesday,1,213,5,2017-08-09T00:00:00,2017,August,Wednesday,9,221,12,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,,MT,40,GRN,400.0,UNKNOWN,19670,"{'type': 'Point', 'coordinates': (-79.44316873, 43.64559668)}"
-19693,15188,GO-20171433348,THEFT UNDER - BICYCLE,2017-08-01T00:00:00,2017,August,Tuesday,1,213,5,2017-08-09T00:00:00,2017,August,Wednesday,9,221,12,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NARCO,,MT,20,GRY,400.0,UNKNOWN,19671,"{'type': 'Point', 'coordinates': (-79.44316873, 43.64559668)}"
-19694,15191,GO-20179012791,THEFT UNDER - BICYCLE,2017-08-06T00:00:00,2017,August,Sunday,6,218,20,2017-08-18T00:00:00,2017,August,Friday,18,230,22,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,TR,LEXA C 50,RC,10,GRN,950.0,STOLEN,19672,"{'type': 'Point', 'coordinates': (-79.44487118, 43.64997504)}"
-19695,15193,GO-20179015073,THEFT UNDER - BICYCLE,2017-09-18T00:00:00,2017,September,Monday,18,261,1,2017-09-18T00:00:00,2017,September,Monday,18,261,14,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,FJ,DECLARATION,RG,1,GRY,800.0,STOLEN,19673,"{'type': 'Point', 'coordinates': (-79.43463614, 43.64244878)}"
-19696,15197,GO-20179017734,THEFT UNDER - BICYCLE,2017-10-17T00:00:00,2017,October,Tuesday,17,290,13,2017-10-20T00:00:00,2017,October,Friday,20,293,17,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,T30,RG,21,SIL,700.0,STOLEN,19674,"{'type': 'Point', 'coordinates': (-79.44031796, 43.64333995)}"
-19697,15209,GO-20189008583,THEFT UNDER - BICYCLE,2018-02-24T00:00:00,2018,February,Saturday,24,55,18,2018-03-19T00:00:00,2018,March,Monday,19,78,18,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,OT,ROADSTER,RG,3,BGE,375.0,STOLEN,19675,"{'type': 'Point', 'coordinates': (-79.43284269, 43.64281133)}"
-19698,15212,GO-2018598091,FRAUD - IDENTITY/PERS W-INT,2018-03-30T00:00:00,2018,March,Friday,30,89,2,2018-04-03T00:00:00,2018,April,Tuesday,3,93,19,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,OPUS,,RC,14,WHIONG,,STOLEN,19676,"{'type': 'Point', 'coordinates': (-79.44487118, 43.64997504)}"
-19699,15213,GO-2018598091,FRAUD - IDENTITY/PERS W-INT,2018-03-30T00:00:00,2018,March,Friday,30,89,2,2018-04-03T00:00:00,2018,April,Tuesday,3,93,19,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,CERVELO,,RC,14,BLK,,STOLEN,19677,"{'type': 'Point', 'coordinates': (-79.44487118, 43.64997504)}"
-19700,15227,GO-20189022745,THEFT UNDER - BICYCLE,2018-07-16T00:00:00,2018,July,Monday,16,197,2,2018-07-17T00:00:00,2018,July,Tuesday,17,198,11,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,ST TROPEZ,OT,24,SIL,750.0,STOLEN,19678,"{'type': 'Point', 'coordinates': (-79.44935432, 43.64720514)}"
-19701,15228,GO-20189022745,THEFT UNDER - BICYCLE,2018-07-16T00:00:00,2018,July,Monday,16,197,2,2018-07-17T00:00:00,2018,July,Tuesday,17,198,11,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,DUBLIN,OT,24,BLK,1000.0,STOLEN,19679,"{'type': 'Point', 'coordinates': (-79.44935432, 43.64720514)}"
-19702,15233,GO-20189024959,THEFT UNDER - BICYCLE,2018-08-02T00:00:00,2018,August,Thursday,2,214,22,2018-08-03T00:00:00,2018,August,Friday,3,215,8,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,MIELE,MT,18,RED,200.0,STOLEN,19680,"{'type': 'Point', 'coordinates': (-79.44250218, 43.64384496)}"
-19703,15235,GO-20189026471,THEFT UNDER,2018-08-15T00:00:00,2018,August,Wednesday,15,227,1,2018-08-15T00:00:00,2018,August,Wednesday,15,227,10,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,,RG,21,GRY,550.0,STOLEN,19681,"{'type': 'Point', 'coordinates': (-79.44316873, 43.64559668)}"
-19704,15250,GO-20189041493,THEFT UNDER - BICYCLE,2018-12-10T00:00:00,2018,December,Monday,10,344,13,2018-12-10T00:00:00,2018,December,Monday,10,344,14,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,OT,VITA,OT,21,WHI,679.0,STOLEN,19682,"{'type': 'Point', 'coordinates': (-79.44916936, 43.65263227)}"
-19705,15251,GO-20189043387,THEFT UNDER - BICYCLE,2018-12-18T00:00:00,2018,December,Tuesday,18,352,13,2018-12-27T00:00:00,2018,December,Thursday,27,361,13,D11,Toronto,86,Roncesvalles (86),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MA,,RG,21,GRY,1500.0,STOLEN,19683,"{'type': 'Point', 'coordinates': (-79.45117206, 43.65188117)}"
-19706,15252,GO-20182353351,THEFT UNDER - BICYCLE,2018-12-22T00:00:00,2018,December,Saturday,22,356,0,2018-12-24T00:00:00,2018,December,Monday,24,358,12,D11,Toronto,86,Roncesvalles (86),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,DEFY,MT,0,BLKGRN,2200.0,STOLEN,19684,"{'type': 'Point', 'coordinates': (-79.44487118, 43.64997504)}"
-19707,15253,GO-20182353351,THEFT UNDER - BICYCLE,2018-12-22T00:00:00,2018,December,Saturday,22,356,0,2018-12-24T00:00:00,2018,December,Monday,24,358,12,D11,Toronto,86,Roncesvalles (86),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,TUFF ROAD,MT,0,BLK,800.0,STOLEN,19685,"{'type': 'Point', 'coordinates': (-79.44487118, 43.64997504)}"
-19708,15254,GO-20199001078,THEFT UNDER - BICYCLE,2018-12-24T00:00:00,2018,December,Monday,24,358,15,2019-01-09T00:00:00,2019,January,Wednesday,9,9,17,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,OT,MILANO,RG,21,BLK,500.0,STOLEN,19686,"{'type': 'Point', 'coordinates': (-79.44487118, 43.64997504)}"
-19709,15257,GO-20199006856,THEFT UNDER,2019-02-23T00:00:00,2019,February,Saturday,23,54,11,2019-02-28T00:00:00,2019,February,Thursday,28,59,10,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,FJ,CLASSIC 2012,RG,1,BLK,560.0,STOLEN,19687,"{'type': 'Point', 'coordinates': (-79.43788356, 43.64033271)}"
-19710,15261,GO-20199013851,THEFT UNDER,2019-05-03T00:00:00,2019,May,Friday,3,123,17,2019-05-03T00:00:00,2019,May,Friday,3,123,18,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,MT,12,PLE,200.0,STOLEN,19688,"{'type': 'Point', 'coordinates': (-79.44946863, 43.6537446)}"
-19711,15263,GO-2019908791,THEFT UNDER,2019-05-17T00:00:00,2019,May,Friday,17,137,22,2019-05-18T00:00:00,2019,May,Saturday,18,138,19,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,JAMIS,,MT,12,BLK,350.0,STOLEN,19689,"{'type': 'Point', 'coordinates': (-79.4390756, 43.64010324)}"
-19712,15264,GO-2019908791,THEFT UNDER,2019-05-17T00:00:00,2019,May,Friday,17,137,22,2019-05-18T00:00:00,2019,May,Saturday,18,138,19,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,SIRUIS,RG,18,GRN,1000.0,STOLEN,19690,"{'type': 'Point', 'coordinates': (-79.4390756, 43.64010324)}"
-19713,15266,GO-20199017190,THEFT UNDER,2019-06-02T00:00:00,2019,June,Sunday,2,153,1,2019-06-02T00:00:00,2019,June,Sunday,2,153,17,D11,Toronto,86,Roncesvalles (86),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,"TRACK, NAVY",RC,1,BLU,700.0,STOLEN,19691,"{'type': 'Point', 'coordinates': (-79.45003169, 43.64894777)}"
-19714,15282,GO-20199028212,THEFT UNDER,2019-07-30T00:00:00,2019,July,Tuesday,30,211,12,2019-08-30T00:00:00,2019,August,Friday,30,242,12,D11,Toronto,86,Roncesvalles (86),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,BAD BOY 5,RG,21,BLK,1270.0,STOLEN,19692,"{'type': 'Point', 'coordinates': (-79.44487118, 43.64997504)}"
-19715,15288,GO-20199034384,THEFT UNDER,2019-10-11T00:00:00,2019,October,Friday,11,284,8,2019-10-18T00:00:00,2019,October,Friday,18,291,20,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,24,GRN,200.0,STOLEN,19693,"{'type': 'Point', 'coordinates': (-79.45117206, 43.65188117)}"
-19716,15294,GO-20209005792,THEFT UNDER,2020-02-02T00:00:00,2020,February,Sunday,2,33,8,2020-02-17T00:00:00,2020,February,Monday,17,48,21,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,OT,HARDROCK SPORT,MT,24,RED,400.0,STOLEN,19694,"{'type': 'Point', 'coordinates': (-79.44487118, 43.64997504)}"
-19717,15299,GO-20209013003,THEFT FROM MOTOR VEHICLE UNDER,2020-05-11T00:00:00,2020,May,Monday,11,132,23,2020-05-12T00:00:00,2020,May,Tuesday,12,133,13,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,GENIUS 940,MT,12,LBL,5100.0,STOLEN,19695,"{'type': 'Point', 'coordinates': (-79.44867331, 43.64544709)}"
-19718,18272,GO-20209017922,THEFT UNDER,2020-07-17T00:00:00,2020,July,Friday,17,199,19,2020-07-19T00:00:00,2020,July,Sunday,19,201,7,D11,Toronto,86,Roncesvalles (86),Bar / Restaurant,Commercial,NO,VFR5,RG,21,BLK,650.0,STOLEN,19696,"{'type': 'Point', 'coordinates': (-79.44968747, 43.64805522)}"
-19719,18280,GO-20209019969,THEFT UNDER,2020-08-11T00:00:00,2020,August,Tuesday,11,224,11,2020-08-11T00:00:00,2020,August,Tuesday,11,224,21,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,WOMEN CRUISER 2,OT,1,BLK,230.0,STOLEN,19697,"{'type': 'Point', 'coordinates': (-79.44676983, 43.65159016)}"
-19720,18291,GO-20209022100,THEFT UNDER,2020-08-31T00:00:00,2020,August,Monday,31,244,0,2020-09-02T00:00:00,2020,September,Wednesday,2,246,12,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,BLK,500.0,STOLEN,19698,"{'type': 'Point', 'coordinates': (-79.45140453, 43.65253397)}"
-19721,18312,GO-20209011753,THEFT UNDER,2020-04-14T00:00:00,2020,April,Tuesday,14,105,14,2020-04-22T00:00:00,2020,April,Wednesday,22,113,19,D11,Toronto,86,Roncesvalles (86),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,SPECIALIZED,MT,5,BLK,500.0,STOLEN,19699,"{'type': 'Point', 'coordinates': (-79.44731397, 43.6419326)}"
-19722,18506,GO-20141909069,THEFT UNDER,2014-04-16T00:00:00,2014,April,Wednesday,16,106,14,2014-04-17T00:00:00,2014,April,Thursday,17,107,13,D11,Toronto,86,Roncesvalles (86),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,UNKNOWN,FO,1,RED,200.0,STOLEN,19700,"{'type': 'Point', 'coordinates': (-79.43982394, 43.63995115)}"
-19723,18509,GO-20142177419,THEFT UNDER,2014-05-23T00:00:00,2014,May,Friday,23,143,18,2014-05-29T00:00:00,2014,May,Thursday,29,149,20,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,OTHER,CELEBRITY X,SC,2,BLU,3500.0,RECOVERED,19701,"{'type': 'Point', 'coordinates': (-79.43622501, 43.6429624)}"
-19724,18517,GO-20142815095,THEFT UNDER,2014-08-31T00:00:00,2014,August,Sunday,31,243,17,2014-08-31T00:00:00,2014,August,Sunday,31,243,18,D11,Toronto,86,Roncesvalles (86),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,MT,12,BLK,200.0,STOLEN,19702,"{'type': 'Point', 'coordinates': (-79.4390756, 43.64010324)}"
-19725,18541,GO-20151253803,B&E,2015-07-22T00:00:00,2015,July,Wednesday,22,203,20,2015-07-23T00:00:00,2015,July,Thursday,23,204,7,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,,MT,10,BRZCPR,600.0,STOLEN,19703,"{'type': 'Point', 'coordinates': (-79.44800231, 43.64370727)}"
-19726,18542,GO-20151253803,B&E,2015-07-22T00:00:00,2015,July,Wednesday,22,203,20,2015-07-23T00:00:00,2015,July,Thursday,23,204,7,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,XTC,MT,10,RED,1280.0,STOLEN,19704,"{'type': 'Point', 'coordinates': (-79.44800231, 43.64370727)}"
-19727,18544,GO-20159004935,THEFT UNDER,2015-07-22T00:00:00,2015,July,Wednesday,22,203,1,2015-07-24T00:00:00,2015,July,Friday,24,205,8,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,12,BLK,500.0,STOLEN,19705,"{'type': 'Point', 'coordinates': (-79.43911385, 43.64697024)}"
-19728,18552,GO-20151612096,B&E,2015-09-18T00:00:00,2015,September,Friday,18,261,1,2015-09-18T00:00:00,2015,September,Friday,18,261,1,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NEXT,,FO,10,BLU,,STOLEN,19706,"{'type': 'Point', 'coordinates': (-79.44916936, 43.65263227)}"
-19729,18559,GO-20159011042,THEFT UNDER,2015-12-17T00:00:00,2015,December,Thursday,17,351,8,2015-12-17T00:00:00,2015,December,Thursday,17,351,9,D11,Toronto,86,Roncesvalles (86),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,MEATBALL,OT,1,GRY,1500.0,STOLEN,19707,"{'type': 'Point', 'coordinates': (-79.43723784, 43.64045086)}"
-19730,18560,GO-20159011307,THEFT UNDER,2015-12-25T00:00:00,2015,December,Friday,25,359,18,2015-12-27T00:00:00,2015,December,Sunday,27,361,10,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,PADDY WAGON,RG,1,BLK,1000.0,STOLEN,19708,"{'type': 'Point', 'coordinates': (-79.44349367, 43.64646844)}"
-19731,18562,GO-2016413504,THEFT UNDER - BICYCLE,2016-02-29T00:00:00,2016,February,Monday,29,60,20,2016-03-09T00:00:00,2016,March,Wednesday,9,69,15,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,UK,UK,TO,1,BLU,600.0,STOLEN,19709,"{'type': 'Point', 'coordinates': (-79.45173875, 43.65355817)}"
-19732,18574,GO-20169010712,THEFT UNDER - BICYCLE,2016-09-14T00:00:00,2016,September,Wednesday,14,258,1,2016-09-19T00:00:00,2016,September,Monday,19,263,14,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,TR,NEKO SL WOMEN,RG,18,DBL,1200.0,STOLEN,19710,"{'type': 'Point', 'coordinates': (-79.44413873, 43.63997097)}"
-19733,18587,GO-20174867750,B&E,2017-03-20T00:00:00,2017,March,Monday,20,79,6,2017-03-20T00:00:00,2017,March,Monday,20,79,6,D11,Toronto,86,Roncesvalles (86),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,,RC,1,WHI,1500.0,STOLEN,19711,"{'type': 'Point', 'coordinates': (-79.44487118, 43.64997504)}"
-19734,18590,GO-2017624906,THEFT UNDER,2017-04-08T00:00:00,2017,April,Saturday,8,98,19,2017-04-09T00:00:00,2017,April,Sunday,9,99,10,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,,OT,21,WHI,700.0,STOLEN,19712,"{'type': 'Point', 'coordinates': (-79.44697699, 43.64107658)}"
-19735,18593,GO-2017714913,THEFT UNDER - BICYCLE,2017-04-23T00:00:00,2017,April,Sunday,23,113,18,2017-04-23T00:00:00,2017,April,Sunday,23,113,20,D11,Toronto,86,Roncesvalles (86),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MIELE,ROAD BIKE,OT,21,BLKYEL,250.0,STOLEN,19713,"{'type': 'Point', 'coordinates': (-79.44867331, 43.64544709)}"
-19736,18596,GO-2017804425,B&E,2017-05-06T00:00:00,2017,May,Saturday,6,126,16,2017-05-07T00:00:00,2017,May,Sunday,7,127,16,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,SPECTEUR,TO,16,BLK,1062.0,RECOVERED,19714,"{'type': 'Point', 'coordinates': (-79.44916936, 43.65263227)}"
-19737,18597,GO-2017808326,THEFT UNDER - BICYCLE,2017-05-07T00:00:00,2017,May,Sunday,7,127,20,2017-05-08T00:00:00,2017,May,Monday,8,128,9,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,PEUGEOT,UNKNOWN,RC,21,WHI,300.0,STOLEN,19715,"{'type': 'Point', 'coordinates': (-79.44854587, 43.65329639)}"
-19738,18598,GO-2017808326,THEFT UNDER - BICYCLE,2017-05-07T00:00:00,2017,May,Sunday,7,127,20,2017-05-08T00:00:00,2017,May,Monday,8,128,9,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MARIN OR MARINO,UNKNOWN,RG,3,BLK,500.0,STOLEN,19716,"{'type': 'Point', 'coordinates': (-79.44854587, 43.65329639)}"
-19739,18603,GO-20171127322,THEFT UNDER,2017-04-29T00:00:00,2017,April,Saturday,29,119,0,2017-06-24T00:00:00,2017,June,Saturday,24,175,9,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,,RG,24,,500.0,STOLEN,19717,"{'type': 'Point', 'coordinates': (-79.44274812, 43.64099383)}"
-19740,18604,GO-20171127322,THEFT UNDER,2017-04-29T00:00:00,2017,April,Saturday,29,119,0,2017-06-24T00:00:00,2017,June,Saturday,24,175,9,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,GHOST LANAO,RG,8,BLK,590.0,STOLEN,19718,"{'type': 'Point', 'coordinates': (-79.44274812, 43.64099383)}"
-19741,18614,GO-20179015346,THEFT UNDER - BICYCLE,2017-09-20T00:00:00,2017,September,Wednesday,20,263,23,2017-09-21T00:00:00,2017,September,Thursday,21,264,10,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,1.1,RG,16,RED,800.0,STOLEN,19719,"{'type': 'Point', 'coordinates': (-79.4390756, 43.64010324)}"
-19742,18618,GO-20171830990,THEFT UNDER - BICYCLE,2017-10-07T00:00:00,2017,October,Saturday,7,280,10,2017-10-09T00:00:00,2017,October,Monday,9,282,15,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ORYX,,RC,21,SIL,300.0,STOLEN,19720,"{'type': 'Point', 'coordinates': (-79.43981037, 43.64531701)}"
-19743,18619,GO-20171830990,THEFT UNDER - BICYCLE,2017-10-07T00:00:00,2017,October,Saturday,7,280,10,2017-10-09T00:00:00,2017,October,Monday,9,282,15,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,,MT,21,BLKWHI,1200.0,STOLEN,19721,"{'type': 'Point', 'coordinates': (-79.43981037, 43.64531701)}"
-19744,18620,GO-20171830990,THEFT UNDER - BICYCLE,2017-10-07T00:00:00,2017,October,Saturday,7,280,10,2017-10-09T00:00:00,2017,October,Monday,9,282,15,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,URBANE CYCLE,,RG,5,BLU,200.0,STOLEN,19722,"{'type': 'Point', 'coordinates': (-79.43981037, 43.64531701)}"
-19745,18629,GO-20189002426,THEFT UNDER - BICYCLE,2018-01-24T00:00:00,2018,January,Wednesday,24,24,0,2018-01-25T00:00:00,2018,January,Thursday,25,25,10,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,FJ,VERZA SPEED 30,OT,18,SIL,1500.0,STOLEN,19723,"{'type': 'Point', 'coordinates': (-79.44215237, 43.64297284)}"
-19746,18633,GO-20189012738,THEFT UNDER - BICYCLE,2018-04-23T00:00:00,2018,April,Monday,23,113,23,2018-04-24T00:00:00,2018,April,Tuesday,24,114,19,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,CA,TRAIL SL 29 SS,MT,1,BLK,2500.0,STOLEN,19724,"{'type': 'Point', 'coordinates': (-79.43788356, 43.64033271)}"
-19747,18636,GO-20189015703,THEFT UNDER - BICYCLE,2018-05-21T00:00:00,2018,May,Monday,21,141,18,2018-05-21T00:00:00,2018,May,Monday,21,141,19,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,RM,70,TO,27,BGE,1500.0,STOLEN,19725,"{'type': 'Point', 'coordinates': (-79.45140453, 43.65253397)}"
-19748,18644,GO-20181357377,B&E,2018-07-25T00:00:00,2018,July,Wednesday,25,206,2,2018-07-25T00:00:00,2018,July,Wednesday,25,206,10,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,,TO,10,RED,800.0,STOLEN,19726,"{'type': 'Point', 'coordinates': (-79.44664002, 43.64019969)}"
-19749,18646,GO-20189024941,THEFT UNDER - BICYCLE,2018-08-01T00:00:00,2018,August,Wednesday,1,213,22,2018-08-02T00:00:00,2018,August,Thursday,2,214,20,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,FUEL 90,MT,27,BLU,600.0,STOLEN,19727,"{'type': 'Point', 'coordinates': (-79.44349367, 43.64646844)}"
-19750,18647,GO-20189024941,THEFT UNDER - BICYCLE,2018-08-01T00:00:00,2018,August,Wednesday,1,213,22,2018-08-02T00:00:00,2018,August,Thursday,2,214,20,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,FX 2,RG,24,BLK,500.0,STOLEN,19728,"{'type': 'Point', 'coordinates': (-79.44349367, 43.64646844)}"
-19751,18650,GO-20189026788,THEFT UNDER - BICYCLE,2018-08-16T00:00:00,2018,August,Thursday,16,228,13,2018-08-17T00:00:00,2018,August,Friday,17,229,13,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,UK,??,OT,12,BLK,700.0,STOLEN,19729,"{'type': 'Point', 'coordinates': (-79.44250218, 43.64384496)}"
-19752,18659,GO-20181863695,THEFT UNDER,2018-10-08T00:00:00,2018,October,Monday,8,281,22,2018-10-09T00:00:00,2018,October,Tuesday,9,282,11,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,PAVAN,PAVAN,MT,1,BLUYEL,100.0,STOLEN,19730,"{'type': 'Point', 'coordinates': (-79.44250218, 43.64384496)}"
-19753,18660,GO-20189033734,THEFT UNDER - BICYCLE,2018-08-16T00:00:00,2018,August,Thursday,16,228,20,2018-10-11T00:00:00,2018,October,Thursday,11,284,20,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KH,URBAN EXPRESS,TO,21,MRN,300.0,STOLEN,19731,"{'type': 'Point', 'coordinates': (-79.4401392, 43.64619027)}"
-19754,18680,GO-20199026128,THEFT UNDER,2019-08-13T00:00:00,2019,August,Tuesday,13,225,20,2019-08-13T00:00:00,2019,August,Tuesday,13,225,23,D11,Toronto,86,Roncesvalles (86),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,21,YEL,0.0,STOLEN,19732,"{'type': 'Point', 'coordinates': (-79.44697699, 43.64107658)}"
-19755,18682,GO-20191620780,B&E,2019-08-08T00:00:00,2019,August,Thursday,8,220,19,2019-08-25T00:00:00,2019,August,Sunday,25,237,12,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,ARGON 18,,OT,18,WHI,2500.0,STOLEN,19733,"{'type': 'Point', 'coordinates': (-79.45117206, 43.65188117)}"
-19756,18683,GO-20191679343,B&E,2019-08-30T00:00:00,2019,August,Friday,30,242,17,2019-09-02T00:00:00,2019,September,Monday,2,245,17,D11,Toronto,86,Roncesvalles (86),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,GIANT,TALON,MT,21,GRY,1000.0,RECOVERED,19734,"{'type': 'Point', 'coordinates': (-79.44916936, 43.65263227)}"
-19757,18684,GO-20191679343,B&E,2019-08-30T00:00:00,2019,August,Friday,30,242,17,2019-09-02T00:00:00,2019,September,Monday,2,245,17,D11,Toronto,86,Roncesvalles (86),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,GIANT,,TO,21,GRY,900.0,STOLEN,19735,"{'type': 'Point', 'coordinates': (-79.44916936, 43.65263227)}"
-19758,18687,GO-20199030435,THEFT UNDER,2019-09-16T00:00:00,2019,September,Monday,16,259,19,2019-09-17T00:00:00,2019,September,Tuesday,17,260,20,D11,Toronto,86,Roncesvalles (86),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,NUOVELLO CLASSI,RG,7,BLK,550.0,STOLEN,19736,"{'type': 'Point', 'coordinates': (-79.43154968, 43.64162515)}"
-19759,21081,GO-20199033685,THEFT UNDER - BICYCLE,2019-10-09T00:00:00,2019,October,Wednesday,9,282,15,2019-10-12T00:00:00,2019,October,Saturday,12,285,15,D14,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,OT,FAIRDALE EXPRES,RC,1,BLU,900.0,STOLEN,19737,"{'type': 'Point', 'coordinates': (-79.42860473, 43.64220797)}"
-19760,21587,GO-20142296048,B&E,2014-06-14T00:00:00,2014,June,Saturday,14,165,22,2014-06-15T00:00:00,2014,June,Sunday,15,166,14,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FUJI,CAMBRIDGE,RG,8,BLK,2000.0,STOLEN,19738,"{'type': 'Point', 'coordinates': (-79.44215237, 43.64297284)}"
-19761,21588,GO-20142296048,B&E,2014-06-14T00:00:00,2014,June,Saturday,14,165,22,2014-06-15T00:00:00,2014,June,Sunday,15,166,14,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,CITY CRUISER,RG,3,BLU,600.0,STOLEN,19739,"{'type': 'Point', 'coordinates': (-79.44215237, 43.64297284)}"
-19762,21590,GO-20142295445,THEFT UNDER,2014-06-01T00:00:00,2014,June,Sunday,1,152,10,2014-06-15T00:00:00,2014,June,Sunday,15,166,12,D11,Toronto,86,Roncesvalles (86),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,MT,18,BLUWHI,,STOLEN,19740,"{'type': 'Point', 'coordinates': (-79.45007649, 43.65305166)}"
-19763,21591,GO-20149005091,THEFT UNDER,2014-07-16T00:00:00,2014,July,Wednesday,16,197,0,2014-07-19T00:00:00,2014,July,Saturday,19,200,12,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,KO,DEW,RG,18,,,STOLEN,19741,"{'type': 'Point', 'coordinates': (-79.43413785, 43.64109159)}"
-19764,21601,GO-20143062836,FRAUD UNDER,2014-08-16T00:00:00,2014,August,Saturday,16,228,0,2014-10-07T00:00:00,2014,October,Tuesday,7,280,22,D11,Toronto,86,Roncesvalles (86),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECILAISED,ROAD,RC,1,,2000.0,STOLEN,19742,"{'type': 'Point', 'coordinates': (-79.45007649, 43.65305166)}"
-19765,21615,GO-20151110076,ROBBERY - OTHER,2015-07-01T00:00:00,2015,July,Wednesday,1,182,11,2015-07-01T00:00:00,2015,July,Wednesday,1,182,23,D11,Toronto,86,Roncesvalles (86),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,,MT,21,BLKONG,125.0,STOLEN,19743,"{'type': 'Point', 'coordinates': (-79.44878575, 43.64919723)}"
-19766,21617,GO-20159004342,THEFT UNDER,2015-06-27T00:00:00,2015,June,Saturday,27,178,17,2015-07-09T00:00:00,2015,July,Thursday,9,190,12,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,VITA STEP-THROU,RG,24,BLK,700.0,STOLEN,19744,"{'type': 'Point', 'coordinates': (-79.44941874, 43.65063003)}"
-19767,21627,GO-20159009975,THEFT UNDER,2015-11-20T00:00:00,2015,November,Friday,20,324,1,2015-11-20T00:00:00,2015,November,Friday,20,324,22,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,UK,DO NOT KNOW,MT,24,SIL,250.0,STOLEN,19745,"{'type': 'Point', 'coordinates': (-79.44766531, 43.64283038)}"
-19768,21628,GO-20152079023,PROPERTY - FOUND,2015-12-03T00:00:00,2015,December,Thursday,3,337,23,2015-12-04T00:00:00,2015,December,Friday,4,338,15,D11,Toronto,86,Roncesvalles (86),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,TO,12,BLK,500.0,UNKNOWN,19746,"{'type': 'Point', 'coordinates': (-79.4390756, 43.64010324)}"
-19769,21689,GO-20179017239,THEFT UNDER,2017-10-01T00:00:00,2017,October,Sunday,1,274,10,2017-10-15T00:00:00,2017,October,Sunday,15,288,10,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,RED NORCO CITYG,MT,2,RED,350.0,STOLEN,19747,"{'type': 'Point', 'coordinates': (-79.4329799, 43.64318642)}"
-19770,1006,GO-20179011322,THEFT UNDER,2017-07-29T00:00:00,2017,July,Saturday,29,210,21,2017-07-29T00:00:00,2017,July,Saturday,29,210,22,D11,Toronto,88,High Park North (88),Ttc Subway Station,Transit,GI,12 REVEL 2,MT,21,BLK,500.0,STOLEN,19748,"{'type': 'Point', 'coordinates': (-79.4672054, 43.65398145)}"
-19771,21702,GO-20181102674,THEFT UNDER - BICYCLE,2018-06-13T00:00:00,2018,June,Wednesday,13,164,18,2018-06-17T00:00:00,2018,June,Sunday,17,168,23,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,CADENT 1,MT,21,BLU,450.0,STOLEN,19749,"{'type': 'Point', 'coordinates': (-79.44215237, 43.64297284)}"
-19772,9196,GO-20143340354,THEFT UNDER,2014-11-17T00:00:00,2014,November,Monday,17,321,17,2014-11-21T00:00:00,2014,November,Friday,21,325,8,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,ROCKY MOUNTAIN,FUSION,MT,21,DBL,,STOLEN,19750,"{'type': 'Point', 'coordinates': (-79.47180361, 43.661272280000006)}"
-19773,1568,GO-20179016269,THEFT UNDER - BICYCLE,2017-09-28T00:00:00,2017,September,Thursday,28,271,9,2017-10-02T00:00:00,2017,October,Monday,2,275,12,D11,Toronto,88,High Park North (88),Schools During Un-Supervised Activity,Educational,UK,GS52780,OT,21,WHI,300.0,STOLEN,19751,"{'type': 'Point', 'coordinates': (-79.47137179, 43.66030453)}"
-19774,21705,GO-20189021080,THEFT UNDER - BICYCLE,2018-07-02T00:00:00,2018,July,Monday,2,183,21,2018-07-03T00:00:00,2018,July,Tuesday,3,184,21,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,BI,PISTA,RC,1,SIL,800.0,STOLEN,19752,"{'type': 'Point', 'coordinates': (-79.43284269, 43.64281133)}"
-19775,1722,GO-20179017949,THEFT UNDER,2017-10-20T00:00:00,2017,October,Friday,20,293,23,2017-10-23T00:00:00,2017,October,Monday,23,296,13,D11,Toronto,88,High Park North (88),Ttc Subway Station,Transit,OT,ALIBI,RG,7,BLK,750.0,STOLEN,19753,"{'type': 'Point', 'coordinates': (-79.4672054, 43.65398145)}"
-19776,9303,GO-20159000984,THEFT UNDER,2015-02-26T00:00:00,2015,February,Thursday,26,57,17,2015-02-26T00:00:00,2015,February,Thursday,26,57,17,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,NO,,MT,1,WHI,1500.0,STOLEN,19754,"{'type': 'Point', 'coordinates': (-79.46525867, 43.65353843)}"
-19777,21706,GO-20189023408,THEFT UNDER - BICYCLE,2018-07-21T00:00:00,2018,July,Saturday,21,202,15,2018-07-22T00:00:00,2018,July,Sunday,22,203,13,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,CA,,MT,7,ONG,650.0,STOLEN,19755,"{'type': 'Point', 'coordinates': (-79.45007649, 43.65305166)}"
-19778,1878,GO-20179020443,THEFT UNDER - BICYCLE,2017-11-16T00:00:00,2017,November,Thursday,16,320,11,2017-11-24T00:00:00,2017,November,Friday,24,328,11,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,UK,F55,RC,20,BLK,1400.0,STOLEN,19756,"{'type': 'Point', 'coordinates': (-79.4672054, 43.65398145)}"
-19779,9498,GO-2015716815,THEFT UNDER,2015-04-30T00:00:00,2015,April,Thursday,30,120,9,2015-04-30T00:00:00,2015,April,Thursday,30,120,17,D11,Toronto,88,High Park North (88),Schools During Supervised Activity,Educational,OTHER,GRIND,MT,1,BLK,426.0,STOLEN,19757,"{'type': 'Point', 'coordinates': (-79.45934281000001, 43.65631607)}"
-19780,21708,GO-20181385815,B&E,2018-07-29T00:00:00,2018,July,Sunday,29,210,0,2018-07-29T00:00:00,2018,July,Sunday,29,210,11,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,FUJI,SUNFIRE,MT,21,BLKBLU,1000.0,STOLEN,19758,"{'type': 'Point', 'coordinates': (-79.44395274, 43.64765593)}"
-19781,1913,GO-20173124584,THEFT UNDER - BICYCLE,2017-11-28T00:00:00,2017,November,Tuesday,28,332,18,2017-12-03T00:00:00,2017,December,Sunday,3,337,19,D11,Toronto,88,High Park North (88),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OPUS,SPARK 2012,OT,14,REDWHI,1000.0,STOLEN,19759,"{'type': 'Point', 'coordinates': (-79.45585147, 43.65946376)}"
-19782,9547,GO-20159002528,THEFT UNDER,2015-05-07T00:00:00,2015,May,Thursday,7,127,11,2015-05-07T00:00:00,2015,May,Thursday,7,127,17,D11,Toronto,88,High Park North (88),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,SC2,RG,21,BLU,530.0,STOLEN,19760,"{'type': 'Point', 'coordinates': (-79.455454, 43.65854213)}"
-19783,21709,GO-20181385815,B&E,2018-07-29T00:00:00,2018,July,Sunday,29,210,0,2018-07-29T00:00:00,2018,July,Sunday,29,210,11,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MIELE,"24""""",OT,1,BLK,320.0,STOLEN,19761,"{'type': 'Point', 'coordinates': (-79.44395274, 43.64765593)}"
-19784,1970,GO-20189000475,THEFT UNDER - BICYCLE,2018-01-05T00:00:00,2018,January,Friday,5,5,12,2018-01-07T00:00:00,2018,January,Sunday,7,7,13,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,NO,XFR 3,MT,24,BLK,725.0,STOLEN,19762,"{'type': 'Point', 'coordinates': (-79.46818422, 43.65633298)}"
-19785,9570,GO-20159002665,THEFT UNDER,2015-05-10T00:00:00,2015,May,Sunday,10,130,23,2015-05-12T00:00:00,2015,May,Tuesday,12,132,11,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SIRRUS,OT,24,BLK,800.0,STOLEN,19763,"{'type': 'Point', 'coordinates': (-79.45585147, 43.65946376)}"
-19786,21711,GO-20189025749,THEFT UNDER,2018-08-09T00:00:00,2018,August,Thursday,9,221,1,2018-08-09T00:00:00,2018,August,Thursday,9,221,19,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,MASTER,RG,1,GRY,615.0,STOLEN,19764,"{'type': 'Point', 'coordinates': (-79.43981037, 43.64531701)}"
-19787,21712,GO-20189026549,THEFT UNDER - BICYCLE,2018-08-15T00:00:00,2018,August,Wednesday,15,227,8,2018-08-15T00:00:00,2018,August,Wednesday,15,227,20,D11,Toronto,86,Roncesvalles (86),Go Station,Transit,GI,,TO,18,,185.0,STOLEN,19765,"{'type': 'Point', 'coordinates': (-79.45340348, 43.65503076)}"
-19788,21713,GO-20181490528,THEFT UNDER - BICYCLE,2018-08-09T00:00:00,2018,August,Thursday,9,221,4,2018-08-13T00:00:00,2018,August,Monday,13,225,13,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,,,OT,1,,,STOLEN,19766,"{'type': 'Point', 'coordinates': (-79.44867331, 43.64544709)}"
-19789,21723,GO-20189043090,THEFT UNDER - BICYCLE,2018-12-22T00:00:00,2018,December,Saturday,22,356,0,2018-12-23T00:00:00,2018,December,Sunday,23,357,10,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,3,GRN,800.0,STOLEN,19768,"{'type': 'Point', 'coordinates': (-79.44878575, 43.64919723)}"
-19790,21742,GO-20191286833,B&E W'INTENT,2019-07-10T00:00:00,2019,July,Wednesday,10,191,1,2019-07-10T00:00:00,2019,July,Wednesday,10,191,14,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,BLACK,RC,16,BLK,5000.0,STOLEN,19769,"{'type': 'Point', 'coordinates': (-79.43997463, 43.64248673)}"
-19791,21745,GO-20199022525,B&E,2019-07-15T00:00:00,2019,July,Monday,15,196,15,2019-07-16T00:00:00,2019,July,Tuesday,16,197,14,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,TR,SL,RC,27,DBL,2000.0,STOLEN,19770,"{'type': 'Point', 'coordinates': (-79.45140453, 43.65253397)}"
-19792,21749,GO-20199024917,THEFT UNDER,2019-08-04T00:00:00,2019,August,Sunday,4,216,8,2019-08-04T00:00:00,2019,August,Sunday,4,216,13,D11,Toronto,86,Roncesvalles (86),Schools During Supervised Activity,Educational,UK,,OT,1,BLK,500.0,STOLEN,19771,"{'type': 'Point', 'coordinates': (-79.45241445000002, 43.65632155)}"
-19793,21752,GO-20199026019,THEFT UNDER,2019-08-12T00:00:00,2019,August,Monday,12,224,23,2019-08-13T00:00:00,2019,August,Tuesday,13,225,12,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,MIXTE 3I,TO,3,LBL,600.0,STOLEN,19772,"{'type': 'Point', 'coordinates': (-79.43499398, 43.64329754)}"
-19794,21757,GO-20199031021,THEFT UNDER,2019-09-21T00:00:00,2019,September,Saturday,21,264,21,2019-09-22T00:00:00,2019,September,Sunday,22,265,2,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,BATO,RG,3,BRZ,500.0,STOLEN,19773,"{'type': 'Point', 'coordinates': (-79.43622501, 43.6429624)}"
-19795,21759,GO-20199032266,THEFT UNDER,2019-10-01T00:00:00,2019,October,Tuesday,1,274,13,2019-10-01T00:00:00,2019,October,Tuesday,1,274,15,D11,Toronto,86,Roncesvalles (86),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,WILLARD 1 2015,RC,18,DGR,1000.0,STOLEN,19774,"{'type': 'Point', 'coordinates': (-79.44664002, 43.64019969)}"
-19796,21764,GO-20199036961,THEFT UNDER,2019-11-07T00:00:00,2019,November,Thursday,7,311,0,2019-11-09T00:00:00,2019,November,Saturday,9,313,10,D11,Toronto,86,Roncesvalles (86),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,TO,11,BLU,75.0,STOLEN,19775,"{'type': 'Point', 'coordinates': (-79.4404727, 43.64707447)}"
-19797,21765,GO-20199037781,THEFT UNDER,2019-11-15T00:00:00,2019,November,Friday,15,319,8,2019-11-17T00:00:00,2019,November,Sunday,17,321,11,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,DAVINCI,LEO,MT,10,BLK,800.0,STOLEN,19776,"{'type': 'Point', 'coordinates': (-79.43463614, 43.64244878)}"
-19798,21768,GO-20199041764,THEFT UNDER,2019-12-19T00:00:00,2019,December,Thursday,19,353,18,2019-12-22T00:00:00,2019,December,Sunday,22,356,18,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,GT,GRADE ALLOY SOR,RC,18,BLU,2420.0,STOLEN,19777,"{'type': 'Point', 'coordinates': (-79.45007649, 43.65305166)}"
-19799,21778,GO-20209013025,THEFT UNDER,2020-05-11T00:00:00,2020,May,Monday,11,132,19,2020-05-13T00:00:00,2020,May,Wednesday,13,134,11,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,NO,,RG,1,,150.0,STOLEN,19778,"{'type': 'Point', 'coordinates': (-79.45140453, 43.65253397)}"
-19800,21970,GO-20201516204,THEFT OF EBIKE UNDER $5000,2020-08-10T00:00:00,2020,August,Monday,10,223,16,2020-08-13T00:00:00,2020,August,Thursday,13,226,12,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,EMMO,EGO,EL,1,BLK,520.0,STOLEN,19779,"{'type': 'Point', 'coordinates': (-79.43532226, 43.64420447)}"
-19801,21971,GO-20209020449,THEFT UNDER,2020-08-14T00:00:00,2020,August,Friday,14,227,14,2020-08-17T00:00:00,2020,August,Monday,17,230,14,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RM,METRO,MT,27,RED,650.0,STOLEN,19780,"{'type': 'Point', 'coordinates': (-79.43871159, 43.64246141)}"
-19802,21972,GO-20201523568,THEFT UNDER - BICYCLE,2020-08-13T00:00:00,2020,August,Thursday,13,226,18,2020-08-14T00:00:00,2020,August,Friday,14,227,12,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,KHS,URBAN SOUL,OT,1,BLK,500.0,STOLEN,19781,"{'type': 'Point', 'coordinates': (-79.44916936, 43.65263227)}"
-19803,21975,GO-20209022733,THEFT UNDER,2020-09-07T00:00:00,2020,September,Monday,7,251,10,2020-09-09T00:00:00,2020,September,Wednesday,9,253,22,D11,Toronto,86,Roncesvalles (86),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RG,1,BLU,600.0,STOLEN,19782,"{'type': 'Point', 'coordinates': (-79.44833215, 43.64455285)}"
-19804,21982,GO-20209024846,THEFT UNDER,2020-09-28T00:00:00,2020,September,Monday,28,272,9,2020-09-29T00:00:00,2020,September,Tuesday,29,273,9,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,1,BLU,500.0,STOLEN,19783,"{'type': 'Point', 'coordinates': (-79.43101803, 43.64269938)}"
-19805,24391,GO-20209019057,THEFT UNDER,2020-07-30T00:00:00,2020,July,Thursday,30,212,16,2020-07-31T00:00:00,2020,July,Friday,31,213,8,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,TR,ROSCOE 7,MT,12,BLK,1806.0,STOLEN,19784,"{'type': 'Point', 'coordinates': (-79.45007649, 43.65305166)}"
-19806,24986,GO-20149003063,THEFT UNDER,2014-04-25T00:00:00,2014,April,Friday,25,115,11,2014-04-29T00:00:00,2014,April,Tuesday,29,119,12,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,,RG,24,GRY,320.0,STOLEN,19785,"{'type': 'Point', 'coordinates': (-79.43101803, 43.64269938)}"
-19807,24993,GO-20149004908,THEFT UNDER,2014-07-07T00:00:00,2014,July,Monday,7,188,0,2014-07-12T00:00:00,2014,July,Saturday,12,193,19,D11,Toronto,86,Roncesvalles (86),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,3,LBL,1000.0,STOLEN,19786,"{'type': 'Point', 'coordinates': (-79.45103028, 43.65151643)}"
-19808,24994,GO-20142515471,THEFT UNDER,2014-07-13T00:00:00,2014,July,Sunday,13,194,4,2014-07-17T00:00:00,2014,July,Thursday,17,198,12,D11,Toronto,86,Roncesvalles (86),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,3700,MT,21,LGR,700.0,STOLEN,19787,"{'type': 'Point', 'coordinates': (-79.43788356, 43.64033271)}"
-19809,25000,GO-20149006280,THEFT UNDER,2014-08-25T00:00:00,2014,August,Monday,25,237,0,2014-08-25T00:00:00,2014,August,Monday,25,237,13,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,BOWERY,RC,1,GRY,600.0,STOLEN,19788,"{'type': 'Point', 'coordinates': (-79.44274812, 43.64099383)}"
-19810,25004,GO-20142964812,THEFT UNDER,2014-09-23T00:00:00,2014,September,Tuesday,23,266,7,2014-09-23T00:00:00,2014,September,Tuesday,23,266,7,D11,Toronto,86,Roncesvalles (86),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,,EL,6,GRY,1000.0,STOLEN,19789,"{'type': 'Point', 'coordinates': (-79.43981037, 43.64531701)}"
-19811,25007,GO-201559584,THEFT UNDER,2015-01-10T00:00:00,2015,January,Saturday,10,10,23,2015-01-11T00:00:00,2015,January,Sunday,11,11,12,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,OTHER,,SC,3,DBL,3400.0,STOLEN,19790,"{'type': 'Point', 'coordinates': (-79.43622501, 43.6429624)}"
-19812,25012,GO-2015858596,THEFT UNDER,2015-05-22T00:00:00,2015,May,Friday,22,142,21,2015-05-23T00:00:00,2015,May,Saturday,23,143,10,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,GLIDER DELUXE,OT,0,BLU,,STOLEN,19791,"{'type': 'Point', 'coordinates': (-79.4394762, 43.64443895)}"
-19813,25027,GO-20159004262,THEFT UNDER,2015-07-06T00:00:00,2015,July,Monday,6,187,15,2015-07-07T00:00:00,2015,July,Tuesday,7,188,12,D11,Toronto,86,Roncesvalles (86),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,DUKE,RG,1,BLK,500.0,STOLEN,19792,"{'type': 'Point', 'coordinates': (-79.4419773, 43.64806091)}"
-19814,25030,GO-20151591506,THEFT FROM MOTOR VEHICLE UNDER,2015-09-14T00:00:00,2015,September,Monday,14,257,22,2015-09-15T00:00:00,2015,September,Tuesday,15,258,1,D11,Toronto,86,Roncesvalles (86),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,SCHON,OT,18,WHI,1900.0,STOLEN,19793,"{'type': 'Point', 'coordinates': (-79.45007649, 43.65305166)}"
-19815,25031,GO-20159007364,THEFT UNDER,2015-09-17T00:00:00,2015,September,Thursday,17,260,0,2015-09-18T00:00:00,2015,September,Friday,18,261,14,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,TICINO,RG,1,GRY,0.0,STOLEN,19794,"{'type': 'Point', 'coordinates': (-79.44902054, 43.64633797)}"
-19816,25032,GO-20151638991,THEFT UNDER,2015-09-22T00:00:00,2015,September,Tuesday,22,265,5,2015-09-22T00:00:00,2015,September,Tuesday,22,265,13,D11,Toronto,86,Roncesvalles (86),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,ROCKY MOUNTAIN,,MT,21,YEL,1500.0,STOLEN,19795,"{'type': 'Point', 'coordinates': (-79.44804768, 43.65211635)}"
-19817,25033,GO-20159008526,THEFT UNDER,2015-10-12T00:00:00,2015,October,Monday,12,285,2,2015-10-14T00:00:00,2015,October,Wednesday,14,287,14,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,,MT,18,GRN,1000.0,STOLEN,19796,"{'type': 'Point', 'coordinates': (-79.43981037, 43.64531701)}"
-19818,25040,GO-20169002559,THEFT UNDER - BICYCLE,2016-03-19T00:00:00,2016,March,Saturday,19,79,21,2016-03-21T00:00:00,2016,March,Monday,21,81,11,D11,Toronto,86,Roncesvalles (86),Bar / Restaurant,Commercial,OT,DRAFT LIGHT,RG,3,SIL,500.0,STOLEN,19797,"{'type': 'Point', 'coordinates': (-79.43257915, 43.64213295)}"
-19819,25047,GO-20169004567,THEFT UNDER,2016-05-15T00:00:00,2016,May,Sunday,15,136,11,2016-05-16T00:00:00,2016,May,Monday,16,137,11,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,,RG,18,BLK,550.0,STOLEN,19798,"{'type': 'Point', 'coordinates': (-79.44250218, 43.64384496)}"
-19820,25048,GO-2016882499,THEFT UNDER - BICYCLE,2016-05-22T00:00:00,2016,May,Sunday,22,143,15,2016-05-22T00:00:00,2016,May,Sunday,22,143,19,D11,Toronto,86,Roncesvalles (86),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CUSTOM MADE,,RC,1,WHI,700.0,STOLEN,19799,"{'type': 'Point', 'coordinates': (-79.42968514, 43.64199902)}"
-19821,25062,GO-20169012070,THEFT UNDER - BICYCLE,2016-10-14T00:00:00,2016,October,Friday,14,288,21,2016-10-14T00:00:00,2016,October,Friday,14,288,23,D11,Toronto,86,Roncesvalles (86),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,,ROYAL,OT,18,BLK,500.0,STOLEN,19800,"{'type': 'Point', 'coordinates': (-79.43532226, 43.64420447)}"
-19822,25068,GO-20179002164,THEFT UNDER,2017-02-16T00:00:00,2017,February,Thursday,16,47,12,2017-02-19T00:00:00,2017,February,Sunday,19,50,12,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,GI,,RC,1,GRY,650.0,STOLEN,19801,"{'type': 'Point', 'coordinates': (-79.435934, 43.64071989)}"
-19823,25071,GO-2017486775,B&E W'INTENT,2017-03-17T00:00:00,2017,March,Friday,17,76,20,2017-03-19T00:00:00,2017,March,Sunday,19,78,4,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,GURU,RACELITE,RC,16,BLKONG,1500.0,STOLEN,19802,"{'type': 'Point', 'coordinates': (-79.44487118, 43.64997504)}"
-19824,25073,GO-20179004102,THEFT UNDER,2017-04-01T00:00:00,2017,April,Saturday,1,91,23,2017-04-02T00:00:00,2017,April,Sunday,2,92,10,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RM,WHISTLER,MT,21,BLK,600.0,STOLEN,19803,"{'type': 'Point', 'coordinates': (-79.44250218, 43.64384496)}"
-19825,25074,GO-20179004296,THEFT UNDER - BICYCLE,2017-04-04T00:00:00,2017,April,Tuesday,4,94,10,2017-04-05T00:00:00,2017,April,Wednesday,5,95,22,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,STEP 3,RG,3,LGR,650.0,STOLEN,19804,"{'type': 'Point', 'coordinates': (-79.44676983, 43.65159016)}"
-19826,25083,GO-20179005979,THEFT UNDER - BICYCLE,2017-05-09T00:00:00,2017,May,Tuesday,9,129,9,2017-05-09T00:00:00,2017,May,Tuesday,9,129,15,D11,Toronto,86,Roncesvalles (86),Schools During Un-Supervised Activity,Educational,RA,,RC,15,GRY,0.0,STOLEN,19805,"{'type': 'Point', 'coordinates': (-79.43257915, 43.64213295)}"
-19827,25091,GO-20171322666,B&E,2017-07-23T00:00:00,2017,July,Sunday,23,204,14,2017-07-23T00:00:00,2017,July,Sunday,23,204,14,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,SC,HYDRA MEN'S HYB,RG,24,BLU,400.0,STOLEN,19806,"{'type': 'Point', 'coordinates': (-79.43788356, 43.64033271)}"
-19828,25099,GO-20179015743,THEFT UNDER - BICYCLE,2017-09-18T00:00:00,2017,September,Monday,18,261,16,2017-09-25T00:00:00,2017,September,Monday,25,268,16,D11,Toronto,86,Roncesvalles (86),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,TOWNIE,OT,21,GRY,200.0,STOLEN,19807,"{'type': 'Point', 'coordinates': (-79.44800231, 43.64370727)}"
-19829,25100,GO-20179015790,THEFT UNDER - BICYCLE,2017-09-21T00:00:00,2017,September,Thursday,21,264,16,2017-09-25T00:00:00,2017,September,Monday,25,268,23,D11,Toronto,86,Roncesvalles (86),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RM,RMB RC70,RG,20,WHI,1000.0,STOLEN,19808,"{'type': 'Point', 'coordinates': (-79.44182746, 43.64210107)}"
-19830,25104,GO-20179016665,THEFT UNDER - BICYCLE,2017-10-04T00:00:00,2017,October,Wednesday,4,277,21,2017-10-07T00:00:00,2017,October,Saturday,7,280,12,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ENTRADA,RG,7,BLU,1200.0,STOLEN,19809,"{'type': 'Point', 'coordinates': (-79.44438004, 43.64064719)}"
-19831,25107,GO-20179020437,THEFT UNDER - SHOPLIFTING,2017-11-23T00:00:00,2017,November,Thursday,23,327,11,2017-11-24T00:00:00,2017,November,Friday,24,328,11,D11,Toronto,86,Roncesvalles (86),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,X4 MG,SC,1,BLK,377.0,STOLEN,19810,"{'type': 'Point', 'coordinates': (-79.44935432, 43.64720514)}"
-19832,25108,GO-20179021651,THEFT UNDER,2017-12-02T00:00:00,2017,December,Saturday,2,336,23,2017-12-08T00:00:00,2017,December,Friday,8,342,14,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,OT,GMC DENALI ROAD,RC,21,RED,300.0,STOLEN,19811,"{'type': 'Point', 'coordinates': (-79.4419773, 43.64806091)}"
-19833,25118,GO-20189023408,THEFT UNDER - BICYCLE,2018-07-21T00:00:00,2018,July,Saturday,21,202,15,2018-07-22T00:00:00,2018,July,Sunday,22,203,13,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,CA,,MT,7,ONG,,STOLEN,19812,"{'type': 'Point', 'coordinates': (-79.45007649, 43.65305166)}"
-19834,25123,GO-20189025853,THEFT UNDER - BICYCLE,2018-08-09T00:00:00,2018,August,Thursday,9,221,23,2018-08-10T00:00:00,2018,August,Friday,10,222,13,D11,Toronto,86,Roncesvalles (86),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MILANO,OT,21,BLK,750.0,STOLEN,19813,"{'type': 'Point', 'coordinates': (-79.45003169, 43.64894777)}"
-19835,25128,GO-20189033270,THEFT UNDER - BICYCLE,2018-10-05T00:00:00,2018,October,Friday,5,278,23,2018-10-08T00:00:00,2018,October,Monday,8,281,18,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SIRRUS EXPERT,OT,21,SIL,1400.0,STOLEN,19814,"{'type': 'Point', 'coordinates': (-79.44800231, 43.64370727)}"
-19836,25136,GO-2019823578,THEFT UNDER - BICYCLE,2019-05-06T00:00:00,2019,May,Monday,6,126,19,2019-05-06T00:00:00,2019,May,Monday,6,126,21,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,CRUISER,OT,10,DGRGLD,375.0,STOLEN,19815,"{'type': 'Point', 'coordinates': (-79.44215237, 43.64297284)}"
-19837,25137,GO-2019823578,THEFT UNDER - BICYCLE,2019-05-06T00:00:00,2019,May,Monday,6,126,19,2019-05-06T00:00:00,2019,May,Monday,6,126,21,D11,Toronto,86,Roncesvalles (86),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,CHARIOT,OT,0,,200.0,STOLEN,19816,"{'type': 'Point', 'coordinates': (-79.44215237, 43.64297284)}"
-19838,25139,GO-20199016257,THEFT UNDER,2019-05-25T00:00:00,2019,May,Saturday,25,145,1,2019-05-25T00:00:00,2019,May,Saturday,25,145,19,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,RA,21-SPEED FS BIK,RG,21,GRY,152.0,STOLEN,19817,"{'type': 'Point', 'coordinates': (-79.44731397, 43.6419326)}"
-19839,25143,GO-20199021823,THEFT UNDER,2019-07-10T00:00:00,2019,July,Wednesday,10,191,21,2019-07-11T00:00:00,2019,July,Thursday,11,192,10,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,OT,DOWNTOWN 701,TO,21,BLK,450.0,STOLEN,19818,"{'type': 'Point', 'coordinates': (-79.45140453, 43.65253397)}"
-19840,25154,GO-20191679343,B&E,2019-08-30T00:00:00,2019,August,Friday,30,242,17,2019-09-02T00:00:00,2019,September,Monday,2,245,17,D11,Toronto,86,Roncesvalles (86),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,MASH PARALLAX C,RG,1,WHI,2600.0,STOLEN,19819,"{'type': 'Point', 'coordinates': (-79.44916936, 43.65263227)}"
-19841,25382,GO-20209019057,THEFT UNDER,2020-07-30T00:00:00,2020,July,Thursday,30,212,16,2020-07-31T00:00:00,2020,July,Friday,31,213,8,D11,Toronto,86,Roncesvalles (86),"Apartment (Rooming House, Condo)",Apartment,TR,ROSCOE 7,MT,12,BLK,1806.0,STOLEN,19820,"{'type': 'Point', 'coordinates': (-79.45007649, 43.65305166)}"
-19842,128,GO-20179002716,B&E,2017-02-27T00:00:00,2017,February,Monday,27,58,21,2017-03-03T00:00:00,2017,March,Friday,3,62,8,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,OT,OPUS SCHERZO,RC,8,BLK,1000.0,STOLEN,19821,"{'type': 'Point', 'coordinates': (-79.47540421, 43.63962303)}"
-19843,156,GO-2017448087,B&E,2017-02-27T00:00:00,2017,February,Monday,27,58,21,2017-03-12T00:00:00,2017,March,Sunday,12,71,17,D11,Toronto,87,High Park-Swansea (87),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN,"RED DRAGON, SF",OT,1,RED,637.0,STOLEN,19822,"{'type': 'Point', 'coordinates': (-79.47540421, 43.63962303)}"
-19844,186,GO-20179004081,THEFT UNDER - BICYCLE,2017-04-01T00:00:00,2017,April,Saturday,1,91,16,2017-04-01T00:00:00,2017,April,Saturday,1,91,17,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,KHS,FLITE 100,RC,1,BLK,1000.0,STOLEN,19823,"{'type': 'Point', 'coordinates': (-79.47100511, 43.63695828)}"
-19845,263,GO-2017713934,THEFT UNDER,2017-03-22T00:00:00,2017,March,Wednesday,22,81,12,2017-04-23T00:00:00,2017,April,Sunday,23,113,17,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,,MT,21,BLK,2500.0,STOLEN,19824,"{'type': 'Point', 'coordinates': (-79.46894095, 43.63732513000001)}"
-19846,340,GO-20179005878,THEFT UNDER,2017-05-06T00:00:00,2017,May,Saturday,6,126,10,2017-05-08T00:00:00,2017,May,Monday,8,128,9,D11,Toronto,87,High Park-Swansea (87),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SCOTT,SPORTSTER,TO,12,PLE,300.0,STOLEN,19825,"{'type': 'Point', 'coordinates': (-79.45694719, 43.64664913)}"
-19847,1353,GO-20179014388,THEFT UNDER,2017-09-09T00:00:00,2017,September,Saturday,9,252,19,2017-09-10T00:00:00,2017,September,Sunday,10,253,13,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,1,BLK,650.0,STOLEN,19826,"{'type': 'Point', 'coordinates': (-79.45621543, 43.64488493)}"
-19848,1385,GO-20179014621,THEFT UNDER,2017-08-15T00:00:00,2017,August,Tuesday,15,227,0,2017-09-13T00:00:00,2017,September,Wednesday,13,256,0,D11,Toronto,87,High Park-Swansea (87),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,,OT,1,BLK,420.0,STOLEN,19827,"{'type': 'Point', 'coordinates': (-79.4636661, 43.65389971)}"
-19849,1429,GO-20179014941,THEFT UNDER - BICYCLE,2017-09-15T00:00:00,2017,September,Friday,15,258,17,2017-09-16T00:00:00,2017,September,Saturday,16,259,13,D11,Toronto,87,High Park-Swansea (87),"Private Property Structure (Pool, Shed, Detached Garage)",Other,IN,CRAZYHORSE HT26,MT,24,BLK,300.0,STOLEN,19828,"{'type': 'Point', 'coordinates': (-79.44962939, 43.64188461)}"
-19850,1436,GO-20179014997,THEFT UNDER - BICYCLE,2017-09-14T00:00:00,2017,September,Thursday,14,257,0,2017-09-17T00:00:00,2017,September,Sunday,17,260,14,D11,Toronto,87,High Park-Swansea (87),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,PROJEKT 21,OT,21,BLK,499.0,STOLEN,19829,"{'type': 'Point', 'coordinates': (-79.47100511, 43.63695828)}"
-19851,1493,GO-20179015502,THEFT UNDER - BICYCLE,2017-09-22T00:00:00,2017,September,Friday,22,265,18,2017-09-22T00:00:00,2017,September,Friday,22,265,18,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ZZZ,SPECIALIZED,RG,10,TRQ,800.0,STOLEN,19830,"{'type': 'Point', 'coordinates': (-79.45375997, 43.64151652)}"
-19852,1612,GO-20179016717,THEFT UNDER - BICYCLE,2017-10-06T00:00:00,2017,October,Friday,6,279,8,2017-10-08T00:00:00,2017,October,Sunday,8,281,9,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,TCR,RG,21,PLE,50.0,STOLEN,19831,"{'type': 'Point', 'coordinates': (-79.45498839, 43.65069744)}"
-19853,1740,GO-20179018207,THEFT UNDER - BICYCLE,2017-10-24T00:00:00,2017,October,Tuesday,24,297,20,2017-10-25T00:00:00,2017,October,Wednesday,25,298,20,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,OT,TRANSFER 30,RG,27,BLU,950.0,STOLEN,19832,"{'type': 'Point', 'coordinates': (-79.47100511, 43.63695828)}"
-19854,1927,GO-20179021674,THEFT UNDER - BICYCLE,2017-11-30T00:00:00,2017,November,Thursday,30,334,9,2017-12-08T00:00:00,2017,December,Friday,8,342,13,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,RG,18,RED,300.0,STOLEN,19833,"{'type': 'Point', 'coordinates': (-79.45202628, 43.64476108)}"
-19855,2057,GO-20189006405,THEFT UNDER - BICYCLE,2017-07-15T00:00:00,2017,July,Saturday,15,196,20,2018-02-28T00:00:00,2018,February,Wednesday,28,59,18,D11,Toronto,87,High Park-Swansea (87),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,SEEK-2,RG,24,DGR,556.0,STOLEN,19834,"{'type': 'Point', 'coordinates': (-79.45584508000002, 43.65264944)}"
-19856,2058,GO-20189006405,THEFT UNDER - BICYCLE,2017-07-15T00:00:00,2017,July,Saturday,15,196,20,2018-02-28T00:00:00,2018,February,Wednesday,28,59,18,D11,Toronto,87,High Park-Swansea (87),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,NINE 70,MT,24,BLU,1000.0,STOLEN,19835,"{'type': 'Point', 'coordinates': (-79.45584508000002, 43.65264944)}"
-19857,2191,GO-20199024844,THEFT UNDER,2019-07-23T00:00:00,2019,July,Tuesday,23,204,14,2019-08-04T00:00:00,2019,August,Sunday,4,216,20,D11,Toronto,87,High Park-Swansea (87),"Open Areas (Lakes, Parks, Rivers)",Outside,MO,FORCE 3.0,SC,3,SIL,100.0,STOLEN,19836,"{'type': 'Point', 'coordinates': (-79.4636661, 43.65389971)}"
-19858,2532,GO-20189018294,THEFT UNDER - BICYCLE,2018-06-10T00:00:00,2018,June,Sunday,10,161,21,2018-06-11T00:00:00,2018,June,Monday,11,162,20,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,1600,OT,21,BLU,200.0,STOLEN,19837,"{'type': 'Point', 'coordinates': (-79.48609592000001, 43.6465288)}"
-19859,2688,GO-20189020341,THEFT OF EBIKE UNDER $5000,2018-06-26T00:00:00,2018,June,Tuesday,26,177,13,2018-06-26T00:00:00,2018,June,Tuesday,26,177,19,D11,Toronto,87,High Park-Swansea (87),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,,EL,1,BLK,2666.0,STOLEN,19838,"{'type': 'Point', 'coordinates': (-79.4636661, 43.65389971)}"
-19860,2833,GO-20189022269,THEFT UNDER,2018-07-12T00:00:00,2018,July,Thursday,12,193,23,2018-07-13T00:00:00,2018,July,Friday,13,194,10,D11,Toronto,87,High Park-Swansea (87),Homeless Shelter / Mission,Other,NO,,RC,12,BLK,500.0,STOLEN,19839,"{'type': 'Point', 'coordinates': (-79.45309063, 43.65418382)}"
-19861,2885,GO-20189023011,THEFT UNDER,2018-07-11T00:00:00,2018,July,Wednesday,11,192,7,2018-07-19T00:00:00,2018,July,Thursday,19,200,9,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,TR,WSD 7.2 HYBRID,RG,10,BLU,1500.0,STOLEN,19840,"{'type': 'Point', 'coordinates': (-79.48659988, 43.64793625)}"
-19862,2915,GO-20189023392,THEFT UNDER,2018-07-21T00:00:00,2018,July,Saturday,21,202,15,2018-07-22T00:00:00,2018,July,Sunday,22,203,10,D11,Toronto,87,High Park-Swansea (87),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GF,ESCAPE 2,RG,18,BLU,450.0,STOLEN,19841,"{'type': 'Point', 'coordinates': (-79.44947137, 43.64148427)}"
-19863,2916,GO-20189023392,THEFT UNDER,2018-07-21T00:00:00,2018,July,Saturday,21,202,15,2018-07-22T00:00:00,2018,July,Sunday,22,203,10,D11,Toronto,87,High Park-Swansea (87),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KO,DEW PLUS,RG,21,BLK,500.0,STOLEN,19842,"{'type': 'Point', 'coordinates': (-79.44947137, 43.64148427)}"
-19864,2940,GO-20189023686,THEFT UNDER - BICYCLE,2018-07-24T00:00:00,2018,July,Tuesday,24,205,6,2018-07-24T00:00:00,2018,July,Tuesday,24,205,10,D11,Toronto,87,High Park-Swansea (87),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,TCR-CWX,RG,10,SIL,2000.0,STOLEN,19843,"{'type': 'Point', 'coordinates': (-79.45471349, 43.64981199000001)}"
-19865,3016,GO-20189024431,THEFT UNDER - BICYCLE,2018-07-27T00:00:00,2018,July,Friday,27,208,3,2018-07-29T00:00:00,2018,July,Sunday,29,210,16,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,,RC,18,,500.0,STOLEN,19844,"{'type': 'Point', 'coordinates': (-79.45266904, 43.64929332)}"
-19866,3062,GO-20189024945,THEFT UNDER - BICYCLE,2018-08-01T00:00:00,2018,August,Wednesday,1,213,9,2018-08-02T00:00:00,2018,August,Thursday,2,214,22,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,TO,12,LBL,350.0,STOLEN,19845,"{'type': 'Point', 'coordinates': (-79.45199482, 43.64759175)}"
-19867,3063,GO-20189024945,THEFT UNDER - BICYCLE,2018-08-01T00:00:00,2018,August,Wednesday,1,213,9,2018-08-02T00:00:00,2018,August,Thursday,2,214,22,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ARGON 18 ELECTR,RC,1,BLK,1400.0,STOLEN,19846,"{'type': 'Point', 'coordinates': (-79.45199482, 43.64759175)}"
-19868,3066,GO-20189025053,THEFT UNDER - BICYCLE,2018-08-03T00:00:00,2018,August,Friday,3,215,19,2018-08-03T00:00:00,2018,August,Friday,3,215,19,D11,Toronto,87,High Park-Swansea (87),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,THRIVE,RG,10,GRY,1200.0,STOLEN,19847,"{'type': 'Point', 'coordinates': (-79.44766531, 43.64283038)}"
-19869,3069,GO-20189025034,THEFT UNDER - BICYCLE,2018-08-02T00:00:00,2018,August,Thursday,2,214,19,2018-08-03T00:00:00,2018,August,Friday,3,215,16,D11,Toronto,87,High Park-Swansea (87),"Apartment (Rooming House, Condo)",Apartment,NO,VFR 5 FORMA,RG,24,WHI,808.0,STOLEN,19848,"{'type': 'Point', 'coordinates': (-79.45277241, 43.6533321)}"
-19870,3160,GO-20181446368,THEFT OF MOTOR VEHICLE,2018-08-06T00:00:00,2018,August,Monday,6,218,19,2018-08-07T00:00:00,2018,August,Tuesday,7,219,8,D11,Toronto,87,High Park-Swansea (87),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,C7 24,RG,1,LBL,350.0,STOLEN,19849,"{'type': 'Point', 'coordinates': (-79.48015528, 43.64942831)}"
-19871,2016,GO-2018228553,THEFT UNDER - BICYCLE,2018-02-01T00:00:00,2018,February,Thursday,1,32,11,2018-02-05T00:00:00,2018,February,Monday,5,36,19,D11,Toronto,88,High Park North (88),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,,OT,21,BLK,1000.0,STOLEN,19850,"{'type': 'Point', 'coordinates': (-79.45879124, 43.66253363)}"
-19872,9611,GO-20159002911,THEFT UNDER,2015-05-20T00:00:00,2015,May,Wednesday,20,140,12,2015-05-20T00:00:00,2015,May,Wednesday,20,140,12,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DB,TRANSPORTER,RG,15,BLK,350.0,STOLEN,19851,"{'type': 'Point', 'coordinates': (-79.47146175, 43.65604737000001)}"
-19873,2018,GO-2018228553,THEFT UNDER - BICYCLE,2018-02-01T00:00:00,2018,February,Thursday,1,32,11,2018-02-05T00:00:00,2018,February,Monday,5,36,19,D11,Toronto,88,High Park North (88),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,21,BLK,0.0,STOLEN,19852,"{'type': 'Point', 'coordinates': (-79.45879124, 43.66253363)}"
-19874,9717,GO-20159003299,THEFT UNDER,2015-05-23T00:00:00,2015,May,Saturday,23,143,21,2015-06-03T00:00:00,2015,June,Wednesday,3,154,9,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,26,RED,650.0,STOLEN,19853,"{'type': 'Point', 'coordinates': (-79.46520964, 43.65754485)}"
-19875,2132,GO-2018594495,THEFT OF EBIKE UNDER $5000,2018-03-27T00:00:00,2018,March,Tuesday,27,86,18,2018-04-03T00:00:00,2018,April,Tuesday,3,93,10,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,EMMO,HORNET,EL,1,BLK,1500.0,STOLEN,19854,"{'type': 'Point', 'coordinates': (-79.46681135, 43.65722821000001)}"
-19876,9811,GO-20159003658,THEFT UNDER,2015-06-12T00:00:00,2015,June,Friday,12,163,23,2015-06-16T00:00:00,2015,June,Tuesday,16,167,13,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,UK,,OT,21,GRY,1200.0,STOLEN,19855,"{'type': 'Point', 'coordinates': (-79.47419085, 43.65899414)}"
-19877,2164,GO-20189011821,THEFT UNDER - BICYCLE,2018-04-16T00:00:00,2018,April,Monday,16,106,10,2018-04-16T00:00:00,2018,April,Monday,16,106,22,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,3,,0.0,STOLEN,19856,"{'type': 'Point', 'coordinates': (-79.4636661, 43.65389971)}"
-19878,9853,GO-20159003841,THEFT UNDER,2015-06-22T00:00:00,2015,June,Monday,22,173,14,2015-06-22T00:00:00,2015,June,Monday,22,173,16,D11,Toronto,88,High Park North (88),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,MT,18,BLK,650.0,STOLEN,19857,"{'type': 'Point', 'coordinates': (-79.47114125, 43.65225731)}"
-19879,2170,GO-20189012002,THEFT UNDER - BICYCLE,2018-04-17T00:00:00,2018,April,Tuesday,17,107,20,2018-04-18T00:00:00,2018,April,Wednesday,18,108,11,D11,Toronto,88,High Park North (88),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KO,PADDY WAGON,RC,1,BLK,1000.0,STOLEN,19858,"{'type': 'Point', 'coordinates': (-79.46681135, 43.65722821000001)}"
-19880,9918,GO-20151103275,THEFT UNDER,2015-06-30T00:00:00,2015,June,Tuesday,30,181,18,2015-06-30T00:00:00,2015,June,Tuesday,30,181,20,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,S.E RACING,PK RIPPER,BM,1,BLU,600.0,STOLEN,19859,"{'type': 'Point', 'coordinates': (-79.47216325, 43.65802782)}"
-19881,2288,GO-20189014483,THEFT UNDER - BICYCLE,2018-05-10T00:00:00,2018,May,Thursday,10,130,8,2018-05-10T00:00:00,2018,May,Thursday,10,130,19,D11,Toronto,88,High Park North (88),Schools During Supervised Activity,Educational,GT,AGGRESSOR COMP,MT,21,BLK,550.0,STOLEN,19860,"{'type': 'Point', 'coordinates': (-79.47514354, 43.6576332)}"
-19882,10027,GO-20159004605,THEFT UNDER,2015-07-12T00:00:00,2015,July,Sunday,12,193,9,2015-07-12T00:00:00,2015,July,Sunday,12,193,17,D11,Toronto,88,High Park North (88),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,BUSH PILOT,MT,21,DBL,555.0,STOLEN,19861,"{'type': 'Point', 'coordinates': (-79.47056711, 43.65391858)}"
-19883,2402,GO-20189016404,THEFT UNDER,2018-05-13T00:00:00,2018,May,Sunday,13,133,16,2018-05-27T00:00:00,2018,May,Sunday,27,147,13,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,GI,ENVIE,RC,21,WHI,2500.0,STOLEN,19862,"{'type': 'Point', 'coordinates': (-79.4636661, 43.65389971)}"
-19884,2404,GO-20189016420,THEFT UNDER - BICYCLE,2018-05-16T00:00:00,2018,May,Wednesday,16,136,8,2018-05-27T00:00:00,2018,May,Sunday,27,147,16,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,RAINIER,MT,27,GRY,1200.0,STOLEN,19863,"{'type': 'Point', 'coordinates': (-79.45494727, 43.6615023)}"
-19885,2422,GO-20189016728,THEFT UNDER - BICYCLE,2018-05-29T00:00:00,2018,May,Tuesday,29,149,9,2018-05-29T00:00:00,2018,May,Tuesday,29,149,20,D11,Toronto,88,High Park North (88),Schools During Un-Supervised Activity,Educational,SC,,RG,21,PLE,300.0,STOLEN,19864,"{'type': 'Point', 'coordinates': (-79.47438481, 43.65598364)}"
-19886,2561,GO-20189018665,THEFT UNDER - BICYCLE,2018-06-14T00:00:00,2018,June,Thursday,14,165,11,2018-06-14T00:00:00,2018,June,Thursday,14,165,11,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,TR,7.2 FX DISC,OT,8,BLK,700.0,STOLEN,19865,"{'type': 'Point', 'coordinates': (-79.46596023, 43.65934643)}"
-19887,2586,GO-20189018936,THEFT UNDER,2018-06-08T00:00:00,2018,June,Friday,8,159,10,2018-06-16T00:00:00,2018,June,Saturday,16,167,12,D11,Toronto,88,High Park North (88),Schools During Supervised Activity,Educational,RA,REDUX 1,RG,8,YEL,715.0,STOLEN,19866,"{'type': 'Point', 'coordinates': (-79.47137179, 43.66030453)}"
-19888,2612,GO-20189019240,THEFT UNDER - BICYCLE,2018-06-17T00:00:00,2018,June,Sunday,17,168,13,2018-06-19T00:00:00,2018,June,Tuesday,19,170,8,D11,Toronto,88,High Park North (88),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,VERZA SPEED 30,RG,18,BGE,1100.0,STOLEN,19867,"{'type': 'Point', 'coordinates': (-79.46681135, 43.65722821000001)}"
-19889,2753,GO-20189021175,THEFT UNDER - BICYCLE,2018-07-04T00:00:00,2018,July,Wednesday,4,185,13,2018-07-04T00:00:00,2018,July,Wednesday,4,185,17,D11,Toronto,88,High Park North (88),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,,RG,21,GRY,500.0,STOLEN,19868,"{'type': 'Point', 'coordinates': (-79.45877493, 43.65499191)}"
-19890,2754,GO-20189021175,THEFT UNDER - BICYCLE,2018-07-04T00:00:00,2018,July,Wednesday,4,185,13,2018-07-04T00:00:00,2018,July,Wednesday,4,185,17,D11,Toronto,88,High Park North (88),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,RG,21,DBL,500.0,STOLEN,19869,"{'type': 'Point', 'coordinates': (-79.45877493, 43.65499191)}"
-19891,3190,GO-20189026248,THEFT UNDER - BICYCLE,2018-08-12T00:00:00,2018,August,Sunday,12,224,23,2018-08-13T00:00:00,2018,August,Monday,13,225,19,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,MA,MUIRWOODS,MT,24,BLK,300.0,STOLEN,19870,"{'type': 'Point', 'coordinates': (-79.46818422, 43.65633298)}"
-19892,3240,GO-20189026722,THEFT UNDER - BICYCLE,2018-08-16T00:00:00,2018,August,Thursday,16,228,1,2018-08-16T00:00:00,2018,August,Thursday,16,228,21,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,AVALANCHE SPORT,MT,27,RED,600.0,STOLEN,19871,"{'type': 'Point', 'coordinates': (-79.45579319, 43.66238931)}"
-19893,3368,GO-20189028632,THEFT UNDER - BICYCLE,2018-08-29T00:00:00,2018,August,Wednesday,29,241,20,2018-08-31T00:00:00,2018,August,Friday,31,243,10,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,10,RED,650.0,STOLEN,19872,"{'type': 'Point', 'coordinates': (-79.46520964, 43.65754485)}"
-19894,3399,GO-20189029239,THEFT UNDER - BICYCLE,2018-09-05T00:00:00,2018,September,Wednesday,5,248,16,2018-09-05T00:00:00,2018,September,Wednesday,5,248,16,D11,Toronto,88,High Park North (88),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,DEW PLUS,MT,10,BLU,0.0,STOLEN,19873,"{'type': 'Point', 'coordinates': (-79.458615, 43.65501975)}"
-19895,3481,GO-20181717414,B&E,2018-09-16T00:00:00,2018,September,Sunday,16,259,0,2018-09-16T00:00:00,2018,September,Sunday,16,259,17,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN,UNKNOWN,OT,0,BLK,,STOLEN,19874,"{'type': 'Point', 'coordinates': (-79.46867482, 43.65282034)}"
-19896,3482,GO-20181717414,B&E,2018-09-16T00:00:00,2018,September,Sunday,16,259,0,2018-09-16T00:00:00,2018,September,Sunday,16,259,17,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN,UNKNOWN,OT,0,WHI,,STOLEN,19875,"{'type': 'Point', 'coordinates': (-79.46867482, 43.65282034)}"
-19897,3656,GO-20189033530,THEFT UNDER - BICYCLE,2018-10-01T00:00:00,2018,October,Monday,1,274,1,2018-10-10T00:00:00,2018,October,Wednesday,10,283,14,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,SC,TRICYCLE,TR,1,BLU,480.0,STOLEN,19876,"{'type': 'Point', 'coordinates': (-79.46520964, 43.65754485)}"
-19898,3728,GO-20189034663,THEFT UNDER - BICYCLE,2018-10-19T00:00:00,2018,October,Friday,19,292,1,2018-10-19T00:00:00,2018,October,Friday,19,292,8,D11,Toronto,88,High Park North (88),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,MT,21,BLK,200.0,STOLEN,19877,"{'type': 'Point', 'coordinates': (-79.46168754, 43.66188897)}"
-19899,3784,GO-20182004418,THEFT FROM MOTOR VEHICLE UNDER,2018-10-21T00:00:00,2018,October,Sunday,21,294,14,2018-10-30T00:00:00,2018,October,Tuesday,30,303,20,D11,Toronto,88,High Park North (88),"Open Areas (Lakes, Parks, Rivers)",Outside,FUJI,,MT,6,,800.0,STOLEN,19878,"{'type': 'Point', 'coordinates': (-79.4595345, 43.65992373)}"
-19900,3785,GO-20182004418,THEFT FROM MOTOR VEHICLE UNDER,2018-10-21T00:00:00,2018,October,Sunday,21,294,14,2018-10-30T00:00:00,2018,October,Tuesday,30,303,20,D11,Toronto,88,High Park North (88),"Open Areas (Lakes, Parks, Rivers)",Outside,LOUIS GARNEAU,,MT,4,GRY,650.0,STOLEN,19879,"{'type': 'Point', 'coordinates': (-79.4595345, 43.65992373)}"
-19901,3863,GO-20189038461,THEFT UNDER - BICYCLE,2018-11-02T00:00:00,2018,November,Friday,2,306,8,2018-11-16T00:00:00,2018,November,Friday,16,320,9,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,24,BLU,600.0,STOLEN,19880,"{'type': 'Point', 'coordinates': (-79.4636661, 43.65389971)}"
-19902,4006,GO-20199001643,THEFT UNDER,2019-01-11T00:00:00,2019,January,Friday,11,11,8,2019-01-13T00:00:00,2019,January,Sunday,13,13,21,D11,Toronto,88,High Park North (88),"Open Areas (Lakes, Parks, Rivers)",Outside,GT,TRANSEO COMP 20,RG,21,DBL,700.0,STOLEN,19881,"{'type': 'Point', 'coordinates': (-79.47438481, 43.65598364)}"
-19903,4145,GO-20199011147,THEFT UNDER,2019-03-22T00:00:00,2019,March,Friday,22,81,22,2019-04-08T00:00:00,2019,April,Monday,8,98,22,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,SC,,TO,21,BRN,0.0,STOLEN,19882,"{'type': 'Point', 'coordinates': (-79.46525867, 43.65353843)}"
-19904,4155,GO-2019655609,THEFT UNDER,2019-03-20T00:00:00,2019,March,Wednesday,20,79,17,2019-04-11T00:00:00,2019,April,Thursday,11,101,17,D11,Toronto,88,High Park North (88),Ttc Subway Station,Transit,DAYMARK,EM1,EL,1,PLE,,STOLEN,19883,"{'type': 'Point', 'coordinates': (-79.46000875, 43.65470772)}"
-19905,4290,GO-20199015336,THEFT UNDER,2019-05-16T00:00:00,2019,May,Thursday,16,136,19,2019-05-16T00:00:00,2019,May,Thursday,16,136,22,D11,Toronto,88,High Park North (88),Bar / Restaurant,Commercial,OT,COMP,MT,27,BLK,1017.0,STOLEN,19884,"{'type': 'Point', 'coordinates': (-79.45419292, 43.66073739)}"
-19906,4301,GO-20199015557,INCIDENT,2019-05-15T00:00:00,2019,May,Wednesday,15,135,23,2019-05-18T00:00:00,2019,May,Saturday,18,138,18,D11,Toronto,88,High Park North (88),Go Station,Transit,GI,,RG,12,PLE,650.0,STOLEN,19885,"{'type': 'Point', 'coordinates': (-79.45291803, 43.65820625)}"
-19907,4452,GO-20199018131,THEFT UNDER,2019-06-09T00:00:00,2019,June,Sunday,9,160,22,2019-06-10T00:00:00,2019,June,Monday,10,161,23,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,NO,STORM 7.2,MT,24,GRY,769.0,STOLEN,19886,"{'type': 'Point', 'coordinates': (-79.46520964, 43.65754485)}"
-19908,4516,GO-20199018971,THEFT UNDER,2019-06-15T00:00:00,2019,June,Saturday,15,166,17,2019-06-17T00:00:00,2019,June,Monday,17,168,16,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,CA,TOURING,TO,24,BLU,500.0,STOLEN,19887,"{'type': 'Point', 'coordinates': (-79.46525867, 43.65353843)}"
-19909,4730,GO-20199021732,THEFT UNDER,2019-07-09T00:00:00,2019,July,Tuesday,9,190,22,2019-07-10T00:00:00,2019,July,Wednesday,10,191,15,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,CA,,RG,24,SIL,600.0,STOLEN,19888,"{'type': 'Point', 'coordinates': (-79.45830641, 43.6614004)}"
-19910,4731,GO-20199021732,THEFT UNDER,2019-07-09T00:00:00,2019,July,Tuesday,9,190,22,2019-07-10T00:00:00,2019,July,Wednesday,10,191,15,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,24,PLE,600.0,STOLEN,19889,"{'type': 'Point', 'coordinates': (-79.45830641, 43.6614004)}"
-19911,4732,GO-20199021732,THEFT UNDER,2019-07-09T00:00:00,2019,July,Tuesday,9,190,22,2019-07-10T00:00:00,2019,July,Wednesday,10,191,15,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,OT,DELUXE CHILD CA,OT,1,GRY,100.0,STOLEN,19890,"{'type': 'Point', 'coordinates': (-79.45830641, 43.6614004)}"
-19912,4949,GO-20199024574,THEFT UNDER,2019-07-29T00:00:00,2019,July,Monday,29,210,16,2019-07-31T00:00:00,2019,July,Wednesday,31,212,23,D11,Toronto,88,High Park North (88),Ttc Subway Station,Transit,SU,CIRCUIT,RG,21,BLU,300.0,STOLEN,19891,"{'type': 'Point', 'coordinates': (-79.45267413, 43.65728748)}"
-19913,4984,GO-20199025240,THEFT UNDER,2019-08-06T00:00:00,2019,August,Tuesday,6,218,17,2019-08-07T00:00:00,2019,August,Wednesday,7,219,14,D11,Toronto,88,High Park North (88),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,16,GRY,1000.0,STOLEN,19892,"{'type': 'Point', 'coordinates': (-79.47114125, 43.65225731)}"
-19914,5279,GO-20199029319,THEFT UNDER,2019-09-06T00:00:00,2019,September,Friday,6,249,10,2019-09-09T00:00:00,2019,September,Monday,9,252,14,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,21,BLK,900.0,STOLEN,19893,"{'type': 'Point', 'coordinates': (-79.46525867, 43.65353843)}"
-19915,5297,GO-20199029595,THEFT UNDER,2019-09-07T00:00:00,2019,September,Saturday,7,250,22,2019-09-11T00:00:00,2019,September,Wednesday,11,254,13,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,OT,AVAIL 2,RG,8,DBL,900.0,STOLEN,19894,"{'type': 'Point', 'coordinates': (-79.46341369, 43.66006726)}"
-19916,5376,GO-20191826921,B&E W'INTENT,2019-09-22T00:00:00,2019,September,Sunday,22,265,9,2019-09-22T00:00:00,2019,September,Sunday,22,265,16,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,VENGE,RC,20,WHI,7000.0,STOLEN,19895,"{'type': 'Point', 'coordinates': (-79.4672054, 43.65398145)}"
-19917,5447,GO-20199032165,THEFT UNDER,2019-10-01T00:00:00,2019,October,Tuesday,1,274,8,2019-10-01T00:00:00,2019,October,Tuesday,1,274,9,D11,Toronto,88,High Park North (88),Schools During Supervised Activity,Educational,SU,,BM,8,GRY,130.0,STOLEN,19896,"{'type': 'Point', 'coordinates': (-79.47514354, 43.6576332)}"
-19918,5538,GO-20199034116,THEFT UNDER,2019-10-13T00:00:00,2019,October,Sunday,13,286,22,2019-10-16T00:00:00,2019,October,Wednesday,16,289,17,D11,Toronto,88,High Park North (88),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,8,DBL,500.0,STOLEN,19897,"{'type': 'Point', 'coordinates': (-79.46686398, 43.653199410000006)}"
-19919,5559,GO-20192034286,THEFT UNDER - BICYCLE,2019-10-21T00:00:00,2019,October,Monday,21,294,18,2019-10-21T00:00:00,2019,October,Monday,21,294,18,D11,Toronto,88,High Park North (88),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,AQUILA,CX-G,RC,11,BLK,3990.0,STOLEN,19898,"{'type': 'Point', 'coordinates': (-79.4762656, 43.65113608)}"
-19920,5693,GO-20191600359,THEFT UNDER - BICYCLE,2019-08-15T00:00:00,2019,August,Thursday,15,227,20,2019-08-22T00:00:00,2019,August,Thursday,22,234,14,D11,Toronto,88,High Park North (88),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RAZOR,A5 LUX,SC,0,BLU,,STOLEN,19899,"{'type': 'Point', 'coordinates': (-79.46341369, 43.66006726)}"
-19921,5776,GO-20199041585,THEFT UNDER,2019-11-20T00:00:00,2019,November,Wednesday,20,324,15,2019-12-20T00:00:00,2019,December,Friday,20,354,15,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,TR,MARLIN,MT,21,SIL,503.0,STOLEN,19900,"{'type': 'Point', 'coordinates': (-79.46520964, 43.65754485)}"
-19922,5983,GO-2020578835,THEFT FROM MOTOR VEHICLE UNDER,2020-03-20T00:00:00,2020,March,Friday,20,80,21,2020-03-21T00:00:00,2020,March,Saturday,21,81,15,D11,Toronto,88,High Park North (88),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CINELLI,,TO,18,BLK,1000.0,STOLEN,19901,"{'type': 'Point', 'coordinates': (-79.4636661, 43.65389971)}"
-19923,5992,GO-20209009893,THEFT UNDER,2020-03-25T00:00:00,2020,March,Wednesday,25,85,15,2020-03-26T00:00:00,2020,March,Thursday,26,86,15,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,SC,MERIDIEN,TR,1,MRN,600.0,STOLEN,19902,"{'type': 'Point', 'coordinates': (-79.4636661, 43.65389971)}"
-19924,6192,GO-20209013220,THEFT UNDER,2020-05-05T00:00:00,2020,May,Tuesday,5,126,20,2020-05-15T00:00:00,2020,May,Friday,15,136,23,D11,Toronto,88,High Park North (88),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KO,SUTRA,TO,27,DGR,0.0,STOLEN,19903,"{'type': 'Point', 'coordinates': (-79.46520964, 43.65754485)}"
-19925,6202,GO-2020923642,THEFT UNDER - BICYCLE,2020-05-18T00:00:00,2020,May,Monday,18,139,1,2020-05-19T00:00:00,2020,May,Tuesday,19,140,13,D11,Toronto,88,High Park North (88),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,RG,8,BLK,2500.0,STOLEN,19904,"{'type': 'Point', 'coordinates': (-79.47175121, 43.65212911)}"
-19926,6232,GO-20209013751,THEFT UNDER,2020-05-22T00:00:00,2020,May,Friday,22,143,17,2020-05-23T00:00:00,2020,May,Saturday,23,144,12,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,OT,PRESTIGE,RC,14,WHI,500.0,STOLEN,19905,"{'type': 'Point', 'coordinates': (-79.45267413, 43.65728748)}"
-19927,6233,GO-20209013758,THEFT UNDER,2020-05-21T00:00:00,2020,May,Thursday,21,142,20,2020-05-23T00:00:00,2020,May,Saturday,23,144,13,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,BLK,400.0,STOLEN,19906,"{'type': 'Point', 'coordinates': (-79.46818422, 43.65633298)}"
-19928,6249,GO-20209013902,THEFT UNDER,2020-05-22T00:00:00,2020,May,Friday,22,143,9,2020-05-26T00:00:00,2020,May,Tuesday,26,147,10,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,OT,ALLEZ,RC,20,BLU,400.0,STOLEN,19907,"{'type': 'Point', 'coordinates': (-79.4636661, 43.65389971)}"
-19929,6480,GO-20209016271,THEFT UNDER,2020-06-22T00:00:00,2020,June,Monday,22,174,8,2020-06-26T00:00:00,2020,June,Friday,26,178,20,D11,Toronto,88,High Park North (88),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,POMONA,RG,7,SIL,150.0,STOLEN,19908,"{'type': 'Point', 'coordinates': (-79.46818422, 43.65633298)}"
-19930,6534,GO-20209016854,THEFT UNDER,2020-07-03T00:00:00,2020,July,Friday,3,185,9,2020-07-04T00:00:00,2020,July,Saturday,4,186,20,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,CC,,RG,30,BLK,500.0,STOLEN,19909,"{'type': 'Point', 'coordinates': (-79.4672054, 43.65398145)}"
-19931,6663,GO-20209017951,THEFT UNDER,2020-07-19T00:00:00,2020,July,Sunday,19,201,4,2020-07-19T00:00:00,2020,July,Sunday,19,201,12,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,CINDER CONE,MT,12,BLK,1600.0,STOLEN,19910,"{'type': 'Point', 'coordinates': (-79.45934281000001, 43.65631607)}"
-19932,6721,GO-20209018415,THEFT UNDER,2020-07-24T00:00:00,2020,July,Friday,24,206,10,2020-07-24T00:00:00,2020,July,Friday,24,206,11,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,15,BLU,600.0,STOLEN,19911,"{'type': 'Point', 'coordinates': (-79.45685392, 43.65539614)}"
-19933,6739,GO-20209018563,THEFT UNDER,2020-07-15T00:00:00,2020,July,Wednesday,15,197,10,2020-07-26T00:00:00,2020,July,Sunday,26,208,7,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,OT,VINCERE,RG,10,BLK,0.0,STOLEN,19912,"{'type': 'Point', 'coordinates': (-79.46390142, 43.65783049)}"
-19934,6765,GO-20209018713,THEFT UNDER,2020-07-27T00:00:00,2020,July,Monday,27,209,9,2020-07-27T00:00:00,2020,July,Monday,27,209,18,D11,Toronto,88,High Park North (88),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,OT,7,,1200.0,STOLEN,19913,"{'type': 'Point', 'coordinates': (-79.45291803, 43.65820625)}"
-19935,6806,GO-20201390783,THEFT UNDER,2020-07-24T00:00:00,2020,July,Friday,24,206,11,2020-07-26T00:00:00,2020,July,Sunday,26,208,13,D11,Toronto,88,High Park North (88),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,CITY GLIDE,MT,21,GRN,400.0,STOLEN,19914,"{'type': 'Point', 'coordinates': (-79.46919208, 43.65868281)}"
-19936,6844,GO-20209019185,THEFT UNDER,2020-07-26T00:00:00,2020,July,Sunday,26,208,1,2020-08-02T00:00:00,2020,August,Sunday,2,215,10,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,6,,400.0,STOLEN,19915,"{'type': 'Point', 'coordinates': (-79.46919208, 43.65868281)}"
-19937,6878,GO-20209019490,THEFT UNDER,2020-07-30T00:00:00,2020,July,Thursday,30,212,21,2020-08-05T00:00:00,2020,August,Wednesday,5,218,21,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,,TO,8,BLK,500.0,STOLEN,19916,"{'type': 'Point', 'coordinates': (-79.45750541, 43.6609544)}"
-19938,6961,GO-20201512900,THEFT UNDER - BICYCLE,2020-08-13T00:00:00,2020,August,Thursday,13,226,0,2020-08-13T00:00:00,2020,August,Thursday,13,226,0,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,SCHWINN,GTX2,MT,21,BLK,550.0,STOLEN,19917,"{'type': 'Point', 'coordinates': (-79.45585147, 43.65946376)}"
-19939,7001,GO-20209020674,THEFT UNDER,2020-08-17T00:00:00,2020,August,Monday,17,230,21,2020-08-19T00:00:00,2020,August,Wednesday,19,232,12,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,OT,ULTIMA 1.0,RG,21,GRY,500.0,STOLEN,19918,"{'type': 'Point', 'coordinates': (-79.46168754, 43.66188897)}"
-19940,7089,GO-20209021466,THEFT UNDER,2020-08-20T00:00:00,2020,August,Thursday,20,233,12,2020-08-26T00:00:00,2020,August,Wednesday,26,239,21,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,TR,2011 TREK 6700,MT,24,ONG,2500.0,STOLEN,19919,"{'type': 'Point', 'coordinates': (-79.46818422, 43.65633298)}"
-19941,7104,GO-20201619190,B&E,2020-08-25T00:00:00,2020,August,Tuesday,25,238,0,2020-08-27T00:00:00,2020,August,Thursday,27,240,22,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT ESCAPE 1,MD ROAD HYBRID,RG,0,BLKGRN,770.0,STOLEN,19920,"{'type': 'Point', 'coordinates': (-79.45395741, 43.65796563)}"
-19942,7208,GO-20209022665,THEFT UNDER,2020-09-07T00:00:00,2020,September,Monday,7,251,12,2020-09-08T00:00:00,2020,September,Tuesday,8,252,21,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,RA,,RG,18,LBL,700.0,STOLEN,19921,"{'type': 'Point', 'coordinates': (-79.46520964, 43.65754485)}"
-19943,7265,GO-20201756374,THEFT UNDER,2020-09-09T00:00:00,2020,September,Wednesday,9,253,22,2020-09-16T00:00:00,2020,September,Wednesday,16,260,14,D11,Toronto,88,High Park North (88),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,OT,0,,,STOLEN,19922,"{'type': 'Point', 'coordinates': (-79.4636661, 43.65389971)}"
-19944,7287,GO-20209023772,THEFT UNDER,2020-09-18T00:00:00,2020,September,Friday,18,262,9,2020-09-18T00:00:00,2020,September,Friday,18,262,14,D11,Toronto,88,High Park North (88),Schools During Supervised Activity,Educational,OT,CX MONOCOQUE,RC,12,BLU,1000.0,STOLEN,19923,"{'type': 'Point', 'coordinates': (-79.47137179, 43.66030453)}"
-19945,7425,GO-20209025739,THEFT UNDER,2020-10-07T00:00:00,2020,October,Wednesday,7,281,7,2020-10-08T00:00:00,2020,October,Thursday,8,282,8,D11,Toronto,88,High Park North (88),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,MT,28,DGR,350.0,STOLEN,19924,"{'type': 'Point', 'coordinates': (-79.4636661, 43.65389971)}"
-19946,7437,GO-20209026005,THEFT UNDER,2020-10-10T00:00:00,2020,October,Saturday,10,284,13,2020-10-10T00:00:00,2020,October,Saturday,10,284,14,D11,Toronto,88,High Park North (88),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,MT,11,BLU,4950.0,STOLEN,19925,"{'type': 'Point', 'coordinates': (-79.46026967, 43.65853843)}"
-19947,7507,GO-20209026907,THEFT UNDER,2020-10-18T00:00:00,2020,October,Sunday,18,292,23,2020-10-19T00:00:00,2020,October,Monday,19,293,11,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,CCM KROSSPORT 7,MT,21,BLK,500.0,STOLEN,19926,"{'type': 'Point', 'coordinates': (-79.45830641, 43.6614004)}"
-19948,7607,GO-20209029087,THEFT UNDER,2020-11-09T00:00:00,2020,November,Monday,9,314,14,2020-11-09T00:00:00,2020,November,Monday,9,314,14,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,OT,,TO,18,,2000.0,STOLEN,19927,"{'type': 'Point', 'coordinates': (-79.4636661, 43.65389971)}"
-19949,10202,GO-20151365165,THEFT UNDER,2015-07-27T00:00:00,2015,July,Monday,27,208,7,2015-08-09T00:00:00,2015,August,Sunday,9,221,17,D11,Toronto,88,High Park North (88),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,LOUIS GARNEAU,SC3,RC,36,GRY,650.0,STOLEN,19928,"{'type': 'Point', 'coordinates': (-79.45241445000002, 43.65632155)}"
-19950,10211,GO-20159005501,THEFT UNDER,2015-08-06T00:00:00,2015,August,Thursday,6,218,11,2015-08-08T00:00:00,2015,August,Saturday,8,220,11,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,KO,DEW,RG,24,SIL,600.0,STOLEN,19929,"{'type': 'Point', 'coordinates': (-79.4636661, 43.65389971)}"
-19951,10246,GO-20159005659,THEFT UNDER,2015-08-11T00:00:00,2015,August,Tuesday,11,223,20,2015-08-11T00:00:00,2015,August,Tuesday,11,223,21,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,TR,MARLIN,MT,1,BLK,1000.0,STOLEN,19930,"{'type': 'Point', 'coordinates': (-79.45685392, 43.65539614)}"
-19952,10247,GO-20159005659,THEFT UNDER,2015-08-11T00:00:00,2015,August,Tuesday,11,223,20,2015-08-11T00:00:00,2015,August,Tuesday,11,223,21,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,1,WHI,700.0,STOLEN,19931,"{'type': 'Point', 'coordinates': (-79.45685392, 43.65539614)}"
-19953,10254,GO-20159005707,THEFT UNDER,2015-08-12T00:00:00,2015,August,Wednesday,12,224,0,2015-08-12T00:00:00,2015,August,Wednesday,12,224,17,D11,Toronto,88,High Park North (88),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,21,,0.0,STOLEN,19932,"{'type': 'Point', 'coordinates': (-79.46818422, 43.65633298)}"
-19954,10309,GO-20159006032,THEFT UNDER,2015-08-01T00:00:00,2015,August,Saturday,1,213,13,2015-08-19T00:00:00,2015,August,Wednesday,19,231,13,D11,Toronto,88,High Park North (88),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MA,,MT,28,BLK,500.0,STOLEN,19933,"{'type': 'Point', 'coordinates': (-79.46681135, 43.65722821000001)}"
-19955,10443,GO-20159007022,THEFT UNDER,2015-08-30T00:00:00,2015,August,Sunday,30,242,11,2015-09-11T00:00:00,2015,September,Friday,11,254,10,D11,Toronto,88,High Park North (88),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,OT,10,LBL,0.0,STOLEN,19934,"{'type': 'Point', 'coordinates': (-79.46145146, 43.65830851)}"
-19956,10580,GO-20151694377,THEFT UNDER,2015-09-26T00:00:00,2015,September,Saturday,26,269,15,2015-10-02T00:00:00,2015,October,Friday,2,275,11,D11,Toronto,88,High Park North (88),Ttc Subway Station,Transit,OTHER,ONE,BM,0,GRY,750.0,STOLEN,19935,"{'type': 'Point', 'coordinates': (-79.45267413, 43.65728748)}"
-19957,10712,GO-20151880335,THEFT UNDER,2015-11-01T00:00:00,2015,November,Sunday,1,305,12,2015-11-01T00:00:00,2015,November,Sunday,1,305,21,D11,Toronto,88,High Park North (88),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,,RG,10,BLU,225.0,STOLEN,19936,"{'type': 'Point', 'coordinates': (-79.4672054, 43.65398145)}"
-19958,10769,GO-20159009724,THEFT UNDER,2015-10-30T00:00:00,2015,October,Friday,30,303,8,2015-11-14T00:00:00,2015,November,Saturday,14,318,10,D11,Toronto,88,High Park North (88),Schools During Un-Supervised Activity,Educational,UK,ESSENZA / OV90,OT,14,RED,500.0,STOLEN,19937,"{'type': 'Point', 'coordinates': (-79.47137179, 43.66030453)}"
-19959,10881,GO-20159011017,THEFT UNDER,2015-12-14T00:00:00,2015,December,Monday,14,348,16,2015-12-16T00:00:00,2015,December,Wednesday,16,350,16,D11,Toronto,88,High Park North (88),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,3600,RG,15,GRY,380.0,STOLEN,19938,"{'type': 'Point', 'coordinates': (-79.46525867, 43.65353843)}"
-19960,10945,GO-20169000787,THEFT UNDER,2016-01-15T00:00:00,2016,January,Friday,15,15,14,2016-01-24T00:00:00,2016,January,Sunday,24,24,14,D11,Toronto,88,High Park North (88),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,GARNEAU,MT,18,WHI,549.0,STOLEN,19939,"{'type': 'Point', 'coordinates': (-79.46818422, 43.65633298)}"
-19961,10946,GO-20169000787,THEFT UNDER,2016-01-15T00:00:00,2016,January,Friday,15,15,14,2016-01-24T00:00:00,2016,January,Sunday,24,24,14,D11,Toronto,88,High Park North (88),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,MT,18,BLK,449.0,STOLEN,19940,"{'type': 'Point', 'coordinates': (-79.46818422, 43.65633298)}"
-19962,11074,GO-20169002726,THEFT UNDER - BICYCLE,2016-03-24T00:00:00,2016,March,Thursday,24,84,0,2016-03-24T00:00:00,2016,March,Thursday,24,84,13,D11,Toronto,88,High Park North (88),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,STORM 6.2,MT,24,GRY,565.0,STOLEN,19941,"{'type': 'Point', 'coordinates': (-79.45579319, 43.66238931)}"
-19963,11098,GO-20169003071,THEFT UNDER,2016-03-09T00:00:00,2016,March,Wednesday,9,69,8,2016-04-04T00:00:00,2016,April,Monday,4,95,21,D11,Toronto,88,High Park North (88),Schools During Supervised Activity,Educational,OT,EUROPA,RC,10,PLE,500.0,STOLEN,19942,"{'type': 'Point', 'coordinates': (-79.46843759000001, 43.65689169)}"
-19964,11272,GO-20169004247,THEFT UNDER,2016-05-06T00:00:00,2016,May,Friday,6,127,18,2016-05-07T00:00:00,2016,May,Saturday,7,128,13,D11,Toronto,88,High Park North (88),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,REVEL 2,MT,21,RED,519.0,STOLEN,19943,"{'type': 'Point', 'coordinates': (-79.4755117, 43.65855547)}"
-19965,11431,GO-2016930592,THEFT UNDER - BICYCLE,2016-05-29T00:00:00,2016,May,Sunday,29,150,15,2016-05-29T00:00:00,2016,May,Sunday,29,150,20,D11,Toronto,88,High Park North (88),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,TCX,RC,18,WHI,,STOLEN,19944,"{'type': 'Point', 'coordinates': (-79.45685392, 43.65539614)}"
-19966,11781,GO-20169007107,THEFT UNDER,2016-07-12T00:00:00,2016,July,Tuesday,12,194,7,2016-07-12T00:00:00,2016,July,Tuesday,12,194,20,D11,Toronto,88,High Park North (88),Ttc Subway Station,Transit,MO,"26"""" MONGOOSE FR",MT,20,RED,150.0,STOLEN,19945,"{'type': 'Point', 'coordinates': (-79.45241445000002, 43.65632155)}"
-19967,11965,GO-20169008003,THEFT UNDER - BICYCLE,2016-07-24T00:00:00,2016,July,Sunday,24,206,16,2016-08-01T00:00:00,2016,August,Monday,1,214,16,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,GI,RAPID DASH 3,RC,50,YEL,800.0,STOLEN,19946,"{'type': 'Point', 'coordinates': (-79.46525867, 43.65353843)}"
-19968,12113,GO-20169008860,THEFT UNDER,2016-08-15T00:00:00,2016,August,Monday,15,228,23,2016-08-16T00:00:00,2016,August,Tuesday,16,229,12,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,DRAFT SE,RG,1,BLK,500.0,RECOVERED,19947,"{'type': 'Point', 'coordinates': (-79.47470757, 43.65552898)}"
-19969,12232,GO-20169009681,THEFT UNDER - BICYCLE,2016-08-29T00:00:00,2016,August,Monday,29,242,21,2016-08-30T00:00:00,2016,August,Tuesday,30,243,9,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,1,BLK,900.0,STOLEN,19948,"{'type': 'Point', 'coordinates': (-79.46234641, 43.66030066)}"
-19970,12249,GO-20161559022,THEFT UNDER - BICYCLE,2016-09-01T00:00:00,2016,September,Thursday,1,245,23,2016-09-02T00:00:00,2016,September,Friday,2,246,17,D11,Toronto,88,High Park North (88),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,SIRRUS,RG,21,BLKGRY,1000.0,STOLEN,19949,"{'type': 'Point', 'coordinates': (-79.45879124, 43.66253363)}"
-19971,12307,GO-20169010197,THEFT UNDER - BICYCLE,2016-09-08T00:00:00,2016,September,Thursday,8,252,22,2016-09-10T00:00:00,2016,September,Saturday,10,254,16,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,RAPID 4,RC,24,WHI,739.0,STOLEN,19950,"{'type': 'Point', 'coordinates': (-79.45876899, 43.65800142)}"
-19972,12449,GO-20169011077,THEFT UNDER - BICYCLE,2016-09-22T00:00:00,2016,September,Thursday,22,266,15,2016-09-25T00:00:00,2016,September,Sunday,25,269,15,D11,Toronto,88,High Park North (88),Schools During Un-Supervised Activity,Educational,OT,,OT,1,BLK,500.0,STOLEN,19951,"{'type': 'Point', 'coordinates': (-79.47137179, 43.66030453)}"
-19973,12486,GO-20169011235,THEFT UNDER,2016-09-28T00:00:00,2016,September,Wednesday,28,272,11,2016-09-28T00:00:00,2016,September,Wednesday,28,272,11,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,RG,18,WHI,600.0,STOLEN,19952,"{'type': 'Point', 'coordinates': (-79.45494727, 43.6615023)}"
-19974,12487,GO-20169011235,THEFT UNDER,2016-09-28T00:00:00,2016,September,Wednesday,28,272,11,2016-09-28T00:00:00,2016,September,Wednesday,28,272,11,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,RG,18,BLU,0.0,STOLEN,19953,"{'type': 'Point', 'coordinates': (-79.45494727, 43.6615023)}"
-19975,12488,GO-20169011235,THEFT UNDER,2016-09-28T00:00:00,2016,September,Wednesday,28,272,11,2016-09-28T00:00:00,2016,September,Wednesday,28,272,11,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,,RG,18,BLK,600.0,STOLEN,19954,"{'type': 'Point', 'coordinates': (-79.45494727, 43.6615023)}"
-19976,12489,GO-20169011254,THEFT UNDER - BICYCLE,2016-09-13T00:00:00,2016,September,Tuesday,13,257,18,2016-09-28T00:00:00,2016,September,Wednesday,28,272,18,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,GRAND PRIX,RC,24,LGR,900.0,STOLEN,19955,"{'type': 'Point', 'coordinates': (-79.46517084, 43.65949939)}"
-19977,12502,GO-20169011293,THEFT UNDER - BICYCLE,2016-09-20T00:00:00,2016,September,Tuesday,20,264,11,2016-09-29T00:00:00,2016,September,Thursday,29,273,11,D11,Toronto,88,High Park North (88),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,MT,21,SIL,700.0,STOLEN,19956,"{'type': 'Point', 'coordinates': (-79.47137179, 43.66030453)}"
-19978,12504,GO-20161733728,THEFT UNDER - BICYCLE,2016-09-28T00:00:00,2016,September,Wednesday,28,272,14,2016-09-29T00:00:00,2016,September,Thursday,29,273,17,D11,Toronto,88,High Park North (88),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CERVELO,,RC,26,WHIGLD,2500.0,STOLEN,19957,"{'type': 'Point', 'coordinates': (-79.45470926, 43.659712)}"
-19979,12505,GO-20161733728,THEFT UNDER - BICYCLE,2016-09-28T00:00:00,2016,September,Wednesday,28,272,14,2016-09-29T00:00:00,2016,September,Thursday,29,273,17,D11,Toronto,88,High Park North (88),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GARY FISHER,,MT,24,BLK,800.0,STOLEN,19958,"{'type': 'Point', 'coordinates': (-79.45470926, 43.659712)}"
-19980,12506,GO-20161733728,THEFT UNDER - BICYCLE,2016-09-28T00:00:00,2016,September,Wednesday,28,272,14,2016-09-29T00:00:00,2016,September,Thursday,29,273,17,D11,Toronto,88,High Park North (88),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,,RG,24,BLKRED,300.0,STOLEN,19959,"{'type': 'Point', 'coordinates': (-79.45470926, 43.659712)}"
-19981,12565,GO-20161779255,THEFT UNDER - BICYCLE,2016-10-06T00:00:00,2016,October,Thursday,6,280,8,2016-10-06T00:00:00,2016,October,Thursday,6,280,15,D11,Toronto,88,High Park North (88),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SE RACING,SOCAL FLYER,BM,0,WHIBLK,,STOLEN,19960,"{'type': 'Point', 'coordinates': (-79.47137179, 43.66030453)}"
-19982,12615,GO-20169012056,THEFT UNDER - BICYCLE,2016-10-14T00:00:00,2016,October,Friday,14,288,15,2016-10-14T00:00:00,2016,October,Friday,14,288,19,D11,Toronto,88,High Park North (88),Schools During Un-Supervised Activity,Educational,OT,FIXED GEAR,RG,1,BLK,600.0,STOLEN,19961,"{'type': 'Point', 'coordinates': (-79.47137179, 43.66030453)}"
-19983,12688,GO-20169012672,THEFT UNDER,2016-10-27T00:00:00,2016,October,Thursday,27,301,11,2016-10-27T00:00:00,2016,October,Thursday,27,301,17,D11,Toronto,88,High Park North (88),Schools During Un-Supervised Activity,Educational,KO,DEW,RG,24,GRY,565.0,STOLEN,19962,"{'type': 'Point', 'coordinates': (-79.47438481, 43.65598364)}"
-19984,12694,GO-20169012724,THEFT UNDER,2016-10-28T00:00:00,2016,October,Friday,28,302,13,2016-10-28T00:00:00,2016,October,Friday,28,302,18,D11,Toronto,88,High Park North (88),Schools During Supervised Activity,Educational,OT,REMUS DROP,TO,1,GRY,678.0,STOLEN,19963,"{'type': 'Point', 'coordinates': (-79.47137179, 43.66030453)}"
-19985,12755,GO-20169013282,THEFT UNDER - BICYCLE,2016-11-11T00:00:00,2016,November,Friday,11,316,2,2016-11-11T00:00:00,2016,November,Friday,11,316,21,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ROADMASTER CITY,RG,7,BLU,100.0,STOLEN,19964,"{'type': 'Point', 'coordinates': (-79.45585147, 43.65946376)}"
-19986,14887,GO-20209019447,THEFT UNDER,2020-08-04T00:00:00,2020,August,Tuesday,4,217,23,2020-08-05T00:00:00,2020,August,Wednesday,5,218,14,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,UK,REMUS P-49,RG,1,,700.0,STOLEN,19965,"{'type': 'Point', 'coordinates': (-79.4636661, 43.65389971)}"
-19987,14896,GO-20201675934,THEFT UNDER - BICYCLE,2020-08-22T00:00:00,2020,August,Saturday,22,235,12,2020-09-04T00:00:00,2020,September,Friday,4,248,21,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MOTOBECANE,,RC,18,BLK,1500.0,STOLEN,19966,"{'type': 'Point', 'coordinates': (-79.46820621, 43.66049477)}"
-19988,14907,GO-20209029062,THEFT UNDER,2020-08-26T00:00:00,2020,August,Wednesday,26,239,11,2020-11-09T00:00:00,2020,November,Monday,9,314,11,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,16,DBL,849.0,STOLEN,19967,"{'type': 'Point', 'coordinates': (-79.46818422, 43.65633298)}"
-19989,14908,GO-20209029062,THEFT UNDER,2020-08-26T00:00:00,2020,August,Wednesday,26,239,11,2020-11-09T00:00:00,2020,November,Monday,9,314,11,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,27,DBL,1000.0,STOLEN,19968,"{'type': 'Point', 'coordinates': (-79.46818422, 43.65633298)}"
-19990,15054,GO-20149004311,THEFT UNDER,2014-06-20T00:00:00,2014,June,Friday,20,171,17,2014-06-21T00:00:00,2014,June,Saturday,21,172,18,D11,Toronto,88,High Park North (88),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SU,,MT,21,GRY,290.0,STOLEN,19969,"{'type': 'Point', 'coordinates': (-79.46390142, 43.65783049)}"
-19991,15073,GO-20142881881,PROPERTY - FOUND,2014-09-10T00:00:00,2014,September,Wednesday,10,253,12,2014-09-10T00:00:00,2014,September,Wednesday,10,253,12,D11,Toronto,88,High Park North (88),"Open Areas (Lakes, Parks, Rivers)",Outside,SCHWINN,,MT,24,BLUE,,RECOVERED,19970,"{'type': 'Point', 'coordinates': (-79.4773643, 43.6598984)}"
-19992,15078,GO-20159001480,THEFT UNDER,2015-03-20T00:00:00,2015,March,Friday,20,79,14,2015-03-23T00:00:00,2015,March,Monday,23,82,10,D11,Toronto,88,High Park North (88),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,DUTCHI,RG,8,RED,800.0,STOLEN,19971,"{'type': 'Point', 'coordinates': (-79.45241445000002, 43.65632155)}"
-19993,15084,GO-20159002650,THEFT UNDER,2015-05-07T00:00:00,2015,May,Thursday,7,127,20,2015-05-11T00:00:00,2015,May,Monday,11,131,18,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,GI,10 BOULDER,MT,1,WHI,0.0,STOLEN,19972,"{'type': 'Point', 'coordinates': (-79.46525867, 43.65353843)}"
-19994,15086,GO-20159003144,THEFT UNDER,2015-05-27T00:00:00,2015,May,Wednesday,27,147,5,2015-05-27T00:00:00,2015,May,Wednesday,27,147,16,D11,Toronto,88,High Park North (88),Ttc Subway Station,Transit,RA,TARANTULA,MT,18,PLE,0.0,STOLEN,19973,"{'type': 'Point', 'coordinates': (-79.46686398, 43.653199410000006)}"
-19995,15088,GO-20159003505,THEFT UNDER,2015-06-05T00:00:00,2015,June,Friday,5,156,22,2015-06-10T00:00:00,2015,June,Wednesday,10,161,15,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,,MEYOU,RG,3,PLE,170.0,STOLEN,19974,"{'type': 'Point', 'coordinates': (-79.47329891, 43.65404663)}"
-19996,15099,GO-20159005175,THEFT UNDER,2015-07-27T00:00:00,2015,July,Monday,27,208,19,2015-07-30T00:00:00,2015,July,Thursday,30,211,16,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,RG,18,,500.0,STOLEN,19975,"{'type': 'Point', 'coordinates': (-79.45736924, 43.660099)}"
-19997,15107,GO-20159010604,THEFT UNDER,2015-12-04T00:00:00,2015,December,Friday,4,338,14,2015-12-08T00:00:00,2015,December,Tuesday,8,342,15,D11,Toronto,88,High Park North (88),Schools During Supervised Activity,Educational,,ROYAL 9.5 M,RC,17,BLK,300.0,STOLEN,19976,"{'type': 'Point', 'coordinates': (-79.47137179, 43.66030453)}"
-19998,15118,GO-2016842592,THEFT UNDER - BICYCLE,2016-05-16T00:00:00,2016,May,Monday,16,137,13,2016-05-16T00:00:00,2016,May,Monday,16,137,15,D11,Toronto,88,High Park North (88),Ttc Subway Station,Transit,CCM,MOUNTAIN,MT,21,BLU,,STOLEN,19977,"{'type': 'Point', 'coordinates': (-79.47548206, 43.65128643)}"
-19999,15122,GO-20169006601,THEFT UNDER - BICYCLE,2016-07-01T00:00:00,2016,July,Friday,1,183,7,2016-07-01T00:00:00,2016,July,Friday,1,183,8,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,DOMAN 4.5 DISC,RC,11,BLK,4000.0,STOLEN,19978,"{'type': 'Point', 'coordinates': (-79.46168754, 43.66188897)}"
-20000,15129,GO-20161389174,PROPERTY - FOUND,2016-08-06T00:00:00,2016,August,Saturday,6,219,21,2016-08-07T00:00:00,2016,August,Sunday,7,220,21,D11,Toronto,88,High Park North (88),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,JAMIS,CROSS COUNTRY S,MT,7,BLUBLK,,UNKNOWN,19979,"{'type': 'Point', 'coordinates': (-79.46502777, 43.66116793)}"
-20001,15132,GO-20169008988,THEFT UNDER - BICYCLE,2016-08-17T00:00:00,2016,August,Wednesday,17,230,20,2016-08-18T00:00:00,2016,August,Thursday,18,231,10,D11,Toronto,88,High Park North (88),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,ESCAPE 1,RG,27,BLU,600.0,STOLEN,19980,"{'type': 'Point', 'coordinates': (-79.46520964, 43.65754485)}"
-20002,15142,GO-20161646838,THEFT UNDER - BICYCLE,2016-09-15T00:00:00,2016,September,Thursday,15,259,0,2016-09-16T00:00:00,2016,September,Friday,16,260,9,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ROCKY MOUNTAIN,,OT,0,,600.0,STOLEN,19981,"{'type': 'Point', 'coordinates': (-79.47112643, 43.65525878)}"
-20003,15148,GO-20161810232,THEFT UNDER - BICYCLE,2016-10-06T00:00:00,2016,October,Thursday,6,280,14,2016-10-11T00:00:00,2016,October,Tuesday,11,285,19,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,OTHER,,MT,10,,,STOLEN,19982,"{'type': 'Point', 'coordinates': (-79.47997699, 43.66006104)}"
-20004,15169,GO-2017794639,THEFT UNDER,2017-05-05T00:00:00,2017,May,Friday,5,125,20,2017-05-05T00:00:00,2017,May,Friday,5,125,22,D11,Toronto,88,High Park North (88),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,,TO,3,LGR,720.0,STOLEN,19983,"{'type': 'Point', 'coordinates': (-79.46046592, 43.66218231)}"
-20005,15170,GO-2017794639,THEFT UNDER,2017-05-05T00:00:00,2017,May,Friday,5,125,20,2017-05-05T00:00:00,2017,May,Friday,5,125,22,D11,Toronto,88,High Park North (88),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,,TO,3,WHI,500.0,STOLEN,19984,"{'type': 'Point', 'coordinates': (-79.46046592, 43.66218231)}"
-20006,15189,GO-20179012173,THEFT UNDER - BICYCLE,2017-08-10T00:00:00,2017,August,Thursday,10,222,18,2017-08-11T00:00:00,2017,August,Friday,11,223,13,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,OT,HARD ROCK,RG,18,GRY,0.0,STOLEN,19985,"{'type': 'Point', 'coordinates': (-79.4636661, 43.65389971)}"
-20007,15194,GO-20179015714,THEFT UNDER - BICYCLE,2017-09-24T00:00:00,2017,September,Sunday,24,267,23,2017-09-25T00:00:00,2017,September,Monday,25,268,13,D11,Toronto,88,High Park North (88),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,MT,24,WHI,480.0,STOLEN,19986,"{'type': 'Point', 'coordinates': (-79.47137179, 43.66030453)}"
-20008,15201,GO-20179019760,THEFT UNDER - BICYCLE,2017-11-14T00:00:00,2017,November,Tuesday,14,318,17,2017-11-15T00:00:00,2017,November,Wednesday,15,319,23,D11,Toronto,88,High Park North (88),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,WINDSTREAM,RG,21,BLK,800.0,STOLEN,19987,"{'type': 'Point', 'coordinates': (-79.46818422, 43.65633298)}"
-20009,15205,GO-201858384,THEFT UNDER - BICYCLE,2017-12-27T00:00:00,2017,December,Wednesday,27,361,12,2018-01-10T00:00:00,2018,January,Wednesday,10,10,13,D11,Toronto,88,High Park North (88),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,FELT,SP20,MT,21,BLU,,STOLEN,19988,"{'type': 'Point', 'coordinates': (-79.46525867, 43.65353843)}"
-20010,15206,GO-20189004193,THEFT UNDER,2017-12-19T00:00:00,2017,December,Tuesday,19,353,17,2018-02-10T00:00:00,2018,February,Saturday,10,41,17,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,BI,,TO,15,BLK,600.0,STOLEN,19989,"{'type': 'Point', 'coordinates': (-79.46681135, 43.65722821000001)}"
-20011,15208,GO-20189006976,B&E,2018-03-05T00:00:00,2018,March,Monday,5,64,9,2018-03-06T00:00:00,2018,March,Tuesday,6,65,11,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,GRN,1000.0,STOLEN,19990,"{'type': 'Point', 'coordinates': (-79.45685392, 43.65539614)}"
-20012,15210,GO-2018504583,B&E,2018-03-19T00:00:00,2018,March,Monday,19,78,19,2018-03-20T00:00:00,2018,March,Tuesday,20,79,9,D11,Toronto,88,High Park North (88),"Private Property Structure (Pool, Shed, Detached Garage)",Other,JAMIS,X2,MT,21,SIL,500.0,RECOVERED,19991,"{'type': 'Point', 'coordinates': (-79.46168754, 43.66188897)}"
-20013,15217,GO-20189012554,THEFT UNDER - BICYCLE,2018-04-21T00:00:00,2018,April,Saturday,21,111,20,2018-04-23T00:00:00,2018,April,Monday,23,113,14,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,KO,DEW,MT,24,BLK,600.0,STOLEN,19992,"{'type': 'Point', 'coordinates': (-79.46390142, 43.65783049)}"
-20014,15218,GO-20189013311,THEFT UNDER - BICYCLE,2018-04-29T00:00:00,2018,April,Sunday,29,119,20,2018-04-30T00:00:00,2018,April,Monday,30,120,12,D11,Toronto,88,High Park North (88),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RC,9,BLK,850.0,STOLEN,19993,"{'type': 'Point', 'coordinates': (-79.45685392, 43.65539614)}"
-20015,15219,GO-2018772924,THEFT UNDER - BICYCLE,2018-04-29T00:00:00,2018,April,Sunday,29,119,20,2018-04-30T00:00:00,2018,April,Monday,30,120,14,D11,Toronto,88,High Park North (88),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TREK,,OT,21,GRY,600.0,STOLEN,19994,"{'type': 'Point', 'coordinates': (-79.46525867, 43.65353843)}"
-20016,15220,GO-20189016833,THEFT UNDER,2018-05-17T00:00:00,2018,May,Thursday,17,137,12,2018-05-30T00:00:00,2018,May,Wednesday,30,150,16,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,10,OTH,300.0,STOLEN,19995,"{'type': 'Point', 'coordinates': (-79.4672054, 43.65398145)}"
-20017,15221,GO-20189018911,THEFT UNDER - BICYCLE,2018-06-15T00:00:00,2018,June,Friday,15,166,18,2018-06-16T00:00:00,2018,June,Saturday,16,167,10,D11,Toronto,88,High Park North (88),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,27,BLK,1203.0,STOLEN,19996,"{'type': 'Point', 'coordinates': (-79.46525867, 43.65353843)}"
-20018,15234,GO-20181430724,THEFT UNDER,2018-08-04T00:00:00,2018,August,Saturday,4,216,13,2018-08-04T00:00:00,2018,August,Saturday,4,216,17,D11,Toronto,88,High Park North (88),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOW,UNKNOWN,EL,1,BLU,,STOLEN,19997,"{'type': 'Point', 'coordinates': (-79.47378033, 43.66180075)}"
-20019,15265,GO-2019967659,PROPERTY - FOUND,2019-05-26T00:00:00,2019,May,Sunday,26,146,12,2019-05-27T00:00:00,2019,May,Monday,27,147,11,D11,Toronto,89,Runnymede-Bloor West Village (89),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DIAMONDBACK,,MT,99,BLKWHI,,UNKNOWN,19998,"{'type': 'Point', 'coordinates': (-79.49259486, 43.65964387)}"
-20020,18519,GO-20143068207,B&E W'INTENT,2014-09-29T00:00:00,2014,September,Monday,29,272,23,2014-10-08T00:00:00,2014,October,Wednesday,8,281,17,D11,Toronto,89,Runnymede-Bloor West Village (89),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,MT,18,LGR,800.0,STOLEN,19999,"{'type': 'Point', 'coordinates': (-79.4810283, 43.66300942)}"
-20021,18520,GO-20143071431,B&E,2014-10-08T00:00:00,2014,October,Wednesday,8,281,22,2014-10-09T00:00:00,2014,October,Thursday,9,282,9,D11,Toronto,89,Runnymede-Bloor West Village (89),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,RG,10,,200.0,STOLEN,20000,"{'type': 'Point', 'coordinates': (-79.47997699, 43.66006104)}"
-20022,18523,GO-20143454639,THEFT UNDER,2014-12-09T00:00:00,2014,December,Tuesday,9,343,16,2014-12-09T00:00:00,2014,December,Tuesday,9,343,16,D11,Toronto,89,Runnymede-Bloor West Village (89),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,,OT,25,GRY,800.0,STOLEN,20001,"{'type': 'Point', 'coordinates': (-79.4762656, 43.65113608)}"
-20023,18528,GO-2015621860,THEFT UNDER,2015-04-15T00:00:00,2015,April,Wednesday,15,105,9,2015-04-15T00:00:00,2015,April,Wednesday,15,105,13,D11,Toronto,89,Runnymede-Bloor West Village (89),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,,MT,6,MRN,2000.0,STOLEN,20002,"{'type': 'Point', 'coordinates': (-79.48588632, 43.66562960000001)}"
-20024,18537,GO-20159003652,THEFT UNDER,2015-06-15T00:00:00,2015,June,Monday,15,166,16,2015-06-15T00:00:00,2015,June,Monday,15,166,22,D11,Toronto,89,Runnymede-Bloor West Village (89),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,20,RED,200.0,STOLEN,20003,"{'type': 'Point', 'coordinates': (-79.49559596, 43.66367072)}"
-20025,18571,GO-20169008333,THEFT UNDER,2016-08-03T00:00:00,2016,August,Wednesday,3,216,19,2016-08-07T00:00:00,2016,August,Sunday,7,220,11,D11,Toronto,89,Runnymede-Bloor West Village (89),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,PAVE LITE AQUIL,RG,18,GRY,900.0,STOLEN,20004,"{'type': 'Point', 'coordinates': (-79.48665675, 43.65470067)}"
-20026,18609,GO-20179010998,THEFT FROM MOTOR VEHICLE UNDER,2017-07-23T00:00:00,2017,July,Sunday,23,204,19,2017-07-25T00:00:00,2017,July,Tuesday,25,206,14,D11,Toronto,89,Runnymede-Bloor West Village (89),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BI,VOLPE,RC,21,BLK,1895.0,STOLEN,20005,"{'type': 'Point', 'coordinates': (-79.48272077, 43.66351641)}"
-20027,18652,GO-20189026911,THEFT UNDER - BICYCLE,2018-08-17T00:00:00,2018,August,Friday,17,229,17,2018-08-18T00:00:00,2018,August,Saturday,18,230,14,D11,Toronto,89,Runnymede-Bloor West Village (89),Ttc Subway Station,Transit,OT,,RC,1,GRN,600.0,STOLEN,20006,"{'type': 'Point', 'coordinates': (-79.48292971, 43.64968878)}"
-20028,9807,GO-20159003630,THEFT UNDER,2015-06-14T00:00:00,2015,June,Sunday,14,165,0,2015-06-15T00:00:00,2015,June,Monday,15,166,10,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,TR,8.4 DS,MT,21,GRY,1000.0,STOLEN,21097,"{'type': 'Point', 'coordinates': (-79.40587057, 43.66878216)}"
-20029,18689,GO-20199030741,THEFT UNDER,2019-09-19T00:00:00,2019,September,Thursday,19,262,9,2019-09-19T00:00:00,2019,September,Thursday,19,262,19,D11,Toronto,89,Runnymede-Bloor West Village (89),Schools During Supervised Activity,Educational,OT,FIXIE,RG,1,BLK,500.0,STOLEN,20007,"{'type': 'Point', 'coordinates': (-79.49017589, 43.66332749)}"
-20030,21575,GO-20149002000,THEFT FROM MOTOR VEHICLE UNDER,2014-03-10T00:00:00,2014,March,Monday,10,69,17,2014-03-11T00:00:00,2014,March,Tuesday,11,70,11,D11,Toronto,89,Runnymede-Bloor West Village (89),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RA,,RG,18,GRY,400.0,STOLEN,20008,"{'type': 'Point', 'coordinates': (-79.48272077, 43.66351641)}"
-20031,318,GO-20179005559,MISCHIEF TO VEHICLE,2017-05-01T00:00:00,2017,May,Monday,1,121,12,2017-05-01T00:00:00,2017,May,Monday,1,121,17,D12,Toronto,91,Weston-Pellam Park (91),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,OT,60,BLK,500.0,STOLEN,20009,"{'type': 'Point', 'coordinates': (-79.46385997, 43.67861681)}"
-20032,21576,GO-20149002000,THEFT FROM MOTOR VEHICLE UNDER,2014-03-10T00:00:00,2014,March,Monday,10,69,17,2014-03-11T00:00:00,2014,March,Tuesday,11,70,11,D11,Toronto,89,Runnymede-Bloor West Village (89),"Private Property Structure (Pool, Shed, Detached Garage)",Other,DB,,MT,21,RED,300.0,STOLEN,20010,"{'type': 'Point', 'coordinates': (-79.48272077, 43.66351641)}"
-20033,21579,GO-20142182630,THEFT UNDER,2014-05-30T00:00:00,2014,May,Friday,30,150,1,2014-05-30T00:00:00,2014,May,Friday,30,150,10,D11,Toronto,89,Runnymede-Bloor West Village (89),"Private Property Structure (Pool, Shed, Detached Garage)",Other,YAMEA,,EL,4,WHI,2500.0,STOLEN,20011,"{'type': 'Point', 'coordinates': (-79.4857706, 43.66526756)}"
-20034,21580,GO-20142182630,THEFT UNDER,2014-05-30T00:00:00,2014,May,Friday,30,150,1,2014-05-30T00:00:00,2014,May,Friday,30,150,10,D11,Toronto,89,Runnymede-Bloor West Village (89),"Private Property Structure (Pool, Shed, Detached Garage)",Other,BISON,,EL,4,SIL,1600.0,STOLEN,20012,"{'type': 'Point', 'coordinates': (-79.4857706, 43.66526756)}"
-20035,21581,GO-20142202392,B&E W'INTENT,2014-05-30T00:00:00,2014,May,Friday,30,150,18,2014-06-02T00:00:00,2014,June,Monday,2,153,7,D11,Toronto,89,Runnymede-Bloor West Village (89),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,1200,TO,21,BLKTRQ,1400.0,STOLEN,20013,"{'type': 'Point', 'coordinates': (-79.48134552, 43.65975811)}"
-20036,10261,GO-20151412587,THEFT UNDER,2015-08-17T00:00:00,2015,August,Monday,17,229,8,2015-08-17T00:00:00,2015,August,Monday,17,229,8,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,SCHWINN,210-FS,MT,21,BLUSIL,,UNKNOWN,21115,"{'type': 'Point', 'coordinates': (-79.39079343, 43.67319824)}"
-20037,21582,GO-20142202392,B&E W'INTENT,2014-05-30T00:00:00,2014,May,Friday,30,150,18,2014-06-02T00:00:00,2014,June,Monday,2,153,7,D11,Toronto,89,Runnymede-Bloor West Village (89),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,ESCAPE,OT,21,BLK,1100.0,STOLEN,20014,"{'type': 'Point', 'coordinates': (-79.48134552, 43.65975811)}"
-20038,21583,GO-20142203039,B&E,2014-05-30T00:00:00,2014,May,Friday,30,150,18,2014-06-02T00:00:00,2014,June,Monday,2,153,9,D11,Toronto,89,Runnymede-Bloor West Village (89),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,DEFY 1,OT,30,REDBLK,1500.0,STOLEN,20015,"{'type': 'Point', 'coordinates': (-79.48067923, 43.66222548)}"
-20039,21584,GO-20142203039,B&E,2014-05-30T00:00:00,2014,May,Friday,30,150,18,2014-06-02T00:00:00,2014,June,Monday,2,153,9,D11,Toronto,89,Runnymede-Bloor West Village (89),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NAKAMURA,,MT,24,SIL,300.0,STOLEN,20016,"{'type': 'Point', 'coordinates': (-79.48067923, 43.66222548)}"
-20040,21602,GO-20143079956,THEFT UNDER,2014-10-06T00:00:00,2014,October,Monday,6,279,10,2014-10-10T00:00:00,2014,October,Friday,10,283,15,D11,Toronto,89,Runnymede-Bloor West Village (89),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RALEIGH,,OT,21,SILWHI,450.0,STOLEN,20017,"{'type': 'Point', 'coordinates': (-79.48478393, 43.65015823)}"
-20041,21647,GO-20161098576,B&E,2016-06-21T00:00:00,2016,June,Tuesday,21,173,16,2016-06-23T00:00:00,2016,June,Thursday,23,175,16,D11,Toronto,89,Runnymede-Bloor West Village (89),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SUPERCYCLE,,MT,15,,120.0,STOLEN,20018,"{'type': 'Point', 'coordinates': (-79.49158252, 43.6630085)}"
-20042,21648,GO-20161110450,THEFT UNDER - BICYCLE,2016-06-22T00:00:00,2016,June,Wednesday,22,174,16,2016-06-26T00:00:00,2016,June,Sunday,26,178,15,D11,Toronto,89,Runnymede-Bloor West Village (89),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SUPERCYCLE,,MT,12,WHI,100.0,STOLEN,20019,"{'type': 'Point', 'coordinates': (-79.49158252, 43.6630085)}"
-20043,21704,GO-20189019985,THEFT UNDER - BICYCLE,2018-06-23T00:00:00,2018,June,Saturday,23,174,1,2018-06-24T00:00:00,2018,June,Sunday,24,175,0,D11,Toronto,89,Runnymede-Bloor West Village (89),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE 2,RG,24,BLU,750.0,STOLEN,20020,"{'type': 'Point', 'coordinates': (-79.48206778, 43.66558006)}"
-20044,21725,GO-2019578883,THEFT UNDER,2019-03-25T00:00:00,2019,March,Monday,25,84,7,2019-03-31T00:00:00,2019,March,Sunday,31,90,12,D11,Toronto,89,Runnymede-Bloor West Village (89),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BMC,TEAM MACHINE,RC,22,RED,1500.0,STOLEN,20021,"{'type': 'Point', 'coordinates': (-79.48387234, 43.659196890000004)}"
-20045,21739,GO-20199019640,THEFT UNDER,2019-06-21T00:00:00,2019,June,Friday,21,172,9,2019-06-22T00:00:00,2019,June,Saturday,22,173,7,D11,Toronto,89,Runnymede-Bloor West Village (89),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,DCO,RG,9,BLK,500.0,STOLEN,20022,"{'type': 'Point', 'coordinates': (-79.48899047, 43.66041393)}"
-20046,21786,GO-20209014806,THEFT UNDER,2020-05-24T00:00:00,2020,May,Sunday,24,145,0,2020-06-07T00:00:00,2020,June,Sunday,7,159,22,D11,Toronto,89,Runnymede-Bloor West Village (89),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RC,18,BLU,0.0,STOLEN,20023,"{'type': 'Point', 'coordinates': (-79.48405901, 43.66321185000001)}"
-20047,21987,GO-20209029018,THEFT UNDER,2020-10-01T00:00:00,2020,October,Thursday,1,275,12,2020-11-08T00:00:00,2020,November,Sunday,8,313,16,D11,Toronto,89,Runnymede-Bloor West Village (89),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,L.G URBANIA 4,RG,24,BLK,700.0,STOLEN,20024,"{'type': 'Point', 'coordinates': (-79.48280976, 43.65667705)}"
-20048,24374,GO-20189027170,THEFT UNDER - BICYCLE,2018-08-15T00:00:00,2018,August,Wednesday,15,227,1,2018-08-20T00:00:00,2018,August,Monday,20,232,17,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,CABOT,TO,21,SIL,0.0,STOLEN,20025,"{'type': 'Point', 'coordinates': (-79.42816584, 43.6614364)}"
-20049,25005,GO-20143204930,THEFT FROM MOTOR VEHICLE UNDER,2014-10-20T00:00:00,2014,October,Monday,20,293,20,2014-10-30T00:00:00,2014,October,Thursday,30,303,13,D11,Toronto,89,Runnymede-Bloor West Village (89),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,1,PLE,100.0,STOLEN,20026,"{'type': 'Point', 'coordinates': (-79.48067923, 43.66222548)}"
-20050,25013,GO-20159003139,THEFT UNDER,2015-05-27T00:00:00,2015,May,Wednesday,27,147,0,2015-05-27T00:00:00,2015,May,Wednesday,27,147,14,D11,Toronto,89,Runnymede-Bloor West Village (89),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,7,YEL,100.0,STOLEN,20027,"{'type': 'Point', 'coordinates': (-79.48389906, 43.66325847)}"
-20051,25014,GO-20159003139,THEFT UNDER,2015-05-27T00:00:00,2015,May,Wednesday,27,147,0,2015-05-27T00:00:00,2015,May,Wednesday,27,147,14,D11,Toronto,89,Runnymede-Bloor West Village (89),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,7000 WSD,TO,7,SIL,400.0,STOLEN,20028,"{'type': 'Point', 'coordinates': (-79.48389906, 43.66325847)}"
-20052,25015,GO-20159003139,THEFT UNDER,2015-05-27T00:00:00,2015,May,Wednesday,27,147,0,2015-05-27T00:00:00,2015,May,Wednesday,27,147,14,D11,Toronto,89,Runnymede-Bloor West Village (89),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,"MT 60 20"""" BOYS",MT,5,BLU,250.0,STOLEN,20029,"{'type': 'Point', 'coordinates': (-79.48389906, 43.66325847)}"
-20053,25016,GO-20159003139,THEFT UNDER,2015-05-27T00:00:00,2015,May,Wednesday,27,147,0,2015-05-27T00:00:00,2015,May,Wednesday,27,147,14,D11,Toronto,89,Runnymede-Bloor West Village (89),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,SEDONA,MT,7,BLU,170.0,STOLEN,20030,"{'type': 'Point', 'coordinates': (-79.48389906, 43.66325847)}"
-20054,25017,GO-2015896322,THEFT UNDER,2015-05-28T00:00:00,2015,May,Thursday,28,148,19,2015-05-29T00:00:00,2015,May,Friday,29,149,9,D11,Toronto,89,Runnymede-Bloor West Village (89),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,MT,10,BLU,175.0,STOLEN,20031,"{'type': 'Point', 'coordinates': (-79.4810283, 43.66300942)}"
-20055,25018,GO-2015896322,THEFT UNDER,2015-05-28T00:00:00,2015,May,Thursday,28,148,19,2015-05-29T00:00:00,2015,May,Friday,29,149,9,D11,Toronto,89,Runnymede-Bloor West Village (89),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,BM,0,BLK,175.0,STOLEN,20032,"{'type': 'Point', 'coordinates': (-79.4810283, 43.66300942)}"
-20056,25019,GO-20159003237,THEFT UNDER,2015-05-29T00:00:00,2015,May,Friday,29,149,14,2015-06-01T00:00:00,2015,June,Monday,1,152,15,D11,Toronto,89,Runnymede-Bloor West Village (89),Schools During Un-Supervised Activity,Educational,GT,SLAMMER,BM,1,DGR,300.0,STOLEN,20033,"{'type': 'Point', 'coordinates': (-79.49145711, 43.65990259)}"
-20057,25020,GO-2015921489,THEFT UNDER,2015-06-01T00:00:00,2015,June,Monday,1,152,21,2015-06-02T00:00:00,2015,June,Tuesday,2,153,10,D11,Toronto,89,Runnymede-Bloor West Village (89),"Private Property Structure (Pool, Shed, Detached Garage)",Other,FUJI,ABSOLUTE,RG,21,BLK,549.0,STOLEN,20034,"{'type': 'Point', 'coordinates': (-79.48601096, 43.66077493)}"
-20058,11702,GO-20169006709,THEFT UNDER,2016-07-01T00:00:00,2016,July,Friday,1,183,1,2016-07-04T00:00:00,2016,July,Monday,4,186,17,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,DYNAMO,RG,9,YEL,700.0,STOLEN,21172,"{'type': 'Point', 'coordinates': (-79.39690172, 43.67555234)}"
-20059,25021,GO-2015921489,THEFT UNDER,2015-06-01T00:00:00,2015,June,Monday,1,152,21,2015-06-02T00:00:00,2015,June,Tuesday,2,153,10,D11,Toronto,89,Runnymede-Bloor West Village (89),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SCHWINN,GATEWAY,RG,21,CRMWHI,175.0,STOLEN,20035,"{'type': 'Point', 'coordinates': (-79.48601096, 43.66077493)}"
-20060,25029,GO-20159006367,THEFT UNDER,2015-08-24T00:00:00,2015,August,Monday,24,236,18,2015-08-24T00:00:00,2015,August,Monday,24,236,21,D11,Toronto,89,Runnymede-Bloor West Village (89),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,MT,18,WHI,800.0,STOLEN,20036,"{'type': 'Point', 'coordinates': (-79.48205065, 43.6576136)}"
-20061,25043,GO-2016692314,THEFT UNDER - BICYCLE,2016-04-22T00:00:00,2016,April,Friday,22,113,8,2016-04-23T00:00:00,2016,April,Saturday,23,114,10,D11,Toronto,89,Runnymede-Bloor West Village (89),"Private Property Structure (Pool, Shed, Detached Garage)",Other,IRO,MARK V,OT,1,BLK,800.0,STOLEN,20037,"{'type': 'Point', 'coordinates': (-79.48387234, 43.659196890000004)}"
-20062,25057,GO-20169010256,THEFT UNDER,2016-09-09T00:00:00,2016,September,Friday,9,253,11,2016-09-10T00:00:00,2016,September,Saturday,10,254,21,D11,Toronto,89,Runnymede-Bloor West Village (89),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RC,1,BLK,500.0,STOLEN,20038,"{'type': 'Point', 'coordinates': (-79.49017589, 43.66332749)}"
-20063,25066,GO-20169014366,THEFT UNDER,2016-10-13T00:00:00,2016,October,Thursday,13,287,14,2016-12-08T00:00:00,2016,December,Thursday,8,343,3,D11,Toronto,89,Runnymede-Bloor West Village (89),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,UMBRIA 3,OT,27,RED,589.0,STOLEN,20039,"{'type': 'Point', 'coordinates': (-79.47894854000002, 43.6574967)}"
-20064,25089,GO-20179010242,THEFT UNDER,2017-07-14T00:00:00,2017,July,Friday,14,195,21,2017-07-15T00:00:00,2017,July,Saturday,15,196,9,D11,Toronto,89,Runnymede-Bloor West Village (89),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,DR DEW,RG,22,BLU,0.0,STOLEN,20040,"{'type': 'Point', 'coordinates': (-79.48707627, 43.65847912)}"
-20065,15364,GO-20142969651,THEFT UNDER,2014-09-20T00:00:00,2014,September,Saturday,20,263,21,2014-09-23T00:00:00,2014,September,Tuesday,23,266,20,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,URBAN,EL,1,BLK,800.0,STOLEN,20041,"{'type': 'Point', 'coordinates': (-79.42963126, 43.66224427)}"
-20066,20796,GO-20201529787,THEFT UNDER,2020-07-30T00:00:00,2020,July,Thursday,30,212,19,2020-08-15T00:00:00,2020,August,Saturday,15,228,9,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,FSA,,RG,1,BLKRED,600.0,STOLEN,20042,"{'type': 'Point', 'coordinates': (-79.42597851, 43.6691417)}"
-20067,7330,GO-20209024153,THEFT UNDER,2020-09-19T00:00:00,2020,September,Saturday,19,263,22,2020-09-23T00:00:00,2020,September,Wednesday,23,267,9,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,GF,,RG,7,BLU,350.0,STOLEN,20043,"{'type': 'Point', 'coordinates': (-79.44642226, 43.66672554)}"
-20068,25103,GO-20179016225,THEFT UNDER - BICYCLE,2017-10-01T00:00:00,2017,October,Sunday,1,274,1,2017-10-01T00:00:00,2017,October,Sunday,1,274,18,D11,Toronto,89,Runnymede-Bloor West Village (89),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RA,AVENIR,TO,20,MRN,600.0,STOLEN,20044,"{'type': 'Point', 'coordinates': (-79.48411574, 43.65256402)}"
-20069,25127,GO-20189032290,THEFT UNDER,2018-08-17T00:00:00,2018,August,Friday,17,229,16,2018-09-28T00:00:00,2018,September,Friday,28,271,18,D11,Toronto,89,Runnymede-Bloor West Village (89),Ttc Subway Station,Transit,NO,MOUNTAINEER,MT,10,BLK,1000.0,STOLEN,20045,"{'type': 'Point', 'coordinates': (-79.48444470000001, 43.64933139)}"
-20070,25140,GO-20191192001,THEFT OF MOTOR VEHICLE,2019-06-26T00:00:00,2019,June,Wednesday,26,177,23,2019-06-27T00:00:00,2019,June,Thursday,27,178,8,D11,Toronto,89,Runnymede-Bloor West Village (89),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,LOL SURPRISE,OT,1,PNKTRQ,120.0,STOLEN,20046,"{'type': 'Point', 'coordinates': (-79.48280976, 43.65667705)}"
-20071,100,GO-2017336609,THEFT UNDER - BICYCLE,2017-02-17T00:00:00,2017,February,Friday,17,48,14,2017-02-23T00:00:00,2017,February,Thursday,23,54,8,D11,Toronto,90,Junction Area (90),"Private Property Structure (Pool, Shed, Detached Garage)",Other,DEVINCI,STOCKHOLM,OT,12,RED,1000.0,STOLEN,20047,"{'type': 'Point', 'coordinates': (-79.46046592, 43.66218231)}"
-20072,103,GO-2017338707,THEFT UNDER - BICYCLE,2017-02-22T00:00:00,2017,February,Wednesday,22,53,11,2017-02-23T00:00:00,2017,February,Thursday,23,54,14,D11,Toronto,90,Junction Area (90),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MEC,,MT,12,MUL,500.0,UNKNOWN,20048,"{'type': 'Point', 'coordinates': (-79.45879124, 43.66253363)}"
-20073,104,GO-2017338707,THEFT UNDER - BICYCLE,2017-02-22T00:00:00,2017,February,Wednesday,22,53,11,2017-02-23T00:00:00,2017,February,Thursday,23,54,14,D11,Toronto,90,Junction Area (90),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,,MT,12,GRY,500.0,STOLEN,20049,"{'type': 'Point', 'coordinates': (-79.45879124, 43.66253363)}"
-20074,110,GO-2017358902,THEFT UNDER - BICYCLE,2017-02-24T00:00:00,2017,February,Friday,24,55,17,2017-02-26T00:00:00,2017,February,Sunday,26,57,20,D11,Toronto,90,Junction Area (90),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RIDLEY,CROSSFIRE,RC,10,RED,1400.0,STOLEN,20050,"{'type': 'Point', 'coordinates': (-79.46501947, 43.66658204)}"
-20075,491,GO-20179007118,THEFT UNDER,2017-05-26T00:00:00,2017,May,Friday,26,146,23,2017-05-28T00:00:00,2017,May,Sunday,28,148,17,D11,Toronto,90,Junction Area (90),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,24,WHI,100.0,STOLEN,20051,"{'type': 'Point', 'coordinates': (-79.47500707, 43.66518279)}"
-20076,492,GO-20179007118,THEFT UNDER,2017-05-26T00:00:00,2017,May,Friday,26,146,23,2017-05-28T00:00:00,2017,May,Sunday,28,148,17,D11,Toronto,90,Junction Area (90),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MA,,MT,24,ONG,635.0,STOLEN,20052,"{'type': 'Point', 'coordinates': (-79.47500707, 43.66518279)}"
-20077,493,GO-20179007118,THEFT UNDER,2017-05-26T00:00:00,2017,May,Friday,26,146,23,2017-05-28T00:00:00,2017,May,Sunday,28,148,17,D11,Toronto,90,Junction Area (90),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,1,BLK,300.0,STOLEN,20053,"{'type': 'Point', 'coordinates': (-79.47500707, 43.66518279)}"
-20078,646,GO-20179008344,THEFT UNDER - BICYCLE,2017-06-18T00:00:00,2017,June,Sunday,18,169,15,2017-06-18T00:00:00,2017,June,Sunday,18,169,16,D11,Toronto,90,Junction Area (90),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RC,21,BLK,2000.0,STOLEN,20054,"{'type': 'Point', 'coordinates': (-79.47554218, 43.666354930000004)}"
-20079,770,GO-20171193949,THEFT UNDER,2017-06-24T00:00:00,2017,June,Saturday,24,175,23,2017-07-04T00:00:00,2017,July,Tuesday,4,185,12,D11,Toronto,90,Junction Area (90),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,SEDONA,OT,10,,,STOLEN,20055,"{'type': 'Point', 'coordinates': (-79.47887293, 43.66646761)}"
-20080,801,GO-20171220962,THEFT UNDER - BICYCLE,2017-06-24T00:00:00,2017,June,Saturday,24,175,21,2017-07-08T00:00:00,2017,July,Saturday,8,189,8,D11,Toronto,90,Junction Area (90),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,,RG,7,BLU,100.0,STOLEN,20056,"{'type': 'Point', 'coordinates': (-79.47887293, 43.66646761)}"
-20081,1279,GO-20171585126,THEFT UNDER - BICYCLE,2017-09-01T00:00:00,2017,September,Friday,1,244,10,2017-09-01T00:00:00,2017,September,Friday,1,244,17,D12,Toronto,90,Junction Area (90),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,MT,18,BLU,3000.0,STOLEN,20057,"{'type': 'Point', 'coordinates': (-79.47319977, 43.67200685)}"
-20082,1912,GO-20173131808,THEFT OVER,2017-12-04T00:00:00,2017,December,Monday,4,338,15,2017-12-05T00:00:00,2017,December,Tuesday,5,339,12,D11,Toronto,90,Junction Area (90),"Apartment (Rooming House, Condo)",Apartment,CANNONDALE,BAD BOY,RC,36,BLK,5000.0,RECOVERED,20058,"{'type': 'Point', 'coordinates': (-79.46225124, 43.66539751)}"
-20083,2080,GO-20189008344,THEFT UNDER,2018-03-15T00:00:00,2018,March,Thursday,15,74,11,2018-03-17T00:00:00,2018,March,Saturday,17,76,19,D11,Toronto,90,Junction Area (90),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,HF,HUFFY MISSILE C,TA,1,BRN,700.0,STOLEN,20059,"{'type': 'Point', 'coordinates': (-79.46628236, 43.66953908)}"
-20084,3101,GO-201814486103,B&E,2018-08-02T00:00:00,2018,August,Thursday,2,214,20,2018-08-07T00:00:00,2018,August,Tuesday,7,219,15,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,,RC,10,GRY,500.0,STOLEN,20060,"{'type': 'Point', 'coordinates': (-79.43739907, 43.66471535)}"
-20085,2096,GO-2018517829,THEFT UNDER - BICYCLE,2018-03-13T00:00:00,2018,March,Tuesday,13,72,13,2018-03-22T00:00:00,2018,March,Thursday,22,81,8,D11,Toronto,90,Junction Area (90),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,ELEGANCE,703,OT,24,GRY,527.0,STOLEN,20061,"{'type': 'Point', 'coordinates': (-79.47322679, 43.66551434)}"
-20086,2229,GO-20189013354,THEFT UNDER,2018-04-30T00:00:00,2018,April,Monday,30,120,6,2018-04-30T00:00:00,2018,April,Monday,30,120,17,D11,Toronto,90,Junction Area (90),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,7,PLE,580.0,STOLEN,20062,"{'type': 'Point', 'coordinates': (-79.47887293, 43.66646761)}"
-20087,3177,GO-20181489420,THEFT UNDER - BICYCLE,2018-08-12T00:00:00,2018,August,Sunday,12,224,21,2018-08-13T00:00:00,2018,August,Monday,13,225,10,D12,Toronto,90,Junction Area (90),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,AVENTON,OT,1,WHI,1000.0,STOLEN,20063,"{'type': 'Point', 'coordinates': (-79.47319977, 43.67200685)}"
-20088,3254,GO-20181536284,THEFT UNDER - BICYCLE,2018-08-19T00:00:00,2018,August,Sunday,19,231,19,2018-08-20T00:00:00,2018,August,Monday,20,232,9,D11,Toronto,90,Junction Area (90),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,,OT,18,SIL,800.0,STOLEN,20064,"{'type': 'Point', 'coordinates': (-79.46694142, 43.66339883)}"
-20089,3466,GO-20189030412,THEFT UNDER - BICYCLE,2018-09-10T00:00:00,2018,September,Monday,10,253,13,2018-09-14T00:00:00,2018,September,Friday,14,257,13,D11,Toronto,90,Junction Area (90),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,FO,6,ONG,2500.0,STOLEN,20065,"{'type': 'Point', 'coordinates': (-79.46232193, 43.66349693)}"
-20090,3521,GO-20189031311,THEFT UNDER - BICYCLE,2018-09-20T00:00:00,2018,September,Thursday,20,263,8,2018-09-20T00:00:00,2018,September,Thursday,20,263,18,D11,Toronto,90,Junction Area (90),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,,RG,8,GRY,1500.0,STOLEN,20066,"{'type': 'Point', 'coordinates': (-79.48136048000002, 43.66380791)}"
-20091,3703,GO-20181904705,THEFT UNDER - BICYCLE,2018-10-14T00:00:00,2018,October,Sunday,14,287,7,2018-10-15T00:00:00,2018,October,Monday,15,288,14,D11,Toronto,90,Junction Area (90),"Private Property Structure (Pool, Shed, Detached Garage)",Other,FOCUS,URBAN ST. PRO,UN,11,BLK,1500.0,STOLEN,20067,"{'type': 'Point', 'coordinates': (-79.46111499000001, 43.66377121)}"
-20092,3717,GO-20189034486,THEFT UNDER - BICYCLE,2018-10-10T00:00:00,2018,October,Wednesday,10,283,19,2018-10-17T00:00:00,2018,October,Wednesday,17,290,18,D11,Toronto,90,Junction Area (90),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,CC,,MT,21,GRN,723.0,STOLEN,20068,"{'type': 'Point', 'coordinates': (-79.48136048000002, 43.66380791)}"
-20093,3719,GO-20189034486,THEFT UNDER - BICYCLE,2018-10-10T00:00:00,2018,October,Wednesday,10,283,19,2018-10-17T00:00:00,2018,October,Wednesday,17,290,18,D11,Toronto,90,Junction Area (90),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,CC,,MT,21,GRN,723.0,STOLEN,20069,"{'type': 'Point', 'coordinates': (-79.48136048000002, 43.66380791)}"
-20094,3789,GO-20182006617,THEFT OF EBIKE UNDER $5000,2018-10-26T00:00:00,2018,October,Friday,26,299,17,2018-10-31T00:00:00,2018,October,Wednesday,31,304,6,D11,Toronto,90,Junction Area (90),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,HAI BIKE,EL,0,GRYYEL,1800.0,STOLEN,20070,"{'type': 'Point', 'coordinates': (-79.45941715000001, 43.66413758)}"
-20095,3923,GO-20182211594,THEFT OVER,2018-11-29T00:00:00,2018,November,Thursday,29,333,2,2018-12-01T00:00:00,2018,December,Saturday,1,335,22,D11,Toronto,90,Junction Area (90),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,SEEK 3,RG,24,GRY,520.0,STOLEN,20071,"{'type': 'Point', 'coordinates': (-79.46922251, 43.66287984)}"
-20096,25036,GO-2016151277,THEFT UNDER,2016-01-25T00:00:00,2016,January,Monday,25,25,16,2016-01-26T00:00:00,2016,January,Tuesday,26,26,8,D11,Toronto,90,Junction Area (90),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,RG,10,BLU,,STOLEN,20420,"{'type': 'Point', 'coordinates': (-79.46721215, 43.66543715)}"
-20097,3924,GO-20182211594,THEFT OVER,2018-11-29T00:00:00,2018,November,Thursday,29,333,2,2018-12-01T00:00:00,2018,December,Saturday,1,335,22,D11,Toronto,90,Junction Area (90),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,DIVERGE,MT,10,SILONG,2100.0,STOLEN,20072,"{'type': 'Point', 'coordinates': (-79.46922251, 43.66287984)}"
-20098,3925,GO-20182211594,THEFT OVER,2018-11-29T00:00:00,2018,November,Thursday,29,333,2,2018-12-01T00:00:00,2018,December,Saturday,1,335,22,D11,Toronto,90,Junction Area (90),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KONA,HEI HEI TRAIL,MT,21,ONG,8000.0,STOLEN,20073,"{'type': 'Point', 'coordinates': (-79.46922251, 43.66287984)}"
-20099,4058,GO-20199006056,THEFT UNDER,2019-02-20T00:00:00,2019,February,Wednesday,20,51,0,2019-02-20T00:00:00,2019,February,Wednesday,20,51,15,D11,Toronto,90,Junction Area (90),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,MT,3,BLK,500.0,STOLEN,20074,"{'type': 'Point', 'coordinates': (-79.48002638, 43.6641067)}"
-20100,4449,GO-20191074910,THEFT FROM MOTOR VEHICLE OVER,2019-06-11T00:00:00,2019,June,Tuesday,11,162,2,2019-06-11T00:00:00,2019,June,Tuesday,11,162,10,D11,Toronto,90,Junction Area (90),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CERVELO,S5,RC,22,BLK,15000.0,STOLEN,20075,"{'type': 'Point', 'coordinates': (-79.47322679, 43.66551434)}"
-20101,18262,GO-20209000995,B&E,2020-01-08T00:00:00,2020,January,Wednesday,8,8,23,2020-01-09T00:00:00,2020,January,Thursday,9,9,14,D13,Toronto,92,Corso Italia-Davenport (92),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,FORCELLA,RC,21,BLK,1000.0,STOLEN,20076,"{'type': 'Point', 'coordinates': (-79.4467596, 43.67360146)}"
-20102,4707,GO-20199021517,THEFT UNDER,2019-07-08T00:00:00,2019,July,Monday,8,189,19,2019-07-08T00:00:00,2019,July,Monday,8,189,20,D11,Toronto,90,Junction Area (90),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RG,10,PLE,1000.0,STOLEN,20077,"{'type': 'Point', 'coordinates': (-79.46721215, 43.66543715)}"
-20103,5439,GO-20199031946,THEFT UNDER,2019-09-28T00:00:00,2019,September,Saturday,28,271,9,2019-09-29T00:00:00,2019,September,Sunday,29,272,9,D11,Toronto,90,Junction Area (90),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,TACTIC SL DISC,RC,22,ONG,5099.0,STOLEN,20078,"{'type': 'Point', 'coordinates': (-79.47500707, 43.66518279)}"
-20104,5633,GO-20199036199,THEFT UNDER,2019-10-25T00:00:00,2019,October,Friday,25,298,20,2019-11-02T00:00:00,2019,November,Saturday,2,306,11,D11,Toronto,90,Junction Area (90),"Apartment (Rooming House, Condo)",Apartment,OT,1971,OT,27,GRY,2230.0,STOLEN,20079,"{'type': 'Point', 'coordinates': (-79.46501947, 43.66658204)}"
-20105,5655,GO-20199036550,THEFT UNDER,2019-11-04T00:00:00,2019,November,Monday,4,308,16,2019-11-05T00:00:00,2019,November,Tuesday,5,309,21,D12,Toronto,90,Junction Area (90),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RA,ALYSA,TO,21,BLK,600.0,STOLEN,20080,"{'type': 'Point', 'coordinates': (-79.47108592, 43.67178188)}"
-20106,5758,GO-20192380730,THEFT UNDER,2019-07-25T00:00:00,2019,July,Thursday,25,206,12,2019-12-10T00:00:00,2019,December,Tuesday,10,344,14,D11,Toronto,90,Junction Area (90),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,STORM 7.2,MT,24,LBL,700.0,STOLEN,20081,"{'type': 'Point', 'coordinates': (-79.46502019, 43.66381122)}"
-20107,6391,GO-20201075456,THEFT UNDER - BICYCLE,2020-05-25T00:00:00,2020,May,Monday,25,146,20,2020-06-11T00:00:00,2020,June,Thursday,11,163,15,D11,Toronto,90,Junction Area (90),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,RG,1,BLKWHI,500.0,STOLEN,20082,"{'type': 'Point', 'coordinates': (-79.47554218, 43.666354930000004)}"
-20108,6588,GO-20209017320,THEFT UNDER,2020-07-09T00:00:00,2020,July,Thursday,9,191,21,2020-07-11T00:00:00,2020,July,Saturday,11,193,14,D11,Toronto,90,Junction Area (90),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,INDIE 2,RG,18,BLK,800.0,STOLEN,20083,"{'type': 'Point', 'coordinates': (-79.46227587, 43.66454585)}"
-20109,6952,GO-20209020125,THEFT UNDER,2020-08-12T00:00:00,2020,August,Wednesday,12,225,18,2020-08-13T00:00:00,2020,August,Thursday,13,226,18,D11,Toronto,90,Junction Area (90),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,CROSSROADS ST B,RG,10,BLU,350.0,STOLEN,20084,"{'type': 'Point', 'coordinates': (-79.47078458, 43.6625433)}"
-20110,7352,GO-20209024407,THEFT UNDER,2020-09-24T00:00:00,2020,September,Thursday,24,268,16,2020-09-24T00:00:00,2020,September,Thursday,24,268,22,D12,Toronto,90,Junction Area (90),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,OT,1,BLK,450.0,STOLEN,20085,"{'type': 'Point', 'coordinates': (-79.47274362, 43.67475455)}"
-20111,7506,GO-20201983862,B&E,2020-09-01T00:00:00,2020,September,Tuesday,1,245,0,2020-10-19T00:00:00,2020,October,Monday,19,293,13,D11,Toronto,90,Junction Area (90),"Apartment (Rooming House, Condo)",Apartment,OTHER,METRO,EL,1,WHI,2252.0,STOLEN,20086,"{'type': 'Point', 'coordinates': (-79.46501947, 43.66658204)}"
-20112,7701,GO-20201997016,THEFT OF EBIKE UNDER $5000,2020-10-15T00:00:00,2020,October,Thursday,15,289,19,2020-10-21T00:00:00,2020,October,Wednesday,21,295,12,D12,Toronto,90,Junction Area (90),"Private Property Structure (Pool, Shed, Detached Garage)",Other,AMEGO,INFINITE 27.5,EL,0,BLK,2600.0,RECOVERED,20087,"{'type': 'Point', 'coordinates': (-79.46691605, 43.67338914)}"
-20113,7756,GO-20149000867,THEFT UNDER,2014-01-29T00:00:00,2014,January,Wednesday,29,29,8,2014-01-30T00:00:00,2014,January,Thursday,30,30,17,D12,Toronto,90,Junction Area (90),"Construction Site (Warehouse, Trailer, Shed)",Commercial,NO,VFR 5,RG,10,BLK,1800.0,STOLEN,20088,"{'type': 'Point', 'coordinates': (-79.47319977, 43.67200685)}"
-20114,8013,GO-20149003714,INCIDENT,2014-05-31T00:00:00,2014,May,Saturday,31,151,18,2014-06-01T00:00:00,2014,June,Sunday,1,152,0,D11,Toronto,90,Junction Area (90),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,04S087 071-1379,OT,24,BLK,220.0,STOLEN,20089,"{'type': 'Point', 'coordinates': (-79.46232193, 43.66349693)}"
-20115,8253,GO-20149004455,THEFT UNDER,2014-06-26T00:00:00,2014,June,Thursday,26,177,1,2014-06-26T00:00:00,2014,June,Thursday,26,177,8,D11,Toronto,90,Junction Area (90),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,VFR2,RG,24,WHI,200.0,STOLEN,20090,"{'type': 'Point', 'coordinates': (-79.47142961, 43.66653692)}"
-20116,8254,GO-20149004455,THEFT UNDER,2014-06-26T00:00:00,2014,June,Thursday,26,177,1,2014-06-26T00:00:00,2014,June,Thursday,26,177,8,D11,Toronto,90,Junction Area (90),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FJ,ARCADIA,RC,1,BLK,50.0,STOLEN,20091,"{'type': 'Point', 'coordinates': (-79.47142961, 43.66653692)}"
-20117,8415,GO-20149004958,THEFT UNDER,2014-07-11T00:00:00,2014,July,Friday,11,192,14,2014-07-13T00:00:00,2014,July,Sunday,13,194,21,D11,Toronto,90,Junction Area (90),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,RC,3,GRN,350.0,STOLEN,20092,"{'type': 'Point', 'coordinates': (-79.46322679, 43.66541548)}"
-20118,8721,GO-20142774807,THEFT UNDER,2014-08-11T00:00:00,2014,August,Monday,11,223,12,2014-08-25T00:00:00,2014,August,Monday,25,237,17,D11,Toronto,90,Junction Area (90),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,BM,0,BLK,200.0,STOLEN,20093,"{'type': 'Point', 'coordinates': (-79.46761441, 43.66325179)}"
-20119,8759,GO-20149006350,THEFT UNDER,2014-08-21T00:00:00,2014,August,Thursday,21,233,14,2014-08-27T00:00:00,2014,August,Wednesday,27,239,15,D11,Toronto,90,Junction Area (90),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,10,BLK,75.0,STOLEN,20094,"{'type': 'Point', 'coordinates': (-79.45691691, 43.66338733)}"
-20120,8922,GO-20142934611,THEFT UNDER,2014-09-18T00:00:00,2014,September,Thursday,18,261,9,2014-09-18T00:00:00,2014,September,Thursday,18,261,13,D11,Toronto,90,Junction Area (90),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,MARIN OR MARINO,,OT,10,SIL,400.0,STOLEN,20095,"{'type': 'Point', 'coordinates': (-79.46646902, 43.670034)}"
-20121,8932,GO-20149007074,THEFT UNDER,2014-09-20T00:00:00,2014,September,Saturday,20,263,19,2014-09-21T00:00:00,2014,September,Sunday,21,264,16,D11,Toronto,90,Junction Area (90),"Open Areas (Lakes, Parks, Rivers)",Outside,CC,ORION,RG,21,BLK,300.0,STOLEN,20096,"{'type': 'Point', 'coordinates': (-79.48206778, 43.66558006)}"
-20122,8983,GO-20142994154,THEFT UNDER,2014-09-26T00:00:00,2014,September,Friday,26,269,20,2014-09-27T00:00:00,2014,September,Saturday,27,270,11,D11,Toronto,90,Junction Area (90),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RALEIGH,,TO,21,SIL,150.0,STOLEN,20097,"{'type': 'Point', 'coordinates': (-79.47841723, 43.66238124)}"
-20123,9013,GO-20149007367,THEFT UNDER,2014-10-03T00:00:00,2014,October,Friday,3,276,1,2014-10-03T00:00:00,2014,October,Friday,3,276,10,D12,Toronto,90,Junction Area (90),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,,RC,21,BLU,1500.0,STOLEN,20098,"{'type': 'Point', 'coordinates': (-79.47787746, 43.67096823)}"
-20124,9075,GO-20143120276,B&E,2014-10-17T00:00:00,2014,October,Friday,17,290,0,2014-10-17T00:00:00,2014,October,Friday,17,290,8,D11,Toronto,90,Junction Area (90),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,,OT,18,RED,600.0,STOLEN,20099,"{'type': 'Point', 'coordinates': (-79.47991211, 43.66980491)}"
-20125,9275,GO-2015141964,THEFT UNDER,2014-11-01T00:00:00,2014,November,Saturday,1,305,0,2015-01-24T00:00:00,2015,January,Saturday,24,24,21,D11,Toronto,90,Junction Area (90),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,RC,6,BLU,50.0,STOLEN,20100,"{'type': 'Point', 'coordinates': (-79.47759741, 43.66462312)}"
-20126,9316,GO-2015408907,THEFT UNDER,2015-03-06T00:00:00,2015,March,Friday,6,65,18,2015-03-10T00:00:00,2015,March,Tuesday,10,69,12,D11,Toronto,90,Junction Area (90),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,DAYMAK,EL,1,BLK,1800.0,STOLEN,20101,"{'type': 'Point', 'coordinates': (-79.4637652, 43.66365423)}"
-20127,9550,GO-20159002537,THEFT UNDER,2014-03-25T00:00:00,2014,March,Tuesday,25,84,0,2015-05-08T00:00:00,2015,May,Friday,8,128,0,D11,Toronto,90,Junction Area (90),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,GATEWAY,OT,7,WHI,200.0,STOLEN,20102,"{'type': 'Point', 'coordinates': (-79.46451935, 43.66540489)}"
-20128,9905,GO-20151093359,THEFT UNDER,2015-06-28T00:00:00,2015,June,Sunday,28,179,21,2015-06-29T00:00:00,2015,June,Monday,29,180,11,D11,Toronto,90,Junction Area (90),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KONA,HYBRID,MT,21,BLK,800.0,STOLEN,20103,"{'type': 'Point', 'coordinates': (-79.47651992, 43.66083527)}"
-20129,9946,GO-20151137353,THEFT UNDER,2015-07-05T00:00:00,2015,July,Sunday,5,186,20,2015-07-06T00:00:00,2015,July,Monday,6,187,8,D11,Toronto,90,Junction Area (90),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BIANCHI,,RG,6,BLKRED,700.0,STOLEN,20104,"{'type': 'Point', 'coordinates': (-79.48238056, 43.66632757)}"
-20130,11735,GO-20161182490,THEFT UNDER - BICYCLE,2016-07-05T00:00:00,2016,July,Tuesday,5,187,17,2016-07-09T00:00:00,2016,July,Saturday,9,191,15,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,MENS,MT,21,BLK,300.0,STOLEN,20105,"{'type': 'Point', 'coordinates': (-79.44642226, 43.66672554)}"
-20131,15377,GO-20143199440,THEFT UNDER,2014-10-28T00:00:00,2014,October,Tuesday,28,301,22,2014-10-29T00:00:00,2014,October,Wednesday,29,302,15,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NYCPF,,OT,1,WHIBLU,500.0,STOLEN,20106,"{'type': 'Point', 'coordinates': (-79.43292541, 43.66378717)}"
-20132,1194,GO-20171510987,THEFT UNDER - BICYCLE,2017-07-30T00:00:00,2017,July,Sunday,30,211,12,2017-08-21T00:00:00,2017,August,Monday,21,233,11,D11,Toronto,91,Weston-Pellam Park (91),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,VICE,MT,18,BLKGRN,200.0,STOLEN,20107,"{'type': 'Point', 'coordinates': (-79.45575561, 43.6703367)}"
-20133,15378,GO-20143289499,B&E W'INTENT,2014-11-12T00:00:00,2014,November,Wednesday,12,316,8,2014-11-12T00:00:00,2014,November,Wednesday,12,316,17,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,21,BLKGRN,600.0,STOLEN,20108,"{'type': 'Point', 'coordinates': (-79.43047773, 43.66431054)}"
-20134,15382,GO-20143329223,THEFT UNDER,2014-11-19T00:00:00,2014,November,Wednesday,19,323,8,2014-11-19T00:00:00,2014,November,Wednesday,19,323,12,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIO,,EL,0,RED,3000.0,STOLEN,20109,"{'type': 'Point', 'coordinates': (-79.43532635000001, 43.65988369)}"
-20135,4897,GO-20199023958,THEFT UNDER,2019-07-27T00:00:00,2019,July,Saturday,27,208,9,2019-07-27T00:00:00,2019,July,Saturday,27,208,16,D11,Toronto,91,Weston-Pellam Park (91),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KO,,RG,18,BLK,500.0,STOLEN,20110,"{'type': 'Point', 'coordinates': (-79.45441659, 43.67052275)}"
-20136,7394,GO-20209025088,THEFT UNDER,2020-09-29T00:00:00,2020,September,Tuesday,29,273,21,2020-09-30T00:00:00,2020,September,Wednesday,30,274,20,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,VFR BLACK,OT,24,BLK,1000.0,STOLEN,20111,"{'type': 'Point', 'coordinates': (-79.42782131000001, 43.66722081)}"
-20137,20843,GO-20209032855,THEFT UNDER,2020-12-26T00:00:00,2020,December,Saturday,26,361,12,2020-12-26T00:00:00,2020,December,Saturday,26,361,13,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,VFR2,RG,21,BLK,1000.0,STOLEN,20112,"{'type': 'Point', 'coordinates': (-79.43775386, 43.66866694)}"
-20138,3108,GO-20189025467,THEFT UNDER,2018-08-07T00:00:00,2018,August,Tuesday,7,219,15,2018-08-07T00:00:00,2018,August,Tuesday,7,219,19,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,5,MRN,0.0,STOLEN,20113,"{'type': 'Point', 'coordinates': (-79.43788512, 43.66585116)}"
-20139,10136,GO-20159005119,THEFT UNDER,2015-07-29T00:00:00,2015,July,Wednesday,29,210,16,2015-07-29T00:00:00,2015,July,Wednesday,29,210,16,D11,Toronto,90,Junction Area (90),"Apartment (Rooming House, Condo)",Apartment,OT,BMX,BM,1,PLE,400.0,STOLEN,20114,"{'type': 'Point', 'coordinates': (-79.46501947, 43.66658204)}"
-20140,11807,GO-20161243375,THEFT UNDER - BICYCLE,2016-05-01T00:00:00,2016,May,Sunday,1,122,0,2016-07-15T00:00:00,2016,July,Friday,15,197,19,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,ROULUS,RG,21,RED,1241.0,RECOVERED,20115,"{'type': 'Point', 'coordinates': (-79.42929449, 43.66459254)}"
-20141,18264,GO-20209009394,THEFT UNDER,2020-03-19T00:00:00,2020,March,Thursday,19,79,18,2020-03-19T00:00:00,2020,March,Thursday,19,79,19,D13,Toronto,92,Corso Italia-Davenport (92),Bar / Restaurant,Commercial,UK,ICONIC,RG,3,BLK,1200.0,STOLEN,20116,"{'type': 'Point', 'coordinates': (-79.44304265, 43.67796161)}"
-20142,3183,GO-20189026188,THEFT UNDER,2018-08-12T00:00:00,2018,August,Sunday,12,224,14,2018-08-13T00:00:00,2018,August,Monday,13,225,14,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,OT,TANTO 29,MT,1,BLK,400.0,STOLEN,20117,"{'type': 'Point', 'coordinates': (-79.42657247, 43.67059555)}"
-20143,10433,GO-20159006908,THEFT UNDER,2015-09-08T00:00:00,2015,September,Tuesday,8,251,7,2015-09-08T00:00:00,2015,September,Tuesday,8,251,17,D11,Toronto,90,Junction Area (90),"Single Home, House (Attach Garage, Cottage, Mobile)",House,PE,ROAD BICYCLE,RG,10,BLK,150.0,STOLEN,20118,"{'type': 'Point', 'coordinates': (-79.46106193, 43.66518912)}"
-20144,11813,GO-20161251506,THEFT UNDER - BICYCLE,2016-07-16T00:00:00,2016,July,Saturday,16,198,18,2016-07-17T00:00:00,2016,July,Sunday,17,199,1,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,HUFFY,ARLINGTON,TO,7,BLU,225.0,STOLEN,20119,"{'type': 'Point', 'coordinates': (-79.44642226, 43.66672554)}"
-20145,6267,GO-20209014131,THEFT UNDER,2020-05-27T00:00:00,2020,May,Wednesday,27,148,22,2020-05-28T00:00:00,2020,May,Thursday,28,149,15,D11,Toronto,91,Weston-Pellam Park (91),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,DEW,RG,10,GRY,699.0,STOLEN,20120,"{'type': 'Point', 'coordinates': (-79.453505, 43.66824509)}"
-20146,24384,GO-20189029905,THEFT UNDER - BICYCLE,2018-09-09T00:00:00,2018,September,Sunday,9,252,6,2018-09-11T00:00:00,2018,September,Tuesday,11,254,8,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,1,ONG,500.0,STOLEN,20121,"{'type': 'Point', 'coordinates': (-79.42929449, 43.66459254)}"
-20147,20975,GO-20189042058,THEFT UNDER - BICYCLE,2018-08-11T00:00:00,2018,August,Saturday,11,223,11,2018-12-14T00:00:00,2018,December,Friday,14,348,15,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,ST TROPEZ,TO,27,BLK,800.0,STOLEN,20122,"{'type': 'Point', 'coordinates': (-79.43272148, 43.66970208)}"
-20148,7408,GO-20209025387,THEFT UNDER,2020-10-03T00:00:00,2020,October,Saturday,3,277,1,2020-10-03T00:00:00,2020,October,Saturday,3,277,21,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MIELE,,MT,7,MRN,100.0,STOLEN,20123,"{'type': 'Point', 'coordinates': (-79.44300606, 43.65922277)}"
-20149,15423,GO-20159004530,THEFT UNDER,2015-07-14T00:00:00,2015,July,Tuesday,14,195,1,2015-07-14T00:00:00,2015,July,Tuesday,14,195,9,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,BM,1,LGR,150.0,STOLEN,20124,"{'type': 'Point', 'coordinates': (-79.42485756, 43.66284459)}"
-20150,15427,GO-20151234899,THEFT UNDER,2015-07-19T00:00:00,2015,July,Sunday,19,200,17,2015-07-20T00:00:00,2015,July,Monday,20,201,12,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,DETOUR 2.0,OT,7,GRN,300.0,STOLEN,20125,"{'type': 'Point', 'coordinates': (-79.43677501, 43.66997225000001)}"
-20151,15453,GO-20159007297,THEFT UNDER,2015-08-14T00:00:00,2015,August,Friday,14,226,17,2015-09-16T00:00:00,2015,September,Wednesday,16,259,17,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,EDIT,BM,1,OTH,550.0,STOLEN,20126,"{'type': 'Point', 'coordinates': (-79.42963126, 43.66224427)}"
-20152,15454,GO-20159007297,THEFT UNDER,2015-08-14T00:00:00,2015,August,Friday,14,226,17,2015-09-16T00:00:00,2015,September,Wednesday,16,259,17,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,METHOD 02,BM,1,GRY,420.0,STOLEN,20127,"{'type': 'Point', 'coordinates': (-79.42963126, 43.66224427)}"
-20153,15467,GO-20159009683,THEFT UNDER,2015-11-10T00:00:00,2015,November,Tuesday,10,314,8,2015-11-12T00:00:00,2015,November,Thursday,12,316,14,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RM,,BM,12,,1200.0,STOLEN,20128,"{'type': 'Point', 'coordinates': (-79.4489465, 43.66969119)}"
-20154,15494,GO-20169004033,THEFT UNDER - BICYCLE,2016-05-01T00:00:00,2016,May,Sunday,1,122,18,2016-05-01T00:00:00,2016,May,Sunday,1,122,20,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,3,PNK,300.0,STOLEN,20129,"{'type': 'Point', 'coordinates': (-79.42929449, 43.66459254)}"
-20155,15530,GO-20161351906,THEFT UNDER - BICYCLE,2016-05-07T00:00:00,2016,May,Saturday,7,128,23,2016-08-01T00:00:00,2016,August,Monday,1,214,17,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CANNONDALE,,MT,14,BLUWHI,1000.0,STOLEN,20130,"{'type': 'Point', 'coordinates': (-79.41883089, 43.66347305)}"
-20156,15548,GO-20169009844,THEFT UNDER,2016-09-01T00:00:00,2016,September,Thursday,1,245,21,2016-09-02T00:00:00,2016,September,Friday,2,246,9,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KO,DEW,RG,24,BLK,500.0,STOLEN,20131,"{'type': 'Point', 'coordinates': (-79.42929449, 43.66459254)}"
-20157,15571,GO-20169012745,THEFT UNDER - BICYCLE,2016-10-28T00:00:00,2016,October,Friday,28,302,21,2016-10-29T00:00:00,2016,October,Saturday,29,303,13,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,THE ALL NEW FLA,RG,1,SIL,499.0,STOLEN,20132,"{'type': 'Point', 'coordinates': (-79.43775386, 43.66866694)}"
-20158,15588,GO-20179003700,THEFT UNDER - BICYCLE,2017-03-23T00:00:00,2017,March,Thursday,23,82,20,2017-03-23T00:00:00,2017,March,Thursday,23,82,22,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,TREK 7.2 FX,RG,21,BRZ,550.0,STOLEN,20133,"{'type': 'Point', 'coordinates': (-79.43623489, 43.66852851)}"
-20159,15589,GO-20179003700,THEFT UNDER - BICYCLE,2017-03-23T00:00:00,2017,March,Thursday,23,82,20,2017-03-23T00:00:00,2017,March,Thursday,23,82,22,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,FCR 3,RG,21,BLK,500.0,STOLEN,20134,"{'type': 'Point', 'coordinates': (-79.43623489, 43.66852851)}"
-20160,17359,GO-20209018371,THEFT UNDER,2020-07-22T00:00:00,2020,July,Wednesday,22,204,23,2020-07-23T00:00:00,2020,July,Thursday,23,205,19,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,GT,AVALANCHE,MT,21,BLK,900.0,STOLEN,20135,"{'type': 'Point', 'coordinates': (-79.43775386, 43.66866694)}"
-20161,17402,GO-20209026799,THEFT UNDER,2020-10-17T00:00:00,2020,October,Saturday,17,291,17,2020-10-17T00:00:00,2020,October,Saturday,17,291,19,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,DIVERGE,RC,16,,2000.0,STOLEN,20136,"{'type': 'Point', 'coordinates': (-79.43500883, 43.66556554)}"
-20162,17561,GO-20199014140,THEFT UNDER,2019-05-04T00:00:00,2019,May,Saturday,4,124,22,2019-05-06T00:00:00,2019,May,Monday,6,126,23,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,NORCO CHARGER,MT,21,WHI,750.0,STOLEN,20137,"{'type': 'Point', 'coordinates': (-79.43390893, 43.66946933)}"
-20163,17634,GO-20199028757,THEFT UNDER,2019-09-04T00:00:00,2019,September,Wednesday,4,247,18,2019-09-04T00:00:00,2019,September,Wednesday,4,247,18,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,SIRRUS,MT,1,BLK,600.0,STOLEN,20138,"{'type': 'Point', 'coordinates': (-79.42087545, 43.66302552)}"
-20164,17667,GO-20192180661,B&E,2019-11-09T00:00:00,2019,November,Saturday,9,313,23,2019-11-11T00:00:00,2019,November,Monday,11,315,15,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DEVINCI,LONDON,OT,18,SIL,800.0,STOLEN,20139,"{'type': 'Point', 'coordinates': (-79.43390893, 43.66946933)}"
-20165,17668,GO-20192180661,B&E,2019-11-09T00:00:00,2019,November,Saturday,9,313,23,2019-11-11T00:00:00,2019,November,Monday,11,315,15,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ACHIELLE,CRAIGHTON,TO,8,GRN,2000.0,STOLEN,20140,"{'type': 'Point', 'coordinates': (-79.43390893, 43.66946933)}"
-20166,17676,GO-20192399724,THEFT OF EBIKE UNDER $5000,2019-12-12T00:00:00,2019,December,Thursday,12,346,10,2019-12-13T00:00:00,2019,December,Friday,13,347,6,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,EL,1,BLU,3000.0,STOLEN,20141,"{'type': 'Point', 'coordinates': (-79.425126, 43.66705285)}"
-20167,17710,GO-2020784943,THEFT UNDER - BICYCLE,2020-04-25T00:00:00,2020,April,Saturday,25,116,5,2020-04-25T00:00:00,2020,April,Saturday,25,116,21,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,ESCAPE 2 CITY D,MT,18,DGR,629.0,STOLEN,20142,"{'type': 'Point', 'coordinates': (-79.42597851, 43.6691417)}"
-20168,17740,GO-20179015552,THEFT UNDER,2017-09-23T00:00:00,2017,September,Saturday,23,266,1,2017-09-23T00:00:00,2017,September,Saturday,23,266,13,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,1,BLK,576.0,STOLEN,20143,"{'type': 'Point', 'coordinates': (-79.42839364, 43.66861488)}"
-20169,17745,GO-20171802417,THEFT UNDER - BICYCLE,2017-10-04T00:00:00,2017,October,Wednesday,4,277,20,2017-10-04T00:00:00,2017,October,Wednesday,4,277,20,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,OT,0,,,STOLEN,20144,"{'type': 'Point', 'coordinates': (-79.43532635000001, 43.65988369)}"
-20170,17781,GO-20189001055,THEFT UNDER - BICYCLE,2018-01-12T00:00:00,2018,January,Friday,12,12,12,2018-01-12T00:00:00,2018,January,Friday,12,12,18,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,1971,TO,24,RED,1000.0,STOLEN,20145,"{'type': 'Point', 'coordinates': (-79.42562006, 43.66198485)}"
-20171,17795,GO-2018462764,MISCHIEF UNDER,2018-03-09T00:00:00,2018,March,Friday,9,68,19,2018-03-13T00:00:00,2018,March,Tuesday,13,72,17,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,,EL,1,BLK,1000.0,RECOVERED,20146,"{'type': 'Point', 'coordinates': (-79.43163294, 43.66066113)}"
-20172,7409,GO-20201888569,THEFT OF EBIKE UNDER $5000,2020-10-05T00:00:00,2020,October,Monday,5,279,1,2020-10-05T00:00:00,2020,October,Monday,5,279,5,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,EY3,EL,10,BLK,2200.0,STOLEN,20147,"{'type': 'Point', 'coordinates': (-79.43167972, 43.66718047)}"
-20173,21004,GO-20191011319,THEFT UNDER,2019-06-01T00:00:00,2019,June,Saturday,1,152,14,2019-06-02T00:00:00,2019,June,Sunday,2,153,10,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,SAFARI,RG,10,BLU,,STOLEN,20148,"{'type': 'Point', 'coordinates': (-79.4208938, 43.67001212)}"
-20174,3246,GO-20189026967,THEFT UNDER - BICYCLE,2018-08-18T00:00:00,2018,August,Saturday,18,230,23,2018-08-19T00:00:00,2018,August,Sunday,19,231,9,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,OT,XENITH,RC,21,BLK,500.0,STOLEN,20149,"{'type': 'Point', 'coordinates': (-79.45188185, 43.66075675)}"
-20175,6752,GO-20201395750,B&E W'INTENT,2020-07-27T00:00:00,2020,July,Monday,27,209,0,2020-07-27T00:00:00,2020,July,Monday,27,209,8,D11,Toronto,91,Weston-Pellam Park (91),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FUJI,ABSOLUTE 1,RG,1,WHI,500.0,STOLEN,20150,"{'type': 'Point', 'coordinates': (-79.45665259, 43.67245887)}"
-20176,10599,GO-20159008277,THEFT UNDER,2015-10-04T00:00:00,2015,October,Sunday,4,277,15,2015-10-06T00:00:00,2015,October,Tuesday,6,279,21,D11,Toronto,90,Junction Area (90),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SC,SCHWINN COMFORT,RG,5,BLU,363.0,STOLEN,20151,"{'type': 'Point', 'coordinates': (-79.47759741, 43.66462312)}"
-20177,24404,GO-20209023823,THEFT UNDER,2020-09-18T00:00:00,2020,September,Friday,18,262,1,2020-09-19T00:00:00,2020,September,Saturday,19,263,11,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,F500,MT,18,MRN,100.0,STOLEN,20152,"{'type': 'Point', 'coordinates': (-79.44991158, 43.65952847)}"
-20178,11903,GO-20169007748,THEFT OF EBIKE UNDER $5000,2016-07-23T00:00:00,2016,July,Saturday,23,205,20,2016-07-25T00:00:00,2016,July,Monday,25,207,20,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EM,MONTSER CAMO,EL,60,,1998.0,STOLEN,20153,"{'type': 'Point', 'coordinates': (-79.44642226, 43.66672554)}"
-20179,18289,GO-20209021596,THEFT UNDER,2020-08-04T00:00:00,2020,August,Tuesday,4,217,22,2020-08-28T00:00:00,2020,August,Friday,28,241,10,D13,Toronto,92,Corso Italia-Davenport (92),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,RG,30,PLE,200.0,STOLEN,20154,"{'type': 'Point', 'coordinates': (-79.4419359, 43.67818474)}"
-20180,18099,GO-20179011119,THEFT UNDER - BICYCLE,2017-07-26T00:00:00,2017,July,Wednesday,26,207,23,2017-07-27T00:00:00,2017,July,Thursday,27,208,8,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,1,BLK,500.0,STOLEN,20155,"{'type': 'Point', 'coordinates': (-79.42624517, 43.66983944)}"
-20181,18153,GO-20161686048,B&E,2016-09-21T00:00:00,2016,September,Wednesday,21,265,22,2016-09-22T00:00:00,2016,September,Thursday,22,266,9,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,MT,10,REDWHI,1200.0,STOLEN,20156,"{'type': 'Point', 'coordinates': (-79.42929364, 43.66770575)}"
-20182,18154,GO-20161686048,B&E,2016-09-21T00:00:00,2016,September,Wednesday,21,265,22,2016-09-22T00:00:00,2016,September,Thursday,22,266,9,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,MT,10,BRN,900.0,STOLEN,20157,"{'type': 'Point', 'coordinates': (-79.42929364, 43.66770575)}"
-20183,18155,GO-20161686048,B&E,2016-09-21T00:00:00,2016,September,Wednesday,21,265,22,2016-09-22T00:00:00,2016,September,Thursday,22,266,9,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,MT,10,WHI,800.0,STOLEN,20158,"{'type': 'Point', 'coordinates': (-79.42929364, 43.66770575)}"
-20184,18156,GO-20161686048,B&E,2016-09-21T00:00:00,2016,September,Wednesday,21,265,22,2016-09-22T00:00:00,2016,September,Thursday,22,266,9,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,MT,10,BRN,155.0,STOLEN,20159,"{'type': 'Point', 'coordinates': (-79.42929364, 43.66770575)}"
-20185,18157,GO-20161686048,B&E,2016-09-21T00:00:00,2016,September,Wednesday,21,265,22,2016-09-22T00:00:00,2016,September,Thursday,22,266,9,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,MT,10,BRN,155.0,STOLEN,20160,"{'type': 'Point', 'coordinates': (-79.42929364, 43.66770575)}"
-20186,18188,GO-20179002632,B&E,2017-02-24T00:00:00,2017,February,Friday,24,55,11,2017-03-01T00:00:00,2017,March,Wednesday,1,60,12,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,ROAM 3,MT,8,BLK,0.0,STOLEN,20161,"{'type': 'Point', 'coordinates': (-79.4286816, 43.66930437)}"
-20187,18191,GO-2017491687,THEFT UNDER - BICYCLE,2017-03-19T00:00:00,2017,March,Sunday,19,78,14,2017-03-19T00:00:00,2017,March,Sunday,19,78,19,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,DEFT,RG,18,WHI,,STOLEN,20162,"{'type': 'Point', 'coordinates': (-79.43710214000001, 43.67397426)}"
-20188,18192,GO-2017540670,PROPERTY - LOST,2017-03-23T00:00:00,2017,March,Thursday,23,82,12,2017-03-27T00:00:00,2017,March,Monday,27,86,12,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,LAPIERRE,TO,20,BLKGRN,2000.0,UNKNOWN,20163,"{'type': 'Point', 'coordinates': (-79.42118785, 43.67077554)}"
-20189,18217,GO-20179008162,THEFT UNDER - BICYCLE,2017-06-12T00:00:00,2017,June,Monday,12,163,15,2017-06-15T00:00:00,2017,June,Thursday,15,166,15,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),Bar / Restaurant,Commercial,OT,BUB,OT,3,RED,650.0,RECOVERED,20164,"{'type': 'Point', 'coordinates': (-79.42562006, 43.66198485)}"
-20190,18222,GO-20179011749,THEFT UNDER - BICYCLE,2017-08-05T00:00:00,2017,August,Saturday,5,217,0,2017-08-05T00:00:00,2017,August,Saturday,5,217,16,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,OT,TRICROSS,RG,1,ONG,1000.0,STOLEN,20165,"{'type': 'Point', 'coordinates': (-79.43800472, 43.6697207)}"
-20191,18231,GO-20189013770,THEFT UNDER - BICYCLE,2017-11-01T00:00:00,2017,November,Wednesday,1,305,0,2018-05-04T00:00:00,2018,May,Friday,4,124,11,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,MT,5,BLK,100.0,STOLEN,20166,"{'type': 'Point', 'coordinates': (-79.4489465, 43.66969119)}"
-20192,18234,GO-20189017371,THEFT UNDER - BICYCLE,2018-06-04T00:00:00,2018,June,Monday,4,155,2,2018-06-04T00:00:00,2018,June,Monday,4,155,18,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,OT,MIXED TAPE,RG,7,GRY,695.0,STOLEN,20167,"{'type': 'Point', 'coordinates': (-79.44608819, 43.6690567)}"
-20193,18240,GO-20189028202,THEFT UNDER - BICYCLE,2018-07-29T00:00:00,2018,July,Sunday,29,210,8,2018-08-27T00:00:00,2018,August,Monday,27,239,20,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,TR,FX3 WSD,RG,27,BLK,1200.0,STOLEN,20168,"{'type': 'Point', 'coordinates': (-79.44920947, 43.67041868)}"
-20194,18249,GO-20199015678,THEFT UNDER - BICYCLE,2019-05-18T00:00:00,2019,May,Saturday,18,138,17,2019-05-20T00:00:00,2019,May,Monday,20,140,17,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,RECORED,RC,8,WHI,150.0,STOLEN,20169,"{'type': 'Point', 'coordinates': (-79.43677501, 43.66997225000001)}"
-20195,18261,GO-20192498443,THEFT UNDER - BICYCLE,2019-12-07T00:00:00,2019,December,Saturday,7,341,0,2019-12-28T00:00:00,2019,December,Saturday,28,362,9,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,,RG,20,MRN,3500.0,STOLEN,20170,"{'type': 'Point', 'coordinates': (-79.4489465, 43.66969119)}"
-20196,18263,GO-20209005900,THEFT UNDER,2020-02-18T00:00:00,2020,February,Tuesday,18,49,7,2020-02-18T00:00:00,2020,February,Tuesday,18,49,9,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,SPECIALE RANDON,RC,10,MRN,800.0,STOLEN,20171,"{'type': 'Point', 'coordinates': (-79.43313787, 43.67071462)}"
-20197,18276,GO-20201454243,B&E,2020-07-17T00:00:00,2020,July,Friday,17,199,0,2020-08-04T00:00:00,2020,August,Tuesday,4,217,17,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KONA\,HONKEY TONK,OT,18,BLU,800.0,STOLEN,20172,"{'type': 'Point', 'coordinates': (-79.43663905, 43.66296704)}"
-20198,18292,GO-20209022326,THEFT UNDER,2020-09-03T00:00:00,2020,September,Thursday,3,247,21,2020-09-04T00:00:00,2020,September,Friday,4,248,13,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,TR,FX 3,RG,9,RED,832.0,STOLEN,20173,"{'type': 'Point', 'coordinates': (-79.44642226, 43.66672554)}"
-20199,18305,GO-20209026033,FTC PROBATION ORDER,2020-10-09T00:00:00,2020,October,Friday,9,283,17,2020-10-10T00:00:00,2020,October,Saturday,10,284,11,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,MATE X,EL,15,GRN,2800.0,STOLEN,20174,"{'type': 'Point', 'coordinates': (-79.44642226, 43.66672554)}"
-20200,18313,GO-20209012222,THEFT UNDER,2020-03-20T00:00:00,2020,March,Friday,20,80,15,2020-04-30T00:00:00,2020,April,Thursday,30,121,14,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,ICONIC,RG,3,BLK,1200.0,STOLEN,20175,"{'type': 'Point', 'coordinates': (-79.44414059, 43.66721386)}"
-20201,18315,GO-20209014477,THEFT UNDER,2020-06-03T00:00:00,2020,June,Wednesday,3,155,16,2020-06-03T00:00:00,2020,June,Wednesday,3,155,20,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,,MT,8,SIL,650.0,STOLEN,20176,"{'type': 'Point', 'coordinates': (-79.44414059, 43.66721386)}"
-20202,18324,GO-20149002957,THEFT UNDER,2014-04-21T00:00:00,2014,April,Monday,21,111,17,2014-04-22T00:00:00,2014,April,Tuesday,22,112,19,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,18,BLK,0.0,STOLEN,20177,"{'type': 'Point', 'coordinates': (-79.43677501, 43.66997225000001)}"
-20203,18325,GO-20149003237,THEFT UNDER,2013-10-31T00:00:00,2013,October,Thursday,31,304,9,2014-05-09T00:00:00,2014,May,Friday,9,129,9,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,HD-004,EL,32,BLU,1500.0,STOLEN,20178,"{'type': 'Point', 'coordinates': (-79.4489465, 43.66969119)}"
-20204,18332,GO-20149003558,THEFT UNDER,2014-05-22T00:00:00,2014,May,Thursday,22,142,22,2014-05-24T00:00:00,2014,May,Saturday,24,144,14,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SP,,MT,9,PNK,100.0,STOLEN,20179,"{'type': 'Point', 'coordinates': (-79.44770101, 43.66995453)}"
-20205,18353,GO-20149005207,THEFT UNDER,2014-07-24T00:00:00,2014,July,Thursday,24,205,7,2014-07-24T00:00:00,2014,July,Thursday,24,205,8,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,OT,L8YLSBLSIDY2007,EL,32,RED,1300.0,STOLEN,20180,"{'type': 'Point', 'coordinates': (-79.43254109000002, 43.66610411)}"
-20206,18358,GO-20149005669,THEFT UNDER,2014-08-01T00:00:00,2014,August,Friday,1,213,23,2014-08-06T00:00:00,2014,August,Wednesday,6,218,11,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,SCEDE,OT,1,YEL,250.0,STOLEN,20181,"{'type': 'Point', 'coordinates': (-79.42060204, 43.66925416)}"
-20207,18360,GO-20149005938,THEFT UNDER,2014-08-14T00:00:00,2014,August,Thursday,14,226,14,2014-08-14T00:00:00,2014,August,Thursday,14,226,16,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EM,URBAN,EL,30,BLK,800.0,STOLEN,20182,"{'type': 'Point', 'coordinates': (-79.43532635000001, 43.65988369)}"
-20208,18362,GO-20149006167,THEFT UNDER,2014-08-20T00:00:00,2014,August,Wednesday,20,232,23,2014-08-21T00:00:00,2014,August,Thursday,21,233,9,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,INDIE 2,RG,27,BLK,725.0,STOLEN,20183,"{'type': 'Point', 'coordinates': (-79.42556604, 43.66817371)}"
-20209,18370,GO-20142883198,THEFT UNDER,2014-08-31T00:00:00,2014,August,Sunday,31,243,17,2014-09-10T00:00:00,2014,September,Wednesday,10,253,15,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,DCO,MT,21,SIL,425.0,STOLEN,20184,"{'type': 'Point', 'coordinates': (-79.43150988, 43.66994013)}"
-20210,18371,GO-20142883198,THEFT UNDER,2014-08-31T00:00:00,2014,August,Sunday,31,243,17,2014-09-10T00:00:00,2014,September,Wednesday,10,253,15,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,SERENGETI,MT,24,SIL,1070.0,STOLEN,20185,"{'type': 'Point', 'coordinates': (-79.43150988, 43.66994013)}"
-20211,18372,GO-20142883198,THEFT UNDER,2014-08-31T00:00:00,2014,August,Sunday,31,243,17,2014-09-10T00:00:00,2014,September,Wednesday,10,253,15,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MIELE,ONXA,MT,21,SIL,995.0,STOLEN,20186,"{'type': 'Point', 'coordinates': (-79.43150988, 43.66994013)}"
-20212,18376,GO-20143110205,THEFT UNDER,2014-10-15T00:00:00,2014,October,Wednesday,15,288,12,2014-10-15T00:00:00,2014,October,Wednesday,15,288,17,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,WASAGA,EL,1,BLKRED,1150.0,STOLEN,20187,"{'type': 'Point', 'coordinates': (-79.42939853, 43.66115068)}"
-20213,18399,GO-2015767093,THEFT UNDER,2015-05-08T00:00:00,2015,May,Friday,8,128,15,2015-05-08T00:00:00,2015,May,Friday,8,128,15,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,MOTO,,SC,30,RED,1000.0,STOLEN,20188,"{'type': 'Point', 'coordinates': (-79.43516342, 43.66920387)}"
-20214,18401,GO-20159002837,THEFT UNDER,2015-05-18T00:00:00,2015,May,Monday,18,138,0,2015-05-18T00:00:00,2015,May,Monday,18,138,8,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,RG,10,TRQ,650.0,STOLEN,20189,"{'type': 'Point', 'coordinates': (-79.4258929, 43.66898009)}"
-20215,18411,GO-2015909525,THEFT UNDER,2015-05-31T00:00:00,2015,May,Sunday,31,151,0,2015-05-31T00:00:00,2015,May,Sunday,31,151,11,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,REGAL,,OT,1,BLU,500.0,STOLEN,20190,"{'type': 'Point', 'coordinates': (-79.43415849, 43.66351805000001)}"
-20216,18427,GO-20159004498,THEFT UNDER,2015-07-05T00:00:00,2015,July,Sunday,5,186,13,2015-07-13T00:00:00,2015,July,Monday,13,194,11,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Open Areas (Lakes, Parks, Rivers)",Outside,GI,ESCAPE XL,RG,21,BLK,500.0,STOLEN,20191,"{'type': 'Point', 'coordinates': (-79.42087545, 43.66302552)}"
-20217,18442,GO-20159005535,THEFT UNDER,2015-08-09T00:00:00,2015,August,Sunday,9,221,11,2015-08-09T00:00:00,2015,August,Sunday,9,221,11,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,OT,6,WHI,1247.0,STOLEN,20192,"{'type': 'Point', 'coordinates': (-79.43328, 43.66460059)}"
-20218,18443,GO-20159005687,THEFT UNDER,2015-08-11T00:00:00,2015,August,Tuesday,11,223,16,2015-08-12T00:00:00,2015,August,Wednesday,12,224,13,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),Schools During Un-Supervised Activity,Educational,KO,,RG,9,DGR,700.0,STOLEN,20193,"{'type': 'Point', 'coordinates': (-79.42322751, 43.66562202)}"
-20219,18485,GO-2016798829,THEFT UNDER - BICYCLE,2016-05-09T00:00:00,2016,May,Monday,9,130,13,2016-05-09T00:00:00,2016,May,Monday,9,130,21,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,TALON,MT,14,BLK,,UNKNOWN,20194,"{'type': 'Point', 'coordinates': (-79.44022253, 43.67130335)}"
-20220,18492,GO-20169005128,THEFT UNDER,2016-05-27T00:00:00,2016,May,Friday,27,148,19,2016-05-30T00:00:00,2016,May,Monday,30,151,16,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DB,ONLY WHEEL STOL,MT,24,RED,250.0,STOLEN,20195,"{'type': 'Point', 'coordinates': (-79.42522201, 43.66733406)}"
-20221,18507,GO-20141937706,THEFT UNDER,2014-04-11T00:00:00,2014,April,Friday,11,101,12,2014-04-22T00:00:00,2014,April,Tuesday,22,112,15,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MANHATTAN,TRUCKER,TO,1,BLK,350.0,STOLEN,20196,"{'type': 'Point', 'coordinates': (-79.4527141, 43.6663251)}"
-20222,18516,GO-20142799427,THEFT UNDER,2014-08-29T00:00:00,2014,August,Friday,29,241,10,2014-08-29T00:00:00,2014,August,Friday,29,241,11,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Open Areas (Lakes, Parks, Rivers)",Outside,OTHER,,MT,21,YELBLK,150.0,STOLEN,20197,"{'type': 'Point', 'coordinates': (-79.43899694, 43.6684649)}"
-20223,18521,GO-20143206385,THEFT UNDER,2014-10-30T00:00:00,2014,October,Thursday,30,303,16,2014-10-30T00:00:00,2014,October,Thursday,30,303,16,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),Bar / Restaurant,Commercial,OTHER,KING CURB,BM,1,BLK,250.0,STOLEN,20198,"{'type': 'Point', 'coordinates': (-79.43899694, 43.6684649)}"
-20224,18531,GO-20159002885,THEFT UNDER,2015-05-18T00:00:00,2015,May,Monday,18,138,23,2015-05-19T00:00:00,2015,May,Tuesday,19,139,14,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,EBIKE,EL,33,YEL,1000.0,STOLEN,20199,"{'type': 'Point', 'coordinates': (-79.44569863000001, 43.66489681)}"
-20225,18532,GO-20159002986,THEFT UNDER,2015-05-21T00:00:00,2015,May,Thursday,21,141,3,2015-05-21T00:00:00,2015,May,Thursday,21,141,13,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,FJ,FEATHERWEIGHT,OT,1,BLK,1000.0,STOLEN,20200,"{'type': 'Point', 'coordinates': (-79.43913557, 43.65909813)}"
-20226,18536,GO-20159003622,THEFT UNDER,2015-06-13T00:00:00,2015,June,Saturday,13,164,20,2015-06-14T00:00:00,2015,June,Sunday,14,165,20,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),Bar / Restaurant,Commercial,UK,OCTAVE,BM,2,BLK,500.0,STOLEN,20201,"{'type': 'Point', 'coordinates': (-79.45044856000001, 43.66393041)}"
-20227,18538,GO-20159004268,THEFT UNDER,2015-07-01T00:00:00,2015,July,Wednesday,1,182,17,2015-07-07T00:00:00,2015,July,Tuesday,7,188,19,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,FJ,,RG,1,ONG,800.0,STOLEN,20202,"{'type': 'Point', 'coordinates': (-79.44569863000001, 43.66489681)}"
-20228,21423,GO-20169010330,THEFT UNDER,2016-09-12T00:00:00,2016,September,Monday,12,256,17,2016-09-12T00:00:00,2016,September,Monday,12,256,18,D14,Toronto,95,Annex (95),Convenience Stores,Commercial,UK,,MT,9,WHI,500.0,STOLEN,21237,"{'type': 'Point', 'coordinates': (-79.40383181, 43.66665689)}"
-20229,18570,GO-20169007561,THEFT UNDER - BICYCLE,2016-07-21T00:00:00,2016,July,Thursday,21,203,16,2016-07-21T00:00:00,2016,July,Thursday,21,203,20,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,RG,10,BLU,500.0,STOLEN,20203,"{'type': 'Point', 'coordinates': (-79.44228046, 43.66898843)}"
-20230,18576,GO-20161983115,THEFT UNDER - BICYCLE,2016-11-06T00:00:00,2016,November,Sunday,6,311,18,2016-11-07T00:00:00,2016,November,Monday,7,312,20,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,21,DGR,100.0,STOLEN,20204,"{'type': 'Point', 'coordinates': (-79.45121138, 43.66574636)}"
-20231,18577,GO-20169013570,THEFT UNDER,2016-11-15T00:00:00,2016,November,Tuesday,15,320,19,2016-11-18T00:00:00,2016,November,Friday,18,323,12,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,TO,3,BLK,900.0,STOLEN,20205,"{'type': 'Point', 'coordinates': (-79.44807167, 43.65814645)}"
-20232,18588,GO-20179003593,THEFT UNDER - BICYCLE,2017-03-21T00:00:00,2017,March,Tuesday,21,80,13,2017-03-22T00:00:00,2017,March,Wednesday,22,81,10,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,DISC TRUCKER,TO,21,GRN,3000.0,STOLEN,20206,"{'type': 'Point', 'coordinates': (-79.44642226, 43.66672554)}"
-20233,18591,GO-20179005005,THEFT UNDER,2017-04-19T00:00:00,2017,April,Wednesday,19,109,22,2017-04-20T00:00:00,2017,April,Thursday,20,110,21,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,,,RC,18,RED,0.0,STOLEN,20207,"{'type': 'Point', 'coordinates': (-79.45002374, 43.66598952)}"
-20234,18595,GO-20179005611,THEFT UNDER - BICYCLE,2017-04-28T00:00:00,2017,April,Friday,28,118,21,2017-05-02T00:00:00,2017,May,Tuesday,2,122,20,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SC,VOLARE 1200,RC,21,WHI,550.0,STOLEN,20208,"{'type': 'Point', 'coordinates': (-79.44527553, 43.66696388)}"
-20235,18602,GO-20171092714,THEFT FROM MOTOR VEHICLE UNDER,2017-06-19T00:00:00,2017,June,Monday,19,170,1,2017-06-19T00:00:00,2017,June,Monday,19,170,11,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,STORM 7.2,MT,24,ONG,400.0,STOLEN,20209,"{'type': 'Point', 'coordinates': (-79.44300606, 43.65922277)}"
-20236,18606,GO-20179010260,THEFT UNDER - BICYCLE,2017-07-15T00:00:00,2017,July,Saturday,15,196,6,2017-07-15T00:00:00,2017,July,Saturday,15,196,13,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FJ,FEATHER,RG,1,LGR,700.0,STOLEN,20210,"{'type': 'Point', 'coordinates': (-79.44161041, 43.66107002)}"
-20237,18612,GO-20179012109,THEFT UNDER - BICYCLE,2017-08-08T00:00:00,2017,August,Tuesday,8,220,10,2017-08-08T00:00:00,2017,August,Tuesday,8,220,11,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KH,FLITE 100,RC,1,PLE,1500.0,STOLEN,20211,"{'type': 'Point', 'coordinates': (-79.43756839, 43.65942639)}"
-20238,18613,GO-20171684423,ROBBERY - MUGGING,2017-09-17T00:00:00,2017,September,Sunday,17,260,1,2017-09-17T00:00:00,2017,September,Sunday,17,260,1,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,,MT,21,BLK,,STOLEN,20212,"{'type': 'Point', 'coordinates': (-79.44269466, 43.65833851)}"
-20239,18626,GO-20173105609,INCIDENT,2017-12-01T00:00:00,2017,December,Friday,1,335,0,2017-12-01T00:00:00,2017,December,Friday,1,335,0,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,820,MT,21,BLK,300.0,UNKNOWN,20213,"{'type': 'Point', 'coordinates': (-79.44642226, 43.66672554)}"
-20240,18627,GO-20179021356,THEFT UNDER - BICYCLE,2017-12-05T00:00:00,2017,December,Tuesday,5,339,14,2017-12-05T00:00:00,2017,December,Tuesday,5,339,14,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,RA,,RC,21,,500.0,STOLEN,20214,"{'type': 'Point', 'coordinates': (-79.44527553, 43.66696388)}"
-20241,18632,GO-2018644314,B&E,2018-04-05T00:00:00,2018,April,Thursday,5,95,12,2018-04-10T00:00:00,2018,April,Tuesday,10,100,20,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,YORKVILLE,OT,0,SIL,663.0,STOLEN,20215,"{'type': 'Point', 'coordinates': (-79.44582039000001, 43.662064730000004)}"
-20242,18637,GO-20189015940,THEFT UNDER - BICYCLE,2018-05-22T00:00:00,2018,May,Tuesday,22,142,19,2018-05-23T00:00:00,2018,May,Wednesday,23,143,14,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GT,G32308U,RC,50,GRY,600.0,STOLEN,20216,"{'type': 'Point', 'coordinates': (-79.44228046, 43.66898843)}"
-20243,18638,GO-20189017291,THEFT UNDER - BICYCLE,2018-06-03T00:00:00,2018,June,Sunday,3,154,20,2018-06-04T00:00:00,2018,June,Monday,4,155,11,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,TR,FX-7.2,RG,24,BLK,1000.0,STOLEN,20217,"{'type': 'Point', 'coordinates': (-79.45545625, 43.6648475)}"
-20244,18639,GO-20189018769,THEFT UNDER - BICYCLE,2018-06-15T00:00:00,2018,June,Friday,15,166,0,2018-06-15T00:00:00,2018,June,Friday,15,166,10,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,NO,INDIE 3,RG,8,BLK,600.0,STOLEN,20218,"{'type': 'Point', 'coordinates': (-79.45397643, 43.66209576)}"
-20245,18640,GO-20189018769,THEFT UNDER - BICYCLE,2018-06-15T00:00:00,2018,June,Friday,15,166,0,2018-06-15T00:00:00,2018,June,Friday,15,166,10,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,NO,INDIE 3,RG,8,BLK,600.0,STOLEN,20219,"{'type': 'Point', 'coordinates': (-79.45397643, 43.66209576)}"
-20246,18641,GO-20189019206,THEFT UNDER - BICYCLE,2018-06-17T00:00:00,2018,June,Sunday,17,168,9,2018-06-18T00:00:00,2018,June,Monday,18,169,20,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,BARCODE,BM,1,DGR,3000.0,STOLEN,20220,"{'type': 'Point', 'coordinates': (-79.44153934, 43.65859448)}"
-20247,18643,GO-20189022152,THEFT UNDER - BICYCLE,2018-06-15T00:00:00,2018,June,Friday,15,166,12,2018-07-12T00:00:00,2018,July,Thursday,12,193,13,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,SC,04S3026/0711093,OT,14,RED,400.0,STOLEN,20221,"{'type': 'Point', 'coordinates': (-79.44642226, 43.66672554)}"
-20248,18648,GO-20189025643,THEFT UNDER - BICYCLE,2018-07-24T00:00:00,2018,July,Tuesday,24,205,10,2018-08-09T00:00:00,2018,August,Thursday,9,221,9,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,MINUTE,RG,16,BLK,1300.0,STOLEN,20222,"{'type': 'Point', 'coordinates': (-79.44889488, 43.65705424)}"
-20249,18649,GO-20189026563,THEFT UNDER - BICYCLE,2018-08-15T00:00:00,2018,August,Wednesday,15,227,0,2018-08-15T00:00:00,2018,August,Wednesday,15,227,21,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,TR,FX2,TO,24,BLK,750.0,STOLEN,20223,"{'type': 'Point', 'coordinates': (-79.44642226, 43.66672554)}"
-20250,18663,GO-201998601,THEFT UNDER - BICYCLE,2018-12-20T00:00:00,2018,December,Thursday,20,354,15,2019-01-16T00:00:00,2019,January,Wednesday,16,16,15,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,GT,AGGRESSOR,MT,21,,390.0,STOLEN,20224,"{'type': 'Point', 'coordinates': (-79.44642226, 43.66672554)}"
-20251,18685,GO-20199030127,THEFT UNDER,2019-09-10T00:00:00,2019,September,Tuesday,10,253,18,2019-09-15T00:00:00,2019,September,Sunday,15,258,18,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SU,,MT,18,SIL,50.0,STOLEN,20225,"{'type': 'Point', 'coordinates': (-79.44340776, 43.66537166)}"
-20252,18697,GO-20199042025,THEFT UNDER,2019-12-25T00:00:00,2019,December,Wednesday,25,359,10,2019-12-26T00:00:00,2019,December,Thursday,26,360,10,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,GI,TOUGHROAD,MT,21,BLK,1464.0,STOLEN,20226,"{'type': 'Point', 'coordinates': (-79.45188185, 43.66075675)}"
-20253,18700,GO-2020304313,B&E,2020-02-07T00:00:00,2020,February,Friday,7,38,10,2020-02-12T00:00:00,2020,February,Wednesday,12,43,13,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,BMC,CXA-01,RC,11,BLK,2000.0,STOLEN,20227,"{'type': 'Point', 'coordinates': (-79.45349123, 43.66135753)}"
-20254,7609,GO-20209029124,THEFT UNDER,2020-11-09T00:00:00,2020,November,Monday,9,314,14,2020-11-09T00:00:00,2020,November,Monday,9,314,20,D11,Toronto,91,Weston-Pellam Park (91),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,MT,18,RED,500.0,STOLEN,20228,"{'type': 'Point', 'coordinates': (-79.45246419, 43.67085359)}"
-20255,7892,GO-20142033653,THEFT UNDER,2014-05-07T00:00:00,2014,May,Wednesday,7,127,14,2014-05-07T00:00:00,2014,May,Wednesday,7,127,17,D12,Toronto,91,Weston-Pellam Park (91),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MIELE,,MT,10,WHI,800.0,STOLEN,20229,"{'type': 'Point', 'coordinates': (-79.45997962, 43.67419535)}"
-20256,10936,GO-20169000715,THEFT UNDER,2016-01-20T00:00:00,2016,January,Wednesday,20,20,9,2016-01-21T00:00:00,2016,January,Thursday,21,21,9,D11,Toronto,90,Junction Area (90),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,PURE LEAF BRAND,MT,3,BLK,800.0,STOLEN,20230,"{'type': 'Point', 'coordinates': (-79.46820621, 43.66049477)}"
-20257,3260,GO-20189027129,THEFT UNDER - BICYCLE,2018-08-20T00:00:00,2018,August,Monday,20,232,0,2018-08-20T00:00:00,2018,August,Monday,20,232,19,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,OT,SPEED,OT,1,WHI,700.0,STOLEN,20231,"{'type': 'Point', 'coordinates': (-79.43985057, 43.67044475)}"
-20258,8733,GO-20142786577,THEFT UNDER,2014-08-26T00:00:00,2014,August,Tuesday,26,238,17,2014-08-27T00:00:00,2014,August,Wednesday,27,239,12,D11,Toronto,91,Weston-Pellam Park (91),"Apartment (Rooming House, Condo)",Apartment,OTHER,1700 SERIES,OT,1,BLU,3041.0,STOLEN,20232,"{'type': 'Point', 'coordinates': (-79.45797855000002, 43.66874022)}"
-20259,8852,GO-20142889842,THEFT UNDER,2014-09-11T00:00:00,2014,September,Thursday,11,254,14,2014-09-11T00:00:00,2014,September,Thursday,11,254,15,D11,Toronto,91,Weston-Pellam Park (91),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,EL,15,BLK,500.0,STOLEN,20233,"{'type': 'Point', 'coordinates': (-79.45764253, 43.67180652)}"
-20260,8943,GO-20142962108,THEFT UNDER,2014-09-22T00:00:00,2014,September,Monday,22,265,15,2014-09-22T00:00:00,2014,September,Monday,22,265,18,D11,Toronto,91,Weston-Pellam Park (91),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN,UNKNOWN,EL,0,,2500.0,STOLEN,20234,"{'type': 'Point', 'coordinates': (-79.45345349, 43.67114816)}"
-20261,9336,GO-2015475534,THEFT UNDER,2015-03-20T00:00:00,2015,March,Friday,20,79,15,2015-03-21T00:00:00,2015,March,Saturday,21,80,13,D11,Toronto,91,Weston-Pellam Park (91),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SE,LAGER,OT,1,RED,650.0,STOLEN,20235,"{'type': 'Point', 'coordinates': (-79.45488617, 43.66832208)}"
-20262,9429,GO-2015647818,THEFT UNDER,2015-04-18T00:00:00,2015,April,Saturday,18,108,19,2015-04-19T00:00:00,2015,April,Sunday,19,109,14,D11,Toronto,91,Weston-Pellam Park (91),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,TO,10,BLUWHI,150.0,STOLEN,20236,"{'type': 'Point', 'coordinates': (-79.45873079, 43.6686037)}"
-20263,9492,GO-20159002343,THEFT UNDER,2015-04-22T00:00:00,2015,April,Wednesday,22,112,22,2015-04-29T00:00:00,2015,April,Wednesday,29,119,16,D12,Toronto,91,Weston-Pellam Park (91),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,OT,1,BLK,3800.0,STOLEN,20237,"{'type': 'Point', 'coordinates': (-79.45883205000001, 43.67770142)}"
-20264,9573,GO-20143318581,THEFT UNDER,2014-11-13T00:00:00,2014,November,Thursday,13,317,9,2014-11-17T00:00:00,2014,November,Monday,17,321,15,D12,Toronto,91,Weston-Pellam Park (91),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OTHER,,MT,18,WHI,500.0,STOLEN,20238,"{'type': 'Point', 'coordinates': (-79.46385125000002, 43.67657424)}"
-20265,9574,GO-20143318581,THEFT UNDER,2014-11-13T00:00:00,2014,November,Thursday,13,317,9,2014-11-17T00:00:00,2014,November,Monday,17,321,15,D12,Toronto,91,Weston-Pellam Park (91),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,CCM,,MT,18,RED,300.0,STOLEN,20239,"{'type': 'Point', 'coordinates': (-79.46385125000002, 43.67657424)}"
-20266,9575,GO-20143318581,THEFT UNDER,2014-11-13T00:00:00,2014,November,Thursday,13,317,9,2014-11-17T00:00:00,2014,November,Monday,17,321,15,D12,Toronto,91,Weston-Pellam Park (91),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,CCM,,MT,18,RED,400.0,STOLEN,20240,"{'type': 'Point', 'coordinates': (-79.46385125000002, 43.67657424)}"
-20267,9875,GO-20151068798,PROPERTY - LOST,2015-06-25T00:00:00,2015,June,Thursday,25,176,9,2015-06-25T00:00:00,2015,June,Thursday,25,176,9,D11,Toronto,91,Weston-Pellam Park (91),"Apartment (Rooming House, Condo)",Apartment,OTHER,TEV BIKES,EL,1,BLK,1000.0,UNKNOWN,20241,"{'type': 'Point', 'coordinates': (-79.45345349, 43.67114816)}"
-20268,11158,GO-2016671637,THEFT UNDER,2016-04-20T00:00:00,2016,April,Wednesday,20,111,5,2016-04-20T00:00:00,2016,April,Wednesday,20,111,5,D11,Toronto,91,Weston-Pellam Park (91),"Apartment (Rooming House, Condo)",Apartment,MARIN OR MARINO,,MT,22,BLK,700.0,STOLEN,20242,"{'type': 'Point', 'coordinates': (-79.45797855000002, 43.66874022)}"
-20269,12443,GO-20161703076,THEFT UNDER - BICYCLE,2016-09-24T00:00:00,2016,September,Saturday,24,268,10,2016-09-24T00:00:00,2016,September,Saturday,24,268,22,D11,Toronto,91,Weston-Pellam Park (91),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,1.1,RG,15,BLUGRN,800.0,STOLEN,20243,"{'type': 'Point', 'coordinates': (-79.45441659, 43.67052275)}"
-20270,12697,GO-20161925858,THEFT UNDER - BICYCLE,2016-10-29T00:00:00,2016,October,Saturday,29,303,14,2016-10-29T00:00:00,2016,October,Saturday,29,303,22,D11,Toronto,91,Weston-Pellam Park (91),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,,RG,10,RED,300.0,STOLEN,20244,"{'type': 'Point', 'coordinates': (-79.456991, 43.67020817)}"
-20271,14873,GO-20199038992,THEFT UNDER,2019-11-26T00:00:00,2019,November,Tuesday,26,330,17,2019-11-27T00:00:00,2019,November,Wednesday,27,331,11,D12,Toronto,91,Weston-Pellam Park (91),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,8,BLK,0.0,STOLEN,20245,"{'type': 'Point', 'coordinates': (-79.45842366, 43.68074234)}"
-20272,14874,GO-20192382813,THEFT UNDER - BICYCLE,2019-12-10T00:00:00,2019,December,Tuesday,10,344,9,2019-12-12T00:00:00,2019,December,Thursday,12,346,15,D12,Toronto,91,Weston-Pellam Park (91),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TO BE CALLED IN,,MT,1,BLU,300.0,STOLEN,20246,"{'type': 'Point', 'coordinates': (-79.46385125000002, 43.67657424)}"
-20273,15062,GO-20142541176,MISCHIEF UNDER,2014-07-21T00:00:00,2014,July,Monday,21,202,11,2014-07-21T00:00:00,2014,July,Monday,21,202,12,D11,Toronto,91,Weston-Pellam Park (91),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OTHER,,MT,1,BLK,300.0,STOLEN,20247,"{'type': 'Point', 'coordinates': (-79.45441659, 43.67052275)}"
-20274,21041,GO-20199026179,THEFT UNDER - BICYCLE,2019-08-11T00:00:00,2019,August,Sunday,11,223,18,2019-08-14T00:00:00,2019,August,Wednesday,14,226,14,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,HONKY TONK,RG,9,BLK,0.0,STOLEN,20248,"{'type': 'Point', 'coordinates': (-79.43775386, 43.66866694)}"
-20275,7480,GO-20209026688,THEFT UNDER,2020-10-16T00:00:00,2020,October,Friday,16,290,0,2020-10-16T00:00:00,2020,October,Friday,16,290,13,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,,INSPIRE 26 HARD,MT,18,BLU,250.0,STOLEN,20249,"{'type': 'Point', 'coordinates': (-79.44816836, 43.661562)}"
-20276,11982,GO-20169008137,THEFT UNDER - BICYCLE,2016-08-02T00:00:00,2016,August,Tuesday,2,215,21,2016-08-03T00:00:00,2016,August,Wednesday,3,216,13,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,NO,,RG,1,BLK,550.0,STOLEN,20250,"{'type': 'Point', 'coordinates': (-79.44608819, 43.6690567)}"
-20277,24405,GO-20209023916,THEFT UNDER,2020-09-19T00:00:00,2020,September,Saturday,19,263,23,2020-09-20T00:00:00,2020,September,Sunday,20,264,18,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,21,WHI,300.0,STOLEN,20251,"{'type': 'Point', 'coordinates': (-79.44269466, 43.65833851)}"
-20278,18309,GO-20209029884,THEFT UNDER,2020-11-16T00:00:00,2020,November,Monday,16,321,19,2020-11-17T00:00:00,2020,November,Tuesday,17,322,19,D13,Toronto,92,Corso Italia-Davenport (92),"Apartment (Rooming House, Condo)",Apartment,MA,LOMBARD,RG,15,BLK,1200.0,STOLEN,20252,"{'type': 'Point', 'coordinates': (-79.43971621, 43.678692100000006)}"
-20279,15077,GO-2015475534,THEFT UNDER,2015-03-20T00:00:00,2015,March,Friday,20,79,15,2015-03-21T00:00:00,2015,March,Saturday,21,80,13,D11,Toronto,91,Weston-Pellam Park (91),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,RC,1,,,RECOVERED,20253,"{'type': 'Point', 'coordinates': (-79.45488617, 43.66832208)}"
-20280,15098,GO-20151245315,THEFT UNDER,2015-07-21T00:00:00,2015,July,Tuesday,21,202,0,2015-07-21T00:00:00,2015,July,Tuesday,21,202,21,D11,Toronto,91,Weston-Pellam Park (91),"Private Property Structure (Pool, Shed, Detached Garage)",Other,FELT,,OT,1,WHI,1000.0,STOLEN,20254,"{'type': 'Point', 'coordinates': (-79.45969359, 43.67046032)}"
-20281,18398,GO-20159002218,THEFT UNDER,2015-04-24T00:00:00,2015,April,Friday,24,114,13,2015-04-24T00:00:00,2015,April,Friday,24,114,19,D13,Toronto,94,Wychwood (94),"Open Areas (Lakes, Parks, Rivers)",Outside,SU,,RG,18,SIL,150.0,STOLEN,21342,"{'type': 'Point', 'coordinates': (-79.42648302, 43.67247944)}"
-20282,15106,GO-20151833164,THEFT UNDER,2015-10-25T00:00:00,2015,October,Sunday,25,298,0,2015-10-25T00:00:00,2015,October,Sunday,25,298,0,D11,Toronto,91,Weston-Pellam Park (91),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MARIN OR MARINO,CALIFORNIA,MT,21,BLKRED,500.0,STOLEN,20255,"{'type': 'Point', 'coordinates': (-79.45246419, 43.67085359)}"
-20283,15171,GO-20179005868,THEFT UNDER,2017-05-07T00:00:00,2017,May,Sunday,7,127,17,2017-05-07T00:00:00,2017,May,Sunday,7,127,17,D11,Toronto,91,Weston-Pellam Park (91),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,FIXED,RG,1,BLK,700.0,STOLEN,20256,"{'type': 'Point', 'coordinates': (-79.46229106, 43.67102096)}"
-20284,15255,GO-20199001262,THEFT UNDER - BICYCLE,2019-01-10T00:00:00,2019,January,Thursday,10,10,8,2019-01-10T00:00:00,2019,January,Thursday,10,10,18,D11,Toronto,91,Weston-Pellam Park (91),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,BLU/SML CDALE,TO,27,BLU,950.0,STOLEN,20257,"{'type': 'Point', 'coordinates': (-79.45345349, 43.67114816)}"
-20285,15407,GO-20151031427,B&E W'INTENT,2015-06-19T00:00:00,2015,June,Friday,19,170,13,2015-06-19T00:00:00,2015,June,Friday,19,170,21,D12,Toronto,91,Weston-Pellam Park (91),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,RG,20,SIL,,STOLEN,20258,"{'type': 'Point', 'coordinates': (-79.46385125000002, 43.67657424)}"
-20286,18515,GO-20149004957,THEFT UNDER,2014-07-13T00:00:00,2014,July,Sunday,13,194,10,2014-07-13T00:00:00,2014,July,Sunday,13,194,21,D11,Toronto,91,Weston-Pellam Park (91),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,,MT,21,BLK,175.0,STOLEN,20259,"{'type': 'Point', 'coordinates': (-79.45354411, 43.67222263000001)}"
-20287,18518,GO-20142928122,THEFT UNDER,2014-09-13T00:00:00,2014,September,Saturday,13,256,11,2014-09-17T00:00:00,2014,September,Wednesday,17,260,20,D11,Toronto,91,Weston-Pellam Park (91),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,GENESIS TRAFFIC,OT,6,BLK,400.0,STOLEN,20260,"{'type': 'Point', 'coordinates': (-79.45969359, 43.67046032)}"
-20288,18698,GO-20192510248,THEFT OF EBIKE UNDER $5000,2019-12-30T00:00:00,2019,December,Monday,30,364,0,2019-12-30T00:00:00,2019,December,Monday,30,364,8,D11,Toronto,91,Weston-Pellam Park (91),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MONSTER,BLACK AND BLUE,EL,12,BLKBLU,1900.0,STOLEN,20261,"{'type': 'Point', 'coordinates': (-79.46065807000001, 43.67068681)}"
-20289,21554,GO-20209012017,THEFT UNDER,2020-04-24T00:00:00,2020,April,Friday,24,115,12,2020-04-27T00:00:00,2020,April,Monday,27,118,16,D12,Toronto,91,Weston-Pellam Park (91),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,,MT,10,WHI,2046.0,STOLEN,20262,"{'type': 'Point', 'coordinates': (-79.46032016, 43.67499283)}"
-20290,21555,GO-20209015031,THEFT UNDER,2020-06-01T00:00:00,2020,June,Monday,1,153,23,2020-06-09T00:00:00,2020,June,Tuesday,9,161,22,D12,Toronto,91,Weston-Pellam Park (91),"Apartment (Rooming House, Condo)",Apartment,BI,AVENUE,RG,21,BLK,500.0,STOLEN,20263,"{'type': 'Point', 'coordinates': (-79.46032016, 43.67499283)}"
-20291,21586,GO-20142221789,THEFT UNDER,2014-06-03T00:00:00,2014,June,Tuesday,3,154,23,2014-06-04T00:00:00,2014,June,Wednesday,4,155,18,D11,Toronto,91,Weston-Pellam Park (91),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,MACK,EL,3,WHI,2400.0,STOLEN,20264,"{'type': 'Point', 'coordinates': (-79.45868093, 43.67448919)}"
-20292,21594,GO-20142813408,THEFT UNDER,2014-08-29T00:00:00,2014,August,Friday,29,241,20,2014-08-31T00:00:00,2014,August,Sunday,31,243,13,D11,Toronto,91,Weston-Pellam Park (91),"Single Home, House (Attach Garage, Cottage, Mobile)",House,INFINITY,,OT,21,GLDSIL,300.0,STOLEN,20265,"{'type': 'Point', 'coordinates': (-79.45321807, 43.67071974)}"
-20293,21595,GO-20142813408,THEFT UNDER,2014-08-29T00:00:00,2014,August,Friday,29,241,20,2014-08-31T00:00:00,2014,August,Sunday,31,243,13,D11,Toronto,91,Weston-Pellam Park (91),"Single Home, House (Attach Garage, Cottage, Mobile)",House,INFINITY,,MT,21,SIL,159.0,STOLEN,20266,"{'type': 'Point', 'coordinates': (-79.45321807, 43.67071974)}"
-20294,21604,GO-20143203204,THEFT UNDER,2014-10-29T00:00:00,2014,October,Wednesday,29,302,18,2014-10-30T00:00:00,2014,October,Thursday,30,303,8,D11,Toronto,91,Weston-Pellam Park (91),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MASI,UNO-DROP,OT,1,BLK,900.0,STOLEN,20267,"{'type': 'Point', 'coordinates': (-79.46229106, 43.67102096)}"
-20295,21621,GO-20151552672,THEFT UNDER,2015-09-07T00:00:00,2015,September,Monday,7,250,23,2015-09-08T00:00:00,2015,September,Tuesday,8,251,18,D11,Toronto,91,Weston-Pellam Park (91),"Apartment (Rooming House, Condo)",Apartment,UNK,,RC,21,OTH,,UNKNOWN,20268,"{'type': 'Point', 'coordinates': (-79.45981972, 43.66839559)}"
-20296,21630,GO-20152210423,THEFT UNDER,2015-12-26T00:00:00,2015,December,Saturday,26,360,8,2015-12-26T00:00:00,2015,December,Saturday,26,360,10,D11,Toronto,91,Weston-Pellam Park (91),"Single Home, House (Attach Garage, Cottage, Mobile)",House,EMMO,ALIEN,SC,0,BLK,,STOLEN,20269,"{'type': 'Point', 'coordinates': (-79.4617265, 43.67189823)}"
-20297,21671,GO-20179006591,THEFT UNDER,2017-05-17T00:00:00,2017,May,Wednesday,17,137,18,2017-05-18T00:00:00,2017,May,Thursday,18,138,18,D11,Toronto,91,Weston-Pellam Park (91),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RM,OXYGEN RACE,MT,27,YEL,1000.0,STOLEN,20270,"{'type': 'Point', 'coordinates': (-79.45203206, 43.6677784)}"
-20298,21724,GO-20199001262,THEFT UNDER - BICYCLE,2019-01-10T00:00:00,2019,January,Thursday,10,10,8,2019-01-10T00:00:00,2019,January,Thursday,10,10,18,D11,Toronto,91,Weston-Pellam Park (91),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,09 QUICK 4,OT,27,BLU,900.0,STOLEN,20271,"{'type': 'Point', 'coordinates': (-79.45345349, 43.67114816)}"
-20299,21762,GO-20199035721,THEFT UNDER,2019-10-28T00:00:00,2019,October,Monday,28,301,1,2019-10-29T00:00:00,2019,October,Tuesday,29,302,15,D11,Toronto,91,Weston-Pellam Park (91),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,FIORI + HAND PA,RC,1,BLK,700.0,STOLEN,20272,"{'type': 'Point', 'coordinates': (-79.45665259, 43.67245887)}"
-20300,21977,GO-20201770256,THEFT UNDER - BICYCLE,2020-09-08T00:00:00,2020,September,Tuesday,8,252,0,2020-09-18T00:00:00,2020,September,Friday,18,262,12,D11,Toronto,91,Weston-Pellam Park (91),"Single Home, House (Attach Garage, Cottage, Mobile)",House,JAMIS,,MT,21,WHI,500.0,STOLEN,20273,"{'type': 'Point', 'coordinates': (-79.46126964, 43.67083761)}"
-20301,24618,GO-20142497976,ROBBERY - OTHER,2014-07-14T00:00:00,2014,July,Monday,14,195,14,2014-07-14T00:00:00,2014,July,Monday,14,195,20,D12,Toronto,91,Weston-Pellam Park (91),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,UNKNOWN,BM,1,WHI,150.0,STOLEN,20274,"{'type': 'Point', 'coordinates': (-79.46750456, 43.67778742)}"
-20302,24992,GO-20149004554,THEFT UNDER,2014-06-29T00:00:00,2014,June,Sunday,29,180,6,2014-06-29T00:00:00,2014,June,Sunday,29,180,11,D11,Toronto,91,Weston-Pellam Park (91),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,TO,10,LGR,400.0,STOLEN,20275,"{'type': 'Point', 'coordinates': (-79.45695502, 43.6731743)}"
-20303,25022,GO-2015964053,THEFT UNDER,2015-06-07T00:00:00,2015,June,Sunday,7,158,7,2015-06-09T00:00:00,2015,June,Tuesday,9,160,7,D11,Toronto,91,Weston-Pellam Park (91),"Apartment (Rooming House, Condo)",Apartment,OTHER,,MT,0,BLUYEL,,STOLEN,20276,"{'type': 'Point', 'coordinates': (-79.45441659, 43.67052275)}"
-20304,25025,GO-20151129818,THEFT UNDER,2015-07-04T00:00:00,2015,July,Saturday,4,185,3,2015-07-04T00:00:00,2015,July,Saturday,4,185,23,D11,Toronto,91,Weston-Pellam Park (91),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,1,BLK,120.0,STOLEN,20277,"{'type': 'Point', 'coordinates': (-79.45981972, 43.66839559)}"
-20305,25026,GO-20151129818,THEFT UNDER,2015-07-04T00:00:00,2015,July,Saturday,4,185,3,2015-07-04T00:00:00,2015,July,Saturday,4,185,23,D11,Toronto,91,Weston-Pellam Park (91),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,MT,24,GRN,120.0,STOLEN,20278,"{'type': 'Point', 'coordinates': (-79.45981972, 43.66839559)}"
-20306,25061,GO-20169011504,THEFT UNDER - BICYCLE,2016-09-28T00:00:00,2016,September,Wednesday,28,272,17,2016-10-03T00:00:00,2016,October,Monday,3,277,17,D11,Toronto,91,Weston-Pellam Park (91),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,3,SIL,959.0,STOLEN,20279,"{'type': 'Point', 'coordinates': (-79.45203206, 43.6677784)}"
-20307,25101,GO-20171767588,THEFT UNDER - BICYCLE,2017-09-27T00:00:00,2017,September,Wednesday,27,270,7,2017-09-29T00:00:00,2017,September,Friday,29,272,12,D11,Toronto,91,Weston-Pellam Park (91),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,OT,1,BLK,150.0,STOLEN,20280,"{'type': 'Point', 'coordinates': (-79.45828778, 43.6675797)}"
-20308,25147,GO-20199024537,THEFT UNDER,2019-07-29T00:00:00,2019,July,Monday,29,210,12,2019-07-31T00:00:00,2019,July,Wednesday,31,212,16,D11,Toronto,91,Weston-Pellam Park (91),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,INFERNO,BM,20,RED,300.0,STOLEN,20281,"{'type': 'Point', 'coordinates': (-79.45233131, 43.6684862)}"
-20309,25167,GO-20192246682,THEFT UNDER - BICYCLE,2019-11-21T00:00:00,2019,November,Thursday,21,325,8,2019-11-21T00:00:00,2019,November,Thursday,21,325,9,D11,Toronto,91,Weston-Pellam Park (91),Homeless Shelter / Mission,Other,ROCKY MOUNTAIN,,MT,0,WHI,800.0,STOLEN,20282,"{'type': 'Point', 'coordinates': (-79.45345349, 43.67114816)}"
-20310,25319,GO-20179017745,THEFT UNDER - BICYCLE,2017-10-14T00:00:00,2017,October,Saturday,14,287,23,2017-10-20T00:00:00,2017,October,Friday,20,293,19,D12,Toronto,91,Weston-Pellam Park (91),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,,MT,24,BLK,725.0,STOLEN,20283,"{'type': 'Point', 'coordinates': (-79.46147538, 43.68119237)}"
-20311,472,GO-20179006988,THEFT UNDER,2017-05-22T00:00:00,2017,May,Monday,22,142,20,2017-05-25T00:00:00,2017,May,Thursday,25,145,22,D13,Toronto,92,Corso Italia-Davenport (92),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,OT,1,BLK,500.0,STOLEN,20284,"{'type': 'Point', 'coordinates': (-79.44883818, 43.68371981)}"
-20312,1877,GO-20179020439,THEFT UNDER,2017-11-23T00:00:00,2017,November,Thursday,23,327,12,2017-11-24T00:00:00,2017,November,Friday,24,328,12,D13,Toronto,92,Corso Italia-Davenport (92),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CC,ORION,RG,21,TRQ,400.0,STOLEN,20285,"{'type': 'Point', 'coordinates': (-79.44493617, 43.67576899)}"
-20313,7867,GO-20141968743,THEFT UNDER,2014-04-27T00:00:00,2014,April,Sunday,27,117,10,2014-04-27T00:00:00,2014,April,Sunday,27,117,12,D13,Toronto,92,Corso Italia-Davenport (92),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KONA,BIG SMOKE,MT,21,BLK,500.0,STOLEN,20301,"{'type': 'Point', 'coordinates': (-79.43690874, 43.67461915)}"
-20314,1954,GO-20173240942,THEFT UNDER - BICYCLE,2017-12-11T00:00:00,2017,December,Monday,11,345,12,2017-12-21T00:00:00,2017,December,Thursday,21,355,16,D13,Toronto,92,Corso Italia-Davenport (92),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BRODIE,REMUS,RG,1,GRY,600.0,STOLEN,20286,"{'type': 'Point', 'coordinates': (-79.44272295, 43.67450041)}"
-20315,2356,GO-20189015652,THEFT UNDER - BICYCLE,2018-05-20T00:00:00,2018,May,Sunday,20,140,17,2018-05-21T00:00:00,2018,May,Monday,21,141,0,D13,Toronto,92,Corso Italia-Davenport (92),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,ZEMARTT,RG,24,BLK,1000.0,STOLEN,20287,"{'type': 'Point', 'coordinates': (-79.44919053, 43.68138324)}"
-20316,2644,GO-20189019708,THEFT UNDER - BICYCLE,2018-06-03T00:00:00,2018,June,Sunday,3,154,18,2018-06-21T00:00:00,2018,June,Thursday,21,172,18,D13,Toronto,92,Corso Italia-Davenport (92),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,DEATH FORK,RC,12,SIL,2000.0,STOLEN,20288,"{'type': 'Point', 'coordinates': (-79.4419359, 43.67818474)}"
-20317,2992,GO-20189024115,THEFT UNDER - BICYCLE,2018-07-24T00:00:00,2018,July,Tuesday,24,205,22,2018-07-27T00:00:00,2018,July,Friday,27,208,10,D13,Toronto,92,Corso Italia-Davenport (92),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,ESCAPE 2,RG,24,BLU,600.0,STOLEN,20289,"{'type': 'Point', 'coordinates': (-79.44030626, 43.67425106)}"
-20318,3366,GO-20189028606,THEFT UNDER - BICYCLE,2018-08-29T00:00:00,2018,August,Wednesday,29,241,16,2018-08-30T00:00:00,2018,August,Thursday,30,242,18,D13,Toronto,92,Corso Italia-Davenport (92),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,SVELTO RRD 58CM,RC,14,WHI,1000.0,STOLEN,20290,"{'type': 'Point', 'coordinates': (-79.44919053, 43.68138324)}"
-20319,4850,GO-20199023424,THEFT UNDER - BICYCLE,2019-07-22T00:00:00,2019,July,Monday,22,203,8,2019-07-23T00:00:00,2019,July,Tuesday,23,204,16,D13,Toronto,92,Corso Italia-Davenport (92),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,,RG,21,,875.0,STOLEN,20291,"{'type': 'Point', 'coordinates': (-79.43855967, 43.67894631)}"
-20320,5084,GO-20199026387,THEFT UNDER - BICYCLE,2019-08-03T00:00:00,2019,August,Saturday,3,215,11,2019-08-16T00:00:00,2019,August,Friday,16,228,17,D13,Toronto,92,Corso Italia-Davenport (92),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,STORM,MT,27,GRY,250.0,STOLEN,20292,"{'type': 'Point', 'coordinates': (-79.45004486, 43.683465)}"
-20321,6342,GO-20209014908,THEFT UNDER,2020-06-05T00:00:00,2020,June,Friday,5,157,19,2020-06-09T00:00:00,2020,June,Tuesday,9,161,22,D13,Toronto,92,Corso Italia-Davenport (92),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,FULL SUSPENSION,MT,12,WHI,150.0,STOLEN,20293,"{'type': 'Point', 'coordinates': (-79.44459972, 43.67498093)}"
-20322,6651,GO-20209017838,THEFT UNDER,2020-07-17T00:00:00,2020,July,Friday,17,199,6,2020-07-17T00:00:00,2020,July,Friday,17,199,23,D13,Toronto,92,Corso Italia-Davenport (92),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,7200 MULTITRACK,MT,21,GRY,500.0,STOLEN,20294,"{'type': 'Point', 'coordinates': (-79.45056268, 43.67630444)}"
-20323,6847,GO-20201445317,B&E,2020-07-29T00:00:00,2020,July,Wednesday,29,211,0,2020-08-03T00:00:00,2020,August,Monday,3,216,11,D13,Toronto,92,Corso Italia-Davenport (92),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BIANCHI,MILANO,OT,10,GRN,800.0,STOLEN,20295,"{'type': 'Point', 'coordinates': (-79.43905023, 43.67709039)}"
-20324,7276,GO-20201763137,B&E,2020-09-17T00:00:00,2020,September,Thursday,17,261,12,2020-09-17T00:00:00,2020,September,Thursday,17,261,16,D13,Toronto,92,Corso Italia-Davenport (92),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BTWIN,ROCKRIDER 340,MT,21,ONG,279.0,STOLEN,20296,"{'type': 'Point', 'coordinates': (-79.44130085, 43.67659547)}"
-20325,7398,GO-20209025224,THEFT UNDER,2020-09-30T00:00:00,2020,September,Wednesday,30,274,19,2020-10-02T00:00:00,2020,October,Friday,2,276,10,D13,Toronto,92,Corso Italia-Davenport (92),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,5,WHI,350.0,STOLEN,20297,"{'type': 'Point', 'coordinates': (-79.44030626, 43.67425106)}"
-20326,7442,GO-20209026085,THEFT UNDER,2020-10-09T00:00:00,2020,October,Friday,9,283,16,2020-10-10T00:00:00,2020,October,Saturday,10,284,21,D13,Toronto,92,Corso Italia-Davenport (92),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,DUTCHI3,TO,3,RED,900.0,STOLEN,20298,"{'type': 'Point', 'coordinates': (-79.43587315, 43.67954756)}"
-20327,7599,GO-20209028887,THEFT UNDER,2018-08-16T00:00:00,2018,August,Thursday,16,228,6,2020-11-06T00:00:00,2020,November,Friday,6,311,17,D13,Toronto,92,Corso Italia-Davenport (92),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,10,BGE,100.0,STOLEN,20299,"{'type': 'Point', 'coordinates': (-79.43971621, 43.678692100000006)}"
-20328,7760,GO-20149001221,THEFT UNDER,2014-02-12T00:00:00,2014,February,Wednesday,12,43,9,2014-02-12T00:00:00,2014,February,Wednesday,12,43,17,D13,Toronto,92,Corso Italia-Davenport (92),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,DART LITHIUM,EL,1,BLK,1700.0,STOLEN,20300,"{'type': 'Point', 'coordinates': (-79.43551602000001, 43.6786848)}"
-20329,8289,GO-20142421043,THEFT UNDER,2014-06-27T00:00:00,2014,June,Friday,27,178,7,2014-07-03T00:00:00,2014,July,Thursday,3,184,11,D13,Toronto,92,Corso Italia-Davenport (92),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MARIN OR MARINO,MEIRWOOD,OT,18,BLK,800.0,STOLEN,20302,"{'type': 'Point', 'coordinates': (-79.43971621, 43.678692100000006)}"
-20330,8370,GO-20149004822,THEFT UNDER,2014-07-08T00:00:00,2014,July,Tuesday,8,189,0,2014-07-08T00:00:00,2014,July,Tuesday,8,189,19,D13,Toronto,92,Corso Italia-Davenport (92),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,EXCEED 10,OT,21,GRY,550.0,STOLEN,20303,"{'type': 'Point', 'coordinates': (-79.43461205, 43.67429067)}"
-20331,8551,GO-20142606886,THEFT UNDER,2014-07-31T00:00:00,2014,July,Thursday,31,212,9,2014-07-31T00:00:00,2014,July,Thursday,31,212,10,D13,Toronto,92,Corso Italia-Davenport (92),Schools During Un-Supervised Activity,Educational,CCM,PRESTO,OT,21,DBL,250.0,STOLEN,20304,"{'type': 'Point', 'coordinates': (-79.43551602000001, 43.6786848)}"
-20332,8632,GO-20149005763,THEFT UNDER,2014-08-04T00:00:00,2014,August,Monday,4,216,16,2014-08-09T00:00:00,2014,August,Saturday,9,221,15,D13,Toronto,92,Corso Italia-Davenport (92),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,24,WHI,600.0,STOLEN,20305,"{'type': 'Point', 'coordinates': (-79.44919053, 43.68138324)}"
-20333,9009,GO-20143029391,THEFT UNDER,2014-10-02T00:00:00,2014,October,Thursday,2,275,7,2014-10-02T00:00:00,2014,October,Thursday,2,275,17,D13,Toronto,92,Corso Italia-Davenport (92),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CCM,,MT,21,SIL,200.0,STOLEN,20306,"{'type': 'Point', 'coordinates': (-79.43461205, 43.67429067)}"
-20334,9149,GO-20143237088,THEFT UNDER,2014-10-22T00:00:00,2014,October,Wednesday,22,295,10,2014-11-04T00:00:00,2014,November,Tuesday,4,308,15,D13,Toronto,92,Corso Italia-Davenport (92),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RALEIGH,HYBRID,MT,18,SIL,500.0,STOLEN,20307,"{'type': 'Point', 'coordinates': (-79.43873287000001, 43.67892311)}"
-20335,10057,GO-20159004741,THEFT UNDER,2015-07-16T00:00:00,2015,July,Thursday,16,197,19,2015-07-21T00:00:00,2015,July,Tuesday,21,202,9,D13,Toronto,92,Corso Italia-Davenport (92),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,SIRRUS ELITE,RG,18,BLK,1100.0,STOLEN,20308,"{'type': 'Point', 'coordinates': (-79.44767861, 43.6839843)}"
-20336,11233,GO-20169004019,THEFT UNDER,2016-04-29T00:00:00,2016,April,Friday,29,120,13,2016-05-01T00:00:00,2016,May,Sunday,1,122,14,D11,Toronto,90,Junction Area (90),"Apartment (Rooming House, Condo)",Apartment,RA,ALYSA 1,RG,21,TRQ,550.0,STOLEN,20330,"{'type': 'Point', 'coordinates': (-79.46501947, 43.66658204)}"
-20337,10090,GO-20151256835,THEFT UNDER,2015-07-23T00:00:00,2015,July,Thursday,23,204,9,2015-07-26T00:00:00,2015,July,Sunday,26,207,12,D13,Toronto,92,Corso Italia-Davenport (92),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,OT,1,BLK,470.0,STOLEN,20309,"{'type': 'Point', 'coordinates': (-79.45056268, 43.67630444)}"
-20338,10126,GO-20151282289,THEFT UNDER,2015-07-25T00:00:00,2015,July,Saturday,25,206,14,2015-07-27T00:00:00,2015,July,Monday,27,208,12,D13,Toronto,92,Corso Italia-Davenport (92),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,TEV,EL,0,BLU,1100.0,STOLEN,20310,"{'type': 'Point', 'coordinates': (-79.44304265, 43.67796161)}"
-20339,10464,GO-20151590623,THEFT UNDER,2015-09-10T00:00:00,2015,September,Thursday,10,253,14,2015-09-14T00:00:00,2015,September,Monday,14,257,19,D13,Toronto,92,Corso Italia-Davenport (92),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,UNKNOWN,EL,1,GLDWHI,400.0,STOLEN,20311,"{'type': 'Point', 'coordinates': (-79.4419359, 43.67818474)}"
-20340,11012,GO-20169001745,THEFT UNDER,2016-02-25T00:00:00,2016,February,Thursday,25,56,9,2016-02-25T00:00:00,2016,February,Thursday,25,56,11,D13,Toronto,92,Corso Italia-Davenport (92),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,ESCAPE 1 XL,RG,21,GRY,800.0,STOLEN,20312,"{'type': 'Point', 'coordinates': (-79.44745171, 43.67169626)}"
-20341,11094,GO-20169003003,THEFT UNDER,2016-04-01T00:00:00,2016,April,Friday,1,92,18,2016-04-02T00:00:00,2016,April,Saturday,2,93,12,D13,Toronto,92,Corso Italia-Davenport (92),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,MONTREAL,RG,7,BLK,800.0,STOLEN,20313,"{'type': 'Point', 'coordinates': (-79.43710214000001, 43.67397426)}"
-20342,11980,GO-20169008127,THEFT UNDER - BICYCLE,2016-08-02T00:00:00,2016,August,Tuesday,2,215,3,2016-08-03T00:00:00,2016,August,Wednesday,3,216,10,D13,Toronto,92,Corso Italia-Davenport (92),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,FO,10,WHI,2000.0,STOLEN,20314,"{'type': 'Point', 'coordinates': (-79.43690874, 43.67461915)}"
-20343,11999,GO-20169008224,THEFT UNDER - BICYCLE,2016-07-31T00:00:00,2016,July,Sunday,31,213,16,2016-08-04T00:00:00,2016,August,Thursday,4,217,19,D13,Toronto,92,Corso Italia-Davenport (92),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KO,DEW PLUS,OT,24,BLK,750.0,STOLEN,20315,"{'type': 'Point', 'coordinates': (-79.44016212, 43.6768463)}"
-20344,12314,GO-20161614600,THEFT UNDER,2016-09-09T00:00:00,2016,September,Friday,9,253,17,2016-09-11T00:00:00,2016,September,Sunday,11,255,11,D13,Toronto,92,Corso Italia-Davenport (92),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,ORION,RG,1,BLK,300.0,STOLEN,20316,"{'type': 'Point', 'coordinates': (-79.43743415, 43.67761897)}"
-20345,12845,GO-20169014180,THEFT UNDER,2016-10-15T00:00:00,2016,October,Saturday,15,289,18,2016-12-03T00:00:00,2016,December,Saturday,3,338,21,D13,Toronto,92,Corso Italia-Davenport (92),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,CYPRESS,RG,18,GRY,600.0,STOLEN,20317,"{'type': 'Point', 'coordinates': (-79.44529244, 43.6808698)}"
-20346,14858,GO-20191330940,THEFT UNDER - BICYCLE,2019-07-12T00:00:00,2019,July,Friday,12,193,10,2019-07-16T00:00:00,2019,July,Tuesday,16,197,10,D13,Toronto,92,Corso Italia-Davenport (92),"Single Home, House (Attach Garage, Cottage, Mobile)",House,JAMIS,,MT,0,WHIRED,600.0,STOLEN,20318,"{'type': 'Point', 'coordinates': (-79.43531324, 43.67530266)}"
-20347,14859,GO-20191330940,THEFT UNDER - BICYCLE,2019-07-12T00:00:00,2019,July,Friday,12,193,10,2019-07-16T00:00:00,2019,July,Tuesday,16,197,10,D13,Toronto,92,Corso Italia-Davenport (92),"Single Home, House (Attach Garage, Cottage, Mobile)",House,JAMIS,,MT,0,GRYBLK,600.0,STOLEN,20319,"{'type': 'Point', 'coordinates': (-79.43531324, 43.67530266)}"
-20348,14865,GO-20191549443,THEFT UNDER - BICYCLE,2019-08-15T00:00:00,2019,August,Thursday,15,227,12,2019-08-15T00:00:00,2019,August,Thursday,15,227,13,D13,Toronto,92,Corso Italia-Davenport (92),Bar / Restaurant,Commercial,OTHER,FIXATION,MT,18,REDYEL,,STOLEN,20320,"{'type': 'Point', 'coordinates': (-79.44304265, 43.67796161)}"
-20349,14898,GO-20209023520,THEFT UNDER,2020-09-15T00:00:00,2020,September,Tuesday,15,259,15,2020-09-17T00:00:00,2020,September,Thursday,17,261,12,D13,Toronto,92,Corso Italia-Davenport (92),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,DUTCHIE 3,TO,3,LGR,1100.0,STOLEN,20321,"{'type': 'Point', 'coordinates': (-79.44304265, 43.67796161)}"
-20350,15352,GO-20149006343,THEFT UNDER,2014-08-26T00:00:00,2014,August,Tuesday,26,238,0,2014-08-27T00:00:00,2014,August,Wednesday,27,239,12,D13,Toronto,92,Corso Italia-Davenport (92),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,CADENT I8 (BLAC,RG,8,BLK,750.0,STOLEN,20322,"{'type': 'Point', 'coordinates': (-79.44238065, 43.67633736)}"
-20351,15291,GO-20199042346,THEFT UNDER,2019-12-22T00:00:00,2019,December,Sunday,22,356,18,2019-12-29T00:00:00,2019,December,Sunday,29,363,19,D11,Toronto,90,Junction Area (90),"Apartment (Rooming House, Condo)",Apartment,OT,KARATE MONKEY,MT,24,BLK,1200.0,STOLEN,20363,"{'type': 'Point', 'coordinates': (-79.46501947, 43.66658204)}"
-20352,15357,GO-20149006510,THEFT UNDER,2014-09-01T00:00:00,2014,September,Monday,1,244,17,2014-09-02T00:00:00,2014,September,Tuesday,2,245,17,D13,Toronto,92,Corso Italia-Davenport (92),"Apartment (Rooming House, Condo)",Apartment,UK,LINUS ROADSTER,RG,3,BLU,850.0,STOLEN,20323,"{'type': 'Point', 'coordinates': (-79.44244871, 43.67368816)}"
-20353,15533,GO-20169008292,THEFT UNDER - BICYCLE,2016-08-03T00:00:00,2016,August,Wednesday,3,216,21,2016-08-06T00:00:00,2016,August,Saturday,6,219,15,D13,Toronto,92,Corso Italia-Davenport (92),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RM,,RG,18,SIL,600.0,STOLEN,20324,"{'type': 'Point', 'coordinates': (-79.44272555, 43.67713501)}"
-20354,15619,GO-20179010756,THEFT UNDER - BICYCLE,2017-07-18T00:00:00,2017,July,Tuesday,18,199,7,2017-07-21T00:00:00,2017,July,Friday,21,202,15,D13,Toronto,92,Corso Italia-Davenport (92),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,RA,PORTAGE,MT,18,BLK,300.0,STOLEN,20325,"{'type': 'Point', 'coordinates': (-79.44938061, 43.67137418)}"
-20355,18226,GO-20173114441,THEFT UNDER - BICYCLE,2017-12-01T00:00:00,2017,December,Friday,1,335,12,2017-12-02T00:00:00,2017,December,Saturday,2,336,7,D13,Toronto,92,Corso Italia-Davenport (92),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,FELICITY,RE,3,BLK,,STOLEN,20326,"{'type': 'Point', 'coordinates': (-79.44238065, 43.67633736)}"
-20356,18227,GO-20173114441,THEFT UNDER - BICYCLE,2017-12-01T00:00:00,2017,December,Friday,1,335,12,2017-12-02T00:00:00,2017,December,Saturday,2,336,7,D13,Toronto,92,Corso Italia-Davenport (92),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,7.3 FX,OT,27,GRY,500.0,STOLEN,20327,"{'type': 'Point', 'coordinates': (-79.44238065, 43.67633736)}"
-20357,18228,GO-20173114441,THEFT UNDER - BICYCLE,2017-12-01T00:00:00,2017,December,Friday,1,335,12,2017-12-02T00:00:00,2017,December,Saturday,2,336,7,D13,Toronto,92,Corso Italia-Davenport (92),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,DOLCE,TO,9,WHI,1000.0,STOLEN,20328,"{'type': 'Point', 'coordinates': (-79.44238065, 43.67633736)}"
-20358,18257,GO-20199027723,THEFT UNDER - BICYCLE,2019-08-25T00:00:00,2019,August,Sunday,25,237,19,2019-08-26T00:00:00,2019,August,Monday,26,238,12,D13,Toronto,92,Corso Italia-Davenport (92),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,EASTSIDE,RG,1,SIL,800.0,STOLEN,20329,"{'type': 'Point', 'coordinates': (-79.45056268, 43.67630444)}"
-20359,11254,GO-2016764611,THEFT UNDER - BICYCLE,2016-05-04T00:00:00,2016,May,Wednesday,4,125,15,2016-05-04T00:00:00,2016,May,Wednesday,4,125,15,D11,Toronto,90,Junction Area (90),"Gas Station (Self, Full, Attached Convenience)",Commercial,OTHER,UNKNOWN,MT,12,GRY,50.0,STOLEN,20331,"{'type': 'Point', 'coordinates': (-79.47991211, 43.66980491)}"
-20360,12185,GO-20169009344,THEFT UNDER - BICYCLE,2016-08-23T00:00:00,2016,August,Tuesday,23,236,8,2016-08-23T00:00:00,2016,August,Tuesday,23,236,13,D12,Toronto,90,Junction Area (90),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,ONUS,MT,21,BLK,600.0,STOLEN,20332,"{'type': 'Point', 'coordinates': (-79.46932337, 43.67412806)}"
-20361,12228,GO-20169009655,THEFT UNDER - BICYCLE,2016-08-27T00:00:00,2016,August,Saturday,27,240,13,2016-08-29T00:00:00,2016,August,Monday,29,242,14,D11,Toronto,90,Junction Area (90),"Apartment (Rooming House, Condo)",Apartment,GI,,RC,18,SIL,1500.0,STOLEN,20333,"{'type': 'Point', 'coordinates': (-79.46501947, 43.66658204)}"
-20362,12267,GO-20169009993,THEFT UNDER,2016-09-02T00:00:00,2016,September,Friday,2,246,22,2016-09-05T00:00:00,2016,September,Monday,5,249,18,D11,Toronto,90,Junction Area (90),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UK,6 SPEED,RG,6,PLE,250.0,STOLEN,20334,"{'type': 'Point', 'coordinates': (-79.46706015, 43.67135755)}"
-20363,12546,GO-20161764691,THEFT UNDER - BICYCLE,2016-10-03T00:00:00,2016,October,Monday,3,277,22,2016-10-04T00:00:00,2016,October,Tuesday,4,278,13,D11,Toronto,90,Junction Area (90),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,,MT,0,GRY,50.0,STOLEN,20335,"{'type': 'Point', 'coordinates': (-79.46111499000001, 43.66377121)}"
-20364,12547,GO-20161764691,THEFT UNDER - BICYCLE,2016-10-03T00:00:00,2016,October,Monday,3,277,22,2016-10-04T00:00:00,2016,October,Tuesday,4,278,13,D11,Toronto,90,Junction Area (90),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,,MT,0,RED,50.0,STOLEN,20336,"{'type': 'Point', 'coordinates': (-79.46111499000001, 43.66377121)}"
-20365,12696,GO-20161924652,THEFT UNDER - BICYCLE,2016-10-29T00:00:00,2016,October,Saturday,29,303,16,2016-10-29T00:00:00,2016,October,Saturday,29,303,17,D11,Toronto,90,Junction Area (90),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUPERCYCLE,,MT,6,DBL,,STOLEN,20337,"{'type': 'Point', 'coordinates': (-79.48206778, 43.66558006)}"
-20366,14854,GO-20199020375,THEFT UNDER,2019-06-27T00:00:00,2019,June,Thursday,27,178,18,2019-06-27T00:00:00,2019,June,Thursday,27,178,22,D12,Toronto,90,Junction Area (90),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KO,PADDY WAGON,RG,1,BLK,650.0,STOLEN,20338,"{'type': 'Point', 'coordinates': (-79.47108592, 43.67178188)}"
-20367,14879,GO-2020800120,B&E,2020-03-24T00:00:00,2020,March,Tuesday,24,84,7,2020-04-28T00:00:00,2020,April,Tuesday,28,119,9,D12,Toronto,90,Junction Area (90),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CERVELO,R5 2016,OT,10,BLKRED,8000.0,STOLEN,20339,"{'type': 'Point', 'coordinates': (-79.47186812, 43.6772287)}"
-20368,14881,GO-20209015185,THEFT UNDER,2020-06-11T00:00:00,2020,June,Thursday,11,163,20,2020-06-11T00:00:00,2020,June,Thursday,11,163,23,D12,Toronto,90,Junction Area (90),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,"ALGONQUIN 26""""",MT,18,PLE,111.0,STOLEN,20340,"{'type': 'Point', 'coordinates': (-79.47108592, 43.67178188)}"
-20369,14899,GO-20201835855,THEFT UNDER - BICYCLE,2020-09-27T00:00:00,2020,September,Sunday,27,271,3,2020-09-27T00:00:00,2020,September,Sunday,27,271,13,D11,Toronto,90,Junction Area (90),"Apartment (Rooming House, Condo)",Apartment,GIANT,URBAN BIKE,RG,21,GRY,1000.0,STOLEN,20341,"{'type': 'Point', 'coordinates': (-79.4644539, 43.66812302)}"
-20370,14900,GO-20201835855,THEFT UNDER - BICYCLE,2020-09-27T00:00:00,2020,September,Sunday,27,271,3,2020-09-27T00:00:00,2020,September,Sunday,27,271,13,D11,Toronto,90,Junction Area (90),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,DIVERGENCE,RC,8,BLK,1800.0,STOLEN,20342,"{'type': 'Point', 'coordinates': (-79.4644539, 43.66812302)}"
-20371,14901,GO-20201835855,THEFT UNDER - BICYCLE,2020-09-27T00:00:00,2020,September,Sunday,27,271,3,2020-09-27T00:00:00,2020,September,Sunday,27,271,13,D11,Toronto,90,Junction Area (90),"Apartment (Rooming House, Condo)",Apartment,JAMIS,,RC,8,GRYBLK,1200.0,STOLEN,20343,"{'type': 'Point', 'coordinates': (-79.4644539, 43.66812302)}"
-20372,15057,GO-20142426732,THEFT UNDER,2014-07-03T00:00:00,2014,July,Thursday,3,184,1,2014-07-04T00:00:00,2014,July,Friday,4,185,6,D11,Toronto,90,Junction Area (90),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,26800,MT,18,PLE,,STOLEN,20344,"{'type': 'Point', 'coordinates': (-79.46557595, 43.6678626)}"
-20373,15058,GO-20142462744,THEFT UNDER,2014-07-09T00:00:00,2014,July,Wednesday,9,190,14,2014-07-09T00:00:00,2014,July,Wednesday,9,190,16,D11,Toronto,90,Junction Area (90),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,HUFFY,,MT,18,BLKBLU,200.0,STOLEN,20345,"{'type': 'Point', 'coordinates': (-79.47515603, 43.6708554)}"
-20374,15075,GO-20143186149,THEFT UNDER,2014-10-23T00:00:00,2014,October,Thursday,23,296,3,2014-10-27T00:00:00,2014,October,Monday,27,300,15,D11,Toronto,90,Junction Area (90),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,LANDGEAR,MT,15,BLU,500.0,STOLEN,20346,"{'type': 'Point', 'coordinates': (-79.47965509, 43.66243091)}"
-20375,15085,GO-20159002929,THEFT UNDER,2015-05-15T00:00:00,2015,May,Friday,15,135,11,2015-05-20T00:00:00,2015,May,Wednesday,20,140,15,D11,Toronto,90,Junction Area (90),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,NOVELLO CLASSIC,RG,7,BLK,500.0,STOLEN,20347,"{'type': 'Point', 'coordinates': (-79.48002638, 43.6641067)}"
-20376,15092,GO-20151137353,THEFT UNDER,2015-07-05T00:00:00,2015,July,Sunday,5,186,20,2015-07-06T00:00:00,2015,July,Monday,6,187,8,D11,Toronto,90,Junction Area (90),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BI,STRADA LX YR:19,OT,12,BLK,700.0,STOLEN,20348,"{'type': 'Point', 'coordinates': (-79.48238056, 43.66632757)}"
-20377,15108,GO-20169000871,THEFT UNDER,2016-01-27T00:00:00,2016,January,Wednesday,27,27,2,2016-01-27T00:00:00,2016,January,Wednesday,27,27,11,D11,Toronto,90,Junction Area (90),"Apartment (Rooming House, Condo)",Apartment,KO,SUTRA,TO,27,BLU,1800.0,STOLEN,20349,"{'type': 'Point', 'coordinates': (-79.47103363, 43.66549049)}"
-20378,15123,GO-20161155897,THEFT UNDER - BICYCLE,2016-06-18T00:00:00,2016,June,Saturday,18,170,12,2016-07-02T00:00:00,2016,July,Saturday,2,184,12,D11,Toronto,90,Junction Area (90),"Apartment (Rooming House, Condo)",Apartment,GT,KARAKORAM,MT,27,BLK,813.0,STOLEN,20350,"{'type': 'Point', 'coordinates': (-79.46501947, 43.66658204)}"
-20379,15124,GO-20161155897,THEFT UNDER - BICYCLE,2016-06-18T00:00:00,2016,June,Saturday,18,170,12,2016-07-02T00:00:00,2016,July,Saturday,2,184,12,D11,Toronto,90,Junction Area (90),"Apartment (Rooming House, Condo)",Apartment,NORCO,,BM,1,BLK,750.0,STOLEN,20351,"{'type': 'Point', 'coordinates': (-79.46501947, 43.66658204)}"
-20380,15127,GO-20169008161,THEFT UNDER,2016-08-02T00:00:00,2016,August,Tuesday,2,215,23,2016-08-03T00:00:00,2016,August,Wednesday,3,216,18,D11,Toronto,90,Junction Area (90),"Apartment (Rooming House, Condo)",Apartment,OT,ROCKHOPPER COMP,MT,9,BLK,1130.0,STOLEN,20352,"{'type': 'Point', 'coordinates': (-79.46501947, 43.66658204)}"
-20381,15133,GO-20161464324,THEFT UNDER - BICYCLE,2016-08-18T00:00:00,2016,August,Thursday,18,231,19,2016-08-18T00:00:00,2016,August,Thursday,18,231,22,D11,Toronto,90,Junction Area (90),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,4500,MT,18,GLDBLK,700.0,STOLEN,20353,"{'type': 'Point', 'coordinates': (-79.47887293, 43.66646761)}"
-20382,15134,GO-20169009447,THEFT UNDER - BICYCLE,2016-08-24T00:00:00,2016,August,Wednesday,24,237,18,2016-08-25T00:00:00,2016,August,Thursday,25,238,8,D11,Toronto,90,Junction Area (90),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,CITY CRUISER,RG,3,LGR,800.0,STOLEN,20354,"{'type': 'Point', 'coordinates': (-79.47644513, 43.66487636)}"
-20383,15135,GO-20169009554,THEFT UNDER,2016-08-26T00:00:00,2016,August,Friday,26,239,14,2016-08-26T00:00:00,2016,August,Friday,26,239,18,D11,Toronto,90,Junction Area (90),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,ALLEZ,RC,16,BLK,1200.0,RECOVERED,20355,"{'type': 'Point', 'coordinates': (-79.46585038, 43.66542584)}"
-20384,15153,GO-20162009177,THEFT UNDER - BICYCLE,2016-11-11T00:00:00,2016,November,Friday,11,316,23,2016-11-11T00:00:00,2016,November,Friday,11,316,23,D11,Toronto,90,Junction Area (90),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GARY FISHER,,MT,14,RED,350.0,STOLEN,20356,"{'type': 'Point', 'coordinates': (-79.46922251, 43.66287984)}"
-20385,15172,GO-20179006860,THEFT UNDER - BICYCLE,2017-05-13T00:00:00,2017,May,Saturday,13,133,11,2017-05-24T00:00:00,2017,May,Wednesday,24,144,0,D11,Toronto,90,Junction Area (90),"Apartment (Rooming House, Condo)",Apartment,OT,PLUTONIUM,RC,18,WHI,2200.0,STOLEN,20357,"{'type': 'Point', 'coordinates': (-79.46225124, 43.66539751)}"
-20386,15182,GO-20171293922,THEFT UNDER - BICYCLE,2017-07-18T00:00:00,2017,July,Tuesday,18,199,14,2017-07-19T00:00:00,2017,July,Wednesday,19,200,8,D11,Toronto,90,Junction Area (90),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,ESCAPE,RG,24,BLKGRY,,STOLEN,20358,"{'type': 'Point', 'coordinates': (-79.47108592, 43.67178188)}"
-20387,15242,GO-20189034175,THEFT UNDER - BICYCLE,2018-10-15T00:00:00,2018,October,Monday,15,288,14,2018-10-15T00:00:00,2018,October,Monday,15,288,15,D11,Toronto,90,Junction Area (90),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,URBAN PRO STREE,RG,11,BLK,1500.0,STOLEN,20359,"{'type': 'Point', 'coordinates': (-79.46111499000001, 43.66377121)}"
-20388,15244,GO-20181929280,B&E,2018-08-01T00:00:00,2018,August,Wednesday,1,213,23,2018-10-19T00:00:00,2018,October,Friday,19,292,10,D11,Toronto,90,Junction Area (90),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,HYBRID,MT,10,BLKGRY,600.0,STOLEN,20360,"{'type': 'Point', 'coordinates': (-79.46820621, 43.66049477)}"
-20389,15272,GO-20199021605,THEFT UNDER,2019-07-08T00:00:00,2019,July,Monday,8,189,19,2019-07-09T00:00:00,2019,July,Tuesday,9,190,13,D11,Toronto,90,Junction Area (90),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,RG,10,YEL,0.0,STOLEN,20361,"{'type': 'Point', 'coordinates': (-79.46857841, 43.66546298)}"
-20390,15280,GO-20199025354,THEFT UNDER,2019-08-07T00:00:00,2019,August,Wednesday,7,219,23,2019-08-08T00:00:00,2019,August,Thursday,8,220,11,D11,Toronto,90,Junction Area (90),"Apartment (Rooming House, Condo)",Apartment,SC,MAPLE LEFTS,MT,7,BLU,564.0,STOLEN,20362,"{'type': 'Point', 'coordinates': (-79.46502019, 43.66381122)}"
-20391,15380,GO-20149008109,THEFT UNDER,2014-11-07T00:00:00,2014,November,Friday,7,311,12,2014-11-10T00:00:00,2014,November,Monday,10,314,16,D12,Toronto,90,Junction Area (90),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,PUREFIX,RC,1,DBL,700.0,STOLEN,20364,"{'type': 'Point', 'coordinates': (-79.48352616, 43.66899434)}"
-20392,18316,GO-20209014486,THEFT UNDER,2020-05-27T00:00:00,2020,May,Wednesday,27,148,17,2020-06-03T00:00:00,2020,June,Wednesday,3,155,15,D11,Toronto,90,Junction Area (90),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,21,BLK,550.0,STOLEN,20365,"{'type': 'Point', 'coordinates': (-79.46501947, 43.66658204)}"
-20393,18510,GO-20149003856,THEFT UNDER,2014-06-06T00:00:00,2014,June,Friday,6,157,19,2014-06-06T00:00:00,2014,June,Friday,6,157,19,D11,Toronto,90,Junction Area (90),"Apartment (Rooming House, Condo)",Apartment,PE,VINTAGE (70S),RC,10,LBL,300.0,STOLEN,20366,"{'type': 'Point', 'coordinates': (-79.47378033, 43.66180075)}"
-20394,18511,GO-20149004345,THEFT UNDER,2014-06-22T00:00:00,2014,June,Sunday,22,173,16,2014-06-22T00:00:00,2014,June,Sunday,22,173,17,D11,Toronto,90,Junction Area (90),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,PE,,MT,6,WHI,,STOLEN,20367,"{'type': 'Point', 'coordinates': (-79.47891985, 43.66556386)}"
-20395,18526,GO-2015295388,B&E,2015-02-19T00:00:00,2015,February,Thursday,19,50,8,2015-02-19T00:00:00,2015,February,Thursday,19,50,14,D11,Toronto,90,Junction Area (90),"Apartment (Rooming House, Condo)",Apartment,OTHER,,MT,21,BLK,200.0,STOLEN,20368,"{'type': 'Point', 'coordinates': (-79.47142961, 43.66653692)}"
-20396,18535,GO-20159003230,THEFT UNDER,2015-05-30T00:00:00,2015,May,Saturday,30,150,1,2015-05-31T00:00:00,2015,May,Sunday,31,151,10,D11,Toronto,90,Junction Area (90),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CC,"APEX 26""""",MT,24,WHI,600.0,STOLEN,20369,"{'type': 'Point', 'coordinates': (-79.46585038, 43.66542584)}"
-20397,18540,GO-20151224853,THEFT UNDER,2015-06-01T00:00:00,2015,June,Monday,1,152,15,2015-07-18T00:00:00,2015,July,Saturday,18,199,22,D11,Toronto,90,Junction Area (90),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OPUS,BAROCCO,OT,24,BLKGRN,3000.0,STOLEN,20370,"{'type': 'Point', 'coordinates': (-79.46501947, 43.66658204)}"
-20398,18553,GO-20159007305,THEFT UNDER,2015-09-15T00:00:00,2015,September,Tuesday,15,258,18,2015-09-16T00:00:00,2015,September,Wednesday,16,259,20,D11,Toronto,90,Junction Area (90),Unknown,Other,UK,,TO,1,GLD,700.0,STOLEN,20371,"{'type': 'Point', 'coordinates': (-79.46502019, 43.66381122)}"
-20399,18555,GO-20159009232,THEFT UNDER,2015-10-22T00:00:00,2015,October,Thursday,22,295,14,2015-11-01T00:00:00,2015,November,Sunday,1,305,14,D11,Toronto,90,Junction Area (90),"Apartment (Rooming House, Condo)",Apartment,GI,DEFY 3,RC,21,,677.0,STOLEN,20372,"{'type': 'Point', 'coordinates': (-79.46501947, 43.66658204)}"
-20400,18556,GO-20159009447,THEFT UNDER,2015-11-03T00:00:00,2015,November,Tuesday,3,307,5,2015-11-06T00:00:00,2015,November,Friday,6,310,15,D11,Toronto,90,Junction Area (90),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,7,BLK,900.0,STOLEN,20373,"{'type': 'Point', 'coordinates': (-79.46585038, 43.66542584)}"
-20401,18601,GO-20179008150,THEFT UNDER - BICYCLE,2017-06-14T00:00:00,2017,June,Wednesday,14,165,18,2017-06-15T00:00:00,2017,June,Thursday,15,166,15,D11,Toronto,90,Junction Area (90),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,LEXA (SKU: 1400,RG,50,WHI,850.0,STOLEN,20374,"{'type': 'Point', 'coordinates': (-79.46501947, 43.66658204)}"
-20402,18607,GO-20179010604,THEFT UNDER - BICYCLE,2017-06-22T00:00:00,2017,June,Thursday,22,173,9,2017-07-19T00:00:00,2017,July,Wednesday,19,200,16,D11,Toronto,90,Junction Area (90),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RC,12,RED,200.0,STOLEN,20375,"{'type': 'Point', 'coordinates': (-79.46585038, 43.66542584)}"
-20403,18611,GO-20171368309,THEFT UNDER - BICYCLE,2017-07-29T00:00:00,2017,July,Saturday,29,210,21,2017-07-30T00:00:00,2017,July,Sunday,30,211,12,D11,Toronto,90,Junction Area (90),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FUJI,,MT,28,BLK,700.0,STOLEN,20376,"{'type': 'Point', 'coordinates': (-79.47322679, 43.66551434)}"
-20404,18624,GO-20179017669,THEFT UNDER,2017-10-19T00:00:00,2017,October,Thursday,19,292,19,2017-10-20T00:00:00,2017,October,Friday,20,293,7,D11,Toronto,90,Junction Area (90),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,URBANIA 1,RG,24,BLK,1000.0,STOLEN,20377,"{'type': 'Point', 'coordinates': (-79.45991966, 43.66568747000001)}"
-20405,18634,GO-20189014134,THEFT UNDER - BICYCLE,2018-05-06T00:00:00,2018,May,Sunday,6,126,16,2018-05-08T00:00:00,2018,May,Tuesday,8,128,1,D11,Toronto,90,Junction Area (90),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,MOAB 3,MT,41,RED,65.0,STOLEN,20378,"{'type': 'Point', 'coordinates': (-79.46758526, 43.67253489)}"
-20406,18655,GO-20189030619,THEFT UNDER,2018-09-16T00:00:00,2018,September,Sunday,16,259,8,2018-09-16T00:00:00,2018,September,Sunday,16,259,20,D11,Toronto,90,Junction Area (90),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,SIRIUS SPORT,RG,27,BLK,950.0,STOLEN,20379,"{'type': 'Point', 'coordinates': (-79.47604228, 43.66633276)}"
-20407,11988,GO-20169008175,THEFT UNDER - BICYCLE,2016-05-18T00:00:00,2016,May,Wednesday,18,139,18,2016-08-04T00:00:00,2016,August,Thursday,4,217,9,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,DEW PLUS 52,RG,24,BLK,900.0,STOLEN,20380,"{'type': 'Point', 'coordinates': (-79.43863138, 43.6592125)}"
-20408,18658,GO-20189032645,THEFT UNDER - BICYCLE,2018-10-02T00:00:00,2018,October,Tuesday,2,275,13,2018-10-02T00:00:00,2018,October,Tuesday,2,275,13,D11,Toronto,90,Junction Area (90),"Apartment (Rooming House, Condo)",Apartment,BIANCHI,PISTA,RC,1,SIL,1200.0,STOLEN,20381,"{'type': 'Point', 'coordinates': (-79.46501947, 43.66658204)}"
-20409,18664,GO-20199004185,B&E,2018-04-30T00:00:00,2018,April,Monday,30,120,20,2019-02-01T00:00:00,2019,February,Friday,1,32,14,D11,Toronto,90,Junction Area (90),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RM,ELEMENT 50,MT,18,GRY,4000.0,STOLEN,20382,"{'type': 'Point', 'coordinates': (-79.46557595, 43.6678626)}"
-20410,18667,GO-20199009818,THEFT UNDER,2019-03-16T00:00:00,2019,March,Saturday,16,75,4,2019-03-27T00:00:00,2019,March,Wednesday,27,86,11,D11,Toronto,90,Junction Area (90),"Apartment (Rooming House, Condo)",Apartment,UK,,OT,11,,300.0,STOLEN,20383,"{'type': 'Point', 'coordinates': (-79.46922251, 43.66287984)}"
-20411,18673,GO-20199017724,THEFT UNDER,2019-06-06T00:00:00,2019,June,Thursday,6,157,11,2019-06-06T00:00:00,2019,June,Thursday,6,157,20,D11,Toronto,90,Junction Area (90),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,LIV ENCHANT LIT,RG,12,BLU,400.0,STOLEN,20384,"{'type': 'Point', 'coordinates': (-79.47759741, 43.66462312)}"
-20412,18679,GO-20199025153,THEFT UNDER,2019-08-04T00:00:00,2019,August,Sunday,4,216,13,2019-08-06T00:00:00,2019,August,Tuesday,6,218,20,D11,Toronto,90,Junction Area (90),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MO,,MT,10,SIL,500.0,STOLEN,20385,"{'type': 'Point', 'coordinates': (-79.48238056, 43.66632757)}"
-20413,18690,GO-20199031142,THEFT UNDER,2019-09-09T00:00:00,2019,September,Monday,9,252,20,2019-09-23T00:00:00,2019,September,Monday,23,266,10,D11,Toronto,90,Junction Area (90),Schools During Un-Supervised Activity,Educational,UK,,MT,6,BLK,465.0,STOLEN,20386,"{'type': 'Point', 'coordinates': (-79.4637652, 43.66365423)}"
-20414,18693,GO-20199031946,THEFT UNDER,2019-09-28T00:00:00,2019,September,Saturday,28,271,9,2019-09-29T00:00:00,2019,September,Sunday,29,272,9,D11,Toronto,90,Junction Area (90),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,2017 TACTIC SL,RG,22,ONG,5099.0,STOLEN,20387,"{'type': 'Point', 'coordinates': (-79.47500707, 43.66518279)}"
-20415,18699,GO-2020164992,THEFT UNDER,2020-01-21T00:00:00,2020,January,Tuesday,21,21,16,2020-01-24T00:00:00,2020,January,Friday,24,24,14,D11,Toronto,90,Junction Area (90),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,,MT,24,BLU,700.0,STOLEN,20388,"{'type': 'Point', 'coordinates': (-79.46502019, 43.66381122)}"
-20416,18704,GO-20209011482,THEFT UNDER,2020-04-18T00:00:00,2020,April,Saturday,18,109,19,2020-04-19T00:00:00,2020,April,Sunday,19,110,12,D11,Toronto,90,Junction Area (90),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,RG,24,GRY,700.0,STOLEN,20389,"{'type': 'Point', 'coordinates': (-79.4639845, 43.66140981)}"
-20417,21513,GO-20171893298,THEFT UNDER - BICYCLE,2017-10-18T00:00:00,2017,October,Wednesday,18,291,8,2017-10-19T00:00:00,2017,October,Thursday,19,292,12,D12,Toronto,90,Junction Area (90),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,FX 3 25,MT,25,BLK,677.0,STOLEN,20390,"{'type': 'Point', 'coordinates': (-79.47515603, 43.6708554)}"
-20418,21558,GO-20209016163,THEFT UNDER,2020-06-22T00:00:00,2020,June,Monday,22,174,12,2020-06-25T00:00:00,2020,June,Thursday,25,177,18,D12,Toronto,90,Junction Area (90),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,,MT,3,OTH,400.0,STOLEN,20391,"{'type': 'Point', 'coordinates': (-79.46794271, 43.67316238)}"
-20419,21566,GO-20209017880,THEFT UNDER,2020-07-17T00:00:00,2020,July,Friday,17,199,17,2020-07-18T00:00:00,2020,July,Saturday,18,200,15,D11,Toronto,90,Junction Area (90),"Apartment (Rooming House, Condo)",Apartment,SC,HINGE,FO,1,GLD,250.0,STOLEN,20392,"{'type': 'Point', 'coordinates': (-79.46501947, 43.66658204)}"
-20420,21571,GO-20209019041,THEFT UNDER,2020-07-30T00:00:00,2020,July,Thursday,30,212,21,2020-07-30T00:00:00,2020,July,Thursday,30,212,21,D11,Toronto,90,Junction Area (90),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,,RG,7,BLK,200.0,STOLEN,20393,"{'type': 'Point', 'coordinates': (-79.46585038, 43.66542584)}"
-20421,21592,GO-20142683897,THEFT UNDER,2014-08-08T00:00:00,2014,August,Friday,8,220,16,2014-08-11T00:00:00,2014,August,Monday,11,223,21,D11,Toronto,90,Junction Area (90),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,GRAND 6.2,MT,24,BLUWHI,300.0,STOLEN,20394,"{'type': 'Point', 'coordinates': (-79.47108592, 43.67178188)}"
-20422,21599,GO-20149007350,THEFT UNDER,2014-10-01T00:00:00,2014,October,Wednesday,1,274,23,2014-10-02T00:00:00,2014,October,Thursday,2,275,11,D11,Toronto,90,Junction Area (90),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SU,HOOLIGAN,MT,21,BLU,150.0,STOLEN,20395,"{'type': 'Point', 'coordinates': (-79.47644513, 43.66487636)}"
-20423,3261,GO-20189027129,THEFT UNDER - BICYCLE,2018-08-20T00:00:00,2018,August,Monday,20,232,0,2018-08-20T00:00:00,2018,August,Monday,20,232,19,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,SC,VARSITY,RC,10,SIL,0.0,STOLEN,20396,"{'type': 'Point', 'coordinates': (-79.43985057, 43.67044475)}"
-20424,21610,GO-2015877499,THEFT UNDER,2015-05-26T00:00:00,2015,May,Tuesday,26,146,15,2015-05-27T00:00:00,2015,May,Wednesday,27,147,16,D11,Toronto,90,Junction Area (90),Convenience Stores,Commercial,UNKNOWN MAKE,,EL,40,BLK,,STOLEN,20397,"{'type': 'Point', 'coordinates': (-79.46857841, 43.66546298)}"
-20425,7488,GO-20209026746,THEFT UNDER,2020-10-16T00:00:00,2020,October,Friday,16,290,17,2020-10-16T00:00:00,2020,October,Friday,16,290,22,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),Ttc Subway Station,Transit,SP,AREZZO 700C MEN,RG,3,GRY,370.0,STOLEN,20398,"{'type': 'Point', 'coordinates': (-79.43532635000001, 43.65988369)}"
-20426,18328,GO-20149003504,THEFT UNDER,2014-05-21T00:00:00,2014,May,Wednesday,21,141,21,2014-05-21T00:00:00,2014,May,Wednesday,21,141,23,D13,Toronto,92,Corso Italia-Davenport (92),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,21,BLK,500.0,STOLEN,20399,"{'type': 'Point', 'coordinates': (-79.44304265, 43.67796161)}"
-20427,21110,GO-20209007035,THEFT UNDER,2020-02-26T00:00:00,2020,February,Wednesday,26,57,10,2020-02-26T00:00:00,2020,February,Wednesday,26,57,21,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ST TROPEZ,RG,24,ONG,0.0,STOLEN,20400,"{'type': 'Point', 'coordinates': (-79.4208938, 43.67001212)}"
-20428,24410,GO-20209028317,THEFT UNDER,2020-10-14T00:00:00,2020,October,Wednesday,14,288,0,2020-11-01T00:00:00,2020,November,Sunday,1,306,15,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,1,BLK,350.0,STOLEN,20401,"{'type': 'Point', 'coordinates': (-79.43556527, 43.67023276)}"
-20429,21625,GO-20151790609,THEFT UNDER,2015-10-17T00:00:00,2015,October,Saturday,17,290,10,2015-10-17T00:00:00,2015,October,Saturday,17,290,18,D11,Toronto,90,Junction Area (90),"Apartment (Rooming House, Condo)",Apartment,SHIMANO,,OT,21,BLK,50.0,STOLEN,20402,"{'type': 'Point', 'coordinates': (-79.46501947, 43.66658204)}"
-20430,21631,GO-20169000041,THEFT UNDER,2016-01-01T00:00:00,2016,January,Friday,1,1,22,2016-01-02T00:00:00,2016,January,Saturday,2,2,13,D11,Toronto,90,Junction Area (90),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,CCX,RC,20,WHI,2500.0,STOLEN,20403,"{'type': 'Point', 'coordinates': (-79.46721215, 43.66543715)}"
-20431,21636,GO-2016473492,THEFT UNDER,2016-01-20T00:00:00,2016,January,Wednesday,20,20,0,2016-03-19T00:00:00,2016,March,Saturday,19,79,11,D11,Toronto,90,Junction Area (90),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KLEIN,MANTRA,MT,18,BLK,,STOLEN,20404,"{'type': 'Point', 'coordinates': (-79.46501947, 43.66658204)}"
-20432,21643,GO-20161047422,THEFT UNDER - BICYCLE,2016-06-15T00:00:00,2016,June,Wednesday,15,167,22,2016-06-16T00:00:00,2016,June,Thursday,16,168,8,D11,Toronto,90,Junction Area (90),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,DEVINCI,REMIX,OT,18,BLU,250.0,STOLEN,20405,"{'type': 'Point', 'coordinates': (-79.48136048000002, 43.66380791)}"
-20433,21659,GO-20161924652,THEFT UNDER - BICYCLE,2016-10-29T00:00:00,2016,October,Saturday,29,303,16,2016-10-29T00:00:00,2016,October,Saturday,29,303,17,D11,Toronto,90,Junction Area (90),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,SC1800,MT,18,DBL,120.0,STOLEN,20406,"{'type': 'Point', 'coordinates': (-79.48206778, 43.66558006)}"
-20434,21660,GO-201776594,B&E W'INTENT,2016-10-02T00:00:00,2016,October,Sunday,2,276,12,2017-01-13T00:00:00,2017,January,Friday,13,13,19,D11,Toronto,90,Junction Area (90),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NORCO,HEART,TO,1,,385.0,STOLEN,20407,"{'type': 'Point', 'coordinates': (-79.46557595, 43.6678626)}"
-20435,21694,GO-20189007007,THEFT UNDER,2018-03-04T00:00:00,2018,March,Sunday,4,63,17,2018-03-06T00:00:00,2018,March,Tuesday,6,65,14,D11,Toronto,90,Junction Area (90),"Apartment (Rooming House, Condo)",Apartment,BI,PISTA,RC,1,WHI,900.0,STOLEN,20408,"{'type': 'Point', 'coordinates': (-79.46501947, 43.66658204)}"
-20436,21698,GO-20181033741,B&E W'INTENT,2018-06-07T00:00:00,2018,June,Thursday,7,158,1,2018-06-07T00:00:00,2018,June,Thursday,7,158,19,D11,Toronto,90,Junction Area (90),"Private Property Structure (Pool, Shed, Detached Garage)",Other,ROCKY MOUNTAIN,,MT,0,YEL,2000.0,STOLEN,20409,"{'type': 'Point', 'coordinates': (-79.47103363, 43.66549049)}"
-20437,21699,GO-20181033741,B&E W'INTENT,2018-06-07T00:00:00,2018,June,Thursday,7,158,1,2018-06-07T00:00:00,2018,June,Thursday,7,158,19,D11,Toronto,90,Junction Area (90),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,RC,0,BLK,700.0,STOLEN,20410,"{'type': 'Point', 'coordinates': (-79.47103363, 43.66549049)}"
-20438,21719,GO-20189035445,THEFT UNDER - BICYCLE,2018-10-24T00:00:00,2018,October,Wednesday,24,297,14,2018-10-24T00:00:00,2018,October,Wednesday,24,297,18,D11,Toronto,90,Junction Area (90),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SU,,OT,1,RED,300.0,STOLEN,20411,"{'type': 'Point', 'coordinates': (-79.46111499000001, 43.66377121)}"
-20439,21720,GO-20189035445,THEFT UNDER - BICYCLE,2018-10-24T00:00:00,2018,October,Wednesday,24,297,14,2018-10-24T00:00:00,2018,October,Wednesday,24,297,18,D11,Toronto,90,Junction Area (90),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SC,,MT,18,BLU,400.0,STOLEN,20412,"{'type': 'Point', 'coordinates': (-79.46111499000001, 43.66377121)}"
-20440,21738,GO-20191074910,THEFT FROM MOTOR VEHICLE OVER,2019-06-11T00:00:00,2019,June,Tuesday,11,162,2,2019-06-11T00:00:00,2019,June,Tuesday,11,162,10,D11,Toronto,90,Junction Area (90),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,S5 SHIMANO DI2,RC,22,BLK,19000.0,STOLEN,20413,"{'type': 'Point', 'coordinates': (-79.47322679, 43.66551434)}"
-20441,21750,GO-20199025534,THEFT UNDER,2019-08-08T00:00:00,2019,August,Thursday,8,220,21,2019-08-09T00:00:00,2019,August,Friday,9,221,14,D11,Toronto,90,Junction Area (90),"Apartment (Rooming House, Condo)",Apartment,RA,ALYSA,RG,21,BLK,500.0,STOLEN,20414,"{'type': 'Point', 'coordinates': (-79.46501947, 43.66658204)}"
-20442,21780,GO-20209013637,THEFT UNDER,2020-05-20T00:00:00,2020,May,Wednesday,20,141,17,2020-05-21T00:00:00,2020,May,Thursday,21,142,17,D11,Toronto,90,Junction Area (90),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,URBANIA,RG,21,GRY,700.0,STOLEN,20415,"{'type': 'Point', 'coordinates': (-79.47353874000001, 43.66633533)}"
-20443,21992,GO-20202290596,THEFT UNDER - BICYCLE,2020-12-03T00:00:00,2020,December,Thursday,3,338,14,2020-12-06T00:00:00,2020,December,Sunday,6,341,16,D11,Toronto,90,Junction Area (90),"Single Home, House (Attach Garage, Cottage, Mobile)",House,PEUGEOT,,RG,12,ONG,300.0,STOLEN,20416,"{'type': 'Point', 'coordinates': (-79.46584474, 43.67144146)}"
-20444,24412,GO-20209030212,THEFT UNDER,2020-11-21T00:00:00,2020,November,Saturday,21,326,14,2020-11-21T00:00:00,2020,November,Saturday,21,326,14,D11,Toronto,90,Junction Area (90),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,LADIES ROADBIKE,RG,16,RED,400.0,STOLEN,20417,"{'type': 'Point', 'coordinates': (-79.46502019, 43.66381122)}"
-20445,24984,GO-20141669575,B&E,2014-02-23T00:00:00,2014,February,Sunday,23,54,15,2014-03-09T00:00:00,2014,March,Sunday,9,68,14,D11,Toronto,90,Junction Area (90),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,HYBRID,OT,18,BLU,500.0,STOLEN,20418,"{'type': 'Point', 'coordinates': (-79.48285731, 43.66797351)}"
-20446,24987,GO-20149003665,THEFT UNDER,2014-05-28T00:00:00,2014,May,Wednesday,28,148,23,2014-05-29T00:00:00,2014,May,Thursday,29,149,9,D11,Toronto,90,Junction Area (90),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,MT,10,SIL,0.0,STOLEN,20419,"{'type': 'Point', 'coordinates': (-79.45941715000001, 43.66413758)}"
-20447,25037,GO-2016151277,THEFT UNDER,2016-01-25T00:00:00,2016,January,Monday,25,25,16,2016-01-26T00:00:00,2016,January,Tuesday,26,26,8,D11,Toronto,90,Junction Area (90),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,RG,0,,,STOLEN,20421,"{'type': 'Point', 'coordinates': (-79.46721215, 43.66543715)}"
-20448,25045,GO-20169003720,THEFT UNDER,2016-04-22T00:00:00,2016,April,Friday,22,113,16,2016-04-22T00:00:00,2016,April,Friday,22,113,21,D11,Toronto,90,Junction Area (90),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,SCOOTER BIKE,EL,32,RED,1000.0,STOLEN,20422,"{'type': 'Point', 'coordinates': (-79.46106193, 43.66518912)}"
-20449,25049,GO-20169006409,THEFT UNDER - BICYCLE,2016-06-24T00:00:00,2016,June,Friday,24,176,10,2016-06-27T00:00:00,2016,June,Monday,27,179,10,D11,Toronto,90,Junction Area (90),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,CRUX,OT,10,BLU,1500.0,STOLEN,20423,"{'type': 'Point', 'coordinates': (-79.46501947, 43.66658204)}"
-20450,25065,GO-20169013528,THEFT UNDER,2016-08-17T00:00:00,2016,August,Wednesday,17,230,14,2016-11-17T00:00:00,2016,November,Thursday,17,322,12,D11,Toronto,90,Junction Area (90),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,P3C,RC,18,OTH,2500.0,STOLEN,20424,"{'type': 'Point', 'coordinates': (-79.46232193, 43.66349693)}"
-20451,25070,GO-2017357702,THEFT UNDER - BICYCLE,2017-02-25T00:00:00,2017,February,Saturday,25,56,22,2017-02-26T00:00:00,2017,February,Sunday,26,57,14,D11,Toronto,90,Junction Area (90),"Apartment (Rooming House, Condo)",Apartment,GI,XTC2,MT,21,RED,1700.0,STOLEN,20425,"{'type': 'Point', 'coordinates': (-79.46501947, 43.66658204)}"
-20452,25076,GO-20179004974,THEFT UNDER - BICYCLE,2017-04-19T00:00:00,2017,April,Wednesday,19,109,22,2017-04-20T00:00:00,2017,April,Thursday,20,110,6,D11,Toronto,90,Junction Area (90),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,8,BGE,1200.0,STOLEN,20426,"{'type': 'Point', 'coordinates': (-79.4663853, 43.66352211)}"
-20453,25102,GO-20179016175,THEFT UNDER - BICYCLE,2017-09-29T00:00:00,2017,September,Friday,29,272,21,2017-09-30T00:00:00,2017,September,Saturday,30,273,8,D11,Toronto,90,Junction Area (90),"Apartment (Rooming House, Condo)",Apartment,SC,KICKER PRO,MT,5,SIL,300.0,STOLEN,20427,"{'type': 'Point', 'coordinates': (-79.47103363, 43.66549049)}"
-20454,25150,GO-20199025717,THEFT UNDER,2019-08-08T00:00:00,2019,August,Thursday,8,220,21,2019-08-11T00:00:00,2019,August,Sunday,11,223,10,D11,Toronto,90,Junction Area (90),"Apartment (Rooming House, Condo)",Apartment,RA,ALYSA,RG,21,BLK,500.0,STOLEN,20428,"{'type': 'Point', 'coordinates': (-79.46501947, 43.66658204)}"
-20455,25324,GO-20181080460,THEFT UNDER - BICYCLE,2018-06-14T00:00:00,2018,June,Thursday,14,165,14,2018-06-14T00:00:00,2018,June,Thursday,14,165,15,D12,Toronto,90,Junction Area (90),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,ORBEA,,BM,15,,599.0,STOLEN,20429,"{'type': 'Point', 'coordinates': (-79.47274362, 43.67475455)}"
-20456,25339,GO-2019344269,THEFT UNDER - BICYCLE,2019-02-22T00:00:00,2019,February,Friday,22,53,15,2019-02-23T00:00:00,2019,February,Saturday,23,54,17,D12,Toronto,90,Junction Area (90),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CCM,GT,MT,21,GRN,250.0,STOLEN,20430,"{'type': 'Point', 'coordinates': (-79.47108592, 43.67178188)}"
-20457,25380,GO-20209018868,THEFT UNDER,2020-07-29T00:00:00,2020,July,Wednesday,29,211,3,2020-07-29T00:00:00,2020,July,Wednesday,29,211,11,D11,Toronto,90,Junction Area (90),"Apartment (Rooming House, Condo)",Apartment,OT,URBANIA 4,RG,7,BLK,649.0,STOLEN,20431,"{'type': 'Point', 'coordinates': (-79.45941715000001, 43.66413758)}"
-20458,7489,GO-20209026764,B&E,2020-10-09T00:00:00,2020,October,Friday,9,283,14,2020-10-17T00:00:00,2020,October,Saturday,17,291,12,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,BI,SUPERLEGGIERA,RC,1,PLE,1500.0,STOLEN,20432,"{'type': 'Point', 'coordinates': (-79.44569863000001, 43.66489681)}"
-20459,7523,GO-20202004528,THEFT UNDER,2020-10-10T00:00:00,2020,October,Saturday,10,284,19,2020-10-22T00:00:00,2020,October,Thursday,22,296,13,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,EMMO,UNKNOWN,EL,3,WHI,500.0,STOLEN,20433,"{'type': 'Point', 'coordinates': (-79.43168144, 43.66405389)}"
-20460,7528,GO-20209027372,THEFT UNDER,2020-10-20T00:00:00,2020,October,Tuesday,20,294,7,2020-10-22T00:00:00,2020,October,Thursday,22,296,20,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,OT,2015 ARIEL DISC,RG,24,TRQ,0.0,STOLEN,20434,"{'type': 'Point', 'coordinates': (-79.42322914, 43.6625099)}"
-20461,7555,GO-20202040541,B&E,2020-10-21T00:00:00,2020,October,Wednesday,21,295,22,2020-10-27T00:00:00,2020,October,Tuesday,27,301,19,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,RG,1,BLK,,STOLEN,20435,"{'type': 'Point', 'coordinates': (-79.42963126, 43.66224427)}"
-20462,1604,GO-20179016630,THEFT UNDER,2017-10-06T00:00:00,2017,October,Friday,6,279,5,2017-10-06T00:00:00,2017,October,Friday,6,279,21,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),Go Station,Transit,GI,SEDONA,OT,15,BLU,200.0,STOLEN,20689,"{'type': 'Point', 'coordinates': (-79.44889488, 43.65705424)}"
-20463,7564,GO-20202047930,THEFT UNDER - BICYCLE,2020-10-27T00:00:00,2020,October,Tuesday,27,301,15,2020-10-28T00:00:00,2020,October,Wednesday,28,302,18,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SUPER CYCLE,CIRUIT 700C,RG,14,BLU,300.0,STOLEN,20436,"{'type': 'Point', 'coordinates': (-79.43168144, 43.66405389)}"
-20464,7676,GO-20209030841,THEFT UNDER,2020-11-27T00:00:00,2020,November,Friday,27,332,20,2020-11-29T00:00:00,2020,November,Sunday,29,334,9,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,CITATO 2017 M,RG,10,GRN,500.0,STOLEN,20437,"{'type': 'Point', 'coordinates': (-79.43449371000001, 43.66435606)}"
-20465,7699,GO-20209031776,THEFT UNDER,2020-12-11T00:00:00,2020,December,Friday,11,346,12,2020-12-11T00:00:00,2020,December,Friday,11,346,12,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,SU,ROAD BIKE,OT,6,BLU,400.0,STOLEN,20438,"{'type': 'Point', 'coordinates': (-79.44725452, 43.66881017)}"
-20466,7757,GO-20149000997,THEFT UNDER,2014-01-27T00:00:00,2014,January,Monday,27,27,9,2014-02-04T00:00:00,2014,February,Tuesday,4,35,9,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,VIENNA,RG,21,GRY,400.0,STOLEN,20439,"{'type': 'Point', 'coordinates': (-79.45052042, 43.661049850000005)}"
-20467,7769,GO-20141620477,B&E,2014-02-23T00:00:00,2014,February,Sunday,23,54,14,2014-03-01T00:00:00,2014,March,Saturday,1,60,16,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,ROULUX 2,RG,10,WHI,1850.0,STOLEN,20440,"{'type': 'Point', 'coordinates': (-79.44340776, 43.66537166)}"
-20468,7770,GO-20141620477,B&E,2014-02-23T00:00:00,2014,February,Sunday,23,54,14,2014-03-01T00:00:00,2014,March,Saturday,1,60,16,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MKM,,RC,0,GRYWHI,1000.0,STOLEN,20441,"{'type': 'Point', 'coordinates': (-79.44340776, 43.66537166)}"
-20469,7771,GO-20141620477,B&E,2014-02-23T00:00:00,2014,February,Sunday,23,54,14,2014-03-01T00:00:00,2014,March,Saturday,1,60,16,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MKM,,RC,0,GRYWHI,300.0,STOLEN,20442,"{'type': 'Point', 'coordinates': (-79.44340776, 43.66537166)}"
-20470,7823,GO-20141858170,FRAUD UNDER,2013-10-09T00:00:00,2013,October,Wednesday,9,282,10,2014-04-09T00:00:00,2014,April,Wednesday,9,99,18,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,MARIN OR MARINO,STELVIO PRO T31,RC,11,,3134.0,STOLEN,20443,"{'type': 'Point', 'coordinates': (-79.43913557, 43.65909813)}"
-20471,7850,GO-20149002956,THEFT UNDER,2014-04-19T00:00:00,2014,April,Saturday,19,109,19,2014-04-22T00:00:00,2014,April,Tuesday,22,112,14,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,DEW PLUS 2012,RG,21,DGR,600.0,STOLEN,20444,"{'type': 'Point', 'coordinates': (-79.44770883, 43.65977965)}"
-20472,7855,GO-20149002961,THEFT UNDER,2014-04-22T00:00:00,2014,April,Tuesday,22,112,16,2014-04-23T00:00:00,2014,April,Wednesday,23,113,15,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,DR. DEW,OT,20,BLU,1000.0,STOLEN,20445,"{'type': 'Point', 'coordinates': (-79.44569863000001, 43.66489681)}"
-20473,7864,GO-20141961364,MISCHIEF UNDER,2014-04-25T00:00:00,2014,April,Friday,25,115,22,2014-04-26T00:00:00,2014,April,Saturday,26,116,8,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,VAGABOND,,SC,1,,,STOLEN,20446,"{'type': 'Point', 'coordinates': (-79.45782502000002, 43.66689003)}"
-20474,7881,GO-20142008850,THEFT UNDER,2014-05-03T00:00:00,2014,May,Saturday,3,123,9,2014-05-03T00:00:00,2014,May,Saturday,3,123,18,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,FIX GEAR,OT,1,PLE,700.0,STOLEN,20447,"{'type': 'Point', 'coordinates': (-79.44228046, 43.66898843)}"
-20475,7943,GO-20142109153,THEFT UNDER,2014-04-18T00:00:00,2014,April,Friday,18,108,17,2014-05-19T00:00:00,2014,May,Monday,19,139,12,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ELECTRA,RAT ROD,TO,0,BLK,262.0,STOLEN,20448,"{'type': 'Point', 'coordinates': (-79.44131517, 43.66297368)}"
-20476,8059,GO-20142222713,THEFT UNDER,2014-06-03T00:00:00,2014,June,Tuesday,3,154,13,2014-06-04T00:00:00,2014,June,Wednesday,4,155,21,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,JAMIS,X2TRAIL,MT,18,YELGRY,700.0,STOLEN,20449,"{'type': 'Point', 'coordinates': (-79.43663905, 43.66296704)}"
-20477,8219,GO-20142360644,THEFT UNDER,2014-06-24T00:00:00,2014,June,Tuesday,24,175,20,2014-06-24T00:00:00,2014,June,Tuesday,24,175,20,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,,MT,21,BLKGRN,200.0,STOLEN,20450,"{'type': 'Point', 'coordinates': (-79.44131517, 43.66297368)}"
-20478,8234,GO-20149004395,THEFT UNDER,2014-06-20T00:00:00,2014,June,Friday,20,171,11,2014-06-24T00:00:00,2014,June,Tuesday,24,175,13,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,SC1800,MT,18,RED,99.0,STOLEN,20451,"{'type': 'Point', 'coordinates': (-79.42657247, 43.67059555)}"
-20479,8336,GO-20149004671,THEFT UNDER,2014-06-21T00:00:00,2014,June,Saturday,21,172,1,2014-07-03T00:00:00,2014,July,Thursday,3,184,14,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,,FO,6,SIL,500.0,STOLEN,20452,"{'type': 'Point', 'coordinates': (-79.43167972, 43.66718047)}"
-20480,8401,GO-20149004927,THEFT UNDER,2014-07-12T00:00:00,2014,July,Saturday,12,193,19,2014-07-12T00:00:00,2014,July,Saturday,12,193,22,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,GI,BOULDER,MT,15,BLK,650.0,STOLEN,20453,"{'type': 'Point', 'coordinates': (-79.45188185, 43.66075675)}"
-20481,8403,GO-20149004932,THEFT UNDER,2014-07-12T00:00:00,2014,July,Saturday,12,193,14,2014-07-12T00:00:00,2014,July,Saturday,12,193,21,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,GI,ATX 840,MT,7,SIL,0.0,STOLEN,20454,"{'type': 'Point', 'coordinates': (-79.45188185, 43.66075675)}"
-20482,8460,GO-20149005150,THEFT UNDER,2014-07-19T00:00:00,2014,July,Saturday,19,200,22,2014-07-20T00:00:00,2014,July,Sunday,20,201,12,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,FIXED UNO DROP,RC,1,WHI,700.0,STOLEN,20455,"{'type': 'Point', 'coordinates': (-79.43048595, 43.66744926)}"
-20483,8474,GO-20142557649,THEFT UNDER - SHOPLIFTING,2014-07-20T00:00:00,2014,July,Sunday,20,201,16,2014-07-23T00:00:00,2014,July,Wednesday,23,204,18,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TOBA,EDWIN,EL,24,WHI,2700.0,STOLEN,20456,"{'type': 'Point', 'coordinates': (-79.43913557, 43.65909813)}"
-20484,8478,GO-20149005202,THEFT UNDER,2014-07-21T00:00:00,2014,July,Monday,21,202,0,2014-07-21T00:00:00,2014,July,Monday,21,202,15,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,FJ,FIXED GEAR,RG,1,BLK,900.0,STOLEN,20457,"{'type': 'Point', 'coordinates': (-79.44272532, 43.66363549)}"
-20485,24620,GO-20149004832,THEFT UNDER,2014-07-08T00:00:00,2014,July,Tuesday,8,189,23,2014-07-09T00:00:00,2014,July,Wednesday,9,190,11,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,DUTCHI,RG,3,RED,800.0,STOLEN,20458,"{'type': 'Point', 'coordinates': (-79.42322914, 43.6625099)}"
-20486,8525,GO-20149005368,THEFT UNDER,2014-07-19T00:00:00,2014,July,Saturday,19,200,21,2014-07-26T00:00:00,2014,July,Saturday,26,207,21,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,DASH 2009,RG,21,YEL,1000.0,STOLEN,20459,"{'type': 'Point', 'coordinates': (-79.45119415, 43.662709910000004)}"
-20487,8558,GO-20142633523,THEFT UNDER,2014-08-03T00:00:00,2014,August,Sunday,3,215,0,2014-08-04T00:00:00,2014,August,Monday,4,216,10,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),Bar / Restaurant,Commercial,UNKNOWN MAKE,,MT,0,,,STOLEN,20460,"{'type': 'Point', 'coordinates': (-79.45121138, 43.66574636)}"
-20488,8570,GO-20149005568,THEFT UNDER,2014-08-02T00:00:00,2014,August,Saturday,2,214,0,2014-08-02T00:00:00,2014,August,Saturday,2,214,10,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Open Areas (Lakes, Parks, Rivers)",Outside,RA,,RC,10,BLK,600.0,STOLEN,20461,"{'type': 'Point', 'coordinates': (-79.42087545, 43.66302552)}"
-20489,8613,GO-20149005706,THEFT UNDER,2014-08-06T00:00:00,2014,August,Wednesday,6,218,16,2014-08-06T00:00:00,2014,August,Wednesday,6,218,17,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,NO,,OT,24,BLK,500.0,STOLEN,20462,"{'type': 'Point', 'coordinates': (-79.45655408, 43.66456999)}"
-20490,8663,GO-20149005958,THEFT UNDER,2014-08-07T00:00:00,2014,August,Thursday,7,219,22,2014-08-14T00:00:00,2014,August,Thursday,14,226,23,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,OT,CROSS COUNTRY 2,MT,21,BLK,,STOLEN,20463,"{'type': 'Point', 'coordinates': (-79.44569863000001, 43.66489681)}"
-20491,7742,GO-20141324363,THEFT UNDER,2014-01-11T00:00:00,2014,January,Saturday,11,11,7,2014-01-11T00:00:00,2014,January,Saturday,11,11,21,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,SPRING,OT,5,BLU,200.0,STOLEN,21021,"{'type': 'Point', 'coordinates': (-79.4208938, 43.67001212)}"
-20492,8696,GO-20149006118,THEFT UNDER,2014-08-19T00:00:00,2014,August,Tuesday,19,231,10,2014-08-19T00:00:00,2014,August,Tuesday,19,231,22,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),Ttc Subway Station,Transit,KO,DEW PLUS,TO,21,BLK,900.0,STOLEN,20464,"{'type': 'Point', 'coordinates': (-79.42562006, 43.66198485)}"
-20493,8735,GO-20149006298,THEFT UNDER,2014-08-25T00:00:00,2014,August,Monday,25,237,9,2014-08-26T00:00:00,2014,August,Tuesday,26,238,10,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GF,,MT,21,PLE,500.0,STOLEN,20465,"{'type': 'Point', 'coordinates': (-79.44070806, 43.65878182)}"
-20494,8798,GO-20149006531,THEFT UNDER,2012-08-26T00:00:00,2012,August,Sunday,26,239,14,2014-09-03T00:00:00,2014,September,Wednesday,3,246,14,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,18,,98.0,STOLEN,20466,"{'type': 'Point', 'coordinates': (-79.44642226, 43.66672554)}"
-20495,8819,GO-20149006592,THEFT UNDER,2014-09-04T00:00:00,2014,September,Thursday,4,247,20,2014-09-05T00:00:00,2014,September,Friday,5,248,11,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),Convenience Stores,Commercial,OT,CUSTOM,OT,1,TRQ,4000.0,STOLEN,20467,"{'type': 'Point', 'coordinates': (-79.43038141, 43.66094505)}"
-20496,8924,GO-20149007020,THEFT UNDER,2014-09-18T00:00:00,2014,September,Thursday,18,261,8,2014-09-18T00:00:00,2014,September,Thursday,18,261,18,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,CODA SPORT,RG,14,BLK,300.0,STOLEN,20468,"{'type': 'Point', 'coordinates': (-79.44269466, 43.65833851)}"
-20497,8975,GO-20142983477,THEFT UNDER,2014-09-25T00:00:00,2014,September,Thursday,25,268,19,2014-09-25T00:00:00,2014,September,Thursday,25,268,20,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ELECTRA FADA,,EL,1,TRQ,,STOLEN,20469,"{'type': 'Point', 'coordinates': (-79.42721594, 43.66277001000001)}"
-20498,9068,GO-20143110024,THEFT UNDER,2014-10-14T00:00:00,2014,October,Tuesday,14,287,7,2014-10-15T00:00:00,2014,October,Wednesday,15,288,17,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),Ttc Subway Station,Transit,UNKNOWN,,MT,6,REDWHI,200.0,STOLEN,20470,"{'type': 'Point', 'coordinates': (-79.42562006, 43.66198485)}"
-20499,7743,GO-20141324363,THEFT UNDER,2014-01-11T00:00:00,2014,January,Saturday,11,11,7,2014-01-11T00:00:00,2014,January,Saturday,11,11,21,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NEXT,GIRL'S,OT,9,BLK,200.0,STOLEN,21022,"{'type': 'Point', 'coordinates': (-79.4208938, 43.67001212)}"
-20500,9118,GO-20149007839,THEFT UNDER,2014-10-25T00:00:00,2014,October,Saturday,25,298,10,2014-10-27T00:00:00,2014,October,Monday,27,300,21,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,MILANO,OT,7,BLK,2200.0,STOLEN,20471,"{'type': 'Point', 'coordinates': (-79.4258929, 43.66898009)}"
-20501,9121,GO-20143190713,THEFT UNDER,2014-10-27T00:00:00,2014,October,Monday,27,300,19,2014-10-28T00:00:00,2014,October,Tuesday,28,301,10,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KONA,DEW53,MT,18,BLK,439.0,STOLEN,20472,"{'type': 'Point', 'coordinates': (-79.42562006, 43.66198485)}"
-20502,9174,GO-20149008162,THEFT UNDER,2014-11-12T00:00:00,2014,November,Wednesday,12,316,2,2014-11-12T00:00:00,2014,November,Wednesday,12,316,16,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,MOUNTAIN BIKE,MT,18,RED,750.0,STOLEN,20473,"{'type': 'Point', 'coordinates': (-79.43739907, 43.66471535)}"
-20503,9190,GO-20143304781,THEFT UNDER,2014-11-14T00:00:00,2014,November,Friday,14,318,19,2014-11-15T00:00:00,2014,November,Saturday,15,319,7,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,WORKSMAN,LITE,TR,3,BLU,,STOLEN,20474,"{'type': 'Point', 'coordinates': (-79.43913557, 43.65909813)}"
-20504,9219,GO-20149008600,THEFT UNDER,2014-11-27T00:00:00,2014,November,Thursday,27,331,13,2014-12-07T00:00:00,2014,December,Sunday,7,341,13,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,21,WHI,125.0,STOLEN,20475,"{'type': 'Point', 'coordinates': (-79.42650199, 43.66408514)}"
-20505,9227,GO-20149008693,THEFT UNDER,2014-12-10T00:00:00,2014,December,Wednesday,10,344,8,2014-12-11T00:00:00,2014,December,Thursday,11,345,11,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,RG,18,DBL,,STOLEN,20476,"{'type': 'Point', 'coordinates': (-79.44926545, 43.66417251)}"
-20506,9228,GO-20149008693,THEFT UNDER,2014-12-10T00:00:00,2014,December,Wednesday,10,344,8,2014-12-11T00:00:00,2014,December,Thursday,11,345,11,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,SILVERSTONE,RC,12,RED,,STOLEN,20477,"{'type': 'Point', 'coordinates': (-79.44926545, 43.66417251)}"
-20507,9240,GO-20143549179,THEFT UNDER,2014-12-15T00:00:00,2014,December,Monday,15,349,16,2014-12-25T00:00:00,2014,December,Thursday,25,359,20,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,OTHER,INVADER,BM,1,SIL,300.0,STOLEN,20478,"{'type': 'Point', 'coordinates': (-79.44642226, 43.66672554)}"
-20508,9348,GO-20159001521,THEFT UNDER,2015-03-24T00:00:00,2015,March,Tuesday,24,83,19,2015-03-24T00:00:00,2015,March,Tuesday,24,83,22,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MA,,RG,21,BGE,400.0,STOLEN,20479,"{'type': 'Point', 'coordinates': (-79.44169537000002, 43.65856157)}"
-20509,21135,GO-2020914111,B&E,2020-05-16T00:00:00,2020,May,Saturday,16,137,17,2020-05-17T00:00:00,2020,May,Sunday,17,138,14,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,6,GRN,100.0,STOLEN,20480,"{'type': 'Point', 'coordinates': (-79.43048595, 43.66744926)}"
-20510,9390,GO-20159001835,THEFT UNDER,2015-04-04T00:00:00,2015,April,Saturday,4,94,12,2015-04-11T00:00:00,2015,April,Saturday,11,101,12,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,OT,GLOBE ROLL 1,RG,1,BLK,700.0,STOLEN,20481,"{'type': 'Point', 'coordinates': (-79.44300606, 43.65922277)}"
-20511,9500,GO-2015721592,FTC PROBATION ORDER,2015-05-01T00:00:00,2015,May,Friday,1,121,12,2015-05-01T00:00:00,2015,May,Friday,1,121,12,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,PRESTO,OT,21,,,STOLEN,20482,"{'type': 'Point', 'coordinates': (-79.44719438, 43.67173243)}"
-20512,9581,GO-20159002733,THEFT UNDER,2015-05-09T00:00:00,2015,May,Saturday,9,129,13,2015-05-14T00:00:00,2015,May,Thursday,14,134,17,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE 2,RG,24,WHI,,RECOVERED,20483,"{'type': 'Point', 'coordinates': (-79.44569863000001, 43.66489681)}"
-20513,9597,GO-2015811354,THEFT UNDER,2015-05-14T00:00:00,2015,May,Thursday,14,134,17,2015-05-15T00:00:00,2015,May,Friday,15,135,15,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,EL,1,BLK,2000.0,STOLEN,20484,"{'type': 'Point', 'coordinates': (-79.44569863000001, 43.66489681)}"
-20514,9619,GO-20159002965,THEFT UNDER,2015-05-20T00:00:00,2015,May,Wednesday,20,140,10,2015-05-21T00:00:00,2015,May,Thursday,21,141,11,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,SHADOWLANDS,RG,10,WHI,1200.0,STOLEN,20485,"{'type': 'Point', 'coordinates': (-79.43048595, 43.66744926)}"
-20515,9622,GO-20159002967,THEFT UNDER,2015-05-20T00:00:00,2015,May,Wednesday,20,140,3,2015-05-21T00:00:00,2015,May,Thursday,21,141,10,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,GLOBE ROLL 1,RG,1,BLK,,STOLEN,20486,"{'type': 'Point', 'coordinates': (-79.42929364, 43.66770575)}"
-20516,9624,GO-2015845507,THEFT UNDER,2015-05-20T00:00:00,2015,May,Wednesday,20,140,6,2015-05-21T00:00:00,2015,May,Thursday,21,141,9,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GARY FISHER,,MT,18,BLU,600.0,STOLEN,20487,"{'type': 'Point', 'coordinates': (-79.42348181, 43.66312967)}"
-20517,9729,GO-2015936678,THEFT UNDER,2015-05-13T00:00:00,2015,May,Wednesday,13,133,8,2015-06-04T00:00:00,2015,June,Thursday,4,155,17,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),Ttc Subway Station,Transit,NORCO,CITY CRUISER,RG,7,PLE,600.0,STOLEN,20488,"{'type': 'Point', 'coordinates': (-79.44070806, 43.65878182)}"
-20518,9778,GO-20159003521,THEFT UNDER,2015-06-10T00:00:00,2015,June,Wednesday,10,161,19,2015-06-11T00:00:00,2015,June,Thursday,11,162,12,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,RG,1,RED,,STOLEN,20489,"{'type': 'Point', 'coordinates': (-79.44070806, 43.65878182)}"
-20519,9923,GO-20159004109,THEFT UNDER,2015-06-30T00:00:00,2015,June,Tuesday,30,181,23,2015-07-02T00:00:00,2015,July,Thursday,2,183,15,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,VENTURA SPORT,OT,24,BLK,300.0,STOLEN,20490,"{'type': 'Point', 'coordinates': (-79.44569863000001, 43.66489681)}"
-20520,9926,GO-20159004131,THEFT UNDER,2015-07-01T00:00:00,2015,July,Wednesday,1,182,14,2015-07-02T00:00:00,2015,July,Thursday,2,183,19,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SU,SC1800,MT,6,DBL,150.0,STOLEN,20491,"{'type': 'Point', 'coordinates': (-79.44494393000001, 43.66929323)}"
-20521,9930,GO-20159004143,THEFT UNDER,2015-06-05T00:00:00,2015,June,Friday,5,156,13,2015-07-03T00:00:00,2015,July,Friday,3,184,13,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,GT,AVALANCHE 3.0,MT,9,GRY,550.0,STOLEN,20492,"{'type': 'Point', 'coordinates': (-79.44642226, 43.66672554)}"
-20522,9962,GO-20151154090,THEFT UNDER,2015-06-29T00:00:00,2015,June,Monday,29,180,23,2015-07-09T00:00:00,2015,July,Thursday,9,190,15,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,EL,0,BLK,500.0,STOLEN,20493,"{'type': 'Point', 'coordinates': (-79.44569863000001, 43.66489681)}"
-20523,9977,GO-20151161983,THEFT UNDER,2015-07-09T00:00:00,2015,July,Thursday,9,190,10,2015-07-09T00:00:00,2015,July,Thursday,9,190,19,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,730FX,RG,10,SIL,609.0,STOLEN,20494,"{'type': 'Point', 'coordinates': (-79.44674448, 43.65998224)}"
-20524,10054,GO-20159004722,THEFT UNDER,2015-07-17T00:00:00,2015,July,Friday,17,198,16,2015-07-19T00:00:00,2015,July,Sunday,19,200,7,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GF,PARAGON,MT,21,YEL,1200.0,STOLEN,20495,"{'type': 'Point', 'coordinates': (-79.42348181, 43.66312967)}"
-20525,11991,GO-20169008197,THEFT UNDER - BICYCLE,2016-07-23T00:00:00,2016,July,Saturday,23,205,2,2016-08-04T00:00:00,2016,August,Thursday,4,217,13,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MOSER,RC,2,BLK,500.0,STOLEN,20496,"{'type': 'Point', 'coordinates': (-79.43663905, 43.66296704)}"
-20526,10079,GO-20151247873,THEFT UNDER,2015-07-21T00:00:00,2015,July,Tuesday,21,202,21,2015-07-22T00:00:00,2015,July,Wednesday,22,203,10,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,,MT,18,BLK,,STOLEN,20497,"{'type': 'Point', 'coordinates': (-79.43640202, 43.65965002)}"
-20527,10139,GO-20159005147,THEFT UNDER,2015-07-29T00:00:00,2015,July,Wednesday,29,210,8,2015-07-30T00:00:00,2015,July,Thursday,30,211,11,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),Ttc Subway Station,Transit,OT,,RG,10,BLU,200.0,STOLEN,20498,"{'type': 'Point', 'coordinates': (-79.44070806, 43.65878182)}"
-20528,10157,GO-20151298212,THEFT UNDER,2015-07-29T00:00:00,2015,July,Wednesday,29,210,17,2015-07-29T00:00:00,2015,July,Wednesday,29,210,17,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,EL,0,DBL,,STOLEN,20499,"{'type': 'Point', 'coordinates': (-79.44642226, 43.66672554)}"
-20529,10297,GO-20151412763,THEFT UNDER,2015-08-16T00:00:00,2015,August,Sunday,16,228,21,2015-08-17T00:00:00,2015,August,Monday,17,229,8,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,THE WEEKENDER,OT,9,BLK,1700.0,STOLEN,20500,"{'type': 'Point', 'coordinates': (-79.42681894, 43.66173648)}"
-20530,10395,GO-20151545576,THEFT UNDER,2015-09-04T00:00:00,2015,September,Friday,4,247,21,2015-09-07T00:00:00,2015,September,Monday,7,250,16,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,AGGRESSER,GT,MT,21,,400.0,STOLEN,20501,"{'type': 'Point', 'coordinates': (-79.42681894, 43.66173648)}"
-20531,10403,GO-20151554864,THEFT UNDER,2015-09-09T00:00:00,2015,September,Wednesday,9,252,4,2015-09-09T00:00:00,2015,September,Wednesday,9,252,5,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,,RG,18,RED,150.0,STOLEN,20502,"{'type': 'Point', 'coordinates': (-79.43516342, 43.66920387)}"
-20532,10512,GO-20151637443,THEFT UNDER,2015-09-03T00:00:00,2015,September,Thursday,3,246,22,2015-09-22T00:00:00,2015,September,Tuesday,22,265,9,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Open Areas (Lakes, Parks, Rivers)",Outside,EMMO,MONSTER,EL,1,BLK,2000.0,STOLEN,20503,"{'type': 'Point', 'coordinates': (-79.43287743, 43.66039188)}"
-20533,10534,GO-20159007654,THEFT UNDER,2015-09-19T00:00:00,2015,September,Saturday,19,262,2,2015-09-23T00:00:00,2015,September,Wednesday,23,266,17,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,MONTEREY,RC,12,RED,0.0,STOLEN,20504,"{'type': 'Point', 'coordinates': (-79.43390893, 43.66946933)}"
-20534,10588,GO-20159008152,THEFT UNDER,2015-10-04T00:00:00,2015,October,Sunday,4,277,23,2015-10-05T00:00:00,2015,October,Monday,5,278,10,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,1,,649.0,STOLEN,20505,"{'type': 'Point', 'coordinates': (-79.438146, 43.666428280000005)}"
-20535,10592,GO-20159008224,THEFT UNDER,2015-10-04T00:00:00,2015,October,Sunday,4,277,2,2015-10-06T00:00:00,2015,October,Tuesday,6,279,8,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,FIXED SPECIALE,OT,1,BLU,1300.0,STOLEN,20506,"{'type': 'Point', 'coordinates': (-79.44169537000002, 43.65856157)}"
-20536,10622,GO-20159008470,THEFT UNDER,2015-10-12T00:00:00,2015,October,Monday,12,285,12,2015-10-13T00:00:00,2015,October,Tuesday,13,286,8,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,KO,,MT,6,GRN,1200.0,STOLEN,20507,"{'type': 'Point', 'coordinates': (-79.44642226, 43.66672554)}"
-20537,10685,GO-20159009004,THEFT UNDER,2015-10-24T00:00:00,2015,October,Saturday,24,297,17,2015-10-25T00:00:00,2015,October,Sunday,25,298,19,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,,MT,7,BLK,150.0,STOLEN,20508,"{'type': 'Point', 'coordinates': (-79.42681894, 43.66173648)}"
-20538,10721,GO-20151885296,THEFT UNDER,2015-10-30T00:00:00,2015,October,Friday,30,303,21,2015-11-02T00:00:00,2015,November,Monday,2,306,17,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ROCKY MOUNTAIN,RC 10,MT,21,BLKONG,800.0,STOLEN,20509,"{'type': 'Point', 'coordinates': (-79.43830844, 43.67370843)}"
-20539,10734,GO-20159009494,THEFT UNDER,2015-11-07T00:00:00,2015,November,Saturday,7,311,0,2015-11-07T00:00:00,2015,November,Saturday,7,311,18,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,CITY GLIDE,RG,7,BLK,550.0,STOLEN,20510,"{'type': 'Point', 'coordinates': (-79.4220205, 43.6627783)}"
-20540,10810,GO-20159010156,THEFT UNDER,2015-11-24T00:00:00,2015,November,Tuesday,24,328,0,2015-11-24T00:00:00,2015,November,Tuesday,24,328,21,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,COASTER 2/BLUE,OT,1,,430.0,STOLEN,20511,"{'type': 'Point', 'coordinates': (-79.44770883, 43.65977965)}"
-20541,10818,GO-20152030307,THEFT UNDER,2015-11-18T00:00:00,2015,November,Wednesday,18,322,12,2015-11-26T00:00:00,2015,November,Thursday,26,330,17,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,FREESPIRIT,RG,0,BLKMRN,250.0,STOLEN,20512,"{'type': 'Point', 'coordinates': (-79.43663905, 43.66296704)}"
-20542,10889,GO-20152218654,THEFT UNDER,2015-12-27T00:00:00,2015,December,Sunday,27,361,23,2015-12-27T00:00:00,2015,December,Sunday,27,361,23,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,LOUIS GARNEAU,,OT,24,SIL,1500.0,STOLEN,20513,"{'type': 'Point', 'coordinates': (-79.43038141, 43.66094505)}"
-20543,11000,GO-20169001578,THEFT UNDER,2016-02-15T00:00:00,2016,February,Monday,15,46,14,2016-02-20T00:00:00,2016,February,Saturday,20,51,14,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,,MT,27,BLK,589.0,STOLEN,20514,"{'type': 'Point', 'coordinates': (-79.44569863000001, 43.66489681)}"
-20544,11086,GO-2016540948,THEFT UNDER - BICYCLE,2016-03-30T00:00:00,2016,March,Wednesday,30,90,8,2016-03-30T00:00:00,2016,March,Wednesday,30,90,18,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,EL,0,,1600.0,STOLEN,20515,"{'type': 'Point', 'coordinates': (-79.43663905, 43.66296704)}"
-20545,11119,GO-2016598498,THEFT UNDER - BICYCLE,2016-04-07T00:00:00,2016,April,Thursday,7,98,16,2016-04-08T00:00:00,2016,April,Friday,8,99,18,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,YUKON,MT,21,GRY,729.0,STOLEN,20516,"{'type': 'Point', 'coordinates': (-79.44234715, 43.66277184)}"
-20546,11141,GO-20169003456,THEFT UNDER - BICYCLE,2016-04-16T00:00:00,2016,April,Saturday,16,107,11,2016-04-16T00:00:00,2016,April,Saturday,16,107,12,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,UK,,TO,10,DBL,200.0,STOLEN,20517,"{'type': 'Point', 'coordinates': (-79.42840961, 43.66250127)}"
-20547,11206,GO-2016712141,THEFT UNDER - BICYCLE,2016-04-09T00:00:00,2016,April,Saturday,9,100,22,2016-04-26T00:00:00,2016,April,Tuesday,26,117,14,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KHS,FLITE 100,OT,1,BLK,700.0,STOLEN,20518,"{'type': 'Point', 'coordinates': (-79.42839364, 43.66861488)}"
-20548,11207,GO-2016712141,THEFT UNDER - BICYCLE,2016-04-09T00:00:00,2016,April,Saturday,9,100,22,2016-04-26T00:00:00,2016,April,Tuesday,26,117,14,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BIRIA,CITIBIKE,OT,3,SIL,700.0,STOLEN,20519,"{'type': 'Point', 'coordinates': (-79.42839364, 43.66861488)}"
-20549,11301,GO-20169004477,THEFT UNDER - BICYCLE,2016-05-11T00:00:00,2016,May,Wednesday,11,132,9,2016-05-13T00:00:00,2016,May,Friday,13,134,10,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,ESCAPE 3,OT,21,GRY,500.0,STOLEN,20520,"{'type': 'Point', 'coordinates': (-79.42963126, 43.66224427)}"
-20550,11307,GO-20169004510,THEFT UNDER,2016-05-13T00:00:00,2016,May,Friday,13,134,18,2016-05-14T00:00:00,2016,May,Saturday,14,135,12,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,DEW PLUS,RG,24,GRY,200.0,STOLEN,20521,"{'type': 'Point', 'coordinates': (-79.43863138, 43.6592125)}"
-20551,11330,GO-20169004687,THEFT UNDER,2016-05-18T00:00:00,2016,May,Wednesday,18,139,16,2016-05-19T00:00:00,2016,May,Thursday,19,140,9,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,CA,,TO,3,PLE,0.0,STOLEN,20522,"{'type': 'Point', 'coordinates': (-79.44920947, 43.67041868)}"
-20552,11334,GO-20169004704,THEFT UNDER,2016-05-19T00:00:00,2016,May,Thursday,19,140,0,2016-05-19T00:00:00,2016,May,Thursday,19,140,13,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,NO,HEART,RG,1,BLK,550.0,STOLEN,20523,"{'type': 'Point', 'coordinates': (-79.42753228, 43.66652082)}"
-20553,11357,GO-20169004847,THEFT UNDER,2016-05-22T00:00:00,2016,May,Sunday,22,143,20,2016-05-23T00:00:00,2016,May,Monday,23,144,13,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,CCM ORION WOMEN,RG,21,WHI,380.0,STOLEN,20524,"{'type': 'Point', 'coordinates': (-79.43588915, 43.67414215)}"
-20554,11557,GO-20169005876,THEFT UNDER - BICYCLE,2016-06-16T00:00:00,2016,June,Thursday,16,168,9,2016-06-16T00:00:00,2016,June,Thursday,16,168,9,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,TO,8,BLK,1500.0,STOLEN,20525,"{'type': 'Point', 'coordinates': (-79.42540175000002, 43.66776054)}"
-20555,11623,GO-20169006278,THEFT UNDER,2016-06-23T00:00:00,2016,June,Thursday,23,175,18,2016-06-24T00:00:00,2016,June,Friday,24,176,9,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BI,,RC,1,WHI,1200.0,STOLEN,20526,"{'type': 'Point', 'coordinates': (-79.43048595, 43.66744926)}"
-20556,11657,GO-20169006482,THEFT UNDER,2016-06-27T00:00:00,2016,June,Monday,27,179,14,2016-06-28T00:00:00,2016,June,Tuesday,28,180,14,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,SOHO S,OT,1,BLK,1000.0,STOLEN,20527,"{'type': 'Point', 'coordinates': (-79.42650199, 43.66408514)}"
-20557,11705,GO-20161167966,THEFT OF EBIKE UNDER $5000,2016-07-04T00:00:00,2016,July,Monday,4,186,6,2016-07-04T00:00:00,2016,July,Monday,4,186,12,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DAYMAK,EAGLE,EL,3,BLK,1600.0,STOLEN,20528,"{'type': 'Point', 'coordinates': (-79.44306206, 43.66450282)}"
-20558,18430,GO-20151236825,ROBBERY - OTHER,2015-07-20T00:00:00,2015,July,Monday,20,201,17,2015-07-20T00:00:00,2015,July,Monday,20,201,18,D13,Toronto,92,Corso Italia-Davenport (92),"Open Areas (Lakes, Parks, Rivers)",Outside,OTHER,SIMS,BM,6,,500.0,RECOVERED,20529,"{'type': 'Point', 'coordinates': (-79.44938061, 43.67137418)}"
-20559,3286,GO-20189027446,THEFT UNDER - BICYCLE,2018-08-21T00:00:00,2018,August,Tuesday,21,233,9,2018-08-22T00:00:00,2018,August,Wednesday,22,234,14,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,,TO,3,BLK,500.0,STOLEN,20530,"{'type': 'Point', 'coordinates': (-79.42411612, 43.66460668)}"
-20560,3296,GO-20181558968,THEFT UNDER,2018-08-23T00:00:00,2018,August,Thursday,23,235,13,2018-08-23T00:00:00,2018,August,Thursday,23,235,15,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN,,OT,10,GRY,1000.0,STOLEN,20531,"{'type': 'Point', 'coordinates': (-79.44414802, 43.67133879)}"
-20561,3329,GO-20181584756,B&E,2018-08-18T00:00:00,2018,August,Saturday,18,230,2,2018-08-27T00:00:00,2018,August,Monday,27,239,14,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,HYPER,BIKE & TRAIL,MT,29,BLKGLD,200.0,STOLEN,20532,"{'type': 'Point', 'coordinates': (-79.44569863000001, 43.66489681)}"
-20562,3435,GO-20189029848,THEFT UNDER - BICYCLE,2018-09-06T00:00:00,2018,September,Thursday,6,249,0,2018-09-10T00:00:00,2018,September,Monday,10,253,16,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),Bar / Restaurant,Commercial,OT,YEPP - BLACK SE,OT,5,,400.0,STOLEN,20533,"{'type': 'Point', 'coordinates': (-79.43677501, 43.66997225000001)}"
-20563,3436,GO-20189029848,THEFT UNDER - BICYCLE,2018-09-06T00:00:00,2018,September,Thursday,6,249,0,2018-09-10T00:00:00,2018,September,Monday,10,253,16,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),Bar / Restaurant,Commercial,GI,ESCAPE,RG,5,BLK,700.0,STOLEN,20534,"{'type': 'Point', 'coordinates': (-79.43677501, 43.66997225000001)}"
-20564,3556,GO-20181773171,THEFT UNDER - BICYCLE,2018-09-24T00:00:00,2018,September,Monday,24,267,23,2018-09-25T00:00:00,2018,September,Tuesday,25,268,0,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,CRD,RC,24,GRYWHI,1200.0,STOLEN,20535,"{'type': 'Point', 'coordinates': (-79.44269466, 43.65833851)}"
-20565,3638,GO-20189033238,THEFT UNDER - BICYCLE,2018-10-05T00:00:00,2018,October,Friday,5,278,12,2018-10-08T00:00:00,2018,October,Monday,8,281,12,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,ROCKHOPPER,MT,24,BLK,900.0,STOLEN,20536,"{'type': 'Point', 'coordinates': (-79.43411274, 43.66666511)}"
-20566,3736,GO-20189034904,THEFT UNDER - BICYCLE,2018-10-13T00:00:00,2018,October,Saturday,13,286,23,2018-10-21T00:00:00,2018,October,Sunday,21,294,0,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,CYPRESS,RG,21,BLK,300.0,STOLEN,20537,"{'type': 'Point', 'coordinates': (-79.45411957, 43.6651244)}"
-20567,3760,GO-20189035496,THEFT UNDER - BICYCLE,2018-10-25T00:00:00,2018,October,Thursday,25,298,11,2018-10-25T00:00:00,2018,October,Thursday,25,298,11,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,ZECTOR 3,OT,9,BLK,1000.0,STOLEN,20538,"{'type': 'Point', 'coordinates': (-79.44924628, 43.67095556)}"
-20568,3770,GO-20181962981,B&E,2018-10-18T00:00:00,2018,October,Thursday,18,291,6,2018-10-28T00:00:00,2018,October,Sunday,28,301,15,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),Schools During Supervised Activity,Educational,GIANT,RACING STREET,RC,10,DGR,900.0,STOLEN,20539,"{'type': 'Point', 'coordinates': (-79.43150988, 43.66994013)}"
-20569,3771,GO-20189035801,THEFT UNDER - BICYCLE,2018-10-26T00:00:00,2018,October,Friday,26,299,17,2018-10-27T00:00:00,2018,October,Saturday,27,300,12,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,SEARCH TIAGRA,RC,18,BLU,1400.0,STOLEN,20540,"{'type': 'Point', 'coordinates': (-79.43677501, 43.66997225000001)}"
-20570,3772,GO-20189035809,THEFT UNDER - BICYCLE,2018-10-23T00:00:00,2018,October,Tuesday,23,296,22,2018-10-27T00:00:00,2018,October,Saturday,27,300,12,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,3,RC,21,RED,700.0,STOLEN,20541,"{'type': 'Point', 'coordinates': (-79.42963126, 43.66224427)}"
-20571,3778,GO-20189036008,THEFT UNDER - BICYCLE,2018-10-23T00:00:00,2018,October,Tuesday,23,296,21,2018-10-29T00:00:00,2018,October,Monday,29,302,9,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,2018 CAADX SE 1,OT,22,GRY,3000.0,STOLEN,20542,"{'type': 'Point', 'coordinates': (-79.44920947, 43.67041868)}"
-20572,3779,GO-20189036037,THEFT UNDER - BICYCLE,2017-11-14T00:00:00,2017,November,Tuesday,14,318,21,2018-10-29T00:00:00,2018,October,Monday,29,302,14,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,ST500,TO,3,RED,500.0,STOLEN,20543,"{'type': 'Point', 'coordinates': (-79.44569863000001, 43.66489681)}"
-20573,3799,GO-20189036456,THEFT UNDER - BICYCLE,2018-10-31T00:00:00,2018,October,Wednesday,31,304,1,2018-11-01T00:00:00,2018,November,Thursday,1,305,13,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,OT,15,BRN,500.0,STOLEN,20544,"{'type': 'Point', 'coordinates': (-79.44414059, 43.66721386)}"
-20574,3842,GO-20189037799,THEFT UNDER - BICYCLE,2018-11-10T00:00:00,2018,November,Saturday,10,314,9,2018-11-11T00:00:00,2018,November,Sunday,11,315,23,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FJ,STROLL,RG,1,BLK,700.0,STOLEN,20545,"{'type': 'Point', 'coordinates': (-79.45121138, 43.66574636)}"
-20575,3953,GO-20182341658,B&E,2018-12-22T00:00:00,2018,December,Saturday,22,356,2,2018-12-22T00:00:00,2018,December,Saturday,22,356,9,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,SIRRUS,TO,9,GRY,800.0,STOLEN,20546,"{'type': 'Point', 'coordinates': (-79.43048595, 43.66744926)}"
-20576,3954,GO-20182341658,B&E,2018-12-22T00:00:00,2018,December,Saturday,22,356,2,2018-12-22T00:00:00,2018,December,Saturday,22,356,9,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,SIRRUS,TO,9,BLK,750.0,STOLEN,20547,"{'type': 'Point', 'coordinates': (-79.43048595, 43.66744926)}"
-20577,3955,GO-20182341658,B&E,2018-12-22T00:00:00,2018,December,Saturday,22,356,2,2018-12-22T00:00:00,2018,December,Saturday,22,356,9,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,ORBITA,MT,9,BLKGRN,250.0,STOLEN,20548,"{'type': 'Point', 'coordinates': (-79.43048595, 43.66744926)}"
-20578,3957,GO-20182347500,B&E,2018-12-22T00:00:00,2018,December,Saturday,22,356,22,2018-12-23T00:00:00,2018,December,Sunday,23,357,10,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,DEVINCI,LONDON,MT,21,SIL,1000.0,STOLEN,20549,"{'type': 'Point', 'coordinates': (-79.43925143, 43.6633965)}"
-20579,3962,GO-20182371705,THEFT UNDER,2018-12-28T00:00:00,2018,December,Friday,28,362,0,2018-12-28T00:00:00,2018,December,Friday,28,362,13,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RALEIGH,,MT,1,BLKRED,100.0,STOLEN,20550,"{'type': 'Point', 'coordinates': (-79.44926545, 43.66417251)}"
-20580,3963,GO-20182371705,THEFT UNDER,2018-12-28T00:00:00,2018,December,Friday,28,362,0,2018-12-28T00:00:00,2018,December,Friday,28,362,13,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CANNONDALE,BAD BOY 1,MT,8,BLK,3000.0,STOLEN,20551,"{'type': 'Point', 'coordinates': (-79.44926545, 43.66417251)}"
-20581,4002,GO-201972015,B&E,2019-01-10T00:00:00,2019,January,Thursday,10,10,7,2019-01-12T00:00:00,2019,January,Saturday,12,12,14,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KONA\,,MT,21,GRY,,STOLEN,20552,"{'type': 'Point', 'coordinates': (-79.44437729, 43.66235922)}"
-20582,4056,GO-2019320790,THEFT UNDER,2019-02-20T00:00:00,2019,February,Wednesday,20,51,0,2019-02-20T00:00:00,2019,February,Wednesday,20,51,8,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,TRICROSS,RC,20,BLKWHI,800.0,STOLEN,20553,"{'type': 'Point', 'coordinates': (-79.43032384, 43.67018808)}"
-20583,4057,GO-20199005990,THEFT UNDER - BICYCLE,2019-02-14T00:00:00,2019,February,Thursday,14,45,8,2019-02-20T00:00:00,2019,February,Wednesday,20,51,8,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,,RG,10,GRY,1000.0,STOLEN,20554,"{'type': 'Point', 'coordinates': (-79.44935281, 43.66129314)}"
-20584,4065,GO-20199006421,THEFT UNDER - BICYCLE,2019-02-20T00:00:00,2019,February,Wednesday,20,51,21,2019-02-23T00:00:00,2019,February,Saturday,23,54,16,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KH,,OT,18,BLK,835.0,STOLEN,20555,"{'type': 'Point', 'coordinates': (-79.44036912, 43.66316381000001)}"
-20585,4105,GO-20199009479,THEFT UNDER - BICYCLE,2019-03-23T00:00:00,2019,March,Saturday,23,82,22,2019-03-24T00:00:00,2019,March,Sunday,24,83,19,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,IH,,RG,18,RED,0.0,STOLEN,20556,"{'type': 'Point', 'coordinates': (-79.44340776, 43.66537166)}"
-20586,4110,GO-20199009757,THEFT UNDER,2019-03-26T00:00:00,2019,March,Tuesday,26,85,11,2019-03-26T00:00:00,2019,March,Tuesday,26,85,21,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),Ttc Subway Station,Transit,OT,SCR1,RC,27,BLK,450.0,STOLEN,20557,"{'type': 'Point', 'coordinates': (-79.43532635000001, 43.65988369)}"
-20587,4162,GO-2019668724,THEFT UNDER,2019-04-07T00:00:00,2019,April,Sunday,7,97,23,2019-04-13T00:00:00,2019,April,Saturday,13,103,16,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUPERCYCLE,SC1600,MT,18,BLK,100.0,STOLEN,20558,"{'type': 'Point', 'coordinates': (-79.44642226, 43.66672554)}"
-20588,4211,GO-20199013349,THEFT UNDER - BICYCLE,2019-04-28T00:00:00,2019,April,Sunday,28,118,9,2019-04-28T00:00:00,2019,April,Sunday,28,118,15,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,RANDONNEUR,TO,10,GRY,1600.0,STOLEN,20559,"{'type': 'Point', 'coordinates': (-79.42597851, 43.6691417)}"
-20589,4235,GO-20199014013,THEFT UNDER - BICYCLE,2019-04-21T00:00:00,2019,April,Sunday,21,111,20,2019-05-05T00:00:00,2019,May,Sunday,5,125,20,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,X-GAMES,BM,1,BLK,180.0,STOLEN,20560,"{'type': 'Point', 'coordinates': (-79.4489465, 43.66969119)}"
-20590,4239,GO-20199014077,THEFT UNDER,2019-05-01T00:00:00,2019,May,Wednesday,1,121,10,2019-05-06T00:00:00,2019,May,Monday,6,126,10,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,GLOBE DAILY,OT,7,SIL,300.0,STOLEN,20561,"{'type': 'Point', 'coordinates': (-79.44161041, 43.66107002)}"
-20591,4245,GO-20199014232,THEFT UNDER,2019-05-06T00:00:00,2019,May,Monday,6,126,21,2019-05-07T00:00:00,2019,May,Tuesday,7,127,16,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,SC,700C,OT,6,,550.0,STOLEN,20562,"{'type': 'Point', 'coordinates': (-79.44569863000001, 43.66489681)}"
-20592,4369,GO-20199016681,THEFT UNDER - BICYCLE,2019-05-28T00:00:00,2019,May,Tuesday,28,148,8,2019-05-28T00:00:00,2019,May,Tuesday,28,148,18,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,MOUNTAIN BIKKE,MT,10,BLK,400.0,STOLEN,20563,"{'type': 'Point', 'coordinates': (-79.43048595, 43.66744926)}"
-20593,4447,GO-20199018062,THEFT UNDER,2019-05-26T00:00:00,2019,May,Sunday,26,146,20,2019-06-10T00:00:00,2019,June,Monday,10,161,15,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,UK,HYDBRID,RG,21,RED,0.0,STOLEN,20564,"{'type': 'Point', 'coordinates': (-79.44642226, 43.66672554)}"
-20594,4471,GO-20199018397,THEFT UNDER - BICYCLE,2019-05-01T00:00:00,2019,May,Wednesday,1,121,19,2019-06-12T00:00:00,2019,June,Wednesday,12,163,20,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,1,BLK,600.0,STOLEN,20565,"{'type': 'Point', 'coordinates': (-79.4328876, 43.66693366)}"
-20595,4558,GO-20199019409,THEFT UNDER - BICYCLE,2019-06-11T00:00:00,2019,June,Tuesday,11,162,20,2019-06-20T00:00:00,2019,June,Thursday,20,171,14,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,BLOCKBUSTER,OT,3,BLK,1000.0,STOLEN,20566,"{'type': 'Point', 'coordinates': (-79.43664774, 43.66610579)}"
-20596,4579,GO-20191159080,THEFT UNDER - BICYCLE,2019-06-22T00:00:00,2019,June,Saturday,22,173,0,2019-06-22T00:00:00,2019,June,Saturday,22,173,16,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,,OT,1,BLU,800.0,STOLEN,20567,"{'type': 'Point', 'coordinates': (-79.44494393000001, 43.66929323)}"
-20597,4620,GO-20199020245,THEFT UNDER,2019-06-26T00:00:00,2019,June,Wednesday,26,177,19,2019-06-26T00:00:00,2019,June,Wednesday,26,177,21,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,,RG,6,,700.0,STOLEN,20568,"{'type': 'Point', 'coordinates': (-79.44569863000001, 43.66489681)}"
-20598,4622,GO-20199020266,THEFT UNDER,2019-06-27T00:00:00,2019,June,Thursday,27,178,3,2019-06-27T00:00:00,2019,June,Thursday,27,178,10,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,MT,18,BLK,800.0,STOLEN,20569,"{'type': 'Point', 'coordinates': (-79.44816836, 43.661562)}"
-20599,4666,GO-20191241815,B&E,2019-07-04T00:00:00,2019,July,Thursday,4,185,1,2019-07-04T00:00:00,2019,July,Thursday,4,185,10,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,OT,10,WHI,500.0,STOLEN,20570,"{'type': 'Point', 'coordinates': (-79.43775386, 43.66866694)}"
-20600,4681,GO-20199021205,THEFT UNDER - BICYCLE,2019-06-27T00:00:00,2019,June,Thursday,27,178,18,2019-07-06T00:00:00,2019,July,Saturday,6,187,11,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,NO,CITY BIKE,RG,3,BLK,500.0,STOLEN,20571,"{'type': 'Point', 'coordinates': (-79.43985057, 43.67044475)}"
-20601,12003,GO-20161379174,THEFT UNDER - BICYCLE,2016-08-05T00:00:00,2016,August,Friday,5,218,14,2016-08-05T00:00:00,2016,August,Friday,5,218,19,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,TO,10,MUL,,STOLEN,20572,"{'type': 'Point', 'coordinates': (-79.43163294, 43.66066113)}"
-20602,4682,GO-20199021211,THEFT UNDER,2019-07-05T00:00:00,2019,July,Friday,5,186,17,2019-07-06T00:00:00,2019,July,Saturday,6,187,12,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,8,GRY,700.0,STOLEN,20573,"{'type': 'Point', 'coordinates': (-79.44414059, 43.66721386)}"
-20603,4704,GO-20199021440,THEFT UNDER,2019-06-27T00:00:00,2019,June,Thursday,27,178,17,2019-07-08T00:00:00,2019,July,Monday,8,189,11,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,27,BLK,1000.0,STOLEN,20574,"{'type': 'Point', 'coordinates': (-79.43640202, 43.65965002)}"
-20604,4709,GO-20199021525,THEFT UNDER,2019-07-08T00:00:00,2019,July,Monday,8,189,16,2019-07-08T00:00:00,2019,July,Monday,8,189,21,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,CITY 1 HYBRID,RG,21,BLK,605.0,STOLEN,20575,"{'type': 'Point', 'coordinates': (-79.44642226, 43.66672554)}"
-20605,4740,GO-20199021763,THEFT UNDER,2019-07-08T00:00:00,2019,July,Monday,8,189,18,2019-07-10T00:00:00,2019,July,Wednesday,10,191,18,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,15,WHI,300.0,STOLEN,20576,"{'type': 'Point', 'coordinates': (-79.44642226, 43.66672554)}"
-20606,4771,GO-20199022297,THEFT UNDER,2019-07-02T00:00:00,2019,July,Tuesday,2,183,10,2019-07-15T00:00:00,2019,July,Monday,15,196,10,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,,RG,21,BLK,600.0,STOLEN,20577,"{'type': 'Point', 'coordinates': (-79.42542165, 43.66432174)}"
-20607,4817,GO-20191360421,B&E,2019-07-20T00:00:00,2019,July,Saturday,20,201,1,2019-07-20T00:00:00,2019,July,Saturday,20,201,5,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,,RG,12,BLU,600.0,STOLEN,20578,"{'type': 'Point', 'coordinates': (-79.44131517, 43.66297368)}"
-20608,4818,GO-20191360421,B&E,2019-07-20T00:00:00,2019,July,Saturday,20,201,1,2019-07-20T00:00:00,2019,July,Saturday,20,201,5,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,,RG,12,BLU,600.0,STOLEN,20579,"{'type': 'Point', 'coordinates': (-79.44131517, 43.66297368)}"
-20609,4819,GO-20191360421,B&E,2019-07-20T00:00:00,2019,July,Saturday,20,201,1,2019-07-20T00:00:00,2019,July,Saturday,20,201,5,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,,OT,12,GRY,,STOLEN,20580,"{'type': 'Point', 'coordinates': (-79.44131517, 43.66297368)}"
-20610,4884,GO-20191404378,B&E,2019-07-25T00:00:00,2019,July,Thursday,25,206,20,2019-07-26T00:00:00,2019,July,Friday,26,207,9,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,JAMIS,,RC,24,BLK,771.0,STOLEN,20581,"{'type': 'Point', 'coordinates': (-79.4445597, 43.66511528)}"
-20611,4885,GO-20191404378,B&E,2019-07-25T00:00:00,2019,July,Thursday,25,206,20,2019-07-26T00:00:00,2019,July,Friday,26,207,9,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,JAMIS,,TO,24,MUL,755.0,STOLEN,20582,"{'type': 'Point', 'coordinates': (-79.4445597, 43.66511528)}"
-20612,4886,GO-20191404378,B&E,2019-07-25T00:00:00,2019,July,Thursday,25,206,20,2019-07-26T00:00:00,2019,July,Friday,26,207,9,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,JAMIS,,OT,26,MUL,595.0,STOLEN,20583,"{'type': 'Point', 'coordinates': (-79.4445597, 43.66511528)}"
-20613,5002,GO-20191497984,B&E,2019-06-22T00:00:00,2019,June,Saturday,22,173,19,2019-08-08T00:00:00,2019,August,Thursday,8,220,11,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,CERVELO,,OT,36,BLKRED,2500.0,STOLEN,20584,"{'type': 'Point', 'coordinates': (-79.44642226, 43.66672554)}"
-20614,5183,GO-20199028034,THEFT UNDER - BICYCLE,2019-08-18T00:00:00,2019,August,Sunday,18,230,14,2019-08-28T00:00:00,2019,August,Wednesday,28,240,15,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),Ttc Subway Station,Transit,TR,MARLIN,MT,27,BRN,800.0,STOLEN,20585,"{'type': 'Point', 'coordinates': (-79.43532635000001, 43.65988369)}"
-20615,5226,GO-20191691989,B&E,2019-08-09T00:00:00,2019,August,Friday,9,221,14,2019-09-04T00:00:00,2019,September,Wednesday,4,247,12,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,LIV AVAIL,RC,18,TRQ,800.0,STOLEN,20586,"{'type': 'Point', 'coordinates': (-79.45349123, 43.66135753)}"
-20616,5227,GO-20191691989,B&E,2019-08-09T00:00:00,2019,August,Friday,9,221,14,2019-09-04T00:00:00,2019,September,Wednesday,4,247,12,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KHS,,RC,16,BLU,1500.0,STOLEN,20587,"{'type': 'Point', 'coordinates': (-79.45349123, 43.66135753)}"
-20617,5296,GO-20199029588,THEFT UNDER,2019-09-10T00:00:00,2019,September,Tuesday,10,253,21,2019-09-11T00:00:00,2019,September,Wednesday,11,254,13,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,VFR 4,OT,27,LBL,700.0,STOLEN,20588,"{'type': 'Point', 'coordinates': (-79.45119415, 43.662709910000004)}"
-20618,21149,GO-20209015818,THEFT UNDER,2020-06-21T00:00:00,2020,June,Sunday,21,173,16,2020-06-21T00:00:00,2020,June,Sunday,21,173,20,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,18,WHI,700.0,STOLEN,20589,"{'type': 'Point', 'coordinates': (-79.42657247, 43.67059555)}"
-20619,24622,GO-20149004898,THEFT UNDER,2014-07-10T00:00:00,2014,July,Thursday,10,191,20,2014-07-11T00:00:00,2014,July,Friday,11,192,11,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,VFR 4,RG,21,WHI,500.0,STOLEN,20590,"{'type': 'Point', 'coordinates': (-79.42816584, 43.6614364)}"
-20620,21476,GO-2017752262,THEFT UNDER - BICYCLE,2017-04-29T00:00:00,2017,April,Saturday,29,119,10,2017-04-29T00:00:00,2017,April,Saturday,29,119,12,D13,Toronto,92,Corso Italia-Davenport (92),Ttc Bus Stop / Shelter / Loop,Outside,GT,,MT,0,GRY,1200.0,STOLEN,20591,"{'type': 'Point', 'coordinates': (-79.44304265, 43.67796161)}"
-20621,5300,GO-20199029184,THEFT UNDER,2019-09-01T00:00:00,2019,September,Sunday,1,244,3,2019-09-08T00:00:00,2019,September,Sunday,8,251,15,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,VFR-3,OT,32,GRY,650.0,STOLEN,20592,"{'type': 'Point', 'coordinates': (-79.44228046, 43.66898843)}"
-20622,5345,GO-20191784396,THEFT OF EBIKE UNDER $5000,2019-09-17T00:00:00,2019,September,Tuesday,17,260,4,2019-09-17T00:00:00,2019,September,Tuesday,17,260,4,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,DAYMACK,,EL,1,,,STOLEN,20593,"{'type': 'Point', 'coordinates': (-79.44518316, 43.65951256)}"
-20623,5356,GO-20199030410,THEFT UNDER,2019-09-17T00:00:00,2019,September,Tuesday,17,260,0,2019-09-17T00:00:00,2019,September,Tuesday,17,260,16,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FJ,TRACK COMP 2015,RC,1,BLU,1000.0,STOLEN,20594,"{'type': 'Point', 'coordinates': (-79.44745102, 43.66170967)}"
-20624,5379,GO-20199031107,THEFT UNDER,2019-09-20T00:00:00,2019,September,Friday,20,263,10,2019-09-22T00:00:00,2019,September,Sunday,22,265,21,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FJ,,RG,1,BLK,780.0,STOLEN,20595,"{'type': 'Point', 'coordinates': (-79.43925143, 43.6633965)}"
-20625,5390,GO-20191824314,THEFT OF EBIKE UNDER $5000,2019-09-21T00:00:00,2019,September,Saturday,21,264,23,2019-09-24T00:00:00,2019,September,Tuesday,24,267,9,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,EMMO,GOLD CHAIN,EL,3,BLK,1600.0,STOLEN,20596,"{'type': 'Point', 'coordinates': (-79.43202641, 43.66488377)}"
-20626,5499,GO-20199033372,THEFT UNDER - BICYCLE,2019-10-09T00:00:00,2019,October,Wednesday,9,282,18,2019-10-10T00:00:00,2019,October,Thursday,10,283,12,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,MT,21,YEL,75.0,STOLEN,20597,"{'type': 'Point', 'coordinates': (-79.4258929, 43.66898009)}"
-20627,5500,GO-20199033372,THEFT UNDER - BICYCLE,2019-10-09T00:00:00,2019,October,Wednesday,9,282,18,2019-10-10T00:00:00,2019,October,Thursday,10,283,12,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,MT,21,YEL,75.0,STOLEN,20598,"{'type': 'Point', 'coordinates': (-79.4258929, 43.66898009)}"
-20628,5640,GO-20199036346,THEFT UNDER - BICYCLE,2019-07-02T00:00:00,2019,July,Tuesday,2,183,17,2019-11-03T00:00:00,2019,November,Sunday,3,307,9,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,7,,1300.0,STOLEN,20599,"{'type': 'Point', 'coordinates': (-79.43449371000001, 43.66435606)}"
-20629,5641,GO-20199036346,THEFT UNDER - BICYCLE,2019-07-02T00:00:00,2019,July,Tuesday,2,183,17,2019-11-03T00:00:00,2019,November,Sunday,3,307,9,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,7,,1300.0,STOLEN,20600,"{'type': 'Point', 'coordinates': (-79.43449371000001, 43.66435606)}"
-20630,5679,GO-20199037124,THEFT UNDER - BICYCLE,2019-08-09T00:00:00,2019,August,Friday,9,221,21,2019-11-11T00:00:00,2019,November,Monday,11,315,10,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,3,SIL,1500.0,STOLEN,20601,"{'type': 'Point', 'coordinates': (-79.4328876, 43.66693366)}"
-20631,5696,GO-20192221413,B&E,2019-11-14T00:00:00,2019,November,Thursday,14,318,16,2019-11-17T00:00:00,2019,November,Sunday,17,321,13,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,DEVINCI,,RG,9,YEL,,STOLEN,20602,"{'type': 'Point', 'coordinates': (-79.45188185, 43.66075675)}"
-20632,5718,GO-20199038385,THEFT UNDER,2019-11-21T00:00:00,2019,November,Thursday,21,325,11,2019-11-22T00:00:00,2019,November,Friday,22,326,0,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),Ttc Subway Station,Transit,OT,,RG,15,YEL,1150.0,STOLEN,20603,"{'type': 'Point', 'coordinates': (-79.42801462, 43.661480430000005)}"
-20633,5739,GO-20199039483,THEFT UNDER,2019-11-11T00:00:00,2019,November,Monday,11,315,17,2019-12-01T00:00:00,2019,December,Sunday,1,335,11,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,OT,CYCLOCROSS,RC,18,SIL,2500.0,STOLEN,20604,"{'type': 'Point', 'coordinates': (-79.45349123, 43.66135753)}"
-20634,5749,GO-20199040010,THEFT UNDER,2019-12-06T00:00:00,2019,December,Friday,6,340,0,2019-12-06T00:00:00,2019,December,Friday,6,340,14,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Group Homes (Non-Profit, Halfway House, Social Agency)",Other,NO,STORM 9.4,MT,24,LBL,600.0,STOLEN,20605,"{'type': 'Point', 'coordinates': (-79.44414059, 43.66721386)}"
-20635,5873,GO-2020243324,THEFT UNDER,2020-02-02T00:00:00,2020,February,Sunday,2,33,5,2020-02-04T00:00:00,2020,February,Tuesday,4,35,10,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,WTB,SPEED DISC,OT,0,,600.0,STOLEN,20606,"{'type': 'Point', 'coordinates': (-79.44569863000001, 43.66489681)}"
-20636,5893,GO-20209005352,THEFT UNDER,2019-11-13T00:00:00,2019,November,Wednesday,13,317,14,2020-02-13T00:00:00,2020,February,Thursday,13,44,14,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KH,FLITE 100,OT,1,WHI,800.0,STOLEN,20607,"{'type': 'Point', 'coordinates': (-79.44161041, 43.66107002)}"
-20637,5904,GO-2020304313,B&E,2020-02-07T00:00:00,2020,February,Friday,7,38,10,2020-02-12T00:00:00,2020,February,Wednesday,12,43,13,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,OT,CXA-01 CROSSMAC,RC,11,BLK,2500.0,STOLEN,20608,"{'type': 'Point', 'coordinates': (-79.45349123, 43.66135753)}"
-20638,5912,GO-20209006119,THEFT UNDER,2020-02-14T00:00:00,2020,February,Friday,14,45,18,2020-02-20T00:00:00,2020,February,Thursday,20,51,10,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,FX DISC 2,MT,24,LGR,730.0,STOLEN,20609,"{'type': 'Point', 'coordinates': (-79.43710214000001, 43.67397426)}"
-20639,6006,GO-20209010211,THEFT UNDER,2020-03-31T00:00:00,2020,March,Tuesday,31,91,4,2020-03-31T00:00:00,2020,March,Tuesday,31,91,12,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,ALGONQUIN,MT,18,PLE,100.0,STOLEN,20610,"{'type': 'Point', 'coordinates': (-79.44161041, 43.66107002)}"
-20640,6095,GO-20209011816,THEFT UNDER,2020-04-14T00:00:00,2020,April,Tuesday,14,105,17,2020-04-23T00:00:00,2020,April,Thursday,23,114,19,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,ROCKY MOUNTAIN,WHISTLER 50 XL,MT,50,RED,999.0,STOLEN,20611,"{'type': 'Point', 'coordinates': (-79.44642226, 43.66672554)}"
-20641,6158,GO-2020867796,THEFT UNDER - BICYCLE,2020-02-21T00:00:00,2020,February,Friday,21,52,6,2020-05-09T00:00:00,2020,May,Saturday,9,130,17,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,NORCO,STORM,OT,21,BLK,200.0,STOLEN,20612,"{'type': 'Point', 'coordinates': (-79.43047773, 43.66431054)}"
-20642,6174,GO-2020888267,PROPERTY - FOUND,2020-05-13T00:00:00,2020,May,Wednesday,13,134,10,2020-05-13T00:00:00,2020,May,Wednesday,13,134,13,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DAYMAK,DRIVER,EL,20,WHI,,UNKNOWN,20613,"{'type': 'Point', 'coordinates': (-79.43081834000002, 43.66199128)}"
-20643,6209,GO-2020925318,THEFT UNDER - BICYCLE,2020-05-13T00:00:00,2020,May,Wednesday,13,134,23,2020-05-20T00:00:00,2020,May,Wednesday,20,141,10,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KONA,PADDY WAGON,RG,1,GRYWHI,800.0,STOLEN,20614,"{'type': 'Point', 'coordinates': (-79.42322751, 43.66562202)}"
-20644,6228,GO-20209013704,THEFT UNDER,2020-05-21T00:00:00,2020,May,Thursday,21,142,19,2020-05-22T00:00:00,2020,May,Friday,22,143,13,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,UK,CITY 1 HYBRID,OT,21,GRY,550.0,STOLEN,20615,"{'type': 'Point', 'coordinates': (-79.44569863000001, 43.66489681)}"
-20645,6362,GO-20209015132,THEFT UNDER,2020-06-11T00:00:00,2020,June,Thursday,11,163,12,2020-06-11T00:00:00,2020,June,Thursday,11,163,12,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,MT,11,BLK,2000.0,STOLEN,20616,"{'type': 'Point', 'coordinates': (-79.43532635000001, 43.65988369)}"
-20646,6424,GO-20201111123,THEFT UNDER - BICYCLE,2020-06-17T00:00:00,2020,June,Wednesday,17,169,1,2020-06-17T00:00:00,2020,June,Wednesday,17,169,2,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,RG,1,BLK,,STOLEN,20617,"{'type': 'Point', 'coordinates': (-79.4220205, 43.6627783)}"
-20647,6607,GO-20209017420,THEFT UNDER,2020-07-10T00:00:00,2020,July,Friday,10,192,19,2020-07-13T00:00:00,2020,July,Monday,13,195,10,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Open Areas (Lakes, Parks, Rivers)",Outside,GI,ESCAPE 3,RG,21,BLK,520.0,STOLEN,20618,"{'type': 'Point', 'coordinates': (-79.42087545, 43.66302552)}"
-20648,6692,GO-20209018148,THEFT UNDER,2020-07-21T00:00:00,2020,July,Tuesday,21,203,9,2020-07-21T00:00:00,2020,July,Tuesday,21,203,9,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KO,DEW DELUX,RG,11,GRN,1100.0,STOLEN,20619,"{'type': 'Point', 'coordinates': (-79.44340776, 43.66537166)}"
-20649,6703,GO-20209018236,THEFT UNDER,2020-07-22T00:00:00,2020,July,Wednesday,22,204,1,2020-07-22T00:00:00,2020,July,Wednesday,22,204,15,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,FLOURISH FS 2,RG,7,WHI,734.0,STOLEN,20620,"{'type': 'Point', 'coordinates': (-79.42657247, 43.67059555)}"
-20650,6707,GO-20209018236,THEFT UNDER,2020-07-22T00:00:00,2020,July,Wednesday,22,204,1,2020-07-22T00:00:00,2020,July,Wednesday,22,204,15,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,OT,7,,734.0,STOLEN,20621,"{'type': 'Point', 'coordinates': (-79.42657247, 43.67059555)}"
-20651,6708,GO-20209018148,THEFT UNDER,2020-07-21T00:00:00,2020,July,Tuesday,21,203,9,2020-07-21T00:00:00,2020,July,Tuesday,21,203,9,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KO,DEW,RG,11,GRN,,STOLEN,20622,"{'type': 'Point', 'coordinates': (-79.44340776, 43.66537166)}"
-20652,6759,GO-20209018686,THEFT UNDER,2020-07-27T00:00:00,2020,July,Monday,27,209,0,2020-07-27T00:00:00,2020,July,Monday,27,209,15,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CRUISER,OT,8,BLU,730.0,STOLEN,20623,"{'type': 'Point', 'coordinates': (-79.42811607, 43.6679542)}"
-20653,7153,GO-20201654376,THEFT UNDER - BICYCLE,2020-08-28T00:00:00,2020,August,Friday,28,241,14,2020-09-01T00:00:00,2020,September,Tuesday,1,245,21,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,SPECIALIZED,3045,MT,21,BLK,700.0,STOLEN,20624,"{'type': 'Point', 'coordinates': (-79.43640202, 43.65965002)}"
-20654,7186,GO-20209022446,THEFT UNDER,2020-08-24T00:00:00,2020,August,Monday,24,237,4,2020-09-05T00:00:00,2020,September,Saturday,5,249,21,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,HF,JAZZMIN 20 JUNI,TO,1,TRQ,200.0,STOLEN,20625,"{'type': 'Point', 'coordinates': (-79.44770883, 43.65977965)}"
-20655,7250,GO-20209023271,B&E,2020-09-14T00:00:00,2020,September,Monday,14,258,7,2020-09-15T00:00:00,2020,September,Tuesday,15,259,9,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,KO,DEW,RG,8,GLD,790.0,STOLEN,20626,"{'type': 'Point', 'coordinates': (-79.44924628, 43.67095556)}"
-20656,7307,GO-20201769156,POSSESSION PROPERTY OBC UNDER,2020-09-18T00:00:00,2020,September,Friday,18,262,9,2020-09-18T00:00:00,2020,September,Friday,18,262,9,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,EPIC,MT,21,RED,,RECOVERED,20627,"{'type': 'Point', 'coordinates': (-79.44340776, 43.66537166)}"
-20657,21500,GO-20179008298,THEFT UNDER - BICYCLE,2017-06-08T00:00:00,2017,June,Thursday,8,159,11,2017-06-17T00:00:00,2017,June,Saturday,17,168,11,D13,Toronto,92,Corso Italia-Davenport (92),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,,TO,40,BGE,900.0,STOLEN,20628,"{'type': 'Point', 'coordinates': (-79.4571269, 43.68103329)}"
-20658,21532,GO-20189043173,THEFT UNDER - BICYCLE,2018-12-23T00:00:00,2018,December,Sunday,23,357,19,2018-12-24T00:00:00,2018,December,Monday,24,358,8,D13,Toronto,92,Corso Italia-Davenport (92),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,DISTRICT,RC,1,BLU,1000.0,STOLEN,20629,"{'type': 'Point', 'coordinates': (-79.43809137, 43.6773942)}"
-20659,21534,GO-20199009080,THEFT UNDER - BICYCLE,2019-03-15T00:00:00,2019,March,Friday,15,74,15,2019-03-21T00:00:00,2019,March,Thursday,21,80,15,D13,Toronto,92,Corso Italia-Davenport (92),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,21,BLK,1000.0,STOLEN,20630,"{'type': 'Point', 'coordinates': (-79.44081746, 43.67843551000001)}"
-20660,21536,GO-20191022780,THEFT UNDER - BICYCLE,2019-06-02T00:00:00,2019,June,Sunday,2,153,11,2019-06-05T00:00:00,2019,June,Wednesday,5,156,12,D13,Toronto,92,Corso Italia-Davenport (92),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,,MT,12,MRN,200.0,STOLEN,20631,"{'type': 'Point', 'coordinates': (-79.44709374, 43.67441412)}"
-20661,21541,GO-20199020742,THEFT UNDER - BICYCLE,2019-07-02T00:00:00,2019,July,Tuesday,2,183,0,2019-07-02T00:00:00,2019,July,Tuesday,2,183,15,D13,Toronto,92,Corso Italia-Davenport (92),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,3,DGR,600.0,STOLEN,20632,"{'type': 'Point', 'coordinates': (-79.44429743, 43.68109262)}"
-20662,21556,GO-20209015280,THEFT UNDER,2020-06-07T00:00:00,2020,June,Sunday,7,159,18,2020-06-13T00:00:00,2020,June,Saturday,13,165,10,D13,Toronto,92,Corso Italia-Davenport (92),Bar / Restaurant,Commercial,RIZE,X,EL,32,BLK,2600.0,STOLEN,20633,"{'type': 'Point', 'coordinates': (-79.44304265, 43.67796161)}"
-20663,21869,GO-20159003297,THEFT UNDER,2015-06-02T00:00:00,2015,June,Tuesday,2,153,23,2015-06-03T00:00:00,2015,June,Wednesday,3,154,9,D13,Toronto,92,Corso Italia-Davenport (92),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,STEP TROUGH,RG,1,GRN,350.0,STOLEN,20634,"{'type': 'Point', 'coordinates': (-79.45448492, 43.67806211)}"
-20664,21973,GO-20209021632,FTC WITH CONDITIONS,2020-08-27T00:00:00,2020,August,Thursday,27,240,21,2020-08-28T00:00:00,2020,August,Friday,28,241,13,D13,Toronto,92,Corso Italia-Davenport (92),Bar / Restaurant,Commercial,RM,,MT,21,DBL,300.0,STOLEN,20635,"{'type': 'Point', 'coordinates': (-79.43971621, 43.678692100000006)}"
-20665,24654,GO-20149006880,THEFT UNDER,2014-09-12T00:00:00,2014,September,Friday,12,255,12,2014-09-14T00:00:00,2014,September,Sunday,14,257,14,D13,Toronto,92,Corso Italia-Davenport (92),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,DETOUR 4.5,RG,8,PLE,500.0,STOLEN,20636,"{'type': 'Point', 'coordinates': (-79.44745595, 43.68035940000001)}"
-20666,24664,GO-20143065315,THEFT UNDER,2014-10-07T00:00:00,2014,October,Tuesday,7,280,15,2014-10-08T00:00:00,2014,October,Wednesday,8,281,10,D13,Toronto,92,Corso Italia-Davenport (92),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,CITY CYCLE,FO,1,WHI,350.0,STOLEN,20637,"{'type': 'Point', 'coordinates': (-79.44775719, 43.67602853)}"
-20667,24753,GO-20151568974,THEFT UNDER,2015-09-10T00:00:00,2015,September,Thursday,10,253,16,2015-09-11T00:00:00,2015,September,Friday,11,254,9,D13,Toronto,92,Corso Italia-Davenport (92),Schools During Supervised Activity,Educational,ABICI,HIBRED,RG,8,BLU,1800.0,STOLEN,20638,"{'type': 'Point', 'coordinates': (-79.44030626, 43.67425106)}"
-20668,24782,GO-20169002430,THEFT UNDER - BICYCLE,2016-03-17T00:00:00,2016,March,Thursday,17,77,9,2016-03-17T00:00:00,2016,March,Thursday,17,77,10,D13,Toronto,92,Corso Italia-Davenport (92),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,RC,18,CPR,2500.0,STOLEN,20639,"{'type': 'Point', 'coordinates': (-79.44739232, 43.67700761)}"
-20669,25262,GO-20161680339,THEFT UNDER - BICYCLE,2016-09-21T00:00:00,2016,September,Wednesday,21,265,11,2016-09-21T00:00:00,2016,September,Wednesday,21,265,11,D13,Toronto,92,Corso Italia-Davenport (92),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,U/K,MT,18,,,RECOVERED,20640,"{'type': 'Point', 'coordinates': (-79.44130085, 43.67659547)}"
-20670,25313,GO-20171467214,THEFT UNDER - BICYCLE,2017-08-09T00:00:00,2017,August,Wednesday,9,221,13,2017-08-14T00:00:00,2017,August,Monday,14,226,20,D13,Toronto,92,Corso Italia-Davenport (92),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,ROME,RG,18,SIL,750.0,STOLEN,20641,"{'type': 'Point', 'coordinates': (-79.44950888, 43.67891418)}"
-20671,25317,GO-20171655280,THEFT UNDER - BICYCLE,2017-09-07T00:00:00,2017,September,Thursday,7,250,15,2017-09-12T00:00:00,2017,September,Tuesday,12,255,18,D13,Toronto,92,Corso Italia-Davenport (92),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,,MT,18,BLUSIL,600.0,STOLEN,20642,"{'type': 'Point', 'coordinates': (-79.44425206, 43.67417505000001)}"
-20672,25318,GO-20171760261,THEFT UNDER - BICYCLE,2017-09-28T00:00:00,2017,September,Thursday,28,271,9,2017-09-28T00:00:00,2017,September,Thursday,28,271,10,D13,Toronto,92,Corso Italia-Davenport (92),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,GIANT,,RG,18,WHIPLE,500.0,STOLEN,20643,"{'type': 'Point', 'coordinates': (-79.44529095, 43.67656841)}"
-20673,25341,GO-20199015803,THEFT UNDER - BICYCLE,2019-05-18T00:00:00,2019,May,Saturday,18,138,23,2019-05-21T00:00:00,2019,May,Tuesday,21,141,18,D13,Toronto,92,Corso Italia-Davenport (92),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RA,,MT,18,,400.0,STOLEN,20644,"{'type': 'Point', 'coordinates': (-79.44775719, 43.67602853)}"
-20674,25352,GO-20199027652,THEFT UNDER - BICYCLE,2019-08-20T00:00:00,2019,August,Tuesday,20,232,19,2019-08-25T00:00:00,2019,August,Sunday,25,237,20,D13,Toronto,92,Corso Italia-Davenport (92),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,AC 02,RG,27,GRY,760.0,STOLEN,20645,"{'type': 'Point', 'coordinates': (-79.43587315, 43.67954756)}"
-20675,25368,GO-20209009394,THEFT UNDER,2020-03-19T00:00:00,2020,March,Thursday,19,79,18,2020-03-19T00:00:00,2020,March,Thursday,19,79,19,D13,Toronto,92,Corso Italia-Davenport (92),Bar / Restaurant,Commercial,UK,,BM,10,,0.0,STOLEN,20646,"{'type': 'Point', 'coordinates': (-79.44304265, 43.67796161)}"
-20676,1640,GO-20179016945,THEFT UNDER - BICYCLE,2017-10-11T00:00:00,2017,October,Wednesday,11,284,8,2017-10-11T00:00:00,2017,October,Wednesday,11,284,12,D13,Toronto,94,Wychwood (94),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,MT,8,BLU,700.0,STOLEN,20887,"{'type': 'Point', 'coordinates': (-79.41887334, 43.682188630000006)}"
-20677,25370,GO-20201029824,THEFT UNDER,2020-06-03T00:00:00,2020,June,Wednesday,3,155,23,2020-06-04T00:00:00,2020,June,Thursday,4,156,18,D13,Toronto,92,Corso Italia-Davenport (92),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,RG,12,,200.0,STOLEN,20647,"{'type': 'Point', 'coordinates': (-79.44529095, 43.67656841)}"
-20678,78,GO-2017195047,THEFT UNDER - BICYCLE,2016-12-15T00:00:00,2016,December,Thursday,15,350,12,2017-01-31T00:00:00,2017,January,Tuesday,31,31,18,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,JAMIS,VENTURA RACE,OT,20,BLK,600.0,STOLEN,20648,"{'type': 'Point', 'coordinates': (-79.45188185, 43.66075675)}"
-20679,111,GO-2017357834,B&E,2017-02-26T00:00:00,2017,February,Sunday,26,57,15,2017-02-26T00:00:00,2017,February,Sunday,26,57,19,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RALEIGH,CADENT I8,RG,12,BLK,,STOLEN,20649,"{'type': 'Point', 'coordinates': (-79.42721594, 43.66277001000001)}"
-20680,116,GO-20179002559,THEFT UNDER - BICYCLE,2017-02-25T00:00:00,2017,February,Saturday,25,56,3,2017-02-27T00:00:00,2017,February,Monday,27,58,17,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,CC,,RG,10,BLU,300.0,STOLEN,20650,"{'type': 'Point', 'coordinates': (-79.42929449, 43.66459254)}"
-20681,130,GO-2017396575,FTC PROBATION ORDER,2017-03-04T00:00:00,2017,March,Saturday,4,63,0,2017-03-04T00:00:00,2017,March,Saturday,4,63,12,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,0,RED,400.0,STOLEN,20651,"{'type': 'Point', 'coordinates': (-79.4527141, 43.6663251)}"
-20682,131,GO-2017396575,FTC PROBATION ORDER,2017-03-04T00:00:00,2017,March,Saturday,4,63,0,2017-03-04T00:00:00,2017,March,Saturday,4,63,12,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,0,BLUSIL,400.0,STOLEN,20652,"{'type': 'Point', 'coordinates': (-79.4527141, 43.6663251)}"
-20683,132,GO-2017396575,FTC PROBATION ORDER,2017-03-04T00:00:00,2017,March,Saturday,4,63,0,2017-03-04T00:00:00,2017,March,Saturday,4,63,12,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,0,BLK,,STOLEN,20653,"{'type': 'Point', 'coordinates': (-79.4527141, 43.6663251)}"
-20684,158,GO-2017481065,THEFT UNDER - BICYCLE,2017-02-17T00:00:00,2017,February,Friday,17,48,0,2017-03-17T00:00:00,2017,March,Friday,17,76,22,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,NEVADA,MT,16,,185.0,STOLEN,20654,"{'type': 'Point', 'coordinates': (-79.44689484, 43.65747686)}"
-20685,175,GO-20179003870,THEFT UNDER - BICYCLE,2017-03-24T00:00:00,2017,March,Friday,24,83,16,2017-03-27T00:00:00,2017,March,Monday,27,86,16,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,CROSS CHECK,TO,11,BLK,1785.0,STOLEN,20655,"{'type': 'Point', 'coordinates': (-79.4340737, 43.6601452)}"
-20686,200,GO-2017601313,THEFT OVER,2017-04-05T00:00:00,2017,April,Wednesday,5,95,13,2017-04-05T00:00:00,2017,April,Wednesday,5,95,16,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,LEVO FST 6 FATT,EL,11,BLK,6000.0,STOLEN,20656,"{'type': 'Point', 'coordinates': (-79.43913557, 43.65909813)}"
-20687,253,GO-2017695816,THEFT UNDER - BICYCLE,2017-04-19T00:00:00,2017,April,Wednesday,19,109,19,2017-04-20T00:00:00,2017,April,Thursday,20,110,20,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN,,RG,1,BLU,150.0,STOLEN,20657,"{'type': 'Point', 'coordinates': (-79.45238466, 43.66549693)}"
-20688,264,GO-20179005114,THEFT UNDER,2017-04-23T00:00:00,2017,April,Sunday,23,113,12,2017-04-23T00:00:00,2017,April,Sunday,23,113,12,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,TRI-1,TR,7,TRQ,2500.0,STOLEN,20658,"{'type': 'Point', 'coordinates': (-79.45444891, 43.66596341)}"
-20689,267,GO-20179005139,THEFT UNDER,2017-04-17T00:00:00,2017,April,Monday,17,107,1,2017-04-23T00:00:00,2017,April,Sunday,23,113,16,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,NEW STYLE,RG,17,SIL,100.0,STOLEN,20659,"{'type': 'Point', 'coordinates': (-79.43532635000001, 43.65988369)}"
-20690,288,GO-20179005344,THEFT UNDER - BICYCLE,2017-04-26T00:00:00,2017,April,Wednesday,26,116,5,2017-04-27T00:00:00,2017,April,Thursday,27,117,0,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RC,1,BLK,500.0,STOLEN,20660,"{'type': 'Point', 'coordinates': (-79.42657247, 43.67059555)}"
-20691,344,GO-20179005963,B&E,2017-05-08T00:00:00,2017,May,Monday,8,128,19,2017-05-09T00:00:00,2017,May,Tuesday,9,129,11,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,16,WHI,2000.0,STOLEN,20661,"{'type': 'Point', 'coordinates': (-79.44920947, 43.67041868)}"
-20692,345,GO-20179005963,B&E,2017-05-08T00:00:00,2017,May,Monday,8,128,19,2017-05-09T00:00:00,2017,May,Tuesday,9,129,11,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,CA,,RC,20,WHI,2400.0,STOLEN,20662,"{'type': 'Point', 'coordinates': (-79.44920947, 43.67041868)}"
-20693,363,GO-20179006118,THEFT UNDER - BICYCLE,2017-05-07T00:00:00,2017,May,Sunday,7,127,13,2017-05-11T00:00:00,2017,May,Thursday,11,131,13,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,RAPID 3,RC,8,WHI,849.0,STOLEN,20663,"{'type': 'Point', 'coordinates': (-79.45188185, 43.66075675)}"
-20694,380,GO-20179006245,THEFT UNDER - BICYCLE,2017-05-12T00:00:00,2017,May,Friday,12,132,23,2017-05-13T00:00:00,2017,May,Saturday,13,133,12,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,DUTCHI 3,RG,3,RED,800.0,STOLEN,20664,"{'type': 'Point', 'coordinates': (-79.44306206, 43.66450282)}"
-20695,423,GO-20179006630,THEFT UNDER - BICYCLE,2017-05-18T00:00:00,2017,May,Thursday,18,138,16,2017-05-19T00:00:00,2017,May,Friday,19,139,11,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SOLOIST,RG,1,BLK,500.0,STOLEN,20665,"{'type': 'Point', 'coordinates': (-79.42624517, 43.66983944)}"
-20696,437,GO-20179006764,THEFT UNDER - BICYCLE,2017-05-19T00:00:00,2017,May,Friday,19,139,21,2017-05-22T00:00:00,2017,May,Monday,22,142,10,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,N02,RG,1,BLU,600.0,RECOVERED,20666,"{'type': 'Point', 'coordinates': (-79.43756839, 43.65942639)}"
-20697,456,GO-20179006846,THEFT OF EBIKE UNDER $5000,2017-05-22T00:00:00,2017,May,Monday,22,142,8,2017-05-23T00:00:00,2017,May,Tuesday,23,143,15,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TU,2017,EL,30,BLK,1293.0,STOLEN,20667,"{'type': 'Point', 'coordinates': (-79.42753228, 43.66652082)}"
-20698,530,GO-2017988722,B&E,2017-06-03T00:00:00,2017,June,Saturday,3,154,22,2017-06-04T00:00:00,2017,June,Sunday,4,155,9,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,UNKNOWN,RG,5,RED,200.0,STOLEN,20668,"{'type': 'Point', 'coordinates': (-79.44272532, 43.66363549)}"
-20699,531,GO-2017988722,B&E,2017-06-03T00:00:00,2017,June,Saturday,3,154,22,2017-06-04T00:00:00,2017,June,Sunday,4,155,9,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,UNKNOWN,RC,10,BLK,2500.0,STOLEN,20669,"{'type': 'Point', 'coordinates': (-79.44272532, 43.66363549)}"
-20700,554,GO-20179007644,THEFT UNDER - BICYCLE,2017-06-07T00:00:00,2017,June,Wednesday,7,158,1,2017-06-07T00:00:00,2017,June,Wednesday,7,158,11,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,8,YEL,1000.0,STOLEN,20670,"{'type': 'Point', 'coordinates': (-79.43047773, 43.66431054)}"
-20701,577,GO-20179007871,THEFT UNDER - BICYCLE,2017-06-09T00:00:00,2017,June,Friday,9,160,20,2017-06-10T00:00:00,2017,June,Saturday,10,161,23,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,2,RG,8,RED,250.0,STOLEN,20671,"{'type': 'Point', 'coordinates': (-79.42721594, 43.66277001000001)}"
-20702,598,GO-2017105009,THEFT UNDER - BICYCLE,2017-06-13T00:00:00,2017,June,Tuesday,13,164,8,2017-06-13T00:00:00,2017,June,Tuesday,13,164,11,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SURLY,PUGSLEY,MT,21,,1400.0,RECOVERED,20672,"{'type': 'Point', 'coordinates': (-79.43663905, 43.66296704)}"
-20703,627,GO-20171058075,THEFT UNDER - BICYCLE,2017-06-10T00:00:00,2017,June,Saturday,10,161,16,2017-06-16T00:00:00,2017,June,Friday,16,167,11,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Open Areas (Lakes, Parks, Rivers)",Outside,UNKNOWN MAKE,,OT,7,BLK,500.0,STOLEN,20673,"{'type': 'Point', 'coordinates': (-79.42087545, 43.66302552)}"
-20704,634,GO-20171084404,THEFT UNDER - BICYCLE,2017-06-16T00:00:00,2017,June,Friday,16,167,3,2017-06-18T00:00:00,2017,June,Sunday,18,169,1,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MIELE,ASSORA,OT,10,RED,350.0,STOLEN,20674,"{'type': 'Point', 'coordinates': (-79.42811607, 43.6679542)}"
-20705,724,GO-20179008958,THEFT UNDER - BICYCLE,2017-06-26T00:00:00,2017,June,Monday,26,177,2,2017-06-26T00:00:00,2017,June,Monday,26,177,21,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,TCX SLR 2,RC,11,BLK,1680.0,STOLEN,20675,"{'type': 'Point', 'coordinates': (-79.42322914, 43.6625099)}"
-20706,758,GO-20179009276,THEFT UNDER - BICYCLE,2017-07-02T00:00:00,2017,July,Sunday,2,183,9,2017-07-02T00:00:00,2017,July,Sunday,2,183,13,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,MT,5,BLK,100.0,STOLEN,20676,"{'type': 'Point', 'coordinates': (-79.44875694, 43.65707932)}"
-20707,773,GO-20179009382,THEFT UNDER,2017-06-25T00:00:00,2017,June,Sunday,25,176,21,2017-07-04T00:00:00,2017,July,Tuesday,4,185,11,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,21,BLK,0.0,STOLEN,20677,"{'type': 'Point', 'coordinates': (-79.4208938, 43.67001212)}"
-20708,820,GO-20179009900,THEFT UNDER,2017-07-03T00:00:00,2017,July,Monday,3,184,20,2017-07-10T00:00:00,2017,July,Monday,10,191,20,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,SC,1,SIL,100.0,STOLEN,20678,"{'type': 'Point', 'coordinates': (-79.42425908, 43.6629699)}"
-20709,821,GO-20179009900,THEFT UNDER,2017-07-03T00:00:00,2017,July,Monday,3,184,20,2017-07-10T00:00:00,2017,July,Monday,10,191,20,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,SC,1,BLK,75.0,STOLEN,20679,"{'type': 'Point', 'coordinates': (-79.42425908, 43.6629699)}"
-20710,833,GO-20179009990,THEFT UNDER - BICYCLE,2017-07-11T00:00:00,2017,July,Tuesday,11,192,16,2017-07-11T00:00:00,2017,July,Tuesday,11,192,19,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,BLK,150.0,STOLEN,20680,"{'type': 'Point', 'coordinates': (-79.45052042, 43.661049850000005)}"
-20711,857,GO-20171269529,THEFT UNDER - BICYCLE,2017-07-15T00:00:00,2017,July,Saturday,15,196,11,2017-07-15T00:00:00,2017,July,Saturday,15,196,14,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RALEIGH,DETOUR,RG,10,BLU,600.0,UNKNOWN,20681,"{'type': 'Point', 'coordinates': (-79.44991158, 43.65952847)}"
-20712,938,GO-20179010725,THEFT UNDER - BICYCLE,2017-07-21T00:00:00,2017,July,Friday,21,202,0,2017-07-21T00:00:00,2017,July,Friday,21,202,12,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RC,24,PLE,1000.0,STOLEN,20682,"{'type': 'Point', 'coordinates': (-79.44600963, 43.67193758)}"
-20713,975,GO-20179011050,THEFT UNDER - BICYCLE,2017-07-26T00:00:00,2017,July,Wednesday,26,207,7,2017-07-26T00:00:00,2017,July,Wednesday,26,207,7,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,CITY GLIDE,RG,7,LBL,800.0,STOLEN,20683,"{'type': 'Point', 'coordinates': (-79.43150988, 43.66994013)}"
-20714,1029,GO-20179011476,THEFT UNDER - BICYCLE,2017-07-31T00:00:00,2017,July,Monday,31,212,18,2017-08-01T00:00:00,2017,August,Tuesday,1,213,14,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RA,,MT,24,PLE,200.0,STOLEN,20684,"{'type': 'Point', 'coordinates': (-79.44920947, 43.67041868)}"
-20715,1053,GO-20179011700,THEFT UNDER - BICYCLE,2017-08-03T00:00:00,2017,August,Thursday,3,215,22,2017-08-04T00:00:00,2017,August,Friday,4,216,15,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KH,FLITE100,OT,1,GRY,500.0,STOLEN,20685,"{'type': 'Point', 'coordinates': (-79.42118785, 43.67077554)}"
-20716,1094,GO-20179011982,THEFT UNDER - BICYCLE,2017-07-26T00:00:00,2017,July,Wednesday,26,207,1,2017-08-09T00:00:00,2017,August,Wednesday,9,221,10,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,OT,1,BLK,350.0,STOLEN,20686,"{'type': 'Point', 'coordinates': (-79.45502368000001, 43.6638016)}"
-20717,1395,GO-20179014682,THEFT UNDER - BICYCLE,2017-09-11T00:00:00,2017,September,Monday,11,254,20,2017-09-13T00:00:00,2017,September,Wednesday,13,256,18,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),Universities / Colleges,Educational,KO,DEW,RG,5,MRN,300.0,STOLEN,20687,"{'type': 'Point', 'coordinates': (-79.45502368000001, 43.6638016)}"
-20718,1550,GO-20179016077,THEFT UNDER - BICYCLE,2017-09-28T00:00:00,2017,September,Thursday,28,271,22,2017-09-29T00:00:00,2017,September,Friday,29,272,7,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SIRRUS SPORT DI,RG,27,BLK,1200.0,STOLEN,20688,"{'type': 'Point', 'coordinates': (-79.43541193, 43.66325041)}"
-20719,1609,GO-20179016682,THEFT UNDER - BICYCLE,2017-10-07T00:00:00,2017,October,Saturday,7,280,2,2017-10-07T00:00:00,2017,October,Saturday,7,280,14,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),Bar / Restaurant,Commercial,BI,,RC,6,LGR,700.0,STOLEN,20690,"{'type': 'Point', 'coordinates': (-79.43756839, 43.65942639)}"
-20720,1627,GO-20179016853,THEFT UNDER,2017-10-09T00:00:00,2017,October,Monday,9,282,12,2017-10-10T00:00:00,2017,October,Tuesday,10,283,12,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,SU,PHANTOM 29,MT,7,ONG,400.0,STOLEN,20691,"{'type': 'Point', 'coordinates': (-79.45655408, 43.66456999)}"
-20721,1641,GO-20179016935,THEFT UNDER - BICYCLE,2017-10-08T00:00:00,2017,October,Sunday,8,281,5,2017-10-11T00:00:00,2017,October,Wednesday,11,284,11,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,10,GRY,660.0,STOLEN,20692,"{'type': 'Point', 'coordinates': (-79.43970398, 43.65899036)}"
-20722,1782,GO-20179018716,THEFT UNDER - BICYCLE,2017-10-31T00:00:00,2017,October,Tuesday,31,304,21,2017-11-01T00:00:00,2017,November,Wednesday,1,305,14,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RA,BACK ALLEY,RG,1,BLK,500.0,STOLEN,20693,"{'type': 'Point', 'coordinates': (-79.45370895, 43.66417879)}"
-20723,1862,GO-20173036421,B&E,2017-11-11T00:00:00,2017,November,Saturday,11,315,23,2017-11-20T00:00:00,2017,November,Monday,20,324,22,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MASI,CX COMP,RG,10,BLU,1003.0,STOLEN,20694,"{'type': 'Point', 'coordinates': (-79.41958483, 43.66657302)}"
-20724,1876,GO-20179020421,THEFT UNDER - BICYCLE,2017-11-24T00:00:00,2017,November,Friday,24,328,1,2017-11-24T00:00:00,2017,November,Friday,24,328,9,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,3,BLU,1000.0,STOLEN,20695,"{'type': 'Point', 'coordinates': (-79.4208938, 43.67001212)}"
-20725,1893,GO-20179020797,THEFT UNDER - BICYCLE,2017-11-28T00:00:00,2017,November,Tuesday,28,332,7,2017-11-28T00:00:00,2017,November,Tuesday,28,332,21,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,OT,21,GRY,800.0,STOLEN,20696,"{'type': 'Point', 'coordinates': (-79.45335604, 43.66332053000001)}"
-20726,1894,GO-20179020816,THEFT UNDER - BICYCLE,2017-10-05T00:00:00,2017,October,Thursday,5,278,19,2017-11-28T00:00:00,2017,November,Tuesday,28,332,19,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,RAMBLER,RG,5,BLK,500.0,STOLEN,20697,"{'type': 'Point', 'coordinates': (-79.45188185, 43.66075675)}"
-20727,1918,GO-20173119959,B&E,2017-12-03T00:00:00,2017,December,Sunday,3,337,0,2017-12-03T00:00:00,2017,December,Sunday,3,337,1,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CERVELO,,RC,10,RED,,STOLEN,20698,"{'type': 'Point', 'coordinates': (-79.43047773, 43.66431054)}"
-20728,1987,GO-201888756,THEFT UNDER,2018-01-14T00:00:00,2018,January,Sunday,14,14,21,2018-01-15T00:00:00,2018,January,Monday,15,15,9,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,SC,0,BLU,3500.0,STOLEN,20699,"{'type': 'Point', 'coordinates': (-79.44805182, 43.65723488)}"
-20729,2010,GO-2018179656,B&E,2018-01-23T00:00:00,2018,January,Tuesday,23,23,17,2018-01-29T00:00:00,2018,January,Monday,29,29,10,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN,,BM,0,BLK,,STOLEN,20700,"{'type': 'Point', 'coordinates': (-79.44527553, 43.66696388)}"
-20730,2060,GO-2018385087,THEFT OF MOTOR VEHICLE,2018-02-28T00:00:00,2018,February,Wednesday,28,59,15,2018-03-01T00:00:00,2018,March,Thursday,1,60,17,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,LINUS,,RC,1,CRM,,STOLEN,20701,"{'type': 'Point', 'coordinates': (-79.43500883, 43.66556554)}"
-20731,2065,GO-20189006907,THEFT UNDER,2017-06-15T00:00:00,2017,June,Thursday,15,166,17,2018-03-05T00:00:00,2018,March,Monday,5,64,18,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,THE KENNEDY,RG,1,BLK,500.0,STOLEN,20702,"{'type': 'Point', 'coordinates': (-79.42542165, 43.66432174)}"
-20732,2078,GO-2018475641,THEFT UNDER - BICYCLE,2018-03-13T00:00:00,2018,March,Tuesday,13,72,18,2018-03-15T00:00:00,2018,March,Thursday,15,74,17,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,,EL,1,BLK,,STOLEN,20703,"{'type': 'Point', 'coordinates': (-79.43899694, 43.6684649)}"
-20733,2121,GO-20189010074,THEFT UNDER - BICYCLE,2018-03-31T00:00:00,2018,March,Saturday,31,90,7,2018-03-31T00:00:00,2018,March,Saturday,31,90,14,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,10,,500.0,STOLEN,20704,"{'type': 'Point', 'coordinates': (-79.43556527, 43.67023276)}"
-20734,21185,GO-20179010492,THEFT UNDER,2017-06-22T00:00:00,2017,June,Thursday,22,173,14,2017-07-18T00:00:00,2017,July,Tuesday,18,199,14,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,DEW,RG,21,BLK,700.0,STOLEN,20705,"{'type': 'Point', 'coordinates': (-79.42939853, 43.66115068)}"
-20735,2127,GO-20189010185,B&E,2018-04-02T00:00:00,2018,April,Monday,2,92,7,2018-04-02T00:00:00,2018,April,Monday,2,92,7,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,MT,8,GRY,729.0,STOLEN,20706,"{'type': 'Point', 'coordinates': (-79.43048595, 43.66744926)}"
-20736,2128,GO-20189010185,B&E,2018-04-02T00:00:00,2018,April,Monday,2,92,7,2018-04-02T00:00:00,2018,April,Monday,2,92,7,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,MT,8,BLK,729.0,STOLEN,20707,"{'type': 'Point', 'coordinates': (-79.43048595, 43.66744926)}"
-20737,2129,GO-20189010212,THEFT UNDER - BICYCLE,2018-04-01T00:00:00,2018,April,Sunday,1,91,22,2018-04-02T00:00:00,2018,April,Monday,2,92,13,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,,OT,1,,99.0,STOLEN,20708,"{'type': 'Point', 'coordinates': (-79.44207278, 43.67273262)}"
-20738,2134,GO-20189010518,THEFT UNDER - BICYCLE,2018-04-03T00:00:00,2018,April,Tuesday,3,93,17,2018-04-04T00:00:00,2018,April,Wednesday,4,94,21,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,24,BLK,600.0,STOLEN,20709,"{'type': 'Point', 'coordinates': (-79.42816584, 43.6614364)}"
-20739,2187,GO-20189012460,THEFT UNDER,2018-04-21T00:00:00,2018,April,Saturday,21,111,15,2018-04-22T00:00:00,2018,April,Sunday,22,112,19,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,OT,"SILHOUETTE 16""""",RG,21,GRY,450.0,STOLEN,20710,"{'type': 'Point', 'coordinates': (-79.44920947, 43.67041868)}"
-20740,2326,GO-20189015167,THEFT UNDER - BICYCLE,2018-05-16T00:00:00,2018,May,Wednesday,16,136,13,2018-05-16T00:00:00,2018,May,Wednesday,16,136,13,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,STEVE BAUER SIR,RC,10,RED,800.0,STOLEN,20711,"{'type': 'Point', 'coordinates': (-79.42650199, 43.66408514)}"
-20741,2333,GO-2018887752,THEFT UNDER - BICYCLE,2018-05-17T00:00:00,2018,May,Thursday,17,137,1,2018-05-17T00:00:00,2018,May,Thursday,17,137,8,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,FYXATION,RG,10,BLK,1000.0,STOLEN,20712,"{'type': 'Point', 'coordinates': (-79.44302071, 43.67066061)}"
-20742,2354,GO-2018909581,B&E,2018-05-19T00:00:00,2018,May,Saturday,19,139,12,2018-05-20T00:00:00,2018,May,Sunday,20,140,21,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,2017MEC PROV222,OT,14,BLK,3000.0,STOLEN,20713,"{'type': 'Point', 'coordinates': (-79.45119415, 43.662709910000004)}"
-20743,2450,GO-20189017291,THEFT UNDER - BICYCLE,2018-06-03T00:00:00,2018,June,Sunday,3,154,20,2018-06-04T00:00:00,2018,June,Monday,4,155,11,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,MIELE,CIRCLE,RC,14,BLU,500.0,STOLEN,20714,"{'type': 'Point', 'coordinates': (-79.45545625, 43.6648475)}"
-20744,2469,GO-20189017371,THEFT UNDER - BICYCLE,2018-06-04T00:00:00,2018,June,Monday,4,155,2,2018-06-04T00:00:00,2018,June,Monday,4,155,18,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,OT,MIXED TAPE,RG,7,GRY,695.0,STOLEN,20715,"{'type': 'Point', 'coordinates': (-79.44608819, 43.6690567)}"
-20745,2569,GO-20189018737,THEFT UNDER - BICYCLE,2018-06-08T00:00:00,2018,June,Friday,8,159,19,2018-06-14T00:00:00,2018,June,Thursday,14,165,19,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,OT,1,,582.0,STOLEN,20716,"{'type': 'Point', 'coordinates': (-79.44527553, 43.66696388)}"
-20746,2730,GO-20189020929,ASSAULT - RESIST/ PREVENT SEIZ,2018-07-01T00:00:00,2018,July,Sunday,1,182,1,2018-07-03T00:00:00,2018,July,Tuesday,3,184,9,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,QUICK 8 WOMEN'S,RG,21,BLU,520.0,STOLEN,20717,"{'type': 'Point', 'coordinates': (-79.4489465, 43.66969119)}"
-20747,2944,GO-20189023797,THEFT UNDER - BICYCLE,2018-07-24T00:00:00,2018,July,Tuesday,24,205,16,2018-07-24T00:00:00,2018,July,Tuesday,24,205,21,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,VECTOR,RG,21,BLU,0.0,STOLEN,20718,"{'type': 'Point', 'coordinates': (-79.4432673, 43.659902)}"
-20748,2961,GO-20189023933,THEFT UNDER - BICYCLE,2018-07-25T00:00:00,2018,July,Wednesday,25,206,17,2018-07-25T00:00:00,2018,July,Wednesday,25,206,21,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RG,7,GRY,200.0,STOLEN,20719,"{'type': 'Point', 'coordinates': (-79.44228046, 43.66898843)}"
-20749,2967,GO-20189023989,THEFT UNDER - BICYCLE,2018-07-26T00:00:00,2018,July,Thursday,26,207,1,2018-07-26T00:00:00,2018,July,Thursday,26,207,11,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BI,,RC,6,WHI,0.0,STOLEN,20720,"{'type': 'Point', 'coordinates': (-79.43970398, 43.65899036)}"
-20750,3046,GO-20189024778,THEFT UNDER - BICYCLE,2018-07-31T00:00:00,2018,July,Tuesday,31,212,1,2018-08-01T00:00:00,2018,August,Wednesday,1,213,16,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,ROPER,RG,9,BLK,870.0,STOLEN,20721,"{'type': 'Point', 'coordinates': (-79.44437729, 43.66235922)}"
-20751,24702,GO-2015894708,THEFT UNDER,2015-05-28T00:00:00,2015,May,Thursday,28,148,21,2015-05-29T00:00:00,2015,May,Friday,29,149,0,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,MT,6,PLE,50.0,STOLEN,20722,"{'type': 'Point', 'coordinates': (-79.43775386, 43.66866694)}"
-20752,12054,GO-20169008537,THEFT UNDER - BICYCLE,2016-06-23T00:00:00,2016,June,Thursday,23,175,18,2016-08-10T00:00:00,2016,August,Wednesday,10,223,16,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),Schools During Supervised Activity,Educational,CC,,MT,12,GRY,400.0,STOLEN,20723,"{'type': 'Point', 'coordinates': (-79.42025298, 43.66833916)}"
-20753,21194,GO-20171378027,THEFT OF EBIKE UNDER $5000,2017-07-30T00:00:00,2017,July,Sunday,30,211,5,2017-07-31T00:00:00,2017,July,Monday,31,212,21,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,E-BIKE,EL,0,BLK,500.0,STOLEN,20724,"{'type': 'Point', 'coordinates': (-79.4258929, 43.66898009)}"
-20754,21195,GO-20179011564,THEFT UNDER - BICYCLE,2017-08-02T00:00:00,2017,August,Wednesday,2,214,10,2017-08-02T00:00:00,2017,August,Wednesday,2,214,18,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,MT,7,RED,200.0,STOLEN,20725,"{'type': 'Point', 'coordinates': (-79.42898058, 43.67003204)}"
-20755,21349,GO-20189032339,THEFT UNDER,2018-09-27T00:00:00,2018,September,Thursday,27,270,20,2018-09-29T00:00:00,2018,September,Saturday,29,272,12,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,CODA SPORT,RG,9,OTH,700.0,STOLEN,20726,"{'type': 'Point', 'coordinates': (-79.42322751, 43.66562202)}"
-20756,21377,GO-2016998664,THEFT OF EBIKE UNDER $5000,2016-06-08T00:00:00,2016,June,Wednesday,8,160,17,2016-06-08T00:00:00,2016,June,Wednesday,8,160,20,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,OTHER,XPN,EL,1,BLK,900.0,STOLEN,20727,"{'type': 'Point', 'coordinates': (-79.44725452, 43.66881017)}"
-20757,21387,GO-20161110052,THEFT UNDER - BICYCLE,2016-06-25T00:00:00,2016,June,Saturday,25,177,8,2016-06-25T00:00:00,2016,June,Saturday,25,177,10,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GHOST,AMR LECTOR 7700,MT,33,BLK,4500.0,STOLEN,20728,"{'type': 'Point', 'coordinates': (-79.43623489, 43.66852851)}"
-20758,21413,GO-20161488459,B&E W'INTENT,2016-08-12T00:00:00,2016,August,Friday,12,225,15,2016-08-26T00:00:00,2016,August,Friday,26,239,7,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,,MT,12,BLK,,STOLEN,20729,"{'type': 'Point', 'coordinates': (-79.42348181, 43.66312967)}"
-20759,21428,GO-20161675391,THEFT UNDER - BICYCLE,2016-09-19T00:00:00,2016,September,Monday,19,263,16,2016-09-20T00:00:00,2016,September,Tuesday,20,264,16,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,GLOBE,OT,0,GRN,600.0,STOLEN,20730,"{'type': 'Point', 'coordinates': (-79.43048595, 43.66744926)}"
-20760,21437,GO-20169012211,THEFT UNDER,2016-10-10T00:00:00,2016,October,Monday,10,284,0,2016-10-17T00:00:00,2016,October,Monday,17,291,17,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,7.3,RG,21,BLK,700.0,STOLEN,20731,"{'type': 'Point', 'coordinates': (-79.42753228, 43.66652082)}"
-20761,21444,GO-20169013003,THEFT UNDER - BICYCLE,2016-11-03T00:00:00,2016,November,Thursday,3,308,17,2016-11-05T00:00:00,2016,November,Saturday,5,310,13,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KO,,MT,20,ONG,579.0,STOLEN,20732,"{'type': 'Point', 'coordinates': (-79.4489465, 43.66969119)}"
-20762,21446,GO-20169013304,THEFT UNDER - BICYCLE,2016-11-11T00:00:00,2016,November,Friday,11,316,13,2016-11-12T00:00:00,2016,November,Saturday,12,317,13,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,UK,725,RC,1,WHI,1000.0,STOLEN,20733,"{'type': 'Point', 'coordinates': (-79.42118785, 43.67077554)}"
-20763,21456,GO-20169014732,THEFT UNDER - BICYCLE,2016-12-16T00:00:00,2016,December,Friday,16,351,15,2016-12-16T00:00:00,2016,December,Friday,16,351,15,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,OT,HELLO KITTY,OT,1,PNK,380.0,STOLEN,20734,"{'type': 'Point', 'coordinates': (-79.44826499, 43.6715576)}"
-20764,21467,GO-20179002723,THEFT UNDER - BICYCLE,2016-12-30T00:00:00,2016,December,Friday,30,365,20,2017-03-03T00:00:00,2017,March,Friday,3,62,12,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,,RG,10,BLK,800.0,STOLEN,20735,"{'type': 'Point', 'coordinates': (-79.43775386, 43.66866694)}"
-20765,21478,GO-2017818304,B&E,2017-05-06T00:00:00,2017,May,Saturday,6,126,17,2017-05-09T00:00:00,2017,May,Tuesday,9,129,20,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,CADENT 24,MT,7,REDYEL,452.0,STOLEN,20736,"{'type': 'Point', 'coordinates': (-79.42016264, 43.66811884)}"
-20766,21492,GO-20179007644,THEFT UNDER - BICYCLE,2017-06-07T00:00:00,2017,June,Wednesday,7,158,1,2017-06-07T00:00:00,2017,June,Wednesday,7,158,11,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,DOWNTOWN EX,RG,8,YEL,1000.0,STOLEN,20737,"{'type': 'Point', 'coordinates': (-79.43047773, 43.66431054)}"
-20767,21499,GO-20171057791,THEFT UNDER - BICYCLE,2017-06-13T00:00:00,2017,June,Tuesday,13,164,22,2017-06-14T00:00:00,2017,June,Wednesday,14,165,10,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,MT,7,BLK,400.0,STOLEN,20738,"{'type': 'Point', 'coordinates': (-79.43047773, 43.66431054)}"
-20768,21527,GO-20189021998,THEFT UNDER - BICYCLE,2018-07-09T00:00:00,2018,July,Monday,9,190,18,2018-07-11T00:00:00,2018,July,Wednesday,11,192,8,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,OT,PANAMAO,RG,24,BLK,1200.0,STOLEN,20739,"{'type': 'Point', 'coordinates': (-79.45106151, 43.67109779)}"
-20769,21552,GO-2020164267,B&E,2019-12-30T00:00:00,2019,December,Monday,30,364,12,2020-01-24T00:00:00,2020,January,Friday,24,24,20,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,CANNONDALE,CAPO,TO,1,BLKWHI,1500.0,STOLEN,20740,"{'type': 'Point', 'coordinates': (-79.43313787, 43.67071462)}"
-20770,21569,GO-20201368426,THEFT UNDER - BICYCLE,2020-07-22T00:00:00,2020,July,Wednesday,22,204,19,2020-07-23T00:00:00,2020,July,Thursday,23,205,9,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MASI,UNORISER,OT,1,ONGBLU,800.0,STOLEN,20741,"{'type': 'Point', 'coordinates': (-79.44920947, 43.67041868)}"
-20771,21572,GO-20209019256,THEFT UNDER,2020-08-03T00:00:00,2020,August,Monday,3,216,6,2020-08-03T00:00:00,2020,August,Monday,3,216,13,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,UK,SURLY,RG,1,BLK,700.0,STOLEN,20742,"{'type': 'Point', 'coordinates': (-79.44340776, 43.66537166)}"
-20772,21574,GO-20149000575,THEFT UNDER,2014-01-09T00:00:00,2014,January,Thursday,9,9,14,2014-01-19T00:00:00,2014,January,Sunday,19,19,14,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GT,AGGRESSOR,MT,21,BLK,350.0,STOLEN,20743,"{'type': 'Point', 'coordinates': (-79.44851498, 43.66244024)}"
-20773,21578,GO-20149003582,THEFT UNDER,2014-05-24T00:00:00,2014,May,Saturday,24,144,17,2014-05-25T00:00:00,2014,May,Sunday,25,145,15,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,BOWERY FMX,RC,1,WHI,1395.0,STOLEN,20744,"{'type': 'Point', 'coordinates': (-79.43863138, 43.6592125)}"
-20774,21596,GO-20149006739,THEFT UNDER,2014-09-08T00:00:00,2014,September,Monday,8,251,1,2014-09-09T00:00:00,2014,September,Tuesday,9,252,21,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,KH,XCAPE,RG,24,BLK,600.0,STOLEN,20745,"{'type': 'Point', 'coordinates': (-79.44642226, 43.66672554)}"
-20775,21609,GO-20159002788,THEFT UNDER,2015-05-15T00:00:00,2015,May,Friday,15,135,14,2015-05-16T00:00:00,2015,May,Saturday,16,136,11,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,UK,ARMINIUS SUPERW,SC,32,BLK,2938.0,STOLEN,20746,"{'type': 'Point', 'coordinates': (-79.44569863000001, 43.66489681)}"
-20776,21611,GO-2015889266,THEFT UNDER,2015-05-27T00:00:00,2015,May,Wednesday,27,147,17,2015-05-28T00:00:00,2015,May,Thursday,28,148,13,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,MT,5,GRN,,STOLEN,20747,"{'type': 'Point', 'coordinates': (-79.44300606, 43.65922277)}"
-20777,21612,GO-2015889266,THEFT UNDER,2015-05-27T00:00:00,2015,May,Wednesday,27,147,17,2015-05-28T00:00:00,2015,May,Thursday,28,148,13,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,OT,2,BLU,,STOLEN,20748,"{'type': 'Point', 'coordinates': (-79.44300606, 43.65922277)}"
-20778,21613,GO-20151042421,THEFT UNDER,2015-06-20T00:00:00,2015,June,Saturday,20,171,22,2015-06-21T00:00:00,2015,June,Sunday,21,172,9,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,KONA,MINUTE,OT,7,DBL,3000.0,STOLEN,20749,"{'type': 'Point', 'coordinates': (-79.45411957, 43.6651244)}"
-20779,21618,GO-20159004531,THEFT UNDER,2015-07-14T00:00:00,2015,July,Tuesday,14,195,7,2015-07-14T00:00:00,2015,July,Tuesday,14,195,10,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,,RG,6,GRY,100.0,STOLEN,20750,"{'type': 'Point', 'coordinates': (-79.44161041, 43.66107002)}"
-20780,21626,GO-20159009219,THEFT UNDER,2015-10-11T00:00:00,2015,October,Sunday,11,284,4,2015-11-01T00:00:00,2015,November,Sunday,1,305,1,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),Unknown,Other,RA,,RG,1,BLK,520.0,STOLEN,20751,"{'type': 'Point', 'coordinates': (-79.43913557, 43.65909813)}"
-20781,21641,GO-2016724664,THEFT UNDER - BICYCLE,2016-04-14T00:00:00,2016,April,Thursday,14,105,18,2016-04-28T00:00:00,2016,April,Thursday,28,119,12,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,OPUS,CLASSICO,OT,6,BLK,550.0,STOLEN,20752,"{'type': 'Point', 'coordinates': (-79.44642226, 43.66672554)}"
-20782,7196,GO-20209022525,THEFT UNDER - BICYCLE,2020-09-06T00:00:00,2020,September,Sunday,6,250,23,2020-09-07T00:00:00,2020,September,Monday,7,251,11,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,EM,HORNET,EL,30,BLU,1600.0,STOLEN,21004,"{'type': 'Point', 'coordinates': (-79.4007248, 43.66981528)}"
-20783,21642,GO-2016724664,THEFT UNDER - BICYCLE,2016-04-14T00:00:00,2016,April,Thursday,14,105,18,2016-04-28T00:00:00,2016,April,Thursday,28,119,12,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,TREK,JET 20,OT,1,ONG,340.0,STOLEN,20753,"{'type': 'Point', 'coordinates': (-79.44642226, 43.66672554)}"
-20784,21646,GO-20161095200,THEFT UNDER - BICYCLE,2016-06-23T00:00:00,2016,June,Thursday,23,175,3,2016-06-23T00:00:00,2016,June,Thursday,23,175,7,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,UNKNOWN,OT,18,WHI,1000.0,STOLEN,20754,"{'type': 'Point', 'coordinates': (-79.44770883, 43.65977965)}"
-20785,21652,GO-20169009161,THEFT UNDER,2016-08-18T00:00:00,2016,August,Thursday,18,231,19,2016-08-21T00:00:00,2016,August,Sunday,21,234,10,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,AV BMX,BM,1,BLK,500.0,STOLEN,20755,"{'type': 'Point', 'coordinates': (-79.44642226, 43.66672554)}"
-20786,21655,GO-20169011203,THEFT UNDER - BICYCLE,2016-09-26T00:00:00,2016,September,Monday,26,270,22,2016-09-27T00:00:00,2016,September,Tuesday,27,271,20,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,BIRDIE,RG,5,BLU,450.0,STOLEN,20756,"{'type': 'Point', 'coordinates': (-79.44036912, 43.66316381000001)}"
-20787,21669,GO-20179005937,THEFT UNDER - BICYCLE,2017-05-01T00:00:00,2017,May,Monday,1,121,19,2017-05-08T00:00:00,2017,May,Monday,8,128,19,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,TRI-CROSS,RC,18,BLK,999.0,STOLEN,20757,"{'type': 'Point', 'coordinates': (-79.45349123, 43.66135753)}"
-20788,21670,GO-20179006216,THEFT UNDER - BICYCLE,2017-05-10T00:00:00,2017,May,Wednesday,10,130,23,2017-05-12T00:00:00,2017,May,Friday,12,132,17,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,BI,,RE,8,ONG,0.0,STOLEN,20758,"{'type': 'Point', 'coordinates': (-79.44036912, 43.66316381000001)}"
-20789,21674,GO-20179008819,THEFT UNDER - BICYCLE,2017-06-20T00:00:00,2017,June,Tuesday,20,171,17,2017-06-24T00:00:00,2017,June,Saturday,24,175,13,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,MODENA,RG,21,WHI,350.0,STOLEN,20759,"{'type': 'Point', 'coordinates': (-79.44569863000001, 43.66489681)}"
-20790,21690,GO-20179020569,THEFT UNDER - BICYCLE,2017-11-25T00:00:00,2017,November,Saturday,25,329,2,2017-11-25T00:00:00,2017,November,Saturday,25,329,22,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,MT,24,,800.0,STOLEN,20760,"{'type': 'Point', 'coordinates': (-79.43663905, 43.66296704)}"
-20791,21693,GO-20189001128,THEFT UNDER - BICYCLE,2018-01-11T00:00:00,2018,January,Thursday,11,11,12,2018-01-13T00:00:00,2018,January,Saturday,13,13,18,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,PARATROOPER PRO,MT,27,BLK,1479.0,STOLEN,20761,"{'type': 'Point', 'coordinates': (-79.43640202, 43.65965002)}"
-20792,21696,GO-2018719738,THEFT UNDER,2018-04-21T00:00:00,2018,April,Saturday,21,111,23,2018-04-22T00:00:00,2018,April,Sunday,22,112,14,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,UNK,RC,10,BLK,200.0,STOLEN,20762,"{'type': 'Point', 'coordinates': (-79.45655408, 43.66456999)}"
-20793,21700,GO-20189017746,THEFT UNDER - BICYCLE,2018-06-07T00:00:00,2018,June,Thursday,7,158,12,2018-06-07T00:00:00,2018,June,Thursday,7,158,12,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RA,CADENT I8,TO,8,BLK,1000.0,STOLEN,20763,"{'type': 'Point', 'coordinates': (-79.45188185, 43.66075675)}"
-20794,21718,GO-20189032086,THEFT UNDER - BICYCLE,2018-09-19T00:00:00,2018,September,Wednesday,19,262,20,2018-09-27T00:00:00,2018,September,Thursday,27,270,12,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RG,5,BLK,120.0,STOLEN,20764,"{'type': 'Point', 'coordinates': (-79.44228046, 43.66898843)}"
-20795,21721,GO-20189040567,THEFT UNDER - BICYCLE,2018-12-02T00:00:00,2018,December,Sunday,2,336,19,2018-12-02T00:00:00,2018,December,Sunday,2,336,20,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,MILANO HYBRID,OT,18,BLK,550.0,STOLEN,20765,"{'type': 'Point', 'coordinates': (-79.44340776, 43.66537166)}"
-20796,21727,GO-20199011673,THEFT UNDER,2019-04-11T00:00:00,2019,April,Thursday,11,101,20,2019-04-12T00:00:00,2019,April,Friday,12,102,20,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,UK,PRIME ALLOY WHI,OT,1,WHI,667.0,STOLEN,20766,"{'type': 'Point', 'coordinates': (-79.44569863000001, 43.66489681)}"
-20797,21728,GO-20199014524,THEFT UNDER,2019-05-09T00:00:00,2019,May,Thursday,9,129,2,2019-05-09T00:00:00,2019,May,Thursday,9,129,18,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,NO,THRESHOLD,RC,1,TRQ,1600.0,STOLEN,20767,"{'type': 'Point', 'coordinates': (-79.44642226, 43.66672554)}"
-20798,21737,GO-20199017284,THEFT UNDER,2019-06-03T00:00:00,2019,June,Monday,3,154,16,2019-06-03T00:00:00,2019,June,Monday,3,154,16,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SU,SUPERCYCLE 1210,RG,10,RED,0.0,STOLEN,20768,"{'type': 'Point', 'coordinates': (-79.44234715, 43.66277184)}"
-20799,21753,GO-20199026275,THEFT UNDER,2019-08-15T00:00:00,2019,August,Thursday,15,227,6,2019-08-15T00:00:00,2019,August,Thursday,15,227,8,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,BLACK VORTEX,OT,1,BLK,640.0,STOLEN,20769,"{'type': 'Point', 'coordinates': (-79.44228046, 43.66898843)}"
-20800,21754,GO-20199026275,THEFT UNDER,2019-08-15T00:00:00,2019,August,Thursday,15,227,6,2019-08-15T00:00:00,2019,August,Thursday,15,227,8,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GENESIS,VORTEX,OT,1,BLK,640.0,STOLEN,20770,"{'type': 'Point', 'coordinates': (-79.44228046, 43.66898843)}"
-20801,21769,GO-2020113190,THEFT UNDER,2019-10-15T00:00:00,2019,October,Tuesday,15,288,0,2020-01-17T00:00:00,2020,January,Friday,17,17,8,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,TREK,DOMANE,MT,18,WHI,1186.0,STOLEN,20771,"{'type': 'Point', 'coordinates': (-79.44569863000001, 43.66489681)}"
-20802,21771,GO-20209010833,THEFT UNDER,2020-04-06T00:00:00,2020,April,Monday,6,97,20,2020-04-10T00:00:00,2020,April,Friday,10,101,12,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,AURORA,TO,18,BGE,800.0,STOLEN,20772,"{'type': 'Point', 'coordinates': (-79.45188185, 43.66075675)}"
-20803,21776,GO-20209012811,THEFT UNDER,2020-05-09T00:00:00,2020,May,Saturday,9,130,20,2020-05-10T00:00:00,2020,May,Sunday,10,131,9,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,ASPEN,MT,24,LBL,700.0,STOLEN,20773,"{'type': 'Point', 'coordinates': (-79.438146, 43.666428280000005)}"
-20804,21777,GO-20209012811,THEFT UNDER,2020-05-09T00:00:00,2020,May,Saturday,9,130,20,2020-05-10T00:00:00,2020,May,Sunday,10,131,9,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,RANGER,MT,21,RED,300.0,STOLEN,20774,"{'type': 'Point', 'coordinates': (-79.438146, 43.666428280000005)}"
-20805,21779,GO-2020937458,THEFT UNDER - BICYCLE,2020-05-19T00:00:00,2020,May,Tuesday,19,140,8,2020-05-21T00:00:00,2020,May,Thursday,21,142,13,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ZZZ,MOUTAIN BIKE,MT,7,SIL,500.0,STOLEN,20775,"{'type': 'Point', 'coordinates': (-79.44569863000001, 43.66489681)}"
-20806,21781,GO-20209013702,THEFT UNDER,2020-05-21T00:00:00,2020,May,Thursday,21,142,22,2020-05-22T00:00:00,2020,May,Friday,22,143,13,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Group Homes (Non-Profit, Halfway House, Social Agency)",Other,SC,GTX-2 MEN'S HYB,RG,21,BLK,550.0,STOLEN,20776,"{'type': 'Point', 'coordinates': (-79.44926545, 43.66417251)}"
-20807,21783,GO-20201011446,THEFT UNDER - BICYCLE,2020-06-01T00:00:00,2020,June,Monday,1,153,15,2020-06-01T00:00:00,2020,June,Monday,1,153,20,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,ROADMASTER,,OT,1,BLU,650.0,STOLEN,20777,"{'type': 'Point', 'coordinates': (-79.44689484, 43.65747686)}"
-20808,21794,GO-20149003046,THEFT UNDER,2014-04-19T00:00:00,2014,April,Saturday,19,109,12,2014-04-28T00:00:00,2014,April,Monday,28,118,12,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BI,STRADA LX 12 SP,RG,12,WHI,0.0,STOLEN,20778,"{'type': 'Point', 'coordinates': (-79.42322914, 43.6625099)}"
-20809,21807,GO-20149004990,THEFT UNDER,2014-07-14T00:00:00,2014,July,Monday,14,195,7,2014-07-14T00:00:00,2014,July,Monday,14,195,19,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,HARDROCK,MT,24,BLK,800.0,STOLEN,20779,"{'type': 'Point', 'coordinates': (-79.44920947, 43.67041868)}"
-20810,21813,GO-20142628218,THEFT UNDER,2014-08-02T00:00:00,2014,August,Saturday,2,214,20,2014-08-03T00:00:00,2014,August,Sunday,3,215,12,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,OT,14,ONGWHI,,STOLEN,20780,"{'type': 'Point', 'coordinates': (-79.42929364, 43.66770575)}"
-20811,21822,GO-20149006079,THEFT UNDER,2014-08-15T00:00:00,2014,August,Friday,15,227,20,2014-08-18T00:00:00,2014,August,Monday,18,230,21,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RA,,RG,30,BLU,300.0,STOLEN,20781,"{'type': 'Point', 'coordinates': (-79.42411612, 43.66460668)}"
-20812,21845,GO-201553386,THEFT UNDER,2015-01-01T00:00:00,2015,January,Thursday,1,1,0,2015-01-10T00:00:00,2015,January,Saturday,10,10,9,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,CYPRESS,OT,21,BLU,500.0,STOLEN,20782,"{'type': 'Point', 'coordinates': (-79.42650199, 43.66408514)}"
-20813,21846,GO-20159000186,THEFT UNDER,2015-01-11T00:00:00,2015,January,Sunday,11,11,17,2015-01-11T00:00:00,2015,January,Sunday,11,11,17,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,PE,,MT,18,PLE,0.0,STOLEN,20783,"{'type': 'Point', 'coordinates': (-79.43830844, 43.67370843)}"
-20814,21867,GO-20159003263,THEFT UNDER,2015-05-30T00:00:00,2015,May,Saturday,30,150,0,2015-06-01T00:00:00,2015,June,Monday,1,152,20,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RA,MOUNTAIN BIKE,MT,10,DGR,500.0,STOLEN,20784,"{'type': 'Point', 'coordinates': (-79.44920947, 43.67041868)}"
-20815,21871,GO-2015972708,THEFT UNDER,2015-05-28T00:00:00,2015,May,Thursday,28,148,13,2015-06-10T00:00:00,2015,June,Wednesday,10,161,13,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,SC,3,RED,1400.0,STOLEN,20785,"{'type': 'Point', 'coordinates': (-79.42322914, 43.6625099)}"
-20816,21893,GO-20151207088,THEFT UNDER,2015-07-07T00:00:00,2015,July,Tuesday,7,188,8,2015-07-16T00:00:00,2015,July,Thursday,16,197,12,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MIELE,,RG,18,BLKGRY,70.0,STOLEN,20786,"{'type': 'Point', 'coordinates': (-79.42562006, 43.66198485)}"
-20817,21906,GO-20159005474,THEFT UNDER,2015-08-08T00:00:00,2015,August,Saturday,8,220,12,2015-08-08T00:00:00,2015,August,Saturday,8,220,18,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,1,GRN,600.0,STOLEN,20787,"{'type': 'Point', 'coordinates': (-79.42801462, 43.661480430000005)}"
-20818,21907,GO-20159005513,THEFT UNDER,2015-06-16T00:00:00,2015,June,Tuesday,16,167,12,2015-08-08T00:00:00,2015,August,Saturday,8,220,14,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,CITYGLIDE,OT,8,BLK,500.0,STOLEN,20788,"{'type': 'Point', 'coordinates': (-79.43899694, 43.6684649)}"
-20819,21920,GO-20159006619,THEFT UNDER,2015-09-01T00:00:00,2015,September,Tuesday,1,244,16,2015-09-01T00:00:00,2015,September,Tuesday,1,244,16,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,UK,ROCKHOPPER,MT,10,BLU,400.0,STOLEN,20789,"{'type': 'Point', 'coordinates': (-79.4208938, 43.67001212)}"
-20820,21929,GO-20159008259,THEFT UNDER,2015-10-05T00:00:00,2015,October,Monday,5,278,23,2015-10-06T00:00:00,2015,October,Tuesday,6,279,17,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,DUTCHI 3 SPEED,TO,3,BLU,500.0,STOLEN,20790,"{'type': 'Point', 'coordinates': (-79.4220205, 43.6627783)}"
-20821,21933,GO-20151779479,B&E W'INTENT,2015-10-15T00:00:00,2015,October,Thursday,15,288,7,2015-10-15T00:00:00,2015,October,Thursday,15,288,20,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,RUBY ELITE,RC,12,,2300.0,STOLEN,20791,"{'type': 'Point', 'coordinates': (-79.43328, 43.66460059)}"
-20822,21947,GO-20169002340,THEFT UNDER - BICYCLE,2016-03-06T00:00:00,2016,March,Sunday,6,66,16,2016-03-14T00:00:00,2016,March,Monday,14,74,13,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,TREK,MT,21,DGR,440.0,STOLEN,20792,"{'type': 'Point', 'coordinates': (-79.42118785, 43.67077554)}"
-20823,21967,GO-20169005011,THEFT UNDER - BICYCLE,2016-05-26T00:00:00,2016,May,Thursday,26,147,9,2016-05-26T00:00:00,2016,May,Thursday,26,147,21,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,TEAM FRAME,BM,1,LBL,1000.0,STOLEN,20793,"{'type': 'Point', 'coordinates': (-79.44920947, 43.67041868)}"
-20824,21969,GO-20201494662,MISCHIEF - INTERFERE W-PROP,2020-08-10T00:00:00,2020,August,Monday,10,223,15,2020-08-10T00:00:00,2020,August,Monday,10,223,15,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,TO,5,,,STOLEN,20794,"{'type': 'Point', 'coordinates': (-79.45335604, 43.66332053000001)}"
-20825,21979,GO-20201844815,THEFT UNDER - BICYCLE,2020-09-16T00:00:00,2020,September,Wednesday,16,260,20,2020-09-28T00:00:00,2020,September,Monday,28,272,16,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,MT,1,,500.0,STOLEN,20795,"{'type': 'Point', 'coordinates': (-79.44642226, 43.66672554)}"
-20826,21981,GO-20209024768,THEFT UNDER,2020-09-27T00:00:00,2020,September,Sunday,27,271,21,2020-09-28T00:00:00,2020,September,Monday,28,272,11,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,OT,1984 RACE BIKE,RC,12,RED,800.0,STOLEN,20796,"{'type': 'Point', 'coordinates': (-79.44569863000001, 43.66489681)}"
-20827,21984,GO-20201924911,THEFT OF EBIKE UNDER $5000,2020-10-09T00:00:00,2020,October,Friday,9,283,20,2020-10-10T00:00:00,2020,October,Saturday,10,284,12,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,AMEGO INFINITE,EL,8,GRY,2500.0,STOLEN,20797,"{'type': 'Point', 'coordinates': (-79.45238466, 43.66549693)}"
-20828,21986,GO-20209026727,THEFT UNDER,2020-10-16T00:00:00,2020,October,Friday,16,290,17,2020-10-16T00:00:00,2020,October,Friday,16,290,17,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,TITAN 10,RG,10,WHI,100.0,STOLEN,20798,"{'type': 'Point', 'coordinates': (-79.44569863000001, 43.66489681)}"
-20829,21991,GO-20202225150,THEFT UNDER,2020-11-19T00:00:00,2020,November,Thursday,19,324,10,2020-11-24T00:00:00,2020,November,Tuesday,24,329,10,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,EMONDA S5WSD,RG,15,BLK,3000.0,STOLEN,20799,"{'type': 'Point', 'coordinates': (-79.44725452, 43.66881017)}"
-20830,23798,GO-20209016300,THEFT UNDER,2020-06-26T00:00:00,2020,June,Friday,26,178,19,2020-06-27T00:00:00,2020,June,Saturday,27,179,12,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),Ttc Subway Station,Transit,OT,,RG,7,LBL,0.0,STOLEN,20800,"{'type': 'Point', 'coordinates': (-79.42801462, 43.661480430000005)}"
-20831,23803,GO-20209016916,THEFT UNDER,2020-07-04T00:00:00,2020,July,Saturday,4,186,21,2020-07-05T00:00:00,2020,July,Sunday,5,187,19,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,,MT,5,RED,0.0,STOLEN,20801,"{'type': 'Point', 'coordinates': (-79.42624517, 43.66983944)}"
-20832,23859,GO-20209028870,THEFT UNDER,2020-11-04T00:00:00,2020,November,Wednesday,4,309,13,2020-11-06T00:00:00,2020,November,Friday,6,311,15,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,LADIES,TO,3,CRM,800.0,STOLEN,20802,"{'type': 'Point', 'coordinates': (-79.42597851, 43.6691417)}"
-20833,23997,GO-20189036324,THEFT UNDER - BICYCLE,2018-10-29T00:00:00,2018,October,Monday,29,302,23,2018-10-30T00:00:00,2018,October,Tuesday,30,303,23,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,FIXIE SOLOIST,RG,1,RED,508.0,STOLEN,20803,"{'type': 'Point', 'coordinates': (-79.43272148, 43.66970208)}"
-20834,24062,GO-20191330298,B&E W'INTENT,2019-07-05T00:00:00,2019,July,Friday,5,186,23,2019-07-16T00:00:00,2019,July,Tuesday,16,197,8,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RALEIGH,,RG,5,BRN,300.0,STOLEN,20804,"{'type': 'Point', 'coordinates': (-79.4328876, 43.66693366)}"
-20835,24067,GO-20199022751,THEFT UNDER,2019-07-17T00:00:00,2019,July,Wednesday,17,198,3,2019-07-18T00:00:00,2019,July,Thursday,18,199,8,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,3,TRQ,0.0,STOLEN,20805,"{'type': 'Point', 'coordinates': (-79.43081834000002, 43.66199128)}"
-20836,24096,GO-20199028696,THEFT UNDER - BICYCLE,2019-09-03T00:00:00,2019,September,Tuesday,3,246,12,2019-09-04T00:00:00,2019,September,Wednesday,4,247,10,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,PURPLE,RC,1,PLE,0.0,STOLEN,20806,"{'type': 'Point', 'coordinates': (-79.42963126, 43.66224427)}"
-20837,24145,GO-20209002424,THEFT UNDER,2019-11-28T00:00:00,2019,November,Thursday,28,332,22,2020-01-21T00:00:00,2020,January,Tuesday,21,21,14,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),Go Train,Transit,BA,,MT,36,,507.0,STOLEN,20807,"{'type': 'Point', 'coordinates': (-79.42562006, 43.66198485)}"
-20838,24200,GO-20171377660,THEFT OF EBIKE UNDER $5000,2017-07-27T00:00:00,2017,July,Thursday,27,208,22,2017-07-31T00:00:00,2017,July,Monday,31,212,20,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,EMMO,URBAN S,EL,1,BLK,1200.0,STOLEN,20808,"{'type': 'Point', 'coordinates': (-79.42839364, 43.66861488)}"
-20839,24201,GO-20171405487,THEFT UNDER - BICYCLE,2017-08-04T00:00:00,2017,August,Friday,4,216,20,2017-08-04T00:00:00,2017,August,Friday,4,216,20,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KHS,FLIGHT,RG,1,GRY,500.0,STOLEN,20809,"{'type': 'Point', 'coordinates': (-79.42118785, 43.67077554)}"
-20840,24265,GO-20179021069,B&E,2017-12-01T00:00:00,2017,December,Friday,1,335,20,2017-12-02T00:00:00,2017,December,Saturday,2,336,10,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,ATX890,MT,21,SIL,700.0,STOLEN,20810,"{'type': 'Point', 'coordinates': (-79.43048595, 43.66744926)}"
-20841,24266,GO-20179021069,B&E,2017-12-01T00:00:00,2017,December,Friday,1,335,20,2017-12-02T00:00:00,2017,December,Saturday,2,336,10,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,7,BLU,600.0,STOLEN,20811,"{'type': 'Point', 'coordinates': (-79.43048595, 43.66744926)}"
-20842,24285,GO-2018488746,B&E,2018-03-17T00:00:00,2018,March,Saturday,17,76,18,2018-03-17T00:00:00,2018,March,Saturday,17,76,19,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,,MT,5,WHIRED,200.0,STOLEN,20812,"{'type': 'Point', 'coordinates': (-79.43541193, 43.66325041)}"
-20843,24328,GO-20189021084,THEFT UNDER - BICYCLE,2018-07-03T00:00:00,2018,July,Tuesday,3,184,19,2018-07-03T00:00:00,2018,July,Tuesday,3,184,21,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,MT220,MT,21,RED,190.0,STOLEN,20813,"{'type': 'Point', 'coordinates': (-79.4220205, 43.6627783)}"
-20844,24334,GO-20181242649,THEFT UNDER - BICYCLE,2018-07-04T00:00:00,2018,July,Wednesday,4,185,9,2018-07-08T00:00:00,2018,July,Sunday,8,189,13,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,,MT,7,GRYWHI,350.0,STOLEN,20814,"{'type': 'Point', 'coordinates': (-79.43532635000001, 43.65988369)}"
-20845,12184,GO-20161505319,PROPERTY - FOUND,2016-08-25T00:00:00,2016,August,Thursday,25,238,10,2016-08-25T00:00:00,2016,August,Thursday,25,238,10,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,ORION,RG,21,BLK,300.0,UNKNOWN,20815,"{'type': 'Point', 'coordinates': (-79.43163294, 43.66066113)}"
-20846,24719,GO-20159004232,THEFT UNDER,2015-07-05T00:00:00,2015,July,Sunday,5,186,2,2015-07-06T00:00:00,2015,July,Monday,6,187,19,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,CUSTOM,RG,8,SIL,300.0,STOLEN,20816,"{'type': 'Point', 'coordinates': (-79.42025298, 43.66833916)}"
-20847,24720,GO-20159004232,THEFT UNDER,2015-07-05T00:00:00,2015,July,Sunday,5,186,2,2015-07-06T00:00:00,2015,July,Monday,6,187,19,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,DON'T KNOW,MT,6,LBL,200.0,STOLEN,20817,"{'type': 'Point', 'coordinates': (-79.42025298, 43.66833916)}"
-20848,24723,GO-20159004360,THEFT UNDER,2015-07-09T00:00:00,2015,July,Thursday,9,190,21,2015-07-09T00:00:00,2015,July,Thursday,9,190,21,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,,RG,24,LGR,450.0,STOLEN,20818,"{'type': 'Point', 'coordinates': (-79.42522201, 43.66733406)}"
-20849,24724,GO-20159004411,THEFT UNDER,2015-07-09T00:00:00,2015,July,Thursday,9,190,10,2015-07-11T00:00:00,2015,July,Saturday,11,192,10,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,OT,1,GRN,500.0,STOLEN,20819,"{'type': 'Point', 'coordinates': (-79.43500883, 43.66556554)}"
-20850,24735,GO-20159005686,THEFT UNDER,2015-08-11T00:00:00,2015,August,Tuesday,11,223,9,2015-08-12T00:00:00,2015,August,Wednesday,12,224,12,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,,ROYAL M,RG,6,BLK,200.0,STOLEN,20820,"{'type': 'Point', 'coordinates': (-79.42442078, 43.66537972)}"
-20851,24744,GO-20159006355,THEFT UNDER,2015-08-24T00:00:00,2015,August,Monday,24,236,16,2015-08-24T00:00:00,2015,August,Monday,24,236,16,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MA,MUIRWOODS,MT,18,BLK,1000.0,STOLEN,20821,"{'type': 'Point', 'coordinates': (-79.42568981, 43.66844642)}"
-20852,24769,GO-20159009379,THEFT UNDER,2015-11-03T00:00:00,2015,November,Tuesday,3,307,21,2015-11-04T00:00:00,2015,November,Wednesday,4,308,22,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,VICE,MT,18,,0.0,STOLEN,20822,"{'type': 'Point', 'coordinates': (-79.42657247, 43.67059555)}"
-20853,25008,GO-2015417179,THEFT UNDER,2015-03-10T00:00:00,2015,March,Tuesday,10,69,22,2015-03-11T00:00:00,2015,March,Wednesday,11,70,17,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,,MT,1,BLK,1200.0,STOLEN,20823,"{'type': 'Point', 'coordinates': (-79.43811239, 43.66362216)}"
-20854,25024,GO-20151123213,THEFT UNDER,2015-07-03T00:00:00,2015,July,Friday,3,184,16,2015-07-03T00:00:00,2015,July,Friday,3,184,23,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,CUSTOM,RG,1,BLK,1000.0,STOLEN,20824,"{'type': 'Point', 'coordinates': (-79.45411957, 43.6651244)}"
-20855,25028,GO-20159004700,THEFT UNDER,2015-07-19T00:00:00,2015,July,Sunday,19,200,1,2015-07-19T00:00:00,2015,July,Sunday,19,200,20,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,OT,ALLEZ ELITE,RC,10,BLK,1100.0,STOLEN,20825,"{'type': 'Point', 'coordinates': (-79.44642226, 43.66672554)}"
-20856,25034,GO-20151846402,THEFT UNDER,2015-10-26T00:00:00,2015,October,Monday,26,299,15,2015-10-27T00:00:00,2015,October,Tuesday,27,300,10,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,,EL,3,GRN,1500.0,STOLEN,20826,"{'type': 'Point', 'coordinates': (-79.44527553, 43.66696388)}"
-20857,25042,GO-2016515762,THEFT UNDER - BICYCLE,2016-03-12T00:00:00,2016,March,Saturday,12,72,15,2016-03-26T00:00:00,2016,March,Saturday,26,86,15,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MARIN OR MARINO,HAMILTON 29ER,OT,2,BLK,630.0,STOLEN,20827,"{'type': 'Point', 'coordinates': (-79.44260195, 43.66087043000001)}"
-20858,25056,GO-20169009996,THEFT UNDER,2016-09-05T00:00:00,2016,September,Monday,5,249,18,2016-09-05T00:00:00,2016,September,Monday,5,249,20,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,TO,7,LGR,600.0,STOLEN,20828,"{'type': 'Point', 'coordinates': (-79.44161041, 43.66107002)}"
-20859,25059,GO-20169010422,THEFT UNDER - BICYCLE,2016-08-11T00:00:00,2016,August,Thursday,11,224,17,2016-09-14T00:00:00,2016,September,Wednesday,14,258,17,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,BLK,1200.0,STOLEN,20829,"{'type': 'Point', 'coordinates': (-79.44569863000001, 43.66489681)}"
-20860,25067,GO-20179002086,THEFT UNDER - BICYCLE,2017-02-16T00:00:00,2017,February,Thursday,16,47,19,2017-02-17T00:00:00,2017,February,Friday,17,48,10,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RA,,RG,10,RED,200.0,STOLEN,20830,"{'type': 'Point', 'coordinates': (-79.45238466, 43.66549693)}"
-20861,25069,GO-20179002367,THEFT UNDER,2017-02-22T00:00:00,2017,February,Wednesday,22,53,11,2017-02-23T00:00:00,2017,February,Thursday,23,54,10,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Group Homes (Non-Profit, Halfway House, Social Agency)",Other,OT,EAGLE,SC,32,BLK,2000.0,STOLEN,20831,"{'type': 'Point', 'coordinates': (-79.44926545, 43.66417251)}"
-20862,25080,GO-20179005937,THEFT UNDER - BICYCLE,2017-05-01T00:00:00,2017,May,Monday,1,121,19,2017-05-08T00:00:00,2017,May,Monday,8,128,19,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,TRI-CROSS COMP,RC,18,BLK,1000.0,STOLEN,20832,"{'type': 'Point', 'coordinates': (-79.45349123, 43.66135753)}"
-20863,25087,GO-20179009557,THEFT UNDER - BICYCLE,2017-07-06T00:00:00,2017,July,Thursday,6,187,9,2017-07-07T00:00:00,2017,July,Friday,7,188,3,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,TRANSFER 20,MT,24,LGR,700.0,STOLEN,20833,"{'type': 'Point', 'coordinates': (-79.44437729, 43.66235922)}"
-20864,25088,GO-20179009982,THEFT UNDER - BICYCLE,2017-07-10T00:00:00,2017,July,Monday,10,191,20,2017-07-11T00:00:00,2017,July,Tuesday,11,192,23,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SP,,MT,12,BLK,350.0,STOLEN,20834,"{'type': 'Point', 'coordinates': (-79.43899694, 43.6684649)}"
-20865,25090,GO-20179010674,THEFT UNDER - BICYCLE,2017-07-20T00:00:00,2017,July,Thursday,20,201,4,2017-07-20T00:00:00,2017,July,Thursday,20,201,10,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BI,,TO,12,GRN,500.0,STOLEN,20835,"{'type': 'Point', 'coordinates': (-79.45585675, 43.66583937000001)}"
-20866,25093,GO-20179012617,THEFT UNDER - BICYCLE,2017-08-16T00:00:00,2017,August,Wednesday,16,228,8,2017-08-17T00:00:00,2017,August,Thursday,17,229,11,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,8,BLK,800.0,STOLEN,20836,"{'type': 'Point', 'coordinates': (-79.43788512, 43.66585116)}"
-20867,25110,GO-2018648031,B&E,2018-04-07T00:00:00,2018,April,Saturday,7,97,21,2018-04-11T00:00:00,2018,April,Wednesday,11,101,15,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,SOLO ROCK,OT,0,,400.0,STOLEN,20837,"{'type': 'Point', 'coordinates': (-79.4445597, 43.66511528)}"
-20868,25111,GO-2018648031,B&E,2018-04-07T00:00:00,2018,April,Saturday,7,97,21,2018-04-11T00:00:00,2018,April,Wednesday,11,101,15,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,ESCAPE,RG,0,,433.0,STOLEN,20838,"{'type': 'Point', 'coordinates': (-79.4445597, 43.66511528)}"
-20869,25119,GO-20189023483,THEFT UNDER - BICYCLE,2018-07-22T00:00:00,2018,July,Sunday,22,203,23,2018-07-23T00:00:00,2018,July,Monday,23,204,11,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,WOLVERINE,MT,21,GRN,1000.0,STOLEN,20839,"{'type': 'Point', 'coordinates': (-79.44329537, 43.66256796)}"
-20870,25120,GO-20189023483,THEFT UNDER - BICYCLE,2018-07-22T00:00:00,2018,July,Sunday,22,203,23,2018-07-23T00:00:00,2018,July,Monday,23,204,11,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,SANTIAGO WOMENS,OT,14,GRN,1400.0,STOLEN,20840,"{'type': 'Point', 'coordinates': (-79.44329537, 43.66256796)}"
-20871,25121,GO-20189023483,THEFT UNDER - BICYCLE,2018-07-22T00:00:00,2018,July,Sunday,22,203,23,2018-07-23T00:00:00,2018,July,Monday,23,204,11,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,BMX,BM,1,BLK,600.0,STOLEN,20841,"{'type': 'Point', 'coordinates': (-79.44329537, 43.66256796)}"
-20872,25122,GO-20189024792,THEFT UNDER - BICYCLE,2018-07-31T00:00:00,2018,July,Tuesday,31,212,16,2018-08-01T00:00:00,2018,August,Wednesday,1,213,18,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,RINCON,MT,24,BLU,400.0,STOLEN,20842,"{'type': 'Point', 'coordinates': (-79.44642226, 43.66672554)}"
-20873,25124,GO-20189026721,THEFT UNDER - BICYCLE,2018-08-16T00:00:00,2018,August,Thursday,16,228,20,2018-08-16T00:00:00,2018,August,Thursday,16,228,21,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ALLEZ,TO,18,RED,750.0,STOLEN,20843,"{'type': 'Point', 'coordinates': (-79.44569863000001, 43.66489681)}"
-20874,25134,GO-20199006299,THEFT UNDER,2019-02-22T00:00:00,2019,February,Friday,22,53,2,2019-02-22T00:00:00,2019,February,Friday,22,53,14,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,RAPID/ROAD BIKE,RG,27,BLU,1000.0,STOLEN,20844,"{'type': 'Point', 'coordinates': (-79.43663905, 43.66296704)}"
-20875,25135,GO-20199009573,B&E,2019-03-24T00:00:00,2019,March,Sunday,24,83,1,2019-03-25T00:00:00,2019,March,Monday,25,84,14,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,1,,0.0,STOLEN,20845,"{'type': 'Point', 'coordinates': (-79.438146, 43.666428280000005)}"
-20876,25146,GO-20191353102,B&E,2019-07-18T00:00:00,2019,July,Thursday,18,199,19,2019-07-19T00:00:00,2019,July,Friday,19,200,8,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,MOMENTUM,MT,10,BLU,,STOLEN,20846,"{'type': 'Point', 'coordinates': (-79.4435271, 43.66254138)}"
-20877,25149,GO-20199025672,THEFT UNDER,2019-07-27T00:00:00,2019,July,Saturday,27,208,11,2019-08-10T00:00:00,2019,August,Saturday,10,222,17,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,SEEK 2,RG,18,BLK,800.0,STOLEN,20847,"{'type': 'Point', 'coordinates': (-79.44161041, 43.66107002)}"
-20878,25155,GO-20191808972,THEFT UNDER,2019-09-05T00:00:00,2019,September,Thursday,5,248,21,2019-09-20T00:00:00,2019,September,Friday,20,263,9,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FUJI,FEATHER,MT,0,WHI,,STOLEN,20848,"{'type': 'Point', 'coordinates': (-79.44527553, 43.66696388)}"
-20879,12263,GO-20169009969,THEFT UNDER,2016-09-04T00:00:00,2016,September,Sunday,4,248,23,2016-09-04T00:00:00,2016,September,Sunday,4,248,23,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,10,WHI,600.0,STOLEN,20849,"{'type': 'Point', 'coordinates': (-79.4489465, 43.66969119)}"
-20880,25156,GO-20191808972,THEFT UNDER,2019-09-05T00:00:00,2019,September,Thursday,5,248,21,2019-09-20T00:00:00,2019,September,Friday,20,263,9,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FUJI,SPORTIF 1.3,MT,0,WHIBLK,,STOLEN,20850,"{'type': 'Point', 'coordinates': (-79.44527553, 43.66696388)}"
-20881,25157,GO-20191808972,THEFT UNDER,2019-09-05T00:00:00,2019,September,Thursday,5,248,21,2019-09-20T00:00:00,2019,September,Friday,20,263,9,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,0,BLU,,STOLEN,20851,"{'type': 'Point', 'coordinates': (-79.44527553, 43.66696388)}"
-20882,25160,GO-20199033469,THEFT UNDER,2019-09-30T00:00:00,2019,September,Monday,30,273,8,2019-10-11T00:00:00,2019,October,Friday,11,284,9,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,GI,ASPECT 770,MT,24,ONG,850.0,STOLEN,20852,"{'type': 'Point', 'coordinates': (-79.44642226, 43.66672554)}"
-20883,25162,GO-20199034884,THEFT UNDER,2019-10-23T00:00:00,2019,October,Wednesday,23,296,6,2019-10-23T00:00:00,2019,October,Wednesday,23,296,8,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,,MT,18,BLU,600.0,STOLEN,20853,"{'type': 'Point', 'coordinates': (-79.44816836, 43.661562)}"
-20884,25163,GO-20192123728,THEFT UNDER - BICYCLE,2019-11-01T00:00:00,2019,November,Friday,1,305,18,2019-11-03T00:00:00,2019,November,Sunday,3,307,11,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,TO,1,SIL,700.0,STOLEN,20854,"{'type': 'Point', 'coordinates': (-79.45052042, 43.661049850000005)}"
-20885,25164,GO-20192123728,THEFT UNDER - BICYCLE,2019-11-01T00:00:00,2019,November,Friday,1,305,18,2019-11-03T00:00:00,2019,November,Sunday,3,307,11,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,MT,12,BLU,,STOLEN,20855,"{'type': 'Point', 'coordinates': (-79.45052042, 43.661049850000005)}"
-20886,25165,GO-20192123728,THEFT UNDER - BICYCLE,2019-11-01T00:00:00,2019,November,Friday,1,305,18,2019-11-03T00:00:00,2019,November,Sunday,3,307,11,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OPUS,CLASSICO,OT,1,BLK,700.0,STOLEN,20856,"{'type': 'Point', 'coordinates': (-79.45052042, 43.661049850000005)}"
-20887,25166,GO-20199037203,THEFT UNDER,2019-11-08T00:00:00,2019,November,Friday,8,312,0,2019-11-11T00:00:00,2019,November,Monday,11,315,22,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,CC,SAVAGE DUAL SUS,MT,21,,375.0,STOLEN,20857,"{'type': 'Point', 'coordinates': (-79.45119415, 43.662709910000004)}"
-20888,25168,GO-20192249361,B&E,2019-11-15T00:00:00,2019,November,Friday,15,319,9,2019-11-21T00:00:00,2019,November,Thursday,21,325,19,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,CAMBER,MT,18,BLK,2500.0,STOLEN,20858,"{'type': 'Point', 'coordinates': (-79.45188185, 43.66075675)}"
-20889,25169,GO-20192249361,B&E,2019-11-15T00:00:00,2019,November,Friday,15,319,9,2019-11-21T00:00:00,2019,November,Thursday,21,325,19,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,KHS GRITT,440,OT,18,PLE,5000.0,STOLEN,20859,"{'type': 'Point', 'coordinates': (-79.45188185, 43.66075675)}"
-20890,25171,GO-20199042515,THEFT UNDER,2019-12-28T00:00:00,2019,December,Saturday,28,362,9,2019-12-31T00:00:00,2019,December,Tuesday,31,365,10,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,TR,WAHOO,MT,27,BLU,700.0,STOLEN,20860,"{'type': 'Point', 'coordinates': (-79.45188185, 43.66075675)}"
-20891,25174,GO-20209012227,THEFT UNDER,2020-04-20T00:00:00,2020,April,Monday,20,111,0,2020-04-30T00:00:00,2020,April,Thursday,30,121,14,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,ICONIC,RG,3,BLK,1200.0,STOLEN,20861,"{'type': 'Point', 'coordinates': (-79.44414059, 43.66721386)}"
-20892,25175,GO-2020883929,THEFT UNDER,2020-05-11T00:00:00,2020,May,Monday,11,132,17,2020-05-12T00:00:00,2020,May,Tuesday,12,133,14,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,RC,21,GRY,600.0,STOLEN,20862,"{'type': 'Point', 'coordinates': (-79.43811239, 43.66362216)}"
-20893,25176,GO-2020937041,THEFT UNDER - BICYCLE,2020-05-15T00:00:00,2020,May,Friday,15,136,1,2020-05-21T00:00:00,2020,May,Thursday,21,142,11,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,HYBRID,MT,7,BLKRED,160.0,STOLEN,20863,"{'type': 'Point', 'coordinates': (-79.44569863000001, 43.66489681)}"
-20894,25177,GO-20201033875,THEFT UNDER - BICYCLE,2020-06-04T00:00:00,2020,June,Thursday,4,156,22,2020-06-05T00:00:00,2020,June,Friday,5,157,9,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,ROCKY MOUNTAIN,VERTEX,MT,21,WHI,4500.0,STOLEN,20864,"{'type': 'Point', 'coordinates': (-79.45052042, 43.661049850000005)}"
-20895,25178,GO-20201066824,THEFT UNDER - BICYCLE,2020-06-01T00:00:00,2020,June,Monday,1,153,17,2020-06-10T00:00:00,2020,June,Wednesday,10,162,10,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,ROAD MASTER,HAMPTON,TR,0,,498.0,STOLEN,20865,"{'type': 'Point', 'coordinates': (-79.44689484, 43.65747686)}"
-20896,25208,GO-20169005876,THEFT UNDER - BICYCLE,2016-06-16T00:00:00,2016,June,Thursday,16,168,9,2016-06-16T00:00:00,2016,June,Thursday,16,168,9,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,10,,,STOLEN,20866,"{'type': 'Point', 'coordinates': (-79.42540175000002, 43.66776054)}"
-20897,25220,GO-20169006573,THEFT UNDER - BICYCLE,2016-06-24T00:00:00,2016,June,Friday,24,176,14,2016-06-30T00:00:00,2016,June,Thursday,30,182,14,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MA,,OT,1,BLK,1000.0,STOLEN,20867,"{'type': 'Point', 'coordinates': (-79.44924628, 43.67095556)}"
-20898,25224,GO-20169006952,THEFT UNDER,2016-07-07T00:00:00,2016,July,Thursday,7,189,13,2016-07-09T00:00:00,2016,July,Saturday,9,191,13,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,UK,BISON,EL,40,BLK,2000.0,STOLEN,20868,"{'type': 'Point', 'coordinates': (-79.43532635000001, 43.65988369)}"
-20899,25248,GO-20161485633,THEFT OVER - BICYCLE,2016-08-21T00:00:00,2016,August,Sunday,21,234,19,2016-08-23T00:00:00,2016,August,Tuesday,23,236,8,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BRODIE,P49,RG,2,BLKRED,700.0,STOLEN,20869,"{'type': 'Point', 'coordinates': (-79.43150988, 43.66994013)}"
-20900,25254,GO-20169009844,THEFT UNDER,2016-09-01T00:00:00,2016,September,Thursday,1,245,21,2016-09-02T00:00:00,2016,September,Friday,2,246,9,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KO,DEW 53,RG,24,BLK,500.0,STOLEN,20870,"{'type': 'Point', 'coordinates': (-79.42929449, 43.66459254)}"
-20901,25268,GO-20161707626,THEFT UNDER - BICYCLE,2016-09-24T00:00:00,2016,September,Saturday,24,268,20,2016-09-25T00:00:00,2016,September,Sunday,25,269,18,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,OT,21,WHIBLK,400.0,STOLEN,20871,"{'type': 'Point', 'coordinates': (-79.44557624, 43.67201015)}"
-20902,25269,GO-20161707626,THEFT UNDER - BICYCLE,2016-09-24T00:00:00,2016,September,Saturday,24,268,20,2016-09-25T00:00:00,2016,September,Sunday,25,269,18,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,CANNONDALE,M300,MT,21,YEL,400.0,STOLEN,20872,"{'type': 'Point', 'coordinates': (-79.44557624, 43.67201015)}"
-20903,25276,GO-20169011929,THEFT UNDER,2016-10-12T00:00:00,2016,October,Wednesday,12,286,11,2016-10-12T00:00:00,2016,October,Wednesday,12,286,11,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,OT,18,WHI,1000.0,STOLEN,20873,"{'type': 'Point', 'coordinates': (-79.42929449, 43.66459254)}"
-20904,25293,GO-2017524821,B&E,2017-03-24T00:00:00,2017,March,Friday,24,83,10,2017-03-24T00:00:00,2017,March,Friday,24,83,19,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BIANCHI,,RG,1,BLK,400.0,STOLEN,20874,"{'type': 'Point', 'coordinates': (-79.43032384, 43.67018808)}"
-20905,25306,GO-2017967569,B&E,2017-05-31T00:00:00,2017,May,Wednesday,31,151,17,2017-06-01T00:00:00,2017,June,Thursday,1,152,8,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,CRUISER,OT,1,BLUWHI,250.0,STOLEN,20875,"{'type': 'Point', 'coordinates': (-79.41989517, 43.6673914)}"
-20906,25327,GO-20189020929,ASSAULT - RESIST/ PREVENT SEIZ,2018-07-01T00:00:00,2018,July,Sunday,1,182,1,2018-07-03T00:00:00,2018,July,Tuesday,3,184,9,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,2018 700 F QUIC,RG,12,BLU,520.0,STOLEN,20876,"{'type': 'Point', 'coordinates': (-79.4489465, 43.66969119)}"
-20907,25328,GO-20189022218,THEFT UNDER,2018-07-11T00:00:00,2018,July,Wednesday,11,192,20,2018-07-12T00:00:00,2018,July,Thursday,12,193,21,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,KH,,RG,10,BLK,1200.0,STOLEN,20877,"{'type': 'Point', 'coordinates': (-79.44924628, 43.67095556)}"
-20908,25337,GO-20199002406,THEFT UNDER - BICYCLE,2019-01-18T00:00:00,2019,January,Friday,18,18,10,2019-01-18T00:00:00,2019,January,Friday,18,18,11,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,MIELE UNO VINTA,RG,8,BLK,500.0,STOLEN,20878,"{'type': 'Point', 'coordinates': (-79.43313787, 43.67071462)}"
-20909,25343,GO-20199021047,THEFT UNDER - BICYCLE,2019-07-02T00:00:00,2019,July,Tuesday,2,183,0,2019-07-04T00:00:00,2019,July,Thursday,4,185,23,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,ESCAPE,RG,27,DBL,350.0,STOLEN,20879,"{'type': 'Point', 'coordinates': (-79.43588915, 43.67414215)}"
-20910,25376,GO-20209017758,THEFT UNDER,2020-07-17T00:00:00,2020,July,Friday,17,199,7,2020-07-17T00:00:00,2020,July,Friday,17,199,8,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,OT,24,BLK,450.0,STOLEN,20880,"{'type': 'Point', 'coordinates': (-79.44340776, 43.66537166)}"
-20911,154,GO-20179003137,THEFT UNDER - BICYCLE,2016-11-01T00:00:00,2016,November,Tuesday,1,306,22,2017-03-11T00:00:00,2017,March,Saturday,11,70,22,D13,Toronto,94,Wychwood (94),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,1.2,TO,18,BLU,1200.0,STOLEN,20881,"{'type': 'Point', 'coordinates': (-79.42766224, 43.68129997)}"
-20912,177,GO-20179003953,THEFT UNDER,2017-03-27T00:00:00,2017,March,Monday,27,86,21,2017-03-29T00:00:00,2017,March,Wednesday,29,88,7,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,LARGO,TO,21,DGR,2000.0,STOLEN,20882,"{'type': 'Point', 'coordinates': (-79.4319394, 43.67096054)}"
-20913,512,GO-2017968819,THEFT UNDER - BICYCLE,2017-05-30T00:00:00,2017,May,Tuesday,30,150,20,2017-06-01T00:00:00,2017,June,Thursday,1,152,11,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FREE SPIRIT,,RG,12,GRY,,STOLEN,20883,"{'type': 'Point', 'coordinates': (-79.43219014, 43.676518050000006)}"
-20914,513,GO-2017968819,THEFT UNDER - BICYCLE,2017-05-30T00:00:00,2017,May,Tuesday,30,150,20,2017-06-01T00:00:00,2017,June,Thursday,1,152,11,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SKYLINE,,RG,12,PLESIL,,STOLEN,20884,"{'type': 'Point', 'coordinates': (-79.43219014, 43.676518050000006)}"
-20915,1144,GO-20179012347,THEFT UNDER - BICYCLE,2017-08-11T00:00:00,2017,August,Friday,11,223,19,2017-08-14T00:00:00,2017,August,Monday,14,226,11,D13,Toronto,94,Wychwood (94),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,BI,NOT SURE,MT,27,GRY,700.0,STOLEN,20885,"{'type': 'Point', 'coordinates': (-79.42468446, 43.67396962)}"
-20916,1408,GO-20171671777,B&E,2017-09-10T00:00:00,2017,September,Sunday,10,253,18,2017-09-15T00:00:00,2017,September,Friday,15,258,8,D13,Toronto,94,Wychwood (94),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,OT,0,,,STOLEN,20886,"{'type': 'Point', 'coordinates': (-79.41950573, 43.6829279)}"
-20917,1671,GO-20171882257,THEFT OF EBIKE UNDER $5000,2017-10-17T00:00:00,2017,October,Tuesday,17,290,7,2017-10-17T00:00:00,2017,October,Tuesday,17,290,18,D13,Toronto,94,Wychwood (94),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,AMEGO,,EL,0,WHI,1400.0,STOLEN,20888,"{'type': 'Point', 'coordinates': (-79.41826195, 43.68316749)}"
-20918,1833,GO-20179019505,THEFT UNDER,2017-11-12T00:00:00,2017,November,Sunday,12,316,16,2017-11-13T00:00:00,2017,November,Monday,13,317,21,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,BMX CRUISER,BM,1,BLK,300.0,STOLEN,20889,"{'type': 'Point', 'coordinates': (-79.41887334, 43.682188630000006)}"
-20919,2117,GO-2018564436,THEFT UNDER - BICYCLE,2018-03-28T00:00:00,2018,March,Wednesday,28,87,22,2018-03-29T00:00:00,2018,March,Thursday,29,88,9,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KHS,URBAN SOUL,MT,20,,500.0,STOLEN,20890,"{'type': 'Point', 'coordinates': (-79.42628335, 43.67877685)}"
-20920,2626,GO-20189019410,THEFT UNDER,2018-06-18T00:00:00,2018,June,Monday,18,169,19,2018-06-19T00:00:00,2018,June,Tuesday,19,170,21,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,OT,8,GRN,500.0,STOLEN,20891,"{'type': 'Point', 'coordinates': (-79.4319394, 43.67096054)}"
-20921,2717,GO-20189020698,THEFT UNDER - BICYCLE,2018-06-29T00:00:00,2018,June,Friday,29,180,9,2018-06-29T00:00:00,2018,June,Friday,29,180,10,D13,Toronto,94,Wychwood (94),"Apartment (Rooming House, Condo)",Apartment,OT,HEX CLARIS 8S,RG,16,DBL,1000.0,STOLEN,20892,"{'type': 'Point', 'coordinates': (-79.41826195, 43.68316749)}"
-20922,3398,GO-20189029237,THEFT UNDER - BICYCLE,2018-08-19T00:00:00,2018,August,Sunday,19,231,20,2018-09-05T00:00:00,2018,September,Wednesday,5,248,16,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,QUICK DISC 3,TO,9,GRY,1130.0,STOLEN,20893,"{'type': 'Point', 'coordinates': (-79.4180477, 43.67891588)}"
-20923,3454,GO-20189030213,THEFT UNDER - BICYCLE,2018-09-08T00:00:00,2018,September,Saturday,8,251,14,2018-09-13T00:00:00,2018,September,Thursday,13,256,11,D13,Toronto,94,Wychwood (94),"Apartment (Rooming House, Condo)",Apartment,OT,VITA SPORT,OT,27,DBL,1000.0,STOLEN,20894,"{'type': 'Point', 'coordinates': (-79.41826195, 43.68316749)}"
-20924,3764,GO-20189035715,THEFT UNDER - BICYCLE,2018-10-25T00:00:00,2018,October,Thursday,25,298,21,2018-10-26T00:00:00,2018,October,Friday,26,299,16,D13,Toronto,94,Wychwood (94),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KH,URBAN EXTREME,OT,18,BLK,650.0,STOLEN,20895,"{'type': 'Point', 'coordinates': (-79.42865345, 43.67475385)}"
-20925,3765,GO-20189035715,THEFT UNDER - BICYCLE,2018-10-25T00:00:00,2018,October,Thursday,25,298,21,2018-10-26T00:00:00,2018,October,Friday,26,299,16,D13,Toronto,94,Wychwood (94),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,UNKNOWN,RG,26,RED,500.0,STOLEN,20896,"{'type': 'Point', 'coordinates': (-79.42865345, 43.67475385)}"
-20926,4115,GO-2019557302,THEFT UNDER - BICYCLE,2019-03-27T00:00:00,2019,March,Wednesday,27,86,12,2019-03-28T00:00:00,2019,March,Thursday,28,87,8,D13,Toronto,94,Wychwood (94),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,HYPER,MT,21,BLKRED,200.0,STOLEN,20897,"{'type': 'Point', 'coordinates': (-79.41887334, 43.682188630000006)}"
-20927,4209,GO-2019765533,B&E W'INTENT,2019-04-27T00:00:00,2019,April,Saturday,27,117,0,2019-04-28T00:00:00,2019,April,Sunday,28,118,16,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,,RG,0,BLK,1000.0,STOLEN,20898,"{'type': 'Point', 'coordinates': (-79.4252251, 43.67801787)}"
-20928,4210,GO-2019765533,B&E W'INTENT,2019-04-27T00:00:00,2019,April,Saturday,27,117,0,2019-04-28T00:00:00,2019,April,Sunday,28,118,16,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,,RG,0,BLK,1000.0,STOLEN,20899,"{'type': 'Point', 'coordinates': (-79.4252251, 43.67801787)}"
-20929,5025,GO-20191520550,THEFT UNDER - BICYCLE,2019-08-11T00:00:00,2019,August,Sunday,11,223,14,2019-08-11T00:00:00,2019,August,Sunday,11,223,14,D13,Toronto,94,Wychwood (94),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,ROCKY MOUNTAIN,,MT,12,REDWHI,,STOLEN,20900,"{'type': 'Point', 'coordinates': (-79.41887334, 43.682188630000006)}"
-20930,5087,GO-20199026407,THEFT UNDER - BICYCLE,2019-08-15T00:00:00,2019,August,Thursday,15,227,13,2019-08-15T00:00:00,2019,August,Thursday,15,227,21,D13,Toronto,94,Wychwood (94),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RA,PEAK 6061,MT,21,RED,250.0,STOLEN,20901,"{'type': 'Point', 'coordinates': (-79.4180477, 43.67891588)}"
-20931,5132,GO-20191592993,B&E,2019-08-17T00:00:00,2019,August,Saturday,17,229,2,2019-08-21T00:00:00,2019,August,Wednesday,21,233,14,D13,Toronto,94,Wychwood (94),"Apartment (Rooming House, Condo)",Apartment,EMMO,,EL,45,BLK,900.0,STOLEN,20902,"{'type': 'Point', 'coordinates': (-79.43293662, 43.67530723)}"
-20932,5152,GO-20191600881,THEFT UNDER - BICYCLE,2019-08-19T00:00:00,2019,August,Monday,19,231,17,2019-08-22T00:00:00,2019,August,Thursday,22,234,15,D13,Toronto,94,Wychwood (94),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,,OT,24,BLK,400.0,STOLEN,20903,"{'type': 'Point', 'coordinates': (-79.42568053, 43.68170959)}"
-20933,5350,GO-20191778768,B&E,2019-07-24T00:00:00,2019,July,Wednesday,24,205,18,2019-09-16T00:00:00,2019,September,Monday,16,259,11,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,,MT,12,WHI,2000.0,STOLEN,20904,"{'type': 'Point', 'coordinates': (-79.42873722, 43.672385780000006)}"
-20934,5351,GO-20191778768,B&E,2019-07-24T00:00:00,2019,July,Wednesday,24,205,18,2019-09-16T00:00:00,2019,September,Monday,16,259,11,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,STUMP JUMPER,MT,12,SIL,4000.0,STOLEN,20905,"{'type': 'Point', 'coordinates': (-79.42873722, 43.672385780000006)}"
-20935,5352,GO-20191778768,B&E,2019-07-24T00:00:00,2019,July,Wednesday,24,205,18,2019-09-16T00:00:00,2019,September,Monday,16,259,11,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,SL4,MT,12,BLU,3000.0,STOLEN,20906,"{'type': 'Point', 'coordinates': (-79.42873722, 43.672385780000006)}"
-20936,5469,GO-20199032634,THEFT UNDER,2019-10-04T00:00:00,2019,October,Friday,4,277,2,2019-10-04T00:00:00,2019,October,Friday,4,277,16,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,,MT,20,BLU,3500.0,STOLEN,20907,"{'type': 'Point', 'coordinates': (-79.42864395, 43.67727862)}"
-20937,5729,GO-20199039082,THEFT UNDER,2019-11-24T00:00:00,2019,November,Sunday,24,328,14,2019-11-27T00:00:00,2019,November,Wednesday,27,331,19,D13,Toronto,94,Wychwood (94),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SC,NETWORK 2.0,RG,7,BLU,350.0,STOLEN,20908,"{'type': 'Point', 'coordinates': (-79.42815858, 43.67937394)}"
-20938,12380,GO-20161660409,THEFT UNDER,2016-09-15T00:00:00,2016,September,Thursday,15,259,9,2016-09-18T00:00:00,2016,September,Sunday,18,262,11,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DIAMONDBACK,COOPERHEAD,MT,21,WHI,750.0,STOLEN,20909,"{'type': 'Point', 'coordinates': (-79.44569863000001, 43.66489681)}"
-20939,12413,GO-20169010824,THEFT UNDER - BICYCLE,2016-09-19T00:00:00,2016,September,Monday,19,263,10,2016-09-21T00:00:00,2016,September,Wednesday,21,265,1,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),Unknown,Other,SC,,RG,7,RED,500.0,STOLEN,20910,"{'type': 'Point', 'coordinates': (-79.43899694, 43.6684649)}"
-20940,12427,GO-20169010920,THEFT UNDER,2016-09-22T00:00:00,2016,September,Thursday,22,266,0,2016-09-22T00:00:00,2016,September,Thursday,22,266,16,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,YORVILLE,RG,21,BLU,600.0,STOLEN,20911,"{'type': 'Point', 'coordinates': (-79.45545625, 43.6648475)}"
-20941,12456,GO-20161710890,THEFT UNDER - BICYCLE,2016-09-23T00:00:00,2016,September,Friday,23,267,21,2016-09-26T00:00:00,2016,September,Monday,26,270,11,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,LOUIS GARNEAU,CITY BIKE,RG,10,WHI,700.0,STOLEN,20912,"{'type': 'Point', 'coordinates': (-79.45452709, 43.66611343)}"
-20942,12474,GO-20169011199,THEFT UNDER,2016-09-27T00:00:00,2016,September,Tuesday,27,271,15,2016-09-27T00:00:00,2016,September,Tuesday,27,271,18,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,VFR6 (?),MT,24,GRY,549.0,STOLEN,20913,"{'type': 'Point', 'coordinates': (-79.42929364, 43.66770575)}"
-20943,12485,GO-20169011258,THEFT UNDER - BICYCLE,2016-09-26T00:00:00,2016,September,Monday,26,270,23,2016-09-28T00:00:00,2016,September,Wednesday,28,272,16,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MO,,RG,15,DGR,150.0,STOLEN,20914,"{'type': 'Point', 'coordinates': (-79.42929449, 43.66459254)}"
-20944,12510,GO-20169011327,THEFT UNDER - BICYCLE,2016-09-29T00:00:00,2016,September,Thursday,29,273,14,2016-09-30T00:00:00,2016,September,Friday,30,274,2,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,GI,PELOTON 8000,RC,10,YEL,1500.0,STOLEN,20915,"{'type': 'Point', 'coordinates': (-79.44272532, 43.66363549)}"
-20945,12516,GO-20161741631,THEFT UNDER - BICYCLE,2016-09-26T00:00:00,2016,September,Monday,26,270,6,2016-09-30T00:00:00,2016,September,Friday,30,274,21,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),Ttc Subway Station,Transit,VELO SPORT,SINGLE GEAR,OT,1,GRN,,STOLEN,20916,"{'type': 'Point', 'coordinates': (-79.43532635000001, 43.65988369)}"
-20946,12522,GO-20169011401,THEFT UNDER - BICYCLE,2016-10-01T00:00:00,2016,October,Saturday,1,275,0,2016-10-01T00:00:00,2016,October,Saturday,1,275,12,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,3,BLK,846.0,STOLEN,20917,"{'type': 'Point', 'coordinates': (-79.43541193, 43.66325041)}"
-20947,12529,GO-20161752642,B&E,2016-09-24T00:00:00,2016,September,Saturday,24,268,12,2016-10-02T00:00:00,2016,October,Sunday,2,276,17,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,TO,5,WHIPLE,500.0,STOLEN,20918,"{'type': 'Point', 'coordinates': (-79.43541193, 43.66325041)}"
-20948,12563,GO-20161777411,THEFT UNDER - BICYCLE,2016-10-05T00:00:00,2016,October,Wednesday,5,279,0,2016-10-06T00:00:00,2016,October,Thursday,6,280,11,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,REBEL,MT,10,BLKRED,450.0,STOLEN,20919,"{'type': 'Point', 'coordinates': (-79.44642226, 43.66672554)}"
-20949,12578,GO-20161797327,B&E,2016-10-09T00:00:00,2016,October,Sunday,9,283,15,2016-10-09T00:00:00,2016,October,Sunday,9,283,15,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KONA,PADDY WAGON,OT,5,GRY,650.0,STOLEN,20920,"{'type': 'Point', 'coordinates': (-79.42348181, 43.66312967)}"
-20950,12588,GO-20169011829,THEFT UNDER - BICYCLE,2016-10-10T00:00:00,2016,October,Monday,10,284,14,2016-10-11T00:00:00,2016,October,Tuesday,11,285,9,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),Ttc Subway Station,Transit,SC,GRAFT,MT,24,,400.0,STOLEN,20921,"{'type': 'Point', 'coordinates': (-79.42801462, 43.661480430000005)}"
-20951,12602,GO-20161797327,B&E,2016-10-09T00:00:00,2016,October,Sunday,9,283,15,2016-10-09T00:00:00,2016,October,Sunday,9,283,15,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,PADDY WAGON,TO,1,,768.0,STOLEN,20922,"{'type': 'Point', 'coordinates': (-79.42348181, 43.66312967)}"
-20952,12698,GO-20169012738,THEFT UNDER - BICYCLE,2016-10-27T00:00:00,2016,October,Thursday,27,301,5,2016-10-29T00:00:00,2016,October,Saturday,29,303,12,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,7.2 FX WSD 2016,RG,24,GRY,600.0,STOLEN,20923,"{'type': 'Point', 'coordinates': (-79.43663905, 43.66296704)}"
-20953,12729,GO-20169013039,THEFT UNDER,2016-11-05T00:00:00,2016,November,Saturday,5,310,3,2016-11-06T00:00:00,2016,November,Sunday,6,311,14,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,ROPER,TO,24,ONG,1500.0,STOLEN,20924,"{'type': 'Point', 'coordinates': (-79.43081834000002, 43.66199128)}"
-20954,12737,GO-20169013118,THEFT UNDER - BICYCLE,2016-10-26T00:00:00,2016,October,Wednesday,26,300,17,2016-11-07T00:00:00,2016,November,Monday,7,312,17,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,ROLL 1,OT,1,BLK,650.0,STOLEN,20925,"{'type': 'Point', 'coordinates': (-79.44582039000001, 43.662064730000004)}"
-20955,12740,GO-20161988089,THEFT UNDER - BICYCLE,2016-10-30T00:00:00,2016,October,Sunday,30,304,15,2016-11-08T00:00:00,2016,November,Tuesday,8,313,15,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,TWENTY NINER,MT,28,BLKGRN,500.0,STOLEN,20926,"{'type': 'Point', 'coordinates': (-79.44569863000001, 43.66489681)}"
-20956,12744,GO-20169013182,THEFT UNDER - BICYCLE,2016-11-09T00:00:00,2016,November,Wednesday,9,314,16,2016-11-09T00:00:00,2016,November,Wednesday,9,314,18,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,CITY GLIDE,OT,7,BLK,575.0,STOLEN,20927,"{'type': 'Point', 'coordinates': (-79.43623489, 43.66852851)}"
-20957,12757,GO-20169013345,THEFT UNDER,2016-11-12T00:00:00,2016,November,Saturday,12,317,17,2016-11-13T00:00:00,2016,November,Sunday,13,318,12,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RM,,MT,5,BLK,0.0,STOLEN,20928,"{'type': 'Point', 'coordinates': (-79.43664774, 43.66610579)}"
-20958,12758,GO-20169013345,THEFT UNDER,2016-11-12T00:00:00,2016,November,Saturday,12,317,17,2016-11-13T00:00:00,2016,November,Sunday,13,318,12,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,,OT,1,,175.0,STOLEN,20929,"{'type': 'Point', 'coordinates': (-79.43664774, 43.66610579)}"
-20959,12759,GO-20162023604,THEFT UNDER - BICYCLE,2016-11-13T00:00:00,2016,November,Sunday,13,318,20,2016-11-14T00:00:00,2016,November,Monday,14,319,13,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,5,BLK,650.0,STOLEN,20930,"{'type': 'Point', 'coordinates': (-79.42650199, 43.66408514)}"
-20960,12760,GO-20162023604,THEFT UNDER - BICYCLE,2016-11-13T00:00:00,2016,November,Sunday,13,318,20,2016-11-14T00:00:00,2016,November,Monday,14,319,13,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,1,GRN,1000.0,STOLEN,20931,"{'type': 'Point', 'coordinates': (-79.42650199, 43.66408514)}"
-20961,12789,GO-20169013571,THEFT UNDER - BICYCLE,2016-11-12T00:00:00,2016,November,Saturday,12,317,11,2016-11-18T00:00:00,2016,November,Friday,18,323,11,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,DUTCH,RG,3,WHI,700.0,STOLEN,20932,"{'type': 'Point', 'coordinates': (-79.42721594, 43.66277001000001)}"
-20962,12839,GO-20162142434,INCIDENT,2016-12-03T00:00:00,2016,December,Saturday,3,338,2,2016-12-03T00:00:00,2016,December,Saturday,3,338,2,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,NITRO,MT,24,BLK,,STOLEN,20933,"{'type': 'Point', 'coordinates': (-79.43287743, 43.66039188)}"
-20963,12857,GO-20161686474,B&E,2016-09-21T00:00:00,2016,September,Wednesday,21,265,23,2016-09-22T00:00:00,2016,September,Thursday,22,266,10,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,LITESPEED,GHISALLO,RC,1,SIL,6000.0,STOLEN,20934,"{'type': 'Point', 'coordinates': (-79.43032384, 43.67018808)}"
-20964,12858,GO-20161686474,B&E,2016-09-21T00:00:00,2016,September,Wednesday,21,265,23,2016-09-22T00:00:00,2016,September,Thursday,22,266,10,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,LEMOND,POPRAD,MT,1,BLK,1500.0,STOLEN,20935,"{'type': 'Point', 'coordinates': (-79.43032384, 43.67018808)}"
-20965,12859,GO-20161686474,B&E,2016-09-21T00:00:00,2016,September,Wednesday,21,265,23,2016-09-22T00:00:00,2016,September,Thursday,22,266,10,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,YETI,FROPRO STEEL,MT,1,TRQ,2000.0,STOLEN,20936,"{'type': 'Point', 'coordinates': (-79.43032384, 43.67018808)}"
-20966,12860,GO-20161686474,B&E,2016-09-21T00:00:00,2016,September,Wednesday,21,265,23,2016-09-22T00:00:00,2016,September,Thursday,22,266,10,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CAMPAGNOLO,BORA,OT,1,,1100.0,STOLEN,20937,"{'type': 'Point', 'coordinates': (-79.43032384, 43.67018808)}"
-20967,12861,GO-20161686474,B&E,2016-09-21T00:00:00,2016,September,Wednesday,21,265,23,2016-09-22T00:00:00,2016,September,Thursday,22,266,10,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,LOOK,KG 461,RC,1,BLUWHI,6000.0,STOLEN,20938,"{'type': 'Point', 'coordinates': (-79.43032384, 43.67018808)}"
-20968,14275,GO-20209016324,THEFT UNDER,2020-06-26T00:00:00,2020,June,Friday,26,178,0,2020-06-27T00:00:00,2020,June,Saturday,27,179,17,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,5,PNK,300.0,STOLEN,20939,"{'type': 'Point', 'coordinates': (-79.42460593, 43.66219851)}"
-20969,14276,GO-20209016324,THEFT UNDER,2020-06-26T00:00:00,2020,June,Friday,26,178,0,2020-06-27T00:00:00,2020,June,Saturday,27,179,17,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,6,BLK,700.0,STOLEN,20940,"{'type': 'Point', 'coordinates': (-79.42460593, 43.66219851)}"
-20970,14330,GO-20209026790,THEFT UNDER,2020-10-17T00:00:00,2020,October,Saturday,17,291,1,2020-10-17T00:00:00,2020,October,Saturday,17,291,16,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,BI,,RC,12,WHI,1200.0,STOLEN,20941,"{'type': 'Point', 'coordinates': (-79.43048595, 43.66744926)}"
-20971,14342,GO-20209030710,THEFT UNDER,2020-11-26T00:00:00,2020,November,Thursday,26,331,15,2020-11-27T00:00:00,2020,November,Friday,27,332,12,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,24,BLU,400.0,STOLEN,20942,"{'type': 'Point', 'coordinates': (-79.41958483, 43.66657302)}"
-20972,14467,GO-20189034266,THEFT UNDER - SHOPLIFTING,2018-10-15T00:00:00,2018,October,Monday,15,288,18,2018-10-16T00:00:00,2018,October,Tuesday,16,289,12,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,VFR 2 MEDIUM SI,RG,24,DBL,700.0,STOLEN,20943,"{'type': 'Point', 'coordinates': (-79.42150513, 43.67162227)}"
-20973,14566,GO-20199027407,THEFT UNDER - BICYCLE,2019-08-23T00:00:00,2019,August,Friday,23,235,1,2019-08-23T00:00:00,2019,August,Friday,23,235,14,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ORBITA 650B,MT,6,DGR,220.0,STOLEN,20944,"{'type': 'Point', 'coordinates': (-79.42963126, 43.66224427)}"
-20974,14667,GO-20179009861,THEFT UNDER - BICYCLE,2017-07-10T00:00:00,2017,July,Monday,10,191,9,2017-07-10T00:00:00,2017,July,Monday,10,191,14,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,INDIE 2,MT,21,BLK,600.0,STOLEN,20945,"{'type': 'Point', 'coordinates': (-79.42425908, 43.6629699)}"
-20975,14670,GO-20179010255,THEFT UNDER,2017-07-14T00:00:00,2017,July,Friday,14,195,23,2017-07-15T00:00:00,2017,July,Saturday,15,196,12,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,OT,MILANO,RG,20,SIL,650.0,STOLEN,20946,"{'type': 'Point', 'coordinates': (-79.4208938, 43.67001212)}"
-20976,14693,GO-20179012843,THEFT UNDER - BICYCLE,2017-08-20T00:00:00,2017,August,Sunday,20,232,3,2017-08-20T00:00:00,2017,August,Sunday,20,232,10,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),Schools During Un-Supervised Activity,Educational,UK,CROSSTRAIL,MT,9,RED,1300.0,STOLEN,20947,"{'type': 'Point', 'coordinates': (-79.42016264, 43.66811884)}"
-20977,14718,GO-20179015082,THEFT UNDER - BICYCLE,2017-09-17T00:00:00,2017,September,Sunday,17,260,22,2017-09-18T00:00:00,2017,September,Monday,18,261,14,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ROADSTER 8,RG,8,BLK,1000.0,STOLEN,20948,"{'type': 'Point', 'coordinates': (-79.43664774, 43.66610579)}"
-20978,14742,GO-20173022276,THEFT OF EBIKE UNDER $5000,2017-11-18T00:00:00,2017,November,Saturday,18,322,14,2017-11-18T00:00:00,2017,November,Saturday,18,322,14,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SANTA CRUZ,,EL,20,,,STOLEN,20949,"{'type': 'Point', 'coordinates': (-79.43532635000001, 43.65988369)}"
-20979,14744,GO-20179020421,THEFT UNDER - BICYCLE,2017-11-24T00:00:00,2017,November,Friday,24,328,1,2017-11-24T00:00:00,2017,November,Friday,24,328,9,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,3,BLU,1000.0,STOLEN,20950,"{'type': 'Point', 'coordinates': (-79.4208938, 43.67001212)}"
-20980,14763,GO-2018430610,B&E,2018-03-08T00:00:00,2018,March,Thursday,8,67,5,2018-03-08T00:00:00,2018,March,Thursday,8,67,15,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,DEVINCI,MILANO,MT,21,BLKRED,1034.0,STOLEN,20951,"{'type': 'Point', 'coordinates': (-79.43032384, 43.67018808)}"
-20981,14764,GO-20189008260,THEFT UNDER,2018-03-16T00:00:00,2018,March,Friday,16,75,0,2018-03-16T00:00:00,2018,March,Friday,16,75,18,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,RG,18,WHI,950.0,STOLEN,20952,"{'type': 'Point', 'coordinates': (-79.43272148, 43.66970208)}"
-20982,14852,GO-20189027884,THEFT UNDER - BICYCLE,2018-08-25T00:00:00,2018,August,Saturday,25,237,2,2018-08-25T00:00:00,2018,August,Saturday,25,237,10,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RC,22,BLK,2400.0,STOLEN,20953,"{'type': 'Point', 'coordinates': (-79.43415849, 43.66351805000001)}"
-20983,14864,GO-20199024973,THEFT UNDER,2019-07-31T00:00:00,2019,July,Wednesday,31,212,0,2019-08-05T00:00:00,2019,August,Monday,5,217,11,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Group Homes (Non-Profit, Halfway House, Social Agency)",Other,GI,ROAM 3,RG,24,BLK,2500.0,STOLEN,20954,"{'type': 'Point', 'coordinates': (-79.44725452, 43.66881017)}"
-20984,14868,GO-20199029184,THEFT UNDER,2019-09-01T00:00:00,2019,September,Sunday,1,244,3,2019-09-08T00:00:00,2019,September,Sunday,8,251,15,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,VFR-3,MT,32,GRY,650.0,STOLEN,20955,"{'type': 'Point', 'coordinates': (-79.44228046, 43.66898843)}"
-20985,14869,GO-20199029210,THEFT FROM MOTOR VEHICLE UNDER,2019-09-08T00:00:00,2019,September,Sunday,8,251,17,2019-09-08T00:00:00,2019,September,Sunday,8,251,21,D13,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,AVAIL,TO,21,RED,900.0,STOLEN,20956,"{'type': 'Point', 'coordinates': (-79.44608819, 43.6690567)}"
-20986,14884,GO-20209017435,THEFT UNDER,2020-07-11T00:00:00,2020,July,Saturday,11,193,0,2020-07-13T00:00:00,2020,July,Monday,13,195,11,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,RG,1,WHI,300.0,STOLEN,20957,"{'type': 'Point', 'coordinates': (-79.44260195, 43.66087043000001)}"
-20987,14897,GO-20209023185,THEFT UNDER,2020-09-09T00:00:00,2020,September,Wednesday,9,253,23,2020-09-14T00:00:00,2020,September,Monday,14,258,11,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,FJ,ABSOLUTE,MT,9,GRY,600.0,STOLEN,20958,"{'type': 'Point', 'coordinates': (-79.45397643, 43.66209576)}"
-20988,15051,GO-20149003607,THEFT UNDER,2014-05-22T00:00:00,2014,May,Thursday,22,142,17,2014-05-26T00:00:00,2014,May,Monday,26,146,17,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,24,SIL,2000.0,STOLEN,20959,"{'type': 'Point', 'coordinates': (-79.44889488, 43.65705424)}"
-20989,15061,GO-20149004854,THEFT UNDER,2014-07-09T00:00:00,2014,July,Wednesday,9,190,20,2014-07-10T00:00:00,2014,July,Thursday,10,191,0,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Group Homes (Non-Profit, Halfway House, Social Agency)",Other,SU,XTI 21,RG,21,OTH,0.0,STOLEN,20960,"{'type': 'Point', 'coordinates': (-79.45188185, 43.66075675)}"
-20990,15063,GO-20142556615,THEFT UNDER,2014-07-23T00:00:00,2014,July,Wednesday,23,204,9,2014-07-23T00:00:00,2014,July,Wednesday,23,204,15,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RETROSPEC,MANTRA,OT,1,GRN,218.0,STOLEN,20961,"{'type': 'Point', 'coordinates': (-79.44642226, 43.66672554)}"
-20991,15064,GO-20149005211,THEFT UNDER,2014-07-23T00:00:00,2014,July,Wednesday,23,204,22,2014-07-24T00:00:00,2014,July,Thursday,24,205,8,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,CC,,MT,21,BLK,,STOLEN,20962,"{'type': 'Point', 'coordinates': (-79.44642226, 43.66672554)}"
-20992,15079,GO-20159001585,THEFT UNDER,2015-03-27T00:00:00,2015,March,Friday,27,86,12,2015-03-27T00:00:00,2015,March,Friday,27,86,18,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RC,1,BLK,200.0,STOLEN,20963,"{'type': 'Point', 'coordinates': (-79.44569863000001, 43.66489681)}"
-20993,15087,GO-20159003455,THEFT UNDER,2015-06-05T00:00:00,2015,June,Friday,5,156,0,2015-06-05T00:00:00,2015,June,Friday,5,156,12,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,,RC,1,BLK,700.0,STOLEN,20964,"{'type': 'Point', 'coordinates': (-79.44306206, 43.66450282)}"
-20994,15100,GO-20159005381,THEFT UNDER,2015-08-05T00:00:00,2015,August,Wednesday,5,217,22,2015-08-06T00:00:00,2015,August,Thursday,6,218,8,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,NO,INDIE 4,RG,24,BLK,300.0,STOLEN,20965,"{'type': 'Point', 'coordinates': (-79.43640202, 43.65965002)}"
-20995,15110,GO-20169001061,THEFT UNDER,2016-01-03T00:00:00,2016,January,Sunday,3,3,20,2016-02-02T00:00:00,2016,February,Tuesday,2,33,20,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,MA,KENTFIELD,RG,21,BLK,0.0,STOLEN,20966,"{'type': 'Point', 'coordinates': (-79.44642226, 43.66672554)}"
-20996,15111,GO-20169001217,THEFT UNDER,2016-01-24T00:00:00,2016,January,Sunday,24,24,12,2016-02-07T00:00:00,2016,February,Sunday,7,38,16,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,KH,,RC,1,GLD,659.0,STOLEN,20967,"{'type': 'Point', 'coordinates': (-79.44569863000001, 43.66489681)}"
-20997,8389,GO-20149004880,THEFT UNDER,2014-07-10T00:00:00,2014,July,Thursday,10,191,10,2014-07-10T00:00:00,2014,July,Thursday,10,191,13,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,,MT,10,GLD,0.0,STOLEN,21047,"{'type': 'Point', 'coordinates': (-79.39598838000002, 43.67335138)}"
-20998,15117,GO-20169004541,THEFT UNDER - BICYCLE,2016-05-15T00:00:00,2016,May,Sunday,15,136,0,2016-05-15T00:00:00,2016,May,Sunday,15,136,1,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,21,GRY,200.0,STOLEN,20968,"{'type': 'Point', 'coordinates': (-79.44306206, 43.66450282)}"
-20999,15120,GO-20169005989,THEFT UNDER - BICYCLE,2016-06-16T00:00:00,2016,June,Thursday,16,168,21,2016-06-18T00:00:00,2016,June,Saturday,18,170,12,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,METRIX,RG,24,BLK,750.0,STOLEN,20969,"{'type': 'Point', 'coordinates': (-79.44582039000001, 43.662064730000004)}"
-21000,15121,GO-20169005983,THEFT UNDER - BICYCLE,2016-06-18T00:00:00,2016,June,Saturday,18,170,1,2016-06-18T00:00:00,2016,June,Saturday,18,170,13,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),Bar / Restaurant,Commercial,GI,ROAM,RG,10,BLU,800.0,STOLEN,20970,"{'type': 'Point', 'coordinates': (-79.45411957, 43.6651244)}"
-21001,15144,GO-20161683611,THEFT UNDER - BICYCLE,2016-09-20T00:00:00,2016,September,Tuesday,20,264,21,2016-09-21T00:00:00,2016,September,Wednesday,21,265,21,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,TREK,ALLANT,OT,7,GRN,800.0,STOLEN,20971,"{'type': 'Point', 'coordinates': (-79.45782502000002, 43.66689003)}"
-21002,15146,GO-20161770444,THEFT UNDER - BICYCLE,2016-09-21T00:00:00,2016,September,Wednesday,21,265,0,2016-10-05T00:00:00,2016,October,Wednesday,5,279,10,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GT,AGGRESSOR 3.0,MT,21,BLU,,STOLEN,20972,"{'type': 'Point', 'coordinates': (-79.44689484, 43.65747686)}"
-21003,15150,GO-20161859939,THEFT UNDER - BICYCLE,2016-10-18T00:00:00,2016,October,Tuesday,18,292,11,2016-10-19T00:00:00,2016,October,Wednesday,19,293,12,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,,RC,12,,,STOLEN,20973,"{'type': 'Point', 'coordinates': (-79.45085733, 43.66187627000001)}"
-21004,15152,GO-20169013177,THEFT UNDER - BICYCLE,2016-11-09T00:00:00,2016,November,Wednesday,9,314,7,2016-11-09T00:00:00,2016,November,Wednesday,9,314,19,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,HF,HUFFY,MT,8,GRY,273.0,STOLEN,20974,"{'type': 'Point', 'coordinates': (-79.44527553, 43.66696388)}"
-21005,15162,GO-20179003992,THEFT UNDER,2017-03-29T00:00:00,2017,March,Wednesday,29,88,23,2017-03-30T00:00:00,2017,March,Thursday,30,89,9,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,1,,350.0,STOLEN,20975,"{'type': 'Point', 'coordinates': (-79.44340776, 43.66537166)}"
-21006,15168,GO-2017688333,THEFT UNDER - BICYCLE,2017-04-05T00:00:00,2017,April,Wednesday,5,95,7,2017-04-19T00:00:00,2017,April,Wednesday,19,109,16,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,,MT,18,BLK,500.0,STOLEN,20976,"{'type': 'Point', 'coordinates': (-79.44569863000001, 43.66489681)}"
-21007,15173,GO-20179006905,THEFT FROM MOTOR VEHICLE UNDER,2017-05-21T00:00:00,2017,May,Sunday,21,141,23,2017-05-24T00:00:00,2017,May,Wednesday,24,144,13,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,TO,10,BLK,2500.0,STOLEN,20977,"{'type': 'Point', 'coordinates': (-79.44036912, 43.66316381000001)}"
-21008,15174,GO-20179006905,THEFT FROM MOTOR VEHICLE UNDER,2017-05-21T00:00:00,2017,May,Sunday,21,141,23,2017-05-24T00:00:00,2017,May,Wednesday,24,144,13,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,RG,10,WHI,1000.0,STOLEN,20978,"{'type': 'Point', 'coordinates': (-79.44036912, 43.66316381000001)}"
-21009,15176,GO-2017960768,THEFT UNDER,2017-05-31T00:00:00,2017,May,Wednesday,31,151,0,2017-05-31T00:00:00,2017,May,Wednesday,31,151,9,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KHS,URBAN X,OT,21,GRY,320.0,STOLEN,20979,"{'type': 'Point', 'coordinates': (-79.44340776, 43.66537166)}"
-21010,15177,GO-2017960768,THEFT UNDER,2017-05-31T00:00:00,2017,May,Wednesday,31,151,0,2017-05-31T00:00:00,2017,May,Wednesday,31,151,9,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,IRON HORSE,,OT,21,BLUGRY,200.0,RECOVERED,20980,"{'type': 'Point', 'coordinates': (-79.44340776, 43.66537166)}"
-21011,15181,GO-20179009998,THEFT UNDER - BICYCLE,2017-07-10T00:00:00,2017,July,Monday,10,191,18,2017-07-11T00:00:00,2017,July,Tuesday,11,192,18,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,,OT,1,WHI,0.0,STOLEN,20981,"{'type': 'Point', 'coordinates': (-79.45502368000001, 43.6638016)}"
-21012,15186,GO-20179011616,THEFT UNDER - BICYCLE,2017-08-02T00:00:00,2017,August,Wednesday,2,214,17,2017-08-03T00:00:00,2017,August,Thursday,3,215,13,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,SEDONA,RG,21,PLE,500.0,STOLEN,20982,"{'type': 'Point', 'coordinates': (-79.44569863000001, 43.66489681)}"
-21013,15195,GO-20179017280,THEFT UNDER,2017-10-14T00:00:00,2017,October,Saturday,14,287,17,2017-10-15T00:00:00,2017,October,Sunday,15,288,17,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),Ttc Subway Station,Transit,CC,NEVADA,MT,21,WHI,200.0,STOLEN,20983,"{'type': 'Point', 'coordinates': (-79.43532635000001, 43.65988369)}"
-21014,15199,GO-20171971404,THEFT UNDER - BICYCLE,2017-10-27T00:00:00,2017,October,Friday,27,300,1,2017-10-31T00:00:00,2017,October,Tuesday,31,304,13,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KONA\,JAKE THE SNAKE,OT,21,OTH,2000.0,STOLEN,20984,"{'type': 'Point', 'coordinates': (-79.44340776, 43.66537166)}"
-21015,15202,GO-20179020665,THEFT UNDER - BICYCLE,2017-11-25T00:00:00,2017,November,Saturday,25,329,23,2017-11-27T00:00:00,2017,November,Monday,27,331,12,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,2007 DAWG DELUX,MT,24,DGR,3500.0,STOLEN,20985,"{'type': 'Point', 'coordinates': (-79.44234715, 43.66277184)}"
-21016,15211,GO-20189009469,THEFT UNDER - BICYCLE,2018-03-25T00:00:00,2018,March,Sunday,25,84,1,2018-03-26T00:00:00,2018,March,Monday,26,85,10,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,HYBRID ROAD/MOU,OT,7,WHI,150.0,STOLEN,20986,"{'type': 'Point', 'coordinates': (-79.45121138, 43.66574636)}"
-21017,15215,GO-20189011754,THEFT UNDER - BICYCLE,2018-04-16T00:00:00,2018,April,Monday,16,106,2,2018-04-16T00:00:00,2018,April,Monday,16,106,9,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GF,,RG,21,,300.0,STOLEN,20987,"{'type': 'Point', 'coordinates': (-79.44569863000001, 43.66489681)}"
-21018,15236,GO-20189026631,THEFT UNDER,2018-08-12T00:00:00,2018,August,Sunday,12,224,11,2018-08-16T00:00:00,2018,August,Thursday,16,228,11,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,NO,,MT,24,,0.0,STOLEN,20988,"{'type': 'Point', 'coordinates': (-79.438146, 43.666428280000005)}"
-21019,15239,GO-20189031065,THEFT UNDER,2018-09-18T00:00:00,2018,September,Tuesday,18,261,20,2018-09-19T00:00:00,2018,September,Wednesday,19,262,10,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,,RG,9,,650.0,STOLEN,20989,"{'type': 'Point', 'coordinates': (-79.45296738, 43.66233803)}"
-21020,15240,GO-20181833742,THEFT UNDER - BICYCLE,2018-09-28T00:00:00,2018,September,Friday,28,271,17,2018-10-04T00:00:00,2018,October,Thursday,4,277,10,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,3900,MT,24,BLKSIL,,STOLEN,20990,"{'type': 'Point', 'coordinates': (-79.44306206, 43.66450282)}"
-21021,15241,GO-20189033692,THEFT UNDER - BICYCLE,2018-10-11T00:00:00,2018,October,Thursday,11,284,15,2018-10-11T00:00:00,2018,October,Thursday,11,284,15,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,1,BLU,200.0,STOLEN,20991,"{'type': 'Point', 'coordinates': (-79.44770883, 43.65977965)}"
-21022,15271,GO-20199020272,THEFT UNDER,2019-06-27T00:00:00,2019,June,Thursday,27,178,3,2019-06-27T00:00:00,2019,June,Thursday,27,178,11,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,RG,7,BLK,500.0,STOLEN,20992,"{'type': 'Point', 'coordinates': (-79.44991158, 43.65952847)}"
-21023,15273,GO-20191302382,B&E W'INTENT,2019-07-11T00:00:00,2019,July,Thursday,11,192,22,2019-07-12T00:00:00,2019,July,Friday,12,193,11,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RETRO SPEC,BOWMAN,RG,12,BLK,360.0,STOLEN,20993,"{'type': 'Point', 'coordinates': (-79.44131517, 43.66297368)}"
-21024,15277,GO-20191354919,B&E,2019-07-18T00:00:00,2019,July,Thursday,18,199,23,2019-07-19T00:00:00,2019,July,Friday,19,200,13,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,DOLCE,RC,0,WHI,1200.0,STOLEN,20994,"{'type': 'Point', 'coordinates': (-79.44851498, 43.66244024)}"
-21025,15279,GO-20199023349,THEFT UNDER - BICYCLE,2019-07-19T00:00:00,2019,July,Friday,19,200,22,2019-07-23T00:00:00,2019,July,Tuesday,23,204,8,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,,RG,18,GRY,0.0,STOLEN,20995,"{'type': 'Point', 'coordinates': (-79.44569863000001, 43.66489681)}"
-21026,15298,GO-20209012237,THEFT UNDER,2020-04-27T00:00:00,2020,April,Monday,27,118,15,2020-04-30T00:00:00,2020,April,Thursday,30,121,15,D11,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,3,PLE,500.0,STOLEN,20996,"{'type': 'Point', 'coordinates': (-79.44569863000001, 43.66489681)}"
-21027,15343,GO-20149005504,THEFT UNDER,2014-07-27T00:00:00,2014,July,Sunday,27,208,10,2014-07-31T00:00:00,2014,July,Thursday,31,212,12,D14,Toronto,93,Dovercourt-Wallace Emerson-Junction (93),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,OT,3,SIL,200.0,STOLEN,20997,"{'type': 'Point', 'coordinates': (-79.42322914, 43.6625099)}"
-21028,7075,GO-20209021322,THEFT UNDER,2020-08-20T00:00:00,2020,August,Thursday,20,233,19,2020-08-25T00:00:00,2020,August,Tuesday,25,238,17,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,MOSCOW,EL,32,BLK,2200.0,STOLEN,20998,"{'type': 'Point', 'coordinates': (-79.41717845, 43.66383426)}"
-21029,7101,GO-20201619983,THEFT OF EBIKE UNDER $5000,2020-08-28T00:00:00,2020,August,Friday,28,241,2,2020-08-28T00:00:00,2020,August,Friday,28,241,2,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,EL,1,GRY,2000.0,STOLEN,20999,"{'type': 'Point', 'coordinates': (-79.39410211, 43.66871992)}"
-21030,1707,GO-20179017794,THEFT UNDER - BICYCLE,2017-10-21T00:00:00,2017,October,Saturday,21,294,1,2017-10-21T00:00:00,2017,October,Saturday,21,294,18,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,LONG HAUL TRUCK,TO,2,BLK,2000.0,STOLEN,21000,"{'type': 'Point', 'coordinates': (-79.40210106, 43.67299255)}"
-21031,7116,GO-20209021677,THEFT UNDER - BICYCLE,2020-08-28T00:00:00,2020,August,Friday,28,241,7,2020-08-28T00:00:00,2020,August,Friday,28,241,22,D53,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,"PREMIUM, DROP H",OT,1,BLK,500.0,STOLEN,21001,"{'type': 'Point', 'coordinates': (-79.40050794, 43.67637283)}"
-21032,7119,GO-20209021682,THEFT FROM MOTOR VEHICLE UNDER,2020-08-29T00:00:00,2020,August,Saturday,29,242,0,2020-08-29T00:00:00,2020,August,Saturday,29,242,9,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,2010 FULL CARBO,RC,50,RED,4500.0,STOLEN,21002,"{'type': 'Point', 'coordinates': (-79.39980351, 43.67437422)}"
-21033,7154,GO-20201650194,THEFT UNDER - BICYCLE,2020-09-01T00:00:00,2020,September,Tuesday,1,245,10,2020-09-02T00:00:00,2020,September,Wednesday,2,246,17,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DOHAN,VYBE D7,OT,7,BLK,580.0,STOLEN,21003,"{'type': 'Point', 'coordinates': (-79.3916327, 43.67973412)}"
-21034,7217,GO-20209022751,THEFT UNDER - BICYCLE,2020-09-09T00:00:00,2020,September,Wednesday,9,253,9,2020-09-09T00:00:00,2020,September,Wednesday,9,253,13,D53,Toronto,95,Annex (95),Schools During Un-Supervised Activity,Educational,TR,7.2 WOMENS,RG,21,GRN,750.0,STOLEN,21005,"{'type': 'Point', 'coordinates': (-79.40238049, 43.66945912)}"
-21035,7218,GO-20209022751,THEFT UNDER - BICYCLE,2020-09-09T00:00:00,2020,September,Wednesday,9,253,9,2020-09-09T00:00:00,2020,September,Wednesday,9,253,13,D53,Toronto,95,Annex (95),Schools During Un-Supervised Activity,Educational,OT,RIDEALONG,OT,1,ONG,200.0,STOLEN,21006,"{'type': 'Point', 'coordinates': (-79.40238049, 43.66945912)}"
-21036,7420,GO-20201879684,THEFT OF EBIKE UNDER $5000,2020-09-25T00:00:00,2020,September,Friday,25,269,18,2020-10-03T00:00:00,2020,October,Saturday,3,277,15,D14,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,DUAL PED,,EL,0,BLK,1300.0,STOLEN,21007,"{'type': 'Point', 'coordinates': (-79.41117403, 43.66511537)}"
-21037,7460,GO-20201952294,THEFT UNDER - BICYCLE,2020-10-11T00:00:00,2020,October,Sunday,11,285,19,2020-10-14T00:00:00,2020,October,Wednesday,14,288,16,D14,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,ZZZ,,RG,0,PLE,500.0,STOLEN,21008,"{'type': 'Point', 'coordinates': (-79.40691292, 43.66996615)}"
-21038,7464,GO-20209026363,THEFT UNDER,2020-10-10T00:00:00,2020,October,Saturday,10,284,19,2020-10-13T00:00:00,2020,October,Tuesday,13,287,19,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,XST,RG,24,BLK,399.0,STOLEN,21009,"{'type': 'Point', 'coordinates': (-79.40357439, 43.66921958)}"
-21039,7465,GO-20209026384,THEFT UNDER,2020-10-13T00:00:00,2020,October,Tuesday,13,287,20,2020-10-14T00:00:00,2020,October,Wednesday,14,288,0,D53,Toronto,95,Annex (95),Schools During Un-Supervised Activity,Educational,GT,99,MT,7,DBL,599.0,STOLEN,21010,"{'type': 'Point', 'coordinates': (-79.40149998, 43.66716143)}"
-21040,7468,GO-20201956918,THEFT UNDER - BICYCLE,2020-10-12T00:00:00,2020,October,Monday,12,286,21,2020-10-15T00:00:00,2020,October,Thursday,15,289,10,D53,Toronto,95,Annex (95),Universities / Colleges,Educational,GIANT,ESCAPE,MT,0,GRY,600.0,STOLEN,21011,"{'type': 'Point', 'coordinates': (-79.39979751, 43.66751644)}"
-21041,7529,GO-20202007181,THEFT UNDER - BICYCLE,2020-10-21T00:00:00,2020,October,Wednesday,21,295,10,2020-10-23T00:00:00,2020,October,Friday,23,297,9,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,TREK,EMONDA,RC,12,YEL,3500.0,STOLEN,21012,"{'type': 'Point', 'coordinates': (-79.38746342000002, 43.6719238)}"
-21042,7560,GO-20202045151,B&E,2020-10-27T00:00:00,2020,October,Tuesday,27,301,17,2020-10-28T00:00:00,2020,October,Wednesday,28,302,12,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,,OT,0,LBL,1200.0,STOLEN,21013,"{'type': 'Point', 'coordinates': (-79.39754923, 43.67763587)}"
-21043,7569,GO-20202058027,B&E,2020-10-29T00:00:00,2020,October,Thursday,29,303,19,2020-10-30T00:00:00,2020,October,Friday,30,304,15,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,DOMANE,RC,26,BLKRED,3000.0,RECOVERED,21014,"{'type': 'Point', 'coordinates': (-79.39445644, 43.67827840000001)}"
-21044,7579,GO-20209028318,THEFT UNDER,2020-10-31T00:00:00,2020,October,Saturday,31,305,19,2020-11-01T00:00:00,2020,November,Sunday,1,306,15,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,CROSSRIDER,RG,18,SIL,0.0,STOLEN,21015,"{'type': 'Point', 'coordinates': (-79.40238049, 43.66945912)}"
-21045,7643,GO-20202176478,THEFT OF EBIKE UNDER $5000,2020-11-12T00:00:00,2020,November,Thursday,12,317,21,2020-11-16T00:00:00,2020,November,Monday,16,321,20,D53,Toronto,95,Annex (95),Bar / Restaurant,Commercial,OTHER,NCM MOSPOW,EL,1,,2258.0,STOLEN,21016,"{'type': 'Point', 'coordinates': (-79.39410211, 43.66871992)}"
-21046,7650,GO-20209030199,THEFT UNDER,2020-11-21T00:00:00,2020,November,Saturday,21,326,13,2020-11-21T00:00:00,2020,November,Saturday,21,326,15,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,RG,10,CPR,,STOLEN,21017,"{'type': 'Point', 'coordinates': (-79.39054537, 43.66944743)}"
-21047,7691,GO-20202305812,B&E,2020-12-06T00:00:00,2020,December,Sunday,6,341,22,2020-12-07T00:00:00,2020,December,Monday,7,342,0,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ROCKY MOUNTAIN,OXYGEN RACE,MT,0,YEL,1500.0,STOLEN,21018,"{'type': 'Point', 'coordinates': (-79.39049843, 43.67524769)}"
-21048,7703,GO-20209031930,THEFT UNDER,2020-12-13T00:00:00,2020,December,Sunday,13,348,16,2020-12-13T00:00:00,2020,December,Sunday,13,348,18,D14,Toronto,95,Annex (95),Convenience Stores,Commercial,OT,TRICROSS SPORT,TO,27,DBL,300.0,STOLEN,21019,"{'type': 'Point', 'coordinates': (-79.40995373, 43.66538876)}"
-21049,7720,GO-20199033630,THEFT FROM MOTOR VEHICLE UNDER,2019-10-11T00:00:00,2019,October,Friday,11,284,8,2019-10-11T00:00:00,2019,October,Friday,11,284,21,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,AMIRA,RC,11,WHI,,STOLEN,21020,"{'type': 'Point', 'coordinates': (-79.40526597, 43.67030834)}"
-21050,7787,GO-20141752609,THEFT UNDER,2014-03-23T00:00:00,2014,March,Sunday,23,82,0,2014-03-23T00:00:00,2014,March,Sunday,23,82,13,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,1EM313,EL,10,BLK,932.0,STOLEN,21023,"{'type': 'Point', 'coordinates': (-79.41293786, 43.66959481)}"
-21051,7923,GO-20149003322,THEFT UNDER,2014-04-28T00:00:00,2014,April,Monday,28,118,6,2014-05-14T00:00:00,2014,May,Wednesday,14,134,7,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,RG,10,BLU,1400.0,STOLEN,21024,"{'type': 'Point', 'coordinates': (-79.41047653, 43.67397307)}"
-21052,7947,GO-20149003461,THEFT UNDER,2014-05-19T00:00:00,2014,May,Monday,19,139,22,2014-05-20T00:00:00,2014,May,Tuesday,20,140,9,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,GIANT,RG,60,,650.0,STOLEN,21025,"{'type': 'Point', 'coordinates': (-79.40210106, 43.67299255)}"
-21053,7976,GO-20149003581,THEFT UNDER,2014-04-18T00:00:00,2014,April,Friday,18,108,15,2014-05-25T00:00:00,2014,May,Sunday,25,145,15,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,GI,,RC,21,BLK,,STOLEN,21026,"{'type': 'Point', 'coordinates': (-79.39539614, 43.67190098)}"
-21054,7977,GO-20149003581,THEFT UNDER,2014-04-18T00:00:00,2014,April,Friday,18,108,15,2014-05-25T00:00:00,2014,May,Sunday,25,145,15,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,18,,,STOLEN,21027,"{'type': 'Point', 'coordinates': (-79.39539614, 43.67190098)}"
-21055,7979,GO-20142167489,THEFT UNDER,2014-05-27T00:00:00,2014,May,Tuesday,27,147,21,2014-05-28T00:00:00,2014,May,Wednesday,28,148,4,D14,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SUPERCYCLE,JS.014,MT,21,BLKRED,200.0,STOLEN,21028,"{'type': 'Point', 'coordinates': (-79.42030175, 43.67185242)}"
-21056,7982,GO-20149003594,THEFT UNDER,2014-05-23T00:00:00,2014,May,Friday,23,143,19,2014-05-27T00:00:00,2014,May,Tuesday,27,147,10,D53,Toronto,95,Annex (95),Ttc Subway Station,Transit,OT,,RC,1,WHI,400.0,STOLEN,21029,"{'type': 'Point', 'coordinates': (-79.39979751, 43.66751644)}"
-21057,7995,GO-20142168505,THEFT UNDER,2014-05-28T00:00:00,2014,May,Wednesday,28,148,8,2014-05-30T00:00:00,2014,May,Friday,30,150,14,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DEVINCI,HYBRIDE,MT,10,RED,500.0,STOLEN,21030,"{'type': 'Point', 'coordinates': (-79.38946773, 43.66966903)}"
-21058,8002,GO-20149003657,THEFT UNDER,2014-05-26T00:00:00,2014,May,Monday,26,146,18,2014-05-28T00:00:00,2014,May,Wednesday,28,148,15,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,1,BLK,499.0,STOLEN,21031,"{'type': 'Point', 'coordinates': (-79.40743417, 43.66591416)}"
-21059,8022,GO-20142190365,THEFT UNDER,2014-05-25T00:00:00,2014,May,Sunday,25,145,21,2014-05-31T00:00:00,2014,May,Saturday,31,151,11,D53,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,DIAMONDBACK,MIRAMAR,OT,21,,150.0,STOLEN,21032,"{'type': 'Point', 'coordinates': (-79.40210106, 43.67299255)}"
-21060,8068,GO-20142248596,THEFT UNDER - BICYCLE,2014-06-08T00:00:00,2014,June,Sunday,8,159,14,2014-06-08T00:00:00,2014,June,Sunday,8,159,16,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,OCR,RC,16,BLU,1500.0,STOLEN,21033,"{'type': 'Point', 'coordinates': (-79.38946773, 43.66966903)}"
-21061,8070,GO-20142248610,THEFT UNDER,2014-06-08T00:00:00,2014,June,Sunday,8,159,14,2014-06-08T00:00:00,2014,June,Sunday,8,159,19,D52,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,YUKON,RG,21,DBL,600.0,STOLEN,21034,"{'type': 'Point', 'coordinates': (-79.38946773, 43.66966903)}"
-21062,8114,GO-20149003925,THEFT UNDER,2014-06-09T00:00:00,2014,June,Monday,9,160,20,2014-06-09T00:00:00,2014,June,Monday,9,160,20,D53,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,TO,1,BLK,1000.0,STOLEN,21035,"{'type': 'Point', 'coordinates': (-79.39434823, 43.67398581)}"
-21063,8178,GO-20142332096,THEFT UNDER,2014-06-20T00:00:00,2014,June,Friday,20,171,17,2014-06-20T00:00:00,2014,June,Friday,20,171,18,D53,Toronto,95,Annex (95),Other Train Tracks,Other,URBANITE,,OT,21,WHI,,RECOVERED,21036,"{'type': 'Point', 'coordinates': (-79.39094710000002, 43.68055629)}"
-21064,8190,GO-20149004239,THEFT UNDER,2014-06-08T00:00:00,2014,June,Sunday,8,159,1,2014-06-19T00:00:00,2014,June,Thursday,19,170,11,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,DAY TRIPPER,RG,3,BRN,500.0,STOLEN,21037,"{'type': 'Point', 'coordinates': (-79.41234453, 43.66811332)}"
-21065,8240,GO-20149004407,THEFT UNDER,2014-06-24T00:00:00,2014,June,Tuesday,24,175,13,2014-06-24T00:00:00,2014,June,Tuesday,24,175,19,D14,Toronto,95,Annex (95),Ttc Subway Station,Transit,FJ,CLASSIC,RG,1,WHI,650.0,STOLEN,21038,"{'type': 'Point', 'coordinates': (-79.41853537, 43.66394772)}"
-21066,8256,GO-20149004470,THEFT UNDER,2014-06-25T00:00:00,2014,June,Wednesday,25,176,9,2014-06-26T00:00:00,2014,June,Thursday,26,177,12,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,BEATNIK 2009,RC,1,BGE,650.0,STOLEN,21039,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-21067,8288,GO-20149004572,THEFT UNDER,2014-06-29T00:00:00,2014,June,Sunday,29,180,13,2014-06-30T00:00:00,2014,June,Monday,30,181,10,D53,Toronto,95,Annex (95),Bar / Restaurant,Commercial,KO,KONA LISA HT,MT,21,PLE,1500.0,STOLEN,21040,"{'type': 'Point', 'coordinates': (-79.38718014, 43.67129793)}"
-21068,8294,GO-20142444034,THEFT UNDER,2014-07-05T00:00:00,2014,July,Saturday,5,186,14,2014-07-06T00:00:00,2014,July,Sunday,6,187,19,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,MIXTE,RG,3,CRM,800.0,STOLEN,21041,"{'type': 'Point', 'coordinates': (-79.41394991, 43.672149090000005)}"
-21069,8314,GO-20149004630,THEFT UNDER,2014-07-01T00:00:00,2014,July,Tuesday,1,182,22,2014-07-02T00:00:00,2014,July,Wednesday,2,183,15,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE,RG,21,WHI,600.0,STOLEN,21042,"{'type': 'Point', 'coordinates': (-79.41394991, 43.672149090000005)}"
-21070,8348,GO-20142490446,THEFT UNDER,2014-07-13T00:00:00,2014,July,Sunday,13,194,12,2014-07-13T00:00:00,2014,July,Sunday,13,194,18,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,RG,30,WHI,3000.0,STOLEN,21043,"{'type': 'Point', 'coordinates': (-79.41632123, 43.67160848)}"
-21071,8349,GO-20149004707,THEFT UNDER,2014-07-03T00:00:00,2014,July,Thursday,3,184,16,2014-07-04T00:00:00,2014,July,Friday,4,185,17,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,R3,RC,20,BLK,5000.0,STOLEN,21044,"{'type': 'Point', 'coordinates': (-79.39048965, 43.67213792)}"
-21072,8359,GO-20149004782,THEFT UNDER,2014-07-07T00:00:00,2014,July,Monday,7,188,8,2014-07-07T00:00:00,2014,July,Monday,7,188,15,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,VITA,OT,16,SIL,550.0,STOLEN,21045,"{'type': 'Point', 'coordinates': (-79.40526597, 43.67030834)}"
-21073,8381,GO-20142509981,THEFT UNDER,2014-07-16T00:00:00,2014,July,Wednesday,16,197,14,2014-07-16T00:00:00,2014,July,Wednesday,16,197,15,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,JAMIS,"21"""" TRAIL X3",MT,21,GRN,513.0,STOLEN,21046,"{'type': 'Point', 'coordinates': (-79.38946773, 43.66966903)}"
-21074,8466,GO-20149005166,THEFT UNDER,2014-07-18T00:00:00,2014,July,Friday,18,199,16,2014-07-20T00:00:00,2014,July,Sunday,20,201,16,D53,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,COMMUTER,RG,21,YEL,,STOLEN,21048,"{'type': 'Point', 'coordinates': (-79.39598838000002, 43.67335138)}"
-21075,8494,GO-20142543697,THEFT UNDER,2014-07-16T00:00:00,2014,July,Wednesday,16,197,10,2014-07-21T00:00:00,2014,July,Monday,21,202,18,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MCKINLEY,,MT,21,GRY,320.0,STOLEN,21049,"{'type': 'Point', 'coordinates': (-79.39015983, 43.67135683)}"
-21076,8539,GO-20149005418,THEFT UNDER,2014-07-26T00:00:00,2014,July,Saturday,26,207,12,2014-07-28T00:00:00,2014,July,Monday,28,209,20,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,4500,MT,28,RED,800.0,STOLEN,21050,"{'type': 'Point', 'coordinates': (-79.40383181, 43.66665689)}"
-21077,8545,GO-20142595399,THEFT UNDER,2014-07-24T00:00:00,2014,July,Thursday,24,205,9,2014-07-29T00:00:00,2014,July,Tuesday,29,210,14,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,EARL,OT,1,BLK,622.0,STOLEN,21051,"{'type': 'Point', 'coordinates': (-79.40526597, 43.67030834)}"
-21078,8658,GO-20142726107,UNLAWFULLY IN DWELLING-HOUSE,2014-08-18T00:00:00,2014,August,Monday,18,230,12,2014-08-18T00:00:00,2014,August,Monday,18,230,12,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ROCKY MOUNTAIN,,MT,24,BLU,500.0,STOLEN,21052,"{'type': 'Point', 'coordinates': (-79.403659, 43.67266985)}"
-21079,8748,GO-20149006154,THEFT UNDER,2014-08-21T00:00:00,2014,August,Thursday,21,233,4,2014-08-23T00:00:00,2014,August,Saturday,23,235,12,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MA,LARKSPUR,RG,21,SIL,500.0,STOLEN,21053,"{'type': 'Point', 'coordinates': (-79.41192717, 43.67038291)}"
-21080,8763,GO-20149006371,THEFT UNDER,2014-08-27T00:00:00,2014,August,Wednesday,27,239,9,2014-08-27T00:00:00,2014,August,Wednesday,27,239,19,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,TRAFIK,RG,21,BLK,450.0,STOLEN,21054,"{'type': 'Point', 'coordinates': (-79.40210106, 43.67299255)}"
-21081,8794,GO-20142837936,THEFT UNDER,2014-09-04T00:00:00,2014,September,Thursday,4,247,0,2014-09-04T00:00:00,2014,September,Thursday,4,247,1,D53,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SCHWINN,,FO,1,BLU,400.0,RECOVERED,21055,"{'type': 'Point', 'coordinates': (-79.40028097000001, 43.66874114)}"
-21082,8804,GO-20149006534,THEFT UNDER,2014-08-29T00:00:00,2014,August,Friday,29,241,22,2014-08-30T00:00:00,2014,August,Saturday,30,242,17,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,,RG,21,DBL,500.0,STOLEN,21056,"{'type': 'Point', 'coordinates': (-79.41607591000002, 43.67098133)}"
-21083,8810,GO-20149006567,THEFT UNDER,2014-08-28T00:00:00,2014,August,Thursday,28,240,23,2014-09-04T00:00:00,2014,September,Thursday,4,247,16,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,BM,5,RED,,STOLEN,21057,"{'type': 'Point', 'coordinates': (-79.4208938, 43.67001212)}"
-21084,8814,GO-20149006570,THEFT UNDER,2014-09-03T00:00:00,2014,September,Wednesday,3,246,0,2014-09-04T00:00:00,2014,September,Thursday,4,247,17,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,CC,,RG,30,GRY,240.0,STOLEN,21058,"{'type': 'Point', 'coordinates': (-79.40266823, 43.66690503)}"
-21085,8822,GO-20149006612,THEFT UNDER,2014-09-05T00:00:00,2014,September,Friday,5,248,11,2014-09-06T00:00:00,2014,September,Saturday,6,249,11,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,18,PLE,0.0,STOLEN,21059,"{'type': 'Point', 'coordinates': (-79.40473364, 43.66896169)}"
-21086,8833,GO-20149006654,THEFT UNDER,2014-09-06T00:00:00,2014,September,Saturday,6,249,2,2014-09-07T00:00:00,2014,September,Sunday,7,250,19,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,UK,STREAM,SC,32,WHI,2000.0,STOLEN,21060,"{'type': 'Point', 'coordinates': (-79.40028097000001, 43.66874114)}"
-21087,8838,GO-20149006669,THEFT UNDER,2014-09-08T00:00:00,2014,September,Monday,8,251,1,2014-09-08T00:00:00,2014,September,Monday,8,251,9,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,CC,,MT,6,,300.0,STOLEN,21061,"{'type': 'Point', 'coordinates': (-79.39479453, 43.67508461)}"
-21088,8855,GO-20149006728,THEFT UNDER,2014-09-08T00:00:00,2014,September,Monday,8,251,22,2014-09-09T00:00:00,2014,September,Tuesday,9,252,19,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,CITY GLIDE 7,RG,7,BLK,734.0,STOLEN,21062,"{'type': 'Point', 'coordinates': (-79.39380783, 43.67516312)}"
-21089,8873,GO-20142889712,THEFT UNDER,2014-09-11T00:00:00,2014,September,Thursday,11,254,0,2014-09-11T00:00:00,2014,September,Thursday,11,254,15,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,HARO,,EL,30,BLK,500.0,STOLEN,21063,"{'type': 'Point', 'coordinates': (-79.41218524, 43.67033747)}"
-21090,8936,GO-20149007084,THEFT UNDER,2014-09-21T00:00:00,2014,September,Sunday,21,264,12,2014-09-21T00:00:00,2014,September,Sunday,21,264,17,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,30,BLK,450.0,STOLEN,21064,"{'type': 'Point', 'coordinates': (-79.39459537, 43.6699318)}"
-21091,8940,GO-20142961690,THEFT UNDER,2014-09-22T00:00:00,2014,September,Monday,22,265,8,2014-09-22T00:00:00,2014,September,Monday,22,265,17,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCOTT,40,OT,0,BLKGRN,550.0,STOLEN,21065,"{'type': 'Point', 'coordinates': (-79.39832557, 43.66783119)}"
-21092,8974,GO-20142982384,THEFT UNDER,2014-09-24T00:00:00,2014,September,Wednesday,24,267,23,2014-09-25T00:00:00,2014,September,Thursday,25,268,17,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BIANCHI,PRIVA,RC,1,OTH,1500.0,STOLEN,21066,"{'type': 'Point', 'coordinates': (-79.40623518, 43.66616454)}"
-21093,8979,GO-20149007202,THEFT UNDER,2014-09-24T00:00:00,2014,September,Wednesday,24,267,18,2014-09-25T00:00:00,2014,September,Thursday,25,268,16,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,,OT,20,LBL,,STOLEN,21067,"{'type': 'Point', 'coordinates': (-79.40526597, 43.67030834)}"
-21094,9024,GO-20149007411,THEFT UNDER,2014-10-05T00:00:00,2014,October,Sunday,5,278,13,2014-10-05T00:00:00,2014,October,Sunday,5,278,17,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,XZ,MT,21,BLK,500.0,STOLEN,21068,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-21095,9085,GO-20143140472,THEFT UNDER,2014-10-16T00:00:00,2014,October,Thursday,16,289,8,2014-10-20T00:00:00,2014,October,Monday,20,293,13,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,URBAN EXPRESS,,OT,1,BLK,500.0,STOLEN,21069,"{'type': 'Point', 'coordinates': (-79.39410211, 43.66871992)}"
-21096,9097,GO-20143154088,THEFT UNDER,2014-10-22T00:00:00,2014,October,Wednesday,22,295,8,2014-10-22T00:00:00,2014,October,Wednesday,22,295,15,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OTHER,LINUS,OT,8,LGR,3000.0,STOLEN,21070,"{'type': 'Point', 'coordinates': (-79.39410211, 43.66871992)}"
-21097,9114,GO-20149007802,THEFT UNDER,2014-10-22T00:00:00,2014,October,Wednesday,22,295,22,2014-10-24T00:00:00,2014,October,Friday,24,297,14,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,SU,,MT,21,,,STOLEN,21071,"{'type': 'Point', 'coordinates': (-79.40526597, 43.67030834)}"
-21098,9146,GO-20143235464,THEFT UNDER,2014-11-03T00:00:00,2014,November,Monday,3,307,21,2014-11-04T00:00:00,2014,November,Tuesday,4,308,9,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ALL CITY,MR PINK,OT,18,RED,1200.0,STOLEN,21072,"{'type': 'Point', 'coordinates': (-79.40600258, 43.67218781)}"
-21099,9147,GO-20143235464,THEFT UNDER,2014-11-03T00:00:00,2014,November,Monday,3,307,21,2014-11-04T00:00:00,2014,November,Tuesday,4,308,9,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MASI,ALARE,OT,18,BLU,1200.0,STOLEN,21073,"{'type': 'Point', 'coordinates': (-79.40600258, 43.67218781)}"
-21100,9160,GO-20143256849,THEFT UNDER,2014-09-15T00:00:00,2014,September,Monday,15,258,9,2014-11-07T00:00:00,2014,November,Friday,7,311,12,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KHS,ALITE 6061,EL,27,BLK,600.0,STOLEN,21074,"{'type': 'Point', 'coordinates': (-79.41535942, 43.66584409)}"
-21101,9171,GO-20143283147,THEFT UNDER,2014-11-11T00:00:00,2014,November,Tuesday,11,315,13,2014-11-11T00:00:00,2014,November,Tuesday,11,315,17,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SURLY,LONG HAUL TRUCK,RC,27,BLK,1500.0,STOLEN,21075,"{'type': 'Point', 'coordinates': (-79.41057995, 43.67066529)}"
-21102,9181,GO-20149008155,THEFT UNDER,2014-11-11T00:00:00,2014,November,Tuesday,11,315,21,2014-11-12T00:00:00,2014,November,Wednesday,12,316,10,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RC,1,BLK,550.0,STOLEN,21076,"{'type': 'Point', 'coordinates': (-79.38711576, 43.671122340000004)}"
-21103,9194,GO-20143326434,THEFT UNDER,2014-11-01T00:00:00,2014,November,Saturday,1,305,10,2014-11-19T00:00:00,2014,November,Wednesday,19,323,7,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MIRRACO,EDIT,OT,1,RED,400.0,STOLEN,21077,"{'type': 'Point', 'coordinates': (-79.40944561, 43.67172945)}"
-21104,9197,GO-20143340164,THEFT UNDER,2014-11-20T00:00:00,2014,November,Thursday,20,324,20,2014-11-21T00:00:00,2014,November,Friday,21,325,8,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MASI,,RG,1,BLU,800.0,STOLEN,21078,"{'type': 'Point', 'coordinates': (-79.41295924, 43.66637092)}"
-21105,9252,GO-20149008555,THEFT UNDER,2014-11-03T00:00:00,2014,November,Monday,3,307,21,2014-12-04T00:00:00,2014,December,Thursday,4,338,22,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,,TO,21,RED,,STOLEN,21079,"{'type': 'Point', 'coordinates': (-79.40050955, 43.67752908)}"
-21106,9255,GO-201554967,THEFT UNDER,2014-12-05T00:00:00,2014,December,Friday,5,339,9,2015-01-10T00:00:00,2015,January,Saturday,10,10,14,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,RALEIGH,CENTURIAN,RC,10,YEL,200.0,STOLEN,21080,"{'type': 'Point', 'coordinates': (-79.39380783, 43.67516312)}"
-21107,9300,GO-20159000938,THEFT UNDER,2015-02-13T00:00:00,2015,February,Friday,13,44,11,2015-02-23T00:00:00,2015,February,Monday,23,54,12,D14,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KO,MINUTE,OT,14,BLK,1321.0,STOLEN,21081,"{'type': 'Point', 'coordinates': (-79.40974314, 43.66849798)}"
-21108,9301,GO-20159000938,THEFT UNDER,2015-02-13T00:00:00,2015,February,Friday,13,44,11,2015-02-23T00:00:00,2015,February,Monday,23,54,12,D14,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,RAZORBACK,MT,21,GRY,700.0,STOLEN,21082,"{'type': 'Point', 'coordinates': (-79.40974314, 43.66849798)}"
-21109,9377,GO-2015580018,THEFT UNDER,2015-04-07T00:00:00,2015,April,Tuesday,7,97,9,2015-04-08T00:00:00,2015,April,Wednesday,8,98,12,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,LINUS,GASTON,OT,3,BLK,1000.0,STOLEN,21083,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-21110,9378,GO-20159001749,THEFT UNDER,2015-04-01T00:00:00,2015,April,Wednesday,1,91,23,2015-04-07T00:00:00,2015,April,Tuesday,7,97,22,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,NO,1999 AXIA,OT,8,SIL,549.0,STOLEN,21084,"{'type': 'Point', 'coordinates': (-79.40600258, 43.67218781)}"
-21111,9451,GO-2015663929,THEFT UNDER,2015-04-21T00:00:00,2015,April,Tuesday,21,111,22,2015-04-22T00:00:00,2015,April,Wednesday,22,112,11,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KHS,URBAN SOUL,OT,1,GRY,500.0,STOLEN,21085,"{'type': 'Point', 'coordinates': (-79.41836917, 43.66681301)}"
-21112,9477,GO-2015691454,THEFT UNDER,2015-04-24T00:00:00,2015,April,Friday,24,114,9,2015-04-26T00:00:00,2015,April,Sunday,26,116,16,D53,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,RAPTOR,EL,30,MRN,1500.0,STOLEN,21086,"{'type': 'Point', 'coordinates': (-79.39690172, 43.67555234)}"
-21113,9483,GO-2015696365,THEFT UNDER,2015-04-27T00:00:00,2015,April,Monday,27,117,12,2015-04-27T00:00:00,2015,April,Monday,27,117,13,D53,Toronto,95,Annex (95),"Open Areas (Lakes, Parks, Rivers)",Outside,UNKNOWN MAKE,URBAN X,TO,18,GRY,3000.0,STOLEN,21087,"{'type': 'Point', 'coordinates': (-79.4007248, 43.66981528)}"
-21114,9601,GO-20159002854,THEFT UNDER,2015-05-15T00:00:00,2015,May,Friday,15,135,17,2015-05-18T00:00:00,2015,May,Monday,18,138,17,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,MOTORINO,EL,32,BLK,,STOLEN,21088,"{'type': 'Point', 'coordinates': (-79.4143519, 43.67315006)}"
-21115,9609,GO-20159002902,THEFT UNDER,2015-05-19T00:00:00,2015,May,Tuesday,19,139,14,2015-05-19T00:00:00,2015,May,Tuesday,19,139,18,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,KONA DEW PLUS 5,OT,24,BRN,700.0,STOLEN,21089,"{'type': 'Point', 'coordinates': (-79.39832557, 43.66783119)}"
-21116,9614,GO-20159002923,THEFT UNDER,2015-05-17T00:00:00,2015,May,Sunday,17,137,15,2015-05-20T00:00:00,2015,May,Wednesday,20,140,9,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,RC,18,BLK,1800.0,STOLEN,21090,"{'type': 'Point', 'coordinates': (-79.38782632, 43.6728738)}"
-21117,9649,GO-20159003056,THEFT UNDER,2015-05-24T00:00:00,2015,May,Sunday,24,144,22,2015-05-25T00:00:00,2015,May,Monday,25,145,14,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,X-RAY,RG,1,CRM,550.0,STOLEN,21091,"{'type': 'Point', 'coordinates': (-79.38946773, 43.66966903)}"
-21118,9721,GO-20159003289,THEFT UNDER,2014-12-16T00:00:00,2014,December,Tuesday,16,350,22,2015-06-02T00:00:00,2015,June,Tuesday,2,153,22,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,MALAHAT,RG,21,,,STOLEN,21092,"{'type': 'Point', 'coordinates': (-79.40826418, 43.66803619)}"
-21119,9739,GO-2015946629,THEFT UNDER,2015-06-05T00:00:00,2015,June,Friday,5,156,21,2015-06-07T00:00:00,2015,June,Sunday,7,158,16,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EVERYDAY,CRUISER,OT,6,BLU,200.0,STOLEN,21093,"{'type': 'Point', 'coordinates': (-79.38942023, 43.67292854)}"
-21120,9756,GO-2015960623,THEFT UNDER,2015-05-27T00:00:00,2015,May,Wednesday,27,147,7,2015-06-08T00:00:00,2015,June,Monday,8,159,15,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,10,RED,200.0,STOLEN,21094,"{'type': 'Point', 'coordinates': (-79.40826418, 43.66803619)}"
-21121,9760,GO-20159003461,THEFT UNDER,2015-06-09T00:00:00,2015,June,Tuesday,9,160,4,2015-06-09T00:00:00,2015,June,Tuesday,9,160,10,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,CAADX 105,TO,12,WHI,1500.0,STOLEN,21095,"{'type': 'Point', 'coordinates': (-79.39039203, 43.67914574)}"
-21122,9821,GO-20151003938,THEFT UNDER,2015-06-14T00:00:00,2015,June,Sunday,14,165,8,2015-06-15T00:00:00,2015,June,Monday,15,166,12,D53,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,MADONE 4.5,OT,21,BLK,2500.0,STOLEN,21098,"{'type': 'Point', 'coordinates': (-79.38942023, 43.67292854)}"
-21123,12836,GO-20162130492,THEFT OF EBIKE UNDER $5000,2016-11-30T00:00:00,2016,November,Wednesday,30,335,15,2016-12-01T00:00:00,2016,December,Thursday,1,336,9,D14,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,EL,0,RED,700.0,STOLEN,21099,"{'type': 'Point', 'coordinates': (-79.40531586, 43.66635847)}"
-21124,9839,GO-20151033542,THEFT UNDER,2015-06-18T00:00:00,2015,June,Thursday,18,169,11,2015-06-19T00:00:00,2015,June,Friday,19,170,21,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,MODEL,OT,7,SIL,1000.0,STOLEN,21100,"{'type': 'Point', 'coordinates': (-79.38980433, 43.67056247)}"
-21125,21407,GO-20169008827,THEFT UNDER - BICYCLE,2016-08-15T00:00:00,2016,August,Monday,15,228,12,2016-08-15T00:00:00,2016,August,Monday,15,228,22,D14,Toronto,95,Annex (95),Ttc Subway Station,Transit,UK,,RG,1,GRY,500.0,STOLEN,21101,"{'type': 'Point', 'coordinates': (-79.41174945, 43.66662023)}"
-21126,4752,GO-20199021933,THEFT FROM MOTOR VEHICLE UNDER,2019-07-11T00:00:00,2019,July,Thursday,11,192,21,2019-07-12T00:00:00,2019,July,Friday,12,193,9,D53,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,TREK,MT,24,SIL,1250.0,STOLEN,21102,"{'type': 'Point', 'coordinates': (-79.3886562, 43.67488192)}"
-21127,15939,GO-20159002851,THEFT UNDER,2015-05-16T00:00:00,2015,May,Saturday,16,136,16,2015-05-18T00:00:00,2015,May,Monday,18,138,15,D53,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,MT,8,SIL,,STOLEN,21103,"{'type': 'Point', 'coordinates': (-79.40238049, 43.66945912)}"
-21128,21507,GO-20171656582,THEFT UNDER - BICYCLE,2017-09-12T00:00:00,2017,September,Tuesday,12,255,14,2017-09-16T00:00:00,2017,September,Saturday,16,259,18,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,1,PLE,1000.0,STOLEN,21104,"{'type': 'Point', 'coordinates': (-79.43018260000001, 43.67294143)}"
-21129,9914,GO-20159004070,THEFT UNDER,2015-06-30T00:00:00,2015,June,Tuesday,30,181,16,2015-06-30T00:00:00,2015,June,Tuesday,30,181,16,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,CC,,OT,1,LBL,275.0,STOLEN,21105,"{'type': 'Point', 'coordinates': (-79.40526597, 43.67030834)}"
-21130,9916,GO-20151106807,THEFT UNDER,2015-06-30T00:00:00,2015,June,Tuesday,30,181,18,2015-07-01T00:00:00,2015,July,Wednesday,1,182,12,D14,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RALEIGH,UNKNOWN,OT,3,BLU,960.0,STOLEN,21106,"{'type': 'Point', 'coordinates': (-79.40473364, 43.66896169)}"
-21131,9980,GO-20159004367,THEFT UNDER,2015-07-09T00:00:00,2015,July,Thursday,9,190,16,2015-07-10T00:00:00,2015,July,Friday,10,191,10,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,TO,1,BRZ,400.0,STOLEN,21107,"{'type': 'Point', 'coordinates': (-79.40198145, 43.66838899)}"
-21132,9985,GO-20159004389,THEFT UNDER,2015-07-06T00:00:00,2015,July,Monday,6,187,15,2015-07-10T00:00:00,2015,July,Friday,10,191,14,D14,Toronto,95,Annex (95),Universities / Colleges,Educational,OT,OREGON,MT,21,BLK,270.0,STOLEN,21108,"{'type': 'Point', 'coordinates': (-79.40864191, 43.66567614)}"
-21133,9988,GO-20159004429,THEFT UNDER,2015-07-10T00:00:00,2015,July,Friday,10,191,15,2015-07-11T00:00:00,2015,July,Saturday,11,192,15,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,HEART,RG,1,BLK,415.0,STOLEN,21109,"{'type': 'Point', 'coordinates': (-79.40526597, 43.67030834)}"
-21134,10048,GO-20159004686,THEFT UNDER,2015-07-18T00:00:00,2015,July,Saturday,18,199,2,2015-07-18T00:00:00,2015,July,Saturday,18,199,20,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,21,DBL,100.0,STOLEN,21110,"{'type': 'Point', 'coordinates': (-79.39380783, 43.67516312)}"
-21135,10050,GO-20159004693,THEFT UNDER,2015-07-18T00:00:00,2015,July,Saturday,18,199,14,2015-07-18T00:00:00,2015,July,Saturday,18,199,14,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,MELLANO,RG,3,SIL,700.0,STOLEN,21111,"{'type': 'Point', 'coordinates': (-79.40628591, 43.66897569)}"
-21136,10114,GO-20151276335,THEFT UNDER,2015-07-26T00:00:00,2015,July,Sunday,26,207,12,2015-07-26T00:00:00,2015,July,Sunday,26,207,14,D13,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,REEBOCK,MT,18,BLK,180.0,STOLEN,21112,"{'type': 'Point', 'coordinates': (-79.38942023, 43.67292854)}"
-21137,10226,GO-20159005545,THEFT UNDER,2015-08-09T00:00:00,2015,August,Sunday,9,221,3,2015-08-09T00:00:00,2015,August,Sunday,9,221,17,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,GI,CYPRESS RW S 51,RG,21,SIL,496.0,STOLEN,21113,"{'type': 'Point', 'coordinates': (-79.41481904, 43.66434022)}"
-21138,10260,GO-20151412587,THEFT UNDER,2015-08-17T00:00:00,2015,August,Monday,17,229,8,2015-08-17T00:00:00,2015,August,Monday,17,229,8,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,EMMO,,EL,1,YEL,1200.0,STOLEN,21114,"{'type': 'Point', 'coordinates': (-79.39079343, 43.67319824)}"
-21139,10267,GO-20151419109,THEFT UNDER,2015-08-13T00:00:00,2015,August,Thursday,13,225,15,2015-08-18T00:00:00,2015,August,Tuesday,18,230,8,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,EL,3,WHI,,STOLEN,21116,"{'type': 'Point', 'coordinates': (-79.39758694, 43.67720231)}"
-21140,10335,GO-20159006292,THEFT UNDER,2015-07-26T00:00:00,2015,July,Sunday,26,207,14,2015-08-23T00:00:00,2015,August,Sunday,23,235,10,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,TALON,MT,30,BLU,900.0,STOLEN,21117,"{'type': 'Point', 'coordinates': (-79.41595309, 43.66733742)}"
-21141,10364,GO-20151504119,THEFT UNDER,2015-08-31T00:00:00,2015,August,Monday,31,243,23,2015-09-03T00:00:00,2015,September,Thursday,3,246,4,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,TITAN,EL,10,BLK,2500.0,STOLEN,21118,"{'type': 'Point', 'coordinates': (-79.38782632, 43.6728738)}"
-21142,10414,GO-20159006821,THEFT UNDER,2015-09-06T00:00:00,2015,September,Sunday,6,249,0,2015-09-06T00:00:00,2015,September,Sunday,6,249,14,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,MATARO-RED,RG,1,RED,1000.0,STOLEN,21119,"{'type': 'Point', 'coordinates': (-79.41047653, 43.67397307)}"
-21143,10450,GO-20151563001,THEFT UNDER,2015-09-09T00:00:00,2015,September,Wednesday,9,252,15,2015-09-10T00:00:00,2015,September,Thursday,10,253,11,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MERCIER,300,RG,12,BLU,500.0,STOLEN,21120,"{'type': 'Point', 'coordinates': (-79.41234453, 43.66811332)}"
-21144,10484,GO-20159007306,THEFT UNDER,2015-09-16T00:00:00,2015,September,Wednesday,16,259,2,2015-09-16T00:00:00,2015,September,Wednesday,16,259,22,D53,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,REBEL 60 VOLT,SC,3,RED,2095.0,STOLEN,21121,"{'type': 'Point', 'coordinates': (-79.40210106, 43.67299255)}"
-21145,10518,GO-20159007526,THEFT UNDER,2015-09-14T00:00:00,2015,September,Monday,14,257,16,2015-09-21T00:00:00,2015,September,Monday,21,264,18,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DB,,RG,21,TAN,900.0,STOLEN,21122,"{'type': 'Point', 'coordinates': (-79.41314032000001, 43.67009677)}"
-21146,10597,GO-20159008236,THEFT UNDER,2015-10-05T00:00:00,2015,October,Monday,5,278,21,2015-10-06T00:00:00,2015,October,Tuesday,6,279,11,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,7,WHI,695.0,STOLEN,21123,"{'type': 'Point', 'coordinates': (-79.40743417, 43.66591416)}"
-21147,21412,GO-20161492302,THEFT UNDER - BICYCLE,2016-08-23T00:00:00,2016,August,Tuesday,23,236,8,2016-08-23T00:00:00,2016,August,Tuesday,23,236,11,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KONA,LANAIL,MT,0,RED,500.0,STOLEN,21124,"{'type': 'Point', 'coordinates': (-79.40600258, 43.67218781)}"
-21148,1711,GO-20179017808,THEFT UNDER - BICYCLE,2017-09-23T00:00:00,2017,September,Saturday,23,266,21,2017-10-21T00:00:00,2017,October,Saturday,21,294,14,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,TR,FX3,OT,27,BLK,1300.0,STOLEN,21125,"{'type': 'Point', 'coordinates': (-79.39015983, 43.67135683)}"
-21149,10609,GO-20159008368,THEFT UNDER,2015-10-08T00:00:00,2015,October,Thursday,8,281,8,2015-10-08T00:00:00,2015,October,Thursday,8,281,23,D53,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,ESCAPE,RG,21,,700.0,STOLEN,21126,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-21150,10649,GO-20151794652,THEFT UNDER,2015-10-16T00:00:00,2015,October,Friday,16,289,6,2015-10-18T00:00:00,2015,October,Sunday,18,291,14,D14,Toronto,95,Annex (95),Ttc Subway Station,Transit,TREK,3500,MT,18,GRYSIL,600.0,STOLEN,21127,"{'type': 'Point', 'coordinates': (-79.41853537, 43.66394772)}"
-21151,10706,GO-20159009183,THEFT UNDER,2015-10-25T00:00:00,2015,October,Sunday,25,298,16,2015-10-30T00:00:00,2015,October,Friday,30,303,16,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,RM,METRO 30,OT,18,WHI,800.0,STOLEN,21128,"{'type': 'Point', 'coordinates': (-79.40484258, 43.6724255)}"
-21152,10708,GO-20159009223,THEFT UNDER,2015-11-01T00:00:00,2015,November,Sunday,1,305,14,2015-11-01T00:00:00,2015,November,Sunday,1,305,19,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,WALD 198GB MULT,RG,7,BLU,700.0,STOLEN,21129,"{'type': 'Point', 'coordinates': (-79.40663406, 43.66607805)}"
-21153,10714,GO-20151890608,PROPERTY - FOUND,2015-11-03T00:00:00,2015,November,Tuesday,3,307,8,2015-11-03T00:00:00,2015,November,Tuesday,3,307,22,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,ROAM,MT,24,BLK,,UNKNOWN,21130,"{'type': 'Point', 'coordinates': (-79.40841923, 43.6719398)}"
-21154,10716,GO-20159009315,THEFT UNDER,2015-10-30T00:00:00,2015,October,Friday,30,303,10,2015-11-03T00:00:00,2015,November,Tuesday,3,307,15,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SANTIAGO,RG,21,SIL,900.0,STOLEN,21131,"{'type': 'Point', 'coordinates': (-79.40841923, 43.6719398)}"
-21155,10729,GO-20151909974,THEFT UNDER,2015-10-18T00:00:00,2015,October,Sunday,18,291,1,2015-11-06T00:00:00,2015,November,Friday,6,310,17,D14,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GARY FISHER,PARAGON,RC,37,REDSIL,1000.0,STOLEN,21132,"{'type': 'Point', 'coordinates': (-79.40623518, 43.66616454)}"
-21156,10733,GO-20159009480,THEFT UNDER,2015-11-06T00:00:00,2015,November,Friday,6,310,23,2015-11-07T00:00:00,2015,November,Saturday,7,311,13,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,"INDIE 8IGH 18""""",RG,8,GRY,800.0,STOLEN,21133,"{'type': 'Point', 'coordinates': (-79.40826418, 43.66803619)}"
-21157,10759,GO-20159009652,THEFT UNDER,2015-10-29T00:00:00,2015,October,Thursday,29,302,18,2015-11-11T00:00:00,2015,November,Wednesday,11,315,20,D53,Toronto,95,Annex (95),Ttc Subway Station,Transit,TR,"2013 FX 7.1 20""""",RG,21,BLK,688.0,STOLEN,21134,"{'type': 'Point', 'coordinates': (-79.40028097000001, 43.66874114)}"
-21158,10760,GO-20159009689,THEFT UNDER,2015-11-08T00:00:00,2015,November,Sunday,8,312,20,2015-11-12T00:00:00,2015,November,Thursday,12,316,20,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,OT,18,LBL,350.0,STOLEN,21135,"{'type': 'Point', 'coordinates': (-79.41837695, 43.66358488)}"
-21159,10761,GO-20159009689,THEFT UNDER,2015-11-08T00:00:00,2015,November,Sunday,8,312,20,2015-11-12T00:00:00,2015,November,Thursday,12,316,20,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,"NORCO """"DIVA""""",RG,18,DBL,323.0,STOLEN,21136,"{'type': 'Point', 'coordinates': (-79.41837695, 43.66358488)}"
-21160,10824,GO-20159010339,THEFT UNDER,2015-07-18T00:00:00,2015,July,Saturday,18,199,11,2015-11-30T00:00:00,2015,November,Monday,30,334,11,D14,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RA,,OT,1,WHI,525.0,STOLEN,21137,"{'type': 'Point', 'coordinates': (-79.40526597, 43.67030834)}"
-21161,10825,GO-20159010339,THEFT UNDER,2015-07-18T00:00:00,2015,July,Saturday,18,199,11,2015-11-30T00:00:00,2015,November,Monday,30,334,11,D14,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,OT,6,,0.0,STOLEN,21138,"{'type': 'Point', 'coordinates': (-79.40526597, 43.67030834)}"
-21162,10830,GO-20152069414,THEFT UNDER,2015-12-03T00:00:00,2015,December,Thursday,3,337,4,2015-12-03T00:00:00,2015,December,Thursday,3,337,4,D53,Toronto,95,Annex (95),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,UNKNOWN MAKE,,TR,1,GRY,400.0,STOLEN,21139,"{'type': 'Point', 'coordinates': (-79.39049843, 43.67524769)}"
-21163,10842,GO-20152105546,THEFT OVER,2015-12-09T00:00:00,2015,December,Wednesday,9,343,9,2015-12-09T00:00:00,2015,December,Wednesday,9,343,22,D53,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,EMONDA SL8,RC,16,REDWHI,5686.0,STOLEN,21140,"{'type': 'Point', 'coordinates': (-79.40323153, 43.67473268)}"
-21164,10914,GO-201639977,THEFT UNDER,2016-01-06T00:00:00,2016,January,Wednesday,6,6,19,2016-01-07T00:00:00,2016,January,Thursday,7,7,18,D53,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,,OT,18,SIL,,STOLEN,21141,"{'type': 'Point', 'coordinates': (-79.4007248, 43.66981528)}"
-21165,10919,GO-20152005902,THEFT UNDER,2015-11-05T00:00:00,2015,November,Thursday,5,309,12,2015-11-22T00:00:00,2015,November,Sunday,22,326,23,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,STUMPJUMPER,OT,0,BLU,,STOLEN,21142,"{'type': 'Point', 'coordinates': (-79.40822185, 43.67461234)}"
-21166,12848,GO-20169014199,THEFT UNDER - BICYCLE,2016-12-04T00:00:00,2016,December,Sunday,4,339,10,2016-12-04T00:00:00,2016,December,Sunday,4,339,12,D53,Toronto,95,Annex (95),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,HOLDSTEADY,RG,8,BLK,1000.0,STOLEN,21143,"{'type': 'Point', 'coordinates': (-79.40210106, 43.67299255)}"
-21167,4769,GO-20199022276,THEFT UNDER - BICYCLE,2019-07-01T00:00:00,2019,July,Monday,1,182,19,2019-07-15T00:00:00,2019,July,Monday,15,196,7,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,MILANO,OT,21,BLK,587.0,STOLEN,21144,"{'type': 'Point', 'coordinates': (-79.40637158, 43.66842414)}"
-21168,15941,GO-2015842098,B&E,2015-05-14T00:00:00,2015,May,Thursday,14,134,18,2015-05-20T00:00:00,2015,May,Wednesday,20,140,17,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,SIRRUS,OT,24,BLK,,STOLEN,21145,"{'type': 'Point', 'coordinates': (-79.38942023, 43.67292854)}"
-21169,21508,GO-20171656582,THEFT UNDER - BICYCLE,2017-09-12T00:00:00,2017,September,Tuesday,12,255,14,2017-09-16T00:00:00,2017,September,Saturday,16,259,18,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,RG,1,BGE,500.0,STOLEN,21146,"{'type': 'Point', 'coordinates': (-79.43018260000001, 43.67294143)}"
-21170,5761,GO-20192402148,THEFT UNDER - BICYCLE,2019-12-13T00:00:00,2019,December,Friday,13,347,13,2019-12-13T00:00:00,2019,December,Friday,13,347,13,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DEVINCI,BRISTOL,OT,0,BLK,1000.0,STOLEN,21147,"{'type': 'Point', 'coordinates': (-79.43066374, 43.67404317)}"
-21171,10954,GO-20169000870,PROPERTY - FOUND,2016-01-04T00:00:00,2016,January,Monday,4,4,13,2016-01-27T00:00:00,2016,January,Wednesday,27,27,14,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,CITY GLIDE,TO,8,GRY,0.0,STOLEN,21148,"{'type': 'Point', 'coordinates': (-79.39787549000002, 43.66923262)}"
-21172,10998,GO-2016285774,B&E,2016-01-28T00:00:00,2016,January,Thursday,28,28,18,2016-02-17T00:00:00,2016,February,Wednesday,17,48,14,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OTHER,,OT,10,BLUWHI,8800.0,STOLEN,21149,"{'type': 'Point', 'coordinates': (-79.40716074, 43.671942130000005)}"
-21173,11066,GO-2016486222,THEFT UNDER - BICYCLE,2016-03-21T00:00:00,2016,March,Monday,21,81,10,2016-03-21T00:00:00,2016,March,Monday,21,81,15,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,ESCAPE,OT,12,GRY,650.0,STOLEN,21150,"{'type': 'Point', 'coordinates': (-79.41717845, 43.66383426)}"
-21174,11092,GO-20169002980,THEFT UNDER,2016-04-02T00:00:00,2016,April,Saturday,2,93,13,2016-04-02T00:00:00,2016,April,Saturday,2,93,17,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,FIXIE,OT,1,BLK,300.0,STOLEN,21151,"{'type': 'Point', 'coordinates': (-79.39410211, 43.66871992)}"
-21175,11114,GO-2016591464,THEFT UNDER - BICYCLE,2016-04-07T00:00:00,2016,April,Thursday,7,98,7,2016-04-07T00:00:00,2016,April,Thursday,7,98,17,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OPUS,HYBRID,OT,18,BLK,800.0,STOLEN,21152,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-21176,11122,GO-20169003236,THEFT UNDER - BICYCLE,2016-04-10T00:00:00,2016,April,Sunday,10,101,10,2016-04-10T00:00:00,2016,April,Sunday,10,101,11,D53,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,15 ALIGHT 1LCHA,RG,27,BLK,695.0,STOLEN,21153,"{'type': 'Point', 'coordinates': (-79.4007248, 43.66981528)}"
-21177,11126,GO-2016616770,THEFT UNDER - BICYCLE,2016-03-11T00:00:00,2016,March,Friday,11,71,12,2016-04-11T00:00:00,2016,April,Monday,11,102,18,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,ROAM3,MT,21,,500.0,STOLEN,21154,"{'type': 'Point', 'coordinates': (-79.39410064, 43.67738561)}"
-21178,11127,GO-2016616770,THEFT UNDER - BICYCLE,2016-03-11T00:00:00,2016,March,Friday,11,71,12,2016-04-11T00:00:00,2016,April,Monday,11,102,18,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,2CROSS 1300,MT,21,GRY,700.0,STOLEN,21155,"{'type': 'Point', 'coordinates': (-79.39410064, 43.67738561)}"
-21179,11205,GO-2016712961,THEFT UNDER - BICYCLE,2016-04-25T00:00:00,2016,April,Monday,25,116,17,2016-04-26T00:00:00,2016,April,Tuesday,26,117,17,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CYCLOCROSS,CRUX COMP DISC,RC,24,,2500.0,STOLEN,21156,"{'type': 'Point', 'coordinates': (-79.39479453, 43.67508461)}"
-21180,11212,GO-20169003881,THEFT UNDER,2016-04-22T00:00:00,2016,April,Friday,22,113,8,2016-04-27T00:00:00,2016,April,Wednesday,27,118,17,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,ESCAPE,RG,24,WHI,400.0,STOLEN,21157,"{'type': 'Point', 'coordinates': (-79.41823803, 43.66991533)}"
-21181,11262,GO-20169004211,THEFT UNDER - BICYCLE,2016-05-06T00:00:00,2016,May,Friday,6,127,0,2016-05-06T00:00:00,2016,May,Friday,6,127,10,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,RETRO SL / SPEC,RC,1,PLE,2400.0,STOLEN,21158,"{'type': 'Point', 'coordinates': (-79.41836917, 43.66681301)}"
-21182,11320,GO-20169004604,THEFT UNDER - BICYCLE,2016-05-16T00:00:00,2016,May,Monday,16,137,0,2016-05-16T00:00:00,2016,May,Monday,16,137,14,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,BLK,600.0,STOLEN,21159,"{'type': 'Point', 'coordinates': (-79.40628591, 43.66897569)}"
-21183,11349,GO-20169004604,THEFT UNDER - BICYCLE,2016-05-16T00:00:00,2016,May,Monday,16,137,0,2016-05-16T00:00:00,2016,May,Monday,16,137,14,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,SKYWAY,RG,1,BLK,600.0,STOLEN,21160,"{'type': 'Point', 'coordinates': (-79.40628591, 43.66897569)}"
-21184,11351,GO-20169004809,THEFT UNDER - BICYCLE,2016-05-21T00:00:00,2016,May,Saturday,21,142,17,2016-05-22T00:00:00,2016,May,Sunday,22,143,0,D53,Toronto,95,Annex (95),Universities / Colleges,Educational,NO,NORCO VFR3,RG,24,BLU,425.0,STOLEN,21161,"{'type': 'Point', 'coordinates': (-79.39832557, 43.66783119)}"
-21185,11380,GO-20169004974,THEFT UNDER - BICYCLE,2016-05-21T00:00:00,2016,May,Saturday,21,142,13,2016-05-26T00:00:00,2016,May,Thursday,26,147,11,D53,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,7500FX,OT,24,SIL,1000.0,STOLEN,21162,"{'type': 'Point', 'coordinates': (-79.39787549000002, 43.66923262)}"
-21186,11415,GO-2016938066,THEFT UNDER - BICYCLE,2016-05-28T00:00:00,2016,May,Saturday,28,149,0,2016-05-30T00:00:00,2016,May,Monday,30,151,21,D14,Toronto,95,Annex (95),"Open Areas (Lakes, Parks, Rivers)",Outside,INVERNESS 55CM,55CM,OT,1,BLK,450.0,STOLEN,21163,"{'type': 'Point', 'coordinates': (-79.42030175, 43.67185242)}"
-21187,11428,GO-2016948966,THEFT UNDER - BICYCLE,2016-05-31T00:00:00,2016,May,Tuesday,31,152,23,2016-06-02T00:00:00,2016,June,Thursday,2,154,15,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,NEXUS,TOURING,TO,1,GRYSIL,1200.0,STOLEN,21164,"{'type': 'Point', 'coordinates': (-79.39015983, 43.67135683)}"
-21188,11465,GO-20169005442,THEFT UNDER,2016-06-04T00:00:00,2016,June,Saturday,4,156,17,2016-06-07T00:00:00,2016,June,Tuesday,7,159,20,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,GREEN MACHINE 2,RG,24,GRN,250.0,STOLEN,21165,"{'type': 'Point', 'coordinates': (-79.40600258, 43.67218781)}"
-21189,11486,GO-2016999515,THEFT UNDER - BICYCLE,2016-06-08T00:00:00,2016,June,Wednesday,8,160,10,2016-06-09T00:00:00,2016,June,Thursday,9,161,0,D53,Toronto,95,Annex (95),Ttc Subway Station,Transit,VAGABOND,,MT,0,BLKWHI,75.0,STOLEN,21166,"{'type': 'Point', 'coordinates': (-79.40414752, 43.66746377)}"
-21190,11517,GO-20169005705,THEFT UNDER - BICYCLE,2016-06-12T00:00:00,2016,June,Sunday,12,164,17,2016-06-13T00:00:00,2016,June,Monday,13,165,11,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SPARK 2011,RC,10,RED,1250.0,STOLEN,21167,"{'type': 'Point', 'coordinates': (-79.40708312, 43.67485713)}"
-21191,11521,GO-20169005746,THEFT UNDER - BICYCLE,2016-06-12T00:00:00,2016,June,Sunday,12,164,21,2016-06-13T00:00:00,2016,June,Monday,13,165,22,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,2015 ALIGHT 1 X,OT,9,,740.0,STOLEN,21168,"{'type': 'Point', 'coordinates': (-79.39910493, 43.67269013)}"
-21192,11620,GO-20169006311,THEFT UNDER - BICYCLE,2016-06-24T00:00:00,2016,June,Friday,24,176,8,2016-06-24T00:00:00,2016,June,Friday,24,176,20,D53,Toronto,95,Annex (95),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,GI,FASTROAD COMAX,RC,22,RED,2089.0,STOLEN,21169,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-21193,11644,GO-20169006397,THEFT UNDER - BICYCLE,2016-06-26T00:00:00,2016,June,Sunday,26,178,9,2016-06-27T00:00:00,2016,June,Monday,27,179,1,D53,Toronto,95,Annex (95),Ttc Subway Station,Transit,KH,VITAMIN A,TO,21,BLU,500.0,STOLEN,21170,"{'type': 'Point', 'coordinates': (-79.40526597, 43.67030834)}"
-21194,11688,GO-20169006663,THEFT UNDER,2016-07-02T00:00:00,2016,July,Saturday,2,184,18,2016-07-03T00:00:00,2016,July,Sunday,3,185,18,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,VITA,RG,3,PLE,600.0,STOLEN,21171,"{'type': 'Point', 'coordinates': (-79.41106003, 43.66823705)}"
-21195,11704,GO-20169006716,THEFT UNDER - BICYCLE,2016-07-02T00:00:00,2016,July,Saturday,2,184,8,2016-07-04T00:00:00,2016,July,Monday,4,186,20,D53,Toronto,95,Annex (95),Universities / Colleges,Educational,OT,DIVERGE A1 SPOR,TO,21,BLK,1800.0,STOLEN,21173,"{'type': 'Point', 'coordinates': (-79.39832557, 43.66783119)}"
-21196,11745,GO-20169006900,THEFT UNDER,2016-07-08T00:00:00,2016,July,Friday,8,190,9,2016-07-08T00:00:00,2016,July,Friday,8,190,11,D14,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,SEEK 3,OT,8,BLK,599.0,STOLEN,21174,"{'type': 'Point', 'coordinates': (-79.41898423, 43.66834945)}"
-21197,11774,GO-20161220786,THEFT UNDER - BICYCLE,2016-07-12T00:00:00,2016,July,Tuesday,12,194,3,2016-07-12T00:00:00,2016,July,Tuesday,12,194,12,D53,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CANNONDALE,QUICK 5,MT,24,BLK,650.0,STOLEN,21175,"{'type': 'Point', 'coordinates': (-79.39000152000001, 43.67820922)}"
-21198,11824,GO-20169007291,THEFT UNDER - BICYCLE,2016-07-17T00:00:00,2016,July,Sunday,17,199,1,2016-07-17T00:00:00,2016,July,Sunday,17,199,12,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,FX 7.2,RG,24,DBL,600.0,STOLEN,21176,"{'type': 'Point', 'coordinates': (-79.40028097000001, 43.66874114)}"
-21199,11837,GO-20169007365,THEFT UNDER,2016-07-18T00:00:00,2016,July,Monday,18,200,16,2016-07-18T00:00:00,2016,July,Monday,18,200,19,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,AL1020,EL,25,SIL,500.0,STOLEN,21177,"{'type': 'Point', 'coordinates': (-79.41239827, 43.66488473)}"
-21200,11839,GO-20169007366,THEFT UNDER - BICYCLE,2016-07-17T00:00:00,2016,July,Sunday,17,199,22,2016-07-18T00:00:00,2016,July,Monday,18,200,19,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,7.1 FX 20 METAL,RG,7,BLK,500.0,STOLEN,21178,"{'type': 'Point', 'coordinates': (-79.40484258, 43.6724255)}"
-21201,11870,GO-20169007584,THEFT UNDER - BICYCLE,2016-07-21T00:00:00,2016,July,Thursday,21,203,8,2016-07-21T00:00:00,2016,July,Thursday,21,203,20,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,10,PLE,0.0,STOLEN,21179,"{'type': 'Point', 'coordinates': (-79.40600258, 43.67218781)}"
-21202,11871,GO-20169007588,THEFT UNDER - BICYCLE,2016-07-18T00:00:00,2016,July,Monday,18,200,23,2016-07-21T00:00:00,2016,July,Thursday,21,203,20,D14,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,,RG,21,RED,330.0,STOLEN,21180,"{'type': 'Point', 'coordinates': (-79.40587057, 43.66878216)}"
-21203,11890,GO-20169007691,THEFT UNDER - BICYCLE,2016-07-24T00:00:00,2016,July,Sunday,24,206,11,2016-07-24T00:00:00,2016,July,Sunday,24,206,16,D53,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,VITA,RG,8,PLE,520.0,STOLEN,21181,"{'type': 'Point', 'coordinates': (-79.39787549000002, 43.66923262)}"
-21204,11922,GO-20161318216,THEFT UNDER - BICYCLE,2016-07-22T00:00:00,2016,July,Friday,22,204,16,2016-07-27T00:00:00,2016,July,Wednesday,27,209,10,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RALEIGH,,OT,21,,250.0,STOLEN,21182,"{'type': 'Point', 'coordinates': (-79.41180442, 43.673687980000004)}"
-21205,11923,GO-20161308814,THEFT UNDER - BICYCLE,2016-07-21T00:00:00,2016,July,Thursday,21,203,9,2016-07-25T00:00:00,2016,July,Monday,25,207,21,D52,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,IRON HORSE,,MT,7,GRY,750.0,STOLEN,21183,"{'type': 'Point', 'coordinates': (-79.38946773, 43.66966903)}"
-21206,11936,GO-20169007865,THEFT UNDER - BICYCLE,2016-07-26T00:00:00,2016,July,Tuesday,26,208,13,2016-07-27T00:00:00,2016,July,Wednesday,27,209,21,D14,Toronto,95,Annex (95),Bar / Restaurant,Commercial,OT,TOSCANA,OT,24,BLU,500.0,STOLEN,21184,"{'type': 'Point', 'coordinates': (-79.40995373, 43.66538876)}"
-21207,11948,GO-20169007951,THEFT UNDER - BICYCLE,2016-07-30T00:00:00,2016,July,Saturday,30,212,13,2016-07-30T00:00:00,2016,July,Saturday,30,212,15,D53,Toronto,95,Annex (95),Bar / Restaurant,Commercial,TR,NEKO WSD 16,TO,21,LBL,686.0,STOLEN,21185,"{'type': 'Point', 'coordinates': (-79.38782632, 43.6728738)}"
-21208,12012,GO-20169008287,THEFT UNDER,2016-08-05T00:00:00,2016,August,Friday,5,218,19,2016-08-06T00:00:00,2016,August,Saturday,6,219,0,D53,Toronto,95,Annex (95),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,SPEED UNO (KAC0,FO,1,BLK,400.0,STOLEN,21186,"{'type': 'Point', 'coordinates': (-79.38946773, 43.66966903)}"
-21209,12059,GO-20169008564,THEFT UNDER - BICYCLE,2016-08-10T00:00:00,2016,August,Wednesday,10,223,0,2016-08-11T00:00:00,2016,August,Thursday,11,224,12,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,LEXA S,RC,21,GRY,1000.0,STOLEN,21187,"{'type': 'Point', 'coordinates': (-79.41457384, 43.66717363)}"
-21210,12067,GO-20169008582,THEFT UNDER - BICYCLE,2016-08-09T00:00:00,2016,August,Tuesday,9,222,22,2016-08-11T00:00:00,2016,August,Thursday,11,224,15,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,EXPRESS 10,RC,10,RED,170.0,STOLEN,21188,"{'type': 'Point', 'coordinates': (-79.40028097000001, 43.66874114)}"
-21211,12079,GO-20161409555,THEFT OF EBIKE UNDER $5000,2016-08-10T00:00:00,2016,August,Wednesday,10,223,10,2016-08-10T00:00:00,2016,August,Wednesday,10,223,14,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,AMEGO-E-BREEZE,EL,0,BLK,2500.0,STOLEN,21189,"{'type': 'Point', 'coordinates': (-79.40414752, 43.66746377)}"
-21212,12097,GO-20169008769,THEFT UNDER - BICYCLE,2016-08-15T00:00:00,2016,August,Monday,15,228,6,2016-08-15T00:00:00,2016,August,Monday,15,228,8,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,FJ,FEATHER,RC,1,GRN,650.0,STOLEN,21190,"{'type': 'Point', 'coordinates': (-79.41057995, 43.67066529)}"
-21213,12104,GO-20169008808,THEFT UNDER - BICYCLE,2016-08-08T00:00:00,2016,August,Monday,8,221,13,2016-08-15T00:00:00,2016,August,Monday,15,228,16,D14,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CC,NEVADA,MT,21,GRY,250.0,STOLEN,21191,"{'type': 'Point', 'coordinates': (-79.40637158, 43.66842414)}"
-21214,12110,GO-20169008848,THEFT UNDER - BICYCLE,2016-08-16T00:00:00,2016,August,Tuesday,16,229,9,2016-08-16T00:00:00,2016,August,Tuesday,16,229,19,D14,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,7.2FX,RG,8,BLK,550.0,STOLEN,21192,"{'type': 'Point', 'coordinates': (-79.41174945, 43.66662023)}"
-21215,12112,GO-20169008678,THEFT UNDER - BICYCLE,2016-08-12T00:00:00,2016,August,Friday,12,225,19,2016-08-13T00:00:00,2016,August,Saturday,13,226,12,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,PATH RUNNER,MT,3,,0.0,STOLEN,21193,"{'type': 'Point', 'coordinates': (-79.39124334, 43.67113341000001)}"
-21216,12144,GO-20169009077,THEFT UNDER - BICYCLE,2016-08-19T00:00:00,2016,August,Friday,19,232,16,2016-08-19T00:00:00,2016,August,Friday,19,232,17,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,TALUS 2.0,MT,21,GRY,200.0,STOLEN,21194,"{'type': 'Point', 'coordinates': (-79.40255449, 43.67580963)}"
-21217,12174,GO-20161473822,THEFT UNDER - BICYCLE,2016-08-20T00:00:00,2016,August,Saturday,20,233,2,2016-08-20T00:00:00,2016,August,Saturday,20,233,11,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,AMIGO BOLD RED,,RG,0,RED,,STOLEN,21195,"{'type': 'Point', 'coordinates': (-79.41440616, 43.6700784)}"
-21218,12261,GO-20161575005,ROBBERY - MUGGING,2016-09-04T00:00:00,2016,September,Sunday,4,248,23,2016-09-05T00:00:00,2016,September,Monday,5,249,11,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,,MT,21,BLKRED,1200.0,STOLEN,21196,"{'type': 'Point', 'coordinates': (-79.41958483, 43.66657302)}"
-21219,12262,GO-20161575005,ROBBERY - MUGGING,2016-09-04T00:00:00,2016,September,Sunday,4,248,23,2016-09-05T00:00:00,2016,September,Monday,5,249,11,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KHS,,MT,21,GRY,550.0,STOLEN,21197,"{'type': 'Point', 'coordinates': (-79.41958483, 43.66657302)}"
-21220,12300,GO-20169009889,THEFT UNDER,2016-09-02T00:00:00,2016,September,Friday,2,246,21,2016-09-03T00:00:00,2016,September,Saturday,3,247,2,D14,Toronto,95,Annex (95),Ttc Subway Station,Transit,TR,ALLANTE,TO,7,DBL,600.0,STOLEN,21198,"{'type': 'Point', 'coordinates': (-79.41853537, 43.66394772)}"
-21221,12304,GO-20169010172,THEFT UNDER - BICYCLE,2016-09-08T00:00:00,2016,September,Thursday,8,252,12,2016-09-09T00:00:00,2016,September,Friday,9,253,2,D53,Toronto,95,Annex (95),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,NO,,MT,1,WHI,1000.0,STOLEN,21199,"{'type': 'Point', 'coordinates': (-79.38776812, 43.67269822)}"
-21222,12312,GO-20169010220,THEFT UNDER - BICYCLE,2016-09-09T00:00:00,2016,September,Friday,9,253,20,2016-09-10T00:00:00,2016,September,Saturday,10,254,4,D53,Toronto,95,Annex (95),Bar / Restaurant,Commercial,GI,ANYROAD,RC,20,DBL,1500.0,STOLEN,21200,"{'type': 'Point', 'coordinates': (-79.39124334, 43.67113341000001)}"
-21223,12439,GO-20169011030,THEFT UNDER - BICYCLE,2016-09-24T00:00:00,2016,September,Saturday,24,268,1,2016-09-24T00:00:00,2016,September,Saturday,24,268,16,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,VELO OLIVER,RG,1,,500.0,STOLEN,21201,"{'type': 'Point', 'coordinates': (-79.40944561, 43.67172945)}"
-21224,12464,GO-20169011168,THEFT UNDER - BICYCLE,2016-09-20T00:00:00,2016,September,Tuesday,20,264,10,2016-09-26T00:00:00,2016,September,Monday,26,270,21,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,TRANSEO 4.0,RG,24,WHI,500.0,STOLEN,21202,"{'type': 'Point', 'coordinates': (-79.38946773, 43.66966903)}"
-21225,12515,GO-20161738295,THEFT UNDER - BICYCLE,2016-09-29T00:00:00,2016,September,Thursday,29,273,12,2016-09-30T00:00:00,2016,September,Friday,30,274,12,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,K2,ZED,OT,0,,,STOLEN,21203,"{'type': 'Point', 'coordinates': (-79.41655235, 43.66558521)}"
-21226,12518,GO-20169011407,THEFT UNDER - BICYCLE,2016-09-28T00:00:00,2016,September,Wednesday,28,272,10,2016-10-01T00:00:00,2016,October,Saturday,1,275,13,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,MIXTE 3 SPEED,RG,3,LBL,1000.0,STOLEN,21204,"{'type': 'Point', 'coordinates': (-79.40526597, 43.67030834)}"
-21227,12555,GO-20169011568,THEFT UNDER - BICYCLE,2016-09-23T00:00:00,2016,September,Friday,23,267,12,2016-10-04T00:00:00,2016,October,Tuesday,4,278,20,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,UK,,OT,1,,200.0,STOLEN,21205,"{'type': 'Point', 'coordinates': (-79.40526597, 43.67030834)}"
-21228,12589,GO-20169011817,THEFT UNDER - BICYCLE,2016-06-10T00:00:00,2016,June,Friday,10,162,13,2016-10-10T00:00:00,2016,October,Monday,10,284,20,D14,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,FULL SUS. RACIN,MT,21,WHI,560.0,STOLEN,21206,"{'type': 'Point', 'coordinates': (-79.41875158, 43.66444289)}"
-21229,12601,GO-20169011938,THEFT UNDER,2016-10-12T00:00:00,2016,October,Wednesday,12,286,12,2016-10-12T00:00:00,2016,October,Wednesday,12,286,14,D14,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,CHANCE,RG,11,GRY,1680.0,STOLEN,21207,"{'type': 'Point', 'coordinates': (-79.40531586, 43.66635847)}"
-21230,12798,GO-20169013625,THEFT UNDER,2016-11-19T00:00:00,2016,November,Saturday,19,324,2,2016-11-19T00:00:00,2016,November,Saturday,19,324,14,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,TOWNIE,RG,8,BLU,630.0,STOLEN,21208,"{'type': 'Point', 'coordinates': (-79.41314032000001, 43.67009677)}"
-21231,12799,GO-20169013625,THEFT UNDER,2016-11-19T00:00:00,2016,November,Saturday,19,324,2,2016-11-19T00:00:00,2016,November,Saturday,19,324,14,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,TOWNIE,RG,8,BGE,630.0,STOLEN,21209,"{'type': 'Point', 'coordinates': (-79.41314032000001, 43.67009677)}"
-21232,12801,GO-20169013647,THEFT UNDER,2016-11-20T00:00:00,2016,November,Sunday,20,325,17,2016-11-20T00:00:00,2016,November,Sunday,20,325,18,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,CA,BAD BOY 9,OT,24,BLK,699.0,STOLEN,21210,"{'type': 'Point', 'coordinates': (-79.40600258, 43.67218781)}"
-21233,18997,GO-20169006767,THEFT UNDER - BICYCLE,2016-07-06T00:00:00,2016,July,Wednesday,6,188,8,2016-07-06T00:00:00,2016,July,Wednesday,6,188,18,D53,Toronto,95,Annex (95),Universities / Colleges,Educational,GI,GIANT 2,RG,18,WHI,500.0,STOLEN,21211,"{'type': 'Point', 'coordinates': (-79.39832557, 43.66783119)}"
-21234,21512,GO-20179016190,THEFT UNDER,2017-10-01T00:00:00,2017,October,Sunday,1,274,3,2017-10-01T00:00:00,2017,October,Sunday,1,274,12,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RC,12,BLK,500.0,STOLEN,21212,"{'type': 'Point', 'coordinates': (-79.41671875, 43.67924815)}"
-21235,21523,GO-20189009240,THEFT UNDER,2018-03-10T00:00:00,2018,March,Saturday,10,69,9,2018-03-24T00:00:00,2018,March,Saturday,24,83,9,D13,Toronto,94,Wychwood (94),"Apartment (Rooming House, Condo)",Apartment,OT,D29,MT,21,SIL,2000.0,STOLEN,21213,"{'type': 'Point', 'coordinates': (-79.43246523, 43.68027632)}"
-21236,5876,GO-20209004418,THEFT UNDER,2020-02-05T00:00:00,2020,February,Wednesday,5,36,17,2020-02-06T00:00:00,2020,February,Thursday,6,37,8,D13,Toronto,94,Wychwood (94),"Apartment (Rooming House, Condo)",Apartment,KO,JAKE THE SNAKE,RC,8,BLU,2300.0,STOLEN,21214,"{'type': 'Point', 'coordinates': (-79.43246523, 43.68027632)}"
-21237,21533,GO-20189043803,THEFT UNDER - BICYCLE,2018-12-30T00:00:00,2018,December,Sunday,30,364,20,2018-12-30T00:00:00,2018,December,Sunday,30,364,21,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,MT,24,GRY,500.0,STOLEN,21215,"{'type': 'Point', 'coordinates': (-79.42423813, 43.67821832)}"
-21238,21537,GO-20199017529,THEFT UNDER - BICYCLE,2019-06-05T00:00:00,2019,June,Wednesday,5,156,14,2019-06-05T00:00:00,2019,June,Wednesday,5,156,17,D13,Toronto,94,Wychwood (94),"Apartment (Rooming House, Condo)",Apartment,GI,HYBRID,RG,21,WHI,500.0,STOLEN,21216,"{'type': 'Point', 'coordinates': (-79.42873722, 43.672385780000006)}"
-21239,6359,GO-20209015101,THEFT UNDER,2020-06-10T00:00:00,2020,June,Wednesday,10,162,17,2020-06-10T00:00:00,2020,June,Wednesday,10,162,18,D13,Toronto,94,Wychwood (94),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,SC,SCHWINN SUBURBI,RG,6,PNK,450.0,STOLEN,21217,"{'type': 'Point', 'coordinates': (-79.43464657, 43.67981571)}"
-21240,21538,GO-20199018703,THEFT UNDER - BICYCLE,2019-06-11T00:00:00,2019,June,Tuesday,11,162,19,2019-06-15T00:00:00,2019,June,Saturday,15,166,11,D13,Toronto,94,Wychwood (94),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RA,,MT,5,RED,150.0,STOLEN,21218,"{'type': 'Point', 'coordinates': (-79.42256685, 43.67997759)}"
-21241,21548,GO-20191875506,THEFT UNDER - BICYCLE,2019-09-28T00:00:00,2019,September,Saturday,28,271,20,2019-09-29T00:00:00,2019,September,Sunday,29,272,10,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,OT,8,MRN,500.0,STOLEN,21219,"{'type': 'Point', 'coordinates': (-79.4280427, 43.67195273)}"
-21242,6372,GO-20209015290,THEFT UNDER,2020-06-13T00:00:00,2020,June,Saturday,13,165,2,2020-06-13T00:00:00,2020,June,Saturday,13,165,12,D13,Toronto,94,Wychwood (94),"Apartment (Rooming House, Condo)",Apartment,OT,CINELLI HISTOGR,TO,1,BLK,2500.0,STOLEN,21220,"{'type': 'Point', 'coordinates': (-79.43066374, 43.67404317)}"
-21243,21549,GO-20191875506,THEFT UNDER - BICYCLE,2019-09-28T00:00:00,2019,September,Saturday,28,271,20,2019-09-29T00:00:00,2019,September,Sunday,29,272,10,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,,EL,9,BLK,1150.0,STOLEN,21221,"{'type': 'Point', 'coordinates': (-79.4280427, 43.67195273)}"
-21244,21561,GO-20209016879,THEFT UNDER,2020-06-23T00:00:00,2020,June,Tuesday,23,175,5,2020-07-05T00:00:00,2020,July,Sunday,5,187,15,D13,Toronto,94,Wychwood (94),"Apartment (Rooming House, Condo)",Apartment,HU,OB TUESDA SO BL,RG,5,BLK,282.0,STOLEN,21222,"{'type': 'Point', 'coordinates': (-79.42985147, 43.67214764)}"
-21245,6514,GO-20201219201,B&E,2020-06-30T00:00:00,2020,June,Tuesday,30,182,18,2020-07-02T00:00:00,2020,July,Thursday,2,184,14,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,FX3 WSD,MT,17,BLK,800.0,STOLEN,21223,"{'type': 'Point', 'coordinates': (-79.42778487, 43.67845955)}"
-21246,21793,GO-20149002489,THEFT UNDER,2013-12-01T00:00:00,2013,December,Sunday,1,335,0,2014-04-01T00:00:00,2014,April,Tuesday,1,91,8,D13,Toronto,94,Wychwood (94),"Apartment (Rooming House, Condo)",Apartment,FJ,CLASSIC,RG,1,RED,450.0,STOLEN,21224,"{'type': 'Point', 'coordinates': (-79.43293662, 43.67530723)}"
-21247,6957,GO-20209020244,THEFT UNDER,2020-08-15T00:00:00,2020,August,Saturday,15,228,14,2020-08-15T00:00:00,2020,August,Saturday,15,228,14,D13,Toronto,94,Wychwood (94),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,3,BLK,1200.0,STOLEN,21225,"{'type': 'Point', 'coordinates': (-79.42193538, 43.68241953)}"
-21248,21827,GO-20149006535,THEFT UNDER,2014-09-03T00:00:00,2014,September,Wednesday,3,246,11,2014-09-03T00:00:00,2014,September,Wednesday,3,246,17,D13,Toronto,94,Wychwood (94),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,XENITH COMP,RC,10,BLK,1800.0,STOLEN,21226,"{'type': 'Point', 'coordinates': (-79.41950573, 43.6829279)}"
-21249,7051,GO-20209021048,THEFT UNDER,2020-08-22T00:00:00,2020,August,Saturday,22,235,20,2020-08-23T00:00:00,2020,August,Sunday,23,236,8,D13,Toronto,94,Wychwood (94),"Apartment (Rooming House, Condo)",Apartment,TR,FX3,RG,12,GRY,900.0,STOLEN,21227,"{'type': 'Point', 'coordinates': (-79.42873722, 43.672385780000006)}"
-21250,15942,GO-2015862222,THEFT UNDER,2015-05-23T00:00:00,2015,May,Saturday,23,143,22,2015-05-23T00:00:00,2015,May,Saturday,23,143,22,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DEVINCI,MONTREAL FOURTH,RG,7,BLK,750.0,STOLEN,21228,"{'type': 'Point', 'coordinates': (-79.40414752, 43.66746377)}"
-21251,4792,GO-20191346421,THEFT UNDER - BICYCLE,2019-07-10T00:00:00,2019,July,Wednesday,10,191,16,2019-07-18T00:00:00,2019,July,Thursday,18,199,11,D53,Toronto,95,Annex (95),Universities / Colleges,Educational,ROCKY MOUNTAIN,,RG,18,BLUONG,600.0,STOLEN,21229,"{'type': 'Point', 'coordinates': (-79.39734175, 43.66803279)}"
-21252,12863,GO-20189023557,THEFT UNDER - BICYCLE,2018-07-21T00:00:00,2018,July,Saturday,21,202,18,2018-07-23T00:00:00,2018,July,Monday,23,204,14,D53,Toronto,95,Annex (95),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,TR,X CALIBER 9,MT,11,BLK,2100.0,STOLEN,21230,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-21253,19000,GO-20169007319,THEFT UNDER - BICYCLE,2016-07-17T00:00:00,2016,July,Sunday,17,199,22,2016-07-18T00:00:00,2016,July,Monday,18,200,11,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,HF,,OT,1,WHI,200.0,STOLEN,21231,"{'type': 'Point', 'coordinates': (-79.38942023, 43.67292854)}"
-21254,1737,GO-20179018153,THEFT UNDER - BICYCLE,2017-10-23T00:00:00,2017,October,Monday,23,296,8,2017-10-25T00:00:00,2017,October,Wednesday,25,298,13,D53,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,IH,JOURNEY,RG,18,DBL,0.0,STOLEN,21232,"{'type': 'Point', 'coordinates': (-79.39003347, 43.67421927)}"
-21255,21877,GO-20159003776,THEFT UNDER,2015-06-18T00:00:00,2015,June,Thursday,18,169,21,2015-06-20T00:00:00,2015,June,Saturday,20,171,2,D13,Toronto,94,Wychwood (94),"Apartment (Rooming House, Condo)",Apartment,IN,,TO,21,GRY,400.0,STOLEN,21233,"{'type': 'Point', 'coordinates': (-79.42628335, 43.67877685)}"
-21256,4798,GO-20199022831,THEFT UNDER - BICYCLE,2019-07-18T00:00:00,2019,July,Thursday,18,199,5,2019-07-18T00:00:00,2019,July,Thursday,18,199,18,D53,Toronto,95,Annex (95),Ttc Subway Station,Transit,IN,,RG,20,WHI,4900.0,STOLEN,21234,"{'type': 'Point', 'coordinates': (-79.40708312, 43.67485713)}"
-21257,19008,GO-20169007608,THEFT UNDER - BICYCLE,2016-07-21T00:00:00,2016,July,Thursday,21,203,20,2016-07-22T00:00:00,2016,July,Friday,22,204,9,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,STOCKHOLM,OT,21,BLK,600.0,STOLEN,21235,"{'type': 'Point', 'coordinates': (-79.40526597, 43.67030834)}"
-21258,12868,GO-20189024009,THEFT UNDER - BICYCLE,2018-07-25T00:00:00,2018,July,Wednesday,25,206,18,2018-07-26T00:00:00,2018,July,Thursday,26,207,12,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KH,,RG,21,BLK,600.0,STOLEN,21236,"{'type': 'Point', 'coordinates': (-79.3879785, 43.66997438)}"
-21259,7550,GO-20202032138,B&E,2020-10-25T00:00:00,2020,October,Sunday,25,299,12,2020-10-27T00:00:00,2020,October,Tuesday,27,301,8,D13,Toronto,94,Wychwood (94),"Apartment (Rooming House, Condo)",Apartment,CERVELO,R5,RC,11,BLK,2000.0,STOLEN,21238,"{'type': 'Point', 'coordinates': (-79.42985147, 43.67214764)}"
-21260,15947,GO-20159003597,THEFT UNDER,2015-06-12T00:00:00,2015,June,Friday,12,163,22,2015-06-14T00:00:00,2015,June,Sunday,14,165,10,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,UK,CRUISER,RG,20,DGR,350.0,STOLEN,21239,"{'type': 'Point', 'coordinates': (-79.39882505000001, 43.67200794)}"
-21261,21425,GO-20169010403,THEFT UNDER,2016-09-13T00:00:00,2016,September,Tuesday,13,257,0,2016-09-14T00:00:00,2016,September,Wednesday,14,258,3,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MA,LARKSPUR CS1,RG,21,BLK,300.0,STOLEN,21240,"{'type': 'Point', 'coordinates': (-79.40600258, 43.67218781)}"
-21262,7666,GO-20202242417,THEFT UNDER - BICYCLE,2020-11-26T00:00:00,2020,November,Thursday,26,331,3,2020-11-26T00:00:00,2020,November,Thursday,26,331,23,D13,Toronto,94,Wychwood (94),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,TA,1,RED,4000.0,STOLEN,21241,"{'type': 'Point', 'coordinates': (-79.41835704, 43.68181151000001)}"
-21263,4812,GO-20191334962,THEFT UNDER - BICYCLE,2019-07-14T00:00:00,2019,July,Sunday,14,195,19,2019-07-16T00:00:00,2019,July,Tuesday,16,197,19,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,MARLILN5,MT,21,BLK,700.0,STOLEN,21242,"{'type': 'Point', 'coordinates': (-79.39979751, 43.66751644)}"
-21264,12870,GO-20181363637,THEFT UNDER - BICYCLE,2018-07-20T00:00:00,2018,July,Friday,20,201,23,2018-07-26T00:00:00,2018,July,Thursday,26,207,6,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,SYNAPSE,OT,21,BLKWHI,2500.0,STOLEN,21243,"{'type': 'Point', 'coordinates': (-79.40708312, 43.67485713)}"
-21265,19039,GO-20169010572,THEFT UNDER - BICYCLE,2016-09-16T00:00:00,2016,September,Friday,16,260,18,2016-09-16T00:00:00,2016,September,Friday,16,260,21,D53,Toronto,95,Annex (95),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,TR,7.2 FX,MT,21,BLK,750.0,STOLEN,21244,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-21266,21905,GO-20159005324,THEFT UNDER,2015-07-29T00:00:00,2015,July,Wednesday,29,210,23,2015-08-04T00:00:00,2015,August,Tuesday,4,216,15,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,CCM PRESTO 700C,RC,21,BLU,379.0,STOLEN,21245,"{'type': 'Point', 'coordinates': (-79.43066374, 43.67404317)}"
-21267,1826,GO-20172052022,THEFT UNDER - BICYCLE,2017-11-12T00:00:00,2017,November,Sunday,12,316,10,2017-11-13T00:00:00,2017,November,Monday,13,317,7,D53,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,CROSSTRAINING,MT,5,BLK,800.0,STOLEN,21246,"{'type': 'Point', 'coordinates': (-79.39402236, 43.67320258)}"
-21268,19043,GO-20169011444,THEFT UNDER - BICYCLE,2016-10-02T00:00:00,2016,October,Sunday,2,276,10,2016-10-02T00:00:00,2016,October,Sunday,2,276,11,D53,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,205,BM,10,ONG,650.0,STOLEN,21247,"{'type': 'Point', 'coordinates': (-79.3886562, 43.67488192)}"
-21269,1827,GO-20172052022,THEFT UNDER - BICYCLE,2017-11-12T00:00:00,2017,November,Sunday,12,316,10,2017-11-13T00:00:00,2017,November,Monday,13,317,7,D53,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,CROSS TRAINING,MT,5,BLU,800.0,STOLEN,21248,"{'type': 'Point', 'coordinates': (-79.39402236, 43.67320258)}"
-21270,21924,GO-20151622899,THEFT UNDER,2015-09-16T00:00:00,2015,September,Wednesday,16,259,22,2015-09-19T00:00:00,2015,September,Saturday,19,262,19,D13,Toronto,94,Wychwood (94),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CCM,,MT,10,BLK,400.0,STOLEN,21249,"{'type': 'Point', 'coordinates': (-79.42873722, 43.672385780000006)}"
-21271,19046,GO-20169011673,THEFT UNDER - BICYCLE,2016-10-06T00:00:00,2016,October,Thursday,6,280,9,2016-10-06T00:00:00,2016,October,Thursday,6,280,21,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,AVALANCHE,MT,60,YEL,680.0,STOLEN,21250,"{'type': 'Point', 'coordinates': (-79.39410211, 43.66871992)}"
-21272,4814,GO-20199023000,THEFT UNDER - BICYCLE,2019-07-20T00:00:00,2019,July,Saturday,20,201,10,2019-07-20T00:00:00,2019,July,Saturday,20,201,10,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,MIXER,OT,8,BLK,1000.0,STOLEN,21251,"{'type': 'Point', 'coordinates': (-79.39288364, 43.67470949)}"
-21273,21457,GO-20179000173,THEFT UNDER - BICYCLE,2017-01-02T00:00:00,2017,January,Monday,2,2,17,2017-01-04T00:00:00,2017,January,Wednesday,4,4,17,D14,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,OT,7,CRM,550.0,STOLEN,21252,"{'type': 'Point', 'coordinates': (-79.40864191, 43.66567614)}"
-21274,15960,GO-20159004874,THEFT UNDER,2015-07-24T00:00:00,2015,July,Friday,24,205,12,2015-07-24T00:00:00,2015,July,Friday,24,205,16,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,TACTIC 2,OT,20,BLK,2000.0,STOLEN,21253,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-21275,12877,GO-20189026056,THEFT UNDER - BICYCLE,2018-08-11T00:00:00,2018,August,Saturday,11,223,9,2018-08-12T00:00:00,2018,August,Sunday,12,224,14,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,THRESHOLD A2 53,RC,7,GRN,1405.0,STOLEN,21254,"{'type': 'Point', 'coordinates': (-79.39048965, 43.67213792)}"
-21276,7677,GO-20209030860,THEFT UNDER,2020-11-29T00:00:00,2020,November,Sunday,29,334,1,2020-11-29T00:00:00,2020,November,Sunday,29,334,16,D13,Toronto,94,Wychwood (94),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GT,GT,MT,21,GRY,750.0,STOLEN,21255,"{'type': 'Point', 'coordinates': (-79.42309649, 43.68133495)}"
-21277,1844,GO-20179019627,THEFT UNDER - BICYCLE,2017-11-09T00:00:00,2017,November,Thursday,9,313,1,2017-11-14T00:00:00,2017,November,Tuesday,14,318,15,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,RM,,MT,14,BLK,700.0,STOLEN,21256,"{'type': 'Point', 'coordinates': (-79.41293786, 43.66959481)}"
-21278,21980,GO-20209024726,THEFT UNDER,2020-09-22T00:00:00,2020,September,Tuesday,22,266,18,2020-09-27T00:00:00,2020,September,Sunday,27,271,21,D13,Toronto,94,Wychwood (94),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,COMMUTER 4 FEMM,RG,99,BRN,950.0,STOLEN,21257,"{'type': 'Point', 'coordinates': (-79.42562468, 43.67584706)}"
-21279,19065,GO-20169015196,THEFT UNDER - BICYCLE,2016-12-04T00:00:00,2016,December,Sunday,4,339,12,2016-12-29T00:00:00,2016,December,Thursday,29,364,13,D53,Toronto,95,Annex (95),Universities / Colleges,Educational,OT,CLASSICO,TO,7,BLK,960.0,STOLEN,21258,"{'type': 'Point', 'coordinates': (-79.40198145, 43.66838899)}"
-21280,4821,GO-20199023043,THEFT UNDER,2019-07-20T00:00:00,2019,July,Saturday,20,201,13,2019-07-20T00:00:00,2019,July,Saturday,20,201,18,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,MODENA,RG,21,SIL,550.0,STOLEN,21259,"{'type': 'Point', 'coordinates': (-79.40809437, 43.67117516)}"
-21281,21464,GO-20179002246,THEFT UNDER - BICYCLE,2017-02-17T00:00:00,2017,February,Friday,17,48,14,2017-02-21T00:00:00,2017,February,Tuesday,21,52,11,D14,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RG,21,RED,500.0,STOLEN,21260,"{'type': 'Point', 'coordinates': (-79.41875158, 43.66444289)}"
-21282,15972,GO-20159006308,THEFT UNDER - BICYCLE,2015-08-16T00:00:00,2015,August,Sunday,16,228,6,2015-08-23T00:00:00,2015,August,Sunday,23,235,17,D53,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,,MT,18,GRY,450.0,STOLEN,21261,"{'type': 'Point', 'coordinates': (-79.3916327, 43.67973412)}"
-21283,12878,GO-20189026462,THEFT UNDER - BICYCLE,2018-08-14T00:00:00,2018,August,Tuesday,14,226,11,2018-08-15T00:00:00,2018,August,Wednesday,15,227,1,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,GTX-2 700C,OT,21,BLK,550.0,STOLEN,21262,"{'type': 'Point', 'coordinates': (-79.38946773, 43.66966903)}"
-21284,7680,GO-20202276901,B&E,2020-12-01T00:00:00,2020,December,Tuesday,1,336,23,2020-12-02T00:00:00,2020,December,Wednesday,2,337,12,D13,Toronto,94,Wychwood (94),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KONA\,,BM,5,CPRBRN,900.0,STOLEN,21263,"{'type': 'Point', 'coordinates': (-79.41887334, 43.682188630000006)}"
-21285,8407,GO-20142505026,THEFT UNDER,2014-07-10T00:00:00,2014,July,Thursday,10,191,14,2014-07-15T00:00:00,2014,July,Tuesday,15,196,21,D13,Toronto,94,Wychwood (94),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,MT,7,PLE,400.0,STOLEN,21264,"{'type': 'Point', 'coordinates': (-79.43101717, 43.67676105)}"
-21286,8497,GO-20149005256,THEFT UNDER,2014-07-23T00:00:00,2014,July,Wednesday,23,204,9,2014-07-24T00:00:00,2014,July,Thursday,24,205,9,D13,Toronto,94,Wychwood (94),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,18,BLK,550.0,STOLEN,21265,"{'type': 'Point', 'coordinates': (-79.42628335, 43.67877685)}"
-21287,8703,GO-20149006150,THEFT UNDER,2014-08-20T00:00:00,2014,August,Wednesday,20,232,10,2014-08-20T00:00:00,2014,August,Wednesday,20,232,20,D13,Toronto,94,Wychwood (94),"Apartment (Rooming House, Condo)",Apartment,DB,ODYSSEY,MT,4,BLK,200.0,STOLEN,21266,"{'type': 'Point', 'coordinates': (-79.41950573, 43.6829279)}"
-21288,9350,GO-2015494375,THEFT UNDER,2015-03-20T00:00:00,2015,March,Friday,20,79,4,2015-03-24T00:00:00,2015,March,Tuesday,24,83,17,D13,Toronto,94,Wychwood (94),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,ESCAPE,OT,13,BLK,800.0,STOLEN,21267,"{'type': 'Point', 'coordinates': (-79.41950573, 43.6829279)}"
-21289,9559,GO-2015772514,THEFT UNDER,2015-05-08T00:00:00,2015,May,Friday,8,128,12,2015-05-09T00:00:00,2015,May,Saturday,9,129,11,D13,Toronto,94,Wychwood (94),Schools During Supervised Activity,Educational,CANNONDALE,TRAIL 5,MT,21,BLK,629.0,STOLEN,21268,"{'type': 'Point', 'coordinates': (-79.43101717, 43.67676105)}"
-21290,9707,GO-20159003271,THEFT UNDER,2015-06-01T00:00:00,2015,June,Monday,1,152,0,2015-06-02T00:00:00,2015,June,Tuesday,2,153,16,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,HIGHLANDER,RG,21,GRN,200.0,STOLEN,21269,"{'type': 'Point', 'coordinates': (-79.42268569, 43.6748112)}"
-21291,9755,GO-2017476636,B&E,2017-03-16T00:00:00,2017,March,Thursday,16,75,23,2017-03-17T00:00:00,2017,March,Friday,17,76,9,D13,Toronto,94,Wychwood (94),"Apartment (Rooming House, Condo)",Apartment,TR,FX7.3,RG,27,BLK,750.0,STOLEN,21270,"{'type': 'Point', 'coordinates': (-79.42766224, 43.68129997)}"
-21292,9800,GO-20151002361,THEFT UNDER,2015-05-27T00:00:00,2015,May,Wednesday,27,147,16,2015-06-15T00:00:00,2015,June,Monday,15,166,8,D13,Toronto,94,Wychwood (94),"Apartment (Rooming House, Condo)",Apartment,TREK,7.2FX WSD,OT,24,WHIBLU,570.0,STOLEN,21271,"{'type': 'Point', 'coordinates': (-79.41826195, 43.68316749)}"
-21293,9804,GO-20159003607,THEFT UNDER,2015-06-13T00:00:00,2015,June,Saturday,13,164,19,2015-06-14T00:00:00,2015,June,Sunday,14,165,18,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,DEW,OT,8,BLK,500.0,STOLEN,21272,"{'type': 'Point', 'coordinates': (-79.42323107, 43.67309711)}"
-21294,9814,GO-20151017000,THEFT UNDER,2015-06-17T00:00:00,2015,June,Wednesday,17,168,12,2015-06-17T00:00:00,2015,June,Wednesday,17,168,12,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,,MT,21,,150.0,STOLEN,21273,"{'type': 'Point', 'coordinates': (-79.42778487, 43.67845955)}"
-21295,9929,GO-20151117331,THEFT UNDER,2015-07-03T00:00:00,2015,July,Friday,3,184,2,2015-07-03T00:00:00,2015,July,Friday,3,184,2,D13,Toronto,94,Wychwood (94),"Private Property Structure (Pool, Shed, Detached Garage)",Other,IRONHORSE,,MT,21,GREY,,RECOVERED,21274,"{'type': 'Point', 'coordinates': (-79.42628335, 43.67877685)}"
-21296,10019,GO-20151198566,THEFT UNDER,2015-07-14T00:00:00,2015,July,Tuesday,14,195,14,2015-07-15T00:00:00,2015,July,Wednesday,15,196,8,D13,Toronto,94,Wychwood (94),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,,OT,24,BRN,650.0,STOLEN,21275,"{'type': 'Point', 'coordinates': (-79.4180477, 43.67891588)}"
-21297,10020,GO-20151198566,THEFT UNDER,2015-07-14T00:00:00,2015,July,Tuesday,14,195,14,2015-07-15T00:00:00,2015,July,Wednesday,15,196,8,D13,Toronto,94,Wychwood (94),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,,OT,24,WHI,850.0,STOLEN,21276,"{'type': 'Point', 'coordinates': (-79.4180477, 43.67891588)}"
-21298,10021,GO-20151198566,THEFT UNDER,2015-07-14T00:00:00,2015,July,Tuesday,14,195,14,2015-07-15T00:00:00,2015,July,Wednesday,15,196,8,D13,Toronto,94,Wychwood (94),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GARNEAU,,OT,0,WHIRED,600.0,STOLEN,21277,"{'type': 'Point', 'coordinates': (-79.4180477, 43.67891588)}"
-21299,10159,GO-20159005237,THEFT UNDER,2015-07-31T00:00:00,2015,July,Friday,31,212,17,2015-08-01T00:00:00,2015,August,Saturday,1,213,10,D13,Toronto,94,Wychwood (94),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EM,,EL,30,RED,1219.0,STOLEN,21278,"{'type': 'Point', 'coordinates': (-79.43464657, 43.67981571)}"
-21300,10169,GO-20159005280,THEFT UNDER,2015-08-03T00:00:00,2015,August,Monday,3,215,4,2015-08-03T00:00:00,2015,August,Monday,3,215,20,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,16 SPEED BIKE,RC,16,GRN,800.0,STOLEN,21279,"{'type': 'Point', 'coordinates': (-79.42291113, 43.68084795)}"
-21301,10573,GO-20159007974,THEFT UNDER,2015-10-01T00:00:00,2015,October,Thursday,1,274,7,2015-10-01T00:00:00,2015,October,Thursday,1,274,12,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,STORM,MT,27,GRY,890.0,STOLEN,21280,"{'type': 'Point', 'coordinates': (-79.43018747, 43.6747353)}"
-21302,10593,GO-20159008217,THEFT UNDER,2015-10-05T00:00:00,2015,October,Monday,5,278,18,2015-10-05T00:00:00,2015,October,Monday,5,278,22,D13,Toronto,94,Wychwood (94),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ROADSTER,RG,3,CPR,750.0,STOLEN,21281,"{'type': 'Point', 'coordinates': (-79.42568053, 43.68170959)}"
-21303,10675,GO-20151824838,THEFT UNDER,2015-10-15T00:00:00,2015,October,Thursday,15,288,15,2015-10-23T00:00:00,2015,October,Friday,23,296,16,D13,Toronto,94,Wychwood (94),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,HARD ROCK,MT,21,BLKGRY,700.0,STOLEN,21282,"{'type': 'Point', 'coordinates': (-79.42193538, 43.68241953)}"
-21304,10676,GO-20151824838,THEFT UNDER,2015-10-15T00:00:00,2015,October,Thursday,15,288,15,2015-10-23T00:00:00,2015,October,Friday,23,296,16,D13,Toronto,94,Wychwood (94),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KONA,HULA,MT,21,WHIGRN,600.0,STOLEN,21283,"{'type': 'Point', 'coordinates': (-79.42193538, 43.68241953)}"
-21305,10724,GO-20159009390,THEFT UNDER,2015-10-25T00:00:00,2015,October,Sunday,25,298,3,2015-11-05T00:00:00,2015,November,Thursday,5,309,11,D13,Toronto,94,Wychwood (94),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,PEGASUS,OT,27,BLK,1000.0,STOLEN,21284,"{'type': 'Point', 'coordinates': (-79.43360909, 43.68002394)}"
-21306,10887,GO-20159011292,THEFT UNDER,2015-12-24T00:00:00,2015,December,Thursday,24,358,18,2015-12-25T00:00:00,2015,December,Friday,25,359,16,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,MT,24,BLK,800.0,STOLEN,21285,"{'type': 'Point', 'coordinates': (-79.42532888, 43.68085919)}"
-21307,10896,GO-20152233203,B&E W'INTENT,2015-12-28T00:00:00,2015,December,Monday,28,362,20,2015-12-30T00:00:00,2015,December,Wednesday,30,364,14,D13,Toronto,94,Wychwood (94),"Private Property Structure (Pool, Shed, Detached Garage)",Other,FUJI,DECLARATION,OT,1,BLK,500.0,STOLEN,21286,"{'type': 'Point', 'coordinates': (-79.42256685, 43.67997759)}"
-21308,10897,GO-20152233203,B&E W'INTENT,2015-12-28T00:00:00,2015,December,Monday,28,362,20,2015-12-30T00:00:00,2015,December,Wednesday,30,364,14,D13,Toronto,94,Wychwood (94),"Private Property Structure (Pool, Shed, Detached Garage)",Other,FEXIE,,OT,1,BLU,500.0,STOLEN,21287,"{'type': 'Point', 'coordinates': (-79.42256685, 43.67997759)}"
-21309,11186,GO-20169003727,THEFT UNDER,2016-04-21T00:00:00,2016,April,Thursday,21,112,3,2016-04-23T00:00:00,2016,April,Saturday,23,114,10,D13,Toronto,94,Wychwood (94),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,EM,URBAN,EL,32,YEL,350.0,STOLEN,21288,"{'type': 'Point', 'coordinates': (-79.42496796, 43.67998884)}"
-21310,11230,GO-20169003979,THEFT UNDER - BICYCLE,2016-04-29T00:00:00,2016,April,Friday,29,120,10,2016-04-30T00:00:00,2016,April,Saturday,30,121,11,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,COUGAR 2,OT,1,RED,800.0,STOLEN,21289,"{'type': 'Point', 'coordinates': (-79.43018260000001, 43.67294143)}"
-21311,11314,GO-2016831154,THEFT UNDER - BICYCLE,2016-05-14T00:00:00,2016,May,Saturday,14,135,17,2016-05-14T00:00:00,2016,May,Saturday,14,135,18,D13,Toronto,94,Wychwood (94),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,RAPTOR CLASSIC,EL,0,BLK,2000.0,STOLEN,21290,"{'type': 'Point', 'coordinates': (-79.43007432, 43.68079185)}"
-21312,11344,GO-2016873426,THEFT OVER - BICYCLE,2016-05-21T00:00:00,2016,May,Saturday,21,142,6,2016-05-21T00:00:00,2016,May,Saturday,21,142,6,D13,Toronto,94,Wychwood (94),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,MT,10,,800.0,STOLEN,21291,"{'type': 'Point', 'coordinates': (-79.42828936, 43.67473002)}"
-21313,11345,GO-2016873426,THEFT OVER - BICYCLE,2016-05-21T00:00:00,2016,May,Saturday,21,142,6,2016-05-21T00:00:00,2016,May,Saturday,21,142,6,D13,Toronto,94,Wychwood (94),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,MT,10,SIL,565.0,STOLEN,21292,"{'type': 'Point', 'coordinates': (-79.42828936, 43.67473002)}"
-21314,11434,GO-2016956231,PROPERTY - FOUND,2016-06-02T00:00:00,2016,June,Thursday,2,154,8,2016-06-02T00:00:00,2016,June,Thursday,2,154,16,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,CLASSIC CRUISER,OT,1,SIL,,UNKNOWN,21293,"{'type': 'Point', 'coordinates': (-79.42239216, 43.67398341)}"
-21315,11530,GO-20169005805,THEFT UNDER - BICYCLE,2016-06-13T00:00:00,2016,June,Monday,13,165,22,2016-06-14T00:00:00,2016,June,Tuesday,14,166,22,D13,Toronto,94,Wychwood (94),"Apartment (Rooming House, Condo)",Apartment,OT,ST. TROPEZ,RG,24,BLK,450.0,STOLEN,21294,"{'type': 'Point', 'coordinates': (-79.42766224, 43.68129997)}"
-21316,11591,GO-20161081351,THEFT UNDER - BICYCLE,2016-06-21T00:00:00,2016,June,Tuesday,21,173,1,2016-06-21T00:00:00,2016,June,Tuesday,21,173,8,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,YORKVILLE,RG,21,,450.0,STOLEN,21295,"{'type': 'Point', 'coordinates': (-79.42828936, 43.67473002)}"
-21317,11593,GO-20169006101,THEFT UNDER - BICYCLE,2016-06-20T00:00:00,2016,June,Monday,20,172,19,2016-06-21T00:00:00,2016,June,Tuesday,21,173,0,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,MILANO,RG,7,BLK,600.0,STOLEN,21296,"{'type': 'Point', 'coordinates': (-79.42622391, 43.67493126)}"
-21318,11633,GO-20169006322,THEFT UNDER,2016-06-24T00:00:00,2016,June,Friday,24,176,18,2016-06-24T00:00:00,2016,June,Friday,24,176,22,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MA,FAIRFAX,OT,24,SIL,1000.0,STOLEN,21297,"{'type': 'Point', 'coordinates': (-79.43307327, 43.67624154)}"
-21319,11690,GO-20169006672,THEFT UNDER - BICYCLE,2016-07-03T00:00:00,2016,July,Sunday,3,185,22,2016-07-04T00:00:00,2016,July,Monday,4,186,8,D13,Toronto,94,Wychwood (94),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,21,WHI,400.0,STOLEN,21298,"{'type': 'Point', 'coordinates': (-79.42423813, 43.67821832)}"
-21320,11736,GO-20161183086,THEFT UNDER - BICYCLE,2016-07-05T00:00:00,2016,July,Tuesday,5,187,19,2016-07-06T00:00:00,2016,July,Wednesday,6,188,16,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,,RG,10,BLKGLD,300.0,STOLEN,21299,"{'type': 'Point', 'coordinates': (-79.42340096, 43.67363686)}"
-21321,12060,GO-20169008565,THEFT UNDER - BICYCLE,2016-08-09T00:00:00,2016,August,Tuesday,9,222,17,2016-08-11T00:00:00,2016,August,Thursday,11,224,12,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,,RG,18,BLK,400.0,STOLEN,21300,"{'type': 'Point', 'coordinates': (-79.4334016, 43.67445677)}"
-21322,12243,GO-20169009804,THEFT UNDER,2016-09-01T00:00:00,2016,September,Thursday,1,245,0,2016-09-01T00:00:00,2016,September,Thursday,1,245,15,D13,Toronto,94,Wychwood (94),Bar / Restaurant,Commercial,GI,OCRC2,RG,21,RED,2000.0,STOLEN,21301,"{'type': 'Point', 'coordinates': (-79.42883171, 43.68104906)}"
-21323,12440,GO-20169011014,THEFT UNDER - BICYCLE,2016-09-15T00:00:00,2016,September,Thursday,15,259,8,2016-09-24T00:00:00,2016,September,Saturday,24,268,9,D13,Toronto,94,Wychwood (94),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,ALIGHT 2 DD,RG,24,PLE,700.0,STOLEN,21302,"{'type': 'Point', 'coordinates': (-79.4339243, 43.67738102)}"
-21324,12441,GO-20169011014,THEFT UNDER - BICYCLE,2016-09-15T00:00:00,2016,September,Thursday,15,259,8,2016-09-24T00:00:00,2016,September,Saturday,24,268,9,D13,Toronto,94,Wychwood (94),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,ESCAPE1,RG,24,BLU,850.0,STOLEN,21303,"{'type': 'Point', 'coordinates': (-79.4339243, 43.67738102)}"
-21325,12442,GO-20169011014,THEFT UNDER - BICYCLE,2016-09-15T00:00:00,2016,September,Thursday,15,259,8,2016-09-24T00:00:00,2016,September,Saturday,24,268,9,D13,Toronto,94,Wychwood (94),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,700F QUICK WMNS,RG,24,BLK,850.0,STOLEN,21304,"{'type': 'Point', 'coordinates': (-79.4339243, 43.67738102)}"
-21326,12524,GO-20169011412,THEFT UNDER - BICYCLE,2016-10-01T00:00:00,2016,October,Saturday,1,275,12,2016-10-01T00:00:00,2016,October,Saturday,1,275,14,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RC,1,WHI,0.0,STOLEN,21305,"{'type': 'Point', 'coordinates': (-79.42828936, 43.67473002)}"
-21327,12716,GO-20161953837,THEFT UNDER - BICYCLE,2016-10-02T00:00:00,2016,October,Sunday,2,276,0,2016-11-03T00:00:00,2016,November,Thursday,3,308,9,D13,Toronto,94,Wychwood (94),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BATAVUS,DIVA,TO,30,SIL,1800.0,STOLEN,21306,"{'type': 'Point', 'coordinates': (-79.42839344, 43.67549583)}"
-21328,12717,GO-20161953837,THEFT UNDER - BICYCLE,2016-10-02T00:00:00,2016,October,Sunday,2,276,0,2016-11-03T00:00:00,2016,November,Thursday,3,308,9,D13,Toronto,94,Wychwood (94),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,GLOBE,RC,1,WHI,1200.0,STOLEN,21307,"{'type': 'Point', 'coordinates': (-79.42839344, 43.67549583)}"
-21329,15308,GO-20149002816,THEFT UNDER,2014-04-13T00:00:00,2014,April,Sunday,13,103,17,2014-04-13T00:00:00,2014,April,Sunday,13,103,19,D13,Toronto,94,Wychwood (94),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CC,,MT,21,WHI,400.0,STOLEN,21308,"{'type': 'Point', 'coordinates': (-79.43296385, 43.67841362)}"
-21330,15366,GO-20143000657,B&E,2014-09-27T00:00:00,2014,September,Saturday,27,270,17,2014-09-28T00:00:00,2014,September,Sunday,28,271,10,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KONA,JAKE THE SNAKE,RC,24,LGR,1000.0,STOLEN,21309,"{'type': 'Point', 'coordinates': (-79.42839344, 43.67549583)}"
-21331,15376,GO-20143172148,THEFT UNDER,2014-10-24T00:00:00,2014,October,Friday,24,297,22,2014-10-25T00:00:00,2014,October,Saturday,25,298,12,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,EUROPEAN,INVADER,MT,16,ONG,100.0,STOLEN,21310,"{'type': 'Point', 'coordinates': (-79.42502095, 43.68010939)}"
-21332,15409,GO-20151055739,THEFT UNDER,2015-05-19T00:00:00,2015,May,Tuesday,19,139,18,2015-06-23T00:00:00,2015,June,Tuesday,23,174,10,D13,Toronto,94,Wychwood (94),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,AMIS,FOLDING,FO,0,GRN,,STOLEN,21311,"{'type': 'Point', 'coordinates': (-79.43258152, 43.67457157)}"
-21333,15410,GO-20151055739,THEFT UNDER,2015-05-19T00:00:00,2015,May,Tuesday,19,139,18,2015-06-23T00:00:00,2015,June,Tuesday,23,174,10,D13,Toronto,94,Wychwood (94),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,TO,3,,150.0,STOLEN,21312,"{'type': 'Point', 'coordinates': (-79.43258152, 43.67457157)}"
-21334,15417,GO-20151117331,THEFT UNDER,2015-07-03T00:00:00,2015,July,Friday,3,184,2,2015-07-03T00:00:00,2015,July,Friday,3,184,2,D13,Toronto,94,Wychwood (94),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RALEIGH,,RC,21,,,RECOVERED,21313,"{'type': 'Point', 'coordinates': (-79.42628335, 43.67877685)}"
-21335,15444,GO-20159006340,THEFT UNDER,2015-08-21T00:00:00,2015,August,Friday,21,233,20,2015-08-24T00:00:00,2015,August,Monday,24,236,13,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,TAMLAND II,TO,22,RED,2100.0,STOLEN,21314,"{'type': 'Point', 'coordinates': (-79.42865345, 43.67475385)}"
-21336,15446,GO-20151522449,THEFT UNDER,2015-08-30T00:00:00,2015,August,Sunday,30,242,0,2015-09-03T00:00:00,2015,September,Thursday,3,246,18,D13,Toronto,94,Wychwood (94),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO NAME ST BIKE,56CM HYBRID,OT,1,BLK,750.0,STOLEN,21315,"{'type': 'Point', 'coordinates': (-79.41887334, 43.682188630000006)}"
-21337,15461,GO-20151824838,THEFT UNDER,2015-10-15T00:00:00,2015,October,Thursday,15,288,15,2015-10-23T00:00:00,2015,October,Friday,23,296,16,D13,Toronto,94,Wychwood (94),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RAZOR,,SC,1,SIL,150.0,STOLEN,21316,"{'type': 'Point', 'coordinates': (-79.42193538, 43.68241953)}"
-21338,15489,GO-2016616898,THEFT UNDER - BICYCLE,2016-04-11T00:00:00,2016,April,Monday,11,102,18,2016-04-11T00:00:00,2016,April,Monday,11,102,18,D13,Toronto,94,Wychwood (94),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FUJI,,OT,1,,429.0,UNKNOWN,21317,"{'type': 'Point', 'coordinates': (-79.42642161, 43.68230177000001)}"
-21339,15490,GO-2016616898,THEFT UNDER - BICYCLE,2016-04-11T00:00:00,2016,April,Monday,11,102,18,2016-04-11T00:00:00,2016,April,Monday,11,102,18,D13,Toronto,94,Wychwood (94),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MARINONI,SAN RAFAEL,OT,1,,389.0,UNKNOWN,21318,"{'type': 'Point', 'coordinates': (-79.42642161, 43.68230177000001)}"
-21340,15493,GO-20169004028,THEFT UNDER - BICYCLE,2016-04-29T00:00:00,2016,April,Friday,29,120,23,2016-05-01T00:00:00,2016,May,Sunday,1,122,18,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,SEEK2,RG,18,BLK,480.0,STOLEN,21319,"{'type': 'Point', 'coordinates': (-79.43018260000001, 43.67294143)}"
-21341,15499,GO-2016830532,THEFT UNDER,2016-05-11T00:00:00,2016,May,Wednesday,11,132,19,2016-05-15T00:00:00,2016,May,Sunday,15,136,20,D13,Toronto,94,Wychwood (94),"Apartment (Rooming House, Condo)",Apartment,BAYMAK,VOYAGER,EL,1,SILBLK,1300.0,STOLEN,21320,"{'type': 'Point', 'coordinates': (-79.42614564, 43.68162761)}"
-21342,15552,GO-20161604968,THEFT UNDER - BICYCLE,2016-09-09T00:00:00,2016,September,Friday,9,253,20,2016-09-09T00:00:00,2016,September,Friday,9,253,21,D13,Toronto,94,Wychwood (94),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,HYBRED,MT,21,BLU,700.0,STOLEN,21321,"{'type': 'Point', 'coordinates': (-79.43565108, 43.67959208)}"
-21343,15555,GO-20169010736,THEFT UNDER - BICYCLE,2016-09-11T00:00:00,2016,September,Sunday,11,255,15,2016-09-19T00:00:00,2016,September,Monday,19,263,16,D13,Toronto,94,Wychwood (94),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,WELLINGTON ROAD,RC,21,SIL,700.0,STOLEN,21322,"{'type': 'Point', 'coordinates': (-79.42205937, 43.67868098)}"
-21344,15577,GO-20169013634,THEFT UNDER - BICYCLE,2016-11-19T00:00:00,2016,November,Saturday,19,324,17,2016-11-19T00:00:00,2016,November,Saturday,19,324,21,D13,Toronto,94,Wychwood (94),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RC,21,GRY,600.0,STOLEN,21323,"{'type': 'Point', 'coordinates': (-79.43360909, 43.68002394)}"
-21345,15621,GO-20179011705,THEFT UNDER - BICYCLE,2017-07-22T00:00:00,2017,July,Saturday,22,203,16,2017-08-04T00:00:00,2017,August,Friday,4,216,16,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,RG,18,BLK,1200.0,STOLEN,21324,"{'type': 'Point', 'coordinates': (-79.42309649, 43.68133495)}"
-21346,15626,GO-20171914828,THEFT UNDER - BICYCLE,2017-10-22T00:00:00,2017,October,Sunday,22,295,19,2017-10-22T00:00:00,2017,October,Sunday,22,295,20,D13,Toronto,94,Wychwood (94),Bar / Restaurant,Commercial,SPECIALIZED,STUMPJUMPER FSR,OT,0,,4000.0,STOLEN,21325,"{'type': 'Point', 'coordinates': (-79.41950573, 43.6829279)}"
-21347,15627,GO-20179019551,THEFT UNDER,2017-10-31T00:00:00,2017,October,Tuesday,31,304,19,2017-11-13T00:00:00,2017,November,Monday,13,317,19,D13,Toronto,94,Wychwood (94),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,MARKET,RG,24,GRY,760.0,STOLEN,21326,"{'type': 'Point', 'coordinates': (-79.42628335, 43.67877685)}"
-21348,15638,GO-20189031069,THEFT UNDER,2018-09-19T00:00:00,2018,September,Wednesday,19,262,11,2018-09-19T00:00:00,2018,September,Wednesday,19,262,11,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,CYPRESS DX,MT,24,BLU,1400.0,STOLEN,21327,"{'type': 'Point', 'coordinates': (-79.43478771, 43.67693124)}"
-21349,15642,GO-20199018701,THEFT UNDER - BICYCLE,2019-05-27T00:00:00,2019,May,Monday,27,147,16,2019-06-15T00:00:00,2019,June,Saturday,15,166,11,D13,Toronto,94,Wychwood (94),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,RG,5,BLK,0.0,STOLEN,21328,"{'type': 'Point', 'coordinates': (-79.42256685, 43.67997759)}"
-21350,15643,GO-20199018701,THEFT UNDER - BICYCLE,2019-05-27T00:00:00,2019,May,Monday,27,147,16,2019-06-15T00:00:00,2019,June,Saturday,15,166,11,D13,Toronto,94,Wychwood (94),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,BLACK KNIGHT,TO,5,GRY,0.0,STOLEN,21329,"{'type': 'Point', 'coordinates': (-79.42256685, 43.67997759)}"
-21351,18126,GO-20161215798,THEFT UNDER - BICYCLE,2016-07-11T00:00:00,2016,July,Monday,11,193,10,2016-07-11T00:00:00,2016,July,Monday,11,193,16,D13,Toronto,94,Wychwood (94),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RALEIGH,,MT,27,BRN,300.0,STOLEN,21330,"{'type': 'Point', 'coordinates': (-79.42883171, 43.68104906)}"
-21352,18196,GO-20179004484,THEFT UNDER,2017-04-09T00:00:00,2017,April,Sunday,9,99,21,2017-04-10T00:00:00,2017,April,Monday,10,100,9,D13,Toronto,94,Wychwood (94),"Apartment (Rooming House, Condo)",Apartment,TR,FX 3 WOMENS,RG,27,BLK,1400.0,STOLEN,21331,"{'type': 'Point', 'coordinates': (-79.42628335, 43.67877685)}"
-21353,18239,GO-20189025410,THEFT UNDER - BICYCLE,2018-08-06T00:00:00,2018,August,Monday,6,218,13,2018-08-07T00:00:00,2018,August,Tuesday,7,219,14,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SPECIALE OTTO,RG,8,BLK,1026.0,STOLEN,21332,"{'type': 'Point', 'coordinates': (-79.42661502, 43.67964193)}"
-21354,18259,GO-20191847408,THEFT UNDER,2019-08-17T00:00:00,2019,August,Saturday,17,229,2,2019-09-25T00:00:00,2019,September,Wednesday,25,268,11,D13,Toronto,94,Wychwood (94),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,,EL,1,,,STOLEN,21333,"{'type': 'Point', 'coordinates': (-79.43293662, 43.67530723)}"
-21355,18260,GO-20192238508,THEFT UNDER,2019-10-03T00:00:00,2019,October,Thursday,3,276,12,2019-11-03T00:00:00,2019,November,Sunday,3,307,16,D13,Toronto,94,Wychwood (94),"Apartment (Rooming House, Condo)",Apartment,OTHER,E-BIKE,EL,0,BLK,1000.0,STOLEN,21334,"{'type': 'Point', 'coordinates': (-79.41744019, 43.68105168)}"
-21356,18267,GO-20209011689,THEFT UNDER,2020-04-22T00:00:00,2020,April,Wednesday,22,113,2,2020-04-22T00:00:00,2020,April,Wednesday,22,113,9,D13,Toronto,94,Wychwood (94),"Apartment (Rooming House, Condo)",Apartment,GI,2 M CHARCOAL,RG,11,GRY,842.0,STOLEN,21335,"{'type': 'Point', 'coordinates': (-79.42828936, 43.67473002)}"
-21357,18270,GO-20201154089,THEFT OF EBIKE UNDER $5000,2020-06-22T00:00:00,2020,June,Monday,22,174,22,2020-06-23T00:00:00,2020,June,Tuesday,23,175,19,D13,Toronto,94,Wychwood (94),"Private Property Structure (Pool, Shed, Detached Garage)",Other,EMMO,MONSTER,OT,99,BLKONG,,STOLEN,21336,"{'type': 'Point', 'coordinates': (-79.43066374, 43.67404317)}"
-21358,18286,GO-20209021048,THEFT UNDER,2020-08-22T00:00:00,2020,August,Saturday,22,235,20,2020-08-23T00:00:00,2020,August,Sunday,23,236,8,D13,Toronto,94,Wychwood (94),"Apartment (Rooming House, Condo)",Apartment,TR,FX-3,RG,18,BLK,900.0,STOLEN,21337,"{'type': 'Point', 'coordinates': (-79.42873722, 43.672385780000006)}"
-21359,18287,GO-20209021059,THEFT UNDER,2020-08-20T00:00:00,2020,August,Thursday,20,233,11,2020-08-23T00:00:00,2020,August,Sunday,23,236,14,D13,Toronto,94,Wychwood (94),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,6,BLK,500.0,STOLEN,21338,"{'type': 'Point', 'coordinates': (-79.43246523, 43.68027632)}"
-21360,18290,GO-20209021755,THEFT UNDER,2020-08-26T00:00:00,2020,August,Wednesday,26,239,0,2020-08-29T00:00:00,2020,August,Saturday,29,242,17,D13,Toronto,94,Wychwood (94),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MA,FAIRFAX 1,RG,10,BLK,1371.0,STOLEN,21339,"{'type': 'Point', 'coordinates': (-79.42468446, 43.67396962)}"
-21361,18323,GO-20141919532,THEFT UNDER,2014-04-18T00:00:00,2014,April,Friday,18,108,23,2014-04-19T00:00:00,2014,April,Saturday,19,109,11,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,YAMANO,,MT,18,SIL,400.0,STOLEN,21340,"{'type': 'Point', 'coordinates': (-79.43313787, 43.67071462)}"
-21362,18342,GO-20149004540,THEFT UNDER,2014-06-28T00:00:00,2014,June,Saturday,28,179,0,2014-06-28T00:00:00,2014,June,Saturday,28,179,16,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,PURE,OT,3,BLK,500.0,STOLEN,21341,"{'type': 'Point', 'coordinates': (-79.43018260000001, 43.67294143)}"
-21363,18416,GO-20159003558,THEFT UNDER,2015-06-13T00:00:00,2015,June,Saturday,13,164,12,2015-06-13T00:00:00,2015,June,Saturday,13,164,12,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,MT,24,TAN,,STOLEN,21343,"{'type': 'Point', 'coordinates': (-79.42305461, 43.67556177)}"
-21364,18425,GO-20159004417,THEFT UNDER,2015-07-11T00:00:00,2015,July,Saturday,11,192,7,2015-07-11T00:00:00,2015,July,Saturday,11,192,11,D13,Toronto,94,Wychwood (94),Bar / Restaurant,Commercial,NO,CHARGER,MT,27,GRN,800.0,STOLEN,21344,"{'type': 'Point', 'coordinates': (-79.42883171, 43.68104906)}"
-21365,18429,GO-20159004602,THEFT UNDER,2015-07-14T00:00:00,2015,July,Tuesday,14,195,19,2015-07-15T00:00:00,2015,July,Wednesday,15,196,21,D13,Toronto,94,Wychwood (94),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,VALENCE A4,RC,16,,735.0,STOLEN,21345,"{'type': 'Point', 'coordinates': (-79.41639892, 43.67833261)}"
-21366,18445,GO-20151426385,THEFT UNDER,2015-08-19T00:00:00,2015,August,Wednesday,19,231,11,2015-08-19T00:00:00,2015,August,Wednesday,19,231,11,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,,MT,10,BLU,,STOLEN,21346,"{'type': 'Point', 'coordinates': (-79.42938806, 43.67910336)}"
-21367,18484,GO-2016775520,THEFT UNDER,2016-05-05T00:00:00,2016,May,Thursday,5,126,21,2016-05-06T00:00:00,2016,May,Friday,6,127,8,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,EL,1,GLD,2000.0,STOLEN,21347,"{'type': 'Point', 'coordinates': (-79.42648302, 43.67247944)}"
-21368,21391,GO-20169006568,THEFT UNDER - BICYCLE,2016-06-28T00:00:00,2016,June,Tuesday,28,180,9,2016-06-30T00:00:00,2016,June,Thursday,30,182,12,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,,MT,18,WHI,100.0,STOLEN,21348,"{'type': 'Point', 'coordinates': (-79.42323107, 43.67309711)}"
-21369,21419,GO-20161607549,THEFT UNDER - BICYCLE,2016-09-09T00:00:00,2016,September,Friday,9,253,22,2016-09-10T00:00:00,2016,September,Saturday,10,254,9,D13,Toronto,94,Wychwood (94),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MIELE,,RG,10,BLU,600.0,STOLEN,21349,"{'type': 'Point', 'coordinates': (-79.42709024, 43.67676494)}"
-21370,21420,GO-20161607549,THEFT UNDER - BICYCLE,2016-09-09T00:00:00,2016,September,Friday,9,253,22,2016-09-10T00:00:00,2016,September,Saturday,10,254,9,D13,Toronto,94,Wychwood (94),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,,RG,10,RED,350.0,STOLEN,21350,"{'type': 'Point', 'coordinates': (-79.42709024, 43.67676494)}"
-21371,21461,GO-2017296137,THEFT OF EBIKE UNDER $5000,2017-02-16T00:00:00,2017,February,Thursday,16,47,1,2017-02-16T00:00:00,2017,February,Thursday,16,47,19,D13,Toronto,94,Wychwood (94),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,MAX,EL,1,WHI,2000.0,STOLEN,21351,"{'type': 'Point', 'coordinates': (-79.43464657, 43.67981571)}"
-21372,21502,GO-20171162939,THEFT OF EBIKE UNDER $5000,2017-06-29T00:00:00,2017,June,Thursday,29,180,1,2017-06-29T00:00:00,2017,June,Thursday,29,180,12,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,XINRI,EM39,EL,1,WHI,1900.0,STOLEN,21352,"{'type': 'Point', 'coordinates': (-79.42648302, 43.67247944)}"
-21373,4833,GO-20199023147,THEFT UNDER - BICYCLE,2019-07-21T00:00:00,2019,July,Sunday,21,202,13,2019-07-21T00:00:00,2019,July,Sunday,21,202,18,D53,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SU,,MT,9,GRY,0.0,STOLEN,21353,"{'type': 'Point', 'coordinates': (-79.39539614, 43.67190098)}"
-21374,4853,GO-20191390545,B&E W'INTENT,2019-07-16T00:00:00,2019,July,Tuesday,16,197,9,2019-07-24T00:00:00,2019,July,Wednesday,24,205,12,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SIMCOE,,RG,7,REDPNK,2000.0,STOLEN,21354,"{'type': 'Point', 'coordinates': (-79.40974314, 43.66849798)}"
-21375,4862,GO-20191390545,B&E W'INTENT,2019-07-16T00:00:00,2019,July,Tuesday,16,197,9,2019-07-24T00:00:00,2019,July,Wednesday,24,205,12,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SIMCOE CLASSIC,OT,7,OTH,2000.0,STOLEN,21355,"{'type': 'Point', 'coordinates': (-79.40974314, 43.66849798)}"
-21376,4867,GO-20191227448,B&E W'INTENT,2019-05-28T00:00:00,2019,May,Tuesday,28,148,9,2019-07-02T00:00:00,2019,July,Tuesday,2,183,13,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,PRO CARBON SPEC,MT,24,RED,,STOLEN,21356,"{'type': 'Point', 'coordinates': (-79.39039203, 43.67914574)}"
-21377,19070,GO-20179002197,THEFT UNDER - BICYCLE,2017-02-19T00:00:00,2017,February,Sunday,19,50,14,2017-02-19T00:00:00,2017,February,Sunday,19,50,19,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,CUSTOM,RC,1,BLK,400.0,STOLEN,21357,"{'type': 'Point', 'coordinates': (-79.39979751, 43.66751644)}"
-21378,4901,GO-20191421564,THEFT UNDER - BICYCLE,2019-07-27T00:00:00,2019,July,Saturday,27,208,12,2019-07-28T00:00:00,2019,July,Sunday,28,209,18,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,UNISEX,MT,0,WHI,700.0,STOLEN,21358,"{'type': 'Point', 'coordinates': (-79.41434208, 43.66653155)}"
-21379,4915,GO-20199024196,THEFT UNDER - BICYCLE,2019-07-28T00:00:00,2019,July,Sunday,28,209,21,2019-07-29T00:00:00,2019,July,Monday,29,210,9,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,NO,,MT,21,,200.0,STOLEN,21359,"{'type': 'Point', 'coordinates': (-79.39445644, 43.67827840000001)}"
-21380,19081,GO-20179006748,THEFT UNDER - BICYCLE,2017-05-21T00:00:00,2017,May,Sunday,21,141,18,2017-05-21T00:00:00,2017,May,Sunday,21,141,21,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,INDIE 4,MT,15,ONG,800.0,STOLEN,21360,"{'type': 'Point', 'coordinates': (-79.40050955, 43.67752908)}"
-21381,4926,GO-20199024369,THEFT UNDER - BICYCLE,2019-07-29T00:00:00,2019,July,Monday,29,210,22,2019-07-30T00:00:00,2019,July,Tuesday,30,211,13,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE,RG,24,WHI,250.0,STOLEN,21361,"{'type': 'Point', 'coordinates': (-79.39787549000002, 43.66923262)}"
-21382,19084,GO-2017999555,THEFT OVER - BICYCLE,2017-05-31T00:00:00,2017,May,Wednesday,31,151,18,2017-06-05T00:00:00,2017,June,Monday,5,156,21,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,CERVELO,S3,RC,11,BLKWHI,11500.0,STOLEN,21362,"{'type': 'Point', 'coordinates': (-79.39380783, 43.67516312)}"
-21383,12879,GO-20181509482,THEFT UNDER,2018-08-08T00:00:00,2018,August,Wednesday,8,220,10,2018-08-08T00:00:00,2018,August,Wednesday,8,220,13,D53,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,EL,3,BLK,3000.0,STOLEN,21363,"{'type': 'Point', 'coordinates': (-79.39979751, 43.66751644)}"
-21384,21471,GO-2017494478,THEFT UNDER - BICYCLE,2017-03-18T00:00:00,2017,March,Saturday,18,77,11,2017-03-20T00:00:00,2017,March,Monday,20,79,9,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SURLY,STEAMROLLER,OT,1,BLK,1000.0,STOLEN,21364,"{'type': 'Point', 'coordinates': (-79.41361049000001, 43.66461685)}"
-21385,4927,GO-20199024379,THEFT UNDER - BICYCLE,2019-07-31T00:00:00,2019,July,Wednesday,31,212,10,2019-07-31T00:00:00,2019,July,Wednesday,31,212,11,D53,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,FJ,,TO,1,ONG,1100.0,STOLEN,21365,"{'type': 'Point', 'coordinates': (-79.40356059, 43.67559443)}"
-21386,4928,GO-20199024379,THEFT UNDER - BICYCLE,2019-07-31T00:00:00,2019,July,Wednesday,31,212,10,2019-07-31T00:00:00,2019,July,Wednesday,31,212,11,D53,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,FJ,,TO,1,ONG,1100.0,STOLEN,21366,"{'type': 'Point', 'coordinates': (-79.40356059, 43.67559443)}"
-21387,4943,GO-20191454104,THEFT UNDER - BICYCLE,2019-08-02T00:00:00,2019,August,Friday,2,214,6,2019-08-02T00:00:00,2019,August,Friday,2,214,6,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BRODIE,,RG,6,WHI,1000.0,STOLEN,21367,"{'type': 'Point', 'coordinates': (-79.41057995, 43.67066529)}"
-21388,4944,GO-20191454104,THEFT UNDER - BICYCLE,2019-08-02T00:00:00,2019,August,Friday,2,214,6,2019-08-02T00:00:00,2019,August,Friday,2,214,6,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,,RG,6,GRY,1000.0,STOLEN,21368,"{'type': 'Point', 'coordinates': (-79.41057995, 43.67066529)}"
-21389,5074,GO-20199026256,THEFT UNDER - BICYCLE,2019-08-13T00:00:00,2019,August,Tuesday,13,225,23,2019-08-14T00:00:00,2019,August,Wednesday,14,226,20,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,LAGER,RG,1,BLK,650.0,STOLEN,21369,"{'type': 'Point', 'coordinates': (-79.39410211, 43.66871992)}"
-21390,5092,GO-20191570782,THEFT UNDER - BICYCLE,2019-08-18T00:00:00,2019,August,Sunday,18,230,9,2019-08-18T00:00:00,2019,August,Sunday,18,230,12,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,"26"""" KENSINGTON",RG,6,WHI,,STOLEN,21370,"{'type': 'Point', 'coordinates': (-79.39124334, 43.67113341000001)}"
-21391,5104,GO-20199026808,THEFT OF EBIKE UNDER $5000,2019-08-18T00:00:00,2019,August,Sunday,18,230,1,2019-08-19T00:00:00,2019,August,Monday,19,231,12,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,TR,2300,TO,18,BLK,1500.0,STOLEN,21371,"{'type': 'Point', 'coordinates': (-79.39980351, 43.67437422)}"
-21392,5122,GO-20199027159,THEFT UNDER - BICYCLE,2019-08-20T00:00:00,2019,August,Tuesday,20,232,12,2019-08-21T00:00:00,2019,August,Wednesday,21,233,23,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,STORM 9.1,MT,24,BLK,700.0,STOLEN,21372,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-21393,5167,GO-20199027704,THEFT UNDER - BICYCLE,2019-08-21T00:00:00,2019,August,Wednesday,21,233,9,2019-08-26T00:00:00,2019,August,Monday,26,238,11,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,9,BLU,50.0,STOLEN,21373,"{'type': 'Point', 'coordinates': (-79.40531586, 43.66635847)}"
-21394,5263,GO-20199029049,THEFT UNDER - BICYCLE,2019-09-06T00:00:00,2019,September,Friday,6,249,22,2019-09-07T00:00:00,2019,September,Saturday,7,250,10,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,MEC CHINOOK,RG,8,BLK,700.0,STOLEN,21374,"{'type': 'Point', 'coordinates': (-79.403659, 43.67266985)}"
-21395,5265,GO-20199029102,THEFT UNDER - BICYCLE,2019-09-07T00:00:00,2019,September,Saturday,7,250,14,2019-09-07T00:00:00,2019,September,Saturday,7,250,16,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,DIVERGE,TO,24,GRY,2300.0,STOLEN,21375,"{'type': 'Point', 'coordinates': (-79.40357439, 43.66921958)}"
-21396,5281,GO-20191730289,THEFT UNDER - BICYCLE,2019-09-06T00:00:00,2019,September,Friday,6,249,3,2019-09-09T00:00:00,2019,September,Monday,9,252,17,D14,Toronto,95,Annex (95),Homeless Shelter / Mission,Other,UNKNOWN,UNKNOWN,OT,10,BLKGRN,96.0,STOLEN,21376,"{'type': 'Point', 'coordinates': (-79.40600258, 43.67218781)}"
-21397,5283,GO-20199029333,THEFT UNDER,2019-09-08T00:00:00,2019,September,Sunday,8,251,1,2019-09-09T00:00:00,2019,September,Monday,9,252,15,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,GT,GRADE FLAT BAR,RG,24,DGR,750.0,STOLEN,21377,"{'type': 'Point', 'coordinates': (-79.40473364, 43.66896169)}"
-21398,5323,GO-20191771332,THEFT UNDER - BICYCLE,2019-09-15T00:00:00,2019,September,Sunday,15,258,7,2019-09-15T00:00:00,2019,September,Sunday,15,258,8,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KONA,,OT,21,BLK,500.0,STOLEN,21378,"{'type': 'Point', 'coordinates': (-79.39003347, 43.67421927)}"
-21399,5346,GO-20199030271,THEFT UNDER - BICYCLE,2019-08-21T00:00:00,2019,August,Wednesday,21,233,14,2019-09-16T00:00:00,2019,September,Monday,16,259,23,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,OT,9,YEL,0.0,STOLEN,21379,"{'type': 'Point', 'coordinates': (-79.40587057, 43.66878216)}"
-21400,5370,GO-20199030767,THEFT UNDER - BICYCLE,2019-09-02T00:00:00,2019,September,Monday,2,245,11,2019-09-20T00:00:00,2019,September,Friday,20,263,1,D53,Toronto,95,Annex (95),Universities / Colleges,Educational,UK,MOUNTAIN BIKE,MT,7,BRZ,1650.0,STOLEN,21380,"{'type': 'Point', 'coordinates': (-79.40149998, 43.66716143)}"
-21401,15977,GO-20159006587,THEFT UNDER,2015-08-31T00:00:00,2015,August,Monday,31,243,23,2015-09-01T00:00:00,2015,September,Tuesday,1,244,0,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GF,UNKNOWN,MT,21,OTH,1200.0,STOLEN,21381,"{'type': 'Point', 'coordinates': (-79.39137078, 43.67375210000001)}"
-21402,5387,GO-20199031254,THEFT UNDER - BICYCLE,2019-09-23T00:00:00,2019,September,Monday,23,266,17,2019-09-23T00:00:00,2019,September,Monday,23,266,21,D53,Toronto,95,Annex (95),Universities / Colleges,Educational,TR,TREK FX 3,RG,27,BLK,800.0,STOLEN,21382,"{'type': 'Point', 'coordinates': (-79.39979751, 43.66751644)}"
-21403,5431,GO-20191876037,THEFT UNDER,2019-09-28T00:00:00,2019,September,Saturday,28,271,23,2019-09-29T00:00:00,2019,September,Sunday,29,272,12,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FAHRRAD,T100,OT,0,BLK,1500.0,STOLEN,21383,"{'type': 'Point', 'coordinates': (-79.40841923, 43.6719398)}"
-21404,5446,GO-20199032138,THEFT UNDER - BICYCLE,2019-09-21T00:00:00,2019,September,Saturday,21,264,15,2019-09-30T00:00:00,2019,September,Monday,30,273,21,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,520,TO,21,DGR,600.0,STOLEN,21384,"{'type': 'Point', 'coordinates': (-79.38946773, 43.66966903)}"
-21405,5478,GO-20199032743,THEFT UNDER,2019-10-04T00:00:00,2019,October,Friday,4,277,19,2019-10-05T00:00:00,2019,October,Saturday,5,278,20,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,MT,21,GRY,360.0,STOLEN,21385,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-21406,5512,GO-20199033630,THEFT FROM MOTOR VEHICLE UNDER,2019-10-11T00:00:00,2019,October,Friday,11,284,8,2019-10-11T00:00:00,2019,October,Friday,11,284,21,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,AMIRA SL4,RC,11,WHI,3908.0,STOLEN,21386,"{'type': 'Point', 'coordinates': (-79.40526597, 43.67030834)}"
-21407,5571,GO-20199034923,THEFT UNDER - BICYCLE,2019-10-23T00:00:00,2019,October,Wednesday,23,296,2,2019-10-23T00:00:00,2019,October,Wednesday,23,296,11,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,XS / JULIET,RG,1,BLK,500.0,STOLEN,21387,"{'type': 'Point', 'coordinates': (-79.40637158, 43.66842414)}"
-21408,5591,GO-20199035123,THEFT UNDER - BICYCLE,2019-10-19T00:00:00,2019,October,Saturday,19,292,13,2019-10-24T00:00:00,2019,October,Thursday,24,297,19,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,3,LGR,900.0,STOLEN,21388,"{'type': 'Point', 'coordinates': (-79.40526597, 43.67030834)}"
-21409,5594,GO-20199035193,THEFT UNDER - BICYCLE,2019-10-24T00:00:00,2019,October,Thursday,24,297,4,2019-10-25T00:00:00,2019,October,Friday,25,298,11,D53,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,ANTRIM,MT,18,WHI,700.0,STOLEN,21389,"{'type': 'Point', 'coordinates': (-79.40255449, 43.67580963)}"
-21410,5629,GO-20199036033,THEFT UNDER - BICYCLE,2019-10-27T00:00:00,2019,October,Sunday,27,300,15,2019-10-31T00:00:00,2019,October,Thursday,31,304,22,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,UK,BEAUMONT,RG,7,TRQ,300.0,STOLEN,21390,"{'type': 'Point', 'coordinates': (-79.40210106, 43.67299255)}"
-21411,5636,GO-20192125930,B&E,2019-11-02T00:00:00,2019,November,Saturday,2,306,10,2019-11-03T00:00:00,2019,November,Sunday,3,307,15,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MARIN,UNKNOWN,MT,8,BLK,1000.0,STOLEN,21391,"{'type': 'Point', 'coordinates': (-79.41836917, 43.66681301)}"
-21412,5666,GO-20199036926,THEFT UNDER - BICYCLE,2019-11-07T00:00:00,2019,November,Thursday,7,311,12,2019-11-09T00:00:00,2019,November,Saturday,9,313,12,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,1,BLK,589.0,STOLEN,21392,"{'type': 'Point', 'coordinates': (-79.41361049000001, 43.66461685)}"
-21413,5671,GO-20192154565,THEFT UNDER - BICYCLE,2019-11-07T00:00:00,2019,November,Thursday,7,311,11,2019-11-07T00:00:00,2019,November,Thursday,7,311,16,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RALEIGH,SPRITE,MT,6,BLK,500.0,STOLEN,21393,"{'type': 'Point', 'coordinates': (-79.39079343, 43.67319824)}"
-21414,5724,GO-20192283369,B&E,2019-11-01T00:00:00,2019,November,Friday,1,305,0,2019-11-26T00:00:00,2019,November,Tuesday,26,330,15,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,EVO,ST1,EL,15,,2999.0,STOLEN,21394,"{'type': 'Point', 'coordinates': (-79.40473364, 43.66896169)}"
-21415,5751,GO-20199040359,THEFT UNDER - BICYCLE,2019-12-08T00:00:00,2019,December,Sunday,8,342,20,2019-12-09T00:00:00,2019,December,Monday,9,343,22,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,ROCKY,MT,15,RED,50.0,STOLEN,21395,"{'type': 'Point', 'coordinates': (-79.39410211, 43.66871992)}"
-21416,5802,GO-20209000297,THEFT UNDER,2020-01-03T00:00:00,2020,January,Friday,3,3,17,2020-01-03T00:00:00,2020,January,Friday,3,3,17,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,NORCO INDIE 8 I,RG,8,SIL,1000.0,STOLEN,21396,"{'type': 'Point', 'coordinates': (-79.41057995, 43.67066529)}"
-21417,5806,GO-20209000408,THEFT UNDER,2020-01-01T00:00:00,2020,January,Wednesday,1,1,1,2020-01-05T00:00:00,2020,January,Sunday,5,5,2,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,KH,URBAN X,RG,21,BLK,350.0,STOLEN,21397,"{'type': 'Point', 'coordinates': (-79.41355176, 43.66785376)}"
-21418,5808,GO-20209000620,THEFT UNDER,2019-10-25T00:00:00,2019,October,Friday,25,298,16,2020-01-07T00:00:00,2020,January,Tuesday,7,7,0,D53,Toronto,95,Annex (95),Universities / Colleges,Educational,SC,,FO,7,GRY,350.0,STOLEN,21398,"{'type': 'Point', 'coordinates': (-79.40028097000001, 43.66874114)}"
-21419,5868,GO-20209003791,THEFT UNDER,2019-12-31T00:00:00,2019,December,Tuesday,31,365,14,2020-01-31T00:00:00,2020,January,Friday,31,31,14,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,LONG HAUL TRUCK,TO,27,BLK,1000.0,STOLEN,21399,"{'type': 'Point', 'coordinates': (-79.40531586, 43.66635847)}"
-21420,5883,GO-20209004821,THEFT UNDER,2020-02-07T00:00:00,2020,February,Friday,7,38,22,2020-02-10T00:00:00,2020,February,Monday,10,41,1,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,SPORTSTER 40,RG,27,GRY,900.0,STOLEN,21400,"{'type': 'Point', 'coordinates': (-79.40826418, 43.66803619)}"
-21421,5886,GO-20209004963,THEFT UNDER,2020-02-09T00:00:00,2020,February,Sunday,9,40,9,2020-02-10T00:00:00,2020,February,Monday,10,41,20,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,TR,7.3 FX,TO,24,BLK,350.0,STOLEN,21401,"{'type': 'Point', 'coordinates': (-79.40826418, 43.66803619)}"
-21422,5889,GO-20209004821,THEFT UNDER,2020-02-07T00:00:00,2020,February,Friday,7,38,22,2020-02-10T00:00:00,2020,February,Monday,10,41,1,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,27,GRY,1000.0,STOLEN,21402,"{'type': 'Point', 'coordinates': (-79.40826418, 43.66803619)}"
-21423,5891,GO-20209004963,THEFT UNDER,2020-02-09T00:00:00,2020,February,Sunday,9,40,9,2020-02-10T00:00:00,2020,February,Monday,10,41,20,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,TR,,OT,24,BLK,350.0,STOLEN,21403,"{'type': 'Point', 'coordinates': (-79.40826418, 43.66803619)}"
-21424,5892,GO-20209005314,THEFT UNDER,2020-02-06T00:00:00,2020,February,Thursday,6,37,16,2020-02-13T00:00:00,2020,February,Thursday,13,44,12,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,NO,PINNACLE,MT,21,GRY,400.0,STOLEN,21404,"{'type': 'Point', 'coordinates': (-79.40414752, 43.66746377)}"
-21425,5910,GO-20209006107,THEFT UNDER - BICYCLE,2020-02-04T00:00:00,2020,February,Tuesday,4,35,0,2020-02-20T00:00:00,2020,February,Thursday,20,51,8,D53,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,CAAD10,RC,21,BLK,1200.0,STOLEN,21405,"{'type': 'Point', 'coordinates': (-79.39986342, 43.67495124)}"
-21426,5927,GO-20209006850,THEFT UNDER - BICYCLE,2020-02-18T00:00:00,2020,February,Tuesday,18,49,18,2020-02-25T00:00:00,2020,February,Tuesday,25,56,14,D53,Toronto,95,Annex (95),Bar / Restaurant,Commercial,OT,ALLEZ,RC,10,BLK,1200.0,STOLEN,21406,"{'type': 'Point', 'coordinates': (-79.39410211, 43.66871992)}"
-21427,5932,GO-20209007069,THEFT UNDER,2020-02-26T00:00:00,2020,February,Wednesday,26,57,23,2020-02-27T00:00:00,2020,February,Thursday,27,58,11,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,DEL SOL PROJEKT,RG,1,BLK,350.0,STOLEN,21407,"{'type': 'Point', 'coordinates': (-79.41607423, 43.66406885)}"
-21428,5969,GO-20209009337,THEFT UNDER,2020-03-04T00:00:00,2020,March,Wednesday,4,64,9,2020-03-19T00:00:00,2020,March,Thursday,19,79,9,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,RG,10,LGR,300.0,STOLEN,21408,"{'type': 'Point', 'coordinates': (-79.41293786, 43.66959481)}"
-21429,5970,GO-20209009337,THEFT UNDER,2020-03-04T00:00:00,2020,March,Wednesday,4,64,9,2020-03-19T00:00:00,2020,March,Thursday,19,79,9,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,VR4,RG,21,BLK,800.0,STOLEN,21409,"{'type': 'Point', 'coordinates': (-79.41293786, 43.66959481)}"
-21430,6052,GO-20209010945,THEFT UNDER,2019-10-01T00:00:00,2019,October,Tuesday,1,274,0,2020-04-11T00:00:00,2020,April,Saturday,11,102,22,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,TR,18 FX 2 WSD 15L,OT,24,OTH,1000.0,STOLEN,21410,"{'type': 'Point', 'coordinates': (-79.4007248, 43.66981528)}"
-21431,6061,GO-20209011137,THEFT UNDER - BICYCLE,2020-04-14T00:00:00,2020,April,Tuesday,14,105,17,2020-04-14T00:00:00,2020,April,Tuesday,14,105,18,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,18,GRY,900.0,STOLEN,21411,"{'type': 'Point', 'coordinates': (-79.41875158, 43.66444289)}"
-21432,6062,GO-20209011137,THEFT UNDER - BICYCLE,2020-04-14T00:00:00,2020,April,Tuesday,14,105,17,2020-04-14T00:00:00,2020,April,Tuesday,14,105,18,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,TR,LIV,RG,10,WHI,1000.0,STOLEN,21412,"{'type': 'Point', 'coordinates': (-79.41875158, 43.66444289)}"
-21433,6063,GO-20209011137,THEFT UNDER - BICYCLE,2020-04-14T00:00:00,2020,April,Tuesday,14,105,17,2020-04-14T00:00:00,2020,April,Tuesday,14,105,18,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,18,ONG,900.0,STOLEN,21413,"{'type': 'Point', 'coordinates': (-79.41875158, 43.66444289)}"
-21434,6064,GO-20209011137,THEFT UNDER - BICYCLE,2020-04-14T00:00:00,2020,April,Tuesday,14,105,17,2020-04-14T00:00:00,2020,April,Tuesday,14,105,18,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,TR,LIV,RG,10,WHI,1000.0,STOLEN,21414,"{'type': 'Point', 'coordinates': (-79.41875158, 43.66444289)}"
-21435,6069,GO-2020725382,THEFT UNDER - BICYCLE,2020-04-09T00:00:00,2020,April,Thursday,9,100,11,2020-04-15T00:00:00,2020,April,Wednesday,15,106,14,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ROCKY MOUNTAIN,RC30,MT,0,BLK,1200.0,STOLEN,21415,"{'type': 'Point', 'coordinates': (-79.41440616, 43.6700784)}"
-21436,6107,GO-2020793906,THEFT UNDER - BICYCLE,2020-04-26T00:00:00,2020,April,Sunday,26,117,6,2020-04-27T00:00:00,2020,April,Monday,27,118,9,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,GARNEAU,,RG,8,GRY,1200.0,STOLEN,21416,"{'type': 'Point', 'coordinates': (-79.40323153, 43.67473268)}"
-21437,6112,GO-2020793849,B&E,2020-04-26T00:00:00,2020,April,Sunday,26,117,6,2020-04-27T00:00:00,2020,April,Monday,27,118,8,D53,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GARNEAU,,RG,8,GRY,1200.0,STOLEN,21417,"{'type': 'Point', 'coordinates': (-79.40323153, 43.67473268)}"
-21438,6121,GO-20209012162,THEFT UNDER,2020-04-25T00:00:00,2020,April,Saturday,25,116,16,2020-04-29T00:00:00,2020,April,Wednesday,29,120,16,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,,MT,27,BLK,700.0,STOLEN,21418,"{'type': 'Point', 'coordinates': (-79.40531586, 43.66635847)}"
-21439,6127,GO-20209012339,THEFT UNDER,2020-04-01T00:00:00,2020,April,Wednesday,1,92,0,2020-05-02T00:00:00,2020,May,Saturday,2,123,13,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,DEVINCI CARTIER,RG,8,BLK,859.0,STOLEN,21419,"{'type': 'Point', 'coordinates': (-79.42060204, 43.66925416)}"
-21440,6159,GO-20209012866,THEFT UNDER - BICYCLE,2020-05-10T00:00:00,2020,May,Sunday,10,131,11,2020-05-11T00:00:00,2020,May,Monday,11,132,11,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,GI,THRIVE 1 DISC,OT,10,WHI,1250.0,STOLEN,21420,"{'type': 'Point', 'coordinates': (-79.40526597, 43.67030834)}"
-21441,6237,GO-20209013790,THEFT UNDER - BICYCLE,2020-05-23T00:00:00,2020,May,Saturday,23,144,0,2020-05-24T00:00:00,2020,May,Sunday,24,145,10,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ROADSTER CLASSI,RG,1,BLK,400.0,STOLEN,21421,"{'type': 'Point', 'coordinates': (-79.39000152000001, 43.67820922)}"
-21442,6307,GO-20209014661,THEFT UNDER - BICYCLE,2020-06-02T00:00:00,2020,June,Tuesday,2,154,22,2020-06-05T00:00:00,2020,June,Friday,5,157,13,D53,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,CITYGLIDE 7-SPE,RG,7,BLU,575.0,STOLEN,21422,"{'type': 'Point', 'coordinates': (-79.39626455, 43.67400414)}"
-21443,6407,GO-20201102229,THEFT OVER - BICYCLE,2020-06-11T00:00:00,2020,June,Thursday,11,163,11,2020-06-17T00:00:00,2020,June,Wednesday,17,169,11,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,VADO 5.0 XL,EL,10,BLK,6000.0,STOLEN,21423,"{'type': 'Point', 'coordinates': (-79.39478159, 43.67038539)}"
-21444,6448,GO-20209015973,THEFT UNDER - BICYCLE,2020-06-18T00:00:00,2020,June,Thursday,18,170,19,2020-06-23T00:00:00,2020,June,Tuesday,23,175,15,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,CC,,RG,21,RED,200.0,STOLEN,21424,"{'type': 'Point', 'coordinates': (-79.4007248, 43.66981528)}"
-21445,6535,GO-20209016861,THEFT UNDER,2020-07-04T00:00:00,2020,July,Saturday,4,186,16,2020-07-05T00:00:00,2020,July,Sunday,5,187,10,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SIRRUS,RG,18,GRY,550.0,STOLEN,21425,"{'type': 'Point', 'coordinates': (-79.41875158, 43.66444289)}"
-21446,6550,GO-20209017011,THEFT UNDER,2020-07-05T00:00:00,2020,July,Sunday,5,187,14,2020-07-07T00:00:00,2020,July,Tuesday,7,189,10,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,CC,KROSSPORT HYBRI,MT,21,WHI,400.0,STOLEN,21426,"{'type': 'Point', 'coordinates': (-79.41355176, 43.66785376)}"
-21447,6563,GO-20209017155,THEFT UNDER - BICYCLE,2020-07-08T00:00:00,2020,July,Wednesday,8,190,19,2020-07-08T00:00:00,2020,July,Wednesday,8,190,22,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,3,GRY,1800.0,STOLEN,21427,"{'type': 'Point', 'coordinates': (-79.38942023, 43.67292854)}"
-21448,6566,GO-20209017173,THEFT UNDER,2020-07-09T00:00:00,2020,July,Thursday,9,191,0,2020-07-09T00:00:00,2020,July,Thursday,9,191,12,D14,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,T 50,RG,7,BLK,1200.0,STOLEN,21428,"{'type': 'Point', 'coordinates': (-79.41836917, 43.66681301)}"
-21449,6570,GO-20209017206,THEFT UNDER,2020-07-09T00:00:00,2020,July,Thursday,9,191,17,2020-07-09T00:00:00,2020,July,Thursday,9,191,18,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,RG,18,BLK,1200.0,STOLEN,21429,"{'type': 'Point', 'coordinates': (-79.40531586, 43.66635847)}"
-21450,6589,GO-20209017335,THEFT UNDER - BICYCLE,2020-07-10T00:00:00,2020,July,Friday,10,192,23,2020-07-11T00:00:00,2020,July,Saturday,11,193,23,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,NO,,RC,7,BLK,300.0,STOLEN,21430,"{'type': 'Point', 'coordinates': (-79.40238049, 43.66945912)}"
-21451,6595,GO-20201291091,THEFT OVER - BICYCLE,2020-07-11T00:00:00,2020,July,Saturday,11,193,10,2020-07-12T00:00:00,2020,July,Sunday,12,194,12,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,FOCUS,IZALCO,RC,11,WHI,7500.0,STOLEN,21431,"{'type': 'Point', 'coordinates': (-79.39986342, 43.67495124)}"
-21452,6614,GO-20201277859,THEFT UNDER - BICYCLE,2020-07-07T00:00:00,2020,July,Tuesday,7,189,14,2020-07-10T00:00:00,2020,July,Friday,10,192,13,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,SCHWINN,UNKNOWN,RG,8,PLE,300.0,STOLEN,21432,"{'type': 'Point', 'coordinates': (-79.40323153, 43.67473268)}"
-21453,6635,GO-20201318790,THEFT UNDER - BICYCLE,2020-07-14T00:00:00,2020,July,Tuesday,14,196,19,2020-07-16T00:00:00,2020,July,Thursday,16,198,11,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,TO,3,BLK,220.0,STOLEN,21433,"{'type': 'Point', 'coordinates': (-79.41394991, 43.672149090000005)}"
-21454,6650,GO-20209017831,THEFT UNDER,2020-07-16T00:00:00,2020,July,Thursday,16,198,23,2020-07-17T00:00:00,2020,July,Friday,17,199,19,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,TR,FX 3 DISC,RG,12,RED,800.0,STOLEN,21434,"{'type': 'Point', 'coordinates': (-79.40587057, 43.66878216)}"
-21455,6660,GO-20201339736,B&E,2020-07-18T00:00:00,2020,July,Saturday,18,200,10,2020-07-19T00:00:00,2020,July,Sunday,19,201,6,D14,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,INTENSE PRIMER,MT,22,GRN,4000.0,STOLEN,21435,"{'type': 'Point', 'coordinates': (-79.41823803, 43.66991533)}"
-21456,6661,GO-20201339736,B&E,2020-07-18T00:00:00,2020,July,Saturday,18,200,10,2020-07-19T00:00:00,2020,July,Sunday,19,201,6,D14,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,INDIE 3 L,RG,24,BLKGRY,900.0,STOLEN,21436,"{'type': 'Point', 'coordinates': (-79.41823803, 43.66991533)}"
-21457,6664,GO-20209017966,THEFT UNDER,2020-07-18T00:00:00,2020,July,Saturday,18,200,22,2020-07-19T00:00:00,2020,July,Sunday,19,201,18,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,ESCAPE 2 (2018),OT,24,BLK,500.0,STOLEN,21437,"{'type': 'Point', 'coordinates': (-79.40743417, 43.66591416)}"
-21458,6683,GO-20201355796,THEFT UNDER - BICYCLE,2020-07-21T00:00:00,2020,July,Tuesday,21,203,13,2020-07-21T00:00:00,2020,July,Tuesday,21,203,15,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,CONTEND I,RG,9,BLKONG,925.0,STOLEN,21438,"{'type': 'Point', 'coordinates': (-79.41322961, 43.67031869)}"
-21459,6688,GO-20209018121,THEFT UNDER - BICYCLE,2020-07-19T00:00:00,2020,July,Sunday,19,201,6,2020-07-21T00:00:00,2020,July,Tuesday,21,203,13,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,UNO RISER 2020,RG,1,SIL,620.0,STOLEN,21439,"{'type': 'Point', 'coordinates': (-79.39445644, 43.67827840000001)}"
-21460,6689,GO-20209018121,THEFT UNDER - BICYCLE,2020-07-19T00:00:00,2020,July,Sunday,19,201,6,2020-07-21T00:00:00,2020,July,Tuesday,21,203,13,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,7,BLK,650.0,STOLEN,21440,"{'type': 'Point', 'coordinates': (-79.39445644, 43.67827840000001)}"
-21461,6699,GO-20209018196,THEFT UNDER,2020-07-21T00:00:00,2020,July,Tuesday,21,203,23,2020-07-22T00:00:00,2020,July,Wednesday,22,204,10,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,BOLT,RG,28,BLK,900.0,STOLEN,21441,"{'type': 'Point', 'coordinates': (-79.41239827, 43.66488473)}"
-21462,6767,GO-20209018728,THEFT UNDER - BICYCLE,2020-07-18T00:00:00,2020,July,Saturday,18,200,23,2020-07-27T00:00:00,2020,July,Monday,27,209,22,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,NO,STORM 6.2,MT,21,WHI,600.0,STOLEN,21442,"{'type': 'Point', 'coordinates': (-79.38754395, 43.67216242)}"
-21463,6786,GO-20209018776,THEFT UNDER - BICYCLE,2020-07-25T00:00:00,2020,July,Saturday,25,207,12,2020-07-28T00:00:00,2020,July,Tuesday,28,210,12,D53,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,CRUISER,RG,3,BLK,500.0,STOLEN,21443,"{'type': 'Point', 'coordinates': (-79.4007248, 43.66981528)}"
-21464,6841,GO-20209019153,THEFT UNDER,2020-07-31T00:00:00,2020,July,Friday,31,213,19,2020-08-01T00:00:00,2020,August,Saturday,1,214,19,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,TRAIL,MT,18,BLK,500.0,STOLEN,21444,"{'type': 'Point', 'coordinates': (-79.41715995, 43.66708028)}"
-21465,6880,GO-20209019504,THEFT UNDER - BICYCLE,2020-08-05T00:00:00,2020,August,Wednesday,5,218,21,2020-08-05T00:00:00,2020,August,Wednesday,5,218,23,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,1,BLU,500.0,STOLEN,21445,"{'type': 'Point', 'coordinates': (-79.40210106, 43.67299255)}"
-21466,6938,GO-20201483160,THEFT OF EBIKE UNDER $5000,2020-08-08T00:00:00,2020,August,Saturday,8,221,17,2020-08-08T00:00:00,2020,August,Saturday,8,221,17,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,AMEGO,NCM PRAGUE,EL,1,WHI,1300.0,STOLEN,21446,"{'type': 'Point', 'coordinates': (-79.39690172, 43.67555234)}"
-21467,6978,GO-20209020450,THEFT UNDER,2020-08-16T00:00:00,2020,August,Sunday,16,229,23,2020-08-17T00:00:00,2020,August,Monday,17,230,13,D14,Toronto,95,Annex (95),Bar / Restaurant,Commercial,GI,GIANT ESCAPE,OT,21,BLK,200.0,STOLEN,21447,"{'type': 'Point', 'coordinates': (-79.40531586, 43.66635847)}"
-21468,6981,GO-20201538736,THEFT UNDER - BICYCLE,2020-08-12T00:00:00,2020,August,Wednesday,12,225,9,2020-08-18T00:00:00,2020,August,Tuesday,18,231,13,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,COMMUTER,OT,12,BLKBLU,600.0,STOLEN,21448,"{'type': 'Point', 'coordinates': (-79.41958483, 43.66657302)}"
-21469,7012,GO-20209020783,THEFT UNDER,2020-08-19T00:00:00,2020,August,Wednesday,19,232,21,2020-08-20T00:00:00,2020,August,Thursday,20,233,17,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,CA,QUICK CX 2,RG,18,GRN,1100.0,STOLEN,21449,"{'type': 'Point', 'coordinates': (-79.40473364, 43.66896169)}"
-21470,7015,GO-20209020814,THEFT UNDER - BICYCLE,2020-08-19T00:00:00,2020,August,Wednesday,19,232,14,2020-08-20T00:00:00,2020,August,Thursday,20,233,21,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,1,BLK,1800.0,STOLEN,21450,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-21471,7048,GO-20209021028,THEFT UNDER - BICYCLE,2020-08-16T00:00:00,2020,August,Sunday,16,229,16,2020-08-22T00:00:00,2020,August,Saturday,22,235,18,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,CROSS 1.3 54CM,RC,11,BLK,1350.0,STOLEN,21451,"{'type': 'Point', 'coordinates': (-79.38946773, 43.66966903)}"
-21472,1859,GO-20179019931,THEFT UNDER - BICYCLE,2017-11-05T00:00:00,2017,November,Sunday,5,309,8,2017-11-18T00:00:00,2017,November,Saturday,18,322,8,D53,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,BOLT,RG,24,BLK,750.0,STOLEN,21452,"{'type': 'Point', 'coordinates': (-79.38942023, 43.67292854)}"
-21473,24657,GO-20149007303,THEFT UNDER,2014-09-28T00:00:00,2014,September,Sunday,28,271,1,2014-09-29T00:00:00,2014,September,Monday,29,272,23,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,VENTURA COMP,RC,16,WHI,1100.0,STOLEN,21453,"{'type': 'Point', 'coordinates': (-79.42709024, 43.67676494)}"
-21474,12887,GO-20189028676,THEFT UNDER - BICYCLE,2018-08-30T00:00:00,2018,August,Thursday,30,242,8,2018-08-31T00:00:00,2018,August,Friday,31,243,10,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,OT,27,GRY,800.0,STOLEN,21454,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-21475,12890,GO-20189030827,THEFT UNDER - BICYCLE,2018-09-17T00:00:00,2018,September,Monday,17,260,3,2018-09-17T00:00:00,2018,September,Monday,17,260,15,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,10,WHI,200.0,STOLEN,21455,"{'type': 'Point', 'coordinates': (-79.40198145, 43.66838899)}"
-21476,15982,GO-20159007564,THEFT UNDER,2015-09-17T00:00:00,2015,September,Thursday,17,260,12,2015-09-22T00:00:00,2015,September,Tuesday,22,265,12,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,EL,32,GRN,2000.0,STOLEN,21456,"{'type': 'Point', 'coordinates': (-79.40323153, 43.67473268)}"
-21477,12904,GO-20189036023,THEFT UNDER - BICYCLE,2018-10-22T00:00:00,2018,October,Monday,22,295,6,2018-10-29T00:00:00,2018,October,Monday,29,302,13,D53,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,"DRAGON 29""""",MT,28,BRN,1800.0,STOLEN,21457,"{'type': 'Point', 'coordinates': (-79.39980351, 43.67437422)}"
-21478,1883,GO-20179020627,THEFT UNDER - BICYCLE,2017-11-26T00:00:00,2017,November,Sunday,26,330,1,2017-11-26T00:00:00,2017,November,Sunday,26,330,16,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,MT,12,WHI,800.0,STOLEN,21458,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-21479,24710,GO-20159003777,THEFT UNDER,2015-06-20T00:00:00,2015,June,Saturday,20,171,12,2015-06-20T00:00:00,2015,June,Saturday,20,171,12,D13,Toronto,94,Wychwood (94),"Apartment (Rooming House, Condo)",Apartment,RA,ROADSTER STEP T,RG,8,BRN,817.0,STOLEN,21459,"{'type': 'Point', 'coordinates': (-79.42628335, 43.67877685)}"
-21480,19118,GO-20179015870,THEFT UNDER - BICYCLE,2017-09-26T00:00:00,2017,September,Tuesday,26,269,13,2017-09-26T00:00:00,2017,September,Tuesday,26,269,18,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,PREMIUM 24 TRAP,RG,24,BLK,1000.0,STOLEN,21460,"{'type': 'Point', 'coordinates': (-79.38754395, 43.67216242)}"
-21481,21474,GO-20179005117,THEFT UNDER,2017-04-21T00:00:00,2017,April,Friday,21,111,12,2017-04-23T00:00:00,2017,April,Sunday,23,113,13,D14,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,12,BLK,850.0,STOLEN,21461,"{'type': 'Point', 'coordinates': (-79.40916373, 43.6709545)}"
-21482,24728,GO-20151270811,PROPERTY - FOUND,2014-07-25T00:00:00,2014,July,Friday,25,206,12,2015-07-25T00:00:00,2015,July,Saturday,25,206,17,D13,Toronto,94,Wychwood (94),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,TO,6,BLU,,UNKNOWN,21462,"{'type': 'Point', 'coordinates': (-79.42305461, 43.67556177)}"
-21483,21481,GO-20179006317,THEFT UNDER - BICYCLE,2017-05-14T00:00:00,2017,May,Sunday,14,134,18,2017-05-14T00:00:00,2017,May,Sunday,14,134,22,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RC,10,PLE,750.0,STOLEN,21463,"{'type': 'Point', 'coordinates': (-79.41117403, 43.66511537)}"
-21484,19125,GO-20179017771,THEFT UNDER - BICYCLE,2017-10-19T00:00:00,2017,October,Thursday,19,292,11,2017-10-21T00:00:00,2017,October,Saturday,21,294,12,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,40,OTH,600.0,STOLEN,21464,"{'type': 'Point', 'coordinates': (-79.40593727, 43.67510835)}"
-21485,25209,GO-20169005885,THEFT UNDER - BICYCLE,2016-06-13T00:00:00,2016,June,Monday,13,165,17,2016-06-16T00:00:00,2016,June,Thursday,16,168,11,D13,Toronto,94,Wychwood (94),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,RETROSPEC,OT,1,PNK,499.0,STOLEN,21465,"{'type': 'Point', 'coordinates': (-79.43464657, 43.67981571)}"
-21486,21482,GO-2017861205,THEFT UNDER,2017-04-29T00:00:00,2017,April,Saturday,29,119,4,2017-05-16T00:00:00,2017,May,Tuesday,16,136,9,D14,Toronto,95,Annex (95),Ttc Subway Station,Transit,MIELE,,MT,18,,800.0,STOLEN,21466,"{'type': 'Point', 'coordinates': (-79.40414752, 43.66746377)}"
-21487,1916,GO-20179021386,THEFT UNDER - BICYCLE,2017-11-23T00:00:00,2017,November,Thursday,23,327,19,2017-12-05T00:00:00,2017,December,Tuesday,5,339,20,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,GI,GIANT BICYCLE,MT,37,BRZ,1500.0,STOLEN,21467,"{'type': 'Point', 'coordinates': (-79.40637158, 43.66842414)}"
-21488,15984,GO-20159007850,THEFT UNDER,2015-07-16T00:00:00,2015,July,Thursday,16,197,13,2015-09-28T00:00:00,2015,September,Monday,28,271,14,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,21,BLK,1750.0,STOLEN,21468,"{'type': 'Point', 'coordinates': (-79.39787549000002, 43.66923262)}"
-21489,19127,GO-20179019204,THEFT UNDER,2017-11-08T00:00:00,2017,November,Wednesday,8,312,7,2017-11-08T00:00:00,2017,November,Wednesday,8,312,11,D53,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,CYCLOCROSS CAAD,OT,30,BLK,1500.0,STOLEN,21469,"{'type': 'Point', 'coordinates': (-79.39039203, 43.67914574)}"
-21490,12912,GO-20182153190,THEFT UNDER - BICYCLE,2018-11-18T00:00:00,2018,November,Sunday,18,322,17,2018-11-22T00:00:00,2018,November,Thursday,22,326,18,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,HYBRID,MT,21,GRN,900.0,STOLEN,21470,"{'type': 'Point', 'coordinates': (-79.39089307, 43.67032462)}"
-21491,21484,GO-20179006503,THEFT UNDER,2017-05-16T00:00:00,2017,May,Tuesday,16,136,21,2017-05-17T00:00:00,2017,May,Wednesday,17,137,10,D14,Toronto,95,Annex (95),"Open Areas (Lakes, Parks, Rivers)",Outside,GF,,MT,24,BLK,669.0,STOLEN,21471,"{'type': 'Point', 'coordinates': (-79.40938659000001, 43.67090236)}"
-21492,25237,GO-20169008536,THEFT UNDER,2016-08-03T00:00:00,2016,August,Wednesday,3,216,15,2016-08-10T00:00:00,2016,August,Wednesday,10,223,16,D13,Toronto,94,Wychwood (94),Schools During Supervised Activity,Educational,OT,,MT,12,SIL,500.0,STOLEN,21472,"{'type': 'Point', 'coordinates': (-79.43101717, 43.67676105)}"
-21493,21493,GO-20179007664,THEFT UNDER - BICYCLE,2017-06-01T00:00:00,2017,June,Thursday,1,152,20,2017-06-07T00:00:00,2017,June,Wednesday,7,158,19,D14,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,CLASSIC STANDAR,EL,1,TRQ,1050.0,STOLEN,21473,"{'type': 'Point', 'coordinates': (-79.40531586, 43.66635847)}"
-21494,1937,GO-20179022178,THEFT UNDER - BICYCLE,2017-12-14T00:00:00,2017,December,Thursday,14,348,12,2017-12-14T00:00:00,2017,December,Thursday,14,348,12,D14,Toronto,95,Annex (95),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UK,,RC,6,BLU,240.0,STOLEN,21474,"{'type': 'Point', 'coordinates': (-79.40526597, 43.67030834)}"
-21495,15985,GO-20159007865,THEFT UNDER,2015-09-14T00:00:00,2015,September,Monday,14,257,10,2015-09-28T00:00:00,2015,September,Monday,28,271,13,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,14,BLK,1229.0,STOLEN,21475,"{'type': 'Point', 'coordinates': (-79.39478159, 43.67038539)}"
-21496,19128,GO-20179019513,THEFT UNDER - BICYCLE,2017-11-12T00:00:00,2017,November,Sunday,12,316,19,2017-11-13T00:00:00,2017,November,Monday,13,317,21,D53,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,Z100,RC,18,OTH,800.0,STOLEN,21476,"{'type': 'Point', 'coordinates': (-79.39054537, 43.66944743)}"
-21497,12925,GO-2019702621,THEFT UNDER - BICYCLE,2019-04-18T00:00:00,2019,April,Thursday,18,108,17,2019-04-20T00:00:00,2019,April,Saturday,20,110,19,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,PRESTO,OT,21,GRY,200.0,STOLEN,21477,"{'type': 'Point', 'coordinates': (-79.38980433, 43.67056247)}"
-21498,16022,GO-20169004822,THEFT UNDER - BICYCLE,2016-05-18T00:00:00,2016,May,Wednesday,18,139,21,2016-05-22T00:00:00,2016,May,Sunday,22,143,18,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RC,21,WHI,1000.0,STOLEN,21478,"{'type': 'Point', 'coordinates': (-79.39734175, 43.66803279)}"
-21499,12932,GO-20199017156,THEFT UNDER - BICYCLE,2019-06-01T00:00:00,2019,June,Saturday,1,152,5,2019-06-02T00:00:00,2019,June,Sunday,2,153,11,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,BLACK LABEL,RC,1,TRQ,3000.0,STOLEN,21479,"{'type': 'Point', 'coordinates': (-79.40210106, 43.67299255)}"
-21500,16034,GO-20209017323,THEFT UNDER - BICYCLE,2020-07-10T00:00:00,2020,July,Friday,10,192,14,2020-07-11T00:00:00,2020,July,Saturday,11,193,19,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,MODE 2,OT,1,BLK,1389.0,STOLEN,21480,"{'type': 'Point', 'coordinates': (-79.39986342, 43.67495124)}"
-21501,12934,GO-20191079727,B&E,2019-06-11T00:00:00,2019,June,Tuesday,11,162,20,2019-06-11T00:00:00,2019,June,Tuesday,11,162,21,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,CANNONDALE QUIC,RG,8,ONG,800.0,STOLEN,21481,"{'type': 'Point', 'coordinates': (-79.40593727, 43.67510835)}"
-21502,19133,GO-20179020412,THEFT UNDER - BICYCLE,2017-11-17T00:00:00,2017,November,Friday,17,321,21,2017-11-23T00:00:00,2017,November,Thursday,23,327,21,D53,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,REMUS XS,RG,1,GRY,650.0,STOLEN,21482,"{'type': 'Point', 'coordinates': (-79.39986342, 43.67495124)}"
-21503,16046,GO-20209018039,THEFT UNDER - BICYCLE,2020-07-19T00:00:00,2020,July,Sunday,19,201,20,2020-07-20T00:00:00,2020,July,Monday,20,202,14,D53,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SC,SANTA MONICA,MT,21,GLD,100.0,STOLEN,21483,"{'type': 'Point', 'coordinates': (-79.40050794, 43.67637283)}"
-21504,21797,GO-20149003470,THEFT UNDER,2014-05-15T00:00:00,2014,May,Thursday,15,135,20,2014-05-20T00:00:00,2014,May,Tuesday,20,140,12,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ROADSTER CLASSI,OT,50,BLK,500.0,STOLEN,21484,"{'type': 'Point', 'coordinates': (-79.40995373, 43.66538876)}"
-21505,12940,GO-20199019149,THEFT UNDER - BICYCLE,2019-06-12T00:00:00,2019,June,Wednesday,12,163,7,2019-06-18T00:00:00,2019,June,Tuesday,18,169,19,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,NO,OPUS MONDANO LG,RG,21,GRY,697.0,STOLEN,21485,"{'type': 'Point', 'coordinates': (-79.39787549000002, 43.66923262)}"
-21506,19135,GO-20179022070,THEFT UNDER - BICYCLE,2017-12-09T00:00:00,2017,December,Saturday,9,343,12,2017-12-13T00:00:00,2017,December,Wednesday,13,347,13,D53,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,VITA,RG,40,PLE,750.0,STOLEN,21486,"{'type': 'Point', 'coordinates': (-79.38942023, 43.67292854)}"
-21507,16051,GO-20201369210,B&E W'INTENT,2020-07-23T00:00:00,2020,July,Thursday,23,205,0,2020-07-23T00:00:00,2020,July,Thursday,23,205,11,D53,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,AVIGO,,MT,7,RED,,UNKNOWN,21487,"{'type': 'Point', 'coordinates': (-79.403659, 43.67266985)}"
-21508,16052,GO-20201369210,B&E W'INTENT,2020-07-23T00:00:00,2020,July,Thursday,23,205,0,2020-07-23T00:00:00,2020,July,Thursday,23,205,11,D53,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,IRON HORSE,,MT,7,BLK,,UNKNOWN,21488,"{'type': 'Point', 'coordinates': (-79.403659, 43.67266985)}"
-21509,16071,GO-20209022318,THEFT UNDER - BICYCLE,2020-09-03T00:00:00,2020,September,Thursday,3,247,23,2020-09-04T00:00:00,2020,September,Friday,4,248,12,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,MT,9,ONG,1000.0,STOLEN,21489,"{'type': 'Point', 'coordinates': (-79.400994, 43.67322273)}"
-21510,16079,GO-20209023287,THEFT UNDER - BICYCLE,2020-09-14T00:00:00,2020,September,Monday,14,258,8,2020-09-15T00:00:00,2020,September,Tuesday,15,259,11,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,GIANT ESCAPE,MT,7,SIL,443.0,STOLEN,21490,"{'type': 'Point', 'coordinates': (-79.40414752, 43.66746377)}"
-21511,16103,GO-20209028318,THEFT UNDER,2020-10-31T00:00:00,2020,October,Saturday,31,305,19,2020-11-01T00:00:00,2020,November,Sunday,1,306,15,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,PYTHON CROSSRID,RG,18,SIL,0.0,STOLEN,21491,"{'type': 'Point', 'coordinates': (-79.40238049, 43.66945912)}"
-21512,17328,GO-20209014064,THEFT UNDER,2020-05-27T00:00:00,2020,May,Wednesday,27,148,18,2020-05-27T00:00:00,2020,May,Wednesday,27,148,19,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,FUJI FEATHER,RG,1,LGR,600.0,STOLEN,21492,"{'type': 'Point', 'coordinates': (-79.41112694, 43.66837047)}"
-21513,17356,GO-20201347072,THEFT UNDER - BICYCLE,2020-07-20T00:00:00,2020,July,Monday,20,202,0,2020-07-20T00:00:00,2020,July,Monday,20,202,11,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CARVER,,MT,21,GRY,800.0,STOLEN,21493,"{'type': 'Point', 'coordinates': (-79.41355176, 43.66785376)}"
-21514,17385,GO-20201663658,THEFT UNDER - BICYCLE,2020-09-02T00:00:00,2020,September,Wednesday,2,246,23,2020-09-03T00:00:00,2020,September,Thursday,3,247,8,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DEVINCI,MILANOLG,OT,21,BLK,750.0,STOLEN,21494,"{'type': 'Point', 'coordinates': (-79.41560019, 43.66980617)}"
-21515,17397,GO-20209024924,THEFT UNDER,2020-09-29T00:00:00,2020,September,Tuesday,29,273,17,2020-09-29T00:00:00,2020,September,Tuesday,29,273,20,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,INDIE 3,RG,27,BLU,800.0,STOLEN,21495,"{'type': 'Point', 'coordinates': (-79.41836917, 43.66681301)}"
-21516,17406,GO-20209028162,THEFT UNDER,2020-10-27T00:00:00,2020,October,Tuesday,27,301,23,2020-10-30T00:00:00,2020,October,Friday,30,304,9,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,AMSTERDAM,OT,27,YEL,500.0,STOLEN,21496,"{'type': 'Point', 'coordinates': (-79.41394991, 43.672149090000005)}"
-21517,17537,GO-20189042826,THEFT UNDER - BICYCLE,2018-11-25T00:00:00,2018,November,Sunday,25,329,12,2018-12-20T00:00:00,2018,December,Thursday,20,354,12,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,MANCHESTER S12,RG,27,BLU,1100.0,STOLEN,21497,"{'type': 'Point', 'coordinates': (-79.41218524, 43.67033747)}"
-21518,17542,GO-20199006913,THEFT UNDER - BICYCLE,2019-02-27T00:00:00,2019,February,Wednesday,27,58,13,2019-02-28T00:00:00,2019,February,Thursday,28,59,17,D14,Toronto,95,Annex (95),Ttc Subway Station,Transit,IN,,RC,21,BLK,300.0,STOLEN,21498,"{'type': 'Point', 'coordinates': (-79.41174945, 43.66662023)}"
-21519,17547,GO-20199009493,THEFT UNDER - BICYCLE,2019-01-01T00:00:00,2019,January,Tuesday,1,1,0,2019-03-24T00:00:00,2019,March,Sunday,24,83,21,D14,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ALLEZ E5 SPORT,RC,9,BLK,1514.0,STOLEN,21499,"{'type': 'Point', 'coordinates': (-79.40473364, 43.66896169)}"
-21520,17593,GO-20199021497,THEFT UNDER - BICYCLE,2019-07-01T00:00:00,2019,July,Monday,1,182,19,2019-07-08T00:00:00,2019,July,Monday,8,189,17,D14,Toronto,95,Annex (95),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,MILANO,OT,21,BLK,587.0,STOLEN,21500,"{'type': 'Point', 'coordinates': (-79.40637158, 43.66842414)}"
-21521,17595,GO-20199022245,THEFT UNDER - BICYCLE,2019-07-14T00:00:00,2019,July,Sunday,14,195,7,2019-07-14T00:00:00,2019,July,Sunday,14,195,12,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,1,,1500.0,STOLEN,21501,"{'type': 'Point', 'coordinates': (-79.41180442, 43.673687980000004)}"
-21522,17641,GO-20199030524,THEFT UNDER - BICYCLE,2019-09-17T00:00:00,2019,September,Tuesday,17,260,20,2019-09-18T00:00:00,2019,September,Wednesday,18,261,14,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,MASI,UNO,MT,1,BLU,500.0,STOLEN,21502,"{'type': 'Point', 'coordinates': (-79.41394991, 43.672149090000005)}"
-21523,2001,GO-20189002498,THEFT UNDER - BICYCLE,2018-01-25T00:00:00,2018,January,Thursday,25,25,0,2018-01-25T00:00:00,2018,January,Thursday,25,25,20,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,OCR 3 TOURING,TO,24,SIL,400.0,STOLEN,21503,"{'type': 'Point', 'coordinates': (-79.40028097000001, 43.66874114)}"
-21524,25238,GO-20169008540,THEFT UNDER,2016-08-10T00:00:00,2016,August,Wednesday,10,223,9,2016-08-10T00:00:00,2016,August,Wednesday,10,223,17,D13,Toronto,94,Wychwood (94),Schools During Supervised Activity,Educational,SU,26 SC 1800,MT,20,BLK,150.0,STOLEN,21504,"{'type': 'Point', 'coordinates': (-79.43007432, 43.68079185)}"
-21525,17643,GO-20191847016,THEFT UNDER - BICYCLE,2019-09-25T00:00:00,2019,September,Wednesday,25,268,11,2019-09-25T00:00:00,2019,September,Wednesday,25,268,11,D14,Toronto,95,Annex (95),Schools During Supervised Activity,Educational,CANNONDALE,TRAIL 5,MT,0,BLKBLU,1300.0,STOLEN,21505,"{'type': 'Point', 'coordinates': (-79.4097913, 43.66864896)}"
-21526,17658,GO-20199034150,THEFT UNDER - BICYCLE,2019-10-16T00:00:00,2019,October,Wednesday,16,289,18,2019-10-16T00:00:00,2019,October,Wednesday,16,289,20,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,7,BLK,250.0,STOLEN,21506,"{'type': 'Point', 'coordinates': (-79.41174945, 43.66662023)}"
-21527,17662,GO-20199035726,THEFT UNDER - BICYCLE,2019-10-23T00:00:00,2019,October,Wednesday,23,296,21,2019-10-29T00:00:00,2019,October,Tuesday,29,302,16,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MA,FAIRFAX,RG,8,RED,1075.0,STOLEN,21507,"{'type': 'Point', 'coordinates': (-79.40526597, 43.67030834)}"
-21528,17670,GO-20192239082,THEFT UNDER - BICYCLE,2019-11-18T00:00:00,2019,November,Monday,18,322,8,2019-11-20T00:00:00,2019,November,Wednesday,20,324,8,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,CARGO BIKE,OT,0,ONG,1500.0,STOLEN,21508,"{'type': 'Point', 'coordinates': (-79.41534086, 43.66910204)}"
-21529,17685,GO-20209002729,THEFT UNDER,2020-01-18T00:00:00,2020,January,Saturday,18,18,20,2020-01-23T00:00:00,2020,January,Thursday,23,23,13,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,STORM 4,MT,24,BLK,750.0,STOLEN,21509,"{'type': 'Point', 'coordinates': (-79.40531586, 43.66635847)}"
-21530,17687,GO-20209005683,THEFT UNDER,2020-02-10T00:00:00,2020,February,Monday,10,41,14,2020-02-16T00:00:00,2020,February,Sunday,16,47,16,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,T-50,RG,7,BLK,999.0,STOLEN,21510,"{'type': 'Point', 'coordinates': (-79.40860463, 43.6689049)}"
-21531,17728,GO-20179014902,THEFT UNDER - BICYCLE,2017-09-15T00:00:00,2017,September,Friday,15,258,14,2017-09-16T00:00:00,2017,September,Saturday,16,259,8,D14,Toronto,95,Annex (95),Ttc Subway Station,Transit,NO,NOMAD,RG,10,BLK,300.0,STOLEN,21511,"{'type': 'Point', 'coordinates': (-79.41174945, 43.66662023)}"
-21532,17751,GO-20179018148,THEFT UNDER - BICYCLE,2017-10-22T00:00:00,2017,October,Sunday,22,295,21,2017-10-25T00:00:00,2017,October,Wednesday,25,298,14,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,18,SIL,150.0,STOLEN,21512,"{'type': 'Point', 'coordinates': (-79.40600258, 43.67218781)}"
-21533,17761,GO-20179019230,THEFT UNDER,2017-11-08T00:00:00,2017,November,Wednesday,8,312,18,2017-11-09T00:00:00,2017,November,Thursday,9,313,13,D14,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,7.2 FX CHARCOAL,MT,21,GRY,825.0,STOLEN,21513,"{'type': 'Point', 'coordinates': (-79.41234453, 43.66811332)}"
-21534,17772,GO-20179021313,THEFT UNDER - BICYCLE,2017-11-29T00:00:00,2017,November,Wednesday,29,333,0,2017-12-05T00:00:00,2017,December,Tuesday,5,339,9,D14,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RM,RC30,RG,21,BLK,625.0,STOLEN,21514,"{'type': 'Point', 'coordinates': (-79.40944561, 43.67172945)}"
-21535,17773,GO-20179021313,THEFT UNDER - BICYCLE,2017-11-29T00:00:00,2017,November,Wednesday,29,333,0,2017-12-05T00:00:00,2017,December,Tuesday,5,339,9,D14,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,STUMPJUMPER,MT,27,BLK,600.0,STOLEN,21515,"{'type': 'Point', 'coordinates': (-79.40944561, 43.67172945)}"
-21536,17804,GO-20189013478,THEFT UNDER - BICYCLE,2018-05-01T00:00:00,2018,May,Tuesday,1,121,9,2018-05-01T00:00:00,2018,May,Tuesday,1,121,19,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,1,BLK,300.0,STOLEN,21516,"{'type': 'Point', 'coordinates': (-79.40587057, 43.66878216)}"
-21537,17833,GO-20189019041,THEFT UNDER - BICYCLE,2018-06-17T00:00:00,2018,June,Sunday,17,168,4,2018-06-17T00:00:00,2018,June,Sunday,17,168,13,D14,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RA,ELIMINATOR,MT,18,RED,250.0,STOLEN,21517,"{'type': 'Point', 'coordinates': (-79.40628591, 43.66897569)}"
-21538,17840,GO-20189020020,THEFT UNDER - BICYCLE,2018-06-16T00:00:00,2018,June,Saturday,16,167,12,2018-06-24T00:00:00,2018,June,Sunday,24,175,17,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ROADSTER SPORT,RG,3,LBL,1200.0,STOLEN,21518,"{'type': 'Point', 'coordinates': (-79.40930544, 43.6742621)}"
-21539,17849,GO-20189021675,THEFT UNDER - BICYCLE,2018-07-08T00:00:00,2018,July,Sunday,8,189,6,2018-07-09T00:00:00,2018,July,Monday,9,190,10,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,OT,6,WHI,350.0,STOLEN,21519,"{'type': 'Point', 'coordinates': (-79.41174945, 43.66662023)}"
-21540,17873,GO-20189025061,THEFT UNDER - BICYCLE,2018-08-03T00:00:00,2018,August,Friday,3,215,7,2018-08-03T00:00:00,2018,August,Friday,3,215,20,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,10,BLU,150.0,STOLEN,21520,"{'type': 'Point', 'coordinates': (-79.41218524, 43.67033747)}"
-21541,17879,GO-20189025878,THEFT UNDER - BICYCLE,2018-08-04T00:00:00,2018,August,Saturday,4,216,14,2018-08-10T00:00:00,2018,August,Friday,10,222,14,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,BOLT XS ONYX,RG,10,BLK,600.0,STOLEN,21521,"{'type': 'Point', 'coordinates': (-79.40864191, 43.66567614)}"
-21542,17889,GO-20181527730,THEFT UNDER - BICYCLE,2018-08-18T00:00:00,2018,August,Saturday,18,230,21,2018-08-18T00:00:00,2018,August,Saturday,18,230,21,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,,RG,3,GRN,250.0,STOLEN,21522,"{'type': 'Point', 'coordinates': (-79.40531586, 43.66635847)}"
-21543,17904,GO-20189030191,THEFT UNDER - BICYCLE,2018-09-06T00:00:00,2018,September,Thursday,6,249,21,2018-09-12T00:00:00,2018,September,Wednesday,12,255,21,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,KARAKORAM COMP,MT,27,ONG,1164.0,STOLEN,21523,"{'type': 'Point', 'coordinates': (-79.41239827, 43.66488473)}"
-21544,18077,GO-20179008971,THEFT UNDER - BICYCLE,2017-06-26T00:00:00,2017,June,Monday,26,177,18,2017-06-26T00:00:00,2017,June,Monday,26,177,21,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CURSE FS,BM,1,BLK,700.0,STOLEN,21524,"{'type': 'Point', 'coordinates': (-79.41361049000001, 43.66461685)}"
-21545,18078,GO-20179008971,THEFT UNDER - BICYCLE,2017-06-26T00:00:00,2017,June,Monday,26,177,18,2017-06-26T00:00:00,2017,June,Monday,26,177,21,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CURSE FS 20.25,BM,1,BLK,700.0,STOLEN,21525,"{'type': 'Point', 'coordinates': (-79.41361049000001, 43.66461685)}"
-21546,18131,GO-20169008353,THEFT UNDER - BICYCLE,2016-06-30T00:00:00,2016,June,Thursday,30,182,8,2016-08-07T00:00:00,2016,August,Sunday,7,220,16,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,NO,INDIE,RG,8,BLK,500.0,STOLEN,21526,"{'type': 'Point', 'coordinates': (-79.40637158, 43.66842414)}"
-21547,18186,GO-20179002246,THEFT UNDER - BICYCLE,2017-02-17T00:00:00,2017,February,Friday,17,48,14,2017-02-21T00:00:00,2017,February,Tuesday,21,52,11,D14,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RG,21,RED,500.0,STOLEN,21528,"{'type': 'Point', 'coordinates': (-79.41875158, 43.66444289)}"
-21548,18187,GO-20179002486,THEFT UNDER - BICYCLE,2017-02-24T00:00:00,2017,February,Friday,24,55,22,2017-02-25T00:00:00,2017,February,Saturday,25,56,17,D14,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,RC,10,BLK,1000.0,STOLEN,21529,"{'type': 'Point', 'coordinates': (-79.40944561, 43.67172945)}"
-21549,18199,GO-20179005691,THEFT UNDER,2017-05-03T00:00:00,2017,May,Wednesday,3,123,18,2017-05-03T00:00:00,2017,May,Wednesday,3,123,22,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,24,BLK,800.0,STOLEN,21530,"{'type': 'Point', 'coordinates': (-79.41047653, 43.67397307)}"
-21550,18202,GO-2017835315,THEFT UNDER - BICYCLE,2017-04-21T00:00:00,2017,April,Friday,21,111,16,2017-05-12T00:00:00,2017,May,Friday,12,132,9,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,TO,3,BLU,400.0,STOLEN,21531,"{'type': 'Point', 'coordinates': (-79.41355176, 43.66785376)}"
-21551,18204,GO-20179006320,THEFT UNDER - BICYCLE,2017-05-12T00:00:00,2017,May,Friday,12,132,22,2017-05-14T00:00:00,2017,May,Sunday,14,134,19,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SILVERSTONE SL,RC,9,GRN,1000.0,STOLEN,21532,"{'type': 'Point', 'coordinates': (-79.41394991, 43.672149090000005)}"
-21552,18327,GO-20142117470,THEFT UNDER,2014-05-19T00:00:00,2014,May,Monday,19,139,21,2014-05-20T00:00:00,2014,May,Tuesday,20,140,18,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,LINUS,MIXTE3,OT,3,BLK,900.0,STOLEN,21533,"{'type': 'Point', 'coordinates': (-79.41535942, 43.66584409)}"
-21553,18331,GO-20142160921,THEFT UNDER,2014-05-26T00:00:00,2014,May,Monday,26,146,22,2014-05-27T00:00:00,2014,May,Tuesday,27,147,7,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,GRANTURIMO,RG,1,YEL,1000.0,STOLEN,21534,"{'type': 'Point', 'coordinates': (-79.41798479, 43.66927319)}"
-21554,18369,GO-20142867872,THEFT UNDER,2014-09-05T00:00:00,2014,September,Friday,5,248,16,2014-09-11T00:00:00,2014,September,Thursday,11,254,13,D14,Toronto,95,Annex (95),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,LINUS,ROADSTER SPIRIT,OT,3,CPRONG,730.0,STOLEN,21535,"{'type': 'Point', 'coordinates': (-79.41293786, 43.66959481)}"
-21555,18373,GO-20142994510,THEFT UNDER,2014-09-26T00:00:00,2014,September,Friday,26,269,20,2014-09-27T00:00:00,2014,September,Saturday,27,270,12,D14,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,CITY GLIDE,TO,7,BLK,710.0,STOLEN,21536,"{'type': 'Point', 'coordinates': (-79.41560019, 43.66980617)}"
-21556,18378,GO-20143203547,THEFT UNDER,2014-10-29T00:00:00,2014,October,Wednesday,29,302,16,2014-10-30T00:00:00,2014,October,Thursday,30,303,9,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,OT,24,BLU,700.0,STOLEN,21537,"{'type': 'Point', 'coordinates': (-79.40938659000001, 43.67090236)}"
-21557,18383,GO-20149008481,THEFT UNDER,2014-11-05T00:00:00,2014,November,Wednesday,5,309,16,2014-12-01T00:00:00,2014,December,Monday,1,335,17,D14,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,HOLD STEADY,RG,8,BLK,1000.0,STOLEN,21538,"{'type': 'Point', 'coordinates': (-79.40860463, 43.6689049)}"
-21558,18413,GO-2015941473,THEFT UNDER,2015-06-04T00:00:00,2015,June,Thursday,4,155,18,2015-06-05T00:00:00,2015,June,Friday,5,156,12,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,GHOST,CROSS 1300,OT,24,WHI,700.0,STOLEN,21539,"{'type': 'Point', 'coordinates': (-79.40637158, 43.66842414)}"
-21559,18417,GO-2015988890,THEFT UNDER,2015-06-11T00:00:00,2015,June,Thursday,11,162,20,2015-06-12T00:00:00,2015,June,Friday,12,163,22,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,VOYAGER,MT,12,BLU,150.0,STOLEN,21540,"{'type': 'Point', 'coordinates': (-79.41322961, 43.67031869)}"
-21560,18449,GO-20159006255,THEFT UNDER,2015-08-27T00:00:00,2015,August,Thursday,27,239,10,2015-08-27T00:00:00,2015,August,Thursday,27,239,20,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,GHOST,MT,24,,250.0,STOLEN,21541,"{'type': 'Point', 'coordinates': (-79.41512548, 43.67187272)}"
-21561,18463,GO-20159007967,THEFT UNDER,2015-09-30T00:00:00,2015,September,Wednesday,30,273,18,2015-09-30T00:00:00,2015,September,Wednesday,30,273,22,D14,Toronto,95,Annex (95),"Open Areas (Lakes, Parks, Rivers)",Outside,TR,NAVIGATOR 2.0,RG,18,GRY,0.0,STOLEN,21542,"{'type': 'Point', 'coordinates': (-79.41853537, 43.66394772)}"
-21562,18494,GO-20169005152,THEFT UNDER - BICYCLE,2016-05-30T00:00:00,2016,May,Monday,30,151,13,2016-05-30T00:00:00,2016,May,Monday,30,151,18,D14,Toronto,95,Annex (95),Schools During Supervised Activity,Educational,TR,,MT,21,BLK,700.0,STOLEN,21543,"{'type': 'Point', 'coordinates': (-79.4097913, 43.66864896)}"
-21563,18501,GO-20169005968,THEFT UNDER - BICYCLE,2016-06-16T00:00:00,2016,June,Thursday,16,168,23,2016-06-18T00:00:00,2016,June,Saturday,18,170,15,D14,Toronto,95,Annex (95),Bar / Restaurant,Commercial,CC,700C PRESTO,RC,21,BLU,400.0,STOLEN,21544,"{'type': 'Point', 'coordinates': (-79.40531586, 43.66635847)}"
-21564,18713,GO-20209018039,THEFT UNDER - BICYCLE,2020-07-19T00:00:00,2020,July,Sunday,19,201,20,2020-07-20T00:00:00,2020,July,Monday,20,202,14,D53,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SC,SANTA MONICA,MT,21,BGE,100.0,STOLEN,21545,"{'type': 'Point', 'coordinates': (-79.40050794, 43.67637283)}"
-21565,18718,GO-20209018886,THEFT UNDER - BICYCLE,2020-07-29T00:00:00,2020,July,Wednesday,29,211,8,2020-07-29T00:00:00,2020,July,Wednesday,29,211,13,D53,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,MT,1,SIL,0.0,STOLEN,21546,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-21566,18736,GO-20201535552,THEFT UNDER - BICYCLE,2020-08-02T00:00:00,2020,August,Sunday,2,215,12,2020-08-16T00:00:00,2020,August,Sunday,16,229,1,D53,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EVOLUTION,OZARK TRAIL,MT,5,WHIBLK,200.0,STOLEN,21547,"{'type': 'Point', 'coordinates': (-79.40526597, 43.67030834)}"
-21567,18738,GO-20209020501,THEFT UNDER,2020-08-16T00:00:00,2020,August,Sunday,16,229,0,2020-08-18T00:00:00,2020,August,Tuesday,18,231,19,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,GRY,700.0,STOLEN,21548,"{'type': 'Point', 'coordinates': (-79.40028097000001, 43.66874114)}"
-21568,18826,GO-20141670291,THEFT UNDER,2014-03-08T00:00:00,2014,March,Saturday,8,67,22,2014-03-09T00:00:00,2014,March,Sunday,9,68,19,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EAGLE,,SC,1,WHI,1600.0,STOLEN,21549,"{'type': 'Point', 'coordinates': (-79.39734175, 43.66803279)}"
-21569,18830,GO-20142052337,THEFT UNDER,2014-05-10T00:00:00,2014,May,Saturday,10,130,14,2014-05-13T00:00:00,2014,May,Tuesday,13,133,19,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,,OT,21,GRY,600.0,STOLEN,21550,"{'type': 'Point', 'coordinates': (-79.39787549000002, 43.66923262)}"
-21570,18844,GO-20149004782,THEFT UNDER,2014-07-07T00:00:00,2014,July,Monday,7,188,8,2014-07-07T00:00:00,2014,July,Monday,7,188,15,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,VITA,OT,16,,550.0,STOLEN,21551,"{'type': 'Point', 'coordinates': (-79.40526597, 43.67030834)}"
-21571,18854,GO-20149005847,THEFT UNDER,2014-08-10T00:00:00,2014,August,Sunday,10,222,22,2014-08-11T00:00:00,2014,August,Monday,11,223,22,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,TANGO,FO,6,BLU,200.0,STOLEN,21552,"{'type': 'Point', 'coordinates': (-79.39000152000001, 43.67820922)}"
-21572,18855,GO-20149005921,THEFT UNDER,2014-08-13T00:00:00,2014,August,Wednesday,13,225,22,2014-08-14T00:00:00,2014,August,Thursday,14,226,7,D53,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RA,RUSH HOUR,RC,1,BLK,600.0,STOLEN,21553,"{'type': 'Point', 'coordinates': (-79.39941551, 43.67009354)}"
-21573,18858,GO-20149006753,THEFT UNDER,2014-09-08T00:00:00,2014,September,Monday,8,251,1,2014-09-10T00:00:00,2014,September,Wednesday,10,253,13,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE 2W XS,RG,21,WHI,490.0,STOLEN,21554,"{'type': 'Point', 'coordinates': (-79.4007248, 43.66981528)}"
-21574,18868,GO-20143024430,THEFT UNDER,2014-10-01T00:00:00,2014,October,Wednesday,1,274,20,2014-10-01T00:00:00,2014,October,Wednesday,1,274,23,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,2012,MT,18,WHI,1000.0,STOLEN,21555,"{'type': 'Point', 'coordinates': (-79.39734175, 43.66803279)}"
-21575,18870,GO-20143110144,THEFT UNDER,2014-10-15T00:00:00,2014,October,Wednesday,15,288,3,2014-10-16T00:00:00,2014,October,Thursday,16,289,12,D53,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SCHWINN,700,OT,24,BLU,350.0,STOLEN,21556,"{'type': 'Point', 'coordinates': (-79.39598838000002, 43.67335138)}"
-21576,18878,GO-20159001319,THEFT UNDER,2015-03-14T00:00:00,2015,March,Saturday,14,73,9,2015-03-14T00:00:00,2015,March,Saturday,14,73,23,D53,Toronto,95,Annex (95),Bar / Restaurant,Commercial,EM,,EL,6,RED,990.0,STOLEN,21557,"{'type': 'Point', 'coordinates': (-79.38776812, 43.67269822)}"
-21577,18883,GO-20159002092,THEFT UNDER,2015-04-01T00:00:00,2015,April,Wednesday,1,91,16,2015-04-20T00:00:00,2015,April,Monday,20,110,16,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,TR,7.2,RG,24,BLK,600.0,STOLEN,21558,"{'type': 'Point', 'coordinates': (-79.39598838000002, 43.67335138)}"
-21578,18899,GO-2015999461,THEFT UNDER,2015-06-14T00:00:00,2015,June,Sunday,14,165,12,2015-06-14T00:00:00,2015,June,Sunday,14,165,18,D53,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,,OT,10,ONG,2500.0,STOLEN,21559,"{'type': 'Point', 'coordinates': (-79.39402236, 43.67320258)}"
-21579,18900,GO-20151010050,THEFT OVER,2015-06-15T00:00:00,2015,June,Monday,15,166,22,2015-06-16T00:00:00,2015,June,Tuesday,16,167,11,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CERVELO,R3,OT,12,WHIBLU,6000.0,STOLEN,21560,"{'type': 'Point', 'coordinates': (-79.39410064, 43.67738561)}"
-21580,18901,GO-20151010050,THEFT OVER,2015-06-15T00:00:00,2015,June,Monday,15,166,22,2015-06-16T00:00:00,2015,June,Tuesday,16,167,11,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CERVELO,R5,OT,12,BLKGRY,6000.0,STOLEN,21561,"{'type': 'Point', 'coordinates': (-79.39410064, 43.67738561)}"
-21581,18902,GO-20159003688,THEFT UNDER,2015-06-16T00:00:00,2015,June,Tuesday,16,167,22,2015-06-17T00:00:00,2015,June,Wednesday,17,168,10,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,SU,,MT,6,RED,100.0,STOLEN,21562,"{'type': 'Point', 'coordinates': (-79.39626455, 43.67400414)}"
-21582,18911,GO-20159004542,THEFT UNDER,2015-07-10T00:00:00,2015,July,Friday,10,191,9,2015-07-14T00:00:00,2015,July,Tuesday,14,195,12,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ROAD RUNNER,SC,32,BLK,1600.0,STOLEN,21563,"{'type': 'Point', 'coordinates': (-79.38980433, 43.67056247)}"
-21583,18913,GO-20151214806,THEFT UNDER,2015-07-17T00:00:00,2015,July,Friday,17,198,5,2015-07-17T00:00:00,2015,July,Friday,17,198,14,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,OT,0,BLK,450.0,STOLEN,21564,"{'type': 'Point', 'coordinates': (-79.38711576, 43.671122340000004)}"
-21584,18914,GO-20159004746,THEFT UNDER,2015-07-13T00:00:00,2015,July,Monday,13,194,11,2015-07-20T00:00:00,2015,July,Monday,20,201,11,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,CA,,OT,18,BLK,2000.0,STOLEN,21565,"{'type': 'Point', 'coordinates': (-79.39098691, 43.66935825)}"
-21585,18917,GO-20159005364,THEFT UNDER,2015-07-27T00:00:00,2015,July,Monday,27,208,6,2015-08-05T00:00:00,2015,August,Wednesday,5,217,16,D53,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RA,,TO,8,LBL,130.0,STOLEN,21566,"{'type': 'Point', 'coordinates': (-79.40526597, 43.67030834)}"
-21586,18925,GO-20159006200,THEFT UNDER,2015-08-25T00:00:00,2015,August,Tuesday,25,237,21,2015-08-26T00:00:00,2015,August,Wednesday,26,238,8,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,VERMONT,OT,6,,300.0,STOLEN,21567,"{'type': 'Point', 'coordinates': (-79.40238049, 43.66945912)}"
-21587,18928,GO-20159006514,THEFT UNDER,2015-08-30T00:00:00,2015,August,Sunday,30,242,7,2015-08-30T00:00:00,2015,August,Sunday,30,242,9,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,,MT,12,GRN,800.0,STOLEN,21568,"{'type': 'Point', 'coordinates': (-79.39734175, 43.66803279)}"
-21588,18931,GO-20159006575,THEFT UNDER,2015-08-30T00:00:00,2015,August,Sunday,30,242,18,2015-08-31T00:00:00,2015,August,Monday,31,243,18,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,,RG,3,RED,650.0,STOLEN,21569,"{'type': 'Point', 'coordinates': (-79.39049843, 43.67524769)}"
-21589,18939,GO-20159007528,THEFT UNDER,2015-09-10T00:00:00,2015,September,Thursday,10,253,17,2015-09-21T00:00:00,2015,September,Monday,21,264,16,D53,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,VITA ELITE,OT,24,ONG,750.0,STOLEN,21570,"{'type': 'Point', 'coordinates': (-79.39787549000002, 43.66923262)}"
-21590,18941,GO-20159007898,THEFT UNDER,2015-09-28T00:00:00,2015,September,Monday,28,271,1,2015-09-29T00:00:00,2015,September,Tuesday,29,272,9,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,MA,2013 LARKSPUR C,OT,7,BLK,400.0,STOLEN,21571,"{'type': 'Point', 'coordinates': (-79.40473364, 43.66896169)}"
-21591,18953,GO-20151968633,THEFT UNDER,2015-11-15T00:00:00,2015,November,Sunday,15,319,18,2015-11-16T00:00:00,2015,November,Monday,16,320,18,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,E-BREEZE,EL,1,BLK,1500.0,STOLEN,21572,"{'type': 'Point', 'coordinates': (-79.38946773, 43.66966903)}"
-21592,18969,GO-20169003984,THEFT UNDER - BICYCLE,2016-04-30T00:00:00,2016,April,Saturday,30,121,13,2016-04-30T00:00:00,2016,April,Saturday,30,121,13,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,KO,DEW PLUS 49,MT,10,BLK,900.0,STOLEN,21573,"{'type': 'Point', 'coordinates': (-79.3993686, 43.67335805)}"
-21593,18973,GO-20169004182,THEFT UNDER - BICYCLE,2016-05-05T00:00:00,2016,May,Thursday,5,126,11,2016-05-05T00:00:00,2016,May,Thursday,5,126,17,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ZHUOTENG ZH 295,EL,32,BLU,2146.0,STOLEN,21574,"{'type': 'Point', 'coordinates': (-79.40383181, 43.66665689)}"
-21594,18988,GO-20161036110,THEFT UNDER - BICYCLE,2016-05-15T00:00:00,2016,May,Sunday,15,136,12,2016-06-14T00:00:00,2016,June,Tuesday,14,166,15,D53,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,ROCK HOPPER,MT,9,BLK,1050.0,STOLEN,21575,"{'type': 'Point', 'coordinates': (-79.38942023, 43.67292854)}"
-21595,2012,GO-20189003338,THEFT UNDER,2018-02-02T00:00:00,2018,February,Friday,2,33,8,2018-02-03T00:00:00,2018,February,Saturday,3,34,13,D14,Toronto,95,Annex (95),Schools During Un-Supervised Activity,Educational,UK,COUGAR 2 TRAILE,OT,6,RED,500.0,STOLEN,21576,"{'type': 'Point', 'coordinates': (-79.41474413, 43.66759742)}"
-21596,2040,GO-20189005617,THEFT UNDER - BICYCLE,2018-02-22T00:00:00,2018,February,Thursday,22,53,0,2018-02-22T00:00:00,2018,February,Thursday,22,53,10,D14,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KH,,RG,1,GRY,750.0,STOLEN,21577,"{'type': 'Point', 'coordinates': (-79.41174945, 43.66662023)}"
-21597,2071,GO-2018399209,B&E,2018-03-02T00:00:00,2018,March,Friday,2,61,17,2018-03-09T00:00:00,2018,March,Friday,9,68,20,D53,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GANT,,OT,7,GRY,400.0,STOLEN,21578,"{'type': 'Point', 'coordinates': (-79.39539614, 43.67190098)}"
-21598,2072,GO-20189007332,THEFT UNDER - BICYCLE,2018-03-08T00:00:00,2018,March,Thursday,8,67,17,2018-03-08T00:00:00,2018,March,Thursday,8,67,21,D14,Toronto,95,Annex (95),Convenience Stores,Commercial,OT,,MT,21,BLU,0.0,STOLEN,21579,"{'type': 'Point', 'coordinates': (-79.41117403, 43.66511537)}"
-21599,21812,GO-20142633381,THEFT UNDER,2014-07-30T00:00:00,2014,July,Wednesday,30,211,2,2014-08-04T00:00:00,2014,August,Monday,4,216,9,D14,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,RUBY SPORT,RG,51,GRY,2300.0,STOLEN,21580,"{'type': 'Point', 'coordinates': (-79.40623518, 43.66616454)}"
-21600,25264,GO-20161682705,THEFT UNDER - BICYCLE,2016-09-16T00:00:00,2016,September,Friday,16,260,17,2016-09-21T00:00:00,2016,September,Wednesday,21,265,18,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,MT,1,GRN,250.0,STOLEN,21581,"{'type': 'Point', 'coordinates': (-79.42709024, 43.67676494)}"
-21601,2118,GO-20189010011,THEFT UNDER - BICYCLE,2018-03-26T00:00:00,2018,March,Monday,26,85,11,2018-03-30T00:00:00,2018,March,Friday,30,89,11,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,SC,,FO,6,BRN,100.0,STOLEN,21582,"{'type': 'Point', 'coordinates': (-79.40531586, 43.66635847)}"
-21602,19142,GO-2018219500,B&E,2018-02-04T00:00:00,2018,February,Sunday,4,35,5,2018-02-04T00:00:00,2018,February,Sunday,4,35,10,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,RIDLEY,FENIX SL50,BM,22,BLKGRY,2343.0,STOLEN,21583,"{'type': 'Point', 'coordinates': (-79.39003347, 43.67421927)}"
-21603,12951,GO-20199022609,THEFT UNDER - BICYCLE,2019-07-02T00:00:00,2019,July,Tuesday,2,183,8,2019-07-17T00:00:00,2019,July,Wednesday,17,198,1,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,KO,DR DEW,RG,24,GRN,500.0,STOLEN,21584,"{'type': 'Point', 'coordinates': (-79.4007248, 43.66981528)}"
-21604,2133,GO-20189010365,THEFT UNDER - BICYCLE,2018-04-02T00:00:00,2018,April,Monday,2,92,9,2018-04-03T00:00:00,2018,April,Tuesday,3,93,17,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,MT,21,BGE,280.0,STOLEN,21585,"{'type': 'Point', 'coordinates': (-79.38782632, 43.6728738)}"
-21605,12955,GO-20199024294,THEFT UNDER - BICYCLE,2019-07-29T00:00:00,2019,July,Monday,29,210,8,2019-07-29T00:00:00,2019,July,Monday,29,210,19,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CIRRUS,TO,18,BLK,700.0,STOLEN,21586,"{'type': 'Point', 'coordinates': (-79.39734175, 43.66803279)}"
-21606,12956,GO-20199025078,THEFT UNDER - BICYCLE,2019-08-06T00:00:00,2019,August,Tuesday,6,218,12,2019-08-06T00:00:00,2019,August,Tuesday,6,218,15,D53,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,ROCKHOPPER SPEC,MT,15,BLK,800.0,STOLEN,21587,"{'type': 'Point', 'coordinates': (-79.39380783, 43.67516312)}"
-21607,2213,GO-20189013161,THEFT UNDER - BICYCLE,2018-04-05T00:00:00,2018,April,Thursday,5,95,12,2018-04-28T00:00:00,2018,April,Saturday,28,118,12,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,RG,1,BLU,500.0,STOLEN,21588,"{'type': 'Point', 'coordinates': (-79.39832557, 43.66783119)}"
-21608,25277,GO-20169011954,THEFT UNDER - BICYCLE,2016-10-12T00:00:00,2016,October,Wednesday,12,286,9,2016-10-12T00:00:00,2016,October,Wednesday,12,286,17,D13,Toronto,94,Wychwood (94),Schools During Un-Supervised Activity,Educational,SC,"26"""" MENS ANTRIM",MT,24,WHI,700.0,STOLEN,21589,"{'type': 'Point', 'coordinates': (-79.43101717, 43.67676105)}"
-21609,12957,GO-20199025078,THEFT UNDER - BICYCLE,2019-08-06T00:00:00,2019,August,Tuesday,6,218,12,2019-08-06T00:00:00,2019,August,Tuesday,6,218,15,D53,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,ROCKHOPPER COMP,MT,15,OTH,980.0,STOLEN,21590,"{'type': 'Point', 'coordinates': (-79.39380783, 43.67516312)}"
-21610,19146,GO-20189008483,THEFT UNDER - BICYCLE,2018-03-14T00:00:00,2018,March,Wednesday,14,73,21,2018-03-19T00:00:00,2018,March,Monday,19,78,11,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,KO,2012 HONKY TONK,RG,9,BRN,1250.0,STOLEN,21591,"{'type': 'Point', 'coordinates': (-79.40238049, 43.66945912)}"
-21611,2220,GO-20189013221,THEFT UNDER,2018-02-21T00:00:00,2018,February,Wednesday,21,52,13,2018-04-29T00:00:00,2018,April,Sunday,29,119,13,D14,Toronto,95,Annex (95),Ttc Admin Or Support Facility,Transit,UK,BRODIE REMUS,RG,7,GRY,500.0,STOLEN,21592,"{'type': 'Point', 'coordinates': (-79.41174945, 43.66662023)}"
-21612,19154,GO-20189014304,THEFT UNDER - BICYCLE,2018-05-08T00:00:00,2018,May,Tuesday,8,128,18,2018-05-09T00:00:00,2018,May,Wednesday,9,129,14,D53,Toronto,95,Annex (95),Bar / Restaurant,Commercial,GI,,MT,6,,200.0,STOLEN,21593,"{'type': 'Point', 'coordinates': (-79.38718014, 43.67129793)}"
-21613,25301,GO-20179006287,THEFT UNDER - BICYCLE,2017-05-11T00:00:00,2017,May,Thursday,11,131,18,2017-05-13T00:00:00,2017,May,Saturday,13,133,22,D13,Toronto,94,Wychwood (94),"Apartment (Rooming House, Condo)",Apartment,OT,PREMIUM,RC,60,SIL,500.0,STOLEN,21594,"{'type': 'Point', 'coordinates': (-79.41826195, 43.68316749)}"
-21614,21821,GO-20149006060,THEFT UNDER,2014-08-20T00:00:00,2014,August,Wednesday,20,232,17,2014-08-20T00:00:00,2014,August,Wednesday,20,232,17,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,LIFESTYLE CLASS,RG,21,SIL,350.0,STOLEN,21595,"{'type': 'Point', 'coordinates': (-79.41174945, 43.66662023)}"
-21615,12958,GO-20199025078,THEFT UNDER - BICYCLE,2019-08-06T00:00:00,2019,August,Tuesday,6,218,12,2019-08-06T00:00:00,2019,August,Tuesday,6,218,15,D53,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,ROCKHOPPER COMP,MT,15,OTH,980.0,STOLEN,21596,"{'type': 'Point', 'coordinates': (-79.39380783, 43.67516312)}"
-21616,12959,GO-20199025078,THEFT UNDER - BICYCLE,2019-08-06T00:00:00,2019,August,Tuesday,6,218,12,2019-08-06T00:00:00,2019,August,Tuesday,6,218,15,D53,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,ROCKHOPPER SPEC,MT,15,GRY,800.0,STOLEN,21597,"{'type': 'Point', 'coordinates': (-79.39380783, 43.67516312)}"
-21617,12996,GO-20199034063,THEFT UNDER - BICYCLE,2019-10-15T00:00:00,2019,October,Tuesday,15,288,9,2019-10-16T00:00:00,2019,October,Wednesday,16,289,10,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,PE,,RC,1,WHI,250.0,STOLEN,21598,"{'type': 'Point', 'coordinates': (-79.403659, 43.67266985)}"
-21618,13022,GO-2020490129,THEFT UNDER - BICYCLE,2020-03-04T00:00:00,2020,March,Wednesday,4,64,8,2020-03-08T00:00:00,2020,March,Sunday,8,68,17,D53,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,15 7.4 FX,OT,5,GRY,1200.0,STOLEN,21599,"{'type': 'Point', 'coordinates': (-79.39380783, 43.67516312)}"
-21619,13032,GO-20209012790,THEFT UNDER - BICYCLE,2020-05-07T00:00:00,2020,May,Thursday,7,128,19,2020-05-10T00:00:00,2020,May,Sunday,10,131,0,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE 2 DISC 2,RG,24,DBL,778.0,STOLEN,21600,"{'type': 'Point', 'coordinates': (-79.40708312, 43.67485713)}"
-21620,13039,GO-20209014491,THEFT UNDER - BICYCLE,2020-05-23T00:00:00,2020,May,Saturday,23,144,1,2020-06-03T00:00:00,2020,June,Wednesday,3,155,16,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,20,BLK,2000.0,STOLEN,21601,"{'type': 'Point', 'coordinates': (-79.40019243, 43.67573014)}"
-21621,14083,GO-20169007765,THEFT UNDER - BICYCLE,2016-07-26T00:00:00,2016,July,Tuesday,26,208,9,2016-07-26T00:00:00,2016,July,Tuesday,26,208,19,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,ANNEX,RG,7,BLK,250.0,STOLEN,21602,"{'type': 'Point', 'coordinates': (-79.40210106, 43.67299255)}"
-21622,14101,GO-20169009934,THEFT UNDER - BICYCLE,2016-09-01T00:00:00,2016,September,Thursday,1,245,1,2016-09-04T00:00:00,2016,September,Sunday,4,248,1,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,9,BLU,100.0,STOLEN,21603,"{'type': 'Point', 'coordinates': (-79.40266823, 43.66690503)}"
-21623,14103,GO-20169010284,THEFT UNDER - BICYCLE,2016-09-11T00:00:00,2016,September,Sunday,11,255,15,2016-09-11T00:00:00,2016,September,Sunday,11,255,21,D53,Toronto,95,Annex (95),Universities / Colleges,Educational,OT,,MT,27,,0.0,STOLEN,21604,"{'type': 'Point', 'coordinates': (-79.39832557, 43.66783119)}"
-21624,14113,GO-20169011696,THEFT UNDER - BICYCLE,2016-10-04T00:00:00,2016,October,Tuesday,4,278,6,2016-10-07T00:00:00,2016,October,Friday,7,281,14,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,DEW,RG,24,GRY,550.0,STOLEN,21605,"{'type': 'Point', 'coordinates': (-79.39048965, 43.67213792)}"
-21625,14114,GO-20161845239,THEFT UNDER - BICYCLE,2016-10-16T00:00:00,2016,October,Sunday,16,290,18,2016-10-17T00:00:00,2016,October,Monday,17,291,8,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BIANCHI,,RG,6,GRN,250.0,STOLEN,21606,"{'type': 'Point', 'coordinates': (-79.39758694, 43.67720231)}"
-21626,14115,GO-20161845239,THEFT UNDER - BICYCLE,2016-10-16T00:00:00,2016,October,Sunday,16,290,18,2016-10-17T00:00:00,2016,October,Monday,17,291,8,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,RG,6,BLK,500.0,STOLEN,21607,"{'type': 'Point', 'coordinates': (-79.39758694, 43.67720231)}"
-21627,14141,GO-20179000125,THEFT UNDER - BICYCLE,2016-11-18T00:00:00,2016,November,Friday,18,323,20,2017-01-03T00:00:00,2017,January,Tuesday,3,3,21,D53,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,ESCAPE RX,RG,27,LGR,1000.0,STOLEN,21608,"{'type': 'Point', 'coordinates': (-79.4007248, 43.66981528)}"
-21628,14169,GO-20179009754,THEFT UNDER - BICYCLE,2017-07-06T00:00:00,2017,July,Thursday,6,187,15,2017-07-09T00:00:00,2017,July,Sunday,9,190,12,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RM,FUSION 930,MT,18,BLK,882.0,STOLEN,21609,"{'type': 'Point', 'coordinates': (-79.39048965, 43.67213792)}"
-21629,14183,GO-20179013438,THEFT UNDER - BICYCLE,2017-08-14T00:00:00,2017,August,Monday,14,226,20,2017-08-27T00:00:00,2017,August,Sunday,27,239,8,D53,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,8,BRN,700.0,STOLEN,21610,"{'type': 'Point', 'coordinates': (-79.3886562, 43.67488192)}"
-21630,14189,GO-20179014711,THEFT UNDER - BICYCLE,2017-09-13T00:00:00,2017,September,Wednesday,13,256,16,2017-09-13T00:00:00,2017,September,Wednesday,13,256,21,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,RG,1,BLK,500.0,STOLEN,21611,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-21631,14202,GO-20171773008,THEFT OF EBIKE UNDER $5000,2017-09-29T00:00:00,2017,September,Friday,29,272,12,2017-09-30T00:00:00,2017,September,Saturday,30,273,9,D53,Toronto,95,Annex (95),"Construction Site (Warehouse, Trailer, Shed)",Commercial,EMMO,EM1,EL,0,BLK,2200.0,STOLEN,21612,"{'type': 'Point', 'coordinates': (-79.3993686, 43.67335805)}"
-21632,14245,GO-20189019886,THEFT UNDER - BICYCLE,2018-06-22T00:00:00,2018,June,Friday,22,173,14,2018-06-22T00:00:00,2018,June,Friday,22,173,23,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,PORTLAND,RC,10,BGE,600.0,STOLEN,21613,"{'type': 'Point', 'coordinates': (-79.40593727, 43.67510835)}"
-21633,14249,GO-20189020618,THEFT UNDER - BICYCLE,2018-06-28T00:00:00,2018,June,Thursday,28,179,16,2018-06-28T00:00:00,2018,June,Thursday,28,179,16,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,7,BLK,600.0,STOLEN,21614,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-21634,14284,GO-20209017850,THEFT UNDER,2020-07-16T00:00:00,2020,July,Thursday,16,198,6,2020-07-17T00:00:00,2020,July,Friday,17,199,17,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,5,GRN,300.0,STOLEN,21615,"{'type': 'Point', 'coordinates': (-79.41180442, 43.673687980000004)}"
-21635,19159,GO-20189015447,THEFT UNDER - BICYCLE,2018-05-17T00:00:00,2018,May,Thursday,17,137,22,2018-05-18T00:00:00,2018,May,Friday,18,138,15,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,RG,21,BLK,600.0,STOLEN,21616,"{'type': 'Point', 'coordinates': (-79.400994, 43.67322273)}"
-21636,25325,GO-20189020340,THEFT UNDER - BICYCLE,2018-06-21T00:00:00,2018,June,Thursday,21,172,23,2018-06-26T00:00:00,2018,June,Tuesday,26,177,23,D13,Toronto,94,Wychwood (94),"Apartment (Rooming House, Condo)",Apartment,RA,,MT,18,PLE,0.0,STOLEN,21617,"{'type': 'Point', 'coordinates': (-79.42628335, 43.67877685)}"
-21637,2283,GO-20189014373,THEFT UNDER - BICYCLE,2018-05-08T00:00:00,2018,May,Tuesday,8,128,22,2018-05-09T00:00:00,2018,May,Wednesday,9,129,23,D53,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RM,ELEMENT 50,MT,24,RED,1500.0,STOLEN,21618,"{'type': 'Point', 'coordinates': (-79.40210106, 43.67299255)}"
-21638,21841,GO-20143136057,THEFT UNDER,2014-10-17T00:00:00,2014,October,Friday,17,290,19,2014-10-19T00:00:00,2014,October,Sunday,19,292,18,D14,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUPERCYCLE,,TO,18,BLU,300.0,STOLEN,21619,"{'type': 'Point', 'coordinates': (-79.40600258, 43.67218781)}"
-21639,14285,GO-20201362686,PROPERTY - FOUND,2020-07-16T00:00:00,2020,July,Thursday,16,198,7,2020-07-23T00:00:00,2020,July,Thursday,23,205,0,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,VELO SPORT,,RC,12,MRN,,UNKNOWN,21620,"{'type': 'Point', 'coordinates': (-79.41336534, 43.67336444)}"
-21640,14296,GO-20209020105,THEFT UNDER,2020-08-08T00:00:00,2020,August,Saturday,8,221,10,2020-08-13T00:00:00,2020,August,Thursday,13,226,16,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,1,GRY,250.0,STOLEN,21621,"{'type': 'Point', 'coordinates': (-79.41180442, 43.673687980000004)}"
-21641,14297,GO-20201543855,THEFT UNDER,2020-08-17T00:00:00,2020,August,Monday,17,230,6,2020-08-17T00:00:00,2020,August,Monday,17,230,11,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TAOTAO,,SC,12,,3000.0,STOLEN,21622,"{'type': 'Point', 'coordinates': (-79.40716074, 43.671942130000005)}"
-21642,14306,GO-20209021995,THEFT UNDER,2020-08-30T00:00:00,2020,August,Sunday,30,243,2,2020-09-01T00:00:00,2020,September,Tuesday,1,245,15,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,FJ,NEWEST 2.0,RC,21,BLU,1000.0,STOLEN,21623,"{'type': 'Point', 'coordinates': (-79.40600258, 43.67218781)}"
-21643,14314,GO-20209022837,THEFT UNDER,2020-09-03T00:00:00,2020,September,Thursday,3,247,0,2020-09-10T00:00:00,2020,September,Thursday,10,254,12,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,18,BLU,100.0,STOLEN,21624,"{'type': 'Point', 'coordinates': (-79.41898423, 43.66834945)}"
-21644,14315,GO-20209022837,THEFT UNDER,2020-09-03T00:00:00,2020,September,Thursday,3,247,0,2020-09-10T00:00:00,2020,September,Thursday,10,254,12,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,BLAZER,MT,18,BRZ,200.0,STOLEN,21625,"{'type': 'Point', 'coordinates': (-79.41898423, 43.66834945)}"
-21645,14346,GO-20209032788,THEFT UNDER,2020-12-05T00:00:00,2020,December,Saturday,5,340,2,2020-12-23T00:00:00,2020,December,Wednesday,23,358,23,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,RG,21,DBL,250.0,STOLEN,21626,"{'type': 'Point', 'coordinates': (-79.41174945, 43.66662023)}"
-21646,14450,GO-20181583572,B&E,2018-08-27T00:00:00,2018,August,Monday,27,239,3,2018-08-27T00:00:00,2018,August,Monday,27,239,11,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,ROUBAIX,RC,11,BLK,3000.0,STOLEN,21627,"{'type': 'Point', 'coordinates': (-79.40860463, 43.6689049)}"
-21647,14451,GO-20181583572,B&E,2018-08-27T00:00:00,2018,August,Monday,27,239,3,2018-08-27T00:00:00,2018,August,Monday,27,239,11,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,RUBY,RC,11,BLK,3000.0,STOLEN,21628,"{'type': 'Point', 'coordinates': (-79.40860463, 43.6689049)}"
-21648,14471,GO-20189035326,THEFT UNDER - BICYCLE,2018-10-23T00:00:00,2018,October,Tuesday,23,296,18,2018-10-24T00:00:00,2018,October,Wednesday,24,297,9,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,ESCAPE 3,RG,9,BLK,500.0,STOLEN,21629,"{'type': 'Point', 'coordinates': (-79.41653423, 43.66882038)}"
-21649,14473,GO-20182014468,THEFT UNDER - BICYCLE,2018-10-22T00:00:00,2018,October,Monday,22,295,1,2018-11-01T00:00:00,2018,November,Thursday,1,305,10,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,LIV,,MT,12,WHI,900.0,STOLEN,21630,"{'type': 'Point', 'coordinates': (-79.41394991, 43.672149090000005)}"
-21650,14474,GO-20182014468,THEFT UNDER - BICYCLE,2018-10-22T00:00:00,2018,October,Monday,22,295,1,2018-11-01T00:00:00,2018,November,Thursday,1,305,10,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,,MT,18,MRN,1500.0,STOLEN,21631,"{'type': 'Point', 'coordinates': (-79.41394991, 43.672149090000005)}"
-21651,14488,GO-20199002800,THEFT UNDER - BICYCLE,2019-01-18T00:00:00,2019,January,Friday,18,18,9,2019-01-21T00:00:00,2019,January,Monday,21,21,9,D14,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,CARTIER - NEXUS,RG,8,DBL,1150.0,STOLEN,21632,"{'type': 'Point', 'coordinates': (-79.40473364, 43.66896169)}"
-21652,14514,GO-20199016792,THEFT UNDER - BICYCLE,2019-05-26T00:00:00,2019,May,Sunday,26,146,15,2019-05-29T00:00:00,2019,May,Wednesday,29,149,13,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,ROADSTER 3I,RG,3,BLK,700.0,STOLEN,21633,"{'type': 'Point', 'coordinates': (-79.41180442, 43.673687980000004)}"
-21653,14542,GO-20199022179,THEFT UNDER - BICYCLE,2019-07-12T00:00:00,2019,July,Friday,12,193,8,2019-07-13T00:00:00,2019,July,Saturday,13,194,16,D14,Toronto,95,Annex (95),Ttc Subway Station,Transit,TR,,OT,8,WHI,600.0,STOLEN,21634,"{'type': 'Point', 'coordinates': (-79.40414752, 43.66746377)}"
-21654,14571,GO-20191643562,THEFT UNDER - BICYCLE,2019-08-28T00:00:00,2019,August,Wednesday,28,240,3,2019-08-28T00:00:00,2019,August,Wednesday,28,240,15,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,,OT,18,BLKGRN,,STOLEN,21635,"{'type': 'Point', 'coordinates': (-79.41717845, 43.66383426)}"
-21655,14598,GO-20199036219,THEFT UNDER - BICYCLE,2019-11-02T00:00:00,2019,November,Saturday,2,306,12,2019-11-02T00:00:00,2019,November,Saturday,2,306,13,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,18,BLU,0.0,STOLEN,21636,"{'type': 'Point', 'coordinates': (-79.41772442, 43.66858243000001)}"
-21656,14608,GO-20199041954,THEFT UNDER,2019-12-16T00:00:00,2019,December,Monday,16,350,6,2019-12-24T00:00:00,2019,December,Tuesday,24,358,18,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RM,FUSION 30,MT,9,BLU,999.0,STOLEN,21637,"{'type': 'Point', 'coordinates': (-79.41192717, 43.67038291)}"
-21657,14620,GO-20209009642,THEFT UNDER,2020-03-22T00:00:00,2020,March,Sunday,22,82,22,2020-03-23T00:00:00,2020,March,Monday,23,83,15,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,TO,10,PLE,700.0,STOLEN,21638,"{'type': 'Point', 'coordinates': (-79.40822185, 43.67461234)}"
-21658,14622,GO-20209009928,THEFT UNDER,2020-03-19T00:00:00,2020,March,Thursday,19,79,13,2020-03-26T00:00:00,2020,March,Thursday,26,86,19,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,MILANO,RG,21,BLK,800.0,STOLEN,21639,"{'type': 'Point', 'coordinates': (-79.40623518, 43.66616454)}"
-21659,14623,GO-20209009928,THEFT UNDER,2020-03-19T00:00:00,2020,March,Thursday,19,79,13,2020-03-26T00:00:00,2020,March,Thursday,26,86,19,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,MILANO,RG,21,BLK,800.0,STOLEN,21640,"{'type': 'Point', 'coordinates': (-79.40623518, 43.66616454)}"
-21660,14626,GO-20209011137,THEFT UNDER - BICYCLE,2020-04-14T00:00:00,2020,April,Tuesday,14,105,17,2020-04-14T00:00:00,2020,April,Tuesday,14,105,18,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,18,ONG,900.0,STOLEN,21641,"{'type': 'Point', 'coordinates': (-79.41875158, 43.66444289)}"
-21661,14627,GO-20209011137,THEFT UNDER - BICYCLE,2020-04-14T00:00:00,2020,April,Tuesday,14,105,17,2020-04-14T00:00:00,2020,April,Tuesday,14,105,18,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,TR,LIV,RG,13,,1000.0,STOLEN,21642,"{'type': 'Point', 'coordinates': (-79.41875158, 43.66444289)}"
-21662,14643,GO-20209014054,THEFT UNDER,2020-05-23T00:00:00,2020,May,Saturday,23,144,5,2020-05-27T00:00:00,2020,May,Wednesday,27,148,17,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,ESCAPE 3,RG,7,OTH,519.0,STOLEN,21643,"{'type': 'Point', 'coordinates': (-79.41607591000002, 43.67098133)}"
-21663,14645,GO-20209014109,THEFT UNDER,2020-05-27T00:00:00,2020,May,Wednesday,27,148,13,2020-05-28T00:00:00,2020,May,Thursday,28,149,13,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,TR,FX 3 2016,RG,9,GRY,700.0,STOLEN,21644,"{'type': 'Point', 'coordinates': (-79.41174945, 43.66662023)}"
-21664,14686,GO-20179011559,THEFT UNDER,2017-07-29T00:00:00,2017,July,Saturday,29,210,17,2017-08-02T00:00:00,2017,August,Wednesday,2,214,17,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,NO,CITYGLIDE,RG,8,PLE,750.0,STOLEN,21645,"{'type': 'Point', 'coordinates': (-79.41322961, 43.67031869)}"
-21665,14692,GO-20179012642,THEFT UNDER - BICYCLE,2017-07-19T00:00:00,2017,July,Wednesday,19,200,9,2017-08-17T00:00:00,2017,August,Thursday,17,229,15,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ROAD BIKE,RG,3,LBL,150.0,STOLEN,21646,"{'type': 'Point', 'coordinates': (-79.40743417, 43.66591416)}"
-21666,14711,GO-20179014309,THEFT UNDER,2017-09-07T00:00:00,2017,September,Thursday,7,250,16,2017-09-09T00:00:00,2017,September,Saturday,9,252,8,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,2,YEL,500.0,STOLEN,21647,"{'type': 'Point', 'coordinates': (-79.41655235, 43.66558521)}"
-21667,14749,GO-20179022184,THEFT UNDER - BICYCLE,2017-12-13T00:00:00,2017,December,Wednesday,13,347,22,2017-12-14T00:00:00,2017,December,Thursday,14,348,13,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,RG,10,RED,300.0,STOLEN,21648,"{'type': 'Point', 'coordinates': (-79.41673274, 43.67263764)}"
-21668,14797,GO-20189017863,THEFT UNDER - BICYCLE,2018-06-08T00:00:00,2018,June,Friday,8,159,11,2018-06-08T00:00:00,2018,June,Friday,8,159,14,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,VELOCE,RC,9,BLU,3000.0,RECOVERED,21649,"{'type': 'Point', 'coordinates': (-79.40826418, 43.66803619)}"
-21669,14809,GO-20189020183,THEFT UNDER - BICYCLE,2018-06-25T00:00:00,2018,June,Monday,25,176,10,2018-06-25T00:00:00,2018,June,Monday,25,176,14,D14,Toronto,95,Annex (95),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,7.0 DISC,RG,24,,1000.0,STOLEN,21650,"{'type': 'Point', 'coordinates': (-79.40745053, 43.66820323)}"
-21670,14823,GO-20189023469,THEFT UNDER - BICYCLE,2018-07-15T00:00:00,2018,July,Sunday,15,196,16,2018-07-22T00:00:00,2018,July,Sunday,22,203,22,D14,Toronto,95,Annex (95),Convenience Stores,Commercial,RA,RUSH HOUR,RG,1,SIL,500.0,STOLEN,21651,"{'type': 'Point', 'coordinates': (-79.42030175, 43.67185242)}"
-21671,14831,GO-20189024537,THEFT UNDER - BICYCLE,2018-07-27T00:00:00,2018,July,Friday,27,208,19,2018-07-30T00:00:00,2018,July,Monday,30,211,19,D14,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SU,1800,MT,6,BLK,110.0,STOLEN,21652,"{'type': 'Point', 'coordinates': (-79.41958483, 43.66657302)}"
-21672,14844,GO-20189027095,THEFT UNDER - BICYCLE,2018-08-19T00:00:00,2018,August,Sunday,19,231,6,2018-08-20T00:00:00,2018,August,Monday,20,232,12,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,2018 - YORKVILL,OT,21,BLK,600.0,STOLEN,21653,"{'type': 'Point', 'coordinates': (-79.40860463, 43.6689049)}"
-21673,15316,GO-20149003235,THEFT UNDER,2014-05-07T00:00:00,2014,May,Wednesday,7,127,23,2014-05-08T00:00:00,2014,May,Thursday,8,128,21,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,SURLY CROSSCHEC,TO,10,BLK,1500.0,STOLEN,21654,"{'type': 'Point', 'coordinates': (-79.40600258, 43.67218781)}"
-21674,15403,GO-20151016814,B&E,2015-06-17T00:00:00,2015,June,Wednesday,17,168,2,2015-06-17T00:00:00,2015,June,Wednesday,17,168,11,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KONA,STUFF,MT,16,BGEBLK,800.0,STOLEN,21655,"{'type': 'Point', 'coordinates': (-79.41394991, 43.672149090000005)}"
-21675,15418,GO-20151126423,THEFT UNDER,2015-07-04T00:00:00,2015,July,Saturday,4,185,12,2015-07-04T00:00:00,2015,July,Saturday,4,185,12,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MIELE,UMBRIA 3,MT,24,BLKWHI,800.0,STOLEN,21656,"{'type': 'Point', 'coordinates': (-79.41117403, 43.66511537)}"
-21676,15426,GO-20159004701,THEFT UNDER,2015-07-03T00:00:00,2015,July,Friday,3,184,22,2015-07-16T00:00:00,2015,July,Thursday,16,197,17,D14,Toronto,95,Annex (95),Unknown,Other,CC,,RG,21,BLK,400.0,STOLEN,21657,"{'type': 'Point', 'coordinates': (-79.41239827, 43.66488473)}"
-21677,15452,GO-20151596498,THEFT UNDER,2015-09-11T00:00:00,2015,September,Friday,11,254,16,2015-09-15T00:00:00,2015,September,Tuesday,15,258,17,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TAARNBY,UNKNOWN,OT,3,BLKBLU,400.0,STOLEN,21658,"{'type': 'Point', 'coordinates': (-79.41361049000001, 43.66461685)}"
-21678,15476,GO-20159010695,THEFT UNDER,2015-11-25T00:00:00,2015,November,Wednesday,25,329,13,2015-12-09T00:00:00,2015,December,Wednesday,9,343,13,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,1,,1000.0,STOLEN,21659,"{'type': 'Point', 'coordinates': (-79.40526597, 43.67030834)}"
-21679,15495,GO-20169004342,THEFT UNDER,2016-05-08T00:00:00,2016,May,Sunday,8,129,23,2016-05-10T00:00:00,2016,May,Tuesday,10,131,11,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,X-FIRE15DISCU,OT,24,BLK,2655.0,STOLEN,21660,"{'type': 'Point', 'coordinates': (-79.41218524, 43.67033747)}"
-21680,15516,GO-20169006504,THEFT UNDER,2016-06-28T00:00:00,2016,June,Tuesday,28,180,21,2016-06-29T00:00:00,2016,June,Wednesday,29,181,0,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FJ,DECLARATION,RG,1,BLK,600.0,STOLEN,21661,"{'type': 'Point', 'coordinates': (-79.41047653, 43.67397307)}"
-21681,15517,GO-20161149936,THEFT OF EBIKE UNDER $5000,2016-06-21T00:00:00,2016,June,Tuesday,21,173,12,2016-07-01T00:00:00,2016,July,Friday,1,183,11,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,72 VOLT,EL,3,SIL,2300.0,STOLEN,21662,"{'type': 'Point', 'coordinates': (-79.40663406, 43.66607805)}"
-21682,15535,GO-20169008459,THEFT UNDER - BICYCLE,2016-08-09T00:00:00,2016,August,Tuesday,9,222,16,2016-08-09T00:00:00,2016,August,Tuesday,9,222,16,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,21,GRY,2000.0,STOLEN,21663,"{'type': 'Point', 'coordinates': (-79.40916373, 43.6709545)}"
-21683,15549,GO-20169009889,THEFT UNDER,2016-09-02T00:00:00,2016,September,Friday,2,246,21,2016-09-03T00:00:00,2016,September,Saturday,3,247,2,D14,Toronto,95,Annex (95),Ttc Subway Station,Transit,TR,CHELSEA 8 WOMAN,RG,8,BLU,750.0,STOLEN,21664,"{'type': 'Point', 'coordinates': (-79.41853537, 43.66394772)}"
-21684,15567,GO-20161844885,THEFT UNDER - BICYCLE,2016-10-17T00:00:00,2016,October,Monday,17,291,5,2016-10-17T00:00:00,2016,October,Monday,17,291,6,D14,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,MT,7,BLUSIL,90.0,STOLEN,21665,"{'type': 'Point', 'coordinates': (-79.40531586, 43.66635847)}"
-21685,15572,GO-20169012847,THEFT UNDER,2016-10-31T00:00:00,2016,October,Monday,31,305,10,2016-11-01T00:00:00,2016,November,Tuesday,1,306,15,D14,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,7.7,RG,20,GRY,1889.0,STOLEN,21666,"{'type': 'Point', 'coordinates': (-79.40473364, 43.66896169)}"
-21686,15580,GO-20169014843,THEFT UNDER - BICYCLE,2016-12-16T00:00:00,2016,December,Friday,16,351,1,2016-12-19T00:00:00,2016,December,Monday,19,354,12,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,SL1 29ER 2014,MT,30,BLK,2200.0,STOLEN,21667,"{'type': 'Point', 'coordinates': (-79.40623518, 43.66616454)}"
-21687,15608,GO-20179006747,THEFT UNDER,2017-05-21T00:00:00,2017,May,Sunday,21,141,4,2017-05-21T00:00:00,2017,May,Sunday,21,141,19,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,KH,FLITE 100,RC,1,PLE,750.0,STOLEN,21668,"{'type': 'Point', 'coordinates': (-79.41413497, 43.66934581)}"
-21688,15610,GO-2017947553,THEFT UNDER - BICYCLE,2017-04-28T00:00:00,2017,April,Friday,28,118,14,2017-05-29T00:00:00,2017,May,Monday,29,149,11,D14,Toronto,95,Annex (95),Ttc Light Rail Transit Station,Transit,CANNONDALE,SYNAPSE,RC,26,BLK,1500.0,STOLEN,21669,"{'type': 'Point', 'coordinates': (-79.41174945, 43.66662023)}"
-21689,15852,GO-20149001985,THEFT UNDER,2014-03-12T00:00:00,2014,March,Wednesday,12,71,19,2014-03-13T00:00:00,2014,March,Thursday,13,72,0,D53,Toronto,95,Annex (95),"Group Homes (Non-Profit, Halfway House, Social Agency)",Other,SU,,RC,10,BLK,250.0,STOLEN,21670,"{'type': 'Point', 'coordinates': (-79.40238049, 43.66945912)}"
-21690,15858,GO-20141947979,THEFT UNDER,2014-04-22T00:00:00,2014,April,Tuesday,22,112,16,2014-04-24T00:00:00,2014,April,Thursday,24,114,8,D53,Toronto,95,Annex (95),Universities / Colleges,Educational,PEUGEOT,UNKNOWN,RG,12,GRN,350.0,STOLEN,21671,"{'type': 'Point', 'coordinates': (-79.39979751, 43.66751644)}"
-21691,15859,GO-20141979503,THEFT UNDER,2014-04-22T00:00:00,2014,April,Tuesday,22,112,16,2014-04-29T00:00:00,2014,April,Tuesday,29,119,7,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,PEUGEOT,,RG,0,GREEN,350.0,STOLEN,21672,"{'type': 'Point', 'coordinates': (-79.39979751, 43.66751644)}"
-21692,15867,GO-20142190454,THEFT UNDER,2014-05-22T00:00:00,2014,May,Thursday,22,142,7,2014-05-31T00:00:00,2014,May,Saturday,31,151,11,D53,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,EL,5,BLK,4500.0,STOLEN,21673,"{'type': 'Point', 'coordinates': (-79.39410211, 43.66871992)}"
-21693,15869,GO-20142232827,THEFT UNDER,2014-05-27T00:00:00,2014,May,Tuesday,27,147,7,2014-06-06T00:00:00,2014,June,Friday,6,157,11,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWIN,,OT,18,BLU,359.0,STOLEN,21674,"{'type': 'Point', 'coordinates': (-79.38980433, 43.67056247)}"
-21694,15885,GO-20142500516,THEFT UNDER,2014-07-04T00:00:00,2014,July,Friday,4,185,16,2014-07-15T00:00:00,2014,July,Tuesday,15,196,9,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,ORYX,EQUIPE,MT,21,REDWHI,1000.0,STOLEN,21675,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-21695,15888,GO-20142524900,THEFT UNDER,2014-07-17T00:00:00,2014,July,Thursday,17,198,13,2014-07-18T00:00:00,2014,July,Friday,18,199,19,D53,Toronto,95,Annex (95),Universities / Colleges,Educational,OTHER,LECHAMPION,RG,24,BLK,900.0,STOLEN,21676,"{'type': 'Point', 'coordinates': (-79.39734175, 43.66803279)}"
-21696,15892,GO-20149005381,THEFT UNDER,2014-07-27T00:00:00,2014,July,Sunday,27,208,15,2014-07-27T00:00:00,2014,July,Sunday,27,208,15,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,APOLLO,RG,10,WHI,300.0,STOLEN,21677,"{'type': 'Point', 'coordinates': (-79.39539614, 43.67190098)}"
-21697,15893,GO-20149005393,THEFT UNDER,2014-07-27T00:00:00,2014,July,Sunday,27,208,15,2014-07-28T00:00:00,2014,July,Monday,28,209,10,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ROADSTER,RG,3,BLK,1000.0,STOLEN,21678,"{'type': 'Point', 'coordinates': (-79.39098691, 43.66935825)}"
-21698,15920,GO-20143400060,THEFT UNDER,2014-11-30T00:00:00,2014,November,Sunday,30,334,20,2014-11-30T00:00:00,2014,November,Sunday,30,334,20,D53,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SCHWINN,I ZIP,EL,7,SIL,396.0,STOLEN,21679,"{'type': 'Point', 'coordinates': (-79.39850825, 43.67124545)}"
-21699,25335,GO-20189043383,THEFT UNDER - BICYCLE,2018-12-23T00:00:00,2018,December,Sunday,23,357,16,2018-12-27T00:00:00,2018,December,Thursday,27,361,12,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,52,RG,3,GRN,0.0,STOLEN,21680,"{'type': 'Point', 'coordinates': (-79.42583611, 43.67642432)}"
-21700,2340,GO-20189015340,THEFT UNDER - BICYCLE,2018-05-17T00:00:00,2018,May,Thursday,17,137,16,2018-05-17T00:00:00,2018,May,Thursday,17,137,19,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,KO,,RC,20,BLK,1800.0,STOLEN,21681,"{'type': 'Point', 'coordinates': (-79.40473364, 43.66896169)}"
-21701,21860,GO-20159002695,THEFT UNDER,2015-05-12T00:00:00,2015,May,Tuesday,12,132,21,2015-05-13T00:00:00,2015,May,Wednesday,13,133,10,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,1980'S,RC,12,BLU,0.0,STOLEN,21682,"{'type': 'Point', 'coordinates': (-79.41234453, 43.66811332)}"
-21702,2348,GO-20189015513,THEFT UNDER - BICYCLE,2018-05-19T00:00:00,2018,May,Saturday,19,139,0,2018-05-19T00:00:00,2018,May,Saturday,19,139,9,D53,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,CHINOOK,RG,24,BRZ,625.0,STOLEN,21683,"{'type': 'Point', 'coordinates': (-79.4007248, 43.66981528)}"
-21703,2398,GO-20189016319,THEFT UNDER - BICYCLE,2018-05-25T00:00:00,2018,May,Friday,25,145,19,2018-05-26T00:00:00,2018,May,Saturday,26,146,13,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,NO,,RG,24,BLK,678.0,STOLEN,21684,"{'type': 'Point', 'coordinates': (-79.40526597, 43.67030834)}"
-21704,19162,GO-20189016223,THEFT UNDER - BICYCLE,2018-05-24T00:00:00,2018,May,Thursday,24,144,23,2018-05-25T00:00:00,2018,May,Friday,25,145,13,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,GARNEAU LG AXEL,RC,4,GRY,950.0,STOLEN,21685,"{'type': 'Point', 'coordinates': (-79.40323153, 43.67473268)}"
-21705,21868,GO-20159003289,THEFT UNDER,2014-12-16T00:00:00,2014,December,Tuesday,16,350,22,2015-06-02T00:00:00,2015,June,Tuesday,2,153,22,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,0,SIL,,STOLEN,21686,"{'type': 'Point', 'coordinates': (-79.40826418, 43.66803619)}"
-21706,2409,GO-20189016492,B&E,2018-04-26T00:00:00,2018,April,Thursday,26,116,14,2018-05-28T00:00:00,2018,May,Monday,28,148,11,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,NO,VFR3,RG,18,BLK,1300.0,STOLEN,21687,"{'type': 'Point', 'coordinates': (-79.39034054, 43.67494079)}"
-21707,25336,GO-20189043383,THEFT UNDER - BICYCLE,2018-12-23T00:00:00,2018,December,Sunday,23,357,16,2018-12-27T00:00:00,2018,December,Thursday,27,361,12,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,3,BLK,0.0,STOLEN,21688,"{'type': 'Point', 'coordinates': (-79.42583611, 43.67642432)}"
-21708,19177,GO-20181215381,THEFT UNDER - BICYCLE,2018-06-27T00:00:00,2018,June,Wednesday,27,178,2,2018-07-04T00:00:00,2018,July,Wednesday,4,185,12,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,ROCKY MOUNTAIN,,TO,21,DBL,2000.0,STOLEN,21689,"{'type': 'Point', 'coordinates': (-79.38754395, 43.67216242)}"
-21709,21872,GO-20159003525,THEFT UNDER,2015-06-09T00:00:00,2015,June,Tuesday,9,160,9,2015-06-11T00:00:00,2015,June,Thursday,11,162,15,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,21,WHI,390.0,STOLEN,21690,"{'type': 'Point', 'coordinates': (-79.40944561, 43.67172945)}"
-21710,2410,GO-20189016477,THEFT UNDER - BICYCLE,2018-04-21T00:00:00,2018,April,Saturday,21,111,9,2018-05-28T00:00:00,2018,May,Monday,28,148,9,D14,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,,OT,21,MRN,500.0,STOLEN,21691,"{'type': 'Point', 'coordinates': (-79.40473364, 43.66896169)}"
-21711,2421,GO-20189016717,THEFT UNDER - BICYCLE,2018-05-28T00:00:00,2018,May,Monday,28,148,6,2018-05-29T00:00:00,2018,May,Tuesday,29,149,20,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,TO,7,RED,600.0,STOLEN,21692,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-21712,2447,GO-20181006133,B&E,2018-06-02T00:00:00,2018,June,Saturday,2,153,13,2018-06-03T00:00:00,2018,June,Sunday,3,154,18,D53,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,PINARELLO,,OT,1,,3000.0,STOLEN,21693,"{'type': 'Point', 'coordinates': (-79.39690172, 43.67555234)}"
-21713,2522,GO-20189018133,THEFT UNDER - BICYCLE,2018-06-09T00:00:00,2018,June,Saturday,9,160,9,2018-06-10T00:00:00,2018,June,Sunday,10,161,9,D14,Toronto,95,Annex (95),"Open Areas (Lakes, Parks, Rivers)",Outside,IN,700C,RG,6,WHI,400.0,STOLEN,21694,"{'type': 'Point', 'coordinates': (-79.4143519, 43.67315006)}"
-21714,2536,GO-20189018395,THEFT UNDER - BICYCLE,2018-05-26T00:00:00,2018,May,Saturday,26,146,14,2018-06-12T00:00:00,2018,June,Tuesday,12,163,14,D53,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,MALAHAT,RG,21,TRQ,678.0,STOLEN,21695,"{'type': 'Point', 'coordinates': (-79.40149998, 43.66716143)}"
-21715,2609,GO-20189019191,THEFT UNDER - BICYCLE,2018-06-10T00:00:00,2018,June,Sunday,10,161,4,2018-06-18T00:00:00,2018,June,Monday,18,169,17,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,RA,,RG,8,BLK,2000.0,STOLEN,21696,"{'type': 'Point', 'coordinates': (-79.4007248, 43.66981528)}"
-21716,2623,GO-20189019380,THEFT UNDER - BICYCLE,2018-05-08T00:00:00,2018,May,Tuesday,8,128,21,2018-06-19T00:00:00,2018,June,Tuesday,19,170,18,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,21,BLK,859.0,STOLEN,21697,"{'type': 'Point', 'coordinates': (-79.41853537, 43.66394772)}"
-21717,2640,GO-20189018349,THEFT UNDER - BICYCLE,2018-06-03T00:00:00,2018,June,Sunday,3,154,19,2018-06-12T00:00:00,2018,June,Tuesday,12,163,10,D53,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,,RC,9,GRY,1300.0,STOLEN,21698,"{'type': 'Point', 'coordinates': (-79.38942023, 43.67292854)}"
-21718,2660,GO-20189019942,THEFT UNDER - BICYCLE,2018-06-19T00:00:00,2018,June,Tuesday,19,170,13,2018-06-23T00:00:00,2018,June,Saturday,23,174,14,D14,Toronto,95,Annex (95),Ttc Subway Station,Transit,NO,INDIE 7,OT,24,SIL,850.0,STOLEN,21699,"{'type': 'Point', 'coordinates': (-79.41853537, 43.66394772)}"
-21719,2662,GO-20189019956,THEFT UNDER - BICYCLE,2018-06-18T00:00:00,2018,June,Monday,18,169,17,2018-06-23T00:00:00,2018,June,Saturday,23,174,17,D53,Toronto,95,Annex (95),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,UK,PROJEKT 8,RG,8,ONG,380.0,STOLEN,21700,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-21720,2669,GO-20189020077,THEFT UNDER - BICYCLE,2018-06-15T00:00:00,2018,June,Friday,15,166,1,2018-06-25T00:00:00,2018,June,Monday,25,176,0,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,TR,,RG,21,RED,0.0,STOLEN,21701,"{'type': 'Point', 'coordinates': (-79.40628591, 43.66897569)}"
-21721,2680,GO-20189020020,THEFT UNDER - BICYCLE,2018-06-16T00:00:00,2018,June,Saturday,16,167,12,2018-06-24T00:00:00,2018,June,Sunday,24,175,17,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ROADSTER SPORT,RG,3,,1200.0,STOLEN,21702,"{'type': 'Point', 'coordinates': (-79.40930544, 43.6742621)}"
-21722,2762,GO-20189021329,THEFT UNDER - BICYCLE,2018-07-05T00:00:00,2018,July,Thursday,5,186,16,2018-07-05T00:00:00,2018,July,Thursday,5,186,17,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,18 DIVERGE MEN,RG,1,RED,1500.0,STOLEN,21703,"{'type': 'Point', 'coordinates': (-79.39986342, 43.67495124)}"
-21723,2787,GO-20189021701,THEFT UNDER - BICYCLE,2018-06-30T00:00:00,2018,June,Saturday,30,181,16,2018-07-09T00:00:00,2018,July,Monday,9,190,14,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,VERZA SPEED 50,RG,15,BLU,700.0,STOLEN,21704,"{'type': 'Point', 'coordinates': (-79.40356059, 43.67559443)}"
-21724,2795,GO-20189021786,THEFT UNDER - BICYCLE,2018-07-09T00:00:00,2018,July,Monday,9,190,18,2018-07-09T00:00:00,2018,July,Monday,9,190,21,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,ALPHA 1.5,RC,21,WHI,500.0,STOLEN,21705,"{'type': 'Point', 'coordinates': (-79.39089307, 43.67032462)}"
-21725,2818,GO-20189022127,THEFT UNDER - BICYCLE,2018-07-11T00:00:00,2018,July,Wednesday,11,192,7,2018-07-11T00:00:00,2018,July,Wednesday,11,192,23,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,,RG,24,BLK,1000.0,STOLEN,21706,"{'type': 'Point', 'coordinates': (-79.39003347, 43.67421927)}"
-21726,2856,GO-20189022693,THEFT FROM MOTOR VEHICLE UNDER,2018-06-19T00:00:00,2018,June,Tuesday,19,170,20,2018-07-17T00:00:00,2018,July,Tuesday,17,198,11,D53,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RC,18,GRN,4200.0,STOLEN,21707,"{'type': 'Point', 'coordinates': (-79.40266823, 43.66690503)}"
-21727,2858,GO-20189022656,THEFT UNDER - BICYCLE,2018-07-15T00:00:00,2018,July,Sunday,15,196,20,2018-07-16T00:00:00,2018,July,Monday,16,197,15,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,SOTO COMFORT BI,RG,21,PLE,375.0,STOLEN,21708,"{'type': 'Point', 'coordinates': (-79.40743417, 43.66591416)}"
-21728,2869,GO-20189022865,THEFT UNDER - BICYCLE,2018-07-17T00:00:00,2018,July,Tuesday,17,198,9,2018-07-18T00:00:00,2018,July,Wednesday,18,199,9,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,MIXTE 3,RG,3,CRM,400.0,STOLEN,21709,"{'type': 'Point', 'coordinates': (-79.41715995, 43.66708028)}"
-21729,2887,GO-20189023112,THEFT UNDER - BICYCLE,2018-07-19T00:00:00,2018,July,Thursday,19,200,0,2018-07-19T00:00:00,2018,July,Thursday,19,200,18,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,24,SIL,0.0,STOLEN,21710,"{'type': 'Point', 'coordinates': (-79.39850825, 43.67124545)}"
-21730,2993,GO-20189024188,THEFT UNDER - BICYCLE,2018-07-26T00:00:00,2018,July,Thursday,26,207,23,2018-07-27T00:00:00,2018,July,Friday,27,208,14,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,AMSTERDAM,OT,27,YEL,700.0,STOLEN,21711,"{'type': 'Point', 'coordinates': (-79.41394991, 43.672149090000005)}"
-21731,3052,GO-20189024858,THEFT UNDER - BICYCLE,2018-07-31T00:00:00,2018,July,Tuesday,31,212,8,2018-08-02T00:00:00,2018,August,Thursday,2,214,13,D53,Toronto,95,Annex (95),"Open Areas (Lakes, Parks, Rivers)",Outside,GI,XCW,MT,6,GRY,500.0,STOLEN,21713,"{'type': 'Point', 'coordinates': (-79.39054537, 43.66944743)}"
-21732,3065,GO-20189025011,THEFT FROM MOTOR VEHICLE UNDER,2018-08-03T00:00:00,2018,August,Friday,3,215,0,2018-08-03T00:00:00,2018,August,Friday,3,215,13,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SVELTO,RC,18,RED,0.0,STOLEN,21714,"{'type': 'Point', 'coordinates': (-79.40266823, 43.66690503)}"
-21733,3105,GO-20189025413,THEFT UNDER - BICYCLE,2018-07-31T00:00:00,2018,July,Tuesday,31,212,22,2018-08-07T00:00:00,2018,August,Tuesday,7,219,14,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,VFR 6,RG,21,BLK,585.0,STOLEN,21715,"{'type': 'Point', 'coordinates': (-79.39333394, 43.67154496)}"
-21734,3168,GO-20189025981,THEFT UNDER - BICYCLE,2018-08-10T00:00:00,2018,August,Friday,10,222,18,2018-08-11T00:00:00,2018,August,Saturday,11,223,14,D53,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,,RC,10,RED,1500.0,STOLEN,21716,"{'type': 'Point', 'coordinates': (-79.38894672, 43.67558881)}"
-21735,3206,GO-20189026056,THEFT UNDER - BICYCLE,2018-08-11T00:00:00,2018,August,Saturday,11,223,9,2018-08-12T00:00:00,2018,August,Sunday,12,224,14,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,THRESHOLD A2,RC,10,GRN,1405.0,STOLEN,21717,"{'type': 'Point', 'coordinates': (-79.39048965, 43.67213792)}"
-21736,3213,GO-20189026492,THEFT UNDER - BICYCLE,2018-08-15T00:00:00,2018,August,Wednesday,15,227,0,2018-08-15T00:00:00,2018,August,Wednesday,15,227,13,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,2017 FX2 WSD,RG,8,BLK,600.0,STOLEN,21718,"{'type': 'Point', 'coordinates': (-79.41457384, 43.66717363)}"
-21737,3424,GO-20189029606,THEFT UNDER - BICYCLE,2018-09-08T00:00:00,2018,September,Saturday,8,251,13,2018-09-08T00:00:00,2018,September,Saturday,8,251,16,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,7.2FX WSD 17.5L,RG,18,DBL,915.0,STOLEN,21719,"{'type': 'Point', 'coordinates': (-79.40531586, 43.66635847)}"
-21738,3425,GO-20189029613,THEFT UNDER - BICYCLE,2018-09-08T00:00:00,2018,September,Saturday,8,251,15,2018-09-08T00:00:00,2018,September,Saturday,8,251,17,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,F-SEVEN SERIES?,RG,40,BLK,500.0,STOLEN,21720,"{'type': 'Point', 'coordinates': (-79.41413497, 43.66934581)}"
-21739,3430,GO-20189029724,THEFT UNDER - BICYCLE,2018-09-08T00:00:00,2018,September,Saturday,8,251,13,2018-09-09T00:00:00,2018,September,Sunday,9,252,18,D14,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RA,1983,RG,3,DBL,150.0,STOLEN,21721,"{'type': 'Point', 'coordinates': (-79.419703, 43.67025263)}"
-21740,3479,GO-20181717000,B&E,2018-09-16T00:00:00,2018,September,Sunday,16,259,5,2018-09-16T00:00:00,2018,September,Sunday,16,259,17,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,TIPO PISTA,OT,1,ONG,1500.0,STOLEN,21722,"{'type': 'Point', 'coordinates': (-79.39410064, 43.67738561)}"
-21741,3501,GO-20181724149,B&E,2018-09-16T00:00:00,2018,September,Sunday,16,259,0,2018-09-18T00:00:00,2018,September,Tuesday,18,261,14,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,S-WORKS,RC,1,BLK,12500.0,STOLEN,21723,"{'type': 'Point', 'coordinates': (-79.39478159, 43.67038539)}"
-21742,3518,GO-20189031222,THEFT UNDER,2018-09-20T00:00:00,2018,September,Thursday,20,263,6,2018-09-20T00:00:00,2018,September,Thursday,20,263,10,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,DUCHY 3,RG,3,YEL,800.0,STOLEN,21724,"{'type': 'Point', 'coordinates': (-79.41655235, 43.66558521)}"
-21743,3560,GO-20189031930,THEFT UNDER - BICYCLE,2018-09-23T00:00:00,2018,September,Sunday,23,266,1,2018-09-26T00:00:00,2018,September,Wednesday,26,269,1,D53,Toronto,95,Annex (95),Bar / Restaurant,Commercial,OT,,MT,21,BLK,800.0,STOLEN,21725,"{'type': 'Point', 'coordinates': (-79.3993686, 43.67335805)}"
-21744,3562,GO-20189031930,THEFT UNDER - BICYCLE,2018-09-23T00:00:00,2018,September,Sunday,23,266,1,2018-09-26T00:00:00,2018,September,Wednesday,26,269,1,D53,Toronto,95,Annex (95),Bar / Restaurant,Commercial,OT,SPECIALIZED ROC,MT,21,BLK,800.0,STOLEN,21726,"{'type': 'Point', 'coordinates': (-79.3993686, 43.67335805)}"
-21745,3649,GO-20189033442,THEFT UNDER - BICYCLE,2018-10-10T00:00:00,2018,October,Wednesday,10,283,0,2018-10-10T00:00:00,2018,October,Wednesday,10,283,9,D14,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,,TO,21,BLK,2185.0,STOLEN,21727,"{'type': 'Point', 'coordinates': (-79.41218524, 43.67033747)}"
-21746,3718,GO-20189034496,THEFT UNDER - BICYCLE,2018-10-13T00:00:00,2018,October,Saturday,13,286,22,2018-10-17T00:00:00,2018,October,Wednesday,17,290,19,D14,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,ELITE CARBON,MT,15,BLK,2747.0,STOLEN,21728,"{'type': 'Point', 'coordinates': (-79.41798479, 43.66927319)}"
-21747,3752,GO-20189035326,THEFT UNDER - BICYCLE,2018-10-23T00:00:00,2018,October,Tuesday,23,296,18,2018-10-24T00:00:00,2018,October,Wednesday,24,297,9,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,ESCAPE,RG,9,BLK,800.0,STOLEN,21729,"{'type': 'Point', 'coordinates': (-79.41653423, 43.66882038)}"
-21748,3755,GO-20189035357,THEFT UNDER - BICYCLE,2018-10-22T00:00:00,2018,October,Monday,22,295,22,2018-10-24T00:00:00,2018,October,Wednesday,24,297,12,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,CA,,TO,24,BLK,500.0,STOLEN,21730,"{'type': 'Point', 'coordinates': (-79.40600258, 43.67218781)}"
-21749,3796,GO-20182006640,B&E W'INTENT,2018-10-22T00:00:00,2018,October,Monday,22,295,1,2018-10-31T00:00:00,2018,October,Wednesday,31,304,6,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,TCR1,RC,10,BLK,1600.0,STOLEN,21731,"{'type': 'Point', 'coordinates': (-79.41192717, 43.67038291)}"
-21750,3808,GO-20182027909,THEFT UNDER - BICYCLE,2018-10-25T00:00:00,2018,October,Thursday,25,298,10,2018-11-03T00:00:00,2018,November,Saturday,3,307,10,D53,Toronto,95,Annex (95),Ttc Subway Station,Transit,CANNONDALE,DEUCE,MT,27,WHI,3000.0,STOLEN,21732,"{'type': 'Point', 'coordinates': (-79.40708312, 43.67485713)}"
-21751,3824,GO-20189037224,THEFT UNDER - BICYCLE,2018-10-17T00:00:00,2018,October,Wednesday,17,290,13,2018-11-07T00:00:00,2018,November,Wednesday,7,311,13,D53,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,VFR6,RG,24,SIL,600.0,STOLEN,21733,"{'type': 'Point', 'coordinates': (-79.40149998, 43.66716143)}"
-21752,3861,GO-20189038411,THEFT UNDER - BICYCLE,2018-11-14T00:00:00,2018,November,Wednesday,14,318,23,2018-11-15T00:00:00,2018,November,Thursday,15,319,18,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,CA,QUICK CX4,RG,8,BLK,800.0,STOLEN,21734,"{'type': 'Point', 'coordinates': (-79.40414752, 43.66746377)}"
-21753,3862,GO-20189038412,THEFT UNDER - BICYCLE,2018-11-14T00:00:00,2018,November,Wednesday,14,318,23,2018-11-15T00:00:00,2018,November,Thursday,15,319,18,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,EXPEDITION SPOR,RG,7,BLK,400.0,STOLEN,21735,"{'type': 'Point', 'coordinates': (-79.40414752, 43.66746377)}"
-21754,3885,GO-20189039057,THEFT UNDER - BICYCLE,2018-11-20T00:00:00,2018,November,Tuesday,20,324,11,2018-11-20T00:00:00,2018,November,Tuesday,20,324,18,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,CA,CAADX 105,RG,22,GRY,1500.0,STOLEN,21736,"{'type': 'Point', 'coordinates': (-79.39539614, 43.67190098)}"
-21755,3967,GO-20189043612,THEFT UNDER - BICYCLE,2018-12-28T00:00:00,2018,December,Friday,28,362,20,2018-12-29T00:00:00,2018,December,Saturday,29,363,13,D53,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,,RG,16,WHI,400.0,STOLEN,21737,"{'type': 'Point', 'coordinates': (-79.38980433, 43.67056247)}"
-21756,3968,GO-20189043612,THEFT UNDER - BICYCLE,2018-12-28T00:00:00,2018,December,Friday,28,362,20,2018-12-29T00:00:00,2018,December,Saturday,29,363,13,D53,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,ESCAPE 2,RG,16,WHI,400.0,STOLEN,21738,"{'type': 'Point', 'coordinates': (-79.38980433, 43.67056247)}"
-21757,3995,GO-201953949,THEFT OVER - BICYCLE,2019-01-07T00:00:00,2019,January,Monday,7,7,6,2019-01-09T00:00:00,2019,January,Wednesday,9,9,18,D53,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,PRO,MT,7,PLE,2254.0,STOLEN,21739,"{'type': 'Point', 'coordinates': (-79.3916327, 43.67973412)}"
-21758,3996,GO-201953949,THEFT OVER - BICYCLE,2019-01-07T00:00:00,2019,January,Monday,7,7,6,2019-01-09T00:00:00,2019,January,Wednesday,9,9,18,D53,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,ROUBAIX COMPOSI,RC,18,GRY,3329.0,STOLEN,21740,"{'type': 'Point', 'coordinates': (-79.3916327, 43.67973412)}"
-21759,4016,GO-20199003015,THEFT UNDER - BICYCLE,2019-01-21T00:00:00,2019,January,Monday,21,21,14,2019-01-22T00:00:00,2019,January,Tuesday,22,22,15,D14,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,QUICK,RG,6,BLK,800.0,STOLEN,21741,"{'type': 'Point', 'coordinates': (-79.40600258, 43.67218781)}"
-21760,4017,GO-20199003108,THEFT UNDER - BICYCLE,2019-01-21T00:00:00,2019,January,Monday,21,21,23,2019-01-23T00:00:00,2019,January,Wednesday,23,23,10,D14,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,OT,20,RED,0.0,STOLEN,21742,"{'type': 'Point', 'coordinates': (-79.40860463, 43.6689049)}"
-21761,4083,GO-20199007767,THEFT UNDER - BICYCLE,2019-03-02T00:00:00,2019,March,Saturday,2,61,10,2019-03-09T00:00:00,2019,March,Saturday,9,68,16,D53,Toronto,95,Annex (95),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UK,ARRIBA,RG,16,BLK,1130.0,STOLEN,21743,"{'type': 'Point', 'coordinates': (-79.38754395, 43.67216242)}"
-21762,4092,GO-2019466639,THEFT UNDER - BICYCLE,2019-03-14T00:00:00,2019,March,Thursday,14,73,14,2019-03-14T00:00:00,2019,March,Thursday,14,73,16,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KONA,PADDY WAGGON,RG,0,GRNONG,800.0,STOLEN,21744,"{'type': 'Point', 'coordinates': (-79.38946773, 43.66966903)}"
-21763,4132,GO-20199010712,THEFT UNDER - BICYCLE,2019-04-04T00:00:00,2019,April,Thursday,4,94,10,2019-04-04T00:00:00,2019,April,Thursday,4,94,20,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,ROVE DL,TO,9,YEL,1200.0,STOLEN,21745,"{'type': 'Point', 'coordinates': (-79.39410211, 43.66871992)}"
-21764,4170,GO-20199012037,THEFT UNDER,2019-04-15T00:00:00,2019,April,Monday,15,105,18,2019-04-16T00:00:00,2019,April,Tuesday,16,106,9,D14,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,GLOBE ROLL 1,OT,1,GRY,700.0,STOLEN,21746,"{'type': 'Point', 'coordinates': (-79.41234453, 43.66811332)}"
-21765,4171,GO-20199012037,THEFT UNDER,2019-04-15T00:00:00,2019,April,Monday,15,105,18,2019-04-16T00:00:00,2019,April,Tuesday,16,106,9,D14,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,CRUISER,RG,1,OTH,1000.0,STOLEN,21747,"{'type': 'Point', 'coordinates': (-79.41234453, 43.66811332)}"
-21766,4280,GO-20199015100,THEFT UNDER - BICYCLE,2019-05-14T00:00:00,2019,May,Tuesday,14,134,19,2019-05-15T00:00:00,2019,May,Wednesday,15,135,11,D14,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,MISTRAL,RC,10,CRM,400.0,STOLEN,21748,"{'type': 'Point', 'coordinates': (-79.41673274, 43.67263764)}"
-21767,4309,GO-2019927136,THEFT UNDER - BICYCLE,2019-05-21T00:00:00,2019,May,Tuesday,21,141,12,2019-05-21T00:00:00,2019,May,Tuesday,21,141,15,D53,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,STROMMER,,MT,8,,3000.0,STOLEN,21749,"{'type': 'Point', 'coordinates': (-79.40019243, 43.67573014)}"
-21768,4317,GO-20199015828,THEFT UNDER - BICYCLE,2019-05-21T00:00:00,2019,May,Tuesday,21,141,8,2019-05-21T00:00:00,2019,May,Tuesday,21,141,20,D14,Toronto,95,Annex (95),Schools During Supervised Activity,Educational,TR,TREK MARLIN 6,MT,24,BLK,859.0,STOLEN,21750,"{'type': 'Point', 'coordinates': (-79.4097913, 43.66864896)}"
-21769,4327,GO-20199015975,THEFT UNDER - BICYCLE,2019-05-22T00:00:00,2019,May,Wednesday,22,142,14,2019-05-23T00:00:00,2019,May,Thursday,23,143,10,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,NO,2014 XFR 3 FORM,OT,21,WHI,0.0,STOLEN,21751,"{'type': 'Point', 'coordinates': (-79.40526597, 43.67030834)}"
-21770,4335,GO-20199016130,THEFT UNDER,2019-05-22T00:00:00,2019,May,Wednesday,22,142,21,2019-05-24T00:00:00,2019,May,Friday,24,144,11,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MA,,MT,15,BLK,400.0,STOLEN,21752,"{'type': 'Point', 'coordinates': (-79.41192717, 43.67038291)}"
-21771,4363,GO-20199016583,THEFT UNDER - BICYCLE,2019-05-27T00:00:00,2019,May,Monday,27,147,2,2019-05-28T00:00:00,2019,May,Tuesday,28,148,11,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,MASI CX,TO,24,WHI,,STOLEN,21753,"{'type': 'Point', 'coordinates': (-79.40944561, 43.67172945)}"
-21772,4364,GO-20199016583,THEFT UNDER - BICYCLE,2019-05-27T00:00:00,2019,May,Monday,27,147,2,2019-05-28T00:00:00,2019,May,Tuesday,28,148,11,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,MASI CX,TO,24,WHI,1200.0,STOLEN,21754,"{'type': 'Point', 'coordinates': (-79.40944561, 43.67172945)}"
-21773,4422,GO-20199017743,THEFT UNDER - BICYCLE,2019-05-23T00:00:00,2019,May,Thursday,23,143,22,2019-06-07T00:00:00,2019,June,Friday,7,158,13,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,CHAPEL,RG,24,BLK,600.0,STOLEN,21755,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-21774,4439,GO-20199016583,THEFT UNDER - BICYCLE,2019-05-27T00:00:00,2019,May,Monday,27,147,2,2019-05-28T00:00:00,2019,May,Tuesday,28,148,11,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,MASI CX,TO,24,WHI,1200.0,STOLEN,21756,"{'type': 'Point', 'coordinates': (-79.40944561, 43.67172945)}"
-21775,4527,GO-20199019069,THEFT UNDER - BICYCLE,2019-06-17T00:00:00,2019,June,Monday,17,168,8,2019-06-18T00:00:00,2019,June,Tuesday,18,169,11,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MA,MUIRWOODS,RG,27,BLK,900.0,STOLEN,21757,"{'type': 'Point', 'coordinates': (-79.39098691, 43.66935825)}"
-21776,4551,GO-20199019319,THEFT FROM MOTOR VEHICLE UNDER,2019-06-19T00:00:00,2019,June,Wednesday,19,170,18,2019-06-20T00:00:00,2019,June,Thursday,20,171,8,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,11,,120.0,STOLEN,21758,"{'type': 'Point', 'coordinates': (-79.39656616, 43.67472452)}"
-21777,4583,GO-20199019665,THEFT UNDER - BICYCLE,2019-06-22T00:00:00,2019,June,Saturday,22,173,1,2019-06-22T00:00:00,2019,June,Saturday,22,173,12,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,,RG,8,RED,0.0,STOLEN,21759,"{'type': 'Point', 'coordinates': (-79.39039203, 43.67914574)}"
-21778,4599,GO-20199020031,THEFT UNDER - BICYCLE,2019-06-24T00:00:00,2019,June,Monday,24,175,21,2019-06-25T00:00:00,2019,June,Tuesday,25,176,11,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,,RC,10,BLU,200.0,STOLEN,21760,"{'type': 'Point', 'coordinates': (-79.40864191, 43.66567614)}"
-21779,4615,GO-20199020189,THEFT UNDER,2019-06-18T00:00:00,2019,June,Tuesday,18,169,21,2019-06-26T00:00:00,2019,June,Wednesday,26,177,13,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,RG,24,BLK,1000.0,STOLEN,21761,"{'type': 'Point', 'coordinates': (-79.40860463, 43.6689049)}"
-21780,4631,GO-20191200623,THEFT OF EBIKE UNDER $5000,2019-06-26T00:00:00,2019,June,Wednesday,26,177,17,2019-06-28T00:00:00,2019,June,Friday,28,179,11,D14,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,PRESTIGE,EL,40,BLK,2000.0,STOLEN,21762,"{'type': 'Point', 'coordinates': (-79.40531586, 43.66635847)}"
-21781,4642,GO-20191216906,THEFT UNDER - BICYCLE,2019-06-28T00:00:00,2019,June,Friday,28,179,4,2019-06-30T00:00:00,2019,June,Sunday,30,181,17,D14,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KONA,,RG,21,BLKONG,1000.0,STOLEN,21763,"{'type': 'Point', 'coordinates': (-79.40623518, 43.66616454)}"
-21782,4683,GO-20199021235,THEFT UNDER,2019-05-17T00:00:00,2019,May,Friday,17,137,9,2019-07-06T00:00:00,2019,July,Saturday,6,187,16,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,SIRRUS,RG,18,GRY,1274.0,STOLEN,21764,"{'type': 'Point', 'coordinates': (-79.40600258, 43.67218781)}"
-21783,4710,GO-20199021536,THEFT UNDER - BICYCLE,2019-07-07T00:00:00,2019,July,Sunday,7,188,6,2019-07-08T00:00:00,2019,July,Monday,8,189,22,D53,Toronto,95,Annex (95),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,OT,URBAN TRACK,RC,1,WHI,300.0,STOLEN,21765,"{'type': 'Point', 'coordinates': (-79.39048965, 43.67213792)}"
-21784,4751,GO-20199021933,THEFT FROM MOTOR VEHICLE UNDER,2019-07-11T00:00:00,2019,July,Thursday,11,192,21,2019-07-12T00:00:00,2019,July,Friday,12,193,9,D53,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,2019,MT,24,BLK,1250.0,STOLEN,21766,"{'type': 'Point', 'coordinates': (-79.3886562, 43.67488192)}"
-21785,19179,GO-20189022524,THEFT UNDER - BICYCLE,2018-07-14T00:00:00,2018,July,Saturday,14,195,18,2018-07-15T00:00:00,2018,July,Sunday,15,196,18,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DEVINCI,,RG,21,SIL,400.0,STOLEN,21767,"{'type': 'Point', 'coordinates': (-79.39828254000001, 43.67032491)}"
-21786,21882,GO-20159003921,THEFT UNDER,2015-06-19T00:00:00,2015,June,Friday,19,170,11,2015-06-25T00:00:00,2015,June,Thursday,25,176,0,D14,Toronto,95,Annex (95),Ttc Subway Station,Transit,OT,SINGLE SPEED,RG,1,CRM,650.0,STOLEN,21768,"{'type': 'Point', 'coordinates': (-79.41853537, 43.66394772)}"
-21787,19180,GO-20189022772,THEFT UNDER - BICYCLE,2018-07-17T00:00:00,2018,July,Tuesday,17,198,4,2018-07-17T00:00:00,2018,July,Tuesday,17,198,13,D53,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,VITA,RG,8,PLE,1700.0,STOLEN,21769,"{'type': 'Point', 'coordinates': (-79.40474908, 43.67535737)}"
-21788,21894,GO-20159004705,THEFT UNDER,2015-07-18T00:00:00,2015,July,Saturday,18,199,6,2015-07-18T00:00:00,2015,July,Saturday,18,199,14,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,EM,,EL,32,,1000.0,STOLEN,21770,"{'type': 'Point', 'coordinates': (-79.40822185, 43.67461234)}"
-21789,19189,GO-20189025915,THEFT UNDER - BICYCLE,2018-08-10T00:00:00,2018,August,Friday,10,222,18,2018-08-10T00:00:00,2018,August,Friday,10,222,22,D53,Toronto,95,Annex (95),Universities / Colleges,Educational,NO,INDIE 3,RG,24,BLU,700.0,STOLEN,21771,"{'type': 'Point', 'coordinates': (-79.39832557, 43.66783119)}"
-21790,21940,GO-20169000054,THEFT UNDER,2016-01-02T00:00:00,2016,January,Saturday,2,2,13,2016-01-02T00:00:00,2016,January,Saturday,2,2,16,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,PACER,RC,21,BLU,1757.0,STOLEN,21772,"{'type': 'Point', 'coordinates': (-79.40860463, 43.6689049)}"
-21791,21960,GO-2016809232,THEFT UNDER - BICYCLE,2016-05-11T00:00:00,2016,May,Wednesday,11,132,9,2016-05-11T00:00:00,2016,May,Wednesday,11,132,12,D14,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,XPS,EL,1,LGR,2400.0,STOLEN,21773,"{'type': 'Point', 'coordinates': (-79.4143519, 43.67315006)}"
-21792,25349,GO-20199026597,THEFT UNDER - BICYCLE,2019-08-15T00:00:00,2019,August,Thursday,15,227,13,2019-08-17T00:00:00,2019,August,Saturday,17,229,14,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,INFERNO,MT,6,BLK,450.0,STOLEN,21774,"{'type': 'Point', 'coordinates': (-79.4180477, 43.67891588)}"
-21793,19199,GO-20189030690,THEFT UNDER - BICYCLE,2018-09-15T00:00:00,2018,September,Saturday,15,258,15,2018-09-16T00:00:00,2018,September,Sunday,16,259,16,D53,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,SOHO,RG,1,BLK,900.0,STOLEN,21775,"{'type': 'Point', 'coordinates': (-79.39754923, 43.67763587)}"
-21794,22181,GO-20169008924,THEFT UNDER - BICYCLE,2016-08-16T00:00:00,2016,August,Tuesday,16,229,16,2016-08-17T00:00:00,2016,August,Wednesday,17,230,12,D53,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,STOCKHOLM,RG,21,,800.0,STOLEN,21776,"{'type': 'Point', 'coordinates': (-79.39787549000002, 43.66923262)}"
-21795,19216,GO-20182136853,THEFT UNDER - BICYCLE,2018-11-17T00:00:00,2018,November,Saturday,17,321,0,2018-11-20T00:00:00,2018,November,Tuesday,20,324,12,D53,Toronto,95,Annex (95),Universities / Colleges,Educational,CANNONDALE,QUICK,MT,0,BLUYEL,1000.0,STOLEN,21777,"{'type': 'Point', 'coordinates': (-79.39832557, 43.66783119)}"
-21796,25369,GO-2020971340,THEFT UNDER - BICYCLE,2020-05-26T00:00:00,2020,May,Tuesday,26,147,15,2020-05-26T00:00:00,2020,May,Tuesday,26,147,15,D13,Toronto,94,Wychwood (94),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,BLACK PANTHER,MT,1,BLK,150.0,UNKNOWN,21778,"{'type': 'Point', 'coordinates': (-79.43101717, 43.67676105)}"
-21797,22208,GO-20169012002,THEFT UNDER - BICYCLE,2016-10-04T00:00:00,2016,October,Tuesday,4,278,6,2016-10-13T00:00:00,2016,October,Thursday,13,287,17,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,10,GRY,0.0,STOLEN,21779,"{'type': 'Point', 'coordinates': (-79.39048965, 43.67213792)}"
-21798,19227,GO-2019927590,THEFT UNDER,2019-05-20T00:00:00,2019,May,Monday,20,140,21,2019-05-21T00:00:00,2019,May,Tuesday,21,141,16,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,EMMO,,MT,21,BLK,2500.0,STOLEN,21780,"{'type': 'Point', 'coordinates': (-79.4007248, 43.66981528)}"
-21799,25374,GO-20201275893,THEFT OF EBIKE UNDER $5000,2020-07-09T00:00:00,2020,July,Thursday,9,191,11,2020-07-10T00:00:00,2020,July,Friday,10,192,8,D13,Toronto,94,Wychwood (94),"Apartment (Rooming House, Condo)",Apartment,MOSKINO,EAGLE,EL,7,WHI,2000.0,STOLEN,21781,"{'type': 'Point', 'coordinates': (-79.42828936, 43.67473002)}"
-21800,22213,GO-20162111373,THEFT UNDER - BICYCLE,2016-11-23T00:00:00,2016,November,Wednesday,23,328,9,2016-11-28T00:00:00,2016,November,Monday,28,333,12,D53,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KONA,SUTRA,TO,24,BGE,2250.0,STOLEN,21782,"{'type': 'Point', 'coordinates': (-79.40149998, 43.66716143)}"
-21801,19239,GO-20191079727,B&E,2019-06-11T00:00:00,2019,June,Tuesday,11,162,20,2019-06-11T00:00:00,2019,June,Tuesday,11,162,21,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,QUICK 7 WOMENS,RG,24,ONG,800.0,STOLEN,21783,"{'type': 'Point', 'coordinates': (-79.40593727, 43.67510835)}"
-21802,25377,GO-20209018301,THEFT UNDER,2020-07-20T00:00:00,2020,July,Monday,20,202,12,2020-07-22T00:00:00,2020,July,Wednesday,22,204,23,D13,Toronto,94,Wychwood (94),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,NO,VFR 3,RG,7,ONG,539.0,STOLEN,21784,"{'type': 'Point', 'coordinates': (-79.41826195, 43.68316749)}"
-21803,22217,GO-2017371146,THEFT OVER,2017-02-24T00:00:00,2017,February,Friday,24,55,8,2017-02-28T00:00:00,2017,February,Tuesday,28,59,17,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,BIANCHI,CORTINA,TO,8,WHI,1000.0,RECOVERED,21785,"{'type': 'Point', 'coordinates': (-79.39986342, 43.67495124)}"
-21804,19242,GO-20199019122,THEFT UNDER - BICYCLE,2019-06-13T00:00:00,2019,June,Thursday,13,164,19,2019-06-18T00:00:00,2019,June,Tuesday,18,169,16,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,21,GRY,1500.0,STOLEN,21786,"{'type': 'Point', 'coordinates': (-79.38942023, 43.67292854)}"
-21805,67,GO-2017167350,THEFT OF EBIKE UNDER $5000,2017-01-27T00:00:00,2017,January,Friday,27,27,9,2017-01-27T00:00:00,2017,January,Friday,27,27,11,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EM,,EL,35,BLK,2000.0,STOLEN,21787,"{'type': 'Point', 'coordinates': (-79.41673274, 43.67263764)}"
-21806,22224,GO-20179006946,THEFT UNDER - BICYCLE,2017-05-25T00:00:00,2017,May,Thursday,25,145,0,2017-05-25T00:00:00,2017,May,Thursday,25,145,10,D53,Toronto,95,Annex (95),Bar / Restaurant,Commercial,NO,,RG,12,BLU,600.0,STOLEN,21788,"{'type': 'Point', 'coordinates': (-79.39986342, 43.67495124)}"
-21807,19245,GO-20199020561,THEFT UNDER - BICYCLE,2019-06-24T00:00:00,2019,June,Monday,24,175,9,2019-06-30T00:00:00,2019,June,Sunday,30,181,10,D53,Toronto,95,Annex (95),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,ORIGAMI LTD,FO,7,BLK,593.0,STOLEN,21789,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-21808,68,GO-20179001237,THEFT UNDER - BICYCLE,2017-01-26T00:00:00,2017,January,Thursday,26,26,9,2017-01-26T00:00:00,2017,January,Thursday,26,26,21,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,GREEN 1,RG,1,DGR,370.0,STOLEN,21790,"{'type': 'Point', 'coordinates': (-79.40149998, 43.66716143)}"
-21809,71,GO-20179001265,THEFT OF EBIKE UNDER $5000,2017-01-27T00:00:00,2017,January,Friday,27,27,15,2017-01-27T00:00:00,2017,January,Friday,27,27,15,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,EM,MONSTER,EL,35,BLK,2000.0,STOLEN,21791,"{'type': 'Point', 'coordinates': (-79.41673274, 43.67263764)}"
-21810,108,GO-20179002500,THEFT UNDER - BICYCLE,2017-02-26T00:00:00,2017,February,Sunday,26,57,1,2017-02-26T00:00:00,2017,February,Sunday,26,57,12,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,FELT F85X,TO,27,PLE,1299.0,STOLEN,21792,"{'type': 'Point', 'coordinates': (-79.41798479, 43.66927319)}"
-21811,113,GO-20179002541,THEFT UNDER - BICYCLE,2017-02-25T00:00:00,2017,February,Saturday,25,56,12,2017-02-27T00:00:00,2017,February,Monday,27,58,13,D53,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,WOMEN'S BEACH C,OT,1,BLU,180.0,STOLEN,21793,"{'type': 'Point', 'coordinates': (-79.39986342, 43.67495124)}"
-21812,119,GO-2017371146,THEFT OVER,2017-02-24T00:00:00,2017,February,Friday,24,55,8,2017-02-28T00:00:00,2017,February,Tuesday,28,59,17,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,BIANCHI,CRUISER,OT,1,BLKGRN,1000.0,STOLEN,21794,"{'type': 'Point', 'coordinates': (-79.39986342, 43.67495124)}"
-21813,138,GO-20179002901,THEFT UNDER - BICYCLE,2017-03-05T00:00:00,2017,March,Sunday,5,64,9,2017-03-07T00:00:00,2017,March,Tuesday,7,66,12,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,OT,1,GRY,800.0,STOLEN,21795,"{'type': 'Point', 'coordinates': (-79.41823803, 43.66991533)}"
-21814,139,GO-20179002901,THEFT UNDER - BICYCLE,2017-03-05T00:00:00,2017,March,Sunday,5,64,9,2017-03-07T00:00:00,2017,March,Tuesday,7,66,12,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KH,,RG,1,GRY,800.0,STOLEN,21796,"{'type': 'Point', 'coordinates': (-79.41823803, 43.66991533)}"
-21815,140,GO-20179002901,THEFT UNDER - BICYCLE,2017-03-05T00:00:00,2017,March,Sunday,5,64,9,2017-03-07T00:00:00,2017,March,Tuesday,7,66,12,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,,RG,5,BLK,700.0,STOLEN,21797,"{'type': 'Point', 'coordinates': (-79.41823803, 43.66991533)}"
-21816,141,GO-20179002896,B&E,2017-02-25T00:00:00,2017,February,Saturday,25,56,12,2017-03-07T00:00:00,2017,March,Tuesday,7,66,14,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FJ,,RG,10,,1000.0,STOLEN,21798,"{'type': 'Point', 'coordinates': (-79.41295924, 43.66637092)}"
-21817,160,GO-20179003413,THEFT UNDER - BICYCLE,2017-03-17T00:00:00,2017,March,Friday,17,76,20,2017-03-18T00:00:00,2017,March,Saturday,18,77,12,D53,Toronto,95,Annex (95),Bar / Restaurant,Commercial,RM,RC30 PERFORMANC,RG,18,BLK,770.0,STOLEN,21799,"{'type': 'Point', 'coordinates': (-79.40593727, 43.67510835)}"
-21818,164,GO-20179003546,THEFT UNDER,2017-02-24T00:00:00,2017,February,Friday,24,55,10,2017-03-21T00:00:00,2017,March,Tuesday,21,80,10,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,NORCO HEART MED,RG,1,BLK,800.0,STOLEN,21800,"{'type': 'Point', 'coordinates': (-79.41394991, 43.672149090000005)}"
-21819,204,GO-20179004448,THEFT UNDER - BICYCLE,2017-04-06T00:00:00,2017,April,Thursday,6,96,17,2017-04-09T00:00:00,2017,April,Sunday,9,99,10,D53,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MA,CENTFIELD,RG,18,GRY,400.0,STOLEN,21801,"{'type': 'Point', 'coordinates': (-79.39979751, 43.66751644)}"
-21820,258,GO-20179005078,THEFT UNDER,2017-04-21T00:00:00,2017,April,Friday,21,111,18,2017-04-21T00:00:00,2017,April,Friday,21,111,23,D14,Toronto,95,Annex (95),Convenience Stores,Commercial,GI,SEEK 1,RG,27,GRY,500.0,STOLEN,21802,"{'type': 'Point', 'coordinates': (-79.40995373, 43.66538876)}"
-21821,260,GO-2017707230,THEFT UNDER - BICYCLE,2017-04-21T00:00:00,2017,April,Friday,21,111,17,2017-04-22T00:00:00,2017,April,Saturday,22,112,15,D14,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RALEIGH,VINTAGE,BM,3,LBL,400.0,STOLEN,21803,"{'type': 'Point', 'coordinates': (-79.41117403, 43.66511537)}"
-21822,265,GO-20179005117,THEFT UNDER,2017-04-21T00:00:00,2017,April,Friday,21,111,12,2017-04-23T00:00:00,2017,April,Sunday,23,113,13,D14,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,CITY STREET BIK,RG,12,BLK,850.0,STOLEN,21804,"{'type': 'Point', 'coordinates': (-79.40916373, 43.6709545)}"
-21823,336,GO-20179005851,THEFT UNDER - BICYCLE,2017-05-06T00:00:00,2017,May,Saturday,6,126,23,2017-05-07T00:00:00,2017,May,Sunday,7,127,13,D14,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,HEART,RG,1,BLK,625.0,STOLEN,21805,"{'type': 'Point', 'coordinates': (-79.40531586, 43.66635847)}"
-21824,350,GO-20179006027,THEFT UNDER - BICYCLE,2017-05-09T00:00:00,2017,May,Tuesday,9,129,18,2017-05-10T00:00:00,2017,May,Wednesday,10,130,0,D53,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,SPEEDSTER S40,RC,18,RED,800.0,STOLEN,21806,"{'type': 'Point', 'coordinates': (-79.39054537, 43.66944743)}"
-21825,358,GO-20179006081,THEFT UNDER - BICYCLE,2017-05-10T00:00:00,2017,May,Wednesday,10,130,13,2017-05-10T00:00:00,2017,May,Wednesday,10,130,20,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,URBAN PLANET PR,OT,8,BLK,2500.0,STOLEN,21807,"{'type': 'Point', 'coordinates': (-79.39304164, 43.67075303)}"
-21826,376,GO-20179006169,THEFT UNDER - BICYCLE,2017-05-09T00:00:00,2017,May,Tuesday,9,129,0,2017-05-12T00:00:00,2017,May,Friday,12,132,10,D14,Toronto,95,Annex (95),Schools During Un-Supervised Activity,Educational,OT,,RC,10,CRM,800.0,STOLEN,21808,"{'type': 'Point', 'coordinates': (-79.4097913, 43.66864896)}"
-21827,383,GO-20179006260,THEFT UNDER - BICYCLE,2017-05-13T00:00:00,2017,May,Saturday,13,133,10,2017-05-13T00:00:00,2017,May,Saturday,13,133,19,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,RG,21,RED,0.0,STOLEN,21809,"{'type': 'Point', 'coordinates': (-79.40593727, 43.67510835)}"
-21828,411,GO-2017870485,THEFT UNDER - BICYCLE,2017-05-16T00:00:00,2017,May,Tuesday,16,136,19,2017-05-18T00:00:00,2017,May,Thursday,18,138,17,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CANNONDALE,XL,MT,0,WHIBLU,1000.0,STOLEN,21810,"{'type': 'Point', 'coordinates': (-79.39304164, 43.67075303)}"
-21829,413,GO-20179006539,THEFT UNDER - BICYCLE,2017-05-17T00:00:00,2017,May,Wednesday,17,137,7,2017-05-17T00:00:00,2017,May,Wednesday,17,137,20,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,FX2,RG,18,BLK,650.0,STOLEN,21811,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-21830,422,GO-20179006629,THEFT UNDER - BICYCLE,2017-05-16T00:00:00,2017,May,Tuesday,16,136,17,2017-05-19T00:00:00,2017,May,Friday,19,139,11,D53,Toronto,95,Annex (95),Universities / Colleges,Educational,NO,,OT,21,WHI,600.0,STOLEN,21812,"{'type': 'Point', 'coordinates': (-79.39832557, 43.66783119)}"
-21831,429,GO-20179006667,THEFT UNDER - BICYCLE,2017-05-19T00:00:00,2017,May,Friday,19,139,13,2017-05-19T00:00:00,2017,May,Friday,19,139,18,D53,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,ESCAPE W CITY,OT,24,GRY,599.0,STOLEN,21813,"{'type': 'Point', 'coordinates': (-79.3879785, 43.66997438)}"
-21832,435,GO-20179006748,THEFT UNDER - BICYCLE,2017-05-21T00:00:00,2017,May,Sunday,21,141,18,2017-05-21T00:00:00,2017,May,Sunday,21,141,21,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,INDIE4,MT,15,ONG,800.0,STOLEN,21814,"{'type': 'Point', 'coordinates': (-79.40050955, 43.67752908)}"
-21833,442,GO-2017895741,THEFT UNDER - BICYCLE,2017-05-20T00:00:00,2017,May,Saturday,20,140,9,2017-05-21T00:00:00,2017,May,Sunday,21,141,11,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MOUNTAINEQUIP,MIDTOWN,MT,18,SIL,250.0,STOLEN,21815,"{'type': 'Point', 'coordinates': (-79.39787549000002, 43.66923262)}"
-21834,624,GO-20179008124,THEFT UNDER - BICYCLE,2017-06-14T00:00:00,2017,June,Wednesday,14,165,20,2017-06-15T00:00:00,2017,June,Thursday,15,166,9,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,GI,TRANCE II,MT,10,BLK,2750.0,STOLEN,21816,"{'type': 'Point', 'coordinates': (-79.40974314, 43.66849798)}"
-21835,648,GO-20179008350,THEFT UNDER - BICYCLE,2017-06-18T00:00:00,2017,June,Sunday,18,169,17,2017-06-18T00:00:00,2017,June,Sunday,18,169,19,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,INDIE 4,RG,24,BLK,650.0,STOLEN,21817,"{'type': 'Point', 'coordinates': (-79.38754395, 43.67216242)}"
-21836,662,GO-20179008551,THEFT UNDER - BICYCLE,2017-06-19T00:00:00,2017,June,Monday,19,170,21,2017-06-20T00:00:00,2017,June,Tuesday,20,171,16,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,7.5FX,RG,9,WHI,1250.0,STOLEN,21818,"{'type': 'Point', 'coordinates': (-79.39304164, 43.67075303)}"
-21837,704,GO-20171109076,THEFT UNDER - BICYCLE,2017-06-20T00:00:00,2017,June,Tuesday,20,171,19,2017-06-24T00:00:00,2017,June,Saturday,24,175,21,D14,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,DEVINCI,WELLINGTON,OT,21,,800.0,STOLEN,21819,"{'type': 'Point', 'coordinates': (-79.40691292, 43.66996615)}"
-21838,712,GO-20179008853,THEFT UNDER - BICYCLE,2017-06-18T00:00:00,2017,June,Sunday,18,169,14,2017-06-25T00:00:00,2017,June,Sunday,25,176,13,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,MT,21,BLU,0.0,STOLEN,21820,"{'type': 'Point', 'coordinates': (-79.38942023, 43.67292854)}"
-21839,721,GO-20179008965,THEFT UNDER - BICYCLE,2017-06-17T00:00:00,2017,June,Saturday,17,168,17,2017-06-26T00:00:00,2017,June,Monday,26,177,20,D53,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SU,REACTION MEN'S,RG,18,BLU,282.0,STOLEN,21821,"{'type': 'Point', 'coordinates': (-79.39380783, 43.67516312)}"
-21840,738,GO-20179009137,THEFT UNDER - BICYCLE,2017-06-23T00:00:00,2017,June,Friday,23,174,20,2017-06-28T00:00:00,2017,June,Wednesday,28,179,22,D53,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KO,,MT,18,BLU,2000.0,STOLEN,21822,"{'type': 'Point', 'coordinates': (-79.39690172, 43.67555234)}"
-21841,750,GO-20179009181,THEFT UNDER - BICYCLE,2017-06-29T00:00:00,2017,June,Thursday,29,180,1,2017-06-29T00:00:00,2017,June,Thursday,29,180,15,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,FIXED UNO RISER,RG,1,ONG,499.0,STOLEN,21823,"{'type': 'Point', 'coordinates': (-79.41355176, 43.66785376)}"
-21842,751,GO-20179009184,THEFT UNDER,2017-06-29T00:00:00,2017,June,Thursday,29,180,1,2017-06-29T00:00:00,2017,June,Thursday,29,180,15,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SOLOIST,RG,1,BLK,549.0,STOLEN,21824,"{'type': 'Point', 'coordinates': (-79.41355176, 43.66785376)}"
-21843,964,GO-20171323454,THEFT UNDER,2017-07-16T00:00:00,2017,July,Sunday,16,197,12,2017-07-23T00:00:00,2017,July,Sunday,23,204,17,D14,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNK,,OT,10,,500.0,STOLEN,21825,"{'type': 'Point', 'coordinates': (-79.40623518, 43.66616454)}"
-21844,972,GO-20171189163,POSSESSION HOUSE BREAK INSTRUM,2017-07-03T00:00:00,2017,July,Monday,3,184,17,2017-07-03T00:00:00,2017,July,Monday,3,184,17,D53,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GARNEAU,5AXIS,RC,24,BLKONG,,RECOVERED,21826,"{'type': 'Point', 'coordinates': (-79.39304164, 43.67075303)}"
-21845,1032,GO-20171385192,THEFT UNDER - BICYCLE,2017-07-28T00:00:00,2017,July,Friday,28,209,8,2017-08-01T00:00:00,2017,August,Tuesday,1,213,21,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,SEDONA,OT,21,BLK,500.0,STOLEN,21827,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-21846,1052,GO-20171409971,THEFT UNDER - BICYCLE,2017-08-03T00:00:00,2017,August,Thursday,3,215,19,2017-08-05T00:00:00,2017,August,Saturday,5,217,16,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,SKYLINE,MT,24,,,STOLEN,21828,"{'type': 'Point', 'coordinates': (-79.41117403, 43.66511537)}"
-21847,1089,GO-20179011975,THEFT UNDER - BICYCLE,2017-08-08T00:00:00,2017,August,Tuesday,8,220,21,2017-08-09T00:00:00,2017,August,Wednesday,9,221,9,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,1,BLK,250.0,STOLEN,21829,"{'type': 'Point', 'coordinates': (-79.40743417, 43.66591416)}"
-21848,1097,GO-20179012000,THEFT UNDER - BICYCLE,2017-08-07T00:00:00,2017,August,Monday,7,219,15,2017-08-09T00:00:00,2017,August,Wednesday,9,221,12,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,18,DBL,200.0,STOLEN,21830,"{'type': 'Point', 'coordinates': (-79.40473364, 43.66896169)}"
-21849,1113,GO-20179012123,THEFT UNDER - BICYCLE,2017-06-19T00:00:00,2017,June,Monday,19,170,2,2017-08-10T00:00:00,2017,August,Thursday,10,222,16,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,DUTCHI 3,TO,3,CRM,720.0,STOLEN,21831,"{'type': 'Point', 'coordinates': (-79.40743417, 43.66591416)}"
-21850,1124,GO-20179012213,THEFT UNDER - BICYCLE,2017-08-11T00:00:00,2017,August,Friday,11,223,19,2017-08-11T00:00:00,2017,August,Friday,11,223,22,D14,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,OT,24,RED,300.0,STOLEN,21832,"{'type': 'Point', 'coordinates': (-79.40473364, 43.66896169)}"
-21851,1132,GO-20179012263,THEFT UNDER - BICYCLE,2017-08-12T00:00:00,2017,August,Saturday,12,224,4,2017-08-12T00:00:00,2017,August,Saturday,12,224,17,D53,Toronto,95,Annex (95),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,UK,,TO,21,BGE,1800.0,STOLEN,21833,"{'type': 'Point', 'coordinates': (-79.39734175, 43.66803279)}"
-21852,1133,GO-20179012263,THEFT UNDER - BICYCLE,2017-08-12T00:00:00,2017,August,Saturday,12,224,4,2017-08-12T00:00:00,2017,August,Saturday,12,224,17,D53,Toronto,95,Annex (95),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,UK,,TO,21,BGE,1800.0,STOLEN,21834,"{'type': 'Point', 'coordinates': (-79.39734175, 43.66803279)}"
-21853,1183,GO-20179012777,THEFT UNDER - BICYCLE,2017-08-17T00:00:00,2017,August,Thursday,17,229,9,2017-08-18T00:00:00,2017,August,Friday,18,230,21,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,SU,1800,MT,18,,100.0,STOLEN,21835,"{'type': 'Point', 'coordinates': (-79.39380783, 43.67516312)}"
-21854,1224,GO-20179013105,THEFT UNDER - BICYCLE,2017-08-22T00:00:00,2017,August,Tuesday,22,234,17,2017-08-23T00:00:00,2017,August,Wednesday,23,235,9,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,PRO COMP,MT,27,WHI,1500.0,STOLEN,21836,"{'type': 'Point', 'coordinates': (-79.39410211, 43.66871992)}"
-21855,1226,GO-20171532464,B&E,2017-08-21T00:00:00,2017,August,Monday,21,233,22,2017-08-24T00:00:00,2017,August,Thursday,24,236,14,D53,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CERVELO,S3,RC,3,BLK,,STOLEN,21837,"{'type': 'Point', 'coordinates': (-79.39380783, 43.67516312)}"
-21856,1256,GO-20179013468,THEFT UNDER - BICYCLE,2017-08-14T00:00:00,2017,August,Monday,14,226,20,2017-08-27T00:00:00,2017,August,Sunday,27,239,15,D53,Toronto,95,Annex (95),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,KH,,RG,1,GRN,269.0,STOLEN,21838,"{'type': 'Point', 'coordinates': (-79.39003347, 43.67421927)}"
-21857,1293,GO-20171528302,ROBBERY WITH WEAPON,2017-08-23T00:00:00,2017,August,Wednesday,23,235,21,2017-08-23T00:00:00,2017,August,Wednesday,23,235,23,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,,TO,1,,,RECOVERED,21839,"{'type': 'Point', 'coordinates': (-79.41853537, 43.66394772)}"
-21858,1316,GO-20179014030,THEFT UNDER,2017-09-03T00:00:00,2017,September,Sunday,3,246,20,2017-09-05T00:00:00,2017,September,Tuesday,5,248,14,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,CLUBMAN,TO,10,BLU,1200.0,STOLEN,21840,"{'type': 'Point', 'coordinates': (-79.41607423, 43.66406885)}"
-21859,1317,GO-20179014030,THEFT UNDER,2017-09-03T00:00:00,2017,September,Sunday,3,246,20,2017-09-05T00:00:00,2017,September,Tuesday,5,248,14,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MA,E3 CITY SERIES,RG,21,,500.0,STOLEN,21841,"{'type': 'Point', 'coordinates': (-79.41607423, 43.66406885)}"
-21860,1348,GO-20171611079,THEFT UNDER - BICYCLE,2017-09-05T00:00:00,2017,September,Tuesday,5,248,22,2017-09-06T00:00:00,2017,September,Wednesday,6,249,1,D14,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TREK,MARLIN 5,MT,7,GRY,770.0,STOLEN,21842,"{'type': 'Point', 'coordinates': (-79.40587057, 43.66878216)}"
-21861,1377,GO-20179014537,THEFT UNDER - BICYCLE,2017-09-11T00:00:00,2017,September,Monday,11,254,9,2017-09-12T00:00:00,2017,September,Tuesday,12,255,10,D53,Toronto,95,Annex (95),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,NO,YORKVILLE,RG,21,GRY,500.0,STOLEN,21843,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-21862,1463,GO-20179015241,THEFT UNDER - BICYCLE,2017-09-20T00:00:00,2017,September,Wednesday,20,263,2,2017-09-20T00:00:00,2017,September,Wednesday,20,263,10,D14,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KO,DEW PLUS,RG,9,GRY,900.0,STOLEN,21844,"{'type': 'Point', 'coordinates': (-79.40628591, 43.66897569)}"
-21863,1524,GO-20179015763,THEFT UNDER - BICYCLE,2017-09-22T00:00:00,2017,September,Friday,22,265,18,2017-09-25T00:00:00,2017,September,Monday,25,268,18,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,VFR5,RG,24,BLK,730.0,STOLEN,21845,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-21864,1546,GO-20179016011,THEFT UNDER - BICYCLE,2017-09-28T00:00:00,2017,September,Thursday,28,271,10,2017-09-28T00:00:00,2017,September,Thursday,28,271,12,D53,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,MT,24,BLU,0.0,STOLEN,21846,"{'type': 'Point', 'coordinates': (-79.40050794, 43.67637283)}"
-21865,1569,GO-20179016283,THEFT UNDER - BICYCLE,2017-10-01T00:00:00,2017,October,Sunday,1,274,0,2017-10-02T00:00:00,2017,October,Monday,2,275,15,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,8,RED,200.0,STOLEN,21847,"{'type': 'Point', 'coordinates': (-79.40526597, 43.67030834)}"
-21866,1570,GO-20179016305,THEFT UNDER - BICYCLE,2017-10-02T00:00:00,2017,October,Monday,2,275,10,2017-10-02T00:00:00,2017,October,Monday,2,275,18,D53,Toronto,95,Annex (95),Universities / Colleges,Educational,KH,URBAN SOUL,RG,1,BLK,400.0,STOLEN,21848,"{'type': 'Point', 'coordinates': (-79.39832557, 43.66783119)}"
-21867,1571,GO-20179016281,THEFT UNDER - BICYCLE,2017-10-01T00:00:00,2017,October,Sunday,1,274,0,2017-10-02T00:00:00,2017,October,Monday,2,275,13,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,CA,F900SX,MT,27,BLK,1500.0,STOLEN,21849,"{'type': 'Point', 'coordinates': (-79.40526597, 43.67030834)}"
-21868,1596,GO-20179016574,THEFT UNDER - BICYCLE,2017-10-05T00:00:00,2017,October,Thursday,5,278,23,2017-10-06T00:00:00,2017,October,Friday,6,279,9,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,5,BRN,1000.0,STOLEN,21850,"{'type': 'Point', 'coordinates': (-79.40473364, 43.66896169)}"
-21869,1614,GO-20179016725,THEFT UNDER - BICYCLE,2017-08-23T00:00:00,2017,August,Wednesday,23,235,11,2017-10-08T00:00:00,2017,October,Sunday,8,281,11,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM,MT,21,BLK,800.0,STOLEN,21851,"{'type': 'Point', 'coordinates': (-79.40474908, 43.67535737)}"
-21870,1624,GO-20179016837,THEFT UNDER - BICYCLE,2017-10-08T00:00:00,2017,October,Sunday,8,281,18,2017-10-10T00:00:00,2017,October,Tuesday,10,283,13,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,MARK IV,RG,8,ONG,650.0,STOLEN,21852,"{'type': 'Point', 'coordinates': (-79.41875158, 43.66444289)}"
-21871,1628,GO-20179016912,THEFT UNDER - BICYCLE,2017-10-10T00:00:00,2017,October,Tuesday,10,283,9,2017-10-11T00:00:00,2017,October,Wednesday,11,284,1,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,GF,,MT,10,ONG,300.0,STOLEN,21853,"{'type': 'Point', 'coordinates': (-79.40238049, 43.66945912)}"
-21872,1631,GO-20179016864,THEFT UNDER,2017-10-08T00:00:00,2017,October,Sunday,8,281,21,2017-10-10T00:00:00,2017,October,Tuesday,10,283,13,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,VITA SPORT,RG,9,BLK,900.0,STOLEN,21854,"{'type': 'Point', 'coordinates': (-79.41875158, 43.66444289)}"
-21873,1693,GO-20179017621,THEFT UNDER - BICYCLE,2017-10-18T00:00:00,2017,October,Wednesday,18,291,14,2017-10-19T00:00:00,2017,October,Thursday,19,292,14,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,DON'T REMEMBER,OT,8,SIL,1200.0,STOLEN,21855,"{'type': 'Point', 'coordinates': (-79.41322961, 43.67031869)}"
-21874,1698,GO-20179017654,THEFT UNDER - BICYCLE,2017-10-18T00:00:00,2017,October,Wednesday,18,291,21,2017-10-19T00:00:00,2017,October,Thursday,19,292,22,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,BOLT,RG,18,BLK,700.0,STOLEN,21856,"{'type': 'Point', 'coordinates': (-79.41413497, 43.66934581)}"
-21875,22228,GO-20179007974,THEFT UNDER - BICYCLE,2017-06-11T00:00:00,2017,June,Sunday,11,162,23,2017-06-13T00:00:00,2017,June,Tuesday,13,164,0,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,24,BLU,0.0,STOLEN,21857,"{'type': 'Point', 'coordinates': (-79.40474908, 43.67535737)}"
-21876,19248,GO-20199021168,THEFT UNDER - BICYCLE,2019-07-04T00:00:00,2019,July,Thursday,4,185,20,2019-07-05T00:00:00,2019,July,Friday,5,186,21,D53,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,FX 2 20,RG,21,BLK,800.0,STOLEN,21858,"{'type': 'Point', 'coordinates': (-79.40210106, 43.67299255)}"
-21877,22241,GO-20179011051,THEFT UNDER - BICYCLE,2017-07-23T00:00:00,2017,July,Sunday,23,204,16,2017-07-26T00:00:00,2017,July,Wednesday,26,207,11,D53,Toronto,95,Annex (95),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,,RG,10,BLK,350.0,STOLEN,21859,"{'type': 'Point', 'coordinates': (-79.39734175, 43.66803279)}"
-21878,19256,GO-20199024013,THEFT UNDER - BICYCLE,2019-07-26T00:00:00,2019,July,Friday,26,207,8,2019-07-27T00:00:00,2019,July,Saturday,27,208,13,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,X ZONE 260 MEN,RG,14,BLK,400.0,STOLEN,21860,"{'type': 'Point', 'coordinates': (-79.39832557, 43.66783119)}"
-21879,22250,GO-20179013486,THEFT UNDER - BICYCLE,2017-08-27T00:00:00,2017,August,Sunday,27,239,20,2017-08-27T00:00:00,2017,August,Sunday,27,239,21,D53,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,,RC,12,YEL,1500.0,STOLEN,21861,"{'type': 'Point', 'coordinates': (-79.39054537, 43.66944743)}"
-21880,19258,GO-20199024263,THEFT UNDER - BICYCLE,2019-07-28T00:00:00,2019,July,Sunday,28,209,20,2019-07-29T00:00:00,2019,July,Monday,29,210,16,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,TR,HYBRID,RG,21,GRY,1500.0,STOLEN,21862,"{'type': 'Point', 'coordinates': (-79.40019243, 43.67573014)}"
-21881,22256,GO-20179014670,THEFT UNDER - BICYCLE,2017-09-11T00:00:00,2017,September,Monday,11,254,15,2017-09-13T00:00:00,2017,September,Wednesday,13,256,16,D53,Toronto,95,Annex (95),Ttc Subway Station,Transit,UK,ITALIA,RG,8,GRN,450.0,STOLEN,21863,"{'type': 'Point', 'coordinates': (-79.39734175, 43.66803279)}"
-21882,19263,GO-20191500257,THEFT OF EBIKE UNDER $5000,2019-08-05T00:00:00,2019,August,Monday,5,217,5,2019-08-08T00:00:00,2019,August,Thursday,8,220,17,D53,Toronto,95,Annex (95),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,?,,EL,0,RED,1500.0,STOLEN,21864,"{'type': 'Point', 'coordinates': (-79.39734175, 43.66803279)}"
-21883,22264,GO-20171874270,B&E,2017-10-15T00:00:00,2017,October,Sunday,15,288,3,2017-10-18T00:00:00,2017,October,Wednesday,18,291,11,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,K2,OT,1,,,STOLEN,21865,"{'type': 'Point', 'coordinates': (-79.39380783, 43.67516312)}"
-21884,19267,GO-20199026653,THEFT UNDER,2019-08-17T00:00:00,2019,August,Saturday,17,229,15,2019-08-17T00:00:00,2019,August,Saturday,17,229,19,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,MODEL # IGH N8,TO,7,BLK,1400.0,STOLEN,21866,"{'type': 'Point', 'coordinates': (-79.38946773, 43.66966903)}"
-21885,22283,GO-20189011443,THEFT UNDER - BICYCLE,2018-04-12T00:00:00,2018,April,Thursday,12,102,18,2018-04-12T00:00:00,2018,April,Thursday,12,102,20,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,HOLD STEADY,RG,8,,1350.0,STOLEN,21867,"{'type': 'Point', 'coordinates': (-79.39049843, 43.67524769)}"
-21886,19268,GO-20199026842,THEFT UNDER,2019-08-16T00:00:00,2019,August,Friday,16,228,8,2019-08-19T00:00:00,2019,August,Monday,19,231,17,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,21,BLU,95.0,STOLEN,21868,"{'type': 'Point', 'coordinates': (-79.40323153, 43.67473268)}"
-21887,22285,GO-20189013105,THEFT UNDER - BICYCLE,2018-04-13T00:00:00,2018,April,Friday,13,103,15,2018-04-27T00:00:00,2018,April,Friday,27,117,15,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,FJ,ABSOLUTE 2.1,OT,8,BLK,520.0,STOLEN,21869,"{'type': 'Point', 'coordinates': (-79.39787549000002, 43.66923262)}"
-21888,19287,GO-20199029646,THEFT UNDER - BICYCLE,2019-09-08T00:00:00,2019,September,Sunday,8,251,8,2019-09-11T00:00:00,2019,September,Wednesday,11,254,18,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,S-WORKS,RG,10,BLK,3000.0,STOLEN,21870,"{'type': 'Point', 'coordinates': (-79.39410064, 43.67738561)}"
-21889,22291,GO-20189015992,THEFT UNDER - BICYCLE,2018-05-23T00:00:00,2018,May,Wednesday,23,143,19,2018-05-23T00:00:00,2018,May,Wednesday,23,143,20,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,THE CHARLIE,RG,1,RED,585.0,STOLEN,21871,"{'type': 'Point', 'coordinates': (-79.3879785, 43.66997438)}"
-21890,19289,GO-20199030019,THEFT UNDER - BICYCLE,2019-09-10T00:00:00,2019,September,Tuesday,10,253,16,2019-09-14T00:00:00,2019,September,Saturday,14,257,16,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,CC,ORION,OT,21,BLU,200.0,STOLEN,21872,"{'type': 'Point', 'coordinates': (-79.40210106, 43.67299255)}"
-21891,22305,GO-20189021489,THEFT UNDER - BICYCLE,2018-05-04T00:00:00,2018,May,Friday,4,124,12,2018-07-06T00:00:00,2018,July,Friday,6,187,19,D53,Toronto,95,Annex (95),Universities / Colleges,Educational,SC,SCHWINN,RG,21,RED,500.0,STOLEN,21874,"{'type': 'Point', 'coordinates': (-79.39832557, 43.66783119)}"
-21892,22321,GO-20189027222,THEFT UNDER - BICYCLE,2018-08-09T00:00:00,2018,August,Thursday,9,221,18,2018-08-20T00:00:00,2018,August,Monday,20,232,21,D53,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,BOLT,RG,21,BLK,500.0,STOLEN,21875,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-21893,22335,GO-20189030659,THEFT UNDER - BICYCLE,2018-09-15T00:00:00,2018,September,Saturday,15,258,12,2018-09-16T00:00:00,2018,September,Sunday,16,259,11,D53,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,CITIBIKE,RG,3,BLK,1350.0,STOLEN,21876,"{'type': 'Point', 'coordinates': (-79.39478159, 43.67038539)}"
-21894,22367,GO-20199010225,THEFT UNDER - BICYCLE,2019-03-27T00:00:00,2019,March,Wednesday,27,86,22,2019-03-31T00:00:00,2019,March,Sunday,31,90,17,D53,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,FO,10,,0.0,STOLEN,21877,"{'type': 'Point', 'coordinates': (-79.38746342000002, 43.6719238)}"
-21895,22405,GO-20199027687,THEFT UNDER,2019-08-24T00:00:00,2019,August,Saturday,24,236,0,2019-08-26T00:00:00,2019,August,Monday,26,238,11,D53,Toronto,95,Annex (95),Bar / Restaurant,Commercial,TR,FX 7.3,RG,9,BLK,1000.0,STOLEN,21878,"{'type': 'Point', 'coordinates': (-79.40356059, 43.67559443)}"
-21896,22407,GO-20199028391,THEFT UNDER - BICYCLE,2019-08-26T00:00:00,2019,August,Monday,26,238,1,2019-08-31T00:00:00,2019,August,Saturday,31,243,21,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,24,SIL,4125.0,STOLEN,21879,"{'type': 'Point', 'coordinates': (-79.38942023, 43.67292854)}"
-21897,22408,GO-20199028660,THEFT UNDER - BICYCLE,2019-09-03T00:00:00,2019,September,Tuesday,3,246,17,2019-09-03T00:00:00,2019,September,Tuesday,3,246,20,D53,Toronto,95,Annex (95),Universities / Colleges,Educational,RA,MATTERHORN,RG,25,BLK,225.0,STOLEN,21880,"{'type': 'Point', 'coordinates': (-79.39003347, 43.67421927)}"
-21898,22414,GO-20191752847,THEFT UNDER - BICYCLE,2019-09-12T00:00:00,2019,September,Thursday,12,255,17,2019-09-12T00:00:00,2019,September,Thursday,12,255,18,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,OT,5,WHI,1700.0,STOLEN,21881,"{'type': 'Point', 'coordinates': (-79.39478159, 43.67038539)}"
-21899,22418,GO-20191787331,B&E,2019-09-17T00:00:00,2019,September,Tuesday,17,260,3,2019-09-17T00:00:00,2019,September,Tuesday,17,260,12,D53,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,ROCKY MOUNTAIN,WHISTLER,MT,12,WHIBLK,1500.0,STOLEN,21882,"{'type': 'Point', 'coordinates': (-79.39049843, 43.67524769)}"
-21900,22429,GO-20192178906,B&E,2019-11-06T00:00:00,2019,November,Wednesday,6,310,0,2019-11-11T00:00:00,2019,November,Monday,11,315,13,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,ZZZ,,RC,21,BLU,100.0,STOLEN,21883,"{'type': 'Point', 'coordinates': (-79.39380783, 43.67516312)}"
-21901,22431,GO-20192217394,THEFT UNDER - BICYCLE,2019-11-16T00:00:00,2019,November,Saturday,16,320,20,2019-11-16T00:00:00,2019,November,Saturday,16,320,20,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,AGGREFFOR SATIN,MT,24,GRN,800.0,STOLEN,21884,"{'type': 'Point', 'coordinates': (-79.39734175, 43.66803279)}"
-21902,22432,GO-20192331019,THEFT UNDER - BICYCLE,2019-11-06T00:00:00,2019,November,Wednesday,6,310,0,2019-12-03T00:00:00,2019,December,Tuesday,3,337,12,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,BMC,SLR 01,OT,11,WHI,15000.0,STOLEN,21885,"{'type': 'Point', 'coordinates': (-79.39690172, 43.67555234)}"
-21903,22440,GO-20209006909,THEFT UNDER - BICYCLE,2020-02-16T00:00:00,2020,February,Sunday,16,47,0,2020-02-25T00:00:00,2020,February,Tuesday,25,56,20,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,CROSS CHECK,TO,18,BLK,2000.0,STOLEN,21886,"{'type': 'Point', 'coordinates': (-79.4007248, 43.66981528)}"
-21904,22444,GO-20209008321,B&E,2020-03-04T00:00:00,2020,March,Wednesday,4,64,5,2020-03-09T00:00:00,2020,March,Monday,9,69,16,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,1,BLK,2000.0,STOLEN,21887,"{'type': 'Point', 'coordinates': (-79.39690172, 43.67555234)}"
-21905,22445,GO-20209008925,THEFT UNDER - BICYCLE,2020-01-15T00:00:00,2020,January,Wednesday,15,15,13,2020-03-14T00:00:00,2020,March,Saturday,14,74,13,D53,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KO,DEW PLUS,RG,27,GRY,1130.0,STOLEN,21888,"{'type': 'Point', 'coordinates': (-79.4007248, 43.66981528)}"
-21906,22452,GO-20209010818,THEFT UNDER - BICYCLE,2019-11-09T00:00:00,2019,November,Saturday,9,313,21,2020-04-09T00:00:00,2020,April,Thursday,9,100,21,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,TREK,FX 7.4 F,MT,10,OTH,1200.0,STOLEN,21889,"{'type': 'Point', 'coordinates': (-79.39787549000002, 43.66923262)}"
-21907,22454,GO-20209011229,THEFT UNDER - BICYCLE,2020-03-30T00:00:00,2020,March,Monday,30,90,19,2020-04-15T00:00:00,2020,April,Wednesday,15,106,19,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,GI,,TO,10,BLU,700.0,STOLEN,21890,"{'type': 'Point', 'coordinates': (-79.40210106, 43.67299255)}"
-21908,22457,GO-20209011716,THEFT UNDER - BICYCLE,2020-04-21T00:00:00,2020,April,Tuesday,21,112,1,2020-04-22T00:00:00,2020,April,Wednesday,22,113,14,D53,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RC,40,RED,0.0,STOLEN,21891,"{'type': 'Point', 'coordinates': (-79.39410211, 43.66871992)}"
-21909,22463,GO-20209012660,THEFT UNDER - BICYCLE,2020-05-07T00:00:00,2020,May,Thursday,7,128,16,2020-05-07T00:00:00,2020,May,Thursday,7,128,17,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,ST1 CLASS3,EL,12,BLK,3199.0,STOLEN,21892,"{'type': 'Point', 'coordinates': (-79.40019243, 43.67573014)}"
-21910,22470,GO-20209014342,THEFT UNDER - BICYCLE,2020-03-16T00:00:00,2020,March,Monday,16,76,21,2020-06-01T00:00:00,2020,June,Monday,1,153,13,D53,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,INDIE 3,TO,24,BLU,723.0,STOLEN,21893,"{'type': 'Point', 'coordinates': (-79.4007248, 43.66981528)}"
-21911,22487,GO-20201178933,THEFT OF EBIKE UNDER $5000,2020-06-26T00:00:00,2020,June,Friday,26,178,13,2020-06-26T00:00:00,2020,June,Friday,26,178,18,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TECH TEAM,ENGLISH,EL,1,BLK,1100.0,STOLEN,21894,"{'type': 'Point', 'coordinates': (-79.39098691, 43.66935825)}"
-21912,22499,GO-20201279923,THEFT UNDER - BICYCLE,2020-07-06T00:00:00,2020,July,Monday,6,188,13,2020-07-10T00:00:00,2020,July,Friday,10,192,18,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,EWIDE MINI 2,EL,1,BLK,2000.0,STOLEN,21895,"{'type': 'Point', 'coordinates': (-79.40266823, 43.66690503)}"
-21913,22502,GO-20209017421,THEFT UNDER - BICYCLE,2020-07-12T00:00:00,2020,July,Sunday,12,194,18,2020-07-13T00:00:00,2020,July,Monday,13,195,9,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CHINOOK,RG,2,BLK,650.0,STOLEN,21896,"{'type': 'Point', 'coordinates': (-79.39410211, 43.66871992)}"
-21914,22508,GO-20201369210,B&E W'INTENT,2020-07-23T00:00:00,2020,July,Thursday,23,205,0,2020-07-23T00:00:00,2020,July,Thursday,23,205,11,D53,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SUPER CYCLE,UNKN,RG,1,PNK,50.0,STOLEN,21897,"{'type': 'Point', 'coordinates': (-79.403659, 43.67266985)}"
-21915,22509,GO-20201369210,B&E W'INTENT,2020-07-23T00:00:00,2020,July,Thursday,23,205,0,2020-07-23T00:00:00,2020,July,Thursday,23,205,11,D53,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SUPERCYCLE,UNKN,RG,1,BLU,50.0,STOLEN,21898,"{'type': 'Point', 'coordinates': (-79.403659, 43.67266985)}"
-21916,22520,GO-20209019192,THEFT UNDER - BICYCLE,2020-07-31T00:00:00,2020,July,Friday,31,213,3,2020-08-03T00:00:00,2020,August,Monday,3,216,11,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,CROSSTRAIL DISC,MT,21,BLK,800.0,STOLEN,21899,"{'type': 'Point', 'coordinates': (-79.40210106, 43.67299255)}"
-21917,22558,GO-20209023091,THEFT UNDER - BICYCLE,2020-09-10T00:00:00,2020,September,Thursday,10,254,18,2020-09-12T00:00:00,2020,September,Saturday,12,256,20,D53,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MO,,MT,20,RED,300.0,STOLEN,21900,"{'type': 'Point', 'coordinates': (-79.38946773, 43.66966903)}"
-21918,22568,GO-20209024361,THEFT UNDER - BICYCLE,2020-09-11T00:00:00,2020,September,Friday,11,255,16,2020-09-24T00:00:00,2020,September,Thursday,24,268,14,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,DOWNTOWN,OT,8,WHI,400.0,STOLEN,21901,"{'type': 'Point', 'coordinates': (-79.40050794, 43.67637283)}"
-21919,22583,GO-20202049760,THEFT UNDER - BICYCLE,2020-10-28T00:00:00,2020,October,Wednesday,28,302,22,2020-10-29T00:00:00,2020,October,Thursday,29,303,2,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,,OT,1,SIL,100.0,STOLEN,21902,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-21920,22594,GO-20209030199,THEFT UNDER,2020-11-21T00:00:00,2020,November,Saturday,21,326,13,2020-11-21T00:00:00,2020,November,Saturday,21,326,15,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,RG,10,CPR,500.0,STOLEN,21903,"{'type': 'Point', 'coordinates': (-79.39054537, 43.66944743)}"
-21921,22850,GO-20149004659,THEFT UNDER,2014-06-29T00:00:00,2014,June,Sunday,29,180,21,2014-07-03T00:00:00,2014,July,Thursday,3,184,10,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,RG,21,BLK,565.0,STOLEN,21904,"{'type': 'Point', 'coordinates': (-79.40028097000001, 43.66874114)}"
-21922,22856,GO-20142539170,THEFT UNDER,2014-07-16T00:00:00,2014,July,Wednesday,16,197,18,2014-07-21T00:00:00,2014,July,Monday,21,202,5,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,ZR4000,RC,10,GRN,400.0,STOLEN,21905,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-21923,22857,GO-20142564926,THEFT UNDER,2014-07-24T00:00:00,2014,July,Thursday,24,205,19,2014-07-24T00:00:00,2014,July,Thursday,24,205,19,D53,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SCHWINN,SANCTURY7,RG,0,WHIPNK,,STOLEN,21906,"{'type': 'Point', 'coordinates': (-79.39734175, 43.66803279)}"
-21924,22882,GO-20149007790,THEFT UNDER,2014-10-01T00:00:00,2014,October,Wednesday,1,274,8,2014-10-24T00:00:00,2014,October,Friday,24,297,9,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,EM,S6,EL,1,BLK,1668.0,STOLEN,21907,"{'type': 'Point', 'coordinates': (-79.40149998, 43.66716143)}"
-21925,22886,GO-20159000009,THEFT UNDER,2014-08-13T00:00:00,2014,August,Wednesday,13,225,18,2015-01-01T00:00:00,2015,January,Thursday,1,1,18,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,TR,ALPHA 4500,MT,12,RED,350.0,STOLEN,21908,"{'type': 'Point', 'coordinates': (-79.38883215, 43.67530065)}"
-21926,22893,GO-20159001987,THEFT UNDER,2015-04-16T00:00:00,2015,April,Thursday,16,106,18,2015-04-17T00:00:00,2015,April,Friday,17,107,9,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,RG,24,GRY,500.0,STOLEN,21909,"{'type': 'Point', 'coordinates': (-79.38980433, 43.67056247)}"
-21927,22896,GO-20159002262,THEFT UNDER,2015-04-19T00:00:00,2015,April,Sunday,19,109,19,2015-04-26T00:00:00,2015,April,Sunday,26,116,10,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,NOVA,RG,21,BLK,1400.0,STOLEN,21910,"{'type': 'Point', 'coordinates': (-79.40210106, 43.67299255)}"
-21928,22902,GO-2015853076,THEFT UNDER,2015-05-21T00:00:00,2015,May,Thursday,21,141,18,2015-05-22T00:00:00,2015,May,Friday,22,142,12,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DIAMONDBACK,MANOUVER,MT,21,BLKGRY,600.0,STOLEN,21911,"{'type': 'Point', 'coordinates': (-79.39000152000001, 43.67820922)}"
-21929,22906,GO-2015998181,THEFT UNDER,2015-06-14T00:00:00,2015,June,Sunday,14,165,0,2015-06-14T00:00:00,2015,June,Sunday,14,165,13,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,GIANT,,OT,0,,,STOLEN,21912,"{'type': 'Point', 'coordinates': (-79.40238049, 43.66945912)}"
-21930,22918,GO-20159005812,THEFT UNDER,2015-08-13T00:00:00,2015,August,Thursday,13,225,6,2015-08-16T00:00:00,2015,August,Sunday,16,228,18,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,CA,E400,MT,24,BLK,275.0,STOLEN,21913,"{'type': 'Point', 'coordinates': (-79.4007248, 43.66981528)}"
-21931,22919,GO-20159005812,THEFT UNDER,2015-08-13T00:00:00,2015,August,Thursday,13,225,6,2015-08-16T00:00:00,2015,August,Sunday,16,228,18,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,CA,M300,MT,24,YEL,150.0,STOLEN,21914,"{'type': 'Point', 'coordinates': (-79.4007248, 43.66981528)}"
-21932,22924,GO-20159006485,THEFT UNDER,2015-08-28T00:00:00,2015,August,Friday,28,240,21,2015-08-29T00:00:00,2015,August,Saturday,29,241,11,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,VFR,OT,27,GRY,880.0,STOLEN,21915,"{'type': 'Point', 'coordinates': (-79.400994, 43.67322273)}"
-21933,22949,GO-20159010759,THEFT UNDER,2015-12-09T00:00:00,2015,December,Wednesday,9,343,9,2015-12-10T00:00:00,2015,December,Thursday,10,344,13,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,REMUS,RG,1,TRQ,800.0,STOLEN,21916,"{'type': 'Point', 'coordinates': (-79.39288364, 43.67470949)}"
-21934,22950,GO-20159010787,THEFT UNDER,2015-12-11T00:00:00,2015,December,Friday,11,345,8,2015-12-11T00:00:00,2015,December,Friday,11,345,8,D53,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EM,EBIKE,EL,40,BLK,2000.0,STOLEN,21917,"{'type': 'Point', 'coordinates': (-79.40050794, 43.67637283)}"
-21935,22973,GO-20169004925,THEFT UNDER - BICYCLE,2016-05-19T00:00:00,2016,May,Thursday,19,140,19,2016-05-24T00:00:00,2016,May,Tuesday,24,145,19,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,21,,750.0,STOLEN,21918,"{'type': 'Point', 'coordinates': (-79.40238049, 43.66945912)}"
-21936,22984,GO-20169007493,THEFT UNDER - BICYCLE,2016-06-13T00:00:00,2016,June,Monday,13,165,9,2016-07-20T00:00:00,2016,July,Wednesday,20,202,21,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BI,,TO,10,RED,1500.0,STOLEN,21919,"{'type': 'Point', 'coordinates': (-79.39758694, 43.67720231)}"
-21937,22991,GO-20169008678,THEFT UNDER - BICYCLE,2016-08-12T00:00:00,2016,August,Friday,12,225,19,2016-08-13T00:00:00,2016,August,Saturday,13,226,12,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,3,TRQ,0.0,STOLEN,21920,"{'type': 'Point', 'coordinates': (-79.39124334, 43.67113341000001)}"
-21938,22996,GO-20169009085,THEFT UNDER - BICYCLE,2016-08-15T00:00:00,2016,August,Monday,15,228,23,2016-08-19T00:00:00,2016,August,Friday,19,232,21,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,TR,1,BLU,0.0,STOLEN,21921,"{'type': 'Point', 'coordinates': (-79.39288364, 43.67470949)}"
-21939,23805,GO-20209017324,THEFT UNDER,2020-07-09T00:00:00,2020,July,Thursday,9,191,15,2020-07-11T00:00:00,2020,July,Saturday,11,193,15,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,QX65,RG,21,BLK,500.0,STOLEN,21922,"{'type': 'Point', 'coordinates': (-79.40600258, 43.67218781)}"
-21940,23825,GO-20209021181,THEFT UNDER,2020-08-19T00:00:00,2020,August,Wednesday,19,232,11,2020-08-24T00:00:00,2020,August,Monday,24,237,16,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,TR,1200 - SL,RC,9,SIL,500.0,STOLEN,21923,"{'type': 'Point', 'coordinates': (-79.40587057, 43.66878216)}"
-21941,23850,GO-20209025914,THEFT UNDER,2020-10-08T00:00:00,2020,October,Thursday,8,282,13,2020-10-09T00:00:00,2020,October,Friday,9,283,13,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,,MT,10,BLK,500.0,STOLEN,21924,"{'type': 'Point', 'coordinates': (-79.41047653, 43.67397307)}"
-21942,23867,GO-20209033193,THEFT UNDER,2020-12-01T00:00:00,2020,December,Tuesday,1,336,16,2020-12-31T00:00:00,2020,December,Thursday,31,366,16,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,GLOBE,MT,21,BLK,500.0,STOLEN,21925,"{'type': 'Point', 'coordinates': (-79.40526597, 43.67030834)}"
-21943,23995,GO-20189035490,THEFT UNDER - BICYCLE,2018-10-24T00:00:00,2018,October,Wednesday,24,297,4,2018-10-25T00:00:00,2018,October,Thursday,25,298,11,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,GI,LIV BELIV F-XS,RG,9,YEL,700.0,STOLEN,21926,"{'type': 'Point', 'coordinates': (-79.41653423, 43.66882038)}"
-21944,24018,GO-2019222080,THEFT OF EBIKE UNDER $5000,2019-01-08T00:00:00,2019,January,Tuesday,8,8,20,2019-02-04T00:00:00,2019,February,Monday,4,35,15,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FELT,E SPORT,EL,1,GRNRED,4500.0,STOLEN,21927,"{'type': 'Point', 'coordinates': (-79.41481904, 43.66434022)}"
-21945,24043,GO-20199016583,THEFT UNDER - BICYCLE,2019-05-27T00:00:00,2019,May,Monday,27,147,2,2019-05-28T00:00:00,2019,May,Tuesday,28,148,11,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,MASI CX,TO,27,WHI,1200.0,STOLEN,21928,"{'type': 'Point', 'coordinates': (-79.40944561, 43.67172945)}"
-21946,24057,GO-20199020670,THEFT UNDER,2019-06-22T00:00:00,2019,June,Saturday,22,173,12,2019-07-01T00:00:00,2019,July,Monday,1,182,17,D14,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,ROAM 2,OT,27,GRY,700.0,STOLEN,21929,"{'type': 'Point', 'coordinates': (-79.40623518, 43.66616454)}"
-21947,24059,GO-20199020860,THEFT UNDER,2019-07-02T00:00:00,2019,July,Tuesday,2,183,22,2019-07-03T00:00:00,2019,July,Wednesday,3,184,14,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,YORKVILLE,RG,6,BLU,600.0,STOLEN,21930,"{'type': 'Point', 'coordinates': (-79.41653423, 43.66882038)}"
-21948,24090,GO-20199027316,THEFT UNDER - BICYCLE,2019-08-22T00:00:00,2019,August,Thursday,22,234,9,2019-08-22T00:00:00,2019,August,Thursday,22,234,16,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,18,BLK,600.0,STOLEN,21931,"{'type': 'Point', 'coordinates': (-79.40623518, 43.66616454)}"
-21949,24105,GO-20199031556,THEFT UNDER - BICYCLE,2019-09-25T00:00:00,2019,September,Wednesday,25,268,17,2019-09-25T00:00:00,2019,September,Wednesday,25,268,22,D14,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,NOVARA,MT,1,BLK,400.0,STOLEN,21932,"{'type': 'Point', 'coordinates': (-79.42030175, 43.67185242)}"
-21950,24106,GO-20191860555,THEFT FROM MOTOR VEHICLE OVER,2019-09-26T00:00:00,2019,September,Thursday,26,269,20,2019-09-27T00:00:00,2019,September,Friday,27,270,8,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,0,,10000.0,STOLEN,21933,"{'type': 'Point', 'coordinates': (-79.41394991, 43.672149090000005)}"
-21951,24123,GO-20199036864,THEFT UNDER - BICYCLE,2019-11-08T00:00:00,2019,November,Friday,8,312,20,2019-11-08T00:00:00,2019,November,Friday,8,312,20,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,DEW PLUS,RG,9,BLK,500.0,STOLEN,21934,"{'type': 'Point', 'coordinates': (-79.40643932, 43.67007475)}"
-21952,24138,GO-20199039724,THEFT UNDER,2019-12-03T00:00:00,2019,December,Tuesday,3,337,10,2019-12-04T00:00:00,2019,December,Wednesday,4,338,10,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RC,24,RED,3000.0,STOLEN,21935,"{'type': 'Point', 'coordinates': (-79.40930544, 43.6742621)}"
-21953,24141,GO-20209000482,THEFT UNDER,2020-01-01T00:00:00,2020,January,Wednesday,1,1,6,2020-01-05T00:00:00,2020,January,Sunday,5,5,21,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,UK,HYBRID,OT,27,BLK,2300.0,STOLEN,21936,"{'type': 'Point', 'coordinates': (-79.40526597, 43.67030834)}"
-21954,19300,GO-20199032138,THEFT UNDER - BICYCLE,2019-09-21T00:00:00,2019,September,Saturday,21,264,15,2019-09-30T00:00:00,2019,September,Monday,30,273,21,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,TO,21,DGR,600.0,STOLEN,21937,"{'type': 'Point', 'coordinates': (-79.38946773, 43.66966903)}"
-21955,19306,GO-20199032743,THEFT UNDER,2019-10-04T00:00:00,2019,October,Friday,4,277,19,2019-10-05T00:00:00,2019,October,Saturday,5,278,20,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,MT,21,GRY,360.0,STOLEN,21938,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-21956,19326,GO-20209000603,THEFT UNDER - BICYCLE,2020-01-06T00:00:00,2020,January,Monday,6,6,11,2020-01-06T00:00:00,2020,January,Monday,6,6,19,D53,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,DB,,MT,9,BLK,0.0,STOLEN,21939,"{'type': 'Point', 'coordinates': (-79.40210106, 43.67299255)}"
-21957,19336,GO-2020368114,THEFT UNDER - BICYCLE,2020-02-18T00:00:00,2020,February,Tuesday,18,49,10,2020-02-21T00:00:00,2020,February,Friday,21,52,9,D53,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,TO,15,GLD,900.0,STOLEN,21940,"{'type': 'Point', 'coordinates': (-79.4007248, 43.66981528)}"
-21958,19344,GO-20209009681,THEFT UNDER - BICYCLE,2020-03-21T00:00:00,2020,March,Saturday,21,81,11,2020-03-24T00:00:00,2020,March,Tuesday,24,84,0,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RM,,MT,27,BLK,1500.0,STOLEN,21941,"{'type': 'Point', 'coordinates': (-79.403659, 43.67266985)}"
-21959,19345,GO-20209009681,THEFT UNDER - BICYCLE,2020-03-21T00:00:00,2020,March,Saturday,21,81,11,2020-03-24T00:00:00,2020,March,Tuesday,24,84,0,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,,TO,27,BLK,1500.0,STOLEN,21942,"{'type': 'Point', 'coordinates': (-79.403659, 43.67266985)}"
-21960,19346,GO-20209009681,THEFT UNDER - BICYCLE,2020-03-21T00:00:00,2020,March,Saturday,21,81,11,2020-03-24T00:00:00,2020,March,Tuesday,24,84,0,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,,OT,3,WHI,1500.0,STOLEN,21943,"{'type': 'Point', 'coordinates': (-79.403659, 43.67266985)}"
-21961,19357,GO-2020794300,B&E W'INTENT,2020-04-01T00:00:00,2020,April,Wednesday,1,92,18,2020-04-27T00:00:00,2020,April,Monday,27,118,10,D53,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RALEIGH,UNKNOWN,RG,21,BLKGRY,700.0,STOLEN,21944,"{'type': 'Point', 'coordinates': (-79.39758694, 43.67720231)}"
-21962,19622,GO-20142207077,THEFT UNDER,2014-06-01T00:00:00,2014,June,Sunday,1,152,14,2014-06-02T00:00:00,2014,June,Monday,2,153,19,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,VITA,MT,4,,579.0,STOLEN,21945,"{'type': 'Point', 'coordinates': (-79.40255449, 43.67580963)}"
-21963,19624,GO-20142301660,THEFT UNDER,2014-06-04T00:00:00,2014,June,Wednesday,4,155,19,2014-06-16T00:00:00,2014,June,Monday,16,167,10,D53,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,PEUGOT,ROAD BIKE,RC,1,ONG,400.0,STOLEN,21946,"{'type': 'Point', 'coordinates': (-79.39124334, 43.67113341000001)}"
-21964,19640,GO-20142550637,THEFT UNDER,2014-07-17T00:00:00,2014,July,Thursday,17,198,8,2014-07-22T00:00:00,2014,July,Tuesday,22,203,18,D53,Toronto,95,Annex (95),Universities / Colleges,Educational,OTHER,LECHAMPION,OT,1,BLK,900.0,STOLEN,21947,"{'type': 'Point', 'coordinates': (-79.39734175, 43.66803279)}"
-21965,19657,GO-20149007310,THEFT UNDER,2014-09-27T00:00:00,2014,September,Saturday,27,270,0,2014-09-30T00:00:00,2014,September,Tuesday,30,273,11,D53,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,TORQUE,MT,21,BLK,4000.0,STOLEN,21948,"{'type': 'Point', 'coordinates': (-79.3993686, 43.67335805)}"
-21966,19660,GO-20143064716,PROPERTY - FOUND,2013-07-10T00:00:00,2013,July,Wednesday,10,191,16,2014-10-08T00:00:00,2014,October,Wednesday,8,281,8,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,TARGA,OT,10,BLU,,STOLEN,21949,"{'type': 'Point', 'coordinates': (-79.38986109, 43.67785353)}"
-21967,19675,GO-2015422420,PROPERTY - FOUND,2015-03-05T00:00:00,2015,March,Thursday,5,64,0,2015-03-12T00:00:00,2015,March,Thursday,12,71,14,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,NIL,MT,18,BLU,,STOLEN,21950,"{'type': 'Point', 'coordinates': (-79.39734175, 43.66803279)}"
-21968,19687,GO-20151038553,THEFT UNDER,2015-06-19T00:00:00,2015,June,Friday,19,170,14,2015-06-21T00:00:00,2015,June,Sunday,21,172,20,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,ZF MAD,OT,1,BLK,530.0,STOLEN,21951,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-21969,19701,GO-20159005157,THEFT UNDER,2015-07-30T00:00:00,2015,July,Thursday,30,211,0,2015-07-30T00:00:00,2015,July,Thursday,30,211,15,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,KO,JAKE 2014,RC,20,ONG,2000.0,STOLEN,21952,"{'type': 'Point', 'coordinates': (-79.40484258, 43.6724255)}"
-21970,19704,GO-20159005394,THEFT UNDER,2015-07-28T00:00:00,2015,July,Tuesday,28,209,18,2015-08-06T00:00:00,2015,August,Thursday,6,218,14,D53,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ELAN,OT,27,,1866.0,STOLEN,21953,"{'type': 'Point', 'coordinates': (-79.39068757, 43.67989949)}"
-21971,19706,GO-20159005594,THEFT UNDER,2015-07-31T00:00:00,2015,July,Friday,31,212,17,2015-08-10T00:00:00,2015,August,Monday,10,222,18,D53,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,DOLCE VITA,SC,30,RED,2500.0,STOLEN,21954,"{'type': 'Point', 'coordinates': (-79.39380783, 43.67516312)}"
-21972,19717,GO-20159006308,THEFT UNDER - BICYCLE,2015-08-16T00:00:00,2015,August,Sunday,16,228,6,2015-08-23T00:00:00,2015,August,Sunday,23,235,17,D53,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,,MT,18,GRY,450.0,STOLEN,21955,"{'type': 'Point', 'coordinates': (-79.3916327, 43.67973412)}"
-21973,19729,GO-20159007319,THEFT UNDER,2015-09-12T00:00:00,2015,September,Saturday,12,255,12,2015-09-17T00:00:00,2015,September,Thursday,17,260,13,D53,Toronto,95,Annex (95),Bar / Restaurant,Commercial,BI,BIANCHI COLUMBU,RC,18,WHI,500.0,STOLEN,21956,"{'type': 'Point', 'coordinates': (-79.38942023, 43.67292854)}"
-21974,19736,GO-20159008346,THEFT UNDER,2015-10-07T00:00:00,2015,October,Wednesday,7,280,23,2015-10-08T00:00:00,2015,October,Thursday,8,281,14,D53,Toronto,95,Annex (95),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,DRIVE 2013,EL,30,GRN,900.0,STOLEN,21957,"{'type': 'Point', 'coordinates': (-79.39734175, 43.66803279)}"
-21975,19737,GO-20159008349,THEFT UNDER,2015-07-24T00:00:00,2015,July,Friday,24,205,17,2015-10-08T00:00:00,2015,October,Thursday,8,281,14,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ELLIOT,BM,30,BLK,1500.0,STOLEN,21958,"{'type': 'Point', 'coordinates': (-79.39734175, 43.66803279)}"
-21976,19748,GO-20159011197,THEFT UNDER,2015-12-08T00:00:00,2015,December,Tuesday,8,342,8,2015-12-22T00:00:00,2015,December,Tuesday,22,356,11,D53,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,7.3 FX,RG,27,BLK,750.0,STOLEN,21959,"{'type': 'Point', 'coordinates': (-79.39479453, 43.67508461)}"
-21977,19769,GO-2016987694,THEFT OF EBIKE UNDER $5000,2016-06-05T00:00:00,2016,June,Sunday,5,157,2,2016-06-07T00:00:00,2016,June,Tuesday,7,159,9,D53,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,URBAN,EL,0,BLK,1500.0,STOLEN,21960,"{'type': 'Point', 'coordinates': (-79.40210106, 43.67299255)}"
-21978,20788,GO-20201407816,THEFT UNDER - BICYCLE,2020-07-24T00:00:00,2020,July,Friday,24,206,10,2020-07-28T00:00:00,2020,July,Tuesday,28,210,20,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KHS,URBAN FULL,OT,1,SIL,600.0,STOLEN,21961,"{'type': 'Point', 'coordinates': (-79.40944561, 43.67172945)}"
-21979,20816,GO-20209024830,THEFT UNDER,2020-09-28T00:00:00,2020,September,Monday,28,272,18,2020-09-28T00:00:00,2020,September,Monday,28,272,21,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,"SCAPE 2, HYBRID",RG,40,BLK,800.0,STOLEN,21962,"{'type': 'Point', 'coordinates': (-79.40531586, 43.66635847)}"
-21980,20822,GO-20209026416,THEFT UNDER,2020-10-14T00:00:00,2020,October,Wednesday,14,288,0,2020-10-14T00:00:00,2020,October,Wednesday,14,288,12,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,SIRRUS 1.0,RG,21,PLE,800.0,STOLEN,21963,"{'type': 'Point', 'coordinates': (-79.40864191, 43.66567614)}"
-21981,20837,GO-20209030663,THEFT UNDER,2020-11-14T00:00:00,2020,November,Saturday,14,319,17,2020-11-26T00:00:00,2020,November,Thursday,26,331,18,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,TRAILER NOT A B,OT,1,BLK,1500.0,STOLEN,21964,"{'type': 'Point', 'coordinates': (-79.41047653, 43.67397307)}"
-21982,20842,GO-20209032788,THEFT UNDER,2020-12-05T00:00:00,2020,December,Saturday,5,340,2,2020-12-23T00:00:00,2020,December,Wednesday,23,358,23,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,RG,21,DBL,250.0,STOLEN,21965,"{'type': 'Point', 'coordinates': (-79.41174945, 43.66662023)}"
-21983,20985,GO-20199005325,THEFT UNDER - BICYCLE,2019-01-29T00:00:00,2019,January,Tuesday,29,29,13,2019-02-13T00:00:00,2019,February,Wednesday,13,44,14,D14,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,VALENCE,TO,30,BLK,1300.0,STOLEN,21966,"{'type': 'Point', 'coordinates': (-79.40587057, 43.66878216)}"
-21984,20988,GO-20199009498,THEFT UNDER - BICYCLE,2019-01-01T00:00:00,2019,January,Tuesday,1,1,0,2019-03-24T00:00:00,2019,March,Sunday,24,83,21,D14,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,AVAIL,RC,9,PLE,1186.0,STOLEN,21967,"{'type': 'Point', 'coordinates': (-79.40473364, 43.66896169)}"
-21985,20990,GO-20199012645,THEFT UNDER - BICYCLE,2019-04-20T00:00:00,2019,April,Saturday,20,110,16,2019-04-22T00:00:00,2019,April,Monday,22,112,11,D14,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,7100,MT,21,BLU,300.0,STOLEN,21968,"{'type': 'Point', 'coordinates': (-79.40623518, 43.66616454)}"
-21986,20998,GO-20199016219,THEFT UNDER - BICYCLE,2019-05-01T00:00:00,2019,May,Wednesday,1,121,22,2019-05-24T00:00:00,2019,May,Friday,24,144,22,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,SECTEUR,RC,24,BLK,600.0,STOLEN,21969,"{'type': 'Point', 'coordinates': (-79.40600258, 43.67218781)}"
-21987,21015,GO-20199020194,THEFT UNDER - BICYCLE,2019-06-21T00:00:00,2019,June,Friday,21,172,17,2019-06-26T00:00:00,2019,June,Wednesday,26,177,14,D14,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,,MT,24,ONG,0.0,STOLEN,21970,"{'type': 'Point', 'coordinates': (-79.41106003, 43.66823705)}"
-21988,21033,GO-20191454104,THEFT UNDER - BICYCLE,2019-08-02T00:00:00,2019,August,Friday,2,214,6,2019-08-02T00:00:00,2019,August,Friday,2,214,6,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,DYNAMO,RG,24,WHI,1200.0,STOLEN,21971,"{'type': 'Point', 'coordinates': (-79.41057995, 43.67066529)}"
-21989,21034,GO-20191454104,THEFT UNDER - BICYCLE,2019-08-02T00:00:00,2019,August,Friday,2,214,6,2019-08-02T00:00:00,2019,August,Friday,2,214,6,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,VFR1,RG,24,GRY,800.0,STOLEN,21972,"{'type': 'Point', 'coordinates': (-79.41057995, 43.67066529)}"
-21990,21059,GO-20199029483,THEFT UNDER - BICYCLE,2019-09-09T00:00:00,2019,September,Monday,9,252,7,2019-09-10T00:00:00,2019,September,Tuesday,10,253,16,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KH,URBAN,RG,1,BRN,550.0,STOLEN,21973,"{'type': 'Point', 'coordinates': (-79.40940705, 43.67161258)}"
-21991,21063,GO-20199030210,THEFT UNDER - BICYCLE,2019-09-11T00:00:00,2019,September,Wednesday,11,254,22,2019-09-16T00:00:00,2019,September,Monday,16,259,13,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,TR,,RG,21,GRN,530.0,STOLEN,21974,"{'type': 'Point', 'coordinates': (-79.40526597, 43.67030834)}"
-21992,21098,GO-20199039716,THEFT UNDER,2019-12-03T00:00:00,2019,December,Tuesday,3,337,4,2019-12-04T00:00:00,2019,December,Wednesday,4,338,9,D14,Toronto,95,Annex (95),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,FJ,CROSSTOWN,RG,7,MRN,250.0,STOLEN,21975,"{'type': 'Point', 'coordinates': (-79.40473364, 43.66896169)}"
-21993,21100,GO-20199041354,THEFT UNDER,2019-12-18T00:00:00,2019,December,Wednesday,18,352,10,2019-12-18T00:00:00,2019,December,Wednesday,18,352,12,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ERA,MT,9,BLK,3000.0,STOLEN,21976,"{'type': 'Point', 'coordinates': (-79.40938659000001, 43.67090236)}"
-21994,21101,GO-20199041954,THEFT UNDER,2019-12-16T00:00:00,2019,December,Monday,16,350,6,2019-12-24T00:00:00,2019,December,Tuesday,24,358,18,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RM,FUSION 30,MT,9,BLU,,STOLEN,21977,"{'type': 'Point', 'coordinates': (-79.41192717, 43.67038291)}"
-21995,21102,GO-20209000500,THEFT UNDER,2019-12-27T00:00:00,2019,December,Friday,27,361,20,2020-01-06T00:00:00,2020,January,Monday,6,6,8,D14,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,INVITE,RG,10,GRY,1200.0,STOLEN,21978,"{'type': 'Point', 'coordinates': (-79.40860463, 43.6689049)}"
-21996,21105,GO-20209001989,THEFT UNDER,2019-12-28T00:00:00,2019,December,Saturday,28,362,10,2020-01-17T00:00:00,2020,January,Friday,17,17,14,D14,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,BOLT ONYX,RG,7,BLK,600.0,STOLEN,21979,"{'type': 'Point', 'coordinates': (-79.41715995, 43.66708028)}"
-21997,21106,GO-20209003681,THEFT UNDER,2020-01-30T00:00:00,2020,January,Thursday,30,30,12,2020-01-30T00:00:00,2020,January,Thursday,30,30,17,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,UK,VERONA,RG,8,BLK,600.0,STOLEN,21980,"{'type': 'Point', 'coordinates': (-79.41180442, 43.673687980000004)}"
-21998,21115,GO-2020465545,THEFT UNDER - BICYCLE,2020-03-05T00:00:00,2020,March,Thursday,5,65,10,2020-03-05T00:00:00,2020,March,Thursday,5,65,11,D14,Toronto,95,Annex (95),Schools During Supervised Activity,Educational,OTHER,VENDETTA ULTEGR,OT,0,BLK,2649.0,STOLEN,21981,"{'type': 'Point', 'coordinates': (-79.40473364, 43.66896169)}"
-21999,21118,GO-20209009506,THEFT UNDER,2020-03-20T00:00:00,2020,March,Friday,20,80,15,2020-03-21T00:00:00,2020,March,Saturday,21,81,12,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,SUPER 6 EVO ULT,RC,20,GRY,4700.0,STOLEN,21982,"{'type': 'Point', 'coordinates': (-79.40531586, 43.66635847)}"
-22000,21119,GO-20209009835,THEFT UNDER,2020-03-25T00:00:00,2020,March,Wednesday,25,85,20,2020-03-25T00:00:00,2020,March,Wednesday,25,85,21,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,CASE,RG,1,GRY,450.0,STOLEN,21983,"{'type': 'Point', 'coordinates': (-79.40822185, 43.67461234)}"
-22001,21123,GO-2020690224,THEFT OF EBIKE UNDER $5000,2020-04-08T00:00:00,2020,April,Wednesday,8,99,17,2020-04-09T00:00:00,2020,April,Thursday,9,100,13,D14,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,RUNNER,EL,4,GRN,2313.0,STOLEN,21984,"{'type': 'Point', 'coordinates': (-79.40637158, 43.66842414)}"
-22002,21124,GO-20209011137,THEFT UNDER - BICYCLE,2020-04-14T00:00:00,2020,April,Tuesday,14,105,17,2020-04-14T00:00:00,2020,April,Tuesday,14,105,18,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,46,,900.0,STOLEN,21985,"{'type': 'Point', 'coordinates': (-79.41875158, 43.66444289)}"
-22003,21128,GO-2020755659,THEFT UNDER - BICYCLE,2020-04-20T00:00:00,2020,April,Monday,20,111,10,2020-04-20T00:00:00,2020,April,Monday,20,111,17,D14,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,NONE,MT,0,,700.0,STOLEN,21986,"{'type': 'Point', 'coordinates': (-79.41673274, 43.67263764)}"
-22004,21166,GO-20201363826,B&E,2020-07-22T00:00:00,2020,July,Wednesday,22,204,15,2020-07-22T00:00:00,2020,July,Wednesday,22,204,16,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BIANCHI,,RC,12,BLKBLU,7760.0,STOLEN,21987,"{'type': 'Point', 'coordinates': (-79.41112694, 43.66837047)}"
-22005,21190,GO-20179010890,THEFT UNDER - BICYCLE,2017-07-22T00:00:00,2017,July,Saturday,22,203,2,2017-07-23T00:00:00,2017,July,Sunday,23,204,21,D14,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,SIRRUS,RG,27,BLK,679.0,STOLEN,21988,"{'type': 'Point', 'coordinates': (-79.40841923, 43.6719398)}"
-22006,21199,GO-20179012912,THEFT UNDER - BICYCLE,2017-08-19T00:00:00,2017,August,Saturday,19,231,1,2017-08-21T00:00:00,2017,August,Monday,21,233,10,D14,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,TALON,RC,30,WHI,2500.0,STOLEN,21989,"{'type': 'Point', 'coordinates': (-79.41655235, 43.66558521)}"
-22007,21220,GO-20171795110,THEFT UNDER - BICYCLE,2017-10-03T00:00:00,2017,October,Tuesday,3,276,15,2017-10-03T00:00:00,2017,October,Tuesday,3,276,18,D14,Toronto,95,Annex (95),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OTHER,,RG,12,REDBLK,,STOLEN,21990,"{'type': 'Point', 'coordinates': (-79.40414752, 43.66746377)}"
-22008,21239,GO-20173112536,THEFT UNDER - BICYCLE,2017-11-29T00:00:00,2017,November,Wednesday,29,333,23,2017-12-01T00:00:00,2017,December,Friday,1,335,22,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,MASI,TO,1,ONG,600.0,STOLEN,21991,"{'type': 'Point', 'coordinates': (-79.41174945, 43.66662023)}"
-22009,21285,GO-20189017863,THEFT UNDER - BICYCLE,2018-06-08T00:00:00,2018,June,Friday,8,159,11,2018-06-08T00:00:00,2018,June,Friday,8,159,14,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,VELOCE,RC,10,BLU,3000.0,RECOVERED,21992,"{'type': 'Point', 'coordinates': (-79.40826418, 43.66803619)}"
-22010,21294,GO-20189019037,THEFT UNDER - BICYCLE,2018-06-17T00:00:00,2018,June,Sunday,17,168,12,2018-06-17T00:00:00,2018,June,Sunday,17,168,13,D14,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RA,DETOUR IE,EL,9,BLK,3400.0,STOLEN,21993,"{'type': 'Point', 'coordinates': (-79.40628591, 43.66897569)}"
-22011,21300,GO-20189020372,THEFT UNDER - BICYCLE,2018-06-22T00:00:00,2018,June,Friday,22,173,16,2018-06-26T00:00:00,2018,June,Tuesday,26,177,13,D14,Toronto,95,Annex (95),Ttc Subway Station,Transit,RM,RC50,OT,27,BLK,0.0,STOLEN,21994,"{'type': 'Point', 'coordinates': (-79.41174945, 43.66662023)}"
-22012,21334,GO-20189026997,THEFT UNDER - BICYCLE,2018-08-19T00:00:00,2018,August,Sunday,19,231,10,2018-08-19T00:00:00,2018,August,Sunday,19,231,14,D14,Toronto,95,Annex (95),Bar / Restaurant,Commercial,OT,,RG,7,GRY,1200.0,STOLEN,21995,"{'type': 'Point', 'coordinates': (-79.41717845, 43.66383426)}"
-22013,21354,GO-20189032990,THEFT UNDER - BICYCLE,2018-10-05T00:00:00,2018,October,Friday,5,278,9,2018-10-05T00:00:00,2018,October,Friday,5,278,9,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,DYNAMO,RG,8,WHI,900.0,STOLEN,21996,"{'type': 'Point', 'coordinates': (-79.42030175, 43.67185242)}"
-22014,21365,GO-20189035490,THEFT UNDER - BICYCLE,2018-10-24T00:00:00,2018,October,Wednesday,24,297,4,2018-10-25T00:00:00,2018,October,Thursday,25,298,11,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,9,,700.0,STOLEN,21997,"{'type': 'Point', 'coordinates': (-79.41653423, 43.66882038)}"
-22015,6282,GO-20209014390,THEFT UNDER,2020-05-29T00:00:00,2020,May,Friday,29,150,16,2020-06-02T00:00:00,2020,June,Tuesday,2,154,12,D13,Toronto,96,Casa Loma (96),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,21,ONG,0.0,STOLEN,21998,"{'type': 'Point', 'coordinates': (-79.41826195, 43.68316749)}"
-22016,6289,GO-20201020336,B&E,2020-06-03T00:00:00,2020,June,Wednesday,3,155,6,2020-06-03T00:00:00,2020,June,Wednesday,3,155,11,D53,Toronto,96,Casa Loma (96),"Apartment (Rooming House, Condo)",Apartment,CANNONDALE,JEKYLL 300,MT,27,,5000.0,STOLEN,21999,"{'type': 'Point', 'coordinates': (-79.40693838, 43.67773243)}"
-22017,6476,GO-20209016247,THEFT UNDER - BICYCLE,2020-06-26T00:00:00,2020,June,Friday,26,178,2,2020-06-26T00:00:00,2020,June,Friday,26,178,14,D53,Toronto,96,Casa Loma (96),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,NORCO SECTION,RG,11,BLU,3000.0,STOLEN,22000,"{'type': 'Point', 'coordinates': (-79.4010874, 43.67902858)}"
-22018,6545,GO-20209016994,THEFT UNDER,2020-07-05T00:00:00,2020,July,Sunday,5,187,14,2020-07-07T00:00:00,2020,July,Tuesday,7,189,14,D53,Toronto,96,Casa Loma (96),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,1,DGR,300.0,STOLEN,22001,"{'type': 'Point', 'coordinates': (-79.39889958, 43.68046017)}"
-22019,8447,GO-20149005097,THEFT UNDER,2014-07-17T00:00:00,2014,July,Thursday,17,198,8,2014-07-18T00:00:00,2014,July,Friday,18,199,8,D13,Toronto,96,Casa Loma (96),Schools During Supervised Activity,Educational,MA,,RC,21,BLK,1000.0,STOLEN,22010,"{'type': 'Point', 'coordinates': (-79.41032674, 43.676839740000005)}"
-22020,6866,GO-20209019375,THEFT UNDER,2020-07-30T00:00:00,2020,July,Thursday,30,212,23,2020-08-04T00:00:00,2020,August,Tuesday,4,217,19,D13,Toronto,96,Casa Loma (96),"Apartment (Rooming House, Condo)",Apartment,TR,MARLIN 5 M 29 T,MT,7,OTH,746.0,STOLEN,22002,"{'type': 'Point', 'coordinates': (-79.41826195, 43.68316749)}"
-22021,6979,GO-20201539033,THEFT UNDER - BICYCLE,2020-08-16T00:00:00,2020,August,Sunday,16,229,12,2020-08-18T00:00:00,2020,August,Tuesday,18,231,9,D13,Toronto,96,Casa Loma (96),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,NORTHROCK XC27,MT,21,BLK,550.0,STOLEN,22003,"{'type': 'Point', 'coordinates': (-79.41022197, 43.67848455)}"
-22022,7245,GO-20209023225,THEFT UNDER,2020-09-14T00:00:00,2020,September,Monday,14,258,10,2020-09-14T00:00:00,2020,September,Monday,14,258,18,D13,Toronto,96,Casa Loma (96),Schools During Supervised Activity,Educational,OT,ASPECT 950,MT,24,GRY,870.0,STOLEN,22004,"{'type': 'Point', 'coordinates': (-79.41032674, 43.676839740000005)}"
-22023,7348,GO-20209024348,THEFT UNDER,2020-09-24T00:00:00,2020,September,Thursday,24,268,9,2020-09-24T00:00:00,2020,September,Thursday,24,268,13,D13,Toronto,96,Casa Loma (96),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,BIG CITY LRT,RG,8,BLK,1350.0,STOLEN,22005,"{'type': 'Point', 'coordinates': (-79.40982044, 43.67550404)}"
-22024,16078,GO-20209023105,THEFT UNDER - BICYCLE,2020-09-12T00:00:00,2020,September,Saturday,12,256,10,2020-09-13T00:00:00,2020,September,Sunday,13,257,1,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,8,BLK,1200.0,STOLEN,22006,"{'type': 'Point', 'coordinates': (-79.39410173, 43.68808307)}"
-22025,8000,GO-20142171168,THEFT UNDER,2014-05-28T00:00:00,2014,May,Wednesday,28,148,8,2014-05-28T00:00:00,2014,May,Wednesday,28,148,16,D13,Toronto,96,Casa Loma (96),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,SUNDAY WAVE,BM,12,BLU,1200.0,STOLEN,22007,"{'type': 'Point', 'coordinates': (-79.41032674, 43.676839740000005)}"
-22026,8107,GO-20142294892,THEFT UNDER,2014-06-15T00:00:00,2014,June,Sunday,15,166,8,2014-06-15T00:00:00,2014,June,Sunday,15,166,14,D53,Toronto,96,Casa Loma (96),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,11 SEEK O M,RG,10,BLK,1101.0,STOLEN,22008,"{'type': 'Point', 'coordinates': (-79.39852304, 43.67955401)}"
-22027,8108,GO-20142294892,THEFT UNDER,2014-06-15T00:00:00,2014,June,Sunday,15,166,8,2014-06-15T00:00:00,2014,June,Sunday,15,166,14,D53,Toronto,96,Casa Loma (96),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,RG,10,BLKSIL,807.0,STOLEN,22009,"{'type': 'Point', 'coordinates': (-79.39852304, 43.67955401)}"
-22028,8454,GO-20149005109,THEFT UNDER,2014-07-17T00:00:00,2014,July,Thursday,17,198,9,2014-07-18T00:00:00,2014,July,Friday,18,199,11,D53,Toronto,96,Casa Loma (96),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,GRID 700 C,OT,21,PLE,325.0,STOLEN,22011,"{'type': 'Point', 'coordinates': (-79.40311167, 43.68631226)}"
-22029,9342,GO-2015482541,THEFT UNDER,2015-03-22T00:00:00,2015,March,Sunday,22,81,15,2015-03-22T00:00:00,2015,March,Sunday,22,81,17,D53,Toronto,96,Casa Loma (96),"Apartment (Rooming House, Condo)",Apartment,EMMO,ELECTRIC,EL,1,BLKYEL,1600.0,STOLEN,22012,"{'type': 'Point', 'coordinates': (-79.40932367, 43.68502614)}"
-22030,9768,GO-2015971553,THEFT UNDER,2015-06-09T00:00:00,2015,June,Tuesday,9,160,1,2015-06-10T00:00:00,2015,June,Wednesday,10,161,10,D53,Toronto,96,Casa Loma (96),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,FO,7,GRY,225.0,STOLEN,22013,"{'type': 'Point', 'coordinates': (-79.41112914, 43.68462561)}"
-22031,9769,GO-2015971553,THEFT UNDER,2015-06-09T00:00:00,2015,June,Tuesday,9,160,1,2015-06-10T00:00:00,2015,June,Wednesday,10,161,10,D53,Toronto,96,Casa Loma (96),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,FO,7,GRY,225.0,STOLEN,22014,"{'type': 'Point', 'coordinates': (-79.41112914, 43.68462561)}"
-22032,9851,GO-20159003849,THEFT UNDER,2015-06-09T00:00:00,2015,June,Tuesday,9,160,0,2015-06-22T00:00:00,2015,June,Monday,22,173,18,D53,Toronto,96,Casa Loma (96),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RG,21,GRY,1400.0,STOLEN,22015,"{'type': 'Point', 'coordinates': (-79.40512844, 43.6763636)}"
-22033,10167,GO-20159005260,THEFT UNDER,2015-08-01T00:00:00,2015,August,Saturday,1,213,21,2015-08-02T00:00:00,2015,August,Sunday,2,214,21,D13,Toronto,96,Casa Loma (96),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,ROADSTER CLASSI,RG,1,BGE,500.0,STOLEN,22016,"{'type': 'Point', 'coordinates': (-79.41257177, 43.67480843)}"
-22034,10590,GO-20159008162,THEFT UNDER,2015-10-05T00:00:00,2015,October,Monday,5,278,6,2015-10-05T00:00:00,2015,October,Monday,5,278,9,D53,Toronto,96,Casa Loma (96),"Apartment (Rooming House, Condo)",Apartment,UK,ROUBAIX,RC,21,GRY,1499.0,STOLEN,22017,"{'type': 'Point', 'coordinates': (-79.40512844, 43.6763636)}"
-22035,10650,GO-20159008707,THEFT UNDER,2015-09-20T00:00:00,2015,September,Sunday,20,263,15,2015-10-17T00:00:00,2015,October,Saturday,17,290,15,D53,Toronto,96,Casa Loma (96),"Apartment (Rooming House, Condo)",Apartment,NO,INDIE II,OT,24,GRY,1000.0,STOLEN,22018,"{'type': 'Point', 'coordinates': (-79.39902553, 43.6807663)}"
-22036,10653,GO-20159008707,THEFT UNDER,2015-09-20T00:00:00,2015,September,Sunday,20,263,15,2015-10-17T00:00:00,2015,October,Saturday,17,290,15,D53,Toronto,96,Casa Loma (96),"Apartment (Rooming House, Condo)",Apartment,TR,7.2,OT,24,,50.0,STOLEN,22019,"{'type': 'Point', 'coordinates': (-79.39902553, 43.6807663)}"
-22037,10679,GO-20159008891,THEFT UNDER,2015-10-21T00:00:00,2015,October,Wednesday,21,294,18,2015-10-22T00:00:00,2015,October,Thursday,22,295,17,D53,Toronto,96,Casa Loma (96),"Apartment (Rooming House, Condo)",Apartment,NO,HEART,OT,1,BLK,400.0,STOLEN,22020,"{'type': 'Point', 'coordinates': (-79.39795706, 43.67816383)}"
-22038,11005,GO-2016314087,THEFT UNDER,2016-02-21T00:00:00,2016,February,Sunday,21,52,22,2016-02-22T00:00:00,2016,February,Monday,22,53,17,D13,Toronto,96,Casa Loma (96),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,LADIES,MT,21,BRN,350.0,STOLEN,22021,"{'type': 'Point', 'coordinates': (-79.41744019, 43.68105168)}"
-22039,11385,GO-2016909101,THEFT UNDER - BICYCLE,2016-05-24T00:00:00,2016,May,Tuesday,24,145,17,2016-05-26T00:00:00,2016,May,Thursday,26,147,16,D13,Toronto,96,Casa Loma (96),"Apartment (Rooming House, Condo)",Apartment,OTHER,,FO,2,,270.0,STOLEN,22022,"{'type': 'Point', 'coordinates': (-79.40921624000002, 43.67711547)}"
-22040,11386,GO-2016909101,THEFT UNDER - BICYCLE,2016-05-24T00:00:00,2016,May,Tuesday,24,145,17,2016-05-26T00:00:00,2016,May,Thursday,26,147,16,D13,Toronto,96,Casa Loma (96),"Apartment (Rooming House, Condo)",Apartment,OTHER,,RG,2,,270.0,UNKNOWN,22023,"{'type': 'Point', 'coordinates': (-79.40921624000002, 43.67711547)}"
-22041,11532,GO-20169005817,THEFT UNDER - BICYCLE,2016-06-14T00:00:00,2016,June,Tuesday,14,166,9,2016-06-15T00:00:00,2016,June,Wednesday,15,167,9,D13,Toronto,96,Casa Loma (96),Schools During Un-Supervised Activity,Educational,UK,,RG,10,,0.0,STOLEN,22024,"{'type': 'Point', 'coordinates': (-79.41032674, 43.676839740000005)}"
-22042,12139,GO-20169009045,THEFT UNDER - BICYCLE,2016-08-15T00:00:00,2016,August,Monday,15,228,22,2016-08-19T00:00:00,2016,August,Friday,19,232,9,D53,Toronto,96,Casa Loma (96),"Apartment (Rooming House, Condo)",Apartment,RA,HIGHLANDER,RG,3,RED,600.0,STOLEN,22025,"{'type': 'Point', 'coordinates': (-79.39889958, 43.68046017)}"
-22043,12213,GO-20169009591,THEFT UNDER - BICYCLE,2016-08-28T00:00:00,2016,August,Sunday,28,241,2,2016-08-28T00:00:00,2016,August,Sunday,28,241,10,D13,Toronto,96,Casa Loma (96),Ttc Admin Or Support Facility,Transit,NO,,MT,24,,300.0,STOLEN,22026,"{'type': 'Point', 'coordinates': (-79.41517923, 43.682429)}"
-22044,12435,GO-20169010997,THEFT UNDER - BICYCLE,2016-09-22T00:00:00,2016,September,Thursday,22,266,22,2016-09-23T00:00:00,2016,September,Friday,23,267,18,D14,Toronto,96,Casa Loma (96),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SP,STOCKHOLM,RG,21,BLK,500.0,STOLEN,22027,"{'type': 'Point', 'coordinates': (-79.40511841, 43.68281447)}"
-22045,12451,GO-20161706495,THEFT UNDER - BICYCLE,2016-09-22T00:00:00,2016,September,Thursday,22,266,15,2016-09-25T00:00:00,2016,September,Sunday,25,269,14,D13,Toronto,96,Casa Loma (96),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,HYBRID,OT,0,GRY,500.0,STOLEN,22028,"{'type': 'Point', 'coordinates': (-79.41521844, 43.6785391)}"
-22046,12649,GO-20169012334,THEFT UNDER - BICYCLE,2016-10-04T00:00:00,2016,October,Tuesday,4,278,9,2016-10-20T00:00:00,2016,October,Thursday,20,294,9,D13,Toronto,96,Casa Loma (96),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,GT TRANSEO 3.0,RG,8,DBL,700.0,STOLEN,22029,"{'type': 'Point', 'coordinates': (-79.40921624000002, 43.67711547)}"
-22047,12664,GO-20169012430,THEFT UNDER,2016-10-20T00:00:00,2016,October,Thursday,20,294,3,2016-10-22T00:00:00,2016,October,Saturday,22,296,14,D13,Toronto,96,Casa Loma (96),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,HF,DELUXE,OT,1,WHI,200.0,STOLEN,22030,"{'type': 'Point', 'coordinates': (-79.40921624000002, 43.67711547)}"
-22048,12885,GO-20189027403,THEFT UNDER - BICYCLE,2018-08-21T00:00:00,2018,August,Tuesday,21,233,9,2018-08-22T00:00:00,2018,August,Wednesday,22,234,11,D53,Toronto,96,Casa Loma (96),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,TO,20,RED,800.0,STOLEN,22031,"{'type': 'Point', 'coordinates': (-79.40693838, 43.67773243)}"
-22049,12990,GO-20191933894,THEFT UNDER,2019-10-04T00:00:00,2019,October,Friday,4,277,0,2019-10-04T00:00:00,2019,October,Friday,4,277,13,D53,Toronto,96,Casa Loma (96),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,MT,1,BLKYEL,1200.0,STOLEN,22032,"{'type': 'Point', 'coordinates': (-79.40474761, 43.68597034)}"
-22050,13018,GO-20209004380,THEFT UNDER,2020-01-16T00:00:00,2020,January,Thursday,16,16,4,2020-02-05T00:00:00,2020,February,Wednesday,5,36,20,D53,Toronto,96,Casa Loma (96),"Apartment (Rooming House, Condo)",Apartment,RM,ROCKY MOUNTAIN,RG,24,BLK,1000.0,STOLEN,22033,"{'type': 'Point', 'coordinates': (-79.40932367, 43.68502614)}"
-22051,13043,GO-20209014828,THEFT UNDER - BICYCLE,2020-06-06T00:00:00,2020,June,Saturday,6,158,21,2020-06-08T00:00:00,2020,June,Monday,8,160,11,D53,Toronto,96,Casa Loma (96),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,RG,24,BLK,500.0,STOLEN,22034,"{'type': 'Point', 'coordinates': (-79.39976343, 43.6825434)}"
-22052,14107,GO-20169010605,THEFT UNDER - BICYCLE,2016-09-10T00:00:00,2016,September,Saturday,10,254,21,2016-09-17T00:00:00,2016,September,Saturday,17,261,23,D53,Toronto,96,Casa Loma (96),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,OT,1,CPR,663.0,STOLEN,22035,"{'type': 'Point', 'coordinates': (-79.40229798, 43.6887215)}"
-22053,14174,GO-20171322495,THEFT UNDER - BICYCLE,2017-07-22T00:00:00,2017,July,Saturday,22,203,21,2017-07-23T00:00:00,2017,July,Sunday,23,204,14,D53,Toronto,96,Casa Loma (96),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MARINONI,,OT,10,BLK,,STOLEN,22036,"{'type': 'Point', 'coordinates': (-79.40384279, 43.68614521)}"
-22054,14909,GO-20202162573,THEFT OF EBIKE UNDER $5000,2020-11-13T00:00:00,2020,November,Friday,13,318,14,2020-11-18T00:00:00,2020,November,Wednesday,18,323,14,D13,Toronto,96,Casa Loma (96),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,ECOPED,SERIES 45,OT,1,BLUONG,900.0,STOLEN,22037,"{'type': 'Point', 'coordinates': (-79.41325388, 43.68180306000001)}"
-22055,15355,GO-20149006456,THEFT UNDER,2014-09-01T00:00:00,2014,September,Monday,1,244,9,2014-09-01T00:00:00,2014,September,Monday,1,244,13,D13,Toronto,96,Casa Loma (96),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RC,24,RED,1100.0,STOLEN,22038,"{'type': 'Point', 'coordinates': (-79.41517923, 43.682429)}"
-22056,15356,GO-20149006456,THEFT UNDER,2014-09-01T00:00:00,2014,September,Monday,1,244,9,2014-09-01T00:00:00,2014,September,Monday,1,244,13,D13,Toronto,96,Casa Loma (96),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,TO,24,RED,800.0,STOLEN,22039,"{'type': 'Point', 'coordinates': (-79.41517923, 43.682429)}"
-22057,15491,GO-20169003385,THEFT UNDER - BICYCLE,2016-04-13T00:00:00,2016,April,Wednesday,13,104,21,2016-04-14T00:00:00,2016,April,Thursday,14,105,0,D13,Toronto,96,Casa Loma (96),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,DISTRICT S,RG,1,BLK,844.0,STOLEN,22040,"{'type': 'Point', 'coordinates': (-79.41588174, 43.683633900000004)}"
-22058,15605,GO-20179005936,THEFT UNDER - BICYCLE,2017-05-08T00:00:00,2017,May,Monday,8,128,17,2017-05-08T00:00:00,2017,May,Monday,8,128,19,D13,Toronto,96,Casa Loma (96),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,9,BLK,300.0,STOLEN,22041,"{'type': 'Point', 'coordinates': (-79.41777214, 43.68192519)}"
-22059,15632,GO-2018529467,THEFT UNDER - BICYCLE,2018-03-23T00:00:00,2018,March,Friday,23,82,20,2018-03-23T00:00:00,2018,March,Friday,23,82,21,D13,Toronto,96,Casa Loma (96),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,ORANGE COUNTY,OT,21,BLKDGR,3000.0,STOLEN,22042,"{'type': 'Point', 'coordinates': (-79.41385191, 43.67454641)}"
-22060,15634,GO-20189019649,THEFT UNDER - BICYCLE,2018-06-20T00:00:00,2018,June,Wednesday,20,171,7,2018-06-21T00:00:00,2018,June,Thursday,21,172,13,D13,Toronto,96,Casa Loma (96),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MO,,MT,21,DBL,200.0,STOLEN,22043,"{'type': 'Point', 'coordinates': (-79.41588174, 43.683633900000004)}"
-22061,15873,GO-20149003970,THEFT UNDER,2014-06-10T00:00:00,2014,June,Tuesday,10,161,22,2014-06-10T00:00:00,2014,June,Tuesday,10,161,22,D53,Toronto,96,Casa Loma (96),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,3,BRN,200.0,STOLEN,22044,"{'type': 'Point', 'coordinates': (-79.39889958, 43.68046017)}"
-22062,15997,GO-20152048166,THEFT UNDER,2015-11-29T00:00:00,2015,November,Sunday,29,333,16,2015-11-29T00:00:00,2015,November,Sunday,29,333,19,D53,Toronto,96,Casa Loma (96),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,SUPPERFLY,MT,21,BLK,3500.0,STOLEN,22045,"{'type': 'Point', 'coordinates': (-79.40381353, 43.68307367)}"
-22063,16056,GO-20201522289,B&E,2020-08-14T00:00:00,2020,August,Friday,14,227,12,2020-08-14T00:00:00,2020,August,Friday,14,227,16,D53,Toronto,96,Casa Loma (96),"Apartment (Rooming House, Condo)",Apartment,EMMO,XTRON,EL,0,RED,2698.0,STOLEN,22046,"{'type': 'Point', 'coordinates': (-79.40049996, 43.6823511)}"
-22064,18236,GO-20189022619,THEFT UNDER - BICYCLE,2018-07-10T00:00:00,2018,July,Tuesday,10,191,19,2018-07-16T00:00:00,2018,July,Monday,16,197,16,D13,Toronto,96,Casa Loma (96),Ttc Subway Station,Transit,KO,KONA DEW 2015,OT,28,BLK,621.0,STOLEN,22047,"{'type': 'Point', 'coordinates': (-79.41588174, 43.683633900000004)}"
-22065,18244,GO-20182044894,B&E,2018-11-06T00:00:00,2018,November,Tuesday,6,310,0,2018-11-06T00:00:00,2018,November,Tuesday,6,310,0,D13,Toronto,96,Casa Loma (96),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FELT,VR,OT,11,BLKBLU,10000.0,STOLEN,22048,"{'type': 'Point', 'coordinates': (-79.41517923, 43.682429)}"
-22066,18251,GO-20191164758,B&E,2019-06-23T00:00:00,2019,June,Sunday,23,174,11,2019-06-23T00:00:00,2019,June,Sunday,23,174,14,D13,Toronto,96,Casa Loma (96),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,,MT,24,PLE,900.0,STOLEN,22049,"{'type': 'Point', 'coordinates': (-79.41777214, 43.68192519)}"
-22067,18252,GO-20191164758,B&E,2019-06-23T00:00:00,2019,June,Sunday,23,174,11,2019-06-23T00:00:00,2019,June,Sunday,23,174,14,D13,Toronto,96,Casa Loma (96),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,RG,1,RED,100.0,STOLEN,22050,"{'type': 'Point', 'coordinates': (-79.41777214, 43.68192519)}"
-22068,18253,GO-20191164758,B&E,2019-06-23T00:00:00,2019,June,Sunday,23,174,11,2019-06-23T00:00:00,2019,June,Sunday,23,174,14,D13,Toronto,96,Casa Loma (96),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SANTA CRUZ,HECKLER,OT,24,SILRED,5000.0,STOLEN,22051,"{'type': 'Point', 'coordinates': (-79.41777214, 43.68192519)}"
-22069,18274,GO-20209018682,THEFT UNDER,2020-07-25T00:00:00,2020,July,Saturday,25,207,9,2020-07-27T00:00:00,2020,July,Monday,27,209,14,D13,Toronto,96,Casa Loma (96),Ttc Subway Station,Transit,OT,ROADSTER CLASSI,TO,1,GRY,0.0,STOLEN,22052,"{'type': 'Point', 'coordinates': (-79.41588174, 43.683633900000004)}"
-22070,18459,GO-20159007558,THEFT UNDER,2015-09-21T00:00:00,2015,September,Monday,21,264,18,2015-09-22T00:00:00,2015,September,Tuesday,22,265,11,D13,Toronto,96,Casa Loma (96),Universities / Colleges,Educational,OT,THE DUKE,RG,1,BLK,395.0,STOLEN,22053,"{'type': 'Point', 'coordinates': (-79.41149706, 43.67501439)}"
-22071,18503,GO-20169006187,THEFT UNDER - BICYCLE,2016-06-21T00:00:00,2016,June,Tuesday,21,173,12,2016-06-22T00:00:00,2016,June,Wednesday,22,174,20,D13,Toronto,96,Casa Loma (96),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,DOLCE,OT,10,SIL,800.0,STOLEN,22054,"{'type': 'Point', 'coordinates': (-79.41826195, 43.68316749)}"
-22072,18866,GO-20142973569,THEFT UNDER,2014-09-09T00:00:00,2014,September,Tuesday,9,252,21,2014-09-25T00:00:00,2014,September,Thursday,25,268,22,D53,Toronto,96,Casa Loma (96),"Apartment (Rooming House, Condo)",Apartment,DEVINCI,,TO,12,WHIRED,2200.0,STOLEN,22055,"{'type': 'Point', 'coordinates': (-79.4037797, 43.67802503)}"
-22073,18974,GO-20169004312,THEFT UNDER,2016-05-09T00:00:00,2016,May,Monday,9,130,13,2016-05-09T00:00:00,2016,May,Monday,9,130,15,D53,Toronto,96,Casa Loma (96),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,ROVE,TO,14,GRN,2000.0,STOLEN,22056,"{'type': 'Point', 'coordinates': (-79.40809108, 43.67741644)}"
-22074,19181,GO-20189023083,THEFT UNDER - BICYCLE,2018-07-15T00:00:00,2018,July,Sunday,15,196,22,2018-07-19T00:00:00,2018,July,Thursday,19,200,15,D53,Toronto,96,Casa Loma (96),"Apartment (Rooming House, Condo)",Apartment,NO,2013 HEART,RG,1,BLK,700.0,STOLEN,22057,"{'type': 'Point', 'coordinates': (-79.39902553, 43.6807663)}"
-22075,19210,GO-20189036185,THEFT UNDER - BICYCLE,2018-10-30T00:00:00,2018,October,Tuesday,30,303,7,2018-10-30T00:00:00,2018,October,Tuesday,30,303,13,D53,Toronto,96,Casa Loma (96),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,DIVERGE E5 COMP,TO,18,GRY,2050.0,STOLEN,22058,"{'type': 'Point', 'coordinates': (-79.4004901, 43.68430989)}"
-22076,19224,GO-20199013194,PROPERTY - RECOVERED,2019-04-26T00:00:00,2019,April,Friday,26,116,17,2019-04-26T00:00:00,2019,April,Friday,26,116,17,D53,Toronto,96,Casa Loma (96),"Apartment (Rooming House, Condo)",Apartment,OT,RANDONNEUR,TO,21,MRN,1429.0,STOLEN,22059,"{'type': 'Point', 'coordinates': (-79.40932367, 43.68502614)}"
-22077,19626,GO-20149004208,THEFT UNDER,2014-06-13T00:00:00,2014,June,Friday,13,164,2,2014-06-18T00:00:00,2014,June,Wednesday,18,169,14,D53,Toronto,96,Casa Loma (96),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,CUSTOM,RC,22,SIL,5000.0,STOLEN,22060,"{'type': 'Point', 'coordinates': (-79.40085335, 43.67845828)}"
-22078,19716,GO-20151484207,THEFT UNDER,2015-08-27T00:00:00,2015,August,Thursday,27,239,23,2015-08-28T00:00:00,2015,August,Friday,28,240,19,D53,Toronto,96,Casa Loma (96),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN,,EL,0,RED,1800.0,STOLEN,22061,"{'type': 'Point', 'coordinates': (-79.39831158, 43.67903889)}"
-22079,19738,GO-20159008400,THEFT UNDER,2015-10-09T00:00:00,2015,October,Friday,9,282,6,2015-10-09T00:00:00,2015,October,Friday,9,282,18,D53,Toronto,96,Casa Loma (96),"Apartment (Rooming House, Condo)",Apartment,OT,CROSSTRAIL SPOR,RG,27,BLK,900.0,STOLEN,22062,"{'type': 'Point', 'coordinates': (-79.40512844, 43.6763636)}"
-22080,21383,GO-20161019677,PROPERTY - RECOVERED,2016-06-11T00:00:00,2016,June,Saturday,11,163,23,2016-06-11T00:00:00,2016,June,Saturday,11,163,23,D13,Toronto,96,Casa Loma (96),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DAMCO,SINGLE SPEED,RG,1,BLK,1000.0,RECOVERED,22063,"{'type': 'Point', 'coordinates': (-79.40898551, 43.67956152)}"
-22081,21515,GO-20173069571,B&E,2017-11-25T00:00:00,2017,November,Saturday,25,329,0,2017-11-25T00:00:00,2017,November,Saturday,25,329,17,D13,Toronto,96,Casa Loma (96),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NORCO,,RG,0,BLK,,STOLEN,22064,"{'type': 'Point', 'coordinates': (-79.41744019, 43.68105168)}"
-22082,21545,GO-20199026257,THEFT UNDER,2019-08-12T00:00:00,2019,August,Monday,12,224,21,2019-08-14T00:00:00,2019,August,Wednesday,14,226,21,D13,Toronto,96,Casa Loma (96),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KH,,RG,1,BLK,299.0,STOLEN,22065,"{'type': 'Point', 'coordinates': (-79.41468595, 43.6767408)}"
-22083,21551,GO-20199039215,THEFT UNDER,2019-11-28T00:00:00,2019,November,Thursday,28,332,8,2019-11-28T00:00:00,2019,November,Thursday,28,332,20,D13,Toronto,96,Casa Loma (96),Ttc Subway Station,Transit,TR,,OT,7,GRY,500.0,STOLEN,22066,"{'type': 'Point', 'coordinates': (-79.41588174, 43.683633900000004)}"
-22084,21803,GO-20149004722,THEFT UNDER,2014-07-05T00:00:00,2014,July,Saturday,5,186,4,2014-07-05T00:00:00,2014,July,Saturday,5,186,14,D13,Toronto,96,Casa Loma (96),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,,RG,1,SIL,600.0,STOLEN,22067,"{'type': 'Point', 'coordinates': (-79.41468595, 43.6767408)}"
-22085,21916,GO-20159006237,THEFT UNDER,2015-08-25T00:00:00,2015,August,Tuesday,25,237,17,2015-08-27T00:00:00,2015,August,Thursday,27,239,12,D13,Toronto,96,Casa Loma (96),"Apartment (Rooming House, Condo)",Apartment,KH,,RG,27,PLE,700.0,STOLEN,22068,"{'type': 'Point', 'coordinates': (-79.40898551, 43.67956152)}"
-22086,22257,GO-20179014748,THEFT UNDER - BICYCLE,2017-09-14T00:00:00,2017,September,Thursday,14,257,7,2017-09-14T00:00:00,2017,September,Thursday,14,257,16,D53,Toronto,96,Casa Loma (96),Schools During Un-Supervised Activity,Educational,KO,JAKE THE SNAKE,OT,20,BLU,700.0,STOLEN,22069,"{'type': 'Point', 'coordinates': (-79.40080072, 43.68502738)}"
-22087,22277,GO-201812267,B&E,2017-11-03T00:00:00,2017,November,Friday,3,307,0,2018-01-03T00:00:00,2018,January,Wednesday,3,3,3,D53,Toronto,96,Casa Loma (96),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,MONTAIN BIKE,MT,7,BLK,4395.0,STOLEN,22070,"{'type': 'Point', 'coordinates': (-79.40384279, 43.68614521)}"
-22088,22324,GO-20181572554,B&E,2018-08-01T00:00:00,2018,August,Wednesday,1,213,0,2018-08-25T00:00:00,2018,August,Saturday,25,237,15,D53,Toronto,96,Casa Loma (96),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,FLOVAL FLYER,RC,10,LBL,650.0,STOLEN,22071,"{'type': 'Point', 'coordinates': (-79.40629612, 43.68566308)}"
-22089,22411,GO-20199029511,THEFT UNDER - BICYCLE,2019-09-10T00:00:00,2019,September,Tuesday,10,253,18,2019-09-10T00:00:00,2019,September,Tuesday,10,253,19,D53,Toronto,96,Casa Loma (96),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,UK,,RG,16,BLK,400.0,STOLEN,22072,"{'type': 'Point', 'coordinates': (-79.40474761, 43.68597034)}"
-22090,22451,GO-20209010514,THEFT UNDER - BICYCLE,2020-04-04T00:00:00,2020,April,Saturday,4,95,16,2020-04-05T00:00:00,2020,April,Sunday,5,96,15,D53,Toronto,96,Casa Loma (96),"Open Areas (Lakes, Parks, Rivers)",Outside,DEVINCI,EWOCXP,MT,21,YEL,500.0,STOLEN,22073,"{'type': 'Point', 'coordinates': (-79.40988644, 43.68174482)}"
-22091,22461,GO-2020797474,B&E,2020-04-27T00:00:00,2020,April,Monday,27,118,14,2020-04-27T00:00:00,2020,April,Monday,27,118,19,D53,Toronto,96,Casa Loma (96),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,TO,0,,,STOLEN,22074,"{'type': 'Point', 'coordinates': (-79.40512844, 43.6763636)}"
-22092,22466,GO-20209013601,THEFT UNDER,2020-05-20T00:00:00,2020,May,Wednesday,20,141,22,2020-05-21T00:00:00,2020,May,Thursday,21,142,12,D53,Toronto,96,Casa Loma (96),"Apartment (Rooming House, Condo)",Apartment,OT,SPECIALIZED,RG,10,TAN,0.0,STOLEN,22075,"{'type': 'Point', 'coordinates': (-79.40474761, 43.68597034)}"
-22093,22479,GO-20209015192,THEFT UNDER - BICYCLE,2020-06-12T00:00:00,2020,June,Friday,12,164,19,2020-06-12T00:00:00,2020,June,Friday,12,164,23,D53,Toronto,96,Casa Loma (96),"Apartment (Rooming House, Condo)",Apartment,GI,ALIGHT 2 CITY B,OT,24,BLU,750.0,STOLEN,22076,"{'type': 'Point', 'coordinates': (-79.40574937, 43.67796843)}"
-22094,22831,GO-20142189652,THEFT OVER,2014-05-27T00:00:00,2014,May,Tuesday,27,147,17,2014-05-31T00:00:00,2014,May,Saturday,31,151,11,D53,Toronto,96,Casa Loma (96),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,RC,10,BLKWHI,16282.0,STOLEN,22077,"{'type': 'Point', 'coordinates': (-79.40085335, 43.67845828)}"
-22095,22832,GO-20142189652,THEFT OVER,2014-05-27T00:00:00,2014,May,Tuesday,27,147,17,2014-05-31T00:00:00,2014,May,Saturday,31,151,11,D53,Toronto,96,Casa Loma (96),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,RC,10,BLKYEL,7507.0,STOLEN,22078,"{'type': 'Point', 'coordinates': (-79.40085335, 43.67845828)}"
-22096,22833,GO-20142189652,THEFT OVER,2014-05-27T00:00:00,2014,May,Tuesday,27,147,17,2014-05-31T00:00:00,2014,May,Saturday,31,151,11,D53,Toronto,96,Casa Loma (96),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,RG,10,BLK,3277.0,STOLEN,22079,"{'type': 'Point', 'coordinates': (-79.40085335, 43.67845828)}"
-22097,22900,GO-20159002889,THEFT UNDER,2015-05-18T00:00:00,2015,May,Monday,18,138,18,2015-05-19T00:00:00,2015,May,Tuesday,19,139,16,D53,Toronto,96,Casa Loma (96),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,S6,EL,32,YEL,1500.0,STOLEN,22080,"{'type': 'Point', 'coordinates': (-79.40932367, 43.68502614)}"
-22098,22929,GO-20159007021,THEFT UNDER,2015-09-01T00:00:00,2015,September,Tuesday,1,244,22,2015-09-11T00:00:00,2015,September,Friday,11,254,11,D53,Toronto,96,Casa Loma (96),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,TALON,MT,10,BLK,659.0,STOLEN,22081,"{'type': 'Point', 'coordinates': (-79.40551007, 43.68377703)}"
-22099,22930,GO-20159007021,THEFT UNDER,2015-09-01T00:00:00,2015,September,Tuesday,1,244,22,2015-09-11T00:00:00,2015,September,Friday,11,254,11,D53,Toronto,96,Casa Loma (96),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,MT TRACK 220,MT,7,BLK,449.0,STOLEN,22082,"{'type': 'Point', 'coordinates': (-79.40551007, 43.68377703)}"
-22100,24406,GO-20201936698,THEFT UNDER - BICYCLE,2020-10-11T00:00:00,2020,October,Sunday,11,285,14,2020-10-12T00:00:00,2020,October,Monday,12,286,13,D13,Toronto,96,Casa Loma (96),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,,MT,21,BLK,800.0,STOLEN,22083,"{'type': 'Point', 'coordinates': (-79.41200494, 43.6867768)}"
-22101,24646,GO-20142811852,THEFT UNDER,2014-08-29T00:00:00,2014,August,Friday,29,241,21,2014-08-31T00:00:00,2014,August,Sunday,31,243,8,D13,Toronto,96,Casa Loma (96),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KONA,,TO,18,BGE,800.0,STOLEN,22084,"{'type': 'Point', 'coordinates': (-79.41434861, 43.6803443)}"
-22102,24647,GO-20142811852,THEFT UNDER,2014-08-29T00:00:00,2014,August,Friday,29,241,21,2014-08-31T00:00:00,2014,August,Sunday,31,243,8,D13,Toronto,96,Casa Loma (96),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,ROUBAIX,RC,18,BLU,2000.0,STOLEN,22085,"{'type': 'Point', 'coordinates': (-79.41434861, 43.6803443)}"
-22103,24648,GO-20142811852,THEFT UNDER,2014-08-29T00:00:00,2014,August,Friday,29,241,21,2014-08-31T00:00:00,2014,August,Sunday,31,243,8,D13,Toronto,96,Casa Loma (96),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,RAZOR POCKET,SC,1,GRY,150.0,STOLEN,22086,"{'type': 'Point', 'coordinates': (-79.41434861, 43.6803443)}"
-22104,24666,GO-20143087984,THEFT UNDER,2014-10-11T00:00:00,2014,October,Saturday,11,284,11,2014-10-11T00:00:00,2014,October,Saturday,11,284,21,D13,Toronto,96,Casa Loma (96),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,VAYMAK,,EL,1,BLK,1238.0,STOLEN,22087,"{'type': 'Point', 'coordinates': (-79.41588174, 43.683633900000004)}"
-22105,24707,GO-20151014387,THEFT UNDER,2015-06-17T00:00:00,2015,June,Wednesday,17,168,0,2015-06-17T00:00:00,2015,June,Wednesday,17,168,2,D13,Toronto,96,Casa Loma (96),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,UNKNOWN,TO,1,BLKGRN,1200.0,STOLEN,22088,"{'type': 'Point', 'coordinates': (-79.40809108, 43.67741644)}"
-22106,24708,GO-20151014387,THEFT UNDER,2015-06-17T00:00:00,2015,June,Wednesday,17,168,0,2015-06-17T00:00:00,2015,June,Wednesday,17,168,2,D13,Toronto,96,Casa Loma (96),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,UNKNOWN,TO,1,BLKGRN,1200.0,STOLEN,22089,"{'type': 'Point', 'coordinates': (-79.40809108, 43.67741644)}"
-22107,25314,GO-20179012555,THEFT UNDER - BICYCLE,2017-08-15T00:00:00,2017,August,Tuesday,15,227,11,2017-08-16T00:00:00,2017,August,Wednesday,16,228,15,D13,Toronto,96,Casa Loma (96),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,,MT,22,BLU,835.0,STOLEN,22090,"{'type': 'Point', 'coordinates': (-79.4086374, 43.675633)}"
-22108,25315,GO-20179012555,THEFT UNDER - BICYCLE,2017-08-15T00:00:00,2017,August,Tuesday,15,227,11,2017-08-16T00:00:00,2017,August,Wednesday,16,228,15,D13,Toronto,96,Casa Loma (96),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,8,GRY,650.0,STOLEN,22091,"{'type': 'Point', 'coordinates': (-79.4086374, 43.675633)}"
-22109,25323,GO-20189017679,THEFT UNDER - BICYCLE,2018-06-06T00:00:00,2018,June,Wednesday,6,157,18,2018-06-06T00:00:00,2018,June,Wednesday,6,157,21,D13,Toronto,96,Casa Loma (96),Universities / Colleges,Educational,TR,,MT,21,BLU,1200.0,STOLEN,22092,"{'type': 'Point', 'coordinates': (-79.41149706, 43.67501439)}"
-22110,25359,GO-20191812757,B&E,2019-09-20T00:00:00,2019,September,Friday,20,263,16,2019-09-20T00:00:00,2019,September,Friday,20,263,18,D13,Toronto,96,Casa Loma (96),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KONA,,MT,21,SIL,120.0,STOLEN,22093,"{'type': 'Point', 'coordinates': (-79.41228077, 43.67486239)}"
-22111,25360,GO-20199032147,THEFT UNDER - BICYCLE,2019-09-30T00:00:00,2019,September,Monday,30,273,7,2019-09-30T00:00:00,2019,September,Monday,30,273,17,D13,Toronto,96,Casa Loma (96),Universities / Colleges,Educational,NO,INDIE 2,RG,24,BLK,919.0,STOLEN,22094,"{'type': 'Point', 'coordinates': (-79.41149706, 43.67501439)}"
-22112,25532,GO-20189013390,INCIDENT,2018-04-16T00:00:00,2018,April,Monday,16,106,18,2018-04-26T00:00:00,2018,April,Thursday,26,116,19,D53,Toronto,96,Casa Loma (96),"Apartment (Rooming House, Condo)",Apartment,UK,,SC,1,BLK,300.0,STOLEN,22095,"{'type': 'Point', 'coordinates': (-79.40932367, 43.68502614)}"
-22113,25533,GO-20189013390,INCIDENT,2018-04-16T00:00:00,2018,April,Monday,16,106,18,2018-04-26T00:00:00,2018,April,Thursday,26,116,19,D53,Toronto,96,Casa Loma (96),"Apartment (Rooming House, Condo)",Apartment,UK,,OT,1,BLK,120.0,STOLEN,22096,"{'type': 'Point', 'coordinates': (-79.40932367, 43.68502614)}"
-22114,25648,GO-20199023908,THEFT UNDER - BICYCLE,2019-07-25T00:00:00,2019,July,Thursday,25,206,22,2019-07-26T00:00:00,2019,July,Friday,26,207,19,D53,Toronto,96,Casa Loma (96),"Apartment (Rooming House, Condo)",Apartment,FJ,TRACK CLASSIC,OT,1,BLK,0.0,STOLEN,22097,"{'type': 'Point', 'coordinates': (-79.39889958, 43.68046017)}"
-22115,25655,GO-20191499438,THEFT UNDER - BICYCLE,2019-08-07T00:00:00,2019,August,Wednesday,7,219,23,2019-08-08T00:00:00,2019,August,Thursday,8,220,15,D53,Toronto,96,Casa Loma (96),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,SUPER DELUXE,MT,18,BLU,150.0,STOLEN,22098,"{'type': 'Point', 'coordinates': (-79.40145944, 43.6799128)}"
-22116,16095,GO-20201945234,THEFT UNDER - BICYCLE,2020-10-05T00:00:00,2020,October,Monday,5,279,17,2020-10-15T00:00:00,2020,October,Thursday,15,289,9,D53,Toronto,98,Rosedale-Moore Park (98),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN,,OT,10,,,STOLEN,22099,"{'type': 'Point', 'coordinates': (-79.38782632, 43.6728738)}"
-22117,16100,GO-20202051674,PROPERTY - FOUND,2020-10-29T00:00:00,2020,October,Thursday,29,303,10,2020-10-29T00:00:00,2020,October,Thursday,29,303,10,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,SOLARIS,MT,21,BLK,,UNKNOWN,22100,"{'type': 'Point', 'coordinates': (-79.38459861, 43.67181293)}"
-22118,18709,GO-20201291241,THEFT UNDER - BICYCLE,2020-07-07T00:00:00,2020,July,Tuesday,7,189,21,2020-07-12T00:00:00,2020,July,Sunday,12,194,20,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,ROCKHOPPER,TO,12,GRYBLK,764.0,STOLEN,22101,"{'type': 'Point', 'coordinates': (-79.38459861, 43.67181293)}"
-22119,18731,GO-20209019831,THEFT UNDER - BICYCLE,2020-08-10T00:00:00,2020,August,Monday,10,223,15,2020-08-10T00:00:00,2020,August,Monday,10,223,16,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ALIGHT 3,RG,7,GRY,600.0,STOLEN,22102,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22120,18764,GO-20201942381,THEFT UNDER - BICYCLE,2020-10-13T00:00:00,2020,October,Tuesday,13,287,8,2020-10-13T00:00:00,2020,October,Tuesday,13,287,9,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,NORCO,VRF,RG,18,GRY,540.0,STOLEN,22103,"{'type': 'Point', 'coordinates': (-79.39145198, 43.68864767)}"
-22121,18789,GO-20209031302,THEFT UNDER,2020-11-25T00:00:00,2020,November,Wednesday,25,330,18,2020-12-05T00:00:00,2020,December,Saturday,5,340,15,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,NO,INDIE DROP 1 60,RC,16,BLK,1315.0,STOLEN,22104,"{'type': 'Point', 'coordinates': (-79.39329174, 43.68623255)}"
-22122,18794,GO-20209032792,THEFT UNDER,2020-12-21T00:00:00,2020,December,Monday,21,356,8,2020-12-24T00:00:00,2020,December,Thursday,24,359,8,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,M3L,FO,3,BLK,2000.0,STOLEN,22105,"{'type': 'Point', 'coordinates': (-79.38476649, 43.67217315)}"
-22123,18795,GO-20209032887,THEFT UNDER,2020-12-17T00:00:00,2020,December,Thursday,17,352,12,2020-12-27T00:00:00,2020,December,Sunday,27,362,0,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,GI,TEMPT 3,MT,18,BLK,799.0,STOLEN,22106,"{'type': 'Point', 'coordinates': (-79.39145198, 43.68864767)}"
-22124,18829,GO-20141896501,THEFT OVER,2013-09-28T00:00:00,2013,September,Saturday,28,271,10,2014-04-15T00:00:00,2014,April,Tuesday,15,105,20,D53,Toronto,98,Rosedale-Moore Park (98),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,FORTRESS,1700TA,SC,0,RED,4200.0,STOLEN,22107,"{'type': 'Point', 'coordinates': (-79.39410173, 43.68808307)}"
-22125,18833,GO-20149003697,THEFT UNDER,2014-05-30T00:00:00,2014,May,Friday,30,150,1,2014-05-30T00:00:00,2014,May,Friday,30,150,18,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,MT,21,SIL,750.0,RECOVERED,22108,"{'type': 'Point', 'coordinates': (-79.38127573, 43.6795642)}"
-22126,18840,GO-20142418303,THEFT UNDER,2014-07-02T00:00:00,2014,July,Wednesday,2,183,23,2014-07-03T00:00:00,2014,July,Thursday,3,184,0,D53,Toronto,98,Rosedale-Moore Park (98),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,UN,TO,14,PLE,500.0,STOLEN,22109,"{'type': 'Point', 'coordinates': (-79.3926068, 43.68840573)}"
-22127,18848,GO-20149005226,THEFT UNDER,2014-07-21T00:00:00,2014,July,Monday,21,202,20,2014-07-22T00:00:00,2014,July,Tuesday,22,203,12,D53,Toronto,98,Rosedale-Moore Park (98),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,KH,TEAM FLIGHT,TO,12,BLK,,STOLEN,22110,"{'type': 'Point', 'coordinates': (-79.38746342000002, 43.6719238)}"
-22128,18849,GO-20149005257,THEFT UNDER,2014-07-18T00:00:00,2014,July,Friday,18,199,7,2014-07-23T00:00:00,2014,July,Wednesday,23,204,11,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,TO,1,BLK,450.0,STOLEN,22111,"{'type': 'Point', 'coordinates': (-79.3926068, 43.68840573)}"
-22129,18851,GO-20142641071,THEFT UNDER,2014-07-11T00:00:00,2014,July,Friday,11,192,12,2014-08-05T00:00:00,2014,August,Tuesday,5,217,15,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,EBIKE,EL,4,,1600.0,STOLEN,22112,"{'type': 'Point', 'coordinates': (-79.38686317, 43.68015045)}"
-22130,18853,GO-20149005751,THEFT UNDER,2014-08-09T00:00:00,2014,August,Saturday,9,221,0,2014-08-09T00:00:00,2014,August,Saturday,9,221,10,D53,Toronto,98,Rosedale-Moore Park (98),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,"7.4 FX, 17.5 FR",RG,21,BLK,1100.0,STOLEN,22113,"{'type': 'Point', 'coordinates': (-79.3841564, 43.67465241)}"
-22131,18880,GO-2015534633,THEFT UNDER,2015-03-23T00:00:00,2015,March,Monday,23,82,8,2015-03-31T00:00:00,2015,March,Tuesday,31,90,12,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MASI,,RC,18,BRN,800.0,STOLEN,22114,"{'type': 'Point', 'coordinates': (-79.3890223, 43.69114321)}"
-22132,18881,GO-2015534633,THEFT UNDER,2015-03-23T00:00:00,2015,March,Monday,23,82,8,2015-03-31T00:00:00,2015,March,Tuesday,31,90,12,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,AVENUE,RG,18,BLU,,UNKNOWN,22115,"{'type': 'Point', 'coordinates': (-79.3890223, 43.69114321)}"
-22133,18889,GO-20159003176,THEFT UNDER,2015-05-27T00:00:00,2015,May,Wednesday,27,147,23,2015-05-28T00:00:00,2015,May,Thursday,28,148,19,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,MT,21,GRY,,STOLEN,22116,"{'type': 'Point', 'coordinates': (-79.3926068, 43.68840573)}"
-22134,18910,GO-20151186796,THEFT UNDER,2015-07-13T00:00:00,2015,July,Monday,13,194,14,2015-07-13T00:00:00,2015,July,Monday,13,194,14,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,,MT,24,BLK,500.0,STOLEN,22117,"{'type': 'Point', 'coordinates': (-79.38782632, 43.6728738)}"
-22135,18922,GO-20159005765,THEFT UNDER,2015-08-13T00:00:00,2015,August,Thursday,13,225,14,2015-08-13T00:00:00,2015,August,Thursday,13,225,18,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,,RG,24,BLK,800.0,STOLEN,22118,"{'type': 'Point', 'coordinates': (-79.39145198, 43.68864767)}"
-22136,18929,GO-20159006564,THEFT UNDER,2015-08-30T00:00:00,2015,August,Sunday,30,242,23,2015-08-31T00:00:00,2015,August,Monday,31,243,14,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,,OT,10,RED,500.0,STOLEN,22119,"{'type': 'Point', 'coordinates': (-79.37700521, 43.6896907)}"
-22137,18930,GO-20159006564,THEFT UNDER,2015-08-30T00:00:00,2015,August,Sunday,30,242,23,2015-08-31T00:00:00,2015,August,Monday,31,243,14,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,,OT,10,WHI,500.0,STOLEN,22120,"{'type': 'Point', 'coordinates': (-79.37700521, 43.6896907)}"
-22138,18948,GO-20151767064,THEFT UNDER,2015-10-06T00:00:00,2015,October,Tuesday,6,279,17,2015-10-13T00:00:00,2015,October,Tuesday,13,286,19,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,DEVINCI,,RC,21,BLU,3000.0,STOLEN,22121,"{'type': 'Point', 'coordinates': (-79.37942813, 43.6718256)}"
-22139,18960,GO-201637312,THEFT UNDER,2015-11-22T00:00:00,2015,November,Sunday,22,326,0,2016-01-07T00:00:00,2016,January,Thursday,7,7,11,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,ROCKY MOUNTAIN,HYBRID,TO,23,CPRBRN,1000.0,STOLEN,22122,"{'type': 'Point', 'coordinates': (-79.38526884, 43.67536914)}"
-22140,18966,GO-2016671388,THEFT UNDER - BICYCLE,2016-04-19T00:00:00,2016,April,Tuesday,19,110,19,2016-04-20T00:00:00,2016,April,Wednesday,20,111,3,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,EL,1,GRN,1500.0,STOLEN,22123,"{'type': 'Point', 'coordinates': (-79.39410173, 43.68808307)}"
-22141,18972,GO-2016757911,THEFT UNDER - BICYCLE,2016-05-02T00:00:00,2016,May,Monday,2,123,12,2016-05-03T00:00:00,2016,May,Tuesday,3,124,15,D53,Toronto,98,Rosedale-Moore Park (98),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,RALEIGH,DELUX 4.5,TO,21,BLU,500.0,STOLEN,22124,"{'type': 'Point', 'coordinates': (-79.38746342000002, 43.6719238)}"
-22142,18998,GO-20161176738,THEFT UNDER - BICYCLE,2016-07-04T00:00:00,2016,July,Monday,4,186,19,2016-07-05T00:00:00,2016,July,Tuesday,5,187,18,D53,Toronto,98,Rosedale-Moore Park (98),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NORCO,UNKNOWN,MT,5,PNKWHI,80.0,STOLEN,22125,"{'type': 'Point', 'coordinates': (-79.37388131, 43.68647832)}"
-22143,19006,GO-20161285354,THEFT OVER - BICYCLE,2016-07-21T00:00:00,2016,July,Thursday,21,203,18,2016-07-22T00:00:00,2016,July,Friday,22,204,8,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,RAPID,OT,24,WHIBLU,3000.0,STOLEN,22126,"{'type': 'Point', 'coordinates': (-79.37972031, 43.6931681)}"
-22144,19007,GO-20161285354,THEFT OVER - BICYCLE,2016-07-21T00:00:00,2016,July,Thursday,21,203,18,2016-07-22T00:00:00,2016,July,Friday,22,204,8,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CANNONDALE,,RC,24,BLKWHI,7000.0,STOLEN,22127,"{'type': 'Point', 'coordinates': (-79.37972031, 43.6931681)}"
-22145,19013,GO-20169008129,THEFT UNDER - BICYCLE,2016-08-03T00:00:00,2016,August,Wednesday,3,216,4,2016-08-03T00:00:00,2016,August,Wednesday,3,216,10,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SC,,RG,21,PLE,500.0,STOLEN,22128,"{'type': 'Point', 'coordinates': (-79.38367699, 43.69130442)}"
-22146,19032,GO-20169009614,THEFT UNDER - BICYCLE,2016-08-27T00:00:00,2016,August,Saturday,27,240,1,2016-08-28T00:00:00,2016,August,Sunday,28,241,16,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RC,1,BLU,350.0,STOLEN,22129,"{'type': 'Point', 'coordinates': (-79.38353943, 43.67203689)}"
-22147,19069,GO-2017132421,THEFT FROM MOTOR VEHICLE UNDER,2017-01-22T00:00:00,2017,January,Sunday,22,22,5,2017-01-22T00:00:00,2017,January,Sunday,22,22,5,D53,Toronto,98,Rosedale-Moore Park (98),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,SERIES 2.1,RC,10,GRN,,STOLEN,22130,"{'type': 'Point', 'coordinates': (-79.37942813, 43.6718256)}"
-22148,19088,GO-20179007824,THEFT UNDER - BICYCLE,2017-06-11T00:00:00,2017,June,Sunday,11,162,9,2017-06-11T00:00:00,2017,June,Sunday,11,162,9,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,TR,FX3,RG,21,BLK,850.0,STOLEN,22131,"{'type': 'Point', 'coordinates': (-79.38782632, 43.6728738)}"
-22149,19091,GO-20171117485,THEFT OVER - BICYCLE,2017-06-22T00:00:00,2017,June,Thursday,22,173,16,2017-06-22T00:00:00,2017,June,Thursday,22,173,20,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,VENGE,OT,21,WHIYEL,6000.0,STOLEN,22132,"{'type': 'Point', 'coordinates': (-79.3926068, 43.68840573)}"
-22150,19092,GO-20171117485,THEFT OVER - BICYCLE,2017-06-22T00:00:00,2017,June,Thursday,22,173,16,2017-06-22T00:00:00,2017,June,Thursday,22,173,20,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,CANNONDALE,SLICE,OT,21,WHI,5000.0,STOLEN,22133,"{'type': 'Point', 'coordinates': (-79.3926068, 43.68840573)}"
-22151,19114,GO-20179014812,THEFT UNDER - BICYCLE,2017-09-12T00:00:00,2017,September,Tuesday,12,255,14,2017-09-15T00:00:00,2017,September,Friday,15,258,9,D53,Toronto,98,Rosedale-Moore Park (98),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,,TO,10,BLK,1500.0,STOLEN,22134,"{'type': 'Point', 'coordinates': (-79.38746342000002, 43.6719238)}"
-22152,19116,GO-20171713991,THEFT UNDER - BICYCLE,2017-09-20T00:00:00,2017,September,Wednesday,20,263,19,2017-09-21T00:00:00,2017,September,Thursday,21,264,12,D53,Toronto,98,Rosedale-Moore Park (98),Ttc Subway Station,Transit,TREK,4300,MT,18,RED,450.0,STOLEN,22135,"{'type': 'Point', 'coordinates': (-79.3926068, 43.68840573)}"
-22153,19130,GO-20173050378,THEFT UNDER - BICYCLE,2017-11-22T00:00:00,2017,November,Wednesday,22,326,20,2017-11-22T00:00:00,2017,November,Wednesday,22,326,21,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,MT,1,BLKWHI,,STOLEN,22136,"{'type': 'Point', 'coordinates': (-79.37942813, 43.6718256)}"
-22154,19166,GO-20189018300,THEFT UNDER - BICYCLE,2018-06-11T00:00:00,2018,June,Monday,11,162,9,2018-06-11T00:00:00,2018,June,Monday,11,162,21,D53,Toronto,98,Rosedale-Moore Park (98),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,MT,21,RED,250.0,STOLEN,22137,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22155,19182,GO-20189023132,THEFT UNDER - BICYCLE,2018-07-13T00:00:00,2018,July,Friday,13,194,20,2018-07-19T00:00:00,2018,July,Thursday,19,200,20,D53,Toronto,98,Rosedale-Moore Park (98),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,TR,4500 SERIES,MT,18,WHI,0.0,STOLEN,22138,"{'type': 'Point', 'coordinates': (-79.38718014, 43.67129793)}"
-22156,19187,GO-20189025631,THEFT UNDER - BICYCLE,2018-08-02T00:00:00,2018,August,Thursday,2,214,6,2018-08-09T00:00:00,2018,August,Thursday,9,221,7,D53,Toronto,98,Rosedale-Moore Park (98),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,MEN'S DIVERGE E,OT,8,BLK,1400.0,STOLEN,22139,"{'type': 'Point', 'coordinates': (-79.38459861, 43.67181293)}"
-22157,19195,GO-20181543829,B&E,2018-08-20T00:00:00,2018,August,Monday,20,232,12,2018-08-21T00:00:00,2018,August,Tuesday,21,233,16,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,INFINITY,RC,21,BLUWHI,100.0,STOLEN,22140,"{'type': 'Point', 'coordinates': (-79.39234422, 43.68394081)}"
-22158,19243,GO-20199020278,THEFT UNDER - BICYCLE,2019-06-27T00:00:00,2019,June,Thursday,27,178,18,2019-06-27T00:00:00,2019,June,Thursday,27,178,20,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,DEW,RG,8,GRY,700.0,STOLEN,22141,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22159,19244,GO-20191189087,THEFT UNDER - BICYCLE,2019-06-26T00:00:00,2019,June,Wednesday,26,177,17,2019-06-26T00:00:00,2019,June,Wednesday,26,177,19,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,ESCAPE,OT,21,,400.0,STOLEN,22142,"{'type': 'Point', 'coordinates': (-79.38984652, 43.68899269)}"
-22160,19249,GO-20199021340,THEFT UNDER,2019-07-07T00:00:00,2019,July,Sunday,7,188,12,2019-07-07T00:00:00,2019,July,Sunday,7,188,15,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,KO,DR DEW,RG,11,BLK,0.0,STOLEN,22143,"{'type': 'Point', 'coordinates': (-79.3926068, 43.68840573)}"
-22161,19269,GO-20199027235,THEFT UNDER,2019-08-08T00:00:00,2019,August,Thursday,8,220,5,2019-08-22T00:00:00,2019,August,Thursday,22,234,14,D53,Toronto,98,Rosedale-Moore Park (98),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,CROSSTRAIL,OT,24,BLK,900.0,STOLEN,22144,"{'type': 'Point', 'coordinates': (-79.39342098, 43.691619970000005)}"
-22162,19291,GO-20199030353,THEFT UNDER - BICYCLE,2018-09-05T00:00:00,2018,September,Wednesday,5,248,16,2019-09-17T00:00:00,2019,September,Tuesday,17,260,17,D53,Toronto,98,Rosedale-Moore Park (98),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UK,MIDTOWN,OT,33,GRY,800.0,STOLEN,22145,"{'type': 'Point', 'coordinates': (-79.38746342000002, 43.6719238)}"
-22163,19292,GO-20191793615,B&E,2019-09-08T00:00:00,2019,September,Sunday,8,251,11,2019-09-18T00:00:00,2019,September,Wednesday,18,261,12,D53,Toronto,98,Rosedale-Moore Park (98),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,MANITOU,U/K,MT,21,SIL,2000.0,STOLEN,22146,"{'type': 'Point', 'coordinates': (-79.3886562, 43.67488192)}"
-22164,19296,GO-20199031298,THEFT UNDER,2019-09-09T00:00:00,2019,September,Monday,9,252,23,2019-09-24T00:00:00,2019,September,Tuesday,24,267,10,D53,Toronto,98,Rosedale-Moore Park (98),Schools During Un-Supervised Activity,Educational,GI,SEDONA,RG,21,DBL,0.0,STOLEN,22147,"{'type': 'Point', 'coordinates': (-79.38015012, 43.67454027)}"
-22165,19320,GO-20199038046,THEFT UNDER - BICYCLE,2019-11-17T00:00:00,2019,November,Sunday,17,321,10,2019-11-19T00:00:00,2019,November,Tuesday,19,323,12,D53,Toronto,98,Rosedale-Moore Park (98),Ttc Subway Station,Transit,NO,BIGFOOT,MT,27,BLK,2000.0,STOLEN,22148,"{'type': 'Point', 'coordinates': (-79.3926068, 43.68840573)}"
-22166,19324,GO-202032367,THEFT OVER - BICYCLE,2020-01-05T00:00:00,2020,January,Sunday,5,5,19,2020-01-05T00:00:00,2020,January,Sunday,5,5,21,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,POCKET ROCKET,FO,27,RED,2200.0,RECOVERED,22149,"{'type': 'Point', 'coordinates': (-79.39082826, 43.68212347)}"
-22167,19325,GO-202032367,THEFT OVER - BICYCLE,2020-01-05T00:00:00,2020,January,Sunday,5,5,19,2020-01-05T00:00:00,2020,January,Sunday,5,5,21,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,NEW WORLD TOURI,FO,27,RED,2800.0,STOLEN,22150,"{'type': 'Point', 'coordinates': (-79.39082826, 43.68212347)}"
-22168,19331,GO-20209003113,THEFT UNDER,2019-12-26T00:00:00,2019,December,Thursday,26,360,19,2020-01-26T00:00:00,2020,January,Sunday,26,26,17,D53,Toronto,98,Rosedale-Moore Park (98),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,CA,CAAD 9,RC,20,BLK,2000.0,STOLEN,22151,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22169,19333,GO-20209003890,THEFT UNDER,2018-05-13T00:00:00,2018,May,Sunday,13,133,20,2020-02-01T00:00:00,2020,February,Saturday,1,32,14,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,ROCK COMP 2015,MT,21,GRY,500.0,STOLEN,22152,"{'type': 'Point', 'coordinates': (-79.37942813, 43.6718256)}"
-22170,19334,GO-20209004987,THEFT UNDER,2020-02-11T00:00:00,2020,February,Tuesday,11,42,6,2020-02-11T00:00:00,2020,February,Tuesday,11,42,8,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,VITA,RG,21,BLK,300.0,STOLEN,22153,"{'type': 'Point', 'coordinates': (-79.38459861, 43.67181293)}"
-22171,19646,GO-20142676408,B&E,2014-08-10T00:00:00,2014,August,Sunday,10,222,20,2014-08-10T00:00:00,2014,August,Sunday,10,222,20,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CERVELO,S3,RC,21,RED,,STOLEN,22154,"{'type': 'Point', 'coordinates': (-79.37992098, 43.68469355)}"
-22172,19681,GO-20159002435,THEFT UNDER,2015-05-03T00:00:00,2015,May,Sunday,3,123,16,2015-05-04T00:00:00,2015,May,Monday,4,124,18,D53,Toronto,98,Rosedale-Moore Park (98),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,INTERNAL GEAR H,TO,12,WHI,1100.0,STOLEN,22155,"{'type': 'Point', 'coordinates': (-79.3926068, 43.68840573)}"
-22173,19689,GO-20159003831,THEFT UNDER,2015-06-13T00:00:00,2015,June,Saturday,13,164,18,2015-06-22T00:00:00,2015,June,Monday,22,173,13,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GF,MARLIN (BLACK),MT,21,BLK,1300.0,STOLEN,22156,"{'type': 'Point', 'coordinates': (-79.37143932, 43.68699767)}"
-22174,19695,GO-20159004391,THEFT UNDER,2015-07-10T00:00:00,2015,July,Friday,10,191,12,2015-07-10T00:00:00,2015,July,Friday,10,191,14,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,MT,12,RED,0.0,STOLEN,22157,"{'type': 'Point', 'coordinates': (-79.37736425, 43.67386221000001)}"
-22175,19702,GO-20159005180,THEFT UNDER,2015-07-22T00:00:00,2015,July,Wednesday,22,203,18,2015-07-30T00:00:00,2015,July,Thursday,30,211,16,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,TR,MADONE 3.1 WSD,RC,30,LGR,1900.0,STOLEN,22158,"{'type': 'Point', 'coordinates': (-79.392814, 43.68502592)}"
-22176,19714,GO-20159006184,THEFT UNDER,2015-08-26T00:00:00,2015,August,Wednesday,26,238,1,2015-08-26T00:00:00,2015,August,Wednesday,26,238,12,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,7.3 FX,RG,8,GRY,600.0,STOLEN,22159,"{'type': 'Point', 'coordinates': (-79.38672251, 43.69166753)}"
-22177,19718,GO-20151500632,THEFT UNDER,2015-08-31T00:00:00,2015,August,Monday,31,243,13,2015-08-31T00:00:00,2015,August,Monday,31,243,13,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,,MT,18,ONG,1000.0,STOLEN,22160,"{'type': 'Point', 'coordinates': (-79.37655047, 43.69178302)}"
-22178,19725,GO-20159006576,THEFT UNDER,2015-08-27T00:00:00,2015,August,Thursday,27,239,0,2015-08-31T00:00:00,2015,August,Monday,31,243,20,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,10,BLK,900.0,STOLEN,22161,"{'type': 'Point', 'coordinates': (-79.38489765, 43.672483830000004)}"
-22179,19727,GO-20151564046,THEFT UNDER,2015-09-09T00:00:00,2015,September,Wednesday,9,252,13,2015-09-10T00:00:00,2015,September,Thursday,10,253,14,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,HYBRID,TO,21,BLU,300.0,STOLEN,22162,"{'type': 'Point', 'coordinates': (-79.38718014, 43.67129793)}"
-22180,19741,GO-20151872366,THEFT UNDER,2015-10-25T00:00:00,2015,October,Sunday,25,298,0,2015-10-31T00:00:00,2015,October,Saturday,31,304,15,D53,Toronto,98,Rosedale-Moore Park (98),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,1700 DC,SC,1,RED,,STOLEN,22163,"{'type': 'Point', 'coordinates': (-79.3886562, 43.67488192)}"
-22181,19773,GO-20169006066,THEFT UNDER - BICYCLE,2016-06-20T00:00:00,2016,June,Monday,20,172,9,2016-06-20T00:00:00,2016,June,Monday,20,172,14,D53,Toronto,98,Rosedale-Moore Park (98),Unknown,Other,UK,SILVERSTONESL 4,RC,20,BLK,1500.0,STOLEN,22164,"{'type': 'Point', 'coordinates': (-79.38958887, 43.68009143)}"
-22182,19774,GO-20169006208,THEFT UNDER - BICYCLE,2016-06-22T00:00:00,2016,June,Wednesday,22,174,14,2016-06-22T00:00:00,2016,June,Wednesday,22,174,18,D53,Toronto,98,Rosedale-Moore Park (98),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,STROMER V1 SPOR,EL,8,BLK,2900.0,STOLEN,22165,"{'type': 'Point', 'coordinates': (-79.38746342000002, 43.6719238)}"
-22183,22161,GO-20169006478,THEFT UNDER - BICYCLE,2016-06-28T00:00:00,2016,June,Tuesday,28,180,12,2016-06-28T00:00:00,2016,June,Tuesday,28,180,12,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,9,BLK,800.0,STOLEN,22166,"{'type': 'Point', 'coordinates': (-79.3788743, 43.68745586)}"
-22184,22162,GO-20169006481,THEFT UNDER - BICYCLE,2016-06-27T00:00:00,2016,June,Monday,27,179,9,2016-06-28T00:00:00,2016,June,Tuesday,28,180,14,D53,Toronto,98,Rosedale-Moore Park (98),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,KO,DEW DELUX,RG,9,DGR,850.0,STOLEN,22167,"{'type': 'Point', 'coordinates': (-79.3926068, 43.68840573)}"
-22185,22177,GO-20169008365,THEFT UNDER - BICYCLE,2016-08-05T00:00:00,2016,August,Friday,5,218,23,2016-08-07T00:00:00,2016,August,Sunday,7,220,21,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,MARTIN 5,MT,21,RED,599.0,STOLEN,22168,"{'type': 'Point', 'coordinates': (-79.38102791, 43.68631045)}"
-22186,22184,GO-20169009095,THEFT UNDER - BICYCLE,2016-08-19T00:00:00,2016,August,Friday,19,232,18,2016-08-20T00:00:00,2016,August,Saturday,20,233,1,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,DRAFT,RG,1,BLK,500.0,STOLEN,22169,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22187,22199,GO-20169010569,THEFT UNDER - BICYCLE,2016-09-15T00:00:00,2016,September,Thursday,15,259,19,2016-09-16T00:00:00,2016,September,Friday,16,260,20,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,RA,,RC,15,GRY,1000.0,STOLEN,22170,"{'type': 'Point', 'coordinates': (-79.38015012, 43.67454027)}"
-22188,22201,GO-20169010799,THEFT UNDER - BICYCLE,2016-09-20T00:00:00,2016,September,Tuesday,20,264,16,2016-09-20T00:00:00,2016,September,Tuesday,20,264,16,D53,Toronto,98,Rosedale-Moore Park (98),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UK,,RG,10,GRN,0.0,STOLEN,22171,"{'type': 'Point', 'coordinates': (-79.38746342000002, 43.6719238)}"
-22189,22207,GO-20161809637,THEFT OF EBIKE UNDER $5000,2016-10-10T00:00:00,2016,October,Monday,10,284,10,2016-10-11T00:00:00,2016,October,Tuesday,11,285,18,D53,Toronto,98,Rosedale-Moore Park (98),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,EL,1,WHI,900.0,STOLEN,22172,"{'type': 'Point', 'coordinates': (-79.37557009000001, 43.67490443)}"
-22190,22221,GO-20179005961,THEFT UNDER - BICYCLE,2017-05-08T00:00:00,2017,May,Monday,8,128,20,2017-05-09T00:00:00,2017,May,Tuesday,9,129,11,D53,Toronto,98,Rosedale-Moore Park (98),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,SOLARIS,MT,18,BLK,275.0,STOLEN,22173,"{'type': 'Point', 'coordinates': (-79.38476649, 43.67217315)}"
-22191,22236,GO-20179010421,THEFT UNDER - BICYCLE,2017-07-16T00:00:00,2017,July,Sunday,16,197,7,2017-07-17T00:00:00,2017,July,Monday,17,198,17,D53,Toronto,98,Rosedale-Moore Park (98),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,SA,,MT,7,WHI,1200.0,STOLEN,22174,"{'type': 'Point', 'coordinates': (-79.38746342000002, 43.6719238)}"
-22192,22237,GO-20179010555,THEFT UNDER - BICYCLE,2017-07-16T00:00:00,2017,July,Sunday,16,197,17,2017-07-18T00:00:00,2017,July,Tuesday,18,199,23,D53,Toronto,98,Rosedale-Moore Park (98),Bar / Restaurant,Commercial,GF,,RG,1,BLK,1098.0,STOLEN,22175,"{'type': 'Point', 'coordinates': (-79.38459861, 43.67181293)}"
-22193,22242,GO-20179011388,THEFT UNDER - BICYCLE,2017-07-28T00:00:00,2017,July,Friday,28,209,18,2017-07-31T00:00:00,2017,July,Monday,31,212,11,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE,TO,8,GRY,500.0,STOLEN,22176,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-22194,22252,GO-20179013856,THEFT UNDER - BICYCLE,2017-09-01T00:00:00,2017,September,Friday,1,244,15,2017-09-01T00:00:00,2017,September,Friday,1,244,23,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,GROS LOUIS 2,OT,21,ONG,1921.0,STOLEN,22177,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22195,22262,GO-20179016871,THEFT UNDER - BICYCLE,2017-09-02T00:00:00,2017,September,Saturday,2,245,10,2017-10-10T00:00:00,2017,October,Tuesday,10,283,13,D53,Toronto,98,Rosedale-Moore Park (98),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,04SW2611C1,RG,24,,200.0,STOLEN,22178,"{'type': 'Point', 'coordinates': (-79.38776812, 43.67269822)}"
-22196,22263,GO-20171842497,B&E,2017-10-10T00:00:00,2017,October,Tuesday,10,283,2,2017-10-11T00:00:00,2017,October,Wednesday,11,284,12,D53,Toronto,98,Rosedale-Moore Park (98),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RG,27,BLK,,STOLEN,22179,"{'type': 'Point', 'coordinates': (-79.37557009000001, 43.67490443)}"
-22197,22279,GO-20189003823,THEFT UNDER - BICYCLE,2018-02-05T00:00:00,2018,February,Monday,5,36,6,2018-02-07T00:00:00,2018,February,Wednesday,7,38,20,D53,Toronto,98,Rosedale-Moore Park (98),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GT,GT I-DRIVE 2.0,MT,24,DGR,0.0,STOLEN,22180,"{'type': 'Point', 'coordinates': (-79.38459861, 43.67181293)}"
-22198,22307,GO-20181274887,B&E,2018-07-12T00:00:00,2018,July,Thursday,12,193,18,2018-07-14T00:00:00,2018,July,Saturday,14,195,6,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,MOUNTAIN BIKE,MT,1,GRY,1000.0,UNKNOWN,22181,"{'type': 'Point', 'coordinates': (-79.37130948, 43.67460632)}"
-22199,22308,GO-20181274887,B&E,2018-07-12T00:00:00,2018,July,Thursday,12,193,18,2018-07-14T00:00:00,2018,July,Saturday,14,195,6,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CERVELO,R5,OT,1,BLK,7000.0,STOLEN,22182,"{'type': 'Point', 'coordinates': (-79.37130948, 43.67460632)}"
-22200,22309,GO-20181274887,B&E,2018-07-12T00:00:00,2018,July,Thursday,12,193,18,2018-07-14T00:00:00,2018,July,Saturday,14,195,6,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ROUBAUX,ROAD BIKE,RG,1,WHI,2000.0,RECOVERED,22183,"{'type': 'Point', 'coordinates': (-79.37130948, 43.67460632)}"
-22201,22316,GO-20181408626,THEFT UNDER - BICYCLE,2018-07-28T00:00:00,2018,July,Saturday,28,209,12,2018-08-01T00:00:00,2018,August,Wednesday,1,213,15,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FELT,,RC,20,BLKBLU,3500.0,STOLEN,22184,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22202,22317,GO-20181461812,B&E,2018-05-01T00:00:00,2018,May,Tuesday,1,121,12,2018-08-09T00:00:00,2018,August,Thursday,9,221,11,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,CANNONDALE,CX2,MT,12,BLK,1050.0,STOLEN,22185,"{'type': 'Point', 'coordinates': (-79.38782632, 43.6728738)}"
-22203,22318,GO-20189026187,THEFT UNDER - BICYCLE,2018-08-11T00:00:00,2018,August,Saturday,11,223,22,2018-08-13T00:00:00,2018,August,Monday,13,225,14,D53,Toronto,98,Rosedale-Moore Park (98),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RG,7,BLK,1000.0,STOLEN,22186,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22204,22341,GO-20189031691,THEFT UNDER - BICYCLE,2018-09-22T00:00:00,2018,September,Saturday,22,265,17,2018-09-24T00:00:00,2018,September,Monday,24,267,11,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,RA,OASIS,RG,6,BLK,1200.0,STOLEN,22187,"{'type': 'Point', 'coordinates': (-79.39314545, 43.68588136)}"
-22205,22385,GO-20199020138,THEFT UNDER - BICYCLE,2019-06-25T00:00:00,2019,June,Tuesday,25,176,18,2019-06-25T00:00:00,2019,June,Tuesday,25,176,22,D53,Toronto,98,Rosedale-Moore Park (98),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,2007 LRT EXPRES,MT,7,BLK,350.0,STOLEN,22188,"{'type': 'Point', 'coordinates': (-79.38984652, 43.68899269)}"
-22206,22438,GO-20209005051,THEFT UNDER,2020-02-07T00:00:00,2020,February,Friday,7,38,0,2020-02-11T00:00:00,2020,February,Tuesday,11,42,15,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,TR,,RG,21,GRY,1083.0,STOLEN,22196,"{'type': 'Point', 'coordinates': (-79.3841564, 43.67465241)}"
-22207,22399,GO-20199023237,THEFT UNDER - BICYCLE,2019-07-19T00:00:00,2019,July,Friday,19,200,12,2019-07-22T00:00:00,2019,July,Monday,22,203,13,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SU,29 BEAST SUPERB,MT,18,BLK,259.0,STOLEN,22189,"{'type': 'Point', 'coordinates': (-79.38949143, 43.67696204)}"
-22208,22400,GO-20199023345,THEFT UNDER - BICYCLE,2019-07-20T00:00:00,2019,July,Saturday,20,201,14,2019-07-23T00:00:00,2019,July,Tuesday,23,204,8,D53,Toronto,98,Rosedale-Moore Park (98),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,STUMPJUMPER,MT,27,RED,2500.0,STOLEN,22190,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22209,22404,GO-20199026863,THEFT UNDER,2019-08-15T00:00:00,2019,August,Thursday,15,227,12,2019-08-19T00:00:00,2019,August,Monday,19,231,20,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,RG,18,BLK,500.0,STOLEN,22191,"{'type': 'Point', 'coordinates': (-79.38459861, 43.67181293)}"
-22210,22409,GO-20199028773,THEFT UNDER - BICYCLE,2019-09-04T00:00:00,2019,September,Wednesday,4,247,8,2019-09-04T00:00:00,2019,September,Wednesday,4,247,19,D53,Toronto,98,Rosedale-Moore Park (98),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,,RG,21,BLK,400.0,STOLEN,22192,"{'type': 'Point', 'coordinates': (-79.38353943, 43.67203689)}"
-22211,22412,GO-20199029596,THEFT UNDER - BICYCLE,2019-09-11T00:00:00,2019,September,Wednesday,11,254,11,2019-09-11T00:00:00,2019,September,Wednesday,11,254,13,D53,Toronto,98,Rosedale-Moore Park (98),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,GIANT ESCAPE 3,RG,7,GRY,600.0,STOLEN,22193,"{'type': 'Point', 'coordinates': (-79.3886562, 43.67488192)}"
-22212,22413,GO-20199029596,THEFT UNDER - BICYCLE,2019-09-11T00:00:00,2019,September,Wednesday,11,254,11,2019-09-11T00:00:00,2019,September,Wednesday,11,254,13,D53,Toronto,98,Rosedale-Moore Park (98),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,GIANT ESCAPE 3,RG,7,GRY,600.0,STOLEN,22194,"{'type': 'Point', 'coordinates': (-79.3886562, 43.67488192)}"
-22213,22419,GO-20199031253,THEFT UNDER,2019-09-23T00:00:00,2019,September,Monday,23,266,19,2019-09-23T00:00:00,2019,September,Monday,23,266,21,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,SCHWINN VOLARE,RC,14,WHI,600.0,STOLEN,22195,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22214,22441,GO-20209007057,THEFT UNDER - BICYCLE,2020-02-24T00:00:00,2020,February,Monday,24,55,19,2020-02-27T00:00:00,2020,February,Thursday,27,58,8,D53,Toronto,98,Rosedale-Moore Park (98),Ttc Subway Station,Transit,NO,VALENCE,RC,8,BLK,1400.0,STOLEN,22197,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22215,22442,GO-2020475009,THEFT UNDER,2020-03-05T00:00:00,2020,March,Thursday,5,65,12,2020-03-06T00:00:00,2020,March,Friday,6,66,15,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,AMIGO,,EL,7,GRYBLK,2200.0,STOLEN,22198,"{'type': 'Point', 'coordinates': (-79.38782632, 43.6728738)}"
-22216,25535,GO-20189015232,THEFT UNDER - BICYCLE,2018-05-16T00:00:00,2018,May,Wednesday,16,136,15,2018-05-16T00:00:00,2018,May,Wednesday,16,136,22,D53,Toronto,99,Mount Pleasant East (99),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,TAN COLOUR,RC,1,TAN,0.0,STOLEN,22199,"{'type': 'Point', 'coordinates': (-79.3999968, 43.71456699)}"
-22217,25656,GO-20191499438,THEFT UNDER - BICYCLE,2019-08-07T00:00:00,2019,August,Wednesday,7,219,23,2019-08-08T00:00:00,2019,August,Thursday,8,220,15,D53,Toronto,96,Casa Loma (96),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,MT,18,SIL,150.0,STOLEN,22200,"{'type': 'Point', 'coordinates': (-79.40145944, 43.6799128)}"
-22218,10434,GO-20159006896,THEFT UNDER,2015-09-08T00:00:00,2015,September,Tuesday,8,251,23,2015-09-09T00:00:00,2015,September,Wednesday,9,252,8,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,SIRRUS ELITE CA,TO,20,RED,1863.0,STOLEN,22201,"{'type': 'Point', 'coordinates': (-79.38197185, 43.68865178)}"
-22219,22398,GO-20199023175,THEFT UNDER - BICYCLE,2019-07-21T00:00:00,2019,July,Sunday,21,202,22,2019-07-22T00:00:00,2019,July,Monday,22,203,1,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,UK,,OT,7,DGR,500.0,STOLEN,22202,"{'type': 'Point', 'coordinates': (-79.39234422, 43.68394081)}"
-22220,5031,GO-20199025746,THEFT UNDER - BICYCLE,2019-08-11T00:00:00,2019,August,Sunday,11,223,5,2019-08-11T00:00:00,2019,August,Sunday,11,223,14,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,,PHENOM,MT,18,GRY,200.0,STOLEN,22203,"{'type': 'Point', 'coordinates': (-79.37092572, 43.67704191)}"
-22221,7109,GO-20209021638,THEFT UNDER - BICYCLE,2020-08-25T00:00:00,2020,August,Tuesday,25,238,13,2020-08-28T00:00:00,2020,August,Friday,28,241,13,D53,Toronto,99,Mount Pleasant East (99),"Apartment (Rooming House, Condo)",Apartment,GI,,TO,12,LBL,519.0,STOLEN,22204,"{'type': 'Point', 'coordinates': (-79.37711785, 43.71103745)}"
-22222,22497,GO-20209016942,THEFT UNDER - BICYCLE,2020-07-05T00:00:00,2020,July,Sunday,5,187,15,2020-07-06T00:00:00,2020,July,Monday,6,188,13,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ST. TROPEZ,RG,24,BLK,800.0,STOLEN,22205,"{'type': 'Point', 'coordinates': (-79.3926068, 43.68840573)}"
-22223,22498,GO-20209017051,THEFT UNDER - BICYCLE,2020-07-03T00:00:00,2020,July,Friday,3,185,15,2020-07-07T00:00:00,2020,July,Tuesday,7,189,15,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,8000,MT,24,SIL,400.0,STOLEN,22206,"{'type': 'Point', 'coordinates': (-79.37597366, 43.67766378)}"
-22224,22507,GO-20209017971,THEFT UNDER - BICYCLE,2020-07-18T00:00:00,2020,July,Saturday,18,200,19,2020-07-19T00:00:00,2020,July,Sunday,19,201,20,D53,Toronto,98,Rosedale-Moore Park (98),Ttc Subway Station,Transit,UK,NOUVELLE,RG,3,YEL,900.0,STOLEN,22207,"{'type': 'Point', 'coordinates': (-79.38411687, 43.67907204)}"
-22225,22534,GO-20209020945,THEFT UNDER - BICYCLE,2020-08-19T00:00:00,2020,August,Wednesday,19,232,20,2020-08-21T00:00:00,2020,August,Friday,21,234,20,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,15,GRN,450.0,STOLEN,22208,"{'type': 'Point', 'coordinates': (-79.39234422, 43.68394081)}"
-22226,22574,GO-20201850425,THEFT UNDER - BICYCLE,2020-09-25T00:00:00,2020,September,Friday,25,269,0,2020-09-29T00:00:00,2020,September,Tuesday,29,273,12,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,,MT,0,WHI,400.0,STOLEN,22209,"{'type': 'Point', 'coordinates': (-79.38769648000002, 43.68397138)}"
-22227,22577,GO-20209025591,THEFT UNDER - BICYCLE,2020-10-05T00:00:00,2020,October,Monday,5,279,18,2020-10-06T00:00:00,2020,October,Tuesday,6,280,14,D53,Toronto,98,Rosedale-Moore Park (98),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UK,STEP THROUGH,OT,8,BLK,900.0,STOLEN,22210,"{'type': 'Point', 'coordinates': (-79.38746342000002, 43.6719238)}"
-22228,22582,GO-20209027847,THEFT UNDER,2020-10-23T00:00:00,2020,October,Friday,23,297,15,2020-10-27T00:00:00,2020,October,Tuesday,27,301,15,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,TIKIT,FO,11,BLK,3900.0,STOLEN,22211,"{'type': 'Point', 'coordinates': (-79.39082826, 43.68212347)}"
-22229,22591,GO-20209029784,THEFT UNDER,2020-11-13T00:00:00,2020,November,Friday,13,318,13,2020-11-16T00:00:00,2020,November,Monday,16,321,18,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,TR,3700,MT,8,BLU,800.0,STOLEN,22212,"{'type': 'Point', 'coordinates': (-79.38984652, 43.68899269)}"
-22230,22812,GO-20141794391,THEFT UNDER,2014-03-25T00:00:00,2014,March,Tuesday,25,84,12,2014-03-30T00:00:00,2014,March,Sunday,30,89,9,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,H5,EL,1,BLK,1025.0,STOLEN,22213,"{'type': 'Point', 'coordinates': (-79.38746342000002, 43.6719238)}"
-22231,22813,GO-20141873517,THEFT UNDER,2014-04-11T00:00:00,2014,April,Friday,11,101,13,2014-04-11T00:00:00,2014,April,Friday,11,101,22,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KIWI,,EL,0,WHI,1000.0,STOLEN,22214,"{'type': 'Point', 'coordinates': (-79.38754395, 43.67216242)}"
-22232,22837,GO-20149003900,THEFT UNDER,2014-06-08T00:00:00,2014,June,Sunday,8,159,20,2014-06-08T00:00:00,2014,June,Sunday,8,159,20,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,MADONE 3.1,RC,16,BLU,2000.0,STOLEN,22215,"{'type': 'Point', 'coordinates': (-79.38526884, 43.67536914)}"
-22233,22863,GO-20149006148,THEFT UNDER,2014-08-20T00:00:00,2014,August,Wednesday,20,232,16,2014-08-20T00:00:00,2014,August,Wednesday,20,232,21,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RM,METRO 30,OT,18,WHI,0.0,STOLEN,22216,"{'type': 'Point', 'coordinates': (-79.38782632, 43.6728738)}"
-22234,22872,GO-20149007051,THEFT UNDER,2014-09-19T00:00:00,2014,September,Friday,19,262,7,2014-09-19T00:00:00,2014,September,Friday,19,262,20,D53,Toronto,98,Rosedale-Moore Park (98),Ttc Subway Station,Transit,OT,HARDROCK,MT,21,BLK,499.0,STOLEN,22217,"{'type': 'Point', 'coordinates': (-79.38949143, 43.67696204)}"
-22235,22898,GO-20159002693,THEFT UNDER,2015-04-28T00:00:00,2015,April,Tuesday,28,118,4,2015-05-13T00:00:00,2015,May,Wednesday,13,133,14,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,TR,,TO,3,WHI,900.0,STOLEN,22218,"{'type': 'Point', 'coordinates': (-79.37210175, 43.67442353)}"
-22236,22904,GO-2015921045,PROPERTY - FOUND,2015-06-03T00:00:00,2015,June,Wednesday,3,154,8,2015-06-03T00:00:00,2015,June,Wednesday,3,154,10,D53,Toronto,98,Rosedale-Moore Park (98),"Open Areas (Lakes, Parks, Rivers)",Outside,SCOTT,PEAK,MT,18,GRN,,UNKNOWN,22219,"{'type': 'Point', 'coordinates': (-79.3823765, 43.68073551)}"
-22237,22913,GO-20151282217,THEFT UNDER,2015-07-27T00:00:00,2015,July,Monday,27,208,12,2015-07-27T00:00:00,2015,July,Monday,27,208,12,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,,RG,12,,500.0,STOLEN,22220,"{'type': 'Point', 'coordinates': (-79.38894672, 43.67558881)}"
-22238,24150,GO-20209006048,THEFT UNDER,2020-02-19T00:00:00,2020,February,Wednesday,19,50,15,2020-02-19T00:00:00,2020,February,Wednesday,19,50,17,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MARES,RC,20,WHI,2000.0,STOLEN,22221,"{'type': 'Point', 'coordinates': (-79.42030175, 43.67185242)}"
-22239,22936,GO-20159007417,THEFT UNDER,2015-09-18T00:00:00,2015,September,Friday,18,261,16,2015-09-19T00:00:00,2015,September,Saturday,19,262,15,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,MT,9,CPR,0.0,STOLEN,22222,"{'type': 'Point', 'coordinates': (-79.38593172, 43.69328249)}"
-22240,22946,GO-20159010322,THEFT UNDER,2015-04-29T00:00:00,2015,April,Wednesday,29,119,18,2015-11-29T00:00:00,2015,November,Sunday,29,333,19,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,16,BLK,700.0,STOLEN,22223,"{'type': 'Point', 'coordinates': (-79.38809991, 43.68268105)}"
-22241,22955,GO-201686646,THEFT UNDER,2016-01-14T00:00:00,2016,January,Thursday,14,14,23,2016-01-15T00:00:00,2016,January,Friday,15,15,10,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,EMMO,GT5,EL,1,MRN,2000.0,STOLEN,22224,"{'type': 'Point', 'coordinates': (-79.39145198, 43.68864767)}"
-22242,22970,GO-20169004183,THEFT UNDER - BICYCLE,2016-05-05T00:00:00,2016,May,Thursday,5,126,17,2016-05-05T00:00:00,2016,May,Thursday,5,126,17,D53,Toronto,98,Rosedale-Moore Park (98),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,TMC 295,EL,1,RED,2400.0,STOLEN,22225,"{'type': 'Point', 'coordinates': (-79.39094710000002, 43.68055629)}"
-22243,22980,GO-20161157542,THEFT UNDER - BICYCLE,2016-07-02T00:00:00,2016,July,Saturday,2,184,16,2016-07-02T00:00:00,2016,July,Saturday,2,184,17,D53,Toronto,98,Rosedale-Moore Park (98),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,DAWES,,MT,21,REDSIL,,STOLEN,22226,"{'type': 'Point', 'coordinates': (-79.38746342000002, 43.6719238)}"
-22244,22983,GO-20161229297,THEFT UNDER - BICYCLE,2016-07-12T00:00:00,2016,July,Tuesday,12,194,16,2016-07-13T00:00:00,2016,July,Wednesday,13,195,16,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,,MT,0,GRY,230.0,STOLEN,22227,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22245,22992,GO-20169008723,THEFT UNDER - BICYCLE,2016-08-14T00:00:00,2016,August,Sunday,14,227,9,2016-08-14T00:00:00,2016,August,Sunday,14,227,11,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,GT GRADE ALLOY,RC,60,BLK,950.0,STOLEN,22228,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22246,22997,GO-20169009139,THEFT UNDER - BICYCLE,2016-07-08T00:00:00,2016,July,Friday,8,190,18,2016-08-20T00:00:00,2016,August,Saturday,20,233,15,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,TR,7300 FX,RG,21,GRY,250.0,STOLEN,22229,"{'type': 'Point', 'coordinates': (-79.38698444, 43.6895955)}"
-22247,25395,GO-20169010644,THEFT UNDER - BICYCLE,2016-09-17T00:00:00,2016,September,Saturday,17,261,23,2016-09-18T00:00:00,2016,September,Sunday,18,262,13,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,OT,UNO,RG,1,BLU,760.0,STOLEN,22230,"{'type': 'Point', 'coordinates': (-79.38782632, 43.6728738)}"
-22248,25400,GO-20169012011,THEFT UNDER - BICYCLE,2016-10-10T00:00:00,2016,October,Monday,10,284,6,2016-10-13T00:00:00,2016,October,Thursday,13,287,18,D53,Toronto,98,Rosedale-Moore Park (98),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,7.5FX,TO,21,WHI,1500.0,STOLEN,22231,"{'type': 'Point', 'coordinates': (-79.38883215, 43.67530065)}"
-22249,25401,GO-20169012036,THEFT UNDER - BICYCLE,2016-10-13T00:00:00,2016,October,Thursday,13,287,10,2016-10-14T00:00:00,2016,October,Friday,14,288,12,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,MALAHAT STEP TH,RG,21,TAN,100.0,STOLEN,22232,"{'type': 'Point', 'coordinates': (-79.38459861, 43.67181293)}"
-22250,25441,GO-20179006999,THEFT UNDER - BICYCLE,2017-05-25T00:00:00,2017,May,Thursday,25,145,9,2017-05-26T00:00:00,2017,May,Friday,26,146,9,D53,Toronto,98,Rosedale-Moore Park (98),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,ESCAPE 2,RG,20,BLK,300.0,STOLEN,22233,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22251,25480,GO-20171551838,THEFT OF EBIKE UNDER $5000,2017-08-12T00:00:00,2017,August,Saturday,12,224,16,2017-08-31T00:00:00,2017,August,Thursday,31,243,18,D53,Toronto,98,Rosedale-Moore Park (98),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,THC,COBRA 84VOLT,EL,6,PLE,2200.0,STOLEN,22234,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22252,25497,GO-20179018555,THEFT UNDER - BICYCLE,2017-10-19T00:00:00,2017,October,Thursday,19,292,18,2017-10-30T00:00:00,2017,October,Monday,30,303,17,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CUILLIN PRO,MT,21,RED,300.0,STOLEN,22235,"{'type': 'Point', 'coordinates': (-79.38718014, 43.67129793)}"
-22253,25500,GO-20179018913,THEFT UNDER - BICYCLE,2017-11-04T00:00:00,2017,November,Saturday,4,308,17,2017-11-04T00:00:00,2017,November,Saturday,4,308,21,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,,MT,21,BLU,0.0,STOLEN,22236,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22254,25503,GO-20179019951,THEFT UNDER - BICYCLE,2017-06-16T00:00:00,2017,June,Friday,16,167,17,2017-11-18T00:00:00,2017,November,Saturday,18,322,17,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BI,STRADA,RC,18,GRN,2000.0,STOLEN,22237,"{'type': 'Point', 'coordinates': (-79.38052643, 43.67161072)}"
-22255,25538,GO-2018940291,THEFT UNDER - BICYCLE,2018-05-24T00:00:00,2018,May,Thursday,24,144,12,2018-05-25T00:00:00,2018,May,Friday,25,145,11,D53,Toronto,98,Rosedale-Moore Park (98),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,JAMIS,DURANGO 1,MT,27,REDWHI,750.0,STOLEN,22238,"{'type': 'Point', 'coordinates': (-79.38746342000002, 43.6719238)}"
-22256,25599,GO-20189036237,THEFT UNDER - BICYCLE,2018-10-29T00:00:00,2018,October,Monday,29,302,8,2018-10-30T00:00:00,2018,October,Tuesday,30,303,16,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,TRICROSS,RC,9,BLK,2000.0,STOLEN,22239,"{'type': 'Point', 'coordinates': (-79.39410173, 43.68808307)}"
-22257,25602,GO-20182021555,PROPERTY - FOUND,2018-11-01T00:00:00,2018,November,Thursday,1,305,6,2018-11-02T00:00:00,2018,November,Friday,2,306,11,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SIMCOE,,RG,1,GRN,1000.0,UNKNOWN,22240,"{'type': 'Point', 'coordinates': (-79.38893719, 43.68251853)}"
-22258,25634,GO-20199018795,THEFT UNDER - BICYCLE,2019-06-15T00:00:00,2019,June,Saturday,15,166,22,2019-06-16T00:00:00,2019,June,Sunday,16,167,3,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,NO,15XFR 3 BLUE/RE,RG,6,DBL,1071.0,STOLEN,22241,"{'type': 'Point', 'coordinates': (-79.37942813, 43.6718256)}"
-22259,25664,GO-20199028902,THEFT UNDER - BICYCLE,2019-09-04T00:00:00,2019,September,Wednesday,4,247,16,2019-09-05T00:00:00,2019,September,Thursday,5,248,21,D53,Toronto,98,Rosedale-Moore Park (98),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,NO,,RG,10,DGR,200.0,STOLEN,22242,"{'type': 'Point', 'coordinates': (-79.39452744, 43.68913212)}"
-22260,22859,GO-20142673546,THEFT UNDER,2014-08-10T00:00:00,2014,August,Sunday,10,222,11,2014-08-10T00:00:00,2014,August,Sunday,10,222,12,D53,Toronto,97,Yonge-St.Clair (97),Retirement Home,Other,EMMO,,EL,6,RED,1000.0,STOLEN,22314,"{'type': 'Point', 'coordinates': (-79.4004901, 43.68430989)}"
-22261,25669,GO-20191751765,THEFT OVER - BICYCLE,2019-09-11T00:00:00,2019,September,Wednesday,11,254,11,2019-09-12T00:00:00,2019,September,Thursday,12,255,15,D53,Toronto,98,Rosedale-Moore Park (98),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,DEFI ADVANCED,OT,12,BLK,7000.0,STOLEN,22243,"{'type': 'Point', 'coordinates': (-79.38052643, 43.67161072)}"
-22262,25670,GO-20191751765,THEFT OVER - BICYCLE,2019-09-11T00:00:00,2019,September,Wednesday,11,254,11,2019-09-12T00:00:00,2019,September,Thursday,12,255,15,D53,Toronto,98,Rosedale-Moore Park (98),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,DEFI ADVANCED,OT,12,BLK,7000.0,STOLEN,22244,"{'type': 'Point', 'coordinates': (-79.38052643, 43.67161072)}"
-22263,25674,GO-20199031119,THEFT UNDER - BICYCLE,2019-09-21T00:00:00,2019,September,Saturday,21,264,12,2019-09-23T00:00:00,2019,September,Monday,23,266,9,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,21,BLK,1300.0,STOLEN,22245,"{'type': 'Point', 'coordinates': (-79.38312049, 43.67104631)}"
-22264,25684,GO-20199034157,THEFT UNDER - BICYCLE,2019-10-16T00:00:00,2019,October,Wednesday,16,289,20,2019-10-16T00:00:00,2019,October,Wednesday,16,289,21,D53,Toronto,98,Rosedale-Moore Park (98),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RM,VERTEX 70,MT,27,WHI,4400.0,STOLEN,22246,"{'type': 'Point', 'coordinates': (-79.39068757, 43.67989949)}"
-22265,25689,GO-20192226566,THEFT OF EBIKE UNDER $5000,2019-11-06T00:00:00,2019,November,Wednesday,6,310,15,2019-11-18T00:00:00,2019,November,Monday,18,322,10,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,XPB,EL,1,PNK,2600.0,STOLEN,22247,"{'type': 'Point', 'coordinates': (-79.38858969, 43.6838022)}"
-22266,25705,GO-2020622041,B&E,2020-03-28T00:00:00,2020,March,Saturday,28,88,0,2020-03-29T00:00:00,2020,March,Sunday,29,89,7,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MARIN,,OT,10,BLU,800.0,STOLEN,22248,"{'type': 'Point', 'coordinates': (-79.38683838, 43.67848968)}"
-22267,25720,GO-20209014681,THEFT UNDER,2020-06-05T00:00:00,2020,June,Friday,5,157,0,2020-06-06T00:00:00,2020,June,Saturday,6,158,18,D53,Toronto,98,Rosedale-Moore Park (98),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,1000,RG,24,WHI,1000.0,STOLEN,22249,"{'type': 'Point', 'coordinates': (-79.392814, 43.68502592)}"
-22268,25725,GO-20201101425,PROPERTY - FOUND,2020-06-15T00:00:00,2020,June,Monday,15,167,10,2020-06-15T00:00:00,2020,June,Monday,15,167,16,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,PREMIUM SOLO,BM,1,BLKRED,,UNKNOWN,22250,"{'type': 'Point', 'coordinates': (-79.38526884, 43.67536914)}"
-22269,25727,GO-20209015574,THEFT UNDER - BICYCLE,2020-06-17T00:00:00,2020,June,Wednesday,17,169,9,2020-06-17T00:00:00,2020,June,Wednesday,17,169,14,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,EL,30,BLK,3500.0,STOLEN,22251,"{'type': 'Point', 'coordinates': (-79.39366497, 43.68713303)}"
-22270,25733,GO-20201175798,B&E,2020-06-16T00:00:00,2020,June,Tuesday,16,168,11,2020-06-26T00:00:00,2020,June,Friday,26,178,11,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,U/K,MT,21,BLU,8000.0,STOLEN,22252,"{'type': 'Point', 'coordinates': (-79.37381994, 43.68098743)}"
-22271,25734,GO-20201175798,B&E,2020-06-16T00:00:00,2020,June,Tuesday,16,168,11,2020-06-26T00:00:00,2020,June,Friday,26,178,11,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,U/K,RC,21,BLK,15000.0,STOLEN,22253,"{'type': 'Point', 'coordinates': (-79.37381994, 43.68098743)}"
-22272,25735,GO-20201175798,B&E,2020-06-16T00:00:00,2020,June,Tuesday,16,168,11,2020-06-26T00:00:00,2020,June,Friday,26,178,11,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCOTT,U/K,MT,21,BLKWHI,12000.0,STOLEN,22254,"{'type': 'Point', 'coordinates': (-79.37381994, 43.68098743)}"
-22273,25752,GO-20209018130,THEFT UNDER - BICYCLE,2020-07-21T00:00:00,2020,July,Tuesday,21,203,10,2020-07-21T00:00:00,2020,July,Tuesday,21,203,13,D53,Toronto,98,Rosedale-Moore Park (98),Ttc Subway Station,Transit,CC,ALPHA DUAL SUSP,MT,21,BLK,350.0,STOLEN,22255,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22274,25757,GO-20209019481,THEFT UNDER - BICYCLE,2020-08-03T00:00:00,2020,August,Monday,3,216,13,2020-08-05T00:00:00,2020,August,Wednesday,5,218,20,D53,Toronto,98,Rosedale-Moore Park (98),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,,MT,3,BLK,0.0,STOLEN,22256,"{'type': 'Point', 'coordinates': (-79.39145198, 43.68864767)}"
-22275,25767,GO-20209021994,THEFT FROM MOTOR VEHICLE UNDER,2020-09-01T00:00:00,2020,September,Tuesday,1,245,11,2020-09-01T00:00:00,2020,September,Tuesday,1,245,14,D53,Toronto,98,Rosedale-Moore Park (98),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ROAD,RC,20,BLK,977.0,STOLEN,22257,"{'type': 'Point', 'coordinates': (-79.38958887, 43.68009143)}"
-22276,25770,GO-20209022862,THEFT UNDER - BICYCLE,2020-09-05T00:00:00,2020,September,Saturday,5,249,19,2020-09-10T00:00:00,2020,September,Thursday,10,254,14,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,CC,,RG,21,,700.0,STOLEN,22258,"{'type': 'Point', 'coordinates': (-79.38782632, 43.6728738)}"
-22277,25774,GO-20209023802,THEFT UNDER - BICYCLE,2020-09-18T00:00:00,2020,September,Friday,18,262,3,2020-09-18T00:00:00,2020,September,Friday,18,262,20,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,,MT,7,ONG,1000.0,STOLEN,22259,"{'type': 'Point', 'coordinates': (-79.3841564, 43.67465241)}"
-22278,161,GO-20179003452,THEFT UNDER - BICYCLE,2017-03-10T00:00:00,2017,March,Friday,10,69,0,2017-03-19T00:00:00,2017,March,Sunday,19,78,21,D53,Toronto,99,Mount Pleasant East (99),"Apartment (Rooming House, Condo)",Apartment,OT,ROUBAIX 2014,RC,20,BLK,2800.0,STOLEN,22260,"{'type': 'Point', 'coordinates': (-79.3883266, 43.7100694)}"
-22279,396,GO-20179006345,THEFT UNDER - BICYCLE,2017-05-15T00:00:00,2017,May,Monday,15,135,16,2017-05-15T00:00:00,2017,May,Monday,15,135,20,D53,Toronto,99,Mount Pleasant East (99),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,MT,21,BLU,500.0,STOLEN,22261,"{'type': 'Point', 'coordinates': (-79.3999968, 43.71456699)}"
-22280,1290,GO-20179013883,THEFT UNDER - BICYCLE,2017-08-26T00:00:00,2017,August,Saturday,26,238,11,2017-09-02T00:00:00,2017,September,Saturday,2,245,12,D53,Toronto,99,Mount Pleasant East (99),"Apartment (Rooming House, Condo)",Apartment,NO,YORKVILLE,RG,21,BLU,675.0,STOLEN,22262,"{'type': 'Point', 'coordinates': (-79.38016668, 43.7104196)}"
-22281,1445,GO-20179015074,THEFT UNDER - BICYCLE,2017-09-15T00:00:00,2017,September,Friday,15,258,14,2017-09-18T00:00:00,2017,September,Monday,18,261,22,D53,Toronto,99,Mount Pleasant East (99),Schools During Supervised Activity,Educational,OT,STUMP JUMPER,MT,21,BLK,1500.0,STOLEN,22263,"{'type': 'Point', 'coordinates': (-79.39118625, 43.71112991)}"
-22282,1532,GO-20179015865,THEFT UNDER - BICYCLE,2017-09-26T00:00:00,2017,September,Tuesday,26,269,11,2017-09-26T00:00:00,2017,September,Tuesday,26,269,16,D53,Toronto,99,Mount Pleasant East (99),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,DUAL SPORT,RG,24,BLK,949.0,STOLEN,22264,"{'type': 'Point', 'coordinates': (-79.38666777, 43.70035376)}"
-22283,1654,GO-20179017097,THEFT UNDER - BICYCLE,2017-10-06T00:00:00,2017,October,Friday,6,279,13,2017-10-13T00:00:00,2017,October,Friday,13,286,13,D53,Toronto,99,Mount Pleasant East (99),"Apartment (Rooming House, Condo)",Apartment,CA,,MT,24,WHI,300.0,STOLEN,22265,"{'type': 'Point', 'coordinates': (-79.37960262, 43.71052702)}"
-22284,1660,GO-20179017218,THEFT UNDER - BICYCLE,2017-09-26T00:00:00,2017,September,Tuesday,26,269,10,2017-10-14T00:00:00,2017,October,Saturday,14,287,20,D53,Toronto,99,Mount Pleasant East (99),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,TO,24,BLK,1200.0,STOLEN,22266,"{'type': 'Point', 'coordinates': (-79.38666777, 43.70035376)}"
-22285,2368,GO-20189015782,THEFT UNDER,2018-05-10T00:00:00,2018,May,Thursday,10,130,1,2018-05-22T00:00:00,2018,May,Tuesday,22,142,13,D53,Toronto,99,Mount Pleasant East (99),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,STP SS,OT,1,WHI,1100.0,STOLEN,22267,"{'type': 'Point', 'coordinates': (-79.39442018, 43.71206328)}"
-22286,2369,GO-20189015782,THEFT UNDER,2018-05-10T00:00:00,2018,May,Thursday,10,130,1,2018-05-22T00:00:00,2018,May,Tuesday,22,142,13,D53,Toronto,99,Mount Pleasant East (99),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,NOT SURE,MT,21,DBL,0.0,STOLEN,22268,"{'type': 'Point', 'coordinates': (-79.39442018, 43.71206328)}"
-22287,2370,GO-20189015782,THEFT UNDER,2018-05-10T00:00:00,2018,May,Thursday,10,130,1,2018-05-22T00:00:00,2018,May,Tuesday,22,142,13,D53,Toronto,99,Mount Pleasant East (99),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,EASTERN WOLFDOG,BM,1,BLK,600.0,STOLEN,22269,"{'type': 'Point', 'coordinates': (-79.39442018, 43.71206328)}"
-22288,2731,GO-20181181463,THEFT UNDER - BICYCLE,2018-06-23T00:00:00,2018,June,Saturday,23,174,11,2018-06-29T00:00:00,2018,June,Friday,29,180,10,D53,Toronto,99,Mount Pleasant East (99),"Private Property Structure (Pool, Shed, Detached Garage)",Other,YETI,,MT,24,TRQBLK,4999.0,STOLEN,22270,"{'type': 'Point', 'coordinates': (-79.3786832, 43.70821722)}"
-22289,3171,GO-20189026028,THEFT UNDER - BICYCLE,2018-08-12T00:00:00,2018,August,Sunday,12,224,5,2018-08-12T00:00:00,2018,August,Sunday,12,224,8,D53,Toronto,99,Mount Pleasant East (99),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,10,PLE,650.0,STOLEN,22271,"{'type': 'Point', 'coordinates': (-79.3883266, 43.7100694)}"
-22290,3445,GO-20189030023,THEFT UNDER - BICYCLE,2018-09-11T00:00:00,2018,September,Tuesday,11,254,12,2018-09-11T00:00:00,2018,September,Tuesday,11,254,21,D53,Toronto,99,Mount Pleasant East (99),Schools During Supervised Activity,Educational,GI,XS,RG,10,BLU,500.0,STOLEN,22272,"{'type': 'Point', 'coordinates': (-79.39118625, 43.71112991)}"
-22291,3449,GO-20189030023,THEFT UNDER - BICYCLE,2018-09-11T00:00:00,2018,September,Tuesday,11,254,12,2018-09-11T00:00:00,2018,September,Tuesday,11,254,21,D53,Toronto,99,Mount Pleasant East (99),Schools During Supervised Activity,Educational,GI,REVEL 3 SPORT,MT,7,BLU,400.0,STOLEN,22273,"{'type': 'Point', 'coordinates': (-79.39118625, 43.71112991)}"
-22292,3462,GO-20189030319,THEFT UNDER - BICYCLE,2018-09-13T00:00:00,2018,September,Thursday,13,256,8,2018-09-13T00:00:00,2018,September,Thursday,13,256,18,D53,Toronto,99,Mount Pleasant East (99),Schools During Supervised Activity,Educational,KH,AGUILA,MT,27,WHI,1300.0,STOLEN,22274,"{'type': 'Point', 'coordinates': (-79.39118625, 43.71112991)}"
-22293,3477,GO-20181717466,THEFT UNDER - BICYCLE,2018-09-15T00:00:00,2018,September,Saturday,15,258,11,2018-09-16T00:00:00,2018,September,Sunday,16,259,14,D53,Toronto,99,Mount Pleasant East (99),"Apartment (Rooming House, Condo)",Apartment,TREK,FX4 WSD,OT,18,OTH,1500.0,STOLEN,22275,"{'type': 'Point', 'coordinates': (-79.38616020000002, 43.70919255)}"
-22294,3615,GO-20189032911,THEFT UNDER - BICYCLE,2018-09-27T00:00:00,2018,September,Thursday,27,270,19,2018-10-04T00:00:00,2018,October,Thursday,4,277,19,D53,Toronto,99,Mount Pleasant East (99),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,DS 2,MT,10,,994.0,STOLEN,22276,"{'type': 'Point', 'coordinates': (-79.38666777, 43.70035376)}"
-22295,4264,GO-2019850827,THEFT UNDER - BICYCLE,2019-05-10T00:00:00,2019,May,Friday,10,130,14,2019-05-10T00:00:00,2019,May,Friday,10,130,15,D53,Toronto,99,Mount Pleasant East (99),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,,MT,10,BLK,600.0,STOLEN,22277,"{'type': 'Point', 'coordinates': (-79.37830655, 43.710773190000005)}"
-22296,4374,GO-2019985533,B&E,2019-05-25T00:00:00,2019,May,Saturday,25,145,8,2019-05-29T00:00:00,2019,May,Wednesday,29,149,17,D53,Toronto,99,Mount Pleasant East (99),"Apartment (Rooming House, Condo)",Apartment,OTHER,RAPTOR,EL,5,YELBLK,1600.0,STOLEN,22278,"{'type': 'Point', 'coordinates': (-79.38316772, 43.70981512)}"
-22297,4375,GO-2019985533,B&E,2019-05-25T00:00:00,2019,May,Saturday,25,145,8,2019-05-29T00:00:00,2019,May,Wednesday,29,149,17,D53,Toronto,99,Mount Pleasant East (99),"Apartment (Rooming House, Condo)",Apartment,SUPERCYCLE,MOUNTAIN,MT,18,BLKGRY,250.0,STOLEN,22279,"{'type': 'Point', 'coordinates': (-79.38316772, 43.70981512)}"
-22298,4468,GO-20199018364,THEFT UNDER - BICYCLE,2019-06-07T00:00:00,2019,June,Friday,7,158,14,2019-06-12T00:00:00,2019,June,Wednesday,12,163,18,D53,Toronto,99,Mount Pleasant East (99),Schools During Supervised Activity,Educational,GI,ATX2,MT,21,BLK,700.0,STOLEN,22280,"{'type': 'Point', 'coordinates': (-79.39118625, 43.71112991)}"
-22299,4493,GO-20199018673,THEFT UNDER - BICYCLE,2019-06-14T00:00:00,2019,June,Friday,14,165,10,2019-06-14T00:00:00,2019,June,Friday,14,165,23,D53,Toronto,99,Mount Pleasant East (99),"Apartment (Rooming House, Condo)",Apartment,UK,WMC-T27-1040,MT,21,BLK,250.0,STOLEN,22281,"{'type': 'Point', 'coordinates': (-79.39978136, 43.71352981)}"
-22300,4506,GO-20199018673,THEFT UNDER - BICYCLE,2019-06-14T00:00:00,2019,June,Friday,14,165,10,2019-06-14T00:00:00,2019,June,Friday,14,165,23,D53,Toronto,99,Mount Pleasant East (99),"Apartment (Rooming House, Condo)",Apartment,UK,WMC-T27-1040,MT,21,BLK,250.0,STOLEN,22282,"{'type': 'Point', 'coordinates': (-79.39978136, 43.71352981)}"
-22301,4611,GO-20191191866,B&E,2019-06-22T00:00:00,2019,June,Saturday,22,173,18,2019-06-27T00:00:00,2019,June,Thursday,27,178,9,D53,Toronto,99,Mount Pleasant East (99),"Apartment (Rooming House, Condo)",Apartment,GIANT,ESCAPE,MT,21,GRY,1000.0,STOLEN,22283,"{'type': 'Point', 'coordinates': (-79.39262767, 43.71498286)}"
-22302,4612,GO-20191191866,B&E,2019-06-22T00:00:00,2019,June,Saturday,22,173,18,2019-06-27T00:00:00,2019,June,Thursday,27,178,9,D53,Toronto,99,Mount Pleasant East (99),"Apartment (Rooming House, Condo)",Apartment,OTHER,UNKNOWN,BM,1,,250.0,STOLEN,22284,"{'type': 'Point', 'coordinates': (-79.39262767, 43.71498286)}"
-22303,4613,GO-20191191866,B&E,2019-06-22T00:00:00,2019,June,Saturday,22,173,18,2019-06-27T00:00:00,2019,June,Thursday,27,178,9,D53,Toronto,99,Mount Pleasant East (99),"Apartment (Rooming House, Condo)",Apartment,OTHER,UNKNOWN,BM,1,PNK,100.0,STOLEN,22285,"{'type': 'Point', 'coordinates': (-79.39262767, 43.71498286)}"
-22304,5224,GO-20191692000,B&E,2019-09-03T00:00:00,2019,September,Tuesday,3,246,18,2019-09-04T00:00:00,2019,September,Wednesday,4,247,13,D53,Toronto,99,Mount Pleasant East (99),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,ALLEZ ELITE,RC,18,REDWHI,7000.0,STOLEN,22286,"{'type': 'Point', 'coordinates': (-79.37603001, 43.70488388)}"
-22305,5225,GO-20191692000,B&E,2019-09-03T00:00:00,2019,September,Tuesday,3,246,18,2019-09-04T00:00:00,2019,September,Wednesday,4,247,13,D53,Toronto,99,Mount Pleasant East (99),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FELTS,ZW6,RC,20,BLKONG,4000.0,STOLEN,22287,"{'type': 'Point', 'coordinates': (-79.37603001, 43.70488388)}"
-22306,5492,GO-20199032662,THEFT UNDER - BICYCLE,2019-10-04T00:00:00,2019,October,Friday,4,277,21,2019-10-04T00:00:00,2019,October,Friday,4,277,21,D53,Toronto,99,Mount Pleasant East (99),"Apartment (Rooming House, Condo)",Apartment,GT,,RG,21,GRN,,STOLEN,22288,"{'type': 'Point', 'coordinates': (-79.3864381, 43.69817521)}"
-22307,5677,GO-20192179265,THEFT UNDER - BICYCLE,2019-10-25T00:00:00,2019,October,Friday,25,298,19,2019-11-11T00:00:00,2019,November,Monday,11,315,12,D53,Toronto,99,Mount Pleasant East (99),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DEVINCI,,RG,10,BLKYEL,,STOLEN,22289,"{'type': 'Point', 'coordinates': (-79.38629235, 43.69939475)}"
-22308,5728,GO-20199038990,THEFT UNDER - BICYCLE,2019-11-25T00:00:00,2019,November,Monday,25,329,10,2019-11-27T00:00:00,2019,November,Wednesday,27,331,10,D53,Toronto,99,Mount Pleasant East (99),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,YORKVILLE,RG,21,DGR,529.0,STOLEN,22290,"{'type': 'Point', 'coordinates': (-79.38925182, 43.70608563)}"
-22309,5782,GO-20199041781,THEFT UNDER,2019-12-22T00:00:00,2019,December,Sunday,22,356,10,2019-12-22T00:00:00,2019,December,Sunday,22,356,22,D53,Toronto,99,Mount Pleasant East (99),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,DUAL SPORT 2,MT,7,BLK,1000.0,STOLEN,22291,"{'type': 'Point', 'coordinates': (-79.3883266, 43.7100694)}"
-22310,5944,GO-20209007832,THEFT UNDER - BICYCLE,2020-03-05T00:00:00,2020,March,Thursday,5,65,13,2020-03-05T00:00:00,2020,March,Thursday,5,65,13,D53,Toronto,99,Mount Pleasant East (99),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,AGRESSOR,MT,21,BLK,300.0,STOLEN,22292,"{'type': 'Point', 'coordinates': (-79.37409289, 43.70300049)}"
-22311,5981,GO-20209009536,THEFT UNDER,2019-09-01T00:00:00,2019,September,Sunday,1,244,1,2020-03-21T00:00:00,2020,March,Saturday,21,81,18,D53,Toronto,99,Mount Pleasant East (99),"Apartment (Rooming House, Condo)",Apartment,TR,MARLIN 5,MT,21,BLK,640.0,STOLEN,22293,"{'type': 'Point', 'coordinates': (-79.3883266, 43.7100694)}"
-22312,6116,GO-20209012119,THEFT UNDER - BICYCLE,2020-04-28T00:00:00,2020,April,Tuesday,28,119,5,2020-04-28T00:00:00,2020,April,Tuesday,28,119,18,D53,Toronto,99,Mount Pleasant East (99),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,,RG,12,BLU,300.0,STOLEN,22294,"{'type': 'Point', 'coordinates': (-79.38925182, 43.70608563)}"
-22313,6117,GO-20209012119,THEFT UNDER - BICYCLE,2020-04-28T00:00:00,2020,April,Tuesday,28,119,5,2020-04-28T00:00:00,2020,April,Tuesday,28,119,18,D53,Toronto,99,Mount Pleasant East (99),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,MT,12,WHI,600.0,STOLEN,22295,"{'type': 'Point', 'coordinates': (-79.38925182, 43.70608563)}"
-22314,6118,GO-20209012119,THEFT UNDER - BICYCLE,2020-04-28T00:00:00,2020,April,Tuesday,28,119,5,2020-04-28T00:00:00,2020,April,Tuesday,28,119,18,D53,Toronto,99,Mount Pleasant East (99),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,RG,10,WHI,200.0,STOLEN,22296,"{'type': 'Point', 'coordinates': (-79.38925182, 43.70608563)}"
-22315,6141,GO-20209012506,THEFT UNDER - BICYCLE,2020-05-02T00:00:00,2020,May,Saturday,2,123,16,2020-05-05T00:00:00,2020,May,Tuesday,5,126,10,D53,Toronto,99,Mount Pleasant East (99),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,,TO,21,GRY,0.0,STOLEN,22297,"{'type': 'Point', 'coordinates': (-79.38120324, 43.71021365)}"
-22316,6503,GO-20209016523,THEFT UNDER - BICYCLE,2020-06-29T00:00:00,2020,June,Monday,29,181,3,2020-06-30T00:00:00,2020,June,Tuesday,30,182,8,D53,Toronto,99,Mount Pleasant East (99),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,,RC,10,TRQ,1500.0,STOLEN,22298,"{'type': 'Point', 'coordinates': (-79.379632, 43.70185879)}"
-22317,6505,GO-20209016578,THEFT UNDER - BICYCLE,2020-06-28T00:00:00,2020,June,Sunday,28,180,17,2020-06-30T00:00:00,2020,June,Tuesday,30,182,16,D53,Toronto,99,Mount Pleasant East (99),"Apartment (Rooming House, Condo)",Apartment,GT,AGRESSOR SPORT,MT,21,BLK,550.0,STOLEN,22299,"{'type': 'Point', 'coordinates': (-79.3883266, 43.7100694)}"
-22318,6734,GO-20209018499,THEFT UNDER - BICYCLE,2020-07-25T00:00:00,2020,July,Saturday,25,207,2,2020-07-25T00:00:00,2020,July,Saturday,25,207,10,D53,Toronto,99,Mount Pleasant East (99),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,5,BLU,250.0,STOLEN,22300,"{'type': 'Point', 'coordinates': (-79.38051586, 43.71144527)}"
-22319,6930,GO-20209019828,THEFT UNDER - BICYCLE,2020-08-09T00:00:00,2020,August,Sunday,9,222,21,2020-08-10T00:00:00,2020,August,Monday,10,223,14,D53,Toronto,99,Mount Pleasant East (99),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,10,RED,0.0,STOLEN,22301,"{'type': 'Point', 'coordinates': (-79.3883266, 43.7100694)}"
-22320,6943,GO-20209019982,THEFT UNDER,2020-08-11T00:00:00,2020,August,Tuesday,11,224,19,2020-08-12T00:00:00,2020,August,Wednesday,12,225,8,D53,Toronto,99,Mount Pleasant East (99),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,HYBRID,RG,21,ONG,600.0,STOLEN,22302,"{'type': 'Point', 'coordinates': (-79.38861937, 43.71163613)}"
-22321,7065,GO-20209021204,THEFT UNDER - BICYCLE,2020-08-23T00:00:00,2020,August,Sunday,23,236,22,2020-08-24T00:00:00,2020,August,Monday,24,237,21,D53,Toronto,99,Mount Pleasant East (99),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,,OT,21,SIL,300.0,STOLEN,22303,"{'type': 'Point', 'coordinates': (-79.38889326, 43.70518065)}"
-22322,7086,GO-20209021439,THEFT UNDER - BICYCLE,2020-08-18T00:00:00,2020,August,Tuesday,18,231,10,2020-08-26T00:00:00,2020,August,Wednesday,26,239,16,D53,Toronto,99,Mount Pleasant East (99),"Apartment (Rooming House, Condo)",Apartment,CC,,MT,21,RED,399.0,STOLEN,22304,"{'type': 'Point', 'coordinates': (-79.38804805, 43.71012575)}"
-22323,22593,GO-20209030119,THEFT UNDER,2020-11-15T00:00:00,2020,November,Sunday,15,320,10,2020-11-20T00:00:00,2020,November,Friday,20,325,11,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,OT,URBAN,RG,7,PNK,300.0,STOLEN,22305,"{'type': 'Point', 'coordinates': (-79.3972217, 43.69465737)}"
-22324,5032,GO-20199025746,THEFT UNDER - BICYCLE,2019-08-11T00:00:00,2019,August,Sunday,11,223,5,2019-08-11T00:00:00,2019,August,Sunday,11,223,14,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,RG,18,YEL,1000.0,STOLEN,22306,"{'type': 'Point', 'coordinates': (-79.37092572, 43.67704191)}"
-22325,25542,GO-20181009212,THEFT OVER - BICYCLE,2018-06-04T00:00:00,2018,June,Monday,4,155,5,2018-06-04T00:00:00,2018,June,Monday,4,155,9,D53,Toronto,99,Mount Pleasant East (99),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RIDLEY,X NIGHT,OT,20,WHI,6000.0,STOLEN,22307,"{'type': 'Point', 'coordinates': (-79.38964434, 43.71301971)}"
-22326,7197,GO-20209022540,THEFT UNDER,2020-09-07T00:00:00,2020,September,Monday,7,251,16,2020-09-07T00:00:00,2020,September,Monday,7,251,16,D53,Toronto,99,Mount Pleasant East (99),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,7,BLU,0.0,STOLEN,22308,"{'type': 'Point', 'coordinates': (-79.3883266, 43.7100694)}"
-22327,25663,GO-20199027872,THEFT UNDER,2019-08-26T00:00:00,2019,August,Monday,26,238,23,2019-08-27T00:00:00,2019,August,Tuesday,27,239,18,D53,Toronto,96,Casa Loma (96),"Apartment (Rooming House, Condo)",Apartment,NO,,RG,8,LGR,500.0,STOLEN,22309,"{'type': 'Point', 'coordinates': (-79.39869325, 43.67996197)}"
-22328,10435,GO-20159006896,THEFT UNDER,2015-09-08T00:00:00,2015,September,Tuesday,8,251,23,2015-09-09T00:00:00,2015,September,Wednesday,9,252,8,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,STUMPJUMPER FSR,MT,18,RED,2657.0,STOLEN,22310,"{'type': 'Point', 'coordinates': (-79.38197185, 43.68865178)}"
-22329,24160,GO-20209010980,THEFT UNDER,2020-04-05T00:00:00,2020,April,Sunday,5,96,19,2020-04-12T00:00:00,2020,April,Sunday,12,103,15,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,GT,GRADE 2016,OT,10,BLU,1000.0,STOLEN,22311,"{'type': 'Point', 'coordinates': (-79.40623518, 43.66616454)}"
-22330,22828,GO-20149003527,THEFT UNDER,2014-05-22T00:00:00,2014,May,Thursday,22,142,8,2014-05-23T00:00:00,2014,May,Friday,23,143,9,D53,Toronto,97,Yonge-St.Clair (97),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KH,URBAN XPRESS,OT,9,BLK,630.0,STOLEN,22312,"{'type': 'Point', 'coordinates': (-79.39234422, 43.68394081)}"
-22331,24162,GO-20209011147,THEFT UNDER - BICYCLE,2020-04-14T00:00:00,2020,April,Tuesday,14,105,19,2020-04-14T00:00:00,2020,April,Tuesday,14,105,21,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,STUMPJUMER M4,MT,27,SIL,2500.0,STOLEN,22313,"{'type': 'Point', 'coordinates': (-79.40623518, 43.66616454)}"
-22332,24165,GO-2020752574,THEFT UNDER - BICYCLE,2020-04-17T00:00:00,2020,April,Friday,17,108,8,2020-04-20T00:00:00,2020,April,Monday,20,111,7,D14,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SUPERCYCLE,700C,MT,1,BLU,225.0,STOLEN,22315,"{'type': 'Point', 'coordinates': (-79.41047653, 43.67397307)}"
-22333,22869,GO-20149006976,THEFT UNDER,2014-09-11T00:00:00,2014,September,Thursday,11,254,0,2014-09-17T00:00:00,2014,September,Wednesday,17,260,12,D53,Toronto,97,Yonge-St.Clair (97),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,,MT,6,BLU,500.0,STOLEN,22316,"{'type': 'Point', 'coordinates': (-79.3995445, 43.69512024)}"
-22334,24212,GO-20179012692,THEFT UNDER - BICYCLE,2017-08-17T00:00:00,2017,August,Thursday,17,229,14,2017-08-17T00:00:00,2017,August,Thursday,17,229,21,D14,Toronto,95,Annex (95),Ttc Subway Station,Transit,RA,,MT,18,SIL,100.0,STOLEN,22317,"{'type': 'Point', 'coordinates': (-79.41853537, 43.66394772)}"
-22335,22870,GO-20149006976,THEFT UNDER,2014-09-11T00:00:00,2014,September,Thursday,11,254,0,2014-09-17T00:00:00,2014,September,Wednesday,17,260,12,D53,Toronto,97,Yonge-St.Clair (97),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,MT,10,BLU,500.0,STOLEN,22318,"{'type': 'Point', 'coordinates': (-79.3995445, 43.69512024)}"
-22336,24269,GO-20179022031,THEFT UNDER,2017-12-12T00:00:00,2017,December,Tuesday,12,346,0,2017-12-13T00:00:00,2017,December,Wednesday,13,347,1,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,KH,SOLO ONE,MT,1,BRN,0.0,STOLEN,22319,"{'type': 'Point', 'coordinates': (-79.40623518, 43.66616454)}"
-22337,22951,GO-20159010951,THEFT UNDER,2015-12-14T00:00:00,2015,December,Monday,14,348,10,2015-12-15T00:00:00,2015,December,Tuesday,15,349,14,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,PE,WHITE,RC,6,WHI,1500.0,STOLEN,22320,"{'type': 'Point', 'coordinates': (-79.3972217, 43.69465737)}"
-22338,24359,GO-20189025966,THEFT UNDER - BICYCLE,2018-08-10T00:00:00,2018,August,Friday,10,222,18,2018-08-11T00:00:00,2018,August,Saturday,11,223,13,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MIDTOWN UNISEX,OT,18,WHI,700.0,STOLEN,22321,"{'type': 'Point', 'coordinates': (-79.40995373, 43.66538876)}"
-22339,22982,GO-20169007045,THEFT UNDER - BICYCLE,2016-07-11T00:00:00,2016,July,Monday,11,193,14,2016-07-11T00:00:00,2016,July,Monday,11,193,20,D53,Toronto,97,Yonge-St.Clair (97),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,2015 TRAIL 7,MT,18,BLK,750.0,STOLEN,22322,"{'type': 'Point', 'coordinates': (-79.40215094, 43.69457583)}"
-22340,24360,GO-20189026247,THEFT UNDER,2018-08-13T00:00:00,2018,August,Monday,13,225,7,2018-08-13T00:00:00,2018,August,Monday,13,225,19,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,520,TO,3,BLK,1500.0,STOLEN,22323,"{'type': 'Point', 'coordinates': (-79.41394991, 43.672149090000005)}"
-22341,24363,GO-20189026545,THEFT UNDER - BICYCLE,2018-08-13T00:00:00,2018,August,Monday,13,225,19,2018-08-15T00:00:00,2018,August,Wednesday,15,227,18,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,MT,21,SIL,400.0,STOLEN,22324,"{'type': 'Point', 'coordinates': (-79.40623518, 43.66616454)}"
-22342,24579,GO-20179008971,THEFT UNDER - BICYCLE,2017-06-26T00:00:00,2017,June,Monday,26,177,18,2017-06-26T00:00:00,2017,June,Monday,26,177,21,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,BM,10,,0.0,STOLEN,22325,"{'type': 'Point', 'coordinates': (-79.41361049000001, 43.66461685)}"
-22343,24605,GO-20149004142,THEFT UNDER,2014-06-15T00:00:00,2014,June,Sunday,15,166,15,2014-06-16T00:00:00,2014,June,Monday,16,167,18,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,EM,MAX,EL,50,BLK,2000.0,STOLEN,22326,"{'type': 'Point', 'coordinates': (-79.40600258, 43.67218781)}"
-22344,24625,GO-20142507596,THEFT UNDER,2014-07-11T00:00:00,2014,July,Friday,11,192,0,2014-07-16T00:00:00,2014,July,Wednesday,16,197,9,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,GLOBE ROLL,OT,1,BLK,1000.0,STOLEN,22327,"{'type': 'Point', 'coordinates': (-79.41586612, 43.67041565)}"
-22345,24626,GO-20142507596,THEFT UNDER,2014-07-11T00:00:00,2014,July,Friday,11,192,0,2014-07-16T00:00:00,2014,July,Wednesday,16,197,9,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,HYBRID,OT,21,BLK,1000.0,STOLEN,22328,"{'type': 'Point', 'coordinates': (-79.41586612, 43.67041565)}"
-22346,24627,GO-20142507596,THEFT UNDER,2014-07-11T00:00:00,2014,July,Friday,11,192,0,2014-07-16T00:00:00,2014,July,Wednesday,16,197,9,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,HYBRID,OT,21,BLK,1000.0,STOLEN,22329,"{'type': 'Point', 'coordinates': (-79.41586612, 43.67041565)}"
-22347,24665,GO-20143084576,THEFT UNDER,2014-10-11T00:00:00,2014,October,Saturday,11,284,5,2014-10-11T00:00:00,2014,October,Saturday,11,284,9,D14,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,TEV - WASAGA,EL,1,RED,1000.0,STOLEN,22330,"{'type': 'Point', 'coordinates': (-79.40637158, 43.66842414)}"
-22348,24705,GO-2015958786,THEFT UNDER,2015-06-08T00:00:00,2015,June,Monday,8,159,0,2015-06-08T00:00:00,2015,June,Monday,8,159,10,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KONA,MOKOMOKO,MT,0,BLU,1500.0,STOLEN,22331,"{'type': 'Point', 'coordinates': (-79.41836917, 43.66681301)}"
-22349,24712,GO-20151049300,THEFT UNDER,2015-06-21T00:00:00,2015,June,Sunday,21,172,18,2015-06-22T00:00:00,2015,June,Monday,22,173,11,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,HUFFY,,MT,18,BLUGRY,,STOLEN,22332,"{'type': 'Point', 'coordinates': (-79.41595233, 43.6640885)}"
-22350,24771,GO-20151914494,THEFT UNDER,2015-11-06T00:00:00,2015,November,Friday,6,310,22,2015-11-07T00:00:00,2015,November,Saturday,7,311,12,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,JAMIS,,MT,21,SIL,1600.0,STOLEN,22333,"{'type': 'Point', 'coordinates': (-79.41293786, 43.66959481)}"
-22351,24776,GO-20169000341,THEFT UNDER,2016-01-09T00:00:00,2016,January,Saturday,9,9,15,2016-01-10T00:00:00,2016,January,Sunday,10,10,16,D14,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,,OT,27,WHI,1300.0,STOLEN,22334,"{'type': 'Point', 'coordinates': (-79.40600258, 43.67218781)}"
-22352,24778,GO-2016256662,B&E,2016-01-28T00:00:00,2016,January,Thursday,28,28,18,2016-02-12T00:00:00,2016,February,Friday,12,43,13,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OTHER,KHAN,RC,20,BLK,8800.0,STOLEN,22335,"{'type': 'Point', 'coordinates': (-79.40716074, 43.671942130000005)}"
-22353,24779,GO-2016256662,B&E,2016-01-28T00:00:00,2016,January,Thursday,28,28,18,2016-02-12T00:00:00,2016,February,Friday,12,43,13,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,,OT,9,BLKWHI,,STOLEN,22336,"{'type': 'Point', 'coordinates': (-79.40716074, 43.671942130000005)}"
-22354,24781,GO-2016346978,THEFT UNDER,2016-02-20T00:00:00,2016,February,Saturday,20,51,3,2016-02-27T00:00:00,2016,February,Saturday,27,58,18,D14,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,TOFINO,OT,24,BLKRED,700.0,STOLEN,22337,"{'type': 'Point', 'coordinates': (-79.40587057, 43.66878216)}"
-22355,25182,GO-2016521954,THEFT UNDER - BICYCLE,2016-03-26T00:00:00,2016,March,Saturday,26,86,1,2016-03-27T00:00:00,2016,March,Sunday,27,87,18,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,CO-OP,MT,21,BLK,800.0,STOLEN,22338,"{'type': 'Point', 'coordinates': (-79.40643932, 43.67007475)}"
-22356,25186,GO-20169004382,THEFT UNDER - BICYCLE,2016-05-10T00:00:00,2016,May,Tuesday,10,131,21,2016-05-11T00:00:00,2016,May,Wednesday,11,132,2,D14,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,YORKVILLE,RG,21,,500.0,STOLEN,22339,"{'type': 'Point', 'coordinates': (-79.41047653, 43.67397307)}"
-22357,7235,GO-20209023067,THEFT UNDER - BICYCLE,2020-09-12T00:00:00,2020,September,Saturday,12,256,12,2020-09-12T00:00:00,2020,September,Saturday,12,256,15,D53,Toronto,99,Mount Pleasant East (99),Convenience Stores,Commercial,TR,DUAL SPORT 1,RG,21,LGR,760.0,STOLEN,22340,"{'type': 'Point', 'coordinates': (-79.37830655, 43.710773190000005)}"
-22358,25776,GO-20201789555,THEFT UNDER - BICYCLE,2020-09-13T00:00:00,2020,September,Sunday,13,257,15,2020-09-22T00:00:00,2020,September,Tuesday,22,266,16,D53,Toronto,96,Casa Loma (96),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ELECTRA,LOFT,RG,7,LBL,900.0,STOLEN,22341,"{'type': 'Point', 'coordinates': (-79.4037797, 43.67802503)}"
-22359,25543,GO-20189017335,THEFT UNDER - BICYCLE,2018-06-04T00:00:00,2018,June,Monday,4,155,1,2018-06-04T00:00:00,2018,June,Monday,4,155,13,D53,Toronto,99,Mount Pleasant East (99),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,WOMANS 28,OT,21,BGE,600.0,STOLEN,22342,"{'type': 'Point', 'coordinates': (-79.37758414, 43.701226520000006)}"
-22360,10444,GO-20159007036,THEFT UNDER,2015-09-10T00:00:00,2015,September,Thursday,10,253,9,2015-09-11T00:00:00,2015,September,Friday,11,254,14,D53,Toronto,98,Rosedale-Moore Park (98),Schools During Un-Supervised Activity,Educational,UK,HARDROCK MOUNTA,MT,18,RED,350.0,STOLEN,22343,"{'type': 'Point', 'coordinates': (-79.39145198, 43.68864767)}"
-22361,25190,GO-20169004651,THEFT UNDER - BICYCLE,2016-05-17T00:00:00,2016,May,Tuesday,17,138,1,2016-05-18T00:00:00,2016,May,Wednesday,18,139,0,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE,RG,8,BLK,599.0,STOLEN,22344,"{'type': 'Point', 'coordinates': (-79.40637158, 43.66842414)}"
-22362,25192,GO-20169004823,THEFT UNDER,2016-05-22T00:00:00,2016,May,Sunday,22,143,0,2016-05-22T00:00:00,2016,May,Sunday,22,143,20,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,PHOENIX DITCH P,MT,21,BLU,500.0,STOLEN,22345,"{'type': 'Point', 'coordinates': (-79.42016264, 43.66811884)}"
-22363,25207,GO-20161029813,THEFT UNDER - BICYCLE,2016-06-13T00:00:00,2016,June,Monday,13,165,15,2016-06-13T00:00:00,2016,June,Monday,13,165,16,D14,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,X SERIES,EL,2,BLK,,STOLEN,22346,"{'type': 'Point', 'coordinates': (-79.40473364, 43.66896169)}"
-22364,25214,GO-20161081341,THEFT UNDER - BICYCLE,2016-06-20T00:00:00,2016,June,Monday,20,172,19,2016-06-21T00:00:00,2016,June,Tuesday,21,173,8,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,CCM,MOUNTAIN,MT,18,GRN,125.0,STOLEN,22347,"{'type': 'Point', 'coordinates': (-79.40414752, 43.66746377)}"
-22365,25225,GO-20161197488,THEFT UNDER - BICYCLE,2016-07-07T00:00:00,2016,July,Thursday,7,189,21,2016-07-08T00:00:00,2016,July,Friday,8,190,18,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,SEEK 3,OT,24,BLK,600.0,STOLEN,22348,"{'type': 'Point', 'coordinates': (-79.41898423, 43.66834945)}"
-22366,25236,GO-20169008479,THEFT UNDER - BICYCLE,2016-08-09T00:00:00,2016,August,Tuesday,9,222,20,2016-08-10T00:00:00,2016,August,Wednesday,10,223,9,D14,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,SU,MEN'S 1800 HARD,MT,18,BLK,150.0,STOLEN,22349,"{'type': 'Point', 'coordinates': (-79.4097913, 43.66864896)}"
-22367,25256,GO-20169010060,THEFT UNDER,2016-09-06T00:00:00,2016,September,Tuesday,6,250,7,2016-09-06T00:00:00,2016,September,Tuesday,6,250,18,D14,Toronto,95,Annex (95),Ttc Subway Station,Transit,OT,RIVER SPORT HYB,RG,21,BLK,429.0,STOLEN,22350,"{'type': 'Point', 'coordinates': (-79.41174945, 43.66662023)}"
-22368,25273,GO-20169011450,THEFT UNDER - BICYCLE,2016-09-30T00:00:00,2016,September,Friday,30,274,20,2016-10-02T00:00:00,2016,October,Sunday,2,276,18,D14,Toronto,95,Annex (95),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,KH,URBAN SOLE,RG,1,GRY,400.0,STOLEN,22351,"{'type': 'Point', 'coordinates': (-79.40841923, 43.6719398)}"
-22369,25275,GO-20169011723,THEFT UNDER - BICYCLE,2016-10-08T00:00:00,2016,October,Saturday,8,282,0,2016-10-08T00:00:00,2016,October,Saturday,8,282,10,D14,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BI,,RG,21,BLK,0.0,STOLEN,22352,"{'type': 'Point', 'coordinates': (-79.40822185, 43.67461234)}"
-22370,25279,GO-20169012321,THEFT UNDER - BICYCLE,2016-10-18T00:00:00,2016,October,Tuesday,18,292,12,2016-10-19T00:00:00,2016,October,Wednesday,19,293,22,D14,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,REMUS (GREY BRO,RG,1,OTH,579.0,STOLEN,22353,"{'type': 'Point', 'coordinates': (-79.40974314, 43.66849798)}"
-22371,25311,GO-20179008734,THEFT UNDER - BICYCLE,2017-06-16T00:00:00,2017,June,Friday,16,167,20,2017-06-22T00:00:00,2017,June,Thursday,22,173,20,D14,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,,RG,7,PLE,350.0,STOLEN,22354,"{'type': 'Point', 'coordinates': (-79.40600258, 43.67218781)}"
-22372,25389,GO-20169010385,THEFT UNDER - BICYCLE,2016-09-13T00:00:00,2016,September,Tuesday,13,257,8,2016-09-13T00:00:00,2016,September,Tuesday,13,257,21,D53,Toronto,95,Annex (95),Ttc Subway Station,Transit,KO,DEW PLUS,RG,18,GRN,800.0,STOLEN,22355,"{'type': 'Point', 'coordinates': (-79.40526597, 43.67030834)}"
-22373,25399,GO-20169011480,THEFT UNDER - BICYCLE,2016-09-26T00:00:00,2016,September,Monday,26,270,19,2016-09-27T00:00:00,2016,September,Tuesday,27,271,14,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,OT,8,RED,550.0,STOLEN,22356,"{'type': 'Point', 'coordinates': (-79.39478159, 43.67038539)}"
-22374,25419,GO-20162161453,B&E,2016-11-29T00:00:00,2016,November,Tuesday,29,334,0,2016-12-06T00:00:00,2016,December,Tuesday,6,341,8,D53,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,REMEDY 7,MT,30,BRN,1800.0,STOLEN,22357,"{'type': 'Point', 'coordinates': (-79.39734175, 43.66803279)}"
-22375,25422,GO-20169015254,THEFT UNDER,2016-12-25T00:00:00,2016,December,Sunday,25,360,16,2016-12-31T00:00:00,2016,December,Saturday,31,366,19,D53,Toronto,95,Annex (95),Bar / Restaurant,Commercial,OT,,RG,10,BLK,1000.0,STOLEN,22358,"{'type': 'Point', 'coordinates': (-79.39304164, 43.67075303)}"
-22376,25449,GO-20171050595,THEFT UNDER - BICYCLE,2017-06-13T00:00:00,2017,June,Tuesday,13,164,2,2017-06-13T00:00:00,2017,June,Tuesday,13,164,10,D53,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CINELLI,,OT,1,BLU,2500.0,STOLEN,22359,"{'type': 'Point', 'coordinates': (-79.4007248, 43.66981528)}"
-22377,25466,GO-20179010643,THEFT UNDER - BICYCLE,2017-07-18T00:00:00,2017,July,Tuesday,18,199,21,2017-07-19T00:00:00,2017,July,Wednesday,19,200,22,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,GTX-2 700C,RG,21,RED,550.0,STOLEN,22360,"{'type': 'Point', 'coordinates': (-79.39734175, 43.66803279)}"
-22378,25483,GO-20179014053,THEFT UNDER - BICYCLE,2017-09-04T00:00:00,2017,September,Monday,4,247,22,2017-09-05T00:00:00,2017,September,Tuesday,5,248,17,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,URBANO SUSPENSI,OT,21,OTH,600.0,STOLEN,22361,"{'type': 'Point', 'coordinates': (-79.40593727, 43.67510835)}"
-22379,25488,GO-20179015528,THEFT UNDER - BICYCLE,2017-09-22T00:00:00,2017,September,Friday,22,265,17,2017-09-23T00:00:00,2017,September,Saturday,23,266,10,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,,RG,24,,728.0,STOLEN,22362,"{'type': 'Point', 'coordinates': (-79.39850825, 43.67124545)}"
-22380,25492,GO-20179016359,THEFT UNDER - BICYCLE,2017-10-02T00:00:00,2017,October,Monday,2,275,20,2017-10-03T00:00:00,2017,October,Tuesday,3,276,13,D53,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,VFR6,RG,24,GRY,621.0,STOLEN,22363,"{'type': 'Point', 'coordinates': (-79.40149998, 43.66716143)}"
-22381,25507,GO-20179020282,THEFT UNDER - BICYCLE,2017-11-07T00:00:00,2017,November,Tuesday,7,311,13,2017-11-22T00:00:00,2017,November,Wednesday,22,326,13,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,PE,?,TO,10,BLU,0.0,STOLEN,22364,"{'type': 'Point', 'coordinates': (-79.39787549000002, 43.66923262)}"
-22382,25508,GO-20179020410,THEFT UNDER - BICYCLE,2017-11-08T00:00:00,2017,November,Wednesday,8,312,20,2017-11-23T00:00:00,2017,November,Thursday,23,327,21,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,CHARGER,MT,27,WHI,1500.0,STOLEN,22365,"{'type': 'Point', 'coordinates': (-79.403659, 43.67266985)}"
-22383,25509,GO-20179020410,THEFT UNDER - BICYCLE,2017-11-08T00:00:00,2017,November,Wednesday,8,312,20,2017-11-23T00:00:00,2017,November,Thursday,23,327,21,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,INDIE,RG,27,GRY,1000.0,STOLEN,22366,"{'type': 'Point', 'coordinates': (-79.403659, 43.67266985)}"
-22384,25510,GO-20179020645,THEFT UNDER - BICYCLE,2017-11-24T00:00:00,2017,November,Friday,24,328,7,2017-11-27T00:00:00,2017,November,Monday,27,331,8,D53,Toronto,95,Annex (95),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,F29 CARBON 3,MT,20,WHI,1200.0,STOLEN,22367,"{'type': 'Point', 'coordinates': (-79.40028097000001, 43.66874114)}"
-22385,25514,GO-20179021559,THEFT UNDER - BICYCLE,2017-09-07T00:00:00,2017,September,Thursday,7,250,14,2017-12-07T00:00:00,2017,December,Thursday,7,341,14,D53,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,MT,10,,1500.0,STOLEN,22368,"{'type': 'Point', 'coordinates': (-79.39003347, 43.67421927)}"
-22386,25516,GO-20173220604,B&E,2017-12-18T00:00:00,2017,December,Monday,18,352,3,2017-12-18T00:00:00,2017,December,Monday,18,352,15,D53,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,AVALANCHE,MT,24,BLU,50.0,STOLEN,22369,"{'type': 'Point', 'coordinates': (-79.39137078, 43.67375210000001)}"
-22387,25522,GO-20189005734,THEFT UNDER - BICYCLE,2018-02-22T00:00:00,2018,February,Thursday,22,53,9,2018-02-22T00:00:00,2018,February,Thursday,22,53,21,D53,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,BOLD,EL,30,BLK,3000.0,STOLEN,22370,"{'type': 'Point', 'coordinates': (-79.38980433, 43.67056247)}"
-22388,25527,GO-20189012408,THEFT UNDER - BICYCLE,2018-04-21T00:00:00,2018,April,Saturday,21,111,12,2018-04-21T00:00:00,2018,April,Saturday,21,111,22,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,18,GRY,750.0,STOLEN,22371,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-22389,25549,GO-20189019379,THEFT UNDER - BICYCLE,2018-06-19T00:00:00,2018,June,Tuesday,19,170,15,2018-06-19T00:00:00,2018,June,Tuesday,19,170,18,D53,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RM,RC,RG,21,BLU,800.0,STOLEN,22372,"{'type': 'Point', 'coordinates': (-79.39054537, 43.66944743)}"
-22390,25550,GO-20189019548,THEFT UNDER,2018-06-20T00:00:00,2018,June,Wednesday,20,171,17,2018-06-20T00:00:00,2018,June,Wednesday,20,171,21,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,SL 2.0,MT,21,DBL,300.0,STOLEN,22373,"{'type': 'Point', 'coordinates': (-79.38946773, 43.66966903)}"
-22391,25555,GO-20189020663,THEFT UNDER - BICYCLE,2018-06-28T00:00:00,2018,June,Thursday,28,179,8,2018-06-29T00:00:00,2018,June,Friday,29,180,0,D53,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CC,ENDURANCE,TO,16,ONG,200.0,STOLEN,22374,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-22392,25569,GO-20189023500,THEFT UNDER - BICYCLE,2018-07-21T00:00:00,2018,July,Saturday,21,202,23,2018-07-23T00:00:00,2018,July,Monday,23,204,10,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,SCHWINN,RG,21,WHI,500.0,STOLEN,22375,"{'type': 'Point', 'coordinates': (-79.38980433, 43.67056247)}"
-22393,25572,GO-20189024002,THEFT UNDER - BICYCLE,2018-07-24T00:00:00,2018,July,Tuesday,24,205,14,2018-07-26T00:00:00,2018,July,Thursday,26,207,12,D53,Toronto,95,Annex (95),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CC,SLOPE,MT,21,MRN,550.0,STOLEN,22376,"{'type': 'Point', 'coordinates': (-79.39054537, 43.66944743)}"
-22394,25576,GO-20189025482,THEFT UNDER,2018-08-06T00:00:00,2018,August,Monday,6,218,22,2018-08-07T00:00:00,2018,August,Tuesday,7,219,22,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,YORKVILLE,RG,21,BLU,650.0,STOLEN,22377,"{'type': 'Point', 'coordinates': (-79.39986342, 43.67495124)}"
-22395,25580,GO-20181588235,B&E,2018-08-28T00:00:00,2018,August,Tuesday,28,240,1,2018-08-28T00:00:00,2018,August,Tuesday,28,240,1,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MIELE,,RG,3,ONG,100.0,STOLEN,22378,"{'type': 'Point', 'coordinates': (-79.39288364, 43.67470949)}"
-22396,25588,GO-20189030827,THEFT UNDER - BICYCLE,2018-09-17T00:00:00,2018,September,Monday,17,260,3,2018-09-17T00:00:00,2018,September,Monday,17,260,15,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,10,WHI,200.0,STOLEN,22379,"{'type': 'Point', 'coordinates': (-79.40198145, 43.66838899)}"
-22397,25589,GO-20189031107,THEFT UNDER - BICYCLE,2018-09-18T00:00:00,2018,September,Tuesday,18,261,23,2018-09-19T00:00:00,2018,September,Wednesday,19,262,13,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,VERZA SPEED 50,RG,21,LGR,500.0,STOLEN,22380,"{'type': 'Point', 'coordinates': (-79.40149998, 43.66716143)}"
-22398,25592,GO-20189033419,THEFT UNDER - BICYCLE,2018-10-09T00:00:00,2018,October,Tuesday,9,282,22,2018-10-09T00:00:00,2018,October,Tuesday,9,282,23,D53,Toronto,95,Annex (95),"Open Areas (Lakes, Parks, Rivers)",Outside,GI,TOUGHROAD 2,MT,27,,1000.0,STOLEN,22381,"{'type': 'Point', 'coordinates': (-79.40526597, 43.67030834)}"
-22399,25614,GO-20199012749,THEFT UNDER - BICYCLE,2019-03-22T00:00:00,2019,March,Friday,22,81,11,2019-04-23T00:00:00,2019,April,Tuesday,23,113,11,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,15,,1500.0,STOLEN,22382,"{'type': 'Point', 'coordinates': (-79.39410211, 43.66871992)}"
-22400,25618,GO-20199013019,THEFT UNDER - BICYCLE,2019-04-18T00:00:00,2019,April,Thursday,18,108,21,2019-04-25T00:00:00,2019,April,Thursday,25,115,15,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,,INSPIRE,TO,18,SIL,350.0,STOLEN,22383,"{'type': 'Point', 'coordinates': (-79.39380783, 43.67516312)}"
-22401,25620,GO-2019754113,B&E,2019-03-30T00:00:00,2019,March,Saturday,30,89,4,2019-04-26T00:00:00,2019,April,Friday,26,116,20,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,TREK,,RG,21,,,STOLEN,22384,"{'type': 'Point', 'coordinates': (-79.4007248, 43.66981528)}"
-22402,5033,GO-20199025746,THEFT UNDER - BICYCLE,2019-08-11T00:00:00,2019,August,Sunday,11,223,5,2019-08-11T00:00:00,2019,August,Sunday,11,223,14,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,18,WHI,400.0,STOLEN,22385,"{'type': 'Point', 'coordinates': (-79.37092572, 43.67704191)}"
-22403,25638,GO-20199019319,THEFT FROM MOTOR VEHICLE UNDER,2019-06-19T00:00:00,2019,June,Wednesday,19,170,18,2019-06-20T00:00:00,2019,June,Thursday,20,171,8,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,OT,11,,450.0,STOLEN,22386,"{'type': 'Point', 'coordinates': (-79.39656616, 43.67472452)}"
-22404,25643,GO-20199022591,THEFT UNDER - BICYCLE,2019-07-14T00:00:00,2019,July,Sunday,14,195,1,2019-07-16T00:00:00,2019,July,Tuesday,16,197,19,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,MARLIN 5,MT,30,BLK,600.0,STOLEN,22387,"{'type': 'Point', 'coordinates': (-79.39734175, 43.66803279)}"
-22405,25660,GO-20199026314,THEFT UNDER,2019-08-14T00:00:00,2019,August,Wednesday,14,226,21,2019-08-15T00:00:00,2019,August,Thursday,15,227,12,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,GX-28,MT,27,BLK,1200.0,STOLEN,22388,"{'type': 'Point', 'coordinates': (-79.39003347, 43.67421927)}"
-22406,25665,GO-20199029049,THEFT UNDER - BICYCLE,2019-09-06T00:00:00,2019,September,Friday,6,249,22,2019-09-07T00:00:00,2019,September,Saturday,7,250,10,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,CHINOOK,RG,3,BLK,700.0,STOLEN,22389,"{'type': 'Point', 'coordinates': (-79.403659, 43.67266985)}"
-22407,25672,GO-20191796625,B&E,2019-09-18T00:00:00,2019,September,Wednesday,18,261,14,2019-09-19T00:00:00,2019,September,Thursday,19,262,5,D53,Toronto,95,Annex (95),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,ALLEZ,RC,10,,3000.0,STOLEN,22390,"{'type': 'Point', 'coordinates': (-79.39049843, 43.67524769)}"
-22408,25673,GO-20199031106,THEFT UNDER - BICYCLE,2019-09-19T00:00:00,2019,September,Thursday,19,262,12,2019-09-22T00:00:00,2019,September,Sunday,22,265,21,D53,Toronto,95,Annex (95),Ttc Subway Station,Transit,OT,GENESIS 5.0,RG,5,GRY,500.0,STOLEN,22391,"{'type': 'Point', 'coordinates': (-79.40708312, 43.67485713)}"
-22409,25686,GO-20199034625,THEFT UNDER - BICYCLE,2019-10-17T00:00:00,2019,October,Thursday,17,290,23,2019-10-21T00:00:00,2019,October,Monday,21,294,12,D53,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KO,DEWEY,OT,8,GRN,750.0,STOLEN,22392,"{'type': 'Point', 'coordinates': (-79.40210106, 43.67299255)}"
-22410,25694,GO-20209005789,THEFT UNDER,2020-02-15T00:00:00,2020,February,Saturday,15,46,13,2020-02-17T00:00:00,2020,February,Monday,17,48,20,D53,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,5,SIL,0.0,STOLEN,22393,"{'type': 'Point', 'coordinates': (-79.4007248, 43.66981528)}"
-22411,25702,GO-20209009791,THEFT UNDER - BICYCLE,2020-03-21T00:00:00,2020,March,Saturday,21,81,11,2020-03-25T00:00:00,2020,March,Wednesday,25,85,11,D53,Toronto,95,Annex (95),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,12,BLU,650.0,STOLEN,22394,"{'type': 'Point', 'coordinates': (-79.40210106, 43.67299255)}"
-22412,25724,GO-20209015301,THEFT UNDER - BICYCLE,2020-02-11T00:00:00,2020,February,Tuesday,11,42,14,2020-06-13T00:00:00,2020,June,Saturday,13,165,14,D53,Toronto,95,Annex (95),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,TO,15,BLU,700.0,STOLEN,22395,"{'type': 'Point', 'coordinates': (-79.4007248, 43.66981528)}"
-22413,25745,GO-20201272925,THEFT UNDER - BICYCLE,2020-07-06T00:00:00,2020,July,Monday,6,188,1,2020-07-09T00:00:00,2020,July,Thursday,9,191,19,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,LIV,RG,0,LBL,600.0,STOLEN,22396,"{'type': 'Point', 'coordinates': (-79.39333394, 43.67154496)}"
-22414,25746,GO-20201272925,THEFT UNDER - BICYCLE,2020-07-06T00:00:00,2020,July,Monday,6,188,1,2020-07-09T00:00:00,2020,July,Thursday,9,191,19,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CANNONDALE,TOPSTONE,OT,18,DGR,1400.0,STOLEN,22397,"{'type': 'Point', 'coordinates': (-79.39333394, 43.67154496)}"
-22415,25777,GO-20209024202,THEFT UNDER - BICYCLE,2020-09-23T00:00:00,2020,September,Wednesday,23,267,9,2020-09-23T00:00:00,2020,September,Wednesday,23,267,12,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,GRAN PRIX,TO,1,RED,100.0,STOLEN,22398,"{'type': 'Point', 'coordinates': (-79.38980433, 43.67056247)}"
-22416,25783,GO-20209024930,THEFT UNDER - BICYCLE,2020-09-29T00:00:00,2020,September,Tuesday,29,273,12,2020-09-29T00:00:00,2020,September,Tuesday,29,273,16,D53,Toronto,95,Annex (95),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,NORCO 9.2,MT,24,ONG,800.0,STOLEN,22399,"{'type': 'Point', 'coordinates': (-79.38674812, 43.67022634)}"
-22417,420,GO-2017871498,THEFT UNDER - BICYCLE,2017-05-17T00:00:00,2017,May,Wednesday,17,137,8,2017-05-17T00:00:00,2017,May,Wednesday,17,137,19,D13,Toronto,96,Casa Loma (96),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,STORM 7.4,MT,21,BLKWHI,550.0,STOLEN,22400,"{'type': 'Point', 'coordinates': (-79.41826195, 43.68316749)}"
-22418,914,GO-20179010580,THEFT UNDER - BICYCLE,2017-07-19T00:00:00,2017,July,Wednesday,19,200,10,2017-07-19T00:00:00,2017,July,Wednesday,19,200,12,D53,Toronto,96,Casa Loma (96),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,YORKVILLE??,RG,21,BLU,500.0,STOLEN,22401,"{'type': 'Point', 'coordinates': (-79.40122658, 43.67941309)}"
-22419,921,GO-20179010594,THEFT UNDER - BICYCLE,2017-07-18T00:00:00,2017,July,Tuesday,18,199,1,2017-07-19T00:00:00,2017,July,Wednesday,19,200,14,D53,Toronto,96,Casa Loma (96),"Apartment (Rooming House, Condo)",Apartment,CA,LRG CDALE 14 QU,OT,18,BLK,1100.0,STOLEN,22402,"{'type': 'Point', 'coordinates': (-79.40693838, 43.67773243)}"
-22420,1153,GO-20179012480,THEFT UNDER - BICYCLE,2017-08-15T00:00:00,2017,August,Tuesday,15,227,6,2017-08-15T00:00:00,2017,August,Tuesday,15,227,18,D53,Toronto,96,Casa Loma (96),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,MT,10,,1959.0,STOLEN,22403,"{'type': 'Point', 'coordinates': (-79.40574937, 43.67796843)}"
-22421,1790,GO-20179018837,THEFT UNDER - BICYCLE,2017-10-22T00:00:00,2017,October,Sunday,22,295,13,2017-11-03T00:00:00,2017,November,Friday,3,307,15,D13,Toronto,96,Casa Loma (96),Universities / Colleges,Educational,CC,ORION 700C,OT,30,BLK,400.0,STOLEN,22404,"{'type': 'Point', 'coordinates': (-79.41149706, 43.67501439)}"
-22422,2140,GO-2018618343,THEFT UNDER - BICYCLE,2018-04-06T00:00:00,2018,April,Friday,6,96,10,2018-04-07T00:00:00,2018,April,Saturday,7,97,14,D13,Toronto,96,Casa Loma (96),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SCHWINN,,MT,21,SIL,400.0,STOLEN,22405,"{'type': 'Point', 'coordinates': (-79.4121917, 43.67680152)}"
-22423,2630,GO-20189019515,THEFT UNDER - BICYCLE,2018-06-20T00:00:00,2018,June,Wednesday,20,171,14,2018-06-20T00:00:00,2018,June,Wednesday,20,171,17,D13,Toronto,96,Casa Loma (96),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,RG,7,BLK,936.0,STOLEN,22406,"{'type': 'Point', 'coordinates': (-79.4121917, 43.67680152)}"
-22424,2692,GO-20189020381,THEFT UNDER - BICYCLE,2018-06-26T00:00:00,2018,June,Tuesday,26,177,11,2018-06-26T00:00:00,2018,June,Tuesday,26,177,14,D13,Toronto,96,Casa Loma (96),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,24,RED,0.0,STOLEN,22407,"{'type': 'Point', 'coordinates': (-79.41588174, 43.683633900000004)}"
-22425,2693,GO-20189020381,THEFT UNDER - BICYCLE,2018-06-26T00:00:00,2018,June,Tuesday,26,177,11,2018-06-26T00:00:00,2018,June,Tuesday,26,177,14,D13,Toronto,96,Casa Loma (96),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,PE,UNKNOWN,TO,8,BLU,0.0,STOLEN,22408,"{'type': 'Point', 'coordinates': (-79.41588174, 43.683633900000004)}"
-22426,3146,GO-20189025838,THEFT UNDER - BICYCLE,2018-08-03T00:00:00,2018,August,Friday,3,215,18,2018-08-10T00:00:00,2018,August,Friday,10,222,18,D13,Toronto,96,Casa Loma (96),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,21,SIL,500.0,STOLEN,22409,"{'type': 'Point', 'coordinates': (-79.41826195, 43.68316749)}"
-22427,4570,GO-20199019531,THEFT UNDER - BICYCLE,2019-06-20T00:00:00,2019,June,Thursday,20,171,0,2019-06-21T00:00:00,2019,June,Friday,21,172,10,D53,Toronto,96,Casa Loma (96),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,7.2FX,RG,18,SIL,2000.0,STOLEN,22410,"{'type': 'Point', 'coordinates': (-79.40122658, 43.67941309)}"
-22428,4582,GO-20199019664,THEFT UNDER - BICYCLE,2019-06-19T00:00:00,2019,June,Wednesday,19,170,17,2019-06-22T00:00:00,2019,June,Saturday,22,173,12,D53,Toronto,96,Casa Loma (96),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM 3 DISK,RG,24,BLK,629.0,STOLEN,22411,"{'type': 'Point', 'coordinates': (-79.40574937, 43.67796843)}"
-22429,5246,GO-20199027872,THEFT UNDER,2019-08-26T00:00:00,2019,August,Monday,26,238,23,2019-08-27T00:00:00,2019,August,Tuesday,27,239,18,D53,Toronto,96,Casa Loma (96),"Apartment (Rooming House, Condo)",Apartment,NO,VFR 4 FORMA 14.,RG,8,LGR,500.0,STOLEN,22412,"{'type': 'Point', 'coordinates': (-79.39869325, 43.67996197)}"
-22430,5516,GO-20191973717,THEFT UNDER - BICYCLE,2019-10-11T00:00:00,2019,October,Friday,11,284,21,2019-10-12T00:00:00,2019,October,Saturday,12,285,20,D53,Toronto,96,Casa Loma (96),"Apartment (Rooming House, Condo)",Apartment,SCOTT,GENIUS950,MT,12,BLKYEL,4250.0,STOLEN,22413,"{'type': 'Point', 'coordinates': (-79.40512844, 43.6763636)}"
-22431,5523,GO-20199033859,THEFT UNDER,2019-10-11T00:00:00,2019,October,Friday,11,284,8,2019-10-14T00:00:00,2019,October,Monday,14,287,16,D13,Toronto,96,Casa Loma (96),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,1,RED,350.0,STOLEN,22414,"{'type': 'Point', 'coordinates': (-79.41332798, 43.67680708)}"
-22432,5840,GO-2020110832,THEFT UNDER,2020-01-15T00:00:00,2020,January,Wednesday,15,15,13,2020-01-16T00:00:00,2020,January,Thursday,16,16,19,D53,Toronto,96,Casa Loma (96),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,LAPIERRE,FRENCH ROAD,OT,16,WHIBLU,1200.0,STOLEN,22415,"{'type': 'Point', 'coordinates': (-79.40474761, 43.68597034)}"
-22433,5847,GO-20209002582,THEFT UNDER,2020-01-15T00:00:00,2020,January,Wednesday,15,15,13,2020-01-22T00:00:00,2020,January,Wednesday,22,22,14,D53,Toronto,96,Casa Loma (96),"Apartment (Rooming House, Condo)",Apartment,RA,,RC,12,BLK,1000.0,STOLEN,22416,"{'type': 'Point', 'coordinates': (-79.40474761, 43.68597034)}"
-22434,5894,GO-20209005480,THEFT UNDER,2020-02-13T00:00:00,2020,February,Thursday,13,44,8,2020-02-14T00:00:00,2020,February,Friday,14,45,17,D53,Toronto,96,Casa Loma (96),"Apartment (Rooming House, Condo)",Apartment,OT,RANDONNEUR,TO,21,MRN,2000.0,STOLEN,22417,"{'type': 'Point', 'coordinates': (-79.40932367, 43.68502614)}"
-22435,6097,GO-2020776850,B&E,2020-04-23T00:00:00,2020,April,Thursday,23,114,14,2020-04-24T00:00:00,2020,April,Friday,24,115,8,D53,Toronto,96,Casa Loma (96),"Apartment (Rooming House, Condo)",Apartment,TREK,CROCKETT 5,RG,10,WHI,2800.0,STOLEN,22418,"{'type': 'Point', 'coordinates': (-79.40693838, 43.67773243)}"
-22436,6137,GO-20209012455,THEFT UNDER,2020-05-02T00:00:00,2020,May,Saturday,2,123,17,2020-05-04T00:00:00,2020,May,Monday,4,125,15,D53,Toronto,96,Casa Loma (96),"Apartment (Rooming House, Condo)",Apartment,MA,MARIN SAN RAFAE,RG,10,SIL,0.0,STOLEN,22419,"{'type': 'Point', 'coordinates': (-79.40474761, 43.68597034)}"
-22437,6210,GO-2020932081,THEFT OVER - BICYCLE,2020-05-19T00:00:00,2020,May,Tuesday,19,140,22,2020-05-20T00:00:00,2020,May,Wednesday,20,141,16,D53,Toronto,96,Casa Loma (96),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,DOMANE SLR 6,RC,10,BLK,8000.0,UNKNOWN,22420,"{'type': 'Point', 'coordinates': (-79.39795706, 43.67816383)}"
-22438,22990,GO-20161427721,THEFT OVER,2016-05-27T00:00:00,2016,May,Friday,27,148,12,2016-08-13T00:00:00,2016,August,Saturday,13,226,8,D53,Toronto,97,Yonge-St.Clair (97),"Single Home, House (Attach Garage, Cottage, Mobile)",House,LITE SPEED,,OT,0,GRY,2500.0,STOLEN,22421,"{'type': 'Point', 'coordinates': (-79.40082873, 43.69119789)}"
-22439,25597,GO-20189035705,THEFT UNDER - BICYCLE,2018-10-26T00:00:00,2018,October,Friday,26,299,7,2018-10-26T00:00:00,2018,October,Friday,26,299,16,D53,Toronto,99,Mount Pleasant East (99),Schools During Un-Supervised Activity,Educational,GI,,MT,10,BLK,700.0,STOLEN,22422,"{'type': 'Point', 'coordinates': (-79.39118625, 43.71112991)}"
-22440,349,GO-20179005998,THEFT UNDER - BICYCLE,2017-05-09T00:00:00,2017,May,Tuesday,9,129,8,2017-05-09T00:00:00,2017,May,Tuesday,9,129,18,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,TR,ELITE XC 9.8 19,MT,21,BLK,600.0,STOLEN,22423,"{'type': 'Point', 'coordinates': (-79.3993437, 43.69470515)}"
-22441,25605,GO-20189037316,THEFT UNDER - BICYCLE,2018-11-07T00:00:00,2018,November,Wednesday,7,311,13,2018-11-07T00:00:00,2018,November,Wednesday,7,311,23,D53,Toronto,99,Mount Pleasant East (99),Schools During Un-Supervised Activity,Educational,OT,CUSTOM,RG,15,BLK,200.0,STOLEN,22424,"{'type': 'Point', 'coordinates': (-79.38889326, 43.70518065)}"
-22442,25680,GO-20199032662,THEFT UNDER - BICYCLE,2019-10-04T00:00:00,2019,October,Friday,4,277,21,2019-10-04T00:00:00,2019,October,Friday,4,277,21,D53,Toronto,99,Mount Pleasant East (99),"Apartment (Rooming House, Condo)",Apartment,GT,,RG,18,GRN,600.0,STOLEN,22425,"{'type': 'Point', 'coordinates': (-79.3864381, 43.69817521)}"
-22443,357,GO-20179005998,THEFT UNDER - BICYCLE,2017-05-09T00:00:00,2017,May,Tuesday,9,129,8,2017-05-09T00:00:00,2017,May,Tuesday,9,129,18,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,TR,ELITE XC 9.8 19,MT,9,BLK,600.0,STOLEN,22426,"{'type': 'Point', 'coordinates': (-79.3993437, 43.69470515)}"
-22444,25423,GO-20179000041,THEFT UNDER - BICYCLE,2016-12-23T00:00:00,2016,December,Friday,23,358,16,2017-01-01T00:00:00,2017,January,Sunday,1,1,21,D53,Toronto,97,Yonge-St.Clair (97),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KH,,RG,1,,600.0,STOLEN,22428,"{'type': 'Point', 'coordinates': (-79.39606215, 43.69212919)}"
-22445,25688,GO-20192178857,THEFT UNDER - BICYCLE,2019-10-04T00:00:00,2019,October,Friday,4,277,19,2019-11-11T00:00:00,2019,November,Monday,11,315,11,D53,Toronto,99,Mount Pleasant East (99),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,CAD10,RC,22,BLK,1700.0,STOLEN,22429,"{'type': 'Point', 'coordinates': (-79.38629235, 43.69939475)}"
-22446,7335,GO-20209024258,THEFT UNDER - BICYCLE,2020-09-22T00:00:00,2020,September,Tuesday,22,266,11,2020-09-23T00:00:00,2020,September,Wednesday,23,267,17,D53,Toronto,99,Mount Pleasant East (99),Schools During Un-Supervised Activity,Educational,UK,DEVINCHI WELLIN,RG,24,BLU,1281.0,STOLEN,22430,"{'type': 'Point', 'coordinates': (-79.38666777, 43.70035376)}"
-22447,1403,GO-20171649142,THEFT UNDER - BICYCLE,2017-09-10T00:00:00,2017,September,Sunday,10,253,21,2017-09-11T00:00:00,2017,September,Monday,11,254,20,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,KONA,CINDERCONE,MT,24,BLK,1200.0,STOLEN,22431,"{'type': 'Point', 'coordinates': (-79.39982836, 43.68693619)}"
-22448,10446,GO-20159007042,THEFT UNDER,2015-09-08T00:00:00,2015,September,Tuesday,8,251,23,2015-09-11T00:00:00,2015,September,Friday,11,254,14,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,ANTHEM X 29ER,MT,20,OTH,3000.0,STOLEN,22432,"{'type': 'Point', 'coordinates': (-79.37655047, 43.69178302)}"
-22449,10467,GO-20159007184,THEFT UNDER,2015-09-14T00:00:00,2015,September,Monday,14,257,23,2015-09-15T00:00:00,2015,September,Tuesday,15,258,9,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GT,TRANSEO 4.0,TO,8,WHI,1300.0,STOLEN,22433,"{'type': 'Point', 'coordinates': (-79.38368576, 43.687973940000006)}"
-22450,10479,GO-20159007252,THEFT UNDER,2015-09-15T00:00:00,2015,September,Tuesday,15,258,0,2015-09-15T00:00:00,2015,September,Tuesday,15,258,14,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RM,,MT,21,WHI,3000.0,STOLEN,22434,"{'type': 'Point', 'coordinates': (-79.37700521, 43.6896907)}"
-22451,10773,GO-20159009748,THEFT UNDER,2015-11-13T00:00:00,2015,November,Friday,13,317,10,2015-11-15T00:00:00,2015,November,Sunday,15,319,10,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,CA,F29ER,MT,10,BLK,3000.0,STOLEN,22435,"{'type': 'Point', 'coordinates': (-79.39145198, 43.68864767)}"
-22452,10774,GO-20159009748,THEFT UNDER,2015-11-13T00:00:00,2015,November,Friday,13,317,10,2015-11-15T00:00:00,2015,November,Sunday,15,319,10,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,CA,SCAPEL,MT,12,GRY,3000.0,STOLEN,22436,"{'type': 'Point', 'coordinates': (-79.39145198, 43.68864767)}"
-22453,10775,GO-20159009748,THEFT UNDER,2015-11-13T00:00:00,2015,November,Friday,13,317,10,2015-11-15T00:00:00,2015,November,Sunday,15,319,10,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,OT,EPIC FSR,MT,12,RED,2900.0,STOLEN,22437,"{'type': 'Point', 'coordinates': (-79.39145198, 43.68864767)}"
-22454,10778,GO-20159009788,THEFT UNDER,2015-11-16T00:00:00,2015,November,Monday,16,320,6,2015-11-16T00:00:00,2015,November,Monday,16,320,12,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RC,14,GRY,1500.0,STOLEN,22438,"{'type': 'Point', 'coordinates': (-79.3926068, 43.68840573)}"
-22455,10796,GO-20151992794,THEFT UNDER,2015-11-20T00:00:00,2015,November,Friday,20,324,13,2015-11-20T00:00:00,2015,November,Friday,20,324,15,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,THE ROME,EL,1,BLU,3000.0,STOLEN,22439,"{'type': 'Point', 'coordinates': (-79.38746342000002, 43.6719238)}"
-22456,10800,GO-20151906403,ASSAULT WITH WEAPON,2015-11-06T00:00:00,2015,November,Friday,6,310,5,2015-11-06T00:00:00,2015,November,Friday,6,310,5,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,GI,ANTHEM X 29ER,MT,20,WHI,3000.0,STOLEN,22440,"{'type': 'Point', 'coordinates': (-79.38958887, 43.68009143)}"
-22457,10826,GO-20152049113,THEFT UNDER,2015-11-29T00:00:00,2015,November,Sunday,29,333,12,2015-12-01T00:00:00,2015,December,Tuesday,1,335,7,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,7300 SERIES,OT,21,GRY,750.0,STOLEN,22441,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22458,10864,GO-20159010840,THEFT UNDER,2015-12-08T00:00:00,2015,December,Tuesday,8,342,22,2015-12-12T00:00:00,2015,December,Saturday,12,346,12,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,OT,EPIC COMP 2009,MT,27,BLK,4181.0,STOLEN,22442,"{'type': 'Point', 'coordinates': (-79.392814, 43.68502592)}"
-22459,10905,GO-20169000014,THEFT UNDER,2015-12-17T00:00:00,2015,December,Thursday,17,351,14,2016-01-01T00:00:00,2016,January,Friday,1,1,14,D53,Toronto,98,Rosedale-Moore Park (98),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,15 ESCAPE 2M,RG,24,BLK,650.0,STOLEN,22443,"{'type': 'Point', 'coordinates': (-79.38782632, 43.6728738)}"
-22460,11091,GO-2016560442,THEFT UNDER,2016-04-01T00:00:00,2016,April,Friday,1,92,18,2016-04-02T00:00:00,2016,April,Saturday,2,93,18,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,RALEIGH,,MT,8,BLK,250.0,STOLEN,22444,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22461,11130,GO-20169003318,THEFT UNDER - BICYCLE,2016-04-11T00:00:00,2016,April,Monday,11,102,22,2016-04-12T00:00:00,2016,April,Tuesday,12,103,11,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,BI,INFINITO,RC,20,BLK,3600.0,STOLEN,22445,"{'type': 'Point', 'coordinates': (-79.38354308, 43.68578196)}"
-22462,11131,GO-20169003318,THEFT UNDER - BICYCLE,2016-04-11T00:00:00,2016,April,Monday,11,102,22,2016-04-12T00:00:00,2016,April,Tuesday,12,103,11,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,STARLIGHT,RC,16,WHI,3200.0,STOLEN,22446,"{'type': 'Point', 'coordinates': (-79.38354308, 43.68578196)}"
-22463,11145,GO-2016656173,THEFT UNDER - BICYCLE,2016-03-27T00:00:00,2016,March,Sunday,27,87,12,2016-04-17T00:00:00,2016,April,Sunday,17,108,22,D53,Toronto,98,Rosedale-Moore Park (98),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,AQUILA,CARBON FIBER,RC,0,BLKRED,7000.0,STOLEN,22447,"{'type': 'Point', 'coordinates': (-79.38958887, 43.68009143)}"
-22464,5085,GO-20191549188,THEFT UNDER - BICYCLE,2019-08-11T00:00:00,2019,August,Sunday,11,223,15,2019-08-16T00:00:00,2019,August,Friday,16,228,17,D53,Toronto,98,Rosedale-Moore Park (98),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,ATALA,VINTAGE,OT,5,BRZ,400.0,STOLEN,22448,"{'type': 'Point', 'coordinates': (-79.38984652, 43.68899269)}"
-22465,11306,GO-20169004505,THEFT UNDER - BICYCLE,2016-05-13T00:00:00,2016,May,Friday,13,134,10,2016-05-14T00:00:00,2016,May,Saturday,14,135,1,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,FUJI 15 ABSOLUT,RG,21,SIL,638.0,STOLEN,22449,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22466,11610,GO-20161078534,THEFT UNDER - BICYCLE,2016-06-20T00:00:00,2016,June,Monday,20,172,16,2016-06-20T00:00:00,2016,June,Monday,20,172,19,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RALEIGH,REDUX 2,RG,21,BLK,750.0,STOLEN,22450,"{'type': 'Point', 'coordinates': (-79.38746342000002, 43.6719238)}"
-22467,11738,GO-20169006911,THEFT UNDER,2016-07-07T00:00:00,2016,July,Thursday,7,189,12,2016-07-08T00:00:00,2016,July,Friday,8,190,13,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,700C HYDRA,RG,24,BLU,350.0,STOLEN,22451,"{'type': 'Point', 'coordinates': (-79.39410173, 43.68808307)}"
-22468,11827,GO-20169007304,THEFT UNDER,2016-07-17T00:00:00,2016,July,Sunday,17,199,12,2016-07-17T00:00:00,2016,July,Sunday,17,199,17,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,,RG,1,BLK,100.0,STOLEN,22452,"{'type': 'Point', 'coordinates': (-79.38459861, 43.67181293)}"
-22469,11874,GO-20169007609,THEFT UNDER - BICYCLE,2016-07-22T00:00:00,2016,July,Friday,22,204,0,2016-07-22T00:00:00,2016,July,Friday,22,204,9,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,4900 (YEAR 2001,TO,15,RED,800.0,STOLEN,22453,"{'type': 'Point', 'coordinates': (-79.38354308, 43.68578196)}"
-22470,11875,GO-20169007609,THEFT UNDER - BICYCLE,2016-07-22T00:00:00,2016,July,Friday,22,204,0,2016-07-22T00:00:00,2016,July,Friday,22,204,9,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,MOUNTAINBIKE (1,MT,21,BLU,800.0,STOLEN,22454,"{'type': 'Point', 'coordinates': (-79.38354308, 43.68578196)}"
-22471,11947,GO-20161320650,THEFT UNDER - BICYCLE,2016-07-20T00:00:00,2016,July,Wednesday,20,202,14,2016-07-27T00:00:00,2016,July,Wednesday,27,209,16,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCOTT,MOUNTAIN,MT,18,BLK,1200.0,STOLEN,22455,"{'type': 'Point', 'coordinates': (-79.38782632, 43.6728738)}"
-22472,11968,GO-20161285354,THEFT OVER - BICYCLE,2016-07-21T00:00:00,2016,July,Thursday,21,203,18,2016-07-22T00:00:00,2016,July,Friday,22,204,8,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,,TO,12,BLK,7000.0,STOLEN,22456,"{'type': 'Point', 'coordinates': (-79.37972031, 43.6931681)}"
-22473,12062,GO-20161420663,THEFT UNDER - BICYCLE,2016-08-07T00:00:00,2016,August,Sunday,7,220,14,2016-08-12T00:00:00,2016,August,Friday,12,225,8,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,850,MT,24,BLKRED,500.0,STOLEN,22457,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22474,12867,GO-20189023998,THEFT UNDER - BICYCLE,2018-07-26T00:00:00,2018,July,Thursday,26,207,11,2018-07-26T00:00:00,2018,July,Thursday,26,207,11,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,TO,18,,900.0,STOLEN,22466,"{'type': 'Point', 'coordinates': (-79.38141349, 43.69423653)}"
-22475,12259,GO-20169009936,THEFT UNDER - BICYCLE,2016-08-28T00:00:00,2016,August,Sunday,28,241,22,2016-09-04T00:00:00,2016,September,Sunday,4,248,10,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,10,RED,200.0,STOLEN,22458,"{'type': 'Point', 'coordinates': (-79.38489765, 43.672483830000004)}"
-22476,12303,GO-20161589438,THEFT UNDER - BICYCLE,2016-09-07T00:00:00,2016,September,Wednesday,7,251,15,2016-09-07T00:00:00,2016,September,Wednesday,7,251,15,D53,Toronto,98,Rosedale-Moore Park (98),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,ZOOM,20020,RG,17,BLK,700.0,STOLEN,22459,"{'type': 'Point', 'coordinates': (-79.39094710000002, 43.68055629)}"
-22477,12354,GO-20169010508,THEFT UNDER - BICYCLE,2016-09-15T00:00:00,2016,September,Thursday,15,259,6,2016-09-15T00:00:00,2016,September,Thursday,15,259,22,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,21,WHI,0.0,STOLEN,22460,"{'type': 'Point', 'coordinates': (-79.38459861, 43.67181293)}"
-22478,12548,GO-20161765971,THEFT UNDER - BICYCLE,2016-10-04T00:00:00,2016,October,Tuesday,4,278,10,2016-10-04T00:00:00,2016,October,Tuesday,4,278,17,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,,MT,26,GRYRED,99.0,STOLEN,22461,"{'type': 'Point', 'coordinates': (-79.38476649, 43.67217315)}"
-22479,12800,GO-20169013617,THEFT UNDER - BICYCLE,2016-11-20T00:00:00,2016,November,Sunday,20,325,15,2016-11-20T00:00:00,2016,November,Sunday,20,325,15,D53,Toronto,98,Rosedale-Moore Park (98),"Open Areas (Lakes, Parks, Rivers)",Outside,RM,BLIZZARD,MT,21,BLK,2000.0,STOLEN,22462,"{'type': 'Point', 'coordinates': (-79.38610751, 43.68356572)}"
-22480,12802,GO-20169013656,THEFT UNDER - BICYCLE,2016-11-05T00:00:00,2016,November,Saturday,5,310,16,2016-11-20T00:00:00,2016,November,Sunday,20,325,12,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GF,WINGRA,RG,10,BLK,200.0,STOLEN,22463,"{'type': 'Point', 'coordinates': (-79.38489765, 43.672483830000004)}"
-22481,12865,GO-20189023998,THEFT UNDER - BICYCLE,2018-07-26T00:00:00,2018,July,Thursday,26,207,11,2018-07-26T00:00:00,2018,July,Thursday,26,207,11,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,FATHOM,MT,18,GRY,1500.0,STOLEN,22464,"{'type': 'Point', 'coordinates': (-79.38141349, 43.69423653)}"
-22482,12866,GO-20189023998,THEFT UNDER - BICYCLE,2018-07-26T00:00:00,2018,July,Thursday,26,207,11,2018-07-26T00:00:00,2018,July,Thursday,26,207,11,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,ROLL COMP,TO,18,GRY,1200.0,STOLEN,22465,"{'type': 'Point', 'coordinates': (-79.38141349, 43.69423653)}"
-22483,12873,GO-20189025561,THEFT UNDER - BICYCLE,2018-08-08T00:00:00,2018,August,Wednesday,8,220,12,2018-08-08T00:00:00,2018,August,Wednesday,8,220,16,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,MIDTOWN BICYCLE,OT,18,GRY,800.0,STOLEN,22467,"{'type': 'Point', 'coordinates': (-79.38746342000002, 43.6719238)}"
-22484,12882,GO-20189026992,THEFT UNDER - BICYCLE,2018-08-18T00:00:00,2018,August,Saturday,18,230,5,2018-08-19T00:00:00,2018,August,Sunday,19,231,12,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,CORSO,MT,21,GRN,440.0,STOLEN,22468,"{'type': 'Point', 'coordinates': (-79.37620788, 43.67571974)}"
-22485,12888,GO-20189029221,THEFT UNDER - BICYCLE,2018-09-04T00:00:00,2018,September,Tuesday,4,247,17,2018-09-05T00:00:00,2018,September,Wednesday,5,248,17,D53,Toronto,98,Rosedale-Moore Park (98),Schools During Un-Supervised Activity,Educational,TR,PRECALIBER 24,MT,7,BLK,500.0,STOLEN,22469,"{'type': 'Point', 'coordinates': (-79.3788743, 43.68745586)}"
-22486,12894,GO-20189031778,THEFT UNDER - BICYCLE,2018-09-24T00:00:00,2018,September,Monday,24,267,21,2018-09-24T00:00:00,2018,September,Monday,24,267,21,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,OT,21,WHI,250.0,STOLEN,22470,"{'type': 'Point', 'coordinates': (-79.38746342000002, 43.6719238)}"
-22487,12905,GO-20189036616,THEFT UNDER - BICYCLE,2018-09-15T00:00:00,2018,September,Saturday,15,258,12,2018-11-02T00:00:00,2018,November,Friday,2,306,17,D53,Toronto,98,Rosedale-Moore Park (98),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,MINI/ FOLDING,FO,3,GRN,700.0,STOLEN,22471,"{'type': 'Point', 'coordinates': (-79.37942813, 43.6718256)}"
-22488,12911,GO-20189038521,THEFT UNDER - BICYCLE,2018-11-11T00:00:00,2018,November,Sunday,11,315,22,2018-11-16T00:00:00,2018,November,Friday,16,320,14,D53,Toronto,98,Rosedale-Moore Park (98),Ttc Subway Station,Transit,TR,,OT,7,CRM,0.0,STOLEN,22472,"{'type': 'Point', 'coordinates': (-79.38949143, 43.67696204)}"
-22489,12913,GO-20189039525,THEFT UNDER - BICYCLE,2018-11-23T00:00:00,2018,November,Friday,23,327,16,2018-11-23T00:00:00,2018,November,Friday,23,327,16,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,NO,2011 INDIE 3,RG,24,BLK,400.0,STOLEN,22473,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22490,12918,GO-20199000612,THEFT UNDER - BICYCLE,2019-01-05T00:00:00,2019,January,Saturday,5,5,13,2019-01-06T00:00:00,2019,January,Sunday,6,6,13,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,GI,,RC,25,BLK,0.0,STOLEN,22474,"{'type': 'Point', 'coordinates': (-79.39145198, 43.68864767)}"
-22491,12922,GO-20199005360,THEFT UNDER - BICYCLE,2019-01-03T00:00:00,2019,January,Thursday,3,3,8,2019-02-13T00:00:00,2019,February,Wednesday,13,44,19,D53,Toronto,98,Rosedale-Moore Park (98),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GT,TRANSEO ELITE S,RG,24,SIL,720.0,STOLEN,22475,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22492,12928,GO-20199014235,THEFT UNDER - BICYCLE,2019-05-07T00:00:00,2019,May,Tuesday,7,127,13,2019-05-07T00:00:00,2019,May,Tuesday,7,127,17,D53,Toronto,98,Rosedale-Moore Park (98),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,TR,3500,MT,3,RED,700.0,STOLEN,22476,"{'type': 'Point', 'coordinates': (-79.38746342000002, 43.6719238)}"
-22493,12933,GO-20199017787,THEFT UNDER - BICYCLE,2019-06-07T00:00:00,2019,June,Friday,7,158,8,2019-06-07T00:00:00,2019,June,Friday,7,158,19,D53,Toronto,98,Rosedale-Moore Park (98),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,YORKVILLE,RG,21,,600.0,STOLEN,22477,"{'type': 'Point', 'coordinates': (-79.38353943, 43.67203689)}"
-22494,12937,GO-20199018795,THEFT UNDER - BICYCLE,2019-06-15T00:00:00,2019,June,Saturday,15,166,22,2019-06-16T00:00:00,2019,June,Sunday,16,167,3,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,OT,DOLCE,RG,1,PNK,1000.0,STOLEN,22478,"{'type': 'Point', 'coordinates': (-79.37942813, 43.6718256)}"
-22495,12938,GO-20199018795,THEFT UNDER - BICYCLE,2019-06-15T00:00:00,2019,June,Saturday,15,166,22,2019-06-16T00:00:00,2019,June,Sunday,16,167,3,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,CC,,RG,1,RED,500.0,STOLEN,22479,"{'type': 'Point', 'coordinates': (-79.37942813, 43.6718256)}"
-22496,12945,GO-20199020062,THEFT UNDER - BICYCLE,2019-06-25T00:00:00,2019,June,Tuesday,25,176,9,2019-06-25T00:00:00,2019,June,Tuesday,25,176,13,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,BOULDER SE,MT,15,RED,250.0,STOLEN,22480,"{'type': 'Point', 'coordinates': (-79.37942813, 43.6718256)}"
-22497,12954,GO-20199024273,THEFT UNDER - BICYCLE,2019-07-29T00:00:00,2019,July,Monday,29,210,6,2019-07-29T00:00:00,2019,July,Monday,29,210,17,D53,Toronto,98,Rosedale-Moore Park (98),Ttc Subway Station,Transit,SC,1200 MEN'S ROAD,MT,22,DBL,400.0,STOLEN,22481,"{'type': 'Point', 'coordinates': (-79.38966274, 43.67738077)}"
-22498,12966,GO-20199026036,THEFT UNDER - BICYCLE,2019-07-20T00:00:00,2019,July,Saturday,20,201,12,2019-08-13T00:00:00,2019,August,Tuesday,13,225,14,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,TR,,RG,21,GRY,0.0,STOLEN,22482,"{'type': 'Point', 'coordinates': (-79.38984652, 43.68899269)}"
-22499,12970,GO-20199027922,THEFT UNDER,2019-08-27T00:00:00,2019,August,Tuesday,27,239,1,2019-08-27T00:00:00,2019,August,Tuesday,27,239,13,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,14,MRN,300.0,STOLEN,22483,"{'type': 'Point', 'coordinates': (-79.38570061, 43.68274447)}"
-22500,12978,GO-20199029687,THEFT UNDER - BICYCLE,2019-09-11T00:00:00,2019,September,Wednesday,11,254,18,2019-09-11T00:00:00,2019,September,Wednesday,11,254,22,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SAVONA,MT,21,BLK,300.0,STOLEN,22484,"{'type': 'Point', 'coordinates': (-79.38746342000002, 43.6719238)}"
-22501,12979,GO-20199029687,THEFT UNDER - BICYCLE,2019-09-11T00:00:00,2019,September,Wednesday,11,254,18,2019-09-11T00:00:00,2019,September,Wednesday,11,254,22,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SAVONA,OT,21,BLK,300.0,STOLEN,22485,"{'type': 'Point', 'coordinates': (-79.38746342000002, 43.6719238)}"
-22502,12985,GO-20199031635,THEFT UNDER - BICYCLE,2019-09-25T00:00:00,2019,September,Wednesday,25,268,13,2019-09-25T00:00:00,2019,September,Wednesday,25,268,14,D53,Toronto,98,Rosedale-Moore Park (98),Bar / Restaurant,Commercial,NO,,OT,24,RED,1000.0,STOLEN,22486,"{'type': 'Point', 'coordinates': (-79.38711576, 43.671122340000004)}"
-22503,13004,GO-20192149397,THEFT UNDER,2019-11-03T00:00:00,2019,November,Sunday,3,307,17,2019-11-06T00:00:00,2019,November,Wednesday,6,310,22,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,ES2,SC,1,GRY,900.0,STOLEN,22487,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22504,13012,GO-20199038565,THEFT UNDER - BICYCLE,2019-11-23T00:00:00,2019,November,Saturday,23,327,12,2019-11-23T00:00:00,2019,November,Saturday,23,327,14,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,FIXED GEAR,RG,1,WHI,300.0,STOLEN,22488,"{'type': 'Point', 'coordinates': (-79.38718014, 43.67129793)}"
-22505,13013,GO-20192282826,THEFT OF EBIKE UNDER $5000,2019-11-24T00:00:00,2019,November,Sunday,24,328,14,2019-11-26T00:00:00,2019,November,Tuesday,26,330,15,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,DAYMAC ROGUE,EL,1,RED,2300.0,STOLEN,22489,"{'type': 'Point', 'coordinates': (-79.3926068, 43.68840573)}"
-22506,13061,GO-20201203084,B&E,2020-06-30T00:00:00,2020,June,Tuesday,30,182,1,2020-06-30T00:00:00,2020,June,Tuesday,30,182,13,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CERVELO,U/K,RC,21,BLKWHI,15000.0,STOLEN,22498,"{'type': 'Point', 'coordinates': (-79.37216642, 43.67672597)}"
-22507,13015,GO-20199039997,THEFT UNDER - BICYCLE,2019-05-25T00:00:00,2019,May,Saturday,25,145,12,2019-12-06T00:00:00,2019,December,Friday,6,340,13,D53,Toronto,98,Rosedale-Moore Park (98),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,,RG,24,BLK,600.0,STOLEN,22490,"{'type': 'Point', 'coordinates': (-79.38782632, 43.6728738)}"
-22508,13019,GO-20209005051,THEFT UNDER,2020-02-07T00:00:00,2020,February,Friday,7,38,0,2020-02-11T00:00:00,2020,February,Tuesday,11,42,15,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,TR,7.4 FX 17.5 GY/,RG,20,,1083.0,STOLEN,22491,"{'type': 'Point', 'coordinates': (-79.3841564, 43.67465241)}"
-22509,13036,GO-2020963168,THEFT UNDER - BICYCLE,2020-05-25T00:00:00,2020,May,Monday,25,146,11,2020-05-28T00:00:00,2020,May,Thursday,28,149,10,D53,Toronto,98,Rosedale-Moore Park (98),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OPUS,CLASSICO,OT,7,BLK,1500.0,STOLEN,22492,"{'type': 'Point', 'coordinates': (-79.39068757, 43.67989949)}"
-22510,13049,GO-20201146802,B&E,2020-06-21T00:00:00,2020,June,Sunday,21,173,12,2020-06-22T00:00:00,2020,June,Monday,22,174,8,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,CANNONDALE,,RC,21,BLK,2500.0,STOLEN,22493,"{'type': 'Point', 'coordinates': (-79.39342098, 43.691619970000005)}"
-22511,13057,GO-20201203084,B&E,2020-06-30T00:00:00,2020,June,Tuesday,30,182,1,2020-06-30T00:00:00,2020,June,Tuesday,30,182,13,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,RC,21,GRY,30000.0,STOLEN,22494,"{'type': 'Point', 'coordinates': (-79.37216642, 43.67672597)}"
-22512,13058,GO-20201203084,B&E,2020-06-30T00:00:00,2020,June,Tuesday,30,182,1,2020-06-30T00:00:00,2020,June,Tuesday,30,182,13,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,ARGON 18,,TO,21,WHI,3000.0,STOLEN,22495,"{'type': 'Point', 'coordinates': (-79.37216642, 43.67672597)}"
-22513,13059,GO-20201203084,B&E,2020-06-30T00:00:00,2020,June,Tuesday,30,182,1,2020-06-30T00:00:00,2020,June,Tuesday,30,182,13,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MIELE,,MT,21,BLU,500.0,STOLEN,22496,"{'type': 'Point', 'coordinates': (-79.37216642, 43.67672597)}"
-22514,13060,GO-20201203084,B&E,2020-06-30T00:00:00,2020,June,Tuesday,30,182,1,2020-06-30T00:00:00,2020,June,Tuesday,30,182,13,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,U/K,OT,21,BLKGRN,8000.0,STOLEN,22497,"{'type': 'Point', 'coordinates': (-79.37216642, 43.67672597)}"
-22515,14072,GO-20169006227,THEFT UNDER - BICYCLE,2016-06-22T00:00:00,2016,June,Wednesday,22,174,21,2016-06-23T00:00:00,2016,June,Thursday,23,175,1,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SILHOUETTE URBA,RG,21,SIL,300.0,STOLEN,22499,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22516,14076,GO-20169007058,THEFT UNDER - BICYCLE,2016-07-11T00:00:00,2016,July,Monday,11,193,19,2016-07-12T00:00:00,2016,July,Tuesday,12,194,0,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ADAGIO,OT,21,OTH,696.0,STOLEN,22500,"{'type': 'Point', 'coordinates': (-79.38746342000002, 43.6719238)}"
-22517,14131,GO-20169014108,THEFT UNDER - BICYCLE,2016-12-01T00:00:00,2016,December,Thursday,1,336,15,2016-12-01T00:00:00,2016,December,Thursday,1,336,19,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,29ER,MT,21,BLK,600.0,STOLEN,22501,"{'type': 'Point', 'coordinates': (-79.39452744, 43.68913212)}"
-22518,14191,GO-20179015052,THEFT UNDER - BICYCLE,2017-09-17T00:00:00,2017,September,Sunday,17,260,3,2017-09-18T00:00:00,2017,September,Monday,18,261,20,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,NO,,RC,22,BLK,2300.0,STOLEN,22502,"{'type': 'Point', 'coordinates': (-79.37782305, 43.67503288)}"
-22519,14192,GO-20179015052,THEFT UNDER - BICYCLE,2017-09-17T00:00:00,2017,September,Sunday,17,260,3,2017-09-18T00:00:00,2017,September,Monday,18,261,20,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,24,RED,700.0,STOLEN,22503,"{'type': 'Point', 'coordinates': (-79.37782305, 43.67503288)}"
-22520,14193,GO-20179015052,THEFT UNDER - BICYCLE,2017-09-17T00:00:00,2017,September,Sunday,17,260,3,2017-09-18T00:00:00,2017,September,Monday,18,261,20,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,24,BLU,1300.0,STOLEN,22504,"{'type': 'Point', 'coordinates': (-79.37782305, 43.67503288)}"
-22521,14194,GO-20179015052,THEFT UNDER - BICYCLE,2017-09-17T00:00:00,2017,September,Sunday,17,260,3,2017-09-18T00:00:00,2017,September,Monday,18,261,20,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,1,OTH,600.0,STOLEN,22505,"{'type': 'Point', 'coordinates': (-79.37782305, 43.67503288)}"
-22522,14203,GO-20179016252,THEFT UNDER - BICYCLE,2017-10-02T00:00:00,2017,October,Monday,2,275,6,2017-10-02T00:00:00,2017,October,Monday,2,275,11,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,P2,RC,14,WHI,3000.0,STOLEN,22506,"{'type': 'Point', 'coordinates': (-79.3926068, 43.68840573)}"
-22523,14219,GO-20189001904,THEFT UNDER - BICYCLE,2018-01-20T00:00:00,2018,January,Saturday,20,20,17,2018-01-20T00:00:00,2018,January,Saturday,20,20,18,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,,RG,20,BLK,350.0,STOLEN,22507,"{'type': 'Point', 'coordinates': (-79.38746342000002, 43.6719238)}"
-22524,14225,GO-20189010528,THEFT UNDER - BICYCLE,2018-04-05T00:00:00,2018,April,Thursday,5,95,0,2018-04-05T00:00:00,2018,April,Thursday,5,95,0,D53,Toronto,98,Rosedale-Moore Park (98),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,,MT,10,WHI,2500.0,STOLEN,22508,"{'type': 'Point', 'coordinates': (-79.3890505, 43.68846534)}"
-22525,14226,GO-20189010528,THEFT UNDER - BICYCLE,2018-04-05T00:00:00,2018,April,Thursday,5,95,0,2018-04-05T00:00:00,2018,April,Thursday,5,95,0,D53,Toronto,98,Rosedale-Moore Park (98),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,MT,10,WHI,2500.0,STOLEN,22509,"{'type': 'Point', 'coordinates': (-79.3890505, 43.68846534)}"
-22526,14228,GO-20189010791,THEFT UNDER,2018-04-04T00:00:00,2018,April,Wednesday,4,94,1,2018-04-06T00:00:00,2018,April,Friday,6,96,21,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,CC,711713,OT,21,BLU,465.0,STOLEN,22510,"{'type': 'Point', 'coordinates': (-79.38984652, 43.68899269)}"
-22527,14244,GO-20189019232,THEFT UNDER - BICYCLE,2018-06-18T00:00:00,2018,June,Monday,18,169,15,2018-06-19T00:00:00,2018,June,Tuesday,19,170,6,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,2013,RG,24,BLK,520.0,STOLEN,22511,"{'type': 'Point', 'coordinates': (-79.38711576, 43.671122340000004)}"
-22528,14252,GO-20189020945,THEFT UNDER - BICYCLE,2018-06-16T00:00:00,2018,June,Saturday,16,167,2,2018-07-02T00:00:00,2018,July,Monday,2,183,17,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,OT,PORT ROSE 4.0,RG,7,CRM,733.0,STOLEN,22512,"{'type': 'Point', 'coordinates': (-79.39342098, 43.691619970000005)}"
-22529,14253,GO-20189021173,THEFT UNDER - BICYCLE,2018-07-04T00:00:00,2018,July,Wednesday,4,185,9,2018-07-04T00:00:00,2018,July,Wednesday,4,185,18,D53,Toronto,98,Rosedale-Moore Park (98),Ttc Subway Station,Transit,UK,IN PICTURE,MT,20,BLU,500.0,STOLEN,22513,"{'type': 'Point', 'coordinates': (-79.38949143, 43.67696204)}"
-22530,14257,GO-20189021714,THEFT UNDER - BICYCLE,2018-07-04T00:00:00,2018,July,Wednesday,4,185,16,2018-07-09T00:00:00,2018,July,Monday,9,190,15,D53,Toronto,98,Rosedale-Moore Park (98),Ttc Subway Station,Transit,OT,,RG,10,RED,0.0,STOLEN,22514,"{'type': 'Point', 'coordinates': (-79.38966274, 43.67738077)}"
-22531,14258,GO-20189022243,THEFT UNDER - BICYCLE,2018-07-12T00:00:00,2018,July,Thursday,12,193,16,2018-07-13T00:00:00,2018,July,Friday,13,194,0,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,SHIMANO GUTS,MT,21,BLK,600.0,STOLEN,22515,"{'type': 'Point', 'coordinates': (-79.38459861, 43.67181293)}"
-22532,15860,GO-20142039206,B&E,2014-05-05T00:00:00,2014,May,Monday,5,125,8,2014-05-08T00:00:00,2014,May,Thursday,8,128,15,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CANNONDALE,R800,RG,18,RED,2400.0,STOLEN,22516,"{'type': 'Point', 'coordinates': (-79.38141349, 43.69423653)}"
-22533,15861,GO-20142039206,B&E,2014-05-05T00:00:00,2014,May,Monday,5,125,8,2014-05-08T00:00:00,2014,May,Thursday,8,128,15,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,ZESTY 214,MT,27,WHIRED,3500.0,STOLEN,22517,"{'type': 'Point', 'coordinates': (-79.38141349, 43.69423653)}"
-22534,15862,GO-20142044210,THEFT UNDER,2014-05-09T00:00:00,2014,May,Friday,9,129,7,2014-05-09T00:00:00,2014,May,Friday,9,129,11,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,INDY 3,OT,12,GRY,400.0,STOLEN,22518,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22535,15866,GO-20149003697,THEFT UNDER,2014-05-30T00:00:00,2014,May,Friday,30,150,1,2014-05-30T00:00:00,2014,May,Friday,30,150,18,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,MT,21,SIL,750.0,RECOVERED,22519,"{'type': 'Point', 'coordinates': (-79.38127573, 43.6795642)}"
-22536,15895,GO-20149005499,THEFT UNDER,2014-07-30T00:00:00,2014,July,Wednesday,30,211,7,2014-08-01T00:00:00,2014,August,Friday,1,213,13,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,"7.2 FX WSD 19""""",RG,21,PLE,600.0,STOLEN,22520,"{'type': 'Point', 'coordinates': (-79.3886562, 43.67488192)}"
-22537,15915,GO-20143139448,THEFT UNDER,2014-10-19T00:00:00,2014,October,Sunday,19,292,13,2014-10-20T00:00:00,2014,October,Monday,20,293,10,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,ROCKY MOUNTAIN,,RG,21,BLKGRY,,STOLEN,22521,"{'type': 'Point', 'coordinates': (-79.3926068, 43.68840573)}"
-22538,15952,GO-20151096559,THEFT OVER,2015-06-26T00:00:00,2015,June,Friday,26,177,20,2015-06-29T00:00:00,2015,June,Monday,29,180,20,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,VITESS,BESPOKE,OT,16,GRYRED,19097.0,STOLEN,22522,"{'type': 'Point', 'coordinates': (-79.37954964000001, 43.68915333)}"
-22539,15968,GO-20159005889,THEFT UNDER,2015-08-15T00:00:00,2015,August,Saturday,15,227,11,2015-08-17T00:00:00,2015,August,Monday,17,229,9,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,OT,FPQUATTRO,RC,10,RED,2300.0,STOLEN,22523,"{'type': 'Point', 'coordinates': (-79.39314545, 43.68588136)}"
-22540,15970,GO-20151425459,THEFT UNDER,2015-08-14T00:00:00,2015,August,Friday,14,226,16,2015-08-19T00:00:00,2015,August,Wednesday,19,231,9,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,ESCAPE,MT,0,GRNBLK,600.0,STOLEN,22524,"{'type': 'Point', 'coordinates': (-79.39068757, 43.67989949)}"
-22541,15974,GO-20159006421,THEFT UNDER,2015-08-11T00:00:00,2015,August,Tuesday,11,223,8,2015-08-25T00:00:00,2015,August,Tuesday,25,237,22,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,EM,ALIEN,EL,60,PLE,995.0,STOLEN,22525,"{'type': 'Point', 'coordinates': (-79.38610751, 43.68356572)}"
-22542,15979,GO-20159007042,THEFT UNDER,2015-09-08T00:00:00,2015,September,Tuesday,8,251,23,2015-09-11T00:00:00,2015,September,Friday,11,254,14,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,ANTHEM 1 29ER,MT,20,OTH,2000.0,STOLEN,22526,"{'type': 'Point', 'coordinates': (-79.37655047, 43.69178302)}"
-22543,16007,GO-20169002237,THEFT UNDER,2016-03-11T00:00:00,2016,March,Friday,11,71,12,2016-03-11T00:00:00,2016,March,Friday,11,71,17,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,TRAFIK,RG,21,BLK,120.0,STOLEN,22527,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22544,16070,GO-20209021844,THEFT UNDER - BICYCLE,2020-08-30T00:00:00,2020,August,Sunday,30,243,19,2020-08-31T00:00:00,2020,August,Monday,31,244,11,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RA,,RG,1,DBL,400.0,STOLEN,22528,"{'type': 'Point', 'coordinates': (-79.38489765, 43.672483830000004)}"
-22545,2004,GO-20189002655,THEFT UNDER - BICYCLE,2017-11-01T00:00:00,2017,November,Wednesday,1,305,15,2018-01-26T00:00:00,2018,January,Friday,26,26,16,D53,Toronto,97,Yonge-St.Clair (97),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ROADSTER,RG,1,BLK,550.0,STOLEN,22529,"{'type': 'Point', 'coordinates': (-79.39982836, 43.68693619)}"
-22546,3070,GO-20189025078,THEFT FROM MOTOR VEHICLE UNDER,2018-08-04T00:00:00,2018,August,Saturday,4,216,6,2018-08-04T00:00:00,2018,August,Saturday,4,216,9,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,GI,AVAIL,RC,21,BLU,1600.0,STOLEN,22530,"{'type': 'Point', 'coordinates': (-79.39982836, 43.68693619)}"
-22547,534,GO-20179007486,THEFT UNDER - BICYCLE,2017-06-04T00:00:00,2017,June,Sunday,4,155,13,2017-06-04T00:00:00,2017,June,Sunday,4,155,18,D53,Toronto,100,Yonge-Eglinton (100),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,MARLIN 5,MT,7,RED,550.0,STOLEN,22531,"{'type': 'Point', 'coordinates': (-79.40327303, 43.70724152)}"
-22548,7484,GO-20209026730,THEFT UNDER,2020-10-09T00:00:00,2020,October,Friday,9,283,6,2020-10-10T00:00:00,2020,October,Saturday,10,284,16,D53,Toronto,99,Mount Pleasant East (99),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,FASTROAD COMAX,RG,11,BLK,4999.0,STOLEN,22532,"{'type': 'Point', 'coordinates': (-79.38964434, 43.71301971)}"
-22549,3238,GO-20189026729,THEFT UNDER - BICYCLE,2018-07-16T00:00:00,2018,July,Monday,16,197,21,2018-08-16T00:00:00,2018,August,Thursday,16,228,21,D53,Toronto,97,Yonge-St.Clair (97),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,,OT,32,,500.0,STOLEN,22533,"{'type': 'Point', 'coordinates': (-79.39641894, 43.69109398)}"
-22550,837,GO-20179010019,THEFT UNDER - BICYCLE,2017-07-04T00:00:00,2017,July,Tuesday,4,185,18,2017-07-12T00:00:00,2017,July,Wednesday,12,193,11,D53,Toronto,100,Yonge-Eglinton (100),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,SERENGETI,RG,21,BLU,700.0,STOLEN,22534,"{'type': 'Point', 'coordinates': (-79.39936122, 43.701349)}"
-22551,25461,GO-20179010248,THEFT UNDER - BICYCLE,2017-07-14T00:00:00,2017,July,Friday,14,195,19,2017-07-15T00:00:00,2017,July,Saturday,15,196,11,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,CA,SUPER V 1000,MT,8,BLU,0.0,STOLEN,22535,"{'type': 'Point', 'coordinates': (-79.39982836, 43.68693619)}"
-22552,5148,GO-20191614258,THEFT UNDER,2019-08-16T00:00:00,2019,August,Friday,16,228,20,2019-08-24T00:00:00,2019,August,Saturday,24,236,13,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,OTHER,,MT,15,BLU,1000.0,STOLEN,22536,"{'type': 'Point', 'coordinates': (-79.38958887, 43.68009143)}"
-22553,25468,GO-20179010781,THEFT UNDER - BICYCLE,2017-07-21T00:00:00,2017,July,Friday,21,202,7,2017-07-21T00:00:00,2017,July,Friday,21,202,21,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,NO,,MT,24,RED,600.0,STOLEN,22537,"{'type': 'Point', 'coordinates': (-79.3972217, 43.69465737)}"
-22554,25469,GO-20179010822,THEFT UNDER - BICYCLE,2017-07-22T00:00:00,2017,July,Saturday,22,203,0,2017-07-22T00:00:00,2017,July,Saturday,22,203,19,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,RA,,RG,3,BLK,500.0,STOLEN,22538,"{'type': 'Point', 'coordinates': (-79.3972217, 43.69465737)}"
-22555,5151,GO-20199027559,THEFT UNDER,2019-08-24T00:00:00,2019,August,Saturday,24,236,1,2019-08-24T00:00:00,2019,August,Saturday,24,236,21,D53,Toronto,98,Rosedale-Moore Park (98),Homeless Shelter / Mission,Other,UK,,FO,3,BLK,1000.0,STOLEN,22539,"{'type': 'Point', 'coordinates': (-79.38476649, 43.67217315)}"
-22556,25470,GO-20179010884,THEFT UNDER - BICYCLE,2017-07-15T00:00:00,2017,July,Saturday,15,196,20,2017-07-23T00:00:00,2017,July,Sunday,23,204,22,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,TR,8.3 DS 19 TREK,RG,24,BLK,1140.0,STOLEN,22540,"{'type': 'Point', 'coordinates': (-79.39885188, 43.68940399)}"
-22557,3294,GO-20189027559,THEFT UNDER - BICYCLE,2018-08-15T00:00:00,2018,August,Wednesday,15,227,9,2018-08-23T00:00:00,2018,August,Thursday,23,235,10,D53,Toronto,97,Yonge-St.Clair (97),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,UNKNOWN,OT,12,RED,600.0,STOLEN,22541,"{'type': 'Point', 'coordinates': (-79.39410173, 43.68808307)}"
-22558,7696,GO-20209031644,THEFT UNDER,2020-12-05T00:00:00,2020,December,Saturday,5,340,2,2020-12-09T00:00:00,2020,December,Wednesday,9,344,21,D53,Toronto,99,Mount Pleasant East (99),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,OLYMPUS,RC,12,MRN,300.0,STOLEN,22542,"{'type': 'Point', 'coordinates': (-79.39015647, 43.70840884)}"
-22559,1041,GO-20179011497,THEFT UNDER - BICYCLE,2017-08-02T00:00:00,2017,August,Wednesday,2,214,6,2017-08-02T00:00:00,2017,August,Wednesday,2,214,6,D53,Toronto,100,Yonge-Eglinton (100),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,CAAD10,RC,11,WHI,1700.0,STOLEN,22543,"{'type': 'Point', 'coordinates': (-79.40424484, 43.70986172)}"
-22560,5195,GO-20191644406,THEFT UNDER - BICYCLE,2019-08-28T00:00:00,2019,August,Wednesday,28,240,12,2019-08-28T00:00:00,2019,August,Wednesday,28,240,17,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,TREK 17FX,OT,21,BLK,2488.0,STOLEN,22544,"{'type': 'Point', 'coordinates': (-79.39000152000001, 43.67820922)}"
-22561,25548,GO-20181078490,THEFT UNDER - BICYCLE,2018-06-12T00:00:00,2018,June,Tuesday,12,163,17,2018-06-14T00:00:00,2018,June,Thursday,14,165,10,D53,Toronto,97,Yonge-St.Clair (97),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN,UNKNOWN,MT,21,SIL,500.0,STOLEN,22545,"{'type': 'Point', 'coordinates': (-79.39831158, 43.67903889)}"
-22562,3314,GO-20189027848,THEFT UNDER - BICYCLE,2018-08-22T00:00:00,2018,August,Wednesday,22,234,8,2018-08-24T00:00:00,2018,August,Friday,24,236,21,D53,Toronto,97,Yonge-St.Clair (97),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE,RG,24,WHI,800.0,STOLEN,22546,"{'type': 'Point', 'coordinates': (-79.40108597, 43.68571624)}"
-22563,7711,GO-20209032461,THEFT UNDER,2020-12-18T00:00:00,2020,December,Friday,18,353,21,2020-12-19T00:00:00,2020,December,Saturday,19,354,21,D53,Toronto,99,Mount Pleasant East (99),"Apartment (Rooming House, Condo)",Apartment,TR,,RG,1,RED,0.0,STOLEN,22547,"{'type': 'Point', 'coordinates': (-79.38316772, 43.70981512)}"
-22564,8806,GO-20142847252,THEFT UNDER,2014-09-04T00:00:00,2014,September,Thursday,4,247,23,2014-09-05T00:00:00,2014,September,Friday,5,248,9,D53,Toronto,99,Mount Pleasant East (99),"Single Home, House (Attach Garage, Cottage, Mobile)",House,THIN BLUE LINE,DUSTER,MT,18,BLU,700.0,STOLEN,22548,"{'type': 'Point', 'coordinates': (-79.38516279, 43.70212102)}"
-22565,8894,GO-20149006906,THEFT UNDER,2014-09-04T00:00:00,2014,September,Thursday,4,247,8,2014-09-15T00:00:00,2014,September,Monday,15,258,9,D53,Toronto,99,Mount Pleasant East (99),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,Q24,MT,21,RED,500.0,STOLEN,22549,"{'type': 'Point', 'coordinates': (-79.38516279, 43.70212102)}"
-22566,8965,GO-20149007179,THEFT UNDER,2014-09-24T00:00:00,2014,September,Wednesday,24,267,0,2014-09-24T00:00:00,2014,September,Wednesday,24,267,22,D53,Toronto,99,Mount Pleasant East (99),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,MT,24,SIL,0.0,STOLEN,22550,"{'type': 'Point', 'coordinates': (-79.37525389, 43.70274973)}"
-22567,8966,GO-20149007179,THEFT UNDER,2014-09-24T00:00:00,2014,September,Wednesday,24,267,0,2014-09-24T00:00:00,2014,September,Wednesday,24,267,22,D53,Toronto,99,Mount Pleasant East (99),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MA,,RG,8,GRY,700.0,STOLEN,22551,"{'type': 'Point', 'coordinates': (-79.37525389, 43.70274973)}"
-22568,9479,GO-2015695505,THEFT UNDER,2015-04-26T00:00:00,2015,April,Sunday,26,116,22,2015-04-27T00:00:00,2015,April,Monday,27,117,11,D53,Toronto,99,Mount Pleasant East (99),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,STUNT JUMPER,MT,10,BLK,500.0,STOLEN,22552,"{'type': 'Point', 'coordinates': (-79.39262767, 43.71498286)}"
-22569,9480,GO-2015695505,THEFT UNDER,2015-04-26T00:00:00,2015,April,Sunday,26,116,22,2015-04-27T00:00:00,2015,April,Monday,27,117,11,D53,Toronto,99,Mount Pleasant East (99),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ADAMS,TRAIL-A-BIKE,FO,1,BLK,200.0,STOLEN,22553,"{'type': 'Point', 'coordinates': (-79.39262767, 43.71498286)}"
-22570,9656,GO-20159003109,THEFT UNDER,2015-05-26T00:00:00,2015,May,Tuesday,26,146,13,2015-05-26T00:00:00,2015,May,Tuesday,26,146,14,D53,Toronto,99,Mount Pleasant East (99),Schools During Supervised Activity,Educational,GI,50051714,MT,12,BLK,800.0,STOLEN,22554,"{'type': 'Point', 'coordinates': (-79.39118625, 43.71112991)}"
-22571,9761,GO-20159003462,THEFT UNDER,2015-06-05T00:00:00,2015,June,Friday,5,156,22,2015-06-09T00:00:00,2015,June,Tuesday,9,160,11,D53,Toronto,99,Mount Pleasant East (99),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,ADVENTURE 3,RG,21,DBL,800.0,STOLEN,22555,"{'type': 'Point', 'coordinates': (-79.3837606, 43.70240764)}"
-22572,10022,GO-20159004585,THEFT UNDER,2015-07-11T00:00:00,2015,July,Saturday,11,192,0,2015-07-15T00:00:00,2015,July,Wednesday,15,196,12,D53,Toronto,99,Mount Pleasant East (99),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,CALDERA,MT,18,DGR,1350.0,STOLEN,22556,"{'type': 'Point', 'coordinates': (-79.38555091, 43.70313406)}"
-22573,10047,GO-20159004676,THEFT UNDER,2015-07-15T00:00:00,2015,July,Wednesday,15,196,9,2015-07-17T00:00:00,2015,July,Friday,17,198,20,D53,Toronto,99,Mount Pleasant East (99),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MA,,MT,27,BLU,0.0,STOLEN,22557,"{'type': 'Point', 'coordinates': (-79.3786832, 43.70821722)}"
-22574,10070,GO-20151240413,THEFT UNDER,2015-07-15T00:00:00,2015,July,Wednesday,15,196,0,2015-07-21T00:00:00,2015,July,Tuesday,21,202,8,D53,Toronto,99,Mount Pleasant East (99),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,ROAM 3,OT,9,BLKBLU,500.0,STOLEN,22558,"{'type': 'Point', 'coordinates': (-79.39262767, 43.71498286)}"
-22575,10071,GO-20151240413,THEFT UNDER,2015-07-15T00:00:00,2015,July,Wednesday,15,196,0,2015-07-21T00:00:00,2015,July,Tuesday,21,202,8,D53,Toronto,99,Mount Pleasant East (99),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DEVINCI,DUBLIN,OT,9,BLK,800.0,STOLEN,22559,"{'type': 'Point', 'coordinates': (-79.39262767, 43.71498286)}"
-22576,10190,GO-20159005417,THEFT UNDER,2015-08-03T00:00:00,2015,August,Monday,3,215,15,2015-08-06T00:00:00,2015,August,Thursday,6,218,19,D53,Toronto,99,Mount Pleasant East (99),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,SEEK 2 URBAN HY,RG,27,WHI,750.0,STOLEN,22560,"{'type': 'Point', 'coordinates': (-79.38017353, 43.70600897)}"
-22577,10272,GO-20159005855,THEFT UNDER,2015-08-15T00:00:00,2015,August,Saturday,15,227,16,2015-08-15T00:00:00,2015,August,Saturday,15,227,20,D53,Toronto,99,Mount Pleasant East (99),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,TRICROSS SPORT,RC,27,ONG,1500.0,STOLEN,22561,"{'type': 'Point', 'coordinates': (-79.38666777, 43.70035376)}"
-22578,10303,GO-20151444215,THEFT UNDER,2015-08-21T00:00:00,2015,August,Friday,21,233,21,2015-08-22T00:00:00,2015,August,Saturday,22,234,8,D53,Toronto,99,Mount Pleasant East (99),"Apartment (Rooming House, Condo)",Apartment,GIANT,ESCAPE,RG,8,WHI,600.0,STOLEN,22562,"{'type': 'Point', 'coordinates': (-79.38060408, 43.70163928)}"
-22579,10342,GO-20151489961,THEFT UNDER,2015-08-08T00:00:00,2015,August,Saturday,8,220,9,2015-08-29T00:00:00,2015,August,Saturday,29,241,18,D53,Toronto,99,Mount Pleasant East (99),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,VERMONT,OT,24,GRY,,STOLEN,22563,"{'type': 'Point', 'coordinates': (-79.38249319, 43.70553881)}"
-22580,10441,GO-20159007001,THEFT UNDER,2015-09-07T00:00:00,2015,September,Monday,7,250,22,2015-09-10T00:00:00,2015,September,Thursday,10,253,19,D53,Toronto,99,Mount Pleasant East (99),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,QUICK 4,RG,24,BLK,800.0,STOLEN,22564,"{'type': 'Point', 'coordinates': (-79.37944664, 43.70709286)}"
-22581,10665,GO-20159008848,THEFT UNDER,2015-10-21T00:00:00,2015,October,Wednesday,21,294,0,2015-10-21T00:00:00,2015,October,Wednesday,21,294,16,D53,Toronto,99,Mount Pleasant East (99),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RM,VERTEX - TRIBAL,MT,21,OTH,4000.0,STOLEN,22565,"{'type': 'Point', 'coordinates': (-79.38364732, 43.7110232)}"
-22582,10688,GO-20159009036,THEFT UNDER,2015-10-26T00:00:00,2015,October,Monday,26,299,15,2015-10-26T00:00:00,2015,October,Monday,26,299,16,D53,Toronto,99,Mount Pleasant East (99),Schools During Supervised Activity,Educational,GI,,MT,12,BLU,590.0,STOLEN,22566,"{'type': 'Point', 'coordinates': (-79.39118625, 43.71112991)}"
-22583,10701,GO-20159009101,THEFT UNDER,2015-10-14T00:00:00,2015,October,Wednesday,14,287,15,2015-10-27T00:00:00,2015,October,Tuesday,27,300,22,D53,Toronto,99,Mount Pleasant East (99),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,FP DUE,RC,10,WHI,3000.0,STOLEN,22567,"{'type': 'Point', 'coordinates': (-79.38265454, 43.71121538)}"
-22584,10713,GO-20151878204,THEFT UNDER,2015-10-29T00:00:00,2015,October,Thursday,29,302,16,2015-11-01T00:00:00,2015,November,Sunday,1,305,13,D53,Toronto,99,Mount Pleasant East (99),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,,MT,12,GRY,800.0,STOLEN,22568,"{'type': 'Point', 'coordinates': (-79.37375017, 43.702063980000005)}"
-22585,10742,GO-20151921683,THEFT UNDER,2015-11-08T00:00:00,2015,November,Sunday,8,312,13,2015-11-08T00:00:00,2015,November,Sunday,8,312,19,D53,Toronto,99,Mount Pleasant East (99),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KONO,JAKE,OT,20,ONG,1700.0,STOLEN,22569,"{'type': 'Point', 'coordinates': (-79.3786832, 43.70821722)}"
-22586,10766,GO-20159009704,THEFT UNDER,2015-11-07T00:00:00,2015,November,Saturday,7,311,16,2015-11-13T00:00:00,2015,November,Friday,13,317,15,D53,Toronto,99,Mount Pleasant East (99),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,BM,1,LGR,500.0,STOLEN,22570,"{'type': 'Point', 'coordinates': (-79.39708385, 43.7155668)}"
-22587,11002,GO-2016305341,THEFT UNDER,2016-02-14T00:00:00,2016,February,Sunday,14,45,10,2016-02-20T00:00:00,2016,February,Saturday,20,51,18,D53,Toronto,99,Mount Pleasant East (99),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,FX7.4,MT,21,BLKBLU,1000.0,STOLEN,22571,"{'type': 'Point', 'coordinates': (-79.39061698, 43.70961667000001)}"
-22588,11108,GO-2016582046,THEFT UNDER - BICYCLE,2016-04-05T00:00:00,2016,April,Tuesday,5,96,21,2016-04-06T00:00:00,2016,April,Wednesday,6,97,8,D53,Toronto,99,Mount Pleasant East (99),"Single Home, House (Attach Garage, Cottage, Mobile)",House,LOUIS GARNEAU,,OT,0,BLUSIL,,STOLEN,22572,"{'type': 'Point', 'coordinates': (-79.38249319, 43.70553881)}"
-22589,11109,GO-2016582046,THEFT UNDER - BICYCLE,2016-04-05T00:00:00,2016,April,Tuesday,5,96,21,2016-04-06T00:00:00,2016,April,Wednesday,6,97,8,D53,Toronto,99,Mount Pleasant East (99),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,OT,0,BLU,500.0,STOLEN,22573,"{'type': 'Point', 'coordinates': (-79.38249319, 43.70553881)}"
-22590,11422,GO-20169005195,THEFT UNDER - BICYCLE,2016-05-23T00:00:00,2016,May,Monday,23,144,19,2016-05-31T00:00:00,2016,May,Tuesday,31,152,23,D53,Toronto,99,Mount Pleasant East (99),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,PALADIN,MT,21,BLK,200.0,STOLEN,22574,"{'type': 'Point', 'coordinates': (-79.38784802, 43.708861170000006)}"
-22591,11492,GO-2016919840,THEFT UNDER - BICYCLE,2016-05-27T00:00:00,2016,May,Friday,27,148,22,2016-05-28T00:00:00,2016,May,Saturday,28,149,7,D53,Toronto,99,Mount Pleasant East (99),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,JYNX SPECIALIZE,MT,24,GRY,550.0,UNKNOWN,22575,"{'type': 'Point', 'coordinates': (-79.3818043, 43.70034433)}"
-22592,11631,GO-20161110490,PROPERTY - FOUND,2016-05-28T00:00:00,2016,May,Saturday,28,149,15,2016-06-25T00:00:00,2016,June,Saturday,25,177,11,D53,Toronto,99,Mount Pleasant East (99),"Apartment (Rooming House, Condo)",Apartment,FUJI,2.3,MT,21,GRY,800.0,RECOVERED,22576,"{'type': 'Point', 'coordinates': (-79.38784802, 43.708861170000006)}"
-22593,11673,GO-20169006577,THEFT UNDER - BICYCLE,2016-06-13T00:00:00,2016,June,Monday,13,165,21,2016-06-30T00:00:00,2016,June,Thursday,30,182,18,D53,Toronto,99,Mount Pleasant East (99),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,CROSSROADS SPOR,RG,21,LBL,600.0,STOLEN,22577,"{'type': 'Point', 'coordinates': (-79.38779092000001, 43.70247018)}"
-22594,12194,GO-20161510882,THEFT UNDER - BICYCLE,2016-08-25T00:00:00,2016,August,Thursday,25,238,21,2016-08-26T00:00:00,2016,August,Friday,26,239,8,D53,Toronto,99,Mount Pleasant East (99),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OPUS,NELSON 2.0,MT,24,BLK,6000.0,STOLEN,22578,"{'type': 'Point', 'coordinates': (-79.38051586, 43.71144527)}"
-22595,12543,GO-20169011496,THEFT UNDER - BICYCLE,2016-10-03T00:00:00,2016,October,Monday,3,277,11,2016-10-03T00:00:00,2016,October,Monday,3,277,16,D53,Toronto,99,Mount Pleasant East (99),Schools During Un-Supervised Activity,Educational,OT,HARD ROCK,MT,21,RED,950.0,STOLEN,22579,"{'type': 'Point', 'coordinates': (-79.39118625, 43.71112991)}"
-22596,13017,GO-20209003997,THEFT UNDER,2019-11-29T00:00:00,2019,November,Friday,29,333,11,2020-02-02T00:00:00,2020,February,Sunday,2,33,22,D53,Toronto,99,Mount Pleasant East (99),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,820,RG,21,BLK,700.0,STOLEN,22580,"{'type': 'Point', 'coordinates': (-79.37830655, 43.710773190000005)}"
-22597,13023,GO-20209008316,THEFT UNDER - BICYCLE,2020-03-09T00:00:00,2020,March,Monday,9,69,12,2020-03-09T00:00:00,2020,March,Monday,9,69,15,D53,Toronto,99,Mount Pleasant East (99),Schools During Supervised Activity,Educational,GI,LIV 2,RG,24,BLK,800.0,STOLEN,22581,"{'type': 'Point', 'coordinates': (-79.39118625, 43.71112991)}"
-22598,13033,GO-20209013270,THEFT UNDER - BICYCLE,2020-05-16T00:00:00,2020,May,Saturday,16,137,16,2020-05-16T00:00:00,2020,May,Saturday,16,137,19,D53,Toronto,99,Mount Pleasant East (99),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SU,,RG,18,,0.0,STOLEN,22582,"{'type': 'Point', 'coordinates': (-79.38745435, 43.70164623)}"
-22599,13051,GO-20201160947,PROPERTY - FOUND,2020-06-23T00:00:00,2020,June,Tuesday,23,175,23,2020-06-24T00:00:00,2020,June,Wednesday,24,176,9,D53,Toronto,99,Mount Pleasant East (99),"Single Home, House (Attach Garage, Cottage, Mobile)",House,HUFFY,,MT,18,GRYBLU,,RECOVERED,22583,"{'type': 'Point', 'coordinates': (-79.39215994, 43.71378704)}"
-22600,14081,GO-20169007527,THEFT UNDER - BICYCLE,2016-07-19T00:00:00,2016,July,Tuesday,19,201,20,2016-07-20T00:00:00,2016,July,Wednesday,20,202,20,D53,Toronto,99,Mount Pleasant East (99),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,TORINO 205,MT,6,WHI,319.0,STOLEN,22584,"{'type': 'Point', 'coordinates': (-79.37457452, 43.70427021)}"
-22601,14108,GO-20161699543,THEFT UNDER - BICYCLE,2016-09-23T00:00:00,2016,September,Friday,23,267,6,2016-09-24T00:00:00,2016,September,Saturday,24,268,10,D53,Toronto,99,Mount Pleasant East (99),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,7.2,MT,18,BLU,300.0,STOLEN,22585,"{'type': 'Point', 'coordinates': (-79.39061698, 43.70961667000001)}"
-22602,14110,GO-20169011265,THEFT UNDER - BICYCLE,2016-09-28T00:00:00,2016,September,Wednesday,28,272,17,2016-09-28T00:00:00,2016,September,Wednesday,28,272,19,D53,Toronto,99,Mount Pleasant East (99),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GF,ADVANCE HYBRID,MT,21,BLU,800.0,STOLEN,22586,"{'type': 'Point', 'coordinates': (-79.37854379, 43.70102052)}"
-22603,14111,GO-20169011496,THEFT UNDER - BICYCLE,2016-10-03T00:00:00,2016,October,Monday,3,277,11,2016-10-03T00:00:00,2016,October,Monday,3,277,16,D53,Toronto,99,Mount Pleasant East (99),Schools During Un-Supervised Activity,Educational,UK,,MT,21,RED,500.0,STOLEN,22587,"{'type': 'Point', 'coordinates': (-79.39118625, 43.71112991)}"
-22604,14148,GO-20179005232,THEFT UNDER - BICYCLE,2017-04-22T00:00:00,2017,April,Saturday,22,112,15,2017-04-25T00:00:00,2017,April,Tuesday,25,115,9,D53,Toronto,99,Mount Pleasant East (99),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SU,PRODUCT #071-17,OT,21,GRY,400.0,STOLEN,22588,"{'type': 'Point', 'coordinates': (-79.3780083, 43.70219462)}"
-22605,14153,GO-20179006215,THEFT UNDER - BICYCLE,2017-05-12T00:00:00,2017,May,Friday,12,132,14,2017-05-12T00:00:00,2017,May,Friday,12,132,17,D53,Toronto,99,Mount Pleasant East (99),Schools During Un-Supervised Activity,Educational,TR,SUPERFLY,MT,30,WHI,2000.0,STOLEN,22589,"{'type': 'Point', 'coordinates': (-79.38666777, 43.70035376)}"
-22606,14250,GO-20189020715,THEFT UNDER - BICYCLE,2018-06-22T00:00:00,2018,June,Friday,22,173,3,2018-06-29T00:00:00,2018,June,Friday,29,180,17,D53,Toronto,99,Mount Pleasant East (99),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,MT,24,BLK,1000.0,STOLEN,22590,"{'type': 'Point', 'coordinates': (-79.38613895, 43.71213977)}"
-22607,14251,GO-20189020715,THEFT UNDER - BICYCLE,2018-06-22T00:00:00,2018,June,Friday,22,173,3,2018-06-29T00:00:00,2018,June,Friday,29,180,17,D53,Toronto,99,Mount Pleasant East (99),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,TO,24,LBL,550.0,STOLEN,22591,"{'type': 'Point', 'coordinates': (-79.38613895, 43.71213977)}"
-22608,15894,GO-20149005429,THEFT UNDER,2014-06-15T00:00:00,2014,June,Sunday,15,166,0,2014-07-29T00:00:00,2014,July,Tuesday,29,210,9,D53,Toronto,99,Mount Pleasant East (99),"Apartment (Rooming House, Condo)",Apartment,CC,BLADE RESPONSE,MT,21,BLU,500.0,STOLEN,22592,"{'type': 'Point', 'coordinates': (-79.37758414, 43.701226520000006)}"
-22609,15937,GO-20159002586,THEFT UNDER,2015-05-10T00:00:00,2015,May,Sunday,10,130,12,2015-05-10T00:00:00,2015,May,Sunday,10,130,12,D53,Toronto,99,Mount Pleasant East (99),"Open Areas (Lakes, Parks, Rivers)",Outside,CA,QUICK,OT,24,GRY,1000.0,STOLEN,22593,"{'type': 'Point', 'coordinates': (-79.38693266, 43.70031352000001)}"
-22610,15943,GO-20159003240,THEFT UNDER,2015-05-31T00:00:00,2015,May,Sunday,31,151,22,2015-06-01T00:00:00,2015,June,Monday,1,152,9,D53,Toronto,99,Mount Pleasant East (99),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,VERVE 2,RG,27,GRY,600.0,STOLEN,22594,"{'type': 'Point', 'coordinates': (-79.3768713, 43.70380014)}"
-22611,15944,GO-20159003419,THEFT UNDER,2015-06-05T00:00:00,2015,June,Friday,5,156,20,2015-06-08T00:00:00,2015,June,Monday,8,159,12,D53,Toronto,99,Mount Pleasant East (99),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,2013 ROAM XR2,MT,10,BLK,1370.0,STOLEN,22595,"{'type': 'Point', 'coordinates': (-79.38548497, 43.70294946)}"
-22612,15945,GO-2015961739,PROPERTY - FOUND,2015-06-08T00:00:00,2015,June,Monday,8,159,18,2015-06-08T00:00:00,2015,June,Monday,8,159,18,D53,Toronto,99,Mount Pleasant East (99),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,VERVE 2,MT,21,BLKGRY,,UNKNOWN,22596,"{'type': 'Point', 'coordinates': (-79.38017353, 43.70600897)}"
-22613,15987,GO-20159008195,THEFT UNDER,2015-09-24T00:00:00,2015,September,Thursday,24,267,16,2015-10-05T00:00:00,2015,October,Monday,5,278,16,D53,Toronto,99,Mount Pleasant East (99),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,RAMBLER,RG,5,WHI,500.0,STOLEN,22597,"{'type': 'Point', 'coordinates': (-79.38629235, 43.69939475)}"
-22614,16043,GO-20201333452,THEFT UNDER - BICYCLE,2020-07-17T00:00:00,2020,July,Friday,17,199,19,2020-07-18T00:00:00,2020,July,Saturday,18,200,10,D53,Toronto,99,Mount Pleasant East (99),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,CRITICAL,TO,7,GRNLBL,190.0,STOLEN,22598,"{'type': 'Point', 'coordinates': (-79.3864381, 43.69817521)}"
-22615,16072,GO-20209022552,THEFT UNDER - BICYCLE,2020-09-07T00:00:00,2020,September,Monday,7,251,15,2020-09-07T00:00:00,2020,September,Monday,7,251,20,D53,Toronto,99,Mount Pleasant East (99),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RG,21,RED,200.0,STOLEN,22599,"{'type': 'Point', 'coordinates': (-79.39015647, 43.70840884)}"
-22616,16104,GO-20209029443,THEFT UNDER,2020-11-07T00:00:00,2020,November,Saturday,7,312,12,2020-11-12T00:00:00,2020,November,Thursday,12,317,18,D53,Toronto,99,Mount Pleasant East (99),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,700C NETWORK 1.,RG,21,WHI,816.0,STOLEN,22600,"{'type': 'Point', 'coordinates': (-79.37960262, 43.71052702)}"
-22617,18734,GO-20209020043,THEFT UNDER - BICYCLE,2020-08-11T00:00:00,2020,August,Tuesday,11,224,22,2020-08-12T00:00:00,2020,August,Wednesday,12,225,18,D53,Toronto,99,Mount Pleasant East (99),"Apartment (Rooming House, Condo)",Apartment,CA,,RG,14,BLU,900.0,STOLEN,22601,"{'type': 'Point', 'coordinates': (-79.38861937, 43.71163613)}"
-22618,18749,GO-20209021561,THEFT UNDER - BICYCLE,2020-08-26T00:00:00,2020,August,Wednesday,26,239,16,2020-08-27T00:00:00,2020,August,Thursday,27,240,18,D53,Toronto,99,Mount Pleasant East (99),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,21,GRY,700.0,STOLEN,22602,"{'type': 'Point', 'coordinates': (-79.3883266, 43.7100694)}"
-22619,18837,GO-20142360448,THEFT UNDER,2014-06-24T00:00:00,2014,June,Tuesday,24,175,20,2014-06-24T00:00:00,2014,June,Tuesday,24,175,20,D53,Toronto,99,Mount Pleasant East (99),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,STUNTJUMPER FSR,MT,20,WHIGRY,5700.0,STOLEN,22603,"{'type': 'Point', 'coordinates': (-79.40040239, 43.71637535)}"
-22620,18894,GO-20159003366,THEFT UNDER,2015-05-30T00:00:00,2015,May,Saturday,30,150,12,2015-06-05T00:00:00,2015,June,Friday,5,156,16,D53,Toronto,99,Mount Pleasant East (99),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,8.4 DS,RG,27,BLK,1000.0,STOLEN,22604,"{'type': 'Point', 'coordinates': (-79.38133221, 43.70576714)}"
-22621,18895,GO-20159003407,THEFT UNDER,2015-04-10T00:00:00,2015,April,Friday,10,100,18,2015-06-07T00:00:00,2015,June,Sunday,7,158,18,D53,Toronto,99,Mount Pleasant East (99),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KO,SHRED,MT,15,BLU,700.0,STOLEN,22605,"{'type': 'Point', 'coordinates': (-79.3768713, 43.70380014)}"
-22622,18896,GO-20159003407,THEFT UNDER,2015-04-10T00:00:00,2015,April,Friday,10,100,18,2015-06-07T00:00:00,2015,June,Sunday,7,158,18,D53,Toronto,99,Mount Pleasant East (99),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KO,,MT,15,BLU,700.0,STOLEN,22606,"{'type': 'Point', 'coordinates': (-79.3768713, 43.70380014)}"
-22623,18942,GO-20159007907,THEFT UNDER,2015-09-27T00:00:00,2015,September,Sunday,27,270,1,2015-09-29T00:00:00,2015,September,Tuesday,29,272,10,D53,Toronto,99,Mount Pleasant East (99),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,7.1F,MT,10,BLK,527.0,STOLEN,22607,"{'type': 'Point', 'coordinates': (-79.38516279, 43.70212102)}"
-22624,18951,GO-20151867661,THEFT UNDER,2015-10-30T00:00:00,2015,October,Friday,30,303,18,2015-10-30T00:00:00,2015,October,Friday,30,303,19,D53,Toronto,99,Mount Pleasant East (99),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,FX-7,MT,0,BLKWHI,,STOLEN,22608,"{'type': 'Point', 'coordinates': (-79.38000564, 43.70793957)}"
-22625,18983,GO-2016919840,THEFT UNDER - BICYCLE,2016-05-27T00:00:00,2016,May,Friday,27,148,22,2016-05-28T00:00:00,2016,May,Saturday,28,149,7,D53,Toronto,99,Mount Pleasant East (99),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,THRESHOLD,RG,16,SILRED,950.0,STOLEN,22609,"{'type': 'Point', 'coordinates': (-79.3818043, 43.70034433)}"
-22626,19376,GO-20209014772,THEFT UNDER - BICYCLE,2020-06-06T00:00:00,2020,June,Saturday,6,158,8,2020-06-06T00:00:00,2020,June,Saturday,6,158,23,D53,Toronto,99,Mount Pleasant East (99),"Apartment (Rooming House, Condo)",Apartment,MA,2020 LOMBARD 1,RG,18,GRY,1250.0,STOLEN,22618,"{'type': 'Point', 'coordinates': (-79.38316772, 43.70981512)}"
-22627,19052,GO-20169012151,THEFT UNDER - BICYCLE,2016-08-01T00:00:00,2016,August,Monday,1,214,15,2016-10-16T00:00:00,2016,October,Sunday,16,290,16,D53,Toronto,99,Mount Pleasant East (99),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,11 TCX 2 XS WHI,OT,18,WHI,1019.0,STOLEN,22610,"{'type': 'Point', 'coordinates': (-79.39061698, 43.70961667000001)}"
-22628,19075,GO-20179005296,THEFT UNDER - BICYCLE,2017-04-18T00:00:00,2017,April,Tuesday,18,108,20,2017-04-25T00:00:00,2017,April,Tuesday,25,115,20,D53,Toronto,99,Mount Pleasant East (99),"Apartment (Rooming House, Condo)",Apartment,KH,FLITE 750,RG,18,BLK,2000.0,STOLEN,22611,"{'type': 'Point', 'coordinates': (-79.37711785, 43.71103745)}"
-22629,19171,GO-20189020639,THEFT UNDER - BICYCLE,2018-06-28T00:00:00,2018,June,Thursday,28,179,9,2018-06-28T00:00:00,2018,June,Thursday,28,179,19,D53,Toronto,99,Mount Pleasant East (99),Schools During Supervised Activity,Educational,NO,,TO,15,BLU,499.0,STOLEN,22612,"{'type': 'Point', 'coordinates': (-79.39118625, 43.71112991)}"
-22630,19173,GO-20189020916,THEFT UNDER - BICYCLE,2018-06-29T00:00:00,2018,June,Friday,29,180,16,2018-07-02T00:00:00,2018,July,Monday,2,183,11,D53,Toronto,99,Mount Pleasant East (99),"Apartment (Rooming House, Condo)",Apartment,CANNONDALE,CX3,RG,18,BLK,1150.0,STOLEN,22613,"{'type': 'Point', 'coordinates': (-79.3883266, 43.7100694)}"
-22631,19202,GO-20189031919,THEFT UNDER - BICYCLE,2018-09-23T00:00:00,2018,September,Sunday,23,266,23,2018-09-25T00:00:00,2018,September,Tuesday,25,268,21,D53,Toronto,99,Mount Pleasant East (99),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,GI,ANYROAD1,TO,10,DBL,1550.0,STOLEN,22614,"{'type': 'Point', 'coordinates': (-79.3763982, 43.70250794)}"
-22632,19323,GO-20192459020,B&E W'INTENT,2019-12-20T00:00:00,2019,December,Friday,20,354,17,2019-12-22T00:00:00,2019,December,Sunday,22,356,10,D53,Toronto,99,Mount Pleasant East (99),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,QUICK 4 AGR,MT,18,GRN,800.0,STOLEN,22615,"{'type': 'Point', 'coordinates': (-79.39708385, 43.7155668)}"
-22633,19340,GO-2020519120,THEFT UNDER - BICYCLE,2020-03-12T00:00:00,2020,March,Thursday,12,72,12,2020-03-12T00:00:00,2020,March,Thursday,12,72,14,D53,Toronto,99,Mount Pleasant East (99),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MA,DRAKE'S BEACH,OT,3,CRM,700.0,STOLEN,22616,"{'type': 'Point', 'coordinates': (-79.38016668, 43.7104196)}"
-22634,19353,GO-2020700897,THEFT UNDER,2020-04-08T00:00:00,2020,April,Wednesday,8,99,21,2020-04-11T00:00:00,2020,April,Saturday,11,102,10,D53,Toronto,99,Mount Pleasant East (99),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,DIAGORA,AMPIO 225,MT,10,GRN,800.0,STOLEN,22617,"{'type': 'Point', 'coordinates': (-79.39262767, 43.71498286)}"
-22635,19384,GO-20201197192,B&E W'INTENT,2020-06-28T00:00:00,2020,June,Sunday,28,180,18,2020-06-29T00:00:00,2020,June,Monday,29,181,13,D53,Toronto,99,Mount Pleasant East (99),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,FIRUS 2.0,OT,18,RED,800.0,STOLEN,22619,"{'type': 'Point', 'coordinates': (-79.38629235, 43.69939475)}"
-22636,19385,GO-20201197192,B&E W'INTENT,2020-06-28T00:00:00,2020,June,Sunday,28,180,18,2020-06-29T00:00:00,2020,June,Monday,29,181,13,D53,Toronto,99,Mount Pleasant East (99),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,ROME,OT,18,GRY,800.0,STOLEN,22620,"{'type': 'Point', 'coordinates': (-79.38629235, 43.69939475)}"
-22637,19388,GO-20209016840,THEFT UNDER - BICYCLE,2020-06-23T00:00:00,2020,June,Tuesday,23,175,13,2020-07-04T00:00:00,2020,July,Saturday,4,186,13,D53,Toronto,99,Mount Pleasant East (99),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,9,BLK,200.0,STOLEN,22621,"{'type': 'Point', 'coordinates': (-79.3883266, 43.7100694)}"
-22638,19625,GO-20149004191,THEFT UNDER,2014-06-09T00:00:00,2014,June,Monday,9,160,16,2014-06-17T00:00:00,2014,June,Tuesday,17,168,19,D53,Toronto,99,Mount Pleasant East (99),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,21,GRN,300.0,STOLEN,22622,"{'type': 'Point', 'coordinates': (-79.377191, 43.7046511)}"
-22639,19696,GO-20159004830,THEFT UNDER,2015-06-28T00:00:00,2015,June,Sunday,28,179,17,2015-07-21T00:00:00,2015,July,Tuesday,21,202,18,D53,Toronto,99,Mount Pleasant East (99),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GT,DON'T KNOW,MT,18,SIL,2000.0,STOLEN,22623,"{'type': 'Point', 'coordinates': (-79.39215994, 43.71378704)}"
-22640,19697,GO-20159004830,THEFT UNDER,2015-06-28T00:00:00,2015,June,Sunday,28,179,17,2015-07-21T00:00:00,2015,July,Tuesday,21,202,18,D53,Toronto,99,Mount Pleasant East (99),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,,MT,18,BLK,1000.0,STOLEN,22624,"{'type': 'Point', 'coordinates': (-79.39215994, 43.71378704)}"
-22641,19708,GO-20159005755,THEFT UNDER,2013-07-01T00:00:00,2013,July,Monday,1,182,14,2015-08-13T00:00:00,2015,August,Thursday,13,225,15,D53,Toronto,99,Mount Pleasant East (99),"Apartment (Rooming House, Condo)",Apartment,RA,RALEIGH,RG,3,BLU,0.0,STOLEN,22625,"{'type': 'Point', 'coordinates': (-79.3763982, 43.70250794)}"
-22642,19732,GO-20159007493,THEFT UNDER,2015-09-20T00:00:00,2015,September,Sunday,20,263,23,2015-09-21T00:00:00,2015,September,Monday,21,264,9,D53,Toronto,99,Mount Pleasant East (99),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,COSTA,RC,24,GRY,1000.0,STOLEN,22626,"{'type': 'Point', 'coordinates': (-79.38132378, 43.70768441)}"
-22643,19765,GO-20169004706,THEFT UNDER - BICYCLE,2016-05-18T00:00:00,2016,May,Wednesday,18,139,22,2016-05-19T00:00:00,2016,May,Thursday,19,140,14,D53,Toronto,99,Mount Pleasant East (99),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,BAD BOY,MT,18,BLK,2500.0,STOLEN,22627,"{'type': 'Point', 'coordinates': (-79.3990598, 43.71517113)}"
-22644,22160,GO-20169006395,THEFT UNDER - BICYCLE,2016-06-25T00:00:00,2016,June,Saturday,25,177,2,2016-06-26T00:00:00,2016,June,Sunday,26,178,22,D53,Toronto,99,Mount Pleasant East (99),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,,MT,10,GRY,20.0,STOLEN,22628,"{'type': 'Point', 'coordinates': (-79.38621084000002, 43.70477295)}"
-22645,22185,GO-20169009143,THEFT UNDER - BICYCLE,2016-08-20T00:00:00,2016,August,Saturday,20,233,3,2016-08-20T00:00:00,2016,August,Saturday,20,233,17,D53,Toronto,99,Mount Pleasant East (99),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,BLACK LABEL,RC,1,BLK,1000.0,STOLEN,22629,"{'type': 'Point', 'coordinates': (-79.38929443, 43.71215209)}"
-22646,22218,GO-2017586533,THEFT UNDER - BICYCLE,2017-03-25T00:00:00,2017,March,Saturday,25,84,13,2017-04-03T00:00:00,2017,April,Monday,3,93,20,D53,Toronto,99,Mount Pleasant East (99),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,ROCK HOPPER,MT,0,BLK,1100.0,STOLEN,22630,"{'type': 'Point', 'coordinates': (-79.3883266, 43.7100694)}"
-22647,22297,GO-20189019930,THEFT UNDER - BICYCLE,2018-06-21T00:00:00,2018,June,Thursday,21,172,23,2018-06-23T00:00:00,2018,June,Saturday,23,174,13,D53,Toronto,99,Mount Pleasant East (99),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,PAVE,OT,10,BLK,1500.0,STOLEN,22631,"{'type': 'Point', 'coordinates': (-79.37742555, 43.70847241)}"
-22648,22345,GO-20189032911,THEFT UNDER - BICYCLE,2018-09-27T00:00:00,2018,September,Thursday,27,270,19,2018-10-04T00:00:00,2018,October,Thursday,4,277,19,D53,Toronto,99,Mount Pleasant East (99),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,DS2,MT,10,BLK,994.0,STOLEN,22632,"{'type': 'Point', 'coordinates': (-79.38666777, 43.70035376)}"
-22649,22473,GO-20209014787,INVALID GO - RMS ONLY,2020-06-06T00:00:00,2020,June,Saturday,6,158,8,2020-06-07T00:00:00,2020,June,Sunday,7,159,14,D53,Toronto,99,Mount Pleasant East (99),"Apartment (Rooming House, Condo)",Apartment,MA,2020 LOMBARD 1,RG,18,GRY,1250.0,STOLEN,22633,"{'type': 'Point', 'coordinates': (-79.38316772, 43.70981512)}"
-22650,22862,GO-20142737348,THEFT UNDER,2014-08-20T00:00:00,2014,August,Wednesday,20,232,6,2014-08-20T00:00:00,2014,August,Wednesday,20,232,6,D53,Toronto,99,Mount Pleasant East (99),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NONE,NONE,OT,0,BLU,,STOLEN,22634,"{'type': 'Point', 'coordinates': (-79.3864381, 43.69817521)}"
-22651,22923,GO-20151490611,THEFT UNDER,2015-08-29T00:00:00,2015,August,Saturday,29,241,16,2015-08-31T00:00:00,2015,August,Monday,31,243,23,D53,Toronto,99,Mount Pleasant East (99),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,ESCAPE,MT,24,BLKBLU,500.0,STOLEN,22635,"{'type': 'Point', 'coordinates': (-79.38060408, 43.70163928)}"
-22652,22935,GO-20159007406,THEFT UNDER,2015-09-18T00:00:00,2015,September,Friday,18,261,8,2015-09-19T00:00:00,2015,September,Saturday,19,262,14,D53,Toronto,99,Mount Pleasant East (99),Schools During Supervised Activity,Educational,GT,DLSY,BM,1,BLK,300.0,STOLEN,22636,"{'type': 'Point', 'coordinates': (-79.38516279, 43.70212102)}"
-22653,22937,GO-20151676003,THEFT UNDER - BICYCLE,2015-09-26T00:00:00,2015,September,Saturday,26,269,4,2015-09-28T00:00:00,2015,September,Monday,28,271,13,D53,Toronto,99,Mount Pleasant East (99),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,XCALIBRE,OT,22,GRN,2000.0,STOLEN,22637,"{'type': 'Point', 'coordinates': (-79.38526188, 43.70687831)}"
-22654,22940,GO-20159008525,THEFT UNDER,2015-10-13T00:00:00,2015,October,Tuesday,13,286,8,2015-10-14T00:00:00,2015,October,Wednesday,14,287,13,D53,Toronto,99,Mount Pleasant East (99),Ttc Admin Or Support Facility,Transit,GT,SERIES 4.0,RC,8,,700.0,STOLEN,22638,"{'type': 'Point', 'coordinates': (-79.39015647, 43.70840884)}"
-22655,25398,GO-20161718870,THEFT UNDER,2016-09-23T00:00:00,2016,September,Friday,23,267,18,2016-09-27T00:00:00,2016,September,Tuesday,27,271,13,D53,Toronto,99,Mount Pleasant East (99),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,OT,0,,700.0,STOLEN,22639,"{'type': 'Point', 'coordinates': (-79.38486841, 43.70945679)}"
-22656,25421,GO-20162299131,MISCHIEF UNDER,2016-12-29T00:00:00,2016,December,Thursday,29,364,4,2016-12-29T00:00:00,2016,December,Thursday,29,364,4,D53,Toronto,99,Mount Pleasant East (99),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,OVERSIZED,MT,18,GRN,,UNKNOWN,22640,"{'type': 'Point', 'coordinates': (-79.39262767, 43.71498286)}"
-22657,1164,GO-20171460775,THEFT UNDER - BICYCLE,2017-08-13T00:00:00,2017,August,Sunday,13,225,16,2017-08-13T00:00:00,2017,August,Sunday,13,225,17,D53,Toronto,100,Yonge-Eglinton (100),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,TARMAC,RG,10,REDBLK,2000.0,STOLEN,22641,"{'type': 'Point', 'coordinates': (-79.39943612, 43.71184017)}"
-22658,3688,GO-20189033570,THEFT UNDER - BICYCLE,2018-10-10T00:00:00,2018,October,Wednesday,10,283,5,2018-10-10T00:00:00,2018,October,Wednesday,10,283,19,D53,Toronto,97,Yonge-St.Clair (97),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,FLEETWING,RC,12,WHI,0.0,STOLEN,22642,"{'type': 'Point', 'coordinates': (-79.3995445, 43.69512024)}"
-22659,25573,GO-20181375951,THEFT UNDER - BICYCLE,2018-07-21T00:00:00,2018,July,Saturday,21,202,16,2018-07-27T00:00:00,2018,July,Friday,27,208,20,D53,Toronto,97,Yonge-St.Clair (97),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,TRANSEO,MT,21,BLKGRN,450.0,STOLEN,22643,"{'type': 'Point', 'coordinates': (-79.39982836, 43.68693619)}"
-22660,25645,GO-20199023175,THEFT UNDER - BICYCLE,2019-07-21T00:00:00,2019,July,Sunday,21,202,22,2019-07-22T00:00:00,2019,July,Monday,22,203,1,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,KH,URBAN SOUL 7,OT,7,DGR,500.0,STOLEN,22644,"{'type': 'Point', 'coordinates': (-79.39234422, 43.68394081)}"
-22661,25678,GO-20199032499,THEFT UNDER - BICYCLE,2019-10-02T00:00:00,2019,October,Wednesday,2,275,0,2019-10-03T00:00:00,2019,October,Thursday,3,276,14,D53,Toronto,97,Yonge-St.Clair (97),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,RC,12,BLK,250.0,STOLEN,22645,"{'type': 'Point', 'coordinates': (-79.3972217, 43.69465737)}"
-22662,25728,GO-20209015642,THEFT UNDER - BICYCLE,2020-03-01T00:00:00,2020,March,Sunday,1,61,10,2020-06-18T00:00:00,2020,June,Thursday,18,170,10,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,OT,RSDV1WBL,RG,9,WHI,400.0,STOLEN,22646,"{'type': 'Point', 'coordinates': (-79.39705798, 43.69378853)}"
-22663,25772,GO-20209023070,THEFT FROM MOTOR VEHICLE UNDER,2020-09-07T00:00:00,2020,September,Monday,7,251,20,2020-09-12T00:00:00,2020,September,Saturday,12,256,15,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,OT,TARMAC,RC,12,RED,2800.0,STOLEN,22647,"{'type': 'Point', 'coordinates': (-79.3995445, 43.69512024)}"
-22664,1,GO-20162176159,THEFT UNDER - BICYCLE,2016-12-06T00:00:00,2016,December,Tuesday,6,341,6,2016-12-08T00:00:00,2016,December,Thursday,8,343,12,D53,Toronto,98,Rosedale-Moore Park (98),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TREK,BONTRAGER,OT,21,BLK,1500.0,STOLEN,22648,"{'type': 'Point', 'coordinates': (-79.37557009000001, 43.67490443)}"
-22665,89,GO-20179001801,THEFT OF EBIKE UNDER $5000,2017-02-10T00:00:00,2017,February,Friday,10,41,16,2017-02-10T00:00:00,2017,February,Friday,10,41,17,D53,Toronto,98,Rosedale-Moore Park (98),"Open Areas (Lakes, Parks, Rivers)",Outside,DB,,EL,20,BLK,750.0,STOLEN,22649,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22666,98,GO-2017326683,THEFT UNDER - BICYCLE,2017-02-21T00:00:00,2017,February,Tuesday,21,52,16,2017-02-21T00:00:00,2017,February,Tuesday,21,52,18,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DIADORA,,RG,21,BLK,600.0,STOLEN,22650,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22667,1236,GO-20171537143,THEFT UNDER - BICYCLE,2017-08-18T00:00:00,2017,August,Friday,18,230,12,2017-08-25T00:00:00,2017,August,Friday,25,237,8,D53,Toronto,100,Yonge-Eglinton (100),"Private Property Structure (Pool, Shed, Detached Garage)",Other,ROCKY MOUNTAIN,THUNDERBOLT 750,MT,20,BLUWHI,3500.0,STOLEN,22651,"{'type': 'Point', 'coordinates': (-79.40232528, 43.70232636)}"
-22668,211,GO-2017639433,THEFT UNDER - BICYCLE,2017-04-10T00:00:00,2017,April,Monday,10,100,0,2017-04-11T00:00:00,2017,April,Tuesday,11,101,14,D53,Toronto,98,Rosedale-Moore Park (98),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,,OT,12,BLK,2000.0,STOLEN,22652,"{'type': 'Point', 'coordinates': (-79.37681431, 43.67235839)}"
-22669,3706,GO-20189034222,THEFT UNDER - BICYCLE,2018-10-13T00:00:00,2018,October,Saturday,13,286,21,2018-10-15T00:00:00,2018,October,Monday,15,288,20,D53,Toronto,97,Yonge-St.Clair (97),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KH,FLITE 223,TO,32,BLK,659.0,STOLEN,22653,"{'type': 'Point', 'coordinates': (-79.40080072, 43.68502738)}"
-22670,308,GO-2017760912,THEFT UNDER,2017-04-29T00:00:00,2017,April,Saturday,29,119,23,2017-04-30T00:00:00,2017,April,Sunday,30,120,20,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,SC,1,RED,5000.0,STOLEN,22654,"{'type': 'Point', 'coordinates': (-79.3784791, 43.67660882)}"
-22671,1239,GO-20179013202,THEFT UNDER - BICYCLE,2017-08-22T00:00:00,2017,August,Tuesday,22,234,10,2017-08-24T00:00:00,2017,August,Thursday,24,236,9,D53,Toronto,100,Yonge-Eglinton (100),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,SCR1,RC,18,BLK,1300.0,STOLEN,22655,"{'type': 'Point', 'coordinates': (-79.39699894, 43.70029603)}"
-22672,3813,GO-20189036996,THEFT UNDER,2018-10-29T00:00:00,2018,October,Monday,29,302,21,2018-11-05T00:00:00,2018,November,Monday,5,309,22,D53,Toronto,97,Yonge-St.Clair (97),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,73160310 17 TCX,OT,8,ONG,800.0,STOLEN,22656,"{'type': 'Point', 'coordinates': (-79.39373783, 43.68094902)}"
-22673,348,GO-20179006009,THEFT UNDER - BICYCLE,2017-05-09T00:00:00,2017,May,Tuesday,9,129,12,2017-05-09T00:00:00,2017,May,Tuesday,9,129,20,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,OT,ROUBAIX SL4 SPO,RC,11,BLK,3000.0,STOLEN,22657,"{'type': 'Point', 'coordinates': (-79.38958887, 43.68009143)}"
-22674,1267,GO-20179013618,THEFT UNDER - BICYCLE,2017-08-29T00:00:00,2017,August,Tuesday,29,241,14,2017-08-29T00:00:00,2017,August,Tuesday,29,241,15,D53,Toronto,100,Yonge-Eglinton (100),Unknown,Other,TR,,OT,40,GRY,800.0,STOLEN,22658,"{'type': 'Point', 'coordinates': (-79.40485224, 43.70536158)}"
-22675,1349,GO-20179014350,THEFT UNDER - BICYCLE,2017-09-08T00:00:00,2017,September,Friday,8,251,8,2017-09-09T00:00:00,2017,September,Saturday,9,252,17,D53,Toronto,100,Yonge-Eglinton (100),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,TO,5,GRY,700.0,STOLEN,22659,"{'type': 'Point', 'coordinates': (-79.40079865, 43.70776148)}"
-22676,1572,GO-20179016302,THEFT UNDER - BICYCLE,2017-10-01T00:00:00,2017,October,Sunday,1,274,13,2017-10-02T00:00:00,2017,October,Monday,2,275,17,D53,Toronto,100,Yonge-Eglinton (100),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,REVEL,MT,21,BLK,600.0,STOLEN,22660,"{'type': 'Point', 'coordinates': (-79.39832607, 43.70673316)}"
-22677,1586,GO-20179016434,THEFT UNDER - BICYCLE,2017-10-04T00:00:00,2017,October,Wednesday,4,277,2,2017-10-04T00:00:00,2017,October,Wednesday,4,277,10,D53,Toronto,100,Yonge-Eglinton (100),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MA,HAWK HILL,MT,18,DBL,1000.0,STOLEN,22661,"{'type': 'Point', 'coordinates': (-79.41039496, 43.70857502)}"
-22678,1616,GO-20179016775,THEFT UNDER - BICYCLE,2017-10-08T00:00:00,2017,October,Sunday,8,281,15,2017-10-09T00:00:00,2017,October,Monday,9,282,1,D53,Toronto,100,Yonge-Eglinton (100),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,SUPERCYCLE 1800,MT,18,BLK,0.0,STOLEN,22662,"{'type': 'Point', 'coordinates': (-79.40485224, 43.70536158)}"
-22679,2023,GO-2018250206,B&E,2018-02-08T00:00:00,2018,February,Thursday,8,39,14,2018-02-09T00:00:00,2018,February,Friday,9,40,3,D53,Toronto,100,Yonge-Eglinton (100),"Apartment (Rooming House, Condo)",Apartment,GIANT,ROAM 2,RC,18,BLU,800.0,STOLEN,22663,"{'type': 'Point', 'coordinates': (-79.40079865, 43.70776148)}"
-22680,2074,GO-20189007750,THEFT UNDER - BICYCLE,2018-03-10T00:00:00,2018,March,Saturday,10,69,17,2018-03-13T00:00:00,2018,March,Tuesday,13,72,9,D53,Toronto,100,Yonge-Eglinton (100),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,2017 NORCO STOR,MT,21,SIL,650.0,STOLEN,22664,"{'type': 'Point', 'coordinates': (-79.39682108, 43.69933273)}"
-22681,2075,GO-20189007750,THEFT UNDER - BICYCLE,2018-03-10T00:00:00,2018,March,Saturday,10,69,17,2018-03-13T00:00:00,2018,March,Tuesday,13,72,9,D53,Toronto,100,Yonge-Eglinton (100),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,2015 GIANT CYPR,MT,21,SIL,550.0,STOLEN,22665,"{'type': 'Point', 'coordinates': (-79.39682108, 43.69933273)}"
-22682,2319,GO-20189015090,THEFT UNDER - BICYCLE,2018-05-13T00:00:00,2018,May,Sunday,13,133,12,2018-05-15T00:00:00,2018,May,Tuesday,15,135,21,D53,Toronto,100,Yonge-Eglinton (100),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,CHANCE,RG,11,RED,1500.0,STOLEN,22666,"{'type': 'Point', 'coordinates': (-79.40291252, 43.70373791)}"
-22683,2570,GO-20181079188,PROPERTY - FOUND,2018-06-14T00:00:00,2018,June,Thursday,14,165,11,2018-06-15T00:00:00,2018,June,Friday,15,166,10,D53,Toronto,100,Yonge-Eglinton (100),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MIELE,UNKNOWN,MT,18,BLU,50.0,UNKNOWN,22667,"{'type': 'Point', 'coordinates': (-79.40720893, 43.71116936)}"
-22684,3040,GO-20181405777,THEFT OVER - BICYCLE,2018-07-31T00:00:00,2018,July,Tuesday,31,212,17,2018-08-01T00:00:00,2018,August,Wednesday,1,213,8,D53,Toronto,100,Yonge-Eglinton (100),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,OPTIC,MT,11,SIL,7000.0,STOLEN,22668,"{'type': 'Point', 'coordinates': (-79.39882879, 43.70908894)}"
-22685,3248,GO-20189026985,THEFT FROM MOTOR VEHICLE UNDER,2018-08-18T00:00:00,2018,August,Saturday,18,230,19,2018-08-19T00:00:00,2018,August,Sunday,19,231,12,D53,Toronto,100,Yonge-Eglinton (100),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,TROLL,TO,30,BLK,3000.0,STOLEN,22669,"{'type': 'Point', 'coordinates': (-79.404656, 43.70979006)}"
-22686,4333,GO-20199016116,THEFT UNDER - BICYCLE,2019-05-23T00:00:00,2019,May,Thursday,23,143,8,2019-05-24T00:00:00,2019,May,Friday,24,144,9,D53,Toronto,100,Yonge-Eglinton (100),Schools During Un-Supervised Activity,Educational,SC,GTX2 700C,OT,10,BLK,549.0,STOLEN,22670,"{'type': 'Point', 'coordinates': (-79.41011977, 43.70771518)}"
-22687,4360,GO-20199016530,THEFT UNDER - BICYCLE,2019-05-27T00:00:00,2019,May,Monday,27,147,9,2019-05-27T00:00:00,2019,May,Monday,27,147,19,D53,Toronto,100,Yonge-Eglinton (100),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,700C VOLARE,TO,24,BLU,450.0,STOLEN,22671,"{'type': 'Point', 'coordinates': (-79.39832607, 43.70673316)}"
-22688,4636,GO-20191186260,THEFT OVER - BICYCLE,2019-06-26T00:00:00,2019,June,Wednesday,26,177,0,2019-06-26T00:00:00,2019,June,Wednesday,26,177,12,D53,Toronto,100,Yonge-Eglinton (100),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,MT,7,BLKONG,2700.0,STOLEN,22672,"{'type': 'Point', 'coordinates': (-79.39936122, 43.701349)}"
-22689,4637,GO-20191186260,THEFT OVER - BICYCLE,2019-06-26T00:00:00,2019,June,Wednesday,26,177,0,2019-06-26T00:00:00,2019,June,Wednesday,26,177,12,D53,Toronto,100,Yonge-Eglinton (100),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,MT,7,WHIGRN,2700.0,STOLEN,22673,"{'type': 'Point', 'coordinates': (-79.39936122, 43.701349)}"
-22690,4831,GO-20191375481,THEFT UNDER - BICYCLE,2019-07-22T00:00:00,2019,July,Monday,22,203,0,2019-07-22T00:00:00,2019,July,Monday,22,203,11,D53,Toronto,100,Yonge-Eglinton (100),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,ROCKHOPPER SPOR,MT,27,BLK,880.0,STOLEN,22674,"{'type': 'Point', 'coordinates': (-79.40327303, 43.70724152)}"
-22691,4832,GO-20191375481,THEFT UNDER - BICYCLE,2019-07-22T00:00:00,2019,July,Monday,22,203,0,2019-07-22T00:00:00,2019,July,Monday,22,203,11,D53,Toronto,100,Yonge-Eglinton (100),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,XTC,MT,24,BLK,3200.0,STOLEN,22675,"{'type': 'Point', 'coordinates': (-79.40327303, 43.70724152)}"
-22692,5658,GO-20192153765,B&E,2019-11-06T00:00:00,2019,November,Wednesday,6,310,22,2019-11-07T00:00:00,2019,November,Thursday,7,311,14,D53,Toronto,100,Yonge-Eglinton (100),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,UNKNOWN MAKE,,RG,12,BLU,1000.0,UNKNOWN,22676,"{'type': 'Point', 'coordinates': (-79.40022809, 43.70365745)}"
-22693,6009,GO-2020641491,THEFT UNDER - BICYCLE,2020-02-25T00:00:00,2020,February,Tuesday,25,56,12,2020-04-01T00:00:00,2020,April,Wednesday,1,92,14,D53,Toronto,100,Yonge-Eglinton (100),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,DUAL SPORT,MT,24,BLK,790.0,STOLEN,22677,"{'type': 'Point', 'coordinates': (-79.39699894, 43.70029603)}"
-22694,6032,GO-2020679162,PROPERTY - FOUND,2020-04-07T00:00:00,2020,April,Tuesday,7,98,17,2020-04-07T00:00:00,2020,April,Tuesday,7,98,18,D53,Toronto,100,Yonge-Eglinton (100),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,RIP ROCK,MT,8,REDYEL,,UNKNOWN,22678,"{'type': 'Point', 'coordinates': (-79.40108295, 43.710543130000005)}"
-22695,6046,GO-20209010892,THEFT UNDER - BICYCLE,2020-04-10T00:00:00,2020,April,Friday,10,101,23,2020-04-11T00:00:00,2020,April,Saturday,11,102,11,D53,Toronto,100,Yonge-Eglinton (100),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,,RG,7,BLK,600.0,STOLEN,22679,"{'type': 'Point', 'coordinates': (-79.39993317, 43.70281425)}"
-22696,6057,GO-20209010986,THEFT UNDER - BICYCLE,2020-04-12T00:00:00,2020,April,Sunday,12,103,17,2020-04-12T00:00:00,2020,April,Sunday,12,103,17,D53,Toronto,100,Yonge-Eglinton (100),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CADEX,CFR3,RC,20,BLU,500.0,STOLEN,22680,"{'type': 'Point', 'coordinates': (-79.40736565, 43.70483706)}"
-22697,9163,GO-20143266279,THEFT UNDER,2014-11-08T00:00:00,2014,November,Saturday,8,312,18,2014-11-08T00:00:00,2014,November,Saturday,8,312,23,D53,Toronto,100,Yonge-Eglinton (100),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,4500,MT,24,BLUWHI,750.0,STOLEN,22697,"{'type': 'Point', 'coordinates': (-79.39832607, 43.70673316)}"
-22698,6421,GO-20209015613,THEFT UNDER - BICYCLE,2020-06-17T00:00:00,2020,June,Wednesday,17,169,4,2020-06-18T00:00:00,2020,June,Thursday,18,170,6,D53,Toronto,100,Yonge-Eglinton (100),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,RG,7,BLK,460.0,STOLEN,22681,"{'type': 'Point', 'coordinates': (-79.40169449, 43.706034)}"
-22699,6619,GO-20209017557,THEFT UNDER - BICYCLE,2020-07-11T00:00:00,2020,July,Saturday,11,193,1,2020-07-14T00:00:00,2020,July,Tuesday,14,196,16,D53,Toronto,100,Yonge-Eglinton (100),"Apartment (Rooming House, Condo)",Apartment,OT,700CC,TO,8,GRY,500.0,STOLEN,22682,"{'type': 'Point', 'coordinates': (-79.40102123, 43.70917038)}"
-22700,6697,GO-20201361719,THEFT OF EBIKE UNDER $5000,2020-07-16T00:00:00,2020,July,Thursday,16,198,18,2020-07-22T00:00:00,2020,July,Wednesday,22,204,19,D53,Toronto,100,Yonge-Eglinton (100),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KHS,DELUXE,EL,3,,1100.0,STOLEN,22683,"{'type': 'Point', 'coordinates': (-79.40327303, 43.70724152)}"
-22701,6814,GO-20209018973,THEFT UNDER - BICYCLE,2020-07-29T00:00:00,2020,July,Wednesday,29,211,13,2020-07-30T00:00:00,2020,July,Thursday,30,212,12,D53,Toronto,100,Yonge-Eglinton (100),"Apartment (Rooming House, Condo)",Apartment,TR,LADIES MOUNTAIN,MT,15,BLU,1500.0,STOLEN,22684,"{'type': 'Point', 'coordinates': (-79.41021733, 43.70234343)}"
-22702,6948,GO-20209020045,THEFT UNDER,2020-08-12T00:00:00,2020,August,Wednesday,12,225,1,2020-08-12T00:00:00,2020,August,Wednesday,12,225,20,D53,Toronto,100,Yonge-Eglinton (100),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ORBEA,MT,21,TRQ,750.0,STOLEN,22685,"{'type': 'Point', 'coordinates': (-79.39943612, 43.71184017)}"
-22703,6969,GO-20209020385,THEFT UNDER - BICYCLE,2020-08-16T00:00:00,2020,August,Sunday,16,229,16,2020-08-16T00:00:00,2020,August,Sunday,16,229,17,D53,Toronto,100,Yonge-Eglinton (100),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,,MT,18,,750.0,STOLEN,22686,"{'type': 'Point', 'coordinates': (-79.39832607, 43.70673316)}"
-22704,7121,GO-20209021756,THEFT UNDER - BICYCLE,2020-08-27T00:00:00,2020,August,Thursday,27,240,9,2020-08-29T00:00:00,2020,August,Saturday,29,242,18,D53,Toronto,100,Yonge-Eglinton (100),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,RG,21,BLK,350.0,STOLEN,22687,"{'type': 'Point', 'coordinates': (-79.4074047, 43.70184025)}"
-22705,7130,GO-20209021816,THEFT UNDER - BICYCLE,2020-08-30T00:00:00,2020,August,Sunday,30,243,13,2020-08-30T00:00:00,2020,August,Sunday,30,243,18,D53,Toronto,100,Yonge-Eglinton (100),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,ALIGHT 3,MT,7,,550.0,STOLEN,22688,"{'type': 'Point', 'coordinates': (-79.39832607, 43.70673316)}"
-22706,7143,GO-20201635525,THEFT OF EBIKE UNDER $5000,2020-07-29T00:00:00,2020,July,Wednesday,29,211,23,2020-07-30T00:00:00,2020,July,Thursday,30,212,8,D53,Toronto,100,Yonge-Eglinton (100),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,XIAOMI,MI QICYCLE,EL,72,BLK,1400.0,STOLEN,22689,"{'type': 'Point', 'coordinates': (-79.40024183, 43.70635229)}"
-22707,7323,GO-20209024085,THEFT UNDER - BICYCLE,2020-09-21T00:00:00,2020,September,Monday,21,265,17,2020-09-22T00:00:00,2020,September,Tuesday,22,266,15,D53,Toronto,100,Yonge-Eglinton (100),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,5,OTH,300.0,STOLEN,22690,"{'type': 'Point', 'coordinates': (-79.39717895, 43.70113781)}"
-22708,7659,GO-20209030498,THEFT UNDER,2020-11-23T00:00:00,2020,November,Monday,23,328,21,2020-11-24T00:00:00,2020,November,Tuesday,24,329,19,D53,Toronto,100,Yonge-Eglinton (100),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,21,RED,150.0,STOLEN,22691,"{'type': 'Point', 'coordinates': (-79.39832607, 43.70673316)}"
-22709,7664,GO-20209030603,THEFT UNDER,2020-11-21T00:00:00,2020,November,Saturday,21,326,10,2020-11-25T00:00:00,2020,November,Wednesday,25,330,20,D53,Toronto,100,Yonge-Eglinton (100),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,FX3 WSD,OT,11,TRQ,800.0,STOLEN,22692,"{'type': 'Point', 'coordinates': (-79.40405879000001, 43.6999948)}"
-22710,8006,GO-20149003701,THEFT UNDER,2014-05-30T00:00:00,2014,May,Friday,30,150,20,2014-05-31T00:00:00,2014,May,Saturday,31,151,9,D53,Toronto,100,Yonge-Eglinton (100),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,QX85,OT,9,GRY,791.0,STOLEN,22693,"{'type': 'Point', 'coordinates': (-79.39730385, 43.70179502)}"
-22711,8301,GO-20149004594,THEFT UNDER,2014-06-30T00:00:00,2014,June,Monday,30,181,16,2014-07-01T00:00:00,2014,July,Tuesday,1,182,10,D53,Toronto,100,Yonge-Eglinton (100),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,MT,24,BLK,650.0,STOLEN,22694,"{'type': 'Point', 'coordinates': (-79.40297311, 43.69729816)}"
-22712,8373,GO-20149004838,THEFT UNDER,2014-07-03T00:00:00,2014,July,Thursday,3,184,1,2014-07-09T00:00:00,2014,July,Wednesday,9,190,13,D53,Toronto,100,Yonge-Eglinton (100),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,ROSCOE,MT,24,BLK,600.0,STOLEN,22695,"{'type': 'Point', 'coordinates': (-79.40485224, 43.70536158)}"
-22713,8701,GO-20149006141,THEFT UNDER,2014-08-17T00:00:00,2014,August,Sunday,17,229,19,2014-08-20T00:00:00,2014,August,Wednesday,20,232,17,D53,Toronto,100,Yonge-Eglinton (100),Unknown,Other,UK,,TO,3,BLK,0.0,STOLEN,22696,"{'type': 'Point', 'coordinates': (-79.39832607, 43.70673316)}"
-22714,9416,GO-2015629693,THEFT UNDER,2015-03-14T00:00:00,2015,March,Saturday,14,73,16,2015-04-16T00:00:00,2015,April,Thursday,16,106,14,D53,Toronto,100,Yonge-Eglinton (100),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,11C329060293,RG,0,GRY,800.0,STOLEN,22698,"{'type': 'Point', 'coordinates': (-79.40502341, 43.71065899)}"
-22715,9536,GO-20159002496,THEFT UNDER,2015-05-03T00:00:00,2015,May,Sunday,3,123,16,2015-05-06T00:00:00,2015,May,Wednesday,6,126,13,D53,Toronto,100,Yonge-Eglinton (100),Ttc Subway Station,Transit,UK,,RG,30,,,STOLEN,22699,"{'type': 'Point', 'coordinates': (-79.39781207, 43.70435185)}"
-22716,9602,GO-20159002859,THEFT UNDER,2015-05-14T00:00:00,2015,May,Thursday,14,134,8,2015-05-18T00:00:00,2015,May,Monday,18,138,18,D53,Toronto,100,Yonge-Eglinton (100),Bar / Restaurant,Commercial,GI,ESCAPE II,OT,21,BLK,700.0,STOLEN,22700,"{'type': 'Point', 'coordinates': (-79.39682108, 43.69933273)}"
-22717,9833,GO-20159003736,THEFT UNDER,2015-06-08T00:00:00,2015,June,Monday,8,159,0,2015-06-18T00:00:00,2015,June,Thursday,18,169,16,D53,Toronto,100,Yonge-Eglinton (100),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,,RG,24,GRY,550.0,STOLEN,22701,"{'type': 'Point', 'coordinates': (-79.40352561, 43.70208863)}"
-22718,9903,GO-20151092827,THEFT UNDER,2015-06-28T00:00:00,2015,June,Sunday,28,179,21,2015-06-29T00:00:00,2015,June,Monday,29,180,10,D53,Toronto,100,Yonge-Eglinton (100),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,SCORCHER,MT,21,BLK,350.0,STOLEN,22702,"{'type': 'Point', 'coordinates': (-79.40720893, 43.71116936)}"
-22719,9904,GO-20151092827,THEFT UNDER,2015-06-28T00:00:00,2015,June,Sunday,28,179,21,2015-06-29T00:00:00,2015,June,Monday,29,180,10,D53,Toronto,100,Yonge-Eglinton (100),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SCHWINN,,MT,3,BLU,692.0,STOLEN,22703,"{'type': 'Point', 'coordinates': (-79.40720893, 43.71116936)}"
-22720,10334,GO-20159006280,THEFT UNDER,2015-08-22T00:00:00,2015,August,Saturday,22,234,16,2015-08-22T00:00:00,2015,August,Saturday,22,234,20,D53,Toronto,100,Yonge-Eglinton (100),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE,OT,24,WHI,700.0,STOLEN,22704,"{'type': 'Point', 'coordinates': (-79.39882879, 43.70908894)}"
-22721,10362,GO-20159006489,THEFT UNDER,2015-08-27T00:00:00,2015,August,Thursday,27,239,19,2015-08-29T00:00:00,2015,August,Saturday,29,241,12,D53,Toronto,100,Yonge-Eglinton (100),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,,RG,27,SIL,900.0,STOLEN,22705,"{'type': 'Point', 'coordinates': (-79.40100038, 43.70865278)}"
-22722,10465,GO-20159007171,THEFT UNDER,2015-09-13T00:00:00,2015,September,Sunday,13,256,12,2015-09-15T00:00:00,2015,September,Tuesday,15,258,12,D53,Toronto,100,Yonge-Eglinton (100),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,2015 ESCAPE 3,OT,21,GRY,600.0,STOLEN,22706,"{'type': 'Point', 'coordinates': (-79.40763083, 43.70915791)}"
-22723,10562,GO-20159007904,THEFT UNDER,2015-09-26T00:00:00,2015,September,Saturday,26,269,5,2015-09-29T00:00:00,2015,September,Tuesday,29,272,16,D53,Toronto,100,Yonge-Eglinton (100),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RM,RC LE,TO,27,MRN,800.0,STOLEN,22707,"{'type': 'Point', 'coordinates': (-79.3996552, 43.70211217)}"
-22724,10563,GO-20159007904,THEFT UNDER,2015-09-26T00:00:00,2015,September,Saturday,26,269,5,2015-09-29T00:00:00,2015,September,Tuesday,29,272,16,D53,Toronto,100,Yonge-Eglinton (100),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,NITRO NINER,MT,27,LBL,1100.0,STOLEN,22708,"{'type': 'Point', 'coordinates': (-79.3996552, 43.70211217)}"
-22725,10705,GO-20151861324,THEFT UNDER,2015-10-29T00:00:00,2015,October,Thursday,29,302,6,2015-10-29T00:00:00,2015,October,Thursday,29,302,17,D53,Toronto,100,Yonge-Eglinton (100),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,UNK,MT,21,PLE,200.0,STOLEN,22709,"{'type': 'Point', 'coordinates': (-79.40102123, 43.70917038)}"
-22726,10978,GO-2016236626,PROPERTY - FOUND,2016-02-09T00:00:00,2016,February,Tuesday,9,40,8,2016-02-09T00:00:00,2016,February,Tuesday,9,40,8,D53,Toronto,100,Yonge-Eglinton (100),"Police / Courts (Parole Board, Probation Office)",Other,SCHWINN,,MT,10,,,UNKNOWN,22710,"{'type': 'Point', 'coordinates': (-79.40024183, 43.70635229)}"
-22727,10979,GO-2016236626,PROPERTY - FOUND,2016-02-09T00:00:00,2016,February,Tuesday,9,40,8,2016-02-09T00:00:00,2016,February,Tuesday,9,40,8,D53,Toronto,100,Yonge-Eglinton (100),"Police / Courts (Parole Board, Probation Office)",Other,RALEIGH,,MT,15,RED,,UNKNOWN,22711,"{'type': 'Point', 'coordinates': (-79.40024183, 43.70635229)}"
-22728,10980,GO-2016236626,PROPERTY - FOUND,2016-02-09T00:00:00,2016,February,Tuesday,9,40,8,2016-02-09T00:00:00,2016,February,Tuesday,9,40,8,D53,Toronto,100,Yonge-Eglinton (100),"Police / Courts (Parole Board, Probation Office)",Other,INFINITY,,MT,10,BLK,,UNKNOWN,22712,"{'type': 'Point', 'coordinates': (-79.40024183, 43.70635229)}"
-22729,11040,GO-20169002235,THEFT UNDER - BICYCLE,2016-03-09T00:00:00,2016,March,Wednesday,9,69,18,2016-03-11T00:00:00,2016,March,Friday,11,71,15,D53,Toronto,100,Yonge-Eglinton (100),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,,RG,5,BLU,500.0,STOLEN,22713,"{'type': 'Point', 'coordinates': (-79.40352561, 43.70208863)}"
-22730,11148,GO-2016654086,THEFT UNDER - BICYCLE,2016-03-26T00:00:00,2016,March,Saturday,26,86,12,2016-04-17T00:00:00,2016,April,Sunday,17,108,12,D53,Toronto,100,Yonge-Eglinton (100),"Police / Courts (Parole Board, Probation Office)",Other,UNKNOWN MAKE,,RG,21,BLK,1500.0,STOLEN,22714,"{'type': 'Point', 'coordinates': (-79.40169449, 43.706034)}"
-22731,11149,GO-2016654086,THEFT UNDER - BICYCLE,2016-03-26T00:00:00,2016,March,Saturday,26,86,12,2016-04-17T00:00:00,2016,April,Sunday,17,108,12,D53,Toronto,100,Yonge-Eglinton (100),"Police / Courts (Parole Board, Probation Office)",Other,GIANT,,MT,21,REDWHI,700.0,STOLEN,22715,"{'type': 'Point', 'coordinates': (-79.40169449, 43.706034)}"
-22732,11169,GO-2015883046,THEFT UNDER,2015-05-27T00:00:00,2015,May,Wednesday,27,147,9,2015-05-27T00:00:00,2015,May,Wednesday,27,147,9,D53,Toronto,100,Yonge-Eglinton (100),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GF,,OT,21,GRN,,STOLEN,22716,"{'type': 'Point', 'coordinates': (-79.40024183, 43.70635229)}"
-22733,11339,GO-2016869346,PROPERTY - FOUND,2016-05-20T00:00:00,2016,May,Friday,20,141,15,2016-05-20T00:00:00,2016,May,Friday,20,141,15,D53,Toronto,100,Yonge-Eglinton (100),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,21,LBL,,UNKNOWN,22717,"{'type': 'Point', 'coordinates': (-79.40144675, 43.71263625)}"
-22734,11638,GO-20169006365,THEFT UNDER - BICYCLE,2016-06-21T00:00:00,2016,June,Tuesday,21,173,0,2016-06-26T00:00:00,2016,June,Sunday,26,178,0,D53,Toronto,100,Yonge-Eglinton (100),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,RG,21,,800.0,STOLEN,22718,"{'type': 'Point', 'coordinates': (-79.40982177, 43.70131788)}"
-22735,11760,GO-20161177808,THEFT UNDER - BICYCLE,2016-07-05T00:00:00,2016,July,Tuesday,5,187,14,2016-07-05T00:00:00,2016,July,Tuesday,5,187,21,D53,Toronto,100,Yonge-Eglinton (100),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,MT,21,DBL,700.0,STOLEN,22719,"{'type': 'Point', 'coordinates': (-79.39832607, 43.70673316)}"
-22736,12188,GO-20169009361,THEFT UNDER - BICYCLE,2016-07-16T00:00:00,2016,July,Saturday,16,198,20,2016-08-24T00:00:00,2016,August,Wednesday,24,237,10,D53,Toronto,100,Yonge-Eglinton (100),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,"CARVE COMP 29""""",MT,20,RED,1600.0,STOLEN,22720,"{'type': 'Point', 'coordinates': (-79.4053388, 43.71155938)}"
-22737,12255,GO-20169009928,THEFT UNDER - BICYCLE,2016-09-03T00:00:00,2016,September,Saturday,3,247,16,2016-09-03T00:00:00,2016,September,Saturday,3,247,21,D53,Toronto,100,Yonge-Eglinton (100),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,PITCH SPORT,MT,8,GRN,900.0,STOLEN,22721,"{'type': 'Point', 'coordinates': (-79.40079865, 43.70776148)}"
-22738,12433,GO-20169010956,THEFT UNDER - BICYCLE,2016-09-21T00:00:00,2016,September,Wednesday,21,265,17,2016-09-23T00:00:00,2016,September,Friday,23,267,10,D53,Toronto,100,Yonge-Eglinton (100),"Apartment (Rooming House, Condo)",Apartment,OT,AMSTERDAM,RG,20,SIL,1400.0,STOLEN,22722,"{'type': 'Point', 'coordinates': (-79.40102123, 43.70917038)}"
-22739,12434,GO-20169010956,THEFT UNDER - BICYCLE,2016-09-21T00:00:00,2016,September,Wednesday,21,265,17,2016-09-23T00:00:00,2016,September,Friday,23,267,10,D53,Toronto,100,Yonge-Eglinton (100),"Apartment (Rooming House, Condo)",Apartment,OT,MILANO,RG,21,GRY,600.0,STOLEN,22723,"{'type': 'Point', 'coordinates': (-79.40102123, 43.70917038)}"
-22740,12708,GO-20169012855,THEFT UNDER - BICYCLE,2016-10-31T00:00:00,2016,October,Monday,31,305,22,2016-11-01T00:00:00,2016,November,Tuesday,1,306,13,D53,Toronto,100,Yonge-Eglinton (100),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ROAM,TO,24,MRN,790.0,STOLEN,22724,"{'type': 'Point', 'coordinates': (-79.39863797, 43.70821093)}"
-22741,12838,GO-20162131590,THEFT UNDER - BICYCLE,2016-11-30T00:00:00,2016,November,Wednesday,30,335,19,2016-12-01T00:00:00,2016,December,Thursday,1,336,12,D53,Toronto,100,Yonge-Eglinton (100),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,7.7,OT,0,BLK,2300.0,STOLEN,22725,"{'type': 'Point', 'coordinates': (-79.39983018, 43.699200160000004)}"
-22742,12897,GO-20189032170,THEFT UNDER - BICYCLE,2018-09-23T00:00:00,2018,September,Sunday,23,266,16,2018-09-27T00:00:00,2018,September,Thursday,27,270,21,D53,Toronto,100,Yonge-Eglinton (100),"Apartment (Rooming House, Condo)",Apartment,MA,SAN RAFAEL,OT,24,DBL,300.0,STOLEN,22726,"{'type': 'Point', 'coordinates': (-79.40102123, 43.70917038)}"
-22743,12953,GO-20199023587,THEFT UNDER - BICYCLE,2019-07-21T00:00:00,2019,July,Sunday,21,202,4,2019-07-24T00:00:00,2019,July,Wednesday,24,205,16,D53,Toronto,100,Yonge-Eglinton (100),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RM,ESX70,MT,21,SIL,4000.0,STOLEN,22727,"{'type': 'Point', 'coordinates': (-79.40424484, 43.70986172)}"
-22744,13009,GO-20192261839,THEFT UNDER - BICYCLE,2019-11-22T00:00:00,2019,November,Friday,22,326,22,2019-11-23T00:00:00,2019,November,Saturday,23,327,12,D53,Toronto,100,Yonge-Eglinton (100),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GIANT,,TO,15,BLK,1000.0,STOLEN,22728,"{'type': 'Point', 'coordinates': (-79.40102123, 43.70917038)}"
-22745,4451,GO-20199018127,THEFT UNDER - BICYCLE,2019-06-08T00:00:00,2019,June,Saturday,8,159,8,2019-06-11T00:00:00,2019,June,Tuesday,11,162,11,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,NO,,RG,27,,4000.0,STOLEN,22822,"{'type': 'Point', 'coordinates': (-79.39793541, 43.68731535)}"
-22746,13047,GO-20209015230,THEFT UNDER - BICYCLE,2020-06-12T00:00:00,2020,June,Friday,12,164,12,2020-06-12T00:00:00,2020,June,Friday,12,164,13,D53,Toronto,100,Yonge-Eglinton (100),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,GI,?,MT,21,SIL,1400.0,STOLEN,22729,"{'type': 'Point', 'coordinates': (-79.39967713, 43.71300383)}"
-22747,13050,GO-20201150454,THEFT UNDER - BICYCLE,2020-06-22T00:00:00,2020,June,Monday,22,174,17,2020-06-22T00:00:00,2020,June,Monday,22,174,17,D53,Toronto,100,Yonge-Eglinton (100),"Open Areas (Lakes, Parks, Rivers)",Outside,MERIDA,ONE-TWENTY,MT,30,SIL,1500.0,STOLEN,22730,"{'type': 'Point', 'coordinates': (-79.40485224, 43.70536158)}"
-22748,14065,GO-20169005451,THEFT UNDER - BICYCLE,2016-05-27T00:00:00,2016,May,Friday,27,148,22,2016-06-08T00:00:00,2016,June,Wednesday,8,160,9,D53,Toronto,100,Yonge-Eglinton (100),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,FELT VS40,TO,10,WHI,595.0,STOLEN,22731,"{'type': 'Point', 'coordinates': (-79.40720893, 43.71116936)}"
-22749,14066,GO-20169005451,THEFT UNDER - BICYCLE,2016-05-27T00:00:00,2016,May,Friday,27,148,22,2016-06-08T00:00:00,2016,June,Wednesday,8,160,9,D53,Toronto,100,Yonge-Eglinton (100),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,SP3,TO,10,BGE,675.0,STOLEN,22732,"{'type': 'Point', 'coordinates': (-79.40720893, 43.71116936)}"
-22750,14162,GO-20179008022,THEFT UNDER - BICYCLE,2017-06-12T00:00:00,2017,June,Monday,12,163,23,2017-06-13T00:00:00,2017,June,Tuesday,13,164,13,D53,Toronto,100,Yonge-Eglinton (100),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,CHARGER 7.3,MT,27,BLK,1000.0,STOLEN,22733,"{'type': 'Point', 'coordinates': (-79.40139265, 43.71238637)}"
-22751,14177,GO-20179011497,THEFT UNDER - BICYCLE,2017-08-02T00:00:00,2017,August,Wednesday,2,214,6,2017-08-02T00:00:00,2017,August,Wednesday,2,214,6,D53,Toronto,100,Yonge-Eglinton (100),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,CAAD10,RC,11,WHI,1600.0,STOLEN,22734,"{'type': 'Point', 'coordinates': (-79.40424484, 43.70986172)}"
-22752,14185,GO-20179013618,THEFT UNDER - BICYCLE,2017-08-29T00:00:00,2017,August,Tuesday,29,241,14,2017-08-29T00:00:00,2017,August,Tuesday,29,241,15,D53,Toronto,100,Yonge-Eglinton (100),Unknown,Other,TR,SUPERFLY 24,RG,40,BLK,800.0,STOLEN,22735,"{'type': 'Point', 'coordinates': (-79.40485224, 43.70536158)}"
-22753,14197,GO-20179015759,THEFT OF EBIKE UNDER $5000,2017-09-24T00:00:00,2017,September,Sunday,24,267,18,2017-09-25T00:00:00,2017,September,Monday,25,268,18,D53,Toronto,100,Yonge-Eglinton (100),"Apartment (Rooming House, Condo)",Apartment,EM,EBIKE,EL,32,RED,1000.0,STOLEN,22736,"{'type': 'Point', 'coordinates': (-79.40102123, 43.70917038)}"
-22754,14234,GO-20189016278,THEFT UNDER - BICYCLE,2018-05-25T00:00:00,2018,May,Friday,25,145,8,2018-05-25T00:00:00,2018,May,Friday,25,145,20,D53,Toronto,100,Yonge-Eglinton (100),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,VFR 6,OT,21,GRY,775.0,STOLEN,22737,"{'type': 'Point', 'coordinates': (-79.39781207, 43.70435185)}"
-22755,14247,GO-20189020405,THEFT UNDER - BICYCLE,2018-06-26T00:00:00,2018,June,Tuesday,26,177,7,2018-06-27T00:00:00,2018,June,Wednesday,27,178,8,D53,Toronto,100,Yonge-Eglinton (100),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,27,GRY,600.0,STOLEN,22738,"{'type': 'Point', 'coordinates': (-79.39858741, 43.70798666)}"
-22756,15880,GO-20142420945,THEFT UNDER,2014-07-02T00:00:00,2014,July,Wednesday,2,183,16,2014-07-03T00:00:00,2014,July,Thursday,3,184,11,D53,Toronto,100,Yonge-Eglinton (100),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,ROCKY MOUNTAIN,,MT,21,BLK,1300.0,STOLEN,22739,"{'type': 'Point', 'coordinates': (-79.39781207, 43.70435185)}"
-22757,15881,GO-20149004588,THEFT UNDER,2014-06-30T00:00:00,2014,June,Monday,30,181,8,2014-06-30T00:00:00,2014,June,Monday,30,181,18,D53,Toronto,100,Yonge-Eglinton (100),Ttc Subway Station,Transit,SC,RETRO CRUISER,RG,6,OTH,300.0,STOLEN,22740,"{'type': 'Point', 'coordinates': (-79.39660264, 43.69830188)}"
-22758,15986,GO-20159007874,THEFT UNDER,2015-09-27T00:00:00,2015,September,Sunday,27,270,16,2015-09-28T00:00:00,2015,September,Monday,28,271,17,D53,Toronto,100,Yonge-Eglinton (100),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,NAVIGATOR 2.0,MT,21,BLK,700.0,STOLEN,22741,"{'type': 'Point', 'coordinates': (-79.40114002, 43.70259185)}"
-22759,18714,GO-20209018258,THEFT UNDER - BICYCLE,2020-07-20T00:00:00,2020,July,Monday,20,202,12,2020-07-22T00:00:00,2020,July,Wednesday,22,204,18,D53,Toronto,100,Yonge-Eglinton (100),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,GI,2015 ROAM 3,MT,24,BLK,500.0,STOLEN,22742,"{'type': 'Point', 'coordinates': (-79.40485224, 43.70536158)}"
-22760,18721,GO-20201391413,THEFT UNDER - BICYCLE,2020-07-26T00:00:00,2020,July,Sunday,26,208,15,2020-07-26T00:00:00,2020,July,Sunday,26,208,15,D53,Toronto,100,Yonge-Eglinton (100),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KMS,,MT,18,,1000.0,STOLEN,22743,"{'type': 'Point', 'coordinates': (-79.39832607, 43.70673316)}"
-22761,18742,GO-20209020901,THEFT UNDER - BICYCLE,2020-08-20T00:00:00,2020,August,Thursday,20,233,18,2020-08-21T00:00:00,2020,August,Friday,21,234,15,D53,Toronto,100,Yonge-Eglinton (100),"Apartment (Rooming House, Condo)",Apartment,MA,,RG,18,SIL,1500.0,STOLEN,22744,"{'type': 'Point', 'coordinates': (-79.39717895, 43.70113781)}"
-22762,5253,GO-20199029039,THEFT UNDER - BICYCLE,2019-09-06T00:00:00,2019,September,Friday,6,249,8,2019-09-07T00:00:00,2019,September,Saturday,7,250,8,D53,Toronto,98,Rosedale-Moore Park (98),Ttc Subway Station,Transit,GT,,MT,18,BLK,500.0,STOLEN,22745,"{'type': 'Point', 'coordinates': (-79.38949143, 43.67696204)}"
-22763,499,GO-20179007138,THEFT UNDER - BICYCLE,2017-05-24T00:00:00,2017,May,Wednesday,24,144,21,2017-05-28T00:00:00,2017,May,Sunday,28,148,22,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,12,WHI,50.0,STOLEN,22746,"{'type': 'Point', 'coordinates': (-79.38476649, 43.67217315)}"
-22764,532,GO-2017991564,THEFT UNDER - BICYCLE,2017-06-01T00:00:00,2017,June,Thursday,1,152,17,2017-06-04T00:00:00,2017,June,Sunday,4,155,18,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RALEIGH,MISCEO 2.0,RG,24,ONG,650.0,STOLEN,22747,"{'type': 'Point', 'coordinates': (-79.38459861, 43.67181293)}"
-22765,612,GO-20179008103,THEFT UNDER - BICYCLE,2017-06-14T00:00:00,2017,June,Wednesday,14,165,14,2017-06-14T00:00:00,2017,June,Wednesday,14,165,19,D53,Toronto,98,Rosedale-Moore Park (98),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,FJ,STROLL 2017,OT,1,BLK,800.0,STOLEN,22748,"{'type': 'Point', 'coordinates': (-79.38754395, 43.67216242)}"
-22766,780,GO-20179009462,THEFT UNDER - BICYCLE,2017-07-04T00:00:00,2017,July,Tuesday,4,185,0,2017-07-05T00:00:00,2017,July,Wednesday,5,186,10,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,TR,7.2,OT,8,BLK,700.0,STOLEN,22749,"{'type': 'Point', 'coordinates': (-79.392814, 43.68502592)}"
-22767,807,GO-20179009715,THEFT UNDER - BICYCLE,2017-07-08T00:00:00,2017,July,Saturday,8,189,16,2017-07-08T00:00:00,2017,July,Saturday,8,189,19,D53,Toronto,98,Rosedale-Moore Park (98),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,SPEESTER,RC,2,BLK,1200.0,STOLEN,22750,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22768,811,GO-20179009715,THEFT UNDER - BICYCLE,2017-07-08T00:00:00,2017,July,Saturday,8,189,16,2017-07-08T00:00:00,2017,July,Saturday,8,189,19,D53,Toronto,98,Rosedale-Moore Park (98),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,,RC,2,BLK,1200.0,STOLEN,22751,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22769,945,GO-20179010770,THEFT UNDER - BICYCLE,2017-07-21T00:00:00,2017,July,Friday,21,202,16,2017-07-21T00:00:00,2017,July,Friday,21,202,20,D53,Toronto,98,Rosedale-Moore Park (98),Ttc Subway Station,Transit,MA,LARKSPUR CS2,RG,24,BLU,580.0,STOLEN,22752,"{'type': 'Point', 'coordinates': (-79.38949143, 43.67696204)}"
-22770,955,GO-20179010895,THEFT UNDER - BICYCLE,2017-07-23T00:00:00,2017,July,Sunday,23,204,15,2017-07-23T00:00:00,2017,July,Sunday,23,204,18,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,MT,18,GRY,1500.0,STOLEN,22753,"{'type': 'Point', 'coordinates': (-79.37719268, 43.67741756)}"
-22771,956,GO-20179010895,THEFT UNDER - BICYCLE,2017-07-23T00:00:00,2017,July,Sunday,23,204,15,2017-07-23T00:00:00,2017,July,Sunday,23,204,18,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,,,MT,6,,250.0,STOLEN,22754,"{'type': 'Point', 'coordinates': (-79.37719268, 43.67741756)}"
-22772,957,GO-20179010895,THEFT UNDER - BICYCLE,2017-07-23T00:00:00,2017,July,Sunday,23,204,15,2017-07-23T00:00:00,2017,July,Sunday,23,204,18,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,MT,6,,175.0,STOLEN,22755,"{'type': 'Point', 'coordinates': (-79.37719268, 43.67741756)}"
-22773,1002,GO-20179011265,THEFT UNDER - BICYCLE,2017-07-28T00:00:00,2017,July,Friday,28,209,13,2017-07-28T00:00:00,2017,July,Friday,28,209,22,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,MONTEREY,RC,12,RED,200.0,STOLEN,22756,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22774,1005,GO-20179011321,THEFT UNDER - BICYCLE,2017-07-29T00:00:00,2017,July,Saturday,29,210,17,2017-07-29T00:00:00,2017,July,Saturday,29,210,23,D53,Toronto,98,Rosedale-Moore Park (98),Ttc Subway Station,Transit,OT,CORSO27.5 MTB,RG,99,BLK,500.0,STOLEN,22757,"{'type': 'Point', 'coordinates': (-79.38949143, 43.67696204)}"
-22775,1160,GO-20179012521,THEFT UNDER - BICYCLE,2017-08-15T00:00:00,2017,August,Tuesday,15,227,16,2017-08-16T00:00:00,2017,August,Wednesday,16,228,9,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,FX,RG,21,BLK,500.0,STOLEN,22758,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22776,1176,GO-20179012726,THEFT UNDER - BICYCLE,2017-08-14T00:00:00,2017,August,Monday,14,226,3,2017-08-18T00:00:00,2017,August,Friday,18,230,13,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,UK,GLOBE3.1,RG,8,BLK,1200.0,STOLEN,22759,"{'type': 'Point', 'coordinates': (-79.38489765, 43.672483830000004)}"
-22777,1223,GO-20171525931,B&E,2017-08-22T00:00:00,2017,August,Tuesday,22,234,23,2017-08-24T00:00:00,2017,August,Thursday,24,236,8,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,HYBRID,OT,21,WHIBLK,1500.0,STOLEN,22760,"{'type': 'Point', 'coordinates': (-79.38958887, 43.68009143)}"
-22778,1251,GO-20179013398,THEFT UNDER - BICYCLE,2017-08-25T00:00:00,2017,August,Friday,25,237,11,2017-08-26T00:00:00,2017,August,Saturday,26,238,13,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE 2,OT,24,BLU,850.0,STOLEN,22761,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22779,1421,GO-20179014887,THEFT UNDER - BICYCLE,2017-09-13T00:00:00,2017,September,Wednesday,13,256,14,2017-09-15T00:00:00,2017,September,Friday,15,258,19,D53,Toronto,98,Rosedale-Moore Park (98),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,MT,15,BLK,500.0,STOLEN,22762,"{'type': 'Point', 'coordinates': (-79.38528575, 43.67361839)}"
-22780,1458,GO-20171687779,B&E,2017-09-16T00:00:00,2017,September,Saturday,16,259,20,2017-09-17T00:00:00,2017,September,Sunday,17,260,16,D53,Toronto,98,Rosedale-Moore Park (98),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CERVELO,P3X,OT,1,GRY,5000.0,STOLEN,22763,"{'type': 'Point', 'coordinates': (-79.37782305, 43.67503288)}"
-22781,1465,GO-20179015233,THEFT UNDER - BICYCLE,2017-09-19T00:00:00,2017,September,Tuesday,19,262,18,2017-09-20T00:00:00,2017,September,Wednesday,20,263,8,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,XCALIBER,TO,21,GRN,1200.0,STOLEN,22764,"{'type': 'Point', 'coordinates': (-79.38754395, 43.67216242)}"
-22782,1467,GO-20179015277,THEFT UNDER - BICYCLE,2017-09-19T00:00:00,2017,September,Tuesday,19,262,17,2017-09-20T00:00:00,2017,September,Wednesday,20,263,13,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,RG,21,WHI,50.0,STOLEN,22765,"{'type': 'Point', 'coordinates': (-79.38476649, 43.67217315)}"
-22783,1474,GO-20171714392,THEFT UNDER - BICYCLE,2017-09-15T00:00:00,2017,September,Friday,15,258,16,2017-09-21T00:00:00,2017,September,Thursday,21,264,13,D53,Toronto,98,Rosedale-Moore Park (98),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,SIRRUS,OT,15,SILBLK,1500.0,STOLEN,22766,"{'type': 'Point', 'coordinates': (-79.37782305, 43.67503288)}"
-22784,1500,GO-20171709125,THEFT OF EBIKE UNDER $5000,2017-09-20T00:00:00,2017,September,Wednesday,20,263,14,2017-09-20T00:00:00,2017,September,Wednesday,20,263,17,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,CONDOR,EL,2,RED,1000.0,STOLEN,22767,"{'type': 'Point', 'coordinates': (-79.38718014, 43.67129793)}"
-22785,1642,GO-20171842497,B&E,2017-10-10T00:00:00,2017,October,Tuesday,10,283,2,2017-10-11T00:00:00,2017,October,Wednesday,11,284,12,D53,Toronto,98,Rosedale-Moore Park (98),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,MT,0,BLK,600.0,STOLEN,22768,"{'type': 'Point', 'coordinates': (-79.37557009000001, 43.67490443)}"
-22786,1684,GO-20179017548,THEFT UNDER - BICYCLE,2017-10-18T00:00:00,2017,October,Wednesday,18,291,13,2017-10-18T00:00:00,2017,October,Wednesday,18,291,20,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,8,LGR,650.0,STOLEN,22769,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22787,1767,GO-20179018489,THEFT UNDER - BICYCLE,2017-10-29T00:00:00,2017,October,Sunday,29,302,22,2017-10-29T00:00:00,2017,October,Sunday,29,302,22,D53,Toronto,98,Rosedale-Moore Park (98),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,OT,,RC,16,,1500.0,STOLEN,22770,"{'type': 'Point', 'coordinates': (-79.3823358, 43.67122103)}"
-22788,2022,GO-20189004013,THEFT UNDER - BICYCLE,2018-02-08T00:00:00,2018,February,Thursday,8,39,18,2018-02-09T00:00:00,2018,February,Friday,9,40,8,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KH,220,RG,6,GRY,1500.0,STOLEN,22771,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22789,2054,GO-20189006283,THEFT UNDER - BICYCLE,2018-01-28T00:00:00,2018,January,Sunday,28,28,18,2018-02-27T00:00:00,2018,February,Tuesday,27,58,20,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,NO,CCX 2,RG,16,BLK,1000.0,STOLEN,22772,"{'type': 'Point', 'coordinates': (-79.38984652, 43.68899269)}"
-22790,2224,GO-2018761139,THEFT OVER,2018-04-27T00:00:00,2018,April,Friday,27,117,17,2018-04-28T00:00:00,2018,April,Saturday,28,118,16,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CERVELO,,MT,21,BLK,6000.0,STOLEN,22773,"{'type': 'Point', 'coordinates': (-79.38726548, 43.69298677)}"
-22791,2238,GO-20189013555,THEFT UNDER - BICYCLE,2018-05-01T00:00:00,2018,May,Tuesday,1,121,17,2018-05-02T00:00:00,2018,May,Wednesday,2,122,9,D53,Toronto,98,Rosedale-Moore Park (98),Unknown,Other,NO,INDIE,RG,24,,1000.0,STOLEN,22774,"{'type': 'Point', 'coordinates': (-79.38711576, 43.671122340000004)}"
-22792,2279,GO-20189014305,THEFT UNDER - BICYCLE,2018-05-07T00:00:00,2018,May,Monday,7,127,14,2018-05-09T00:00:00,2018,May,Wednesday,9,129,14,D53,Toronto,98,Rosedale-Moore Park (98),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,WOLVERINE,MT,18,GRY,400.0,STOLEN,22775,"{'type': 'Point', 'coordinates': (-79.38459861, 43.67181293)}"
-22793,2289,GO-20189014493,THEFT FROM MOTOR VEHICLE UNDER,2018-05-10T00:00:00,2018,May,Thursday,10,130,21,2018-05-10T00:00:00,2018,May,Thursday,10,130,21,D53,Toronto,98,Rosedale-Moore Park (98),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,C3 PRO,OT,1,WHI,800.0,STOLEN,22776,"{'type': 'Point', 'coordinates': (-79.38052643, 43.67161072)}"
-22794,2382,GO-20189015990,THEFT UNDER - BICYCLE,2018-05-22T00:00:00,2018,May,Tuesday,22,142,9,2018-05-23T00:00:00,2018,May,Wednesday,23,143,19,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,SU,SUPERCYCLE 1800,MT,18,BLK,110.0,STOLEN,22777,"{'type': 'Point', 'coordinates': (-79.392814, 43.68502592)}"
-22795,2388,GO-20189016129,THEFT UNDER - BICYCLE,2018-05-24T00:00:00,2018,May,Thursday,24,144,12,2018-05-24T00:00:00,2018,May,Thursday,24,144,20,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,DURANGO 1,MT,27,RED,650.0,STOLEN,22778,"{'type': 'Point', 'coordinates': (-79.38746342000002, 43.6719238)}"
-22796,2530,GO-20189018282,THEFT UNDER - BICYCLE,2018-06-11T00:00:00,2018,June,Monday,11,162,9,2018-06-11T00:00:00,2018,June,Monday,11,162,17,D53,Toronto,98,Rosedale-Moore Park (98),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,OCR3,RC,21,BLK,500.0,STOLEN,22779,"{'type': 'Point', 'coordinates': (-79.38353943, 43.67203689)}"
-22797,2550,GO-20189018510,THEFT UNDER - BICYCLE,2018-06-13T00:00:00,2018,June,Wednesday,13,164,8,2018-06-13T00:00:00,2018,June,Wednesday,13,164,10,D53,Toronto,98,Rosedale-Moore Park (98),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,CLASSIC FIXIE,OT,1,BLK,500.0,STOLEN,22780,"{'type': 'Point', 'coordinates': (-79.38353943, 43.67203689)}"
-22798,2588,GO-20189018959,THEFT UNDER - BICYCLE,2018-06-14T00:00:00,2018,June,Thursday,14,165,14,2018-06-16T00:00:00,2018,June,Saturday,16,167,15,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,FLAT BAR ROAD B,RC,21,PNK,800.0,STOLEN,22781,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22799,2616,GO-20189019300,THEFT UNDER - BICYCLE,2018-06-18T00:00:00,2018,June,Monday,18,169,21,2018-06-19T00:00:00,2018,June,Tuesday,19,170,12,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,FX2,MT,24,LGR,619.0,STOLEN,22782,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22800,6300,GO-20209014598,THEFT UNDER - BICYCLE,2020-06-04T00:00:00,2020,June,Thursday,4,156,13,2020-06-04T00:00:00,2020,June,Thursday,4,156,15,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,CA,,OT,7,GRY,825.0,STOLEN,22839,"{'type': 'Point', 'coordinates': (-79.3995445, 43.69512024)}"
-22801,2619,GO-20189019362,THEFT UNDER - BICYCLE,2018-06-14T00:00:00,2018,June,Thursday,14,165,9,2018-06-19T00:00:00,2018,June,Tuesday,19,170,16,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,BOWERY,OT,1,GRY,650.0,STOLEN,22783,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22802,2653,GO-20189019720,THEFT UNDER - BICYCLE,2018-06-21T00:00:00,2018,June,Thursday,21,172,6,2018-06-21T00:00:00,2018,June,Thursday,21,172,21,D53,Toronto,98,Rosedale-Moore Park (98),Ttc Subway Station,Transit,OT,DIVERGE ELITE E,RG,8,GRY,1695.0,STOLEN,22784,"{'type': 'Point', 'coordinates': (-79.38966274, 43.67738077)}"
-22803,2666,GO-20189020038,THEFT UNDER - BICYCLE,2018-06-24T00:00:00,2018,June,Sunday,24,175,13,2018-06-24T00:00:00,2018,June,Sunday,24,175,14,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,ESCAPE,RG,8,BLK,800.0,STOLEN,22785,"{'type': 'Point', 'coordinates': (-79.38683838, 43.67848968)}"
-22804,2690,GO-20189020373,THEFT UNDER - BICYCLE,2018-06-25T00:00:00,2018,June,Monday,25,176,21,2018-06-26T00:00:00,2018,June,Tuesday,26,177,13,D53,Toronto,98,Rosedale-Moore Park (98),Ttc Subway Station,Transit,UK,,RG,1,BLK,320.0,STOLEN,22786,"{'type': 'Point', 'coordinates': (-79.38949143, 43.67696204)}"
-22805,2735,GO-20189020944,THEFT UNDER - BICYCLE,2018-06-16T00:00:00,2018,June,Saturday,16,167,2,2018-07-02T00:00:00,2018,July,Monday,2,183,17,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,21,RED,688.0,STOLEN,22787,"{'type': 'Point', 'coordinates': (-79.39342098, 43.691619970000005)}"
-22806,2760,GO-20189021353,THEFT UNDER - BICYCLE,2018-07-05T00:00:00,2018,July,Thursday,5,186,13,2018-07-05T00:00:00,2018,July,Thursday,5,186,20,D53,Toronto,98,Rosedale-Moore Park (98),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,NORCO YORKVILLE,RG,21,PLE,600.0,STOLEN,22788,"{'type': 'Point', 'coordinates': (-79.38883215, 43.67530065)}"
-22807,2988,GO-20189024110,THEFT UNDER - BICYCLE,2018-07-27T00:00:00,2018,July,Friday,27,208,6,2018-07-27T00:00:00,2018,July,Friday,27,208,8,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,NO,YORKVILLE,RG,21,SIL,500.0,STOLEN,22789,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22808,3015,GO-20189024416,THEFT UNDER - BICYCLE,2018-07-07T00:00:00,2018,July,Saturday,7,188,18,2018-07-29T00:00:00,2018,July,Sunday,29,210,14,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,12,BLK,800.0,STOLEN,22790,"{'type': 'Point', 'coordinates': (-79.38612080000001, 43.67244005)}"
-22809,3117,GO-20189025589,THEFT UNDER - BICYCLE,2018-08-07T00:00:00,2018,August,Tuesday,7,219,22,2018-08-08T00:00:00,2018,August,Wednesday,8,220,22,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,,MT,12,,1200.0,STOLEN,22791,"{'type': 'Point', 'coordinates': (-79.39145198, 43.68864767)}"
-22810,3195,GO-20189026277,THEFT UNDER - BICYCLE,2018-08-14T00:00:00,2018,August,Tuesday,14,226,0,2018-08-14T00:00:00,2018,August,Tuesday,14,226,0,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,OT,21,GRY,0.0,STOLEN,22792,"{'type': 'Point', 'coordinates': (-79.3926068, 43.68840573)}"
-22811,3219,GO-20189026588,THEFT UNDER - BICYCLE,2018-08-15T00:00:00,2018,August,Wednesday,15,227,8,2018-08-16T00:00:00,2018,August,Thursday,16,228,4,D53,Toronto,98,Rosedale-Moore Park (98),"Open Areas (Lakes, Parks, Rivers)",Outside,CA,EN 14766,MT,8,BLK,200.0,STOLEN,22793,"{'type': 'Point', 'coordinates': (-79.38746342000002, 43.6719238)}"
-22812,3220,GO-20189026588,THEFT UNDER - BICYCLE,2018-08-15T00:00:00,2018,August,Wednesday,15,227,8,2018-08-16T00:00:00,2018,August,Thursday,16,228,4,D53,Toronto,98,Rosedale-Moore Park (98),"Open Areas (Lakes, Parks, Rivers)",Outside,CA,,MT,8,,0.0,STOLEN,22794,"{'type': 'Point', 'coordinates': (-79.38746342000002, 43.6719238)}"
-22813,3221,GO-20189026588,THEFT UNDER - BICYCLE,2018-08-15T00:00:00,2018,August,Wednesday,15,227,8,2018-08-16T00:00:00,2018,August,Thursday,16,228,4,D53,Toronto,98,Rosedale-Moore Park (98),"Open Areas (Lakes, Parks, Rivers)",Outside,CA,,MT,8,BLK,60.0,STOLEN,22795,"{'type': 'Point', 'coordinates': (-79.38746342000002, 43.6719238)}"
-22814,3282,GO-20189027367,THEFT UNDER - BICYCLE,2018-08-16T00:00:00,2018,August,Thursday,16,228,3,2018-08-21T00:00:00,2018,August,Tuesday,21,233,19,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,10,BRN,1000.0,STOLEN,22796,"{'type': 'Point', 'coordinates': (-79.38462589000001, 43.69357372)}"
-22815,3321,GO-20189027947,THEFT UNDER - BICYCLE,2018-08-25T00:00:00,2018,August,Saturday,25,237,19,2018-08-25T00:00:00,2018,August,Saturday,25,237,19,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,TO,27,BLK,1500.0,STOLEN,22797,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22816,3353,GO-20189028518,THEFT UNDER - BICYCLE,2018-08-27T00:00:00,2018,August,Monday,27,239,18,2018-08-30T00:00:00,2018,August,Thursday,30,242,0,D53,Toronto,98,Rosedale-Moore Park (98),Ttc Subway Station,Transit,TR,3700,RG,10,BLK,150.0,STOLEN,22798,"{'type': 'Point', 'coordinates': (-79.38949143, 43.67696204)}"
-22817,3470,GO-20189030483,THEFT UNDER - BICYCLE,2018-08-14T00:00:00,2018,August,Tuesday,14,226,17,2018-09-14T00:00:00,2018,September,Friday,14,257,17,D53,Toronto,98,Rosedale-Moore Park (98),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,TCR ADVANCED,RC,30,OTH,3500.0,STOLEN,22799,"{'type': 'Point', 'coordinates': (-79.39342098, 43.691619970000005)}"
-22818,3546,GO-20189031691,THEFT UNDER - BICYCLE,2018-09-22T00:00:00,2018,September,Saturday,22,265,17,2018-09-24T00:00:00,2018,September,Monday,24,267,11,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,RA,OASIS,RG,6,BLK,600.0,STOLEN,22800,"{'type': 'Point', 'coordinates': (-79.39314545, 43.68588136)}"
-22819,3616,GO-20189032898,THEFT UNDER - BICYCLE,2018-09-01T00:00:00,2018,September,Saturday,1,244,14,2018-10-04T00:00:00,2018,October,Thursday,4,277,14,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,SU,,MT,21,RED,150.0,STOLEN,22801,"{'type': 'Point', 'coordinates': (-79.39314545, 43.68588136)}"
-22820,3856,GO-20189038291,THEFT UNDER - BICYCLE,2018-11-14T00:00:00,2018,November,Wednesday,14,318,8,2018-11-15T00:00:00,2018,November,Thursday,15,319,8,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,GI,BRAVIA,TO,18,BLU,1800.0,STOLEN,22802,"{'type': 'Point', 'coordinates': (-79.38612080000001, 43.67244005)}"
-22821,3866,GO-20189038542,THEFT UNDER - BICYCLE,2018-11-12T00:00:00,2018,November,Monday,12,316,9,2018-11-16T00:00:00,2018,November,Friday,16,320,16,D53,Toronto,98,Rosedale-Moore Park (98),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,MR. PINK,RC,18,BLU,2500.0,STOLEN,22803,"{'type': 'Point', 'coordinates': (-79.38353943, 43.67203689)}"
-22822,3867,GO-20189038542,THEFT UNDER - BICYCLE,2018-11-12T00:00:00,2018,November,Monday,12,316,9,2018-11-16T00:00:00,2018,November,Friday,16,320,16,D53,Toronto,98,Rosedale-Moore Park (98),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,MR PINK,RC,18,BLU,2500.0,STOLEN,22804,"{'type': 'Point', 'coordinates': (-79.38353943, 43.67203689)}"
-22823,3906,GO-20182194221,B&E,2018-11-24T00:00:00,2018,November,Saturday,24,328,21,2018-11-29T00:00:00,2018,November,Thursday,29,333,10,D53,Toronto,98,Rosedale-Moore Park (98),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,RG,0,LBL,1500.0,STOLEN,22805,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22824,4218,GO-2019776046,B&E,2019-04-30T00:00:00,2019,April,Tuesday,30,120,3,2019-04-30T00:00:00,2019,April,Tuesday,30,120,11,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,MT,21,WHI,1200.0,STOLEN,22806,"{'type': 'Point', 'coordinates': (-79.38448757, 43.68080517)}"
-22825,4227,GO-20199013775,THEFT UNDER,2019-05-02T00:00:00,2019,May,Thursday,2,122,18,2019-05-02T00:00:00,2019,May,Thursday,2,122,20,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,OT,15,,500.0,STOLEN,22807,"{'type': 'Point', 'coordinates': (-79.38711576, 43.671122340000004)}"
-22826,4353,GO-2019967448,THEFT UNDER - BICYCLE,2019-05-27T00:00:00,2019,May,Monday,27,147,9,2019-05-27T00:00:00,2019,May,Monday,27,147,9,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,UNKNOWN,RG,10,BLK,500.0,STOLEN,22808,"{'type': 'Point', 'coordinates': (-79.38754395, 43.67216242)}"
-22827,4530,GO-20191106490,PROPERTY - FOUND,2019-06-15T00:00:00,2019,June,Saturday,15,166,14,2019-06-18T00:00:00,2019,June,Tuesday,18,169,19,D53,Toronto,98,Rosedale-Moore Park (98),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NORCO,XFR,MT,24,,,UNKNOWN,22809,"{'type': 'Point', 'coordinates': (-79.37942813, 43.6718256)}"
-22828,4705,GO-20199021469,THEFT UNDER - BICYCLE,2019-07-08T00:00:00,2019,July,Monday,8,189,15,2019-07-08T00:00:00,2019,July,Monday,8,189,15,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,TR,,OT,10,BLK,100.0,STOLEN,22810,"{'type': 'Point', 'coordinates': (-79.3926068, 43.68840573)}"
-22829,5292,GO-20199029554,THEFT UNDER - BICYCLE,2019-09-10T00:00:00,2019,September,Tuesday,10,253,17,2019-09-11T00:00:00,2019,September,Wednesday,11,254,11,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,THRESHOLD A3,RG,9,SIL,930.0,STOLEN,22811,"{'type': 'Point', 'coordinates': (-79.38809991, 43.68268105)}"
-22830,4777,GO-20199022378,THEFT UNDER - BICYCLE,2019-07-15T00:00:00,2019,July,Monday,15,196,10,2019-07-15T00:00:00,2019,July,Monday,15,196,16,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ROCKRIDER 8.0,MT,21,WHI,750.0,STOLEN,22812,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22831,4828,GO-20199023122,THEFT UNDER - BICYCLE,2019-07-05T00:00:00,2019,July,Friday,5,186,17,2019-07-21T00:00:00,2019,July,Sunday,21,202,15,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,CA,,MT,24,GRN,1000.0,STOLEN,22813,"{'type': 'Point', 'coordinates': (-79.38459861, 43.67181293)}"
-22832,4895,GO-20191386474,THEFT UNDER - BICYCLE,2019-07-23T00:00:00,2019,July,Tuesday,23,204,7,2019-07-23T00:00:00,2019,July,Tuesday,23,204,20,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,HYBRID,MT,8,WHI,350.0,STOLEN,22814,"{'type': 'Point', 'coordinates': (-79.39145198, 43.68864767)}"
-22833,4898,GO-20199024010,THEFT UNDER - BICYCLE,2019-07-27T00:00:00,2019,July,Saturday,27,208,11,2019-07-27T00:00:00,2019,July,Saturday,27,208,13,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ROAD BIKE,OT,12,BLK,1200.0,STOLEN,22815,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22834,4905,GO-20199024079,THEFT UNDER - BICYCLE,2019-07-29T00:00:00,2019,July,Monday,29,210,8,2019-07-29T00:00:00,2019,July,Monday,29,210,13,D53,Toronto,98,Rosedale-Moore Park (98),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,GTX-2,RG,21,BLK,550.0,STOLEN,22816,"{'type': 'Point', 'coordinates': (-79.37942813, 43.6718256)}"
-22835,4941,GO-20199024520,THEFT UNDER - BICYCLE,2019-07-29T00:00:00,2019,July,Monday,29,210,1,2019-07-31T00:00:00,2019,July,Wednesday,31,212,14,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,UK,,BM,1,BLU,250.0,STOLEN,22817,"{'type': 'Point', 'coordinates': (-79.39145198, 43.68864767)}"
-22836,5013,GO-20191513308,THEFT UNDER - BICYCLE,2019-08-02T00:00:00,2019,August,Friday,2,214,17,2019-08-10T00:00:00,2019,August,Saturday,10,222,14,D53,Toronto,98,Rosedale-Moore Park (98),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CYCLE MANIA,U/K,MT,21,BLK,,STOLEN,22818,"{'type': 'Point', 'coordinates': (-79.38883215, 43.67530065)}"
-22837,5022,GO-20199025644,THEFT UNDER - BICYCLE,2019-07-31T00:00:00,2019,July,Wednesday,31,212,13,2019-08-10T00:00:00,2019,August,Saturday,10,222,13,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,OT,TRAIL X2,MT,24,BLK,360.0,STOLEN,22819,"{'type': 'Point', 'coordinates': (-79.38782632, 43.6728738)}"
-22838,5026,GO-20199024520,THEFT UNDER - BICYCLE,2019-07-29T00:00:00,2019,July,Monday,29,210,1,2019-07-31T00:00:00,2019,July,Wednesday,31,212,14,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,UK,,BM,1,BLU,,STOLEN,22820,"{'type': 'Point', 'coordinates': (-79.39145198, 43.68864767)}"
-22839,4192,GO-20199012702,THEFT UNDER - BICYCLE,2019-04-22T00:00:00,2019,April,Monday,22,112,9,2019-04-22T00:00:00,2019,April,Monday,22,112,18,D53,Toronto,97,Yonge-St.Clair (97),Unknown,Other,NO,VFR3,RG,15,GRY,626.0,STOLEN,22821,"{'type': 'Point', 'coordinates': (-79.39234422, 43.68394081)}"
-22840,4595,GO-20199019957,THEFT UNDER - BICYCLE,2019-04-24T00:00:00,2019,April,Wednesday,24,114,18,2019-06-24T00:00:00,2019,June,Monday,24,175,18,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,UK,COMP,MT,9,BLK,1278.0,STOLEN,22823,"{'type': 'Point', 'coordinates': (-79.39885188, 43.68940399)}"
-22841,4596,GO-20199019957,THEFT UNDER - BICYCLE,2019-04-24T00:00:00,2019,April,Wednesday,24,114,18,2019-06-24T00:00:00,2019,June,Monday,24,175,18,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,UK,MILANO,RG,9,BLK,950.0,STOLEN,22824,"{'type': 'Point', 'coordinates': (-79.39885188, 43.68940399)}"
-22842,4618,GO-20191171076,THEFT UNDER - BICYCLE,2019-06-22T00:00:00,2019,June,Saturday,22,173,0,2019-06-24T00:00:00,2019,June,Monday,24,175,11,D53,Toronto,97,Yonge-St.Clair (97),"Open Areas (Lakes, Parks, Rivers)",Outside,TREK,,MT,24,BLU,800.0,STOLEN,22825,"{'type': 'Point', 'coordinates': (-79.39129987, 43.6814317)}"
-22843,4619,GO-20191171076,THEFT UNDER - BICYCLE,2019-06-22T00:00:00,2019,June,Saturday,22,173,0,2019-06-24T00:00:00,2019,June,Monday,24,175,11,D53,Toronto,97,Yonge-St.Clair (97),"Open Areas (Lakes, Parks, Rivers)",Outside,SCHWINN,,MT,21,PLE,700.0,STOLEN,22826,"{'type': 'Point', 'coordinates': (-79.39129987, 43.6814317)}"
-22844,4973,GO-20199025015,THEFT UNDER - BICYCLE,2019-08-05T00:00:00,2019,August,Monday,5,217,13,2019-08-05T00:00:00,2019,August,Monday,5,217,15,D53,Toronto,97,Yonge-St.Clair (97),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,,MT,18,BLK,799.0,STOLEN,22827,"{'type': 'Point', 'coordinates': (-79.39657630000002, 43.68186842)}"
-22845,5157,GO-20199027646,THEFT UNDER,2019-08-23T00:00:00,2019,August,Friday,23,235,20,2019-08-25T00:00:00,2019,August,Sunday,25,237,18,D53,Toronto,97,Yonge-St.Clair (97),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RA,,TO,24,BLK,1200.0,STOLEN,22828,"{'type': 'Point', 'coordinates': (-79.39793541, 43.68731535)}"
-22846,5193,GO-20199028224,THEFT UNDER - BICYCLE,2019-08-30T00:00:00,2019,August,Friday,30,242,13,2019-08-30T00:00:00,2019,August,Friday,30,242,14,D53,Toronto,97,Yonge-St.Clair (97),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,TREK FX,TO,24,BLK,800.0,STOLEN,22829,"{'type': 'Point', 'coordinates': (-79.39366497, 43.68713303)}"
-22847,5228,GO-20199028687,THEFT UNDER - BICYCLE,2019-09-03T00:00:00,2019,September,Tuesday,3,246,9,2019-09-04T00:00:00,2019,September,Wednesday,4,247,9,D53,Toronto,97,Yonge-St.Clair (97),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CHINOOKO,RC,1,BLU,600.0,STOLEN,22830,"{'type': 'Point', 'coordinates': (-79.39151478, 43.681973230000004)}"
-22848,5245,GO-20199028846,THEFT UNDER - BICYCLE,2019-09-05T00:00:00,2019,September,Thursday,5,248,9,2019-09-05T00:00:00,2019,September,Thursday,5,248,11,D53,Toronto,97,Yonge-St.Clair (97),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SIRRUS COMP,RG,20,BLK,1600.0,STOLEN,22831,"{'type': 'Point', 'coordinates': (-79.39485115, 43.69000105)}"
-22849,5544,GO-20192014120,THEFT OF EBIKE UNDER $5000,2019-10-18T00:00:00,2019,October,Friday,18,291,20,2019-10-18T00:00:00,2019,October,Friday,18,291,20,D53,Toronto,97,Yonge-St.Clair (97),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,UNKNOWN,EL,1,GRY,3500.0,STOLEN,22832,"{'type': 'Point', 'coordinates': (-79.39485115, 43.69000105)}"
-22850,5740,GO-20192324624,THEFT OF EBIKE UNDER $5000,2019-11-28T00:00:00,2019,November,Thursday,28,332,17,2019-12-02T00:00:00,2019,December,Monday,2,336,14,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,OTHER,CITY COMMUTER,EL,0,,,STOLEN,22833,"{'type': 'Point', 'coordinates': (-79.39234422, 43.68394081)}"
-22851,5896,GO-2020333085,B&E,2020-02-16T00:00:00,2020,February,Sunday,16,47,4,2020-02-16T00:00:00,2020,February,Sunday,16,47,12,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,GIANT,,MT,1,BLKGRN,1500.0,STOLEN,22834,"{'type': 'Point', 'coordinates': (-79.39793541, 43.68731535)}"
-22852,5897,GO-2020333085,B&E,2020-02-16T00:00:00,2020,February,Sunday,16,47,4,2020-02-16T00:00:00,2020,February,Sunday,16,47,12,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,TREK,,MT,1,BLK,4500.0,STOLEN,22835,"{'type': 'Point', 'coordinates': (-79.39793541, 43.68731535)}"
-22853,6094,GO-20209011804,THEFT UNDER - BICYCLE,2020-04-20T00:00:00,2020,April,Monday,20,111,18,2020-04-23T00:00:00,2020,April,Thursday,23,114,16,D53,Toronto,97,Yonge-St.Clair (97),"Private Property Structure (Pool, Shed, Detached Garage)",Other,DEVINCI,ST TROPEZ 2016,OT,24,SIL,1200.0,STOLEN,22836,"{'type': 'Point', 'coordinates': (-79.39373783, 43.68094902)}"
-22854,6132,GO-20209012400,THEFT UNDER,2020-05-03T00:00:00,2020,May,Sunday,3,124,17,2020-05-03T00:00:00,2020,May,Sunday,3,124,18,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,NO,,RG,21,BLK,200.0,STOLEN,22837,"{'type': 'Point', 'coordinates': (-79.39705798, 43.69378853)}"
-22855,6138,GO-20209012462,THEFT UNDER - BICYCLE,2020-05-04T00:00:00,2020,May,Monday,4,125,3,2020-05-04T00:00:00,2020,May,Monday,4,125,15,D53,Toronto,97,Yonge-St.Clair (97),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,50,,0.0,STOLEN,22838,"{'type': 'Point', 'coordinates': (-79.39744799, 43.6897005)}"
-22856,6394,GO-20209015421,THEFT UNDER - BICYCLE,2020-06-13T00:00:00,2020,June,Saturday,13,165,16,2020-06-15T00:00:00,2020,June,Monday,15,167,16,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,NO,INDIE 2,RG,27,ONG,860.0,STOLEN,22840,"{'type': 'Point', 'coordinates': (-79.39606215, 43.69212919)}"
-22857,6436,GO-20201147953,THEFT UNDER - BICYCLE,2020-05-24T00:00:00,2020,May,Sunday,24,145,10,2020-06-22T00:00:00,2020,June,Monday,22,174,12,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,GARY FISHER,,RC,10,RED,1000.0,STOLEN,22841,"{'type': 'Point', 'coordinates': (-79.39366497, 43.68713303)}"
-22858,6487,GO-20209016359,THEFT UNDER - BICYCLE,2020-06-20T00:00:00,2020,June,Saturday,20,172,22,2020-06-28T00:00:00,2020,June,Sunday,28,180,11,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,3,LGR,500.0,STOLEN,22842,"{'type': 'Point', 'coordinates': (-79.39744799, 43.6897005)}"
-22859,6562,GO-20209017139,THEFT UNDER - BICYCLE,2020-07-07T00:00:00,2020,July,Tuesday,7,189,17,2020-07-08T00:00:00,2020,July,Wednesday,8,190,16,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,OT,HEX DEORE 2019,RG,9,DBL,1475.0,STOLEN,22843,"{'type': 'Point', 'coordinates': (-79.3972217, 43.69465737)}"
-22860,6682,GO-20201348165,THEFT UNDER - BICYCLE,2020-07-06T00:00:00,2020,July,Monday,6,188,0,2020-07-21T00:00:00,2020,July,Tuesday,21,203,16,D53,Toronto,97,Yonge-St.Clair (97),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SCHWINN,,MT,24,GRY,500.0,STOLEN,22844,"{'type': 'Point', 'coordinates': (-79.40297311, 43.69729816)}"
-22861,7327,GO-20201797285,THEFT UNDER - BICYCLE,2020-09-14T00:00:00,2020,September,Monday,14,258,17,2020-09-23T00:00:00,2020,September,Wednesday,23,267,11,D53,Toronto,97,Yonge-St.Clair (97),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,,RC,21,GRY,,STOLEN,22845,"{'type': 'Point', 'coordinates': (-79.39485115, 43.69000105)}"
-22862,7369,GO-20209024703,THEFT UNDER - BICYCLE,2020-09-01T00:00:00,2020,September,Tuesday,1,245,14,2020-09-27T00:00:00,2020,September,Sunday,27,271,15,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,OT,FRONT TIRE,TO,21,GRY,200.0,STOLEN,22846,"{'type': 'Point', 'coordinates': (-79.40016909, 43.68352673)}"
-22863,7370,GO-20209024718,THEFT UNDER - BICYCLE,2020-09-15T00:00:00,2020,September,Tuesday,15,259,23,2020-09-27T00:00:00,2020,September,Sunday,27,271,19,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,TR,VERVE 1 DISC LO,RG,21,WHI,850.0,STOLEN,22847,"{'type': 'Point', 'coordinates': (-79.40016909, 43.68352673)}"
-22864,7673,GO-20202251326,B&E,2020-11-27T00:00:00,2020,November,Friday,27,332,23,2020-11-28T00:00:00,2020,November,Saturday,28,333,10,D53,Toronto,97,Yonge-St.Clair (97),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,VOKUL FOLDABLE,OT,1,WHI,130.0,STOLEN,22849,"{'type': 'Point', 'coordinates': (-79.39199263, 43.68310115)}"
-22865,8311,GO-20149004616,THEFT UNDER,2014-06-26T00:00:00,2014,June,Thursday,26,177,19,2014-07-02T00:00:00,2014,July,Wednesday,2,183,10,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,OT,CODA SPORT WOME,RG,21,RED,700.0,STOLEN,22850,"{'type': 'Point', 'coordinates': (-79.3993437, 43.69470515)}"
-22866,8363,GO-20149004792,THEFT UNDER,2014-06-26T00:00:00,2014,June,Thursday,26,177,0,2014-07-09T00:00:00,2014,July,Wednesday,9,190,16,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,OT,ATTACK (WOMEN'S,RC,16,BLK,2454.0,STOLEN,22851,"{'type': 'Point', 'coordinates': (-79.39889958, 43.68046017)}"
-22867,8868,GO-20142901231,PROPERTY - LOST,2014-09-13T00:00:00,2014,September,Saturday,13,256,10,2014-09-13T00:00:00,2014,September,Saturday,13,256,15,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,RALLEY,,RC,0,BLK,,UNKNOWN,22852,"{'type': 'Point', 'coordinates': (-79.39831158, 43.67903889)}"
-22868,9334,GO-20159001411,THEFT UNDER,2015-03-09T00:00:00,2015,March,Monday,9,68,9,2015-03-19T00:00:00,2015,March,Thursday,19,78,14,D53,Toronto,97,Yonge-St.Clair (97),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KO,KING KIKAPU,MT,21,GRN,3500.0,STOLEN,22853,"{'type': 'Point', 'coordinates': (-79.40229798, 43.6887215)}"
-22869,9871,GO-20159003908,THEFT UNDER,2015-06-24T00:00:00,2015,June,Wednesday,24,175,14,2015-06-24T00:00:00,2015,June,Wednesday,24,175,18,D53,Toronto,97,Yonge-St.Clair (97),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,24,BLK,850.0,STOLEN,22854,"{'type': 'Point', 'coordinates': (-79.40082873, 43.69119789)}"
-22870,10085,GO-20151269627,THEFT UNDER,2015-07-24T00:00:00,2015,July,Friday,24,205,2,2015-07-25T00:00:00,2015,July,Saturday,25,206,14,D53,Toronto,97,Yonge-St.Clair (97),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,GO PED,OT,1,TAN,450.0,STOLEN,22855,"{'type': 'Point', 'coordinates': (-79.40229798, 43.6887215)}"
-22871,10204,GO-20159005475,THEFT UNDER,2015-08-08T00:00:00,2015,August,Saturday,8,220,23,2015-08-09T00:00:00,2015,August,Sunday,9,221,14,D53,Toronto,97,Yonge-St.Clair (97),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,VFR4,RG,21,WHI,900.0,STOLEN,22856,"{'type': 'Point', 'coordinates': (-79.39606215, 43.69212919)}"
-22872,10279,GO-20159005895,THEFT UNDER,2015-08-16T00:00:00,2015,August,Sunday,16,228,0,2015-08-17T00:00:00,2015,August,Monday,17,229,13,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,OT,EXPRESS,RG,15,PNK,500.0,STOLEN,22857,"{'type': 'Point', 'coordinates': (-79.39606215, 43.69212919)}"
-22873,10385,GO-20159006618,THEFT UNDER,2015-08-31T00:00:00,2015,August,Monday,31,243,22,2015-09-01T00:00:00,2015,September,Tuesday,1,244,15,D53,Toronto,97,Yonge-St.Clair (97),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CROSSTRAIL ELIT,RG,20,GRY,1000.0,STOLEN,22858,"{'type': 'Point', 'coordinates': (-79.39366497, 43.68713303)}"
-22874,10504,GO-20159007460,THEFT UNDER,2015-09-19T00:00:00,2015,September,Saturday,19,262,23,2015-09-20T00:00:00,2015,September,Sunday,20,263,16,D53,Toronto,97,Yonge-St.Clair (97),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,RG,10,LGR,450.0,STOLEN,22859,"{'type': 'Point', 'coordinates': (-79.39793541, 43.68731535)}"
-22875,10532,GO-20159007460,THEFT UNDER,2015-09-19T00:00:00,2015,September,Saturday,19,262,23,2015-09-20T00:00:00,2015,September,Sunday,20,263,16,D53,Toronto,97,Yonge-St.Clair (97),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,RG,10,LGR,450.0,STOLEN,22860,"{'type': 'Point', 'coordinates': (-79.39793541, 43.68731535)}"
-22876,11026,GO-20169002135,THEFT UNDER - BICYCLE,2016-01-20T00:00:00,2016,January,Wednesday,20,20,21,2016-03-08T00:00:00,2016,March,Tuesday,8,68,21,D53,Toronto,97,Yonge-St.Clair (97),Ttc Subway Station,Transit,NO,CITY GLIDE,RG,3,BLK,350.0,STOLEN,22861,"{'type': 'Point', 'coordinates': (-79.39410173, 43.68808307)}"
-22877,11197,GO-20169003810,THEFT UNDER - BICYCLE,2016-04-23T00:00:00,2016,April,Saturday,23,114,0,2016-04-25T00:00:00,2016,April,Monday,25,116,16,D53,Toronto,97,Yonge-St.Clair (97),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,TEMPO,TO,24,DBL,600.0,STOLEN,22862,"{'type': 'Point', 'coordinates': (-79.39641894, 43.69109398)}"
-22878,11578,GO-20169006020,THEFT UNDER - BICYCLE,2016-06-15T00:00:00,2016,June,Wednesday,15,167,7,2016-06-19T00:00:00,2016,June,Sunday,19,171,15,D53,Toronto,97,Yonge-St.Clair (97),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,STORM,MT,24,GRY,659.0,STOLEN,22863,"{'type': 'Point', 'coordinates': (-79.39329174, 43.68623255)}"
-22879,11599,GO-20169005957,THEFT UNDER - BICYCLE,2016-06-17T00:00:00,2016,June,Friday,17,169,13,2016-06-17T00:00:00,2016,June,Friday,17,169,16,D53,Toronto,97,Yonge-St.Clair (97),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KO,PADDY WAGON,RG,1,BLK,800.0,STOLEN,22864,"{'type': 'Point', 'coordinates': (-79.40108597, 43.68571624)}"
-22880,11604,GO-20169006152,THEFT UNDER - BICYCLE,2016-06-17T00:00:00,2016,June,Friday,17,169,18,2016-06-21T00:00:00,2016,June,Tuesday,21,173,18,D53,Toronto,97,Yonge-St.Clair (97),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KO,CINDER CONE,MT,30,BLK,1800.0,STOLEN,22865,"{'type': 'Point', 'coordinates': (-79.39982836, 43.68693619)}"
-22881,12670,GO-20169012490,THEFT UNDER - BICYCLE,2016-09-26T00:00:00,2016,September,Monday,26,270,10,2016-10-24T00:00:00,2016,October,Monday,24,298,10,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,21,GRY,1400.0,STOLEN,22866,"{'type': 'Point', 'coordinates': (-79.40264929, 43.69640533)}"
-22882,12891,GO-20189031279,THEFT UNDER - BICYCLE,2018-09-19T00:00:00,2018,September,Wednesday,19,262,13,2018-09-20T00:00:00,2018,September,Thursday,20,263,14,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,OT,VITA,OT,24,BLK,700.0,STOLEN,22867,"{'type': 'Point', 'coordinates': (-79.3993437, 43.69470515)}"
-22883,12898,GO-20189033570,THEFT UNDER - BICYCLE,2018-10-10T00:00:00,2018,October,Wednesday,10,283,5,2018-10-10T00:00:00,2018,October,Wednesday,10,283,19,D53,Toronto,97,Yonge-St.Clair (97),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,FLEETWING,RC,12,WHI,0.0,STOLEN,22868,"{'type': 'Point', 'coordinates': (-79.3995445, 43.69512024)}"
-22884,12936,GO-20199018413,THEFT UNDER,2019-06-07T00:00:00,2019,June,Friday,7,158,21,2019-06-13T00:00:00,2019,June,Thursday,13,164,8,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,KO,,RG,21,WHI,1300.0,STOLEN,22869,"{'type': 'Point', 'coordinates': (-79.39879285, 43.68827127)}"
-22885,12939,GO-20199018880,THEFT UNDER,2019-06-16T00:00:00,2019,June,Sunday,16,167,21,2019-06-17T00:00:00,2019,June,Monday,17,168,8,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,10,WHI,0.0,STOLEN,22870,"{'type': 'Point', 'coordinates': (-79.3966911, 43.69302845)}"
-22886,13001,GO-20199034656,THEFT UNDER - BICYCLE,2019-10-11T00:00:00,2019,October,Friday,11,284,23,2019-10-21T00:00:00,2019,October,Monday,21,294,14,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,OT,DYNAGEAR,MT,21,BLK,0.0,STOLEN,22871,"{'type': 'Point', 'coordinates': (-79.39982836, 43.68693619)}"
-22887,13006,GO-20192153842,THEFT UNDER - BICYCLE,2019-11-06T00:00:00,2019,November,Wednesday,6,310,12,2019-11-07T00:00:00,2019,November,Thursday,7,311,14,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,COSTCO,,OT,10,BLK,350.0,STOLEN,22872,"{'type': 'Point', 'coordinates': (-79.39879285, 43.68827127)}"
-22888,13030,GO-2020765756,B&E,2020-04-21T00:00:00,2020,April,Tuesday,21,112,16,2020-04-22T00:00:00,2020,April,Wednesday,22,113,11,D53,Toronto,97,Yonge-St.Clair (97),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,STUMP JUMPER,MT,10,BLKWHI,5000.0,STOLEN,22873,"{'type': 'Point', 'coordinates': (-79.39916622000001, 43.69427887)}"
-22889,14120,GO-20169013498,THEFT UNDER - BICYCLE,2016-11-11T00:00:00,2016,November,Friday,11,316,23,2016-11-16T00:00:00,2016,November,Wednesday,16,321,17,D53,Toronto,97,Yonge-St.Clair (97),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SINGLE SPEED 57,RG,1,BLK,1018.0,STOLEN,22874,"{'type': 'Point', 'coordinates': (-79.39982836, 43.68693619)}"
-22890,14213,GO-20172041767,B&E,2017-11-07T00:00:00,2017,November,Tuesday,7,311,9,2017-11-11T00:00:00,2017,November,Saturday,11,315,11,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,GIANT,,MT,64,BLU,2000.0,STOLEN,22875,"{'type': 'Point', 'coordinates': (-79.3966911, 43.69302845)}"
-22891,14218,GO-20173068386,PROPERTY - FOUND,2017-11-24T00:00:00,2017,November,Friday,24,328,19,2017-11-25T00:00:00,2017,November,Saturday,25,329,14,D53,Toronto,97,Yonge-St.Clair (97),Bar / Restaurant,Commercial,TREK,3500,MT,21,BLKGRN,,UNKNOWN,22876,"{'type': 'Point', 'coordinates': (-79.39485115, 43.69000105)}"
-22892,15857,GO-20141920786,THEFT UNDER,2014-04-19T00:00:00,2014,April,Saturday,19,109,13,2014-04-19T00:00:00,2014,April,Saturday,19,109,15,D53,Toronto,97,Yonge-St.Clair (97),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,MEN'S HYBRID,OT,18,BLK,700.0,STOLEN,22877,"{'type': 'Point', 'coordinates': (-79.39489616, 43.69019912)}"
-22893,15933,GO-20159002504,THEFT UNDER,2015-05-06T00:00:00,2015,May,Wednesday,6,126,14,2015-05-06T00:00:00,2015,May,Wednesday,6,126,17,D53,Toronto,97,Yonge-St.Clair (97),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RC,1,WHI,3000.0,STOLEN,22878,"{'type': 'Point', 'coordinates': (-79.39366497, 43.68713303)}"
-22894,15951,GO-20159003886,THEFT UNDER,2015-06-23T00:00:00,2015,June,Tuesday,23,174,18,2015-06-23T00:00:00,2015,June,Tuesday,23,174,21,D53,Toronto,97,Yonge-St.Clair (97),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SU,,RG,20,ONG,150.0,STOLEN,22879,"{'type': 'Point', 'coordinates': (-79.39705798, 43.69378853)}"
-22895,15954,GO-20159004349,THEFT UNDER,2015-07-09T00:00:00,2015,July,Thursday,9,190,14,2015-07-09T00:00:00,2015,July,Thursday,9,190,15,D53,Toronto,97,Yonge-St.Clair (97),Bar / Restaurant,Commercial,TR,,MT,24,,500.0,STOLEN,22880,"{'type': 'Point', 'coordinates': (-79.39366497, 43.68713303)}"
-22896,15989,GO-20151781449,PROPERTY - FOUND,2015-10-16T00:00:00,2015,October,Friday,16,289,9,2015-10-16T00:00:00,2015,October,Friday,16,289,10,D53,Toronto,97,Yonge-St.Clair (97),"Open Areas (Lakes, Parks, Rivers)",Outside,NO,SCRAMBLER,MT,18,,,UNKNOWN,22881,"{'type': 'Point', 'coordinates': (-79.39831158, 43.67903889)}"
-22897,16075,GO-20201726105,B&E,2020-09-12T00:00:00,2020,September,Saturday,12,256,4,2020-09-12T00:00:00,2020,September,Saturday,12,256,7,D53,Toronto,97,Yonge-St.Clair (97),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,UNKOWN,OT,1,BLK,1500.0,STOLEN,22882,"{'type': 'Point', 'coordinates': (-79.39852304, 43.67955401)}"
-22898,16110,GO-20209031917,THEFT UNDER,2020-12-13T00:00:00,2020,December,Sunday,13,348,13,2020-12-13T00:00:00,2020,December,Sunday,13,348,13,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,CA,CANNONDALE,MT,14,TRQ,926.0,STOLEN,22883,"{'type': 'Point', 'coordinates': (-79.39641894, 43.69109398)}"
-22899,18766,GO-20201970427,B&E,2020-10-16T00:00:00,2020,October,Friday,16,290,10,2020-10-17T00:00:00,2020,October,Saturday,17,291,11,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,CANNONDALE,,MT,0,SIL,1200.0,STOLEN,22884,"{'type': 'Point', 'coordinates': (-79.39793541, 43.68731535)}"
-22900,18788,GO-20209030794,THEFT UNDER,2020-11-27T00:00:00,2020,November,Friday,27,332,11,2020-11-28T00:00:00,2020,November,Saturday,28,333,12,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,CA,,RC,12,WHI,2000.0,STOLEN,22885,"{'type': 'Point', 'coordinates': (-79.39199263, 43.68310115)}"
-22901,18875,GO-20143443015,THEFT UNDER,2014-12-07T00:00:00,2014,December,Sunday,7,341,13,2014-12-07T00:00:00,2014,December,Sunday,7,341,18,D53,Toronto,97,Yonge-St.Clair (97),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,EL,1,SIL,2000.0,STOLEN,22886,"{'type': 'Point', 'coordinates': (-79.39988329, 43.69597399)}"
-22902,18890,GO-20159003177,THEFT UNDER,2015-05-21T00:00:00,2015,May,Thursday,21,141,23,2015-05-28T00:00:00,2015,May,Thursday,28,148,20,D53,Toronto,97,Yonge-St.Clair (97),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KO,CINDER CONE,MT,24,BLK,1200.0,STOLEN,22887,"{'type': 'Point', 'coordinates': (-79.39988329, 43.69597399)}"
-22903,18915,GO-20159004896,THEFT UNDER,2015-07-16T00:00:00,2015,July,Thursday,16,197,9,2015-07-23T00:00:00,2015,July,Thursday,23,204,12,D53,Toronto,97,Yonge-St.Clair (97),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RM,CARDIAC,MT,1,PLE,0.0,STOLEN,22888,"{'type': 'Point', 'coordinates': (-79.40229798, 43.6887215)}"
-22904,18945,GO-20159008048,THEFT UNDER,2015-09-26T00:00:00,2015,September,Saturday,26,269,1,2015-10-02T00:00:00,2015,October,Friday,2,275,15,D53,Toronto,97,Yonge-St.Clair (97),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CC,,TO,18,BRN,0.0,STOLEN,22889,"{'type': 'Point', 'coordinates': (-79.39793541, 43.68731535)}"
-22905,18946,GO-20159008048,THEFT UNDER,2015-09-26T00:00:00,2015,September,Saturday,26,269,1,2015-10-02T00:00:00,2015,October,Friday,2,275,15,D53,Toronto,97,Yonge-St.Clair (97),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RA,,MT,18,YEL,0.0,STOLEN,22890,"{'type': 'Point', 'coordinates': (-79.39793541, 43.68731535)}"
-22906,18950,GO-20159009153,THEFT UNDER,2015-10-28T00:00:00,2015,October,Wednesday,28,301,8,2015-10-29T00:00:00,2015,October,Thursday,29,302,21,D53,Toronto,97,Yonge-St.Clair (97),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,7.4 FX WSD 17 N,OT,9,DBL,942.0,STOLEN,22891,"{'type': 'Point', 'coordinates': (-79.40305417, 43.69534988)}"
-22907,18957,GO-20159010951,THEFT UNDER,2015-12-14T00:00:00,2015,December,Monday,14,348,10,2015-12-15T00:00:00,2015,December,Tuesday,15,349,14,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,PE,,RC,6,WHI,1500.0,STOLEN,22892,"{'type': 'Point', 'coordinates': (-79.3972217, 43.69465737)}"
-22908,18990,GO-20169005893,THEFT UNDER - BICYCLE,2016-05-28T00:00:00,2016,May,Saturday,28,149,19,2016-06-16T00:00:00,2016,June,Thursday,16,168,20,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,TR,7200 FX (I THIN,TO,27,GRY,360.0,STOLEN,22893,"{'type': 'Point', 'coordinates': (-79.3993437, 43.69470515)}"
-22909,19053,GO-20161852884,THEFT OVER - BICYCLE,2016-10-13T00:00:00,2016,October,Thursday,13,287,20,2016-10-18T00:00:00,2016,October,Tuesday,18,292,11,D53,Toronto,97,Yonge-St.Clair (97),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,STUMPJUMPER,MT,21,,12000.0,STOLEN,22894,"{'type': 'Point', 'coordinates': (-79.39744799, 43.6897005)}"
-22910,19058,GO-20169013412,THEFT UNDER - BICYCLE,2016-11-14T00:00:00,2016,November,Monday,14,319,17,2016-11-14T00:00:00,2016,November,Monday,14,319,19,D53,Toronto,97,Yonge-St.Clair (97),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,REDUX 2,MT,9,BLK,699.0,STOLEN,22895,"{'type': 'Point', 'coordinates': (-79.39452744, 43.68913212)}"
-22911,19074,GO-2017734003,THEFT UNDER - BICYCLE,2017-04-21T00:00:00,2017,April,Friday,21,111,0,2017-04-26T00:00:00,2017,April,Wednesday,26,116,17,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,SCHWINS,MOUNTAIN,MT,7,YEL,500.0,STOLEN,22896,"{'type': 'Point', 'coordinates': (-79.39793541, 43.68731535)}"
-22912,19134,GO-20173052888,THEFT UNDER - BICYCLE,2017-11-21T00:00:00,2017,November,Tuesday,21,325,19,2017-11-23T00:00:00,2017,November,Thursday,23,327,9,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,TREK,EXTRA CYCLE,OT,21,BLK,2500.0,STOLEN,22897,"{'type': 'Point', 'coordinates': (-79.39705798, 43.69378853)}"
-22913,19149,GO-20189010160,THEFT UNDER - BICYCLE,2018-04-01T00:00:00,2018,April,Sunday,1,91,9,2018-04-01T00:00:00,2018,April,Sunday,1,91,21,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,CC,,RG,18,WHI,250.0,STOLEN,22898,"{'type': 'Point', 'coordinates': (-79.3972217, 43.69465737)}"
-22914,19207,GO-20189034337,THEFT UNDER - BICYCLE,2018-10-13T00:00:00,2018,October,Saturday,13,286,21,2018-10-16T00:00:00,2018,October,Tuesday,16,289,19,D53,Toronto,97,Yonge-St.Clair (97),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,OT,12,TRQ,250.0,STOLEN,22899,"{'type': 'Point', 'coordinates': (-79.40080072, 43.68502738)}"
-22915,19271,GO-20199028144,THEFT UNDER,2019-08-29T00:00:00,2019,August,Thursday,29,241,11,2019-08-29T00:00:00,2019,August,Thursday,29,241,14,D53,Toronto,97,Yonge-St.Clair (97),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RA,PRO TOUR,RG,21,LGR,500.0,STOLEN,22900,"{'type': 'Point', 'coordinates': (-79.39234422, 43.68394081)}"
-22916,19277,GO-20199028707,THEFT UNDER,2019-09-03T00:00:00,2019,September,Tuesday,3,246,11,2019-09-04T00:00:00,2019,September,Wednesday,4,247,11,D53,Toronto,97,Yonge-St.Clair (97),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CHINOOK,RC,1,BLU,600.0,STOLEN,22901,"{'type': 'Point', 'coordinates': (-79.39151478, 43.681973230000004)}"
-22917,19297,GO-20199031428,THEFT UNDER - BICYCLE,2019-09-25T00:00:00,2019,September,Wednesday,25,268,8,2019-09-25T00:00:00,2019,September,Wednesday,25,268,9,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,TR,3900,MT,5,WHI,500.0,STOLEN,22902,"{'type': 'Point', 'coordinates': (-79.39799651, 43.69273138)}"
-22918,19298,GO-20199031428,THEFT UNDER - BICYCLE,2019-09-25T00:00:00,2019,September,Wednesday,25,268,8,2019-09-25T00:00:00,2019,September,Wednesday,25,268,9,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,NO,STORM 3,MT,5,BLK,1000.0,STOLEN,22903,"{'type': 'Point', 'coordinates': (-79.39799651, 43.69273138)}"
-22919,19771,GO-20161032024,THEFT OF EBIKE OVER $5000,2016-06-13T00:00:00,2016,June,Monday,13,165,22,2016-06-13T00:00:00,2016,June,Monday,13,165,23,D53,Toronto,97,Yonge-St.Clair (97),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,,OT,0,BLK,1700.0,STOLEN,22904,"{'type': 'Point', 'coordinates': (-79.39314545, 43.68588136)}"
-22920,19772,GO-20169005957,THEFT UNDER - BICYCLE,2016-06-17T00:00:00,2016,June,Friday,17,169,13,2016-06-17T00:00:00,2016,June,Friday,17,169,16,D53,Toronto,97,Yonge-St.Clair (97),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KO,PADDY WAGON,RG,1,BLK,800.0,STOLEN,22905,"{'type': 'Point', 'coordinates': (-79.40108597, 43.68571624)}"
-22921,22304,GO-20181235235,B&E,2018-07-07T00:00:00,2018,July,Saturday,7,188,0,2018-07-07T00:00:00,2018,July,Saturday,7,188,15,D53,Toronto,97,Yonge-St.Clair (97),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,CROSSTRAIL,MT,24,BLK,689.0,STOLEN,22906,"{'type': 'Point', 'coordinates': (-79.39879285, 43.68827127)}"
-22922,5299,GO-20199029627,THEFT UNDER - BICYCLE,2019-09-10T00:00:00,2019,September,Tuesday,10,253,17,2019-09-11T00:00:00,2019,September,Wednesday,11,254,17,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,GI,16 ALIGHT 3,RG,14,BLU,507.0,STOLEN,22907,"{'type': 'Point', 'coordinates': (-79.37210175, 43.67442353)}"
-22923,5301,GO-20199029651,THEFT UNDER - BICYCLE,2019-09-08T00:00:00,2019,September,Sunday,8,251,13,2019-09-11T00:00:00,2019,September,Wednesday,11,254,18,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,UNISEX,RG,10,BLK,0.0,STOLEN,22908,"{'type': 'Point', 'coordinates': (-79.38711576, 43.671122340000004)}"
-22924,5327,GO-20199030078,THEFT UNDER - BICYCLE,2019-09-11T00:00:00,2019,September,Wednesday,11,254,2,2019-09-15T00:00:00,2019,September,Sunday,15,258,11,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,RG,33,BLK,1550.0,STOLEN,22909,"{'type': 'Point', 'coordinates': (-79.39082826, 43.68212347)}"
-22925,5519,GO-20199033749,THEFT UNDER - BICYCLE,2019-10-12T00:00:00,2019,October,Saturday,12,285,15,2019-10-13T00:00:00,2019,October,Sunday,13,286,10,D53,Toronto,98,Rosedale-Moore Park (98),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,MT,21,GRN,750.0,STOLEN,22910,"{'type': 'Point', 'coordinates': (-79.38813201, 43.68114294)}"
-22926,5607,GO-20199035579,THEFT UNDER - BICYCLE,2019-10-26T00:00:00,2019,October,Saturday,26,299,23,2019-10-28T00:00:00,2019,October,Monday,28,301,15,D53,Toronto,98,Rosedale-Moore Park (98),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RM,,RG,27,DGR,1100.0,STOLEN,22911,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22927,5612,GO-20192081595,B&E,2019-09-29T00:00:00,2019,September,Sunday,29,272,0,2019-10-28T00:00:00,2019,October,Monday,28,301,12,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,GIANT,UNKNOWN,MT,0,BLKGRY,1800.0,STOLEN,22912,"{'type': 'Point', 'coordinates': (-79.37348352, 43.67526669000001)}"
-22928,5614,GO-20199035725,THEFT UNDER - BICYCLE,2019-10-29T00:00:00,2019,October,Tuesday,29,302,8,2019-10-29T00:00:00,2019,October,Tuesday,29,302,15,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,QUICK,RG,18,PLE,600.0,STOLEN,22913,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22929,5703,GO-20199037972,THEFT UNDER - BICYCLE,2019-11-18T00:00:00,2019,November,Monday,18,322,18,2019-11-18T00:00:00,2019,November,Monday,18,322,18,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,GZR700,RG,21,ONG,200.0,STOLEN,22914,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22930,5712,GO-20199038141,THEFT UNDER - BICYCLE,2019-11-19T00:00:00,2019,November,Tuesday,19,323,5,2019-11-20T00:00:00,2019,November,Wednesday,20,324,5,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,3,DBL,250.0,STOLEN,22915,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22931,5736,GO-20199039243,THEFT UNDER - BICYCLE,2019-11-20T00:00:00,2019,November,Wednesday,20,324,9,2019-11-29T00:00:00,2019,November,Friday,29,333,15,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,GI,XTC COMPOSITE,MT,10,RED,3000.0,STOLEN,22916,"{'type': 'Point', 'coordinates': (-79.392814, 43.68502592)}"
-22932,5755,GO-20199040572,THEFT UNDER,2019-12-11T00:00:00,2019,December,Wednesday,11,345,7,2019-12-11T00:00:00,2019,December,Wednesday,11,345,18,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,REVEL 2,MT,21,GRN,390.0,STOLEN,22917,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22933,5890,GO-20209005231,THEFT UNDER,2020-02-05T00:00:00,2020,February,Wednesday,5,36,17,2020-02-12T00:00:00,2020,February,Wednesday,12,43,18,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,OT,BOLT,RG,21,BLK,600.0,STOLEN,22918,"{'type': 'Point', 'coordinates': (-79.38015012, 43.67454027)}"
-22934,5907,GO-20209006094,THEFT UNDER - BICYCLE,2020-02-10T00:00:00,2020,February,Monday,10,41,0,2020-02-19T00:00:00,2020,February,Wednesday,19,50,22,D53,Toronto,98,Rosedale-Moore Park (98),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,MIXED TAPE COMM,OT,7,GRY,1100.0,STOLEN,22919,"{'type': 'Point', 'coordinates': (-79.3841564, 43.67465241)}"
-22935,5943,GO-20209007809,THEFT UNDER - BICYCLE,2020-03-03T00:00:00,2020,March,Tuesday,3,63,8,2020-03-05T00:00:00,2020,March,Thursday,5,65,9,D53,Toronto,98,Rosedale-Moore Park (98),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,GI,ROAM,MT,15,GRN,800.0,STOLEN,22920,"{'type': 'Point', 'coordinates': (-79.38353943, 43.67203689)}"
-22936,6039,GO-2020684523,THEFT UNDER - BICYCLE,2020-04-07T00:00:00,2020,April,Tuesday,7,98,16,2020-04-08T00:00:00,2020,April,Wednesday,8,99,15,D53,Toronto,98,Rosedale-Moore Park (98),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,PEUGEOT,UNKNOWN,RG,12,BLK,500.0,STOLEN,22921,"{'type': 'Point', 'coordinates': (-79.37942813, 43.6718256)}"
-22937,6041,GO-2020686254,THEFT UNDER - BICYCLE,2020-04-07T00:00:00,2020,April,Tuesday,7,98,17,2020-04-08T00:00:00,2020,April,Wednesday,8,99,19,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,,OT,3,BLU,200.0,STOLEN,22922,"{'type': 'Point', 'coordinates': (-79.39145198, 43.68864767)}"
-22938,6042,GO-2020686254,THEFT UNDER - BICYCLE,2020-04-07T00:00:00,2020,April,Tuesday,7,98,17,2020-04-08T00:00:00,2020,April,Wednesday,8,99,19,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,,OT,3,,200.0,STOLEN,22923,"{'type': 'Point', 'coordinates': (-79.39145198, 43.68864767)}"
-22939,6104,GO-20209011965,THEFT UNDER,2020-04-26T00:00:00,2020,April,Sunday,26,117,20,2020-04-26T00:00:00,2020,April,Sunday,26,117,22,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,INDIE 3M,TO,24,YEL,650.0,STOLEN,22924,"{'type': 'Point', 'coordinates': (-79.39456317, 43.68921711)}"
-22940,6142,GO-2020845244,B&E,2020-05-05T00:00:00,2020,May,Tuesday,5,126,10,2020-05-05T00:00:00,2020,May,Tuesday,5,126,20,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,DOMANE,RC,21,BLKWHI,9000.0,STOLEN,22925,"{'type': 'Point', 'coordinates': (-79.39342098, 43.691619970000005)}"
-22941,6301,GO-20201038346,POSSESSION HOUSE BREAK INSTRUM,2020-06-05T00:00:00,2020,June,Friday,5,157,22,2020-06-05T00:00:00,2020,June,Friday,5,157,22,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SOLE,LIVE YOUNG - EV,RC,0,SIL,,STOLEN,22926,"{'type': 'Point', 'coordinates': (-79.38476649, 43.67217315)}"
-22942,6302,GO-20201038346,POSSESSION HOUSE BREAK INSTRUM,2020-06-05T00:00:00,2020,June,Friday,5,157,22,2020-06-05T00:00:00,2020,June,Friday,5,157,22,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,JAMIS,DURANGO 2,MT,16,GRY,500.0,STOLEN,22927,"{'type': 'Point', 'coordinates': (-79.38476649, 43.67217315)}"
-22943,6330,GO-20209014833,THEFT UNDER - BICYCLE,2020-06-07T00:00:00,2020,June,Sunday,7,159,15,2020-06-08T00:00:00,2020,June,Monday,8,160,12,D53,Toronto,98,Rosedale-Moore Park (98),Ttc Subway Station,Transit,CA,,RG,12,SIL,600.0,STOLEN,22928,"{'type': 'Point', 'coordinates': (-79.3926068, 43.68840573)}"
-22944,6478,GO-20209016253,THEFT UNDER - BICYCLE,2020-06-25T00:00:00,2020,June,Thursday,25,177,22,2020-06-26T00:00:00,2020,June,Friday,26,178,15,D53,Toronto,98,Rosedale-Moore Park (98),"Open Areas (Lakes, Parks, Rivers)",Outside,GI,ALIGHT,RG,21,PLE,500.0,STOLEN,22929,"{'type': 'Point', 'coordinates': (-79.38526884, 43.67536914)}"
-22945,6498,GO-20209016512,THEFT UNDER - BICYCLE,2020-06-29T00:00:00,2020,June,Monday,29,181,19,2020-06-29T00:00:00,2020,June,Monday,29,181,21,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,,RG,25,GRY,150.0,STOLEN,22930,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22946,6547,GO-20209016999,THEFT UNDER - BICYCLE,2020-07-06T00:00:00,2020,July,Monday,6,188,13,2020-07-07T00:00:00,2020,July,Tuesday,7,189,6,D53,Toronto,98,Rosedale-Moore Park (98),"Open Areas (Lakes, Parks, Rivers)",Outside,CA,TANGO,MT,24,GRY,1000.0,STOLEN,22931,"{'type': 'Point', 'coordinates': (-79.38894672, 43.67558881)}"
-22947,6590,GO-20201284901,THEFT UNDER - BICYCLE,2020-06-30T00:00:00,2020,June,Tuesday,30,182,17,2020-07-12T00:00:00,2020,July,Sunday,12,194,12,D53,Toronto,98,Rosedale-Moore Park (98),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MARIN,,RG,21,SIL,500.0,STOLEN,22932,"{'type': 'Point', 'coordinates': (-79.39329174, 43.68623255)}"
-22948,6591,GO-20201284901,THEFT UNDER - BICYCLE,2020-06-30T00:00:00,2020,June,Tuesday,30,182,17,2020-07-12T00:00:00,2020,July,Sunday,12,194,12,D53,Toronto,98,Rosedale-Moore Park (98),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,,RG,9,SIL,600.0,STOLEN,22933,"{'type': 'Point', 'coordinates': (-79.39329174, 43.68623255)}"
-22949,6704,GO-20209018245,THEFT UNDER - BICYCLE,2020-07-22T00:00:00,2020,July,Wednesday,22,204,15,2020-07-22T00:00:00,2020,July,Wednesday,22,204,16,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RM,,MT,7,BLK,1800.0,STOLEN,22934,"{'type': 'Point', 'coordinates': (-79.3926068, 43.68840573)}"
-22950,6773,GO-20209018745,THEFT UNDER,2020-07-27T00:00:00,2020,July,Monday,27,209,13,2020-07-28T00:00:00,2020,July,Tuesday,28,210,0,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,,,RG,18,BLU,300.0,STOLEN,22935,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22951,6843,GO-20209019172,THEFT UNDER - BICYCLE,2020-08-01T00:00:00,2020,August,Saturday,1,214,16,2020-08-01T00:00:00,2020,August,Saturday,1,214,21,D53,Toronto,98,Rosedale-Moore Park (98),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,MT,21,BLK,700.0,STOLEN,22936,"{'type': 'Point', 'coordinates': (-79.3926068, 43.68840573)}"
-22952,6889,GO-20209019583,THEFT UNDER - BICYCLE,2020-08-05T00:00:00,2020,August,Wednesday,5,218,10,2020-08-06T00:00:00,2020,August,Thursday,6,219,20,D53,Toronto,98,Rosedale-Moore Park (98),Ttc Subway Station,Transit,GI,ROAM 2,RG,21,GRY,950.0,STOLEN,22937,"{'type': 'Point', 'coordinates': (-79.38949143, 43.67696204)}"
-22953,6937,GO-20209019932,THEFT UNDER - BICYCLE,2020-07-15T00:00:00,2020,July,Wednesday,15,197,18,2020-08-11T00:00:00,2020,August,Tuesday,11,224,16,D53,Toronto,98,Rosedale-Moore Park (98),"Open Areas (Lakes, Parks, Rivers)",Outside,NO,XFR 3 FORMA,MT,24,BLK,565.0,STOLEN,22938,"{'type': 'Point', 'coordinates': (-79.38813201, 43.68114294)}"
-22954,7283,GO-20209023711,THEFT UNDER - BICYCLE,2020-09-11T00:00:00,2020,September,Friday,11,255,23,2020-09-18T00:00:00,2020,September,Friday,18,262,10,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,ATX 3,MT,21,BLU,530.0,STOLEN,22939,"{'type': 'Point', 'coordinates': (-79.36877688, 43.6753514)}"
-22955,7431,GO-20209025907,THEFT UNDER - BICYCLE,2020-10-03T00:00:00,2020,October,Saturday,3,277,12,2020-10-09T00:00:00,2020,October,Friday,9,283,12,D53,Toronto,98,Rosedale-Moore Park (98),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,7.3 FX,OT,24,BLK,720.0,STOLEN,22940,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22956,7467,GO-20201942381,THEFT UNDER - BICYCLE,2020-10-13T00:00:00,2020,October,Tuesday,13,287,8,2020-10-13T00:00:00,2020,October,Tuesday,13,287,9,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,NO,VRF 3,RG,21,GRY,539.0,STOLEN,22941,"{'type': 'Point', 'coordinates': (-79.39145198, 43.68864767)}"
-22957,7475,GO-20209026549,THEFT UNDER - BICYCLE,2020-09-15T00:00:00,2020,September,Tuesday,15,259,10,2020-10-15T00:00:00,2020,October,Thursday,15,289,13,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,UK,TRACK CITY,MT,3,BLK,1000.0,STOLEN,22942,"{'type': 'Point', 'coordinates': (-79.392814, 43.68502592)}"
-22958,7614,GO-20209029202,THEFT UNDER,2020-11-10T00:00:00,2020,November,Tuesday,10,315,5,2020-11-10T00:00:00,2020,November,Tuesday,10,315,22,D53,Toronto,98,Rosedale-Moore Park (98),Ttc Subway Station,Transit,NO,,RG,8,LBL,0.0,STOLEN,22943,"{'type': 'Point', 'coordinates': (-79.38949143, 43.67696204)}"
-22959,7628,GO-20209029479,THEFT UNDER,2020-11-13T00:00:00,2020,November,Friday,13,318,7,2020-11-13T00:00:00,2020,November,Friday,13,318,12,D53,Toronto,98,Rosedale-Moore Park (98),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,EM2,EL,32,BLU,4000.0,STOLEN,22944,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22960,7837,GO-20141894433,THEFT UNDER,2014-04-15T00:00:00,2014,April,Tuesday,15,105,9,2014-04-15T00:00:00,2014,April,Tuesday,15,105,9,D53,Toronto,98,Rosedale-Moore Park (98),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,UNKNOWN,MT,21,BLUSIL,500.0,STOLEN,22945,"{'type': 'Point', 'coordinates': (-79.37681431, 43.67235839)}"
-22961,7859,GO-20141948021,THEFT UNDER,2014-04-23T00:00:00,2014,April,Wednesday,23,113,21,2014-04-24T00:00:00,2014,April,Thursday,24,114,8,D53,Toronto,98,Rosedale-Moore Park (98),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,MT,1,GRY,2000.0,STOLEN,22946,"{'type': 'Point', 'coordinates': (-79.38984652, 43.68899269)}"
-22962,7974,GO-20149003560,THEFT UNDER,2014-05-24T00:00:00,2014,May,Saturday,24,144,13,2014-05-24T00:00:00,2014,May,Saturday,24,144,15,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,,RG,7,BLU,250.0,STOLEN,22947,"{'type': 'Point', 'coordinates': (-79.38459861, 43.67181293)}"
-22963,8008,GO-20142176801,THEFT UNDER,2014-05-28T00:00:00,2014,May,Wednesday,28,148,18,2014-05-29T00:00:00,2014,May,Thursday,29,149,13,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NAKAMURA,CITY BIKE,OT,21,BLK,600.0,STOLEN,22948,"{'type': 'Point', 'coordinates': (-79.3890223, 43.69114321)}"
-22964,8016,GO-20149003725,THEFT UNDER,2014-05-30T00:00:00,2014,May,Friday,30,150,14,2014-05-31T00:00:00,2014,May,Saturday,31,151,18,D53,Toronto,98,Rosedale-Moore Park (98),Schools During Supervised Activity,Educational,TR,3900,MT,24,BLU,350.0,STOLEN,22949,"{'type': 'Point', 'coordinates': (-79.39513, 43.69126149)}"
-22965,8081,GO-20149003913,THEFT UNDER,2014-06-08T00:00:00,2014,June,Sunday,8,159,16,2014-06-08T00:00:00,2014,June,Sunday,8,159,18,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,7.4 FX,RG,21,GRY,900.0,STOLEN,22950,"{'type': 'Point', 'coordinates': (-79.38746342000002, 43.6719238)}"
-22966,8110,GO-20142276421,THEFT UNDER,2014-06-11T00:00:00,2014,June,Wednesday,11,162,19,2014-06-12T00:00:00,2014,June,Thursday,12,163,15,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,FUEL EX 8,MT,14,,6000.0,STOLEN,22951,"{'type': 'Point', 'coordinates': (-79.38593172, 43.69328249)}"
-22967,8154,GO-20149004139,THEFT UNDER,2014-06-07T00:00:00,2014,June,Saturday,7,158,22,2014-06-16T00:00:00,2014,June,Monday,16,167,17,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,KID'S FX BOY'S,MT,60,BLK,520.0,STOLEN,22952,"{'type': 'Point', 'coordinates': (-79.37495567, 43.69102967)}"
-22968,8155,GO-20149004139,THEFT UNDER,2014-06-07T00:00:00,2014,June,Saturday,7,158,22,2014-06-16T00:00:00,2014,June,Monday,16,167,17,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,MT,60,PNK,500.0,STOLEN,22953,"{'type': 'Point', 'coordinates': (-79.37495567, 43.69102967)}"
-22969,8166,GO-20149004155,INCIDENT,2014-06-16T00:00:00,2014,June,Monday,16,167,23,2014-06-17T00:00:00,2014,June,Tuesday,17,168,14,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,GI,V2,OT,3,RED,600.0,STOLEN,22954,"{'type': 'Point', 'coordinates': (-79.38459861, 43.67181293)}"
-22970,8199,GO-20142319437,THEFT UNDER,2014-06-18T00:00:00,2014,June,Wednesday,18,169,8,2014-06-18T00:00:00,2014,June,Wednesday,18,169,21,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,U/K,EL,5,,900.0,STOLEN,22955,"{'type': 'Point', 'coordinates': (-79.38754395, 43.67216242)}"
-22971,8220,GO-20149004352,THEFT UNDER,2014-06-22T00:00:00,2014,June,Sunday,22,173,11,2014-06-23T00:00:00,2014,June,Monday,23,174,10,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,BLAST,MT,24,BLU,500.0,STOLEN,22956,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22972,8264,GO-20142408747,THEFT UNDER,2014-06-25T00:00:00,2014,June,Wednesday,25,176,18,2014-07-01T00:00:00,2014,July,Tuesday,1,182,16,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,CYPRESS DX,RG,10,BLK,514.0,STOLEN,22957,"{'type': 'Point', 'coordinates': (-79.38746342000002, 43.6719238)}"
-22973,8273,GO-20149004528,THEFT UNDER,2014-06-26T00:00:00,2014,June,Thursday,26,177,14,2014-06-26T00:00:00,2014,June,Thursday,26,177,18,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,EL,32,BLK,2199.0,STOLEN,22958,"{'type': 'Point', 'coordinates': (-79.38746342000002, 43.6719238)}"
-22974,8379,GO-20149004851,THEFT UNDER,2014-07-09T00:00:00,2014,July,Wednesday,9,190,15,2014-07-09T00:00:00,2014,July,Wednesday,9,190,20,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EM,AVENGER,EL,32,BLK,500.0,STOLEN,22959,"{'type': 'Point', 'coordinates': (-79.38312049, 43.67104631)}"
-22975,8409,GO-20142516950,B&E,2014-07-17T00:00:00,2014,July,Thursday,17,198,16,2014-07-17T00:00:00,2014,July,Thursday,17,198,16,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CERVELO,R3,RC,10,BLKWHI,3000.0,STOLEN,22960,"{'type': 'Point', 'coordinates': (-79.37143932, 43.68699767)}"
-22976,8486,GO-20149005244,THEFT UNDER,2014-07-22T00:00:00,2014,July,Tuesday,22,203,17,2014-07-22T00:00:00,2014,July,Tuesday,22,203,21,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FJ,DECLARATION,RC,1,BLK,600.0,STOLEN,22961,"{'type': 'Point', 'coordinates': (-79.38711576, 43.671122340000004)}"
-22977,8563,GO-20149005525,THEFT UNDER,2014-07-31T00:00:00,2014,July,Thursday,31,212,8,2014-07-31T00:00:00,2014,July,Thursday,31,212,20,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,121084+2,RG,3,BLK,700.0,STOLEN,22962,"{'type': 'Point', 'coordinates': (-79.39151478, 43.681973230000004)}"
-22978,8565,GO-20149005550,THEFT UNDER,2014-07-10T00:00:00,2014,July,Thursday,10,191,12,2014-08-01T00:00:00,2014,August,Friday,1,213,14,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,7,BLK,,STOLEN,22963,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22979,8682,GO-20142737720,THEFT UNDER,2014-08-15T00:00:00,2014,August,Friday,15,227,17,2014-08-20T00:00:00,2014,August,Wednesday,20,232,8,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,JAMIS,XCT,MT,27,LGR,1600.0,STOLEN,22964,"{'type': 'Point', 'coordinates': (-79.38711576, 43.671122340000004)}"
-22980,8691,GO-20142737814,THEFT UNDER,2014-08-14T00:00:00,2014,August,Thursday,14,226,23,2014-08-20T00:00:00,2014,August,Wednesday,20,232,8,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,"CADD9, R5000",MT,27,BLU,1800.0,STOLEN,22965,"{'type': 'Point', 'coordinates': (-79.3890223, 43.69114321)}"
-22981,8692,GO-20142737814,THEFT UNDER,2014-08-14T00:00:00,2014,August,Thursday,14,226,23,2014-08-20T00:00:00,2014,August,Wednesday,20,232,8,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,R6 CAAD9,MT,18,RED,1800.0,STOLEN,22966,"{'type': 'Point', 'coordinates': (-79.3890223, 43.69114321)}"
-22982,8844,GO-20149006699,THEFT UNDER,2014-09-08T00:00:00,2014,September,Monday,8,251,9,2014-09-08T00:00:00,2014,September,Monday,8,251,19,D53,Toronto,98,Rosedale-Moore Park (98),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,SHADOWLANDS,OT,27,LGR,990.0,STOLEN,22967,"{'type': 'Point', 'coordinates': (-79.38353943, 43.67203689)}"
-22983,21517,GO-2018134847,B&E W'INTENT,2018-01-19T00:00:00,2018,January,Friday,19,19,5,2018-01-22T00:00:00,2018,January,Monday,22,22,11,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,,OT,18,WHI,,STOLEN,23039,"{'type': 'Point', 'coordinates': (-79.42891823, 43.70386434)}"
-22984,8909,GO-20149006974,THEFT UNDER,2014-09-12T00:00:00,2014,September,Friday,12,255,20,2014-09-17T00:00:00,2014,September,Wednesday,17,260,11,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,MONTREAL,OT,7,BLK,700.0,STOLEN,22968,"{'type': 'Point', 'coordinates': (-79.3926068, 43.68840573)}"
-22985,8960,GO-20142973927,THEFT UNDER,2014-09-24T00:00:00,2014,September,Wednesday,24,267,9,2014-09-24T00:00:00,2014,September,Wednesday,24,267,13,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,VILLAGER,OT,5,GRN,150.0,STOLEN,22969,"{'type': 'Point', 'coordinates': (-79.38883215, 43.67530065)}"
-22986,9047,GO-20149007556,THEFT UNDER,2014-10-06T00:00:00,2014,October,Monday,6,279,10,2014-10-13T00:00:00,2014,October,Monday,13,286,11,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,MT,21,BLU,259.0,STOLEN,22970,"{'type': 'Point', 'coordinates': (-79.38459861, 43.67181293)}"
-22987,9065,GO-20143112525,THEFT UNDER,2014-10-05T00:00:00,2014,October,Sunday,5,278,22,2014-10-16T00:00:00,2014,October,Thursday,16,289,0,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,CRAVE,MT,18,RED,1000.0,STOLEN,22971,"{'type': 'Point', 'coordinates': (-79.38448757, 43.68080517)}"
-22988,9199,GO-20143353356,THEFT UNDER,2014-11-22T00:00:00,2014,November,Saturday,22,326,17,2014-11-23T00:00:00,2014,November,Sunday,23,327,15,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,DOLCE,RC,18,WHIPLE,1000.0,STOLEN,22972,"{'type': 'Point', 'coordinates': (-79.38306804, 43.679296)}"
-22989,9201,GO-20143373726,THEFT UNDER,2014-11-23T00:00:00,2014,November,Sunday,23,327,22,2014-11-26T00:00:00,2014,November,Wednesday,26,330,14,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,RIDEAU,MT,24,GRY,600.0,STOLEN,22973,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22990,9267,GO-2015107201,THEFT OVER,2014-12-31T00:00:00,2014,December,Wednesday,31,365,9,2015-01-19T00:00:00,2015,January,Monday,19,19,9,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,NORCO,TACTIC,RC,12,RED,7000.0,STOLEN,22974,"{'type': 'Point', 'coordinates': (-79.38459861, 43.67181293)}"
-22991,22178,GO-20169008511,THEFT UNDER - BICYCLE,2016-08-03T00:00:00,2016,August,Wednesday,3,216,19,2016-08-10T00:00:00,2016,August,Wednesday,10,223,19,D53,Toronto,102,Forest Hill North (102),"Apartment (Rooming House, Condo)",Apartment,NO,,MT,21,BLK,400.0,STOLEN,23048,"{'type': 'Point', 'coordinates': (-79.42610953, 43.70427463)}"
-22992,9408,GO-2015624599,THEFT UNDER,2015-04-15T00:00:00,2015,April,Wednesday,15,105,13,2015-04-15T00:00:00,2015,April,Wednesday,15,105,17,D53,Toronto,98,Rosedale-Moore Park (98),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,ROCK HOPPER,MT,11,BLK,1500.0,STOLEN,22975,"{'type': 'Point', 'coordinates': (-79.39145198, 43.68864767)}"
-22993,9447,GO-20159002101,THEFT UNDER,2015-04-19T00:00:00,2015,April,Sunday,19,109,16,2015-04-20T00:00:00,2015,April,Monday,20,110,17,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,TR,MADONE 3.1,RC,10,BLK,0.0,STOLEN,22976,"{'type': 'Point', 'coordinates': (-79.39314545, 43.68588136)}"
-22994,9501,GO-2015721481,THEFT UNDER,2015-04-30T00:00:00,2015,April,Thursday,30,120,16,2015-05-01T00:00:00,2015,May,Friday,1,121,12,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,,MT,21,BLKGRY,800.0,STOLEN,22977,"{'type': 'Point', 'coordinates': (-79.38986109, 43.67785353)}"
-22995,9560,GO-2015774191,THEFT UNDER,2015-05-09T00:00:00,2015,May,Saturday,9,129,11,2015-05-09T00:00:00,2015,May,Saturday,9,129,16,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,INDY,OT,24,SIL,695.0,STOLEN,22978,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-22996,9568,GO-2015790613,THEFT UNDER,2015-04-28T00:00:00,2015,April,Tuesday,28,118,21,2015-05-12T00:00:00,2015,May,Tuesday,12,132,10,D53,Toronto,98,Rosedale-Moore Park (98),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,RACER,RC,21,WHI,1200.0,STOLEN,22979,"{'type': 'Point', 'coordinates': (-79.37210175, 43.67442353)}"
-22997,9580,GO-20159002727,THEFT UNDER,2015-05-14T00:00:00,2015,May,Thursday,14,134,13,2015-05-14T00:00:00,2015,May,Thursday,14,134,14,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,HARD ROCK DISC,MT,21,GRN,600.0,STOLEN,22980,"{'type': 'Point', 'coordinates': (-79.39000152000001, 43.67820922)}"
-22998,9593,GO-20159002780,INCIDENT,2015-05-14T00:00:00,2015,May,Thursday,14,134,13,2015-05-15T00:00:00,2015,May,Friday,15,135,22,D53,Toronto,98,Rosedale-Moore Park (98),"Apartment (Rooming House, Condo)",Apartment,TR,6000,MT,21,BLK,700.0,STOLEN,22981,"{'type': 'Point', 'coordinates': (-79.39314545, 43.68588136)}"
-22999,9691,GO-2015885417,THEFT UNDER,2015-05-22T00:00:00,2015,May,Friday,22,142,6,2015-05-27T00:00:00,2015,May,Wednesday,27,147,15,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,FX 7.2,MT,24,WHI,1000.0,STOLEN,22982,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-23000,9692,GO-20159003216,THEFT UNDER,2015-05-29T00:00:00,2015,May,Friday,29,149,15,2015-05-30T00:00:00,2015,May,Saturday,30,150,17,D53,Toronto,98,Rosedale-Moore Park (98),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ADAGIO,RG,24,BLK,650.0,STOLEN,22983,"{'type': 'Point', 'coordinates': (-79.38066775, 43.67832588)}"
-23001,9710,GO-20159003278,THEFT UNDER,2015-06-02T00:00:00,2015,June,Tuesday,2,153,19,2015-06-03T00:00:00,2015,June,Wednesday,3,154,13,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,MT,10,GRY,1200.0,STOLEN,22984,"{'type': 'Point', 'coordinates': (-79.37348352, 43.67526669000001)}"
-23002,9711,GO-20159003278,THEFT UNDER,2015-06-02T00:00:00,2015,June,Tuesday,2,153,19,2015-06-03T00:00:00,2015,June,Wednesday,3,154,13,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,HALFWAY,FO,10,BLK,1000.0,STOLEN,22985,"{'type': 'Point', 'coordinates': (-79.37348352, 43.67526669000001)}"
-23003,9791,GO-20159003552,THEFT UNDER,2015-06-12T00:00:00,2015,June,Friday,12,163,13,2015-06-12T00:00:00,2015,June,Friday,12,163,15,D53,Toronto,98,Rosedale-Moore Park (98),Ttc Subway Station,Transit,GT,AVALANCHE COMP,MT,27,BLK,700.0,STOLEN,22986,"{'type': 'Point', 'coordinates': (-79.39082826, 43.68212347)}"
-23004,9808,GO-20159003637,THEFT UNDER,2015-06-13T00:00:00,2015,June,Saturday,13,164,10,2015-06-15T00:00:00,2015,June,Monday,15,166,10,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GF,ZEBRANO,TO,18,,500.0,STOLEN,22987,"{'type': 'Point', 'coordinates': (-79.37719268, 43.67741756)}"
-23005,9809,GO-20159003637,THEFT UNDER,2015-06-13T00:00:00,2015,June,Saturday,13,164,10,2015-06-15T00:00:00,2015,June,Monday,15,166,10,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,,MT,12,,500.0,STOLEN,22988,"{'type': 'Point', 'coordinates': (-79.37719268, 43.67741756)}"
-23006,9822,GO-20151006475,THEFT UNDER,2015-06-15T00:00:00,2015,June,Monday,15,166,18,2015-06-15T00:00:00,2015,June,Monday,15,166,19,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CANNONDALE,BADBOY,MT,24,BLK,1000.0,STOLEN,22989,"{'type': 'Point', 'coordinates': (-79.36855253, 43.67444651000001)}"
-23007,9893,GO-20159003953,THEFT UNDER,2015-06-26T00:00:00,2015,June,Friday,26,177,1,2015-06-26T00:00:00,2015,June,Friday,26,177,9,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RM,,MT,18,SIL,1000.0,STOLEN,22990,"{'type': 'Point', 'coordinates': (-79.38127573, 43.6795642)}"
-23008,9902,GO-20159004018,THEFT UNDER,2015-06-28T00:00:00,2015,June,Sunday,28,179,14,2015-06-29T00:00:00,2015,June,Monday,29,180,11,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,HARDROCK,MT,24,BLU,700.0,STOLEN,22991,"{'type': 'Point', 'coordinates': (-79.38754395, 43.67216242)}"
-23009,9994,GO-20151183115,FTC PROBATION ORDER,2015-07-13T00:00:00,2015,July,Monday,13,194,1,2015-07-13T00:00:00,2015,July,Monday,13,194,1,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,JAMIS,6061 T-6,MT,24,BLK,500.0,RECOVERED,22992,"{'type': 'Point', 'coordinates': (-79.37381994, 43.68098743)}"
-23010,10042,GO-20151216222,THEFT UNDER,2015-07-16T00:00:00,2015,July,Thursday,16,197,13,2015-07-17T00:00:00,2015,July,Friday,17,198,18,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,VALETTA,EL,1,RED,700.0,STOLEN,22993,"{'type': 'Point', 'coordinates': (-79.3841696, 43.67080434)}"
-23011,10098,GO-20159004977,THEFT UNDER,2015-07-22T00:00:00,2015,July,Wednesday,22,203,13,2015-07-25T00:00:00,2015,July,Saturday,25,206,12,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,MT,21,BLK,500.0,STOLEN,22994,"{'type': 'Point', 'coordinates': (-79.3926068, 43.68840573)}"
-23012,10107,GO-20159005033,THEFT UNDER,2015-07-26T00:00:00,2015,July,Sunday,26,207,19,2015-07-27T00:00:00,2015,July,Monday,27,208,10,D53,Toronto,98,Rosedale-Moore Park (98),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,,OT,10,PLE,1300.0,STOLEN,22995,"{'type': 'Point', 'coordinates': (-79.38593172, 43.69328249)}"
-23013,10128,GO-20151298550,ASSAULT,2015-07-29T00:00:00,2015,July,Wednesday,29,210,18,2015-07-29T00:00:00,2015,July,Wednesday,29,210,18,D53,Toronto,98,Rosedale-Moore Park (98),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,,RC,18,,,RECOVERED,22996,"{'type': 'Point', 'coordinates': (-79.37411234, 43.68017763)}"
-23014,10230,GO-20151379694,THEFT UNDER,2015-08-07T00:00:00,2015,August,Friday,7,219,21,2015-08-11T00:00:00,2015,August,Tuesday,11,223,22,D53,Toronto,98,Rosedale-Moore Park (98),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,OT,1,GRN,400.0,STOLEN,22997,"{'type': 'Point', 'coordinates': (-79.38718014, 43.67129793)}"
-23015,9736,GO-20159003377,THEFT UNDER,2015-06-05T00:00:00,2015,June,Friday,5,156,22,2015-06-06T00:00:00,2015,June,Saturday,6,157,10,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MA,,RG,12,BLU,1100.0,STOLEN,22998,"{'type': 'Point', 'coordinates': (-79.43343031, 43.70115453)}"
-23016,9789,GO-2015991085,B&E W'INTENT,2015-06-12T00:00:00,2015,June,Friday,12,163,23,2015-06-13T00:00:00,2015,June,Saturday,13,164,9,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,,MT,10,,1500.0,STOLEN,22999,"{'type': 'Point', 'coordinates': (-79.42891823, 43.70386434)}"
-23017,10276,GO-20159005880,THEFT UNDER,2015-08-16T00:00:00,2015,August,Sunday,16,228,15,2015-08-16T00:00:00,2015,August,Sunday,16,228,23,D13,Toronto,102,Forest Hill North (102),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SC,KICKER PRO,MT,15,GRY,300.0,STOLEN,23000,"{'type': 'Point', 'coordinates': (-79.43133682, 43.70068555)}"
-23018,10490,GO-20159007367,THEFT UNDER,2015-09-17T00:00:00,2015,September,Thursday,17,260,23,2015-09-18T00:00:00,2015,September,Friday,18,261,14,D53,Toronto,102,Forest Hill North (102),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,QUICK 4,TO,21,WHI,900.0,STOLEN,23001,"{'type': 'Point', 'coordinates': (-79.42115012, 43.70915453)}"
-23019,10640,GO-20159008609,THEFT UNDER,2015-10-05T00:00:00,2015,October,Monday,5,278,15,2015-10-16T00:00:00,2015,October,Friday,16,289,15,D53,Toronto,102,Forest Hill North (102),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,"SCH 26"""" GRAFT P",MT,27,RED,665.0,STOLEN,23002,"{'type': 'Point', 'coordinates': (-79.42587066, 43.70333834)}"
-23020,10944,GO-201631879,B&E,2016-01-06T00:00:00,2016,January,Wednesday,6,6,12,2016-01-06T00:00:00,2016,January,Wednesday,6,6,22,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,AQUILA,MIXED TAPE,OT,0,SIL,1000.0,STOLEN,23003,"{'type': 'Point', 'coordinates': (-79.43904081, 43.70019988)}"
-23021,11626,GO-20161096962,THEFT UNDER - BICYCLE,2016-06-23T00:00:00,2016,June,Thursday,23,175,9,2016-06-23T00:00:00,2016,June,Thursday,23,175,12,D53,Toronto,102,Forest Hill North (102),Schools During Supervised Activity,Educational,OTHER,SKYLINE,OT,0,BLK,,STOLEN,23004,"{'type': 'Point', 'coordinates': (-79.42236728, 43.70289495)}"
-23022,11834,GO-20161271594,THEFT UNDER - BICYCLE,2016-07-15T00:00:00,2016,July,Friday,15,197,18,2016-07-20T00:00:00,2016,July,Wednesday,20,202,6,D53,Toronto,102,Forest Hill North (102),"Apartment (Rooming House, Condo)",Apartment,CCM,NITRO XT,MT,18,BLK,200.0,STOLEN,23005,"{'type': 'Point', 'coordinates': (-79.41906802, 43.70235258)}"
-23023,11879,GO-20161295455,THEFT UNDER - BICYCLE,2016-07-21T00:00:00,2016,July,Thursday,21,203,11,2016-07-23T00:00:00,2016,July,Saturday,23,205,18,D13,Toronto,102,Forest Hill North (102),Ttc Bus Stop / Shelter / Loop,Outside,MONGOOSE,,MT,21,BLK,220.0,STOLEN,23006,"{'type': 'Point', 'coordinates': (-79.43597803, 43.69876975)}"
-23024,11961,GO-20169007986,THEFT UNDER - BICYCLE,2016-07-23T00:00:00,2016,July,Saturday,23,205,0,2016-07-31T00:00:00,2016,July,Sunday,31,213,12,D13,Toronto,102,Forest Hill North (102),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,TRAIL X2 15,MT,24,BLK,500.0,STOLEN,23007,"{'type': 'Point', 'coordinates': (-79.42610953, 43.70427463)}"
-23025,12372,GO-20169010616,THEFT UNDER - BICYCLE,2016-09-17T00:00:00,2016,September,Saturday,17,261,21,2016-09-17T00:00:00,2016,September,Saturday,17,261,23,D53,Toronto,102,Forest Hill North (102),"Apartment (Rooming House, Condo)",Apartment,SU,,RG,5,CPR,500.0,STOLEN,23008,"{'type': 'Point', 'coordinates': (-79.42394687, 43.70568192)}"
-23026,12977,GO-20191742304,THEFT UNDER - BICYCLE,2019-09-10T00:00:00,2019,September,Tuesday,10,253,8,2019-09-11T00:00:00,2019,September,Wednesday,11,254,10,D53,Toronto,102,Forest Hill North (102),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,,OT,0,BLKRED,300.0,STOLEN,23009,"{'type': 'Point', 'coordinates': (-79.41906802, 43.70235258)}"
-23027,14125,GO-20169013864,THEFT UNDER - BICYCLE,2016-11-25T00:00:00,2016,November,Friday,25,330,9,2016-11-25T00:00:00,2016,November,Friday,25,330,18,D53,Toronto,102,Forest Hill North (102),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,700C XSPORT,RG,30,WHI,430.0,STOLEN,23010,"{'type': 'Point', 'coordinates': (-79.42236728, 43.70289495)}"
-23028,14212,GO-20172005038,THEFT FROM MOTOR VEHICLE UNDER,2017-11-03T00:00:00,2017,November,Friday,3,307,18,2017-11-05T00:00:00,2017,November,Sunday,5,309,17,D53,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,12,GRY,,STOLEN,23011,"{'type': 'Point', 'coordinates': (-79.41793495, 43.70698745)}"
-23029,14894,GO-20201665107,B&E,2020-08-22T00:00:00,2020,August,Saturday,22,235,12,2020-09-03T00:00:00,2020,September,Thursday,3,247,12,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OPUS,CITITO,OT,20,WHI,1200.0,STOLEN,23012,"{'type': 'Point', 'coordinates': (-79.43689599000001, 43.70213428)}"
-23030,14895,GO-20201665107,B&E,2020-08-22T00:00:00,2020,August,Saturday,22,235,12,2020-09-03T00:00:00,2020,September,Thursday,3,247,12,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,ALLEZ,RC,20,BLU,1700.0,STOLEN,23013,"{'type': 'Point', 'coordinates': (-79.43689599000001, 43.70213428)}"
-23031,15397,GO-2015865998,THEFT UNDER,2015-05-22T00:00:00,2015,May,Friday,22,142,16,2015-05-24T00:00:00,2015,May,Sunday,24,144,15,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,JAMIS,J11 TRAIL,MT,18,GRY,259.0,STOLEN,23014,"{'type': 'Point', 'coordinates': (-79.43772499, 43.70051726)}"
-23032,15400,GO-2015924506,B&E,2015-05-24T00:00:00,2015,May,Sunday,24,144,0,2015-06-02T00:00:00,2015,June,Tuesday,2,153,18,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,RUBY,RC,21,WHI,3000.0,STOLEN,23015,"{'type': 'Point', 'coordinates': (-79.43028458, 43.705517930000006)}"
-23033,15401,GO-2015924506,B&E,2015-05-24T00:00:00,2015,May,Sunday,24,144,0,2015-06-02T00:00:00,2015,June,Tuesday,2,153,18,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KUOTA,KARMA,RC,21,RED,4000.0,RECOVERED,23016,"{'type': 'Point', 'coordinates': (-79.43028458, 43.705517930000006)}"
-23034,15415,GO-20151095442,B&E,2015-06-25T00:00:00,2015,June,Thursday,25,176,20,2015-06-29T00:00:00,2015,June,Monday,29,180,17,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MIKADO,MOUNTAIN BIKE,MT,18,GRN,100.0,STOLEN,23017,"{'type': 'Point', 'coordinates': (-79.43521845, 43.70535339)}"
-23035,15436,GO-20159005252,THEFT UNDER,2015-07-10T00:00:00,2015,July,Friday,10,191,11,2015-08-02T00:00:00,2015,August,Sunday,2,214,10,D13,Toronto,102,Forest Hill North (102),Ttc Subway Station,Transit,CC,"CCM26""""ALPINE 18",MT,21,WHI,430.0,STOLEN,23018,"{'type': 'Point', 'coordinates': (-79.43597803, 43.69876975)}"
-23036,15459,GO-20159007617,THEFT UNDER,2015-09-18T00:00:00,2015,September,Friday,18,261,23,2015-09-23T00:00:00,2015,September,Wednesday,23,266,13,D13,Toronto,102,Forest Hill North (102),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,MT,15,BLU,0.0,STOLEN,23019,"{'type': 'Point', 'coordinates': (-79.43343031, 43.70115453)}"
-23037,15625,GO-20179017758,THEFT UNDER - BICYCLE,2017-10-21T00:00:00,2017,October,Saturday,21,294,13,2017-10-21T00:00:00,2017,October,Saturday,21,294,21,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,OT,20,BLK,1600.0,STOLEN,23020,"{'type': 'Point', 'coordinates': (-79.43837112, 43.69848978)}"
-23038,15639,GO-20199016472,THEFT UNDER - BICYCLE,2019-05-25T00:00:00,2019,May,Saturday,25,145,17,2019-05-27T00:00:00,2019,May,Monday,27,147,14,D13,Toronto,102,Forest Hill North (102),"Apartment (Rooming House, Condo)",Apartment,OT,TRAILX,MT,21,BLK,300.0,STOLEN,23021,"{'type': 'Point', 'coordinates': (-79.43779852, 43.70293513)}"
-23039,15640,GO-2019992705,B&E,2019-05-29T00:00:00,2019,May,Wednesday,29,149,17,2019-05-30T00:00:00,2019,May,Thursday,30,150,16,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OPUS,CAPRICCIO,TO,9,BLU,667.0,STOLEN,23022,"{'type': 'Point', 'coordinates': (-79.43322383, 43.70659168)}"
-23040,15641,GO-2019992705,B&E,2019-05-29T00:00:00,2019,May,Wednesday,29,149,17,2019-05-30T00:00:00,2019,May,Thursday,30,150,16,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OPUS,ORPHEO,TO,9,BLK,619.0,STOLEN,23023,"{'type': 'Point', 'coordinates': (-79.43322383, 43.70659168)}"
-23041,15644,GO-20199019166,THEFT UNDER - BICYCLE,2019-06-18T00:00:00,2019,June,Tuesday,18,169,10,2019-06-18T00:00:00,2019,June,Tuesday,18,169,21,D13,Toronto,102,Forest Hill North (102),Ttc Subway Station,Transit,SU,,MT,21,,140.0,STOLEN,23024,"{'type': 'Point', 'coordinates': (-79.43597803, 43.69876975)}"
-23042,18281,GO-20201544758,B&E,2020-08-16T00:00:00,2020,August,Sunday,16,229,14,2020-08-17T00:00:00,2020,August,Monday,17,230,13,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FELT,VERZA,RC,21,BLK,1075.0,STOLEN,23025,"{'type': 'Point', 'coordinates': (-79.43343031, 43.70115453)}"
-23043,18283,GO-20201552358,THEFT UNDER - BICYCLE,2020-08-18T00:00:00,2020,August,Tuesday,18,231,11,2020-08-20T00:00:00,2020,August,Thursday,20,233,8,D13,Toronto,102,Forest Hill North (102),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,ORPHEO 4L,RG,24,GRY,,STOLEN,23026,"{'type': 'Point', 'coordinates': (-79.42659687, 43.70621473)}"
-23044,18374,GO-20143054752,B&E,2014-10-04T00:00:00,2014,October,Saturday,4,277,12,2014-10-06T00:00:00,2014,October,Monday,6,279,17,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GARY FISHER,ZEBRANO,MT,10,BLK,400.0,STOLEN,23027,"{'type': 'Point', 'coordinates': (-79.4399729, 43.69957099)}"
-23045,18402,GO-2015833062,B&E W'INTENT,2015-05-02T00:00:00,2015,May,Saturday,2,122,10,2015-05-19T00:00:00,2015,May,Tuesday,19,139,10,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,6C BIKE 10,RC,18,WHI,1500.0,STOLEN,23028,"{'type': 'Point', 'coordinates': (-79.42891823, 43.70386434)}"
-23046,18403,GO-20159002958,THEFT UNDER,2015-05-18T00:00:00,2015,May,Monday,18,138,0,2015-05-20T00:00:00,2015,May,Wednesday,20,140,20,D13,Toronto,102,Forest Hill North (102),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RC,16,BLK,2250.0,STOLEN,23029,"{'type': 'Point', 'coordinates': (-79.44057053, 43.70108497)}"
-23047,18404,GO-20159002958,THEFT UNDER,2015-05-18T00:00:00,2015,May,Monday,18,138,0,2015-05-20T00:00:00,2015,May,Wednesday,20,140,20,D13,Toronto,102,Forest Hill North (102),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,SOLACE 20,RC,16,BLK,2250.0,STOLEN,23030,"{'type': 'Point', 'coordinates': (-79.44057053, 43.70108497)}"
-23048,18412,GO-2015947345,THEFT UNDER,2015-05-27T00:00:00,2015,May,Wednesday,27,147,0,2015-06-06T00:00:00,2015,June,Saturday,6,157,11,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,UNKNOWN,MT,21,,250.0,STOLEN,23031,"{'type': 'Point', 'coordinates': (-79.43377321, 43.7019582)}"
-23049,18431,GO-20151240491,THEFT UNDER,2015-04-05T00:00:00,2015,April,Sunday,5,95,12,2015-07-21T00:00:00,2015,July,Tuesday,21,202,8,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,,OT,0,,,STOLEN,23032,"{'type': 'Point', 'coordinates': (-79.42787718, 43.70515485)}"
-23050,18440,GO-20151327475,THEFT UNDER,2015-08-02T00:00:00,2015,August,Sunday,2,214,16,2015-08-03T00:00:00,2015,August,Monday,3,215,12,D13,Toronto,102,Forest Hill North (102),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,MT,10,BLU,300.0,STOLEN,23033,"{'type': 'Point', 'coordinates': (-79.4363675, 43.70510262)}"
-23051,18739,GO-20209020543,THEFT UNDER - BICYCLE,2020-08-18T00:00:00,2020,August,Tuesday,18,231,14,2020-08-18T00:00:00,2020,August,Tuesday,18,231,21,D53,Toronto,102,Forest Hill North (102),"Apartment (Rooming House, Condo)",Apartment,NO,,MT,21,BLK,200.0,STOLEN,23034,"{'type': 'Point', 'coordinates': (-79.42236728, 43.70289495)}"
-23052,18782,GO-20202159881,THEFT UNDER - BICYCLE,2020-11-11T00:00:00,2020,November,Wednesday,11,316,11,2020-11-14T00:00:00,2020,November,Saturday,14,319,8,D53,Toronto,102,Forest Hill North (102),"Private Property Structure (Pool, Shed, Detached Garage)",Other,BIANCHI,INFINITO,RC,18,GRN,3500.0,STOLEN,23035,"{'type': 'Point', 'coordinates': (-79.41928275, 43.71050342)}"
-23053,19756,GO-20169003507,THEFT UNDER,2016-04-17T00:00:00,2016,April,Sunday,17,108,10,2016-04-18T00:00:00,2016,April,Monday,18,109,10,D53,Toronto,102,Forest Hill North (102),"Apartment (Rooming House, Condo)",Apartment,UK,ROAD BIKE,RC,16,BLK,1750.0,STOLEN,23036,"{'type': 'Point', 'coordinates': (-79.42701861, 43.70792525000001)}"
-23054,19770,GO-2016997998,THEFT UNDER - BICYCLE,2016-06-07T00:00:00,2016,June,Tuesday,7,159,23,2016-06-10T00:00:00,2016,June,Friday,10,162,12,D53,Toronto,102,Forest Hill North (102),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,,OT,1,GRY,700.0,STOLEN,23037,"{'type': 'Point', 'coordinates': (-79.42115012, 43.70915453)}"
-23055,21390,GO-20161133007,THEFT UNDER - BICYCLE,2016-06-23T00:00:00,2016,June,Thursday,23,175,12,2016-06-28T00:00:00,2016,June,Tuesday,28,180,20,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,JAMIS,X24,MT,21,WHI,200.0,STOLEN,23038,"{'type': 'Point', 'coordinates': (-79.43343031, 43.70115453)}"
-23056,21518,GO-2018134847,B&E W'INTENT,2018-01-19T00:00:00,2018,January,Friday,19,19,5,2018-01-22T00:00:00,2018,January,Monday,22,22,11,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,,TO,18,BLK,1800.0,STOLEN,23040,"{'type': 'Point', 'coordinates': (-79.42891823, 43.70386434)}"
-23057,21550,GO-20199035275,THEFT UNDER,2019-10-25T00:00:00,2019,October,Friday,25,298,23,2019-10-26T00:00:00,2019,October,Saturday,26,299,10,D13,Toronto,102,Forest Hill North (102),Ttc Subway Station,Transit,KH,S/T / D10D0387,RG,3,BLK,400.0,STOLEN,23041,"{'type': 'Point', 'coordinates': (-79.43597803, 43.69876975)}"
-23058,21852,GO-2015605489,THEFT OVER,2015-04-11T00:00:00,2015,April,Saturday,11,101,19,2015-04-12T00:00:00,2015,April,Sunday,12,102,17,D13,Toronto,102,Forest Hill North (102),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,TIME,MT,6,WHI,4000.0,STOLEN,23042,"{'type': 'Point', 'coordinates': (-79.43377321, 43.7019582)}"
-23059,21853,GO-2015605489,THEFT OVER,2015-04-11T00:00:00,2015,April,Saturday,11,101,19,2015-04-12T00:00:00,2015,April,Sunday,12,102,17,D13,Toronto,102,Forest Hill North (102),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,,RG,6,WHI,4000.0,STOLEN,23043,"{'type': 'Point', 'coordinates': (-79.43377321, 43.7019582)}"
-23060,21854,GO-2015605489,THEFT OVER,2015-04-11T00:00:00,2015,April,Saturday,11,101,19,2015-04-12T00:00:00,2015,April,Sunday,12,102,17,D13,Toronto,102,Forest Hill North (102),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,QUINTANAROO,RG,6,BLU,3000.0,STOLEN,23044,"{'type': 'Point', 'coordinates': (-79.43377321, 43.7019582)}"
-23061,21858,GO-2015762108,THEFT UNDER,2015-05-07T00:00:00,2015,May,Thursday,7,127,18,2015-05-07T00:00:00,2015,May,Thursday,7,127,20,D13,Toronto,102,Forest Hill North (102),Schools During Un-Supervised Activity,Educational,SCHWINN,,MT,10,GRY,200.0,STOLEN,23045,"{'type': 'Point', 'coordinates': (-79.43597803, 43.69876975)}"
-23062,21988,GO-20202129783,ROBBERY WITH WEAPON,2020-11-09T00:00:00,2020,November,Monday,9,314,20,2020-11-09T00:00:00,2020,November,Monday,9,314,20,D13,Toronto,102,Forest Hill North (102),Schools During Un-Supervised Activity,Educational,CCM,,MT,10,BLKRED,,STOLEN,23046,"{'type': 'Point', 'coordinates': (-79.43233683, 43.70312684)}"
-23063,21989,GO-20202129783,ROBBERY WITH WEAPON,2020-11-09T00:00:00,2020,November,Monday,9,314,20,2020-11-09T00:00:00,2020,November,Monday,9,314,20,D13,Toronto,102,Forest Hill North (102),Schools During Un-Supervised Activity,Educational,SUPERCYCLE,,MT,10,BLU,,STOLEN,23047,"{'type': 'Point', 'coordinates': (-79.43233683, 43.70312684)}"
-23064,22460,GO-2020795280,THEFT UNDER - BICYCLE,2020-04-24T00:00:00,2020,April,Friday,24,115,16,2020-04-27T00:00:00,2020,April,Monday,27,118,19,D53,Toronto,102,Forest Hill North (102),"Apartment (Rooming House, Condo)",Apartment,TREK,FX1,RG,21,GRY,800.0,STOLEN,23049,"{'type': 'Point', 'coordinates': (-79.42394687, 43.70568192)}"
-23065,22524,GO-20201466212,B&E,2020-08-04T00:00:00,2020,August,Tuesday,4,217,12,2020-08-06T00:00:00,2020,August,Thursday,6,219,11,D53,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,ROUBAIX EXPERT,RC,21,,6000.0,STOLEN,23050,"{'type': 'Point', 'coordinates': (-79.42568213, 43.70247859)}"
-23066,24400,GO-20201561333,THEFT UNDER - BICYCLE,2020-08-19T00:00:00,2020,August,Wednesday,19,232,13,2020-08-19T00:00:00,2020,August,Wednesday,19,232,19,D13,Toronto,102,Forest Hill North (102),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,MT,0,BLU,500.0,STOLEN,23051,"{'type': 'Point', 'coordinates': (-79.43779852, 43.70293513)}"
-23067,24667,GO-20143090758,PROPERTY - FOUND,2014-10-12T00:00:00,2014,October,Sunday,12,285,11,2014-10-12T00:00:00,2014,October,Sunday,12,285,11,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,MT,10,BLK,100.0,UNKNOWN,23052,"{'type': 'Point', 'coordinates': (-79.43310285, 43.700312700000005)}"
-23068,24668,GO-20149007631,THEFT UNDER,2014-10-16T00:00:00,2014,October,Thursday,16,289,18,2014-10-16T00:00:00,2014,October,Thursday,16,289,19,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,TIMBERLINE ALL,MT,21,DBL,0.0,STOLEN,23053,"{'type': 'Point', 'coordinates': (-79.43825268000002, 43.7017684)}"
-23069,24674,GO-20143238584,B&E W'INTENT,2014-08-30T00:00:00,2014,August,Saturday,30,242,5,2014-11-04T00:00:00,2014,November,Tuesday,4,308,18,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,WOLVERINE,MT,18,WHI,700.0,STOLEN,23054,"{'type': 'Point', 'coordinates': (-79.43453827, 43.70368845)}"
-23070,24694,GO-2015724689,THEFT UNDER,2015-04-30T00:00:00,2015,April,Thursday,30,120,15,2015-05-01T00:00:00,2015,May,Friday,1,121,21,D13,Toronto,102,Forest Hill North (102),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SCHWINN,TESLIN,MT,26,PLE,,STOLEN,23055,"{'type': 'Point', 'coordinates': (-79.43114506, 43.70450679)}"
-23071,24711,GO-20151047653,THEFT FROM MOTOR VEHICLE UNDER,2015-06-21T00:00:00,2015,June,Sunday,21,172,23,2015-06-22T00:00:00,2015,June,Monday,22,173,7,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,BUSHPILOT,MT,21,PNKPLE,,STOLEN,23056,"{'type': 'Point', 'coordinates': (-79.43904081, 43.70019988)}"
-23072,25245,GO-20169008996,THEFT UNDER - BICYCLE,2016-08-18T00:00:00,2016,August,Thursday,18,231,3,2016-08-18T00:00:00,2016,August,Thursday,18,231,11,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,CYPRESS,TO,18,LBL,500.0,STOLEN,23057,"{'type': 'Point', 'coordinates': (-79.43377321, 43.7019582)}"
-23073,25246,GO-20169008996,THEFT UNDER - BICYCLE,2016-08-18T00:00:00,2016,August,Thursday,18,231,3,2016-08-18T00:00:00,2016,August,Thursday,18,231,11,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RC,12,BLK,300.0,STOLEN,23058,"{'type': 'Point', 'coordinates': (-79.43377321, 43.7019582)}"
-23074,25344,GO-20191396320,B&E,2019-07-25T00:00:00,2019,July,Thursday,25,206,7,2019-07-25T00:00:00,2019,July,Thursday,25,206,7,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,EMMO,EDDYMERCKX,RC,0,WHIRED,3000.0,STOLEN,23059,"{'type': 'Point', 'coordinates': (-79.43343031, 43.70115453)}"
-23075,25345,GO-20191396320,B&E,2019-07-25T00:00:00,2019,July,Thursday,25,206,7,2019-07-25T00:00:00,2019,July,Thursday,25,206,7,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,COLNAGO,CLX,RC,0,BLK,5000.0,STOLEN,23060,"{'type': 'Point', 'coordinates': (-79.43343031, 43.70115453)}"
-23076,25347,GO-20191475635,THEFT UNDER,2019-08-04T00:00:00,2019,August,Sunday,4,216,16,2019-08-05T00:00:00,2019,August,Monday,5,217,9,D13,Toronto,102,Forest Hill North (102),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,,MT,24,BLKONG,1000.0,STOLEN,23061,"{'type': 'Point', 'coordinates': (-79.42999065, 43.7047407)}"
-23077,25348,GO-20191569794,THEFT OF MOTOR VEHICLE,2019-08-17T00:00:00,2019,August,Saturday,17,229,22,2019-08-18T00:00:00,2019,August,Sunday,18,230,9,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TRAVEL SCOOT,,SC,1,SIL,4500.0,STOLEN,23062,"{'type': 'Point', 'coordinates': (-79.43310285, 43.700312700000005)}"
-23078,25363,GO-20199036866,THEFT UNDER - BICYCLE,2019-11-07T00:00:00,2019,November,Thursday,7,311,17,2019-11-08T00:00:00,2019,November,Friday,8,312,20,D13,Toronto,102,Forest Hill North (102),Ttc Subway Station,Transit,CC,,RG,3,GRN,240.0,STOLEN,23063,"{'type': 'Point', 'coordinates': (-79.43597803, 43.69876975)}"
-23079,25366,GO-20192491449,THEFT OF MOTOR VEHICLE,2019-12-27T00:00:00,2019,December,Friday,27,361,0,2019-12-27T00:00:00,2019,December,Friday,27,361,8,D13,Toronto,102,Forest Hill North (102),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,VITA SPORT,OT,21,WHI,1000.0,STOLEN,23064,"{'type': 'Point', 'coordinates': (-79.43322383, 43.70659168)}"
-23080,25430,GO-20179003585,THEFT UNDER - BICYCLE,2017-03-17T00:00:00,2017,March,Friday,17,76,16,2017-03-21T00:00:00,2017,March,Tuesday,21,80,19,D53,Toronto,102,Forest Hill North (102),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KH,,MT,30,BLU,500.0,STOLEN,23065,"{'type': 'Point', 'coordinates': (-79.41906802, 43.70235258)}"
-23081,176,GO-2017549407,B&E,2017-03-28T00:00:00,2017,March,Tuesday,28,87,9,2017-03-29T00:00:00,2017,March,Wednesday,29,88,2,D53,Toronto,103,Lawrence Park South (103),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,OT,18,,1300.0,STOLEN,23066,"{'type': 'Point', 'coordinates': (-79.40313825, 43.72398832)}"
-23082,202,GO-2017549407,B&E,2017-03-28T00:00:00,2017,March,Tuesday,28,87,9,2017-03-29T00:00:00,2017,March,Wednesday,29,88,2,D53,Toronto,103,Lawrence Park South (103),"Apartment (Rooming House, Condo)",Apartment,OT,WOOKY,MT,22,BLK,500.0,STOLEN,23067,"{'type': 'Point', 'coordinates': (-79.40313825, 43.72398832)}"
-23083,249,GO-2017647458,B&E,2017-04-12T00:00:00,2017,April,Wednesday,12,102,18,2017-04-12T00:00:00,2017,April,Wednesday,12,102,18,D53,Toronto,103,Lawrence Park South (103),"Apartment (Rooming House, Condo)",Apartment,OT,ROUBAIX SPORT S,RC,24,GRY,2650.0,STOLEN,23068,"{'type': 'Point', 'coordinates': (-79.41142188, 43.72034952)}"
-23084,309,GO-2017766292,THEFT UNDER - BICYCLE,2017-04-23T00:00:00,2017,April,Sunday,23,113,10,2017-05-01T00:00:00,2017,May,Monday,1,121,16,D53,Toronto,103,Lawrence Park South (103),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GARY FISHER,,MT,18,BLUYEL,1800.0,STOLEN,23069,"{'type': 'Point', 'coordinates': (-79.41343194, 43.71693957)}"
-23085,310,GO-2017766292,THEFT UNDER - BICYCLE,2017-04-23T00:00:00,2017,April,Sunday,23,113,10,2017-05-01T00:00:00,2017,May,Monday,1,121,16,D53,Toronto,103,Lawrence Park South (103),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,,MT,18,,2200.0,STOLEN,23070,"{'type': 'Point', 'coordinates': (-79.41343194, 43.71693957)}"
-23086,481,GO-20179007066,THEFT UNDER,2017-05-26T00:00:00,2017,May,Friday,26,146,11,2017-05-27T00:00:00,2017,May,Saturday,27,147,11,D53,Toronto,103,Lawrence Park South (103),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,,MT,21,ONG,800.0,STOLEN,23071,"{'type': 'Point', 'coordinates': (-79.41391309000001, 43.70782612)}"
-23087,696,GO-20171128384,B&E,2017-06-23T00:00:00,2017,June,Friday,23,174,21,2017-06-24T00:00:00,2017,June,Saturday,24,175,12,D53,Toronto,103,Lawrence Park South (103),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,SPECIALIZED,MT,0,BLUSIL,800.0,STOLEN,23072,"{'type': 'Point', 'coordinates': (-79.40916472, 43.71310171)}"
-23088,1109,GO-20179012121,THEFT UNDER - BICYCLE,2017-08-05T00:00:00,2017,August,Saturday,5,217,16,2017-08-10T00:00:00,2017,August,Thursday,10,222,15,D53,Toronto,103,Lawrence Park South (103),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RM,VERTEX,MT,18,RED,3752.0,STOLEN,23073,"{'type': 'Point', 'coordinates': (-79.41206798, 43.7230324)}"
-23089,1373,GO-20179014508,THEFT UNDER - BICYCLE,2017-07-22T00:00:00,2017,July,Saturday,22,203,5,2017-09-11T00:00:00,2017,September,Monday,11,254,22,D53,Toronto,103,Lawrence Park South (103),"Apartment (Rooming House, Condo)",Apartment,RM,VERTEX 930,MT,42,BLK,3500.0,STOLEN,23074,"{'type': 'Point', 'coordinates': (-79.41206798, 43.7230324)}"
-23090,1597,GO-20179016586,THEFT UNDER - BICYCLE,2017-10-04T00:00:00,2017,October,Wednesday,4,277,18,2017-10-06T00:00:00,2017,October,Friday,6,279,12,D53,Toronto,103,Lawrence Park South (103),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CC,,OT,16,OTH,200.0,STOLEN,23075,"{'type': 'Point', 'coordinates': (-79.40176614, 43.7231042)}"
-23091,1889,GO-20179020701,THEFT UNDER - BICYCLE,2017-11-23T00:00:00,2017,November,Thursday,23,327,8,2017-11-28T00:00:00,2017,November,Tuesday,28,332,0,D53,Toronto,103,Lawrence Park South (103),Schools During Supervised Activity,Educational,BL,COMET,MT,18,WHI,1000.0,STOLEN,23076,"{'type': 'Point', 'coordinates': (-79.41016945, 43.72248185000001)}"
-23092,1983,GO-201876438,B&E,2018-01-13T00:00:00,2018,January,Saturday,13,13,4,2018-01-13T00:00:00,2018,January,Saturday,13,13,6,D53,Toronto,103,Lawrence Park South (103),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,,OT,0,WHI,10.0,STOLEN,23077,"{'type': 'Point', 'coordinates': (-79.41142188, 43.72034952)}"
-23093,1984,GO-201876438,B&E,2018-01-13T00:00:00,2018,January,Saturday,13,13,4,2018-01-13T00:00:00,2018,January,Saturday,13,13,6,D53,Toronto,103,Lawrence Park South (103),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,,RC,24,BLKLGR,400.0,STOLEN,23078,"{'type': 'Point', 'coordinates': (-79.41142188, 43.72034952)}"
-23094,2777,GO-20181246063,PROPERTY - FOUND,2018-07-09T00:00:00,2018,July,Monday,9,190,0,2018-07-09T00:00:00,2018,July,Monday,9,190,0,D53,Toronto,103,Lawrence Park South (103),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,SPORT,RG,6,LBL,,UNKNOWN,23079,"{'type': 'Point', 'coordinates': (-79.39957665, 43.72180699)}"
-23095,3360,GO-20189028553,THEFT UNDER - BICYCLE,2018-08-11T00:00:00,2018,August,Saturday,11,223,19,2018-08-30T00:00:00,2018,August,Thursday,30,242,12,D53,Toronto,103,Lawrence Park South (103),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,PINNACLE,MT,21,GRN,300.0,STOLEN,23080,"{'type': 'Point', 'coordinates': (-79.39431673, 43.72370741)}"
-23096,3361,GO-20189028553,THEFT UNDER - BICYCLE,2018-08-11T00:00:00,2018,August,Saturday,11,223,19,2018-08-30T00:00:00,2018,August,Thursday,30,242,12,D53,Toronto,103,Lawrence Park South (103),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,OT,24,GRY,400.0,STOLEN,23081,"{'type': 'Point', 'coordinates': (-79.39431673, 43.72370741)}"
-23097,3362,GO-20189028553,THEFT UNDER - BICYCLE,2018-08-11T00:00:00,2018,August,Saturday,11,223,19,2018-08-30T00:00:00,2018,August,Thursday,30,242,12,D53,Toronto,103,Lawrence Park South (103),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FJ,ABSOLUTE 2.1,MT,21,MRN,644.0,STOLEN,23082,"{'type': 'Point', 'coordinates': (-79.39431673, 43.72370741)}"
-23098,3559,GO-20189031924,THEFT UNDER - BICYCLE,2018-09-25T00:00:00,2018,September,Tuesday,25,268,11,2018-09-25T00:00:00,2018,September,Tuesday,25,268,22,D53,Toronto,103,Lawrence Park South (103),Schools During Supervised Activity,Educational,RM,FLARE 29,MT,29,GRY,750.0,STOLEN,23083,"{'type': 'Point', 'coordinates': (-79.41016945, 43.72248185000001)}"
-23099,3880,GO-20189038885,THEFT UNDER - BICYCLE,2018-11-19T00:00:00,2018,November,Monday,19,323,8,2018-11-19T00:00:00,2018,November,Monday,19,323,19,D53,Toronto,103,Lawrence Park South (103),Ttc Subway Station,Transit,OT,,RG,21,BLK,450.0,STOLEN,23084,"{'type': 'Point', 'coordinates': (-79.40215463, 43.72510266)}"
-23100,4140,GO-20199011088,THEFT UNDER - BICYCLE,2019-04-08T00:00:00,2019,April,Monday,8,98,9,2019-04-08T00:00:00,2019,April,Monday,8,98,16,D53,Toronto,103,Lawrence Park South (103),Schools During Supervised Activity,Educational,OT,SIRRUS,RG,24,GRY,0.0,STOLEN,23085,"{'type': 'Point', 'coordinates': (-79.40988442, 43.71883160000001)}"
-23101,5364,GO-20199030572,THEFT UNDER - BICYCLE,2019-09-13T00:00:00,2019,September,Friday,13,256,7,2019-09-18T00:00:00,2019,September,Wednesday,18,261,17,D53,Toronto,103,Lawrence Park South (103),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,TRECK FX2,RG,24,BLK,0.0,STOLEN,23086,"{'type': 'Point', 'coordinates': (-79.40215463, 43.72510266)}"
-23102,5542,GO-20199034324,THEFT UNDER - BICYCLE,2019-10-15T00:00:00,2019,October,Tuesday,15,288,15,2019-10-18T00:00:00,2019,October,Friday,18,291,14,D53,Toronto,103,Lawrence Park South (103),"Apartment (Rooming House, Condo)",Apartment,GI,TRANCE,MT,55,DGR,0.0,STOLEN,23087,"{'type': 'Point', 'coordinates': (-79.40058581, 43.71725141)}"
-23103,5555,GO-20199034618,THEFT UNDER,2019-10-20T00:00:00,2019,October,Sunday,20,293,22,2019-10-21T00:00:00,2019,October,Monday,21,294,12,D53,Toronto,103,Lawrence Park South (103),"Apartment (Rooming House, Condo)",Apartment,OT,MID 7,SC,20,WHI,155.0,STOLEN,23088,"{'type': 'Point', 'coordinates': (-79.41391309000001, 43.70782612)}"
-23104,5700,GO-20192225790,B&E,2019-11-18T00:00:00,2019,November,Monday,18,322,8,2019-11-18T00:00:00,2019,November,Monday,18,322,11,D53,Toronto,103,Lawrence Park South (103),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,VERVE 3 17.5,RG,8,BLK,,STOLEN,23089,"{'type': 'Point', 'coordinates': (-79.40518154, 43.7153848)}"
-23105,5713,GO-20192227273,THEFT UNDER - BICYCLE,2019-11-09T00:00:00,2019,November,Saturday,9,313,11,2019-11-19T00:00:00,2019,November,Tuesday,19,323,9,D53,Toronto,103,Lawrence Park South (103),"Private Property Structure (Pool, Shed, Detached Garage)",Other,COLNAGO,C40,TO,21,BLKYEL,1500.0,STOLEN,23090,"{'type': 'Point', 'coordinates': (-79.40690356000002, 43.71404953)}"
-23106,6129,GO-20209012358,THEFT UNDER - BICYCLE,2020-05-02T00:00:00,2020,May,Saturday,2,123,2,2020-05-02T00:00:00,2020,May,Saturday,2,123,14,D53,Toronto,103,Lawrence Park South (103),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RM,CARDIAC,MT,21,PLE,0.0,STOLEN,23091,"{'type': 'Point', 'coordinates': (-79.40988442, 43.71883160000001)}"
-23107,6167,GO-2020882758,B&E,2020-05-12T00:00:00,2020,May,Tuesday,12,133,0,2020-05-12T00:00:00,2020,May,Tuesday,12,133,11,D53,Toronto,103,Lawrence Park South (103),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,RG,0,LBLGRY,700.0,STOLEN,23092,"{'type': 'Point', 'coordinates': (-79.4059499, 43.71730271)}"
-23108,6168,GO-2020882758,B&E,2020-05-12T00:00:00,2020,May,Tuesday,12,133,0,2020-05-12T00:00:00,2020,May,Tuesday,12,133,11,D53,Toronto,103,Lawrence Park South (103),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,RG,0,BLU,600.0,UNKNOWN,23093,"{'type': 'Point', 'coordinates': (-79.4059499, 43.71730271)}"
-23109,6501,GO-20209016534,THEFT UNDER - BICYCLE,2020-06-29T00:00:00,2020,June,Monday,29,181,10,2020-06-30T00:00:00,2020,June,Tuesday,30,182,10,D53,Toronto,103,Lawrence Park South (103),"Apartment (Rooming House, Condo)",Apartment,OT,TK2,RC,1,BLK,2000.0,STOLEN,23094,"{'type': 'Point', 'coordinates': (-79.41206798, 43.7230324)}"
-23110,6502,GO-20209016534,THEFT UNDER - BICYCLE,2020-06-29T00:00:00,2020,June,Monday,29,181,10,2020-06-30T00:00:00,2020,June,Tuesday,30,182,10,D53,Toronto,103,Lawrence Park South (103),"Apartment (Rooming House, Condo)",Apartment,OT,TRACK,RC,1,WHI,500.0,STOLEN,23095,"{'type': 'Point', 'coordinates': (-79.41206798, 43.7230324)}"
-23111,6519,GO-20201223545,B&E,2020-07-03T00:00:00,2020,July,Friday,3,185,2,2020-07-03T00:00:00,2020,July,Friday,3,185,8,D53,Toronto,103,Lawrence Park South (103),"Apartment (Rooming House, Condo)",Apartment,CCM,HRDLNY,OT,0,BLKPNK,300.0,STOLEN,23096,"{'type': 'Point', 'coordinates': (-79.41490567000001, 43.70324519)}"
-23112,6616,GO-20201283590,B&E,2020-07-11T00:00:00,2020,July,Saturday,11,193,9,2020-07-11T00:00:00,2020,July,Saturday,11,193,9,D13,Toronto,106,Humewood-Cedarvale (106),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,RUBY,TO,24,WHI,2500.0,STOLEN,23097,"{'type': 'Point', 'coordinates': (-79.41826195, 43.68316749)}"
-23113,6578,GO-20201278230,THEFT UNDER - BICYCLE,2020-06-29T00:00:00,2020,June,Monday,29,181,19,2020-07-10T00:00:00,2020,July,Friday,10,192,18,D53,Toronto,103,Lawrence Park South (103),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,UNKONWN,FO,7,RED,350.0,STOLEN,23098,"{'type': 'Point', 'coordinates': (-79.40176614, 43.7231042)}"
-23114,16098,GO-20209027552,THEFT UNDER,2020-10-24T00:00:00,2020,October,Saturday,24,298,16,2020-10-24T00:00:00,2020,October,Saturday,24,298,16,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OT,MODENA HYBRID,OT,21,GRY,300.0,STOLEN,23099,"{'type': 'Point', 'coordinates': (-79.39277875000002, 43.70786225)}"
-23115,7066,GO-20209021205,THEFT UNDER - BICYCLE,2020-08-24T00:00:00,2020,August,Monday,24,237,18,2020-08-24T00:00:00,2020,August,Monday,24,237,21,D32,Toronto,105,Lawrence Park North (105),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,10,WHI,1500.0,STOLEN,23100,"{'type': 'Point', 'coordinates': (-79.40279824, 43.72743409)}"
-23116,22543,GO-20201620331,B&E,2020-08-28T00:00:00,2020,August,Friday,28,241,4,2020-08-28T00:00:00,2020,August,Friday,28,241,7,D53,Toronto,104,Mount Pleasant West (104),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TREK,ALLANT +7,RG,6,DBL,4800.0,STOLEN,23101,"{'type': 'Point', 'coordinates': (-79.39690117, 43.70259578)}"
-23117,18743,GO-20209020901,THEFT UNDER - BICYCLE,2020-08-20T00:00:00,2020,August,Thursday,20,233,18,2020-08-21T00:00:00,2020,August,Friday,21,234,15,D53,Toronto,100,Yonge-Eglinton (100),"Apartment (Rooming House, Condo)",Apartment,TR,6500,MT,18,BLU,1500.0,STOLEN,23102,"{'type': 'Point', 'coordinates': (-79.39717895, 43.70113781)}"
-23118,2386,GO-20189016114,THEFT UNDER - BICYCLE,2018-05-24T00:00:00,2018,May,Thursday,24,144,17,2018-05-24T00:00:00,2018,May,Thursday,24,144,17,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,GI,TALON 2,MT,18,BLU,999.0,STOLEN,23103,"{'type': 'Point', 'coordinates': (-79.38693266, 43.70031352000001)}"
-23119,7313,GO-20209023955,THEFT UNDER - BICYCLE,2020-09-18T00:00:00,2020,September,Friday,18,262,18,2020-09-21T00:00:00,2020,September,Monday,21,265,13,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,GI,RAPID 2,OT,27,BLU,0.0,STOLEN,23104,"{'type': 'Point', 'coordinates': (-79.3904349, 43.69860218)}"
-23120,6617,GO-20201271970,B&E,2020-07-09T00:00:00,2020,July,Thursday,9,191,17,2020-07-09T00:00:00,2020,July,Thursday,9,191,17,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,JAMIS,,RG,27,BLK,1800.0,STOLEN,23105,"{'type': 'Point', 'coordinates': (-79.42896432, 43.69786766)}"
-23121,6625,GO-20209017610,THEFT UNDER,2020-07-15T00:00:00,2020,July,Wednesday,15,197,5,2020-07-15T00:00:00,2020,July,Wednesday,15,197,11,D13,Toronto,106,Humewood-Cedarvale (106),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,21,RED,300.0,STOLEN,23106,"{'type': 'Point', 'coordinates': (-79.42430151, 43.6979464)}"
-23122,6901,GO-20201480798,THEFT UNDER - BICYCLE,2020-08-07T00:00:00,2020,August,Friday,7,220,0,2020-08-08T00:00:00,2020,August,Saturday,8,221,11,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,,OT,5,BLU,,STOLEN,23107,"{'type': 'Point', 'coordinates': (-79.42587442, 43.68583832)}"
-23123,7046,GO-20201589419,B&E,2020-08-23T00:00:00,2020,August,Sunday,23,236,19,2020-08-23T00:00:00,2020,August,Sunday,23,236,19,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,18,ONG,300.0,STOLEN,23108,"{'type': 'Point', 'coordinates': (-79.43097956, 43.69744698)}"
-23124,7351,GO-20201821025,B&E,2020-09-24T00:00:00,2020,September,Thursday,24,268,18,2020-09-25T00:00:00,2020,September,Friday,25,269,14,D13,Toronto,106,Humewood-Cedarvale (106),"Private Property Structure (Pool, Shed, Detached Garage)",Other,ZZZ,,MT,12,BLK,1200.0,STOLEN,23109,"{'type': 'Point', 'coordinates': (-79.42896432, 43.69786766)}"
-23125,7635,GO-20209029577,THEFT UNDER,2020-11-12T00:00:00,2020,November,Thursday,12,317,17,2020-11-14T00:00:00,2020,November,Saturday,14,319,9,D13,Toronto,106,Humewood-Cedarvale (106),"Apartment (Rooming House, Condo)",Apartment,OT,VENTURE SST,RC,18,WHI,1700.0,STOLEN,23110,"{'type': 'Point', 'coordinates': (-79.42083062, 43.68619468)}"
-23126,7750,GO-20141386364,B&E,2013-12-25T00:00:00,2013,December,Wednesday,25,359,0,2014-01-22T00:00:00,2014,January,Wednesday,22,22,16,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,RACER,RC,21,BLK,950.0,STOLEN,23111,"{'type': 'Point', 'coordinates': (-79.42473034, 43.68908849)}"
-23127,7751,GO-20141386364,B&E,2013-12-25T00:00:00,2013,December,Wednesday,25,359,0,2014-01-22T00:00:00,2014,January,Wednesday,22,22,16,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,,MT,21,RED,500.0,STOLEN,23112,"{'type': 'Point', 'coordinates': (-79.42473034, 43.68908849)}"
-23128,8163,GO-20142317719,THEFT UNDER,2014-06-17T00:00:00,2014,June,Tuesday,17,168,16,2014-06-18T00:00:00,2014,June,Wednesday,18,169,16,D13,Toronto,106,Humewood-Cedarvale (106),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GLOBE,VIENNA 3,OT,18,BLK,900.0,STOLEN,23113,"{'type': 'Point', 'coordinates': (-79.4298501, 43.68670451)}"
-23129,8579,GO-20142636595,THEFT UNDER,2014-07-29T00:00:00,2014,July,Tuesday,29,210,3,2014-08-04T00:00:00,2014,August,Monday,4,216,20,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,UNKN,OT,21,DBL,800.0,STOLEN,23114,"{'type': 'Point', 'coordinates': (-79.42587442, 43.68583832)}"
-23130,8580,GO-20142636595,THEFT UNDER,2014-07-29T00:00:00,2014,July,Tuesday,29,210,3,2014-08-04T00:00:00,2014,August,Monday,4,216,20,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,WTU198P0059F,MT,1,BLK,500.0,STOLEN,23115,"{'type': 'Point', 'coordinates': (-79.42587442, 43.68583832)}"
-23131,8581,GO-20142636595,THEFT UNDER,2014-07-29T00:00:00,2014,July,Tuesday,29,210,3,2014-08-04T00:00:00,2014,August,Monday,4,216,20,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,WTU198C0481F,MT,1,,500.0,STOLEN,23116,"{'type': 'Point', 'coordinates': (-79.42587442, 43.68583832)}"
-23132,8582,GO-20142636595,THEFT UNDER,2014-07-29T00:00:00,2014,July,Tuesday,29,210,3,2014-08-04T00:00:00,2014,August,Monday,4,216,20,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OPUS,BELLADONNA,MT,21,BLK,800.0,STOLEN,23117,"{'type': 'Point', 'coordinates': (-79.42587442, 43.68583832)}"
-23133,8734,GO-20149006292,THEFT UNDER,2014-08-23T00:00:00,2014,August,Saturday,23,235,21,2014-08-26T00:00:00,2014,August,Tuesday,26,238,11,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SPUTNIK,SC,1,BRN,600.0,STOLEN,23118,"{'type': 'Point', 'coordinates': (-79.42827708, 43.68880424)}"
-23134,9030,GO-20149007471,THEFT UNDER,2014-10-07T00:00:00,2014,October,Tuesday,7,280,4,2014-10-08T00:00:00,2014,October,Wednesday,8,281,10,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,CAYO 2.0,RC,24,BLK,,STOLEN,23119,"{'type': 'Point', 'coordinates': (-79.42629104, 43.69437977)}"
-23135,7118,GO-20209021687,THEFT UNDER,2020-08-29T00:00:00,2020,August,Saturday,29,242,10,2020-08-29T00:00:00,2020,August,Saturday,29,242,10,D13,Toronto,101,Forest Hill South (101),"Apartment (Rooming House, Condo)",Apartment,CA,CATALYST,MT,21,RED,500.0,STOLEN,23645,"{'type': 'Point', 'coordinates': (-79.42309954, 43.70150924)}"
-23136,9094,GO-20143152593,THEFT UNDER,2014-10-22T00:00:00,2014,October,Wednesday,22,295,11,2014-10-22T00:00:00,2014,October,Wednesday,22,295,13,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,OT,18,WHI,600.0,STOLEN,23120,"{'type': 'Point', 'coordinates': (-79.43152988, 43.69506079)}"
-23137,9129,GO-20143197986,THEFT UNDER,2014-10-24T00:00:00,2014,October,Friday,24,297,16,2014-10-29T00:00:00,2014,October,Wednesday,29,302,13,D13,Toronto,106,Humewood-Cedarvale (106),"Private Property Structure (Pool, Shed, Detached Garage)",Other,WISPER,905SE,EL,50,BLK,1700.0,STOLEN,23121,"{'type': 'Point', 'coordinates': (-79.42600973, 43.69612297)}"
-23138,9150,GO-20143238206,B&E,2014-10-27T00:00:00,2014,October,Monday,27,300,9,2014-11-04T00:00:00,2014,November,Tuesday,4,308,19,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,JAMIS,JAMIS XENITH,MT,26,BLU,1100.0,STOLEN,23122,"{'type': 'Point', 'coordinates': (-79.42600973, 43.69612297)}"
-23139,9151,GO-20143238206,B&E,2014-10-27T00:00:00,2014,October,Monday,27,300,9,2014-11-04T00:00:00,2014,November,Tuesday,4,308,19,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,FOCUS ROAD BIKE,OT,26,WHI,4800.0,STOLEN,23123,"{'type': 'Point', 'coordinates': (-79.42600973, 43.69612297)}"
-23140,9152,GO-20143238206,B&E,2014-10-27T00:00:00,2014,October,Monday,27,300,9,2014-11-04T00:00:00,2014,November,Tuesday,4,308,19,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,ROUBAIX EXPERT,MT,26,BLKRED,3500.0,STOLEN,23124,"{'type': 'Point', 'coordinates': (-79.42600973, 43.69612297)}"
-23141,7415,GO-20201866394,THEFT UNDER - BICYCLE,2020-09-29T00:00:00,2020,September,Tuesday,29,273,20,2020-10-05T00:00:00,2020,October,Monday,5,279,10,D32,Toronto,105,Lawrence Park North (105),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,21,SIL,300.0,STOLEN,23125,"{'type': 'Point', 'coordinates': (-79.40453282, 43.73436224)}"
-23142,16112,GO-20209032083,THEFT UNDER,2020-11-14T00:00:00,2020,November,Saturday,14,319,14,2020-12-15T00:00:00,2020,December,Tuesday,15,350,11,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,TR,CALIBER 9 - 201,MT,22,GRY,2000.0,STOLEN,23126,"{'type': 'Point', 'coordinates': (-79.39277875000002, 43.70786225)}"
-23143,15579,GO-20162144725,B&E,2016-12-03T00:00:00,2016,December,Saturday,3,338,3,2016-12-03T00:00:00,2016,December,Saturday,3,338,12,D13,Toronto,101,Forest Hill South (101),"Apartment (Rooming House, Condo)",Apartment,DAHON,SPEED D7,RG,7,BLKRED,700.0,STOLEN,23340,"{'type': 'Point', 'coordinates': (-79.41434857, 43.68630427)}"
-23144,22544,GO-20201620331,B&E,2020-08-28T00:00:00,2020,August,Friday,28,241,4,2020-08-28T00:00:00,2020,August,Friday,28,241,7,D53,Toronto,104,Mount Pleasant West (104),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TREK,DOMANE +LP,RG,6,REDBLK,8500.0,STOLEN,23127,"{'type': 'Point', 'coordinates': (-79.39690117, 43.70259578)}"
-23145,18761,GO-20209024137,THEFT UNDER,2020-09-22T00:00:00,2020,September,Tuesday,22,266,10,2020-09-22T00:00:00,2020,September,Tuesday,22,266,23,D53,Toronto,100,Yonge-Eglinton (100),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,TOURING PRO,TO,24,GLD,900.0,STOLEN,23128,"{'type': 'Point', 'coordinates': (-79.40079865, 43.70776148)}"
-23146,9153,GO-20143238206,B&E,2014-10-27T00:00:00,2014,October,Monday,27,300,9,2014-11-04T00:00:00,2014,November,Tuesday,4,308,19,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,JAMIS,ENDURA SPORT,MT,26,WHI,1200.0,STOLEN,23129,"{'type': 'Point', 'coordinates': (-79.42600973, 43.69612297)}"
-23147,9157,GO-20143072581,THEFT UNDER,2014-10-09T00:00:00,2014,October,Thursday,9,282,2,2014-10-09T00:00:00,2014,October,Thursday,9,282,12,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,,OT,24,GRY,1000.0,STOLEN,23130,"{'type': 'Point', 'coordinates': (-79.42683984, 43.69833108)}"
-23148,9328,GO-2015452989,THEFT UNDER,2015-03-16T00:00:00,2015,March,Monday,16,75,16,2015-03-17T00:00:00,2015,March,Tuesday,17,76,18,D13,Toronto,106,Humewood-Cedarvale (106),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,BMW,MT,10,WHI,700.0,STOLEN,23131,"{'type': 'Point', 'coordinates': (-79.42593128, 43.69318782)}"
-23149,9346,GO-20159001501,THEFT UNDER,2015-03-23T00:00:00,2015,March,Monday,23,82,23,2015-03-24T00:00:00,2015,March,Tuesday,24,83,8,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,QUICK,RG,27,WHI,0.0,STOLEN,23132,"{'type': 'Point', 'coordinates': (-79.42502003, 43.68933622)}"
-23150,9347,GO-20159001501,THEFT UNDER,2015-03-23T00:00:00,2015,March,Monday,23,82,23,2015-03-24T00:00:00,2015,March,Tuesday,24,83,8,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,DURANGO 2,MT,27,GRY,0.0,STOLEN,23133,"{'type': 'Point', 'coordinates': (-79.42502003, 43.68933622)}"
-23151,9353,GO-20159001539,THEFT UNDER,2015-03-24T00:00:00,2015,March,Tuesday,24,83,17,2015-03-25T00:00:00,2015,March,Wednesday,25,84,17,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,QUICK,RG,21,BLU,869.0,STOLEN,23134,"{'type': 'Point', 'coordinates': (-79.42228634, 43.69305808)}"
-23152,9518,GO-20159002427,THEFT UNDER,2014-04-19T00:00:00,2014,April,Saturday,19,109,18,2015-05-04T00:00:00,2015,May,Monday,4,124,11,D13,Toronto,106,Humewood-Cedarvale (106),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,21,DGR,500.0,STOLEN,23135,"{'type': 'Point', 'coordinates': (-79.42083062, 43.68619468)}"
-23153,9860,GO-20151055997,B&E,2015-06-18T00:00:00,2015,June,Thursday,18,169,21,2015-06-23T00:00:00,2015,June,Tuesday,23,174,11,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,,OT,21,BLK,913.0,STOLEN,23136,"{'type': 'Point', 'coordinates': (-79.4230398, 43.68837452)}"
-23154,9861,GO-20151055997,B&E,2015-06-18T00:00:00,2015,June,Thursday,18,169,21,2015-06-23T00:00:00,2015,June,Tuesday,23,174,11,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,,MT,21,BLU,500.0,STOLEN,23137,"{'type': 'Point', 'coordinates': (-79.4230398, 43.68837452)}"
-23155,10015,GO-20151198875,SUSPICIOUS INCIDENT,2015-07-15T00:00:00,2015,July,Wednesday,15,196,9,2015-07-15T00:00:00,2015,July,Wednesday,15,196,9,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,VALENCE,RC,21,BLUWHI,,STOLEN,23138,"{'type': 'Point', 'coordinates': (-79.4247309, 43.68605596)}"
-23156,10051,GO-20151217379,THEFT UNDER,2015-07-17T00:00:00,2015,July,Friday,17,198,9,2015-07-17T00:00:00,2015,July,Friday,17,198,21,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KHS,DJ25,MT,21,GRYSIL,500.0,STOLEN,23139,"{'type': 'Point', 'coordinates': (-79.4268815, 43.69007185)}"
-23157,10140,GO-20159005141,THEFT UNDER,2015-07-15T00:00:00,2015,July,Wednesday,15,196,18,2015-07-30T00:00:00,2015,July,Thursday,30,211,10,D13,Toronto,106,Humewood-Cedarvale (106),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,SOLARIS,RG,18,BLK,169.0,STOLEN,23140,"{'type': 'Point', 'coordinates': (-79.4308662, 43.69985233)}"
-23158,10191,GO-20151331884,THEFT UNDER,2015-08-03T00:00:00,2015,August,Monday,3,215,23,2015-08-04T00:00:00,2015,August,Tuesday,4,216,8,D13,Toronto,106,Humewood-Cedarvale (106),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,,MT,21,GRY,1000.0,STOLEN,23141,"{'type': 'Point', 'coordinates': (-79.42811547, 43.68534719)}"
-23159,10192,GO-20151331884,THEFT UNDER,2015-08-03T00:00:00,2015,August,Monday,3,215,23,2015-08-04T00:00:00,2015,August,Tuesday,4,216,8,D13,Toronto,106,Humewood-Cedarvale (106),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,,MT,21,BLU,600.0,STOLEN,23142,"{'type': 'Point', 'coordinates': (-79.42811547, 43.68534719)}"
-23160,10218,GO-20159005351,THEFT UNDER,2015-08-05T00:00:00,2015,August,Wednesday,5,217,3,2015-08-05T00:00:00,2015,August,Wednesday,5,217,5,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,,RG,10,,200.0,STOLEN,23143,"{'type': 'Point', 'coordinates': (-79.42385723, 43.68395148)}"
-23161,10344,GO-20159006346,THEFT UNDER,2015-08-02T00:00:00,2015,August,Sunday,2,214,14,2015-08-24T00:00:00,2015,August,Monday,24,236,14,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,HUDSON SPORT LA,RG,7,BLK,400.0,STOLEN,23144,"{'type': 'Point', 'coordinates': (-79.42385723, 43.68395148)}"
-23162,2419,GO-20189016704,THEFT UNDER - BICYCLE,2018-05-28T00:00:00,2018,May,Monday,28,148,3,2018-05-29T00:00:00,2018,May,Tuesday,29,149,18,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OT,HYBRID,OT,21,GRN,350.0,STOLEN,23145,"{'type': 'Point', 'coordinates': (-79.39083961, 43.69949369)}"
-23163,7316,GO-20209023995,THEFT UNDER - BICYCLE,2020-08-12T00:00:00,2020,August,Wednesday,12,225,18,2020-09-21T00:00:00,2020,September,Monday,21,265,18,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OT,VADO- COMO 3.0,EL,9,PLE,4000.0,STOLEN,23146,"{'type': 'Point', 'coordinates': (-79.39743388, 43.70692304)}"
-23164,10367,GO-20159006516,THEFT UNDER,2015-08-29T00:00:00,2015,August,Saturday,29,241,22,2015-08-30T00:00:00,2015,August,Sunday,30,242,10,D13,Toronto,106,Humewood-Cedarvale (106),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,,RG,18,,100.0,STOLEN,23147,"{'type': 'Point', 'coordinates': (-79.42144827, 43.68771819)}"
-23165,10384,GO-20151532305,B&E,2015-09-05T00:00:00,2015,September,Saturday,5,248,0,2015-09-05T00:00:00,2015,September,Saturday,5,248,10,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,ALITE,RG,20,PLE,500.0,STOLEN,23148,"{'type': 'Point', 'coordinates': (-79.42928213, 43.69395662)}"
-23166,10393,GO-20151544188,B&E,2015-08-28T00:00:00,2015,August,Friday,28,240,0,2015-09-07T00:00:00,2015,September,Monday,7,250,12,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,FCR3,OT,21,RED,1000.0,STOLEN,23149,"{'type': 'Point', 'coordinates': (-79.42614121, 43.69527309)}"
-23167,10401,GO-20151553820,B&E,2015-09-08T00:00:00,2015,September,Tuesday,8,251,22,2015-09-08T00:00:00,2015,September,Tuesday,8,251,22,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NAKAMURA,U/K,MT,8,BLU,180.0,STOLEN,23150,"{'type': 'Point', 'coordinates': (-79.43291496, 43.69703637)}"
-23168,10489,GO-20159007357,THEFT UNDER,2015-09-15T00:00:00,2015,September,Tuesday,15,258,20,2015-09-18T00:00:00,2015,September,Friday,18,261,11,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,ACE,MT,7,BLK,450.0,STOLEN,23151,"{'type': 'Point', 'coordinates': (-79.42587442, 43.68583832)}"
-23169,10515,GO-20151630914,THEFT UNDER,2015-09-20T00:00:00,2015,September,Sunday,20,263,16,2015-09-21T00:00:00,2015,September,Monday,21,264,8,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,7.2X,OT,11,GRN,500.0,STOLEN,23152,"{'type': 'Point', 'coordinates': (-79.42192234, 43.68889615)}"
-23170,10516,GO-20151630914,THEFT UNDER,2015-09-20T00:00:00,2015,September,Sunday,20,263,16,2015-09-21T00:00:00,2015,September,Monday,21,264,8,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,RG,10,WHI,500.0,STOLEN,23153,"{'type': 'Point', 'coordinates': (-79.42192234, 43.68889615)}"
-23171,10779,GO-20159009786,THEFT UNDER,2015-11-15T00:00:00,2015,November,Sunday,15,319,21,2015-11-16T00:00:00,2015,November,Monday,16,320,9,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,DOLCE ROAD BIKE,RC,27,RED,1600.0,STOLEN,23154,"{'type': 'Point', 'coordinates': (-79.42192234, 43.68889615)}"
-23172,11069,GO-20169002603,THEFT UNDER - BICYCLE,2016-03-21T00:00:00,2016,March,Monday,21,81,4,2016-03-21T00:00:00,2016,March,Monday,21,81,6,D13,Toronto,106,Humewood-Cedarvale (106),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,ROCKHOPPER 29ER,MT,21,GRN,800.0,STOLEN,23155,"{'type': 'Point', 'coordinates': (-79.43282823, 43.6994353)}"
-23173,11116,GO-2016594617,THEFT UNDER - BICYCLE,2016-04-07T00:00:00,2016,April,Thursday,7,98,23,2016-04-08T00:00:00,2016,April,Friday,8,99,7,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,YUKON,MT,12,BLK,,STOLEN,23156,"{'type': 'Point', 'coordinates': (-79.43121333, 43.687229310000006)}"
-23174,11520,GO-20161033439,THEFT UNDER,2016-06-13T00:00:00,2016,June,Monday,13,165,20,2016-06-14T00:00:00,2016,June,Tuesday,14,166,8,D13,Toronto,106,Humewood-Cedarvale (106),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN,,RG,1,SILBGE,800.0,STOLEN,23157,"{'type': 'Point', 'coordinates': (-79.41919633, 43.68541048)}"
-23175,17918,GO-20142115760,THEFT UNDER,2014-05-20T00:00:00,2014,May,Tuesday,20,140,8,2014-05-20T00:00:00,2014,May,Tuesday,20,140,13,D32,Toronto,105,Lawrence Park North (105),Ttc Subway Station,Transit,MAXAM,TRAXION,MT,21,PNKPLE,1200.0,STOLEN,23365,"{'type': 'Point', 'coordinates': (-79.40215463, 43.72510266)}"
-23176,12324,GO-20169010339,THEFT UNDER,2016-09-12T00:00:00,2016,September,Monday,12,256,21,2016-09-13T00:00:00,2016,September,Tuesday,13,257,0,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,PALERMO,RG,24,BLU,400.0,STOLEN,23158,"{'type': 'Point', 'coordinates': (-79.43180255, 43.68881282000001)}"
-23177,12325,GO-20169010339,THEFT UNDER,2016-09-12T00:00:00,2016,September,Monday,12,256,21,2016-09-13T00:00:00,2016,September,Tuesday,13,257,0,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,VANTARA COMP,RG,24,BLK,700.0,STOLEN,23159,"{'type': 'Point', 'coordinates': (-79.43180255, 43.68881282000001)}"
-23178,12852,GO-20162155669,THEFT UNDER - BICYCLE,2016-11-10T00:00:00,2016,November,Thursday,10,315,18,2016-12-07T00:00:00,2016,December,Wednesday,7,342,8,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MIELE,URBANIA,OT,21,GRYWHI,346.0,STOLEN,23160,"{'type': 'Point', 'coordinates': (-79.42629104, 43.69437977)}"
-23179,12853,GO-20162155669,THEFT UNDER - BICYCLE,2016-11-10T00:00:00,2016,November,Thursday,10,315,18,2016-12-07T00:00:00,2016,December,Wednesday,7,342,8,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MIELE,UMBRIA,OT,21,BLU,396.0,STOLEN,23161,"{'type': 'Point', 'coordinates': (-79.42629104, 43.69437977)}"
-23180,14857,GO-20191309232,THEFT UNDER - BICYCLE,2019-07-12T00:00:00,2019,July,Friday,12,193,21,2019-07-13T00:00:00,2019,July,Saturday,13,194,8,D13,Toronto,106,Humewood-Cedarvale (106),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,VFR-4 STEP-THRU,RC,21,BLK,630.0,STOLEN,23162,"{'type': 'Point', 'coordinates': (-79.42998502, 43.6976551)}"
-23181,14861,GO-20199023841,THEFT UNDER,2019-07-25T00:00:00,2019,July,Thursday,25,206,19,2019-07-26T00:00:00,2019,July,Friday,26,207,10,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,,MT,21,BLK,600.0,STOLEN,23163,"{'type': 'Point', 'coordinates': (-79.43097956, 43.69744698)}"
-23182,14862,GO-20199024148,THEFT UNDER,2019-07-28T00:00:00,2019,July,Sunday,28,209,15,2019-07-28T00:00:00,2019,July,Sunday,28,209,18,D13,Toronto,106,Humewood-Cedarvale (106),"Apartment (Rooming House, Condo)",Apartment,OT,HYDRA WOMEN 7,OT,40,BLU,499.0,STOLEN,23164,"{'type': 'Point', 'coordinates': (-79.42083062, 43.68619468)}"
-23183,14867,GO-20199029080,THEFT UNDER - BICYCLE,2019-08-25T00:00:00,2019,August,Sunday,25,237,11,2019-09-07T00:00:00,2019,September,Saturday,7,250,12,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,OPUS,RG,10,BLK,600.0,STOLEN,23165,"{'type': 'Point', 'coordinates': (-79.43078086, 43.68966174)}"
-23184,14883,GO-20201283590,B&E,2020-07-11T00:00:00,2020,July,Saturday,11,193,9,2020-07-11T00:00:00,2020,July,Saturday,11,193,9,D13,Toronto,106,Humewood-Cedarvale (106),"Apartment (Rooming House, Condo)",Apartment,FOCUS,,TO,24,WHIBLK,6000.0,STOLEN,23166,"{'type': 'Point', 'coordinates': (-79.41826195, 43.68316749)}"
-23185,14910,GO-20202333883,B&E,2020-12-11T00:00:00,2020,December,Friday,11,346,8,2020-12-11T00:00:00,2020,December,Friday,11,346,8,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,CLASSIC CRUISER,RG,12,GRY,245.0,RECOVERED,23167,"{'type': 'Point', 'coordinates': (-79.43593562, 43.69550856)}"
-23186,15313,GO-20142033262,B&E,2014-05-07T00:00:00,2014,May,Wednesday,7,127,0,2014-05-07T00:00:00,2014,May,Wednesday,7,127,16,D13,Toronto,106,Humewood-Cedarvale (106),"Apartment (Rooming House, Condo)",Apartment,OTHER,UNKNOWN,OT,12,,60.0,STOLEN,23168,"{'type': 'Point', 'coordinates': (-79.42472551, 43.69902347)}"
-23187,15314,GO-20142033262,B&E,2014-05-07T00:00:00,2014,May,Wednesday,7,127,0,2014-05-07T00:00:00,2014,May,Wednesday,7,127,16,D13,Toronto,106,Humewood-Cedarvale (106),"Apartment (Rooming House, Condo)",Apartment,OTHER,UNKNOWN,OT,12,,60.0,STOLEN,23169,"{'type': 'Point', 'coordinates': (-79.42472551, 43.69902347)}"
-23188,15332,GO-20149004721,THEFT UNDER,2014-06-25T00:00:00,2014,June,Wednesday,25,176,23,2014-07-05T00:00:00,2014,July,Saturday,5,186,9,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,,MT,21,GRN,700.0,STOLEN,23170,"{'type': 'Point', 'coordinates': (-79.43291496, 43.69703637)}"
-23189,15369,GO-20149007580,THEFT UNDER,2014-10-08T00:00:00,2014,October,Wednesday,8,281,19,2014-10-14T00:00:00,2014,October,Tuesday,14,287,19,D13,Toronto,106,Humewood-Cedarvale (106),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,ROCKHOPPER,MT,27,RED,900.0,STOLEN,23171,"{'type': 'Point', 'coordinates': (-79.43352561, 43.6960026)}"
-23190,15371,GO-20143113375,THEFT UNDER,2014-10-15T00:00:00,2014,October,Wednesday,15,288,20,2014-10-16T00:00:00,2014,October,Thursday,16,289,9,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MOUNTAIN CO-OP,,OT,27,WHI,1800.0,STOLEN,23172,"{'type': 'Point', 'coordinates': (-79.42962718, 43.696828610000004)}"
-23191,15389,GO-20159001363,THEFT UNDER,2015-03-15T00:00:00,2015,March,Sunday,15,74,11,2015-03-17T00:00:00,2015,March,Tuesday,17,76,11,D13,Toronto,106,Humewood-Cedarvale (106),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,MT,18,WHI,700.0,STOLEN,23173,"{'type': 'Point', 'coordinates': (-79.42658680000001, 43.69211091)}"
-23192,15390,GO-20159001363,THEFT UNDER,2015-03-15T00:00:00,2015,March,Sunday,15,74,11,2015-03-17T00:00:00,2015,March,Tuesday,17,76,11,D13,Toronto,106,Humewood-Cedarvale (106),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,MT,18,BLK,1200.0,STOLEN,23174,"{'type': 'Point', 'coordinates': (-79.42658680000001, 43.69211091)}"
-23193,15394,GO-20159002115,THEFT UNDER,2015-04-13T00:00:00,2015,April,Monday,13,103,15,2015-04-20T00:00:00,2015,April,Monday,20,110,20,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,,TO,27,BLK,800.0,STOLEN,23175,"{'type': 'Point', 'coordinates': (-79.42891751, 43.68438822)}"
-23194,15404,GO-2015991636,THEFT UNDER,2015-06-10T00:00:00,2015,June,Wednesday,10,161,20,2015-06-13T00:00:00,2015,June,Saturday,13,164,11,D13,Toronto,106,Humewood-Cedarvale (106),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,,RG,21,BLK,400.0,STOLEN,23176,"{'type': 'Point', 'coordinates': (-79.43034384, 43.6944985)}"
-23195,15405,GO-2015991636,THEFT UNDER,2015-06-10T00:00:00,2015,June,Wednesday,10,161,20,2015-06-13T00:00:00,2015,June,Saturday,13,164,11,D13,Toronto,106,Humewood-Cedarvale (106),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,,MT,21,BLU,2500.0,STOLEN,23177,"{'type': 'Point', 'coordinates': (-79.43034384, 43.6944985)}"
-23196,15406,GO-2015991636,THEFT UNDER,2015-06-10T00:00:00,2015,June,Wednesday,10,161,20,2015-06-13T00:00:00,2015,June,Saturday,13,164,11,D13,Toronto,106,Humewood-Cedarvale (106),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,,RG,21,BLU,600.0,STOLEN,23178,"{'type': 'Point', 'coordinates': (-79.43034384, 43.6944985)}"
-23197,15424,GO-20159004621,THEFT UNDER,2015-07-15T00:00:00,2015,July,Wednesday,15,196,22,2015-07-16T00:00:00,2015,July,Thursday,16,197,11,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,,MT,21,DBL,500.0,STOLEN,23179,"{'type': 'Point', 'coordinates': (-79.42923586000002, 43.685121370000005)}"
-23198,15437,GO-20159005266,THEFT UNDER,2015-08-02T00:00:00,2015,August,Sunday,2,214,22,2015-08-03T00:00:00,2015,August,Monday,3,215,8,D13,Toronto,106,Humewood-Cedarvale (106),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,MT,10,,500.0,STOLEN,23180,"{'type': 'Point', 'coordinates': (-79.42923586000002, 43.685121370000005)}"
-23199,15458,GO-20151637905,B&E,2015-09-21T00:00:00,2015,September,Monday,21,264,23,2015-09-22T00:00:00,2015,September,Tuesday,22,265,10,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,,MT,21,BLKGRN,1800.0,STOLEN,23181,"{'type': 'Point', 'coordinates': (-79.42614121, 43.69527309)}"
-23200,15513,GO-20169006346,THEFT UNDER,2016-06-17T00:00:00,2016,June,Friday,17,169,18,2016-06-25T00:00:00,2016,June,Saturday,25,177,15,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,TALON,MT,21,GRY,800.0,STOLEN,23182,"{'type': 'Point', 'coordinates': (-79.43193071, 43.69724944)}"
-23201,15622,GO-20179012827,THEFT UNDER - BICYCLE,2017-08-18T00:00:00,2017,August,Friday,18,230,23,2017-08-19T00:00:00,2017,August,Saturday,19,231,16,D13,Toronto,106,Humewood-Cedarvale (106),"Open Areas (Lakes, Parks, Rivers)",Outside,TR,FX 2,RG,10,BLK,600.0,STOLEN,23183,"{'type': 'Point', 'coordinates': (-79.42684207, 43.68330852)}"
-23202,15628,GO-20173060708,THEFT OVER - BICYCLE,2017-07-26T00:00:00,2017,July,Wednesday,26,207,17,2017-11-24T00:00:00,2017,November,Friday,24,328,12,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DEVINCI,,OT,12,,,STOLEN,23184,"{'type': 'Point', 'coordinates': (-79.43411026, 43.69745675)}"
-23203,15629,GO-20173060708,THEFT OVER - BICYCLE,2017-07-26T00:00:00,2017,July,Wednesday,26,207,17,2017-11-24T00:00:00,2017,November,Friday,24,328,12,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,OT,12,BLUBLK,5000.0,STOLEN,23185,"{'type': 'Point', 'coordinates': (-79.43411026, 43.69745675)}"
-23204,15630,GO-20179021835,THEFT UNDER - BICYCLE,2017-12-08T00:00:00,2017,December,Friday,8,342,15,2017-12-10T00:00:00,2017,December,Sunday,10,344,15,D13,Toronto,106,Humewood-Cedarvale (106),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RG,12,PLE,200.0,STOLEN,23186,"{'type': 'Point', 'coordinates': (-79.41957799, 43.68637133)}"
-23205,18237,GO-20189023161,THEFT UNDER - BICYCLE,2018-07-19T00:00:00,2018,July,Thursday,19,200,2,2018-07-20T00:00:00,2018,July,Friday,20,201,10,D13,Toronto,106,Humewood-Cedarvale (106),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,TO,8,SIL,900.0,STOLEN,23187,"{'type': 'Point', 'coordinates': (-79.42203217000001, 43.68593624)}"
-23206,25633,GO-20199018530,THEFT UNDER - BICYCLE,2019-06-13T00:00:00,2019,June,Thursday,13,164,11,2019-06-13T00:00:00,2019,June,Thursday,13,164,20,D53,Toronto,103,Lawrence Park South (103),Schools During Supervised Activity,Educational,TR,3500 D,MT,15,BLK,586.0,STOLEN,23299,"{'type': 'Point', 'coordinates': (-79.41016945, 43.72248185000001)}"
-23207,18241,GO-20181588909,THEFT UNDER - BICYCLE,2018-08-16T00:00:00,2018,August,Thursday,16,228,10,2018-08-28T00:00:00,2018,August,Tuesday,28,240,6,D13,Toronto,106,Humewood-Cedarvale (106),"Apartment (Rooming House, Condo)",Apartment,HUFFY,H10TB,MT,18,BLURED,130.0,STOLEN,23188,"{'type': 'Point', 'coordinates': (-79.42083062, 43.68619468)}"
-23208,18265,GO-2020664872,B&E,2020-04-04T00:00:00,2020,April,Saturday,4,95,21,2020-04-05T00:00:00,2020,April,Sunday,5,96,14,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,JAMIS,,MT,18,RED,,STOLEN,23189,"{'type': 'Point', 'coordinates': (-79.43653885, 43.6969353)}"
-23209,18269,GO-20209015833,THEFT UNDER,2020-06-16T00:00:00,2020,June,Tuesday,16,168,1,2020-06-21T00:00:00,2020,June,Sunday,21,173,9,D13,Toronto,106,Humewood-Cedarvale (106),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GT,,MT,18,BLU,500.0,STOLEN,23190,"{'type': 'Point', 'coordinates': (-79.43570105, 43.69487807)}"
-23210,18277,GO-20201455565,B&E,2020-07-17T00:00:00,2020,July,Friday,17,199,12,2020-08-04T00:00:00,2020,August,Tuesday,4,217,19,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,MADONE 3.1,MT,0,BLK,2500.0,STOLEN,23191,"{'type': 'Point', 'coordinates': (-79.42763372, 43.69724216)}"
-23211,18278,GO-20201455565,B&E,2020-07-17T00:00:00,2020,July,Friday,17,199,12,2020-08-04T00:00:00,2020,August,Tuesday,4,217,19,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,ARIEL HYDRO,MT,0,LBL,1170.0,STOLEN,23192,"{'type': 'Point', 'coordinates': (-79.42763372, 43.69724216)}"
-23212,18302,GO-20201754354,B&E,2020-09-16T00:00:00,2020,September,Wednesday,16,260,6,2020-09-16T00:00:00,2020,September,Wednesday,16,260,10,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ROCKY MOUNTAIN,SOUL 10,MT,21,GRN,1000.0,STOLEN,23193,"{'type': 'Point', 'coordinates': (-79.42593128, 43.69318782)}"
-23213,18303,GO-20201754354,B&E,2020-09-16T00:00:00,2020,September,Wednesday,16,260,6,2020-09-16T00:00:00,2020,September,Wednesday,16,260,10,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,AVALANCHE,MT,21,,600.0,STOLEN,23194,"{'type': 'Point', 'coordinates': (-79.42593128, 43.69318782)}"
-23214,18306,GO-20209027120,THEFT UNDER,2020-10-19T00:00:00,2020,October,Monday,19,293,17,2020-10-20T00:00:00,2020,October,Tuesday,20,294,22,D13,Toronto,106,Humewood-Cedarvale (106),Schools During Un-Supervised Activity,Educational,NO,2011 PINNACLE,MT,21,RED,500.0,STOLEN,23195,"{'type': 'Point', 'coordinates': (-79.43330144, 43.69212919)}"
-23215,18367,GO-20142849159,THEFT UNDER,2014-08-23T00:00:00,2014,August,Saturday,23,235,21,2014-09-05T00:00:00,2014,September,Friday,5,248,14,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DEVINCI,,MT,24,BLU,150.0,STOLEN,23196,"{'type': 'Point', 'coordinates': (-79.42542218, 43.69772201)}"
-23216,18368,GO-20142849159,THEFT UNDER,2014-08-23T00:00:00,2014,August,Saturday,23,235,21,2014-09-05T00:00:00,2014,September,Friday,5,248,14,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,,MT,18,PLE,400.0,STOLEN,23197,"{'type': 'Point', 'coordinates': (-79.42542218, 43.69772201)}"
-23217,18382,GO-20143294293,PROPERTY - LOST,2014-10-10T00:00:00,2014,October,Friday,10,283,16,2014-11-13T00:00:00,2014,November,Thursday,13,317,15,D13,Toronto,106,Humewood-Cedarvale (106),"Police / Courts (Parole Board, Probation Office)",Other,SUPERCYCLE,,RG,21,BLU,,UNKNOWN,23198,"{'type': 'Point', 'coordinates': (-79.4364213, 43.69868573)}"
-23218,18388,GO-20159001447,THEFT UNDER,2015-03-19T00:00:00,2015,March,Thursday,19,78,15,2015-03-21T00:00:00,2015,March,Saturday,21,80,16,D13,Toronto,106,Humewood-Cedarvale (106),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RM,METRO 10,OT,24,GRY,0.0,STOLEN,23199,"{'type': 'Point', 'coordinates': (-79.42629104, 43.69437977)}"
-23219,18418,GO-20151049635,THEFT UNDER,2015-06-21T00:00:00,2015,June,Sunday,21,172,22,2015-06-22T00:00:00,2015,June,Monday,22,173,12,D13,Toronto,106,Humewood-Cedarvale (106),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SCHWINN,,MT,0,ONGRED,0.0,STOLEN,23200,"{'type': 'Point', 'coordinates': (-79.42083062, 43.68619468)}"
-23220,18424,GO-20159004314,THEFT UNDER,2015-07-06T00:00:00,2015,July,Monday,6,187,14,2015-07-08T00:00:00,2015,July,Wednesday,8,189,18,D13,Toronto,106,Humewood-Cedarvale (106),"Open Areas (Lakes, Parks, Rivers)",Outside,GI,FAST ROAD,OT,20,BLK,1500.0,STOLEN,23201,"{'type': 'Point', 'coordinates': (-79.42658680000001, 43.69211091)}"
-23221,18435,GO-20151295198,THEFT UNDER,2015-07-26T00:00:00,2015,July,Sunday,26,207,0,2015-07-29T00:00:00,2015,July,Wednesday,29,210,19,D13,Toronto,106,Humewood-Cedarvale (106),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OPUS,,RC,21,BLU,,STOLEN,23202,"{'type': 'Point', 'coordinates': (-79.42473034, 43.68908849)}"
-23222,18438,GO-20159005242,THEFT UNDER,2015-08-01T00:00:00,2015,August,Saturday,1,213,13,2015-08-01T00:00:00,2015,August,Saturday,1,213,17,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SUB 30,RG,15,BRN,500.0,STOLEN,23203,"{'type': 'Point', 'coordinates': (-79.42193538, 43.68241953)}"
-23223,18451,GO-20151500084,THEFT UNDER,2015-08-26T00:00:00,2015,August,Wednesday,26,238,20,2015-08-31T00:00:00,2015,August,Monday,31,243,12,D13,Toronto,106,Humewood-Cedarvale (106),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TREK,FX7.1,MT,0,GRYBLK,500.0,STOLEN,23204,"{'type': 'Point', 'coordinates': (-79.42140231, 43.68445552)}"
-23224,18455,GO-20159006797,THEFT UNDER,2015-09-05T00:00:00,2015,September,Saturday,5,248,23,2015-09-06T00:00:00,2015,September,Sunday,6,249,9,D13,Toronto,106,Humewood-Cedarvale (106),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,,RG,24,DGR,500.0,STOLEN,23205,"{'type': 'Point', 'coordinates': (-79.42144827, 43.68771819)}"
-23225,18457,GO-20151545566,THEFT UNDER,2015-09-02T00:00:00,2015,September,Wednesday,2,245,20,2015-09-07T00:00:00,2015,September,Monday,7,250,16,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,MT,21,SIL,700.0,STOLEN,23206,"{'type': 'Point', 'coordinates': (-79.43152988, 43.69506079)}"
-23226,18458,GO-20151545566,THEFT UNDER,2015-09-02T00:00:00,2015,September,Wednesday,2,245,20,2015-09-07T00:00:00,2015,September,Monday,7,250,16,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,,MT,21,WHI,700.0,STOLEN,23207,"{'type': 'Point', 'coordinates': (-79.43152988, 43.69506079)}"
-23227,18481,GO-2016704416,THEFT UNDER - BICYCLE,2016-04-25T00:00:00,2016,April,Monday,25,116,0,2016-04-25T00:00:00,2016,April,Monday,25,116,11,D13,Toronto,106,Humewood-Cedarvale (106),"Apartment (Rooming House, Condo)",Apartment,OTHER,TMC BRUTE - 60V,EL,0,DGR,2100.0,STOLEN,23208,"{'type': 'Point', 'coordinates': (-79.42270739, 43.69410471)}"
-23228,21381,GO-20161057423,B&E,2016-06-17T00:00:00,2016,June,Friday,17,169,15,2016-06-18T00:00:00,2016,June,Saturday,18,170,12,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,SL4 COMP,OT,10,,,STOLEN,23209,"{'type': 'Point', 'coordinates': (-79.42854926, 43.69527557)}"
-23229,11166,GO-20169003643,THEFT UNDER - BICYCLE,2016-04-20T00:00:00,2016,April,Wednesday,20,111,11,2016-04-20T00:00:00,2016,April,Wednesday,20,111,22,D53,Toronto,101,Forest Hill South (101),Schools During Supervised Activity,Educational,TR,7.5 FX (2009 MA,OT,9,GLD,1000.0,STOLEN,23210,"{'type': 'Point', 'coordinates': (-79.40297702, 43.69078249)}"
-23230,6817,GO-20201422645,THEFT UNDER - BICYCLE,2020-07-29T00:00:00,2020,July,Wednesday,29,211,23,2020-07-30T00:00:00,2020,July,Thursday,30,212,22,D53,Toronto,103,Lawrence Park South (103),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,,OT,1,BLK,500.0,STOLEN,23218,"{'type': 'Point', 'coordinates': (-79.40353104, 43.72484272)}"
-23231,7728,GO-20141272882,THEFT UNDER,2013-07-01T00:00:00,2013,July,Monday,1,182,0,2014-01-03T00:00:00,2014,January,Friday,3,3,16,D32,Toronto,105,Lawrence Park North (105),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OPUS,URBANO SUSPENS,RG,10,PLE,600.0,STOLEN,23211,"{'type': 'Point', 'coordinates': (-79.40372174, 43.73113212)}"
-23232,8197,GO-20142343535,THEFT UNDER,2014-06-17T00:00:00,2014,June,Tuesday,17,168,15,2014-06-22T00:00:00,2014,June,Sunday,22,173,13,D32,Toronto,105,Lawrence Park North (105),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,MOUNTIN BIKE,MT,1,BLKGRN,500.0,STOLEN,23212,"{'type': 'Point', 'coordinates': (-79.40137389, 43.73160184)}"
-23233,8198,GO-20142343535,THEFT UNDER,2014-06-17T00:00:00,2014,June,Tuesday,17,168,15,2014-06-22T00:00:00,2014,June,Sunday,22,173,13,D32,Toronto,105,Lawrence Park North (105),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,KOKUA,RG,0,BLU,400.0,STOLEN,23213,"{'type': 'Point', 'coordinates': (-79.40137389, 43.73160184)}"
-23234,8287,GO-20142404392,THEFT UNDER,2014-06-30T00:00:00,2014,June,Monday,30,181,20,2014-07-05T00:00:00,2014,July,Saturday,5,186,18,D32,Toronto,105,Lawrence Park North (105),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,MOUNTAIN,MT,21,WHIRED,1000.0,STOLEN,23214,"{'type': 'Point', 'coordinates': (-79.40393857, 43.73188389)}"
-23235,6579,GO-20201278230,THEFT UNDER - BICYCLE,2020-06-29T00:00:00,2020,June,Monday,29,181,19,2020-07-10T00:00:00,2020,July,Friday,10,192,18,D53,Toronto,103,Lawrence Park South (103),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,UNKNOWN,FO,7,RED,350.0,STOLEN,23215,"{'type': 'Point', 'coordinates': (-79.40176614, 43.7231042)}"
-23236,9598,GO-20159002819,THEFT UNDER,2015-05-10T00:00:00,2015,May,Sunday,10,130,9,2015-05-17T00:00:00,2015,May,Sunday,17,137,15,D32,Toronto,105,Lawrence Park North (105),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,NAV282386849,TO,15,BLK,628.0,STOLEN,23216,"{'type': 'Point', 'coordinates': (-79.41365719, 43.72698968)}"
-23237,9599,GO-20159002819,THEFT UNDER,2015-05-10T00:00:00,2015,May,Sunday,10,130,9,2015-05-17T00:00:00,2015,May,Sunday,17,137,15,D32,Toronto,105,Lawrence Park North (105),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,TO,15,PNK,350.0,STOLEN,23217,"{'type': 'Point', 'coordinates': (-79.41365719, 43.72698968)}"
-23238,9566,GO-2015785016,THEFT UNDER,2015-05-07T00:00:00,2015,May,Thursday,7,127,8,2015-05-11T00:00:00,2015,May,Monday,11,131,12,D53,Toronto,103,Lawrence Park South (103),Schools During Supervised Activity,Educational,NAKAMURA,ROYAL,MT,7,WHI,338.0,STOLEN,23243,"{'type': 'Point', 'coordinates': (-79.41016945, 43.72248185000001)}"
-23239,9950,GO-20159004224,THEFT UNDER,2015-07-04T00:00:00,2015,July,Saturday,4,185,1,2015-07-06T00:00:00,2015,July,Monday,6,187,15,D32,Toronto,105,Lawrence Park North (105),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,MT,5,,400.0,STOLEN,23219,"{'type': 'Point', 'coordinates': (-79.39235782, 43.73052407)}"
-23240,2599,GO-20189019056,THEFT UNDER - BICYCLE,2018-06-16T00:00:00,2018,June,Saturday,16,167,10,2018-06-17T00:00:00,2018,June,Sunday,17,168,17,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,ESCAPE 3,OT,21,BLK,723.0,STOLEN,23220,"{'type': 'Point', 'coordinates': (-79.38959964, 43.69974904)}"
-23241,6911,GO-20201466434,THEFT UNDER - BICYCLE,2020-07-27T00:00:00,2020,July,Monday,27,209,12,2020-08-06T00:00:00,2020,August,Thursday,6,219,10,D53,Toronto,103,Lawrence Park South (103),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,DEVINCI,OSLO WF,OT,0,GRY,699.0,STOLEN,23221,"{'type': 'Point', 'coordinates': (-79.41142188, 43.72034952)}"
-23242,9951,GO-20159004224,THEFT UNDER,2015-07-04T00:00:00,2015,July,Saturday,4,185,1,2015-07-06T00:00:00,2015,July,Monday,6,187,15,D32,Toronto,105,Lawrence Park North (105),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,OT,21,,500.0,STOLEN,23222,"{'type': 'Point', 'coordinates': (-79.39235782, 43.73052407)}"
-23243,12843,GO-20162055532,THEFT UNDER - BICYCLE,2016-11-12T00:00:00,2016,November,Saturday,12,317,12,2016-11-19T00:00:00,2016,November,Saturday,19,324,11,D53,Toronto,101,Forest Hill South (101),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,HYBRID,MT,18,GRN,,STOLEN,23223,"{'type': 'Point', 'coordinates': (-79.41361308, 43.69097647)}"
-23244,2832,GO-20189022256,THEFT UNDER,2018-07-09T00:00:00,2018,July,Monday,9,190,8,2018-07-13T00:00:00,2018,July,Friday,13,194,8,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE,RG,24,BLU,500.0,STOLEN,23224,"{'type': 'Point', 'coordinates': (-79.38670348000001, 43.69930064)}"
-23245,6942,GO-20201488704,THEFT UNDER - BICYCLE,2020-08-09T00:00:00,2020,August,Sunday,9,222,8,2020-08-09T00:00:00,2020,August,Sunday,9,222,14,D53,Toronto,103,Lawrence Park South (103),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CCM,LADIES,MT,10,BLU,250.0,STOLEN,23225,"{'type': 'Point', 'coordinates': (-79.4114505, 43.71118622)}"
-23246,10841,GO-20152097889,THEFT UNDER,2015-12-07T00:00:00,2015,December,Monday,7,341,16,2015-12-07T00:00:00,2015,December,Monday,7,341,17,D32,Toronto,105,Lawrence Park North (105),Bar / Restaurant,Commercial,TREK,6 SERIES,MT,27,SILWHI,1500.0,STOLEN,23226,"{'type': 'Point', 'coordinates': (-79.40416691000001, 43.732898920000004)}"
-23247,12844,GO-20162055532,THEFT UNDER - BICYCLE,2016-11-12T00:00:00,2016,November,Saturday,12,317,12,2016-11-19T00:00:00,2016,November,Saturday,19,324,11,D53,Toronto,101,Forest Hill South (101),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,FX,MT,21,BLK,,STOLEN,23227,"{'type': 'Point', 'coordinates': (-79.41361308, 43.69097647)}"
-23248,2846,GO-20189022438,THEFT UNDER - BICYCLE,2018-07-14T00:00:00,2018,July,Saturday,14,195,17,2018-07-14T00:00:00,2018,July,Saturday,14,195,17,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,TR,NEKO 3,MT,27,GRY,1203.0,STOLEN,23228,"{'type': 'Point', 'coordinates': (-79.38670348000001, 43.69930064)}"
-23249,7368,GO-20209024681,THEFT UNDER - BICYCLE,2020-09-20T00:00:00,2020,September,Sunday,20,264,12,2020-09-27T00:00:00,2020,September,Sunday,27,271,12,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,TR,MARLIN 6,MT,24,BLK,800.0,STOLEN,23229,"{'type': 'Point', 'coordinates': (-79.3961644, 43.69612766)}"
-23250,18770,GO-20209027161,THEFT UNDER,2020-09-01T00:00:00,2020,September,Tuesday,1,245,9,2020-10-21T00:00:00,2020,October,Wednesday,21,295,9,D53,Toronto,100,Yonge-Eglinton (100),"Apartment (Rooming House, Condo)",Apartment,SU,UNSURE,RG,10,BLU,0.0,STOLEN,23230,"{'type': 'Point', 'coordinates': (-79.40609266, 43.70510606)}"
-23251,22546,GO-20209021903,THEFT UNDER - BICYCLE,2020-08-25T00:00:00,2020,August,Tuesday,25,238,18,2020-08-31T00:00:00,2020,August,Monday,31,244,14,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,DUAL SPORT 2 WO,OT,20,TRQ,850.0,STOLEN,23231,"{'type': 'Point', 'coordinates': (-79.39743388, 43.70692304)}"
-23252,18711,GO-20209017672,THEFT UNDER - BICYCLE,2020-06-25T00:00:00,2020,June,Thursday,25,177,8,2020-07-15T00:00:00,2020,July,Wednesday,15,197,21,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,SPECIALIZED,RG,24,BLU,0.0,STOLEN,23232,"{'type': 'Point', 'coordinates': (-79.39858741, 43.70798666)}"
-23253,6953,GO-20209020148,THEFT UNDER,2020-08-12T00:00:00,2020,August,Wednesday,12,225,21,2020-08-14T00:00:00,2020,August,Friday,14,227,9,D53,Toronto,103,Lawrence Park South (103),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,,RG,25,BLK,600.0,STOLEN,23233,"{'type': 'Point', 'coordinates': (-79.39881638, 43.72583452000001)}"
-23254,7088,GO-20209021446,THEFT UNDER - BICYCLE,2020-08-26T00:00:00,2020,August,Wednesday,26,239,10,2020-08-26T00:00:00,2020,August,Wednesday,26,239,16,D53,Toronto,103,Lawrence Park South (103),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,WOMEN'S QUICK 4,RG,24,WHI,0.0,STOLEN,23234,"{'type': 'Point', 'coordinates': (-79.41391309000001, 43.70782612)}"
-23255,7126,GO-20209021779,THEFT UNDER - BICYCLE,2020-08-25T00:00:00,2020,August,Tuesday,25,238,1,2020-08-30T00:00:00,2020,August,Sunday,30,243,11,D53,Toronto,103,Lawrence Park South (103),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,RC,18,GRY,1800.0,STOLEN,23235,"{'type': 'Point', 'coordinates': (-79.41109152, 43.71033082)}"
-23256,7127,GO-20209021779,THEFT UNDER - BICYCLE,2020-08-25T00:00:00,2020,August,Tuesday,25,238,1,2020-08-30T00:00:00,2020,August,Sunday,30,243,11,D53,Toronto,103,Lawrence Park South (103),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RC,18,GRY,1600.0,STOLEN,23236,"{'type': 'Point', 'coordinates': (-79.41109152, 43.71033082)}"
-23257,7169,GO-20209022233,THEFT UNDER - BICYCLE,2020-08-28T00:00:00,2020,August,Friday,28,241,19,2020-09-03T00:00:00,2020,September,Thursday,3,247,17,D53,Toronto,103,Lawrence Park South (103),"Single Home, House (Attach Garage, Cottage, Mobile)",House,IN,,MT,7,WHI,100.0,STOLEN,23237,"{'type': 'Point', 'coordinates': (-79.41016945, 43.72248185000001)}"
-23258,7331,GO-2020178832,THEFT OVER - BICYCLE,2020-09-18T00:00:00,2020,September,Friday,18,262,19,2020-09-23T00:00:00,2020,September,Wednesday,23,267,11,D53,Toronto,103,Lawrence Park South (103),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,FUEL 100,MT,21,OTH,6000.0,STOLEN,23238,"{'type': 'Point', 'coordinates': (-79.41142188, 43.72034952)}"
-23259,7501,GO-20209026846,THEFT UNDER,2020-10-15T00:00:00,2020,October,Thursday,15,289,9,2020-10-18T00:00:00,2020,October,Sunday,18,292,10,D53,Toronto,103,Lawrence Park South (103),Schools During Supervised Activity,Educational,NO,7.1,MT,21,BLK,400.0,STOLEN,23239,"{'type': 'Point', 'coordinates': (-79.41016945, 43.72248185000001)}"
-23260,7895,GO-20142039523,THEFT UNDER,2014-05-08T00:00:00,2014,May,Thursday,8,128,12,2014-05-08T00:00:00,2014,May,Thursday,8,128,16,D53,Toronto,103,Lawrence Park South (103),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,XTC2,MT,27,GRYRED,1300.0,STOLEN,23240,"{'type': 'Point', 'coordinates': (-79.40215463, 43.72510266)}"
-23261,8090,GO-20142271411,THEFT UNDER,2014-06-11T00:00:00,2014,June,Wednesday,11,162,21,2014-06-11T00:00:00,2014,June,Wednesday,11,162,21,D53,Toronto,103,Lawrence Park South (103),Schools During Un-Supervised Activity,Educational,SPECIALIZED,CROSS TRAIL,OT,12,GRY,839.0,STOLEN,23241,"{'type': 'Point', 'coordinates': (-79.38928893, 43.720565990000004)}"
-23262,9505,GO-20159002377,THEFT UNDER,2015-05-01T00:00:00,2015,May,Friday,1,121,12,2015-05-01T00:00:00,2015,May,Friday,1,121,16,D53,Toronto,103,Lawrence Park South (103),Schools During Supervised Activity,Educational,TR,TREK 8.3 DS,MT,8,,800.0,STOLEN,23242,"{'type': 'Point', 'coordinates': (-79.41016945, 43.72248185000001)}"
-23263,9986,GO-20159004424,THEFT UNDER,2015-07-08T00:00:00,2015,July,Wednesday,8,189,8,2015-07-11T00:00:00,2015,July,Saturday,11,192,12,D53,Toronto,103,Lawrence Park South (103),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ASPECT 740,MT,27,WHI,1000.0,STOLEN,23244,"{'type': 'Point', 'coordinates': (-79.39401374, 43.72512029)}"
-23264,9987,GO-20159004424,THEFT UNDER,2015-07-08T00:00:00,2015,July,Wednesday,8,189,8,2015-07-11T00:00:00,2015,July,Saturday,11,192,12,D53,Toronto,103,Lawrence Park South (103),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,MADONE 4.5,RC,10,WHI,4500.0,STOLEN,23245,"{'type': 'Point', 'coordinates': (-79.39401374, 43.72512029)}"
-23265,10252,GO-20159005700,THEFT UNDER,2015-08-15T00:00:00,2015,August,Saturday,15,227,13,2015-08-15T00:00:00,2015,August,Saturday,15,227,13,D53,Toronto,103,Lawrence Park South (103),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KO,,MT,15,WHI,1500.0,STOLEN,23246,"{'type': 'Point', 'coordinates': (-79.40518154, 43.7153848)}"
-23266,10253,GO-20159005700,THEFT UNDER,2015-08-15T00:00:00,2015,August,Saturday,15,227,13,2015-08-15T00:00:00,2015,August,Saturday,15,227,13,D53,Toronto,103,Lawrence Park South (103),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,,MT,15,BLU,600.0,STOLEN,23247,"{'type': 'Point', 'coordinates': (-79.40518154, 43.7153848)}"
-23267,10341,GO-20159006329,THEFT UNDER,2015-08-23T00:00:00,2015,August,Sunday,23,235,19,2015-08-24T00:00:00,2015,August,Monday,24,236,10,D53,Toronto,103,Lawrence Park South (103),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,ST TROPEZ,TO,20,BLK,580.0,STOLEN,23248,"{'type': 'Point', 'coordinates': (-79.39595039, 43.72299545)}"
-23268,10448,GO-20159007050,THEFT UNDER,2015-09-11T00:00:00,2015,September,Friday,11,254,8,2015-09-11T00:00:00,2015,September,Friday,11,254,16,D53,Toronto,103,Lawrence Park South (103),Schools During Un-Supervised Activity,Educational,UK,JACKSON,MT,21,BLK,1000.0,STOLEN,23249,"{'type': 'Point', 'coordinates': (-79.41016945, 43.72248185000001)}"
-23269,10671,GO-20159008866,THEFT UNDER,2015-10-14T00:00:00,2015,October,Wednesday,14,287,12,2015-10-22T00:00:00,2015,October,Thursday,22,295,9,D53,Toronto,103,Lawrence Park South (103),Schools During Un-Supervised Activity,Educational,OT,QUEST SPORT,TO,24,BLK,549.0,STOLEN,23250,"{'type': 'Point', 'coordinates': (-79.41016945, 43.72248185000001)}"
-23270,11175,GO-20151457912,PROPERTY - FOUND,2015-08-24T00:00:00,2015,August,Monday,24,236,17,2015-08-24T00:00:00,2015,August,Monday,24,236,18,D53,Toronto,103,Lawrence Park South (103),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,RINCON,MT,24,BLKGRY,,UNKNOWN,23251,"{'type': 'Point', 'coordinates': (-79.3938835, 43.72479004)}"
-23271,11393,GO-20169005030,THEFT UNDER - BICYCLE,2016-05-17T00:00:00,2016,May,Tuesday,17,138,11,2016-05-27T00:00:00,2016,May,Friday,27,148,16,D53,Toronto,103,Lawrence Park South (103),Schools During Un-Supervised Activity,Educational,TR,2007.01.02,RG,24,BLK,450.0,STOLEN,23252,"{'type': 'Point', 'coordinates': (-79.41016945, 43.72248185000001)}"
-23272,11563,GO-20161051440,B&E,2016-06-15T00:00:00,2016,June,Wednesday,15,167,8,2016-06-16T00:00:00,2016,June,Thursday,16,168,18,D53,Toronto,103,Lawrence Park South (103),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DEVINCI,LEO,OT,22,REDWHI,2000.0,STOLEN,23253,"{'type': 'Point', 'coordinates': (-79.4202925, 43.71315501)}"
-23273,11662,GO-20169006514,THEFT UNDER - BICYCLE,2016-06-28T00:00:00,2016,June,Tuesday,28,180,1,2016-06-29T00:00:00,2016,June,Wednesday,29,181,9,D53,Toronto,103,Lawrence Park South (103),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,7.2 FX,RG,21,WHI,650.0,STOLEN,23254,"{'type': 'Point', 'coordinates': (-79.41993651000001, 43.71227264)}"
-23274,12002,GO-20169008246,THEFT UNDER - BICYCLE,2016-08-03T00:00:00,2016,August,Wednesday,3,216,1,2016-08-05T00:00:00,2016,August,Friday,5,218,13,D53,Toronto,103,Lawrence Park South (103),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,XTC JUNIOR 2015,MT,11,BLU,350.0,STOLEN,23255,"{'type': 'Point', 'coordinates': (-79.40799618000001, 43.7195142)}"
-23275,12322,GO-20169010307,THEFT UNDER - BICYCLE,2016-09-03T00:00:00,2016,September,Saturday,3,247,9,2016-09-12T00:00:00,2016,September,Monday,12,256,9,D53,Toronto,103,Lawrence Park South (103),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,LEXA C,RG,21,LGR,900.0,STOLEN,23256,"{'type': 'Point', 'coordinates': (-79.41588751, 43.71121658)}"
-23276,12350,GO-20161639807,THEFT UNDER - BICYCLE,2016-09-11T00:00:00,2016,September,Sunday,11,255,21,2016-09-15T00:00:00,2016,September,Thursday,15,259,8,D53,Toronto,103,Lawrence Park South (103),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT ROAM,XR1,MT,18,BRZ,1100.0,STOLEN,23257,"{'type': 'Point', 'coordinates': (-79.40275143, 43.71591384)}"
-23277,13027,GO-20209011351,THEFT UNDER,2020-04-17T00:00:00,2020,April,Friday,17,108,0,2020-04-17T00:00:00,2020,April,Friday,17,108,12,D53,Toronto,103,Lawrence Park South (103),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,24,ONG,850.0,STOLEN,23258,"{'type': 'Point', 'coordinates': (-79.41416366, 43.72256698)}"
-23278,13062,GO-20209016566,THEFT UNDER - BICYCLE,2020-06-29T00:00:00,2020,June,Monday,29,181,18,2020-06-30T00:00:00,2020,June,Tuesday,30,182,15,D53,Toronto,103,Lawrence Park South (103),"Apartment (Rooming House, Condo)",Apartment,TR,TREK,TO,15,BLK,2500.0,STOLEN,23259,"{'type': 'Point', 'coordinates': (-79.41142188, 43.72034952)}"
-23279,13063,GO-20209016598,THEFT UNDER - BICYCLE,2020-06-25T00:00:00,2020,June,Thursday,25,177,19,2020-07-01T00:00:00,2020,July,Wednesday,1,183,10,D53,Toronto,103,Lawrence Park South (103),"Apartment (Rooming House, Condo)",Apartment,SC,LOCURA,MT,24,RED,150.0,STOLEN,23260,"{'type': 'Point', 'coordinates': (-79.40176614, 43.7231042)}"
-23280,14199,GO-20179015860,THEFT UNDER - BICYCLE,2017-09-26T00:00:00,2017,September,Tuesday,26,269,15,2017-09-26T00:00:00,2017,September,Tuesday,26,269,17,D53,Toronto,103,Lawrence Park South (103),Schools During Un-Supervised Activity,Educational,GI,ANYROAD,RC,24,LGR,1000.0,STOLEN,23261,"{'type': 'Point', 'coordinates': (-79.41016945, 43.72248185000001)}"
-23281,14239,GO-20189016858,THEFT UNDER - BICYCLE,2018-05-29T00:00:00,2018,May,Tuesday,29,149,16,2018-05-30T00:00:00,2018,May,Wednesday,30,150,20,D53,Toronto,103,Lawrence Park South (103),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,2015 SCALE 30,MT,18,GRY,1300.0,STOLEN,23262,"{'type': 'Point', 'coordinates': (-79.40621880000002, 43.71323435)}"
-23282,15971,GO-20151463198,THEFT UNDER,2015-08-19T00:00:00,2015,August,Wednesday,19,231,14,2015-08-25T00:00:00,2015,August,Tuesday,25,237,12,D53,Toronto,103,Lawrence Park South (103),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CANNONDALE,ADVENTURE 3,OT,18,BLKGRY,400.0,STOLEN,23263,"{'type': 'Point', 'coordinates': (-79.40069088, 43.7254115)}"
-23283,16019,GO-20169004585,THEFT UNDER - BICYCLE,2016-05-16T00:00:00,2016,May,Monday,16,137,9,2016-05-16T00:00:00,2016,May,Monday,16,137,20,D53,Toronto,103,Lawrence Park South (103),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,8.3 DS,OT,8,BLK,660.0,STOLEN,23264,"{'type': 'Point', 'coordinates': (-79.41016945, 43.72248185000001)}"
-23284,16099,GO-20209027790,THEFT UNDER,2020-10-26T00:00:00,2020,October,Monday,26,300,11,2020-10-26T00:00:00,2020,October,Monday,26,300,17,D53,Toronto,103,Lawrence Park South (103),Schools During Supervised Activity,Educational,CA,UNSURE,MT,20,BLK,0.0,STOLEN,23265,"{'type': 'Point', 'coordinates': (-79.41016945, 43.72248185000001)}"
-23285,19012,GO-20169007874,THEFT FROM MOTOR VEHICLE UNDER,2016-07-28T00:00:00,2016,July,Thursday,28,210,1,2016-07-28T00:00:00,2016,July,Thursday,28,210,10,D53,Toronto,103,Lawrence Park South (103),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,ACID NINE,BM,1,LGR,250.0,STOLEN,23266,"{'type': 'Point', 'coordinates': (-79.41236839, 43.70639373)}"
-23286,19136,GO-201876438,B&E,2018-01-13T00:00:00,2018,January,Saturday,13,13,4,2018-01-13T00:00:00,2018,January,Saturday,13,13,6,D53,Toronto,103,Lawrence Park South (103),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,CX TEAM,RC,22,GRY,1755.0,STOLEN,23267,"{'type': 'Point', 'coordinates': (-79.41142188, 43.72034952)}"
-23287,19299,GO-20199031785,THEFT UNDER - BICYCLE,2019-09-26T00:00:00,2019,September,Thursday,26,269,8,2019-09-27T00:00:00,2019,September,Friday,27,270,11,D53,Toronto,103,Lawrence Park South (103),Schools During Un-Supervised Activity,Educational,OT,JETT,MT,27,WHI,1400.0,STOLEN,23268,"{'type': 'Point', 'coordinates': (-79.41016945, 43.72248185000001)}"
-23288,19372,GO-2020988702,THEFT UNDER - BICYCLE,2020-05-23T00:00:00,2020,May,Saturday,23,144,19,2020-05-29T00:00:00,2020,May,Friday,29,150,10,D53,Toronto,103,Lawrence Park South (103),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,TRANCE 2,TO,21,GRY,3500.0,STOLEN,23269,"{'type': 'Point', 'coordinates': (-79.40275143, 43.71591384)}"
-23289,19375,GO-20201027478,B&E,2020-06-03T00:00:00,2020,June,Wednesday,3,155,10,2020-06-04T00:00:00,2020,June,Thursday,4,156,10,D53,Toronto,103,Lawrence Park South (103),"Apartment (Rooming House, Condo)",Apartment,GIANT,TALON,MT,18,BLK,1051.0,STOLEN,23270,"{'type': 'Point', 'coordinates': (-79.40176614, 43.7231042)}"
-23290,19618,GO-20142141129,THEFT FROM MOTOR VEHICLE UNDER,2014-05-23T00:00:00,2014,May,Friday,23,143,22,2014-05-24T00:00:00,2014,May,Saturday,24,144,8,D53,Toronto,103,Lawrence Park South (103),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,U/K,MT,18,SIL,800.0,STOLEN,23271,"{'type': 'Point', 'coordinates': (-79.3909986, 43.72023973)}"
-23291,19649,GO-20149006328,THEFT UNDER,2014-08-20T00:00:00,2014,August,Wednesday,20,232,19,2014-08-26T00:00:00,2014,August,Tuesday,26,238,19,D53,Toronto,103,Lawrence Park South (103),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,54 NOCTURNE,RC,18,WHI,1062.0,STOLEN,23272,"{'type': 'Point', 'coordinates': (-79.3963599, 43.72634341)}"
-23292,19707,GO-20151409535,THEFT UNDER,2015-08-16T00:00:00,2015,August,Sunday,16,228,16,2015-08-16T00:00:00,2015,August,Sunday,16,228,19,D53,Toronto,103,Lawrence Park South (103),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,,MT,10,BLU,7000.0,STOLEN,23273,"{'type': 'Point', 'coordinates': (-79.39979906, 43.71365327)}"
-23293,19764,GO-2016841740,THEFT OVER - BICYCLE,2016-05-15T00:00:00,2016,May,Sunday,15,136,13,2016-05-16T00:00:00,2016,May,Monday,16,137,18,D53,Toronto,103,Lawrence Park South (103),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CERVELO,,TO,21,BLK,6300.0,STOLEN,23274,"{'type': 'Point', 'coordinates': (-79.40756309, 43.71815915)}"
-23294,22163,GO-20161147780,THEFT OF MOTOR VEHICLE,2016-06-30T00:00:00,2016,June,Thursday,30,182,19,2016-07-01T00:00:00,2016,July,Friday,1,183,0,D53,Toronto,103,Lawrence Park South (103),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,GIORNO,SC,1,ONG,1000.0,STOLEN,23275,"{'type': 'Point', 'coordinates': (-79.40992671, 43.70690491)}"
-23295,22232,GO-20171203259,THEFT UNDER - BICYCLE,2017-06-02T00:00:00,2017,June,Friday,2,153,0,2017-07-05T00:00:00,2017,July,Wednesday,5,186,17,D53,Toronto,103,Lawrence Park South (103),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,1,RED,200.0,STOLEN,23276,"{'type': 'Point', 'coordinates': (-79.4155025, 43.71033417)}"
-23296,22239,GO-20179010891,THEFT UNDER - BICYCLE,2017-07-21T00:00:00,2017,July,Friday,21,202,8,2017-07-24T00:00:00,2017,July,Monday,24,205,9,D53,Toronto,103,Lawrence Park South (103),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,RAPID 2,RG,27,SIL,699.0,STOLEN,23277,"{'type': 'Point', 'coordinates': (-79.41290151, 43.70803688)}"
-23297,22254,GO-20171628932,B&E W'INTENT,2017-08-31T00:00:00,2017,August,Thursday,31,243,20,2017-09-08T00:00:00,2017,September,Friday,8,251,16,D53,Toronto,103,Lawrence Park South (103),"Apartment (Rooming House, Condo)",Apartment,HUFFY,COMPANY GRANITE,MT,18,RED,100.0,STOLEN,23278,"{'type': 'Point', 'coordinates': (-79.40180269, 43.72345902)}"
-23298,22258,GO-20171655317,THEFT UNDER - BICYCLE,2017-09-12T00:00:00,2017,September,Tuesday,12,255,9,2017-09-12T00:00:00,2017,September,Tuesday,12,255,19,D53,Toronto,103,Lawrence Park South (103),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,DEVINCI,MILANO,RG,18,SIL,550.0,STOLEN,23279,"{'type': 'Point', 'coordinates': (-79.41016945, 43.72248185000001)}"
-23299,22266,GO-20179018775,THEFT UNDER - BICYCLE,2017-11-02T00:00:00,2017,November,Thursday,2,306,9,2017-11-02T00:00:00,2017,November,Thursday,2,306,17,D53,Toronto,103,Lawrence Park South (103),Schools During Un-Supervised Activity,Educational,UNKNOWN MAKE,,OT,30,BLK,800.0,STOLEN,23280,"{'type': 'Point', 'coordinates': (-79.41016945, 43.72248185000001)}"
-23300,22323,GO-20189027674,THEFT UNDER - BICYCLE,2018-08-23T00:00:00,2018,August,Thursday,23,235,16,2018-08-23T00:00:00,2018,August,Thursday,23,235,22,D53,Toronto,103,Lawrence Park South (103),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,,RG,7,TRQ,250.0,STOLEN,23281,"{'type': 'Point', 'coordinates': (-79.41435298, 43.70335729)}"
-23301,22327,GO-20181655322,THEFT UNDER - BICYCLE,2018-09-07T00:00:00,2018,September,Friday,7,250,4,2018-09-07T00:00:00,2018,September,Friday,7,250,4,D53,Toronto,103,Lawrence Park South (103),"Apartment (Rooming House, Condo)",Apartment,CCM,FORRESTER,MT,21,BLK,0.0,RECOVERED,23282,"{'type': 'Point', 'coordinates': (-79.41416366, 43.72256698)}"
-23302,22328,GO-20181655322,THEFT UNDER - BICYCLE,2018-09-07T00:00:00,2018,September,Friday,7,250,4,2018-09-07T00:00:00,2018,September,Friday,7,250,4,D53,Toronto,103,Lawrence Park South (103),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,RG,0,,,UNKNOWN,23283,"{'type': 'Point', 'coordinates': (-79.41416366, 43.72256698)}"
-23303,22333,GO-20189030515,THEFT UNDER - BICYCLE,2018-09-14T00:00:00,2018,September,Friday,14,257,21,2018-09-15T00:00:00,2018,September,Saturday,15,258,9,D53,Toronto,103,Lawrence Park South (103),"Open Areas (Lakes, Parks, Rivers)",Outside,CC,,RC,7,GRY,0.0,STOLEN,23284,"{'type': 'Point', 'coordinates': (-79.39605495, 43.72639616)}"
-23304,22430,GO-20199038033,THEFT UNDER - BICYCLE,2019-11-18T00:00:00,2019,November,Monday,18,322,22,2019-11-19T00:00:00,2019,November,Tuesday,19,323,11,D53,Toronto,103,Lawrence Park South (103),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,RG,21,GRY,350.0,STOLEN,23285,"{'type': 'Point', 'coordinates': (-79.40199264, 43.71414443)}"
-23305,22495,GO-20201241652,THEFT UNDER - BICYCLE,2020-07-01T00:00:00,2020,July,Wednesday,1,183,16,2020-07-05T00:00:00,2020,July,Sunday,5,187,16,D53,Toronto,103,Lawrence Park South (103),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,,MT,21,DBL,500.0,STOLEN,23286,"{'type': 'Point', 'coordinates': (-79.41546379, 43.70311959)}"
-23306,22514,GO-20201404584,B&E,2020-07-26T00:00:00,2020,July,Sunday,26,208,0,2020-07-28T00:00:00,2020,July,Tuesday,28,210,19,D53,Toronto,103,Lawrence Park South (103),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,FX3 HYBRID,RG,9,,970.0,STOLEN,23287,"{'type': 'Point', 'coordinates': (-79.40690356000002, 43.71404953)}"
-23307,22540,GO-20201592324,THEFT OVER - BICYCLE,2020-08-24T00:00:00,2020,August,Monday,24,237,3,2020-08-24T00:00:00,2020,August,Monday,24,237,8,D53,Toronto,103,Lawrence Park South (103),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,LANGMA,RC,21,BLK,4400.0,STOLEN,23288,"{'type': 'Point', 'coordinates': (-79.4155025, 43.71033417)}"
-23308,22541,GO-20201592324,THEFT OVER - BICYCLE,2020-08-24T00:00:00,2020,August,Monday,24,237,3,2020-08-24T00:00:00,2020,August,Monday,24,237,8,D53,Toronto,103,Lawrence Park South (103),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CANNONDALE,SYNAPSE,RC,21,BLU,3500.0,STOLEN,23289,"{'type': 'Point', 'coordinates': (-79.4155025, 43.71033417)}"
-23309,22567,GO-20209024131,THEFT UNDER - BICYCLE,2020-09-22T00:00:00,2020,September,Tuesday,22,266,8,2020-09-22T00:00:00,2020,September,Tuesday,22,266,22,D53,Toronto,103,Lawrence Park South (103),"Open Areas (Lakes, Parks, Rivers)",Outside,GI,"TALON 3 (29"""")",MT,16,BLK,700.0,STOLEN,23290,"{'type': 'Point', 'coordinates': (-79.40044123, 43.71660705)}"
-23310,22826,GO-20142140082,THEFT UNDER,2014-05-24T00:00:00,2014,May,Saturday,24,144,1,2014-05-24T00:00:00,2014,May,Saturday,24,144,1,D53,Toronto,103,Lawrence Park South (103),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MIELE,,RG,18,WHI,400.0,STOLEN,23291,"{'type': 'Point', 'coordinates': (-79.41698902, 43.70910208000001)}"
-23311,22877,GO-20149007399,THEFT UNDER,2014-10-03T00:00:00,2014,October,Friday,3,276,16,2014-10-04T00:00:00,2014,October,Saturday,4,277,16,D53,Toronto,103,Lawrence Park South (103),Schools During Un-Supervised Activity,Educational,CC,,RG,18,SIL,300.0,STOLEN,23292,"{'type': 'Point', 'coordinates': (-79.41016945, 43.72248185000001)}"
-23312,25391,GO-20161615608,THEFT UNDER - BICYCLE,2016-09-10T00:00:00,2016,September,Saturday,10,254,0,2016-09-15T00:00:00,2016,September,Thursday,15,259,11,D53,Toronto,103,Lawrence Park South (103),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,7.3 FX 22.5,RG,10,BLK,750.0,STOLEN,23293,"{'type': 'Point', 'coordinates': (-79.4202925, 43.71315501)}"
-23313,25392,GO-20161615608,THEFT UNDER - BICYCLE,2016-09-10T00:00:00,2016,September,Saturday,10,254,0,2016-09-15T00:00:00,2016,September,Thursday,15,259,11,D53,Toronto,103,Lawrence Park South (103),"Private Property Structure (Pool, Shed, Detached Garage)",Other,ROCKY MOUNTAIN,CRT003-10,MT,10,BLK,750.0,STOLEN,23294,"{'type': 'Point', 'coordinates': (-79.4202925, 43.71315501)}"
-23314,25475,GO-20179012897,THEFT UNDER - BICYCLE,2017-08-19T00:00:00,2017,August,Saturday,19,231,9,2017-08-21T00:00:00,2017,August,Monday,21,233,10,D53,Toronto,103,Lawrence Park South (103),Schools During Un-Supervised Activity,Educational,OT,SIRRUS,RC,10,BLK,800.0,STOLEN,23295,"{'type': 'Point', 'coordinates': (-79.40802864, 43.72186806)}"
-23315,25525,GO-20189009406,THEFT UNDER - BICYCLE,2018-03-22T00:00:00,2018,March,Thursday,22,81,12,2018-03-25T00:00:00,2018,March,Sunday,25,84,15,D53,Toronto,103,Lawrence Park South (103),Schools During Supervised Activity,Educational,OT,HARDROCK SPORT,MT,24,WHI,900.0,STOLEN,23296,"{'type': 'Point', 'coordinates': (-79.41016945, 43.72248185000001)}"
-23316,25554,GO-20189020548,THEFT UNDER - BICYCLE,2018-05-25T00:00:00,2018,May,Friday,25,145,18,2018-06-28T00:00:00,2018,June,Thursday,28,179,9,D53,Toronto,103,Lawrence Park South (103),Schools During Un-Supervised Activity,Educational,UK,HARDROCK X6,MT,40,BLK,0.0,STOLEN,23297,"{'type': 'Point', 'coordinates': (-79.40945551, 43.71777361)}"
-23317,25632,GO-20199017538,THEFT UNDER - BICYCLE,2019-06-04T00:00:00,2019,June,Tuesday,4,155,10,2019-06-05T00:00:00,2019,June,Wednesday,5,156,17,D53,Toronto,103,Lawrence Park South (103),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,RG,21,BLK,1200.0,STOLEN,23298,"{'type': 'Point', 'coordinates': (-79.41016945, 43.72248185000001)}"
-23318,25657,GO-20199025547,THEFT UNDER - BICYCLE,2019-08-08T00:00:00,2019,August,Thursday,8,220,8,2019-08-09T00:00:00,2019,August,Friday,9,221,16,D53,Toronto,103,Lawrence Park South (103),Ttc Subway Train,Transit,UK,STUMPJUMPER,MT,12,BLK,500.0,STOLEN,23300,"{'type': 'Point', 'coordinates': (-79.40215463, 43.72510266)}"
-23319,25711,GO-2020960593,THEFT UNDER - BICYCLE,2020-05-25T00:00:00,2020,May,Monday,25,146,2,2020-05-25T00:00:00,2020,May,Monday,25,146,4,D53,Toronto,103,Lawrence Park South (103),"Single Home, House (Attach Garage, Cottage, Mobile)",House,LIV,ALIGHT DD DISC,RG,4,DBL,700.0,STOLEN,23301,"{'type': 'Point', 'coordinates': (-79.41016945, 43.72248185000001)}"
-23320,25712,GO-2020960593,THEFT UNDER - BICYCLE,2020-05-25T00:00:00,2020,May,Monday,25,146,2,2020-05-25T00:00:00,2020,May,Monday,25,146,4,D53,Toronto,103,Lawrence Park South (103),"Single Home, House (Attach Garage, Cottage, Mobile)",House,LIV,ALIGHT DD DISC,RG,4,DBL,700.0,STOLEN,23302,"{'type': 'Point', 'coordinates': (-79.41016945, 43.72248185000001)}"
-23321,25785,GO-20209025201,THEFT UNDER - BICYCLE,2020-09-27T00:00:00,2020,September,Sunday,27,271,23,2020-10-02T00:00:00,2020,October,Friday,2,276,0,D53,Toronto,103,Lawrence Park South (103),"Apartment (Rooming House, Condo)",Apartment,SU,SOLARIS 700C,MT,18,BLK,388.0,STOLEN,23303,"{'type': 'Point', 'coordinates': (-79.41416366, 43.72256698)}"
-23322,6,GO-20162196370,B&E,2016-12-10T00:00:00,2016,December,Saturday,10,345,23,2016-12-11T00:00:00,2016,December,Sunday,11,346,22,D53,Toronto,104,Mount Pleasant West (104),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GF,WOMEN'S MOUNTAI,MT,21,LBL,1000.0,STOLEN,23304,"{'type': 'Point', 'coordinates': (-79.3961644, 43.69612766)}"
-23323,9,GO-20169014581,THEFT UNDER - BICYCLE,2016-12-10T00:00:00,2016,December,Saturday,10,345,20,2016-12-12T00:00:00,2016,December,Monday,12,347,20,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,18,PLE,1000.0,STOLEN,23305,"{'type': 'Point', 'coordinates': (-79.3961644, 43.69612766)}"
-23324,10,GO-20169014581,THEFT UNDER - BICYCLE,2016-12-10T00:00:00,2016,December,Saturday,10,345,20,2016-12-12T00:00:00,2016,December,Monday,12,347,20,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,18,BLK,530.0,STOLEN,23306,"{'type': 'Point', 'coordinates': (-79.3961644, 43.69612766)}"
-23325,180,GO-2017555793,B&E,2017-03-19T00:00:00,2017,March,Sunday,19,78,14,2017-03-29T00:00:00,2017,March,Wednesday,29,88,17,D53,Toronto,104,Mount Pleasant West (104),"Private Property Structure (Pool, Shed, Detached Garage)",Other,FUJI,ALOHA 2.0,RC,21,WHIBLU,2000.0,STOLEN,23307,"{'type': 'Point', 'coordinates': (-79.3932184, 43.70528379)}"
-23326,181,GO-2017555793,B&E,2017-03-19T00:00:00,2017,March,Sunday,19,78,14,2017-03-29T00:00:00,2017,March,Wednesday,29,88,17,D53,Toronto,104,Mount Pleasant West (104),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,RAPID,RC,21,WHIBLK,1000.0,STOLEN,23308,"{'type': 'Point', 'coordinates': (-79.3932184, 43.70528379)}"
-23327,314,GO-2017770172,B&E W'INTENT,2017-04-28T00:00:00,2017,April,Friday,28,118,20,2017-05-02T00:00:00,2017,May,Tuesday,2,122,10,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,RIDLEY,XBOW,RC,20,BLK,3500.0,STOLEN,23309,"{'type': 'Point', 'coordinates': (-79.38879081, 43.69768245)}"
-23328,315,GO-2017770172,B&E W'INTENT,2017-04-28T00:00:00,2017,April,Friday,28,118,20,2017-05-02T00:00:00,2017,May,Tuesday,2,122,10,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,MOTOR,BEACON,MT,20,BLK,1500.0,STOLEN,23310,"{'type': 'Point', 'coordinates': (-79.38879081, 43.69768245)}"
-23329,556,GO-20179007663,THEFT UNDER - BICYCLE,2017-06-07T00:00:00,2017,June,Wednesday,7,158,11,2017-06-07T00:00:00,2017,June,Wednesday,7,158,21,D53,Toronto,104,Mount Pleasant West (104),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,NITRO,MT,21,ONG,169.0,STOLEN,23311,"{'type': 'Point', 'coordinates': (-79.3904349, 43.69860218)}"
-23330,854,GO-20171247410,THEFT UNDER - BICYCLE,2017-07-11T00:00:00,2017,July,Tuesday,11,192,21,2017-07-12T00:00:00,2017,July,Wednesday,12,193,9,D53,Toronto,104,Mount Pleasant West (104),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MYKA,,RG,10,BLU,763.0,STOLEN,23312,"{'type': 'Point', 'coordinates': (-79.39927621, 43.71107784)}"
-23331,875,GO-20171290427,THEFT UNDER - BICYCLE,2017-07-18T00:00:00,2017,July,Tuesday,18,199,2,2017-07-18T00:00:00,2017,July,Tuesday,18,199,19,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CRONUS,,MT,30,WHI,800.0,STOLEN,23313,"{'type': 'Point', 'coordinates': (-79.39678883, 43.70706033)}"
-23332,915,GO-20179010562,THEFT UNDER - BICYCLE,2017-04-14T00:00:00,2017,April,Friday,14,104,0,2017-07-18T00:00:00,2017,July,Tuesday,18,199,22,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,UK,DAKODA XC,MT,27,LBL,1000.0,STOLEN,23314,"{'type': 'Point', 'coordinates': (-79.39676103, 43.70456998)}"
-23333,916,GO-20179010562,THEFT UNDER - BICYCLE,2017-04-14T00:00:00,2017,April,Friday,14,104,0,2017-07-18T00:00:00,2017,July,Tuesday,18,199,22,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,UK,DAKAR XC COMP,MT,27,BLK,1700.0,STOLEN,23315,"{'type': 'Point', 'coordinates': (-79.39676103, 43.70456998)}"
-23334,960,GO-20179010905,THEFT FROM MOTOR VEHICLE UNDER,2017-07-23T00:00:00,2017,July,Sunday,23,204,23,2017-07-24T00:00:00,2017,July,Monday,24,205,12,D53,Toronto,104,Mount Pleasant West (104),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,,MT,18,BRN,600.0,STOLEN,23316,"{'type': 'Point', 'coordinates': (-79.39186194, 43.70556606)}"
-23335,1134,GO-20179012267,THEFT UNDER - BICYCLE,2017-08-12T00:00:00,2017,August,Saturday,12,224,17,2017-08-12T00:00:00,2017,August,Saturday,12,224,17,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM XR1,MT,27,BLK,1200.0,STOLEN,23317,"{'type': 'Point', 'coordinates': (-79.398957, 43.70958457)}"
-23336,1174,GO-20179012700,THEFT UNDER - BICYCLE,2017-08-17T00:00:00,2017,August,Thursday,17,229,13,2017-08-18T00:00:00,2017,August,Friday,18,230,8,D53,Toronto,104,Mount Pleasant West (104),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,15,RED,500.0,STOLEN,23318,"{'type': 'Point', 'coordinates': (-79.39678883, 43.70706033)}"
-23337,1482,GO-20179015366,THEFT UNDER - BICYCLE,2017-09-19T00:00:00,2017,September,Tuesday,19,262,23,2017-09-21T00:00:00,2017,September,Thursday,21,264,13,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,TR,DUAL SPORT D3 2,MT,27,BLK,969.0,STOLEN,23319,"{'type': 'Point', 'coordinates': (-79.38693266, 43.70031352000001)}"
-23338,1760,GO-20179018418,THEFT UNDER - BICYCLE,2017-10-17T00:00:00,2017,October,Tuesday,17,290,12,2017-10-28T00:00:00,2017,October,Saturday,28,301,18,D53,Toronto,104,Mount Pleasant West (104),Schools During Supervised Activity,Educational,OT,,RC,10,,1149.0,STOLEN,23320,"{'type': 'Point', 'coordinates': (-79.398957, 43.70958457)}"
-23339,1811,GO-20172021742,B&E,2017-11-07T00:00:00,2017,November,Tuesday,7,311,9,2017-11-08T00:00:00,2017,November,Wednesday,8,312,9,D53,Toronto,104,Mount Pleasant West (104),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,,RG,1,BLK,200.0,STOLEN,23321,"{'type': 'Point', 'coordinates': (-79.3932184, 43.70528379)}"
-23340,1870,GO-20179020359,THEFT UNDER - BICYCLE,2017-11-14T00:00:00,2017,November,Tuesday,14,318,1,2017-11-23T00:00:00,2017,November,Thursday,23,327,8,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,MARLIN 5,MT,18,GRY,800.0,STOLEN,23322,"{'type': 'Point', 'coordinates': (-79.39455077, 43.70501949)}"
-23341,1871,GO-20179020359,THEFT UNDER - BICYCLE,2017-11-14T00:00:00,2017,November,Tuesday,14,318,1,2017-11-23T00:00:00,2017,November,Thursday,23,327,8,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,MT,18,BLK,800.0,STOLEN,23323,"{'type': 'Point', 'coordinates': (-79.39455077, 43.70501949)}"
-23342,2021,GO-2018258177,B&E W'INTENT,2017-12-17T00:00:00,2017,December,Sunday,17,351,12,2018-02-10T00:00:00,2018,February,Saturday,10,41,11,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,BIANCHI,OLTRE XR2,RC,0,BLK,10795.0,STOLEN,23324,"{'type': 'Point', 'coordinates': (-79.39676103, 43.70456998)}"
-23343,2036,GO-20189004723,THEFT UNDER - BICYCLE,2018-02-15T00:00:00,2018,February,Thursday,15,46,4,2018-02-15T00:00:00,2018,February,Thursday,15,46,10,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,,MT,8,GRY,1200.0,STOLEN,23325,"{'type': 'Point', 'coordinates': (-79.39385701, 43.71059193)}"
-23344,2119,GO-20189010019,THEFT UNDER - BICYCLE,2018-03-30T00:00:00,2018,March,Friday,30,89,12,2018-03-30T00:00:00,2018,March,Friday,30,89,12,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OT,STREETFIRE SSX,RC,22,BLK,3500.0,STOLEN,23326,"{'type': 'Point', 'coordinates': (-79.39863797, 43.70821093)}"
-23345,2268,GO-20189014099,THEFT UNDER - BICYCLE,2018-05-06T00:00:00,2018,May,Sunday,6,126,14,2018-05-07T00:00:00,2018,May,Monday,7,127,17,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,10,GRY,650.0,STOLEN,23327,"{'type': 'Point', 'coordinates': (-79.39409295, 43.70760244)}"
-23346,2379,GO-20189015928,THEFT UNDER - BICYCLE,2018-04-12T00:00:00,2018,April,Thursday,12,102,11,2018-05-23T00:00:00,2018,May,Wednesday,23,143,13,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,TR,,RG,18,SIL,1000.0,STOLEN,23328,"{'type': 'Point', 'coordinates': (-79.3961644, 43.69612766)}"
-23347,11470,GO-20169005474,THEFT UNDER - BICYCLE,2016-05-27T00:00:00,2016,May,Friday,27,148,0,2016-06-08T00:00:00,2016,June,Wednesday,8,160,14,D32,Toronto,105,Lawrence Park North (105),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,CAAD8,RC,15,,1800.0,STOLEN,23329,"{'type': 'Point', 'coordinates': (-79.40619319, 43.7276634)}"
-23348,11963,GO-20169007991,THEFT UNDER,2016-06-11T00:00:00,2016,June,Saturday,11,163,22,2016-07-31T00:00:00,2016,July,Sunday,31,213,13,D32,Toronto,105,Lawrence Park North (105),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,"24"""" BOYS ORBIT",MT,7,RED,550.0,STOLEN,23330,"{'type': 'Point', 'coordinates': (-79.41218281, 43.73231281)}"
-23349,12656,GO-20161874641,THEFT OVER - BICYCLE,2016-10-17T00:00:00,2016,October,Monday,17,291,7,2016-10-21T00:00:00,2016,October,Friday,21,295,18,D32,Toronto,105,Lawrence Park North (105),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OPUS,PHAST,OT,10,BLK,5000.0,UNKNOWN,23331,"{'type': 'Point', 'coordinates': (-79.41081988, 43.73347292)}"
-23350,12657,GO-20161874641,THEFT OVER - BICYCLE,2016-10-17T00:00:00,2016,October,Monday,17,291,7,2016-10-21T00:00:00,2016,October,Friday,21,295,18,D32,Toronto,105,Lawrence Park North (105),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,1.2,OT,18,WHI,1000.0,STOLEN,23332,"{'type': 'Point', 'coordinates': (-79.41081988, 43.73347292)}"
-23351,12658,GO-20161874641,THEFT OVER - BICYCLE,2016-10-17T00:00:00,2016,October,Monday,17,291,7,2016-10-21T00:00:00,2016,October,Friday,21,295,18,D32,Toronto,105,Lawrence Park North (105),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CANNONDALE,,MT,30,GRN,800.0,STOLEN,23333,"{'type': 'Point', 'coordinates': (-79.41081988, 43.73347292)}"
-23352,13502,GO-20199019517,THEFT UNDER,2019-06-20T00:00:00,2019,June,Thursday,20,171,19,2019-06-21T00:00:00,2019,June,Friday,21,172,9,D32,Toronto,105,Lawrence Park North (105),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,CROSSRIP 2,RC,20,GRY,2500.0,STOLEN,23334,"{'type': 'Point', 'coordinates': (-79.40325329, 43.72915891)}"
-23353,14872,GO-20199036303,THEFT UNDER - BICYCLE,2019-10-03T00:00:00,2019,October,Thursday,3,276,15,2019-11-03T00:00:00,2019,November,Sunday,3,307,15,D13,Toronto,101,Forest Hill South (101),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,ALLANT,RG,7,GRY,680.0,STOLEN,23335,"{'type': 'Point', 'coordinates': (-79.41423537, 43.68632871)}"
-23354,15341,GO-20142599921,THEFT OVER,2014-07-30T00:00:00,2014,July,Wednesday,30,211,0,2014-07-30T00:00:00,2014,July,Wednesday,30,211,8,D13,Toronto,101,Forest Hill South (101),"Private Property Structure (Pool, Shed, Detached Garage)",Other,META,,MT,21,WHI,5000.0,STOLEN,23336,"{'type': 'Point', 'coordinates': (-79.41818355, 43.69275374)}"
-23355,15558,GO-20161711626,THEFT OVER - BICYCLE,2016-08-01T00:00:00,2016,August,Monday,1,214,0,2016-09-26T00:00:00,2016,September,Monday,26,270,11,D13,Toronto,101,Forest Hill South (101),"Apartment (Rooming House, Condo)",Apartment,OTHER,RECORD,RC,20,BLK,7000.0,STOLEN,23337,"{'type': 'Point', 'coordinates': (-79.41434857, 43.68630427)}"
-23356,15559,GO-20161711626,THEFT OVER - BICYCLE,2016-08-01T00:00:00,2016,August,Monday,1,214,0,2016-09-26T00:00:00,2016,September,Monday,26,270,11,D13,Toronto,101,Forest Hill South (101),"Apartment (Rooming House, Condo)",Apartment,OTHER,PARIS,RC,20,BLKRED,6000.0,STOLEN,23338,"{'type': 'Point', 'coordinates': (-79.41434857, 43.68630427)}"
-23357,15575,GO-20162005138,THEFT OF EBIKE UNDER $5000,2016-11-10T00:00:00,2016,November,Thursday,10,315,8,2016-11-11T00:00:00,2016,November,Friday,11,316,9,D13,Toronto,101,Forest Hill South (101),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,DAYMAK,BEAST,OT,1,BLK,3200.0,STOLEN,23339,"{'type': 'Point', 'coordinates': (-79.41434857, 43.68630427)}"
-23358,15922,GO-20143440547,PROPERTY - FOUND,2014-12-06T00:00:00,2014,December,Saturday,6,340,23,2014-12-07T00:00:00,2014,December,Sunday,7,341,9,D53,Toronto,101,Forest Hill South (101),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SHIMANO,TRIUMPH,MT,18,BLKPNK,100.0,UNKNOWN,23341,"{'type': 'Point', 'coordinates': (-79.41101114, 43.69559496)}"
-23359,16097,GO-20209027514,THEFT UNDER,2020-10-24T00:00:00,2020,October,Saturday,24,298,10,2020-10-24T00:00:00,2020,October,Saturday,24,298,11,D53,Toronto,101,Forest Hill South (101),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,KIDS SCOOTER,SC,1,BLU,250.0,STOLEN,23342,"{'type': 'Point', 'coordinates': (-79.41318991, 43.69472561)}"
-23360,13513,GO-20199025034,THEFT UNDER - BICYCLE,2019-08-05T00:00:00,2019,August,Monday,5,217,3,2019-08-05T00:00:00,2019,August,Monday,5,217,17,D32,Toronto,105,Lawrence Park North (105),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,LIKETOBIKE 16,BM,7,WHI,400.0,STOLEN,23343,"{'type': 'Point', 'coordinates': (-79.4007586, 43.729938870000005)}"
-23361,18180,GO-20169014597,THEFT UNDER - BICYCLE,2016-12-06T00:00:00,2016,December,Tuesday,6,341,8,2016-12-13T00:00:00,2016,December,Tuesday,13,348,15,D13,Toronto,101,Forest Hill South (101),Schools During Supervised Activity,Educational,OT,ROUBAIX,TO,20,BGE,1200.0,STOLEN,23344,"{'type': 'Point', 'coordinates': (-79.41737478, 43.68578395)}"
-23362,2947,GO-20181331605,THEFT OVER - BICYCLE,2018-07-14T00:00:00,2018,July,Saturday,14,195,21,2018-07-21T00:00:00,2018,July,Saturday,21,202,10,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,IBIS,MOJO3,MT,11,BLK,8000.0,STOLEN,23345,"{'type': 'Point', 'coordinates': (-79.39146025, 43.70813555)}"
-23363,7373,GO-20201848964,B&E,2020-09-28T00:00:00,2020,September,Monday,28,272,20,2020-09-29T00:00:00,2020,September,Tuesday,29,273,9,D53,Toronto,104,Mount Pleasant West (104),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,MT,0,WHI,300.0,STOLEN,23346,"{'type': 'Point', 'coordinates': (-79.39591185, 43.7047462)}"
-23364,13516,GO-20191620204,THEFT UNDER - BICYCLE,2019-08-03T00:00:00,2019,August,Saturday,3,215,4,2019-08-25T00:00:00,2019,August,Sunday,25,237,10,D32,Toronto,105,Lawrence Park North (105),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,CCM,RG,4,,336.0,STOLEN,23347,"{'type': 'Point', 'coordinates': (-79.4067524, 43.72924358)}"
-23365,13585,GO-20209023773,THEFT UNDER,2020-09-16T00:00:00,2020,September,Wednesday,16,260,17,2020-09-18T00:00:00,2020,September,Friday,18,262,15,D32,Toronto,105,Lawrence Park North (105),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,XZONE 2605,MT,14,DBL,500.0,STOLEN,23348,"{'type': 'Point', 'coordinates': (-79.40855211, 43.73393919)}"
-23366,14659,GO-20171109783,THEFT UNDER - BICYCLE,2017-06-16T00:00:00,2017,June,Friday,16,167,15,2017-06-21T00:00:00,2017,June,Wednesday,21,172,18,D32,Toronto,105,Lawrence Park North (105),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,,MT,14,,800.0,STOLEN,23349,"{'type': 'Point', 'coordinates': (-79.40416691000001, 43.732898920000004)}"
-23367,14663,GO-20179009094,THEFT UNDER - BICYCLE,2017-06-28T00:00:00,2017,June,Wednesday,28,179,1,2017-06-28T00:00:00,2017,June,Wednesday,28,179,13,D32,Toronto,105,Lawrence Park North (105),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,,RC,10,WHI,1600.0,STOLEN,23350,"{'type': 'Point', 'coordinates': (-79.41266046, 43.72448657)}"
-23368,14664,GO-20179009094,THEFT UNDER - BICYCLE,2017-06-28T00:00:00,2017,June,Wednesday,28,179,1,2017-06-28T00:00:00,2017,June,Wednesday,28,179,13,D32,Toronto,105,Lawrence Park North (105),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MA,,TO,10,ONG,650.0,STOLEN,23351,"{'type': 'Point', 'coordinates': (-79.41266046, 43.72448657)}"
-23369,14674,GO-20179010938,THEFT UNDER - BICYCLE,2017-07-21T00:00:00,2017,July,Friday,21,202,19,2017-07-24T00:00:00,2017,July,Monday,24,205,19,D32,Toronto,105,Lawrence Park North (105),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,MT,21,GRY,500.0,STOLEN,23352,"{'type': 'Point', 'coordinates': (-79.40279824, 43.72743409)}"
-23370,14837,GO-20189026725,THEFT UNDER - BICYCLE,2018-08-16T00:00:00,2018,August,Thursday,16,228,7,2018-08-16T00:00:00,2018,August,Thursday,16,228,21,D32,Toronto,105,Lawrence Park North (105),Ttc Subway Station,Transit,SU,,RG,12,PLE,200.0,STOLEN,23353,"{'type': 'Point', 'coordinates': (-79.40279824, 43.72743409)}"
-23371,14922,GO-20149004246,THEFT UNDER,2014-06-20T00:00:00,2014,June,Friday,20,171,16,2014-06-20T00:00:00,2014,June,Friday,20,171,16,D32,Toronto,105,Lawrence Park North (105),"Open Areas (Lakes, Parks, Rivers)",Outside,NO,YORKVILLE,TO,21,,450.0,STOLEN,23354,"{'type': 'Point', 'coordinates': (-79.41234931, 43.72375272)}"
-23372,14969,GO-20151328649,THEFT UNDER,2015-07-28T00:00:00,2015,July,Tuesday,28,209,12,2015-08-03T00:00:00,2015,August,Monday,3,215,16,D32,Toronto,105,Lawrence Park North (105),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,3500D,MT,15,OTH,600.0,STOLEN,23355,"{'type': 'Point', 'coordinates': (-79.41032302, 43.72769821)}"
-23373,15012,GO-20169007862,THEFT UNDER - BICYCLE,2016-07-26T00:00:00,2016,July,Tuesday,26,208,14,2016-07-27T00:00:00,2016,July,Wednesday,27,209,21,D32,Toronto,105,Lawrence Park North (105),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KH,VITAMIN B,TO,18,BLK,600.0,STOLEN,23356,"{'type': 'Point', 'coordinates': (-79.40302548, 43.72832063)}"
-23374,15027,GO-20169010116,THEFT UNDER - BICYCLE,2016-09-06T00:00:00,2016,September,Tuesday,6,250,13,2016-09-07T00:00:00,2016,September,Wednesday,7,251,18,D32,Toronto,105,Lawrence Park North (105),Ttc Subway Station,Transit,OT,WELLINGTON,MT,24,RED,900.0,STOLEN,23357,"{'type': 'Point', 'coordinates': (-79.40279824, 43.72743409)}"
-23375,15043,GO-20179004977,THEFT UNDER,2017-04-16T00:00:00,2017,April,Sunday,16,106,3,2017-04-20T00:00:00,2017,April,Thursday,20,110,10,D32,Toronto,105,Lawrence Park North (105),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,SC,1,,60.0,STOLEN,23358,"{'type': 'Point', 'coordinates': (-79.40999107, 43.72686984)}"
-23376,16801,GO-20199039000,THEFT UNDER - BICYCLE,2019-11-23T00:00:00,2019,November,Saturday,23,327,11,2019-11-27T00:00:00,2019,November,Wednesday,27,331,11,D32,Toronto,105,Lawrence Park North (105),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,CHANCE,RG,11,RED,1700.0,STOLEN,23359,"{'type': 'Point', 'coordinates': (-79.40729568, 43.73489232)}"
-23377,16802,GO-20192316774,PROPERTY - FOUND,2019-12-01T00:00:00,2019,December,Sunday,1,335,9,2019-12-01T00:00:00,2019,December,Sunday,1,335,9,D32,Toronto,105,Lawrence Park North (105),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,SHIMANO,MT,18,PNK,,UNKNOWN,23360,"{'type': 'Point', 'coordinates': (-79.40625617000002, 43.73454042)}"
-23378,16842,GO-20201604449,THEFT UNDER - BICYCLE,2020-08-25T00:00:00,2020,August,Tuesday,25,238,0,2020-08-26T00:00:00,2020,August,Wednesday,26,239,16,D32,Toronto,105,Lawrence Park North (105),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,CYPRESS,OT,10,GRYRED,600.0,STOLEN,23361,"{'type': 'Point', 'coordinates': (-79.41365719, 43.72698968)}"
-23379,17730,GO-20179015026,THEFT UNDER - BICYCLE,2017-08-24T00:00:00,2017,August,Thursday,24,236,12,2017-09-18T00:00:00,2017,September,Monday,18,261,13,D32,Toronto,105,Lawrence Park North (105),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,OT,0,,,STOLEN,23362,"{'type': 'Point', 'coordinates': (-79.40964909, 43.72600094)}"
-23380,17731,GO-20179015026,THEFT UNDER - BICYCLE,2017-08-24T00:00:00,2017,August,Thursday,24,236,12,2017-09-18T00:00:00,2017,September,Monday,18,261,13,D32,Toronto,105,Lawrence Park North (105),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,NINE 5,MT,20,GRY,,STOLEN,23363,"{'type': 'Point', 'coordinates': (-79.40964909, 43.72600094)}"
-23381,17732,GO-20179015026,THEFT UNDER - BICYCLE,2017-08-24T00:00:00,2017,August,Thursday,24,236,12,2017-09-18T00:00:00,2017,September,Monday,18,261,13,D32,Toronto,105,Lawrence Park North (105),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,NINE 5,MT,20,GRY,2400.0,STOLEN,23364,"{'type': 'Point', 'coordinates': (-79.40964909, 43.72600094)}"
-23382,17953,GO-20143385031,THEFT UNDER,2014-11-24T00:00:00,2014,November,Monday,24,328,14,2014-11-28T00:00:00,2014,November,Friday,28,332,10,D32,Toronto,105,Lawrence Park North (105),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CCM,,MT,18,GRN,100.0,STOLEN,23366,"{'type': 'Point', 'coordinates': (-79.39765254, 43.728641)}"
-23383,17978,GO-20159004425,THEFT UNDER,2014-11-01T00:00:00,2014,November,Saturday,1,305,11,2015-07-11T00:00:00,2015,July,Saturday,11,192,11,D32,Toronto,105,Lawrence Park North (105),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,QUICK 4W,RG,24,GRY,750.0,STOLEN,23367,"{'type': 'Point', 'coordinates': (-79.40964909, 43.72600094)}"
-23384,18018,GO-2016640801,THEFT UNDER - BICYCLE,2016-04-01T00:00:00,2016,April,Friday,1,92,0,2016-04-15T00:00:00,2016,April,Friday,15,106,11,D32,Toronto,105,Lawrence Park North (105),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,STORM,MT,18,BLK,800.0,STOLEN,23368,"{'type': 'Point', 'coordinates': (-79.39556298, 43.73100063)}"
-23385,18042,GO-20169008548,THEFT UNDER - BICYCLE,2016-08-10T00:00:00,2016,August,Wednesday,10,223,8,2016-08-10T00:00:00,2016,August,Wednesday,10,223,18,D32,Toronto,105,Lawrence Park North (105),Ttc Subway Station,Transit,DB,,MT,21,YEL,500.0,STOLEN,23369,"{'type': 'Point', 'coordinates': (-79.40279824, 43.72743409)}"
-23386,18055,GO-20169011498,THEFT UNDER - BICYCLE,2016-10-01T00:00:00,2016,October,Saturday,1,275,3,2016-10-03T00:00:00,2016,October,Monday,3,277,16,D32,Toronto,105,Lawrence Park North (105),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,"BLACK, BLUE AND",MT,21,BLK,600.0,STOLEN,23370,"{'type': 'Point', 'coordinates': (-79.40433654, 43.73073869)}"
-23387,18074,GO-20179008070,THEFT UNDER - BICYCLE,2017-06-11T00:00:00,2017,June,Sunday,11,162,23,2017-06-14T00:00:00,2017,June,Wednesday,14,165,11,D32,Toronto,105,Lawrence Park North (105),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,,MT,21,LGR,700.0,STOLEN,23371,"{'type': 'Point', 'coordinates': (-79.41234931, 43.72375272)}"
-23388,20070,GO-20199030007,THEFT UNDER - BICYCLE,2019-09-13T00:00:00,2019,September,Friday,13,256,12,2019-09-14T00:00:00,2019,September,Saturday,14,257,15,D32,Toronto,105,Lawrence Park North (105),Schools During Supervised Activity,Educational,UK,,BM,1,DBL,500.0,STOLEN,23372,"{'type': 'Point', 'coordinates': (-79.40290305, 43.72783606)}"
-23389,20077,GO-20199034056,THEFT UNDER - BICYCLE,2019-10-15T00:00:00,2019,October,Tuesday,15,288,23,2019-10-16T00:00:00,2019,October,Wednesday,16,289,9,D32,Toronto,105,Lawrence Park North (105),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,RG,10,LBL,700.0,STOLEN,23373,"{'type': 'Point', 'coordinates': (-79.40372174, 43.73113212)}"
-23390,20111,GO-20209019394,THEFT UNDER - BICYCLE,2020-08-05T00:00:00,2020,August,Wednesday,5,218,7,2020-08-05T00:00:00,2020,August,Wednesday,5,218,9,D32,Toronto,105,Lawrence Park North (105),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,APEX,MT,24,WHI,400.0,STOLEN,23374,"{'type': 'Point', 'coordinates': (-79.40279824, 43.72743409)}"
-23391,20126,GO-20209024641,THEFT UNDER - BICYCLE,2020-09-03T00:00:00,2020,September,Thursday,3,247,16,2020-09-27T00:00:00,2020,September,Sunday,27,271,17,D32,Toronto,105,Lawrence Park North (105),"Apartment (Rooming House, Condo)",Apartment,CC,,MT,21,BLK,0.0,STOLEN,23375,"{'type': 'Point', 'coordinates': (-79.40247442, 43.72629049)}"
-23392,21171,GO-20179009094,THEFT UNDER - BICYCLE,2017-06-28T00:00:00,2017,June,Wednesday,28,179,1,2017-06-28T00:00:00,2017,June,Wednesday,28,179,13,D32,Toronto,105,Lawrence Park North (105),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,10,RC,10,WHI,2100.0,STOLEN,23376,"{'type': 'Point', 'coordinates': (-79.41266046, 43.72448657)}"
-23393,21172,GO-20179009094,THEFT UNDER - BICYCLE,2017-06-28T00:00:00,2017,June,Wednesday,28,179,1,2017-06-28T00:00:00,2017,June,Wednesday,28,179,13,D32,Toronto,105,Lawrence Park North (105),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MA,5,MT,7,ONG,640.0,STOLEN,23377,"{'type': 'Point', 'coordinates': (-79.41266046, 43.72448657)}"
-23394,21196,GO-20179012014,THEFT UNDER - BICYCLE,2017-08-08T00:00:00,2017,August,Tuesday,8,220,20,2017-08-09T00:00:00,2017,August,Wednesday,9,221,15,D32,Toronto,105,Lawrence Park North (105),Convenience Stores,Commercial,TR,XCALIBER 7,MT,27,BLK,1500.0,STOLEN,23378,"{'type': 'Point', 'coordinates': (-79.40290305, 43.72783606)}"
-23395,21309,GO-20189021696,THEFT UNDER - BICYCLE,2018-07-08T00:00:00,2018,July,Sunday,8,189,10,2018-07-09T00:00:00,2018,July,Monday,9,190,12,D32,Toronto,105,Lawrence Park North (105),Ttc Subway Station,Transit,SC,,MT,21,GRY,200.0,STOLEN,23379,"{'type': 'Point', 'coordinates': (-79.40215463, 43.72510266)}"
-23396,22045,GO-20149008620,THEFT UNDER,2014-12-07T00:00:00,2014,December,Sunday,7,341,22,2014-12-08T00:00:00,2014,December,Monday,8,342,15,D32,Toronto,105,Lawrence Park North (105),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RM,,MT,9,WHI,0.0,STOLEN,23380,"{'type': 'Point', 'coordinates': (-79.40640496, 43.726682430000004)}"
-23397,22057,GO-2015777998,B&E,2015-05-10T00:00:00,2015,May,Sunday,10,130,1,2015-05-10T00:00:00,2015,May,Sunday,10,130,7,D32,Toronto,105,Lawrence Park North (105),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OPUS,TENOR,RC,21,BLKRED,2100.0,STOLEN,23381,"{'type': 'Point', 'coordinates': (-79.41234931, 43.72375272)}"
-23398,22111,GO-20161115967,THEFT OVER,2016-06-01T00:00:00,2016,June,Wednesday,1,153,0,2016-06-26T00:00:00,2016,June,Sunday,26,178,7,D32,Toronto,105,Lawrence Park North (105),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SCHWINN,,OT,10,WHI,500.0,STOLEN,23382,"{'type': 'Point', 'coordinates': (-79.40640496, 43.726682430000004)}"
-23399,22147,GO-20179005652,THEFT UNDER - BICYCLE,2017-05-03T00:00:00,2017,May,Wednesday,3,123,7,2017-05-03T00:00:00,2017,May,Wednesday,3,123,8,D32,Toronto,105,Lawrence Park North (105),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,AMR 2,MT,20,BLK,2300.0,STOLEN,23383,"{'type': 'Point', 'coordinates': (-79.41221247, 43.73315021)}"
-23400,22148,GO-20179005652,THEFT UNDER - BICYCLE,2017-05-03T00:00:00,2017,May,Wednesday,3,123,7,2017-05-03T00:00:00,2017,May,Wednesday,3,123,8,D32,Toronto,105,Lawrence Park North (105),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,KATO FS 3,MT,20,BGE,2350.0,STOLEN,23384,"{'type': 'Point', 'coordinates': (-79.41221247, 43.73315021)}"
-23401,23302,GO-20199028652,THEFT UNDER - BICYCLE,2019-09-03T00:00:00,2019,September,Tuesday,3,246,19,2019-09-03T00:00:00,2019,September,Tuesday,3,246,20,D32,Toronto,105,Lawrence Park North (105),Convenience Stores,Commercial,TR,XCALIBER 9,MT,1,BLK,2000.0,STOLEN,23385,"{'type': 'Point', 'coordinates': (-79.40302548, 43.72832063)}"
-23402,23305,GO-20199030434,THEFT UNDER - BICYCLE,2019-09-17T00:00:00,2019,September,Tuesday,17,260,7,2019-09-17T00:00:00,2019,September,Tuesday,17,260,20,D32,Toronto,105,Lawrence Park North (105),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,RG,24,BLK,300.0,STOLEN,23386,"{'type': 'Point', 'coordinates': (-79.40279824, 43.72743409)}"
-23403,23311,GO-20192375874,THEFT UNDER - BICYCLE,2019-10-08T00:00:00,2019,October,Tuesday,8,281,0,2019-12-09T00:00:00,2019,December,Monday,9,343,21,D32,Toronto,105,Lawrence Park North (105),"Apartment (Rooming House, Condo)",Apartment,DEVINCI,MILANO,OT,10,BLU,700.0,STOLEN,23387,"{'type': 'Point', 'coordinates': (-79.40247442, 43.72629049)}"
-23404,24206,GO-20179011958,THEFT UNDER - BICYCLE,2017-08-08T00:00:00,2017,August,Tuesday,8,220,20,2017-08-08T00:00:00,2017,August,Tuesday,8,220,21,D32,Toronto,105,Lawrence Park North (105),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,24,BLK,1000.0,STOLEN,23388,"{'type': 'Point', 'coordinates': (-79.40290305, 43.72783606)}"
-23405,24283,GO-20189008068,THEFT UNDER - BICYCLE,2018-03-10T00:00:00,2018,March,Saturday,10,69,20,2018-03-15T00:00:00,2018,March,Thursday,15,74,14,D32,Toronto,105,Lawrence Park North (105),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SU,,MT,18,WHI,125.0,STOLEN,23389,"{'type': 'Point', 'coordinates': (-79.40964909, 43.72600094)}"
-23406,24346,GO-20189024200,THEFT UNDER - BICYCLE,2018-07-23T00:00:00,2018,July,Monday,23,204,1,2018-07-28T00:00:00,2018,July,Saturday,28,209,9,D32,Toronto,105,Lawrence Park North (105),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,URBANE,RG,24,WHI,900.0,STOLEN,23390,"{'type': 'Point', 'coordinates': (-79.41512177, 43.73061829)}"
-23407,24458,GO-20151007116,THEFT UNDER,2015-06-15T00:00:00,2015,June,Monday,15,166,14,2015-06-15T00:00:00,2015,June,Monday,15,166,21,D32,Toronto,105,Lawrence Park North (105),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,5700,MT,21,GLD,400.0,STOLEN,23391,"{'type': 'Point', 'coordinates': (-79.40393857, 43.73188389)}"
-23408,24501,GO-20159011157,THEFT UNDER,2015-12-19T00:00:00,2015,December,Saturday,19,353,17,2015-12-20T00:00:00,2015,December,Sunday,20,354,12,D32,Toronto,105,Lawrence Park North (105),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,6500 WSD DISC,MT,27,GRY,1000.0,STOLEN,23392,"{'type': 'Point', 'coordinates': (-79.40453282, 43.73436224)}"
-23409,24513,GO-2016658566,THEFT UNDER - BICYCLE,2016-02-28T00:00:00,2016,February,Sunday,28,59,12,2016-04-18T00:00:00,2016,April,Monday,18,109,7,D32,Toronto,105,Lawrence Park North (105),"Private Property Structure (Pool, Shed, Detached Garage)",Other,ROCKY MOUNTAIN,PRESTIGE,MT,21,BLK,1500.0,STOLEN,23393,"{'type': 'Point', 'coordinates': (-79.40247442, 43.72629049)}"
-23410,24524,GO-20169005435,THEFT UNDER - BICYCLE,2016-06-07T00:00:00,2016,June,Tuesday,7,159,13,2016-06-07T00:00:00,2016,June,Tuesday,7,159,16,D32,Toronto,105,Lawrence Park North (105),Schools During Un-Supervised Activity,Educational,OT,HARDROCK,MT,21,BLK,500.0,STOLEN,23394,"{'type': 'Point', 'coordinates': (-79.39931463, 43.72714765)}"
-23411,24555,GO-20169013645,THEFT UNDER - BICYCLE,2016-10-24T00:00:00,2016,October,Monday,24,298,9,2016-11-20T00:00:00,2016,November,Sunday,20,325,10,D32,Toronto,105,Lawrence Park North (105),Ttc Subway Station,Transit,TR,TREK 6500,MT,27,SIL,0.0,STOLEN,23395,"{'type': 'Point', 'coordinates': (-79.40215463, 43.72510266)}"
-23412,24581,GO-20179009499,THEFT UNDER - BICYCLE,2016-12-06T00:00:00,2016,December,Tuesday,6,341,8,2017-07-06T00:00:00,2017,July,Thursday,6,187,15,D32,Toronto,105,Lawrence Park North (105),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,ROUBAIX,RC,20,WHI,3000.0,STOLEN,23396,"{'type': 'Point', 'coordinates': (-79.41266046, 43.72448657)}"
-23413,2291,GO-2018838125,B&E,2018-05-09T00:00:00,2018,May,Wednesday,9,129,13,2018-05-09T00:00:00,2018,May,Wednesday,9,129,17,D13,Toronto,106,Humewood-Cedarvale (106),"Apartment (Rooming House, Condo)",Apartment,TR,SU100,RG,8,SIL,200.0,STOLEN,23405,"{'type': 'Point', 'coordinates': (-79.42083062, 43.68619468)}"
-23414,256,GO-20179005050,THEFT UNDER,2017-04-21T00:00:00,2017,April,Friday,21,111,11,2017-04-21T00:00:00,2017,April,Friday,21,111,16,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,7300,OT,24,SIL,599.0,STOLEN,23397,"{'type': 'Point', 'coordinates': (-79.42265084, 43.68418253)}"
-23415,257,GO-20179005054,THEFT UNDER,2017-04-21T00:00:00,2017,April,Friday,21,111,11,2017-04-21T00:00:00,2017,April,Friday,21,111,16,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,MT,24,GRY,1500.0,STOLEN,23398,"{'type': 'Point', 'coordinates': (-79.42265084, 43.68418253)}"
-23416,630,GO-20171060827,THEFT OF EBIKE UNDER $5000,2017-06-13T00:00:00,2017,June,Tuesday,13,164,18,2017-06-14T00:00:00,2017,June,Wednesday,14,165,17,D13,Toronto,106,Humewood-Cedarvale (106),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,URBAN S,EL,30,BLU,1000.0,STOLEN,23399,"{'type': 'Point', 'coordinates': (-79.42083062, 43.68619468)}"
-23417,896,GO-20179010429,THEFT UNDER,2017-07-15T00:00:00,2017,July,Saturday,15,196,16,2017-07-17T00:00:00,2017,July,Monday,17,198,19,D13,Toronto,106,Humewood-Cedarvale (106),"Private Property Structure (Pool, Shed, Detached Garage)",Other,IN,DESTINY,RG,7,WHI,350.0,STOLEN,23400,"{'type': 'Point', 'coordinates': (-79.43411026, 43.69745675)}"
-23418,897,GO-20179010429,THEFT UNDER,2017-07-15T00:00:00,2017,July,Saturday,15,196,16,2017-07-17T00:00:00,2017,July,Monday,17,198,19,D13,Toronto,106,Humewood-Cedarvale (106),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RC,1,BLK,450.0,STOLEN,23401,"{'type': 'Point', 'coordinates': (-79.43411026, 43.69745675)}"
-23419,1045,GO-20171398969,THEFT UNDER - BICYCLE,2017-08-03T00:00:00,2017,August,Thursday,3,215,10,2017-08-03T00:00:00,2017,August,Thursday,3,215,20,D13,Toronto,106,Humewood-Cedarvale (106),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,JACK,FO,6,BLK,700.0,STOLEN,23402,"{'type': 'Point', 'coordinates': (-79.4230398, 43.68837452)}"
-23420,1106,GO-20179012119,THEFT UNDER - BICYCLE,2017-08-06T00:00:00,2017,August,Sunday,6,218,10,2017-08-10T00:00:00,2017,August,Thursday,10,222,16,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,,,MT,21,BLK,200.0,STOLEN,23403,"{'type': 'Point', 'coordinates': (-79.4236196, 43.68761959)}"
-23421,2081,GO-20189008366,THEFT UNDER,2018-03-16T00:00:00,2018,March,Friday,16,75,0,2018-03-18T00:00:00,2018,March,Sunday,18,77,8,D13,Toronto,106,Humewood-Cedarvale (106),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,1000,TO,14,BLK,1500.0,STOLEN,23404,"{'type': 'Point', 'coordinates': (-79.42316861, 43.68219955)}"
-23422,2809,GO-20189021970,THEFT UNDER,2018-07-05T00:00:00,2018,July,Thursday,5,186,8,2018-07-10T00:00:00,2018,July,Tuesday,10,191,22,D13,Toronto,106,Humewood-Cedarvale (106),Schools During Un-Supervised Activity,Educational,NO,,RG,12,SIL,500.0,STOLEN,23406,"{'type': 'Point', 'coordinates': (-79.43330144, 43.69212919)}"
-23423,2928,GO-20181346912,THEFT UNDER - BICYCLE,2018-07-17T00:00:00,2018,July,Tuesday,17,198,11,2018-07-23T00:00:00,2018,July,Monday,23,204,18,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BIANCHI,VOLPE,RG,21,LBL,,STOLEN,23407,"{'type': 'Point', 'coordinates': (-79.42923586000002, 43.685121370000005)}"
-23424,3020,GO-20189024454,THEFT UNDER - BICYCLE,2018-07-29T00:00:00,2018,July,Sunday,29,210,14,2018-07-29T00:00:00,2018,July,Sunday,29,210,19,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,,RG,24,PLE,400.0,STOLEN,23408,"{'type': 'Point', 'coordinates': (-79.43274452, 43.69945606)}"
-23425,3143,GO-20189025793,THEFT UNDER - BICYCLE,2018-08-09T00:00:00,2018,August,Thursday,9,221,23,2018-08-10T00:00:00,2018,August,Friday,10,222,9,D13,Toronto,106,Humewood-Cedarvale (106),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,HYBRID,RG,21,BLU,500.0,STOLEN,23409,"{'type': 'Point', 'coordinates': (-79.42254298, 43.69371292)}"
-23426,3216,GO-20189026554,THEFT UNDER - BICYCLE,2018-08-11T00:00:00,2018,August,Saturday,11,223,21,2018-08-15T00:00:00,2018,August,Wednesday,15,227,19,D13,Toronto,106,Humewood-Cedarvale (106),"Apartment (Rooming House, Condo)",Apartment,MA,,OT,21,SIL,0.0,STOLEN,23410,"{'type': 'Point', 'coordinates': (-79.41919633, 43.68541048)}"
-23427,3312,GO-20189027820,THEFT UNDER - BICYCLE,2018-08-20T00:00:00,2018,August,Monday,20,232,18,2018-08-24T00:00:00,2018,August,Friday,24,236,18,D13,Toronto,106,Humewood-Cedarvale (106),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,RG,28,OTH,0.0,STOLEN,23411,"{'type': 'Point', 'coordinates': (-79.42026245, 43.68808921)}"
-23428,3326,GO-20189028041,THEFT UNDER - BICYCLE,2018-08-26T00:00:00,2018,August,Sunday,26,238,12,2018-08-26T00:00:00,2018,August,Sunday,26,238,18,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,,MT,12,BLU,200.0,STOLEN,23412,"{'type': 'Point', 'coordinates': (-79.4236196, 43.68761959)}"
-23429,3388,GO-20189029019,THEFT UNDER,2018-08-25T00:00:00,2018,August,Saturday,25,237,11,2018-09-04T00:00:00,2018,September,Tuesday,4,247,11,D13,Toronto,106,Humewood-Cedarvale (106),"Apartment (Rooming House, Condo)",Apartment,OT,NINE 880,MT,24,BLK,1350.0,STOLEN,23413,"{'type': 'Point', 'coordinates': (-79.42083062, 43.68619468)}"
-23430,4496,GO-20191106615,B&E W'INTENT,2019-06-08T00:00:00,2019,June,Saturday,8,159,18,2019-06-15T00:00:00,2019,June,Saturday,15,166,14,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,LEXA 3,MT,18,BLK,1500.0,STOLEN,23414,"{'type': 'Point', 'coordinates': (-79.42144827, 43.68771819)}"
-23431,4497,GO-20191106615,B&E W'INTENT,2019-06-08T00:00:00,2019,June,Saturday,8,159,18,2019-06-15T00:00:00,2019,June,Saturday,15,166,14,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BIANCHI,OLTRAY,RC,24,BLK,10000.0,STOLEN,23415,"{'type': 'Point', 'coordinates': (-79.42144827, 43.68771819)}"
-23432,4591,GO-20199019907,THEFT UNDER - BICYCLE,2019-06-19T00:00:00,2019,June,Wednesday,19,170,19,2019-06-24T00:00:00,2019,June,Monday,24,175,13,D13,Toronto,106,Humewood-Cedarvale (106),"Apartment (Rooming House, Condo)",Apartment,OT,ALIBI,RG,24,MRN,800.0,STOLEN,23416,"{'type': 'Point', 'coordinates': (-79.42203217000001, 43.68593624)}"
-23433,4602,GO-20199020056,THEFT UNDER - BICYCLE,2019-06-23T00:00:00,2019,June,Sunday,23,174,13,2019-06-25T00:00:00,2019,June,Tuesday,25,176,14,D13,Toronto,106,Humewood-Cedarvale (106),"Apartment (Rooming House, Condo)",Apartment,TR,,RG,24,GRY,500.0,STOLEN,23417,"{'type': 'Point', 'coordinates': (-79.4236196, 43.68761959)}"
-23434,4763,GO-20199022075,THEFT UNDER - BICYCLE,2019-06-09T00:00:00,2019,June,Sunday,9,160,18,2019-07-13T00:00:00,2019,July,Saturday,13,194,12,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,ESCAPE 2 DISC C,RG,21,GRY,834.0,STOLEN,23418,"{'type': 'Point', 'coordinates': (-79.43533749, 43.69717788)}"
-23435,4768,GO-20191320205,THEFT UNDER - BICYCLE,2019-07-13T00:00:00,2019,July,Saturday,13,194,13,2019-07-14T00:00:00,2019,July,Sunday,14,195,20,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,8.3DS,MT,21,BLK,,STOLEN,23419,"{'type': 'Point', 'coordinates': (-79.42790985, 43.69811025)}"
-23436,4869,GO-20191397081,THEFT UNDER - BICYCLE,2019-07-25T00:00:00,2019,July,Thursday,25,206,7,2019-07-25T00:00:00,2019,July,Thursday,25,206,9,D13,Toronto,106,Humewood-Cedarvale (106),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MIELE,TOSCANA,OT,15,BLK,560.0,STOLEN,23420,"{'type': 'Point', 'coordinates': (-79.42658680000001, 43.69211091)}"
-23437,7565,GO-20209027958,THEFT UNDER - BICYCLE,2020-05-25T00:00:00,2020,May,Monday,25,146,12,2020-10-28T00:00:00,2020,October,Wednesday,28,302,12,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,GT,AVALANCHE 1.0,MT,12,BLK,850.0,STOLEN,23437,"{'type': 'Point', 'coordinates': (-79.39676103, 43.70456998)}"
-23438,5368,GO-20199030702,THEFT UNDER - BICYCLE,2019-09-17T00:00:00,2019,September,Tuesday,17,260,18,2019-09-19T00:00:00,2019,September,Thursday,19,262,13,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,,MT,21,BLK,350.0,STOLEN,23421,"{'type': 'Point', 'coordinates': (-79.42521261, 43.68733313)}"
-23439,5953,GO-20209008499,THEFT UNDER,2020-03-06T00:00:00,2020,March,Friday,6,66,15,2020-03-10T00:00:00,2020,March,Tuesday,10,70,20,D13,Toronto,106,Humewood-Cedarvale (106),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,RAPID 2,RC,24,WHI,900.0,STOLEN,23422,"{'type': 'Point', 'coordinates': (-79.42254298, 43.69371292)}"
-23440,5956,GO-2020497965,B&E,2020-03-06T00:00:00,2020,March,Friday,6,66,11,2020-03-09T00:00:00,2020,March,Monday,9,69,18,D13,Toronto,106,Humewood-Cedarvale (106),"Apartment (Rooming House, Condo)",Apartment,OT,GENIUS 740,MT,20,GRY,2600.0,STOLEN,23423,"{'type': 'Point', 'coordinates': (-79.41826195, 43.68316749)}"
-23441,6005,GO-20209010179,THEFT UNDER - BICYCLE,2020-03-26T00:00:00,2020,March,Thursday,26,86,8,2020-03-29T00:00:00,2020,March,Sunday,29,89,9,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,MT,18,,700.0,STOLEN,23424,"{'type': 'Point', 'coordinates': (-79.43193071, 43.69724944)}"
-23442,6355,GO-20209015108,THEFT FROM MOTOR VEHICLE UNDER,2020-06-06T00:00:00,2020,June,Saturday,6,158,23,2020-06-10T00:00:00,2020,June,Wednesday,10,162,20,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,EPIC,MT,24,RED,1250.0,STOLEN,23425,"{'type': 'Point', 'coordinates': (-79.43384298, 43.69683067)}"
-23443,6419,GO-20201120354,THEFT UNDER - BICYCLE,2020-06-17T00:00:00,2020,June,Wednesday,17,169,23,2020-06-18T00:00:00,2020,June,Thursday,18,170,11,D13,Toronto,106,Humewood-Cedarvale (106),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,S6,EL,1,YEL,980.0,STOLEN,23426,"{'type': 'Point', 'coordinates': (-79.4236196, 43.68761959)}"
-23444,6524,GO-20209016757,THEFT UNDER,2020-07-03T00:00:00,2020,July,Friday,3,185,0,2020-07-03T00:00:00,2020,July,Friday,3,185,14,D13,Toronto,106,Humewood-Cedarvale (106),"Apartment (Rooming House, Condo)",Apartment,CC,,MT,27,WHI,350.0,STOLEN,23427,"{'type': 'Point', 'coordinates': (-79.41826195, 43.68316749)}"
-23445,6575,GO-20201278611,B&E,2020-07-07T00:00:00,2020,July,Tuesday,7,189,3,2020-07-10T00:00:00,2020,July,Friday,10,192,15,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,ESCAPE,MT,27,SIL,1000.0,STOLEN,23428,"{'type': 'Point', 'coordinates': (-79.42862537, 43.68966446)}"
-23446,18785,GO-20209030424,THEFT UNDER,2020-11-23T00:00:00,2020,November,Monday,23,328,16,2020-11-24T00:00:00,2020,November,Tuesday,24,329,13,D53,Toronto,100,Yonge-Eglinton (100),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,SCH 700C GTX2 M,MT,21,BLK,549.0,STOLEN,23429,"{'type': 'Point', 'coordinates': (-79.39832607, 43.70673316)}"
-23447,22548,GO-20201651701,THEFT OF EBIKE UNDER $5000,2020-09-01T00:00:00,2020,September,Tuesday,1,245,22,2020-09-03T00:00:00,2020,September,Thursday,3,247,16,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,UNKNOWN,EL,1,RED,1400.0,STOLEN,23430,"{'type': 'Point', 'coordinates': (-79.39762544, 43.70329403)}"
-23448,18723,GO-20209019000,THEFT UNDER - BICYCLE,2020-07-31T00:00:00,2020,July,Friday,31,213,7,2020-07-31T00:00:00,2020,July,Friday,31,213,7,D53,Toronto,104,Mount Pleasant West (104),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,MT,24,BLK,0.0,STOLEN,23431,"{'type': 'Point', 'coordinates': (-79.38853042, 43.70429367)}"
-23449,7374,GO-20201848964,B&E,2020-09-28T00:00:00,2020,September,Monday,28,272,20,2020-09-29T00:00:00,2020,September,Tuesday,29,273,9,D53,Toronto,104,Mount Pleasant West (104),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,,RC,0,WHI,150.0,STOLEN,23432,"{'type': 'Point', 'coordinates': (-79.39591185, 43.7047462)}"
-23450,7393,GO-20209025058,THEFT UNDER - BICYCLE,2020-09-25T00:00:00,2020,September,Friday,25,269,19,2020-10-01T00:00:00,2020,October,Thursday,1,275,10,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,UK,XC PRO 2007,MT,27,RED,2500.0,STOLEN,23433,"{'type': 'Point', 'coordinates': (-79.39743388, 43.70692304)}"
-23451,7407,GO-20201863396,THEFT UNDER - BICYCLE,2020-09-21T00:00:00,2020,September,Monday,21,265,18,2020-09-22T00:00:00,2020,September,Tuesday,22,266,16,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OTHER,,RG,18,GRN,800.0,STOLEN,23434,"{'type': 'Point', 'coordinates': (-79.39699894, 43.70029603)}"
-23452,7421,GO-20201898889,PROPERTY - FOUND,2020-10-06T00:00:00,2020,October,Tuesday,6,280,15,2020-10-06T00:00:00,2020,October,Tuesday,6,280,15,D53,Toronto,104,Mount Pleasant West (104),Schools During Un-Supervised Activity,Educational,CCM,KROSSPORT,MT,21,BLUBLK,,UNKNOWN,23435,"{'type': 'Point', 'coordinates': (-79.398957, 43.70958457)}"
-23453,7540,GO-20209027558,THEFT UNDER,2020-10-22T00:00:00,2020,October,Thursday,22,296,16,2020-10-24T00:00:00,2020,October,Saturday,24,298,16,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OT,ORIGAMI,FO,7,GRY,0.0,STOLEN,23436,"{'type': 'Point', 'coordinates': (-79.39083961, 43.69949369)}"
-23454,7648,GO-20209030187,THEFT UNDER,2020-11-16T00:00:00,2020,November,Monday,16,321,11,2020-11-20T00:00:00,2020,November,Friday,20,325,23,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,KO,KONA DEW DELUXE,RG,27,GRY,520.0,STOLEN,23438,"{'type': 'Point', 'coordinates': (-79.3904349, 43.69860218)}"
-23455,7653,GO-20202213058,THEFT OF EBIKE UNDER $5000,2020-11-19T00:00:00,2020,November,Thursday,19,324,21,2020-11-22T00:00:00,2020,November,Sunday,22,327,11,D53,Toronto,104,Mount Pleasant West (104),"Single Home, House (Attach Garage, Cottage, Mobile)",House,EMMO,URBAN S,EL,1,BLK,1300.0,STOLEN,23439,"{'type': 'Point', 'coordinates': (-79.38745435, 43.70164623)}"
-23456,7655,GO-20202213058,THEFT OF EBIKE UNDER $5000,2020-11-19T00:00:00,2020,November,Thursday,19,324,21,2020-11-22T00:00:00,2020,November,Sunday,22,327,11,D53,Toronto,104,Mount Pleasant West (104),"Single Home, House (Attach Garage, Cottage, Mobile)",House,EM,URBAN S,EL,40,BLK,1300.0,STOLEN,23440,"{'type': 'Point', 'coordinates': (-79.38745435, 43.70164623)}"
-23457,7693,GO-20209031411,THEFT UNDER,2020-06-21T00:00:00,2020,June,Sunday,21,173,14,2020-12-07T00:00:00,2020,December,Monday,7,342,15,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,TCR,RC,1,YEL,3000.0,STOLEN,23441,"{'type': 'Point', 'coordinates': (-79.39325386, 43.70907306)}"
-23458,18242,GO-20189031298,THEFT UNDER,2018-09-20T00:00:00,2018,September,Thursday,20,263,13,2018-09-20T00:00:00,2018,September,Thursday,20,263,15,D13,Toronto,101,Forest Hill South (101),Schools During Supervised Activity,Educational,TR,,MT,12,,0.0,STOLEN,23442,"{'type': 'Point', 'coordinates': (-79.41737478, 43.68578395)}"
-23459,18247,GO-20199009516,THEFT UNDER - BICYCLE,2019-03-22T00:00:00,2019,March,Friday,22,81,17,2019-03-25T00:00:00,2019,March,Monday,25,84,9,D13,Toronto,101,Forest Hill South (101),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,VFR 3,RG,21,BLK,100.0,STOLEN,23443,"{'type': 'Point', 'coordinates': (-79.41423537, 43.68632871)}"
-23460,18786,GO-20209030424,THEFT UNDER,2020-11-23T00:00:00,2020,November,Monday,23,328,16,2020-11-24T00:00:00,2020,November,Tuesday,24,329,13,D53,Toronto,100,Yonge-Eglinton (100),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,,MT,21,BLK,550.0,STOLEN,23444,"{'type': 'Point', 'coordinates': (-79.39832607, 43.70673316)}"
-23461,18248,GO-20199009516,THEFT UNDER - BICYCLE,2019-03-22T00:00:00,2019,March,Friday,22,81,17,2019-03-25T00:00:00,2019,March,Monday,25,84,9,D13,Toronto,101,Forest Hill South (101),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,OT,1,,0.0,STOLEN,23445,"{'type': 'Point', 'coordinates': (-79.41423537, 43.68632871)}"
-23462,3075,GO-20181433466,ROBBERY WITH WEAPON,2018-08-05T00:00:00,2018,August,Sunday,5,217,2,2018-08-05T00:00:00,2018,August,Sunday,5,217,3,D53,Toronto,104,Mount Pleasant West (104),"Private Property Structure (Pool, Shed, Detached Garage)",Other,EMMO,KNIGHT GTS,EL,72,BLK,5500.0,STOLEN,23446,"{'type': 'Point', 'coordinates': (-79.39690117, 43.70259578)}"
-23463,18787,GO-20202244241,THEFT OF EBIKE UNDER $5000,2020-11-22T00:00:00,2020,November,Sunday,22,327,17,2020-11-27T00:00:00,2020,November,Friday,27,332,9,D53,Toronto,100,Yonge-Eglinton (100),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,DAYMAK,EM2,EL,0,BLK,3500.0,STOLEN,23447,"{'type': 'Point', 'coordinates': (-79.40958156, 43.70436177)}"
-23464,22559,GO-20201748714,B&E,2020-09-15T00:00:00,2020,September,Tuesday,15,259,12,2020-09-15T00:00:00,2020,September,Tuesday,15,259,13,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,TREK,,RG,18,,819.0,STOLEN,23448,"{'type': 'Point', 'coordinates': (-79.38889326, 43.70518065)}"
-23465,7710,GO-20202395143,THEFT OF EBIKE UNDER $5000,2020-12-05T00:00:00,2020,December,Saturday,5,340,13,2020-12-21T00:00:00,2020,December,Monday,21,356,11,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,GIANT,EXPLORE E+3,EL,8,GRYGRN,3000.0,STOLEN,23449,"{'type': 'Point', 'coordinates': (-79.39083961, 43.69949369)}"
-23466,18727,GO-20209019597,THEFT UNDER - BICYCLE,2020-08-03T00:00:00,2020,August,Monday,3,216,2,2020-08-06T00:00:00,2020,August,Thursday,6,219,23,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,3,BLK,0.0,STOLEN,23450,"{'type': 'Point', 'coordinates': (-79.39325386, 43.70907306)}"
-23467,3374,GO-20189028724,THEFT UNDER - BICYCLE,2018-08-30T00:00:00,2018,August,Thursday,30,242,22,2018-08-31T00:00:00,2018,August,Friday,31,243,15,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,4900 ALPHA,RG,21,PLE,500.0,STOLEN,23451,"{'type': 'Point', 'coordinates': (-79.39743388, 43.70692304)}"
-23468,7782,GO-20141731597,THEFT UNDER,2014-03-10T00:00:00,2014,March,Monday,10,69,21,2014-03-20T00:00:00,2014,March,Thursday,20,79,15,D53,Toronto,104,Mount Pleasant West (104),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KONA,,MT,12,RED,200.0,STOLEN,23452,"{'type': 'Point', 'coordinates': (-79.39717895, 43.70113781)}"
-23469,18740,GO-20201572188,B&E W'INTENT,2020-08-18T00:00:00,2020,August,Tuesday,18,231,16,2020-08-21T00:00:00,2020,August,Friday,21,234,11,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OTHER,SB45,MT,12,BLK,12000.0,STOLEN,23453,"{'type': 'Point', 'coordinates': (-79.39676103, 43.70456998)}"
-23470,22570,GO-20201848964,B&E,2020-09-28T00:00:00,2020,September,Monday,28,272,20,2020-09-29T00:00:00,2020,September,Tuesday,29,273,9,D53,Toronto,104,Mount Pleasant West (104),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,,MT,21,WHI,0.0,STOLEN,23454,"{'type': 'Point', 'coordinates': (-79.39591185, 43.7047462)}"
-23471,3375,GO-20189028724,THEFT UNDER - BICYCLE,2018-08-30T00:00:00,2018,August,Thursday,30,242,22,2018-08-31T00:00:00,2018,August,Friday,31,243,15,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,RAIDER,MT,18,ONG,150.0,STOLEN,23455,"{'type': 'Point', 'coordinates': (-79.39743388, 43.70692304)}"
-23472,18831,GO-20142097821,THEFT UNDER,2014-05-12T00:00:00,2014,May,Monday,12,132,12,2014-05-17T00:00:00,2014,May,Saturday,17,137,14,D53,Toronto,100,Yonge-Eglinton (100),"Apartment (Rooming House, Condo)",Apartment,TREK,UNKNOWN,OT,21,BLKRED,700.0,STOLEN,23456,"{'type': 'Point', 'coordinates': (-79.40079865, 43.70776148)}"
-23473,18266,GO-2020727981,THEFT UNDER - BICYCLE,2020-04-03T00:00:00,2020,April,Friday,3,94,9,2020-04-15T00:00:00,2020,April,Wednesday,15,106,22,D13,Toronto,101,Forest Hill South (101),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,,MT,4,BLU,1200.0,STOLEN,23457,"{'type': 'Point', 'coordinates': (-79.42320013, 43.69529456)}"
-23474,7865,GO-20141955292,THEFT UNDER,2013-12-25T00:00:00,2013,December,Wednesday,25,359,12,2014-04-25T00:00:00,2014,April,Friday,25,115,10,D53,Toronto,104,Mount Pleasant West (104),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,MARIN OR MARINO,PORTOFINO,RC,21,BLUGRY,1300.0,STOLEN,23458,"{'type': 'Point', 'coordinates': (-79.39643093, 43.69737458)}"
-23475,18751,GO-20209021776,THEFT UNDER - BICYCLE,2020-08-27T00:00:00,2020,August,Thursday,27,240,16,2020-08-30T00:00:00,2020,August,Sunday,30,243,11,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,18,GRY,400.0,STOLEN,23459,"{'type': 'Point', 'coordinates': (-79.39764386, 43.70339756)}"
-23476,22602,GO-20209032070,THEFT UNDER,2020-12-01T00:00:00,2020,December,Tuesday,1,336,0,2020-12-15T00:00:00,2020,December,Tuesday,15,350,19,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,CA,BAD BOY 3,RG,16,BLK,1150.0,STOLEN,23460,"{'type': 'Point', 'coordinates': (-79.39277875000002, 43.70786225)}"
-23477,3468,GO-20189030429,THEFT UNDER - BICYCLE,2018-09-14T00:00:00,2018,September,Friday,14,257,7,2018-09-14T00:00:00,2018,September,Friday,14,257,21,D53,Toronto,104,Mount Pleasant West (104),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,BI,STRADA,RC,18,LBL,1500.0,STOLEN,23461,"{'type': 'Point', 'coordinates': (-79.39545215, 43.70732915)}"
-23478,3594,GO-20189032625,THEFT UNDER - BICYCLE,2018-09-30T00:00:00,2018,September,Sunday,30,273,20,2018-10-02T00:00:00,2018,October,Tuesday,2,275,10,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,CC,,MT,21,WHI,300.0,STOLEN,23462,"{'type': 'Point', 'coordinates': (-79.38670348000001, 43.69930064)}"
-23479,3642,GO-20189033293,THEFT UNDER - BICYCLE,2018-09-30T00:00:00,2018,September,Sunday,30,273,15,2018-10-08T00:00:00,2018,October,Monday,8,281,23,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,DEVINCI,7,RC,50,YEL,800.0,STOLEN,23463,"{'type': 'Point', 'coordinates': (-79.38670348000001, 43.69930064)}"
-23480,3798,GO-20181990701,THEFT OF EBIKE UNDER $5000,2018-10-27T00:00:00,2018,October,Saturday,27,300,13,2018-10-28T00:00:00,2018,October,Sunday,28,301,17,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,SONIC,EL,1,RED,1300.0,STOLEN,23464,"{'type': 'Point', 'coordinates': (-79.39442018, 43.71206328)}"
-23481,3830,GO-20189037485,THEFT UNDER - BICYCLE,2018-11-08T00:00:00,2018,November,Thursday,8,312,21,2018-11-09T00:00:00,2018,November,Friday,9,313,3,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,UK,ROAD BIKE XC550,OT,21,BLK,440.0,STOLEN,23465,"{'type': 'Point', 'coordinates': (-79.39146025, 43.70813555)}"
-23482,3892,GO-20189039517,THEFT UNDER - BICYCLE,2018-11-18T00:00:00,2018,November,Sunday,18,322,11,2018-11-23T00:00:00,2018,November,Friday,23,327,16,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,UK,GIGI PRO MODEL,RG,26,RED,1250.0,STOLEN,23466,"{'type': 'Point', 'coordinates': (-79.38693266, 43.70031352000001)}"
-23483,3984,GO-20199000628,THEFT UNDER - BICYCLE,2019-01-06T00:00:00,2019,January,Sunday,6,6,12,2019-01-06T00:00:00,2019,January,Sunday,6,6,14,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,DB,RESPONSE COMP,MT,27,GLD,1000.0,STOLEN,23467,"{'type': 'Point', 'coordinates': (-79.39186194, 43.70556606)}"
-23484,4028,GO-20199003938,THEFT UNDER - BICYCLE,2019-01-27T00:00:00,2019,January,Sunday,27,27,19,2019-01-29T00:00:00,2019,January,Tuesday,29,29,21,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,GT,,MT,32,BLK,980.0,STOLEN,23468,"{'type': 'Point', 'coordinates': (-79.39118625, 43.71112991)}"
-23485,4296,GO-2019904779,B&E,2019-05-05T00:00:00,2019,May,Sunday,5,125,16,2019-05-18T00:00:00,2019,May,Saturday,18,138,11,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,CANNONDALE,SUPER SIX,RC,21,BLK,3000.0,STOLEN,23469,"{'type': 'Point', 'coordinates': (-79.3904349, 43.69860218)}"
-23486,4416,GO-20199017531,THEFT UNDER - BICYCLE,2019-06-05T00:00:00,2019,June,Wednesday,5,156,1,2019-06-05T00:00:00,2019,June,Wednesday,5,156,17,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OT,OCO ROAD BIKE,RG,7,GRY,500.0,STOLEN,23470,"{'type': 'Point', 'coordinates': (-79.3961644, 43.69612766)}"
-23487,4423,GO-20199017761,THEFT UNDER - BICYCLE,2019-06-07T00:00:00,2019,June,Friday,7,158,15,2019-06-07T00:00:00,2019,June,Friday,7,158,15,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,TR,7.4 FX WSD 17,RG,9,BRZ,1000.0,STOLEN,23471,"{'type': 'Point', 'coordinates': (-79.39676103, 43.70456998)}"
-23488,4424,GO-20199017761,THEFT UNDER - BICYCLE,2019-06-07T00:00:00,2019,June,Friday,7,158,15,2019-06-07T00:00:00,2019,June,Friday,7,158,15,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,GI,FASTROAD SLR 1,RG,8,BLK,1500.0,STOLEN,23472,"{'type': 'Point', 'coordinates': (-79.39676103, 43.70456998)}"
-23489,4610,GO-20199020190,THEFT UNDER,2019-06-15T00:00:00,2019,June,Saturday,15,166,5,2019-06-26T00:00:00,2019,June,Wednesday,26,177,13,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,10,GRN,500.0,STOLEN,23473,"{'type': 'Point', 'coordinates': (-79.39863797, 43.70821093)}"
-23490,4627,GO-20199020304,THEFT UNDER - BICYCLE,2019-06-21T00:00:00,2019,June,Friday,21,172,1,2019-06-27T00:00:00,2019,June,Thursday,27,178,12,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,20,BLK,1300.0,STOLEN,23474,"{'type': 'Point', 'coordinates': (-79.39325386, 43.70907306)}"
-23491,4628,GO-20199020304,THEFT UNDER - BICYCLE,2019-06-21T00:00:00,2019,June,Friday,21,172,1,2019-06-27T00:00:00,2019,June,Thursday,27,178,12,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,20,BLK,1300.0,STOLEN,23475,"{'type': 'Point', 'coordinates': (-79.39325386, 43.70907306)}"
-23492,4651,GO-20199020690,THEFT UNDER - BICYCLE,2019-06-28T00:00:00,2019,June,Friday,28,179,17,2019-07-02T00:00:00,2019,July,Tuesday,2,183,6,D53,Toronto,104,Mount Pleasant West (104),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ULTRA ELITE,MT,6,BLK,2200.0,STOLEN,23476,"{'type': 'Point', 'coordinates': (-79.39409295, 43.70760244)}"
-23493,4661,GO-20199020850,THEFT UNDER - BICYCLE,2019-06-26T00:00:00,2019,June,Wednesday,26,177,19,2019-07-03T00:00:00,2019,July,Wednesday,3,184,15,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,TR,17 TREK 1.2 C H,RC,30,BLK,1100.0,STOLEN,23477,"{'type': 'Point', 'coordinates': (-79.39676103, 43.70456998)}"
-23494,4796,GO-20199022799,THEFT UNDER - BICYCLE,2019-07-18T00:00:00,2019,July,Thursday,18,199,4,2019-07-18T00:00:00,2019,July,Thursday,18,199,16,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,KH,ZACA,MT,21,,700.0,STOLEN,23478,"{'type': 'Point', 'coordinates': (-79.3961644, 43.69612766)}"
-23495,4865,GO-20199023578,THEFT UNDER - BICYCLE,2019-07-23T00:00:00,2019,July,Tuesday,23,204,13,2019-07-24T00:00:00,2019,July,Wednesday,24,205,16,D53,Toronto,104,Mount Pleasant West (104),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,,RG,6,BGE,600.0,STOLEN,23479,"{'type': 'Point', 'coordinates': (-79.39643093, 43.69737458)}"
-23496,22829,GO-20142138810,THEFT UNDER,2014-05-23T00:00:00,2014,May,Friday,23,143,16,2014-05-23T00:00:00,2014,May,Friday,23,143,21,D53,Toronto,104,Mount Pleasant West (104),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,RC,25,BLKTRQ,1700.0,STOLEN,23480,"{'type': 'Point', 'coordinates': (-79.39832607, 43.70673316)}"
-23497,18420,GO-20151071822,THEFT UNDER,2015-06-24T00:00:00,2015,June,Wednesday,24,175,20,2015-06-26T00:00:00,2015,June,Friday,26,177,14,D13,Toronto,101,Forest Hill South (101),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,MT,21,REDWHI,800.0,STOLEN,23481,"{'type': 'Point', 'coordinates': (-79.41957799, 43.68637133)}"
-23498,18757,GO-20201691491,THEFT UNDER - BICYCLE,2020-09-07T00:00:00,2020,September,Monday,7,251,12,2020-09-09T00:00:00,2020,September,Wednesday,9,253,8,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,NORCO,CROSS COUNTRY,MT,21,CRM,1500.0,STOLEN,23482,"{'type': 'Point', 'coordinates': (-79.39778528, 43.7041493)}"
-23499,18898,GO-20159003554,THEFT UNDER,2015-06-11T00:00:00,2015,June,Thursday,11,162,18,2015-06-12T00:00:00,2015,June,Friday,12,163,15,D53,Toronto,100,Yonge-Eglinton (100),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,2015 7.1 STORM,MT,27,BLK,860.0,STOLEN,23483,"{'type': 'Point', 'coordinates': (-79.39660264, 43.69830188)}"
-23500,7874,GO-20141990152,B&E,2014-04-30T00:00:00,2014,April,Wednesday,30,120,3,2014-04-30T00:00:00,2014,April,Wednesday,30,120,21,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,NORCO,NONE,MT,12,BLK,,STOLEN,23484,"{'type': 'Point', 'coordinates': (-79.3904349, 43.69860218)}"
-23501,4868,GO-20191389818,B&E,2019-07-13T00:00:00,2019,July,Saturday,13,194,7,2019-07-24T00:00:00,2019,July,Wednesday,24,205,10,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,BIANCHI,INTENSO,RC,6,TRQ,3500.0,STOLEN,23485,"{'type': 'Point', 'coordinates': (-79.39676103, 43.70456998)}"
-23502,4880,GO-20199023710,THEFT UNDER,2019-07-21T00:00:00,2019,July,Sunday,21,202,17,2019-07-25T00:00:00,2019,July,Thursday,25,206,15,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,ALUMINUM ROAD B,RG,21,WHI,417.0,STOLEN,23486,"{'type': 'Point', 'coordinates': (-79.39545215, 43.70732915)}"
-23503,4950,GO-20199024640,THEFT UNDER - BICYCLE,2019-07-01T00:00:00,2019,July,Monday,1,182,14,2019-08-01T00:00:00,2019,August,Thursday,1,213,14,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,UK,STUMPJUMPER COM,MT,20,BLK,2700.0,STOLEN,23487,"{'type': 'Point', 'coordinates': (-79.39676103, 43.70456998)}"
-23504,5071,GO-20199026248,THEFT UNDER - BICYCLE,2019-08-13T00:00:00,2019,August,Tuesday,13,225,23,2019-08-14T00:00:00,2019,August,Wednesday,14,226,19,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OT,CARBON C3,RC,11,BLK,0.0,STOLEN,23488,"{'type': 'Point', 'coordinates': (-79.39325386, 43.70907306)}"
-23505,5083,GO-20199026371,THEFT UNDER,2019-08-15T00:00:00,2019,August,Thursday,15,227,8,2019-08-15T00:00:00,2019,August,Thursday,15,227,16,D53,Toronto,104,Mount Pleasant West (104),Ttc Subway Station,Transit,GI,GIANT ESCAPE 2,RG,24,SIL,699.0,STOLEN,23489,"{'type': 'Point', 'coordinates': (-79.39781207, 43.70435185)}"
-23506,5205,GO-20199028413,THEFT UNDER - BICYCLE,2019-08-30T00:00:00,2019,August,Friday,30,242,22,2019-09-01T00:00:00,2019,September,Sunday,1,244,9,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,NO,INDIE 3,RG,24,OTH,650.0,STOLEN,23490,"{'type': 'Point', 'coordinates': (-79.39186194, 43.70556606)}"
-23507,5354,GO-20191789595,B&E W'INTENT,2019-09-17T00:00:00,2019,September,Tuesday,17,260,5,2019-09-17T00:00:00,2019,September,Tuesday,17,260,18,D53,Toronto,104,Mount Pleasant West (104),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CANNONDALE,GRAVEL,TO,10,GRY,5000.0,STOLEN,23491,"{'type': 'Point', 'coordinates': (-79.39545215, 43.70732915)}"
-23508,5360,GO-20191794467,THEFT UNDER - BICYCLE,2019-07-15T00:00:00,2019,July,Monday,15,196,0,2019-09-18T00:00:00,2019,September,Wednesday,18,261,11,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,GT,AGGRESSOR,MT,0,GRYONG,450.0,STOLEN,23492,"{'type': 'Point', 'coordinates': (-79.38959964, 43.69974904)}"
-23509,5361,GO-20191794467,THEFT UNDER - BICYCLE,2019-07-15T00:00:00,2019,July,Monday,15,196,0,2019-09-18T00:00:00,2019,September,Wednesday,18,261,11,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,GT,AGGRESSOR,MT,0,GRYONG,450.0,STOLEN,23493,"{'type': 'Point', 'coordinates': (-79.38959964, 43.69974904)}"
-23510,5375,GO-20199031027,THEFT UNDER - BICYCLE,2019-09-21T00:00:00,2019,September,Saturday,21,264,16,2019-09-22T00:00:00,2019,September,Sunday,22,265,10,D53,Toronto,104,Mount Pleasant West (104),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,1,OTH,300.0,STOLEN,23494,"{'type': 'Point', 'coordinates': (-79.39545215, 43.70732915)}"
-23511,5448,GO-20199032200,THEFT UNDER - BICYCLE,2019-10-01T00:00:00,2019,October,Tuesday,1,274,12,2019-10-01T00:00:00,2019,October,Tuesday,1,274,12,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,TR,7000,MT,21,WHI,1000.0,STOLEN,23495,"{'type': 'Point', 'coordinates': (-79.38693266, 43.70031352000001)}"
-23512,5450,GO-20199032225,THEFT UNDER - BICYCLE,2019-09-24T00:00:00,2019,September,Tuesday,24,267,18,2019-10-01T00:00:00,2019,October,Tuesday,1,274,14,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,24,BLK,1000.0,STOLEN,23496,"{'type': 'Point', 'coordinates': (-79.38693266, 43.70031352000001)}"
-23513,5603,GO-20199035525,THEFT FROM MOTOR VEHICLE UNDER,2019-10-26T00:00:00,2019,October,Saturday,26,299,14,2019-10-28T00:00:00,2019,October,Monday,28,301,13,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,GI,GIANT TCX2,RC,11,BLK,1400.0,STOLEN,23497,"{'type': 'Point', 'coordinates': (-79.39186194, 43.70556606)}"
-23514,5624,GO-20199035808,THEFT UNDER - BICYCLE,2019-10-29T00:00:00,2019,October,Tuesday,29,302,18,2019-10-30T00:00:00,2019,October,Wednesday,30,303,10,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RC,10,WHI,1300.0,STOLEN,23498,"{'type': 'Point', 'coordinates': (-79.39325386, 43.70907306)}"
-23515,5627,GO-20199035808,THEFT UNDER - BICYCLE,2019-10-29T00:00:00,2019,October,Tuesday,29,302,18,2019-10-30T00:00:00,2019,October,Wednesday,30,303,10,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RC,10,WHI,1300.0,STOLEN,23499,"{'type': 'Point', 'coordinates': (-79.39325386, 43.70907306)}"
-23516,5684,GO-20192191692,B&E,2019-10-11T00:00:00,2019,October,Friday,11,284,12,2019-11-13T00:00:00,2019,November,Wednesday,13,317,10,D53,Toronto,104,Mount Pleasant West (104),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,XFR3,OT,21,BLKGRN,1000.0,STOLEN,23500,"{'type': 'Point', 'coordinates': (-79.39676103, 43.70456998)}"
-23517,5689,GO-20199037461,THEFT UNDER - BICYCLE,2019-11-13T00:00:00,2019,November,Wednesday,13,317,19,2019-11-13T00:00:00,2019,November,Wednesday,13,317,20,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,6,BLK,500.0,STOLEN,23501,"{'type': 'Point', 'coordinates': (-79.39743388, 43.70692304)}"
-23518,5711,GO-20192222943,B&E,2019-11-17T00:00:00,2019,November,Sunday,17,321,6,2019-11-17T00:00:00,2019,November,Sunday,17,321,18,D53,Toronto,104,Mount Pleasant West (104),"Private Property Structure (Pool, Shed, Detached Garage)",Other,ORBEA,MOUNTAIN BIKE,MT,10,GRN,2500.0,STOLEN,23502,"{'type': 'Point', 'coordinates': (-79.39858741, 43.70798666)}"
-23519,5745,GO-20199039769,THEFT UNDER - BICYCLE,2019-12-02T00:00:00,2019,December,Monday,2,336,13,2019-12-04T00:00:00,2019,December,Wednesday,4,338,19,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,TR,,RG,9,,100.0,STOLEN,23503,"{'type': 'Point', 'coordinates': (-79.38693266, 43.70031352000001)}"
-23520,5997,GO-2020595356,THEFT UNDER - BICYCLE,2020-03-22T00:00:00,2020,March,Sunday,22,82,12,2020-03-24T00:00:00,2020,March,Tuesday,24,84,15,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RG,15,BLU,250.0,STOLEN,23504,"{'type': 'Point', 'coordinates': (-79.39277875000002, 43.70786225)}"
-23521,6028,GO-20209010562,THEFT UNDER - BICYCLE,2020-04-05T00:00:00,2020,April,Sunday,5,96,17,2020-04-06T00:00:00,2020,April,Monday,6,97,14,D53,Toronto,104,Mount Pleasant West (104),Convenience Stores,Commercial,CC,,MT,21,GRY,350.0,STOLEN,23505,"{'type': 'Point', 'coordinates': (-79.39118625, 43.71112991)}"
-23522,6029,GO-20209010573,THEFT UNDER - BICYCLE,2020-04-02T00:00:00,2020,April,Thursday,2,93,9,2020-04-06T00:00:00,2020,April,Monday,6,97,15,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,NO,VFR 3 15 18-RDW,OT,18,RED,575.0,STOLEN,23506,"{'type': 'Point', 'coordinates': (-79.39545215, 43.70732915)}"
-23523,6085,GO-20209011580,THEFT UNDER,2020-04-13T00:00:00,2020,April,Monday,13,104,13,2020-04-20T00:00:00,2020,April,Monday,20,111,14,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,UK,MF19,EL,7,ONG,2000.0,STOLEN,23507,"{'type': 'Point', 'coordinates': (-79.39385701, 43.71059193)}"
-23524,6114,GO-20209012072,THEFT UNDER - BICYCLE,2020-04-25T00:00:00,2020,April,Saturday,25,116,1,2020-04-28T00:00:00,2020,April,Tuesday,28,119,12,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OT,GLIDER,TO,3,GRN,300.0,STOLEN,23508,"{'type': 'Point', 'coordinates': (-79.3961644, 43.69612766)}"
-23525,6126,GO-2020819178,B&E,2020-04-30T00:00:00,2020,April,Thursday,30,121,21,2020-05-01T00:00:00,2020,May,Friday,1,122,12,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,SIRRUS,MT,0,GRY,1200.0,STOLEN,23509,"{'type': 'Point', 'coordinates': (-79.39858741, 43.70798666)}"
-23526,6163,GO-20209012896,THEFT UNDER - BICYCLE,2020-05-08T00:00:00,2020,May,Friday,8,129,6,2020-05-11T00:00:00,2020,May,Monday,11,132,14,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,GI,RAPID 0,RC,22,GRY,1640.0,STOLEN,23510,"{'type': 'Point', 'coordinates': (-79.3904349, 43.69860218)}"
-23527,6170,GO-2020873463,B&E,2020-04-09T00:00:00,2020,April,Thursday,9,100,0,2020-05-11T00:00:00,2020,May,Monday,11,132,15,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,GIANT,ATX,MT,0,BLKRED,644.0,STOLEN,23511,"{'type': 'Point', 'coordinates': (-79.39409295, 43.70760244)}"
-23528,6207,GO-20209013441,THEFT UNDER - BICYCLE,2020-05-08T00:00:00,2020,May,Friday,8,129,6,2020-05-19T00:00:00,2020,May,Tuesday,19,140,15,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,RM,,MT,21,RED,800.0,STOLEN,23512,"{'type': 'Point', 'coordinates': (-79.3904349, 43.69860218)}"
-23529,6216,GO-20209013608,THEFT UNDER - BICYCLE,2020-05-18T00:00:00,2020,May,Monday,18,139,7,2020-05-21T00:00:00,2020,May,Thursday,21,142,13,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,20,,1000.0,STOLEN,23513,"{'type': 'Point', 'coordinates': (-79.39325386, 43.70907306)}"
-23530,6219,GO-20209013642,THEFT UNDER,2020-05-20T00:00:00,2020,May,Wednesday,20,141,17,2020-05-21T00:00:00,2020,May,Thursday,21,142,17,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OT,VITA ELITE,RG,20,DBL,2100.0,STOLEN,23514,"{'type': 'Point', 'coordinates': (-79.38879081, 43.69768245)}"
-23531,6238,GO-20209013835,THEFT UNDER - BICYCLE,2020-05-24T00:00:00,2020,May,Sunday,24,145,20,2020-05-24T00:00:00,2020,May,Sunday,24,145,22,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OT,ALLEZ,TO,10,ONG,1200.0,STOLEN,23515,"{'type': 'Point', 'coordinates': (-79.3961644, 43.69612766)}"
-23532,6245,GO-20209013875,INVALID GO - RMS ONLY,2020-05-24T00:00:00,2020,May,Sunday,24,145,19,2020-05-25T00:00:00,2020,May,Monday,25,146,15,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,90,ONG,1500.0,STOLEN,23516,"{'type': 'Point', 'coordinates': (-79.3961644, 43.69612766)}"
-23533,6268,GO-2020989156,B&E,2020-04-13T00:00:00,2020,April,Monday,13,104,4,2020-05-29T00:00:00,2020,May,Friday,29,150,11,D53,Toronto,104,Mount Pleasant West (104),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,IGUNA,MT,21,BLK,500.0,UNKNOWN,23517,"{'type': 'Point', 'coordinates': (-79.39743388, 43.70692304)}"
-23534,6274,GO-20209014286,THEFT UNDER - BICYCLE,2020-05-30T00:00:00,2020,May,Saturday,30,151,12,2020-05-31T00:00:00,2020,May,Sunday,31,152,13,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,UK,CROSSTRAIL ELIT,MT,27,BLK,1200.0,STOLEN,23518,"{'type': 'Point', 'coordinates': (-79.3961644, 43.69612766)}"
-23535,6281,GO-20201008550,B&E,2020-06-01T00:00:00,2020,June,Monday,1,153,13,2020-06-01T00:00:00,2020,June,Monday,1,153,13,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OTHER,,OT,18,BLK,,STOLEN,23519,"{'type': 'Point', 'coordinates': (-79.39325386, 43.70907306)}"
-23536,6323,GO-20209014819,THEFT UNDER - BICYCLE,2020-06-08T00:00:00,2020,June,Monday,8,160,9,2020-06-08T00:00:00,2020,June,Monday,8,160,10,D53,Toronto,104,Mount Pleasant West (104),Schools During Un-Supervised Activity,Educational,OT,EXERCISER,RC,10,WHI,650.0,STOLEN,23520,"{'type': 'Point', 'coordinates': (-79.39863797, 43.70821093)}"
-23537,6327,GO-20209014825,THEFT UNDER - BICYCLE,2020-06-07T00:00:00,2020,June,Sunday,7,159,12,2020-06-08T00:00:00,2020,June,Monday,8,160,11,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,UK,COMMUTER 2,TO,8,RED,700.0,STOLEN,23521,"{'type': 'Point', 'coordinates': (-79.39442018, 43.71206328)}"
-23538,6328,GO-20201042760,B&E,2020-05-31T00:00:00,2020,May,Sunday,31,152,17,2020-06-09T00:00:00,2020,June,Tuesday,9,161,17,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,GIANT,LIV,MT,99,GRYSIL,1000.0,STOLEN,23522,"{'type': 'Point', 'coordinates': (-79.39442018, 43.71206328)}"
-23539,6329,GO-20201042760,B&E,2020-05-31T00:00:00,2020,May,Sunday,31,152,17,2020-06-09T00:00:00,2020,June,Tuesday,9,161,17,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,GIANT,ROAM 2,MT,99,GRYSIL,1000.0,STOLEN,23523,"{'type': 'Point', 'coordinates': (-79.39442018, 43.71206328)}"
-23540,6414,GO-20209015562,THEFT UNDER - BICYCLE,2020-06-17T00:00:00,2020,June,Wednesday,17,169,12,2020-06-17T00:00:00,2020,June,Wednesday,17,169,12,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,RED,400.0,STOLEN,23524,"{'type': 'Point', 'coordinates': (-79.39678883, 43.70706033)}"
-23541,6422,GO-20209015617,FTC PROBATION ORDER,2020-06-17T00:00:00,2020,June,Wednesday,17,169,4,2020-06-18T00:00:00,2020,June,Thursday,18,170,9,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OT,SUB 40,RG,8,DBL,0.0,STOLEN,23525,"{'type': 'Point', 'coordinates': (-79.39186194, 43.70556606)}"
-23542,6452,GO-20201148610,B&E,2020-06-20T00:00:00,2020,June,Saturday,20,172,7,2020-06-22T00:00:00,2020,June,Monday,22,174,13,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,STUMPJUMPER,MT,18,SILBLK,,STOLEN,23526,"{'type': 'Point', 'coordinates': (-79.39325386, 43.70907306)}"
-23543,6474,GO-20209016244,THEFT UNDER - BICYCLE,2020-06-25T00:00:00,2020,June,Thursday,25,177,1,2020-06-26T00:00:00,2020,June,Friday,26,178,14,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,HF,,BM,20,,138.0,STOLEN,23527,"{'type': 'Point', 'coordinates': (-79.39118625, 43.71112991)}"
-23544,6477,GO-20209016251,THEFT UNDER - BICYCLE,2020-06-25T00:00:00,2020,June,Thursday,25,177,23,2020-06-26T00:00:00,2020,June,Friday,26,178,14,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,UK,SEE PHOTO,MT,7,WHI,800.0,STOLEN,23528,"{'type': 'Point', 'coordinates': (-79.39409295, 43.70760244)}"
-23545,6483,GO-20209016251,THEFT UNDER - BICYCLE,2020-06-25T00:00:00,2020,June,Thursday,25,177,23,2020-06-26T00:00:00,2020,June,Friday,26,178,14,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,7,WHI,800.0,STOLEN,23529,"{'type': 'Point', 'coordinates': (-79.39409295, 43.70760244)}"
-23546,6512,GO-20209016251,THEFT UNDER - BICYCLE,2020-06-25T00:00:00,2020,June,Thursday,25,177,23,2020-06-26T00:00:00,2020,June,Friday,26,178,14,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,UK,,OT,7,WHI,800.0,STOLEN,23530,"{'type': 'Point', 'coordinates': (-79.39409295, 43.70760244)}"
-23547,6523,GO-20209016730,THEFT UNDER - BICYCLE,2020-07-03T00:00:00,2020,July,Friday,3,185,0,2020-07-03T00:00:00,2020,July,Friday,3,185,12,D53,Toronto,104,Mount Pleasant West (104),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GT,2020,MT,7,BLU,2000.0,STOLEN,23531,"{'type': 'Point', 'coordinates': (-79.39277875000002, 43.70786225)}"
-23548,6536,GO-20209016894,THEFT UNDER - BICYCLE,2020-07-05T00:00:00,2020,July,Sunday,5,187,15,2020-07-06T00:00:00,2020,July,Monday,6,188,9,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,RA,RUSH HOUR,RG,1,BLK,700.0,STOLEN,23532,"{'type': 'Point', 'coordinates': (-79.3904349, 43.69860218)}"
-23549,6551,GO-20209017024,THEFT UNDER - BICYCLE,2020-06-22T00:00:00,2020,June,Monday,22,174,17,2020-07-07T00:00:00,2020,July,Tuesday,7,189,14,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,GT,GT AGRESSOR COM,MT,24,DBL,550.0,STOLEN,23533,"{'type': 'Point', 'coordinates': (-79.39325386, 43.70907306)}"
-23550,6634,GO-20201318761,B&E,2020-07-13T00:00:00,2020,July,Monday,13,195,21,2020-07-15T00:00:00,2020,July,Wednesday,15,197,15,D53,Toronto,104,Mount Pleasant West (104),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GARY FISHER,,RC,18,RED,150.0,STOLEN,23534,"{'type': 'Point', 'coordinates': (-79.39690117, 43.70259578)}"
-23551,6636,GO-20209017724,THEFT UNDER - BICYCLE,2020-07-16T00:00:00,2020,July,Thursday,16,198,14,2020-07-16T00:00:00,2020,July,Thursday,16,198,16,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,CA,SYNAPSE,RC,11,BLK,2500.0,STOLEN,23535,"{'type': 'Point', 'coordinates': (-79.38693266, 43.70031352000001)}"
-23552,6649,GO-20201314626,THEFT UNDER - BICYCLE,2020-07-14T00:00:00,2020,July,Tuesday,14,196,21,2020-07-15T00:00:00,2020,July,Wednesday,15,197,18,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,,MT,18,BLKGRY,700.0,STOLEN,23536,"{'type': 'Point', 'coordinates': (-79.38670348000001, 43.69930064)}"
-23553,6681,GO-20209018077,THEFT UNDER,2020-07-18T00:00:00,2020,July,Saturday,18,200,18,2020-07-20T00:00:00,2020,July,Monday,20,202,20,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,,,RG,1,,150.0,STOLEN,23537,"{'type': 'Point', 'coordinates': (-79.39409295, 43.70760244)}"
-23554,6720,GO-20209018395,THEFT UNDER - BICYCLE,2020-07-22T00:00:00,2020,July,Wednesday,22,204,19,2020-07-23T00:00:00,2020,July,Thursday,23,205,22,D53,Toronto,104,Mount Pleasant West (104),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,MT,24,BLK,1200.0,STOLEN,23538,"{'type': 'Point', 'coordinates': (-79.39409295, 43.70760244)}"
-23555,6724,GO-20209018440,THEFT UNDER - BICYCLE,2020-07-17T00:00:00,2020,July,Friday,17,199,6,2020-07-24T00:00:00,2020,July,Friday,24,206,15,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,TR,,RG,18,BLK,800.0,STOLEN,23539,"{'type': 'Point', 'coordinates': (-79.38693266, 43.70031352000001)}"
-23556,6746,GO-20209018615,THEFT UNDER - BICYCLE,2020-07-26T00:00:00,2020,July,Sunday,26,208,17,2020-07-26T00:00:00,2020,July,Sunday,26,208,20,D53,Toronto,104,Mount Pleasant West (104),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,,OT,21,GRY,380.0,STOLEN,23540,"{'type': 'Point', 'coordinates': (-79.38925182, 43.70608563)}"
-23557,6747,GO-20209018615,THEFT UNDER - BICYCLE,2020-07-26T00:00:00,2020,July,Sunday,26,208,17,2020-07-26T00:00:00,2020,July,Sunday,26,208,20,D53,Toronto,104,Mount Pleasant West (104),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,,OT,18,GRY,280.0,STOLEN,23541,"{'type': 'Point', 'coordinates': (-79.38925182, 43.70608563)}"
-23558,6808,GO-20201395579,THEFT UNDER - BICYCLE,2020-07-26T00:00:00,2020,July,Sunday,26,208,20,2020-07-27T00:00:00,2020,July,Monday,27,209,7,D53,Toronto,104,Mount Pleasant West (104),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,,RG,10,RED,400.0,STOLEN,23542,"{'type': 'Point', 'coordinates': (-79.3961644, 43.69612766)}"
-23559,6821,GO-20209019049,THEFT FROM MOTOR VEHICLE UNDER,2020-07-30T00:00:00,2020,July,Thursday,30,212,1,2020-07-30T00:00:00,2020,July,Thursday,30,212,22,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RM,SOUL,MT,21,WHI,500.0,STOLEN,23543,"{'type': 'Point', 'coordinates': (-79.39442018, 43.71206328)}"
-23560,6931,GO-20209019830,THEFT UNDER,2020-08-08T00:00:00,2020,August,Saturday,8,221,0,2020-08-10T00:00:00,2020,August,Monday,10,223,17,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,SC,,MT,21,GRY,0.0,STOLEN,23544,"{'type': 'Point', 'coordinates': (-79.38959964, 43.69974904)}"
-23561,6956,GO-20209020240,THEFT UNDER - BICYCLE,2020-08-12T00:00:00,2020,August,Wednesday,12,225,10,2020-08-14T00:00:00,2020,August,Friday,14,227,16,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,NO,SCENE 3,RG,7,BLU,700.0,STOLEN,23545,"{'type': 'Point', 'coordinates': (-79.38693266, 43.70031352000001)}"
-23562,7030,GO-20209020935,THEFT UNDER,2020-08-20T00:00:00,2020,August,Thursday,20,233,5,2020-08-21T00:00:00,2020,August,Friday,21,234,19,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OT,MOUNTAIN BIKE,MT,21,SIL,1000.0,STOLEN,23546,"{'type': 'Point', 'coordinates': (-79.39545215, 43.70732915)}"
-23563,7031,GO-20209020936,THEFT UNDER - BICYCLE,2020-08-17T00:00:00,2020,August,Monday,17,230,23,2020-08-22T00:00:00,2020,August,Saturday,22,235,16,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OT,MUDDY 4,MT,24,LGR,700.0,STOLEN,23547,"{'type': 'Point', 'coordinates': (-79.39325386, 43.70907306)}"
-23564,7034,GO-20209020958,THEFT UNDER - BICYCLE,2020-07-16T00:00:00,2020,July,Thursday,16,198,16,2020-08-22T00:00:00,2020,August,Saturday,22,235,0,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,UK,G4,MT,25,BLU,400.0,STOLEN,23548,"{'type': 'Point', 'coordinates': (-79.38670348000001, 43.69930064)}"
-23565,7062,GO-20201599256,THEFT UNDER - BICYCLE,2020-08-19T00:00:00,2020,August,Wednesday,19,232,13,2020-08-25T00:00:00,2020,August,Tuesday,25,238,8,D53,Toronto,104,Mount Pleasant West (104),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,,MT,10,BLKRED,500.0,STOLEN,23549,"{'type': 'Point', 'coordinates': (-79.39061698, 43.70961667000001)}"
-23566,7103,GO-20209021595,THEFT UNDER - BICYCLE,2020-08-27T00:00:00,2020,August,Thursday,27,240,22,2020-08-28T00:00:00,2020,August,Friday,28,241,9,D53,Toronto,104,Mount Pleasant West (104),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RM,ROCKY MOUNTAIN,MT,18,ONG,1000.0,STOLEN,23550,"{'type': 'Point', 'coordinates': (-79.39364243, 43.70099056)}"
-23567,7144,GO-20209021963,THEFT UNDER - BICYCLE,2020-08-19T00:00:00,2020,August,Wednesday,19,232,0,2020-09-01T00:00:00,2020,September,Tuesday,1,245,11,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OT,HARD ROCK,MT,9,GRY,1000.0,STOLEN,23551,"{'type': 'Point', 'coordinates': (-79.39743388, 43.70692304)}"
-23568,7145,GO-20209021963,THEFT UNDER - BICYCLE,2020-08-19T00:00:00,2020,August,Wednesday,19,232,0,2020-09-01T00:00:00,2020,September,Tuesday,1,245,11,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OT,MOJO SLR,MT,10,LGR,4000.0,STOLEN,23552,"{'type': 'Point', 'coordinates': (-79.39743388, 43.70692304)}"
-23569,7148,GO-20209022004,THEFT UNDER - BICYCLE,2020-09-01T00:00:00,2020,September,Tuesday,1,245,15,2020-09-01T00:00:00,2020,September,Tuesday,1,245,16,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,UK,,OT,21,SIL,500.0,STOLEN,23553,"{'type': 'Point', 'coordinates': (-79.39277875000002, 43.70786225)}"
-23570,7304,GO-20209023868,THEFT FROM MOTOR VEHICLE UNDER,2020-09-19T00:00:00,2020,September,Saturday,19,263,21,2020-09-20T00:00:00,2020,September,Sunday,20,264,6,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,TR,CHECKPOINT ALR5,OT,11,BLK,2650.0,STOLEN,23554,"{'type': 'Point', 'coordinates': (-79.39699894, 43.70029603)}"
-23571,7306,GO-20201790491,B&E,2020-09-20T00:00:00,2020,September,Sunday,20,264,23,2020-09-21T00:00:00,2020,September,Monday,21,265,13,D53,Toronto,104,Mount Pleasant West (104),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,STUMP JUMPER,MT,21,BLK,1200.0,STOLEN,23555,"{'type': 'Point', 'coordinates': (-79.38959964, 43.69974904)}"
-23572,7309,GO-20209023868,THEFT FROM MOTOR VEHICLE UNDER,2020-09-19T00:00:00,2020,September,Saturday,19,263,21,2020-09-20T00:00:00,2020,September,Sunday,20,264,6,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,TR,CHECKPOINT ALR,OT,11,BLK,2650.0,STOLEN,23556,"{'type': 'Point', 'coordinates': (-79.39699894, 43.70029603)}"
-23573,22397,GO-20191375481,THEFT UNDER - BICYCLE,2019-07-22T00:00:00,2019,July,Monday,22,203,0,2019-07-22T00:00:00,2019,July,Monday,22,203,11,D53,Toronto,100,Yonge-Eglinton (100),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,XTC NRS,MT,24,BLK,3200.0,STOLEN,23587,"{'type': 'Point', 'coordinates': (-79.40327303, 43.70724152)}"
-23574,22865,GO-20142819749,THEFT UNDER,2014-08-11T00:00:00,2014,August,Monday,11,223,0,2014-09-01T00:00:00,2014,September,Monday,1,244,13,D53,Toronto,104,Mount Pleasant West (104),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,RAPID 2,MT,21,BLUWHI,1400.0,STOLEN,23557,"{'type': 'Point', 'coordinates': (-79.39325386, 43.70907306)}"
-23575,18959,GO-20169000061,THEFT UNDER,2015-10-31T00:00:00,2015,October,Saturday,31,304,15,2016-01-03T00:00:00,2016,January,Sunday,3,3,12,D53,Toronto,100,Yonge-Eglinton (100),"Apartment (Rooming House, Condo)",Apartment,KO,NUNU,MT,27,RED,800.0,STOLEN,23558,"{'type': 'Point', 'coordinates': (-79.40736565, 43.70483706)}"
-23576,18760,GO-20209023868,THEFT FROM MOTOR VEHICLE UNDER,2020-09-19T00:00:00,2020,September,Saturday,19,263,21,2020-09-20T00:00:00,2020,September,Sunday,20,264,6,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,TR,CHECKPOINT ALR5,OT,11,BLK,2650.0,STOLEN,23559,"{'type': 'Point', 'coordinates': (-79.39699894, 43.70029603)}"
-23577,18767,GO-20209026834,THEFT UNDER - BICYCLE,2020-10-17T00:00:00,2020,October,Saturday,17,291,20,2020-10-17T00:00:00,2020,October,Saturday,17,291,22,D53,Toronto,104,Mount Pleasant West (104),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,21,BLU,200.0,STOLEN,23560,"{'type': 'Point', 'coordinates': (-79.39858741, 43.70798666)}"
-23578,7875,GO-20141990152,B&E,2014-04-30T00:00:00,2014,April,Wednesday,30,120,3,2014-04-30T00:00:00,2014,April,Wednesday,30,120,21,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,NORCO,NON,MT,12,WHI,,STOLEN,23561,"{'type': 'Point', 'coordinates': (-79.3904349, 43.69860218)}"
-23579,18777,GO-20202052063,B&E,2020-10-31T00:00:00,2020,October,Saturday,31,305,7,2020-10-31T00:00:00,2020,October,Saturday,31,305,8,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,SURLY,LONG HAUL TRUC,RC,1,BLU,1500.0,STOLEN,23562,"{'type': 'Point', 'coordinates': (-79.39676103, 43.70456998)}"
-23580,18943,GO-20159007914,THEFT UNDER,2015-09-28T00:00:00,2015,September,Monday,28,271,0,2015-09-29T00:00:00,2015,September,Tuesday,29,272,12,D53,Toronto,101,Forest Hill South (101),Schools During Un-Supervised Activity,Educational,OT,VENTURA SPORT F,RC,10,PNK,750.0,STOLEN,23563,"{'type': 'Point', 'coordinates': (-79.40297702, 43.69078249)}"
-23581,18856,GO-20149006537,THEFT UNDER,2014-09-03T00:00:00,2014,September,Wednesday,3,246,1,2014-09-03T00:00:00,2014,September,Wednesday,3,246,19,D53,Toronto,104,Mount Pleasant West (104),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RG,14,RED,200.0,STOLEN,23564,"{'type': 'Point', 'coordinates': (-79.39442018, 43.71206328)}"
-23582,8200,GO-20149004276,THEFT UNDER,2014-06-20T00:00:00,2014,June,Friday,20,171,16,2014-06-21T00:00:00,2014,June,Saturday,21,172,0,D53,Toronto,104,Mount Pleasant West (104),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,700C,RG,7,RED,500.0,STOLEN,23565,"{'type': 'Point', 'coordinates': (-79.39832607, 43.70673316)}"
-23583,18891,GO-20159003251,THEFT UNDER,2015-05-28T00:00:00,2015,May,Thursday,28,148,0,2015-06-01T00:00:00,2015,June,Monday,1,152,12,D53,Toronto,104,Mount Pleasant West (104),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,YORKVILLE,RG,21,WHI,650.0,STOLEN,23566,"{'type': 'Point', 'coordinates': (-79.38879081, 43.69768245)}"
-23584,18986,GO-20161009717,THEFT UNDER - BICYCLE,2016-06-06T00:00:00,2016,June,Monday,6,158,15,2016-06-10T00:00:00,2016,June,Friday,10,162,14,D53,Toronto,100,Yonge-Eglinton (100),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,,MT,10,BLK,300.0,STOLEN,23567,"{'type': 'Point', 'coordinates': (-79.40079865, 43.70776148)}"
-23585,18995,GO-20161146806,THEFT UNDER - BICYCLE,2016-06-30T00:00:00,2016,June,Thursday,30,182,12,2016-06-30T00:00:00,2016,June,Thursday,30,182,20,D53,Toronto,101,Forest Hill South (101),"Private Property Structure (Pool, Shed, Detached Garage)",Other,DEVINCI,STOCKHOLM,TO,24,ONG,899.0,STOLEN,23568,"{'type': 'Point', 'coordinates': (-79.41384333, 43.70347393)}"
-23586,8458,GO-20149005134,THEFT UNDER,2014-07-19T00:00:00,2014,July,Saturday,19,200,12,2014-07-19T00:00:00,2014,July,Saturday,19,200,16,D53,Toronto,104,Mount Pleasant West (104),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ROAM,MT,21,BLU,800.0,STOLEN,23569,"{'type': 'Point', 'coordinates': (-79.39545215, 43.70732915)}"
-23587,18897,GO-20159003539,THEFT UNDER,2015-06-11T00:00:00,2015,June,Thursday,11,162,16,2015-06-12T00:00:00,2015,June,Friday,12,163,10,D53,Toronto,104,Mount Pleasant West (104),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,FIRE MOUNTAIN,MT,24,WHI,500.0,STOLEN,23570,"{'type': 'Point', 'coordinates': (-79.39858741, 43.70798666)}"
-23588,19034,GO-20169009928,THEFT UNDER - BICYCLE,2016-09-03T00:00:00,2016,September,Saturday,3,247,16,2016-09-03T00:00:00,2016,September,Saturday,3,247,21,D53,Toronto,100,Yonge-Eglinton (100),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,PITCH SPORT,MT,8,GRN,900.0,STOLEN,23571,"{'type': 'Point', 'coordinates': (-79.40079865, 43.70776148)}"
-23589,25563,GO-20189022114,THEFT UNDER - BICYCLE,2018-07-11T00:00:00,2018,July,Wednesday,11,192,10,2018-07-11T00:00:00,2018,July,Wednesday,11,192,21,D53,Toronto,100,Yonge-Eglinton (100),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,VERVE,RG,24,WHI,800.0,STOLEN,23604,"{'type': 'Point', 'coordinates': (-79.40736565, 43.70483706)}"
-23590,19072,GO-2017369380,THEFT UNDER - BICYCLE,2017-02-27T00:00:00,2017,February,Monday,27,58,18,2017-02-28T00:00:00,2017,February,Tuesday,28,59,11,D53,Toronto,100,Yonge-Eglinton (100),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,CANNONDALE,QUICK 4,RG,10,SIL,599.0,STOLEN,23572,"{'type': 'Point', 'coordinates': (-79.39863797, 43.70821093)}"
-23591,19080,GO-2017857396,THEFT UNDER - SHOPLIFTING,2017-05-15T00:00:00,2017,May,Monday,15,135,17,2017-05-15T00:00:00,2017,May,Monday,15,135,17,D53,Toronto,100,Yonge-Eglinton (100),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,FSR,MT,22,BLK,3200.0,STOLEN,23573,"{'type': 'Point', 'coordinates': (-79.39927621, 43.71107784)}"
-23592,19107,GO-20179012704,THEFT UNDER - BICYCLE,2017-08-17T00:00:00,2017,August,Thursday,17,229,14,2017-08-18T00:00:00,2017,August,Friday,18,230,9,D53,Toronto,100,Yonge-Eglinton (100),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,TR,7.2 FX WSD 19,TO,35,BLU,675.0,STOLEN,23574,"{'type': 'Point', 'coordinates': (-79.40079865, 43.70776148)}"
-23593,19109,GO-20179013016,THEFT UNDER - BICYCLE,2017-08-21T00:00:00,2017,August,Monday,21,233,14,2017-08-22T00:00:00,2017,August,Tuesday,22,234,17,D53,Toronto,100,Yonge-Eglinton (100),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,NO,INDIE,RG,7,LGR,400.0,STOLEN,23575,"{'type': 'Point', 'coordinates': (-79.40485224, 43.70536158)}"
-23594,19252,GO-20199022198,THEFT UNDER - BICYCLE,2019-07-13T00:00:00,2019,July,Saturday,13,194,17,2019-07-13T00:00:00,2019,July,Saturday,13,194,19,D53,Toronto,100,Yonge-Eglinton (100),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,RG,21,GRY,800.0,STOLEN,23576,"{'type': 'Point', 'coordinates': (-79.39978136, 43.71352981)}"
-23595,19352,GO-20209010892,THEFT UNDER - BICYCLE,2020-04-10T00:00:00,2020,April,Friday,10,101,23,2020-04-11T00:00:00,2020,April,Saturday,11,102,11,D53,Toronto,100,Yonge-Eglinton (100),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,,MT,7,BLK,600.0,STOLEN,23577,"{'type': 'Point', 'coordinates': (-79.39993317, 43.70281425)}"
-23596,19670,GO-20149008653,THEFT UNDER,2014-12-09T00:00:00,2014,December,Tuesday,9,343,11,2014-12-09T00:00:00,2014,December,Tuesday,9,343,15,D53,Toronto,100,Yonge-Eglinton (100),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,STREET 1,RG,21,SIL,1000.0,STOLEN,23578,"{'type': 'Point', 'coordinates': (-79.39778528, 43.7041493)}"
-23597,19676,GO-2015615204,THEFT UNDER,2015-04-13T00:00:00,2015,April,Monday,13,103,16,2015-04-14T00:00:00,2015,April,Tuesday,14,104,9,D53,Toronto,100,Yonge-Eglinton (100),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,JAMIS,DECAR XC,MT,21,SIL,900.0,STOLEN,23579,"{'type': 'Point', 'coordinates': (-79.40102123, 43.70917038)}"
-23598,19762,GO-20169004225,THEFT UNDER - BICYCLE,2016-05-04T00:00:00,2016,May,Wednesday,4,125,0,2016-05-06T00:00:00,2016,May,Friday,6,127,13,D53,Toronto,100,Yonge-Eglinton (100),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,MALAHAT,MT,21,BLU,0.0,STOLEN,23580,"{'type': 'Point', 'coordinates': (-79.40982177, 43.70131788)}"
-23599,22205,GO-20169011463,THEFT UNDER - BICYCLE,2016-08-29T00:00:00,2016,August,Monday,29,242,8,2016-10-03T00:00:00,2016,October,Monday,3,277,8,D53,Toronto,100,Yonge-Eglinton (100),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RM,OXYGEN 30,RC,10,WHI,700.0,STOLEN,23581,"{'type': 'Point', 'coordinates': (-79.4107442, 43.70945742)}"
-23600,22251,GO-20179013651,THEFT UNDER - BICYCLE,2017-08-29T00:00:00,2017,August,Tuesday,29,241,14,2017-08-29T00:00:00,2017,August,Tuesday,29,241,23,D53,Toronto,100,Yonge-Eglinton (100),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,TO,14,LGR,450.0,STOLEN,23582,"{'type': 'Point', 'coordinates': (-79.40079865, 43.70776148)}"
-23601,22288,GO-20189015076,THEFT UNDER - BICYCLE,2018-05-14T00:00:00,2018,May,Monday,14,134,21,2018-05-15T00:00:00,2018,May,Tuesday,15,135,19,D53,Toronto,100,Yonge-Eglinton (100),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,8,BLK,900.0,STOLEN,23583,"{'type': 'Point', 'coordinates': (-79.40079865, 43.70776148)}"
-23602,22315,GO-20189024334,THEFT UNDER - BICYCLE,2018-07-01T00:00:00,2018,July,Sunday,1,182,14,2018-07-28T00:00:00,2018,July,Saturday,28,209,15,D53,Toronto,100,Yonge-Eglinton (100),"Apartment (Rooming House, Condo)",Apartment,TR,FX,RG,27,BLU,1000.0,STOLEN,23584,"{'type': 'Point', 'coordinates': (-79.39682108, 43.69933273)}"
-23603,22357,GO-20189036620,THEFT UNDER - BICYCLE,2018-11-02T00:00:00,2018,November,Friday,2,306,16,2018-11-02T00:00:00,2018,November,Friday,2,306,17,D53,Toronto,100,Yonge-Eglinton (100),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,LEVO,EL,22,BLK,5000.0,RECOVERED,23585,"{'type': 'Point', 'coordinates': (-79.39927621, 43.71107784)}"
-23604,22897,GO-20159002538,THEFT UNDER,2015-05-06T00:00:00,2015,May,Wednesday,6,126,22,2015-05-08T00:00:00,2015,May,Friday,8,128,3,D53,Toronto,104,Mount Pleasant West (104),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,YORKVILLE,OT,21,DGR,622.0,STOLEN,23586,"{'type': 'Point', 'coordinates': (-79.39256925, 43.70119208)}"
-23605,22475,GO-20209014862,THEFT UNDER - BICYCLE,2020-06-08T00:00:00,2020,June,Monday,8,160,12,2020-06-08T00:00:00,2020,June,Monday,8,160,14,D53,Toronto,100,Yonge-Eglinton (100),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,INDIE DROP A CL,RC,12,BLK,1400.0,STOLEN,23588,"{'type': 'Point', 'coordinates': (-79.39858741, 43.70798666)}"
-23606,22480,GO-20209015555,THEFT UNDER - BICYCLE,2020-06-17T00:00:00,2020,June,Wednesday,17,169,1,2020-06-17T00:00:00,2020,June,Wednesday,17,169,11,D53,Toronto,100,Yonge-Eglinton (100),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,DEVINCI,MT,18,ONG,0.0,STOLEN,23589,"{'type': 'Point', 'coordinates': (-79.4107442, 43.70945742)}"
-23607,22481,GO-20209015555,THEFT UNDER - BICYCLE,2020-06-17T00:00:00,2020,June,Wednesday,17,169,1,2020-06-17T00:00:00,2020,June,Wednesday,17,169,11,D53,Toronto,100,Yonge-Eglinton (100),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,SPECIALIZED,MT,18,BLK,0.0,STOLEN,23590,"{'type': 'Point', 'coordinates': (-79.4107442, 43.70945742)}"
-23608,22503,GO-20209017489,THEFT UNDER - BICYCLE,2020-07-13T00:00:00,2020,July,Monday,13,195,8,2020-07-13T00:00:00,2020,July,Monday,13,195,18,D53,Toronto,100,Yonge-Eglinton (100),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,20,BLU,800.0,STOLEN,23591,"{'type': 'Point', 'coordinates': (-79.40485224, 43.70536158)}"
-23609,22521,GO-20201448054,B&E,2020-08-03T00:00:00,2020,August,Monday,3,216,17,2020-08-03T00:00:00,2020,August,Monday,3,216,21,D53,Toronto,100,Yonge-Eglinton (100),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,ROCK HOPPER,MT,21,BLKSIL,700.0,STOLEN,23592,"{'type': 'Point', 'coordinates': (-79.4053388, 43.71155938)}"
-23610,22535,GO-20209020967,THEFT UNDER - BICYCLE,2020-08-19T00:00:00,2020,August,Wednesday,19,232,13,2020-08-22T00:00:00,2020,August,Saturday,22,235,10,D53,Toronto,100,Yonge-Eglinton (100),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,,MT,21,PLE,0.0,STOLEN,23593,"{'type': 'Point', 'coordinates': (-79.39861192, 43.69943828000001)}"
-23611,22538,GO-20209021333,THEFT UNDER - SHOPLIFTING,2020-08-18T00:00:00,2020,August,Tuesday,18,231,20,2020-08-25T00:00:00,2020,August,Tuesday,25,238,18,D53,Toronto,100,Yonge-Eglinton (100),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,TALON 3,MT,24,BLK,500.0,STOLEN,23594,"{'type': 'Point', 'coordinates': (-79.40022809, 43.70365745)}"
-23612,22814,GO-20149002904,THEFT UNDER,2014-04-17T00:00:00,2014,April,Thursday,17,107,9,2014-04-18T00:00:00,2014,April,Friday,18,108,12,D53,Toronto,100,Yonge-Eglinton (100),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ALLEZ,RC,40,WHI,,STOLEN,23595,"{'type': 'Point', 'coordinates': (-79.40024183, 43.70635229)}"
-23613,22834,GO-20149003807,THEFT UNDER,2014-06-01T00:00:00,2014,June,Sunday,1,152,12,2014-06-04T00:00:00,2014,June,Wednesday,4,155,17,D53,Toronto,100,Yonge-Eglinton (100),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,F8,MT,24,GRY,500.0,STOLEN,23596,"{'type': 'Point', 'coordinates': (-79.4027247, 43.70582335000001)}"
-23614,22855,GO-20149005078,THEFT UNDER,2014-07-17T00:00:00,2014,July,Thursday,17,198,8,2014-07-17T00:00:00,2014,July,Thursday,17,198,20,D53,Toronto,100,Yonge-Eglinton (100),Ttc Subway Station,Transit,TR,4300,MT,24,BLK,700.0,STOLEN,23597,"{'type': 'Point', 'coordinates': (-79.39781207, 43.70435185)}"
-23615,22890,GO-2015548904,THEFT UNDER,2015-04-02T00:00:00,2015,April,Thursday,2,92,10,2015-04-02T00:00:00,2015,April,Thursday,2,92,18,D53,Toronto,100,Yonge-Eglinton (100),"Single Home, House (Attach Garage, Cottage, Mobile)",House,AQUILA,RACER,RC,20,RED,400.0,STOLEN,23598,"{'type': 'Point', 'coordinates': (-79.40424484, 43.70986172)}"
-23616,22915,GO-20159005289,THEFT UNDER,2015-08-03T00:00:00,2015,August,Monday,3,215,11,2015-08-03T00:00:00,2015,August,Monday,3,215,14,D53,Toronto,100,Yonge-Eglinton (100),"Open Areas (Lakes, Parks, Rivers)",Outside,TR,2010 7.2 FX WSD,RG,24,BLU,400.0,STOLEN,23599,"{'type': 'Point', 'coordinates': (-79.40297311, 43.69729816)}"
-23617,22916,GO-20159005376,THEFT UNDER,2015-08-03T00:00:00,2015,August,Monday,3,215,11,2015-08-03T00:00:00,2015,August,Monday,3,215,15,D53,Toronto,100,Yonge-Eglinton (100),"Open Areas (Lakes, Parks, Rivers)",Outside,TR,,MT,21,GRY,400.0,STOLEN,23600,"{'type': 'Point', 'coordinates': (-79.40297311, 43.69729816)}"
-23618,22945,GO-20151984412,FTC PROBATION ORDER,2015-11-18T00:00:00,2015,November,Wednesday,18,322,17,2015-11-19T00:00:00,2015,November,Thursday,19,323,11,D53,Toronto,100,Yonge-Eglinton (100),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,EL,0,OTH,2000.0,STOLEN,23601,"{'type': 'Point', 'coordinates': (-79.40079865, 43.70776148)}"
-23619,25462,GO-20179010324,THEFT UNDER - BICYCLE,2017-07-16T00:00:00,2017,July,Sunday,16,197,9,2017-07-16T00:00:00,2017,July,Sunday,16,197,13,D53,Toronto,100,Yonge-Eglinton (100),"Open Areas (Lakes, Parks, Rivers)",Outside,TR,,MT,24,BLK,904.0,STOLEN,23602,"{'type': 'Point', 'coordinates': (-79.40079865, 43.70776148)}"
-23620,25472,GO-20171349639,THEFT UNDER - BICYCLE,2017-07-25T00:00:00,2017,July,Tuesday,25,206,20,2017-07-27T00:00:00,2017,July,Thursday,27,208,15,D53,Toronto,100,Yonge-Eglinton (100),"Private Property Structure (Pool, Shed, Detached Garage)",Other,ROCKY MOUNTAIN,ELEMENT 950,MT,21,REDWHI,3200.0,STOLEN,23603,"{'type': 'Point', 'coordinates': (-79.40139265, 43.71238637)}"
-23621,25619,GO-20199013085,THEFT UNDER - BICYCLE,2019-04-20T00:00:00,2019,April,Saturday,20,110,0,2019-04-25T00:00:00,2019,April,Thursday,25,115,22,D53,Toronto,100,Yonge-Eglinton (100),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KO,CINDER CONE,MT,21,GRY,1100.0,STOLEN,23605,"{'type': 'Point', 'coordinates': (-79.40102123, 43.70917038)}"
-23622,25622,GO-20199014049,THEFT UNDER - BICYCLE,2019-05-06T00:00:00,2019,May,Monday,6,126,6,2019-05-06T00:00:00,2019,May,Monday,6,126,11,D53,Toronto,100,Yonge-Eglinton (100),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SIRRUS SPORT,OT,24,WHI,400.0,STOLEN,23606,"{'type': 'Point', 'coordinates': (-79.39832607, 43.70673316)}"
-23623,25654,GO-20199025185,THEFT UNDER - BICYCLE,2019-08-06T00:00:00,2019,August,Tuesday,6,218,19,2019-08-07T00:00:00,2019,August,Wednesday,7,219,10,D53,Toronto,100,Yonge-Eglinton (100),Ttc Subway Station,Transit,NO,INDIE 4 2013,RG,21,BLK,0.0,STOLEN,23607,"{'type': 'Point', 'coordinates': (-79.39660264, 43.69830188)}"
-23624,25675,GO-20191812962,THEFT UNDER - BICYCLE,2019-09-20T00:00:00,2019,September,Friday,20,263,14,2019-09-20T00:00:00,2019,September,Friday,20,263,18,D53,Toronto,100,Yonge-Eglinton (100),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SCHWINN,FATBOY,MT,7,BLK,350.0,STOLEN,23608,"{'type': 'Point', 'coordinates': (-79.40102123, 43.70917038)}"
-23625,25676,GO-20191812962,THEFT UNDER - BICYCLE,2019-09-20T00:00:00,2019,September,Friday,20,263,14,2019-09-20T00:00:00,2019,September,Friday,20,263,18,D53,Toronto,100,Yonge-Eglinton (100),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,MT,21,SIL,,STOLEN,23609,"{'type': 'Point', 'coordinates': (-79.40102123, 43.70917038)}"
-23626,25751,GO-20209017953,THEFT UNDER - BICYCLE,2020-07-17T00:00:00,2020,July,Friday,17,199,14,2020-07-19T00:00:00,2020,July,Sunday,19,201,15,D53,Toronto,100,Yonge-Eglinton (100),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,520,TO,27,BRZ,1300.0,STOLEN,23610,"{'type': 'Point', 'coordinates': (-79.39832607, 43.70673316)}"
-23627,25759,GO-20201489689,THEFT UNDER - BICYCLE,2020-08-09T00:00:00,2020,August,Sunday,9,222,16,2020-08-09T00:00:00,2020,August,Sunday,9,222,17,D53,Toronto,100,Yonge-Eglinton (100),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,,RG,24,BLKONG,600.0,STOLEN,23611,"{'type': 'Point', 'coordinates': (-79.39832607, 43.70673316)}"
-23628,2228,GO-20189013314,THEFT UNDER - BICYCLE,2018-04-29T00:00:00,2018,April,Sunday,29,119,16,2018-04-30T00:00:00,2018,April,Monday,30,120,6,D13,Toronto,101,Forest Hill South (101),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,,RG,27,,1500.0,STOLEN,23620,"{'type': 'Point', 'coordinates': (-79.41810252, 43.68758555)}"
-23629,25762,GO-20209020745,THEFT UNDER - BICYCLE,2020-08-18T00:00:00,2020,August,Tuesday,18,231,16,2020-08-20T00:00:00,2020,August,Thursday,20,233,11,D53,Toronto,100,Yonge-Eglinton (100),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,FX 3 DISC,RG,18,BLK,800.0,STOLEN,23612,"{'type': 'Point', 'coordinates': (-79.40079865, 43.70776148)}"
-23630,25775,GO-20201785996,THEFT UNDER - BICYCLE,2020-09-19T00:00:00,2020,September,Saturday,19,263,21,2020-09-21T00:00:00,2020,September,Monday,21,265,13,D53,Toronto,100,Yonge-Eglinton (100),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,U/K,MOUNTAIN,MT,5,GRYRED,100.0,STOLEN,23613,"{'type': 'Point', 'coordinates': (-79.39832607, 43.70673316)}"
-23631,97,GO-2017323688,B&E,2017-02-21T00:00:00,2017,February,Tuesday,21,52,12,2017-02-21T00:00:00,2017,February,Tuesday,21,52,14,D13,Toronto,101,Forest Hill South (101),"Apartment (Rooming House, Condo)",Apartment,CANNONDALE,HYBRID,MT,24,BLK,4100.0,STOLEN,23614,"{'type': 'Point', 'coordinates': (-79.41249171, 43.68433973)}"
-23632,1034,GO-20179011491,THEFT UNDER - BICYCLE,2017-08-01T00:00:00,2017,August,Tuesday,1,213,14,2017-08-01T00:00:00,2017,August,Tuesday,1,213,16,D13,Toronto,101,Forest Hill South (101),"Apartment (Rooming House, Condo)",Apartment,FJ,12 SPEED,TO,12,GRN,350.0,STOLEN,23615,"{'type': 'Point', 'coordinates': (-79.41249171, 43.68433973)}"
-23633,1172,GO-20179012640,THEFT UNDER - BICYCLE,2017-07-15T00:00:00,2017,July,Saturday,15,196,14,2017-08-17T00:00:00,2017,August,Thursday,17,229,15,D13,Toronto,101,Forest Hill South (101),"Apartment (Rooming House, Condo)",Apartment,CA,CAAD10,RC,21,,3300.0,STOLEN,23616,"{'type': 'Point', 'coordinates': (-79.41434857, 43.68630427)}"
-23634,1435,GO-20179014984,THEFT UNDER - BICYCLE,2017-09-16T00:00:00,2017,September,Saturday,16,259,12,2017-09-17T00:00:00,2017,September,Sunday,17,260,10,D13,Toronto,101,Forest Hill South (101),"Apartment (Rooming House, Condo)",Apartment,OT,DESIRE,RG,18,BLK,400.0,STOLEN,23617,"{'type': 'Point', 'coordinates': (-79.41919633, 43.68541048)}"
-23635,1484,GO-20179015387,THEFT UNDER - BICYCLE,2017-09-20T00:00:00,2017,September,Wednesday,20,263,19,2017-09-21T00:00:00,2017,September,Thursday,21,264,15,D53,Toronto,101,Forest Hill South (101),"Apartment (Rooming House, Condo)",Apartment,SC,"GRAFT PRO 26""""",MT,40,WHI,949.0,STOLEN,23618,"{'type': 'Point', 'coordinates': (-79.41101114, 43.69559496)}"
-23636,2227,GO-20189013314,THEFT UNDER - BICYCLE,2018-04-29T00:00:00,2018,April,Sunday,29,119,16,2018-04-30T00:00:00,2018,April,Monday,30,120,6,D13,Toronto,101,Forest Hill South (101),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,15,,1100.0,STOLEN,23619,"{'type': 'Point', 'coordinates': (-79.41810252, 43.68758555)}"
-23637,2307,GO-20189014844,THEFT UNDER - BICYCLE,2018-05-03T00:00:00,2018,May,Thursday,3,123,8,2018-05-14T00:00:00,2018,May,Monday,14,134,11,D13,Toronto,101,Forest Hill South (101),"Apartment (Rooming House, Condo)",Apartment,NO,,RG,21,BLU,800.0,STOLEN,23621,"{'type': 'Point', 'coordinates': (-79.41249171, 43.68433973)}"
-23638,2440,GO-20189017052,THEFT UNDER - BICYCLE,2018-05-31T00:00:00,2018,May,Thursday,31,151,11,2018-06-01T00:00:00,2018,June,Friday,1,152,15,D13,Toronto,101,Forest Hill South (101),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE 2,RG,8,GRY,820.0,STOLEN,23622,"{'type': 'Point', 'coordinates': (-79.41249171, 43.68433973)}"
-23639,2526,GO-20189018135,THEFT UNDER - BICYCLE,2018-06-10T00:00:00,2018,June,Sunday,10,161,18,2018-06-10T00:00:00,2018,June,Sunday,10,161,19,D53,Toronto,101,Forest Hill South (101),Schools During Un-Supervised Activity,Educational,TR,MARLIN 4,MT,21,GRY,500.0,STOLEN,23623,"{'type': 'Point', 'coordinates': (-79.40297702, 43.69078249)}"
-23640,2663,GO-20189019972,THEFT UNDER - BICYCLE,2018-06-21T00:00:00,2018,June,Thursday,21,172,14,2018-06-24T00:00:00,2018,June,Sunday,24,175,0,D13,Toronto,101,Forest Hill South (101),"Apartment (Rooming House, Condo)",Apartment,TR,4300 (2005),MT,24,SIL,0.0,STOLEN,23624,"{'type': 'Point', 'coordinates': (-79.42270739, 43.69410471)}"
-23641,2784,GO-20181228863,THEFT UNDER - BICYCLE,2018-07-04T00:00:00,2018,July,Wednesday,4,185,16,2018-07-06T00:00:00,2018,July,Friday,6,187,10,D13,Toronto,101,Forest Hill South (101),"Apartment (Rooming House, Condo)",Apartment,CCM,NITRO,MT,10,SIL,100.0,STOLEN,23625,"{'type': 'Point', 'coordinates': (-79.42270739, 43.69410471)}"
-23642,2785,GO-20181228863,THEFT UNDER - BICYCLE,2018-07-04T00:00:00,2018,July,Wednesday,4,185,16,2018-07-06T00:00:00,2018,July,Friday,6,187,10,D13,Toronto,101,Forest Hill South (101),"Apartment (Rooming House, Condo)",Apartment,NORCO,MOUNTAINEER,MT,12,BLKRED,100.0,STOLEN,23626,"{'type': 'Point', 'coordinates': (-79.42270739, 43.69410471)}"
-23643,2923,GO-20181345080,B&E,2018-07-14T00:00:00,2018,July,Saturday,14,195,21,2018-07-23T00:00:00,2018,July,Monday,23,204,13,D13,Toronto,101,Forest Hill South (101),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,CUBE,PELOTON PRO,OT,10,WHI,1700.0,STOLEN,23627,"{'type': 'Point', 'coordinates': (-79.4198437, 43.7021866)}"
-23644,2989,GO-20189024113,THEFT UNDER - BICYCLE,2018-07-26T00:00:00,2018,July,Thursday,26,207,9,2018-07-27T00:00:00,2018,July,Friday,27,208,9,D13,Toronto,101,Forest Hill South (101),Ttc Subway Station,Transit,OT,,EL,32,BLK,2000.0,STOLEN,23628,"{'type': 'Point', 'coordinates': (-79.41737478, 43.68578395)}"
-23645,3028,GO-20189024513,THEFT UNDER - BICYCLE,2018-07-30T00:00:00,2018,July,Monday,30,211,14,2018-07-30T00:00:00,2018,July,Monday,30,211,18,D13,Toronto,101,Forest Hill South (101),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,RAPIDO,RG,1,RED,247.0,STOLEN,23629,"{'type': 'Point', 'coordinates': (-79.41385854, 43.68840164)}"
-23646,3826,GO-20189037324,THEFT UNDER,2018-11-03T00:00:00,2018,November,Saturday,3,307,15,2018-11-08T00:00:00,2018,November,Thursday,8,312,8,D13,Toronto,101,Forest Hill South (101),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,16,WHI,500.0,STOLEN,23630,"{'type': 'Point', 'coordinates': (-79.4131464, 43.68655833)}"
-23647,3877,GO-20189038833,THEFT UNDER - BICYCLE,2018-11-18T00:00:00,2018,November,Sunday,18,322,14,2018-11-19T00:00:00,2018,November,Monday,19,323,16,D53,Toronto,101,Forest Hill South (101),Schools During Supervised Activity,Educational,KO,KONA LANAI,MT,24,GRY,500.0,STOLEN,23631,"{'type': 'Point', 'coordinates': (-79.41008223000001, 43.6909187)}"
-23648,4064,GO-20199006383,THEFT UNDER - BICYCLE,2019-01-24T00:00:00,2019,January,Thursday,24,24,11,2019-02-23T00:00:00,2019,February,Saturday,23,54,11,D13,Toronto,101,Forest Hill South (101),"Apartment (Rooming House, Condo)",Apartment,OT,QUANTUM,TO,10,GRN,0.0,STOLEN,23632,"{'type': 'Point', 'coordinates': (-79.41463162, 43.68695366)}"
-23649,4425,GO-20199017777,THEFT UNDER,2019-06-05T00:00:00,2019,June,Wednesday,5,156,0,2019-06-07T00:00:00,2019,June,Friday,7,158,21,D13,Toronto,101,Forest Hill South (101),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,7,RED,500.0,STOLEN,23633,"{'type': 'Point', 'coordinates': (-79.41434857, 43.68630427)}"
-23650,5162,GO-20191627434,THEFT UNDER - BICYCLE,2019-08-22T00:00:00,2019,August,Thursday,22,234,7,2019-08-26T00:00:00,2019,August,Monday,26,238,11,D13,Toronto,101,Forest Hill South (101),"Apartment (Rooming House, Condo)",Apartment,OTHER,,MT,18,GRN,100.0,STOLEN,23634,"{'type': 'Point', 'coordinates': (-79.41434857, 43.68630427)}"
-23651,5163,GO-20191627434,THEFT UNDER - BICYCLE,2019-08-22T00:00:00,2019,August,Thursday,22,234,7,2019-08-26T00:00:00,2019,August,Monday,26,238,11,D13,Toronto,101,Forest Hill South (101),"Apartment (Rooming House, Condo)",Apartment,EMMO,BRAVO,EL,1,BLK,1500.0,STOLEN,23635,"{'type': 'Point', 'coordinates': (-79.41434857, 43.68630427)}"
-23652,5867,GO-20209003751,THEFT UNDER,2020-01-30T00:00:00,2020,January,Thursday,30,30,16,2020-01-31T00:00:00,2020,January,Friday,31,31,11,D13,Toronto,101,Forest Hill South (101),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,27,GRY,800.0,STOLEN,23636,"{'type': 'Point', 'coordinates': (-79.41423537, 43.68632871)}"
-23653,5930,GO-20209007013,THEFT UNDER,2020-02-24T00:00:00,2020,February,Monday,24,55,9,2020-02-26T00:00:00,2020,February,Wednesday,26,57,17,D13,Toronto,101,Forest Hill South (101),"Apartment (Rooming House, Condo)",Apartment,KO,DEW PLUS MD G,RG,27,GRY,849.0,STOLEN,23637,"{'type': 'Point', 'coordinates': (-79.4124048, 43.6877695)}"
-23654,5985,GO-20209009659,THEFT UNDER - BICYCLE,2020-03-21T00:00:00,2020,March,Saturday,21,81,19,2020-03-23T00:00:00,2020,March,Monday,23,83,17,D53,Toronto,101,Forest Hill South (101),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,APEX,MT,24,BLK,746.0,STOLEN,23638,"{'type': 'Point', 'coordinates': (-79.41091735, 43.70408378)}"
-23655,6494,GO-20201197157,B&E,2020-06-28T00:00:00,2020,June,Sunday,28,180,21,2020-06-29T00:00:00,2020,June,Monday,29,181,13,D13,Toronto,101,Forest Hill South (101),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SCOTT,ASPECT,MT,0,BLKONG,1000.0,STOLEN,23639,"{'type': 'Point', 'coordinates': (-79.41869573, 43.696906)}"
-23656,6542,GO-20209016968,THEFT UNDER,2020-07-06T00:00:00,2020,July,Monday,6,188,17,2020-07-06T00:00:00,2020,July,Monday,6,188,18,D13,Toronto,101,Forest Hill South (101),"Apartment (Rooming House, Condo)",Apartment,GI,XTC 1,MT,21,GRY,559.0,STOLEN,23640,"{'type': 'Point', 'coordinates': (-79.4124048, 43.6877695)}"
-23657,6572,GO-20209016968,THEFT UNDER,2020-07-06T00:00:00,2020,July,Monday,6,188,17,2020-07-06T00:00:00,2020,July,Monday,6,188,18,D13,Toronto,101,Forest Hill South (101),"Apartment (Rooming House, Condo)",Apartment,GI,XTC 1,MT,21,GRY,567.0,STOLEN,23641,"{'type': 'Point', 'coordinates': (-79.4124048, 43.6877695)}"
-23658,6596,GO-20209017380,THEFT UNDER - BICYCLE,2020-07-11T00:00:00,2020,July,Saturday,11,193,19,2020-07-12T00:00:00,2020,July,Sunday,12,194,14,D53,Toronto,101,Forest Hill South (101),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,URBANIA SC1,RG,27,BLK,700.0,STOLEN,23642,"{'type': 'Point', 'coordinates': (-79.41091735, 43.70408378)}"
-23659,6597,GO-20209017380,THEFT UNDER - BICYCLE,2020-07-11T00:00:00,2020,July,Saturday,11,193,19,2020-07-12T00:00:00,2020,July,Sunday,12,194,14,D53,Toronto,101,Forest Hill South (101),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,URBANIA 5,RG,21,GRY,600.0,STOLEN,23643,"{'type': 'Point', 'coordinates': (-79.41091735, 43.70408378)}"
-23660,6627,GO-20201314432,THEFT UNDER - BICYCLE,2020-07-14T00:00:00,2020,July,Tuesday,14,196,12,2020-07-15T00:00:00,2020,July,Wednesday,15,197,18,D13,Toronto,101,Forest Hill South (101),"Apartment (Rooming House, Condo)",Apartment,GIANT,ESCAPE 1,MT,24,GRY,800.0,STOLEN,23644,"{'type': 'Point', 'coordinates': (-79.41262893, 43.68866946)}"
-23661,7714,GO-20202425964,B&E,2020-12-26T00:00:00,2020,December,Saturday,26,361,13,2020-12-26T00:00:00,2020,December,Saturday,26,361,13,D13,Toronto,101,Forest Hill South (101),"Apartment (Rooming House, Condo)",Apartment,CANNONDALE,,RG,10,,1000.0,STOLEN,23646,"{'type': 'Point', 'coordinates': (-79.41423537, 43.68632871)}"
-23662,7715,GO-20202425964,B&E,2020-12-26T00:00:00,2020,December,Saturday,26,361,13,2020-12-26T00:00:00,2020,December,Saturday,26,361,13,D13,Toronto,101,Forest Hill South (101),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,S-WORKS ROUBAIX,RC,10,,8000.0,STOLEN,23647,"{'type': 'Point', 'coordinates': (-79.41423537, 43.68632871)}"
-23663,8120,GO-20149004014,THEFT UNDER,2014-06-12T00:00:00,2014,June,Thursday,12,163,17,2014-06-12T00:00:00,2014,June,Thursday,12,163,20,D53,Toronto,101,Forest Hill South (101),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RM,EDGE 26,MT,21,SIL,499.0,STOLEN,23648,"{'type': 'Point', 'coordinates': (-79.40297702, 43.69078249)}"
-23664,8144,GO-20149004051,THEFT UNDER,2014-06-13T00:00:00,2014,June,Friday,13,164,14,2014-06-13T00:00:00,2014,June,Friday,13,164,20,D13,Toronto,101,Forest Hill South (101),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,CROSSTRAIL HYBR,OT,18,SIL,500.0,STOLEN,23649,"{'type': 'Point', 'coordinates': (-79.42205201, 43.70173807)}"
-23665,8881,GO-20149006844,THEFT UNDER,2014-09-11T00:00:00,2014,September,Thursday,11,254,20,2014-09-12T00:00:00,2014,September,Friday,12,255,11,D13,Toronto,101,Forest Hill South (101),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KH,URBAN SOUL,RG,1,BLU,420.0,STOLEN,23650,"{'type': 'Point', 'coordinates': (-79.41385854, 43.68840164)}"
-23666,8900,GO-20149006937,THEFT FROM MOTOR VEHICLE UNDER,2014-09-06T00:00:00,2014,September,Saturday,6,249,12,2014-09-16T00:00:00,2014,September,Tuesday,16,259,7,D13,Toronto,101,Forest Hill South (101),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,EPIC,MT,30,BLK,2000.0,STOLEN,23651,"{'type': 'Point', 'coordinates': (-79.41249171, 43.68433973)}"
-23667,9098,GO-20143154513,THEFT UNDER,2014-08-25T00:00:00,2014,August,Monday,25,237,12,2014-10-22T00:00:00,2014,October,Wednesday,22,295,16,D53,Toronto,101,Forest Hill South (101),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,SIRRUS,RG,21,GRY,863.0,STOLEN,23652,"{'type': 'Point', 'coordinates': (-79.40982177, 43.70131788)}"
-23668,9099,GO-20143154513,THEFT UNDER,2014-08-25T00:00:00,2014,August,Monday,25,237,12,2014-10-22T00:00:00,2014,October,Wednesday,22,295,16,D53,Toronto,101,Forest Hill South (101),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GT,AVALANCHE,MT,21,BLK,1200.0,STOLEN,23653,"{'type': 'Point', 'coordinates': (-79.40982177, 43.70131788)}"
-23669,9784,GO-2015984901,B&E,2015-06-11T00:00:00,2015,June,Thursday,11,162,16,2015-06-12T00:00:00,2015,June,Friday,12,163,10,D13,Toronto,101,Forest Hill South (101),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,SECTEUR SPORT D,RC,18,BLK,2000.0,STOLEN,23654,"{'type': 'Point', 'coordinates': (-79.41249171, 43.68433973)}"
-23670,9793,GO-20159003563,THEFT UNDER,2015-06-13T00:00:00,2015,June,Saturday,13,164,0,2015-06-13T00:00:00,2015,June,Saturday,13,164,0,D13,Toronto,101,Forest Hill South (101),"Apartment (Rooming House, Condo)",Apartment,GI,TCX SLR 2,RC,18,BLK,2400.0,STOLEN,23655,"{'type': 'Point', 'coordinates': (-79.41249171, 43.68433973)}"
-23671,9845,GO-20159003816,THEFT UNDER,2015-06-08T00:00:00,2015,June,Monday,8,159,9,2015-06-22T00:00:00,2015,June,Monday,22,173,9,D13,Toronto,101,Forest Hill South (101),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,SPEC HARDROCK D,MT,15,BLK,600.0,STOLEN,23656,"{'type': 'Point', 'coordinates': (-79.41249171, 43.68433973)}"
-23672,9846,GO-20159003816,THEFT UNDER,2015-06-08T00:00:00,2015,June,Monday,8,159,9,2015-06-22T00:00:00,2015,June,Monday,22,173,9,D13,Toronto,101,Forest Hill South (101),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,X2 GRENADE,MT,12,DGR,350.0,STOLEN,23657,"{'type': 'Point', 'coordinates': (-79.41249171, 43.68433973)}"
-23673,10203,GO-20159005464,THEFT UNDER,2015-07-25T00:00:00,2015,July,Saturday,25,206,9,2015-08-07T00:00:00,2015,August,Friday,7,219,16,D13,Toronto,101,Forest Hill South (101),"Apartment (Rooming House, Condo)",Apartment,RM,VERTEX 30,MT,27,RED,500.0,STOLEN,23658,"{'type': 'Point', 'coordinates': (-79.4131464, 43.68655833)}"
-23674,10214,GO-20151371489,THEFT UNDER,2015-08-07T00:00:00,2015,August,Friday,7,219,10,2015-08-10T00:00:00,2015,August,Monday,10,222,18,D53,Toronto,101,Forest Hill South (101),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,CANNONDALE 12,RG,27,BLKRED,1500.0,STOLEN,23659,"{'type': 'Point', 'coordinates': (-79.41148096, 43.69060861)}"
-23675,10215,GO-20151371489,THEFT UNDER,2015-08-07T00:00:00,2015,August,Friday,7,219,10,2015-08-10T00:00:00,2015,August,Monday,10,222,18,D53,Toronto,101,Forest Hill South (101),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,CANNONDALE 12,RG,27,BLKRED,1500.0,STOLEN,23660,"{'type': 'Point', 'coordinates': (-79.41148096, 43.69060861)}"
-23676,10255,GO-20159005711,THEFT UNDER,2015-08-12T00:00:00,2015,August,Wednesday,12,224,9,2015-08-12T00:00:00,2015,August,Wednesday,12,224,19,D53,Toronto,101,Forest Hill South (101),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SPECIALE FIXED,RC,1,DGR,1500.0,STOLEN,23661,"{'type': 'Point', 'coordinates': (-79.40938728, 43.69991094)}"
-23677,21514,GO-20179018397,THEFT UNDER - BICYCLE,2017-10-21T00:00:00,2017,October,Saturday,21,294,9,2017-10-28T00:00:00,2017,October,Saturday,28,301,14,D13,Toronto,101,Forest Hill South (101),"Apartment (Rooming House, Condo)",Apartment,OT,CIRRUS,RG,21,BLK,1000.0,STOLEN,23662,"{'type': 'Point', 'coordinates': (-79.41434857, 43.68630427)}"
-23678,8967,GO-20149007181,THEFT UNDER,2014-09-24T00:00:00,2014,September,Wednesday,24,267,17,2014-09-24T00:00:00,2014,September,Wednesday,24,267,23,D53,Toronto,104,Mount Pleasant West (104),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,TRANSE 0.40,RG,3,BLK,480.0,STOLEN,23663,"{'type': 'Point', 'coordinates': (-79.398957, 43.70958457)}"
-23679,21526,GO-20189020631,THEFT UNDER - BICYCLE,2018-06-28T00:00:00,2018,June,Thursday,28,179,17,2018-06-28T00:00:00,2018,June,Thursday,28,179,18,D13,Toronto,101,Forest Hill South (101),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,,RG,26,GRN,200.0,STOLEN,23664,"{'type': 'Point', 'coordinates': (-79.42228634, 43.69305808)}"
-23680,9247,GO-20159000041,THEFT UNDER,2014-11-15T00:00:00,2014,November,Saturday,15,319,15,2015-01-03T00:00:00,2015,January,Saturday,3,3,15,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,NO,VALENCE,RG,6,LBL,1000.0,STOLEN,23665,"{'type': 'Point', 'coordinates': (-79.39455077, 43.70501949)}"
-23681,21562,GO-20209016968,THEFT UNDER,2020-07-06T00:00:00,2020,July,Monday,6,188,17,2020-07-06T00:00:00,2020,July,Monday,6,188,18,D13,Toronto,101,Forest Hill South (101),"Apartment (Rooming House, Condo)",Apartment,GI,XTC 1 DSC 24 IN,MT,21,GRY,559.0,STOLEN,23666,"{'type': 'Point', 'coordinates': (-79.4124048, 43.6877695)}"
-23682,22914,GO-20151282144,THEFT UNDER,2015-07-19T00:00:00,2015,July,Sunday,19,200,14,2015-07-27T00:00:00,2015,July,Monday,27,208,11,D53,Toronto,104,Mount Pleasant West (104),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,RG,0,,,STOLEN,23667,"{'type': 'Point', 'coordinates': (-79.38879081, 43.69768245)}"
-23683,18907,GO-20151147329,THEFT UNDER,2015-07-07T00:00:00,2015,July,Tuesday,7,188,15,2015-07-07T00:00:00,2015,July,Tuesday,7,188,16,D53,Toronto,104,Mount Pleasant West (104),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,8.2,MT,19,BLU,598.0,STOLEN,23668,"{'type': 'Point', 'coordinates': (-79.3904349, 43.69860218)}"
-23684,9271,GO-2015128960,THEFT UNDER,2015-01-16T00:00:00,2015,January,Friday,16,16,21,2015-01-22T00:00:00,2015,January,Thursday,22,22,17,D53,Toronto,104,Mount Pleasant West (104),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,ROCK HOPPER,MT,21,GRY,1100.0,STOLEN,23669,"{'type': 'Point', 'coordinates': (-79.39186194, 43.70556606)}"
-23685,9283,GO-2015164941,THEFT UNDER,2015-01-26T00:00:00,2015,January,Monday,26,26,10,2015-01-28T00:00:00,2015,January,Wednesday,28,28,18,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,DS8.4,MT,24,GRY,1200.0,STOLEN,23670,"{'type': 'Point', 'coordinates': (-79.39186194, 43.70556606)}"
-23686,9381,GO-20159001783,PROPERTY - LOST,2015-03-16T00:00:00,2015,March,Monday,16,75,12,2015-04-08T00:00:00,2015,April,Wednesday,8,98,18,D53,Toronto,104,Mount Pleasant West (104),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,DS 8.3,RG,21,BLK,750.0,UNKNOWN,23671,"{'type': 'Point', 'coordinates': (-79.38959964, 43.69974904)}"
-23687,9762,GO-2015965925,THEFT UNDER,2015-06-08T00:00:00,2015,June,Monday,8,159,17,2015-06-09T00:00:00,2015,June,Tuesday,9,160,12,D53,Toronto,104,Mount Pleasant West (104),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,STEP THRU LARGE,OT,8,GRYPNK,500.0,STOLEN,23672,"{'type': 'Point', 'coordinates': (-79.39927621, 43.71107784)}"
-23688,10108,GO-20159005049,THEFT UNDER,2015-07-19T00:00:00,2015,July,Sunday,19,200,14,2015-07-27T00:00:00,2015,July,Monday,27,208,12,D53,Toronto,104,Mount Pleasant West (104),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,DOGMA,RC,22,BLK,5000.0,STOLEN,23673,"{'type': 'Point', 'coordinates': (-79.38879081, 43.69768245)}"
-23689,10166,GO-20159005258,THEFT UNDER,2015-08-01T00:00:00,2015,August,Saturday,1,213,18,2015-08-02T00:00:00,2015,August,Sunday,2,214,17,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM 1,MT,30,GRY,800.0,STOLEN,23674,"{'type': 'Point', 'coordinates': (-79.39277875000002, 43.70786225)}"
-23690,10181,GO-20159005361,THEFT UNDER,2015-07-31T00:00:00,2015,July,Friday,31,212,0,2015-08-05T00:00:00,2015,August,Wednesday,5,217,15,D53,Toronto,104,Mount Pleasant West (104),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CROSSTRAIL,MT,9,SIL,750.0,STOLEN,23675,"{'type': 'Point', 'coordinates': (-79.39676103, 43.70456998)}"
-23691,10440,GO-20159006993,THEFT UNDER,2015-09-10T00:00:00,2015,September,Thursday,10,253,8,2015-09-10T00:00:00,2015,September,Thursday,10,253,17,D53,Toronto,104,Mount Pleasant West (104),Schools During Supervised Activity,Educational,GI,GIANT XTC,MT,30,BLK,2200.0,STOLEN,23676,"{'type': 'Point', 'coordinates': (-79.398957, 43.70958457)}"
-23692,11151,GO-20169003508,THEFT UNDER,2016-04-17T00:00:00,2016,April,Sunday,17,108,11,2016-04-18T00:00:00,2016,April,Monday,18,109,11,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,CA,2014,MT,4,BLU,800.0,STOLEN,23685,"{'type': 'Point', 'coordinates': (-79.39455077, 43.70501949)}"
-23693,10531,GO-20151651037,THEFT UNDER,2015-09-16T00:00:00,2015,September,Wednesday,16,259,15,2015-09-24T00:00:00,2015,September,Thursday,24,267,11,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,RUBAIX,RC,15,BLK,10000.0,STOLEN,23677,"{'type': 'Point', 'coordinates': (-79.39863797, 43.70821093)}"
-23694,10547,GO-20151663375,THEFT UNDER,2015-08-03T00:00:00,2015,August,Monday,3,215,16,2015-09-26T00:00:00,2015,September,Saturday,26,269,9,D53,Toronto,104,Mount Pleasant West (104),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KONA,COWAN,MT,9,ONG,1300.0,STOLEN,23678,"{'type': 'Point', 'coordinates': (-79.39863797, 43.70821093)}"
-23695,10555,GO-20159007824,THEFT UNDER,2015-09-26T00:00:00,2015,September,Saturday,26,269,14,2015-09-27T00:00:00,2015,September,Sunday,27,270,21,D53,Toronto,104,Mount Pleasant West (104),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,OT,27,BLK,950.0,STOLEN,23679,"{'type': 'Point', 'coordinates': (-79.39414615, 43.70227371)}"
-23696,10565,GO-20159007928,THEFT UNDER,2015-09-16T00:00:00,2015,September,Wednesday,16,259,12,2015-09-30T00:00:00,2015,September,Wednesday,30,273,15,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OT,RUBY APEX W,OT,48,PNK,2415.0,STOLEN,23680,"{'type': 'Point', 'coordinates': (-79.39863797, 43.70821093)}"
-23697,10690,GO-20159009051,THEFT UNDER,2015-10-17T00:00:00,2015,October,Saturday,17,290,16,2015-10-26T00:00:00,2015,October,Monday,26,299,8,D53,Toronto,104,Mount Pleasant West (104),Schools During Supervised Activity,Educational,UK,,MT,50,,1500.0,STOLEN,23681,"{'type': 'Point', 'coordinates': (-79.398957, 43.70958457)}"
-23698,10812,GO-20152017035,THEFT UNDER,2015-11-20T00:00:00,2015,November,Friday,20,324,12,2015-11-24T00:00:00,2015,November,Tuesday,24,328,16,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OTHER,,OT,1,,,STOLEN,23682,"{'type': 'Point', 'coordinates': (-79.38879081, 43.69768245)}"
-23699,11016,GO-2016346809,B&E W'INTENT,2016-02-21T00:00:00,2016,February,Sunday,21,52,12,2016-02-27T00:00:00,2016,February,Saturday,27,58,17,D53,Toronto,104,Mount Pleasant West (104),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GIANT,OCR,TO,18,BLKYEL,2000.0,STOLEN,23683,"{'type': 'Point', 'coordinates': (-79.38959964, 43.69974904)}"
-23700,11060,GO-2016480034,THEFT UNDER - BICYCLE,2016-02-20T00:00:00,2016,February,Saturday,20,51,13,2016-03-20T00:00:00,2016,March,Sunday,20,80,14,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,BIGFOOT 6.3 XL,MT,18,BLK,2128.0,STOLEN,23684,"{'type': 'Point', 'coordinates': (-79.39660264, 43.69830188)}"
-23701,11157,GO-20169003565,THEFT UNDER - BICYCLE,2016-04-18T00:00:00,2016,April,Monday,18,109,23,2016-04-19T00:00:00,2016,April,Tuesday,19,110,12,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OT,ORMA HT,MT,21,GRY,250.0,STOLEN,23686,"{'type': 'Point', 'coordinates': (-79.39146025, 43.70813555)}"
-23702,11256,GO-2016765465,THEFT UNDER - BICYCLE,2016-05-04T00:00:00,2016,May,Wednesday,4,125,9,2016-05-04T00:00:00,2016,May,Wednesday,4,125,17,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,BLADE,MOUNTAIN BIKE,MT,21,BLK,800.0,STOLEN,23687,"{'type': 'Point', 'coordinates': (-79.39442018, 43.71206328)}"
-23703,11353,GO-2016867506,THEFT UNDER - BICYCLE,2016-05-22T00:00:00,2016,May,Sunday,22,143,20,2016-05-22T00:00:00,2016,May,Sunday,22,143,20,D53,Toronto,104,Mount Pleasant West (104),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,,RG,8,,499.0,STOLEN,23688,"{'type': 'Point', 'coordinates': (-79.39277875000002, 43.70786225)}"
-23704,11396,GO-2016912682,B&E,2016-05-26T00:00:00,2016,May,Thursday,26,147,8,2016-05-27T00:00:00,2016,May,Friday,27,148,8,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,SIRRUS,OT,18,BLK,2600.0,STOLEN,23689,"{'type': 'Point', 'coordinates': (-79.3864381, 43.69817521)}"
-23705,11527,GO-20169005779,THEFT UNDER - BICYCLE,2016-05-26T00:00:00,2016,May,Thursday,26,147,23,2016-06-14T00:00:00,2016,June,Tuesday,14,166,14,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,TR,MARLIN 6,MT,24,ONG,700.0,STOLEN,23690,"{'type': 'Point', 'coordinates': (-79.3864381, 43.69817521)}"
-23706,11574,GO-20169005998,THEFT UNDER - BICYCLE,2016-06-18T00:00:00,2016,June,Saturday,18,170,7,2016-06-18T00:00:00,2016,June,Saturday,18,170,10,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,9,GRY,1200.0,STOLEN,23691,"{'type': 'Point', 'coordinates': (-79.3961644, 43.69612766)}"
-23707,11618,GO-20169005998,THEFT UNDER - BICYCLE,2016-06-18T00:00:00,2016,June,Saturday,18,170,7,2016-06-18T00:00:00,2016,June,Saturday,18,170,10,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,27,GRY,1200.0,STOLEN,23692,"{'type': 'Point', 'coordinates': (-79.3961644, 43.69612766)}"
-23708,12180,GO-20161479867,THEFT UNDER - BICYCLE,2016-08-20T00:00:00,2016,August,Saturday,20,233,14,2016-08-21T00:00:00,2016,August,Sunday,21,234,10,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,SIRRUS,RG,21,BLU,675.0,STOLEN,23693,"{'type': 'Point', 'coordinates': (-79.3961644, 43.69612766)}"
-23709,12181,GO-20161479867,THEFT UNDER - BICYCLE,2016-08-20T00:00:00,2016,August,Saturday,20,233,14,2016-08-21T00:00:00,2016,August,Sunday,21,234,10,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,,MT,21,BLUSIL,750.0,STOLEN,23694,"{'type': 'Point', 'coordinates': (-79.3961644, 43.69612766)}"
-23710,12248,GO-20169009882,THEFT UNDER - BICYCLE,2016-08-30T00:00:00,2016,August,Tuesday,30,243,17,2016-09-02T00:00:00,2016,September,Friday,2,246,17,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,TR,,TO,15,,1700.0,STOLEN,23695,"{'type': 'Point', 'coordinates': (-79.3904349, 43.69860218)}"
-23711,12293,GO-20169010137,THEFT UNDER - BICYCLE,2016-09-08T00:00:00,2016,September,Thursday,8,252,3,2016-09-08T00:00:00,2016,September,Thursday,8,252,12,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,KO,KONA LANAI,MT,21,GRY,550.0,STOLEN,23696,"{'type': 'Point', 'coordinates': (-79.3904349, 43.69860218)}"
-23712,12356,GO-20169010504,THEFT UNDER - BICYCLE,2016-09-12T00:00:00,2016,September,Monday,12,256,18,2016-09-15T00:00:00,2016,September,Thursday,15,259,21,D53,Toronto,104,Mount Pleasant West (104),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,2014 SILVERSTON,RC,20,WHI,1740.0,STOLEN,23697,"{'type': 'Point', 'coordinates': (-79.39186194, 43.70556606)}"
-23713,12357,GO-20169010504,THEFT UNDER - BICYCLE,2016-09-12T00:00:00,2016,September,Monday,12,256,18,2016-09-15T00:00:00,2016,September,Thursday,15,259,21,D53,Toronto,104,Mount Pleasant West (104),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,2012 7.0 FX,RG,21,GRY,560.0,STOLEN,23698,"{'type': 'Point', 'coordinates': (-79.39186194, 43.70556606)}"
-23714,12655,GO-20161806893,THEFT UNDER - BICYCLE,2016-10-21T00:00:00,2016,October,Friday,21,295,19,2016-10-21T00:00:00,2016,October,Friday,21,295,19,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,UK,,OT,10,,5000.0,STOLEN,23699,"{'type': 'Point', 'coordinates': (-79.39385701, 43.71059193)}"
-23715,12871,GO-20189024605,THEFT UNDER - BICYCLE,2018-07-03T00:00:00,2018,July,Tuesday,3,184,16,2018-07-30T00:00:00,2018,July,Monday,30,211,16,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE 3,TO,21,WHI,850.0,STOLEN,23700,"{'type': 'Point', 'coordinates': (-79.39277875000002, 43.70786225)}"
-23716,12883,GO-20189027144,THEFT UNDER - BICYCLE,2018-08-19T00:00:00,2018,August,Sunday,19,231,0,2018-08-20T00:00:00,2018,August,Monday,20,232,15,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,TR,WTU101C4897J,TO,18,SIL,2504.0,STOLEN,23701,"{'type': 'Point', 'coordinates': (-79.39442018, 43.71206328)}"
-23717,12884,GO-20189027144,THEFT UNDER - BICYCLE,2018-08-19T00:00:00,2018,August,Sunday,19,231,0,2018-08-20T00:00:00,2018,August,Monday,20,232,15,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,NO,047555-14-20-1,OT,15,GRY,648.0,STOLEN,23702,"{'type': 'Point', 'coordinates': (-79.39442018, 43.71206328)}"
-23718,12901,GO-20189034626,THEFT UNDER - BICYCLE,2018-10-18T00:00:00,2018,October,Thursday,18,291,17,2018-10-18T00:00:00,2018,October,Thursday,18,291,18,D53,Toronto,104,Mount Pleasant West (104),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,JEKYLL,MT,21,BLU,300.0,STOLEN,23703,"{'type': 'Point', 'coordinates': (-79.39057339, 43.70581687)}"
-23719,12923,GO-2019564151,THEFT UNDER - BICYCLE,2019-03-28T00:00:00,2019,March,Thursday,28,87,19,2019-03-29T00:00:00,2019,March,Friday,29,88,10,D53,Toronto,104,Mount Pleasant West (104),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,UNKNOWN,MT,21,WHI,1500.0,STOLEN,23704,"{'type': 'Point', 'coordinates': (-79.38889326, 43.70518065)}"
-23720,12924,GO-20199011438,THEFT UNDER - BICYCLE,2019-04-11T00:00:00,2019,April,Thursday,11,101,9,2019-04-11T00:00:00,2019,April,Thursday,11,101,9,D53,Toronto,104,Mount Pleasant West (104),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,,MT,40,,80.0,STOLEN,23705,"{'type': 'Point', 'coordinates': (-79.38879081, 43.69768245)}"
-23721,12943,GO-20199019768,THEFT UNDER - BICYCLE,2019-06-01T00:00:00,2019,June,Saturday,1,152,0,2019-06-23T00:00:00,2019,June,Sunday,23,174,15,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,KO,PROCESS,MT,21,GRN,4000.0,STOLEN,23706,"{'type': 'Point', 'coordinates': (-79.39385701, 43.71059193)}"
-23722,12947,GO-20191237601,B&E,2019-06-15T00:00:00,2019,June,Saturday,15,166,12,2019-07-03T00:00:00,2019,July,Wednesday,3,184,14,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OTHER,LEXA SLX,RG,18,RED,1420.0,STOLEN,23707,"{'type': 'Point', 'coordinates': (-79.39676103, 43.70456998)}"
-23723,12949,GO-20199021770,THEFT UNDER - BICYCLE,2019-07-08T00:00:00,2019,July,Monday,8,189,22,2019-07-10T00:00:00,2019,July,Wednesday,10,191,19,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,,MT,21,GRY,350.0,STOLEN,23708,"{'type': 'Point', 'coordinates': (-79.39385701, 43.71059193)}"
-23724,12971,GO-20191641951,THEFT UNDER - BICYCLE,2019-08-27T00:00:00,2019,August,Tuesday,27,239,2,2019-08-28T00:00:00,2019,August,Wednesday,28,240,11,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,TREK,3700,MT,21,GLDBRN,500.0,STOLEN,23709,"{'type': 'Point', 'coordinates': (-79.39442018, 43.71206328)}"
-23725,12991,GO-20199033086,THEFT UNDER,2019-10-01T00:00:00,2019,October,Tuesday,1,274,0,2019-10-08T00:00:00,2019,October,Tuesday,8,281,19,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,DB,VITAL2,OT,21,DBL,409.0,STOLEN,23710,"{'type': 'Point', 'coordinates': (-79.38959964, 43.69974904)}"
-23726,13028,GO-2020745105,B&E,2020-04-07T00:00:00,2020,April,Tuesday,7,98,19,2020-04-18T00:00:00,2020,April,Saturday,18,109,23,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,TREK,X-CALWSD,MT,21,LGRGRY,2800.0,STOLEN,23711,"{'type': 'Point', 'coordinates': (-79.39409295, 43.70760244)}"
-23727,13034,GO-2020935369,B&E,2020-05-21T00:00:00,2020,May,Thursday,21,142,4,2020-05-21T00:00:00,2020,May,Thursday,21,142,7,D53,Toronto,104,Mount Pleasant West (104),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TREK,,MT,22,DBL,4000.0,STOLEN,23712,"{'type': 'Point', 'coordinates': (-79.39690117, 43.70259578)}"
-23728,13035,GO-2020935369,B&E,2020-05-21T00:00:00,2020,May,Thursday,21,142,4,2020-05-21T00:00:00,2020,May,Thursday,21,142,7,D53,Toronto,104,Mount Pleasant West (104),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,ROCKY MOUNTAIN,,EL,11,BLKLGR,6000.0,STOLEN,23713,"{'type': 'Point', 'coordinates': (-79.39690117, 43.70259578)}"
-23729,13037,GO-20209014299,THEFT UNDER,2020-05-30T00:00:00,2020,May,Saturday,30,151,19,2020-05-31T00:00:00,2020,May,Sunday,31,152,16,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,NO,,MT,3,GRY,0.0,STOLEN,23714,"{'type': 'Point', 'coordinates': (-79.39858741, 43.70798666)}"
-23730,13038,GO-20209014327,THEFT UNDER - BICYCLE,2020-04-11T00:00:00,2020,April,Saturday,11,102,9,2020-06-01T00:00:00,2020,June,Monday,1,153,11,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,CROSSTRAIL HYDR,MT,24,BLK,875.0,STOLEN,23715,"{'type': 'Point', 'coordinates': (-79.3961644, 43.69612766)}"
-23731,13042,GO-20209014822,THEFT UNDER - BICYCLE,2020-05-31T00:00:00,2020,May,Sunday,31,152,19,2020-06-08T00:00:00,2020,June,Monday,8,160,22,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OT,AUDACIO 400,RC,30,BLK,1000.0,STOLEN,23716,"{'type': 'Point', 'coordinates': (-79.39442018, 43.71206328)}"
-23732,13052,GO-20209016167,THEFT FROM MOTOR VEHICLE UNDER,2020-06-25T00:00:00,2020,June,Thursday,25,177,11,2020-06-25T00:00:00,2020,June,Thursday,25,177,18,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RM,GROWLER 40,MT,11,ONG,2800.0,STOLEN,23717,"{'type': 'Point', 'coordinates': (-79.39057339, 43.70581687)}"
-23733,14106,GO-20161646492,THEFT UNDER - BICYCLE,2016-09-16T00:00:00,2016,September,Friday,16,260,4,2016-09-16T00:00:00,2016,September,Friday,16,260,9,D53,Toronto,104,Mount Pleasant West (104),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GARY FISHER,KAITAI,OT,24,WHIONG,800.0,STOLEN,23719,"{'type': 'Point', 'coordinates': (-79.3961644, 43.69612766)}"
-23734,14143,GO-20179001643,THEFT UNDER - BICYCLE,2017-02-06T00:00:00,2017,February,Monday,6,37,16,2017-02-06T00:00:00,2017,February,Monday,6,37,23,D53,Toronto,104,Mount Pleasant West (104),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,RG,21,BLU,520.0,STOLEN,23720,"{'type': 'Point', 'coordinates': (-79.39882879, 43.70908894)}"
-23735,14184,GO-20179013556,THEFT UNDER,2017-08-25T00:00:00,2017,August,Friday,25,237,16,2017-08-28T00:00:00,2017,August,Monday,28,240,19,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,RG,18,RED,600.0,STOLEN,23721,"{'type': 'Point', 'coordinates': (-79.39385701, 43.71059193)}"
-23736,14222,GO-2018538431,THEFT UNDER - BICYCLE,2018-03-09T00:00:00,2018,March,Friday,9,68,19,2018-03-25T00:00:00,2018,March,Sunday,25,84,11,D53,Toronto,104,Mount Pleasant West (104),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,,MT,21,,,STOLEN,23722,"{'type': 'Point', 'coordinates': (-79.39832607, 43.70673316)}"
-23737,14235,GO-20189016290,THEFT UNDER - BICYCLE,2018-05-25T00:00:00,2018,May,Friday,25,145,21,2018-05-25T00:00:00,2018,May,Friday,25,145,22,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,SU,SUPERCYCLE PHAN,MT,21,ONG,250.0,STOLEN,23723,"{'type': 'Point', 'coordinates': (-79.39186194, 43.70556606)}"
-23738,14237,GO-2018960784,THEFT OF EBIKE UNDER $5000,2018-05-25T00:00:00,2018,May,Friday,25,145,22,2018-05-28T00:00:00,2018,May,Monday,28,148,10,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOW,UNKNOWN,EL,0,BLK,300.0,STOLEN,23724,"{'type': 'Point', 'coordinates': (-79.39083961, 43.69949369)}"
-23739,14261,GO-20189022856,THEFT UNDER - BICYCLE,2018-07-17T00:00:00,2018,July,Tuesday,17,198,22,2018-07-17T00:00:00,2018,July,Tuesday,17,198,23,D53,Toronto,104,Mount Pleasant West (104),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,MT,21,GRY,1000.0,STOLEN,23725,"{'type': 'Point', 'coordinates': (-79.39882879, 43.70908894)}"
-23740,15851,GO-20141427708,THEFT UNDER,2014-01-28T00:00:00,2014,January,Tuesday,28,28,21,2014-01-28T00:00:00,2014,January,Tuesday,28,28,21,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,THIN BLUE LINE,DUSTER,RC,18,BLU,1000.0,STOLEN,23726,"{'type': 'Point', 'coordinates': (-79.39676103, 43.70456998)}"
-23741,15853,GO-20141869595,THEFT UNDER,2014-04-11T00:00:00,2014,April,Friday,11,101,11,2014-04-11T00:00:00,2014,April,Friday,11,101,11,D53,Toronto,104,Mount Pleasant West (104),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,7100,OT,21,GRN,800.0,STOLEN,23727,"{'type': 'Point', 'coordinates': (-79.3961644, 43.69612766)}"
-23742,15864,GO-20142115275,THEFT UNDER,2014-05-14T00:00:00,2014,May,Wednesday,14,134,8,2014-05-20T00:00:00,2014,May,Tuesday,20,140,12,D53,Toronto,104,Mount Pleasant West (104),Schools During Un-Supervised Activity,Educational,TREK,,MT,21,GRNGRY,450.0,STOLEN,23728,"{'type': 'Point', 'coordinates': (-79.398957, 43.70958457)}"
-23743,15905,GO-20142899435,THEFT UNDER,2014-09-12T00:00:00,2014,September,Friday,12,255,21,2014-09-13T00:00:00,2014,September,Saturday,13,256,1,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,ROCKY MOUNTAIN,TRAIL HEAD,MT,21,BRN,1400.0,STOLEN,23729,"{'type': 'Point', 'coordinates': (-79.3864381, 43.69817521)}"
-23744,15908,GO-20149007250,THEFT OVER,2014-09-22T00:00:00,2014,September,Monday,22,265,20,2014-09-27T00:00:00,2014,September,Saturday,27,270,15,D53,Toronto,104,Mount Pleasant West (104),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,,TR,1,,50.0,STOLEN,23730,"{'type': 'Point', 'coordinates': (-79.39385701, 43.71059193)}"
-23745,15934,GO-2015761815,THEFT UNDER,2015-05-06T00:00:00,2015,May,Wednesday,6,126,20,2015-05-07T00:00:00,2015,May,Thursday,7,127,19,D53,Toronto,104,Mount Pleasant West (104),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,YORKVILLE,RG,21,GRN,700.0,STOLEN,23731,"{'type': 'Point', 'coordinates': (-79.39256925, 43.70119208)}"
-23746,15966,GO-20159005703,THEFT UNDER,2015-08-11T00:00:00,2015,August,Tuesday,11,223,16,2015-08-12T00:00:00,2015,August,Wednesday,12,224,17,D53,Toronto,104,Mount Pleasant West (104),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CC,,EL,60,YEL,1100.0,STOLEN,23732,"{'type': 'Point', 'coordinates': (-79.39385701, 43.71059193)}"
-23747,15967,GO-20159005703,THEFT UNDER,2015-08-11T00:00:00,2015,August,Tuesday,11,223,16,2015-08-12T00:00:00,2015,August,Wednesday,12,224,17,D53,Toronto,104,Mount Pleasant West (104),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CC,,FO,30,RED,200.0,STOLEN,23733,"{'type': 'Point', 'coordinates': (-79.39385701, 43.71059193)}"
-23748,15995,GO-20151956829,THEFT UNDER,2015-11-09T00:00:00,2015,November,Monday,9,313,16,2015-11-14T00:00:00,2015,November,Saturday,14,318,16,D53,Toronto,104,Mount Pleasant West (104),"Open Areas (Lakes, Parks, Rivers)",Outside,GIANT,CITY ESCAPE,RG,18,GRY,600.0,STOLEN,23734,"{'type': 'Point', 'coordinates': (-79.39863797, 43.70821093)}"
-23749,16020,GO-2016843973,THEFT UNDER - BICYCLE,2016-05-16T00:00:00,2016,May,Monday,16,137,11,2016-05-16T00:00:00,2016,May,Monday,16,137,19,D53,Toronto,104,Mount Pleasant West (104),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CANNONDALE,,OT,12,WHI,500.0,STOLEN,23735,"{'type': 'Point', 'coordinates': (-79.39545215, 43.70732915)}"
-23750,16027,GO-20169005298,THEFT UNDER - BICYCLE,2016-06-03T00:00:00,2016,June,Friday,3,155,7,2016-06-03T00:00:00,2016,June,Friday,3,155,8,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OT,TRICROSS,OT,30,SIL,1200.0,STOLEN,23736,"{'type': 'Point', 'coordinates': (-79.3864381, 43.69817521)}"
-23751,16030,GO-20209017025,THEFT UNDER - BICYCLE,2020-06-17T00:00:00,2020,June,Wednesday,17,169,17,2020-07-07T00:00:00,2020,July,Tuesday,7,189,14,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OT,JAMIS DURANGO,MT,24,BLK,900.0,STOLEN,23737,"{'type': 'Point', 'coordinates': (-79.39325386, 43.70907306)}"
-23752,16031,GO-20209017148,THEFT UNDER - BICYCLE,2020-07-08T00:00:00,2020,July,Wednesday,8,190,17,2020-07-08T00:00:00,2020,July,Wednesday,8,190,18,D53,Toronto,104,Mount Pleasant West (104),Convenience Stores,Commercial,CA,TRAIL TANGO 5,MT,21,GRY,0.0,STOLEN,23738,"{'type': 'Point', 'coordinates': (-79.39660264, 43.69830188)}"
-23753,16039,GO-20209017661,THEFT UNDER - BICYCLE,2020-07-15T00:00:00,2020,July,Wednesday,15,197,17,2020-07-15T00:00:00,2020,July,Wednesday,15,197,18,D53,Toronto,104,Mount Pleasant West (104),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,RG,18,BLK,900.0,STOLEN,23739,"{'type': 'Point', 'coordinates': (-79.39228472, 43.70354116)}"
-23754,16040,GO-20201316091,B&E,2020-07-01T00:00:00,2020,July,Wednesday,1,183,0,2020-07-15T00:00:00,2020,July,Wednesday,15,197,22,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,BIANCHI,,RG,1,BLU,3000.0,STOLEN,23740,"{'type': 'Point', 'coordinates': (-79.39743388, 43.70692304)}"
-23755,16062,GO-20201572188,B&E W'INTENT,2020-08-18T00:00:00,2020,August,Tuesday,18,231,16,2020-08-21T00:00:00,2020,August,Friday,21,234,11,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OTHER,ZEBDI,MT,8,WHI,5000.0,STOLEN,23741,"{'type': 'Point', 'coordinates': (-79.39676103, 43.70456998)}"
-23756,16067,GO-20209021661,THEFT UNDER - BICYCLE,2020-08-28T00:00:00,2020,August,Friday,28,241,19,2020-08-28T00:00:00,2020,August,Friday,28,241,19,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,TR,TREK DUAL SPORT,MT,30,SIL,643.0,STOLEN,23742,"{'type': 'Point', 'coordinates': (-79.39778528, 43.7041493)}"
-23757,16069,GO-20201623757,THEFT UNDER - BICYCLE,2020-08-27T00:00:00,2020,August,Thursday,27,240,22,2020-08-28T00:00:00,2020,August,Friday,28,241,15,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,MOUNTAIN BIKE,MT,21,ONG,1000.0,STOLEN,23743,"{'type': 'Point', 'coordinates': (-79.39442018, 43.71206328)}"
-23758,16074,GO-20201712645,THEFT OF EBIKE UNDER $5000,2020-08-27T00:00:00,2020,August,Thursday,27,240,2,2020-09-10T00:00:00,2020,September,Thursday,10,254,10,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OTHER,NICOM COMP,EL,5,RED,2000.0,STOLEN,23744,"{'type': 'Point', 'coordinates': (-79.3961644, 43.69612766)}"
-23759,16091,GO-20209025714,THEFT UNDER - BICYCLE,2020-10-03T00:00:00,2020,October,Saturday,3,277,16,2020-10-07T00:00:00,2020,October,Wednesday,7,281,20,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,21,BLU,201.0,STOLEN,23745,"{'type': 'Point', 'coordinates': (-79.39764386, 43.70339756)}"
-23760,22932,GO-20151607350,THEFT UNDER,2015-09-16T00:00:00,2015,September,Wednesday,16,259,3,2015-09-17T00:00:00,2015,September,Thursday,17,260,11,D53,Toronto,104,Mount Pleasant West (104),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,RG,21,WHI,,STOLEN,23746,"{'type': 'Point', 'coordinates': (-79.39924778000001, 43.71091352)}"
-23761,21563,GO-20209016968,THEFT UNDER,2020-07-06T00:00:00,2020,July,Monday,6,188,17,2020-07-06T00:00:00,2020,July,Monday,6,188,18,D13,Toronto,101,Forest Hill South (101),"Apartment (Rooming House, Condo)",Apartment,GI,XTC 1,MT,21,GRY,567.0,STOLEN,23747,"{'type': 'Point', 'coordinates': (-79.4124048, 43.6877695)}"
-23762,22934,GO-20159007391,THEFT UNDER,2015-09-14T00:00:00,2015,September,Monday,14,257,9,2015-09-19T00:00:00,2015,September,Saturday,19,262,10,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OT,ALEGRO3,RC,20,BLK,3200.0,STOLEN,23748,"{'type': 'Point', 'coordinates': (-79.39409295, 43.70760244)}"
-23763,22974,GO-20169004947,THEFT UNDER - BICYCLE,2016-05-13T00:00:00,2016,May,Friday,13,134,23,2016-05-25T00:00:00,2016,May,Wednesday,25,146,21,D53,Toronto,104,Mount Pleasant West (104),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE,RG,18,SIL,0.0,STOLEN,23749,"{'type': 'Point', 'coordinates': (-79.39186194, 43.70556606)}"
-23764,22976,GO-20169005741,THEFT UNDER - BICYCLE,2016-06-13T00:00:00,2016,June,Monday,13,165,8,2016-06-13T00:00:00,2016,June,Monday,13,165,20,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,NO,,MT,21,BLU,200.0,STOLEN,23750,"{'type': 'Point', 'coordinates': (-79.39743388, 43.70692304)}"
-23765,25436,GO-20179005501,THEFT UNDER - BICYCLE,2017-04-29T00:00:00,2017,April,Saturday,29,119,16,2017-04-30T00:00:00,2017,April,Sunday,30,120,16,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,KO,HEI HEI TRAIL (,MT,20,BLK,3100.0,STOLEN,23751,"{'type': 'Point', 'coordinates': (-79.3904349, 43.69860218)}"
-23766,25437,GO-20179005501,THEFT UNDER - BICYCLE,2017-04-29T00:00:00,2017,April,Saturday,29,119,16,2017-04-30T00:00:00,2017,April,Sunday,30,120,16,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,GI,XTC 2003,MT,21,BLK,1100.0,STOLEN,23752,"{'type': 'Point', 'coordinates': (-79.3904349, 43.69860218)}"
-23767,25442,GO-20179007194,THEFT UNDER,2017-04-05T00:00:00,2017,April,Wednesday,5,95,11,2017-05-29T00:00:00,2017,May,Monday,29,149,21,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,CA,QUICK,OT,10,WHI,900.0,STOLEN,23753,"{'type': 'Point', 'coordinates': (-79.39676103, 43.70456998)}"
-23768,25443,GO-20179007194,THEFT UNDER,2017-04-05T00:00:00,2017,April,Wednesday,5,95,11,2017-05-29T00:00:00,2017,May,Monday,29,149,21,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,KO,JAKE,TO,10,ONG,1200.0,STOLEN,23754,"{'type': 'Point', 'coordinates': (-79.39676103, 43.70456998)}"
-23769,25444,GO-20179007264,THEFT UNDER - BICYCLE,2017-05-30T00:00:00,2017,May,Tuesday,30,150,14,2017-05-30T00:00:00,2017,May,Tuesday,30,150,21,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OT,TRAIL X COMP,MT,24,RED,629.0,STOLEN,23755,"{'type': 'Point', 'coordinates': (-79.398957, 43.70958457)}"
-23770,25447,GO-20179007446,THEFT UNDER - BICYCLE,2017-06-03T00:00:00,2017,June,Saturday,3,154,4,2017-06-03T00:00:00,2017,June,Saturday,3,154,13,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,TR,,RG,18,WHI,800.0,STOLEN,23756,"{'type': 'Point', 'coordinates': (-79.398957, 43.70958457)}"
-23771,25448,GO-20179007594,THEFT UNDER - BICYCLE,2017-06-03T00:00:00,2017,June,Saturday,3,154,5,2017-06-06T00:00:00,2017,June,Tuesday,6,157,11,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,RM,ROCK SPORT BKE,MT,7,BLK,889.0,STOLEN,23757,"{'type': 'Point', 'coordinates': (-79.398957, 43.70958457)}"
-23772,25457,GO-20179009538,THEFT UNDER - BICYCLE,2017-06-29T00:00:00,2017,June,Thursday,29,180,12,2017-07-05T00:00:00,2017,July,Wednesday,5,186,23,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,TR,"REMEDY 9, 2014",MT,20,ONG,4800.0,STOLEN,23758,"{'type': 'Point', 'coordinates': (-79.3961644, 43.69612766)}"
-23773,25471,GO-20171342696,THEFT UNDER - BICYCLE,2017-06-13T00:00:00,2017,June,Tuesday,13,164,9,2017-07-26T00:00:00,2017,July,Wednesday,26,207,15,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OTHER,KILO TT PRO,RC,1,WHI,750.0,STOLEN,23759,"{'type': 'Point', 'coordinates': (-79.3961644, 43.69612766)}"
-23774,25473,GO-20179011439,THEFT UNDER - BICYCLE,2017-07-30T00:00:00,2017,July,Sunday,30,211,20,2017-07-31T00:00:00,2017,July,Monday,31,212,20,D53,Toronto,104,Mount Pleasant West (104),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,,RG,5,BLK,200.0,STOLEN,23760,"{'type': 'Point', 'coordinates': (-79.38959964, 43.69974904)}"
-23775,25477,GO-20171560791,PROPERTY - FOUND,2017-08-29T00:00:00,2017,August,Tuesday,29,241,1,2017-08-29T00:00:00,2017,August,Tuesday,29,241,1,D53,Toronto,104,Mount Pleasant West (104),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,AVICO,DOWNTOWN,OT,24,,,UNKNOWN,23761,"{'type': 'Point', 'coordinates': (-79.39832607, 43.70673316)}"
-23776,25478,GO-20179013677,THEFT UNDER - BICYCLE,2017-08-23T00:00:00,2017,August,Wednesday,23,235,12,2017-08-30T00:00:00,2017,August,Wednesday,30,242,12,D53,Toronto,104,Mount Pleasant West (104),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,SYNAPSE 7,RC,21,BLK,1000.0,STOLEN,23762,"{'type': 'Point', 'coordinates': (-79.3892761, 43.70216558)}"
-23777,25479,GO-20179013677,THEFT UNDER - BICYCLE,2017-08-23T00:00:00,2017,August,Wednesday,23,235,12,2017-08-30T00:00:00,2017,August,Wednesday,30,242,12,D53,Toronto,104,Mount Pleasant West (104),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,RC,21,WHI,1200.0,STOLEN,23763,"{'type': 'Point', 'coordinates': (-79.3892761, 43.70216558)}"
-23778,25481,GO-20179013868,THEFT UNDER - BICYCLE,2017-09-02T00:00:00,2017,September,Saturday,2,245,9,2017-09-02T00:00:00,2017,September,Saturday,2,245,10,D53,Toronto,104,Mount Pleasant West (104),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,OT,1,RED,150.0,STOLEN,23764,"{'type': 'Point', 'coordinates': (-79.39591185, 43.7047462)}"
-23779,25486,GO-20179015329,THEFT UNDER - BICYCLE,2017-09-20T00:00:00,2017,September,Wednesday,20,263,17,2017-09-20T00:00:00,2017,September,Wednesday,20,263,20,D53,Toronto,104,Mount Pleasant West (104),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,TRAIL 3,MT,20,ONG,1499.0,STOLEN,23765,"{'type': 'Point', 'coordinates': (-79.39781207, 43.70435185)}"
-23780,25519,GO-20189004895,THEFT UNDER - BICYCLE,2018-02-15T00:00:00,2018,February,Thursday,15,46,0,2018-02-16T00:00:00,2018,February,Friday,16,47,10,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OT,MODENA 700C HY,RG,21,BLK,300.0,STOLEN,23766,"{'type': 'Point', 'coordinates': (-79.39385701, 43.71059193)}"
-23781,25521,GO-20189004693,THEFT UNDER - BICYCLE,2018-02-12T00:00:00,2018,February,Monday,12,43,22,2018-02-14T00:00:00,2018,February,Wednesday,14,45,22,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,GT,AGGRESSOR 3.0,MT,18,ONG,500.0,STOLEN,23767,"{'type': 'Point', 'coordinates': (-79.39385701, 43.71059193)}"
-23782,25524,GO-20189009087,THEFT UNDER - BICYCLE,2018-03-22T00:00:00,2018,March,Thursday,22,81,11,2018-03-23T00:00:00,2018,March,Friday,23,82,10,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OT,CUSTOM,MT,10,BLK,4000.0,STOLEN,23768,"{'type': 'Point', 'coordinates': (-79.38693266, 43.70031352000001)}"
-23783,25547,GO-20189018497,THEFT UNDER - BICYCLE,2018-06-12T00:00:00,2018,June,Tuesday,12,163,19,2018-06-13T00:00:00,2018,June,Wednesday,13,164,10,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,GT,AGGRESSOR-SPORT,MT,10,ONG,450.0,STOLEN,23769,"{'type': 'Point', 'coordinates': (-79.3904349, 43.69860218)}"
-23784,25571,GO-20181356441,THEFT UNDER - BICYCLE,2018-07-20T00:00:00,2018,July,Friday,20,201,10,2018-07-25T00:00:00,2018,July,Wednesday,25,206,5,D53,Toronto,104,Mount Pleasant West (104),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,VALENCE,OT,12,BLKWHI,2000.0,STOLEN,23770,"{'type': 'Point', 'coordinates': (-79.39545215, 43.70732915)}"
-23785,25581,GO-20181611829,THEFT OF EBIKE UNDER $5000,2018-08-29T00:00:00,2018,August,Wednesday,29,241,18,2018-08-31T00:00:00,2018,August,Friday,31,243,12,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,DAYMARK,MONACO,EL,1,,750.0,STOLEN,23771,"{'type': 'Point', 'coordinates': (-79.39442018, 43.71206328)}"
-23786,25601,GO-20181990701,THEFT OF EBIKE UNDER $5000,2018-10-27T00:00:00,2018,October,Saturday,27,300,13,2018-10-28T00:00:00,2018,October,Sunday,28,301,17,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EM,HORNET 60V,EL,32,BLK,1499.0,STOLEN,23772,"{'type': 'Point', 'coordinates': (-79.39442018, 43.71206328)}"
-23787,25607,GO-20189038059,THEFT UNDER - BICYCLE,2018-11-13T00:00:00,2018,November,Tuesday,13,317,8,2018-11-13T00:00:00,2018,November,Tuesday,13,317,15,D53,Toronto,104,Mount Pleasant West (104),Schools During Un-Supervised Activity,Educational,OT,WEB,BM,5,,350.0,STOLEN,23773,"{'type': 'Point', 'coordinates': (-79.398957, 43.70958457)}"
-23788,25609,GO-20182143609,THEFT UNDER - BICYCLE,2018-11-15T00:00:00,2018,November,Thursday,15,319,7,2018-11-21T00:00:00,2018,November,Wednesday,21,325,11,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,GIANT,,OT,16,BLK,1500.0,STOLEN,23774,"{'type': 'Point', 'coordinates': (-79.39409295, 43.70760244)}"
-23789,25628,GO-20199017342,THEFT UNDER - BICYCLE,2019-05-27T00:00:00,2019,May,Monday,27,147,11,2019-06-04T00:00:00,2019,June,Tuesday,4,155,10,D53,Toronto,104,Mount Pleasant West (104),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,21,PLE,150.0,STOLEN,23775,"{'type': 'Point', 'coordinates': (-79.39409295, 43.70760244)}"
-23790,25640,GO-20199019533,THEFT UNDER - BICYCLE,2019-06-21T00:00:00,2019,June,Friday,21,172,11,2019-06-21T00:00:00,2019,June,Friday,21,172,11,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,GF,ZEBRANO BI-0407,RG,18,BLK,0.0,STOLEN,23776,"{'type': 'Point', 'coordinates': (-79.38670348000001, 43.69930064)}"
-23791,25641,GO-20191163931,B&E,2019-06-22T00:00:00,2019,June,Saturday,22,173,18,2019-06-24T00:00:00,2019,June,Monday,24,175,10,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,CANNONDALE,QUICK 4,MT,18,BLKWHI,1000.0,STOLEN,23777,"{'type': 'Point', 'coordinates': (-79.39676103, 43.70456998)}"
-23792,25646,GO-20199023156,THEFT UNDER - BICYCLE,2019-07-21T00:00:00,2019,July,Sunday,21,202,17,2019-07-21T00:00:00,2019,July,Sunday,21,202,19,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OT,SPACE 2,RC,20,WHI,1800.0,STOLEN,23778,"{'type': 'Point', 'coordinates': (-79.39277875000002, 43.70786225)}"
-23793,18935,GO-20159007132,THEFT UNDER,2015-09-06T00:00:00,2015,September,Sunday,6,249,20,2015-09-13T00:00:00,2015,September,Sunday,13,256,21,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,RC,10,SIL,900.0,STOLEN,23779,"{'type': 'Point', 'coordinates': (-79.39215994, 43.71378704)}"
-23794,25647,GO-20191391427,THEFT UNDER - BICYCLE,2019-07-21T00:00:00,2019,July,Sunday,21,202,17,2019-07-24T00:00:00,2019,July,Wednesday,24,205,15,D53,Toronto,104,Mount Pleasant West (104),"Open Areas (Lakes, Parks, Rivers)",Outside,TMC,JITTERBUG,SC,0,BLK,1128.0,UNKNOWN,23780,"{'type': 'Point', 'coordinates': (-79.39711895, 43.70085422)}"
-23795,25700,GO-20209009595,THEFT UNDER,2020-03-22T00:00:00,2020,March,Sunday,22,82,10,2020-03-22T00:00:00,2020,March,Sunday,22,82,19,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,DURANGO 1.0,FO,8,RED,919.0,STOLEN,23781,"{'type': 'Point', 'coordinates': (-79.39277875000002, 43.70786225)}"
-23796,25701,GO-20209009726,THEFT UNDER - BICYCLE,2020-03-22T00:00:00,2020,March,Sunday,22,82,12,2020-03-24T00:00:00,2020,March,Tuesday,24,84,14,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,CA,,RG,10,TRQ,500.0,STOLEN,23782,"{'type': 'Point', 'coordinates': (-79.39277875000002, 43.70786225)}"
-23797,25707,GO-20209010287,B&E,2020-03-30T00:00:00,2020,March,Monday,30,90,23,2020-04-01T00:00:00,2020,April,Wednesday,1,92,15,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,2013 ROCKHOPPER,MT,9,RED,700.0,STOLEN,23783,"{'type': 'Point', 'coordinates': (-79.3904349, 43.69860218)}"
-23798,25708,GO-20209011082,THEFT UNDER,2020-04-12T00:00:00,2020,April,Sunday,12,103,15,2020-04-14T00:00:00,2020,April,Tuesday,14,105,11,D53,Toronto,104,Mount Pleasant West (104),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,18,WHI,700.0,STOLEN,23784,"{'type': 'Point', 'coordinates': (-79.3904349, 43.69860218)}"
-23799,25709,GO-20209011082,THEFT UNDER,2020-04-12T00:00:00,2020,April,Sunday,12,103,15,2020-04-14T00:00:00,2020,April,Tuesday,14,105,11,D53,Toronto,104,Mount Pleasant West (104),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MO,,MT,18,BLU,400.0,STOLEN,23785,"{'type': 'Point', 'coordinates': (-79.3904349, 43.69860218)}"
-23800,25713,GO-20209013835,THEFT UNDER - BICYCLE,2020-05-24T00:00:00,2020,May,Sunday,24,145,20,2020-05-24T00:00:00,2020,May,Sunday,24,145,22,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OT,ALLEZ,RC,10,ONG,1000.0,STOLEN,23786,"{'type': 'Point', 'coordinates': (-79.3961644, 43.69612766)}"
-23801,25717,GO-2020977772,B&E,2020-05-18T00:00:00,2020,May,Monday,18,139,15,2020-05-27T00:00:00,2020,May,Wednesday,27,148,14,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,CERVELO,R3,RC,11,BLKWHI,5775.0,STOLEN,23787,"{'type': 'Point', 'coordinates': (-79.39676103, 43.70456998)}"
-23802,25719,GO-20209014586,THEFT UNDER - BICYCLE,2020-05-29T00:00:00,2020,May,Friday,29,150,18,2020-06-04T00:00:00,2020,June,Thursday,4,156,16,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,CC,KROSSPORT 700C,OT,7,BLU,300.0,STOLEN,23788,"{'type': 'Point', 'coordinates': (-79.39385701, 43.71059193)}"
-23803,25726,GO-20209015514,THEFT UNDER - BICYCLE,2020-06-09T00:00:00,2020,June,Tuesday,9,161,20,2020-06-16T00:00:00,2020,June,Tuesday,16,168,21,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OT,CTM 700CC,RG,21,GRY,485.0,STOLEN,23789,"{'type': 'Point', 'coordinates': (-79.39325386, 43.70907306)}"
-23804,25730,GO-20201128853,THEFT UNDER - BICYCLE,2020-06-16T00:00:00,2020,June,Tuesday,16,168,9,2020-06-22T00:00:00,2020,June,Monday,22,174,18,D53,Toronto,104,Mount Pleasant West (104),"Private Property Structure (Pool, Shed, Detached Garage)",Other,DIADORA,NOVARA,MT,21,YEL,430.0,STOLEN,23790,"{'type': 'Point', 'coordinates': (-79.39083961, 43.69949369)}"
-23805,25732,GO-20201170170,B&E,2020-06-20T00:00:00,2020,June,Saturday,20,172,10,2020-06-26T00:00:00,2020,June,Friday,26,178,8,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,ROCK HOPPER,MT,21,GRYYEL,1200.0,STOLEN,23791,"{'type': 'Point', 'coordinates': (-79.39325386, 43.70907306)}"
-23806,25736,GO-20201168880,THEFT UNDER - BICYCLE,2020-06-20T00:00:00,2020,June,Saturday,20,172,9,2020-06-25T00:00:00,2020,June,Thursday,25,177,11,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,RG,1,PLE,200.0,STOLEN,23792,"{'type': 'Point', 'coordinates': (-79.39141706, 43.71171287)}"
-23807,25739,GO-20201233297,THEFT UNDER - BICYCLE,2020-05-31T00:00:00,2020,May,Sunday,31,152,12,2020-07-04T00:00:00,2020,July,Saturday,4,186,12,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,CCM,UNKNOWN,MT,18,GRNBRN,500.0,STOLEN,23793,"{'type': 'Point', 'coordinates': (-79.3904349, 43.69860218)}"
-23808,25741,GO-20209016965,THEFT UNDER - BICYCLE,2020-07-05T00:00:00,2020,July,Sunday,5,187,23,2020-07-06T00:00:00,2020,July,Monday,6,188,17,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,50,RED,300.0,STOLEN,23794,"{'type': 'Point', 'coordinates': (-79.39409295, 43.70760244)}"
-23809,25749,GO-20209017774,THEFT UNDER - BICYCLE,2020-07-12T00:00:00,2020,July,Sunday,12,194,23,2020-07-17T00:00:00,2020,July,Friday,17,199,17,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,21,PLE,400.0,STOLEN,23795,"{'type': 'Point', 'coordinates': (-79.39678883, 43.70706033)}"
-23810,25750,GO-20209017774,THEFT UNDER - BICYCLE,2020-07-12T00:00:00,2020,July,Sunday,12,194,23,2020-07-17T00:00:00,2020,July,Friday,17,199,17,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,SC,,MT,21,GRY,900.0,STOLEN,23796,"{'type': 'Point', 'coordinates': (-79.39678883, 43.70706033)}"
-23811,25782,GO-20201848964,B&E,2020-09-28T00:00:00,2020,September,Monday,28,272,20,2020-09-29T00:00:00,2020,September,Tuesday,29,273,9,D53,Toronto,104,Mount Pleasant West (104),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,,MT,21,WHI,0.0,STOLEN,23797,"{'type': 'Point', 'coordinates': (-79.39591185, 43.7047462)}"
-23812,25786,GO-20209025246,THEFT UNDER - BICYCLE,2020-10-01T00:00:00,2020,October,Thursday,1,275,16,2020-10-02T00:00:00,2020,October,Friday,2,276,12,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,NO,YORKVILLE,RG,21,SIL,700.0,STOLEN,23798,"{'type': 'Point', 'coordinates': (-79.3961644, 43.69612766)}"
-23813,25791,GO-20209026119,THEFT UNDER - BICYCLE,2020-10-09T00:00:00,2020,October,Friday,9,283,18,2020-10-11T00:00:00,2020,October,Sunday,11,285,11,D53,Toronto,104,Mount Pleasant West (104),Bar / Restaurant,Commercial,DB,,MT,10,BLK,200.0,STOLEN,23799,"{'type': 'Point', 'coordinates': (-79.39146025, 43.70813555)}"
-23814,687,GO-20179008680,THEFT UNDER - BICYCLE,2017-06-21T00:00:00,2017,June,Wednesday,21,172,23,2017-06-22T00:00:00,2017,June,Thursday,22,173,11,D32,Toronto,105,Lawrence Park North (105),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KH,URBAN XPRESS,RG,24,DBL,600.0,STOLEN,23800,"{'type': 'Point', 'coordinates': (-79.40137389, 43.73160184)}"
-23815,733,GO-20179009085,THEFT UNDER - BICYCLE,2017-06-28T00:00:00,2017,June,Wednesday,28,179,0,2017-06-28T00:00:00,2017,June,Wednesday,28,179,12,D32,Toronto,105,Lawrence Park North (105),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,XFR 3,MT,1,ONG,939.0,STOLEN,23801,"{'type': 'Point', 'coordinates': (-79.41551412, 43.73159972)}"
-23816,734,GO-20179009085,THEFT UNDER - BICYCLE,2017-06-28T00:00:00,2017,June,Wednesday,28,179,0,2017-06-28T00:00:00,2017,June,Wednesday,28,179,12,D32,Toronto,105,Lawrence Park North (105),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,XFR 2,MT,1,GRY,1249.0,STOLEN,23802,"{'type': 'Point', 'coordinates': (-79.41551412, 43.73159972)}"
-23817,887,GO-20171276425,THEFT UNDER - BICYCLE,2017-07-13T00:00:00,2017,July,Thursday,13,194,8,2017-07-18T00:00:00,2017,July,Tuesday,18,199,14,D32,Toronto,105,Lawrence Park North (105),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,OT,10,,2500.0,STOLEN,23803,"{'type': 'Point', 'coordinates': (-79.40964909, 43.72600094)}"
-23818,2383,GO-20189015974,THEFT UNDER - BICYCLE,2018-05-22T00:00:00,2018,May,Tuesday,22,142,23,2018-05-23T00:00:00,2018,May,Wednesday,23,143,17,D32,Toronto,105,Lawrence Park North (105),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,HARD ROCK,MT,21,BLK,1000.0,STOLEN,23804,"{'type': 'Point', 'coordinates': (-79.4097706, 43.73368363)}"
-23819,2384,GO-20189015974,THEFT UNDER - BICYCLE,2018-05-22T00:00:00,2018,May,Tuesday,22,142,23,2018-05-23T00:00:00,2018,May,Wednesday,23,143,17,D32,Toronto,105,Lawrence Park North (105),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,HARD ROCK,MT,21,SIL,800.0,STOLEN,23805,"{'type': 'Point', 'coordinates': (-79.4097706, 43.73368363)}"
-23820,2496,GO-20189017878,THEFT UNDER - BICYCLE,2018-06-08T00:00:00,2018,June,Friday,8,159,12,2018-06-08T00:00:00,2018,June,Friday,8,159,13,D32,Toronto,105,Lawrence Park North (105),Bar / Restaurant,Commercial,TR,,MT,21,SIL,1000.0,STOLEN,23806,"{'type': 'Point', 'coordinates': (-79.40416691000001, 43.732898920000004)}"
-23821,2873,GO-20189022824,THEFT UNDER - BICYCLE,2018-07-17T00:00:00,2018,July,Tuesday,17,198,14,2018-07-17T00:00:00,2018,July,Tuesday,17,198,17,D32,Toronto,105,Lawrence Park North (105),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,GI,ROAM 2,RG,30,BLK,790.0,STOLEN,23807,"{'type': 'Point', 'coordinates': (-79.40393857, 43.73188389)}"
-23822,2998,GO-20189024200,THEFT UNDER - BICYCLE,2018-07-23T00:00:00,2018,July,Monday,23,204,1,2018-07-28T00:00:00,2018,July,Saturday,28,209,9,D32,Toronto,105,Lawrence Park North (105),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,URBANE,RG,24,WHI,900.0,STOLEN,23808,"{'type': 'Point', 'coordinates': (-79.41512177, 43.73061829)}"
-23823,3258,GO-20181523337,THEFT UNDER - BICYCLE,2018-05-01T00:00:00,2018,May,Tuesday,1,121,9,2018-08-18T00:00:00,2018,August,Saturday,18,230,6,D32,Toronto,105,Lawrence Park North (105),"Apartment (Rooming House, Condo)",Apartment,SPORTEK,CRUISER,OT,5,REDBLK,200.0,STOLEN,23809,"{'type': 'Point', 'coordinates': (-79.40279824, 43.72743409)}"
-23824,3487,GO-20189030722,THEFT UNDER - BICYCLE,2018-09-14T00:00:00,2018,September,Friday,14,257,23,2018-09-16T00:00:00,2018,September,Sunday,16,259,18,D32,Toronto,105,Lawrence Park North (105),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,,MT,21,BLK,350.0,STOLEN,23810,"{'type': 'Point', 'coordinates': (-79.40790275, 43.73213392)}"
-23825,3653,GO-20189033494,THEFT UNDER - BICYCLE,2018-09-26T00:00:00,2018,September,Wednesday,26,269,9,2018-10-10T00:00:00,2018,October,Wednesday,10,283,14,D32,Toronto,105,Lawrence Park North (105),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,MT,8,,700.0,STOLEN,23811,"{'type': 'Point', 'coordinates': (-79.40279824, 43.72743409)}"
-23826,4220,GO-2019242567,B&E,2019-04-29T00:00:00,2019,April,Monday,29,119,19,2019-04-30T00:00:00,2019,April,Tuesday,30,120,11,D32,Toronto,105,Lawrence Park North (105),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,PINARELLO,RC,11,,120000.0,STOLEN,23812,"{'type': 'Point', 'coordinates': (-79.40396347, 43.73197566)}"
-23827,4334,GO-2019393310,THEFT UNDER,2019-05-20T00:00:00,2019,May,Monday,20,140,12,2019-05-24T00:00:00,2019,May,Friday,24,144,12,D32,Toronto,105,Lawrence Park North (105),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,,OT,2,,400.0,STOLEN,23813,"{'type': 'Point', 'coordinates': (-79.41332868, 43.72616582)}"
-23828,4342,GO-2019955251,B&E,2019-05-16T00:00:00,2019,May,Thursday,16,136,17,2019-05-25T00:00:00,2019,May,Saturday,25,145,13,D32,Toronto,105,Lawrence Park North (105),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OPUS,PRIME 2,MT,0,BLKRED,5000.0,STOLEN,23814,"{'type': 'Point', 'coordinates': (-79.40619319, 43.7276634)}"
-23829,4343,GO-2019955251,B&E,2019-05-16T00:00:00,2019,May,Thursday,16,136,17,2019-05-25T00:00:00,2019,May,Saturday,25,145,13,D32,Toronto,105,Lawrence Park North (105),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CANNONDALE,TRIGGER TEAM,MT,0,BLKGRN,9600.0,STOLEN,23815,"{'type': 'Point', 'coordinates': (-79.40619319, 43.7276634)}"
-23830,4344,GO-2019955251,B&E,2019-05-16T00:00:00,2019,May,Thursday,16,136,17,2019-05-25T00:00:00,2019,May,Saturday,25,145,13,D32,Toronto,105,Lawrence Park North (105),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SCOTT,SCALE,MT,0,GRNBLK,600.0,STOLEN,23816,"{'type': 'Point', 'coordinates': (-79.40619319, 43.7276634)}"
-23831,4580,GO-20199019617,THEFT UNDER - BICYCLE,2019-06-20T00:00:00,2019,June,Thursday,20,171,15,2019-06-21T00:00:00,2019,June,Friday,21,172,21,D32,Toronto,105,Lawrence Park North (105),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,OT,21,BLK,900.0,STOLEN,23817,"{'type': 'Point', 'coordinates': (-79.40279824, 43.72743409)}"
-23832,4830,GO-20191375613,THEFT UNDER - BICYCLE,2019-07-22T00:00:00,2019,July,Monday,22,203,0,2019-07-22T00:00:00,2019,July,Monday,22,203,12,D32,Toronto,105,Lawrence Park North (105),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,,MT,21,PLE,600.0,STOLEN,23818,"{'type': 'Point', 'coordinates': (-79.40054404, 43.72688629)}"
-23833,5035,GO-20199051786,THEFT UNDER - BICYCLE,2019-08-12T00:00:00,2019,August,Monday,12,224,8,2019-08-12T00:00:00,2019,August,Monday,12,224,8,D32,Toronto,105,Lawrence Park North (105),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CRUX FORCECYCLO,RC,12,BLK,4000.0,STOLEN,23819,"{'type': 'Point', 'coordinates': (-79.40279824, 43.72743409)}"
-23834,5256,GO-20199029005,THEFT UNDER - BICYCLE,2019-09-05T00:00:00,2019,September,Thursday,5,248,20,2019-09-06T00:00:00,2019,September,Friday,6,249,16,D32,Toronto,105,Lawrence Park North (105),Convenience Stores,Commercial,CC,PRESTO,OT,21,RED,150.0,STOLEN,23820,"{'type': 'Point', 'coordinates': (-79.40290305, 43.72783606)}"
-23835,5406,GO-20199031542,THEFT UNDER,2019-09-24T00:00:00,2019,September,Tuesday,24,267,21,2019-09-25T00:00:00,2019,September,Wednesday,25,268,19,D32,Toronto,105,Lawrence Park North (105),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,SC,1,BLK,100.0,STOLEN,23821,"{'type': 'Point', 'coordinates': (-79.40046386, 43.72912187)}"
-23836,5470,GO-20199032657,THEFT UNDER - BICYCLE,2019-10-04T00:00:00,2019,October,Friday,4,277,11,2019-10-05T00:00:00,2019,October,Saturday,5,278,12,D32,Toronto,105,Lawrence Park North (105),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,MENS,MT,18,BLK,750.0,STOLEN,23822,"{'type': 'Point', 'coordinates': (-79.4067524, 43.72924358)}"
-23837,5471,GO-20199032657,THEFT UNDER - BICYCLE,2019-10-04T00:00:00,2019,October,Friday,4,277,11,2019-10-05T00:00:00,2019,October,Saturday,5,278,12,D32,Toronto,105,Lawrence Park North (105),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,AVALANCHE ELITE,MT,18,BLK,750.0,STOLEN,23823,"{'type': 'Point', 'coordinates': (-79.4067524, 43.72924358)}"
-23838,5730,GO-20199039000,THEFT UNDER - BICYCLE,2019-11-23T00:00:00,2019,November,Saturday,23,327,11,2019-11-27T00:00:00,2019,November,Wednesday,27,331,11,D32,Toronto,105,Lawrence Park North (105),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,CHANCE,RG,11,RED,1700.0,STOLEN,23824,"{'type': 'Point', 'coordinates': (-79.40729568, 43.73489232)}"
-23839,6066,GO-2020725984,THEFT UNDER - BICYCLE,2020-04-14T00:00:00,2020,April,Tuesday,14,105,22,2020-04-15T00:00:00,2020,April,Wednesday,15,106,16,D32,Toronto,105,Lawrence Park North (105),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,1000,RC,18,ONG,850.0,STOLEN,23825,"{'type': 'Point', 'coordinates': (-79.40396347, 43.73197566)}"
-23840,6131,GO-20209012395,THEFT UNDER,2020-04-11T00:00:00,2020,April,Saturday,11,102,11,2020-05-03T00:00:00,2020,May,Sunday,3,124,18,D32,Toronto,105,Lawrence Park North (105),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,MT,21,GRY,0.0,STOLEN,23826,"{'type': 'Point', 'coordinates': (-79.40232342, 43.7256789)}"
-23841,6133,GO-20209012406,THEFT UNDER - BICYCLE,2020-05-02T00:00:00,2020,May,Saturday,2,123,20,2020-05-03T00:00:00,2020,May,Sunday,3,124,20,D32,Toronto,105,Lawrence Park North (105),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,VR6,RG,21,MRN,700.0,STOLEN,23827,"{'type': 'Point', 'coordinates': (-79.41473799, 43.72962337)}"
-23842,6143,GO-20209012524,THEFT UNDER,2020-05-04T00:00:00,2020,May,Monday,4,125,23,2020-05-05T00:00:00,2020,May,Tuesday,5,126,15,D32,Toronto,105,Lawrence Park North (105),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,SC,1,BLK,80.0,STOLEN,23828,"{'type': 'Point', 'coordinates': (-79.40999107, 43.72686984)}"
-23843,6144,GO-20209012524,THEFT UNDER,2020-05-04T00:00:00,2020,May,Monday,4,125,23,2020-05-05T00:00:00,2020,May,Tuesday,5,126,15,D32,Toronto,105,Lawrence Park North (105),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,SC,1,WHI,0.0,STOLEN,23829,"{'type': 'Point', 'coordinates': (-79.40999107, 43.72686984)}"
-23844,6324,GO-20201059890,THEFT UNDER - BICYCLE,2020-06-09T00:00:00,2020,June,Tuesday,9,161,10,2020-06-09T00:00:00,2020,June,Tuesday,9,161,10,D32,Toronto,105,Lawrence Park North (105),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,TREK,,RG,0,BLK,800.0,STOLEN,23830,"{'type': 'Point', 'coordinates': (-79.40330859, 43.72943143)}"
-23845,6356,GO-20201076537,THEFT UNDER - BICYCLE,2020-06-10T00:00:00,2020,June,Wednesday,10,162,18,2020-06-11T00:00:00,2020,June,Thursday,11,163,18,D32,Toronto,105,Lawrence Park North (105),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DEVINCI,HEX DEORE,OT,21,DBL,1337.0,STOLEN,23831,"{'type': 'Point', 'coordinates': (-79.40964909, 43.72600094)}"
-23846,6622,GO-20201311008,THEFT UNDER - BICYCLE,2020-07-14T00:00:00,2020,July,Tuesday,14,196,4,2020-07-15T00:00:00,2020,July,Wednesday,15,197,9,D32,Toronto,105,Lawrence Park North (105),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,CLOCHE COMFORT,BM,21,SIL,300.0,STOLEN,23832,"{'type': 'Point', 'coordinates': (-79.40790275, 43.73213392)}"
-23847,6623,GO-20201311008,THEFT UNDER - BICYCLE,2020-07-14T00:00:00,2020,July,Tuesday,14,196,4,2020-07-15T00:00:00,2020,July,Wednesday,15,197,9,D32,Toronto,105,Lawrence Park North (105),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MONGOOSE,BOOSTER FREESTY,BM,0,SILGRN,170.0,STOLEN,23833,"{'type': 'Point', 'coordinates': (-79.40790275, 43.73213392)}"
-23848,6624,GO-20201311008,THEFT UNDER - BICYCLE,2020-07-14T00:00:00,2020,July,Tuesday,14,196,4,2020-07-15T00:00:00,2020,July,Wednesday,15,197,9,D32,Toronto,105,Lawrence Park North (105),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MONGOOSE,,MT,21,SILGRY,550.0,STOLEN,23834,"{'type': 'Point', 'coordinates': (-79.40790275, 43.73213392)}"
-23849,6854,GO-20209019257,THEFT UNDER - BICYCLE,2020-05-27T00:00:00,2020,May,Wednesday,27,148,23,2020-08-03T00:00:00,2020,August,Monday,3,216,14,D32,Toronto,105,Lawrence Park North (105),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,CAADX,RC,22,SIL,2000.0,STOLEN,23835,"{'type': 'Point', 'coordinates': (-79.3908537, 43.72993121)}"
-23850,6941,GO-20201509017,THEFT UNDER - BICYCLE,2020-08-05T00:00:00,2020,August,Wednesday,5,218,19,2020-08-12T00:00:00,2020,August,Wednesday,12,225,13,D32,Toronto,105,Lawrence Park North (105),"Private Property Structure (Pool, Shed, Detached Garage)",Other,ORANGE,STRANGE,MT,21,SIL,,STOLEN,23836,"{'type': 'Point', 'coordinates': (-79.40617817, 43.72585413)}"
-23851,21879,GO-20151039069,THEFT UNDER,2015-06-13T00:00:00,2015,June,Saturday,13,164,16,2015-06-20T00:00:00,2015,June,Saturday,20,171,18,D13,Toronto,101,Forest Hill South (101),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,CROSSTRAIL,MT,21,SIL,1250.0,STOLEN,23837,"{'type': 'Point', 'coordinates': (-79.41544741, 43.689986)}"
-23852,21974,GO-20201665464,B&E,2020-08-29T00:00:00,2020,August,Saturday,29,242,3,2020-09-03T00:00:00,2020,September,Thursday,3,247,13,D13,Toronto,101,Forest Hill South (101),"Apartment (Rooming House, Condo)",Apartment,CANNONDALE,CATALYST,RG,1,RED,500.0,STOLEN,23838,"{'type': 'Point', 'coordinates': (-79.42309954, 43.70150924)}"
-23853,21993,GO-20202321101,B&E,2020-12-07T00:00:00,2020,December,Monday,7,342,22,2020-12-09T00:00:00,2020,December,Wednesday,9,344,9,D13,Toronto,101,Forest Hill South (101),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BMX,20/21,BM,0,BLK,600.0,STOLEN,23839,"{'type': 'Point', 'coordinates': (-79.42026245, 43.68808921)}"
-23854,22467,GO-2020971818,B&E,2020-05-26T00:00:00,2020,May,Tuesday,26,147,0,2020-05-26T00:00:00,2020,May,Tuesday,26,147,17,D53,Toronto,101,Forest Hill South (101),"Apartment (Rooming House, Condo)",Apartment,RALEIGH,REVERE 1,RC,16,ONGTRQ,600.0,STOLEN,23840,"{'type': 'Point', 'coordinates': (-79.41733864, 43.7027204)}"
-23855,24396,GO-20209019529,THEFT UNDER,2020-08-04T00:00:00,2020,August,Tuesday,4,217,19,2020-08-06T00:00:00,2020,August,Thursday,6,219,15,D13,Toronto,101,Forest Hill South (101),"Apartment (Rooming House, Condo)",Apartment,UK,BTWIN,RG,21,BLU,470.0,STOLEN,23841,"{'type': 'Point', 'coordinates': (-79.41434857, 43.68630427)}"
-23856,24402,GO-20209021486,THEFT UNDER,2020-08-24T00:00:00,2020,August,Monday,24,237,8,2020-08-27T00:00:00,2020,August,Thursday,27,240,9,D13,Toronto,101,Forest Hill South (101),"Apartment (Rooming House, Condo)",Apartment,NO,INDIE 3,MT,24,BLU,350.0,STOLEN,23842,"{'type': 'Point', 'coordinates': (-79.41385854, 43.68840164)}"
-23857,18975,GO-20169004353,THEFT UNDER - BICYCLE,2016-05-05T00:00:00,2016,May,Thursday,5,126,15,2016-05-10T00:00:00,2016,May,Tuesday,10,131,15,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,CC,KROSSPORT 700C,RG,21,WHI,350.0,STOLEN,23843,"{'type': 'Point', 'coordinates': (-79.39083961, 43.69949369)}"
-23858,24407,GO-20201973950,B&E,2020-10-17T00:00:00,2020,October,Saturday,17,291,21,2020-10-17T00:00:00,2020,October,Saturday,17,291,21,D13,Toronto,101,Forest Hill South (101),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DJ CITY,,EL,1,WHI,2000.0,STOLEN,23844,"{'type': 'Point', 'coordinates': (-79.41923175, 43.6984271)}"
-23859,24613,GO-20149004509,THEFT UNDER,2014-06-26T00:00:00,2014,June,Thursday,26,177,9,2014-06-30T00:00:00,2014,June,Monday,30,181,10,D13,Toronto,101,Forest Hill South (101),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,SEDONA,MT,21,PLE,200.0,STOLEN,23845,"{'type': 'Point', 'coordinates': (-79.41411669, 43.6890683)}"
-23860,25310,GO-20179008552,THEFT UNDER - BICYCLE,2017-06-19T00:00:00,2017,June,Monday,19,170,22,2017-06-20T00:00:00,2017,June,Tuesday,20,171,16,D13,Toronto,101,Forest Hill South (101),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,NOT SURE,OT,26,CRM,700.0,STOLEN,23846,"{'type': 'Point', 'coordinates': (-79.41262893, 43.68866946)}"
-23861,25358,GO-20199030699,THEFT UNDER - BICYCLE,2019-06-13T00:00:00,2019,June,Thursday,13,164,12,2019-09-19T00:00:00,2019,September,Thursday,19,262,12,D13,Toronto,101,Forest Hill South (101),"Apartment (Rooming House, Condo)",Apartment,TR,,OT,20,RED,700.0,STOLEN,23847,"{'type': 'Point', 'coordinates': (-79.41249171, 43.68433973)}"
-23862,25373,GO-20209016968,THEFT UNDER,2020-07-06T00:00:00,2020,July,Monday,6,188,17,2020-07-06T00:00:00,2020,July,Monday,6,188,18,D13,Toronto,101,Forest Hill South (101),"Apartment (Rooming House, Condo)",Apartment,GI,XTC 1,MT,21,GRY,567.0,STOLEN,23848,"{'type': 'Point', 'coordinates': (-79.4124048, 43.6877695)}"
-23863,25487,GO-20179015387,THEFT UNDER - BICYCLE,2017-09-20T00:00:00,2017,September,Wednesday,20,263,19,2017-09-21T00:00:00,2017,September,Thursday,21,264,15,D53,Toronto,101,Forest Hill South (101),"Apartment (Rooming House, Condo)",Apartment,SC,GRAFT PRO 26,MT,40,YEL,949.0,STOLEN,23849,"{'type': 'Point', 'coordinates': (-79.41101114, 43.69559496)}"
-23864,25536,GO-20189015427,THEFT UNDER - BICYCLE,2018-05-17T00:00:00,2018,May,Thursday,17,137,8,2018-05-18T00:00:00,2018,May,Friday,18,138,14,D53,Toronto,101,Forest Hill South (101),Schools During Supervised Activity,Educational,GT,GT AGGRESSOR CO,MT,21,BLK,500.0,STOLEN,23850,"{'type': 'Point', 'coordinates': (-79.40297702, 43.69078249)}"
-23865,1415,GO-20179014819,THEFT UNDER - BICYCLE,2017-09-14T00:00:00,2017,September,Thursday,14,257,18,2017-09-15T00:00:00,2017,September,Friday,15,258,10,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,,OT,21,,700.0,STOLEN,23851,"{'type': 'Point', 'coordinates': (-79.43114506, 43.70450679)}"
-23866,1521,GO-20179015738,THEFT UNDER - BICYCLE,2017-09-24T00:00:00,2017,September,Sunday,24,267,10,2017-09-25T00:00:00,2017,September,Monday,25,268,15,D13,Toronto,102,Forest Hill North (102),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RA,,RG,21,BLK,1000.0,STOLEN,23852,"{'type': 'Point', 'coordinates': (-79.43343031, 43.70115453)}"
-23867,1579,GO-20179016335,THEFT UNDER - BICYCLE,2017-10-02T00:00:00,2017,October,Monday,2,275,11,2017-10-02T00:00:00,2017,October,Monday,2,275,22,D53,Toronto,102,Forest Hill North (102),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MILANO 2015,OT,21,BLU,550.0,STOLEN,23853,"{'type': 'Point', 'coordinates': (-79.42394687, 43.70568192)}"
-23868,1808,GO-20172005038,THEFT FROM MOTOR VEHICLE UNDER,2017-11-03T00:00:00,2017,November,Friday,3,307,18,2017-11-05T00:00:00,2017,November,Sunday,5,309,17,D53,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,EVO RIVER SPORT,TO,21,SIL,600.0,STOLEN,23854,"{'type': 'Point', 'coordinates': (-79.41793495, 43.70698745)}"
-23869,1830,GO-20172057171,B&E,2017-11-13T00:00:00,2017,November,Monday,13,317,21,2017-11-13T00:00:00,2017,November,Monday,13,317,21,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,UNKNOWN,MT,18,GRY,1000.0,STOLEN,23855,"{'type': 'Point', 'coordinates': (-79.43772499, 43.70051726)}"
-23870,1831,GO-20172057171,B&E,2017-11-13T00:00:00,2017,November,Monday,13,317,21,2017-11-13T00:00:00,2017,November,Monday,13,317,21,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,UNKNOWN,MT,18,BLU,600.0,STOLEN,23856,"{'type': 'Point', 'coordinates': (-79.43772499, 43.70051726)}"
-23871,3547,GO-20189031719,THEFT UNDER - BICYCLE,2018-09-18T00:00:00,2018,September,Tuesday,18,261,18,2018-09-24T00:00:00,2018,September,Monday,24,267,2,D13,Toronto,102,Forest Hill North (102),"Apartment (Rooming House, Condo)",Apartment,UK,LEGACY,MT,21,BLK,500.0,STOLEN,23857,"{'type': 'Point', 'coordinates': (-79.43772499, 43.70051726)}"
-23872,3793,GO-20189036347,THEFT UNDER - BICYCLE,2018-10-29T00:00:00,2018,October,Monday,29,302,19,2018-10-31T00:00:00,2018,October,Wednesday,31,304,9,D13,Toronto,102,Forest Hill North (102),Ttc Subway Station,Transit,MO,,RG,27,BLK,0.0,STOLEN,23858,"{'type': 'Point', 'coordinates': (-79.43597803, 43.69876975)}"
-23873,3816,GO-20181914283,B&E,2018-10-08T00:00:00,2018,October,Monday,8,281,0,2018-10-16T00:00:00,2018,October,Tuesday,16,289,22,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,,OT,0,BLK,,STOLEN,23859,"{'type': 'Point', 'coordinates': (-79.43772499, 43.70051726)}"
-23874,3817,GO-20181914283,B&E,2018-10-08T00:00:00,2018,October,Monday,8,281,0,2018-10-16T00:00:00,2018,October,Tuesday,16,289,22,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,RG,0,PLE,,STOLEN,23860,"{'type': 'Point', 'coordinates': (-79.43772499, 43.70051726)}"
-23875,3818,GO-20181914283,B&E,2018-10-08T00:00:00,2018,October,Monday,8,281,0,2018-10-16T00:00:00,2018,October,Tuesday,16,289,22,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,,MT,0,BLK,,STOLEN,23861,"{'type': 'Point', 'coordinates': (-79.43772499, 43.70051726)}"
-23876,4440,GO-20199017989,THEFT UNDER,2019-06-08T00:00:00,2019,June,Saturday,8,159,15,2019-06-10T00:00:00,2019,June,Monday,10,161,0,D13,Toronto,102,Forest Hill North (102),Ttc Subway Station,Transit,UK,,RG,7,WHI,300.0,STOLEN,23862,"{'type': 'Point', 'coordinates': (-79.43597803, 43.69876975)}"
-23877,4852,GO-20191388635,THEFT UNDER - BICYCLE,2019-07-22T00:00:00,2019,July,Monday,22,203,17,2019-07-24T00:00:00,2019,July,Wednesday,24,205,7,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,TIME FRAME,RG,0,BLKRED,3000.0,STOLEN,23863,"{'type': 'Point', 'coordinates': (-79.43114506, 43.70450679)}"
-23878,4899,GO-20199024008,THEFT UNDER,2019-07-27T00:00:00,2019,July,Saturday,27,208,9,2019-07-27T00:00:00,2019,July,Saturday,27,208,13,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,FX2,RG,24,LBL,850.0,STOLEN,23864,"{'type': 'Point', 'coordinates': (-79.43377321, 43.7019582)}"
-23879,5182,GO-20191636171,B&E,2019-08-21T00:00:00,2019,August,Wednesday,21,233,0,2019-08-27T00:00:00,2019,August,Tuesday,27,239,15,D13,Toronto,102,Forest Hill North (102),"Construction Site (Warehouse, Trailer, Shed)",Commercial,MEC,MIDTOWN,OT,18,BLK,800.0,STOLEN,23865,"{'type': 'Point', 'coordinates': (-79.43825268000002, 43.7017684)}"
-23880,5314,GO-20191761321,THEFT UNDER - BICYCLE,2019-09-12T00:00:00,2019,September,Thursday,12,255,18,2019-09-13T00:00:00,2019,September,Friday,13,256,20,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,YD-B18/1307A/57,RG,6,,,STOLEN,23866,"{'type': 'Point', 'coordinates': (-79.43837112, 43.69848978)}"
-23881,5315,GO-20191761321,THEFT UNDER - BICYCLE,2019-09-12T00:00:00,2019,September,Thursday,12,255,18,2019-09-13T00:00:00,2019,September,Friday,13,256,20,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,MT,6,,,STOLEN,23867,"{'type': 'Point', 'coordinates': (-79.43837112, 43.69848978)}"
-23882,5399,GO-20199031476,THEFT UNDER - BICYCLE,2019-09-25T00:00:00,2019,September,Wednesday,25,268,9,2019-09-25T00:00:00,2019,September,Wednesday,25,268,13,D53,Toronto,102,Forest Hill North (102),Schools During Un-Supervised Activity,Educational,GI,TALON 4 27.5,MT,7,SIL,600.0,STOLEN,23868,"{'type': 'Point', 'coordinates': (-79.42236728, 43.70289495)}"
-23883,5691,GO-20192198412,B&E,2019-11-14T00:00:00,2019,November,Thursday,14,318,4,2019-11-14T00:00:00,2019,November,Thursday,14,318,9,D53,Toronto,102,Forest Hill North (102),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SEGWAY,NINEBOT ES4,EL,6,,1000.0,STOLEN,23869,"{'type': 'Point', 'coordinates': (-79.42068868, 43.70738095)}"
-23884,5974,GO-2020561689,THEFT UNDER - BICYCLE,2020-03-01T00:00:00,2020,March,Sunday,1,61,0,2020-03-18T00:00:00,2020,March,Wednesday,18,78,17,D53,Toronto,102,Forest Hill North (102),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SCOTT,SCALE 970X1,MT,21,BLKYEL,999.0,STOLEN,23870,"{'type': 'Point', 'coordinates': (-79.42394687, 43.70568192)}"
-23885,5975,GO-2020561689,THEFT UNDER - BICYCLE,2020-03-01T00:00:00,2020,March,Sunday,1,61,0,2020-03-18T00:00:00,2020,March,Wednesday,18,78,17,D53,Toronto,102,Forest Hill North (102),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SCOTT,ASPECT 16 920LG,MT,21,BLUBLK,1200.0,STOLEN,23871,"{'type': 'Point', 'coordinates': (-79.42394687, 43.70568192)}"
-23886,6027,GO-20209010556,THEFT UNDER,2020-04-05T00:00:00,2020,April,Sunday,5,96,17,2020-04-06T00:00:00,2020,April,Monday,6,97,12,D53,Toronto,102,Forest Hill North (102),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,HU,,RG,10,WHI,500.0,STOLEN,23872,"{'type': 'Point', 'coordinates': (-79.42563475, 43.70160093)}"
-23887,6383,GO-20209015327,THEFT UNDER,2020-01-01T00:00:00,2020,January,Wednesday,1,1,0,2020-06-13T00:00:00,2020,June,Saturday,13,165,22,D13,Toronto,102,Forest Hill North (102),"Apartment (Rooming House, Condo)",Apartment,NO,VFR FORMA,RG,24,GRY,800.0,STOLEN,23873,"{'type': 'Point', 'coordinates': (-79.42659687, 43.70621473)}"
-23888,6440,GO-20201151717,B&E,2020-06-22T00:00:00,2020,June,Monday,22,174,15,2020-06-22T00:00:00,2020,June,Monday,22,174,21,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,NAVIG,MT,10,BLU,1500.0,STOLEN,23874,"{'type': 'Point', 'coordinates': (-79.43233683, 43.70312684)}"
-23889,6555,GO-20209017054,THEFT UNDER - BICYCLE,2020-07-01T00:00:00,2020,July,Wednesday,1,183,9,2020-07-07T00:00:00,2020,July,Tuesday,7,189,19,D53,Toronto,102,Forest Hill North (102),"Apartment (Rooming House, Condo)",Apartment,OT,ORBITA,MT,18,WHI,400.0,STOLEN,23875,"{'type': 'Point', 'coordinates': (-79.42205201, 43.70173807)}"
-23890,6973,GO-20201544492,B&E,2020-08-14T00:00:00,2020,August,Friday,14,227,23,2020-08-17T00:00:00,2020,August,Monday,17,230,13,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,SWORKS,RC,0,BLKRED,,STOLEN,23876,"{'type': 'Point', 'coordinates': (-79.43201632, 43.70232545)}"
-23891,7078,GO-20201600726,B&E,2020-08-24T00:00:00,2020,August,Monday,24,237,18,2020-08-25T00:00:00,2020,August,Tuesday,25,238,15,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FOCUS,,RC,21,BLKRED,3000.0,STOLEN,23877,"{'type': 'Point', 'coordinates': (-79.43114506, 43.70450679)}"
-23892,7079,GO-20201600726,B&E,2020-08-24T00:00:00,2020,August,Monday,24,237,18,2020-08-25T00:00:00,2020,August,Tuesday,25,238,15,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KONA,DR LEW,RG,21,GRYYEL,500.0,STOLEN,23878,"{'type': 'Point', 'coordinates': (-79.43114506, 43.70450679)}"
-23893,7139,GO-20201643900,B&E,2020-08-29T00:00:00,2020,August,Saturday,29,242,9,2020-08-31T00:00:00,2020,August,Monday,31,244,23,D13,Toronto,102,Forest Hill North (102),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,,MT,21,BLK,1000.0,STOLEN,23879,"{'type': 'Point', 'coordinates': (-79.43344225, 43.703963550000005)}"
-23894,7155,GO-20201609268,B&E,2020-08-15T00:00:00,2020,August,Saturday,15,228,0,2020-08-26T00:00:00,2020,August,Wednesday,26,239,14,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,MT,0,TRQ,,UNKNOWN,23880,"{'type': 'Point', 'coordinates': (-79.42821444, 43.70596097)}"
-23895,7240,GO-20201734638,B&E,2020-09-12T00:00:00,2020,September,Saturday,12,256,22,2020-09-13T00:00:00,2020,September,Sunday,13,257,13,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,CROSSTRAIL,RG,0,BLU,500.0,STOLEN,23881,"{'type': 'Point', 'coordinates': (-79.44057053, 43.70108497)}"
-23896,7429,GO-20201915909,B&E,2020-10-09T00:00:00,2020,October,Friday,9,283,5,2020-10-09T00:00:00,2020,October,Friday,9,283,5,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,JAMIS,,MT,12,GRN,500.0,STOLEN,23882,"{'type': 'Point', 'coordinates': (-79.44057053, 43.70108497)}"
-23897,8121,GO-20149004011,THEFT FROM MOTOR VEHICLE UNDER,2014-06-10T00:00:00,2014,June,Tuesday,10,161,0,2014-06-12T00:00:00,2014,June,Thursday,12,163,10,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RM,,MT,21,BLK,1000.0,STOLEN,23883,"{'type': 'Point', 'coordinates': (-79.43689599000001, 43.70213428)}"
-23898,8955,GO-20142968353,THEFT UNDER,2014-09-17T00:00:00,2014,September,Wednesday,17,260,12,2014-09-23T00:00:00,2014,September,Tuesday,23,266,16,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,XTC 29ER,MT,21,WHIBLK,1900.0,STOLEN,23884,"{'type': 'Point', 'coordinates': (-79.42825751, 43.7022575)}"
-23899,8956,GO-20142968353,THEFT UNDER,2014-09-17T00:00:00,2014,September,Wednesday,17,260,12,2014-09-23T00:00:00,2014,September,Tuesday,23,266,16,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,9700 SERIES,MT,21,WHI,900.0,STOLEN,23885,"{'type': 'Point', 'coordinates': (-79.42825751, 43.7022575)}"
-23900,9011,GO-20143030195,THEFT UNDER,2014-09-30T00:00:00,2014,September,Tuesday,30,273,23,2014-10-02T00:00:00,2014,October,Thursday,2,275,19,D13,Toronto,102,Forest Hill North (102),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,LECTOR,MT,30,GRY,2000.0,STOLEN,23886,"{'type': 'Point', 'coordinates': (-79.43310285, 43.700312700000005)}"
-23901,9012,GO-20143030195,THEFT UNDER,2014-09-30T00:00:00,2014,September,Tuesday,30,273,23,2014-10-02T00:00:00,2014,October,Thursday,2,275,19,D13,Toronto,102,Forest Hill North (102),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GT,ROAD BIKE,RC,18,YEL,1000.0,STOLEN,23887,"{'type': 'Point', 'coordinates': (-79.43310285, 43.700312700000005)}"
-23902,9050,GO-20143096445,THEFT OVER,2014-10-08T00:00:00,2014,October,Wednesday,8,281,20,2014-10-13T00:00:00,2014,October,Monday,13,286,14,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,ARIEL DISC,MT,0,WHI,800.0,STOLEN,23888,"{'type': 'Point', 'coordinates': (-79.43806431, 43.70044695)}"
-23903,9051,GO-20143096445,THEFT OVER,2014-10-08T00:00:00,2014,October,Wednesday,8,281,20,2014-10-13T00:00:00,2014,October,Monday,13,286,14,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,STUMPJUMPER COM,MT,0,BLKYEL,2500.0,STOLEN,23889,"{'type': 'Point', 'coordinates': (-79.43806431, 43.70044695)}"
-23904,9052,GO-20143096445,THEFT OVER,2014-10-08T00:00:00,2014,October,Wednesday,8,281,20,2014-10-13T00:00:00,2014,October,Monday,13,286,14,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,LUSH SL,MT,0,GRYWHI,3500.0,STOLEN,23890,"{'type': 'Point', 'coordinates': (-79.43806431, 43.70044695)}"
-23905,9069,GO-20143114256,THEFT UNDER,2014-10-16T00:00:00,2014,October,Thursday,16,289,7,2014-10-16T00:00:00,2014,October,Thursday,16,289,11,D13,Toronto,102,Forest Hill North (102),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RALEIGH,,MT,15,GRY,600.0,STOLEN,23891,"{'type': 'Point', 'coordinates': (-79.44057053, 43.70108497)}"
-23906,9070,GO-20143114256,THEFT UNDER,2014-10-16T00:00:00,2014,October,Thursday,16,289,7,2014-10-16T00:00:00,2014,October,Thursday,16,289,11,D13,Toronto,102,Forest Hill North (102),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CCM,,MT,15,BLU,350.0,STOLEN,23892,"{'type': 'Point', 'coordinates': (-79.44057053, 43.70108497)}"
-23907,9081,GO-20149007680,THEFT UNDER,2014-10-12T00:00:00,2014,October,Sunday,12,285,22,2014-10-19T00:00:00,2014,October,Sunday,19,292,14,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,,MT,12,ONG,500.0,STOLEN,23893,"{'type': 'Point', 'coordinates': (-79.43310285, 43.700312700000005)}"
-23908,9082,GO-20149007680,THEFT UNDER,2014-10-12T00:00:00,2014,October,Sunday,12,285,22,2014-10-19T00:00:00,2014,October,Sunday,19,292,14,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,MT,12,,300.0,STOLEN,23894,"{'type': 'Point', 'coordinates': (-79.43310285, 43.700312700000005)}"
-23909,9102,GO-20143152503,B&E,2014-10-19T00:00:00,2014,October,Sunday,19,292,18,2014-10-22T00:00:00,2014,October,Wednesday,22,295,11,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,CITY BIKE,OT,18,YEL,350.0,STOLEN,23895,"{'type': 'Point', 'coordinates': (-79.43201632, 43.70232545)}"
-23910,9305,GO-2015368071,THEFT UNDER,2015-03-01T00:00:00,2015,March,Sunday,1,60,11,2015-03-04T00:00:00,2015,March,Wednesday,4,63,15,D13,Toronto,102,Forest Hill North (102),Ttc Subway Station,Transit,RALEIGH,,OT,5,BLU,,UNKNOWN,23896,"{'type': 'Point', 'coordinates': (-79.43597803, 43.69876975)}"
-23911,9374,GO-2015568150,THEFT FROM MOTOR VEHICLE UNDER,2015-04-03T00:00:00,2015,April,Friday,3,93,17,2015-04-06T00:00:00,2015,April,Monday,6,96,11,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RAZOR,,SC,0,BRN,300.0,STOLEN,23897,"{'type': 'Point', 'coordinates': (-79.42859778, 43.70306294)}"
-23912,9410,GO-20159001952,THEFT UNDER,2015-04-15T00:00:00,2015,April,Wednesday,15,105,2,2015-04-15T00:00:00,2015,April,Wednesday,15,105,19,D13,Toronto,102,Forest Hill North (102),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,3500,MT,21,BLK,550.0,STOLEN,23898,"{'type': 'Point', 'coordinates': (-79.43093827, 43.70707598)}"
-23913,9414,GO-2015628071,B&E,2015-04-15T00:00:00,2015,April,Wednesday,15,105,18,2015-04-16T00:00:00,2015,April,Thursday,16,106,10,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,WOLVERINE,RG,0,WHI,600.0,STOLEN,23899,"{'type': 'Point', 'coordinates': (-79.43453827, 43.70368845)}"
-23914,9415,GO-2015628071,B&E,2015-04-15T00:00:00,2015,April,Wednesday,15,105,18,2015-04-16T00:00:00,2015,April,Thursday,16,106,10,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,WOLVERINE,RG,0,WHI,,STOLEN,23900,"{'type': 'Point', 'coordinates': (-79.43453827, 43.70368845)}"
-23915,9484,GO-2015696151,THEFT OVER,2015-04-26T00:00:00,2015,April,Sunday,26,116,12,2015-04-27T00:00:00,2015,April,Monday,27,117,12,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MARINONI,SPORTIVO,OT,22,SIL,8500.0,STOLEN,23901,"{'type': 'Point', 'coordinates': (-79.42792152, 43.70141873)}"
-23916,9485,GO-2015696151,THEFT OVER,2015-04-26T00:00:00,2015,April,Sunday,26,116,12,2015-04-27T00:00:00,2015,April,Monday,27,117,12,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MARINONI,SPORTIVO,OT,30,SIL,9000.0,STOLEN,23902,"{'type': 'Point', 'coordinates': (-79.42792152, 43.70141873)}"
-23917,9487,GO-2015700822,B&E,2015-04-27T00:00:00,2015,April,Monday,27,117,20,2015-04-28T00:00:00,2015,April,Tuesday,28,118,7,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,INDIE,MT,21,PNK,802.0,STOLEN,23903,"{'type': 'Point', 'coordinates': (-79.43825268000002, 43.7017684)}"
-23918,9514,GO-20159002415,THEFT UNDER,2015-05-01T00:00:00,2015,May,Friday,1,121,19,2015-05-03T00:00:00,2015,May,Sunday,3,123,15,D13,Toronto,102,Forest Hill North (102),"Private Property Structure (Pool, Shed, Detached Garage)",Other,IN,,RG,9,SIL,395.0,STOLEN,23904,"{'type': 'Point', 'coordinates': (-79.43453827, 43.70368845)}"
-23919,9516,GO-20159002416,THEFT UNDER,2015-05-02T00:00:00,2015,May,Saturday,2,122,19,2015-05-03T00:00:00,2015,May,Sunday,3,123,17,D13,Toronto,102,Forest Hill North (102),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KH,URBAN X-PRESS,RG,18,SIL,655.0,STOLEN,23905,"{'type': 'Point', 'coordinates': (-79.43343031, 43.70115453)}"
-23920,9517,GO-20159002416,THEFT UNDER,2015-05-02T00:00:00,2015,May,Saturday,2,122,19,2015-05-03T00:00:00,2015,May,Sunday,3,123,17,D13,Toronto,102,Forest Hill North (102),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,CAD5,RC,18,BLU,800.0,STOLEN,23906,"{'type': 'Point', 'coordinates': (-79.43343031, 43.70115453)}"
-23921,9571,GO-2015800828,B&E W'INTENT,2015-05-09T00:00:00,2015,May,Saturday,9,129,23,2015-05-13T00:00:00,2015,May,Wednesday,13,133,22,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,ROAD WARRIOR 80,RC,18,GRY,1600.0,STOLEN,23907,"{'type': 'Point', 'coordinates': (-79.43521845, 43.70535339)}"
-23922,9665,GO-2015886713,B&E,2015-05-24T00:00:00,2015,May,Sunday,24,144,19,2015-05-27T00:00:00,2015,May,Wednesday,27,147,19,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,TRAVELLER,RG,3,SIL,500.0,STOLEN,23908,"{'type': 'Point', 'coordinates': (-79.43453827, 43.70368845)}"
-23923,9679,GO-2015896167,B&E,2015-05-03T00:00:00,2015,May,Sunday,3,123,12,2015-05-29T00:00:00,2015,May,Friday,29,149,8,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FONDRIEST,MEGA,RC,16,BLK,6000.0,STOLEN,23909,"{'type': 'Point', 'coordinates': (-79.43521845, 43.70535339)}"
-23924,9698,GO-20159003238,THEFT UNDER,2015-05-31T00:00:00,2015,May,Sunday,31,151,17,2015-06-01T00:00:00,2015,June,Monday,1,152,9,D13,Toronto,102,Forest Hill North (102),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,MT,18,BLK,600.0,STOLEN,23910,"{'type': 'Point', 'coordinates': (-79.43310285, 43.700312700000005)}"
-23925,9699,GO-20159003238,THEFT UNDER,2015-05-31T00:00:00,2015,May,Sunday,31,151,17,2015-06-01T00:00:00,2015,June,Monday,1,152,9,D13,Toronto,102,Forest Hill North (102),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,MT,18,BLK,600.0,STOLEN,23911,"{'type': 'Point', 'coordinates': (-79.43310285, 43.700312700000005)}"
-23926,9733,GO-2015878765,THEFT UNDER,2015-05-26T00:00:00,2015,May,Tuesday,26,146,11,2015-05-26T00:00:00,2015,May,Tuesday,26,146,15,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,BM,10,,,STOLEN,23912,"{'type': 'Point', 'coordinates': (-79.43499308, 43.69899055)}"
-23927,9734,GO-2015878765,THEFT UNDER,2015-05-26T00:00:00,2015,May,Tuesday,26,146,11,2015-05-26T00:00:00,2015,May,Tuesday,26,146,15,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,10,,,STOLEN,23913,"{'type': 'Point', 'coordinates': (-79.43499308, 43.69899055)}"
-23928,9735,GO-20159003377,THEFT UNDER,2015-06-05T00:00:00,2015,June,Friday,5,156,22,2015-06-06T00:00:00,2015,June,Saturday,6,157,10,D13,Toronto,102,Forest Hill North (102),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,,RG,10,GRY,750.0,STOLEN,23914,"{'type': 'Point', 'coordinates': (-79.43343031, 43.70115453)}"
-23929,18991,GO-20169005919,THEFT UNDER - BICYCLE,2016-06-15T00:00:00,2016,June,Wednesday,15,167,16,2016-06-16T00:00:00,2016,June,Thursday,16,168,16,D53,Toronto,104,Mount Pleasant West (104),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MODENA,RG,21,WHI,350.0,STOLEN,23915,"{'type': 'Point', 'coordinates': (-79.38670348000001, 43.69930064)}"
-23930,19044,GO-20161753234,THEFT UNDER - BICYCLE,2016-10-02T00:00:00,2016,October,Sunday,2,276,15,2016-10-02T00:00:00,2016,October,Sunday,2,276,19,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,"ALEX""""",MT,18,ONG,,STOLEN,23916,"{'type': 'Point', 'coordinates': (-79.39325386, 43.70907306)}"
-23931,19048,GO-20161802449,THEFT UNDER - BICYCLE,2016-09-24T00:00:00,2016,September,Saturday,24,268,12,2016-10-10T00:00:00,2016,October,Monday,10,284,14,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,CANNONDALE,,OT,14,BLKRED,3000.0,STOLEN,23917,"{'type': 'Point', 'coordinates': (-79.398957, 43.70958457)}"
-23932,19055,GO-20161903066,THEFT UNDER - BICYCLE,2016-10-07T00:00:00,2016,October,Friday,7,281,10,2016-10-26T00:00:00,2016,October,Wednesday,26,300,15,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,TREK,,MT,24,WHI,,RECOVERED,23918,"{'type': 'Point', 'coordinates': (-79.398957, 43.70958457)}"
-23933,19056,GO-20161903066,THEFT UNDER - BICYCLE,2016-10-07T00:00:00,2016,October,Friday,7,281,10,2016-10-26T00:00:00,2016,October,Wednesday,26,300,15,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OTHER,,OT,24,,,RECOVERED,23919,"{'type': 'Point', 'coordinates': (-79.398957, 43.70958457)}"
-23934,19066,GO-201719075,B&E,2017-01-04T00:00:00,2017,January,Wednesday,4,4,12,2017-01-04T00:00:00,2017,January,Wednesday,4,4,12,D53,Toronto,104,Mount Pleasant West (104),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TREK,MADONE 9.2C,RC,21,BLK,6000.0,STOLEN,23920,"{'type': 'Point', 'coordinates': (-79.39690117, 43.70259578)}"
-23935,19067,GO-201719075,B&E,2017-01-04T00:00:00,2017,January,Wednesday,4,4,12,2017-01-04T00:00:00,2017,January,Wednesday,4,4,12,D53,Toronto,104,Mount Pleasant West (104),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TREK,STACHE 5,MT,21,BLK,2000.0,STOLEN,23921,"{'type': 'Point', 'coordinates': (-79.39690117, 43.70259578)}"
-23936,19068,GO-201719075,B&E,2017-01-04T00:00:00,2017,January,Wednesday,4,4,12,2017-01-04T00:00:00,2017,January,Wednesday,4,4,12,D53,Toronto,104,Mount Pleasant West (104),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TREK,FUEL EX 7,MT,21,RED,3200.0,STOLEN,23922,"{'type': 'Point', 'coordinates': (-79.39690117, 43.70259578)}"
-23937,19095,GO-20179009284,THEFT UNDER - BICYCLE,2017-07-02T00:00:00,2017,July,Sunday,2,183,16,2017-07-02T00:00:00,2017,July,Sunday,2,183,16,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,STORM 9.1,MT,21,GRY,530.0,STOLEN,23923,"{'type': 'Point', 'coordinates': (-79.39061698, 43.70961667000001)}"
-23938,19103,GO-20179012477,THEFT UNDER - BICYCLE,2017-08-15T00:00:00,2017,August,Tuesday,15,227,11,2017-08-15T00:00:00,2017,August,Tuesday,15,227,17,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GT,KARAKORAM ELITE,MT,27,BLK,950.0,STOLEN,23924,"{'type': 'Point', 'coordinates': (-79.38959964, 43.69974904)}"
-23939,19104,GO-20179012477,THEFT UNDER - BICYCLE,2017-08-15T00:00:00,2017,August,Tuesday,15,227,11,2017-08-15T00:00:00,2017,August,Tuesday,15,227,17,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GT,KARAKORAM SPORT,MT,27,BLK,700.0,STOLEN,23925,"{'type': 'Point', 'coordinates': (-79.38959964, 43.69974904)}"
-23940,19111,GO-20179014054,FTC PROBATION ORDER,2017-09-05T00:00:00,2017,September,Tuesday,5,248,12,2017-09-05T00:00:00,2017,September,Tuesday,5,248,16,D53,Toronto,104,Mount Pleasant West (104),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,WSD,RG,7,WHI,650.0,STOLEN,23926,"{'type': 'Point', 'coordinates': (-79.39409295, 43.70760244)}"
-23941,19132,GO-20179020407,THEFT UNDER - BICYCLE,2017-11-13T00:00:00,2017,November,Monday,13,317,8,2017-11-23T00:00:00,2017,November,Thursday,23,327,20,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RC,21,OTH,750.0,STOLEN,23927,"{'type': 'Point', 'coordinates': (-79.39146025, 43.70813555)}"
-23942,19151,GO-20189011048,THEFT UNDER - BICYCLE,2018-04-09T00:00:00,2018,April,Monday,9,99,18,2018-04-09T00:00:00,2018,April,Monday,9,99,18,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OT,OPUS ALLEGRO 3,RC,20,BLK,2394.0,STOLEN,23928,"{'type': 'Point', 'coordinates': (-79.39409295, 43.70760244)}"
-23943,19161,GO-2018923094,B&E,2018-05-16T00:00:00,2018,May,Wednesday,16,136,18,2018-05-22T00:00:00,2018,May,Tuesday,22,142,17,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,BMC,SLO1,RC,21,WHIONG,1800.0,STOLEN,23929,"{'type': 'Point', 'coordinates': (-79.39455077, 43.70501949)}"
-23944,19190,GO-20189025961,THEFT UNDER - BICYCLE,2018-08-07T00:00:00,2018,August,Tuesday,7,219,2,2018-08-11T00:00:00,2018,August,Saturday,11,223,12,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,EM,E-BIKE,EL,30,PNK,979.0,STOLEN,23930,"{'type': 'Point', 'coordinates': (-79.39442018, 43.71206328)}"
-23945,19191,GO-20189026523,THEFT UNDER - BICYCLE,2018-08-14T00:00:00,2018,August,Tuesday,14,226,18,2018-08-15T00:00:00,2018,August,Wednesday,15,227,15,D53,Toronto,104,Mount Pleasant West (104),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SIRRUS,RG,18,BLK,679.0,RECOVERED,23931,"{'type': 'Point', 'coordinates': (-79.39643093, 43.69737458)}"
-23946,19192,GO-20189026523,THEFT UNDER - BICYCLE,2018-08-14T00:00:00,2018,August,Tuesday,14,226,18,2018-08-15T00:00:00,2018,August,Wednesday,15,227,15,D53,Toronto,104,Mount Pleasant West (104),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SIRRUS,RG,18,BLK,679.0,RECOVERED,23932,"{'type': 'Point', 'coordinates': (-79.39643093, 43.69737458)}"
-23947,19205,GO-20189034089,THEFT UNDER - BICYCLE,2018-10-12T00:00:00,2018,October,Friday,12,285,14,2018-10-15T00:00:00,2018,October,Monday,15,288,1,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OT,NOVARA PRO DS,MT,21,BLK,200.0,STOLEN,23933,"{'type': 'Point', 'coordinates': (-79.39545215, 43.70732915)}"
-23948,19225,GO-2019849156,B&E,2019-05-09T00:00:00,2019,May,Thursday,9,129,15,2019-05-10T00:00:00,2019,May,Friday,10,130,11,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,KONA\,KONA DEW CITY,RG,3,BLKGRY,1000.0,STOLEN,23934,"{'type': 'Point', 'coordinates': (-79.39442018, 43.71206328)}"
-23949,19234,GO-20199017761,THEFT UNDER - BICYCLE,2019-06-07T00:00:00,2019,June,Friday,7,158,15,2019-06-07T00:00:00,2019,June,Friday,7,158,15,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,TR,7.4 FX WSD 17,RG,9,BRZ,1000.0,STOLEN,23935,"{'type': 'Point', 'coordinates': (-79.39676103, 43.70456998)}"
-23950,19283,GO-20199029447,THEFT UNDER - BICYCLE,2019-09-08T00:00:00,2019,September,Sunday,8,251,19,2019-09-10T00:00:00,2019,September,Tuesday,10,253,14,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,TR,DUAL SPORT 2,OT,8,RED,800.0,STOLEN,23936,"{'type': 'Point', 'coordinates': (-79.39643093, 43.69737458)}"
-23951,19284,GO-20199029447,THEFT UNDER - BICYCLE,2019-09-08T00:00:00,2019,September,Sunday,8,251,19,2019-09-10T00:00:00,2019,September,Tuesday,10,253,14,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,TR,2019 - DUAL SPO,OT,8,TRQ,800.0,STOLEN,23937,"{'type': 'Point', 'coordinates': (-79.39643093, 43.69737458)}"
-23952,19295,GO-20199031219,THEFT UNDER - BICYCLE,2019-09-22T00:00:00,2019,September,Sunday,22,265,13,2019-09-23T00:00:00,2019,September,Monday,23,266,14,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,9,BLK,900.0,STOLEN,23938,"{'type': 'Point', 'coordinates': (-79.3932184, 43.70528379)}"
-23953,19301,GO-20199032242,THEFT UNDER - BICYCLE,2019-09-25T00:00:00,2019,September,Wednesday,25,268,17,2019-10-01T00:00:00,2019,October,Tuesday,1,274,14,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,CA,QUICK,MT,11,GRY,2000.0,STOLEN,23939,"{'type': 'Point', 'coordinates': (-79.38879081, 43.69768245)}"
-23954,19307,GO-20199032859,THEFT UNDER,2019-10-07T00:00:00,2019,October,Monday,7,280,9,2019-10-07T00:00:00,2019,October,Monday,7,280,9,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,EM,E-WILD,EL,30,BLK,2372.0,STOLEN,23940,"{'type': 'Point', 'coordinates': (-79.39385701, 43.71059193)}"
-23955,19319,GO-20192185319,B&E W'INTENT,2019-10-12T00:00:00,2019,October,Saturday,12,285,0,2019-11-12T00:00:00,2019,November,Tuesday,12,316,10,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,NORCO,,OT,18,BLKGRN,1000.0,STOLEN,23941,"{'type': 'Point', 'coordinates': (-79.39676103, 43.70456998)}"
-23956,19321,GO-20199038293,THEFT UNDER - BICYCLE,2019-04-18T00:00:00,2019,April,Thursday,18,108,12,2019-11-21T00:00:00,2019,November,Thursday,21,325,13,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,GI,TCR,RC,21,GRY,2700.0,STOLEN,23942,"{'type': 'Point', 'coordinates': (-79.39215994, 43.71378704)}"
-23957,19322,GO-20192450170,B&E,2019-12-19T00:00:00,2019,December,Thursday,19,353,0,2019-12-21T00:00:00,2019,December,Saturday,21,355,16,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,GIANT,,RG,1,BLU,1600.0,STOLEN,23943,"{'type': 'Point', 'coordinates': (-79.3961644, 43.69612766)}"
-23958,19356,GO-2020720963,THEFT OF EBIKE UNDER $5000,2020-04-11T00:00:00,2020,April,Saturday,11,102,12,2020-04-16T00:00:00,2020,April,Thursday,16,107,10,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OTHER,WIPERMAX SPEED,EL,1,GRNWHI,3200.0,STOLEN,23944,"{'type': 'Point', 'coordinates': (-79.39442018, 43.71206328)}"
-23959,19359,GO-20209012867,THEFT UNDER - BICYCLE,2020-05-08T00:00:00,2020,May,Friday,8,129,15,2020-05-11T00:00:00,2020,May,Monday,11,132,11,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,10,BLK,3300.0,STOLEN,23945,"{'type': 'Point', 'coordinates': (-79.3904349, 43.69860218)}"
-23960,19377,GO-20201072026,THEFT UNDER - BICYCLE,2020-06-11T00:00:00,2020,June,Thursday,11,163,4,2020-06-11T00:00:00,2020,June,Thursday,11,163,4,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OT,SPECIALIZED ALL,RC,10,RED,700.0,STOLEN,23946,"{'type': 'Point', 'coordinates': (-79.3961644, 43.69612766)}"
-23961,19381,GO-20209015856,THEFT UNDER - BICYCLE,2020-06-20T00:00:00,2020,June,Saturday,20,172,19,2020-06-21T00:00:00,2020,June,Sunday,21,173,2,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,CC,HARDTRAIL SECTO,MT,15,BLU,350.0,STOLEN,23947,"{'type': 'Point', 'coordinates': (-79.39858741, 43.70798666)}"
-23962,19382,GO-20201128724,THEFT OF EBIKE UNDER $5000,2020-06-01T00:00:00,2020,June,Monday,1,153,10,2020-06-22T00:00:00,2020,June,Monday,22,174,8,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,EL,24,WHI,2000.0,STOLEN,23948,"{'type': 'Point', 'coordinates': (-79.39545215, 43.70732915)}"
-23963,19620,GO-20149003600,THEFT UNDER,2014-05-26T00:00:00,2014,May,Monday,26,146,11,2014-05-26T00:00:00,2014,May,Monday,26,146,11,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,21,BLK,3000.0,STOLEN,23949,"{'type': 'Point', 'coordinates': (-79.39676103, 43.70456998)}"
-23964,19621,GO-20142162691,THEFT OVER,2014-05-14T00:00:00,2014,May,Wednesday,14,134,21,2014-05-27T00:00:00,2014,May,Tuesday,27,147,12,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,ROCKY MOUNTAIN,CUSTOM BUILD,MT,27,WHIBLK,7500.0,STOLEN,23950,"{'type': 'Point', 'coordinates': (-79.39676103, 43.70456998)}"
-23965,19648,GO-20142679639,THEFT OVER,2014-08-06T00:00:00,2014,August,Wednesday,6,218,15,2014-08-11T00:00:00,2014,August,Monday,11,223,10,D53,Toronto,104,Mount Pleasant West (104),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,MOUNTAIN BIKE,MT,9,,7000.0,STOLEN,23951,"{'type': 'Point', 'coordinates': (-79.39717895, 43.70113781)}"
-23966,19653,GO-20142809534,THEFT UNDER,2014-08-25T00:00:00,2014,August,Monday,25,237,10,2014-08-30T00:00:00,2014,August,Saturday,30,242,21,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KONA,,OT,18,BLKWHI,800.0,STOLEN,23952,"{'type': 'Point', 'coordinates': (-79.39676103, 43.70456998)}"
-23967,19662,GO-20143079097,THEFT UNDER,2014-10-07T00:00:00,2014,October,Tuesday,7,280,18,2014-10-10T00:00:00,2014,October,Friday,10,283,12,D53,Toronto,104,Mount Pleasant West (104),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OPUS,,RG,18,BLU,,UNKNOWN,23953,"{'type': 'Point', 'coordinates': (-79.39083961, 43.69949369)}"
-23968,19665,GO-20149007982,THEFT UNDER,2014-11-03T00:00:00,2014,November,Monday,3,307,8,2014-11-03T00:00:00,2014,November,Monday,3,307,22,D53,Toronto,104,Mount Pleasant West (104),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,VENTURA SPORT,RC,16,BLK,0.0,STOLEN,23954,"{'type': 'Point', 'coordinates': (-79.39186194, 43.70556606)}"
-23969,19686,GO-20151004472,THEFT UNDER,2015-06-15T00:00:00,2015,June,Monday,15,166,8,2015-06-15T00:00:00,2015,June,Monday,15,166,14,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,TR,3,BLU,800.0,STOLEN,23955,"{'type': 'Point', 'coordinates': (-79.39455077, 43.70501949)}"
-23970,19703,GO-20159005330,THEFT UNDER,2015-08-01T00:00:00,2015,August,Saturday,1,213,17,2015-08-04T00:00:00,2015,August,Tuesday,4,216,18,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,DEFY 3,RC,16,BLK,1200.0,STOLEN,23956,"{'type': 'Point', 'coordinates': (-79.39277875000002, 43.70786225)}"
-23971,19734,GO-20151714163,THEFT OVER,2015-09-30T00:00:00,2015,September,Wednesday,30,273,22,2015-10-04T00:00:00,2015,October,Sunday,4,277,21,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,BMW,BMW,RC,21,GRY,5000.0,STOLEN,23957,"{'type': 'Point', 'coordinates': (-79.39541022, 43.70155477)}"
-23972,19735,GO-20151714163,THEFT OVER,2015-09-30T00:00:00,2015,September,Wednesday,30,273,22,2015-10-04T00:00:00,2015,October,Sunday,4,277,21,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,BMW,BMW,TO,21,GRY,1700.0,STOLEN,23958,"{'type': 'Point', 'coordinates': (-79.39541022, 43.70155477)}"
-23973,19749,GO-20169000445,THEFT UNDER - BICYCLE,2016-01-12T00:00:00,2016,January,Tuesday,12,12,15,2016-01-13T00:00:00,2016,January,Wednesday,13,13,11,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,UK,DXT SPORT,MT,21,BLK,725.0,STOLEN,23959,"{'type': 'Point', 'coordinates': (-79.39146025, 43.70813555)}"
-23974,19759,GO-2016731112,THEFT UNDER - BICYCLE,2016-04-29T00:00:00,2016,April,Friday,29,120,11,2016-04-29T00:00:00,2016,April,Friday,29,120,12,D53,Toronto,104,Mount Pleasant West (104),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,X CALIBER 29R S,MT,11,BLKBLU,2500.0,STOLEN,23960,"{'type': 'Point', 'coordinates': (-79.38879081, 43.69768245)}"
-23975,19775,GO-20169006230,THEFT UNDER - BICYCLE,2016-06-22T00:00:00,2016,June,Wednesday,22,174,17,2016-06-23T00:00:00,2016,June,Thursday,23,175,9,D53,Toronto,104,Mount Pleasant West (104),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OPUS,ORPHEO 4.0,RG,10,BLK,600.0,STOLEN,23961,"{'type': 'Point', 'coordinates': (-79.3904349, 43.69860218)}"
-23976,22188,GO-20169009964,THEFT UNDER - BICYCLE,2016-09-03T00:00:00,2016,September,Saturday,3,247,17,2016-09-04T00:00:00,2016,September,Sunday,4,248,22,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,GT,,MT,24,BLU,500.0,STOLEN,23962,"{'type': 'Point', 'coordinates': (-79.39455077, 43.70501949)}"
-23977,22214,GO-20169014142,THEFT UNDER - BICYCLE,2016-11-21T00:00:00,2016,November,Monday,21,326,7,2016-12-02T00:00:00,2016,December,Friday,2,337,15,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,GI,16 ESCAPE 3 S B,RG,21,BLK,536.0,STOLEN,23963,"{'type': 'Point', 'coordinates': (-79.3961644, 43.69612766)}"
-23978,22222,GO-2017835997,B&E,2017-04-17T00:00:00,2017,April,Monday,17,107,0,2017-05-12T00:00:00,2017,May,Friday,12,132,11,D53,Toronto,104,Mount Pleasant West (104),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,STUM JUMPER,MT,10,BLK,1800.0,STOLEN,23964,"{'type': 'Point', 'coordinates': (-79.3961644, 43.69612766)}"
-23979,22243,GO-20179011457,THEFT UNDER - BICYCLE,2017-08-01T00:00:00,2017,August,Tuesday,1,213,11,2017-08-01T00:00:00,2017,August,Tuesday,1,213,12,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,SC,"GRANDE 29""""",MT,24,BLU,0.0,STOLEN,23965,"{'type': 'Point', 'coordinates': (-79.39083961, 43.69949369)}"
-23980,22247,GO-20179012695,THEFT UNDER - BICYCLE,2017-08-14T00:00:00,2017,August,Monday,14,226,18,2017-08-17T00:00:00,2017,August,Thursday,17,229,22,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,GT,TRANSEO 4.0 700,RG,24,BLU,520.0,STOLEN,23966,"{'type': 'Point', 'coordinates': (-79.39442018, 43.71206328)}"
-23981,22248,GO-20179012695,THEFT UNDER - BICYCLE,2017-08-14T00:00:00,2017,August,Monday,14,226,18,2017-08-17T00:00:00,2017,August,Thursday,17,229,22,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,GT,TRANSEO 4.0 W,RG,24,BLK,450.0,STOLEN,23967,"{'type': 'Point', 'coordinates': (-79.39442018, 43.71206328)}"
-23982,22319,GO-20189026756,THEFT UNDER - BICYCLE,2018-08-16T00:00:00,2018,August,Thursday,16,228,10,2018-08-17T00:00:00,2018,August,Friday,17,229,10,D53,Toronto,104,Mount Pleasant West (104),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,7.2FX WSD,RG,21,GRY,0.0,STOLEN,23968,"{'type': 'Point', 'coordinates': (-79.39678883, 43.70706033)}"
-23983,22332,GO-20189030429,THEFT UNDER - BICYCLE,2018-09-14T00:00:00,2018,September,Friday,14,257,7,2018-09-14T00:00:00,2018,September,Friday,14,257,21,D53,Toronto,104,Mount Pleasant West (104),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,BI,,RC,18,LBL,1500.0,STOLEN,23969,"{'type': 'Point', 'coordinates': (-79.39545215, 43.70732915)}"
-23984,22344,GO-20189032146,THEFT UNDER - BICYCLE,2018-08-07T00:00:00,2018,August,Tuesday,7,219,16,2018-09-27T00:00:00,2018,September,Thursday,27,270,17,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,NO,,RC,12,RED,2000.0,STOLEN,23970,"{'type': 'Point', 'coordinates': (-79.39743388, 43.70692304)}"
-23985,22360,GO-20189038849,THEFT UNDER - BICYCLE,2018-11-16T00:00:00,2018,November,Friday,16,320,19,2018-11-19T00:00:00,2018,November,Monday,19,323,17,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,GT,GT AGGRESSOR EX,MT,24,RED,509.0,STOLEN,23971,"{'type': 'Point', 'coordinates': (-79.39455077, 43.70501949)}"
-23986,22369,GO-2019726279,THEFT UNDER - BICYCLE,2019-04-21T00:00:00,2019,April,Sunday,21,111,23,2019-04-22T00:00:00,2019,April,Monday,22,112,21,D53,Toronto,104,Mount Pleasant West (104),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KONA\,DEW PRO,OT,27,GRY,790.0,STOLEN,23972,"{'type': 'Point', 'coordinates': (-79.39455077, 43.70501949)}"
-23987,22380,GO-20191126384,B&E,2019-06-15T00:00:00,2019,June,Saturday,15,166,23,2019-06-18T00:00:00,2019,June,Tuesday,18,169,11,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OTHER,PURE LADIES PRO,RC,21,GRY,2300.0,STOLEN,23973,"{'type': 'Point', 'coordinates': (-79.39863797, 43.70821093)}"
-23988,22381,GO-20191126384,B&E,2019-06-15T00:00:00,2019,June,Saturday,15,166,23,2019-06-18T00:00:00,2019,June,Tuesday,18,169,11,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,DIVERGE E5,RC,21,,3909.0,STOLEN,23974,"{'type': 'Point', 'coordinates': (-79.39863797, 43.70821093)}"
-23989,22382,GO-20191126384,B&E,2019-06-15T00:00:00,2019,June,Saturday,15,166,23,2019-06-18T00:00:00,2019,June,Tuesday,18,169,11,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,DIVERGE X1,RC,21,,8666.0,STOLEN,23975,"{'type': 'Point', 'coordinates': (-79.39863797, 43.70821093)}"
-23990,22384,GO-20199019777,THEFT UNDER - BICYCLE,2019-06-01T00:00:00,2019,June,Saturday,1,152,0,2019-06-23T00:00:00,2019,June,Sunday,23,174,15,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,21,BLK,1200.0,STOLEN,23976,"{'type': 'Point', 'coordinates': (-79.39385701, 43.71059193)}"
-23991,22386,GO-20199020219,THEFT UNDER - BICYCLE,2019-06-26T00:00:00,2019,June,Wednesday,26,177,14,2019-06-26T00:00:00,2019,June,Wednesday,26,177,18,D53,Toronto,104,Mount Pleasant West (104),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,DEFY ADVANCED 2,RC,21,YEL,2600.0,STOLEN,23977,"{'type': 'Point', 'coordinates': (-79.39676103, 43.70456998)}"
-23992,22415,GO-20199029864,THEFT UNDER - BICYCLE,2019-09-07T00:00:00,2019,September,Saturday,7,250,12,2019-09-13T00:00:00,2019,September,Friday,13,256,12,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ARIEL,MT,9,,700.0,STOLEN,23978,"{'type': 'Point', 'coordinates': (-79.38959964, 43.69974904)}"
-23993,22423,GO-20191853166,THEFT UNDER - BICYCLE,2019-09-25T00:00:00,2019,September,Wednesday,25,268,9,2019-09-27T00:00:00,2019,September,Friday,27,270,19,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,,EL,3,RED,2500.0,STOLEN,23979,"{'type': 'Point', 'coordinates': (-79.39442018, 43.71206328)}"
-23994,22424,GO-20191853166,THEFT UNDER - BICYCLE,2019-09-25T00:00:00,2019,September,Wednesday,25,268,9,2019-09-27T00:00:00,2019,September,Friday,27,270,19,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,VELO SPORT,,EL,3,YEL,1000.0,STOLEN,23980,"{'type': 'Point', 'coordinates': (-79.39442018, 43.71206328)}"
-23995,22428,GO-20199035808,THEFT UNDER - BICYCLE,2019-10-29T00:00:00,2019,October,Tuesday,29,302,18,2019-10-30T00:00:00,2019,October,Wednesday,30,303,10,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,WS AXELLE 5,RC,10,WHI,1300.0,STOLEN,23981,"{'type': 'Point', 'coordinates': (-79.39325386, 43.70907306)}"
-23996,22435,GO-202084277,B&E,2020-01-07T00:00:00,2020,January,Tuesday,7,7,9,2020-01-13T00:00:00,2020,January,Monday,13,13,11,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,JAMIS,U/K,MT,1,SILBLK,1000.0,STOLEN,23982,"{'type': 'Point', 'coordinates': (-79.39643093, 43.69737458)}"
-23997,22448,GO-20209009590,THEFT UNDER,2020-03-22T00:00:00,2020,March,Sunday,22,82,10,2020-03-22T00:00:00,2020,March,Sunday,22,82,18,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,CC,,TO,18,GRN,800.0,STOLEN,23983,"{'type': 'Point', 'coordinates': (-79.39277875000002, 43.70786225)}"
-23998,22449,GO-20209009590,THEFT UNDER,2020-03-22T00:00:00,2020,March,Sunday,22,82,10,2020-03-22T00:00:00,2020,March,Sunday,22,82,18,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,RA,,MT,18,BLU,500.0,STOLEN,23984,"{'type': 'Point', 'coordinates': (-79.39277875000002, 43.70786225)}"
-23999,22465,GO-20209013441,THEFT UNDER - BICYCLE,2020-05-08T00:00:00,2020,May,Friday,8,129,6,2020-05-19T00:00:00,2020,May,Tuesday,19,140,15,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,RM,,MT,21,RED,800.0,STOLEN,23985,"{'type': 'Point', 'coordinates': (-79.3904349, 43.69860218)}"
-24000,22471,GO-20209014480,THEFT UNDER - BICYCLE,2020-05-22T00:00:00,2020,May,Friday,22,143,14,2020-06-03T00:00:00,2020,June,Wednesday,3,155,15,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,KO,DEW 2019 HYBRID,RG,4,GRN,849.0,STOLEN,23986,"{'type': 'Point', 'coordinates': (-79.39385701, 43.71059193)}"
-24001,22486,GO-20209016168,B&E,2020-06-22T00:00:00,2020,June,Monday,22,174,17,2020-06-25T00:00:00,2020,June,Thursday,25,177,18,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OT,TRAFFIK 1.0,RG,24,BLK,485.0,STOLEN,23987,"{'type': 'Point', 'coordinates': (-79.39325386, 43.70907306)}"
-24002,22488,GO-20209016325,THEFT UNDER - BICYCLE,2020-06-27T00:00:00,2020,June,Saturday,27,179,15,2020-06-27T00:00:00,2020,June,Saturday,27,179,17,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KO,DEW PLUS,RG,21,BLK,700.0,STOLEN,23988,"{'type': 'Point', 'coordinates': (-79.38925182, 43.70608563)}"
-24003,22505,GO-20209017721,THEFT UNDER - BICYCLE,2020-07-15T00:00:00,2020,July,Wednesday,15,197,8,2020-07-16T00:00:00,2020,July,Thursday,16,198,15,D53,Toronto,104,Mount Pleasant West (104),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KO,MOUNTAIN BIKE,MT,18,BLK,0.0,STOLEN,23989,"{'type': 'Point', 'coordinates': (-79.39409295, 43.70760244)}"
-24004,22510,GO-20209018351,THEFT UNDER - BICYCLE,2020-07-23T00:00:00,2020,July,Thursday,23,205,14,2020-07-23T00:00:00,2020,July,Thursday,23,205,14,D53,Toronto,104,Mount Pleasant West (104),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,CROSSTRAIL SPOR,MT,18,BLK,1100.0,STOLEN,23990,"{'type': 'Point', 'coordinates': (-79.3892761, 43.70216558)}"
-24005,22513,GO-20201378158,B&E,2020-07-15T00:00:00,2020,July,Wednesday,15,197,11,2020-07-25T00:00:00,2020,July,Saturday,25,207,9,D53,Toronto,104,Mount Pleasant West (104),"Private Property Structure (Pool, Shed, Detached Garage)",Other,DEVINCI,ST TROPEZ,MT,21,BLK,1000.0,STOLEN,23991,"{'type': 'Point', 'coordinates': (-79.39743388, 43.70692304)}"
-24006,22522,GO-20209019370,THEFT UNDER - BICYCLE,2020-08-04T00:00:00,2020,August,Tuesday,4,217,17,2020-08-04T00:00:00,2020,August,Tuesday,4,217,18,D53,Toronto,104,Mount Pleasant West (104),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,OT,1,LBL,400.0,STOLEN,23992,"{'type': 'Point', 'coordinates': (-79.39409295, 43.70760244)}"
-24007,22525,GO-20209019826,THEFT UNDER,2020-08-07T00:00:00,2020,August,Friday,7,220,20,2020-08-10T00:00:00,2020,August,Monday,10,223,14,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,GI,ANTHEM X 29ER,MT,9,BLK,2000.0,STOLEN,23993,"{'type': 'Point', 'coordinates': (-79.39385701, 43.71059193)}"
-24008,22528,GO-20201494716,THEFT UNDER - BICYCLE,2020-08-07T00:00:00,2020,August,Friday,7,220,0,2020-08-13T00:00:00,2020,August,Thursday,13,226,16,D53,Toronto,104,Mount Pleasant West (104),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,SCENE,RG,12,BLK,800.0,STOLEN,23994,"{'type': 'Point', 'coordinates': (-79.39545215, 43.70732915)}"
-24009,22536,GO-20209021026,THEFT UNDER - BICYCLE,2020-08-20T00:00:00,2020,August,Thursday,20,233,17,2020-08-22T00:00:00,2020,August,Saturday,22,235,18,D53,Toronto,104,Mount Pleasant West (104),"Apartment (Rooming House, Condo)",Apartment,OT,CLASSIC,RG,21,,500.0,STOLEN,23995,"{'type': 'Point', 'coordinates': (-79.38693266, 43.70031352000001)}"
-24010,22539,GO-20201607176,B&E,2020-08-19T00:00:00,2020,August,Wednesday,19,232,20,2020-08-26T00:00:00,2020,August,Wednesday,26,239,9,D53,Toronto,104,Mount Pleasant West (104),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MARIN OR MARINO,GRAVEL,TO,18,GRYSIL,1250.0,STOLEN,23996,"{'type': 'Point', 'coordinates': (-79.39676103, 43.70456998)}"
-24011,22542,GO-20201620331,B&E,2020-08-28T00:00:00,2020,August,Friday,28,241,4,2020-08-28T00:00:00,2020,August,Friday,28,241,7,D53,Toronto,104,Mount Pleasant West (104),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TREK,ALLANT +7,RG,6,DBL,4800.0,STOLEN,23997,"{'type': 'Point', 'coordinates': (-79.39690117, 43.70259578)}"
-24012,20916,GO-20142753067,THEFT UNDER,2014-08-01T00:00:00,2014,August,Friday,1,213,9,2014-08-22T00:00:00,2014,August,Friday,22,234,11,D41,Toronto,119,Wexford/Maryvale (119),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,OT,5,,200.0,STOLEN,23998,"{'type': 'Point', 'coordinates': (-79.2847962, 43.7475181)}"
-24013,23276,GO-20191218840,THEFT UNDER - BICYCLE,2019-06-30T00:00:00,2019,June,Sunday,30,181,17,2019-07-01T00:00:00,2019,July,Monday,1,182,19,D41,Toronto,119,Wexford/Maryvale (119),Ttc Bus Stop / Shelter / Loop,Outside,OTHER,UNKNOWN,RG,18,BLU,100.0,STOLEN,23999,"{'type': 'Point', 'coordinates': (-79.29834757, 43.75440176)}"
-24014,23322,GO-20209014194,THEFT UNDER,2020-04-09T00:00:00,2020,April,Thursday,9,100,12,2020-05-29T00:00:00,2020,May,Friday,29,150,13,D41,Toronto,119,Wexford/Maryvale (119),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,RIPROCK,MT,8,RED,650.0,STOLEN,24000,"{'type': 'Point', 'coordinates': (-79.30215105, 43.74036646)}"
-24015,23612,GO-2015953695,THEFT UNDER,2015-06-06T00:00:00,2015,June,Saturday,6,157,16,2015-06-08T00:00:00,2015,June,Monday,8,159,13,D41,Toronto,119,Wexford/Maryvale (119),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,DEVINCI,STOCKHOLM,OT,24,RED,700.0,STOLEN,24001,"{'type': 'Point', 'coordinates': (-79.29142356, 43.72699591)}"
-24016,21889,GO-20159004329,THEFT UNDER,2015-07-05T00:00:00,2015,July,Sunday,5,186,21,2015-07-09T00:00:00,2015,July,Thursday,9,190,9,D12,Toronto,111,Rockcliffe-Smythe (111),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,EL,32,BLK,2000.0,STOLEN,24002,"{'type': 'Point', 'coordinates': (-79.4824201, 43.68373474)}"
-24017,23956,GO-20149007098,B&E,2014-09-18T00:00:00,2014,September,Thursday,18,261,23,2014-09-22T00:00:00,2014,September,Monday,22,265,0,D41,Toronto,119,Wexford/Maryvale (119),"Private Property Structure (Pool, Shed, Detached Garage)",Other,IN,NOT KNOWN,RG,21,BLU,200.0,STOLEN,24003,"{'type': 'Point', 'coordinates': (-79.29893534, 43.73810154)}"
-24018,23967,GO-20143317126,THEFT UNDER,2014-11-16T00:00:00,2014,November,Sunday,16,320,23,2014-11-17T00:00:00,2014,November,Monday,17,321,11,D41,Toronto,119,Wexford/Maryvale (119),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,DAYTONA,DAYMARK,OT,3,BLU,1300.0,STOLEN,24004,"{'type': 'Point', 'coordinates': (-79.29805941, 43.72722646)}"
-24019,74,GO-2017182170,THEFT UNDER - BICYCLE,2017-01-27T00:00:00,2017,January,Friday,27,27,2,2017-01-29T00:00:00,2017,January,Sunday,29,29,19,D41,Toronto,120,Clairlea-Birchmount (120),"Apartment (Rooming House, Condo)",Apartment,THS,UNKNOWN,RC,21,BLK,400.0,STOLEN,24005,"{'type': 'Point', 'coordinates': (-79.28668911, 43.70008354)}"
-24020,75,GO-2017182170,THEFT UNDER - BICYCLE,2017-01-27T00:00:00,2017,January,Friday,27,27,2,2017-01-29T00:00:00,2017,January,Sunday,29,29,19,D41,Toronto,120,Clairlea-Birchmount (120),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,COMFORT BIKE,MT,5,GRY,400.0,STOLEN,24006,"{'type': 'Point', 'coordinates': (-79.28668911, 43.70008354)}"
-24021,230,GO-20179004770,THEFT UNDER - BICYCLE,2017-04-17T00:00:00,2017,April,Monday,17,107,1,2017-04-17T00:00:00,2017,April,Monday,17,107,3,D41,Toronto,120,Clairlea-Birchmount (120),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,MOBO TRITON,RE,1,ONG,1000.0,STOLEN,24007,"{'type': 'Point', 'coordinates': (-79.29489225, 43.70895954)}"
-24022,736,GO-20179009115,THEFT UNDER,2017-06-27T00:00:00,2017,June,Tuesday,27,178,12,2017-06-28T00:00:00,2017,June,Wednesday,28,179,17,D41,Toronto,120,Clairlea-Birchmount (120),"Private Property Structure (Pool, Shed, Detached Garage)",Other,HF,MOUNTAIN BIKE,RG,4,LBL,100.0,STOLEN,24008,"{'type': 'Point', 'coordinates': (-79.27581937, 43.71559135)}"
-24023,994,GO-20171359192,THEFT UNDER - BICYCLE,2017-07-28T00:00:00,2017,July,Friday,28,209,8,2017-07-28T00:00:00,2017,July,Friday,28,209,23,D41,Toronto,120,Clairlea-Birchmount (120),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,,MT,4,BLUWHI,35.0,STOLEN,24009,"{'type': 'Point', 'coordinates': (-79.29594484, 43.70877621)}"
-24024,1766,GO-20171945222,THEFT OF EBIKE UNDER $5000,2017-10-26T00:00:00,2017,October,Thursday,26,299,2,2017-10-27T00:00:00,2017,October,Friday,27,300,12,D41,Toronto,120,Clairlea-Birchmount (120),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,E500,EL,3,YEL,,STOLEN,24010,"{'type': 'Point', 'coordinates': (-79.27695418, 43.702395720000005)}"
-24025,1854,GO-20179019838,THEFT UNDER - BICYCLE,2017-11-16T00:00:00,2017,November,Thursday,16,320,16,2017-11-16T00:00:00,2017,November,Thursday,16,320,22,D41,Toronto,120,Clairlea-Birchmount (120),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,GTX-2 700C,OT,21,RED,600.0,STOLEN,24011,"{'type': 'Point', 'coordinates': (-79.28723757, 43.72693679)}"
-24026,2275,GO-20189014250,THEFT UNDER - BICYCLE,2018-05-08T00:00:00,2018,May,Tuesday,8,128,18,2018-05-09T00:00:00,2018,May,Wednesday,9,129,17,D41,Toronto,120,Clairlea-Birchmount (120),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,,,MT,10,BLU,200.0,STOLEN,24012,"{'type': 'Point', 'coordinates': (-79.28169165, 43.71651853)}"
-24027,3133,GO-20189025699,THEFT UNDER - BICYCLE,2018-08-09T00:00:00,2018,August,Thursday,9,221,7,2018-08-09T00:00:00,2018,August,Thursday,9,221,13,D12,Toronto,113,Weston (113),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,10,RED,200.0,STOLEN,24242,"{'type': 'Point', 'coordinates': (-79.50699759, 43.70228047)}"
-24028,2405,GO-20189016424,THEFT UNDER - BICYCLE,2018-05-26T00:00:00,2018,May,Saturday,26,146,16,2018-05-27T00:00:00,2018,May,Sunday,27,147,17,D41,Toronto,120,Clairlea-Birchmount (120),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,,RG,21,ONG,500.0,STOLEN,24013,"{'type': 'Point', 'coordinates': (-79.27289835, 43.70481707)}"
-24029,3295,GO-20181517659,THEFT UNDER,2018-08-15T00:00:00,2018,August,Wednesday,15,227,20,2018-08-23T00:00:00,2018,August,Thursday,23,235,17,D41,Toronto,120,Clairlea-Birchmount (120),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CCM,,MT,18,RED,,RECOVERED,24014,"{'type': 'Point', 'coordinates': (-79.29142356, 43.72699591)}"
-24030,3608,GO-20181808878,B&E,2018-09-29T00:00:00,2018,September,Saturday,29,272,8,2018-09-30T00:00:00,2018,September,Sunday,30,273,15,D41,Toronto,120,Clairlea-Birchmount (120),"Apartment (Rooming House, Condo)",Apartment,GIANT,ESCAPE 2,OT,24,WHI,,STOLEN,24015,"{'type': 'Point', 'coordinates': (-79.28589258, 43.71588716)}"
-24031,3999,GO-201971544,THEFT UNDER,2019-01-09T00:00:00,2019,January,Wednesday,9,9,13,2019-01-12T00:00:00,2019,January,Saturday,12,12,12,D41,Toronto,120,Clairlea-Birchmount (120),"Apartment (Rooming House, Condo)",Apartment,FORTRESS,1700DT,EL,1,RED,400.0,STOLEN,24016,"{'type': 'Point', 'coordinates': (-79.26571834, 43.70971410000001)}"
-24032,5639,GO-20199036326,THEFT UNDER,2019-11-03T00:00:00,2019,November,Sunday,3,307,16,2019-11-03T00:00:00,2019,November,Sunday,3,307,17,D41,Toronto,120,Clairlea-Birchmount (120),Ttc Subway Station,Transit,UK,,RG,30,BLU,150.0,STOLEN,24017,"{'type': 'Point', 'coordinates': (-79.28096318, 43.71204501)}"
-24033,7279,GO-20209023668,THEFT UNDER - BICYCLE,2020-09-17T00:00:00,2020,September,Thursday,17,261,20,2020-09-17T00:00:00,2020,September,Thursday,17,261,20,D41,Toronto,120,Clairlea-Birchmount (120),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,21,BLK,1000.0,STOLEN,24018,"{'type': 'Point', 'coordinates': (-79.28489163, 43.70516973000001)}"
-24034,24591,GO-20141587267,THEFT UNDER,2014-02-23T00:00:00,2014,February,Sunday,23,54,20,2014-02-24T00:00:00,2014,February,Monday,24,55,7,D13,Toronto,108,Briar Hill-Belgravia (108),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,0,BLU,,STOLEN,24019,"{'type': 'Point', 'coordinates': (-79.44464324, 43.69773351)}"
-24035,3539,GO-20189031625,THEFT UNDER,2018-09-23T00:00:00,2018,September,Sunday,23,266,12,2018-09-23T00:00:00,2018,September,Sunday,23,266,14,D41,Toronto,124,Kennedy Park (124),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,MT,6,PLE,100.0,STOLEN,24020,"{'type': 'Point', 'coordinates': (-79.27064487, 43.72441135)}"
-24036,7280,GO-20209023668,THEFT UNDER - BICYCLE,2020-09-17T00:00:00,2020,September,Thursday,17,261,20,2020-09-17T00:00:00,2020,September,Thursday,17,261,20,D41,Toronto,120,Clairlea-Birchmount (120),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,S2,RC,21,RED,3000.0,STOLEN,24021,"{'type': 'Point', 'coordinates': (-79.28489163, 43.70516973000001)}"
-24037,7577,GO-20209028241,THEFT UNDER,2020-10-30T00:00:00,2020,October,Friday,30,304,23,2020-10-31T00:00:00,2020,October,Saturday,31,305,13,D41,Toronto,120,Clairlea-Birchmount (120),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,SURGE DUAL SUSP,MT,21,GRY,359.0,STOLEN,24022,"{'type': 'Point', 'coordinates': (-79.28880433, 43.69966821)}"
-24038,7809,GO-20141825417,B&E,2014-04-01T00:00:00,2014,April,Tuesday,1,91,7,2014-04-04T00:00:00,2014,April,Friday,4,94,9,D41,Toronto,120,Clairlea-Birchmount (120),"Apartment (Rooming House, Condo)",Apartment,OTHER,,RC,21,BLK,,STOLEN,24023,"{'type': 'Point', 'coordinates': (-79.29423656, 43.70743754)}"
-24039,7810,GO-20141825417,B&E,2014-04-01T00:00:00,2014,April,Tuesday,1,91,7,2014-04-04T00:00:00,2014,April,Friday,4,94,9,D41,Toronto,120,Clairlea-Birchmount (120),"Apartment (Rooming House, Condo)",Apartment,OTHER,,EL,1,BLK,,STOLEN,24024,"{'type': 'Point', 'coordinates': (-79.29423656, 43.70743754)}"
-24040,7811,GO-20141825417,B&E,2014-04-01T00:00:00,2014,April,Tuesday,1,91,7,2014-04-04T00:00:00,2014,April,Friday,4,94,9,D41,Toronto,120,Clairlea-Birchmount (120),"Apartment (Rooming House, Condo)",Apartment,OTHER,,EL,1,ONG,,STOLEN,24025,"{'type': 'Point', 'coordinates': (-79.29423656, 43.70743754)}"
-24041,7812,GO-20141825417,B&E,2014-04-01T00:00:00,2014,April,Tuesday,1,91,7,2014-04-04T00:00:00,2014,April,Friday,4,94,9,D41,Toronto,120,Clairlea-Birchmount (120),"Apartment (Rooming House, Condo)",Apartment,OTHER,,MT,21,BLK,,STOLEN,24026,"{'type': 'Point', 'coordinates': (-79.29423656, 43.70743754)}"
-24042,7813,GO-20141825417,B&E,2014-04-01T00:00:00,2014,April,Tuesday,1,91,7,2014-04-04T00:00:00,2014,April,Friday,4,94,9,D41,Toronto,120,Clairlea-Birchmount (120),"Apartment (Rooming House, Condo)",Apartment,OTHER,,MT,21,,,STOLEN,24027,"{'type': 'Point', 'coordinates': (-79.29423656, 43.70743754)}"
-24043,7996,GO-20149003651,THEFT UNDER,2014-05-26T00:00:00,2014,May,Monday,26,146,18,2014-05-27T00:00:00,2014,May,Tuesday,27,147,20,D41,Toronto,120,Clairlea-Birchmount (120),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,6,WHI,130.0,STOLEN,24028,"{'type': 'Point', 'coordinates': (-79.27333402, 43.70807596)}"
-24044,8423,GO-20142524077,B&E,2014-07-18T00:00:00,2014,July,Friday,18,199,0,2014-07-18T00:00:00,2014,July,Friday,18,199,17,D41,Toronto,120,Clairlea-Birchmount (120),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,,RG,10,WHIBLU,100.0,STOLEN,24029,"{'type': 'Point', 'coordinates': (-79.27274073, 43.71020598)}"
-24045,8607,GO-20142659449,THEFT UNDER,2013-06-01T00:00:00,2013,June,Saturday,1,152,19,2014-08-08T00:00:00,2014,August,Friday,8,220,9,D41,Toronto,120,Clairlea-Birchmount (120),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,CANADIAN TIRE,MT,0,YEL,150.0,STOLEN,24030,"{'type': 'Point', 'coordinates': (-79.29128571, 43.71795197)}"
-24046,8608,GO-20142659449,THEFT UNDER,2013-06-01T00:00:00,2013,June,Saturday,1,152,19,2014-08-08T00:00:00,2014,August,Friday,8,220,9,D41,Toronto,120,Clairlea-Birchmount (120),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,MOUNTAIN BIKE,MT,0,BLU,250.0,STOLEN,24031,"{'type': 'Point', 'coordinates': (-79.29128571, 43.71795197)}"
-24047,8609,GO-20142659449,THEFT UNDER,2013-06-01T00:00:00,2013,June,Saturday,1,152,19,2014-08-08T00:00:00,2014,August,Friday,8,220,9,D41,Toronto,120,Clairlea-Birchmount (120),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,MOUNTAIN BIKE,MT,0,BLU,200.0,STOLEN,24032,"{'type': 'Point', 'coordinates': (-79.29128571, 43.71795197)}"
-24048,8610,GO-20142659449,THEFT UNDER,2013-06-01T00:00:00,2013,June,Saturday,1,152,19,2014-08-08T00:00:00,2014,August,Friday,8,220,9,D41,Toronto,120,Clairlea-Birchmount (120),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,CCM,MT,0,ONG,300.0,STOLEN,24033,"{'type': 'Point', 'coordinates': (-79.29128571, 43.71795197)}"
-24049,8904,GO-20142913613,THEFT UNDER,2014-09-06T00:00:00,2014,September,Saturday,6,249,21,2014-09-15T00:00:00,2014,September,Monday,15,258,10,D41,Toronto,120,Clairlea-Birchmount (120),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MONGOOSE,,MT,16,RED,0.0,STOLEN,24034,"{'type': 'Point', 'coordinates': (-79.27526843, 43.71010123)}"
-24050,8905,GO-20142913613,THEFT UNDER,2014-09-06T00:00:00,2014,September,Saturday,6,249,21,2014-09-15T00:00:00,2014,September,Monday,15,258,10,D41,Toronto,120,Clairlea-Birchmount (120),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CCM,,MT,21,GRY,,STOLEN,24035,"{'type': 'Point', 'coordinates': (-79.27526843, 43.71010123)}"
-24051,8912,GO-20149006987,THEFT UNDER,2014-09-17T00:00:00,2014,September,Wednesday,17,260,20,2014-09-17T00:00:00,2014,September,Wednesday,17,260,21,D41,Toronto,120,Clairlea-Birchmount (120),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,18,DGR,,STOLEN,24036,"{'type': 'Point', 'coordinates': (-79.27236827, 43.71244072)}"
-24052,8913,GO-20149006987,THEFT UNDER,2014-09-17T00:00:00,2014,September,Wednesday,17,260,20,2014-09-17T00:00:00,2014,September,Wednesday,17,260,21,D41,Toronto,120,Clairlea-Birchmount (120),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,18,PLE,,STOLEN,24038,"{'type': 'Point', 'coordinates': (-79.27236827, 43.71244072)}"
-24053,9376,GO-2015573479,THEFT UNDER,2015-04-07T00:00:00,2015,April,Tuesday,7,97,10,2015-04-07T00:00:00,2015,April,Tuesday,7,97,11,D41,Toronto,120,Clairlea-Birchmount (120),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,MT,18,BLK,100.0,STOLEN,24039,"{'type': 'Point', 'coordinates': (-79.27599085, 43.72535808)}"
-24054,9838,GO-20151032923,THEFT UNDER,2015-06-19T00:00:00,2015,June,Friday,19,170,18,2015-06-19T00:00:00,2015,June,Friday,19,170,19,D41,Toronto,120,Clairlea-Birchmount (120),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,RACER,RC,10,BLK,,STOLEN,24040,"{'type': 'Point', 'coordinates': (-79.30205957, 43.72338091)}"
-24055,9934,GO-20151120016,THEFT UNDER,2015-06-26T00:00:00,2015,June,Friday,26,177,12,2015-07-03T00:00:00,2015,July,Friday,3,184,13,D41,Toronto,120,Clairlea-Birchmount (120),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RALEIGH,CHILL,OT,21,REDSIL,800.0,STOLEN,24041,"{'type': 'Point', 'coordinates': (-79.28880433, 43.69966821)}"
-24056,9937,GO-20151122958,THEFT UNDER,2015-07-03T00:00:00,2015,July,Friday,3,184,20,2015-07-03T00:00:00,2015,July,Friday,3,184,21,D41,Toronto,120,Clairlea-Birchmount (120),"Open Areas (Lakes, Parks, Rivers)",Outside,NEXT,,MT,3,WHI,120.0,STOLEN,24042,"{'type': 'Point', 'coordinates': (-79.27377607, 43.70384673)}"
-24057,9972,GO-20151168023,THEFT UNDER,2015-07-10T00:00:00,2015,July,Friday,10,191,16,2015-07-10T00:00:00,2015,July,Friday,10,191,18,D41,Toronto,120,Clairlea-Birchmount (120),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,MT,0,BLU,,STOLEN,24043,"{'type': 'Point', 'coordinates': (-79.26809008, 43.70699821)}"
-24058,10002,GO-20159004518,THEFT UNDER,2015-07-09T00:00:00,2015,July,Thursday,9,190,6,2015-07-13T00:00:00,2015,July,Monday,13,194,18,D41,Toronto,120,Clairlea-Birchmount (120),Ttc Subway Station,Transit,OT,LIVE WIRE,EL,32,BLK,1400.0,STOLEN,24044,"{'type': 'Point', 'coordinates': (-79.28096318, 43.71204501)}"
-24059,10037,GO-20151213424,B&E,2015-07-17T00:00:00,2015,July,Friday,17,198,9,2015-07-17T00:00:00,2015,July,Friday,17,198,10,D41,Toronto,120,Clairlea-Birchmount (120),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,UNKOWN,RG,0,WHI,100.0,STOLEN,24045,"{'type': 'Point', 'coordinates': (-79.28668911, 43.70008354)}"
-24060,10038,GO-20151213424,B&E,2015-07-17T00:00:00,2015,July,Friday,17,198,9,2015-07-17T00:00:00,2015,July,Friday,17,198,10,D41,Toronto,120,Clairlea-Birchmount (120),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKOWN,UNKOWN,RE,0,BLUGRN,100.0,STOLEN,24046,"{'type': 'Point', 'coordinates': (-79.28668911, 43.70008354)}"
-24061,10123,GO-20151289939,THEFT OVER,2014-09-01T00:00:00,2014,September,Monday,1,244,18,2015-07-29T00:00:00,2015,July,Wednesday,29,210,8,D41,Toronto,120,Clairlea-Birchmount (120),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,1700 DT,SC,1,BLK,9000.0,STOLEN,24047,"{'type': 'Point', 'coordinates': (-79.27802755, 43.70499286)}"
-24062,10182,GO-20159005379,THEFT UNDER,2015-08-05T00:00:00,2015,August,Wednesday,5,217,21,2015-08-05T00:00:00,2015,August,Wednesday,5,217,23,D41,Toronto,120,Clairlea-Birchmount (120),Schools During Un-Supervised Activity,Educational,DB,SORRENTO,MT,21,SIL,350.0,STOLEN,24048,"{'type': 'Point', 'coordinates': (-79.29284186, 43.70938146)}"
-24063,10259,GO-20151403011,THEFT UNDER,2015-08-13T00:00:00,2015,August,Thursday,13,225,13,2015-08-15T00:00:00,2015,August,Saturday,15,227,16,D41,Toronto,120,Clairlea-Birchmount (120),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,RALLEY,RC,10,BRN,350.0,STOLEN,24049,"{'type': 'Point', 'coordinates': (-79.2626304, 43.71623081)}"
-24064,10427,GO-20151553094,THEFT UNDER,2015-09-03T00:00:00,2015,September,Thursday,3,246,9,2015-09-08T00:00:00,2015,September,Tuesday,8,251,20,D41,Toronto,120,Clairlea-Birchmount (120),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,1,BLUWHI,250.0,STOLEN,24050,"{'type': 'Point', 'coordinates': (-79.27693552, 43.70457544)}"
-24065,10999,GO-2016297539,THEFT UNDER,2016-02-19T00:00:00,2016,February,Friday,19,50,8,2016-02-19T00:00:00,2016,February,Friday,19,50,13,D41,Toronto,120,Clairlea-Birchmount (120),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,SHIFT 3.0,TO,18,BLK,900.0,STOLEN,24051,"{'type': 'Point', 'coordinates': (-79.29423656, 43.70743754)}"
-24066,11217,GO-20152196792,PROPERTY - FOUND,2015-12-23T00:00:00,2015,December,Wednesday,23,357,13,2015-12-23T00:00:00,2015,December,Wednesday,23,357,13,D41,Toronto,120,Clairlea-Birchmount (120),"Open Areas (Lakes, Parks, Rivers)",Outside,MO,DYNAMIC,MT,18,BLU,,UNKNOWN,24052,"{'type': 'Point', 'coordinates': (-79.29058989, 43.71440419)}"
-24067,12511,GO-20169011325,THEFT UNDER - BICYCLE,2016-09-29T00:00:00,2016,September,Thursday,29,273,6,2016-09-29T00:00:00,2016,September,Thursday,29,273,19,D41,Toronto,120,Clairlea-Birchmount (120),"Apartment (Rooming House, Condo)",Apartment,GT,AGRESSOR SPORT,MT,21,BLK,449.0,STOLEN,24053,"{'type': 'Point', 'coordinates': (-79.29508928, 43.70999888)}"
-24068,12666,GO-20169012446,THEFT UNDER,2016-10-22T00:00:00,2016,October,Saturday,22,296,18,2016-10-22T00:00:00,2016,October,Saturday,22,296,18,D41,Toronto,120,Clairlea-Birchmount (120),"Apartment (Rooming House, Condo)",Apartment,SC,,RG,6,PLE,500.0,STOLEN,24054,"{'type': 'Point', 'coordinates': (-79.26702624000002, 43.70871732)}"
-24069,13512,GO-20199024598,THEFT UNDER,2019-07-31T00:00:00,2019,July,Wednesday,31,212,13,2019-08-01T00:00:00,2019,August,Thursday,1,213,8,D41,Toronto,120,Clairlea-Birchmount (120),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,CC,,MT,21,BLK,275.0,STOLEN,24055,"{'type': 'Point', 'coordinates': (-79.27701071000001, 43.72772741)}"
-24070,13582,GO-20209022091,THEFT FROM MOTOR VEHICLE UNDER,2020-09-01T00:00:00,2020,September,Tuesday,1,245,0,2020-09-02T00:00:00,2020,September,Wednesday,2,246,11,D41,Toronto,120,Clairlea-Birchmount (120),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,ESCAPE,TO,24,WHI,500.0,STOLEN,24056,"{'type': 'Point', 'coordinates': (-79.29343706, 43.71307718)}"
-24071,13671,GO-20179007875,THEFT UNDER,2017-06-10T00:00:00,2017,June,Saturday,10,161,12,2017-06-11T00:00:00,2017,June,Sunday,11,162,8,D41,Toronto,120,Clairlea-Birchmount (120),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,,MT,18,WHI,500.0,STOLEN,24057,"{'type': 'Point', 'coordinates': (-79.28489163, 43.70516973000001)}"
-24072,13749,GO-20189014250,THEFT UNDER - BICYCLE,2018-05-08T00:00:00,2018,May,Tuesday,8,128,18,2018-05-09T00:00:00,2018,May,Wednesday,9,129,17,D41,Toronto,120,Clairlea-Birchmount (120),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,,,MT,10,BLU,200.0,STOLEN,24058,"{'type': 'Point', 'coordinates': (-79.28169165, 43.71651853)}"
-24073,13794,GO-20189024770,THEFT UNDER - BICYCLE,2018-08-01T00:00:00,2018,August,Wednesday,1,213,0,2018-08-01T00:00:00,2018,August,Wednesday,1,213,14,D41,Toronto,120,Clairlea-Birchmount (120),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RA,,RG,16,WHI,200.0,STOLEN,24059,"{'type': 'Point', 'coordinates': (-79.29189272, 43.70962079)}"
-24074,13829,GO-20181808878,B&E,2018-09-29T00:00:00,2018,September,Saturday,29,272,8,2018-09-30T00:00:00,2018,September,Sunday,30,273,15,D41,Toronto,120,Clairlea-Birchmount (120),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,CAMBER,MT,18,LGR,2000.0,STOLEN,24060,"{'type': 'Point', 'coordinates': (-79.28589258, 43.71588716)}"
-24075,17128,GO-20159002816,THEFT UNDER,2015-05-14T00:00:00,2015,May,Thursday,14,134,17,2015-05-17T00:00:00,2015,May,Sunday,17,137,14,D41,Toronto,120,Clairlea-Birchmount (120),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,LEGEND,MT,21,RED,400.0,STOLEN,24068,"{'type': 'Point', 'coordinates': (-79.27590851, 43.7116377)}"
-24076,13912,GO-20159007573,THEFT UNDER,2015-09-21T00:00:00,2015,September,Monday,21,264,21,2015-09-22T00:00:00,2015,September,Tuesday,22,265,14,D41,Toronto,120,Clairlea-Birchmount (120),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RM,TRAILHEAD,MT,21,BLK,1000.0,STOLEN,24061,"{'type': 'Point', 'coordinates': (-79.29747446, 43.72565086)}"
-24077,13966,GO-2016797776,THEFT UNDER - BICYCLE,2016-05-07T00:00:00,2016,May,Saturday,7,128,3,2016-05-09T00:00:00,2016,May,Monday,9,130,18,D41,Toronto,120,Clairlea-Birchmount (120),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MAUHEM,,EL,10,,2000.0,STOLEN,24062,"{'type': 'Point', 'coordinates': (-79.27236827, 43.71244072)}"
-24078,14401,GO-20142667728,THEFT UNDER,2014-07-23T00:00:00,2014,July,Wednesday,23,204,20,2014-08-09T00:00:00,2014,August,Saturday,9,221,14,D41,Toronto,120,Clairlea-Birchmount (120),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,MOMENTUM,OT,10,GRN,100.0,STOLEN,24063,"{'type': 'Point', 'coordinates': (-79.29072487, 43.71662775)}"
-24079,16942,GO-20179009559,THEFT UNDER - BICYCLE,2017-07-04T00:00:00,2017,July,Tuesday,4,185,14,2017-07-06T00:00:00,2017,July,Thursday,6,187,21,D41,Toronto,120,Clairlea-Birchmount (120),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,,MT,18,WHI,0.0,STOLEN,24064,"{'type': 'Point', 'coordinates': (-79.26287959, 43.709466160000005)}"
-24080,16950,GO-20171282723,B&E,2017-06-30T00:00:00,2017,June,Friday,30,181,0,2017-07-17T00:00:00,2017,July,Monday,17,198,17,D41,Toronto,120,Clairlea-Birchmount (120),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,DR FINE,OT,8,BRN,1200.0,STOLEN,24065,"{'type': 'Point', 'coordinates': (-79.28169165, 43.71651853)}"
-24081,16962,GO-20179012034,THEFT UNDER - BICYCLE,2017-08-02T00:00:00,2017,August,Wednesday,2,214,15,2017-08-09T00:00:00,2017,August,Wednesday,9,221,18,D41,Toronto,120,Clairlea-Birchmount (120),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,HF,53045C 35615Y,BM,1,BLU,111.0,STOLEN,24066,"{'type': 'Point', 'coordinates': (-79.26897825, 43.70920361)}"
-24082,17002,GO-20179018989,THEFT UNDER,2017-11-01T00:00:00,2017,November,Wednesday,1,305,12,2017-11-06T00:00:00,2017,November,Monday,6,310,12,D41,Toronto,120,Clairlea-Birchmount (120),"Apartment (Rooming House, Condo)",Apartment,RA,,OT,15,BRN,500.0,STOLEN,24067,"{'type': 'Point', 'coordinates': (-79.28589258, 43.71588716)}"
-24083,764,GO-20179009343,THEFT UNDER - BICYCLE,2017-07-03T00:00:00,2017,July,Monday,3,184,10,2017-07-03T00:00:00,2017,July,Monday,3,184,11,D41,Toronto,121,Oakridge (121),Ttc Subway Station,Transit,OT,MILANO,RG,21,BLK,549.0,STOLEN,24099,"{'type': 'Point', 'coordinates': (-79.28898153, 43.69286837)}"
-24084,17197,GO-20152195193,THEFT UNDER,2015-12-22T00:00:00,2015,December,Tuesday,22,356,7,2015-12-23T00:00:00,2015,December,Wednesday,23,357,8,D41,Toronto,120,Clairlea-Birchmount (120),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,SPORT,RG,10,BLK,400.0,STOLEN,24069,"{'type': 'Point', 'coordinates': (-79.28241418, 43.7240473)}"
-24085,17209,GO-2016482658,THEFT UNDER,2016-03-20T00:00:00,2016,March,Sunday,20,80,13,2016-03-21T00:00:00,2016,March,Monday,21,81,0,D41,Toronto,120,Clairlea-Birchmount (120),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,500W,EL,40,RED,1300.0,STOLEN,24070,"{'type': 'Point', 'coordinates': (-79.29140277000002, 43.71103919)}"
-24086,17307,GO-20179004770,THEFT UNDER - BICYCLE,2017-04-17T00:00:00,2017,April,Monday,17,107,1,2017-04-17T00:00:00,2017,April,Monday,17,107,3,D41,Toronto,120,Clairlea-Birchmount (120),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,CRUISER TRICYCL,RE,1,ONG,1000.0,STOLEN,24071,"{'type': 'Point', 'coordinates': (-79.29489225, 43.70895954)}"
-24087,17308,GO-2017677924,THEFT OF EBIKE UNDER $5000,2017-04-18T00:00:00,2017,April,Tuesday,18,108,4,2017-04-18T00:00:00,2017,April,Tuesday,18,108,5,D41,Toronto,120,Clairlea-Birchmount (120),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,UNKNOWN,EL,0,OTH,900.0,STOLEN,24072,"{'type': 'Point', 'coordinates': (-79.28728477, 43.70147151)}"
-24088,17462,GO-20142623529,B&E,2014-07-26T00:00:00,2014,July,Saturday,26,207,9,2014-08-02T00:00:00,2014,August,Saturday,2,214,22,D41,Toronto,120,Clairlea-Birchmount (120),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,,MT,0,BLU,250.0,STOLEN,24073,"{'type': 'Point', 'coordinates': (-79.29240053, 43.70061376)}"
-24089,17473,GO-20142794571,THEFT UNDER,2014-08-23T00:00:00,2014,August,Saturday,23,235,17,2014-08-28T00:00:00,2014,August,Thursday,28,240,16,D41,Toronto,120,Clairlea-Birchmount (120),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,HARD ROCK SPORT,MT,21,BLKRED,900.0,STOLEN,24074,"{'type': 'Point', 'coordinates': (-79.29213441, 43.7199338)}"
-24090,19979,GO-20189032209,THEFT UNDER,2018-09-25T00:00:00,2018,September,Tuesday,25,268,12,2018-09-28T00:00:00,2018,September,Friday,28,271,10,D41,Toronto,120,Clairlea-Birchmount (120),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,,BM,1,BLK,0.0,STOLEN,24075,"{'type': 'Point', 'coordinates': (-79.27526843, 43.71010123)}"
-24091,20017,GO-20199009452,THEFT UNDER,2019-03-10T00:00:00,2019,March,Sunday,10,69,15,2019-03-24T00:00:00,2019,March,Sunday,24,83,15,D41,Toronto,120,Clairlea-Birchmount (120),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ROAD BIKE,RC,18,BLK,300.0,STOLEN,24076,"{'type': 'Point', 'coordinates': (-79.28189636, 43.71423185)}"
-24092,20018,GO-20199009452,THEFT UNDER,2019-03-10T00:00:00,2019,March,Sunday,10,69,15,2019-03-24T00:00:00,2019,March,Sunday,24,83,15,D41,Toronto,120,Clairlea-Birchmount (120),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,2001 VOLANTE,RG,24,GLD,600.0,STOLEN,24077,"{'type': 'Point', 'coordinates': (-79.28189636, 43.71423185)}"
-24093,20043,GO-20199019623,THEFT UNDER,2019-06-21T00:00:00,2019,June,Friday,21,172,15,2019-06-21T00:00:00,2019,June,Friday,21,172,22,D41,Toronto,120,Clairlea-Birchmount (120),Convenience Stores,Commercial,UK,HYPER BEAR MOUN,MT,21,BLK,198.0,STOLEN,24078,"{'type': 'Point', 'coordinates': (-79.29617448, 43.72236242)}"
-24094,20308,GO-20189017016,THEFT UNDER - BICYCLE,2018-05-18T00:00:00,2018,May,Friday,18,138,18,2018-06-01T00:00:00,2018,June,Friday,1,152,11,D41,Toronto,120,Clairlea-Birchmount (120),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,FIRESTONE,TO,3,WHI,300.0,STOLEN,24079,"{'type': 'Point', 'coordinates': (-79.30205957, 43.72338091)}"
-24095,20345,GO-20181490479,THEFT OF EBIKE UNDER $5000,2018-08-13T00:00:00,2018,August,Monday,13,225,12,2018-08-13T00:00:00,2018,August,Monday,13,225,13,D41,Toronto,120,Clairlea-Birchmount (120),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,EL,10,GRY,3000.0,STOLEN,24080,"{'type': 'Point', 'coordinates': (-79.28569903, 43.7232884)}"
-24096,20395,GO-20151022302,THEFT UNDER,2015-06-18T00:00:00,2015,June,Thursday,18,169,9,2015-06-18T00:00:00,2015,June,Thursday,18,169,9,D41,Toronto,120,Clairlea-Birchmount (120),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNONW,,SC,0,RED,1250.0,STOLEN,24081,"{'type': 'Point', 'coordinates': (-79.26809008, 43.70699821)}"
-24097,20575,GO-2017861518,THEFT FROM MOTOR VEHICLE OVER,2017-05-15T00:00:00,2017,May,Monday,15,135,21,2017-05-16T00:00:00,2017,May,Tuesday,16,136,10,D41,Toronto,120,Clairlea-Birchmount (120),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DEVINCI,SPARTAN CARBON,MT,1,BLK,3000.0,STOLEN,24082,"{'type': 'Point', 'coordinates': (-79.27307089, 43.71858335)}"
-24098,832,GO-20179009983,THEFT UNDER - BICYCLE,2017-07-11T00:00:00,2017,July,Tuesday,11,192,7,2017-07-11T00:00:00,2017,July,Tuesday,11,192,18,D41,Toronto,121,Oakridge (121),Ttc Subway Station,Transit,RA,,MT,10,GRY,100.0,STOLEN,24100,"{'type': 'Point', 'coordinates': (-79.28296609, 43.69417839)}"
-24099,20862,GO-20142053191,THEFT UNDER,2014-05-10T00:00:00,2014,May,Saturday,10,130,16,2014-05-10T00:00:00,2014,May,Saturday,10,130,18,D41,Toronto,120,Clairlea-Birchmount (120),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,IRON HORSE,,MT,24,BLU,500.0,STOLEN,24083,"{'type': 'Point', 'coordinates': (-79.30205957, 43.72338091)}"
-24100,20864,GO-20142197431,B&E,2014-05-29T00:00:00,2014,May,Thursday,29,149,14,2014-06-01T00:00:00,2014,June,Sunday,1,152,12,D41,Toronto,120,Clairlea-Birchmount (120),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,MT,21,BLK,,STOLEN,24084,"{'type': 'Point', 'coordinates': (-79.29142473, 43.70602391)}"
-24101,20878,GO-20142464589,THEFT UNDER,2014-07-09T00:00:00,2014,July,Wednesday,9,190,17,2014-07-09T00:00:00,2014,July,Wednesday,9,190,19,D41,Toronto,120,Clairlea-Birchmount (120),Schools During Un-Supervised Activity,Educational,UNKNOWN MAKE,ARISHI,BM,18,,100.0,STOLEN,24085,"{'type': 'Point', 'coordinates': (-79.27236644, 43.70829425)}"
-24102,20879,GO-20142464589,THEFT UNDER,2014-07-09T00:00:00,2014,July,Wednesday,9,190,17,2014-07-09T00:00:00,2014,July,Wednesday,9,190,19,D41,Toronto,120,Clairlea-Birchmount (120),Schools During Un-Supervised Activity,Educational,RALEIGH,ROCK,BM,0,,100.0,STOLEN,24086,"{'type': 'Point', 'coordinates': (-79.27236644, 43.70829425)}"
-24103,23416,GO-20179007351,B&E,2017-05-29T00:00:00,2017,May,Monday,29,149,19,2017-06-01T00:00:00,2017,June,Thursday,1,152,19,D41,Toronto,120,Clairlea-Birchmount (120),"Apartment (Rooming House, Condo)",Apartment,OT,RS,RC,10,WHI,0.0,STOLEN,24087,"{'type': 'Point', 'coordinates': (-79.28589258, 43.71588716)}"
-24104,23606,GO-2015921746,THEFT UNDER,2015-06-02T00:00:00,2015,June,Tuesday,2,153,11,2015-06-02T00:00:00,2015,June,Tuesday,2,153,11,D41,Toronto,120,Clairlea-Birchmount (120),Bar / Restaurant,Commercial,UNKNOWN,UNKNOWN,MT,10,GRN,100.0,STOLEN,24088,"{'type': 'Point', 'coordinates': (-79.26809008, 43.70699821)}"
-24105,23609,GO-20159003385,THEFT UNDER,2015-06-05T00:00:00,2015,June,Friday,5,156,10,2015-06-06T00:00:00,2015,June,Saturday,6,157,15,D41,Toronto,120,Clairlea-Birchmount (120),Schools During Un-Supervised Activity,Educational,OT,EXPEDITION,MT,24,BLU,350.0,STOLEN,24089,"{'type': 'Point', 'coordinates': (-79.28589258, 43.71588716)}"
-24106,23653,GO-20159007316,THEFT UNDER,2015-09-16T00:00:00,2015,September,Wednesday,16,259,19,2015-09-17T00:00:00,2015,September,Thursday,17,260,10,D41,Toronto,120,Clairlea-Birchmount (120),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SC,HERA,MT,24,ONG,500.0,STOLEN,24090,"{'type': 'Point', 'coordinates': (-79.28880433, 43.69966821)}"
-24107,23708,GO-20169005916,THEFT UNDER - BICYCLE,2016-06-13T00:00:00,2016,June,Monday,13,165,8,2016-06-16T00:00:00,2016,June,Thursday,16,168,16,D41,Toronto,120,Clairlea-Birchmount (120),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,5,RED,100.0,STOLEN,24091,"{'type': 'Point', 'coordinates': (-79.29658027000002, 43.71430699)}"
-24108,23709,GO-20169005916,THEFT UNDER - BICYCLE,2016-06-13T00:00:00,2016,June,Monday,13,165,8,2016-06-16T00:00:00,2016,June,Thursday,16,168,16,D41,Toronto,120,Clairlea-Birchmount (120),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,5,GRN,150.0,STOLEN,24092,"{'type': 'Point', 'coordinates': (-79.29658027000002, 43.71430699)}"
-24109,23902,GO-20149004355,THEFT UNDER,2014-06-22T00:00:00,2014,June,Sunday,22,173,11,2014-06-23T00:00:00,2014,June,Monday,23,174,12,D41,Toronto,120,Clairlea-Birchmount (120),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,12,OTH,0.0,STOLEN,24093,"{'type': 'Point', 'coordinates': (-79.29161883, 43.7039078)}"
-24110,23949,GO-20142894748,B&E,2014-09-11T00:00:00,2014,September,Thursday,11,254,23,2014-09-12T00:00:00,2014,September,Friday,12,255,11,D41,Toronto,120,Clairlea-Birchmount (120),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,UNK,MT,10,BLKGRN,129.0,STOLEN,24094,"{'type': 'Point', 'coordinates': (-79.27378098, 43.70996826)}"
-24111,23950,GO-20142894748,B&E,2014-09-11T00:00:00,2014,September,Thursday,11,254,23,2014-09-12T00:00:00,2014,September,Friday,12,255,11,D41,Toronto,120,Clairlea-Birchmount (120),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,UNK,BM,10,BLKSIL,140.0,STOLEN,24095,"{'type': 'Point', 'coordinates': (-79.27378098, 43.70996826)}"
-24112,23962,GO-20143016122,THEFT UNDER,2014-09-29T00:00:00,2014,September,Monday,29,272,10,2014-09-30T00:00:00,2014,September,Tuesday,30,273,17,D41,Toronto,120,Clairlea-Birchmount (120),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,HYBRID,OT,1,BLU,200.0,STOLEN,24096,"{'type': 'Point', 'coordinates': (-79.29508928, 43.70999888)}"
-24113,519,GO-20179007373,THEFT UNDER - BICYCLE,2017-06-01T00:00:00,2017,June,Thursday,1,152,14,2017-06-02T00:00:00,2017,June,Friday,2,153,10,D41,Toronto,121,Oakridge (121),Ttc Subway Station,Transit,CC,ORION 700C,OT,21,BLK,400.0,STOLEN,24097,"{'type': 'Point', 'coordinates': (-79.28898153, 43.69286837)}"
-24114,579,GO-20179007870,THEFT UNDER,2017-06-10T00:00:00,2017,June,Saturday,10,161,18,2017-06-10T00:00:00,2017,June,Saturday,10,161,21,D41,Toronto,121,Oakridge (121),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,GTX2,RC,21,RED,650.0,STOLEN,24098,"{'type': 'Point', 'coordinates': (-79.285359, 43.69699745)}"
-24115,962,GO-20171319281,THEFT UNDER,2017-07-10T00:00:00,2017,July,Monday,10,191,21,2017-07-22T00:00:00,2017,July,Saturday,22,203,23,D41,Toronto,121,Oakridge (121),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,GIRLS,OT,1,WHI,200.0,STOLEN,24101,"{'type': 'Point', 'coordinates': (-79.28616014, 43.69346982)}"
-24116,15071,GO-20149006349,THEFT UNDER,2014-08-14T00:00:00,2014,August,Thursday,14,226,3,2014-08-27T00:00:00,2014,August,Wednesday,27,239,12,D11,Toronto,114,Lambton Baby Point (114),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,TO,15,GRY,800.0,STOLEN,24102,"{'type': 'Point', 'coordinates': (-79.49736441, 43.65441098)}"
-24117,11378,GO-2016905732,THEFT UNDER - BICYCLE,2016-05-25T00:00:00,2016,May,Wednesday,25,146,21,2016-05-26T00:00:00,2016,May,Thursday,26,147,7,D41,Toronto,122,Birchcliffe-Cliffside (122),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,15,GRNGRY,300.0,STOLEN,24103,"{'type': 'Point', 'coordinates': (-79.27209977, 43.69067956)}"
-24118,11379,GO-2016905732,THEFT UNDER - BICYCLE,2016-05-25T00:00:00,2016,May,Wednesday,25,146,21,2016-05-26T00:00:00,2016,May,Thursday,26,147,7,D41,Toronto,122,Birchcliffe-Cliffside (122),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,BOGA,OT,0,RED,900.0,STOLEN,24104,"{'type': 'Point', 'coordinates': (-79.27209977, 43.69067956)}"
-24119,15620,GO-20179011049,THEFT UNDER - BICYCLE,2017-07-25T00:00:00,2017,July,Tuesday,25,206,21,2017-07-26T00:00:00,2017,July,Wednesday,26,207,10,D13,Toronto,107,Oakwood Village (107),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,,MT,10,GRY,200.0,STOLEN,24105,"{'type': 'Point', 'coordinates': (-79.44119214, 43.68525205)}"
-24120,6457,GO-20201146361,THEFT UNDER - BICYCLE,2020-05-25T00:00:00,2020,May,Monday,25,146,9,2020-06-22T00:00:00,2020,June,Monday,22,174,6,D41,Toronto,124,Kennedy Park (124),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,ZZZ,MOUNTAIN BIKE,MT,0,YEL,,STOLEN,24106,"{'type': 'Point', 'coordinates': (-79.25334572, 43.72589313)}"
-24121,18132,GO-20161397494,THEFT UNDER - BICYCLE,2016-08-04T00:00:00,2016,August,Thursday,4,217,17,2016-08-08T00:00:00,2016,August,Monday,8,221,17,D13,Toronto,107,Oakwood Village (107),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SUPERCYCLE,SC1800,RG,18,SILPLE,100.0,STOLEN,24107,"{'type': 'Point', 'coordinates': (-79.4379917, 43.69560832)}"
-24122,9687,GO-2015905086,THEFT UNDER,2015-05-14T00:00:00,2015,May,Thursday,14,134,12,2015-05-30T00:00:00,2015,May,Saturday,30,150,17,D41,Toronto,124,Kennedy Park (124),Ttc Subway Station,Transit,GIANT,YUKON,MT,21,LBL,350.0,STOLEN,24108,"{'type': 'Point', 'coordinates': (-79.26451403, 43.73277006)}"
-24123,18133,GO-20161397494,THEFT UNDER - BICYCLE,2016-08-04T00:00:00,2016,August,Thursday,4,217,17,2016-08-08T00:00:00,2016,August,Monday,8,221,17,D13,Toronto,107,Oakwood Village (107),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN,UNKNOWN,MT,15,GRN,100.0,STOLEN,24109,"{'type': 'Point', 'coordinates': (-79.4379917, 43.69560832)}"
-24124,9726,GO-2015935925,THEFT UNDER,2015-04-29T00:00:00,2015,April,Wednesday,29,119,15,2015-06-05T00:00:00,2015,June,Friday,5,156,17,D41,Toronto,124,Kennedy Park (124),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,WOODY,OT,1,LGR,950.0,STOLEN,24110,"{'type': 'Point', 'coordinates': (-79.25754847000002, 43.73327278)}"
-24125,18134,GO-20161397494,THEFT UNDER - BICYCLE,2016-08-04T00:00:00,2016,August,Thursday,4,217,17,2016-08-08T00:00:00,2016,August,Monday,8,221,17,D13,Toronto,107,Oakwood Village (107),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN,UNKNOWN,RG,15,BLKWHI,100.0,STOLEN,24111,"{'type': 'Point', 'coordinates': (-79.4379917, 43.69560832)}"
-24126,10627,GO-20151771239,THEFT UNDER,2015-10-14T00:00:00,2015,October,Wednesday,14,287,12,2015-10-14T00:00:00,2015,October,Wednesday,14,287,16,D41,Toronto,124,Kennedy Park (124),Bar / Restaurant,Commercial,CYCLONE,EBIKE,EL,1,RED,1500.0,STOLEN,24112,"{'type': 'Point', 'coordinates': (-79.25348875, 43.72387679)}"
-24127,18136,GO-20161457198,THEFT UNDER - BICYCLE,2016-08-14T00:00:00,2016,August,Sunday,14,227,20,2016-08-17T00:00:00,2016,August,Wednesday,17,230,20,D13,Toronto,107,Oakwood Village (107),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,MT,5,BLUWHI,75.0,STOLEN,24113,"{'type': 'Point', 'coordinates': (-79.44212214, 43.69578451)}"
-24128,11180,GO-2016689998,THEFT UNDER - BICYCLE,2016-04-19T00:00:00,2016,April,Tuesday,19,110,14,2016-04-22T00:00:00,2016,April,Friday,22,113,23,D41,Toronto,124,Kennedy Park (124),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,21,REDWHI,,STOLEN,24114,"{'type': 'Point', 'coordinates': (-79.25078156, 43.73069766)}"
-24129,18223,GO-20179011884,THEFT UNDER - BICYCLE,2017-08-05T00:00:00,2017,August,Saturday,5,217,0,2017-08-08T00:00:00,2017,August,Tuesday,8,220,7,D13,Toronto,107,Oakwood Village (107),"Apartment (Rooming House, Condo)",Apartment,NO,VFR,RG,21,GRY,1000.0,STOLEN,24115,"{'type': 'Point', 'coordinates': (-79.43475591, 43.69254767000001)}"
-24130,11909,GO-20161309573,CARELESS DRIVING- HTA,2016-07-25T00:00:00,2016,July,Monday,25,207,23,2016-07-26T00:00:00,2016,July,Tuesday,26,208,0,D41,Toronto,124,Kennedy Park (124),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,RC,14,WHI,,UNKNOWN,24116,"{'type': 'Point', 'coordinates': (-79.2658779, 43.72740811)}"
-24131,18255,GO-20191228393,THEFT UNDER - BICYCLE,2019-06-28T00:00:00,2019,June,Friday,28,179,19,2019-07-02T00:00:00,2019,July,Tuesday,2,183,12,D13,Toronto,107,Oakwood Village (107),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SCHWINN,KICKER PRO,MT,21,GRY,400.0,STOLEN,24117,"{'type': 'Point', 'coordinates': (-79.43987062, 43.69704645)}"
-24132,13484,GO-20199014227,THEFT UNDER,2019-05-05T00:00:00,2019,May,Sunday,5,125,12,2019-05-07T00:00:00,2019,May,Tuesday,7,127,16,D41,Toronto,124,Kennedy Park (124),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GT,GT AGGRESSOR CO,MT,7,GRY,400.0,STOLEN,24118,"{'type': 'Point', 'coordinates': (-79.25334572, 43.72589313)}"
-24133,18285,GO-20209020988,THEFT UNDER,2020-08-16T00:00:00,2020,August,Sunday,16,229,2,2020-08-22T00:00:00,2020,August,Saturday,22,235,14,D13,Toronto,107,Oakwood Village (107),"Apartment (Rooming House, Condo)",Apartment,CC,,MT,3,,600.0,STOLEN,24119,"{'type': 'Point', 'coordinates': (-79.4379917, 43.69560832)}"
-24134,13523,GO-20191767265,THEFT UNDER,2019-09-13T00:00:00,2019,September,Friday,13,256,15,2019-09-14T00:00:00,2019,September,Saturday,14,257,17,D41,Toronto,124,Kennedy Park (124),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OTHER,,RC,15,RED,150.0,STOLEN,24120,"{'type': 'Point', 'coordinates': (-79.26174292, 43.73369145)}"
-24135,24652,GO-20142890505,THEFT UNDER,2014-09-08T00:00:00,2014,September,Monday,8,251,18,2014-09-11T00:00:00,2014,September,Thursday,11,254,17,D13,Toronto,108,Briar Hill-Belgravia (108),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,REAR,,EL,0,BLK,,STOLEN,24121,"{'type': 'Point', 'coordinates': (-79.45023952, 43.695692570000006)}"
-24136,18293,GO-20209023075,THEFT UNDER,2020-09-12T00:00:00,2020,September,Saturday,12,256,2,2020-09-12T00:00:00,2020,September,Saturday,12,256,16,D13,Toronto,107,Oakwood Village (107),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,,RG,6,PLE,500.0,STOLEN,24122,"{'type': 'Point', 'coordinates': (-79.43737771, 43.68655089)}"
-24137,18294,GO-20209023075,THEFT UNDER,2020-09-12T00:00:00,2020,September,Saturday,12,256,2,2020-09-12T00:00:00,2020,September,Saturday,12,256,16,D13,Toronto,107,Oakwood Village (107),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,,RG,8,BLK,500.0,STOLEN,24123,"{'type': 'Point', 'coordinates': (-79.43737771, 43.68655089)}"
-24138,18295,GO-20209023075,THEFT UNDER,2020-09-12T00:00:00,2020,September,Saturday,12,256,2,2020-09-12T00:00:00,2020,September,Saturday,12,256,16,D13,Toronto,107,Oakwood Village (107),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,RG,3,GRN,500.0,STOLEN,24124,"{'type': 'Point', 'coordinates': (-79.43737771, 43.68655089)}"
-24139,18335,GO-20149003711,THEFT UNDER,2014-05-30T00:00:00,2014,May,Friday,30,150,0,2014-05-31T00:00:00,2014,May,Saturday,31,151,11,D13,Toronto,107,Oakwood Village (107),Schools During Un-Supervised Activity,Educational,NO,STORM 9.1,MT,24,GRN,599.0,STOLEN,24125,"{'type': 'Point', 'coordinates': (-79.44891553, 43.69254667)}"
-24140,18347,GO-20142493630,THEFT UNDER,2014-07-13T00:00:00,2014,July,Sunday,13,194,23,2014-07-14T00:00:00,2014,July,Monday,14,195,8,D13,Toronto,107,Oakwood Village (107),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,UNK,MT,0,BLKPLE,500.0,STOLEN,24126,"{'type': 'Point', 'coordinates': (-79.43836092, 43.6965543)}"
-24141,18386,GO-2015452947,THEFT UNDER,2015-03-17T00:00:00,2015,March,Tuesday,17,76,18,2015-03-17T00:00:00,2015,March,Tuesday,17,76,18,D13,Toronto,107,Oakwood Village (107),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,PRESTO,MT,21,BLKRED,369.0,STOLEN,24127,"{'type': 'Point', 'coordinates': (-79.44037788, 43.68878283)}"
-24142,18464,GO-20159008274,THEFT UNDER,2015-10-06T00:00:00,2015,October,Tuesday,6,279,16,2015-10-06T00:00:00,2015,October,Tuesday,6,279,20,D13,Toronto,107,Oakwood Village (107),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KH,,RC,1,GRN,500.0,STOLEN,24128,"{'type': 'Point', 'coordinates': (-79.43317588, 43.68684183)}"
-24143,21505,GO-20171353969,THEFT UNDER - BICYCLE,2017-07-14T00:00:00,2017,July,Friday,14,195,0,2017-08-01T00:00:00,2017,August,Tuesday,1,213,11,D13,Toronto,107,Oakwood Village (107),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,OT,0,LGR,700.0,STOLEN,24129,"{'type': 'Point', 'coordinates': (-79.43565108, 43.67959208)}"
-24144,21506,GO-20171485126,B&E,2017-08-14T00:00:00,2017,August,Monday,14,226,20,2017-08-17T00:00:00,2017,August,Thursday,17,229,10,D13,Toronto,107,Oakwood Village (107),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,QUICK SL 1,MT,13,GRYRED,999.0,STOLEN,24130,"{'type': 'Point', 'coordinates': (-79.43987062, 43.69704645)}"
-24145,21525,GO-20189014355,THEFT UNDER,2018-05-07T00:00:00,2018,May,Monday,7,127,19,2018-05-09T00:00:00,2018,May,Wednesday,9,129,19,D13,Toronto,107,Oakwood Village (107),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,,RG,10,GRN,350.0,STOLEN,24131,"{'type': 'Point', 'coordinates': (-79.43886354, 43.6915407)}"
-24146,21539,GO-20199019993,THEFT UNDER - BICYCLE,2019-06-24T00:00:00,2019,June,Monday,24,175,16,2019-06-25T00:00:00,2019,June,Tuesday,25,176,19,D13,Toronto,107,Oakwood Village (107),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,GTX-2 700C,MT,21,BLK,550.0,STOLEN,24132,"{'type': 'Point', 'coordinates': (-79.4379917, 43.69560832)}"
-24147,21540,GO-20199019993,THEFT UNDER - BICYCLE,2019-06-24T00:00:00,2019,June,Monday,24,175,16,2019-06-25T00:00:00,2019,June,Tuesday,25,176,19,D13,Toronto,107,Oakwood Village (107),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,DUAL SUSPENSION,MT,18,RED,170.0,STOLEN,24133,"{'type': 'Point', 'coordinates': (-79.4379917, 43.69560832)}"
-24148,21546,GO-20199028531,THEFT UNDER - BICYCLE,2019-09-02T00:00:00,2019,September,Monday,2,245,0,2019-09-02T00:00:00,2019,September,Monday,2,245,19,D13,Toronto,107,Oakwood Village (107),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KO,KONA ROVE 52,TO,12,BLK,1200.0,STOLEN,24134,"{'type': 'Point', 'coordinates': (-79.4439162, 43.68014969)}"
-24149,21560,GO-20201203997,THEFT UNDER - BICYCLE,2020-06-26T00:00:00,2020,June,Friday,26,178,22,2020-06-30T00:00:00,2020,June,Tuesday,30,182,15,D13,Toronto,107,Oakwood Village (107),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,,MT,24,BLK,750.0,STOLEN,24135,"{'type': 'Point', 'coordinates': (-79.44499207, 43.68579953)}"
-24150,21990,GO-20202148043,B&E,2020-11-11T00:00:00,2020,November,Wednesday,11,316,12,2020-11-12T00:00:00,2020,November,Thursday,12,317,13,D13,Toronto,107,Oakwood Village (107),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MARIN OR MARINO,,MT,18,BLKSIL,2500.0,STOLEN,24136,"{'type': 'Point', 'coordinates': (-79.44420571, 43.69279046)}"
-24151,24661,GO-20143057626,THEFT UNDER,2014-10-07T00:00:00,2014,October,Tuesday,7,280,0,2014-10-07T00:00:00,2014,October,Tuesday,7,280,6,D13,Toronto,107,Oakwood Village (107),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,MT,10,OTH,200.0,STOLEN,24137,"{'type': 'Point', 'coordinates': (-79.4420163, 43.69315252)}"
-24152,24590,GO-20141474673,THEFT UNDER,2014-01-31T00:00:00,2014,January,Friday,31,31,15,2014-02-05T00:00:00,2014,February,Wednesday,5,36,15,D12,Toronto,111,Rockcliffe-Smythe (111),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SWINN,COMFORT,MT,24,GRN,500.0,STOLEN,24138,"{'type': 'Point', 'coordinates': (-79.5028461, 43.67080448)}"
-24153,15072,GO-20149006349,THEFT UNDER,2014-08-14T00:00:00,2014,August,Thursday,14,226,3,2014-08-27T00:00:00,2014,August,Wednesday,27,239,12,D11,Toronto,114,Lambton Baby Point (114),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,,MT,10,RED,400.0,STOLEN,24139,"{'type': 'Point', 'coordinates': (-79.49736441, 43.65441098)}"
-24154,11535,GO-20161038443,THEFT UNDER,2016-06-14T00:00:00,2016,June,Tuesday,14,166,20,2016-06-14T00:00:00,2016,June,Tuesday,14,166,21,D41,Toronto,122,Birchcliffe-Cliffside (122),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,TR,1,REDSIL,100.0,STOLEN,24140,"{'type': 'Point', 'coordinates': (-79.25295929, 43.71661626)}"
-24155,24662,GO-20143057626,THEFT UNDER,2014-10-07T00:00:00,2014,October,Tuesday,7,280,0,2014-10-07T00:00:00,2014,October,Tuesday,7,280,6,D13,Toronto,107,Oakwood Village (107),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,RG,0,PLE,80.0,STOLEN,24141,"{'type': 'Point', 'coordinates': (-79.4420163, 43.69315252)}"
-24156,25191,GO-2016877046,THEFT UNDER - BICYCLE,2016-05-21T00:00:00,2016,May,Saturday,21,142,13,2016-05-21T00:00:00,2016,May,Saturday,21,142,18,D13,Toronto,107,Oakwood Village (107),"Apartment (Rooming House, Condo)",Apartment,OTHER,UNK,RG,40,BLKSIL,,STOLEN,24142,"{'type': 'Point', 'coordinates': (-79.43918286, 43.69535395)}"
-24157,25271,GO-20161712929,THEFT UNDER - BICYCLE,2016-09-26T00:00:00,2016,September,Monday,26,270,13,2016-09-26T00:00:00,2016,September,Monday,26,270,14,D13,Toronto,107,Oakwood Village (107),Unknown,Other,OTHER,UNKNOWN,MT,10,GRYPLE,1000.0,STOLEN,24143,"{'type': 'Point', 'coordinates': (-79.43082074, 43.68354893)}"
-24158,25331,GO-20189024705,THEFT UNDER - BICYCLE,2018-07-31T00:00:00,2018,July,Tuesday,31,212,16,2018-07-31T00:00:00,2018,July,Tuesday,31,212,18,D13,Toronto,107,Oakwood Village (107),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,GT,CHUCKER,MT,10,MRN,400.0,STOLEN,24144,"{'type': 'Point', 'coordinates': (-79.44764573, 43.69625936)}"
-24159,25332,GO-20189026734,THEFT UNDER - BICYCLE,2018-08-16T00:00:00,2018,August,Thursday,16,228,21,2018-08-17T00:00:00,2018,August,Friday,17,229,0,D13,Toronto,107,Oakwood Village (107),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ALLEZ,RG,9,BLK,600.0,STOLEN,24145,"{'type': 'Point', 'coordinates': (-79.44678153, 43.68727175)}"
-24160,25334,GO-20189028088,THEFT UNDER - BICYCLE,2018-08-25T00:00:00,2018,August,Saturday,25,237,0,2018-08-27T00:00:00,2018,August,Monday,27,239,11,D13,Toronto,107,Oakwood Village (107),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KH,URBAN SOUL,RG,1,BLK,850.0,STOLEN,24146,"{'type': 'Point', 'coordinates': (-79.44499207, 43.68579953)}"
-24161,25346,GO-20199023781,THEFT UNDER,2019-06-20T00:00:00,2019,June,Thursday,20,171,3,2019-07-26T00:00:00,2019,July,Friday,26,207,9,D13,Toronto,107,Oakwood Village (107),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,1,,100.0,STOLEN,24147,"{'type': 'Point', 'coordinates': (-79.44147728, 43.68305258)}"
-24162,25357,GO-20191694085,THEFT UNDER - BICYCLE,2019-09-04T00:00:00,2019,September,Wednesday,4,247,15,2019-09-06T00:00:00,2019,September,Friday,6,249,18,D13,Toronto,107,Oakwood Village (107),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OTHER,,BM,1,MUL,50.0,STOLEN,24148,"{'type': 'Point', 'coordinates': (-79.43837732, 43.6863733)}"
-24163,25372,GO-20209016734,THEFT UNDER,2020-07-03T00:00:00,2020,July,Friday,3,185,9,2020-07-03T00:00:00,2020,July,Friday,3,185,12,D13,Toronto,107,Oakwood Village (107),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,,RG,37,,678.0,STOLEN,24149,"{'type': 'Point', 'coordinates': (-79.4472933, 43.69635948)}"
-24164,237,GO-2017677454,PROPERTY - RECOVERED,2017-04-18T00:00:00,2017,April,Tuesday,18,108,2,2017-04-18T00:00:00,2017,April,Tuesday,18,108,2,D13,Toronto,108,Briar Hill-Belgravia (108),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,,RC,0,BLUWHI,,STOLEN,24150,"{'type': 'Point', 'coordinates': (-79.44203947, 43.704666800000005)}"
-24165,1004,GO-20171346509,THEFT UNDER - BICYCLE,2017-07-26T00:00:00,2017,July,Wednesday,26,207,22,2017-07-27T00:00:00,2017,July,Thursday,27,208,7,D13,Toronto,108,Briar Hill-Belgravia (108),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,700C,OT,21,BLK,350.0,STOLEN,24151,"{'type': 'Point', 'coordinates': (-79.44759606, 43.69710601)}"
-24166,1058,GO-20179011762,THEFT UNDER - BICYCLE,2017-08-05T00:00:00,2017,August,Saturday,5,217,15,2017-08-05T00:00:00,2017,August,Saturday,5,217,19,D13,Toronto,108,Briar Hill-Belgravia (108),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,RG,10,BLK,0.0,STOLEN,24152,"{'type': 'Point', 'coordinates': (-79.44433619, 43.69696873)}"
-24167,1534,GO-20171734226,THEFT UNDER - BICYCLE,2017-09-24T00:00:00,2017,September,Sunday,24,267,10,2017-09-24T00:00:00,2017,September,Sunday,24,267,13,D13,Toronto,108,Briar Hill-Belgravia (108),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,BARRON,RG,21,GRYONG,400.0,STOLEN,24153,"{'type': 'Point', 'coordinates': (-79.45208117, 43.70235215)}"
-24168,1651,GO-20171857722,THEFT UNDER - BICYCLE,2017-10-01T00:00:00,2017,October,Sunday,1,274,0,2017-10-13T00:00:00,2017,October,Friday,13,286,20,D13,Toronto,108,Briar Hill-Belgravia (108),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,,MT,12,MUL,200.0,STOLEN,24154,"{'type': 'Point', 'coordinates': (-79.44025884, 43.70032481)}"
-24169,1677,GO-20179017454,THEFT UNDER,2017-10-17T00:00:00,2017,October,Tuesday,17,290,17,2017-10-17T00:00:00,2017,October,Tuesday,17,290,19,D13,Toronto,108,Briar Hill-Belgravia (108),Convenience Stores,Commercial,UK,,MT,7,BLU,200.0,STOLEN,24155,"{'type': 'Point', 'coordinates': (-79.45023952, 43.695692570000006)}"
-24170,2115,GO-2018553677,B&E,2018-03-09T00:00:00,2018,March,Friday,9,68,8,2018-03-27T00:00:00,2018,March,Tuesday,27,86,16,D13,Toronto,108,Briar Hill-Belgravia (108),"Apartment (Rooming House, Condo)",Apartment,GARY FISHER,MOUNTAIN,MT,18,GRN,500.0,STOLEN,24156,"{'type': 'Point', 'coordinates': (-79.44170638, 43.70385138)}"
-24171,2171,GO-2018697880,THEFT OF EBIKE UNDER $5000,2018-04-10T00:00:00,2018,April,Tuesday,10,100,11,2018-04-19T00:00:00,2018,April,Thursday,19,109,8,D13,Toronto,108,Briar Hill-Belgravia (108),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,YOMO,EL,1,BLKRED,750.0,STOLEN,24157,"{'type': 'Point', 'coordinates': (-79.44021599, 43.69784622)}"
-24172,2196,GO-20189012711,THEFT UNDER - BICYCLE,2018-04-23T00:00:00,2018,April,Monday,23,113,14,2018-04-24T00:00:00,2018,April,Tuesday,24,114,16,D13,Toronto,108,Briar Hill-Belgravia (108),"Dealership (Car, Motorcycle, Marine, Trailer, Etc.)",Commercial,OT,DEFCON 2,MT,11,BLK,3314.0,STOLEN,24158,"{'type': 'Point', 'coordinates': (-79.45155303, 43.70001234)}"
-24173,2325,GO-20189015162,THEFT UNDER - BICYCLE,2018-04-15T00:00:00,2018,April,Sunday,15,105,18,2018-05-16T00:00:00,2018,May,Wednesday,16,136,13,D13,Toronto,108,Briar Hill-Belgravia (108),"Dealership (Car, Motorcycle, Marine, Trailer, Etc.)",Commercial,OT,2013 JAMIS XEN,RC,20,BLK,2500.0,STOLEN,24159,"{'type': 'Point', 'coordinates': (-79.45155303, 43.70001234)}"
-24174,2533,GO-20189018329,THEFT UNDER - BICYCLE,2018-06-07T00:00:00,2018,June,Thursday,7,158,19,2018-06-12T00:00:00,2018,June,Tuesday,12,163,9,D13,Toronto,108,Briar Hill-Belgravia (108),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,,TO,21,GRY,400.0,STOLEN,24160,"{'type': 'Point', 'coordinates': (-79.45505937, 43.69462616)}"
-24175,2991,GO-20181046421,THEFT OVER,2018-06-09T00:00:00,2018,June,Saturday,9,160,3,2018-06-09T00:00:00,2018,June,Saturday,9,160,16,D13,Toronto,108,Briar Hill-Belgravia (108),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,MT,18,,100.0,STOLEN,24161,"{'type': 'Point', 'coordinates': (-79.46098721000001, 43.69679866)}"
-24176,3583,GO-20181812898,B&E,2018-09-19T00:00:00,2018,September,Wednesday,19,262,9,2018-10-01T00:00:00,2018,October,Monday,1,274,9,D13,Toronto,108,Briar Hill-Belgravia (108),"Apartment (Rooming House, Condo)",Apartment,MIELE,SVELTO,RC,11,BLK,2400.0,STOLEN,24162,"{'type': 'Point', 'coordinates': (-79.44057053, 43.70108497)}"
-24177,3584,GO-20181812898,B&E,2018-09-19T00:00:00,2018,September,Wednesday,19,262,9,2018-10-01T00:00:00,2018,October,Monday,1,274,9,D13,Toronto,108,Briar Hill-Belgravia (108),"Apartment (Rooming House, Condo)",Apartment,ROCKY MOUNTAIN,FUSION,MT,10,BLKRED,650.0,STOLEN,24163,"{'type': 'Point', 'coordinates': (-79.44057053, 43.70108497)}"
-24178,3175,GO-20189026068,THEFT UNDER,2018-08-10T00:00:00,2018,August,Friday,10,222,7,2018-08-12T00:00:00,2018,August,Sunday,12,224,15,D12,Toronto,113,Weston (113),Go Station,Transit,OT,GLOBE A1,RG,21,BLK,400.0,STOLEN,24243,"{'type': 'Point', 'coordinates': (-79.51528516, 43.70035683)}"
-24179,3585,GO-20181812898,B&E,2018-09-19T00:00:00,2018,September,Wednesday,19,262,9,2018-10-01T00:00:00,2018,October,Monday,1,274,9,D13,Toronto,108,Briar Hill-Belgravia (108),"Apartment (Rooming House, Condo)",Apartment,GIANT,ROAM,OT,10,BGE,1049.0,STOLEN,24164,"{'type': 'Point', 'coordinates': (-79.44057053, 43.70108497)}"
-24180,3797,GO-20182013667,B&E,2018-10-31T00:00:00,2018,October,Wednesday,31,304,20,2018-11-01T00:00:00,2018,November,Thursday,1,305,8,D13,Toronto,108,Briar Hill-Belgravia (108),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,MCNEIL NOMAD,BM,10,PLE,600.0,STOLEN,24165,"{'type': 'Point', 'coordinates': (-79.44477692, 43.70147661)}"
-24181,5232,GO-20199028732,THEFT UNDER,2019-08-27T00:00:00,2019,August,Tuesday,27,239,8,2019-09-04T00:00:00,2019,September,Wednesday,4,247,15,D13,Toronto,108,Briar Hill-Belgravia (108),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,,TO,9,DGR,600.0,STOLEN,24166,"{'type': 'Point', 'coordinates': (-79.44275361, 43.69730274)}"
-24182,6075,GO-20209011409,B&E,2020-04-12T00:00:00,2020,April,Sunday,12,103,22,2020-04-13T00:00:00,2020,April,Monday,13,104,23,D13,Toronto,108,Briar Hill-Belgravia (108),"Apartment (Rooming House, Condo)",Apartment,OT,VENTURA SPORT,RC,9,BLK,450.0,STOLEN,24167,"{'type': 'Point', 'coordinates': (-79.45208117, 43.70235215)}"
-24183,6099,GO-20209011901,THEFT UNDER,2020-04-24T00:00:00,2020,April,Friday,24,115,19,2020-04-24T00:00:00,2020,April,Friday,24,115,21,D13,Toronto,108,Briar Hill-Belgravia (108),"Private Property Structure (Pool, Shed, Detached Garage)",Other,IH,PHOENIX 1.1 201,MT,18,BLK,400.0,STOLEN,24168,"{'type': 'Point', 'coordinates': (-79.45208117, 43.70235215)}"
-24184,6315,GO-20201054624,THEFT UNDER,2020-06-08T00:00:00,2020,June,Monday,8,160,2,2020-06-08T00:00:00,2020,June,Monday,8,160,14,D13,Toronto,108,Briar Hill-Belgravia (108),"Apartment (Rooming House, Condo)",Apartment,TREK,DUAL SPORT,RC,21,,700.0,STOLEN,24169,"{'type': 'Point', 'coordinates': (-79.44203947, 43.704666800000005)}"
-24185,7161,GO-20201635472,THEFT UNDER - BICYCLE,2020-08-29T00:00:00,2020,August,Saturday,29,242,2,2020-09-03T00:00:00,2020,September,Thursday,3,247,10,D13,Toronto,108,Briar Hill-Belgravia (108),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SUPERCYCLE,UNKNOWN,MT,12,BLKBLU,250.0,STOLEN,24170,"{'type': 'Point', 'coordinates': (-79.44140151, 43.70305615)}"
-24186,8864,GO-20149006768,THEFT UNDER,2014-09-10T00:00:00,2014,September,Wednesday,10,253,9,2014-09-10T00:00:00,2014,September,Wednesday,10,253,16,D12,Toronto,113,Weston (113),Universities / Colleges,Educational,OT,,OT,30,BLK,565.0,STOLEN,24252,"{'type': 'Point', 'coordinates': (-79.50848955, 43.7085907)}"
-24187,7491,GO-20201479095,THEFT UNDER - BICYCLE,2020-08-07T00:00:00,2020,August,Friday,7,220,2,2020-08-10T00:00:00,2020,August,Monday,10,223,19,D13,Toronto,108,Briar Hill-Belgravia (108),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUPERCYCLE,COMP HARDTAIL,MT,21,BLKGRN,400.0,STOLEN,24171,"{'type': 'Point', 'coordinates': (-79.44365742, 43.70171717)}"
-24188,7492,GO-20201479095,THEFT UNDER - BICYCLE,2020-08-07T00:00:00,2020,August,Friday,7,220,2,2020-08-10T00:00:00,2020,August,Monday,10,223,19,D13,Toronto,108,Briar Hill-Belgravia (108),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,ANNETTE,OT,7,BLUPNK,400.0,STOLEN,24172,"{'type': 'Point', 'coordinates': (-79.44365742, 43.70171717)}"
-24189,7538,GO-20209027549,B&E,2020-10-24T00:00:00,2020,October,Saturday,24,298,22,2020-10-25T00:00:00,2020,October,Sunday,25,299,15,D13,Toronto,108,Briar Hill-Belgravia (108),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,NOVA RACE,TO,20,SIL,1750.0,STOLEN,24173,"{'type': 'Point', 'coordinates': (-79.44526362, 43.69924249)}"
-24190,7548,GO-20209027714,THEFT UNDER,2020-10-25T00:00:00,2020,October,Sunday,25,299,1,2020-10-26T00:00:00,2020,October,Monday,26,300,12,D13,Toronto,108,Briar Hill-Belgravia (108),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,18,SIL,200.0,STOLEN,24174,"{'type': 'Point', 'coordinates': (-79.44106893, 43.7022538)}"
-24191,7630,GO-20202135591,THEFT UNDER - BICYCLE,2020-11-09T00:00:00,2020,November,Monday,9,314,13,2020-11-10T00:00:00,2020,November,Tuesday,10,315,16,D13,Toronto,108,Briar Hill-Belgravia (108),"Apartment (Rooming House, Condo)",Apartment,TREK,,OT,0,GRY,600.0,STOLEN,24175,"{'type': 'Point', 'coordinates': (-79.44859881000001, 43.70229134)}"
-24192,7645,GO-20209029996,THEFT UNDER,2020-11-18T00:00:00,2020,November,Wednesday,18,323,21,2020-11-18T00:00:00,2020,November,Wednesday,18,323,21,D13,Toronto,108,Briar Hill-Belgravia (108),"Apartment (Rooming House, Condo)",Apartment,RM,,TO,21,GRY,1000.0,STOLEN,24176,"{'type': 'Point', 'coordinates': (-79.44605824, 43.70120126)}"
-24193,7652,GO-20209030300,THEFT UNDER,2020-11-15T00:00:00,2020,November,Sunday,15,320,11,2020-11-22T00:00:00,2020,November,Sunday,22,327,16,D13,Toronto,108,Briar Hill-Belgravia (108),"Apartment (Rooming House, Condo)",Apartment,RA,,RC,15,BLK,0.0,STOLEN,24177,"{'type': 'Point', 'coordinates': (-79.44605824, 43.70120126)}"
-24194,7786,GO-20141746457,THEFT UNDER,2014-03-21T00:00:00,2014,March,Friday,21,80,9,2014-03-22T00:00:00,2014,March,Saturday,22,81,13,D13,Toronto,108,Briar Hill-Belgravia (108),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RALEIGH,,OT,18,WHIBRN,200.0,STOLEN,24178,"{'type': 'Point', 'coordinates': (-79.44365742, 43.70171717)}"
-24195,8376,GO-20149004847,THEFT UNDER,2014-07-07T00:00:00,2014,July,Monday,7,188,21,2014-07-09T00:00:00,2014,July,Wednesday,9,190,16,D13,Toronto,108,Briar Hill-Belgravia (108),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,RG,10,,100.0,STOLEN,24179,"{'type': 'Point', 'coordinates': (-79.44365742, 43.70171717)}"
-24196,8377,GO-20149004847,THEFT UNDER,2014-07-07T00:00:00,2014,July,Monday,7,188,21,2014-07-09T00:00:00,2014,July,Wednesday,9,190,16,D13,Toronto,108,Briar Hill-Belgravia (108),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,RG,10,,100.0,STOLEN,24180,"{'type': 'Point', 'coordinates': (-79.44365742, 43.70171717)}"
-24197,8619,GO-20142687246,THEFT UNDER,2014-08-12T00:00:00,2014,August,Tuesday,12,224,13,2014-08-12T00:00:00,2014,August,Tuesday,12,224,13,D13,Toronto,108,Briar Hill-Belgravia (108),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,MT,0,PLE,100.0,STOLEN,24181,"{'type': 'Point', 'coordinates': (-79.46318223, 43.69714441)}"
-24198,9115,GO-20143102933,PROPERTY - FOUND,2014-10-14T00:00:00,2014,October,Tuesday,14,287,15,2014-10-14T00:00:00,2014,October,Tuesday,14,287,15,D13,Toronto,108,Briar Hill-Belgravia (108),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,PINNACLE,MT,24,GRN,20.0,UNKNOWN,24182,"{'type': 'Point', 'coordinates': (-79.44556529, 43.6999389)}"
-24199,9116,GO-20143102933,PROPERTY - FOUND,2014-10-14T00:00:00,2014,October,Tuesday,14,287,15,2014-10-14T00:00:00,2014,October,Tuesday,14,287,15,D13,Toronto,108,Briar Hill-Belgravia (108),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,820,MT,24,SILVER,,UNKNOWN,24183,"{'type': 'Point', 'coordinates': (-79.44556529, 43.6999389)}"
-24200,9136,GO-20143220683,THEFT UNDER,2014-10-28T00:00:00,2014,October,Tuesday,28,301,20,2014-11-01T00:00:00,2014,November,Saturday,1,305,20,D13,Toronto,108,Briar Hill-Belgravia (108),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CCM,,MT,18,REDWHI,150.0,STOLEN,24184,"{'type': 'Point', 'coordinates': (-79.44365742, 43.70171717)}"
-24201,9137,GO-20143220683,THEFT UNDER,2014-10-28T00:00:00,2014,October,Tuesday,28,301,20,2014-11-01T00:00:00,2014,November,Saturday,1,305,20,D13,Toronto,108,Briar Hill-Belgravia (108),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CCM,,MT,18,WHI,150.0,STOLEN,24185,"{'type': 'Point', 'coordinates': (-79.44365742, 43.70171717)}"
-24202,9165,GO-20143271178,THEFT UNDER,2014-11-08T00:00:00,2014,November,Saturday,8,312,21,2014-11-09T00:00:00,2014,November,Sunday,9,313,20,D13,Toronto,108,Briar Hill-Belgravia (108),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DIAMONDBACK,ELIMINATOR,MT,21,SIL,100.0,STOLEN,24186,"{'type': 'Point', 'coordinates': (-79.4399729, 43.69957099)}"
-24203,9166,GO-20143271178,THEFT UNDER,2014-11-08T00:00:00,2014,November,Saturday,8,312,21,2014-11-09T00:00:00,2014,November,Sunday,9,313,20,D13,Toronto,108,Briar Hill-Belgravia (108),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,0,BLU,800.0,STOLEN,24187,"{'type': 'Point', 'coordinates': (-79.4399729, 43.69957099)}"
-24204,9537,GO-2015736225,THEFT UNDER,2015-05-03T00:00:00,2015,May,Sunday,3,123,21,2015-05-03T00:00:00,2015,May,Sunday,3,123,21,D13,Toronto,108,Briar Hill-Belgravia (108),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KONA,JAKE,OT,18,,,STOLEN,24188,"{'type': 'Point', 'coordinates': (-79.45023952, 43.695692570000006)}"
-24205,9640,GO-2015861915,B&E,2015-05-10T00:00:00,2015,May,Sunday,10,130,0,2015-05-23T00:00:00,2015,May,Saturday,23,143,21,D13,Toronto,108,Briar Hill-Belgravia (108),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,STROMER ST-1,EL,0,BLK,5000.0,STOLEN,24189,"{'type': 'Point', 'coordinates': (-79.44429695000001, 43.70332748)}"
-24206,9912,GO-20151102682,B&E,2015-06-30T00:00:00,2015,June,Tuesday,30,181,0,2015-06-30T00:00:00,2015,June,Tuesday,30,181,18,D13,Toronto,108,Briar Hill-Belgravia (108),"Single Home, House (Attach Garage, Cottage, Mobile)",House,JAMIS,DURANGO,MT,30,BLUWHI,650.0,STOLEN,24190,"{'type': 'Point', 'coordinates': (-79.44526362, 43.69924249)}"
-24207,9975,GO-20159004347,THEFT UNDER,2015-07-08T00:00:00,2015,July,Wednesday,8,189,23,2015-07-09T00:00:00,2015,July,Thursday,9,190,15,D13,Toronto,108,Briar Hill-Belgravia (108),"Apartment (Rooming House, Condo)",Apartment,OT,J14 DXT SPORT,MT,24,BLK,600.0,STOLEN,24191,"{'type': 'Point', 'coordinates': (-79.44605824, 43.70120126)}"
-24208,10035,GO-20159004640,THEFT UNDER,2015-07-14T00:00:00,2015,July,Tuesday,14,195,20,2015-07-16T00:00:00,2015,July,Thursday,16,197,20,D13,Toronto,108,Briar Hill-Belgravia (108),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,4,PNK,30.0,STOLEN,24192,"{'type': 'Point', 'coordinates': (-79.45963926, 43.69360603)}"
-24209,12731,GO-20161975678,THEFT OF EBIKE UNDER $5000,2016-11-06T00:00:00,2016,November,Sunday,6,311,7,2016-11-06T00:00:00,2016,November,Sunday,6,311,16,D13,Toronto,108,Briar Hill-Belgravia (108),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,GP5,EL,1,BLK,1400.0,STOLEN,24193,"{'type': 'Point', 'coordinates': (-79.44140151, 43.70305615)}"
-24210,14863,GO-20199024178,THEFT UNDER,2019-07-05T00:00:00,2019,July,Friday,5,186,22,2019-07-28T00:00:00,2019,July,Sunday,28,209,22,D13,Toronto,108,Briar Hill-Belgravia (108),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,FJ,FUJI FINEST 2.3,RC,40,WHI,959.0,STOLEN,24194,"{'type': 'Point', 'coordinates': (-79.45208117, 43.70235215)}"
-24211,14889,GO-20201564720,THEFT UNDER,2020-08-19T00:00:00,2020,August,Wednesday,19,232,7,2020-08-20T00:00:00,2020,August,Thursday,20,233,10,D13,Toronto,108,Briar Hill-Belgravia (108),"Apartment (Rooming House, Condo)",Apartment,OTHER,,SC,6,BLU,1000.0,STOLEN,24195,"{'type': 'Point', 'coordinates': (-79.44106893, 43.7022538)}"
-24212,15331,GO-20142485900,THEFT UNDER,2014-07-10T00:00:00,2014,July,Thursday,10,191,17,2014-07-13T00:00:00,2014,July,Sunday,13,194,0,D13,Toronto,108,Briar Hill-Belgravia (108),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KONA,UNIT,MT,21,,1800.0,UNKNOWN,24196,"{'type': 'Point', 'coordinates': (-79.44851236, 43.69932105)}"
-24213,15345,GO-20149005645,THEFT UNDER,2014-08-05T00:00:00,2014,August,Tuesday,5,217,2,2014-08-05T00:00:00,2014,August,Tuesday,5,217,14,D13,Toronto,108,Briar Hill-Belgravia (108),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,7.3 FX,TO,27,GRY,790.0,STOLEN,24197,"{'type': 'Point', 'coordinates': (-79.44527396, 43.69676539)}"
-24214,15367,GO-20143080742,PROPERTY - FOUND,2014-10-09T00:00:00,2014,October,Thursday,9,282,0,2014-10-10T00:00:00,2014,October,Friday,10,283,15,D13,Toronto,108,Briar Hill-Belgravia (108),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,JA,TRAIL X1,MT,99,BLKRED,,UNKNOWN,24198,"{'type': 'Point', 'coordinates': (-79.45023952, 43.695692570000006)}"
-24215,15381,GO-20143305299,THEFT UNDER,2014-11-12T00:00:00,2014,November,Wednesday,12,316,12,2014-11-15T00:00:00,2014,November,Saturday,15,319,10,D13,Toronto,108,Briar Hill-Belgravia (108),Schools During Un-Supervised Activity,Educational,JAMIS,DURANGO COMP,MT,18,GRY,700.0,STOLEN,24199,"{'type': 'Point', 'coordinates': (-79.4573455, 43.69411275)}"
-24216,15395,GO-2015736225,THEFT UNDER,2015-05-03T00:00:00,2015,May,Sunday,3,123,21,2015-05-03T00:00:00,2015,May,Sunday,3,123,21,D13,Toronto,108,Briar Hill-Belgravia (108),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KONA,JAKE,OT,18,ONG,1250.0,STOLEN,24200,"{'type': 'Point', 'coordinates': (-79.45023952, 43.695692570000006)}"
-24217,15433,GO-20151288348,THEFT UNDER,2015-07-20T00:00:00,2015,July,Monday,20,201,21,2015-07-27T00:00:00,2015,July,Monday,27,208,17,D13,Toronto,108,Briar Hill-Belgravia (108),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,OT,0,,,STOLEN,24201,"{'type': 'Point', 'coordinates': (-79.44464324, 43.69773351)}"
-24218,20866,GO-20142268363,THEFT UNDER,2014-06-10T00:00:00,2014,June,Tuesday,10,161,22,2014-06-11T00:00:00,2014,June,Wednesday,11,162,13,D42,Toronto,117,LAmoreaux (117),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FS,,MT,10,RED,100.0,STOLEN,24216,"{'type': 'Point', 'coordinates': (-79.32770199, 43.79620304)}"
-24219,15507,GO-2016962728,THEFT UNDER - BICYCLE,2016-06-01T00:00:00,2016,June,Wednesday,1,153,20,2016-06-03T00:00:00,2016,June,Friday,3,155,12,D13,Toronto,108,Briar Hill-Belgravia (108),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,ROCKY MOUNTAIN,WHISLER 10,MT,21,GRYBLU,700.0,STOLEN,24202,"{'type': 'Point', 'coordinates': (-79.44605824, 43.70120126)}"
-24220,15528,GO-20161302463,THEFT UNDER,2016-07-20T00:00:00,2016,July,Wednesday,20,202,12,2016-07-24T00:00:00,2016,July,Sunday,24,206,22,D13,Toronto,108,Briar Hill-Belgravia (108),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,HYBIRD,MT,27,SIL,800.0,STOLEN,24203,"{'type': 'Point', 'coordinates': (-79.44605824, 43.70120126)}"
-24221,15637,GO-20189021923,THEFT UNDER,2018-07-05T00:00:00,2018,July,Thursday,5,186,21,2018-07-11T00:00:00,2018,July,Wednesday,11,192,12,D13,Toronto,108,Briar Hill-Belgravia (108),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,21,BRN,500.0,STOLEN,24204,"{'type': 'Point', 'coordinates': (-79.44057053, 43.70108497)}"
-24222,18320,GO-20141877361,THEFT UNDER,2013-12-01T00:00:00,2013,December,Sunday,1,335,9,2014-04-12T00:00:00,2014,April,Saturday,12,102,14,D13,Toronto,108,Briar Hill-Belgravia (108),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CCM,29ER,MT,21,BLU,200.0,STOLEN,24205,"{'type': 'Point', 'coordinates': (-79.45365246, 43.69731224)}"
-24223,18355,GO-20149005420,THEFT UNDER,2014-07-28T00:00:00,2014,July,Monday,28,209,18,2014-07-28T00:00:00,2014,July,Monday,28,209,21,D13,Toronto,108,Briar Hill-Belgravia (108),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,MT,21,RED,500.0,STOLEN,24206,"{'type': 'Point', 'coordinates': (-79.44851236, 43.69932105)}"
-24224,18356,GO-20149005420,THEFT UNDER,2014-07-28T00:00:00,2014,July,Monday,28,209,18,2014-07-28T00:00:00,2014,July,Monday,28,209,21,D13,Toronto,108,Briar Hill-Belgravia (108),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,OT,18,OTH,500.0,STOLEN,24207,"{'type': 'Point', 'coordinates': (-79.44851236, 43.69932105)}"
-24225,18387,GO-20159001415,THEFT UNDER,2015-03-17T00:00:00,2015,March,Tuesday,17,76,15,2015-03-19T00:00:00,2015,March,Thursday,19,78,20,D13,Toronto,108,Briar Hill-Belgravia (108),"Dealership (Car, Motorcycle, Marine, Trailer, Etc.)",Commercial,OT,ELECTRIC SCOOTE,EL,32,BLU,1700.0,STOLEN,24208,"{'type': 'Point', 'coordinates': (-79.4573455, 43.69411275)}"
-24226,2990,GO-20189024117,THEFT UNDER - BICYCLE,2018-07-25T00:00:00,2018,July,Wednesday,25,206,17,2018-07-27T00:00:00,2018,July,Friday,27,208,9,D12,Toronto,113,Weston (113),Go Station,Transit,SU,,MT,26,LBL,178.0,STOLEN,24240,"{'type': 'Point', 'coordinates': (-79.51528516, 43.70035683)}"
-24227,18415,GO-2015965206,THEFT UNDER,2015-05-06T00:00:00,2015,May,Wednesday,6,126,14,2015-06-09T00:00:00,2015,June,Tuesday,9,160,10,D13,Toronto,108,Briar Hill-Belgravia (108),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,BIANCHI,CHROME ELITE,OT,21,YEL,900.0,STOLEN,24209,"{'type': 'Point', 'coordinates': (-79.44057053, 43.70108497)}"
-24228,21379,GO-20169005921,THEFT UNDER - BICYCLE,2016-06-14T00:00:00,2016,June,Tuesday,14,166,12,2016-06-17T00:00:00,2016,June,Friday,17,169,6,D13,Toronto,108,Briar Hill-Belgravia (108),"Apartment (Rooming House, Condo)",Apartment,CC,,MT,21,RED,230.0,STOLEN,24210,"{'type': 'Point', 'coordinates': (-79.44106893, 43.7022538)}"
-24229,21524,GO-2018832636,THEFT UNDER - BICYCLE,2018-05-08T00:00:00,2018,May,Tuesday,8,128,9,2018-05-08T00:00:00,2018,May,Tuesday,8,128,21,D13,Toronto,108,Briar Hill-Belgravia (108),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,,OT,1,RED,50.0,STOLEN,24211,"{'type': 'Point', 'coordinates': (-79.4511015, 43.69791736)}"
-24230,21792,GO-20141799234,THEFT UNDER,2014-03-25T00:00:00,2014,March,Tuesday,25,84,7,2014-03-31T00:00:00,2014,March,Monday,31,90,7,D13,Toronto,108,Briar Hill-Belgravia (108),"Private Property Structure (Pool, Shed, Detached Garage)",Other,ROCKY MOUNTAIN,VERTEX 950,MT,20,REDWHI,2500.0,STOLEN,24212,"{'type': 'Point', 'coordinates': (-79.44495519, 43.69847442)}"
-24231,21808,GO-20142524469,THEFT UNDER,2014-07-17T00:00:00,2014,July,Thursday,17,198,22,2014-07-18T00:00:00,2014,July,Friday,18,199,18,D13,Toronto,108,Briar Hill-Belgravia (108),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SCHWINN,,MT,12,BLKWHI,700.0,STOLEN,24213,"{'type': 'Point', 'coordinates': (-79.44639467000002, 43.70200875)}"
-24232,21919,GO-20159006491,THEFT UNDER,2015-08-21T00:00:00,2015,August,Friday,21,233,18,2015-08-29T00:00:00,2015,August,Saturday,29,241,16,D13,Toronto,108,Briar Hill-Belgravia (108),"Single Home, House (Attach Garage, Cottage, Mobile)",House,EM,MAX,EL,50,BLK,2000.0,STOLEN,24214,"{'type': 'Point', 'coordinates': (-79.44495519, 43.69847442)}"
-24233,24409,GO-20209028065,THEFT FROM MOTOR VEHICLE UNDER,2020-10-26T00:00:00,2020,October,Monday,26,300,1,2020-10-28T00:00:00,2020,October,Wednesday,28,302,19,D13,Toronto,108,Briar Hill-Belgravia (108),"Apartment (Rooming House, Condo)",Apartment,RA,CADENT 1,TO,40,GRY,600.0,STOLEN,24215,"{'type': 'Point', 'coordinates': (-79.44106893, 43.7022538)}"
-24234,3011,GO-20181387628,THEFT UNDER - BICYCLE,2018-07-27T00:00:00,2018,July,Friday,27,208,8,2018-07-29T00:00:00,2018,July,Sunday,29,210,15,D12,Toronto,113,Weston (113),Go Station,Transit,RALEIGH,UNKNOWN,MT,10,,50.0,STOLEN,24241,"{'type': 'Point', 'coordinates': (-79.51528516, 43.70035683)}"
-24235,24658,GO-20149007354,THEFT UNDER,2014-09-04T00:00:00,2014,September,Thursday,4,247,14,2014-10-02T00:00:00,2014,October,Thursday,2,275,15,D12,Toronto,111,Rockcliffe-Smythe (111),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,FIXED/SINGLE SP,RC,1,GRY,800.0,STOLEN,24217,"{'type': 'Point', 'coordinates': (-79.49761156, 43.66737497)}"
-24236,24692,GO-2015672294,THEFT UNDER,2015-04-21T00:00:00,2015,April,Tuesday,21,111,17,2015-04-23T00:00:00,2015,April,Thursday,23,113,14,D12,Toronto,111,Rockcliffe-Smythe (111),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,COLONY,GUARDIAN FORK,OT,0,,219.0,STOLEN,24218,"{'type': 'Point', 'coordinates': (-79.49761156, 43.66737497)}"
-24237,24696,GO-2015760857,ROBBERY - SWARMING,2015-05-07T00:00:00,2015,May,Thursday,7,127,16,2015-05-07T00:00:00,2015,May,Thursday,7,127,16,D12,Toronto,111,Rockcliffe-Smythe (111),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,,MT,1,BLKGRN,800.0,STOLEN,24219,"{'type': 'Point', 'coordinates': (-79.47730364, 43.68056545)}"
-24238,25117,GO-20189022673,THEFT UNDER - BICYCLE,2018-07-16T00:00:00,2018,July,Monday,16,197,18,2018-07-16T00:00:00,2018,July,Monday,16,197,20,D11,Toronto,111,Rockcliffe-Smythe (111),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,BM,10,BLK,1400.0,STOLEN,24220,"{'type': 'Point', 'coordinates': (-79.48564049, 43.66850215)}"
-24239,25233,GO-20161350898,THREAT - PERSON,2016-07-21T00:00:00,2016,July,Thursday,21,203,12,2016-08-01T00:00:00,2016,August,Monday,1,214,13,D12,Toronto,111,Rockcliffe-Smythe (111),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,STEALTH 2.0,MT,24,REDWHI,,STOLEN,24221,"{'type': 'Point', 'coordinates': (-79.49369693, 43.6820019)}"
-24240,23286,GO-20199021492,THEFT UNDER,2019-07-02T00:00:00,2019,July,Tuesday,2,183,19,2019-07-08T00:00:00,2019,July,Monday,8,189,16,D42,Toronto,117,LAmoreaux (117),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,,RG,18,SIL,0.0,STOLEN,24222,"{'type': 'Point', 'coordinates': (-79.31205708, 43.79700365)}"
-24241,25340,GO-2019848139,THEFT OF EBIKE UNDER $5000,2019-05-09T00:00:00,2019,May,Thursday,9,129,23,2019-05-10T00:00:00,2019,May,Friday,10,130,8,D12,Toronto,111,Rockcliffe-Smythe (111),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,ELEVATE,EL,1,,2500.0,STOLEN,24223,"{'type': 'Point', 'coordinates': (-79.47650327, 43.67830541)}"
-24242,18273,GO-20209018368,THEFT UNDER,2020-07-23T00:00:00,2020,July,Thursday,23,205,11,2020-07-23T00:00:00,2020,July,Thursday,23,205,18,D12,Toronto,113,Weston (113),"Apartment (Rooming House, Condo)",Apartment,CA,,MT,18,BLK,2000.0,STOLEN,24277,"{'type': 'Point', 'coordinates': (-79.51149998000001, 43.697962)}"
-24243,25354,GO-20199027785,THEFT UNDER,2019-08-17T00:00:00,2019,August,Saturday,17,229,22,2019-08-26T00:00:00,2019,August,Monday,26,238,18,D12,Toronto,111,Rockcliffe-Smythe (111),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SC,CADENCE,MT,21,GRY,0.0,STOLEN,24224,"{'type': 'Point', 'coordinates': (-79.50261765, 43.67471108)}"
-24244,25355,GO-20199027785,THEFT UNDER,2019-08-17T00:00:00,2019,August,Saturday,17,229,22,2019-08-26T00:00:00,2019,August,Monday,26,238,18,D12,Toronto,111,Rockcliffe-Smythe (111),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CC,,RG,15,BLU,0.0,STOLEN,24225,"{'type': 'Point', 'coordinates': (-79.50261765, 43.67471108)}"
-24245,25365,GO-20199038406,THEFT UNDER,2019-11-20T00:00:00,2019,November,Wednesday,20,324,21,2019-11-22T00:00:00,2019,November,Friday,22,326,10,D12,Toronto,111,Rockcliffe-Smythe (111),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RC,1,,500.0,STOLEN,24226,"{'type': 'Point', 'coordinates': (-79.49072478, 43.66999033)}"
-24246,3325,GO-20189028028,THEFT UNDER - BICYCLE,2018-08-26T00:00:00,2018,August,Sunday,26,238,14,2018-08-26T00:00:00,2018,August,Sunday,26,238,17,D12,Toronto,112,Beechborough-Greenbrook (112),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GT,CM17M544807,MT,7,BLU,500.0,STOLEN,24227,"{'type': 'Point', 'coordinates': (-79.46635762, 43.69454278)}"
-24247,12237,GO-20169009754,THEFT UNDER,2016-08-31T00:00:00,2016,August,Wednesday,31,244,2,2016-08-31T00:00:00,2016,August,Wednesday,31,244,13,D12,Toronto,112,Beechborough-Greenbrook (112),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,RG,21,GRN,100.0,STOLEN,24228,"{'type': 'Point', 'coordinates': (-79.47063537, 43.69527369)}"
-24248,15471,GO-20152003074,THEFT UNDER,2015-11-21T00:00:00,2015,November,Saturday,21,325,23,2015-11-22T00:00:00,2015,November,Sunday,22,326,9,D12,Toronto,112,Beechborough-Greenbrook (112),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,,OT,0,,350.0,STOLEN,24229,"{'type': 'Point', 'coordinates': (-79.47446799, 43.69151797)}"
-24249,15472,GO-20152003074,THEFT UNDER,2015-11-21T00:00:00,2015,November,Saturday,21,325,23,2015-11-22T00:00:00,2015,November,Sunday,22,326,9,D12,Toronto,112,Beechborough-Greenbrook (112),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,MT,0,,350.0,STOLEN,24230,"{'type': 'Point', 'coordinates': (-79.47446799, 43.69151797)}"
-24250,15473,GO-20152003074,THEFT UNDER,2015-11-21T00:00:00,2015,November,Saturday,21,325,23,2015-11-22T00:00:00,2015,November,Sunday,22,326,9,D12,Toronto,112,Beechborough-Greenbrook (112),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,MIRANO,OT,21,BLU,750.0,STOLEN,24231,"{'type': 'Point', 'coordinates': (-79.47446799, 43.69151797)}"
-24251,15474,GO-20152003074,THEFT UNDER,2015-11-21T00:00:00,2015,November,Saturday,21,325,23,2015-11-22T00:00:00,2015,November,Sunday,22,326,9,D12,Toronto,112,Beechborough-Greenbrook (112),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,,MT,21,,500.0,STOLEN,24232,"{'type': 'Point', 'coordinates': (-79.47446799, 43.69151797)}"
-24252,18444,GO-20151414258,THEFT UNDER,2015-08-17T00:00:00,2015,August,Monday,17,229,13,2015-08-17T00:00:00,2015,August,Monday,17,229,13,D12,Toronto,112,Beechborough-Greenbrook (112),Convenience Stores,Commercial,SUPERCYCLE,UNKNOWN,MT,0,REDBLK,230.0,STOLEN,24233,"{'type': 'Point', 'coordinates': (-79.46765674, 43.69171645)}"
-24253,21535,GO-20199015730,THEFT UNDER,2019-05-20T00:00:00,2019,May,Monday,20,140,10,2019-05-21T00:00:00,2019,May,Tuesday,21,141,11,D12,Toronto,112,Beechborough-Greenbrook (112),"Police / Courts (Parole Board, Probation Office)",Other,SC,700 C HYDRA,RG,24,GRY,380.0,STOLEN,24234,"{'type': 'Point', 'coordinates': (-79.47714236, 43.68967013)}"
-24254,24597,GO-20142129186,THEFT UNDER,2014-05-20T00:00:00,2014,May,Tuesday,20,140,22,2014-05-22T00:00:00,2014,May,Thursday,22,142,13,D12,Toronto,112,Beechborough-Greenbrook (112),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,XTI,XTI,RG,21,REDGRY,100.0,STOLEN,24235,"{'type': 'Point', 'coordinates': (-79.47811318, 43.69300017)}"
-24255,1430,GO-20179014951,THEFT UNDER - BICYCLE,2017-09-17T00:00:00,2017,September,Sunday,17,260,0,2017-09-17T00:00:00,2017,September,Sunday,17,260,13,D12,Toronto,113,Weston (113),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BI,,TO,21,TRQ,500.0,STOLEN,24236,"{'type': 'Point', 'coordinates': (-79.51655798, 43.70284196)}"
-24256,1523,GO-20179015762,THEFT UNDER - BICYCLE,2017-09-25T00:00:00,2017,September,Monday,25,268,14,2017-09-25T00:00:00,2017,September,Monday,25,268,18,D12,Toronto,113,Weston (113),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UK,,OT,21,WHI,0.0,STOLEN,24237,"{'type': 'Point', 'coordinates': (-79.52063904, 43.70137269)}"
-24257,2919,GO-20181337194,THEFT UNDER - BICYCLE,2018-07-09T00:00:00,2018,July,Monday,9,190,16,2018-07-22T00:00:00,2018,July,Sunday,22,203,5,D12,Toronto,113,Weston (113),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,OT,0,ONG,,STOLEN,24238,"{'type': 'Point', 'coordinates': (-79.50665905, 43.70155994)}"
-24258,2955,GO-20189023830,THEFT UNDER - BICYCLE,2018-07-24T00:00:00,2018,July,Tuesday,24,205,7,2018-07-25T00:00:00,2018,July,Wednesday,25,206,12,D12,Toronto,113,Weston (113),Go Station,Transit,UK,,MT,10,BLK,150.0,STOLEN,24239,"{'type': 'Point', 'coordinates': (-79.51528516, 43.70035683)}"
-24259,3181,GO-20181490604,THEFT OF EBIKE UNDER $5000,2018-08-09T00:00:00,2018,August,Thursday,9,221,10,2018-08-13T00:00:00,2018,August,Monday,13,225,13,D12,Toronto,113,Weston (113),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,EL,0,,1000.0,STOLEN,24244,"{'type': 'Point', 'coordinates': (-79.51208583, 43.70109301)}"
-24260,5750,GO-20199040161,THEFT UNDER,2019-12-06T00:00:00,2019,December,Friday,6,340,10,2019-12-08T00:00:00,2019,December,Sunday,8,342,11,D12,Toronto,113,Weston (113),"Apartment (Rooming House, Condo)",Apartment,NO,,MT,18,DGR,800.0,STOLEN,24245,"{'type': 'Point', 'coordinates': (-79.5194708, 43.70251974)}"
-24261,6431,GO-20201144648,THEFT UNDER,2020-06-21T00:00:00,2020,June,Sunday,21,173,20,2020-06-21T00:00:00,2020,June,Sunday,21,173,20,D12,Toronto,113,Weston (113),"Gas Station (Self, Full, Attached Convenience)",Commercial,UNKNOWN,,MT,6,RED,150.0,STOLEN,24246,"{'type': 'Point', 'coordinates': (-79.50552721000001, 43.70924657)}"
-24262,6940,GO-20209019948,THEFT UNDER,2020-08-11T00:00:00,2020,August,Tuesday,11,224,6,2020-08-11T00:00:00,2020,August,Tuesday,11,224,18,D12,Toronto,113,Weston (113),Go Station,Transit,UK,,RG,4,BLU,100.0,STOLEN,24247,"{'type': 'Point', 'coordinates': (-79.51528516, 43.70035683)}"
-24263,7009,GO-20201558842,THEFT UNDER - BICYCLE,2020-08-13T00:00:00,2020,August,Thursday,13,226,5,2020-08-19T00:00:00,2020,August,Wednesday,19,232,13,D12,Toronto,113,Weston (113),Go Train,Transit,NAKANARA,,MT,0,,700.0,STOLEN,24248,"{'type': 'Point', 'coordinates': (-79.51528516, 43.70035683)}"
-24264,7526,GO-20209027339,THEFT UNDER,2020-10-20T00:00:00,2020,October,Tuesday,20,294,2,2020-10-22T00:00:00,2020,October,Thursday,22,296,15,D12,Toronto,113,Weston (113),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,,OT,24,GRY,1000.0,STOLEN,24249,"{'type': 'Point', 'coordinates': (-79.5189637, 43.70673837)}"
-24265,7762,GO-20141545179,THEFT UNDER,2014-02-16T00:00:00,2014,February,Sunday,16,47,20,2014-02-17T00:00:00,2014,February,Monday,17,48,9,D12,Toronto,113,Weston (113),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,,EL,30,BLK,1500.0,STOLEN,24250,"{'type': 'Point', 'coordinates': (-79.52395443, 43.70383102)}"
-24266,8611,GO-20142663641,THEFT UNDER,2014-07-11T00:00:00,2014,July,Friday,11,192,18,2014-08-08T00:00:00,2014,August,Friday,8,220,21,D12,Toronto,113,Weston (113),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,ROCKY MOUNTAIN,STRIKE,MT,21,GRN,500.0,STOLEN,24251,"{'type': 'Point', 'coordinates': (-79.51820358, 43.70365521)}"
-24267,15083,GO-2015788277,THEFT UNDER,2015-05-08T00:00:00,2015,May,Friday,8,128,18,2015-05-11T00:00:00,2015,May,Monday,11,131,22,D11,Toronto,114,Lambton Baby Point (114),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,EL,1,MRN,1200.0,STOLEN,24253,"{'type': 'Point', 'coordinates': (-79.50215597, 43.66428681)}"
-24268,9111,GO-20149007794,THEFT UNDER,2014-10-23T00:00:00,2014,October,Thursday,23,296,18,2014-10-24T00:00:00,2014,October,Friday,24,297,10,D12,Toronto,113,Weston (113),Universities / Colleges,Educational,RM,GLIDE,RC,24,RED,500.0,STOLEN,24254,"{'type': 'Point', 'coordinates': (-79.52282059, 43.7043681)}"
-24269,9900,GO-20151089835,B&E,2015-06-24T00:00:00,2015,June,Wednesday,24,175,21,2015-06-28T00:00:00,2015,June,Sunday,28,179,20,D12,Toronto,113,Weston (113),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,TEQUESTA,MT,21,BLK,600.0,STOLEN,24255,"{'type': 'Point', 'coordinates': (-79.51241474, 43.70402181)}"
-24270,10127,GO-20151284469,THEFT UNDER,2015-07-23T00:00:00,2015,July,Thursday,23,204,16,2015-07-27T00:00:00,2015,July,Monday,27,208,18,D12,Toronto,113,Weston (113),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,WOLVERINE,OT,0,BLU,1000.0,STOLEN,24256,"{'type': 'Point', 'coordinates': (-79.51616258, 43.700160190000005)}"
-24271,10289,GO-20151408714,THEFT UNDER,2015-08-16T00:00:00,2015,August,Sunday,16,228,13,2015-08-16T00:00:00,2015,August,Sunday,16,228,15,D12,Toronto,113,Weston (113),"Apartment (Rooming House, Condo)",Apartment,SCHWINN,ONUS,MT,21,GRY,299.0,STOLEN,24257,"{'type': 'Point', 'coordinates': (-79.50773622000001, 43.70974475)}"
-24272,10517,GO-20151634310,THEFT UNDER,2015-09-21T00:00:00,2015,September,Monday,21,264,16,2015-09-21T00:00:00,2015,September,Monday,21,264,18,D12,Toronto,113,Weston (113),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,OT,18,BLUYEL,,STOLEN,24258,"{'type': 'Point', 'coordinates': (-79.51747972, 43.70113541)}"
-24273,10913,GO-20169000229,THEFT UNDER,2016-01-05T00:00:00,2016,January,Tuesday,5,5,18,2016-01-07T00:00:00,2016,January,Thursday,7,7,14,D52,Toronto,113,Weston (113),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,SU 200,RG,24,BLU,200.0,STOLEN,24259,"{'type': 'Point', 'coordinates': (-79.5194708, 43.70251974)}"
-24274,10921,GO-20169000340,THEFT UNDER,2016-01-08T00:00:00,2016,January,Friday,8,8,18,2016-01-10T00:00:00,2016,January,Sunday,10,10,15,D12,Toronto,113,Weston (113),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,OT,7,PNK,200.0,STOLEN,24260,"{'type': 'Point', 'coordinates': (-79.53113372, 43.7079808)}"
-24275,11904,GO-20169007723,THEFT UNDER - BICYCLE,2016-07-24T00:00:00,2016,July,Sunday,24,206,9,2016-07-25T00:00:00,2016,July,Monday,25,207,13,D12,Toronto,113,Weston (113),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,QUICK 3,RG,18,WHI,1200.0,STOLEN,24261,"{'type': 'Point', 'coordinates': (-79.51024244, 43.69575163)}"
-24276,14876,GO-20209003065,THEFT UNDER,2020-01-22T00:00:00,2020,January,Wednesday,22,22,8,2020-01-26T00:00:00,2020,January,Sunday,26,26,12,D12,Toronto,113,Weston (113),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,21,OTH,409.0,STOLEN,24262,"{'type': 'Point', 'coordinates': (-79.51775154, 43.70060252)}"
-24277,11536,GO-20161038443,THEFT UNDER,2016-06-14T00:00:00,2016,June,Tuesday,14,166,20,2016-06-14T00:00:00,2016,June,Tuesday,14,166,21,D41,Toronto,122,Birchcliffe-Cliffside (122),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,RG,1,BLURED,150.0,STOLEN,24263,"{'type': 'Point', 'coordinates': (-79.25295929, 43.71661626)}"
-24278,14902,GO-20209024624,THEFT UNDER,2020-09-26T00:00:00,2020,September,Saturday,26,270,15,2020-09-26T00:00:00,2020,September,Saturday,26,270,17,D12,Toronto,113,Weston (113),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,TOPKICK,MT,21,RED,400.0,STOLEN,24264,"{'type': 'Point', 'coordinates': (-79.51241474, 43.70402181)}"
-24279,15521,GO-20161270704,THEFT UNDER,2016-07-19T00:00:00,2016,July,Tuesday,19,201,9,2016-07-20T00:00:00,2016,July,Wednesday,20,202,3,D12,Toronto,113,Weston (113),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,ESCAPE,MT,21,GRYBLK,120.0,STOLEN,24265,"{'type': 'Point', 'coordinates': (-79.50485778, 43.69932792)}"
-24280,15578,GO-20162088295,THEFT OF EBIKE UNDER $5000,2016-11-23T00:00:00,2016,November,Wednesday,23,328,20,2016-11-25T00:00:00,2016,November,Friday,25,330,7,D12,Toronto,113,Weston (113),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,AUSTIN CLASSIC,EL,1,WHI,1200.0,STOLEN,24266,"{'type': 'Point', 'coordinates': (-79.51127669, 43.69834448)}"
-24281,15624,GO-20179013756,THEFT UNDER - BICYCLE,2017-08-30T00:00:00,2017,August,Wednesday,30,242,18,2017-08-31T00:00:00,2017,August,Thursday,31,243,13,D12,Toronto,113,Weston (113),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ELEGANCE 702,RG,18,GRY,600.0,STOLEN,24267,"{'type': 'Point', 'coordinates': (-79.5098532, 43.70549327)}"
-24282,15636,GO-20189020900,THEFT UNDER - BICYCLE,2018-06-29T00:00:00,2018,June,Friday,29,180,17,2018-07-02T00:00:00,2018,July,Monday,2,183,0,D12,Toronto,113,Weston (113),Go Station,Transit,FJ,CROSSTOWN 2.1 1,OT,21,SIL,655.0,STOLEN,24268,"{'type': 'Point', 'coordinates': (-79.51528516, 43.70035683)}"
-24283,18218,GO-20179008343,THEFT UNDER - BICYCLE,2017-06-18T00:00:00,2017,June,Sunday,18,169,10,2017-06-18T00:00:00,2017,June,Sunday,18,169,19,D12,Toronto,113,Weston (113),"Religious Facilities (Synagogue, Church, Convent, Mosque)",Other,OT,SYDNEY,OT,27,GLD,600.0,STOLEN,24269,"{'type': 'Point', 'coordinates': (-79.5098532, 43.70549327)}"
-24284,18224,GO-20179015481,THEFT UNDER - BICYCLE,2017-09-18T00:00:00,2017,September,Monday,18,261,12,2017-09-22T00:00:00,2017,September,Friday,22,265,15,D12,Toronto,113,Weston (113),Go Train,Transit,OT,,RC,21,BLK,0.0,STOLEN,24270,"{'type': 'Point', 'coordinates': (-79.51528516, 43.70035683)}"
-24285,18225,GO-20179020719,THEFT UNDER - BICYCLE,2017-11-25T00:00:00,2017,November,Saturday,25,329,2,2017-11-27T00:00:00,2017,November,Monday,27,331,21,D12,Toronto,113,Weston (113),"Apartment (Rooming House, Condo)",Apartment,BI,,RC,14,RED,1500.0,STOLEN,24271,"{'type': 'Point', 'coordinates': (-79.51584069, 43.698837680000004)}"
-24286,13573,GO-20201461862,THEFT UNDER,2020-06-01T00:00:00,2020,June,Monday,1,153,9,2020-08-05T00:00:00,2020,August,Wednesday,5,218,17,D41,Toronto,124,Kennedy Park (124),"Apartment (Rooming House, Condo)",Apartment,OTHER,TAO TAO,EL,60,BLU,1300.0,STOLEN,24272,"{'type': 'Point', 'coordinates': (-79.25259043, 43.72738912)}"
-24287,24678,GO-20143499160,THEFT UNDER,2014-12-15T00:00:00,2014,December,Monday,15,349,1,2014-12-16T00:00:00,2014,December,Tuesday,16,350,21,D13,Toronto,108,Briar Hill-Belgravia (108),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN,,MT,21,WHIPNK,350.0,STOLEN,24273,"{'type': 'Point', 'coordinates': (-79.44790379, 43.69784064)}"
-24288,18233,GO-20189015231,THEFT UNDER - BICYCLE,2018-05-16T00:00:00,2018,May,Wednesday,16,136,16,2018-05-16T00:00:00,2018,May,Wednesday,16,136,21,D12,Toronto,113,Weston (113),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,MT,15,DBL,200.0,STOLEN,24274,"{'type': 'Point', 'coordinates': (-79.5188543, 43.70150206)}"
-24289,18245,GO-20182052108,THEFT UNDER - BICYCLE,2018-11-05T00:00:00,2018,November,Monday,5,309,17,2018-11-07T00:00:00,2018,November,Wednesday,7,311,4,D12,Toronto,113,Weston (113),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,RG,1,BLK,,UNKNOWN,24275,"{'type': 'Point', 'coordinates': (-79.52645591, 43.70396492)}"
-24290,18246,GO-201922001,THEFT UNDER,2018-06-01T00:00:00,2018,June,Friday,1,152,16,2019-01-04T00:00:00,2019,January,Friday,4,4,16,D12,Toronto,113,Weston (113),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,TO,10,RED,60.0,STOLEN,24276,"{'type': 'Point', 'coordinates': (-79.52698087, 43.70425672)}"
-24291,18405,GO-2015848383,THEFT UNDER,2015-05-21T00:00:00,2015,May,Thursday,21,141,12,2015-05-21T00:00:00,2015,May,Thursday,21,141,17,D12,Toronto,113,Weston (113),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RAPTOR,E-BIKE,EL,0,WHI,1000.0,STOLEN,24278,"{'type': 'Point', 'coordinates': (-79.5194708, 43.70251974)}"
-24292,18502,GO-20169006027,THEFT UNDER - BICYCLE,2016-06-19T00:00:00,2016,June,Sunday,19,171,17,2016-06-19T00:00:00,2016,June,Sunday,19,171,21,D12,Toronto,113,Weston (113),Bar / Restaurant,Commercial,OT,,EL,32,BLK,3000.0,STOLEN,24279,"{'type': 'Point', 'coordinates': (-79.51491508, 43.70431282)}"
-24293,21504,GO-20179010806,THEFT UNDER - BICYCLE,2016-09-01T00:00:00,2016,September,Thursday,1,245,12,2017-07-22T00:00:00,2017,July,Saturday,22,203,14,D12,Toronto,113,Weston (113),"Apartment (Rooming House, Condo)",Apartment,UK,TACANA 2 GHOST,MT,21,BLU,750.0,STOLEN,24280,"{'type': 'Point', 'coordinates': (-79.51655798, 43.70284196)}"
-24294,21509,GO-20179015701,THEFT UNDER - BICYCLE,2017-08-29T00:00:00,2017,August,Tuesday,29,241,7,2017-09-25T00:00:00,2017,September,Monday,25,268,12,D12,Toronto,113,Weston (113),Go Station,Transit,OT,CONTESSA 630 M,MT,27,OTH,300.0,STOLEN,24281,"{'type': 'Point', 'coordinates': (-79.51528516, 43.70035683)}"
-24295,21510,GO-20179015993,THEFT UNDER - BICYCLE,2017-09-27T00:00:00,2017,September,Wednesday,27,270,18,2017-09-28T00:00:00,2017,September,Thursday,28,271,9,D12,Toronto,113,Weston (113),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,,RC,15,TRQ,1200.0,STOLEN,24282,"{'type': 'Point', 'coordinates': (-79.51984097, 43.70567194)}"
-24296,21528,GO-20189022760,THEFT UNDER - BICYCLE,2018-07-13T00:00:00,2018,July,Friday,13,194,12,2018-07-17T00:00:00,2018,July,Tuesday,17,198,12,D12,Toronto,113,Weston (113),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,ADVENTURE 1,TO,24,BLK,900.0,STOLEN,24283,"{'type': 'Point', 'coordinates': (-79.50555535, 43.70412998)}"
-24297,21543,GO-20199024804,THEFT UNDER,2019-07-29T00:00:00,2019,July,Monday,29,210,9,2019-08-02T00:00:00,2019,August,Friday,2,214,18,D12,Toronto,113,Weston (113),Go Station,Transit,UK,,MT,21,BGE,200.0,STOLEN,24284,"{'type': 'Point', 'coordinates': (-79.51528516, 43.70035683)}"
-24298,21547,GO-20199028621,THEFT UNDER,2019-09-03T00:00:00,2019,September,Tuesday,3,246,0,2019-09-03T00:00:00,2019,September,Tuesday,3,246,18,D12,Toronto,113,Weston (113),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,18,BLK,300.0,STOLEN,24285,"{'type': 'Point', 'coordinates': (-79.50699759, 43.70228047)}"
-24299,21567,GO-20201355583,POSSESSION PROPERTY OBC UNDER,2020-07-18T00:00:00,2020,July,Saturday,18,200,16,2020-07-21T00:00:00,2020,July,Tuesday,21,203,13,D12,Toronto,113,Weston (113),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RALEIGH,UNKNOWN,RG,6,BLK,260.0,STOLEN,24286,"{'type': 'Point', 'coordinates': (-79.50420958, 43.70447479)}"
-24300,21568,GO-20201355583,POSSESSION PROPERTY OBC UNDER,2020-07-18T00:00:00,2020,July,Saturday,18,200,16,2020-07-21T00:00:00,2020,July,Tuesday,21,203,13,D12,Toronto,113,Weston (113),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN,,RG,6,BLK,300.0,STOLEN,24287,"{'type': 'Point', 'coordinates': (-79.50420958, 43.70447479)}"
-24301,21801,GO-20142447595,THEFT UNDER,2014-07-02T00:00:00,2014,July,Wednesday,2,183,8,2014-07-07T00:00:00,2014,July,Monday,7,188,11,D12,Toronto,113,Weston (113),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,PRIDE,,SC,4,BLU,,STOLEN,24288,"{'type': 'Point', 'coordinates': (-79.51775154, 43.70060252)}"
-24302,21830,GO-20142882390,THEFT UNDER,2014-09-08T00:00:00,2014,September,Monday,8,251,8,2014-09-10T00:00:00,2014,September,Wednesday,10,253,13,D12,Toronto,113,Weston (113),"Apartment (Rooming House, Condo)",Apartment,OTHER,MOUNTAIN,MT,7,RED,75.0,STOLEN,24289,"{'type': 'Point', 'coordinates': (-79.5267231, 43.70370082)}"
-24303,21831,GO-20142882390,THEFT UNDER,2014-09-08T00:00:00,2014,September,Monday,8,251,8,2014-09-10T00:00:00,2014,September,Wednesday,10,253,13,D12,Toronto,113,Weston (113),"Apartment (Rooming House, Condo)",Apartment,OTHER,,MT,21,RED,75.0,STOLEN,24290,"{'type': 'Point', 'coordinates': (-79.5267231, 43.70370082)}"
-24304,25329,GO-20189024126,THEFT UNDER - BICYCLE,2018-07-13T00:00:00,2018,July,Friday,13,194,17,2018-07-27T00:00:00,2018,July,Friday,27,208,10,D12,Toronto,113,Weston (113),Go Station,Transit,SP,,MT,18,BLU,0.0,STOLEN,24291,"{'type': 'Point', 'coordinates': (-79.51528516, 43.70035683)}"
-24305,25330,GO-20189024135,THEFT UNDER - BICYCLE,2018-07-01T00:00:00,2018,July,Sunday,1,182,10,2018-07-27T00:00:00,2018,July,Friday,27,208,10,D12,Toronto,113,Weston (113),Go Station,Transit,SU,,MT,18,,0.0,STOLEN,24292,"{'type': 'Point', 'coordinates': (-79.51528516, 43.70035683)}"
-24306,25342,GO-20199020419,THEFT UNDER,2019-06-23T00:00:00,2019,June,Sunday,23,174,16,2019-06-28T00:00:00,2019,June,Friday,28,179,12,D12,Toronto,113,Weston (113),"Apartment (Rooming House, Condo)",Apartment,GT,GT AGGRESSOR,MT,21,RED,500.0,STOLEN,24293,"{'type': 'Point', 'coordinates': (-79.51149998000001, 43.697962)}"
-24307,25351,GO-20199027643,THEFT UNDER,2019-08-22T00:00:00,2019,August,Thursday,22,234,16,2019-08-25T00:00:00,2019,August,Sunday,25,237,17,D12,Toronto,113,Weston (113),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ROLLER SUPERLIT,RG,7,BLK,500.0,STOLEN,24294,"{'type': 'Point', 'coordinates': (-79.5098532, 43.70549327)}"
-24308,25353,GO-20199027677,THEFT UNDER,2019-07-23T00:00:00,2019,July,Tuesday,23,204,2,2019-08-26T00:00:00,2019,August,Monday,26,238,10,D12,Toronto,113,Weston (113),"Apartment (Rooming House, Condo)",Apartment,NO,UNKNOWN,MT,18,WHI,200.0,STOLEN,24295,"{'type': 'Point', 'coordinates': (-79.51655798, 43.70284196)}"
-24309,25364,GO-20192166808,THEFT UNDER,2019-11-08T00:00:00,2019,November,Friday,8,312,10,2019-11-09T00:00:00,2019,November,Saturday,9,313,13,D12,Toronto,113,Weston (113),Go Station,Transit,SCHWINN,CRCUITXST,MT,24,BLKWHI,500.0,STOLEN,24296,"{'type': 'Point', 'coordinates': (-79.51616258, 43.700160190000005)}"
-24310,25371,GO-20209015875,THEFT UNDER,2020-06-20T00:00:00,2020,June,Saturday,20,172,18,2020-06-22T00:00:00,2020,June,Monday,22,174,11,D12,Toronto,113,Weston (113),"Apartment (Rooming House, Condo)",Apartment,CC,STATIC,MT,7,BLK,445.0,STOLEN,24297,"{'type': 'Point', 'coordinates': (-79.51584069, 43.698837680000004)}"
-24311,947,GO-20179010794,THEFT UNDER - BICYCLE,2017-07-22T00:00:00,2017,July,Saturday,22,203,4,2017-07-22T00:00:00,2017,July,Saturday,22,203,11,D11,Toronto,114,Lambton Baby Point (114),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,20,BLK,150.0,STOLEN,24298,"{'type': 'Point', 'coordinates': (-79.48444470000001, 43.64933139)}"
-24312,2471,GO-20181022087,THEFT UNDER,2018-06-04T00:00:00,2018,June,Monday,4,155,5,2018-06-06T00:00:00,2018,June,Wednesday,6,157,4,D11,Toronto,114,Lambton Baby Point (114),Homeless Shelter / Mission,Other,SANTA CRUZ,,RG,0,,3500.0,STOLEN,24299,"{'type': 'Point', 'coordinates': (-79.50345064, 43.6638912)}"
-24313,2472,GO-20181022087,THEFT UNDER,2018-06-04T00:00:00,2018,June,Monday,4,155,5,2018-06-06T00:00:00,2018,June,Wednesday,6,157,4,D11,Toronto,114,Lambton Baby Point (114),Homeless Shelter / Mission,Other,NORCO,,MT,0,GRNWHI,1000.0,STOLEN,24300,"{'type': 'Point', 'coordinates': (-79.50345064, 43.6638912)}"
-24314,2489,GO-20189017742,THEFT UNDER,2018-06-06T00:00:00,2018,June,Wednesday,6,157,9,2018-06-07T00:00:00,2018,June,Thursday,7,158,11,D11,Toronto,114,Lambton Baby Point (114),Schools During Un-Supervised Activity,Educational,UK,,MT,6,RED,300.0,STOLEN,24301,"{'type': 'Point', 'coordinates': (-79.49993882, 43.66338799)}"
-24315,3187,GO-20189026198,THEFT UNDER,2018-08-10T00:00:00,2018,August,Friday,10,222,21,2018-08-13T00:00:00,2018,August,Monday,13,225,15,D11,Toronto,114,Lambton Baby Point (114),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,SIRRUS EXPERT,TO,11,BLK,500.0,STOLEN,24302,"{'type': 'Point', 'coordinates': (-79.48975837, 43.65158474)}"
-24316,3571,GO-20189032259,THEFT UNDER - BICYCLE,2018-09-27T00:00:00,2018,September,Thursday,27,270,9,2018-09-28T00:00:00,2018,September,Friday,28,271,15,D11,Toronto,114,Lambton Baby Point (114),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,TWIN RIDER,TA,21,BLU,800.0,STOLEN,24303,"{'type': 'Point', 'coordinates': (-79.48444470000001, 43.64933139)}"
-24317,4748,GO-20199021890,THEFT UNDER,2019-07-10T00:00:00,2019,July,Wednesday,10,191,18,2019-07-11T00:00:00,2019,July,Thursday,11,192,14,D11,Toronto,114,Lambton Baby Point (114),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,1,,200.0,STOLEN,24304,"{'type': 'Point', 'coordinates': (-79.49993882, 43.66338799)}"
-24318,6153,GO-2020842072,THEFT UNDER - BICYCLE,2020-05-03T00:00:00,2020,May,Sunday,3,124,21,2020-05-05T00:00:00,2020,May,Tuesday,5,126,11,D11,Toronto,114,Lambton Baby Point (114),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,071-1042-4,MT,18,RED,500.0,STOLEN,24305,"{'type': 'Point', 'coordinates': (-79.50345955, 43.66293869)}"
-24319,6154,GO-2020842072,THEFT UNDER - BICYCLE,2020-05-03T00:00:00,2020,May,Sunday,3,124,21,2020-05-05T00:00:00,2020,May,Tuesday,5,126,11,D11,Toronto,114,Lambton Baby Point (114),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,071-1066-8,MT,18,BLK,500.0,STOLEN,24306,"{'type': 'Point', 'coordinates': (-79.50345955, 43.66293869)}"
-24320,6748,GO-20209018617,THEFT UNDER,2020-07-24T00:00:00,2020,July,Friday,24,206,5,2020-07-26T00:00:00,2020,July,Sunday,26,208,17,D11,Toronto,114,Lambton Baby Point (114),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,UNKNOWN,MT,1,SIL,400.0,STOLEN,24307,"{'type': 'Point', 'coordinates': (-79.50215597, 43.66428681)}"
-24321,6919,GO-20209019796,THEFT UNDER,2020-08-08T00:00:00,2020,August,Saturday,8,221,22,2020-08-10T00:00:00,2020,August,Monday,10,223,11,D11,Toronto,114,Lambton Baby Point (114),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,BREAKER 24 JR M,MT,21,BLK,300.0,STOLEN,24308,"{'type': 'Point', 'coordinates': (-79.49806194, 43.66124347)}"
-24322,7220,GO-20209022793,THEFT UNDER,2020-08-23T00:00:00,2020,August,Sunday,23,236,17,2020-09-09T00:00:00,2020,September,Wednesday,9,253,17,D11,Toronto,114,Lambton Baby Point (114),"Apartment (Rooming House, Condo)",Apartment,CC,NITRO XT,MT,15,SIL,200.0,STOLEN,24309,"{'type': 'Point', 'coordinates': (-79.50345064, 43.6638912)}"
-24323,7270,GO-20209023525,THEFT UNDER,2020-09-16T00:00:00,2020,September,Wednesday,16,260,9,2020-09-17T00:00:00,2020,September,Thursday,17,261,12,D11,Toronto,114,Lambton Baby Point (114),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MOUNTAIN BIKE,MT,18,GRY,100.0,STOLEN,24310,"{'type': 'Point', 'coordinates': (-79.48478393, 43.65015823)}"
-24324,7387,GO-20209024926,THEFT UNDER,2020-09-28T00:00:00,2020,September,Monday,28,272,17,2020-09-29T00:00:00,2020,September,Tuesday,29,273,15,D11,Toronto,114,Lambton Baby Point (114),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DB,DIAMOND BACK,MT,18,BLK,400.0,STOLEN,24311,"{'type': 'Point', 'coordinates': (-79.48478393, 43.65015823)}"
-24325,9802,GO-20159003586,THEFT UNDER,2015-06-11T00:00:00,2015,June,Thursday,11,162,18,2015-06-13T00:00:00,2015,June,Saturday,13,164,17,D11,Toronto,114,Lambton Baby Point (114),"Private Property Structure (Pool, Shed, Detached Garage)",Other,DB,SORTIE 1,MT,27,SIL,900.0,STOLEN,24312,"{'type': 'Point', 'coordinates': (-79.49296236, 43.65573151000001)}"
-24326,9999,GO-20159004484,THEFT FROM MOTOR VEHICLE UNDER,2015-07-11T00:00:00,2015,July,Saturday,11,192,22,2015-07-13T00:00:00,2015,July,Monday,13,194,10,D11,Toronto,114,Lambton Baby Point (114),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,CARBON,RC,10,RED,2500.0,STOLEN,24313,"{'type': 'Point', 'coordinates': (-79.49437179, 43.65517974)}"
-24327,10184,GO-20159005395,THEFT UNDER,2015-08-06T00:00:00,2015,August,Thursday,6,218,13,2015-08-06T00:00:00,2015,August,Thursday,6,218,13,D11,Toronto,114,Lambton Baby Point (114),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GF,ZEBRANO,RG,21,SIL,600.0,STOLEN,24314,"{'type': 'Point', 'coordinates': (-79.48990836, 43.65621435)}"
-24328,10185,GO-20159005395,THEFT UNDER,2015-08-06T00:00:00,2015,August,Thursday,6,218,13,2015-08-06T00:00:00,2015,August,Thursday,6,218,13,D11,Toronto,114,Lambton Baby Point (114),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,ST TROPEZ,RG,24,BLK,600.0,STOLEN,24315,"{'type': 'Point', 'coordinates': (-79.48990836, 43.65621435)}"
-24329,10452,GO-20159007081,THEFT UNDER,2015-09-03T00:00:00,2015,September,Thursday,3,246,16,2015-09-12T00:00:00,2015,September,Saturday,12,255,11,D11,Toronto,114,Lambton Baby Point (114),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,TO,27,BRN,1200.0,STOLEN,24316,"{'type': 'Point', 'coordinates': (-79.48954876, 43.65082979)}"
-24330,11147,GO-20142252919,B&E,2014-05-23T00:00:00,2014,May,Friday,23,143,19,2014-06-09T00:00:00,2014,June,Monday,9,160,11,D11,Toronto,114,Lambton Baby Point (114),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,ANYROAD,MT,99,BLK,,STOLEN,24317,"{'type': 'Point', 'coordinates': (-79.49470048, 43.65371257)}"
-24331,14893,GO-20201660494,THEFT UNDER,2020-09-02T00:00:00,2020,September,Wednesday,2,246,11,2020-09-02T00:00:00,2020,September,Wednesday,2,246,18,D11,Toronto,114,Lambton Baby Point (114),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,PA 50,SC,50,RED,700.0,STOLEN,24318,"{'type': 'Point', 'coordinates': (-79.48478393, 43.65015823)}"
-24332,15070,GO-20149006349,THEFT UNDER,2014-08-14T00:00:00,2014,August,Thursday,14,226,3,2014-08-27T00:00:00,2014,August,Wednesday,27,239,12,D11,Toronto,114,Lambton Baby Point (114),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RC,15,GRY,1500.0,STOLEN,24319,"{'type': 'Point', 'coordinates': (-79.49736441, 43.65441098)}"
-24333,21401,GO-20161363083,THEFT UNDER - BICYCLE,2016-07-24T00:00:00,2016,July,Sunday,24,206,13,2016-08-03T00:00:00,2016,August,Wednesday,3,216,11,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,OT,21,,500.0,STOLEN,24320,"{'type': 'Point', 'coordinates': (-79.43193355, 43.6888191)}"
-24334,1162,GO-20171481928,THEFT UNDER - BICYCLE,2017-08-16T00:00:00,2017,August,Wednesday,16,228,19,2017-08-16T00:00:00,2017,August,Wednesday,16,228,19,D41,Toronto,121,Oakridge (121),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,MOUNTAIN BIKE,MT,10,BLU,,STOLEN,24321,"{'type': 'Point', 'coordinates': (-79.28616014, 43.69346982)}"
-24335,23525,GO-2018916273,THEFT UNDER - BICYCLE,2018-05-21T00:00:00,2018,May,Monday,21,141,17,2018-05-21T00:00:00,2018,May,Monday,21,141,18,D42,Toronto,117,LAmoreaux (117),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,MT,6,GRY,200.0,STOLEN,24322,"{'type': 'Point', 'coordinates': (-79.30101856, 43.80230181)}"
-24336,21450,GO-20169013946,THEFT UNDER,2016-11-28T00:00:00,2016,November,Monday,28,333,18,2016-11-28T00:00:00,2016,November,Monday,28,333,18,D13,Toronto,106,Humewood-Cedarvale (106),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,7.2 FX WSD 20L,TO,20,WHI,900.0,STOLEN,24323,"{'type': 'Point', 'coordinates': (-79.42727116, 43.69629594)}"
-24337,24743,GO-20151487905,THEFT UNDER,2015-08-21T00:00:00,2015,August,Friday,21,233,18,2015-08-29T00:00:00,2015,August,Saturday,29,241,12,D13,Toronto,108,Briar Hill-Belgravia (108),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,MAX,EL,1,BLK,2000.0,STOLEN,24324,"{'type': 'Point', 'coordinates': (-79.44495519, 43.69847442)}"
-24338,1780,GO-20179018703,THEFT UNDER,2017-11-01T00:00:00,2017,November,Wednesday,1,305,7,2017-11-01T00:00:00,2017,November,Wednesday,1,305,20,D41,Toronto,121,Oakridge (121),Ttc Subway Station,Transit,UK,,RG,18,BLK,400.0,STOLEN,24325,"{'type': 'Point', 'coordinates': (-79.28898153, 43.69286837)}"
-24339,13669,GO-20171004111,THEFT UNDER - BICYCLE,2017-06-06T00:00:00,2017,June,Tuesday,6,157,9,2017-06-06T00:00:00,2017,June,Tuesday,6,157,15,D41,Toronto,124,Kennedy Park (124),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,INFINITY,GRAVITY,MT,7,RED,300.0,STOLEN,24326,"{'type': 'Point', 'coordinates': (-79.26789116, 43.73220089)}"
-24340,23552,GO-20189021977,THEFT UNDER - BICYCLE,2018-07-04T00:00:00,2018,July,Wednesday,4,185,21,2018-07-11T00:00:00,2018,July,Wednesday,11,192,12,D42,Toronto,117,LAmoreaux (117),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,DS650,MT,21,SIL,356.0,STOLEN,24327,"{'type': 'Point', 'coordinates': (-79.32005577, 43.799489)}"
-24341,21511,GO-20179016103,THEFT UNDER - BICYCLE,2017-09-14T00:00:00,2017,September,Thursday,14,257,12,2017-09-29T00:00:00,2017,September,Friday,29,272,12,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,VFR 6,RG,12,SIL,800.0,STOLEN,24328,"{'type': 'Point', 'coordinates': (-79.43193071, 43.69724944)}"
-24342,21519,GO-20189005793,THEFT UNDER - BICYCLE,2018-02-23T00:00:00,2018,February,Friday,23,54,2,2018-02-23T00:00:00,2018,February,Friday,23,54,13,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DB,WILDWOOD DLX,MT,10,SIL,300.0,STOLEN,24329,"{'type': 'Point', 'coordinates': (-79.42193538, 43.68241953)}"
-24343,21520,GO-20189005793,THEFT UNDER - BICYCLE,2018-02-23T00:00:00,2018,February,Friday,23,54,2,2018-02-23T00:00:00,2018,February,Friday,23,54,13,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SCOTT,RG,10,BRN,500.0,STOLEN,24330,"{'type': 'Point', 'coordinates': (-79.42193538, 43.68241953)}"
-24344,21521,GO-20189005793,THEFT UNDER - BICYCLE,2018-02-23T00:00:00,2018,February,Friday,23,54,2,2018-02-23T00:00:00,2018,February,Friday,23,54,13,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,MT,1,BLU,300.0,STOLEN,24331,"{'type': 'Point', 'coordinates': (-79.42193538, 43.68241953)}"
-24345,21522,GO-2018355547,B&E,2018-02-24T00:00:00,2018,February,Saturday,24,55,22,2018-02-25T00:00:00,2018,February,Sunday,25,56,10,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,STUMPJUMPER,MT,11,SIL,1500.0,STOLEN,24332,"{'type': 'Point', 'coordinates': (-79.43570105, 43.69487807)}"
-24346,21531,GO-20189041448,THEFT UNDER - BICYCLE,2018-12-09T00:00:00,2018,December,Sunday,9,343,15,2018-12-10T00:00:00,2018,December,Monday,10,344,10,D13,Toronto,106,Humewood-Cedarvale (106),"Apartment (Rooming House, Condo)",Apartment,OT,SVELTO RC (MEDI,RC,21,BLU,900.0,STOLEN,24333,"{'type': 'Point', 'coordinates': (-79.42254298, 43.69371292)}"
-24347,21564,GO-20201306023,THEFT UNDER - BICYCLE,2020-05-01T00:00:00,2020,May,Friday,1,122,0,2020-07-14T00:00:00,2020,July,Tuesday,14,196,15,D13,Toronto,106,Humewood-Cedarvale (106),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,SIRRUS,RG,24,BLK,1300.0,STOLEN,24334,"{'type': 'Point', 'coordinates': (-79.41826195, 43.68316749)}"
-24348,21789,GO-20149000137,THEFT UNDER,2014-01-03T00:00:00,2014,January,Friday,3,3,8,2014-01-04T00:00:00,2014,January,Saturday,4,4,18,D13,Toronto,106,Humewood-Cedarvale (106),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,HARDROCK,MT,18,GRY,560.0,STOLEN,24335,"{'type': 'Point', 'coordinates': (-79.42335094, 43.68593855)}"
-24349,21839,GO-20143110100,THEFT UNDER,2014-10-15T00:00:00,2014,October,Wednesday,15,288,20,2014-10-15T00:00:00,2014,October,Wednesday,15,288,21,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,BLADE RESPONSE,MT,28,BLK,,STOLEN,24336,"{'type': 'Point', 'coordinates': (-79.42593128, 43.69318782)}"
-24350,21840,GO-20149007660,THEFT UNDER,2014-10-17T00:00:00,2014,October,Friday,17,290,23,2014-10-18T00:00:00,2014,October,Saturday,18,291,10,D13,Toronto,106,Humewood-Cedarvale (106),"Apartment (Rooming House, Condo)",Apartment,MA,,MT,21,SIL,400.0,STOLEN,24337,"{'type': 'Point', 'coordinates': (-79.41992425, 43.68720846)}"
-24351,21851,GO-2015574654,B&E,2015-04-06T00:00:00,2015,April,Monday,6,96,0,2015-04-07T00:00:00,2015,April,Tuesday,7,97,14,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,RC,12,SIL,1500.0,STOLEN,24338,"{'type': 'Point', 'coordinates': (-79.42593128, 43.69318782)}"
-24352,21923,GO-20151596050,B&E,2015-09-01T00:00:00,2015,September,Tuesday,1,244,0,2015-09-15T00:00:00,2015,September,Tuesday,15,258,16,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,,OT,0,BLK,,STOLEN,24339,"{'type': 'Point', 'coordinates': (-79.42727116, 43.69629594)}"
-24353,21927,GO-20151700490,THEFT UNDER,2015-09-23T00:00:00,2015,September,Wednesday,23,266,3,2015-10-02T00:00:00,2015,October,Friday,2,275,11,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,,MT,0,,,STOLEN,24340,"{'type': 'Point', 'coordinates': (-79.42018419, 43.68277262)}"
-24354,21928,GO-20151724523,THEFT UNDER,2015-10-05T00:00:00,2015,October,Monday,5,278,21,2015-10-06T00:00:00,2015,October,Tuesday,6,279,12,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,ROAD BIKE,RC,10,BLU,500.0,STOLEN,24341,"{'type': 'Point', 'coordinates': (-79.42144827, 43.68771819)}"
-24355,21931,GO-20159008289,THEFT UNDER,2015-10-06T00:00:00,2015,October,Tuesday,6,279,6,2015-10-07T00:00:00,2015,October,Wednesday,7,280,8,D13,Toronto,106,Humewood-Cedarvale (106),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,PRESTO,RG,21,WHI,316.0,STOLEN,24342,"{'type': 'Point', 'coordinates': (-79.4308662, 43.69985233)}"
-24356,21951,GO-2016527664,THEFT UNDER - BICYCLE,2016-03-27T00:00:00,2016,March,Sunday,27,87,22,2016-03-28T00:00:00,2016,March,Monday,28,88,19,D13,Toronto,106,Humewood-Cedarvale (106),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,ZH323,EL,0,BLK,1250.0,STOLEN,24343,"{'type': 'Point', 'coordinates': (-79.42140231, 43.68445552)}"
-24357,21962,GO-20169004461,THEFT UNDER,2015-05-02T00:00:00,2015,May,Saturday,2,122,12,2016-05-12T00:00:00,2016,May,Thursday,12,133,13,D13,Toronto,106,Humewood-Cedarvale (106),"Apartment (Rooming House, Condo)",Apartment,NO,YORKVILLE,RG,21,BLK,492.0,STOLEN,24344,"{'type': 'Point', 'coordinates': (-79.42083062, 43.68619468)}"
-24358,21976,GO-20209023190,B&E,2020-09-14T00:00:00,2020,September,Monday,14,258,1,2020-09-14T00:00:00,2020,September,Monday,14,258,12,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,,MT,8,,500.0,STOLEN,24345,"{'type': 'Point', 'coordinates': (-79.42874311, 43.68691875)}"
-24359,24397,GO-20201480161,B&E,2020-08-08T00:00:00,2020,August,Saturday,8,221,9,2020-08-08T00:00:00,2020,August,Saturday,8,221,9,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCOTT,GENIUS,MT,0,BLK,5045.0,STOLEN,24346,"{'type': 'Point', 'coordinates': (-79.43291496, 43.69703637)}"
-24360,24398,GO-20201480161,B&E,2020-08-08T00:00:00,2020,August,Saturday,8,221,9,2020-08-08T00:00:00,2020,August,Saturday,8,221,9,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,UNKNOWN,OT,0,BLU,806.0,STOLEN,24347,"{'type': 'Point', 'coordinates': (-79.43291496, 43.69703637)}"
-24361,24408,GO-20209027309,THEFT UNDER,2020-10-19T00:00:00,2020,October,Monday,19,293,23,2020-10-22T00:00:00,2020,October,Thursday,22,296,18,D13,Toronto,106,Humewood-Cedarvale (106),Schools During Un-Supervised Activity,Educational,UK,MAVERICK,BM,50,BLK,300.0,STOLEN,24348,"{'type': 'Point', 'coordinates': (-79.43330144, 43.69212919)}"
-24362,24686,GO-2015551780,B&E,2015-04-02T00:00:00,2015,April,Thursday,2,92,16,2015-04-03T00:00:00,2015,April,Friday,3,93,10,D13,Toronto,106,Humewood-Cedarvale (106),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OPUS,SCHERZO,OT,20,WHI,1500.0,STOLEN,24349,"{'type': 'Point', 'coordinates': (-79.42228634, 43.69305808)}"
-24363,24687,GO-2015551780,B&E,2015-04-02T00:00:00,2015,April,Thursday,2,92,16,2015-04-03T00:00:00,2015,April,Friday,3,93,10,D13,Toronto,106,Humewood-Cedarvale (106),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OPUS,SEKHMER,OT,20,WHI,1540.0,STOLEN,24350,"{'type': 'Point', 'coordinates': (-79.42228634, 43.69305808)}"
-24364,15097,GO-20151236434,THEFT UNDER,2015-07-20T00:00:00,2015,July,Monday,20,201,16,2015-07-20T00:00:00,2015,July,Monday,20,201,16,D11,Toronto,114,Lambton Baby Point (114),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,TRIUMPH,TO,18,BLUWHI,260.0,STOLEN,24351,"{'type': 'Point', 'coordinates': (-79.49696796, 43.65956537)}"
-24365,24699,GO-20159003034,THEFT UNDER,2015-05-23T00:00:00,2015,May,Saturday,23,143,17,2015-05-23T00:00:00,2015,May,Saturday,23,143,22,D13,Toronto,106,Humewood-Cedarvale (106),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,YORKVILLE,RG,21,GRY,492.0,STOLEN,24352,"{'type': 'Point', 'coordinates': (-79.42430151, 43.6979464)}"
-24366,24732,GO-20159005351,THEFT UNDER,2015-08-05T00:00:00,2015,August,Wednesday,5,217,3,2015-08-05T00:00:00,2015,August,Wednesday,5,217,5,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,,RG,10,BLK,200.0,STOLEN,24353,"{'type': 'Point', 'coordinates': (-79.42385723, 43.68395148)}"
-24367,24749,GO-20159006761,THEFT UNDER,2015-08-30T00:00:00,2015,August,Sunday,30,242,19,2015-09-04T00:00:00,2015,September,Friday,4,247,14,D13,Toronto,106,Humewood-Cedarvale (106),"Apartment (Rooming House, Condo)",Apartment,NO,,RG,21,GRY,900.0,STOLEN,24354,"{'type': 'Point', 'coordinates': (-79.41957799, 43.68637133)}"
-24368,25249,GO-20161507945,B&E,2016-08-22T00:00:00,2016,August,Monday,22,235,7,2016-08-25T00:00:00,2016,August,Thursday,25,238,17,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,MOUNTIAN,MT,18,BLK,5000.0,STOLEN,24355,"{'type': 'Point', 'coordinates': (-79.42854926, 43.69527557)}"
-24369,11664,GO-20169006519,THEFT UNDER - BICYCLE,2016-06-28T00:00:00,2016,June,Tuesday,28,180,18,2016-06-29T00:00:00,2016,June,Wednesday,29,181,14,D41,Toronto,122,Birchcliffe-Cliffside (122),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,SC,,RG,25,RED,350.0,STOLEN,24356,"{'type': 'Point', 'coordinates': (-79.27087827, 43.68775795)}"
-24370,25255,GO-20169009975,THEFT UNDER,2016-09-05T00:00:00,2016,September,Monday,5,249,4,2016-09-05T00:00:00,2016,September,Monday,5,249,9,D13,Toronto,106,Humewood-Cedarvale (106),"Apartment (Rooming House, Condo)",Apartment,NO,YORKVILLE,OT,21,GRY,400.0,STOLEN,24357,"{'type': 'Point', 'coordinates': (-79.4230398, 43.68837452)}"
-24371,25321,GO-20179019032,THEFT UNDER - BICYCLE,2017-11-02T00:00:00,2017,November,Thursday,2,306,21,2017-11-06T00:00:00,2017,November,Monday,6,310,18,D13,Toronto,106,Humewood-Cedarvale (106),"Apartment (Rooming House, Condo)",Apartment,RM,RC,OT,21,BLK,900.0,STOLEN,24358,"{'type': 'Point', 'coordinates': (-79.4236196, 43.68761959)}"
-24372,25326,GO-20189020518,THEFT UNDER,2018-06-27T00:00:00,2018,June,Wednesday,27,178,18,2018-06-27T00:00:00,2018,June,Wednesday,27,178,22,D13,Toronto,106,Humewood-Cedarvale (106),"Apartment (Rooming House, Condo)",Apartment,UK,,TR,15,BLU,800.0,STOLEN,24359,"{'type': 'Point', 'coordinates': (-79.4308662, 43.69985233)}"
-24373,25333,GO-20181570057,THEFT UNDER,2018-08-20T00:00:00,2018,August,Monday,20,232,18,2018-08-25T00:00:00,2018,August,Saturday,25,237,7,D13,Toronto,106,Humewood-Cedarvale (106),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,,RC,21,BLK,500.0,STOLEN,24360,"{'type': 'Point', 'coordinates': (-79.43253204, 43.69027743)}"
-24374,25361,GO-20191957994,THEFT OF EBIKE UNDER $5000,2019-10-08T00:00:00,2019,October,Tuesday,8,281,23,2019-10-10T00:00:00,2019,October,Thursday,10,283,15,D13,Toronto,106,Humewood-Cedarvale (106),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,ZONE GTS,EL,32,BLK,3840.0,STOLEN,24361,"{'type': 'Point', 'coordinates': (-79.42140231, 43.68445552)}"
-24375,25378,GO-20209018780,THEFT UNDER,2016-07-28T00:00:00,2016,July,Thursday,28,210,13,2020-07-28T00:00:00,2020,July,Tuesday,28,210,12,D13,Toronto,106,Humewood-Cedarvale (106),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,,RG,4,DGR,500.0,STOLEN,24362,"{'type': 'Point', 'coordinates': (-79.4245307, 43.6819488)}"
-24376,4,GO-20169014546,THEFT UNDER - BICYCLE,2016-11-01T00:00:00,2016,November,Tuesday,1,306,12,2016-12-12T00:00:00,2016,December,Monday,12,347,13,D13,Toronto,107,Oakwood Village (107),"Private Property Structure (Pool, Shed, Detached Garage)",Other,BI,TONNE,RC,12,BLU,0.0,STOLEN,24363,"{'type': 'Point', 'coordinates': (-79.43635994000002, 43.68677012)}"
-24377,526,GO-2017986407,THEFT UNDER - BICYCLE,2017-05-31T00:00:00,2017,May,Wednesday,31,151,11,2017-06-03T00:00:00,2017,June,Saturday,3,154,21,D13,Toronto,107,Oakwood Village (107),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,,OT,1,WHI,400.0,STOLEN,24364,"{'type': 'Point', 'coordinates': (-79.4395709, 43.68977909000001)}"
-24378,527,GO-2017986407,THEFT UNDER - BICYCLE,2017-05-31T00:00:00,2017,May,Wednesday,31,151,11,2017-06-03T00:00:00,2017,June,Saturday,3,154,21,D13,Toronto,107,Oakwood Village (107),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,,OT,1,RED,200.0,STOLEN,24365,"{'type': 'Point', 'coordinates': (-79.4395709, 43.68977909000001)}"
-24379,528,GO-2017986749,THEFT UNDER - BICYCLE,2017-05-21T00:00:00,2017,May,Sunday,21,141,2,2017-06-03T00:00:00,2017,June,Saturday,3,154,22,D13,Toronto,107,Oakwood Village (107),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,,OT,0,BLK,400.0,STOLEN,24366,"{'type': 'Point', 'coordinates': (-79.43991823, 43.69060784)}"
-24380,1012,GO-20179011344,THEFT UNDER - BICYCLE,2017-07-30T00:00:00,2017,July,Sunday,30,211,11,2017-07-30T00:00:00,2017,July,Sunday,30,211,15,D13,Toronto,107,Oakwood Village (107),Convenience Stores,Commercial,OT,,MT,21,RED,850.0,STOLEN,24367,"{'type': 'Point', 'coordinates': (-79.43935045, 43.69804088)}"
-24381,1015,GO-20171376656,THEFT UNDER,2017-07-27T00:00:00,2017,July,Thursday,27,208,9,2017-07-31T00:00:00,2017,July,Monday,31,212,18,D13,Toronto,107,Oakwood Village (107),"Apartment (Rooming House, Condo)",Apartment,KHS,D1200,MT,28,GRN,,RECOVERED,24368,"{'type': 'Point', 'coordinates': (-79.44764573, 43.69625936)}"
-24382,1024,GO-20179011422,THEFT UNDER - BICYCLE,2017-07-31T00:00:00,2017,July,Monday,31,212,17,2017-07-31T00:00:00,2017,July,Monday,31,212,17,D13,Toronto,107,Oakwood Village (107),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DB,APPROACH,MT,26,BLU,500.0,STOLEN,24369,"{'type': 'Point', 'coordinates': (-79.4395218, 43.69617018)}"
-24383,1025,GO-20179011422,THEFT UNDER - BICYCLE,2017-07-31T00:00:00,2017,July,Monday,31,212,17,2017-07-31T00:00:00,2017,July,Monday,31,212,17,D13,Toronto,107,Oakwood Village (107),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RM,SHERPA 10,MT,26,BGE,500.0,STOLEN,24370,"{'type': 'Point', 'coordinates': (-79.4395218, 43.69617018)}"
-24384,1254,GO-20179013458,THEFT UNDER,2017-08-27T00:00:00,2017,August,Sunday,27,239,11,2017-08-27T00:00:00,2017,August,Sunday,27,239,13,D13,Toronto,107,Oakwood Village (107),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,VINTAGE,RC,20,RED,0.0,STOLEN,24371,"{'type': 'Point', 'coordinates': (-79.43762047, 43.68995638)}"
-24385,1424,GO-20179014934,THEFT UNDER - BICYCLE,2017-09-15T00:00:00,2017,September,Friday,15,258,0,2017-09-16T00:00:00,2017,September,Saturday,16,259,14,D13,Toronto,107,Oakwood Village (107),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UK,DURANGO COMP,MT,70,GRN,720.0,STOLEN,24372,"{'type': 'Point', 'coordinates': (-79.4472933, 43.69635948)}"
-24386,1565,GO-20171785906,THEFT UNDER - BICYCLE,2017-09-27T00:00:00,2017,September,Wednesday,27,270,18,2017-10-02T00:00:00,2017,October,Monday,2,275,12,D13,Toronto,107,Oakwood Village (107),"Private Property Structure (Pool, Shed, Detached Garage)",Other,BIANCHI,,FO,3,GRYSIL,500.0,STOLEN,24373,"{'type': 'Point', 'coordinates': (-79.43832648, 43.69645056)}"
-24387,2449,GO-20189017282,THEFT UNDER - BICYCLE,2018-06-04T00:00:00,2018,June,Monday,4,155,19,2018-06-04T00:00:00,2018,June,Monday,4,155,20,D13,Toronto,107,Oakwood Village (107),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,1972,RG,10,GRN,0.0,STOLEN,24374,"{'type': 'Point', 'coordinates': (-79.44638373, 43.68624873)}"
-24388,2963,GO-20189023962,THEFT UNDER,2018-07-26T00:00:00,2018,July,Thursday,26,207,3,2018-07-26T00:00:00,2018,July,Thursday,26,207,9,D13,Toronto,107,Oakwood Village (107),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,10,,400.0,STOLEN,24375,"{'type': 'Point', 'coordinates': (-79.43604282, 43.685970690000005)}"
-24389,3426,GO-20189029619,THEFT UNDER - BICYCLE,2018-09-07T00:00:00,2018,September,Friday,7,250,21,2018-09-08T00:00:00,2018,September,Saturday,8,251,17,D13,Toronto,107,Oakwood Village (107),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,RECORD,OT,10,BLK,0.0,STOLEN,24376,"{'type': 'Point', 'coordinates': (-79.43933694, 43.68900589)}"
-24390,4539,GO-20199019185,THEFT UNDER - BICYCLE,2019-06-19T00:00:00,2019,June,Wednesday,19,170,6,2019-06-19T00:00:00,2019,June,Wednesday,19,170,7,D13,Toronto,107,Oakwood Village (107),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RC,14,BLK,1500.0,STOLEN,24377,"{'type': 'Point', 'coordinates': (-79.44411473, 43.69252928)}"
-24391,5400,GO-20199031454,THEFT UNDER - BICYCLE,2019-06-27T00:00:00,2019,June,Thursday,27,178,21,2019-09-25T00:00:00,2019,September,Wednesday,25,268,12,D13,Toronto,107,Oakwood Village (107),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KO,,MT,18,TRQ,768.0,STOLEN,24378,"{'type': 'Point', 'coordinates': (-79.44212778000002, 43.68174824)}"
-24392,6411,GO-20209015546,THEFT UNDER,2020-06-17T00:00:00,2020,June,Wednesday,17,169,3,2020-06-17T00:00:00,2020,June,Wednesday,17,169,12,D13,Toronto,107,Oakwood Village (107),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GT,,MT,24,WHI,500.0,STOLEN,24379,"{'type': 'Point', 'coordinates': (-79.43918286, 43.69535395)}"
-24393,6818,GO-20201424192,THEFT UNDER - BICYCLE,2020-07-23T00:00:00,2020,July,Thursday,23,205,22,2020-07-31T00:00:00,2020,July,Friday,31,213,11,D13,Toronto,107,Oakwood Village (107),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ELECTRA,TOWNIE,OT,7,BLU,800.0,STOLEN,24380,"{'type': 'Point', 'coordinates': (-79.44212778000002, 43.68174824)}"
-24394,6879,GO-20201467382,THEFT UNDER - BICYCLE,2020-08-01T00:00:00,2020,August,Saturday,1,214,21,2020-08-06T00:00:00,2020,August,Thursday,6,219,19,D13,Toronto,107,Oakwood Village (107),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,RG,1,,40.0,STOLEN,24381,"{'type': 'Point', 'coordinates': (-79.44713126, 43.69471797)}"
-24395,7445,GO-20209026147,THEFT FROM MOTOR VEHICLE UNDER,2020-10-11T00:00:00,2020,October,Sunday,11,285,8,2020-10-11T00:00:00,2020,October,Sunday,11,285,19,D13,Toronto,107,Oakwood Village (107),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,RG,21,WHI,320.0,STOLEN,24382,"{'type': 'Point', 'coordinates': (-79.44088328, 43.69282259)}"
-24396,7827,GO-20141871876,THEFT UNDER,2014-04-11T00:00:00,2014,April,Friday,11,101,0,2014-04-11T00:00:00,2014,April,Friday,11,101,17,D13,Toronto,107,Oakwood Village (107),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,RINCON,MT,24,SILBLK,550.0,STOLEN,24383,"{'type': 'Point', 'coordinates': (-79.44212214, 43.69578451)}"
-24397,7876,GO-20141992869,THEFT UNDER,2014-04-30T00:00:00,2014,April,Wednesday,30,120,20,2014-05-01T00:00:00,2014,May,Thursday,1,121,10,D13,Toronto,107,Oakwood Village (107),"Single Home, House (Attach Garage, Cottage, Mobile)",House,PIERROT,,OT,1,BLKONG,2500.0,STOLEN,24384,"{'type': 'Point', 'coordinates': (-79.4446417, 43.69531788)}"
-24398,8138,GO-20149003996,THEFT UNDER,2014-06-03T00:00:00,2014,June,Tuesday,3,154,20,2014-06-11T00:00:00,2014,June,Wednesday,11,162,21,D13,Toronto,107,Oakwood Village (107),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,IMPERIAL,TA,1,SIL,1500.0,STOLEN,24385,"{'type': 'Point', 'coordinates': (-79.44303897, 43.68990208)}"
-24399,8293,GO-20142442769,THEFT UNDER,2014-07-06T00:00:00,2014,July,Sunday,6,187,2,2014-07-06T00:00:00,2014,July,Sunday,6,187,15,D13,Toronto,107,Oakwood Village (107),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SCOTT,,MT,18,GRY,200.0,UNKNOWN,24386,"{'type': 'Point', 'coordinates': (-79.4395218, 43.69617018)}"
-24400,8327,GO-20142464104,ROBBERY - OTHER,2014-07-09T00:00:00,2014,July,Wednesday,9,190,16,2014-07-09T00:00:00,2014,July,Wednesday,9,190,18,D13,Toronto,107,Oakwood Village (107),"Open Areas (Lakes, Parks, Rivers)",Outside,UNKNOWN,UNKNOWN,RG,1,PLE,,STOLEN,24387,"{'type': 'Point', 'coordinates': (-79.44891553, 43.69254667)}"
-24401,8495,GO-20142543704,THEFT UNDER,2014-07-16T00:00:00,2014,July,Wednesday,16,197,10,2014-07-25T00:00:00,2014,July,Friday,25,206,14,D13,Toronto,107,Oakwood Village (107),"Religious Facilities (Synagogue, Church, Convent, Mosque)",Other,ITALIO,,OT,16,WHI,,STOLEN,24388,"{'type': 'Point', 'coordinates': (-79.44496106, 43.69607159)}"
-24402,8595,GO-20142673124,ROBBERY - MUGGING,2014-08-09T00:00:00,2014,August,Saturday,9,221,1,2014-08-10T00:00:00,2014,August,Sunday,10,222,10,D13,Toronto,107,Oakwood Village (107),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIMELLI,,EL,12,RED,2800.0,RECOVERED,24389,"{'type': 'Point', 'coordinates': (-79.44764573, 43.69625936)}"
-24403,8617,GO-20149005714,THEFT UNDER,2014-08-05T00:00:00,2014,August,Tuesday,5,217,20,2014-08-07T00:00:00,2014,August,Thursday,7,219,19,D13,Toronto,107,Oakwood Village (107),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,,RG,21,RED,500.0,STOLEN,24390,"{'type': 'Point', 'coordinates': (-79.43971621, 43.678692100000006)}"
-24404,8851,GO-20142888521,THEFT UNDER,2014-09-09T00:00:00,2014,September,Tuesday,9,252,14,2014-09-11T00:00:00,2014,September,Thursday,11,254,12,D13,Toronto,107,Oakwood Village (107),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,0,BLU,,STOLEN,24391,"{'type': 'Point', 'coordinates': (-79.44340222, 43.6907772)}"
-24405,9112,GO-20143172009,THEFT UNDER,2014-10-25T00:00:00,2014,October,Saturday,25,298,9,2014-10-25T00:00:00,2014,October,Saturday,25,298,10,D13,Toronto,107,Oakwood Village (107),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FORTRESS,,SC,1,RED,3500.0,STOLEN,24392,"{'type': 'Point', 'coordinates': (-79.4386546, 43.68713408)}"
-24406,9246,GO-20159000017,THEFT UNDER,2015-01-02T00:00:00,2015,January,Friday,2,2,9,2015-01-02T00:00:00,2015,January,Friday,2,2,9,D13,Toronto,107,Oakwood Village (107),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,OT,24,WHI,800.0,STOLEN,24393,"{'type': 'Point', 'coordinates': (-79.44531958, 43.69254443)}"
-24407,9251,GO-20159000107,THEFT UNDER,2015-01-06T00:00:00,2015,January,Tuesday,6,6,15,2015-01-07T00:00:00,2015,January,Wednesday,7,7,9,D13,Toronto,107,Oakwood Village (107),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,TRAFIC 5.0,TO,21,BLK,500.0,STOLEN,24394,"{'type': 'Point', 'coordinates': (-79.43671035, 43.69042107)}"
-24408,9330,GO-2015451871,THEFT UNDER,2015-03-17T00:00:00,2015,March,Tuesday,17,76,15,2015-03-17T00:00:00,2015,March,Tuesday,17,76,15,D13,Toronto,107,Oakwood Village (107),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,PRESTO,RC,21,BLKRED,300.0,STOLEN,24395,"{'type': 'Point', 'coordinates': (-79.44037788, 43.68878283)}"
-24409,9352,GO-20159001535,THEFT UNDER,2015-03-23T00:00:00,2015,March,Monday,23,82,1,2015-03-25T00:00:00,2015,March,Wednesday,25,84,19,D13,Toronto,107,Oakwood Village (107),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,,RG,18,BLK,1200.0,STOLEN,24396,"{'type': 'Point', 'coordinates': (-79.43858871, 43.68975266)}"
-24410,9567,GO-20159002664,THEFT UNDER,2015-05-12T00:00:00,2015,May,Tuesday,12,132,21,2015-05-13T00:00:00,2015,May,Wednesday,13,133,0,D13,Toronto,107,Oakwood Village (107),Schools During Un-Supervised Activity,Educational,MA,BOBCAT,OT,24,SIL,200.0,STOLEN,24397,"{'type': 'Point', 'coordinates': (-79.44971292, 43.69444053)}"
-24411,9909,GO-20151099635,THEFT UNDER,2015-06-29T00:00:00,2015,June,Monday,29,180,1,2015-06-30T00:00:00,2015,June,Tuesday,30,181,10,D13,Toronto,107,Oakwood Village (107),"Apartment (Rooming House, Condo)",Apartment,OTHER,,MT,1,GRY,300.0,STOLEN,24398,"{'type': 'Point', 'coordinates': (-79.45023952, 43.695692570000006)}"
-24412,9969,GO-20151165342,THEFT UNDER,2015-07-07T00:00:00,2015,July,Tuesday,7,188,20,2015-07-10T00:00:00,2015,July,Friday,10,191,9,D13,Toronto,107,Oakwood Village (107),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,NITRO XT,MT,21,BLUWHI,180.0,STOLEN,24399,"{'type': 'Point', 'coordinates': (-79.4432445, 43.69354021)}"
-24413,10294,GO-20159005960,THEFT UNDER,2014-08-01T00:00:00,2014,August,Friday,1,213,0,2015-08-18T00:00:00,2015,August,Tuesday,18,230,10,D13,Toronto,107,Oakwood Village (107),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MI,,RG,8,BLU,399.0,STOLEN,24400,"{'type': 'Point', 'coordinates': (-79.44678153, 43.68727175)}"
-24414,10355,GO-20151508954,ROBBERY - MUGGING,2015-09-01T00:00:00,2015,September,Tuesday,1,244,16,2015-09-01T00:00:00,2015,September,Tuesday,1,244,21,D13,Toronto,107,Oakwood Village (107),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,UNKNOWN,MT,21,BLU,,STOLEN,24401,"{'type': 'Point', 'coordinates': (-79.45023952, 43.695692570000006)}"
-24415,10391,GO-20159006671,THEFT UNDER,2015-09-01T00:00:00,2015,September,Tuesday,1,244,21,2015-09-02T00:00:00,2015,September,Wednesday,2,245,16,D13,Toronto,107,Oakwood Village (107),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,RUBYLITE,RC,12,BLU,1500.0,STOLEN,24402,"{'type': 'Point', 'coordinates': (-79.43886354, 43.6915407)}"
-24416,10553,GO-20159007794,THEFT UNDER,2015-09-26T00:00:00,2015,September,Saturday,26,269,15,2015-09-26T00:00:00,2015,September,Saturday,26,269,19,D13,Toronto,107,Oakwood Village (107),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,CORSA 1,OT,8,CRM,675.0,STOLEN,24403,"{'type': 'Point', 'coordinates': (-79.44212214, 43.69578451)}"
-24417,10695,GO-20151848755,B&E,2015-10-27T00:00:00,2015,October,Tuesday,27,300,17,2015-10-27T00:00:00,2015,October,Tuesday,27,300,17,D13,Toronto,107,Oakwood Village (107),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BLACK LABEL,HOT PINK,RC,1,PNK,1226.0,STOLEN,24404,"{'type': 'Point', 'coordinates': (-79.4420163, 43.69315252)}"
-24418,10696,GO-20151848755,B&E,2015-10-27T00:00:00,2015,October,Tuesday,27,300,17,2015-10-27T00:00:00,2015,October,Tuesday,27,300,17,D13,Toronto,107,Oakwood Village (107),"Single Home, House (Attach Garage, Cottage, Mobile)",House,LINUX,,MT,1,SIL,300.0,STOLEN,24405,"{'type': 'Point', 'coordinates': (-79.4420163, 43.69315252)}"
-24419,10792,GO-20159009928,THEFT UNDER,2015-11-18T00:00:00,2015,November,Wednesday,18,322,20,2015-11-19T00:00:00,2015,November,Thursday,19,323,21,D13,Toronto,107,Oakwood Village (107),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DB,,MT,7,BRN,2500.0,STOLEN,24406,"{'type': 'Point', 'coordinates': (-79.44058723, 43.686709500000006)}"
-24420,11468,GO-2016997795,PROPERTY - FOUND,2016-06-08T00:00:00,2016,June,Wednesday,8,160,17,2016-06-08T00:00:00,2016,June,Wednesday,8,160,17,D13,Toronto,107,Oakwood Village (107),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,STORM,MT,21,BLK,,UNKNOWN,24407,"{'type': 'Point', 'coordinates': (-79.44306809000001, 43.69347565)}"
-24421,11629,GO-20169006299,THEFT UNDER,2016-06-22T00:00:00,2016,June,Wednesday,22,174,23,2016-06-24T00:00:00,2016,June,Friday,24,176,15,D13,Toronto,107,Oakwood Village (107),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SC,HYDRA,RG,24,GRY,400.0,STOLEN,24408,"{'type': 'Point', 'coordinates': (-79.43868111, 43.69727295)}"
-24422,11655,GO-20169006472,THEFT UNDER - BICYCLE,2016-06-28T00:00:00,2016,June,Tuesday,28,180,6,2016-06-28T00:00:00,2016,June,Tuesday,28,180,10,D13,Toronto,107,Oakwood Village (107),"Apartment (Rooming House, Condo)",Apartment,OT,MINI VELO,TO,18,MRN,2000.0,STOLEN,24409,"{'type': 'Point', 'coordinates': (-79.44713126, 43.69471797)}"
-24423,11701,GO-20169006710,THEFT UNDER,2015-09-01T00:00:00,2015,September,Tuesday,1,244,15,2016-07-04T00:00:00,2016,July,Monday,4,186,21,D13,Toronto,107,Oakwood Village (107),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,,RG,3,,400.0,STOLEN,24410,"{'type': 'Point', 'coordinates': (-79.4395218, 43.69617018)}"
-24424,12501,GO-20169011292,THEFT UNDER - BICYCLE,2016-09-27T00:00:00,2016,September,Tuesday,27,271,23,2016-09-29T00:00:00,2016,September,Thursday,29,273,11,D13,Toronto,107,Oakwood Village (107),"Apartment (Rooming House, Condo)",Apartment,KH,T-REX,MT,18,BLU,439.0,STOLEN,24411,"{'type': 'Point', 'coordinates': (-79.43218644, 43.68703124)}"
-24425,12520,GO-20169011390,THEFT UNDER - BICYCLE,2016-09-19T00:00:00,2016,September,Monday,19,263,1,2016-10-01T00:00:00,2016,October,Saturday,1,275,8,D13,Toronto,107,Oakwood Village (107),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,INDIE IGH NEXUS,OT,8,GRY,800.0,STOLEN,24412,"{'type': 'Point', 'coordinates': (-79.4309924, 43.68139667)}"
-24426,12603,GO-20169011390,THEFT UNDER - BICYCLE,2016-09-19T00:00:00,2016,September,Monday,19,263,1,2016-10-01T00:00:00,2016,October,Saturday,1,275,8,D13,Toronto,107,Oakwood Village (107),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,INDIE IGH NEXUS,MT,8,GRY,800.0,STOLEN,24413,"{'type': 'Point', 'coordinates': (-79.4309924, 43.68139667)}"
-24427,14856,GO-20191294339,THEFT UNDER - BICYCLE,2019-07-08T00:00:00,2019,July,Monday,8,189,17,2019-07-11T00:00:00,2019,July,Thursday,11,192,10,D13,Toronto,107,Oakwood Village (107),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,MALAHAT,RG,21,GRN,703.0,STOLEN,24414,"{'type': 'Point', 'coordinates': (-79.44037262, 43.68329507)}"
-24428,14866,GO-20199028659,THEFT UNDER,2019-09-03T00:00:00,2019,September,Tuesday,3,246,19,2019-09-03T00:00:00,2019,September,Tuesday,3,246,21,D13,Toronto,107,Oakwood Village (107),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,6,WHI,250.0,STOLEN,24415,"{'type': 'Point', 'coordinates': (-79.44605738, 43.69438532)}"
-24429,14870,GO-20199032050,THEFT UNDER - BICYCLE,2019-09-25T00:00:00,2019,September,Wednesday,25,268,7,2019-09-30T00:00:00,2019,September,Monday,30,273,10,D13,Toronto,107,Oakwood Village (107),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,HOOLIGAN,MT,24,BLU,250.0,STOLEN,24416,"{'type': 'Point', 'coordinates': (-79.43604282, 43.685970690000005)}"
-24430,14871,GO-20199035646,THEFT UNDER,2019-10-28T00:00:00,2019,October,Monday,28,301,3,2019-10-29T00:00:00,2019,October,Tuesday,29,302,9,D13,Toronto,107,Oakwood Village (107),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,MENS,RG,6,BLK,500.0,STOLEN,24417,"{'type': 'Point', 'coordinates': (-79.43730971, 43.68371858)}"
-24431,14882,GO-20201243716,PROPERTY - FOUND,2020-07-05T00:00:00,2020,July,Sunday,5,187,21,2020-07-05T00:00:00,2020,July,Sunday,5,187,21,D13,Toronto,107,Oakwood Village (107),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,SC 1800,MT,18,RED,110.0,UNKNOWN,24418,"{'type': 'Point', 'coordinates': (-79.4395218, 43.69617018)}"
-24432,14905,GO-20209026120,THEFT UNDER,2020-10-11T00:00:00,2020,October,Sunday,11,285,0,2020-10-11T00:00:00,2020,October,Sunday,11,285,10,D13,Toronto,107,Oakwood Village (107),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,21,BLK,300.0,STOLEN,24419,"{'type': 'Point', 'coordinates': (-79.43842089, 43.68146429)}"
-24433,15342,GO-20142603589,THEFT UNDER,2014-07-24T00:00:00,2014,July,Thursday,24,205,23,2014-07-30T00:00:00,2014,July,Wednesday,30,211,19,D13,Toronto,107,Oakwood Village (107),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNK,UNK,RG,0,,,STOLEN,24420,"{'type': 'Point', 'coordinates': (-79.45023952, 43.695692570000006)}"
-24434,15370,GO-20143109892,THEFT UNDER,2014-10-13T00:00:00,2014,October,Monday,13,286,10,2014-10-15T00:00:00,2014,October,Wednesday,15,288,22,D13,Toronto,107,Oakwood Village (107),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,FUEL EX 5.5,MT,18,BLKPNK,1500.0,STOLEN,24421,"{'type': 'Point', 'coordinates': (-79.44303897, 43.68990208)}"
-24435,15447,GO-20159006770,THEFT UNDER,2015-09-04T00:00:00,2015,September,Friday,4,247,1,2015-09-05T00:00:00,2015,September,Saturday,5,248,11,D13,Toronto,107,Oakwood Village (107),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,GIANT ESCAPE 2,TO,21,WHI,489.0,STOLEN,24422,"{'type': 'Point', 'coordinates': (-79.43884336, 43.69452827)}"
-24436,15466,GO-20151944837,THEFT UNDER,2015-10-23T00:00:00,2015,October,Friday,23,296,11,2015-11-12T00:00:00,2015,November,Thursday,12,316,15,D13,Toronto,107,Oakwood Village (107),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MIELE,UMPORIA,OT,8,BLK,1000.0,STOLEN,24423,"{'type': 'Point', 'coordinates': (-79.44102425000001, 43.68197893)}"
-24437,15469,GO-20159010029,THEFT UNDER,2015-11-06T00:00:00,2015,November,Friday,6,310,12,2015-11-22T00:00:00,2015,November,Sunday,22,326,12,D13,Toronto,107,Oakwood Village (107),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,5,MRN,250.0,STOLEN,24424,"{'type': 'Point', 'coordinates': (-79.43121333, 43.687229310000006)}"
-24438,15470,GO-20159010029,THEFT UNDER,2015-11-06T00:00:00,2015,November,Friday,6,310,12,2015-11-22T00:00:00,2015,November,Sunday,22,326,12,D13,Toronto,107,Oakwood Village (107),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,10,MRN,250.0,STOLEN,24425,"{'type': 'Point', 'coordinates': (-79.43121333, 43.687229310000006)}"
-24439,15479,GO-201687963,THEFT UNDER,2016-01-15T00:00:00,2016,January,Friday,15,15,12,2016-01-15T00:00:00,2016,January,Friday,15,15,14,D13,Toronto,107,Oakwood Village (107),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CARRERA,UNKN,MT,0,GRY,350.0,STOLEN,24426,"{'type': 'Point', 'coordinates': (-79.44306809000001, 43.69347565)}"
-24440,15519,GO-20161177848,THEFT UNDER - BICYCLE,2016-07-05T00:00:00,2016,July,Tuesday,5,187,9,2016-07-06T00:00:00,2016,July,Wednesday,6,188,0,D13,Toronto,107,Oakwood Village (107),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,,MT,21,BLK,150.0,STOLEN,24427,"{'type': 'Point', 'coordinates': (-79.43933801, 43.69311661)}"
-24441,2046,GO-20189005988,THEFT UNDER - BICYCLE,2018-02-24T00:00:00,2018,February,Saturday,24,55,1,2018-02-25T00:00:00,2018,February,Sunday,25,56,16,D41,Toronto,121,Oakridge (121),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,5,BLU,220.0,STOLEN,24428,"{'type': 'Point', 'coordinates': (-79.28114863000002, 43.6928151)}"
-24442,2912,GO-20189023388,THEFT UNDER - BICYCLE,2018-07-22T00:00:00,2018,July,Sunday,22,203,10,2018-07-22T00:00:00,2018,July,Sunday,22,203,10,D41,Toronto,121,Oakridge (121),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,CALDERA,MT,16,BLU,200.0,STOLEN,24429,"{'type': 'Point', 'coordinates': (-79.28577467, 43.69522027)}"
-24443,2913,GO-20189023388,THEFT UNDER - BICYCLE,2018-07-22T00:00:00,2018,July,Sunday,22,203,10,2018-07-22T00:00:00,2018,July,Sunday,22,203,10,D41,Toronto,121,Oakridge (121),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,,MT,18,GLD,500.0,STOLEN,24430,"{'type': 'Point', 'coordinates': (-79.28577467, 43.69522027)}"
-24444,3836,GO-20189037631,THEFT UNDER,2018-11-09T00:00:00,2018,November,Friday,9,313,8,2018-11-09T00:00:00,2018,November,Friday,9,313,22,D41,Toronto,121,Oakridge (121),Ttc Subway Station,Transit,GI,CYPRESS,RG,21,BLU,0.0,STOLEN,24431,"{'type': 'Point', 'coordinates': (-79.28898153, 43.69286837)}"
-24445,25184,GO-2016682372,THEFT UNDER - BICYCLE,2016-04-21T00:00:00,2016,April,Thursday,21,112,15,2016-04-21T00:00:00,2016,April,Thursday,21,112,18,D13,Toronto,108,Briar Hill-Belgravia (108),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,MANITOU R9,MT,24,BLK,400.0,STOLEN,24432,"{'type': 'Point', 'coordinates': (-79.43967401, 43.69882961)}"
-24446,3965,GO-20189043566,THEFT FROM MOTOR VEHICLE UNDER,2018-12-24T00:00:00,2018,December,Monday,24,358,0,2018-12-28T00:00:00,2018,December,Friday,28,362,21,D41,Toronto,121,Oakridge (121),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,BALANCE,BM,1,BLU,85.0,STOLEN,24433,"{'type': 'Point', 'coordinates': (-79.27147134, 43.69506418)}"
-24447,4152,GO-20199011397,THEFT UNDER,2019-04-10T00:00:00,2019,April,Wednesday,10,100,10,2019-04-10T00:00:00,2019,April,Wednesday,10,100,17,D41,Toronto,121,Oakridge (121),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,MOUNTAIN BIKE,MT,50,GRY,138.0,STOLEN,24434,"{'type': 'Point', 'coordinates': (-79.28831806, 43.69123147)}"
-24448,25234,GO-20161405071,THEFT UNDER - BICYCLE,2016-08-08T00:00:00,2016,August,Monday,8,221,23,2016-08-09T00:00:00,2016,August,Tuesday,9,222,20,D13,Toronto,108,Briar Hill-Belgravia (108),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FELT,V85,RC,24,BLK,1920.0,STOLEN,24435,"{'type': 'Point', 'coordinates': (-79.44605824, 43.70120126)}"
-24449,13716,GO-20171699194,THEFT UNDER - BICYCLE,2017-09-14T00:00:00,2017,September,Thursday,14,257,19,2017-09-19T00:00:00,2017,September,Tuesday,19,262,10,D41,Toronto,124,Kennedy Park (124),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,FCR,OT,15,GRY,1000.0,STOLEN,24436,"{'type': 'Point', 'coordinates': (-79.25193699, 43.72970103)}"
-24450,4256,GO-2019838050,THEFT UNDER,2019-05-06T00:00:00,2019,May,Monday,6,126,19,2019-05-08T00:00:00,2019,May,Wednesday,8,128,20,D41,Toronto,121,Oakridge (121),"Apartment (Rooming House, Condo)",Apartment,VIKING,,MT,10,RED,198.0,STOLEN,24437,"{'type': 'Point', 'coordinates': (-79.28675501, 43.6948339)}"
-24451,12411,GO-20169010794,THEFT UNDER - BICYCLE,2016-09-19T00:00:00,2016,September,Monday,19,263,10,2016-09-20T00:00:00,2016,September,Tuesday,20,264,15,D41,Toronto,122,Birchcliffe-Cliffside (122),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RA,RALEIGH MATTERH,MT,5,LBL,100.0,STOLEN,24438,"{'type': 'Point', 'coordinates': (-79.28402002, 43.68081049)}"
-24452,13722,GO-20171889537,THEFT UNDER - BICYCLE,2017-10-18T00:00:00,2017,October,Wednesday,18,291,14,2017-10-18T00:00:00,2017,October,Wednesday,18,291,20,D41,Toronto,124,Kennedy Park (124),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,OT,7,REDWHI,300.0,STOLEN,24439,"{'type': 'Point', 'coordinates': (-79.27064487, 43.72441135)}"
-24453,25253,GO-20161551000,THEFT UNDER - BICYCLE,2016-09-01T00:00:00,2016,September,Thursday,1,245,13,2016-09-01T00:00:00,2016,September,Thursday,1,245,13,D13,Toronto,108,Briar Hill-Belgravia (108),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,BM,10,,,STOLEN,24440,"{'type': 'Point', 'coordinates': (-79.46379617000001, 43.6947076)}"
-24454,4257,GO-2019838050,THEFT UNDER,2019-05-06T00:00:00,2019,May,Monday,6,126,19,2019-05-08T00:00:00,2019,May,Wednesday,8,128,20,D41,Toronto,121,Oakridge (121),"Apartment (Rooming House, Condo)",Apartment,BEAR,,MT,10,BLKBLU,178.0,STOLEN,24441,"{'type': 'Point', 'coordinates': (-79.28675501, 43.6948339)}"
-24455,23571,GO-20189024785,THEFT UNDER - BICYCLE,2018-08-01T00:00:00,2018,August,Wednesday,1,213,16,2018-08-01T00:00:00,2018,August,Wednesday,1,213,17,D42,Toronto,117,LAmoreaux (117),Schools During Supervised Activity,Educational,SC,VOLARE 1300,RC,14,WHI,0.0,STOLEN,24442,"{'type': 'Point', 'coordinates': (-79.31870367, 43.80149412)}"
-24456,15140,GO-20161615629,THEFT UNDER - BICYCLE,2016-09-11T00:00:00,2016,September,Sunday,11,255,15,2016-09-11T00:00:00,2016,September,Sunday,11,255,15,D11,Toronto,114,Lambton Baby Point (114),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,MT,21,,250.0,STOLEN,24443,"{'type': 'Point', 'coordinates': (-79.48694442, 43.65539417)}"
-24457,13753,GO-2018859036,B&E,2018-05-11T00:00:00,2018,May,Friday,11,131,20,2018-05-12T00:00:00,2018,May,Saturday,12,132,22,D41,Toronto,124,Kennedy Park (124),"Apartment (Rooming House, Condo)",Apartment,TREK,7.5 FX HYBRID,MT,10,SIL,2000.0,STOLEN,24444,"{'type': 'Point', 'coordinates': (-79.25988065, 43.71684616)}"
-24458,13899,GO-20151418390,THEFT UNDER,2015-08-13T00:00:00,2015,August,Thursday,13,225,0,2015-08-18T00:00:00,2015,August,Tuesday,18,230,5,D41,Toronto,124,Kennedy Park (124),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,OT,10,,,STOLEN,24445,"{'type': 'Point', 'coordinates': (-79.25988065, 43.71684616)}"
-24459,15143,GO-20161676102,PROPERTY - FOUND,2016-09-20T00:00:00,2016,September,Tuesday,20,264,20,2016-09-20T00:00:00,2016,September,Tuesday,20,264,20,D11,Toronto,114,Lambton Baby Point (114),"Apartment (Rooming House, Condo)",Apartment,PEUGEOT,PARIS,OT,4,RED,,UNKNOWN,24446,"{'type': 'Point', 'coordinates': (-79.50215597, 43.66428681)}"
-24460,25312,GO-20179010751,THEFT UNDER - BICYCLE,2017-07-20T00:00:00,2017,July,Thursday,20,201,20,2017-07-21T00:00:00,2017,July,Friday,21,202,12,D13,Toronto,108,Briar Hill-Belgravia (108),"Apartment (Rooming House, Condo)",Apartment,SC,,RG,5,PLE,250.0,STOLEN,24447,"{'type': 'Point', 'coordinates': (-79.45505937, 43.69462616)}"
-24461,14414,GO-20149006907,THEFT UNDER,2014-09-14T00:00:00,2014,September,Sunday,14,257,17,2014-09-14T00:00:00,2014,September,Sunday,14,257,23,D41,Toronto,124,Kennedy Park (124),Ttc Subway Station,Transit,OT,THE RAPTOR,OT,1,RED,375.0,STOLEN,24448,"{'type': 'Point', 'coordinates': (-79.26451403, 43.73277006)}"
-24462,18547,GO-20159005387,THEFT UNDER,2015-08-06T00:00:00,2015,August,Thursday,6,218,9,2015-08-06T00:00:00,2015,August,Thursday,6,218,9,D11,Toronto,114,Lambton Baby Point (114),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,RG,10,GRY,0.0,STOLEN,24449,"{'type': 'Point', 'coordinates': (-79.48721971, 43.65610124)}"
-24463,13549,GO-20209017049,THEFT UNDER,2020-06-07T00:00:00,2020,June,Sunday,7,159,23,2020-07-07T00:00:00,2020,July,Tuesday,7,189,15,D41,Toronto,122,Birchcliffe-Cliffside (122),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,40,LGR,926.0,STOLEN,24450,"{'type': 'Point', 'coordinates': (-79.27746243, 43.67513962)}"
-24464,865,GO-20179010234,THEFT UNDER - BICYCLE,2017-07-10T00:00:00,2017,July,Monday,10,191,16,2017-07-14T00:00:00,2017,July,Friday,14,195,22,D42,Toronto,118,Tam OShanter-Sullivan (118),"Open Areas (Lakes, Parks, Rivers)",Outside,HF,HUFFY BICKCLE M,RG,18,PLE,108.0,STOLEN,24451,"{'type': 'Point', 'coordinates': (-79.28942101, 43.78576119)}"
-24465,4258,GO-2019838050,THEFT UNDER,2019-05-06T00:00:00,2019,May,Monday,6,126,19,2019-05-08T00:00:00,2019,May,Wednesday,8,128,20,D41,Toronto,121,Oakridge (121),"Apartment (Rooming House, Condo)",Apartment,BEAR,,MT,10,BLKBLU,178.0,STOLEN,24452,"{'type': 'Point', 'coordinates': (-79.28675501, 43.6948339)}"
-24466,13556,GO-20209017549,THEFT UNDER,2020-07-12T00:00:00,2020,July,Sunday,12,194,10,2020-07-14T00:00:00,2020,July,Tuesday,14,196,15,D41,Toronto,122,Birchcliffe-Cliffside (122),"Apartment (Rooming House, Condo)",Apartment,TR,,TO,21,BLK,0.0,STOLEN,24453,"{'type': 'Point', 'coordinates': (-79.27434979, 43.68540034)}"
-24467,16783,GO-20191311149,THEFT UNDER - BICYCLE,2019-07-12T00:00:00,2019,July,Friday,12,193,16,2019-07-13T00:00:00,2019,July,Saturday,13,194,13,D41,Toronto,124,Kennedy Park (124),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ROCKY MOUNTAIN,NORTHWOODS POMO,MT,14,,224.0,STOLEN,24454,"{'type': 'Point', 'coordinates': (-79.25397242, 43.73128965)}"
-24468,6275,GO-20201000583,THEFT UNDER - BICYCLE,2020-05-31T00:00:00,2020,May,Sunday,31,152,3,2020-05-31T00:00:00,2020,May,Sunday,31,152,21,D41,Toronto,121,Oakridge (121),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,OT,7,BLU,200.0,STOLEN,24455,"{'type': 'Point', 'coordinates': (-79.27823005, 43.69903669)}"
-24469,1273,GO-20179013719,THEFT UNDER,2017-08-30T00:00:00,2017,August,Wednesday,30,242,18,2017-08-30T00:00:00,2017,August,Wednesday,30,242,21,D42,Toronto,118,Tam OShanter-Sullivan (118),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,SU,NITRO,MT,21,GRY,170.0,STOLEN,24456,"{'type': 'Point', 'coordinates': (-79.28942101, 43.78576119)}"
-24470,13593,GO-20209027619,THEFT UNDER - BICYCLE,2020-10-24T00:00:00,2020,October,Saturday,24,298,22,2020-10-25T00:00:00,2020,October,Sunday,25,299,13,D41,Toronto,122,Birchcliffe-Cliffside (122),Go Station,Transit,TR,MARLIN 5,MT,8,GRY,700.0,STOLEN,24457,"{'type': 'Point', 'coordinates': (-79.25574196, 43.71776452)}"
-24471,18548,GO-20159005387,THEFT UNDER,2015-08-06T00:00:00,2015,August,Thursday,6,218,9,2015-08-06T00:00:00,2015,August,Thursday,6,218,9,D11,Toronto,114,Lambton Baby Point (114),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,,RG,10,GRY,0.0,STOLEN,24458,"{'type': 'Point', 'coordinates': (-79.48721971, 43.65610124)}"
-24472,25350,GO-20191579710,THEFT UNDER - BICYCLE,2019-08-15T00:00:00,2019,August,Thursday,15,227,14,2019-08-19T00:00:00,2019,August,Monday,19,231,17,D13,Toronto,108,Briar Hill-Belgravia (108),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,BM,1,PLE,200.0,STOLEN,24459,"{'type': 'Point', 'coordinates': (-79.4587154, 43.69730306)}"
-24473,16949,GO-20179010158,THEFT UNDER,2017-07-13T00:00:00,2017,July,Thursday,13,194,8,2017-07-13T00:00:00,2017,July,Thursday,13,194,23,D41,Toronto,124,Kennedy Park (124),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,9,OTH,200.0,STOLEN,24460,"{'type': 'Point', 'coordinates': (-79.25633539, 43.721771360000005)}"
-24474,6714,GO-20209018342,THEFT UNDER,2020-07-19T00:00:00,2020,July,Sunday,19,201,23,2020-07-23T00:00:00,2020,July,Thursday,23,205,13,D41,Toronto,121,Oakridge (121),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,,RG,24,DBL,500.0,STOLEN,24461,"{'type': 'Point', 'coordinates': (-79.28675501, 43.6948339)}"
-24475,1331,GO-20171621993,THEFT UNDER - BICYCLE,2017-08-20T00:00:00,2017,August,Sunday,20,232,19,2017-09-07T00:00:00,2017,September,Thursday,7,250,15,D42,Toronto,118,Tam OShanter-Sullivan (118),Schools During Un-Supervised Activity,Educational,UNKNOWN MAKE,,RG,7,BLK,,STOLEN,24462,"{'type': 'Point', 'coordinates': (-79.30350586, 43.78210748)}"
-24476,2648,GO-20189019672,THEFT UNDER - BICYCLE,2018-06-21T00:00:00,2018,June,Thursday,21,172,13,2018-06-21T00:00:00,2018,June,Thursday,21,172,16,D42,Toronto,118,Tam OShanter-Sullivan (118),Schools During Supervised Activity,Educational,UK,,BM,1,BLK,100.0,STOLEN,24463,"{'type': 'Point', 'coordinates': (-79.2993063, 43.78359438)}"
-24477,4222,GO-20199004628,THEFT UNDER - BICYCLE,2019-02-05T00:00:00,2019,February,Tuesday,5,36,20,2019-02-06T00:00:00,2019,February,Wednesday,6,37,13,D42,Toronto,118,Tam OShanter-Sullivan (118),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,XC27,MT,21,BLK,400.0,STOLEN,24464,"{'type': 'Point', 'coordinates': (-79.28822199, 43.78328634)}"
-24478,5416,GO-20199031658,THEFT UNDER,2019-09-26T00:00:00,2019,September,Thursday,26,269,18,2019-09-26T00:00:00,2019,September,Thursday,26,269,19,D42,Toronto,118,Tam OShanter-Sullivan (118),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RG,21,RED,403.0,STOLEN,24465,"{'type': 'Point', 'coordinates': (-79.32297554, 43.77524437)}"
-24479,6350,GO-20209015055,THEFT UNDER,2020-06-09T00:00:00,2020,June,Tuesday,9,161,22,2020-06-10T00:00:00,2020,June,Wednesday,10,162,10,D42,Toronto,118,Tam OShanter-Sullivan (118),"Apartment (Rooming House, Condo)",Apartment,,,RG,1,TRQ,282.0,STOLEN,24466,"{'type': 'Point', 'coordinates': (-79.28942101, 43.78576119)}"
-24480,6351,GO-20209015055,THEFT UNDER,2020-06-09T00:00:00,2020,June,Tuesday,9,161,22,2020-06-10T00:00:00,2020,June,Wednesday,10,162,10,D42,Toronto,118,Tam OShanter-Sullivan (118),"Apartment (Rooming House, Condo)",Apartment,GT,,MT,1,LBL,858.0,STOLEN,24467,"{'type': 'Point', 'coordinates': (-79.28942101, 43.78576119)}"
-24481,6951,GO-20209020117,THEFT FROM MOTOR VEHICLE UNDER,2020-08-10T00:00:00,2020,August,Monday,10,223,23,2020-08-14T00:00:00,2020,August,Friday,14,227,1,D42,Toronto,118,Tam OShanter-Sullivan (118),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,GHOST,MT,24,YEL,4150.0,STOLEN,24468,"{'type': 'Point', 'coordinates': (-79.29295315, 43.78098256)}"
-24482,7432,GO-20201913937,B&E,2020-10-08T00:00:00,2020,October,Thursday,8,282,19,2020-10-09T00:00:00,2020,October,Friday,9,283,19,D42,Toronto,118,Tam OShanter-Sullivan (118),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,ROCKHOPPER,MT,18,ONG,,STOLEN,24469,"{'type': 'Point', 'coordinates': (-79.28768403, 43.77940987)}"
-24483,7433,GO-20209025947,THEFT UNDER,2020-10-09T00:00:00,2020,October,Friday,9,283,15,2020-10-09T00:00:00,2020,October,Friday,9,283,17,D42,Toronto,118,Tam OShanter-Sullivan (118),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,PARIS 2020 (BLA,EL,6,BLK,1040.0,STOLEN,24470,"{'type': 'Point', 'coordinates': (-79.28822199, 43.78328634)}"
-24484,8217,GO-20142331486,THEFT UNDER,2014-06-20T00:00:00,2014,June,Friday,20,171,12,2014-06-20T00:00:00,2014,June,Friday,20,171,15,D42,Toronto,118,Tam OShanter-Sullivan (118),Schools During Supervised Activity,Educational,CCM,SUPERCYCLE,MT,5,SIL,50.0,STOLEN,24471,"{'type': 'Point', 'coordinates': (-79.30175276, 43.77662814)}"
-24485,8717,GO-20142624088,THEFT UNDER - SHOPLIFTING,2014-08-02T00:00:00,2014,August,Saturday,2,214,19,2014-08-02T00:00:00,2014,August,Saturday,2,214,19,D42,Toronto,118,Tam OShanter-Sullivan (118),Homeless Shelter / Mission,Other,OTHER,,OT,0,,,STOLEN,24472,"{'type': 'Point', 'coordinates': (-79.29342081, 43.7821167)}"
-24486,10290,GO-20151433902,THEFT UNDER,2015-08-16T00:00:00,2015,August,Sunday,16,228,14,2015-08-20T00:00:00,2015,August,Thursday,20,232,15,D42,Toronto,118,Tam OShanter-Sullivan (118),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GARNEAU,XINOS,RC,20,SILGRY,1500.0,STOLEN,24473,"{'type': 'Point', 'coordinates': (-79.29342081, 43.7821167)}"
-24487,13580,GO-20201601229,THEFT OF MOTOR VEHICLE,2020-08-25T00:00:00,2020,August,Tuesday,25,238,11,2020-08-25T00:00:00,2020,August,Tuesday,25,238,12,D42,Toronto,118,Tam OShanter-Sullivan (118),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,EVADER,SC,1,WHI,2000.0,STOLEN,24474,"{'type': 'Point', 'coordinates': (-79.29342081, 43.7821167)}"
-24488,13581,GO-20201600562,THEFT UNDER,2020-08-19T00:00:00,2020,August,Wednesday,19,232,18,2020-08-25T00:00:00,2020,August,Tuesday,25,238,10,D42,Toronto,118,Tam OShanter-Sullivan (118),"Single Home, House (Attach Garage, Cottage, Mobile)",House,U/K,,RG,0,GRN,150.0,STOLEN,24475,"{'type': 'Point', 'coordinates': (-79.28942101, 43.78576119)}"
-24489,13859,GO-20199004628,THEFT UNDER - BICYCLE,2019-02-05T00:00:00,2019,February,Tuesday,5,36,20,2019-02-06T00:00:00,2019,February,Wednesday,6,37,13,D42,Toronto,118,Tam OShanter-Sullivan (118),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,XC27 BIKE 21 S,MT,21,BLK,380.0,STOLEN,24476,"{'type': 'Point', 'coordinates': (-79.28822199, 43.78328634)}"
-24490,13934,GO-20151953228,THEFT UNDER,2015-11-13T00:00:00,2015,November,Friday,13,317,22,2015-11-13T00:00:00,2015,November,Friday,13,317,23,D42,Toronto,118,Tam OShanter-Sullivan (118),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,,MT,18,BLU,,STOLEN,24477,"{'type': 'Point', 'coordinates': (-79.29487915, 43.77594159)}"
-24491,16796,GO-20199031658,THEFT UNDER,2019-09-26T00:00:00,2019,September,Thursday,26,269,18,2019-09-26T00:00:00,2019,September,Thursday,26,269,19,D42,Toronto,118,Tam OShanter-Sullivan (118),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RG,70,RED,439.0,STOLEN,24478,"{'type': 'Point', 'coordinates': (-79.32297554, 43.77524437)}"
-24492,16817,GO-20209014978,THEFT UNDER,2020-06-09T00:00:00,2020,June,Tuesday,9,161,8,2020-06-09T00:00:00,2020,June,Tuesday,9,161,13,D42,Toronto,118,Tam OShanter-Sullivan (118),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,,,OT,18,BLU,200.0,STOLEN,24479,"{'type': 'Point', 'coordinates': (-79.29342081, 43.7821167)}"
-24493,16844,GO-20209024236,THEFT UNDER,2020-09-22T00:00:00,2020,September,Tuesday,22,266,10,2020-09-23T00:00:00,2020,September,Wednesday,23,267,14,D42,Toronto,118,Tam OShanter-Sullivan (118),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,40,,250.0,STOLEN,24480,"{'type': 'Point', 'coordinates': (-79.30035398, 43.7805088)}"
-24494,16977,GO-20179014237,THEFT UNDER - BICYCLE,2017-09-06T00:00:00,2017,September,Wednesday,6,249,14,2017-09-08T00:00:00,2017,September,Friday,8,251,0,D42,Toronto,118,Tam OShanter-Sullivan (118),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,,ROYAL W700C,RG,6,GRY,220.0,STOLEN,24481,"{'type': 'Point', 'coordinates': (-79.29712101, 43.78411259)}"
-24495,17022,GO-20189011843,THEFT UNDER,2018-04-14T00:00:00,2018,April,Saturday,14,104,20,2018-04-16T00:00:00,2018,April,Monday,16,106,21,D42,Toronto,118,Tam OShanter-Sullivan (118),"Apartment (Rooming House, Condo)",Apartment,HF,,MT,16,GRN,170.0,STOLEN,24482,"{'type': 'Point', 'coordinates': (-79.31116492, 43.77797984000001)}"
-24496,17067,GO-20189021628,THEFT UNDER,2018-07-08T00:00:00,2018,July,Sunday,8,189,18,2018-07-09T00:00:00,2018,July,Monday,9,190,19,D42,Toronto,118,Tam OShanter-Sullivan (118),"Apartment (Rooming House, Condo)",Apartment,SC,,RG,7,RED,350.0,STOLEN,24483,"{'type': 'Point', 'coordinates': (-79.30466977, 43.78164141)}"
-24497,20125,GO-20209024384,THEFT UNDER,2020-09-11T00:00:00,2020,September,Friday,11,255,18,2020-09-24T00:00:00,2020,September,Thursday,24,268,16,D42,Toronto,118,Tam OShanter-Sullivan (118),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ORBITA 650B,MT,18,BLK,330.0,STOLEN,24484,"{'type': 'Point', 'coordinates': (-79.29342081, 43.7821167)}"
-24498,20132,GO-20209028114,THEFT UNDER,2020-10-17T00:00:00,2020,October,Saturday,17,291,11,2020-10-29T00:00:00,2020,October,Thursday,29,303,12,D42,Toronto,118,Tam OShanter-Sullivan (118),"Apartment (Rooming House, Condo)",Apartment,OT,VERZA CAFE,TO,7,GRY,900.0,STOLEN,24485,"{'type': 'Point', 'coordinates': (-79.29469368, 43.78070554)}"
-24499,20203,GO-20179010229,THEFT UNDER - BICYCLE,2017-07-14T00:00:00,2017,July,Friday,14,195,16,2017-07-14T00:00:00,2017,July,Friday,14,195,21,D42,Toronto,118,Tam OShanter-Sullivan (118),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,CCM 700C XSPORT,MT,21,WHI,678.0,STOLEN,24486,"{'type': 'Point', 'coordinates': (-79.29342081, 43.7821167)}"
-24500,20475,GO-2016339533,THEFT UNDER,2016-02-26T00:00:00,2016,February,Friday,26,57,12,2016-02-26T00:00:00,2016,February,Friday,26,57,13,D42,Toronto,118,Tam OShanter-Sullivan (118),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,CROSS TRAIL,TO,21,BLKSIL,887.0,STOLEN,24487,"{'type': 'Point', 'coordinates': (-79.29342081, 43.7821167)}"
-24501,23231,GO-20182190597,B&E,2018-10-08T00:00:00,2018,October,Monday,8,281,19,2018-11-28T00:00:00,2018,November,Wednesday,28,332,18,D42,Toronto,118,Tam OShanter-Sullivan (118),"Apartment (Rooming House, Condo)",Apartment,GT,,MT,0,BLUONG,,STOLEN,24488,"{'type': 'Point', 'coordinates': (-79.29469368, 43.78070554)}"
-24502,23244,GO-20199010932,THEFT UNDER,2019-04-04T00:00:00,2019,April,Thursday,4,94,14,2019-04-07T00:00:00,2019,April,Sunday,7,97,12,D42,Toronto,118,Tam OShanter-Sullivan (118),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,MARINER D8 2018,FO,8,SIL,863.0,STOLEN,24489,"{'type': 'Point', 'coordinates': (-79.28942101, 43.78576119)}"
-24503,23292,GO-20191484293,THEFT UNDER - BICYCLE,2019-07-27T00:00:00,2019,July,Saturday,27,208,21,2019-08-06T00:00:00,2019,August,Tuesday,6,218,14,D42,Toronto,118,Tam OShanter-Sullivan (118),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GARY FISHER,WINGRA,MT,24,GRY,450.0,STOLEN,24490,"{'type': 'Point', 'coordinates': (-79.31445218, 43.76922877)}"
-24504,23353,GO-20209021888,THEFT UNDER,2020-08-21T00:00:00,2020,August,Friday,21,234,1,2020-08-31T00:00:00,2020,August,Monday,31,244,16,D42,Toronto,118,Tam OShanter-Sullivan (118),"Apartment (Rooming House, Condo)",Apartment,SC,,MT,6,,250.0,STOLEN,24491,"{'type': 'Point', 'coordinates': (-79.28942101, 43.78576119)}"
-24505,23365,GO-20202058434,THEFT UNDER,2020-10-21T00:00:00,2020,October,Wednesday,21,295,23,2020-10-30T00:00:00,2020,October,Friday,30,304,10,D42,Toronto,118,Tam OShanter-Sullivan (118),"Apartment (Rooming House, Condo)",Apartment,ZZZ,,MT,0,BLU,120.0,STOLEN,24492,"{'type': 'Point', 'coordinates': (-79.29469368, 43.78070554)}"
-24506,10346,GO-20159006347,THEFT UNDER,2015-08-24T00:00:00,2015,August,Monday,24,236,11,2015-08-24T00:00:00,2015,August,Monday,24,236,14,D41,Toronto,119,Wexford/Maryvale (119),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RA,,MT,10,,500.0,STOLEN,24525,"{'type': 'Point', 'coordinates': (-79.30927161, 43.74461816)}"
-24507,23722,GO-20169008136,THEFT UNDER - BICYCLE,2016-08-03T00:00:00,2016,August,Wednesday,3,216,12,2016-08-03T00:00:00,2016,August,Wednesday,3,216,13,D42,Toronto,118,Tam OShanter-Sullivan (118),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,,OT,1,GRN,170.0,STOLEN,24493,"{'type': 'Point', 'coordinates': (-79.28942101, 43.78576119)}"
-24508,504,GO-2017954713,THEFT UNDER - BICYCLE,2017-05-30T00:00:00,2017,May,Tuesday,30,150,11,2017-05-30T00:00:00,2017,May,Tuesday,30,150,11,D41,Toronto,119,Wexford/Maryvale (119),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,MT,26,REDWHI,100.0,STOLEN,24494,"{'type': 'Point', 'coordinates': (-79.30283883, 43.75540873)}"
-24509,571,GO-20171032895,THEFT UNDER - BICYCLE,2017-06-10T00:00:00,2017,June,Saturday,10,161,8,2017-06-10T00:00:00,2017,June,Saturday,10,161,18,D41,Toronto,119,Wexford/Maryvale (119),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CARRERA,,MT,21,SIL,200.0,STOLEN,24495,"{'type': 'Point', 'coordinates': (-79.29466093, 43.76258631)}"
-24510,2601,GO-20189019072,THEFT UNDER - BICYCLE,2018-06-17T00:00:00,2018,June,Sunday,17,168,1,2018-06-17T00:00:00,2018,June,Sunday,17,168,22,D41,Toronto,119,Wexford/Maryvale (119),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,CONTEND 1,RC,9,BLK,1099.0,STOLEN,24496,"{'type': 'Point', 'coordinates': (-79.2949124, 43.74191092)}"
-24511,2999,GO-20189024222,THEFT UNDER - BICYCLE,2018-07-25T00:00:00,2018,July,Wednesday,25,206,12,2018-07-27T00:00:00,2018,July,Friday,27,208,16,D41,Toronto,119,Wexford/Maryvale (119),Convenience Stores,Commercial,UK,,RG,3,BLU,150.0,STOLEN,24497,"{'type': 'Point', 'coordinates': (-79.31520451, 43.75786873)}"
-24512,3109,GO-20189025478,THEFT UNDER,2018-08-07T00:00:00,2018,August,Tuesday,7,219,19,2018-08-07T00:00:00,2018,August,Tuesday,7,219,22,D41,Toronto,119,Wexford/Maryvale (119),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,,OT,21,GRY,0.0,STOLEN,24498,"{'type': 'Point', 'coordinates': (-79.29142356, 43.72699591)}"
-24513,3389,GO-20189029091,THEFT UNDER - BICYCLE,2018-09-04T00:00:00,2018,September,Tuesday,4,247,13,2018-09-04T00:00:00,2018,September,Tuesday,4,247,19,D41,Toronto,119,Wexford/Maryvale (119),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,PE,SOURCE,MT,15,WHI,500.0,STOLEN,24499,"{'type': 'Point', 'coordinates': (-79.29142356, 43.72699591)}"
-24514,4015,GO-20199002943,THEFT UNDER,2019-01-22T00:00:00,2019,January,Tuesday,22,22,1,2019-01-22T00:00:00,2019,January,Tuesday,22,22,8,D41,Toronto,119,Wexford/Maryvale (119),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,,MT,24,BLK,800.0,STOLEN,24500,"{'type': 'Point', 'coordinates': (-79.3068016, 43.76547264)}"
-24515,4616,GO-20191170214,THEFT UNDER - BICYCLE,2019-06-21T00:00:00,2019,June,Friday,21,172,12,2019-06-27T00:00:00,2019,June,Thursday,27,178,11,D41,Toronto,119,Wexford/Maryvale (119),Schools During Un-Supervised Activity,Educational,SUPERCYCLE,,MT,12,MUL,150.0,STOLEN,24501,"{'type': 'Point', 'coordinates': (-79.30720450000001, 43.76178078)}"
-24516,5984,GO-2020589399,B&E,2020-03-23T00:00:00,2020,March,Monday,23,83,3,2020-03-23T00:00:00,2020,March,Monday,23,83,14,D41,Toronto,119,Wexford/Maryvale (119),"Apartment (Rooming House, Condo)",Apartment,RALEIGH,SPEEDSTER,RG,10,REDWHI,900.0,STOLEN,24502,"{'type': 'Point', 'coordinates': (-79.3004441, 43.72794175)}"
-24517,6644,GO-20201328102,B&E,2020-07-13T00:00:00,2020,July,Monday,13,195,0,2020-07-17T00:00:00,2020,July,Friday,17,199,16,D41,Toronto,119,Wexford/Maryvale (119),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,TOMAHAWK,RG,18,GRY,350.0,STOLEN,24503,"{'type': 'Point', 'coordinates': (-79.31326341, 43.75925944)}"
-24518,6775,GO-20209018751,THEFT UNDER - BICYCLE,2020-07-27T00:00:00,2020,July,Monday,27,209,18,2020-07-28T00:00:00,2020,July,Tuesday,28,210,0,D41,Toronto,119,Wexford/Maryvale (119),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,RG,10,,100.0,STOLEN,24504,"{'type': 'Point', 'coordinates': (-79.29142356, 43.72699591)}"
-24519,6776,GO-20209018751,THEFT UNDER - BICYCLE,2020-07-27T00:00:00,2020,July,Monday,27,209,18,2020-07-28T00:00:00,2020,July,Tuesday,28,210,0,D41,Toronto,119,Wexford/Maryvale (119),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,RG,4,RED,70.0,STOLEN,24505,"{'type': 'Point', 'coordinates': (-79.29142356, 43.72699591)}"
-24520,6777,GO-20209018751,THEFT UNDER - BICYCLE,2020-07-27T00:00:00,2020,July,Monday,27,209,18,2020-07-28T00:00:00,2020,July,Tuesday,28,210,0,D41,Toronto,119,Wexford/Maryvale (119),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,RG,10,PNK,150.0,STOLEN,24506,"{'type': 'Point', 'coordinates': (-79.29142356, 43.72699591)}"
-24521,7747,GO-20141367591,B&E,2014-01-18T00:00:00,2014,January,Saturday,18,18,0,2014-01-18T00:00:00,2014,January,Saturday,18,18,14,D41,Toronto,119,Wexford/Maryvale (119),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,,MT,15,BLUWHI,150.0,STOLEN,24507,"{'type': 'Point', 'coordinates': (-79.30360655, 43.73068361)}"
-24522,7997,GO-20149003659,THEFT UNDER,2014-05-28T00:00:00,2014,May,Wednesday,28,148,19,2014-05-28T00:00:00,2014,May,Wednesday,28,148,20,D41,Toronto,119,Wexford/Maryvale (119),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,PHANTOM 29,MT,21,SIL,300.0,STOLEN,24508,"{'type': 'Point', 'coordinates': (-79.30049817, 43.72496742)}"
-24523,8061,GO-20142239753,THEFT UNDER,2014-06-06T00:00:00,2014,June,Friday,6,157,15,2014-06-07T00:00:00,2014,June,Saturday,7,158,11,D41,Toronto,119,Wexford/Maryvale (119),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,ALIEN,,EL,1,BLK,955.0,STOLEN,24509,"{'type': 'Point', 'coordinates': (-79.28351948, 43.74432925)}"
-24524,8204,GO-20142346316,ROBBERY WITH WEAPON,2014-06-22T00:00:00,2014,June,Sunday,22,173,19,2014-06-22T00:00:00,2014,June,Sunday,22,173,20,D41,Toronto,119,Wexford/Maryvale (119),"Open Areas (Lakes, Parks, Rivers)",Outside,SUPERCYCLE,8105-19CT,OT,1,WHI,180.0,STOLEN,24510,"{'type': 'Point', 'coordinates': (-79.30933717000002, 43.7550147)}"
-24525,8225,GO-20142346204,B&E,2014-06-20T00:00:00,2014,June,Friday,20,171,18,2014-06-22T00:00:00,2014,June,Sunday,22,173,20,D41,Toronto,119,Wexford/Maryvale (119),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NEXT,,MT,18,WHIBLK,200.0,STOLEN,24511,"{'type': 'Point', 'coordinates': (-79.31227689, 43.7640548)}"
-24526,8361,GO-20149004787,THEFT UNDER,2014-07-07T00:00:00,2014,July,Monday,7,188,16,2014-07-07T00:00:00,2014,July,Monday,7,188,18,D41,Toronto,119,Wexford/Maryvale (119),Convenience Stores,Commercial,UK,,RC,14,DBL,70.0,STOLEN,24512,"{'type': 'Point', 'coordinates': (-79.31288749, 43.75841403)}"
-24527,8578,GO-20149005580,THEFT UNDER,2014-08-03T00:00:00,2014,August,Sunday,3,215,15,2014-08-03T00:00:00,2014,August,Sunday,3,215,19,D41,Toronto,119,Wexford/Maryvale (119),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,20,,110.0,UNKNOWN,24513,"{'type': 'Point', 'coordinates': (-79.30118429000001, 43.74058082)}"
-24528,8652,GO-20142700059,THEFT UNDER,2014-08-13T00:00:00,2014,August,Wednesday,13,225,20,2014-08-14T00:00:00,2014,August,Thursday,14,226,9,D41,Toronto,119,Wexford/Maryvale (119),"Apartment (Rooming House, Condo)",Apartment,OTHER,PETITE,EL,1,BLK,1900.0,STOLEN,24514,"{'type': 'Point', 'coordinates': (-79.3004441, 43.72794175)}"
-24529,9057,GO-20143104178,THEFT UNDER,2014-10-14T00:00:00,2014,October,Tuesday,14,287,19,2014-10-14T00:00:00,2014,October,Tuesday,14,287,19,D41,Toronto,119,Wexford/Maryvale (119),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN,,MT,1,PLE,100.0,STOLEN,24515,"{'type': 'Point', 'coordinates': (-79.3073651, 43.74264369)}"
-24530,9058,GO-20143104178,THEFT UNDER,2014-10-14T00:00:00,2014,October,Tuesday,14,287,19,2014-10-14T00:00:00,2014,October,Tuesday,14,287,19,D41,Toronto,119,Wexford/Maryvale (119),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,VERDE,BMX,BM,1,LGR,400.0,STOLEN,24516,"{'type': 'Point', 'coordinates': (-79.3073651, 43.74264369)}"
-24531,9191,GO-20143317126,THEFT UNDER,2014-11-16T00:00:00,2014,November,Sunday,16,320,23,2014-11-17T00:00:00,2014,November,Monday,17,321,11,D41,Toronto,119,Wexford/Maryvale (119),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,DAYTONA,DAYMARK,OT,3,BLU,1300.0,STOLEN,24517,"{'type': 'Point', 'coordinates': (-79.29805941, 43.72722646)}"
-24532,9244,GO-20143575272,THEFT UNDER,2014-11-06T00:00:00,2014,November,Thursday,6,310,12,2014-12-30T00:00:00,2014,December,Tuesday,30,364,18,D41,Toronto,119,Wexford/Maryvale (119),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,1700 TA,SC,0,BLK,550.0,STOLEN,24518,"{'type': 'Point', 'coordinates': (-79.2847962, 43.7475181)}"
-24533,9375,GO-2015576595,THEFT UNDER - SHOPLIFTING,2015-04-07T00:00:00,2015,April,Tuesday,7,97,20,2015-04-07T00:00:00,2015,April,Tuesday,7,97,20,D41,Toronto,119,Wexford/Maryvale (119),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWNN,,SC,1,SIL,150.0,RECOVERED,24519,"{'type': 'Point', 'coordinates': (-79.29142356, 43.72699591)}"
-24534,9474,GO-2015688534,THEFT UNDER,2015-04-26T00:00:00,2015,April,Sunday,26,116,3,2015-04-26T00:00:00,2015,April,Sunday,26,116,3,D41,Toronto,119,Wexford/Maryvale (119),Bar / Restaurant,Commercial,OTHER,,MT,24,GRN,1500.0,STOLEN,24520,"{'type': 'Point', 'coordinates': (-79.28478916, 43.72847142)}"
-24535,9740,GO-2015947558,B&E,2015-05-05T00:00:00,2015,May,Tuesday,5,125,23,2015-06-06T00:00:00,2015,June,Saturday,6,157,11,D41,Toronto,119,Wexford/Maryvale (119),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,24,GRN,300.0,STOLEN,24521,"{'type': 'Point', 'coordinates': (-79.31040031, 43.75481844)}"
-24536,9953,GO-20159004233,THEFT UNDER,2015-07-06T00:00:00,2015,July,Monday,6,187,19,2015-07-06T00:00:00,2015,July,Monday,6,187,20,D41,Toronto,119,Wexford/Maryvale (119),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,TR,1,RED,150.0,STOLEN,24522,"{'type': 'Point', 'coordinates': (-79.29918254, 43.73564463)}"
-24537,10066,GO-20151236241,THEFT UNDER,2015-07-17T00:00:00,2015,July,Friday,17,198,15,2015-07-20T00:00:00,2015,July,Monday,20,201,15,D41,Toronto,119,Wexford/Maryvale (119),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,FRANKLIN,BM,1,DBL,,STOLEN,24523,"{'type': 'Point', 'coordinates': (-79.30577016, 43.75833915)}"
-24538,10067,GO-20151236482,THEFT UNDER,2015-07-20T00:00:00,2015,July,Monday,20,201,15,2015-07-20T00:00:00,2015,July,Monday,20,201,16,D41,Toronto,119,Wexford/Maryvale (119),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MONGOOSE,MENS,MT,21,RED,180.0,STOLEN,24524,"{'type': 'Point', 'coordinates': (-79.31288749, 43.75841403)}"
-24539,11171,GO-2016678464,B&E,2016-04-06T00:00:00,2016,April,Wednesday,6,97,17,2016-04-21T00:00:00,2016,April,Thursday,21,112,7,D41,Toronto,119,Wexford/Maryvale (119),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,TCR,RC,18,RED,1200.0,STOLEN,24526,"{'type': 'Point', 'coordinates': (-79.28517224, 43.74848194)}"
-24540,11441,GO-2016974707,THEFT FROM MOTOR VEHICLE UNDER,2016-06-04T00:00:00,2016,June,Saturday,4,156,22,2016-06-05T00:00:00,2016,June,Sunday,5,157,6,D41,Toronto,119,Wexford/Maryvale (119),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,21,BLUWHI,100.0,STOLEN,24527,"{'type': 'Point', 'coordinates': (-79.29866964, 43.73495963)}"
-24541,11442,GO-2016974707,THEFT FROM MOTOR VEHICLE UNDER,2016-06-04T00:00:00,2016,June,Saturday,4,156,22,2016-06-05T00:00:00,2016,June,Sunday,5,157,6,D41,Toronto,119,Wexford/Maryvale (119),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,21,GLDGRN,100.0,STOLEN,24528,"{'type': 'Point', 'coordinates': (-79.29866964, 43.73495963)}"
-24542,11650,GO-20169006444,THEFT UNDER - BICYCLE,2016-06-06T00:00:00,2016,June,Monday,6,158,22,2016-06-27T00:00:00,2016,June,Monday,27,179,18,D41,Toronto,119,Wexford/Maryvale (119),Universities / Colleges,Educational,OT,,RG,10,BLU,100.0,STOLEN,24529,"{'type': 'Point', 'coordinates': (-79.28872232, 43.73071108)}"
-24543,12631,GO-20169012177,THEFT UNDER,2016-10-12T00:00:00,2016,October,Wednesday,12,286,23,2016-10-17T00:00:00,2016,October,Monday,17,291,13,D41,Toronto,119,Wexford/Maryvale (119),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,7,BLK,200.0,STOLEN,24530,"{'type': 'Point', 'coordinates': (-79.29834757, 43.75440176)}"
-24544,13551,GO-20209017099,FRAUD UNDER,2020-06-14T00:00:00,2020,June,Sunday,14,166,4,2020-07-08T00:00:00,2020,July,Wednesday,8,190,11,D41,Toronto,119,Wexford/Maryvale (119),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,VR5,RC,11,BLK,2712.0,STOLEN,24531,"{'type': 'Point', 'coordinates': (-79.30131369, 43.74392051)}"
-24545,13552,GO-20209017099,FRAUD UNDER,2020-06-14T00:00:00,2020,June,Sunday,14,166,4,2020-07-08T00:00:00,2020,July,Wednesday,8,190,11,D41,Toronto,119,Wexford/Maryvale (119),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,2020 FR30 DISC,RC,11,GRY,2260.0,STOLEN,24532,"{'type': 'Point', 'coordinates': (-79.30131369, 43.74392051)}"
-24546,13553,GO-20209017099,FRAUD UNDER,2020-06-14T00:00:00,2020,June,Sunday,14,166,4,2020-07-08T00:00:00,2020,July,Wednesday,8,190,11,D41,Toronto,119,Wexford/Maryvale (119),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,S32,RC,11,BLK,1469.0,STOLEN,24533,"{'type': 'Point', 'coordinates': (-79.30131369, 43.74392051)}"
-24547,13896,GO-20159005451,THEFT UNDER,2015-08-04T00:00:00,2015,August,Tuesday,4,216,10,2015-08-07T00:00:00,2015,August,Friday,7,219,14,D41,Toronto,119,Wexford/Maryvale (119),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,,ECKO 2.5,MT,8,GLD,209.0,STOLEN,24535,"{'type': 'Point', 'coordinates': (-79.28068506, 43.72936375)}"
-24548,13965,GO-2016791423,B&E,2016-05-07T00:00:00,2016,May,Saturday,7,128,10,2016-05-08T00:00:00,2016,May,Sunday,8,129,17,D41,Toronto,119,Wexford/Maryvale (119),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DIAMOND,,MT,18,,,STOLEN,24536,"{'type': 'Point', 'coordinates': (-79.30694144, 43.7414278)}"
-24549,14026,GO-20161863182,THEFT OF EBIKE UNDER $5000,2016-10-18T00:00:00,2016,October,Tuesday,18,292,23,2016-10-19T00:00:00,2016,October,Wednesday,19,293,22,D41,Toronto,119,Wexford/Maryvale (119),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,DEL,EL,0,GRNWHI,1499.0,STOLEN,24537,"{'type': 'Point', 'coordinates': (-79.30302422, 43.76444845)}"
-24550,16744,GO-2019757188,B&E,2019-04-10T00:00:00,2019,April,Wednesday,10,100,14,2019-04-27T00:00:00,2019,April,Saturday,27,117,10,D41,Toronto,119,Wexford/Maryvale (119),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN,,OT,1,RED,50.0,STOLEN,24538,"{'type': 'Point', 'coordinates': (-79.28204968, 43.74070795)}"
-24551,16774,GO-20199020181,THEFT UNDER,2019-06-25T00:00:00,2019,June,Tuesday,25,176,9,2019-06-26T00:00:00,2019,June,Wednesday,26,177,11,D41,Toronto,119,Wexford/Maryvale (119),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,SC,GTX-2 MEN'S HYB,RG,21,BLK,395.0,STOLEN,24539,"{'type': 'Point', 'coordinates': (-79.2875757, 43.72784655)}"
-24552,16778,GO-20199021278,THEFT UNDER,2019-07-06T00:00:00,2019,July,Saturday,6,187,19,2019-07-06T00:00:00,2019,July,Saturday,6,187,20,D41,Toronto,119,Wexford/Maryvale (119),"Apartment (Rooming House, Condo)",Apartment,SU,,MT,18,ONG,300.0,STOLEN,24540,"{'type': 'Point', 'coordinates': (-79.3073651, 43.74264369)}"
-24553,16849,GO-20201978160,THEFT UNDER - BICYCLE,2020-10-14T00:00:00,2020,October,Wednesday,14,288,17,2020-10-18T00:00:00,2020,October,Sunday,18,292,15,D41,Toronto,119,Wexford/Maryvale (119),"Apartment (Rooming House, Condo)",Apartment,PEUGEOT,,OT,9,BLU,300.0,STOLEN,24541,"{'type': 'Point', 'coordinates': (-79.29142356, 43.72699591)}"
-24554,16854,GO-20209028629,THEFT UNDER - BICYCLE,2020-11-04T00:00:00,2020,November,Wednesday,4,309,7,2020-11-04T00:00:00,2020,November,Wednesday,4,309,18,D41,Toronto,119,Wexford/Maryvale (119),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,BM,1,,145.0,STOLEN,24542,"{'type': 'Point', 'coordinates': (-79.2875757, 43.72784655)}"
-24555,16937,GO-20171156432,THEFT OF EBIKE UNDER $5000,2017-06-14T00:00:00,2017,June,Wednesday,14,165,20,2017-06-28T00:00:00,2017,June,Wednesday,28,179,14,D41,Toronto,119,Wexford/Maryvale (119),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,THE BEAST,EL,1,BLK,800.0,STOLEN,24543,"{'type': 'Point', 'coordinates': (-79.3004441, 43.72794175)}"
-24556,16964,GO-20171463551,B&E,2017-08-14T00:00:00,2017,August,Monday,14,226,4,2017-08-14T00:00:00,2017,August,Monday,14,226,4,D41,Toronto,119,Wexford/Maryvale (119),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,MT,13,BLK,150.0,STOLEN,24544,"{'type': 'Point', 'coordinates': (-79.30751948, 43.76716012)}"
-24557,16969,GO-20179012959,THEFT UNDER,2017-07-31T00:00:00,2017,July,Monday,31,212,14,2017-08-21T00:00:00,2017,August,Monday,21,233,16,D41,Toronto,119,Wexford/Maryvale (119),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,10,LBL,0.0,STOLEN,24545,"{'type': 'Point', 'coordinates': (-79.30918929000002, 43.7495237)}"
-24558,17027,GO-2018863058,B&E,2018-05-12T00:00:00,2018,May,Saturday,12,132,18,2018-05-13T00:00:00,2018,May,Sunday,13,133,14,D41,Toronto,119,Wexford/Maryvale (119),"Single Home, House (Attach Garage, Cottage, Mobile)",House,HUFFY,,RG,0,GRN,30.0,RECOVERED,24546,"{'type': 'Point', 'coordinates': (-79.29969685, 43.74754519)}"
-24559,17030,GO-20189015347,THEFT UNDER - SHOPLIFTING,2018-05-05T00:00:00,2018,May,Saturday,5,125,13,2018-05-17T00:00:00,2018,May,Thursday,17,137,20,D41,Toronto,119,Wexford/Maryvale (119),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,VIKING TRAIL,MT,21,,198.0,STOLEN,24547,"{'type': 'Point', 'coordinates': (-79.29142356, 43.72699591)}"
-24560,17161,GO-20151464513,THEFT UNDER,2015-08-02T00:00:00,2015,August,Sunday,2,214,16,2015-08-27T00:00:00,2015,August,Thursday,27,239,10,D41,Toronto,119,Wexford/Maryvale (119),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,1700,EL,1,RED,500.0,STOLEN,24548,"{'type': 'Point', 'coordinates': (-79.30460455, 43.74324208)}"
-24561,17468,GO-20142706793,THEFT UNDER,2014-08-13T00:00:00,2014,August,Wednesday,13,225,21,2014-08-15T00:00:00,2014,August,Friday,15,227,10,D41,Toronto,119,Wexford/Maryvale (119),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,PRESTIGE,EL,6,BLK,1916.0,STOLEN,24549,"{'type': 'Point', 'coordinates': (-79.3004441, 43.72794175)}"
-24562,20285,GO-201849489,THEFT FROM MOTOR VEHICLE UNDER,2018-01-09T00:00:00,2018,January,Tuesday,9,9,0,2018-01-09T00:00:00,2018,January,Tuesday,9,9,7,D41,Toronto,119,Wexford/Maryvale (119),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,BMX,MT,3,BLK,500.0,STOLEN,24550,"{'type': 'Point', 'coordinates': (-79.30249835000001, 43.73338208)}"
-24563,20558,GO-20162155757,THEFT UNDER - BICYCLE,2016-12-03T00:00:00,2016,December,Saturday,3,338,8,2016-12-05T00:00:00,2016,December,Monday,5,340,11,D41,Toronto,119,Wexford/Maryvale (119),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,FCR 2 LARGE,RG,27,BLKRED,,STOLEN,24551,"{'type': 'Point', 'coordinates': (-79.3000845, 43.73786052)}"
-24564,20874,GO-20142350524,THEFT OVER,2014-06-22T00:00:00,2014,June,Sunday,22,173,11,2014-06-23T00:00:00,2014,June,Monday,23,174,13,D41,Toronto,119,Wexford/Maryvale (119),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EGO,G FORCE,EL,4,WHI,1800.0,STOLEN,24552,"{'type': 'Point', 'coordinates': (-79.30144631, 43.75192284)}"
-24565,20881,GO-20149004672,THEFT UNDER,2013-06-30T00:00:00,2013,June,Sunday,30,181,22,2014-07-03T00:00:00,2014,July,Thursday,3,184,14,D41,Toronto,119,Wexford/Maryvale (119),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,MOUNTAIN BIKE,MT,21,WHI,124.0,STOLEN,24553,"{'type': 'Point', 'coordinates': (-79.30768102, 43.74358035)}"
-24566,20883,GO-20142498638,THEFT UNDER,2014-07-14T00:00:00,2014,July,Monday,14,195,21,2014-07-14T00:00:00,2014,July,Monday,14,195,22,D41,Toronto,119,Wexford/Maryvale (119),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RALEIGH,PEAK,MT,21,WHIRED,88.0,STOLEN,24554,"{'type': 'Point', 'coordinates': (-79.29142356, 43.72699591)}"
-24567,20083,GO-2020594592,THEFT UNDER - BICYCLE,2020-03-21T00:00:00,2020,March,Saturday,21,81,23,2020-03-24T00:00:00,2020,March,Tuesday,24,84,13,D41,Toronto,124,Kennedy Park (124),"Single Home, House (Attach Garage, Cottage, Mobile)",House,EMMO,MAX,EL,3,BLK,1200.0,STOLEN,24555,"{'type': 'Point', 'coordinates': (-79.25558843, 43.7227149)}"
-24568,192,GO-2017557023,THEFT OF EBIKE UNDER $5000,2017-03-28T00:00:00,2017,March,Tuesday,28,87,19,2017-03-29T00:00:00,2017,March,Wednesday,29,88,21,D13,Toronto,109,Caledonia-Fairbank (109),"Apartment (Rooming House, Condo)",Apartment,OTHER,COMMUNTER RED,EL,1,BLKRED,1099.0,STOLEN,24556,"{'type': 'Point', 'coordinates': (-79.44638373, 43.68624873)}"
-24569,18572,GO-20161610311,THEFT UNDER - BICYCLE,2016-09-08T00:00:00,2016,September,Thursday,8,252,18,2016-09-10T00:00:00,2016,September,Saturday,10,254,18,D11,Toronto,114,Lambton Baby Point (114),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MILANO HYBRID,,RG,10,GRN,700.0,STOLEN,24557,"{'type': 'Point', 'coordinates': (-79.48842661, 43.65105672000001)}"
-24570,13770,GO-20189019035,THEFT UNDER - BICYCLE,2018-06-16T00:00:00,2018,June,Saturday,16,167,11,2018-06-17T00:00:00,2018,June,Sunday,17,168,11,D41,Toronto,122,Birchcliffe-Cliffside (122),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,MT,20,BLK,900.0,STOLEN,24558,"{'type': 'Point', 'coordinates': (-79.28402002, 43.68081049)}"
-24571,20218,GO-20171442875,B&E,2017-08-04T00:00:00,2017,August,Friday,4,216,18,2017-08-10T00:00:00,2017,August,Thursday,10,222,19,D41,Toronto,124,Kennedy Park (124),"Apartment (Rooming House, Condo)",Apartment,GT,AGGRESSOR,MT,21,ONG,350.0,STOLEN,24559,"{'type': 'Point', 'coordinates': (-79.2570354, 43.72342009)}"
-24572,7337,GO-20201804320,THEFT UNDER - BICYCLE,2020-09-14T00:00:00,2020,September,Monday,14,258,3,2020-09-24T00:00:00,2020,September,Thursday,24,268,12,D41,Toronto,121,Oakridge (121),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,ZZZ,UNKNOWN,MT,12,DBL,600.0,STOLEN,24560,"{'type': 'Point', 'coordinates': (-79.27361046, 43.694364240000006)}"
-24573,18573,GO-20161610311,THEFT UNDER - BICYCLE,2016-09-08T00:00:00,2016,September,Thursday,8,252,18,2016-09-10T00:00:00,2016,September,Saturday,10,254,18,D11,Toronto,114,Lambton Baby Point (114),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKOWN,UNKNOWN,MT,10,BLU,400.0,STOLEN,24561,"{'type': 'Point', 'coordinates': (-79.48842661, 43.65105672000001)}"
-24574,18608,GO-20179010627,THEFT UNDER,2017-07-18T00:00:00,2017,July,Tuesday,18,199,21,2017-07-19T00:00:00,2017,July,Wednesday,19,200,19,D11,Toronto,114,Lambton Baby Point (114),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,MT,27,BLU,950.0,STOLEN,24562,"{'type': 'Point', 'coordinates': (-79.49806194, 43.66124347)}"
-24575,18653,GO-20189027797,THEFT UNDER,2018-08-23T00:00:00,2018,August,Thursday,23,235,20,2018-08-24T00:00:00,2018,August,Friday,24,236,16,D11,Toronto,114,Lambton Baby Point (114),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,10,MRN,175.0,STOLEN,24563,"{'type': 'Point', 'coordinates': (-79.49242627, 43.65875364)}"
-24576,21565,GO-20209017585,THEFT UNDER,2020-07-14T00:00:00,2020,July,Tuesday,14,196,17,2020-07-14T00:00:00,2020,July,Tuesday,14,196,20,D11,Toronto,114,Lambton Baby Point (114),"Apartment (Rooming House, Condo)",Apartment,OT,MILANO??,BM,14,BLK,450.0,STOLEN,24564,"{'type': 'Point', 'coordinates': (-79.50345955, 43.66293869)}"
-24577,21603,GO-20143180763,THEFT UNDER,2014-10-25T00:00:00,2014,October,Saturday,25,298,18,2014-10-26T00:00:00,2014,October,Sunday,26,299,17,D11,Toronto,114,Lambton Baby Point (114),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPORTEK,,MT,10,REDWHI,150.0,STOLEN,24565,"{'type': 'Point', 'coordinates': (-79.49145711, 43.65990259)}"
-24578,21657,GO-20161871669,THEFT UNDER,2016-10-20T00:00:00,2016,October,Thursday,20,294,19,2016-10-21T00:00:00,2016,October,Friday,21,295,9,D11,Toronto,114,Lambton Baby Point (114),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ROCKY MOUNTAIN,RC10,MT,18,SIL,600.0,STOLEN,24566,"{'type': 'Point', 'coordinates': (-79.49623012, 43.66013755)}"
-24579,21664,GO-2017672730,THEFT OF MOTOR VEHICLE,2017-04-16T00:00:00,2017,April,Sunday,16,106,22,2017-04-17T00:00:00,2017,April,Monday,17,107,8,D11,Toronto,114,Lambton Baby Point (114),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,,OT,1,,100.0,STOLEN,24567,"{'type': 'Point', 'coordinates': (-79.48990836, 43.65621435)}"
-24580,21729,GO-2019904841,PROPERTY - FOUND,2019-05-18T00:00:00,2019,May,Saturday,18,138,12,2019-05-18T00:00:00,2019,May,Saturday,18,138,12,D11,Toronto,114,Lambton Baby Point (114),"Open Areas (Lakes, Parks, Rivers)",Outside,GIANT,CYPRESS,BM,21,BLK,,UNKNOWN,24568,"{'type': 'Point', 'coordinates': (-79.49080646, 43.64810265)}"
-24581,21730,GO-2019904841,PROPERTY - FOUND,2019-05-18T00:00:00,2019,May,Saturday,18,138,12,2019-05-18T00:00:00,2019,May,Saturday,18,138,12,D11,Toronto,114,Lambton Baby Point (114),"Open Areas (Lakes, Parks, Rivers)",Outside,UNKNOWN MAKE,MY FIX,OT,1,,,UNKNOWN,24569,"{'type': 'Point', 'coordinates': (-79.49080646, 43.64810265)}"
-24582,21731,GO-2019904841,PROPERTY - FOUND,2019-05-18T00:00:00,2019,May,Saturday,18,138,12,2019-05-18T00:00:00,2019,May,Saturday,18,138,12,D11,Toronto,114,Lambton Baby Point (114),"Open Areas (Lakes, Parks, Rivers)",Outside,DEVINCI,SILVERSTONE,RC,18,BLK,,UNKNOWN,24570,"{'type': 'Point', 'coordinates': (-79.49080646, 43.64810265)}"
-24583,21732,GO-2019904841,PROPERTY - FOUND,2019-05-18T00:00:00,2019,May,Saturday,18,138,12,2019-05-18T00:00:00,2019,May,Saturday,18,138,12,D11,Toronto,114,Lambton Baby Point (114),"Open Areas (Lakes, Parks, Rivers)",Outside,GIANT,ANYROAD 1,TO,20,BLK,,UNKNOWN,24571,"{'type': 'Point', 'coordinates': (-79.49080646, 43.64810265)}"
-24584,21733,GO-2019904841,PROPERTY - FOUND,2019-05-18T00:00:00,2019,May,Saturday,18,138,12,2019-05-18T00:00:00,2019,May,Saturday,18,138,12,D11,Toronto,114,Lambton Baby Point (114),"Open Areas (Lakes, Parks, Rivers)",Outside,SCOTT,SPEEDSTER,RC,20,RED,,UNKNOWN,24572,"{'type': 'Point', 'coordinates': (-79.49080646, 43.64810265)}"
-24585,21734,GO-2019904841,PROPERTY - FOUND,2019-05-18T00:00:00,2019,May,Saturday,18,138,12,2019-05-18T00:00:00,2019,May,Saturday,18,138,12,D11,Toronto,114,Lambton Baby Point (114),"Open Areas (Lakes, Parks, Rivers)",Outside,SPECIALIZED,DOLCE ELITE,RC,18,BLU,,UNKNOWN,24573,"{'type': 'Point', 'coordinates': (-79.49080646, 43.64810265)}"
-24586,21735,GO-2019904841,PROPERTY - FOUND,2019-05-18T00:00:00,2019,May,Saturday,18,138,12,2019-05-18T00:00:00,2019,May,Saturday,18,138,12,D11,Toronto,114,Lambton Baby Point (114),"Open Areas (Lakes, Parks, Rivers)",Outside,SPECIALIZED,ROCKHOPPER,MT,18,BLU,,UNKNOWN,24574,"{'type': 'Point', 'coordinates': (-79.49080646, 43.64810265)}"
-24587,21736,GO-20199016934,THEFT UNDER,2019-05-30T00:00:00,2019,May,Thursday,30,150,10,2019-05-30T00:00:00,2019,May,Thursday,30,150,20,D11,Toronto,114,Lambton Baby Point (114),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ALEGRO 2,RG,16,BLK,600.0,STOLEN,24575,"{'type': 'Point', 'coordinates': (-79.48593598, 43.65294832)}"
-24588,21774,GO-2020842072,THEFT UNDER - BICYCLE,2020-05-03T00:00:00,2020,May,Sunday,3,124,21,2020-05-05T00:00:00,2020,May,Tuesday,5,126,11,D11,Toronto,114,Lambton Baby Point (114),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,?,,MT,0,RED,,STOLEN,24576,"{'type': 'Point', 'coordinates': (-79.50345955, 43.66293869)}"
-24589,21775,GO-2020842072,THEFT UNDER - BICYCLE,2020-05-03T00:00:00,2020,May,Sunday,3,124,21,2020-05-05T00:00:00,2020,May,Tuesday,5,126,11,D11,Toronto,114,Lambton Baby Point (114),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,?,,MT,0,,,STOLEN,24577,"{'type': 'Point', 'coordinates': (-79.50345955, 43.66293869)}"
-24590,24995,GO-20142527558,THEFT UNDER,2014-07-10T00:00:00,2014,July,Thursday,10,191,16,2014-07-19T00:00:00,2014,July,Saturday,19,200,6,D11,Toronto,114,Lambton Baby Point (114),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MARIN OR MARINO,LARKSPUR,OT,18,SIL,500.0,STOLEN,24578,"{'type': 'Point', 'coordinates': (-79.49865919, 43.65367968)}"
-24591,24996,GO-20142527558,THEFT UNDER,2014-07-10T00:00:00,2014,July,Thursday,10,191,16,2014-07-19T00:00:00,2014,July,Saturday,19,200,6,D11,Toronto,114,Lambton Baby Point (114),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DIAMONDBACK,YOUTH,MT,15,DGR,500.0,STOLEN,24579,"{'type': 'Point', 'coordinates': (-79.49865919, 43.65367968)}"
-24592,25011,GO-20159002529,THEFT UNDER,2015-05-02T00:00:00,2015,May,Saturday,2,122,19,2015-05-07T00:00:00,2015,May,Thursday,7,127,19,D11,Toronto,114,Lambton Baby Point (114),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,,MT,15,BLU,100.0,STOLEN,24580,"{'type': 'Point', 'coordinates': (-79.50215597, 43.66428681)}"
-24593,25050,GO-20161179669,THEFT UNDER - BICYCLE,2016-07-05T00:00:00,2016,July,Tuesday,5,187,20,2016-07-06T00:00:00,2016,July,Wednesday,6,188,8,D11,Toronto,114,Lambton Baby Point (114),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,,OT,1,BLKWHI,,STOLEN,24581,"{'type': 'Point', 'coordinates': (-79.50215597, 43.66428681)}"
-24594,1095,GO-20171416787,THEFT OVER - BICYCLE,2017-08-05T00:00:00,2017,August,Saturday,5,217,23,2017-08-06T00:00:00,2017,August,Sunday,6,218,18,D12,Toronto,115,Mount Dennis (115),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,,RC,18,WHI,5000.0,STOLEN,24582,"{'type': 'Point', 'coordinates': (-79.48626277, 43.68629522)}"
-24595,1096,GO-20171416787,THEFT OVER - BICYCLE,2017-08-05T00:00:00,2017,August,Saturday,5,217,23,2017-08-06T00:00:00,2017,August,Sunday,6,218,18,D12,Toronto,115,Mount Dennis (115),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,12,WHI,1000.0,STOLEN,24583,"{'type': 'Point', 'coordinates': (-79.48626277, 43.68629522)}"
-24596,1689,GO-20179017568,THEFT UNDER - BICYCLE,2017-10-18T00:00:00,2017,October,Wednesday,18,291,20,2017-10-19T00:00:00,2017,October,Thursday,19,292,20,D12,Toronto,115,Mount Dennis (115),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,,RG,8,,350.0,STOLEN,24584,"{'type': 'Point', 'coordinates': (-79.49138466, 43.68400776)}"
-24597,1690,GO-20179017568,THEFT UNDER - BICYCLE,2017-10-18T00:00:00,2017,October,Wednesday,18,291,20,2017-10-19T00:00:00,2017,October,Thursday,19,292,20,D12,Toronto,115,Mount Dennis (115),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,,RG,8,,350.0,STOLEN,24585,"{'type': 'Point', 'coordinates': (-79.49138466, 43.68400776)}"
-24598,1724,GO-20171912376,THEFT UNDER - BICYCLE,2017-10-19T00:00:00,2017,October,Thursday,19,292,21,2017-10-22T00:00:00,2017,October,Sunday,22,295,12,D12,Toronto,115,Mount Dennis (115),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNK,UNK,OT,0,BLU,,STOLEN,24586,"{'type': 'Point', 'coordinates': (-79.49169382, 43.68246177)}"
-24599,1990,GO-2018118627,THEFT UNDER - BICYCLE,2018-01-18T00:00:00,2018,January,Thursday,18,18,6,2018-01-19T00:00:00,2018,January,Friday,19,19,21,D12,Toronto,115,Mount Dennis (115),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,GIORDANIE,MT,1,WHI,298.0,STOLEN,24587,"{'type': 'Point', 'coordinates': (-79.49667669, 43.68958229)}"
-24600,4359,GO-20199016507,THEFT UNDER,2019-05-27T00:00:00,2019,May,Monday,27,147,11,2019-05-27T00:00:00,2019,May,Monday,27,147,17,D12,Toronto,115,Mount Dennis (115),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,30,BLU,0.0,STOLEN,24588,"{'type': 'Point', 'coordinates': (-79.50463251, 43.69324544)}"
-24601,8167,GO-20142301504,THEFT UNDER,2014-06-15T00:00:00,2014,June,Sunday,15,166,20,2014-06-16T00:00:00,2014,June,Monday,16,167,11,D12,Toronto,115,Mount Dennis (115),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,MONACO,EL,1,BLK,1200.0,STOLEN,24589,"{'type': 'Point', 'coordinates': (-79.48703162, 43.6835084)}"
-24602,8210,GO-20142330880,THEFT UNDER,2014-06-20T00:00:00,2014,June,Friday,20,171,12,2014-06-20T00:00:00,2014,June,Friday,20,171,14,D12,Toronto,115,Mount Dennis (115),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,SCHWINN,,TO,8,GRY,300.0,STOLEN,24590,"{'type': 'Point', 'coordinates': (-79.49087817, 43.6875723)}"
-24603,8448,GO-20142513448,THEFT UNDER,2014-07-16T00:00:00,2014,July,Wednesday,16,197,23,2014-07-17T00:00:00,2014,July,Thursday,17,198,6,D12,Toronto,115,Mount Dennis (115),"Apartment (Rooming House, Condo)",Apartment,GIO,,EL,1,BLK,800.0,STOLEN,24591,"{'type': 'Point', 'coordinates': (-79.48873437, 43.68547181000001)}"
-24604,9641,GO-20159003028,THEFT UNDER,2015-05-07T00:00:00,2015,May,Thursday,7,127,0,2015-05-22T00:00:00,2015,May,Friday,22,142,13,D12,Toronto,115,Mount Dennis (115),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,6.3 GRANDE,MT,24,RED,1000.0,STOLEN,24592,"{'type': 'Point', 'coordinates': (-79.48948525, 43.68412774)}"
-24605,11541,GO-2016978673,THEFT UNDER - BICYCLE,2016-06-05T00:00:00,2016,June,Sunday,5,157,21,2016-06-05T00:00:00,2016,June,Sunday,5,157,21,D12,Toronto,115,Mount Dennis (115),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN,,RG,0,,,STOLEN,24593,"{'type': 'Point', 'coordinates': (-79.48728336, 43.68585561)}"
-24606,12222,GO-20161533872,THEFT OF EBIKE UNDER $5000,2016-08-29T00:00:00,2016,August,Monday,29,242,16,2016-08-29T00:00:00,2016,August,Monday,29,242,20,D12,Toronto,115,Mount Dennis (115),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OTHER,,MT,10,TRQ,,STOLEN,24594,"{'type': 'Point', 'coordinates': (-79.48728336, 43.68585561)}"
-24607,15482,GO-2016263922,THEFT UNDER,2016-02-12T00:00:00,2016,February,Friday,12,43,9,2016-02-14T00:00:00,2016,February,Sunday,14,45,11,D12,Toronto,115,Mount Dennis (115),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN,UNKNOWN,OT,0,BLU,700.0,STOLEN,24595,"{'type': 'Point', 'coordinates': (-79.4934508, 43.689867480000004)}"
-24608,15635,GO-20189019998,THEFT UNDER - BICYCLE,2018-06-20T00:00:00,2018,June,Wednesday,20,171,1,2018-06-24T00:00:00,2018,June,Sunday,24,175,10,D12,Toronto,115,Mount Dennis (115),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,LEGEND,MT,24,SIL,0.0,STOLEN,24596,"{'type': 'Point', 'coordinates': (-79.49828696, 43.69206067)}"
-24609,18275,GO-20209018741,THEFT UNDER,2020-07-27T00:00:00,2020,July,Monday,27,209,19,2020-07-27T00:00:00,2020,July,Monday,27,209,23,D12,Toronto,115,Mount Dennis (115),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,BM,1,RED,200.0,STOLEN,24597,"{'type': 'Point', 'coordinates': (-79.48728336, 43.68585561)}"
-24610,25362,GO-20192045085,THEFT UNDER - BICYCLE,2019-10-09T00:00:00,2019,October,Wednesday,9,282,18,2019-10-23T00:00:00,2019,October,Wednesday,23,296,10,D12,Toronto,115,Mount Dennis (115),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,0,BLKBLU,100.0,STOLEN,24598,"{'type': 'Point', 'coordinates': (-79.49459052, 43.68178984)}"
-24611,216,GO-2017652451,THEFT UNDER - BICYCLE,2017-04-13T00:00:00,2017,April,Thursday,13,103,10,2017-04-14T00:00:00,2017,April,Friday,14,104,9,D42,Toronto,116,Steeles (116),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,OT,18,LGR,490.0,STOLEN,24599,"{'type': 'Point', 'coordinates': (-79.32249872, 43.8161436)}"
-24612,366,GO-2017832969,THEFT UNDER - BICYCLE,2017-05-10T00:00:00,2017,May,Wednesday,10,130,0,2017-05-12T00:00:00,2017,May,Friday,12,132,0,D42,Toronto,116,Steeles (116),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,RG,0,LBL,,STOLEN,24600,"{'type': 'Point', 'coordinates': (-79.31297136, 43.81737883)}"
-24613,521,GO-20179007406,THEFT UNDER - BICYCLE,2017-06-02T00:00:00,2017,June,Friday,2,153,12,2017-06-02T00:00:00,2017,June,Friday,2,153,17,D42,Toronto,116,Steeles (116),Schools During Un-Supervised Activity,Educational,UK,,BM,15,,200.0,STOLEN,24601,"{'type': 'Point', 'coordinates': (-79.32016476, 43.81131669)}"
-24614,7887,GO-20149003198,THEFT UNDER,2014-05-06T00:00:00,2014,May,Tuesday,6,126,8,2014-05-07T00:00:00,2014,May,Wednesday,7,127,3,D42,Toronto,116,Steeles (116),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,SLICK,MT,21,RED,0.0,STOLEN,24602,"{'type': 'Point', 'coordinates': (-79.32249872, 43.8161436)}"
-24615,9549,GO-2015760722,THEFT UNDER,2015-04-28T00:00:00,2015,April,Tuesday,28,118,15,2015-05-07T00:00:00,2015,May,Thursday,7,127,16,D42,Toronto,116,Steeles (116),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SCHWINN,,MT,1,BLU,325.0,STOLEN,24603,"{'type': 'Point', 'coordinates': (-79.32726457, 43.81506993)}"
-24616,10154,GO-20151323285,THEFT UNDER,2015-08-02T00:00:00,2015,August,Sunday,2,214,8,2015-08-02T00:00:00,2015,August,Sunday,2,214,17,D42,Toronto,116,Steeles (116),"Group Homes (Non-Profit, Halfway House, Social Agency)",Other,OTHER,,MT,12,BLK,25.0,STOLEN,24604,"{'type': 'Point', 'coordinates': (-79.30899306, 43.80973236)}"
-24617,10584,GO-20151712854,THEFT UNDER,2015-07-19T00:00:00,2015,July,Sunday,19,200,20,2015-10-04T00:00:00,2015,October,Sunday,4,277,13,D42,Toronto,116,Steeles (116),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,TARMAC ELITE,OT,20,SILWHI,3000.0,STOLEN,24605,"{'type': 'Point', 'coordinates': (-79.33011572, 43.8096397)}"
-24618,14055,GO-20179005163,THEFT UNDER,2017-04-24T00:00:00,2017,April,Monday,24,114,10,2017-04-24T00:00:00,2017,April,Monday,24,114,10,D42,Toronto,116,Steeles (116),"Apartment (Rooming House, Condo)",Apartment,CC,,MT,21,WHI,400.0,STOLEN,24606,"{'type': 'Point', 'coordinates': (-79.32726457, 43.81506993)}"
-24619,16922,GO-20179007879,THEFT UNDER - BICYCLE,2017-06-10T00:00:00,2017,June,Saturday,10,161,9,2017-06-11T00:00:00,2017,June,Sunday,11,162,13,D42,Toronto,116,Steeles (116),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,RG,6,PLE,0.0,STOLEN,24607,"{'type': 'Point', 'coordinates': (-79.32249872, 43.8161436)}"
-24620,20244,GO-20179015807,THEFT UNDER - BICYCLE,2017-09-24T00:00:00,2017,September,Sunday,24,267,11,2017-09-26T00:00:00,2017,September,Tuesday,26,269,11,D42,Toronto,116,Steeles (116),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,,RG,20,BLK,300.0,STOLEN,24608,"{'type': 'Point', 'coordinates': (-79.32674579, 43.81312551)}"
-24621,20466,GO-20159011212,THEFT UNDER,2015-12-22T00:00:00,2015,December,Tuesday,22,356,22,2015-12-23T00:00:00,2015,December,Wednesday,23,357,15,D42,Toronto,116,Steeles (116),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MA,,OT,1,,0.0,STOLEN,24609,"{'type': 'Point', 'coordinates': (-79.30702309, 43.82368982)}"
-24622,20551,GO-20161995795,THEFT UNDER - BICYCLE,2016-11-09T00:00:00,2016,November,Wednesday,9,314,18,2016-11-09T00:00:00,2016,November,Wednesday,9,314,19,D42,Toronto,116,Steeles (116),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,WICKED,MT,21,,350.0,STOLEN,24610,"{'type': 'Point', 'coordinates': (-79.32451297, 43.81620015)}"
-24623,709,GO-20171135329,B&E,2017-06-24T00:00:00,2017,June,Saturday,24,175,12,2017-06-25T00:00:00,2017,June,Sunday,25,176,20,D42,Toronto,117,LAmoreaux (117),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NAKAMURA,DROPP,MT,6,WHI,50.0,UNKNOWN,24611,"{'type': 'Point', 'coordinates': (-79.33308972, 43.79817569)}"
-24624,846,GO-20171241303,THEFT UNDER - BICYCLE,2017-07-03T00:00:00,2017,July,Monday,3,184,12,2017-07-11T00:00:00,2017,July,Tuesday,11,192,11,D42,Toronto,117,LAmoreaux (117),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,RG,1,BLURED,,STOLEN,24612,"{'type': 'Point', 'coordinates': (-79.32036647, 43.775888390000006)}"
-24625,847,GO-20171241303,THEFT UNDER - BICYCLE,2017-07-03T00:00:00,2017,July,Monday,3,184,12,2017-07-11T00:00:00,2017,July,Tuesday,11,192,11,D42,Toronto,117,LAmoreaux (117),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,RG,1,BLU,,STOLEN,24613,"{'type': 'Point', 'coordinates': (-79.32036647, 43.775888390000006)}"
-24626,1231,GO-20179013165,THEFT UNDER - BICYCLE,2017-08-22T00:00:00,2017,August,Tuesday,22,234,18,2017-08-23T00:00:00,2017,August,Wednesday,23,235,18,D42,Toronto,117,LAmoreaux (117),"Apartment (Rooming House, Condo)",Apartment,CC,APEX,MT,24,WHI,640.0,STOLEN,24614,"{'type': 'Point', 'coordinates': (-79.32688908, 43.79578453)}"
-24627,1274,GO-20179013732,THEFT UNDER,2017-08-30T00:00:00,2017,August,Wednesday,30,242,18,2017-08-30T00:00:00,2017,August,Wednesday,30,242,22,D42,Toronto,117,LAmoreaux (117),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CC,EMPIRE,MT,21,BLK,200.0,STOLEN,24615,"{'type': 'Point', 'coordinates': (-79.32005577, 43.799489)}"
-24628,1284,GO-20179013822,THEFT UNDER - BICYCLE,2017-09-01T00:00:00,2017,September,Friday,1,244,22,2017-09-02T00:00:00,2017,September,Saturday,2,245,9,D42,Toronto,117,LAmoreaux (117),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,OT,6,PNK,200.0,STOLEN,24616,"{'type': 'Point', 'coordinates': (-79.32862459000002, 43.79640001)}"
-24629,2517,GO-20181034413,THEFT UNDER - BICYCLE,2018-06-07T00:00:00,2018,June,Thursday,7,158,18,2018-06-07T00:00:00,2018,June,Thursday,7,158,20,D42,Toronto,117,LAmoreaux (117),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,MONGOOSE,,OT,4,BLKGRN,160.0,STOLEN,24617,"{'type': 'Point', 'coordinates': (-79.32005577, 43.799489)}"
-24630,2888,GO-20189022875,THEFT UNDER,2018-07-17T00:00:00,2018,July,Tuesday,17,198,17,2018-07-18T00:00:00,2018,July,Wednesday,18,199,10,D42,Toronto,117,LAmoreaux (117),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,,MT,12,BLK,1500.0,STOLEN,24618,"{'type': 'Point', 'coordinates': (-79.29968078, 43.79190312000001)}"
-24631,3083,GO-20189024785,THEFT UNDER - BICYCLE,2018-08-01T00:00:00,2018,August,Wednesday,1,213,16,2018-08-01T00:00:00,2018,August,Wednesday,1,213,17,D42,Toronto,117,LAmoreaux (117),Schools During Supervised Activity,Educational,SC,VOLARE 1300 700,RC,14,WHI,0.0,STOLEN,24619,"{'type': 'Point', 'coordinates': (-79.31870367, 43.80149412)}"
-24632,3527,GO-20189031353,THEFT UNDER - BICYCLE,2018-09-20T00:00:00,2018,September,Thursday,20,263,18,2018-09-21T00:00:00,2018,September,Friday,21,264,8,D42,Toronto,117,LAmoreaux (117),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,TRANSEO SPORT 7,RG,40,BLK,600.0,STOLEN,24620,"{'type': 'Point', 'coordinates': (-79.32005577, 43.799489)}"
-24633,3887,GO-20189039263,THEFT UNDER - BICYCLE,2018-11-12T00:00:00,2018,November,Monday,12,316,9,2018-11-21T00:00:00,2018,November,Wednesday,21,325,21,D42,Toronto,117,LAmoreaux (117),"Apartment (Rooming House, Condo)",Apartment,CC,DS-650,MT,21,SIL,600.0,STOLEN,24621,"{'type': 'Point', 'coordinates': (-79.31929202, 43.79699447)}"
-24634,4695,GO-20191272179,THEFT UNDER,2019-07-07T00:00:00,2019,July,Sunday,7,188,14,2019-07-08T00:00:00,2019,July,Monday,8,189,11,D42,Toronto,117,LAmoreaux (117),"Apartment (Rooming House, Condo)",Apartment,,,OT,1,BLKGLD,200.0,STOLEN,24622,"{'type': 'Point', 'coordinates': (-79.33308972, 43.79817569)}"
-24635,4946,GO-20191451743,B&E,2019-08-01T00:00:00,2019,August,Thursday,1,213,17,2019-08-01T00:00:00,2019,August,Thursday,1,213,20,D42,Toronto,117,LAmoreaux (117),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,MT,6,BLU,400.0,STOLEN,24623,"{'type': 'Point', 'coordinates': (-79.32001036, 43.78900256)}"
-24636,5429,GO-20199031910,THEFT UNDER,2019-09-28T00:00:00,2019,September,Saturday,28,271,8,2019-09-28T00:00:00,2019,September,Saturday,28,271,23,D42,Toronto,117,LAmoreaux (117),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,LASER,MT,18,BLU,0.0,STOLEN,24624,"{'type': 'Point', 'coordinates': (-79.33137023, 43.79310642)}"
-24637,5852,GO-20209003126,THEFT UNDER,2020-01-26T00:00:00,2020,January,Sunday,26,26,17,2020-01-26T00:00:00,2020,January,Sunday,26,26,21,D42,Toronto,117,LAmoreaux (117),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CC,HARDTAIL MOUNTA,MT,21,BLK,650.0,STOLEN,24625,"{'type': 'Point', 'coordinates': (-79.32005577, 43.799489)}"
-24638,7266,GO-20209023524,THEFT UNDER,2020-08-27T00:00:00,2020,August,Thursday,27,240,21,2020-09-17T00:00:00,2020,September,Thursday,17,261,12,D42,Toronto,117,LAmoreaux (117),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,,RG,1,PNK,230.0,STOLEN,24626,"{'type': 'Point', 'coordinates': (-79.32412896, 43.77774265)}"
-24639,7267,GO-20209023524,THEFT UNDER,2020-08-27T00:00:00,2020,August,Thursday,27,240,21,2020-09-17T00:00:00,2020,September,Thursday,17,261,12,D42,Toronto,117,LAmoreaux (117),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,HF,,RG,1,,250.0,STOLEN,24627,"{'type': 'Point', 'coordinates': (-79.32412896, 43.77774265)}"
-24640,7268,GO-20209023524,THEFT UNDER,2020-08-27T00:00:00,2020,August,Thursday,27,240,21,2020-09-17T00:00:00,2020,September,Thursday,17,261,12,D42,Toronto,117,LAmoreaux (117),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,,MT,1,,600.0,STOLEN,24628,"{'type': 'Point', 'coordinates': (-79.32412896, 43.77774265)}"
-24641,7269,GO-20209023524,THEFT UNDER,2020-08-27T00:00:00,2020,August,Thursday,27,240,21,2020-09-17T00:00:00,2020,September,Thursday,17,261,12,D42,Toronto,117,LAmoreaux (117),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,,RG,1,DBL,170.0,STOLEN,24629,"{'type': 'Point', 'coordinates': (-79.32412896, 43.77774265)}"
-24642,8179,GO-20142310935,THEFT UNDER,2014-06-11T00:00:00,2014,June,Wednesday,11,162,18,2014-06-17T00:00:00,2014,June,Tuesday,17,168,17,D42,Toronto,117,LAmoreaux (117),"Apartment (Rooming House, Condo)",Apartment,CCM,,OT,0,SIL,300.0,STOLEN,24630,"{'type': 'Point', 'coordinates': (-79.32577299, 43.79259396)}"
-24643,9557,GO-2015721289,THEFT UNDER,2015-05-01T00:00:00,2015,May,Friday,1,121,12,2015-05-01T00:00:00,2015,May,Friday,1,121,12,D42,Toronto,117,LAmoreaux (117),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN,,TA,0,BLU,,STOLEN,24631,"{'type': 'Point', 'coordinates': (-79.31214642, 43.80646117)}"
-24644,11168,GO-2015641040,PROPERTY - FOUND,2015-04-18T00:00:00,2015,April,Saturday,18,108,11,2015-04-18T00:00:00,2015,April,Saturday,18,108,11,D42,Toronto,117,LAmoreaux (117),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SP,TEMPEST,MT,99,BLUYEL,,UNKNOWN,24632,"{'type': 'Point', 'coordinates': (-79.29367125, 43.79577194)}"
-24645,11432,GO-20169005272,THEFT UNDER,2016-06-02T00:00:00,2016,June,Thursday,2,154,9,2016-06-02T00:00:00,2016,June,Thursday,2,154,18,D42,Toronto,117,LAmoreaux (117),Schools During Supervised Activity,Educational,CC,"26"""" FULL SUSPEN",MT,21,BLK,350.0,STOLEN,24633,"{'type': 'Point', 'coordinates': (-79.32005577, 43.799489)}"
-24646,11445,GO-20169005272,THEFT UNDER,2016-06-02T00:00:00,2016,June,Thursday,2,154,9,2016-06-02T00:00:00,2016,June,Thursday,2,154,18,D42,Toronto,117,LAmoreaux (117),Schools During Supervised Activity,Educational,CC,"26"""" MOUNTAIN",MT,21,BLK,350.0,STOLEN,24634,"{'type': 'Point', 'coordinates': (-79.32005577, 43.799489)}"
-24647,11489,GO-20169005573,THEFT UNDER,2016-06-09T00:00:00,2016,June,Thursday,9,161,22,2016-06-10T00:00:00,2016,June,Friday,10,162,16,D42,Toronto,117,LAmoreaux (117),"Apartment (Rooming House, Condo)",Apartment,CC,KROSSPORT MEN'S,MT,21,WHI,430.0,STOLEN,24635,"{'type': 'Point', 'coordinates': (-79.31240828, 43.79513643)}"
-24648,11992,GO-20169008200,THEFT UNDER - BICYCLE,2016-07-27T00:00:00,2016,July,Wednesday,27,209,16,2016-08-04T00:00:00,2016,August,Thursday,4,217,11,D42,Toronto,117,LAmoreaux (117),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CC,,MT,21,DBL,75.0,STOLEN,24636,"{'type': 'Point', 'coordinates': (-79.32577299, 43.79259396)}"
-24649,11993,GO-20169008200,THEFT UNDER - BICYCLE,2016-07-27T00:00:00,2016,July,Wednesday,27,209,16,2016-08-04T00:00:00,2016,August,Thursday,4,217,11,D42,Toronto,117,LAmoreaux (117),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CC,,MT,21,RED,100.0,STOLEN,24637,"{'type': 'Point', 'coordinates': (-79.32577299, 43.79259396)}"
-24650,13508,GO-20199021757,THEFT UNDER,2019-07-10T00:00:00,2019,July,Wednesday,10,191,16,2019-07-10T00:00:00,2019,July,Wednesday,10,191,17,D42,Toronto,117,LAmoreaux (117),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,,MT,6,BLK,300.0,STOLEN,24638,"{'type': 'Point', 'coordinates': (-79.31572385, 43.79677275)}"
-24651,13524,GO-20191812711,B&E,2019-09-17T00:00:00,2019,September,Tuesday,17,260,12,2019-09-20T00:00:00,2019,September,Friday,20,263,18,D42,Toronto,117,LAmoreaux (117),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,TO,1,RED,150.0,STOLEN,24639,"{'type': 'Point', 'coordinates': (-79.32983704, 43.79614434)}"
-24652,13525,GO-20191812711,B&E,2019-09-17T00:00:00,2019,September,Tuesday,17,260,12,2019-09-20T00:00:00,2019,September,Friday,20,263,18,D42,Toronto,117,LAmoreaux (117),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,MT,1,PLE,125.0,STOLEN,24640,"{'type': 'Point', 'coordinates': (-79.32983704, 43.79614434)}"
-24653,13526,GO-20191812711,B&E,2019-09-17T00:00:00,2019,September,Tuesday,17,260,12,2019-09-20T00:00:00,2019,September,Friday,20,263,18,D42,Toronto,117,LAmoreaux (117),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,SC,1,BLU,150.0,STOLEN,24641,"{'type': 'Point', 'coordinates': (-79.32983704, 43.79614434)}"
-24654,13589,GO-20209024677,THEFT UNDER,2020-09-18T00:00:00,2020,September,Friday,18,262,11,2020-09-27T00:00:00,2020,September,Sunday,27,271,11,D42,Toronto,117,LAmoreaux (117),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,RG,20,BLK,250.0,STOLEN,24642,"{'type': 'Point', 'coordinates': (-79.30593908, 43.79899784)}"
-24655,13777,GO-20189020080,THEFT UNDER - BICYCLE,2018-06-22T00:00:00,2018,June,Friday,22,173,12,2018-06-24T00:00:00,2018,June,Sunday,24,175,21,D42,Toronto,117,LAmoreaux (117),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,GT AGGRESSOR CO,MT,21,GRY,475.0,STOLEN,24643,"{'type': 'Point', 'coordinates': (-79.32961357000002, 43.79500447)}"
-24656,13778,GO-20189020716,THEFT UNDER - BICYCLE,2018-06-25T00:00:00,2018,June,Monday,25,176,10,2018-06-29T00:00:00,2018,June,Friday,29,180,16,D42,Toronto,117,LAmoreaux (117),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,1,RED,150.0,STOLEN,24644,"{'type': 'Point', 'coordinates': (-79.32361794, 43.78035418)}"
-24657,13825,GO-20189031353,THEFT UNDER - BICYCLE,2018-09-20T00:00:00,2018,September,Thursday,20,263,18,2018-09-21T00:00:00,2018,September,Friday,21,264,8,D42,Toronto,117,LAmoreaux (117),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,TRANSEO 700C,RG,21,BLK,550.0,STOLEN,24645,"{'type': 'Point', 'coordinates': (-79.32005577, 43.799489)}"
-24658,13921,GO-20151708559,THEFT UNDER,2015-09-30T00:00:00,2015,September,Wednesday,30,273,18,2015-10-03T00:00:00,2015,October,Saturday,3,276,17,D42,Toronto,117,LAmoreaux (117),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NEXT,,MT,0,REDWHI,200.0,STOLEN,24646,"{'type': 'Point', 'coordinates': (-79.32033019, 43.77702571)}"
-24659,13992,GO-20169008138,THEFT UNDER - BICYCLE,2016-07-29T00:00:00,2016,July,Friday,29,211,20,2016-08-03T00:00:00,2016,August,Wednesday,3,216,14,D42,Toronto,117,LAmoreaux (117),"Apartment (Rooming House, Condo)",Apartment,MO,MOUNTAIN BIKE,MT,7,RED,161.0,STOLEN,24647,"{'type': 'Point', 'coordinates': (-79.31377567, 43.79936192)}"
-24660,16936,GO-20171166225,B&E,2017-06-29T00:00:00,2017,June,Thursday,29,180,19,2017-06-29T00:00:00,2017,June,Thursday,29,180,21,D42,Toronto,117,LAmoreaux (117),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,860,MT,10,WHIYEL,,STOLEN,24648,"{'type': 'Point', 'coordinates': (-79.31035186, 43.79103921)}"
-24661,17289,GO-20169013451,THEFT UNDER,2016-11-15T00:00:00,2016,November,Tuesday,15,320,9,2016-11-15T00:00:00,2016,November,Tuesday,15,320,14,D42,Toronto,117,LAmoreaux (117),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,HF,,TO,1,SIL,300.0,STOLEN,24649,"{'type': 'Point', 'coordinates': (-79.32005577, 43.799489)}"
-24662,17313,GO-20179005153,THEFT UNDER - BICYCLE,2017-04-23T00:00:00,2017,April,Sunday,23,113,20,2017-04-23T00:00:00,2017,April,Sunday,23,113,23,D42,Toronto,117,LAmoreaux (117),"Single Home, House (Attach Garage, Cottage, Mobile)",House,HF,,RG,1,BLU,155.0,STOLEN,24650,"{'type': 'Point', 'coordinates': (-79.29816569, 43.803881010000005)}"
-24663,20213,GO-20179011244,THEFT UNDER - BICYCLE,2017-07-27T00:00:00,2017,July,Thursday,27,208,19,2017-07-28T00:00:00,2017,July,Friday,28,209,15,D42,Toronto,117,LAmoreaux (117),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,5,BLU,150.0,STOLEN,24651,"{'type': 'Point', 'coordinates': (-79.31929202, 43.79699447)}"
-24664,7957,GO-20142151692,THEFT UNDER,2014-05-25T00:00:00,2014,May,Sunday,25,145,11,2014-05-25T00:00:00,2014,May,Sunday,25,145,20,D41,Toronto,121,Oakridge (121),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DYNACRAFT,8204-88CT,MT,7,RED,130.0,STOLEN,24652,"{'type': 'Point', 'coordinates': (-79.28831806, 43.69123147)}"
-24665,8010,GO-20142129798,THEFT UNDER,2014-05-22T00:00:00,2014,May,Thursday,22,142,14,2014-05-22T00:00:00,2014,May,Thursday,22,142,14,D41,Toronto,121,Oakridge (121),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SCOTT,FULL SIZED,RG,24,BLK,1600.0,STOLEN,24653,"{'type': 'Point', 'coordinates': (-79.27276721, 43.69816229)}"
-24666,8011,GO-20142129798,THEFT UNDER,2014-05-22T00:00:00,2014,May,Thursday,22,142,14,2014-05-22T00:00:00,2014,May,Thursday,22,142,14,D41,Toronto,121,Oakridge (121),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,UNKNOWN,RG,5,PLE,200.0,STOLEN,24654,"{'type': 'Point', 'coordinates': (-79.27276721, 43.69816229)}"
-24667,20242,GO-20171709120,THEFT UNDER - BICYCLE,2017-09-20T00:00:00,2017,September,Wednesday,20,263,16,2017-09-24T00:00:00,2017,September,Sunday,24,267,14,D41,Toronto,124,Kennedy Park (124),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,OT,1,BLK,2100.0,STOLEN,24655,"{'type': 'Point', 'coordinates': (-79.2658779, 43.72740811)}"
-24668,8371,GO-20142507257,THEFT UNDER,2014-07-15T00:00:00,2014,July,Tuesday,15,196,22,2014-07-16T00:00:00,2014,July,Wednesday,16,197,8,D41,Toronto,121,Oakridge (121),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN,,RG,21,BLUBLK,100.0,STOLEN,24656,"{'type': 'Point', 'coordinates': (-79.27789748, 43.69823468)}"
-24669,8467,GO-20142547092,B&E,2014-07-20T00:00:00,2014,July,Sunday,20,201,19,2014-07-22T00:00:00,2014,July,Tuesday,22,203,9,D41,Toronto,121,Oakridge (121),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CCM,,MT,12,BLKGRN,120.0,STOLEN,24657,"{'type': 'Point', 'coordinates': (-79.28014711, 43.69612678000001)}"
-24670,20303,GO-2018954293,B&E,2018-05-24T00:00:00,2018,May,Thursday,24,144,12,2018-05-27T00:00:00,2018,May,Sunday,27,147,13,D41,Toronto,124,Kennedy Park (124),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,UNK,MT,10,GRN,,STOLEN,24658,"{'type': 'Point', 'coordinates': (-79.25988065, 43.71684616)}"
-24671,8535,GO-20142582735,THEFT UNDER,2014-07-26T00:00:00,2014,July,Saturday,26,207,14,2014-07-27T00:00:00,2014,July,Sunday,27,208,14,D41,Toronto,121,Oakridge (121),Ttc Subway Station,Transit,OTHER,,OT,0,BLU,,STOLEN,24659,"{'type': 'Point', 'coordinates': (-79.28898153, 43.69286837)}"
-24672,246,GO-20179004952,THEFT UNDER - BICYCLE,2017-04-19T00:00:00,2017,April,Wednesday,19,109,12,2017-04-19T00:00:00,2017,April,Wednesday,19,109,19,D13,Toronto,109,Caledonia-Fairbank (109),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,8153-62CT,MT,18,GRY,0.0,STOLEN,24660,"{'type': 'Point', 'coordinates': (-79.45399035, 43.68676224)}"
-24673,13881,GO-20151086931,THEFT UNDER,2015-06-23T00:00:00,2015,June,Tuesday,23,174,21,2015-06-28T00:00:00,2015,June,Sunday,28,179,9,D41,Toronto,122,Birchcliffe-Cliffside (122),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,MT,27,GRN,800.0,STOLEN,24661,"{'type': 'Point', 'coordinates': (-79.28402002, 43.68081049)}"
-24674,20485,GO-2016706440,THEFT UNDER,2016-04-25T00:00:00,2016,April,Monday,25,116,16,2016-04-25T00:00:00,2016,April,Monday,25,116,16,D41,Toronto,124,Kennedy Park (124),"Apartment (Rooming House, Condo)",Apartment,OTHER,,SC,1,BLU,,STOLEN,24662,"{'type': 'Point', 'coordinates': (-79.25243361, 43.72779384)}"
-24675,13886,GO-20151213116,THEFT UNDER,2015-07-06T00:00:00,2015,July,Monday,6,187,18,2015-07-17T00:00:00,2015,July,Friday,17,198,9,D41,Toronto,122,Birchcliffe-Cliffside (122),"Apartment (Rooming House, Condo)",Apartment,OTHER,MOBO,RE,1,ONG,,STOLEN,24663,"{'type': 'Point', 'coordinates': (-79.26471189, 43.69147863)}"
-24676,794,GO-20171219252,THEFT UNDER - BICYCLE,2017-07-07T00:00:00,2017,July,Friday,7,188,22,2017-07-07T00:00:00,2017,July,Friday,7,188,22,D13,Toronto,109,Caledonia-Fairbank (109),Bar / Restaurant,Commercial,OTHER,,MT,0,GRN,200.0,STOLEN,24664,"{'type': 'Point', 'coordinates': (-79.45153299, 43.69541866)}"
-24677,20510,GO-20161234262,THEFT UNDER - BICYCLE,2016-07-13T00:00:00,2016,July,Wednesday,13,195,18,2016-07-14T00:00:00,2016,July,Thursday,14,196,11,D41,Toronto,124,Kennedy Park (124),Go Station,Transit,TREK,ALUMINUM,MT,24,BLU,700.0,STOLEN,24665,"{'type': 'Point', 'coordinates': (-79.26451403, 43.73277006)}"
-24678,8760,GO-20149006348,THEFT UNDER,2014-08-27T00:00:00,2014,August,Wednesday,27,239,8,2014-08-27T00:00:00,2014,August,Wednesday,27,239,19,D41,Toronto,121,Oakridge (121),Ttc Subway Station,Transit,RM,,MT,21,BLK,0.0,STOLEN,24666,"{'type': 'Point', 'coordinates': (-79.28898153, 43.69286837)}"
-24679,13898,GO-20151370922,THEFT UNDER,2015-07-26T00:00:00,2015,July,Sunday,26,207,23,2015-08-10T00:00:00,2015,August,Monday,10,222,15,D41,Toronto,122,Birchcliffe-Cliffside (122),"Apartment (Rooming House, Condo)",Apartment,GIANT,CYPRUS SX,RG,18,BLUSIL,829.0,STOLEN,24667,"{'type': 'Point', 'coordinates': (-79.2631056, 43.692433730000005)}"
-24680,2872,GO-20181313611,THEFT UNDER - BICYCLE,2018-07-18T00:00:00,2018,July,Wednesday,18,199,0,2018-07-18T00:00:00,2018,July,Wednesday,18,199,19,D13,Toronto,109,Caledonia-Fairbank (109),"Apartment (Rooming House, Condo)",Apartment,OTHER,,MT,5,RED,0.0,STOLEN,24668,"{'type': 'Point', 'coordinates': (-79.45153299, 43.69541866)}"
-24681,23364,GO-20202053138,THEFT UNDER - BICYCLE,2020-10-20T00:00:00,2020,October,Tuesday,20,294,8,2020-10-29T00:00:00,2020,October,Thursday,29,303,14,D41,Toronto,124,Kennedy Park (124),Ttc Subway Station,Transit,GIANT,RAPID,OT,0,RED,,STOLEN,24669,"{'type': 'Point', 'coordinates': (-79.26451403, 43.73277006)}"
-24682,8766,GO-20149006380,THEFT UNDER,2014-08-27T00:00:00,2014,August,Wednesday,27,239,11,2014-08-28T00:00:00,2014,August,Thursday,28,240,9,D41,Toronto,121,Oakridge (121),Ttc Subway Station,Transit,TR,,MT,21,BLK,600.0,STOLEN,24670,"{'type': 'Point', 'coordinates': (-79.28898153, 43.69286837)}"
-24683,13928,GO-20151863737,THEFT UNDER,2015-10-20T00:00:00,2015,October,Tuesday,20,293,19,2015-10-30T00:00:00,2015,October,Friday,30,303,7,D41,Toronto,122,Birchcliffe-Cliffside (122),"Apartment (Rooming House, Condo)",Apartment,MONGOOSE,,MT,12,SIL,,STOLEN,24671,"{'type': 'Point', 'coordinates': (-79.24912036, 43.70656836)}"
-24684,3132,GO-20189025662,THEFT UNDER,2018-08-08T00:00:00,2018,August,Wednesday,8,220,6,2018-08-09T00:00:00,2018,August,Thursday,9,221,11,D13,Toronto,109,Caledonia-Fairbank (109),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,TO,3,LGR,1000.0,STOLEN,24672,"{'type': 'Point', 'coordinates': (-79.44767861, 43.6839843)}"
-24685,23438,GO-20179009820,THEFT UNDER - BICYCLE,2017-07-08T00:00:00,2017,July,Saturday,8,189,19,2017-07-10T00:00:00,2017,July,Monday,10,191,12,D41,Toronto,124,Kennedy Park (124),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,,TO,8,DGR,200.0,STOLEN,24673,"{'type': 'Point', 'coordinates': (-79.25633539, 43.721771360000005)}"
-24686,9055,GO-20143102788,B&E,2014-10-11T00:00:00,2014,October,Saturday,11,284,20,2014-10-14T00:00:00,2014,October,Tuesday,14,287,15,D41,Toronto,121,Oakridge (121),"Private Property Structure (Pool, Shed, Detached Garage)",Other,FORTRESS,1700,SC,0,LBL,3000.0,STOLEN,24674,"{'type': 'Point', 'coordinates': (-79.28107824, 43.69281716)}"
-24687,13956,GO-2016597176,THEFT UNDER,2016-03-29T00:00:00,2016,March,Tuesday,29,89,18,2016-04-08T00:00:00,2016,April,Friday,8,99,14,D41,Toronto,122,Birchcliffe-Cliffside (122),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,EL,1,SIL,3500.0,STOLEN,24675,"{'type': 'Point', 'coordinates': (-79.28402002, 43.68081049)}"
-24688,13990,GO-20161339012,B&E W'INTENT,2016-07-29T00:00:00,2016,July,Friday,29,211,21,2016-07-30T00:00:00,2016,July,Saturday,30,212,13,D41,Toronto,122,Birchcliffe-Cliffside (122),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,SUSPEND,OT,26,WHI,230.0,STOLEN,24676,"{'type': 'Point', 'coordinates': (-79.28009524, 43.68505283)}"
-24689,14007,GO-20161575536,B&E,2016-09-05T00:00:00,2016,September,Monday,5,249,0,2016-09-05T00:00:00,2016,September,Monday,5,249,13,D41,Toronto,122,Birchcliffe-Cliffside (122),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,ANNYROAD,RC,22,BLK,2000.0,STOLEN,24677,"{'type': 'Point', 'coordinates': (-79.28311503, 43.67863626)}"
-24690,14008,GO-20161575536,B&E,2016-09-05T00:00:00,2016,September,Monday,5,249,0,2016-09-05T00:00:00,2016,September,Monday,5,249,13,D41,Toronto,122,Birchcliffe-Cliffside (122),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,RC,0,BLKRED,1000.0,RECOVERED,24678,"{'type': 'Point', 'coordinates': (-79.28311503, 43.67863626)}"
-24691,14011,GO-20169010227,THEFT UNDER - BICYCLE,2016-09-10T00:00:00,2016,September,Saturday,10,254,2,2016-09-10T00:00:00,2016,September,Saturday,10,254,12,D41,Toronto,122,Birchcliffe-Cliffside (122),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KH,,TO,21,GRY,1000.0,STOLEN,24679,"{'type': 'Point', 'coordinates': (-79.26091157, 43.70090336)}"
-24692,14347,GO-20141692241,THEFT UNDER,2014-03-08T00:00:00,2014,March,Saturday,8,67,19,2014-03-13T00:00:00,2014,March,Thursday,13,72,14,D41,Toronto,122,Birchcliffe-Cliffside (122),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,FORTRESS 2000,SC,1,RED,500.0,STOLEN,24680,"{'type': 'Point', 'coordinates': (-79.26395919, 43.69699268)}"
-24693,14375,GO-20149004331,THEFT UNDER,2014-06-20T00:00:00,2014,June,Friday,20,171,20,2014-06-22T00:00:00,2014,June,Sunday,22,173,20,D41,Toronto,122,Birchcliffe-Cliffside (122),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,MT,21,,480.0,STOLEN,24681,"{'type': 'Point', 'coordinates': (-79.2786383, 43.68091097)}"
-24694,16830,GO-20209018685,THEFT UNDER,2020-07-23T00:00:00,2020,July,Thursday,23,205,14,2020-07-27T00:00:00,2020,July,Monday,27,209,14,D41,Toronto,122,Birchcliffe-Cliffside (122),"Apartment (Rooming House, Condo)",Apartment,TU,ROAD BIKE,RC,12,RED,250.0,STOLEN,24682,"{'type': 'Point', 'coordinates': (-79.27746243, 43.67513962)}"
-24695,16831,GO-20209018952,THEFT UNDER - BICYCLE,2020-07-30T00:00:00,2020,July,Thursday,30,212,6,2020-07-30T00:00:00,2020,July,Thursday,30,212,8,D41,Toronto,122,Birchcliffe-Cliffside (122),Unknown,Other,GT,700 M TRANSEO C,MT,21,BLK,700.0,STOLEN,24683,"{'type': 'Point', 'coordinates': (-79.27870905, 43.67477193)}"
-24696,16940,GO-20171199395,B&E,2017-07-04T00:00:00,2017,July,Tuesday,4,185,22,2017-07-05T00:00:00,2017,July,Wednesday,5,186,7,D41,Toronto,122,Birchcliffe-Cliffside (122),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,MT,21,BLUYEL,,STOLEN,24684,"{'type': 'Point', 'coordinates': (-79.27584124, 43.68543241)}"
-24697,16941,GO-20171199395,B&E,2017-07-04T00:00:00,2017,July,Tuesday,4,185,22,2017-07-05T00:00:00,2017,July,Wednesday,5,186,7,D41,Toronto,122,Birchcliffe-Cliffside (122),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,MT,18,BLKGRY,,STOLEN,24685,"{'type': 'Point', 'coordinates': (-79.27584124, 43.68543241)}"
-24698,16982,GO-20171715294,THEFT OF EBIKE UNDER $5000,2017-09-18T00:00:00,2017,September,Monday,18,261,15,2017-09-21T00:00:00,2017,September,Thursday,21,264,16,D41,Toronto,122,Birchcliffe-Cliffside (122),Go Station,Transit,UNKNOWN MAKE,,EL,0,RED,500.0,STOLEN,24686,"{'type': 'Point', 'coordinates': (-79.25574196, 43.71776452)}"
-24699,17143,GO-20151082042,THEFT UNDER,2015-06-27T00:00:00,2015,June,Saturday,27,178,11,2015-06-27T00:00:00,2015,June,Saturday,27,178,12,D41,Toronto,122,Birchcliffe-Cliffside (122),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,BIANCHI,UNKNOWN,MT,21,PLE,,STOLEN,24687,"{'type': 'Point', 'coordinates': (-79.24875968, 43.7102532)}"
-24700,17159,GO-20159005894,B&E,2015-08-17T00:00:00,2015,August,Monday,17,229,2,2015-08-17T00:00:00,2015,August,Monday,17,229,10,D41,Toronto,122,Birchcliffe-Cliffside (122),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,,RG,9,DBL,1000.0,STOLEN,24688,"{'type': 'Point', 'coordinates': (-79.26855645, 43.68472656000001)}"
-24701,17213,GO-2016716892,B&E,2016-04-16T00:00:00,2016,April,Saturday,16,107,0,2016-04-27T00:00:00,2016,April,Wednesday,27,118,9,D41,Toronto,122,Birchcliffe-Cliffside (122),"Apartment (Rooming House, Condo)",Apartment,NORCO,VFR,MT,18,BLKGRY,600.0,STOLEN,24689,"{'type': 'Point', 'coordinates': (-79.28402002, 43.68081049)}"
-24702,17298,GO-2017405095,B&E,2017-02-19T00:00:00,2017,February,Sunday,19,50,0,2017-03-05T00:00:00,2017,March,Sunday,5,64,21,D41,Toronto,122,Birchcliffe-Cliffside (122),"Apartment (Rooming House, Condo)",Apartment,GT,AVALANCHE,MT,24,BLKWHI,1800.0,STOLEN,24690,"{'type': 'Point', 'coordinates': (-79.273724, 43.69107619)}"
-24703,17299,GO-2017405095,B&E,2017-02-19T00:00:00,2017,February,Sunday,19,50,0,2017-03-05T00:00:00,2017,March,Sunday,5,64,21,D41,Toronto,122,Birchcliffe-Cliffside (122),"Apartment (Rooming House, Condo)",Apartment,TREK,DS 8.3,MT,24,BLKSIL,,STOLEN,24691,"{'type': 'Point', 'coordinates': (-79.273724, 43.69107619)}"
-24704,17300,GO-2017405095,B&E,2017-02-19T00:00:00,2017,February,Sunday,19,50,0,2017-03-05T00:00:00,2017,March,Sunday,5,64,21,D41,Toronto,122,Birchcliffe-Cliffside (122),"Apartment (Rooming House, Condo)",Apartment,2005 HARDROCK,SPECIALIZED,MT,24,BLKRED,,STOLEN,24692,"{'type': 'Point', 'coordinates': (-79.273724, 43.69107619)}"
-24705,17475,GO-20149006345,THEFT UNDER,2014-08-28T00:00:00,2014,August,Thursday,28,240,11,2014-08-28T00:00:00,2014,August,Thursday,28,240,17,D41,Toronto,122,Birchcliffe-Cliffside (122),Convenience Stores,Commercial,TR,?,MT,21,YEL,500.0,STOLEN,24693,"{'type': 'Point', 'coordinates': (-79.25182721, 43.70791562)}"
-24706,17498,GO-20143403490,THEFT UNDER,2014-11-15T00:00:00,2014,November,Saturday,15,319,22,2014-12-01T00:00:00,2014,December,Monday,1,335,11,D41,Toronto,122,Birchcliffe-Cliffside (122),Schools During Un-Supervised Activity,Educational,GIANT,NIL,MT,18,GRY,400.0,STOLEN,24694,"{'type': 'Point', 'coordinates': (-79.28311503, 43.67863626)}"
-24707,17504,GO-2015332955,B&E,2015-02-25T00:00:00,2015,February,Wednesday,25,56,1,2015-02-25T00:00:00,2015,February,Wednesday,25,56,21,D41,Toronto,122,Birchcliffe-Cliffside (122),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,,TO,21,RED,5000.0,STOLEN,24695,"{'type': 'Point', 'coordinates': (-79.25448685, 43.71433079)}"
-24708,17505,GO-2015332955,B&E,2015-02-25T00:00:00,2015,February,Wednesday,25,56,1,2015-02-25T00:00:00,2015,February,Wednesday,25,56,21,D41,Toronto,122,Birchcliffe-Cliffside (122),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,HOME BUILT,OT,2,BLK,1000.0,STOLEN,24696,"{'type': 'Point', 'coordinates': (-79.25448685, 43.71433079)}"
-24709,20087,GO-20209012490,THEFT UNDER,2020-05-01T00:00:00,2020,May,Friday,1,122,19,2020-05-04T00:00:00,2020,May,Monday,4,125,20,D41,Toronto,122,Birchcliffe-Cliffside (122),"Apartment (Rooming House, Condo)",Apartment,SU,,MT,8,GLD,380.0,STOLEN,24697,"{'type': 'Point', 'coordinates': (-79.24680812, 43.70510039)}"
-24710,20237,GO-20171625782,B&E,2017-09-07T00:00:00,2017,September,Thursday,7,250,22,2017-09-08T00:00:00,2017,September,Friday,8,251,9,D41,Toronto,122,Birchcliffe-Cliffside (122),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,,RG,10,,,STOLEN,24698,"{'type': 'Point', 'coordinates': (-79.27057434, 43.68699552)}"
-24711,20246,GO-20179015937,THEFT UNDER,2017-09-26T00:00:00,2017,September,Tuesday,26,269,15,2017-09-27T00:00:00,2017,September,Wednesday,27,270,15,D41,Toronto,122,Birchcliffe-Cliffside (122),"Apartment (Rooming House, Condo)",Apartment,SU,VICE,MT,18,BLK,0.0,STOLEN,24699,"{'type': 'Point', 'coordinates': (-79.27606044, 43.68420306)}"
-24712,20305,GO-2018968329,B&E,2018-05-29T00:00:00,2018,May,Tuesday,29,149,12,2018-05-30T00:00:00,2018,May,Wednesday,30,150,16,D41,Toronto,122,Birchcliffe-Cliffside (122),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,MT,18,BLK,,STOLEN,24700,"{'type': 'Point', 'coordinates': (-79.27267554, 43.69207626)}"
-24713,20419,GO-20159004967,THEFT FROM MOTOR VEHICLE UNDER,2015-07-24T00:00:00,2015,July,Friday,24,205,22,2015-07-25T00:00:00,2015,July,Saturday,25,206,10,D41,Toronto,122,Birchcliffe-Cliffside (122),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,LIV,RG,15,PLE,700.0,STOLEN,24701,"{'type': 'Point', 'coordinates': (-79.27606044, 43.68420306)}"
-24714,20506,GO-20169006740,THEFT UNDER,2016-07-05T00:00:00,2016,July,Tuesday,5,187,11,2016-07-05T00:00:00,2016,July,Tuesday,5,187,11,D41,Toronto,122,Birchcliffe-Cliffside (122),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KO,JAKE THE SNAKE,RC,18,LGR,1500.0,STOLEN,24702,"{'type': 'Point', 'coordinates': (-79.26536068, 43.69282577)}"
-24715,20517,GO-20169008187,THEFT UNDER - BICYCLE,2016-08-02T00:00:00,2016,August,Tuesday,2,215,6,2016-08-04T00:00:00,2016,August,Thursday,4,217,15,D41,Toronto,122,Birchcliffe-Cliffside (122),Go Station,Transit,OT,,RG,21,DGR,300.0,STOLEN,24703,"{'type': 'Point', 'coordinates': (-79.25574196, 43.71776452)}"
-24716,20518,GO-20169008187,THEFT UNDER - BICYCLE,2016-08-02T00:00:00,2016,August,Tuesday,2,215,6,2016-08-04T00:00:00,2016,August,Thursday,4,217,15,D41,Toronto,122,Birchcliffe-Cliffside (122),Go Station,Transit,NO,CITY GLIDE,OT,21,WHI,500.0,STOLEN,24704,"{'type': 'Point', 'coordinates': (-79.25574196, 43.71776452)}"
-24717,20519,GO-20161374708,THEFT UNDER - BICYCLE,2016-08-05T00:00:00,2016,August,Friday,5,218,3,2016-08-05T00:00:00,2016,August,Friday,5,218,3,D41,Toronto,122,Birchcliffe-Cliffside (122),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,RC,10,DBLRED,0.0,STOLEN,24705,"{'type': 'Point', 'coordinates': (-79.27125066, 43.69130908)}"
-24718,20856,GO-20142014333,B&E,2014-05-02T00:00:00,2014,May,Friday,2,122,18,2014-05-04T00:00:00,2014,May,Sunday,4,124,16,D41,Toronto,122,Birchcliffe-Cliffside (122),"Private Property Structure (Pool, Shed, Detached Garage)",Other,DIAMONDBACK,DIRT JUMPER,OT,1,BLK,1200.0,STOLEN,24706,"{'type': 'Point', 'coordinates': (-79.27802626, 43.688782870000004)}"
-24719,20918,GO-20142901189,THEFT UNDER,2014-09-13T00:00:00,2014,September,Saturday,13,256,10,2014-09-13T00:00:00,2014,September,Saturday,13,256,10,D41,Toronto,122,Birchcliffe-Cliffside (122),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,K2,ATTACK 2.0,MT,24,BLKSIL,750.0,STOLEN,24707,"{'type': 'Point', 'coordinates': (-79.28393123, 43.68745172)}"
-24720,20961,GO-2015659750,THEFT UNDER,2015-04-21T00:00:00,2015,April,Tuesday,21,111,13,2015-04-21T00:00:00,2015,April,Tuesday,21,111,13,D41,Toronto,122,Birchcliffe-Cliffside (122),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,EL,1,BLK,600.0,STOLEN,24708,"{'type': 'Point', 'coordinates': (-79.24923764, 43.71377433)}"
-24721,23203,GO-20189030303,THEFT UNDER - BICYCLE,2018-09-13T00:00:00,2018,September,Thursday,13,256,8,2018-09-13T00:00:00,2018,September,Thursday,13,256,17,D41,Toronto,122,Birchcliffe-Cliffside (122),Schools During Supervised Activity,Educational,UK,,MT,21,BLK,250.0,STOLEN,24709,"{'type': 'Point', 'coordinates': (-79.28311503, 43.67863626)}"
-24722,23254,GO-20199015511,THEFT UNDER,2019-05-17T00:00:00,2019,May,Friday,17,137,17,2019-05-18T00:00:00,2019,May,Saturday,18,138,8,D41,Toronto,122,Birchcliffe-Cliffside (122),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,TA,12,BLU,1000.0,STOLEN,24710,"{'type': 'Point', 'coordinates': (-79.25968963, 43.70515057)}"
-24723,23340,GO-20209018209,THEFT UNDER,2020-07-21T00:00:00,2020,July,Tuesday,21,203,20,2020-07-22T00:00:00,2020,July,Wednesday,22,204,12,D41,Toronto,122,Birchcliffe-Cliffside (122),"Open Areas (Lakes, Parks, Rivers)",Outside,CA,,MT,9,YEL,1500.0,STOLEN,24711,"{'type': 'Point', 'coordinates': (-79.27870905, 43.67477193)}"
-24724,23566,GO-20181343749,THEFT UNDER - BICYCLE,2018-07-15T00:00:00,2018,July,Sunday,15,196,12,2018-07-23T00:00:00,2018,July,Monday,23,204,9,D41,Toronto,122,Birchcliffe-Cliffside (122),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,MT,18,BLKGRN,250.0,STOLEN,24712,"{'type': 'Point', 'coordinates': (-79.24912036, 43.70656836)}"
-24725,23697,GO-2016933350,THEFT UNDER - BICYCLE,2016-05-30T00:00:00,2016,May,Monday,30,151,10,2016-05-30T00:00:00,2016,May,Monday,30,151,13,D41,Toronto,122,Birchcliffe-Cliffside (122),Schools During Supervised Activity,Educational,TREK,MATTE,TO,21,,450.0,STOLEN,24713,"{'type': 'Point', 'coordinates': (-79.28311503, 43.67863626)}"
-24726,23727,GO-20161415185,THEFT OVER - BICYCLE,2016-07-21T00:00:00,2016,July,Thursday,21,203,12,2016-08-11T00:00:00,2016,August,Thursday,11,224,12,D41,Toronto,122,Birchcliffe-Cliffside (122),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,,BM,6,WHI,500.0,STOLEN,24714,"{'type': 'Point', 'coordinates': (-79.28327954, 43.68588984)}"
-24727,23728,GO-20161415185,THEFT OVER - BICYCLE,2016-07-21T00:00:00,2016,July,Thursday,21,203,12,2016-08-11T00:00:00,2016,August,Thursday,11,224,12,D41,Toronto,122,Birchcliffe-Cliffside (122),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,,SC,1,,200.0,STOLEN,24715,"{'type': 'Point', 'coordinates': (-79.28327954, 43.68588984)}"
-24728,23729,GO-20161415185,THEFT OVER - BICYCLE,2016-07-21T00:00:00,2016,July,Thursday,21,203,12,2016-08-11T00:00:00,2016,August,Thursday,11,224,12,D41,Toronto,122,Birchcliffe-Cliffside (122),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,RUMBLEFISH,TO,6,GRN,3600.0,STOLEN,24716,"{'type': 'Point', 'coordinates': (-79.28327954, 43.68588984)}"
-24729,23730,GO-20161415185,THEFT OVER - BICYCLE,2016-07-21T00:00:00,2016,July,Thursday,21,203,12,2016-08-11T00:00:00,2016,August,Thursday,11,224,12,D41,Toronto,122,Birchcliffe-Cliffside (122),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DEVINCI,,TO,6,BLK,1200.0,STOLEN,24717,"{'type': 'Point', 'coordinates': (-79.28327954, 43.68588984)}"
-24730,8076,GO-20142236580,THEFT UNDER,2014-06-05T00:00:00,2014,June,Thursday,5,156,17,2014-06-06T00:00:00,2014,June,Friday,6,157,21,D41,Toronto,123,Cliffcrest (123),"Open Areas (Lakes, Parks, Rivers)",Outside,FIT,BMX DUGGAN,BM,1,RED,1200.0,STOLEN,24726,"{'type': 'Point', 'coordinates': (-79.24208584, 43.7057375)}"
-24731,693,GO-20171127798,THEFT UNDER,2017-06-23T00:00:00,2017,June,Friday,23,174,17,2017-06-24T00:00:00,2017,June,Saturday,24,175,12,D41,Toronto,123,Cliffcrest (123),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,BMX HUTCH,BM,10,BLU,350.0,STOLEN,24718,"{'type': 'Point', 'coordinates': (-79.24258509, 43.70889052)}"
-24732,694,GO-20171127798,THEFT UNDER,2017-06-23T00:00:00,2017,June,Friday,23,174,17,2017-06-24T00:00:00,2017,June,Saturday,24,175,12,D41,Toronto,123,Cliffcrest (123),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,EXCALABER,MT,12,BLK,680.0,STOLEN,24719,"{'type': 'Point', 'coordinates': (-79.24258509, 43.70889052)}"
-24733,1230,GO-20179013140,THEFT UNDER - BICYCLE,2017-08-12T00:00:00,2017,August,Saturday,12,224,17,2017-08-23T00:00:00,2017,August,Wednesday,23,235,13,D43,Toronto,123,Cliffcrest (123),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,HARD ROCK AND C,MT,21,SIL,2000.0,STOLEN,24720,"{'type': 'Point', 'coordinates': (-79.22786781, 43.72243624000001)}"
-24734,1718,GO-20171919540,THEFT UNDER - BICYCLE,2017-10-17T00:00:00,2017,October,Tuesday,17,290,23,2017-10-23T00:00:00,2017,October,Monday,23,296,14,D43,Toronto,123,Cliffcrest (123),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,HYBRID,TO,10,BLK,700.0,UNKNOWN,24721,"{'type': 'Point', 'coordinates': (-79.23103567000001, 43.73738585)}"
-24735,2667,GO-20189020042,THEFT UNDER - BICYCLE,2018-06-14T00:00:00,2018,June,Thursday,14,165,8,2018-06-24T00:00:00,2018,June,Sunday,24,175,15,D41,Toronto,123,Cliffcrest (123),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,CINDERCONE,MT,18,GRY,1500.0,STOLEN,24722,"{'type': 'Point', 'coordinates': (-79.25010783, 43.71587322)}"
-24736,4287,GO-20199015304,THEFT UNDER,2019-05-14T00:00:00,2019,May,Tuesday,14,134,19,2019-05-16T00:00:00,2019,May,Thursday,16,136,16,D43,Toronto,123,Cliffcrest (123),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,15,RED,115.0,STOLEN,24723,"{'type': 'Point', 'coordinates': (-79.23712066, 43.71567092)}"
-24737,4729,GO-20199021722,THEFT UNDER,2019-07-07T00:00:00,2019,July,Sunday,7,188,1,2019-07-10T00:00:00,2019,July,Wednesday,10,191,14,D43,Toronto,123,Cliffcrest (123),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,,FO,5,SIL,1400.0,STOLEN,24724,"{'type': 'Point', 'coordinates': (-79.23975232, 43.71872838)}"
-24738,5954,GO-2020512353,PROPERTY - FOUND,2020-03-02T00:00:00,2020,March,Monday,2,62,15,2020-03-11T00:00:00,2020,March,Wednesday,11,71,20,D43,Toronto,123,Cliffcrest (123),"Single Home, House (Attach Garage, Cottage, Mobile)",House,LEADER,LE10741,MT,15,PLE,,UNKNOWN,24725,"{'type': 'Point', 'coordinates': (-79.23323932, 43.71586896)}"
-24739,8112,GO-20142281095,THEFT UNDER,2014-06-12T00:00:00,2014,June,Thursday,12,163,15,2014-06-13T00:00:00,2014,June,Friday,13,164,9,D41,Toronto,123,Cliffcrest (123),Schools During Supervised Activity,Educational,MOLTEN,MONSTER,OT,1,BLUWHI,,STOLEN,24727,"{'type': 'Point', 'coordinates': (-79.24923764, 43.71377433)}"
-24740,8203,GO-20149004296,THEFT UNDER,2014-06-19T00:00:00,2014,June,Thursday,19,170,8,2014-06-21T00:00:00,2014,June,Saturday,21,172,10,D43,Toronto,123,Cliffcrest (123),Go Station,Transit,CC,BLADE RESPONSE,MT,21,BLU,30.0,STOLEN,24728,"{'type': 'Point', 'coordinates': (-79.2278877, 43.73997977)}"
-24741,8498,GO-20142569501,THEFT UNDER,2014-07-24T00:00:00,2014,July,Thursday,24,205,14,2014-07-25T00:00:00,2014,July,Friday,25,206,14,D43,Toronto,123,Cliffcrest (123),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,5,RED,50.0,STOLEN,24729,"{'type': 'Point', 'coordinates': (-79.23313529, 43.73231405)}"
-24742,9555,GO-20159002549,THEFT UNDER,2015-05-07T00:00:00,2015,May,Thursday,7,127,23,2015-05-08T00:00:00,2015,May,Friday,8,128,11,D43,Toronto,123,Cliffcrest (123),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,MT,21,GRY,200.0,STOLEN,24730,"{'type': 'Point', 'coordinates': (-79.22868461, 43.72141203)}"
-24743,10931,GO-201689525,PROPERTY - FOUND,2016-01-15T00:00:00,2016,January,Friday,15,15,1,2016-01-15T00:00:00,2016,January,Friday,15,15,19,D43,Toronto,123,Cliffcrest (123),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,TRIUMH,MT,18,GRN,300.0,UNKNOWN,24731,"{'type': 'Point', 'coordinates': (-79.2330087, 43.72657995)}"
-24744,11202,GO-2016711131,PROPERTY - FOUND,2016-04-24T00:00:00,2016,April,Sunday,24,115,17,2016-04-26T00:00:00,2016,April,Tuesday,26,117,12,D43,Toronto,123,Cliffcrest (123),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TECH TEAM,260 XL,MT,21,BLKYEL,,UNKNOWN,24732,"{'type': 'Point', 'coordinates': (-79.23126843, 43.71743058)}"
-24745,13509,GO-20199022819,THEFT UNDER,2019-07-13T00:00:00,2019,July,Saturday,13,194,21,2019-07-18T00:00:00,2019,July,Thursday,18,199,16,D41,Toronto,123,Cliffcrest (123),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,BOULDER SE,MT,18,RED,200.0,STOLEN,24733,"{'type': 'Point', 'coordinates': (-79.23452734, 43.70795004)}"
-24746,13682,GO-20171128636,THEFT UNDER,2017-06-21T00:00:00,2017,June,Wednesday,21,172,10,2017-06-24T00:00:00,2017,June,Saturday,24,175,13,D41,Toronto,123,Cliffcrest (123),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,VICTORY,03.Oct,SC,2,BLU,,STOLEN,24734,"{'type': 'Point', 'coordinates': (-79.24032382, 43.71822561)}"
-24747,14053,GO-2017701319,B&E,2017-04-21T00:00:00,2017,April,Friday,21,111,9,2017-04-21T00:00:00,2017,April,Friday,21,111,16,D43,Toronto,123,Cliffcrest (123),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,EMONDA 6 PRO,RC,22,BLK,3400.0,STOLEN,24735,"{'type': 'Point', 'coordinates': (-79.22956223, 43.73893059000001)}"
-24748,14430,GO-20143561269,THEFT UNDER,2014-12-27T00:00:00,2014,December,Saturday,27,361,17,2014-12-28T00:00:00,2014,December,Sunday,28,362,10,D41,Toronto,123,Cliffcrest (123),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,,OT,0,BLU,700.0,STOLEN,24736,"{'type': 'Point', 'coordinates': (-79.24847420000002, 43.7119417)}"
-24749,16821,GO-20209016673,THEFT UNDER,2020-07-02T00:00:00,2020,July,Thursday,2,184,1,2020-07-02T00:00:00,2020,July,Thursday,2,184,17,D43,Toronto,123,Cliffcrest (123),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,JAMBOREE,RG,1,PLE,145.0,STOLEN,24737,"{'type': 'Point', 'coordinates': (-79.22968819, 43.72938954)}"
-24750,16822,GO-20209016673,THEFT UNDER,2020-07-02T00:00:00,2020,July,Thursday,2,184,1,2020-07-02T00:00:00,2020,July,Thursday,2,184,17,D43,Toronto,123,Cliffcrest (123),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,1,ONG,118.0,STOLEN,24738,"{'type': 'Point', 'coordinates': (-79.22968819, 43.72938954)}"
-24751,17251,GO-20169007706,THEFT UNDER - BICYCLE,2016-07-20T00:00:00,2016,July,Wednesday,20,202,6,2016-07-25T00:00:00,2016,July,Monday,25,207,10,D43,Toronto,123,Cliffcrest (123),Go Station,Transit,OT,,RG,1,WHI,175.0,STOLEN,24739,"{'type': 'Point', 'coordinates': (-79.2278877, 43.73997977)}"
-24752,20116,GO-20201583344,THEFT UNDER - BICYCLE,2020-08-22T00:00:00,2020,August,Saturday,22,235,14,2020-08-25T00:00:00,2020,August,Tuesday,25,238,20,D41,Toronto,123,Cliffcrest (123),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KHS,RACING SERIES,RC,24,BLK,1600.0,STOLEN,24740,"{'type': 'Point', 'coordinates': (-79.24847420000002, 43.7119417)}"
-24753,20459,GO-20151946168,THEFT UNDER,2015-11-06T00:00:00,2015,November,Friday,6,310,8,2015-11-12T00:00:00,2015,November,Thursday,12,316,19,D41,Toronto,123,Cliffcrest (123),Ttc Bus Stop / Shelter / Loop,Outside,GIANT,RINCON,MT,21,OTHRED,600.0,STOLEN,24741,"{'type': 'Point', 'coordinates': (-79.24814778, 43.71112032)}"
-24754,20522,GO-20161487005,THEFT UNDER - BICYCLE,2016-08-20T00:00:00,2016,August,Saturday,20,233,14,2016-08-22T00:00:00,2016,August,Monday,22,235,14,D43,Toronto,123,Cliffcrest (123),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,,MT,21,BLUPLE,,STOLEN,24742,"{'type': 'Point', 'coordinates': (-79.23247433000002, 43.7139949)}"
-24755,20544,GO-20161834413,B&E,2016-10-14T00:00:00,2016,October,Friday,14,288,17,2016-10-15T00:00:00,2016,October,Saturday,15,289,12,D43,Toronto,123,Cliffcrest (123),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CHAMPION,,MT,15,RED,100.0,STOLEN,24743,"{'type': 'Point', 'coordinates': (-79.23613297, 43.72439989)}"
-24756,20545,GO-20161840791,THEFT UNDER - BICYCLE,2016-10-16T00:00:00,2016,October,Sunday,16,290,5,2016-10-16T00:00:00,2016,October,Sunday,16,290,13,D43,Toronto,123,Cliffcrest (123),"Private Property Structure (Pool, Shed, Detached Garage)",Other,JAMIS,,MT,18,BLKGRY,1000.0,STOLEN,24744,"{'type': 'Point', 'coordinates': (-79.23355086000001, 43.71977625)}"
-24757,20893,GO-20142569501,THEFT UNDER,2014-07-24T00:00:00,2014,July,Thursday,24,205,14,2014-07-25T00:00:00,2014,July,Friday,25,206,14,D43,Toronto,123,Cliffcrest (123),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,5,RED,50.0,STOLEN,24745,"{'type': 'Point', 'coordinates': (-79.23313529, 43.73231405)}"
-24758,23297,GO-20199026173,THEFT UNDER,2019-08-03T00:00:00,2019,August,Saturday,3,215,20,2019-08-14T00:00:00,2019,August,Wednesday,14,226,12,D41,Toronto,123,Cliffcrest (123),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,,MT,21,YEL,750.0,STOLEN,24746,"{'type': 'Point', 'coordinates': (-79.24759627, 43.7146596)}"
-24759,23357,GO-20201833853,PROPERTY - FOUND,2020-09-27T00:00:00,2020,September,Sunday,27,271,6,2020-09-27T00:00:00,2020,September,Sunday,27,271,9,D41,Toronto,123,Cliffcrest (123),Schools During Un-Supervised Activity,Educational,SPORTEK,TOPAZ,MT,18,BLULBL,,UNKNOWN,24747,"{'type': 'Point', 'coordinates': (-79.23906782, 43.71523432)}"
-24760,23414,GO-2017908606,THEFT UNDER - BICYCLE,2017-05-23T00:00:00,2017,May,Tuesday,23,143,14,2017-05-23T00:00:00,2017,May,Tuesday,23,143,14,D43,Toronto,123,Cliffcrest (123),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,TORRENT AL,MT,1,GLD,,UNKNOWN,24748,"{'type': 'Point', 'coordinates': (-79.23516219, 43.72271441)}"
-24761,23431,GO-20171188323,ROBBERY - OTHER,2017-07-02T00:00:00,2017,July,Sunday,2,183,19,2017-07-03T00:00:00,2017,July,Monday,3,184,14,D43,Toronto,123,Cliffcrest (123),Schools During Un-Supervised Activity,Educational,HUFFY,MENS,MT,18,BLU,108.0,STOLEN,24749,"{'type': 'Point', 'coordinates': (-79.23029493, 43.72779915)}"
-24762,23479,GO-20179016123,THEFT FROM MOTOR VEHICLE UNDER,2017-08-21T00:00:00,2017,August,Monday,21,233,15,2017-09-29T00:00:00,2017,September,Friday,29,272,14,D43,Toronto,123,Cliffcrest (123),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,,MT,21,DGR,550.0,STOLEN,24750,"{'type': 'Point', 'coordinates': (-79.22590247, 43.73529436)}"
-24763,23689,GO-20169004133,THEFT UNDER - BICYCLE,2016-04-22T00:00:00,2016,April,Friday,22,113,7,2016-05-04T00:00:00,2016,May,Wednesday,4,125,13,D43,Toronto,123,Cliffcrest (123),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,MT,7,MRN,699.0,STOLEN,24751,"{'type': 'Point', 'coordinates': (-79.23834265, 43.71540369)}"
-24764,763,GO-20179009325,THEFT UNDER - BICYCLE,2017-05-27T00:00:00,2017,May,Saturday,27,147,19,2017-07-03T00:00:00,2017,July,Monday,3,184,16,D41,Toronto,124,Kennedy Park (124),Ttc Subway Station,Transit,UK,,MT,27,,0.0,STOLEN,24752,"{'type': 'Point', 'coordinates': (-79.26451403, 43.73277006)}"
-24765,802,GO-20171223159,B&E,2017-06-24T00:00:00,2017,June,Saturday,24,175,18,2017-07-08T00:00:00,2017,July,Saturday,8,189,15,D41,Toronto,124,Kennedy Park (124),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,ATX2,MT,21,BLKBLU,,STOLEN,24753,"{'type': 'Point', 'coordinates': (-79.26292664, 43.72903126)}"
-24766,2295,GO-2018864087,B&E,2018-05-12T00:00:00,2018,May,Saturday,12,132,14,2018-05-13T00:00:00,2018,May,Sunday,13,133,18,D41,Toronto,124,Kennedy Park (124),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,MT,18,WHI,,STOLEN,24754,"{'type': 'Point', 'coordinates': (-79.2480634, 43.73413919)}"
-24767,2303,GO-20189014835,THEFT UNDER - BICYCLE,2018-05-07T00:00:00,2018,May,Monday,7,127,10,2018-05-14T00:00:00,2018,May,Monday,14,134,10,D41,Toronto,124,Kennedy Park (124),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SU,,RG,50,,200.0,STOLEN,24755,"{'type': 'Point', 'coordinates': (-79.25078156, 43.73069766)}"
-24768,2373,GO-2018904612,THEFT UNDER,2018-05-18T00:00:00,2018,May,Friday,18,138,21,2018-05-19T00:00:00,2018,May,Saturday,19,139,17,D41,Toronto,124,Kennedy Park (124),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FORESTER,,SC,1,BLU,3000.0,STOLEN,24756,"{'type': 'Point', 'coordinates': (-79.2480634, 43.73413919)}"
-24769,2437,GO-2018978710,B&E,2018-05-29T00:00:00,2018,May,Tuesday,29,149,13,2018-05-30T00:00:00,2018,May,Wednesday,30,150,19,D41,Toronto,124,Kennedy Park (124),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNK,,MT,18,BLURED,,STOLEN,24757,"{'type': 'Point', 'coordinates': (-79.25633539, 43.721771360000005)}"
-24770,2438,GO-2018978710,B&E,2018-05-29T00:00:00,2018,May,Tuesday,29,149,13,2018-05-30T00:00:00,2018,May,Wednesday,30,150,19,D41,Toronto,124,Kennedy Park (124),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNK,,MT,18,BLU,200.0,STOLEN,24758,"{'type': 'Point', 'coordinates': (-79.25633539, 43.721771360000005)}"
-24771,2597,GO-20189019040,THEFT UNDER - BICYCLE,2018-06-13T00:00:00,2018,June,Wednesday,13,164,0,2018-06-17T00:00:00,2018,June,Sunday,17,168,12,D41,Toronto,124,Kennedy Park (124),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,18,RED,0.0,STOLEN,24759,"{'type': 'Point', 'coordinates': (-79.25594615, 43.72689226)}"
-24772,2598,GO-20189019040,THEFT UNDER - BICYCLE,2018-06-13T00:00:00,2018,June,Wednesday,13,164,0,2018-06-17T00:00:00,2018,June,Sunday,17,168,12,D41,Toronto,124,Kennedy Park (124),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MO,,MT,21,BLU,0.0,STOLEN,24760,"{'type': 'Point', 'coordinates': (-79.25594615, 43.72689226)}"
-24773,6655,GO-20209017854,THEFT UNDER,2020-07-13T00:00:00,2020,July,Monday,13,195,23,2020-07-18T00:00:00,2020,July,Saturday,18,200,9,D13,Toronto,109,Caledonia-Fairbank (109),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,MOUNTAIN BIKE,MT,21,BLU,100.0,STOLEN,24761,"{'type': 'Point', 'coordinates': (-79.45140719, 43.69313228)}"
-24774,6774,GO-20209018747,THEFT UNDER,2020-07-27T00:00:00,2020,July,Monday,27,209,21,2020-07-28T00:00:00,2020,July,Tuesday,28,210,1,D13,Toronto,109,Caledonia-Fairbank (109),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,MT,8,RED,275.0,STOLEN,24762,"{'type': 'Point', 'coordinates': (-79.45505937, 43.69462616)}"
-24775,7898,GO-20149003251,THEFT UNDER,2014-05-08T00:00:00,2014,May,Thursday,8,128,7,2014-05-09T00:00:00,2014,May,Friday,9,129,14,D13,Toronto,109,Caledonia-Fairbank (109),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,2010 NORCO MALA,RG,27,SIL,425.0,STOLEN,24763,"{'type': 'Point', 'coordinates': (-79.45045873, 43.68445197)}"
-24776,9198,GO-20143341073,THEFT UNDER,2014-11-20T00:00:00,2014,November,Thursday,20,324,11,2014-11-21T00:00:00,2014,November,Friday,21,325,11,D13,Toronto,109,Caledonia-Fairbank (109),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,OT,0,,900.0,STOLEN,24764,"{'type': 'Point', 'coordinates': (-79.45062860000002, 43.69422344)}"
-24777,10382,GO-20151531361,B&E W'INTENT,2015-09-04T00:00:00,2015,September,Friday,4,247,22,2015-09-05T00:00:00,2015,September,Saturday,5,248,4,D13,Toronto,109,Caledonia-Fairbank (109),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,RACING,RC,24,BLUBLK,7000.0,STOLEN,24765,"{'type': 'Point', 'coordinates': (-79.45505937, 43.69462616)}"
-24778,11723,GO-20169006788,THEFT UNDER,2016-07-05T00:00:00,2016,July,Tuesday,5,187,13,2016-07-05T00:00:00,2016,July,Tuesday,5,187,22,D13,Toronto,109,Caledonia-Fairbank (109),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,ALPHA,MT,21,BLK,400.0,STOLEN,24766,"{'type': 'Point', 'coordinates': (-79.46051143, 43.68900107)}"
-24779,11851,GO-20169007451,THEFT UNDER,2016-07-20T00:00:00,2016,July,Wednesday,20,202,6,2016-07-20T00:00:00,2016,July,Wednesday,20,202,9,D13,Toronto,109,Caledonia-Fairbank (109),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CC,,MT,6,RED,0.0,STOLEN,24767,"{'type': 'Point', 'coordinates': (-79.45195552000001, 43.69114308)}"
-24780,12785,GO-20162051250,THEFT UNDER,2016-11-18T00:00:00,2016,November,Friday,18,323,17,2016-11-18T00:00:00,2016,November,Friday,18,323,17,D13,Toronto,109,Caledonia-Fairbank (109),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,10,REDBLK,,STOLEN,24768,"{'type': 'Point', 'coordinates': (-79.4536644, 43.6868147)}"
-24781,18288,GO-20201606746,THEFT UNDER - BICYCLE,2020-08-21T00:00:00,2020,August,Friday,21,234,21,2020-08-26T00:00:00,2020,August,Wednesday,26,239,7,D13,Toronto,109,Caledonia-Fairbank (109),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RALEIGH,,RG,21,BLUGRY,200.0,STOLEN,24769,"{'type': 'Point', 'coordinates': (-79.46395872, 43.69240489)}"
-24782,18359,GO-20149005772,THEFT FROM MOTOR VEHICLE UNDER,2014-08-12T00:00:00,2014,August,Tuesday,12,224,8,2014-08-13T00:00:00,2014,August,Wednesday,13,225,16,D13,Toronto,109,Caledonia-Fairbank (109),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RC,12,GRN,4500.0,STOLEN,24770,"{'type': 'Point', 'coordinates': (-79.45153714, 43.68712997)}"
-24783,21529,GO-20181639863,THEFT UNDER,2018-09-02T00:00:00,2018,September,Sunday,2,245,21,2018-09-04T00:00:00,2018,September,Tuesday,4,247,21,D13,Toronto,109,Caledonia-Fairbank (109),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CAN TIRE,,TR,1,BLUYEL,100.0,STOLEN,24771,"{'type': 'Point', 'coordinates': (-79.46081616, 43.68646307)}"
-24784,21942,GO-2016264289,THEFT UNDER,2016-01-02T00:00:00,2016,January,Saturday,2,2,9,2016-02-13T00:00:00,2016,February,Saturday,13,44,18,D13,Toronto,109,Caledonia-Fairbank (109),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SCHWINN,,OT,18,REDSIL,1500.0,STOLEN,24772,"{'type': 'Point', 'coordinates': (-79.45524043, 43.69107546000001)}"
-24785,21945,GO-20169002179,THEFT UNDER,2016-03-05T00:00:00,2016,March,Saturday,5,65,15,2016-03-10T00:00:00,2016,March,Thursday,10,70,9,D13,Toronto,109,Caledonia-Fairbank (109),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,ENDURO PRO,MT,1,SIL,1500.0,STOLEN,24773,"{'type': 'Point', 'coordinates': (-79.44876638000001, 43.69217618)}"
-24786,25379,GO-20209018839,THEFT UNDER,2020-07-28T00:00:00,2020,July,Tuesday,28,210,8,2020-07-28T00:00:00,2020,July,Tuesday,28,210,18,D13,Toronto,109,Caledonia-Fairbank (109),"Apartment (Rooming House, Condo)",Apartment,CC,,MT,21,RED,350.0,STOLEN,24774,"{'type': 'Point', 'coordinates': (-79.45505937, 43.69462616)}"
-24787,63,GO-20179001166,THEFT UNDER,2016-12-24T00:00:00,2016,December,Saturday,24,359,14,2017-01-25T00:00:00,2017,January,Wednesday,25,25,14,D12,Toronto,110,Keelesdale-Eglinton West (110),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,DEW PLUS,RG,9,WHI,1093.0,STOLEN,24775,"{'type': 'Point', 'coordinates': (-79.46880936, 43.68007719)}"
-24788,1249,GO-20179013389,THEFT UNDER - BICYCLE,2017-08-26T00:00:00,2017,August,Saturday,26,238,3,2017-08-26T00:00:00,2017,August,Saturday,26,238,11,D12,Toronto,110,Keelesdale-Eglinton West (110),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,16 PRECALIBER 2,MT,7,BLK,400.0,STOLEN,24776,"{'type': 'Point', 'coordinates': (-79.47681276, 43.6889132)}"
-24789,1287,GO-20179013838,THEFT UNDER - BICYCLE,2017-07-26T00:00:00,2017,July,Wednesday,26,207,16,2017-09-01T00:00:00,2017,September,Friday,1,244,17,D12,Toronto,110,Keelesdale-Eglinton West (110),Bar / Restaurant,Commercial,RM,,MT,7,BLK,700.0,STOLEN,24777,"{'type': 'Point', 'coordinates': (-79.47155952, 43.68213676)}"
-24790,3145,GO-20189025816,THEFT UNDER - BICYCLE,2018-08-08T00:00:00,2018,August,Wednesday,8,220,14,2018-08-10T00:00:00,2018,August,Friday,10,222,14,D12,Toronto,110,Keelesdale-Eglinton West (110),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,MT,14,BLK,350.0,STOLEN,24778,"{'type': 'Point', 'coordinates': (-79.47155952, 43.68213676)}"
-24791,4414,GO-20191033262,THEFT UNDER - BICYCLE,2019-05-29T00:00:00,2019,May,Wednesday,29,149,17,2019-06-05T00:00:00,2019,June,Wednesday,5,156,10,D12,Toronto,110,Keelesdale-Eglinton West (110),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MOVELLO,,BM,17,GRN,100.0,STOLEN,24779,"{'type': 'Point', 'coordinates': (-79.46250499, 43.68095605)}"
-24792,5069,GO-20199026238,THEFT UNDER,2019-08-14T00:00:00,2019,August,Wednesday,14,226,16,2019-08-14T00:00:00,2019,August,Wednesday,14,226,18,D12,Toronto,110,Keelesdale-Eglinton West (110),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UK,,RG,10,BLK,0.0,STOLEN,24780,"{'type': 'Point', 'coordinates': (-79.48283963, 43.68836913)}"
-24793,6161,GO-2020804076,B&E,2020-04-28T00:00:00,2020,April,Tuesday,28,119,16,2020-04-28T00:00:00,2020,April,Tuesday,28,119,21,D12,Toronto,110,Keelesdale-Eglinton West (110),"Apartment (Rooming House, Condo)",Apartment,SCHWINN,,RG,18,PLE,400.0,STOLEN,24781,"{'type': 'Point', 'coordinates': (-79.47155952, 43.68213676)}"
-24794,479,GO-2017932698,SUSPICIOUS INCIDENT,2017-05-27T00:00:00,2017,May,Saturday,27,147,3,2017-05-27T00:00:00,2017,May,Saturday,27,147,4,D12,Toronto,111,Rockcliffe-Smythe (111),"Open Areas (Lakes, Parks, Rivers)",Outside,VELO SPORT,513,RG,6,BLK,,UNKNOWN,24805,"{'type': 'Point', 'coordinates': (-79.49771382, 43.66889764)}"
-24795,6212,GO-2020936184,B&E,2020-05-20T00:00:00,2020,May,Wednesday,20,141,21,2020-05-21T00:00:00,2020,May,Thursday,21,142,11,D12,Toronto,110,Keelesdale-Eglinton West (110),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BMX,,BM,1,BLU,,STOLEN,24782,"{'type': 'Point', 'coordinates': (-79.46597983, 43.68370438)}"
-24796,6213,GO-2020936184,B&E,2020-05-20T00:00:00,2020,May,Wednesday,20,141,21,2020-05-21T00:00:00,2020,May,Thursday,21,142,11,D12,Toronto,110,Keelesdale-Eglinton West (110),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,KARAKORAM 4.0 M,MT,15,,450.0,STOLEN,24783,"{'type': 'Point', 'coordinates': (-79.46597983, 43.68370438)}"
-24797,7147,GO-20209022003,THEFT UNDER,2020-09-01T00:00:00,2020,September,Tuesday,1,245,16,2020-09-01T00:00:00,2020,September,Tuesday,1,245,16,D12,Toronto,110,Keelesdale-Eglinton West (110),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,21,WHI,1000.0,STOLEN,24784,"{'type': 'Point', 'coordinates': (-79.47051966, 43.67969568)}"
-24798,8342,GO-20149004687,THEFT UNDER,2014-06-05T00:00:00,2014,June,Thursday,5,156,19,2014-07-07T00:00:00,2014,July,Monday,7,188,19,D12,Toronto,110,Keelesdale-Eglinton West (110),"Apartment (Rooming House, Condo)",Apartment,OT,ROADRACER SL01,OT,11,BLK,5000.0,STOLEN,24785,"{'type': 'Point', 'coordinates': (-79.4691072, 43.68232448)}"
-24799,8718,GO-20142772180,THEFT UNDER,2014-08-24T00:00:00,2014,August,Sunday,24,236,17,2014-08-25T00:00:00,2014,August,Monday,25,237,11,D12,Toronto,110,Keelesdale-Eglinton West (110),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,,RG,10,RED,300.0,STOLEN,24786,"{'type': 'Point', 'coordinates': (-79.47354415, 43.68674812)}"
-24800,9957,GO-20159004236,THEFT UNDER,2015-07-06T00:00:00,2015,July,Monday,6,187,22,2015-07-06T00:00:00,2015,July,Monday,6,187,22,D12,Toronto,110,Keelesdale-Eglinton West (110),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,X-CALIBER 9 201,MT,30,BLK,1800.0,STOLEN,24787,"{'type': 'Point', 'coordinates': (-79.47051966, 43.67969568)}"
-24801,9970,GO-20159004334,THEFT UNDER,2015-07-08T00:00:00,2015,July,Wednesday,8,189,13,2015-07-08T00:00:00,2015,July,Wednesday,8,189,16,D12,Toronto,110,Keelesdale-Eglinton West (110),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UK,,MT,25,BLU,300.0,STOLEN,24788,"{'type': 'Point', 'coordinates': (-79.47317394, 43.68583273)}"
-24802,18229,GO-20179021241,THEFT UNDER - BICYCLE,2017-12-04T00:00:00,2017,December,Monday,4,338,18,2017-12-04T00:00:00,2017,December,Monday,4,338,21,D12,Toronto,110,Keelesdale-Eglinton West (110),"Apartment (Rooming House, Condo)",Apartment,UK,ROOTS DOWNHILL,MT,22,BLK,4000.0,STOLEN,24796,"{'type': 'Point', 'coordinates': (-79.47051966, 43.67969568)}"
-24803,10286,GO-20151431628,THEFT UNDER,2015-08-19T00:00:00,2015,August,Wednesday,19,231,15,2015-08-20T00:00:00,2015,August,Thursday,20,232,8,D12,Toronto,110,Keelesdale-Eglinton West (110),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,PETRO SUPERSTAR,MT,10,WHI,100.0,STOLEN,24789,"{'type': 'Point', 'coordinates': (-79.46436266, 43.68254019)}"
-24804,11073,GO-2016506291,ROBBERY - OTHER,2016-03-24T00:00:00,2016,March,Thursday,24,84,18,2016-03-24T00:00:00,2016,March,Thursday,24,84,20,D12,Toronto,110,Keelesdale-Eglinton West (110),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MONGOOSE,,OT,10,BLKGRY,250.0,STOLEN,24790,"{'type': 'Point', 'coordinates': (-79.47389528, 43.68753124)}"
-24805,12163,GO-20169009164,THEFT UNDER - BICYCLE,2016-08-14T00:00:00,2016,August,Sunday,14,227,11,2016-08-21T00:00:00,2016,August,Sunday,21,234,12,D12,Toronto,110,Keelesdale-Eglinton West (110),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,,MT,8,BLK,113.0,STOLEN,24791,"{'type': 'Point', 'coordinates': (-79.46653977, 43.6865038)}"
-24806,12164,GO-20169009164,THEFT UNDER - BICYCLE,2016-08-14T00:00:00,2016,August,Sunday,14,227,11,2016-08-21T00:00:00,2016,August,Sunday,21,234,12,D12,Toronto,110,Keelesdale-Eglinton West (110),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,,MT,8,PLE,170.0,STOLEN,24792,"{'type': 'Point', 'coordinates': (-79.46653977, 43.6865038)}"
-24807,14892,GO-20209021982,FTC PROBATION ORDER,2020-08-12T00:00:00,2020,August,Wednesday,12,225,5,2020-09-01T00:00:00,2020,September,Tuesday,1,245,13,D12,Toronto,110,Keelesdale-Eglinton West (110),"Apartment (Rooming House, Condo)",Apartment,SU,,MT,10,GRY,400.0,STOLEN,24793,"{'type': 'Point', 'coordinates': (-79.47351803, 43.68665698)}"
-24808,15623,GO-20171537853,THEFT UNDER,2017-08-25T00:00:00,2017,August,Friday,25,237,10,2017-08-25T00:00:00,2017,August,Friday,25,237,12,D12,Toronto,110,Keelesdale-Eglinton West (110),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CHILDS,,OT,0,GRN,250.0,STOLEN,24794,"{'type': 'Point', 'coordinates': (-79.46471653, 43.68530253)}"
-24809,15631,GO-2018517795,THEFT UNDER - BICYCLE,2018-03-18T00:00:00,2018,March,Sunday,18,77,1,2018-03-22T00:00:00,2018,March,Thursday,22,81,8,D12,Toronto,110,Keelesdale-Eglinton West (110),"Gas Station (Self, Full, Attached Convenience)",Commercial,OTHER,,MT,4,BLUWHI,100.0,STOLEN,24795,"{'type': 'Point', 'coordinates': (-79.47155952, 43.68213676)}"
-24810,20099,GO-20201248961,THEFT UNDER - BICYCLE,2020-07-02T00:00:00,2020,July,Thursday,2,184,4,2020-07-06T00:00:00,2020,July,Monday,6,188,16,D41,Toronto,121,Oakridge (121),"Apartment (Rooming House, Condo)",Apartment,TREK,,MT,18,,,STOLEN,24870,"{'type': 'Point', 'coordinates': (-79.27835393, 43.70577046)}"
-24811,18344,GO-20149004593,THEFT UNDER,2014-06-28T00:00:00,2014,June,Saturday,28,179,11,2014-07-01T00:00:00,2014,July,Tuesday,1,182,11,D12,Toronto,110,Keelesdale-Eglinton West (110),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,RG,21,,0.0,STOLEN,24797,"{'type': 'Point', 'coordinates': (-79.47040473, 43.68545654)}"
-24812,18428,GO-20151196290,THEFT UNDER,2015-07-14T00:00:00,2015,July,Tuesday,14,195,16,2015-07-14T00:00:00,2015,July,Tuesday,14,195,21,D12,Toronto,110,Keelesdale-Eglinton West (110),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,MT,10,WHI,500.0,STOLEN,24798,"{'type': 'Point', 'coordinates': (-79.47483378, 43.68183504)}"
-24813,21459,GO-2017161434,THEFT UNDER - BICYCLE,2017-01-22T00:00:00,2017,January,Sunday,22,22,20,2017-01-26T00:00:00,2017,January,Thursday,26,26,13,D12,Toronto,110,Keelesdale-Eglinton West (110),"Apartment (Rooming House, Condo)",Apartment,DCO,ELEGANCE,RE,12,BLK,600.0,STOLEN,24799,"{'type': 'Point', 'coordinates': (-79.47155952, 43.68213676)}"
-24814,23483,GO-20179016953,THEFT UNDER - BICYCLE,2017-10-10T00:00:00,2017,October,Tuesday,10,283,21,2017-10-11T00:00:00,2017,October,Wednesday,11,284,13,D41,Toronto,124,Kennedy Park (124),Convenience Stores,Commercial,CC,CCM APEX,MT,24,WHI,600.0,STOLEN,24800,"{'type': 'Point', 'coordinates': (-79.27107722, 43.7141575)}"
-24815,25322,GO-2018963563,THEFT UNDER,2018-05-27T00:00:00,2018,May,Sunday,27,147,17,2018-05-28T00:00:00,2018,May,Monday,28,148,17,D12,Toronto,110,Keelesdale-Eglinton West (110),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SCOTT,ASPECT,MT,21,GRY,,STOLEN,24801,"{'type': 'Point', 'coordinates': (-79.46448248, 43.68405897)}"
-24816,86,GO-2017246191,B&E W'INTENT,2017-02-08T00:00:00,2017,February,Wednesday,8,39,19,2017-02-08T00:00:00,2017,February,Wednesday,8,39,21,D12,Toronto,111,Rockcliffe-Smythe (111),"Single Home, House (Attach Garage, Cottage, Mobile)",House,LAPIERRE,SPICY TEAM,MT,11,BLUWHI,10000.0,STOLEN,24802,"{'type': 'Point', 'coordinates': (-79.50009856000001, 43.67630885)}"
-24817,9604,GO-20159002881,THEFT UNDER,2015-05-19T00:00:00,2015,May,Tuesday,19,139,11,2015-05-19T00:00:00,2015,May,Tuesday,19,139,14,D41,Toronto,121,Oakridge (121),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,,MT,7,RED,300.0,STOLEN,24803,"{'type': 'Point', 'coordinates': (-79.28831806, 43.69123147)}"
-24818,87,GO-2017246191,B&E W'INTENT,2017-02-08T00:00:00,2017,February,Wednesday,8,39,19,2017-02-08T00:00:00,2017,February,Wednesday,8,39,21,D12,Toronto,111,Rockcliffe-Smythe (111),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,CARB.EXPERT 29,MT,10,REDWHI,5000.0,STOLEN,24804,"{'type': 'Point', 'coordinates': (-79.50009856000001, 43.67630885)}"
-24819,983,GO-20171091245,B&E,2017-06-18T00:00:00,2017,June,Sunday,18,169,21,2017-06-19T00:00:00,2017,June,Monday,19,170,7,D12,Toronto,111,Rockcliffe-Smythe (111),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,MASI,RC,21,BLK,750.0,STOLEN,24806,"{'type': 'Point', 'coordinates': (-79.49198254, 43.66971129)}"
-24820,984,GO-20171091245,B&E,2017-06-18T00:00:00,2017,June,Sunday,18,169,21,2017-06-19T00:00:00,2017,June,Monday,19,170,7,D12,Toronto,111,Rockcliffe-Smythe (111),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,RC,21,BLU,1700.0,STOLEN,24807,"{'type': 'Point', 'coordinates': (-79.49198254, 43.66971129)}"
-24821,985,GO-20171091245,B&E,2017-06-18T00:00:00,2017,June,Sunday,18,169,21,2017-06-19T00:00:00,2017,June,Monday,19,170,7,D12,Toronto,111,Rockcliffe-Smythe (111),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MERCIER,ROAD BIKE,OT,21,BRN,,STOLEN,24808,"{'type': 'Point', 'coordinates': (-79.49198254, 43.66971129)}"
-24822,1104,GO-20179012046,THEFT UNDER - BICYCLE,2017-08-07T00:00:00,2017,August,Monday,7,219,20,2017-08-09T00:00:00,2017,August,Wednesday,9,221,19,D11,Toronto,111,Rockcliffe-Smythe (111),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,MT,18,,100.0,STOLEN,24809,"{'type': 'Point', 'coordinates': (-79.48564049, 43.66850215)}"
-24823,1169,GO-20179012605,THEFT UNDER - BICYCLE,2017-08-16T00:00:00,2017,August,Wednesday,16,228,17,2017-08-17T00:00:00,2017,August,Thursday,17,229,9,D12,Toronto,111,Rockcliffe-Smythe (111),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,,BM,1,,75.0,STOLEN,24810,"{'type': 'Point', 'coordinates': (-79.49470837, 43.67399077)}"
-24824,1652,GO-20171856644,B&E,2017-10-13T00:00:00,2017,October,Friday,13,286,5,2017-10-13T00:00:00,2017,October,Friday,13,286,16,D12,Toronto,111,Rockcliffe-Smythe (111),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ROCKY MOUNTAIN,THIN AIR,BM,6,PLE,1600.0,STOLEN,24811,"{'type': 'Point', 'coordinates': (-79.50160986, 43.66937329000001)}"
-24825,3076,GO-20189025138,THEFT UNDER,2018-08-04T00:00:00,2018,August,Saturday,4,216,7,2018-08-04T00:00:00,2018,August,Saturday,4,216,17,D12,Toronto,111,Rockcliffe-Smythe (111),"Private Property Structure (Pool, Shed, Detached Garage)",Other,DB,BLACK MOUNTAIN,MT,10,BLK,700.0,STOLEN,24812,"{'type': 'Point', 'coordinates': (-79.48835904, 43.66788618)}"
-24826,3091,GO-20189025138,THEFT UNDER,2018-08-04T00:00:00,2018,August,Saturday,4,216,7,2018-08-04T00:00:00,2018,August,Saturday,4,216,17,D12,Toronto,111,Rockcliffe-Smythe (111),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,DIADORA MODERA,OT,21,BLK,429.0,STOLEN,24813,"{'type': 'Point', 'coordinates': (-79.48835904, 43.66788618)}"
-24827,5567,GO-20199034804,MISCHIEF UNDER,2019-10-21T00:00:00,2019,October,Monday,21,294,0,2019-10-22T00:00:00,2019,October,Tuesday,22,295,14,D12,Toronto,111,Rockcliffe-Smythe (111),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,KROSSPORT,MT,21,DBL,500.0,STOLEN,24814,"{'type': 'Point', 'coordinates': (-79.49231612, 43.68125699)}"
-24828,7767,GO-20141427259,B&E,2014-01-28T00:00:00,2014,January,Tuesday,28,28,19,2014-01-28T00:00:00,2014,January,Tuesday,28,28,19,D12,Toronto,111,Rockcliffe-Smythe (111),"Apartment (Rooming House, Condo)",Apartment,OTHER,,MT,10,BLK,,STOLEN,24815,"{'type': 'Point', 'coordinates': (-79.49412358, 43.67258753)}"
-24829,7814,GO-20141831633,THEFT UNDER,2014-04-05T00:00:00,2014,April,Saturday,5,95,1,2014-04-05T00:00:00,2014,April,Saturday,5,95,8,D12,Toronto,111,Rockcliffe-Smythe (111),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,SC,0,BLU,1000.0,STOLEN,24816,"{'type': 'Point', 'coordinates': (-79.47730364, 43.68056545)}"
-24830,7966,GO-20142145155,THEFT UNDER,2014-05-23T00:00:00,2014,May,Friday,23,143,23,2014-05-24T00:00:00,2014,May,Saturday,24,144,20,D12,Toronto,111,Rockcliffe-Smythe (111),"Private Property Structure (Pool, Shed, Detached Garage)",Other,DIAMONDBACK,,MT,0,BLK,350.0,STOLEN,24817,"{'type': 'Point', 'coordinates': (-79.49631894, 43.67210966)}"
-24831,8113,GO-20142281314,THEFT UNDER,2014-06-13T00:00:00,2014,June,Friday,13,164,0,2014-06-13T00:00:00,2014,June,Friday,13,164,10,D12,Toronto,111,Rockcliffe-Smythe (111),"Apartment (Rooming House, Condo)",Apartment,OTHER,,EL,1,PNK,750.0,STOLEN,24818,"{'type': 'Point', 'coordinates': (-79.49231612, 43.68125699)}"
-24832,8762,GO-20142781167,THEFT UNDER,2014-08-24T00:00:00,2014,August,Sunday,24,236,21,2014-08-26T00:00:00,2014,August,Tuesday,26,238,16,D12,Toronto,111,Rockcliffe-Smythe (111),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,OT,0,WHI,700.0,STOLEN,24819,"{'type': 'Point', 'coordinates': (-79.48427781, 43.68224786)}"
-24833,8889,GO-20142919304,B&E,2014-09-12T00:00:00,2014,September,Friday,12,255,20,2014-09-16T00:00:00,2014,September,Tuesday,16,259,8,D12,Toronto,111,Rockcliffe-Smythe (111),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MIELE,VENETO,MT,21,BLK,700.0,STOLEN,24820,"{'type': 'Point', 'coordinates': (-79.48174736, 43.67127561)}"
-24834,8890,GO-20142919304,B&E,2014-09-12T00:00:00,2014,September,Friday,12,255,20,2014-09-16T00:00:00,2014,September,Tuesday,16,259,8,D12,Toronto,111,Rockcliffe-Smythe (111),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MIELE,VENETO,MT,21,BLK,700.0,STOLEN,24821,"{'type': 'Point', 'coordinates': (-79.48174736, 43.67127561)}"
-24835,9369,GO-2015563498,B&E,2015-04-05T00:00:00,2015,April,Sunday,5,95,9,2015-04-06T00:00:00,2015,April,Monday,6,96,11,D12,Toronto,111,Rockcliffe-Smythe (111),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN,UNKNOWN,OT,12,SIL,350.0,STOLEN,24822,"{'type': 'Point', 'coordinates': (-79.48803863, 43.670605)}"
-24836,9428,GO-2015644777,THEFT UNDER,2015-04-18T00:00:00,2015,April,Saturday,18,108,18,2015-04-18T00:00:00,2015,April,Saturday,18,108,23,D12,Toronto,111,Rockcliffe-Smythe (111),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,SOTO,OT,10,GRYPNK,,STOLEN,24823,"{'type': 'Point', 'coordinates': (-79.49951498, 43.66690692)}"
-24837,9515,GO-2015662664,THEFT OVER,2015-04-21T00:00:00,2015,April,Tuesday,21,111,12,2015-04-22T00:00:00,2015,April,Wednesday,22,112,2,D12,Toronto,111,Rockcliffe-Smythe (111),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN,,RG,0,BLU,130.0,STOLEN,24824,"{'type': 'Point', 'coordinates': (-79.48706754, 43.67168993)}"
-24838,9964,GO-20151163447,THEFT UNDER,2014-07-01T00:00:00,2014,July,Tuesday,1,182,0,2015-07-10T00:00:00,2015,July,Friday,10,191,1,D12,Toronto,111,Rockcliffe-Smythe (111),"Apartment (Rooming House, Condo)",Apartment,OTHER,CHEROKEE,TO,18,MRN,100.0,UNKNOWN,24825,"{'type': 'Point', 'coordinates': (-79.48210041, 43.68063272)}"
-24839,10164,GO-20151335944,THEFT UNDER,2015-08-03T00:00:00,2015,August,Monday,3,215,21,2015-08-04T00:00:00,2015,August,Tuesday,4,216,21,D12,Toronto,111,Rockcliffe-Smythe (111),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,STANDARD,MT,0,PNK,150.0,STOLEN,24826,"{'type': 'Point', 'coordinates': (-79.49231612, 43.68125699)}"
-24840,10165,GO-20151335944,THEFT UNDER,2015-08-03T00:00:00,2015,August,Monday,3,215,21,2015-08-04T00:00:00,2015,August,Tuesday,4,216,21,D12,Toronto,111,Rockcliffe-Smythe (111),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,MERCURY,MT,3,BLK,500.0,STOLEN,24827,"{'type': 'Point', 'coordinates': (-79.49231612, 43.68125699)}"
-24841,10549,GO-20151670482,THEFT UNDER,2015-09-27T00:00:00,2015,September,Sunday,27,270,13,2015-09-27T00:00:00,2015,September,Sunday,27,270,13,D12,Toronto,111,Rockcliffe-Smythe (111),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,,MT,6,SILRED,50.0,STOLEN,24828,"{'type': 'Point', 'coordinates': (-79.4902546, 43.67911617)}"
-24842,10967,GO-2016202872,PROPERTY - FOUND,2016-02-03T00:00:00,2016,February,Wednesday,3,34,10,2016-02-04T00:00:00,2016,February,Thursday,4,35,8,D12,Toronto,111,Rockcliffe-Smythe (111),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,APEX 6061,MT,21,WHI,,UNKNOWN,24829,"{'type': 'Point', 'coordinates': (-79.4902546, 43.67911617)}"
-24843,11915,GO-20169007764,THEFT UNDER - BICYCLE,2016-07-22T00:00:00,2016,July,Friday,22,204,16,2016-07-26T00:00:00,2016,July,Tuesday,26,208,18,D12,Toronto,111,Rockcliffe-Smythe (111),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,CRAVE COMP,MT,20,BLK,2055.0,STOLEN,24830,"{'type': 'Point', 'coordinates': (-79.49459946, 43.67951169)}"
-24844,12158,GO-20161463208,THEFT OVER,2016-08-15T00:00:00,2016,August,Monday,15,228,22,2016-08-18T00:00:00,2016,August,Thursday,18,231,18,D12,Toronto,111,Rockcliffe-Smythe (111),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CERVELO,S5VWD,RG,10,BLK,,STOLEN,24831,"{'type': 'Point', 'coordinates': (-79.49184884, 43.68013497)}"
-24845,12159,GO-20161463208,THEFT OVER,2016-08-15T00:00:00,2016,August,Monday,15,228,22,2016-08-18T00:00:00,2016,August,Thursday,18,231,18,D12,Toronto,111,Rockcliffe-Smythe (111),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CERVELO,S5 VWD,RC,20,RED,,STOLEN,24832,"{'type': 'Point', 'coordinates': (-79.49184884, 43.68013497)}"
-24846,12160,GO-20161463208,THEFT OVER,2016-08-15T00:00:00,2016,August,Monday,15,228,22,2016-08-18T00:00:00,2016,August,Thursday,18,231,18,D12,Toronto,111,Rockcliffe-Smythe (111),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CERVELO,S1,RG,10,WHI,,STOLEN,24833,"{'type': 'Point', 'coordinates': (-79.49184884, 43.68013497)}"
-24847,12225,GO-20161534836,THEFT UNDER - BICYCLE,2016-08-29T00:00:00,2016,August,Monday,29,242,18,2016-08-29T00:00:00,2016,August,Monday,29,242,23,D12,Toronto,111,Rockcliffe-Smythe (111),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,,MT,1,BLUGRY,100.0,STOLEN,24834,"{'type': 'Point', 'coordinates': (-79.49282499000002, 43.67993057)}"
-24848,14904,GO-20209025593,THEFT UNDER,2020-10-06T00:00:00,2020,October,Tuesday,6,280,13,2020-10-06T00:00:00,2020,October,Tuesday,6,280,15,D12,Toronto,111,Rockcliffe-Smythe (111),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,,MT,21,WHI,1000.0,STOLEN,24835,"{'type': 'Point', 'coordinates': (-79.49685045, 43.66787712)}"
-24849,15317,GO-20142141495,THEFT OVER,2013-11-16T00:00:00,2013,November,Saturday,16,320,14,2014-05-24T00:00:00,2014,May,Saturday,24,144,9,D12,Toronto,111,Rockcliffe-Smythe (111),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,OT,18,BLU,1000.0,STOLEN,24836,"{'type': 'Point', 'coordinates': (-79.49770768, 43.67687141)}"
-24850,18453,GO-20151532038,B&E,2015-09-04T00:00:00,2015,September,Friday,4,247,23,2015-09-05T00:00:00,2015,September,Saturday,5,248,9,D12,Toronto,111,Rockcliffe-Smythe (111),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,EL,1,,,STOLEN,24844,"{'type': 'Point', 'coordinates': (-79.48544687, 43.67046268)}"
-24851,15373,GO-20143133695,THEFT UNDER,2014-10-16T00:00:00,2014,October,Thursday,16,289,23,2014-10-19T00:00:00,2014,October,Sunday,19,292,10,D12,Toronto,111,Rockcliffe-Smythe (111),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,KRANKED FACTOR,MT,21,BLKBRZ,400.0,STOLEN,24837,"{'type': 'Point', 'coordinates': (-79.48361966, 43.67086586)}"
-24852,18213,GO-20171014870,THEFT UNDER,2017-06-08T00:00:00,2017,June,Thursday,8,159,0,2017-06-08T00:00:00,2017,June,Thursday,8,159,6,D12,Toronto,111,Rockcliffe-Smythe (111),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,GARNEAU SL4ROAD,OT,21,BLKRED,1500.0,STOLEN,24838,"{'type': 'Point', 'coordinates': (-79.49685045, 43.66787712)}"
-24853,18214,GO-20171014870,THEFT UNDER,2017-06-08T00:00:00,2017,June,Thursday,8,159,0,2017-06-08T00:00:00,2017,June,Thursday,8,159,6,D12,Toronto,111,Rockcliffe-Smythe (111),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RALEIGH,,MT,21,BLK,700.0,STOLEN,24839,"{'type': 'Point', 'coordinates': (-79.49685045, 43.66787712)}"
-24854,18235,GO-20189021698,THEFT UNDER - BICYCLE,2018-06-09T00:00:00,2018,June,Saturday,9,160,1,2018-07-09T00:00:00,2018,July,Monday,9,190,13,D12,Toronto,111,Rockcliffe-Smythe (111),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,TRAILHEAD OS,MT,21,BLU,800.0,STOLEN,24840,"{'type': 'Point', 'coordinates': (-79.47809994, 43.67882669)}"
-24855,18238,GO-20189025138,THEFT UNDER,2018-08-04T00:00:00,2018,August,Saturday,4,216,7,2018-08-04T00:00:00,2018,August,Saturday,4,216,17,D12,Toronto,111,Rockcliffe-Smythe (111),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,DIADORA MODENA,OT,10,BLK,42999.0,STOLEN,24841,"{'type': 'Point', 'coordinates': (-79.48835904, 43.66788618)}"
-24856,18243,GO-20189034482,THEFT UNDER - BICYCLE,2018-10-15T00:00:00,2018,October,Monday,15,288,17,2018-10-17T00:00:00,2018,October,Wednesday,17,290,17,D12,Toronto,111,Rockcliffe-Smythe (111),"Open Areas (Lakes, Parks, Rivers)",Outside,CC,LUCERNE,TO,3,PLE,100.0,STOLEN,24842,"{'type': 'Point', 'coordinates': (-79.49371753, 43.67167326)}"
-24857,18396,GO-2015662664,THEFT OVER,2015-04-21T00:00:00,2015,April,Tuesday,21,111,12,2015-04-22T00:00:00,2015,April,Wednesday,22,112,2,D12,Toronto,111,Rockcliffe-Smythe (111),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,,RG,0,PLE,130.0,STOLEN,24843,"{'type': 'Point', 'coordinates': (-79.48706754, 43.67168993)}"
-24858,23590,GO-20181592117,THEFT UNDER - BICYCLE,2018-08-28T00:00:00,2018,August,Tuesday,28,240,15,2018-08-28T00:00:00,2018,August,Tuesday,28,240,15,D41,Toronto,124,Kennedy Park (124),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,MT,12,PLE,250.0,UNKNOWN,24853,"{'type': 'Point', 'coordinates': (-79.27295169, 43.72200361)}"
-24859,18454,GO-20151532038,B&E,2015-09-04T00:00:00,2015,September,Friday,4,247,23,2015-09-05T00:00:00,2015,September,Saturday,5,248,9,D12,Toronto,111,Rockcliffe-Smythe (111),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,MT,12,SIL,,STOLEN,24845,"{'type': 'Point', 'coordinates': (-79.48544687, 43.67046268)}"
-24860,18493,GO-20169005137,THEFT UNDER - BICYCLE,2016-05-28T00:00:00,2016,May,Saturday,28,149,11,2016-05-31T00:00:00,2016,May,Tuesday,31,152,11,D12,Toronto,111,Rockcliffe-Smythe (111),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,TO,15,BLU,450.0,STOLEN,24846,"{'type': 'Point', 'coordinates': (-79.47477714, 43.67964857)}"
-24861,21416,GO-20161544740,THEFT UNDER - BICYCLE,2016-08-30T00:00:00,2016,August,Tuesday,30,243,6,2016-08-31T00:00:00,2016,August,Wednesday,31,244,14,D12,Toronto,111,Rockcliffe-Smythe (111),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,12 ARIEL SPORT,MT,21,BLKPLE,300.0,STOLEN,24847,"{'type': 'Point', 'coordinates': (-79.48210041, 43.68063272)}"
-24862,21486,GO-2017937235,THEFT UNDER - BICYCLE,2017-05-27T00:00:00,2017,May,Saturday,27,147,18,2017-05-27T00:00:00,2017,May,Saturday,27,147,18,D12,Toronto,111,Rockcliffe-Smythe (111),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,,OT,23,,,STOLEN,24848,"{'type': 'Point', 'coordinates': (-79.48835408, 43.67138165)}"
-24863,10104,GO-20151270522,THEFT UNDER,2015-07-11T00:00:00,2015,July,Saturday,11,192,14,2015-07-25T00:00:00,2015,July,Saturday,25,206,16,D41,Toronto,121,Oakridge (121),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MONGOOSE,,MT,21,SIL,350.0,STOLEN,24849,"{'type': 'Point', 'coordinates': (-79.27947672, 43.70321772)}"
-24864,10222,GO-20151372344,THEFT UNDER,2015-08-06T00:00:00,2015,August,Thursday,6,218,16,2015-08-10T00:00:00,2015,August,Monday,10,222,19,D41,Toronto,121,Oakridge (121),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,E-BIKE,EL,1,WHI,550.0,STOLEN,24850,"{'type': 'Point', 'coordinates': (-79.28707569, 43.69150236)}"
-24865,10248,GO-20151397906,THEFT UNDER,2015-08-13T00:00:00,2015,August,Thursday,13,225,21,2015-08-14T00:00:00,2015,August,Friday,14,226,19,D41,Toronto,121,Oakridge (121),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,RC,1,BLK,1000.0,STOLEN,24851,"{'type': 'Point', 'coordinates': (-79.28898153, 43.69286837)}"
-24866,10442,GO-20159007013,THEFT UNDER,2015-09-10T00:00:00,2015,September,Thursday,10,253,22,2015-09-11T00:00:00,2015,September,Friday,11,254,1,D41,Toronto,121,Oakridge (121),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,21,BLK,400.0,STOLEN,24852,"{'type': 'Point', 'coordinates': (-79.27219206000001, 43.69675989)}"
-24867,10502,GO-20159007451,THEFT UNDER,2015-09-21T00:00:00,2015,September,Monday,21,264,0,2015-09-21T00:00:00,2015,September,Monday,21,264,16,D41,Toronto,121,Oakridge (121),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,M 4.5 SAVAGE,OT,18,BLK,500.0,STOLEN,24854,"{'type': 'Point', 'coordinates': (-79.28153306, 43.6912405)}"
-24868,10545,GO-20151668705,THEFT UNDER,2015-09-27T00:00:00,2015,September,Sunday,27,270,4,2015-09-27T00:00:00,2015,September,Sunday,27,270,4,D41,Toronto,121,Oakridge (121),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KUWAHARA,,RC,15,BLK,2500.0,STOLEN,24855,"{'type': 'Point', 'coordinates': (-79.27892134, 43.693309570000004)}"
-24869,11056,GO-2016461125,THEFT UNDER,2016-03-16T00:00:00,2016,March,Wednesday,16,76,14,2016-03-17T00:00:00,2016,March,Thursday,17,77,12,D41,Toronto,121,Oakridge (121),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,AMIGO,EL,3,BRN,,STOLEN,24856,"{'type': 'Point', 'coordinates': (-79.28865609000002, 43.69208636)}"
-24870,13718,GO-20179016102,THEFT UNDER - BICYCLE,2017-08-23T00:00:00,2017,August,Wednesday,23,235,14,2017-09-29T00:00:00,2017,September,Friday,29,272,12,D41,Toronto,121,Oakridge (121),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,BASIC 3-SPEED,RG,3,WHI,700.0,STOLEN,24857,"{'type': 'Point', 'coordinates': (-79.28707569, 43.69150236)}"
-24871,14383,GO-20142427330,THEFT UNDER,2014-07-02T00:00:00,2014,July,Wednesday,2,183,12,2014-07-04T00:00:00,2014,July,Friday,4,185,9,D41,Toronto,121,Oakridge (121),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,AVENGER,EL,3,BRN,800.0,STOLEN,24858,"{'type': 'Point', 'coordinates': (-79.27823005, 43.69903669)}"
-24872,14404,GO-20142741558,THEFT UNDER,2014-08-06T00:00:00,2014,August,Wednesday,6,218,15,2014-08-20T00:00:00,2014,August,Wednesday,20,232,18,D41,Toronto,121,Oakridge (121),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NEXT,,MT,18,GRYGRN,110.0,STOLEN,24859,"{'type': 'Point', 'coordinates': (-79.28831806, 43.69123147)}"
-24873,16724,GO-20182100483,PROPERTY - FOUND,2018-11-10T00:00:00,2018,November,Saturday,10,314,12,2018-11-13T00:00:00,2018,November,Tuesday,13,317,12,D41,Toronto,121,Oakridge (121),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,MIELE,,MT,21,BLK,,UNKNOWN,24860,"{'type': 'Point', 'coordinates': (-79.28153306, 43.6912405)}"
-24874,16730,GO-20182380584,THEFT OF EBIKE UNDER $5000,2018-12-29T00:00:00,2018,December,Saturday,29,363,8,2018-12-29T00:00:00,2018,December,Saturday,29,363,17,D41,Toronto,121,Oakridge (121),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,SOLOROCK,EL,16,BLK,1000.0,STOLEN,24861,"{'type': 'Point', 'coordinates': (-79.27996661, 43.6986537)}"
-24875,16770,GO-20199018833,THEFT UNDER,2019-06-08T00:00:00,2019,June,Saturday,8,159,18,2019-06-16T00:00:00,2019,June,Sunday,16,167,14,D41,Toronto,121,Oakridge (121),"Open Areas (Lakes, Parks, Rivers)",Outside,SU,,MT,10,BLK,140.0,STOLEN,24862,"{'type': 'Point', 'coordinates': (-79.28348901000001, 43.6953794)}"
-24876,16953,GO-20171293903,THEFT OF EBIKE UNDER $5000,2017-07-19T00:00:00,2017,July,Wednesday,19,200,3,2017-07-19T00:00:00,2017,July,Wednesday,19,200,8,D41,Toronto,121,Oakridge (121),"Single Home, House (Attach Garage, Cottage, Mobile)",House,EMMO,EBIKE,EL,1,BLKONG,1800.0,STOLEN,24863,"{'type': 'Point', 'coordinates': (-79.28445991, 43.69083097)}"
-24877,16981,GO-20171672658,THEFT UNDER,2017-09-14T00:00:00,2017,September,Thursday,14,257,6,2017-09-15T00:00:00,2017,September,Friday,15,258,10,D41,Toronto,121,Oakridge (121),"Apartment (Rooming House, Condo)",Apartment,EMMO,,EL,0,BLK,1100.0,STOLEN,24864,"{'type': 'Point', 'coordinates': (-79.27947672, 43.70321772)}"
-24878,17107,GO-20189032380,THEFT UNDER,2018-09-29T00:00:00,2018,September,Saturday,29,272,7,2018-09-29T00:00:00,2018,September,Saturday,29,272,19,D41,Toronto,121,Oakridge (121),Ttc Subway Station,Transit,UK,GS29,MT,21,BLK,149.0,STOLEN,24865,"{'type': 'Point', 'coordinates': (-79.28898153, 43.69286837)}"
-24879,17168,GO-20159006898,THEFT UNDER,2015-09-08T00:00:00,2015,September,Tuesday,8,251,21,2015-09-09T00:00:00,2015,September,Wednesday,9,252,9,D41,Toronto,121,Oakridge (121),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,,MT,6,,0.0,STOLEN,24866,"{'type': 'Point', 'coordinates': (-79.27166379, 43.6983992)}"
-24880,17430,GO-20142218764,THEFT UNDER,2014-06-03T00:00:00,2014,June,Tuesday,3,154,17,2014-06-04T00:00:00,2014,June,Wednesday,4,155,11,D41,Toronto,121,Oakridge (121),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,MT,16,BLUYEL,,STOLEN,24867,"{'type': 'Point', 'coordinates': (-79.27361046, 43.694364240000006)}"
-24881,20056,GO-20199022136,THEFT UNDER,2019-07-08T00:00:00,2019,July,Monday,8,189,8,2019-07-13T00:00:00,2019,July,Saturday,13,194,11,D41,Toronto,121,Oakridge (121),Ttc Subway Station,Transit,TR,4300,MT,18,BLU,400.0,STOLEN,24868,"{'type': 'Point', 'coordinates': (-79.28898153, 43.69286837)}"
-24882,20074,GO-20191919894,THEFT UNDER,2019-10-05T00:00:00,2019,October,Saturday,5,278,8,2019-10-05T00:00:00,2019,October,Saturday,5,278,12,D41,Toronto,121,Oakridge (121),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,UNKNOWN,SC,6,BLKRED,2000.0,STOLEN,24869,"{'type': 'Point', 'coordinates': (-79.28580434, 43.69177522)}"
-24883,20114,GO-20201572736,THEFT UNDER - BICYCLE,2020-08-14T00:00:00,2020,August,Friday,14,227,19,2020-08-21T00:00:00,2020,August,Friday,21,234,12,D41,Toronto,121,Oakridge (121),Ttc Street Car,Transit,CCM,29ER,MT,21,BLKWHI,700.0,STOLEN,24871,"{'type': 'Point', 'coordinates': (-79.28898153, 43.69286837)}"
-24884,20272,GO-20172048060,THEFT OF EBIKE UNDER $5000,2017-11-12T00:00:00,2017,November,Sunday,12,316,12,2017-11-12T00:00:00,2017,November,Sunday,12,316,13,D41,Toronto,121,Oakridge (121),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,UNKNOWN,EL,0,BLK,1000.0,STOLEN,24872,"{'type': 'Point', 'coordinates': (-79.28123898, 43.69589007)}"
-24885,20291,GO-20189012763,THEFT UNDER - BICYCLE,2018-03-27T00:00:00,2018,March,Tuesday,27,86,12,2018-04-25T00:00:00,2018,April,Wednesday,25,115,8,D41,Toronto,121,Oakridge (121),Ttc Subway Station,Transit,UK,,RC,40,BLK,90.0,STOLEN,24873,"{'type': 'Point', 'coordinates': (-79.28898153, 43.69286837)}"
-24886,20333,GO-20181314566,THEFT OF EBIKE UNDER $5000,2018-07-18T00:00:00,2018,July,Wednesday,18,199,22,2018-07-18T00:00:00,2018,July,Wednesday,18,199,22,D41,Toronto,121,Oakridge (121),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,UNKNOWN,EL,40,BLK,275.0,STOLEN,24874,"{'type': 'Point', 'coordinates': (-79.28107824, 43.69281716)}"
-24887,20394,GO-20151017773,THEFT UNDER,2015-06-16T00:00:00,2015,June,Tuesday,16,167,17,2015-06-17T00:00:00,2015,June,Wednesday,17,168,14,D41,Toronto,121,Oakridge (121),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,IRON HORSE,MAVRICK,RG,21,BLK,400.0,STOLEN,24875,"{'type': 'Point', 'coordinates': (-79.2853427, 43.69063669)}"
-24888,20397,GO-20151061031,PROPERTY - FOUND,2015-06-24T00:00:00,2015,June,Wednesday,24,175,3,2015-06-24T00:00:00,2015,June,Wednesday,24,175,4,D41,Toronto,121,Oakridge (121),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,XTI-21,MT,99,,,UNKNOWN,24876,"{'type': 'Point', 'coordinates': (-79.28898153, 43.69286837)}"
-24889,20458,GO-20151953361,B&E,2015-11-14T00:00:00,2015,November,Saturday,14,318,0,2015-11-14T00:00:00,2015,November,Saturday,14,318,0,D41,Toronto,121,Oakridge (121),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TREK,4300,MT,24,BLKGRY,,UNKNOWN,24877,"{'type': 'Point', 'coordinates': (-79.28333836, 43.69232938)}"
-24890,20508,GO-20169007209,THEFT UNDER,2016-07-14T00:00:00,2016,July,Thursday,14,196,2,2016-07-14T00:00:00,2016,July,Thursday,14,196,19,D41,Toronto,121,Oakridge (121),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,SC 1800,MT,18,BLK,100.0,STOLEN,24878,"{'type': 'Point', 'coordinates': (-79.2853427, 43.69063669)}"
-24891,20512,GO-20161294711,THEFT UNDER - BICYCLE,2016-07-19T00:00:00,2016,July,Tuesday,19,201,8,2016-07-23T00:00:00,2016,July,Saturday,23,205,16,D41,Toronto,121,Oakridge (121),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,HARO,,OT,1,BLK,125.0,STOLEN,24879,"{'type': 'Point', 'coordinates': (-79.28898153, 43.69286837)}"
-24892,20892,GO-20149005248,THEFT UNDER,2014-07-22T00:00:00,2014,July,Tuesday,22,203,18,2014-07-22T00:00:00,2014,July,Tuesday,22,203,22,D41,Toronto,121,Oakridge (121),Ttc Subway Station,Transit,SC,,MT,21,BLK,100.0,STOLEN,24880,"{'type': 'Point', 'coordinates': (-79.28898153, 43.69286837)}"
-24893,23285,GO-20199021503,THEFT UNDER,2019-07-08T00:00:00,2019,July,Monday,8,189,7,2019-07-08T00:00:00,2019,July,Monday,8,189,18,D41,Toronto,121,Oakridge (121),Ttc Subway Station,Transit,RA,,MT,30,SIL,0.0,STOLEN,24881,"{'type': 'Point', 'coordinates': (-79.28898153, 43.69286837)}"
-24894,23294,GO-20199025565,THEFT UNDER,2019-08-08T00:00:00,2019,August,Thursday,8,220,17,2019-08-09T00:00:00,2019,August,Friday,9,221,18,D41,Toronto,121,Oakridge (121),"Apartment (Rooming House, Condo)",Apartment,CC,MOUNTAIN BIKE,MT,7,GRY,260.0,STOLEN,24882,"{'type': 'Point', 'coordinates': (-79.28675501, 43.6948339)}"
-24895,23295,GO-20191532394,PROPERTY - FOUND,2019-08-12T00:00:00,2019,August,Monday,12,224,21,2019-08-13T00:00:00,2019,August,Tuesday,13,225,7,D41,Toronto,121,Oakridge (121),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,DAYMAK,SC,0,RED,,UNKNOWN,24883,"{'type': 'Point', 'coordinates': (-79.27441185, 43.69628178)}"
-24896,23368,GO-20209029987,THEFT UNDER - BICYCLE,2020-11-18T00:00:00,2020,November,Wednesday,18,323,17,2020-11-18T00:00:00,2020,November,Wednesday,18,323,18,D41,Toronto,121,Oakridge (121),Convenience Stores,Commercial,CC,29ER,MT,21,BLK,300.0,STOLEN,24884,"{'type': 'Point', 'coordinates': (-79.27892134, 43.693309570000004)}"
-24897,23516,GO-20189012821,THEFT UNDER - BICYCLE,2018-04-24T00:00:00,2018,April,Tuesday,24,114,15,2018-04-25T00:00:00,2018,April,Wednesday,25,115,19,D41,Toronto,121,Oakridge (121),Ttc Subway Station,Transit,OT,CROSSOVER,TO,21,GRY,800.0,STOLEN,24885,"{'type': 'Point', 'coordinates': (-79.28898153, 43.69286837)}"
-24898,23540,GO-20181093477,THEFT UNDER,2018-06-14T00:00:00,2018,June,Thursday,14,165,3,2018-06-16T00:00:00,2018,June,Saturday,16,167,12,D41,Toronto,121,Oakridge (121),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,,OT,0,GRY,100.0,STOLEN,24886,"{'type': 'Point', 'coordinates': (-79.27947672, 43.70321772)}"
-24899,20065,GO-20191485584,THEFT UNDER - BICYCLE,2019-08-06T00:00:00,2019,August,Tuesday,6,218,6,2019-08-06T00:00:00,2019,August,Tuesday,6,218,17,D41,Toronto,125,Ionview (125),Go Station,Transit,TREK,MARLIN 5,MT,10,ONGBLK,800.0,STOLEN,24943,"{'type': 'Point', 'coordinates': (-79.27781936, 43.7299613)}"
-24900,23625,GO-20151181656,PROPERTY - FOUND,2015-07-12T00:00:00,2015,July,Sunday,12,193,19,2015-07-12T00:00:00,2015,July,Sunday,12,193,19,D41,Toronto,121,Oakridge (121),"Gas Station (Self, Full, Attached Convenience)",Commercial,RALEIGH,SUMMIT,MT,21,GRY,150.0,UNKNOWN,24887,"{'type': 'Point', 'coordinates': (-79.28831806, 43.69123147)}"
-24901,23657,GO-20159008092,THEFT UNDER,2015-10-03T00:00:00,2015,October,Saturday,3,276,0,2015-10-03T00:00:00,2015,October,Saturday,3,276,18,D41,Toronto,121,Oakridge (121),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,KING KONG,EL,50,BLK,2000.0,STOLEN,24888,"{'type': 'Point', 'coordinates': (-79.27835393, 43.70577046)}"
-24902,23749,GO-20161602483,THEFT FROM MOTOR VEHICLE UNDER,2016-08-27T00:00:00,2016,August,Saturday,27,240,8,2016-09-09T00:00:00,2016,September,Friday,9,253,14,D41,Toronto,121,Oakridge (121),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,ACQUILA,RG,21,MRN,500.0,STOLEN,24889,"{'type': 'Point', 'coordinates': (-79.28279671, 43.69666126)}"
-24903,191,GO-20179004142,THEFT UNDER,2017-03-10T00:00:00,2017,March,Friday,10,69,11,2017-04-03T00:00:00,2017,April,Monday,3,93,11,D41,Toronto,122,Birchcliffe-Cliffside (122),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,STEALTH,MT,21,BLK,550.0,STOLEN,24890,"{'type': 'Point', 'coordinates': (-79.26053392, 43.70722288)}"
-24904,546,GO-20179007604,THEFT UNDER - BICYCLE,2017-04-23T00:00:00,2017,April,Sunday,23,113,21,2017-06-06T00:00:00,2017,June,Tuesday,6,157,13,D41,Toronto,122,Birchcliffe-Cliffside (122),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UK,,TA,10,BLU,3000.0,STOLEN,24891,"{'type': 'Point', 'coordinates': (-79.25674973, 43.69755368)}"
-24905,639,GO-20171087724,B&E,2017-06-17T00:00:00,2017,June,Saturday,17,168,19,2017-06-18T00:00:00,2017,June,Sunday,18,169,15,D41,Toronto,122,Birchcliffe-Cliffside (122),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,MT,18,,400.0,STOLEN,24892,"{'type': 'Point', 'coordinates': (-79.25558572, 43.70818331)}"
-24906,640,GO-20171087724,B&E,2017-06-17T00:00:00,2017,June,Saturday,17,168,19,2017-06-18T00:00:00,2017,June,Sunday,18,169,15,D41,Toronto,122,Birchcliffe-Cliffside (122),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,,TO,18,,400.0,STOLEN,24893,"{'type': 'Point', 'coordinates': (-79.25558572, 43.70818331)}"
-24907,717,GO-20171141239,THEFT OF EBIKE OVER $5000,2017-06-26T00:00:00,2017,June,Monday,26,177,0,2017-06-26T00:00:00,2017,June,Monday,26,177,12,D41,Toronto,122,Birchcliffe-Cliffside (122),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,EL,0,,,STOLEN,24894,"{'type': 'Point', 'coordinates': (-79.24836465, 43.70828682)}"
-24908,1051,GO-20171409360,THEFT OF EBIKE UNDER $5000,2017-08-01T00:00:00,2017,August,Tuesday,1,213,5,2017-08-05T00:00:00,2017,August,Saturday,5,217,14,D41,Toronto,122,Birchcliffe-Cliffside (122),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,,EL,1,WHI,1500.0,STOLEN,24895,"{'type': 'Point', 'coordinates': (-79.26371677, 43.69644295)}"
-24909,1195,GO-20171484537,THEFT UNDER - BICYCLE,2017-08-14T00:00:00,2017,August,Monday,14,226,15,2017-08-21T00:00:00,2017,August,Monday,21,233,14,D41,Toronto,122,Birchcliffe-Cliffside (122),Go Station,Transit,CCM,APEX,MT,24,WHI,650.0,STOLEN,24896,"{'type': 'Point', 'coordinates': (-79.25574196, 43.71776452)}"
-24910,1919,GO-20173131700,THEFT UNDER,2017-12-04T00:00:00,2017,December,Monday,4,338,14,2017-12-04T00:00:00,2017,December,Monday,4,338,19,D41,Toronto,122,Birchcliffe-Cliffside (122),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,SC,0,BLK,,STOLEN,24897,"{'type': 'Point', 'coordinates': (-79.25380901, 43.6994699)}"
-24911,2684,GO-20189020297,THEFT UNDER - BICYCLE,2018-06-25T00:00:00,2018,June,Monday,25,176,8,2018-06-26T00:00:00,2018,June,Tuesday,26,177,9,D41,Toronto,122,Birchcliffe-Cliffside (122),Go Station,Transit,OT,,RC,30,BLU,500.0,STOLEN,24898,"{'type': 'Point', 'coordinates': (-79.25574196, 43.71776452)}"
-24912,3287,GO-20189027479,THEFT UNDER - BICYCLE,2018-08-12T00:00:00,2018,August,Sunday,12,224,21,2018-08-22T00:00:00,2018,August,Wednesday,22,234,13,D41,Toronto,122,Birchcliffe-Cliffside (122),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,,MT,27,,700.0,STOLEN,24899,"{'type': 'Point', 'coordinates': (-79.28393123, 43.68745172)}"
-24913,3516,GO-20189031159,THEFT UNDER,2018-09-18T00:00:00,2018,September,Tuesday,18,261,14,2018-09-19T00:00:00,2018,September,Wednesday,19,262,15,D41,Toronto,122,Birchcliffe-Cliffside (122),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,,RG,10,BLU,200.0,STOLEN,24900,"{'type': 'Point', 'coordinates': (-79.27700102, 43.68819406)}"
-24914,3517,GO-20189031193,THEFT UNDER,2018-09-19T00:00:00,2018,September,Wednesday,19,262,8,2018-09-19T00:00:00,2018,September,Wednesday,19,262,21,D41,Toronto,122,Birchcliffe-Cliffside (122),Go Station,Transit,NO,,MT,24,BLK,350.0,STOLEN,24901,"{'type': 'Point', 'coordinates': (-79.25574196, 43.71776452)}"
-24915,4097,GO-2019484740,THEFT UNDER - BICYCLE,2018-12-01T00:00:00,2018,December,Saturday,1,335,10,2019-03-19T00:00:00,2019,March,Tuesday,19,78,17,D41,Toronto,122,Birchcliffe-Cliffside (122),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,DIVERGE,OT,18,BLK,1234.0,STOLEN,24902,"{'type': 'Point', 'coordinates': (-79.28137816, 43.68143052)}"
-24916,4355,GO-2019967318,B&E,2019-05-26T00:00:00,2019,May,Sunday,26,146,19,2019-05-27T00:00:00,2019,May,Monday,27,147,8,D41,Toronto,122,Birchcliffe-Cliffside (122),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,,RG,15,BLK,1300.0,STOLEN,24903,"{'type': 'Point', 'coordinates': (-79.25013824, 43.70377233)}"
-24917,4856,GO-20199023501,THEFT UNDER,2019-07-22T00:00:00,2019,July,Monday,22,203,20,2019-07-24T00:00:00,2019,July,Wednesday,24,205,11,D41,Toronto,122,Birchcliffe-Cliffside (122),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,ESCAPE,OT,21,BLK,400.0,STOLEN,24904,"{'type': 'Point', 'coordinates': (-79.2826472, 43.68438592)}"
-24918,4955,GO-20199024689,THEFT UNDER,2019-08-01T00:00:00,2019,August,Thursday,1,213,8,2019-08-01T00:00:00,2019,August,Thursday,1,213,19,D41,Toronto,122,Birchcliffe-Cliffside (122),Go Station,Transit,GI,CONTEND 3 2019,RC,16,BLK,900.0,STOLEN,24905,"{'type': 'Point', 'coordinates': (-79.25574196, 43.71776452)}"
-24919,6048,GO-2020702469,B&E,2020-04-10T00:00:00,2020,April,Friday,10,101,0,2020-04-11T00:00:00,2020,April,Saturday,11,102,15,D41,Toronto,122,Birchcliffe-Cliffside (122),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,MT,18,,,STOLEN,24906,"{'type': 'Point', 'coordinates': (-79.27700102, 43.68819406)}"
-24920,6049,GO-2020702469,B&E,2020-04-10T00:00:00,2020,April,Friday,10,101,0,2020-04-11T00:00:00,2020,April,Saturday,11,102,15,D41,Toronto,122,Birchcliffe-Cliffside (122),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,MT,18,,,STOLEN,24907,"{'type': 'Point', 'coordinates': (-79.27700102, 43.68819406)}"
-24921,6082,GO-20209011532,THEFT UNDER,2020-04-19T00:00:00,2020,April,Sunday,19,110,8,2020-04-20T00:00:00,2020,April,Monday,20,111,10,D41,Toronto,122,Birchcliffe-Cliffside (122),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,UK,,MT,10,OTH,0.0,STOLEN,24908,"{'type': 'Point', 'coordinates': (-79.24836465, 43.70828682)}"
-24922,6758,GO-20209018681,THEFT UNDER,2020-07-23T00:00:00,2020,July,Thursday,23,205,14,2020-07-27T00:00:00,2020,July,Monday,27,209,13,D41,Toronto,122,Birchcliffe-Cliffside (122),"Apartment (Rooming House, Condo)",Apartment,OT,MIELE,RC,12,BLK,500.0,STOLEN,24909,"{'type': 'Point', 'coordinates': (-79.27746243, 43.67513962)}"
-24923,6829,GO-20201434162,B&E,2020-07-29T00:00:00,2020,July,Wednesday,29,211,13,2020-08-01T00:00:00,2020,August,Saturday,1,214,14,D41,Toronto,122,Birchcliffe-Cliffside (122),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FELT,VERZUS II,MT,21,GLDWHI,1000.0,STOLEN,24910,"{'type': 'Point', 'coordinates': (-79.2789749, 43.686786860000005)}"
-24924,6865,GO-20201434162,B&E,2020-07-29T00:00:00,2020,July,Wednesday,29,211,13,2020-08-01T00:00:00,2020,August,Saturday,1,214,14,D41,Toronto,122,Birchcliffe-Cliffside (122),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,OT,12,SIL,1000.0,STOLEN,24911,"{'type': 'Point', 'coordinates': (-79.2789749, 43.686786860000005)}"
-24925,7495,GO-20201977639,B&E,2020-10-09T00:00:00,2020,October,Friday,9,283,2,2020-10-18T00:00:00,2020,October,Sunday,18,292,14,D41,Toronto,122,Birchcliffe-Cliffside (122),"Apartment (Rooming House, Condo)",Apartment,GIANT,,OT,0,WHI,500.0,STOLEN,24912,"{'type': 'Point', 'coordinates': (-79.27434979, 43.68540034)}"
-24926,8490,GO-20142567426,THEFT UNDER,2014-07-24T00:00:00,2014,July,Thursday,24,205,12,2014-07-25T00:00:00,2014,July,Friday,25,206,8,D41,Toronto,122,Birchcliffe-Cliffside (122),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MERCEDES BENZ,,EL,0,BLK,1780.0,STOLEN,24913,"{'type': 'Point', 'coordinates': (-79.26312305, 43.69504836)}"
-24927,8616,GO-20149005713,THEFT UNDER,2014-08-07T00:00:00,2014,August,Thursday,7,219,8,2014-08-07T00:00:00,2014,August,Thursday,7,219,18,D41,Toronto,122,Birchcliffe-Cliffside (122),Go Station,Transit,GI,,RG,24,,600.0,STOLEN,24914,"{'type': 'Point', 'coordinates': (-79.25574196, 43.71776452)}"
-24928,9119,GO-20143189783,THEFT FROM MOTOR VEHICLE UNDER,2014-10-22T00:00:00,2014,October,Wednesday,22,295,18,2014-10-28T00:00:00,2014,October,Tuesday,28,301,7,D41,Toronto,122,Birchcliffe-Cliffside (122),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,MT,12,WHIRED,750.0,STOLEN,24915,"{'type': 'Point', 'coordinates': (-79.28402002, 43.68081049)}"
-24929,9164,GO-20143271078,THEFT UNDER,2014-11-09T00:00:00,2014,November,Sunday,9,313,20,2014-11-09T00:00:00,2014,November,Sunday,9,313,20,D41,Toronto,122,Birchcliffe-Cliffside (122),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,DAYMAK,MONTE CARLO,EL,0,RED,1500.0,STOLEN,24916,"{'type': 'Point', 'coordinates': (-79.2495251, 43.70041455)}"
-24930,9302,GO-2015332644,THEFT UNDER,2015-02-05T00:00:00,2015,February,Thursday,5,36,11,2015-02-25T00:00:00,2015,February,Wednesday,25,56,19,D41,Toronto,122,Birchcliffe-Cliffside (122),"Religious Facilities (Synagogue, Church, Convent, Mosque)",Other,FORTRESS,1700,SC,0,BLK,3500.0,STOLEN,24917,"{'type': 'Point', 'coordinates': (-79.25951114000001, 43.69865707000001)}"
-24931,9468,GO-20159002217,THEFT UNDER,2015-04-24T00:00:00,2015,April,Friday,24,114,16,2015-04-24T00:00:00,2015,April,Friday,24,114,22,D41,Toronto,122,Birchcliffe-Cliffside (122),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,RAPID 3,RC,24,WHI,700.0,STOLEN,24918,"{'type': 'Point', 'coordinates': (-79.25674973, 43.69755368)}"
-24932,9535,GO-20159002491,THEFT UNDER,2015-05-05T00:00:00,2015,May,Tuesday,5,125,10,2015-05-06T00:00:00,2015,May,Wednesday,6,126,11,D41,Toronto,122,Birchcliffe-Cliffside (122),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,FO,20,BLK,1500.0,STOLEN,24919,"{'type': 'Point', 'coordinates': (-79.26685038, 43.68583652)}"
-24933,9870,GO-20151066929,THEFT UNDER,2015-06-24T00:00:00,2015,June,Wednesday,24,175,20,2015-06-24T00:00:00,2015,June,Wednesday,24,175,23,D41,Toronto,122,Birchcliffe-Cliffside (122),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ROCKY MOUNTAIN,,MT,21,BLK,1200.0,STOLEN,24920,"{'type': 'Point', 'coordinates': (-79.28620952, 43.68609933)}"
-24934,10683,GO-20151830176,B&E,2015-10-12T00:00:00,2015,October,Monday,12,285,0,2015-10-24T00:00:00,2015,October,Saturday,24,297,13,D41,Toronto,122,Birchcliffe-Cliffside (122),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KLEIN,,MT,6,,3500.0,STOLEN,24921,"{'type': 'Point', 'coordinates': (-79.27101561, 43.69329697)}"
-24935,10684,GO-20151830176,B&E,2015-10-12T00:00:00,2015,October,Monday,12,285,0,2015-10-24T00:00:00,2015,October,Saturday,24,297,13,D41,Toronto,122,Birchcliffe-Cliffside (122),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DEVINCI,,MT,6,,1000.0,STOLEN,24922,"{'type': 'Point', 'coordinates': (-79.27101561, 43.69329697)}"
-24936,10816,GO-20159010230,THEFT UNDER,2015-11-25T00:00:00,2015,November,Wednesday,25,329,18,2015-11-26T00:00:00,2015,November,Thursday,26,330,14,D41,Toronto,122,Birchcliffe-Cliffside (122),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,RE,5,ONG,900.0,STOLEN,24923,"{'type': 'Point', 'coordinates': (-79.26471189, 43.69147863)}"
-24937,10853,GO-20152008066,PROPERTY - FOUND,2015-11-23T00:00:00,2015,November,Monday,23,327,8,2015-11-23T00:00:00,2015,November,Monday,23,327,8,D41,Toronto,122,Birchcliffe-Cliffside (122),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KONA,SMOKE,MT,21,BLK,,UNKNOWN,24924,"{'type': 'Point', 'coordinates': (-79.26337957, 43.69840328)}"
-24938,11364,GO-2016896750,THEFT UNDER - BICYCLE,2016-05-24T00:00:00,2016,May,Tuesday,24,145,20,2016-05-24T00:00:00,2016,May,Tuesday,24,145,20,D41,Toronto,122,Birchcliffe-Cliffside (122),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,UNKNOWN,MT,0,,300.0,STOLEN,24925,"{'type': 'Point', 'coordinates': (-79.28402002, 43.68081049)}"
-24939,23591,GO-20181592117,THEFT UNDER - BICYCLE,2018-08-28T00:00:00,2018,August,Tuesday,28,240,15,2018-08-28T00:00:00,2018,August,Tuesday,28,240,15,D41,Toronto,124,Kennedy Park (124),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,MT,12,WHI,,UNKNOWN,24926,"{'type': 'Point', 'coordinates': (-79.27295169, 43.72200361)}"
-24940,23608,GO-2015935925,THEFT UNDER,2015-04-29T00:00:00,2015,April,Wednesday,29,119,15,2015-06-05T00:00:00,2015,June,Friday,5,156,17,D41,Toronto,124,Kennedy Park (124),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,WOODY,OT,0,GRN,,STOLEN,24927,"{'type': 'Point', 'coordinates': (-79.25754847000002, 43.73327278)}"
-24941,23620,GO-20151138230,THEFT UNDER,2015-07-06T00:00:00,2015,July,Monday,6,187,7,2015-07-06T00:00:00,2015,July,Monday,6,187,12,D41,Toronto,124,Kennedy Park (124),"Apartment (Rooming House, Condo)",Apartment,CCM,,RG,0,PLE,100.0,RECOVERED,24928,"{'type': 'Point', 'coordinates': (-79.26351926, 43.72195748)}"
-24942,23693,GO-2016813632,THEFT UNDER - BICYCLE,2016-05-06T00:00:00,2016,May,Friday,6,127,17,2016-05-12T00:00:00,2016,May,Thursday,12,133,3,D41,Toronto,124,Kennedy Park (124),"Apartment (Rooming House, Condo)",Apartment,OTHER,METRO,RG,1,SIL,300.0,STOLEN,24929,"{'type': 'Point', 'coordinates': (-79.25259043, 43.72738912)}"
-24943,23977,GO-2015636557,THEFT UNDER,2015-04-17T00:00:00,2015,April,Friday,17,107,14,2015-04-17T00:00:00,2015,April,Friday,17,107,16,D41,Toronto,124,Kennedy Park (124),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FORTRESS,1700,SC,1,BLU,1000.0,STOLEN,24930,"{'type': 'Point', 'coordinates': (-79.25440625, 43.72916629)}"
-24944,1372,GO-20171653228,B&E,2017-09-11T00:00:00,2017,September,Monday,11,254,22,2017-09-12T00:00:00,2017,September,Tuesday,12,255,13,D41,Toronto,125,Ionview (125),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,UNK,MT,18,GLD,500.0,STOLEN,24931,"{'type': 'Point', 'coordinates': (-79.27032727, 43.73505021)}"
-24945,2397,GO-201895228,PROPERTY - FOUND,2018-05-26T00:00:00,2018,May,Saturday,26,146,22,2018-05-26T00:00:00,2018,May,Saturday,26,146,22,D41,Toronto,125,Ionview (125),"Open Areas (Lakes, Parks, Rivers)",Outside,BRODIE,DYNAMO,MT,8,ONG,500.0,UNKNOWN,24932,"{'type': 'Point', 'coordinates': (-79.27781936, 43.7299613)}"
-24946,4873,GO-20199023619,THEFT UNDER,2019-07-24T00:00:00,2019,July,Wednesday,24,205,18,2019-07-24T00:00:00,2019,July,Wednesday,24,205,22,D41,Toronto,125,Ionview (125),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,COLUMBIA RAMBLE,RG,30,RED,148.0,STOLEN,24933,"{'type': 'Point', 'coordinates': (-79.27886224, 43.73286173)}"
-24947,4952,GO-20191458049,B&E,2019-08-01T00:00:00,2019,August,Thursday,1,213,14,2019-08-02T00:00:00,2019,August,Friday,2,214,17,D41,Toronto,125,Ionview (125),"Private Property Structure (Pool, Shed, Detached Garage)",Other,ZZZ,,RG,0,DBL,,STOLEN,24934,"{'type': 'Point', 'coordinates': (-79.26573107, 43.73641808)}"
-24948,4953,GO-20191458049,B&E,2019-08-01T00:00:00,2019,August,Thursday,1,213,14,2019-08-02T00:00:00,2019,August,Friday,2,214,17,D41,Toronto,125,Ionview (125),"Private Property Structure (Pool, Shed, Detached Garage)",Other,ZZZ,,RG,0,BLUWHI,200.0,STOLEN,24935,"{'type': 'Point', 'coordinates': (-79.26573107, 43.73641808)}"
-24949,5833,GO-2020100648,THEFT UNDER - BICYCLE,2020-01-13T00:00:00,2020,January,Monday,13,13,21,2020-01-15T00:00:00,2020,January,Wednesday,15,15,17,D41,Toronto,125,Ionview (125),Bar / Restaurant,Commercial,DAYMAK,EM1,EL,3,GRY,3500.0,STOLEN,24936,"{'type': 'Point', 'coordinates': (-79.26789116, 43.73220089)}"
-24950,6788,GO-20201412083,B&E,2020-01-02T00:00:00,2020,January,Thursday,2,2,12,2020-07-29T00:00:00,2020,July,Wednesday,29,211,13,D41,Toronto,125,Ionview (125),"Apartment (Rooming House, Condo)",Apartment,SCHWINN,UNK,RC,10,GRY,400.0,STOLEN,24937,"{'type': 'Point', 'coordinates': (-79.269199, 43.73529097)}"
-24951,10212,GO-20159005510,THEFT UNDER,2015-08-07T00:00:00,2015,August,Friday,7,219,23,2015-08-08T00:00:00,2015,August,Saturday,8,220,12,D41,Toronto,125,Ionview (125),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,,MT,21,WHI,600.0,STOLEN,24938,"{'type': 'Point', 'coordinates': (-79.27116968, 43.73143339)}"
-24952,10213,GO-20159005510,THEFT UNDER,2015-08-07T00:00:00,2015,August,Friday,7,219,23,2015-08-08T00:00:00,2015,August,Saturday,8,220,12,D41,Toronto,125,Ionview (125),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SC,,MT,21,WHI,300.0,STOLEN,24939,"{'type': 'Point', 'coordinates': (-79.27116968, 43.73143339)}"
-24953,10310,GO-20159006060,THEFT UNDER,2015-08-07T00:00:00,2015,August,Friday,7,219,22,2015-08-20T00:00:00,2015,August,Thursday,20,232,11,D41,Toronto,125,Ionview (125),"Apartment (Rooming House, Condo)",Apartment,TR,FUEL 90,MT,27,BLU,0.0,STOLEN,24940,"{'type': 'Point', 'coordinates': (-79.26856692000001, 43.73381349)}"
-24954,16990,GO-20171807426,THEFT UNDER - BICYCLE,2017-10-05T00:00:00,2017,October,Thursday,5,278,7,2017-10-05T00:00:00,2017,October,Thursday,5,278,15,D41,Toronto,125,Ionview (125),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GARY FISHER,,MT,24,REDWHI,700.0,STOLEN,24941,"{'type': 'Point', 'coordinates': (-79.26789116, 43.73220089)}"
-24955,17084,GO-20181446364,B&E,2018-08-06T00:00:00,2018,August,Monday,6,218,21,2018-08-07T00:00:00,2018,August,Tuesday,7,219,10,D41,Toronto,125,Ionview (125),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,,TO,10,BLKRED,400.0,STOLEN,24942,"{'type': 'Point', 'coordinates': (-79.27009152, 43.73745307)}"
-24956,23201,GO-20181658483,THEFT OF EBIKE UNDER $5000,2018-09-05T00:00:00,2018,September,Wednesday,5,248,14,2018-09-07T00:00:00,2018,September,Friday,7,250,14,D41,Toronto,125,Ionview (125),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,EMMO,,EL,1,BLK,1000.0,STOLEN,24944,"{'type': 'Point', 'coordinates': (-79.27540879, 43.73331406)}"
-24957,23312,GO-2020378350,THEFT UNDER - BICYCLE,2020-02-22T00:00:00,2020,February,Saturday,22,53,13,2020-02-22T00:00:00,2020,February,Saturday,22,53,16,D41,Toronto,125,Ionview (125),"Apartment (Rooming House, Condo)",Apartment,MIELE,,MT,21,WHI,1000.0,STOLEN,24945,"{'type': 'Point', 'coordinates': (-79.27886224, 43.73286173)}"
-24958,23314,GO-20209009932,THEFT UNDER,2020-03-27T00:00:00,2020,March,Friday,27,87,0,2020-03-27T00:00:00,2020,March,Friday,27,87,8,D41,Toronto,125,Ionview (125),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MO,,MT,21,GRY,300.0,STOLEN,24946,"{'type': 'Point', 'coordinates': (-79.27905869, 43.73619258)}"
-24959,23501,GO-20179020127,THEFT UNDER,2017-11-12T00:00:00,2017,November,Sunday,12,316,15,2017-11-20T00:00:00,2017,November,Monday,20,324,18,D41,Toronto,125,Ionview (125),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,BM,1,SIL,1000.0,STOLEN,24947,"{'type': 'Point', 'coordinates': (-79.27136392, 43.73482726)}"
-24960,1629,GO-20179016868,THEFT UNDER,2017-10-10T00:00:00,2017,October,Tuesday,10,283,14,2017-10-10T00:00:00,2017,October,Tuesday,10,283,14,D41,Toronto,126,Dorset Park (126),Schools During Un-Supervised Activity,Educational,KO,COWAN,MT,1,BRN,1200.0,STOLEN,24948,"{'type': 'Point', 'coordinates': (-79.27941653, 43.76129774)}"
-24961,1843,GO-20179019653,THEFT UNDER - BICYCLE,2017-11-14T00:00:00,2017,November,Tuesday,14,318,9,2017-11-14T00:00:00,2017,November,Tuesday,14,318,16,D41,Toronto,126,Dorset Park (126),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SC,SCHWINN,MT,18,RED,450.0,STOLEN,24949,"{'type': 'Point', 'coordinates': (-79.28270763, 43.75917075)}"
-24962,3401,GO-20189029272,THEFT UNDER - BICYCLE,2018-08-25T00:00:00,2018,August,Saturday,25,237,15,2018-09-05T00:00:00,2018,September,Wednesday,5,248,20,D41,Toronto,126,Dorset Park (126),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,FO,6,BLK,300.0,STOLEN,24950,"{'type': 'Point', 'coordinates': (-79.28320883, 43.77173238)}"
-24963,3794,GO-20189036340,THEFT UNDER - BICYCLE,2018-10-30T00:00:00,2018,October,Tuesday,30,303,8,2018-10-31T00:00:00,2018,October,Wednesday,31,304,9,D41,Toronto,126,Dorset Park (126),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,,MT,18,RED,0.0,STOLEN,24951,"{'type': 'Point', 'coordinates': (-79.280943, 43.76096763)}"
-24964,4167,GO-20199011847,THEFT UNDER,2019-04-13T00:00:00,2019,April,Saturday,13,103,16,2019-04-14T00:00:00,2019,April,Sunday,14,104,17,D41,Toronto,126,Dorset Park (126),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,MT,8,BLK,500.0,STOLEN,24952,"{'type': 'Point', 'coordinates': (-79.28204968, 43.74070795)}"
-24965,6261,GO-2020968026,THEFT UNDER - BICYCLE,2020-05-26T00:00:00,2020,May,Tuesday,26,147,19,2020-05-28T00:00:00,2020,May,Thursday,28,149,11,D41,Toronto,126,Dorset Park (126),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,METERMSU-RJ,MT,8,RED,900.0,STOLEN,24953,"{'type': 'Point', 'coordinates': (-79.28985916, 43.76504478)}"
-24966,6864,GO-20201455571,THREAT - PERSON,2020-08-04T00:00:00,2020,August,Tuesday,4,217,17,2020-08-04T00:00:00,2020,August,Tuesday,4,217,19,D41,Toronto,126,Dorset Park (126),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SUPERCYCLE,,MT,21,BLK,300.0,STOLEN,24954,"{'type': 'Point', 'coordinates': (-79.28320883, 43.77173238)}"
-24967,7175,GO-20201643792,THEFT UNDER - BICYCLE,2020-08-23T00:00:00,2020,August,Sunday,23,236,23,2020-08-31T00:00:00,2020,August,Monday,31,244,13,D41,Toronto,126,Dorset Park (126),"Apartment (Rooming House, Condo)",Apartment,CANNONDALE,,MT,18,BLK,1000.0,STOLEN,24955,"{'type': 'Point', 'coordinates': (-79.28373504, 43.76694265)}"
-24968,8615,GO-20149005715,THEFT UNDER,2014-08-05T00:00:00,2014,August,Tuesday,5,217,12,2014-08-07T00:00:00,2014,August,Thursday,7,219,18,D41,Toronto,126,Dorset Park (126),Schools During Supervised Activity,Educational,GI,,RG,8,WHI,530.0,STOLEN,24956,"{'type': 'Point', 'coordinates': (-79.27787067000001, 43.74546157)}"
-24969,8671,GO-20149005984,B&E,2014-08-14T00:00:00,2014,August,Thursday,14,226,2,2014-08-15T00:00:00,2014,August,Friday,15,227,13,D41,Toronto,126,Dorset Park (126),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,MT,18,OTH,0.0,STOLEN,24957,"{'type': 'Point', 'coordinates': (-79.28542657, 43.76374851)}"
-24970,9386,GO-2015598890,MISCHIEF UNDER,2015-03-31T00:00:00,2015,March,Tuesday,31,90,12,2015-04-11T00:00:00,2015,April,Saturday,11,101,15,D41,Toronto,126,Dorset Park (126),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,MT,12,DBL,,STOLEN,24958,"{'type': 'Point', 'coordinates': (-79.2822164, 43.76942091)}"
-24971,10318,GO-20151471987,THEFT UNDER,2015-08-25T00:00:00,2015,August,Tuesday,25,237,1,2015-08-25T00:00:00,2015,August,Tuesday,25,237,16,D41,Toronto,126,Dorset Park (126),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,MT,21,BLU,100.0,STOLEN,24959,"{'type': 'Point', 'coordinates': (-79.2904828, 43.761372570000006)}"
-24972,13927,GO-20159008593,THEFT UNDER,2015-07-15T00:00:00,2015,July,Wednesday,15,196,10,2015-10-16T00:00:00,2015,October,Friday,16,289,11,D41,Toronto,126,Dorset Park (126),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CC,PRESTO 700C,RC,21,OTH,217.0,STOLEN,24961,"{'type': 'Point', 'coordinates': (-79.27410092, 43.74721595)}"
-24973,13969,GO-2016899384,THEFT UNDER,2016-05-22T00:00:00,2016,May,Sunday,22,143,1,2016-05-25T00:00:00,2016,May,Wednesday,25,146,9,D41,Toronto,126,Dorset Park (126),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,,OT,0,GRN,400.0,STOLEN,24962,"{'type': 'Point', 'coordinates': (-79.26442208, 43.74969223)}"
-24974,17480,GO-20142901365,THEFT UNDER,2014-09-12T00:00:00,2014,September,Friday,12,255,21,2014-09-13T00:00:00,2014,September,Saturday,13,256,11,D41,Toronto,126,Dorset Park (126),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,TAILWHIP,BM,1,BLK,150.0,STOLEN,24963,"{'type': 'Point', 'coordinates': (-79.28204968, 43.74070795)}"
-24975,20236,GO-20179013817,THEFT UNDER - BICYCLE,2017-08-26T00:00:00,2017,August,Saturday,26,238,19,2017-09-01T00:00:00,2017,September,Friday,1,244,11,D41,Toronto,126,Dorset Park (126),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,MTB,MT,10,BLK,4500.0,STOLEN,24964,"{'type': 'Point', 'coordinates': (-79.27489429, 43.74949731)}"
-24976,20450,GO-20151851358,THEFT OF MOTOR VEHICLE,2015-10-27T00:00:00,2015,October,Tuesday,27,300,21,2015-10-28T00:00:00,2015,October,Wednesday,28,301,6,D41,Toronto,126,Dorset Park (126),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,1200,MT,12,BLK,,UNKNOWN,24965,"{'type': 'Point', 'coordinates': (-79.27902907, 43.74192632)}"
-24977,20848,GO-20141564097,THEFT UNDER,2014-02-20T00:00:00,2014,February,Thursday,20,51,10,2014-02-20T00:00:00,2014,February,Thursday,20,51,10,D41,Toronto,126,Dorset Park (126),"Gas Station (Self, Full, Attached Convenience)",Commercial,RALEIGH,,MT,10,RED,,STOLEN,24966,"{'type': 'Point', 'coordinates': (-79.27489429, 43.74949731)}"
-24978,20889,GO-20149005064,THEFT UNDER,2014-07-15T00:00:00,2014,July,Tuesday,15,196,8,2014-07-17T00:00:00,2014,July,Thursday,17,198,0,D41,Toronto,126,Dorset Park (126),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,"CCM 26"""" SCOPE1",RG,4,RED,500.0,STOLEN,24967,"{'type': 'Point', 'coordinates': (-79.27813967, 43.75142092)}"
-24979,23400,GO-20179004717,THEFT UNDER,2016-04-15T00:00:00,2016,April,Friday,15,106,11,2017-04-15T00:00:00,2017,April,Saturday,15,105,12,D41,Toronto,126,Dorset Park (126),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,MT,5,,0.0,STOLEN,24968,"{'type': 'Point', 'coordinates': (-79.28985916, 43.76504478)}"
-24980,23740,GO-20169009526,THEFT UNDER - BICYCLE,2016-08-25T00:00:00,2016,August,Thursday,25,238,16,2016-08-26T00:00:00,2016,August,Friday,26,239,14,D41,Toronto,126,Dorset Park (126),"Single Home, House (Attach Garage, Cottage, Mobile)",House,HF,56035C CANADIAN,RG,1,RED,168.0,STOLEN,24969,"{'type': 'Point', 'coordinates': (-79.28460011, 43.76650289)}"
-24981,478,GO-2017935614,THEFT UNDER - BICYCLE,2017-05-27T00:00:00,2017,May,Saturday,27,147,13,2017-05-27T00:00:00,2017,May,Saturday,27,147,13,D43,Toronto,127,Bendale (127),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,BM,1,BLU,,STOLEN,24970,"{'type': 'Point', 'coordinates': (-79.25286052, 43.7514712)}"
-24982,518,GO-2017971560,THEFT UNDER - BICYCLE,2017-05-31T00:00:00,2017,May,Wednesday,31,151,8,2017-06-01T00:00:00,2017,June,Thursday,1,152,18,D43,Toronto,127,Bendale (127),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,RG,15,,100.0,STOLEN,24971,"{'type': 'Point', 'coordinates': (-79.25823784, 43.76466637)}"
-24983,615,GO-20171050993,THEFT UNDER - BICYCLE,2017-06-12T00:00:00,2017,June,Monday,12,163,11,2017-06-13T00:00:00,2017,June,Tuesday,13,164,11,D43,Toronto,127,Bendale (127),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,MT,21,BLKYEL,600.0,STOLEN,24972,"{'type': 'Point', 'coordinates': (-79.25089301, 43.7544141)}"
-24984,798,GO-20179009676,THEFT UNDER - BICYCLE,2017-07-07T00:00:00,2017,July,Friday,7,188,6,2017-07-07T00:00:00,2017,July,Friday,7,188,23,D41,Toronto,127,Bendale (127),"Apartment (Rooming House, Condo)",Apartment,SC,,RG,26,RED,100.0,STOLEN,24973,"{'type': 'Point', 'coordinates': (-79.26241897, 43.75206441)}"
-24985,1269,GO-20171559036,B&E,2017-08-28T00:00:00,2017,August,Monday,28,240,2,2017-08-28T00:00:00,2017,August,Monday,28,240,18,D41,Toronto,127,Bendale (127),"Construction Site (Warehouse, Trailer, Shed)",Commercial,OTHER,DIADORA,MT,7,LGRWHI,339.0,STOLEN,24974,"{'type': 'Point', 'coordinates': (-79.25831879, 43.75034558)}"
-24986,1615,GO-20179016736,THEFT UNDER,2017-10-08T00:00:00,2017,October,Sunday,8,281,11,2017-10-08T00:00:00,2017,October,Sunday,8,281,13,D41,Toronto,127,Bendale (127),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RA,TARANTULA,MT,18,OTH,200.0,STOLEN,24975,"{'type': 'Point', 'coordinates': (-79.26689373, 43.75892356)}"
-24987,1729,GO-20179018021,THEFT UNDER - BICYCLE,2017-10-21T00:00:00,2017,October,Saturday,21,294,6,2017-10-24T00:00:00,2017,October,Tuesday,24,297,10,D41,Toronto,127,Bendale (127),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,RG,5,BLK,50.0,STOLEN,24976,"{'type': 'Point', 'coordinates': (-79.25800716, 43.75564665)}"
-24988,5465,GO-20199032546,THEFT UNDER,2019-10-02T00:00:00,2019,October,Wednesday,2,275,18,2019-10-04T00:00:00,2019,October,Friday,4,277,8,D43,Toronto,127,Bendale (127),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RC,20,BLU,0.0,STOLEN,24977,"{'type': 'Point', 'coordinates': (-79.2561524, 43.77219813)}"
-24989,7851,GO-20141938068,THEFT UNDER,2014-04-22T00:00:00,2014,April,Tuesday,22,112,15,2014-04-22T00:00:00,2014,April,Tuesday,22,112,16,D43,Toronto,127,Bendale (127),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,JAMIS,BEATNIK,RG,1,BLKWHI,600.0,STOLEN,24978,"{'type': 'Point', 'coordinates': (-79.25417421, 43.77664803)}"
-24990,8036,GO-20149003775,THEFT UNDER,2014-06-03T00:00:00,2014,June,Tuesday,3,154,10,2014-06-03T00:00:00,2014,June,Tuesday,3,154,12,D43,Toronto,127,Bendale (127),Unknown,Other,DB,DISCOVERY,RG,18,SIL,250.0,STOLEN,24979,"{'type': 'Point', 'coordinates': (-79.25350865, 43.77439543)}"
-24991,8723,GO-20149006250,THEFT UNDER,2014-08-23T00:00:00,2014,August,Saturday,23,235,1,2014-08-25T00:00:00,2014,August,Monday,25,237,9,D41,Toronto,127,Bendale (127),"Single Home, House (Attach Garage, Cottage, Mobile)",House,IN,BACKROADS,MT,21,RED,232.0,STOLEN,24980,"{'type': 'Point', 'coordinates': (-79.25831878, 43.76211019000001)}"
-24992,8724,GO-20149006250,THEFT UNDER,2014-08-23T00:00:00,2014,August,Saturday,23,235,1,2014-08-25T00:00:00,2014,August,Monday,25,237,9,D41,Toronto,127,Bendale (127),"Single Home, House (Attach Garage, Cottage, Mobile)",House,IN,COSMO,MT,21,SIL,200.0,STOLEN,24981,"{'type': 'Point', 'coordinates': (-79.25831878, 43.76211019000001)}"
-24993,9028,GO-20149007440,THEFT UNDER,2014-10-06T00:00:00,2014,October,Monday,6,279,3,2014-10-06T00:00:00,2014,October,Monday,6,279,21,D41,Toronto,127,Bendale (127),"Apartment (Rooming House, Condo)",Apartment,RA,700 C,OT,7,DBL,300.0,STOLEN,24982,"{'type': 'Point', 'coordinates': (-79.26840024, 43.76276115)}"
-24994,9066,GO-20143111591,THEFT UNDER,2010-09-06T00:00:00,2010,September,Monday,6,249,21,2014-10-15T00:00:00,2014,October,Wednesday,15,288,22,D41,Toronto,127,Bendale (127),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,MOUNTAINEER,MT,21,BLUWHI,400.0,STOLEN,24983,"{'type': 'Point', 'coordinates': (-79.25751041, 43.74431304)}"
-24995,9067,GO-20143111591,THEFT UNDER,2010-09-06T00:00:00,2010,September,Monday,6,249,21,2014-10-15T00:00:00,2014,October,Wednesday,15,288,22,D41,Toronto,127,Bendale (127),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUBROSA,TIRO,BM,1,SIL,500.0,STOLEN,24984,"{'type': 'Point', 'coordinates': (-79.25751041, 43.74431304)}"
-24996,9230,GO-20143497411,THEFT UNDER,2014-11-01T00:00:00,2014,November,Saturday,1,305,19,2014-12-16T00:00:00,2014,December,Tuesday,16,350,15,D43,Toronto,127,Bendale (127),"Open Areas (Lakes, Parks, Rivers)",Outside,SPECIALIZED,ALLEZ,RC,21,REDWHI,900.0,STOLEN,24985,"{'type': 'Point', 'coordinates': (-79.25460144, 43.77252457)}"
-24997,9407,GO-2015623641,THEFT UNDER,2015-04-13T00:00:00,2015,April,Monday,13,103,17,2015-04-15T00:00:00,2015,April,Wednesday,15,105,15,D41,Toronto,127,Bendale (127),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,CANADA TIRE,MT,24,BLKGRN,280.0,STOLEN,24986,"{'type': 'Point', 'coordinates': (-79.26307673, 43.75376627000001)}"
-24998,9744,GO-2015958012,THEFT OF MOTOR VEHICLE,2015-06-08T00:00:00,2015,June,Monday,8,159,3,2015-06-08T00:00:00,2015,June,Monday,8,159,10,D41,Toronto,127,Bendale (127),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,UNKN,SC,1,SIL,200.0,STOLEN,24987,"{'type': 'Point', 'coordinates': (-79.26233643, 43.76017435)}"
-24999,9803,GO-20159003602,THEFT UNDER,2015-06-14T00:00:00,2015,June,Sunday,14,165,8,2015-06-14T00:00:00,2015,June,Sunday,14,165,13,D41,Toronto,127,Bendale (127),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SIRRUS,MT,18,BLK,800.0,STOLEN,24988,"{'type': 'Point', 'coordinates': (-79.26689373, 43.75892356)}"
-25000,9815,GO-20159003669,THEFT UNDER,2015-06-09T00:00:00,2015,June,Tuesday,9,160,19,2015-06-16T00:00:00,2015,June,Tuesday,16,167,16,D43,Toronto,127,Bendale (127),"Apartment (Rooming House, Condo)",Apartment,CC,STATIC,MT,21,YEL,200.0,STOLEN,24989,"{'type': 'Point', 'coordinates': (-79.25460144, 43.77252457)}"
-25001,9991,GO-20159004452,THEFT UNDER,2015-07-11T00:00:00,2015,July,Saturday,11,192,10,2015-07-12T00:00:00,2015,July,Sunday,12,193,11,D43,Toronto,127,Bendale (127),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,,RG,5,,80.0,STOLEN,24990,"{'type': 'Point', 'coordinates': (-79.25089301, 43.7544141)}"
-25002,10337,GO-20159006298,THEFT UNDER,2015-08-21T00:00:00,2015,August,Friday,21,233,15,2015-08-23T00:00:00,2015,August,Sunday,23,235,13,D43,Toronto,127,Bendale (127),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,GI,ESCAPE 1 TITANI,RG,27,SIL,700.0,STOLEN,24991,"{'type': 'Point', 'coordinates': (-79.25350865, 43.77439543)}"
-25003,11881,GO-20161293704,THEFT UNDER - BICYCLE,2016-07-18T00:00:00,2016,July,Monday,18,200,19,2016-07-23T00:00:00,2016,July,Saturday,23,205,13,D41,Toronto,127,Bendale (127),"Single Home, House (Attach Garage, Cottage, Mobile)",House,LOUIS GARNEAU,BOYS,MT,18,GRYRED,399.0,STOLEN,24992,"{'type': 'Point', 'coordinates': (-79.25478482, 43.74552239)}"
-25004,23445,GO-20171322462,THEFT UNDER - BICYCLE,2017-07-23T00:00:00,2017,July,Sunday,23,204,13,2017-07-23T00:00:00,2017,July,Sunday,23,204,14,D43,Toronto,138,Eglinton East (138),Bar / Restaurant,Commercial,SUPERCYCLE,,MT,18,ONG,500.0,STOLEN,24993,"{'type': 'Point', 'coordinates': (-79.23832126, 43.73885196)}"
-25005,23645,GO-20151451902,THEFT UNDER,2015-08-15T00:00:00,2015,August,Saturday,15,227,13,2015-08-23T00:00:00,2015,August,Sunday,23,235,14,D43,Toronto,138,Eglinton East (138),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,ALPINE,MT,21,BLKWHI,250.0,STOLEN,24994,"{'type': 'Point', 'coordinates': (-79.24548954, 43.73945486)}"
-25006,664,GO-20171105831,B&E,2017-06-20T00:00:00,2017,June,Tuesday,20,171,23,2017-06-21T00:00:00,2017,June,Wednesday,21,172,9,D43,Toronto,139,Scarborough Village (139),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,0,,1000.0,STOLEN,24995,"{'type': 'Point', 'coordinates': (-79.21243096, 43.73607589)}"
-25007,665,GO-20171105831,B&E,2017-06-20T00:00:00,2017,June,Tuesday,20,171,23,2017-06-21T00:00:00,2017,June,Wednesday,21,172,9,D43,Toronto,139,Scarborough Village (139),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,0,,5000.0,STOLEN,24996,"{'type': 'Point', 'coordinates': (-79.21243096, 43.73607589)}"
-25008,666,GO-20171105831,B&E,2017-06-20T00:00:00,2017,June,Tuesday,20,171,23,2017-06-21T00:00:00,2017,June,Wednesday,21,172,9,D43,Toronto,139,Scarborough Village (139),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,0,,3000.0,STOLEN,24997,"{'type': 'Point', 'coordinates': (-79.21243096, 43.73607589)}"
-25009,810,GO-20179009752,THEFT UNDER - BICYCLE,2017-07-08T00:00:00,2017,July,Saturday,8,189,20,2017-07-09T00:00:00,2017,July,Sunday,9,190,0,D43,Toronto,139,Scarborough Village (139),Schools During Un-Supervised Activity,Educational,HF,ROCK CREEK,MT,18,LGR,175.0,STOLEN,24998,"{'type': 'Point', 'coordinates': (-79.22285482, 43.74425348)}"
-25010,892,GO-20171282844,THEFT UNDER - BICYCLE,2017-07-08T00:00:00,2017,July,Saturday,8,189,20,2017-07-17T00:00:00,2017,July,Monday,17,198,15,D43,Toronto,139,Scarborough Village (139),Schools During Un-Supervised Activity,Educational,HUFFY,ROCK CREEK,MT,18,GRN,160.0,STOLEN,24999,"{'type': 'Point', 'coordinates': (-79.22285482, 43.74425348)}"
-25011,1314,GO-20179014019,THEFT UNDER - BICYCLE,2017-08-26T00:00:00,2017,August,Saturday,26,238,12,2017-09-05T00:00:00,2017,September,Tuesday,5,248,12,D43,Toronto,139,Scarborough Village (139),"Apartment (Rooming House, Condo)",Apartment,CC,,OT,40,RED,600.0,STOLEN,25000,"{'type': 'Point', 'coordinates': (-79.22206817, 43.74248611)}"
-25012,12142,GO-20169009073,THEFT UNDER,2016-08-19T00:00:00,2016,August,Friday,19,232,15,2016-08-19T00:00:00,2016,August,Friday,19,232,16,D43,Toronto,127,Bendale (127),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,SU,,RG,10,,0.0,STOLEN,25001,"{'type': 'Point', 'coordinates': (-79.24438083, 43.75123791)}"
-25013,1989,GO-20171897929,ROBBERY - MUGGING,2017-10-20T00:00:00,2017,October,Friday,20,293,0,2017-10-20T00:00:00,2017,October,Friday,20,293,5,D43,Toronto,139,Scarborough Village (139),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,MT,9,,,STOLEN,25002,"{'type': 'Point', 'coordinates': (-79.2278877, 43.73997977)}"
-25014,6687,GO-20201352499,THEFT UNDER,2020-07-19T00:00:00,2020,July,Sunday,19,201,4,2020-07-21T00:00:00,2020,July,Tuesday,21,203,21,D43,Toronto,139,Scarborough Village (139),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,ZONE GT,EL,3,RED,4000.0,STOLEN,25003,"{'type': 'Point', 'coordinates': (-79.2278877, 43.73997977)}"
-25015,6793,GO-20201407793,THEFT UNDER - BICYCLE,2020-06-11T00:00:00,2020,June,Thursday,11,163,17,2020-07-28T00:00:00,2020,July,Tuesday,28,210,20,D43,Toronto,139,Scarborough Village (139),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,ESCAPE,TO,18,GRY,600.0,STOLEN,25004,"{'type': 'Point', 'coordinates': (-79.21309175, 43.74198686)}"
-25016,7005,GO-20201557877,B&E,2020-08-17T00:00:00,2020,August,Monday,17,230,21,2020-08-20T00:00:00,2020,August,Thursday,20,233,9,D43,Toronto,139,Scarborough Village (139),"Apartment (Rooming House, Condo)",Apartment,SUPERCYCLE,12120,MT,10,BLKRED,225.0,STOLEN,25005,"{'type': 'Point', 'coordinates': (-79.21372694, 43.74433778)}"
-25017,7552,GO-20202038435,THEFT UNDER,2020-10-26T00:00:00,2020,October,Monday,26,300,23,2020-10-27T00:00:00,2020,October,Tuesday,27,301,13,D43,Toronto,139,Scarborough Village (139),"Apartment (Rooming House, Condo)",Apartment,OTHER,VIENNA,EL,3,BLK,2300.0,STOLEN,25006,"{'type': 'Point', 'coordinates': (-79.22016416, 43.73593755)}"
-25018,7656,GO-20209030412,THEFT UNDER,2020-11-21T00:00:00,2020,November,Saturday,21,326,10,2020-11-24T00:00:00,2020,November,Tuesday,24,329,10,D43,Toronto,139,Scarborough Village (139),"Apartment (Rooming House, Condo)",Apartment,SC,"SCHWINN 26"""" 3 W",TR,1,BRZ,501.0,STOLEN,25007,"{'type': 'Point', 'coordinates': (-79.22157093, 43.73341163)}"
-25019,7752,GO-20141391839,POSSESSION PROPERTY OBC UNDER,2014-01-22T00:00:00,2014,January,Wednesday,22,22,19,2014-01-22T00:00:00,2014,January,Wednesday,22,22,19,D43,Toronto,139,Scarborough Village (139),Convenience Stores,Commercial,SPECIALIZED,S-WORKS TARMAC,RC,14,BLK,3000.0,UNKNOWN,25008,"{'type': 'Point', 'coordinates': (-79.21887335, 43.743180390000006)}"
-25020,8614,GO-20149005716,THEFT UNDER,2014-08-07T00:00:00,2014,August,Thursday,7,219,14,2014-08-07T00:00:00,2014,August,Thursday,7,219,18,D43,Toronto,139,Scarborough Village (139),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,SUPERCYCLE VICE,MT,6,BLK,140.0,STOLEN,25009,"{'type': 'Point', 'coordinates': (-79.21309175, 43.74198686)}"
-25021,9869,GO-20151067077,B&E,2015-06-17T00:00:00,2015,June,Wednesday,17,168,12,2015-06-24T00:00:00,2015,June,Wednesday,24,175,23,D43,Toronto,139,Scarborough Village (139),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,UNKNOWN,EL,0,ONG,400.0,STOLEN,25010,"{'type': 'Point', 'coordinates': (-79.22124111, 43.74461255)}"
-25022,10725,GO-20151908660,THEFT UNDER,2015-11-06T00:00:00,2015,November,Friday,6,310,7,2015-11-06T00:00:00,2015,November,Friday,6,310,8,D43,Toronto,139,Scarborough Village (139),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,STATIC,MT,15,BLKYEL,400.0,STOLEN,25011,"{'type': 'Point', 'coordinates': (-79.21732002, 43.74792022)}"
-25023,16784,GO-20191369572,THEFT UNDER,2019-06-21T00:00:00,2019,June,Friday,21,172,8,2019-07-21T00:00:00,2019,July,Sunday,21,202,14,D43,Toronto,139,Scarborough Village (139),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,MT,12,WHI,65.0,STOLEN,25012,"{'type': 'Point', 'coordinates': (-79.21679718, 43.74672176)}"
-25024,16813,GO-2020808003,THEFT OF EBIKE UNDER $5000,2020-04-19T00:00:00,2020,April,Sunday,19,110,12,2020-04-30T00:00:00,2020,April,Thursday,30,121,8,D43,Toronto,139,Scarborough Village (139),"Apartment (Rooming House, Condo)",Apartment,WHISPER,905 SE,EL,1,BLK,2500.0,STOLEN,25013,"{'type': 'Point', 'coordinates': (-79.21257694, 43.74404148)}"
-25025,16855,GO-20202139323,THEFT UNDER - BICYCLE,2020-11-05T00:00:00,2020,November,Thursday,5,310,10,2020-11-11T00:00:00,2020,November,Wednesday,11,316,8,D43,Toronto,139,Scarborough Village (139),"Apartment (Rooming House, Condo)",Apartment,FUJI,ABSOLUTE 1.3,MT,6,MRN,768.0,STOLEN,25014,"{'type': 'Point', 'coordinates': (-79.21257694, 43.74404148)}"
-25026,20106,GO-20201343862,THEFT UNDER,2020-07-19T00:00:00,2020,July,Sunday,19,201,12,2020-07-19T00:00:00,2020,July,Sunday,19,201,21,D43,Toronto,139,Scarborough Village (139),"Apartment (Rooming House, Condo)",Apartment,OTHER,,EL,60,BLKWHI,1500.0,STOLEN,25015,"{'type': 'Point', 'coordinates': (-79.21257694, 43.74404148)}"
-25027,20530,GO-20169010206,THEFT UNDER - BICYCLE,2016-09-09T00:00:00,2016,September,Friday,9,253,15,2016-09-09T00:00:00,2016,September,Friday,9,253,17,D43,Toronto,139,Scarborough Village (139),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,,MT,16,LGR,0.0,STOLEN,25016,"{'type': 'Point', 'coordinates': (-79.22512248, 43.7417914)}"
-25028,23287,GO-20199021712,THEFT UNDER,2019-07-08T00:00:00,2019,July,Monday,8,189,21,2019-07-10T00:00:00,2019,July,Wednesday,10,191,13,D43,Toronto,139,Scarborough Village (139),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SP,RIDGERUNNER,MT,18,BLU,0.0,STOLEN,25017,"{'type': 'Point', 'coordinates': (-79.22512248, 43.7417914)}"
-25029,14392,GO-20149005118,THEFT UNDER,2014-07-18T00:00:00,2014,July,Friday,18,199,8,2014-07-18T00:00:00,2014,July,Friday,18,199,12,D43,Toronto,135,Morningside (135),Schools During Supervised Activity,Educational,HF,,MT,21,GRY,200.0,RECOVERED,25018,"{'type': 'Point', 'coordinates': (-79.19793737, 43.79031287)}"
-25030,23354,GO-20201667457,THEFT UNDER,2020-09-01T00:00:00,2020,September,Tuesday,1,245,18,2020-09-03T00:00:00,2020,September,Thursday,3,247,17,D43,Toronto,139,Scarborough Village (139),"Apartment (Rooming House, Condo)",Apartment,FORTRESS,MOBILITY,SC,1,BLU,3800.0,STOLEN,25019,"{'type': 'Point', 'coordinates': (-79.2278877, 43.73997977)}"
-25031,23675,GO-2016198296,THEFT UNDER,2016-02-02T00:00:00,2016,February,Tuesday,2,33,19,2016-02-02T00:00:00,2016,February,Tuesday,2,33,19,D43,Toronto,139,Scarborough Village (139),"Apartment (Rooming House, Condo)",Apartment,PEGAUS,6000,SC,1,GRY,2500.0,STOLEN,25020,"{'type': 'Point', 'coordinates': (-79.22319102, 43.74046355)}"
-25032,425,GO-20179006655,THEFT UNDER - BICYCLE,2017-05-19T00:00:00,2017,May,Friday,19,139,15,2017-05-19T00:00:00,2017,May,Friday,19,139,16,D43,Toronto,140,Guildwood (140),Schools During Un-Supervised Activity,Educational,UK,,MT,10,WHI,0.0,STOLEN,25021,"{'type': 'Point', 'coordinates': (-79.1987031, 43.74629744)}"
-25033,1818,GO-20172033219,THEFT UNDER,2017-11-10T00:00:00,2017,November,Friday,10,314,0,2017-11-10T00:00:00,2017,November,Friday,10,314,0,D43,Toronto,140,Guildwood (140),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GARY FISHER,,MT,27,LGR,3000.0,STOLEN,25022,"{'type': 'Point', 'coordinates': (-79.19395388, 43.75299074)}"
-25034,3242,GO-20181526825,THEFT UNDER - BICYCLE,2018-08-18T00:00:00,2018,August,Saturday,18,230,18,2018-08-18T00:00:00,2018,August,Saturday,18,230,18,D43,Toronto,140,Guildwood (140),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,ROCK HOPPER EXP,MT,27,WHI,1500.0,STOLEN,25023,"{'type': 'Point', 'coordinates': (-79.19789345, 43.74434203)}"
-25035,5112,GO-20199026931,THEFT UNDER,2019-08-18T00:00:00,2019,August,Sunday,18,230,23,2019-08-20T00:00:00,2019,August,Tuesday,20,232,16,D43,Toronto,140,Guildwood (140),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,REVEL,MT,21,BLU,800.0,STOLEN,25024,"{'type': 'Point', 'coordinates': (-79.19634035, 43.75407726)}"
-25036,6451,GO-20201160890,THEFT UNDER - BICYCLE,2020-06-24T00:00:00,2020,June,Wednesday,24,176,9,2020-06-24T00:00:00,2020,June,Wednesday,24,176,10,D43,Toronto,140,Guildwood (140),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,UNKNOWN,RG,10,RED,,RECOVERED,25025,"{'type': 'Point', 'coordinates': (-79.20344161, 43.74250231)}"
-25037,7063,GO-20201599465,THEFT UNDER - BICYCLE,2020-08-01T00:00:00,2020,August,Saturday,1,214,10,2020-08-25T00:00:00,2020,August,Tuesday,25,238,7,D43,Toronto,140,Guildwood (140),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BRODIE,,BM,21,RED,1200.0,STOLEN,25026,"{'type': 'Point', 'coordinates': (-79.18568527, 43.75357139)}"
-25038,7404,GO-20209025284,THEFT UNDER,2020-10-02T00:00:00,2020,October,Friday,2,276,21,2020-10-02T00:00:00,2020,October,Friday,2,276,22,D43,Toronto,140,Guildwood (140),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,MT,21,BLK,1700.0,STOLEN,25027,"{'type': 'Point', 'coordinates': (-79.20681764, 43.7474797)}"
-25039,8257,GO-20149004474,THEFT UNDER,2014-06-25T00:00:00,2014,June,Wednesday,25,176,23,2014-06-26T00:00:00,2014,June,Thursday,26,177,13,D43,Toronto,140,Guildwood (140),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,21,BLK,350.0,STOLEN,25028,"{'type': 'Point', 'coordinates': (-79.17880312, 43.75624362)}"
-25040,8826,GO-20142869399,MISCHIEF UNDER,2014-09-08T00:00:00,2014,September,Monday,8,251,15,2014-09-08T00:00:00,2014,September,Monday,8,251,18,D43,Toronto,140,Guildwood (140),Schools During Un-Supervised Activity,Educational,CCM,REVOLUTION,MT,5,BLUWHI,,STOLEN,25029,"{'type': 'Point', 'coordinates': (-79.1987031, 43.74629744)}"
-25041,12141,GO-20161475640,THEFT UNDER - BICYCLE,2016-07-20T00:00:00,2016,July,Wednesday,20,202,9,2016-08-20T00:00:00,2016,August,Saturday,20,233,17,D43,Toronto,140,Guildwood (140),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,,RG,12,WHI,600.0,STOLEN,25030,"{'type': 'Point', 'coordinates': (-79.20344161, 43.74250231)}"
-25042,12365,GO-20169010561,THEFT UNDER - BICYCLE,2016-09-02T00:00:00,2016,September,Friday,2,246,16,2016-09-16T00:00:00,2016,September,Friday,16,260,17,D43,Toronto,140,Guildwood (140),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,PE,URBANO,RG,6,BLU,0.0,STOLEN,25031,"{'type': 'Point', 'coordinates': (-79.1885525, 43.75307517)}"
-25043,12512,GO-20169011341,THEFT UNDER - BICYCLE,2016-09-30T00:00:00,2016,September,Friday,30,274,1,2016-09-30T00:00:00,2016,September,Friday,30,274,9,D43,Toronto,140,Guildwood (140),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,EC1,EL,14,BLK,1900.0,STOLEN,25032,"{'type': 'Point', 'coordinates': (-79.20344161, 43.74250231)}"
-25044,12622,GO-20169012084,THEFT UNDER - BICYCLE,2016-10-14T00:00:00,2016,October,Friday,14,288,1,2016-10-15T00:00:00,2016,October,Saturday,15,289,11,D43,Toronto,140,Guildwood (140),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MA,,MT,10,,500.0,STOLEN,25033,"{'type': 'Point', 'coordinates': (-79.18681481, 43.75619385)}"
-25045,16760,GO-20191021506,THEFT UNDER - BICYCLE,2019-05-20T00:00:00,2019,May,Monday,20,140,12,2019-06-03T00:00:00,2019,June,Monday,3,154,17,D43,Toronto,140,Guildwood (140),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,HR,MT,21,BLKRED,1500.0,STOLEN,25034,"{'type': 'Point', 'coordinates': (-79.20497066, 43.75176062)}"
-25046,17431,GO-20142236679,THEFT UNDER,2014-06-06T00:00:00,2014,June,Friday,6,157,14,2014-06-07T00:00:00,2014,June,Saturday,7,158,15,D43,Toronto,140,Guildwood (140),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RIVET,,BM,0,BLKGRN,90.0,STOLEN,25035,"{'type': 'Point', 'coordinates': (-79.19246106, 43.75230264)}"
-25047,20119,GO-20209021815,THEFT UNDER,2020-08-30T00:00:00,2020,August,Sunday,30,243,23,2020-08-30T00:00:00,2020,August,Sunday,30,243,23,D43,Toronto,140,Guildwood (140),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,CYPRESS,MT,23,GRY,500.0,STOLEN,25036,"{'type': 'Point', 'coordinates': (-79.18307068, 43.75118784)}"
-25048,20520,GO-20169008373,THEFT UNDER - BICYCLE,2016-08-02T00:00:00,2016,August,Tuesday,2,215,16,2016-08-08T00:00:00,2016,August,Monday,8,221,10,D43,Toronto,140,Guildwood (140),Go Station,Transit,UK,MU UNO,FO,1,BLK,150.0,STOLEN,25037,"{'type': 'Point', 'coordinates': (-79.19911301, 43.74486732)}"
-25049,20547,GO-20161834289,PROPERTY - LOST,2016-10-15T00:00:00,2016,October,Saturday,15,289,10,2016-10-19T00:00:00,2016,October,Wednesday,19,293,7,D43,Toronto,140,Guildwood (140),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,GARNEAU,MT,7,BLKGRY,650.0,UNKNOWN,25038,"{'type': 'Point', 'coordinates': (-79.1949416, 43.75013999)}"
-25050,23610,GO-20159003406,THEFT UNDER,2015-06-07T00:00:00,2015,June,Sunday,7,158,17,2015-06-07T00:00:00,2015,June,Sunday,7,158,17,D43,Toronto,140,Guildwood (140),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CC,,MT,10,RED,300.0,STOLEN,25039,"{'type': 'Point', 'coordinates': (-79.20713393, 43.74904314)}"
-25051,23611,GO-20159003406,THEFT UNDER,2015-06-07T00:00:00,2015,June,Sunday,7,158,17,2015-06-07T00:00:00,2015,June,Sunday,7,158,17,D43,Toronto,140,Guildwood (140),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,MT,10,BLU,200.0,STOLEN,25040,"{'type': 'Point', 'coordinates': (-79.20713393, 43.74904314)}"
-25052,545,GO-2017990831,B&E,2017-06-02T00:00:00,2017,June,Friday,2,153,18,2017-06-05T00:00:00,2017,June,Monday,5,156,20,D14,Toronto,NSA,NSA,"Single Home, House (Attach Garage, Cottage, Mobile)",House,KHS,URBANEXPRESS,TO,21,,600.0,STOLEN,25042,"{'type': 'Point', 'coordinates': (-79.41277265, 43.64431894)}"
-25053,625,GO-20179008132,THEFT UNDER - BICYCLE,2017-06-14T00:00:00,2017,June,Wednesday,14,165,20,2017-06-15T00:00:00,2017,June,Thursday,15,166,11,D52,Toronto,NSA,NSA,"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KO,DR. GOOD,RG,7,GRY,800.0,STOLEN,25043,"{'type': 'Point', 'coordinates': (-79.51775154, 43.70060252)}"
-25054,1547,GO-20179016025,THEFT UNDER,2017-09-28T00:00:00,2017,September,Thursday,28,271,9,2017-09-28T00:00:00,2017,September,Thursday,28,271,16,D51,Toronto,NSA,NSA,"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,FJ,STROLL,RG,1,BLK,1000.0,STOLEN,25044,"{'type': 'Point', 'coordinates': (-79.51848076, 43.70501635)}"
-25055,3200,GO-20189026373,THEFT UNDER - BICYCLE,2018-08-14T00:00:00,2018,August,Tuesday,14,226,9,2018-08-14T00:00:00,2018,August,Tuesday,14,226,18,D32,Toronto,NSA,NSA,"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ROMANCE,MT,24,RED,700.0,STOLEN,25045,"{'type': 'Point', 'coordinates': (-78.51142759, 44.08750094)}"
-25056,6022,GO-20209010545,THEFT UNDER,2019-11-25T00:00:00,2019,November,Monday,25,329,18,2020-04-06T00:00:00,2020,April,Monday,6,97,11,NSA,NSA,NSA,NSA,"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,R2,RC,11,WHI,3616.0,STOLEN,25046,"{'type': 'Point', 'coordinates': (-79.05497879, 43.87868475)}"
-25057,6023,GO-20209010545,THEFT UNDER,2019-11-25T00:00:00,2019,November,Monday,25,329,18,2020-04-06T00:00:00,2020,April,Monday,6,97,11,NSA,NSA,NSA,NSA,"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,ESCAPE 3,RG,21,BLK,633.0,STOLEN,25047,"{'type': 'Point', 'coordinates': (-79.05497879, 43.87868475)}"
-25058,6346,GO-20209014990,THEFT UNDER,2020-06-07T00:00:00,2020,June,Sunday,7,159,17,2020-06-09T00:00:00,2020,June,Tuesday,9,161,15,NSA,NSA,NSA,NSA,"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,MT,6,BLK,100.0,STOLEN,25048,"{'type': 'Point', 'coordinates': (-79.52423159, 43.7733177)}"
-25059,7683,GO-20202276479,FRAUD OVER,2020-11-27T00:00:00,2020,November,Friday,27,332,0,2020-12-03T00:00:00,2020,December,Thursday,3,338,19,NSA,NSA,NSA,NSA,"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,TURBO LEVO,EL,18,GRY,7797.0,STOLEN,25049,"{'type': 'Point', 'coordinates': (-79.68129542000001, 43.45721073)}"
-25060,11970,GO-20161358555,THEFT UNDER - BICYCLE,2016-08-02T00:00:00,2016,August,Tuesday,2,215,12,2016-08-02T00:00:00,2016,August,Tuesday,2,215,17,D51,Toronto,NSA,NSA,"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,,MT,21,GRY,300.0,STOLEN,25051,"{'type': 'Point', 'coordinates': (-79.39033931, 43.65450322)}"
-25061,11971,GO-20161358555,THEFT UNDER - BICYCLE,2016-08-02T00:00:00,2016,August,Tuesday,2,215,12,2016-08-02T00:00:00,2016,August,Tuesday,2,215,17,D51,Toronto,NSA,NSA,"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,,MT,21,ONGBLK,250.0,STOLEN,25052,"{'type': 'Point', 'coordinates': (-79.39033931, 43.65450322)}"
-25062,12751,GO-20161987455,THEFT UNDER,2016-11-07T00:00:00,2016,November,Monday,7,312,11,2016-11-08T00:00:00,2016,November,Tuesday,8,313,13,D55,Toronto,NSA,NSA,"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,IRON HORSE,,RG,21,SIL,,STOLEN,25053,"{'type': 'Point', 'coordinates': (-79.33234245, 43.6814835)}"
-25063,13003,GO-20192122045,THEFT UNDER - BICYCLE,2019-10-18T00:00:00,2019,October,Friday,18,291,17,2019-11-03T00:00:00,2019,November,Sunday,3,307,0,NSA,NSA,NSA,NSA,"Apartment (Rooming House, Condo)",Apartment,GIANT,TCRA1,RG,20,BLKWHI,670.0,STOLEN,25054,"{'type': 'Point', 'coordinates': (-78.86377, 43.90553437)}"
-25064,14079,GO-20161242655,INVALID GO - RMS ONLY,2016-07-14T00:00:00,2016,July,Thursday,14,196,18,2016-07-15T00:00:00,2016,July,Friday,15,197,15,NSA,NSA,NSA,NSA,Unknown,Other,BMC,SLR01,RC,22,,10000.0,STOLEN,25055,"{'type': 'Point', 'coordinates': (-79.38515573, 43.65922594)}"
-25065,14152,GO-2017765386,THEFT UNDER - BICYCLE,2017-04-28T00:00:00,2017,April,Friday,28,118,18,2017-05-01T00:00:00,2017,May,Monday,1,121,14,D54,Toronto,NSA,NSA,"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUPERCYCLE,SC24,MT,10,BLUWHI,130.0,STOLEN,25056,"{'type': 'Point', 'coordinates': (-79.33435458, 43.70999672)}"
-25066,18918,GO-20159005585,THEFT UNDER,2015-08-10T00:00:00,2015,August,Monday,10,222,11,2015-08-10T00:00:00,2015,August,Monday,10,222,13,NSA,NSA,NSA,NSA,"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,NINJA,EL,50,,2000.0,STOLEN,25057,"{'type': 'Point', 'coordinates': (-79.52424633, 43.75592926000001)}"
-25067,19636,GO-20149004917,THEFT UNDER,2014-07-09T00:00:00,2014,July,Wednesday,9,190,14,2014-07-11T00:00:00,2014,July,Friday,11,192,17,D55,Toronto,NSA,NSA,Convenience Stores,Commercial,TR,,MT,11,BLU,1000.0,STOLEN,25058,"{'type': 'Point', 'coordinates': (-79.28831806, 43.69123147)}"
-25068,20910,GO-20149005867,THEFT UNDER,2014-07-25T00:00:00,2014,July,Friday,25,206,21,2014-08-12T00:00:00,2014,August,Tuesday,12,224,13,D43,Toronto,NSA,NSA,"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,REVEL 14,OT,21,TRQ,500.0,STOLEN,25059,"{'type': 'Point', 'coordinates': (-79.12759178, 43.8269029)}"
-25069,21811,GO-20142628900,THEFT UNDER,2014-08-03T00:00:00,2014,August,Sunday,3,215,15,2014-08-03T00:00:00,2014,August,Sunday,3,215,15,D12,Toronto,NSA,NSA,"Single Home, House (Attach Garage, Cottage, Mobile)",House,NAKAMURA,,MT,6,BLK,50.0,STOLEN,25060,"{'type': 'Point', 'coordinates': (-79.40561228, 43.65454446)}"
-25070,22211,GO-20162022392,B&E,2016-11-10T00:00:00,2016,November,Thursday,10,315,17,2016-11-14T00:00:00,2016,November,Monday,14,319,9,D55,Toronto,NSA,NSA,"Apartment (Rooming House, Condo)",Apartment,CERVELO,SOLSIST,OT,8,BLKBLU,3400.0,STOLEN,25061,"{'type': 'Point', 'coordinates': (-78.92729263, 43.88538775)}"
-25071,22212,GO-20162022392,B&E,2016-11-10T00:00:00,2016,November,Thursday,10,315,17,2016-11-14T00:00:00,2016,November,Monday,14,319,9,D55,Toronto,NSA,NSA,"Apartment (Rooming House, Condo)",Apartment,SCOTT,SCALE,MT,11,BLKGRN,1800.0,STOLEN,25062,"{'type': 'Point', 'coordinates': (-78.92729263, 43.88538775)}"
-25072,22278,GO-201891222,PROPERTY - FOUND,2018-01-06T00:00:00,2018,January,Saturday,6,6,0,2018-01-15T00:00:00,2018,January,Monday,15,15,19,NSA,NSA,NSA,NSA,"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,NAKAMURA,PRISTINE,MT,5,MUL,150.0,UNKNOWN,25063,"{'type': 'Point', 'coordinates': (-79.45182762, 43.80407048)}"
-25073,22306,GO-20189021646,THEFT UNDER - BICYCLE,2018-07-08T00:00:00,2018,July,Sunday,8,189,20,2018-07-08T00:00:00,2018,July,Sunday,8,189,20,NSA,NSA,NSA,NSA,"Apartment (Rooming House, Condo)",Apartment,UK,UNKNOWN,RG,50,GRY,600.0,STOLEN,25064,"{'type': 'Point', 'coordinates': (-79.73407985, 43.36778987000001)}"
-25074,24154,GO-2020591041,THEFT UNDER - BICYCLE,2020-03-19T00:00:00,2020,March,Thursday,19,79,3,2020-03-23T00:00:00,2020,March,Monday,23,83,21,D31,Toronto,NSA,NSA,Ttc Bus,Transit,CANADIAN TIRE,SUPERCYCLE,RG,5,BLK,1000.0,STOLEN,25065,"{'type': 'Point', 'coordinates': (-79.48202984, 43.72664298)}"
-25075,24362,GO-20189026373,THEFT UNDER - BICYCLE,2018-08-14T00:00:00,2018,August,Tuesday,14,226,9,2018-08-14T00:00:00,2018,August,Tuesday,14,226,18,D32,Toronto,NSA,NSA,"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,27,RED,700.0,STOLEN,25066,"{'type': 'Point', 'coordinates': (-78.51142759, 44.08750094)}"
-25076,23784,GO-20179003197,THEFT UNDER - BICYCLE,2017-03-13T00:00:00,2017,March,Monday,13,72,13,2017-03-13T00:00:00,2017,March,Monday,13,72,16,D43,Toronto,136,West Hill (136),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,GTX-700C,RG,21,RED,550.0,STOLEN,25067,"{'type': 'Point', 'coordinates': (-79.18236522, 43.76762212)}"
-25077,17453,GO-20142529839,THEFT UNDER,2014-07-03T00:00:00,2014,July,Thursday,3,184,5,2014-07-19T00:00:00,2014,July,Saturday,19,200,15,D43,Toronto,135,Morningside (135),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SCORPION,,EL,0,,1700.0,STOLEN,25068,"{'type': 'Point', 'coordinates': (-79.20558788, 43.76404781)}"
-25078,20908,GO-20142703889,B&E,2014-08-12T00:00:00,2014,August,Tuesday,12,224,15,2014-08-14T00:00:00,2014,August,Thursday,14,226,20,D43,Toronto,135,Morningside (135),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,MOUNTAIN BIKE,MT,8,SILBLU,40.0,STOLEN,25069,"{'type': 'Point', 'coordinates': (-79.20314401, 43.79048169)}"
-25079,20909,GO-20142703889,B&E,2014-08-12T00:00:00,2014,August,Tuesday,12,224,15,2014-08-14T00:00:00,2014,August,Thursday,14,226,20,D43,Toronto,135,Morningside (135),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,,MT,6,RED,65.0,STOLEN,25070,"{'type': 'Point', 'coordinates': (-79.20314401, 43.79048169)}"
-25080,23644,GO-20151437552,THEFT UNDER,2015-08-21T00:00:00,2015,August,Friday,21,233,6,2015-08-21T00:00:00,2015,August,Friday,21,233,6,D43,Toronto,135,Morningside (135),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,SHIFT'N GEARS,BM,1,SIL,100.0,RECOVERED,25071,"{'type': 'Point', 'coordinates': (-79.20566536000001, 43.78568446)}"
-25081,23974,GO-2015435252,POSSESSION PROPERTY OBC UNDER,2015-03-14T00:00:00,2015,March,Saturday,14,73,17,2015-03-14T00:00:00,2015,March,Saturday,14,73,17,D43,Toronto,135,Morningside (135),"Gas Station (Self, Full, Attached Convenience)",Commercial,RAND,,OT,1,BLURED,,RECOVERED,25072,"{'type': 'Point', 'coordinates': (-79.19330085, 43.78534276)}"
-25082,152,GO-2017434461,THEFT UNDER - BICYCLE,2017-03-08T00:00:00,2017,March,Wednesday,8,67,15,2017-03-10T00:00:00,2017,March,Friday,10,69,11,D43,Toronto,136,West Hill (136),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CMT,,MT,7,MRNSIL,250.0,STOLEN,25073,"{'type': 'Point', 'coordinates': (-79.18323393, 43.76758275)}"
-25083,153,GO-2017434461,THEFT UNDER - BICYCLE,2017-03-08T00:00:00,2017,March,Wednesday,8,67,15,2017-03-10T00:00:00,2017,March,Friday,10,69,11,D43,Toronto,136,West Hill (136),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CMT,,MT,5,BLK,250.0,STOLEN,25074,"{'type': 'Point', 'coordinates': (-79.18323393, 43.76758275)}"
-25084,744,GO-20171143670,THEFT UNDER - BICYCLE,2017-06-26T00:00:00,2017,June,Monday,26,177,17,2017-06-26T00:00:00,2017,June,Monday,26,177,19,D43,Toronto,136,West Hill (136),"Open Areas (Lakes, Parks, Rivers)",Outside,UNKNOWN,,MT,21,BLKLGR,,STOLEN,25075,"{'type': 'Point', 'coordinates': (-79.17575202, 43.76933178)}"
-25085,746,GO-20171144276,THEFT UNDER - BICYCLE,2017-06-26T00:00:00,2017,June,Monday,26,177,17,2017-06-26T00:00:00,2017,June,Monday,26,177,19,D43,Toronto,136,West Hill (136),"Open Areas (Lakes, Parks, Rivers)",Outside,UNKNOWN,,RC,10,RED,,STOLEN,25076,"{'type': 'Point', 'coordinates': (-79.17575202, 43.76933178)}"
-25086,1131,GO-20179012260,INVALID GO - RMS ONLY,2017-04-05T00:00:00,2017,April,Wednesday,5,95,11,2017-04-07T00:00:00,2017,April,Friday,7,97,7,D43,Toronto,136,West Hill (136),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,ROAD BIKE,RC,16,BLK,500.0,STOLEN,25077,"{'type': 'Point', 'coordinates': (-79.17388282, 43.77115371)}"
-25087,1339,GO-20171601428,THEFT UNDER - BICYCLE,2017-09-02T00:00:00,2017,September,Saturday,2,245,12,2017-09-04T00:00:00,2017,September,Monday,4,247,14,D43,Toronto,136,West Hill (136),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,HUFFY,,BM,1,BLKBLU,200.0,STOLEN,25078,"{'type': 'Point', 'coordinates': (-79.18773765, 43.77269909)}"
-25088,1788,GO-20171995422,THEFT UNDER - BICYCLE,2017-11-04T00:00:00,2017,November,Saturday,4,308,1,2017-11-04T00:00:00,2017,November,Saturday,4,308,1,D43,Toronto,136,West Hill (136),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,UNKNOWN,MT,18,BLURED,150.0,STOLEN,25079,"{'type': 'Point', 'coordinates': (-79.18877904, 43.76850527)}"
-25089,2141,GO-2018635005,THEFT UNDER - BICYCLE,2018-04-08T00:00:00,2018,April,Sunday,8,98,16,2018-04-09T00:00:00,2018,April,Monday,9,99,13,D43,Toronto,136,West Hill (136),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GLOBAL,,MT,0,GRN,300.0,STOLEN,25080,"{'type': 'Point', 'coordinates': (-79.18251530000002, 43.76302291)}"
-25090,3054,GO-20181418338,THEFT UNDER - BICYCLE,2018-08-02T00:00:00,2018,August,Thursday,2,214,21,2018-08-02T00:00:00,2018,August,Thursday,2,214,21,D43,Toronto,136,West Hill (136),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,BM,0,BLKRED,198.0,STOLEN,25081,"{'type': 'Point', 'coordinates': (-79.17377903, 43.76880091)}"
-25091,3055,GO-20181418338,THEFT UNDER - BICYCLE,2018-08-02T00:00:00,2018,August,Thursday,2,214,21,2018-08-02T00:00:00,2018,August,Thursday,2,214,21,D43,Toronto,136,West Hill (136),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,MT,0,BLKRED,180.0,STOLEN,25082,"{'type': 'Point', 'coordinates': (-79.17377903, 43.76880091)}"
-25092,3179,GO-20181492045,THEFT UNDER - BICYCLE,2018-08-12T00:00:00,2018,August,Sunday,12,224,19,2018-08-13T00:00:00,2018,August,Monday,13,225,17,D43,Toronto,136,West Hill (136),Schools During Un-Supervised Activity,Educational,UNKNOWN,UNKNOWN,MT,0,GRYGLD,,STOLEN,25083,"{'type': 'Point', 'coordinates': (-79.17472498, 43.76688953)}"
-25093,3400,GO-20189029256,THEFT UNDER - BICYCLE,2018-09-05T00:00:00,2018,September,Wednesday,5,248,8,2018-09-05T00:00:00,2018,September,Wednesday,5,248,19,D43,Toronto,136,West Hill (136),Go Station,Transit,UK,,RG,21,YEL,200.0,STOLEN,25084,"{'type': 'Point', 'coordinates': (-79.19634035, 43.75407726)}"
-25094,4643,GO-20191216723,THEFT UNDER,2019-06-30T00:00:00,2019,June,Sunday,30,181,16,2019-06-30T00:00:00,2019,June,Sunday,30,181,17,D43,Toronto,136,West Hill (136),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,HYPER,VIKING,MT,7,BLKRED,275.0,STOLEN,25085,"{'type': 'Point', 'coordinates': (-79.19103329, 43.76598065)}"
-25095,4822,GO-20199023049,THEFT UNDER,2019-07-19T00:00:00,2019,July,Friday,19,200,18,2019-07-20T00:00:00,2019,July,Saturday,20,201,20,D43,Toronto,136,West Hill (136),Schools During Un-Supervised Activity,Educational,SU,1800 MEN'S HARD,MT,10,WHI,109.0,STOLEN,25086,"{'type': 'Point', 'coordinates': (-79.1906151, 43.75870654)}"
-25096,4823,GO-20199023049,THEFT UNDER,2019-07-19T00:00:00,2019,July,Friday,19,200,18,2019-07-20T00:00:00,2019,July,Saturday,20,201,20,D43,Toronto,136,West Hill (136),Schools During Un-Supervised Activity,Educational,SU,1800 MEN'S HARD,MT,10,BLK,109.0,STOLEN,25087,"{'type': 'Point', 'coordinates': (-79.1906151, 43.75870654)}"
-25097,5665,GO-20199036912,THEFT UNDER,2019-11-08T00:00:00,2019,November,Friday,8,312,17,2019-11-08T00:00:00,2019,November,Friday,8,312,17,D43,Toronto,136,West Hill (136),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,10,WHI,450.0,STOLEN,25088,"{'type': 'Point', 'coordinates': (-79.1932545, 43.76320713)}"
-25098,6782,GO-20201410631,THEFT UNDER,2020-07-29T00:00:00,2020,July,Wednesday,29,211,1,2020-07-29T00:00:00,2020,July,Wednesday,29,211,11,D43,Toronto,136,West Hill (136),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,ROAD BIKE,OT,18,GRN,600.0,STOLEN,25089,"{'type': 'Point', 'coordinates': (-79.18948533, 43.77391972)}"
-25099,6783,GO-20201410631,THEFT UNDER,2020-07-29T00:00:00,2020,July,Wednesday,29,211,1,2020-07-29T00:00:00,2020,July,Wednesday,29,211,11,D43,Toronto,136,West Hill (136),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,UNKNOWN,OT,18,GRY,1000.0,STOLEN,25090,"{'type': 'Point', 'coordinates': (-79.18948533, 43.77391972)}"
-25100,7039,GO-20201560777,THEFT UNDER - BICYCLE,2020-08-11T00:00:00,2020,August,Tuesday,11,224,17,2020-08-19T00:00:00,2020,August,Wednesday,19,232,17,D43,Toronto,136,West Hill (136),Convenience Stores,Commercial,GIANT,,MT,21,WHI,100.0,STOLEN,25091,"{'type': 'Point', 'coordinates': (-79.18334086, 43.77042384)}"
-25101,7291,GO-20209023791,THEFT UNDER,2020-09-08T00:00:00,2020,September,Tuesday,8,252,11,2020-09-18T00:00:00,2020,September,Friday,18,262,19,D43,Toronto,136,West Hill (136),Go Station,Transit,RA,,MT,18,YEL,600.0,STOLEN,25092,"{'type': 'Point', 'coordinates': (-79.19634035, 43.75407726)}"
-25102,7969,GO-20142124470,B&E,2014-05-21T00:00:00,2014,May,Wednesday,21,141,18,2014-05-21T00:00:00,2014,May,Wednesday,21,141,18,D43,Toronto,136,West Hill (136),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FORTRESS,1700DT,SC,1,RED,3264.0,STOLEN,25093,"{'type': 'Point', 'coordinates': (-79.17590524, 43.77615675)}"
-25103,8009,GO-20142193018,THEFT UNDER,2014-05-20T00:00:00,2014,May,Tuesday,20,140,8,2014-05-31T00:00:00,2014,May,Saturday,31,151,18,D43,Toronto,136,West Hill (136),"Apartment (Rooming House, Condo)",Apartment,SUPERCYCLE,MOUNTAIN,MT,21,BLU,200.0,STOLEN,25094,"{'type': 'Point', 'coordinates': (-79.18236522, 43.76762212)}"
-25104,8088,GO-20142269194,ROBBERY - MUGGING,2014-06-07T00:00:00,2014,June,Saturday,7,158,22,2014-06-11T00:00:00,2014,June,Wednesday,11,162,16,D43,Toronto,136,West Hill (136),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,MT,18,BLK,100.0,STOLEN,25095,"{'type': 'Point', 'coordinates': (-79.16911180000001, 43.77723134)}"
-25105,8285,GO-20142222502,THEFT UNDER,2014-06-04T00:00:00,2014,June,Wednesday,4,155,20,2014-06-04T00:00:00,2014,June,Wednesday,4,155,20,D43,Toronto,136,West Hill (136),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MURRAY,,MT,12,GRNLGR,,STOLEN,25096,"{'type': 'Point', 'coordinates': (-79.17567212, 43.76400284)}"
-25106,8286,GO-20142222502,THEFT UNDER,2014-06-04T00:00:00,2014,June,Wednesday,4,155,20,2014-06-04T00:00:00,2014,June,Wednesday,4,155,20,D43,Toronto,136,West Hill (136),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MURRAY,,MT,12,TRQ,,STOLEN,25097,"{'type': 'Point', 'coordinates': (-79.17567212, 43.76400284)}"
-25107,8413,GO-20142520518,THEFT UNDER,2014-07-17T00:00:00,2014,July,Thursday,17,198,11,2014-07-17T00:00:00,2014,July,Thursday,17,198,13,D43,Toronto,136,West Hill (136),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,SUPERCYCLE,,MT,14,BLU,300.0,UNKNOWN,25098,"{'type': 'Point', 'coordinates': (-79.18561858, 43.76660497)}"
-25108,8659,GO-20142727302,THEFT UNDER,2014-08-18T00:00:00,2014,August,Monday,18,230,15,2014-08-18T00:00:00,2014,August,Monday,18,230,15,D43,Toronto,136,West Hill (136),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OTHER,,MT,21,BLK,300.0,STOLEN,25099,"{'type': 'Point', 'coordinates': (-79.1774535, 43.77038073)}"
-25109,8841,GO-20142878207,THEFT UNDER,2014-09-09T00:00:00,2014,September,Tuesday,9,252,17,2014-09-10T00:00:00,2014,September,Wednesday,10,253,17,D43,Toronto,136,West Hill (136),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,INFINITY,MERIDIAN,MT,10,LBL,240.0,STOLEN,25100,"{'type': 'Point', 'coordinates': (-79.1774535, 43.77038073)}"
-25110,8903,GO-20142913813,THEFT UNDER,2014-09-10T00:00:00,2014,September,Wednesday,10,253,10,2014-09-15T00:00:00,2014,September,Monday,15,258,11,D43,Toronto,136,West Hill (136),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KHS,,RG,21,SIL,400.0,STOLEN,25101,"{'type': 'Point', 'coordinates': (-79.16884112, 43.77230036)}"
-25111,9445,GO-2015642486,THEFT UNDER,2015-04-18T00:00:00,2015,April,Saturday,18,108,15,2015-04-18T00:00:00,2015,April,Saturday,18,108,15,D43,Toronto,136,West Hill (136),Schools During Un-Supervised Activity,Educational,NEXT,,OT,21,WHI,,RECOVERED,25102,"{'type': 'Point', 'coordinates': (-79.1906151, 43.75870654)}"
-25112,9467,GO-2015679360,THEFT UNDER,2015-04-16T00:00:00,2015,April,Thursday,16,106,15,2015-04-24T00:00:00,2015,April,Friday,24,114,16,D43,Toronto,136,West Hill (136),Schools During Supervised Activity,Educational,CCM,STATIC,BM,0,WHIRED,200.0,STOLEN,25103,"{'type': 'Point', 'coordinates': (-79.19386682, 43.76017349)}"
-25113,9741,GO-2015957529,THEFT UNDER,2015-06-08T00:00:00,2015,June,Monday,8,159,4,2015-06-08T00:00:00,2015,June,Monday,8,159,6,D43,Toronto,136,West Hill (136),"Apartment (Rooming House, Condo)",Apartment,DYNASTY,ARASHI,MT,0,BLKWHI,500.0,STOLEN,25104,"{'type': 'Point', 'coordinates': (-79.19794787, 43.76191258)}"
-25114,9816,GO-20151021882,THEFT UNDER,2015-06-17T00:00:00,2015,June,Wednesday,17,168,23,2015-06-18T00:00:00,2015,June,Thursday,18,169,8,D43,Toronto,136,West Hill (136),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,BURNER AL,MT,12,REDBLK,,STOLEN,25105,"{'type': 'Point', 'coordinates': (-79.19494675, 43.76266829)}"
-25115,9998,GO-20159004468,THEFT FROM MOTOR VEHICLE UNDER,2015-07-07T00:00:00,2015,July,Tuesday,7,188,20,2015-07-12T00:00:00,2015,July,Sunday,12,193,20,D43,Toronto,136,West Hill (136),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,P1 AM,MT,24,BLK,0.0,STOLEN,25106,"{'type': 'Point', 'coordinates': (-79.15152494, 43.76378774)}"
-25116,10032,GO-20151203393,THEFT UNDER,2015-07-15T00:00:00,2015,July,Wednesday,15,196,21,2015-07-15T00:00:00,2015,July,Wednesday,15,196,21,D43,Toronto,136,West Hill (136),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,OT,1,BLUBLK,,STOLEN,25107,"{'type': 'Point', 'coordinates': (-79.18956912, 43.76765091)}"
-25117,10149,GO-20159005184,THEFT UNDER,2015-07-30T00:00:00,2015,July,Thursday,30,211,8,2015-07-30T00:00:00,2015,July,Thursday,30,211,22,D43,Toronto,136,West Hill (136),Go Station,Transit,UK,,RG,21,GRY,350.0,STOLEN,25108,"{'type': 'Point', 'coordinates': (-79.19634035, 43.75407726)}"
-25118,10642,GO-20151790561,PROPERTY - FOUND,2015-10-17T00:00:00,2015,October,Saturday,17,290,18,2015-10-17T00:00:00,2015,October,Saturday,17,290,18,D43,Toronto,136,West Hill (136),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,DEVINCI,AMSTERDAM,TO,27,GRN,1200.0,UNKNOWN,25109,"{'type': 'Point', 'coordinates': (-79.18334086, 43.77042384)}"
-25119,10735,GO-20151921735,THEFT UNDER,2015-11-08T00:00:00,2015,November,Sunday,8,312,18,2015-11-08T00:00:00,2015,November,Sunday,8,312,19,D43,Toronto,136,West Hill (136),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN,,RC,0,GLD,,STOLEN,25110,"{'type': 'Point', 'coordinates': (-79.17575202, 43.76933178)}"
-25120,11036,GO-2016418627,THEFT UNDER,2016-02-24T00:00:00,2016,February,Wednesday,24,55,12,2016-03-10T00:00:00,2016,March,Thursday,10,70,11,D43,Toronto,136,West Hill (136),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,UNKNOWN MAKE,FORTRESS,EL,1,BLU,2000.0,STOLEN,25111,"{'type': 'Point', 'coordinates': (-79.19165270000002, 43.76720202)}"
-25121,11140,GO-2016650680,PROPERTY - FOUND,2016-04-16T00:00:00,2016,April,Saturday,16,107,20,2016-04-16T00:00:00,2016,April,Saturday,16,107,20,D43,Toronto,136,West Hill (136),"Apartment (Rooming House, Condo)",Apartment,SCHWINN,",SUSPEND",MT,21,REDBLU,299.0,UNKNOWN,25112,"{'type': 'Point', 'coordinates': (-79.18618517, 43.76840677)}"
-25122,11289,GO-2016809180,THEFT UNDER - BICYCLE,2016-05-11T00:00:00,2016,May,Wednesday,11,132,12,2016-05-11T00:00:00,2016,May,Wednesday,11,132,12,D43,Toronto,136,West Hill (136),"Open Areas (Lakes, Parks, Rivers)",Outside,AQUILA,,MT,28,SIL,,STOLEN,25113,"{'type': 'Point', 'coordinates': (-79.19943219, 43.765444970000004)}"
-25123,11369,GO-20168999253,THEFT UNDER,2016-05-24T00:00:00,2016,May,Tuesday,24,145,9,2016-05-24T00:00:00,2016,May,Tuesday,24,145,9,D43,Toronto,136,West Hill (136),"Apartment (Rooming House, Condo)",Apartment,OTHER,,TO,18,GRN,,STOLEN,25114,"{'type': 'Point', 'coordinates': (-79.18251530000002, 43.76302291)}"
-25124,11459,GO-2016981032,THEFT UNDER - BICYCLE,2016-06-03T00:00:00,2016,June,Friday,3,155,21,2016-06-06T00:00:00,2016,June,Monday,6,158,9,D43,Toronto,136,West Hill (136),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,UNKNOWN,OT,21,RED,,STOLEN,25115,"{'type': 'Point', 'coordinates': (-79.18484133, 43.7648656)}"
-25125,11584,GO-20161078531,THEFT UNDER - BICYCLE,2016-06-16T00:00:00,2016,June,Thursday,16,168,15,2016-06-20T00:00:00,2016,June,Monday,20,172,19,D43,Toronto,136,West Hill (136),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UNKNOWN MAKE,,MT,20,,100.0,STOLEN,25116,"{'type': 'Point', 'coordinates': (-79.1774535, 43.77038073)}"
-25126,12021,GO-20161398518,THEFT UNDER - BICYCLE,2016-08-08T00:00:00,2016,August,Monday,8,221,19,2016-08-08T00:00:00,2016,August,Monday,8,221,20,D43,Toronto,136,West Hill (136),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NEXT,,MT,18,SIL,600.0,STOLEN,25117,"{'type': 'Point', 'coordinates': (-79.17953063, 43.76480286)}"
-25127,12022,GO-20161398518,THEFT UNDER - BICYCLE,2016-08-08T00:00:00,2016,August,Monday,8,221,19,2016-08-08T00:00:00,2016,August,Monday,8,221,20,D43,Toronto,136,West Hill (136),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,MT,18,BLK,100.0,STOLEN,25118,"{'type': 'Point', 'coordinates': (-79.17953063, 43.76480286)}"
-25128,12146,GO-20161480768,THEFT UNDER - BICYCLE,2016-08-20T00:00:00,2016,August,Saturday,20,233,12,2016-08-21T00:00:00,2016,August,Sunday,21,234,14,D43,Toronto,136,West Hill (136),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,MT,21,BLK,,STOLEN,25119,"{'type': 'Point', 'coordinates': (-79.18334086, 43.77042384)}"
-25129,12161,GO-20169009157,THEFT UNDER,2016-08-19T00:00:00,2016,August,Friday,19,232,1,2016-08-21T00:00:00,2016,August,Sunday,21,234,10,D43,Toronto,136,West Hill (136),Go Station,Transit,UK,,RG,15,RED,0.0,STOLEN,25120,"{'type': 'Point', 'coordinates': (-79.17883915, 43.76329168)}"
-25130,12294,GO-20161595926,PROPERTY - FOUND,2016-09-08T00:00:00,2016,September,Thursday,8,252,17,2016-09-08T00:00:00,2016,September,Thursday,8,252,17,D43,Toronto,136,West Hill (136),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,SUPERCYCLE,MOMENTUM,RG,10,,,UNKNOWN,25121,"{'type': 'Point', 'coordinates': (-79.1774535, 43.77038073)}"
-25131,12308,GO-20161610834,THEFT UNDER - BICYCLE,2016-09-10T00:00:00,2016,September,Saturday,10,254,19,2016-09-10T00:00:00,2016,September,Saturday,10,254,19,D43,Toronto,136,West Hill (136),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BMX,KIDS,BM,0,,,STOLEN,25122,"{'type': 'Point', 'coordinates': (-79.17377903, 43.76880091)}"
-25132,13498,GO-20199018977,THEFT UNDER,2019-06-17T00:00:00,2019,June,Monday,17,168,16,2019-06-17T00:00:00,2019,June,Monday,17,168,17,D43,Toronto,136,West Hill (136),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,SC,HYDRA,OT,24,SIL,600.0,STOLEN,25123,"{'type': 'Point', 'coordinates': (-79.1774535, 43.77038073)}"
-25133,13499,GO-20199019300,THEFT UNDER,2019-06-19T00:00:00,2019,June,Wednesday,19,170,18,2019-06-19T00:00:00,2019,June,Wednesday,19,170,19,D43,Toronto,136,West Hill (136),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,,MT,12,BLK,200.0,STOLEN,25124,"{'type': 'Point', 'coordinates': (-79.17575202, 43.76933178)}"
-25134,13533,GO-20192298342,PROPERTY - FOUND,2019-11-28T00:00:00,2019,November,Thursday,28,332,16,2019-11-28T00:00:00,2019,November,Thursday,28,332,16,D43,Toronto,136,West Hill (136),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,SUPERCYCLE,NITRO XT,MT,21,WHI,,UNKNOWN,25126,"{'type': 'Point', 'coordinates': (-79.17928657, 43.77467748)}"
-25135,13539,GO-2020768906,B&E,2020-04-18T00:00:00,2020,April,Saturday,18,109,18,2020-04-22T00:00:00,2020,April,Wednesday,22,113,19,D43,Toronto,136,West Hill (136),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,MT,21,BLK,200.0,STOLEN,25127,"{'type': 'Point', 'coordinates': (-79.18877904, 43.76850527)}"
-25136,13724,GO-20179017657,THEFT UNDER,2017-10-19T00:00:00,2017,October,Thursday,19,292,8,2017-10-19T00:00:00,2017,October,Thursday,19,292,22,D43,Toronto,136,West Hill (136),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,SOHO,RG,24,GRY,1650.0,STOLEN,25128,"{'type': 'Point', 'coordinates': (-79.17388282, 43.77115371)}"
-25137,13888,GO-20159004782,THEFT UNDER,2015-07-20T00:00:00,2015,July,Monday,20,201,17,2015-07-20T00:00:00,2015,July,Monday,20,201,23,D43,Toronto,136,West Hill (136),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RA,,MT,12,BLK,0.0,STOLEN,25129,"{'type': 'Point', 'coordinates': (-79.19494675, 43.76266829)}"
-25138,13999,GO-20161491977,PROPERTY - FOUND,2016-08-23T00:00:00,2016,August,Tuesday,23,236,10,2016-08-23T00:00:00,2016,August,Tuesday,23,236,10,D43,Toronto,136,West Hill (136),"Open Areas (Lakes, Parks, Rivers)",Outside,MILLENNIUM,,MT,18,BLK,,UNKNOWN,25130,"{'type': 'Point', 'coordinates': (-79.17988395000002, 43.76562593)}"
-25139,14013,GO-20169010285,THEFT UNDER - BICYCLE,2016-09-11T00:00:00,2016,September,Sunday,11,255,7,2016-09-11T00:00:00,2016,September,Sunday,11,255,21,D43,Toronto,136,West Hill (136),Schools During Un-Supervised Activity,Educational,OT,MYKA,MT,21,SIL,550.0,STOLEN,25131,"{'type': 'Point', 'coordinates': (-79.18787369, 43.76690238)}"
-25140,14050,GO-2017666213,DRUG - POSS COCAINE (SCHD I),2017-04-12T00:00:00,2017,April,Wednesday,12,102,16,2017-04-15T00:00:00,2017,April,Saturday,15,105,23,D43,Toronto,136,West Hill (136),"Apartment (Rooming House, Condo)",Apartment,OTHER,,SC,1,DBL,,UNKNOWN,25132,"{'type': 'Point', 'coordinates': (-79.18803696, 43.76726763)}"
-25141,14396,GO-20149005379,THEFT UNDER,2014-07-27T00:00:00,2014,July,Sunday,27,208,12,2014-07-27T00:00:00,2014,July,Sunday,27,208,19,D43,Toronto,136,West Hill (136),Go Station,Transit,UK,,MT,21,GRY,400.0,STOLEN,25133,"{'type': 'Point', 'coordinates': (-79.19634035, 43.75407726)}"
-25142,14427,GO-20143270109,THEFT UNDER,2014-11-09T00:00:00,2014,November,Sunday,9,313,16,2014-11-09T00:00:00,2014,November,Sunday,9,313,16,D43,Toronto,136,West Hill (136),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,,OT,0,,,STOLEN,25134,"{'type': 'Point', 'coordinates': (-79.18714938, 43.76437687)}"
-25143,14435,GO-2015234735,THEFT UNDER,2015-01-23T00:00:00,2015,January,Friday,23,23,0,2015-02-09T00:00:00,2015,February,Monday,9,40,13,D43,Toronto,136,West Hill (136),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SCHWINN,ECO TOUR,EL,7,BLK,950.0,STOLEN,25135,"{'type': 'Point', 'coordinates': (-79.18148887, 43.77614381)}"
-25144,16806,GO-20209006778,THEFT UNDER,2020-02-24T00:00:00,2020,February,Monday,24,55,22,2020-02-25T00:00:00,2020,February,Tuesday,25,56,9,D43,Toronto,136,West Hill (136),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,,MT,18,BLK,600.0,STOLEN,25136,"{'type': 'Point', 'coordinates': (-79.19164051, 43.769822180000006)}"
-25145,16807,GO-20209006778,THEFT UNDER,2020-02-24T00:00:00,2020,February,Monday,24,55,22,2020-02-25T00:00:00,2020,February,Tuesday,25,56,9,D43,Toronto,136,West Hill (136),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,10,BLK,300.0,STOLEN,25137,"{'type': 'Point', 'coordinates': (-79.19164051, 43.769822180000006)}"
-25146,16850,GO-20202040830,THEFT OF EBIKE UNDER $5000,2020-09-27T00:00:00,2020,September,Sunday,27,271,9,2020-10-27T00:00:00,2020,October,Tuesday,27,301,18,D43,Toronto,136,West Hill (136),Go Station,Transit,OTHER,ARROW,EL,1,ONGBLK,2100.0,STOLEN,25138,"{'type': 'Point', 'coordinates': (-79.19634035, 43.75407726)}"
-25147,16917,GO-2017936257,THEFT UNDER - BICYCLE,2017-05-27T00:00:00,2017,May,Saturday,27,147,14,2017-05-27T00:00:00,2017,May,Saturday,27,147,15,D43,Toronto,136,West Hill (136),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,HUFFY,BMX,BM,0,BLU,150.0,STOLEN,25139,"{'type': 'Point', 'coordinates': (-79.18682531, 43.77061047)}"
-25148,16999,GO-20171966479,B&E,2017-10-29T00:00:00,2017,October,Sunday,29,302,7,2017-10-30T00:00:00,2017,October,Monday,30,303,18,D43,Toronto,136,West Hill (136),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,HELIUM,MT,21,BLUGRY,300.0,STOLEN,25140,"{'type': 'Point', 'coordinates': (-79.17953063, 43.76480286)}"
-25149,17160,GO-20151441753,THEFT UNDER,2015-08-21T00:00:00,2015,August,Friday,21,233,20,2015-08-21T00:00:00,2015,August,Friday,21,233,20,D43,Toronto,136,West Hill (136),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,MT,0,BLK,50.0,STOLEN,25141,"{'type': 'Point', 'coordinates': (-79.18334086, 43.77042384)}"
-25150,17239,GO-20169006545,INFORMATION ONLY,2016-06-29T00:00:00,2016,June,Wednesday,29,181,21,2016-06-29T00:00:00,2016,June,Wednesday,29,181,21,D43,Toronto,136,West Hill (136),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,TR,3 SERIES TBI-04,MT,21,WHI,3500.0,STOLEN,25142,"{'type': 'Point', 'coordinates': (-79.18335006, 43.77430715)}"
-25151,17256,GO-20169008899,THEFT UNDER,2016-08-11T00:00:00,2016,August,Thursday,11,224,15,2016-08-16T00:00:00,2016,August,Tuesday,16,229,22,D43,Toronto,136,West Hill (136),Go Station,Transit,OT,ROCKHOPPER 29,MT,27,BLK,1400.0,STOLEN,25143,"{'type': 'Point', 'coordinates': (-79.19634035, 43.75407726)}"
-25152,17259,GO-20161500950,THEFT UNDER - BICYCLE,2016-08-24T00:00:00,2016,August,Wednesday,24,237,15,2016-08-24T00:00:00,2016,August,Wednesday,24,237,16,D43,Toronto,136,West Hill (136),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUPERCYCLE,,MT,21,BLUGRY,125.0,STOLEN,25144,"{'type': 'Point', 'coordinates': (-79.18334086, 43.77042384)}"
-25153,17509,GO-2015610170,MISCHIEF UNDER,2015-04-13T00:00:00,2015,April,Monday,13,103,13,2015-04-13T00:00:00,2015,April,Monday,13,103,14,D43,Toronto,136,West Hill (136),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UNKNOWN,,RG,1,,,STOLEN,25145,"{'type': 'Point', 'coordinates': (-79.19485322, 43.76649368)}"
-25154,20024,GO-20199013277,THEFT UNDER,2019-01-01T00:00:00,2019,January,Tuesday,1,1,14,2019-04-27T00:00:00,2019,April,Saturday,27,117,15,D43,Toronto,136,West Hill (136),"Apartment (Rooming House, Condo)",Apartment,SC,,RG,3,WHI,300.0,STOLEN,25146,"{'type': 'Point', 'coordinates': (-79.19639419000002, 43.76614804)}"
-25155,20103,GO-20201260360,B&E,2020-07-07T00:00:00,2020,July,Tuesday,7,189,20,2020-07-08T00:00:00,2020,July,Wednesday,8,190,9,D43,Toronto,136,West Hill (136),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,MT,7,GRYGRN,,STOLEN,25147,"{'type': 'Point', 'coordinates': (-79.17956838, 43.76836259)}"
-25156,20120,GO-20201693165,THEFT UNDER - BICYCLE,2020-07-11T00:00:00,2020,July,Saturday,11,193,16,2020-09-07T00:00:00,2020,September,Monday,7,251,14,D43,Toronto,136,West Hill (136),"Gas Station (Self, Full, Attached Convenience)",Commercial,MIELE,,OT,10,WHI,2000.0,STOLEN,25148,"{'type': 'Point', 'coordinates': (-79.17793116, 43.77485588)}"
-25157,20413,GO-20151244975,THEFT UNDER,2015-07-18T00:00:00,2015,July,Saturday,18,199,8,2015-07-21T00:00:00,2015,July,Tuesday,21,202,20,D43,Toronto,136,West Hill (136),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RALEIGH,,OT,18,BRN,,STOLEN,25149,"{'type': 'Point', 'coordinates': (-79.18484133, 43.7648656)}"
-25158,20422,GO-20159005143,THEFT UNDER,2015-07-27T00:00:00,2015,July,Monday,27,208,18,2015-07-30T00:00:00,2015,July,Thursday,30,211,9,D43,Toronto,136,West Hill (136),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,MT,21,BLU,0.0,STOLEN,25150,"{'type': 'Point', 'coordinates': (-79.19848161, 43.76321017)}"
-25159,20443,GO-20151725775,THEFT UNDER,2015-10-06T00:00:00,2015,October,Tuesday,6,279,14,2015-10-07T00:00:00,2015,October,Wednesday,7,280,9,D43,Toronto,136,West Hill (136),Schools During Supervised Activity,Educational,OTHER,,BM,1,BLKWHI,250.0,STOLEN,25151,"{'type': 'Point', 'coordinates': (-79.1956525, 43.76432345)}"
-25160,20500,GO-20161064669,THEFT UNDER - BICYCLE,2016-06-18T00:00:00,2016,June,Saturday,18,170,13,2016-06-18T00:00:00,2016,June,Saturday,18,170,17,D43,Toronto,136,West Hill (136),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NEXT,,RC,10,WHI,300.0,STOLEN,25152,"{'type': 'Point', 'coordinates': (-79.17575202, 43.76933178)}"
-25161,20501,GO-20161064669,THEFT UNDER - BICYCLE,2016-06-18T00:00:00,2016,June,Saturday,18,170,13,2016-06-18T00:00:00,2016,June,Saturday,18,170,17,D43,Toronto,136,West Hill (136),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RALEIGH,,MT,21,BLKRED,,STOLEN,25153,"{'type': 'Point', 'coordinates': (-79.17575202, 43.76933178)}"
-25162,20502,GO-20161064669,THEFT UNDER - BICYCLE,2016-06-18T00:00:00,2016,June,Saturday,18,170,13,2016-06-18T00:00:00,2016,June,Saturday,18,170,17,D43,Toronto,136,West Hill (136),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RALEIGH,,MT,21,WHI,,STOLEN,25154,"{'type': 'Point', 'coordinates': (-79.17575202, 43.76933178)}"
-25163,20514,GO-20161334469,THEFT UNDER - BICYCLE,2016-07-29T00:00:00,2016,July,Friday,29,211,19,2016-07-29T00:00:00,2016,July,Friday,29,211,19,D43,Toronto,136,West Hill (136),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,HUFFY,,MT,21,RED,200.0,STOLEN,25155,"{'type': 'Point', 'coordinates': (-79.17575202, 43.76933178)}"
-25164,20540,GO-20161741158,PROPERTY - LOST,2016-09-30T00:00:00,2016,September,Friday,30,274,19,2016-09-30T00:00:00,2016,September,Friday,30,274,20,D43,Toronto,136,West Hill (136),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,HUFFY,RIDID SPORT,RG,0,GRY,0.0,UNKNOWN,25156,"{'type': 'Point', 'coordinates': (-79.17623866, 43.77064733)}"
-25165,20858,GO-20142020883,THEFT UNDER,2014-05-05T00:00:00,2014,May,Monday,5,125,16,2014-05-05T00:00:00,2014,May,Monday,5,125,18,D43,Toronto,136,West Hill (136),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,OT,8,GRN,160.0,STOLEN,25157,"{'type': 'Point', 'coordinates': (-79.18334086, 43.77042384)}"
-25166,23270,GO-20191151711,THEFT OF EBIKE UNDER $5000,2016-06-19T00:00:00,2016,June,Sunday,19,171,18,2019-06-21T00:00:00,2019,June,Friday,21,172,15,D43,Toronto,136,West Hill (136),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BLUE ICE,,EL,1,BLK,,STOLEN,25158,"{'type': 'Point', 'coordinates': (-79.18606757, 43.76461694)}"
-25167,23293,GO-20199025443,THEFT UNDER,2019-08-08T00:00:00,2019,August,Thursday,8,220,7,2019-08-08T00:00:00,2019,August,Thursday,8,220,22,D43,Toronto,136,West Hill (136),Go Station,Transit,UK,,OT,1,BLK,35.0,STOLEN,25159,"{'type': 'Point', 'coordinates': (-79.1992585, 43.75703738)}"
-25168,23301,GO-20191660019,THEFT UNDER,2019-08-30T00:00:00,2019,August,Friday,30,242,17,2019-08-30T00:00:00,2019,August,Friday,30,242,19,D43,Toronto,136,West Hill (136),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,UNKNOWN,RG,18,RED,1400.0,STOLEN,25160,"{'type': 'Point', 'coordinates': (-79.18618517, 43.76840677)}"
-25169,23324,GO-20209014572,THEFT UNDER - BICYCLE,2020-06-04T00:00:00,2020,June,Thursday,4,156,12,2020-06-04T00:00:00,2020,June,Thursday,4,156,14,D43,Toronto,136,West Hill (136),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,UK,WAL MART 26 INC,BM,1,GRN,200.0,STOLEN,25161,"{'type': 'Point', 'coordinates': (-79.18334086, 43.77042384)}"
-25170,23470,GO-20179014916,THEFT UNDER - BICYCLE,2017-09-16T00:00:00,2017,September,Saturday,16,259,2,2017-09-16T00:00:00,2017,September,Saturday,16,259,11,D43,Toronto,136,West Hill (136),"Apartment (Rooming House, Condo)",Apartment,CC,CITY EXPRESS,OT,16,RED,100.0,STOLEN,25162,"{'type': 'Point', 'coordinates': (-79.18682531, 43.77061047)}"
-25171,23587,GO-20189027998,THEFT UNDER,2018-08-23T00:00:00,2018,August,Thursday,23,235,0,2018-08-26T00:00:00,2018,August,Sunday,26,238,14,D43,Toronto,136,West Hill (136),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DB,,MT,14,BLU,300.0,STOLEN,25163,"{'type': 'Point', 'coordinates': (-79.19453886, 43.76487287)}"
-25172,23588,GO-20189027998,THEFT UNDER,2018-08-23T00:00:00,2018,August,Thursday,23,235,0,2018-08-26T00:00:00,2018,August,Sunday,26,238,14,D43,Toronto,136,West Hill (136),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DB,,MT,12,PLE,250.0,STOLEN,25164,"{'type': 'Point', 'coordinates': (-79.19453886, 43.76487287)}"
-25173,23682,GO-2016575259,THEFT UNDER,2016-04-04T00:00:00,2016,April,Monday,4,95,18,2016-04-05T00:00:00,2016,April,Tuesday,5,96,8,D43,Toronto,136,West Hill (136),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UNKNOWN,,OT,0,BLKLGR,,STOLEN,25165,"{'type': 'Point', 'coordinates': (-79.1774535, 43.77038073)}"
-25174,23757,GO-20161783490,PROPERTY - FOUND,2016-10-07T00:00:00,2016,October,Friday,7,281,8,2016-10-07T00:00:00,2016,October,Friday,7,281,8,D43,Toronto,136,West Hill (136),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,SRRENTO,EL,1,REDWHI,,UNKNOWN,25167,"{'type': 'Point', 'coordinates': (-79.18787369, 43.76690238)}"
-25175,23889,GO-20142222095,THEFT UNDER,2014-06-04T00:00:00,2014,June,Wednesday,4,155,15,2014-06-04T00:00:00,2014,June,Wednesday,4,155,19,D43,Toronto,136,West Hill (136),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,MT,21,GRY,189.0,STOLEN,25168,"{'type': 'Point', 'coordinates': (-79.1774535, 43.77038073)}"
-25176,12143,GO-20169009073,THEFT UNDER,2016-08-19T00:00:00,2016,August,Friday,19,232,15,2016-08-19T00:00:00,2016,August,Friday,19,232,16,D43,Toronto,127,Bendale (127),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,SU,,RG,10,,0.0,STOLEN,25169,"{'type': 'Point', 'coordinates': (-79.24438083, 43.75123791)}"
-25177,13599,GO-20202319326,THEFT UNDER - BICYCLE,2020-12-08T00:00:00,2020,December,Tuesday,8,343,15,2020-12-08T00:00:00,2020,December,Tuesday,8,343,23,D43,Toronto,127,Bendale (127),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,ZZZ,,MT,15,BLKYEL,150.0,STOLEN,25170,"{'type': 'Point', 'coordinates': (-79.25417421, 43.77664803)}"
-25178,13744,GO-20189010391,THEFT UNDER - BICYCLE,2018-04-03T00:00:00,2018,April,Tuesday,3,93,14,2018-04-03T00:00:00,2018,April,Tuesday,3,93,19,D41,Toronto,127,Bendale (127),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,6,BLK,150.0,STOLEN,25171,"{'type': 'Point', 'coordinates': (-79.26074146, 43.76832613)}"
-25179,13869,GO-20159003009,THEFT UNDER,2015-05-21T00:00:00,2015,May,Thursday,21,141,18,2015-05-21T00:00:00,2015,May,Thursday,21,141,23,D41,Toronto,127,Bendale (127),Bar / Restaurant,Commercial,SU,VA1814,MT,21,BLU,200.0,STOLEN,25172,"{'type': 'Point', 'coordinates': (-79.25848253, 43.75285727000001)}"
-25180,13964,GO-20169004242,THEFT UNDER,2016-05-06T00:00:00,2016,May,Friday,6,127,22,2016-05-07T00:00:00,2016,May,Saturday,7,128,7,D41,Toronto,127,Bendale (127),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,RG,7,RED,0.0,STOLEN,25173,"{'type': 'Point', 'coordinates': (-79.25520849, 43.74933982)}"
-25181,14419,GO-20143007770,THEFT UNDER,2014-09-29T00:00:00,2014,September,Monday,29,272,11,2014-09-29T00:00:00,2014,September,Monday,29,272,13,D41,Toronto,127,Bendale (127),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BMX,,BM,1,BLU,300.0,STOLEN,25174,"{'type': 'Point', 'coordinates': (-79.26501171000001, 43.75152070000001)}"
-25182,16725,GO-20189038543,THEFT UNDER - BICYCLE,2018-11-15T00:00:00,2018,November,Thursday,15,319,10,2018-11-16T00:00:00,2018,November,Friday,16,320,11,D43,Toronto,127,Bendale (127),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,MT,21,BLK,225.0,STOLEN,25175,"{'type': 'Point', 'coordinates': (-79.25417421, 43.77664803)}"
-25183,16742,GO-2019632228,THEFT UNDER,2019-04-07T00:00:00,2019,April,Sunday,7,97,22,2019-04-08T00:00:00,2019,April,Monday,8,98,13,D43,Toronto,127,Bendale (127),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,MED,HOME HEALTH HUR,EL,0,BLK,9000.0,STOLEN,25176,"{'type': 'Point', 'coordinates': (-79.25152037, 43.75428255)}"
-25184,16989,GO-20179016736,THEFT UNDER,2017-10-08T00:00:00,2017,October,Sunday,8,281,11,2017-10-08T00:00:00,2017,October,Sunday,8,281,13,D41,Toronto,127,Bendale (127),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RA,TARANTULA,MT,18,OTH,200.0,STOLEN,25177,"{'type': 'Point', 'coordinates': (-79.26689373, 43.75892356)}"
-25185,17133,GO-20159003106,THEFT UNDER,2015-05-21T00:00:00,2015,May,Thursday,21,141,14,2015-05-26T00:00:00,2015,May,Tuesday,26,146,13,D41,Toronto,127,Bendale (127),Schools During Supervised Activity,Educational,CC,STATIC,MT,21,BLK,400.0,STOLEN,25178,"{'type': 'Point', 'coordinates': (-79.25822533, 43.74579976)}"
-25186,17285,GO-20161904040,THEFT UNDER - BICYCLE,2016-10-21T00:00:00,2016,October,Friday,21,295,12,2016-10-26T00:00:00,2016,October,Wednesday,26,300,12,D41,Toronto,127,Bendale (127),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,,OT,0,,1200.0,STOLEN,25179,"{'type': 'Point', 'coordinates': (-79.26040132, 43.76290668)}"
-25187,20414,GO-20151248539,THEFT UNDER,2015-07-14T00:00:00,2015,July,Tuesday,14,195,11,2015-07-22T00:00:00,2015,July,Wednesday,22,203,11,D41,Toronto,127,Bendale (127),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,MT,0,,113.0,STOLEN,25180,"{'type': 'Point', 'coordinates': (-79.26662451, 43.7558986)}"
-25188,20481,GO-2016642527,THEFT FROM MOTOR VEHICLE OVER,2016-04-15T00:00:00,2016,April,Friday,15,106,15,2016-04-16T00:00:00,2016,April,Saturday,16,107,15,D43,Toronto,127,Bendale (127),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SM,BTM,BM,1,GRY,5600.0,STOLEN,25181,"{'type': 'Point', 'coordinates': (-79.25417421, 43.77664803)}"
-25189,20482,GO-2016642527,THEFT FROM MOTOR VEHICLE OVER,2016-04-15T00:00:00,2016,April,Friday,15,106,15,2016-04-16T00:00:00,2016,April,Saturday,16,107,15,D43,Toronto,127,Bendale (127),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,WETHEPEOPLE,ENVY,BM,1,BLK,1500.0,STOLEN,25182,"{'type': 'Point', 'coordinates': (-79.25417421, 43.77664803)}"
-25190,20542,GO-20169011812,THEFT UNDER - BICYCLE,2016-10-10T00:00:00,2016,October,Monday,10,284,12,2016-10-10T00:00:00,2016,October,Monday,10,284,18,D43,Toronto,127,Bendale (127),"Single Home, House (Attach Garage, Cottage, Mobile)",House,IH,,RG,30,PLE,500.0,STOLEN,25183,"{'type': 'Point', 'coordinates': (-79.248474, 43.74613385)}"
-25191,20550,GO-20161970115,THEFT UNDER,2016-11-05T00:00:00,2016,November,Saturday,5,310,17,2016-11-05T00:00:00,2016,November,Saturday,5,310,18,D43,Toronto,127,Bendale (127),Schools During Un-Supervised Activity,Educational,CCM,,MT,1,REDWHI,220.0,STOLEN,25184,"{'type': 'Point', 'coordinates': (-79.25069433, 43.74539888)}"
-25192,20570,GO-2017706538,THEFT UNDER,2017-04-16T00:00:00,2017,April,Sunday,16,106,11,2017-04-22T00:00:00,2017,April,Saturday,22,112,13,D41,Toronto,127,Bendale (127),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,,MT,4,GRN,160.0,STOLEN,25185,"{'type': 'Point', 'coordinates': (-79.26546857, 43.75834457)}"
-25193,23298,GO-20199026309,THEFT UNDER,2019-08-12T00:00:00,2019,August,Monday,12,224,18,2019-08-15T00:00:00,2019,August,Thursday,15,227,11,D43,Toronto,127,Bendale (127),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,,RG,7,BLU,300.0,STOLEN,25186,"{'type': 'Point', 'coordinates': (-79.25417421, 43.77664803)}"
-25194,23309,GO-20199031526,THEFT FROM MOTOR VEHICLE UNDER,2019-08-08T00:00:00,2019,August,Thursday,8,220,22,2019-09-25T00:00:00,2019,September,Wednesday,25,268,17,D41,Toronto,127,Bendale (127),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,FLUID HT 2,MT,11,GRN,1850.0,STOLEN,25187,"{'type': 'Point', 'coordinates': (-79.26193194, 43.76606931)}"
-25195,23391,GO-2017637379,PROPERTY - FOUND,2017-01-01T00:00:00,2017,January,Sunday,1,1,1,2017-04-11T00:00:00,2017,April,Tuesday,11,101,9,D41,Toronto,127,Bendale (127),"Police / Courts (Parole Board, Probation Office)",Other,OT,CR-300,MT,1,WHT,,UNKNOWN,25188,"{'type': 'Point', 'coordinates': (-79.26998413, 43.77359113)}"
-25196,23392,GO-2017637379,PROPERTY - FOUND,2017-01-01T00:00:00,2017,January,Sunday,1,1,1,2017-04-11T00:00:00,2017,April,Tuesday,11,101,9,D41,Toronto,127,Bendale (127),"Police / Courts (Parole Board, Probation Office)",Other,CCM,XVOLT,MT,1,RED,,UNKNOWN,25189,"{'type': 'Point', 'coordinates': (-79.26998413, 43.77359113)}"
-25197,23393,GO-2017637379,PROPERTY - FOUND,2017-01-01T00:00:00,2017,January,Sunday,1,1,1,2017-04-11T00:00:00,2017,April,Tuesday,11,101,9,D41,Toronto,127,Bendale (127),"Police / Courts (Parole Board, Probation Office)",Other,TECH TEAM,,MT,1,GRN,,UNKNOWN,25190,"{'type': 'Point', 'coordinates': (-79.26998413, 43.77359113)}"
-25198,23394,GO-2017637379,PROPERTY - FOUND,2017-01-01T00:00:00,2017,January,Sunday,1,1,1,2017-04-11T00:00:00,2017,April,Tuesday,11,101,9,D41,Toronto,127,Bendale (127),"Police / Courts (Parole Board, Probation Office)",Other,OTHER,,TO,1,GRN,,UNKNOWN,25191,"{'type': 'Point', 'coordinates': (-79.26998413, 43.77359113)}"
-25199,23398,GO-20179004699,THEFT UNDER - BICYCLE,2017-04-11T00:00:00,2017,April,Tuesday,11,101,21,2017-04-14T00:00:00,2017,April,Friday,14,104,19,D43,Toronto,127,Bendale (127),"Apartment (Rooming House, Condo)",Apartment,SU,NITROUS,MT,21,BRZ,150.0,STOLEN,25192,"{'type': 'Point', 'coordinates': (-79.25460144, 43.77252457)}"
-25200,23399,GO-20179004699,THEFT UNDER - BICYCLE,2017-04-11T00:00:00,2017,April,Tuesday,11,101,21,2017-04-14T00:00:00,2017,April,Friday,14,104,19,D43,Toronto,127,Bendale (127),"Apartment (Rooming House, Condo)",Apartment,CC,VANDAL,MT,21,RED,125.0,STOLEN,25193,"{'type': 'Point', 'coordinates': (-79.25460144, 43.77252457)}"
-25201,23685,GO-2016719400,THEFT UNDER - BICYCLE,2016-04-26T00:00:00,2016,April,Tuesday,26,117,8,2016-04-27T00:00:00,2016,April,Wednesday,27,118,15,D41,Toronto,127,Bendale (127),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,1,BLK,200.0,STOLEN,25194,"{'type': 'Point', 'coordinates': (-79.26092719, 43.75657992)}"
-25202,23748,GO-20169010113,THEFT UNDER - BICYCLE,2016-09-01T00:00:00,2016,September,Thursday,1,245,15,2016-09-07T00:00:00,2016,September,Wednesday,7,251,17,D41,Toronto,127,Bendale (127),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,BM,5,ONG,250.0,STOLEN,25195,"{'type': 'Point', 'coordinates': (-79.26404999, 43.74582993)}"
-25203,23786,GO-2017637379,PROPERTY - FOUND,2017-01-01T00:00:00,2017,January,Sunday,1,1,1,2017-04-11T00:00:00,2017,April,Tuesday,11,101,9,D41,Toronto,127,Bendale (127),"Police / Courts (Parole Board, Probation Office)",Other,OT,,BM,1,RED,,UNKNOWN,25196,"{'type': 'Point', 'coordinates': (-79.26998413, 43.77359113)}"
-25204,23787,GO-2017637379,PROPERTY - FOUND,2017-01-01T00:00:00,2017,January,Sunday,1,1,1,2017-04-11T00:00:00,2017,April,Tuesday,11,101,9,D41,Toronto,127,Bendale (127),"Police / Courts (Parole Board, Probation Office)",Other,OTHER,WILDERNESS TRAI,MT,1,GRY,,UNKNOWN,25197,"{'type': 'Point', 'coordinates': (-79.26998413, 43.77359113)}"
-25205,23788,GO-2017637379,PROPERTY - FOUND,2017-01-01T00:00:00,2017,January,Sunday,1,1,1,2017-04-11T00:00:00,2017,April,Tuesday,11,101,9,D41,Toronto,127,Bendale (127),"Police / Courts (Parole Board, Probation Office)",Other,NAKAMURA,,MT,1,PLE,,UNKNOWN,25198,"{'type': 'Point', 'coordinates': (-79.26998413, 43.77359113)}"
-25206,23789,GO-2017637379,PROPERTY - FOUND,2017-01-01T00:00:00,2017,January,Sunday,1,1,1,2017-04-11T00:00:00,2017,April,Tuesday,11,101,9,D41,Toronto,127,Bendale (127),"Police / Courts (Parole Board, Probation Office)",Other,OTHER,,RC,1,RED,,UNKNOWN,25199,"{'type': 'Point', 'coordinates': (-79.26998413, 43.77359113)}"
-25207,23790,GO-2017637379,PROPERTY - FOUND,2017-01-01T00:00:00,2017,January,Sunday,1,1,1,2017-04-11T00:00:00,2017,April,Tuesday,11,101,9,D41,Toronto,127,Bendale (127),"Police / Courts (Parole Board, Probation Office)",Other,RALEIGH,TARANTULA,MT,1,SIL,,UNKNOWN,25200,"{'type': 'Point', 'coordinates': (-79.26998413, 43.77359113)}"
-25208,23791,GO-2017637379,PROPERTY - FOUND,2017-01-01T00:00:00,2017,January,Sunday,1,1,1,2017-04-11T00:00:00,2017,April,Tuesday,11,101,9,D41,Toronto,127,Bendale (127),"Police / Courts (Parole Board, Probation Office)",Other,SCHWINN,MANSA,MT,1,BLU,,UNKNOWN,25201,"{'type': 'Point', 'coordinates': (-79.26998413, 43.77359113)}"
-25209,23792,GO-2017637379,PROPERTY - FOUND,2017-01-01T00:00:00,2017,January,Sunday,1,1,1,2017-04-11T00:00:00,2017,April,Tuesday,11,101,9,D41,Toronto,127,Bendale (127),"Police / Courts (Parole Board, Probation Office)",Other,OTHER,FRENZY,MT,1,RED,,UNKNOWN,25202,"{'type': 'Point', 'coordinates': (-79.26998413, 43.77359113)}"
-25210,23793,GO-2017637379,PROPERTY - FOUND,2017-01-01T00:00:00,2017,January,Sunday,1,1,1,2017-04-11T00:00:00,2017,April,Tuesday,11,101,9,D41,Toronto,127,Bendale (127),"Police / Courts (Parole Board, Probation Office)",Other,OTHER,,MT,1,GRN,,UNKNOWN,25203,"{'type': 'Point', 'coordinates': (-79.26998413, 43.77359113)}"
-25211,23794,GO-2017637379,PROPERTY - FOUND,2017-01-01T00:00:00,2017,January,Sunday,1,1,1,2017-04-11T00:00:00,2017,April,Tuesday,11,101,9,D41,Toronto,127,Bendale (127),"Police / Courts (Parole Board, Probation Office)",Other,CCM,ICE,MT,1,SIL,,UNKNOWN,25204,"{'type': 'Point', 'coordinates': (-79.26998413, 43.77359113)}"
-25212,23795,GO-2017637379,PROPERTY - FOUND,2017-01-01T00:00:00,2017,January,Sunday,1,1,1,2017-04-11T00:00:00,2017,April,Tuesday,11,101,9,D41,Toronto,127,Bendale (127),"Police / Courts (Parole Board, Probation Office)",Other,NAKAMURA,ROYAL,MT,1,BLU,,UNKNOWN,25205,"{'type': 'Point', 'coordinates': (-79.26998413, 43.77359113)}"
-25213,23884,GO-20149003765,THEFT UNDER,2014-06-01T00:00:00,2014,June,Sunday,1,152,10,2014-06-02T00:00:00,2014,June,Monday,2,153,19,D43,Toronto,127,Bendale (127),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,MT,21,GRY,0.0,STOLEN,25206,"{'type': 'Point', 'coordinates': (-79.25417421, 43.77664803)}"
-25214,23939,GO-20149005907,B&E,2014-08-13T00:00:00,2014,August,Wednesday,13,225,15,2014-08-13T00:00:00,2014,August,Wednesday,13,225,19,D41,Toronto,127,Bendale (127),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,MACH ONE,BM,1,BLK,187.0,STOLEN,25207,"{'type': 'Point', 'coordinates': (-79.25758774, 43.74784169)}"
-25215,23941,GO-20149006160,THEFT UNDER,2014-08-20T00:00:00,2014,August,Wednesday,20,232,21,2014-08-21T00:00:00,2014,August,Thursday,21,233,0,D41,Toronto,127,Bendale (127),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,INFINITY,MT,10,GRY,180.0,STOLEN,25208,"{'type': 'Point', 'coordinates': (-79.26821512, 43.76708136)}"
-25216,23942,GO-20149006160,THEFT UNDER,2014-08-20T00:00:00,2014,August,Wednesday,20,232,21,2014-08-21T00:00:00,2014,August,Thursday,21,233,0,D41,Toronto,127,Bendale (127),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,CLUTCH,BM,1,BLU,75.0,STOLEN,25209,"{'type': 'Point', 'coordinates': (-79.26821512, 43.76708136)}"
-25217,23965,GO-20143204610,THEFT UNDER,2014-10-30T00:00:00,2014,October,Thursday,30,303,10,2014-10-30T00:00:00,2014,October,Thursday,30,303,13,D43,Toronto,127,Bendale (127),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,MT,12,BRN,400.0,STOLEN,25210,"{'type': 'Point', 'coordinates': (-79.25417421, 43.77664803)}"
-25218,1648,GO-20171846815,SUSPICIOUS INCIDENT,2017-10-12T00:00:00,2017,October,Thursday,12,285,5,2017-10-12T00:00:00,2017,October,Thursday,12,285,7,D42,Toronto,128,Agincourt South-Malvern West (128),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,TEMPO,MT,15,WHIONG,,UNKNOWN,25211,"{'type': 'Point', 'coordinates': (-79.27049179000001, 43.77999109)}"
-25219,1670,GO-20179017380,THEFT UNDER,2017-10-16T00:00:00,2017,October,Monday,16,289,14,2017-10-16T00:00:00,2017,October,Monday,16,289,21,D42,Toronto,128,Agincourt South-Malvern West (128),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,MA,SAN RAFAEL,RG,7,GRY,500.0,STOLEN,25212,"{'type': 'Point', 'coordinates': (-79.27045334, 43.78713154)}"
-25220,2272,GO-2018815876,THEFT UNDER - BICYCLE,2018-05-05T00:00:00,2018,May,Saturday,5,125,21,2018-05-06T00:00:00,2018,May,Sunday,6,126,13,D42,Toronto,128,Agincourt South-Malvern West (128),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,SHRED,MT,12,RED,150.0,STOLEN,25213,"{'type': 'Point', 'coordinates': (-79.25185677, 43.78845243)}"
-25221,2524,GO-20189018112,THEFT UNDER - BICYCLE,2018-06-06T00:00:00,2018,June,Wednesday,6,157,8,2018-06-10T00:00:00,2018,June,Sunday,10,161,16,D42,Toronto,128,Agincourt South-Malvern West (128),Go Station,Transit,GT,AVALANCHE,MT,21,BLK,500.0,STOLEN,25214,"{'type': 'Point', 'coordinates': (-79.2852902, 43.78597795)}"
-25222,2820,GO-20189018112,THEFT UNDER - BICYCLE,2018-06-06T00:00:00,2018,June,Wednesday,6,157,8,2018-06-10T00:00:00,2018,June,Sunday,10,161,16,D42,Toronto,128,Agincourt South-Malvern West (128),Go Station,Transit,GT,AVALANCHE,MT,24,BLK,650.0,STOLEN,25215,"{'type': 'Point', 'coordinates': (-79.2852902, 43.78597795)}"
-25223,3390,GO-20189029085,THEFT UNDER - BICYCLE,2018-08-21T00:00:00,2018,August,Tuesday,21,233,1,2018-09-04T00:00:00,2018,September,Tuesday,4,247,18,D42,Toronto,128,Agincourt South-Malvern West (128),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,XTC1,MT,27,RED,1000.0,STOLEN,25216,"{'type': 'Point', 'coordinates': (-79.28268, 43.77787789)}"
-25224,5570,GO-20192046014,THEFT OF MOTOR VEHICLE,2019-10-23T00:00:00,2019,October,Wednesday,23,296,10,2019-10-23T00:00:00,2019,October,Wednesday,23,296,13,D42,Toronto,128,Agincourt South-Malvern West (128),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,RG,0,YEL,,UNKNOWN,25217,"{'type': 'Point', 'coordinates': (-79.25643395, 43.78538035)}"
-25225,5637,GO-20192118770,THEFT UNDER - BICYCLE,2019-11-02T00:00:00,2019,November,Saturday,2,306,11,2019-11-03T00:00:00,2019,November,Sunday,3,307,20,D42,Toronto,128,Agincourt South-Malvern West (128),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,GRAPHITE,TO,12,MUL,500.0,STOLEN,25218,"{'type': 'Point', 'coordinates': (-79.24099988, 43.79855409)}"
-25226,7219,GO-20209022788,THEFT UNDER,2020-09-01T00:00:00,2020,September,Tuesday,1,245,8,2020-09-09T00:00:00,2020,September,Wednesday,9,253,17,D42,Toronto,128,Agincourt South-Malvern West (128),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,21,BLK,120.0,STOLEN,25219,"{'type': 'Point', 'coordinates': (-79.28568841, 43.78477465)}"
-25227,7301,GO-20209023863,THEFT UNDER,2020-09-19T00:00:00,2020,September,Saturday,19,263,16,2020-09-19T00:00:00,2020,September,Saturday,19,263,23,D42,Toronto,128,Agincourt South-Malvern West (128),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,20,RED,150.0,STOLEN,25220,"{'type': 'Point', 'coordinates': (-79.28143095, 43.77814866)}"
-25228,11938,GO-20161330841,MISCHIEF UNDER,2016-07-29T00:00:00,2016,July,Friday,29,211,0,2016-07-29T00:00:00,2016,July,Friday,29,211,7,D42,Toronto,128,Agincourt South-Malvern West (128),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NEXT,HIGHPEAK,MT,18,WHI,,UNKNOWN,25221,"{'type': 'Point', 'coordinates': (-79.28822199, 43.78328634)}"
-25229,8505,GO-20149005304,THEFT UNDER,2014-07-24T00:00:00,2014,July,Thursday,24,205,17,2014-07-24T00:00:00,2014,July,Thursday,24,205,20,D42,Toronto,129,Agincourt North (129),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,HEAT,MT,21,RED,,STOLEN,25244,"{'type': 'Point', 'coordinates': (-79.26219455, 43.81437497)}"
-25230,12064,GO-20169008579,THEFT UNDER,2016-07-28T00:00:00,2016,July,Thursday,28,210,1,2016-08-11T00:00:00,2016,August,Thursday,11,224,21,D42,Toronto,128,Agincourt South-Malvern West (128),"Apartment (Rooming House, Condo)",Apartment,CC,FALCON,MT,18,YEL,200.0,STOLEN,25222,"{'type': 'Point', 'coordinates': (-79.23778163000001, 43.79151019)}"
-25231,13590,GO-20209025110,THEFT FROM MOTOR VEHICLE UNDER,2020-09-19T00:00:00,2020,September,Saturday,19,263,13,2020-10-01T00:00:00,2020,October,Thursday,1,275,9,D42,Toronto,128,Agincourt South-Malvern West (128),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,OT,1,SIL,2500.0,STOLEN,25223,"{'type': 'Point', 'coordinates': (-79.28143095, 43.77814866)}"
-25232,13747,GO-2018732040,THEFT OVER - BICYCLE,2017-03-31T00:00:00,2017,March,Friday,31,90,9,2018-04-24T00:00:00,2018,April,Tuesday,24,114,11,D42,Toronto,128,Agincourt South-Malvern West (128),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TREK,TOP FUEL 9.8,MT,27,BLKRED,6000.0,STOLEN,25224,"{'type': 'Point', 'coordinates': (-79.25215295, 43.78944332)}"
-25233,13785,GO-20181353973,FTC PROBATION ORDER,2018-07-18T00:00:00,2018,July,Wednesday,18,199,9,2018-07-24T00:00:00,2018,July,Tuesday,24,205,18,D42,Toronto,128,Agincourt South-Malvern West (128),Schools During Supervised Activity,Educational,OTHER,,MT,18,BLK,800.0,STOLEN,25225,"{'type': 'Point', 'coordinates': (-79.28822199, 43.78328634)}"
-25234,13862,GO-20159002784,THEFT UNDER,2015-05-14T00:00:00,2015,May,Thursday,14,134,18,2015-05-15T00:00:00,2015,May,Friday,15,135,20,D42,Toronto,128,Agincourt South-Malvern West (128),"Apartment (Rooming House, Condo)",Apartment,CR,MOUNTAIN BIKE,MT,27,GRN,1000.0,STOLEN,25226,"{'type': 'Point', 'coordinates': (-79.288333, 43.78599601)}"
-25235,13907,GO-20159006966,THEFT UNDER,2015-09-09T00:00:00,2015,September,Wednesday,9,252,13,2015-09-09T00:00:00,2015,September,Wednesday,9,252,17,D42,Toronto,128,Agincourt South-Malvern West (128),Schools During Un-Supervised Activity,Educational,CC,CCM PRIME FS 26,RG,21,BLK,0.0,STOLEN,25227,"{'type': 'Point', 'coordinates': (-79.27999676, 43.78893254)}"
-25236,14403,GO-20149005800,THEFT UNDER,2014-08-10T00:00:00,2014,August,Sunday,10,222,20,2014-08-11T00:00:00,2014,August,Monday,11,223,1,D42,Toronto,128,Agincourt South-Malvern West (128),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,RG,22,BLU,1000.0,STOLEN,25228,"{'type': 'Point', 'coordinates': (-79.28822199, 43.78328634)}"
-25237,16785,GO-20191398586,THEFT UNDER - BICYCLE,2019-07-20T00:00:00,2019,July,Saturday,20,201,19,2019-07-25T00:00:00,2019,July,Thursday,25,206,13,D42,Toronto,128,Agincourt South-Malvern West (128),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OTHER,,MT,1,BLU,120.0,STOLEN,25229,"{'type': 'Point', 'coordinates': (-79.2853148, 43.783929)}"
-25238,17000,GO-20171995166,PROPERTY - FOUND,2017-11-04T00:00:00,2017,November,Saturday,4,308,0,2017-11-04T00:00:00,2017,November,Saturday,4,308,1,D42,Toronto,128,Agincourt South-Malvern West (128),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,BURNER AL,MT,21,ONG,,UNKNOWN,25230,"{'type': 'Point', 'coordinates': (-79.28143095, 43.77814866)}"
-25239,17001,GO-20171995166,PROPERTY - FOUND,2017-11-04T00:00:00,2017,November,Saturday,4,308,0,2017-11-04T00:00:00,2017,November,Saturday,4,308,1,D42,Toronto,128,Agincourt South-Malvern West (128),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORTHLAND,MAGNUM,RG,21,BLK,,UNKNOWN,25231,"{'type': 'Point', 'coordinates': (-79.28143095, 43.77814866)}"
-25240,17165,GO-20159006732,THEFT UNDER,2015-09-03T00:00:00,2015,September,Thursday,3,246,10,2015-09-03T00:00:00,2015,September,Thursday,3,246,20,D42,Toronto,128,Agincourt South-Malvern West (128),Schools During Un-Supervised Activity,Educational,,PRISTINE,MT,18,BLU,175.0,STOLEN,25232,"{'type': 'Point', 'coordinates': (-79.27999676, 43.78893254)}"
-25241,17167,GO-20151546034,THEFT UNDER,2015-09-03T00:00:00,2015,September,Thursday,3,246,10,2015-09-07T00:00:00,2015,September,Monday,7,250,17,D42,Toronto,128,Agincourt South-Malvern West (128),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NAKAMURA,,RG,0,LBLWHI,200.0,STOLEN,25233,"{'type': 'Point', 'coordinates': (-79.27999676, 43.78893254)}"
-25242,17316,GO-20179005860,THEFT UNDER - BICYCLE,2017-04-24T00:00:00,2017,April,Monday,24,114,9,2017-05-07T00:00:00,2017,May,Sunday,7,127,18,D42,Toronto,128,Agincourt South-Malvern West (128),Schools During Supervised Activity,Educational,SC,,RG,10,BLK,150.0,STOLEN,25234,"{'type': 'Point', 'coordinates': (-79.27999676, 43.78893254)}"
-25243,20421,GO-20151276399,THEFT UNDER,2015-07-26T00:00:00,2015,July,Sunday,26,207,12,2015-07-26T00:00:00,2015,July,Sunday,26,207,14,D42,Toronto,128,Agincourt South-Malvern West (128),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,HUFFY,GRANITE,RG,18,SIL,100.0,STOLEN,25235,"{'type': 'Point', 'coordinates': (-79.25879661, 43.78961887)}"
-25244,20579,GO-2017909771,THEFT UNDER - BICYCLE,2017-05-23T00:00:00,2017,May,Tuesday,23,143,16,2017-05-23T00:00:00,2017,May,Tuesday,23,143,16,D42,Toronto,128,Agincourt South-Malvern West (128),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,TESLIN,RG,21,RED,600.0,STOLEN,25236,"{'type': 'Point', 'coordinates': (-79.25879661, 43.78961887)}"
-25245,20580,GO-2017909771,THEFT UNDER - BICYCLE,2017-05-23T00:00:00,2017,May,Tuesday,23,143,16,2017-05-23T00:00:00,2017,May,Tuesday,23,143,16,D42,Toronto,128,Agincourt South-Malvern West (128),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,,RG,21,BLK,110.0,STOLEN,25237,"{'type': 'Point', 'coordinates': (-79.25879661, 43.78961887)}"
-25246,23355,GO-20209022969,THEFT UNDER,2020-08-20T00:00:00,2020,August,Thursday,20,233,12,2020-09-11T00:00:00,2020,September,Friday,11,255,13,D42,Toronto,128,Agincourt South-Malvern West (128),"Apartment (Rooming House, Condo)",Apartment,GT,VENTURA,RG,24,,500.0,STOLEN,25238,"{'type': 'Point', 'coordinates': (-79.282022, 43.779474140000005)}"
-25247,23356,GO-20201756378,THEFT UNDER,2020-09-04T00:00:00,2020,September,Friday,4,248,12,2020-09-04T00:00:00,2020,September,Friday,4,248,14,D42,Toronto,128,Agincourt South-Malvern West (128),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,OT,1,GRN,150.0,STOLEN,25239,"{'type': 'Point', 'coordinates': (-79.26932705, 43.78285644)}"
-25248,23735,GO-20169009141,THEFT UNDER - BICYCLE,2016-07-28T00:00:00,2016,July,Thursday,28,210,1,2016-08-20T00:00:00,2016,August,Saturday,20,233,15,D42,Toronto,128,Agincourt South-Malvern West (128),"Apartment (Rooming House, Condo)",Apartment,CC,APEX,MT,24,WHI,660.0,STOLEN,25240,"{'type': 'Point', 'coordinates': (-79.23778163000001, 43.79151019)}"
-25249,6511,GO-20201213200,B&E,2020-07-01T00:00:00,2020,July,Wednesday,1,183,1,2020-07-01T00:00:00,2020,July,Wednesday,1,183,17,D42,Toronto,129,Agincourt North (129),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,,MT,10,WHI,350.0,STOLEN,25241,"{'type': 'Point', 'coordinates': (-79.28424733, 43.80674495)}"
-25250,7953,GO-20142143830,THEFT UNDER,2014-05-24T00:00:00,2014,May,Saturday,24,144,16,2014-05-24T00:00:00,2014,May,Saturday,24,144,16,D42,Toronto,129,Agincourt North (129),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,VICE,MT,12,SIL,150.0,STOLEN,25242,"{'type': 'Point', 'coordinates': (-79.26397813, 43.81535649)}"
-25251,8328,GO-20142470971,THEFT UNDER,2014-07-10T00:00:00,2014,July,Thursday,10,191,15,2014-07-10T00:00:00,2014,July,Thursday,10,191,17,D42,Toronto,129,Agincourt North (129),Schools During Supervised Activity,Educational,WICKED,FUGITIVE,MT,21,SIL,212.0,STOLEN,25243,"{'type': 'Point', 'coordinates': (-79.2709323, 43.81095584)}"
-25252,9188,GO-20143299216,THEFT UNDER,2014-11-08T00:00:00,2014,November,Saturday,8,312,2,2014-11-14T00:00:00,2014,November,Friday,14,318,10,D42,Toronto,129,Agincourt North (129),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,UNKNOWN,BM,0,RED,300.0,STOLEN,25245,"{'type': 'Point', 'coordinates': (-79.26925391, 43.80460039)}"
-25253,9248,GO-201525352,THEFT UNDER,2014-12-19T00:00:00,2014,December,Friday,19,353,15,2015-01-05T00:00:00,2015,January,Monday,5,5,16,D42,Toronto,129,Agincourt North (129),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BMX,,BM,1,BLU,200.0,STOLEN,25246,"{'type': 'Point', 'coordinates': (-79.27646715, 43.79999714)}"
-25254,9313,GO-2015396847,POSSESSION PROPERTY OBC UNDER,2015-03-08T00:00:00,2015,March,Sunday,8,67,14,2015-03-08T00:00:00,2015,March,Sunday,8,67,14,D42,Toronto,129,Agincourt North (129),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,MINI-BIKE,OT,12,,500.0,STOLEN,25247,"{'type': 'Point', 'coordinates': (-79.25547444, 43.80711646)}"
-25255,9380,GO-2015587240,B&E,2015-04-09T00:00:00,2015,April,Thursday,9,99,8,2015-04-09T00:00:00,2015,April,Thursday,9,99,16,D42,Toronto,129,Agincourt North (129),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,BMX,BM,1,,500.0,STOLEN,25248,"{'type': 'Point', 'coordinates': (-79.26655046, 43.81676081)}"
-25256,9855,GO-20151023500,THEFT UNDER,2015-06-09T00:00:00,2015,June,Tuesday,9,160,8,2015-06-19T00:00:00,2015,June,Friday,19,170,12,D42,Toronto,129,Agincourt North (129),Schools During Un-Supervised Activity,Educational,CCM,,MT,0,,200.0,STOLEN,25249,"{'type': 'Point', 'coordinates': (-79.2709323, 43.81095584)}"
-25257,9856,GO-20151023500,THEFT UNDER,2015-06-09T00:00:00,2015,June,Tuesday,9,160,8,2015-06-19T00:00:00,2015,June,Friday,19,170,12,D42,Toronto,129,Agincourt North (129),Schools During Un-Supervised Activity,Educational,UNKNOWN,,MT,0,,400.0,STOLEN,25250,"{'type': 'Point', 'coordinates': (-79.2709323, 43.81095584)}"
-25258,17028,GO-2018881531,THEFT UNDER,2018-05-16T00:00:00,2018,May,Wednesday,16,136,1,2018-05-16T00:00:00,2018,May,Wednesday,16,136,10,D42,Toronto,129,Agincourt North (129),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,UNKNOWN,MT,1,REDBLK,300.0,STOLEN,25251,"{'type': 'Point', 'coordinates': (-79.26068468, 43.80085629)}"
-25259,20410,GO-20151220801,THEFT UNDER,2015-07-16T00:00:00,2015,July,Thursday,16,197,17,2015-07-18T00:00:00,2015,July,Saturday,18,199,11,D42,Toronto,129,Agincourt North (129),"Apartment (Rooming House, Condo)",Apartment,NORCO,"VALIANT """"A4""""",RC,21,BLK,,STOLEN,25252,"{'type': 'Point', 'coordinates': (-79.26189618, 43.81369024)}"
-25260,23622,GO-20159004296,THEFT UNDER,2015-07-07T00:00:00,2015,July,Tuesday,7,188,13,2015-07-07T00:00:00,2015,July,Tuesday,7,188,22,D42,Toronto,129,Agincourt North (129),Schools During Supervised Activity,Educational,SC,VOLARE 1200,RG,21,RED,350.0,STOLEN,25253,"{'type': 'Point', 'coordinates': (-79.2709323, 43.81095584)}"
-25261,23680,GO-2016434829,THEFT UNDER - BICYCLE,2016-03-12T00:00:00,2016,March,Saturday,12,72,23,2016-03-12T00:00:00,2016,March,Saturday,12,72,23,D42,Toronto,129,Agincourt North (129),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SCOTT,REFLEX 40,MT,18,GRY,500.0,RECOVERED,25254,"{'type': 'Point', 'coordinates': (-79.26646318, 43.80802563)}"
-25262,23707,GO-20169005698,THEFT UNDER,2016-06-12T00:00:00,2016,June,Sunday,12,164,11,2016-06-13T00:00:00,2016,June,Monday,13,165,10,D42,Toronto,129,Agincourt North (129),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,ROCK HOPPER COM,MT,29,RED,1000.0,STOLEN,25255,"{'type': 'Point', 'coordinates': (-79.28060753, 43.80644999)}"
-25263,981,GO-20171347105,THEFT UNDER - BICYCLE,2017-07-26T00:00:00,2017,July,Wednesday,26,207,22,2017-07-27T00:00:00,2017,July,Thursday,27,208,9,D42,Toronto,130,Milliken (130),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,FASTROAD SLR,OT,18,RED,1457.0,STOLEN,25256,"{'type': 'Point', 'coordinates': (-79.28771581, 43.82230542)}"
-25264,2142,GO-20189011037,THEFT UNDER - BICYCLE,2018-04-09T00:00:00,2018,April,Monday,9,99,12,2018-04-09T00:00:00,2018,April,Monday,9,99,17,D42,Toronto,130,Milliken (130),"Open Areas (Lakes, Parks, Rivers)",Outside,CC,,RG,30,BLK,385.0,STOLEN,25257,"{'type': 'Point', 'coordinates': (-79.28201051, 43.823601450000005)}"
-25265,2236,GO-2018787282,B&E,2017-11-01T00:00:00,2017,November,Wednesday,1,305,0,2018-05-02T00:00:00,2018,May,Wednesday,2,122,15,D42,Toronto,130,Milliken (130),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,STERN,,FO,5,BLK,250.0,STOLEN,25258,"{'type': 'Point', 'coordinates': (-79.30470988, 43.81844723)}"
-25266,2237,GO-2018787282,B&E,2017-11-01T00:00:00,2017,November,Wednesday,1,305,0,2018-05-02T00:00:00,2018,May,Wednesday,2,122,15,D42,Toronto,130,Milliken (130),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,STERN,,FO,5,WHI,250.0,STOLEN,25259,"{'type': 'Point', 'coordinates': (-79.30470988, 43.81844723)}"
-25267,4786,GO-20191340429,THEFT UNDER - BICYCLE,2019-07-12T00:00:00,2019,July,Friday,12,193,15,2019-07-17T00:00:00,2019,July,Wednesday,17,198,14,D42,Toronto,130,Milliken (130),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,,MT,5,,120.0,STOLEN,25260,"{'type': 'Point', 'coordinates': (-79.25114562, 43.83659742)}"
-25268,5118,GO-20199027044,THEFT UNDER,2017-12-09T00:00:00,2017,December,Saturday,9,343,16,2019-08-14T00:00:00,2019,August,Wednesday,14,226,17,D42,Toronto,130,Milliken (130),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,OT,1,,50.0,STOLEN,25261,"{'type': 'Point', 'coordinates': (-79.30470988, 43.81844723)}"
-25269,5282,GO-20199029357,THEFT UNDER,2019-09-09T00:00:00,2019,September,Monday,9,252,5,2019-09-09T00:00:00,2019,September,Monday,9,252,19,D42,Toronto,130,Milliken (130),Go Station,Transit,TR,7.2 FX,OT,8,BLK,850.0,STOLEN,25262,"{'type': 'Point', 'coordinates': (-79.30503973, 43.82416627)}"
-25270,5428,GO-20199031903,THEFT UNDER,2019-09-26T00:00:00,2019,September,Thursday,26,269,16,2019-09-28T00:00:00,2019,September,Saturday,28,271,15,D42,Toronto,130,Milliken (130),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,,MONSTER,BM,20,DBL,270.0,STOLEN,25263,"{'type': 'Point', 'coordinates': (-79.26791906, 43.83270314)}"
-25271,8697,GO-20142760716,THEFT UNDER,2014-08-23T00:00:00,2014,August,Saturday,23,235,13,2014-08-23T00:00:00,2014,August,Saturday,23,235,13,D42,Toronto,130,Milliken (130),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,,MT,0,GRYBLU,200.0,RECOVERED,25264,"{'type': 'Point', 'coordinates': (-79.26554823, 43.82348542)}"
-25272,13887,GO-20159004776,THEFT UNDER,2015-07-20T00:00:00,2015,July,Monday,20,201,8,2015-07-20T00:00:00,2015,July,Monday,20,201,20,D42,Toronto,130,Milliken (130),Go Station,Transit,,ROYAL 2015,OT,21,BLK,220.0,STOLEN,25265,"{'type': 'Point', 'coordinates': (-79.30503973, 43.82416627)}"
-25273,17018,GO-20189006937,THEFT UNDER,2018-03-05T00:00:00,2018,March,Monday,5,64,13,2018-03-05T00:00:00,2018,March,Monday,5,64,22,D42,Toronto,130,Milliken (130),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,SUPERCYCLE1800,MT,18,BLK,50.0,STOLEN,25266,"{'type': 'Point', 'coordinates': (-79.30702309, 43.82368982)}"
-25274,20134,GO-20209029580,THEFT UNDER,2020-11-14T00:00:00,2020,November,Saturday,14,319,16,2020-11-15T00:00:00,2020,November,Sunday,15,320,7,D42,Toronto,130,Milliken (130),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,,MT,18,BLU,200.0,STOLEN,25267,"{'type': 'Point', 'coordinates': (-79.27267837, 43.83314501)}"
-25275,20578,GO-20179006700,THEFT UNDER - BICYCLE,2017-05-19T00:00:00,2017,May,Friday,19,139,20,2017-05-20T00:00:00,2017,May,Saturday,20,140,18,D42,Toronto,130,Milliken (130),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,10,,0.0,STOLEN,25268,"{'type': 'Point', 'coordinates': (-79.27532372, 43.81995045)}"
-25276,23898,GO-20142295553,THEFT UNDER,2014-06-15T00:00:00,2014,June,Sunday,15,166,12,2014-06-15T00:00:00,2014,June,Sunday,15,166,13,D43,Toronto,136,West Hill (136),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,MT,21,,,STOLEN,25269,"{'type': 'Point', 'coordinates': (-79.18334086, 43.77042384)}"
-25277,23945,GO-20149006286,THEFT UNDER,2014-08-25T00:00:00,2014,August,Monday,25,237,12,2014-08-25T00:00:00,2014,August,Monday,25,237,17,D43,Toronto,136,West Hill (136),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,IN,COULOIR,RG,21,BLU,300.0,STOLEN,25270,"{'type': 'Point', 'coordinates': (-79.1774535, 43.77038073)}"
-25278,23947,GO-20142867990,THEFT UNDER,2014-09-08T00:00:00,2014,September,Monday,8,251,11,2014-09-08T00:00:00,2014,September,Monday,8,251,11,D43,Toronto,136,West Hill (136),Bar / Restaurant,Commercial,CCM,UNKNOWN,MT,15,WHI,,STOLEN,25271,"{'type': 'Point', 'coordinates': (-79.18877904, 43.76850527)}"
-25279,37,GO-20179000160,THEFT UNDER - BICYCLE,2017-01-04T00:00:00,2017,January,Wednesday,4,4,19,2017-01-04T00:00:00,2017,January,Wednesday,4,4,20,D43,Toronto,137,Woburn (137),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,,RG,21,WHI,350.0,STOLEN,25272,"{'type': 'Point', 'coordinates': (-79.2246687, 43.75783951)}"
-25280,39,GO-20179000230,THEFT UNDER - BICYCLE,2017-01-04T00:00:00,2017,January,Wednesday,4,4,19,2017-01-05T00:00:00,2017,January,Thursday,5,5,14,D43,Toronto,137,Woburn (137),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,NITRO XT HARDTA,MT,21,WHI,170.0,STOLEN,25273,"{'type': 'Point', 'coordinates': (-79.2246687, 43.75783951)}"
-25281,271,GO-20179005156,THEFT UNDER - BICYCLE,2016-09-01T00:00:00,2016,September,Thursday,1,245,1,2017-04-24T00:00:00,2017,April,Monday,24,114,1,D43,Toronto,137,Woburn (137),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,SERIES,TO,21,GRY,500.0,STOLEN,25274,"{'type': 'Point', 'coordinates': (-79.24698657, 43.78053734)}"
-25282,647,GO-20171095659,THEFT UNDER - BICYCLE,2017-06-12T00:00:00,2017,June,Monday,12,163,2,2017-06-19T00:00:00,2017,June,Monday,19,170,18,D43,Toronto,137,Woburn (137),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,1,REDBLK,100.0,STOLEN,25275,"{'type': 'Point', 'coordinates': (-79.23576997, 43.77061144000001)}"
-25283,772,GO-20179009391,THEFT UNDER - BICYCLE,2017-07-04T00:00:00,2017,July,Tuesday,4,185,11,2017-07-04T00:00:00,2017,July,Tuesday,4,185,13,D43,Toronto,137,Woburn (137),Schools During Supervised Activity,Educational,,ROYAL 9.1,RG,21,BLK,140.0,STOLEN,25276,"{'type': 'Point', 'coordinates': (-79.22401579, 43.75567764)}"
-25284,1107,GO-20179012130,THEFT FROM MOTOR VEHICLE UNDER,2017-08-09T00:00:00,2017,August,Wednesday,9,221,19,2017-08-10T00:00:00,2017,August,Thursday,10,222,18,D43,Toronto,137,Woburn (137),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,BAD BOY,TO,15,BLK,1000.0,STOLEN,25277,"{'type': 'Point', 'coordinates': (-79.24698657, 43.78053734)}"
-25285,1108,GO-20179012130,THEFT FROM MOTOR VEHICLE UNDER,2017-08-09T00:00:00,2017,August,Wednesday,9,221,19,2017-08-10T00:00:00,2017,August,Thursday,10,222,18,D43,Toronto,137,Woburn (137),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RM,,TO,15,BLK,1000.0,STOLEN,25278,"{'type': 'Point', 'coordinates': (-79.24698657, 43.78053734)}"
-25286,1190,GO-20179012822,THEFT UNDER,2017-08-19T00:00:00,2017,August,Saturday,19,231,15,2017-08-19T00:00:00,2017,August,Saturday,19,231,15,D43,Toronto,137,Woburn (137),"Apartment (Rooming House, Condo)",Apartment,SU,MOUNTAIN BIKE,MT,18,GRN,150.0,STOLEN,25279,"{'type': 'Point', 'coordinates': (-79.22590386, 43.76983233)}"
-25287,1243,GO-20171540485,THEFT UNDER - BICYCLE,2017-08-25T00:00:00,2017,August,Friday,25,237,18,2017-08-25T00:00:00,2017,August,Friday,25,237,18,D43,Toronto,137,Woburn (137),"Open Areas (Lakes, Parks, Rivers)",Outside,OTHER,LEISURE 2.0,MT,21,YELBLK,400.0,STOLEN,25280,"{'type': 'Point', 'coordinates': (-79.23495391, 43.77574024)}"
-25288,1635,GO-20171841102,B&E,2017-10-11T00:00:00,2017,October,Wednesday,11,284,3,2017-10-11T00:00:00,2017,October,Wednesday,11,284,8,D43,Toronto,137,Woburn (137),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,,SC,0,BLU,1075.0,STOLEN,25281,"{'type': 'Point', 'coordinates': (-79.20822785, 43.7619843)}"
-25289,1636,GO-20171841102,B&E,2017-10-11T00:00:00,2017,October,Wednesday,11,284,3,2017-10-11T00:00:00,2017,October,Wednesday,11,284,8,D43,Toronto,137,Woburn (137),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,,MT,26,GRN,50.0,STOLEN,25282,"{'type': 'Point', 'coordinates': (-79.20822785, 43.7619843)}"
-25290,1759,GO-20171939917,THEFT UNDER,2017-10-26T00:00:00,2017,October,Thursday,26,299,12,2017-10-26T00:00:00,2017,October,Thursday,26,299,15,D43,Toronto,137,Woburn (137),Schools During Supervised Activity,Educational,OTHER,,MT,16,WHIBLU,200.0,STOLEN,25283,"{'type': 'Point', 'coordinates': (-79.2265346, 43.77758805)}"
-25291,2427,GO-20189016824,THEFT UNDER - BICYCLE,2018-05-29T00:00:00,2018,May,Tuesday,29,149,16,2018-05-30T00:00:00,2018,May,Wednesday,30,150,14,D43,Toronto,137,Woburn (137),"Gas Station (Self, Full, Attached Convenience)",Commercial,UK,,MT,20,BLU,150.0,STOLEN,25284,"{'type': 'Point', 'coordinates': (-79.22528368, 43.75982126)}"
-25292,2466,GO-20181017935,PROPERTY - FOUND,2018-06-05T00:00:00,2018,June,Tuesday,5,156,11,2018-06-05T00:00:00,2018,June,Tuesday,5,156,13,D43,Toronto,137,Woburn (137),Schools During Supervised Activity,Educational,NEXT,SHOCK EDGE,MT,5,BLU,,UNKNOWN,25285,"{'type': 'Point', 'coordinates': (-79.2265346, 43.77758805)}"
-25293,2960,GO-20189023890,THEFT UNDER - BICYCLE,2018-07-14T00:00:00,2018,July,Saturday,14,195,20,2018-07-25T00:00:00,2018,July,Wednesday,25,206,16,D43,Toronto,137,Woburn (137),Convenience Stores,Commercial,NO,10YR OLD MODEL,MT,21,YEL,600.0,STOLEN,25286,"{'type': 'Point', 'coordinates': (-79.25145731, 43.77214083)}"
-25294,3245,GO-20189026956,THEFT UNDER - BICYCLE,2018-08-18T00:00:00,2018,August,Saturday,18,230,11,2018-08-18T00:00:00,2018,August,Saturday,18,230,22,D43,Toronto,137,Woburn (137),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,MT,10,WHI,0.0,STOLEN,25287,"{'type': 'Point', 'coordinates': (-79.22931781, 43.75689939)}"
-25295,3854,GO-20189038175,THEFT UNDER - BICYCLE,2018-11-12T00:00:00,2018,November,Monday,12,316,20,2018-11-14T00:00:00,2018,November,Wednesday,14,318,12,D43,Toronto,137,Woburn (137),"Apartment (Rooming House, Condo)",Apartment,UK,,TO,3,BLK,800.0,STOLEN,25288,"{'type': 'Point', 'coordinates': (-79.24698657, 43.78053734)}"
-25296,4443,GO-20199018040,THEFT UNDER,2019-06-06T00:00:00,2019,June,Thursday,6,157,13,2019-06-10T00:00:00,2019,June,Monday,10,161,12,D43,Toronto,137,Woburn (137),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,10,GRN,300.0,STOLEN,25289,"{'type': 'Point', 'coordinates': (-79.23064018, 43.77349785)}"
-25297,4461,GO-20199018254,THEFT UNDER,2019-06-07T00:00:00,2019,June,Friday,7,158,21,2019-06-11T00:00:00,2019,June,Tuesday,11,162,22,D43,Toronto,137,Woburn (137),"Apartment (Rooming House, Condo)",Apartment,SU,IMPULSE,MT,5,BLK,149.0,STOLEN,25290,"{'type': 'Point', 'coordinates': (-79.23064018, 43.77349785)}"
-25298,4935,GO-20191419985,THEFT UNDER - BICYCLE,2019-07-26T00:00:00,2019,July,Friday,26,207,14,2019-07-28T00:00:00,2019,July,Sunday,28,209,13,D43,Toronto,137,Woburn (137),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,MT,21,GRNBLK,150.0,STOLEN,25291,"{'type': 'Point', 'coordinates': (-79.22931781, 43.75689939)}"
-25299,4993,GO-20199025301,THEFT UNDER,2019-08-07T00:00:00,2019,August,Wednesday,7,219,16,2019-08-07T00:00:00,2019,August,Wednesday,7,219,19,D43,Toronto,137,Woburn (137),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,XC27,MT,1,BLK,400.0,STOLEN,25292,"{'type': 'Point', 'coordinates': (-79.22909022, 43.76100951000001)}"
-25300,6354,GO-20209015081,THEFT UNDER,2020-06-05T00:00:00,2020,June,Friday,5,157,16,2020-06-10T00:00:00,2020,June,Wednesday,10,162,15,D43,Toronto,137,Woburn (137),Convenience Stores,Commercial,OT,RAPID E- MEN'S,EL,9,BLK,1800.0,STOLEN,25293,"{'type': 'Point', 'coordinates': (-79.22931781, 43.75689939)}"
-25301,8205,GO-20142353102,ROBBERY - OTHER,2014-06-22T00:00:00,2014,June,Sunday,22,173,19,2014-06-23T00:00:00,2014,June,Monday,23,174,20,D43,Toronto,137,Woburn (137),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NEXT,24' B HIGH PEAK,OT,6,BLK,78.0,STOLEN,25294,"{'type': 'Point', 'coordinates': (-79.23495391, 43.77574024)}"
-25302,8484,GO-20142539129,THEFT UNDER,2014-07-16T00:00:00,2014,July,Wednesday,16,197,11,2014-07-21T00:00:00,2014,July,Monday,21,202,5,D43,Toronto,137,Woburn (137),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RALEIGH,,MT,1,YEL,,STOLEN,25295,"{'type': 'Point', 'coordinates': (-79.22931781, 43.75689939)}"
-25303,8557,GO-20142633038,THEFT UNDER,2014-08-02T00:00:00,2014,August,Saturday,2,214,9,2014-08-04T00:00:00,2014,August,Monday,4,216,8,D43,Toronto,137,Woburn (137),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GIANT,,MT,18,BLKGRY,500.0,STOLEN,25296,"{'type': 'Point', 'coordinates': (-79.22931781, 43.75689939)}"
-25304,8970,GO-20142979819,THEFT UNDER,2014-09-24T00:00:00,2014,September,Wednesday,24,267,10,2014-09-25T00:00:00,2014,September,Thursday,25,268,11,D43,Toronto,137,Woburn (137),Schools During Supervised Activity,Educational,CCM,MOUNTAIN BIKE,MT,21,BLKDGR,200.0,STOLEN,25297,"{'type': 'Point', 'coordinates': (-79.2265346, 43.77758805)}"
-25305,8971,GO-20142979823,THEFT UNDER,2014-09-23T00:00:00,2014,September,Tuesday,23,266,8,2014-09-25T00:00:00,2014,September,Thursday,25,268,11,D43,Toronto,137,Woburn (137),Schools During Supervised Activity,Educational,SCHWINN,,MT,21,WHI,300.0,STOLEN,25298,"{'type': 'Point', 'coordinates': (-79.2265346, 43.77758805)}"
-25306,8988,GO-20142994894,THEFT UNDER,2014-09-22T00:00:00,2014,September,Monday,22,265,12,2014-09-27T00:00:00,2014,September,Saturday,27,270,13,D43,Toronto,137,Woburn (137),Schools During Supervised Activity,Educational,SCHWINN,,MT,21,WHI,400.0,STOLEN,25299,"{'type': 'Point', 'coordinates': (-79.2265346, 43.77758805)}"
-25307,9971,GO-20151014647,ROBBERY - MUGGING,2015-06-16T00:00:00,2015,June,Tuesday,16,167,20,2015-06-17T00:00:00,2015,June,Wednesday,17,168,1,D43,Toronto,137,Woburn (137),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNK,,MT,0,,,STOLEN,25300,"{'type': 'Point', 'coordinates': (-79.23171553, 43.77643477)}"
-25308,10069,GO-20151236678,THEFT UNDER,2015-07-20T00:00:00,2015,July,Monday,20,201,7,2015-07-20T00:00:00,2015,July,Monday,20,201,17,D43,Toronto,137,Woburn (137),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERBIKE,,OT,0,BLU,,STOLEN,25301,"{'type': 'Point', 'coordinates': (-79.23003753, 43.76818571)}"
-25309,10602,GO-20151677437,THEFT UNDER - BICYCLE,2015-10-07T00:00:00,2015,October,Wednesday,7,280,21,2015-10-07T00:00:00,2015,October,Wednesday,7,280,21,D43,Toronto,137,Woburn (137),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,OT,49,BLK,600.0,STOLEN,25302,"{'type': 'Point', 'coordinates': (-79.20809308, 43.76580049)}"
-25310,10883,GO-20152155733,THEFT UNDER,2015-12-14T00:00:00,2015,December,Monday,14,348,20,2015-12-16T00:00:00,2015,December,Wednesday,16,350,15,D43,Toronto,137,Woburn (137),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BMX,UNKNOWN,BM,1,BLK,,STOLEN,25303,"{'type': 'Point', 'coordinates': (-79.22281012000002, 43.77312389)}"
-25311,10988,GO-2016256208,THEFT UNDER,2015-12-18T00:00:00,2015,December,Friday,18,352,4,2016-02-12T00:00:00,2016,February,Friday,12,43,12,D43,Toronto,137,Woburn (137),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,MT,10,BLUGRN,,STOLEN,25304,"{'type': 'Point', 'coordinates': (-79.2265346, 43.77758805)}"
-25312,11062,GO-2016475651,THEFT FROM MOTOR VEHICLE UNDER,2016-03-18T00:00:00,2016,March,Friday,18,78,22,2016-03-19T00:00:00,2016,March,Saturday,19,79,18,D43,Toronto,137,Woburn (137),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MONGOOSE,,MT,10,WHI,300.0,STOLEN,25305,"{'type': 'Point', 'coordinates': (-79.23694133, 43.75475523000001)}"
-25313,11361,GO-2016883920,THEFT UNDER - BICYCLE,2016-05-21T00:00:00,2016,May,Saturday,21,142,20,2016-05-22T00:00:00,2016,May,Sunday,22,143,21,D43,Toronto,137,Woburn (137),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,0,,,STOLEN,25306,"{'type': 'Point', 'coordinates': (-79.21154392, 43.76416023)}"
-25314,11362,GO-2016883920,THEFT UNDER - BICYCLE,2016-05-21T00:00:00,2016,May,Saturday,21,142,20,2016-05-22T00:00:00,2016,May,Sunday,22,143,21,D43,Toronto,137,Woburn (137),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,0,,,STOLEN,25307,"{'type': 'Point', 'coordinates': (-79.21154392, 43.76416023)}"
-25315,11564,GO-20161050232,THEFT UNDER - BICYCLE,2016-06-10T00:00:00,2016,June,Friday,10,162,12,2016-06-16T00:00:00,2016,June,Thursday,16,168,15,D43,Toronto,137,Woburn (137),"Apartment (Rooming House, Condo)",Apartment,IRON HORSE,,MT,21,BLKWHI,480.0,STOLEN,25308,"{'type': 'Point', 'coordinates': (-79.21797194, 43.75766116)}"
-25316,11743,GO-20169006882,THEFT UNDER,2016-07-07T00:00:00,2016,July,Thursday,7,189,17,2016-07-07T00:00:00,2016,July,Thursday,7,189,21,D43,Toronto,137,Woburn (137),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UK,,MT,10,PLE,200.0,STOLEN,25309,"{'type': 'Point', 'coordinates': (-79.22901838, 43.75602016)}"
-25317,11747,GO-20169006925,THEFT UNDER,2016-06-18T00:00:00,2016,June,Saturday,18,170,10,2016-07-09T00:00:00,2016,July,Saturday,9,191,10,D43,Toronto,137,Woburn (137),"Religious Facilities (Synagogue, Church, Convent, Mosque)",Other,SP,INNOVATION,MT,21,GRY,117.0,STOLEN,25310,"{'type': 'Point', 'coordinates': (-79.22528368, 43.75982126)}"
-25318,11801,GO-20169007163,THEFT UNDER - BICYCLE,2016-07-13T00:00:00,2016,July,Wednesday,13,195,14,2016-07-13T00:00:00,2016,July,Wednesday,13,195,21,D43,Toronto,137,Woburn (137),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,70,BLK,700.0,STOLEN,25311,"{'type': 'Point', 'coordinates': (-79.22296182, 43.75802441)}"
-25319,11888,GO-20169007686,THEFT UNDER - BICYCLE,2016-07-20T00:00:00,2016,July,Wednesday,20,202,11,2016-07-24T00:00:00,2016,July,Sunday,24,206,20,D43,Toronto,137,Woburn (137),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RM,,TO,24,RED,600.0,RECOVERED,25312,"{'type': 'Point', 'coordinates': (-79.22115919, 43.75960425)}"
-25320,12199,GO-20169009474,THEFT UNDER - BICYCLE,2016-08-23T00:00:00,2016,August,Tuesday,23,236,17,2016-08-25T00:00:00,2016,August,Thursday,25,238,13,D43,Toronto,137,Woburn (137),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,6,,100.0,STOLEN,25313,"{'type': 'Point', 'coordinates': (-79.22845305, 43.74614502)}"
-25321,12724,GO-20161964489,THEFT OF EBIKE UNDER $5000,2016-11-03T00:00:00,2016,November,Thursday,3,308,21,2016-11-04T00:00:00,2016,November,Friday,4,309,19,D43,Toronto,137,Woburn (137),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,EL,1,ONGWHI,,STOLEN,25314,"{'type': 'Point', 'coordinates': (-79.23495391, 43.77574024)}"
-25322,13472,GO-2019505754,B&E,2019-03-17T00:00:00,2019,March,Sunday,17,76,18,2019-03-20T00:00:00,2019,March,Wednesday,20,79,14,D43,Toronto,137,Woburn (137),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,10,BLKWHI,500.0,STOLEN,25315,"{'type': 'Point', 'coordinates': (-79.22133467, 43.78280046)}"
-25323,13489,GO-2019986366,THEFT UNDER,2019-05-29T00:00:00,2019,May,Wednesday,29,149,15,2019-05-29T00:00:00,2019,May,Wednesday,29,149,19,D43,Toronto,137,Woburn (137),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,,MT,7,PLEBLK,220.0,STOLEN,25316,"{'type': 'Point', 'coordinates': (-79.22591418, 43.77595079)}"
-25324,13579,GO-20201567580,THEFT UNDER - BICYCLE,2020-08-16T00:00:00,2020,August,Sunday,16,229,15,2020-08-20T00:00:00,2020,August,Thursday,20,233,17,D43,Toronto,137,Woburn (137),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,GIANT,,RG,21,SIL,700.0,STOLEN,25317,"{'type': 'Point', 'coordinates': (-79.21972755, 43.76100494)}"
-25325,13709,GO-20171520617,THEFT UNDER - BICYCLE,2017-08-22T00:00:00,2017,August,Tuesday,22,234,18,2017-08-22T00:00:00,2017,August,Tuesday,22,234,19,D43,Toronto,137,Woburn (137),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,MT,21,LBL,,STOLEN,25318,"{'type': 'Point', 'coordinates': (-79.23369423, 43.76986852)}"
-25326,13765,GO-20189018506,THEFT UNDER - BICYCLE,2018-06-11T00:00:00,2018,June,Monday,11,162,13,2018-06-13T00:00:00,2018,June,Wednesday,13,164,11,D43,Toronto,137,Woburn (137),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,MT,1,BLK,0.0,STOLEN,25319,"{'type': 'Point', 'coordinates': (-79.22909022, 43.76100951000001)}"
-25327,13793,GO-20189024735,THEFT UNDER - BICYCLE,2018-06-27T00:00:00,2018,June,Wednesday,27,178,6,2018-08-01T00:00:00,2018,August,Wednesday,1,213,11,D43,Toronto,137,Woburn (137),"Apartment (Rooming House, Condo)",Apartment,HU,,BM,1,PNK,99.0,STOLEN,25320,"{'type': 'Point', 'coordinates': (-79.23171553, 43.77643477)}"
-25328,13800,GO-20189026956,THEFT UNDER - BICYCLE,2018-08-18T00:00:00,2018,August,Saturday,18,230,11,2018-08-18T00:00:00,2018,August,Saturday,18,230,22,D43,Toronto,137,Woburn (137),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SU,,RG,10,SIL,110.0,STOLEN,25321,"{'type': 'Point', 'coordinates': (-79.22931781, 43.75689939)}"
-25329,13983,GO-20169006882,THEFT UNDER,2016-07-07T00:00:00,2016,July,Thursday,7,189,17,2016-07-07T00:00:00,2016,July,Thursday,7,189,21,D43,Toronto,137,Woburn (137),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,SU,"SC 26"""" 1800 W",MT,10,PLE,200.0,STOLEN,25322,"{'type': 'Point', 'coordinates': (-79.22901838, 43.75602016)}"
-25330,14047,GO-2017369372,THEFT UNDER - BICYCLE,2017-02-21T00:00:00,2017,February,Tuesday,21,52,15,2017-02-28T00:00:00,2017,February,Tuesday,28,59,11,D43,Toronto,137,Woburn (137),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,OT,0,,180.0,STOLEN,25323,"{'type': 'Point', 'coordinates': (-79.21100949, 43.76286448)}"
-25331,16960,GO-20171367630,THEFT UNDER,2017-07-29T00:00:00,2017,July,Saturday,29,210,21,2017-07-30T00:00:00,2017,July,Sunday,30,211,10,D43,Toronto,137,Woburn (137),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,AQUILA,,SC,12,,3000.0,STOLEN,25324,"{'type': 'Point', 'coordinates': (-79.23293774, 43.77954305)}"
-25332,16961,GO-20171432768,THEFT UNDER - BICYCLE,2017-08-08T00:00:00,2017,August,Tuesday,8,220,19,2017-08-09T00:00:00,2017,August,Wednesday,9,221,15,D43,Toronto,137,Woburn (137),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BOULDER,,MT,16,BLU,600.0,STOLEN,25325,"{'type': 'Point', 'coordinates': (-79.21426515, 43.770800290000004)}"
-25333,17131,GO-20159002991,THEFT UNDER,2015-05-16T00:00:00,2015,May,Saturday,16,136,22,2015-05-21T00:00:00,2015,May,Thursday,21,141,13,D43,Toronto,137,Woburn (137),Convenience Stores,Commercial,OT,,MT,6,,138.0,STOLEN,25326,"{'type': 'Point', 'coordinates': (-79.23064018, 43.77349785)}"
-25334,17217,GO-20169004362,THEFT UNDER - BICYCLE,2016-05-10T00:00:00,2016,May,Tuesday,10,131,13,2016-05-10T00:00:00,2016,May,Tuesday,10,131,16,D43,Toronto,137,Woburn (137),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,,MT,21,BLK,800.0,STOLEN,25327,"{'type': 'Point', 'coordinates': (-79.22115919, 43.75960425)}"
-25335,17265,GO-20161609888,THEFT UNDER - BICYCLE,2016-09-09T00:00:00,2016,September,Friday,9,253,19,2016-09-10T00:00:00,2016,September,Saturday,10,254,16,D43,Toronto,137,Woburn (137),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,BMX,BM,1,DBL,350.0,STOLEN,25328,"{'type': 'Point', 'coordinates': (-79.22882238, 43.7470102)}"
-25336,17272,GO-20169010754,THEFT UNDER - BICYCLE,2016-09-19T00:00:00,2016,September,Monday,19,263,12,2016-09-19T00:00:00,2016,September,Monday,19,263,23,D43,Toronto,137,Woburn (137),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,CC,SL 2.0,MT,21,BLK,633.0,STOLEN,25329,"{'type': 'Point', 'coordinates': (-79.2246687, 43.75783951)}"
-25337,17452,GO-20142542318,THEFT UNDER,2014-07-17T00:00:00,2014,July,Thursday,17,198,7,2014-07-21T00:00:00,2014,July,Monday,21,202,15,D43,Toronto,137,Woburn (137),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUPERCYCLE,UNKNOWN,RC,21,BLK,135.0,STOLEN,25330,"{'type': 'Point', 'coordinates': (-79.22931781, 43.75689939)}"
-25338,17458,GO-20149005272,THEFT UNDER,2014-07-22T00:00:00,2014,July,Tuesday,22,203,13,2014-07-23T00:00:00,2014,July,Wednesday,23,204,13,D43,Toronto,137,Woburn (137),"Open Areas (Lakes, Parks, Rivers)",Outside,SU,SUPERCYCLE,MT,18,BLU,100.0,STOLEN,25331,"{'type': 'Point', 'coordinates': (-79.22931781, 43.75689939)}"
-25339,17483,GO-20142979443,THEFT UNDER,2014-09-19T00:00:00,2014,September,Friday,19,262,11,2014-09-25T00:00:00,2014,September,Thursday,25,268,11,D43,Toronto,137,Woburn (137),Schools During Supervised Activity,Educational,SUPERCYCLE,,MT,21,RED,200.0,STOLEN,25332,"{'type': 'Point', 'coordinates': (-79.2265346, 43.77758805)}"
-25340,20222,GO-20179012494,THEFT UNDER - BICYCLE,2017-08-06T00:00:00,2017,August,Sunday,6,218,17,2017-08-15T00:00:00,2017,August,Tuesday,15,227,17,D43,Toronto,137,Woburn (137),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,ROADRUNNER VENT,RG,12,PNK,0.0,STOLEN,25333,"{'type': 'Point', 'coordinates': (-79.20670358, 43.76066621)}"
-25341,20235,GO-20171581864,PROPERTY - FOUND,2017-08-29T00:00:00,2017,August,Tuesday,29,241,9,2017-09-01T00:00:00,2017,September,Friday,1,244,8,D43,Toronto,137,Woburn (137),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,K-ROCK,,FO,6,SIL,250.0,UNKNOWN,25334,"{'type': 'Point', 'coordinates': (-79.22007517, 43.76186251)}"
-25342,20388,GO-2015925695,THEFT UNDER,2015-06-01T00:00:00,2015,June,Monday,1,152,10,2015-06-02T00:00:00,2015,June,Tuesday,2,153,22,D43,Toronto,137,Woburn (137),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,,MT,12,BLKRED,99.0,STOLEN,25335,"{'type': 'Point', 'coordinates': (-79.2265346, 43.77758805)}"
-25343,20943,GO-20143237096,THEFT UNDER,2014-10-26T00:00:00,2014,October,Sunday,26,299,12,2014-11-04T00:00:00,2014,November,Tuesday,4,308,13,D43,Toronto,137,Woburn (137),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MARIN OR MARINO,,RC,12,GRY,,UNKNOWN,25336,"{'type': 'Point', 'coordinates': (-79.21721042, 43.75586804)}"
-25344,23349,GO-20209020057,THEFT UNDER,2020-08-12T00:00:00,2020,August,Wednesday,12,225,16,2020-08-13T00:00:00,2020,August,Thursday,13,226,11,D43,Toronto,137,Woburn (137),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SC,,RG,21,BLU,0.0,STOLEN,25337,"{'type': 'Point', 'coordinates': (-79.22931781, 43.75689939)}"
-25345,23623,GO-20159004302,THEFT UNDER,2015-07-06T00:00:00,2015,July,Monday,6,187,15,2015-07-08T00:00:00,2015,July,Wednesday,8,189,15,D43,Toronto,137,Woburn (137),Bar / Restaurant,Commercial,SU,VICE,MT,18,BLK,150.0,STOLEN,25338,"{'type': 'Point', 'coordinates': (-79.24171856, 43.77433353)}"
-25346,23720,GO-20169007433,THEFT UNDER - BICYCLE,2016-07-19T00:00:00,2016,July,Tuesday,19,201,16,2016-07-19T00:00:00,2016,July,Tuesday,19,201,19,D43,Toronto,137,Woburn (137),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,ROAD BIKE,RG,32,BLU,300.0,STOLEN,25339,"{'type': 'Point', 'coordinates': (-79.21100949, 43.76286448)}"
-25347,23745,GO-20161512993,THEFT UNDER - BICYCLE,2016-08-26T00:00:00,2016,August,Friday,26,239,12,2016-08-29T00:00:00,2016,August,Monday,29,242,19,D43,Toronto,137,Woburn (137),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SCHWINN,TESLIN,MT,21,RED,350.0,STOLEN,25340,"{'type': 'Point', 'coordinates': (-79.22931781, 43.75689939)}"
-25348,23925,GO-20142546317,THEFT UNDER,2014-07-16T00:00:00,2014,July,Wednesday,16,197,13,2014-07-22T00:00:00,2014,July,Tuesday,22,203,6,D43,Toronto,137,Woburn (137),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,HIGH PEAK,,MT,6,BLKSIL,110.0,STOLEN,25341,"{'type': 'Point', 'coordinates': (-79.22931781, 43.75689939)}"
-25349,375,GO-2017836389,THEFT OF EBIKE UNDER $5000,2017-05-07T00:00:00,2017,May,Sunday,7,127,19,2017-05-12T00:00:00,2017,May,Friday,12,132,12,D41,Toronto,138,Eglinton East (138),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,EL,1,,,STOLEN,25342,"{'type': 'Point', 'coordinates': (-79.2555692, 43.73507361)}"
-25350,638,GO-20171068267,THEFT UNDER - BICYCLE,2017-06-13T00:00:00,2017,June,Tuesday,13,164,10,2017-06-18T00:00:00,2017,June,Sunday,18,169,13,D43,Toronto,138,Eglinton East (138),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,STORM,MT,10,BLUBLK,1000.0,STOLEN,25343,"{'type': 'Point', 'coordinates': (-79.23724759, 43.73667607)}"
-25351,749,GO-20179009183,THEFT UNDER - BICYCLE,2017-06-23T00:00:00,2017,June,Friday,23,174,12,2017-06-29T00:00:00,2017,June,Thursday,29,180,15,D43,Toronto,138,Eglinton East (138),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,MT,21,BLK,500.0,STOLEN,25344,"{'type': 'Point', 'coordinates': (-79.22928014, 43.74238158)}"
-25352,3386,GO-20181624129,THEFT UNDER - BICYCLE,2018-08-30T00:00:00,2018,August,Thursday,30,242,12,2018-09-02T00:00:00,2018,September,Sunday,2,245,10,D41,Toronto,138,Eglinton East (138),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,,MT,12,RED,600.0,STOLEN,25345,"{'type': 'Point', 'coordinates': (-79.25201093, 43.73584906)}"
-25353,5626,GO-20191410817,THEFT OF MOTOR VEHICLE,2019-07-27T00:00:00,2019,July,Saturday,27,208,3,2019-07-27T00:00:00,2019,July,Saturday,27,208,3,D41,Toronto,138,Eglinton East (138),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,OT,0,BLKGRN,,UNKNOWN,25346,"{'type': 'Point', 'coordinates': (-79.24804414, 43.7366955)}"
-25354,5675,GO-20192178108,B&E,2019-11-11T00:00:00,2019,November,Monday,11,315,4,2019-11-11T00:00:00,2019,November,Monday,11,315,10,D43,Toronto,138,Eglinton East (138),"Apartment (Rooming House, Condo)",Apartment,ZZZ,,EL,0,,,STOLEN,25347,"{'type': 'Point', 'coordinates': (-79.23568714000001, 43.74059196)}"
-25355,6585,GO-20201285003,B&E,2020-07-10T00:00:00,2020,July,Friday,10,192,22,2020-07-11T00:00:00,2020,July,Saturday,11,193,14,D41,Toronto,138,Eglinton East (138),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,TALON 2,MT,10,BLKYEL,900.0,STOLEN,25348,"{'type': 'Point', 'coordinates': (-79.26247404, 43.7381396)}"
-25356,6916,GO-20209019784,THEFT UNDER - BICYCLE,2020-07-19T00:00:00,2020,July,Sunday,19,201,20,2020-08-10T00:00:00,2020,August,Monday,10,223,9,D41,Toronto,138,Eglinton East (138),"Apartment (Rooming House, Condo)",Apartment,GT,GT AGGRESSOR SP,MT,7,,400.0,STOLEN,25349,"{'type': 'Point', 'coordinates': (-79.26174292, 43.73369145)}"
-25357,6917,GO-20209019784,THEFT UNDER - BICYCLE,2020-07-19T00:00:00,2020,July,Sunday,19,201,20,2020-08-10T00:00:00,2020,August,Monday,10,223,9,D41,Toronto,138,Eglinton East (138),"Apartment (Rooming House, Condo)",Apartment,CC,CCM APEX WOMEN',MT,24,,400.0,STOLEN,25350,"{'type': 'Point', 'coordinates': (-79.26174292, 43.73369145)}"
-25358,7133,GO-20201641467,B&E,2020-08-30T00:00:00,2020,August,Sunday,30,243,23,2020-08-31T00:00:00,2020,August,Monday,31,244,7,D43,Toronto,138,Eglinton East (138),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ZZZ,,OT,18,DBLGRY,,STOLEN,25351,"{'type': 'Point', 'coordinates': (-79.24152585, 43.73813015)}"
-25359,7210,GO-20201698894,THEFT UNDER - BICYCLE,2020-09-05T00:00:00,2020,September,Saturday,5,249,20,2020-09-09T00:00:00,2020,September,Wednesday,9,253,13,D43,Toronto,138,Eglinton East (138),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUPERCYCLE,,MT,6,BLKRED,124.0,STOLEN,25352,"{'type': 'Point', 'coordinates': (-79.23724759, 43.73667607)}"
-25360,7252,GO-20209023309,THEFT UNDER - BICYCLE,2020-09-15T00:00:00,2020,September,Tuesday,15,259,16,2020-09-15T00:00:00,2020,September,Tuesday,15,259,23,D41,Toronto,138,Eglinton East (138),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,,MT,18,RED,600.0,STOLEN,25353,"{'type': 'Point', 'coordinates': (-79.25606562000002, 43.74084448)}"
-25361,7253,GO-20209023309,THEFT UNDER - BICYCLE,2020-09-15T00:00:00,2020,September,Tuesday,15,259,16,2020-09-15T00:00:00,2020,September,Tuesday,15,259,23,D41,Toronto,138,Eglinton East (138),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,,MT,18,WHI,600.0,STOLEN,25354,"{'type': 'Point', 'coordinates': (-79.25606562000002, 43.74084448)}"
-25362,10831,GO-20152076177,THEFT UNDER,2015-12-03T00:00:00,2015,December,Thursday,3,337,4,2015-12-04T00:00:00,2015,December,Friday,4,338,7,D43,Toronto,138,Eglinton East (138),"Apartment (Rooming House, Condo)",Apartment,JEEP,UNKNOWN,MT,28,SIL,0.0,STOLEN,25355,"{'type': 'Point', 'coordinates': (-79.24549227, 43.73992117)}"
-25363,10890,GO-20152219770,THEFT UNDER,2015-12-21T00:00:00,2015,December,Monday,21,355,18,2015-12-28T00:00:00,2015,December,Monday,28,362,9,D43,Toronto,138,Eglinton East (138),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,MT,21,,185.0,STOLEN,25356,"{'type': 'Point', 'coordinates': (-79.23969294, 43.74160962)}"
-25364,12056,GO-20161390663,THEFT UNDER - BICYCLE,2016-08-07T00:00:00,2016,August,Sunday,7,220,2,2016-08-07T00:00:00,2016,August,Sunday,7,220,16,D43,Toronto,138,Eglinton East (138),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,RG,11,BLU,300.0,STOLEN,25357,"{'type': 'Point', 'coordinates': (-79.24549227, 43.73992117)}"
-25365,13477,GO-20199011935,THEFT UNDER,2019-01-21T00:00:00,2019,January,Monday,21,21,12,2019-04-15T00:00:00,2019,April,Monday,15,105,14,D43,Toronto,138,Eglinton East (138),"Apartment (Rooming House, Condo)",Apartment,SU,,BM,21,BLU,100.0,STOLEN,25358,"{'type': 'Point', 'coordinates': (-79.23724759, 43.73667607)}"
-25366,13550,GO-20209017069,THEFT UNDER,2019-07-07T00:00:00,2019,July,Sunday,7,188,22,2020-07-07T00:00:00,2020,July,Tuesday,7,189,22,D43,Toronto,138,Eglinton East (138),"Apartment (Rooming House, Condo)",Apartment,UK,,OT,30,,1500.0,STOLEN,25359,"{'type': 'Point', 'coordinates': (-79.23925721, 43.74058895)}"
-25367,17220,GO-2016851439,THEFT UNDER - BICYCLE,2016-05-17T00:00:00,2016,May,Tuesday,17,138,19,2016-05-17T00:00:00,2016,May,Tuesday,17,138,22,D41,Toronto,138,Eglinton East (138),"Open Areas (Lakes, Parks, Rivers)",Outside,UNKNOWN MAKE,,MT,0,BLURED,250.0,STOLEN,25360,"{'type': 'Point', 'coordinates': (-79.25289597, 43.73798427)}"
-25368,17305,GO-20179004064,THEFT UNDER - BICYCLE,2017-03-21T00:00:00,2017,March,Tuesday,21,80,8,2017-04-01T00:00:00,2017,April,Saturday,1,91,12,D43,Toronto,138,Eglinton East (138),Go Station,Transit,OT,CORSO,MT,21,BLK,2000.0,STOLEN,25361,"{'type': 'Point', 'coordinates': (-79.23201368, 43.74025954)}"
-25369,17481,GO-20149006999,THEFT UNDER,2014-08-19T00:00:00,2014,August,Tuesday,19,231,23,2014-08-20T00:00:00,2014,August,Wednesday,20,232,12,D43,Toronto,138,Eglinton East (138),"Apartment (Rooming House, Condo)",Apartment,CC,ENDURANCE,OT,14,ONG,300.0,STOLEN,25362,"{'type': 'Point', 'coordinates': (-79.24468, 43.74478793)}"
-25370,20027,GO-2019846525,THEFT UNDER,2019-05-09T00:00:00,2019,May,Thursday,9,129,23,2019-05-10T00:00:00,2019,May,Friday,10,130,0,D41,Toronto,138,Eglinton East (138),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,MOUNTAIN BIKE,MT,0,BLU,350.0,STOLEN,25363,"{'type': 'Point', 'coordinates': (-79.24804414, 43.7366955)}"
-25371,23300,GO-20191604684,ASSAULT BODILY HARM,2019-08-23T00:00:00,2019,August,Friday,23,235,3,2019-08-23T00:00:00,2019,August,Friday,23,235,4,D41,Toronto,138,Eglinton East (138),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,,MT,10,BLU,,STOLEN,25364,"{'type': 'Point', 'coordinates': (-79.25679849, 43.7348062)}"
-25372,23344,GO-20209019051,THEFT UNDER - BICYCLE,2020-07-30T00:00:00,2020,July,Thursday,30,212,19,2020-07-30T00:00:00,2020,July,Thursday,30,212,23,D41,Toronto,138,Eglinton East (138),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,1800,MT,6,SIL,110.0,STOLEN,25366,"{'type': 'Point', 'coordinates': (-79.25315025, 43.73558149)}"
-25373,23346,GO-20201445898,THEFT FROM MOTOR VEHICLE OVER,2020-07-30T00:00:00,2020,July,Thursday,30,212,1,2020-08-03T00:00:00,2020,August,Monday,3,216,11,D43,Toronto,138,Eglinton East (138),"Single Home, House (Attach Garage, Cottage, Mobile)",House,PINARELLO,MARVEL,OT,11,BLKOTH,15000.0,STOLEN,25367,"{'type': 'Point', 'coordinates': (-79.24688367, 43.73589183)}"
-25374,13544,GO-20209015229,THEFT UNDER,2020-06-12T00:00:00,2020,June,Friday,12,164,20,2020-06-13T00:00:00,2020,June,Saturday,13,165,14,D42,Toronto,132,Malvern (132),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,,RG,35,BLK,0.0,STOLEN,25368,"{'type': 'Point', 'coordinates': (-79.22161652, 43.80917229)}"
-25375,13866,GO-20159002927,THEFT UNDER,2015-05-11T00:00:00,2015,May,Monday,11,131,17,2015-05-20T00:00:00,2015,May,Wednesday,20,140,11,D42,Toronto,132,Malvern (132),Schools During Un-Supervised Activity,Educational,GI,YUKON,MT,21,TAN,800.0,STOLEN,25369,"{'type': 'Point', 'coordinates': (-79.21555349, 43.80779799)}"
-25376,14448,GO-2015800106,THEFT UNDER,2015-05-12T00:00:00,2015,May,Tuesday,12,132,18,2015-05-13T00:00:00,2015,May,Wednesday,13,133,19,D42,Toronto,132,Malvern (132),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,OT,0,,,STOLEN,25370,"{'type': 'Point', 'coordinates': (-79.23987045000001, 43.79571616)}"
-25377,16794,GO-20199030900,THEFT UNDER,2019-09-18T00:00:00,2019,September,Wednesday,18,261,21,2019-09-20T00:00:00,2019,September,Friday,20,263,19,D42,Toronto,132,Malvern (132),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,,RG,7,BLK,192.0,STOLEN,25371,"{'type': 'Point', 'coordinates': (-79.22415552, 43.80791174)}"
-25378,16816,GO-20201066088,THEFT UNDER - BICYCLE,2020-06-09T00:00:00,2020,June,Tuesday,9,161,19,2020-06-10T00:00:00,2020,June,Wednesday,10,162,9,D42,Toronto,132,Malvern (132),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,MT,0,RED,250.0,STOLEN,25372,"{'type': 'Point', 'coordinates': (-79.22441378, 43.79903104)}"
-25379,17163,GO-20151495825,THEFT UNDER,2015-08-23T00:00:00,2015,August,Sunday,23,235,20,2015-08-30T00:00:00,2015,August,Sunday,30,242,18,D42,Toronto,132,Malvern (132),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KTM,,OT,0,,3500.0,STOLEN,25373,"{'type': 'Point', 'coordinates': (-79.23275199000001, 43.81111446)}"
-25380,17208,GO-2016432591,PROPERTY - FOUND,2016-03-12T00:00:00,2016,March,Saturday,12,72,8,2016-03-12T00:00:00,2016,March,Saturday,12,72,17,D42,Toronto,132,Malvern (132),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPORTEK,RIDGERUNNER,MT,18,LBL,,UNKNOWN,25374,"{'type': 'Point', 'coordinates': (-79.23005658, 43.80035302)}"
-25381,17435,GO-20142270000,THEFT UNDER,2014-06-09T00:00:00,2014,June,Monday,9,160,8,2014-06-11T00:00:00,2014,June,Wednesday,11,162,17,D42,Toronto,132,Malvern (132),Schools During Supervised Activity,Educational,AVIGO,BONE COLLECTOR,BM,1,BLK,150.0,STOLEN,25375,"{'type': 'Point', 'coordinates': (-79.22810317, 43.798416780000004)}"
-25382,20028,GO-20199014691,THEFT UNDER,2019-05-08T00:00:00,2019,May,Wednesday,8,128,12,2019-05-11T00:00:00,2019,May,Saturday,11,131,12,D42,Toronto,132,Malvern (132),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,18,,110.0,STOLEN,25376,"{'type': 'Point', 'coordinates': (-79.22161652, 43.80917229)}"
-25383,20269,GO-20179018715,THEFT UNDER - BICYCLE,2017-10-27T00:00:00,2017,October,Friday,27,300,11,2017-11-02T00:00:00,2017,November,Thursday,2,306,2,D42,Toronto,132,Malvern (132),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,RG,15,GRN,0.0,STOLEN,25377,"{'type': 'Point', 'coordinates': (-79.22088214, 43.80557764)}"
-25384,20317,GO-20189019392,THEFT UNDER,2018-06-18T00:00:00,2018,June,Monday,18,169,11,2018-06-19T00:00:00,2018,June,Tuesday,19,170,19,D42,Toronto,132,Malvern (132),Schools During Supervised Activity,Educational,CC,SAVAGE 27.5,MT,21,GRY,400.0,STOLEN,25378,"{'type': 'Point', 'coordinates': (-79.22411468, 43.8034483)}"
-25385,20507,GO-20169006837,THEFT UNDER - BICYCLE,2016-07-07T00:00:00,2016,July,Thursday,7,189,3,2016-07-07T00:00:00,2016,July,Thursday,7,189,9,D42,Toronto,132,Malvern (132),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SU,,MT,21,BLU,0.0,STOLEN,25379,"{'type': 'Point', 'coordinates': (-79.2281779, 43.79999192)}"
-25386,20945,GO-20143239833,THEFT UNDER,2014-11-04T00:00:00,2014,November,Tuesday,4,308,19,2014-11-04T00:00:00,2014,November,Tuesday,4,308,21,D42,Toronto,132,Malvern (132),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RALEIGH,,MT,18,PLE,,UNKNOWN,25380,"{'type': 'Point', 'coordinates': (-79.23033103, 43.79296735)}"
-25387,23296,GO-20199026029,THEFT UNDER,2019-06-25T00:00:00,2019,June,Tuesday,25,176,18,2019-08-13T00:00:00,2019,August,Tuesday,13,225,13,D42,Toronto,132,Malvern (132),"Apartment (Rooming House, Condo)",Apartment,MI,SUPERCYLCE 1800,MT,6,BLK,600.0,STOLEN,25381,"{'type': 'Point', 'coordinates': (-79.22161652, 43.80917229)}"
-25388,23360,GO-20201881344,ROBBERY - MUGGING,2020-10-03T00:00:00,2020,October,Saturday,3,277,21,2020-10-03T00:00:00,2020,October,Saturday,3,277,21,D42,Toronto,132,Malvern (132),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CUSTOM,,BM,0,WHI,600.0,STOLEN,25382,"{'type': 'Point', 'coordinates': (-79.22161652, 43.80917229)}"
-25389,23397,GO-2017658419,THEFT UNDER - BICYCLE,2017-04-13T00:00:00,2017,April,Thursday,13,103,19,2017-04-14T00:00:00,2017,April,Friday,14,104,14,D42,Toronto,132,Malvern (132),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,UNKNOWN,MT,8,,200.0,STOLEN,25383,"{'type': 'Point', 'coordinates': (-79.22675964, 43.8145073)}"
-25390,23535,GO-20189018144,THEFT UNDER - BICYCLE,2018-06-09T00:00:00,2018,June,Saturday,9,160,23,2018-06-10T00:00:00,2018,June,Sunday,10,161,21,D42,Toronto,132,Malvern (132),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,PLE,150.0,STOLEN,25384,"{'type': 'Point', 'coordinates': (-79.22664531, 43.8051811)}"
-25391,23605,GO-2015918353,THEFT UNDER,2015-05-25T00:00:00,2015,May,Monday,25,145,15,2015-06-01T00:00:00,2015,June,Monday,1,152,19,D42,Toronto,132,Malvern (132),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,BMX,,BM,0,BLUBLK,100.0,STOLEN,25385,"{'type': 'Point', 'coordinates': (-79.21555349, 43.80779799)}"
-25392,23670,GO-20151997238,THEFT UNDER - SHOPLIFTING,2015-11-21T00:00:00,2015,November,Saturday,21,325,9,2015-11-21T00:00:00,2015,November,Saturday,21,325,9,D42,Toronto,132,Malvern (132),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CCM,PRIME FS26 TRAI,MT,21,TRQ,,UNKNOWN,25386,"{'type': 'Point', 'coordinates': (-79.19903858, 43.80027853)}"
-25393,23743,GO-20169009615,THEFT UNDER - BICYCLE,2016-08-28T00:00:00,2016,August,Sunday,28,241,14,2016-08-28T00:00:00,2016,August,Sunday,28,241,17,D42,Toronto,132,Malvern (132),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,STATIC,MT,21,BLK,300.0,STOLEN,25387,"{'type': 'Point', 'coordinates': (-79.20060719, 43.79619447)}"
-25394,23744,GO-20169009615,THEFT UNDER - BICYCLE,2016-08-28T00:00:00,2016,August,Sunday,28,241,14,2016-08-28T00:00:00,2016,August,Sunday,28,241,17,D42,Toronto,132,Malvern (132),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,STATIC,MT,21,BLK,300.0,STOLEN,25388,"{'type': 'Point', 'coordinates': (-79.20060719, 43.79619447)}"
-25395,23888,GO-20142221647,THEFT UNDER,2014-06-04T00:00:00,2014,June,Wednesday,4,155,18,2014-06-04T00:00:00,2014,June,Wednesday,4,155,18,D42,Toronto,132,Malvern (132),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,BMX,BM,1,BLK,300.0,STOLEN,25389,"{'type': 'Point', 'coordinates': (-79.20746595, 43.80453424000001)}"
-25396,23926,GO-20149005316,THEFT UNDER,2014-07-24T00:00:00,2014,July,Thursday,24,205,21,2014-07-24T00:00:00,2014,July,Thursday,24,205,23,D42,Toronto,132,Malvern (132),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RC,18,BLK,60.0,STOLEN,25390,"{'type': 'Point', 'coordinates': (-79.23987045000001, 43.79571616)}"
-25397,5158,GO-20191625197,B&E,2019-08-25T00:00:00,2019,August,Sunday,25,237,23,2019-08-26T00:00:00,2019,August,Monday,26,238,8,D43,Toronto,133,Centennial Scarborough (133),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SCHWINN,,MT,5,ONG,300.0,STOLEN,25391,"{'type': 'Point', 'coordinates': (-79.14919676, 43.79237823)}"
-25398,5986,GO-2020594615,B&E,2020-03-24T00:00:00,2020,March,Tuesday,24,84,13,2020-03-24T00:00:00,2020,March,Tuesday,24,84,13,D43,Toronto,133,Centennial Scarborough (133),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,10,,200.0,STOLEN,25392,"{'type': 'Point', 'coordinates': (-79.17291567, 43.7818814)}"
-25399,5987,GO-2020594615,B&E,2020-03-24T00:00:00,2020,March,Tuesday,24,84,13,2020-03-24T00:00:00,2020,March,Tuesday,24,84,13,D43,Toronto,133,Centennial Scarborough (133),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,10,,200.0,STOLEN,25393,"{'type': 'Point', 'coordinates': (-79.17291567, 43.7818814)}"
-25400,6473,GO-20201177441,THEFT UNDER - BICYCLE,2020-06-26T00:00:00,2020,June,Friday,26,178,14,2020-06-26T00:00:00,2020,June,Friday,26,178,15,D43,Toronto,133,Centennial Scarborough (133),"Open Areas (Lakes, Parks, Rivers)",Outside,UNKNOWN MAKE,UNKNOWN,RG,0,BLK,500.0,UNKNOWN,25394,"{'type': 'Point', 'coordinates': (-79.13663481, 43.77959897)}"
-25401,7935,GO-20149003382,THEFT UNDER,2014-05-15T00:00:00,2014,May,Thursday,15,135,8,2014-05-15T00:00:00,2014,May,Thursday,15,135,18,D43,Toronto,133,Centennial Scarborough (133),Go Station,Transit,OT,,MT,21,BLK,0.0,STOLEN,25395,"{'type': 'Point', 'coordinates': (-79.13883634, 43.77406199)}"
-25402,9682,GO-20159003189,THEFT UNDER,2015-05-29T00:00:00,2015,May,Friday,29,149,12,2015-05-29T00:00:00,2015,May,Friday,29,149,16,D43,Toronto,133,Centennial Scarborough (133),Schools During Supervised Activity,Educational,UK,BRIAN FOSTER 1,BM,1,BLK,540.0,STOLEN,25396,"{'type': 'Point', 'coordinates': (-79.14668774, 43.77786772)}"
-25403,11635,GO-20161109439,THEFT UNDER,2016-05-28T00:00:00,2016,May,Saturday,28,149,20,2016-06-25T00:00:00,2016,June,Saturday,25,177,14,D43,Toronto,133,Centennial Scarborough (133),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,1800,MT,0,PLE,,STOLEN,25397,"{'type': 'Point', 'coordinates': (-79.15050025, 43.77645831)}"
-25404,11636,GO-20161109439,THEFT UNDER,2016-05-28T00:00:00,2016,May,Saturday,28,149,20,2016-06-25T00:00:00,2016,June,Saturday,25,177,14,D43,Toronto,133,Centennial Scarborough (133),"Single Home, House (Attach Garage, Cottage, Mobile)",House,AVIGO,LIPGLOSS,BM,0,PNKPLE,,STOLEN,25398,"{'type': 'Point', 'coordinates': (-79.15050025, 43.77645831)}"
-25405,12290,GO-20161590670,THEFT UNDER - BICYCLE,2016-09-07T00:00:00,2016,September,Wednesday,7,251,17,2016-09-07T00:00:00,2016,September,Wednesday,7,251,19,D43,Toronto,133,Centennial Scarborough (133),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GT,KARAKORAM,MT,21,GRY,800.0,STOLEN,25399,"{'type': 'Point', 'coordinates': (-79.17060217, 43.78330374)}"
-25406,12545,GO-20161766948,THEFT UNDER - BICYCLE,2016-10-04T00:00:00,2016,October,Tuesday,4,278,17,2016-10-04T00:00:00,2016,October,Tuesday,4,278,19,D43,Toronto,133,Centennial Scarborough (133),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,GT,,MT,21,BLKRED,660.0,STOLEN,25400,"{'type': 'Point', 'coordinates': (-79.14078046, 43.77864247)}"
-25407,12816,GO-20162085937,PROPERTY - FOUND,2016-10-24T00:00:00,2016,October,Monday,24,298,17,2016-11-24T00:00:00,2016,November,Thursday,24,329,10,D43,Toronto,133,Centennial Scarborough (133),"Open Areas (Lakes, Parks, Rivers)",Outside,CCM,ECCO,MT,12,TRQ,,UNKNOWN,25401,"{'type': 'Point', 'coordinates': (-79.16700358, 43.78075675)}"
-25408,13830,GO-20181814685,B&E,2018-09-17T00:00:00,2018,September,Monday,17,260,1,2018-10-01T00:00:00,2018,October,Monday,1,274,14,D43,Toronto,133,Centennial Scarborough (133),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,WE THE PEOPLE,BM,1,BLK,1000.0,STOLEN,25402,"{'type': 'Point', 'coordinates': (-79.13738326, 43.78139593)}"
-25409,13831,GO-20181814685,B&E,2018-09-17T00:00:00,2018,September,Monday,17,260,1,2018-10-01T00:00:00,2018,October,Monday,1,274,14,D43,Toronto,133,Centennial Scarborough (133),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,WE THE PEOPLE,BM,1,BLKRED,1000.0,STOLEN,25403,"{'type': 'Point', 'coordinates': (-79.13738326, 43.78139593)}"
-25410,16939,GO-20179009393,THEFT UNDER - BICYCLE,2017-07-04T00:00:00,2017,July,Tuesday,4,185,11,2017-07-04T00:00:00,2017,July,Tuesday,4,185,14,D43,Toronto,133,Centennial Scarborough (133),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,GI,REVEL 1,MT,3,BLK,1999.0,STOLEN,25404,"{'type': 'Point', 'coordinates': (-79.13663481, 43.77959897)}"
-25411,17255,GO-20161439546,B&E W'INTENT,2016-08-15T00:00:00,2016,August,Monday,15,228,0,2016-08-15T00:00:00,2016,August,Monday,15,228,8,D43,Toronto,133,Centennial Scarborough (133),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,MT,18,BLK,1200.0,STOLEN,25405,"{'type': 'Point', 'coordinates': (-79.15189903, 43.78383635)}"
-25412,19981,GO-20181852728,B&E,2018-10-06T00:00:00,2018,October,Saturday,6,279,19,2018-10-07T00:00:00,2018,October,Sunday,7,280,9,D43,Toronto,133,Centennial Scarborough (133),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,MADONE,RC,22,BLUWHI,,STOLEN,25406,"{'type': 'Point', 'coordinates': (-79.14342602, 43.77804946)}"
-25413,19982,GO-20181852728,B&E,2018-10-06T00:00:00,2018,October,Saturday,6,279,19,2018-10-07T00:00:00,2018,October,Sunday,7,280,9,D43,Toronto,133,Centennial Scarborough (133),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,,MT,22,,,STOLEN,25407,"{'type': 'Point', 'coordinates': (-79.14342602, 43.77804946)}"
-25414,20211,GO-20171330105,B&E,2017-07-24T00:00:00,2017,July,Monday,24,205,1,2017-07-24T00:00:00,2017,July,Monday,24,205,18,D43,Toronto,133,Centennial Scarborough (133),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,FULL SUSPENSION,MT,24,BLU,4000.0,STOLEN,25408,"{'type': 'Point', 'coordinates': (-79.14126546, 43.78572895)}"
-25415,20286,GO-201863494,PROPERTY - FOUND,2018-01-11T00:00:00,2018,January,Thursday,11,11,7,2018-01-11T00:00:00,2018,January,Thursday,11,11,8,D43,Toronto,133,Centennial Scarborough (133),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,XTI-21,MT,21,,,UNKNOWN,25409,"{'type': 'Point', 'coordinates': (-79.14962169, 43.78490407)}"
-25416,20338,GO-20181354462,THEFT UNDER - BICYCLE,2018-07-24T00:00:00,2018,July,Tuesday,24,205,10,2018-07-24T00:00:00,2018,July,Tuesday,24,205,22,D43,Toronto,133,Centennial Scarborough (133),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KINK,WHIP,BM,0,,,STOLEN,25410,"{'type': 'Point', 'coordinates': (-79.13929138, 43.78366367)}"
-25417,23289,GO-20191345744,THEFT UNDER,2019-07-16T00:00:00,2019,July,Tuesday,16,197,9,2019-07-18T00:00:00,2019,July,Thursday,18,199,9,D43,Toronto,133,Centennial Scarborough (133),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,ATX2,MT,21,ONG,600.0,STOLEN,25411,"{'type': 'Point', 'coordinates': (-79.14368185, 43.78488381)}"
-25418,23303,GO-20199028766,THEFT UNDER - BICYCLE,2019-09-03T00:00:00,2019,September,Tuesday,3,246,8,2019-09-05T00:00:00,2019,September,Thursday,5,248,8,D43,Toronto,133,Centennial Scarborough (133),Go Station,Transit,GI,2,MT,18,BLU,770.0,STOLEN,25412,"{'type': 'Point', 'coordinates': (-79.13663481, 43.77959897)}"
-25419,23451,GO-20171374186,B&E,2017-07-30T00:00:00,2017,July,Sunday,30,211,20,2017-07-31T00:00:00,2017,July,Monday,31,212,11,D43,Toronto,133,Centennial Scarborough (133),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,,OT,1,,700.0,STOLEN,25413,"{'type': 'Point', 'coordinates': (-79.15225673, 43.78714471)}"
-25420,23452,GO-20171374186,B&E,2017-07-30T00:00:00,2017,July,Sunday,30,211,20,2017-07-31T00:00:00,2017,July,Monday,31,212,11,D43,Toronto,133,Centennial Scarborough (133),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,OT,1,,600.0,STOLEN,25414,"{'type': 'Point', 'coordinates': (-79.15225673, 43.78714471)}"
-25421,23614,GO-20151005248,THEFT UNDER,2015-06-15T00:00:00,2015,June,Monday,15,166,10,2015-06-15T00:00:00,2015,June,Monday,15,166,17,D43,Toronto,133,Centennial Scarborough (133),Go Station,Transit,GT,KARAKORAM,MT,10,BLK,719.0,STOLEN,25415,"{'type': 'Point', 'coordinates': (-79.16468773, 43.78710211)}"
-25422,7994,GO-20142183650,THEFT UNDER,2014-05-28T00:00:00,2014,May,Wednesday,28,148,14,2014-05-30T00:00:00,2014,May,Friday,30,150,12,D43,Toronto,134,Highland Creek (134),Schools During Supervised Activity,Educational,SCHWINN,,MT,10,GRY,,STOLEN,25416,"{'type': 'Point', 'coordinates': (-79.18392508, 43.7845063)}"
-25423,8097,GO-20142281036,THEFT UNDER,2014-06-12T00:00:00,2014,June,Thursday,12,163,13,2014-06-13T00:00:00,2014,June,Friday,13,164,9,D43,Toronto,134,Highland Creek (134),Schools During Supervised Activity,Educational,OTHER,,MT,21,REDGRY,200.0,STOLEN,25417,"{'type': 'Point', 'coordinates': (-79.18392508, 43.7845063)}"
-25424,8098,GO-20142281059,THEFT UNDER,2014-06-04T00:00:00,2014,June,Wednesday,4,155,8,2014-06-10T00:00:00,2014,June,Tuesday,10,161,8,D43,Toronto,134,Highland Creek (134),Schools During Supervised Activity,Educational,OTHER,,OT,21,SILBLU,250.0,STOLEN,25418,"{'type': 'Point', 'coordinates': (-79.18392508, 43.7845063)}"
-25425,8492,GO-20142568910,THEFT UNDER,2014-06-25T00:00:00,2014,June,Wednesday,25,176,11,2014-06-26T00:00:00,2014,June,Thursday,26,177,17,D43,Toronto,134,Highland Creek (134),Schools During Un-Supervised Activity,Educational,OTHER,,BM,18,BLU,250.0,STOLEN,25419,"{'type': 'Point', 'coordinates': (-79.18826911, 43.78657689)}"
-25426,8493,GO-20142568910,THEFT UNDER,2014-06-25T00:00:00,2014,June,Wednesday,25,176,11,2014-06-26T00:00:00,2014,June,Thursday,26,177,17,D43,Toronto,134,Highland Creek (134),Schools During Un-Supervised Activity,Educational,GT,DYNO,BM,0,SIL,250.0,STOLEN,25420,"{'type': 'Point', 'coordinates': (-79.18826911, 43.78657689)}"
-25427,8528,GO-20142601315,THEFT UNDER,2014-07-25T00:00:00,2014,July,Friday,25,206,9,2014-07-25T00:00:00,2014,July,Friday,25,206,9,D43,Toronto,134,Highland Creek (134),Universities / Colleges,Educational,OTHER,,MT,1,,,STOLEN,25421,"{'type': 'Point', 'coordinates': (-79.18392508, 43.7845063)}"
-25428,8727,GO-20142786000,THEFT UNDER,2014-07-29T00:00:00,2014,July,Tuesday,29,210,15,2014-08-06T00:00:00,2014,August,Wednesday,6,218,14,D43,Toronto,134,Highland Creek (134),Universities / Colleges,Educational,CCM,,FO,1,WHI,400.0,STOLEN,25422,"{'type': 'Point', 'coordinates': (-79.18392508, 43.7845063)}"
-25429,8789,GO-20142833181,THEFT UNDER,2014-08-29T00:00:00,2014,August,Friday,29,241,11,2014-09-03T00:00:00,2014,September,Wednesday,3,246,11,D43,Toronto,134,Highland Creek (134),Universities / Colleges,Educational,OTHER,,MT,1,,185.0,STOLEN,25423,"{'type': 'Point', 'coordinates': (-79.18392508, 43.7845063)}"
-25430,8920,GO-20142940657,THEFT UNDER,2014-09-19T00:00:00,2014,September,Friday,19,262,12,2014-09-19T00:00:00,2014,September,Friday,19,262,12,D43,Toronto,134,Highland Creek (134),Universities / Colleges,Educational,IRON HORSE,,BM,0,,,STOLEN,25424,"{'type': 'Point', 'coordinates': (-79.18392508, 43.7845063)}"
-25431,9402,GO-20159001920,THEFT UNDER,2015-04-14T00:00:00,2015,April,Tuesday,14,104,11,2015-04-14T00:00:00,2015,April,Tuesday,14,104,15,D43,Toronto,134,Highland Creek (134),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,29ER,MT,18,RED,870.0,STOLEN,25425,"{'type': 'Point', 'coordinates': (-79.19595358, 43.79123065)}"
-25432,10233,GO-20151385100,B&E W'INTENT,2015-08-12T00:00:00,2015,August,Wednesday,12,224,17,2015-08-13T00:00:00,2015,August,Thursday,13,225,10,D43,Toronto,134,Highland Creek (134),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,MT,99,RED,,RECOVERED,25426,"{'type': 'Point', 'coordinates': (-79.17940118, 43.7945274)}"
-25433,10234,GO-20151385100,B&E W'INTENT,2015-08-12T00:00:00,2015,August,Wednesday,12,224,17,2015-08-13T00:00:00,2015,August,Thursday,13,225,10,D43,Toronto,134,Highland Creek (134),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,,MT,21,BLU,150.0,STOLEN,25427,"{'type': 'Point', 'coordinates': (-79.17940118, 43.7945274)}"
-25434,10235,GO-20151385100,B&E W'INTENT,2015-08-12T00:00:00,2015,August,Wednesday,12,224,17,2015-08-13T00:00:00,2015,August,Thursday,13,225,10,D43,Toronto,134,Highland Creek (134),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,,MT,21,ONGRED,150.0,STOLEN,25428,"{'type': 'Point', 'coordinates': (-79.17940118, 43.7945274)}"
-25435,10241,GO-20159005646,THEFT UNDER,2015-08-11T00:00:00,2015,August,Tuesday,11,223,14,2015-08-11T00:00:00,2015,August,Tuesday,11,223,14,D43,Toronto,134,Highland Creek (134),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,RETROSPEC BETA,RG,15,LGR,300.0,STOLEN,25429,"{'type': 'Point', 'coordinates': (-79.17312554000002, 43.78930813)}"
-25436,10428,GO-20151554312,B&E,2015-09-08T00:00:00,2015,September,Tuesday,8,251,17,2015-09-10T00:00:00,2015,September,Thursday,10,253,10,D43,Toronto,134,Highland Creek (134),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,10 SPEED,RC,10,SIL,150.0,STOLEN,25430,"{'type': 'Point', 'coordinates': (-79.17724122, 43.7860585)}"
-25437,10740,GO-20151929922,THEFT UNDER,2015-11-07T00:00:00,2015,November,Saturday,7,311,12,2015-11-10T00:00:00,2015,November,Tuesday,10,314,7,D43,Toronto,134,Highland Creek (134),Universities / Colleges,Educational,GIANT,15,RC,0,BLK,1500.0,STOLEN,25431,"{'type': 'Point', 'coordinates': (-79.18392508, 43.7845063)}"
-25438,10837,GO-20152096135,THEFT UNDER,2015-12-07T00:00:00,2015,December,Monday,7,341,13,2015-12-07T00:00:00,2015,December,Monday,7,341,13,D43,Toronto,134,Highland Creek (134),Universities / Colleges,Educational,OTHER,,MT,18,BLU,200.0,STOLEN,25432,"{'type': 'Point', 'coordinates': (-79.18392508, 43.7845063)}"
-25439,11324,GO-2016853593,THEFT UNDER - BICYCLE,2016-05-13T00:00:00,2016,May,Friday,13,134,12,2016-05-13T00:00:00,2016,May,Friday,13,134,18,D43,Toronto,134,Highland Creek (134),Universities / Colleges,Educational,CCM,EQUATOR,MT,1,PLE,200.0,STOLEN,25433,"{'type': 'Point', 'coordinates': (-79.18392508, 43.7845063)}"
-25440,11325,GO-2016853446,THEFT UNDER - BICYCLE,2016-05-13T00:00:00,2016,May,Friday,13,134,13,2016-05-13T00:00:00,2016,May,Friday,13,134,15,D43,Toronto,134,Highland Creek (134),Universities / Colleges,Educational,UNKNOWN,,MT,1,RED,,STOLEN,25434,"{'type': 'Point', 'coordinates': (-79.18392508, 43.7845063)}"
-25441,12155,GO-20161485375,THEFT UNDER - BICYCLE,2016-08-19T00:00:00,2016,August,Friday,19,232,13,2016-08-22T00:00:00,2016,August,Monday,22,235,10,D43,Toronto,134,Highland Creek (134),Schools During Supervised Activity,Educational,SUPERCYCLE,MEDALIST,RC,18,BLU,200.0,STOLEN,25435,"{'type': 'Point', 'coordinates': (-79.18826911, 43.78657689)}"
-25442,12278,GO-20161587166,THEFT UNDER - BICYCLE,2016-09-06T00:00:00,2016,September,Tuesday,6,250,13,2016-09-07T00:00:00,2016,September,Wednesday,7,251,9,D43,Toronto,134,Highland Creek (134),Schools During Supervised Activity,Educational,SCHWINN,,RG,18,WHIRED,100.0,STOLEN,25436,"{'type': 'Point', 'coordinates': (-79.18826911, 43.78657689)}"
-25443,12302,GO-20161600412,THEFT UNDER - BICYCLE,2016-09-08T00:00:00,2016,September,Thursday,8,252,10,2016-09-09T00:00:00,2016,September,Friday,9,253,8,D43,Toronto,134,Highland Creek (134),Schools During Supervised Activity,Educational,SUPERCYCLE,,MT,18,ONG,129.0,STOLEN,25437,"{'type': 'Point', 'coordinates': (-79.18392508, 43.7845063)}"
-25444,12336,GO-20161633044,THEFT UNDER - BICYCLE,2016-09-13T00:00:00,2016,September,Tuesday,13,257,12,2016-09-13T00:00:00,2016,September,Tuesday,13,257,15,D43,Toronto,134,Highland Creek (134),Schools During Supervised Activity,Educational,SUPERCYCLE,,MT,21,DGR,150.0,UNKNOWN,25438,"{'type': 'Point', 'coordinates': (-79.18826911, 43.78657689)}"
-25445,12399,GO-20161672270,THEFT UNDER - BICYCLE,2016-09-06T00:00:00,2016,September,Tuesday,6,250,8,2016-09-15T00:00:00,2016,September,Thursday,15,259,15,D43,Toronto,134,Highland Creek (134),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,JAMIS,HELIX,MT,21,WHIPLE,,STOLEN,25439,"{'type': 'Point', 'coordinates': (-79.18392508, 43.7845063)}"
-25446,12469,GO-20161719140,THEFT UNDER - BICYCLE,2016-09-27T00:00:00,2016,September,Tuesday,27,271,11,2016-09-27T00:00:00,2016,September,Tuesday,27,271,14,D43,Toronto,134,Highland Creek (134),Schools During Supervised Activity,Educational,CCM,,MT,21,YEL,250.0,STOLEN,25440,"{'type': 'Point', 'coordinates': (-79.18392508, 43.7845063)}"
-25447,12764,GO-20162029211,THEFT UNDER - BICYCLE,2016-11-13T00:00:00,2016,November,Sunday,13,318,19,2016-11-15T00:00:00,2016,November,Tuesday,15,320,10,D43,Toronto,134,Highland Creek (134),Universities / Colleges,Educational,GIANT,,MT,1,,,STOLEN,25441,"{'type': 'Point', 'coordinates': (-79.18392508, 43.7845063)}"
-25448,12849,GO-20162155394,THEFT UNDER - BICYCLE,2016-12-02T00:00:00,2016,December,Friday,2,337,5,2016-12-02T00:00:00,2016,December,Friday,2,337,16,D43,Toronto,134,Highland Creek (134),Schools During Supervised Activity,Educational,SUPERCYCLE,,BM,12,BLUWHI,160.0,STOLEN,25442,"{'type': 'Point', 'coordinates': (-79.18826911, 43.78657689)}"
-25449,13474,GO-2019613453,THEFT UNDER,2019-04-02T00:00:00,2019,April,Tuesday,2,92,4,2019-04-02T00:00:00,2019,April,Tuesday,2,92,11,D43,Toronto,134,Highland Creek (134),Universities / Colleges,Educational,ZZZ,,MT,18,PLEPNK,350.0,STOLEN,25443,"{'type': 'Point', 'coordinates': (-79.18392508, 43.7845063)}"
-25450,13681,GO-20171153556,B&E,2017-06-27T00:00:00,2017,June,Tuesday,27,178,5,2017-06-28T00:00:00,2017,June,Wednesday,28,179,7,D43,Toronto,134,Highland Creek (134),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,RG,10,WHIPLE,,STOLEN,25444,"{'type': 'Point', 'coordinates': (-79.17219603000001, 43.79606243)}"
-25451,13931,GO-20151949136,THEFT UNDER,2015-11-13T00:00:00,2015,November,Friday,13,317,10,2015-11-13T00:00:00,2015,November,Friday,13,317,10,D43,Toronto,134,Highland Creek (134),Universities / Colleges,Educational,OTHER,,MT,18,DBL,600.0,STOLEN,25445,"{'type': 'Point', 'coordinates': (-79.18826911, 43.78657689)}"
-25452,14021,GO-20161730570,THEFT UNDER - BICYCLE,2016-09-27T00:00:00,2016,September,Tuesday,27,271,9,2016-09-29T00:00:00,2016,September,Thursday,29,273,9,D43,Toronto,134,Highland Creek (134),Universities / Colleges,Educational,CCM,,MT,21,YEL,300.0,STOLEN,25446,"{'type': 'Point', 'coordinates': (-79.18392508, 43.7845063)}"
-25453,14043,GO-2017138048,THEFT UNDER - BICYCLE,2017-01-10T00:00:00,2017,January,Tuesday,10,10,12,2017-01-20T00:00:00,2017,January,Friday,20,20,14,D43,Toronto,134,Highland Creek (134),Schools During Supervised Activity,Educational,RALEIGH,TALUS,MT,10,,400.0,STOLEN,25447,"{'type': 'Point', 'coordinates': (-79.18392508, 43.7845063)}"
-25454,14372,GO-20142343521,B&E,2014-06-22T00:00:00,2014,June,Sunday,22,173,1,2014-06-22T00:00:00,2014,June,Sunday,22,173,11,D43,Toronto,134,Highland Creek (134),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,SWIFT,MT,21,,600.0,STOLEN,25448,"{'type': 'Point', 'coordinates': (-79.18495224, 43.78742433)}"
-25455,17183,GO-20159009007,THEFT UNDER,2015-10-23T00:00:00,2015,October,Friday,23,296,15,2015-10-25T00:00:00,2015,October,Sunday,25,298,22,D43,Toronto,134,Highland Creek (134),Schools During Un-Supervised Activity,Educational,CC,,MT,21,BLK,150.0,STOLEN,25449,"{'type': 'Point', 'coordinates': (-79.17817287, 43.793884860000006)}"
-25456,17271,GO-20161672052,THEFT UNDER - BICYCLE,2016-09-13T00:00:00,2016,September,Tuesday,13,257,12,2016-09-19T00:00:00,2016,September,Monday,19,263,16,D43,Toronto,134,Highland Creek (134),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,BTWIN ROCK RIDE,MT,27,BLK,500.0,STOLEN,25450,"{'type': 'Point', 'coordinates': (-79.18392508, 43.7845063)}"
-25457,17274,GO-20161737081,THEFT UNDER - BICYCLE,2016-09-29T00:00:00,2016,September,Thursday,29,273,17,2016-09-30T00:00:00,2016,September,Friday,30,274,8,D43,Toronto,134,Highland Creek (134),Universities / Colleges,Educational,OTHER,,OT,0,,,STOLEN,25451,"{'type': 'Point', 'coordinates': (-79.18392508, 43.7845063)}"
-25458,17476,GO-20149006603,THEFT UNDER,2014-09-05T00:00:00,2014,September,Friday,5,248,12,2014-09-05T00:00:00,2014,September,Friday,5,248,18,D43,Toronto,134,Highland Creek (134),Schools During Supervised Activity,Educational,CC,ALPINE,MT,24,WHI,280.0,STOLEN,25452,"{'type': 'Point', 'coordinates': (-79.19330085, 43.78534276)}"
-25459,20021,GO-20199010984,THEFT UNDER,2019-04-02T00:00:00,2019,April,Tuesday,2,92,16,2019-04-07T00:00:00,2019,April,Sunday,7,97,16,D43,Toronto,134,Highland Creek (134),Universities / Colleges,Educational,KH,,RG,18,BLU,1000.0,STOLEN,25453,"{'type': 'Point', 'coordinates': (-79.18392508, 43.7845063)}"
-25460,20040,GO-20191139372,THEFT UNDER,2019-06-19T00:00:00,2019,June,Wednesday,19,170,20,2019-06-19T00:00:00,2019,June,Wednesday,19,170,22,D43,Toronto,134,Highland Creek (134),Schools During Un-Supervised Activity,Educational,SUBROSA,BMX,BM,1,BRZ,600.0,STOLEN,25454,"{'type': 'Point', 'coordinates': (-79.17907177000001, 43.793824380000004)}"
-25461,20469,GO-201681735,THEFT UNDER,2016-01-14T00:00:00,2016,January,Thursday,14,14,15,2016-01-14T00:00:00,2016,January,Thursday,14,14,15,D43,Toronto,134,Highland Creek (134),Universities / Colleges,Educational,OTHER,,MT,18,BLK,200.0,STOLEN,25455,"{'type': 'Point', 'coordinates': (-79.18392508, 43.7845063)}"
-25462,20552,GO-20162004633,THEFT UNDER - BICYCLE,2016-11-10T00:00:00,2016,November,Thursday,10,315,10,2016-11-11T00:00:00,2016,November,Friday,11,316,8,D43,Toronto,134,Highland Creek (134),Universities / Colleges,Educational,SCHWINN,DSB,MT,1,,100.0,STOLEN,25456,"{'type': 'Point', 'coordinates': (-79.18392508, 43.7845063)}"
-25463,23655,GO-20151640886,THEFT UNDER,2015-09-22T00:00:00,2015,September,Tuesday,22,265,15,2015-09-22T00:00:00,2015,September,Tuesday,22,265,18,D43,Toronto,134,Highland Creek (134),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DOWNHILL GENERA,ORYX,MT,8,BLKRED,550.0,STOLEN,25457,"{'type': 'Point', 'coordinates': (-79.17724122, 43.7860585)}"
-25464,23885,GO-20142219500,THEFT UNDER,2014-04-17T00:00:00,2014,April,Thursday,17,107,12,2014-06-04T00:00:00,2014,June,Wednesday,4,155,13,D43,Toronto,134,Highland Creek (134),Schools During Supervised Activity,Educational,AQUILA,,OT,21,GRYBLK,198.0,STOLEN,25458,"{'type': 'Point', 'coordinates': (-79.18392508, 43.7845063)}"
-25465,23886,GO-20142219500,THEFT UNDER,2014-04-17T00:00:00,2014,April,Thursday,17,107,12,2014-06-04T00:00:00,2014,June,Wednesday,4,155,13,D43,Toronto,134,Highland Creek (134),Schools During Supervised Activity,Educational,AQUILA,,OT,21,,198.0,UNKNOWN,25459,"{'type': 'Point', 'coordinates': (-79.18392508, 43.7845063)}"
-25466,23946,GO-20149006433,THEFT UNDER,2014-09-01T00:00:00,2014,September,Monday,1,244,0,2014-09-01T00:00:00,2014,September,Monday,1,244,12,D43,Toronto,134,Highland Creek (134),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MA,SAN ANSELMO,OT,27,WHI,500.0,STOLEN,25460,"{'type': 'Point', 'coordinates': (-79.17484165, 43.78469811)}"
-25467,2314,GO-2018855244,THEFT UNDER - BICYCLE,2018-05-12T00:00:00,2018,May,Saturday,12,132,7,2018-05-12T00:00:00,2018,May,Saturday,12,132,7,D43,Toronto,135,Morningside (135),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TREK4100,,MT,21,SILBLK,1000.0,STOLEN,25461,"{'type': 'Point', 'coordinates': (-79.2049343, 43.78259962)}"
-25468,8275,GO-20142424556,THEFT UNDER,2014-07-03T00:00:00,2014,July,Thursday,3,184,3,2014-07-03T00:00:00,2014,July,Thursday,3,184,20,D43,Toronto,135,Morningside (135),"Open Areas (Lakes, Parks, Rivers)",Outside,SCORPION,E-BIKE,EL,0,BLK,1670.0,STOLEN,25463,"{'type': 'Point', 'coordinates': (-79.20481915, 43.76422965)}"
-25469,8931,GO-20142937720,THEFT UNDER,2014-09-18T00:00:00,2014,September,Thursday,18,261,7,2014-09-18T00:00:00,2014,September,Thursday,18,261,22,D43,Toronto,135,Morningside (135),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,MARIN OR MARINO,PIONEER TRAIL,OT,24,GRNGRY,800.0,STOLEN,25464,"{'type': 'Point', 'coordinates': (-79.20349887, 43.77937759)}"
-25470,11210,GO-20151806663,PROPERTY - FOUND,2015-10-20T00:00:00,2015,October,Tuesday,20,293,17,2015-10-20T00:00:00,2015,October,Tuesday,20,293,17,D43,Toronto,135,Morningside (135),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,HF,MACABRE,BM,99,GRY,,UNKNOWN,25465,"{'type': 'Point', 'coordinates': (-79.21850039, 43.77440128)}"
-25471,11913,GO-20161314979,PROPERTY - FOUND,2016-07-26T00:00:00,2016,July,Tuesday,26,208,19,2016-07-26T00:00:00,2016,July,Tuesday,26,208,19,D43,Toronto,135,Morningside (135),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPORTEK,RAVEN,MT,21,BLKWHI,,UNKNOWN,25466,"{'type': 'Point', 'coordinates': (-79.19431473, 43.78927557)}"
-25472,13943,GO-2016119360,THEFT UNDER,2016-01-20T00:00:00,2016,January,Wednesday,20,20,15,2016-01-21T00:00:00,2016,January,Thursday,21,21,7,D43,Toronto,135,Morningside (135),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,EL,1,YELBLK,450.0,STOLEN,25467,"{'type': 'Point', 'coordinates': (-79.20481915, 43.76422965)}"
-25473,14002,GO-20169009562,THEFT UNDER - BICYCLE,2016-08-27T00:00:00,2016,August,Saturday,27,240,10,2016-08-27T00:00:00,2016,August,Saturday,27,240,10,D43,Toronto,135,Morningside (135),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,21,BLU,350.0,STOLEN,25468,"{'type': 'Point', 'coordinates': (-79.19431473, 43.78927557)}"
-25474,20913,GO-20149005993,THEFT UNDER,2014-08-18T00:00:00,2014,August,Monday,18,230,18,2014-08-18T00:00:00,2014,August,Monday,18,230,18,D42,Toronto,130,Milliken (130),Ttc Bus Stop / Shelter / Loop,Outside,CC,,MT,18,BLU,,STOLEN,25469,"{'type': 'Point', 'coordinates': (-79.26791906, 43.83270314)}"
-25475,23420,GO-20171059025,THEFT UNDER - BICYCLE,2017-06-13T00:00:00,2017,June,Tuesday,13,164,21,2017-06-14T00:00:00,2017,June,Wednesday,14,165,13,D42,Toronto,130,Milliken (130),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,OT,18,BLU,270.0,STOLEN,25470,"{'type': 'Point', 'coordinates': (-79.29138924, 43.80641436)}"
-25476,2749,GO-20189021133,THEFT UNDER - BICYCLE,2018-07-04T00:00:00,2018,July,Wednesday,4,185,11,2018-07-04T00:00:00,2018,July,Wednesday,4,185,12,D43,Toronto,131,Rouge (131),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SC,SCHWINN,RC,7,RED,700.0,STOLEN,25472,"{'type': 'Point', 'coordinates': (-79.14247068, 43.79850709)}"
-25477,2882,GO-20189023007,THEFT UNDER - BICYCLE,2018-07-18T00:00:00,2018,July,Wednesday,18,199,18,2018-07-19T00:00:00,2018,July,Thursday,19,200,8,D42,Toronto,131,Rouge (131),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,8,BLK,400.0,STOLEN,25473,"{'type': 'Point', 'coordinates': (-79.23462987, 43.83111133)}"
-25478,2883,GO-20189023007,THEFT UNDER - BICYCLE,2018-07-18T00:00:00,2018,July,Wednesday,18,199,18,2018-07-19T00:00:00,2018,July,Thursday,19,200,8,D42,Toronto,131,Rouge (131),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,,RG,8,RED,125.0,STOLEN,25474,"{'type': 'Point', 'coordinates': (-79.23462987, 43.83111133)}"
-25479,3270,GO-20189027208,THEFT UNDER - BICYCLE,2018-08-20T00:00:00,2018,August,Monday,20,232,17,2018-08-20T00:00:00,2018,August,Monday,20,232,20,D43,Toronto,131,Rouge (131),Go Station,Transit,CC,,RG,5,BGE,250.0,STOLEN,25475,"{'type': 'Point', 'coordinates': (-79.13007497, 43.78103162)}"
-25480,3529,GO-20181741810,B&E W'INTENT,2018-09-19T00:00:00,2018,September,Wednesday,19,262,0,2018-09-20T00:00:00,2018,September,Thursday,20,263,8,D43,Toronto,131,Rouge (131),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,OT,0,GRYSIL,500.0,STOLEN,25476,"{'type': 'Point', 'coordinates': (-79.13841687, 43.78652005)}"
-25481,3530,GO-20181741810,B&E W'INTENT,2018-09-19T00:00:00,2018,September,Wednesday,19,262,0,2018-09-20T00:00:00,2018,September,Thursday,20,263,8,D43,Toronto,131,Rouge (131),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,BOULDER,OT,0,BLUSIL,700.0,STOLEN,25477,"{'type': 'Point', 'coordinates': (-79.13841687, 43.78652005)}"
-25482,3531,GO-20181741810,B&E W'INTENT,2018-09-19T00:00:00,2018,September,Wednesday,19,262,0,2018-09-20T00:00:00,2018,September,Thursday,20,263,8,D43,Toronto,131,Rouge (131),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,NONE,OT,0,WHIONG,500.0,STOLEN,25478,"{'type': 'Point', 'coordinates': (-79.13841687, 43.78652005)}"
-25483,3532,GO-20181741810,B&E W'INTENT,2018-09-19T00:00:00,2018,September,Wednesday,19,262,0,2018-09-20T00:00:00,2018,September,Thursday,20,263,8,D43,Toronto,131,Rouge (131),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,DIVERGE,OT,0,BLK,4000.0,STOLEN,25479,"{'type': 'Point', 'coordinates': (-79.13841687, 43.78652005)}"
-25484,3533,GO-20181741810,B&E W'INTENT,2018-09-19T00:00:00,2018,September,Wednesday,19,262,0,2018-09-20T00:00:00,2018,September,Thursday,20,263,8,D43,Toronto,131,Rouge (131),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,PITCH,OT,0,,1000.0,STOLEN,25480,"{'type': 'Point', 'coordinates': (-79.13841687, 43.78652005)}"
-25485,3655,GO-20189033518,THEFT UNDER - BICYCLE,2018-10-05T00:00:00,2018,October,Friday,5,278,8,2018-10-10T00:00:00,2018,October,Wednesday,10,283,20,D43,Toronto,131,Rouge (131),Go Station,Transit,UK,,MT,21,GRY,400.0,STOLEN,25481,"{'type': 'Point', 'coordinates': (-79.13007497, 43.78103162)}"
-25486,3657,GO-20189033532,THEFT UNDER - BICYCLE,2018-10-10T00:00:00,2018,October,Wednesday,10,283,7,2018-10-10T00:00:00,2018,October,Wednesday,10,283,19,D43,Toronto,131,Rouge (131),Go Station,Transit,OT,ARIEL,MT,24,BLK,700.0,STOLEN,25482,"{'type': 'Point', 'coordinates': (-79.13007497, 43.78103162)}"
-25487,4667,GO-20199020934,THEFT UNDER,2019-07-03T00:00:00,2019,July,Wednesday,3,184,6,2019-07-04T00:00:00,2019,July,Thursday,4,185,9,D43,Toronto,131,Rouge (131),Go Station,Transit,,,MT,21,BLU,300.0,STOLEN,25483,"{'type': 'Point', 'coordinates': (-79.13007497, 43.78103162)}"
-25488,5204,GO-20199028409,THEFT UNDER - BICYCLE,2019-08-31T00:00:00,2019,August,Saturday,31,243,19,2019-09-01T00:00:00,2019,September,Sunday,1,244,1,D43,Toronto,131,Rouge (131),Go Station,Transit,OT,,RG,4,BLU,400.0,STOLEN,25484,"{'type': 'Point', 'coordinates': (-79.13007497, 43.78103162)}"
-25489,5851,GO-20209003086,THEFT UNDER,2020-01-24T00:00:00,2020,January,Friday,24,24,7,2020-01-26T00:00:00,2020,January,Sunday,26,26,14,D43,Toronto,131,Rouge (131),Go Station,Transit,DB,,MT,27,BLK,500.0,STOLEN,25485,"{'type': 'Point', 'coordinates': (-79.13007497, 43.78103162)}"
-25490,6054,GO-2020708844,B&E,2020-04-11T00:00:00,2020,April,Saturday,11,102,14,2020-04-12T00:00:00,2020,April,Sunday,12,103,18,D43,Toronto,131,Rouge (131),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,OT,10,GRY,500.0,STOLEN,25486,"{'type': 'Point', 'coordinates': (-79.12763114000002, 43.78343945)}"
-25491,6728,GO-20209018469,THEFT UNDER,2020-07-24T00:00:00,2020,July,Friday,24,206,22,2020-07-25T00:00:00,2020,July,Saturday,25,207,12,D43,Toronto,131,Rouge (131),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,TYPE O,BM,1,BLK,600.0,STOLEN,25487,"{'type': 'Point', 'coordinates': (-79.13885147, 43.79809155)}"
-25492,6729,GO-20209018469,THEFT UNDER,2020-07-24T00:00:00,2020,July,Friday,24,206,22,2020-07-25T00:00:00,2020,July,Saturday,25,207,12,D43,Toronto,131,Rouge (131),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,RG,1,WHI,200.0,STOLEN,25488,"{'type': 'Point', 'coordinates': (-79.13885147, 43.79809155)}"
-25493,7131,GO-20209021818,THEFT UNDER,2020-08-30T00:00:00,2020,August,Sunday,30,243,10,2020-08-30T00:00:00,2020,August,Sunday,30,243,16,D43,Toronto,131,Rouge (131),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CC,,MT,21,,300.0,STOLEN,25489,"{'type': 'Point', 'coordinates': (-79.13302177, 43.78634084000001)}"
-25494,7830,GO-20149002761,THEFT UNDER,2014-04-10T00:00:00,2014,April,Thursday,10,100,8,2014-04-11T00:00:00,2014,April,Friday,11,101,7,D43,Toronto,131,Rouge (131),Go Station,Transit,GI,ESCAPE 1,RG,28,GRY,750.0,STOLEN,25490,"{'type': 'Point', 'coordinates': (-79.13007497, 43.78103162)}"
-25495,8334,GO-20149004670,THEFT UNDER,2014-06-29T00:00:00,2014,June,Sunday,29,180,16,2014-07-05T00:00:00,2014,July,Saturday,5,186,16,D42,Toronto,131,Rouge (131),"Apartment (Rooming House, Condo)",Apartment,RA,AMBUSH,MT,21,GRY,,STOLEN,25491,"{'type': 'Point', 'coordinates': (-79.17069906, 43.80485047)}"
-25496,8335,GO-20149004670,THEFT UNDER,2014-06-29T00:00:00,2014,June,Sunday,29,180,16,2014-07-05T00:00:00,2014,July,Saturday,5,186,16,D42,Toronto,131,Rouge (131),"Apartment (Rooming House, Condo)",Apartment,HF,CRANBROOK,RG,1,GLD,,STOLEN,25492,"{'type': 'Point', 'coordinates': (-79.17069906, 43.80485047)}"
-25497,8677,GO-20149006004,THEFT UNDER,2014-08-15T00:00:00,2014,August,Friday,15,227,18,2014-08-15T00:00:00,2014,August,Friday,15,227,23,D42,Toronto,131,Rouge (131),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,,RG,12,BLU,300.0,STOLEN,25493,"{'type': 'Point', 'coordinates': (-79.23261267, 43.82704745)}"
-25498,8821,GO-20149006606,THEFT UNDER,2014-09-05T00:00:00,2014,September,Friday,5,248,7,2014-09-05T00:00:00,2014,September,Friday,5,248,22,D43,Toronto,131,Rouge (131),Go Station,Transit,CC,,MT,15,BLK,250.0,STOLEN,25494,"{'type': 'Point', 'coordinates': (-79.13007497, 43.78103162)}"
-25499,8954,GO-20142968548,THEFT UNDER,2014-09-19T00:00:00,2014,September,Friday,19,262,14,2014-09-23T00:00:00,2014,September,Tuesday,23,266,17,D43,Toronto,131,Rouge (131),Go Station,Transit,EMMO,,EL,1,WHI,1000.0,STOLEN,25495,"{'type': 'Point', 'coordinates': (-79.13007497, 43.78103162)}"
-25500,9897,GO-20151082245,THEFT UNDER,2015-06-26T00:00:00,2015,June,Friday,26,177,18,2015-06-27T00:00:00,2015,June,Saturday,27,178,12,D42,Toronto,131,Rouge (131),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,REVEL 1 [29ER],MT,24,SIL,600.0,STOLEN,25496,"{'type': 'Point', 'coordinates': (-79.17520959, 43.80669136)}"
-25501,11815,GO-20161256200,THEFT UNDER - BICYCLE,2016-07-17T00:00:00,2016,July,Sunday,17,199,15,2016-07-17T00:00:00,2016,July,Sunday,17,199,20,D43,Toronto,131,Rouge (131),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,,OT,0,SIL,300.0,STOLEN,25497,"{'type': 'Point', 'coordinates': (-79.13955909, 43.794543710000006)}"
-25502,11816,GO-20161256200,THEFT UNDER - BICYCLE,2016-07-17T00:00:00,2016,July,Sunday,17,199,15,2016-07-17T00:00:00,2016,July,Sunday,17,199,20,D43,Toronto,131,Rouge (131),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,,MT,0,BLKGRN,170.0,STOLEN,25498,"{'type': 'Point', 'coordinates': (-79.13955909, 43.794543710000006)}"
-25503,12049,GO-20169008518,THEFT UNDER,2016-07-07T00:00:00,2016,July,Thursday,7,189,6,2016-08-10T00:00:00,2016,August,Wednesday,10,223,21,D43,Toronto,131,Rouge (131),Go Station,Transit,GI,CYPRESS DX,RG,24,BLK,499.0,STOLEN,25499,"{'type': 'Point', 'coordinates': (-79.13007497, 43.78103162)}"
-25504,12136,GO-20161469315,THEFT UNDER - BICYCLE,2016-08-19T00:00:00,2016,August,Friday,19,232,16,2016-08-19T00:00:00,2016,August,Friday,19,232,17,D43,Toronto,131,Rouge (131),"Single Home, House (Attach Garage, Cottage, Mobile)",House,JAMIS,TRAIL X,MT,21,GRNWHI,,STOLEN,25500,"{'type': 'Point', 'coordinates': (-79.13324472, 43.78085326)}"
-25505,12250,GO-20161550860,THEFT UNDER - BICYCLE,2016-08-01T00:00:00,2016,August,Monday,1,214,16,2016-09-01T00:00:00,2016,September,Thursday,1,245,13,D43,Toronto,131,Rouge (131),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,XTC1,MT,0,RED,1000.0,STOLEN,25501,"{'type': 'Point', 'coordinates': (-79.12437321, 43.79468383)}"
-25506,12318,GO-20161616581,THEFT UNDER - BICYCLE,2016-09-11T00:00:00,2016,September,Sunday,11,255,17,2016-09-11T00:00:00,2016,September,Sunday,11,255,18,D42,Toronto,131,Rouge (131),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,APEX 17,MT,24,BLUWHI,300.0,STOLEN,25502,"{'type': 'Point', 'coordinates': (-79.15380976, 43.79764408)}"
-25507,13773,GO-20189019540,THEFT UNDER,2018-06-19T00:00:00,2018,June,Tuesday,19,170,11,2018-06-20T00:00:00,2018,June,Wednesday,20,171,20,D43,Toronto,131,Rouge (131),Schools During Un-Supervised Activity,Educational,GI,TALON 3,MT,24,BLK,700.0,STOLEN,25503,"{'type': 'Point', 'coordinates': (-79.13841687, 43.78652005)}"
-25508,13833,GO-20181859452,B&E W'INTENT,2018-10-02T00:00:00,2018,October,Tuesday,2,275,16,2018-10-08T00:00:00,2018,October,Monday,8,281,15,D43,Toronto,131,Rouge (131),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,MT,18,GRN,1000.0,STOLEN,25504,"{'type': 'Point', 'coordinates': (-79.12805525, 43.79381376)}"
-25509,13834,GO-20181859452,B&E W'INTENT,2018-10-02T00:00:00,2018,October,Tuesday,2,275,16,2018-10-08T00:00:00,2018,October,Monday,8,281,15,D43,Toronto,131,Rouge (131),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,MT,18,BLK,1000.0,STOLEN,25505,"{'type': 'Point', 'coordinates': (-79.12805525, 43.79381376)}"
-25510,13884,GO-20151185103,THEFT UNDER,2015-07-12T00:00:00,2015,July,Sunday,12,193,13,2015-07-13T00:00:00,2015,July,Monday,13,194,10,D42,Toronto,131,Rouge (131),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NEXT,,MT,6,WHI,150.0,STOLEN,25506,"{'type': 'Point', 'coordinates': (-79.23709431, 43.81421617)}"
-25511,13997,GO-20161468227,THEFT UNDER - BICYCLE,2016-08-19T00:00:00,2016,August,Friday,19,232,14,2016-08-19T00:00:00,2016,August,Friday,19,232,14,D43,Toronto,131,Rouge (131),Go Station,Transit,NEXT,LASER SE,MT,18,BLKBLU,,UNKNOWN,25507,"{'type': 'Point', 'coordinates': (-79.13288116, 43.78041506)}"
-25512,13998,GO-20161468227,THEFT UNDER - BICYCLE,2016-08-19T00:00:00,2016,August,Friday,19,232,14,2016-08-19T00:00:00,2016,August,Friday,19,232,14,D43,Toronto,131,Rouge (131),Go Station,Transit,DIAMONDBACK,SHIMANO,MT,21,BLU,,RECOVERED,25508,"{'type': 'Point', 'coordinates': (-79.13288116, 43.78041506)}"
-25513,14373,GO-20142350319,PROPERTY - FOUND,2014-06-23T00:00:00,2014,June,Monday,23,174,10,2014-06-23T00:00:00,2014,June,Monday,23,174,12,D43,Toronto,131,Rouge (131),"Open Areas (Lakes, Parks, Rivers)",Outside,PARKPRU,,MT,0,GRYSIL,,UNKNOWN,25509,"{'type': 'Point', 'coordinates': (-79.12486059, 43.79238113000001)}"
-25514,14439,GO-20159001793,THEFT UNDER,2015-04-01T00:00:00,2015,April,Wednesday,1,91,8,2015-04-09T00:00:00,2015,April,Thursday,9,99,8,D43,Toronto,131,Rouge (131),Go Station,Transit,GI,CYPRESS,OT,18,SIL,500.0,STOLEN,25510,"{'type': 'Point', 'coordinates': (-79.13007497, 43.78103162)}"
-25515,16788,GO-20199026585,THEFT UNDER,2019-08-16T00:00:00,2019,August,Friday,16,228,16,2019-08-17T00:00:00,2019,August,Saturday,17,229,13,D43,Toronto,131,Rouge (131),Go Station,Transit,GI,CYPRESS DX,TO,10,BLK,1000.0,STOLEN,25511,"{'type': 'Point', 'coordinates': (-79.13007497, 43.78103162)}"
-25516,16811,GO-2020708844,B&E,2020-04-11T00:00:00,2020,April,Saturday,11,102,14,2020-04-12T00:00:00,2020,April,Sunday,12,103,18,D43,Toronto,131,Rouge (131),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,CYPRESS,RG,10,GRY,440.0,STOLEN,25512,"{'type': 'Point', 'coordinates': (-79.12763114000002, 43.78343945)}"
-25517,16818,GO-20209015456,THEFT UNDER,2020-06-11T00:00:00,2020,June,Thursday,11,163,23,2020-06-16T00:00:00,2020,June,Tuesday,16,168,11,D43,Toronto,131,Rouge (131),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,GI,,MT,18,BLK,500.0,STOLEN,25513,"{'type': 'Point', 'coordinates': (-79.12486059, 43.79238113000001)}"
-25518,16965,GO-20179012421,THEFT UNDER,2017-08-14T00:00:00,2017,August,Monday,14,226,16,2017-08-14T00:00:00,2017,August,Monday,14,226,22,D43,Toronto,131,Rouge (131),"Open Areas (Lakes, Parks, Rivers)",Outside,KH,T-REX,MT,21,SIL,500.0,STOLEN,25514,"{'type': 'Point', 'coordinates': (-79.12826645000001, 43.782764320000005)}"
-25519,17049,GO-20189019239,THEFT UNDER,2018-06-16T00:00:00,2018,June,Saturday,16,167,8,2018-06-19T00:00:00,2018,June,Tuesday,19,170,8,D42,Toronto,131,Rouge (131),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,BM,10,PNK,350.0,STOLEN,25516,"{'type': 'Point', 'coordinates': (-79.14614134, 43.79996424)}"
-25520,17050,GO-20189019239,THEFT UNDER,2018-06-16T00:00:00,2018,June,Saturday,16,167,8,2018-06-19T00:00:00,2018,June,Tuesday,19,170,8,D42,Toronto,131,Rouge (131),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,OT,5,PLE,200.0,STOLEN,25517,"{'type': 'Point', 'coordinates': (-79.14614134, 43.79996424)}"
-25521,17051,GO-20189019239,THEFT UNDER,2018-06-16T00:00:00,2018,June,Saturday,16,167,8,2018-06-19T00:00:00,2018,June,Tuesday,19,170,8,D42,Toronto,131,Rouge (131),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,,RG,10,BLK,600.0,STOLEN,25518,"{'type': 'Point', 'coordinates': (-79.14614134, 43.79996424)}"
-25522,17086,GO-20189026007,THEFT UNDER,2018-08-10T00:00:00,2018,August,Friday,10,222,12,2018-08-11T00:00:00,2018,August,Saturday,11,223,18,D43,Toronto,131,Rouge (131),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,MT,21,BLK,380.0,STOLEN,25519,"{'type': 'Point', 'coordinates': (-79.13019995, 43.78134828)}"
-25523,17094,GO-20189027350,THEFT UNDER - BICYCLE,2018-08-20T00:00:00,2018,August,Monday,20,232,9,2018-08-21T00:00:00,2018,August,Tuesday,21,233,17,D43,Toronto,131,Rouge (131),Go Station,Transit,GI,,MT,15,WHI,500.0,STOLEN,25520,"{'type': 'Point', 'coordinates': (-79.13007497, 43.78103162)}"
-25524,17141,GO-20151066449,THEFT UNDER,2015-06-23T00:00:00,2015,June,Tuesday,23,174,20,2015-06-24T00:00:00,2015,June,Wednesday,24,175,21,D42,Toronto,131,Rouge (131),Schools During Un-Supervised Activity,Educational,NEXT,CHALLENGER,MT,0,BLU,,STOLEN,25521,"{'type': 'Point', 'coordinates': (-79.17233455, 43.8024406)}"
-25525,17257,GO-20161457508,THEFT UNDER - BICYCLE,2016-08-17T00:00:00,2016,August,Wednesday,17,230,7,2016-08-17T00:00:00,2016,August,Wednesday,17,230,22,D43,Toronto,131,Rouge (131),Go Station,Transit,GIANT,CYPRESS,MT,21,SIL,100.0,STOLEN,25522,"{'type': 'Point', 'coordinates': (-79.13007497, 43.78103162)}"
-25526,17310,GO-2017688424,THEFT UNDER - BICYCLE,2017-04-19T00:00:00,2017,April,Wednesday,19,109,13,2017-04-19T00:00:00,2017,April,Wednesday,19,109,17,D42,Toronto,131,Rouge (131),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,RG,1,BLK,350.0,STOLEN,25523,"{'type': 'Point', 'coordinates': (-79.19903858, 43.80027853)}"
-25527,19852,GO-20151138685,THEFT UNDER,2015-07-05T00:00:00,2015,July,Sunday,5,186,15,2015-07-06T00:00:00,2015,July,Monday,6,187,11,D52,Toronto,131,Rouge (131),"Open Areas (Lakes, Parks, Rivers)",Outside,OTHER,NO. 1,RG,3,GRYPNK,1200.0,STOLEN,25524,"{'type': 'Point', 'coordinates': (-79.17741252, 43.82290499)}"
-25528,20053,GO-20199021670,THEFT UNDER,2019-07-09T00:00:00,2019,July,Tuesday,9,190,8,2019-07-09T00:00:00,2019,July,Tuesday,9,190,23,D43,Toronto,131,Rouge (131),Go Station,Transit,GT,OUTPOST,MT,21,RED,300.0,STOLEN,25525,"{'type': 'Point', 'coordinates': (-79.13007497, 43.78103162)}"
-25529,20060,GO-20191406062,THEFT UNDER - BICYCLE,2019-07-25T00:00:00,2019,July,Thursday,25,206,12,2019-07-26T00:00:00,2019,July,Friday,26,207,13,D43,Toronto,131,Rouge (131),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,,MT,18,BLKONG,900.0,STOLEN,25526,"{'type': 'Point', 'coordinates': (-79.1273831, 43.79137225)}"
-25530,20061,GO-20199023812,THEFT UNDER - BICYCLE,2019-07-25T00:00:00,2019,July,Thursday,25,206,6,2019-07-25T00:00:00,2019,July,Thursday,25,206,21,D43,Toronto,131,Rouge (131),Go Station,Transit,GT,,BM,1,DBL,0.0,STOLEN,25527,"{'type': 'Point', 'coordinates': (-79.13007497, 43.78103162)}"
-25531,20066,GO-20199027141,THEFT UNDER - BICYCLE,2019-08-21T00:00:00,2019,August,Wednesday,21,233,6,2019-08-21T00:00:00,2019,August,Wednesday,21,233,16,D43,Toronto,131,Rouge (131),Go Station,Transit,SU,,MT,5,RED,115.0,STOLEN,25528,"{'type': 'Point', 'coordinates': (-79.13007497, 43.78103162)}"
-25532,20205,GO-20179010365,THEFT UNDER - BICYCLE,2017-07-14T00:00:00,2017,July,Friday,14,195,7,2017-07-17T00:00:00,2017,July,Monday,17,198,10,D43,Toronto,131,Rouge (131),Go Station,Transit,GI,ROAM 3,MT,24,BLK,700.0,STOLEN,25529,"{'type': 'Point', 'coordinates': (-79.13007497, 43.78103162)}"
-25533,20288,GO-2018266890,THEFT UNDER - BICYCLE,2018-02-11T00:00:00,2018,February,Sunday,11,42,2,2018-02-11T00:00:00,2018,February,Sunday,11,42,20,D43,Toronto,131,Rouge (131),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT SEDONA,,MT,0,GRY,,STOLEN,25530,"{'type': 'Point', 'coordinates': (-79.12873173, 43.78392918)}"
-25534,20331,GO-20189022388,THEFT UNDER,2018-07-04T00:00:00,2018,July,Wednesday,4,185,8,2018-07-14T00:00:00,2018,July,Saturday,14,195,12,D43,Toronto,131,Rouge (131),Go Station,Transit,CC,,MT,21,BLU,300.0,STOLEN,25531,"{'type': 'Point', 'coordinates': (-79.13599823, 43.78749351)}"
-25535,20423,GO-20151328476,MISCHIEF UNDER,2015-08-03T00:00:00,2015,August,Monday,3,215,16,2015-08-03T00:00:00,2015,August,Monday,3,215,16,D42,Toronto,131,Rouge (131),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NEXT,,RG,15,PLE,25.0,UNKNOWN,25532,"{'type': 'Point', 'coordinates': (-79.19972992, 43.80197257)}"
-25536,20489,GO-2016798245,THEFT UNDER,2016-04-27T00:00:00,2016,April,Wednesday,27,118,0,2016-05-10T00:00:00,2016,May,Tuesday,10,131,14,D42,Toronto,131,Rouge (131),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,DIADORA,MT,18,RED,226.0,STOLEN,25533,"{'type': 'Point', 'coordinates': (-79.17088486, 43.80661047)}"
-25537,20503,GO-20169006499,THEFT UNDER,2016-06-22T00:00:00,2016,June,Wednesday,22,174,13,2016-06-28T00:00:00,2016,June,Tuesday,28,180,21,D43,Toronto,131,Rouge (131),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,MODENA FEMME 20,RG,21,WHI,550.0,STOLEN,25534,"{'type': 'Point', 'coordinates': (-79.14048047, 43.7887306)}"
-25538,20535,GO-20161665788,PROPERTY - FOUND,2016-09-19T00:00:00,2016,September,Monday,19,263,9,2016-09-19T00:00:00,2016,September,Monday,19,263,9,D43,Toronto,131,Rouge (131),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,ORYX,SHIMANO,MT,21,BLU,,UNKNOWN,25535,"{'type': 'Point', 'coordinates': (-79.13551689, 43.7781308)}"
-25539,20567,GO-20179004362,THEFT UNDER - BICYCLE,2017-04-05T00:00:00,2017,April,Wednesday,5,95,10,2017-04-07T00:00:00,2017,April,Friday,7,97,11,D43,Toronto,131,Rouge (131),"Open Areas (Lakes, Parks, Rivers)",Outside,NO,,MT,21,GRY,600.0,STOLEN,25536,"{'type': 'Point', 'coordinates': (-79.12486059, 43.79238113000001)}"
-25540,20573,GO-20179005685,THEFT UNDER,2017-05-03T00:00:00,2017,May,Wednesday,3,123,9,2017-05-03T00:00:00,2017,May,Wednesday,3,123,19,D43,Toronto,131,Rouge (131),Go Station,Transit,GI,CYPRESS LX,MT,21,SIL,800.0,STOLEN,25537,"{'type': 'Point', 'coordinates': (-79.13007497, 43.78103162)}"
-25541,20860,GO-20142047404,THEFT UNDER,2014-05-09T00:00:00,2014,May,Friday,9,129,8,2014-05-09T00:00:00,2014,May,Friday,9,129,19,D43,Toronto,131,Rouge (131),Go Station,Transit,GIANT,STP2,MT,15,BLK,600.0,STOLEN,25538,"{'type': 'Point', 'coordinates': (-79.13288116, 43.78041506)}"
-25542,23228,GO-20189038666,THEFT UNDER - BICYCLE,2018-11-14T00:00:00,2018,November,Wednesday,14,318,6,2018-11-17T00:00:00,2018,November,Saturday,17,321,21,D43,Toronto,131,Rouge (131),Go Station,Transit,TR,6500,MT,12,RED,0.0,STOLEN,25539,"{'type': 'Point', 'coordinates': (-79.13007497, 43.78103162)}"
-25543,23281,GO-20199021051,THEFT UNDER,2019-07-04T00:00:00,2019,July,Thursday,4,185,8,2019-07-04T00:00:00,2019,July,Thursday,4,185,23,D43,Toronto,131,Rouge (131),Go Station,Transit,OT,,TO,10,LBL,300.0,STOLEN,25540,"{'type': 'Point', 'coordinates': (-79.13007497, 43.78103162)}"
-25544,23487,GO-20179017540,THEFT UNDER - BICYCLE,2017-10-17T00:00:00,2017,October,Tuesday,17,290,9,2017-10-17T00:00:00,2017,October,Tuesday,17,290,23,D43,Toronto,131,Rouge (131),Go Station,Transit,NO,,RG,24,,1300.0,STOLEN,25541,"{'type': 'Point', 'coordinates': (-79.13007497, 43.78103162)}"
-25545,23629,GO-20159004837,THEFT UNDER,2015-07-21T00:00:00,2015,July,Tuesday,21,202,12,2015-07-21T00:00:00,2015,July,Tuesday,21,202,22,D42,Toronto,131,Rouge (131),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,,MT,18,MRN,150.0,STOLEN,25543,"{'type': 'Point', 'coordinates': (-79.22505093, 43.82133874)}"
-25546,23695,GO-20169004721,THEFT UNDER - BICYCLE,2016-05-19T00:00:00,2016,May,Thursday,19,140,8,2016-05-19T00:00:00,2016,May,Thursday,19,140,19,D42,Toronto,131,Rouge (131),Convenience Stores,Commercial,TR,MARLIN 6,MT,40,,600.0,STOLEN,25544,"{'type': 'Point', 'coordinates': (-79.19483812, 43.803075480000004)}"
-25547,23877,GO-20142071427,THEFT UNDER,2014-05-12T00:00:00,2014,May,Monday,12,132,15,2014-05-14T00:00:00,2014,May,Wednesday,14,134,9,D42,Toronto,131,Rouge (131),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NEXT,POWER CLIMBER,MT,21,BLK,,STOLEN,25545,"{'type': 'Point', 'coordinates': (-79.18818581, 43.80828309)}"
-25548,23878,GO-20142071427,THEFT UNDER,2014-05-12T00:00:00,2014,May,Monday,12,132,15,2014-05-14T00:00:00,2014,May,Wednesday,14,134,9,D42,Toronto,131,Rouge (131),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NEXT,POWER CLIMBER,MT,21,RED,120.0,RECOVERED,25546,"{'type': 'Point', 'coordinates': (-79.18818581, 43.80828309)}"
-25549,539,GO-20179007519,THEFT UNDER - BICYCLE,2017-06-01T00:00:00,2017,June,Thursday,1,152,11,2017-06-05T00:00:00,2017,June,Monday,5,156,13,D42,Toronto,132,Malvern (132),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,MT,20,,300.0,STOLEN,25547,"{'type': 'Point', 'coordinates': (-79.22088214, 43.80557764)}"
-25550,1206,GO-20179012990,THEFT UNDER,2017-08-21T00:00:00,2017,August,Monday,21,233,13,2017-08-22T00:00:00,2017,August,Tuesday,22,234,2,D42,Toronto,132,Malvern (132),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UK,,MT,7,RED,700.0,STOLEN,25548,"{'type': 'Point', 'coordinates': (-79.21555349, 43.80779799)}"
-25551,1469,GO-20171708587,THEFT UNDER - BICYCLE,2017-09-13T00:00:00,2017,September,Wednesday,13,256,16,2017-09-20T00:00:00,2017,September,Wednesday,20,263,16,D42,Toronto,132,Malvern (132),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,MONGOOSE,EXCURSION,MT,21,,168.0,STOLEN,25549,"{'type': 'Point', 'coordinates': (-79.21555349, 43.80779799)}"
-25552,1473,GO-20171708587,THEFT UNDER - BICYCLE,2017-09-13T00:00:00,2017,September,Wednesday,13,256,16,2017-09-20T00:00:00,2017,September,Wednesday,20,263,16,D42,Toronto,132,Malvern (132),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,MONGOOSE,,MT,6,BLK,,STOLEN,25550,"{'type': 'Point', 'coordinates': (-79.21555349, 43.80779799)}"
-25553,1851,GO-20179019718,THEFT UNDER - BICYCLE,2017-11-14T00:00:00,2017,November,Tuesday,14,318,17,2017-11-15T00:00:00,2017,November,Wednesday,15,319,14,D42,Toronto,132,Malvern (132),Convenience Stores,Commercial,UK,UNKNOWN,MT,5,BLU,600.0,STOLEN,25551,"{'type': 'Point', 'coordinates': (-79.22088214, 43.80557764)}"
-25554,3152,GO-20189025883,THEFT UNDER - BICYCLE,2018-08-08T00:00:00,2018,August,Wednesday,8,220,11,2018-08-10T00:00:00,2018,August,Friday,10,222,14,D42,Toronto,132,Malvern (132),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,,RG,5,WHI,0.0,STOLEN,25552,"{'type': 'Point', 'coordinates': (-79.2079213, 43.80712027)}"
-25555,3441,GO-20189029648,FRAUD UNDER,2018-07-08T00:00:00,2018,July,Sunday,8,189,19,2018-09-08T00:00:00,2018,September,Saturday,8,251,21,D42,Toronto,132,Malvern (132),Unknown,Other,NO,,TO,24,GRY,1000.0,STOLEN,25553,"{'type': 'Point', 'coordinates': (-79.2144505, 43.80776187)}"
-25556,4547,GO-20199019286,THEFT UNDER,2019-06-19T00:00:00,2019,June,Wednesday,19,170,14,2019-06-19T00:00:00,2019,June,Wednesday,19,170,17,D42,Toronto,132,Malvern (132),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,SOLARIS MEN'S H,RG,18,BLK,275.0,STOLEN,25554,"{'type': 'Point', 'coordinates': (-79.23230941, 43.8152492)}"
-25557,4653,GO-20199020759,THEFT UNDER,2019-07-02T00:00:00,2019,July,Tuesday,2,183,6,2019-07-02T00:00:00,2019,July,Tuesday,2,183,18,D42,Toronto,132,Malvern (132),"Open Areas (Lakes, Parks, Rivers)",Outside,TR,FX 2.0,RG,24,BLK,700.0,STOLEN,25555,"{'type': 'Point', 'coordinates': (-79.22671389, 43.81198024)}"
-25558,5767,GO-20199040994,THEFT UNDER,2019-12-13T00:00:00,2019,December,Friday,13,347,21,2019-12-14T00:00:00,2019,December,Saturday,14,348,22,D42,Toronto,132,Malvern (132),"Apartment (Rooming House, Condo)",Apartment,UK,,BM,1,WHI,200.0,STOLEN,25556,"{'type': 'Point', 'coordinates': (-79.22159304, 43.8047433)}"
-25559,5787,GO-20199042024,THEFT UNDER,2019-12-24T00:00:00,2019,December,Tuesday,24,358,13,2019-12-26T00:00:00,2019,December,Thursday,26,360,18,D42,Toronto,132,Malvern (132),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CC,ALPHA 29,MT,21,BLK,300.0,STOLEN,25557,"{'type': 'Point', 'coordinates': (-79.22088214, 43.80557764)}"
-25560,6471,GO-20209016189,THEFT UNDER,2020-06-03T00:00:00,2020,June,Wednesday,3,155,15,2020-06-25T00:00:00,2020,June,Thursday,25,177,20,D42,Toronto,132,Malvern (132),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,MOVELO ALGONQUI,MT,10,RED,110.0,STOLEN,25558,"{'type': 'Point', 'coordinates': (-79.20060719, 43.79619447)}"
-25561,7405,GO-20201881344,ROBBERY - MUGGING,2020-10-03T00:00:00,2020,October,Saturday,3,277,21,2020-10-03T00:00:00,2020,October,Saturday,3,277,21,D42,Toronto,132,Malvern (132),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,,MT,10,BLK,,RECOVERED,25561,"{'type': 'Point', 'coordinates': (-79.22161652, 43.80917229)}"
-25562,9046,GO-20149007555,THEFT UNDER,2014-10-03T00:00:00,2014,October,Friday,3,276,21,2014-10-12T00:00:00,2014,October,Sunday,12,285,22,D42,Toronto,132,Malvern (132),"Group Homes (Non-Profit, Halfway House, Social Agency)",Other,UK,,RG,30,WHI,300.0,STOLEN,25562,"{'type': 'Point', 'coordinates': (-79.23001795, 43.79156397)}"
-25563,9083,GO-20143134832,THEFT UNDER,2014-10-17T00:00:00,2014,October,Friday,17,290,17,2014-10-19T00:00:00,2014,October,Sunday,19,292,13,D42,Toronto,132,Malvern (132),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,,OT,10,YEL,,STOLEN,25563,"{'type': 'Point', 'coordinates': (-79.21116678, 43.81185502)}"
-25564,9155,GO-20143239833,THEFT UNDER,2014-11-04T00:00:00,2014,November,Tuesday,4,308,19,2014-11-04T00:00:00,2014,November,Tuesday,4,308,21,D42,Toronto,132,Malvern (132),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CHEROKEE,,MT,21,BLU,100.0,STOLEN,25564,"{'type': 'Point', 'coordinates': (-79.23033103, 43.79296735)}"
-25565,9361,GO-2015543181,MISCHIEF UNDER,2015-04-01T00:00:00,2015,April,Wednesday,1,91,17,2015-04-01T00:00:00,2015,April,Wednesday,1,91,19,D42,Toronto,132,Malvern (132),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,BMX WILD MAN,RG,0,SIL,600.0,STOLEN,25565,"{'type': 'Point', 'coordinates': (-79.21555349, 43.80779799)}"
-25566,11318,GO-20169004589,THEFT UNDER,2016-05-16T00:00:00,2016,May,Monday,16,137,21,2016-05-16T00:00:00,2016,May,Monday,16,137,21,D42,Toronto,132,Malvern (132),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,,OT,14,,900.0,STOLEN,25566,"{'type': 'Point', 'coordinates': (-79.21767046, 43.8114973)}"
-25567,11462,GO-20169005434,THEFT UNDER,2016-06-04T00:00:00,2016,June,Saturday,4,156,22,2016-06-07T00:00:00,2016,June,Tuesday,7,159,16,D42,Toronto,132,Malvern (132),"Apartment (Rooming House, Condo)",Apartment,SC,ANTRIM,MT,24,WHI,700.0,STOLEN,25567,"{'type': 'Point', 'coordinates': (-79.2360175, 43.79187604)}"
-25568,11695,GO-20161170896,THEFT UNDER,2016-07-04T00:00:00,2016,July,Monday,4,186,20,2016-07-04T00:00:00,2016,July,Monday,4,186,20,D42,Toronto,132,Malvern (132),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,SC,1,,3000.0,STOLEN,25568,"{'type': 'Point', 'coordinates': (-79.20060719, 43.79619447)}"
-25569,11883,GO-20169007653,THEFT UNDER - BICYCLE,2016-07-22T00:00:00,2016,July,Friday,22,204,9,2016-07-23T00:00:00,2016,July,Saturday,23,205,11,D42,Toronto,132,Malvern (132),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,ASCENT MOUNTAIN,MT,21,ONG,200.0,STOLEN,25569,"{'type': 'Point', 'coordinates': (-79.23734742, 43.79519251)}"
diff --git a/05_src/data/slides_data/bike_thefts_joined.csv b/05_src/data/slides_data/bike_thefts_joined.csv
deleted file mode 100644
index 514984a07..000000000
--- a/05_src/data/slides_data/bike_thefts_joined.csv
+++ /dev/null
@@ -1,25570 +0,0 @@
-_id,objectid,event_unique_id,primary_offence,occurrence_date,occurrence_year,occurrence_month,occurrence_dayofweek,occurrence_dayofmonth,occurrence_dayofyear,occurrence_hour,report_date,report_year,report_month,report_dayofweek,report_dayofmonth,report_dayofyear,report_hour,division,city,hood_id,neighbourhoodname,location_type,premises_type,bike_make,bike_model,bike_type,bike_speed,bike_colour,bike_cost,status,objectid2,geometry,neighbourhood,n_id,designation,pop_2016,pop_2011,pop_change,private_dwellings,occupied_dwllings,pop_dens,area,total_commuters,drive,car_passenger,transit,walk,bike,other,pct_bike
-1,17744,GO-20179016397,THEFT UNDER,2017-10-03,2017,October,Tuesday,3,276,14,2017-10-03,2017,October,Tuesday,3,276,18,D22,Toronto,15,Kingsway South (15),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE 2,OT,7,BLK,700.0,STOLEN,1,"{'type': 'Point', 'coordinates': (-79.50655965, 43.64842688)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-2,17759,GO-20172033056,THEFT UNDER - BICYCLE,2017-11-08,2017,November,Wednesday,8,312,3,2017-11-08,2017,November,Wednesday,8,312,22,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,TO,1,BLK,1100.0,RECOVERED,2,"{'type': 'Point', 'coordinates': (-79.50484874, 43.65462305)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-3,17906,GO-20189030822,THEFT UNDER - BICYCLE,2018-09-14,2018,September,Friday,14,257,9,2018-09-17,2018,September,Monday,17,260,16,D22,Toronto,15,Kingsway South (15),Ttc Subway Station,Transit,OT,CROSSTRAIL,MT,24,BLK,904.0,STOLEN,3,"{'type': 'Point', 'coordinates': (-79.51170915, 43.648253)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-4,17962,GO-2015804467,THEFT UNDER,2015-05-07,2015,May,Thursday,7,127,18,2015-05-14,2015,May,Thursday,14,134,14,D22,Toronto,15,Kingsway South (15),Ttc Subway Station,Transit,GT,,TO,10,BLKDGR,400.0,STOLEN,4,"{'type': 'Point', 'coordinates': (-79.51170915, 43.648253)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-5,17963,GO-20159002781,THEFT UNDER,2015-05-16,2015,May,Saturday,16,136,12,2015-05-16,2015,May,Saturday,16,136,15,D22,Toronto,15,Kingsway South (15),Ttc Subway Station,Transit,GI,,MT,6,RED,600.0,STOLEN,5,"{'type': 'Point', 'coordinates': (-79.51132657, 43.64736434)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-6,18003,GO-20151861057,THEFT UNDER,2015-09-01,2015,September,Tuesday,1,244,0,2015-10-29,2015,October,Thursday,29,302,18,D22,Toronto,15,Kingsway South (15),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,UNK,RC,18,TRQ,100.0,STOLEN,6,"{'type': 'Point', 'coordinates': (-79.51960669, 43.64940381)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-7,18013,GO-20169001537,THEFT UNDER,2016-02-18,2016,February,Thursday,18,49,9,2016-02-18,2016,February,Thursday,18,49,23,D22,Toronto,15,Kingsway South (15),Ttc Subway Station,Transit,NO,SASQUATCH,MT,18,WHI,0.0,STOLEN,7,"{'type': 'Point', 'coordinates': (-79.51170915, 43.648253)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-8,20993,GO-2019819460,THEFT UNDER,2019-05-01,2019,May,Wednesday,1,121,13,2019-05-06,2019,May,Monday,6,126,11,D22,Toronto,15,Kingsway South (15),Ttc Bus,Transit,GARY FISHER,,OT,7,BLK,800.0,STOLEN,8,"{'type': 'Point', 'coordinates': (-79.50655965, 43.64842688)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-9,21209,GO-20179014159,THEFT UNDER,2017-09-06,2017,September,Wednesday,6,249,8,2017-09-06,2017,September,Wednesday,6,249,21,D22,Toronto,15,Kingsway South (15),Go Bus,Transit,UK,,RG,20,BLK,700.0,STOLEN,9,"{'type': 'Point', 'coordinates': (-79.50655965, 43.64842688)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-10,21999,GO-20149003203,THEFT UNDER,2014-05-07,2014,May,Wednesday,7,127,18,2014-05-07,2014,May,Wednesday,7,127,19,D22,Toronto,15,Kingsway South (15),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,HARDROCK,MT,24,ONG,550.0,STOLEN,10,"{'type': 'Point', 'coordinates': (-79.51132657, 43.64736434)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-11,22015,GO-20142348560,B&E,2014-06-21,2014,June,Saturday,21,172,12,2014-06-23,2014,June,Monday,23,174,10,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,RC,16,BLU,600.0,STOLEN,11,"{'type': 'Point', 'coordinates': (-79.50787435, 43.65436151)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-12,22028,GO-20149005396,THEFT UNDER,2014-07-24,2014,July,Thursday,24,205,9,2014-07-28,2014,July,Monday,28,209,11,D22,Toronto,15,Kingsway South (15),"Open Areas (Lakes, Parks, Rivers)",Outside,GI,,RC,50,BLK,829.0,STOLEN,12,"{'type': 'Point', 'coordinates': (-79.5140734, 43.64771876)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-13,22133,GO-20161846190,THEFT UNDER - BICYCLE,2016-10-14,2016,October,Friday,14,288,13,2016-10-17,2016,October,Monday,17,291,11,D22,Toronto,15,Kingsway South (15),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,HARDROCK SPORT,MT,27,BLK,690.0,STOLEN,13,"{'type': 'Point', 'coordinates': (-79.5214032, 43.65033128)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-14,22134,GO-20161947414,B&E W'INTENT,2016-11-02,2016,November,Wednesday,2,307,1,2016-11-02,2016,November,Wednesday,2,307,9,D22,Toronto,15,Kingsway South (15),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,7000,MT,18,BLU,1000.0,STOLEN,14,"{'type': 'Point', 'coordinates': (-79.51083523, 43.65217011)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-15,22135,GO-20161947414,B&E W'INTENT,2016-11-02,2016,November,Wednesday,2,307,1,2016-11-02,2016,November,Wednesday,2,307,9,D22,Toronto,15,Kingsway South (15),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,MT,18,BLKWHI,1000.0,STOLEN,15,"{'type': 'Point', 'coordinates': (-79.51083523, 43.65217011)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-16,22136,GO-20169013594,THEFT UNDER - BICYCLE,2016-11-18,2016,November,Friday,18,323,8,2016-11-18,2016,November,Friday,18,323,22,D22,Toronto,15,Kingsway South (15),Ttc Subway Station,Transit,RA,,MT,24,MRN,1100.0,RECOVERED,16,"{'type': 'Point', 'coordinates': (-79.50772138000002, 43.64817027)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-17,23817,GO-20201448996,B&E W'INTENT,2020-08-03,2020,August,Monday,3,216,20,2020-08-03,2020,August,Monday,3,216,20,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,,MT,21,BLKBLU,500.0,STOLEN,17,"{'type': 'Point', 'coordinates': (-79.50980395, 43.65910215)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-18,23818,GO-20201448996,B&E W'INTENT,2020-08-03,2020,August,Monday,3,216,20,2020-08-03,2020,August,Monday,3,216,20,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,,MT,21,BLKBLU,500.0,STOLEN,18,"{'type': 'Point', 'coordinates': (-79.50980395, 43.65910215)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-19,2837,GO-20181282906,B&E W'INTENT,2018-07-13,2018,July,Friday,13,194,19,2018-07-14,2018,July,Saturday,14,195,9,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,,MT,18,GRY,1200.0,STOLEN,19,"{'type': 'Point', 'coordinates': (-79.53884669, 43.64663626)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-20,23826,GO-20209021307,THEFT UNDER,2020-08-25,2020,August,Tuesday,25,238,14,2020-08-25,2020,August,Tuesday,25,238,14,D22,Toronto,15,Kingsway South (15),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,70,BLK,115.0,STOLEN,20,"{'type': 'Point', 'coordinates': (-79.50998592, 43.64767052)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-21,24225,GO-20179014159,THEFT UNDER,2017-09-06,2017,September,Wednesday,6,249,8,2017-09-06,2017,September,Wednesday,6,249,21,D22,Toronto,15,Kingsway South (15),Go Bus,Transit,UK,,RG,20,BLK,700.0,STOLEN,21,"{'type': 'Point', 'coordinates': (-79.50655965, 43.64842688)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-22,24347,GO-20189024371,THEFT UNDER - BICYCLE,2018-07-27,2018,July,Friday,27,208,10,2018-07-28,2018,July,Saturday,28,209,20,D22,Toronto,15,Kingsway South (15),Ttc Subway Station,Transit,RA,,MT,18,GRY,200.0,STOLEN,22,"{'type': 'Point', 'coordinates': (-79.49540608000001, 43.64960616)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-23,24479,GO-20159005553,THEFT UNDER,2015-08-08,2015,August,Saturday,8,220,14,2015-08-09,2015,August,Sunday,9,221,20,D22,Toronto,15,Kingsway South (15),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,SPECIALIZED,OT,24,SIL,600.0,STOLEN,23,"{'type': 'Point', 'coordinates': (-79.51960669, 43.64940381)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-24,24515,GO-20169004369,THEFT UNDER - BICYCLE,2016-05-05,2016,May,Thursday,5,126,10,2016-05-10,2016,May,Tuesday,10,131,18,D22,Toronto,15,Kingsway South (15),Schools During Supervised Activity,Educational,OT,2013,RG,8,GRY,600.0,STOLEN,24,"{'type': 'Point', 'coordinates': (-79.5214032, 43.65033128)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-25,24531,GO-20161308757,THEFT UNDER - BICYCLE,2016-07-21,2016,July,Thursday,21,203,8,2016-07-25,2016,July,Monday,25,207,21,D22,Toronto,15,Kingsway South (15),Ttc Subway Station,Transit,RALEIGH,,RG,3,GRN,400.0,STOLEN,25,"{'type': 'Point', 'coordinates': (-79.49540608000001, 43.64960616)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-26,60,GO-20179001053,THEFT UNDER,2017-01-10,2017,January,Tuesday,10,10,11,2017-01-23,2017,January,Monday,23,23,13,D22,Toronto,16,Stonegate-Queensway (16),"Apartment (Rooming House, Condo)",Apartment,GF,,MT,3,YEL,600.0,STOLEN,26,"{'type': 'Point', 'coordinates': (-79.50442129, 43.62591328)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-27,114,GO-2017365932,THEFT UNDER - BICYCLE,2017-02-23,2017,February,Thursday,23,54,18,2017-02-27,2017,February,Monday,27,58,20,D22,Toronto,16,Stonegate-Queensway (16),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,DIVERGE,OT,18,BLK,1600.0,STOLEN,27,"{'type': 'Point', 'coordinates': (-79.5036963, 43.62676359000001)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-28,1438,GO-20179015008,THEFT UNDER - BICYCLE,2017-09-16,2017,September,Saturday,16,259,23,2017-09-17,2017,September,Sunday,17,260,18,D22,Toronto,16,Stonegate-Queensway (16),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,WE THE PEOPLE,BM,1,GRY,250.0,STOLEN,28,"{'type': 'Point', 'coordinates': (-79.51355275, 43.64687723000001)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-29,1529,GO-20179015823,THEFT UNDER - BICYCLE,2017-09-26,2017,September,Tuesday,26,269,3,2017-09-26,2017,September,Tuesday,26,269,12,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,REDUX 1,RG,20,GRY,600.0,STOLEN,29,"{'type': 'Point', 'coordinates': (-79.49400121, 43.62822772)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-30,1664,GO-20171854292,THEFT UNDER,2017-10-13,2017,October,Friday,13,286,0,2017-10-13,2017,October,Friday,13,286,13,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,VILANO,,OT,21,BLKWHI,886.0,STOLEN,30,"{'type': 'Point', 'coordinates': (-79.5078332, 43.63350787)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-31,1960,GO-20179023093,THEFT UNDER,2017-11-11,2017,November,Saturday,11,315,22,2017-12-28,2017,December,Thursday,28,362,11,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,,MT,18,BLU,400.0,STOLEN,31,"{'type': 'Point', 'coordinates': (-79.5153314, 43.64003918)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-32,3498,GO-20189030880,THEFT UNDER,2018-09-17,2018,September,Monday,17,260,8,2018-09-17,2018,September,Monday,17,260,23,D22,Toronto,16,Stonegate-Queensway (16),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,S TYPE,MT,30,GRY,4500.0,STOLEN,32,"{'type': 'Point', 'coordinates': (-79.48502371, 43.63228655)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-33,4104,GO-2019528298,B&E,2019-03-21,2019,March,Thursday,21,80,17,2019-03-23,2019,March,Saturday,23,82,21,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,ROCK JUMPER,MT,12,GRY,,STOLEN,33,"{'type': 'Point', 'coordinates': (-79.50011051, 43.63986673)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-34,4252,GO-20199014387,THEFT UNDER,2019-05-08,2019,May,Wednesday,8,128,9,2019-05-08,2019,May,Wednesday,8,128,19,D22,Toronto,16,Stonegate-Queensway (16),Schools During Un-Supervised Activity,Educational,GIANT,SLAMMER,BM,1,BRZ,380.0,STOLEN,34,"{'type': 'Point', 'coordinates': (-79.50577149, 43.63395715)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-35,4554,GO-20191144303,THEFT FROM MAIL / BAG / KEY,2019-06-20,2019,June,Thursday,20,171,3,2019-06-20,2019,June,Thursday,20,171,15,D22,Toronto,16,Stonegate-Queensway (16),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,RG,10,,1000.0,STOLEN,35,"{'type': 'Point', 'coordinates': (-79.50442129, 43.62591328)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-36,4686,GO-20191245795,THEFT UNDER - BICYCLE,2019-07-04,2019,July,Thursday,4,185,13,2019-07-04,2019,July,Thursday,4,185,17,D22,Toronto,16,Stonegate-Queensway (16),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,LANGSTER,OT,1,RED,903.0,STOLEN,36,"{'type': 'Point', 'coordinates': (-79.50998592, 43.64767052)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-37,5319,GO-20199029965,THEFT UNDER,2019-09-01,2019,September,Sunday,1,244,20,2019-09-13,2019,September,Friday,13,256,23,D22,Toronto,16,Stonegate-Queensway (16),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,TO,10,TRQ,0.0,STOLEN,37,"{'type': 'Point', 'coordinates': (-79.49207964, 43.6401815)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-38,5320,GO-20199029965,THEFT UNDER,2019-09-01,2019,September,Sunday,1,244,20,2019-09-13,2019,September,Friday,13,256,23,D22,Toronto,16,Stonegate-Queensway (16),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,OT,10,TRQ,0.0,STOLEN,38,"{'type': 'Point', 'coordinates': (-79.49207964, 43.6401815)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-39,6165,GO-20209012941,THEFT UNDER,2020-05-11,2020,May,Monday,11,132,23,2020-05-12,2020,May,Tuesday,12,133,8,D22,Toronto,16,Stonegate-Queensway (16),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,OT,21,BLK,879.0,STOLEN,39,"{'type': 'Point', 'coordinates': (-79.49657694, 43.63297159)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-40,6738,GO-20209018566,THEFT UNDER,2020-07-24,2020,July,Friday,24,206,22,2020-07-26,2020,July,Sunday,26,208,8,D22,Toronto,16,Stonegate-Queensway (16),Bar / Restaurant,Commercial,CA,SL4 (M),MT,18,BLU,632.0,STOLEN,40,"{'type': 'Point', 'coordinates': (-79.49032645, 43.62905111)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-41,6936,GO-20209019905,THEFT UNDER,2020-08-10,2020,August,Monday,10,223,23,2020-08-11,2020,August,Tuesday,11,224,13,D22,Toronto,16,Stonegate-Queensway (16),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,MT,21,BLK,459.0,STOLEN,41,"{'type': 'Point', 'coordinates': (-79.48502371, 43.63228655)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-42,7120,GO-20209021752,THEFT UNDER,2020-08-29,2020,August,Saturday,29,242,13,2020-08-29,2020,August,Saturday,29,242,16,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,CYPRESS,MT,32,BLK,300.0,STOLEN,42,"{'type': 'Point', 'coordinates': (-79.51416806, 43.64036618000001)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-43,7620,GO-20202146645,THEFT UNDER - BICYCLE,2020-09-29,2020,September,Tuesday,29,273,20,2020-11-12,2020,November,Thursday,12,317,10,D22,Toronto,16,Stonegate-Queensway (16),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORTHROCK,CTM,MT,21,GRYLGR,400.0,STOLEN,43,"{'type': 'Point', 'coordinates': (-79.5036963, 43.62676359000001)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-44,8487,GO-20142564428,THEFT UNDER,2014-07-24,2014,July,Thursday,24,205,2,2014-07-24,2014,July,Thursday,24,205,18,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,SEEK3,OT,10,BLK,687.0,STOLEN,44,"{'type': 'Point', 'coordinates': (-79.51428483000001, 43.63855434)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-45,8511,GO-20142580855,THEFT UNDER,2014-07-27,2014,July,Sunday,27,208,0,2014-07-27,2014,July,Sunday,27,208,7,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,ROAD RUNNER,EL,0,BLK,3500.0,UNKNOWN,45,"{'type': 'Point', 'coordinates': (-79.50361400000001, 43.62887143)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-46,8695,GO-20149006112,THEFT UNDER,2014-08-15,2014,August,Friday,15,227,10,2014-08-19,2014,August,Tuesday,19,231,17,D22,Toronto,16,Stonegate-Queensway (16),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,AGGRESSOR,MT,21,BLK,600.0,STOLEN,46,"{'type': 'Point', 'coordinates': (-79.51274537000002, 43.62408952)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-47,8719,GO-20142775166,B&E,2014-08-24,2014,August,Sunday,24,236,13,2014-08-25,2014,August,Monday,25,237,21,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NAKAMURA,UNKNOWN,MT,5,MRN,200.0,STOLEN,47,"{'type': 'Point', 'coordinates': (-79.49736075, 43.62502784)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-48,8720,GO-20142775166,B&E,2014-08-24,2014,August,Sunday,24,236,13,2014-08-25,2014,August,Monday,25,237,21,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,SIRRUS ELITE,MT,5,SILRED,829.0,STOLEN,48,"{'type': 'Point', 'coordinates': (-79.49736075, 43.62502784)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-49,8739,GO-20142782199,THEFT UNDER,2014-08-21,2014,August,Thursday,21,233,21,2014-08-26,2014,August,Tuesday,26,238,19,D22,Toronto,16,Stonegate-Queensway (16),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RALEIGH,,MT,3,BLK,300.0,STOLEN,49,"{'type': 'Point', 'coordinates': (-79.49567561, 43.62932148)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-50,9466,GO-2015677844,THEFT UNDER,2015-04-16,2015,April,Thursday,16,106,10,2015-04-24,2015,April,Friday,24,114,12,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,MT,10,BLU,200.0,STOLEN,50,"{'type': 'Point', 'coordinates': (-79.49966003, 43.64272918)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-51,9924,GO-20159004114,THEFT UNDER,2015-07-02,2015,July,Thursday,2,183,15,2015-07-02,2015,July,Thursday,2,183,16,D22,Toronto,16,Stonegate-Queensway (16),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,AGGRESSOR COMP,MT,25,WHI,500.0,STOLEN,51,"{'type': 'Point', 'coordinates': (-79.50913682, 43.64785061)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-52,10044,GO-20159927,THEFT UNDER,2015-07-18,2015,July,Saturday,18,199,21,2015-07-18,2015,July,Saturday,18,199,22,D22,Toronto,16,Stonegate-Queensway (16),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,M4,MT,15,GRY,,STOLEN,52,"{'type': 'Point', 'coordinates': (-79.51419744, 43.64672259)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-53,10073,GO-20159004831,THEFT UNDER,2015-07-21,2015,July,Tuesday,21,202,17,2015-07-21,2015,July,Tuesday,21,202,18,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,21,BRN,500.0,STOLEN,53,"{'type': 'Point', 'coordinates': (-79.50646897, 43.64447977)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-54,10074,GO-20159004831,THEFT UNDER,2015-07-21,2015,July,Tuesday,21,202,17,2015-07-21,2015,July,Tuesday,21,202,18,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,,RG,21,GRY,440.0,STOLEN,54,"{'type': 'Point', 'coordinates': (-79.50646897, 43.64447977)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-55,10117,GO-20151277841,THEFT UNDER,2015-07-26,2015,July,Sunday,26,207,13,2015-07-26,2015,July,Sunday,26,207,18,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,LITTLE MISS MAT,,OT,0,BLKGRN,150.0,STOLEN,55,"{'type': 'Point', 'coordinates': (-79.49513903, 43.62797308)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-56,10122,GO-20159005091,THEFT UNDER,2015-07-24,2015,July,Friday,24,205,16,2015-07-28,2015,July,Tuesday,28,209,16,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,CENTURY ELITE 6,RC,10,BLK,1500.0,STOLEN,56,"{'type': 'Point', 'coordinates': (-79.50677459, 43.64441674)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-57,10152,GO-20151296426,THEFT UNDER,2015-07-23,2015,July,Thursday,23,204,19,2015-07-29,2015,July,Wednesday,29,210,13,D22,Toronto,16,Stonegate-Queensway (16),"Private Property Structure (Pool, Shed, Detached Garage)",Other,BIANCHI,,OT,10,BRN,200.0,STOLEN,57,"{'type': 'Point', 'coordinates': (-79.51355275, 43.64687723000001)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-58,10153,GO-20151296426,THEFT UNDER,2015-07-23,2015,July,Thursday,23,204,19,2015-07-29,2015,July,Wednesday,29,210,13,D22,Toronto,16,Stonegate-Queensway (16),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,ACTIVE COUNTRY,OT,21,RED,450.0,STOLEN,58,"{'type': 'Point', 'coordinates': (-79.51355275, 43.64687723000001)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-59,10955,GO-20151173190,PROPERTY - FOUND,2015-07-10,2015,July,Friday,10,191,23,2015-07-11,2015,July,Saturday,11,192,13,D22,Toronto,16,Stonegate-Queensway (16),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,TARMAC SL2,RC,10,BLACK,6500.0,UNKNOWN,59,"{'type': 'Point', 'coordinates': (-79.51419744, 43.64672259)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-60,11174,GO-20151188948,PROPERTY - FOUND,2015-07-13,2015,July,Monday,13,194,20,2015-07-13,2015,July,Monday,13,194,20,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NISHIKI,,MT,99,PLE,,UNKNOWN,60,"{'type': 'Point', 'coordinates': (-79.51393752, 43.64485834)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-61,11249,GO-20169004104,THEFT UNDER,2016-05-03,2016,May,Tuesday,3,124,14,2016-05-03,2016,May,Tuesday,3,124,14,D22,Toronto,16,Stonegate-Queensway (16),Schools During Supervised Activity,Educational,CA,TRAIL SL1,MT,24,,1400.0,STOLEN,61,"{'type': 'Point', 'coordinates': (-79.50701581, 43.63694555)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-62,11858,GO-20169007498,THEFT UNDER,2016-07-20,2016,July,Wednesday,20,202,16,2016-07-20,2016,July,Wednesday,20,202,20,D31,Toronto,16,Stonegate-Queensway (16),Schools During Un-Supervised Activity,Educational,TR,MARLIN 5,MT,21,RED,530.0,STOLEN,62,"{'type': 'Point', 'coordinates': (-79.51551646, 43.62965998)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-63,12088,GO-20161427759,THEFT UNDER - BICYCLE,2016-08-08,2016,August,Monday,8,221,18,2016-08-15,2016,August,Monday,15,228,7,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,0,BLK,40.0,STOLEN,63,"{'type': 'Point', 'coordinates': (-79.52164476, 43.64054082)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-64,12292,GO-20161594256,THEFT UNDER,2016-09-08,2016,September,Thursday,8,252,10,2016-09-08,2016,September,Thursday,8,252,10,D22,Toronto,16,Stonegate-Queensway (16),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,FUTURA 2000,SC,0,BLU,1000.0,STOLEN,64,"{'type': 'Point', 'coordinates': (-79.5036963, 43.62676359000001)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-65,14331,GO-20209026976,THEFT UNDER,2020-10-18,2020,October,Sunday,18,292,18,2020-10-19,2020,October,Monday,19,293,16,D22,Toronto,16,Stonegate-Queensway (16),"Apartment (Rooming House, Condo)",Apartment,KO,,OT,20,BLK,1000.0,STOLEN,65,"{'type': 'Point', 'coordinates': (-79.51132657, 43.64736434)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-66,14508,GO-2019722644,THEFT OF EBIKE UNDER $5000,2019-04-19,2019,April,Friday,19,109,19,2019-04-22,2019,April,Monday,22,112,10,D22,Toronto,16,Stonegate-Queensway (16),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,COMMUTER,EL,1,WHI,1000.0,STOLEN,66,"{'type': 'Point', 'coordinates': (-79.50442129, 43.62591328)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-67,14509,GO-2019722644,THEFT OF EBIKE UNDER $5000,2019-04-19,2019,April,Friday,19,109,19,2019-04-22,2019,April,Monday,22,112,10,D22,Toronto,16,Stonegate-Queensway (16),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,EL,1,GRN,1457.0,STOLEN,67,"{'type': 'Point', 'coordinates': (-79.50442129, 43.62591328)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-68,14914,GO-20142143889,THEFT UNDER,2014-05-22,2014,May,Thursday,22,142,16,2014-05-24,2014,May,Saturday,24,144,16,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,YORKVILLE,OT,21,BLK,,STOLEN,68,"{'type': 'Point', 'coordinates': (-79.51327477, 43.63309763)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-69,14930,GO-20142826660,THEFT UNDER,2014-08-31,2014,August,Sunday,31,243,12,2014-09-02,2014,September,Tuesday,2,245,13,D22,Toronto,16,Stonegate-Queensway (16),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EVERYDAY,COMFORT BIKE,RG,21,WHI,,STOLEN,69,"{'type': 'Point', 'coordinates': (-79.51675012, 43.63476707)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-70,14973,GO-20159006715,THEFT UNDER,2015-09-02,2015,September,Wednesday,2,245,19,2015-09-03,2015,September,Thursday,3,246,13,D22,Toronto,16,Stonegate-Queensway (16),"Apartment (Rooming House, Condo)",Apartment,OT,SPECIALIZED,RC,12,LBL,2000.0,STOLEN,70,"{'type': 'Point', 'coordinates': (-79.49138084, 43.62576989)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-71,14990,GO-2016153125,THEFT UNDER,2016-01-22,2016,January,Friday,22,22,13,2016-01-26,2016,January,Tuesday,26,26,17,D22,Toronto,16,Stonegate-Queensway (16),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,FORTRESS 1700TA,SC,1,BLK,2000.0,STOLEN,71,"{'type': 'Point', 'coordinates': (-79.50985204, 43.64383143)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-72,6459,GO-20209016076,THEFT UNDER,2020-06-23,2020,June,Tuesday,23,175,21,2020-06-24,2020,June,Wednesday,24,176,19,D22,Toronto,14,Islington-City Centre West (14),Bar / Restaurant,Commercial,RA,,MT,20,DGR,600.0,STOLEN,126,"{'type': 'Point', 'coordinates': (-79.5379751, 43.6385254)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-73,17323,GO-20209012950,THEFT UNDER,2020-04-14,2020,April,Tuesday,14,105,10,2020-05-12,2020,May,Tuesday,12,133,11,D22,Toronto,16,Stonegate-Queensway (16),"Apartment (Rooming House, Condo)",Apartment,UK,TRAIL X,MT,1,BLK,500.0,STOLEN,72,"{'type': 'Point', 'coordinates': (-79.49306293, 43.62460459)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-74,17396,GO-20209024816,THEFT UNDER,2020-09-28,2020,September,Monday,28,272,17,2020-09-28,2020,September,Monday,28,272,19,D22,Toronto,16,Stonegate-Queensway (16),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,METHOD 2,BM,1,BLU,350.0,STOLEN,73,"{'type': 'Point', 'coordinates': (-79.50541652, 43.64869248)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-75,17512,GO-20189032310,THEFT UNDER - BICYCLE,2018-09-28,2018,September,Friday,28,271,14,2018-09-28,2018,September,Friday,28,271,22,D22,Toronto,16,Stonegate-Queensway (16),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,RINCON,MT,15,BGE,500.0,STOLEN,74,"{'type': 'Point', 'coordinates': (-79.51370198, 43.62385475000001)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-76,17513,GO-20181822302,THEFT UNDER - BICYCLE,2018-10-02,2018,October,Tuesday,2,275,15,2018-10-02,2018,October,Tuesday,2,275,16,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GARNEAU,,MT,24,SIL,2300.0,STOLEN,75,"{'type': 'Point', 'coordinates': (-79.51059518, 43.64560522)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-77,17514,GO-20181822302,THEFT UNDER - BICYCLE,2018-10-02,2018,October,Tuesday,2,275,15,2018-10-02,2018,October,Tuesday,2,275,16,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNK,,MT,24,BLK,1400.0,STOLEN,76,"{'type': 'Point', 'coordinates': (-79.51059518, 43.64560522)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-78,17680,GO-20207257,B&E,2019-12-16,2019,December,Monday,16,350,0,2020-01-02,2020,January,Thursday,2,2,6,D22,Toronto,16,Stonegate-Queensway (16),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GENNIX,A1 ELITE,RG,21,,3500.0,STOLEN,77,"{'type': 'Point', 'coordinates': (-79.49299006, 43.63523978)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-79,17681,GO-20207257,B&E,2019-12-16,2019,December,Monday,16,350,0,2020-01-02,2020,January,Thursday,2,2,6,D22,Toronto,16,Stonegate-Queensway (16),"Private Property Structure (Pool, Shed, Detached Garage)",Other,AMEGO,INFINITE,EL,18,,2700.0,STOLEN,78,"{'type': 'Point', 'coordinates': (-79.49299006, 43.63523978)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-80,17682,GO-20207257,B&E,2019-12-16,2019,December,Monday,16,350,0,2020-01-02,2020,January,Thursday,2,2,6,D22,Toronto,16,Stonegate-Queensway (16),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SCOTT,CONTESSA,RG,18,,900.0,STOLEN,79,"{'type': 'Point', 'coordinates': (-79.49299006, 43.63523978)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-81,17760,GO-20179019219,THEFT UNDER - BICYCLE,2017-11-09,2017,November,Thursday,9,313,0,2017-11-09,2017,November,Thursday,9,313,10,D22,Toronto,16,Stonegate-Queensway (16),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SC,,RG,15,PLE,350.0,STOLEN,80,"{'type': 'Point', 'coordinates': (-79.48545723, 43.63325426)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-82,17898,GO-20181637264,MISCHIEF UNDER,2018-08-28,2018,August,Tuesday,28,240,0,2018-09-04,2018,September,Tuesday,4,247,14,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ROCKY MOUNTAIN,RC 70,OT,9,GRY,1200.0,STOLEN,81,"{'type': 'Point', 'coordinates': (-79.49780996, 43.63518597)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-83,17977,GO-20159004388,THEFT UNDER,2015-07-09,2015,July,Thursday,9,190,17,2015-07-10,2015,July,Friday,10,191,13,D22,Toronto,16,Stonegate-Queensway (16),"Apartment (Rooming House, Condo)",Apartment,,,MT,18,,299.0,STOLEN,82,"{'type': 'Point', 'coordinates': (-79.48821093, 43.63661211)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-84,18022,GO-20169004503,THEFT UNDER,2016-05-13,2016,May,Friday,13,134,23,2016-05-13,2016,May,Friday,13,134,23,D22,Toronto,16,Stonegate-Queensway (16),Bar / Restaurant,Commercial,OT,,MT,24,GRY,400.0,STOLEN,83,"{'type': 'Point', 'coordinates': (-79.52006087, 43.64542592)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-85,18027,GO-20169005503,THEFT UNDER - BICYCLE,2016-06-08,2016,June,Wednesday,8,160,8,2016-06-08,2016,June,Wednesday,8,160,22,D22,Toronto,16,Stonegate-Queensway (16),Schools During Supervised Activity,Educational,OT,,MT,27,BLK,1500.0,STOLEN,84,"{'type': 'Point', 'coordinates': (-79.50577149, 43.63395715)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-86,18104,GO-20179011498,THEFT UNDER - BICYCLE,2017-08-02,2017,August,Wednesday,2,214,7,2017-08-02,2017,August,Wednesday,2,214,8,D22,Toronto,16,Stonegate-Queensway (16),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,FX 7.2 2015,OT,24,BLK,700.0,STOLEN,85,"{'type': 'Point', 'coordinates': (-79.48147897, 43.63097182)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-87,21013,GO-20199019452,THEFT UNDER,2019-06-19,2019,June,Wednesday,19,170,21,2019-06-21,2019,June,Friday,21,172,10,D22,Toronto,16,Stonegate-Queensway (16),"Apartment (Rooming House, Condo)",Apartment,UK,GRAND RAPID 5,TO,8,BLK,1000.0,STOLEN,86,"{'type': 'Point', 'coordinates': (-79.50442129, 43.62591328)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-88,21080,GO-20191970007,B&E,2019-10-11,2019,October,Friday,11,284,22,2019-10-12,2019,October,Saturday,12,285,8,D22,Toronto,16,Stonegate-Queensway (16),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,SIRRUS,TO,21,BLKBLU,950.0,STOLEN,87,"{'type': 'Point', 'coordinates': (-79.48640535000001, 43.63304284)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-89,21277,GO-2018973896,THEFT OVER,2018-05-08,2018,May,Tuesday,8,128,15,2018-05-30,2018,May,Wednesday,30,150,8,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,XFR 1-2016,OT,30,BLKRED,1500.0,STOLEN,88,"{'type': 'Point', 'coordinates': (-79.50009541, 43.63612214)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-90,21278,GO-2018973896,THEFT OVER,2018-05-08,2018,May,Tuesday,8,128,15,2018-05-30,2018,May,Wednesday,30,150,8,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,SEARCHC ULTEGRA,OT,30,,4299.0,STOLEN,89,"{'type': 'Point', 'coordinates': (-79.50009541, 43.63612214)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-91,21344,GO-20189030880,THEFT UNDER,2018-09-17,2018,September,Monday,17,260,8,2018-09-17,2018,September,Monday,17,260,23,D22,Toronto,16,Stonegate-Queensway (16),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,STUMPJUMPER S,MT,12,GRY,4000.0,STOLEN,90,"{'type': 'Point', 'coordinates': (-79.48502371, 43.63228655)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-92,22025,GO-20149005024,THEFT UNDER,2014-07-01,2014,July,Tuesday,1,182,0,2014-07-15,2014,July,Tuesday,15,196,21,D22,Toronto,16,Stonegate-Queensway (16),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,STUMPJUMPER COM,MT,27,WHI,3500.0,STOLEN,91,"{'type': 'Point', 'coordinates': (-79.50923473, 43.64223823)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-93,22068,GO-20151188736,THEFT UNDER,2015-07-13,2015,July,Monday,13,194,15,2015-07-13,2015,July,Monday,13,194,19,D22,Toronto,16,Stonegate-Queensway (16),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,NISHIKI,MT,24,DBL,500.0,STOLEN,92,"{'type': 'Point', 'coordinates': (-79.51355275, 43.64687723000001)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-94,22069,GO-20151244710,B&E,2015-07-21,2015,July,Tuesday,21,202,18,2015-07-21,2015,July,Tuesday,21,202,21,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,21,BGE,500.0,STOLEN,93,"{'type': 'Point', 'coordinates': (-79.50646897, 43.64447977)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-95,22070,GO-20151244710,B&E,2015-07-21,2015,July,Tuesday,21,202,18,2015-07-21,2015,July,Tuesday,21,202,21,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,AGGRESSOR,MT,21,SIL,450.0,STOLEN,94,"{'type': 'Point', 'coordinates': (-79.50646897, 43.64447977)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-96,22114,GO-20169007059,THEFT UNDER - BICYCLE,2016-07-10,2016,July,Sunday,10,192,21,2016-07-11,2016,July,Monday,11,193,23,D22,Toronto,16,Stonegate-Queensway (16),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,COACH,RG,24,WHI,450.0,STOLEN,95,"{'type': 'Point', 'coordinates': (-79.48147897, 43.63097182)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-97,22117,GO-20161292045,THEFT UNDER - BICYCLE,2016-07-18,2016,July,Monday,18,200,16,2016-07-23,2016,July,Saturday,23,205,6,D22,Toronto,16,Stonegate-Queensway (16),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN,UNKNOWN,MT,27,,100.0,STOLEN,96,"{'type': 'Point', 'coordinates': (-79.48147897, 43.63097182)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-98,23811,GO-20209018579,THEFT UNDER,2020-07-25,2020,July,Saturday,25,207,23,2020-07-26,2020,July,Sunday,26,208,11,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,XFR 4 20 BLACK,MT,6,BLK,700.0,STOLEN,97,"{'type': 'Point', 'coordinates': (-79.51411344, 43.62725677)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-99,23860,GO-20202153156,THEFT UNDER - BICYCLE,2020-09-13,2020,September,Sunday,13,257,14,2020-11-13,2020,November,Friday,13,318,9,D22,Toronto,16,Stonegate-Queensway (16),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CTM,NORTHROCK,MT,21,GRY,500.0,STOLEN,98,"{'type': 'Point', 'coordinates': (-79.49017749, 43.64009584)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-100,23866,GO-20209031079,THEFT UNDER,2020-11-29,2020,November,Sunday,29,334,12,2020-12-03,2020,December,Thursday,3,338,0,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,COASTER 18 INCH,MT,1,RED,250.0,STOLEN,99,"{'type': 'Point', 'coordinates': (-79.50294017, 43.63700424)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-101,23994,GO-20181937094,B&E,2018-10-19,2018,October,Friday,19,292,19,2018-10-20,2018,October,Saturday,20,293,12,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,MT,10,GRN,150.0,STOLEN,100,"{'type': 'Point', 'coordinates': (-79.51440929, 43.62547712)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-102,24371,GO-20189027119,THEFT UNDER - BICYCLE,2018-08-20,2018,August,Monday,20,232,7,2018-08-20,2018,August,Monday,20,232,13,D22,Toronto,16,Stonegate-Queensway (16),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,8.5 DS 14S,MT,27,BLK,1500.0,STOLEN,101,"{'type': 'Point', 'coordinates': (-79.51796363, 43.63450648)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-103,2868,GO-20189022870,THEFT UNDER - BICYCLE,2018-07-17,2018,July,Tuesday,17,198,10,2018-07-18,2018,July,Wednesday,18,199,10,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,OT,CROSSTRAIL 2018,MT,21,RED,700.0,STOLEN,102,"{'type': 'Point', 'coordinates': (-79.53702637, 43.63768607)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-104,14484,GO-20199000038,THEFT UNDER,2019-01-01,2019,January,Tuesday,1,1,15,2019-01-01,2019,January,Tuesday,1,1,16,D22,Toronto,18,New Toronto (18),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,LUCKY EVO,SC,1,,500.0,STOLEN,1867,"{'type': 'Point', 'coordinates': (-79.50800853, 43.59575653)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-105,3078,GO-20181434493,THEFT FROM MOTOR VEHICLE UNDER,2018-08-03,2018,August,Friday,3,215,19,2018-08-05,2018,August,Sunday,5,217,9,D22,Toronto,14,Islington-City Centre West (14),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SCHWINN,BIGCITY,MT,0,,,RECOVERED,103,"{'type': 'Point', 'coordinates': (-79.53031231, 43.64699274)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-106,3079,GO-20181434493,THEFT FROM MOTOR VEHICLE UNDER,2018-08-03,2018,August,Friday,3,215,19,2018-08-05,2018,August,Sunday,5,217,9,D22,Toronto,14,Islington-City Centre West (14),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,BRUT4.0 HARDTAL,MT,0,RED,499.0,STOLEN,104,"{'type': 'Point', 'coordinates': (-79.53031231, 43.64699274)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-107,3202,GO-20189026435,THEFT UNDER - BICYCLE,2018-08-12,2018,August,Sunday,12,224,22,2018-08-14,2018,August,Tuesday,14,226,22,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,KO,HEI HEI,MT,18,RED,2500.0,STOLEN,105,"{'type': 'Point', 'coordinates': (-79.53702637, 43.63768607)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-108,3291,GO-20189027513,THEFT UNDER - BICYCLE,2018-08-14,2018,August,Tuesday,14,226,13,2018-08-22,2018,August,Wednesday,22,234,19,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,,RG,20,BLK,500.0,STOLEN,106,"{'type': 'Point', 'coordinates': (-79.55467522, 43.6328036)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-109,3975,GO-20192459,B&E,2019-01-01,2019,January,Tuesday,1,1,7,2019-01-01,2019,January,Tuesday,1,1,11,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,,MT,12,BLK,400.0,STOLEN,107,"{'type': 'Point', 'coordinates': (-79.51790311, 43.62542538)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-110,4096,GO-20199008694,THEFT UNDER - BICYCLE,2019-03-18,2019,March,Monday,18,77,0,2019-03-18,2019,March,Monday,18,77,15,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,DSB,RG,21,BLK,300.0,STOLEN,108,"{'type': 'Point', 'coordinates': (-79.53616293, 43.64370732)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-111,4267,GO-2019866414,THEFT UNDER - BICYCLE,2019-04-28,2019,April,Sunday,28,118,12,2019-05-12,2019,May,Sunday,12,132,23,D22,Toronto,14,Islington-City Centre West (14),"Private Property Structure (Pool, Shed, Detached Garage)",Other,KONA\,,MT,12,BLU,1200.0,STOLEN,109,"{'type': 'Point', 'coordinates': (-79.53280588, 43.64315759)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-112,4698,GO-20191252812,THEFT UNDER,2019-06-28,2019,June,Friday,28,179,11,2019-07-08,2019,July,Monday,8,189,11,D22,Toronto,14,Islington-City Centre West (14),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,RC,10,,300.0,STOLEN,110,"{'type': 'Point', 'coordinates': (-79.52226161, 43.64492672)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-113,4699,GO-20191252812,THEFT UNDER,2019-06-28,2019,June,Friday,28,179,11,2019-07-08,2019,July,Monday,8,189,11,D22,Toronto,14,Islington-City Centre West (14),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,MT,21,,60.0,STOLEN,111,"{'type': 'Point', 'coordinates': (-79.52226161, 43.64492672)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-114,4767,GO-20199022221,THEFT UNDER,2019-05-15,2019,May,Wednesday,15,135,20,2019-07-14,2019,July,Sunday,14,195,20,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,OT,2018 SCOTT METR,OT,27,OTH,1000.0,STOLEN,112,"{'type': 'Point', 'coordinates': (-79.53702637, 43.63768607)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-115,4782,GO-20199022476,THEFT UNDER,2019-07-15,2019,July,Monday,15,196,8,2019-07-16,2019,July,Tuesday,16,197,9,D22,Toronto,14,Islington-City Centre West (14),Go Station,Transit,GI,,RG,6,BLK,200.0,STOLEN,113,"{'type': 'Point', 'coordinates': (-79.53314456, 43.63672861)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-116,4840,GO-20199023286,THEFT UNDER,2019-07-19,2019,July,Friday,19,200,12,2019-07-22,2019,July,Monday,22,203,18,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,GT,AGRESSOR,MT,26,BLU,497.0,STOLEN,114,"{'type': 'Point', 'coordinates': (-79.51792685000001, 43.62289139)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-117,4921,GO-20199024324,THEFT UNDER,2019-07-29,2019,July,Monday,29,210,20,2019-07-29,2019,July,Monday,29,210,22,D22,Toronto,14,Islington-City Centre West (14),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,MOUNTAIN BIKE,MT,24,SIL,2500.0,STOLEN,115,"{'type': 'Point', 'coordinates': (-79.54617755, 43.64944976)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-118,5082,GO-20199026357,THEFT UNDER,2019-08-15,2019,August,Thursday,15,227,11,2019-08-15,2019,August,Thursday,15,227,16,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KH,SPORT,MT,7,BLK,0.0,STOLEN,116,"{'type': 'Point', 'coordinates': (-79.55467522, 43.6328036)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-119,5131,GO-20191600633,THEFT OF EBIKE UNDER $5000,2019-08-05,2019,August,Monday,5,217,17,2019-08-22,2019,August,Thursday,22,234,15,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,EMMO,,EL,1,RED,3000.0,STOLEN,117,"{'type': 'Point', 'coordinates': (-79.55467522, 43.6328036)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-120,5153,GO-20191622306,B&E,2019-08-20,2019,August,Tuesday,20,232,18,2019-08-25,2019,August,Sunday,25,237,16,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GARY FISHER,BIG SUR,MT,21,BLKWHI,1200.0,STOLEN,118,"{'type': 'Point', 'coordinates': (-79.52340177000002, 43.64465036)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-121,5280,GO-20199029329,THEFT UNDER,2019-09-08,2019,September,Sunday,8,251,12,2019-09-09,2019,September,Monday,9,252,15,D22,Toronto,14,Islington-City Centre West (14),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MA,,RG,27,GRY,500.0,STOLEN,119,"{'type': 'Point', 'coordinates': (-79.53896187, 43.63736976)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-122,5485,GO-20191939912,THEFT UNDER,2019-10-02,2019,October,Wednesday,2,275,19,2019-10-08,2019,October,Tuesday,8,281,10,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GRAVITY BLADE,,SC,1,BLK,800.0,STOLEN,120,"{'type': 'Point', 'coordinates': (-79.55686589, 43.61012637)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-123,5759,GO-20192374992,THEFT UNDER,2019-12-09,2019,December,Monday,9,343,15,2019-12-09,2019,December,Monday,9,343,18,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,RALEIGH,,RG,7,BLU,600.0,STOLEN,121,"{'type': 'Point', 'coordinates': (-79.53031231, 43.64699274)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-124,5817,GO-20209000950,THEFT UNDER,2020-01-08,2020,January,Wednesday,8,8,18,2020-01-09,2020,January,Thursday,9,9,16,D22,Toronto,14,Islington-City Centre West (14),Unknown,Other,UK,HOVERBOARD,OT,25,BLK,900.0,STOLEN,122,"{'type': 'Point', 'coordinates': (-79.55467522, 43.6328036)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-125,6259,GO-20209014046,THEFT UNDER,2020-05-27,2020,May,Wednesday,27,148,15,2020-05-27,2020,May,Wednesday,27,148,15,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,RM,INSTINCT ALLOY,MT,12,GRN,4299.0,STOLEN,123,"{'type': 'Point', 'coordinates': (-79.53191599, 43.64524669)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-126,6260,GO-2020978470,THEFT UNDER - BICYCLE,2020-05-24,2020,May,Sunday,24,145,0,2020-05-27,2020,May,Wednesday,27,148,16,D22,Toronto,14,Islington-City Centre West (14),"Private Property Structure (Pool, Shed, Detached Garage)",Other,JAMIS,UNK,MT,0,WHI,1500.0,STOLEN,124,"{'type': 'Point', 'coordinates': (-79.54773566, 43.63903017)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-127,6410,GO-20201103276,THEFT UNDER - BICYCLE,2020-06-15,2020,June,Monday,15,167,2,2020-06-15,2020,June,Monday,15,167,21,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,,RG,21,BLU,300.0,STOLEN,125,"{'type': 'Point', 'coordinates': (-79.54359674, 43.63765714)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-128,6709,GO-20209018309,THEFT UNDER,2020-07-17,2020,July,Friday,17,199,0,2020-07-23,2020,July,Thursday,23,205,21,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,SU,,RG,15,RED,250.0,STOLEN,127,"{'type': 'Point', 'coordinates': (-79.55686589, 43.61012637)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-129,6712,GO-20209018329,THEFT UNDER,2020-07-23,2020,July,Thursday,23,205,0,2020-07-23,2020,July,Thursday,23,205,16,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RE,15,BLU,400.0,STOLEN,128,"{'type': 'Point', 'coordinates': (-79.51717476, 43.62420954)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-130,6732,GO-20209018480,THEFT UNDER,2020-07-23,2020,July,Thursday,23,205,1,2020-07-25,2020,July,Saturday,25,207,1,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,27,BLK,300.0,STOLEN,129,"{'type': 'Point', 'coordinates': (-79.55766102, 43.64148524)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-131,7238,GO-20201734422,THEFT UNDER - BICYCLE,2020-09-12,2020,September,Saturday,12,256,12,2020-09-13,2020,September,Sunday,13,257,13,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,MT,7,,500.0,STOLEN,130,"{'type': 'Point', 'coordinates': (-79.54542916, 43.62137689)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-132,7255,GO-20209023364,THEFT UNDER,2020-09-15,2020,September,Tuesday,15,259,15,2020-09-15,2020,September,Tuesday,15,259,17,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,21,GRN,200.0,STOLEN,131,"{'type': 'Point', 'coordinates': (-79.52198822, 43.6220213)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-133,7434,GO-20209025974,THEFT UNDER,2020-10-10,2020,October,Saturday,10,284,4,2020-10-11,2020,October,Sunday,11,285,10,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,SU,1800,MT,18,BLK,123.0,STOLEN,132,"{'type': 'Point', 'coordinates': (-79.54132462, 43.63473674)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-134,7457,GO-20209026287,THEFT UNDER,2020-10-09,2020,October,Friday,9,283,5,2020-10-13,2020,October,Tuesday,13,287,15,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,SU,NITROUS,MT,21,BLK,260.0,STOLEN,133,"{'type': 'Point', 'coordinates': (-79.52505483, 43.64838422)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-135,7574,GO-20202058705,THEFT UNDER - BICYCLE,2020-10-29,2020,October,Thursday,29,303,22,2020-10-30,2020,October,Friday,30,304,11,D22,Toronto,14,Islington-City Centre West (14),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,SEEK 2 HYBRID,OT,21,GRY,,STOLEN,134,"{'type': 'Point', 'coordinates': (-79.54806028, 43.64316716)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-136,7600,GO-20209028892,THEFT UNDER - BICYCLE,2020-09-19,2020,September,Saturday,19,263,0,2020-11-06,2020,November,Friday,6,311,19,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,CC,,RG,21,LGR,600.0,STOLEN,135,"{'type': 'Point', 'coordinates': (-79.53191599, 43.64524669)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-137,7805,GO-20149002543,THEFT UNDER,2014-03-31,2014,March,Monday,31,90,10,2014-04-02,2014,April,Wednesday,2,92,19,D22,Toronto,14,Islington-City Centre West (14),Ttc Subway Station,Transit,GT,4.0 KARAKORAM,MT,27,BLK,600.0,STOLEN,136,"{'type': 'Point', 'coordinates': (-79.53376337, 43.63782147)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-138,7961,GO-20142128571,THEFT UNDER,2014-05-21,2014,May,Wednesday,21,141,17,2014-05-22,2014,May,Thursday,22,142,11,D22,Toronto,14,Islington-City Centre West (14),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,SIRRUS SPORT,RG,24,WHI,703.0,STOLEN,137,"{'type': 'Point', 'coordinates': (-79.56081207, 43.6392073)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-139,7962,GO-20142128571,THEFT UNDER,2014-05-21,2014,May,Wednesday,21,141,17,2014-05-22,2014,May,Thursday,22,142,11,D22,Toronto,14,Islington-City Centre West (14),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPECIALIZED,VITA,RG,24,DBL,589.0,STOLEN,138,"{'type': 'Point', 'coordinates': (-79.56081207, 43.6392073)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-140,8295,GO-20142445244,B&E,2014-07-06,2014,July,Sunday,6,187,20,2014-07-06,2014,July,Sunday,6,187,23,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,MOUNTAIN,MT,18,ONG,160.0,STOLEN,139,"{'type': 'Point', 'coordinates': (-79.56423661, 43.65494591)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-141,8400,GO-20149004925,THEFT UNDER,2014-07-10,2014,July,Thursday,10,191,22,2014-07-12,2014,July,Saturday,12,193,15,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,SCHWINN DELMAR,RG,1,DBL,300.0,STOLEN,140,"{'type': 'Point', 'coordinates': (-79.55214194, 43.63976565)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-142,8552,GO-20149005474,THEFT UNDER,2014-07-30,2014,July,Wednesday,30,211,8,2014-07-30,2014,July,Wednesday,30,211,14,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,KARAKORAM ELITE,MT,24,BLK,1129.0,STOLEN,141,"{'type': 'Point', 'coordinates': (-79.54723701, 43.64136789)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-143,14339,GO-20209029548,THEFT UNDER,2020-11-13,2020,November,Friday,13,318,14,2020-11-13,2020,November,Friday,13,318,19,D22,Toronto,14,Islington-City Centre West (14),Bar / Restaurant,Commercial,GT,GT AGGRESSOR CO,MT,24,BLU,500.0,STOLEN,172,"{'type': 'Point', 'coordinates': (-79.56049947, 43.60910823)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-144,8553,GO-20149005474,THEFT UNDER,2014-07-30,2014,July,Wednesday,30,211,8,2014-07-30,2014,July,Wednesday,30,211,14,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,,MT,24,GRN,790.0,STOLEN,142,"{'type': 'Point', 'coordinates': (-79.54723701, 43.64136789)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-145,8554,GO-20149005474,THEFT UNDER,2014-07-30,2014,July,Wednesday,30,211,8,2014-07-30,2014,July,Wednesday,30,211,14,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,RINCON,MT,24,WHI,960.0,STOLEN,143,"{'type': 'Point', 'coordinates': (-79.54723701, 43.64136789)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-146,8602,GO-20142656262,THEFT UNDER,2014-08-03,2014,August,Sunday,3,215,14,2014-08-07,2014,August,Thursday,7,219,19,D22,Toronto,14,Islington-City Centre West (14),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,YUKON,MT,1,GLD,500.0,STOLEN,144,"{'type': 'Point', 'coordinates': (-79.55866947, 43.64407064)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-147,8781,GO-20149006462,THEFT UNDER,2014-08-31,2014,August,Sunday,31,243,12,2014-09-01,2014,September,Monday,1,244,19,D22,Toronto,14,Islington-City Centre West (14),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,3,MT,21,BLK,299.0,STOLEN,145,"{'type': 'Point', 'coordinates': (-79.52200305, 43.6459276)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-148,9229,GO-20143490141,THEFT UNDER,2014-12-12,2014,December,Friday,12,346,21,2014-12-15,2014,December,Monday,15,349,13,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,EMMO,,OT,0,,400.0,STOLEN,146,"{'type': 'Point', 'coordinates': (-79.52559755, 43.64419046)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-149,9327,GO-2015451825,THEFT UNDER,2015-03-12,2015,March,Thursday,12,71,10,2015-03-17,2015,March,Tuesday,17,76,15,D22,Toronto,14,Islington-City Centre West (14),Ttc Subway Station,Transit,UNKNOWN MAKE,,RG,8,GRN,100.0,STOLEN,147,"{'type': 'Point', 'coordinates': (-79.53376337, 43.63782147)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-150,9391,GO-20159001856,THEFT UNDER,2015-04-10,2015,April,Friday,10,100,14,2015-04-10,2015,April,Friday,10,100,22,D22,Toronto,14,Islington-City Centre West (14),Go Station,Transit,RA,EVA 29 SPORT,MT,23,BLK,850.0,STOLEN,148,"{'type': 'Point', 'coordinates': (-79.53376337, 43.63782147)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-151,9633,GO-20159003008,THEFT UNDER,2015-05-12,2015,May,Tuesday,12,132,9,2015-05-21,2015,May,Thursday,21,141,20,D22,Toronto,14,Islington-City Centre West (14),Ttc Subway Station,Transit,SC,,MT,8,BLK,,STOLEN,149,"{'type': 'Point', 'coordinates': (-79.52200305, 43.6459276)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-152,9694,GO-2015897103,THEFT UNDER,2015-05-28,2015,May,Thursday,28,148,13,2015-05-29,2015,May,Friday,29,149,11,D22,Toronto,14,Islington-City Centre West (14),Schools During Un-Supervised Activity,Educational,NAKAMURA,SOALONO,RG,10,BLK,600.0,STOLEN,150,"{'type': 'Point', 'coordinates': (-79.51678734, 43.62854103)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-153,10053,GO-20151236221,THEFT UNDER,2015-07-19,2015,July,Sunday,19,200,3,2015-07-20,2015,July,Monday,20,201,16,D22,Toronto,14,Islington-City Centre West (14),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,MENS,TO,18,,50.0,STOLEN,151,"{'type': 'Point', 'coordinates': (-79.54745695, 43.63235665)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-154,10082,GO-20159004878,THEFT FROM MOTOR VEHICLE UNDER,2015-07-23,2015,July,Thursday,23,204,0,2015-07-23,2015,July,Thursday,23,204,0,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,UK,,SC,32,YEL,500.0,STOLEN,152,"{'type': 'Point', 'coordinates': (-79.53760351, 43.63897842)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-155,10271,GO-20159005848,THEFT UNDER,2015-08-15,2015,August,Saturday,15,227,14,2015-08-15,2015,August,Saturday,15,227,16,D22,Toronto,14,Islington-City Centre West (14),"Dealership (Car, Motorcycle, Marine, Trailer, Etc.)",Commercial,GF,SILVER SERIES,MT,24,GRY,1000.0,STOLEN,153,"{'type': 'Point', 'coordinates': (-79.54624934, 43.61642017)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-156,10579,GO-20159008022,THEFT UNDER,2015-09-30,2015,September,Wednesday,30,273,9,2015-10-01,2015,October,Thursday,1,274,22,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,,MT,9,GRN,670.0,STOLEN,154,"{'type': 'Point', 'coordinates': (-79.56081207, 43.6392073)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-157,10748,GO-20151926239,THEFT UNDER,2015-11-08,2015,November,Sunday,8,312,19,2015-11-09,2015,November,Monday,9,313,14,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,OTHER,EBIKE,EL,0,YEL,540.0,STOLEN,155,"{'type': 'Point', 'coordinates': (-79.5311665, 43.64606201)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-158,10940,GO-20169000724,THEFT UNDER,2016-01-09,2016,January,Saturday,9,9,12,2016-01-21,2016,January,Thursday,21,21,14,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,MA,ROCKY RIDGE,MT,15,GRY,1450.0,STOLEN,156,"{'type': 'Point', 'coordinates': (-79.56023729, 43.60941968)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-159,15008,GO-20161235302,THEFT UNDER,2016-03-30,2016,March,Wednesday,30,90,18,2016-07-14,2016,July,Thursday,14,196,14,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,CROSS TRAIL,OT,21,BLK,1000.0,STOLEN,187,"{'type': 'Point', 'coordinates': (-79.52198822, 43.6220213)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-160,10948,GO-2016148325,THEFT UNDER,2016-01-19,2016,January,Tuesday,19,19,0,2016-01-25,2016,January,Monday,25,25,17,D22,Toronto,14,Islington-City Centre West (14),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,FELT,EDICT NINE60,MT,20,BLKRED,2200.0,RECOVERED,157,"{'type': 'Point', 'coordinates': (-79.53702637, 43.63768607)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-161,10949,GO-2016148325,THEFT UNDER,2016-01-19,2016,January,Tuesday,19,19,0,2016-01-25,2016,January,Monday,25,25,17,D22,Toronto,14,Islington-City Centre West (14),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,MT,18,GRY,300.0,STOLEN,158,"{'type': 'Point', 'coordinates': (-79.53702637, 43.63768607)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-162,10953,GO-2016154315,THEFT UNDER,2016-01-22,2016,January,Friday,22,22,17,2016-01-26,2016,January,Tuesday,26,26,17,D22,Toronto,14,Islington-City Centre West (14),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,DOMANE 4.5,RC,10,BLKRED,3000.0,STOLEN,159,"{'type': 'Point', 'coordinates': (-79.53292993, 43.64413876)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-163,11466,GO-20169005444,THEFT UNDER,2016-06-07,2016,June,Tuesday,7,159,9,2016-06-07,2016,June,Tuesday,7,159,20,D22,Toronto,14,Islington-City Centre West (14),Ttc Subway Station,Transit,OT,MARUISHI,OT,3,BGE,500.0,STOLEN,160,"{'type': 'Point', 'coordinates': (-79.53498946, 43.641649890000004)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-164,11897,GO-20161305853,THEFT UNDER,2016-07-25,2016,July,Monday,25,207,0,2016-07-25,2016,July,Monday,25,207,13,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,ROAM 1,OT,21,WHI,1000.0,STOLEN,161,"{'type': 'Point', 'coordinates': (-79.55407752, 43.65006376)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-165,11916,GO-20169007772,THEFT UNDER - BICYCLE,2016-07-25,2016,July,Monday,25,207,12,2016-07-26,2016,July,Tuesday,26,208,13,D22,Toronto,14,Islington-City Centre West (14),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SC,,MT,7,BLK,350.0,STOLEN,162,"{'type': 'Point', 'coordinates': (-79.55467522, 43.6328036)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-166,11972,GO-20161305853,THEFT UNDER,2016-07-25,2016,July,Monday,25,207,0,2016-07-25,2016,July,Monday,25,207,13,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,TARANTULA,MT,18,PLE,,RECOVERED,163,"{'type': 'Point', 'coordinates': (-79.55407752, 43.65006376)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-167,12400,GO-20169010731,THEFT UNDER - BICYCLE,2016-09-19,2016,September,Monday,19,263,17,2016-09-19,2016,September,Monday,19,263,17,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,MA,,RG,12,SIL,220.0,STOLEN,164,"{'type': 'Point', 'coordinates': (-79.53292993, 43.64413876)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-168,12599,GO-20161815549,THEFT OF EBIKE UNDER $5000,2016-10-06,2016,October,Thursday,6,280,8,2016-10-12,2016,October,Wednesday,12,286,15,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,EMMO,,EL,0,BLK,1500.0,STOLEN,165,"{'type': 'Point', 'coordinates': (-79.53292993, 43.64413876)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-169,12600,GO-20161814342,THEFT OF EBIKE UNDER $5000,2016-10-11,2016,October,Tuesday,11,285,16,2016-10-12,2016,October,Wednesday,12,286,12,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,EL,1,BRZ,1500.0,STOLEN,166,"{'type': 'Point', 'coordinates': (-79.52340177000002, 43.64465036)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-170,12705,GO-20161933702,THEFT UNDER - BICYCLE,2016-10-28,2016,October,Friday,28,302,7,2016-10-31,2016,October,Monday,31,305,8,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,GI,REVEL,MT,21,,700.0,STOLEN,167,"{'type': 'Point', 'coordinates': (-79.53280588, 43.64315759)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-171,12762,GO-20169013400,THEFT UNDER,2016-11-14,2016,November,Monday,14,319,16,2016-11-14,2016,November,Monday,14,319,17,D22,Toronto,14,Islington-City Centre West (14),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KO,BLAST,MT,21,BLU,800.0,STOLEN,168,"{'type': 'Point', 'coordinates': (-79.55886242, 43.6271621)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-172,14273,GO-20201143816,THEFT UNDER - BICYCLE,2020-06-21,2020,June,Sunday,21,173,17,2020-06-21,2020,June,Sunday,21,173,18,D22,Toronto,14,Islington-City Centre West (14),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,DIADORA,,MT,6,GRY,330.0,STOLEN,169,"{'type': 'Point', 'coordinates': (-79.53031231, 43.64699274)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-173,14287,GO-20209018480,THEFT UNDER,2020-07-23,2020,July,Thursday,23,205,1,2020-07-25,2020,July,Saturday,25,207,1,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,27,BLK,300.0,STOLEN,170,"{'type': 'Point', 'coordinates': (-79.55766102, 43.64148524)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-174,14312,GO-20209022478,THEFT UNDER,2020-09-05,2020,September,Saturday,5,249,22,2020-09-06,2020,September,Sunday,6,250,17,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,CA,TRAIL SL 29 2,MT,10,BLU,1500.0,STOLEN,171,"{'type': 'Point', 'coordinates': (-79.55766102, 43.64148524)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-175,5168,GO-20199027726,THEFT UNDER,2019-08-23,2019,August,Friday,23,235,20,2019-08-26,2019,August,Monday,26,238,13,D54,Toronto,44,Flemingdon Park (44),Unknown,Other,HF,,BM,1,BLK,300.0,STOLEN,2159,"{'type': 'Point', 'coordinates': (-79.33435458, 43.70999672)}",Flemingdon Park,44,NIA,21933,22168,-0.011000000000000001,7964,7830,9026,2.43,8380,3705,260,3860,405,50,90,0.0059665871121718375
-176,14469,GO-20189034652,THEFT UNDER - BICYCLE,2018-10-18,2018,October,Thursday,18,291,7,2018-10-18,2018,October,Thursday,18,291,20,D22,Toronto,14,Islington-City Centre West (14),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ESCAPE 3,OT,21,BLK,520.0,STOLEN,173,"{'type': 'Point', 'coordinates': (-79.52340177000002, 43.64465036)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-177,14545,GO-20199022500,THEFT UNDER,2019-07-15,2019,July,Monday,15,196,0,2019-07-16,2019,July,Tuesday,16,197,12,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,GT,,MT,24,BLU,2200.0,STOLEN,174,"{'type': 'Point', 'coordinates': (-79.55686589, 43.61012637)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-178,14547,GO-20199023830,THEFT UNDER,2019-07-13,2019,July,Saturday,13,194,18,2019-07-26,2019,July,Friday,26,207,8,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,OT,COMPASS TRAIL,RG,20,BLK,500.0,STOLEN,175,"{'type': 'Point', 'coordinates': (-79.56023729, 43.60941968)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-179,14555,GO-20191470441,THEFT UNDER - BICYCLE,2019-08-03,2019,August,Saturday,3,215,13,2019-08-04,2019,August,Sunday,4,216,13,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,FX 4,OT,0,,1200.0,STOLEN,176,"{'type': 'Point', 'coordinates': (-79.5211855, 43.63937853)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-180,14605,GO-20199039813,THEFT UNDER,2019-11-28,2019,November,Thursday,28,332,20,2019-12-04,2019,December,Wednesday,4,338,17,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE JR,RG,40,BLK,536.0,STOLEN,177,"{'type': 'Point', 'coordinates': (-79.53702637, 43.63768607)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-181,14637,GO-2020924705,THEFT UNDER - BICYCLE,2020-05-18,2020,May,Monday,18,139,12,2020-05-19,2020,May,Tuesday,19,140,13,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,HYPER URBAN,MT,8,BLK,250.0,STOLEN,178,"{'type': 'Point', 'coordinates': (-79.55128245000002, 43.63527936)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-182,14684,GO-20171343664,THEFT UNDER - BICYCLE,2017-07-25,2017,July,Tuesday,25,206,18,2017-07-26,2017,July,Wednesday,26,207,17,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN,UNKNOWN,MT,21,BLU,60.0,STOLEN,179,"{'type': 'Point', 'coordinates': (-79.52559755, 43.64419046)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-183,17540,GO-20199004240,THEFT UNDER - BICYCLE,2019-01-31,2019,January,Thursday,31,31,9,2019-02-01,2019,February,Friday,1,32,22,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,RM,,MT,14,TRQ,1600.0,STOLEN,196,"{'type': 'Point', 'coordinates': (-79.56023729, 43.60941968)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-184,14698,GO-20179013123,THEFT UNDER - BICYCLE,2017-07-07,2017,July,Friday,7,188,11,2017-08-23,2017,August,Wednesday,23,235,11,D22,Toronto,14,Islington-City Centre West (14),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,DUTCHI-1,RG,1,BLK,300.0,STOLEN,180,"{'type': 'Point', 'coordinates': (-79.53280588, 43.64315759)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-185,14708,GO-20179014046,THEFT UNDER,2017-09-01,2017,September,Friday,1,244,10,2017-09-05,2017,September,Tuesday,5,248,15,D22,Toronto,14,Islington-City Centre West (14),Ttc Subway Station,Transit,RA,,RG,21,BLU,300.0,STOLEN,181,"{'type': 'Point', 'coordinates': (-79.53376337, 43.63782147)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-186,14954,GO-20159003499,THEFT UNDER,2015-06-10,2015,June,Wednesday,10,161,1,2015-06-10,2015,June,Wednesday,10,161,12,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,21,GRN,0.0,STOLEN,182,"{'type': 'Point', 'coordinates': (-79.53766274, 43.65133224)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-187,14957,GO-2015994686,THEFT UNDER - SHOPLIFTING,2015-06-13,2015,June,Saturday,13,164,20,2015-06-13,2015,June,Saturday,13,164,21,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,GRADE ALLOYSORA,OT,18,BLK,999.0,STOLEN,183,"{'type': 'Point', 'coordinates': (-79.55692267, 43.61610751)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-188,14958,GO-2015994686,THEFT UNDER - SHOPLIFTING,2015-06-13,2015,June,Saturday,13,164,20,2015-06-13,2015,June,Saturday,13,164,21,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,TRANSEO 4.0,MT,18,WHI,550.0,STOLEN,184,"{'type': 'Point', 'coordinates': (-79.55692267, 43.61610751)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-189,14959,GO-20151066846,THEFT UNDER,2015-06-24,2015,June,Wednesday,24,175,22,2015-06-24,2015,June,Wednesday,24,175,22,D22,Toronto,14,Islington-City Centre West (14),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,UNKNOWN,MT,18,SIL,400.0,STOLEN,185,"{'type': 'Point', 'coordinates': (-79.52871289, 43.64877261)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-190,14975,GO-20151609910,PROPERTY - FOUND,2015-09-17,2015,September,Thursday,17,260,17,2015-09-17,2015,September,Thursday,17,260,17,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MIELE,UMBIA 200,MT,99,REDWHI,,UNKNOWN,186,"{'type': 'Point', 'coordinates': (-79.55231787, 43.64018383)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-191,9876,GO-20151064425,THEFT UNDER,2015-06-24,2015,June,Wednesday,24,175,15,2015-06-24,2015,June,Wednesday,24,175,15,D22,Toronto,15,Kingsway South (15),"Open Areas (Lakes, Parks, Rivers)",Outside,GIANT,,MT,0,BLKWHI,300.0,STOLEN,495,"{'type': 'Point', 'coordinates': (-79.51042078, 43.66063143)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-192,15016,GO-20161421769,THEFT UNDER - BICYCLE,2016-08-12,2016,August,Friday,12,225,11,2016-08-12,2016,August,Friday,12,225,11,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,,MT,0,WHI,400.0,STOLEN,188,"{'type': 'Point', 'coordinates': (-79.56423661, 43.65494591)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-193,15017,GO-20161421769,THEFT UNDER - BICYCLE,2016-08-12,2016,August,Friday,12,225,11,2016-08-12,2016,August,Friday,12,225,11,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,,RG,0,PLE,300.0,STOLEN,189,"{'type': 'Point', 'coordinates': (-79.56423661, 43.65494591)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-194,15049,GO-20179007102,THEFT UNDER,2017-05-28,2017,May,Sunday,28,148,10,2017-05-28,2017,May,Sunday,28,148,12,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,,RG,21,GLD,350.0,STOLEN,190,"{'type': 'Point', 'coordinates': (-79.55717805, 43.63833472)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-195,17324,GO-20209013006,THEFT UNDER,2020-05-08,2020,May,Friday,8,129,13,2020-05-12,2020,May,Tuesday,12,133,13,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,NINEBOT S SELF,EL,10,BLK,649.0,STOLEN,191,"{'type': 'Point', 'coordinates': (-79.54674133, 43.64716378)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-196,17331,GO-20209014349,THEFT UNDER,2020-05-30,2020,May,Saturday,30,151,9,2020-06-01,2020,June,Monday,1,153,14,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,UK,DIVERGE A1 SPOR,RC,18,GRY,2000.0,STOLEN,192,"{'type': 'Point', 'coordinates': (-79.53280588, 43.64315759)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-197,17391,GO-20209023206,THEFT UNDER,2020-09-05,2020,September,Saturday,5,249,14,2020-09-14,2020,September,Monday,14,258,14,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,OT,1,,0.0,STOLEN,193,"{'type': 'Point', 'coordinates': (-79.54542916, 43.62137689)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-198,17417,GO-20202399947,B&E,2020-12-08,2020,December,Tuesday,8,343,12,2020-12-21,2020,December,Monday,21,356,17,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,OTHER,LIV,TO,24,WHI,950.0,STOLEN,194,"{'type': 'Point', 'coordinates': (-79.53280588, 43.64315759)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-199,17418,GO-20202399947,B&E,2020-12-08,2020,December,Tuesday,8,343,12,2020-12-21,2020,December,Monday,21,356,17,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,OTHER,RIDLEY,TO,24,BLKRED,1800.0,STOLEN,195,"{'type': 'Point', 'coordinates': (-79.53280588, 43.64315759)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-200,17546,GO-20199008890,THEFT UNDER - BICYCLE,2019-03-16,2019,March,Saturday,16,75,20,2019-03-19,2019,March,Tuesday,19,78,18,D22,Toronto,14,Islington-City Centre West (14),Convenience Stores,Commercial,UK,SHIMANO EQ,MT,15,BLK,150.0,STOLEN,197,"{'type': 'Point', 'coordinates': (-79.55866947, 43.64407064)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-201,17705,GO-2020696148,THEFT FROM MOTOR VEHICLE UNDER,2020-04-08,2020,April,Wednesday,8,99,19,2020-04-10,2020,April,Friday,10,101,13,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,,OT,0,,,STOLEN,198,"{'type': 'Point', 'coordinates': (-79.53850166, 43.64909685)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-202,17783,GO-20189001109,THEFT UNDER - BICYCLE,2017-08-19,2017,August,Saturday,19,231,7,2018-01-13,2018,January,Saturday,13,13,14,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,,RG,21,BLK,1199.0,STOLEN,199,"{'type': 'Point', 'coordinates': (-79.52733649, 43.64234006)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-203,17912,GO-20189031676,THEFT UNDER - BICYCLE,2018-09-17,2018,September,Monday,17,260,16,2018-09-24,2018,September,Monday,24,267,8,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,GI,AVAIL,RG,16,,0.0,STOLEN,200,"{'type': 'Point', 'coordinates': (-79.53280588, 43.64315759)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-204,24372,GO-20189027119,THEFT UNDER - BICYCLE,2018-08-20,2018,August,Monday,20,232,7,2018-08-20,2018,August,Monday,20,232,13,D22,Toronto,16,Stonegate-Queensway (16),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,FX 2,MT,24,BLK,961.0,STOLEN,201,"{'type': 'Point', 'coordinates': (-79.51796363, 43.63450648)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-205,24448,GO-20159002410,THEFT UNDER,2015-05-01,2015,May,Friday,1,121,18,2015-05-03,2015,May,Sunday,3,123,14,D22,Toronto,16,Stonegate-Queensway (16),Schools During Un-Supervised Activity,Educational,UK,"2013, ATOM",MT,7,BLK,300.0,STOLEN,202,"{'type': 'Point', 'coordinates': (-79.50690223, 43.64274247)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-206,24473,GO-20151352227,THEFT UNDER,2015-07-23,2015,July,Thursday,23,204,18,2015-08-07,2015,August,Friday,7,219,13,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BIANCHI,,MT,10,BRN,200.0,STOLEN,203,"{'type': 'Point', 'coordinates': (-79.51355275, 43.64687723000001)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-207,9877,GO-20151064425,THEFT UNDER,2015-06-24,2015,June,Wednesday,24,175,15,2015-06-24,2015,June,Wednesday,24,175,15,D22,Toronto,15,Kingsway South (15),"Open Areas (Lakes, Parks, Rivers)",Outside,UNKNOWN MAKE,,OT,0,RED,300.0,STOLEN,496,"{'type': 'Point', 'coordinates': (-79.51042078, 43.66063143)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-208,24474,GO-20151352227,THEFT UNDER,2015-07-23,2015,July,Thursday,23,204,18,2015-08-07,2015,August,Friday,7,219,13,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,AQUILA,,MT,21,RED,400.0,STOLEN,204,"{'type': 'Point', 'coordinates': (-79.51355275, 43.64687723000001)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-209,24514,GO-20169003580,THEFT UNDER - BICYCLE,2016-04-19,2016,April,Tuesday,19,110,8,2016-04-19,2016,April,Tuesday,19,110,17,D22,Toronto,16,Stonegate-Queensway (16),Schools During Supervised Activity,Educational,GI,ESCAPE 2 CITY,RC,35,GRY,700.0,STOLEN,205,"{'type': 'Point', 'coordinates': (-79.50577149, 43.63395715)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-210,24537,GO-20169008550,THEFT UNDER,2016-07-30,2016,July,Saturday,30,212,21,2016-08-11,2016,August,Thursday,11,224,1,D22,Toronto,16,Stonegate-Queensway (16),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,TALUS,MT,21,BLU,600.0,STOLEN,206,"{'type': 'Point', 'coordinates': (-79.51678734, 43.62854103)}",Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02
-211,35,GO-20162314031,THEFT UNDER,2016-12-27,2016,December,Tuesday,27,362,14,2016-12-31,2016,December,Saturday,31,366,15,D23,Toronto,1,West Humber-Clairville (1),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN,,SC,5,BLU,3000.0,STOLEN,207,"{'type': 'Point', 'coordinates': (-79.60342029, 43.719157890000005)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-212,8,GO-20169014571,THEFT UNDER - BICYCLE,2016-12-05,2016,December,Monday,5,340,15,2016-12-12,2016,December,Monday,12,347,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,ANTELOPE 800 SE,OT,21,BLK,0.0,STOLEN,208,"{'type': 'Point', 'coordinates': (-79.50309339, 43.61484445)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-213,12,GO-20169014607,THEFT UNDER,2016-12-13,2016,December,Tuesday,13,348,7,2016-12-13,2016,December,Tuesday,13,348,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,DEVINCI,,MT,27,LBL,1100.0,STOLEN,209,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-214,16,GO-20169014665,THEFT UNDER - BICYCLE,2016-08-05,2016,August,Friday,5,218,21,2016-12-14,2016,December,Wednesday,14,349,21,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,RC,11,BLK,4000.0,STOLEN,210,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-215,117,GO-20179002564,THEFT UNDER - BICYCLE,2017-02-27,2017,February,Monday,27,58,16,2017-02-28,2017,February,Tuesday,28,59,0,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Universities / Colleges,Educational,OT,,RG,20,TRQ,1500.0,STOLEN,211,"{'type': 'Point', 'coordinates': (-79.50489559, 43.616265)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-216,122,GO-2017377584,THEFT UNDER - BICYCLE,2017-02-27,2017,February,Monday,27,58,13,2017-03-01,2017,March,Wednesday,1,60,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,TSX SLR 2,MT,10,BLKWHI,,STOLEN,212,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-217,157,GO-2017475962,THEFT OF MOTOR VEHICLE,2015-01-07,2015,January,Wednesday,7,7,0,2017-03-17,2017,March,Friday,17,76,7,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OTHER,FORTIES 1700T4,SC,2,BLU,3041.0,STOLEN,213,"{'type': 'Point', 'coordinates': (-79.50007787, 43.61724892)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-218,393,GO-20179006353,THEFT UNDER,2017-05-03,2017,May,Wednesday,3,123,23,2017-05-15,2017,May,Monday,15,135,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,NO,AURUM,MT,11,WHI,3800.0,STOLEN,214,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-219,433,GO-2017897790,FTC PROBATION ORDER,2017-05-20,2017,May,Saturday,20,140,23,2017-05-21,2017,May,Sunday,21,141,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,AVANTI,,TO,15,WHI,3000.0,STOLEN,215,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-220,455,GO-20179006844,THEFT UNDER - BICYCLE,2017-05-18,2017,May,Thursday,18,138,17,2017-05-23,2017,May,Tuesday,23,143,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,UNO,RG,1,LGR,700.0,STOLEN,216,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-221,555,GO-20179007646,THEFT UNDER - BICYCLE,2016-09-01,2016,September,Thursday,1,245,10,2017-06-07,2017,June,Wednesday,7,158,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,24,,1500.0,STOLEN,217,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-222,731,GO-20179009066,TRAFFICKING PROPERTY OBC UNDER,2017-06-27,2017,June,Tuesday,27,178,19,2017-06-28,2017,June,Wednesday,28,179,8,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GI,ALIGHT,OT,20,BLU,600.0,RECOVERED,218,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-223,22303,GO-20189021457,THEFT UNDER,2018-07-06,2018,July,Friday,6,187,8,2018-07-06,2018,July,Friday,6,187,17,D54,Toronto,66,Danforth (66),Ttc Subway Station,Transit,CC,SLOPE,MT,21,GRY,540.0,STOLEN,5372,"{'type': 'Point', 'coordinates': (-79.33007622, 43.68284971)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829
-224,739,GO-20179009141,THEFT UNDER - BICYCLE,2017-06-28,2017,June,Wednesday,28,179,16,2017-06-29,2017,June,Thursday,29,180,0,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,2016 SPECIALIZE,RG,24,ONG,700.0,STOLEN,219,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-225,742,GO-20179009108,THEFT UNDER - BICYCLE,2017-06-24,2017,June,Saturday,24,175,19,2017-06-28,2017,June,Wednesday,28,179,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,CARVE EXPERT,MT,24,BLK,2000.0,STOLEN,220,"{'type': 'Point', 'coordinates': (-79.47864061, 43.6248261)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-226,831,GO-20171236270,THEFT UNDER,2017-07-10,2017,July,Monday,10,191,13,2017-07-10,2017,July,Monday,10,191,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,EMMO,G545A,EL,1,RED,2000.0,STOLEN,221,"{'type': 'Point', 'coordinates': (-79.49671284, 43.61223676)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-227,877,GO-20179010352,THEFT UNDER - BICYCLE,2017-07-09,2017,July,Sunday,9,190,22,2017-07-16,2017,July,Sunday,16,197,23,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GT,ROADBIKE,RC,50,BLK,800.0,STOLEN,222,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-228,1054,GO-20171415282,THEFT OVER - BICYCLE,2017-08-06,2017,August,Sunday,6,218,13,2017-08-06,2017,August,Sunday,6,218,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TREK,MADONE 5.1,RC,0,WHI,7000.0,STOLEN,223,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-229,1135,GO-20179012278,THEFT UNDER - BICYCLE,2017-08-05,2017,August,Saturday,5,217,23,2017-08-12,2017,August,Saturday,12,224,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,TR,HYBRID,OT,8,BLK,2000.0,STOLEN,224,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-230,1142,GO-20171463554,THEFT UNDER,2017-08-04,2017,August,Friday,4,216,22,2017-08-14,2017,August,Monday,14,226,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,,MT,21,YEL,120.0,STOLEN,225,"{'type': 'Point', 'coordinates': (-79.50298867, 43.61849024)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-231,1143,GO-20171463554,THEFT UNDER,2017-08-04,2017,August,Friday,4,216,22,2017-08-14,2017,August,Monday,14,226,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,,MT,21,GRN,300.0,STOLEN,226,"{'type': 'Point', 'coordinates': (-79.50298867, 43.61849024)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-232,1181,GO-20171499226,THEFT UNDER - BICYCLE,2017-08-18,2017,August,Friday,18,230,22,2017-08-19,2017,August,Saturday,19,231,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Construction Site (Warehouse, Trailer, Shed)",Commercial,MARIN OR MARINO,LARKSPUR CSI,RG,24,BLK,400.0,STOLEN,227,"{'type': 'Point', 'coordinates': (-79.48966381, 43.61800177)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-233,1182,GO-20171499226,THEFT UNDER - BICYCLE,2017-08-18,2017,August,Friday,18,230,22,2017-08-19,2017,August,Saturday,19,231,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Construction Site (Warehouse, Trailer, Shed)",Commercial,MARIN OR MARINO,TESLA,RG,24,GRY,800.0,STOLEN,228,"{'type': 'Point', 'coordinates': (-79.48966381, 43.61800177)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-234,1189,GO-20179012810,THEFT UNDER - BICYCLE,2017-08-19,2017,August,Saturday,19,231,11,2017-08-19,2017,August,Saturday,19,231,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,ST-TROPEZ,RG,16,GRY,700.0,STOLEN,229,"{'type': 'Point', 'coordinates': (-79.49099109, 43.61535546)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-235,1232,GO-20179013148,THEFT UNDER - BICYCLE,2016-08-21,2016,August,Sunday,21,234,15,2017-08-23,2017,August,Wednesday,23,235,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,UK,MASI ALARE 53 C,RC,12,BLK,900.0,STOLEN,230,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-236,1307,GO-20179014000,THEFT UNDER,2017-09-04,2017,September,Monday,4,247,16,2017-09-05,2017,September,Tuesday,5,248,10,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,TRANCE X3,MT,30,BLK,2150.0,STOLEN,231,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-237,1358,GO-20171646818,THEFT UNDER,2017-09-01,2017,September,Friday,1,244,11,2017-09-11,2017,September,Monday,11,254,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,SC,0,WHI,2800.0,STOLEN,232,"{'type': 'Point', 'coordinates': (-79.48919597, 43.61646248)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-238,1452,GO-20171700735,THEFT OVER,2017-08-25,2017,August,Friday,25,237,21,2017-09-19,2017,September,Tuesday,19,262,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,ARGON 18,KRYPTON XL,RG,21,RED,2800.0,STOLEN,233,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-239,1486,GO-20179015443,THEFT UNDER - BICYCLE,2017-09-21,2017,September,Thursday,21,264,7,2017-09-22,2017,September,Friday,22,265,9,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GI,TCR,RC,22,BLK,3188.0,STOLEN,234,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-240,1514,GO-20179015689,THEFT UNDER - BICYCLE,2017-09-23,2017,September,Saturday,23,266,12,2017-09-25,2017,September,Monday,25,268,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,700C ROAD BIKE,RC,21,PLE,300.0,STOLEN,235,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-241,1680,GO-20171887127,THEFT UNDER - BICYCLE,2017-10-18,2017,October,Wednesday,18,291,13,2017-10-18,2017,October,Wednesday,18,291,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,,RC,18,BLKRED,900.0,STOLEN,236,"{'type': 'Point', 'coordinates': (-79.5260292, 43.61079098)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-242,1687,GO-20179017564,THEFT UNDER - BICYCLE,2017-10-19,2017,October,Thursday,19,292,7,2017-10-19,2017,October,Thursday,19,292,21,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,SPEC SECTEUR,OT,18,BLK,1000.0,STOLEN,237,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-243,1702,GO-20179017564,THEFT UNDER - BICYCLE,2017-10-19,2017,October,Thursday,19,292,7,2017-10-19,2017,October,Thursday,19,292,21,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,OT,24,BLK,1000.0,STOLEN,238,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-244,1756,GO-20179018318,THEFT UNDER - BICYCLE,2017-10-25,2017,October,Wednesday,25,298,22,2017-10-26,2017,October,Thursday,26,299,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,HF,,RG,10,BLU,109.0,STOLEN,239,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-245,1807,GO-20179019090,THEFT UNDER,2017-10-29,2017,October,Sunday,29,302,18,2017-11-07,2017,November,Tuesday,7,311,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Convenience Stores,Commercial,OT,,TO,18,SIL,1300.0,STOLEN,240,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-246,1976,GO-201853134,THEFT OVER,2017-11-15,2017,November,Wednesday,15,319,8,2018-01-09,2018,January,Tuesday,9,9,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,NORCO,,OT,21,LGR,1000.0,STOLEN,241,"{'type': 'Point', 'coordinates': (-79.47400022, 43.6305708)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-247,1977,GO-201853134,THEFT OVER,2017-11-15,2017,November,Wednesday,15,319,8,2018-01-09,2018,January,Tuesday,9,9,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,GIANT,,MT,24,BLK,1800.0,STOLEN,242,"{'type': 'Point', 'coordinates': (-79.47400022, 43.6305708)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-248,2009,GO-20189002976,THEFT UNDER - BICYCLE,2018-01-27,2018,January,Saturday,27,27,20,2018-01-30,2018,January,Tuesday,30,30,0,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GI,RINCON,MT,21,BLK,800.0,STOLEN,243,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-249,2028,GO-20189004291,THEFT UNDER - BICYCLE,2017-08-11,2017,August,Friday,11,223,17,2018-02-11,2018,February,Sunday,11,42,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,MODEL FSRXC MYK,MT,25,PLE,2800.0,STOLEN,244,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-250,2062,GO-20189006627,THEFT UNDER,2018-02-16,2018,February,Friday,16,47,0,2018-03-02,2018,March,Friday,2,61,19,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,XBOW,RC,20,WHI,1500.0,STOLEN,245,"{'type': 'Point', 'coordinates': (-79.48862673, 43.61495018)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-251,2063,GO-20189006820,THEFT UNDER - BICYCLE,2018-03-05,2018,March,Monday,5,64,9,2018-03-05,2018,March,Monday,5,64,9,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Unknown,Other,CA,QUICK 7,MT,8,BLK,650.0,STOLEN,246,"{'type': 'Point', 'coordinates': (-79.48862673, 43.61495018)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-252,2067,GO-20189007045,THEFT UNDER,2018-03-02,2018,March,Friday,2,61,22,2018-03-06,2018,March,Tuesday,6,65,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GT,AGRESSOR,MT,21,LGR,600.0,STOLEN,247,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-253,2077,GO-2018482570,THEFT OVER,2018-03-12,2018,March,Monday,12,71,7,2018-03-16,2018,March,Friday,16,75,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,NORCO,,MT,12,RED,5000.0,STOLEN,248,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-254,2393,GO-20189016209,B&E,2018-05-24,2018,May,Thursday,24,144,15,2018-05-25,2018,May,Friday,25,145,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,UK,,OT,24,,0.0,STOLEN,249,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-255,2414,GO-20189016566,THEFT UNDER - BICYCLE,2018-05-24,2018,May,Thursday,24,144,4,2018-05-28,2018,May,Monday,28,148,19,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,SHIMANO 105,RC,21,LBL,1750.0,STOLEN,250,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-256,2543,GO-20189018331,THEFT UNDER - BICYCLE,2018-06-10,2018,June,Sunday,10,161,20,2018-06-12,2018,June,Tuesday,12,163,6,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,CROSS RACE PRO,RC,22,RED,2000.0,STOLEN,251,"{'type': 'Point', 'coordinates': (-79.48643252, 43.61892859)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-257,2685,GO-20181162011,B&E,2018-06-25,2018,June,Monday,25,176,21,2018-06-26,2018,June,Tuesday,26,177,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NIXON,ADAMS DAISY,MT,18,BLU,220.0,STOLEN,252,"{'type': 'Point', 'coordinates': (-79.49420384, 43.61507212)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-258,2748,GO-20189021105,THEFT UNDER - BICYCLE,2018-07-02,2018,July,Monday,2,183,12,2018-07-04,2018,July,Wednesday,4,185,7,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,HYBRID,MT,15,WHI,1800.0,STOLEN,253,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-259,2759,GO-20189021322,THEFT UNDER - BICYCLE,2018-07-02,2018,July,Monday,2,183,15,2018-07-05,2018,July,Thursday,5,186,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GT,AGGRESSOR,MT,21,GRY,500.0,STOLEN,254,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-260,2977,GO-20189024052,THEFT UNDER - BICYCLE,2018-07-17,2018,July,Tuesday,17,198,20,2018-07-26,2018,July,Thursday,26,207,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,1,BLK,600.0,STOLEN,263,"{'type': 'Point', 'coordinates': (-79.48760733, 43.62206923)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-261,2786,GO-20189021149,THEFT UNDER - BICYCLE,2018-06-30,2018,June,Saturday,30,181,15,2018-07-04,2018,July,Wednesday,4,185,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,TR,X-CALIBER 8,MT,40,GRY,2800.0,STOLEN,255,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-262,2834,GO-20189022111,THEFT UNDER - BICYCLE,2018-07-08,2018,July,Sunday,8,189,16,2018-07-11,2018,July,Wednesday,11,192,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,,OT,24,BLK,850.0,STOLEN,256,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-263,2838,GO-20189022301,THEFT UNDER - BICYCLE,2018-07-13,2018,July,Friday,13,194,13,2018-07-13,2018,July,Friday,13,194,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,CERVELO,S2 (105),RC,11,BLK,3600.0,STOLEN,257,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-264,2865,GO-20189022874,THEFT UNDER - BICYCLE,2018-07-14,2018,July,Saturday,14,195,10,2018-07-18,2018,July,Wednesday,18,199,10,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GI,,RC,30,WHI,1500.0,STOLEN,258,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-265,2866,GO-20189022874,THEFT UNDER - BICYCLE,2018-07-14,2018,July,Saturday,14,195,10,2018-07-18,2018,July,Wednesday,18,199,10,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,30,DGR,800.0,STOLEN,259,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-266,2911,GO-20189023381,THEFT UNDER - BICYCLE,2018-07-06,2018,July,Friday,6,187,1,2018-07-22,2018,July,Sunday,22,203,2,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,ZED 3.2,MT,21,,450.0,STOLEN,260,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-267,2973,GO-20189024020,THEFT UNDER - BICYCLE,2018-07-24,2018,July,Tuesday,24,205,19,2018-07-26,2018,July,Thursday,26,207,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,SC,,MT,21,WHI,50.0,STOLEN,261,"{'type': 'Point', 'coordinates': (-79.49650188, 43.61176418)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-268,2976,GO-20189024052,THEFT UNDER - BICYCLE,2018-07-17,2018,July,Tuesday,17,198,20,2018-07-26,2018,July,Thursday,26,207,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,KH,,MT,1,,1000.0,STOLEN,262,"{'type': 'Point', 'coordinates': (-79.48760733, 43.62206923)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-269,3003,GO-20189024267,THEFT UNDER - BICYCLE,2018-07-19,2018,July,Thursday,19,200,1,2018-07-27,2018,July,Friday,27,208,19,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,NO,CHARGER,MT,18,BLK,1500.0,STOLEN,264,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-270,3107,GO-20189025448,THEFT UNDER - BICYCLE,2018-07-23,2018,July,Monday,23,204,15,2018-08-07,2018,August,Tuesday,7,219,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,RG,9,WHI,300.0,STOLEN,265,"{'type': 'Point', 'coordinates': (-79.48731142, 43.61728142)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-271,3180,GO-20181470949,THEFT UNDER - BICYCLE,2018-07-09,2018,July,Monday,9,190,12,2018-08-10,2018,August,Friday,10,222,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,,RG,21,GRY,1000.0,STOLEN,266,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-272,3199,GO-20189026354,THEFT UNDER,2018-08-14,2018,August,Tuesday,14,226,18,2018-08-14,2018,August,Tuesday,14,226,19,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,SC,,TO,21,,600.0,STOLEN,267,"{'type': 'Point', 'coordinates': (-79.49138084, 43.62576989)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-273,3415,GO-20189029480,THEFT UNDER,2018-09-04,2018,September,Tuesday,4,247,22,2018-09-07,2018,September,Friday,7,250,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,DAKAR,MT,12,GRN,1400.0,STOLEN,268,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-274,3544,GO-20181769054,THEFT UNDER - BICYCLE,2018-09-20,2018,September,Thursday,20,263,13,2018-09-24,2018,September,Monday,24,267,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,OT,1,BLK,120.0,STOLEN,269,"{'type': 'Point', 'coordinates': (-79.48688069, 43.61810501000001)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-275,3589,GO-20181815348,THEFT UNDER - BICYCLE,2018-09-30,2018,September,Sunday,30,273,16,2018-10-01,2018,October,Monday,1,274,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,MT,18,BLKSIL,,STOLEN,270,"{'type': 'Point', 'coordinates': (-79.49671284, 43.61223676)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-276,3603,GO-20181826201,B&E,2018-09-18,2018,September,Tuesday,18,261,17,2018-10-03,2018,October,Wednesday,3,276,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,MATTERHORN,MT,10,GRY,200.0,STOLEN,271,"{'type': 'Point', 'coordinates': (-79.49312873, 43.60365221)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-277,3604,GO-20181826201,B&E,2018-09-18,2018,September,Tuesday,18,261,17,2018-10-03,2018,October,Wednesday,3,276,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,SCORCHER,MT,10,BLU,200.0,STOLEN,272,"{'type': 'Point', 'coordinates': (-79.49312873, 43.60365221)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-278,3640,GO-20181822856,THEFT UNDER,2018-10-02,2018,October,Tuesday,2,275,14,2018-10-02,2018,October,Tuesday,2,275,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,PROJEKT 8,RG,8,BLK,542.0,STOLEN,273,"{'type': 'Point', 'coordinates': (-79.48966381, 43.61800177)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-279,3720,GO-20189034503,THEFT UNDER - BICYCLE,2018-10-16,2018,October,Tuesday,16,289,21,2018-10-17,2018,October,Wednesday,17,290,22,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RM,,MT,9,BLU,800.0,STOLEN,274,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-280,3721,GO-20189034513,THEFT UNDER - BICYCLE,2018-10-16,2018,October,Tuesday,16,289,2,2018-10-18,2018,October,Thursday,18,291,0,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RM,,OT,21,RED,600.0,STOLEN,275,"{'type': 'Point', 'coordinates': (-79.48966381, 43.61800177)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-281,3722,GO-20189034513,THEFT UNDER - BICYCLE,2018-10-16,2018,October,Tuesday,16,289,2,2018-10-18,2018,October,Thursday,18,291,0,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,MIELE UMBRIA 1,RG,21,GRY,300.0,STOLEN,276,"{'type': 'Point', 'coordinates': (-79.48966381, 43.61800177)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-282,3739,GO-20189034998,THEFT UNDER - BICYCLE,2018-10-05,2018,October,Friday,5,278,22,2018-10-21,2018,October,Sunday,21,294,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,RINCON,MT,24,BLK,300.0,STOLEN,277,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-283,3820,GO-20189037075,THEFT UNDER - BICYCLE,2018-11-05,2018,November,Monday,5,309,11,2018-11-06,2018,November,Tuesday,6,310,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,RAVEN29R,MT,30,WHI,2700.0,STOLEN,278,"{'type': 'Point', 'coordinates': (-79.4995502, 43.61906441)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-284,3886,GO-20189039253,THEFT UNDER - BICYCLE,2018-11-19,2018,November,Monday,19,323,14,2018-11-22,2018,November,Thursday,22,326,0,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GI,NRS3,MT,27,BLU,2000.0,STOLEN,279,"{'type': 'Point', 'coordinates': (-79.48480515, 43.62040835)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-285,3888,GO-20182151965,THEFT UNDER - BICYCLE,2018-11-18,2018,November,Sunday,18,322,12,2018-11-22,2018,November,Thursday,22,326,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,NORCO,CHARGER,MT,21,BLKLGR,1000.0,STOLEN,280,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-286,3898,GO-20189039803,THEFT UNDER - BICYCLE,2018-11-22,2018,November,Thursday,22,326,17,2018-11-26,2018,November,Monday,26,330,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,1,YEL,500.0,STOLEN,281,"{'type': 'Point', 'coordinates': (-79.48760733, 43.62206923)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-287,3932,GO-20182267276,THEFT UNDER - BICYCLE,2018-12-10,2018,December,Monday,10,344,16,2018-12-10,2018,December,Monday,10,344,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Jails / Detention Centres,Other,ROCKY MOUNTAIN,,MT,24,SIL,600.0,STOLEN,282,"{'type': 'Point', 'coordinates': (-79.51578755, 43.61208553)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-288,3939,GO-20189042059,THEFT UNDER,2018-12-11,2018,December,Tuesday,11,345,9,2018-12-14,2018,December,Friday,14,348,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,TR,7.4 FX,RG,27,SIL,800.0,STOLEN,283,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-289,3940,GO-20189042059,THEFT UNDER,2018-12-11,2018,December,Tuesday,11,345,9,2018-12-14,2018,December,Friday,14,348,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,TR,16 ALLANT,RG,27,BLK,1000.0,STOLEN,284,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-290,3981,GO-201917288,THEFT UNDER - BICYCLE,2018-10-01,2018,October,Monday,1,274,12,2019-01-03,2019,January,Thursday,3,3,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,,MT,21,BLK,50.0,STOLEN,285,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-291,3982,GO-201917288,THEFT UNDER - BICYCLE,2018-10-01,2018,October,Monday,1,274,12,2019-01-03,2019,January,Thursday,3,3,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,ROAM 2,MT,21,RED,450.0,STOLEN,286,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-292,4021,GO-20199003374,THEFT UNDER - BICYCLE,2018-12-24,2018,December,Monday,24,358,14,2019-01-24,2019,January,Thursday,24,24,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,NO,NORCO INDIE 3,RG,30,LGR,987.0,STOLEN,287,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-293,4072,GO-2019388619,THEFT UNDER - BICYCLE,2019-02-28,2019,February,Thursday,28,59,8,2019-03-02,2019,March,Saturday,2,61,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,,TO,27,GRN,1000.0,STOLEN,288,"{'type': 'Point', 'coordinates': (-79.48497603, 43.62140475)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-294,4078,GO-20199007520,THEFT UNDER - BICYCLE,2018-12-07,2018,December,Friday,7,341,10,2019-03-07,2019,March,Thursday,7,66,10,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GI,LIV THRIVE 0,RC,80,BLU,1549.0,STOLEN,289,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-295,4169,GO-20199012032,THEFT UNDER,2019-04-15,2019,April,Monday,15,105,21,2019-04-16,2019,April,Tuesday,16,106,6,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,OT,VERZA SPEED 50,RC,25,BLK,400.0,STOLEN,290,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-296,4303,GO-2019907432,THEFT FROM MOTOR VEHICLE UNDER,2019-05-17,2019,May,Friday,17,137,14,2019-05-18,2019,May,Saturday,18,138,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,DEVINCI,JACK,MT,21,BLUBLK,2300.0,STOLEN,291,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-297,4306,GO-20199015715,THEFT UNDER,2019-05-18,2019,May,Saturday,18,138,0,2019-05-21,2019,May,Tuesday,21,141,0,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,TR,HYBRID 8.5S,TO,21,BLU,1500.0,STOLEN,292,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-298,4328,GO-2019932018,THEFT UNDER,2019-05-21,2019,May,Tuesday,21,141,8,2019-05-22,2019,May,Wednesday,22,142,9,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,JAMIS,XENETH ENDURA,RC,10,BLK,1500.0,STOLEN,293,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-299,4337,GO-2019949098,THEFT UNDER - BICYCLE,2019-05-20,2019,May,Monday,20,140,21,2019-05-24,2019,May,Friday,24,144,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,ESCAPE 2,RG,21,BLK,535.0,STOLEN,294,"{'type': 'Point', 'coordinates': (-79.50131553, 43.61697253)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-300,4338,GO-20199016177,THEFT UNDER,2019-05-23,2019,May,Thursday,23,143,0,2019-05-24,2019,May,Friday,24,144,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,IH,OUTLAW,MT,18,BLK,300.0,STOLEN,295,"{'type': 'Point', 'coordinates': (-79.49811913, 43.619392950000005)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-301,4352,GO-20199016388,THEFT UNDER,2019-05-26,2019,May,Sunday,26,146,18,2019-05-26,2019,May,Sunday,26,146,22,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Go Station,Transit,,,RG,21,BLK,290.0,STOLEN,296,"{'type': 'Point', 'coordinates': (-79.49833024, 43.61617493)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-302,4365,GO-20199016615,THEFT UNDER,2019-05-18,2019,May,Saturday,18,138,12,2019-05-28,2019,May,Tuesday,28,148,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,CA,,MT,8,,900.0,STOLEN,297,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-303,4376,GO-20199016868,THEFT UNDER,2019-05-30,2019,May,Thursday,30,150,8,2019-05-30,2019,May,Thursday,30,150,9,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,TRAIL X2,MT,24,SIL,250.0,STOLEN,298,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-304,4386,GO-20199016905,THEFT UNDER,2019-05-25,2019,May,Saturday,25,145,14,2019-05-30,2019,May,Thursday,30,150,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,MA,,RG,21,BLK,684.0,STOLEN,299,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-305,4406,GO-20199017003,THEFT UNDER,2019-05-18,2019,May,Saturday,18,138,14,2019-05-31,2019,May,Friday,31,151,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MO,R7917WMA,MT,21,BLK,190.0,STOLEN,300,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-306,4418,GO-20199017621,THEFT UNDER,2019-05-29,2019,May,Wednesday,29,149,21,2019-06-06,2019,June,Thursday,6,157,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GI,DEFY,RC,22,BLK,1400.0,STOLEN,301,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-307,4419,GO-20191043159,THEFT UNDER - BICYCLE,2019-05-28,2019,May,Tuesday,28,148,23,2019-06-06,2019,June,Thursday,6,157,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,ALLEZ,TO,10,BLK,500.0,STOLEN,302,"{'type': 'Point', 'coordinates': (-79.48497603, 43.62140475)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-308,4421,GO-20191046998,THEFT UNDER,2019-06-06,2019,June,Thursday,6,157,8,2019-06-07,2019,June,Friday,7,158,8,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Go Station,Transit,OPUS SPARK,OPUS SPARK,OT,21,REDWHI,900.0,STOLEN,303,"{'type': 'Point', 'coordinates': (-79.49833024, 43.61617493)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-309,215,GO-20179004648,THEFT UNDER,2017-04-10,2017,April,Monday,10,100,11,2017-04-13,2017,April,Thursday,13,103,13,D23,Toronto,1,West Humber-Clairville (1),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,MAX TRAINER M5,OT,1,,2146.0,STOLEN,304,"{'type': 'Point', 'coordinates': (-79.61688986, 43.72375357)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-310,722,GO-20179008955,THEFT UNDER - BICYCLE,2017-06-26,2017,June,Monday,26,177,14,2017-06-26,2017,June,Monday,26,177,19,D23,Toronto,1,West Humber-Clairville (1),Universities / Colleges,Educational,GT,VANTARA,RC,9,BLK,784.0,STOLEN,305,"{'type': 'Point', 'coordinates': (-79.60569089, 43.72892868)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-311,1400,GO-20179014740,THEFT UNDER - BICYCLE,2017-09-10,2017,September,Sunday,10,253,12,2017-09-14,2017,September,Thursday,14,257,12,D23,Toronto,1,West Humber-Clairville (1),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,UK,,RG,15,LBL,0.0,STOLEN,306,"{'type': 'Point', 'coordinates': (-79.60569089, 43.72892868)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-312,1683,GO-20171879806,THEFT UNDER - BICYCLE,2017-10-16,2017,October,Monday,16,289,11,2017-10-19,2017,October,Thursday,19,292,17,D23,Toronto,1,West Humber-Clairville (1),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,STORM,MT,21,BLU,600.0,STOLEN,307,"{'type': 'Point', 'coordinates': (-79.61423506000001, 43.732190450000004)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-313,2922,GO-20181343089,THEFT UNDER - BICYCLE,2018-07-16,2018,July,Monday,16,197,19,2018-07-23,2018,July,Monday,23,204,7,D23,Toronto,1,West Humber-Clairville (1),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,MT,21,GRYYEL,120.0,STOLEN,308,"{'type': 'Point', 'coordinates': (-79.60417825000002, 43.70602991)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-314,3124,GO-20189025626,THEFT UNDER - BICYCLE,2018-08-08,2018,August,Wednesday,8,220,8,2018-08-08,2018,August,Wednesday,8,220,21,D23,Toronto,1,West Humber-Clairville (1),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,,RG,1,SIL,250.0,STOLEN,309,"{'type': 'Point', 'coordinates': (-79.59326257, 43.67218997)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-315,3622,GO-20189033044,THEFT UNDER - BICYCLE,2018-10-02,2018,October,Tuesday,2,275,11,2018-10-05,2018,October,Friday,5,278,15,D23,Toronto,1,West Humber-Clairville (1),Schools During Supervised Activity,Educational,UK,,MT,3,BLK,178.0,STOLEN,310,"{'type': 'Point', 'coordinates': (-79.57147176, 43.72170269)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-316,4391,GO-20199017068,THEFT UNDER,2019-05-31,2019,May,Friday,31,151,21,2019-05-31,2019,May,Friday,31,151,22,D23,Toronto,1,West Humber-Clairville (1),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,,MT,21,LGR,199.0,STOLEN,311,"{'type': 'Point', 'coordinates': (-79.60110555, 43.74720714)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-317,4951,GO-20191455671,THEFT UNDER - BICYCLE,2019-07-31,2019,July,Wednesday,31,212,8,2019-08-02,2019,August,Friday,2,214,13,D23,Toronto,1,West Humber-Clairville (1),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NEXT,UNKOWN,OT,21,BLU,1000.0,STOLEN,312,"{'type': 'Point', 'coordinates': (-79.60169835, 43.71844401)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-318,4956,GO-20191458923,THEFT UNDER - BICYCLE,2019-07-29,2019,July,Monday,29,210,12,2019-08-02,2019,August,Friday,2,214,19,D23,Toronto,1,West Humber-Clairville (1),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,,MT,21,BLU,150.0,STOLEN,313,"{'type': 'Point', 'coordinates': (-79.57462099000001, 43.7281411)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-319,5464,GO-20191908158,THEFT UNDER - BICYCLE,2019-10-03,2019,October,Thursday,3,276,14,2019-10-04,2019,October,Friday,4,277,8,D23,Toronto,1,West Humber-Clairville (1),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,RG,1,BLK,,STOLEN,314,"{'type': 'Point', 'coordinates': (-79.60169835, 43.71844401)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-320,18105,GO-20171396895,B&E W'INTENT,2017-07-30,2017,July,Sunday,30,211,1,2017-08-03,2017,August,Thursday,3,215,17,D23,Toronto,7,Willowridge-Martingrove-Richview (7),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,MT,10,BLU,100.0,STOLEN,315,"{'type': 'Point', 'coordinates': (-79.56169399, 43.67894014)}",Willowridge-Martingrove-Richview,7,No Designation,22156,21343,0.038,8721,8509,4007,5.53,9360,6220,515,2380,140,20,65,0.002136752136752137
-321,6038,GO-2020684156,B&E,2019-12-27,2019,December,Friday,27,361,14,2020-04-08,2020,April,Wednesday,8,99,14,D23,Toronto,1,West Humber-Clairville (1),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NORCO,VALENCE C105,RC,22,GRY,2200.0,STOLEN,316,"{'type': 'Point', 'coordinates': (-79.57635547, 43.73166845)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-322,6719,GO-20209018364,THEFT UNDER,2020-07-22,2020,July,Wednesday,22,204,18,2020-07-23,2020,July,Thursday,23,205,17,D23,Toronto,1,West Humber-Clairville (1),Universities / Colleges,Educational,GT,AVALANCHE,MT,9,BLK,760.0,STOLEN,317,"{'type': 'Point', 'coordinates': (-79.60937769, 43.72749881000001)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-323,6754,GO-20209018364,THEFT UNDER,2020-07-22,2020,July,Wednesday,22,204,18,2020-07-23,2020,July,Thursday,23,205,17,D23,Toronto,1,West Humber-Clairville (1),Universities / Colleges,Educational,GT,,MT,9,BLK,760.0,STOLEN,318,"{'type': 'Point', 'coordinates': (-79.60937769, 43.72749881000001)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-324,7576,GO-20209028219,THEFT UNDER,2020-10-24,2020,October,Saturday,24,298,11,2020-10-31,2020,October,Saturday,31,305,15,D23,Toronto,1,West Humber-Clairville (1),Schools During Un-Supervised Activity,Educational,UK,,OT,1,GRY,0.0,STOLEN,319,"{'type': 'Point', 'coordinates': (-79.60569089, 43.72892868)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-325,8095,GO-20142262250,THEFT UNDER,2014-06-10,2014,June,Tuesday,10,161,13,2014-06-10,2014,June,Tuesday,10,161,15,D23,Toronto,1,West Humber-Clairville (1),Schools During Un-Supervised Activity,Educational,CCM,29,MT,21,BLK,,STOLEN,320,"{'type': 'Point', 'coordinates': (-79.60569089, 43.72892868)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-326,8590,GO-20142668100,THEFT UNDER,2014-08-09,2014,August,Saturday,9,221,15,2014-08-09,2014,August,Saturday,9,221,15,D23,Toronto,1,West Humber-Clairville (1),"Apartment (Rooming House, Condo)",Apartment,OTHER,GIMELLI,BM,35,RED,599.0,STOLEN,321,"{'type': 'Point', 'coordinates': (-79.59350023, 43.73377335)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-327,9471,GO-2015687344,THEFT UNDER,2015-04-25,2015,April,Saturday,25,115,22,2015-04-25,2015,April,Saturday,25,115,22,D23,Toronto,1,West Humber-Clairville (1),Convenience Stores,Commercial,GIANT,,MT,8,BRN,700.0,STOLEN,322,"{'type': 'Point', 'coordinates': (-79.60070124, 43.73183406)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-328,9552,GO-2015761746,THEFT UNDER,2015-05-06,2015,May,Wednesday,6,126,18,2015-05-07,2015,May,Thursday,7,127,19,D23,Toronto,1,West Humber-Clairville (1),Universities / Colleges,Educational,UNKNOWN MAKE,,MT,18,BLKGRY,192.0,STOLEN,323,"{'type': 'Point', 'coordinates': (-79.60569089, 43.72892868)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-329,9637,GO-2015859298,B&E,2015-05-22,2015,May,Friday,22,142,22,2015-05-23,2015,May,Saturday,23,143,12,D23,Toronto,1,West Humber-Clairville (1),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,KARORAM,MT,10,BLK,710.0,STOLEN,324,"{'type': 'Point', 'coordinates': (-79.62019742, 43.728718840000006)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-330,9638,GO-2015859298,B&E,2015-05-22,2015,May,Friday,22,142,22,2015-05-23,2015,May,Saturday,23,143,12,D23,Toronto,1,West Humber-Clairville (1),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NAKAMURA,MONSTER 6.3,MT,10,BLK,212.0,STOLEN,325,"{'type': 'Point', 'coordinates': (-79.62019742, 43.728718840000006)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-331,9849,GO-20159003826,THEFT UNDER,2015-06-21,2015,June,Sunday,21,172,11,2015-06-22,2015,June,Monday,22,173,11,D23,Toronto,1,West Humber-Clairville (1),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,CARPE H50,RG,10,BLK,700.0,STOLEN,326,"{'type': 'Point', 'coordinates': (-79.59732521, 43.69075989)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-332,10063,GO-20151248729,THEFT UNDER,2015-07-22,2015,July,Wednesday,22,203,11,2015-07-22,2015,July,Wednesday,22,203,12,D23,Toronto,1,West Humber-Clairville (1),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GENESIS,GENESIS,OT,10,,160.0,STOLEN,327,"{'type': 'Point', 'coordinates': (-79.60667875, 43.73372347)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-333,10105,GO-20151269728,THEFT FROM MOTOR VEHICLE UNDER,2015-07-25,2015,July,Saturday,25,206,1,2015-07-25,2015,July,Saturday,25,206,14,D23,Toronto,1,West Humber-Clairville (1),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,MOUNTAIN,MT,21,BLK,99.0,STOLEN,328,"{'type': 'Point', 'coordinates': (-79.57481477, 43.72372896)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-334,10280,GO-20151424849,THEFT UNDER,2015-08-10,2015,August,Monday,10,222,11,2015-08-19,2015,August,Wednesday,19,231,7,D23,Toronto,1,West Humber-Clairville (1),"Open Areas (Lakes, Parks, Rivers)",Outside,UNKNOWN,,OT,0,REDWHI,150.0,STOLEN,329,"{'type': 'Point', 'coordinates': (-79.62217749, 43.72617604)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-335,10347,GO-20159006386,THEFT UNDER,2015-08-24,2015,August,Monday,24,236,9,2015-08-25,2015,August,Tuesday,25,237,11,D23,Toronto,1,West Humber-Clairville (1),Universities / Colleges,Educational,OT,DENALI,RC,21,LGR,340.0,STOLEN,330,"{'type': 'Point', 'coordinates': (-79.60569089, 43.72892868)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-336,11218,GO-2016460547,MISCHIEF UNDER,2016-03-17,2016,March,Thursday,17,77,10,2016-03-17,2016,March,Thursday,17,77,10,D23,Toronto,1,West Humber-Clairville (1),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,,MT,99,PLE,,RECOVERED,331,"{'type': 'Point', 'coordinates': (-79.60334066, 43.75786287)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-337,17341,GO-20209015753,THEFT UNDER,2020-06-06,2020,June,Saturday,6,158,6,2020-06-19,2020,June,Friday,19,171,19,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,SC,1,LBL,500.0,STOLEN,332,"{'type': 'Point', 'coordinates': (-79.58873503, 43.7482716)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-338,11427,GO-20169005231,THEFT UNDER,2016-06-01,2016,June,Wednesday,1,153,22,2016-06-02,2016,June,Thursday,2,154,1,D23,Toronto,1,West Humber-Clairville (1),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,1,SIL,0.0,STOLEN,333,"{'type': 'Point', 'coordinates': (-79.59184324, 43.72334059)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-339,11678,GO-20161149572,THEFT UNDER - BICYCLE,2016-06-30,2016,June,Thursday,30,182,12,2016-07-01,2016,July,Friday,1,183,9,D23,Toronto,1,West Humber-Clairville (1),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,,RG,10,PLE,20.0,STOLEN,334,"{'type': 'Point', 'coordinates': (-79.62088968, 43.72890858)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-340,11716,GO-20161180530,THEFT UNDER - BICYCLE,2016-07-04,2016,July,Monday,4,186,15,2016-07-06,2016,July,Wednesday,6,188,11,D23,Toronto,1,West Humber-Clairville (1),Schools During Supervised Activity,Educational,INFINITY,HT27.5,MT,0,BLKGRN,299.0,STOLEN,335,"{'type': 'Point', 'coordinates': (-79.59166379, 43.73677452)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-341,11898,GO-20161280528,B&E,2016-07-15,2016,July,Friday,15,197,18,2016-07-21,2016,July,Thursday,21,203,13,D23,Toronto,1,West Humber-Clairville (1),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,LUSH,MT,18,BLKPNK,2500.0,STOLEN,336,"{'type': 'Point', 'coordinates': (-79.58719932, 43.7225891)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-342,12120,GO-20169008929,THEFT UNDER,2016-08-17,2016,August,Wednesday,17,230,0,2016-08-17,2016,August,Wednesday,17,230,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM 1,OT,27,WHI,500.0,STOLEN,337,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-343,12066,GO-20169008586,THEFT UNDER,2016-08-10,2016,August,Wednesday,10,223,18,2016-08-11,2016,August,Thursday,11,224,15,D23,Toronto,1,West Humber-Clairville (1),Universities / Colleges,Educational,SU,NITROUS,MT,21,ONG,150.0,STOLEN,338,"{'type': 'Point', 'coordinates': (-79.60569089, 43.72892868)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-344,12477,GO-20161711330,THEFT UNDER - BICYCLE,2016-09-19,2016,September,Monday,19,263,8,2016-09-26,2016,September,Monday,26,270,15,D23,Toronto,1,West Humber-Clairville (1),Schools During Supervised Activity,Educational,UNKNOWN,UNKNOWN,RG,18,RED,100.0,STOLEN,339,"{'type': 'Point', 'coordinates': (-79.59166379, 43.73677452)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-345,12478,GO-20161711330,THEFT UNDER - BICYCLE,2016-09-19,2016,September,Monday,19,263,8,2016-09-26,2016,September,Monday,26,270,15,D23,Toronto,1,West Humber-Clairville (1),Schools During Supervised Activity,Educational,,,RG,18,GRY,200.0,STOLEN,340,"{'type': 'Point', 'coordinates': (-79.59166379, 43.73677452)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-346,12562,GO-20161778437,THEFT UNDER - BICYCLE,2016-10-06,2016,October,Thursday,6,280,13,2016-10-06,2016,October,Thursday,6,280,13,D23,Toronto,1,West Humber-Clairville (1),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,OT,15,GRYYEL,,STOLEN,341,"{'type': 'Point', 'coordinates': (-79.56666332, 43.71170516)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-347,12568,GO-20161693148,THEFT UNDER,2016-09-21,2016,September,Wednesday,21,265,16,2016-09-26,2016,September,Monday,26,270,15,D23,Toronto,1,West Humber-Clairville (1),Schools During Supervised Activity,Educational,CCM,,MT,18,RED,,STOLEN,342,"{'type': 'Point', 'coordinates': (-79.59166379, 43.73677452)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-348,12569,GO-20161672847,THEFT UNDER - BICYCLE,2016-09-09,2016,September,Friday,9,253,13,2016-09-21,2016,September,Wednesday,21,265,14,D23,Toronto,1,West Humber-Clairville (1),Schools During Supervised Activity,Educational,OTHER,,RG,0,RED,,STOLEN,343,"{'type': 'Point', 'coordinates': (-79.59166379, 43.73677452)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-349,12570,GO-20161782582,THEFT UNDER - BICYCLE,2016-10-06,2016,October,Thursday,6,280,22,2016-10-07,2016,October,Friday,7,281,3,D23,Toronto,1,West Humber-Clairville (1),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,BMX,,MT,1,RED,100.0,STOLEN,344,"{'type': 'Point', 'coordinates': (-79.62198544, 43.74687755)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-350,12718,GO-20161954777,B&E,2016-11-02,2016,November,Wednesday,2,307,16,2016-11-03,2016,November,Thursday,3,308,11,D23,Toronto,1,West Humber-Clairville (1),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,HERO,UNKNOWN,EL,35,BLK,2000.0,STOLEN,345,"{'type': 'Point', 'coordinates': (-79.61469087, 43.74389954)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-351,12743,GO-20161993323,THEFT UNDER - BICYCLE,2016-11-09,2016,November,Wednesday,9,314,12,2016-11-09,2016,November,Wednesday,9,314,12,D23,Toronto,1,West Humber-Clairville (1),Schools During Supervised Activity,Educational,TELLURIDE,,RG,10,RED,70.0,STOLEN,346,"{'type': 'Point', 'coordinates': (-79.60569089, 43.72892868)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-352,17648,GO-20191912382,B&E,2019-10-04,2019,October,Friday,4,277,0,2019-10-04,2019,October,Friday,4,277,16,D23,Toronto,1,West Humber-Clairville (1),"Construction Site (Warehouse, Trailer, Shed)",Commercial,HYPER,VIKING TRAIL,MT,21,BLK,200.0,STOLEN,355,"{'type': 'Point', 'coordinates': (-79.62064281, 43.74335617)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-353,14475,GO-20189036765,THEFT UNDER - BICYCLE,2018-10-01,2018,October,Monday,1,274,2,2018-11-04,2018,November,Sunday,4,308,3,D23,Toronto,1,West Humber-Clairville (1),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,700CC,MT,21,BLK,0.0,STOLEN,347,"{'type': 'Point', 'coordinates': (-79.60569089, 43.72892868)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-354,14559,GO-20199025551,THEFT UNDER,2019-08-08,2019,August,Thursday,8,220,14,2019-08-09,2019,August,Friday,9,221,16,D23,Toronto,1,West Humber-Clairville (1),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SU,NITRO,MT,21,ONG,160.0,STOLEN,348,"{'type': 'Point', 'coordinates': (-79.60667875, 43.73372347)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-355,14585,GO-20191874933,PROPERTY - FOUND,2019-09-27,2019,September,Friday,27,270,7,2019-09-29,2019,September,Sunday,29,272,10,D23,Toronto,1,West Humber-Clairville (1),"Open Areas (Lakes, Parks, Rivers)",Outside,GIO,,EL,20,BLK,500.0,UNKNOWN,349,"{'type': 'Point', 'coordinates': (-79.59288284, 43.72681581)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-356,17350,GO-20209016764,THEFT FROM MOTOR VEHICLE UNDER,2020-07-03,2020,July,Friday,3,185,23,2020-07-04,2020,July,Saturday,4,186,13,D22,Toronto,11,Eringate-Centennial-West Deane (11),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,OT,1,WHI,500.0,STOLEN,350,"{'type': 'Point', 'coordinates': (-79.56423661, 43.65494591)}",Eringate-Centennial-West Deane,11,No Designation,18588,18810,-0.012,6977,6863,2171,8.56,8665,5980,465,1945,180,35,75,0.004039238315060588
-357,4469,GO-20199018368,THEFT UNDER,2019-06-12,2019,June,Wednesday,12,163,10,2019-06-12,2019,June,Wednesday,12,163,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,MT,10,,3500.0,STOLEN,351,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-358,14657,GO-20179008256,THEFT UNDER - BICYCLE,2017-06-10,2017,June,Saturday,10,161,19,2017-06-16,2017,June,Friday,16,167,19,D23,Toronto,1,West Humber-Clairville (1),"Apartment (Rooming House, Condo)",Apartment,SU,,OT,50,BLU,200.0,STOLEN,352,"{'type': 'Point', 'coordinates': (-79.59825884, 43.73854056)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-359,14953,GO-2015919180,THEFT UNDER,2015-06-01,2015,June,Monday,1,152,9,2015-06-02,2015,June,Tuesday,2,153,2,D23,Toronto,1,West Humber-Clairville (1),Universities / Colleges,Educational,MONGOOSE,,MT,0,GRY,198.0,STOLEN,353,"{'type': 'Point', 'coordinates': (-79.60569089, 43.72892868)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-360,14960,GO-20151126824,THEFT UNDER,2015-07-03,2015,July,Friday,3,184,20,2015-07-04,2015,July,Saturday,4,185,14,D23,Toronto,1,West Humber-Clairville (1),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,1,BLK,500.0,STOLEN,354,"{'type': 'Point', 'coordinates': (-79.61676877, 43.72091378)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-361,17915,GO-20149003177,THEFT UNDER,2014-05-05,2014,May,Monday,5,125,8,2014-05-06,2014,May,Tuesday,6,126,6,D23,Toronto,1,West Humber-Clairville (1),Schools During Supervised Activity,Educational,OT,AVIGO,BM,1,BLK,250.0,STOLEN,356,"{'type': 'Point', 'coordinates': (-79.58153457, 43.72409104)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-362,17955,GO-20159001406,THEFT UNDER,2015-03-16,2015,March,Monday,16,75,16,2015-03-18,2015,March,Wednesday,18,77,23,D23,Toronto,1,West Humber-Clairville (1),Schools During Supervised Activity,Educational,OT,P9,RG,21,BLK,300.0,STOLEN,357,"{'type': 'Point', 'coordinates': (-79.60569089, 43.72892868)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-363,17958,GO-2015648275,THEFT UNDER,2015-04-07,2015,April,Tuesday,7,97,12,2015-04-19,2015,April,Sunday,19,109,15,D23,Toronto,1,West Humber-Clairville (1),"Open Areas (Lakes, Parks, Rivers)",Outside,PATHFINDER,2000,OT,21,BLU,1000.0,STOLEN,358,"{'type': 'Point', 'coordinates': (-79.60016615, 43.7501869)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-364,17976,GO-20151146729,THEFT UNDER,2015-07-04,2015,July,Saturday,4,185,23,2015-07-07,2015,July,Tuesday,7,188,14,D23,Toronto,1,West Humber-Clairville (1),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,ROCKY MOUNTAIN,,MT,0,BLK,100.0,STOLEN,359,"{'type': 'Point', 'coordinates': (-79.6151676, 43.73198248)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-365,18030,GO-20161289100,THEFT UNDER - BICYCLE,2016-07-22,2016,July,Friday,22,204,13,2016-07-22,2016,July,Friday,22,204,18,D23,Toronto,1,West Humber-Clairville (1),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,EMONDA,OT,21,BLKWHI,1200.0,STOLEN,360,"{'type': 'Point', 'coordinates': (-79.58868703, 43.72153568000001)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-366,21216,GO-20171710879,THEFT UNDER - BICYCLE,2017-09-20,2017,September,Wednesday,20,263,23,2017-09-20,2017,September,Wednesday,20,263,23,D23,Toronto,1,West Humber-Clairville (1),"Apartment (Rooming House, Condo)",Apartment,CCM,,MT,0,BLU,500.0,STOLEN,361,"{'type': 'Point', 'coordinates': (-79.60342029, 43.719157890000005)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-367,21235,GO-20173000102,THEFT OF EBIKE UNDER $5000,2017-11-12,2017,November,Sunday,12,316,20,2017-11-15,2017,November,Wednesday,15,319,2,D23,Toronto,1,West Humber-Clairville (1),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,TEV,EL,3,BLK,1400.0,STOLEN,362,"{'type': 'Point', 'coordinates': (-79.60417825000002, 43.70602991)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-368,21289,GO-20189018003,THEFT UNDER,2018-06-08,2018,June,Friday,8,159,13,2018-06-09,2018,June,Saturday,9,160,11,D23,Toronto,1,West Humber-Clairville (1),Bar / Restaurant,Commercial,UK,,MT,18,BLK,160.0,STOLEN,363,"{'type': 'Point', 'coordinates': (-79.60070124, 43.73183406)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-369,21325,GO-20189024238,THEFT UNDER - BICYCLE,2018-07-27,2018,July,Friday,27,208,14,2018-07-27,2018,July,Friday,27,208,17,D23,Toronto,1,West Humber-Clairville (1),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,MT,18,,400.0,STOLEN,364,"{'type': 'Point', 'coordinates': (-79.58949573, 43.73067965)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-370,21333,GO-20181496494,THEFT OF EBIKE UNDER $5000,2018-08-13,2018,August,Monday,13,225,22,2018-08-14,2018,August,Tuesday,14,226,12,D23,Toronto,1,West Humber-Clairville (1),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,EL,40,MRN,3849.0,STOLEN,365,"{'type': 'Point', 'coordinates': (-79.60417825000002, 43.70602991)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-371,22012,GO-20149003861,THEFT UNDER,2014-06-06,2014,June,Friday,6,157,17,2014-06-06,2014,June,Friday,6,157,22,D23,Toronto,1,West Humber-Clairville (1),Universities / Colleges,Educational,OT,,MT,18,WHI,78.0,STOLEN,366,"{'type': 'Point', 'coordinates': (-79.60569089, 43.72892868)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-372,22049,GO-20159002116,THEFT UNDER,2015-04-20,2015,April,Monday,20,110,8,2015-04-20,2015,April,Monday,20,110,22,D23,Toronto,1,West Humber-Clairville (1),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,,MT,18,BLK,160.0,STOLEN,367,"{'type': 'Point', 'coordinates': (-79.59617482, 43.73347397)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-373,22052,GO-2015741806,THEFT UNDER,2015-04-26,2015,April,Sunday,26,116,17,2015-05-04,2015,May,Monday,4,124,18,D23,Toronto,1,West Humber-Clairville (1),Universities / Colleges,Educational,UNKNOWN,,MT,18,RED,,STOLEN,368,"{'type': 'Point', 'coordinates': (-79.59941174, 43.73091013)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-374,22097,GO-2016230628,THEFT UNDER,2016-01-30,2016,January,Saturday,30,30,11,2016-02-08,2016,February,Monday,8,39,8,D23,Toronto,1,West Humber-Clairville (1),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,,SC,1,REDGRN,4000.0,STOLEN,369,"{'type': 'Point', 'coordinates': (-79.59491671000002, 43.73601858)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-375,22122,GO-20161385408,THEFT OF EBIKE UNDER $5000,2016-08-02,2016,August,Tuesday,2,215,20,2016-08-06,2016,August,Saturday,6,219,19,D23,Toronto,1,West Humber-Clairville (1),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,EMM01,EL,0,RED,2400.0,STOLEN,370,"{'type': 'Point', 'coordinates': (-79.58868703, 43.72153568000001)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-376,22140,GO-2017436302,B&E,2017-01-07,2017,January,Saturday,7,7,9,2017-03-10,2017,March,Friday,10,69,16,D23,Toronto,1,West Humber-Clairville (1),"Private Property Structure (Pool, Shed, Detached Garage)",Other,BIANCHI,,RG,12,GLD,500.0,STOLEN,371,"{'type': 'Point', 'coordinates': (-79.55925854, 43.70230736)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-377,24088,GO-20199026714,THEFT UNDER,2019-08-17,2019,August,Saturday,17,229,23,2019-08-18,2019,August,Sunday,18,230,16,D23,Toronto,1,West Humber-Clairville (1),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,,RG,10,GRN,100.0,STOLEN,372,"{'type': 'Point', 'coordinates': (-79.58584022, 43.72206594)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-378,24178,GO-2020980582,THEFT UNDER - BICYCLE,2020-05-25,2020,May,Monday,25,146,14,2020-05-27,2020,May,Wednesday,27,148,22,D23,Toronto,1,West Humber-Clairville (1),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NAKAMURA,,MT,7,BLUWHI,170.0,STOLEN,373,"{'type': 'Point', 'coordinates': (-79.61580992, 43.72388969)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-379,24215,GO-20171501034,THEFT UNDER - BICYCLE,2017-08-19,2017,August,Saturday,19,231,19,2017-08-19,2017,August,Saturday,19,231,19,D23,Toronto,1,West Humber-Clairville (1),"Open Areas (Lakes, Parks, Rivers)",Outside,SUPERCYCLE,,RG,21,BLK,199.0,STOLEN,374,"{'type': 'Point', 'coordinates': (-79.62212414, 43.72680578)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-380,24252,GO-20179018174,THEFT UNDER - BICYCLE,2017-10-07,2017,October,Saturday,7,280,10,2017-10-25,2017,October,Wednesday,25,298,22,D23,Toronto,1,West Humber-Clairville (1),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,,RG,10,OTH,113.0,STOLEN,375,"{'type': 'Point', 'coordinates': (-79.62217749, 43.72617604)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-381,24332,GO-20181235965,B&E W'INTENT,2018-07-06,2018,July,Friday,6,187,20,2018-07-07,2018,July,Saturday,7,188,11,D23,Toronto,1,West Humber-Clairville (1),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MOVELO,ALGONQUIN,MT,16,BLUPLE,110.0,STOLEN,376,"{'type': 'Point', 'coordinates': (-79.61931928, 43.73248007)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-382,24341,GO-20181265375,THEFT UNDER - BICYCLE,2018-07-11,2018,July,Wednesday,11,192,17,2018-07-11,2018,July,Wednesday,11,192,18,D23,Toronto,1,West Humber-Clairville (1),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,MT,21,GRY,200.0,STOLEN,377,"{'type': 'Point', 'coordinates': (-79.59941174, 43.73091013)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-383,24461,GO-20159003917,THEFT UNDER,2015-06-24,2015,June,Wednesday,24,175,14,2015-06-24,2015,June,Wednesday,24,175,22,D23,Toronto,1,West Humber-Clairville (1),Schools During Un-Supervised Activity,Educational,SU,,MT,7,GRN,130.0,STOLEN,378,"{'type': 'Point', 'coordinates': (-79.58153457, 43.72409104)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-384,24492,GO-20151708503,THEFT UNDER,2015-10-03,2015,October,Saturday,3,276,10,2015-10-03,2015,October,Saturday,3,276,17,D23,Toronto,1,West Humber-Clairville (1),Universities / Colleges,Educational,OTHER,,FO,7,BGESIL,200.0,STOLEN,379,"{'type': 'Point', 'coordinates': (-79.60569089, 43.72892868)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-385,24539,GO-20161490911,THEFT UNDER - BICYCLE,2016-08-14,2016,August,Sunday,14,227,2,2016-08-23,2016,August,Tuesday,23,236,6,D23,Toronto,1,West Humber-Clairville (1),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,INFINITY,,OT,0,REDBLK,300.0,STOLEN,380,"{'type': 'Point', 'coordinates': (-79.60417825000002, 43.70602991)}",West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658
-386,735,GO-20179009131,THEFT UNDER - BICYCLE,2017-06-28,2017,June,Wednesday,28,179,18,2017-06-28,2017,June,Wednesday,28,179,22,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),Schools During Un-Supervised Activity,Educational,CC,,RC,21,BLK,0.0,STOLEN,381,"{'type': 'Point', 'coordinates': (-79.58578825, 43.75097753)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-387,1340,GO-20171630453,THEFT UNDER - BICYCLE,2017-09-08,2017,September,Friday,8,251,20,2017-09-08,2017,September,Friday,8,251,22,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BMX,,BM,1,RED,,STOLEN,382,"{'type': 'Point', 'coordinates': (-79.59262692000001, 43.75639409)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-388,2793,GO-20189021780,THEFT UNDER - BICYCLE,2018-07-09,2018,July,Monday,9,190,19,2018-07-09,2018,July,Monday,9,190,19,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UK,,BM,1,BLU,300.0,STOLEN,383,"{'type': 'Point', 'coordinates': (-79.58491856, 43.73877053)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-389,3193,GO-20181492222,THEFT UNDER - BICYCLE,2018-08-13,2018,August,Monday,13,225,16,2018-08-14,2018,August,Tuesday,14,226,16,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,,MT,10,GRN,400.0,STOLEN,384,"{'type': 'Point', 'coordinates': (-79.58491856, 43.73877053)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-390,4664,GO-20199020912,THEFT UNDER,2019-07-01,2019,July,Monday,1,182,19,2019-07-03,2019,July,Wednesday,3,184,19,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SU,,MT,60,WHI,350.0,STOLEN,385,"{'type': 'Point', 'coordinates': (-79.58755582, 43.73688887)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-391,5179,GO-20191642363,THEFT UNDER - BICYCLE,2019-08-25,2019,August,Sunday,25,237,19,2019-08-28,2019,August,Wednesday,28,240,15,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,MOVELO,RG,3,,300.0,STOLEN,386,"{'type': 'Point', 'coordinates': (-79.58931312, 43.7584621)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-392,5814,GO-202050380,THEFT UNDER - BICYCLE,2020-01-08,2020,January,Wednesday,8,8,12,2020-01-08,2020,January,Wednesday,8,8,12,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Apartment (Rooming House, Condo)",Apartment,TREK,,RG,16,BLK,350.0,STOLEN,387,"{'type': 'Point', 'coordinates': (-79.58705963, 43.75362093)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-393,6037,GO-20209010685,THEFT UNDER,2020-04-05,2020,April,Sunday,5,96,4,2020-04-08,2020,April,Wednesday,8,99,11,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Apartment (Rooming House, Condo)",Apartment,SU,SC1800,RG,30,BLK,100.0,STOLEN,388,"{'type': 'Point', 'coordinates': (-79.58578825, 43.75097753)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-394,6770,GO-20201377780,THEFT UNDER - BICYCLE,2020-07-14,2020,July,Tuesday,14,196,20,2020-07-24,2020,July,Friday,24,206,15,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN,UNK,MT,7,BLK,150.0,STOLEN,389,"{'type': 'Point', 'coordinates': (-79.58931312, 43.7584621)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-395,6871,GO-20209019433,THEFT UNDER,2020-08-05,2020,August,Wednesday,5,218,16,2020-08-05,2020,August,Wednesday,5,218,17,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,,BM,1,,500.0,STOLEN,390,"{'type': 'Point', 'coordinates': (-79.59507013, 43.74814085)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-396,7115,GO-20209021664,THEFT UNDER,2020-08-21,2020,August,Friday,21,234,17,2020-08-28,2020,August,Friday,28,241,19,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Apartment (Rooming House, Condo)",Apartment,SU,,MT,21,GRY,200.0,STOLEN,391,"{'type': 'Point', 'coordinates': (-79.58578825, 43.75097753)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-397,7905,GO-20142058713,THEFT UNDER,2014-05-10,2014,May,Saturday,10,130,16,2014-05-10,2014,May,Saturday,10,130,17,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,SUPERCYCLE,,MT,10,ONG,,STOLEN,392,"{'type': 'Point', 'coordinates': (-79.58491856, 43.73877053)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-398,8247,GO-20142388869,THEFT UNDER,2014-06-25,2014,June,Wednesday,25,176,15,2014-06-28,2014,June,Saturday,28,179,19,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,21 SPEED,MT,21,WHI,240.0,STOLEN,393,"{'type': 'Point', 'coordinates': (-79.58919312, 43.74109549)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-399,21321,GO-20181343876,THEFT UNDER - BICYCLE,2018-07-23,2018,July,Monday,23,204,9,2018-07-23,2018,July,Monday,23,204,9,D23,Toronto,7,Willowridge-Martingrove-Richview (7),"Open Areas (Lakes, Parks, Rivers)",Outside,UNKNOWN MAKE,,MT,0,BLK,,STOLEN,408,"{'type': 'Point', 'coordinates': (-79.54484582, 43.68162714)}",Willowridge-Martingrove-Richview,7,No Designation,22156,21343,0.038,8721,8509,4007,5.53,9360,6220,515,2380,140,20,65,0.002136752136752137
-400,8333,GO-20142476683,THEFT UNDER,2014-07-11,2014,July,Friday,11,192,13,2014-07-11,2014,July,Friday,11,192,20,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GENESIS,,MT,27,GRN,600.0,STOLEN,394,"{'type': 'Point', 'coordinates': (-79.58033521, 43.73496126)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-401,9059,GO-20143104858,THEFT UNDER,2014-10-14,2014,October,Tuesday,14,287,18,2014-10-14,2014,October,Tuesday,14,287,21,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SCHWINN,,MT,24,BLUWHI,300.0,STOLEN,395,"{'type': 'Point', 'coordinates': (-79.58207638, 43.74326507)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-402,9961,GO-20151154351,THEFT UNDER,2015-07-04,2015,July,Saturday,4,185,20,2015-07-08,2015,July,Wednesday,8,189,16,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SUPERCYCLE,SC1800,RG,18,BLK,140.0,STOLEN,396,"{'type': 'Point', 'coordinates': (-79.58931312, 43.7584621)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-403,11990,GO-20161352997,THEFT UNDER - BICYCLE,2016-07-31,2016,July,Sunday,31,213,21,2016-08-01,2016,August,Monday,1,214,21,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,UNKNOWN,MT,0,GRN,500.0,STOLEN,397,"{'type': 'Point', 'coordinates': (-79.58578825, 43.75097753)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-404,12008,GO-20161383981,THEFT UNDER - BICYCLE,2016-08-06,2016,August,Saturday,6,219,14,2016-08-06,2016,August,Saturday,6,219,14,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,CRUISER,RG,7,BLUGRY,400.0,STOLEN,398,"{'type': 'Point', 'coordinates': (-79.58207638, 43.74326507)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-405,12098,GO-20161443824,THEFT UNDER - BICYCLE,2016-07-31,2016,July,Sunday,31,213,10,2016-08-15,2016,August,Monday,15,228,20,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),Schools During Un-Supervised Activity,Educational,OTHER,OTHER,RG,1,GRN,200.0,STOLEN,399,"{'type': 'Point', 'coordinates': (-79.59033164, 43.73401277)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-406,12167,GO-20161488465,B&E,2016-08-07,2016,August,Sunday,7,220,20,2016-08-22,2016,August,Monday,22,235,22,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Apartment (Rooming House, Condo)",Apartment,CCM,DS-650,MT,12,REDWHI,650.0,STOLEN,400,"{'type': 'Point', 'coordinates': (-79.58578825, 43.75097753)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-407,12310,GO-20169010218,THEFT UNDER - BICYCLE,2016-09-03,2016,September,Saturday,3,247,21,2016-09-09,2016,September,Friday,9,253,18,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),Bar / Restaurant,Commercial,OT,TRAFIK,RG,18,GRY,550.0,STOLEN,401,"{'type': 'Point', 'coordinates': (-79.58578825, 43.75097753)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-408,12525,GO-20169011423,THEFT UNDER - BICYCLE,2016-10-01,2016,October,Saturday,1,275,16,2016-10-01,2016,October,Saturday,1,275,20,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),Convenience Stores,Commercial,HF,AH15LOOO420,MT,18,BLK,190.0,STOLEN,402,"{'type': 'Point', 'coordinates': (-79.59855797, 43.7509036)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-409,12577,GO-20161787228,B&E W'INTENT,2016-10-07,2016,October,Friday,7,281,13,2016-10-07,2016,October,Friday,7,281,20,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Single Home, House (Attach Garage, Cottage, Mobile)",House,IRON HORSE,,MT,21,BLU,400.0,STOLEN,403,"{'type': 'Point', 'coordinates': (-79.58264743, 43.73839195)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-410,14586,GO-20191883854,THEFT UNDER,2019-09-29,2019,September,Sunday,29,272,16,2019-09-30,2019,September,Monday,30,273,15,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),Unknown,Other,OTHER,,OT,1,,,STOLEN,404,"{'type': 'Point', 'coordinates': (-79.58207638, 43.74326507)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-411,14653,GO-20179007389,THEFT UNDER - SHOPLIFTING,2017-06-01,2017,June,Thursday,1,152,18,2017-06-02,2017,June,Friday,2,153,14,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,AIRWALK,OT,1,BLK,1200.0,STOLEN,405,"{'type': 'Point', 'coordinates': (-79.58207638, 43.74326507)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-412,14681,GO-20171358405,THEFT UNDER - BICYCLE,2017-07-28,2017,July,Friday,28,209,16,2017-07-28,2017,July,Friday,28,209,20,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,SUPERCYCLE,MT,18,GRN,,STOLEN,406,"{'type': 'Point', 'coordinates': (-79.58491856, 43.73877053)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-413,14941,GO-2015439417,THEFT UNDER,2015-03-15,2015,March,Sunday,15,74,11,2015-03-15,2015,March,Sunday,15,74,12,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,STUNT JUMPER,MT,20,BLKRED,2200.0,STOLEN,407,"{'type': 'Point', 'coordinates': (-79.59532854, 43.74428838)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-414,24441,GO-20149008610,THEFT UNDER,2014-12-07,2014,December,Sunday,7,341,3,2014-12-07,2014,December,Sunday,7,341,19,D22,Toronto,19,Long Branch (19),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,MT,15,,500.0,STOLEN,1131,"{'type': 'Point', 'coordinates': (-79.53265608, 43.59142483)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-415,22060,GO-20159003606,THEFT UNDER,2015-06-13,2015,June,Saturday,13,164,17,2015-06-14,2015,June,Sunday,14,165,1,D23,Toronto,7,Willowridge-Martingrove-Richview (7),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,10,RED,150.0,STOLEN,409,"{'type': 'Point', 'coordinates': (-79.55957728, 43.68878136)}",Willowridge-Martingrove-Richview,7,No Designation,22156,21343,0.038,8721,8509,4007,5.53,9360,6220,515,2380,140,20,65,0.002136752136752137
-416,22153,GO-20179008225,THEFT UNDER - BICYCLE,2017-06-15,2017,June,Thursday,15,166,23,2017-06-16,2017,June,Friday,16,167,13,D23,Toronto,7,Willowridge-Martingrove-Richview (7),"Single Home, House (Attach Garage, Cottage, Mobile)",House,HF,GO CART,TR,1,LGR,150.0,STOLEN,410,"{'type': 'Point', 'coordinates': (-79.53962507, 43.68785105)}",Willowridge-Martingrove-Richview,7,No Designation,22156,21343,0.038,8721,8509,4007,5.53,9360,6220,515,2380,140,20,65,0.002136752136752137
-417,24447,GO-2015590170,B&E W'INTENT,2015-04-08,2015,April,Wednesday,8,98,0,2015-04-10,2015,April,Friday,10,100,9,D23,Toronto,7,Willowridge-Martingrove-Richview (7),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,,RG,10,BLK,600.0,STOLEN,411,"{'type': 'Point', 'coordinates': (-79.53340758, 43.68682917)}",Willowridge-Martingrove-Richview,7,No Designation,22156,21343,0.038,8721,8509,4007,5.53,9360,6220,515,2380,140,20,65,0.002136752136752137
-418,24469,GO-20159005169,THEFT UNDER,2015-07-31,2015,July,Friday,31,212,7,2015-07-31,2015,July,Friday,31,212,8,D23,Toronto,7,Willowridge-Martingrove-Richview (7),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,MT,21,BLK,500.0,STOLEN,412,"{'type': 'Point', 'coordinates': (-79.54054889000001, 43.68539112)}",Willowridge-Martingrove-Richview,7,No Designation,22156,21343,0.038,8721,8509,4007,5.53,9360,6220,515,2380,140,20,65,0.002136752136752137
-419,12135,GO-20169008929,THEFT UNDER,2016-08-17,2016,August,Wednesday,17,230,0,2016-08-17,2016,August,Wednesday,17,230,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM 1,OT,27,WHI,500.0,STOLEN,413,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-420,24494,GO-20151775820,THEFT FROM MOTOR VEHICLE UNDER,2015-10-13,2015,October,Tuesday,13,286,23,2015-10-15,2015,October,Thursday,15,288,9,D23,Toronto,7,Willowridge-Martingrove-Richview (7),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,MTN,MT,21,GRYBLU,600.0,STOLEN,414,"{'type': 'Point', 'coordinates': (-79.5440883, 43.68680133)}",Willowridge-Martingrove-Richview,7,No Designation,22156,21343,0.038,8721,8509,4007,5.53,9360,6220,515,2380,140,20,65,0.002136752136752137
-421,17926,GO-20142304975,B&E W'INTENT,2014-06-11,2014,June,Wednesday,11,162,20,2014-06-16,2014,June,Monday,16,167,20,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FUJI,UNKNOWN,MT,12,GRY,100.0,STOLEN,415,"{'type': 'Point', 'coordinates': (-79.54465616, 43.65517871)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-422,7349,GO-20209024386,THEFT UNDER,2020-09-24,2020,September,Thursday,24,268,8,2020-09-24,2020,September,Thursday,24,268,17,D32,Toronto,33,Clanton Park (33),Ttc Subway Station,Transit,NO,,MT,18,,1000.0,STOLEN,2924,"{'type': 'Point', 'coordinates': (-79.4528229, 43.73338366)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056
-423,17663,GO-20199036266,THEFT UNDER,2019-11-03,2019,November,Sunday,3,307,10,2019-11-03,2019,November,Sunday,3,307,13,D22,Toronto,11,Eringate-Centennial-West Deane (11),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,30,GRY,700.0,STOLEN,416,"{'type': 'Point', 'coordinates': (-79.57240399, 43.655045730000005)}",Eringate-Centennial-West Deane,11,No Designation,18588,18810,-0.012,6977,6863,2171,8.56,8665,5980,465,1945,180,35,75,0.004039238315060588
-424,17367,GO-20209019433,THEFT UNDER,2020-08-05,2020,August,Wednesday,5,218,16,2020-08-05,2020,August,Wednesday,5,218,17,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,,BM,1,GLD,500.0,STOLEN,417,"{'type': 'Point', 'coordinates': (-79.59507013, 43.74814085)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-425,4498,GO-20199018698,THEFT UNDER,2019-06-13,2019,June,Thursday,13,164,12,2019-06-15,2019,June,Saturday,15,166,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,TUXEDO,RG,9,SIL,1000.0,STOLEN,418,"{'type': 'Point', 'coordinates': (-79.48480515, 43.62040835)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-426,17946,GO-20142894790,B&E,2014-08-04,2014,August,Monday,4,216,3,2014-09-12,2014,September,Friday,12,255,11,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,MT,21,GRN,300.0,STOLEN,419,"{'type': 'Point', 'coordinates': (-79.55520706, 43.64161229)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-427,17989,GO-20151523136,PROPERTY - FOUND,2015-09-03,2015,September,Thursday,3,246,16,2015-09-03,2015,September,Thursday,3,246,16,D22,Toronto,14,Islington-City Centre West (14),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RALEIGH,5 SPEED,RG,5,BLU,150.0,UNKNOWN,420,"{'type': 'Point', 'coordinates': (-79.52871289, 43.64877261)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-428,17996,GO-20159007426,THEFT UNDER,2015-09-15,2015,September,Tuesday,15,258,20,2015-09-19,2015,September,Saturday,19,262,17,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,,SALONO 6.2 05,MT,5,WHI,176.0,STOLEN,421,"{'type': 'Point', 'coordinates': (-79.53191599, 43.64524669)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-429,18009,GO-20159011110,THEFT UNDER,2015-12-19,2015,December,Saturday,19,353,12,2015-12-20,2015,December,Sunday,20,354,12,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,3,BLK,0.0,STOLEN,422,"{'type': 'Point', 'coordinates': (-79.51717476, 43.62420954)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-430,18021,GO-20169004153,THEFT UNDER - SHOPLIFTING,2016-04-27,2016,April,Wednesday,27,118,14,2016-05-04,2016,May,Wednesday,4,125,20,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RG,10,BLK,900.0,STOLEN,423,"{'type': 'Point', 'coordinates': (-79.55467522, 43.6328036)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-431,18031,GO-20169007656,THEFT UNDER - BICYCLE,2016-07-22,2016,July,Friday,22,204,19,2016-07-23,2016,July,Saturday,23,205,14,D22,Toronto,14,Islington-City Centre West (14),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,AIR,BM,1,YEL,272.0,STOLEN,424,"{'type': 'Point', 'coordinates': (-79.54219042, 43.64026329000001)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-432,18045,GO-20169008955,THEFT UNDER - BICYCLE,2016-08-17,2016,August,Wednesday,17,230,17,2016-08-17,2016,August,Wednesday,17,230,18,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,XPH,EL,32,BLK,3000.0,STOLEN,425,"{'type': 'Point', 'coordinates': (-79.54169472, 43.64037987)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-433,18057,GO-20161872249,THEFT UNDER - BICYCLE,2016-10-19,2016,October,Wednesday,19,293,17,2016-10-21,2016,October,Friday,21,295,11,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,10,RED,600.0,STOLEN,426,"{'type': 'Point', 'coordinates': (-79.52650323, 43.64054033)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-434,18058,GO-20161872249,THEFT UNDER - BICYCLE,2016-10-19,2016,October,Wednesday,19,293,17,2016-10-21,2016,October,Friday,21,295,11,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,10,BLU,600.0,STOLEN,427,"{'type': 'Point', 'coordinates': (-79.52650323, 43.64054033)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-435,18059,GO-20161933702,THEFT UNDER - BICYCLE,2016-10-28,2016,October,Friday,28,302,7,2016-10-31,2016,October,Monday,31,305,8,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,GIANT,,MT,21,REDWHI,1000.0,STOLEN,428,"{'type': 'Point', 'coordinates': (-79.53280588, 43.64315759)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-436,18062,GO-20169013400,THEFT UNDER,2016-11-14,2016,November,Monday,14,319,16,2016-11-14,2016,November,Monday,14,319,17,D22,Toronto,14,Islington-City Centre West (14),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KO,,MT,27,BLU,800.0,STOLEN,429,"{'type': 'Point', 'coordinates': (-79.55886242, 43.6271621)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-437,18067,GO-20179004587,THEFT UNDER,2017-04-11,2017,April,Tuesday,11,101,19,2017-04-11,2017,April,Tuesday,11,101,22,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,FJ,ROUBAIX,RC,12,GRY,1000.0,STOLEN,430,"{'type': 'Point', 'coordinates': (-79.53702637, 43.63768607)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-438,18087,GO-20179009838,THEFT UNDER - BICYCLE,2017-07-08,2017,July,Saturday,8,189,18,2017-07-10,2017,July,Monday,10,191,10,D22,Toronto,14,Islington-City Centre West (14),Ttc Subway Station,Transit,GI,ROVE 0,TO,9,SIL,950.0,STOLEN,431,"{'type': 'Point', 'coordinates': (-79.5379751, 43.6385254)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-439,20979,GO-20199000849,THEFT UNDER - BICYCLE,2019-01-07,2019,January,Monday,7,7,23,2019-01-08,2019,January,Tuesday,8,8,11,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,6,CRM,0.0,STOLEN,432,"{'type': 'Point', 'coordinates': (-79.52198822, 43.6220213)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-440,21039,GO-20199025436,THEFT UNDER,2019-08-08,2019,August,Thursday,8,220,17,2019-08-08,2019,August,Thursday,8,220,20,D22,Toronto,14,Islington-City Centre West (14),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,SU,,RG,5,BLU,150.0,STOLEN,433,"{'type': 'Point', 'coordinates': (-79.55847224, 43.6455629)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-441,21147,GO-20209015663,THEFT UNDER,2020-06-05,2020,June,Friday,5,157,3,2020-06-18,2020,June,Thursday,18,170,16,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,SU,,RG,30,YEL,0.0,STOLEN,434,"{'type': 'Point', 'coordinates': (-79.55766102, 43.64148524)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-442,21153,GO-20201183873,THEFT UNDER,2020-06-26,2020,June,Friday,26,178,23,2020-06-27,2020,June,Saturday,27,179,14,D22,Toronto,14,Islington-City Centre West (14),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORTHROCK,UXCW,MT,21,WHI,480.0,STOLEN,435,"{'type': 'Point', 'coordinates': (-79.54886257, 43.64498008000001)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-443,21215,GO-20179014964,THEFT UNDER - BICYCLE,2017-09-16,2017,September,Saturday,16,259,15,2017-09-16,2017,September,Saturday,16,259,16,D22,Toronto,14,Islington-City Centre West (14),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,DB,OVERDRIVE 29,MT,24,RED,800.0,STOLEN,436,"{'type': 'Point', 'coordinates': (-79.55847224, 43.6455629)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-444,21272,GO-2018895937,THEFT UNDER - BICYCLE,2018-05-18,2018,May,Friday,18,138,9,2018-05-18,2018,May,Friday,18,138,11,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,OT,21,BLKONG,450.0,STOLEN,437,"{'type': 'Point', 'coordinates': (-79.55866947, 43.64407064)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-445,21301,GO-20181172756,B&E,2018-06-28,2018,June,Thursday,28,179,2,2018-06-28,2018,June,Thursday,28,179,3,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,DIADORA,,MT,20,PLE,500.0,STOLEN,438,"{'type': 'Point', 'coordinates': (-79.55763197, 43.61821569)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-446,8518,GO-20142561808,THEFT UNDER,2014-07-24,2014,July,Thursday,24,205,11,2014-07-24,2014,July,Thursday,24,205,11,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,7.4 WSD,MT,10,BLU,829.0,STOLEN,486,"{'type': 'Point', 'coordinates': (-79.51170915, 43.648253)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-447,21339,GO-20189028406,THEFT UNDER - BICYCLE,2018-08-26,2018,August,Sunday,26,238,15,2018-08-29,2018,August,Wednesday,29,241,12,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,STUMPJUMPER,MT,11,BLK,2000.0,STOLEN,439,"{'type': 'Point', 'coordinates': (-79.52226161, 43.64492672)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-448,21340,GO-20189028406,THEFT UNDER - BICYCLE,2018-08-26,2018,August,Sunday,26,238,15,2018-08-29,2018,August,Wednesday,29,241,12,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,STUMPJUMPER,MT,10,BLK,2000.0,STOLEN,440,"{'type': 'Point', 'coordinates': (-79.52226161, 43.64492672)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-449,21998,GO-20141878098,THEFT UNDER,2012-08-30,2012,August,Thursday,30,243,12,2014-04-13,2014,April,Sunday,13,103,17,D22,Toronto,14,Islington-City Centre West (14),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,ROCKY MOUNTAIN,,MT,24,BLK,1000.0,STOLEN,441,"{'type': 'Point', 'coordinates': (-79.5307612, 43.64465526)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-450,22032,GO-20142645902,THEFT UNDER,2014-08-06,2014,August,Wednesday,6,218,2,2014-08-06,2014,August,Wednesday,6,218,10,D22,Toronto,14,Islington-City Centre West (14),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,RC,21,BLK,600.0,STOLEN,442,"{'type': 'Point', 'coordinates': (-79.53338536, 43.6474268)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-451,22040,GO-20149007964,THEFT UNDER,2014-10-02,2014,October,Thursday,2,275,0,2014-11-02,2014,November,Sunday,2,306,21,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,INDIE 4,TO,24,BGE,600.0,STOLEN,443,"{'type': 'Point', 'coordinates': (-79.53702637, 43.63768607)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-452,22041,GO-20149007964,THEFT UNDER,2014-10-02,2014,October,Thursday,2,275,0,2014-11-02,2014,November,Sunday,2,306,21,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,ARIEL,TO,24,PLE,650.0,STOLEN,444,"{'type': 'Point', 'coordinates': (-79.53702637, 43.63768607)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-453,22056,GO-2015772062,PROPERTY - FOUND,2015-05-08,2015,May,Friday,8,128,21,2015-05-09,2015,May,Saturday,9,129,9,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,MT,21,GRY,,UNKNOWN,445,"{'type': 'Point', 'coordinates': (-79.55653313, 43.64354149)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-454,22058,GO-2015808702,THEFT UNDER,2015-05-14,2015,May,Thursday,14,134,16,2015-05-15,2015,May,Friday,15,135,8,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,MARIN OR MARINO,CALIFORNIA,OT,36,,800.0,STOLEN,446,"{'type': 'Point', 'coordinates': (-79.52340177000002, 43.64465036)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-455,22059,GO-20159002933,THEFT UNDER,2015-05-19,2015,May,Tuesday,19,139,11,2015-05-20,2015,May,Wednesday,20,140,12,D22,Toronto,14,Islington-City Centre West (14),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,DON'T KNOW,MT,6,RED,250.0,STOLEN,447,"{'type': 'Point', 'coordinates': (-79.54078479000002, 43.65436156)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-456,22098,GO-20169001246,THEFT UNDER,2016-02-08,2016,February,Monday,8,39,10,2016-02-08,2016,February,Monday,8,39,10,D22,Toronto,14,Islington-City Centre West (14),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,TRICROSS SPORT,RC,21,BLK,1200.0,STOLEN,448,"{'type': 'Point', 'coordinates': (-79.53760351, 43.63897842)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-457,22105,GO-20169005441,THEFT UNDER,2016-06-07,2016,June,Tuesday,7,159,9,2016-06-07,2016,June,Tuesday,7,159,19,D22,Toronto,14,Islington-City Centre West (14),Ttc Subway Station,Transit,OT,URBANIA 2.0,TO,18,BLK,700.0,STOLEN,449,"{'type': 'Point', 'coordinates': (-79.54005153, 43.63611086)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-458,23816,GO-20201419941,B&E,2020-07-26,2020,July,Sunday,26,208,23,2020-07-30,2020,July,Thursday,30,212,15,D22,Toronto,14,Islington-City Centre West (14),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,AC,MT,10,GRNSIL,1500.0,STOLEN,450,"{'type': 'Point', 'coordinates': (-79.5407359, 43.65070675)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-459,24143,GO-20209000930,THEFT UNDER,2020-01-08,2020,January,Wednesday,8,8,18,2020-01-09,2020,January,Thursday,9,9,9,D22,Toronto,14,Islington-City Centre West (14),Unknown,Other,UK,HOVERBOARD,OT,25,BLK,900.0,STOLEN,451,"{'type': 'Point', 'coordinates': (-79.55467522, 43.6328036)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-460,24186,GO-20209014911,THEFT UNDER,2020-05-27,2020,May,Wednesday,27,148,18,2020-06-08,2020,June,Monday,8,160,22,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,OT,SIRRUS V,RG,7,RED,620.0,STOLEN,452,"{'type': 'Point', 'coordinates': (-79.53280588, 43.64315759)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-461,24222,GO-20171575787,THEFT UNDER - BICYCLE,2017-08-30,2017,August,Wednesday,30,242,23,2017-08-31,2017,August,Thursday,31,243,9,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,UNKNOWN,RG,10,BLU,,STOLEN,453,"{'type': 'Point', 'coordinates': (-79.5311665, 43.64606201)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-462,24275,GO-2018176549,THEFT UNDER - SHOPLIFTING,2018-01-28,2018,January,Sunday,28,28,16,2018-01-28,2018,January,Sunday,28,28,18,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,SANCTION,MT,11,RED,3000.0,STOLEN,454,"{'type': 'Point', 'coordinates': (-79.55686589, 43.61012637)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-463,24426,GO-20142447209,THEFT UNDER,2014-07-06,2014,July,Sunday,6,187,17,2014-07-07,2014,July,Monday,7,188,9,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCOTT,SPARK,MT,30,BLKRED,3700.0,STOLEN,455,"{'type': 'Point', 'coordinates': (-79.52751314, 43.62280101)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-464,24431,GO-20142614179,B&E,2014-07-31,2014,July,Thursday,31,212,14,2014-08-01,2014,August,Friday,1,213,15,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,,RG,21,BLU,400.0,STOLEN,456,"{'type': 'Point', 'coordinates': (-79.55310783, 43.65163337)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-465,24432,GO-20142614179,B&E,2014-07-31,2014,July,Thursday,31,212,14,2014-08-01,2014,August,Friday,1,213,15,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ROCKY MOUNTAIN,ROCKHOPPER,MT,21,BLK,1100.0,STOLEN,457,"{'type': 'Point', 'coordinates': (-79.55310783, 43.65163337)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-466,24452,GO-20159003054,THEFT UNDER,2015-05-19,2015,May,Tuesday,19,139,17,2015-05-21,2015,May,Thursday,21,141,20,D22,Toronto,14,Islington-City Centre West (14),Ttc Subway Station,Transit,OT,,MT,12,BGE,,STOLEN,458,"{'type': 'Point', 'coordinates': (-79.52200305, 43.6459276)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-467,24456,GO-2015903587,THEFT UNDER,2015-05-29,2015,May,Friday,29,149,17,2015-05-30,2015,May,Saturday,30,150,11,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,MOUNTAIN,MT,18,BLUBLK,,STOLEN,459,"{'type': 'Point', 'coordinates': (-79.53674983, 43.64505274)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-468,24493,GO-20151771544,THEFT UNDER,2015-10-11,2015,October,Sunday,11,284,11,2015-10-14,2015,October,Wednesday,14,287,14,D22,Toronto,14,Islington-City Centre West (14),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,,RC,0,BLKBLU,4500.0,STOLEN,460,"{'type': 'Point', 'coordinates': (-79.52006087, 43.64542592)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-469,24499,GO-20159009884,THEFT UNDER,2015-11-18,2015,November,Wednesday,18,322,20,2015-11-18,2015,November,Wednesday,18,322,21,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,EM,,EL,35,BLK,1700.0,STOLEN,461,"{'type': 'Point', 'coordinates': (-79.53292993, 43.64413876)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-470,24556,GO-20169014059,THEFT UNDER - BICYCLE,2016-11-27,2016,November,Sunday,27,332,12,2016-11-30,2016,November,Wednesday,30,335,20,D22,Toronto,14,Islington-City Centre West (14),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,ALLEZ SPORT,TO,18,BLK,400.0,STOLEN,462,"{'type': 'Point', 'coordinates': (-79.52421459, 43.62151707)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-471,33,GO-20162305570,B&E,2016-12-30,2016,December,Friday,30,365,6,2016-12-30,2016,December,Friday,30,365,6,D22,Toronto,15,Kingsway South (15),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,OT,24,,2000.0,STOLEN,463,"{'type': 'Point', 'coordinates': (-79.51191722, 43.65864827)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-472,34,GO-20162305570,B&E,2016-12-30,2016,December,Friday,30,365,6,2016-12-30,2016,December,Friday,30,365,6,D22,Toronto,15,Kingsway South (15),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,VITA COMP DISC,RC,24,BLKOTH,1500.0,STOLEN,464,"{'type': 'Point', 'coordinates': (-79.51191722, 43.65864827)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-473,741,GO-20179009100,THEFT UNDER - BICYCLE,2017-06-27,2017,June,Tuesday,27,178,12,2017-06-28,2017,June,Wednesday,28,179,15,D22,Toronto,15,Kingsway South (15),Ttc Subway Station,Transit,GI,ROAM,TO,21,BLK,1200.0,STOLEN,465,"{'type': 'Point', 'coordinates': (-79.49540608000001, 43.64960616)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-474,1556,GO-20179016118,THEFT OF EBIKE UNDER $5000,2017-09-27,2017,September,Wednesday,27,270,7,2017-09-29,2017,September,Friday,29,272,17,D22,Toronto,15,Kingsway South (15),"Apartment (Rooming House, Condo)",Apartment,UK,,EL,35,RED,1000.0,STOLEN,466,"{'type': 'Point', 'coordinates': (-79.49838508000002, 43.65005631)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-475,2323,GO-2018870759,THEFT UNDER,2018-05-14,2018,May,Monday,14,134,9,2018-05-14,2018,May,Monday,14,134,17,D22,Toronto,15,Kingsway South (15),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,MT,18,BLUYEL,200.0,STOLEN,467,"{'type': 'Point', 'coordinates': (-79.49540608000001, 43.64960616)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-476,2694,GO-20189020383,THEFT UNDER - BICYCLE,2018-06-26,2018,June,Tuesday,26,177,7,2018-06-26,2018,June,Tuesday,26,177,15,D22,Toronto,15,Kingsway South (15),Ttc Subway Station,Transit,UK,11864,RG,1,BLU,450.0,STOLEN,468,"{'type': 'Point', 'coordinates': (-79.50655965, 43.64842688)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-477,3504,GO-20189030991,THEFT UNDER - BICYCLE,2018-09-17,2018,September,Monday,17,260,9,2018-09-18,2018,September,Tuesday,18,261,15,D22,Toronto,15,Kingsway South (15),Ttc Subway Station,Transit,OT,,OT,12,BGE,500.0,STOLEN,469,"{'type': 'Point', 'coordinates': (-79.51170915, 43.648253)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-478,3858,GO-20182111484,PROPERTY - FOUND,2018-11-16,2018,November,Friday,16,320,10,2018-11-16,2018,November,Friday,16,320,10,D22,Toronto,15,Kingsway South (15),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,CLASSIC CRUISER,TO,1,GRY,,UNKNOWN,470,"{'type': 'Point', 'coordinates': (-79.50750362, 43.65347593)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-479,4413,GO-20199017460,THEFT UNDER,2019-06-04,2019,June,Tuesday,4,155,12,2019-06-05,2019,June,Wednesday,5,156,9,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,OT,21,BRN,500.0,STOLEN,471,"{'type': 'Point', 'coordinates': (-79.50484874, 43.65462305)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-480,4534,GO-20199019150,THEFT UNDER,2019-06-18,2019,June,Tuesday,18,169,8,2019-06-18,2019,June,Tuesday,18,169,19,D22,Toronto,15,Kingsway South (15),Other Passenger Train Station,Transit,KO,,RG,18,GRY,500.0,STOLEN,472,"{'type': 'Point', 'coordinates': (-79.50772138000002, 43.64817027)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-481,4722,GO-20199021618,THEFT UNDER,2019-07-09,2019,July,Tuesday,9,190,12,2019-07-09,2019,July,Tuesday,9,190,15,D22,Toronto,15,Kingsway South (15),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UK,WHITE SPECIALIZ,RG,20,WHI,800.0,STOLEN,473,"{'type': 'Point', 'coordinates': (-79.5140734, 43.64771876)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-482,4762,GO-20199022083,THEFT UNDER,2019-07-11,2019,July,Thursday,11,192,13,2019-07-12,2019,July,Friday,12,193,16,D22,Toronto,15,Kingsway South (15),Schools During Supervised Activity,Educational,OT,ROCKHOPPER,MT,27,GRN,500.0,STOLEN,474,"{'type': 'Point', 'coordinates': (-79.5214032, 43.65033128)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-483,5141,GO-20199027370,THEFT UNDER,2019-08-23,2019,August,Friday,23,235,10,2019-08-23,2019,August,Friday,23,235,11,D22,Toronto,15,Kingsway South (15),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,GIANT,ROAM2,MT,18,GRY,850.0,STOLEN,475,"{'type': 'Point', 'coordinates': (-79.5140734, 43.64771876)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-484,6086,GO-20209011595,THEFT UNDER,2020-04-18,2020,April,Saturday,18,109,16,2020-04-20,2020,April,Monday,20,111,18,D22,Toronto,15,Kingsway South (15),"Apartment (Rooming House, Condo)",Apartment,TR,FX SPORT 5,RC,22,BLK,2349.0,STOLEN,476,"{'type': 'Point', 'coordinates': (-79.49838508000002, 43.65005631)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-485,6087,GO-20209011595,THEFT UNDER,2020-04-18,2020,April,Saturday,18,109,16,2020-04-20,2020,April,Monday,20,111,18,D22,Toronto,15,Kingsway South (15),"Apartment (Rooming House, Condo)",Apartment,OT,SVELTO RRD,RC,22,WHI,1499.0,STOLEN,477,"{'type': 'Point', 'coordinates': (-79.49838508000002, 43.65005631)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-486,6387,GO-20201098809,THEFT OF MOTOR VEHICLE,2020-06-14,2020,June,Sunday,14,166,23,2020-06-15,2020,June,Monday,15,167,9,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,RG,24,WHI,700.0,STOLEN,478,"{'type': 'Point', 'coordinates': (-79.50416327, 43.65813045)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-487,7050,GO-20209021040,THEFT UNDER,2020-08-20,2020,August,Thursday,20,233,9,2020-08-22,2020,August,Saturday,22,235,22,D22,Toronto,15,Kingsway South (15),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,TO,7,PLE,350.0,STOLEN,479,"{'type': 'Point', 'coordinates': (-79.49622075, 43.64979072)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-488,7439,GO-20209026034,THEFT UNDER,2020-10-09,2020,October,Friday,9,283,13,2020-10-10,2020,October,Saturday,10,284,16,D22,Toronto,15,Kingsway South (15),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MA,2016 ARGENTA EL,RC,10,BLK,1155.0,STOLEN,480,"{'type': 'Point', 'coordinates': (-79.5140734, 43.64771876)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-489,7461,GO-20209026349,THEFT UNDER,2020-10-12,2020,October,Monday,12,286,16,2020-10-13,2020,October,Tuesday,13,287,17,D22,Toronto,15,Kingsway South (15),Schools During Un-Supervised Activity,Educational,NO,KOKANEE,MT,21,BLK,100.0,STOLEN,481,"{'type': 'Point', 'coordinates': (-79.50980395, 43.65910215)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-490,8103,GO-20142270994,THEFT UNDER,2014-06-11,2014,June,Wednesday,11,162,19,2014-06-11,2014,June,Wednesday,11,162,20,D22,Toronto,15,Kingsway South (15),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,ECCLECTIC,OT,6,SIL,,STOLEN,482,"{'type': 'Point', 'coordinates': (-79.51132657, 43.64736434)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-491,8122,GO-20149003965,THEFT UNDER,2014-06-07,2014,June,Saturday,7,158,18,2014-06-10,2014,June,Tuesday,10,161,20,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,HYDRA,TO,15,WHI,350.0,STOLEN,483,"{'type': 'Point', 'coordinates': (-79.5035418, 43.66049351)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-492,8330,GO-20142474895,B&E,2014-07-11,2014,July,Friday,11,192,4,2014-07-11,2014,July,Friday,11,192,4,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ORBEA,ORDU,RC,10,BLK,10000.0,STOLEN,484,"{'type': 'Point', 'coordinates': (-79.52023754, 43.65397873)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-493,8331,GO-20142474895,B&E,2014-07-11,2014,July,Friday,11,192,4,2014-07-11,2014,July,Friday,11,192,4,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CERVELO,P3,RC,18,GRYRED,5000.0,STOLEN,485,"{'type': 'Point', 'coordinates': (-79.52023754, 43.65397873)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-494,8885,GO-20142916850,THEFT UNDER,2014-09-14,2014,September,Sunday,14,257,23,2014-09-15,2014,September,Monday,15,258,19,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,VITA ELITE,RC,14,WHI,1350.0,RECOVERED,487,"{'type': 'Point', 'coordinates': (-79.51518538, 43.65325393)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-495,8886,GO-20142916850,THEFT UNDER,2014-09-14,2014,September,Sunday,14,257,23,2014-09-15,2014,September,Monday,15,258,19,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MONGOOSE,,MT,10,RED,300.0,RECOVERED,488,"{'type': 'Point', 'coordinates': (-79.51518538, 43.65325393)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-496,9101,GO-20143154742,THEFT UNDER,2014-10-22,2014,October,Wednesday,22,295,14,2014-10-22,2014,October,Wednesday,22,295,17,D22,Toronto,15,Kingsway South (15),"Commercial Dwelling Unit (Hotel, Motel, B & B, Short Term Rental)",Commercial,KONA,DEW PLUS,TO,12,BRN,900.0,STOLEN,489,"{'type': 'Point', 'coordinates': (-79.52636196, 43.65136349)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-497,9338,GO-2015478306,THEFT UNDER,2015-03-21,2015,March,Saturday,21,80,22,2015-03-21,2015,March,Saturday,21,80,22,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,MT,0,GLD,25.0,STOLEN,490,"{'type': 'Point', 'coordinates': (-79.50510152, 43.65693102)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-498,9339,GO-2015478306,THEFT UNDER,2015-03-21,2015,March,Saturday,21,80,22,2015-03-21,2015,March,Saturday,21,80,22,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,0,PLE,25.0,STOLEN,491,"{'type': 'Point', 'coordinates': (-79.50510152, 43.65693102)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-499,9340,GO-2015478306,THEFT UNDER,2015-03-21,2015,March,Saturday,21,80,22,2015-03-21,2015,March,Saturday,21,80,22,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,MT,0,WHI,25.0,STOLEN,492,"{'type': 'Point', 'coordinates': (-79.50510152, 43.65693102)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-500,9371,GO-2015568064,THEFT UNDER,2015-01-31,2015,January,Saturday,31,31,15,2015-04-06,2015,April,Monday,6,96,11,D22,Toronto,15,Kingsway South (15),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CANNONDALE,12 QUICK,MT,21,BLKRED,1350.0,STOLEN,493,"{'type': 'Point', 'coordinates': (-79.49540608000001, 43.64960616)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-501,9738,GO-2015928881,THEFT UNDER,2015-06-03,2015,June,Wednesday,3,154,9,2015-06-03,2015,June,Wednesday,3,154,12,D22,Toronto,15,Kingsway South (15),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,UNKNOWN,MT,6,BLKGRN,600.0,STOLEN,494,"{'type': 'Point', 'coordinates': (-79.51960669, 43.64940381)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-502,9954,GO-20151141022,B&E,2015-07-02,2015,July,Thursday,2,183,17,2015-07-06,2015,July,Monday,6,187,17,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CERVELO,S3,RC,0,BLK,5000.0,STOLEN,497,"{'type': 'Point', 'coordinates': (-79.5035418, 43.66049351)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-503,9955,GO-20151141022,B&E,2015-07-02,2015,July,Thursday,2,183,17,2015-07-06,2015,July,Monday,6,187,17,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ARGON 18,,RC,0,LBLDBL,2500.0,STOLEN,498,"{'type': 'Point', 'coordinates': (-79.5035418, 43.66049351)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-504,9956,GO-20151141022,B&E,2015-07-02,2015,July,Thursday,2,183,17,2015-07-06,2015,July,Monday,6,187,17,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,VENGE,RC,0,BLKGRY,5000.0,STOLEN,499,"{'type': 'Point', 'coordinates': (-79.5035418, 43.66049351)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-505,10061,GO-20151247147,B&E,2015-07-14,2015,July,Tuesday,14,195,19,2015-07-22,2015,July,Wednesday,22,203,7,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,YORKVILLE,OT,21,GRY,500.0,STOLEN,500,"{'type': 'Point', 'coordinates': (-79.50810177, 43.66034414)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-506,10062,GO-20151247147,B&E,2015-07-14,2015,July,Tuesday,14,195,19,2015-07-22,2015,July,Wednesday,22,203,7,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,YORKVILLE,OT,21,GRY,500.0,STOLEN,501,"{'type': 'Point', 'coordinates': (-79.50810177, 43.66034414)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-507,10540,GO-20159007701,THEFT UNDER,2015-09-24,2015,September,Thursday,24,267,8,2015-09-24,2015,September,Thursday,24,267,13,D22,Toronto,15,Kingsway South (15),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,ESCAPE 1,OT,18,GRY,509.0,STOLEN,502,"{'type': 'Point', 'coordinates': (-79.50746506, 43.65054633)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-508,11072,GO-20169002702,THEFT UNDER - BICYCLE,2016-03-23,2016,March,Wednesday,23,83,15,2016-03-23,2016,March,Wednesday,23,83,17,D22,Toronto,15,Kingsway South (15),Schools During Un-Supervised Activity,Educational,TR,7.0 FX STAGGER,OT,7,SIL,469.0,STOLEN,503,"{'type': 'Point', 'coordinates': (-79.5214032, 43.65033128)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-509,11583,GO-20169006038,THEFT UNDER - BICYCLE,2016-06-16,2016,June,Thursday,16,168,17,2016-06-20,2016,June,Monday,20,172,9,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,RG,21,WHI,576.0,STOLEN,504,"{'type': 'Point', 'coordinates': (-79.50990778, 43.65290101)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-510,11601,GO-20169006144,THEFT UNDER,2016-06-17,2016,June,Friday,17,169,15,2016-06-21,2016,June,Tuesday,21,173,18,D22,Toronto,15,Kingsway South (15),Schools During Un-Supervised Activity,Educational,RM,VAPOR 15,MT,21,GRY,700.0,STOLEN,505,"{'type': 'Point', 'coordinates': (-79.5214032, 43.65033128)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-511,11942,GO-20169007888,THEFT UNDER,2016-07-28,2016,July,Thursday,28,210,12,2016-07-28,2016,July,Thursday,28,210,19,D22,Toronto,15,Kingsway South (15),Ttc Subway Station,Transit,TR,"7.5, 15""",MT,21,DBL,600.0,STOLEN,506,"{'type': 'Point', 'coordinates': (-79.49540608000001, 43.64960616)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-512,12212,GO-20169009573,THEFT UNDER - BICYCLE,2016-08-25,2016,August,Thursday,25,238,9,2016-08-27,2016,August,Saturday,27,240,13,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,,OT,5,BLK,400.0,STOLEN,507,"{'type': 'Point', 'coordinates': (-79.52232358000002, 43.65081043)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-513,14554,GO-20199024777,THEFT UNDER,2019-08-01,2019,August,Thursday,1,213,17,2019-08-02,2019,August,Friday,2,214,16,D22,Toronto,15,Kingsway South (15),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,18,BLK,800.0,STOLEN,508,"{'type': 'Point', 'coordinates': (-79.50796619, 43.64810274)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-514,14730,GO-20179016902,THEFT UNDER,2017-10-10,2017,October,Tuesday,10,283,8,2017-10-10,2017,October,Tuesday,10,283,22,D22,Toronto,15,Kingsway South (15),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,6,BLK,389.0,STOLEN,509,"{'type': 'Point', 'coordinates': (-79.50772138000002, 43.64817027)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-515,14793,GO-20189017450,THEFT UNDER,2018-06-03,2018,June,Sunday,3,154,12,2018-06-05,2018,June,Tuesday,5,156,10,D22,Toronto,15,Kingsway South (15),Go Station,Transit,OT,SPECIALIZED,MT,21,BLK,250.0,STOLEN,510,"{'type': 'Point', 'coordinates': (-79.50655965, 43.64842688)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-516,14926,GO-20142475839,THEFT UNDER,2014-07-10,2014,July,Thursday,10,191,19,2014-07-11,2014,July,Friday,11,192,14,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,AREBA,MT,18,WHI,400.0,STOLEN,511,"{'type': 'Point', 'coordinates': (-79.51718142000001, 43.652305080000005)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-517,14936,GO-20149007240,THEFT UNDER,2014-09-26,2014,September,Friday,26,269,8,2014-09-26,2014,September,Friday,26,269,16,D22,Toronto,15,Kingsway South (15),Schools During Supervised Activity,Educational,CA,SR SUNTOUR,MT,10,RED,500.0,STOLEN,512,"{'type': 'Point', 'coordinates': (-79.5214032, 43.65033128)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-518,17332,GO-20209014386,THEFT UNDER,2020-05-26,2020,May,Tuesday,26,147,21,2020-06-02,2020,June,Tuesday,2,154,9,D22,Toronto,15,Kingsway South (15),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,,RC,12,SIL,750.0,STOLEN,513,"{'type': 'Point', 'coordinates': (-79.49838508000002, 43.65005631)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-519,17366,GO-20209019248,THEFT UNDER,2020-08-02,2020,August,Sunday,2,215,12,2020-08-02,2020,August,Sunday,2,215,23,D22,Toronto,15,Kingsway South (15),Ttc Subway Station,Transit,GI,,RG,10,GRY,800.0,STOLEN,514,"{'type': 'Point', 'coordinates': (-79.51170915, 43.648253)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-520,17404,GO-20202004387,B&E,2020-10-15,2020,October,Thursday,15,289,16,2020-10-22,2020,October,Thursday,22,296,13,D22,Toronto,15,Kingsway South (15),"Private Property Structure (Pool, Shed, Detached Garage)",Other,ROCKHOPPER,,MT,18,SIL,1200.0,STOLEN,515,"{'type': 'Point', 'coordinates': (-79.51191722, 43.65864827)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-521,17661,GO-20199035607,THEFT UNDER,2019-10-27,2019,October,Sunday,27,300,21,2019-10-28,2019,October,Monday,28,301,19,D22,Toronto,15,Kingsway South (15),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ASPECT 920 L,MT,30,WHI,1250.0,STOLEN,516,"{'type': 'Point', 'coordinates': (-79.50200758, 43.64946221)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-522,17739,GO-20171707627,THEFT UNDER - BICYCLE,2017-08-21,2017,August,Monday,21,233,14,2017-09-24,2017,September,Sunday,24,267,11,D22,Toronto,15,Kingsway South (15),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,ESCAPE 2,RC,1,GRY,700.0,STOLEN,517,"{'type': 'Point', 'coordinates': (-79.49838508000002, 43.65005631)}",Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224
-523,1129,GO-20171456567,THEFT UNDER - BICYCLE,2017-08-12,2017,August,Saturday,12,224,22,2017-08-13,2017,August,Sunday,13,225,0,D23,Toronto,8,Humber Heights-Westmount (8),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,,TO,0,,300.0,STOLEN,518,"{'type': 'Point', 'coordinates': (-79.51953311, 43.68590256)}",Humber Heights-Westmount,8,Emerging Neighbourhood,10948,10583,0.034,4261,4136,3981,2.75,4345,2800,205,1200,65,10,55,0.0023014959723820483
-524,17370,GO-20209019495,THEFT UNDER,2020-07-31,2020,July,Friday,31,213,9,2020-08-05,2020,August,Wednesday,5,218,22,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Apartment (Rooming House, Condo)",Apartment,SC,"OB-BREAKER 26""""",MT,21,DBL,299.0,STOLEN,519,"{'type': 'Point', 'coordinates': (-79.58607608, 43.76010263)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-525,12191,GO-20169009380,THEFT UNDER,2016-08-15,2016,August,Monday,15,228,18,2016-08-23,2016,August,Tuesday,23,236,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,SP3,OT,27,GRY,1000.0,STOLEN,520,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-526,17871,GO-20189024775,THEFT UNDER - BICYCLE,2018-07-31,2018,July,Tuesday,31,212,21,2018-08-01,2018,August,Wednesday,1,213,21,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SU,,MT,21,RED,170.0,STOLEN,521,"{'type': 'Point', 'coordinates': (-79.58376752, 43.7468156)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-527,12424,GO-20161688678,THEFT UNDER - BICYCLE,2016-01-10,2016,January,Sunday,10,10,16,2016-09-22,2016,September,Thursday,22,266,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,UTOPIA,OT,21,BLK,,STOLEN,522,"{'type': 'Point', 'coordinates': (-79.48643252, 43.61892859)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-528,18075,GO-20171107656,THEFT UNDER,2017-06-21,2017,June,Wednesday,21,172,12,2017-06-24,2017,June,Saturday,24,175,15,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,FORESTER,2700,SC,1,BLK,2300.0,STOLEN,523,"{'type': 'Point', 'coordinates': (-79.58207638, 43.74326507)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-529,12425,GO-20161688678,THEFT UNDER - BICYCLE,2016-01-10,2016,January,Sunday,10,10,16,2016-09-22,2016,September,Thursday,22,266,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,BODEGA,OT,21,BLK,,STOLEN,524,"{'type': 'Point', 'coordinates': (-79.48643252, 43.61892859)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-530,4528,GO-20199019081,THEFT UNDER,2019-06-13,2019,June,Thursday,13,164,16,2019-06-18,2019,June,Tuesday,18,169,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,OPUS SKETCH,MT,24,RED,1400.0,STOLEN,525,"{'type': 'Point', 'coordinates': (-79.48497603, 43.62140475)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-531,18097,GO-20171288435,THEFT UNDER - BICYCLE,2017-07-18,2017,July,Tuesday,18,199,9,2017-07-18,2017,July,Tuesday,18,199,12,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),Schools During Supervised Activity,Educational,AQUILA,,BM,12,,129.0,RECOVERED,526,"{'type': 'Point', 'coordinates': (-79.59704528, 43.75307715)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-532,12455,GO-20161706999,B&E,2016-09-22,2016,September,Thursday,22,266,18,2016-09-25,2016,September,Sunday,25,269,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,LEMOND,ALPS'DHOR,RC,6,BLKRED,800.0,STOLEN,527,"{'type': 'Point', 'coordinates': (-79.4972373, 43.60240525)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-533,4529,GO-20199019081,THEFT UNDER,2019-06-13,2019,June,Thursday,13,164,16,2019-06-18,2019,June,Tuesday,18,169,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,NO,NORCO VALENCE,RC,24,BLK,1600.0,STOLEN,528,"{'type': 'Point', 'coordinates': (-79.48497603, 43.62140475)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-534,20782,GO-20209018750,THEFT UNDER,2020-07-27,2020,July,Monday,27,209,10,2020-07-28,2020,July,Tuesday,28,210,0,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RC,6,DBL,400.0,STOLEN,529,"{'type': 'Point', 'coordinates': (-79.58207638, 43.74326507)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-535,12503,GO-20161731613,THEFT UNDER - BICYCLE,2016-09-25,2016,September,Sunday,25,269,9,2016-09-29,2016,September,Thursday,29,273,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Universities / Colleges,Educational,OTHER,,RC,0,BLK,400.0,STOLEN,530,"{'type': 'Point', 'coordinates': (-79.50309339, 43.61484445)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-536,2371,GO-2018891767,B&E,2018-05-17,2018,May,Thursday,17,137,2,2018-05-17,2018,May,Thursday,17,137,18,D23,Toronto,8,Humber Heights-Westmount (8),"Apartment (Rooming House, Condo)",Apartment,CA,TRAIL5,MT,21,BLK,1200.0,STOLEN,531,"{'type': 'Point', 'coordinates': (-79.5165076, 43.68647481)}",Humber Heights-Westmount,8,Emerging Neighbourhood,10948,10583,0.034,4261,4136,3981,2.75,4345,2800,205,1200,65,10,55,0.0023014959723820483
-537,18091,GO-20179010168,THEFT UNDER - BICYCLE,2017-07-13,2017,July,Thursday,13,194,21,2017-07-14,2017,July,Friday,14,195,10,D22,Toronto,11,Eringate-Centennial-West Deane (11),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,1,,0.0,STOLEN,532,"{'type': 'Point', 'coordinates': (-79.58403851, 43.66152036)}",Eringate-Centennial-West Deane,11,No Designation,18588,18810,-0.012,6977,6863,2171,8.56,8665,5980,465,1945,180,35,75,0.004039238315060588
-538,3272,GO-20189027205,THEFT UNDER - BICYCLE,2018-08-20,2018,August,Monday,20,232,17,2018-08-20,2018,August,Monday,20,232,19,D23,Toronto,8,Humber Heights-Westmount (8),"Open Areas (Lakes, Parks, Rivers)",Outside,GI,,MT,24,,180.0,STOLEN,533,"{'type': 'Point', 'coordinates': (-79.51310887, 43.6868507)}",Humber Heights-Westmount,8,Emerging Neighbourhood,10948,10583,0.034,4261,4136,3981,2.75,4345,2800,205,1200,65,10,55,0.0023014959723820483
-539,12574,GO-20161784034,B&E,2016-10-06,2016,October,Thursday,6,280,15,2016-10-07,2016,October,Friday,7,281,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,SCHWINN,SUPER SPORT 1,MT,24,,650.0,STOLEN,534,"{'type': 'Point', 'coordinates': (-79.48643252, 43.61892859)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-540,22050,GO-20159002339,THEFT UNDER,2015-04-29,2015,April,Wednesday,29,119,0,2015-04-29,2015,April,Wednesday,29,119,7,D22,Toronto,11,Eringate-Centennial-West Deane (11),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,CLASSICO,RG,7,BLK,750.0,STOLEN,535,"{'type': 'Point', 'coordinates': (-79.57764587, 43.66846174)}",Eringate-Centennial-West Deane,11,No Designation,18588,18810,-0.012,6977,6863,2171,8.56,8665,5980,465,1945,180,35,75,0.004039238315060588
-541,6620,GO-20209017572,THEFT UNDER,2020-06-14,2020,June,Sunday,14,166,18,2020-07-14,2020,July,Tuesday,14,196,18,D23,Toronto,8,Humber Heights-Westmount (8),"Apartment (Rooming House, Condo)",Apartment,UK,MENS MOUNTAIN B,MT,21,DGR,300.0,STOLEN,536,"{'type': 'Point', 'coordinates': (-79.5165076, 43.68647481)}",Humber Heights-Westmount,8,Emerging Neighbourhood,10948,10583,0.034,4261,4136,3981,2.75,4345,2800,205,1200,65,10,55,0.0023014959723820483
-542,21001,GO-2019979708,THEFT UNDER,2019-05-28,2019,May,Tuesday,28,148,17,2019-05-28,2019,May,Tuesday,28,148,21,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,CAN. TIRE,,MT,6,DBLRED,112.0,STOLEN,537,"{'type': 'Point', 'coordinates': (-79.58491856, 43.73877053)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-543,4544,GO-20191128515,THEFT UNDER,2019-06-14,2019,June,Friday,14,165,19,2019-06-18,2019,June,Tuesday,18,169,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,CROSS RIP ELITE,OT,12,BLK,1600.0,STOLEN,538,"{'type': 'Point', 'coordinates': (-79.48480515, 43.62040835)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-544,8548,GO-20142624258,B&E,2014-08-02,2014,August,Saturday,2,214,18,2014-08-02,2014,August,Saturday,2,214,19,D23,Toronto,8,Humber Heights-Westmount (8),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,BM,1,PLEWHI,600.0,STOLEN,539,"{'type': 'Point', 'coordinates': (-79.51763519, 43.69541067)}",Humber Heights-Westmount,8,Emerging Neighbourhood,10948,10583,0.034,4261,4136,3981,2.75,4345,2800,205,1200,65,10,55,0.0023014959723820483
-545,23831,GO-20209022584,THEFT UNDER,2020-09-08,2020,September,Tuesday,8,252,2,2020-09-08,2020,September,Tuesday,8,252,16,D22,Toronto,11,Eringate-Centennial-West Deane (11),"Apartment (Rooming House, Condo)",Apartment,RA,TALUS,MT,10,BLK,600.0,STOLEN,540,"{'type': 'Point', 'coordinates': (-79.57883055, 43.66157384)}",Eringate-Centennial-West Deane,11,No Designation,18588,18810,-0.012,6977,6863,2171,8.56,8665,5980,465,1945,180,35,75,0.004039238315060588
-546,4548,GO-20199019311,THEFT UNDER,2019-06-19,2019,June,Wednesday,19,170,19,2019-06-19,2019,June,Wednesday,19,170,22,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,SC,,MT,24,BLK,400.0,STOLEN,541,"{'type': 'Point', 'coordinates': (-79.49709647, 43.61309191)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-547,12749,GO-20161993755,THEFT UNDER - BICYCLE,2016-11-07,2016,November,Monday,7,312,8,2016-11-11,2016,November,Friday,11,316,8,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Go Station,Transit,RALEIGH,2,MT,21,BLU,400.0,STOLEN,542,"{'type': 'Point', 'coordinates': (-79.49833024, 43.61617493)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-548,21021,GO-20199021593,THEFT UNDER,2019-07-08,2019,July,Monday,8,189,16,2019-07-09,2019,July,Tuesday,9,190,12,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,IH,HARD TAIL,MT,21,BLK,500.0,STOLEN,543,"{'type': 'Point', 'coordinates': (-79.58207638, 43.74326507)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-549,8549,GO-20142624258,B&E,2014-08-02,2014,August,Saturday,2,214,18,2014-08-02,2014,August,Saturday,2,214,19,D23,Toronto,8,Humber Heights-Westmount (8),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,1,PLESIL,200.0,STOLEN,544,"{'type': 'Point', 'coordinates': (-79.51763519, 43.69541067)}",Humber Heights-Westmount,8,Emerging Neighbourhood,10948,10583,0.034,4261,4136,3981,2.75,4345,2800,205,1200,65,10,55,0.0023014959723820483
-550,24089,GO-20199027192,THEFT FROM MOTOR VEHICLE UNDER,2019-08-21,2019,August,Wednesday,21,233,3,2019-08-21,2019,August,Wednesday,21,233,19,D22,Toronto,11,Eringate-Centennial-West Deane (11),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,MT,25,GRN,2500.0,STOLEN,545,"{'type': 'Point', 'coordinates': (-79.57413466, 43.66712459)}",Eringate-Centennial-West Deane,11,No Designation,18588,18810,-0.012,6977,6863,2171,8.56,8665,5980,465,1945,180,35,75,0.004039238315060588
-551,4550,GO-20199019342,THEFT UNDER,2019-05-30,2019,May,Thursday,30,150,9,2019-06-20,2019,June,Thursday,20,171,10,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,UK,,TO,1,RED,300.0,STOLEN,546,"{'type': 'Point', 'coordinates': (-79.49759779, 43.61432512)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-552,12813,GO-20169013721,THEFT UNDER,2016-11-18,2016,November,Friday,18,323,20,2016-11-22,2016,November,Tuesday,22,327,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,X-RIDE 15 DISC,RC,22,WHI,1500.0,STOLEN,547,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-553,21996,GO-20141590253,THEFT UNDER,2014-02-24,2014,February,Monday,24,55,9,2014-02-24,2014,February,Monday,24,55,15,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Single Home, House (Attach Garage, Cottage, Mobile)",House,E-FADA,,EL,1,BLK,2000.0,STOLEN,548,"{'type': 'Point', 'coordinates': (-79.58704738, 43.75100077)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-554,22021,GO-20149004686,PROPERTY - LOST,2014-07-03,2014,July,Thursday,3,184,18,2014-07-03,2014,July,Thursday,3,184,18,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Apartment (Rooming House, Condo)",Apartment,DB,,MT,21,GRY,0.0,UNKNOWN,549,"{'type': 'Point', 'coordinates': (-79.59333174, 43.74912512)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-555,22036,GO-20149006565,THEFT UNDER,2014-09-04,2014,September,Thursday,4,247,13,2014-09-04,2014,September,Thursday,4,247,16,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,3,LGR,0.0,STOLEN,550,"{'type': 'Point', 'coordinates': (-79.58491856, 43.73877053)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-556,848,GO-20171258666,THEFT OF EBIKE UNDER $5000,2017-07-13,2017,July,Thursday,13,194,20,2017-07-13,2017,July,Thursday,13,194,21,D23,Toronto,5,Elms-Old Rexdale (5),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,EAGLE,EL,10,BLK,1500.0,STOLEN,580,"{'type': 'Point', 'coordinates': (-79.55240253, 43.7180855)}",Elms-Old Rexdale,5,NIA,9456,9550,-0.01,3344,3219,3306,2.86,4045,2350,250,1330,70,20,30,0.004944375772558714
-557,22083,GO-20159006771,THEFT UNDER,2015-09-04,2015,September,Friday,4,247,17,2015-09-05,2015,September,Saturday,5,248,11,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,CCM,MT,21,OTH,500.0,STOLEN,551,"{'type': 'Point', 'coordinates': (-79.58207638, 43.74326507)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-558,22090,GO-20151658482,THEFT UNDER,2015-09-25,2015,September,Friday,25,268,13,2015-09-25,2015,September,Friday,25,268,13,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NEXT,,MT,10,BLK,100.0,STOLEN,552,"{'type': 'Point', 'coordinates': (-79.59411551, 43.75095018)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-559,23821,GO-20201539078,THEFT UNDER - BICYCLE,2020-08-11,2020,August,Tuesday,11,224,18,2020-08-16,2020,August,Sunday,16,229,16,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,LASER DX,MT,12,BLK,200.0,STOLEN,553,"{'type': 'Point', 'coordinates': (-79.59140609000002, 43.74621435)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-560,24205,GO-20179011948,THEFT UNDER,2017-08-08,2017,August,Tuesday,8,220,16,2017-08-08,2017,August,Tuesday,8,220,19,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,CCM SLOPE,MT,21,GRY,270.0,STOLEN,554,"{'type': 'Point', 'coordinates': (-79.58491856, 43.73877053)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-561,24471,GO-20151341920,THEFT UNDER,2015-07-30,2015,July,Thursday,30,211,20,2015-08-05,2015,August,Wednesday,5,217,20,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Open Areas (Lakes, Parks, Rivers)",Outside,SUPERCYCLE,XT1-18,MT,18,REDBLK,,STOLEN,555,"{'type': 'Point', 'coordinates': (-79.59049707000001, 43.74602288)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-562,24511,GO-2016621053,THEFT UNDER - BICYCLE,2016-04-12,2016,April,Tuesday,12,103,11,2016-04-12,2016,April,Tuesday,12,103,11,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SU,HOOLIGAN,MT,10,BLK,282.0,STOLEN,556,"{'type': 'Point', 'coordinates': (-79.58207638, 43.74326507)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-563,24523,GO-2016972982,THEFT UNDER - BICYCLE,2016-06-04,2016,June,Saturday,4,156,17,2016-06-05,2016,June,Sunday,5,157,18,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUPERCYCLE,1800,MT,21,BLKRED,112.0,STOLEN,557,"{'type': 'Point', 'coordinates': (-79.59282796, 43.74311454)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-564,24535,GO-20161372647,THEFT UNDER - BICYCLE,2016-08-03,2016,August,Wednesday,3,216,23,2016-08-04,2016,August,Thursday,4,217,19,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,UNKNOWN,MT,21,GRY,200.0,STOLEN,558,"{'type': 'Point', 'coordinates': (-79.5927836, 43.75584016)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-565,24536,GO-20161372647,THEFT UNDER - BICYCLE,2016-08-03,2016,August,Wednesday,3,216,23,2016-08-04,2016,August,Thursday,4,217,19,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,UNKNOWN,MT,18,GRY,100.0,STOLEN,559,"{'type': 'Point', 'coordinates': (-79.5927836, 43.75584016)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-566,24550,GO-20169012320,THEFT UNDER,2016-10-07,2016,October,Friday,7,281,15,2016-10-19,2016,October,Wednesday,19,293,22,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,MT,15,BLU,399.0,STOLEN,560,"{'type': 'Point', 'coordinates': (-79.5833943, 43.73162788)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-567,24580,GO-20179009200,THEFT UNDER,2017-06-12,2017,June,Monday,12,163,19,2017-06-29,2017,June,Thursday,29,180,22,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,10,WHI,220.0,STOLEN,561,"{'type': 'Point', 'coordinates': (-79.58607608, 43.76010263)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-568,24584,GO-20171263512,ROBBERY - OTHER,2017-07-14,2017,July,Friday,14,195,16,2017-07-14,2017,July,Friday,14,195,16,D23,Toronto,2,Mount Olive-Silverstone-Jamestown (2),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN,,RG,21,GRY,250.0,STOLEN,562,"{'type': 'Point', 'coordinates': (-79.58938369, 43.73202412)}",Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778
-569,8082,GO-20142266542,THEFT UNDER,2014-06-10,2014,June,Tuesday,10,161,17,2014-06-11,2014,June,Wednesday,11,162,8,D23,Toronto,3,Thistletown-Beaumond Heights (3),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,,MT,18,BLUWHI,250.0,STOLEN,563,"{'type': 'Point', 'coordinates': (-79.55629891, 43.74017295)}",Thistletown-Beaumond Heights,3,NIA,10360,10138,0.022000000000000002,3472,3280,3130,3.31,4345,2860,320,1030,110,15,20,0.0034522439585730723
-570,9832,GO-20151026471,THEFT UNDER,2015-06-18,2015,June,Thursday,18,169,21,2015-06-18,2015,June,Thursday,18,169,21,D23,Toronto,3,Thistletown-Beaumond Heights (3),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,RG,0,RED,100.0,STOLEN,564,"{'type': 'Point', 'coordinates': (-79.57594196, 43.73965735)}",Thistletown-Beaumond Heights,3,NIA,10360,10138,0.022000000000000002,3472,3280,3130,3.31,4345,2860,320,1030,110,15,20,0.0034522439585730723
-571,10177,GO-20151351494,THEFT UNDER,2015-07-06,2015,July,Monday,6,187,7,2015-08-07,2015,August,Friday,7,219,11,D23,Toronto,3,Thistletown-Beaumond Heights (3),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUPERCYCLE,,MT,21,BLK,200.0,STOLEN,565,"{'type': 'Point', 'coordinates': (-79.57831643, 43.73764847000001)}",Thistletown-Beaumond Heights,3,NIA,10360,10138,0.022000000000000002,3472,3280,3130,3.31,4345,2860,320,1030,110,15,20,0.0034522439585730723
-572,10201,GO-20151365070,THEFT UNDER,2015-08-05,2015,August,Wednesday,5,217,11,2015-08-09,2015,August,Sunday,9,221,18,D23,Toronto,3,Thistletown-Beaumond Heights (3),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUPERCYCLE,MEDALIST,RG,10,BLU,300.0,STOLEN,566,"{'type': 'Point', 'coordinates': (-79.56526553, 43.7372381)}",Thistletown-Beaumond Heights,3,NIA,10360,10138,0.022000000000000002,3472,3280,3130,3.31,4345,2860,320,1030,110,15,20,0.0034522439585730723
-573,10397,GO-20159006690,THEFT UNDER,2015-08-26,2015,August,Wednesday,26,238,5,2015-09-03,2015,September,Thursday,3,246,0,D23,Toronto,3,Thistletown-Beaumond Heights (3),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,OT,10,GLD,150.0,STOLEN,567,"{'type': 'Point', 'coordinates': (-79.56287474, 43.73743575)}",Thistletown-Beaumond Heights,3,NIA,10360,10138,0.022000000000000002,3472,3280,3130,3.31,4345,2860,320,1030,110,15,20,0.0034522439585730723
-574,11219,GO-2016553588,THEFT UNDER - BICYCLE,2016-03-31,2016,March,Thursday,31,91,19,2016-04-01,2016,April,Friday,1,92,16,D23,Toronto,3,Thistletown-Beaumond Heights (3),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SO,ASPECT,MT,24,SIL,,STOLEN,568,"{'type': 'Point', 'coordinates': (-79.55881483000002, 43.73427551)}",Thistletown-Beaumond Heights,3,NIA,10360,10138,0.022000000000000002,3472,3280,3130,3.31,4345,2860,320,1030,110,15,20,0.0034522439585730723
-575,11866,GO-20161287147,THEFT UNDER - BICYCLE,2016-07-17,2016,July,Sunday,17,199,10,2016-07-22,2016,July,Friday,22,204,13,D23,Toronto,3,Thistletown-Beaumond Heights (3),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,REVENGE,OT,10,BLURED,600.0,STOLEN,569,"{'type': 'Point', 'coordinates': (-79.5518152, 43.73945451)}",Thistletown-Beaumond Heights,3,NIA,10360,10138,0.022000000000000002,3472,3280,3130,3.31,4345,2860,320,1030,110,15,20,0.0034522439585730723
-576,14942,GO-20159001512,THEFT UNDER,2015-03-14,2015,March,Saturday,14,73,15,2015-03-24,2015,March,Tuesday,24,83,15,D23,Toronto,3,Thistletown-Beaumond Heights (3),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,,OT,18,PNK,100.0,STOLEN,570,"{'type': 'Point', 'coordinates': (-79.57548669, 43.73611565)}",Thistletown-Beaumond Heights,3,NIA,10360,10138,0.022000000000000002,3472,3280,3130,3.31,4345,2860,320,1030,110,15,20,0.0034522439585730723
-577,22035,GO-20142731267,THEFT UNDER,2014-08-15,2014,August,Friday,15,227,19,2014-08-19,2014,August,Tuesday,19,231,8,D23,Toronto,3,Thistletown-Beaumond Heights (3),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,OT,0,,300.0,STOLEN,571,"{'type': 'Point', 'coordinates': (-79.58207638, 43.74326507)}",Thistletown-Beaumond Heights,3,NIA,10360,10138,0.022000000000000002,3472,3280,3130,3.31,4345,2860,320,1030,110,15,20,0.0034522439585730723
-578,22115,GO-20161250216,THEFT UNDER - BICYCLE,2016-07-16,2016,July,Saturday,16,198,14,2016-07-16,2016,July,Saturday,16,198,19,D23,Toronto,3,Thistletown-Beaumond Heights (3),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SUPERCYCLE,HOOLIGAN,MT,21,,,STOLEN,572,"{'type': 'Point', 'coordinates': (-79.5665454, 43.73745504)}",Thistletown-Beaumond Heights,3,NIA,10360,10138,0.022000000000000002,3472,3280,3130,3.31,4345,2860,320,1030,110,15,20,0.0034522439585730723
-579,15001,GO-20169005437,THEFT UNDER,2016-06-05,2016,June,Sunday,5,157,0,2016-06-07,2016,June,Tuesday,7,159,17,D23,Toronto,4,Rexdale-Kipling (4),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,HF,,MT,18,BLU,100.0,STOLEN,573,"{'type': 'Point', 'coordinates': (-79.55507738, 43.71510482)}",Rexdale-Kipling,4,No Designation,10529,10488,0.004,3989,3846,4229,2.49,4730,2930,235,1345,150,25,55,0.005285412262156448
-580,15025,GO-20161543127,THEFT UNDER - BICYCLE,2016-08-30,2016,August,Tuesday,30,243,21,2016-08-31,2016,August,Wednesday,31,244,9,D23,Toronto,4,Rexdale-Kipling (4),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,29ER,MT,18,BLKBLU,600.0,STOLEN,574,"{'type': 'Point', 'coordinates': (-79.56629501, 43.71528789)}",Rexdale-Kipling,4,No Designation,10529,10488,0.004,3989,3846,4229,2.49,4730,2930,235,1345,150,25,55,0.005285412262156448
-581,21154,GO-20209016588,THEFT UNDER,2020-06-30,2020,June,Tuesday,30,182,17,2020-06-30,2020,June,Tuesday,30,182,19,D23,Toronto,4,Rexdale-Kipling (4),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SU,,MT,20,BLU,150.0,STOLEN,575,"{'type': 'Point', 'coordinates': (-79.56125505, 43.72562418)}",Rexdale-Kipling,4,No Designation,10529,10488,0.004,3989,3846,4229,2.49,4730,2930,235,1345,150,25,55,0.005285412262156448
-582,22062,GO-20151049192,B&E W'INTENT,2015-06-21,2015,June,Sunday,21,172,10,2015-06-22,2015,June,Monday,22,173,11,D23,Toronto,4,Rexdale-Kipling (4),"Apartment (Rooming House, Condo)",Apartment,OTHER,,EL,0,,1800.0,STOLEN,576,"{'type': 'Point', 'coordinates': (-79.56866734, 43.72589451)}",Rexdale-Kipling,4,No Designation,10529,10488,0.004,3989,3846,4229,2.49,4730,2930,235,1345,150,25,55,0.005285412262156448
-583,24296,GO-20189013344,THEFT UNDER - BICYCLE,2018-04-30,2018,April,Monday,30,120,16,2018-04-30,2018,April,Monday,30,120,17,D23,Toronto,4,Rexdale-Kipling (4),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,,MT,6,,50.0,STOLEN,577,"{'type': 'Point', 'coordinates': (-79.57017907, 43.7330091)}",Rexdale-Kipling,4,No Designation,10529,10488,0.004,3989,3846,4229,2.49,4730,2930,235,1345,150,25,55,0.005285412262156448
-584,24561,GO-2017133899,THEFT UNDER - BICYCLE,2017-01-20,2017,January,Friday,20,20,1,2017-01-22,2017,January,Sunday,22,22,14,D23,Toronto,4,Rexdale-Kipling (4),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,PHOENIX,MT,21,GRN,100.0,STOLEN,578,"{'type': 'Point', 'coordinates': (-79.57019557, 43.72655067)}",Rexdale-Kipling,4,No Designation,10529,10488,0.004,3989,3846,4229,2.49,4730,2930,235,1345,150,25,55,0.005285412262156448
-585,24562,GO-2017133899,THEFT UNDER - BICYCLE,2017-01-20,2017,January,Friday,20,20,1,2017-01-22,2017,January,Sunday,22,22,14,D23,Toronto,4,Rexdale-Kipling (4),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,KRANER,MT,24,GRY,1500.0,STOLEN,579,"{'type': 'Point', 'coordinates': (-79.57019557, 43.72655067)}",Rexdale-Kipling,4,No Designation,10529,10488,0.004,3989,3846,4229,2.49,4730,2930,235,1345,150,25,55,0.005285412262156448
-586,1009,GO-20171376524,ROBBERY - SWARMING,2017-07-31,2017,July,Monday,31,212,16,2017-07-31,2017,July,Monday,31,212,16,D23,Toronto,5,Elms-Old Rexdale (5),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,,BM,0,BLU,160.0,STOLEN,581,"{'type': 'Point', 'coordinates': (-79.55144777, 43.72044428)}",Elms-Old Rexdale,5,NIA,9456,9550,-0.01,3344,3219,3306,2.86,4045,2350,250,1330,70,20,30,0.004944375772558714
-587,1010,GO-20171376524,ROBBERY - SWARMING,2017-07-31,2017,July,Monday,31,212,16,2017-07-31,2017,July,Monday,31,212,16,D23,Toronto,5,Elms-Old Rexdale (5),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DK,,BM,0,GRY,235.0,STOLEN,582,"{'type': 'Point', 'coordinates': (-79.55144777, 43.72044428)}",Elms-Old Rexdale,5,NIA,9456,9550,-0.01,3344,3219,3306,2.86,4045,2350,250,1330,70,20,30,0.004944375772558714
-588,5234,GO-20191698561,THEFT UNDER - BICYCLE,2019-09-05,2019,September,Thursday,5,248,10,2019-09-05,2019,September,Thursday,5,248,10,D23,Toronto,5,Elms-Old Rexdale (5),"Apartment (Rooming House, Condo)",Apartment,NORTH ROCK,,MT,21,BLUGRN,300.0,STOLEN,583,"{'type': 'Point', 'coordinates': (-79.55204934, 43.7267404)}",Elms-Old Rexdale,5,NIA,9456,9550,-0.01,3344,3219,3306,2.86,4045,2350,250,1330,70,20,30,0.004944375772558714
-589,8676,GO-20149006002,THEFT UNDER,2014-08-15,2014,August,Friday,15,227,7,2014-08-15,2014,August,Friday,15,227,20,D23,Toronto,5,Elms-Old Rexdale (5),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RM,RC-70,RC,18,WHI,1300.0,STOLEN,584,"{'type': 'Point', 'coordinates': (-79.55185276, 43.71290101)}",Elms-Old Rexdale,5,NIA,9456,9550,-0.01,3344,3219,3306,2.86,4045,2350,250,1330,70,20,30,0.004944375772558714
-590,9533,GO-20159002488,THEFT UNDER,2015-05-05,2015,May,Tuesday,5,125,17,2015-05-06,2015,May,Wednesday,6,126,10,D23,Toronto,5,Elms-Old Rexdale (5),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,1,SIL,,STOLEN,585,"{'type': 'Point', 'coordinates': (-79.56071577, 43.72702867)}",Elms-Old Rexdale,5,NIA,9456,9550,-0.01,3344,3219,3306,2.86,4045,2350,250,1330,70,20,30,0.004944375772558714
-591,9534,GO-20159002488,THEFT UNDER,2015-05-05,2015,May,Tuesday,5,125,17,2015-05-06,2015,May,Wednesday,6,126,10,D23,Toronto,5,Elms-Old Rexdale (5),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,24,BRN,600.0,STOLEN,586,"{'type': 'Point', 'coordinates': (-79.56071577, 43.72702867)}",Elms-Old Rexdale,5,NIA,9456,9550,-0.01,3344,3219,3306,2.86,4045,2350,250,1330,70,20,30,0.004944375772558714
-592,10398,GO-20159006722,THEFT UNDER,2015-09-03,2015,September,Thursday,3,246,13,2015-09-03,2015,September,Thursday,3,246,15,D23,Toronto,5,Elms-Old Rexdale (5),Schools During Supervised Activity,Educational,HF,,BM,21,OTH,300.0,STOLEN,587,"{'type': 'Point', 'coordinates': (-79.54949818, 43.72765067)}",Elms-Old Rexdale,5,NIA,9456,9550,-0.01,3344,3219,3306,2.86,4045,2350,250,1330,70,20,30,0.004944375772558714
-593,11531,GO-20161035976,THEFT UNDER - BICYCLE,2016-06-14,2016,June,Tuesday,14,166,11,2016-06-14,2016,June,Tuesday,14,166,14,D23,Toronto,5,Elms-Old Rexdale (5),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,ASCENT,RG,21,ONG,170.0,STOLEN,588,"{'type': 'Point', 'coordinates': (-79.552331, 43.71655082)}",Elms-Old Rexdale,5,NIA,9456,9550,-0.01,3344,3219,3306,2.86,4045,2350,250,1330,70,20,30,0.004944375772558714
-594,11668,GO-20161143978,THEFT UNDER - BICYCLE,2016-06-30,2016,June,Thursday,30,182,12,2016-06-30,2016,June,Thursday,30,182,13,D23,Toronto,5,Elms-Old Rexdale (5),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,,MT,18,GRYRED,200.0,STOLEN,589,"{'type': 'Point', 'coordinates': (-79.55594469, 43.71694966)}",Elms-Old Rexdale,5,NIA,9456,9550,-0.01,3344,3219,3306,2.86,4045,2350,250,1330,70,20,30,0.004944375772558714
-595,14770,GO-20189010760,THEFT UNDER,2018-04-06,2018,April,Friday,6,96,15,2018-04-06,2018,April,Friday,6,96,17,D23,Toronto,5,Elms-Old Rexdale (5),Schools During Supervised Activity,Educational,UK,,TR,1,RED,3000.0,STOLEN,590,"{'type': 'Point', 'coordinates': (-79.54981905, 43.7155753)}",Elms-Old Rexdale,5,NIA,9456,9550,-0.01,3344,3219,3306,2.86,4045,2350,250,1330,70,20,30,0.004944375772558714
-596,14786,GO-20189015658,THEFT UNDER,2018-05-20,2018,May,Sunday,20,140,21,2018-05-21,2018,May,Monday,21,141,9,D23,Toronto,5,Elms-Old Rexdale (5),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MO,MOGOOSE,MT,6,YEL,550.0,STOLEN,591,"{'type': 'Point', 'coordinates': (-79.55331884, 43.71141318)}",Elms-Old Rexdale,5,NIA,9456,9550,-0.01,3344,3219,3306,2.86,4045,2350,250,1330,70,20,30,0.004944375772558714
-597,14946,GO-2015784513,THEFT UNDER,2015-05-11,2015,May,Monday,11,131,10,2015-05-11,2015,May,Monday,11,131,11,D23,Toronto,5,Elms-Old Rexdale (5),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,UNKNOWN,OT,0,BLU,,STOLEN,592,"{'type': 'Point', 'coordinates': (-79.5494175, 43.71490487)}",Elms-Old Rexdale,5,NIA,9456,9550,-0.01,3344,3219,3306,2.86,4045,2350,250,1330,70,20,30,0.004944375772558714
-598,17683,GO-2020103480,ROBBERY - SWARMING,2020-01-15,2020,January,Wednesday,15,15,20,2020-01-15,2020,January,Wednesday,15,15,20,D23,Toronto,5,Elms-Old Rexdale (5),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,110CC,OT,5,BLK,500.0,STOLEN,593,"{'type': 'Point', 'coordinates': (-79.55204934, 43.7267404)}",Elms-Old Rexdale,5,NIA,9456,9550,-0.01,3344,3219,3306,2.86,4045,2350,250,1330,70,20,30,0.004944375772558714
-599,24142,GO-202043625,THEFT UNDER,2020-01-07,2020,January,Tuesday,7,7,13,2020-01-07,2020,January,Tuesday,7,7,13,D23,Toronto,5,Elms-Old Rexdale (5),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GO,140CC,OT,0,BLKGLD,850.0,STOLEN,594,"{'type': 'Point', 'coordinates': (-79.55204934, 43.7267404)}",Elms-Old Rexdale,5,NIA,9456,9550,-0.01,3344,3219,3306,2.86,4045,2350,250,1330,70,20,30,0.004944375772558714
-600,451,GO-2017910483,THEFT OVER,2017-05-23,2017,May,Tuesday,23,143,17,2017-05-23,2017,May,Tuesday,23,143,18,D23,Toronto,6,Kingsview Village-The Westway (6),"Apartment (Rooming House, Condo)",Apartment,DAYMAC,C5,EL,1,BLK,9000.0,STOLEN,595,"{'type': 'Point', 'coordinates': (-79.5495297, 43.70328414)}",Kingsview Village-The Westway,6,NIA,22000,21723,0.013000000000000001,8159,7782,4356,5.05,8835,5335,450,2665,270,45,65,0.0050933786078098476
-601,1310,GO-20171609681,THEFT UNDER - BICYCLE,2017-08-19,2017,August,Saturday,19,231,23,2017-09-05,2017,September,Tuesday,5,248,20,D23,Toronto,6,Kingsview Village-The Westway (6),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,,OT,1,SIL,,STOLEN,596,"{'type': 'Point', 'coordinates': (-79.55521943, 43.69262279)}",Kingsview Village-The Westway,6,NIA,22000,21723,0.013000000000000001,8159,7782,4356,5.05,8835,5335,450,2665,270,45,65,0.0050933786078098476
-602,1311,GO-20171609681,THEFT UNDER - BICYCLE,2017-08-19,2017,August,Saturday,19,231,23,2017-09-05,2017,September,Tuesday,5,248,20,D23,Toronto,6,Kingsview Village-The Westway (6),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,KIDS,OT,1,BLU,,STOLEN,597,"{'type': 'Point', 'coordinates': (-79.55521943, 43.69262279)}",Kingsview Village-The Westway,6,NIA,22000,21723,0.013000000000000001,8159,7782,4356,5.05,8835,5335,450,2665,270,45,65,0.0050933786078098476
-603,1312,GO-20171609681,THEFT UNDER - BICYCLE,2017-08-19,2017,August,Saturday,19,231,23,2017-09-05,2017,September,Tuesday,5,248,20,D23,Toronto,6,Kingsview Village-The Westway (6),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,,OT,1,ONGSIL,,STOLEN,598,"{'type': 'Point', 'coordinates': (-79.55521943, 43.69262279)}",Kingsview Village-The Westway,6,NIA,22000,21723,0.013000000000000001,8159,7782,4356,5.05,8835,5335,450,2665,270,45,65,0.0050933786078098476
-604,2390,GO-20189016157,THEFT UNDER,2018-05-24,2018,May,Thursday,24,144,21,2018-05-25,2018,May,Friday,25,145,2,D23,Toronto,6,Kingsview Village-The Westway (6),"Apartment (Rooming House, Condo)",Apartment,GF,ROADBIKE,TO,24,GRY,0.0,STOLEN,599,"{'type': 'Point', 'coordinates': (-79.55861018, 43.69425151)}",Kingsview Village-The Westway,6,NIA,22000,21723,0.013000000000000001,8159,7782,4356,5.05,8835,5335,450,2665,270,45,65,0.0050933786078098476
-605,3994,GO-201944401,THEFT OF EBIKE UNDER $5000,2018-12-24,2018,December,Monday,24,358,0,2019-01-08,2019,January,Tuesday,8,8,11,D23,Toronto,6,Kingsview Village-The Westway (6),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,MONSTER,EL,3,BLK,1800.0,STOLEN,600,"{'type': 'Point', 'coordinates': (-79.56425379, 43.69366763000001)}",Kingsview Village-The Westway,6,NIA,22000,21723,0.013000000000000001,8159,7782,4356,5.05,8835,5335,450,2665,270,45,65,0.0050933786078098476
-606,4191,GO-20199012693,THEFT UNDER,2019-04-18,2019,April,Thursday,18,108,16,2019-04-22,2019,April,Monday,22,112,17,D23,Toronto,6,Kingsview Village-The Westway (6),"Apartment (Rooming House, Condo)",Apartment,UK,EVERYDAY,RG,3,WHI,400.0,STOLEN,601,"{'type': 'Point', 'coordinates': (-79.55211794, 43.69579839)}",Kingsview Village-The Westway,6,NIA,22000,21723,0.013000000000000001,8159,7782,4356,5.05,8835,5335,450,2665,270,45,65,0.0050933786078098476
-607,6771,GO-20209018744,THEFT UNDER,2020-07-28,2020,July,Tuesday,28,210,12,2020-07-28,2020,July,Tuesday,28,210,16,D23,Toronto,6,Kingsview Village-The Westway (6),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,MT,24,SIL,0.0,STOLEN,602,"{'type': 'Point', 'coordinates': (-79.56269864, 43.69581683)}",Kingsview Village-The Westway,6,NIA,22000,21723,0.013000000000000001,8159,7782,4356,5.05,8835,5335,450,2665,270,45,65,0.0050933786078098476
-608,6772,GO-20209018744,THEFT UNDER,2020-07-28,2020,July,Tuesday,28,210,12,2020-07-28,2020,July,Tuesday,28,210,16,D23,Toronto,6,Kingsview Village-The Westway (6),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,JS,MT,24,SIL,0.0,STOLEN,603,"{'type': 'Point', 'coordinates': (-79.56269864, 43.69581683)}",Kingsview Village-The Westway,6,NIA,22000,21723,0.013000000000000001,8159,7782,4356,5.05,8835,5335,450,2665,270,45,65,0.0050933786078098476
-609,9623,GO-2015847772,ROBBERY - MUGGING,2015-05-21,2015,May,Thursday,21,141,15,2015-05-21,2015,May,Thursday,21,141,15,D12,Toronto,28,Rustic (28),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,RG,10,,,STOLEN,1140,"{'type': 'Point', 'coordinates': (-79.50026728, 43.70838437)}",Rustic,28,NIA,9941,9951,-0.001,3726,3650,4734,2.1,3590,1905,200,1370,90,0,25,0.0
-610,9695,GO-2015913725,B&E,2015-05-31,2015,May,Sunday,31,151,22,2015-06-01,2015,June,Monday,1,152,6,D23,Toronto,6,Kingsview Village-The Westway (6),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCOTT,940,RC,18,BLK,4200.0,STOLEN,604,"{'type': 'Point', 'coordinates': (-79.54123302, 43.70166719)}",Kingsview Village-The Westway,6,NIA,22000,21723,0.013000000000000001,8159,7782,4356,5.05,8835,5335,450,2665,270,45,65,0.0050933786078098476
-611,14335,GO-20209028790,THEFT UNDER,2020-11-05,2020,November,Thursday,5,310,20,2020-11-05,2020,November,Thursday,5,310,22,D23,Toronto,6,Kingsview Village-The Westway (6),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,MT,10,BLU,1000.0,STOLEN,605,"{'type': 'Point', 'coordinates': (-79.55305993, 43.68934714)}",Kingsview Village-The Westway,6,NIA,22000,21723,0.013000000000000001,8159,7782,4356,5.05,8835,5335,450,2665,270,45,65,0.0050933786078098476
-612,14976,GO-20159007712,THEFT UNDER,2015-09-17,2015,September,Thursday,17,260,21,2015-09-24,2015,September,Thursday,24,267,17,D23,Toronto,6,Kingsview Village-The Westway (6),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,7,,200.0,STOLEN,606,"{'type': 'Point', 'coordinates': (-79.56033863, 43.69595627)}",Kingsview Village-The Westway,6,NIA,22000,21723,0.013000000000000001,8159,7782,4356,5.05,8835,5335,450,2665,270,45,65,0.0050933786078098476
-613,17576,GO-20191019046,THEFT UNDER - BICYCLE,2019-05-31,2019,May,Friday,31,151,15,2019-06-05,2019,June,Wednesday,5,156,7,D23,Toronto,6,Kingsview Village-The Westway (6),"Apartment (Rooming House, Condo)",Apartment,RALEIGH,,MT,12,BLU,200.0,STOLEN,607,"{'type': 'Point', 'coordinates': (-79.56425379, 43.69366763000001)}",Kingsview Village-The Westway,6,NIA,22000,21723,0.013000000000000001,8159,7782,4356,5.05,8835,5335,450,2665,270,45,65,0.0050933786078098476
-614,17647,GO-20191882205,THEFT UNDER,2019-09-30,2019,September,Monday,30,273,10,2019-09-30,2019,September,Monday,30,273,11,D23,Toronto,6,Kingsview Village-The Westway (6),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,,RC,24,GRN,2700.0,STOLEN,608,"{'type': 'Point', 'coordinates': (-79.5451222, 43.6974306)}",Kingsview Village-The Westway,6,NIA,22000,21723,0.013000000000000001,8159,7782,4356,5.05,8835,5335,450,2665,270,45,65,0.0050933786078098476
-615,17972,GO-20151124890,B&E,2015-07-03,2015,July,Friday,3,184,22,2015-07-04,2015,July,Saturday,4,185,6,D23,Toronto,6,Kingsview Village-The Westway (6),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,MT,12,GRN,,STOLEN,609,"{'type': 'Point', 'coordinates': (-79.53653249, 43.6958243)}",Kingsview Village-The Westway,6,NIA,22000,21723,0.013000000000000001,8159,7782,4356,5.05,8835,5335,450,2665,270,45,65,0.0050933786078098476
-616,17973,GO-20151124890,B&E,2015-07-03,2015,July,Friday,3,184,22,2015-07-04,2015,July,Saturday,4,185,6,D23,Toronto,6,Kingsview Village-The Westway (6),"Single Home, House (Attach Garage, Cottage, Mobile)",House,LOUIS GARNEAU,,MT,10,BLK,,STOLEN,610,"{'type': 'Point', 'coordinates': (-79.53653249, 43.6958243)}",Kingsview Village-The Westway,6,NIA,22000,21723,0.013000000000000001,8159,7782,4356,5.05,8835,5335,450,2665,270,45,65,0.0050933786078098476
-617,17974,GO-20151124890,B&E,2015-07-03,2015,July,Friday,3,184,22,2015-07-04,2015,July,Saturday,4,185,6,D23,Toronto,6,Kingsview Village-The Westway (6),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,,MT,12,PNK,,STOLEN,611,"{'type': 'Point', 'coordinates': (-79.53653249, 43.6958243)}",Kingsview Village-The Westway,6,NIA,22000,21723,0.013000000000000001,8159,7782,4356,5.05,8835,5335,450,2665,270,45,65,0.0050933786078098476
-618,17975,GO-20151124890,B&E,2015-07-03,2015,July,Friday,3,184,22,2015-07-04,2015,July,Saturday,4,185,6,D23,Toronto,6,Kingsview Village-The Westway (6),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,,MT,12,WHI,,STOLEN,612,"{'type': 'Point', 'coordinates': (-79.53653249, 43.6958243)}",Kingsview Village-The Westway,6,NIA,22000,21723,0.013000000000000001,8159,7782,4356,5.05,8835,5335,450,2665,270,45,65,0.0050933786078098476
-619,18065,GO-20162084494,B&E,2016-11-24,2016,November,Thursday,24,329,5,2016-11-24,2016,November,Thursday,24,329,5,D23,Toronto,6,Kingsview Village-The Westway (6),"Apartment (Rooming House, Condo)",Apartment,OTHER,,OT,0,BLKBLU,300.0,STOLEN,613,"{'type': 'Point', 'coordinates': (-79.54863788, 43.70132673)}",Kingsview Village-The Westway,6,NIA,22000,21723,0.013000000000000001,8159,7782,4356,5.05,8835,5335,450,2665,270,45,65,0.0050933786078098476
-620,21050,GO-20199027446,THEFT UNDER,2019-08-23,2019,August,Friday,23,235,14,2019-08-23,2019,August,Friday,23,235,18,D23,Toronto,6,Kingsview Village-The Westway (6),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,,RC,20,WHI,800.0,STOLEN,614,"{'type': 'Point', 'coordinates': (-79.55335023, 43.70130663)}",Kingsview Village-The Westway,6,NIA,22000,21723,0.013000000000000001,8159,7782,4356,5.05,8835,5335,450,2665,270,45,65,0.0050933786078098476
-621,21265,GO-20189014515,THEFT UNDER - BICYCLE,2018-05-10,2018,May,Thursday,10,130,15,2018-05-10,2018,May,Thursday,10,130,23,D23,Toronto,6,Kingsview Village-The Westway (6),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,60,RED,150.0,STOLEN,615,"{'type': 'Point', 'coordinates': (-79.55861018, 43.69425151)}",Kingsview Village-The Westway,6,NIA,22000,21723,0.013000000000000001,8159,7782,4356,5.05,8835,5335,450,2665,270,45,65,0.0050933786078098476
-622,21326,GO-20189025095,THEFT UNDER - BICYCLE,2018-08-03,2018,August,Friday,3,215,11,2018-08-04,2018,August,Saturday,4,216,13,D23,Toronto,6,Kingsview Village-The Westway (6),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MA,,MT,10,BLK,0.0,STOLEN,616,"{'type': 'Point', 'coordinates': (-79.53961767, 43.69826176)}",Kingsview Village-The Westway,6,NIA,22000,21723,0.013000000000000001,8159,7782,4356,5.05,8835,5335,450,2665,270,45,65,0.0050933786078098476
-623,22130,GO-20161661882,THEFT UNDER - BICYCLE,2016-09-14,2016,September,Wednesday,14,258,14,2016-09-18,2016,September,Sunday,18,262,16,D23,Toronto,6,Kingsview Village-The Westway (6),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,TREK MT 60,MT,6,BLU,350.0,STOLEN,617,"{'type': 'Point', 'coordinates': (-79.55219337, 43.69873278)}",Kingsview Village-The Westway,6,NIA,22000,21723,0.013000000000000001,8159,7782,4356,5.05,8835,5335,450,2665,270,45,65,0.0050933786078098476
-624,23813,GO-20209018744,THEFT UNDER,2020-07-28,2020,July,Tuesday,28,210,12,2020-07-28,2020,July,Tuesday,28,210,16,D23,Toronto,6,Kingsview Village-The Westway (6),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,MT,24,SIL,0.0,STOLEN,618,"{'type': 'Point', 'coordinates': (-79.56269864, 43.69581683)}",Kingsview Village-The Westway,6,NIA,22000,21723,0.013000000000000001,8159,7782,4356,5.05,8835,5335,450,2665,270,45,65,0.0050933786078098476
-625,23814,GO-20209018744,THEFT UNDER,2020-07-28,2020,July,Tuesday,28,210,12,2020-07-28,2020,July,Tuesday,28,210,16,D23,Toronto,6,Kingsview Village-The Westway (6),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,JS,MT,24,SIL,0.0,STOLEN,619,"{'type': 'Point', 'coordinates': (-79.56269864, 43.69581683)}",Kingsview Village-The Westway,6,NIA,22000,21723,0.013000000000000001,8159,7782,4356,5.05,8835,5335,450,2665,270,45,65,0.0050933786078098476
-626,24355,GO-20181427153,B&E,2018-08-03,2018,August,Friday,3,215,18,2018-08-04,2018,August,Saturday,4,216,5,D23,Toronto,6,Kingsview Village-The Westway (6),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,OT,0,RED,,STOLEN,620,"{'type': 'Point', 'coordinates': (-79.54757057, 43.68960456)}",Kingsview Village-The Westway,6,NIA,22000,21723,0.013000000000000001,8159,7782,4356,5.05,8835,5335,450,2665,270,45,65,0.0050933786078098476
-627,24356,GO-20181427153,B&E,2018-08-03,2018,August,Friday,3,215,18,2018-08-04,2018,August,Saturday,4,216,5,D23,Toronto,6,Kingsview Village-The Westway (6),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,MT,0,BLK,,STOLEN,621,"{'type': 'Point', 'coordinates': (-79.54757057, 43.68960456)}",Kingsview Village-The Westway,6,NIA,22000,21723,0.013000000000000001,8159,7782,4356,5.05,8835,5335,450,2665,270,45,65,0.0050933786078098476
-628,2110,GO-20189009602,THEFT UNDER,2018-03-26,2018,March,Monday,26,85,14,2018-03-26,2018,March,Monday,26,85,20,D23,Toronto,7,Willowridge-Martingrove-Richview (7),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,CROSSTRAIL,OT,21,BLK,1800.0,STOLEN,622,"{'type': 'Point', 'coordinates': (-79.54046384, 43.68319095)}",Willowridge-Martingrove-Richview,7,No Designation,22156,21343,0.038,8721,8509,4007,5.53,9360,6220,515,2380,140,20,65,0.002136752136752137
-629,2751,GO-20189021159,THEFT UNDER - BICYCLE,2018-07-04,2018,July,Wednesday,4,185,16,2018-07-04,2018,July,Wednesday,4,185,21,D23,Toronto,7,Willowridge-Martingrove-Richview (7),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,TR,,MT,6,,800.0,STOLEN,623,"{'type': 'Point', 'coordinates': (-79.54046384, 43.68319095)}",Willowridge-Martingrove-Richview,7,No Designation,22156,21343,0.038,8721,8509,4007,5.53,9360,6220,515,2380,140,20,65,0.002136752136752137
-630,4629,GO-20199020359,THEFT UNDER,2019-06-27,2019,June,Thursday,27,178,19,2019-06-27,2019,June,Thursday,27,178,20,D23,Toronto,7,Willowridge-Martingrove-Richview (7),Schools During Un-Supervised Activity,Educational,SU,SUPERCYCLE 21 S,MT,21,RED,0.0,STOLEN,624,"{'type': 'Point', 'coordinates': (-79.56134931000001, 43.68554799)}",Willowridge-Martingrove-Richview,7,No Designation,22156,21343,0.038,8721,8509,4007,5.53,9360,6220,515,2380,140,20,65,0.002136752136752137
-631,4652,GO-20191226717,THEFT UNDER - BICYCLE,2019-07-02,2019,July,Tuesday,2,183,8,2019-07-02,2019,July,Tuesday,2,183,8,D23,Toronto,7,Willowridge-Martingrove-Richview (7),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KILIMINJARO,,MT,21,WHIGRY,500.0,STOLEN,625,"{'type': 'Point', 'coordinates': (-79.56482668, 43.68384812)}",Willowridge-Martingrove-Richview,7,No Designation,22156,21343,0.038,8721,8509,4007,5.53,9360,6220,515,2380,140,20,65,0.002136752136752137
-632,6166,GO-20209012946,THEFT UNDER,2020-05-08,2020,May,Friday,8,129,1,2020-05-12,2020,May,Tuesday,12,133,10,D23,Toronto,7,Willowridge-Martingrove-Richview (7),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,UNKNOWN,TO,21,BLU,700.0,STOLEN,626,"{'type': 'Point', 'coordinates': (-79.5602126, 43.68307245)}",Willowridge-Martingrove-Richview,7,No Designation,22156,21343,0.038,8721,8509,4007,5.53,9360,6220,515,2380,140,20,65,0.002136752136752137
-633,8523,GO-20142576420,THEFT UNDER,2014-06-21,2014,June,Saturday,21,172,13,2014-07-26,2014,July,Saturday,26,207,14,D23,Toronto,7,Willowridge-Martingrove-Richview (7),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,0,PLEGRN,,STOLEN,627,"{'type': 'Point', 'coordinates': (-79.57214637000001, 43.68134095)}",Willowridge-Martingrove-Richview,7,No Designation,22156,21343,0.038,8721,8509,4007,5.53,9360,6220,515,2380,140,20,65,0.002136752136752137
-634,8524,GO-20142576420,THEFT UNDER,2014-06-21,2014,June,Saturday,21,172,13,2014-07-26,2014,July,Saturday,26,207,14,D23,Toronto,7,Willowridge-Martingrove-Richview (7),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,0,BLUBLK,,STOLEN,628,"{'type': 'Point', 'coordinates': (-79.57214637000001, 43.68134095)}",Willowridge-Martingrove-Richview,7,No Designation,22156,21343,0.038,8721,8509,4007,5.53,9360,6220,515,2380,140,20,65,0.002136752136752137
-635,9291,GO-20159000764,THEFT UNDER,2015-02-13,2015,February,Friday,13,44,22,2015-02-14,2015,February,Saturday,14,45,11,D23,Toronto,7,Willowridge-Martingrove-Richview (7),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,EL,32,BLK,600.0,STOLEN,629,"{'type': 'Point', 'coordinates': (-79.56602855, 43.6808958)}",Willowridge-Martingrove-Richview,7,No Designation,22156,21343,0.038,8721,8509,4007,5.53,9360,6220,515,2380,140,20,65,0.002136752136752137
-636,9292,GO-20159000764,THEFT UNDER,2015-02-13,2015,February,Friday,13,44,22,2015-02-14,2015,February,Saturday,14,45,11,D23,Toronto,7,Willowridge-Martingrove-Richview (7),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,MAYHEM,EL,32,BLK,1500.0,STOLEN,630,"{'type': 'Point', 'coordinates': (-79.56602855, 43.6808958)}",Willowridge-Martingrove-Richview,7,No Designation,22156,21343,0.038,8721,8509,4007,5.53,9360,6220,515,2380,140,20,65,0.002136752136752137
-637,9558,GO-20159002565,THEFT UNDER,2015-05-08,2015,May,Friday,8,128,9,2015-05-08,2015,May,Friday,8,128,19,D23,Toronto,7,Willowridge-Martingrove-Richview (7),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,2010 YUKON,MT,18,GRY,850.0,STOLEN,631,"{'type': 'Point', 'coordinates': (-79.53081918, 43.69187145)}",Willowridge-Martingrove-Richview,7,No Designation,22156,21343,0.038,8721,8509,4007,5.53,9360,6220,515,2380,140,20,65,0.002136752136752137
-638,9688,GO-2015905744,THEFT UNDER,2015-05-28,2015,May,Thursday,28,148,8,2015-05-30,2015,May,Saturday,30,150,18,D23,Toronto,7,Willowridge-Martingrove-Richview (7),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CANNONDALE,TRAIL,MT,5,WHI,620.0,STOLEN,632,"{'type': 'Point', 'coordinates': (-79.55422326, 43.67836082)}",Willowridge-Martingrove-Richview,7,No Designation,22156,21343,0.038,8721,8509,4007,5.53,9360,6220,515,2380,140,20,65,0.002136752136752137
-639,9819,GO-20159003687,THEFT UNDER,2015-06-16,2015,June,Tuesday,16,167,20,2015-06-17,2015,June,Wednesday,17,168,10,D23,Toronto,7,Willowridge-Martingrove-Richview (7),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,AQUILA,MT,21,ONG,1000.0,STOLEN,633,"{'type': 'Point', 'coordinates': (-79.54247435, 43.68435048)}",Willowridge-Martingrove-Richview,7,No Designation,22156,21343,0.038,8721,8509,4007,5.53,9360,6220,515,2380,140,20,65,0.002136752136752137
-640,10041,GO-20151221296,B&E,2015-07-16,2015,July,Thursday,16,197,12,2015-07-18,2015,July,Saturday,18,199,13,D23,Toronto,7,Willowridge-Martingrove-Richview (7),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,ROUBAIX,TO,5,BLKRED,2000.0,STOLEN,634,"{'type': 'Point', 'coordinates': (-79.55957728, 43.68878136)}",Willowridge-Martingrove-Richview,7,No Designation,22156,21343,0.038,8721,8509,4007,5.53,9360,6220,515,2380,140,20,65,0.002136752136752137
-641,10763,GO-20151938355,THEFT UNDER,2015-11-10,2015,November,Tuesday,10,314,16,2015-11-11,2015,November,Wednesday,11,315,13,D23,Toronto,7,Willowridge-Martingrove-Richview (7),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,BLUE MONDAY,EL,1,RED,2257.0,STOLEN,635,"{'type': 'Point', 'coordinates': (-79.56602855, 43.6808958)}",Willowridge-Martingrove-Richview,7,No Designation,22156,21343,0.038,8721,8509,4007,5.53,9360,6220,515,2380,140,20,65,0.002136752136752137
-642,10984,GO-2016245302,THEFT OVER,2016-01-30,2016,January,Saturday,30,30,10,2016-02-10,2016,February,Wednesday,10,41,15,D23,Toronto,7,Willowridge-Martingrove-Richview (7),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,750CC,OT,6,BLUWHI,12000.0,STOLEN,636,"{'type': 'Point', 'coordinates': (-79.56602855, 43.6808958)}",Willowridge-Martingrove-Richview,7,No Designation,22156,21343,0.038,8721,8509,4007,5.53,9360,6220,515,2380,140,20,65,0.002136752136752137
-643,11860,GO-20161281649,THEFT UNDER - BICYCLE,2016-07-20,2016,July,Wednesday,20,202,16,2016-07-21,2016,July,Thursday,21,203,16,D23,Toronto,7,Willowridge-Martingrove-Richview (7),Schools During Un-Supervised Activity,Educational,UNKNOWN MAKE,,MT,7,BLU,200.0,STOLEN,637,"{'type': 'Point', 'coordinates': (-79.56134931000001, 43.68554799)}",Willowridge-Martingrove-Richview,7,No Designation,22156,21343,0.038,8721,8509,4007,5.53,9360,6220,515,2380,140,20,65,0.002136752136752137
-644,14685,GO-20179011507,THEFT UNDER,2017-07-30,2017,July,Sunday,30,211,10,2017-08-02,2017,August,Wednesday,2,214,9,D23,Toronto,7,Willowridge-Martingrove-Richview (7),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,CAMPIONE DEL MO,RC,10,BLU,200.0,STOLEN,638,"{'type': 'Point', 'coordinates': (-79.5440883, 43.68680133)}",Willowridge-Martingrove-Richview,7,No Designation,22156,21343,0.038,8721,8509,4007,5.53,9360,6220,515,2380,140,20,65,0.002136752136752137
-645,14316,GO-20209023084,THEFT UNDER,2020-09-11,2020,September,Friday,11,255,8,2020-09-12,2020,September,Saturday,12,256,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,CC,FFS SECTOR,MT,20,BLU,500.0,STOLEN,639,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-646,14449,GO-20189027991,THEFT UNDER - BICYCLE,2018-08-15,2018,August,Wednesday,15,227,6,2018-08-26,2018,August,Sunday,26,238,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,ALIGHT 2,MT,21,PLE,700.0,RECOVERED,640,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-647,14455,GO-20181591718,THEFT UNDER - BICYCLE,2018-08-24,2018,August,Friday,24,236,16,2018-08-28,2018,August,Tuesday,28,240,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,NORCLE,,TA,28,RED,2800.0,STOLEN,641,"{'type': 'Point', 'coordinates': (-79.48760733, 43.62206923)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-648,14468,GO-20189034527,THEFT UNDER - BICYCLE,2018-10-18,2018,October,Thursday,18,291,7,2018-10-18,2018,October,Thursday,18,291,9,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RM,SOUL 700,MT,11,ONG,649.0,STOLEN,642,"{'type': 'Point', 'coordinates': (-79.49219650000002, 43.60815438)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-649,14472,GO-20189036355,THEFT UNDER - BICYCLE,2018-10-29,2018,October,Monday,29,302,23,2018-10-31,2018,October,Wednesday,31,304,9,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,CROSSCHECK,TO,18,ONG,2000.0,STOLEN,643,"{'type': 'Point', 'coordinates': (-79.49759779, 43.61432512)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-650,14503,GO-20199010986,THEFT UNDER,2019-03-15,2019,March,Friday,15,74,16,2019-04-07,2019,April,Sunday,7,97,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,SQUARE TREKKING,OT,27,BLK,1400.0,STOLEN,644,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-651,14513,GO-20199015310,THEFT UNDER,2019-05-16,2019,May,Thursday,16,136,17,2019-05-16,2019,May,Thursday,16,136,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,OSLO 17,RG,10,SIL,1000.0,STOLEN,645,"{'type': 'Point', 'coordinates': (-79.47706999, 43.62578178)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-652,14515,GO-20199016905,THEFT UNDER,2019-05-25,2019,May,Saturday,25,145,14,2019-05-30,2019,May,Thursday,30,150,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,MA,FAIRFAX XS,RG,21,BLK,600.0,STOLEN,646,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-653,14519,GO-20191076436,THEFT UNDER - BICYCLE,2019-05-21,2019,May,Tuesday,21,141,14,2019-06-11,2019,June,Tuesday,11,162,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,SCOTT,,MT,21,SIL,3000.0,STOLEN,647,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-654,14537,GO-20191266154,THEFT OF EBIKE UNDER $5000,2019-07-05,2019,July,Friday,5,186,9,2019-07-07,2019,July,Sunday,7,188,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EM,CHAMELEON,EL,32,RED,950.0,STOLEN,648,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-655,14540,GO-20191317029,B&E,2019-06-15,2019,June,Saturday,15,166,0,2019-07-14,2019,July,Sunday,14,195,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,NORCO,CHARG,MT,18,BLU,1061.0,STOLEN,649,"{'type': 'Point', 'coordinates': (-79.47864061, 43.6248261)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-656,4589,GO-20199019885,THEFT UNDER,2019-06-24,2019,June,Monday,24,175,12,2019-06-24,2019,June,Monday,24,175,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,DB,SORRENTO,MT,21,WHI,400.0,STOLEN,650,"{'type': 'Point', 'coordinates': (-79.48497603, 43.62140475)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-657,14541,GO-20191317029,B&E,2019-06-15,2019,June,Saturday,15,166,0,2019-07-14,2019,July,Sunday,14,195,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GIANT,TRANCE XXL,MT,18,YEL,3275.0,STOLEN,651,"{'type': 'Point', 'coordinates': (-79.47864061, 43.6248261)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-658,14552,GO-20191412877,THEFT UNDER,2017-06-06,2017,June,Tuesday,6,157,18,2019-07-27,2019,July,Saturday,27,208,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KHS,ALITE 500,MT,12,RED,700.0,STOLEN,652,"{'type': 'Point', 'coordinates': (-79.49048793, 43.60697506)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-659,14564,GO-20199027343,THEFT UNDER,2019-08-22,2019,August,Thursday,22,234,21,2019-08-23,2019,August,Friday,23,235,9,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,BEASLEY 27.5,MT,8,BLK,700.0,STOLEN,653,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-660,14568,GO-20191629527,THEFT UNDER,2019-08-12,2019,August,Monday,12,224,17,2019-08-26,2019,August,Monday,26,238,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,MOTORINA,XPN,EL,1,BLK,4000.0,STOLEN,654,"{'type': 'Point', 'coordinates': (-79.49002234, 43.61094466)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-661,14607,GO-20199041402,THEFT UNDER,2019-12-16,2019,December,Monday,16,350,12,2019-12-18,2019,December,Wednesday,18,352,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,15,BLK,1000.0,STOLEN,655,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-662,14632,GO-20209012517,THEFT UNDER,2020-05-04,2020,May,Monday,4,125,19,2020-05-05,2020,May,Tuesday,5,126,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE 0,OT,21,BLK,900.0,STOLEN,656,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-663,14641,GO-20209013926,THEFT UNDER,2020-05-15,2020,May,Friday,15,136,11,2020-05-26,2020,May,Tuesday,26,147,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,TR,2014,RG,6,SIL,500.0,STOLEN,657,"{'type': 'Point', 'coordinates': (-79.47893413, 43.62369402)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-664,14642,GO-20209013926,THEFT UNDER,2020-05-15,2020,May,Friday,15,136,11,2020-05-26,2020,May,Tuesday,26,147,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,TR,2014,RG,6,SIL,500.0,STOLEN,658,"{'type': 'Point', 'coordinates': (-79.47893413, 43.62369402)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-665,14652,GO-20179007145,THEFT UNDER,2017-05-26,2017,May,Friday,26,146,20,2017-05-29,2017,May,Monday,29,149,0,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RM,FUSION,MT,24,BLK,1200.0,STOLEN,659,"{'type': 'Point', 'coordinates': (-79.49671284, 43.61223676)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-666,14661,GO-20179009132,THEFT UNDER - BICYCLE,2017-06-27,2017,June,Tuesday,27,178,20,2017-06-28,2017,June,Wednesday,28,179,21,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,X TRAIL 2,MT,6,SIL,350.0,STOLEN,660,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-667,14662,GO-20179009132,THEFT UNDER - BICYCLE,2017-06-27,2017,June,Tuesday,27,178,20,2017-06-28,2017,June,Wednesday,28,179,21,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,CROSS MOUNTAINT,MT,5,RED,175.0,STOLEN,661,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-668,14683,GO-20179011213,THEFT UNDER,2017-07-01,2017,July,Saturday,1,182,10,2017-07-28,2017,July,Friday,28,209,10,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,NO,RIDEAU,RG,16,BLU,650.0,STOLEN,662,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-669,14696,GO-20171513428,THEFT UNDER - BICYCLE,2017-08-21,2017,August,Monday,21,233,8,2017-08-21,2017,August,Monday,21,233,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,CATALYST,CANNONDALE,MT,8,BLK,735.0,STOLEN,663,"{'type': 'Point', 'coordinates': (-79.52459038, 43.61587446)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-670,14726,GO-20179015689,THEFT UNDER - BICYCLE,2017-09-23,2017,September,Saturday,23,266,12,2017-09-25,2017,September,Monday,25,268,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,CCM 700,RG,21,LBL,300.0,STOLEN,664,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-671,14756,GO-20189002512,THEFT UNDER,2018-01-25,2018,January,Thursday,25,25,18,2018-01-26,2018,January,Friday,26,26,7,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,SPEC SECTEUR,RC,8,BLK,1009.0,STOLEN,665,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-672,14784,GO-20189015314,THEFT UNDER - BICYCLE,2018-05-15,2018,May,Tuesday,15,135,18,2018-05-17,2018,May,Thursday,17,137,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,MONDIAL,MT,21,BRZ,300.0,STOLEN,666,"{'type': 'Point', 'coordinates': (-79.47864061, 43.6248261)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-673,14819,GO-20189022111,THEFT UNDER - BICYCLE,2018-07-08,2018,July,Sunday,8,189,16,2018-07-11,2018,July,Wednesday,11,192,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,VFR5,RG,24,BLK,850.0,STOLEN,667,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-674,14820,GO-20189022313,THEFT UNDER - BICYCLE,2018-07-05,2018,July,Thursday,5,186,15,2018-07-13,2018,July,Friday,13,194,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,S2,RC,21,BLK,0.0,STOLEN,668,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-675,14827,GO-20189023991,THEFT UNDER - BICYCLE,2018-07-25,2018,July,Wednesday,25,206,7,2018-07-26,2018,July,Thursday,26,207,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,X-CALIBUR 7,MT,21,RED,1700.0,STOLEN,669,"{'type': 'Point', 'coordinates': (-79.47564953, 43.62924438)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-676,14835,GO-20181496437,THEFT UNDER - BICYCLE,2018-08-05,2018,August,Sunday,5,217,17,2018-08-14,2018,August,Tuesday,14,226,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,KONA,JAKE,RG,18,SIL,2000.0,STOLEN,670,"{'type': 'Point', 'coordinates': (-79.48497603, 43.62140475)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-677,8559,GO-20149005494,THEFT UNDER,2014-07-30,2014,July,Wednesday,30,211,14,2014-07-30,2014,July,Wednesday,30,211,21,D32,Toronto,33,Clanton Park (33),Ttc Subway Station,Transit,NO,,RG,21,GRY,500.0,STOLEN,2925,"{'type': 'Point', 'coordinates': (-79.44777591, 43.7355903)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056
-678,14845,GO-20189027355,THEFT UNDER - BICYCLE,2018-08-18,2018,August,Saturday,18,230,13,2018-08-21,2018,August,Tuesday,21,233,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,CC,,MT,8,WHI,200.0,STOLEN,671,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-679,24330,GO-20189021352,THEFT UNDER - BICYCLE,2018-07-05,2018,July,Thursday,5,186,9,2018-07-05,2018,July,Thursday,5,186,20,D22,Toronto,11,Eringate-Centennial-West Deane (11),Schools During Un-Supervised Activity,Educational,OT,,MT,1,BLU,1000.0,STOLEN,672,"{'type': 'Point', 'coordinates': (-79.58177943, 43.65660374)}",Eringate-Centennial-West Deane,11,No Designation,18588,18810,-0.012,6977,6863,2171,8.56,8665,5980,465,1945,180,35,75,0.004039238315060588
-680,8921,GO-20142908567,POSSESSION PROPERTY OBC UNDER,2014-09-14,2014,September,Sunday,14,257,14,2014-09-14,2014,September,Sunday,14,257,14,D23,Toronto,8,Humber Heights-Westmount (8),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUPERCYCLE,,MT,18,WHI,,STOLEN,673,"{'type': 'Point', 'coordinates': (-79.52593094, 43.70050771)}",Humber Heights-Westmount,8,Emerging Neighbourhood,10948,10583,0.034,4261,4136,3981,2.75,4345,2800,205,1200,65,10,55,0.0023014959723820483
-681,14921,GO-20149004229,THEFT UNDER,2014-06-18,2014,June,Wednesday,18,169,21,2014-06-19,2014,June,Thursday,19,170,9,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,3,DGR,700.0,STOLEN,674,"{'type': 'Point', 'coordinates': (-79.50169375, 43.61784827)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-682,14929,GO-20149006262,THEFT UNDER,2014-08-23,2014,August,Saturday,23,235,23,2014-08-25,2014,August,Monday,25,237,0,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,,MT,40,RED,1000.0,STOLEN,675,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-683,14966,GO-20159004618,THEFT UNDER,2015-06-26,2015,June,Friday,26,177,15,2015-07-16,2015,July,Thursday,16,197,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,FCR 3,OT,24,BLK,600.0,STOLEN,676,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-684,14968,GO-20151340272,THEFT UNDER,2015-08-05,2015,August,Wednesday,5,217,11,2015-08-05,2015,August,Wednesday,5,217,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,KENT,DUAL DRIVE,TA,21,SIL,,STOLEN,677,"{'type': 'Point', 'coordinates': (-79.49288386, 43.60307309)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-685,16167,GO-20179011734,THEFT UNDER - BICYCLE,2017-08-04,2017,August,Friday,4,216,0,2017-08-05,2017,August,Saturday,5,217,11,D52,Toronto,17,Mimico (includes Humber Bay Shores) (17),Universities / Colleges,Educational,OT,UMBRIA II,RG,21,WHI,400.0,STOLEN,685,"{'type': 'Point', 'coordinates': (-79.50489559, 43.616265)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-686,14991,GO-20169003147,THEFT UNDER - BICYCLE,2016-03-28,2016,March,Monday,28,88,19,2016-04-07,2016,April,Thursday,7,98,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,FJ,MOUNTAIN/STRT H,MT,8,WHI,500.0,STOLEN,678,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-687,14992,GO-2016710981,THEFT UNDER - BICYCLE,2016-04-21,2016,April,Thursday,21,112,21,2016-04-26,2016,April,Tuesday,26,117,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,ORYX,EQUIPE 3000,MT,21,BLU,1500.0,STOLEN,679,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-688,15021,GO-20161452964,THEFT UNDER - BICYCLE,2016-08-16,2016,August,Tuesday,16,229,17,2016-08-17,2016,August,Wednesday,17,230,9,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,FELT,980,MT,24,BLK,1200.0,STOLEN,680,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-689,15036,GO-20169013768,THEFT UNDER,2016-11-19,2016,November,Saturday,19,324,1,2016-11-23,2016,November,Wednesday,23,328,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RM,,MT,21,BLK,1378.0,STOLEN,681,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-690,15037,GO-20179000147,THEFT UNDER - BICYCLE,2016-12-31,2016,December,Saturday,31,366,12,2017-01-04,2017,January,Wednesday,4,4,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,SPEEDSTER,RC,10,BLK,2000.0,STOLEN,682,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-691,15044,GO-20179005120,THEFT UNDER,2017-04-21,2017,April,Friday,21,111,17,2017-04-21,2017,April,Friday,21,111,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Go Station,Transit,GI,ROVE 2,RG,21,WHI,745.0,RECOVERED,683,"{'type': 'Point', 'coordinates': (-79.49225729, 43.61408185)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-692,15046,GO-2017794399,THEFT UNDER - BICYCLE,2017-05-05,2017,May,Friday,5,125,9,2017-05-06,2017,May,Saturday,6,126,19,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,PURE CYCLES,INDIA,RC,1,WHIGLD,1000.0,STOLEN,684,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-693,17943,GO-20149006149,THEFT UNDER,2014-08-20,2014,August,Wednesday,20,232,20,2014-08-20,2014,August,Wednesday,20,232,20,D22,Toronto,12,Markland Wood (12),Unknown,Other,UK,,OT,27,BLU,450.0,STOLEN,772,"{'type': 'Point', 'coordinates': (-79.57102443, 43.63413038)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-694,17321,GO-20209012521,THEFT UNDER,2020-04-01,2020,April,Wednesday,1,92,17,2020-05-05,2020,May,Tuesday,5,126,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GT,AGGRESSOR,MT,21,WHI,650.0,STOLEN,686,"{'type': 'Point', 'coordinates': (-79.48643252, 43.61892859)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-695,17336,GO-20209015350,THEFT UNDER,2020-06-12,2020,June,Friday,12,164,13,2020-06-14,2020,June,Sunday,14,166,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,VERSA SPEED 20,OT,40,BLK,1500.0,STOLEN,687,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-696,17337,GO-20209015350,THEFT UNDER,2020-06-12,2020,June,Friday,12,164,13,2020-06-14,2020,June,Sunday,14,166,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,VERSA SPEED 40,OT,40,GRY,950.0,STOLEN,688,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-697,17348,GO-20209016571,THEFT UNDER,2020-06-29,2020,June,Monday,29,181,0,2020-06-30,2020,June,Tuesday,30,182,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CC,KROSSPORT,RG,21,BLK,499.0,STOLEN,689,"{'type': 'Point', 'coordinates': (-79.50131553, 43.61697253)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-698,17373,GO-20209020162,THEFT UNDER,2020-08-13,2020,August,Thursday,13,226,1,2020-08-14,2020,August,Friday,14,227,10,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Unknown,Other,OT,P10322 (LEFT WH,RG,3,,0.0,STOLEN,690,"{'type': 'Point', 'coordinates': (-79.49747065, 43.61783569)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-699,17398,GO-20209025606,THEFT UNDER,2020-10-06,2020,October,Tuesday,6,280,16,2020-10-06,2020,October,Tuesday,6,280,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,TARMAC SL6,TO,1,GRY,3500.0,STOLEN,691,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-700,17416,GO-20209031720,THEFT UNDER,2020-12-10,2020,December,Thursday,10,345,11,2020-12-10,2020,December,Thursday,10,345,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,,MT,18,BLK,250.0,STOLEN,692,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-701,17517,GO-20189033687,THEFT OF EBIKE UNDER $5000,2018-10-07,2018,October,Sunday,7,280,20,2018-10-11,2018,October,Thursday,11,284,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Bar / Restaurant,Commercial,UK,XPD,EL,40,BLK,2500.0,STOLEN,693,"{'type': 'Point', 'coordinates': (-79.49844502, 43.61760285)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-702,17523,GO-20181944589,THEFT UNDER,2018-10-21,2018,October,Sunday,21,294,16,2018-10-22,2018,October,Monday,22,295,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,RG,1,WHI,300.0,STOLEN,694,"{'type': 'Point', 'coordinates': (-79.49507822, 43.60837507)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-703,17536,GO-20189042087,THEFT UNDER - BICYCLE,2018-12-10,2018,December,Monday,10,344,19,2018-12-14,2018,December,Friday,14,348,19,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,CA,2018 QUICK 3 DI,OT,21,GRY,1000.0,STOLEN,695,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-704,17564,GO-20199015313,THEFT UNDER,2019-05-15,2019,May,Wednesday,15,135,12,2019-05-16,2019,May,Thursday,16,136,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,ALLEZ SPORT COM,RC,20,WHI,2000.0,STOLEN,696,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-705,17567,GO-2019926192,THEFT UNDER - BICYCLE,2019-05-10,2019,May,Friday,10,130,0,2019-05-22,2019,May,Wednesday,22,142,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,SCHWINN,GT,OT,6,BLKPNK,700.0,STOLEN,697,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-706,17581,GO-20191127062,B&E W'INTENT,2019-06-14,2019,June,Friday,14,165,0,2019-06-18,2019,June,Tuesday,18,169,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,RUBY COMPOSITE,OT,27,BLKWHI,4969.0,STOLEN,698,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-707,17582,GO-20191127062,B&E W'INTENT,2019-06-14,2019,June,Friday,14,165,0,2019-06-18,2019,June,Tuesday,18,169,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,TREK,MADONE,OT,27,BLUWHI,5499.0,STOLEN,699,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-708,17600,GO-20191351004,THEFT UNDER,2019-07-18,2019,July,Thursday,18,199,19,2019-07-18,2019,July,Thursday,18,199,22,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,AKUNA 1.1,RC,10,WHI,,STOLEN,700,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-709,17601,GO-20191351004,THEFT UNDER,2019-07-18,2019,July,Thursday,18,199,19,2019-07-18,2019,July,Thursday,18,199,22,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GI,LIV ALIGHT,MT,24,WHI,,STOLEN,701,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-710,17608,GO-20191377870,B&E,2019-07-10,2019,July,Wednesday,10,191,9,2019-07-22,2019,July,Monday,22,203,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,TRANSEO,GT,OT,28,BLK,650.0,STOLEN,702,"{'type': 'Point', 'coordinates': (-79.48688069, 43.61810501000001)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-711,17615,GO-20199024415,THEFT UNDER,2019-07-30,2019,July,Tuesday,30,211,15,2019-07-30,2019,July,Tuesday,30,211,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Unknown,Other,OT,702,RG,21,BLK,652.0,STOLEN,703,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-712,17616,GO-20199024632,B&E,2019-07-23,2019,July,Tuesday,23,204,13,2019-08-01,2019,August,Thursday,1,213,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,,,RG,10,GRY,400.0,STOLEN,704,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-713,17619,GO-20199024977,THEFT UNDER,2019-08-03,2019,August,Saturday,3,215,14,2019-08-05,2019,August,Monday,5,217,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,MO,LEDGE 2.1,MT,21,SIL,250.0,STOLEN,705,"{'type': 'Point', 'coordinates': (-79.47706999, 43.62578178)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-714,17622,GO-20191541271,B&E,2019-08-12,2019,August,Monday,12,224,15,2019-08-14,2019,August,Wednesday,14,226,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,RC,18,,,STOLEN,706,"{'type': 'Point', 'coordinates': (-79.47550213, 43.63126324)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-715,17623,GO-20191541271,B&E,2019-08-12,2019,August,Monday,12,224,15,2019-08-14,2019,August,Wednesday,14,226,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,MT,18,,,STOLEN,707,"{'type': 'Point', 'coordinates': (-79.47550213, 43.63126324)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-716,17639,GO-20199030290,THEFT UNDER,2019-09-16,2019,September,Monday,16,259,13,2019-09-16,2019,September,Monday,16,259,21,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,BLK,400.0,STOLEN,708,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-717,17660,GO-20192049657,THEFT UNDER - BICYCLE,2019-10-23,2019,October,Wednesday,23,296,20,2019-10-23,2019,October,Wednesday,23,296,21,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,ZZZ,,RG,1,BLK,600.0,STOLEN,709,"{'type': 'Point', 'coordinates': (-79.48819449, 43.61573777)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-718,17688,GO-20209006745,B&E,2020-02-12,2020,February,Wednesday,12,43,16,2020-02-24,2020,February,Monday,24,55,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GT,AGGRESSOR,MT,24,BLU,400.0,STOLEN,710,"{'type': 'Point', 'coordinates': (-79.48480515, 43.62040835)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-719,17715,GO-20179013079,THEFT UNDER - BICYCLE,2017-08-22,2017,August,Tuesday,22,234,8,2017-08-22,2017,August,Tuesday,22,234,19,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,,MT,24,GRY,1000.0,STOLEN,711,"{'type': 'Point', 'coordinates': (-79.48799361, 43.61936533)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-720,17755,GO-20179018811,THEFT UNDER - BICYCLE,2017-11-03,2017,November,Friday,3,307,14,2017-11-03,2017,November,Friday,3,307,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,,MT,21,PLE,1000.0,STOLEN,712,"{'type': 'Point', 'coordinates': (-79.48731142, 43.61728142)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-721,17769,GO-20179020593,THEFT UNDER - BICYCLE,2017-11-25,2017,November,Saturday,25,329,19,2017-11-26,2017,November,Sunday,26,330,19,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,OPUS,RC,18,WHI,1500.0,STOLEN,713,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-722,17770,GO-20179020593,THEFT UNDER - BICYCLE,2017-11-25,2017,November,Saturday,25,329,19,2017-11-26,2017,November,Sunday,26,330,19,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,BRODIE,REMUS,RG,1,LGR,700.0,RECOVERED,714,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-723,17787,GO-20189002871,THEFT UNDER - BICYCLE,2018-01-19,2018,January,Friday,19,19,12,2018-01-29,2018,January,Monday,29,29,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,CA,,MT,27,BLK,900.0,STOLEN,715,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-724,17798,GO-20189012326,THEFT UNDER - BICYCLE,2018-04-21,2018,April,Saturday,21,111,8,2018-04-21,2018,April,Saturday,21,111,9,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,99,BLU,3000.0,STOLEN,716,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-725,17811,GO-20189015183,THEFT UNDER - BICYCLE,2018-05-10,2018,May,Thursday,10,130,9,2018-05-16,2018,May,Wednesday,16,136,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,24,GRY,1300.0,STOLEN,717,"{'type': 'Point', 'coordinates': (-79.48760733, 43.62206923)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-726,17812,GO-20189015183,THEFT UNDER - BICYCLE,2018-05-10,2018,May,Thursday,10,130,9,2018-05-16,2018,May,Wednesday,16,136,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,24,WHI,1200.0,STOLEN,718,"{'type': 'Point', 'coordinates': (-79.48760733, 43.62206923)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-727,17814,GO-20189016323,THEFT UNDER - BICYCLE,2018-05-24,2018,May,Thursday,24,144,1,2018-05-26,2018,May,Saturday,26,146,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,CA,,RG,21,BLK,860.0,STOLEN,719,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-728,17818,GO-2018961372,THEFT UNDER - BICYCLE,2018-05-24,2018,May,Thursday,24,144,3,2018-05-28,2018,May,Monday,28,148,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,FUJI,,MT,18,RED,1000.0,STOLEN,720,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-729,17853,GO-20189021967,THEFT UNDER - BICYCLE,2018-06-01,2018,June,Friday,1,152,21,2018-07-10,2018,July,Tuesday,10,191,21,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,CYPRESS,RG,7,GRY,700.0,STOLEN,721,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-730,17859,GO-20189023380,THEFT UNDER - BICYCLE,2018-07-06,2018,July,Friday,6,187,0,2018-07-22,2018,July,Sunday,22,203,2,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,MODINA,MT,21,SIL,420.0,STOLEN,722,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-731,17860,GO-20189023474,THEFT UNDER - BICYCLE,2018-07-20,2018,July,Friday,20,201,1,2018-07-22,2018,July,Sunday,22,203,23,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,ESCAPE,OT,65,GRY,650.0,STOLEN,723,"{'type': 'Point', 'coordinates': (-79.48760733, 43.62206923)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-732,17863,GO-20189023952,THEFT UNDER - BICYCLE,2018-07-24,2018,July,Tuesday,24,205,12,2018-07-25,2018,July,Wednesday,25,206,22,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,CA,CAAD8,RG,16,BLK,900.0,RECOVERED,724,"{'type': 'Point', 'coordinates': (-79.47564953, 43.62924438)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-733,6043,GO-20209010793,THEFT UNDER,2020-04-09,2020,April,Thursday,9,100,14,2020-04-09,2020,April,Thursday,9,100,16,D54,Toronto,58,Old East York (58),Unknown,Other,GI,LIVALIGHT 2,RG,9,BLK,800.0,STOLEN,3022,"{'type': 'Point', 'coordinates': (-79.32874138, 43.69594155)}",Old East York,58,No Designation,9233,9118,0.013000000000000001,3960,3790,3997,2.31,4525,2370,235,1560,170,145,30,0.032044198895027624
-734,17874,GO-20189025091,THEFT UNDER - BICYCLE,2018-07-06,2018,July,Friday,6,187,1,2018-08-04,2018,August,Saturday,4,216,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,CCM VECTOR MEN',OT,21,,500.0,STOLEN,725,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-735,17876,GO-20189025126,THEFT UNDER - BICYCLE,2018-07-06,2018,July,Friday,6,187,1,2018-08-04,2018,August,Saturday,4,216,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,CCM VECTOR MEN',OT,21,BLU,500.0,STOLEN,726,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-736,17896,GO-20181622454,THEFT UNDER - BICYCLE,2018-09-01,2018,September,Saturday,1,244,22,2018-09-02,2018,September,Sunday,2,245,0,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Bar / Restaurant,Commercial,EMMO,,EL,3,RED,900.0,STOLEN,727,"{'type': 'Point', 'coordinates': (-79.49312873, 43.60365221)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-737,17910,GO-20189031659,THEFT UNDER - BICYCLE,2018-09-16,2018,September,Sunday,16,259,22,2018-09-23,2018,September,Sunday,23,266,22,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,MODENA,RG,21,BLK,250.0,STOLEN,728,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-738,17911,GO-20189031659,THEFT UNDER - BICYCLE,2018-09-16,2018,September,Sunday,16,259,22,2018-09-23,2018,September,Sunday,23,266,22,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,MODENA,RG,21,WHI,250.0,STOLEN,729,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-739,17914,GO-20141933079,THEFT UNDER,2014-04-21,2014,April,Monday,21,111,2,2014-04-21,2014,April,Monday,21,111,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,RG,10,,10.0,STOLEN,730,"{'type': 'Point', 'coordinates': (-79.49131679, 43.62006774)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-740,24436,GO-20149006813,THEFT UNDER,2014-09-09,2014,September,Tuesday,9,252,22,2014-09-11,2014,September,Thursday,11,254,20,D22,Toronto,11,Eringate-Centennial-West Deane (11),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,OT,1,BLU,300.0,STOLEN,731,"{'type': 'Point', 'coordinates': (-79.57784128, 43.66660289000001)}",Eringate-Centennial-West Deane,11,No Designation,18588,18810,-0.012,6977,6863,2171,8.56,8665,5980,465,1945,180,35,75,0.004039238315060588
-741,11741,GO-20169006865,THEFT UNDER,2016-07-06,2016,July,Wednesday,6,188,22,2016-07-06,2016,July,Wednesday,6,188,22,D32,Toronto,51,Willowdale East (51),"Apartment (Rooming House, Condo)",Apartment,SC,,MT,21,WHI,300.0,STOLEN,3111,"{'type': 'Point', 'coordinates': (-79.40399933, 43.75860698)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515
-742,660,GO-20179008512,THEFT UNDER,2017-06-11,2017,June,Sunday,11,162,3,2017-06-20,2017,June,Tuesday,20,171,17,D22,Toronto,12,Markland Wood (12),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE 1 W-2011,OT,24,GRY,600.0,STOLEN,732,"{'type': 'Point', 'coordinates': (-79.56344867, 43.63003984)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-743,2994,GO-20181295174,B&E,2018-07-12,2018,July,Thursday,12,193,18,2018-07-16,2018,July,Monday,16,197,15,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CERVELO,S1,RC,14,BLK,1500.0,STOLEN,733,"{'type': 'Point', 'coordinates': (-79.58270513, 43.6324168)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-744,3050,GO-20181412960,THEFT UNDER - BICYCLE,2018-07-26,2018,July,Thursday,26,207,23,2018-08-02,2018,August,Thursday,2,214,8,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,K2,K2,MT,18,LGR,100.0,STOLEN,734,"{'type': 'Point', 'coordinates': (-79.56790146, 43.63609067)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-745,3059,GO-20189024884,THEFT UNDER - BICYCLE,2018-08-01,2018,August,Wednesday,1,213,7,2018-08-02,2018,August,Thursday,2,214,15,D22,Toronto,12,Markland Wood (12),"Apartment (Rooming House, Condo)",Apartment,OT,STOCKHOLM,OT,24,BLK,0.0,STOLEN,735,"{'type': 'Point', 'coordinates': (-79.58195984, 43.64065071)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-746,3064,GO-20189024976,THEFT UNDER - BICYCLE,2018-08-01,2018,August,Wednesday,1,213,7,2018-08-03,2018,August,Friday,3,215,10,D22,Toronto,12,Markland Wood (12),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,STOCKHOLM,TO,25,BLK,1100.0,STOLEN,736,"{'type': 'Point', 'coordinates': (-79.58195984, 43.64065071)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-747,4018,GO-2019147288,B&E,2019-01-24,2019,January,Thursday,24,24,2,2019-01-24,2019,January,Thursday,24,24,8,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,AVALANCHE SPORT,MT,27,BLUSIL,615.0,STOLEN,737,"{'type': 'Point', 'coordinates': (-79.57758762, 43.63659281)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-748,4504,GO-20199018791,THEFT UNDER,2019-06-12,2019,June,Wednesday,12,163,16,2019-06-15,2019,June,Saturday,15,166,21,D22,Toronto,12,Markland Wood (12),Schools During Un-Supervised Activity,Educational,MO,,MT,21,SIL,250.0,STOLEN,738,"{'type': 'Point', 'coordinates': (-79.57687335, 43.63397773)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-749,4567,GO-20199018791,THEFT UNDER,2019-06-12,2019,June,Wednesday,12,163,16,2019-06-15,2019,June,Saturday,15,166,21,D22,Toronto,12,Markland Wood (12),Schools During Un-Supervised Activity,Educational,MO,,MT,21,,250.0,STOLEN,739,"{'type': 'Point', 'coordinates': (-79.57687335, 43.63397773)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-750,4745,GO-20191297183,B&E,2019-06-30,2019,June,Sunday,30,181,10,2019-07-07,2019,July,Sunday,7,188,18,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FELT,B16,TO,10,BLK,10000.0,STOLEN,740,"{'type': 'Point', 'coordinates': (-79.5743248, 43.63750082)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-751,5498,GO-20199033360,THEFT UNDER,2019-10-10,2019,October,Thursday,10,283,9,2019-10-10,2019,October,Thursday,10,283,17,D22,Toronto,12,Markland Wood (12),Schools During Supervised Activity,Educational,UK,ORBITA 650B,MT,18,BLK,300.0,STOLEN,741,"{'type': 'Point', 'coordinates': (-79.57338672, 43.63278432)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-752,5796,GO-20192514243,THEFT UNDER - BICYCLE,2019-12-27,2019,December,Friday,27,361,23,2019-12-30,2019,December,Monday,30,364,18,D22,Toronto,12,Markland Wood (12),"Apartment (Rooming House, Condo)",Apartment,RALEIGH,MOUNTAIN,MT,0,BLK,,STOLEN,742,"{'type': 'Point', 'coordinates': (-79.57512108, 43.63204196)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-753,5797,GO-20192514243,THEFT UNDER - BICYCLE,2019-12-27,2019,December,Friday,27,361,23,2019-12-30,2019,December,Monday,30,364,18,D22,Toronto,12,Markland Wood (12),"Apartment (Rooming House, Condo)",Apartment,OTHER,NISHIKI,MT,0,BLK,,STOLEN,743,"{'type': 'Point', 'coordinates': (-79.57512108, 43.63204196)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-754,7788,GO-20141760093,B&E,2014-03-23,2014,March,Sunday,23,82,23,2014-03-24,2014,March,Monday,24,83,19,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KONA,COWAN,MT,8,WHI,500.0,STOLEN,744,"{'type': 'Point', 'coordinates': (-79.58272088, 43.63326753)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-755,7911,GO-20149003293,THEFT UNDER,2014-05-04,2014,May,Sunday,4,124,15,2014-05-12,2014,May,Monday,12,132,8,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KH,SJ300,OT,1,GRY,734.0,STOLEN,745,"{'type': 'Point', 'coordinates': (-79.57115957, 43.62942012)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-756,7971,GO-20142162615,B&E,2014-05-26,2014,May,Monday,26,146,0,2014-05-27,2014,May,Tuesday,27,147,12,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,CARVE,MT,21,BLKWHI,1500.0,STOLEN,746,"{'type': 'Point', 'coordinates': (-79.58215596, 43.63409941)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-757,7972,GO-20142162615,B&E,2014-05-26,2014,May,Monday,26,146,0,2014-05-27,2014,May,Tuesday,27,147,12,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,ROAM 2,MT,21,SILWHI,530.0,STOLEN,747,"{'type': 'Point', 'coordinates': (-79.58215596, 43.63409941)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-758,8174,GO-20142304370,THEFT UNDER,2014-06-15,2014,June,Sunday,15,166,18,2014-06-16,2014,June,Monday,16,167,19,D22,Toronto,12,Markland Wood (12),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,,MT,10,WHI,450.0,STOLEN,748,"{'type': 'Point', 'coordinates': (-79.57978988, 43.62929136)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-759,8339,GO-20149004680,THEFT UNDER,2014-07-01,2014,July,Tuesday,1,182,21,2014-07-03,2014,July,Thursday,3,184,16,D22,Toronto,12,Markland Wood (12),Ttc Bus Stop / Shelter / Loop,Outside,OT,GLIDER,OT,15,BLU,100.0,STOLEN,749,"{'type': 'Point', 'coordinates': (-79.58433063, 43.63920551)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-760,8355,GO-20142462486,B&E,2014-07-06,2014,July,Sunday,6,187,12,2014-07-14,2014,July,Monday,14,195,13,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FUJI,29ER,MT,15,WHI,700.0,STOLEN,750,"{'type': 'Point', 'coordinates': (-79.57167726, 43.6281896)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-761,8384,GO-20142511486,B&E,2014-07-13,2014,July,Sunday,13,194,0,2014-07-16,2014,July,Wednesday,16,197,20,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DEVINCI,MENS,MT,10,BLU,800.0,STOLEN,751,"{'type': 'Point', 'coordinates': (-79.57595819, 43.63952102)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-762,8385,GO-20142511486,B&E,2014-07-13,2014,July,Sunday,13,194,0,2014-07-16,2014,July,Wednesday,16,197,20,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DEVINCI,,MT,10,GRY,800.0,STOLEN,752,"{'type': 'Point', 'coordinates': (-79.57595819, 43.63952102)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-763,8650,GO-20142720602,B&E,2014-08-17,2014,August,Sunday,17,229,2,2014-08-17,2014,August,Sunday,17,229,20,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DEVINCI,,MT,29,,1500.0,STOLEN,753,"{'type': 'Point', 'coordinates': (-79.56672121, 43.63328932)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-764,8699,GO-20142760183,PROPERTY - FOUND,2014-08-23,2014,August,Saturday,23,235,7,2014-08-23,2014,August,Saturday,23,235,11,D22,Toronto,12,Markland Wood (12),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,UNKNOWN,MT,99,BLU,,UNKNOWN,754,"{'type': 'Point', 'coordinates': (-79.5744029, 43.62764898)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-765,8972,GO-20142980533,THEFT UNDER,2014-09-24,2014,September,Wednesday,24,267,12,2014-09-25,2014,September,Thursday,25,268,13,D22,Toronto,12,Markland Wood (12),Schools During Supervised Activity,Educational,OTHER,BMX,MT,10,BLU,750.0,STOLEN,755,"{'type': 'Point', 'coordinates': (-79.57059975, 43.63913196)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-766,9603,GO-20159002866,THEFT UNDER,2015-05-17,2015,May,Sunday,17,137,21,2015-05-18,2015,May,Monday,18,138,21,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,P2 DIRTJUMPER,BM,1,BRN,1000.0,STOLEN,756,"{'type': 'Point', 'coordinates': (-79.56264011, 43.63298799)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-767,11150,GO-20142420776,PROPERTY - FOUND,2014-06-25,2014,June,Wednesday,25,176,8,2014-07-03,2014,July,Thursday,3,184,10,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,IH,,MT,21,BLK,,UNKNOWN,757,"{'type': 'Point', 'coordinates': (-79.58121204, 43.62999669)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-768,11154,GO-20142516043,PROPERTY - FOUND,2014-07-16,2014,July,Wednesday,16,197,22,2014-07-17,2014,July,Thursday,17,198,14,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NE,LASER,MT,6,PLE,,UNKNOWN,758,"{'type': 'Point', 'coordinates': (-79.56905084, 43.63400778)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-769,14575,GO-20199028969,THEFT UNDER,2019-09-05,2019,September,Thursday,5,248,18,2019-09-06,2019,September,Friday,6,249,13,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,S5,RC,11,WHI,5000.0,STOLEN,759,"{'type': 'Point', 'coordinates': (-79.57489825, 43.6303606)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-770,14917,GO-20149003836,THEFT UNDER,2014-06-01,2014,June,Sunday,1,152,17,2014-06-05,2014,June,Thursday,5,156,12,D22,Toronto,12,Markland Wood (12),Bar / Restaurant,Commercial,RM,26 INCH M HIGH,MT,16,BLK,100.0,STOLEN,760,"{'type': 'Point', 'coordinates': (-79.57702569000001, 43.64236301)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-771,14923,GO-20149004425,THEFT UNDER,2014-06-24,2014,June,Tuesday,24,175,18,2014-06-25,2014,June,Wednesday,25,176,10,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,STUMPJUMPER FSR,MT,20,BLK,2300.0,STOLEN,761,"{'type': 'Point', 'coordinates': (-79.57341544000002, 43.63720107)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-772,14924,GO-20142423373,THEFT UNDER,2014-06-20,2014,June,Friday,20,171,12,2014-07-03,2014,July,Thursday,3,184,17,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,JAMIS,X3,MT,21,WHIRED,500.0,STOLEN,762,"{'type': 'Point', 'coordinates': (-79.57636958, 43.63775418)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-773,14928,GO-20142728840,B&E,2014-08-18,2014,August,Monday,18,230,20,2014-08-18,2014,August,Monday,18,230,20,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FELT SIX,80 HIBACHI,RG,24,,529.0,STOLEN,763,"{'type': 'Point', 'coordinates': (-79.57115957, 43.62942012)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-774,14949,GO-2015834510,THEFT UNDER,2015-05-01,2015,May,Friday,1,121,0,2015-05-19,2015,May,Tuesday,19,139,14,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,EL,0,BLUSIL,1450.0,STOLEN,764,"{'type': 'Point', 'coordinates': (-79.57912757, 43.64421463)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-775,14951,GO-2015892034,THEFT UNDER,2015-05-28,2015,May,Thursday,28,148,9,2015-05-28,2015,May,Thursday,28,148,15,D22,Toronto,12,Markland Wood (12),Schools During Supervised Activity,Educational,MONGOOSE,,OT,5,GRYONG,250.0,STOLEN,765,"{'type': 'Point', 'coordinates': (-79.57059975, 43.63913196)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-776,17712,GO-20209012074,THEFT UNDER - BICYCLE,2020-03-15,2020,March,Sunday,15,75,12,2020-04-28,2020,April,Tuesday,28,119,12,D22,Toronto,12,Markland Wood (12),"Apartment (Rooming House, Condo)",Apartment,TR,MARLIN 7,MT,18,LBL,950.0,STOLEN,766,"{'type': 'Point', 'coordinates': (-79.58195984, 43.64065071)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-777,17919,GO-20142117568,THEFT OVER,2014-05-19,2014,May,Monday,19,139,20,2014-05-20,2014,May,Tuesday,20,140,18,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DEVINCI,,OT,18,WHI,3600.0,STOLEN,767,"{'type': 'Point', 'coordinates': (-79.5768519, 43.635083380000005)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-778,17920,GO-20142117568,THEFT OVER,2014-05-19,2014,May,Monday,19,139,20,2014-05-20,2014,May,Tuesday,20,140,18,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,STP1,OT,1,BRN,,STOLEN,768,"{'type': 'Point', 'coordinates': (-79.5768519, 43.635083380000005)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-779,17922,GO-20149003683,THEFT UNDER,2014-05-26,2014,May,Monday,26,146,1,2014-05-30,2014,May,Friday,30,150,11,D22,Toronto,12,Markland Wood (12),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,UNKNOWN,MT,21,BLK,200.0,STOLEN,769,"{'type': 'Point', 'coordinates': (-79.58039804, 43.64120025)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-780,17923,GO-20142202580,THEFT UNDER,2014-05-18,2014,May,Sunday,18,138,9,2014-06-02,2014,June,Monday,2,153,8,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCOTT,HYBIRD,TA,10,WHI,1000.0,STOLEN,770,"{'type': 'Point', 'coordinates': (-79.5796649, 43.63147706)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-781,17924,GO-20142202580,THEFT UNDER,2014-05-18,2014,May,Sunday,18,138,9,2014-06-02,2014,June,Monday,2,153,8,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCOTT,,TA,10,BLU,1000.0,STOLEN,771,"{'type': 'Point', 'coordinates': (-79.5796649, 43.63147706)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-782,21052,GO-20191656095,THEFT UNDER - BICYCLE,2019-08-29,2019,August,Thursday,29,241,23,2019-08-30,2019,August,Friday,30,242,9,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,,MT,12,DGR,600.0,STOLEN,773,"{'type': 'Point', 'coordinates': (-79.56013585, 43.62894228)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-783,21310,GO-20189021826,THEFT UNDER - BICYCLE,2018-07-10,2018,July,Tuesday,10,191,0,2018-07-10,2018,July,Tuesday,10,191,9,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,MT,21,MRN,700.0,STOLEN,774,"{'type': 'Point', 'coordinates': (-79.57195159, 43.63389212)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-784,22006,GO-20149003648,THEFT UNDER,2014-05-25,2014,May,Sunday,25,145,21,2014-05-29,2014,May,Thursday,29,149,21,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,,MT,18,BLU,113.0,STOLEN,775,"{'type': 'Point', 'coordinates': (-79.58190672, 43.64152578)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-785,22010,GO-20142221548,B&E,2014-05-29,2014,May,Thursday,29,149,14,2014-06-04,2014,June,Wednesday,4,155,18,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,0,BLU,200.0,STOLEN,776,"{'type': 'Point', 'coordinates': (-79.57826996, 43.62818158)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-786,22027,GO-20142577472,THEFT UNDER,2014-07-24,2014,July,Thursday,24,205,18,2014-07-26,2014,July,Saturday,26,207,19,D22,Toronto,12,Markland Wood (12),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,BM,1,DBL,200.0,STOLEN,777,"{'type': 'Point', 'coordinates': (-79.57702569000001, 43.64236301)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-787,22046,GO-20143452080,B&E,2014-12-05,2014,December,Friday,5,339,23,2014-12-09,2014,December,Tuesday,9,343,9,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DEVINCI,,MT,27,BLK,1500.0,STOLEN,778,"{'type': 'Point', 'coordinates': (-79.56672121, 43.63328932)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-788,22047,GO-20143452080,B&E,2014-12-05,2014,December,Friday,5,339,23,2014-12-09,2014,December,Tuesday,9,343,9,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,JAMIS,,MT,27,BLK,800.0,STOLEN,779,"{'type': 'Point', 'coordinates': (-79.56672121, 43.63328932)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-789,22077,GO-20159006243,THEFT UNDER,2015-08-27,2015,August,Thursday,27,239,21,2015-08-28,2015,August,Friday,28,240,1,D22,Toronto,12,Markland Wood (12),"Apartment (Rooming House, Condo)",Apartment,CC,,MT,10,WHI,449.0,STOLEN,780,"{'type': 'Point', 'coordinates': (-79.57978988, 43.62929136)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-790,22078,GO-20159006243,THEFT UNDER,2015-08-27,2015,August,Thursday,27,239,21,2015-08-28,2015,August,Friday,28,240,1,D22,Toronto,12,Markland Wood (12),"Apartment (Rooming House, Condo)",Apartment,SU,,MT,10,BLU,120.0,STOLEN,781,"{'type': 'Point', 'coordinates': (-79.57978988, 43.62929136)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-791,24191,GO-20171314023,B&E,2017-07-22,2017,July,Saturday,22,203,4,2017-07-22,2017,July,Saturday,22,203,4,D22,Toronto,12,Markland Wood (12),"Private Property Structure (Pool, Shed, Detached Garage)",Other,ROCKY MOUNTAIN,,MT,10,MRN,500.0,STOLEN,782,"{'type': 'Point', 'coordinates': (-79.57378384, 43.63062905)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-792,24192,GO-20171314023,B&E,2017-07-22,2017,July,Saturday,22,203,4,2017-07-22,2017,July,Saturday,22,203,4,D22,Toronto,12,Markland Wood (12),"Private Property Structure (Pool, Shed, Detached Garage)",Other,ROCKY MOUNTAIN,,MT,10,BLU,500.0,STOLEN,783,"{'type': 'Point', 'coordinates': (-79.57378384, 43.63062905)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-793,24423,GO-20149004641,THEFT UNDER,2014-07-02,2014,July,Wednesday,2,183,21,2014-07-03,2014,July,Thursday,3,184,0,D22,Toronto,12,Markland Wood (12),Bar / Restaurant,Commercial,CR,OCTANE,MT,21,RED,0.0,STOLEN,784,"{'type': 'Point', 'coordinates': (-79.56228119, 43.63562556)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-794,24424,GO-20149004641,THEFT UNDER,2014-07-02,2014,July,Wednesday,2,183,21,2014-07-03,2014,July,Thursday,3,184,0,D22,Toronto,12,Markland Wood (12),Bar / Restaurant,Commercial,SU,700CC TEMPO,RG,21,YEL,190.0,STOLEN,785,"{'type': 'Point', 'coordinates': (-79.56228119, 43.63562556)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-795,24429,GO-20142521121,B&E,2014-07-17,2014,July,Thursday,17,198,23,2014-07-18,2014,July,Friday,18,199,9,D22,Toronto,12,Markland Wood (12),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,YUKON,MT,24,SILGRY,850.0,STOLEN,786,"{'type': 'Point', 'coordinates': (-79.57057605, 43.63145393)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-796,24496,GO-20159008922,THEFT UNDER,2015-10-21,2015,October,Wednesday,21,294,21,2015-10-23,2015,October,Friday,23,296,13,D22,Toronto,12,Markland Wood (12),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE 2 CITY B,RG,8,BLK,600.0,STOLEN,787,"{'type': 'Point', 'coordinates': (-79.58008672, 43.64078499)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-797,24552,GO-20161967119,THEFT FROM MOTOR VEHICLE UNDER,2016-11-04,2016,November,Friday,4,309,21,2016-11-05,2016,November,Saturday,5,310,8,D22,Toronto,12,Markland Wood (12),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,YORKVILLE,OT,12,BLK,600.0,STOLEN,788,"{'type': 'Point', 'coordinates': (-79.57978988, 43.62929136)}",Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343
-798,695,GO-20179008769,THEFT UNDER - BICYCLE,2017-06-23,2017,June,Friday,23,174,0,2017-06-23,2017,June,Friday,23,174,12,D22,Toronto,13,Etobicoke West Mall (13),"Apartment (Rooming House, Condo)",Apartment,GI,YUKON (UPGRADED,MT,20,GRY,1600.0,STOLEN,789,"{'type': 'Point', 'coordinates': (-79.56081207, 43.6392073)}",Etobicoke West Mall,13,No Designation,11848,10927,0.084,4727,4583,6582,1.8,5550,3185,315,1750,200,65,45,0.011711711711711712
-799,1407,GO-20179014765,THEFT UNDER - BICYCLE,2017-09-14,2017,September,Thursday,14,257,14,2017-09-14,2017,September,Thursday,14,257,16,D22,Toronto,13,Etobicoke West Mall (13),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,KOZAK,BM,5,,370.0,STOLEN,790,"{'type': 'Point', 'coordinates': (-79.56478117000002, 43.639342840000005)}",Etobicoke West Mall,13,No Designation,11848,10927,0.084,4727,4583,6582,1.8,5550,3185,315,1750,200,65,45,0.011711711711711712
-800,3205,GO-20181506845,B&E,2018-08-13,2018,August,Monday,13,225,1,2018-08-15,2018,August,Wednesday,15,227,19,D22,Toronto,13,Etobicoke West Mall (13),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,,RG,1,,2500.0,STOLEN,791,"{'type': 'Point', 'coordinates': (-79.57761991, 43.64991)}",Etobicoke West Mall,13,No Designation,11848,10927,0.084,4727,4583,6582,1.8,5550,3185,315,1750,200,65,45,0.011711711711711712
-801,5587,GO-20199035066,THEFT UNDER,2019-10-23,2019,October,Wednesday,23,296,6,2019-10-24,2019,October,Thursday,24,297,13,D22,Toronto,13,Etobicoke West Mall (13),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,,RG,18,,310.0,STOLEN,792,"{'type': 'Point', 'coordinates': (-79.55994122000001, 43.63755565)}",Etobicoke West Mall,13,No Designation,11848,10927,0.084,4727,4583,6582,1.8,5550,3185,315,1750,200,65,45,0.011711711711711712
-802,7651,GO-20209030269,THEFT UNDER,2020-10-22,2020,October,Thursday,22,296,0,2020-11-22,2020,November,Sunday,22,327,1,D22,Toronto,13,Etobicoke West Mall (13),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM 3,RG,24,BLK,400.0,STOLEN,793,"{'type': 'Point', 'coordinates': (-79.56626725, 43.64831865)}",Etobicoke West Mall,13,No Designation,11848,10927,0.084,4727,4583,6582,1.8,5550,3185,315,1750,200,65,45,0.011711711711711712
-803,8007,GO-20142191810,THEFT UNDER,2014-05-27,2014,May,Tuesday,27,147,12,2014-05-31,2014,May,Saturday,31,151,15,D22,Toronto,13,Etobicoke West Mall (13),"Single Home, House (Attach Garage, Cottage, Mobile)",House,JAMIS,TRAIL X2,MT,24,BLK,500.0,STOLEN,794,"{'type': 'Point', 'coordinates': (-79.56768585, 43.6368343)}",Etobicoke West Mall,13,No Designation,11848,10927,0.084,4727,4583,6582,1.8,5550,3185,315,1750,200,65,45,0.011711711711711712
-804,8092,GO-20142273510,B&E,2014-06-12,2014,June,Thursday,12,163,2,2014-06-12,2014,June,Thursday,12,163,8,D22,Toronto,13,Etobicoke West Mall (13),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,XR21,MT,21,WHIRED,1000.0,STOLEN,795,"{'type': 'Point', 'coordinates': (-79.57244795, 43.64334087)}",Etobicoke West Mall,13,No Designation,11848,10927,0.084,4727,4583,6582,1.8,5550,3185,315,1750,200,65,45,0.011711711711711712
-805,8985,GO-20142996296,THEFT UNDER,2014-09-24,2014,September,Wednesday,24,267,8,2014-09-27,2014,September,Saturday,27,270,16,D22,Toronto,13,Etobicoke West Mall (13),Schools During Supervised Activity,Educational,SUN,SUNDAY,BM,1,LBL,700.0,STOLEN,796,"{'type': 'Point', 'coordinates': (-79.56478117000002, 43.639342840000005)}",Etobicoke West Mall,13,No Designation,11848,10927,0.084,4727,4583,6582,1.8,5550,3185,315,1750,200,65,45,0.011711711711711712
-806,14293,GO-20201460759,THEFT UNDER - BICYCLE,2020-08-04,2020,August,Tuesday,4,217,23,2020-08-05,2020,August,Wednesday,5,218,14,D22,Toronto,13,Etobicoke West Mall (13),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ROCKY MOUNTAIN,FUSION 910,MT,10,BLK,700.0,STOLEN,797,"{'type': 'Point', 'coordinates': (-79.57548828, 43.65046286)}",Etobicoke West Mall,13,No Designation,11848,10927,0.084,4727,4583,6582,1.8,5550,3185,315,1750,200,65,45,0.011711711711711712
-807,14581,GO-20191778906,THEFT UNDER,2019-09-16,2019,September,Monday,16,259,4,2019-09-16,2019,September,Monday,16,259,11,D22,Toronto,13,Etobicoke West Mall (13),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,HORNET,EL,1,LBL,2000.0,STOLEN,798,"{'type': 'Point', 'coordinates': (-79.56478117000002, 43.639342840000005)}",Etobicoke West Mall,13,No Designation,11848,10927,0.084,4727,4583,6582,1.8,5550,3185,315,1750,200,65,45,0.011711711711711712
-808,17602,GO-20199022915,THEFT UNDER,2019-07-19,2019,July,Friday,19,200,13,2019-07-19,2019,July,Friday,19,200,13,D22,Toronto,13,Etobicoke West Mall (13),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,18,WHI,2000.0,STOLEN,799,"{'type': 'Point', 'coordinates': (-79.56610821, 43.65128273)}",Etobicoke West Mall,13,No Designation,11848,10927,0.084,4727,4583,6582,1.8,5550,3185,315,1750,200,65,45,0.011711711711711712
-809,17808,GO-20189013929,THEFT UNDER - BICYCLE,2018-05-03,2018,May,Thursday,3,123,19,2018-05-06,2018,May,Sunday,6,126,11,D22,Toronto,13,Etobicoke West Mall (13),"Apartment (Rooming House, Condo)",Apartment,OT,HARDROCK,MT,24,RED,580.0,STOLEN,800,"{'type': 'Point', 'coordinates': (-79.5674644, 43.65024954)}",Etobicoke West Mall,13,No Designation,11848,10927,0.084,4727,4583,6582,1.8,5550,3185,315,1750,200,65,45,0.011711711711711712
-810,17937,GO-20142590456,THEFT UNDER,2014-07-26,2014,July,Saturday,26,207,18,2014-07-28,2014,July,Monday,28,209,19,D22,Toronto,13,Etobicoke West Mall (13),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RMB,RC10,MT,12,BLU,737.0,STOLEN,801,"{'type': 'Point', 'coordinates': (-79.57707264, 43.65091914)}",Etobicoke West Mall,13,No Designation,11848,10927,0.084,4727,4583,6582,1.8,5550,3185,315,1750,200,65,45,0.011711711711711712
-811,18005,GO-20159009956,THEFT UNDER,2015-11-18,2015,November,Wednesday,18,322,12,2015-11-20,2015,November,Friday,20,324,13,D22,Toronto,13,Etobicoke West Mall (13),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,,MT,21,GRY,700.0,STOLEN,802,"{'type': 'Point', 'coordinates': (-79.56081207, 43.6392073)}",Etobicoke West Mall,13,No Designation,11848,10927,0.084,4727,4583,6582,1.8,5550,3185,315,1750,200,65,45,0.011711711711711712
-812,18060,GO-20169012974,THEFT UNDER,2016-11-04,2016,November,Friday,4,309,15,2016-11-04,2016,November,Friday,4,309,15,D22,Toronto,13,Etobicoke West Mall (13),"Apartment (Rooming House, Condo)",Apartment,HF,,OT,1,BLK,70.0,STOLEN,803,"{'type': 'Point', 'coordinates': (-79.57217757, 43.6523955)}",Etobicoke West Mall,13,No Designation,11848,10927,0.084,4727,4583,6582,1.8,5550,3185,315,1750,200,65,45,0.011711711711711712
-813,22003,GO-20142099050,B&E,2014-05-16,2014,May,Friday,16,136,15,2014-05-17,2014,May,Saturday,17,137,18,D22,Toronto,13,Etobicoke West Mall (13),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,RUKUS,MT,9,GRY,1800.0,STOLEN,804,"{'type': 'Point', 'coordinates': (-79.56777305, 43.64191376)}",Etobicoke West Mall,13,No Designation,11848,10927,0.084,4727,4583,6582,1.8,5550,3185,315,1750,200,65,45,0.011711711711711712
-814,22004,GO-20142099050,B&E,2014-05-16,2014,May,Friday,16,136,15,2014-05-17,2014,May,Saturday,17,137,18,D22,Toronto,13,Etobicoke West Mall (13),"Single Home, House (Attach Garage, Cottage, Mobile)",House,JAMIS,DURANGO,MT,24,SIL,800.0,STOLEN,805,"{'type': 'Point', 'coordinates': (-79.56777305, 43.64191376)}",Etobicoke West Mall,13,No Designation,11848,10927,0.084,4727,4583,6582,1.8,5550,3185,315,1750,200,65,45,0.011711711711711712
-815,24414,GO-20149003074,THEFT UNDER,2014-04-28,2014,April,Monday,28,118,15,2014-04-29,2014,April,Tuesday,29,119,23,D22,Toronto,13,Etobicoke West Mall (13),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,STATIC,MT,21,BLK,400.0,STOLEN,806,"{'type': 'Point', 'coordinates': (-79.5674644, 43.65024954)}",Etobicoke West Mall,13,No Designation,11848,10927,0.084,4727,4583,6582,1.8,5550,3185,315,1750,200,65,45,0.011711711711711712
-816,24418,GO-20149003655,THEFT UNDER,2014-05-16,2014,May,Friday,16,136,15,2014-05-28,2014,May,Wednesday,28,148,20,D22,Toronto,13,Etobicoke West Mall (13),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,QUICK 5,RG,8,SIL,600.0,STOLEN,807,"{'type': 'Point', 'coordinates': (-79.57707264, 43.65091914)}",Etobicoke West Mall,13,No Designation,11848,10927,0.084,4727,4583,6582,1.8,5550,3185,315,1750,200,65,45,0.011711711711711712
-817,24421,GO-20142273510,B&E,2014-06-12,2014,June,Thursday,12,163,2,2014-06-12,2014,June,Thursday,12,163,8,D22,Toronto,13,Etobicoke West Mall (13),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,ROAMX2,MT,21,,999.0,STOLEN,808,"{'type': 'Point', 'coordinates': (-79.57244795, 43.64334087)}",Etobicoke West Mall,13,No Designation,11848,10927,0.084,4727,4583,6582,1.8,5550,3185,315,1750,200,65,45,0.011711711711711712
-818,24434,GO-20149005570,B&E,2014-08-01,2014,August,Friday,1,213,0,2014-08-02,2014,August,Saturday,2,214,11,D22,Toronto,13,Etobicoke West Mall (13),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BL,THIN BLUE LINE,MT,21,BLU,1800.0,UNKNOWN,809,"{'type': 'Point', 'coordinates': (-79.57806779, 43.64808008)}",Etobicoke West Mall,13,No Designation,11848,10927,0.084,4727,4583,6582,1.8,5550,3185,315,1750,200,65,45,0.011711711711711712
-819,24444,GO-201537883,THEFT UNDER,2014-12-31,2014,December,Wednesday,31,365,15,2015-01-07,2015,January,Wednesday,7,7,17,D22,Toronto,13,Etobicoke West Mall (13),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,K2,UNK,MT,21,BLKGRN,440.0,STOLEN,810,"{'type': 'Point', 'coordinates': (-79.56081207, 43.6392073)}",Etobicoke West Mall,13,No Designation,11848,10927,0.084,4727,4583,6582,1.8,5550,3185,315,1750,200,65,45,0.011711711711711712
-820,222,GO-20179004587,THEFT UNDER,2017-04-11,2017,April,Tuesday,11,101,19,2017-04-11,2017,April,Tuesday,11,101,22,D22,Toronto,14,Islington-City Centre West (14),"Apartment (Rooming House, Condo)",Apartment,FJ,ROUBAIX,RC,12,GRY,1000.0,STOLEN,811,"{'type': 'Point', 'coordinates': (-79.53702637, 43.63768607)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-821,378,GO-2017842821,THEFT UNDER - BICYCLE,2017-05-12,2017,May,Friday,12,132,23,2017-05-13,2017,May,Saturday,13,133,11,D22,Toronto,14,Islington-City Centre West (14),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,JEKYLL,MT,18,BLK,1800.0,STOLEN,812,"{'type': 'Point', 'coordinates': (-79.54214221, 43.64824655)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-822,573,GO-20179007825,THEFT UNDER,2017-06-09,2017,June,Friday,9,160,20,2017-06-11,2017,June,Sunday,11,162,9,D22,Toronto,14,Islington-City Centre West (14),Ttc Subway Station,Transit,SU,"1800 26"""" HARDTA",MT,18,BLK,100.0,STOLEN,813,"{'type': 'Point', 'coordinates': (-79.53376337, 43.63782147)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-823,689,GO-20171122751,THEFT UNDER - BICYCLE,2017-06-19,2017,June,Monday,19,170,12,2017-06-23,2017,June,Friday,23,174,16,D22,Toronto,14,Islington-City Centre West (14),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN,,MT,8,BLU,360.0,STOLEN,814,"{'type': 'Point', 'coordinates': (-79.52505483, 43.64838422)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-824,919,GO-20179010561,THEFT UNDER,2017-07-18,2017,July,Tuesday,18,199,15,2017-07-19,2017,July,Wednesday,19,200,9,D22,Toronto,14,Islington-City Centre West (14),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RM,,MT,21,RED,1000.0,STOLEN,815,"{'type': 'Point', 'coordinates': (-79.53401889, 43.61929123)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-825,1282,GO-20179013803,THEFT UNDER - BICYCLE,2017-08-31,2017,August,Thursday,31,243,8,2017-09-01,2017,September,Friday,1,244,7,D22,Toronto,14,Islington-City Centre West (14),Ttc Subway Station,Transit,UK,,RG,21,,300.0,STOLEN,816,"{'type': 'Point', 'coordinates': (-79.52377938, 43.64551159)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-826,1322,GO-20171603023,THEFT UNDER - BICYCLE,2017-09-01,2017,September,Friday,1,244,3,2017-09-04,2017,September,Monday,4,247,19,D22,Toronto,14,Islington-City Centre West (14),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,FELT,,OT,10,BLK,,STOLEN,817,"{'type': 'Point', 'coordinates': (-79.53812447, 43.64120462)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-827,1451,GO-20171672375,THEFT UNDER - BICYCLE,2017-09-14,2017,September,Thursday,14,257,19,2017-09-15,2017,September,Friday,15,258,9,D22,Toronto,14,Islington-City Centre West (14),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,XTC,OT,11,WHI,1700.0,STOLEN,818,"{'type': 'Point', 'coordinates': (-79.53191599, 43.64524669)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-828,1553,GO-20171772098,THEFT OF EBIKE UNDER $5000,2017-09-30,2017,September,Saturday,30,273,3,2017-09-30,2017,September,Saturday,30,273,3,D22,Toronto,14,Islington-City Centre West (14),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,A Z SOURCES,DU CA,EL,3,BLK,3700.0,STOLEN,819,"{'type': 'Point', 'coordinates': (-79.53812447, 43.64120462)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-829,1665,GO-20179017287,THEFT UNDER,2017-10-08,2017,October,Sunday,8,281,15,2017-10-15,2017,October,Sunday,15,288,17,D22,Toronto,14,Islington-City Centre West (14),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,TROY CARBON RS,MT,11,BLK,3500.0,STOLEN,820,"{'type': 'Point', 'coordinates': (-79.53280588, 43.64315759)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-830,1723,GO-20179017960,THEFT UNDER - BICYCLE,2017-10-21,2017,October,Saturday,21,294,17,2017-10-23,2017,October,Monday,23,296,19,D22,Toronto,14,Islington-City Centre West (14),Bar / Restaurant,Commercial,NO,VFR4,TO,24,GRY,650.0,STOLEN,821,"{'type': 'Point', 'coordinates': (-79.55611632, 43.61421803)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-831,2131,GO-2018595824,THEFT UNDER,2018-03-21,2018,March,Wednesday,21,80,12,2018-04-03,2018,April,Tuesday,3,93,13,D22,Toronto,14,Islington-City Centre West (14),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RICKSAW,UNK,SC,1,RED,3000.0,STOLEN,822,"{'type': 'Point', 'coordinates': (-79.53760351, 43.63897842)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-832,2744,GO-20189021060,THEFT UNDER - BICYCLE,2018-07-01,2018,July,Sunday,1,182,10,2018-07-03,2018,July,Tuesday,3,184,17,D22,Toronto,14,Islington-City Centre West (14),Bar / Restaurant,Commercial,DB,HYBRID WOMEN,RG,4,LGR,500.0,STOLEN,823,"{'type': 'Point', 'coordinates': (-79.56049947, 43.60910823)}",Islington-City Centre West,14,No Designation,43965,38084,0.154,19911,19328,2712,16.21,22055,11775,975,8205,795,90,195,0.004080707322602585
-833,18041,GO-20161403617,THEFT UNDER - BICYCLE,2016-08-08,2016,August,Monday,8,221,0,2016-08-09,2016,August,Tuesday,9,222,15,D23,Toronto,8,Humber Heights-Westmount (8),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,UNKNOWN,OT,18,SIL,250.0,STOLEN,824,"{'type': 'Point', 'coordinates': (-79.51554107, 43.69588056)}",Humber Heights-Westmount,8,Emerging Neighbourhood,10948,10583,0.034,4261,4136,3981,2.75,4345,2800,205,1200,65,10,55,0.0023014959723820483
-834,22074,GO-20151368550,B&E,2015-08-10,2015,August,Monday,10,222,2,2015-08-10,2015,August,Monday,10,222,8,D23,Toronto,8,Humber Heights-Westmount (8),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DCO 702 18 INCH,,MT,12,,,STOLEN,825,"{'type': 'Point', 'coordinates': (-79.53423279, 43.69982423)}",Humber Heights-Westmount,8,Emerging Neighbourhood,10948,10583,0.034,4261,4136,3981,2.75,4345,2800,205,1200,65,10,55,0.0023014959723820483
-835,22087,GO-20159007595,THEFT UNDER,2015-09-22,2015,September,Tuesday,22,265,18,2015-09-22,2015,September,Tuesday,22,265,18,D23,Toronto,8,Humber Heights-Westmount (8),"Apartment (Rooming House, Condo)",Apartment,NO,STORM 7.2,MT,24,GRY,625.0,STOLEN,826,"{'type': 'Point', 'coordinates': (-79.52656968, 43.68233667)}",Humber Heights-Westmount,8,Emerging Neighbourhood,10948,10583,0.034,4261,4136,3981,2.75,4345,2800,205,1200,65,10,55,0.0023014959723820483
-836,24127,GO-20199037779,THEFT UNDER,2019-11-15,2019,November,Friday,15,319,15,2019-11-17,2019,November,Sunday,17,321,11,D23,Toronto,8,Humber Heights-Westmount (8),"Apartment (Rooming House, Condo)",Apartment,GI,GV EXPRESS,TO,21,BLK,500.0,STOLEN,827,"{'type': 'Point', 'coordinates': (-79.51310887, 43.6868507)}",Humber Heights-Westmount,8,Emerging Neighbourhood,10948,10583,0.034,4261,4136,3981,2.75,4345,2800,205,1200,65,10,55,0.0023014959723820483
-837,24350,GO-20189024719,THEFT UNDER - BICYCLE,2018-07-31,2018,July,Tuesday,31,212,10,2018-08-01,2018,August,Wednesday,1,213,7,D23,Toronto,8,Humber Heights-Westmount (8),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,RG,12,BLK,500.0,STOLEN,828,"{'type': 'Point', 'coordinates': (-79.5165076, 43.68647481)}",Humber Heights-Westmount,8,Emerging Neighbourhood,10948,10583,0.034,4261,4136,3981,2.75,4345,2800,205,1200,65,10,55,0.0023014959723820483
-838,24449,GO-2015742286,THEFT UNDER,2015-05-04,2015,May,Monday,4,124,18,2015-05-04,2015,May,Monday,4,124,20,D23,Toronto,8,Humber Heights-Westmount (8),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,ASCENT,MT,21,ONG,300.0,STOLEN,829,"{'type': 'Point', 'coordinates': (-79.51554107, 43.69588056)}",Humber Heights-Westmount,8,Emerging Neighbourhood,10948,10583,0.034,4261,4136,3981,2.75,4345,2800,205,1200,65,10,55,0.0023014959723820483
-839,1471,GO-20171693288,THEFT UNDER - BICYCLE,2017-09-15,2017,September,Friday,15,258,16,2017-09-18,2017,September,Monday,18,261,12,D23,Toronto,9,Edenbridge-Humber Valley (9),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,FUJI,NEVADA,OT,0,YELGRN,566.0,STOLEN,830,"{'type': 'Point', 'coordinates': (-79.51141912, 43.68396393)}",Edenbridge-Humber Valley,9,No Designation,15535,14943,0.04,6606,6254,2840,5.47,7095,4490,345,2010,175,40,45,0.005637773079633545
-840,1645,GO-20179016938,THEFT UNDER - BICYCLE,2017-10-10,2017,October,Tuesday,10,283,18,2017-10-11,2017,October,Wednesday,11,284,11,D22,Toronto,9,Edenbridge-Humber Valley (9),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GF,,MT,24,,850.0,STOLEN,831,"{'type': 'Point', 'coordinates': (-79.51042078, 43.66063143)}",Edenbridge-Humber Valley,9,No Designation,15535,14943,0.04,6606,6254,2840,5.47,7095,4490,345,2010,175,40,45,0.005637773079633545
-841,1647,GO-20179016938,THEFT UNDER - BICYCLE,2017-10-10,2017,October,Tuesday,10,283,18,2017-10-11,2017,October,Wednesday,11,284,11,D22,Toronto,9,Edenbridge-Humber Valley (9),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GF,,MT,24,,850.0,STOLEN,832,"{'type': 'Point', 'coordinates': (-79.51042078, 43.66063143)}",Edenbridge-Humber Valley,9,No Designation,15535,14943,0.04,6606,6254,2840,5.47,7095,4490,345,2010,175,40,45,0.005637773079633545
-842,1848,GO-20179019693,THEFT UNDER - BICYCLE,2017-11-14,2017,November,Tuesday,14,318,9,2017-11-15,2017,November,Wednesday,15,319,9,D22,Toronto,9,Edenbridge-Humber Valley (9),"Apartment (Rooming House, Condo)",Apartment,GI,REIGN,MT,24,SIL,2400.0,STOLEN,833,"{'type': 'Point', 'coordinates': (-79.51042078, 43.66063143)}",Edenbridge-Humber Valley,9,No Designation,15535,14943,0.04,6606,6254,2840,5.47,7095,4490,345,2010,175,40,45,0.005637773079633545
-843,2336,GO-20189015257,THEFT UNDER - BICYCLE,2018-05-16,2018,May,Wednesday,16,136,15,2018-05-17,2018,May,Thursday,17,137,9,D22,Toronto,9,Edenbridge-Humber Valley (9),"Apartment (Rooming House, Condo)",Apartment,NO,XFR,MT,21,BLK,1299.0,STOLEN,834,"{'type': 'Point', 'coordinates': (-79.51067164, 43.68307737)}",Edenbridge-Humber Valley,9,No Designation,15535,14943,0.04,6606,6254,2840,5.47,7095,4490,345,2010,175,40,45,0.005637773079633545
-844,2337,GO-20189015257,THEFT UNDER - BICYCLE,2018-05-16,2018,May,Wednesday,16,136,15,2018-05-17,2018,May,Thursday,17,137,9,D22,Toronto,9,Edenbridge-Humber Valley (9),"Apartment (Rooming House, Condo)",Apartment,NO,XFR,MT,21,BLK,1299.0,STOLEN,835,"{'type': 'Point', 'coordinates': (-79.51067164, 43.68307737)}",Edenbridge-Humber Valley,9,No Designation,15535,14943,0.04,6606,6254,2840,5.47,7095,4490,345,2010,175,40,45,0.005637773079633545
-845,5611,GO-20201508068,THEFT UNDER - BICYCLE,2020-08-12,2020,August,Wednesday,12,225,0,2020-08-13,2020,August,Thursday,13,226,21,D22,Toronto,9,Edenbridge-Humber Valley (9),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,MT,12,RED,700.0,STOLEN,836,"{'type': 'Point', 'coordinates': (-79.52089916, 43.65882311)}",Edenbridge-Humber Valley,9,No Designation,15535,14943,0.04,6606,6254,2840,5.47,7095,4490,345,2010,175,40,45,0.005637773079633545
-846,6340,GO-20201041701,THEFT UNDER - BICYCLE,2020-06-05,2020,June,Friday,5,157,14,2020-06-10,2020,June,Wednesday,10,162,11,D22,Toronto,9,Edenbridge-Humber Valley (9),"Apartment (Rooming House, Condo)",Apartment,NAKAMURA,ROYAL 700C,OT,24,BLU,350.0,STOLEN,837,"{'type': 'Point', 'coordinates': (-79.52062923, 43.66338572)}",Edenbridge-Humber Valley,9,No Designation,15535,14943,0.04,6606,6254,2840,5.47,7095,4490,345,2010,175,40,45,0.005637773079633545
-847,6341,GO-20201066753,THEFT OF MOTOR VEHICLE,2020-06-09,2020,June,Tuesday,9,161,21,2020-06-10,2020,June,Wednesday,10,162,10,D22,Toronto,9,Edenbridge-Humber Valley (9),"Single Home, House (Attach Garage, Cottage, Mobile)",House,HUMMER,,BM,1,BLK,60.0,STOLEN,838,"{'type': 'Point', 'coordinates': (-79.51005466, 43.67885129)}",Edenbridge-Humber Valley,9,No Designation,15535,14943,0.04,6606,6254,2840,5.47,7095,4490,345,2010,175,40,45,0.005637773079633545
-848,6360,GO-20201059154,B&E,2020-06-05,2020,June,Friday,5,157,21,2020-06-09,2020,June,Tuesday,9,161,8,D22,Toronto,9,Edenbridge-Humber Valley (9),"Apartment (Rooming House, Condo)",Apartment,U/K,,OT,0,GRY,,STOLEN,839,"{'type': 'Point', 'coordinates': (-79.52062923, 43.66338572)}",Edenbridge-Humber Valley,9,No Designation,15535,14943,0.04,6606,6254,2840,5.47,7095,4490,345,2010,175,40,45,0.005637773079633545
-849,8465,GO-20142520395,THEFT UNDER,2014-07-16,2014,July,Wednesday,16,197,6,2014-07-18,2014,July,Friday,18,199,7,D23,Toronto,9,Edenbridge-Humber Valley (9),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,MT,18,GRY,200.0,STOLEN,840,"{'type': 'Point', 'coordinates': (-79.51244672, 43.68551456)}",Edenbridge-Humber Valley,9,No Designation,15535,14943,0.04,6606,6254,2840,5.47,7095,4490,345,2010,175,40,45,0.005637773079633545
-850,9460,GO-2015671626,B&E,2015-04-22,2015,April,Wednesday,22,112,23,2015-04-23,2015,April,Thursday,23,113,12,D22,Toronto,9,Edenbridge-Humber Valley (9),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,,MT,21,BLKGRN,1200.0,STOLEN,841,"{'type': 'Point', 'coordinates': (-79.52727416, 43.67502718000001)}",Edenbridge-Humber Valley,9,No Designation,15535,14943,0.04,6606,6254,2840,5.47,7095,4490,345,2010,175,40,45,0.005637773079633545
-851,9495,GO-2015710798,THEFT UNDER,2015-04-29,2015,April,Wednesday,29,119,14,2015-04-29,2015,April,Wednesday,29,119,18,D22,Toronto,9,Edenbridge-Humber Valley (9),Schools During Supervised Activity,Educational,SPECIALIZED,,RG,0,BLU,520.0,STOLEN,842,"{'type': 'Point', 'coordinates': (-79.5202901, 43.65689965)}",Edenbridge-Humber Valley,9,No Designation,15535,14943,0.04,6606,6254,2840,5.47,7095,4490,345,2010,175,40,45,0.005637773079633545
-852,10076,GO-20159004863,THEFT UNDER,2015-07-21,2015,July,Tuesday,21,202,22,2015-07-22,2015,July,Wednesday,22,203,19,D22,Toronto,9,Edenbridge-Humber Valley (9),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,24,,0.0,STOLEN,843,"{'type': 'Point', 'coordinates': (-79.51955889, 43.662706490000005)}",Edenbridge-Humber Valley,9,No Designation,15535,14943,0.04,6606,6254,2840,5.47,7095,4490,345,2010,175,40,45,0.005637773079633545
-853,11082,GO-20169002875,THEFT UNDER,2016-03-29,2016,March,Tuesday,29,89,7,2016-03-29,2016,March,Tuesday,29,89,21,D22,Toronto,9,Edenbridge-Humber Valley (9),"Apartment (Rooming House, Condo)",Apartment,OT,ORION,RG,18,SIL,0.0,STOLEN,844,"{'type': 'Point', 'coordinates': (-79.52542865, 43.65238462)}",Edenbridge-Humber Valley,9,No Designation,15535,14943,0.04,6606,6254,2840,5.47,7095,4490,345,2010,175,40,45,0.005637773079633545
-854,11142,GO-20169003469,THEFT UNDER - BICYCLE,2016-04-16,2016,April,Saturday,16,107,14,2016-04-16,2016,April,Saturday,16,107,18,D22,Toronto,9,Edenbridge-Humber Valley (9),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,SIRRUS SPORT,MT,21,BLK,600.0,STOLEN,845,"{'type': 'Point', 'coordinates': (-79.51375682000001, 43.65823569)}",Edenbridge-Humber Valley,9,No Designation,15535,14943,0.04,6606,6254,2840,5.47,7095,4490,345,2010,175,40,45,0.005637773079633545
-855,14731,GO-20179016938,THEFT UNDER - BICYCLE,2017-10-10,2017,October,Tuesday,10,283,18,2017-10-11,2017,October,Wednesday,11,284,11,D22,Toronto,9,Edenbridge-Humber Valley (9),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GF,,MT,27,,850.0,STOLEN,846,"{'type': 'Point', 'coordinates': (-79.51042078, 43.66063143)}",Edenbridge-Humber Valley,9,No Designation,15535,14943,0.04,6606,6254,2840,5.47,7095,4490,345,2010,175,40,45,0.005637773079633545
-856,14915,GO-20142204409,THEFT UNDER,2014-06-01,2014,June,Sunday,1,152,10,2014-06-02,2014,June,Monday,2,153,12,D22,Toronto,9,Edenbridge-Humber Valley (9),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SIRRIUS,SPECIALIZED HYB,RG,10,BLK,700.0,STOLEN,847,"{'type': 'Point', 'coordinates': (-79.53094693, 43.67816945)}",Edenbridge-Humber Valley,9,No Designation,15535,14943,0.04,6606,6254,2840,5.47,7095,4490,345,2010,175,40,45,0.005637773079633545
-857,14918,GO-20142297158,THEFT UNDER,2014-06-15,2014,June,Sunday,15,166,12,2014-06-15,2014,June,Sunday,15,166,17,D22,Toronto,9,Edenbridge-Humber Valley (9),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,MADONE 6.2,MT,12,BLKRED,5000.0,STOLEN,848,"{'type': 'Point', 'coordinates': (-79.53186966, 43.66717318)}",Edenbridge-Humber Valley,9,No Designation,15535,14943,0.04,6606,6254,2840,5.47,7095,4490,345,2010,175,40,45,0.005637773079633545
-858,14961,GO-20159004241,THEFT UNDER,2015-07-05,2015,July,Sunday,5,186,19,2015-07-06,2015,July,Monday,6,187,18,D22,Toronto,9,Edenbridge-Humber Valley (9),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,ESCAPE 3,RG,24,GRY,492.0,STOLEN,849,"{'type': 'Point', 'coordinates': (-79.52011289, 43.66309891)}",Edenbridge-Humber Valley,9,No Designation,15535,14943,0.04,6606,6254,2840,5.47,7095,4490,345,2010,175,40,45,0.005637773079633545
-859,14962,GO-20159004241,THEFT UNDER,2015-07-05,2015,July,Sunday,5,186,19,2015-07-06,2015,July,Monday,6,187,18,D22,Toronto,9,Edenbridge-Humber Valley (9),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RM,FUSION,MT,24,ONG,903.0,STOLEN,850,"{'type': 'Point', 'coordinates': (-79.52011289, 43.66309891)}",Edenbridge-Humber Valley,9,No Designation,15535,14943,0.04,6606,6254,2840,5.47,7095,4490,345,2010,175,40,45,0.005637773079633545
-860,4717,GO-20199021602,THEFT UNDER,2019-06-09,2019,June,Sunday,9,160,12,2019-07-09,2019,July,Tuesday,9,190,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,TR,,RG,5,LBL,0.0,STOLEN,912,"{'type': 'Point', 'coordinates': (-79.47687625, 43.63027025)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-861,14984,GO-20152154110,THEFT UNDER,2015-12-13,2015,December,Sunday,13,347,21,2015-12-16,2015,December,Wednesday,16,350,11,D22,Toronto,9,Edenbridge-Humber Valley (9),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,HUFFY,OT,0,GRN,,STOLEN,851,"{'type': 'Point', 'coordinates': (-79.52248005, 43.68110887)}",Edenbridge-Humber Valley,9,No Designation,15535,14943,0.04,6606,6254,2840,5.47,7095,4490,345,2010,175,40,45,0.005637773079633545
-862,14985,GO-20152154110,THEFT UNDER,2015-12-13,2015,December,Sunday,13,347,21,2015-12-16,2015,December,Wednesday,16,350,11,D22,Toronto,9,Edenbridge-Humber Valley (9),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,YOUTH LADIES,OT,0,BLU,,STOLEN,852,"{'type': 'Point', 'coordinates': (-79.52248005, 43.68110887)}",Edenbridge-Humber Valley,9,No Designation,15535,14943,0.04,6606,6254,2840,5.47,7095,4490,345,2010,175,40,45,0.005637773079633545
-863,15014,GO-20161352739,THEFT UNDER - BICYCLE,2016-08-01,2016,August,Monday,1,214,16,2016-08-01,2016,August,Monday,1,214,20,D22,Toronto,9,Edenbridge-Humber Valley (9),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,ROCKY MOUNTAIN,,MT,27,BLKWHI,,STOLEN,853,"{'type': 'Point', 'coordinates': (-79.51067164, 43.68307737)}",Edenbridge-Humber Valley,9,No Designation,15535,14943,0.04,6606,6254,2840,5.47,7095,4490,345,2010,175,40,45,0.005637773079633545
-864,15019,GO-20169008779,THEFT UNDER - BICYCLE,2016-07-26,2016,July,Tuesday,26,208,10,2016-08-15,2016,August,Monday,15,228,11,D22,Toronto,9,Edenbridge-Humber Valley (9),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,12,BRZ,1000.0,STOLEN,854,"{'type': 'Point', 'coordinates': (-79.51067164, 43.68307737)}",Edenbridge-Humber Valley,9,No Designation,15535,14943,0.04,6606,6254,2840,5.47,7095,4490,345,2010,175,40,45,0.005637773079633545
-865,15042,GO-2017546703,THEFT FROM MOTOR VEHICLE UNDER,2017-03-14,2017,March,Tuesday,14,73,20,2017-03-28,2017,March,Tuesday,28,87,10,D22,Toronto,9,Edenbridge-Humber Valley (9),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,,MT,21,GRY,200.0,STOLEN,855,"{'type': 'Point', 'coordinates': (-79.52176492, 43.66397643)}",Edenbridge-Humber Valley,9,No Designation,15535,14943,0.04,6606,6254,2840,5.47,7095,4490,345,2010,175,40,45,0.005637773079633545
-866,17574,GO-2019993411,THEFT UNDER - BICYCLE,2019-05-30,2019,May,Thursday,30,150,18,2019-05-30,2019,May,Thursday,30,150,18,D22,Toronto,9,Edenbridge-Humber Valley (9),Convenience Stores,Commercial,NORCO,STORM,MT,24,GRN,750.0,STOLEN,856,"{'type': 'Point', 'coordinates': (-79.51984025, 43.66088016)}",Edenbridge-Humber Valley,9,No Designation,15535,14943,0.04,6606,6254,2840,5.47,7095,4490,345,2010,175,40,45,0.005637773079633545
-867,18010,GO-20169000150,THEFT UNDER,2015-11-12,2015,November,Thursday,12,316,12,2016-01-05,2016,January,Tuesday,5,5,15,D22,Toronto,9,Edenbridge-Humber Valley (9),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,9TH DISTRICT,RG,9,GRN,900.0,STOLEN,857,"{'type': 'Point', 'coordinates': (-79.509444, 43.66101428)}",Edenbridge-Humber Valley,9,No Designation,15535,14943,0.04,6606,6254,2840,5.47,7095,4490,345,2010,175,40,45,0.005637773079633545
-868,18068,GO-2017719319,THEFT UNDER - BICYCLE,2017-04-12,2017,April,Wednesday,12,102,19,2017-04-24,2017,April,Monday,24,114,14,D22,Toronto,9,Edenbridge-Humber Valley (9),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CANNONDALE,TRAIL SL29ER4,MT,18,BLK,1120.0,STOLEN,858,"{'type': 'Point', 'coordinates': (-79.51067164, 43.68307737)}",Edenbridge-Humber Valley,9,No Designation,15535,14943,0.04,6606,6254,2840,5.47,7095,4490,345,2010,175,40,45,0.005637773079633545
-869,21211,GO-20171608429,B&E,2017-09-03,2017,September,Sunday,3,246,21,2017-09-09,2017,September,Saturday,9,252,13,D22,Toronto,9,Edenbridge-Humber Valley (9),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,GLOBE,OT,21,BLK,1500.0,STOLEN,859,"{'type': 'Point', 'coordinates': (-79.52444757, 43.67947022)}",Edenbridge-Humber Valley,9,No Designation,15535,14943,0.04,6606,6254,2840,5.47,7095,4490,345,2010,175,40,45,0.005637773079633545
-870,22053,GO-2015757609,THEFT UNDER,2015-05-04,2015,May,Monday,4,124,18,2015-05-07,2015,May,Thursday,7,127,8,D22,Toronto,9,Edenbridge-Humber Valley (9),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,,MT,18,BLUSIL,,STOLEN,860,"{'type': 'Point', 'coordinates': (-79.52688809, 43.678668)}",Edenbridge-Humber Valley,9,No Designation,15535,14943,0.04,6606,6254,2840,5.47,7095,4490,345,2010,175,40,45,0.005637773079633545
-871,22054,GO-2015757609,THEFT UNDER,2015-05-04,2015,May,Monday,4,124,18,2015-05-07,2015,May,Thursday,7,127,8,D22,Toronto,9,Edenbridge-Humber Valley (9),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,,MT,0,BLUWHI,,STOLEN,861,"{'type': 'Point', 'coordinates': (-79.52688809, 43.678668)}",Edenbridge-Humber Valley,9,No Designation,15535,14943,0.04,6606,6254,2840,5.47,7095,4490,345,2010,175,40,45,0.005637773079633545
-872,22055,GO-2015757609,THEFT UNDER,2015-05-04,2015,May,Monday,4,124,18,2015-05-07,2015,May,Thursday,7,127,8,D22,Toronto,9,Edenbridge-Humber Valley (9),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,OT,24,PLESIL,,STOLEN,862,"{'type': 'Point', 'coordinates': (-79.52688809, 43.678668)}",Edenbridge-Humber Valley,9,No Designation,15535,14943,0.04,6606,6254,2840,5.47,7095,4490,345,2010,175,40,45,0.005637773079633545
-873,22064,GO-20151125669,B&E,2015-06-30,2015,June,Tuesday,30,181,18,2015-07-04,2015,July,Saturday,4,185,11,D22,Toronto,9,Edenbridge-Humber Valley (9),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,+,RG,20,SIL,500.0,STOLEN,863,"{'type': 'Point', 'coordinates': (-79.5241007, 43.65949581)}",Edenbridge-Humber Valley,9,No Designation,15535,14943,0.04,6606,6254,2840,5.47,7095,4490,345,2010,175,40,45,0.005637773079633545
-874,22143,GO-2017533724,THEFT UNDER,2017-03-25,2017,March,Saturday,25,84,23,2017-03-26,2017,March,Sunday,26,85,10,D22,Toronto,9,Edenbridge-Humber Valley (9),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DUTCHI,STREET,OT,0,BLU,834.0,STOLEN,864,"{'type': 'Point', 'coordinates': (-79.52459678, 43.66116923)}",Edenbridge-Humber Valley,9,No Designation,15535,14943,0.04,6606,6254,2840,5.47,7095,4490,345,2010,175,40,45,0.005637773079633545
-875,22144,GO-2017533724,THEFT UNDER,2017-03-25,2017,March,Saturday,25,84,23,2017-03-26,2017,March,Sunday,26,85,10,D22,Toronto,9,Edenbridge-Humber Valley (9),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DUTCHI,UNKNOWN,OT,0,,840.0,STOLEN,865,"{'type': 'Point', 'coordinates': (-79.52459678, 43.66116923)}",Edenbridge-Humber Valley,9,No Designation,15535,14943,0.04,6606,6254,2840,5.47,7095,4490,345,2010,175,40,45,0.005637773079633545
-876,24312,GO-20189019007,THEFT UNDER - BICYCLE,2018-06-10,2018,June,Sunday,10,161,20,2018-06-17,2018,June,Sunday,17,168,0,D23,Toronto,9,Edenbridge-Humber Valley (9),"Apartment (Rooming House, Condo)",Apartment,OT,MEC CHANCE,RG,11,RED,1889.0,STOLEN,866,"{'type': 'Point', 'coordinates': (-79.515198, 43.68273481)}",Edenbridge-Humber Valley,9,No Designation,15535,14943,0.04,6606,6254,2840,5.47,7095,4490,345,2010,175,40,45,0.005637773079633545
-877,24566,GO-2017683457,B&E,2017-04-15,2017,April,Saturday,15,105,19,2017-04-18,2017,April,Tuesday,18,108,23,D22,Toronto,9,Edenbridge-Humber Valley (9),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,,RC,21,WHI,3300.0,STOLEN,867,"{'type': 'Point', 'coordinates': (-79.51067164, 43.68307737)}",Edenbridge-Humber Valley,9,No Designation,15535,14943,0.04,6606,6254,2840,5.47,7095,4490,345,2010,175,40,45,0.005637773079633545
-878,747,GO-20171156530,THEFT UNDER,2017-06-27,2017,June,Tuesday,27,178,21,2017-06-28,2017,June,Wednesday,28,179,14,D22,Toronto,10,Princess-Rosethorn (10),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,CYPRES,TO,18,BLK,700.0,STOLEN,868,"{'type': 'Point', 'coordinates': (-79.53047476, 43.66082229)}",Princess-Rosethorn,10,No Designation,11051,11197,-0.013000000000000001,3958,3861,2138,5.17,4800,3515,230,950,75,0,30,0.0
-879,1268,GO-20179013652,THEFT UNDER - BICYCLE,2017-08-29,2017,August,Tuesday,29,241,22,2017-08-30,2017,August,Wednesday,30,242,0,D22,Toronto,10,Princess-Rosethorn (10),Convenience Stores,Commercial,UK,,BM,20,WHI,400.0,STOLEN,869,"{'type': 'Point', 'coordinates': (-79.55543799, 43.67421883)}",Princess-Rosethorn,10,No Designation,11051,11197,-0.013000000000000001,3958,3861,2138,5.17,4800,3515,230,950,75,0,30,0.0
-880,1313,GO-20179013652,THEFT UNDER - BICYCLE,2017-08-29,2017,August,Tuesday,29,241,22,2017-08-30,2017,August,Wednesday,30,242,0,D22,Toronto,10,Princess-Rosethorn (10),Convenience Stores,Commercial,OT,,BM,1,WHI,500.0,STOLEN,870,"{'type': 'Point', 'coordinates': (-79.55543799, 43.67421883)}",Princess-Rosethorn,10,No Designation,11051,11197,-0.013000000000000001,3958,3861,2138,5.17,4800,3515,230,950,75,0,30,0.0
-881,2520,GO-20189018068,THEFT UNDER,2018-06-04,2018,June,Monday,4,155,8,2018-06-09,2018,June,Saturday,9,160,21,D22,Toronto,10,Princess-Rosethorn (10),Schools During Supervised Activity,Educational,GI,REVEL,MT,21,BLK,475.0,STOLEN,871,"{'type': 'Point', 'coordinates': (-79.54530679, 43.65935171)}",Princess-Rosethorn,10,No Designation,11051,11197,-0.013000000000000001,3958,3861,2138,5.17,4800,3515,230,950,75,0,30,0.0
-882,3828,GO-20189037453,THEFT UNDER - BICYCLE,2018-11-08,2018,November,Thursday,8,312,6,2018-11-08,2018,November,Thursday,8,312,20,D22,Toronto,10,Princess-Rosethorn (10),Ttc Subway Station,Transit,OT,MILANO,RG,21,BLK,700.0,STOLEN,872,"{'type': 'Point', 'coordinates': (-79.53353659, 43.65835142)}",Princess-Rosethorn,10,No Designation,11051,11197,-0.013000000000000001,3958,3861,2138,5.17,4800,3515,230,950,75,0,30,0.0
-883,4246,GO-20199014240,THEFT UNDER,2019-05-07,2019,May,Tuesday,7,127,13,2019-05-07,2019,May,Tuesday,7,127,18,D22,Toronto,10,Princess-Rosethorn (10),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,MT,21,WHI,500.0,STOLEN,873,"{'type': 'Point', 'coordinates': (-79.53931683000002, 43.67694883)}",Princess-Rosethorn,10,No Designation,11051,11197,-0.013000000000000001,3958,3861,2138,5.17,4800,3515,230,950,75,0,30,0.0
-884,4609,GO-20199020153,THEFT UNDER,2019-06-25,2019,June,Tuesday,25,176,16,2019-06-26,2019,June,Wednesday,26,177,16,D22,Toronto,10,Princess-Rosethorn (10),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RG,3,RED,200.0,STOLEN,874,"{'type': 'Point', 'coordinates': (-79.55543799, 43.67421883)}",Princess-Rosethorn,10,No Designation,11051,11197,-0.013000000000000001,3958,3861,2138,5.17,4800,3515,230,950,75,0,30,0.0
-885,5068,GO-20191545428,THEFT UNDER - BICYCLE,2019-08-13,2019,August,Tuesday,13,225,23,2019-08-15,2019,August,Thursday,15,227,9,D22,Toronto,10,Princess-Rosethorn (10),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FELT,ZW3,TO,21,WHI,4000.0,STOLEN,875,"{'type': 'Point', 'coordinates': (-79.52788603, 43.65488316)}",Princess-Rosethorn,10,No Designation,11051,11197,-0.013000000000000001,3958,3861,2138,5.17,4800,3515,230,950,75,0,30,0.0
-886,5586,GO-20192058072,B&E,2019-10-25,2019,October,Friday,25,298,2,2019-10-25,2019,October,Friday,25,298,2,D22,Toronto,10,Princess-Rosethorn (10),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,DESTRO,BM,1,PLE,500.0,STOLEN,876,"{'type': 'Point', 'coordinates': (-79.55453354, 43.66087522)}",Princess-Rosethorn,10,No Designation,11051,11197,-0.013000000000000001,3958,3861,2138,5.17,4800,3515,230,950,75,0,30,0.0
-887,7017,GO-20201565639,B&E,2020-08-20,2020,August,Thursday,20,233,4,2020-08-20,2020,August,Thursday,20,233,12,D22,Toronto,10,Princess-Rosethorn (10),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ROCKY MOUNTAIN,,MT,18,,2000.0,STOLEN,877,"{'type': 'Point', 'coordinates': (-79.53801002, 43.65830311)}",Princess-Rosethorn,10,No Designation,11051,11197,-0.013000000000000001,3958,3861,2138,5.17,4800,3515,230,950,75,0,30,0.0
-888,8637,GO-20142700982,B&E,2014-08-13,2014,August,Wednesday,13,225,18,2014-08-14,2014,August,Thursday,14,226,12,D22,Toronto,10,Princess-Rosethorn (10),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,CAN 13 TRAILS,MT,24,WHIONG,688.0,STOLEN,878,"{'type': 'Point', 'coordinates': (-79.53414157, 43.66611623)}",Princess-Rosethorn,10,No Designation,11051,11197,-0.013000000000000001,3958,3861,2138,5.17,4800,3515,230,950,75,0,30,0.0
-889,8867,GO-20142882414,THEFT UNDER,2014-09-10,2014,September,Wednesday,10,253,10,2014-09-10,2014,September,Wednesday,10,253,13,D22,Toronto,10,Princess-Rosethorn (10),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,U/K,RC,17,BLK,2000.0,STOLEN,879,"{'type': 'Point', 'coordinates': (-79.53729885, 43.66908725)}",Princess-Rosethorn,10,No Designation,11051,11197,-0.013000000000000001,3958,3861,2138,5.17,4800,3515,230,950,75,0,30,0.0
-890,9363,GO-2015549036,THEFT UNDER,2015-03-31,2015,March,Tuesday,31,90,15,2015-04-02,2015,April,Thursday,2,92,18,D22,Toronto,10,Princess-Rosethorn (10),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,,MT,18,GRNBLK,5018.0,STOLEN,880,"{'type': 'Point', 'coordinates': (-79.54942722, 43.66656531)}",Princess-Rosethorn,10,No Designation,11051,11197,-0.013000000000000001,3958,3861,2138,5.17,4800,3515,230,950,75,0,30,0.0
-891,10207,GO-20151370417,B&E,2015-08-07,2015,August,Friday,7,219,18,2015-08-10,2015,August,Monday,10,222,15,D22,Toronto,10,Princess-Rosethorn (10),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,MARLIN 5,MT,21,,500.0,STOLEN,881,"{'type': 'Point', 'coordinates': (-79.54275796, 43.670163120000005)}",Princess-Rosethorn,10,No Designation,11051,11197,-0.013000000000000001,3958,3861,2138,5.17,4800,3515,230,950,75,0,30,0.0
-892,10559,GO-20159007869,THEFT UNDER,2015-09-27,2015,September,Sunday,27,270,16,2015-09-28,2015,September,Monday,28,271,15,D22,Toronto,10,Princess-Rosethorn (10),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,EXPRESSWAY 1,FO,12,BLK,733.0,STOLEN,882,"{'type': 'Point', 'coordinates': (-79.53252806, 43.65998608)}",Princess-Rosethorn,10,No Designation,11051,11197,-0.013000000000000001,3958,3861,2138,5.17,4800,3515,230,950,75,0,30,0.0
-893,10572,GO-20151592575,B&E,2015-09-14,2015,September,Monday,14,257,23,2015-09-15,2015,September,Tuesday,15,258,6,D22,Toronto,10,Princess-Rosethorn (10),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,MT,21,,900.0,STOLEN,883,"{'type': 'Point', 'coordinates': (-79.54608142, 43.66642439)}",Princess-Rosethorn,10,No Designation,11051,11197,-0.013000000000000001,3958,3861,2138,5.17,4800,3515,230,950,75,0,30,0.0
-894,11404,GO-20169005110,THEFT UNDER,2016-05-30,2016,May,Monday,30,151,0,2016-05-30,2016,May,Monday,30,151,13,D22,Toronto,10,Princess-Rosethorn (10),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,,OT,18,SIL,1000.0,STOLEN,884,"{'type': 'Point', 'coordinates': (-79.53888142, 43.66640403)}",Princess-Rosethorn,10,No Designation,11051,11197,-0.013000000000000001,3958,3861,2138,5.17,4800,3515,230,950,75,0,30,0.0
-895,14466,GO-20189034122,THEFT UNDER - BICYCLE,2018-10-11,2018,October,Thursday,11,284,15,2018-10-15,2018,October,Monday,15,288,10,D22,Toronto,10,Princess-Rosethorn (10),Schools During Un-Supervised Activity,Educational,UK,,RG,21,SIL,200.0,STOLEN,885,"{'type': 'Point', 'coordinates': (-79.54530679, 43.65935171)}",Princess-Rosethorn,10,No Designation,11051,11197,-0.013000000000000001,3958,3861,2138,5.17,4800,3515,230,950,75,0,30,0.0
-896,17780,GO-201856324,THEFT UNDER,2018-01-09,2018,January,Tuesday,9,9,20,2018-01-10,2018,January,Wednesday,10,10,12,D22,Toronto,10,Princess-Rosethorn (10),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,TCR,OT,15,BLKBLU,4500.0,STOLEN,886,"{'type': 'Point', 'coordinates': (-79.53617684, 43.66460934)}",Princess-Rosethorn,10,No Designation,11051,11197,-0.013000000000000001,3958,3861,2138,5.17,4800,3515,230,950,75,0,30,0.0
-897,18047,GO-20169009176,FTC PROBATION ORDER,2016-08-19,2016,August,Friday,19,232,16,2016-08-21,2016,August,Sunday,21,234,14,D22,Toronto,10,Princess-Rosethorn (10),Convenience Stores,Commercial,OT,,RC,16,,1400.0,STOLEN,887,"{'type': 'Point', 'coordinates': (-79.53122809, 43.66263042)}",Princess-Rosethorn,10,No Designation,11051,11197,-0.013000000000000001,3958,3861,2138,5.17,4800,3515,230,950,75,0,30,0.0
-898,21082,GO-20199034037,THEFT UNDER - BICYCLE,2019-10-15,2019,October,Tuesday,15,288,10,2019-10-15,2019,October,Tuesday,15,288,23,D22,Toronto,10,Princess-Rosethorn (10),Schools During Un-Supervised Activity,Educational,TR,MARLIN 6,MT,1,BLK,750.0,STOLEN,888,"{'type': 'Point', 'coordinates': (-79.53897667, 43.67983728)}",Princess-Rosethorn,10,No Designation,11051,11197,-0.013000000000000001,3958,3861,2138,5.17,4800,3515,230,950,75,0,30,0.0
-899,21150,GO-20209015846,THEFT UNDER,2020-06-21,2020,June,Sunday,21,173,16,2020-06-21,2020,June,Sunday,21,173,16,D22,Toronto,10,Princess-Rosethorn (10),Convenience Stores,Commercial,FJ,FUJI,RC,24,GRY,600.0,STOLEN,889,"{'type': 'Point', 'coordinates': (-79.53122809, 43.66263042)}",Princess-Rosethorn,10,No Designation,11051,11197,-0.013000000000000001,3958,3861,2138,5.17,4800,3515,230,950,75,0,30,0.0
-900,21345,GO-20181755711,B&E,2018-09-21,2018,September,Friday,21,264,1,2018-09-22,2018,September,Saturday,22,265,8,D22,Toronto,10,Princess-Rosethorn (10),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,SIRRUS,OT,0,BLU,500.0,STOLEN,890,"{'type': 'Point', 'coordinates': (-79.53250412, 43.65593151)}",Princess-Rosethorn,10,No Designation,11051,11197,-0.013000000000000001,3958,3861,2138,5.17,4800,3515,230,950,75,0,30,0.0
-901,22044,GO-20143317888,THEFT UNDER,2014-11-17,2014,November,Monday,17,321,0,2014-11-20,2014,November,Thursday,20,324,10,D22,Toronto,10,Princess-Rosethorn (10),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,CROSSTRAIL,MT,18,,700.0,STOLEN,891,"{'type': 'Point', 'coordinates': (-79.55824452, 43.66642711)}",Princess-Rosethorn,10,No Designation,11051,11197,-0.013000000000000001,3958,3861,2138,5.17,4800,3515,230,950,75,0,30,0.0
-902,23990,GO-20189034122,THEFT UNDER - BICYCLE,2018-10-11,2018,October,Thursday,11,284,15,2018-10-15,2018,October,Monday,15,288,10,D22,Toronto,10,Princess-Rosethorn (10),Schools During Un-Supervised Activity,Educational,UK,,RG,21,SIL,,STOLEN,892,"{'type': 'Point', 'coordinates': (-79.54530679, 43.65935171)}",Princess-Rosethorn,10,No Designation,11051,11197,-0.013000000000000001,3958,3861,2138,5.17,4800,3515,230,950,75,0,30,0.0
-903,24549,GO-20169012265,THEFT UNDER - BICYCLE,2016-10-18,2016,October,Tuesday,18,292,15,2016-10-18,2016,October,Tuesday,18,292,18,D22,Toronto,10,Princess-Rosethorn (10),Schools During Supervised Activity,Educational,GT,GT AIIR,BM,1,YEL,212.0,STOLEN,893,"{'type': 'Point', 'coordinates': (-79.56076198, 43.6727408)}",Princess-Rosethorn,10,No Designation,11051,11197,-0.013000000000000001,3958,3861,2138,5.17,4800,3515,230,950,75,0,30,0.0
-904,312,GO-20179005550,THEFT UNDER - BICYCLE,2017-04-22,2017,April,Saturday,22,112,15,2017-05-01,2017,May,Monday,1,121,16,D22,Toronto,11,Eringate-Centennial-West Deane (11),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,OT,60,BLK,500.0,STOLEN,894,"{'type': 'Point', 'coordinates': (-79.58847392, 43.64469872)}",Eringate-Centennial-West Deane,11,No Designation,18588,18810,-0.012,6977,6863,2171,8.56,8665,5980,465,1945,180,35,75,0.004039238315060588
-905,360,GO-20179006109,THEFT UNDER - BICYCLE,2017-05-11,2017,May,Thursday,11,131,1,2017-05-11,2017,May,Thursday,11,131,10,D22,Toronto,11,Eringate-Centennial-West Deane (11),"Single Home, House (Attach Garage, Cottage, Mobile)",House,HF,,MT,10,RED,150.0,STOLEN,895,"{'type': 'Point', 'coordinates': (-79.56184662, 43.65644391)}",Eringate-Centennial-West Deane,11,No Designation,18588,18810,-0.012,6977,6863,2171,8.56,8665,5980,465,1945,180,35,75,0.004039238315060588
-906,361,GO-20179006109,THEFT UNDER - BICYCLE,2017-05-11,2017,May,Thursday,11,131,1,2017-05-11,2017,May,Thursday,11,131,10,D22,Toronto,11,Eringate-Centennial-West Deane (11),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,SC,1,,60.0,STOLEN,896,"{'type': 'Point', 'coordinates': (-79.56184662, 43.65644391)}",Eringate-Centennial-West Deane,11,No Designation,18588,18810,-0.012,6977,6863,2171,8.56,8665,5980,465,1945,180,35,75,0.004039238315060588
-907,2085,GO-2018494822,THEFT UNDER,2018-03-03,2018,March,Saturday,3,62,9,2018-03-18,2018,March,Sunday,18,77,19,D22,Toronto,11,Eringate-Centennial-West Deane (11),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,OT,10,,,STOLEN,897,"{'type': 'Point', 'coordinates': (-79.57465551, 43.6437102)}",Eringate-Centennial-West Deane,11,No Designation,18588,18810,-0.012,6977,6863,2171,8.56,8665,5980,465,1945,180,35,75,0.004039238315060588
-908,5255,GO-20199029027,THEFT UNDER,2019-09-04,2019,September,Wednesday,4,247,19,2019-09-06,2019,September,Friday,6,249,21,D22,Toronto,11,Eringate-Centennial-West Deane (11),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,9,BLK,2000.0,STOLEN,898,"{'type': 'Point', 'coordinates': (-79.57240399, 43.655045730000005)}",Eringate-Centennial-West Deane,11,No Designation,18588,18810,-0.012,6977,6863,2171,8.56,8665,5980,465,1945,180,35,75,0.004039238315060588
-909,6827,GO-20201432585,THEFT OF EBIKE UNDER $5000,2020-07-31,2020,July,Friday,31,213,17,2020-08-01,2020,August,Saturday,1,214,10,D22,Toronto,11,Eringate-Centennial-West Deane (11),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,EM2,EL,1,BLU,1000.0,STOLEN,899,"{'type': 'Point', 'coordinates': (-79.57240399, 43.655045730000005)}",Eringate-Centennial-West Deane,11,No Designation,18588,18810,-0.012,6977,6863,2171,8.56,8665,5980,465,1945,180,35,75,0.004039238315060588
-910,7563,GO-20202050608,THEFT UNDER - BICYCLE,2020-10-14,2020,October,Wednesday,14,288,17,2020-10-29,2020,October,Thursday,29,303,8,D22,Toronto,11,Eringate-Centennial-West Deane (11),"Open Areas (Lakes, Parks, Rivers)",Outside,NORCO,YORKVILLE,RG,10,BLK,650.0,STOLEN,900,"{'type': 'Point', 'coordinates': (-79.5860098, 43.65789049)}",Eringate-Centennial-West Deane,11,No Designation,18588,18810,-0.012,6977,6863,2171,8.56,8665,5980,465,1945,180,35,75,0.004039238315060588
-911,9021,GO-20143047434,B&E W'INTENT,2014-10-04,2014,October,Saturday,4,277,18,2014-10-05,2014,October,Sunday,5,278,14,D22,Toronto,11,Eringate-Centennial-West Deane (11),"Single Home, House (Attach Garage, Cottage, Mobile)",House,JAMIS,PARKER,MT,18,BLKLBL,3000.0,STOLEN,901,"{'type': 'Point', 'coordinates': (-79.57982243, 43.64765821)}",Eringate-Centennial-West Deane,11,No Designation,18588,18810,-0.012,6977,6863,2171,8.56,8665,5980,465,1945,180,35,75,0.004039238315060588
-912,11153,GO-20142517385,POSSESSION PROPERTY OBC OVER,2014-07-09,2014,July,Wednesday,9,190,13,2014-07-17,2014,July,Thursday,17,198,17,D22,Toronto,11,Eringate-Centennial-West Deane (11),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,BOULDER SE,RG,21,BLU,,RECOVERED,902,"{'type': 'Point', 'coordinates': (-79.56980522, 43.66285264)}",Eringate-Centennial-West Deane,11,No Designation,18588,18810,-0.012,6977,6863,2171,8.56,8665,5980,465,1945,180,35,75,0.004039238315060588
-913,11172,GO-20151046082,PROPERTY - FOUND,2015-06-21,2015,June,Sunday,21,172,22,2015-06-21,2015,June,Sunday,21,172,22,D22,Toronto,11,Eringate-Centennial-West Deane (11),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,1800,MT,18,BLU,,UNKNOWN,903,"{'type': 'Point', 'coordinates': (-79.57438585, 43.64544916)}",Eringate-Centennial-West Deane,11,No Designation,18588,18810,-0.012,6977,6863,2171,8.56,8665,5980,465,1945,180,35,75,0.004039238315060588
-914,11275,GO-20169004258,THEFT UNDER,2016-05-07,2016,May,Saturday,7,128,14,2016-05-07,2016,May,Saturday,7,128,19,D22,Toronto,11,Eringate-Centennial-West Deane (11),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,18,DBL,200.0,STOLEN,904,"{'type': 'Point', 'coordinates': (-79.57878561, 43.65974304)}",Eringate-Centennial-West Deane,11,No Designation,18588,18810,-0.012,6977,6863,2171,8.56,8665,5980,465,1945,180,35,75,0.004039238315060588
-915,12235,GO-20161529957,THEFT UNDER,2016-08-22,2016,August,Monday,22,235,23,2016-08-29,2016,August,Monday,29,242,9,D22,Toronto,11,Eringate-Centennial-West Deane (11),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN,,OT,1,,,STOLEN,905,"{'type': 'Point', 'coordinates': (-79.57244795, 43.64334087)}",Eringate-Centennial-West Deane,11,No Designation,18588,18810,-0.012,6977,6863,2171,8.56,8665,5980,465,1945,180,35,75,0.004039238315060588
-916,12549,GO-20169011543,THEFT UNDER - BICYCLE,2016-10-03,2016,October,Monday,3,277,14,2016-10-04,2016,October,Tuesday,4,278,14,D22,Toronto,11,Eringate-Centennial-West Deane (11),Schools During Supervised Activity,Educational,OT,,BM,1,BLK,500.0,STOLEN,906,"{'type': 'Point', 'coordinates': (-79.58704507, 43.6613171)}",Eringate-Centennial-West Deane,11,No Designation,18588,18810,-0.012,6977,6863,2171,8.56,8665,5980,465,1945,180,35,75,0.004039238315060588
-917,14933,GO-20142940785,THEFT UNDER,2014-09-05,2014,September,Friday,5,248,16,2014-09-19,2014,September,Friday,19,262,12,D22,Toronto,11,Eringate-Centennial-West Deane (11),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,8.5 WHEEL DS,RG,21,BLKGRN,1200.0,STOLEN,907,"{'type': 'Point', 'coordinates': (-79.57917427, 43.6585847)}",Eringate-Centennial-West Deane,11,No Designation,18588,18810,-0.012,6977,6863,2171,8.56,8665,5980,465,1945,180,35,75,0.004039238315060588
-918,14938,GO-20143322235,B&E,2014-11-17,2014,November,Monday,17,321,20,2014-11-18,2014,November,Tuesday,18,322,9,D22,Toronto,11,Eringate-Centennial-West Deane (11),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,HARDROCK,MT,7,BLK,500.0,STOLEN,908,"{'type': 'Point', 'coordinates': (-79.56311095, 43.66431439)}",Eringate-Centennial-West Deane,11,No Designation,18588,18810,-0.012,6977,6863,2171,8.56,8665,5980,465,1945,180,35,75,0.004039238315060588
-919,15009,GO-20169007401,THEFT UNDER - BICYCLE,2016-07-18,2016,July,Monday,18,200,23,2016-07-19,2016,July,Tuesday,19,201,11,D22,Toronto,11,Eringate-Centennial-West Deane (11),"Apartment (Rooming House, Condo)",Apartment,SU,700C,RC,21,,400.0,STOLEN,909,"{'type': 'Point', 'coordinates': (-79.58433063, 43.63920551)}",Eringate-Centennial-West Deane,11,No Designation,18588,18810,-0.012,6977,6863,2171,8.56,8665,5980,465,1945,180,35,75,0.004039238315060588
-920,4598,GO-20199019977,THEFT UNDER,2019-06-09,2019,June,Sunday,9,160,14,2019-06-24,2019,June,Monday,24,175,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,2017 EVO GRANVI,RG,8,GRY,406.0,STOLEN,910,"{'type': 'Point', 'coordinates': (-79.48497603, 43.62140475)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-921,4621,GO-20191195753,THEFT UNDER,2019-06-24,2019,June,Monday,24,175,17,2019-06-27,2019,June,Thursday,27,178,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GARY FISHER,TARPON,MT,21,RED,600.0,STOLEN,911,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-922,384,GO-20179006276,THEFT UNDER - BICYCLE,2017-05-14,2017,May,Sunday,14,134,10,2017-05-14,2017,May,Sunday,14,134,17,D33,Toronto,52,Bayview Village (52),Ttc Subway Station,Transit,CC,ALPHA,MT,21,BLK,0.0,STOLEN,3263,"{'type': 'Point', 'coordinates': (-79.37562316000002, 43.7694024)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168
-923,4718,GO-20199021602,THEFT UNDER,2019-06-09,2019,June,Sunday,9,160,12,2019-07-09,2019,July,Tuesday,9,190,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,TR,,RG,5,BLU,0.0,STOLEN,913,"{'type': 'Point', 'coordinates': (-79.47687625, 43.63027025)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-924,4725,GO-20199021704,THEFT UNDER,2019-06-19,2019,June,Wednesday,19,170,12,2019-07-10,2019,July,Wednesday,10,191,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,NO,XFR 4M,RG,24,ONG,914.0,STOLEN,914,"{'type': 'Point', 'coordinates': (-79.47687625, 43.63027025)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-925,4749,GO-20199021905,THEFT UNDER,2019-06-27,2019,June,Thursday,27,178,15,2019-07-11,2019,July,Thursday,11,192,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GF,,MT,21,SIL,800.0,STOLEN,915,"{'type': 'Point', 'coordinates': (-79.47687625, 43.63027025)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-926,4783,GO-20199022488,THEFT UNDER,2019-07-15,2019,July,Monday,15,196,22,2019-07-16,2019,July,Tuesday,16,197,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,"22"""" BLACK ROADS",RG,3,BLK,800.0,STOLEN,916,"{'type': 'Point', 'coordinates': (-79.48877277, 43.6186948)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-927,4784,GO-20199022519,THEFT UNDER,2019-07-16,2019,July,Tuesday,16,197,3,2019-07-16,2019,July,Tuesday,16,197,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,UK,VITA,RG,14,WHI,500.0,STOLEN,917,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-928,4794,GO-20199022701,THEFT UNDER,2019-07-17,2019,July,Wednesday,17,198,8,2019-07-17,2019,July,Wednesday,17,198,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,SIRRUS MENS,RG,8,GRY,999.0,STOLEN,918,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-929,4977,GO-20199025098,FTC PROBATION ORDER,2019-08-01,2019,August,Thursday,1,213,13,2019-08-06,2019,August,Tuesday,6,218,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,UK,VFR-5,TO,21,BLK,749.0,STOLEN,919,"{'type': 'Point', 'coordinates': (-79.48643252, 43.61892859)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-930,4996,GO-20199025318,THEFT UNDER,2019-08-07,2019,August,Wednesday,7,219,7,2019-08-07,2019,August,Wednesday,7,219,22,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Go Station,Transit,UK,F75,RC,20,BLK,1000.0,STOLEN,920,"{'type': 'Point', 'coordinates': (-79.4988831, 43.61749816)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-931,5000,GO-20191500625,B&E,2019-05-18,2019,May,Saturday,18,138,17,2019-08-08,2019,August,Thursday,8,220,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,RC,1,BLKPNK,4000.0,STOLEN,921,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-932,5016,GO-20199025596,THEFT UNDER,2019-08-07,2019,August,Wednesday,7,219,2,2019-08-09,2019,August,Friday,9,221,22,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Go Station,Transit,GI,,MT,12,SIL,0.0,STOLEN,922,"{'type': 'Point', 'coordinates': (-79.49833024, 43.61617493)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-933,5142,GO-20191584006,B&E W'INTENT,2019-08-01,2019,August,Thursday,1,213,17,2019-08-20,2019,August,Tuesday,20,232,10,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,21,BLK,198.0,STOLEN,923,"{'type': 'Point', 'coordinates': (-79.47706999, 43.62578178)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-934,5147,GO-20199027447,THEFT UNDER,2019-08-23,2019,August,Friday,23,235,19,2019-08-23,2019,August,Friday,23,235,19,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,MT,27,BLK,2000.0,STOLEN,924,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-935,5206,GO-20199028419,THEFT UNDER,2019-08-22,2019,August,Thursday,22,234,8,2019-09-01,2019,September,Sunday,1,244,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,NO,INDIE 3,MT,8,PLE,650.0,STOLEN,925,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-936,5212,GO-20199028491,THEFT UNDER,2019-08-02,2019,August,Friday,2,214,15,2019-09-02,2019,September,Monday,2,245,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,,MT,5,,1000.0,STOLEN,926,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-937,5216,GO-20199028535,THEFT UNDER,2019-08-29,2019,August,Thursday,29,241,17,2019-09-02,2019,September,Monday,2,245,19,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GT,KARAKORAM ELITE,MT,24,BLK,300.0,STOLEN,927,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-938,5267,GO-20191721677,PROPERTY - FOUND,2019-09-08,2019,September,Sunday,8,251,13,2019-09-08,2019,September,Sunday,8,251,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,INFINITY,RICOCHET,MT,5,RED,,RECOVERED,928,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-939,5317,GO-20199029899,THEFT UNDER,2019-08-19,2019,August,Monday,19,231,20,2019-09-13,2019,September,Friday,13,256,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GI,ROVE 3,MT,24,BLK,800.0,STOLEN,929,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-940,5462,GO-20191907212,THEFT UNDER - BICYCLE,2019-10-03,2019,October,Thursday,3,276,6,2019-10-03,2019,October,Thursday,3,276,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SUPERCYCLE,PHANTOM 29,MT,18,BLKONG,500.0,STOLEN,930,"{'type': 'Point', 'coordinates': (-79.49833024, 43.61617493)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-941,5610,GO-20199035671,THEFT UNDER,2019-10-28,2019,October,Monday,28,301,6,2019-10-29,2019,October,Tuesday,29,302,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,RISER,OT,18,ONG,700.0,STOLEN,931,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-942,5615,GO-20199035671,THEFT UNDER,2019-10-28,2019,October,Monday,28,301,6,2019-10-29,2019,October,Tuesday,29,302,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,RISER,OT,18,ONG,700.0,STOLEN,932,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-943,5657,GO-20199036675,THEFT UNDER,2019-09-15,2019,September,Sunday,15,258,0,2019-11-06,2019,November,Wednesday,6,310,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,XC-29,MT,24,BLK,700.0,STOLEN,933,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-944,5672,GO-20199036991,THEFT UNDER,2019-11-09,2019,November,Saturday,9,313,10,2019-11-09,2019,November,Saturday,9,313,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,COMP,RC,10,SIL,2900.0,STOLEN,934,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-945,5747,GO-20199039814,THEFT UNDER,2019-11-08,2019,November,Friday,8,312,13,2019-12-04,2019,December,Wednesday,4,338,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,CA,,RG,7,BLK,2500.0,STOLEN,935,"{'type': 'Point', 'coordinates': (-79.47706999, 43.62578178)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-946,6181,GO-20209013064,THEFT UNDER,2019-07-30,2019,July,Tuesday,30,211,20,2020-05-13,2020,May,Wednesday,13,134,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,18,CPR,500.0,STOLEN,944,"{'type': 'Point', 'coordinates': (-79.47687625, 43.63027025)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-947,5845,GO-20209002364,THEFT UNDER,2019-12-28,2019,December,Saturday,28,362,19,2020-01-20,2020,January,Monday,20,20,21,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,F700,MT,27,BLK,0.0,STOLEN,936,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-948,5920,GO-20209006522,THEFT UNDER,2019-06-23,2019,June,Sunday,23,174,23,2020-02-23,2020,February,Sunday,23,54,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,12,RED,2500.0,STOLEN,937,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-949,6002,GO-20209010144,THEFT UNDER,2020-03-22,2020,March,Sunday,22,82,11,2020-03-30,2020,March,Monday,30,90,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GT,,MT,18,BLK,400.0,STOLEN,938,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-950,6015,GO-2020642120,THEFT UNDER - BICYCLE,2019-12-31,2019,December,Tuesday,31,365,0,2020-04-01,2020,April,Wednesday,1,92,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,TREK,EMONDA,RG,22,BLKRED,1200.0,STOLEN,939,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-951,6059,GO-20209011060,THEFT UNDER,2020-04-12,2020,April,Sunday,12,103,22,2020-04-13,2020,April,Monday,13,104,19,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,WAYFARER,RG,7,BLU,500.0,STOLEN,940,"{'type': 'Point', 'coordinates': (-79.4996323, 43.60648283)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-952,6060,GO-20209011098,THEFT UNDER,2020-03-27,2020,March,Friday,27,87,12,2020-04-14,2020,April,Tuesday,14,105,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,CC,SAVAGE,MT,18,BLK,350.0,STOLEN,941,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-953,6090,GO-2020767051,THEFT UNDER,2020-03-15,2020,March,Sunday,15,75,10,2020-04-22,2020,April,Wednesday,22,113,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,BIRZY,BIRZY 1,FO,9,SIL,3000.0,STOLEN,942,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-954,6140,GO-2020836282,THEFT UNDER,2020-01-01,2020,January,Wednesday,1,1,0,2020-05-04,2020,May,Monday,4,125,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,E TRAIL,OT,1,,750.0,STOLEN,943,"{'type': 'Point', 'coordinates': (-79.47893413, 43.62369402)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-955,6182,GO-20209013064,THEFT UNDER,2019-07-30,2019,July,Tuesday,30,211,20,2020-05-13,2020,May,Wednesday,13,134,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GIANT,,MT,18,CPR,500.0,STOLEN,945,"{'type': 'Point', 'coordinates': (-79.47687625, 43.63027025)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-956,6211,GO-20209013510,THEFT UNDER,2020-05-08,2020,May,Friday,8,129,19,2020-05-20,2020,May,Wednesday,20,141,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,VITO,MT,1,BLK,300.0,STOLEN,946,"{'type': 'Point', 'coordinates': (-79.47706999, 43.62578178)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-957,6272,GO-2020998717,THEFT UNDER - BICYCLE,2020-05-15,2020,May,Friday,15,136,0,2020-05-30,2020,May,Saturday,30,151,19,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,,MT,21,,700.0,STOLEN,947,"{'type': 'Point', 'coordinates': (-79.49759779, 43.61432512)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-958,6277,GO-20209014316,THEFT UNDER,2020-05-31,2020,May,Sunday,31,152,9,2020-06-01,2020,June,Monday,1,153,8,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,SOLOIST,RG,20,BLK,399.0,STOLEN,948,"{'type': 'Point', 'coordinates': (-79.47864061, 43.6248261)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-959,6352,GO-20209015072,THEFT UNDER,2020-06-07,2020,June,Sunday,7,159,13,2020-06-10,2020,June,Wednesday,10,162,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,VALENCE A CLARI,RC,18,GRN,1000.0,STOLEN,949,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-960,6357,GO-20201080990,THEFT UNDER - BICYCLE,2020-06-04,2020,June,Thursday,4,156,17,2020-06-12,2020,June,Friday,12,164,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,FUJI,ABSOLUTE,RG,27,GRY,850.0,STOLEN,950,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-961,6382,GO-20201072827,THEFT UNDER - BICYCLE,2020-06-11,2020,June,Thursday,11,163,8,2020-06-14,2020,June,Sunday,14,166,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GREENSPEED,GT3 TRIKE,TR,27,RED,3000.0,STOLEN,951,"{'type': 'Point', 'coordinates': (-79.48731142, 43.61728142)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-962,10541,GO-20159007711,THEFT UNDER,2015-09-24,2015,September,Thursday,24,267,16,2015-09-24,2015,September,Thursday,24,267,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,DAVINCI,MT,24,BLU,1200.0,STOLEN,989,"{'type': 'Point', 'coordinates': (-79.48760733, 43.62206923)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-963,6400,GO-20209015389,THEFT FROM MOTOR VEHICLE UNDER,2020-06-14,2020,June,Sunday,14,166,21,2020-06-15,2020,June,Monday,15,167,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,VENETO,RG,21,RED,750.0,STOLEN,952,"{'type': 'Point', 'coordinates': (-79.4897495, 43.61273143)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-964,6726,GO-20201382695,B&E,2020-07-24,2020,July,Friday,24,206,18,2020-07-25,2020,July,Saturday,25,207,9,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CANNONDALE,,MT,21,GRNBLU,2000.0,STOLEN,953,"{'type': 'Point', 'coordinates': (-79.4972373, 43.60240525)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-965,6755,GO-20209018664,THEFT UNDER,2020-07-25,2020,July,Saturday,25,207,12,2020-07-27,2020,July,Monday,27,209,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,ST-TROPEZ,RG,24,,750.0,STOLEN,954,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-966,6790,GO-20201407841,THEFT OVER,2020-07-23,2020,July,Thursday,23,205,1,2020-07-28,2020,July,Tuesday,28,210,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,KONA,,OT,27,SIL,5000.0,STOLEN,955,"{'type': 'Point', 'coordinates': (-79.47893413, 43.62369402)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-967,6855,GO-20209019260,THEFT UNDER,2020-07-03,2020,July,Friday,3,185,15,2020-08-03,2020,August,Monday,3,216,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,CHAMELEON,MT,27,DGR,1300.0,STOLEN,956,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-968,6915,GO-20209019787,THEFT UNDER,2020-08-07,2020,August,Friday,7,220,20,2020-08-10,2020,August,Monday,10,223,10,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,ALLEZ,RC,16,ONG,1049.0,STOLEN,957,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-969,7151,GO-20209022022,THEFT UNDER,2020-09-01,2020,September,Tuesday,1,245,3,2020-09-01,2020,September,Tuesday,1,245,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,NO,,RG,28,YEL,649.0,STOLEN,958,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-970,7152,GO-20209022022,THEFT UNDER,2020-09-01,2020,September,Tuesday,1,245,3,2020-09-01,2020,September,Tuesday,1,245,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,NO,,RG,28,GRY,630.0,STOLEN,959,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-971,7504,GO-20201983292,THEFT FROM MOTOR VEHICLE OVER,2020-10-07,2020,October,Wednesday,7,281,22,2020-10-19,2020,October,Monday,19,293,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,MACH 5.5,MT,11,BLK,11000.0,STOLEN,960,"{'type': 'Point', 'coordinates': (-79.4964716, 43.61975747)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-972,7597,GO-20209028848,THEFT UNDER,2020-11-07,2020,November,Saturday,7,312,11,2020-11-07,2020,November,Saturday,7,312,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,DB,OVERDRIVE ST HA,MT,24,GRN,1000.0,STOLEN,961,"{'type': 'Point', 'coordinates': (-79.49250392000002, 43.62336236)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-973,7601,GO-20202112931,B&E,2020-11-01,2020,November,Sunday,1,306,8,2020-11-08,2020,November,Sunday,8,313,10,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,NORTHROCK,,RG,18,BLK,1500.0,UNKNOWN,962,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-974,8004,GO-20149003680,THEFT UNDER,2014-05-21,2014,May,Wednesday,21,141,9,2014-05-30,2014,May,Friday,30,150,9,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,MO,,MT,18,GRY,500.0,STOLEN,963,"{'type': 'Point', 'coordinates': (-79.50149815, 43.62075091)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-975,8116,GO-20149003933,THEFT UNDER,2014-06-09,2014,June,Monday,9,160,10,2014-06-09,2014,June,Monday,9,160,21,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,OPAL,OT,18,BLU,,STOLEN,964,"{'type': 'Point', 'coordinates': (-79.49023447, 43.61591799)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-976,8251,GO-20149004435,THEFT UNDER,2014-06-03,2014,June,Tuesday,3,154,6,2014-06-25,2014,June,Wednesday,25,176,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,CROSSROADS XL,RG,21,WHI,543.0,STOLEN,965,"{'type': 'Point', 'coordinates': (-79.47400022, 43.6305708)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-977,8573,GO-20142630915,THEFT UNDER,2014-07-30,2014,July,Wednesday,30,211,20,2014-08-03,2014,August,Sunday,3,215,21,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUPERCYCLE,SC700C TEMPO,OT,21,BLUSIL,190.0,STOLEN,966,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-978,11534,GO-20169005825,THEFT UNDER,2016-06-12,2016,June,Sunday,12,164,12,2016-06-15,2016,June,Wednesday,15,167,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GI,A LIGHT 2,RG,24,WHI,590.0,STOLEN,998,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-979,8604,GO-20149005701,THEFT UNDER,2014-08-02,2014,August,Saturday,2,214,22,2014-08-07,2014,August,Thursday,7,219,10,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SCWHINN,FOTO,MT,10,PLE,350.0,STOLEN,967,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-980,8605,GO-20149005701,THEFT UNDER,2014-08-02,2014,August,Saturday,2,214,22,2014-08-07,2014,August,Thursday,7,219,10,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,FO,10,YEL,300.0,STOLEN,968,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-981,8664,GO-20149005959,THEFT UNDER,2014-08-07,2014,August,Thursday,7,219,7,2014-08-14,2014,August,Thursday,14,226,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SOLOIST,RC,1,WHI,419.0,STOLEN,969,"{'type': 'Point', 'coordinates': (-79.49330736, 43.61684986)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-982,8827,GO-20142870355,THEFT UNDER,2014-09-07,2014,September,Sunday,7,250,15,2014-09-08,2014,September,Monday,8,251,19,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,ARGON 18,KRYPTON,RC,18,BLKRED,1400.0,STOLEN,970,"{'type': 'Point', 'coordinates': (-79.4964716, 43.61975747)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-983,8845,GO-20142886580,THEFT UNDER,2014-09-11,2014,September,Thursday,11,254,2,2014-09-11,2014,September,Thursday,11,254,6,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,AGRESSOR,BM,18,BLKGRN,480.0,STOLEN,971,"{'type': 'Point', 'coordinates': (-79.49287281, 43.61784449)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-984,9019,GO-20143042408,THEFT UNDER,2014-09-30,2014,September,Tuesday,30,273,8,2014-10-04,2014,October,Saturday,4,277,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Go Station,Transit,TREK,,MT,21,REDWHI,700.0,STOLEN,972,"{'type': 'Point', 'coordinates': (-79.49833024, 43.61617493)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-985,9022,GO-20143049446,THEFT UNDER,2014-10-03,2014,October,Friday,3,276,18,2014-10-05,2014,October,Sunday,5,278,21,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RALEIGH,TARANTUALA,MT,21,SIL,250.0,STOLEN,973,"{'type': 'Point', 'coordinates': (-79.49131679, 43.62006774)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-986,9039,GO-20143078795,THEFT UNDER,2014-10-05,2014,October,Sunday,5,278,19,2014-10-10,2014,October,Friday,10,283,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,C4 VALENCE,RC,18,BLKYEL,2200.0,STOLEN,974,"{'type': 'Point', 'coordinates': (-79.49099109, 43.61535546)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-987,9125,GO-20149007885,THEFT UNDER,2014-10-29,2014,October,Wednesday,29,302,8,2014-10-29,2014,October,Wednesday,29,302,9,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,DENALI,RC,21,BLK,200.0,STOLEN,975,"{'type': 'Point', 'coordinates': (-79.49591553, 43.61469863)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-988,9208,GO-20149008471,THEFT UNDER,2014-08-27,2014,August,Wednesday,27,239,10,2014-12-01,2014,December,Monday,1,335,10,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,CARBON SIX,RC,20,SIL,3000.0,STOLEN,976,"{'type': 'Point', 'coordinates': (-79.49250392000002, 43.62336236)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-989,9284,GO-2015188433,THEFT UNDER,2015-01-31,2015,January,Saturday,31,31,14,2015-02-01,2015,February,Sunday,1,32,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPYDER,,EL,1,BLK,1700.0,STOLEN,977,"{'type': 'Point', 'coordinates': (-79.49138084, 43.62576989)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-990,9628,GO-2015851565,THEFT UNDER,2015-05-22,2015,May,Friday,22,142,7,2015-05-22,2015,May,Friday,22,142,8,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Gas Station (Self, Full, Attached Convenience)",Commercial,SCHWINN,,RG,1,WHIPLE,,STOLEN,978,"{'type': 'Point', 'coordinates': (-79.5207129, 43.60720227)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-991,9781,GO-20159003528,THEFT UNDER,2015-06-05,2015,June,Friday,5,156,14,2015-06-11,2015,June,Thursday,11,162,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Go Station,Transit,OT,,RG,5,GRN,700.0,STOLEN,979,"{'type': 'Point', 'coordinates': (-79.49833024, 43.61617493)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-992,9796,GO-20159003572,THEFT UNDER,2015-06-08,2015,June,Monday,8,159,16,2015-06-13,2015,June,Saturday,13,164,8,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Go Station,Transit,CC,BLACK ICE,MT,15,BLK,100.0,STOLEN,980,"{'type': 'Point', 'coordinates': (-79.49833024, 43.61617493)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-993,9797,GO-2015985882,THEFT UNDER,2015-06-03,2015,June,Wednesday,3,154,16,2015-06-12,2015,June,Friday,12,163,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Go Station,Transit,OTHER,COMFORT,TO,21,GRNBLU,200.0,STOLEN,981,"{'type': 'Point', 'coordinates': (-79.49833024, 43.61617493)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-994,10080,GO-20159004870,THEFT UNDER,2015-07-23,2015,July,Thursday,23,204,15,2015-07-24,2015,July,Friday,24,205,10,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,DRIVE XP WF,RG,30,GRY,1000.0,STOLEN,982,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-995,10146,GO-20151316670,THEFT UNDER,2015-07-21,2015,July,Tuesday,21,202,0,2015-08-01,2015,August,Saturday,1,213,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,MADONE 5.9,RC,20,BLKWHI,5000.0,STOLEN,983,"{'type': 'Point', 'coordinates': (-79.47400022, 43.6305708)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-996,10199,GO-20151364239,THEFT UNDER,2015-08-08,2015,August,Saturday,8,220,22,2015-08-09,2015,August,Sunday,9,221,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Go Station,Transit,OTHER,MOTORINO XPE,EL,1,BGEYEL,2300.0,STOLEN,984,"{'type': 'Point', 'coordinates': (-79.49833024, 43.61617493)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-997,10208,GO-20151371438,PROPERTY - FOUND,2015-08-03,2015,August,Monday,3,215,12,2015-08-10,2015,August,Monday,10,222,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RALEIGH,EZ LIFE,MT,24,BLU,,UNKNOWN,985,"{'type': 'Point', 'coordinates': (-79.48999212, 43.61115169)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-998,10209,GO-20151371438,PROPERTY - FOUND,2015-08-03,2015,August,Monday,3,215,12,2015-08-10,2015,August,Monday,10,222,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SEKINE,EZ LIFE,RG,24,BLUWHI,,UNKNOWN,986,"{'type': 'Point', 'coordinates': (-79.48999212, 43.61115169)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-999,10386,GO-20159006628,THEFT UNDER,2015-08-30,2015,August,Sunday,30,242,21,2015-09-01,2015,September,Tuesday,1,244,21,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,CC,PRESTO 700CC,OT,21,BLK,380.0,STOLEN,987,"{'type': 'Point', 'coordinates': (-79.48819449, 43.61573777)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1000,10533,GO-20159007638,THEFT UNDER,2015-09-23,2015,September,Wednesday,23,266,11,2015-09-23,2015,September,Wednesday,23,266,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,ALIGHT 2,OT,24,PLE,500.0,STOLEN,988,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1001,10710,GO-20151883885,THEFT OF MOTOR VEHICLE,2015-11-01,2015,November,Sunday,1,305,20,2015-11-02,2015,November,Monday,2,306,19,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,MT,21,,900.0,STOLEN,990,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1002,10718,GO-20159009338,THEFT UNDER,2015-11-03,2015,November,Tuesday,3,307,21,2015-11-03,2015,November,Tuesday,3,307,23,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GT,,MT,8,OTH,500.0,STOLEN,991,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1003,10802,GO-20159010043,THEFT UNDER,2015-11-22,2015,November,Sunday,22,326,13,2015-11-22,2015,November,Sunday,22,326,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,P3,RC,25,WHI,4000.0,STOLEN,992,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1004,10985,GO-2016246826,THEFT UNDER,2016-01-13,2016,January,Wednesday,13,13,19,2016-02-10,2016,February,Wednesday,10,41,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,MT,0,BLU,,STOLEN,993,"{'type': 'Point', 'coordinates': (-79.48643252, 43.61892859)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1005,11058,GO-20169002452,THEFT UNDER,2016-03-16,2016,March,Wednesday,16,76,19,2016-03-17,2016,March,Thursday,17,77,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GI,OCR 3,RC,8,GRY,600.0,STOLEN,994,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1006,11093,GO-20169002993,THEFT UNDER,2016-03-21,2016,March,Monday,21,81,0,2016-04-02,2016,April,Saturday,2,93,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,,RC,10,BLK,300.0,STOLEN,995,"{'type': 'Point', 'coordinates': (-79.49455, 43.61045439)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1007,11117,GO-2016596668,THEFT UNDER - BICYCLE,2016-04-04,2016,April,Monday,4,95,9,2016-04-08,2016,April,Friday,8,99,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,BABYLON,HYBRID,OT,10,BLK,900.0,STOLEN,996,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1008,11167,GO-2016677147,THEFT UNDER - BICYCLE,2016-04-20,2016,April,Wednesday,20,111,9,2016-04-21,2016,April,Thursday,21,112,7,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GIANT,,MT,21,BLK,2000.0,STOLEN,997,"{'type': 'Point', 'coordinates': (-79.49250392000002, 43.62336236)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1009,11567,GO-20169005935,THEFT UNDER,2016-06-16,2016,June,Thursday,16,168,19,2016-06-17,2016,June,Friday,17,169,10,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,FJ,,OT,24,SIL,1250.0,STOLEN,999,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1010,12560,GO-20161773571,THEFT UNDER - BICYCLE,2016-10-05,2016,October,Wednesday,5,279,18,2016-10-05,2016,October,Wednesday,5,279,18,D31,Toronto,25,Glenfield-Jane Heights (25),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,MT,10,BLUWHI,,STOLEN,1000,"{'type': 'Point', 'coordinates': (-79.52066166, 43.75673277)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1011,14295,GO-20201504547,ROBBERY - SWARMING,2020-08-11,2020,August,Tuesday,11,224,18,2020-08-11,2020,August,Tuesday,11,224,21,D31,Toronto,25,Glenfield-Jane Heights (25),"Open Areas (Lakes, Parks, Rivers)",Outside,SCHWINN,,MT,10,BLACVK,230.0,STOLEN,1001,"{'type': 'Point', 'coordinates': (-79.50583104000002, 43.7435423)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1012,14538,GO-20191278645,ROBBERY - MUGGING,2019-07-08,2019,July,Monday,8,189,21,2019-07-09,2019,July,Tuesday,9,190,9,D31,Toronto,25,Glenfield-Jane Heights (25),Schools During Un-Supervised Activity,Educational,KRANKED,FULL SUSP MTB,MT,21,BLKGRN,600.0,STOLEN,1002,"{'type': 'Point', 'coordinates': (-79.50903948, 43.7563086)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1013,14710,GO-20171613192,THEFT OF EBIKE UNDER $5000,2017-09-01,2017,September,Friday,1,244,12,2017-09-06,2017,September,Wednesday,6,249,10,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,LE ORANGE,EL,0,ONG,3000.0,STOLEN,1003,"{'type': 'Point', 'coordinates': (-79.51603747, 43.75073765)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1014,14715,GO-20171675971,THEFT UNDER - BICYCLE,2017-09-11,2017,September,Monday,11,254,16,2017-09-15,2017,September,Friday,15,258,19,D31,Toronto,25,Glenfield-Jane Heights (25),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,INFINITY\,BRAVO,MT,18,GRY,100.0,STOLEN,1004,"{'type': 'Point', 'coordinates': (-79.50788955, 43.7592841)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1015,14743,GO-20173048859,THEFT OF EBIKE UNDER $5000,2017-11-11,2017,November,Saturday,11,315,15,2017-11-22,2017,November,Wednesday,22,326,17,D31,Toronto,25,Glenfield-Jane Heights (25),"Apartment (Rooming House, Condo)",Apartment,OTHER,RICKSHAW,EL,4,RED,1500.0,STOLEN,1005,"{'type': 'Point', 'coordinates': (-79.51134996, 43.75013528)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1016,6312,GO-20209014748,THEFT UNDER - BICYCLE,2020-06-06,2020,June,Saturday,6,158,1,2020-06-06,2020,June,Saturday,6,158,16,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,SU,SHIMANO,MT,4,BLU,400.0,STOLEN,1228,"{'type': 'Point', 'coordinates': (-79.45239005, 43.71432793)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1017,14776,GO-20189014292,THEFT UNDER - BICYCLE,2018-05-08,2018,May,Tuesday,8,128,18,2018-05-09,2018,May,Wednesday,9,129,13,D31,Toronto,25,Glenfield-Jane Heights (25),Schools During Supervised Activity,Educational,MA,LARKSPUR CS3 (2,RG,27,GRY,450.0,STOLEN,1006,"{'type': 'Point', 'coordinates': (-79.51277036, 43.75147357)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1018,14814,GO-20189021536,THEFT UNDER - BICYCLE,2018-07-07,2018,July,Saturday,7,188,14,2018-07-07,2018,July,Saturday,7,188,15,D31,Toronto,25,Glenfield-Jane Heights (25),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,RG,18,DBL,75.0,STOLEN,1007,"{'type': 'Point', 'coordinates': (-79.50788955, 43.7592841)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1019,14977,GO-20159007733,THEFT UNDER,2015-09-24,2015,September,Thursday,24,267,20,2015-09-25,2015,September,Friday,25,268,10,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,5,BLU,300.0,STOLEN,1008,"{'type': 'Point', 'coordinates': (-79.52016811, 43.75248185)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1020,14979,GO-20151703837,THEFT UNDER,2015-09-24,2015,September,Thursday,24,267,20,2015-10-02,2015,October,Friday,2,275,21,D31,Toronto,25,Glenfield-Jane Heights (25),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,RG,0,RED,120.0,STOLEN,1009,"{'type': 'Point', 'coordinates': (-79.51685836, 43.75241579)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1021,14995,GO-2016791360,ROBBERY - MUGGING,2016-05-08,2016,May,Sunday,8,129,17,2016-05-08,2016,May,Sunday,8,129,17,D31,Toronto,25,Glenfield-Jane Heights (25),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,,MT,6,BLK,500.0,STOLEN,1010,"{'type': 'Point', 'coordinates': (-79.51769107, 43.75723544)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1022,15006,GO-20169006884,THEFT UNDER,2016-07-07,2016,July,Thursday,7,189,20,2016-07-07,2016,July,Thursday,7,189,23,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,CORSO,MT,26,BLK,400.0,STOLEN,1011,"{'type': 'Point', 'coordinates': (-79.51160413, 43.74628736)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1023,15026,GO-20161558940,THEFT UNDER - BICYCLE,2016-09-02,2016,September,Friday,2,246,17,2016-09-02,2016,September,Friday,2,246,17,D31,Toronto,25,Glenfield-Jane Heights (25),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,HUFFY,GRANITE,MT,15,LBLSIL,130.0,STOLEN,1012,"{'type': 'Point', 'coordinates': (-79.50903948, 43.7563086)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1024,15041,GO-2017410321,THEFT OF EBIKE UNDER $5000,2017-03-05,2017,March,Sunday,5,64,18,2017-03-06,2017,March,Monday,6,65,17,D31,Toronto,25,Glenfield-Jane Heights (25),"Apartment (Rooming House, Condo)",Apartment,AUSTIN,UNKNOWN,EL,1,BLUWHI,650.0,STOLEN,1013,"{'type': 'Point', 'coordinates': (-79.51508777, 43.74709495)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1025,17562,GO-20199014366,THEFT UNDER,2019-05-08,2019,May,Wednesday,8,128,16,2019-05-08,2019,May,Wednesday,8,128,17,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,2,GRY,150.0,STOLEN,1014,"{'type': 'Point', 'coordinates': (-79.52115893, 43.7449724)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1026,17657,GO-20192002985,THEFT UNDER - BICYCLE,2019-09-25,2019,September,Wednesday,25,268,15,2019-10-17,2019,October,Thursday,17,290,10,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,RG,1,BLK,200.0,STOLEN,1015,"{'type': 'Point', 'coordinates': (-79.50926221, 43.73831154)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1027,17677,GO-20192404470,THEFT UNDER,2019-12-10,2019,December,Tuesday,10,344,0,2019-12-13,2019,December,Friday,13,347,19,D31,Toronto,25,Glenfield-Jane Heights (25),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,OT,1,,100.0,STOLEN,1016,"{'type': 'Point', 'coordinates': (-79.5178097, 43.75020018)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1028,17959,GO-2015760028,THEFT UNDER,2015-04-20,2015,April,Monday,20,110,23,2015-05-07,2015,May,Thursday,7,127,14,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MONGOOSE,,MT,0,PLE,250.0,STOLEN,1017,"{'type': 'Point', 'coordinates': (-79.50801565, 43.74807862)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1029,17993,GO-20159007198,THEFT UNDER,2015-09-14,2015,September,Monday,14,257,10,2015-09-14,2015,September,Monday,14,257,22,D31,Toronto,25,Glenfield-Jane Heights (25),"Apartment (Rooming House, Condo)",Apartment,SU,,MT,10,BLK,0.0,STOLEN,1018,"{'type': 'Point', 'coordinates': (-79.51040848, 43.74922746)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1030,17994,GO-20159007198,THEFT UNDER,2015-09-14,2015,September,Monday,14,257,10,2015-09-14,2015,September,Monday,14,257,22,D31,Toronto,25,Glenfield-Jane Heights (25),"Apartment (Rooming House, Condo)",Apartment,MO,,MT,1,BLU,0.0,STOLEN,1019,"{'type': 'Point', 'coordinates': (-79.51040848, 43.74922746)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1031,18050,GO-20161614756,THEFT UNDER - BICYCLE,2016-09-10,2016,September,Saturday,10,254,22,2016-09-11,2016,September,Sunday,11,255,12,D31,Toronto,25,Glenfield-Jane Heights (25),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,JEEP,MT,6,SIL,800.0,STOLEN,1020,"{'type': 'Point', 'coordinates': (-79.51289814, 43.75224824)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1032,20805,GO-20209022522,THEFT UNDER - BICYCLE,2020-09-06,2020,September,Sunday,6,250,23,2020-09-07,2020,September,Monday,7,251,12,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,24,GRN,124.0,STOLEN,1021,"{'type': 'Point', 'coordinates': (-79.51685349, 43.75181653)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1033,20806,GO-20209022522,THEFT UNDER - BICYCLE,2020-09-06,2020,September,Sunday,6,250,23,2020-09-07,2020,September,Monday,7,251,12,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,SUPERCYCLE PATH,RG,24,BLK,100.0,STOLEN,1022,"{'type': 'Point', 'coordinates': (-79.51685349, 43.75181653)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1034,20807,GO-20209022522,THEFT UNDER - BICYCLE,2020-09-06,2020,September,Sunday,6,250,23,2020-09-07,2020,September,Monday,7,251,12,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,24,LGR,124.0,STOLEN,1023,"{'type': 'Point', 'coordinates': (-79.51685349, 43.75181653)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1035,20809,GO-20201692705,THEFT UNDER - BICYCLE,2020-09-02,2020,September,Wednesday,2,246,21,2020-09-08,2020,September,Tuesday,8,252,12,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MOVELO,,RG,8,PLE,150.0,STOLEN,1024,"{'type': 'Point', 'coordinates': (-79.51134996, 43.75013528)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1036,21173,GO-20171172257,THEFT UNDER - BICYCLE,2017-06-29,2017,June,Thursday,29,180,15,2017-06-30,2017,June,Friday,30,181,19,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,HUFFY,UNK,OT,1,BLU,150.0,STOLEN,1025,"{'type': 'Point', 'coordinates': (-79.51367361, 43.75418883)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1037,21224,GO-20171902845,ROBBERY - SWARMING,2017-10-20,2017,October,Friday,20,293,20,2017-10-20,2017,October,Friday,20,293,20,D31,Toronto,25,Glenfield-Jane Heights (25),Schools During Un-Supervised Activity,Educational,UNKNOWN MAKE,,RG,1,PNK,,STOLEN,1026,"{'type': 'Point', 'coordinates': (-79.50903948, 43.7563086)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1038,22016,GO-20149004314,THEFT UNDER,2014-05-02,2014,May,Friday,2,122,3,2014-06-22,2014,June,Sunday,22,173,0,D31,Toronto,25,Glenfield-Jane Heights (25),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,MT,24,LBL,170.0,STOLEN,1027,"{'type': 'Point', 'coordinates': (-79.5149647, 43.74397909000001)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1039,22023,GO-20142516014,THEFT UNDER,2014-07-11,2014,July,Friday,11,192,18,2014-07-17,2014,July,Thursday,17,198,14,D31,Toronto,25,Glenfield-Jane Heights (25),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,DIRT BIKE,MT,3,REDSIL,,STOLEN,1028,"{'type': 'Point', 'coordinates': (-79.51790729, 43.75044442)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1040,654,GO-20179008443,THEFT UNDER - BICYCLE,2017-06-19,2017,June,Monday,19,170,8,2017-06-19,2017,June,Monday,19,170,21,D22,Toronto,19,Long Branch (19),Go Station,Transit,IN,,RG,7,BLU,100.0,STOLEN,1229,"{'type': 'Point', 'coordinates': (-79.54491322, 43.59051582)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1041,22024,GO-20142516014,THEFT UNDER,2014-07-11,2014,July,Friday,11,192,18,2014-07-17,2014,July,Thursday,17,198,14,D31,Toronto,25,Glenfield-Jane Heights (25),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,DIRT BIKE,MT,3,SILRED,,STOLEN,1029,"{'type': 'Point', 'coordinates': (-79.51790729, 43.75044442)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1042,22043,GO-20143273309,THEFT UNDER,2014-11-04,2014,November,Tuesday,4,308,12,2014-11-10,2014,November,Monday,10,314,8,D31,Toronto,25,Glenfield-Jane Heights (25),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUPERCYCLE,,RG,10,BLU,,STOLEN,1030,"{'type': 'Point', 'coordinates': (-79.51769107, 43.75723544)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1043,22067,GO-20151183060,THEFT UNDER,2015-07-13,2015,July,Monday,13,194,1,2015-07-13,2015,July,Monday,13,194,1,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,REDHORSE,MOUNTAIN BIKE,MT,6,RED,150.0,STOLEN,1031,"{'type': 'Point', 'coordinates': (-79.51414941, 43.7554738)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1044,22080,GO-20151487850,THEFT UNDER,2015-08-28,2015,August,Friday,28,240,22,2015-08-29,2015,August,Saturday,29,241,12,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,3 WHEELER,RG,1,MRN,1200.0,STOLEN,1032,"{'type': 'Point', 'coordinates': (-79.50473575, 43.73951813)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1045,22081,GO-20151487850,THEFT UNDER,2015-08-28,2015,August,Friday,28,240,22,2015-08-29,2015,August,Saturday,29,241,12,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,,MT,18,MRN,200.0,STOLEN,1033,"{'type': 'Point', 'coordinates': (-79.50473575, 43.73951813)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1046,22109,GO-20169006172,THEFT UNDER - BICYCLE,2016-06-21,2016,June,Tuesday,21,173,18,2016-06-22,2016,June,Wednesday,22,174,14,D31,Toronto,25,Glenfield-Jane Heights (25),"Apartment (Rooming House, Condo)",Apartment,NO,BUSHPILOT,MT,24,WHI,600.0,STOLEN,1034,"{'type': 'Point', 'coordinates': (-79.51289814, 43.75224824)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1047,24231,GO-20171673633,THEFT UNDER - BICYCLE,2017-09-15,2017,September,Friday,15,258,11,2017-09-15,2017,September,Friday,15,258,13,D31,Toronto,25,Glenfield-Jane Heights (25),Convenience Stores,Commercial,UNKNOWN MAKE,,MT,21,BLU,50.0,STOLEN,1035,"{'type': 'Point', 'coordinates': (-79.52346138, 43.74904436)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1048,24368,GO-20189026987,THEFT UNDER - BICYCLE,2018-08-19,2018,August,Sunday,19,231,1,2018-08-19,2018,August,Sunday,19,231,13,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,HYDRA MEN'S HYB,RG,24,BLU,500.0,STOLEN,1036,"{'type': 'Point', 'coordinates': (-79.52170242, 43.74346149)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1049,24369,GO-20189026987,THEFT UNDER - BICYCLE,2018-08-19,2018,August,Sunday,19,231,1,2018-08-19,2018,August,Sunday,19,231,13,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,ANTIC BMX BIKE,BM,15,BLK,180.0,STOLEN,1037,"{'type': 'Point', 'coordinates': (-79.52170242, 43.74346149)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1050,24370,GO-20189026987,THEFT UNDER - BICYCLE,2018-08-19,2018,August,Sunday,19,231,1,2018-08-19,2018,August,Sunday,19,231,13,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,ANNETTE WOMEN'S,RG,15,PLE,300.0,STOLEN,1038,"{'type': 'Point', 'coordinates': (-79.52170242, 43.74346149)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1051,24425,GO-20142447299,THEFT UNDER,2014-07-06,2014,July,Sunday,6,187,22,2014-07-07,2014,July,Monday,7,188,10,D31,Toronto,25,Glenfield-Jane Heights (25),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,RG,1,,145.0,STOLEN,1039,"{'type': 'Point', 'coordinates': (-79.51603747, 43.75073765)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1052,24541,GO-20161553093,ROBBERY - SWARMING,2016-09-01,2016,September,Thursday,1,245,18,2016-09-01,2016,September,Thursday,1,245,19,D31,Toronto,25,Glenfield-Jane Heights (25),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,MT,18,,180.0,STOLEN,1040,"{'type': 'Point', 'coordinates': (-79.51685836, 43.75241579)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1053,703,GO-20171109188,THEFT UNDER - BICYCLE,2017-06-20,2017,June,Tuesday,20,171,10,2017-06-21,2017,June,Wednesday,21,172,16,D31,Toronto,26,Downsview-Roding-CFB (26),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,MT,21,GLD,200.0,STOLEN,1041,"{'type': 'Point', 'coordinates': (-79.51410965, 43.72063504)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1054,979,GO-20171330288,THEFT UNDER - BICYCLE,2017-07-24,2017,July,Monday,24,205,17,2017-07-24,2017,July,Monday,24,205,18,D31,Toronto,26,Downsview-Roding-CFB (26),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,JAMIS,,MT,5,,,STOLEN,1042,"{'type': 'Point', 'coordinates': (-79.48004236, 43.72747445)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1055,1708,GO-20171893838,THEFT UNDER - BICYCLE,2017-10-18,2017,October,Wednesday,18,291,10,2017-10-19,2017,October,Thursday,19,292,14,D31,Toronto,26,Downsview-Roding-CFB (26),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,THEODOR,,RG,3,YEL,300.0,STOLEN,1043,"{'type': 'Point', 'coordinates': (-79.48248767000001, 43.72856336)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1056,12753,GO-20162011474,THEFT UNDER - BICYCLE,2016-11-12,2016,November,Saturday,12,317,10,2016-11-12,2016,November,Saturday,12,317,11,D31,Toronto,27,York University Heights (27),Ttc Bus,Transit,RALEIGH,,MT,18,GRY,,STOLEN,1254,"{'type': 'Point', 'coordinates': (-79.48813244, 43.75202425)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1057,2033,GO-20189004973,THEFT UNDER - BICYCLE,2018-02-15,2018,February,Thursday,15,46,6,2018-02-17,2018,February,Saturday,17,48,17,D32,Toronto,26,Downsview-Roding-CFB (26),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,TREKKER,MT,18,RED,250.0,STOLEN,1044,"{'type': 'Point', 'coordinates': (-79.45790073, 43.72827812)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1058,2122,GO-2018578542,THEFT UNDER - BICYCLE,2018-03-30,2018,March,Friday,30,89,6,2018-03-31,2018,March,Saturday,31,90,15,D32,Toronto,26,Downsview-Roding-CFB (26),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GIANT,NORTHROCK XC27,MT,21,BLK,379.0,STOLEN,1045,"{'type': 'Point', 'coordinates': (-79.46988875, 43.73467051000001)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1059,2151,GO-2018650885,B&E,2018-04-11,2018,April,Wednesday,11,101,9,2018-04-11,2018,April,Wednesday,11,101,19,D31,Toronto,26,Downsview-Roding-CFB (26),"Apartment (Rooming House, Condo)",Apartment,DAMA,,MT,24,BLU,550.0,STOLEN,1046,"{'type': 'Point', 'coordinates': (-79.48004236, 43.72747445)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1060,2152,GO-2018650885,B&E,2018-04-11,2018,April,Wednesday,11,101,9,2018-04-11,2018,April,Wednesday,11,101,19,D31,Toronto,26,Downsview-Roding-CFB (26),"Apartment (Rooming House, Condo)",Apartment,FELT,,MT,27,GRY,1000.0,STOLEN,1047,"{'type': 'Point', 'coordinates': (-79.48004236, 43.72747445)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1061,2423,GO-20189016746,THEFT UNDER,2018-05-29,2018,May,Tuesday,29,149,22,2018-05-30,2018,May,Wednesday,30,150,0,D31,Toronto,26,Downsview-Roding-CFB (26),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,IN,,MT,18,RED,500.0,STOLEN,1048,"{'type': 'Point', 'coordinates': (-79.48451874, 43.73694518)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1062,3279,GO-20181527727,THEFT UNDER - BICYCLE,2018-08-13,2018,August,Monday,13,225,21,2018-08-18,2018,August,Saturday,18,230,21,D32,Toronto,26,Downsview-Roding-CFB (26),"Apartment (Rooming House, Condo)",Apartment,SUPERCYCLE,CROSSROADS,MT,21,SIL,,STOLEN,1049,"{'type': 'Point', 'coordinates': (-79.46806672, 43.73033651000001)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1063,3586,GO-20189032471,THEFT UNDER,2018-08-17,2018,August,Friday,17,229,17,2018-10-01,2018,October,Monday,1,274,9,D31,Toronto,26,Downsview-Roding-CFB (26),Go Station,Transit,NO,,MT,12,RED,450.0,STOLEN,1050,"{'type': 'Point', 'coordinates': (-79.48024537, 43.75432183)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1064,4517,GO-20199018980,THEFT UNDER,2019-06-17,2019,June,Monday,17,168,15,2019-06-17,2019,June,Monday,17,168,17,D31,Toronto,26,Downsview-Roding-CFB (26),"Religious Facilities (Synagogue, Church, Convent, Mosque)",Other,HF,--,MT,6,ONG,200.0,STOLEN,1051,"{'type': 'Point', 'coordinates': (-79.50811877000001, 43.71907849)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1065,4659,GO-20199020842,THEFT UNDER,2019-07-02,2019,July,Tuesday,2,183,17,2019-07-03,2019,July,Wednesday,3,184,12,D31,Toronto,26,Downsview-Roding-CFB (26),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,ESCAPE 2 (2018),OT,8,OTH,780.0,STOLEN,1052,"{'type': 'Point', 'coordinates': (-79.50859475, 43.72091645)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1066,4738,GO-20199021733,THEFT UNDER,2019-07-10,2019,July,Wednesday,10,191,9,2019-07-10,2019,July,Wednesday,10,191,15,D31,Toronto,26,Downsview-Roding-CFB (26),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UK,DK,BM,1,BLK,300.0,STOLEN,1053,"{'type': 'Point', 'coordinates': (-79.48260563, 43.72906154)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1067,4838,GO-20199023297,THEFT UNDER - BICYCLE,2019-07-19,2019,July,Friday,19,200,20,2019-07-22,2019,July,Monday,22,203,19,D32,Toronto,26,Downsview-Roding-CFB (26),Ttc Subway Station,Transit,SC,,RG,7,RED,400.0,STOLEN,1054,"{'type': 'Point', 'coordinates': (-79.46273009, 43.75037793)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1068,4891,GO-20199023847,THEFT UNDER,2019-07-25,2019,July,Thursday,25,206,12,2019-07-26,2019,July,Friday,26,207,11,D31,Toronto,26,Downsview-Roding-CFB (26),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,IN,,RG,21,BLU,150.0,STOLEN,1055,"{'type': 'Point', 'coordinates': (-79.48165414, 43.72511192)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1069,4894,GO-20191400964,THEFT UNDER,2019-07-24,2019,July,Wednesday,24,205,17,2019-07-25,2019,July,Thursday,25,206,19,D31,Toronto,26,Downsview-Roding-CFB (26),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,SLOP T6 ALUMINU,MT,21,BLUWHI,600.0,STOLEN,1056,"{'type': 'Point', 'coordinates': (-79.48165414, 43.72511192)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1070,4940,GO-20191437348,THEFT UNDER - BICYCLE,2019-07-23,2019,July,Tuesday,23,204,9,2019-07-30,2019,July,Tuesday,30,211,22,D32,Toronto,26,Downsview-Roding-CFB (26),Ttc Subway Station,Transit,OTHER,,SC,1,GRY,2500.0,STOLEN,1057,"{'type': 'Point', 'coordinates': (-79.46273009, 43.75037793)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1071,5410,GO-20191855839,B&E,2019-09-23,2019,September,Monday,23,266,16,2019-09-26,2019,September,Thursday,26,269,14,D31,Toronto,26,Downsview-Roding-CFB (26),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,21,GRY,3318.0,STOLEN,1058,"{'type': 'Point', 'coordinates': (-79.49843051, 43.72389874)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1072,5664,GO-20199036900,THEFT UNDER,2019-10-29,2019,October,Tuesday,29,302,18,2019-11-08,2019,November,Friday,8,312,16,D31,Toronto,26,Downsview-Roding-CFB (26),Go Station,Transit,SC,HYDRA,RG,21,SIL,800.0,STOLEN,1059,"{'type': 'Point', 'coordinates': (-79.48024537, 43.75432183)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1073,6298,GO-20209014582,THEFT UNDER - BICYCLE,2020-06-03,2020,June,Wednesday,3,155,21,2020-06-04,2020,June,Thursday,4,156,15,D32,Toronto,26,Downsview-Roding-CFB (26),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,,MT,18,RED,0.0,STOLEN,1060,"{'type': 'Point', 'coordinates': (-79.45985633, 43.73199742)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1074,6594,GO-20209017360,THEFT UNDER,2020-07-11,2020,July,Saturday,11,193,21,2020-07-12,2020,July,Sunday,12,194,12,D31,Toronto,26,Downsview-Roding-CFB (26),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SU,1800,MT,18,SIL,110.0,STOLEN,1061,"{'type': 'Point', 'coordinates': (-79.47694718, 43.73627679)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1075,6675,GO-20201346509,THEFT FROM MOTOR VEHICLE UNDER,2020-07-19,2020,July,Sunday,19,201,22,2020-07-20,2020,July,Monday,20,202,8,D31,Toronto,26,Downsview-Roding-CFB (26),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,HYPER,MT,21,BLK,,UNKNOWN,1062,"{'type': 'Point', 'coordinates': (-79.51633863, 43.72013287)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1076,6710,GO-20209018317,THEFT UNDER - BICYCLE,2020-07-22,2020,July,Wednesday,22,204,22,2020-07-23,2020,July,Thursday,23,205,9,D31,Toronto,26,Downsview-Roding-CFB (26),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,GTAVALANCHECOMP,MT,9,RED,750.0,STOLEN,1063,"{'type': 'Point', 'coordinates': (-79.52258038, 43.72608873)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1077,6711,GO-20209018317,THEFT UNDER - BICYCLE,2020-07-22,2020,July,Wednesday,22,204,22,2020-07-23,2020,July,Thursday,23,205,9,D31,Toronto,26,Downsview-Roding-CFB (26),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,GT AGGRESSOR SP,MT,7,DBL,700.0,STOLEN,1064,"{'type': 'Point', 'coordinates': (-79.52258038, 43.72608873)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1078,6768,GO-20209018598,THEFT FROM MOTOR VEHICLE UNDER,2020-07-26,2020,July,Sunday,26,208,0,2020-07-26,2020,July,Sunday,26,208,14,D31,Toronto,26,Downsview-Roding-CFB (26),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,OT,6,BLK,500.0,STOLEN,1065,"{'type': 'Point', 'coordinates': (-79.51316419, 43.72551677)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1079,7225,GO-20209022840,THEFT UNDER - BICYCLE,2020-09-10,2020,September,Thursday,10,254,12,2020-09-10,2020,September,Thursday,10,254,13,D31,Toronto,26,Downsview-Roding-CFB (26),"Apartment (Rooming House, Condo)",Apartment,GT,,MT,3,BLK,650.0,STOLEN,1066,"{'type': 'Point', 'coordinates': (-79.48312757, 43.73115325)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1080,17604,GO-20199023140,THEFT UNDER,2019-07-21,2019,July,Sunday,21,202,7,2019-07-21,2019,July,Sunday,21,202,18,D31,Toronto,27,York University Heights (27),Universities / Colleges,Educational,SC,,MT,24,RED,700.0,STOLEN,1287,"{'type': 'Point', 'coordinates': (-79.50240222, 43.77447286000001)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1081,7932,GO-20149003359,THEFT UNDER,2014-05-08,2014,May,Thursday,8,128,7,2014-05-14,2014,May,Wednesday,14,134,19,D31,Toronto,26,Downsview-Roding-CFB (26),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,IN,MUD BIKE,MT,18,,,STOLEN,1067,"{'type': 'Point', 'coordinates': (-79.52258038, 43.72608873)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1082,7945,GO-20142099437,THEFT UNDER,2014-05-17,2014,May,Saturday,17,137,19,2014-05-17,2014,May,Saturday,17,137,19,D31,Toronto,26,Downsview-Roding-CFB (26),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,FUGITIVE,MT,21,GRY,189.0,STOLEN,1068,"{'type': 'Point', 'coordinates': (-79.50894007, 43.72236516)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1083,7986,GO-20142172027,THEFT UNDER,2014-05-28,2014,May,Wednesday,28,148,18,2014-05-28,2014,May,Wednesday,28,148,18,D31,Toronto,26,Downsview-Roding-CFB (26),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,BM,1,BLK,350.0,STOLEN,1069,"{'type': 'Point', 'coordinates': (-79.50757352, 43.73027402)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1084,8216,GO-20142338706,THEFT UNDER,2014-06-20,2014,June,Friday,20,171,6,2014-06-21,2014,June,Saturday,21,172,16,D32,Toronto,26,Downsview-Roding-CFB (26),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BIANCHI,,OT,10,GRY,300.0,STOLEN,1070,"{'type': 'Point', 'coordinates': (-79.45832674, 43.72992996)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1085,8416,GO-20149004960,THEFT UNDER,2014-07-13,2014,July,Sunday,13,194,21,2014-07-13,2014,July,Sunday,13,194,22,D32,Toronto,26,Downsview-Roding-CFB (26),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,,BM,20,SIL,,STOLEN,1071,"{'type': 'Point', 'coordinates': (-79.46385609, 43.72975208)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1086,8488,GO-20149004960,THEFT UNDER,2014-07-13,2014,July,Sunday,13,194,21,2014-07-13,2014,July,Sunday,13,194,22,D32,Toronto,26,Downsview-Roding-CFB (26),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,HUFFY,,BM,1,GRY,350.0,STOLEN,1072,"{'type': 'Point', 'coordinates': (-79.46385609, 43.72975208)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1087,8945,GO-20142959041,THEFT UNDER,2014-09-20,2014,September,Saturday,20,263,19,2014-09-22,2014,September,Monday,22,265,10,D31,Toronto,26,Downsview-Roding-CFB (26),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GARY FISHER,MOUNTAINE BIKE,MT,10,BLKSIL,2000.0,STOLEN,1073,"{'type': 'Point', 'coordinates': (-79.49858942, 43.73230491)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1088,8946,GO-20142959041,THEFT UNDER,2014-09-20,2014,September,Saturday,20,263,19,2014-09-22,2014,September,Monday,22,265,10,D31,Toronto,26,Downsview-Roding-CFB (26),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,BM,10,BLKPNK,500.0,STOLEN,1074,"{'type': 'Point', 'coordinates': (-79.49858942, 43.73230491)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1089,9004,GO-20143024249,B&E,2014-10-01,2014,October,Wednesday,1,274,14,2014-10-01,2014,October,Wednesday,1,274,22,D32,Toronto,26,Downsview-Roding-CFB (26),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,RG,20,GRY,600.0,STOLEN,1075,"{'type': 'Point', 'coordinates': (-79.46632162, 43.72726225)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1090,9117,GO-20149007829,THEFT UNDER,2014-10-25,2014,October,Saturday,25,298,13,2014-10-26,2014,October,Sunday,26,299,13,D32,Toronto,26,Downsview-Roding-CFB (26),"Apartment (Rooming House, Condo)",Apartment,SC,6.3 GRNADE,MT,24,BLU,760.0,STOLEN,1076,"{'type': 'Point', 'coordinates': (-79.47093792, 43.72707242)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1091,9606,GO-2015831952,THEFT UNDER,2015-05-09,2015,May,Saturday,9,129,10,2015-05-19,2015,May,Tuesday,19,139,7,D31,Toronto,26,Downsview-Roding-CFB (26),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,UNKNOWN,RG,1,BLUGRN,50.0,STOLEN,1077,"{'type': 'Point', 'coordinates': (-79.48328501, 43.74527145)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1092,9607,GO-2015831952,THEFT UNDER,2015-05-09,2015,May,Saturday,9,129,10,2015-05-19,2015,May,Tuesday,19,139,7,D31,Toronto,26,Downsview-Roding-CFB (26),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,UNKNOWN,RG,1,GRY,50.0,STOLEN,1078,"{'type': 'Point', 'coordinates': (-79.48328501, 43.74527145)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1093,9663,GO-2015886246,THEFT UNDER,2015-05-26,2015,May,Tuesday,26,146,20,2015-05-27,2015,May,Wednesday,27,147,18,D31,Toronto,26,Downsview-Roding-CFB (26),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,7,BLK,75.0,STOLEN,1079,"{'type': 'Point', 'coordinates': (-79.50808528, 43.72799612)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1094,9776,GO-2015974820,THEFT UNDER,2015-06-04,2015,June,Thursday,4,155,13,2015-06-10,2015,June,Wednesday,10,161,18,D31,Toronto,26,Downsview-Roding-CFB (26),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,,OT,3,,50.0,STOLEN,1080,"{'type': 'Point', 'coordinates': (-79.51669411, 43.7209442)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1095,9777,GO-2015974820,THEFT UNDER,2015-06-04,2015,June,Thursday,4,155,13,2015-06-10,2015,June,Wednesday,10,161,18,D31,Toronto,26,Downsview-Roding-CFB (26),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,OT,5,,50.0,STOLEN,1081,"{'type': 'Point', 'coordinates': (-79.51669411, 43.7209442)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1096,9936,GO-20151121134,THEFT UNDER,2015-07-03,2015,July,Friday,3,184,10,2015-07-03,2015,July,Friday,3,184,16,D32,Toronto,26,Downsview-Roding-CFB (26),Ttc Subway Station,Transit,GIANT,,OT,0,SILRED,600.0,STOLEN,1082,"{'type': 'Point', 'coordinates': (-79.46273009, 43.75037793)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1097,10797,GO-20152005436,ROBBERY - MUGGING,2015-11-22,2015,November,Sunday,22,326,17,2015-11-22,2015,November,Sunday,22,326,18,D31,Toronto,26,Downsview-Roding-CFB (26),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SMART,,SC,1,RED,500.0,STOLEN,1083,"{'type': 'Point', 'coordinates': (-79.51410965, 43.72063504)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1098,11403,GO-2016920214,THEFT UNDER,2016-05-26,2016,May,Thursday,26,147,21,2016-05-28,2016,May,Saturday,28,149,9,D31,Toronto,26,Downsview-Roding-CFB (26),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,0,,50.0,STOLEN,1084,"{'type': 'Point', 'coordinates': (-79.51669411, 43.7209442)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1099,11438,GO-2016971707,THEFT UNDER - BICYCLE,2016-06-04,2016,June,Saturday,4,156,18,2016-06-04,2016,June,Saturday,4,156,18,D31,Toronto,26,Downsview-Roding-CFB (26),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,,BM,3,,100.0,RECOVERED,1085,"{'type': 'Point', 'coordinates': (-79.50033652, 43.73212998)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1100,11453,GO-2016976054,THEFT UNDER - BICYCLE,2016-06-04,2016,June,Saturday,4,156,16,2016-06-05,2016,June,Sunday,5,157,12,D32,Toronto,26,Downsview-Roding-CFB (26),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,PULSAR 26,MT,21,GRYRED,800.0,STOLEN,1086,"{'type': 'Point', 'coordinates': (-79.46547179, 43.73093253)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1101,11472,GO-2016985570,THEFT UNDER - BICYCLE,2016-06-04,2016,June,Saturday,4,156,14,2016-06-06,2016,June,Monday,6,158,21,D31,Toronto,26,Downsview-Roding-CFB (26),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,OT,10,BLUWHI,,STOLEN,1087,"{'type': 'Point', 'coordinates': (-79.51597537, 43.71930771)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1102,11646,GO-20169006406,THEFT UNDER,2016-06-26,2016,June,Sunday,26,178,21,2016-06-27,2016,June,Monday,27,179,10,D32,Toronto,26,Downsview-Roding-CFB (26),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,TALON 4,MT,24,DBL,699.0,STOLEN,1088,"{'type': 'Point', 'coordinates': (-79.46547179, 43.73093253)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1103,11694,GO-20161169414,THEFT UNDER - SHOPLIFTING,2016-07-04,2016,July,Monday,4,186,16,2016-07-04,2016,July,Monday,4,186,16,D31,Toronto,26,Downsview-Roding-CFB (26),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,HUFFY,,TR,1,BLKRED,120.0,STOLEN,1089,"{'type': 'Point', 'coordinates': (-79.50894007, 43.72236516)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1104,24156,GO-2020679440,THEFT UNDER - BICYCLE,2020-04-04,2020,April,Saturday,4,95,12,2020-04-07,2020,April,Tuesday,7,98,18,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,CCM,,MT,6,,160.0,RECOVERED,1114,"{'type': 'Point', 'coordinates': (-79.4896086, 43.75117849)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1105,11710,GO-20161176781,THEFT OF EBIKE UNDER $5000,2016-07-05,2016,July,Tuesday,5,187,15,2016-07-05,2016,July,Tuesday,5,187,18,D31,Toronto,26,Downsview-Roding-CFB (26),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,EM100,OT,72,BLK,,STOLEN,1090,"{'type': 'Point', 'coordinates': (-79.52300643, 43.71770465)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1106,11793,GO-20161210193,THEFT UNDER - BICYCLE,2016-07-10,2016,July,Sunday,10,192,13,2016-07-10,2016,July,Sunday,10,192,20,D31,Toronto,26,Downsview-Roding-CFB (26),"Apartment (Rooming House, Condo)",Apartment,CCM,,MT,21,BLK,700.0,STOLEN,1091,"{'type': 'Point', 'coordinates': (-79.47778326, 43.72510904)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1107,12000,GO-20169008231,THEFT UNDER - BICYCLE,2016-08-04,2016,August,Thursday,4,217,8,2016-08-04,2016,August,Thursday,4,217,21,D32,Toronto,26,Downsview-Roding-CFB (26),Ttc Subway Station,Transit,OT,,MT,24,GRY,800.0,STOLEN,1092,"{'type': 'Point', 'coordinates': (-79.46273009, 43.75037793)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1108,12224,GO-20169009626,THEFT OF EBIKE UNDER $5000,2016-08-26,2016,August,Friday,26,239,18,2016-08-29,2016,August,Monday,29,242,9,D31,Toronto,26,Downsview-Roding-CFB (26),Convenience Stores,Commercial,UK,,EL,20,,750.0,STOLEN,1093,"{'type': 'Point', 'coordinates': (-79.47846188000001, 43.72797708)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1109,13577,GO-20209020261,THEFT UNDER - BICYCLE,2020-08-14,2020,August,Friday,14,227,10,2020-08-14,2020,August,Friday,14,227,21,D32,Toronto,26,Downsview-Roding-CFB (26),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,STREET BIKE,RG,15,BLK,300.0,STOLEN,1094,"{'type': 'Point', 'coordinates': (-79.45832674, 43.72992996)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1110,14269,GO-20209014991,THEFT UNDER,2020-06-09,2020,June,Tuesday,9,161,1,2020-06-09,2020,June,Tuesday,9,161,15,D31,Toronto,26,Downsview-Roding-CFB (26),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RM,ROCKY MOUNTAIN,MT,24,BLK,1300.0,STOLEN,1095,"{'type': 'Point', 'coordinates': (-79.50393254, 43.72004971)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1111,14270,GO-20209014991,THEFT UNDER,2020-06-09,2020,June,Tuesday,9,161,1,2020-06-09,2020,June,Tuesday,9,161,15,D31,Toronto,26,Downsview-Roding-CFB (26),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,,MT,21,WHI,1000.0,STOLEN,1096,"{'type': 'Point', 'coordinates': (-79.50393254, 43.72004971)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1112,14279,GO-20209016915,THEFT UNDER,2020-07-05,2020,July,Sunday,5,187,15,2020-07-05,2020,July,Sunday,5,187,20,D31,Toronto,26,Downsview-Roding-CFB (26),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RG,21,RED,198.0,STOLEN,1097,"{'type': 'Point', 'coordinates': (-79.51410965, 43.72063504)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1113,14326,GO-20209026185,FTC WITH CONDITIONS,2020-10-12,2020,October,Monday,12,286,3,2020-10-12,2020,October,Monday,12,286,14,D31,Toronto,26,Downsview-Roding-CFB (26),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,PRECALIBER 24,MT,8,BLU,500.0,STOLEN,1098,"{'type': 'Point', 'coordinates': (-79.50382355, 43.72513594)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1114,14486,GO-20199000792,THEFT UNDER - BICYCLE,2019-01-06,2019,January,Sunday,6,6,8,2019-01-07,2019,January,Monday,7,7,20,D31,Toronto,26,Downsview-Roding-CFB (26),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,HARDROCK,MT,24,YEL,750.0,STOLEN,1099,"{'type': 'Point', 'coordinates': (-79.51907698, 43.72038469)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1115,22073,GO-20159005174,THEFT UNDER,2015-07-30,2015,July,Thursday,30,211,9,2015-07-30,2015,July,Thursday,30,211,15,D32,Toronto,27,York University Heights (27),Convenience Stores,Commercial,CC,,MT,21,GRY,300.0,STOLEN,1100,"{'type': 'Point', 'coordinates': (-79.47004827000002, 43.78728363)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1116,22099,GO-2016566039,TRAFFICKING PROPERTY OBC UNDER,2016-04-03,2016,April,Sunday,3,94,17,2016-04-12,2016,April,Tuesday,12,103,17,D31,Toronto,27,York University Heights (27),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GT,AVALANCHE,MT,21,LBL,600.0,STOLEN,1101,"{'type': 'Point', 'coordinates': (-79.4997085, 43.76657268)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1117,22120,GO-20169008165,THEFT UNDER - BICYCLE,2016-08-02,2016,August,Tuesday,2,215,5,2016-08-03,2016,August,Wednesday,3,216,19,D31,Toronto,27,York University Heights (27),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,VFR 3,RG,15,GRY,1000.0,STOLEN,1102,"{'type': 'Point', 'coordinates': (-79.49711787, 43.76836748000001)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1118,22124,GO-20169008831,THEFT UNDER - BICYCLE,2016-08-15,2016,August,Monday,15,228,1,2016-08-16,2016,August,Tuesday,16,229,3,D31,Toronto,27,York University Heights (27),Universities / Colleges,Educational,UK,RAZOR CANYON,MT,15,BLU,100.0,STOLEN,1103,"{'type': 'Point', 'coordinates': (-79.50080714, 43.77034083)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1119,22125,GO-20161280075,PROPERTY - FOUND,2016-07-21,2016,July,Thursday,21,203,12,2016-07-21,2016,July,Thursday,21,203,12,D32,Toronto,27,York University Heights (27),"Open Areas (Lakes, Parks, Rivers)",Outside,TREK,FX SERIES 7.2,RG,21,BLK,,UNKNOWN,1104,"{'type': 'Point', 'coordinates': (-79.46842709, 43.77519437)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1120,22142,GO-2017471418,THEFT UNDER - BICYCLE,2017-03-15,2017,March,Wednesday,15,74,22,2017-03-16,2017,March,Thursday,16,75,13,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,RALEIGH,CHILL,MT,18,BLU,300.0,STOLEN,1105,"{'type': 'Point', 'coordinates': (-79.50334807, 43.76978983)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1121,22154,GO-20171111078,SUSPICIOUS INCIDENT,2017-06-21,2017,June,Wednesday,21,172,22,2017-06-21,2017,June,Wednesday,21,172,22,D31,Toronto,27,York University Heights (27),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,SC 500,MT,1,RED,,UNKNOWN,1106,"{'type': 'Point', 'coordinates': (-79.49481733, 43.74898644)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1122,22155,GO-20171111078,SUSPICIOUS INCIDENT,2017-06-21,2017,June,Wednesday,21,172,22,2017-06-21,2017,June,Wednesday,21,172,22,D31,Toronto,27,York University Heights (27),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,JARGA 10,TO,20,WHI,,UNKNOWN,1107,"{'type': 'Point', 'coordinates': (-79.49481733, 43.74898644)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1123,22156,GO-20171111078,SUSPICIOUS INCIDENT,2017-06-21,2017,June,Wednesday,21,172,22,2017-06-21,2017,June,Wednesday,21,172,22,D31,Toronto,27,York University Heights (27),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,HUFFY,MAYHEM,MT,18,ONG,,UNKNOWN,1108,"{'type': 'Point', 'coordinates': (-79.49481733, 43.74898644)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1124,23327,GO-20201074509,THEFT UNDER - BICYCLE,2020-06-11,2020,June,Thursday,11,163,13,2020-06-11,2020,June,Thursday,11,163,13,D32,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,CRAVE EXPERT,MT,21,BLK,2500.0,STOLEN,1109,"{'type': 'Point', 'coordinates': (-79.48101667, 43.78470041)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1125,23347,GO-20209019368,THEFT UNDER - BICYCLE,2020-07-29,2020,July,Wednesday,29,211,19,2020-08-04,2020,August,Tuesday,4,217,17,D32,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,NO,XFR 3 FORMA,OT,21,SIL,250.0,STOLEN,1110,"{'type': 'Point', 'coordinates': (-79.46639639, 43.75118973)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1126,23367,GO-20202161668,THEFT UNDER - BICYCLE,2020-11-14,2020,November,Saturday,14,319,14,2020-11-14,2020,November,Saturday,14,319,15,D32,Toronto,27,York University Heights (27),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN,UNKNOWN,MT,21,WHI,300.0,STOLEN,1111,"{'type': 'Point', 'coordinates': (-79.47471632, 43.78618439)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1127,5476,GO-20199032728,THEFT UNDER,2019-09-12,2019,September,Thursday,12,255,8,2019-10-05,2019,October,Saturday,5,278,17,D13,Toronto,31,Yorkdale-Glen Park (31),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,8,BLK,0.0,STOLEN,1112,"{'type': 'Point', 'coordinates': (-79.44190989, 43.70940381)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1128,14838,GO-20189026842,THEFT UNDER - BICYCLE,2018-08-16,2018,August,Thursday,16,228,20,2018-08-17,2018,August,Friday,17,229,20,D31,Toronto,26,Downsview-Roding-CFB (26),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,1,WHI,200.0,STOLEN,1113,"{'type': 'Point', 'coordinates': (-79.51410965, 43.72063504)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1129,24157,GO-2020679440,THEFT UNDER - BICYCLE,2020-04-04,2020,April,Saturday,4,95,12,2020-04-07,2020,April,Tuesday,7,98,18,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,NAKAMURA,,MT,12,LBL,170.0,RECOVERED,1115,"{'type': 'Point', 'coordinates': (-79.4896086, 43.75117849)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1130,24158,GO-2020679440,THEFT UNDER - BICYCLE,2020-04-04,2020,April,Saturday,4,95,12,2020-04-07,2020,April,Tuesday,7,98,18,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,NAKAMURA,,MT,12,ONG,170.0,RECOVERED,1116,"{'type': 'Point', 'coordinates': (-79.4896086, 43.75117849)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1131,24159,GO-2020679440,THEFT UNDER - BICYCLE,2020-04-04,2020,April,Saturday,4,95,12,2020-04-07,2020,April,Tuesday,7,98,18,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,CCM,,BM,6,BLK,160.0,STOLEN,1117,"{'type': 'Point', 'coordinates': (-79.4896086, 43.75117849)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1132,24182,GO-20201016344,THEFT UNDER,2020-05-28,2020,May,Thursday,28,149,18,2020-06-06,2020,June,Saturday,6,158,14,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,CCM,5L 2.0,MT,21,BLU,250.0,STOLEN,1118,"{'type': 'Point', 'coordinates': (-79.50147952, 43.77191841)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1133,24183,GO-20201016344,THEFT UNDER,2020-05-28,2020,May,Thursday,28,149,18,2020-06-06,2020,June,Saturday,6,158,14,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,CCM,PRIME,MT,21,RED,280.0,STOLEN,1119,"{'type': 'Point', 'coordinates': (-79.50147952, 43.77191841)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1134,17929,GO-20142393930,THEFT OVER,2014-06-08,2014,June,Sunday,8,159,15,2014-07-03,2014,July,Thursday,3,184,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,FUJI,ROUBAIN,OT,21,RED,2000.0,STOLEN,1120,"{'type': 'Point', 'coordinates': (-79.47400022, 43.6305708)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1135,24223,GO-20171572044,THEFT UNDER - BICYCLE,2017-08-26,2017,August,Saturday,26,238,16,2017-08-30,2017,August,Wednesday,30,242,17,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,CCM,ECCO,MT,18,GRNYEL,150.0,STOLEN,1121,"{'type': 'Point', 'coordinates': (-79.50082146, 43.76336098)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1136,24310,GO-20189018279,THEFT UNDER - BICYCLE,2018-06-10,2018,June,Sunday,10,161,20,2018-06-11,2018,June,Monday,11,162,15,D31,Toronto,27,York University Heights (27),Universities / Colleges,Educational,CC,,MT,21,BLK,500.0,STOLEN,1122,"{'type': 'Point', 'coordinates': (-79.49994532, 43.77052769)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1137,24315,GO-20189019371,THEFT UNDER - BICYCLE,2018-06-16,2018,June,Saturday,16,167,10,2018-06-19,2018,June,Tuesday,19,170,18,D31,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,700C MEN ROAD T,RC,60,GRN,300.0,STOLEN,1123,"{'type': 'Point', 'coordinates': (-79.4916178, 43.76571585)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1138,24375,GO-20189027527,THEFT UNDER - BICYCLE,2018-08-22,2018,August,Wednesday,22,234,19,2018-08-22,2018,August,Wednesday,22,234,20,D31,Toronto,27,York University Heights (27),Universities / Colleges,Educational,FJ,ABSOLUTE 2.1,RG,24,BLK,500.0,STOLEN,1124,"{'type': 'Point', 'coordinates': (-79.50240222, 43.77447286000001)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1139,24416,GO-20149003506,THEFT UNDER,2014-05-19,2014,May,Monday,19,139,18,2014-05-22,2014,May,Thursday,22,142,12,D31,Toronto,27,York University Heights (27),Schools During Un-Supervised Activity,Educational,UK,,RG,10,RED,,STOLEN,1125,"{'type': 'Point', 'coordinates': (-79.50240222, 43.77447286000001)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1140,24437,GO-20143023383,ROBBERY WITH WEAPON,2014-10-01,2014,October,Wednesday,1,274,19,2014-10-01,2014,October,Wednesday,1,274,19,D31,Toronto,27,York University Heights (27),"Open Areas (Lakes, Parks, Rivers)",Outside,NEXT,,MT,4,,,STOLEN,1126,"{'type': 'Point', 'coordinates': (-79.49481846, 43.75665163)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1141,24460,GO-20159003746,THEFT UNDER,2015-06-02,2015,June,Tuesday,2,153,18,2015-06-18,2015,June,Thursday,18,169,21,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,RA,DETOUR,RG,21,RED,500.0,STOLEN,1127,"{'type': 'Point', 'coordinates': (-79.50372563, 43.76525072)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1142,24497,GO-20151848849,THEFT UNDER,2015-10-27,2015,October,Tuesday,27,300,1,2015-10-27,2015,October,Tuesday,27,300,17,D31,Toronto,27,York University Heights (27),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,ROAM 3,MT,24,BLKWHI,650.0,STOLEN,1128,"{'type': 'Point', 'coordinates': (-79.4949085, 43.76724158)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1143,24502,GO-20159011250,THEFT UNDER,2015-12-22,2015,December,Tuesday,22,356,21,2015-12-23,2015,December,Wednesday,23,357,12,D31,Toronto,27,York University Heights (27),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SC,GRAFT,MT,24,WHI,300.0,STOLEN,1129,"{'type': 'Point', 'coordinates': (-79.49647386, 43.76681057)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1144,24506,GO-20169000966,THEFT UNDER,2016-01-29,2016,January,Friday,29,29,8,2016-01-29,2016,January,Friday,29,29,17,D31,Toronto,27,York University Heights (27),Universities / Colleges,Educational,GI,ROAM 3 LARGE,MT,24,BLK,500.0,STOLEN,1130,"{'type': 'Point', 'coordinates': (-79.49895676, 43.77249589)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1145,24340,GO-20181299049,THEFT UNDER - BICYCLE,2018-07-14,2018,July,Saturday,14,195,16,2018-07-16,2018,July,Monday,16,197,19,D22,Toronto,18,New Toronto (18),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MARIN OR MARINO,,MT,18,BLK,400.0,STOLEN,1132,"{'type': 'Point', 'coordinates': (-79.50515998, 43.6035065)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1146,24509,GO-20169002403,THEFT UNDER - BICYCLE,2016-03-11,2016,March,Friday,11,71,16,2016-03-16,2016,March,Wednesday,16,76,9,D32,Toronto,27,York University Heights (27),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,TEQUESTA,MT,21,BLK,500.0,STOLEN,1133,"{'type': 'Point', 'coordinates': (-79.4811406, 43.77536374)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1147,24530,GO-20169007744,THEFT UNDER - BICYCLE,2016-07-20,2016,July,Wednesday,20,202,16,2016-07-25,2016,July,Monday,25,207,16,D31,Toronto,27,York University Heights (27),Universities / Colleges,Educational,SC,,MT,21,BLU,299.0,STOLEN,1134,"{'type': 'Point', 'coordinates': (-79.50245173, 43.77001164)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1148,24534,GO-20161308030,THEFT UNDER - BICYCLE,2016-07-11,2016,July,Monday,11,193,17,2016-07-25,2016,July,Monday,25,207,18,D31,Toronto,27,York University Heights (27),Universities / Colleges,Educational,CCM,UNKNOWN,RG,10,BLKGRN,310.0,STOLEN,1135,"{'type': 'Point', 'coordinates': (-79.50852047, 43.77429016)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1149,24546,GO-20161666937,THEFT UNDER - BICYCLE,2016-09-19,2016,September,Monday,19,263,8,2016-09-20,2016,September,Tuesday,20,264,7,D32,Toronto,27,York University Heights (27),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,VANDAL,MT,21,RED,250.0,STOLEN,1136,"{'type': 'Point', 'coordinates': (-79.46688641, 43.76885259)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1150,24554,GO-20169013419,THEFT UNDER - BICYCLE,2016-11-14,2016,November,Monday,14,319,19,2016-11-14,2016,November,Monday,14,319,23,D32,Toronto,27,York University Heights (27),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,HC5500,RG,24,RED,400.0,STOLEN,1137,"{'type': 'Point', 'coordinates': (-79.47010818, 43.78384033)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1151,7661,GO-20209030551,THEFT UNDER,2020-11-25,2020,November,Wednesday,25,330,10,2020-11-25,2020,November,Wednesday,25,330,11,D12,Toronto,28,Rustic (28),"Apartment (Rooming House, Condo)",Apartment,SC,VANTAGE,RC,10,GRY,700.0,STOLEN,1138,"{'type': 'Point', 'coordinates': (-79.50441158, 43.71493894)}",Rustic,28,NIA,9941,9951,-0.001,3726,3650,4734,2.1,3590,1905,200,1370,90,0,25,0.0
-1152,7665,GO-20209030551,THEFT UNDER,2020-11-25,2020,November,Wednesday,25,330,10,2020-11-25,2020,November,Wednesday,25,330,11,D12,Toronto,28,Rustic (28),"Apartment (Rooming House, Condo)",Apartment,SC,ONUS,RC,10,GRY,700.0,STOLEN,1139,"{'type': 'Point', 'coordinates': (-79.50441158, 43.71493894)}",Rustic,28,NIA,9941,9951,-0.001,3726,3650,4734,2.1,3590,1905,200,1370,90,0,25,0.0
-1153,12723,GO-20169005123,THEFT UNDER,2016-05-29,2016,May,Sunday,29,150,19,2016-05-29,2016,May,Sunday,29,150,22,D12,Toronto,28,Rustic (28),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CANNONDALE,SYNAPSE,RC,18,BLKWHI,,STOLEN,1141,"{'type': 'Point', 'coordinates': (-79.50026728, 43.70838437)}",Rustic,28,NIA,9941,9951,-0.001,3726,3650,4734,2.1,3590,1905,200,1370,90,0,25,0.0
-1154,14875,GO-2020101535,B&E,2020-01-15,2020,January,Wednesday,15,15,0,2020-01-15,2020,January,Wednesday,15,15,15,D12,Toronto,28,Rustic (28),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,MT,10,GRY,650.0,STOLEN,1142,"{'type': 'Point', 'coordinates': (-79.49718691, 43.71763236)}",Rustic,28,NIA,9941,9951,-0.001,3726,3650,4734,2.1,3590,1905,200,1370,90,0,25,0.0
-1155,15560,GO-20161724254,THEFT UNDER - BICYCLE,2016-09-23,2016,September,Friday,23,267,15,2016-09-28,2016,September,Wednesday,28,272,10,D12,Toronto,28,Rustic (28),"Apartment (Rooming House, Condo)",Apartment,ROME,DAYMAK,EL,1,RED,1800.0,STOLEN,1143,"{'type': 'Point', 'coordinates': (-79.5047176, 43.71574209)}",Rustic,28,NIA,9941,9951,-0.001,3726,3650,4734,2.1,3590,1905,200,1370,90,0,25,0.0
-1156,18310,GO-20202203163,THEFT FROM MOTOR VEHICLE OVER,2020-11-15,2020,November,Sunday,15,320,1,2020-11-20,2020,November,Friday,20,325,19,D12,Toronto,28,Rustic (28),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,,RG,12,WHI,350.0,STOLEN,1144,"{'type': 'Point', 'coordinates': (-79.49174585, 43.71812256)}",Rustic,28,NIA,9941,9951,-0.001,3726,3650,4734,2.1,3590,1905,200,1370,90,0,25,0.0
-1157,18470,GO-20159010890,THEFT UNDER,2015-12-13,2015,December,Sunday,13,347,21,2015-12-13,2015,December,Sunday,13,347,23,D12,Toronto,28,Rustic (28),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SU,,MT,16,BLK,500.0,STOLEN,1145,"{'type': 'Point', 'coordinates': (-79.49769549, 43.70413583)}",Rustic,28,NIA,9941,9951,-0.001,3726,3650,4734,2.1,3590,1905,200,1370,90,0,25,0.0
-1158,18491,GO-20169005123,THEFT UNDER,2016-05-29,2016,May,Sunday,29,150,19,2016-05-29,2016,May,Sunday,29,150,22,D12,Toronto,28,Rustic (28),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,SYNAPSE,RC,18,BLK,1500.0,STOLEN,1146,"{'type': 'Point', 'coordinates': (-79.50026728, 43.70838437)}",Rustic,28,NIA,9941,9951,-0.001,3726,3650,4734,2.1,3590,1905,200,1370,90,0,25,0.0
-1159,25338,GO-2019165515,THEFT OF EBIKE UNDER $5000,2019-01-24,2019,January,Thursday,24,24,7,2019-01-26,2019,January,Saturday,26,26,23,D12,Toronto,28,Rustic (28),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,ELECTRA,803,EL,1,,1468.0,STOLEN,1147,"{'type': 'Point', 'coordinates': (-79.50530573, 43.7084158)}",Rustic,28,NIA,9941,9951,-0.001,3726,3650,4734,2.1,3590,1905,200,1370,90,0,25,0.0
-1160,25356,GO-20191680484,ROBBERY - MUGGING,2019-08-31,2019,August,Saturday,31,243,15,2019-09-03,2019,September,Tuesday,3,246,20,D12,Toronto,28,Rustic (28),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUPERCYCLE,SPINFIT700C,RG,21,BLKRED,224.0,STOLEN,1148,"{'type': 'Point', 'coordinates': (-79.48762802, 43.70637547)}",Rustic,28,NIA,9941,9951,-0.001,3726,3650,4734,2.1,3590,1905,200,1370,90,0,25,0.0
-1161,10158,GO-20151331157,THEFT UNDER,2015-08-04,2015,August,Tuesday,4,216,3,2015-08-04,2015,August,Tuesday,4,216,3,D31,Toronto,27,York University Heights (27),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,RC,0,BLK,200.0,STOLEN,1149,"{'type': 'Point', 'coordinates': (-79.49900572, 43.76753752)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1162,25367,GO-202022456,THEFT OF EBIKE UNDER $5000,2020-01-04,2020,January,Saturday,4,4,0,2020-01-04,2020,January,Saturday,4,4,10,D12,Toronto,28,Rustic (28),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DAYMAK,,SC,0,BLK,900.0,STOLEN,1150,"{'type': 'Point', 'coordinates': (-79.50441158, 43.71493894)}",Rustic,28,NIA,9941,9951,-0.001,3726,3650,4734,2.1,3590,1905,200,1370,90,0,25,0.0
-1163,1298,GO-20179013925,THEFT UNDER - BICYCLE,2017-09-02,2017,September,Saturday,2,245,23,2017-09-03,2017,September,Sunday,3,246,15,D12,Toronto,29,Maple Leaf (29),"Apartment (Rooming House, Condo)",Apartment,CC,VECTOR,OT,21,BLU,300.0,STOLEN,1151,"{'type': 'Point', 'coordinates': (-79.48522466, 43.71083637)}",Maple Leaf,29,No Designation,10111,10197,-0.008,3696,3556,4012,2.52,4580,2495,225,1620,180,10,60,0.002183406113537118
-1164,1517,GO-20179015694,THEFT UNDER - BICYCLE,2017-09-21,2017,September,Thursday,21,264,11,2017-09-25,2017,September,Monday,25,268,12,D12,Toronto,29,Maple Leaf (29),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,MT,18,BLK,500.0,STOLEN,1152,"{'type': 'Point', 'coordinates': (-79.47465243, 43.72300968)}",Maple Leaf,29,No Designation,10111,10197,-0.008,3696,3556,4012,2.52,4580,2495,225,1620,180,10,60,0.002183406113537118
-1165,6183,GO-20209013077,THEFT UNDER,2020-05-12,2020,May,Tuesday,12,133,11,2020-05-13,2020,May,Wednesday,13,134,20,D12,Toronto,29,Maple Leaf (29),"Apartment (Rooming House, Condo)",Apartment,SC,,RG,5,WHI,160.0,STOLEN,1153,"{'type': 'Point', 'coordinates': (-79.47881704, 43.71222581)}",Maple Leaf,29,No Designation,10111,10197,-0.008,3696,3556,4012,2.52,4580,2495,225,1620,180,10,60,0.002183406113537118
-1166,7449,GO-20201943031,B&E,2020-10-12,2020,October,Monday,12,286,23,2020-10-13,2020,October,Tuesday,13,287,11,D12,Toronto,29,Maple Leaf (29),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,E WILD S,EL,1,BLK,3000.0,STOLEN,1154,"{'type': 'Point', 'coordinates': (-79.47711002, 43.71000528)}",Maple Leaf,29,No Designation,10111,10197,-0.008,3696,3556,4012,2.52,4580,2495,225,1620,180,10,60,0.002183406113537118
-1167,18230,GO-2018148905,THEFT OF EBIKE UNDER $5000,2018-01-22,2018,January,Monday,22,22,18,2018-01-23,2018,January,Tuesday,23,23,9,D12,Toronto,29,Maple Leaf (29),"Apartment (Rooming House, Condo)",Apartment,OTHER,MATRIX,SC,50,,1500.0,STOLEN,1155,"{'type': 'Point', 'coordinates': (-79.47859842, 43.71118561)}",Maple Leaf,29,No Designation,10111,10197,-0.008,3696,3556,4012,2.52,4580,2495,225,1620,180,10,60,0.002183406113537118
-1168,18460,GO-20159007677,THEFT UNDER,2015-09-22,2015,September,Tuesday,22,265,21,2015-09-24,2015,September,Thursday,24,267,10,D12,Toronto,29,Maple Leaf (29),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,DOORPRIZE,OT,1,BLK,850.0,STOLEN,1156,"{'type': 'Point', 'coordinates': (-79.48437893, 43.71822063)}",Maple Leaf,29,No Designation,10111,10197,-0.008,3696,3556,4012,2.52,4580,2495,225,1620,180,10,60,0.002183406113537118
-1169,188,GO-2017575174,THEFT UNDER - BICYCLE,2017-03-28,2017,March,Tuesday,28,87,17,2017-04-01,2017,April,Saturday,1,91,18,D12,Toronto,30,Brookhaven-Amesbury (30),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,,MONSTER 4.5,MT,6,GRY,300.0,STOLEN,1157,"{'type': 'Point', 'coordinates': (-79.49012495, 43.69643015)}",Brookhaven-Amesbury,30,No Designation,17757,17787,-0.002,6667,6482,5045,3.52,7925,3825,395,3380,255,25,55,0.0031545741324921135
-1170,475,GO-2017929125,THEFT OVER,2017-05-25,2017,May,Thursday,25,145,13,2017-05-26,2017,May,Friday,26,146,14,D12,Toronto,30,Brookhaven-Amesbury (30),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,FORTRESS,,SC,1,BLUBLK,5000.0,STOLEN,1158,"{'type': 'Point', 'coordinates': (-79.50257386, 43.69841883)}",Brookhaven-Amesbury,30,No Designation,17757,17787,-0.002,6667,6482,5045,3.52,7925,3825,395,3380,255,25,55,0.0031545741324921135
-1171,1888,GO-20179020689,THEFT UNDER - BICYCLE,2017-11-26,2017,November,Sunday,26,330,21,2017-11-27,2017,November,Monday,27,331,16,D12,Toronto,30,Brookhaven-Amesbury (30),"Group Homes (Non-Profit, Halfway House, Social Agency)",Other,OT,,MT,27,BLU,750.0,STOLEN,1159,"{'type': 'Point', 'coordinates': (-79.49804743, 43.69726405)}",Brookhaven-Amesbury,30,No Designation,17757,17787,-0.002,6667,6482,5045,3.52,7925,3825,395,3380,255,25,55,0.0031545741324921135
-1172,2978,GO-20189024073,THEFT UNDER - BICYCLE,2018-07-26,2018,July,Thursday,26,207,21,2018-07-26,2018,July,Thursday,26,207,23,D12,Toronto,30,Brookhaven-Amesbury (30),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,21,GRY,0.0,STOLEN,1160,"{'type': 'Point', 'coordinates': (-79.47802246, 43.70866018)}",Brookhaven-Amesbury,30,No Designation,17757,17787,-0.002,6667,6482,5045,3.52,7925,3825,395,3380,255,25,55,0.0031545741324921135
-1173,3057,GO-20181416346,THEFT UNDER - BICYCLE,2018-08-01,2018,August,Wednesday,1,213,16,2018-08-03,2018,August,Friday,3,215,11,D12,Toronto,30,Brookhaven-Amesbury (30),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NAKAMURA,,MT,0,GRN,,STOLEN,1161,"{'type': 'Point', 'coordinates': (-79.50285482, 43.69955476)}",Brookhaven-Amesbury,30,No Designation,17757,17787,-0.002,6667,6482,5045,3.52,7925,3825,395,3380,255,25,55,0.0031545741324921135
-1174,3058,GO-20181416346,THEFT UNDER - BICYCLE,2018-08-01,2018,August,Wednesday,1,213,16,2018-08-03,2018,August,Friday,3,215,11,D12,Toronto,30,Brookhaven-Amesbury (30),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUPERCYCLE,,MT,0,PLE,,STOLEN,1162,"{'type': 'Point', 'coordinates': (-79.50285482, 43.69955476)}",Brookhaven-Amesbury,30,No Designation,17757,17787,-0.002,6667,6482,5045,3.52,7925,3825,395,3380,255,25,55,0.0031545741324921135
-1175,3099,GO-20189025392,THEFT UNDER - BICYCLE,2018-08-06,2018,August,Monday,6,218,18,2018-08-07,2018,August,Tuesday,7,219,13,D12,Toronto,30,Brookhaven-Amesbury (30),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,,,MT,21,WHI,150.0,STOLEN,1163,"{'type': 'Point', 'coordinates': (-79.50360266, 43.70228047)}",Brookhaven-Amesbury,30,No Designation,17757,17787,-0.002,6667,6482,5045,3.52,7925,3825,395,3380,255,25,55,0.0031545741324921135
-1176,3100,GO-20189025392,THEFT UNDER - BICYCLE,2018-08-06,2018,August,Monday,6,218,18,2018-08-07,2018,August,Tuesday,7,219,13,D12,Toronto,30,Brookhaven-Amesbury (30),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,MT,18,MRN,150.0,STOLEN,1164,"{'type': 'Point', 'coordinates': (-79.50360266, 43.70228047)}",Brookhaven-Amesbury,30,No Designation,17757,17787,-0.002,6667,6482,5045,3.52,7925,3825,395,3380,255,25,55,0.0031545741324921135
-1177,6822,GO-20209019054,THEFT UNDER,2020-07-30,2020,July,Thursday,30,212,9,2020-07-30,2020,July,Thursday,30,212,23,D12,Toronto,30,Brookhaven-Amesbury (30),"Apartment (Rooming House, Condo)",Apartment,OT,MOUNTAIN BIKE,MT,27,BRN,300.0,STOLEN,1165,"{'type': 'Point', 'coordinates': (-79.49012495, 43.69643015)}",Brookhaven-Amesbury,30,No Designation,17757,17787,-0.002,6667,6482,5045,3.52,7925,3825,395,3380,255,25,55,0.0031545741324921135
-1178,9110,GO-20143168680,THEFT UNDER,2014-10-24,2014,October,Friday,24,297,19,2014-10-24,2014,October,Friday,24,297,19,D12,Toronto,30,Brookhaven-Amesbury (30),"Apartment (Rooming House, Condo)",Apartment,OTHER,,MT,18,BLKRED,50.0,STOLEN,1166,"{'type': 'Point', 'coordinates': (-79.47802246, 43.70866018)}",Brookhaven-Amesbury,30,No Designation,17757,17787,-0.002,6667,6482,5045,3.52,7925,3825,395,3380,255,25,55,0.0031545741324921135
-1179,9421,GO-20159001998,THEFT UNDER,2015-04-16,2015,April,Thursday,16,106,19,2015-04-17,2015,April,Friday,17,107,15,D12,Toronto,30,Brookhaven-Amesbury (30),"Private Property Structure (Pool, Shed, Detached Garage)",Other,,18 SPEED,MT,18,SIL,500.0,STOLEN,1167,"{'type': 'Point', 'coordinates': (-79.50083775, 43.70178255)}",Brookhaven-Amesbury,30,No Designation,17757,17787,-0.002,6667,6482,5045,3.52,7925,3825,395,3380,255,25,55,0.0031545741324921135
-1180,9817,GO-20151022756,THEFT UNDER,2015-06-17,2015,June,Wednesday,17,168,19,2015-06-18,2015,June,Thursday,18,169,10,D12,Toronto,30,Brookhaven-Amesbury (30),"Apartment (Rooming House, Condo)",Apartment,FIX WHEEL,,BM,1,,350.0,STOLEN,1168,"{'type': 'Point', 'coordinates': (-79.49012495, 43.69643015)}",Brookhaven-Amesbury,30,No Designation,17757,17787,-0.002,6667,6482,5045,3.52,7925,3825,395,3380,255,25,55,0.0031545741324921135
-1181,11003,GO-2016310622,ROBBERY - MUGGING,2016-02-21,2016,February,Sunday,21,52,17,2016-02-21,2016,February,Sunday,21,52,18,D12,Toronto,30,Brookhaven-Amesbury (30),"Apartment (Rooming House, Condo)",Apartment,SUPERCYCLE,NITRO XT,MT,0,WHI,,STOLEN,1169,"{'type': 'Point', 'coordinates': (-79.49664293, 43.704367)}",Brookhaven-Amesbury,30,No Designation,17757,17787,-0.002,6667,6482,5045,3.52,7925,3825,395,3380,255,25,55,0.0031545741324921135
-1182,11806,GO-20161219413,THEFT OF MOTOR VEHICLE,2016-07-12,2016,July,Tuesday,12,194,7,2016-07-12,2016,July,Tuesday,12,194,8,D12,Toronto,30,Brookhaven-Amesbury (30),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,FZA,OT,6,REDWHI,10000.0,STOLEN,1170,"{'type': 'Point', 'coordinates': (-79.48281263, 43.70226473000001)}",Brookhaven-Amesbury,30,No Designation,17757,17787,-0.002,6667,6482,5045,3.52,7925,3825,395,3380,255,25,55,0.0031545741324921135
-1183,12147,GO-20161459906,THEFT UNDER - BICYCLE,2016-08-17,2016,August,Wednesday,17,230,17,2016-08-18,2016,August,Thursday,18,231,9,D12,Toronto,30,Brookhaven-Amesbury (30),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,UNKNOWN,MT,12,GRN,100.0,STOLEN,1171,"{'type': 'Point', 'coordinates': (-79.47802246, 43.70866018)}",Brookhaven-Amesbury,30,No Designation,17757,17787,-0.002,6667,6482,5045,3.52,7925,3825,395,3380,255,25,55,0.0031545741324921135
-1184,12587,GO-20169011834,THEFT UNDER - BICYCLE,2016-10-06,2016,October,Thursday,6,280,17,2016-10-11,2016,October,Tuesday,11,285,10,D12,Toronto,30,Brookhaven-Amesbury (30),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,BI,HYBRID,OT,18,LGR,200.0,STOLEN,1172,"{'type': 'Point', 'coordinates': (-79.47135226, 43.70751233)}",Brookhaven-Amesbury,30,No Designation,17757,17787,-0.002,6667,6482,5045,3.52,7925,3825,395,3380,255,25,55,0.0031545741324921135
-1185,14853,GO-20191188843,THEFT UNDER,2019-06-26,2019,June,Wednesday,26,177,3,2019-06-26,2019,June,Wednesday,26,177,18,D12,Toronto,30,Brookhaven-Amesbury (30),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,FO,10,SIL,50.0,STOLEN,1173,"{'type': 'Point', 'coordinates': (-79.50257386, 43.69841883)}",Brookhaven-Amesbury,30,No Designation,17757,17787,-0.002,6667,6482,5045,3.52,7925,3825,395,3380,255,25,55,0.0031545741324921135
-1186,14860,GO-20199023624,THEFT UNDER,2019-07-19,2019,July,Friday,19,200,17,2019-07-24,2019,July,Wednesday,24,205,21,D12,Toronto,30,Brookhaven-Amesbury (30),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,30,,200.0,STOLEN,1174,"{'type': 'Point', 'coordinates': (-79.49012495, 43.69643015)}",Brookhaven-Amesbury,30,No Designation,17757,17787,-0.002,6667,6482,5045,3.52,7925,3825,395,3380,255,25,55,0.0031545741324921135
-1187,15324,GO-20142396160,B&E,2014-06-29,2014,June,Sunday,29,180,19,2014-06-29,2014,June,Sunday,29,180,20,D12,Toronto,30,Brookhaven-Amesbury (30),Schools During Un-Supervised Activity,Educational,OTHER,,MT,10,BLU,,STOLEN,1175,"{'type': 'Point', 'coordinates': (-79.49496641, 43.70278183)}",Brookhaven-Amesbury,30,No Designation,17757,17787,-0.002,6667,6482,5045,3.52,7925,3825,395,3380,255,25,55,0.0031545741324921135
-1188,15592,GO-2017575174,THEFT UNDER - BICYCLE,2017-03-28,2017,March,Tuesday,28,87,17,2017-04-01,2017,April,Saturday,1,91,18,D12,Toronto,30,Brookhaven-Amesbury (30),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NAKAMURA,MONSTER 4.5,MT,6,GRYBLU,305.0,STOLEN,1176,"{'type': 'Point', 'coordinates': (-79.49012495, 43.69643015)}",Brookhaven-Amesbury,30,No Designation,17757,17787,-0.002,6667,6482,5045,3.52,7925,3825,395,3380,255,25,55,0.0031545741324921135
-1189,15618,GO-20171195193,THEFT UNDER - BICYCLE,2017-07-03,2017,July,Monday,3,184,15,2017-07-04,2017,July,Tuesday,4,185,15,D12,Toronto,30,Brookhaven-Amesbury (30),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,,MT,10,PNK,,STOLEN,1177,"{'type': 'Point', 'coordinates': (-79.50453313, 43.69801921)}",Brookhaven-Amesbury,30,No Designation,17757,17787,-0.002,6667,6482,5045,3.52,7925,3825,395,3380,255,25,55,0.0031545741324921135
-1190,18250,GO-20191146854,THEFT UNDER,2019-06-20,2019,June,Thursday,20,171,15,2019-06-20,2019,June,Thursday,20,171,21,D12,Toronto,30,Brookhaven-Amesbury (30),Bar / Restaurant,Commercial,TRIBAL,SEISMO,MT,21,BLUGRN,200.0,STOLEN,1178,"{'type': 'Point', 'coordinates': (-79.47452049000002, 43.709725)}",Brookhaven-Amesbury,30,No Designation,17757,17787,-0.002,6667,6482,5045,3.52,7925,3825,395,3380,255,25,55,0.0031545741324921135
-1191,18400,GO-2015816290,THEFT UNDER - SHOPLIFTING,2015-05-16,2015,May,Saturday,16,136,12,2015-05-16,2015,May,Saturday,16,136,13,D12,Toronto,30,Brookhaven-Amesbury (30),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,OT,0,BLK,298.0,STOLEN,1179,"{'type': 'Point', 'coordinates': (-79.47452049000002, 43.709725)}",Brookhaven-Amesbury,30,No Designation,17757,17787,-0.002,6667,6482,5045,3.52,7925,3825,395,3380,255,25,55,0.0031545741324921135
-1192,18469,GO-20151888429,B&E W'INTENT,2015-10-30,2015,October,Friday,30,303,17,2015-11-03,2015,November,Tuesday,3,307,8,D12,Toronto,30,Brookhaven-Amesbury (30),"Construction Site (Warehouse, Trailer, Shed)",Commercial,OTHER,,OT,0,,4500.0,STOLEN,1180,"{'type': 'Point', 'coordinates': (-79.47320672, 43.70452074)}",Brookhaven-Amesbury,30,No Designation,17757,17787,-0.002,6667,6482,5045,3.52,7925,3825,395,3380,255,25,55,0.0031545741324921135
-1193,21516,GO-20179020689,THEFT UNDER - BICYCLE,2017-11-26,2017,November,Sunday,26,330,21,2017-11-27,2017,November,Monday,27,331,16,D12,Toronto,30,Brookhaven-Amesbury (30),"Group Homes (Non-Profit, Halfway House, Social Agency)",Other,OT,,MT,27,BLU,750.0,STOLEN,1181,"{'type': 'Point', 'coordinates': (-79.49804743, 43.69726405)}",Brookhaven-Amesbury,30,No Designation,17757,17787,-0.002,6667,6482,5045,3.52,7925,3825,395,3380,255,25,55,0.0031545741324921135
-1194,21530,GO-20189034291,THEFT UNDER,2018-10-14,2018,October,Sunday,14,287,2,2018-10-16,2018,October,Tuesday,16,289,14,D12,Toronto,30,Brookhaven-Amesbury (30),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,MO,,MT,18,BLU,250.0,STOLEN,1182,"{'type': 'Point', 'coordinates': (-79.50083775, 43.70178255)}",Brookhaven-Amesbury,30,No Designation,17757,17787,-0.002,6667,6482,5045,3.52,7925,3825,395,3380,255,25,55,0.0031545741324921135
-1195,21544,GO-20191536021,THEFT UNDER,2019-08-09,2019,August,Friday,9,221,10,2019-08-13,2019,August,Tuesday,13,225,16,D12,Toronto,30,Brookhaven-Amesbury (30),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,UNKNOW,RG,7,BLKRED,200.0,STOLEN,1183,"{'type': 'Point', 'coordinates': (-79.50257386, 43.69841883)}",Brookhaven-Amesbury,30,No Designation,17757,17787,-0.002,6667,6482,5045,3.52,7925,3825,395,3380,255,25,55,0.0031545741324921135
-1196,21880,GO-20151050834,THEFT UNDER,2015-06-21,2015,June,Sunday,21,172,18,2015-06-23,2015,June,Tuesday,23,174,11,D12,Toronto,30,Brookhaven-Amesbury (30),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,6,BLUPNK,250.0,STOLEN,1184,"{'type': 'Point', 'coordinates': (-79.50101143, 43.69531195)}",Brookhaven-Amesbury,30,No Designation,17757,17787,-0.002,6667,6482,5045,3.52,7925,3825,395,3380,255,25,55,0.0031545741324921135
-1197,24717,GO-20151107148,THEFT UNDER,2015-06-30,2015,June,Tuesday,30,181,18,2015-07-01,2015,July,Wednesday,1,182,14,D12,Toronto,30,Brookhaven-Amesbury (30),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TREK,TREK,MT,21,BLU,50.0,STOLEN,1185,"{'type': 'Point', 'coordinates': (-79.47592837, 43.69943245000001)}",Brookhaven-Amesbury,30,No Designation,17757,17787,-0.002,6667,6482,5045,3.52,7925,3825,395,3380,255,25,55,0.0031545741324921135
-1198,25316,GO-20171601486,THEFT UNDER - BICYCLE,2017-09-04,2017,September,Monday,4,247,0,2017-09-04,2017,September,Monday,4,247,14,D12,Toronto,30,Brookhaven-Amesbury (30),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,OT,0,,,STOLEN,1186,"{'type': 'Point', 'coordinates': (-79.49012495, 43.69643015)}",Brookhaven-Amesbury,30,No Designation,17757,17787,-0.002,6667,6482,5045,3.52,7925,3825,395,3380,255,25,55,0.0031545741324921135
-1199,14840,GO-20189026842,THEFT UNDER - BICYCLE,2018-08-16,2018,August,Thursday,16,228,20,2018-08-17,2018,August,Friday,17,229,20,D31,Toronto,26,Downsview-Roding-CFB (26),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,1,,400.0,STOLEN,1211,"{'type': 'Point', 'coordinates': (-79.51410965, 43.72063504)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1200,95,GO-20179002152,THEFT UNDER - BICYCLE,2017-02-17,2017,February,Friday,17,48,15,2017-02-19,2017,February,Sunday,19,50,0,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,EKECTRIC SCOOTE,EL,32,BLK,1300.0,STOLEN,1187,"{'type': 'Point', 'coordinates': (-79.46167968, 43.71918674)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1201,182,GO-20179003978,THEFT UNDER - BICYCLE,2017-03-22,2017,March,Wednesday,22,81,9,2017-03-29,2017,March,Wednesday,29,88,21,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,RA,,RC,24,BLU,1800.0,STOLEN,1188,"{'type': 'Point', 'coordinates': (-79.45239005, 43.71432793)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1202,570,GO-20179007804,THEFT UNDER - BICYCLE,2017-06-09,2017,June,Friday,9,160,19,2017-06-09,2017,June,Friday,9,160,20,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,OT,2015 HELIX FEMM,MT,21,PLE,349.0,STOLEN,1189,"{'type': 'Point', 'coordinates': (-79.4547113, 43.71408738)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1203,953,GO-20171331214,THEFT UNDER - BICYCLE,2017-07-24,2017,July,Monday,24,205,9,2017-07-24,2017,July,Monday,24,205,20,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,NORCO,,MT,21,GRY,1500.0,STOLEN,1190,"{'type': 'Point', 'coordinates': (-79.44556484, 43.71912975)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1204,991,GO-20179011141,THEFT UNDER - BICYCLE,2017-07-26,2017,July,Wednesday,26,207,15,2017-07-27,2017,July,Thursday,27,208,10,D13,Toronto,31,Yorkdale-Glen Park (31),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,RG,10,,350.0,STOLEN,1191,"{'type': 'Point', 'coordinates': (-79.44094814, 43.70960071)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1205,1017,GO-20179011352,THEFT UNDER - BICYCLE,2017-07-30,2017,July,Sunday,30,211,7,2017-07-30,2017,July,Sunday,30,211,18,D13,Toronto,31,Yorkdale-Glen Park (31),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,VELO GREEN 21 S,OT,21,GRN,77.0,STOLEN,1192,"{'type': 'Point', 'coordinates': (-79.45314037, 43.70698317)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1206,2218,GO-20189013186,THEFT UNDER,2018-04-27,2018,April,Friday,27,117,17,2018-04-28,2018,April,Saturday,28,118,17,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,SC,700C HYBRID SPO,RG,21,BLU,400.0,STOLEN,1193,"{'type': 'Point', 'coordinates': (-79.45239005, 43.71432793)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1207,2347,GO-2018884707,THEFT UNDER - BICYCLE,2018-05-15,2018,May,Tuesday,15,135,8,2018-05-16,2018,May,Wednesday,16,136,18,D13,Toronto,31,Yorkdale-Glen Park (31),Ttc Subway Station,Transit,OTHER,VIKING TRAIL,OT,5,BLKRED,200.0,STOLEN,1194,"{'type': 'Point', 'coordinates': (-79.44442587, 43.71604957)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1208,2454,GO-20181012129,THEFT OVER - BICYCLE,2017-06-01,2017,June,Thursday,1,152,0,2018-06-05,2018,June,Tuesday,5,156,7,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,OTHER,,OT,0,REDWHI,5001.0,STOLEN,1195,"{'type': 'Point', 'coordinates': (-79.45239005, 43.71432793)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1209,2562,GO-20181082437,THEFT UNDER - BICYCLE,2018-06-14,2018,June,Thursday,14,165,19,2018-06-14,2018,June,Thursday,14,165,20,D32,Toronto,31,Yorkdale-Glen Park (31),"Gas Station (Self, Full, Attached Convenience)",Commercial,IRON HORSE,,MT,24,BLKGRY,500.0,STOLEN,1196,"{'type': 'Point', 'coordinates': (-79.4547113, 43.71408738)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1210,2864,GO-20181310994,B&E,2018-07-18,2018,July,Wednesday,18,199,4,2018-07-18,2018,July,Wednesday,18,199,13,D13,Toronto,31,Yorkdale-Glen Park (31),"Single Home, House (Attach Garage, Cottage, Mobile)",House,WHEELER,,MT,4,SIL,50.0,STOLEN,1197,"{'type': 'Point', 'coordinates': (-79.44935471, 43.70690374000001)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1211,2962,GO-20181365622,THEFT OF EBIKE UNDER $5000,2018-07-24,2018,July,Tuesday,24,205,17,2018-07-26,2018,July,Thursday,26,207,12,D32,Toronto,31,Yorkdale-Glen Park (31),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMO,,OT,5,BLK,900.0,STOLEN,1198,"{'type': 'Point', 'coordinates': (-79.4547113, 43.71408738)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1212,3123,GO-20189025642,THEFT UNDER - BICYCLE,2018-07-06,2018,July,Friday,6,187,11,2018-08-09,2018,August,Thursday,9,221,9,D13,Toronto,31,Yorkdale-Glen Park (31),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,BA,,RG,10,BRZ,200.0,STOLEN,1199,"{'type': 'Point', 'coordinates': (-79.46083492, 43.7127547)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1213,3140,GO-20181446834,THEFT UNDER - BICYCLE,2018-08-06,2018,August,Monday,6,218,7,2018-08-07,2018,August,Tuesday,7,219,9,D32,Toronto,31,Yorkdale-Glen Park (31),Ttc Subway Station,Transit,UNKNOWN MAKE,,MT,18,RED,250.0,STOLEN,1200,"{'type': 'Point', 'coordinates': (-79.44861224, 43.72328355)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1214,3315,GO-20189027866,THEFT UNDER - BICYCLE,2018-08-23,2018,August,Thursday,23,235,22,2018-08-25,2018,August,Saturday,25,237,0,D32,Toronto,31,Yorkdale-Glen Park (31),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,7.2 FX,RG,6,BLK,0.0,STOLEN,1201,"{'type': 'Point', 'coordinates': (-79.46261751, 43.71695029)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1215,3499,GO-20189030883,THEFT UNDER,2018-09-17,2018,September,Monday,17,260,19,2018-09-18,2018,September,Tuesday,18,261,0,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,XFR3,OT,27,BLK,800.0,STOLEN,1202,"{'type': 'Point', 'coordinates': (-79.44893304, 43.71749643)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1216,4760,GO-20191309807,B&E,2019-06-26,2019,June,Wednesday,26,177,12,2019-07-13,2019,July,Saturday,13,194,10,D13,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,CUSTOM,MT,14,BLU,,STOLEN,1203,"{'type': 'Point', 'coordinates': (-79.45288351, 43.705773310000005)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1217,5269,GO-20191707951,THEFT UNDER - BICYCLE,2019-09-03,2019,September,Tuesday,3,246,14,2019-09-08,2019,September,Sunday,8,251,18,D13,Toronto,31,Yorkdale-Glen Park (31),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NORCO,VRF5,TO,12,BLK,600.0,STOLEN,1204,"{'type': 'Point', 'coordinates': (-79.45398417, 43.71081612)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1218,5270,GO-20199029167,THEFT UNDER,2019-09-08,2019,September,Sunday,8,251,14,2019-09-08,2019,September,Sunday,8,251,15,D32,Toronto,31,Yorkdale-Glen Park (31),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,VENTURA,RG,14,BLU,200.0,STOLEN,1205,"{'type': 'Point', 'coordinates': (-79.44893304, 43.71749643)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1219,12351,GO-20161636623,THEFT OVER,2016-09-14,2016,September,Wednesday,14,258,2,2016-09-15,2016,September,Thursday,15,259,20,D12,Toronto,23,Pelmo Park-Humberlea (23),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,OT,0,ONG,200.0,STOLEN,1206,"{'type': 'Point', 'coordinates': (-79.52843945, 43.71053963)}",Pelmo Park-Humberlea,23,No Designation,10722,8710,0.231,3860,3710,2547,4.21,5300,3460,330,1375,85,10,40,0.0018867924528301887
-1220,24476,GO-20151354249,B&E,2015-08-02,2015,August,Sunday,2,214,10,2015-08-08,2015,August,Saturday,8,220,10,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MIELE,,MT,21,BLK,400.0,STOLEN,1207,"{'type': 'Point', 'coordinates': (-79.49119535, 43.61905507)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1221,14839,GO-20189026842,THEFT UNDER - BICYCLE,2018-08-16,2018,August,Thursday,16,228,20,2018-08-17,2018,August,Friday,17,229,20,D31,Toronto,26,Downsview-Roding-CFB (26),"Apartment (Rooming House, Condo)",Apartment,OT,,BM,1,RED,250.0,STOLEN,1208,"{'type': 'Point', 'coordinates': (-79.51410965, 43.72063504)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1222,5537,GO-20199034153,THEFT UNDER - BICYCLE,2019-10-16,2019,October,Wednesday,16,289,17,2019-10-16,2019,October,Wednesday,16,289,20,D32,Toronto,31,Yorkdale-Glen Park (31),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,RG,8,WHI,200.0,STOLEN,1209,"{'type': 'Point', 'coordinates': (-79.44893304, 43.71749643)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1223,24442,GO-20143562933,THEFT UNDER,2014-12-05,2014,December,Friday,5,339,15,2014-12-28,2014,December,Sunday,28,362,16,D22,Toronto,19,Long Branch (19),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MONGOOSE,,BM,0,WHIRED,100.0,STOLEN,1210,"{'type': 'Point', 'coordinates': (-79.52495649000001, 43.59641873)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1224,5870,GO-20209003913,THEFT UNDER - BICYCLE,2019-10-15,2019,October,Tuesday,15,288,17,2020-02-01,2020,February,Saturday,1,32,17,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,OT,18 ROUBAIX ELIT,TO,11,BLK,3800.0,STOLEN,1212,"{'type': 'Point', 'coordinates': (-79.45239005, 43.71432793)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1225,24438,GO-20149007939,THEFT UNDER,2014-10-26,2014,October,Sunday,26,299,16,2014-11-01,2014,November,Saturday,1,305,12,D22,Toronto,18,New Toronto (18),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,ROAM-O,TO,30,BLK,1100.0,STOLEN,1213,"{'type': 'Point', 'coordinates': (-79.50765915, 43.59767799)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1226,14850,GO-20189027556,THEFT UNDER - BICYCLE,2018-08-21,2018,August,Tuesday,21,233,22,2018-08-23,2018,August,Thursday,23,235,10,D32,Toronto,26,Downsview-Roding-CFB (26),"Apartment (Rooming House, Condo)",Apartment,UK,CARTIER,RG,9,BLK,960.0,STOLEN,1214,"{'type': 'Point', 'coordinates': (-79.46547179, 43.73093253)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1227,6034,GO-20209010665,THEFT UNDER,2020-04-07,2020,April,Tuesday,7,98,21,2020-04-07,2020,April,Tuesday,7,98,22,D32,Toronto,31,Yorkdale-Glen Park (31),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,SC 700C,RG,12,DBL,300.0,STOLEN,1215,"{'type': 'Point', 'coordinates': (-79.45130961, 43.72364999)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1228,24443,GO-20143562933,THEFT UNDER,2014-12-05,2014,December,Friday,5,339,15,2014-12-28,2014,December,Sunday,28,362,16,D22,Toronto,19,Long Branch (19),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,18,WHI,120.0,STOLEN,1216,"{'type': 'Point', 'coordinates': (-79.52495649000001, 43.59641873)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1229,10160,GO-20159005244,THEFT UNDER,2015-06-02,2015,June,Tuesday,2,153,16,2015-08-01,2015,August,Saturday,1,213,16,D31,Toronto,27,York University Heights (27),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,7.2,RG,12,,800.0,STOLEN,1217,"{'type': 'Point', 'coordinates': (-79.50396304, 43.76777105)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1230,24462,GO-20151098902,THEFT UNDER,2015-06-29,2015,June,Monday,29,180,22,2015-06-30,2015,June,Tuesday,30,181,8,D22,Toronto,18,New Toronto (18),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,ECHO RIDER,EL,3,BLK,1300.0,STOLEN,1218,"{'type': 'Point', 'coordinates': (-79.5018439, 43.60151447)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1231,10174,GO-20159005331,THEFT UNDER,2015-08-03,2015,August,Monday,3,215,23,2015-08-05,2015,August,Wednesday,5,217,16,D31,Toronto,27,York University Heights (27),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,RUSH HOUR,RC,1,BLK,855.0,STOLEN,1219,"{'type': 'Point', 'coordinates': (-79.49712777, 43.76569559)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1232,14913,GO-20149003384,THEFT UNDER,2014-05-12,2014,May,Monday,12,132,23,2014-05-15,2014,May,Thursday,15,135,20,D32,Toronto,26,Downsview-Roding-CFB (26),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,STATIC,MT,21,BLK,,STOLEN,1220,"{'type': 'Point', 'coordinates': (-79.47113918, 43.7278927)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1233,24564,GO-20179004726,THEFT UNDER,2017-04-13,2017,April,Thursday,13,103,7,2017-04-15,2017,April,Saturday,15,105,15,D22,Toronto,19,Long Branch (19),Go Station,Transit,GI,,MT,24,BLK,700.0,STOLEN,1221,"{'type': 'Point', 'coordinates': (-79.54491322, 43.59051582)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1234,165,GO-20179003554,THEFT UNDER,2017-03-19,2017,March,Sunday,19,78,12,2017-03-21,2017,March,Tuesday,21,80,14,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,,ECHO 2.6,MT,18,ONG,225.0,STOLEN,1222,"{'type': 'Point', 'coordinates': (-79.52718936, 43.59299457)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1235,10205,GO-20151365492,THEFT UNDER,2015-07-03,2015,July,Friday,3,184,7,2015-08-09,2015,August,Sunday,9,221,18,D31,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,RG,1,GRY,88.0,STOLEN,1223,"{'type': 'Point', 'coordinates': (-79.50047966, 43.76224141)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1236,6310,GO-20209014708,THEFT UNDER - BICYCLE,2020-06-07,2020,June,Sunday,7,159,11,2020-06-07,2020,June,Sunday,7,159,12,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,PHOENIX,TO,21,GRY,850.0,STOLEN,1224,"{'type': 'Point', 'coordinates': (-79.45616651, 43.72072607)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1237,10327,GO-20159006199,THEFT UNDER,2015-08-25,2015,August,Tuesday,25,237,2,2015-08-26,2015,August,Wednesday,26,238,1,D31,Toronto,27,York University Heights (27),Universities / Colleges,Educational,CC,,MT,30,GRN,150.0,STOLEN,1225,"{'type': 'Point', 'coordinates': (-79.50214172, 43.77771971)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1238,14935,GO-20149007236,THEFT UNDER,2014-09-13,2014,September,Saturday,13,256,14,2014-09-25,2014,September,Thursday,25,268,21,D31,Toronto,26,Downsview-Roding-CFB (26),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,18,BLK,500.0,STOLEN,1226,"{'type': 'Point', 'coordinates': (-79.48248767000001, 43.72856336)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1239,24565,GO-20179004807,THEFT UNDER - BICYCLE,2017-04-16,2017,April,Sunday,16,106,16,2017-04-17,2017,April,Monday,17,107,16,D22,Toronto,19,Long Branch (19),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CC,,BM,7,OTH,500.0,STOLEN,1227,"{'type': 'Point', 'coordinates': (-79.54211022, 43.58863236)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1240,10469,GO-20151596267,THEFT UNDER,2015-09-11,2015,September,Friday,11,254,13,2015-09-15,2015,September,Tuesday,15,258,16,D32,Toronto,27,York University Heights (27),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SCHWINN,,MT,15,BLU,300.0,STOLEN,1230,"{'type': 'Point', 'coordinates': (-79.47010818, 43.78384033)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1241,14997,GO-2016831157,THEFT UNDER - BICYCLE,2016-05-12,2016,May,Thursday,12,133,8,2016-05-14,2016,May,Saturday,14,135,18,D32,Toronto,26,Downsview-Roding-CFB (26),Ttc Subway Station,Transit,UNKNOWN MAKE,,RG,1,BLK,400.0,STOLEN,1231,"{'type': 'Point', 'coordinates': (-79.46273009, 43.75037793)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1242,24576,GO-20179008540,B&E W'INTENT,2017-05-09,2017,May,Tuesday,9,129,2,2017-06-20,2017,June,Tuesday,20,171,16,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,NO,INDIE 4,RG,18,GRY,700.0,STOLEN,1232,"{'type': 'Point', 'coordinates': (-79.54560481, 43.58975212000001)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1243,6395,GO-20209015432,THEFT UNDER - BICYCLE,2020-06-14,2020,June,Sunday,14,166,19,2020-06-15,2020,June,Monday,15,167,18,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,OT,XENITH COMP,RC,16,GRY,2000.0,STOLEN,1233,"{'type': 'Point', 'coordinates': (-79.45239005, 43.71432793)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1244,728,GO-20179009010,THEFT UNDER - BICYCLE,2017-06-23,2017,June,Friday,23,174,14,2017-06-27,2017,June,Tuesday,27,178,14,D22,Toronto,19,Long Branch (19),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MA,MARIN,OT,21,BLK,2800.0,STOLEN,1234,"{'type': 'Point', 'coordinates': (-79.53236154, 43.594736530000006)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1245,10568,GO-20159007957,THEFT UNDER,2015-09-28,2015,September,Monday,28,271,18,2015-09-30,2015,September,Wednesday,30,273,11,D32,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,OT,JAMIS TRAIL X2,MT,8,PLE,350.0,STOLEN,1235,"{'type': 'Point', 'coordinates': (-79.4633489, 43.75025176)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1246,10569,GO-20159007957,THEFT UNDER,2015-09-28,2015,September,Monday,28,271,18,2015-09-30,2015,September,Wednesday,30,273,11,D32,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,GT,GT TRANSEO 4.0,RG,8,WHI,600.0,STOLEN,1236,"{'type': 'Point', 'coordinates': (-79.4633489, 43.75025176)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1247,10570,GO-20159007957,THEFT UNDER,2015-09-28,2015,September,Monday,28,271,18,2015-09-30,2015,September,Wednesday,30,273,11,D32,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,OT,JAMIS TRAIL X2,MT,8,PLE,350.0,STOLEN,1237,"{'type': 'Point', 'coordinates': (-79.4633489, 43.75025176)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1248,10571,GO-20159007957,THEFT UNDER,2015-09-28,2015,September,Monday,28,271,18,2015-09-30,2015,September,Wednesday,30,273,11,D32,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,GT,GT TRANSEO 4.0,RG,8,WHI,600.0,STOLEN,1238,"{'type': 'Point', 'coordinates': (-79.4633489, 43.75025176)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1249,10654,GO-20151800364,THEFT UNDER,2015-10-18,2015,October,Sunday,18,291,21,2015-10-19,2015,October,Monday,19,292,13,D31,Toronto,27,York University Heights (27),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,QUANTUM,TRIBAL,MT,24,SILBLK,,STOLEN,1239,"{'type': 'Point', 'coordinates': (-79.49665541, 43.76724994)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1250,10656,GO-20151809129,THEFT UNDER,2015-10-20,2015,October,Tuesday,20,293,22,2015-10-20,2015,October,Tuesday,20,293,22,D31,Toronto,27,York University Heights (27),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NEXT,,RG,6,BLKGLD,130.0,STOLEN,1240,"{'type': 'Point', 'coordinates': (-79.49882013, 43.77674565)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1251,10747,GO-20159009619,THEFT UNDER,2015-10-28,2015,October,Wednesday,28,301,20,2015-11-10,2015,November,Tuesday,10,314,23,D31,Toronto,27,York University Heights (27),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,TO,40,BLK,825.0,STOLEN,1241,"{'type': 'Point', 'coordinates': (-79.49848605, 43.76896311)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1252,10834,GO-20159010482,THEFT UNDER,2015-12-02,2015,December,Wednesday,2,336,17,2015-12-04,2015,December,Friday,4,338,12,D31,Toronto,27,York University Heights (27),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,30,DGR,350.0,STOLEN,1242,"{'type': 'Point', 'coordinates': (-79.49800406, 43.76775648)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1253,10991,GO-2016267959,THEFT UNDER - BICYCLE,2016-02-11,2016,February,Thursday,11,42,22,2016-02-14,2016,February,Sunday,14,45,11,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,FAT BOY,,RG,1,GRYRED,260.0,STOLEN,1243,"{'type': 'Point', 'coordinates': (-79.50115588, 43.76706746)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1254,11061,GO-20169002403,THEFT UNDER - BICYCLE,2016-03-11,2016,March,Friday,11,71,16,2016-03-16,2016,March,Wednesday,16,76,9,D32,Toronto,27,York University Heights (27),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GT,,MT,21,,500.0,STOLEN,1244,"{'type': 'Point', 'coordinates': (-79.4811406, 43.77536374)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1255,11089,GO-2016551211,THEFT UNDER,2016-03-29,2016,March,Tuesday,29,89,12,2016-04-01,2016,April,Friday,1,92,10,D31,Toronto,27,York University Heights (27),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OPUS,URBANO,OT,18,RED,120.0,STOLEN,1245,"{'type': 'Point', 'coordinates': (-79.49800406, 43.76775648)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1256,11132,GO-20169003358,THEFT UNDER - BICYCLE,2016-04-08,2016,April,Friday,8,99,16,2016-04-13,2016,April,Wednesday,13,104,12,D31,Toronto,27,York University Heights (27),Go Station,Transit,UK,,MT,21,RED,150.0,STOLEN,1246,"{'type': 'Point', 'coordinates': (-79.48836824, 43.77827641)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1257,11273,GO-20169004250,THEFT UNDER - BICYCLE,2016-05-01,2016,May,Sunday,1,122,20,2016-05-07,2016,May,Saturday,7,128,11,D32,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,SC,,MT,21,ONG,649.0,STOLEN,1247,"{'type': 'Point', 'coordinates': (-79.4633489, 43.75025176)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1258,11316,GO-20169004575,THEFT UNDER - BICYCLE,2016-05-10,2016,May,Tuesday,10,131,12,2016-05-16,2016,May,Monday,16,137,12,D31,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,TRAIL X COMP,MT,21,RED,700.0,STOLEN,1248,"{'type': 'Point', 'coordinates': (-79.49917246, 43.76526221)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1259,11573,GO-20169005999,THEFT UNDER,2016-06-17,2016,June,Friday,17,169,22,2016-06-18,2016,June,Saturday,18,170,21,D31,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,TO,21,,550.0,STOLEN,1249,"{'type': 'Point', 'coordinates': (-79.5028438, 43.76801296)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1260,12043,GO-20161402955,THEFT UNDER - BICYCLE,2016-08-03,2016,August,Wednesday,3,216,12,2016-08-09,2016,August,Tuesday,9,222,14,D31,Toronto,27,York University Heights (27),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EQUATOR,,MT,7,,400.0,STOLEN,1250,"{'type': 'Point', 'coordinates': (-79.5028438, 43.76801296)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1261,12106,GO-20169008821,THEFT UNDER - BICYCLE,2016-08-15,2016,August,Monday,15,228,5,2016-08-15,2016,August,Monday,15,228,20,D31,Toronto,27,York University Heights (27),"Group Homes (Non-Profit, Halfway House, Social Agency)",Other,OT,,OT,21,BLU,399.0,STOLEN,1251,"{'type': 'Point', 'coordinates': (-79.49665541, 43.76724994)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1262,12145,GO-20169009080,THEFT UNDER,2016-08-19,2016,August,Friday,19,232,9,2016-08-19,2016,August,Friday,19,232,18,D31,Toronto,27,York University Heights (27),Universities / Colleges,Educational,UK,ALLEZ,OT,10,BLU,400.0,STOLEN,1252,"{'type': 'Point', 'coordinates': (-79.50240222, 43.77447286000001)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1263,12371,GO-20169010608,THEFT UNDER - BICYCLE,2016-09-17,2016,September,Saturday,17,261,20,2016-09-17,2016,September,Saturday,17,261,21,D31,Toronto,27,York University Heights (27),Universities / Colleges,Educational,KO,MENS COMFORT BI,MT,24,BLK,1400.0,STOLEN,1253,"{'type': 'Point', 'coordinates': (-79.50080714, 43.77034083)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1264,13528,GO-20199031890,THEFT UNDER - BICYCLE,2019-09-28,2019,September,Saturday,28,271,6,2019-09-28,2019,September,Saturday,28,271,14,D32,Toronto,27,York University Heights (27),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RG,21,TAN,190.0,STOLEN,1255,"{'type': 'Point', 'coordinates': (-79.48101667, 43.78470041)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1265,13586,GO-20209024387,THEFT UNDER,2020-09-24,2020,September,Thursday,24,268,16,2020-09-24,2020,September,Thursday,24,268,18,D32,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GT,AGGRESSOR,MT,10,LGR,550.0,STOLEN,1256,"{'type': 'Point', 'coordinates': (-79.47471632, 43.78618439)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1266,14277,GO-20209016865,THEFT UNDER,2020-06-05,2020,June,Friday,5,157,11,2020-07-05,2020,July,Sunday,5,187,12,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,RA,2012-2014 ROPER,RG,21,BLU,700.0,STOLEN,1257,"{'type': 'Point', 'coordinates': (-79.50147952, 43.77191841)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1267,14282,GO-20209017283,THEFT UNDER - BICYCLE,2020-07-02,2020,July,Thursday,2,184,2,2020-07-10,2020,July,Friday,10,192,19,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,SU,,MT,24,BLK,150.0,STOLEN,1258,"{'type': 'Point', 'coordinates': (-79.50396304, 43.76777105)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1268,14334,GO-20202059580,THEFT UNDER - BICYCLE,2020-10-22,2020,October,Thursday,22,296,15,2020-10-30,2020,October,Friday,30,304,13,D31,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MONTANA,220,MT,0,BLK,1300.0,STOLEN,1259,"{'type': 'Point', 'coordinates': (-79.50047966, 43.76224141)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1269,14453,GO-20189028407,THEFT UNDER,2018-07-09,2018,July,Monday,9,190,20,2018-08-29,2018,August,Wednesday,29,241,12,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,OT,EAGLE DELUXE,EL,32,BLK,2824.0,STOLEN,1260,"{'type': 'Point', 'coordinates': (-79.50082146, 43.76336098)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1270,14501,GO-20199010362,THEFT UNDER,2019-04-02,2019,April,Tuesday,2,92,8,2019-04-02,2019,April,Tuesday,2,92,10,D31,Toronto,27,York University Heights (27),Schools During Un-Supervised Activity,Educational,UK,BMX,BM,1,BLK,200.0,STOLEN,1261,"{'type': 'Point', 'coordinates': (-79.49961757, 43.75974862)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1271,14516,GO-20199017120,THEFT UNDER,2019-05-30,2019,May,Thursday,30,150,20,2019-06-01,2019,June,Saturday,1,152,15,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,OT,ROGUE,EL,32,BLU,2598.0,STOLEN,1262,"{'type': 'Point', 'coordinates': (-79.50082146, 43.76336098)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1272,14570,GO-20191627027,THEFT UNDER - BICYCLE,2019-08-24,2019,August,Saturday,24,236,8,2019-08-26,2019,August,Monday,26,238,10,D31,Toronto,27,York University Heights (27),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,AGRESSOR,MT,21,ONG,100.0,STOLEN,1263,"{'type': 'Point', 'coordinates': (-79.49869697, 43.76679708)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1273,14594,GO-20199034919,THEFT UNDER,2019-10-22,2019,October,Tuesday,22,295,23,2019-10-23,2019,October,Wednesday,23,296,12,D31,Toronto,27,York University Heights (27),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RM,,MT,21,GRY,800.0,STOLEN,1264,"{'type': 'Point', 'coordinates': (-79.49425566, 43.76634827)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1274,14644,GO-20209014061,THEFT UNDER,2020-05-27,2020,May,Wednesday,27,148,14,2020-05-27,2020,May,Wednesday,27,148,17,D31,Toronto,27,York University Heights (27),Ttc Subway Station,Transit,GI,ESCAPE 2 CITY,RG,25,GRY,790.0,STOLEN,1265,"{'type': 'Point', 'coordinates': (-79.49101221000001, 43.76350255)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1275,14649,GO-20209014337,THEFT UNDER - BICYCLE,2020-05-31,2020,May,Sunday,31,152,12,2020-06-01,2020,June,Monday,1,153,13,D31,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,,MT,18,BLK,109.0,STOLEN,1266,"{'type': 'Point', 'coordinates': (-79.49917246, 43.76526221)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1276,14654,GO-2017978440,THEFT FROM MOTOR VEHICLE UNDER,2017-05-25,2017,May,Thursday,25,145,11,2017-06-02,2017,June,Friday,2,153,17,D32,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,NOVARA,MT,18,BLK,450.0,STOLEN,1267,"{'type': 'Point', 'coordinates': (-79.4633489, 43.75025176)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1277,14655,GO-20179007739,THEFT UNDER - BICYCLE,2017-06-08,2017,June,Thursday,8,159,9,2017-06-08,2017,June,Thursday,8,159,19,D32,Toronto,27,York University Heights (27),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,VENTURA SPORT,RC,1,SIL,620.0,STOLEN,1268,"{'type': 'Point', 'coordinates': (-79.47004827000002, 43.78728363)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1278,14778,GO-20189014609,THEFT UNDER,2018-05-11,2018,May,Friday,11,131,19,2018-05-11,2018,May,Friday,11,131,22,D31,Toronto,27,York University Heights (27),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,,MT,12,MRN,500.0,STOLEN,1269,"{'type': 'Point', 'coordinates': (-79.49900572, 43.76753752)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1279,14790,GO-20189016737,THEFT UNDER - BICYCLE,2018-05-23,2018,May,Wednesday,23,143,23,2018-05-29,2018,May,Tuesday,29,149,23,D31,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,HARDROCK DISK 2,MT,21,BLK,600.0,STOLEN,1270,"{'type': 'Point', 'coordinates': (-79.48823726, 43.76408749)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1280,14830,GO-20189024514,THEFT UNDER - BICYCLE,2018-07-30,2018,July,Monday,30,211,15,2018-07-30,2018,July,Monday,30,211,21,D31,Toronto,27,York University Heights (27),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,,MT,21,PLE,400.0,STOLEN,1271,"{'type': 'Point', 'coordinates': (-79.49623563, 43.7593841)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1281,14846,GO-20189027454,THEFT UNDER - BICYCLE,2016-10-12,2016,October,Wednesday,12,286,20,2018-08-22,2018,August,Wednesday,22,234,14,D31,Toronto,27,York University Heights (27),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,20,YEL,0.0,STOLEN,1272,"{'type': 'Point', 'coordinates': (-79.50852047, 43.77429016)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1282,14944,GO-2015760172,THEFT FROM MOTOR VEHICLE UNDER,2015-05-06,2015,May,Wednesday,6,126,23,2015-05-07,2015,May,Thursday,7,127,14,D31,Toronto,27,York University Heights (27),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,RC,21,ONGYEL,2500.0,STOLEN,1273,"{'type': 'Point', 'coordinates': (-79.50263094, 43.7653802)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1283,14945,GO-2015760172,THEFT FROM MOTOR VEHICLE UNDER,2015-05-06,2015,May,Wednesday,6,126,23,2015-05-07,2015,May,Thursday,7,127,14,D31,Toronto,27,York University Heights (27),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,1,BLU,300.0,STOLEN,1274,"{'type': 'Point', 'coordinates': (-79.50263094, 43.7653802)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1284,14952,GO-2015916335,THEFT UNDER,2015-05-31,2015,May,Sunday,31,151,0,2015-06-01,2015,June,Monday,1,152,23,D31,Toronto,27,York University Heights (27),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,,OT,15,BLKRED,2200.0,STOLEN,1275,"{'type': 'Point', 'coordinates': (-79.49247616000001, 43.74590922)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1285,14955,GO-20159003589,THEFT UNDER,2015-06-13,2015,June,Saturday,13,164,23,2015-06-14,2015,June,Sunday,14,165,9,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,SC,,TO,14,DBL,200.0,STOLEN,1276,"{'type': 'Point', 'coordinates': (-79.49105306, 43.74684334)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1286,14956,GO-20159003589,THEFT UNDER,2015-06-13,2015,June,Saturday,13,164,23,2015-06-14,2015,June,Sunday,14,165,9,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,HF,,MT,12,BLU,200.0,STOLEN,1277,"{'type': 'Point', 'coordinates': (-79.49105306, 43.74684334)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1287,14978,GO-20151677041,THEFT UNDER,2015-09-25,2015,September,Friday,25,268,22,2015-09-28,2015,September,Monday,28,271,15,D31,Toronto,27,York University Heights (27),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,,MT,24,BLKGRN,650.0,STOLEN,1278,"{'type': 'Point', 'coordinates': (-79.4997085, 43.76657268)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1288,15045,GO-20179005742,THEFT UNDER - BICYCLE,2017-05-04,2017,May,Thursday,4,124,18,2017-05-04,2017,May,Thursday,4,124,22,D31,Toronto,27,York University Heights (27),Schools During Supervised Activity,Educational,SU,,RG,18,BLK,110.0,STOLEN,1279,"{'type': 'Point', 'coordinates': (-79.49905341, 43.7571368)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1289,15048,GO-2017832935,THEFT UNDER - BICYCLE,2017-05-11,2017,May,Thursday,11,131,1,2017-05-11,2017,May,Thursday,11,131,21,D31,Toronto,27,York University Heights (27),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,OT,1,BRN,,STOLEN,1280,"{'type': 'Point', 'coordinates': (-79.50372563, 43.76525072)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1290,17342,GO-20209015827,THEFT UNDER,2020-06-19,2020,June,Friday,19,171,2,2020-06-21,2020,June,Sunday,21,173,1,D31,Toronto,27,York University Heights (27),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,ATX ELITE 2018,MT,27,BLU,1200.0,STOLEN,1281,"{'type': 'Point', 'coordinates': (-79.48811342, 43.77316747)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1291,17349,GO-20209016752,THEFT UNDER,2020-07-02,2020,July,Thursday,2,184,4,2020-07-03,2020,July,Friday,3,185,14,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,RA,MISCEO TRAIL 2.,RG,21,BRN,800.0,STOLEN,1282,"{'type': 'Point', 'coordinates': (-79.49917246, 43.76526221)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1292,17363,GO-20209018840,THEFT UNDER,2020-07-28,2020,July,Tuesday,28,210,16,2020-07-28,2020,July,Tuesday,28,210,19,D31,Toronto,27,York University Heights (27),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,TAKARA SUGIYAMA,RG,1,GRY,350.0,STOLEN,1283,"{'type': 'Point', 'coordinates': (-79.49767583, 43.76702359)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1293,17377,GO-20209020769,THEFT UNDER,2020-08-19,2020,August,Wednesday,19,232,20,2020-08-20,2020,August,Thursday,20,233,15,D31,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,RG,20,LBL,0.0,STOLEN,1284,"{'type': 'Point', 'coordinates': (-79.49826972000001, 43.77089099)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1294,17386,GO-20209022138,THEFT UNDER - BICYCLE,2020-09-01,2020,September,Tuesday,1,245,0,2020-09-02,2020,September,Wednesday,2,246,21,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,GT,AGGRESSOR COMP,MT,21,BLK,407.0,STOLEN,1285,"{'type': 'Point', 'coordinates': (-79.50147952, 43.77191841)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1295,17403,GO-20209026964,THEFT UNDER,2020-10-15,2020,October,Thursday,15,289,9,2020-10-19,2020,October,Monday,19,293,15,D31,Toronto,27,York University Heights (27),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,,RG,7,BLK,550.0,STOLEN,1286,"{'type': 'Point', 'coordinates': (-79.50372563, 43.76525072)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1296,17673,GO-20199039098,THEFT UNDER,2019-11-27,2019,November,Wednesday,27,331,19,2019-11-27,2019,November,Wednesday,27,331,22,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,16,LBL,600.0,STOLEN,1288,"{'type': 'Point', 'coordinates': (-79.50047966, 43.76224141)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1297,17702,GO-2020579423,THEFT UNDER - BICYCLE,2020-03-17,2020,March,Tuesday,17,77,20,2020-03-21,2020,March,Saturday,21,81,17,D31,Toronto,27,York University Heights (27),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,SC1800,MT,18,BLKRED,125.0,STOLEN,1289,"{'type': 'Point', 'coordinates': (-79.4969591, 43.76798489)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1298,17724,GO-20179014151,THEFT UNDER,2017-09-06,2017,September,Wednesday,6,249,9,2017-09-06,2017,September,Wednesday,6,249,19,D31,Toronto,27,York University Heights (27),Universities / Colleges,Educational,OT,DRIFT,TO,1,LGR,600.0,STOLEN,1290,"{'type': 'Point', 'coordinates': (-79.50240222, 43.77447286000001)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1299,17738,GO-20171706231,THEFT UNDER - BICYCLE,2017-09-20,2017,September,Wednesday,20,263,8,2017-09-23,2017,September,Saturday,23,266,19,D31,Toronto,27,York University Heights (27),Schools During Un-Supervised Activity,Educational,AQUILA,,RC,1,YEL,500.0,STOLEN,1291,"{'type': 'Point', 'coordinates': (-79.50240222, 43.77447286000001)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1300,17766,GO-20179019683,THEFT UNDER - BICYCLE,2017-11-15,2017,November,Wednesday,15,319,10,2017-11-15,2017,November,Wednesday,15,319,11,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,12,WHI,750.0,STOLEN,1292,"{'type': 'Point', 'coordinates': (-79.49917246, 43.76526221)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1301,17822,GO-20189017224,THEFT UNDER,2018-06-01,2018,June,Friday,1,152,18,2018-06-03,2018,June,Sunday,3,154,19,D31,Toronto,27,York University Heights (27),Ttc Subway Station,Transit,OT,SINGLE SPEED 70,RC,1,LGR,0.0,STOLEN,1293,"{'type': 'Point', 'coordinates': (-79.49101221000001, 43.76350255)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1302,17826,GO-20189018279,THEFT UNDER - BICYCLE,2018-06-10,2018,June,Sunday,10,161,20,2018-06-11,2018,June,Monday,11,162,15,D31,Toronto,27,York University Heights (27),Universities / Colleges,Educational,CC,,MT,21,BLK,250.0,STOLEN,1294,"{'type': 'Point', 'coordinates': (-79.49994532, 43.77052769)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1303,17847,GO-20181163082,THEFT OF EBIKE UNDER $5000,2018-06-26,2018,June,Tuesday,26,177,1,2018-06-26,2018,June,Tuesday,26,177,16,D31,Toronto,27,York University Heights (27),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,CITYGO2010,EL,32,YELBLK,500.0,STOLEN,1295,"{'type': 'Point', 'coordinates': (-79.50082146, 43.76336098)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1304,17899,GO-20189029368,THEFT UNDER - BICYCLE,2018-09-05,2018,September,Wednesday,5,248,13,2018-09-06,2018,September,Thursday,6,249,16,D31,Toronto,27,York University Heights (27),Ttc Subway Station,Transit,CC,APEX,MT,24,GRY,400.0,STOLEN,1296,"{'type': 'Point', 'coordinates': (-79.50240222, 43.77447286000001)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1305,17900,GO-20189029368,THEFT UNDER - BICYCLE,2018-09-05,2018,September,Wednesday,5,248,13,2018-09-06,2018,September,Thursday,6,249,16,D31,Toronto,27,York University Heights (27),Ttc Subway Station,Transit,CC,APEX,MT,24,GRY,350.0,STOLEN,1297,"{'type': 'Point', 'coordinates': (-79.50240222, 43.77447286000001)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1306,17938,GO-20142619093,THEFT UNDER,2014-07-31,2014,July,Thursday,31,212,10,2014-08-02,2014,August,Saturday,2,214,0,D31,Toronto,27,York University Heights (27),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SUPERCYCLE,,MT,6,PNKPLE,70.0,STOLEN,1298,"{'type': 'Point', 'coordinates': (-79.4997085, 43.76657268)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1307,17939,GO-20142619093,THEFT UNDER,2014-07-31,2014,July,Thursday,31,212,10,2014-08-02,2014,August,Saturday,2,214,0,D31,Toronto,27,York University Heights (27),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,,MT,10,BLU,80.0,STOLEN,1299,"{'type': 'Point', 'coordinates': (-79.4997085, 43.76657268)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1308,17940,GO-20142653511,THEFT UNDER,2014-08-06,2014,August,Wednesday,6,218,14,2014-08-07,2014,August,Thursday,7,219,12,D32,Toronto,27,York University Heights (27),"Construction Site (Warehouse, Trailer, Shed)",Commercial,GT,TIMBERLINE,OT,10,,,STOLEN,1300,"{'type': 'Point', 'coordinates': (-79.46717831, 43.75192515)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1309,17969,GO-20159003715,THEFT UNDER,2015-06-16,2015,June,Tuesday,16,167,20,2015-06-18,2015,June,Thursday,18,169,6,D31,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,EX PLUS,BM,20,RED,530.0,STOLEN,1301,"{'type': 'Point', 'coordinates': (-79.48945308, 43.75744848)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1310,18034,GO-20161355068,THEFT UNDER - BICYCLE,2016-07-24,2016,July,Sunday,24,206,12,2016-07-28,2016,July,Thursday,28,210,11,D31,Toronto,27,York University Heights (27),"Construction Site (Warehouse, Trailer, Shed)",Commercial,HUFFY,FALLOUT,MT,21,BLK,,STOLEN,1302,"{'type': 'Point', 'coordinates': (-79.50240222, 43.77447286000001)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1311,18040,GO-20169008400,THEFT UNDER - BICYCLE,2016-08-08,2016,August,Monday,8,221,17,2016-08-08,2016,August,Monday,8,221,19,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,HF,,MT,8,RED,0.0,STOLEN,1303,"{'type': 'Point', 'coordinates': (-79.49105306, 43.74684334)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1312,18043,GO-20169008614,THEFT UNDER,2016-08-10,2016,August,Wednesday,10,223,7,2016-08-12,2016,August,Friday,12,225,1,D31,Toronto,27,York University Heights (27),Universities / Colleges,Educational,RA,,MT,21,MRN,0.0,STOLEN,1304,"{'type': 'Point', 'coordinates': (-79.50060656, 43.77632965)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1313,18048,GO-20169009987,THEFT UNDER - BICYCLE,2016-08-01,2016,August,Monday,1,214,15,2016-09-05,2016,September,Monday,5,249,16,D31,Toronto,27,York University Heights (27),Universities / Colleges,Educational,SP,PATHFINDER,TO,10,BLU,100.0,STOLEN,1305,"{'type': 'Point', 'coordinates': (-79.50240222, 43.77447286000001)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1314,18073,GO-2017994010,THEFT UNDER - BICYCLE,2017-06-05,2017,June,Monday,5,156,1,2017-06-05,2017,June,Monday,5,156,6,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,GIANT,ESCAPE,RG,9,GRY,700.0,STOLEN,1306,"{'type': 'Point', 'coordinates': (-79.50372563, 43.76525072)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1315,20084,GO-20209010236,THEFT UNDER - BICYCLE,2020-03-01,2020,March,Sunday,1,61,17,2020-03-31,2020,March,Tuesday,31,91,17,D32,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,NO,CHARGER,MT,24,BLK,885.0,STOLEN,1307,"{'type': 'Point', 'coordinates': (-79.4633489, 43.75025176)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1316,20090,GO-20209015111,THEFT UNDER - BICYCLE,2020-06-11,2020,June,Thursday,11,163,18,2020-06-12,2020,June,Friday,12,164,0,D32,Toronto,27,York University Heights (27),Bar / Restaurant,Commercial,GT,,MT,10,RED,895.0,STOLEN,1308,"{'type': 'Point', 'coordinates': (-79.46497644000002, 43.75775729000001)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1317,20100,GO-20209016899,THEFT UNDER - BICYCLE,2020-07-01,2020,July,Wednesday,1,183,19,2020-07-06,2020,July,Monday,6,188,10,D32,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,OT,TRAIL X 2015,MT,21,YEL,350.0,STOLEN,1309,"{'type': 'Point', 'coordinates': (-79.46639639, 43.75118973)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1318,20101,GO-20209016905,THEFT UNDER - BICYCLE,2020-07-05,2020,July,Sunday,5,187,7,2020-07-05,2020,July,Sunday,5,187,17,D32,Toronto,27,York University Heights (27),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,2013 MILANO,TO,21,BLK,459.0,STOLEN,1310,"{'type': 'Point', 'coordinates': (-79.47010818, 43.78384033)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1319,20819,GO-20201899008,THEFT UNDER,2020-09-28,2020,September,Monday,28,272,18,2020-10-06,2020,October,Tuesday,6,280,15,D31,Toronto,27,York University Heights (27),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,BONELLI,,MT,21,,450.0,STOLEN,1311,"{'type': 'Point', 'coordinates': (-79.50047966, 43.76224141)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1320,21042,GO-20191549156,THEFT UNDER - BICYCLE,2019-08-11,2019,August,Sunday,11,223,1,2019-08-15,2019,August,Thursday,15,227,12,D31,Toronto,27,York University Heights (27),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,NITRO XT,MT,21,GRYONG,160.0,STOLEN,1312,"{'type': 'Point', 'coordinates': (-79.50447515, 43.76637136)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1321,21057,GO-20191727550,THEFT UNDER,2019-09-04,2019,September,Wednesday,4,247,18,2019-09-09,2019,September,Monday,9,252,11,D31,Toronto,27,York University Heights (27),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,INDIE,OT,7,GRY,1100.0,STOLEN,1313,"{'type': 'Point', 'coordinates': (-79.4997085, 43.76657268)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1322,21061,GO-20199029761,THEFT UNDER,2019-09-11,2019,September,Wednesday,11,254,0,2019-09-13,2019,September,Friday,13,256,0,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,GT,ELITE,RG,15,BLK,900.0,STOLEN,1314,"{'type': 'Point', 'coordinates': (-79.49712777, 43.76569559)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1323,21070,GO-20199031817,THEFT UNDER,2019-09-25,2019,September,Wednesday,25,268,6,2019-09-27,2019,September,Friday,27,270,19,D31,Toronto,27,York University Heights (27),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,STORM 2,MT,50,DBL,900.0,STOLEN,1315,"{'type': 'Point', 'coordinates': (-79.49101221000001, 43.76350255)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1324,21097,GO-20192296881,THEFT UNDER - SHOPLIFTING,2019-12-02,2019,December,Monday,2,336,15,2019-12-02,2019,December,Monday,2,336,15,D31,Toronto,27,York University Heights (27),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SUPERCYCLE,,RC,0,BLU,,UNKNOWN,1316,"{'type': 'Point', 'coordinates': (-79.48945308, 43.75744848)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1325,21108,GO-20209004519,THEFT UNDER,2020-02-04,2020,February,Tuesday,4,35,14,2020-02-06,2020,February,Thursday,6,37,16,D31,Toronto,27,York University Heights (27),Universities / Colleges,Educational,OT,200MM FLEX,SC,1,BLU,270.0,STOLEN,1317,"{'type': 'Point', 'coordinates': (-79.50240222, 43.77447286000001)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1326,21139,GO-20209014337,THEFT UNDER - BICYCLE,2020-05-31,2020,May,Sunday,31,152,12,2020-06-01,2020,June,Monday,1,153,13,D31,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,,MT,18,,,STOLEN,1318,"{'type': 'Point', 'coordinates': (-79.49917246, 43.76526221)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1327,21187,GO-20179010653,THEFT UNDER - BICYCLE,2017-07-19,2017,July,Wednesday,19,200,19,2017-07-20,2017,July,Thursday,20,201,9,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,CC,EQUATOR,MT,21,SIL,300.0,STOLEN,1319,"{'type': 'Point', 'coordinates': (-79.50334807, 43.76978983)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1328,21201,GO-20171536761,THEFT UNDER - BICYCLE,2017-08-25,2017,August,Friday,25,237,7,2017-08-25,2017,August,Friday,25,237,7,D31,Toronto,27,York University Heights (27),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SCHWINN,SOTO,RG,21,GRN,,RECOVERED,1320,"{'type': 'Point', 'coordinates': (-79.49218672, 43.75801186)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1329,21281,GO-20189017310,THEFT UNDER - BICYCLE,2018-06-02,2018,June,Saturday,2,153,9,2018-06-04,2018,June,Monday,4,155,12,D32,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RA,,OT,21,BLU,600.0,STOLEN,1321,"{'type': 'Point', 'coordinates': (-79.4633489, 43.75025176)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1330,21287,GO-20189017963,THEFT UNDER - BICYCLE,2018-06-08,2018,June,Friday,8,159,10,2018-06-09,2018,June,Saturday,9,160,0,D31,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,,MT,21,PLE,0.0,STOLEN,1322,"{'type': 'Point', 'coordinates': (-79.49917246, 43.76526221)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1331,21288,GO-20189017963,THEFT UNDER - BICYCLE,2018-06-08,2018,June,Friday,8,159,10,2018-06-09,2018,June,Saturday,9,160,0,D31,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,,MT,30,RED,0.0,STOLEN,1323,"{'type': 'Point', 'coordinates': (-79.49917246, 43.76526221)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1332,21303,GO-20189020824,THEFT UNDER - BICYCLE,2018-06-29,2018,June,Friday,29,180,18,2018-06-29,2018,June,Friday,29,180,22,D32,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,NITRO 21SPEED,MT,5,GRY,200.0,STOLEN,1324,"{'type': 'Point', 'coordinates': (-79.47471632, 43.78618439)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1333,21343,GO-20181719422,THEFT UNDER - BICYCLE,2018-09-16,2018,September,Sunday,16,259,21,2018-09-16,2018,September,Sunday,16,259,21,D31,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPORTEK,RIDGERUNNER,MT,18,BLU,200.0,STOLEN,1325,"{'type': 'Point', 'coordinates': (-79.49814917, 43.7654791)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1334,21997,GO-20149002789,THEFT UNDER,2014-04-11,2014,April,Friday,11,101,13,2014-04-12,2014,April,Saturday,12,102,14,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,UK,DS-MONACO-005,EL,3,RED,963.0,UNKNOWN,1326,"{'type': 'Point', 'coordinates': (-79.4916515, 43.75723039)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1335,22042,GO-20143264382,THEFT UNDER,2014-11-08,2014,November,Saturday,8,312,11,2014-11-08,2014,November,Saturday,8,312,16,D32,Toronto,27,York University Heights (27),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TREK,MARLIN,MT,21,REDBLK,850.0,STOLEN,1327,"{'type': 'Point', 'coordinates': (-79.47004827000002, 43.78728363)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1336,22051,GO-2015711612,THEFT UNDER,2015-04-29,2015,April,Wednesday,29,119,20,2015-04-29,2015,April,Wednesday,29,119,21,D31,Toronto,27,York University Heights (27),"Open Areas (Lakes, Parks, Rivers)",Outside,AVIGO,"20 """"",RG,7,GRYONG,140.0,STOLEN,1328,"{'type': 'Point', 'coordinates': (-79.49105306, 43.74684334)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1337,14998,GO-2016932619,B&E,2016-05-27,2016,May,Friday,27,148,23,2016-05-30,2016,May,Monday,30,151,7,D31,Toronto,26,Downsview-Roding-CFB (26),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,MT,12,GRN,20.0,STOLEN,1329,"{'type': 'Point', 'coordinates': (-79.52038301000002, 43.72449496)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1338,6652,GO-20201334404,THEFT UNDER,2020-07-17,2020,July,Friday,17,199,22,2020-07-18,2020,July,Saturday,18,200,17,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,RG,21,BLUWHI,,STOLEN,1330,"{'type': 'Point', 'coordinates': (-79.45239005, 43.71432793)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1339,851,GO-20171248015,THEFT UNDER - BICYCLE,2017-07-11,2017,July,Tuesday,11,192,22,2017-07-12,2017,July,Wednesday,12,193,11,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,CCM,ALPHA,MT,21,GRNBLK,350.0,STOLEN,1331,"{'type': 'Point', 'coordinates': (-79.52807305, 43.59020393)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1340,14999,GO-2016932619,B&E,2016-05-27,2016,May,Friday,27,148,23,2016-05-30,2016,May,Monday,30,151,7,D31,Toronto,26,Downsview-Roding-CFB (26),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MIELE,,MT,12,LBL,400.0,STOLEN,1332,"{'type': 'Point', 'coordinates': (-79.52038301000002, 43.72449496)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1341,1237,GO-20179013157,THEFT UNDER,2017-08-23,2017,August,Wednesday,23,235,16,2017-08-23,2017,August,Wednesday,23,235,16,D22,Toronto,19,Long Branch (19),Go Station,Transit,CC,KROSSPORT,MT,21,WHI,450.0,STOLEN,1333,"{'type': 'Point', 'coordinates': (-79.54491322, 43.59051582)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1342,17534,GO-20189040540,THEFT UNDER - BICYCLE,2018-12-01,2018,December,Saturday,1,335,7,2018-12-02,2018,December,Sunday,2,336,14,D31,Toronto,26,Downsview-Roding-CFB (26),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,CRD 3,RC,8,GRY,500.0,STOLEN,1334,"{'type': 'Point', 'coordinates': (-79.51669411, 43.7209442)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1343,1320,GO-20179014041,THEFT UNDER - BICYCLE,2017-09-01,2017,September,Friday,1,244,21,2017-09-05,2017,September,Tuesday,5,248,16,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,8,SIL,1000.0,STOLEN,1335,"{'type': 'Point', 'coordinates': (-79.54560481, 43.58975212000001)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1344,6653,GO-20201336173,THEFT UNDER,2020-07-17,2020,July,Friday,17,199,22,2020-07-18,2020,July,Saturday,18,200,18,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,RG,21,BLK,900.0,STOLEN,1336,"{'type': 'Point', 'coordinates': (-79.45239005, 43.71432793)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1345,17535,GO-20182269899,B&E,2018-12-10,2018,December,Monday,10,344,23,2018-12-11,2018,December,Tuesday,11,345,6,D31,Toronto,26,Downsview-Roding-CFB (26),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DAYMAK,EAGLE,EL,25,BLK,300.0,STOLEN,1337,"{'type': 'Point', 'coordinates': (-79.50607245, 43.72468144)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1346,1511,GO-20171741169,THEFT UNDER,2017-09-22,2017,September,Friday,22,265,15,2017-09-25,2017,September,Monday,25,268,19,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,OTHER,,SC,0,RED,3450.0,STOLEN,1338,"{'type': 'Point', 'coordinates': (-79.52807305, 43.59020393)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1347,1975,GO-20189000804,THEFT UNDER - BICYCLE,2018-01-10,2018,January,Wednesday,10,10,16,2018-01-10,2018,January,Wednesday,10,10,20,D22,Toronto,19,Long Branch (19),Go Train,Transit,OT,GRAND RAPID 3.0,RG,21,BLK,450.0,STOLEN,1339,"{'type': 'Point', 'coordinates': (-79.54491322, 43.59051582)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1348,473,GO-20179007000,THEFT UNDER,2017-05-25,2017,May,Thursday,25,145,10,2017-05-26,2017,May,Friday,26,146,10,D22,Toronto,20,Alderwood (20),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,TALON 3,MT,24,BLK,2000.0,STOLEN,1340,"{'type': 'Point', 'coordinates': (-79.55211075, 43.60993279)}",Alderwood,20,No Designation,12054,11904,0.013000000000000001,4732,4616,2435,4.95,6045,4090,355,1285,195,65,65,0.010752688172043012
-1349,17565,GO-2019913916,B&E,2018-11-01,2018,November,Thursday,1,305,12,2019-05-19,2019,May,Sunday,19,139,15,D31,Toronto,26,Downsview-Roding-CFB (26),"Apartment (Rooming House, Condo)",Apartment,TALON,18 2 M,MT,18,GRN,1006.0,STOLEN,1341,"{'type': 'Point', 'coordinates': (-79.50808528, 43.72799612)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1350,2034,GO-2018315182,ASSAULT,2018-02-19,2018,February,Monday,19,50,6,2018-02-19,2018,February,Monday,19,50,8,D22,Toronto,19,Long Branch (19),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,MT,21,WHI,,STOLEN,1342,"{'type': 'Point', 'coordinates': (-79.52663614, 43.59365294)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1351,6686,GO-20209018111,THEFT UNDER,2020-07-20,2020,July,Monday,20,202,18,2020-07-21,2020,July,Tuesday,21,203,11,D13,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SU,,MT,21,GRY,192.0,STOLEN,1343,"{'type': 'Point', 'coordinates': (-79.44648085, 43.71561598)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1352,652,GO-20171080219,THEFT UNDER - BICYCLE,2017-06-17,2017,June,Saturday,17,168,12,2017-06-20,2017,June,Tuesday,20,171,13,D22,Toronto,20,Alderwood (20),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,STUMPJUMPER,MT,27,BLK,3000.0,STOLEN,1344,"{'type': 'Point', 'coordinates': (-79.54608863, 43.6103777)}",Alderwood,20,No Designation,12054,11904,0.013000000000000001,4732,4616,2435,4.95,6045,4090,355,1285,195,65,65,0.010752688172043012
-1353,17566,GO-2019913916,B&E,2018-11-01,2018,November,Thursday,1,305,12,2019-05-19,2019,May,Sunday,19,139,15,D31,Toronto,26,Downsview-Roding-CFB (26),"Apartment (Rooming House, Condo)",Apartment,TALON,18 2 S BLUE,MT,18,BLU,1005.0,STOLEN,1345,"{'type': 'Point', 'coordinates': (-79.50808528, 43.72799612)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1354,2385,GO-20189015949,THEFT UNDER - BICYCLE,2018-05-23,2018,May,Wednesday,23,143,15,2018-05-23,2018,May,Wednesday,23,143,15,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,GI,CITY ESCAPE 2,MT,18,GRY,600.0,STOLEN,1346,"{'type': 'Point', 'coordinates': (-79.53154531, 43.58892605)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1355,6693,GO-20201336667,THEFT UNDER - BICYCLE,2020-07-18,2020,July,Saturday,18,200,7,2020-07-22,2020,July,Wednesday,22,204,12,D32,Toronto,31,Yorkdale-Glen Park (31),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OPUS,MULLARD,MT,7,GRN,1842.0,STOLEN,1347,"{'type': 'Point', 'coordinates': (-79.45239005, 43.71432793)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1356,1939,GO-20173201739,THEFT UNDER - BICYCLE,2017-08-11,2017,August,Friday,11,223,10,2017-12-15,2017,December,Friday,15,349,15,D22,Toronto,20,Alderwood (20),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,APEX,MT,24,WHI,500.0,STOLEN,1348,"{'type': 'Point', 'coordinates': (-79.54594187, 43.60628928)}",Alderwood,20,No Designation,12054,11904,0.013000000000000001,4732,4616,2435,4.95,6045,4090,355,1285,195,65,65,0.010752688172043012
-1357,17967,GO-2015923997,THEFT UNDER,2015-06-02,2015,June,Tuesday,2,153,17,2015-06-02,2015,June,Tuesday,2,153,17,D31,Toronto,26,Downsview-Roding-CFB (26),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,ANIMAL,BM,1,BLKPLE,1000.0,STOLEN,1349,"{'type': 'Point', 'coordinates': (-79.50894007, 43.72236516)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1358,18035,GO-20169008112,THEFT UNDER,2016-07-24,2016,July,Sunday,24,206,19,2016-08-02,2016,August,Tuesday,2,215,19,D32,Toronto,26,Downsview-Roding-CFB (26),"Apartment (Rooming House, Condo)",Apartment,GI,RINCON,MT,21,GRY,350.0,STOLEN,1350,"{'type': 'Point', 'coordinates': (-79.46547179, 43.73093253)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1359,18036,GO-20169008112,THEFT UNDER,2016-07-24,2016,July,Sunday,24,206,19,2016-08-02,2016,August,Tuesday,2,215,19,D32,Toronto,26,Downsview-Roding-CFB (26),"Apartment (Rooming House, Condo)",Apartment,GI,RINCON,MT,21,GRY,350.0,STOLEN,1351,"{'type': 'Point', 'coordinates': (-79.46547179, 43.73093253)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1360,20967,GO-20182125794,THEFT UNDER,2018-11-16,2018,November,Friday,16,320,17,2018-11-18,2018,November,Sunday,18,322,17,D31,Toronto,26,Downsview-Roding-CFB (26),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,DAYMAK,EL,40,,1700.0,STOLEN,1352,"{'type': 'Point', 'coordinates': (-79.50754285, 43.72271668)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1361,21093,GO-20192199413,PROPERTY - FOUND,2019-11-14,2019,November,Thursday,14,318,10,2019-11-14,2019,November,Thursday,14,318,10,D31,Toronto,26,Downsview-Roding-CFB (26),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,INFINITY,,MT,21,BLKGRY,,UNKNOWN,1353,"{'type': 'Point', 'coordinates': (-79.49104018, 43.72461805)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1362,21167,GO-20201372222,THEFT UNDER - BICYCLE,2020-07-11,2020,July,Saturday,11,193,11,2020-07-26,2020,July,Sunday,26,208,13,D31,Toronto,26,Downsview-Roding-CFB (26),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SUPERCYCLE,TEMPLE,MT,18,BLKRED,150.0,STOLEN,1354,"{'type': 'Point', 'coordinates': (-79.49679479, 43.72677284)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1363,21174,GO-20179009345,THEFT UNDER - BICYCLE,2017-07-03,2017,July,Monday,3,184,9,2017-07-03,2017,July,Monday,3,184,14,D32,Toronto,26,Downsview-Roding-CFB (26),"Apartment (Rooming House, Condo)",Apartment,TR,8.4 DS,MT,27,WHI,994.0,STOLEN,1355,"{'type': 'Point', 'coordinates': (-79.46547179, 43.73093253)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1364,21319,GO-20189023214,THEFT UNDER,2018-07-19,2018,July,Thursday,19,200,16,2018-07-20,2018,July,Friday,20,201,14,D31,Toronto,26,Downsview-Roding-CFB (26),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,ORMA,MT,18,BLK,150.0,STOLEN,1356,"{'type': 'Point', 'coordinates': (-79.48248767000001, 43.72856336)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1365,22093,GO-20151840895,THEFT UNDER,2015-09-15,2015,September,Tuesday,15,258,0,2015-10-26,2015,October,Monday,26,299,12,D31,Toronto,26,Downsview-Roding-CFB (26),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MONGOOSE,,MT,21,GRY,1500.0,STOLEN,1357,"{'type': 'Point', 'coordinates': (-79.49411501, 43.72394682000001)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1366,23799,GO-20209016540,THEFT UNDER - BICYCLE,2020-06-29,2020,June,Monday,29,181,16,2020-06-30,2020,June,Tuesday,30,182,11,D31,Toronto,26,Downsview-Roding-CFB (26),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,8,BLK,600.0,STOLEN,1358,"{'type': 'Point', 'coordinates': (-79.51410965, 43.72063504)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1367,1085,GO-20179011942,THEFT UNDER - BICYCLE,2017-08-08,2017,August,Tuesday,8,220,11,2017-08-08,2017,August,Tuesday,8,220,17,D31,Toronto,27,York University Heights (27),Universities / Colleges,Educational,SC,,RC,14,GRY,1500.0,STOLEN,1383,"{'type': 'Point', 'coordinates': (-79.50852047, 43.77429016)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1368,24069,GO-20199022827,THEFT UNDER,2019-07-18,2019,July,Thursday,18,199,15,2019-07-18,2019,July,Thursday,18,199,17,D31,Toronto,26,Downsview-Roding-CFB (26),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UK,,MT,10,BLU,150.0,STOLEN,1359,"{'type': 'Point', 'coordinates': (-79.48260563, 43.72906154)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1369,24079,GO-20199024763,THEFT UNDER - BICYCLE,2019-08-02,2019,August,Friday,2,214,12,2019-08-02,2019,August,Friday,2,214,15,D31,Toronto,26,Downsview-Roding-CFB (26),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,RG,6,PLE,200.0,STOLEN,1360,"{'type': 'Point', 'coordinates': (-79.51410965, 43.72063504)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1370,24080,GO-20199025116,THEFT UNDER,2019-08-02,2019,August,Friday,2,214,21,2019-08-06,2019,August,Tuesday,6,218,15,D31,Toronto,26,Downsview-Roding-CFB (26),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,,RG,21,SIL,150.0,STOLEN,1361,"{'type': 'Point', 'coordinates': (-79.48165414, 43.72511192)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1371,24189,GO-20201123967,B&E,2020-06-18,2020,June,Thursday,18,170,19,2020-06-18,2020,June,Thursday,18,170,19,D31,Toronto,26,Downsview-Roding-CFB (26),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,RG,10,GRNGRY,,RECOVERED,1362,"{'type': 'Point', 'coordinates': (-79.49858942, 43.73230491)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1372,24276,GO-20189004973,THEFT UNDER - BICYCLE,2018-02-15,2018,February,Thursday,15,46,6,2018-02-17,2018,February,Saturday,17,48,17,D32,Toronto,26,Downsview-Roding-CFB (26),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,TREKKER,MT,18,RED,250.0,STOLEN,1363,"{'type': 'Point', 'coordinates': (-79.45790073, 43.72827812)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1373,24321,GO-20189020225,THEFT UNDER - BICYCLE,2018-06-25,2018,June,Monday,25,176,10,2018-06-25,2018,June,Monday,25,176,21,D31,Toronto,26,Downsview-Roding-CFB (26),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,MT,12,BLU,0.0,STOLEN,1364,"{'type': 'Point', 'coordinates': (-79.48260563, 43.72906154)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1374,24338,GO-20189022246,THEFT UNDER,2018-07-12,2018,July,Thursday,12,193,17,2018-07-13,2018,July,Friday,13,194,1,D31,Toronto,26,Downsview-Roding-CFB (26),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RG,27,,0.0,STOLEN,1365,"{'type': 'Point', 'coordinates': (-79.50859475, 43.72091645)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1375,24383,GO-20189029391,THEFT UNDER,2018-09-06,2018,September,Thursday,6,249,13,2018-09-06,2018,September,Thursday,6,249,19,D31,Toronto,26,Downsview-Roding-CFB (26),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,DS 650,MT,20,SIL,600.0,STOLEN,1366,"{'type': 'Point', 'coordinates': (-79.48260563, 43.72906154)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1376,24468,GO-20159005080,THEFT UNDER,2015-07-27,2015,July,Monday,27,208,17,2015-07-28,2015,July,Tuesday,28,209,12,D31,Toronto,26,Downsview-Roding-CFB (26),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,MT,5,WHI,200.0,STOLEN,1367,"{'type': 'Point', 'coordinates': (-79.48801642, 43.72730181)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1377,24470,GO-20151295177,THEFT UNDER,2015-07-28,2015,July,Tuesday,28,209,23,2015-07-29,2015,July,Wednesday,29,210,9,D31,Toronto,26,Downsview-Roding-CFB (26),"Apartment (Rooming House, Condo)",Apartment,OTHER,INDIANAPOLIS,EL,1,WHI,2000.0,STOLEN,1368,"{'type': 'Point', 'coordinates': (-79.51038627, 43.72477325)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1378,24489,GO-20151632998,THEFT FROM MOTOR VEHICLE UNDER,2015-09-10,2015,September,Thursday,10,253,17,2015-09-21,2015,September,Monday,21,264,14,D31,Toronto,26,Downsview-Roding-CFB (26),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,INVACARE,MOTORIZED,SC,1,BLU,,STOLEN,1369,"{'type': 'Point', 'coordinates': (-79.48199904000002, 43.74638701)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1379,24542,GO-20169010325,THEFT UNDER - BICYCLE,2016-09-12,2016,September,Monday,12,256,9,2016-09-12,2016,September,Monday,12,256,18,D32,Toronto,26,Downsview-Roding-CFB (26),Ttc Subway Station,Transit,CA,T2 TOURING,TO,21,SIL,500.0,STOLEN,1370,"{'type': 'Point', 'coordinates': (-79.46273009, 43.75037793)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1380,24577,GO-20179008660,THEFT UNDER - BICYCLE,2017-06-21,2017,June,Wednesday,21,172,14,2017-06-22,2017,June,Thursday,22,173,0,D32,Toronto,26,Downsview-Roding-CFB (26),Ttc Subway Station,Transit,UK,,MT,24,WHI,299.0,STOLEN,1371,"{'type': 'Point', 'coordinates': (-79.46273009, 43.75037793)}",Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668
-1381,61,GO-201727098,THEFT FROM MOTOR VEHICLE UNDER,2017-01-24,2017,January,Tuesday,24,24,6,2017-01-24,2017,January,Tuesday,24,24,6,D31,Toronto,27,York University Heights (27),"Gas Station (Self, Full, Attached Convenience)",Commercial,HF,,RG,10,BLU,100.0,STOLEN,1372,"{'type': 'Point', 'coordinates': (-79.49996302, 43.7610636)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1382,129,GO-20179002718,THEFT UNDER - BICYCLE,2017-03-02,2017,March,Thursday,2,61,22,2017-03-03,2017,March,Friday,3,62,10,D31,Toronto,27,York University Heights (27),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,SC1800,RG,18,BLU,60.0,STOLEN,1373,"{'type': 'Point', 'coordinates': (-79.5028438, 43.76801296)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1383,374,GO-2017835803,THEFT OF EBIKE UNDER $5000,2017-05-09,2017,May,Tuesday,9,129,13,2017-05-12,2017,May,Friday,12,132,10,D32,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,S6,EL,1,BLU,1000.0,STOLEN,1374,"{'type': 'Point', 'coordinates': (-79.47231437, 43.7584662)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1384,457,GO-20179006874,THEFT UNDER - BICYCLE,2017-05-23,2017,May,Tuesday,23,143,16,2017-05-23,2017,May,Tuesday,23,143,21,D32,Toronto,27,York University Heights (27),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,,MT,18,BLU,799.0,STOLEN,1375,"{'type': 'Point', 'coordinates': (-79.47471632, 43.78618439)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1385,602,GO-20171043470,THEFT UNDER - BICYCLE,2017-06-09,2017,June,Friday,9,160,21,2017-06-12,2017,June,Monday,12,163,10,D32,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,SCHWINN,GPX2,RG,21,,400.0,STOLEN,1376,"{'type': 'Point', 'coordinates': (-79.46639639, 43.75118973)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1386,610,GO-20179008064,THEFT UNDER - BICYCLE,2017-06-09,2017,June,Friday,9,160,17,2017-06-14,2017,June,Wednesday,14,165,6,D32,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,25,LGR,120.0,STOLEN,1377,"{'type': 'Point', 'coordinates': (-79.46639639, 43.75118973)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1387,809,GO-20179009734,THEFT UNDER - BICYCLE,2017-06-27,2017,June,Tuesday,27,178,18,2017-07-08,2017,July,Saturday,8,189,18,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,NO,,MT,24,GRY,850.0,STOLEN,1378,"{'type': 'Point', 'coordinates': (-79.50115588, 43.76706746)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1388,872,GO-20171287242,THEFT UNDER - BICYCLE,2017-07-18,2017,July,Tuesday,18,199,2,2017-07-18,2017,July,Tuesday,18,199,9,D31,Toronto,27,York University Heights (27),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GT,,MT,7,BLKYEL,600.0,STOLEN,1379,"{'type': 'Point', 'coordinates': (-79.50263094, 43.7653802)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1389,978,GO-20171329586,THEFT UNDER,2017-07-23,2017,July,Sunday,23,204,17,2017-07-24,2017,July,Monday,24,205,16,D31,Toronto,27,York University Heights (27),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,SC,1,GRY,1000.0,STOLEN,1380,"{'type': 'Point', 'coordinates': (-79.48893236, 43.78005125)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1390,989,GO-20171353347,THEFT UNDER - BICYCLE,2017-07-28,2017,July,Friday,28,209,6,2017-07-28,2017,July,Friday,28,209,6,D31,Toronto,27,York University Heights (27),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,JAMIS,TRAIL X,MT,21,GRY,1100.0,STOLEN,1381,"{'type': 'Point', 'coordinates': (-79.48823726, 43.76408749)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1391,998,GO-20179011210,THEFT FROM MOTOR VEHICLE UNDER,2017-07-27,2017,July,Thursday,27,208,11,2017-07-28,2017,July,Friday,28,209,10,D31,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,MT,21,BLK,450.0,STOLEN,1382,"{'type': 'Point', 'coordinates': (-79.50372563, 43.76525072)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1392,1330,GO-20171614941,THEFT UNDER - BICYCLE,2017-08-20,2017,August,Sunday,20,232,18,2017-09-06,2017,September,Wednesday,6,249,15,D31,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,,OT,21,RED,1000.0,STOLEN,1384,"{'type': 'Point', 'coordinates': (-79.50240222, 43.77447286000001)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1393,1488,GO-20179015471,THEFT UNDER - BICYCLE,2017-09-21,2017,September,Thursday,21,264,21,2017-09-22,2017,September,Friday,22,265,14,D31,Toronto,27,York University Heights (27),Universities / Colleges,Educational,OT,QUICKSPIN,BM,1,SIL,60.0,STOLEN,1385,"{'type': 'Point', 'coordinates': (-79.50080714, 43.77034083)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1394,1503,GO-20171706231,THEFT UNDER - BICYCLE,2017-09-20,2017,September,Wednesday,20,263,8,2017-09-23,2017,September,Saturday,23,266,19,D31,Toronto,27,York University Heights (27),Schools During Un-Supervised Activity,Educational,OT,AQUILA,RC,14,YEL,1000.0,STOLEN,1386,"{'type': 'Point', 'coordinates': (-79.50240222, 43.77447286000001)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1395,1526,GO-20179015779,THEFT UNDER - BICYCLE,2017-09-16,2017,September,Saturday,16,259,21,2017-09-25,2017,September,Monday,25,268,21,D32,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,15,RED,1000.0,STOLEN,1387,"{'type': 'Point', 'coordinates': (-79.46368899, 43.75175859)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1396,1560,GO-20179016160,THEFT UNDER - BICYCLE,2017-10-01,2017,October,Sunday,1,274,17,2017-10-01,2017,October,Sunday,1,274,18,D31,Toronto,27,York University Heights (27),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,,BM,1,SIL,200.0,STOLEN,1388,"{'type': 'Point', 'coordinates': (-79.50372563, 43.76525072)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1397,1846,GO-20179019683,THEFT UNDER - BICYCLE,2017-11-15,2017,November,Wednesday,15,319,10,2017-11-15,2017,November,Wednesday,15,319,11,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,12,WHI,750.0,STOLEN,1389,"{'type': 'Point', 'coordinates': (-79.49917246, 43.76526221)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1398,2011,GO-2018174596,THEFT UNDER - SHOPLIFTING,2018-01-27,2018,January,Saturday,27,27,20,2018-01-28,2018,January,Sunday,28,28,12,D31,Toronto,27,York University Heights (27),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,AMIGO,ELECTRIC,SC,0,BLK,900.0,STOLEN,1390,"{'type': 'Point', 'coordinates': (-79.48945308, 43.75744848)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1399,2299,GO-20189014794,THEFT UNDER - BICYCLE,2018-05-11,2018,May,Friday,11,131,14,2018-05-13,2018,May,Sunday,13,133,22,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,CC,,RG,10,,150.0,STOLEN,1391,"{'type': 'Point', 'coordinates': (-79.49961757, 43.75974862)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1400,2300,GO-20189014794,THEFT UNDER - BICYCLE,2018-05-11,2018,May,Friday,11,131,14,2018-05-13,2018,May,Sunday,13,133,22,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,SU,,RG,20,,500.0,STOLEN,1392,"{'type': 'Point', 'coordinates': (-79.49961757, 43.75974862)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1401,2372,GO-20189015839,THEFT UNDER - BICYCLE,2018-05-21,2018,May,Monday,21,141,21,2018-05-22,2018,May,Tuesday,22,142,17,D31,Toronto,27,York University Heights (27),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,MT,9,BLK,600.0,STOLEN,1393,"{'type': 'Point', 'coordinates': (-79.50396304, 43.76777105)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1402,2480,GO-20189017644,THEFT UNDER - BICYCLE,2018-06-06,2018,June,Wednesday,6,157,15,2018-06-06,2018,June,Wednesday,6,157,16,D31,Toronto,27,York University Heights (27),Schools During Supervised Activity,Educational,CC,HARDLINE YOUTH,MT,21,BLK,400.0,STOLEN,1394,"{'type': 'Point', 'coordinates': (-79.4919325, 43.75905215)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1403,2494,GO-20189017832,THEFT UNDER,2018-05-23,2018,May,Wednesday,23,143,22,2018-06-07,2018,June,Thursday,7,158,23,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,SC,MENSA,MT,24,DBL,200.0,STOLEN,1395,"{'type': 'Point', 'coordinates': (-79.50396304, 43.76777105)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1404,2505,GO-20189017913,THEFT UNDER - BICYCLE,2018-06-08,2018,June,Friday,8,159,7,2018-06-08,2018,June,Friday,8,159,16,D31,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,MT,18,RED,100.0,STOLEN,1396,"{'type': 'Point', 'coordinates': (-79.49917246, 43.76526221)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1405,2574,GO-20189018754,THEFT UNDER - BICYCLE,2018-06-13,2018,June,Wednesday,13,164,22,2018-06-15,2018,June,Friday,15,166,1,D31,Toronto,27,York University Heights (27),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DB,KALAMAR,MT,7,BRN,312.0,STOLEN,1397,"{'type': 'Point', 'coordinates': (-79.50372563, 43.76525072)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1406,2732,GO-20189020901,THEFT UNDER - BICYCLE,2018-07-01,2018,July,Sunday,1,182,13,2018-07-02,2018,July,Monday,2,183,8,D31,Toronto,27,York University Heights (27),Universities / Colleges,Educational,CC,"SL2.0 26""""MEN MO",MT,21,BLK,305.0,STOLEN,1398,"{'type': 'Point', 'coordinates': (-79.50852047, 43.77429016)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1407,2742,GO-20189021053,THEFT UNDER,2017-06-30,2017,June,Friday,30,181,21,2018-07-03,2018,July,Tuesday,3,184,18,D31,Toronto,27,York University Heights (27),Convenience Stores,Commercial,CC,,MT,20,BLK,178.0,STOLEN,1399,"{'type': 'Point', 'coordinates': (-79.48945308, 43.75744848)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1408,2806,GO-20189021968,THEFT UNDER - BICYCLE,2018-07-02,2018,July,Monday,2,183,16,2018-07-10,2018,July,Tuesday,10,191,21,D31,Toronto,27,York University Heights (27),Ttc Subway Station,Transit,RA,CADENT 2,OT,24,DBL,700.0,STOLEN,1400,"{'type': 'Point', 'coordinates': (-79.4931988, 43.77199027)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1409,2827,GO-20189022223,THEFT UNDER - BICYCLE,2018-07-12,2018,July,Thursday,12,193,20,2018-07-12,2018,July,Thursday,12,193,20,D31,Toronto,27,York University Heights (27),Universities / Colleges,Educational,UK,MOUNTAIN BIKE,MT,7,BLK,80.0,STOLEN,1401,"{'type': 'Point', 'coordinates': (-79.50240222, 43.77447286000001)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1410,3276,GO-20181542269,B&E,2018-08-20,2018,August,Monday,20,232,23,2018-08-21,2018,August,Tuesday,21,233,5,D31,Toronto,27,York University Heights (27),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,OT,21,BLUBLK,350.0,STOLEN,1402,"{'type': 'Point', 'coordinates': (-79.49481846, 43.75665163)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1411,3369,GO-20189028641,THEFT UNDER - BICYCLE,2017-12-24,2017,December,Sunday,24,358,21,2018-08-31,2018,August,Friday,31,243,1,D31,Toronto,27,York University Heights (27),Ttc Subway Station,Transit,OT,SPECIALIZED PRO,MT,21,RED,400.0,STOLEN,1403,"{'type': 'Point', 'coordinates': (-79.50334807, 43.76978983)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1412,3455,GO-20189030227,THEFT UNDER - BICYCLE,2018-05-04,2018,May,Friday,4,124,10,2018-09-13,2018,September,Thursday,13,256,11,D32,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,GI,XTC 29ER 1,MT,10,BLK,2200.0,STOLEN,1404,"{'type': 'Point', 'coordinates': (-79.46639639, 43.75118973)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1413,3524,GO-20189031325,THEFT UNDER - BICYCLE,2018-09-20,2018,September,Thursday,20,263,17,2018-09-20,2018,September,Thursday,20,263,21,D31,Toronto,27,York University Heights (27),Ttc Subway Station,Transit,UK,,MT,21,DBL,250.0,STOLEN,1405,"{'type': 'Point', 'coordinates': (-79.49101221000001, 43.76350255)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1414,3534,GO-20189031443,THEFT UNDER,2018-09-17,2018,September,Monday,17,260,17,2018-09-21,2018,September,Friday,21,264,16,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,30,BLK,1000.0,STOLEN,1406,"{'type': 'Point', 'coordinates': (-79.50082146, 43.76336098)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1415,3545,GO-20189031693,THEFT UNDER,2018-09-21,2018,September,Friday,21,264,22,2018-09-24,2018,September,Monday,24,267,11,D31,Toronto,27,York University Heights (27),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,,MT,10,MRN,500.0,STOLEN,1407,"{'type': 'Point', 'coordinates': (-79.50506189, 43.75359301)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1416,4107,GO-20199009610,THEFT UNDER - BICYCLE,2019-03-25,2019,March,Monday,25,84,16,2019-03-25,2019,March,Monday,25,84,17,D31,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,MT,8,GRN,1000.0,STOLEN,1408,"{'type': 'Point', 'coordinates': (-79.49917246, 43.76526221)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1417,4217,GO-20199013468,THEFT UNDER,2019-04-28,2019,April,Sunday,28,118,14,2019-04-29,2019,April,Monday,29,119,23,D31,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,MT,10,BLK,200.0,STOLEN,1409,"{'type': 'Point', 'coordinates': (-79.48872132, 43.75451293)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1418,4428,GO-20199017798,THEFT UNDER,2019-06-07,2019,June,Friday,7,158,16,2019-06-07,2019,June,Friday,7,158,23,D31,Toronto,27,York University Heights (27),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,,MT,21,,250.0,STOLEN,1410,"{'type': 'Point', 'coordinates': (-79.48945308, 43.75744848)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1419,4775,GO-20199022358,THEFT UNDER,2019-07-11,2019,July,Thursday,11,192,23,2019-07-15,2019,July,Monday,15,196,19,D31,Toronto,27,York University Heights (27),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,,MT,24,BLU,70.0,STOLEN,1411,"{'type': 'Point', 'coordinates': (-79.50240222, 43.77447286000001)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1420,5414,GO-20199031648,THEFT UNDER,2019-09-26,2019,September,Thursday,26,269,12,2019-09-26,2019,September,Thursday,26,269,17,D31,Toronto,27,York University Heights (27),Universities / Colleges,Educational,GI,ATX 2 XL CHARCO,MT,21,BLK,507.0,STOLEN,1412,"{'type': 'Point', 'coordinates': (-79.50240222, 43.77447286000001)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1421,5473,GO-20191913652,THEFT UNDER - BICYCLE,2019-10-04,2019,October,Friday,4,277,8,2019-10-04,2019,October,Friday,4,277,15,D32,Toronto,27,York University Heights (27),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,,MT,12,GRNBLU,100.0,STOLEN,1413,"{'type': 'Point', 'coordinates': (-79.47004827000002, 43.78728363)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1422,5482,GO-20191921915,THEFT UNDER - BICYCLE,2019-10-05,2019,October,Saturday,5,278,5,2019-10-05,2019,October,Saturday,5,278,17,D31,Toronto,27,York University Heights (27),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,MT,3,RED,800.0,STOLEN,1414,"{'type': 'Point', 'coordinates': (-79.49917246, 43.76526221)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1423,6088,GO-20209011622,THEFT UNDER - BICYCLE,2020-04-20,2020,April,Monday,20,111,21,2020-04-21,2020,April,Tuesday,21,112,12,D31,Toronto,27,York University Heights (27),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,FIX 700C,RG,1,BLU,230.0,STOLEN,1415,"{'type': 'Point', 'coordinates': (-79.49900572, 43.76753752)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1424,6406,GO-20209015522,THEFT UNDER - BICYCLE,2020-06-12,2020,June,Friday,12,164,10,2020-06-16,2020,June,Tuesday,16,168,23,D32,Toronto,27,York University Heights (27),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,2015 ROAM 3,RG,8,BLK,565.0,STOLEN,1416,"{'type': 'Point', 'coordinates': (-79.47010818, 43.78384033)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1425,6437,GO-20209015879,THEFT UNDER,2020-06-21,2020,June,Sunday,21,173,20,2020-06-22,2020,June,Monday,22,174,12,D31,Toronto,27,York University Heights (27),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,KATO,MT,24,BLK,500.0,STOLEN,1417,"{'type': 'Point', 'coordinates': (-79.5028438, 43.76801296)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1426,6450,GO-20209015998,THEFT UNDER - BICYCLE,2020-06-22,2020,June,Monday,22,174,20,2020-06-23,2020,June,Tuesday,23,175,18,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,30,BLK,300.0,STOLEN,1418,"{'type': 'Point', 'coordinates': (-79.50147952, 43.77191841)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1427,6508,GO-20209016586,THEFT UNDER - BICYCLE,2020-06-30,2020,June,Tuesday,30,182,7,2020-06-30,2020,June,Tuesday,30,182,20,D32,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,TRANSITION,OT,18,RED,1500.0,STOLEN,1419,"{'type': 'Point', 'coordinates': (-79.46639639, 43.75118973)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1428,6569,GO-20209017203,THEFT UNDER - BICYCLE,2020-07-06,2020,July,Monday,6,188,21,2020-07-09,2020,July,Thursday,9,191,18,D32,Toronto,27,York University Heights (27),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,VENTURA,RC,16,BLK,1000.0,STOLEN,1420,"{'type': 'Point', 'coordinates': (-79.47010818, 43.78384033)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1429,6582,GO-20209017285,THEFT UNDER,2020-06-20,2020,June,Saturday,20,172,20,2020-07-10,2020,July,Friday,10,192,20,D32,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,OT,TRACCIA,MT,21,BLK,500.0,STOLEN,1421,"{'type': 'Point', 'coordinates': (-79.4633489, 43.75025176)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1430,6656,GO-20209017851,THEFT UNDER - BICYCLE,2020-07-14,2020,July,Tuesday,14,196,15,2020-07-16,2020,July,Thursday,16,198,21,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,OT,VERSA SPEED 50,RG,20,BLK,600.0,STOLEN,1422,"{'type': 'Point', 'coordinates': (-79.50396304, 43.76777105)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1431,6857,GO-20209019276,THEFT UNDER - BICYCLE,2020-07-30,2020,July,Thursday,30,212,21,2020-08-03,2020,August,Monday,3,216,21,D31,Toronto,27,York University Heights (27),"Open Areas (Lakes, Parks, Rivers)",Outside,UK,,RG,7,BLK,500.0,STOLEN,1423,"{'type': 'Point', 'coordinates': (-79.50080714, 43.77034083)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1432,7114,GO-20209021655,THEFT UNDER - BICYCLE,2020-08-22,2020,August,Saturday,22,235,17,2020-08-28,2020,August,Friday,28,241,17,D32,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,50,,3000.0,STOLEN,1424,"{'type': 'Point', 'coordinates': (-79.4633489, 43.75025176)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1433,8139,GO-20149004027,THEFT UNDER,2014-06-12,2014,June,Thursday,12,163,1,2014-06-12,2014,June,Thursday,12,163,23,D31,Toronto,27,York University Heights (27),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,18,OTH,99.0,STOLEN,1425,"{'type': 'Point', 'coordinates': (-79.50314419, 43.76663076)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1434,8175,GO-20142304997,THEFT UNDER,2014-06-13,2014,June,Friday,13,164,17,2014-06-16,2014,June,Monday,16,167,20,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,CCM,MUD SLIDE,RG,15,ONG,,STOLEN,1426,"{'type': 'Point', 'coordinates': (-79.49363935, 43.76527191)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1435,8176,GO-20142304997,THEFT UNDER,2014-06-13,2014,June,Friday,13,164,17,2014-06-16,2014,June,Monday,16,167,20,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,NONE,OT,1,BLK,,STOLEN,1427,"{'type': 'Point', 'coordinates': (-79.49363935, 43.76527191)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1436,8350,GO-20149004716,THEFT UNDER,2014-06-30,2014,June,Monday,30,181,11,2014-07-04,2014,July,Friday,4,185,13,D31,Toronto,27,York University Heights (27),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,ASPECT 29,MT,24,BLK,950.0,STOLEN,1428,"{'type': 'Point', 'coordinates': (-79.49610290000001, 43.76591279)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1437,8641,GO-20142711922,B&E,2014-08-15,2014,August,Friday,15,227,19,2014-08-16,2014,August,Saturday,16,228,1,D31,Toronto,27,York University Heights (27),"Private Property Structure (Pool, Shed, Detached Garage)",Other,JAMIS,KOMODO II,MT,0,GRYWHI,1200.0,STOLEN,1429,"{'type': 'Point', 'coordinates': (-79.50342911, 43.76656817)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1438,8758,GO-20142789939,THEFT UNDER,2014-08-23,2014,August,Saturday,23,235,19,2014-08-30,2014,August,Saturday,30,242,14,D31,Toronto,27,York University Heights (27),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,RG,0,RED,100.0,STOLEN,1430,"{'type': 'Point', 'coordinates': (-79.48579669, 43.74782991)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1439,8948,GO-20149007119,THEFT UNDER,2014-09-21,2014,September,Sunday,21,264,19,2014-09-22,2014,September,Monday,22,265,18,D31,Toronto,27,York University Heights (27),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CC,,MT,21,RED,500.0,STOLEN,1431,"{'type': 'Point', 'coordinates': (-79.4949085, 43.76724158)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1440,8962,GO-20142974586,THEFT UNDER,2014-09-24,2014,September,Wednesday,24,267,8,2014-09-24,2014,September,Wednesday,24,267,15,D31,Toronto,27,York University Heights (27),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,RC,24,RED,350.0,STOLEN,1432,"{'type': 'Point', 'coordinates': (-79.50080714, 43.77034083)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1441,9215,GO-20143433979,THEFT UNDER,2014-12-01,2014,December,Monday,1,335,13,2014-12-06,2014,December,Saturday,6,340,5,D31,Toronto,27,York University Heights (27),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,700C,MT,24,SIL,100.0,STOLEN,1433,"{'type': 'Point', 'coordinates': (-79.48872132, 43.75451293)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1442,9939,GO-20151130249,PROPERTY - RECOVERED,2015-07-05,2015,July,Sunday,5,186,0,2015-07-05,2015,July,Sunday,5,186,0,D31,Toronto,27,York University Heights (27),"Dealership (Car, Motorcycle, Marine, Trailer, Etc.)",Commercial,DAYMAK,EAGLE,EL,40,BLU,,UNKNOWN,1434,"{'type': 'Point', 'coordinates': (-79.48486741, 43.75918961)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1443,9943,GO-20151127865,THEFT UNDER,2015-07-04,2015,July,Saturday,4,185,0,2015-07-04,2015,July,Saturday,4,185,17,D31,Toronto,27,York University Heights (27),Universities / Colleges,Educational,NEXT,,MT,18,GRYYEL,180.0,STOLEN,1435,"{'type': 'Point', 'coordinates': (-79.5028438, 43.76801296)}",York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503
-1444,2671,GO-20189020088,THEFT UNDER - BICYCLE,2018-06-24,2018,June,Sunday,24,175,0,2018-06-25,2018,June,Monday,25,176,7,D22,Toronto,20,Alderwood (20),"Apartment (Rooming House, Condo)",Apartment,NO,VRF 4,MT,28,LBL,700.0,STOLEN,1436,"{'type': 'Point', 'coordinates': (-79.54443956, 43.60001217)}",Alderwood,20,No Designation,12054,11904,0.013000000000000001,4732,4616,2435,4.95,6045,4090,355,1285,195,65,65,0.010752688172043012
-1445,2495,GO-20189017845,THEFT UNDER,2018-06-08,2018,June,Friday,8,159,0,2018-06-08,2018,June,Friday,8,159,7,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,GI,,RG,10,BLU,500.0,STOLEN,1437,"{'type': 'Point', 'coordinates': (-79.53397755, 43.59436142)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1446,6694,GO-20201336667,THEFT UNDER - BICYCLE,2020-07-18,2020,July,Saturday,18,200,7,2020-07-22,2020,July,Wednesday,22,204,12,D32,Toronto,31,Yorkdale-Glen Park (31),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SCHWINN,BIGATTI,RG,7,SIL,329.0,STOLEN,1438,"{'type': 'Point', 'coordinates': (-79.45239005, 43.71432793)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1447,2726,GO-20189020860,THEFT UNDER - BICYCLE,2018-07-01,2018,July,Sunday,1,182,10,2018-07-01,2018,July,Sunday,1,182,10,D22,Toronto,20,Alderwood (20),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,SANTA MONICA,MT,21,GLD,200.0,STOLEN,1439,"{'type': 'Point', 'coordinates': (-79.5500207, 43.5978772)}",Alderwood,20,No Designation,12054,11904,0.013000000000000001,4732,4616,2435,4.95,6045,4090,355,1285,195,65,65,0.010752688172043012
-1448,6725,GO-20201382533,THEFT UNDER - BICYCLE,2020-07-18,2020,July,Saturday,18,200,18,2020-07-25,2020,July,Saturday,25,207,8,D32,Toronto,31,Yorkdale-Glen Park (31),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,CORSO,MT,18,GRY,500.0,STOLEN,1440,"{'type': 'Point', 'coordinates': (-79.45239005, 43.71432793)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1449,2877,GO-20189022133,THEFT UNDER - BICYCLE,2018-07-12,2018,July,Thursday,12,193,0,2018-07-12,2018,July,Thursday,12,193,7,D22,Toronto,20,Alderwood (20),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,TRANCE 2,MT,11,BLK,2800.0,STOLEN,1441,"{'type': 'Point', 'coordinates': (-79.54688342, 43.59766594)}",Alderwood,20,No Designation,12054,11904,0.013000000000000001,4732,4616,2435,4.95,6045,4090,355,1285,195,65,65,0.010752688172043012
-1450,6751,GO-20201375755,THEFT UNDER,2020-07-17,2020,July,Friday,17,199,22,2020-07-27,2020,July,Monday,27,209,10,D32,Toronto,31,Yorkdale-Glen Park (31),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MONGOOSE,TYAX COMPETITIO,MT,27,BLK,800.0,STOLEN,1442,"{'type': 'Point', 'coordinates': (-79.45239005, 43.71432793)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1451,2499,GO-20189017844,THEFT UNDER,2018-06-08,2018,June,Friday,8,159,1,2018-06-08,2018,June,Friday,8,159,8,D22,Toronto,19,Long Branch (19),"Group Homes (Non-Profit, Halfway House, Social Agency)",Other,GT,AGGRESSOR SPORT,MT,21,OTH,500.0,STOLEN,1443,"{'type': 'Point', 'coordinates': (-79.53397755, 43.59436142)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1452,2902,GO-20181323245,THEFT UNDER - BICYCLE,2018-07-08,2018,July,Sunday,8,189,12,2018-07-20,2018,July,Friday,20,201,7,D22,Toronto,20,Alderwood (20),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,,OT,2,BLKWHI,1500.0,STOLEN,1444,"{'type': 'Point', 'coordinates': (-79.54593884, 43.59253286)}",Alderwood,20,No Designation,12054,11904,0.013000000000000001,4732,4616,2435,4.95,6045,4090,355,1285,195,65,65,0.010752688172043012
-1453,6842,GO-20209019170,THEFT UNDER - BICYCLE,2020-07-30,2020,July,Thursday,30,212,19,2020-08-01,2020,August,Saturday,1,214,21,D32,Toronto,31,Yorkdale-Glen Park (31),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TU,,FO,50,BLK,500.0,STOLEN,1445,"{'type': 'Point', 'coordinates': (-79.46261751, 43.71695029)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1454,2516,GO-20181047520,THEFT UNDER - BICYCLE,2018-06-09,2018,June,Saturday,9,160,18,2018-06-09,2018,June,Saturday,9,160,20,D22,Toronto,19,Long Branch (19),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,,MT,11,BLK,2000.0,STOLEN,1446,"{'type': 'Point', 'coordinates': (-79.53350756, 43.59335987)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1455,2903,GO-20181323245,THEFT UNDER - BICYCLE,2018-07-08,2018,July,Sunday,8,189,12,2018-07-20,2018,July,Friday,20,201,7,D22,Toronto,20,Alderwood (20),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,,OT,2,BLKWHI,1500.0,STOLEN,1447,"{'type': 'Point', 'coordinates': (-79.54593884, 43.59253286)}",Alderwood,20,No Designation,12054,11904,0.013000000000000001,4732,4616,2435,4.95,6045,4090,355,1285,195,65,65,0.010752688172043012
-1456,4859,GO-20191392231,THEFT UNDER - BICYCLE,2019-07-24,2019,July,Wednesday,24,205,6,2019-07-24,2019,July,Wednesday,24,205,16,D22,Toronto,20,Alderwood (20),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ZZZ,,RG,1,BLK,700.0,STOLEN,1448,"{'type': 'Point', 'coordinates': (-79.54769932, 43.6074657)}",Alderwood,20,No Designation,12054,11904,0.013000000000000001,4732,4616,2435,4.95,6045,4090,355,1285,195,65,65,0.010752688172043012
-1457,5140,GO-20199027369,THEFT UNDER,2019-08-22,2019,August,Thursday,22,234,0,2019-08-23,2019,August,Friday,23,235,10,D22,Toronto,20,Alderwood (20),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MARTIN,BOBCAT TRAIL 3,MT,20,GRY,800.0,STOLEN,1449,"{'type': 'Point', 'coordinates': (-79.55421127, 43.60258466)}",Alderwood,20,No Designation,12054,11904,0.013000000000000001,4732,4616,2435,4.95,6045,4090,355,1285,195,65,65,0.010752688172043012
-1458,8638,GO-20149005804,THEFT UNDER,2014-08-10,2014,August,Sunday,10,222,0,2014-08-10,2014,August,Sunday,10,222,2,D22,Toronto,20,Alderwood (20),Bar / Restaurant,Commercial,GI,,MT,10,BLK,500.0,STOLEN,1450,"{'type': 'Point', 'coordinates': (-79.54482023, 43.60085066)}",Alderwood,20,No Designation,12054,11904,0.013000000000000001,4732,4616,2435,4.95,6045,4090,355,1285,195,65,65,0.010752688172043012
-1459,8824,GO-20142840098,THEFT FROM MOTOR VEHICLE UNDER,2014-09-03,2014,September,Wednesday,3,246,23,2014-09-04,2014,September,Thursday,4,247,10,D22,Toronto,20,Alderwood (20),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,F4,MT,24,BLKWHI,,STOLEN,1451,"{'type': 'Point', 'coordinates': (-79.53555468, 43.60863956)}",Alderwood,20,No Designation,12054,11904,0.013000000000000001,4732,4616,2435,4.95,6045,4090,355,1285,195,65,65,0.010752688172043012
-1460,8825,GO-20142840098,THEFT FROM MOTOR VEHICLE UNDER,2014-09-03,2014,September,Wednesday,3,246,23,2014-09-04,2014,September,Thursday,4,247,10,D22,Toronto,20,Alderwood (20),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,SL,MT,24,REDWHI,,STOLEN,1452,"{'type': 'Point', 'coordinates': (-79.53555468, 43.60863956)}",Alderwood,20,No Designation,12054,11904,0.013000000000000001,4732,4616,2435,4.95,6045,4090,355,1285,195,65,65,0.010752688172043012
-1461,9187,GO-20143286811,THEFT UNDER,2014-11-11,2014,November,Tuesday,11,315,7,2014-11-12,2014,November,Wednesday,12,316,10,D22,Toronto,20,Alderwood (20),Go Station,Transit,MIELE,TT150,MT,0,RED,300.0,STOLEN,1453,"{'type': 'Point', 'coordinates': (-79.54486409, 43.59304896)}",Alderwood,20,No Designation,12054,11904,0.013000000000000001,4732,4616,2435,4.95,6045,4090,355,1285,195,65,65,0.010752688172043012
-1462,10360,GO-20151498533,THEFT UNDER,2015-08-25,2015,August,Tuesday,25,237,16,2015-08-31,2015,August,Monday,31,243,7,D22,Toronto,20,Alderwood (20),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,ROCKY MOUNTAIN,STRICK,MT,18,BLU,589.0,STOLEN,1454,"{'type': 'Point', 'coordinates': (-79.54608863, 43.6103777)}",Alderwood,20,No Designation,12054,11904,0.013000000000000001,4732,4616,2435,4.95,6045,4090,355,1285,195,65,65,0.010752688172043012
-1463,11303,GO-2016823779,THEFT UNDER,2016-05-08,2016,May,Sunday,8,129,12,2016-05-13,2016,May,Friday,13,134,15,D22,Toronto,20,Alderwood (20),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,ORBEA,TO,18,WHI,1000.0,STOLEN,1455,"{'type': 'Point', 'coordinates': (-79.55327892, 43.60656289)}",Alderwood,20,No Designation,12054,11904,0.013000000000000001,4732,4616,2435,4.95,6045,4090,355,1285,195,65,65,0.010752688172043012
-1464,11304,GO-2016823779,THEFT UNDER,2016-05-08,2016,May,Sunday,8,129,12,2016-05-13,2016,May,Friday,13,134,15,D22,Toronto,20,Alderwood (20),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,STUMPJUMPER,MT,18,BLU,1750.0,STOLEN,1456,"{'type': 'Point', 'coordinates': (-79.55327892, 43.60656289)}",Alderwood,20,No Designation,12054,11904,0.013000000000000001,4732,4616,2435,4.95,6045,4090,355,1285,195,65,65,0.010752688172043012
-1465,14550,GO-20199024220,THEFT UNDER,2019-07-28,2019,July,Sunday,28,209,21,2019-07-29,2019,July,Monday,29,210,12,D22,Toronto,20,Alderwood (20),"Apartment (Rooming House, Condo)",Apartment,UK,"VIKING HT 29""""",MT,21,BLK,200.0,STOLEN,1457,"{'type': 'Point', 'coordinates': (-79.55211075, 43.60993279)}",Alderwood,20,No Designation,12054,11904,0.013000000000000001,4732,4616,2435,4.95,6045,4090,355,1285,195,65,65,0.010752688172043012
-1466,14989,GO-201649953,PROPERTY - FOUND,2016-01-08,2016,January,Friday,8,8,21,2016-01-09,2016,January,Saturday,9,9,11,D22,Toronto,20,Alderwood (20),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,860,MT,18,SIL,,RECOVERED,1458,"{'type': 'Point', 'coordinates': (-79.54279349, 43.60460619)}",Alderwood,20,No Designation,12054,11904,0.013000000000000001,4732,4616,2435,4.95,6045,4090,355,1285,195,65,65,0.010752688172043012
-1467,17690,GO-2020405035,THEFT OF EBIKE OVER $5000,2020-02-07,2020,February,Friday,7,38,17,2020-02-26,2020,February,Wednesday,26,57,11,D22,Toronto,20,Alderwood (20),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,EXPLORE-E+2,EL,18,BLK,3499.0,STOLEN,1459,"{'type': 'Point', 'coordinates': (-79.53613664, 43.603737470000006)}",Alderwood,20,No Designation,12054,11904,0.013000000000000001,4732,4616,2435,4.95,6045,4090,355,1285,195,65,65,0.010752688172043012
-1468,17691,GO-2020405035,THEFT OF EBIKE OVER $5000,2020-02-07,2020,February,Friday,7,38,17,2020-02-26,2020,February,Wednesday,26,57,11,D22,Toronto,20,Alderwood (20),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,EXPLORE-E+2 GTS,EL,18,BLK,3499.0,STOLEN,1460,"{'type': 'Point', 'coordinates': (-79.53613664, 43.603737470000006)}",Alderwood,20,No Designation,12054,11904,0.013000000000000001,4732,4616,2435,4.95,6045,4090,355,1285,195,65,65,0.010752688172043012
-1469,17692,GO-2020405035,THEFT OF EBIKE OVER $5000,2020-02-07,2020,February,Friday,7,38,17,2020-02-26,2020,February,Wednesday,26,57,11,D22,Toronto,20,Alderwood (20),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,EXPLORE-E+2 GTS,EL,18,BLK,3499.0,STOLEN,1461,"{'type': 'Point', 'coordinates': (-79.53613664, 43.603737470000006)}",Alderwood,20,No Designation,12054,11904,0.013000000000000001,4732,4616,2435,4.95,6045,4090,355,1285,195,65,65,0.010752688172043012
-1470,17693,GO-2020405035,THEFT OF EBIKE OVER $5000,2020-02-07,2020,February,Friday,7,38,17,2020-02-26,2020,February,Wednesday,26,57,11,D22,Toronto,20,Alderwood (20),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,EXPLORE-E+2 GTS,EL,18,BLK,3499.0,STOLEN,1462,"{'type': 'Point', 'coordinates': (-79.53613664, 43.603737470000006)}",Alderwood,20,No Designation,12054,11904,0.013000000000000001,4732,4616,2435,4.95,6045,4090,355,1285,195,65,65,0.010752688172043012
-1471,17694,GO-2020405035,THEFT OF EBIKE OVER $5000,2020-02-07,2020,February,Friday,7,38,17,2020-02-26,2020,February,Wednesday,26,57,11,D22,Toronto,20,Alderwood (20),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,EXPLORE-E+2 GTS,EL,18,BLK,3499.0,STOLEN,1463,"{'type': 'Point', 'coordinates': (-79.53613664, 43.603737470000006)}",Alderwood,20,No Designation,12054,11904,0.013000000000000001,4732,4616,2435,4.95,6045,4090,355,1285,195,65,65,0.010752688172043012
-1472,17695,GO-2020405035,THEFT OF EBIKE OVER $5000,2020-02-07,2020,February,Friday,7,38,17,2020-02-26,2020,February,Wednesday,26,57,11,D22,Toronto,20,Alderwood (20),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,EXPLORE-E+2 GTS,EL,18,BLK,3499.0,STOLEN,1464,"{'type': 'Point', 'coordinates': (-79.53613664, 43.603737470000006)}",Alderwood,20,No Designation,12054,11904,0.013000000000000001,4732,4616,2435,4.95,6045,4090,355,1285,195,65,65,0.010752688172043012
-1473,17696,GO-2020405035,THEFT OF EBIKE OVER $5000,2020-02-07,2020,February,Friday,7,38,17,2020-02-26,2020,February,Wednesday,26,57,11,D22,Toronto,20,Alderwood (20),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,EXPLORE-E+2,EL,18,BLK,3499.0,STOLEN,1465,"{'type': 'Point', 'coordinates': (-79.53613664, 43.603737470000006)}",Alderwood,20,No Designation,12054,11904,0.013000000000000001,4732,4616,2435,4.95,6045,4090,355,1285,195,65,65,0.010752688172043012
-1474,17697,GO-2020405035,THEFT OF EBIKE OVER $5000,2020-02-07,2020,February,Friday,7,38,17,2020-02-26,2020,February,Wednesday,26,57,11,D22,Toronto,20,Alderwood (20),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,EXPLORE-E+2,EL,18,BLK,3499.0,STOLEN,1466,"{'type': 'Point', 'coordinates': (-79.53613664, 43.603737470000006)}",Alderwood,20,No Designation,12054,11904,0.013000000000000001,4732,4616,2435,4.95,6045,4090,355,1285,195,65,65,0.010752688172043012
-1475,17846,GO-20189020475,THEFT UNDER - BICYCLE,2018-06-26,2018,June,Tuesday,26,177,7,2018-06-27,2018,June,Wednesday,27,178,23,D22,Toronto,20,Alderwood (20),Go Station,Transit,CC,VANDAL,MT,21,WHI,100.0,STOLEN,1467,"{'type': 'Point', 'coordinates': (-79.54360897, 43.59319216)}",Alderwood,20,No Designation,12054,11904,0.013000000000000001,4732,4616,2435,4.95,6045,4090,355,1285,195,65,65,0.010752688172043012
-1476,22002,GO-20142094230,THEFT UNDER,2014-05-16,2014,May,Friday,16,136,21,2014-05-16,2014,May,Friday,16,136,22,D22,Toronto,20,Alderwood (20),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,MT,12,BLK,20.0,STOLEN,1468,"{'type': 'Point', 'coordinates': (-79.53613664, 43.603737470000006)}",Alderwood,20,No Designation,12054,11904,0.013000000000000001,4732,4616,2435,4.95,6045,4090,355,1285,195,65,65,0.010752688172043012
-1477,24037,GO-2019897043,THEFT UNDER,2019-05-16,2019,May,Thursday,16,136,6,2019-05-17,2019,May,Friday,17,137,17,D22,Toronto,20,Alderwood (20),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,TIAGRA,OT,18,BLKYEL,1200.0,STOLEN,1469,"{'type': 'Point', 'coordinates': (-79.55211075, 43.60993279)}",Alderwood,20,No Designation,12054,11904,0.013000000000000001,4732,4616,2435,4.95,6045,4090,355,1285,195,65,65,0.010752688172043012
-1478,12084,GO-20161438418,B&E,2016-08-15,2016,August,Monday,15,228,1,2016-08-15,2016,August,Monday,15,228,4,D31,Toronto,21,Humber Summit (21),"Dealership (Car, Motorcycle, Marine, Trailer, Etc.)",Commercial,OTHER,UNKNOWN,SC,1,,1500.0,STOLEN,1494,"{'type': 'Point', 'coordinates': (-79.56051931, 43.76741635)}",Humber Summit,21,NIA,12416,12525,-0.009000000000000001,4288,3897,1570,7.91,5050,3225,365,1305,95,10,35,0.0019801980198019802
-1479,24065,GO-20199022463,THEFT UNDER,2019-07-05,2019,July,Friday,5,186,17,2019-07-16,2019,July,Tuesday,16,197,9,D22,Toronto,20,Alderwood (20),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,SOLARIS,RG,18,BLK,100.0,STOLEN,1470,"{'type': 'Point', 'coordinates': (-79.5473257, 43.60658124)}",Alderwood,20,No Designation,12054,11904,0.013000000000000001,4732,4616,2435,4.95,6045,4090,355,1285,195,65,65,0.010752688172043012
-1480,24318,GO-20189019734,THEFT UNDER - BICYCLE,2018-06-21,2018,June,Thursday,21,172,17,2018-06-21,2018,June,Thursday,21,172,22,D22,Toronto,20,Alderwood (20),Go Station,Transit,SC,APHRODITE WID,MT,21,SIL,100.0,STOLEN,1471,"{'type': 'Point', 'coordinates': (-79.541594, 43.59385442)}",Alderwood,20,No Designation,12054,11904,0.013000000000000001,4732,4616,2435,4.95,6045,4090,355,1285,195,65,65,0.010752688172043012
-1481,24335,GO-20189021621,THEFT UNDER - BICYCLE,2018-07-05,2018,July,Thursday,5,186,7,2018-07-09,2018,July,Monday,9,190,15,D22,Toronto,20,Alderwood (20),Go Station,Transit,OT,,OT,21,WHI,300.0,STOLEN,1472,"{'type': 'Point', 'coordinates': (-79.54486409, 43.59304896)}",Alderwood,20,No Designation,12054,11904,0.013000000000000001,4732,4616,2435,4.95,6045,4090,355,1285,195,65,65,0.010752688172043012
-1482,24337,GO-20189022133,THEFT UNDER - BICYCLE,2018-07-12,2018,July,Thursday,12,193,0,2018-07-12,2018,July,Thursday,12,193,7,D22,Toronto,20,Alderwood (20),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,TRANCE 2,MT,11,BLK,1800.0,STOLEN,1473,"{'type': 'Point', 'coordinates': (-79.54688342, 43.59766594)}",Alderwood,20,No Designation,12054,11904,0.013000000000000001,4732,4616,2435,4.95,6045,4090,355,1285,195,65,65,0.010752688172043012
-1483,24500,GO-20159010864,THEFT UNDER,2015-12-12,2015,December,Saturday,12,346,23,2015-12-13,2015,December,Sunday,13,347,10,D22,Toronto,20,Alderwood (20),"Private Property Structure (Pool, Shed, Detached Garage)",Other,RM,,MT,21,GRY,1200.0,STOLEN,1474,"{'type': 'Point', 'coordinates': (-79.53220571, 43.60698119)}",Alderwood,20,No Designation,12054,11904,0.013000000000000001,4732,4616,2435,4.95,6045,4090,355,1285,195,65,65,0.010752688172043012
-1484,24571,GO-20179006728,THEFT UNDER - BICYCLE,2017-05-15,2017,May,Monday,15,135,15,2017-05-21,2017,May,Sunday,21,141,15,D22,Toronto,20,Alderwood (20),"Apartment (Rooming House, Condo)",Apartment,NO,INDIE 3,MT,18,BLK,700.0,STOLEN,1475,"{'type': 'Point', 'coordinates': (-79.54645395, 43.60141187)}",Alderwood,20,No Designation,12054,11904,0.013000000000000001,4732,4616,2435,4.95,6045,4090,355,1285,195,65,65,0.010752688172043012
-1485,212,GO-2017647466,THEFT UNDER - BICYCLE,2017-04-12,2017,April,Wednesday,12,102,18,2017-04-12,2017,April,Wednesday,12,102,18,D31,Toronto,21,Humber Summit (21),Bar / Restaurant,Commercial,CCM,,MT,6,BLKYEL,255.0,STOLEN,1476,"{'type': 'Point', 'coordinates': (-79.55874466, 43.74855851)}",Humber Summit,21,NIA,12416,12525,-0.009000000000000001,4288,3897,1570,7.91,5050,3225,365,1305,95,10,35,0.0019801980198019802
-1486,853,GO-20171264932,THEFT UNDER - BICYCLE,2017-07-14,2017,July,Friday,14,195,20,2017-07-14,2017,July,Friday,14,195,20,D31,Toronto,21,Humber Summit (21),"Open Areas (Lakes, Parks, Rivers)",Outside,OTHER,UNKNOWN,BM,1,BLK,44.0,STOLEN,1477,"{'type': 'Point', 'coordinates': (-79.5606996, 43.75247875)}",Humber Summit,21,NIA,12416,12525,-0.009000000000000001,4288,3897,1570,7.91,5050,3225,365,1305,95,10,35,0.0019801980198019802
-1487,12017,GO-20169008342,THEFT UNDER,2016-08-07,2016,August,Sunday,7,220,10,2016-08-07,2016,August,Sunday,7,220,14,D33,Toronto,52,Bayview Village (52),Unknown,Other,OT,2014 TRAIL X2,MT,24,DGR,500.0,STOLEN,3629,"{'type': 'Point', 'coordinates': (-79.38801507, 43.76658916)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168
-1488,2796,GO-20189021789,THEFT UNDER - BICYCLE,2018-07-09,2018,July,Monday,9,190,21,2018-07-10,2018,July,Tuesday,10,191,0,D31,Toronto,21,Humber Summit (21),"Private Property Structure (Pool, Shed, Detached Garage)",Other,HF,,BM,1,BLK,138.0,STOLEN,1478,"{'type': 'Point', 'coordinates': (-79.57330377, 43.75555469)}",Humber Summit,21,NIA,12416,12525,-0.009000000000000001,4288,3897,1570,7.91,5050,3225,365,1305,95,10,35,0.0019801980198019802
-1489,3543,GO-20189031656,THEFT UNDER - BICYCLE,2018-09-23,2018,September,Sunday,23,266,17,2018-09-23,2018,September,Sunday,23,266,21,D31,Toronto,21,Humber Summit (21),"Private Property Structure (Pool, Shed, Detached Garage)",Other,HF,,BM,1,PLE,0.0,STOLEN,1479,"{'type': 'Point', 'coordinates': (-79.57330377, 43.75555469)}",Humber Summit,21,NIA,12416,12525,-0.009000000000000001,4288,3897,1570,7.91,5050,3225,365,1305,95,10,35,0.0019801980198019802
-1490,4603,GO-20199020069,THEFT UNDER,2019-06-20,2019,June,Thursday,20,171,14,2019-06-25,2019,June,Tuesday,25,176,14,D31,Toronto,21,Humber Summit (21),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,MOUNTAIN,MT,20,BLK,976.0,STOLEN,1480,"{'type': 'Point', 'coordinates': (-79.56906415000002, 43.75905627)}",Humber Summit,21,NIA,12416,12525,-0.009000000000000001,4288,3897,1570,7.91,5050,3225,365,1305,95,10,35,0.0019801980198019802
-1491,4604,GO-20199020069,THEFT UNDER,2019-06-20,2019,June,Thursday,20,171,14,2019-06-25,2019,June,Tuesday,25,176,14,D31,Toronto,21,Humber Summit (21),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,,MT,21,BLK,400.0,UNKNOWN,1481,"{'type': 'Point', 'coordinates': (-79.56906415000002, 43.75905627)}",Humber Summit,21,NIA,12416,12525,-0.009000000000000001,4288,3897,1570,7.91,5050,3225,365,1305,95,10,35,0.0019801980198019802
-1492,5501,GO-20191960657,THEFT OF MOTOR VEHICLE,2019-10-10,2019,October,Thursday,10,283,19,2019-10-10,2019,October,Thursday,10,283,22,D31,Toronto,21,Humber Summit (21),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,RG,1,,180.0,STOLEN,1482,"{'type': 'Point', 'coordinates': (-79.56231951, 43.74776626)}",Humber Summit,21,NIA,12416,12525,-0.009000000000000001,4288,3897,1570,7.91,5050,3225,365,1305,95,10,35,0.0019801980198019802
-1493,5502,GO-20191960657,THEFT OF MOTOR VEHICLE,2019-10-10,2019,October,Thursday,10,283,19,2019-10-10,2019,October,Thursday,10,283,22,D31,Toronto,21,Humber Summit (21),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,OT,1,,100.0,STOLEN,1483,"{'type': 'Point', 'coordinates': (-79.56231951, 43.74776626)}",Humber Summit,21,NIA,12416,12525,-0.009000000000000001,4288,3897,1570,7.91,5050,3225,365,1305,95,10,35,0.0019801980198019802
-1494,5503,GO-20191960657,THEFT OF MOTOR VEHICLE,2019-10-10,2019,October,Thursday,10,283,19,2019-10-10,2019,October,Thursday,10,283,22,D31,Toronto,21,Humber Summit (21),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,BM,1,,80.0,STOLEN,1484,"{'type': 'Point', 'coordinates': (-79.56231951, 43.74776626)}",Humber Summit,21,NIA,12416,12525,-0.009000000000000001,4288,3897,1570,7.91,5050,3225,365,1305,95,10,35,0.0019801980198019802
-1495,5789,GO-20199042129,THEFT UNDER,2019-12-26,2019,December,Thursday,26,360,15,2019-12-27,2019,December,Friday,27,361,16,D31,Toronto,21,Humber Summit (21),Schools During Un-Supervised Activity,Educational,OT,SIRRUS,OT,8,RED,600.0,STOLEN,1485,"{'type': 'Point', 'coordinates': (-79.5606996, 43.75247875)}",Humber Summit,21,NIA,12416,12525,-0.009000000000000001,4288,3897,1570,7.91,5050,3225,365,1305,95,10,35,0.0019801980198019802
-1496,8104,GO-20142291464,CARELESS DRIVING- HTA,2014-06-14,2014,June,Saturday,14,165,19,2014-06-14,2014,June,Saturday,14,165,19,D31,Toronto,21,Humber Summit (21),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,ROSS,BOLT,BM,1,BLKSIL,,UNKNOWN,1486,"{'type': 'Point', 'coordinates': (-79.5633741, 43.75081894)}",Humber Summit,21,NIA,12416,12525,-0.009000000000000001,4288,3897,1570,7.91,5050,3225,365,1305,95,10,35,0.0019801980198019802
-1497,8390,GO-20149004890,THEFT UNDER,2014-07-08,2014,July,Tuesday,8,189,13,2014-07-10,2014,July,Thursday,10,191,18,D31,Toronto,21,Humber Summit (21),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MONTANA,MT,1,PNK,0.0,STOLEN,1487,"{'type': 'Point', 'coordinates': (-79.54234005, 43.752091)}",Humber Summit,21,NIA,12416,12525,-0.009000000000000001,4288,3897,1570,7.91,5050,3225,365,1305,95,10,35,0.0019801980198019802
-1498,8588,GO-20142635827,THEFT UNDER,2014-07-15,2014,July,Tuesday,15,196,8,2014-08-04,2014,August,Monday,4,216,18,D31,Toronto,21,Humber Summit (21),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,DAYMAK,VIENNA,EL,3,BLU,1500.0,STOLEN,1488,"{'type': 'Point', 'coordinates': (-79.55801745, 43.76000003)}",Humber Summit,21,NIA,12416,12525,-0.009000000000000001,4288,3897,1570,7.91,5050,3225,365,1305,95,10,35,0.0019801980198019802
-1499,8589,GO-20142636442,THEFT UNDER,2014-08-04,2014,August,Monday,4,216,19,2014-08-09,2014,August,Saturday,9,221,16,D31,Toronto,21,Humber Summit (21),"Open Areas (Lakes, Parks, Rivers)",Outside,NEXT,CHILDRENS,RG,6,WHI,90.0,STOLEN,1489,"{'type': 'Point', 'coordinates': (-79.5606996, 43.75247875)}",Humber Summit,21,NIA,12416,12525,-0.009000000000000001,4288,3897,1570,7.91,5050,3225,365,1305,95,10,35,0.0019801980198019802
-1500,8829,GO-20142822784,THEFT OF MOTOR VEHICLE,2014-09-01,2014,September,Monday,1,244,7,2014-09-01,2014,September,Monday,1,244,23,D31,Toronto,21,Humber Summit (21),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,BMC,BM,18,,5199.0,STOLEN,1490,"{'type': 'Point', 'coordinates': (-79.56906415000002, 43.75905627)}",Humber Summit,21,NIA,12416,12525,-0.009000000000000001,4288,3897,1570,7.91,5050,3225,365,1305,95,10,35,0.0019801980198019802
-1501,10726,GO-20159009399,THEFT UNDER,2015-10-31,2015,October,Saturday,31,304,20,2015-11-03,2015,November,Tuesday,3,307,20,D31,Toronto,21,Humber Summit (21),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,SC,34,BLK,800.0,STOLEN,1491,"{'type': 'Point', 'coordinates': (-79.55759297, 43.74879602)}",Humber Summit,21,NIA,12416,12525,-0.009000000000000001,4288,3897,1570,7.91,5050,3225,365,1305,95,10,35,0.0019801980198019802
-1502,11726,GO-20161187414,THEFT UNDER,2016-06-28,2016,June,Tuesday,28,180,7,2016-07-07,2016,July,Thursday,7,189,10,D31,Toronto,21,Humber Summit (21),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CARA,,SC,1,ONG,1000.0,STOLEN,1492,"{'type': 'Point', 'coordinates': (-79.56504966, 43.74808259)}",Humber Summit,21,NIA,12416,12525,-0.009000000000000001,4288,3897,1570,7.91,5050,3225,365,1305,95,10,35,0.0019801980198019802
-1503,12083,GO-20161438418,B&E,2016-08-15,2016,August,Monday,15,228,1,2016-08-15,2016,August,Monday,15,228,4,D31,Toronto,21,Humber Summit (21),"Dealership (Car, Motorcycle, Marine, Trailer, Etc.)",Commercial,OTHER,UNKNOWN,SC,1,,1000.0,STOLEN,1493,"{'type': 'Point', 'coordinates': (-79.56051931, 43.76741635)}",Humber Summit,21,NIA,12416,12525,-0.009000000000000001,4288,3897,1570,7.91,5050,3225,365,1305,95,10,35,0.0019801980198019802
-1504,12774,GO-20162042566,B&E,2016-11-17,2016,November,Thursday,17,322,1,2016-11-17,2016,November,Thursday,17,322,10,D31,Toronto,21,Humber Summit (21),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,ABIBABA,LMDB 110A,OT,0,,,STOLEN,1495,"{'type': 'Point', 'coordinates': (-79.55999171, 43.75625404)}",Humber Summit,21,NIA,12416,12525,-0.009000000000000001,4288,3897,1570,7.91,5050,3225,365,1305,95,10,35,0.0019801980198019802
-1505,12775,GO-20162042566,B&E,2016-11-17,2016,November,Thursday,17,322,1,2016-11-17,2016,November,Thursday,17,322,10,D31,Toronto,21,Humber Summit (21),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TAO TAO,125D,TO,0,,,STOLEN,1496,"{'type': 'Point', 'coordinates': (-79.55999171, 43.75625404)}",Humber Summit,21,NIA,12416,12525,-0.009000000000000001,4288,3897,1570,7.91,5050,3225,365,1305,95,10,35,0.0019801980198019802
-1506,14302,GO-20201609404,ROBBERY - MUGGING,2020-08-26,2020,August,Wednesday,26,239,14,2020-08-26,2020,August,Wednesday,26,239,14,D31,Toronto,21,Humber Summit (21),Schools During Un-Supervised Activity,Educational,UNKNOWN MAKE,,BM,0,BLK,400.0,RECOVERED,1497,"{'type': 'Point', 'coordinates': (-79.57964302, 43.75714241)}",Humber Summit,21,NIA,12416,12525,-0.009000000000000001,4288,3897,1570,7.91,5050,3225,365,1305,95,10,35,0.0019801980198019802
-1507,14927,GO-20142638951,THEFT OF MOTOR VEHICLE,2014-08-01,2014,August,Friday,1,213,6,2014-08-05,2014,August,Tuesday,5,217,8,D31,Toronto,21,Humber Summit (21),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN,,OT,0,,,STOLEN,1498,"{'type': 'Point', 'coordinates': (-79.54117259000002, 43.76575329)}",Humber Summit,21,NIA,12416,12525,-0.009000000000000001,4288,3897,1570,7.91,5050,3225,365,1305,95,10,35,0.0019801980198019802
-1508,14971,GO-20151432631,THEFT UNDER,2015-08-15,2015,August,Saturday,15,227,21,2015-08-20,2015,August,Thursday,20,232,11,D31,Toronto,21,Humber Summit (21),"Open Areas (Lakes, Parks, Rivers)",Outside,SUPERCYCLE,,MT,4,RED,147.0,STOLEN,1499,"{'type': 'Point', 'coordinates': (-79.5606996, 43.75247875)}",Humber Summit,21,NIA,12416,12525,-0.009000000000000001,4288,3897,1570,7.91,5050,3225,365,1305,95,10,35,0.0019801980198019802
-1509,15031,GO-20169010733,THEFT UNDER - BICYCLE,2016-09-19,2016,September,Monday,19,263,16,2016-09-19,2016,September,Monday,19,263,17,D31,Toronto,21,Humber Summit (21),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,MT,20,BLK,500.0,STOLEN,1500,"{'type': 'Point', 'coordinates': (-79.56939982, 43.75669307)}",Humber Summit,21,NIA,12416,12525,-0.009000000000000001,4288,3897,1570,7.91,5050,3225,365,1305,95,10,35,0.0019801980198019802
-1510,17746,GO-20171825601,ROBBERY - MUGGING,2017-10-08,2017,October,Sunday,8,281,0,2017-10-08,2017,October,Sunday,8,281,14,D31,Toronto,21,Humber Summit (21),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,MT,0,GRNBLK,200.0,STOLEN,1501,"{'type': 'Point', 'coordinates': (-79.54903544, 43.7506496)}",Humber Summit,21,NIA,12416,12525,-0.009000000000000001,4288,3897,1570,7.91,5050,3225,365,1305,95,10,35,0.0019801980198019802
-1511,17944,GO-20142811724,PROPERTY - FOUND,2014-08-31,2014,August,Sunday,31,243,7,2014-08-31,2014,August,Sunday,31,243,10,D31,Toronto,21,Humber Summit (21),"Open Areas (Lakes, Parks, Rivers)",Outside,SUPERCYCLE,IMPULSE SE,MT,10,PNKSIL,,STOLEN,1502,"{'type': 'Point', 'coordinates': (-79.57725427, 43.75362155)}",Humber Summit,21,NIA,12416,12525,-0.009000000000000001,4288,3897,1570,7.91,5050,3225,365,1305,95,10,35,0.0019801980198019802
-1512,21065,GO-20191792614,THEFT UNDER - BICYCLE,2019-09-17,2019,September,Tuesday,17,260,8,2019-09-18,2019,September,Wednesday,18,261,7,D31,Toronto,21,Humber Summit (21),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,VANDAL,MT,21,REDWHI,250.0,STOLEN,1503,"{'type': 'Point', 'coordinates': (-79.56602556, 43.76058759)}",Humber Summit,21,NIA,12416,12525,-0.009000000000000001,4288,3897,1570,7.91,5050,3225,365,1305,95,10,35,0.0019801980198019802
-1513,24481,GO-20159005841,THEFT UNDER,2015-08-15,2015,August,Saturday,15,227,15,2015-08-15,2015,August,Saturday,15,227,16,D31,Toronto,21,Humber Summit (21),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,RALLYE DESCENT,MT,18,GRN,200.0,STOLEN,1504,"{'type': 'Point', 'coordinates': (-79.57116998, 43.75440342000001)}",Humber Summit,21,NIA,12416,12525,-0.009000000000000001,4288,3897,1570,7.91,5050,3225,365,1305,95,10,35,0.0019801980198019802
-1514,296,GO-2017739614,THEFT UNDER,2017-04-19,2017,April,Wednesday,19,109,10,2017-04-27,2017,April,Thursday,27,117,14,D31,Toronto,22,Humbermede (22),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KIDS,,OT,1,RED,,STOLEN,1505,"{'type': 'Point', 'coordinates': (-79.56125649, 43.74645016)}",Humbermede,22,NIA,15545,15853,-0.019,5390,5052,3565,4.36,6705,3925,505,2070,115,20,55,0.002982848620432513
-1515,6218,GO-20209013621,THEFT UNDER,2020-05-11,2020,May,Monday,11,132,16,2020-05-21,2020,May,Thursday,21,142,17,D31,Toronto,22,Humbermede (22),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,1,,180.0,STOLEN,1506,"{'type': 'Point', 'coordinates': (-79.54675254, 43.74912481)}",Humbermede,22,NIA,15545,15853,-0.019,5390,5052,3565,4.36,6705,3925,505,2070,115,20,55,0.002982848620432513
-1516,7027,GO-20201578470,THEFT OF MOTOR VEHICLE,2020-08-21,2020,August,Friday,21,234,20,2020-08-22,2020,August,Saturday,22,235,8,D31,Toronto,22,Humbermede (22),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,TR,0,BLU,75.0,STOLEN,1507,"{'type': 'Point', 'coordinates': (-79.54209151, 43.7508487)}",Humbermede,22,NIA,15545,15853,-0.019,5390,5052,3565,4.36,6705,3925,505,2070,115,20,55,0.002982848620432513
-1517,9261,GO-201580854,THEFT UNDER,2015-01-13,2015,January,Tuesday,13,13,8,2015-01-14,2015,January,Wednesday,14,14,20,D31,Toronto,22,Humbermede (22),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,MT,0,BLK,,STOLEN,1508,"{'type': 'Point', 'coordinates': (-79.54209151, 43.7508487)}",Humbermede,22,NIA,15545,15853,-0.019,5390,5052,3565,4.36,6705,3925,505,2070,115,20,55,0.002982848620432513
-1518,9262,GO-201580854,THEFT UNDER,2015-01-13,2015,January,Tuesday,13,13,8,2015-01-14,2015,January,Wednesday,14,14,20,D31,Toronto,22,Humbermede (22),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,,MT,21,ONG,,STOLEN,1509,"{'type': 'Point', 'coordinates': (-79.54209151, 43.7508487)}",Humbermede,22,NIA,15545,15853,-0.019,5390,5052,3565,4.36,6705,3925,505,2070,115,20,55,0.002982848620432513
-1519,11244,GO-2016751364,THEFT UNDER - BICYCLE,2016-04-28,2016,April,Thursday,28,119,18,2016-05-02,2016,May,Monday,2,123,15,D31,Toronto,22,Humbermede (22),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,LOCURA,OT,21,WHIRED,340.0,STOLEN,1510,"{'type': 'Point', 'coordinates': (-79.54518685, 43.74788175)}",Humbermede,22,NIA,15545,15853,-0.019,5390,5052,3565,4.36,6705,3925,505,2070,115,20,55,0.002982848620432513
-1520,14590,GO-20199034038,THEFT UNDER,2019-10-13,2019,October,Sunday,13,286,14,2019-10-16,2019,October,Wednesday,16,289,0,D31,Toronto,22,Humbermede (22),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,RAINIER,MT,21,BLU,759.0,STOLEN,1511,"{'type': 'Point', 'coordinates': (-79.56125649, 43.74645016)}",Humbermede,22,NIA,15545,15853,-0.019,5390,5052,3565,4.36,6705,3925,505,2070,115,20,55,0.002982848620432513
-1521,17981,GO-20159004918,THEFT UNDER,2015-07-23,2015,July,Thursday,23,204,14,2015-07-23,2015,July,Thursday,23,204,21,D31,Toronto,22,Humbermede (22),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RM,,MT,21,BLK,0.0,STOLEN,1512,"{'type': 'Point', 'coordinates': (-79.54519103, 43.739648)}",Humbermede,22,NIA,15545,15853,-0.019,5390,5052,3565,4.36,6705,3925,505,2070,115,20,55,0.002982848620432513
-1522,18023,GO-2016894381,THEFT UNDER - BICYCLE,2016-05-24,2016,May,Tuesday,24,145,13,2016-05-24,2016,May,Tuesday,24,145,14,D31,Toronto,22,Humbermede (22),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,RG,0,BLK,60.0,STOLEN,1513,"{'type': 'Point', 'coordinates': (-79.55483845, 43.74809821)}",Humbermede,22,NIA,15545,15853,-0.019,5390,5052,3565,4.36,6705,3925,505,2070,115,20,55,0.002982848620432513
-1523,18046,GO-20161482303,THEFT UNDER - BICYCLE,2016-08-21,2016,August,Sunday,21,234,19,2016-08-21,2016,August,Sunday,21,234,19,D31,Toronto,22,Humbermede (22),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NEXT,MOUNTAIN,MT,5,WHI,400.0,STOLEN,1514,"{'type': 'Point', 'coordinates': (-79.54518685, 43.74788175)}",Humbermede,22,NIA,15545,15853,-0.019,5390,5052,3565,4.36,6705,3925,505,2070,115,20,55,0.002982848620432513
-1524,21137,GO-20209013721,THEFT UNDER,2020-05-20,2020,May,Wednesday,20,141,18,2020-05-22,2020,May,Friday,22,143,18,D31,Toronto,22,Humbermede (22),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,10,SIL,0.0,STOLEN,1515,"{'type': 'Point', 'coordinates': (-79.54675254, 43.74912481)}",Humbermede,22,NIA,15545,15853,-0.019,5390,5052,3565,4.36,6705,3925,505,2070,115,20,55,0.002982848620432513
-1525,21192,GO-20171348800,THEFT UNDER - BICYCLE,2017-07-27,2017,July,Thursday,27,208,13,2017-07-27,2017,July,Thursday,27,208,16,D31,Toronto,22,Humbermede (22),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,MT,21,,,STOLEN,1516,"{'type': 'Point', 'coordinates': (-79.55347525, 43.74770522)}",Humbermede,22,NIA,15545,15853,-0.019,5390,5052,3565,4.36,6705,3925,505,2070,115,20,55,0.002982848620432513
-1526,22008,GO-20149003739,THEFT UNDER,2014-06-01,2014,June,Sunday,1,152,19,2014-06-01,2014,June,Sunday,1,152,19,D31,Toronto,22,Humbermede (22),"Apartment (Rooming House, Condo)",Apartment,IH,DETRACT,MT,24,GRY,600.0,STOLEN,1517,"{'type': 'Point', 'coordinates': (-79.53658066, 43.73962898)}",Humbermede,22,NIA,15545,15853,-0.019,5390,5052,3565,4.36,6705,3925,505,2070,115,20,55,0.002982848620432513
-1527,22009,GO-20142205920,THEFT UNDER,2014-06-02,2014,June,Monday,2,153,13,2014-06-02,2014,June,Monday,2,153,16,D31,Toronto,22,Humbermede (22),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,GIANT,,MT,21,BLU,300.0,STOLEN,1518,"{'type': 'Point', 'coordinates': (-79.53622272, 43.75329134)}",Humbermede,22,NIA,15545,15853,-0.019,5390,5052,3565,4.36,6705,3925,505,2070,115,20,55,0.002982848620432513
-1528,22082,GO-20159006595,THEFT UNDER,2015-08-21,2015,August,Friday,21,233,14,2015-09-01,2015,September,Tuesday,1,244,10,D31,Toronto,22,Humbermede (22),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SU,,MT,4,PNK,150.0,STOLEN,1519,"{'type': 'Point', 'coordinates': (-79.54518685, 43.74788175)}",Humbermede,22,NIA,15545,15853,-0.019,5390,5052,3565,4.36,6705,3925,505,2070,115,20,55,0.002982848620432513
-1529,24177,GO-20209013621,THEFT UNDER,2020-05-11,2020,May,Monday,11,132,16,2020-05-21,2020,May,Thursday,21,142,17,D31,Toronto,22,Humbermede (22),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,1,,180.0,STOLEN,1520,"{'type': 'Point', 'coordinates': (-79.54675254, 43.74912481)}",Humbermede,22,NIA,15545,15853,-0.019,5390,5052,3565,4.36,6705,3925,505,2070,115,20,55,0.002982848620432513
-1530,24228,GO-20171625823,THEFT UNDER - BICYCLE,2017-09-07,2017,September,Thursday,7,250,8,2017-09-12,2017,September,Tuesday,12,255,10,D31,Toronto,22,Humbermede (22),Schools During Supervised Activity,Educational,NAKAMURA,ECKO,RG,10,BLKRED,300.0,STOLEN,1521,"{'type': 'Point', 'coordinates': (-79.54156856, 43.74823463)}",Humbermede,22,NIA,15545,15853,-0.019,5390,5052,3565,4.36,6705,3925,505,2070,115,20,55,0.002982848620432513
-1531,24326,GO-20181190055,B&E,2018-01-08,2018,January,Monday,8,8,0,2018-06-30,2018,June,Saturday,30,181,14,D31,Toronto,22,Humbermede (22),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,OT,0,GRN,120.0,STOLEN,1522,"{'type': 'Point', 'coordinates': (-79.53081113, 43.74181383)}",Humbermede,22,NIA,15545,15853,-0.019,5390,5052,3565,4.36,6705,3925,505,2070,115,20,55,0.002982848620432513
-1532,24327,GO-20181190055,B&E,2018-01-08,2018,January,Monday,8,8,0,2018-06-30,2018,June,Saturday,30,181,14,D31,Toronto,22,Humbermede (22),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,FO,0,BLKBLU,250.0,STOLEN,1523,"{'type': 'Point', 'coordinates': (-79.53081113, 43.74181383)}",Humbermede,22,NIA,15545,15853,-0.019,5390,5052,3565,4.36,6705,3925,505,2070,115,20,55,0.002982848620432513
-1533,24478,GO-20151371796,THEFT UNDER,2015-08-06,2015,August,Thursday,6,218,13,2015-08-10,2015,August,Monday,10,222,17,D31,Toronto,22,Humbermede (22),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BIKE,,RC,10,BLU,130.0,STOLEN,1524,"{'type': 'Point', 'coordinates': (-79.55347525, 43.74770522)}",Humbermede,22,NIA,15545,15853,-0.019,5390,5052,3565,4.36,6705,3925,505,2070,115,20,55,0.002982848620432513
-1534,2594,GO-20189019024,THEFT UNDER - BICYCLE,2018-06-16,2018,June,Saturday,16,167,19,2018-06-17,2018,June,Sunday,17,168,14,D12,Toronto,23,Pelmo Park-Humberlea (23),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,NAVIGATOR 200,MT,14,DGR,100.0,STOLEN,1525,"{'type': 'Point', 'coordinates': (-79.51418951, 43.71017883)}",Pelmo Park-Humberlea,23,No Designation,10722,8710,0.231,3860,3710,2547,4.21,5300,3460,330,1375,85,10,40,0.0018867924528301887
-1535,2595,GO-20189019024,THEFT UNDER - BICYCLE,2018-06-16,2018,June,Saturday,16,167,19,2018-06-17,2018,June,Sunday,17,168,14,D12,Toronto,23,Pelmo Park-Humberlea (23),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,MT,21,LBL,500.0,STOLEN,1526,"{'type': 'Point', 'coordinates': (-79.51418951, 43.71017883)}",Pelmo Park-Humberlea,23,No Designation,10722,8710,0.231,3860,3710,2547,4.21,5300,3460,330,1375,85,10,40,0.0018867924528301887
-1536,3126,GO-20181440858,B&E,2018-08-04,2018,August,Saturday,4,216,21,2018-08-06,2018,August,Monday,6,218,10,D31,Toronto,23,Pelmo Park-Humberlea (23),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,OT,10,,600.0,STOLEN,1527,"{'type': 'Point', 'coordinates': (-79.53413102, 43.71520734)}",Pelmo Park-Humberlea,23,No Designation,10722,8710,0.231,3860,3710,2547,4.21,5300,3460,330,1375,85,10,40,0.0018867924528301887
-1537,3127,GO-20181440858,B&E,2018-08-04,2018,August,Saturday,4,216,21,2018-08-06,2018,August,Monday,6,218,10,D31,Toronto,23,Pelmo Park-Humberlea (23),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,SC,80,,5400.0,STOLEN,1528,"{'type': 'Point', 'coordinates': (-79.53413102, 43.71520734)}",Pelmo Park-Humberlea,23,No Designation,10722,8710,0.231,3860,3710,2547,4.21,5300,3460,330,1375,85,10,40,0.0018867924528301887
-1538,6105,GO-2020791048,THEFT UNDER,2020-04-23,2020,April,Thursday,23,114,16,2020-04-26,2020,April,Sunday,26,117,18,D12,Toronto,23,Pelmo Park-Humberlea (23),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,DIAMONDBACK,V LINK 1.0,MT,0,GRN,4000.0,STOLEN,1529,"{'type': 'Point', 'coordinates': (-79.52181244, 43.71328697)}",Pelmo Park-Humberlea,23,No Designation,10722,8710,0.231,3860,3710,2547,4.21,5300,3460,330,1375,85,10,40,0.0018867924528301887
-1539,6148,GO-20209012563,THEFT UNDER,2020-05-05,2020,May,Tuesday,5,126,14,2020-05-06,2020,May,Wednesday,6,127,9,D12,Toronto,23,Pelmo Park-Humberlea (23),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,DEL SOL PROJEKT,RG,5,BLK,550.0,STOLEN,1530,"{'type': 'Point', 'coordinates': (-79.51881483, 43.71211819)}",Pelmo Park-Humberlea,23,No Designation,10722,8710,0.231,3860,3710,2547,4.21,5300,3460,330,1375,85,10,40,0.0018867924528301887
-1540,6890,GO-20201448508,THEFT UNDER,2020-08-03,2020,August,Monday,3,216,0,2020-08-03,2020,August,Monday,3,216,19,D31,Toronto,23,Pelmo Park-Humberlea (23),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,RG,0,,175.0,STOLEN,1531,"{'type': 'Point', 'coordinates': (-79.53370704, 43.72946013)}",Pelmo Park-Humberlea,23,No Designation,10722,8710,0.231,3860,3710,2547,4.21,5300,3460,330,1375,85,10,40,0.0018867924528301887
-1541,6891,GO-20201448508,THEFT UNDER,2020-08-03,2020,August,Monday,3,216,0,2020-08-03,2020,August,Monday,3,216,19,D31,Toronto,23,Pelmo Park-Humberlea (23),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ZZZ,,RG,0,,75.0,STOLEN,1532,"{'type': 'Point', 'coordinates': (-79.53370704, 43.72946013)}",Pelmo Park-Humberlea,23,No Designation,10722,8710,0.231,3860,3710,2547,4.21,5300,3460,330,1375,85,10,40,0.0018867924528301887
-1542,9344,GO-20142455163,THEFT UNDER,2014-07-08,2014,July,Tuesday,8,189,12,2014-07-08,2014,July,Tuesday,8,189,12,D31,Toronto,23,Pelmo Park-Humberlea (23),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,RG,0,,750.0,STOLEN,1533,"{'type': 'Point', 'coordinates': (-79.5327668, 43.72636119)}",Pelmo Park-Humberlea,23,No Designation,10722,8710,0.231,3860,3710,2547,4.21,5300,3460,330,1375,85,10,40,0.0018867924528301887
-1543,24477,GO-20151354249,B&E,2015-08-02,2015,August,Sunday,2,214,10,2015-08-08,2015,August,Saturday,8,220,10,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCOTT,,MT,21,WHI,600.0,STOLEN,1534,"{'type': 'Point', 'coordinates': (-79.49119535, 43.61905507)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1544,14597,GO-20192109317,B&E,2019-11-01,2019,November,Friday,1,305,7,2019-11-01,2019,November,Friday,1,305,11,D31,Toronto,23,Pelmo Park-Humberlea (23),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,MT,12,BLK,1300.0,STOLEN,1535,"{'type': 'Point', 'coordinates': (-79.53401368, 43.73012864)}",Pelmo Park-Humberlea,23,No Designation,10722,8710,0.231,3860,3710,2547,4.21,5300,3460,330,1375,85,10,40,0.0018867924528301887
-1545,17930,GO-20142393930,THEFT OVER,2014-06-08,2014,June,Sunday,8,159,15,2014-07-03,2014,July,Thursday,3,184,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,MADONE,OT,21,BLK,3500.0,STOLEN,1536,"{'type': 'Point', 'coordinates': (-79.47400022, 43.6305708)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1546,24480,GO-20159005633,THEFT UNDER,2015-08-09,2015,August,Sunday,9,221,11,2015-08-11,2015,August,Tuesday,11,223,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,DB,OVERDRIVE COMP,MT,27,GRY,900.0,STOLEN,1537,"{'type': 'Point', 'coordinates': (-79.49540915, 43.60920772)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1547,17928,GO-20142344683,THEFT UNDER,2014-06-22,2014,June,Sunday,22,173,15,2014-06-22,2014,June,Sunday,22,173,15,D31,Toronto,23,Pelmo Park-Humberlea (23),Convenience Stores,Commercial,SUPERCYCLE,,RG,10,RED,200.0,STOLEN,1538,"{'type': 'Point', 'coordinates': (-79.53746202, 43.72037837)}",Pelmo Park-Humberlea,23,No Designation,10722,8710,0.231,3860,3710,2547,4.21,5300,3460,330,1375,85,10,40,0.0018867924528301887
-1548,17942,GO-20149005776,THEFT UNDER,2014-08-13,2014,August,Wednesday,13,225,0,2014-08-13,2014,August,Wednesday,13,225,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,6,GRY,300.0,STOLEN,1539,"{'type': 'Point', 'coordinates': (-79.49375994, 43.61719194)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1549,2564,GO-20189018724,THEFT UNDER,2018-06-13,2018,June,Wednesday,13,164,23,2018-06-14,2018,June,Thursday,14,165,18,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,RALEIGH,,MT,25,LBL,100.0,STOLEN,1540,"{'type': 'Point', 'coordinates': (-79.53105518, 43.59180861000001)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1550,2565,GO-20189018724,THEFT UNDER,2018-06-13,2018,June,Wednesday,13,164,23,2018-06-14,2018,June,Thursday,14,165,18,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,DB,,MT,20,BLK,100.0,STOLEN,1541,"{'type': 'Point', 'coordinates': (-79.53105518, 43.59180861000001)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1551,2661,GO-20181143362,THEFT UNDER - BICYCLE,2018-06-22,2018,June,Friday,22,173,17,2018-06-23,2018,June,Saturday,23,174,16,D22,Toronto,19,Long Branch (19),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,,MT,15,SIL,500.0,STOLEN,1542,"{'type': 'Point', 'coordinates': (-79.54491322, 43.59051582)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1552,2665,GO-20189020010,THEFT UNDER - BICYCLE,2018-06-23,2018,June,Saturday,23,174,16,2018-06-24,2018,June,Sunday,24,175,14,D22,Toronto,19,Long Branch (19),Go Station,Transit,NO,2016 INDIE 2,RG,9,GRY,1000.0,STOLEN,1543,"{'type': 'Point', 'coordinates': (-79.54491322, 43.59051582)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1553,2729,GO-20189020889,THEFT UNDER - BICYCLE,2018-07-01,2018,July,Sunday,1,182,15,2018-07-01,2018,July,Sunday,1,182,19,D22,Toronto,19,Long Branch (19),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,TEMPO,OT,21,SIL,220.0,STOLEN,1544,"{'type': 'Point', 'coordinates': (-79.53228262, 43.5905111)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1554,2781,GO-20181246626,THEFT UNDER - BICYCLE,2018-07-09,2018,July,Monday,9,190,4,2018-07-09,2018,July,Monday,9,190,4,D22,Toronto,19,Long Branch (19),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,SIRUS ELITE DIS,RG,18,ONG,1400.0,STOLEN,1545,"{'type': 'Point', 'coordinates': (-79.54098118, 43.59092268)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1555,2782,GO-20181246626,THEFT UNDER - BICYCLE,2018-07-09,2018,July,Monday,9,190,4,2018-07-09,2018,July,Monday,9,190,4,D22,Toronto,19,Long Branch (19),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,,RG,24,BLK,1000.0,STOLEN,1546,"{'type': 'Point', 'coordinates': (-79.54098118, 43.59092268)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1556,2918,GO-20189023455,THEFT UNDER - BICYCLE,2018-07-20,2018,July,Friday,20,201,8,2018-07-22,2018,July,Sunday,22,203,19,D22,Toronto,19,Long Branch (19),Go Station,Transit,OT,HYBRID,OT,21,BLU,300.0,STOLEN,1547,"{'type': 'Point', 'coordinates': (-79.52283716, 43.59485417)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1557,2926,GO-20189023508,THEFT UNDER - BICYCLE,2018-06-29,2018,June,Friday,29,180,9,2018-07-23,2018,July,Monday,23,204,10,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,OT,MODENA,OT,21,BLK,500.0,STOLEN,1548,"{'type': 'Point', 'coordinates': (-79.53397755, 43.59436142)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1558,2927,GO-20189023508,THEFT UNDER - BICYCLE,2018-06-29,2018,June,Friday,29,180,9,2018-07-23,2018,July,Monday,23,204,10,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,OT,MODENA,OT,21,BLK,500.0,STOLEN,1549,"{'type': 'Point', 'coordinates': (-79.53397755, 43.59436142)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1559,3305,GO-20189027698,THEFT UNDER - BICYCLE,2018-08-20,2018,August,Monday,20,232,17,2018-08-24,2018,August,Friday,24,236,10,D22,Toronto,19,Long Branch (19),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,WHISTLER 10,RG,12,BLU,769.0,STOLEN,1550,"{'type': 'Point', 'coordinates': (-79.52851381, 43.59457489)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1560,3704,GO-20189034149,THEFT UNDER - BICYCLE,2018-10-14,2018,October,Sunday,14,287,0,2018-10-15,2018,October,Monday,15,288,12,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,DB,OVERDRIVE 29C 1,MT,24,BLK,2000.0,STOLEN,1551,"{'type': 'Point', 'coordinates': (-79.53397755, 43.59436142)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1561,3735,GO-20189034880,THEFT UNDER - BICYCLE,2018-10-20,2018,October,Saturday,20,293,15,2018-10-20,2018,October,Saturday,20,293,17,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,GT,AGGRESSOR,MT,21,BLK,500.0,STOLEN,1552,"{'type': 'Point', 'coordinates': (-79.52280387, 43.59782434)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1562,4232,GO-20199013878,THEFT UNDER,2019-04-29,2019,April,Monday,29,119,17,2019-05-04,2019,May,Saturday,4,124,10,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,CA,29R SL1,MT,24,BLU,2000.0,STOLEN,1553,"{'type': 'Point', 'coordinates': (-79.54560481, 43.58975212000001)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1563,4503,GO-20199018793,THEFT UNDER,2019-06-14,2019,June,Friday,14,165,23,2019-06-16,2019,June,Sunday,16,167,0,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,RE,,MT,40,BLK,110.0,STOLEN,1554,"{'type': 'Point', 'coordinates': (-79.52454939, 43.59552297)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1564,4801,GO-20199022847,THEFT UNDER,2019-07-18,2019,July,Thursday,18,199,8,2019-07-18,2019,July,Thursday,18,199,20,D22,Toronto,19,Long Branch (19),Go Station,Transit,TR,SERIES 4,MT,21,GRY,0.0,STOLEN,1555,"{'type': 'Point', 'coordinates': (-79.54491322, 43.59051582)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1565,5436,GO-20199032012,THEFT UNDER,2019-09-28,2019,September,Saturday,28,271,17,2019-09-29,2019,September,Sunday,29,272,21,D22,Toronto,19,Long Branch (19),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,AXIS C4,RG,1,BLU,900.0,STOLEN,1556,"{'type': 'Point', 'coordinates': (-79.53095335, 43.59505734)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1566,5839,GO-20209002040,THEFT UNDER,2019-12-17,2019,December,Tuesday,17,351,16,2020-01-17,2020,January,Friday,17,17,17,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,UK,2014,MT,15,PLE,650.0,STOLEN,1557,"{'type': 'Point', 'coordinates': (-79.54491322, 43.59051582)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1567,5875,GO-20192430534,MISCHIEF UNDER,2019-12-04,2019,December,Wednesday,4,338,18,2019-12-17,2019,December,Tuesday,17,351,16,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,OT,,FO,30,BLK,2000.0,STOLEN,1558,"{'type': 'Point', 'coordinates': (-79.54491322, 43.59051582)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1568,6279,GO-20201011030,THEFT UNDER,2020-06-01,2020,June,Monday,1,153,16,2020-06-01,2020,June,Monday,1,153,19,D22,Toronto,19,Long Branch (19),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,ADULT,OT,0,BLU,,STOLEN,1559,"{'type': 'Point', 'coordinates': (-79.52963322, 43.59228514)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1569,6280,GO-20201011030,THEFT UNDER,2020-06-01,2020,June,Monday,1,153,16,2020-06-01,2020,June,Monday,1,153,19,D22,Toronto,19,Long Branch (19),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,TEEN SIZE BIKE,OT,0,PLE,,STOLEN,1560,"{'type': 'Point', 'coordinates': (-79.52963322, 43.59228514)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1570,6466,GO-20201172064,THEFT UNDER - BICYCLE,2020-06-25,2020,June,Thursday,25,177,19,2020-06-25,2020,June,Thursday,25,177,19,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,EMMO,SOHO 2.0,EL,1,WHI,1799.0,STOLEN,1561,"{'type': 'Point', 'coordinates': (-79.5438847, 43.58866121)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1571,7581,GO-20209028336,THEFT UNDER,2020-11-01,2020,November,Sunday,1,306,9,2020-11-01,2020,November,Sunday,1,306,21,D22,Toronto,19,Long Branch (19),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,SCHWINN GRANDE,MT,20,ONG,300.0,STOLEN,1562,"{'type': 'Point', 'coordinates': (-79.53953115, 43.59336618)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1572,6860,GO-20201446754,THEFT UNDER - BICYCLE,2020-07-30,2020,July,Thursday,30,212,17,2020-08-04,2020,August,Tuesday,4,217,12,D13,Toronto,31,Yorkdale-Glen Park (31),Ttc Subway Station,Transit,OTHER,SUPER CYCLE,RG,24,BLU,100.0,STOLEN,1563,"{'type': 'Point', 'coordinates': (-79.43982544, 43.70789665)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1573,7948,GO-20149003472,THEFT FROM MOTOR VEHICLE UNDER,2014-05-19,2014,May,Monday,19,139,22,2014-05-20,2014,May,Tuesday,20,140,13,D22,Toronto,19,Long Branch (19),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ROAD RACER,RC,14,CPRGLD,500.0,STOLEN,1564,"{'type': 'Point', 'coordinates': (-79.53616689, 43.5888304)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1574,8054,GO-20142217306,THEFT UNDER,2014-06-03,2014,June,Tuesday,3,154,20,2014-06-05,2014,June,Thursday,5,156,15,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,OTHER,1700,SC,1,BLU,3597.0,STOLEN,1565,"{'type': 'Point', 'coordinates': (-79.52757793, 43.59581439)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1575,8861,GO-20142874661,THEFT UNDER,2014-08-28,2014,August,Thursday,28,240,16,2014-09-12,2014,September,Friday,12,255,14,D22,Toronto,19,Long Branch (19),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,LADIES,RG,21,SILWHI,450.0,STOLEN,1566,"{'type': 'Point', 'coordinates': (-79.52963322, 43.59228514)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1576,8862,GO-20142874661,THEFT UNDER,2014-08-28,2014,August,Thursday,28,240,16,2014-09-12,2014,September,Friday,12,255,14,D22,Toronto,19,Long Branch (19),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SPECIALIZED,P1 DIRT JUMP,OT,21,BLUBRN,999.0,STOLEN,1567,"{'type': 'Point', 'coordinates': (-79.52963322, 43.59228514)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1577,8994,GO-20143010878,B&E,2014-09-28,2014,September,Sunday,28,271,9,2014-09-29,2014,September,Monday,29,272,21,D22,Toronto,19,Long Branch (19),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,PHASER,MT,18,BLK,2000.0,STOLEN,1568,"{'type': 'Point', 'coordinates': (-79.5349571, 43.58908526)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1578,9276,GO-20159000438,THEFT UNDER,2014-12-16,2014,December,Tuesday,16,350,8,2015-01-23,2015,January,Friday,23,23,21,D22,Toronto,19,Long Branch (19),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,ANTHEM X29-2,MT,20,WHI,2300.0,STOLEN,1569,"{'type': 'Point', 'coordinates': (-79.53936259, 43.58736655)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1579,9277,GO-20159000438,THEFT UNDER,2014-12-16,2014,December,Tuesday,16,350,8,2015-01-23,2015,January,Friday,23,23,21,D22,Toronto,19,Long Branch (19),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FJ,GEOX,RC,16,BLK,2400.0,STOLEN,1570,"{'type': 'Point', 'coordinates': (-79.53936259, 43.58736655)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1580,9545,GO-2015760269,THEFT UNDER,2015-05-07,2015,May,Thursday,7,127,4,2015-05-07,2015,May,Thursday,7,127,15,D22,Toronto,19,Long Branch (19),"Single Home, House (Attach Garage, Cottage, Mobile)",House,EMMO,,EL,1,BLK,1100.0,STOLEN,1571,"{'type': 'Point', 'coordinates': (-79.52807305, 43.59020393)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1581,9686,GO-20159003195,THEFT UNDER,2015-05-29,2015,May,Friday,29,149,18,2015-05-30,2015,May,Saturday,30,150,9,D22,Toronto,19,Long Branch (19),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,OCR3,RC,18,RED,675.0,STOLEN,1572,"{'type': 'Point', 'coordinates': (-79.54560481, 43.58975212000001)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1582,10221,GO-20159005538,THEFT UNDER,2015-08-08,2015,August,Saturday,8,220,12,2015-08-09,2015,August,Sunday,9,221,13,D22,Toronto,19,Long Branch (19),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,UNKNOWN,MT,21,BLK,220.0,STOLEN,1573,"{'type': 'Point', 'coordinates': (-79.52408369000001, 43.59369589)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1583,10238,GO-20159005626,THEFT UNDER,2015-08-10,2015,August,Monday,10,222,21,2015-08-11,2015,August,Tuesday,11,223,10,D22,Toronto,19,Long Branch (19),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GI,,RG,10,BLK,700.0,STOLEN,1574,"{'type': 'Point', 'coordinates': (-79.52184547, 43.59250893)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1584,10686,GO-20151839743,THEFT OVER,2015-10-23,2015,October,Friday,23,296,18,2015-10-26,2015,October,Monday,26,299,8,D22,Toronto,19,Long Branch (19),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,CYPRESS,OT,21,BLK,1100.0,STOLEN,1575,"{'type': 'Point', 'coordinates': (-79.53236154, 43.594736530000006)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1585,10697,GO-20159009118,THEFT UNDER,2015-10-27,2015,October,Tuesday,27,300,10,2015-10-28,2015,October,Wednesday,28,301,14,D22,Toronto,19,Long Branch (19),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RM,BLIZZARD,MT,24,WHI,2500.0,STOLEN,1576,"{'type': 'Point', 'coordinates': (-79.53236154, 43.594736530000006)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1586,11625,GO-20161095514,THEFT UNDER - BICYCLE,2016-06-21,2016,June,Tuesday,21,173,20,2016-06-23,2016,June,Thursday,23,175,8,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,HUFFY,,RG,1,BRN,200.0,STOLEN,1577,"{'type': 'Point', 'coordinates': (-79.53154531, 43.58892605)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1587,11651,GO-20161129156,THEFT UNDER - BICYCLE,2016-06-27,2016,June,Monday,27,179,11,2016-06-28,2016,June,Tuesday,28,180,9,D22,Toronto,19,Long Branch (19),"Private Property Structure (Pool, Shed, Detached Garage)",Other,REEBOK,OREGON PRO,MT,26,BLUBLK,400.0,STOLEN,1578,"{'type': 'Point', 'coordinates': (-79.53469534, 43.59205774)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1588,11661,GO-20169006466,THEFT UNDER - BICYCLE,2016-06-28,2016,June,Tuesday,28,180,7,2016-06-28,2016,June,Tuesday,28,180,10,D22,Toronto,19,Long Branch (19),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GT,,MT,27,BLK,800.0,STOLEN,1579,"{'type': 'Point', 'coordinates': (-79.53317021, 43.58854798)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1589,24507,GO-2016407797,THEFT UNDER,2016-03-08,2016,March,Tuesday,8,68,7,2016-03-09,2016,March,Wednesday,9,69,7,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,GIO PB710,EL,2,BLK,1500.0,STOLEN,1580,"{'type': 'Point', 'coordinates': (-79.49671284, 43.61223676)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1590,21559,GO-20209016326,THEFT UNDER,2020-06-27,2020,June,Saturday,27,179,13,2020-06-27,2020,June,Saturday,27,179,17,D12,Toronto,23,Pelmo Park-Humberlea (23),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,FX-2,RG,24,BLK,600.0,STOLEN,1581,"{'type': 'Point', 'coordinates': (-79.53456277, 43.70968634)}",Pelmo Park-Humberlea,23,No Designation,10722,8710,0.231,3860,3710,2547,4.21,5300,3460,330,1375,85,10,40,0.0018867924528301887
-1591,17945,GO-20142854721,B&E,2014-09-05,2014,September,Friday,5,248,23,2014-09-06,2014,September,Saturday,6,249,10,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,UNK,MT,18,BLKRED,1000.0,STOLEN,1582,"{'type': 'Point', 'coordinates': (-79.48643252, 43.61892859)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1592,11691,GO-20161167654,B&E,2016-07-03,2016,July,Sunday,3,185,8,2016-07-04,2016,July,Monday,4,186,11,D22,Toronto,19,Long Branch (19),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,UNKNOWN,RC,0,BLK,800.0,STOLEN,1583,"{'type': 'Point', 'coordinates': (-79.53616689, 43.5888304)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1593,11692,GO-20161167654,B&E,2016-07-03,2016,July,Sunday,3,185,8,2016-07-04,2016,July,Monday,4,186,11,D22,Toronto,19,Long Branch (19),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,STATIC,MT,0,GRN,300.0,STOLEN,1584,"{'type': 'Point', 'coordinates': (-79.53616689, 43.5888304)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1594,11717,GO-20169006761,THEFT UNDER - BICYCLE,2016-07-01,2016,July,Friday,1,183,8,2016-07-05,2016,July,Tuesday,5,187,23,D22,Toronto,19,Long Branch (19),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,MT,21,,0.0,STOLEN,1585,"{'type': 'Point', 'coordinates': (-79.52245531, 43.59695537)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1595,12418,GO-20161683357,B&E,2016-09-19,2016,September,Monday,19,263,5,2016-09-22,2016,September,Thursday,22,266,1,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,NORCO,,MT,30,BLUBLK,3000.0,STOLEN,1586,"{'type': 'Point', 'coordinates': (-79.53154531, 43.58892605)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1596,12419,GO-20161683357,B&E,2016-09-19,2016,September,Monday,19,263,5,2016-09-22,2016,September,Thursday,22,266,1,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,TREK,,OT,21,,2000.0,STOLEN,1587,"{'type': 'Point', 'coordinates': (-79.53154531, 43.58892605)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1597,14672,GO-20179010634,THEFT UNDER - BICYCLE,2017-07-19,2017,July,Wednesday,19,200,6,2017-07-19,2017,July,Wednesday,19,200,20,D22,Toronto,19,Long Branch (19),Other Passenger Train Station,Transit,MA,ONE SPEED,RG,1,BLK,300.0,STOLEN,1588,"{'type': 'Point', 'coordinates': (-79.5427963, 43.59229523)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1598,14747,GO-20173109508,B&E,2017-11-28,2017,November,Tuesday,28,332,5,2017-12-01,2017,December,Friday,1,335,14,D22,Toronto,19,Long Branch (19),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CANNONDALE,SUPERSIX,RC,21,BLKWHI,3000.0,STOLEN,1589,"{'type': 'Point', 'coordinates': (-79.52249523, 43.5908)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1599,14775,GO-2018797670,B&E W'INTENT,2018-05-04,2018,May,Friday,4,124,3,2018-05-04,2018,May,Friday,4,124,3,D22,Toronto,19,Long Branch (19),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CCM,MEGA OVERSIZE,MT,21,GRN,50.0,RECOVERED,1590,"{'type': 'Point', 'coordinates': (-79.52644293, 43.59696423)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1600,14802,GO-20181088027,THEFT UNDER - BICYCLE,2018-06-13,2018,June,Wednesday,13,164,0,2018-06-15,2018,June,Friday,15,166,16,D22,Toronto,19,Long Branch (19),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,BOUNDRY TRAIL,MT,5,BLKRED,,STOLEN,1591,"{'type': 'Point', 'coordinates': (-79.52963322, 43.59228514)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1601,14810,GO-20189020212,THEFT UNDER - BICYCLE,2018-06-25,2018,June,Monday,25,176,13,2018-06-25,2018,June,Monday,25,176,15,D22,Toronto,19,Long Branch (19),Ttc Light Rail Transit Station,Transit,RM,VERTEX 30,MT,27,WHI,1500.0,STOLEN,1592,"{'type': 'Point', 'coordinates': (-79.5427963, 43.59229523)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1602,15004,GO-20169006466,THEFT UNDER - BICYCLE,2016-06-28,2016,June,Tuesday,28,180,7,2016-06-28,2016,June,Tuesday,28,180,10,D22,Toronto,19,Long Branch (19),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GT,KARAKORAM SPORT,MT,27,BLK,800.0,STOLEN,1593,"{'type': 'Point', 'coordinates': (-79.53317021, 43.58854798)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1603,17382,GO-20209022006,THEFT UNDER,2020-08-31,2020,August,Monday,31,244,0,2020-09-01,2020,September,Tuesday,1,245,16,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,NO,,MT,12,,580.0,STOLEN,1594,"{'type': 'Point', 'coordinates': (-79.52757793, 43.59581439)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1604,17383,GO-20209022006,THEFT UNDER,2020-08-31,2020,August,Monday,31,244,0,2020-09-01,2020,September,Tuesday,1,245,16,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,CA,,MT,12,,630.0,STOLEN,1595,"{'type': 'Point', 'coordinates': (-79.52757793, 43.59581439)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1605,17549,GO-20199010325,THEFT UNDER,2019-03-26,2019,March,Tuesday,26,85,15,2019-04-01,2019,April,Monday,1,91,19,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,OT,,BM,1,TRQ,200.0,STOLEN,1596,"{'type': 'Point', 'coordinates': (-79.52314357, 43.59865942)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1606,17588,GO-20199020576,THEFT UNDER,2019-06-04,2019,June,Tuesday,4,155,19,2019-06-30,2019,June,Sunday,30,181,13,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,NO,,MT,5,,2200.0,STOLEN,1597,"{'type': 'Point', 'coordinates': (-79.53397755, 43.59436142)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1607,17624,GO-20199026250,THEFT UNDER,2019-08-14,2019,August,Wednesday,14,226,8,2019-08-14,2019,August,Wednesday,14,226,19,D22,Toronto,19,Long Branch (19),Go Station,Transit,TR,,RG,21,BLK,0.0,STOLEN,1598,"{'type': 'Point', 'coordinates': (-79.54491322, 43.59051582)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1608,17645,GO-20199031995,THEFT UNDER,2019-09-28,2019,September,Saturday,28,271,21,2019-09-29,2019,September,Sunday,29,272,22,D22,Toronto,19,Long Branch (19),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,MARLIN 6,MT,1,BLK,860.0,STOLEN,1599,"{'type': 'Point', 'coordinates': (-79.53095335, 43.59505734)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1609,17675,GO-20199040573,THEFT UNDER,2019-12-11,2019,December,Wednesday,11,345,7,2019-12-11,2019,December,Wednesday,11,345,17,D22,Toronto,19,Long Branch (19),Go Station,Transit,NO,SEARCH A TIAGRA,OT,18,BLK,2000.0,STOLEN,1600,"{'type': 'Point', 'coordinates': (-79.54491322, 43.59051582)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1610,17716,GO-20171510572,THEFT UNDER - BICYCLE,2017-08-20,2017,August,Sunday,20,232,20,2017-08-21,2017,August,Monday,21,233,10,D22,Toronto,19,Long Branch (19),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,OT,0,GRY,,STOLEN,1601,"{'type': 'Point', 'coordinates': (-79.53095335, 43.59505734)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1611,17723,GO-20171608938,THEFT UNDER - BICYCLE,2017-08-18,2017,August,Friday,18,230,17,2017-09-05,2017,September,Tuesday,5,248,17,D22,Toronto,19,Long Branch (19),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OPUS,,MT,21,GRY,550.0,STOLEN,1602,"{'type': 'Point', 'coordinates': (-79.5349571, 43.58908526)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1612,17763,GO-20172057706,THEFT UNDER - BICYCLE,2017-11-14,2017,November,Tuesday,14,318,0,2017-11-14,2017,November,Tuesday,14,318,0,D22,Toronto,19,Long Branch (19),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,OT,0,,,STOLEN,1603,"{'type': 'Point', 'coordinates': (-79.52807305, 43.59020393)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1613,17824,GO-20189017873,THEFT UNDER - BICYCLE,2018-06-04,2018,June,Monday,4,155,18,2018-06-08,2018,June,Friday,8,159,12,D22,Toronto,19,Long Branch (19),Go Station,Transit,TR,,OT,18,GRY,500.0,STOLEN,1604,"{'type': 'Point', 'coordinates': (-79.54491322, 43.59051582)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1614,17825,GO-20181047520,THEFT UNDER - BICYCLE,2018-06-09,2018,June,Saturday,9,160,18,2018-06-09,2018,June,Saturday,9,160,20,D22,Toronto,19,Long Branch (19),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,ASCOTT,,MT,11,WHI,2000.0,STOLEN,1605,"{'type': 'Point', 'coordinates': (-79.53350756, 43.59335987)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1615,17831,GO-20189018778,THEFT UNDER - BICYCLE,2018-06-14,2018,June,Thursday,14,165,20,2018-06-15,2018,June,Friday,15,166,11,D22,Toronto,19,Long Branch (19),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CC,,OT,21,BLK,500.0,STOLEN,1606,"{'type': 'Point', 'coordinates': (-79.52280387, 43.59782434)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1616,17908,GO-20181706692,THEFT UNDER - BICYCLE,2018-09-14,2018,September,Friday,14,257,17,2018-09-14,2018,September,Friday,14,257,19,D22,Toronto,19,Long Branch (19),"Open Areas (Lakes, Parks, Rivers)",Outside,MARIN OR MARINO,BELVIDERE,OT,21,BLK,1000.0,STOLEN,1607,"{'type': 'Point', 'coordinates': (-79.5418279, 43.58734972)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1617,17947,GO-20149006944,THEFT UNDER,2014-09-13,2014,September,Saturday,13,256,19,2014-09-16,2014,September,Tuesday,16,259,19,D22,Toronto,19,Long Branch (19),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,MT,18,,,STOLEN,1608,"{'type': 'Point', 'coordinates': (-79.52963322, 43.59228514)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1618,17964,GO-2015833876,THEFT FROM MOTOR VEHICLE OVER,2015-05-18,2015,May,Monday,18,138,0,2015-05-19,2015,May,Tuesday,19,139,12,D22,Toronto,19,Long Branch (19),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CERVELO,S5,RC,21,BLK,7500.0,STOLEN,1609,"{'type': 'Point', 'coordinates': (-79.53201384, 43.59747371)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1619,18002,GO-20159009124,THEFT UNDER,2015-10-28,2015,October,Wednesday,28,301,6,2015-10-28,2015,October,Wednesday,28,301,16,D22,Toronto,19,Long Branch (19),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,TRI CROSS,RC,8,BLK,1200.0,STOLEN,1610,"{'type': 'Point', 'coordinates': (-79.53236154, 43.594736530000006)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1620,21099,GO-20199040210,THEFT UNDER,2019-11-10,2019,November,Sunday,10,314,17,2019-12-09,2019,December,Monday,9,343,11,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,TR,4500,MT,21,GRY,250.0,STOLEN,1611,"{'type': 'Point', 'coordinates': (-79.54491322, 43.59051582)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1621,21251,GO-20189005692,THEFT UNDER - BICYCLE,2018-02-19,2018,February,Monday,19,50,2,2018-02-22,2018,February,Thursday,22,53,16,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,RM,,RC,3,,600.0,STOLEN,1612,"{'type': 'Point', 'coordinates': (-79.53936354, 43.59310005)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1622,21252,GO-20189005692,THEFT UNDER - BICYCLE,2018-02-19,2018,February,Monday,19,50,2,2018-02-22,2018,February,Thursday,22,53,16,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,RM,,MT,3,BLK,700.0,STOLEN,1613,"{'type': 'Point', 'coordinates': (-79.53936354, 43.59310005)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1623,21262,GO-20189013672,THEFT UNDER,2018-05-01,2018,May,Tuesday,1,121,5,2018-05-03,2018,May,Thursday,3,123,12,D22,Toronto,19,Long Branch (19),Go Station,Transit,SC,,RC,10,BLK,0.0,STOLEN,1614,"{'type': 'Point', 'coordinates': (-79.54491322, 43.59051582)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1624,21298,GO-20189019990,THEFT UNDER - BICYCLE,2018-06-23,2018,June,Saturday,23,174,17,2018-06-23,2018,June,Saturday,23,174,21,D22,Toronto,19,Long Branch (19),Convenience Stores,Commercial,CC,CCM APEX,MT,24,RED,720.0,STOLEN,1615,"{'type': 'Point', 'coordinates': (-79.53953115, 43.59336618)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1625,21299,GO-20189020142,THEFT UNDER - BICYCLE,2018-06-18,2018,June,Monday,18,169,9,2018-06-25,2018,June,Monday,25,176,12,D22,Toronto,19,Long Branch (19),Go Station,Transit,GT,,MT,18,BLKONG,0.0,STOLEN,1616,"{'type': 'Point', 'coordinates': (-79.54491322, 43.59051582)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1626,21312,GO-20189021929,THEFT UNDER,2018-07-07,2018,July,Saturday,7,188,6,2018-07-10,2018,July,Tuesday,10,191,18,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,FJ,2 WHEELER,RG,1,,200.0,STOLEN,1617,"{'type': 'Point', 'coordinates': (-79.52280387, 43.59782434)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1627,21320,GO-20189023423,THEFT UNDER - BICYCLE,2018-07-20,2018,July,Friday,20,201,14,2018-07-22,2018,July,Sunday,22,203,14,D22,Toronto,19,Long Branch (19),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,RG,10,LGR,1500.0,STOLEN,1618,"{'type': 'Point', 'coordinates': (-79.53616689, 43.5888304)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1628,22118,GO-20169007890,THEFT UNDER - BICYCLE,2016-07-28,2016,July,Thursday,28,210,18,2016-07-28,2016,July,Thursday,28,210,19,D22,Toronto,19,Long Branch (19),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,RG,8,,0.0,STOLEN,1619,"{'type': 'Point', 'coordinates': (-79.541594, 43.59385442)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1629,22139,GO-20179002920,THEFT UNDER - BICYCLE,2017-03-03,2017,March,Friday,3,62,22,2017-03-07,2017,March,Tuesday,7,66,21,D22,Toronto,19,Long Branch (19),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,TR,3900,MT,24,BLK,0.0,STOLEN,1620,"{'type': 'Point', 'coordinates': (-79.53105518, 43.59180861000001)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1630,23849,GO-20209025786,THEFT UNDER,2020-10-07,2020,October,Wednesday,7,281,18,2020-10-08,2020,October,Thursday,8,282,19,D22,Toronto,19,Long Branch (19),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,2019 INDIE DROP,OT,16,BLK,1500.0,STOLEN,1621,"{'type': 'Point', 'coordinates': (-79.5405629, 43.5928404)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1631,24004,GO-20182254716,THEFT UNDER,2018-12-07,2018,December,Friday,7,341,5,2018-12-08,2018,December,Saturday,8,342,15,D22,Toronto,19,Long Branch (19),"Apartment (Rooming House, Condo)",Apartment,EMMO,,EL,60,WHIOTH,2000.0,STOLEN,1622,"{'type': 'Point', 'coordinates': (-79.53154531, 43.58892605)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1632,24111,GO-20191971381,THEFT OF MOTOR VEHICLE,2019-10-11,2019,October,Friday,11,284,20,2019-10-12,2019,October,Saturday,12,285,13,D22,Toronto,19,Long Branch (19),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,FUSE COMP6 FATT,RG,0,OTH,,UNKNOWN,1623,"{'type': 'Point', 'coordinates': (-79.54135252, 43.59171655)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1633,24213,GO-20179012745,THEFT UNDER - BICYCLE,2017-07-04,2017,July,Tuesday,4,185,9,2017-08-19,2017,August,Saturday,19,231,9,D22,Toronto,19,Long Branch (19),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,ROAM,OT,21,BLK,900.0,STOLEN,1624,"{'type': 'Point', 'coordinates': (-79.52904825, 43.59106129)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1634,24339,GO-20189022364,THEFT UNDER - BICYCLE,2018-07-13,2018,July,Friday,13,194,8,2018-07-13,2018,July,Friday,13,194,20,D22,Toronto,19,Long Branch (19),Go Station,Transit,OT,,MT,18,GRY,370.0,STOLEN,1625,"{'type': 'Point', 'coordinates': (-79.54491322, 43.59051582)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1635,24420,GO-20142243370,THEFT UNDER,2014-06-07,2014,June,Saturday,7,158,22,2014-06-09,2014,June,Monday,9,160,18,D22,Toronto,19,Long Branch (19),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FORTRESS,1700,SC,1,BLK,4300.0,STOLEN,1626,"{'type': 'Point', 'coordinates': (-79.52904825, 43.59106129)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1636,24440,GO-20149008610,THEFT UNDER,2014-12-07,2014,December,Sunday,7,341,3,2014-12-07,2014,December,Sunday,7,341,19,D22,Toronto,19,Long Branch (19),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SPECIALIZED,MT,18,SIL,900.0,STOLEN,1627,"{'type': 'Point', 'coordinates': (-79.53265608, 43.59142483)}",Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626
-1637,17948,GO-20143033153,THEFT UNDER,2014-10-03,2014,October,Friday,3,276,0,2014-10-03,2014,October,Friday,3,276,9,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,,EL,1,BGEBLK,600.0,STOLEN,1628,"{'type': 'Point', 'coordinates': (-79.499889, 43.61990605)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1638,17949,GO-20143040079,B&E,2014-10-03,2014,October,Friday,3,276,11,2014-10-04,2014,October,Saturday,4,277,10,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MARIN OR MARINO,BELVEDERE,RG,18,BLKSIL,1000.0,STOLEN,1629,"{'type': 'Point', 'coordinates': (-79.48926964, 43.62082685)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1639,6868,GO-20209019398,THEFT UNDER - BICYCLE,2020-08-01,2020,August,Saturday,1,214,12,2020-08-05,2020,August,Wednesday,5,218,9,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,CC,,RG,7,PLE,400.0,STOLEN,1630,"{'type': 'Point', 'coordinates': (-79.45239005, 43.71432793)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1640,7016,GO-20201569403,THEFT UNDER - BICYCLE,2020-08-20,2020,August,Thursday,20,233,20,2020-08-21,2020,August,Friday,21,234,8,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CCM,UNKNOWN,MT,12,BLU,800.0,STOLEN,1631,"{'type': 'Point', 'coordinates': (-79.44893304, 43.71749643)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1641,21798,GO-20149003738,THEFT UNDER,2014-06-01,2014,June,Sunday,1,152,2,2014-06-01,2014,June,Sunday,1,152,16,D12,Toronto,23,Pelmo Park-Humberlea (23),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,RG,5,,,STOLEN,1632,"{'type': 'Point', 'coordinates': (-79.51228911, 43.70869911)}",Pelmo Park-Humberlea,23,No Designation,10722,8710,0.231,3860,3710,2547,4.21,5300,3460,330,1375,85,10,40,0.0018867924528301887
-1642,7604,GO-20209029003,THEFT UNDER - BICYCLE,2020-11-04,2020,November,Wednesday,4,309,1,2020-11-08,2020,November,Sunday,8,313,14,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,10,YEL,500.0,STOLEN,1633,"{'type': 'Point', 'coordinates': (-79.45515990000001, 43.71615642)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1643,24756,GO-20151650956,THEFT UNDER,2015-09-23,2015,September,Wednesday,23,266,20,2015-09-24,2015,September,Thursday,24,267,10,D12,Toronto,23,Pelmo Park-Humberlea (23),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,BMX,,BM,1,GRN,500.0,STOLEN,1634,"{'type': 'Point', 'coordinates': (-79.53456277, 43.70968634)}",Pelmo Park-Humberlea,23,No Designation,10722,8710,0.231,3860,3710,2547,4.21,5300,3460,330,1375,85,10,40,0.0018867924528301887
-1644,24527,GO-20169006978,THEFT UNDER,2016-07-06,2016,July,Wednesday,6,188,16,2016-07-10,2016,July,Sunday,10,192,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE 1 (LARGE,OT,27,GRY,650.0,STOLEN,1635,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1645,7946,GO-20142117947,B&E,2014-05-19,2014,May,Monday,19,139,9,2014-05-20,2014,May,Tuesday,20,140,22,D13,Toronto,31,Yorkdale-Glen Park (31),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,XTC,MT,27,BLUWHI,2300.0,STOLEN,1636,"{'type': 'Point', 'coordinates': (-79.44605699, 43.70669677)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1646,8215,GO-20142333774,THEFT UNDER,2014-06-20,2014,June,Friday,20,171,16,2014-06-20,2014,June,Friday,20,171,21,D32,Toronto,31,Yorkdale-Glen Park (31),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,JAMIS,X-2 TRAILER,MT,3,WHIGRN,,STOLEN,1637,"{'type': 'Point', 'coordinates': (-79.45130961, 43.72364999)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1647,8510,GO-20142557951,THEFT UNDER,2014-07-23,2014,July,Wednesday,23,204,14,2014-07-23,2014,July,Wednesday,23,204,19,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,GIANT,ESCAPE,OT,18,BLK,700.0,STOLEN,1638,"{'type': 'Point', 'coordinates': (-79.44893304, 43.71749643)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1648,8603,GO-20142679373,THEFT UNDER,2014-08-05,2014,August,Tuesday,5,217,22,2014-08-11,2014,August,Monday,11,223,9,D13,Toronto,31,Yorkdale-Glen Park (31),"Private Property Structure (Pool, Shed, Detached Garage)",Other,DEVINCI,BRISTOL,MT,18,,600.0,STOLEN,1639,"{'type': 'Point', 'coordinates': (-79.44936757, 43.70421142)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1649,8704,GO-20149006159,THEFT UNDER,2014-08-21,2014,August,Thursday,21,233,3,2014-08-21,2014,August,Thursday,21,233,7,D13,Toronto,31,Yorkdale-Glen Park (31),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RC,24,BLU,700.0,STOLEN,1640,"{'type': 'Point', 'coordinates': (-79.4511083, 43.71123013)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1650,8807,GO-20142846700,THEFT UNDER,2014-08-18,2014,August,Monday,18,230,0,2014-09-05,2014,September,Friday,5,248,8,D13,Toronto,31,Yorkdale-Glen Park (31),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,,RC,10,BLU,1153.0,STOLEN,1641,"{'type': 'Point', 'coordinates': (-79.44969677, 43.70773639)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1651,8808,GO-20142846700,THEFT UNDER,2014-08-18,2014,August,Monday,18,230,0,2014-09-05,2014,September,Friday,5,248,8,D13,Toronto,31,Yorkdale-Glen Park (31),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,,RG,10,ONG,400.0,STOLEN,1642,"{'type': 'Point', 'coordinates': (-79.44969677, 43.70773639)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1652,9482,GO-2015696198,THEFT UNDER,2015-04-26,2015,April,Sunday,26,116,14,2015-04-27,2015,April,Monday,27,117,12,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KONA,CYCLE CROSS,RC,18,GRY,1200.0,STOLEN,1643,"{'type': 'Point', 'coordinates': (-79.45130961, 43.72364999)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1653,9494,GO-2015709297,THEFT UNDER,2015-04-29,2015,April,Wednesday,29,119,7,2015-04-29,2015,April,Wednesday,29,119,14,D32,Toronto,31,Yorkdale-Glen Park (31),"Open Areas (Lakes, Parks, Rivers)",Outside,SUPERCYCLE,MOUNTAIN,MT,18,BLK,350.0,STOLEN,1644,"{'type': 'Point', 'coordinates': (-79.44598667, 43.72478043)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1654,9521,GO-2015743003,THEFT UNDER,2015-05-04,2015,May,Monday,4,124,22,2015-05-04,2015,May,Monday,4,124,22,D13,Toronto,31,Yorkdale-Glen Park (31),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,BREEZE,MT,18,BLU,150.0,RECOVERED,1645,"{'type': 'Point', 'coordinates': (-79.44828672, 43.7062052)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1655,9669,GO-2015880135,THEFT UNDER,2015-05-24,2015,May,Sunday,24,144,17,2015-05-26,2015,May,Tuesday,26,146,19,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,UNKNOWN,OT,0,RED,200.0,STOLEN,1646,"{'type': 'Point', 'coordinates': (-79.44893304, 43.71749643)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1656,9889,GO-20151075171,THEFT UNDER,2015-06-25,2015,June,Thursday,25,176,7,2015-06-26,2015,June,Friday,26,177,9,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SUPERCYCLE,HYBRID,OT,21,PLE,150.0,STOLEN,1647,"{'type': 'Point', 'coordinates': (-79.44893304, 43.71749643)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1657,10274,GO-20159005873,THEFT UNDER,2015-08-16,2015,August,Sunday,16,228,15,2015-08-17,2015,August,Monday,17,229,10,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,MA,HYBRID,MT,12,,0.0,STOLEN,1648,"{'type': 'Point', 'coordinates': (-79.44861224, 43.72328355)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1658,10416,GO-20159006849,THEFT UNDER,2015-09-07,2015,September,Monday,7,250,2,2015-09-07,2015,September,Monday,7,250,15,D13,Toronto,31,Yorkdale-Glen Park (31),"Single Home, House (Attach Garage, Cottage, Mobile)",House,,,MT,21,WHI,350.0,STOLEN,1649,"{'type': 'Point', 'coordinates': (-79.46112625, 43.70924828)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1659,10417,GO-20159006849,THEFT UNDER,2015-09-07,2015,September,Monday,7,250,2,2015-09-07,2015,September,Monday,7,250,15,D13,Toronto,31,Yorkdale-Glen Park (31),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,BOULDER SE,MT,21,BLK,650.0,STOLEN,1650,"{'type': 'Point', 'coordinates': (-79.46112625, 43.70924828)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1660,10418,GO-20159006849,THEFT UNDER,2015-09-07,2015,September,Monday,7,250,2,2015-09-07,2015,September,Monday,7,250,15,D13,Toronto,31,Yorkdale-Glen Park (31),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,,MT,21,DGR,400.0,STOLEN,1651,"{'type': 'Point', 'coordinates': (-79.46112625, 43.70924828)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1661,17982,GO-20151270823,THEFT UNDER,2015-07-19,2015,July,Sunday,19,200,9,2015-07-25,2015,July,Saturday,25,206,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GIANT,,OT,30,BLK,900.0,STOLEN,1652,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1662,10419,GO-20159006849,THEFT UNDER,2015-09-07,2015,September,Monday,7,250,2,2015-09-07,2015,September,Monday,7,250,15,D13,Toronto,31,Yorkdale-Glen Park (31),"Single Home, House (Attach Garage, Cottage, Mobile)",House,IN,,MT,21,GRY,400.0,STOLEN,1653,"{'type': 'Point', 'coordinates': (-79.46112625, 43.70924828)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1663,10907,GO-20169000076,THEFT UNDER,2015-12-18,2015,December,Friday,18,352,21,2016-01-03,2016,January,Sunday,3,3,17,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,OT,KRYPTON,RC,24,BLK,2900.0,STOLEN,1654,"{'type': 'Point', 'coordinates': (-79.45239005, 43.71432793)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1664,11423,GO-20161012016,PROPERTY - FOUND,2016-06-08,2016,June,Wednesday,8,160,16,2016-06-08,2016,June,Wednesday,8,160,16,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,PALADIN,MT,21,BLK,200.0,STOLEN,1655,"{'type': 'Point', 'coordinates': (-79.45130961, 43.72364999)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1665,11500,GO-20169005614,THEFT UNDER,2016-06-10,2016,June,Friday,10,162,16,2016-06-11,2016,June,Saturday,11,163,11,D13,Toronto,31,Yorkdale-Glen Park (31),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,QUICK4,OT,27,BLU,700.0,STOLEN,1656,"{'type': 'Point', 'coordinates': (-79.44304121, 43.70719406)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1666,11825,GO-20169007299,THEFT UNDER,2016-07-13,2016,July,Wednesday,13,195,16,2016-07-17,2016,July,Sunday,17,199,15,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,T1000,OT,21,GRY,406.0,STOLEN,1657,"{'type': 'Point', 'coordinates': (-79.44893304, 43.71749643)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1667,12009,GO-20161357332,THEFT UNDER,2016-04-01,2016,April,Friday,1,92,0,2016-08-02,2016,August,Tuesday,2,215,14,D32,Toronto,31,Yorkdale-Glen Park (31),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,3-WHEELED,OT,1,BLUWHI,,STOLEN,1658,"{'type': 'Point', 'coordinates': (-79.46320163, 43.722698)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1668,12025,GO-20169008384,THEFT UNDER - BICYCLE,2016-08-06,2016,August,Saturday,6,219,21,2016-08-08,2016,August,Monday,8,221,14,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,TR,7.2 FX WOMEN'S,RG,8,WHI,800.0,STOLEN,1659,"{'type': 'Point', 'coordinates': (-79.45239005, 43.71432793)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1669,12208,GO-20169009530,THEFT UNDER - BICYCLE,2016-08-26,2016,August,Friday,26,239,12,2016-08-26,2016,August,Friday,26,239,15,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SU,,MT,21,BLK,150.0,STOLEN,1660,"{'type': 'Point', 'coordinates': (-79.44893304, 43.71749643)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1670,12509,GO-20169009530,THEFT UNDER - BICYCLE,2016-08-26,2016,August,Friday,26,239,12,2016-08-26,2016,August,Friday,26,239,15,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SP,SPORTEK,MT,21,BLK,150.0,STOLEN,1661,"{'type': 'Point', 'coordinates': (-79.44893304, 43.71749643)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1671,2880,GO-20189022980,THEFT UNDER - BICYCLE,2018-07-01,2018,July,Sunday,1,182,0,2018-07-18,2018,July,Wednesday,18,199,21,D22,Toronto,18,New Toronto (18),"Apartment (Rooming House, Condo)",Apartment,GF,MARLIN,MT,18,YEL,999.0,STOLEN,1832,"{'type': 'Point', 'coordinates': (-79.52415576, 43.6011476)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1672,13527,GO-20191858912,THEFT UNDER - BICYCLE,2019-09-26,2019,September,Thursday,26,269,19,2019-09-28,2019,September,Saturday,28,271,20,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CCM,SUPERCYCLE,MT,21,BLU,500.0,STOLEN,1662,"{'type': 'Point', 'coordinates': (-79.44893304, 43.71749643)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1673,13562,GO-20209018081,THEFT UNDER - BICYCLE,2020-07-19,2020,July,Sunday,19,201,19,2020-07-20,2020,July,Monday,20,202,20,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,OT,,RC,18,,800.0,STOLEN,1663,"{'type': 'Point', 'coordinates': (-79.45662421, 43.72272571)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1674,13565,GO-20209018474,THEFT UNDER - BICYCLE,2020-06-30,2020,June,Tuesday,30,182,18,2020-07-24,2020,July,Friday,24,206,16,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,6,BLU,100.0,STOLEN,1664,"{'type': 'Point', 'coordinates': (-79.4547113, 43.71408738)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1675,13572,GO-20201450695,THEFT UNDER - BICYCLE,2020-07-29,2020,July,Wednesday,29,211,1,2020-08-05,2020,August,Wednesday,5,218,14,D32,Toronto,31,Yorkdale-Glen Park (31),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCHWINN,SANCTUARY,TO,7,PLEWHI,185.0,STOLEN,1665,"{'type': 'Point', 'coordinates': (-79.44932805, 43.72085817)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1676,13578,GO-20209020790,THEFT UNDER - BICYCLE,2020-08-20,2020,August,Thursday,20,233,20,2020-08-20,2020,August,Thursday,20,233,22,D32,Toronto,31,Yorkdale-Glen Park (31),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,,MT,21,,800.0,STOLEN,1666,"{'type': 'Point', 'coordinates': (-79.44893304, 43.71749643)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1677,13595,GO-20209028816,THEFT UNDER - BICYCLE,2020-11-04,2020,November,Wednesday,4,309,6,2020-11-06,2020,November,Friday,6,311,11,D32,Toronto,31,Yorkdale-Glen Park (31),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CC,,MT,21,BLK,500.0,STOLEN,1667,"{'type': 'Point', 'coordinates': (-79.45515990000001, 43.71615642)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1678,13598,GO-20209030514,THEFT UNDER - BICYCLE,2020-11-11,2020,November,Wednesday,11,316,0,2020-11-25,2020,November,Wednesday,25,330,1,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,SC,GTX,OT,20,BLK,500.0,STOLEN,1668,"{'type': 'Point', 'coordinates': (-79.45662421, 43.72272571)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1679,13600,GO-20209032353,THEFT UNDER - BICYCLE,2020-07-10,2020,July,Friday,10,192,14,2020-12-18,2020,December,Friday,18,353,14,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM 1,MT,10,,700.0,STOLEN,1669,"{'type': 'Point', 'coordinates': (-79.4547113, 43.71408738)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1680,14794,GO-20189017548,THEFT UNDER - BICYCLE,2018-05-27,2018,May,Sunday,27,147,15,2018-06-05,2018,June,Tuesday,5,156,22,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,SC,700C,OT,14,WHI,700.0,STOLEN,1670,"{'type': 'Point', 'coordinates': (-79.4547113, 43.71408738)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1681,14877,GO-20209009988,THEFT UNDER,2020-03-26,2020,March,Thursday,26,86,23,2020-03-27,2020,March,Friday,27,87,18,D13,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM 2,RG,9,BLK,669.0,STOLEN,1671,"{'type': 'Point', 'coordinates': (-79.45394457, 43.71066174)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1682,15347,GO-20149005758,THEFT UNDER,2014-08-08,2014,August,Friday,8,220,21,2014-08-09,2014,August,Saturday,9,221,12,D13,Toronto,31,Yorkdale-Glen Park (31),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,"HARD ROCK""""",MT,21,BLK,565.0,STOLEN,1672,"{'type': 'Point', 'coordinates': (-79.44768793, 43.711050060000005)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1683,16736,GO-2019565074,B&E,2019-03-29,2019,March,Friday,29,88,4,2019-03-29,2019,March,Friday,29,88,17,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SANTA CRUZ,,RC,11,TAN,5900.0,STOLEN,1673,"{'type': 'Point', 'coordinates': (-79.46261751, 43.71695029)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1684,16737,GO-2019565074,B&E,2019-03-29,2019,March,Friday,29,88,4,2019-03-29,2019,March,Friday,29,88,17,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CERVELO,,OT,11,GRN,500.0,STOLEN,1674,"{'type': 'Point', 'coordinates': (-79.46261751, 43.71695029)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1685,16738,GO-2019565074,B&E,2019-03-29,2019,March,Friday,29,88,4,2019-03-29,2019,March,Friday,29,88,17,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CERVELO,,OT,11,,500.0,STOLEN,1675,"{'type': 'Point', 'coordinates': (-79.46261751, 43.71695029)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1686,16739,GO-2019565074,B&E,2019-03-29,2019,March,Friday,29,88,4,2019-03-29,2019,March,Friday,29,88,17,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CERVELO,,RC,11,BLK,10000.0,STOLEN,1676,"{'type': 'Point', 'coordinates': (-79.46261751, 43.71695029)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1687,16740,GO-2019565074,B&E,2019-03-29,2019,March,Friday,29,88,4,2019-03-29,2019,March,Friday,29,88,17,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CERVELO,,RC,11,BLK,5000.0,STOLEN,1677,"{'type': 'Point', 'coordinates': (-79.46261751, 43.71695029)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1688,16741,GO-2019565074,B&E,2019-03-29,2019,March,Friday,29,88,4,2019-03-29,2019,March,Friday,29,88,17,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CERVELO,,RC,11,BLKWHI,8500.0,STOLEN,1678,"{'type': 'Point', 'coordinates': (-79.46261751, 43.71695029)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1689,16757,GO-20199015816,THEFT UNDER,2019-05-21,2019,May,Tuesday,21,141,17,2019-05-21,2019,May,Tuesday,21,141,19,D32,Toronto,31,Yorkdale-Glen Park (31),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,RC,25,YEL,0.0,STOLEN,1679,"{'type': 'Point', 'coordinates': (-79.44893304, 43.71749643)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1690,16766,GO-20199018284,THEFT UNDER,2019-06-11,2019,June,Tuesday,11,162,13,2019-06-12,2019,June,Wednesday,12,163,11,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,NO,2017,MT,11,TRQ,2000.0,STOLEN,1680,"{'type': 'Point', 'coordinates': (-79.4547113, 43.71408738)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1691,16847,GO-20209025675,THEFT UNDER - BICYCLE,2020-10-05,2020,October,Monday,5,279,12,2020-10-07,2020,October,Wednesday,7,281,12,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,KO,KONA DR.DEW,TO,15,BLU,1000.0,STOLEN,1681,"{'type': 'Point', 'coordinates': (-79.44861224, 43.72328355)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1692,16856,GO-20209029323,THEFT UNDER - BICYCLE,2020-11-03,2020,November,Tuesday,3,308,16,2020-11-11,2020,November,Wednesday,11,316,19,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,OT,"27.5"""" MEN'S CAR",MT,9,BLK,800.0,STOLEN,1682,"{'type': 'Point', 'coordinates': (-79.45239005, 43.71432793)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1693,17717,GO-20171558280,PROPERTY - FOUND,2017-07-14,2017,July,Friday,14,195,21,2017-08-28,2017,August,Monday,28,240,14,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,IRON HORSE,,MT,18,BLK,,UNKNOWN,1683,"{'type': 'Point', 'coordinates': (-79.45130961, 43.72364999)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1694,17741,GO-20179015653,THEFT UNDER - BICYCLE,2017-09-24,2017,September,Sunday,24,267,1,2017-09-24,2017,September,Sunday,24,267,20,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,SU,ROAD CYCLE,RC,14,BLU,300.0,STOLEN,1684,"{'type': 'Point', 'coordinates': (-79.45239005, 43.71432793)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1695,17988,GO-20151465642,THEFT UNDER,2015-08-25,2015,August,Tuesday,25,237,8,2015-08-25,2015,August,Tuesday,25,237,19,D32,Toronto,31,Yorkdale-Glen Park (31),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,,OT,24,BLUWHI,500.0,STOLEN,1685,"{'type': 'Point', 'coordinates': (-79.44943067, 43.71497087)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1696,18064,GO-20162028312,THEFT UNDER - BICYCLE,2016-11-12,2016,November,Saturday,12,317,6,2016-11-16,2016,November,Wednesday,16,321,19,D32,Toronto,31,Yorkdale-Glen Park (31),Ttc Subway Station,Transit,CCM,,MT,18,YEL,200.0,STOLEN,1686,"{'type': 'Point', 'coordinates': (-79.44598667, 43.72478043)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1697,18221,GO-20179011022,THEFT UNDER - BICYCLE,2017-07-25,2017,July,Tuesday,25,206,15,2017-07-25,2017,July,Tuesday,25,206,21,D13,Toronto,31,Yorkdale-Glen Park (31),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,AMS MONACO HYBR,RG,21,OTH,0.0,STOLEN,1687,"{'type': 'Point', 'coordinates': (-79.45823827, 43.71276392)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1698,18256,GO-20199025140,THEFT UNDER,2019-08-06,2019,August,Tuesday,6,218,16,2019-08-06,2019,August,Tuesday,6,218,18,D13,Toronto,31,Yorkdale-Glen Park (31),Bar / Restaurant,Commercial,OT,TRAIL X,MT,8,BLK,550.0,STOLEN,1688,"{'type': 'Point', 'coordinates': (-79.45380968, 43.70998988)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1699,18414,GO-201595477,PROPERTY - FOUND,2015-06-07,2015,June,Sunday,7,158,12,2015-06-07,2015,June,Sunday,7,158,19,D13,Toronto,31,Yorkdale-Glen Park (31),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BIANCHI,MAIN STREET,MT,10,BLK,,UNKNOWN,1689,"{'type': 'Point', 'coordinates': (-79.45551775, 43.70672494)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1700,20002,GO-20189041720,THEFT UNDER - BICYCLE,2018-12-06,2018,December,Thursday,6,340,21,2018-12-11,2018,December,Tuesday,11,345,22,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,CC,CCM APEX WOMENS,MT,24,BLK,640.0,STOLEN,1690,"{'type': 'Point', 'coordinates': (-79.4547113, 43.71408738)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1701,20036,GO-20191086248,THEFT UNDER - BICYCLE,2019-06-10,2019,June,Monday,10,161,14,2019-06-14,2019,June,Friday,14,165,18,D32,Toronto,31,Yorkdale-Glen Park (31),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,SC1800,RG,12,SIL,125.0,STOLEN,1691,"{'type': 'Point', 'coordinates': (-79.45239005, 43.71432793)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1702,20037,GO-20191086248,THEFT UNDER - BICYCLE,2019-06-10,2019,June,Monday,10,161,14,2019-06-14,2019,June,Friday,14,165,18,D32,Toronto,31,Yorkdale-Glen Park (31),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,VICTORY DYNO,RG,12,BLU,125.0,STOLEN,1692,"{'type': 'Point', 'coordinates': (-79.45239005, 43.71432793)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1703,20047,GO-20199020565,THEFT UNDER - BICYCLE,2019-06-28,2019,June,Friday,28,179,17,2019-06-30,2019,June,Sunday,30,181,11,D32,Toronto,31,Yorkdale-Glen Park (31),Ttc Subway Station,Transit,OT,,OT,21,RED,1100.0,STOLEN,1693,"{'type': 'Point', 'coordinates': (-79.45130961, 43.72364999)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1704,20097,GO-20201211913,THEFT UNDER - BICYCLE,2020-06-17,2020,June,Wednesday,17,169,16,2020-07-01,2020,July,Wednesday,1,183,14,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,OTHER,,RG,6,BRNBLK,600.0,STOLEN,1694,"{'type': 'Point', 'coordinates': (-79.45239005, 43.71432793)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1705,20110,GO-20209019155,THEFT UNDER - BICYCLE,2020-08-01,2020,August,Saturday,1,214,11,2020-08-01,2020,August,Saturday,1,214,16,D32,Toronto,31,Yorkdale-Glen Park (31),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,,RG,21,BLK,400.0,STOLEN,1695,"{'type': 'Point', 'coordinates': (-79.46167968, 43.71918674)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1706,21263,GO-20189013767,THEFT UNDER - BICYCLE,2018-04-27,2018,April,Friday,27,117,17,2018-05-04,2018,May,Friday,4,124,10,D32,Toronto,31,Yorkdale-Glen Park (31),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,IN,PLATEAU,MT,21,TAN,250.0,STOLEN,1696,"{'type': 'Point', 'coordinates': (-79.45239005, 43.71432793)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1707,21308,GO-20189021674,THEFT UNDER - BICYCLE,2018-07-07,2018,July,Saturday,7,188,22,2018-07-09,2018,July,Monday,9,190,10,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,OT,SCR-1,RC,18,BLK,300.0,STOLEN,1697,"{'type': 'Point', 'coordinates': (-79.45239005, 43.71432793)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1708,21331,GO-20189025875,THEFT UNDER - BICYCLE,2018-08-09,2018,August,Thursday,9,221,12,2018-08-10,2018,August,Friday,10,222,16,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,DIVERGE,RC,10,GRY,2000.0,STOLEN,1698,"{'type': 'Point', 'coordinates': (-79.44943067, 43.71497087)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1709,21472,GO-2017627505,B&E,2017-04-08,2017,April,Saturday,8,98,4,2017-04-09,2017,April,Sunday,9,99,19,D13,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,TREK,3700,RG,10,REDWHI,630.0,STOLEN,1699,"{'type': 'Point', 'coordinates': (-79.45398417, 43.71081612)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1710,21503,GO-20179010349,THEFT UNDER - BICYCLE,2017-07-16,2017,July,Sunday,16,197,17,2017-07-16,2017,July,Sunday,16,197,20,D13,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,ESCAPE 3,RG,21,GRY,500.0,STOLEN,1700,"{'type': 'Point', 'coordinates': (-79.45823827, 43.71276392)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1711,21542,GO-20191275454,THEFT UNDER - BICYCLE,2019-07-08,2019,July,Monday,8,189,8,2019-07-08,2019,July,Monday,8,189,19,D13,Toronto,31,Yorkdale-Glen Park (31),Ttc Subway Train,Transit,GIANT,HYBRID,RG,1,LBL,,STOLEN,1701,"{'type': 'Point', 'coordinates': (-79.44094814, 43.70960071)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1712,21557,GO-20209015760,THEFT UNDER,2020-06-19,2020,June,Friday,19,171,18,2020-06-19,2020,June,Friday,19,171,22,D13,Toronto,31,Yorkdale-Glen Park (31),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,ASPECT 960 2017,MT,21,GRN,750.0,STOLEN,1702,"{'type': 'Point', 'coordinates': (-79.45341301, 43.70817157)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1713,21814,GO-20142665969,PROPERTY - FOUND,2014-08-08,2014,August,Friday,8,220,22,2014-08-09,2014,August,Saturday,9,221,8,D13,Toronto,31,Yorkdale-Glen Park (31),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NE,CYCLONE,MT,21,GRN,,UNKNOWN,1703,"{'type': 'Point', 'coordinates': (-79.44747056, 43.71010492)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1714,22014,GO-20142330493,THEFT UNDER,2014-05-21,2014,May,Wednesday,21,141,11,2014-06-20,2014,June,Friday,20,171,13,D32,Toronto,31,Yorkdale-Glen Park (31),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KH,URBAN EXPRESS,RG,99,TAN,,RECOVERED,1704,"{'type': 'Point', 'coordinates': (-79.45613233, 43.72046264)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1715,23290,GO-20199023320,THEFT UNDER - BICYCLE,2019-07-22,2019,July,Monday,22,203,12,2019-07-22,2019,July,Monday,22,203,23,D32,Toronto,31,Yorkdale-Glen Park (31),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,ROAD BIKE,RC,1,GRY,500.0,STOLEN,1705,"{'type': 'Point', 'coordinates': (-79.45130961, 43.72364999)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1716,23341,GO-20201370626,THEFT UNDER - BICYCLE,2020-07-01,2020,July,Wednesday,1,183,0,2020-07-23,2020,July,Thursday,23,205,15,D32,Toronto,31,Yorkdale-Glen Park (31),"Apartment (Rooming House, Condo)",Apartment,ROCKY MOUNTAIN,UNKNOWN,MT,12,PLEONG,900.0,STOLEN,1706,"{'type': 'Point', 'coordinates': (-79.4547113, 43.71408738)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1717,23343,GO-20209018468,THEFT UNDER - BICYCLE,2020-07-24,2020,July,Friday,24,206,12,2020-07-24,2020,July,Friday,24,206,20,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,FIXIE/SINGLE SP,OT,1,BLK,700.0,STOLEN,1707,"{'type': 'Point', 'coordinates': (-79.45130961, 43.72364999)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1718,24399,GO-20201543759,THEFT OF EBIKE UNDER $5000,2020-08-14,2020,August,Friday,14,227,4,2020-08-18,2020,August,Tuesday,18,231,17,D13,Toronto,31,Yorkdale-Glen Park (31),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,EL,0,SIL,4000.0,STOLEN,1708,"{'type': 'Point', 'coordinates': (-79.44783456, 43.70511614)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1719,2936,GO-20189023671,THEFT UNDER,2018-07-24,2018,July,Tuesday,24,205,2,2018-07-24,2018,July,Tuesday,24,205,9,D22,Toronto,18,New Toronto (18),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,18,BGE,600.0,STOLEN,1833,"{'type': 'Point', 'coordinates': (-79.51798505, 43.60068281)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1720,24433,GO-20149005501,THEFT UNDER,2014-07-31,2014,July,Thursday,31,212,16,2014-07-31,2014,July,Thursday,31,212,17,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,RACE 7,MT,9,PLE,1000.0,STOLEN,1709,"{'type': 'Point', 'coordinates': (-79.46320163, 43.722698)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1721,24439,GO-20149007938,THEFT UNDER,2014-10-24,2014,October,Friday,24,297,13,2014-11-01,2014,November,Saturday,1,305,12,D32,Toronto,31,Yorkdale-Glen Park (31),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,SIRIUS,TO,21,BLK,2400.0,STOLEN,1710,"{'type': 'Point', 'coordinates': (-79.45502575, 43.72097791000001)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1722,24483,GO-20159005975,THEFT UNDER,2015-08-18,2015,August,Tuesday,18,230,12,2015-08-18,2015,August,Tuesday,18,230,15,D32,Toronto,31,Yorkdale-Glen Park (31),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NO,YORKVILLE,RG,24,BLK,520.0,STOLEN,1711,"{'type': 'Point', 'coordinates': (-79.45130961, 43.72364999)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1723,24505,GO-20169000942,THEFT UNDER,2016-01-02,2016,January,Saturday,2,2,21,2016-01-29,2016,January,Friday,29,29,9,D32,Toronto,31,Yorkdale-Glen Park (31),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,HULIGAN,MT,5,DGR,,STOLEN,1712,"{'type': 'Point', 'coordinates': (-79.45239005, 43.71432793)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1724,24532,GO-20169007786,THEFT UNDER - BICYCLE,2016-07-25,2016,July,Monday,25,207,20,2016-07-26,2016,July,Tuesday,26,208,17,D32,Toronto,31,Yorkdale-Glen Park (31),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MT ROBSON,MT,21,RED,0.0,STOLEN,1713,"{'type': 'Point', 'coordinates': (-79.4547113, 43.71408738)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1725,24567,GO-20179005280,THEFT UNDER,2017-04-25,2017,April,Tuesday,25,115,16,2017-04-25,2017,April,Tuesday,25,115,18,D32,Toronto,31,Yorkdale-Glen Park (31),Ttc Subway Station,Transit,OT,MALE MODEL,MT,10,WHI,400.0,STOLEN,1714,"{'type': 'Point', 'coordinates': (-79.44598667, 43.72478043)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1726,24589,GO-20149000905,THEFT UNDER,2014-01-31,2014,January,Friday,31,31,11,2014-02-01,2014,February,Saturday,1,32,0,D13,Toronto,31,Yorkdale-Glen Park (31),Ttc Subway Station,Transit,OT,MONT STE-ANNE,MT,18,,,STOLEN,1715,"{'type': 'Point', 'coordinates': (-79.43982544, 43.70789665)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1727,24742,GO-20159006234,THEFT UNDER,2015-08-24,2015,August,Monday,24,236,23,2015-08-27,2015,August,Thursday,27,239,11,D13,Toronto,31,Yorkdale-Glen Park (31),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,EXPEDITION,MT,18,GRY,200.0,STOLEN,1716,"{'type': 'Point', 'coordinates': (-79.4497258, 43.70513045)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-1728,17983,GO-20151308110,B&E,2015-07-30,2015,July,Thursday,30,211,19,2015-07-31,2015,July,Friday,31,212,7,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GIANT,RAPID THREE,RC,24,WHIBLK,650.0,STOLEN,1717,"{'type': 'Point', 'coordinates': (-79.49347247, 43.60449536)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1729,17985,GO-20151399334,PROPERTY - FOUND,2015-08-15,2015,August,Saturday,15,227,0,2015-08-15,2015,August,Saturday,15,227,0,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,1800,MT,18,,,UNKNOWN,1718,"{'type': 'Point', 'coordinates': (-79.48551235, 43.61982412)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1730,17990,GO-20151545205,THEFT OVER,2015-09-02,2015,September,Wednesday,2,245,13,2015-09-07,2015,September,Monday,7,250,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,BMC,GF02,OT,12,BLKRED,7490.0,STOLEN,1719,"{'type': 'Point', 'coordinates': (-79.47400022, 43.6305708)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1731,18004,GO-20151960835,PROPERTY - FOUND,2015-11-10,2015,November,Tuesday,10,314,8,2015-11-15,2015,November,Sunday,15,319,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,STATIC 26,MT,18,,,UNKNOWN,1720,"{'type': 'Point', 'coordinates': (-79.49131679, 43.62006774)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1732,18012,GO-20169001382,THEFT UNDER,2016-02-12,2016,February,Friday,12,43,8,2016-02-13,2016,February,Saturday,13,44,10,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE 2,OT,8,SIL,500.0,STOLEN,1721,"{'type': 'Point', 'coordinates': (-79.48643252, 43.61892859)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1733,18016,GO-20169003074,THEFT UNDER,2016-04-02,2016,April,Saturday,2,93,18,2016-04-04,2016,April,Monday,4,95,21,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,7,BLK,550.0,STOLEN,1722,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1734,18066,GO-20162306680,THEFT UNDER - BICYCLE,2016-12-30,2016,December,Friday,30,365,11,2016-12-30,2016,December,Friday,30,365,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,CANNONDALE,F29-5,MT,21,WHI,2500.0,STOLEN,1723,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1735,18070,GO-2017850405,THEFT UNDER - BICYCLE,2017-05-09,2017,May,Tuesday,9,129,1,2017-05-14,2017,May,Sunday,14,134,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,8000,MT,21,BLK,1200.0,STOLEN,1724,"{'type': 'Point', 'coordinates': (-79.49504558, 43.61259603)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1736,18071,GO-20179006596,THEFT UNDER - BICYCLE,2017-04-27,2017,April,Thursday,27,117,8,2017-05-18,2017,May,Thursday,18,138,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,ALLEZ,RC,20,BLK,0.0,STOLEN,1725,"{'type': 'Point', 'coordinates': (-79.47864061, 43.6248261)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1737,18076,GO-20179008841,THEFT UNDER - BICYCLE,2017-06-24,2017,June,Saturday,24,175,17,2017-06-24,2017,June,Saturday,24,175,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,BIKE,EL,5,YEL,2500.0,STOLEN,1726,"{'type': 'Point', 'coordinates': (-79.49287281, 43.61784449)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1738,18311,GO-20141933079,THEFT UNDER,2014-04-21,2014,April,Monday,21,111,2,2014-04-21,2014,April,Monday,21,111,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,RG,10,BLU,10.0,STOLEN,1727,"{'type': 'Point', 'coordinates': (-79.49131679, 43.62006774)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1739,20808,GO-20209022526,THEFT UNDER,2020-09-06,2020,September,Sunday,6,250,12,2020-09-07,2020,September,Monday,7,251,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,SC,,MT,24,BLK,600.0,STOLEN,1728,"{'type': 'Point', 'coordinates': (-79.47893413, 43.62369402)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1740,20840,GO-20209031081,THEFT UNDER,2020-12-01,2020,December,Tuesday,1,336,7,2020-12-02,2020,December,Wednesday,2,337,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,,RG,15,SIL,0.0,STOLEN,1729,"{'type': 'Point', 'coordinates': (-79.5063783, 43.61878846)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1741,20969,GO-20182170206,THEFT OVER,2018-11-22,2018,November,Thursday,22,326,10,2018-11-25,2018,November,Sunday,25,329,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,COLANGO,EPS,MT,22,BLUWHI,10000.0,STOLEN,1730,"{'type': 'Point', 'coordinates': (-79.47400022, 43.6305708)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1742,20976,GO-20189042627,THEFT UNDER - BICYCLE,2018-12-13,2018,December,Thursday,13,347,12,2018-12-18,2018,December,Tuesday,18,352,23,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,TR,7.1 FX,RG,21,BLK,520.0,STOLEN,1731,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1743,10120,GO-20159005076,THEFT UNDER,2015-07-27,2015,July,Monday,27,208,12,2015-07-28,2015,July,Tuesday,28,209,10,D22,Toronto,18,New Toronto (18),Universities / Colleges,Educational,TU,2015,MT,18,GRY,180.0,STOLEN,1858,"{'type': 'Point', 'coordinates': (-79.51502157, 43.59859558)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1744,20977,GO-20189042627,THEFT UNDER - BICYCLE,2018-12-13,2018,December,Thursday,13,347,12,2018-12-18,2018,December,Tuesday,18,352,23,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,TR,FX21,RG,21,BLK,520.0,STOLEN,1732,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1745,21003,GO-20199017003,THEFT UNDER,2019-05-18,2019,May,Saturday,18,138,14,2019-05-31,2019,May,Friday,31,151,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,MO,R7917WMA,MT,21,BLK,200.0,STOLEN,1733,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1746,21005,GO-20191028963,THEFT UNDER - BICYCLE,2019-05-20,2019,May,Monday,20,140,11,2019-06-04,2019,June,Tuesday,4,155,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GIANT,ESCAPE 3,OT,10,,800.0,STOLEN,1734,"{'type': 'Point', 'coordinates': (-79.48497603, 43.62140475)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1747,21006,GO-20191069279,THEFT UNDER,2019-06-06,2019,June,Thursday,6,157,10,2019-06-10,2019,June,Monday,10,161,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Go Station,Transit,UNKNONW,GT AGGRESSOR,MT,6,GRNBLK,500.0,STOLEN,1735,"{'type': 'Point', 'coordinates': (-79.49833024, 43.61617493)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1748,21014,GO-20199020186,THEFT UNDER,2019-06-26,2019,June,Wednesday,26,177,12,2019-06-26,2019,June,Wednesday,26,177,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,TR,X-01,OT,24,WHI,1600.0,STOLEN,1736,"{'type': 'Point', 'coordinates': (-79.48497603, 43.62140475)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1749,21019,GO-20191266154,THEFT OF EBIKE UNDER $5000,2019-07-05,2019,July,Friday,5,186,9,2019-07-07,2019,July,Sunday,7,188,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,EMMO/CHAMELEO,EL,3,RED,950.0,STOLEN,1737,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1750,21023,GO-20191351097,THEFT UNDER,2019-07-18,2019,July,Thursday,18,199,14,2019-07-19,2019,July,Friday,19,200,10,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,,RG,21,,3000.0,STOLEN,1738,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1751,21030,GO-20191421588,THEFT UNDER,2019-07-22,2019,July,Monday,22,203,20,2019-07-28,2019,July,Sunday,28,209,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,702,OT,24,BLKONG,625.0,STOLEN,1739,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1752,21036,GO-20199024945,THEFT UNDER,2019-08-03,2019,August,Saturday,3,215,20,2019-08-04,2019,August,Sunday,4,216,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MA,,BM,8,,0.0,STOLEN,1740,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1753,21040,GO-20199025738,THEFT UNDER,2019-08-11,2019,August,Sunday,11,223,5,2019-08-11,2019,August,Sunday,11,223,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,SU,,MT,7,,150.0,STOLEN,1741,"{'type': 'Point', 'coordinates': (-79.48999212, 43.61115169)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1754,21069,GO-20191857283,B&E,2019-09-12,2019,September,Thursday,12,255,8,2019-09-26,2019,September,Thursday,26,269,19,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,ARGON 18,,TO,22,REDWHI,1000.0,STOLEN,1742,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1755,21073,GO-20191922129,THEFT UNDER,2019-09-26,2019,September,Thursday,26,269,9,2019-10-05,2019,October,Saturday,5,278,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Open Areas (Lakes, Parks, Rivers)",Outside,ZZZ,MAGNA,MT,10,,,STOLEN,1743,"{'type': 'Point', 'coordinates': (-79.50007787, 43.61724892)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1756,21130,GO-20209012402,THEFT UNDER,2020-05-02,2020,May,Saturday,2,123,16,2020-05-03,2020,May,Sunday,3,124,19,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,SC,GTX 2.0,RG,21,BLK,350.0,STOLEN,1744,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1757,21146,GO-20209015389,THEFT FROM MOTOR VEHICLE UNDER,2020-06-14,2020,June,Sunday,14,166,21,2020-06-15,2020,June,Monday,15,167,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,RG,21,RED,750.0,STOLEN,1745,"{'type': 'Point', 'coordinates': (-79.4897495, 43.61273143)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1758,21168,GO-20171154172,THEFT UNDER - BICYCLE,2017-06-27,2017,June,Tuesday,27,178,6,2017-06-28,2017,June,Wednesday,28,179,9,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,HUFFY,,RG,10,PLE,120.0,STOLEN,1746,"{'type': 'Point', 'coordinates': (-79.49219650000002, 43.60815438)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1759,21316,GO-20189022301,THEFT UNDER - BICYCLE,2018-07-13,2018,July,Friday,13,194,13,2018-07-13,2018,July,Friday,13,194,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,S2 (105),OT,11,BLK,3600.0,STOLEN,1754,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1760,21169,GO-20171154172,THEFT UNDER - BICYCLE,2017-06-27,2017,June,Tuesday,27,178,6,2017-06-28,2017,June,Wednesday,28,179,9,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,MENS,RG,10,BLK,50.0,STOLEN,1747,"{'type': 'Point', 'coordinates': (-79.49219650000002, 43.60815438)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1761,21179,GO-20179009985,THEFT UNDER - BICYCLE,2017-07-11,2017,July,Tuesday,11,192,9,2017-07-12,2017,July,Wednesday,12,193,0,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GT,AGGRESSOR,MT,7,BLK,500.0,STOLEN,1748,"{'type': 'Point', 'coordinates': (-79.49138084, 43.62576989)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1762,21243,GO-201884250,THEFT UNDER - BICYCLE,2017-12-17,2017,December,Sunday,17,351,0,2018-01-14,2018,January,Sunday,14,14,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,GARNEAU GENNIX,RC,21,,2000.0,STOLEN,1749,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1763,21244,GO-201884250,THEFT UNDER - BICYCLE,2017-12-17,2017,December,Sunday,17,351,0,2018-01-14,2018,January,Sunday,14,14,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,GARNEAU GENNIX,RC,21,BLKRED,2000.0,STOLEN,1750,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1764,21248,GO-2018317216,THEFT UNDER,2018-02-19,2018,February,Monday,19,50,14,2018-02-19,2018,February,Monday,19,50,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,CA,F29,MT,10,GRY,2300.0,STOLEN,1751,"{'type': 'Point', 'coordinates': (-79.48862673, 43.61495018)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1765,21249,GO-2018317216,THEFT UNDER,2018-02-19,2018,February,Monday,19,50,14,2018-02-19,2018,February,Monday,19,50,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,IH,,MT,10,BLK,600.0,STOLEN,1752,"{'type': 'Point', 'coordinates': (-79.48862673, 43.61495018)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1766,21254,GO-2018457623,THEFT UNDER - BICYCLE,2018-03-12,2018,March,Monday,12,71,7,2018-03-13,2018,March,Tuesday,13,72,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GIANT,ROAM O,OT,0,BLK,,STOLEN,1753,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1767,21323,GO-20189023584,THEFT UNDER - BICYCLE,2018-07-20,2018,July,Friday,20,201,5,2018-07-23,2018,July,Monday,23,204,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ASPECT 940,MT,27,WHI,1000.0,STOLEN,1755,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1768,21324,GO-20189024162,THEFT UNDER - BICYCLE,2018-07-26,2018,July,Thursday,26,207,5,2018-07-27,2018,July,Friday,27,208,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,ROCK HOPPER,MT,24,GRY,1000.0,STOLEN,1756,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1769,21346,GO-20189031673,THEFT UNDER - BICYCLE,2018-09-21,2018,September,Friday,21,264,12,2018-09-24,2018,September,Monday,24,267,7,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,CA,SCALPEL 29 ALLO,MT,18,BLK,2900.0,STOLEN,1757,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1770,21348,GO-20189032303,THEFT UNDER,2018-09-28,2018,September,Friday,28,271,19,2018-09-28,2018,September,Friday,28,271,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Go Station,Transit,UK,MIXTAPE,RG,7,GRY,650.0,STOLEN,1758,"{'type': 'Point', 'coordinates': (-79.49833024, 43.61617493)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1771,21352,GO-20181836832,THEFT UNDER - BICYCLE,2018-10-03,2018,October,Wednesday,3,276,18,2018-10-04,2018,October,Thursday,4,277,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,MEDALIST,MT,21,BLU,200.0,STOLEN,1759,"{'type': 'Point', 'coordinates': (-79.49792125, 43.6023614)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1772,21353,GO-20189032944,THEFT UNDER - BICYCLE,2018-10-04,2018,October,Thursday,4,277,18,2018-10-04,2018,October,Thursday,4,277,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GI,ROAM 3,RG,27,BLK,700.0,STOLEN,1760,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1773,21363,GO-20181906851,THEFT UNDER - BICYCLE,2018-10-14,2018,October,Sunday,14,287,17,2018-10-15,2018,October,Monday,15,288,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CANNONDALE,,MT,0,BLKWHI,1200.0,STOLEN,1761,"{'type': 'Point', 'coordinates': (-79.48760733, 43.62206923)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1774,24558,GO-20162152621,THEFT OVER - BICYCLE,2016-12-04,2016,December,Sunday,4,339,5,2016-12-04,2016,December,Sunday,4,339,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,FUJI,TAHOE,MT,20,BLK,6000.0,STOLEN,1814,"{'type': 'Point', 'coordinates': (-79.48643252, 43.61892859)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1775,22000,GO-20142045048,THEFT UNDER,2014-05-08,2014,May,Thursday,8,128,21,2014-05-09,2014,May,Friday,9,129,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,UNKN,MT,6,BLKYEL,450.0,STOLEN,1762,"{'type': 'Point', 'coordinates': (-79.49332753, 43.61293873)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1776,22001,GO-20142045048,THEFT UNDER,2014-05-08,2014,May,Thursday,8,128,21,2014-05-09,2014,May,Friday,9,129,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,6,BLK,200.0,STOLEN,1763,"{'type': 'Point', 'coordinates': (-79.49332753, 43.61293873)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1777,22039,GO-20149007832,THEFT UNDER,2014-10-16,2014,October,Thursday,16,289,18,2014-10-26,2014,October,Sunday,26,299,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GF,ADVANCE,MT,21,ONG,530.0,STOLEN,1764,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1778,22061,GO-20159003713,THEFT UNDER,2015-06-17,2015,June,Wednesday,17,168,23,2015-06-17,2015,June,Wednesday,17,168,23,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Schools During Un-Supervised Activity,Educational,UK,RATTLESNAKE,BM,1,GRN,150.0,STOLEN,1765,"{'type': 'Point', 'coordinates': (-79.48799361, 43.61936533)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1779,22071,GO-20151256969,THEFT UNDER,2015-07-19,2015,July,Sunday,19,200,2,2015-07-23,2015,July,Thursday,23,204,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,,MT,21,SIL,,STOLEN,1766,"{'type': 'Point', 'coordinates': (-79.49683396, 43.62059912000001)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1780,22094,GO-20159009276,THEFT UNDER,2015-11-02,2015,November,Monday,2,306,9,2015-11-02,2015,November,Monday,2,306,17,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,ST TROPEZ SM-BL,OT,8,BLK,600.0,STOLEN,1767,"{'type': 'Point', 'coordinates': (-79.47564953, 43.62924438)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1781,22113,GO-20169006758,THEFT UNDER,2016-06-22,2016,June,Wednesday,22,174,1,2016-07-05,2016,July,Tuesday,5,187,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,TR,7.7,RG,10,BLK,2200.0,STOLEN,1768,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1782,22126,GO-20169009396,THEFT UNDER - BICYCLE,2016-06-23,2016,June,Thursday,23,175,8,2016-08-24,2016,August,Wednesday,24,237,9,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,RG,21,BLK,300.0,STOLEN,1769,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1783,22129,GO-20169010606,THEFT UNDER,2016-09-15,2016,September,Thursday,15,259,12,2016-09-17,2016,September,Saturday,17,261,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,TR,HYBRID 7100,TO,21,BRN,700.0,STOLEN,1770,"{'type': 'Point', 'coordinates': (-79.47550213, 43.63126324)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1784,22137,GO-20162063432,THEFT UNDER - BICYCLE,2016-10-23,2016,October,Sunday,23,297,19,2016-11-20,2016,November,Sunday,20,325,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,ORBEA,MX40,MT,22,ONG,895.0,STOLEN,1771,"{'type': 'Point', 'coordinates': (-79.47706999, 43.62578178)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1785,22146,GO-2017691352,THEFT OF EBIKE UNDER $5000,2017-04-19,2017,April,Wednesday,19,109,19,2017-04-20,2017,April,Thursday,20,110,7,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN,,EL,1,BLU,2700.0,STOLEN,1772,"{'type': 'Point', 'coordinates': (-79.48999212, 43.61115169)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1786,22151,GO-20179006724,THEFT FROM MOTOR VEHICLE UNDER,2017-05-20,2017,May,Saturday,20,140,13,2017-05-21,2017,May,Sunday,21,141,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,DOMANE 4.7C,RC,11,WHI,3300.0,STOLEN,1773,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1787,22152,GO-20179006834,THEFT UNDER - BICYCLE,2017-05-15,2017,May,Monday,15,135,20,2017-05-23,2017,May,Tuesday,23,143,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,CA,CANNONDALE TRAI,MT,24,WHI,1500.0,STOLEN,1774,"{'type': 'Point', 'coordinates': (-79.48480515, 43.62040835)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1788,23812,GO-20209018636,THEFT UNDER,2020-07-23,2020,July,Thursday,23,205,7,2020-07-27,2020,July,Monday,27,209,8,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,NO,STORM,MT,21,,1000.0,STOLEN,1775,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1789,23837,GO-20209023192,THEFT UNDER,2020-09-12,2020,September,Saturday,12,256,0,2020-09-15,2020,September,Tuesday,15,259,2,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,NO,17 VFR 6 STEP-T,UN,40,WHI,522.0,STOLEN,1776,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1790,23988,GO-20189033401,THEFT UNDER - BICYCLE,2018-10-09,2018,October,Tuesday,9,282,15,2018-10-09,2018,October,Tuesday,9,282,19,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,DEVINCI- WOOKY,MT,16,BLK,4500.0,STOLEN,1777,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1791,23991,GO-20181919766,THEFT UNDER - BICYCLE,2018-10-16,2018,October,Tuesday,16,289,18,2018-10-17,2018,October,Wednesday,17,290,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CANNONDALE,CAAD 6,RC,21,BLKWHI,1400.0,STOLEN,1778,"{'type': 'Point', 'coordinates': (-79.49477509, 43.62197176)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1792,23992,GO-20181919766,THEFT UNDER - BICYCLE,2018-10-16,2018,October,Tuesday,16,289,18,2018-10-17,2018,October,Wednesday,17,290,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CA,CAAD8 TIAGRA 6,RC,20,BLK,1400.0,STOLEN,1779,"{'type': 'Point', 'coordinates': (-79.49477509, 43.62197176)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1793,23999,GO-20189039056,THEFT UNDER - BICYCLE,2018-11-14,2018,November,Wednesday,14,318,8,2018-11-20,2018,November,Tuesday,20,324,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GT,VANTARA COMP,RG,21,BLK,565.0,STOLEN,1780,"{'type': 'Point', 'coordinates': (-79.48480515, 43.62040835)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1794,24012,GO-20199003001,THEFT UNDER - BICYCLE,2019-01-21,2019,January,Monday,21,21,21,2019-01-22,2019,January,Tuesday,22,22,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,8,BLK,0.0,STOLEN,1781,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1795,24013,GO-20199003001,THEFT UNDER - BICYCLE,2019-01-21,2019,January,Monday,21,21,21,2019-01-22,2019,January,Tuesday,22,22,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,8,,0.0,STOLEN,1782,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1796,24019,GO-20199004962,THEFT UNDER,2019-02-07,2019,February,Thursday,7,38,4,2019-02-09,2019,February,Saturday,9,40,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,,MT,21,BLU,0.0,STOLEN,1783,"{'type': 'Point', 'coordinates': (-79.50753802, 43.61477969)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1797,2497,GO-20189017424,THEFT UNDER - BICYCLE,2018-06-04,2018,June,Monday,4,155,17,2018-06-04,2018,June,Monday,4,155,23,D22,Toronto,18,New Toronto (18),Schools During Supervised Activity,Educational,UK,,RG,8,SIL,220.0,STOLEN,1823,"{'type': 'Point', 'coordinates': (-79.52122445, 43.59996107)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1798,24063,GO-20199022441,THEFT UNDER,2019-06-16,2019,June,Sunday,16,167,20,2019-07-16,2019,July,Tuesday,16,197,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,NO,SCENE 3,RG,7,GRY,677.0,STOLEN,1784,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1799,24064,GO-20199022441,THEFT UNDER,2019-06-16,2019,June,Sunday,16,167,20,2019-07-16,2019,July,Tuesday,16,197,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,MOUNTAIN BIKE,MT,21,BLK,700.0,STOLEN,1785,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1800,24070,GO-20191351004,THEFT UNDER,2019-07-18,2019,July,Thursday,18,199,19,2019-07-18,2019,July,Thursday,18,199,22,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OTHER,AKUNA,TO,10,,1700.0,STOLEN,1786,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1801,24086,GO-20199025947,THEFT UNDER,2019-08-12,2019,August,Monday,12,224,8,2019-08-12,2019,August,Monday,12,224,18,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),Go Station,Transit,OT,DEVINCI ST. TRO,RG,24,BLU,650.0,STOLEN,1787,"{'type': 'Point', 'coordinates': (-79.49833024, 43.61617493)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1802,24098,GO-20191750848,B&E,2019-09-10,2019,September,Tuesday,10,253,20,2019-09-12,2019,September,Thursday,12,255,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,RINCON,MT,21,RED,1000.0,STOLEN,1788,"{'type': 'Point', 'coordinates': (-79.50371138, 43.6202552)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1803,24168,GO-2020765062,THEFT UNDER,2020-04-15,2020,April,Wednesday,15,106,22,2020-04-23,2020,April,Thursday,23,114,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN MAKE,,SC,3,,3000.0,STOLEN,1789,"{'type': 'Point', 'coordinates': (-79.49787186, 43.61502724)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1804,24171,GO-2020892070,THEFT UNDER - BICYCLE,2020-05-02,2020,May,Saturday,2,123,15,2020-05-14,2020,May,Thursday,14,135,7,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OPUS,,MT,18,MUL,4000.0,STOLEN,1790,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1805,24193,GO-20179010818,THEFT UNDER - BICYCLE,2017-07-22,2017,July,Saturday,22,203,15,2017-07-22,2017,July,Saturday,22,203,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,UK,TARMAC SL3 EXPE,RC,12,BLK,4300.0,STOLEN,1791,"{'type': 'Point', 'coordinates': (-79.48480515, 43.62040835)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1806,24196,GO-20179011292,THEFT UNDER,2017-07-27,2017,July,Thursday,27,208,22,2017-07-29,2017,July,Saturday,29,210,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,CA,CAAD8,RC,22,BLK,1275.0,STOLEN,1792,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1807,24197,GO-20179011292,THEFT UNDER,2017-07-27,2017,July,Thursday,27,208,22,2017-07-29,2017,July,Saturday,29,210,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OT,765,RC,22,BLK,3400.0,STOLEN,1793,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1808,24208,GO-20179012252,THEFT FROM MOTOR VEHICLE UNDER,2017-08-09,2017,August,Wednesday,9,221,18,2017-08-12,2017,August,Saturday,12,224,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,FUEL EX 8 29,MT,10,BLK,3000.0,STOLEN,1794,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1809,24219,GO-20171559092,THEFT UNDER - BICYCLE,2017-07-26,2017,July,Wednesday,26,207,0,2017-08-30,2017,August,Wednesday,30,242,10,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,CANADIAN TIRE,,MT,3,RED,500.0,STOLEN,1795,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1810,24247,GO-20179017593,THEFT UNDER - BICYCLE,2017-10-19,2017,October,Thursday,19,292,6,2017-10-19,2017,October,Thursday,19,292,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,TR,FX 7.2,RG,18,BLK,599.0,STOLEN,1796,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1811,24281,GO-20189007097,THEFT UNDER,2018-02-23,2018,February,Friday,23,54,0,2018-03-07,2018,March,Wednesday,7,66,9,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,NO,CHARGER,MT,12,GRN,1099.0,STOLEN,1797,"{'type': 'Point', 'coordinates': (-79.48862673, 43.61495018)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1812,24282,GO-20189007097,THEFT UNDER,2018-02-23,2018,February,Friday,23,54,0,2018-03-07,2018,March,Wednesday,7,66,9,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,CA,QUICK DISC 3 SO,RG,9,GRY,1000.0,STOLEN,1798,"{'type': 'Point', 'coordinates': (-79.48862673, 43.61495018)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1813,24367,GO-20189026941,THEFT UNDER,2018-08-18,2018,August,Saturday,18,230,19,2018-08-18,2018,August,Saturday,18,230,20,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GI,ESCAPE 2 CITY S,TO,12,GRY,600.0,STOLEN,1806,"{'type': 'Point', 'coordinates': (-79.48731142, 43.61728142)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1814,24294,GO-20189012989,THEFT UNDER - BICYCLE,2018-01-21,2018,January,Sunday,21,21,0,2018-04-26,2018,April,Thursday,26,116,22,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,8.3 DS,RG,8,BLK,800.0,STOLEN,1799,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1815,24303,GO-2018825005,THEFT UNDER - BICYCLE,2018-05-05,2018,May,Saturday,5,125,16,2018-05-08,2018,May,Tuesday,8,128,11,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,OTHER,,EL,1,BLK,,RECOVERED,1800,"{'type': 'Point', 'coordinates': (-79.50007787, 43.61724892)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1816,24317,GO-20181089054,THEFT UNDER - BICYCLE,2018-06-15,2018,June,Friday,15,166,5,2018-06-21,2018,June,Thursday,21,172,19,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,WOMEN'S,MT,21,YEL,350.0,STOLEN,1801,"{'type': 'Point', 'coordinates': (-79.48819449, 43.61573777)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1817,24319,GO-20189020033,THEFT UNDER - BICYCLE,2018-06-23,2018,June,Saturday,23,174,21,2018-06-24,2018,June,Sunday,24,175,13,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,GI,TALON 3 (2017),MT,8,BLK,700.0,STOLEN,1802,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1818,24329,GO-20189021149,THEFT UNDER - BICYCLE,2018-06-30,2018,June,Saturday,30,181,15,2018-07-04,2018,July,Wednesday,4,185,16,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Apartment (Rooming House, Condo)",Apartment,SP,,MT,40,BLK,1600.0,STOLEN,1803,"{'type': 'Point', 'coordinates': (-79.48323001, 43.62051242)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1819,24331,GO-20189021452,THEFT UNDER - BICYCLE,2018-07-04,2018,July,Wednesday,4,185,15,2018-07-06,2018,July,Friday,6,187,14,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,CORSO,MT,21,GRN,450.0,STOLEN,1804,"{'type': 'Point', 'coordinates': (-79.48480515, 43.62040835)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1820,24342,GO-20181306300,THEFT UNDER - BICYCLE,2018-07-15,2018,July,Sunday,15,196,15,2018-07-17,2018,July,Tuesday,17,198,21,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CCM,MOUNTAIN,MT,1,REDGRY,250.0,STOLEN,1805,"{'type': 'Point', 'coordinates': (-79.50455447, 43.61542649)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1821,24454,GO-2015909049,THEFT UNDER,2015-05-30,2015,May,Saturday,30,150,16,2015-05-31,2015,May,Sunday,31,151,9,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,ZYMOTIC,MT,24,WHI,4000.0,STOLEN,1807,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1822,24455,GO-2015909049,THEFT UNDER,2015-05-30,2015,May,Saturday,30,150,16,2015-05-31,2015,May,Sunday,31,151,9,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CANNONDALE,QUICK 4,MT,24,BLK,780.0,STOLEN,1808,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1823,24475,GO-20151354249,B&E,2015-08-02,2015,August,Sunday,2,214,10,2015-08-08,2015,August,Saturday,8,220,10,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,JAMIS,,MT,21,,300.0,STOLEN,1809,"{'type': 'Point', 'coordinates': (-79.49119535, 43.61905507)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1824,219,GO-20179004665,THEFT UNDER - BICYCLE,2017-04-13,2017,April,Thursday,13,103,14,2017-04-13,2017,April,Thursday,13,103,18,D31,Toronto,24,Black Creek (24),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,HYBRID HPA PRO,EL,9,BLK,3389.0,STOLEN,1810,"{'type': 'Point', 'coordinates': (-79.52764450000001, 43.76514827)}",Black Creek,24,NIA,21737,22057,-0.015,7671,7324,6282,3.46,7910,4040,735,2720,245,85,85,0.010745891276864728
-1825,24528,GO-20169007486,THEFT UNDER - BICYCLE,2016-06-17,2016,June,Friday,17,169,16,2016-07-20,2016,July,Wednesday,20,202,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,,MT,20,WHI,3500.0,STOLEN,1811,"{'type': 'Point', 'coordinates': (-79.48117359000001, 43.62296949)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1826,24533,GO-20161322319,THEFT UNDER - BICYCLE,2016-07-27,2016,July,Wednesday,27,209,17,2016-07-27,2016,July,Wednesday,27,209,22,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,TRANCE,MT,10,BLK,2350.0,STOLEN,1812,"{'type': 'Point', 'coordinates': (-79.48678673000002, 43.62635932)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1827,24557,GO-20169014141,THEFT UNDER,2016-11-28,2016,November,Monday,28,333,0,2016-12-02,2016,December,Friday,2,337,15,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,DB,STUMPJUMPER,MT,21,WHI,2500.0,STOLEN,1813,"{'type': 'Point', 'coordinates': (-79.47777112, 43.62703728)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1828,24572,GO-20179006821,THEFT UNDER - BICYCLE,2017-05-19,2017,May,Friday,19,139,12,2017-05-23,2017,May,Tuesday,23,143,12,D22,Toronto,17,Mimico (includes Humber Bay Shores) (17),"Single Home, House (Attach Garage, Cottage, Mobile)",House,,7005 S,MT,21,RED,150.0,STOLEN,1815,"{'type': 'Point', 'coordinates': (-79.49330736, 43.61684986)}",Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603
-1829,410,GO-2017870598,THEFT UNDER - BICYCLE,2017-05-17,2017,May,Wednesday,17,137,14,2017-05-17,2017,May,Wednesday,17,137,16,D22,Toronto,18,New Toronto (18),"Single Home, House (Attach Garage, Cottage, Mobile)",House,BLACK DIAMOND,,MT,18,BLUBLK,50.0,STOLEN,1816,"{'type': 'Point', 'coordinates': (-79.51030869, 43.59833709)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1830,1489,GO-20179015478,THEFT UNDER - BICYCLE,2017-09-21,2017,September,Thursday,21,264,9,2017-09-22,2017,September,Friday,22,265,15,D22,Toronto,18,New Toronto (18),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KH,SIXFIFTY 500,MT,9,ONG,799.0,STOLEN,1817,"{'type': 'Point', 'coordinates': (-79.51800914, 43.59794793)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1831,1741,GO-20179018191,THEFT UNDER - BICYCLE,2017-10-12,2017,October,Thursday,12,285,17,2017-10-25,2017,October,Wednesday,25,298,17,D22,Toronto,18,New Toronto (18),Schools During Supervised Activity,Educational,UK,,RC,1,BLK,350.0,STOLEN,1818,"{'type': 'Point', 'coordinates': (-79.51904513, 43.60044151)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1832,1926,GO-20173130767,THEFT UNDER - BICYCLE,2017-12-03,2017,December,Sunday,3,337,18,2017-12-04,2017,December,Monday,4,338,17,D22,Toronto,18,New Toronto (18),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DIAMONDBACK,,MT,21,BLU,800.0,STOLEN,1819,"{'type': 'Point', 'coordinates': (-79.50744533, 43.60300448)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1833,2137,GO-2018617883,FTC WITH CONDITIONS,2018-04-06,2018,April,Friday,6,96,21,2018-04-06,2018,April,Friday,6,96,21,D22,Toronto,18,New Toronto (18),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,MT,21,SIL,100.0,RECOVERED,1820,"{'type': 'Point', 'coordinates': (-79.50627079, 43.60326759)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1834,2411,GO-20189016493,THEFT UNDER - BICYCLE,2018-05-27,2018,May,Sunday,27,147,19,2018-05-28,2018,May,Monday,28,148,11,D22,Toronto,18,New Toronto (18),"Group Homes (Non-Profit, Halfway House, Social Agency)",Other,OT,,FO,1,RED,0.0,STOLEN,1821,"{'type': 'Point', 'coordinates': (-79.51030869, 43.59833709)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1835,2463,GO-20189017424,THEFT UNDER - BICYCLE,2018-06-04,2018,June,Monday,4,155,17,2018-06-04,2018,June,Monday,4,155,23,D22,Toronto,18,New Toronto (18),Schools During Supervised Activity,Educational,UK,,RG,8,SIL,150.0,STOLEN,1822,"{'type': 'Point', 'coordinates': (-79.52122445, 43.59996107)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1836,2572,GO-20189018753,THEFT UNDER,2018-06-11,2018,June,Monday,11,162,7,2018-06-14,2018,June,Thursday,14,165,20,D22,Toronto,18,New Toronto (18),Schools During Un-Supervised Activity,Educational,KO,ONE 120 DELUXE,MT,27,WHI,1699.0,STOLEN,1824,"{'type': 'Point', 'coordinates': (-79.51630482, 43.59432847)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1837,2618,GO-20189019327,THEFT UNDER - BICYCLE,2018-06-18,2018,June,Monday,18,169,3,2018-06-19,2018,June,Tuesday,19,170,13,D22,Toronto,18,New Toronto (18),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CC,DS-600 DUAL SUS,MT,21,SIL,599.0,STOLEN,1825,"{'type': 'Point', 'coordinates': (-79.50201691, 43.59892185)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1838,2706,GO-20181154765,THEFT UNDER - BICYCLE,2018-06-12,2018,June,Tuesday,12,163,9,2018-06-25,2018,June,Monday,25,176,12,D22,Toronto,18,New Toronto (18),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,MT,12,,125.0,STOLEN,1826,"{'type': 'Point', 'coordinates': (-79.50627079, 43.60326759)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1839,2716,GO-20189020693,THEFT UNDER,2018-06-27,2018,June,Wednesday,27,178,23,2018-06-29,2018,June,Friday,29,180,10,D22,Toronto,18,New Toronto (18),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ATLAS,MT,20,BLK,3500.0,STOLEN,1827,"{'type': 'Point', 'coordinates': (-79.50223433, 43.599441)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1840,2805,GO-20181239279,THEFT UNDER - BICYCLE,2018-06-22,2018,June,Friday,22,173,12,2018-07-07,2018,July,Saturday,7,188,22,D22,Toronto,18,New Toronto (18),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NORCO,KATMANDU,MT,0,GRY,600.0,STOLEN,1828,"{'type': 'Point', 'coordinates': (-79.50758108000001, 43.6002216)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1841,2807,GO-20189021965,THEFT UNDER,2018-07-10,2018,July,Tuesday,10,191,14,2018-07-10,2018,July,Tuesday,10,191,21,D22,Toronto,18,New Toronto (18),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,NO,VFR 4 STEP-THRU,RG,21,LGR,600.0,STOLEN,1829,"{'type': 'Point', 'coordinates': (-79.51630482, 43.59432847)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1842,2811,GO-20181268844,THEFT UNDER - BICYCLE,2018-07-12,2018,July,Thursday,12,193,9,2018-07-12,2018,July,Thursday,12,193,9,D22,Toronto,18,New Toronto (18),"Apartment (Rooming House, Condo)",Apartment,CCM,,TO,1,,,STOLEN,1830,"{'type': 'Point', 'coordinates': (-79.50976127, 43.60172119)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1843,2812,GO-20181268844,THEFT UNDER - BICYCLE,2018-07-12,2018,July,Thursday,12,193,9,2018-07-12,2018,July,Thursday,12,193,9,D22,Toronto,18,New Toronto (18),"Apartment (Rooming House, Condo)",Apartment,OTHER,COMPASS,TO,10,BLK,595.0,STOLEN,1831,"{'type': 'Point', 'coordinates': (-79.50976127, 43.60172119)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1844,2941,GO-20189023746,THEFT UNDER - BICYCLE,2018-07-18,2018,July,Wednesday,18,199,15,2018-07-24,2018,July,Tuesday,24,205,15,D22,Toronto,18,New Toronto (18),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,MANTRA,RG,7,BLK,700.0,STOLEN,1834,"{'type': 'Point', 'coordinates': (-79.50543108, 43.59817425)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1845,3048,GO-20181412569,THEFT UNDER - BICYCLE,2018-07-08,2018,July,Sunday,8,189,8,2018-08-02,2018,August,Thursday,2,214,6,D22,Toronto,18,New Toronto (18),"Apartment (Rooming House, Condo)",Apartment,TREK,,MT,18,GRYYEL,600.0,STOLEN,1835,"{'type': 'Point', 'coordinates': (-79.50976127, 43.60172119)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1846,3071,GO-20189025079,THEFT UNDER - BICYCLE,2018-08-04,2018,August,Saturday,4,216,8,2018-08-04,2018,August,Saturday,4,216,10,D22,Toronto,18,New Toronto (18),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CC,TRAIL HEAD,MT,21,ONG,1000.0,STOLEN,1836,"{'type': 'Point', 'coordinates': (-79.50410543, 43.60100716)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1847,3072,GO-20189025079,THEFT UNDER - BICYCLE,2018-08-04,2018,August,Saturday,4,216,8,2018-08-04,2018,August,Saturday,4,216,10,D22,Toronto,18,New Toronto (18),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TR,7.3,TO,24,BLK,1000.0,STOLEN,1837,"{'type': 'Point', 'coordinates': (-79.50410543, 43.60100716)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1848,3775,GO-20189035931,THEFT UNDER - BICYCLE,2018-10-26,2018,October,Friday,26,299,22,2018-10-28,2018,October,Sunday,28,301,17,D22,Toronto,18,New Toronto (18),"Apartment (Rooming House, Condo)",Apartment,TR,3700,MT,18,GRY,460.0,STOLEN,1838,"{'type': 'Point', 'coordinates': (-79.50674719, 43.59545505)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1849,4113,GO-20199009785,THEFT UNDER - BICYCLE,2019-03-26,2019,March,Tuesday,26,85,20,2019-03-26,2019,March,Tuesday,26,85,23,D22,Toronto,18,New Toronto (18),"Open Areas (Lakes, Parks, Rivers)",Outside,OT,WOOKY XP,MT,20,BLK,1000.0,STOLEN,1839,"{'type': 'Point', 'coordinates': (-79.50794492, 43.60112996)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1850,4431,GO-20191044540,THEFT UNDER - BICYCLE,2019-06-06,2019,June,Thursday,6,157,17,2019-06-06,2019,June,Thursday,6,157,20,D22,Toronto,18,New Toronto (18),"Apartment (Rooming House, Condo)",Apartment,GARY FISHER,HYBRID,RG,21,,100.0,STOLEN,1840,"{'type': 'Point', 'coordinates': (-79.50639441, 43.60049471000001)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1851,4874,GO-20191371109,THEFT OF EBIKE UNDER $5000,2019-07-21,2019,July,Sunday,21,202,2,2019-07-21,2019,July,Sunday,21,202,18,D22,Toronto,18,New Toronto (18),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,AZ SOURCES,,EL,0,GRY,4100.0,STOLEN,1841,"{'type': 'Point', 'coordinates': (-79.50639441, 43.60049471000001)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1852,5215,GO-20199028530,THEFT UNDER,2019-09-02,2019,September,Monday,2,245,14,2019-09-02,2019,September,Monday,2,245,19,D22,Toronto,18,New Toronto (18),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,OT,22,BLK,65.0,STOLEN,1842,"{'type': 'Point', 'coordinates': (-79.51691167, 43.59819831000001)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1853,5347,GO-20199030253,THEFT UNDER,2019-09-13,2019,September,Friday,13,256,9,2019-09-17,2019,September,Tuesday,17,260,0,D22,Toronto,18,New Toronto (18),Ttc Street Car,Transit,SU,,MT,6,,130.0,STOLEN,1843,"{'type': 'Point', 'coordinates': (-79.50627079, 43.60326759)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1854,6053,GO-2020706496,THEFT UNDER - BICYCLE,2020-04-12,2020,April,Sunday,12,103,2,2020-04-12,2020,April,Sunday,12,103,9,D22,Toronto,18,New Toronto (18),"Apartment (Rooming House, Condo)",Apartment,HYPER,,MT,21,GRYBLU,500.0,STOLEN,1844,"{'type': 'Point', 'coordinates': (-79.50967309, 43.59979141)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1855,6162,GO-2020877376,THEFT UNDER - BICYCLE,2020-05-06,2020,May,Wednesday,6,127,17,2020-05-11,2020,May,Monday,11,132,13,D22,Toronto,18,New Toronto (18),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,LOUIS GARNEAU,URBANA 5W,MT,21,SILBLK,600.0,STOLEN,1845,"{'type': 'Point', 'coordinates': (-79.52619608, 43.60067251)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1856,6208,GO-20209013463,FTC PROBATION ORDER,2020-05-19,2020,May,Tuesday,19,140,5,2020-05-19,2020,May,Tuesday,19,140,20,D22,Toronto,18,New Toronto (18),"Apartment (Rooming House, Condo)",Apartment,OT,HYPER BEAR MOUN,MT,30,BLK,300.0,STOLEN,1846,"{'type': 'Point', 'coordinates': (-79.52619608, 43.60067251)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1857,6226,GO-20209013463,FTC PROBATION ORDER,2020-05-19,2020,May,Tuesday,19,140,5,2020-05-19,2020,May,Tuesday,19,140,20,D22,Toronto,18,New Toronto (18),"Apartment (Rooming House, Condo)",Apartment,OT,BEAR MOUNTAIN,MT,30,BLK,300.0,STOLEN,1847,"{'type': 'Point', 'coordinates': (-79.52619608, 43.60067251)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1858,6402,GO-20209015481,THEFT UNDER,2020-06-10,2020,June,Wednesday,10,162,21,2020-06-16,2020,June,Tuesday,16,168,15,D22,Toronto,18,New Toronto (18),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,,OT,15,WHI,700.0,STOLEN,1848,"{'type': 'Point', 'coordinates': (-79.50523674, 43.60076237)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1859,6723,GO-20209018435,THEFT UNDER,2020-07-22,2020,July,Wednesday,22,204,14,2020-07-24,2020,July,Friday,24,206,14,D22,Toronto,18,New Toronto (18),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,KO,SUTRA LTD,TO,11,DBL,3164.0,STOLEN,1849,"{'type': 'Point', 'coordinates': (-79.52415576, 43.6011476)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1860,6807,GO-20201390910,THEFT UNDER - BICYCLE,2020-07-25,2020,July,Saturday,25,207,19,2020-07-30,2020,July,Thursday,30,212,14,D22,Toronto,18,New Toronto (18),"Single Home, House (Attach Garage, Cottage, Mobile)",House,ZZZ,,OT,0,,350.0,STOLEN,1850,"{'type': 'Point', 'coordinates': (-79.5055577, 43.59540238)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1861,7098,GO-20209021557,THEFT UNDER,2020-08-27,2020,August,Thursday,27,240,15,2020-08-27,2020,August,Thursday,27,240,16,D22,Toronto,18,New Toronto (18),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KO,,MT,24,GRY,800.0,STOLEN,1851,"{'type': 'Point', 'coordinates': (-79.50426636, 43.59842917)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1862,7483,GO-20201948587,THEFT OF EBIKE UNDER $5000,2020-10-09,2020,October,Friday,9,283,17,2020-10-10,2020,October,Saturday,10,284,11,D22,Toronto,18,New Toronto (18),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GIANT,E+4,EL,1,BLKBLU,3200.0,STOLEN,1852,"{'type': 'Point', 'coordinates': (-79.50758108000001, 43.6002216)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1863,7605,GO-20209029022,THEFT UNDER,2020-11-07,2020,November,Saturday,7,312,11,2020-11-08,2020,November,Sunday,8,313,17,D22,Toronto,18,New Toronto (18),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,CONQUER 2,MT,24,BLK,687.0,STOLEN,1853,"{'type': 'Point', 'coordinates': (-79.52415576, 43.6011476)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1864,7975,GO-20142164309,THEFT UNDER,2014-05-27,2014,May,Tuesday,27,147,15,2014-05-27,2014,May,Tuesday,27,147,16,D22,Toronto,18,New Toronto (18),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,DEKA,BM,1,TRQ,,STOLEN,1854,"{'type': 'Point', 'coordinates': (-79.51904513, 43.60044151)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1865,8834,GO-20149006656,THEFT UNDER,2014-09-07,2014,September,Sunday,7,250,19,2014-09-07,2014,September,Sunday,7,250,21,D22,Toronto,18,New Toronto (18),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RM,WHISTLER30,MT,27,BLK,938.0,STOLEN,1855,"{'type': 'Point', 'coordinates': (-79.52245531, 43.59695537)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1866,9005,GO-20143024783,INCIDENT,2014-09-30,2014,September,Tuesday,30,273,20,2014-09-30,2014,September,Tuesday,30,273,20,D22,Toronto,18,New Toronto (18),Unknown,Other,CANNONDALE,SYNAPSE,RC,21,WHI,2200.0,UNKNOWN,1856,"{'type': 'Point', 'coordinates': (-79.50639441, 43.60049471000001)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1867,9006,GO-20143024783,INCIDENT,2014-09-30,2014,September,Tuesday,30,273,20,2014-09-30,2014,September,Tuesday,30,273,20,D22,Toronto,18,New Toronto (18),Unknown,Other,SCHWINN,SUSPEND,MT,21,BLU,300.0,UNKNOWN,1857,"{'type': 'Point', 'coordinates': (-79.50639441, 43.60049471000001)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1868,10283,GO-20151430479,THEFT UNDER,2015-08-20,2015,August,Thursday,20,232,0,2015-08-20,2015,August,Thursday,20,232,0,D22,Toronto,18,New Toronto (18),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,96 VOLTS,EL,50,BLURED,4000.0,STOLEN,1859,"{'type': 'Point', 'coordinates': (-79.50072601, 43.60175975000001)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1869,10412,GO-20151558327,THEFT UNDER,2015-09-08,2015,September,Tuesday,8,251,23,2015-09-09,2015,September,Wednesday,9,252,16,D22,Toronto,18,New Toronto (18),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,KNIGHT RIDER,EL,0,WHI,1825.0,STOLEN,1860,"{'type': 'Point', 'coordinates': (-79.50627079, 43.60326759)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1870,10849,GO-20159010681,THEFT UNDER,2015-09-24,2015,September,Thursday,24,267,16,2015-09-25,2015,September,Friday,25,268,17,D22,Toronto,18,New Toronto (18),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,FIXIE GEAR BMX,RG,1,GRY,250.0,STOLEN,1861,"{'type': 'Point', 'coordinates': (-79.51798505, 43.60068281)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1871,12495,GO-20161410872,THEFT UNDER - BICYCLE,2016-08-09,2016,August,Tuesday,9,222,23,2016-08-10,2016,August,Wednesday,10,223,17,D22,Toronto,18,New Toronto (18),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MA,,RG,7,GRY,1000.0,STOLEN,1862,"{'type': 'Point', 'coordinates': (-79.50523674, 43.60076237)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1872,12527,GO-20161750651,THEFT UNDER - BICYCLE,2016-09-30,2016,September,Friday,30,274,20,2016-10-02,2016,October,Sunday,2,276,10,D22,Toronto,18,New Toronto (18),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUPERCYCLE,SUPERCYCLE,MT,15,REDSIL,100.0,STOLEN,1863,"{'type': 'Point', 'coordinates': (-79.51606452, 43.60112037)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1873,12677,GO-20161902850,THEFT UNDER - BICYCLE,2016-10-26,2016,October,Wednesday,26,300,0,2016-10-26,2016,October,Wednesday,26,300,9,D22,Toronto,18,New Toronto (18),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,SEDONA,OT,24,GRY,400.0,STOLEN,1864,"{'type': 'Point', 'coordinates': (-79.50523674, 43.60076237)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1874,12840,GO-20162139474,B&E,2016-12-02,2016,December,Friday,2,337,8,2016-12-02,2016,December,Friday,2,337,15,D22,Toronto,18,New Toronto (18),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,UNKNOWN,MT,21,BLK,600.0,STOLEN,1865,"{'type': 'Point', 'coordinates': (-79.50002964, 43.60300946)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1875,14461,GO-20189032273,THEFT UNDER - BICYCLE,2018-09-27,2018,September,Thursday,27,270,9,2018-09-28,2018,September,Friday,28,271,20,D22,Toronto,18,New Toronto (18),Schools During Supervised Activity,Educational,OT,AVANT 2017,RC,40,,750.0,STOLEN,1866,"{'type': 'Point', 'coordinates': (-79.52020263, 43.59744383000001)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1876,14700,GO-20179013265,THEFT UNDER - BICYCLE,2017-08-14,2017,August,Monday,14,226,22,2017-08-22,2017,August,Tuesday,22,234,17,D22,Toronto,18,New Toronto (18),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,DB,RESPONSE,MT,21,GRN,0.0,STOLEN,1868,"{'type': 'Point', 'coordinates': (-79.52280387, 43.59782434)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1877,14717,GO-20179015025,THEFT UNDER - BICYCLE,2017-09-16,2017,September,Saturday,16,259,12,2017-09-17,2017,September,Sunday,17,260,18,D22,Toronto,18,New Toronto (18),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,LONDON MD,TO,10,OTH,700.0,STOLEN,1869,"{'type': 'Point', 'coordinates': (-79.50523674, 43.60076237)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1878,14788,GO-2018945105,THEFT UNDER - BICYCLE,2018-05-25,2018,May,Friday,25,145,21,2018-05-25,2018,May,Friday,25,145,21,D22,Toronto,18,New Toronto (18),Bar / Restaurant,Commercial,FELT,,MT,10,ONG,600.0,STOLEN,1870,"{'type': 'Point', 'coordinates': (-79.49846253, 43.60226263)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1879,14806,GO-20189019759,THEFT UNDER - BICYCLE,2018-06-21,2018,June,Thursday,21,172,11,2018-06-22,2018,June,Friday,22,173,9,D22,Toronto,18,New Toronto (18),"Single Home, House (Attach Garage, Cottage, Mobile)",House,FJ,,MT,24,BLK,700.0,STOLEN,1871,"{'type': 'Point', 'coordinates': (-79.50111278, 43.59970039)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1880,14807,GO-20189019759,THEFT UNDER - BICYCLE,2018-06-21,2018,June,Thursday,21,172,11,2018-06-22,2018,June,Friday,22,173,9,D22,Toronto,18,New Toronto (18),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NO,,MT,12,BLU,400.0,STOLEN,1872,"{'type': 'Point', 'coordinates': (-79.50111278, 43.59970039)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1881,14981,GO-20159008941,THEFT UNDER,2015-10-22,2015,October,Thursday,22,295,19,2015-10-24,2015,October,Saturday,24,297,14,D22,Toronto,18,New Toronto (18),Convenience Stores,Commercial,OT,DUBLIN MD,MT,27,BLK,880.0,STOLEN,1873,"{'type': 'Point', 'coordinates': (-79.51182359, 43.59932497)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1882,15018,GO-20161410872,THEFT UNDER - BICYCLE,2016-08-09,2016,August,Tuesday,9,222,23,2016-08-10,2016,August,Wednesday,10,223,17,D22,Toronto,18,New Toronto (18),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,MARIN OR MARINO,NONE,UN,8,GRY,1000.0,STOLEN,1874,"{'type': 'Point', 'coordinates': (-79.50523674, 43.60076237)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1883,17344,GO-20201170574,THEFT UNDER - BICYCLE,2020-06-24,2020,June,Wednesday,24,176,12,2020-06-25,2020,June,Thursday,25,177,16,D22,Toronto,18,New Toronto (18),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CCM,,MT,3,GRN,200.0,STOLEN,1875,"{'type': 'Point', 'coordinates': (-79.49997265, 43.59994362)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1884,17395,GO-20209024595,THEFT UNDER,2020-08-01,2020,August,Saturday,1,214,12,2020-09-26,2020,September,Saturday,26,270,12,D22,Toronto,18,New Toronto (18),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ROCKHOPPER,MT,18,BLK,1200.0,STOLEN,1876,"{'type': 'Point', 'coordinates': (-79.52415576, 43.6011476)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1885,17519,GO-20181900799,THEFT UNDER - BICYCLE,2018-10-14,2018,October,Sunday,14,287,17,2018-10-14,2018,October,Sunday,14,287,21,D22,Toronto,18,New Toronto (18),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,CRD,RC,10,REDWHI,1000.0,STOLEN,1877,"{'type': 'Point', 'coordinates': (-79.51130318, 43.59810432)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1886,17700,GO-2020499561,THEFT UNDER,2020-02-29,2020,February,Saturday,29,60,17,2020-03-09,2020,March,Monday,9,69,22,D22,Toronto,18,New Toronto (18),"Apartment (Rooming House, Condo)",Apartment,EMMO,KNIGHT,EL,1,BLUBLK,2800.0,STOLEN,1878,"{'type': 'Point', 'coordinates': (-79.50886163, 43.60153841)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1887,17729,GO-20179015025,THEFT UNDER - BICYCLE,2017-09-16,2017,September,Saturday,16,259,12,2017-09-17,2017,September,Sunday,17,260,18,D22,Toronto,18,New Toronto (18),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,LONDON MD,TO,10,OTH,700.0,STOLEN,1879,"{'type': 'Point', 'coordinates': (-79.50523674, 43.60076237)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1888,17765,GO-20172061139,THEFT UNDER - BICYCLE,2017-11-14,2017,November,Tuesday,14,318,10,2017-11-15,2017,November,Wednesday,15,319,8,D22,Toronto,18,New Toronto (18),Schools During Supervised Activity,Educational,CCM,SL2.0,MT,21,BLK,400.0,STOLEN,1880,"{'type': 'Point', 'coordinates': (-79.51904513, 43.60044151)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1889,17891,GO-20189028302,THEFT UNDER - BICYCLE,2018-08-17,2018,August,Friday,17,229,0,2018-08-28,2018,August,Tuesday,28,240,15,D22,Toronto,18,New Toronto (18),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,860 ATX,MT,12,YEL,250.0,STOLEN,1881,"{'type': 'Point', 'coordinates': (-79.50758108000001, 43.6002216)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1890,17907,GO-20189030861,THEFT UNDER - BICYCLE,2018-09-17,2018,September,Monday,17,260,17,2018-09-17,2018,September,Monday,17,260,19,D22,Toronto,18,New Toronto (18),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,,MT,24,WHI,0.0,STOLEN,1882,"{'type': 'Point', 'coordinates': (-79.50299237, 43.60125977)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1891,17970,GO-20159003761,THEFT UNDER,2015-06-19,2015,June,Friday,19,170,8,2015-06-19,2015,June,Friday,19,170,15,D22,Toronto,18,New Toronto (18),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CA,,TO,10,WHI,75.0,STOLEN,1883,"{'type': 'Point', 'coordinates': (-79.52020263, 43.59744383000001)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1892,17997,GO-20159007465,THEFT UNDER,2015-09-19,2015,September,Saturday,19,262,17,2015-09-20,2015,September,Sunday,20,263,17,D22,Toronto,18,New Toronto (18),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,INDIE,MT,24,BLK,600.0,STOLEN,1884,"{'type': 'Point', 'coordinates': (-79.50639441, 43.60049471000001)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1893,18032,GO-20161302447,THEFT FROM MOTOR VEHICLE OVER,2016-07-18,2016,July,Monday,18,200,7,2016-07-24,2016,July,Sunday,24,206,22,D22,Toronto,18,New Toronto (18),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SCOTT,ADDICT,RG,22,BLK,9500.0,STOLEN,1885,"{'type': 'Point', 'coordinates': (-79.50002964, 43.60300946)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1894,20836,GO-20209030386,THEFT UNDER,2020-11-08,2020,November,Sunday,8,313,0,2020-11-23,2020,November,Monday,23,328,18,D22,Toronto,18,New Toronto (18),"Apartment (Rooming House, Condo)",Apartment,GI,REVEL 29ER 1,MT,24,SIL,600.0,STOLEN,1886,"{'type': 'Point', 'coordinates': (-79.52415576, 43.6011476)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1895,20992,GO-20199013320,THEFT UNDER,2019-04-27,2019,April,Saturday,27,117,12,2019-04-28,2019,April,Sunday,28,118,9,D22,Toronto,18,New Toronto (18),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,TO,7,RED,300.0,STOLEN,1887,"{'type': 'Point', 'coordinates': (-79.50627079, 43.60326759)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1896,21111,GO-20209007355,THEFT UNDER,2020-02-27,2020,February,Thursday,27,58,5,2020-02-29,2020,February,Saturday,29,60,19,D22,Toronto,18,New Toronto (18),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,24,BLK,800.0,STOLEN,1888,"{'type': 'Point', 'coordinates': (-79.52415576, 43.6011476)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1897,21314,GO-20181273899,THEFT OF EBIKE UNDER $5000,2018-07-12,2018,July,Thursday,12,193,14,2018-07-12,2018,July,Thursday,12,193,23,D22,Toronto,18,New Toronto (18),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TEO,,EL,1,BLK,3000.0,STOLEN,1889,"{'type': 'Point', 'coordinates': (-79.51798505, 43.60068281)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1898,21317,GO-20189023096,THEFT UNDER,2018-07-16,2018,July,Monday,16,197,16,2018-07-19,2018,July,Thursday,19,200,17,D22,Toronto,18,New Toronto (18),"Apartment (Rooming House, Condo)",Apartment,GI,TALON 2,MT,21,BLK,899.0,STOLEN,1890,"{'type': 'Point', 'coordinates': (-79.52619608, 43.60067251)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1899,21318,GO-20189023096,THEFT UNDER,2018-07-16,2018,July,Monday,16,197,16,2018-07-19,2018,July,Thursday,19,200,17,D22,Toronto,18,New Toronto (18),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,21,,899.0,STOLEN,1891,"{'type': 'Point', 'coordinates': (-79.52619608, 43.60067251)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1900,21368,GO-20182062390,THEFT UNDER,2018-11-07,2018,November,Wednesday,7,311,12,2018-11-08,2018,November,Thursday,8,312,15,D22,Toronto,18,New Toronto (18),"Single Home, House (Attach Garage, Cottage, Mobile)",House,LINUS,,RG,18,,900.0,STOLEN,1892,"{'type': 'Point', 'coordinates': (-79.50515998, 43.6035065)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1901,21369,GO-20182062390,THEFT UNDER,2018-11-07,2018,November,Wednesday,7,311,12,2018-11-08,2018,November,Thursday,8,312,15,D22,Toronto,18,New Toronto (18),"Single Home, House (Attach Garage, Cottage, Mobile)",House,LINUS,,RG,18,,900.0,STOLEN,1893,"{'type': 'Point', 'coordinates': (-79.50515998, 43.6035065)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1902,21995,GO-20149000428,THEFT UNDER,2014-01-14,2014,January,Tuesday,14,14,8,2014-01-14,2014,January,Tuesday,14,14,17,D22,Toronto,18,New Toronto (18),Schools During Supervised Activity,Educational,OT,,RG,3,BLU,600.0,STOLEN,1894,"{'type': 'Point', 'coordinates': (-79.51630482, 43.59432847)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1903,22022,GO-20142487993,THEFT UNDER,2014-07-04,2014,July,Friday,4,185,12,2014-07-13,2014,July,Sunday,13,194,10,D22,Toronto,18,New Toronto (18),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GARY FISHER,,MT,18,RED,2500.0,STOLEN,1895,"{'type': 'Point', 'coordinates': (-79.50313679, 43.59867002)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1904,22031,GO-20149005654,THEFT UNDER,2014-08-05,2014,August,Tuesday,5,217,10,2014-08-05,2014,August,Tuesday,5,217,16,D22,Toronto,18,New Toronto (18),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GT,PALOMAR,MT,21,YEL,300.0,STOLEN,1896,"{'type': 'Point', 'coordinates': (-79.50758108000001, 43.6002216)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1905,22063,GO-20159003909,THEFT UNDER,2015-06-22,2015,June,Monday,22,173,20,2015-06-24,2015,June,Wednesday,24,175,20,D22,Toronto,18,New Toronto (18),"Group Homes (Non-Profit, Halfway House, Social Agency)",Other,SP,,RG,5,LBL,170.0,STOLEN,1897,"{'type': 'Point', 'coordinates': (-79.50794492, 43.60112996)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1906,22076,GO-20159005890,THEFT UNDER,2015-08-16,2015,August,Sunday,16,228,22,2015-08-17,2015,August,Monday,17,229,10,D22,Toronto,18,New Toronto (18),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NO,KIDS BIKE,MT,1,BLU,30.0,STOLEN,1898,"{'type': 'Point', 'coordinates': (-79.51390938, 43.59883491)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1907,22086,GO-20159007602,THEFT UNDER,2015-09-21,2015,September,Monday,21,264,15,2015-09-22,2015,September,Tuesday,22,265,22,D22,Toronto,18,New Toronto (18),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,CA,29R SL1,MT,27,BLK,2200.0,STOLEN,1899,"{'type': 'Point', 'coordinates': (-79.51800914, 43.59794793)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1908,22092,GO-20159008751,THEFT UNDER,2015-10-19,2015,October,Monday,19,292,12,2015-10-19,2015,October,Monday,19,292,17,D22,Toronto,18,New Toronto (18),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,MT,10,RED,500.0,STOLEN,1900,"{'type': 'Point', 'coordinates': (-79.51606452, 43.60112037)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1909,23993,GO-20181919096,THEFT UNDER - BICYCLE,2018-10-17,2018,October,Wednesday,17,290,1,2018-10-18,2018,October,Thursday,18,291,18,D22,Toronto,18,New Toronto (18),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,THRESHOLD,OT,18,BLK,1200.0,STOLEN,1901,"{'type': 'Point', 'coordinates': (-79.52415576, 43.6011476)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1910,24046,GO-20199017633,THEFT UNDER,2019-06-06,2019,June,Thursday,6,157,18,2019-06-06,2019,June,Thursday,6,157,23,D22,Toronto,18,New Toronto (18),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CC,NEVADA,MT,10,SIL,0.0,STOLEN,1902,"{'type': 'Point', 'coordinates': (-79.51072999, 43.60228874)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1911,24144,GO-202097970,THEFT UNDER,2020-01-15,2020,January,Wednesday,15,15,6,2020-01-15,2020,January,Wednesday,15,15,8,D22,Toronto,18,New Toronto (18),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,SC,1,RED,750.0,STOLEN,1903,"{'type': 'Point', 'coordinates': (-79.51182359, 43.59932497)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1912,24214,GO-20171475466,THEFT UNDER - BICYCLE,2017-08-15,2017,August,Tuesday,15,227,10,2017-08-15,2017,August,Tuesday,15,227,20,D22,Toronto,18,New Toronto (18),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GIANT,,MT,21,BLUSIL,,STOLEN,1904,"{'type': 'Point', 'coordinates': (-79.52274103, 43.60067466)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1913,24292,GO-20189011429,THEFT UNDER - BICYCLE,2018-04-11,2018,April,Wednesday,11,101,6,2018-04-12,2018,April,Thursday,12,102,18,D22,Toronto,18,New Toronto (18),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,21,GRN,300.0,STOLEN,1905,"{'type': 'Point', 'coordinates': (-79.5055577, 43.59540238)}",New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536
-1914,2479,GO-20189017585,THEFT UNDER - BICYCLE,2018-06-05,2018,June,Tuesday,5,156,19,2018-06-06,2018,June,Wednesday,6,157,14,D31,Toronto,24,Black Creek (24),"Apartment (Rooming House, Condo)",Apartment,UK,CARA -BLACK AND,EL,55,ONG,2000.0,STOLEN,1906,"{'type': 'Point', 'coordinates': (-79.50973955, 43.76046034)}",Black Creek,24,NIA,21737,22057,-0.015,7671,7324,6282,3.46,7910,4040,735,2720,245,85,85,0.010745891276864728
-1915,3032,GO-20189024621,THEFT UNDER - BICYCLE,2018-07-30,2018,July,Monday,30,211,21,2018-07-31,2018,July,Tuesday,31,212,9,D31,Toronto,24,Black Creek (24),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,,MT,3,RED,120.0,STOLEN,1907,"{'type': 'Point', 'coordinates': (-79.52249371, 43.76748998)}",Black Creek,24,NIA,21737,22057,-0.015,7671,7324,6282,3.46,7910,4040,735,2720,245,85,85,0.010745891276864728
-1916,3033,GO-20189024621,THEFT UNDER - BICYCLE,2018-07-30,2018,July,Monday,30,211,21,2018-07-31,2018,July,Tuesday,31,212,9,D31,Toronto,24,Black Creek (24),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,3,GRN,30.0,STOLEN,1908,"{'type': 'Point', 'coordinates': (-79.52249371, 43.76748998)}",Black Creek,24,NIA,21737,22057,-0.015,7671,7324,6282,3.46,7910,4040,735,2720,245,85,85,0.010745891276864728
-1917,3262,GO-20189027172,THEFT UNDER - BICYCLE,2018-08-11,2018,August,Saturday,11,223,6,2018-08-20,2018,August,Monday,20,232,17,D31,Toronto,24,Black Creek (24),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,SC,1,SIL,55.0,STOLEN,1909,"{'type': 'Point', 'coordinates': (-79.5187813, 43.76191810000001)}",Black Creek,24,NIA,21737,22057,-0.015,7671,7324,6282,3.46,7910,4040,735,2720,245,85,85,0.010745891276864728
-1918,3263,GO-20189027172,THEFT UNDER - BICYCLE,2018-08-11,2018,August,Saturday,11,223,6,2018-08-20,2018,August,Monday,20,232,17,D31,Toronto,24,Black Creek (24),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,OT,27,BLK,819.0,STOLEN,1910,"{'type': 'Point', 'coordinates': (-79.5187813, 43.76191810000001)}",Black Creek,24,NIA,21737,22057,-0.015,7671,7324,6282,3.46,7910,4040,735,2720,245,85,85,0.010745891276864728
-1919,3264,GO-20189027172,THEFT UNDER - BICYCLE,2018-08-11,2018,August,Saturday,11,223,6,2018-08-20,2018,August,Monday,20,232,17,D31,Toronto,24,Black Creek (24),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,,MT,21,RED,170.0,STOLEN,1911,"{'type': 'Point', 'coordinates': (-79.5187813, 43.76191810000001)}",Black Creek,24,NIA,21737,22057,-0.015,7671,7324,6282,3.46,7910,4040,735,2720,245,85,85,0.010745891276864728
-1920,3265,GO-20189027172,THEFT UNDER - BICYCLE,2018-08-11,2018,August,Saturday,11,223,6,2018-08-20,2018,August,Monday,20,232,17,D31,Toronto,24,Black Creek (24),"Single Home, House (Attach Garage, Cottage, Mobile)",House,HF,,BM,1,RED,60.0,STOLEN,1912,"{'type': 'Point', 'coordinates': (-79.5187813, 43.76191810000001)}",Black Creek,24,NIA,21737,22057,-0.015,7671,7324,6282,3.46,7910,4040,735,2720,245,85,85,0.010745891276864728
-1921,4321,GO-2019926582,THEFT UNDER - BICYCLE,2019-05-19,2019,May,Sunday,19,139,12,2019-05-22,2019,May,Wednesday,22,142,19,D31,Toronto,24,Black Creek (24),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CCM,,MT,15,BLU,145.0,STOLEN,1913,"{'type': 'Point', 'coordinates': (-79.51472666, 43.76721178)}",Black Creek,24,NIA,21737,22057,-0.015,7671,7324,6282,3.46,7910,4040,735,2720,245,85,85,0.010745891276864728
-1922,5254,GO-20199029014,THEFT UNDER,2019-09-02,2019,September,Monday,2,245,17,2019-09-06,2019,September,Friday,6,249,18,D31,Toronto,24,Black Creek (24),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,10,BLK,0.0,STOLEN,1914,"{'type': 'Point', 'coordinates': (-79.51872198, 43.76916389)}",Black Creek,24,NIA,21737,22057,-0.015,7671,7324,6282,3.46,7910,4040,735,2720,245,85,85,0.010745891276864728
-1923,5259,GO-20191715492,THEFT UNDER - BICYCLE,2019-09-07,2019,September,Saturday,7,250,15,2019-09-07,2019,September,Saturday,7,250,15,D31,Toronto,24,Black Creek (24),"Open Areas (Lakes, Parks, Rivers)",Outside,UNKNOWN MAKE,,MT,21,,,STOLEN,1915,"{'type': 'Point', 'coordinates': (-79.50973955, 43.76046034)}",Black Creek,24,NIA,21737,22057,-0.015,7671,7324,6282,3.46,7910,4040,735,2720,245,85,85,0.010745891276864728
-1924,5260,GO-20191715492,THEFT UNDER - BICYCLE,2019-09-07,2019,September,Saturday,7,250,15,2019-09-07,2019,September,Saturday,7,250,15,D31,Toronto,24,Black Creek (24),"Open Areas (Lakes, Parks, Rivers)",Outside,NEXT,LASER,MT,21,,,UNKNOWN,1916,"{'type': 'Point', 'coordinates': (-79.50973955, 43.76046034)}",Black Creek,24,NIA,21737,22057,-0.015,7671,7324,6282,3.46,7910,4040,735,2720,245,85,85,0.010745891276864728
-1925,6618,GO-20201305070,THEFT UNDER - BICYCLE,2020-06-27,2020,June,Saturday,27,179,13,2020-07-14,2020,July,Tuesday,14,196,12,D31,Toronto,24,Black Creek (24),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPECIALIZED,CIRUS,MT,27,GRY,1400.0,STOLEN,1917,"{'type': 'Point', 'coordinates': (-79.51872198, 43.76916389)}",Black Creek,24,NIA,21737,22057,-0.015,7671,7324,6282,3.46,7910,4040,735,2720,245,85,85,0.010745891276864728
-1926,8231,GO-20142373855,ROBBERY - MUGGING,2014-06-26,2014,June,Thursday,26,177,16,2014-06-26,2014,June,Thursday,26,177,17,D31,Toronto,24,Black Creek (24),"Open Areas (Lakes, Parks, Rivers)",Outside,SCHWINN,KICKER,MT,21,BLK,300.0,STOLEN,1918,"{'type': 'Point', 'coordinates': (-79.52687378000002, 43.76447177)}",Black Creek,24,NIA,21737,22057,-0.015,7671,7324,6282,3.46,7910,4040,735,2720,245,85,85,0.010745891276864728
-1927,8271,GO-20149004511,THEFT UNDER,2014-05-31,2014,May,Saturday,31,151,18,2014-06-27,2014,June,Friday,27,178,18,D31,Toronto,24,Black Creek (24),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,MT,8,PLE,0.0,STOLEN,1919,"{'type': 'Point', 'coordinates': (-79.51807494, 43.75897564)}",Black Creek,24,NIA,21737,22057,-0.015,7671,7324,6282,3.46,7910,4040,735,2720,245,85,85,0.010745891276864728
-1928,8813,GO-20142859021,DOMESTIC INCIDENT,2014-09-06,2014,September,Saturday,6,249,23,2014-09-06,2014,September,Saturday,6,249,23,D31,Toronto,24,Black Creek (24),"Apartment (Rooming House, Condo)",Apartment,SUPERCYCLE,18 SPEED,MT,18,RED,300.0,UNKNOWN,1920,"{'type': 'Point', 'coordinates': (-79.51614161, 43.75984076)}",Black Creek,24,NIA,21737,22057,-0.015,7671,7324,6282,3.46,7910,4040,735,2720,245,85,85,0.010745891276864728
-1929,9167,GO-20143275721,THEFT UNDER,2014-08-20,2014,August,Wednesday,20,232,19,2014-11-10,2014,November,Monday,10,314,14,D31,Toronto,24,Black Creek (24),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,MT,0,BLK,200.0,STOLEN,1921,"{'type': 'Point', 'coordinates': (-79.52125097, 43.7659571)}",Black Creek,24,NIA,21737,22057,-0.015,7671,7324,6282,3.46,7910,4040,735,2720,245,85,85,0.010745891276864728
-1930,9168,GO-20143275721,THEFT UNDER,2014-08-20,2014,August,Wednesday,20,232,19,2014-11-10,2014,November,Monday,10,314,14,D31,Toronto,24,Black Creek (24),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,MT,0,REDBLK,300.0,STOLEN,1922,"{'type': 'Point', 'coordinates': (-79.52125097, 43.7659571)}",Black Creek,24,NIA,21737,22057,-0.015,7671,7324,6282,3.46,7910,4040,735,2720,245,85,85,0.010745891276864728
-1931,9169,GO-20143275721,THEFT UNDER,2014-08-20,2014,August,Wednesday,20,232,19,2014-11-10,2014,November,Monday,10,314,14,D31,Toronto,24,Black Creek (24),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,MT,0,PNK,140.0,STOLEN,1923,"{'type': 'Point', 'coordinates': (-79.52125097, 43.7659571)}",Black Creek,24,NIA,21737,22057,-0.015,7671,7324,6282,3.46,7910,4040,735,2720,245,85,85,0.010745891276864728
-1932,9274,GO-2015139969,THEFT UNDER,2015-01-23,2015,January,Friday,23,23,20,2015-01-24,2015,January,Saturday,24,24,14,D31,Toronto,24,Black Creek (24),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,SC,1,BLU,1350.0,STOLEN,1924,"{'type': 'Point', 'coordinates': (-79.52036423, 43.76882728)}",Black Creek,24,NIA,21737,22057,-0.015,7671,7324,6282,3.46,7910,4040,735,2720,245,85,85,0.010745891276864728
-1933,10514,GO-20159007502,THEFT UNDER,2015-09-20,2015,September,Sunday,20,263,16,2015-09-21,2015,September,Monday,21,264,11,D31,Toronto,24,Black Creek (24),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SU,,RG,10,DBL,150.0,STOLEN,1925,"{'type': 'Point', 'coordinates': (-79.51472666, 43.76721178)}",Black Creek,24,NIA,21737,22057,-0.015,7671,7324,6282,3.46,7910,4040,735,2720,245,85,85,0.010745891276864728
-1934,11215,GO-20151948702,PROPERTY - FOUND,2015-10-30,2015,October,Friday,30,303,9,2015-10-30,2015,October,Friday,30,303,9,D31,Toronto,24,Black Creek (24),"Police / Courts (Parole Board, Probation Office)",Other,JAMIS,EXPLORER 3.0,MT,99,GLDWHI,,UNKNOWN,1926,"{'type': 'Point', 'coordinates': (-79.52424633, 43.75592926000001)}",Black Creek,24,NIA,21737,22057,-0.015,7671,7324,6282,3.46,7910,4040,735,2720,245,85,85,0.010745891276864728
-1935,11216,GO-20151948702,PROPERTY - FOUND,2015-10-30,2015,October,Friday,30,303,9,2015-10-30,2015,October,Friday,30,303,9,D31,Toronto,24,Black Creek (24),"Police / Courts (Parole Board, Probation Office)",Other,UK,,MT,99,PLE,,UNKNOWN,1927,"{'type': 'Point', 'coordinates': (-79.52424633, 43.75592926000001)}",Black Creek,24,NIA,21737,22057,-0.015,7671,7324,6282,3.46,7910,4040,735,2720,245,85,85,0.010745891276864728
-1936,11542,GO-2016816381,THEFT FROM MOTOR VEHICLE UNDER,2016-05-12,2016,May,Thursday,12,133,12,2016-05-12,2016,May,Thursday,12,133,13,D31,Toronto,24,Black Creek (24),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CA,RZ ONE,MT,21,SIL,2000.0,STOLEN,1928,"{'type': 'Point', 'coordinates': (-79.51872198, 43.76916389)}",Black Creek,24,NIA,21737,22057,-0.015,7671,7324,6282,3.46,7910,4040,735,2720,245,85,85,0.010745891276864728
-1937,12295,GO-20161597864,FRAUD OVER,2016-09-08,2016,September,Thursday,8,252,19,2016-09-08,2016,September,Thursday,8,252,19,D31,Toronto,24,Black Creek (24),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,TOTAL EV 500,OT,1,BLU,,STOLEN,1929,"{'type': 'Point', 'coordinates': (-79.52141586, 43.76261323)}",Black Creek,24,NIA,21737,22057,-0.015,7671,7324,6282,3.46,7910,4040,735,2720,245,85,85,0.010745891276864728
-1938,14531,GO-20191217189,ROBBERY - SWARMING,2019-06-30,2019,June,Sunday,30,181,17,2019-06-30,2019,June,Sunday,30,181,17,D31,Toronto,24,Black Creek (24),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,HONDA,CRF,OT,10,RED,2000.0,STOLEN,1930,"{'type': 'Point', 'coordinates': (-79.50973955, 43.76046034)}",Black Creek,24,NIA,21737,22057,-0.015,7671,7324,6282,3.46,7910,4040,735,2720,245,85,85,0.010745891276864728
-1939,14532,GO-20191217189,ROBBERY - SWARMING,2019-06-30,2019,June,Sunday,30,181,17,2019-06-30,2019,June,Sunday,30,181,17,D31,Toronto,24,Black Creek (24),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,HONDA,CRF,OT,10,RED,2000.0,STOLEN,1931,"{'type': 'Point', 'coordinates': (-79.50973955, 43.76046034)}",Black Creek,24,NIA,21737,22057,-0.015,7671,7324,6282,3.46,7910,4040,735,2720,245,85,85,0.010745891276864728
-1940,14556,GO-20191465550,THEFT UNDER - BICYCLE,2019-07-29,2019,July,Monday,29,210,16,2019-08-03,2019,August,Saturday,3,215,18,D31,Toronto,24,Black Creek (24),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,,MT,4,BLK,100.0,STOLEN,1932,"{'type': 'Point', 'coordinates': (-79.51872198, 43.76916389)}",Black Creek,24,NIA,21737,22057,-0.015,7671,7324,6282,3.46,7910,4040,735,2720,245,85,85,0.010745891276864728
-1941,14724,GO-20179015598,THEFT UNDER - BICYCLE,2017-09-23,2017,September,Saturday,23,266,18,2017-09-24,2017,September,Sunday,24,267,0,D31,Toronto,24,Black Creek (24),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,RG,1,YEL,180.0,STOLEN,1933,"{'type': 'Point', 'coordinates': (-79.52036423, 43.76882728)}",Black Creek,24,NIA,21737,22057,-0.015,7671,7324,6282,3.46,7910,4040,735,2720,245,85,85,0.010745891276864728
-1942,14943,GO-2015648147,THEFT UNDER,2015-04-18,2015,April,Saturday,18,108,21,2015-04-19,2015,April,Sunday,19,109,16,D31,Toronto,24,Black Creek (24),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,SC,1,BLK,400.0,STOLEN,1934,"{'type': 'Point', 'coordinates': (-79.50973955, 43.76046034)}",Black Creek,24,NIA,21737,22057,-0.015,7671,7324,6282,3.46,7910,4040,735,2720,245,85,85,0.010745891276864728
-1943,15034,GO-20161758382,THEFT UNDER - BICYCLE,2016-10-04,2016,October,Tuesday,4,278,20,2016-10-04,2016,October,Tuesday,4,278,20,D31,Toronto,24,Black Creek (24),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,EL,0,,700.0,STOLEN,1935,"{'type': 'Point', 'coordinates': (-79.51480908, 43.76028834)}",Black Creek,24,NIA,21737,22057,-0.015,7671,7324,6282,3.46,7910,4040,735,2720,245,85,85,0.010745891276864728
-1944,17330,GO-20201012840,ROBBERY - MUGGING,2020-06-02,2020,June,Tuesday,2,154,3,2020-06-02,2020,June,Tuesday,2,154,4,D31,Toronto,24,Black Creek (24),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,HYPER E-BIKE,EL,25,BLK,800.0,STOLEN,1936,"{'type': 'Point', 'coordinates': (-79.51340471, 43.75805965)}",Black Creek,24,NIA,21737,22057,-0.015,7671,7324,6282,3.46,7910,4040,735,2720,245,85,85,0.010745891276864728
-1945,17917,GO-20142089260,THEFT UNDER,2014-04-28,2014,April,Monday,28,118,8,2014-05-16,2014,May,Friday,16,136,8,D31,Toronto,24,Black Creek (24),Schools During Un-Supervised Activity,Educational,SUPERCYCLE,,MT,12,BLK,,STOLEN,1937,"{'type': 'Point', 'coordinates': (-79.51472666, 43.76721178)}",Black Creek,24,NIA,21737,22057,-0.015,7671,7324,6282,3.46,7910,4040,735,2720,245,85,85,0.010745891276864728
-1946,17932,GO-20142473402,POSSESSION PROPERTY OBC UNDER,2014-07-11,2014,July,Friday,11,192,2,2014-07-11,2014,July,Friday,11,192,22,D31,Toronto,24,Black Creek (24),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RALEIGH,BEAST,MT,21,BLURED,500.0,STOLEN,1938,"{'type': 'Point', 'coordinates': (-79.51872198, 43.76916389)}",Black Creek,24,NIA,21737,22057,-0.015,7671,7324,6282,3.46,7910,4040,735,2720,245,85,85,0.010745891276864728
-1947,17961,GO-20159002593,THEFT UNDER,2015-05-04,2015,May,Monday,4,124,10,2015-05-10,2015,May,Sunday,10,130,18,D31,Toronto,24,Black Creek (24),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CR,,MT,10,BLK,,STOLEN,1939,"{'type': 'Point', 'coordinates': (-79.52979844000001, 43.76682693)}",Black Creek,24,NIA,21737,22057,-0.015,7671,7324,6282,3.46,7910,4040,735,2720,245,85,85,0.010745891276864728
-1948,17998,GO-20159008401,THEFT UNDER,2015-10-09,2015,October,Friday,9,282,16,2015-10-09,2015,October,Friday,9,282,20,D31,Toronto,24,Black Creek (24),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,2012 JAMIS TRAI,MT,24,GRN,400.0,STOLEN,1940,"{'type': 'Point', 'coordinates': (-79.51807494, 43.75897564)}",Black Creek,24,NIA,21737,22057,-0.015,7671,7324,6282,3.46,7910,4040,735,2720,245,85,85,0.010745891276864728
-1949,21297,GO-20181136829,THEFT UNDER - BICYCLE,2018-06-22,2018,June,Friday,22,173,12,2018-06-22,2018,June,Friday,22,173,16,D31,Toronto,24,Black Creek (24),Schools During Supervised Activity,Educational,BMX,UNKNOWN,BM,1,BLKGRY,100.0,STOLEN,1941,"{'type': 'Point', 'coordinates': (-79.51472666, 43.76721178)}",Black Creek,24,NIA,21737,22057,-0.015,7671,7324,6282,3.46,7910,4040,735,2720,245,85,85,0.010745891276864728
-1950,21341,GO-20181608727,THEFT UNDER - BICYCLE,2018-08-29,2018,August,Wednesday,29,241,22,2018-08-30,2018,August,Thursday,30,242,22,D31,Toronto,24,Black Creek (24),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,,OT,0,RED,125.0,STOLEN,1942,"{'type': 'Point', 'coordinates': (-79.51769107, 43.75723544)}",Black Creek,24,NIA,21737,22057,-0.015,7671,7324,6282,3.46,7910,4040,735,2720,245,85,85,0.010745891276864728
-1951,22085,GO-20151632697,THEFT UNDER,2015-09-20,2015,September,Sunday,20,263,16,2015-09-21,2015,September,Monday,21,264,13,D31,Toronto,24,Black Creek (24),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,NITRO XT,RG,7,DBL,,STOLEN,1943,"{'type': 'Point', 'coordinates': (-79.51472666, 43.76721178)}",Black Creek,24,NIA,21737,22057,-0.015,7671,7324,6282,3.46,7910,4040,735,2720,245,85,85,0.010745891276864728
-1952,24161,GO-2020708269,THEFT OF EBIKE UNDER $5000,2020-04-11,2020,April,Saturday,11,102,13,2020-04-12,2020,April,Sunday,12,103,16,D31,Toronto,24,Black Creek (24),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,DAY,EL,1,BLK,1800.0,STOLEN,1944,"{'type': 'Point', 'coordinates': (-79.5088961, 43.76454293)}",Black Creek,24,NIA,21737,22057,-0.015,7671,7324,6282,3.46,7910,4040,735,2720,245,85,85,0.010745891276864728
-1953,24348,GO-20181405712,THEFT UNDER - BICYCLE,2018-08-01,2018,August,Wednesday,1,213,0,2018-08-01,2018,August,Wednesday,1,213,7,D31,Toronto,24,Black Creek (24),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,MT,0,GRN,,STOLEN,1945,"{'type': 'Point', 'coordinates': (-79.52742826, 43.76725345)}",Black Creek,24,NIA,21737,22057,-0.015,7671,7324,6282,3.46,7910,4040,735,2720,245,85,85,0.010745891276864728
-1954,24349,GO-20181405712,THEFT UNDER - BICYCLE,2018-08-01,2018,August,Wednesday,1,213,0,2018-08-01,2018,August,Wednesday,1,213,7,D31,Toronto,24,Black Creek (24),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,BMX,OT,0,GRN,,STOLEN,1946,"{'type': 'Point', 'coordinates': (-79.52742826, 43.76725345)}",Black Creek,24,NIA,21737,22057,-0.015,7671,7324,6282,3.46,7910,4040,735,2720,245,85,85,0.010745891276864728
-1955,24413,GO-20141904833,THEFT UNDER,2014-04-12,2014,April,Saturday,12,102,12,2014-04-16,2014,April,Wednesday,16,106,22,D31,Toronto,24,Black Creek (24),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN,TRIUMPH LASER,OT,3,,,STOLEN,1947,"{'type': 'Point', 'coordinates': (-79.50973955, 43.76046034)}",Black Creek,24,NIA,21737,22057,-0.015,7671,7324,6282,3.46,7910,4040,735,2720,245,85,85,0.010745891276864728
-1956,24457,GO-2015944193,THEFT UNDER,2015-06-04,2015,June,Thursday,4,155,19,2015-06-04,2015,June,Thursday,4,155,19,D31,Toronto,24,Black Creek (24),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,MOUNTAIN CLIMBE,MT,18,BLKRED,50.0,STOLEN,1948,"{'type': 'Point', 'coordinates': (-79.51807494, 43.75897564)}",Black Creek,24,NIA,21737,22057,-0.015,7671,7324,6282,3.46,7910,4040,735,2720,245,85,85,0.010745891276864728
-1957,24516,GO-2016816381,THEFT FROM MOTOR VEHICLE UNDER,2016-05-12,2016,May,Thursday,12,133,12,2016-05-12,2016,May,Thursday,12,133,13,D31,Toronto,24,Black Creek (24),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CANNONDALE,,MT,15,SIL,800.0,STOLEN,1949,"{'type': 'Point', 'coordinates': (-79.51872198, 43.76916389)}",Black Creek,24,NIA,21737,22057,-0.015,7671,7324,6282,3.46,7910,4040,735,2720,245,85,85,0.010745891276864728
-1958,65,GO-2017158513,B&E,2017-01-26,2017,January,Thursday,26,26,1,2017-01-26,2017,January,Thursday,26,26,2,D31,Toronto,25,Glenfield-Jane Heights (25),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN,EBIKES,EL,3,,,STOLEN,1950,"{'type': 'Point', 'coordinates': (-79.52595446, 43.74487932)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1959,591,GO-20179007928,THEFT UNDER,2017-06-11,2017,June,Sunday,11,162,20,2017-06-12,2017,June,Monday,12,163,20,D31,Toronto,25,Glenfield-Jane Heights (25),"Apartment (Rooming House, Condo)",Apartment,UK,GATTO,EL,35,BLU,1200.0,STOLEN,1951,"{'type': 'Point', 'coordinates': (-79.51508777, 43.74709495)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1960,661,GO-20171090381,THEFT OF EBIKE UNDER $5000,2017-06-18,2017,June,Sunday,18,169,2,2017-06-21,2017,June,Wednesday,21,172,7,D31,Toronto,25,Glenfield-Jane Heights (25),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,EL,10,,,STOLEN,1952,"{'type': 'Point', 'coordinates': (-79.50156567, 43.74283405)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1961,963,GO-20179010940,THEFT UNDER,2017-07-24,2017,July,Monday,24,205,17,2017-07-24,2017,July,Monday,24,205,20,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,1985,RC,8,LGR,400.0,STOLEN,1953,"{'type': 'Point', 'coordinates': (-79.50335565, 43.74582283)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1962,965,GO-20179010940,THEFT UNDER,2017-07-24,2017,July,Monday,24,205,17,2017-07-24,2017,July,Monday,24,205,20,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,LASER,RC,8,LGR,1500.0,STOLEN,1954,"{'type': 'Point', 'coordinates': (-79.50335565, 43.74582283)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1963,1672,GO-20171880981,THEFT UNDER - BICYCLE,2017-10-11,2017,October,Wednesday,11,284,15,2017-10-17,2017,October,Tuesday,17,290,18,D31,Toronto,25,Glenfield-Jane Heights (25),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,UNKNOWN,RG,1,BLUBLK,150.0,STOLEN,1955,"{'type': 'Point', 'coordinates': (-79.51040848, 43.74922746)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1964,2211,GO-20189013057,THEFT UNDER - BICYCLE,2018-04-26,2018,April,Thursday,26,116,16,2018-04-27,2018,April,Friday,27,117,14,D31,Toronto,25,Glenfield-Jane Heights (25),Universities / Colleges,Educational,OT,04N1414,RG,6,WHI,130.0,STOLEN,1956,"{'type': 'Point', 'coordinates': (-79.50788955, 43.7592841)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1965,3348,GO-20189028405,THEFT UNDER - BICYCLE,2018-08-15,2018,August,Wednesday,15,227,21,2018-08-29,2018,August,Wednesday,29,241,10,D31,Toronto,25,Glenfield-Jane Heights (25),"Apartment (Rooming House, Condo)",Apartment,UK,,OT,1,,300.0,STOLEN,1957,"{'type': 'Point', 'coordinates': (-79.50871654, 43.74712806)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1966,4420,GO-20199017666,THEFT UNDER,2019-06-06,2019,June,Thursday,6,157,10,2019-06-06,2019,June,Thursday,6,157,17,D31,Toronto,25,Glenfield-Jane Heights (25),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CC,,RG,50,BLK,200.0,STOLEN,1958,"{'type': 'Point', 'coordinates': (-79.51787392, 43.75036091)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1967,4577,GO-20191144915,THEFT UNDER,2019-06-20,2019,June,Thursday,20,171,12,2019-06-20,2019,June,Thursday,20,171,16,D31,Toronto,25,Glenfield-Jane Heights (25),"Gas Station (Self, Full, Attached Convenience)",Commercial,UK,1800,MT,10,RED,30.0,STOLEN,1959,"{'type': 'Point', 'coordinates': (-79.51769107, 43.75723544)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1968,4847,GO-20191385521,ROBBERY - SWARMING,2019-07-23,2019,July,Tuesday,23,204,17,2019-07-23,2019,July,Tuesday,23,204,17,D31,Toronto,25,Glenfield-Jane Heights (25),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN MAKE,,MT,5,GRNBLK,150.0,STOLEN,1960,"{'type': 'Point', 'coordinates': (-79.51919844, 43.7528724)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1969,5199,GO-20199028314,THEFT UNDER,2019-08-29,2019,August,Thursday,29,241,21,2019-08-30,2019,August,Friday,30,242,21,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,IN,CHAMONIX,MT,24,GRY,300.0,STOLEN,1961,"{'type': 'Point', 'coordinates': (-79.52346138, 43.74904436)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1970,5976,GO-20209009463,THEFT UNDER - BICYCLE,2020-03-20,2020,March,Friday,20,80,2,2020-03-20,2020,March,Friday,20,80,17,D31,Toronto,25,Glenfield-Jane Heights (25),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,MOVELO ALGONQUI,MT,18,BLK,111.0,STOLEN,1962,"{'type': 'Point', 'coordinates': (-79.51289814, 43.75224824)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1971,5977,GO-20209009463,THEFT UNDER - BICYCLE,2020-03-20,2020,March,Friday,20,80,2,2020-03-20,2020,March,Friday,20,80,17,D31,Toronto,25,Glenfield-Jane Heights (25),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,MOVELO ALGONQUI,MT,6,LBL,111.0,STOLEN,1963,"{'type': 'Point', 'coordinates': (-79.51289814, 43.75224824)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1972,6176,GO-2020890246,B&E,2020-05-12,2020,May,Tuesday,12,133,3,2020-05-13,2020,May,Wednesday,13,134,14,D31,Toronto,25,Glenfield-Jane Heights (25),"Dealership (Car, Motorcycle, Marine, Trailer, Etc.)",Commercial,OTHER,,EL,0,,2000.0,STOLEN,1964,"{'type': 'Point', 'coordinates': (-79.52595446, 43.74487932)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1973,6177,GO-2020890246,B&E,2020-05-12,2020,May,Tuesday,12,133,3,2020-05-13,2020,May,Wednesday,13,134,14,D31,Toronto,25,Glenfield-Jane Heights (25),"Dealership (Car, Motorcycle, Marine, Trailer, Etc.)",Commercial,OTHER,,EL,0,,2000.0,STOLEN,1965,"{'type': 'Point', 'coordinates': (-79.52595446, 43.74487932)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1974,6178,GO-2020890246,B&E,2020-05-12,2020,May,Tuesday,12,133,3,2020-05-13,2020,May,Wednesday,13,134,14,D31,Toronto,25,Glenfield-Jane Heights (25),"Dealership (Car, Motorcycle, Marine, Trailer, Etc.)",Commercial,OTHER,,EL,0,,2000.0,STOLEN,1966,"{'type': 'Point', 'coordinates': (-79.52595446, 43.74487932)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1975,6179,GO-2020890246,B&E,2020-05-12,2020,May,Tuesday,12,133,3,2020-05-13,2020,May,Wednesday,13,134,14,D31,Toronto,25,Glenfield-Jane Heights (25),"Dealership (Car, Motorcycle, Marine, Trailer, Etc.)",Commercial,OTHER,,EL,0,,2000.0,STOLEN,1967,"{'type': 'Point', 'coordinates': (-79.52595446, 43.74487932)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1976,6180,GO-2020890246,B&E,2020-05-12,2020,May,Tuesday,12,133,3,2020-05-13,2020,May,Wednesday,13,134,14,D31,Toronto,25,Glenfield-Jane Heights (25),"Dealership (Car, Motorcycle, Marine, Trailer, Etc.)",Commercial,OTHER,,EL,0,,2000.0,STOLEN,1968,"{'type': 'Point', 'coordinates': (-79.52595446, 43.74487932)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1977,6251,GO-2020776837,B&E,2020-04-24,2020,April,Friday,24,115,0,2020-04-24,2020,April,Friday,24,115,8,D31,Toronto,25,Glenfield-Jane Heights (25),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,COLNAGO,,MT,1,RED,,RECOVERED,1969,"{'type': 'Point', 'coordinates': (-79.52288598, 43.75138932)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1978,6819,GO-20201400590,THEFT UNDER - BICYCLE,2020-07-27,2020,July,Monday,27,209,19,2020-07-27,2020,July,Monday,27,209,20,D31,Toronto,25,Glenfield-Jane Heights (25),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,ZZZ,,RG,0,BLUWHI,250.0,STOLEN,1970,"{'type': 'Point', 'coordinates': (-79.51703417, 43.75485496)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1979,8033,GO-20142214522,THEFT UNDER,2014-06-01,2014,June,Sunday,1,152,18,2014-06-03,2014,June,Tuesday,3,154,19,D31,Toronto,25,Glenfield-Jane Heights (25),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DYNACRAFT,NITROUS,MT,1,RED,,STOLEN,1971,"{'type': 'Point', 'coordinates': (-79.50715447, 43.74847366)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1980,8034,GO-20142214522,THEFT UNDER,2014-06-01,2014,June,Sunday,1,152,18,2014-06-03,2014,June,Tuesday,3,154,19,D31,Toronto,25,Glenfield-Jane Heights (25),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DYNACRAFT,NITROUS 24,MT,1,RED,,STOLEN,1972,"{'type': 'Point', 'coordinates': (-79.50715447, 43.74847366)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1981,8223,GO-20142345336,THEFT UNDER,2014-06-20,2014,June,Friday,20,171,19,2014-06-22,2014,June,Sunday,22,173,17,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MEST,WICKED,MT,21,BLKWHI,150.0,STOLEN,1973,"{'type': 'Point', 'coordinates': (-79.51134996, 43.75013528)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1982,8224,GO-20142345336,THEFT UNDER,2014-06-20,2014,June,Friday,20,171,19,2014-06-22,2014,June,Sunday,22,173,17,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MEST,WICKED,MT,21,BLKWHI,150.0,STOLEN,1974,"{'type': 'Point', 'coordinates': (-79.51134996, 43.75013528)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1983,8429,GO-20142500493,THEFT UNDER,2014-07-15,2014,July,Tuesday,15,196,9,2014-07-15,2014,July,Tuesday,15,196,9,D31,Toronto,25,Glenfield-Jane Heights (25),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,MT,12,WHI,125.0,STOLEN,1975,"{'type': 'Point', 'coordinates': (-79.50146129, 43.74150072)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1984,9359,GO-2015537044,THEFT UNDER,2015-03-31,2015,March,Tuesday,31,90,19,2015-03-31,2015,March,Tuesday,31,90,20,D31,Toronto,25,Glenfield-Jane Heights (25),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SURLY,OGRE,TO,18,DGR,1500.0,STOLEN,1976,"{'type': 'Point', 'coordinates': (-79.50171299, 43.74506703)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1985,10026,GO-20151203716,THEFT UNDER,2015-07-10,2015,July,Friday,10,191,20,2015-07-15,2015,July,Wednesday,15,196,22,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,,OT,0,BLK,,STOLEN,1977,"{'type': 'Point', 'coordinates': (-79.50730271, 43.74143196)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1986,10200,GO-20159005460,THEFT UNDER,2015-08-07,2015,August,Friday,7,219,14,2015-08-07,2015,August,Friday,7,219,15,D31,Toronto,25,Glenfield-Jane Heights (25),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,CCM,RG,5,DBL,200.0,STOLEN,1978,"{'type': 'Point', 'coordinates': (-79.50964031, 43.73967319)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1987,10351,GO-20151483141,THEFT UNDER,2015-08-28,2015,August,Friday,28,240,10,2015-09-01,2015,September,Tuesday,1,244,21,D31,Toronto,25,Glenfield-Jane Heights (25),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,UNKNOWN,MT,18,,400.0,STOLEN,1979,"{'type': 'Point', 'coordinates': (-79.50287602, 43.73994232)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1988,10352,GO-20151483141,THEFT UNDER,2015-08-28,2015,August,Friday,28,240,10,2015-09-01,2015,September,Tuesday,1,244,21,D31,Toronto,25,Glenfield-Jane Heights (25),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,ELECTRIC,FO,1,BLUSIL,500.0,STOLEN,1980,"{'type': 'Point', 'coordinates': (-79.50287602, 43.73994232)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1989,10353,GO-20151483141,THEFT UNDER,2015-08-28,2015,August,Friday,28,240,10,2015-09-01,2015,September,Tuesday,1,244,21,D31,Toronto,25,Glenfield-Jane Heights (25),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,ELECTRIC,EL,1,,500.0,STOLEN,1981,"{'type': 'Point', 'coordinates': (-79.50287602, 43.73994232)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1990,10354,GO-20151483141,THEFT UNDER,2015-08-28,2015,August,Friday,28,240,10,2015-09-01,2015,September,Tuesday,1,244,21,D31,Toronto,25,Glenfield-Jane Heights (25),"Private Property Structure (Pool, Shed, Detached Garage)",Other,IRON HORSE,,MT,18,BLK,200.0,STOLEN,1982,"{'type': 'Point', 'coordinates': (-79.50287602, 43.73994232)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1991,10376,GO-20151501796,THEFT UNDER,2015-08-28,2015,August,Friday,28,240,22,2015-08-31,2015,August,Monday,31,243,16,D31,Toronto,25,Glenfield-Jane Heights (25),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN,UNKNOWN,EL,1,BLK,700.0,STOLEN,1983,"{'type': 'Point', 'coordinates': (-79.50156567, 43.74283405)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1992,10420,GO-20159006844,THEFT UNDER,2015-09-05,2015,September,Saturday,5,248,12,2015-09-07,2015,September,Monday,7,250,13,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,DB,,MT,18,ONG,650.0,STOLEN,1984,"{'type': 'Point', 'coordinates': (-79.50908295, 43.7581337)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1993,10421,GO-20159006844,THEFT UNDER,2015-09-05,2015,September,Saturday,5,248,12,2015-09-07,2015,September,Monday,7,250,13,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,IN,,MT,18,GRY,350.0,STOLEN,1985,"{'type': 'Point', 'coordinates': (-79.50908295, 43.7581337)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1994,10458,GO-20151568707,THEFT UNDER,2015-09-10,2015,September,Thursday,10,253,18,2015-09-11,2015,September,Friday,11,254,8,D31,Toronto,25,Glenfield-Jane Heights (25),"Apartment (Rooming House, Condo)",Apartment,SUPERCYCLE,,OT,0,BLK,200.0,STOLEN,1986,"{'type': 'Point', 'coordinates': (-79.50684467, 43.74032482)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1995,15005,GO-20169006825,THEFT UNDER - BICYCLE,2016-07-06,2016,July,Wednesday,6,188,11,2016-07-07,2016,July,Thursday,7,189,0,D32,Toronto,40,St.Andrew-Windfields (40),Ttc Subway Station,Transit,TR,501073,RG,40,SIL,380.0,STOLEN,2027,"{'type': 'Point', 'coordinates': (-79.40668473, 43.7441499)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-1996,10459,GO-20151568707,THEFT UNDER,2015-09-10,2015,September,Thursday,10,253,18,2015-09-11,2015,September,Friday,11,254,8,D31,Toronto,25,Glenfield-Jane Heights (25),"Apartment (Rooming House, Condo)",Apartment,SUPERCYCLE,,OT,0,BLK,200.0,STOLEN,1987,"{'type': 'Point', 'coordinates': (-79.50684467, 43.74032482)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1997,10660,GO-20151811443,THEFT UNDER,2015-10-19,2015,October,Monday,19,292,18,2015-10-21,2015,October,Wednesday,21,294,11,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,18,GRN,500.0,STOLEN,1988,"{'type': 'Point', 'coordinates': (-79.50908295, 43.7581337)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1998,10661,GO-20151811443,THEFT UNDER,2015-10-19,2015,October,Monday,19,292,18,2015-10-21,2015,October,Wednesday,21,294,11,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,TO,3,RED,500.0,STOLEN,1989,"{'type': 'Point', 'coordinates': (-79.50908295, 43.7581337)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-1999,10662,GO-20151811443,THEFT UNDER,2015-10-19,2015,October,Monday,19,292,18,2015-10-21,2015,October,Wednesday,21,294,11,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,,MT,18,REDWHI,700.0,STOLEN,1990,"{'type': 'Point', 'coordinates': (-79.50908295, 43.7581337)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-2000,10756,GO-20151931859,THEFT UNDER,2015-11-09,2015,November,Monday,9,313,13,2015-11-10,2015,November,Tuesday,10,314,12,D31,Toronto,25,Glenfield-Jane Heights (25),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,UNKNOWN,MT,12,,150.0,STOLEN,1991,"{'type': 'Point', 'coordinates': (-79.50600792, 43.73614684)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-2001,10757,GO-20151931859,THEFT UNDER,2015-11-09,2015,November,Monday,9,313,13,2015-11-10,2015,November,Tuesday,10,314,12,D31,Toronto,25,Glenfield-Jane Heights (25),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,UNKNOWN,MT,12,,150.0,STOLEN,1992,"{'type': 'Point', 'coordinates': (-79.50600792, 43.73614684)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-2002,10892,GO-20152229907,ARR/WARR EXECUTED NO ADDED CHG,2015-12-30,2015,December,Wednesday,30,364,0,2015-12-30,2015,December,Wednesday,30,364,0,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,HUFFY,MT,15,BLK,500.0,UNKNOWN,1993,"{'type': 'Point', 'coordinates': (-79.49925363, 43.73937709)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-2003,2245,GO-20189013671,THEFT UNDER - BICYCLE,2018-05-03,2018,May,Thursday,3,123,12,2018-05-03,2018,May,Thursday,3,123,12,D33,Toronto,40,St.Andrew-Windfields (40),Schools During Supervised Activity,Educational,TR,MARLIN 5,MT,21,BLK,650.0,STOLEN,2002,"{'type': 'Point', 'coordinates': (-79.37119738, 43.75591206)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-2004,10893,GO-20152229907,ARR/WARR EXECUTED NO ADDED CHG,2015-12-30,2015,December,Wednesday,30,364,0,2015-12-30,2015,December,Wednesday,30,364,0,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,HUFFY,MT,18,BLU,400.0,UNKNOWN,1994,"{'type': 'Point', 'coordinates': (-79.49925363, 43.73937709)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-2005,10894,GO-20152229907,ARR/WARR EXECUTED NO ADDED CHG,2015-12-30,2015,December,Wednesday,30,364,0,2015-12-30,2015,December,Wednesday,30,364,0,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,WICKED,BM,1,BLK,200.0,UNKNOWN,1995,"{'type': 'Point', 'coordinates': (-79.49925363, 43.73937709)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-2006,11405,GO-20169005121,THEFT UNDER - BICYCLE,2016-05-28,2016,May,Saturday,28,149,23,2016-05-29,2016,May,Sunday,29,150,22,D31,Toronto,25,Glenfield-Jane Heights (25),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SU,,MT,12,GRY,300.0,STOLEN,1996,"{'type': 'Point', 'coordinates': (-79.50926221, 43.73831154)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-2007,11683,GO-20161147458,B&E,2016-06-30,2016,June,Thursday,30,182,20,2016-06-30,2016,June,Thursday,30,182,22,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,AQUILA,,SC,1,,500.0,STOLEN,1997,"{'type': 'Point', 'coordinates': (-79.5146931, 43.74295482)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-2008,12242,GO-20161551134,THEFT UNDER - BICYCLE,2016-08-29,2016,August,Monday,29,242,21,2016-09-01,2016,September,Thursday,1,245,14,D31,Toronto,25,Glenfield-Jane Heights (25),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN,UNKNOWN,MT,14,RED,,STOLEN,1998,"{'type': 'Point', 'coordinates': (-79.51978635, 43.74530145)}",Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966
-2009,1351,GO-20179014362,THEFT UNDER,2017-09-08,2017,September,Friday,8,251,15,2017-09-09,2017,September,Saturday,9,252,20,D33,Toronto,40,St.Andrew-Windfields (40),"Apartment (Rooming House, Condo)",Apartment,CC,,OT,21,,400.0,STOLEN,1999,"{'type': 'Point', 'coordinates': (-79.35992932, 43.75295442)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-2010,1393,GO-20179014675,THEFT UNDER - BICYCLE,2017-09-13,2017,September,Wednesday,13,256,8,2017-09-13,2017,September,Wednesday,13,256,16,D33,Toronto,40,St.Andrew-Windfields (40),Schools During Supervised Activity,Educational,RM,WHISTLER 10,RG,8,GRY,670.0,STOLEN,2000,"{'type': 'Point', 'coordinates': (-79.37483439, 43.75055042)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-2011,1591,GO-20171804783,THEFT UNDER - BICYCLE,2017-10-04,2017,October,Wednesday,4,277,15,2017-10-05,2017,October,Thursday,5,278,8,D32,Toronto,40,St.Andrew-Windfields (40),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,OT,2,BLK,,STOLEN,2001,"{'type': 'Point', 'coordinates': (-79.40315892, 43.754187200000004)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-2012,2553,GO-20189018504,THEFT UNDER - BICYCLE,2018-06-04,2018,June,Monday,4,155,12,2018-06-13,2018,June,Wednesday,13,164,12,D33,Toronto,40,St.Andrew-Windfields (40),Schools During Supervised Activity,Educational,OT,MOUNTAIN BIKE,MT,24,BLK,700.0,STOLEN,2003,"{'type': 'Point', 'coordinates': (-79.37119738, 43.75591206)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-2013,2904,GO-20189023198,THEFT UNDER - BICYCLE,2018-07-20,2018,July,Friday,20,201,9,2018-07-20,2018,July,Friday,20,201,12,D33,Toronto,40,St.Andrew-Windfields (40),Schools During Supervised Activity,Educational,SC,SCHWINN GTX-2 M,RG,21,RED,500.0,STOLEN,2004,"{'type': 'Point', 'coordinates': (-79.37483439, 43.75055042)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-2014,3507,GO-20189031028,THEFT UNDER,2018-09-18,2018,September,Tuesday,18,261,15,2018-09-18,2018,September,Tuesday,18,261,22,D33,Toronto,40,St.Andrew-Windfields (40),Schools During Supervised Activity,Educational,DB,,MT,21,BLK,900.0,STOLEN,2005,"{'type': 'Point', 'coordinates': (-79.37483439, 43.75055042)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-2015,3875,GO-20182107551,THEFT UNDER - BICYCLE,2018-11-14,2018,November,Wednesday,14,318,5,2018-11-15,2018,November,Thursday,15,319,17,D32,Toronto,40,St.Andrew-Windfields (40),Ttc Subway Station,Transit,GIANT,,MT,12,BLK,1000.0,STOLEN,2006,"{'type': 'Point', 'coordinates': (-79.40668473, 43.7441499)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-2016,4536,GO-20199019164,THEFT UNDER,2019-06-18,2019,June,Tuesday,18,169,11,2019-06-18,2019,June,Tuesday,18,169,21,D33,Toronto,40,St.Andrew-Windfields (40),Schools During Supervised Activity,Educational,GI,TALON 3,MT,24,,699.0,STOLEN,2007,"{'type': 'Point', 'coordinates': (-79.37483439, 43.75055042)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-2017,5005,GO-20199025458,THEFT UNDER,2019-08-08,2019,August,Thursday,8,220,7,2019-08-09,2019,August,Friday,9,221,5,D32,Toronto,40,St.Andrew-Windfields (40),Ttc Subway Station,Transit,SC,,RG,21,,400.0,STOLEN,2008,"{'type': 'Point', 'coordinates': (-79.40668473, 43.7441499)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-2018,6101,GO-20209011915,THEFT UNDER - BICYCLE,2020-04-24,2020,April,Friday,24,115,15,2020-04-25,2020,April,Saturday,25,116,13,D32,Toronto,40,St.Andrew-Windfields (40),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,,MT,6,BLU,280.0,STOLEN,2009,"{'type': 'Point', 'coordinates': (-79.38920551, 43.75991797)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-2019,6102,GO-20209011915,THEFT UNDER - BICYCLE,2020-04-24,2020,April,Friday,24,115,15,2020-04-25,2020,April,Saturday,25,116,13,D32,Toronto,40,St.Andrew-Windfields (40),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,,MT,6,BLK,200.0,STOLEN,2010,"{'type': 'Point', 'coordinates': (-79.38920551, 43.75991797)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-2020,6493,GO-20201195219,THEFT UNDER,2020-06-29,2020,June,Monday,29,181,5,2020-06-29,2020,June,Monday,29,181,8,D33,Toronto,40,St.Andrew-Windfields (40),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MONGOOSE,0457364J071-176,BM,0,BLU,,RECOVERED,2011,"{'type': 'Point', 'coordinates': (-79.37379558, 43.7638434)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-2021,7070,GO-20201601396,THEFT UNDER - BICYCLE,2020-08-18,2020,August,Tuesday,18,231,0,2020-08-25,2020,August,Tuesday,25,238,12,D32,Toronto,40,St.Andrew-Windfields (40),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,RG,12,,650.0,STOLEN,2012,"{'type': 'Point', 'coordinates': (-79.39449136, 43.74677422)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-2022,7311,GO-20209023909,THEFT UNDER,2020-09-21,2020,September,Monday,21,265,8,2020-09-21,2020,September,Monday,21,265,18,D32,Toronto,40,St.Andrew-Windfields (40),Schools During Supervised Activity,Educational,RM,SOUL 10,MT,40,RED,900.0,STOLEN,2013,"{'type': 'Point', 'coordinates': (-79.39199758, 43.7514719)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-2023,7486,GO-20209026758,THEFT UNDER - BICYCLE,2020-10-17,2020,October,Saturday,17,291,7,2020-10-17,2020,October,Saturday,17,291,10,D32,Toronto,40,St.Andrew-Windfields (40),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,CRONO TRI,RC,50,WHI,2000.0,STOLEN,2014,"{'type': 'Point', 'coordinates': (-79.39443206, 43.753232)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-2024,7487,GO-20209026758,THEFT UNDER - BICYCLE,2020-10-17,2020,October,Saturday,17,291,7,2020-10-17,2020,October,Saturday,17,291,10,D32,Toronto,40,St.Andrew-Windfields (40),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GULU,CLONO,OT,21,WHIRED,,STOLEN,2015,"{'type': 'Point', 'coordinates': (-79.39443206, 43.753232)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-2025,8366,GO-20142501662,THEFT UNDER,2014-07-14,2014,July,Monday,14,195,19,2014-07-15,2014,July,Tuesday,15,196,12,D33,Toronto,40,St.Andrew-Windfields (40),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,STEYR,OT,10,ONG,200.0,STOLEN,2016,"{'type': 'Point', 'coordinates': (-79.36412486, 43.76052388)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-2026,8875,GO-20142912341,THEFT UNDER,2014-09-13,2014,September,Saturday,13,256,7,2014-09-15,2014,September,Monday,15,258,6,D32,Toronto,40,St.Andrew-Windfields (40),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NEXT,UNKNOWN,MT,12,RED,100.0,STOLEN,2017,"{'type': 'Point', 'coordinates': (-79.39306144, 43.76323381)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-2027,9126,GO-20143197025,THEFT UNDER,2014-10-21,2014,October,Tuesday,21,294,13,2014-10-29,2014,October,Wednesday,29,302,9,D32,Toronto,40,St.Andrew-Windfields (40),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,7.6 FX,OT,10,GRY,1400.0,STOLEN,2018,"{'type': 'Point', 'coordinates': (-79.40275987, 43.74856487)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-2028,11475,GO-20169005498,THEFT UNDER - BICYCLE,2016-06-08,2016,June,Wednesday,8,160,7,2016-06-08,2016,June,Wednesday,8,160,21,D32,Toronto,40,St.Andrew-Windfields (40),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,2016 SPECIAL MD,OT,24,PLE,800.0,STOLEN,2019,"{'type': 'Point', 'coordinates': (-79.40402607, 43.74421835)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-2029,11493,GO-20169005585,THEFT UNDER - BICYCLE,2016-06-10,2016,June,Friday,10,162,14,2016-06-10,2016,June,Friday,10,162,19,D32,Toronto,40,St.Andrew-Windfields (40),Ttc Subway Station,Transit,OT,RIVER SPORT,OT,21,RED,500.0,STOLEN,2020,"{'type': 'Point', 'coordinates': (-79.40402607, 43.74421835)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-2030,11507,GO-20169005648,THEFT UNDER - BICYCLE,2016-06-11,2016,June,Saturday,11,163,17,2016-06-12,2016,June,Sunday,12,164,10,D32,Toronto,40,St.Andrew-Windfields (40),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,,MT,12,,0.0,STOLEN,2021,"{'type': 'Point', 'coordinates': (-79.40668473, 43.7441499)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-2031,13537,GO-2020732697,B&E,2020-04-15,2020,April,Wednesday,15,106,12,2020-04-16,2020,April,Thursday,16,107,17,D32,Toronto,40,St.Andrew-Windfields (40),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,820,MT,12,BLK,500.0,UNKNOWN,2022,"{'type': 'Point', 'coordinates': (-79.39179517, 43.75845903)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-2032,13538,GO-2020732697,B&E,2020-04-15,2020,April,Wednesday,15,106,12,2020-04-16,2020,April,Thursday,16,107,17,D32,Toronto,40,St.Andrew-Windfields (40),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,,BM,0,GRY,100.0,UNKNOWN,2023,"{'type': 'Point', 'coordinates': (-79.39179517, 43.75845903)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-2033,14412,GO-20142919065,B&E,2014-09-15,2014,September,Monday,15,258,17,2014-09-16,2014,September,Tuesday,16,259,7,D33,Toronto,40,St.Andrew-Windfields (40),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SPORTEK,RIDGE RUNNER,MT,18,BLUWHI,,RECOVERED,2024,"{'type': 'Point', 'coordinates': (-79.36072778, 43.75643579)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-2034,14828,GO-20189024261,THEFT UNDER - BICYCLE,2018-07-27,2018,July,Friday,27,208,13,2018-07-27,2018,July,Friday,27,208,22,D32,Toronto,40,St.Andrew-Windfields (40),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,HATCHET,OT,24,RED,3500.0,STOLEN,2025,"{'type': 'Point', 'coordinates': (-79.40668473, 43.7441499)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-2035,14932,GO-20142912341,THEFT UNDER,2014-09-13,2014,September,Saturday,13,256,7,2014-09-15,2014,September,Monday,15,258,6,D32,Toronto,40,St.Andrew-Windfields (40),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NEXT,UNKNOWN,MT,18,BLK,100.0,STOLEN,2026,"{'type': 'Point', 'coordinates': (-79.39306144, 43.76323381)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-2036,17072,GO-20189023198,THEFT UNDER - BICYCLE,2018-07-20,2018,July,Friday,20,201,9,2018-07-20,2018,July,Friday,20,201,12,D33,Toronto,40,St.Andrew-Windfields (40),Schools During Supervised Activity,Educational,SC,,OT,21,RED,500.0,STOLEN,2028,"{'type': 'Point', 'coordinates': (-79.37483439, 43.75055042)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-2037,17916,GO-20149003310,THEFT UNDER,2014-05-12,2014,May,Monday,12,132,8,2014-05-12,2014,May,Monday,12,132,22,D32,Toronto,40,St.Andrew-Windfields (40),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,OT,0,,,RECOVERED,2029,"{'type': 'Point', 'coordinates': (-79.40185342000001, 43.75373935)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-2038,20016,GO-20199008613,THEFT UNDER - BICYCLE,2019-03-14,2019,March,Thursday,14,73,1,2019-03-18,2019,March,Monday,18,77,2,D33,Toronto,40,St.Andrew-Windfields (40),"Apartment (Rooming House, Condo)",Apartment,GI,BOULDER SE,MT,7,RED,1000.0,STOLEN,2030,"{'type': 'Point', 'coordinates': (-79.35992932, 43.75295442)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-2039,20039,GO-20199019164,THEFT UNDER,2019-06-18,2019,June,Tuesday,18,169,11,2019-06-18,2019,June,Tuesday,18,169,21,D33,Toronto,40,St.Andrew-Windfields (40),Schools During Supervised Activity,Educational,GI,TALON 3,MT,24,BLK,740.0,STOLEN,2031,"{'type': 'Point', 'coordinates': (-79.37483439, 43.75055042)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-2040,20095,GO-20201195219,THEFT UNDER,2020-06-29,2020,June,Monday,29,181,5,2020-06-29,2020,June,Monday,29,181,8,D33,Toronto,40,St.Andrew-Windfields (40),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,MT,0,,,STOLEN,2032,"{'type': 'Point', 'coordinates': (-79.37379558, 43.7638434)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-2041,20096,GO-20201195219,THEFT UNDER,2020-06-29,2020,June,Monday,29,181,5,2020-06-29,2020,June,Monday,29,181,8,D33,Toronto,40,St.Andrew-Windfields (40),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT,,MT,0,,,STOLEN,2033,"{'type': 'Point', 'coordinates': (-79.37379558, 43.7638434)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-2042,20098,GO-20201222049,THEFT UNDER - BICYCLE,2020-06-29,2020,June,Monday,29,181,4,2020-07-05,2020,July,Sunday,5,187,12,D33,Toronto,40,St.Andrew-Windfields (40),"Private Property Structure (Pool, Shed, Detached Garage)",Other,MONGOOSE,540BMX,BM,1,BLU,373.0,UNKNOWN,2034,"{'type': 'Point', 'coordinates': (-79.36510348, 43.76453686)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-2043,20124,GO-20209023973,THEFT UNDER,2020-09-21,2020,September,Monday,21,265,8,2020-09-21,2020,September,Monday,21,265,15,D33,Toronto,40,St.Andrew-Windfields (40),Schools During Supervised Activity,Educational,GT,GT AVALANCHE CO,MT,18,GRY,860.0,STOLEN,2035,"{'type': 'Point', 'coordinates': (-79.37483439, 43.75055042)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-2044,20250,GO-20179016535,THEFT UNDER - BICYCLE,2017-10-04,2017,October,Wednesday,4,277,8,2017-10-05,2017,October,Thursday,5,278,16,D33,Toronto,40,St.Andrew-Windfields (40),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GT,27.5 GUNMETAL 2,MT,20,BLK,514.0,STOLEN,2036,"{'type': 'Point', 'coordinates': (-79.37483439, 43.75055042)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-2045,20437,GO-20151590386,THEFT UNDER - BICYCLE,2015-09-17,2015,September,Thursday,17,260,14,2015-09-17,2015,September,Thursday,17,260,14,D33,Toronto,40,St.Andrew-Windfields (40),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,RINCON,MT,16,RED,0.0,STOLEN,2037,"{'type': 'Point', 'coordinates': (-79.38282058, 43.75178958)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-2046,20484,GO-2016675910,THEFT UNDER - BICYCLE,2016-04-20,2016,April,Wednesday,20,111,15,2016-04-20,2016,April,Wednesday,20,111,18,D33,Toronto,40,St.Andrew-Windfields (40),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,MT,21,RED,,STOLEN,2038,"{'type': 'Point', 'coordinates': (-79.35992932, 43.75295442)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-2047,20539,GO-20161717963,B&E,2016-09-23,2016,September,Friday,23,267,18,2016-09-27,2016,September,Tuesday,27,271,11,D33,Toronto,40,St.Andrew-Windfields (40),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KONA,SPLICE,OT,1,BLUGRY,800.0,STOLEN,2039,"{'type': 'Point', 'coordinates': (-79.37790697, 43.75405291)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-2048,20556,GO-20169013781,THEFT UNDER - BICYCLE,2016-11-23,2016,November,Wednesday,23,328,20,2016-11-23,2016,November,Wednesday,23,328,23,D33,Toronto,40,St.Andrew-Windfields (40),"Open Areas (Lakes, Parks, Rivers)",Outside,RA,DETOUR 1 L,OT,7,WHI,380.0,STOLEN,2040,"{'type': 'Point', 'coordinates': (-79.35745248000002, 43.75349315)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-2049,22038,GO-20149007623,THEFT UNDER,2014-10-07,2014,October,Tuesday,7,280,19,2014-10-16,2014,October,Thursday,16,289,15,D32,Toronto,40,St.Andrew-Windfields (40),"Apartment (Rooming House, Condo)",Apartment,UK,MYKA HT,MT,7,WHI,500.0,STOLEN,2041,"{'type': 'Point', 'coordinates': (-79.40465049, 43.75327096)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-2050,22107,GO-20169005627,THEFT UNDER - BICYCLE,2016-06-11,2016,June,Saturday,11,163,18,2016-06-12,2016,June,Sunday,12,164,3,D32,Toronto,40,St.Andrew-Windfields (40),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,2004 MODEL,MT,30,BLK,0.0,STOLEN,2042,"{'type': 'Point', 'coordinates': (-79.40402607, 43.74421835)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-2051,23350,GO-20201549807,THEFT OF EBIKE UNDER $5000,2020-08-17,2020,August,Monday,17,230,21,2020-08-18,2020,August,Tuesday,18,231,8,D32,Toronto,40,St.Andrew-Windfields (40),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NORCO,,MT,10,WHI,400.0,STOLEN,2043,"{'type': 'Point', 'coordinates': (-79.38920551, 43.75991797)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-2052,23358,GO-20209024515,THEFT UNDER - BICYCLE,2020-09-25,2020,September,Friday,25,269,9,2020-09-25,2020,September,Friday,25,269,16,D33,Toronto,40,St.Andrew-Windfields (40),Schools During Supervised Activity,Educational,OT,,MT,40,GRY,900.0,STOLEN,2044,"{'type': 'Point', 'coordinates': (-79.37119738, 43.75591206)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-2053,23362,GO-20202026516,THEFT UNDER - BICYCLE,2020-10-23,2020,October,Friday,23,297,12,2020-10-25,2020,October,Sunday,25,299,17,D32,Toronto,40,St.Andrew-Windfields (40),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GIANT,OCR 2,RC,9,BLU,600.0,STOLEN,2045,"{'type': 'Point', 'coordinates': (-79.40371413, 43.75335643)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-2054,24415,GO-20149003310,THEFT UNDER,2014-05-12,2014,May,Monday,12,132,8,2014-05-12,2014,May,Monday,12,132,22,D32,Toronto,40,St.Andrew-Windfields (40),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,SPORT,TO,15,,1249.0,STOLEN,2046,"{'type': 'Point', 'coordinates': (-79.40185342000001, 43.75373935)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946
-2055,1011,GO-20171376347,THEFT OF EBIKE UNDER $5000,2017-07-30,2017,July,Sunday,30,211,19,2017-07-31,2017,July,Monday,31,212,16,D32,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,AMEGO BOLD,,EL,1,BLK,2400.0,STOLEN,2047,"{'type': 'Point', 'coordinates': (-79.40587308, 43.74037772)}",Bridle Path-Sunnybrook-York Mills,41,No Designation,9266,8713,0.063,3478,3241,1040,8.91,3220,2240,140,580,165,35,75,0.010869565217391304
-2056,1409,GO-20179014782,THEFT UNDER - BICYCLE,2017-09-14,2017,September,Thursday,14,257,8,2017-09-14,2017,September,Thursday,14,257,19,D53,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,GI,IGUANA,MT,24,GRY,325.0,STOLEN,2048,"{'type': 'Point', 'coordinates': (-79.37788316000001, 43.72173341)}",Bridle Path-Sunnybrook-York Mills,41,No Designation,9266,8713,0.063,3478,3241,1040,8.91,3220,2240,140,580,165,35,75,0.010869565217391304
-2057,3522,GO-20189031302,THEFT UNDER - BICYCLE,2018-09-17,2018,September,Monday,17,260,9,2018-09-20,2018,September,Thursday,20,263,17,D32,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,SC,,MT,15,,250.0,STOLEN,2049,"{'type': 'Point', 'coordinates': (-79.38820869, 43.74514531)}",Bridle Path-Sunnybrook-York Mills,41,No Designation,9266,8713,0.063,3478,3241,1040,8.91,3220,2240,140,580,165,35,75,0.010869565217391304
-2058,3580,GO-20189032406,THEFT UNDER - BICYCLE,2018-09-27,2018,September,Thursday,27,270,9,2018-09-30,2018,September,Sunday,30,273,9,D53,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,ROADBIKE,RG,12,SIL,1500.0,STOLEN,2050,"{'type': 'Point', 'coordinates': (-79.3788987, 43.72097679)}",Bridle Path-Sunnybrook-York Mills,41,No Designation,9266,8713,0.063,3478,3241,1040,8.91,3220,2240,140,580,165,35,75,0.010869565217391304
-2059,4312,GO-2019913287,PROPERTY - FOUND,2019-05-19,2019,May,Sunday,19,139,7,2019-05-21,2019,May,Tuesday,21,141,17,D32,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CCM,ICE,MT,0,SIL,,UNKNOWN,2051,"{'type': 'Point', 'coordinates': (-79.39990727, 43.73544352)}",Bridle Path-Sunnybrook-York Mills,41,No Designation,9266,8713,0.063,3478,3241,1040,8.91,3220,2240,140,580,165,35,75,0.010869565217391304
-2060,4313,GO-2019913287,PROPERTY - FOUND,2019-05-19,2019,May,Sunday,19,139,7,2019-05-21,2019,May,Tuesday,21,141,17,D32,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,RG,0,PNKWHI,,UNKNOWN,2052,"{'type': 'Point', 'coordinates': (-79.39990727, 43.73544352)}",Bridle Path-Sunnybrook-York Mills,41,No Designation,9266,8713,0.063,3478,3241,1040,8.91,3220,2240,140,580,165,35,75,0.010869565217391304
-2061,4757,GO-20191282663,THEFT UNDER - BICYCLE,2019-07-09,2019,July,Tuesday,9,190,11,2019-07-09,2019,July,Tuesday,9,190,19,D53,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,SAVAT,,OT,8,BLKSIL,2000.0,STOLEN,2053,"{'type': 'Point', 'coordinates': (-79.37788316000001, 43.72173341)}",Bridle Path-Sunnybrook-York Mills,41,No Designation,9266,8713,0.063,3478,3241,1040,8.91,3220,2240,140,580,165,35,75,0.010869565217391304
-2062,5653,GO-20199036524,THEFT UNDER - BICYCLE,2019-10-25,2019,October,Friday,25,298,18,2019-11-05,2019,November,Tuesday,5,309,14,D53,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,GF,WAHOO,MT,24,GRY,700.0,STOLEN,2054,"{'type': 'Point', 'coordinates': (-79.37788316000001, 43.72173341)}",Bridle Path-Sunnybrook-York Mills,41,No Designation,9266,8713,0.063,3478,3241,1040,8.91,3220,2240,140,580,165,35,75,0.010869565217391304
-2063,5723,GO-20199038662,THEFT UNDER,2019-11-22,2019,November,Friday,22,326,19,2019-11-24,2019,November,Sunday,24,328,19,D53,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,18,BLK,1500.0,STOLEN,2055,"{'type': 'Point', 'coordinates': (-79.37945125, 43.72370944)}",Bridle Path-Sunnybrook-York Mills,41,No Designation,9266,8713,0.063,3478,3241,1040,8.91,3220,2240,140,580,165,35,75,0.010869565217391304
-2064,6070,GO-2020735911,B&E,2020-04-15,2020,April,Wednesday,15,106,16,2020-04-17,2020,April,Friday,17,108,10,D53,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,HYBRID,MT,21,WHI,800.0,STOLEN,2056,"{'type': 'Point', 'coordinates': (-79.37561824, 43.71720042)}",Bridle Path-Sunnybrook-York Mills,41,No Designation,9266,8713,0.063,3478,3241,1040,8.91,3220,2240,140,580,165,35,75,0.010869565217391304
-2065,6276,GO-20209014309,THEFT UNDER - BICYCLE,2020-05-27,2020,May,Wednesday,27,148,11,2020-05-31,2020,May,Sunday,31,152,21,D53,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,BOONE 5,RC,11,BLU,2650.0,STOLEN,2057,"{'type': 'Point', 'coordinates': (-79.37788316000001, 43.72173341)}",Bridle Path-Sunnybrook-York Mills,41,No Designation,9266,8713,0.063,3478,3241,1040,8.91,3220,2240,140,580,165,35,75,0.010869565217391304
-2066,7064,GO-20209021201,THEFT UNDER - BICYCLE,2020-08-15,2020,August,Saturday,15,228,15,2020-08-24,2020,August,Monday,24,237,21,D53,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,OT,ALIGHT 2,RG,16,RED,800.0,STOLEN,2058,"{'type': 'Point', 'coordinates': (-79.37788316000001, 43.72173341)}",Bridle Path-Sunnybrook-York Mills,41,No Designation,9266,8713,0.063,3478,3241,1040,8.91,3220,2240,140,580,165,35,75,0.010869565217391304
-2067,7322,GO-20209024112,THEFT UNDER - BICYCLE,2020-09-22,2020,September,Tuesday,22,266,5,2020-09-22,2020,September,Tuesday,22,266,19,D53,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SC,,RG,20,,100.0,STOLEN,2059,"{'type': 'Point', 'coordinates': (-79.38350677, 43.72089748)}",Bridle Path-Sunnybrook-York Mills,41,No Designation,9266,8713,0.063,3478,3241,1040,8.91,3220,2240,140,580,165,35,75,0.010869565217391304
-2068,7395,GO-20209025096,THEFT UNDER - BICYCLE,2020-09-30,2020,September,Wednesday,30,274,15,2020-09-30,2020,September,Wednesday,30,274,21,D33,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),Schools During Supervised Activity,Educational,KO,,MT,27,GRY,1186.0,STOLEN,2060,"{'type': 'Point', 'coordinates': (-79.38180546, 43.73603449)}",Bridle Path-Sunnybrook-York Mills,41,No Designation,9266,8713,0.063,3478,3241,1040,8.91,3220,2240,140,580,165,35,75,0.010869565217391304
-2069,7402,GO-20209025122,THEFT UNDER - BICYCLE,2020-09-30,2020,September,Wednesday,30,274,8,2020-10-01,2020,October,Thursday,1,275,11,D33,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),Schools During Un-Supervised Activity,Educational,OT,GHOST KATO,MT,10,RED,900.0,STOLEN,2061,"{'type': 'Point', 'coordinates': (-79.38180546, 43.73603449)}",Bridle Path-Sunnybrook-York Mills,41,No Designation,9266,8713,0.063,3478,3241,1040,8.91,3220,2240,140,580,165,35,75,0.010869565217391304
-2070,8012,GO-20142177820,THEFT UNDER,2014-05-06,2014,May,Tuesday,6,126,9,2014-05-29,2014,May,Thursday,29,149,15,D53,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,TREK,,MT,4,WHI,,STOLEN,2062,"{'type': 'Point', 'coordinates': (-79.37788316000001, 43.72173341)}",Bridle Path-Sunnybrook-York Mills,41,No Designation,9266,8713,0.063,3478,3241,1040,8.91,3220,2240,140,580,165,35,75,0.010869565217391304
-2071,8170,GO-20142326372,B&E,2014-06-19,2014,June,Thursday,19,170,10,2014-06-19,2014,June,Thursday,19,170,20,D53,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Single Home, House (Attach Garage, Cottage, Mobile)",House,VITESSE,CUSTOM,RC,24,WHI,10000.0,STOLEN,2063,"{'type': 'Point', 'coordinates': (-79.38611663, 43.72745059)}",Bridle Path-Sunnybrook-York Mills,41,No Designation,9266,8713,0.063,3478,3241,1040,8.91,3220,2240,140,580,165,35,75,0.010869565217391304
-2072,9432,GO-20159002050,THEFT UNDER,2015-04-19,2015,April,Sunday,19,109,11,2015-04-19,2015,April,Sunday,19,109,19,D32,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),Ttc Subway Station,Transit,GI,ROAM 0,RG,30,BLK,1200.0,STOLEN,2064,"{'type': 'Point', 'coordinates': (-79.40147318, 43.73841989)}",Bridle Path-Sunnybrook-York Mills,41,No Designation,9266,8713,0.063,3478,3241,1040,8.91,3220,2240,140,580,165,35,75,0.010869565217391304
-2073,10927,GO-20169000519,THEFT UNDER - BICYCLE,2016-01-14,2016,January,Thursday,14,14,9,2016-01-15,2016,January,Friday,15,15,0,D53,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,GTR,RC,10,BLK,4300.0,STOLEN,2065,"{'type': 'Point', 'coordinates': (-79.37805212, 43.71671827)}",Bridle Path-Sunnybrook-York Mills,41,No Designation,9266,8713,0.063,3478,3241,1040,8.91,3220,2240,140,580,165,35,75,0.010869565217391304
-2074,12384,GO-20161661686,THEFT UNDER - BICYCLE,2016-09-18,2016,September,Sunday,18,262,12,2016-09-18,2016,September,Sunday,18,262,16,D53,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,GIRLS,RG,7,PLEWHI,250.0,STOLEN,2066,"{'type': 'Point', 'coordinates': (-79.38873145, 43.72376027)}",Bridle Path-Sunnybrook-York Mills,41,No Designation,9266,8713,0.063,3478,3241,1040,8.91,3220,2240,140,580,165,35,75,0.010869565217391304
-2075,12385,GO-20161661686,THEFT UNDER - BICYCLE,2016-09-18,2016,September,Sunday,18,262,12,2016-09-18,2016,September,Sunday,18,262,16,D53,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Single Home, House (Attach Garage, Cottage, Mobile)",House,LOUIS GARNEAU,STELLA,RG,7,BLKPNK,250.0,STOLEN,2067,"{'type': 'Point', 'coordinates': (-79.38873145, 43.72376027)}",Bridle Path-Sunnybrook-York Mills,41,No Designation,9266,8713,0.063,3478,3241,1040,8.91,3220,2240,140,580,165,35,75,0.010869565217391304
-2076,13029,GO-2020747823,B&E,2020-04-19,2020,April,Sunday,19,110,11,2020-04-19,2020,April,Sunday,19,110,11,D53,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,AM,MT,21,OTH,4000.0,STOLEN,2068,"{'type': 'Point', 'coordinates': (-79.37561824, 43.71720042)}",Bridle Path-Sunnybrook-York Mills,41,No Designation,9266,8713,0.063,3478,3241,1040,8.91,3220,2240,140,580,165,35,75,0.010869565217391304
-2077,13570,GO-20209019228,THREAT - PERSON,2020-08-01,2020,August,Saturday,1,214,20,2020-08-02,2020,August,Sunday,2,215,20,D32,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,TR,HYBRID,OT,21,BLK,800.0,STOLEN,2069,"{'type': 'Point', 'coordinates': (-79.39990727, 43.73544352)}",Bridle Path-Sunnybrook-York Mills,41,No Designation,9266,8713,0.063,3478,3241,1040,8.91,3220,2240,140,580,165,35,75,0.010869565217391304
-2078,13588,GO-20209024567,THEFT UNDER - BICYCLE,2020-09-25,2020,September,Friday,25,269,20,2020-09-25,2020,September,Friday,25,269,23,D32,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),Convenience Stores,Commercial,CA,TOPSTONE 105,RC,11,TAN,4000.0,STOLEN,2070,"{'type': 'Point', 'coordinates': (-79.40479343, 43.73553025)}",Bridle Path-Sunnybrook-York Mills,41,No Designation,9266,8713,0.063,3478,3241,1040,8.91,3220,2240,140,580,165,35,75,0.010869565217391304
-2079,13591,GO-20209025122,THEFT UNDER - BICYCLE,2020-09-30,2020,September,Wednesday,30,274,8,2020-10-01,2020,October,Thursday,1,275,11,D33,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),Schools During Un-Supervised Activity,Educational,OT,GHOST KATO,MT,10,RED,900.0,STOLEN,2071,"{'type': 'Point', 'coordinates': (-79.38180546, 43.73603449)}",Bridle Path-Sunnybrook-York Mills,41,No Designation,9266,8713,0.063,3478,3241,1040,8.91,3220,2240,140,580,165,35,75,0.010869565217391304
-2080,14745,GO-20179020548,THEFT UNDER - BICYCLE,2017-11-24,2017,November,Friday,24,328,11,2017-11-25,2017,November,Saturday,25,329,16,D32,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),Schools During Supervised Activity,Educational,UK,ROCKHOPPER COMP,MT,22,GRY,1300.0,STOLEN,2072,"{'type': 'Point', 'coordinates': (-79.3836391, 43.7269221)}",Bridle Path-Sunnybrook-York Mills,41,No Designation,9266,8713,0.063,3478,3241,1040,8.91,3220,2240,140,580,165,35,75,0.010869565217391304
-2081,14987,GO-20159011319,THEFT OVER,2015-12-27,2015,December,Sunday,27,361,18,2015-12-27,2015,December,Sunday,27,361,18,D32,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,21,,3500.0,STOLEN,2073,"{'type': 'Point', 'coordinates': (-79.40142642, 43.74437556)}",Bridle Path-Sunnybrook-York Mills,41,No Designation,9266,8713,0.063,3478,3241,1040,8.91,3220,2240,140,580,165,35,75,0.010869565217391304
-2082,14988,GO-20159011319,THEFT OVER,2015-12-27,2015,December,Sunday,27,361,18,2015-12-27,2015,December,Sunday,27,361,18,D32,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,21,BLK,5000.0,STOLEN,2074,"{'type': 'Point', 'coordinates': (-79.40142642, 43.74437556)}",Bridle Path-Sunnybrook-York Mills,41,No Designation,9266,8713,0.063,3478,3241,1040,8.91,3220,2240,140,580,165,35,75,0.010869565217391304
-2083,18056,GO-20161848326,THEFT UNDER - BICYCLE,2016-10-15,2016,October,Saturday,15,289,18,2016-10-17,2016,October,Monday,17,291,16,D32,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Single Home, House (Attach Garage, Cottage, Mobile)",House,INFINITY,,OT,21,GRNBLK,299.0,STOLEN,2075,"{'type': 'Point', 'coordinates': (-79.39600441, 43.74449319)}",Bridle Path-Sunnybrook-York Mills,41,No Designation,9266,8713,0.063,3478,3241,1040,8.91,3220,2240,140,580,165,35,75,0.010869565217391304
-2084,18847,GO-20142542263,B&E,2014-07-21,2014,July,Monday,21,202,14,2014-07-21,2014,July,Monday,21,202,15,D53,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,,MT,30,GRY,,STOLEN,2076,"{'type': 'Point', 'coordinates': (-79.38184519, 43.7274923)}",Bridle Path-Sunnybrook-York Mills,41,No Designation,9266,8713,0.063,3478,3241,1040,8.91,3220,2240,140,580,165,35,75,0.010869565217391304
-2085,18947,GO-20151754296,B&E,2015-09-20,2015,September,Sunday,20,263,6,2015-10-11,2015,October,Sunday,11,284,12,D53,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,,FO,6,,,STOLEN,2077,"{'type': 'Point', 'coordinates': (-79.38208388, 43.72516552)}",Bridle Path-Sunnybrook-York Mills,41,No Designation,9266,8713,0.063,3478,3241,1040,8.91,3220,2240,140,580,165,35,75,0.010869565217391304
-2086,18965,GO-20169003367,THEFT UNDER - BICYCLE,2016-04-13,2016,April,Wednesday,13,104,11,2016-04-13,2016,April,Wednesday,13,104,15,D53,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GT,SO-CAL,MT,21,BLK,2200.0,STOLEN,2078,"{'type': 'Point', 'coordinates': (-79.38227044, 43.71291678)}",Bridle Path-Sunnybrook-York Mills,41,No Designation,9266,8713,0.063,3478,3241,1040,8.91,3220,2240,140,580,165,35,75,0.010869565217391304
-2087,2123,GO-2018576924,INCIDENT,2018-03-30,2018,March,Friday,30,89,10,2018-03-31,2018,March,Saturday,31,90,15,D33,Toronto,42,Banbury-Don Mills (42),"Apartment (Rooming House, Condo)",Apartment,GIANT,CYPRUS DX,OT,10,SIL,450.0,STOLEN,2094,"{'type': 'Point', 'coordinates': (-79.35017297, 43.73626166)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2088,19100,GO-20179011951,THEFT UNDER - BICYCLE,2017-08-08,2017,August,Tuesday,8,220,9,2017-08-08,2017,August,Tuesday,8,220,19,D53,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,NO,VOLANTE,RG,27,GRY,1100.0,STOLEN,2079,"{'type': 'Point', 'coordinates': (-79.37788316000001, 43.72173341)}",Bridle Path-Sunnybrook-York Mills,41,No Designation,9266,8713,0.063,3478,3241,1040,8.91,3220,2240,140,580,165,35,75,0.010869565217391304
-2089,19685,GO-20159003431,THEFT UNDER,2015-06-03,2015,June,Wednesday,3,154,14,2015-06-03,2015,June,Wednesday,3,154,16,D53,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Hospital / Institutions / Medical Facilities (Clinic, Dentist, Morgue)",Other,UK,STUMPJUMPER,MT,22,,2000.0,STOLEN,2080,"{'type': 'Point', 'coordinates': (-79.37788316000001, 43.72173341)}",Bridle Path-Sunnybrook-York Mills,41,No Designation,9266,8713,0.063,3478,3241,1040,8.91,3220,2240,140,580,165,35,75,0.010869565217391304
-2090,3211,GO-20189026553,THEFT UNDER - BICYCLE,2018-08-15,2018,August,Wednesday,15,227,15,2018-08-15,2018,August,Wednesday,15,227,19,D33,Toronto,45,Parkwoods-Donalda (45),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,MONTREAL,RG,7,BLK,700.0,STOLEN,2081,"{'type': 'Point', 'coordinates': (-79.34131995, 43.75705337)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285
-2091,19758,GO-2016723117,THEFT UNDER - BICYCLE,2016-04-25,2016,April,Monday,25,116,16,2016-04-28,2016,April,Thursday,28,119,8,D53,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GIANT SEEK 3,,RG,1,BLK,700.0,STOLEN,2082,"{'type': 'Point', 'coordinates': (-79.38494205, 43.72455352)}",Bridle Path-Sunnybrook-York Mills,41,No Designation,9266,8713,0.063,3478,3241,1040,8.91,3220,2240,140,580,165,35,75,0.010869565217391304
-2092,20080,GO-20199037144,THEFT UNDER - BICYCLE,2019-10-30,2019,October,Wednesday,30,303,14,2019-11-11,2019,November,Monday,11,315,12,D32,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),Schools During Supervised Activity,Educational,UK,,MT,21,BLK,1200.0,STOLEN,2083,"{'type': 'Point', 'coordinates': (-79.3836391, 43.7269221)}",Bridle Path-Sunnybrook-York Mills,41,No Designation,9266,8713,0.063,3478,3241,1040,8.91,3220,2240,140,580,165,35,75,0.010869565217391304
-2093,23070,GO-20179017468,THEFT UNDER - BICYCLE,2017-10-16,2017,October,Monday,16,289,12,2017-10-18,2017,October,Wednesday,18,291,1,D52,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,"TRAVELLER 26""""",RG,25,WHI,190.0,STOLEN,2084,"{'type': 'Point', 'coordinates': (-79.38294964, 43.72655105)}",Bridle Path-Sunnybrook-York Mills,41,No Designation,9266,8713,0.063,3478,3241,1040,8.91,3220,2240,140,580,165,35,75,0.010869565217391304
-2094,23560,GO-20189022977,THEFT UNDER,2018-06-04,2018,June,Monday,4,155,12,2018-07-18,2018,July,Wednesday,18,199,20,D33,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),Schools During Supervised Activity,Educational,TR,MARLIN 5,MT,7,RED,800.0,STOLEN,2085,"{'type': 'Point', 'coordinates': (-79.38180546, 43.73603449)}",Bridle Path-Sunnybrook-York Mills,41,No Designation,9266,8713,0.063,3478,3241,1040,8.91,3220,2240,140,580,165,35,75,0.010869565217391304
-2095,24503,GO-20152226004,THEFT UNDER,2015-12-29,2015,December,Tuesday,29,363,0,2015-12-29,2015,December,Tuesday,29,363,10,D32,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GIANT,MOMENTUM STREET,OT,1,,,STOLEN,2086,"{'type': 'Point', 'coordinates': (-79.4041779, 43.7438337)}",Bridle Path-Sunnybrook-York Mills,41,No Designation,9266,8713,0.063,3478,3241,1040,8.91,3220,2240,140,580,165,35,75,0.010869565217391304
-2096,25434,GO-20179005122,THEFT UNDER - BICYCLE,2017-04-22,2017,April,Saturday,22,112,20,2017-04-23,2017,April,Sunday,23,113,13,D53,Toronto,41,Bridle Path-Sunnybrook-York Mills (41),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CA,QUICK HYBRID BI,RG,8,BLK,500.0,STOLEN,2087,"{'type': 'Point', 'coordinates': (-79.38187743, 43.72413718)}",Bridle Path-Sunnybrook-York Mills,41,No Designation,9266,8713,0.063,3478,3241,1040,8.91,3220,2240,140,580,165,35,75,0.010869565217391304
-2097,272,GO-20179005169,THEFT UNDER - BICYCLE,2017-04-23,2017,April,Sunday,23,113,23,2017-04-24,2017,April,Monday,24,114,11,D33,Toronto,42,Banbury-Don Mills (42),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SU,,TO,10,RED,0.0,STOLEN,2088,"{'type': 'Point', 'coordinates': (-79.35738177, 43.73511836)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2098,273,GO-20179005169,THEFT UNDER - BICYCLE,2017-04-23,2017,April,Sunday,23,113,23,2017-04-24,2017,April,Monday,24,114,11,D33,Toronto,42,Banbury-Don Mills (42),"Private Property Structure (Pool, Shed, Detached Garage)",Other,IN,,MT,21,YEL,200.0,STOLEN,2089,"{'type': 'Point', 'coordinates': (-79.35738177, 43.73511836)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2099,1815,GO-20179019159,THEFT UNDER,2017-11-05,2017,November,Sunday,5,309,6,2017-11-08,2017,November,Wednesday,8,312,13,D33,Toronto,42,Banbury-Don Mills (42),Convenience Stores,Commercial,GI,SEDONA,OT,21,BLK,200.0,STOLEN,2090,"{'type': 'Point', 'coordinates': (-79.34436493, 43.73428467)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2100,10133,GO-20151285750,THEFT UNDER,2015-07-27,2015,July,Monday,27,208,8,2015-07-27,2015,July,Monday,27,208,22,D33,Toronto,42,Banbury-Don Mills (42),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DEVINCI,,OT,24,,1000.0,STOLEN,2091,"{'type': 'Point', 'coordinates': (-79.34485315, 43.73618662)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2101,23316,GO-2020627873,THEFT UNDER,2020-03-09,2020,March,Monday,9,69,12,2020-03-30,2020,March,Monday,30,90,11,D32,Toronto,32,Englemount-Lawrence (32),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN,UNKNOWN,OT,10,RED,,STOLEN,2092,"{'type': 'Point', 'coordinates': (-79.44098195, 43.72012757)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278
-2102,23371,GO-20202290284,FRAUD OVER,2020-11-27,2020,November,Friday,27,332,0,2020-12-05,2020,December,Saturday,5,340,14,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,ZZZ,X2751716,EL,3,,2599.0,STOLEN,2093,"{'type': 'Point', 'coordinates': (-79.4173091, 43.78706936)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2103,2538,GO-20189018367,THEFT UNDER - BICYCLE,2018-06-10,2018,June,Sunday,10,161,22,2018-06-12,2018,June,Tuesday,12,163,12,D33,Toronto,42,Banbury-Don Mills (42),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,CYPRESS,RG,27,GRY,800.0,STOLEN,2095,"{'type': 'Point', 'coordinates': (-79.33795965, 43.73134957)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2104,2737,GO-20189020978,THEFT FROM MOTOR VEHICLE UNDER,2018-07-03,2018,July,Tuesday,3,184,0,2018-07-03,2018,July,Tuesday,3,184,8,D33,Toronto,42,Banbury-Don Mills (42),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,,RC,9,,1000.0,STOLEN,2096,"{'type': 'Point', 'coordinates': (-79.33613919, 43.73423069)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2105,6469,GO-20209016149,THEFT UNDER - BICYCLE,2020-06-23,2020,June,Tuesday,23,175,20,2020-06-25,2020,June,Thursday,25,177,15,D33,Toronto,42,Banbury-Don Mills (42),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,,RG,6,BLK,120.0,STOLEN,2097,"{'type': 'Point', 'coordinates': (-79.34391067, 43.72891907)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2106,8230,GO-20149004368,THEFT UNDER,2014-06-21,2014,June,Saturday,21,172,6,2014-06-23,2014,June,Monday,23,174,21,D33,Toronto,42,Banbury-Don Mills (42),"Apartment (Rooming House, Condo)",Apartment,UK,DAKAR XC SPORT,MT,27,BLK,1599.0,STOLEN,2098,"{'type': 'Point', 'coordinates': (-79.32752394, 43.72664463)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2107,8322,GO-20142430166,THEFT UNDER,2014-07-01,2014,July,Tuesday,1,182,16,2014-07-04,2014,July,Friday,4,185,16,D33,Toronto,42,Banbury-Don Mills (42),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,MT,24,BLKWHI,,STOLEN,2099,"{'type': 'Point', 'coordinates': (-79.34485315, 43.73618662)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2108,9320,GO-2015433944,THEFT UNDER,2015-03-11,2015,March,Wednesday,11,70,7,2015-03-14,2015,March,Saturday,14,73,12,D33,Toronto,42,Banbury-Don Mills (42),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,,MT,20,DBL,500.0,STOLEN,2100,"{'type': 'Point', 'coordinates': (-79.34054293, 43.74124779)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2109,9770,GO-20159003501,THEFT UNDER,2015-06-06,2015,June,Saturday,6,157,23,2015-06-10,2015,June,Wednesday,10,161,14,D33,Toronto,42,Banbury-Don Mills (42),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,SUB40,MT,18,TRQ,650.0,STOLEN,2101,"{'type': 'Point', 'coordinates': (-79.34151819, 43.74138065)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2110,9812,GO-20151003032,THEFT UNDER,2015-06-15,2015,June,Monday,15,166,9,2015-06-15,2015,June,Monday,15,166,10,D33,Toronto,42,Banbury-Don Mills (42),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,PHONEIX,UNK,OT,21,SIL,100.0,STOLEN,2102,"{'type': 'Point', 'coordinates': (-79.34123261, 43.7388162)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2111,16857,GO-20202196134,THEFT UNDER,2020-11-16,2020,November,Monday,16,321,14,2020-11-19,2020,November,Thursday,19,324,18,D32,Toronto,37,Willowdale West (37),"Apartment (Rooming House, Condo)",Apartment,MERCANE,WIDE WHEEL PRO,SC,1,BLK,1700.0,STOLEN,2103,"{'type': 'Point', 'coordinates': (-79.41306905, 43.77013909)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623
-2112,10288,GO-20159005940,THEFT UNDER,2015-08-16,2015,August,Sunday,16,228,13,2015-08-17,2015,August,Monday,17,229,18,D33,Toronto,42,Banbury-Don Mills (42),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,CODA SPORT,RG,24,BLU,600.0,STOLEN,2104,"{'type': 'Point', 'coordinates': (-79.35062913, 43.73067321)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2113,10764,GO-20151952937,THEFT FROM MOTOR VEHICLE UNDER,2015-11-13,2015,November,Friday,13,317,22,2015-11-13,2015,November,Friday,13,317,22,D33,Toronto,42,Banbury-Don Mills (42),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,ROCK HOPPER,OT,12,CPR,1000.0,STOLEN,2105,"{'type': 'Point', 'coordinates': (-79.33989307, 43.73379655)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2114,10803,GO-20159010051,THEFT UNDER,2015-11-21,2015,November,Saturday,21,325,23,2015-11-22,2015,November,Sunday,22,326,18,D33,Toronto,42,Banbury-Don Mills (42),"Apartment (Rooming House, Condo)",Apartment,NO,WOLVERINE,MT,24,BLK,700.0,STOLEN,2106,"{'type': 'Point', 'coordinates': (-79.33989307, 43.73379655)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2115,10805,GO-20151999518,THEFT UNDER,2015-11-19,2015,November,Thursday,19,323,23,2015-11-21,2015,November,Saturday,21,325,17,D33,Toronto,42,Banbury-Don Mills (42),"Private Property Structure (Pool, Shed, Detached Garage)",Other,NORCO,,MT,21,BLK,1300.0,STOLEN,2107,"{'type': 'Point', 'coordinates': (-79.33685043, 43.73680876)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2116,10938,GO-20169000717,THEFT UNDER,2016-01-16,2016,January,Saturday,16,16,11,2016-01-21,2016,January,Thursday,21,21,11,D33,Toronto,42,Banbury-Don Mills (42),"Apartment (Rooming House, Condo)",Apartment,OT,88CT,MT,21,RED,120.0,STOLEN,2108,"{'type': 'Point', 'coordinates': (-79.32775262, 43.72734678)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2117,11395,GO-20169005048,THEFT UNDER - BICYCLE,2016-05-15,2016,May,Sunday,15,136,15,2016-05-28,2016,May,Saturday,28,149,11,D33,Toronto,42,Banbury-Don Mills (42),"Apartment (Rooming House, Condo)",Apartment,NO,KOKANEE,MT,21,BLK,300.0,STOLEN,2109,"{'type': 'Point', 'coordinates': (-79.32752394, 43.72664463)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2118,13548,GO-20201235729,THEFT UNDER - BICYCLE,2020-06-30,2020,June,Tuesday,30,182,20,2020-07-05,2020,July,Sunday,5,187,9,D33,Toronto,42,Banbury-Don Mills (42),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,NORTHROP,MT,10,BLK,539.0,STOLEN,2110,"{'type': 'Point', 'coordinates': (-79.33957284, 43.72302474)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2119,13699,GO-20179011809,THEFT UNDER - BICYCLE,2017-08-05,2017,August,Saturday,5,217,18,2017-08-06,2017,August,Sunday,6,218,16,D33,Toronto,42,Banbury-Don Mills (42),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,CAMELEON,MT,27,SIL,400.0,STOLEN,2111,"{'type': 'Point', 'coordinates': (-79.34620861, 43.74783776)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2120,13719,GO-20179016336,THEFT UNDER - BICYCLE,2017-09-25,2017,September,Monday,25,268,17,2017-10-02,2017,October,Monday,2,275,22,D33,Toronto,42,Banbury-Don Mills (42),"Apartment (Rooming House, Condo)",Apartment,CC,ECCO,MT,21,GRN,150.0,STOLEN,2112,"{'type': 'Point', 'coordinates': (-79.34093695, 43.73769576)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2121,13742,GO-2018420034,B&E,2018-03-07,2018,March,Wednesday,7,66,5,2018-03-07,2018,March,Wednesday,7,66,7,D33,Toronto,42,Banbury-Don Mills (42),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN,,RG,10,,,STOLEN,2113,"{'type': 'Point', 'coordinates': (-79.34333732000002, 43.72765043)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2122,13756,GO-20189015993,THEFT UNDER - BICYCLE,2018-05-23,2018,May,Wednesday,23,143,16,2018-05-23,2018,May,Wednesday,23,143,20,D33,Toronto,42,Banbury-Don Mills (42),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,,MT,21,RED,300.0,STOLEN,2114,"{'type': 'Point', 'coordinates': (-79.34485315, 43.73618662)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2123,13763,GO-20189017986,THEFT UNDER - BICYCLE,2018-06-08,2018,June,Friday,8,159,22,2018-06-09,2018,June,Saturday,9,160,11,D33,Toronto,42,Banbury-Don Mills (42),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CC,,MT,7,BLK,350.0,STOLEN,2115,"{'type': 'Point', 'coordinates': (-79.3367736, 43.73097938)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2124,13878,GO-20159003594,THEFT UNDER,2015-06-13,2015,June,Saturday,13,164,19,2015-06-13,2015,June,Saturday,13,164,20,D33,Toronto,42,Banbury-Don Mills (42),Bar / Restaurant,Commercial,UK,X CALIBER 4 14S,MT,24,WHI,,STOLEN,2116,"{'type': 'Point', 'coordinates': (-79.34333732000002, 43.72765043)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2125,13913,GO-20151647131,THEFT UNDER,2015-09-23,2015,September,Wednesday,23,266,11,2015-09-23,2015,September,Wednesday,23,266,18,D33,Toronto,42,Banbury-Don Mills (42),Schools During Un-Supervised Activity,Educational,GIANT,ESCAPE 2,MT,0,SIL,500.0,STOLEN,2117,"{'type': 'Point', 'coordinates': (-79.33920223, 43.73196756)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2126,13914,GO-20151647131,THEFT UNDER,2015-09-23,2015,September,Wednesday,23,266,11,2015-09-23,2015,September,Wednesday,23,266,18,D33,Toronto,42,Banbury-Don Mills (42),Schools During Un-Supervised Activity,Educational,GIANT,CYPRESS,MT,0,TAN,400.0,STOLEN,2118,"{'type': 'Point', 'coordinates': (-79.33920223, 43.73196756)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2127,16771,GO-20199018939,THEFT UNDER,2019-05-03,2019,May,Friday,3,123,9,2019-06-17,2019,June,Monday,17,168,14,D33,Toronto,42,Banbury-Don Mills (42),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,ESCAPE 2,RG,24,GRY,420.0,STOLEN,2119,"{'type': 'Point', 'coordinates': (-79.32835907, 43.72935527)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2128,16829,GO-20209018629,THEFT UNDER - BICYCLE,2020-07-26,2020,July,Sunday,26,208,20,2020-07-26,2020,July,Sunday,26,208,22,D33,Toronto,42,Banbury-Don Mills (42),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,OSLO,RC,27,DBL,900.0,STOLEN,2120,"{'type': 'Point', 'coordinates': (-79.33957284, 43.72302474)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2129,17078,GO-20189024661,THEFT UNDER,2018-07-28,2018,July,Saturday,28,209,18,2018-07-31,2018,July,Tuesday,31,212,13,D33,Toronto,42,Banbury-Don Mills (42),"Apartment (Rooming House, Condo)",Apartment,SC,,RG,7,PLE,400.0,STOLEN,2121,"{'type': 'Point', 'coordinates': (-79.32835907, 43.72935527)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2130,17079,GO-20189024661,THEFT UNDER,2018-07-28,2018,July,Saturday,28,209,18,2018-07-31,2018,July,Tuesday,31,212,13,D33,Toronto,42,Banbury-Don Mills (42),"Apartment (Rooming House, Condo)",Apartment,TR,,MT,7,ONG,600.0,STOLEN,2122,"{'type': 'Point', 'coordinates': (-79.32835907, 43.72935527)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2131,17080,GO-20189024661,THEFT UNDER,2018-07-28,2018,July,Saturday,28,209,18,2018-07-31,2018,July,Tuesday,31,212,13,D33,Toronto,42,Banbury-Don Mills (42),"Apartment (Rooming House, Condo)",Apartment,SU,,RG,7,ONG,140.0,STOLEN,2123,"{'type': 'Point', 'coordinates': (-79.32835907, 43.72935527)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2132,17171,GO-20159007024,THEFT UNDER,2015-09-11,2015,September,Friday,11,254,9,2015-09-11,2015,September,Friday,11,254,11,D33,Toronto,42,Banbury-Don Mills (42),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,DRIVE RC,MT,27,BLK,982.0,STOLEN,2124,"{'type': 'Point', 'coordinates': (-79.33447312, 43.73088763)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2133,20007,GO-20189043317,THEFT UNDER - BICYCLE,2018-12-25,2018,December,Tuesday,25,359,22,2018-12-26,2018,December,Wednesday,26,360,14,D33,Toronto,42,Banbury-Don Mills (42),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,MARLIN 6,MT,8,BLK,640.0,STOLEN,2125,"{'type': 'Point', 'coordinates': (-79.36851318, 43.74284851)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2134,23317,GO-2020627873,THEFT UNDER,2020-03-09,2020,March,Monday,9,69,12,2020-03-30,2020,March,Monday,30,90,11,D32,Toronto,32,Englemount-Lawrence (32),"Apartment (Rooming House, Condo)",Apartment,OTHER,UNKNOWN,MT,10,LGR,,STOLEN,2126,"{'type': 'Point', 'coordinates': (-79.44098195, 43.72012757)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278
-2135,17727,GO-20179014818,THEFT UNDER - BICYCLE,2017-09-14,2017,September,Thursday,14,257,11,2017-09-15,2017,September,Friday,15,258,10,D32,Toronto,37,Willowdale West (37),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,OT,5,RED,500.0,STOLEN,2127,"{'type': 'Point', 'coordinates': (-79.43126911, 43.77286746)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623
-2136,106,GO-20179002391,THEFT UNDER - BICYCLE,2016-08-28,2016,August,Sunday,28,241,9,2017-02-23,2017,February,Thursday,23,54,14,D32,Toronto,39,Bedford Park-Nortown (39),"Apartment (Rooming House, Condo)",Apartment,TR,SHIFT 1,MT,8,GRY,450.0,STOLEN,2128,"{'type': 'Point', 'coordinates': (-79.41862483, 43.72988724)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041
-2137,20068,GO-20199029101,THEFT UNDER - BICYCLE,2019-09-01,2019,September,Sunday,1,244,15,2019-09-07,2019,September,Saturday,7,250,15,D33,Toronto,42,Banbury-Don Mills (42),"Single Home, House (Attach Garage, Cottage, Mobile)",House,GI,,MT,21,BLK,800.0,STOLEN,2129,"{'type': 'Point', 'coordinates': (-79.33721736, 43.73256809)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2138,20257,GO-20171851002,THEFT UNDER - BICYCLE,2017-10-12,2017,October,Thursday,12,285,10,2017-10-12,2017,October,Thursday,12,285,18,D33,Toronto,42,Banbury-Don Mills (42),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,,RG,12,BLKONG,1600.0,RECOVERED,2130,"{'type': 'Point', 'coordinates': (-79.33721736, 43.73256809)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2139,20258,GO-20171851002,THEFT UNDER - BICYCLE,2017-10-12,2017,October,Thursday,12,285,10,2017-10-12,2017,October,Thursday,12,285,18,D33,Toronto,42,Banbury-Don Mills (42),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TREK,,MT,12,BLK,400.0,STOLEN,2131,"{'type': 'Point', 'coordinates': (-79.33721736, 43.73256809)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2140,20358,GO-20189027887,THEFT UNDER - BICYCLE,2018-08-25,2018,August,Saturday,25,237,5,2018-08-25,2018,August,Saturday,25,237,10,D33,Toronto,42,Banbury-Don Mills (42),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,MT,21,BLK,300.0,STOLEN,2132,"{'type': 'Point', 'coordinates': (-79.36529062, 43.74973601)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2141,24752,GO-20151550703,THEFT UNDER,2015-09-02,2015,September,Wednesday,2,245,13,2015-09-08,2015,September,Tuesday,8,251,13,D13,Toronto,31,Yorkdale-Glen Park (31),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,DORRELL,RC,10,WHI,500.0,STOLEN,2133,"{'type': 'Point', 'coordinates': (-79.45398417, 43.71081612)}",Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682
-2142,20359,GO-20189027887,THEFT UNDER - BICYCLE,2018-08-25,2018,August,Saturday,25,237,5,2018-08-25,2018,August,Saturday,25,237,10,D33,Toronto,42,Banbury-Don Mills (42),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,HARDROCK,MT,21,LGR,1500.0,STOLEN,2134,"{'type': 'Point', 'coordinates': (-79.36529062, 43.74973601)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2143,20478,GO-2016481314,B&E,2016-03-19,2016,March,Saturday,19,79,17,2016-03-20,2016,March,Sunday,20,80,18,D33,Toronto,42,Banbury-Don Mills (42),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,,MT,0,WHI,150.0,STOLEN,2135,"{'type': 'Point', 'coordinates': (-79.35143988, 43.73729988)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2144,20865,GO-20142247902,PROPERTY - FOUND,2014-06-08,2014,June,Sunday,8,159,15,2014-06-08,2014,June,Sunday,8,159,15,D33,Toronto,42,Banbury-Don Mills (42),"Open Areas (Lakes, Parks, Rivers)",Outside,LOUIS GARNEAU,HARMONY,RG,21,WHI,1000.0,UNKNOWN,2136,"{'type': 'Point', 'coordinates': (-79.34952647, 43.75179733)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2145,23318,GO-20209010808,THEFT UNDER - BICYCLE,2020-04-09,2020,April,Thursday,9,100,18,2020-04-09,2020,April,Thursday,9,100,19,D33,Toronto,42,Banbury-Don Mills (42),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,RG,7,GRY,0.0,STOLEN,2137,"{'type': 'Point', 'coordinates': (-79.34672609, 43.73706959)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2146,23366,GO-20209028526,THEFT UNDER - BICYCLE,2020-11-02,2020,November,Monday,2,307,19,2020-11-03,2020,November,Tuesday,3,308,19,D33,Toronto,42,Banbury-Don Mills (42),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,TO,27,BLK,1500.0,STOLEN,2138,"{'type': 'Point', 'coordinates': (-79.34668507, 43.73301373)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2147,23404,GO-20179005338,THEFT UNDER - BICYCLE,2017-04-26,2017,April,Wednesday,26,116,21,2017-04-26,2017,April,Wednesday,26,116,21,D33,Toronto,42,Banbury-Don Mills (42),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,ROCKHOPPER,MT,21,BLK,500.0,STOLEN,2139,"{'type': 'Point', 'coordinates': (-79.33858809, 43.74083922)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2148,23477,GO-20171759832,THEFT UNDER - BICYCLE,2017-09-20,2017,September,Wednesday,20,263,12,2017-09-28,2017,September,Thursday,28,271,9,D33,Toronto,42,Banbury-Don Mills (42),Schools During Supervised Activity,Educational,CCM,STATIC,MT,21,BLK,300.0,STOLEN,2140,"{'type': 'Point', 'coordinates': (-79.3368089, 43.73623428)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2149,23478,GO-20171775767,THEFT UNDER - BICYCLE,2017-09-27,2017,September,Wednesday,27,270,12,2017-09-30,2017,September,Saturday,30,273,18,D33,Toronto,42,Banbury-Don Mills (42),Schools During Supervised Activity,Educational,CCM,SL 2.0,MT,21,BLK,300.0,STOLEN,2141,"{'type': 'Point', 'coordinates': (-79.3368089, 43.73623428)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2150,23555,GO-20181288932,THEFT UNDER - BICYCLE,2018-07-13,2018,July,Friday,13,194,20,2018-07-15,2018,July,Sunday,15,196,8,D33,Toronto,42,Banbury-Don Mills (42),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KONA\,,MT,24,BLU,2500.0,STOLEN,2142,"{'type': 'Point', 'coordinates': (-79.3531227, 43.7300687)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2151,23768,GO-20169013214,THEFT UNDER - BICYCLE,2016-11-09,2016,November,Wednesday,9,314,13,2016-11-10,2016,November,Thursday,10,315,14,D33,Toronto,42,Banbury-Don Mills (42),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,5,BLU,1200.0,STOLEN,2143,"{'type': 'Point', 'coordinates': (-79.35622587, 43.74163771)}",Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431
-2152,3370,GO-20181594781,THEFT OF EBIKE UNDER $5000,2018-08-28,2018,August,Tuesday,28,240,15,2018-08-28,2018,August,Tuesday,28,240,22,D33,Toronto,43,Victoria Village (43),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,DAYMAK,,EL,1,BLK,2000.0,STOLEN,2144,"{'type': 'Point', 'coordinates': (-79.30368199, 43.72469339)}",Victoria Village,43,NIA,17510,17182,0.019,7562,7412,3710,4.72,7330,3650,320,3025,260,20,55,0.002728512960436562
-2153,3382,GO-20189028931,THEFT OF EBIKE UNDER $5000,2018-09-01,2018,September,Saturday,1,244,23,2018-09-03,2018,September,Monday,3,246,20,D33,Toronto,43,Victoria Village (43),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,EM1 SPECIAL EDI,SC,3,BLU,3050.0,STOLEN,2145,"{'type': 'Point', 'coordinates': (-79.30368199, 43.72469339)}",Victoria Village,43,NIA,17510,17182,0.019,7562,7412,3710,4.72,7330,3650,320,3025,260,20,55,0.002728512960436562
-2154,4727,GO-20199021664,THEFT UNDER - BICYCLE,2019-07-09,2019,July,Tuesday,9,190,14,2019-07-09,2019,July,Tuesday,9,190,22,D32,Toronto,36,Newtonbrook West (36),Ttc Subway Station,Transit,UK,GREY MOUNTAIN B,MT,21,GRY,100.0,STOLEN,2146,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2155,7595,GO-20202096038,B&E,2020-11-01,2020,November,Sunday,1,306,17,2020-11-04,2020,November,Wednesday,4,309,21,D33,Toronto,43,Victoria Village (43),"Apartment (Rooming House, Condo)",Apartment,GIANT,,RG,5,GRNBLK,700.0,STOLEN,2147,"{'type': 'Point', 'coordinates': (-79.31825386, 43.72613519)}",Victoria Village,43,NIA,17510,17182,0.019,7562,7412,3710,4.72,7330,3650,320,3025,260,20,55,0.002728512960436562
-2156,7804,GO-20141819819,THEFT UNDER,2014-04-02,2014,April,Wednesday,2,92,16,2014-04-03,2014,April,Thursday,3,93,11,D54,Toronto,43,Victoria Village (43),"Apartment (Rooming House, Condo)",Apartment,OTHER,UNKNOWN,SC,0,,4000.0,RECOVERED,2148,"{'type': 'Point', 'coordinates': (-79.30361996, 43.72218643)}",Victoria Village,43,NIA,17510,17182,0.019,7562,7412,3710,4.72,7330,3650,320,3025,260,20,55,0.002728512960436562
-2157,8577,GO-20149005578,THEFT UNDER,2014-08-02,2014,August,Saturday,2,214,19,2014-08-03,2014,August,Sunday,3,215,17,D33,Toronto,43,Victoria Village (43),Convenience Stores,Commercial,GT,,MT,30,BLK,400.0,STOLEN,2149,"{'type': 'Point', 'coordinates': (-79.31281898, 43.72684653)}",Victoria Village,43,NIA,17510,17182,0.019,7562,7412,3710,4.72,7330,3650,320,3025,260,20,55,0.002728512960436562
-2158,8593,GO-20142669648,B&E,2014-08-04,2014,August,Monday,4,216,21,2014-08-09,2014,August,Saturday,9,221,19,D54,Toronto,43,Victoria Village (43),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,,MT,21,BLU,250.0,STOLEN,2150,"{'type': 'Point', 'coordinates': (-79.30304532, 43.72308557)}",Victoria Village,43,NIA,17510,17182,0.019,7562,7412,3710,4.72,7330,3650,320,3025,260,20,55,0.002728512960436562
-2159,10206,GO-20151345354,THEFT UNDER,2015-08-06,2015,August,Thursday,6,218,9,2015-08-06,2015,August,Thursday,6,218,11,D54,Toronto,43,Victoria Village (43),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,1700 SSDT,SC,1,RED,3500.0,STOLEN,2151,"{'type': 'Point', 'coordinates': (-79.30497514, 43.72266132)}",Victoria Village,43,NIA,17510,17182,0.019,7562,7412,3710,4.72,7330,3650,320,3025,260,20,55,0.002728512960436562
-2160,10356,GO-20159006433,THEFT UNDER,2015-08-06,2015,August,Thursday,6,218,10,2015-08-27,2015,August,Thursday,27,239,15,D33,Toronto,43,Victoria Village (43),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,LIV,TO,15,GRY,670.0,STOLEN,2152,"{'type': 'Point', 'coordinates': (-79.31281898, 43.72684653)}",Victoria Village,43,NIA,17510,17182,0.019,7562,7412,3710,4.72,7330,3650,320,3025,260,20,55,0.002728512960436562
-2161,13904,GO-20159006433,THEFT UNDER,2015-08-06,2015,August,Thursday,6,218,10,2015-08-27,2015,August,Thursday,27,239,15,D33,Toronto,43,Victoria Village (43),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,LIV ALIGHT,TO,15,,670.0,STOLEN,2153,"{'type': 'Point', 'coordinates': (-79.31281898, 43.72684653)}",Victoria Village,43,NIA,17510,17182,0.019,7562,7412,3710,4.72,7330,3650,320,3025,260,20,55,0.002728512960436562
-2162,14027,GO-20161872986,THEFT UNDER - BICYCLE,2016-10-20,2016,October,Thursday,20,294,17,2016-10-21,2016,October,Friday,21,295,13,D33,Toronto,43,Victoria Village (43),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CANNONDALE,CONTRO 3,OT,10,BRN,1700.0,STOLEN,2154,"{'type': 'Point', 'coordinates': (-79.31281898, 43.72684653)}",Victoria Village,43,NIA,17510,17182,0.019,7562,7412,3710,4.72,7330,3650,320,3025,260,20,55,0.002728512960436562
-2163,17038,GO-20189016641,THEFT UNDER - BICYCLE,2018-05-24,2018,May,Thursday,24,144,12,2018-05-29,2018,May,Tuesday,29,149,12,D33,Toronto,43,Victoria Village (43),"Apartment (Rooming House, Condo)",Apartment,GT,TRANSEO,OT,7,,700.0,STOLEN,2155,"{'type': 'Point', 'coordinates': (-79.30343034, 43.72668674)}",Victoria Village,43,NIA,17510,17182,0.019,7562,7412,3710,4.72,7330,3650,320,3025,260,20,55,0.002728512960436562
-2164,23471,GO-20179015207,THEFT UNDER - BICYCLE,2017-09-19,2017,September,Tuesday,19,262,9,2017-09-19,2017,September,Tuesday,19,262,18,D33,Toronto,43,Victoria Village (43),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,RA,BIG HORN,MT,18,BLU,100.0,STOLEN,2156,"{'type': 'Point', 'coordinates': (-79.32712061, 43.73592433)}",Victoria Village,43,NIA,17510,17182,0.019,7562,7412,3710,4.72,7330,3650,320,3025,260,20,55,0.002728512960436562
-2165,25623,GO-20199014917,THEFT UNDER,2019-05-08,2019,May,Wednesday,8,128,1,2019-05-13,2019,May,Monday,13,133,21,D54,Toronto,43,Victoria Village (43),"Apartment (Rooming House, Condo)",Apartment,OT,ST. TROPEZ,OT,24,BLK,0.0,STOLEN,2157,"{'type': 'Point', 'coordinates': (-79.30442806, 43.71890685)}",Victoria Village,43,NIA,17510,17182,0.019,7562,7412,3710,4.72,7330,3650,320,3025,260,20,55,0.002728512960436562
-2166,791,GO-20179009574,THEFT UNDER - BICYCLE,2017-07-02,2017,July,Sunday,2,183,18,2017-07-06,2017,July,Thursday,6,187,10,D54,Toronto,44,Flemingdon Park (44),"Apartment (Rooming House, Condo)",Apartment,GI,?105,RG,11,BLU,1600.0,STOLEN,2158,"{'type': 'Point', 'coordinates': (-79.32752394, 43.72664463)}",Flemingdon Park,44,NIA,21933,22168,-0.011000000000000001,7964,7830,9026,2.43,8380,3705,260,3860,405,50,90,0.0059665871121718375
-2167,7430,GO-20209025889,THEFT UNDER,2020-08-22,2020,August,Saturday,22,235,10,2020-10-09,2020,October,Friday,9,283,11,D54,Toronto,44,Flemingdon Park (44),"Apartment (Rooming House, Condo)",Apartment,GI,REVEL,OT,24,,800.0,STOLEN,2160,"{'type': 'Point', 'coordinates': (-79.33491684000002, 43.71873068)}",Flemingdon Park,44,NIA,21933,22168,-0.011000000000000001,7964,7830,9026,2.43,8380,3705,260,3860,405,50,90,0.0059665871121718375
-2168,7888,GO-20149003199,THEFT UNDER,2014-05-05,2014,May,Monday,5,125,3,2014-05-07,2014,May,Wednesday,7,127,9,D54,Toronto,44,Flemingdon Park (44),Schools During Un-Supervised Activity,Educational,SU,,MT,18,BLU,100.0,STOLEN,2161,"{'type': 'Point', 'coordinates': (-79.33435458, 43.70999672)}",Flemingdon Park,44,NIA,21933,22168,-0.011000000000000001,7964,7830,9026,2.43,8380,3705,260,3860,405,50,90,0.0059665871121718375
-2169,8303,GO-20142419099,THEFT UNDER,2014-07-02,2014,July,Wednesday,2,183,22,2014-07-03,2014,July,Thursday,3,184,4,D54,Toronto,44,Flemingdon Park (44),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SCHWINN,,MT,21,BLKWHI,1300.0,STOLEN,2162,"{'type': 'Point', 'coordinates': (-79.32457447, 43.71215256000001)}",Flemingdon Park,44,NIA,21933,22168,-0.011000000000000001,7964,7830,9026,2.43,8380,3705,260,3860,405,50,90,0.0059665871121718375
-2170,23372,GO-20202290284,FRAUD OVER,2020-11-27,2020,November,Friday,27,332,0,2020-12-05,2020,December,Saturday,5,340,14,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,ZZZ,H1,SC,3,,2547.0,STOLEN,2163,"{'type': 'Point', 'coordinates': (-79.4173091, 43.78706936)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2171,24320,GO-20189020179,THEFT UNDER - BICYCLE,2018-06-25,2018,June,Monday,25,176,11,2018-06-25,2018,June,Monday,25,176,23,D32,Toronto,34,Bathurst Manor (34),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,IN,,MT,18,LGR,500.0,STOLEN,2164,"{'type': 'Point', 'coordinates': (-79.46069903, 43.75388555)}",Bathurst Manor,34,No Designation,15873,15434,0.027999999999999997,6418,6089,3377,4.7,7360,3910,265,2870,215,15,90,0.0020380434782608695
-2172,8320,GO-20142461061,THEFT UNDER,2014-07-03,2014,July,Thursday,3,184,22,2014-07-09,2014,July,Wednesday,9,190,9,D54,Toronto,44,Flemingdon Park (44),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPORTEK,REBEL,MT,18,WHI,50.0,STOLEN,2165,"{'type': 'Point', 'coordinates': (-79.32457447, 43.71215256000001)}",Flemingdon Park,44,NIA,21933,22168,-0.011000000000000001,7964,7830,9026,2.43,8380,3705,260,3860,405,50,90,0.0059665871121718375
-2173,8325,GO-20149004648,THEFT UNDER,2014-07-02,2014,July,Wednesday,2,183,9,2014-07-03,2014,July,Thursday,3,184,8,D54,Toronto,44,Flemingdon Park (44),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,ULTRASHOCK,MT,18,RED,140.0,STOLEN,2166,"{'type': 'Point', 'coordinates': (-79.33033785, 43.71657543)}",Flemingdon Park,44,NIA,21933,22168,-0.011000000000000001,7964,7830,9026,2.43,8380,3705,260,3860,405,50,90,0.0059665871121718375
-2174,8360,GO-20142500876,THEFT OF MOTOR VEHICLE,2014-07-14,2014,July,Monday,14,195,20,2014-07-15,2014,July,Tuesday,15,196,10,D54,Toronto,44,Flemingdon Park (44),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,RG,1,WHIPNK,80.0,STOLEN,2167,"{'type': 'Point', 'coordinates': (-79.32804455, 43.715613530000006)}",Flemingdon Park,44,NIA,21933,22168,-0.011000000000000001,7964,7830,9026,2.43,8380,3705,260,3860,405,50,90,0.0059665871121718375
-2175,8765,GO-20149006375,THEFT UNDER,2014-06-21,2014,June,Saturday,21,172,12,2014-08-31,2014,August,Sunday,31,243,6,D54,Toronto,44,Flemingdon Park (44),"Apartment (Rooming House, Condo)",Apartment,IN,,RG,21,SIL,500.0,STOLEN,2168,"{'type': 'Point', 'coordinates': (-79.33727599, 43.71655374)}",Flemingdon Park,44,NIA,21933,22168,-0.011000000000000001,7964,7830,9026,2.43,8380,3705,260,3860,405,50,90,0.0059665871121718375
-2176,8836,GO-20142874194,THEFT UNDER,2014-08-29,2014,August,Friday,29,241,16,2014-09-09,2014,September,Tuesday,9,252,9,D54,Toronto,44,Flemingdon Park (44),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,TR,0,,1400.0,STOLEN,2169,"{'type': 'Point', 'coordinates': (-79.33414521, 43.71492666)}",Flemingdon Park,44,NIA,21933,22168,-0.011000000000000001,7964,7830,9026,2.43,8380,3705,260,3860,405,50,90,0.0059665871121718375
-2177,9662,GO-2015878849,THEFT UNDER,2015-05-26,2015,May,Tuesday,26,146,9,2015-05-26,2015,May,Tuesday,26,146,15,D54,Toronto,44,Flemingdon Park (44),Schools During Supervised Activity,Educational,CCM,STATIC,MT,7,BLKYEL,200.0,STOLEN,2170,"{'type': 'Point', 'coordinates': (-79.33435458, 43.70999672)}",Flemingdon Park,44,NIA,21933,22168,-0.011000000000000001,7964,7830,9026,2.43,8380,3705,260,3860,405,50,90,0.0059665871121718375
-2178,9866,GO-20151058849,THEFT UNDER,2015-06-23,2015,June,Tuesday,23,174,18,2015-06-23,2015,June,Tuesday,23,174,18,D54,Toronto,44,Flemingdon Park (44),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,FLASH,,RG,0,YELSIL,140.0,STOLEN,2171,"{'type': 'Point', 'coordinates': (-79.33136581, 43.718360610000005)}",Flemingdon Park,44,NIA,21933,22168,-0.011000000000000001,7964,7830,9026,2.43,8380,3705,260,3860,405,50,90,0.0059665871121718375
-2179,9974,GO-20159004343,THEFT UNDER,2015-07-05,2015,July,Sunday,5,186,12,2015-07-09,2015,July,Thursday,9,190,13,D54,Toronto,44,Flemingdon Park (44),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OT,,MT,5,BLU,150.0,STOLEN,2172,"{'type': 'Point', 'coordinates': (-79.33136581, 43.718360610000005)}",Flemingdon Park,44,NIA,21933,22168,-0.011000000000000001,7964,7830,9026,2.43,8380,3705,260,3860,405,50,90,0.0059665871121718375
-2180,10171,GO-20151341956,THEFT UNDER,2015-07-31,2015,July,Friday,31,212,18,2015-08-05,2015,August,Wednesday,5,217,20,D54,Toronto,44,Flemingdon Park (44),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UNKNOWN MAKE,,RG,5,WHI,100.0,STOLEN,2173,"{'type': 'Point', 'coordinates': (-79.33136581, 43.718360610000005)}",Flemingdon Park,44,NIA,21933,22168,-0.011000000000000001,7964,7830,9026,2.43,8380,3705,260,3860,405,50,90,0.0059665871121718375
-2181,10220,GO-20159005529,THEFT UNDER,2015-08-08,2015,August,Saturday,8,220,14,2015-08-09,2015,August,Sunday,9,221,10,D54,Toronto,44,Flemingdon Park (44),Unknown,Other,UK,,RG,21,BLK,0.0,STOLEN,2174,"{'type': 'Point', 'coordinates': (-79.33136581, 43.718360610000005)}",Flemingdon Park,44,NIA,21933,22168,-0.011000000000000001,7964,7830,9026,2.43,8380,3705,260,3860,405,50,90,0.0059665871121718375
-2182,10519,GO-20151643306,THEFT UNDER,2015-09-23,2015,September,Wednesday,23,266,6,2015-09-23,2015,September,Wednesday,23,266,7,D54,Toronto,44,Flemingdon Park (44),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECILAIZED,VITA ELITE,OT,27,SIL,200.0,STOLEN,2175,"{'type': 'Point', 'coordinates': (-79.33435458, 43.70999672)}",Flemingdon Park,44,NIA,21933,22168,-0.011000000000000001,7964,7830,9026,2.43,8380,3705,260,3860,405,50,90,0.0059665871121718375
-2183,10755,GO-20159009654,THEFT UNDER,2015-11-11,2015,November,Wednesday,11,315,0,2015-11-11,2015,November,Wednesday,11,315,22,D54,Toronto,44,Flemingdon Park (44),"Single Home, House (Attach Garage, Cottage, Mobile)",House,MA,MUIRWOODS,OT,8,BLK,900.0,STOLEN,2176,"{'type': 'Point', 'coordinates': (-79.33435458, 43.70999672)}",Flemingdon Park,44,NIA,21933,22168,-0.011000000000000001,7964,7830,9026,2.43,8380,3705,260,3860,405,50,90,0.0059665871121718375
-2184,11412,GO-2016944515,THEFT UNDER - BICYCLE,2016-05-31,2016,May,Tuesday,31,152,18,2016-05-31,2016,May,Tuesday,31,152,20,D54,Toronto,44,Flemingdon Park (44),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUPERCYCLE,MONTAGNE,MT,12,PLE,150.0,STOLEN,2177,"{'type': 'Point', 'coordinates': (-79.33727599, 43.71655374)}",Flemingdon Park,44,NIA,21933,22168,-0.011000000000000001,7964,7830,9026,2.43,8380,3705,260,3860,405,50,90,0.0059665871121718375
-2185,11522,GO-20169005749,THEFT UNDER - BICYCLE,2016-06-14,2016,June,Tuesday,14,166,1,2016-06-14,2016,June,Tuesday,14,166,9,D54,Toronto,44,Flemingdon Park (44),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,CROSSROAD,OT,20,GRN,500.0,STOLEN,2178,"{'type': 'Point', 'coordinates': (-79.33435458, 43.70999672)}",Flemingdon Park,44,NIA,21933,22168,-0.011000000000000001,7964,7830,9026,2.43,8380,3705,260,3860,405,50,90,0.0059665871121718375
-2186,12930,GO-2019936222,THEFT UNDER,2019-05-19,2019,May,Sunday,19,139,21,2019-05-22,2019,May,Wednesday,22,142,20,D54,Toronto,44,Flemingdon Park (44),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,,RG,1,BLKRED,,STOLEN,2179,"{'type': 'Point', 'coordinates': (-79.33136581, 43.718360610000005)}",Flemingdon Park,44,NIA,21933,22168,-0.011000000000000001,7964,7830,9026,2.43,8380,3705,260,3860,405,50,90,0.0059665871121718375
-2187,14255,GO-20189021478,THEFT UNDER - BICYCLE,2018-06-29,2018,June,Friday,29,180,16,2018-07-07,2018,July,Saturday,7,188,21,D54,Toronto,44,Flemingdon Park (44),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,MT,15,BLU,250.0,STOLEN,2180,"{'type': 'Point', 'coordinates': (-79.33631057, 43.71440385)}",Flemingdon Park,44,NIA,21933,22168,-0.011000000000000001,7964,7830,9026,2.43,8380,3705,260,3860,405,50,90,0.0059665871121718375
-2188,3590,GO-20181814987,THEFT OF EBIKE UNDER $5000,2018-09-23,2018,September,Sunday,23,266,12,2018-10-01,2018,October,Monday,1,274,14,D33,Toronto,45,Parkwoods-Donalda (45),"Single Home, House (Attach Garage, Cottage, Mobile)",House,EMMO,DAYMARK,EL,3,BLK,1000.0,STOLEN,2181,"{'type': 'Point', 'coordinates': (-79.32610783, 43.76593251)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285
-2189,15884,GO-20149004788,THEFT UNDER,2014-07-06,2014,July,Sunday,6,187,18,2014-07-07,2014,July,Monday,7,188,18,D54,Toronto,44,Flemingdon Park (44),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,,MT,18,BLU,159.0,STOLEN,2182,"{'type': 'Point', 'coordinates': (-79.32457447, 43.71215256000001)}",Flemingdon Park,44,NIA,21933,22168,-0.011000000000000001,7964,7830,9026,2.43,8380,3705,260,3860,405,50,90,0.0059665871121718375
-2190,15897,GO-20142647541,THEFT UNDER,2014-08-02,2014,August,Saturday,2,214,21,2014-08-06,2014,August,Wednesday,6,218,14,D54,Toronto,44,Flemingdon Park (44),"Single Home, House (Attach Garage, Cottage, Mobile)",House,NEXT,ULTRASHOCK,OT,0,GRYRED,160.0,STOLEN,2183,"{'type': 'Point', 'coordinates': (-79.32774009, 43.71262111)}",Flemingdon Park,44,NIA,21933,22168,-0.011000000000000001,7964,7830,9026,2.43,8380,3705,260,3860,405,50,90,0.0059665871121718375
-2191,16005,GO-2016357993,MISCHIEF UNDER,2016-02-25,2016,February,Thursday,25,56,0,2016-02-29,2016,February,Monday,29,60,18,D54,Toronto,44,Flemingdon Park (44),"Apartment (Rooming House, Condo)",Apartment,SPECIALIZED,RUBY COMP,RC,18,RED,3000.0,STOLEN,2184,"{'type': 'Point', 'coordinates': (-79.32752394, 43.72664463)}",Flemingdon Park,44,NIA,21933,22168,-0.011000000000000001,7964,7830,9026,2.43,8380,3705,260,3860,405,50,90,0.0059665871121718375
-2192,18836,GO-20149004214,THEFT UNDER,2014-06-18,2014,June,Wednesday,18,169,12,2014-06-18,2014,June,Wednesday,18,169,17,D54,Toronto,44,Flemingdon Park (44),"Apartment (Rooming House, Condo)",Apartment,OT,26 MOUNTAIN BIK,MT,18,BLK,100.0,STOLEN,2185,"{'type': 'Point', 'coordinates': (-79.32961375, 43.71531155000001)}",Flemingdon Park,44,NIA,21933,22168,-0.011000000000000001,7964,7830,9026,2.43,8380,3705,260,3860,405,50,90,0.0059665871121718375
-2193,18912,GO-20151213802,THEFT UNDER,2015-07-16,2015,July,Thursday,16,197,19,2015-07-17,2015,July,Friday,17,198,11,D54,Toronto,44,Flemingdon Park (44),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OTHER,,OT,1,,,STOLEN,2186,"{'type': 'Point', 'coordinates': (-79.33136581, 43.718360610000005)}",Flemingdon Park,44,NIA,21933,22168,-0.011000000000000001,7964,7830,9026,2.43,8380,3705,260,3860,405,50,90,0.0059665871121718375
-2194,19108,GO-20171507276,THEFT UNDER,2017-08-16,2017,August,Wednesday,16,228,17,2017-08-21,2017,August,Monday,21,233,11,D54,Toronto,44,Flemingdon Park (44),"Apartment (Rooming House, Condo)",Apartment,OTHER,BMX HANDLES,OT,1,,120.0,STOLEN,2187,"{'type': 'Point', 'coordinates': (-79.33633149, 43.71838158)}",Flemingdon Park,44,NIA,21933,22168,-0.011000000000000001,7964,7830,9026,2.43,8380,3705,260,3860,405,50,90,0.0059665871121718375
-2195,19120,GO-20171743439,THEFT UNDER - BICYCLE,2017-09-25,2017,September,Monday,25,268,20,2017-09-25,2017,September,Monday,25,268,20,D54,Toronto,44,Flemingdon Park (44),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,HUFFY,,RG,21,DGR,300.0,STOLEN,2188,"{'type': 'Point', 'coordinates': (-79.33631057, 43.71440385)}",Flemingdon Park,44,NIA,21933,22168,-0.011000000000000001,7964,7830,9026,2.43,8380,3705,260,3860,405,50,90,0.0059665871121718375
-2196,19176,GO-20189021478,THEFT UNDER - BICYCLE,2018-06-29,2018,June,Friday,29,180,16,2018-07-07,2018,July,Saturday,7,188,21,D54,Toronto,44,Flemingdon Park (44),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,,MT,15,BLU,0.0,STOLEN,2189,"{'type': 'Point', 'coordinates': (-79.33631057, 43.71440385)}",Flemingdon Park,44,NIA,21933,22168,-0.011000000000000001,7964,7830,9026,2.43,8380,3705,260,3860,405,50,90,0.0059665871121718375
-2197,19226,GO-2019927563,THEFT UNDER,2019-05-17,2019,May,Friday,17,137,21,2019-05-21,2019,May,Tuesday,21,141,16,D54,Toronto,44,Flemingdon Park (44),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,AVIGO,2 WHEEL,RG,1,BLU,150.0,STOLEN,2190,"{'type': 'Point', 'coordinates': (-79.33033785, 43.71657543)}",Flemingdon Park,44,NIA,21933,22168,-0.011000000000000001,7964,7830,9026,2.43,8380,3705,260,3860,405,50,90,0.0059665871121718375
-2198,19387,GO-20209016782,THEFT UNDER,2020-06-26,2020,June,Friday,26,178,15,2020-07-03,2020,July,Friday,3,185,15,D54,Toronto,44,Flemingdon Park (44),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,1,RED,0.0,STOLEN,2191,"{'type': 'Point', 'coordinates': (-79.33119518, 43.71075311)}",Flemingdon Park,44,NIA,21933,22168,-0.011000000000000001,7964,7830,9026,2.43,8380,3705,260,3860,405,50,90,0.0059665871121718375
-2199,19628,GO-20142328467,THEFT UNDER,2014-06-20,2014,June,Friday,20,171,5,2014-06-20,2014,June,Friday,20,171,7,D54,Toronto,44,Flemingdon Park (44),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,OT,1,LBL,,STOLEN,2192,"{'type': 'Point', 'coordinates': (-79.32696626, 43.71865964)}",Flemingdon Park,44,NIA,21933,22168,-0.011000000000000001,7964,7830,9026,2.43,8380,3705,260,3860,405,50,90,0.0059665871121718375
-2200,19647,GO-20142642556,THEFT UNDER,2014-07-30,2014,July,Wednesday,30,211,22,2014-08-05,2014,August,Tuesday,5,217,19,D54,Toronto,44,Flemingdon Park (44),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RALEIGH,,MT,7,GRY,200.0,STOLEN,2193,"{'type': 'Point', 'coordinates': (-79.33631057, 43.71440385)}",Flemingdon Park,44,NIA,21933,22168,-0.011000000000000001,7964,7830,9026,2.43,8380,3705,260,3860,405,50,90,0.0059665871121718375
-2201,19691,GO-20159003984,THEFT UNDER,2015-06-27,2015,June,Saturday,27,178,13,2015-06-27,2015,June,Saturday,27,178,14,D54,Toronto,44,Flemingdon Park (44),"Apartment (Rooming House, Condo)",Apartment,OT,MCKINLEY,MT,18,DGR,100.0,STOLEN,2194,"{'type': 'Point', 'coordinates': (-79.33033785, 43.71657543)}",Flemingdon Park,44,NIA,21933,22168,-0.011000000000000001,7964,7830,9026,2.43,8380,3705,260,3860,405,50,90,0.0059665871121718375
-2202,22234,GO-20179010003,THEFT UNDER - BICYCLE,2017-07-09,2017,July,Sunday,9,190,19,2017-07-12,2017,July,Wednesday,12,193,9,D54,Toronto,44,Flemingdon Park (44),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,,RC,40,RED,1200.0,STOLEN,2195,"{'type': 'Point', 'coordinates': (-79.32752394, 43.72664463)}",Flemingdon Park,44,NIA,21933,22168,-0.011000000000000001,7964,7830,9026,2.43,8380,3705,260,3860,405,50,90,0.0059665871121718375
-2203,22368,GO-2019682695,THEFT UNDER,2019-04-15,2019,April,Monday,15,105,20,2019-04-15,2019,April,Monday,15,105,21,D54,Toronto,44,Flemingdon Park (44),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OTHER,,BM,1,BLKPLE,300.0,STOLEN,2196,"{'type': 'Point', 'coordinates': (-79.33631057, 43.71440385)}",Flemingdon Park,44,NIA,21933,22168,-0.011000000000000001,7964,7830,9026,2.43,8380,3705,260,3860,405,50,90,0.0059665871121718375
-2204,22374,GO-2019927668,THEFT UNDER,2019-05-19,2019,May,Sunday,19,139,17,2019-05-21,2019,May,Tuesday,21,141,17,D54,Toronto,44,Flemingdon Park (44),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN,UNKNOWN,OT,5,,,STOLEN,2197,"{'type': 'Point', 'coordinates': (-79.33033785, 43.71657543)}",Flemingdon Park,44,NIA,21933,22168,-0.011000000000000001,7964,7830,9026,2.43,8380,3705,260,3860,405,50,90,0.0059665871121718375
-2205,22375,GO-2019927668,THEFT UNDER,2019-05-19,2019,May,Sunday,19,139,17,2019-05-21,2019,May,Tuesday,21,141,17,D54,Toronto,44,Flemingdon Park (44),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN,UNKNOWN,OT,1,,,STOLEN,2198,"{'type': 'Point', 'coordinates': (-79.33033785, 43.71657543)}",Flemingdon Park,44,NIA,21933,22168,-0.011000000000000001,7964,7830,9026,2.43,8380,3705,260,3860,405,50,90,0.0059665871121718375
-2206,22595,GO-20209030555,THEFT UNDER,2020-10-23,2020,October,Friday,23,297,22,2020-11-25,2020,November,Wednesday,25,330,12,D54,Toronto,44,Flemingdon Park (44),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,1,,0.0,STOLEN,2199,"{'type': 'Point', 'coordinates': (-79.33024627, 43.71152383)}",Flemingdon Park,44,NIA,21933,22168,-0.011000000000000001,7964,7830,9026,2.43,8380,3705,260,3860,405,50,90,0.0059665871121718375
-2207,22851,GO-20149004706,THEFT UNDER,2014-07-03,2014,July,Thursday,3,184,20,2014-07-04,2014,July,Friday,4,185,16,D54,Toronto,44,Flemingdon Park (44),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,MERIDIANONE,MT,18,GRY,300.0,STOLEN,2200,"{'type': 'Point', 'coordinates': (-79.32457447, 43.71215256000001)}",Flemingdon Park,44,NIA,21933,22168,-0.011000000000000001,7964,7830,9026,2.43,8380,3705,260,3860,405,50,90,0.0059665871121718375
-2208,22891,GO-2015560068,THEFT UNDER,2015-04-02,2015,April,Thursday,2,92,16,2015-04-04,2015,April,Saturday,4,94,19,D54,Toronto,44,Flemingdon Park (44),"Open Areas (Lakes, Parks, Rivers)",Outside,OTHER,,MT,10,BLKWHI,300.0,STOLEN,2201,"{'type': 'Point', 'coordinates': (-79.32961375, 43.71531155000001)}",Flemingdon Park,44,NIA,21933,22168,-0.011000000000000001,7964,7830,9026,2.43,8380,3705,260,3860,405,50,90,0.0059665871121718375
-2209,25420,GO-20162161871,THEFT UNDER,2016-11-14,2016,November,Monday,14,319,9,2016-12-06,2016,December,Tuesday,6,341,9,D54,Toronto,44,Flemingdon Park (44),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OTHER,,RG,1,LGR,,STOLEN,2202,"{'type': 'Point', 'coordinates': (-79.33414521, 43.71492666)}",Flemingdon Park,44,NIA,21933,22168,-0.011000000000000001,7964,7830,9026,2.43,8380,3705,260,3860,405,50,90,0.0059665871121718375
-2210,25458,GO-20171222818,PUBLIC MISCHIEF,2017-07-08,2017,July,Saturday,8,189,12,2017-07-08,2017,July,Saturday,8,189,15,D54,Toronto,44,Flemingdon Park (44),"Apartment (Rooming House, Condo)",Apartment,NORCO,,MT,18,BLK,1200.0,STOLEN,2203,"{'type': 'Point', 'coordinates': (-79.32457447, 43.71215256000001)}",Flemingdon Park,44,NIA,21933,22168,-0.011000000000000001,7964,7830,9026,2.43,8380,3705,260,3860,405,50,90,0.0059665871121718375
-2211,25683,GO-20199033918,THEFT UNDER,2019-10-04,2019,October,Friday,4,277,8,2019-10-15,2019,October,Tuesday,15,288,12,D54,Toronto,44,Flemingdon Park (44),"Apartment (Rooming House, Condo)",Apartment,HF,,RG,21,RED,250.0,STOLEN,2204,"{'type': 'Point', 'coordinates': (-79.32961375, 43.71531155000001)}",Flemingdon Park,44,NIA,21933,22168,-0.011000000000000001,7964,7830,9026,2.43,8380,3705,260,3860,405,50,90,0.0059665871121718375
-2212,25793,GO-20209026404,THEFT UNDER,2020-10-14,2020,October,Wednesday,14,288,11,2020-10-14,2020,October,Wednesday,14,288,11,D54,Toronto,44,Flemingdon Park (44),"Apartment (Rooming House, Condo)",Apartment,SU,,MT,18,,250.0,STOLEN,2205,"{'type': 'Point', 'coordinates': (-79.33119518, 43.71075311)}",Flemingdon Park,44,NIA,21933,22168,-0.011000000000000001,7964,7830,9026,2.43,8380,3705,260,3860,405,50,90,0.0059665871121718375
-2213,619,GO-20171065898,THEFT UNDER - BICYCLE,2017-06-07,2017,June,Wednesday,7,158,23,2017-06-15,2017,June,Thursday,15,166,11,D33,Toronto,45,Parkwoods-Donalda (45),Schools During Un-Supervised Activity,Educational,CCM,APEX,MT,18,WHI,400.0,STOLEN,2206,"{'type': 'Point', 'coordinates': (-79.31755862, 43.75180164)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285
-2214,1049,GO-20171373981,THEFT FROM MOTOR VEHICLE UNDER,2017-07-30,2017,July,Sunday,30,211,22,2017-07-31,2017,July,Monday,31,212,10,D33,Toronto,45,Parkwoods-Donalda (45),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNK,,OT,0,,,STOLEN,2207,"{'type': 'Point', 'coordinates': (-79.33058409, 43.76542092)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285
-2215,1396,GO-20171648544,THEFT UNDER - BICYCLE,2017-09-08,2017,September,Friday,8,251,17,2017-09-11,2017,September,Monday,11,254,18,D33,Toronto,45,Parkwoods-Donalda (45),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,TR,0,YEL,,STOLEN,2208,"{'type': 'Point', 'coordinates': (-79.33312812, 43.76043851)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285
-2216,1397,GO-20171648544,THEFT UNDER - BICYCLE,2017-09-08,2017,September,Friday,8,251,17,2017-09-11,2017,September,Monday,11,254,18,D33,Toronto,45,Parkwoods-Donalda (45),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,ZZZ,,TR,0,RED,,STOLEN,2209,"{'type': 'Point', 'coordinates': (-79.33312812, 43.76043851)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285
-2217,2810,GO-20189021961,THEFT UNDER - BICYCLE,2017-06-28,2017,June,Wednesday,28,179,16,2018-07-10,2018,July,Tuesday,10,191,20,D33,Toronto,45,Parkwoods-Donalda (45),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,,MT,21,,455.0,STOLEN,2210,"{'type': 'Point', 'coordinates': (-79.31419956, 43.74149834)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285
-2218,198,GO-2017600032,THEFT UNDER,2017-03-01,2017,March,Wednesday,1,60,17,2017-04-05,2017,April,Wednesday,5,95,13,D32,Toronto,32,Englemount-Lawrence (32),"Private Property Structure (Pool, Shed, Detached Garage)",Other,TREK,FXS7,RC,18,SILBLK,3000.0,STOLEN,2211,"{'type': 'Point', 'coordinates': (-79.43961987, 43.7242877)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278
-2219,17747,GO-20179016905,THEFT UNDER,2017-10-06,2017,October,Friday,6,279,17,2017-10-10,2017,October,Tuesday,10,283,22,D32,Toronto,37,Willowdale West (37),"Apartment (Rooming House, Condo)",Apartment,OT,MOUNTAIN,MT,21,BLK,750.0,STOLEN,2212,"{'type': 'Point', 'coordinates': (-79.41553821, 43.7748912)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623
-2220,17778,GO-20179022271,THEFT UNDER,2017-12-02,2017,December,Saturday,2,336,4,2017-12-15,2017,December,Friday,15,349,10,D32,Toronto,37,Willowdale West (37),"Apartment (Rooming House, Condo)",Apartment,GT,,MT,24,BLK,450.0,STOLEN,2213,"{'type': 'Point', 'coordinates': (-79.41725427, 43.77839991)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623
-2221,24428,GO-20149004844,THEFT UNDER,2014-07-04,2014,July,Friday,4,185,16,2014-07-09,2014,July,Wednesday,9,190,15,D32,Toronto,34,Bathurst Manor (34),"Apartment (Rooming House, Condo)",Apartment,,,MT,18,WHI,220.0,STOLEN,2214,"{'type': 'Point', 'coordinates': (-79.45312362, 43.75381691)}",Bathurst Manor,34,No Designation,15873,15434,0.027999999999999997,6418,6089,3377,4.7,7360,3910,265,2870,215,15,90,0.0020380434782608695
-2222,250,GO-20179004976,THEFT OVER - BICYCLE,2017-04-16,2017,April,Sunday,16,106,7,2017-04-20,2017,April,Thursday,20,110,7,D32,Toronto,39,Bedford Park-Nortown (39),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,PHONIC,TO,21,GRY,6500.0,STOLEN,2215,"{'type': 'Point', 'coordinates': (-79.4062109, 43.74185863)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041
-2223,24392,GO-20201432834,B&E,2020-08-01,2020,August,Saturday,1,214,4,2020-08-01,2020,August,Saturday,1,214,11,D13,Toronto,32,Englemount-Lawrence (32),"Apartment (Rooming House, Condo)",Apartment,TREK,NIKOSL WSD,MT,0,BLU,800.0,STOLEN,2216,"{'type': 'Point', 'coordinates': (-79.44099953, 43.71598468)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278
-2224,252,GO-20179004991,THEFT UNDER,2017-04-20,2017,April,Thursday,20,110,11,2017-04-20,2017,April,Thursday,20,110,14,D13,Toronto,32,Englemount-Lawrence (32),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,11,GRY,3160.0,STOLEN,2217,"{'type': 'Point', 'coordinates': (-79.42810684, 43.71233208)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278
-2225,23373,GO-20202290284,FRAUD OVER,2020-11-27,2020,November,Friday,27,332,0,2020-12-05,2020,December,Saturday,5,340,14,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,ZZZ,A3,SC,3,,2598.0,STOLEN,2218,"{'type': 'Point', 'coordinates': (-79.4173091, 43.78706936)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2226,4090,GO-20199008084,THEFT UNDER - BICYCLE,2019-03-12,2019,March,Tuesday,12,71,20,2019-03-12,2019,March,Tuesday,12,71,20,D33,Toronto,45,Parkwoods-Donalda (45),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,,RG,21,DBL,500.0,STOLEN,2219,"{'type': 'Point', 'coordinates': (-79.3317634, 43.75222786)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285
-2227,17779,GO-20179022271,THEFT UNDER,2017-12-02,2017,December,Saturday,2,336,4,2017-12-15,2017,December,Friday,15,349,10,D32,Toronto,37,Willowdale West (37),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,1,GRY,250.0,STOLEN,2220,"{'type': 'Point', 'coordinates': (-79.41725427, 43.77839991)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623
-2228,6417,GO-20209015579,THEFT UNDER - BICYCLE,2020-06-16,2020,June,Tuesday,16,168,18,2020-06-17,2020,June,Wednesday,17,169,14,D33,Toronto,45,Parkwoods-Donalda (45),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,7,BLK,500.0,STOLEN,2221,"{'type': 'Point', 'coordinates': (-79.31874761, 43.76487876)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285
-2229,4959,GO-20199024801,THEFT UNDER,2019-08-02,2019,August,Friday,2,214,12,2019-08-02,2019,August,Friday,2,214,18,D32,Toronto,36,Newtonbrook West (36),Ttc Subway Station,Transit,GI,ROAM,MT,27,GRY,800.0,STOLEN,2222,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2230,819,GO-20171217379,THEFT UNDER - BICYCLE,2017-07-07,2017,July,Friday,7,188,13,2017-07-07,2017,July,Friday,7,188,17,D32,Toronto,39,Bedford Park-Nortown (39),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,MT,18,BLU,300.0,STOLEN,2223,"{'type': 'Point', 'coordinates': (-79.41816142, 43.740629410000004)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041
-2231,24393,GO-20201432834,B&E,2020-08-01,2020,August,Saturday,1,214,4,2020-08-01,2020,August,Saturday,1,214,11,D13,Toronto,32,Englemount-Lawrence (32),"Apartment (Rooming House, Condo)",Apartment,TREK,FUEL EX 8,MT,0,BLK,3000.0,STOLEN,2224,"{'type': 'Point', 'coordinates': (-79.44099953, 43.71598468)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278
-2232,403,GO-2017865308,THEFT UNDER - BICYCLE,2017-05-12,2017,May,Friday,12,132,14,2017-05-16,2017,May,Tuesday,16,136,21,D32,Toronto,32,Englemount-Lawrence (32),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,OTHER,,MT,18,,150.0,STOLEN,2225,"{'type': 'Point', 'coordinates': (-79.43242389, 43.72046868)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278
-2233,24488,GO-20159007381,THEFT UNDER,2015-09-18,2015,September,Friday,18,261,16,2015-09-18,2015,September,Friday,18,261,19,D32,Toronto,34,Bathurst Manor (34),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,SPORTING LIFE O,MT,18,RED,232.0,STOLEN,2226,"{'type': 'Point', 'coordinates': (-79.44049289, 43.75512241)}",Bathurst Manor,34,No Designation,15873,15434,0.027999999999999997,6418,6089,3377,4.7,7360,3910,265,2870,215,15,90,0.0020380434782608695
-2234,24450,GO-2015789818,PROPERTY - FOUND,2015-05-12,2015,May,Tuesday,12,132,8,2015-05-12,2015,May,Tuesday,12,132,8,D32,Toronto,32,Englemount-Lawrence (32),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,EMMO,A485HB6X32YD80,EL,0,BLU,1000.0,UNKNOWN,2227,"{'type': 'Point', 'coordinates': (-79.43086822, 43.72421999)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278
-2235,912,GO-20179010537,THEFT UNDER - BICYCLE,2017-07-17,2017,July,Monday,17,198,8,2017-07-18,2017,July,Tuesday,18,199,21,D53,Toronto,39,Bedford Park-Nortown (39),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,STUMPJUMPER FSR,MT,27,BLK,2500.0,STOLEN,2228,"{'type': 'Point', 'coordinates': (-79.42158924, 43.71409205)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041
-2236,23374,GO-20202290284,FRAUD OVER,2020-11-27,2020,November,Friday,27,332,0,2020-12-05,2020,December,Saturday,5,340,14,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,ZZZ,4S,SC,3,,2598.0,STOLEN,2229,"{'type': 'Point', 'coordinates': (-79.4173091, 43.78706936)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2237,1999,GO-20189002218,THEFT UNDER - BICYCLE,2018-01-22,2018,January,Monday,22,22,14,2018-01-23,2018,January,Tuesday,23,23,14,D13,Toronto,32,Englemount-Lawrence (32),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,,RG,18,,300.0,STOLEN,2230,"{'type': 'Point', 'coordinates': (-79.4407141, 43.71526791)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278
-2238,24569,GO-2017835723,THEFT UNDER - BICYCLE,2017-05-10,2017,May,Wednesday,10,130,12,2017-05-12,2017,May,Friday,12,132,10,D32,Toronto,34,Bathurst Manor (34),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,MT,21,BLUBLK,300.0,STOLEN,2231,"{'type': 'Point', 'coordinates': (-79.44835753, 43.75344878)}",Bathurst Manor,34,No Designation,15873,15434,0.027999999999999997,6418,6089,3377,4.7,7360,3910,265,2870,215,15,90,0.0020380434782608695
-2239,24465,GO-20151228581,THEFT UNDER,2015-07-19,2015,July,Sunday,19,200,13,2015-07-19,2015,July,Sunday,19,200,13,D32,Toronto,32,Englemount-Lawrence (32),"Open Areas (Lakes, Parks, Rivers)",Outside,CCM,,MT,21,WHI,250.0,STOLEN,2232,"{'type': 'Point', 'coordinates': (-79.43520689, 43.7225316)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278
-2240,1077,GO-20171414185,THEFT OVER - BICYCLE,2017-08-05,2017,August,Saturday,5,217,23,2017-08-06,2017,August,Sunday,6,218,9,D53,Toronto,39,Bedford Park-Nortown (39),"Private Property Structure (Pool, Shed, Detached Garage)",Other,LOOK,,RC,1,BLK WH,6000.0,STOLEN,2233,"{'type': 'Point', 'coordinates': (-79.41958503, 43.719928)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041
-2241,17892,GO-20189028349,THEFT UNDER - BICYCLE,2018-08-29,2018,August,Wednesday,29,241,0,2018-08-29,2018,August,Wednesday,29,241,1,D32,Toronto,37,Willowdale West (37),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,RG,1,WHI,400.0,STOLEN,2234,"{'type': 'Point', 'coordinates': (-79.41286325, 43.76927425)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623
-2242,23375,GO-20202290284,FRAUD OVER,2020-11-27,2020,November,Friday,27,332,0,2020-12-05,2020,December,Saturday,5,340,14,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,ZZZ,X8,SC,3,,1499.0,STOLEN,2235,"{'type': 'Point', 'coordinates': (-79.4173091, 43.78706936)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2243,1078,GO-20171414185,THEFT OVER - BICYCLE,2017-08-05,2017,August,Saturday,5,217,23,2017-08-06,2017,August,Sunday,6,218,9,D53,Toronto,39,Bedford Park-Nortown (39),"Private Property Structure (Pool, Shed, Detached Garage)",Other,SPECIALIZED,RUBY,RC,1,BUR,3000.0,STOLEN,2236,"{'type': 'Point', 'coordinates': (-79.41958503, 43.719928)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041
-2244,7166,GO-20209022219,THEFT UNDER - BICYCLE,2020-09-03,2020,September,Thursday,3,247,14,2020-09-03,2020,September,Thursday,3,247,16,D33,Toronto,45,Parkwoods-Donalda (45),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,21,BLU,491.0,STOLEN,2237,"{'type': 'Point', 'coordinates': (-79.33872763, 43.76289207)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285
-2245,23376,GO-20202290284,FRAUD OVER,2020-11-27,2020,November,Friday,27,332,0,2020-12-05,2020,December,Saturday,5,340,14,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,ZZZ,CN,SC,3,,1499.0,STOLEN,2238,"{'type': 'Point', 'coordinates': (-79.4173091, 43.78706936)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2246,5136,GO-20199027289,THEFT UNDER - BICYCLE,2019-08-22,2019,August,Thursday,22,234,9,2019-08-22,2019,August,Thursday,22,234,15,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,TR,NEKO 1,RG,21,BLK,580.0,STOLEN,2239,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2247,17936,GO-20149005324,THEFT FROM MOTOR VEHICLE UNDER,2014-07-25,2014,July,Friday,25,206,1,2014-07-25,2014,July,Friday,25,206,10,D32,Toronto,37,Willowdale West (37),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,DIABLO,RC,18,BLK,4000.0,STOLEN,2240,"{'type': 'Point', 'coordinates': (-79.42785968, 43.77480962)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623
-2248,1079,GO-20171414185,THEFT OVER - BICYCLE,2017-08-05,2017,August,Saturday,5,217,23,2017-08-06,2017,August,Sunday,6,218,9,D53,Toronto,39,Bedford Park-Nortown (39),"Private Property Structure (Pool, Shed, Detached Garage)",Other,GIANT,RAPID,MT,1,WHI,1100.0,STOLEN,2241,"{'type': 'Point', 'coordinates': (-79.41958503, 43.719928)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041
-2249,7234,GO-20201731826,THEFT UNDER - BICYCLE,2020-09-12,2020,September,Saturday,12,256,14,2020-09-13,2020,September,Sunday,13,257,19,D33,Toronto,45,Parkwoods-Donalda (45),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,HARO,,MT,28,BLK,700.0,STOLEN,2242,"{'type': 'Point', 'coordinates': (-79.30975281, 43.74214362)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285
-2250,2139,GO-2018624793,PROPERTY - FOUND,2018-04-07,2018,April,Saturday,7,97,19,2018-04-08,2018,April,Sunday,8,98,14,D32,Toronto,32,Englemount-Lawrence (32),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,ASCENT,RG,12,WHI,100.0,UNKNOWN,2243,"{'type': 'Point', 'coordinates': (-79.43997894, 43.721537680000004)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278
-2251,24482,GO-20159005824,THEFT UNDER,2015-08-14,2015,August,Friday,14,226,19,2015-08-14,2015,August,Friday,14,226,19,D32,Toronto,32,Englemount-Lawrence (32),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SP,,MT,18,,200.0,STOLEN,2244,"{'type': 'Point', 'coordinates': (-79.43711881, 43.71859418)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278
-2252,24570,GO-2017835723,THEFT UNDER - BICYCLE,2017-05-10,2017,May,Wednesday,10,130,12,2017-05-12,2017,May,Friday,12,132,10,D32,Toronto,34,Bathurst Manor (34),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SPECIALIZED,MYKA,MT,21,WHIONG,500.0,RECOVERED,2245,"{'type': 'Point', 'coordinates': (-79.44835753, 43.75344878)}",Bathurst Manor,34,No Designation,15873,15434,0.027999999999999997,6418,6089,3377,4.7,7360,3910,265,2870,215,15,90,0.0020380434782608695
-2253,24486,GO-20151545579,THEFT UNDER,2015-09-02,2015,September,Wednesday,2,245,19,2015-09-07,2015,September,Monday,7,250,16,D32,Toronto,32,Englemount-Lawrence (32),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,BM,1,BLKRED,350.0,STOLEN,2246,"{'type': 'Point', 'coordinates': (-79.43819728, 43.73027846)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278
-2254,1418,GO-20179014833,THEFT UNDER - BICYCLE,2017-09-13,2017,September,Wednesday,13,256,8,2017-09-15,2017,September,Friday,15,258,11,D32,Toronto,35,Westminster-Branson (35),Schools During Supervised Activity,Educational,BI,,RG,27,ONG,400.0,STOLEN,2254,"{'type': 'Point', 'coordinates': (-79.44526491, 43.7735142)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2255,155,GO-2017447362,THEFT UNDER - BICYCLE,2017-03-10,2017,March,Friday,10,69,16,2017-03-13,2017,March,Monday,13,72,14,D32,Toronto,35,Westminster-Branson (35),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,"STATIC 26""""",MT,21,YEL,355.0,STOLEN,2247,"{'type': 'Point', 'coordinates': (-79.44571399, 43.79240783)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2256,243,GO-2017670729,THEFT UNDER - BICYCLE,2017-04-16,2017,April,Sunday,16,106,17,2017-04-16,2017,April,Sunday,16,106,20,D32,Toronto,35,Westminster-Branson (35),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,DIAMONDBACK,,MT,0,BLU,250.0,STOLEN,2248,"{'type': 'Point', 'coordinates': (-79.44632616, 43.78121576)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2257,244,GO-2017670729,THEFT UNDER - BICYCLE,2017-04-16,2017,April,Sunday,16,106,17,2017-04-16,2017,April,Sunday,16,106,20,D32,Toronto,35,Westminster-Branson (35),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,KROSSPORT,MT,0,WHI,350.0,STOLEN,2249,"{'type': 'Point', 'coordinates': (-79.44632616, 43.78121576)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2258,1076,GO-20171419485,THEFT UNDER - BICYCLE,2017-07-28,2017,July,Friday,28,209,13,2017-08-07,2017,August,Monday,7,219,6,D32,Toronto,35,Westminster-Branson (35),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CCM,,RG,24,WHIBLU,370.0,STOLEN,2250,"{'type': 'Point', 'coordinates': (-79.44912816, 43.780214)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2259,1259,GO-20179013508,THEFT UNDER - BICYCLE,2017-08-28,2017,August,Monday,28,240,10,2017-08-28,2017,August,Monday,28,240,16,D32,Toronto,35,Westminster-Branson (35),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,MOUNTAIN BIKE,MT,18,BLU,500.0,STOLEN,2251,"{'type': 'Point', 'coordinates': (-79.44526491, 43.7735142)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2260,1272,GO-20179013680,THEFT UNDER - BICYCLE,2017-08-29,2017,August,Tuesday,29,241,13,2017-08-30,2017,August,Wednesday,30,242,14,D32,Toronto,35,Westminster-Branson (35),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,REACTION MEN'S,OT,18,BLK,300.0,STOLEN,2252,"{'type': 'Point', 'coordinates': (-79.44706828, 43.79018828)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2261,1410,GO-20179014793,THEFT UNDER - BICYCLE,2017-09-14,2017,September,Thursday,14,257,10,2017-09-14,2017,September,Thursday,14,257,23,D32,Toronto,35,Westminster-Branson (35),Schools During Supervised Activity,Educational,NO,STORM,MT,18,ONG,904.0,STOLEN,2253,"{'type': 'Point', 'coordinates': (-79.44526491, 43.7735142)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2262,8378,GO-20149004852,THEFT UNDER,2014-07-09,2014,July,Wednesday,9,190,8,2014-07-09,2014,July,Wednesday,9,190,20,D33,Toronto,45,Parkwoods-Donalda (45),"Apartment (Rooming House, Condo)",Apartment,RA,,MT,21,GRY,70.0,STOLEN,2263,"{'type': 'Point', 'coordinates': (-79.33366419, 43.75198335)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285
-2263,1576,GO-20179016323,THEFT UNDER - BICYCLE,2017-09-27,2017,September,Wednesday,27,270,19,2017-10-02,2017,October,Monday,2,275,22,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,UK,,RG,10,GRY,0.0,STOLEN,2255,"{'type': 'Point', 'coordinates': (-79.45299335, 43.79081207)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2264,1776,GO-20171765978,THEFT UNDER - BICYCLE,2017-09-08,2017,September,Friday,8,251,14,2017-09-29,2017,September,Friday,29,272,9,D32,Toronto,35,Westminster-Branson (35),"Single Home, House (Attach Garage, Cottage, Mobile)",House,JAMIS,,MT,27,,,STOLEN,2256,"{'type': 'Point', 'coordinates': (-79.45344596, 43.78519317)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2265,2501,GO-20189017897,THEFT UNDER - BICYCLE,2018-06-07,2018,June,Thursday,7,158,8,2018-06-08,2018,June,Friday,8,159,15,D32,Toronto,35,Westminster-Branson (35),Schools During Supervised Activity,Educational,OT,,MT,21,BLK,400.0,STOLEN,2257,"{'type': 'Point', 'coordinates': (-79.44526491, 43.7735142)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2266,2761,GO-20189021308,THEFT UNDER - BICYCLE,2018-07-05,2018,July,Thursday,5,186,1,2018-07-05,2018,July,Thursday,5,186,19,D32,Toronto,35,Westminster-Branson (35),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SC,,MT,7,DBL,380.0,STOLEN,2258,"{'type': 'Point', 'coordinates': (-79.44983192, 43.78959109)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2267,4478,GO-20199018542,THEFT UNDER,2019-06-13,2019,June,Thursday,13,164,18,2019-06-14,2019,June,Friday,14,165,8,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,GT,AGGRESSOR SPORT,MT,7,DBL,375.0,STOLEN,2259,"{'type': 'Point', 'coordinates': (-79.44706828, 43.79018828)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2268,4479,GO-20199018542,THEFT UNDER,2019-06-13,2019,June,Thursday,13,164,18,2019-06-14,2019,June,Friday,14,165,8,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,GT,AGGRESSOR SPORT,MT,7,DBL,500.0,STOLEN,2260,"{'type': 'Point', 'coordinates': (-79.44706828, 43.79018828)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2269,4480,GO-20199018542,THEFT UNDER,2019-06-13,2019,June,Thursday,13,164,18,2019-06-14,2019,June,Friday,14,165,8,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,GT,AGGRESSOR SPORT,MT,7,DBL,375.0,STOLEN,2261,"{'type': 'Point', 'coordinates': (-79.44706828, 43.79018828)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2270,4481,GO-20199018542,THEFT UNDER,2019-06-13,2019,June,Thursday,13,164,18,2019-06-14,2019,June,Friday,14,165,8,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,GT,GT AGGRESSOR SP,MT,7,DBL,500.0,STOLEN,2262,"{'type': 'Point', 'coordinates': (-79.44706828, 43.79018828)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2271,17968,GO-20159003704,THEFT UNDER,2015-06-17,2015,June,Wednesday,17,168,8,2015-06-17,2015,June,Wednesday,17,168,17,D32,Toronto,37,Willowdale West (37),Schools During Supervised Activity,Educational,CC,APEX,MT,21,WHI,400.0,STOLEN,2264,"{'type': 'Point', 'coordinates': (-79.42713751, 43.76947595)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623
-2272,2166,GO-2018680312,THEFT UNDER,2018-04-14,2018,April,Saturday,14,104,12,2018-04-16,2018,April,Monday,16,106,15,D32,Toronto,32,Englemount-Lawrence (32),"Apartment (Rooming House, Condo)",Apartment,GIANT,TCR ADVANCE 1,OT,5,BLUWHI,3150.0,STOLEN,2265,"{'type': 'Point', 'coordinates': (-79.43049352, 43.72255903)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278
-2273,1080,GO-20171414185,THEFT OVER - BICYCLE,2017-08-05,2017,August,Saturday,5,217,23,2017-08-06,2017,August,Sunday,6,218,9,D53,Toronto,39,Bedford Park-Nortown (39),"Private Property Structure (Pool, Shed, Detached Garage)",Other,CANNONDALE,DI2,RC,1,BLK WH,7000.0,STOLEN,2266,"{'type': 'Point', 'coordinates': (-79.41958503, 43.719928)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041
-2274,23377,GO-20202290284,FRAUD OVER,2020-11-27,2020,November,Friday,27,332,0,2020-12-05,2020,December,Saturday,5,340,14,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,ZZZ,A5,EL,3,,1599.0,STOLEN,2267,"{'type': 'Point', 'coordinates': (-79.4173091, 43.78706936)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2275,5264,GO-20199029116,THEFT UNDER - BICYCLE,2019-09-07,2019,September,Saturday,7,250,11,2019-09-07,2019,September,Saturday,7,250,19,D32,Toronto,36,Newtonbrook West (36),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OT,ALGONQUIN,RG,18,RED,113.0,STOLEN,2268,"{'type': 'Point', 'coordinates': (-79.41958993, 43.79632341)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2276,4673,GO-20199021029,THEFT UNDER - BICYCLE,2019-07-04,2019,July,Thursday,4,185,12,2019-07-04,2019,July,Thursday,4,185,22,D32,Toronto,35,Westminster-Branson (35),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SC,SCHWINN,MT,20,SIL,500.0,STOLEN,2269,"{'type': 'Point', 'coordinates': (-79.44983192, 43.78959109)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2277,5467,GO-20199032604,THEFT UNDER - BICYCLE,2019-09-08,2019,September,Sunday,8,251,13,2019-10-04,2019,October,Friday,4,277,13,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,UK,,RC,60,PNK,0.0,STOLEN,2270,"{'type': 'Point', 'coordinates': (-79.45084015, 43.77933021)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2278,5468,GO-20199032604,THEFT UNDER - BICYCLE,2019-09-08,2019,September,Sunday,8,251,13,2019-10-04,2019,October,Friday,4,277,13,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,OT,,FO,30,,0.0,STOLEN,2271,"{'type': 'Point', 'coordinates': (-79.45084015, 43.77933021)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2279,6239,GO-2020961740,THEFT UNDER,2020-05-25,2020,May,Monday,25,146,0,2020-05-25,2020,May,Monday,25,146,9,D32,Toronto,35,Westminster-Branson (35),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,SPARKS,EL,0,BLK,,STOLEN,2272,"{'type': 'Point', 'coordinates': (-79.45649982, 43.77267814)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2280,6325,GO-20201034970,THEFT UNDER - BICYCLE,2020-06-02,2020,June,Tuesday,2,154,0,2020-06-09,2020,June,Tuesday,9,161,13,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,OTHER,DEL RIO CRUISER,RG,6,PNK,200.0,STOLEN,2273,"{'type': 'Point', 'coordinates': (-79.44983192, 43.78959109)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2281,6326,GO-20201034970,THEFT UNDER - BICYCLE,2020-06-02,2020,June,Tuesday,2,154,0,2020-06-09,2020,June,Tuesday,9,161,13,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,NEXT,,MT,8,BLK,200.0,STOLEN,2274,"{'type': 'Point', 'coordinates': (-79.44983192, 43.78959109)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2282,6397,GO-20209015437,THEFT UNDER,2020-06-07,2020,June,Sunday,7,159,1,2020-06-15,2020,June,Monday,15,167,23,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,UK,,MT,60,BLK,250.0,STOLEN,2275,"{'type': 'Point', 'coordinates': (-79.44983192, 43.78959109)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2283,6465,GO-20201167566,THEFT UNDER - BICYCLE,2020-06-24,2020,June,Wednesday,24,176,2,2020-06-25,2020,June,Thursday,25,177,8,D32,Toronto,35,Westminster-Branson (35),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EM,GTS 500,EL,40,YEL,5000.0,STOLEN,2276,"{'type': 'Point', 'coordinates': (-79.44653676, 43.78174825)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2284,8048,GO-20142222893,THEFT UNDER,2014-06-04,2014,June,Wednesday,4,155,21,2014-06-04,2014,June,Wednesday,4,155,21,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,CCM,APEX,MT,21,WHI,1600.0,STOLEN,2277,"{'type': 'Point', 'coordinates': (-79.44706828, 43.79018828)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2285,8262,GO-20142404202,THEFT UNDER,2014-06-30,2014,June,Monday,30,181,10,2014-06-30,2014,June,Monday,30,181,21,D32,Toronto,35,Westminster-Branson (35),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CCM,SUPER CYCLE,RG,21,GLD,200.0,STOLEN,2278,"{'type': 'Point', 'coordinates': (-79.45129277, 43.78368507)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2286,8714,GO-20149006194,THEFT UNDER,2014-08-20,2014,August,Wednesday,20,232,10,2014-08-21,2014,August,Thursday,21,233,17,D32,Toronto,35,Westminster-Branson (35),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,BM,10,BLU,50.0,STOLEN,2279,"{'type': 'Point', 'coordinates': (-79.45281562, 43.77367533)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2287,8715,GO-20149006194,THEFT UNDER,2014-08-20,2014,August,Wednesday,20,232,10,2014-08-21,2014,August,Thursday,21,233,17,D32,Toronto,35,Westminster-Branson (35),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RC,1,GRY,50.0,STOLEN,2280,"{'type': 'Point', 'coordinates': (-79.45281562, 43.77367533)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2288,9681,GO-20159003188,THEFT UNDER,2015-05-29,2015,May,Friday,29,149,9,2015-05-29,2015,May,Friday,29,149,16,D32,Toronto,35,Westminster-Branson (35),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RE,,RG,21,RED,500.0,STOLEN,2281,"{'type': 'Point', 'coordinates': (-79.44526491, 43.7735142)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2289,9724,GO-2015934342,THEFT UNDER,2015-05-29,2015,May,Friday,29,149,17,2015-06-05,2015,June,Friday,5,156,12,D32,Toronto,35,Westminster-Branson (35),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SCHWINN,,MT,24,WHIBLK,380.0,STOLEN,2282,"{'type': 'Point', 'coordinates': (-79.45047006, 43.782854)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2290,9831,GO-20151018750,THEFT UNDER,2015-06-06,2015,June,Saturday,6,157,10,2015-06-17,2015,June,Wednesday,17,168,17,D32,Toronto,35,Westminster-Branson (35),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN,,RC,10,GRY,200.0,STOLEN,2283,"{'type': 'Point', 'coordinates': (-79.45238031, 43.77959673)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2291,10903,GO-20152226364,THEFT UNDER,2015-12-18,2015,December,Friday,18,352,23,2015-12-29,2015,December,Tuesday,29,363,11,D32,Toronto,35,Westminster-Branson (35),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,ROCKY MOUNTAIN,,MT,18,BLK,600.0,STOLEN,2284,"{'type': 'Point', 'coordinates': (-79.45299335, 43.79081207)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2292,11391,GO-2016923752,THEFT UNDER - BICYCLE,2016-05-28,2016,May,Saturday,28,149,19,2016-05-28,2016,May,Saturday,28,149,20,D32,Toronto,35,Westminster-Branson (35),Schools During Un-Supervised Activity,Educational,CCM,,OT,21,BLU,300.0,STOLEN,2285,"{'type': 'Point', 'coordinates': (-79.45239412, 43.7854049)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2293,11639,GO-20169006374,THEFT UNDER - BICYCLE,2016-06-26,2016,June,Sunday,26,178,10,2016-06-26,2016,June,Sunday,26,178,11,D32,Toronto,35,Westminster-Branson (35),"Single Home, House (Attach Garage, Cottage, Mobile)",House,TR,7.0FX,TO,21,BLK,400.0,STOLEN,2286,"{'type': 'Point', 'coordinates': (-79.45540466, 43.78839104)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2294,11652,GO-20161122002,THEFT UNDER - BICYCLE,2016-06-24,2016,June,Friday,24,176,9,2016-06-27,2016,June,Monday,27,179,8,D32,Toronto,35,Westminster-Branson (35),Schools During Un-Supervised Activity,Educational,UNKNOWN MAKE,,OT,0,WHI,,STOLEN,2287,"{'type': 'Point', 'coordinates': (-79.45239412, 43.7854049)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2295,11791,GO-20169007128,THEFT UNDER,2016-07-12,2016,July,Tuesday,12,194,22,2016-07-13,2016,July,Wednesday,13,195,10,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,UK,P B 710,EL,2,RED,500.0,STOLEN,2288,"{'type': 'Point', 'coordinates': (-79.44505078, 43.7727668)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2296,12463,GO-20169011155,THEFT UNDER - BICYCLE,2016-09-26,2016,September,Monday,26,270,4,2016-09-26,2016,September,Monday,26,270,20,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,,ROYAL 9.3,RG,21,BLK,250.0,STOLEN,2289,"{'type': 'Point', 'coordinates': (-79.44706828, 43.79018828)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2297,12471,GO-20169011191,THEFT UNDER - BICYCLE,2016-09-23,2016,September,Friday,23,267,23,2016-09-27,2016,September,Tuesday,27,271,15,D32,Toronto,35,Westminster-Branson (35),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,NO,"STORM 18.5""""",MT,24,GRY,750.0,STOLEN,2290,"{'type': 'Point', 'coordinates': (-79.44458672000002, 43.78021068)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2298,12642,GO-20169012319,THEFT UNDER - BICYCLE,2016-10-19,2016,October,Wednesday,19,293,16,2016-10-19,2016,October,Wednesday,19,293,20,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,UK,MODENA FEMME,RG,21,WHI,430.0,STOLEN,2291,"{'type': 'Point', 'coordinates': (-79.44983192, 43.78959109)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2299,12824,GO-20169013847,THEFT UNDER - BICYCLE,2016-11-24,2016,November,Thursday,24,329,0,2016-11-25,2016,November,Friday,25,330,15,D32,Toronto,35,Westminster-Branson (35),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SC,,RG,7,GRY,0.0,STOLEN,2292,"{'type': 'Point', 'coordinates': (-79.45509762, 43.79036264)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2300,13521,GO-20199029207,THEFT UNDER - BICYCLE,2019-09-05,2019,September,Thursday,5,248,21,2019-09-08,2019,September,Sunday,8,251,20,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,CA,QUICK DISK 5,RG,27,GRY,849.0,STOLEN,2293,"{'type': 'Point', 'coordinates': (-79.44963678, 43.77958754)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2301,13530,GO-20192103368,THEFT FROM MOTOR VEHICLE UNDER,2019-10-30,2019,October,Wednesday,30,303,0,2019-10-31,2019,October,Thursday,31,304,13,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,UNKNOWN,,MT,10,WHI,,STOLEN,2294,"{'type': 'Point', 'coordinates': (-79.44493159, 43.77225885)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2302,13774,GO-20189019574,THEFT UNDER - BICYCLE,2018-06-12,2018,June,Tuesday,12,163,9,2018-06-21,2018,June,Thursday,21,172,0,D33,Toronto,35,Westminster-Branson (35),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,NO,,TO,18,PLE,250.0,STOLEN,2295,"{'type': 'Point', 'coordinates': (-79.44632616, 43.78121576)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2303,14739,GO-20171984243,THEFT UNDER - BICYCLE,2017-10-30,2017,October,Monday,30,303,21,2017-11-02,2017,November,Thursday,2,306,11,D32,Toronto,35,Westminster-Branson (35),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,ZZZ,,MT,0,,300.0,STOLEN,2296,"{'type': 'Point', 'coordinates': (-79.44983192, 43.78959109)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2304,14934,GO-20142937826,THEFT UNDER,2014-09-18,2014,September,Thursday,18,261,19,2014-09-18,2014,September,Thursday,18,261,22,D32,Toronto,35,Westminster-Branson (35),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,ROCKY MOUNTAIN,,OT,10,BLK,660.0,STOLEN,2297,"{'type': 'Point', 'coordinates': (-79.45084015, 43.77933021)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2305,14947,GO-20159002644,THEFT UNDER,2015-05-11,2015,May,Monday,11,131,19,2015-05-11,2015,May,Monday,11,131,22,D32,Toronto,35,Westminster-Branson (35),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UK,,RG,1,SIL,50.0,STOLEN,2298,"{'type': 'Point', 'coordinates': (-79.44653676, 43.78174825)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2306,14948,GO-2015806134,THEFT UNDER,2015-05-11,2015,May,Monday,11,131,17,2015-05-14,2015,May,Thursday,14,134,19,D32,Toronto,35,Westminster-Branson (35),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OTHER,,RC,5,BLK,180.0,STOLEN,2299,"{'type': 'Point', 'coordinates': (-79.44288664, 43.76969536)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2307,14982,GO-20151926684,THEFT UNDER,2015-11-09,2015,November,Monday,9,313,8,2015-11-09,2015,November,Monday,9,313,15,D32,Toronto,35,Westminster-Branson (35),Schools During Supervised Activity,Educational,OTHER,CHALLENGER 800,OT,0,BLKWHI,1200.0,STOLEN,2300,"{'type': 'Point', 'coordinates': (-79.44526491, 43.7735142)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2308,15013,GO-20169008042,THEFT UNDER - BICYCLE,2016-07-30,2016,July,Saturday,30,212,0,2016-08-01,2016,August,Monday,1,214,19,D32,Toronto,35,Westminster-Branson (35),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,,MT,21,PLE,600.0,STOLEN,2301,"{'type': 'Point', 'coordinates': (-79.45238031, 43.77959673)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2309,16793,GO-20199029634,THEFT UNDER - BICYCLE,2019-09-11,2019,September,Wednesday,11,254,8,2019-09-11,2019,September,Wednesday,11,254,17,D32,Toronto,35,Westminster-Branson (35),Schools During Supervised Activity,Educational,GI,TALON 3,RG,50,SIL,699.0,STOLEN,2302,"{'type': 'Point', 'coordinates': (-79.44526491, 43.7735142)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2310,17991,GO-20159006874,THEFT UNDER,2015-09-07,2015,September,Monday,7,250,17,2015-09-08,2015,September,Tuesday,8,251,10,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,BL,2013,EL,40,BLU,1800.0,STOLEN,2310,"{'type': 'Point', 'coordinates': (-79.44550849, 43.78393311)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2311,16809,GO-20209010785,THEFT UNDER - BICYCLE,2020-04-08,2020,April,Wednesday,8,99,10,2020-04-09,2020,April,Thursday,9,100,15,D32,Toronto,35,Westminster-Branson (35),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,7,BLK,599.0,STOLEN,2303,"{'type': 'Point', 'coordinates': (-79.45043404, 43.77940979)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2312,16810,GO-20209010785,THEFT UNDER - BICYCLE,2020-04-08,2020,April,Wednesday,8,99,10,2020-04-09,2020,April,Thursday,9,100,15,D32,Toronto,35,Westminster-Branson (35),"Private Property Structure (Pool, Shed, Detached Garage)",Other,OT,,RG,7,BLK,599.0,STOLEN,2304,"{'type': 'Point', 'coordinates': (-79.45043404, 43.77940979)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2313,16834,GO-20209019249,THEFT UNDER - BICYCLE,2020-06-27,2020,June,Saturday,27,179,18,2020-08-03,2020,August,Monday,3,216,10,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,24,BLK,621.0,STOLEN,2305,"{'type': 'Point', 'coordinates': (-79.45238031, 43.77959673)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2314,16852,GO-20209028523,THEFT UNDER - BICYCLE,2020-11-03,2020,November,Tuesday,3,308,5,2020-11-03,2020,November,Tuesday,3,308,19,D32,Toronto,35,Westminster-Branson (35),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,29ER HARDTAIL M,MT,21,GRY,620.0,STOLEN,2306,"{'type': 'Point', 'coordinates': (-79.45090456, 43.77231285)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2315,16853,GO-20209028523,THEFT UNDER - BICYCLE,2020-11-03,2020,November,Tuesday,3,308,5,2020-11-03,2020,November,Tuesday,3,308,19,D32,Toronto,35,Westminster-Branson (35),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,NITROUS DUAL SU,MT,21,BLK,200.0,STOLEN,2307,"{'type': 'Point', 'coordinates': (-79.45090456, 43.77231285)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2316,17856,GO-20189022132,THEFT UNDER - BICYCLE,2018-07-11,2018,July,Wednesday,11,192,23,2018-07-12,2018,July,Thursday,12,193,0,D32,Toronto,35,Westminster-Branson (35),"Single Home, House (Attach Garage, Cottage, Mobile)",House,CC,,MT,30,RED,400.0,STOLEN,2308,"{'type': 'Point', 'coordinates': (-79.44963678, 43.77958754)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2317,17960,GO-2015762910,THEFT UNDER,2015-05-06,2015,May,Wednesday,6,126,17,2015-05-07,2015,May,Thursday,7,127,22,D32,Toronto,35,Westminster-Branson (35),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,MONGOOSE,,RG,24,BLU,180.0,STOLEN,2309,"{'type': 'Point', 'coordinates': (-79.44288664, 43.76969536)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2318,18026,GO-2016964989,THEFT UNDER - BICYCLE,2016-06-03,2016,June,Friday,3,155,9,2016-06-03,2016,June,Friday,3,155,17,D32,Toronto,35,Westminster-Branson (35),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TREK,MENS,RG,1,GRYONG,1500.0,STOLEN,2311,"{'type': 'Point', 'coordinates': (-79.46165427, 43.78603612)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2319,18029,GO-20161085369,THEFT UNDER - BICYCLE,2016-06-19,2016,June,Sunday,19,171,16,2016-06-21,2016,June,Tuesday,21,173,18,D32,Toronto,35,Westminster-Branson (35),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SUPERCYCLE,,MT,18,BLU,100.0,STOLEN,2312,"{'type': 'Point', 'coordinates': (-79.45090456, 43.77231285)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2320,18051,GO-20161681915,THEFT UNDER - BICYCLE,2016-09-19,2016,September,Monday,19,263,17,2016-09-21,2016,September,Wednesday,21,265,15,D32,Toronto,35,Westminster-Branson (35),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SCHWINN,,MT,21,BLKONG,300.0,STOLEN,2313,"{'type': 'Point', 'coordinates': (-79.44601222, 43.78591811)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2321,20085,GO-2020783230,THEFT UNDER - BICYCLE,2020-04-24,2020,April,Friday,24,115,16,2020-04-25,2020,April,Saturday,25,116,10,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,OTHER,BMX,BM,0,SIL,800.0,STOLEN,2314,"{'type': 'Point', 'coordinates': (-79.44869348, 43.78550562)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2322,20373,GO-20181694023,THEFT UNDER - BICYCLE,2018-09-12,2018,September,Wednesday,12,255,15,2018-09-12,2018,September,Wednesday,12,255,23,D32,Toronto,35,Westminster-Branson (35),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CCM,,MT,21,SILYEL,100.0,STOLEN,2315,"{'type': 'Point', 'coordinates': (-79.44526491, 43.7735142)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2323,22007,GO-20149003646,THEFT UNDER,2014-05-27,2014,May,Tuesday,27,147,9,2014-05-27,2014,May,Tuesday,27,147,16,D32,Toronto,35,Westminster-Branson (35),Schools During Supervised Activity,Educational,OT,,MT,18,GRY,279.0,STOLEN,2316,"{'type': 'Point', 'coordinates': (-79.44526491, 43.7735142)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2324,22011,GO-20149003860,THEFT UNDER,2014-06-06,2014,June,Friday,6,157,11,2014-06-06,2014,June,Friday,6,157,19,D32,Toronto,35,Westminster-Branson (35),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,GI,SEDONA DX,RG,24,LGR,600.0,STOLEN,2317,"{'type': 'Point', 'coordinates': (-79.44601222, 43.78591811)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2325,22084,GO-20159007044,THEFT UNDER,2015-09-10,2015,September,Thursday,10,253,23,2015-09-11,2015,September,Friday,11,254,15,D32,Toronto,35,Westminster-Branson (35),Convenience Stores,Commercial,SP,,OT,32,DBL,0.0,STOLEN,2318,"{'type': 'Point', 'coordinates': (-79.44550849, 43.78393311)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2326,22095,GO-20169000764,THEFT UNDER,2016-01-22,2016,January,Friday,22,22,19,2016-01-22,2016,January,Friday,22,22,20,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,OT,,MT,8,BLK,680.0,STOLEN,2319,"{'type': 'Point', 'coordinates': (-79.45084015, 43.77933021)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2327,22096,GO-20169000764,THEFT UNDER,2016-01-22,2016,January,Friday,22,22,19,2016-01-22,2016,January,Friday,22,22,20,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,OT,,OT,9,,800.0,STOLEN,2320,"{'type': 'Point', 'coordinates': (-79.45084015, 43.77933021)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2328,22103,GO-20169004825,THEFT UNDER - BICYCLE,2016-05-20,2016,May,Friday,20,141,12,2016-05-22,2016,May,Sunday,22,143,20,D32,Toronto,35,Westminster-Branson (35),"Other Non Commercial / Corporate Places (Non-Profit, Gov'T, Firehall)",Other,UK,C29936M1003,RG,21,BLK,650.0,STOLEN,2321,"{'type': 'Point', 'coordinates': (-79.43873547, 43.76446008)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2329,23280,GO-20199021000,THEFT UNDER - BICYCLE,2019-07-03,2019,July,Wednesday,3,184,22,2019-07-04,2019,July,Thursday,4,185,17,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,UK,56208C,MT,18,BLK,98.0,STOLEN,2322,"{'type': 'Point', 'coordinates': (-79.44601222, 43.78591811)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2330,23319,GO-20209011836,THEFT UNDER - BICYCLE,2020-04-24,2020,April,Friday,24,115,5,2020-04-24,2020,April,Friday,24,115,10,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,GT,,MT,21,,1500.0,STOLEN,2323,"{'type': 'Point', 'coordinates': (-79.45090456, 43.77231285)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2331,23331,GO-20201167566,THEFT UNDER - BICYCLE,2020-06-24,2020,June,Wednesday,24,176,2,2020-06-25,2020,June,Thursday,25,177,8,D32,Toronto,35,Westminster-Branson (35),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,EMMO,,EL,0,BLU,4200.0,STOLEN,2324,"{'type': 'Point', 'coordinates': (-79.44653676, 43.78174825)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2332,23363,GO-20209027614,THEFT UNDER - BICYCLE,2020-10-22,2020,October,Thursday,22,296,3,2020-10-25,2020,October,Sunday,25,299,12,D32,Toronto,35,Westminster-Branson (35),"Apartment (Rooming House, Condo)",Apartment,NAKAMURA,ECKO,MT,18,BLK,250.0,STOLEN,2325,"{'type': 'Point', 'coordinates': (-79.44517866, 43.77329851)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2333,24422,GO-20142353189,THEFT UNDER,2014-06-22,2014,June,Sunday,22,173,22,2014-06-23,2014,June,Monday,23,174,20,D32,Toronto,35,Westminster-Branson (35),"Single Home, House (Attach Garage, Cottage, Mobile)",House,SUPERCYCLE,UNK,MT,8,DGR,120.0,STOLEN,2326,"{'type': 'Point', 'coordinates': (-79.45043404, 43.77940979)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2334,24453,GO-2015889864,THEFT UNDER,2015-05-27,2015,May,Wednesday,27,147,20,2015-05-28,2015,May,Thursday,28,148,10,D32,Toronto,35,Westminster-Branson (35),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UNKNOWN MAKE,,MT,0,PLEWHI,200.0,STOLEN,2327,"{'type': 'Point', 'coordinates': (-79.44629535, 43.78074846)}",Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596
-2335,369,GO-20179006152,THEFT UNDER - BICYCLE,2017-05-11,2017,May,Thursday,11,131,17,2017-05-11,2017,May,Thursday,11,131,21,D32,Toronto,36,Newtonbrook West (36),"Single Home, House (Attach Garage, Cottage, Mobile)",House,KH,2011 SJ100,MT,10,PLE,600.0,STOLEN,2328,"{'type': 'Point', 'coordinates': (-79.42213408, 43.78415361)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2336,669,GO-20171092064,THEFT UNDER,2017-06-10,2017,June,Saturday,10,161,0,2017-06-19,2017,June,Monday,19,170,9,D32,Toronto,36,Newtonbrook West (36),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UNKNOWN MAKE,SOLO ROCK,FO,1,BLK,,STOLEN,2329,"{'type': 'Point', 'coordinates': (-79.41891275, 43.78096495)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2337,766,GO-20179009364,THEFT UNDER - BICYCLE,2017-07-03,2017,July,Monday,3,184,17,2017-07-03,2017,July,Monday,3,184,22,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,,MT,14,BLK,100.0,STOLEN,2330,"{'type': 'Point', 'coordinates': (-79.41958993, 43.79632341)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2338,992,GO-20179011151,THEFT UNDER - BICYCLE,2017-07-26,2017,July,Wednesday,26,207,23,2017-07-27,2017,July,Thursday,27,208,12,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,,MT,10,BLU,169.0,STOLEN,2331,"{'type': 'Point', 'coordinates': (-79.42535857, 43.77758939)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2339,993,GO-20179011151,THEFT UNDER - BICYCLE,2017-07-26,2017,July,Wednesday,26,207,23,2017-07-27,2017,July,Thursday,27,208,12,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UK,EVERYDAY TRAVEL,MT,10,CRM,189.0,STOLEN,2332,"{'type': 'Point', 'coordinates': (-79.42535857, 43.77758939)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2340,1126,GO-20179012223,THEFT UNDER - BICYCLE,2017-07-30,2017,July,Sunday,30,211,0,2017-08-12,2017,August,Saturday,12,224,9,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,AUDACIO,RC,19,SIL,1100.0,STOLEN,2333,"{'type': 'Point', 'coordinates': (-79.42331577, 43.79005469)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2341,20059,GO-20199023446,THEFT UNDER - BICYCLE,2019-07-23,2019,July,Tuesday,23,204,18,2019-07-23,2019,July,Tuesday,23,204,18,D32,Toronto,36,Newtonbrook West (36),Ttc Subway Station,Transit,UK,,RG,15,RED,0.0,STOLEN,2430,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2342,1419,GO-20179014846,THEFT UNDER - BICYCLE,2017-09-15,2017,September,Friday,15,258,18,2017-09-15,2017,September,Friday,15,258,21,D32,Toronto,36,Newtonbrook West (36),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,NOVARA,MT,21,BLK,280.0,STOLEN,2334,"{'type': 'Point', 'coordinates': (-79.41958993, 43.79632341)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2343,1820,GO-20179019321,THEFT UNDER - BICYCLE,2017-11-08,2017,November,Wednesday,8,312,9,2017-11-10,2017,November,Friday,10,314,14,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,KH,URBAN SOUL,RG,1,SIL,300.0,STOLEN,2335,"{'type': 'Point', 'coordinates': (-79.41553623, 43.77976942)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2344,1821,GO-20179019336,THEFT UNDER - BICYCLE,2017-11-09,2017,November,Thursday,9,313,6,2017-11-10,2017,November,Friday,10,314,18,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,OT,DOLCE,RC,21,BLK,1500.0,STOLEN,2336,"{'type': 'Point', 'coordinates': (-79.41998499, 43.78072717)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2345,1969,GO-20189000307,THEFT UNDER,2017-12-21,2017,December,Thursday,21,355,19,2018-01-04,2018,January,Thursday,4,4,20,D32,Toronto,36,Newtonbrook West (36),"Apartment (Rooming House, Condo)",Apartment,NO,WOLVERINE,MT,24,BLU,0.0,STOLEN,2337,"{'type': 'Point', 'coordinates': (-79.42079703, 43.78636367)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2346,2491,GO-20189017819,THEFT UNDER - BICYCLE,2018-06-07,2018,June,Thursday,7,158,9,2018-06-07,2018,June,Thursday,7,158,21,D32,Toronto,36,Newtonbrook West (36),Ttc Subway Station,Transit,OT,SIRRUS SPORT,RG,9,GRY,1049.0,STOLEN,2338,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2347,2775,GO-20189021515,THEFT UNDER - BICYCLE,2018-07-05,2018,July,Thursday,5,186,22,2018-07-07,2018,July,Saturday,7,188,12,D32,Toronto,36,Newtonbrook West (36),"Apartment (Rooming House, Condo)",Apartment,TR,6500,MT,24,BLK,1500.0,STOLEN,2339,"{'type': 'Point', 'coordinates': (-79.42423827, 43.77783169)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2348,2813,GO-20189022025,THEFT UNDER - BICYCLE,2018-07-08,2018,July,Sunday,8,189,11,2018-07-11,2018,July,Wednesday,11,192,11,D32,Toronto,36,Newtonbrook West (36),"Apartment (Rooming House, Condo)",Apartment,IN,,OT,5,,395.0,STOLEN,2340,"{'type': 'Point', 'coordinates': (-79.42423827, 43.77783169)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2349,2900,GO-20189023216,THEFT UNDER,2018-07-19,2018,July,Thursday,19,200,8,2018-07-20,2018,July,Friday,20,201,14,D32,Toronto,36,Newtonbrook West (36),Schools During Un-Supervised Activity,Educational,CC,WOMAN'S MOUNTAI,MT,21,DBL,225.0,STOLEN,2341,"{'type': 'Point', 'coordinates': (-79.42719052, 43.7929646)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2350,3365,GO-20189028613,THEFT UNDER - BICYCLE,2018-08-30,2018,August,Thursday,30,242,16,2018-08-30,2018,August,Thursday,30,242,18,D32,Toronto,36,Newtonbrook West (36),"Bank And Other Financial Institutions (Money Mart, Tsx)",Commercial,IH,BMX,BM,7,BLK,75.0,STOLEN,2342,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2351,4474,GO-20191091962,THEFT OF EBIKE UNDER $5000,2019-06-12,2019,June,Wednesday,12,163,23,2019-06-13,2019,June,Thursday,13,164,14,D32,Toronto,36,Newtonbrook West (36),"Single Home, House (Attach Garage, Cottage, Mobile)",House,UNKNOWN MAKE,UNKNOWN,EL,3,BLK,700.0,STOLEN,2343,"{'type': 'Point', 'coordinates': (-79.41953867, 43.778881610000006)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2352,4519,GO-20199018992,THEFT UNDER - BICYCLE,2019-06-14,2019,June,Friday,14,165,20,2019-06-17,2019,June,Monday,17,168,18,D32,Toronto,36,Newtonbrook West (36),"Apartment (Rooming House, Condo)",Apartment,OT,,RG,18,GRY,300.0,STOLEN,2344,"{'type': 'Point', 'coordinates': (-79.42331577, 43.79005469)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2353,4623,GO-20199020270,THEFT UNDER,2019-06-19,2019,June,Wednesday,19,170,12,2019-06-27,2019,June,Thursday,27,178,16,D32,Toronto,36,Newtonbrook West (36),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OT,,OT,1,BLK,400.0,STOLEN,2345,"{'type': 'Point', 'coordinates': (-79.42715189, 43.77756496)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2354,4624,GO-20199020270,THEFT UNDER,2019-06-19,2019,June,Wednesday,19,170,12,2019-06-27,2019,June,Thursday,27,178,16,D32,Toronto,36,Newtonbrook West (36),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RM,VAPOR,MT,24,GRY,400.0,STOLEN,2346,"{'type': 'Point', 'coordinates': (-79.42715189, 43.77756496)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2355,4630,GO-20199020086,THEFT UNDER - BICYCLE,2019-06-25,2019,June,Tuesday,25,176,9,2019-06-25,2019,June,Tuesday,25,176,16,D32,Toronto,36,Newtonbrook West (36),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,TR,,RG,5,BLU,3000.0,STOLEN,2347,"{'type': 'Point', 'coordinates': (-79.41958993, 43.79632341)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2356,5385,GO-20199031261,THEFT UNDER - BICYCLE,2019-09-23,2019,September,Monday,23,266,8,2019-09-23,2019,September,Monday,23,266,19,D32,Toronto,36,Newtonbrook West (36),"Apartment (Rooming House, Condo)",Apartment,SU,MEDALIST,RC,21,BLU,1700.0,STOLEN,2348,"{'type': 'Point', 'coordinates': (-79.44571399, 43.79240783)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2357,5602,GO-20199035459,THEFT UNDER - BICYCLE,2019-10-27,2019,October,Sunday,27,300,20,2019-10-27,2019,October,Sunday,27,300,20,D32,Toronto,36,Newtonbrook West (36),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,UK,,RC,27,BLK,4000.0,STOLEN,2349,"{'type': 'Point', 'coordinates': (-79.41553623, 43.77976942)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2358,5694,GO-20199037581,THEFT UNDER - BICYCLE,2019-11-14,2019,November,Thursday,14,318,5,2019-11-15,2019,November,Friday,15,319,14,D32,Toronto,36,Newtonbrook West (36),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,GI,RAPID 0,RG,21,GRY,1700.0,STOLEN,2350,"{'type': 'Point', 'coordinates': (-79.42331577, 43.79005469)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2359,6217,GO-20209013618,THEFT UNDER - BICYCLE,2020-05-20,2020,May,Wednesday,20,141,21,2020-05-21,2020,May,Thursday,21,142,17,D32,Toronto,36,Newtonbrook West (36),"Apartment (Rooming House, Condo)",Apartment,GI,FATHOM 2,MT,12,BLK,1599.0,STOLEN,2351,"{'type': 'Point', 'coordinates': (-79.4431436, 43.77454821)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2360,6713,GO-20209018344,THEFT UNDER - BICYCLE,2020-07-13,2020,July,Monday,13,195,13,2020-07-23,2020,July,Thursday,23,205,14,D32,Toronto,36,Newtonbrook West (36),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,SU,2020,MT,21,GRY,330.0,STOLEN,2352,"{'type': 'Point', 'coordinates': (-79.42633718, 43.79662303)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2361,6945,GO-20209020028,THEFT UNDER - BICYCLE,2020-07-10,2020,July,Friday,10,192,17,2020-08-12,2020,August,Wednesday,12,225,17,D32,Toronto,36,Newtonbrook West (36),"Apartment (Rooming House, Condo)",Apartment,CA,,OT,60,BLU,3000.0,STOLEN,2353,"{'type': 'Point', 'coordinates': (-79.41739035, 43.779370650000004)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2362,7011,GO-20201561694,THEFT UNDER - BICYCLE,2020-08-19,2020,August,Wednesday,19,232,11,2020-08-20,2020,August,Thursday,20,233,20,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,NORTHROCK,,RG,10,BLK,450.0,STOLEN,2354,"{'type': 'Point', 'coordinates': (-79.41958993, 43.79632341)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2363,7095,GO-20201596966,THEFT UNDER - BICYCLE,2020-08-20,2020,August,Thursday,20,233,16,2020-08-24,2020,August,Monday,24,237,20,D32,Toronto,36,Newtonbrook West (36),"Apartment (Rooming House, Condo)",Apartment,SHEMANO,,MT,12,BLK,700.0,STOLEN,2355,"{'type': 'Point', 'coordinates': (-79.41891275, 43.78096495)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2364,7141,GO-20209021924,THEFT UNDER - BICYCLE,2020-08-31,2020,August,Monday,31,244,19,2020-09-01,2020,September,Tuesday,1,245,0,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CA,,RG,25,BLK,750.0,STOLEN,2356,"{'type': 'Point', 'coordinates': (-79.41938138, 43.79547772)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2365,7207,GO-20209022656,THEFT UNDER - BICYCLE,2020-09-04,2020,September,Friday,4,248,18,2020-09-08,2020,September,Tuesday,8,252,19,D32,Toronto,36,Newtonbrook West (36),"Private Property Structure (Pool, Shed, Detached Garage)",Other,UK,,RC,1,PNK,700.0,STOLEN,2357,"{'type': 'Point', 'coordinates': (-79.42014772, 43.78884636)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2366,8141,GO-20149004075,THEFT UNDER,2014-06-14,2014,June,Saturday,14,165,14,2014-06-14,2014,June,Saturday,14,165,17,D32,Toronto,36,Newtonbrook West (36),"Private Property Structure (Pool, Shed, Detached Garage)",Other,IN,,MT,21,GRY,294.0,STOLEN,2358,"{'type': 'Point', 'coordinates': (-79.44113151, 43.78096055)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2367,8278,GO-20149004547,THEFT UNDER,2014-06-28,2014,June,Saturday,28,179,13,2014-06-29,2014,June,Sunday,29,180,0,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,YUKON,MT,24,BLK,1200.0,STOLEN,2359,"{'type': 'Point', 'coordinates': (-79.41553623, 43.77976942)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2368,8380,GO-20149004849,THEFT UNDER,2014-07-08,2014,July,Tuesday,8,189,14,2014-07-09,2014,July,Wednesday,9,190,19,D32,Toronto,36,Newtonbrook West (36),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,OT,CROSSTRAIL DISC,OT,24,SIL,900.0,STOLEN,2360,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2369,8574,GO-20142628036,THEFT UNDER,2014-08-02,2014,August,Saturday,2,214,15,2014-08-03,2014,August,Sunday,3,215,12,D32,Toronto,36,Newtonbrook West (36),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,OTHER,,MT,5,ONG,200.0,STOLEN,2361,"{'type': 'Point', 'coordinates': (-79.4431436, 43.77454821)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2370,8625,GO-20142678895,THEFT UNDER,2014-08-04,2014,August,Monday,4,216,23,2014-08-11,2014,August,Monday,11,223,8,D32,Toronto,36,Newtonbrook West (36),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,WOMENS,OT,0,WHI,,STOLEN,2362,"{'type': 'Point', 'coordinates': (-79.43710734, 43.79216038)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2371,8999,GO-20143019851,MISCHIEF - INTERFERE W-PROP,2014-09-30,2014,September,Tuesday,30,273,4,2014-10-01,2014,October,Wednesday,1,274,9,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,OT,0,,,STOLEN,2363,"{'type': 'Point', 'coordinates': (-79.42793139, 43.7939597)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2372,9000,GO-20143019851,MISCHIEF - INTERFERE W-PROP,2014-09-30,2014,September,Tuesday,30,273,4,2014-10-01,2014,October,Wednesday,1,274,9,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,UNKNOWN MAKE,,OT,0,,,STOLEN,2364,"{'type': 'Point', 'coordinates': (-79.42793139, 43.7939597)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2373,9144,GO-20143234378,PROPERTY - LOST,2014-11-04,2014,November,Tuesday,4,308,5,2014-11-04,2014,November,Tuesday,4,308,5,D32,Toronto,36,Newtonbrook West (36),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SUPERCYCLE,IMPUSE SE,BM,1,,,UNKNOWN,2365,"{'type': 'Point', 'coordinates': (-79.43311007, 43.78209479)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2374,9145,GO-20143234378,PROPERTY - LOST,2014-11-04,2014,November,Tuesday,4,308,5,2014-11-04,2014,November,Tuesday,4,308,5,D32,Toronto,36,Newtonbrook West (36),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,SPORTEK,RIDGE RUNNER,MT,1,RED,,UNKNOWN,2366,"{'type': 'Point', 'coordinates': (-79.43311007, 43.78209479)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2375,9290,GO-20159000723,THEFT UNDER,2014-12-27,2014,December,Saturday,27,361,0,2015-02-11,2015,February,Wednesday,11,42,13,D32,Toronto,36,Newtonbrook West (36),"Apartment (Rooming House, Condo)",Apartment,TR,TREK,RG,12,SIL,1000.0,STOLEN,2367,"{'type': 'Point', 'coordinates': (-79.41739035, 43.779370650000004)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2376,9333,GO-20159001390,THEFT UNDER,2015-03-14,2015,March,Saturday,14,73,9,2015-03-18,2015,March,Wednesday,18,77,17,D32,Toronto,36,Newtonbrook West (36),"Apartment (Rooming House, Condo)",Apartment,UK,SPECIALIZED,MT,10,WHI,800.0,STOLEN,2368,"{'type': 'Point', 'coordinates': (-79.42331577, 43.79005469)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2377,9382,GO-20159001798,THEFT UNDER,2015-04-06,2015,April,Monday,6,96,12,2015-04-09,2015,April,Thursday,9,99,9,D32,Toronto,36,Newtonbrook West (36),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,CC,,MT,7,WHI,429.0,STOLEN,2369,"{'type': 'Point', 'coordinates': (-79.41938138, 43.79547772)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2378,9725,GO-20159003338,THEFT UNDER,2015-06-04,2015,June,Thursday,4,155,15,2015-06-04,2015,June,Thursday,4,155,18,D32,Toronto,36,Newtonbrook West (36),Schools During Un-Supervised Activity,Educational,UK,,RC,10,GRY,150.0,STOLEN,2370,"{'type': 'Point', 'coordinates': (-79.42286679, 43.78590034)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2379,9795,GO-20159003571,THEFT UNDER,2015-06-13,2015,June,Saturday,13,164,18,2015-06-13,2015,June,Saturday,13,164,23,D32,Toronto,36,Newtonbrook West (36),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RA,,OT,27,BLK,1500.0,RECOVERED,2371,"{'type': 'Point', 'coordinates': (-79.43284237, 43.78123502)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2380,9942,GO-20151101826,THEFT UNDER,2015-06-30,2015,June,Tuesday,30,181,1,2015-06-30,2015,June,Tuesday,30,181,19,D32,Toronto,36,Newtonbrook West (36),"Single Home, House (Attach Garage, Cottage, Mobile)",House,RALEIGH,,RG,21,BLK,200.0,STOLEN,2372,"{'type': 'Point', 'coordinates': (-79.42014772, 43.78884636)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2381,10101,GO-20151264216,THEFT UNDER,2015-07-20,2015,July,Monday,20,201,18,2015-07-24,2015,July,Friday,24,205,18,D32,Toronto,36,Newtonbrook West (36),Ttc Subway Station,Transit,EMMO,EAGLE,EL,1,WHI,1400.0,STOLEN,2373,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2382,10124,GO-20159005094,THEFT UNDER,2015-07-28,2015,July,Tuesday,28,209,10,2015-07-28,2015,July,Tuesday,28,209,19,D32,Toronto,36,Newtonbrook West (36),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,CC,,MT,21,RED,0.0,STOLEN,2374,"{'type': 'Point', 'coordinates': (-79.41938138, 43.79547772)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2383,10285,GO-20151431330,THEFT UNDER,2015-08-10,2015,August,Monday,10,222,15,2015-08-20,2015,August,Thursday,20,232,7,D32,Toronto,36,Newtonbrook West (36),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UNKNOWN,,OT,0,BLU,100.0,STOLEN,2375,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2384,10535,GO-20159007664,THEFT UNDER,2015-09-10,2015,September,Thursday,10,253,11,2015-09-23,2015,September,Wednesday,23,266,19,D32,Toronto,36,Newtonbrook West (36),Schools During Un-Supervised Activity,Educational,NO,STORM 6.3,MT,24,GRY,600.0,STOLEN,2376,"{'type': 'Point', 'coordinates': (-79.42719052, 43.7929646)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2385,10554,GO-20159007812,THEFT UNDER,2015-09-27,2015,September,Sunday,27,270,14,2015-09-27,2015,September,Sunday,27,270,20,D32,Toronto,36,Newtonbrook West (36),"Group Homes (Non-Profit, Halfway House, Social Agency)",Other,CC,STATIC,MT,10,YEL,400.0,STOLEN,2377,"{'type': 'Point', 'coordinates': (-79.42979761000001, 43.78670591)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2386,10934,GO-2016113888,THEFT UNDER,2016-01-19,2016,January,Tuesday,19,19,18,2016-01-19,2016,January,Tuesday,19,19,21,D32,Toronto,36,Newtonbrook West (36),"Single Home, House (Attach Garage, Cottage, Mobile)",House,OTHER,TRI STAR,TR,6,BLU,2000.0,STOLEN,2378,"{'type': 'Point', 'coordinates': (-79.43262717, 43.783737220000006)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2387,11080,GO-20169002862,THEFT UNDER - BICYCLE,2016-03-29,2016,March,Tuesday,29,89,10,2016-03-29,2016,March,Tuesday,29,89,16,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,CC,KROSSPORT 700C,RG,21,WHI,430.0,STOLEN,2379,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2388,11501,GO-20169005623,THEFT UNDER - BICYCLE,2016-06-11,2016,June,Saturday,11,163,13,2016-06-11,2016,June,Saturday,11,163,14,D32,Toronto,36,Newtonbrook West (36),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,RA,,RC,58,,300.0,STOLEN,2380,"{'type': 'Point', 'coordinates': (-79.41553623, 43.77976942)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2389,11505,GO-20161016609,THEFT UNDER - BICYCLE,2016-06-11,2016,June,Saturday,11,163,13,2016-06-11,2016,June,Saturday,11,163,14,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SUPERCYCLE,UNKNOWN,OT,0,WHIBLK,192.0,STOLEN,2381,"{'type': 'Point', 'coordinates': (-79.41938138, 43.79547772)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2390,11719,GO-20169006765,THEFT UNDER,2016-07-06,2016,July,Wednesday,6,188,8,2016-07-06,2016,July,Wednesday,6,188,20,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,GI,ESCAPE 3 SIZE,TO,18,GRY,450.0,STOLEN,2382,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2391,11962,GO-20169007989,THEFT UNDER - BICYCLE,2016-07-31,2016,July,Sunday,31,213,9,2016-07-31,2016,July,Sunday,31,213,13,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,GTX-2 700C BICY,MT,21,RED,550.0,STOLEN,2383,"{'type': 'Point', 'coordinates': (-79.43672539, 43.79274975)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2392,12057,GO-20161417336,THEFT UNDER - BICYCLE,2016-08-11,2016,August,Thursday,11,224,15,2016-08-11,2016,August,Thursday,11,224,18,D32,Toronto,36,Newtonbrook West (36),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,KARAKORAM,GT,MT,24,BLK,685.0,STOLEN,2384,"{'type': 'Point', 'coordinates': (-79.4205961, 43.77864832)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2393,12117,GO-20169008897,THEFT UNDER - BICYCLE,2016-08-06,2016,August,Saturday,6,219,0,2016-08-16,2016,August,Tuesday,16,229,21,D32,Toronto,36,Newtonbrook West (36),"Streets, Roads, Highways (Bicycle Path, Private Road)",Outside,UK,,RG,2,RED,0.0,STOLEN,2385,"{'type': 'Point', 'coordinates': (-79.42633718, 43.79662303)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2394,12128,GO-20169008986,THEFT UNDER - BICYCLE,2016-08-17,2016,August,Wednesday,17,230,9,2016-08-18,2016,August,Thursday,18,231,10,D32,Toronto,36,Newtonbrook West (36),"Parking Lots (Apt., Commercial Or Non-Commercial)",Outside,RA,RALEIGH VENTURE,OT,7,LGR,600.0,STOLEN,2386,"{'type': 'Point', 'coordinates': (-79.44147011, 43.77492542)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2395,12227,GO-20169009662,THEFT UNDER - BICYCLE,2016-08-10,2016,August,Wednesday,10,223,13,2016-08-29,2016,August,Monday,29,242,18,D32,Toronto,36,Newtonbrook West (36),"Other Commercial / Corporate Places (For Profit, Warehouse, Corp. Bldg",Commercial,SC,TESSA,MT,24,,500.0,STOLEN,2387,"{'type': 'Point', 'coordinates': (-79.41596023, 43.78163807)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2396,12256,GO-20161570660,THEFT UNDER - BICYCLE,2016-08-27,2016,August,Saturday,27,240,17,2016-09-04,2016,September,Sunday,4,248,16,D32,Toronto,36,Newtonbrook West (36),"Apartment (Rooming House, Condo)",Apartment,DEVINCI,ST TROPEZ,RG,18,BLK,500.0,STOLEN,2388,"{'type': 'Point', 'coordinates': (-79.41739035, 43.779370650000004)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862
-2397,12270,GO-20169010025,THEFT UNDER - BICYCLE,2016-09-01,2016,September,Thursday,1,245,11,2016-09-06,2016,September,Tuesday,6,250,11,D32,Toronto,36,Newtonbrook West (36),"Apartment (Rooming House, Condo)",Apartment,GI,,MT,21,MRN,1000.0,STO